-- MySQL dump 10.19  Distrib 10.3.35-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: nwo_three
-- ------------------------------------------------------
-- Server version	10.3.35-MariaDB

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES 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) COLLATE utf8_unicode_ci NOT NULL,
  `administrativeArea` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `locality` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `dependentLocality` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `postalCode` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `sortingCode` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `addressLine1` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `addressLine2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `organization` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `organizationTaxId` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `fullName` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `firstName` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `lastName` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `latitude` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `longitude` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `fk_bklfuelpnvauyniiyifcszjibkvmhtdjpwlp` (`ownerId`),
  CONSTRAINT `fk_bklfuelpnvauyniiyifcszjibkvmhtdjpwlp` FOREIGN KEY (`ownerId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_rcdfatiyjdzahrduewecjvgfhozpfhcoeaqa` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `body` text COLLATE utf8_unicode_ci NOT NULL,
  `unread` tinyint(1) NOT NULL DEFAULT 1,
  `dateRead` datetime DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_evlgckqwiszvwwnbhsjsbvbpiszzczrxuqpr` (`userId`,`unread`,`dateRead`,`dateCreated`),
  KEY `idx_yopvpxjrxqzwbyigtiuaspnggvnkotjjssey` (`dateRead`),
  KEY `fk_jpylugqykiwzeyyqtpdzzuosfqqvrfkuawvu` (`pluginId`),
  CONSTRAINT `fk_atoormtrvtolovfxiufdfwpmayfxcqyomkwr` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_jpylugqykiwzeyyqtpdzzuosfqqvrfkuawvu` FOREIGN KEY (`pluginId`) REFERENCES `plugins` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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 COLLATE utf8_unicode_ci DEFAULT NULL,
  `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) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_qfjtmvmmdvjjqklddjtbdhpvwznqeezcsrfp` (`volumeId`),
  KEY `idx_ofzfmcrroqophxutssbpzmjhzhawmalxwjqj` (`volumeId`),
  KEY `fk_jmjeovkparifvtznhfgxficlumcmysipntes` (`sessionId`),
  CONSTRAINT `fk_jmjeovkparifvtznhfgxficlumcmysipntes` FOREIGN KEY (`sessionId`) REFERENCES `assetindexingsessions` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_jvmcayfpzjohwihemjwrobcfxrzhafbpenkn` FOREIGN KEY (`volumeId`) REFERENCES `volumes` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=29932 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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 COLLATE utf8_unicode_ci DEFAULT NULL,
  `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) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `kind` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'unknown',
  `alt` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `width` int(10) unsigned DEFAULT NULL,
  `height` int(10) unsigned DEFAULT NULL,
  `size` bigint(20) unsigned DEFAULT NULL,
  `focalPoint` varchar(13) COLLATE utf8_unicode_ci 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_eilpfwkclduabwwhxkepgafkelfvkhfhhbov` (`filename`,`folderId`),
  KEY `idx_ordkjgoeryupmwtljlykpkxmsfpkidujdapj` (`folderId`),
  KEY `idx_prsqqqkojykukpxjfmdjepvjtqfkbmpoqczl` (`volumeId`),
  KEY `fk_fcdelrbzhywenuwoqptomldqppujjgqvlkxz` (`uploaderId`),
  CONSTRAINT `fk_bnxsvxbxalfyxwbekuyhjmfztyuwqyoslvfh` FOREIGN KEY (`folderId`) REFERENCES `volumefolders` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_cimiaxoagtrhzwofijhzwmpxbpcozppmponn` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_fcdelrbzhywenuwoqptomldqppujjgqvlkxz` FOREIGN KEY (`uploaderId`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_kachtmnegqbsetfulmgyxyyfzjieutuhrtqh` FOREIGN KEY (`volumeId`) REFERENCES `volumes` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `blitz_caches`
--

DROP TABLE IF EXISTS `blitz_caches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `blitz_caches` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `siteId` int(11) NOT NULL,
  `uri` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `paginate` int(11) DEFAULT NULL,
  `expiryDate` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_hwoppqirpsndctjbtdqhpfygfkokcolmpeaa` (`siteId`,`uri`),
  KEY `idx_peexgssvvbqnmwhgobhrduxgozbllualklpe` (`expiryDate`),
  CONSTRAINT `fk_wbvonpexhgmfwtzlyndgaobnulqahcwbsnwp` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `blitz_cachetags`
--

DROP TABLE IF EXISTS `blitz_cachetags`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `blitz_cachetags` (
  `cacheId` int(11) NOT NULL,
  `tag` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`cacheId`,`tag`),
  KEY `idx_cizhodebssrufnmlubpskihesxkvyrhvrrbk` (`tag`),
  CONSTRAINT `fk_cvtzbddecmlgesretcbdrktokpwbnrvffhtn` FOREIGN KEY (`cacheId`) REFERENCES `blitz_caches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `blitz_driverdata`
--

DROP TABLE IF EXISTS `blitz_driverdata`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `blitz_driverdata` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `driver` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `data` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `blitz_elementcaches`
--

DROP TABLE IF EXISTS `blitz_elementcaches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `blitz_elementcaches` (
  `cacheId` int(11) NOT NULL,
  `elementId` int(11) NOT NULL,
  PRIMARY KEY (`cacheId`,`elementId`),
  KEY `fk_mjnkihwbrvcdwupqgabxfgqswjadzjlpurgl` (`elementId`),
  CONSTRAINT `fk_dyubrcsnkyjvpszrjwxczyodprwcakffggql` FOREIGN KEY (`cacheId`) REFERENCES `blitz_caches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `fk_mjnkihwbrvcdwupqgabxfgqswjadzjlpurgl` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `blitz_elementexpirydates`
--

DROP TABLE IF EXISTS `blitz_elementexpirydates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `blitz_elementexpirydates` (
  `elementId` int(11) NOT NULL,
  `expiryDate` datetime DEFAULT NULL,
  PRIMARY KEY (`elementId`),
  UNIQUE KEY `idx_abttknpzurromgtazccyedghwoklipqxbnvb` (`elementId`),
  KEY `idx_ybbyvqtjrcktjxzgnwkbuswzeddeggltjtlf` (`expiryDate`),
  CONSTRAINT `fk_keyfkqokvmqflxoarynczytqzuejifdzlvfx` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `blitz_elementfieldcaches`
--

DROP TABLE IF EXISTS `blitz_elementfieldcaches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `blitz_elementfieldcaches` (
  `cacheId` int(11) NOT NULL,
  `elementId` int(11) NOT NULL,
  `fieldId` int(11) NOT NULL,
  PRIMARY KEY (`cacheId`,`elementId`,`fieldId`),
  KEY `fk_gifrpddwstejlzurctgwbtzorshmuvfqpirm` (`elementId`),
  KEY `fk_ijdsnpcvhuclegrlogeuvqstblaqujxjxxkk` (`fieldId`),
  CONSTRAINT `fk_gifrpddwstejlzurctgwbtzorshmuvfqpirm` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `fk_ijdsnpcvhuclegrlogeuvqstblaqujxjxxkk` FOREIGN KEY (`fieldId`) REFERENCES `fields` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `fk_meloouabtsvpkxfgzpeqcdgtmohyhbxivzjw` FOREIGN KEY (`cacheId`) REFERENCES `blitz_caches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `blitz_elementqueries`
--

DROP TABLE IF EXISTS `blitz_elementqueries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `blitz_elementqueries` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `index` bigint(20) NOT NULL,
  `type` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `params` text COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_nmcawdtktpwercbhlbozxhrbuoqgxfdsxcym` (`index`),
  KEY `idx_oxpibxwjzwxxfojdlkjyxzdaqasmzhguiovv` (`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `blitz_elementqueryattributes`
--

DROP TABLE IF EXISTS `blitz_elementqueryattributes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `blitz_elementqueryattributes` (
  `queryId` int(11) NOT NULL,
  `attribute` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`queryId`,`attribute`),
  CONSTRAINT `fk_trjneawqegdjqmlmkyeuwdqxpgjuqzgkptnx` FOREIGN KEY (`queryId`) REFERENCES `blitz_elementqueries` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `blitz_elementquerycaches`
--

DROP TABLE IF EXISTS `blitz_elementquerycaches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `blitz_elementquerycaches` (
  `cacheId` int(11) NOT NULL,
  `queryId` int(11) NOT NULL,
  PRIMARY KEY (`cacheId`,`queryId`),
  UNIQUE KEY `idx_xseduvntcvwhniqudtoaatqdioxpmktnbwoa` (`cacheId`,`queryId`),
  KEY `fk_uafxoxyqztfpfnysrwgaluipyzxlppvkncxh` (`queryId`),
  CONSTRAINT `fk_pnsjbfbtxgxnstuchajjqidcvfdkkygtpbhj` FOREIGN KEY (`cacheId`) REFERENCES `blitz_caches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `fk_uafxoxyqztfpfnysrwgaluipyzxlppvkncxh` FOREIGN KEY (`queryId`) REFERENCES `blitz_elementqueries` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `blitz_elementqueryfields`
--

DROP TABLE IF EXISTS `blitz_elementqueryfields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `blitz_elementqueryfields` (
  `queryId` int(11) NOT NULL,
  `fieldId` int(11) NOT NULL,
  PRIMARY KEY (`queryId`,`fieldId`),
  KEY `fk_oaktzbyccdobjhumkocmwcalmfytqddcekxs` (`fieldId`),
  CONSTRAINT `fk_eyltydguhdeoivmqlkndetayfdgjmwzmmlkc` FOREIGN KEY (`queryId`) REFERENCES `blitz_elementqueries` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `fk_oaktzbyccdobjhumkocmwcalmfytqddcekxs` FOREIGN KEY (`fieldId`) REFERENCES `fields` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `blitz_elementquerysources`
--

DROP TABLE IF EXISTS `blitz_elementquerysources`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `blitz_elementquerysources` (
  `queryId` int(11) NOT NULL,
  `sourceId` int(11) NOT NULL,
  PRIMARY KEY (`queryId`,`sourceId`),
  CONSTRAINT `fk_vqdzxpnwlylhnlgfmlgdlllaoomorgrhxnds` FOREIGN KEY (`queryId`) REFERENCES `blitz_elementqueries` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `blitz_hints`
--

DROP TABLE IF EXISTS `blitz_hints`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `blitz_hints` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `fieldId` int(11) NOT NULL,
  `template` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `routeVariable` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `line` int(11) DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_nxkiiujlittwqmadoettbpnoxkvheyayyoxj` (`fieldId`,`template`,`routeVariable`)
) ENGINE=InnoDB AUTO_INCREMENT=1595702 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `blitz_includes`
--

DROP TABLE IF EXISTS `blitz_includes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `blitz_includes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `index` bigint(20) NOT NULL,
  `siteId` int(11) NOT NULL,
  `template` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `params` text COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_aeegtnsbarbxwnavoaelkbfuvpkynuixdflj` (`index`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `blitz_ssiincludecaches`
--

DROP TABLE IF EXISTS `blitz_ssiincludecaches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `blitz_ssiincludecaches` (
  `cacheId` int(11) NOT NULL,
  `includeId` int(11) NOT NULL,
  PRIMARY KEY (`cacheId`,`includeId`),
  KEY `fk_jhfljvvejgdvpmjqklxtgildgjjezrqnpifv` (`includeId`),
  CONSTRAINT `fk_jhfljvvejgdvpmjqklxtgildgjjezrqnpifv` FOREIGN KEY (`includeId`) REFERENCES `blitz_includes` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `fk_owcfkhqshikvogkqqlkrszcyljsrtnmdqvfr` FOREIGN KEY (`cacheId`) REFERENCES `blitz_caches` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `calendarize`
--

DROP TABLE IF EXISTS `calendarize`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `calendarize` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `ownerId` int(11) NOT NULL,
  `ownerSiteId` int(11) NOT NULL,
  `fieldId` int(11) NOT NULL,
  `startDate` datetime DEFAULT NULL,
  `endDate` datetime DEFAULT NULL,
  `allDay` tinyint(1) DEFAULT 0,
  `repeats` tinyint(1) DEFAULT 0,
  `days` text DEFAULT NULL,
  `months` text DEFAULT NULL,
  `endRepeat` varchar(255) DEFAULT NULL,
  `endRepeatDate` datetime DEFAULT NULL,
  `exceptions` text DEFAULT NULL,
  `timeChanges` text DEFAULT NULL,
  `repeatType` varchar(255) DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `calendarize_ownerId_ownerSiteId_fieldId_unq_idx` (`ownerId`,`ownerSiteId`,`fieldId`),
  KEY `calendarize_ownerSiteId_fk` (`ownerSiteId`),
  KEY `calendarize_fieldId_fk` (`fieldId`),
  CONSTRAINT `calendarize_fieldId_fk` FOREIGN KEY (`fieldId`) REFERENCES `fields` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `calendarize_ownerId_fk` FOREIGN KEY (`ownerId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `calendarize_ownerSiteId_fk` FOREIGN KEY (`ownerSiteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2173 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_uzgolmhvvvosyrjnmiuqtlbpghovkeppeyhm` (`groupId`),
  KEY `fk_kqplfxoyyejmfpfrsqjjaiaedaxunqalocqq` (`parentId`),
  CONSTRAINT `fk_bocxqhecseeadhlelqhldniksntukvpabfro` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_kqplfxoyyejmfpfrsqjjaiaedaxunqalocqq` FOREIGN KEY (`parentId`) REFERENCES `categories` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_xshcasvyotfcuxiwjklqsnmrwtzlnvgiogig` FOREIGN KEY (`groupId`) REFERENCES `categorygroups` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `handle` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `defaultPlacement` enum('beginning','end') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'end',
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `dateDeleted` datetime DEFAULT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_nkurhaahffcmapevygjwonwhisfifwsibajb` (`name`),
  KEY `idx_jaqorifddzbfjrupigbswbrcwahgarhqzvoz` (`handle`),
  KEY `idx_tikdlghzcovuqfnrgdiwnijdtsghxaagcqgd` (`structureId`),
  KEY `idx_zsnlkbbfjaqngpljekqnsxsjgzxsullpkyya` (`fieldLayoutId`),
  KEY `idx_mdywiwlqqjqdndgsygkstrvlzxknvsmrhyou` (`dateDeleted`),
  CONSTRAINT `fk_awchjqkyrrjiazjdhinxknzlhkglbskduxnk` FOREIGN KEY (`fieldLayoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_luqzhqfpwsnndaedkpxoeoiekcxakrbmedmf` FOREIGN KEY (`structureId`) REFERENCES `structures` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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 COLLATE utf8_unicode_ci DEFAULT NULL,
  `template` varchar(500) COLLATE utf8_unicode_ci DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_hcrttamrfizstrfqjfixzhidnopmtoddhrny` (`groupId`,`siteId`),
  KEY `idx_cdgpucueeonjfvowhfczqbbvejnzfmuaizlu` (`siteId`),
  CONSTRAINT `fk_hvdccxcuqcghdvnvqtmgftrmqtqdklrqgydo` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `fk_zcfdhetephzdiczfdjsksssohfetenvlyvty` FOREIGN KEY (`groupId`) REFERENCES `categorygroups` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `propagated` tinyint(1) NOT NULL,
  `userId` int(11) DEFAULT NULL,
  PRIMARY KEY (`elementId`,`siteId`,`attribute`),
  KEY `idx_koxvphzzfgtqkgikqvaybcspwjierqirwiwu` (`elementId`,`siteId`,`dateUpdated`),
  KEY `fk_ddhffjeotzzoecdupbmawzdjteomajlnejfc` (`siteId`),
  KEY `fk_neoljeuayzophfmvqjgoaswycgkdkwusdopw` (`userId`),
  CONSTRAINT `fk_ddhffjeotzzoecdupbmawzdjteomajlnejfc` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `fk_neoljeuayzophfmvqjgoaswycgkdkwusdopw` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `fk_plrskospbfrtinwywvvzmhvajaeabmfqqmgo` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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_qcvcdjgjpslhrrnzemcmfiqvyrgdidnasogt` (`elementId`,`siteId`,`dateUpdated`),
  KEY `fk_vwgxrshlelxwzuifmhlslllmvaqlvxmkpvyx` (`siteId`),
  KEY `fk_oozloldymrguzrxzxdnvzasqnzlfmajhqrbg` (`fieldId`),
  KEY `fk_yekfsqxlfyojywmglajdxkmowwciqpngvnvl` (`userId`),
  CONSTRAINT `fk_eqjlfqlgszqoyjqvuxwrnjowjcehkojeciqn` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `fk_oozloldymrguzrxzxdnvzasqnzlfmajhqrbg` FOREIGN KEY (`fieldId`) REFERENCES `fields` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `fk_vwgxrshlelxwzuifmhlslllmvaqlvxmkpvyx` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `fk_yekfsqxlfyojywmglajdxkmowwciqpngvnvl` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  `field_totalTradingIncome_old` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_totalOtherIncome_old` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_totalCostOfSales_old` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_totalOperatingExpenses_old` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_totalCostOfSales` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_totalOperatingExpenses` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_totalOtherIncome` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_totalTradingIncome` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_miscellaneousIncome` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_transferFundsFromNwo` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_interestIncome` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_ryderStRentalIncome` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_clientMediaServiceFeesCommission` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_managementFee` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_atoCashFlowBoost` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_clientName` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_clientIdWorkbook` int(10) DEFAULT NULL,
  `field_jobStartDate` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_jobEndDate` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_department` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_jobStatusId` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_quoteStatus` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_quotedAmount` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_jobIdWorkbook` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_jobPriceId` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_grossProfit` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_netProfit` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_introduction` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_optimisedImage` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_richText` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_headline` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_position` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_deliverables` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_story` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_challenge` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_biography` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_purposeWhyDoesYourBrandExist` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_customersWhoDoesYourBrandExistToServe` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_valuesWhatDoYouStandForAndHowDoYouOperate` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_cultureHowDoYouAndYourPeopleThinkAndBehaveAtWork` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_yourPeople` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_yourCustomers` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_yourBrandIs` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_yourBrandStandsFor` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_ourPast` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_ourFuture` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_ourCurrentBrandsAndTheirPlaceInTheOverallArchitecture` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_voiceWhatDoesYourBrandSoundLike` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_marketsWeCompeteIn` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_competitors` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_contemporariesOrganisationsSimilarToUsOrThatWeAdmire` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_customersAndTheirWantsNeedsInclude` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_ourVisualBrandingNeedsTo` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_toolsWhatCollateralToolsAndApplicationsDoYouHaveNeed` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_existingMaterialsInclude` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_newNeedsInclude` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_whatCampaignsWillTellYourStory` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_promiseWhatCanShouldDoCustomersExpectFromYou` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_whatCanYourBrandAchieveForYourOrganisation` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_whatNeedsToBeDone` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_budgets` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_backgroundColour` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_sectionHeight` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_flexibleLayout` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_heading` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_sectionTitle` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_linkedin` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_freeformForm` int(11) DEFAULT NULL,
  `field_plainText_mmqrahtq` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_textColour_mwnqrgtq` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_featuredWork_rctoxzik` tinyint(1) DEFAULT NULL,
  `field_highlightColour_piacylig` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_quoteProbability_srzybvbu` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_quoteFinalisedDate_fmfbjwsp` datetime DEFAULT NULL,
  `field_mediaAlignment_ofeozuyc` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_quoteIdWorkbook_bjyckywk` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_seoTitle_ltukvako` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_seoDescription_iqinnjkp` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_seoKeywords_ywurqquw` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_seoImageDescription_leeelags` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_codeOutput_wpcbzido` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_calloutButtonUrl_tkecsjfi` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_calloutText_krjdawju` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_calloutButtonText_rmxaccom` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_calloutHeading_tcitknuf` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_annualRevenueTarget_oqogbzio` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_monthlyBudget_yjuoknoj` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_invoiceTotal_xomkrqll` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_invoiceStatus_dlunslbe` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_invoiceHeadline_qocjnghn` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_invoiceIdWorkbook_eyolpzxf` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_spacer_qxsclyly` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_showCta_kossowoo` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_jnampzpuxnwvsgiindrlmgncjudkuryuqbsl` (`elementId`,`siteId`),
  KEY `idx_jlpdysofzfpvavdqamwkvmvykfgyzudifqao` (`siteId`),
  KEY `idx_qwvyshkpmeznfnbgsjwodyolmkfjyfjjqfhv` (`title`),
  CONSTRAINT `fk_boqtytqpokuwnqxlaligbfkqmxplobtvkojc` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_zcgxgolodiraygiujcezblaunjdctzamlgnb` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=139449 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `cpnav_layout`
--

DROP TABLE IF EXISTS `cpnav_layout`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cpnav_layout` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `isDefault` tinyint(1) NOT NULL DEFAULT 0,
  `permissions` text 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 `cpnav_navigation`
--

DROP TABLE IF EXISTS `cpnav_navigation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cpnav_navigation` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `layoutId` int(11) NOT NULL,
  `handle` varchar(255) DEFAULT NULL,
  `prevLabel` varchar(255) DEFAULT NULL,
  `currLabel` varchar(255) DEFAULT NULL,
  `enabled` tinyint(1) NOT NULL DEFAULT 1,
  `order` int(11) DEFAULT 0,
  `prevUrl` varchar(255) DEFAULT NULL,
  `url` varchar(255) DEFAULT NULL,
  `icon` varchar(255) DEFAULT NULL,
  `customIcon` varchar(255) DEFAULT NULL,
  `type` varchar(255) DEFAULT NULL,
  `newWindow` 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 `cpnav_navigation_layoutId_idx` (`layoutId`),
  CONSTRAINT `cpnav_navigation_layoutId_fk` FOREIGN KEY (`layoutId`) REFERENCES `cpnav_layout` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=118 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `cpnav_pending_navigations`
--

DROP TABLE IF EXISTS `cpnav_pending_navigations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cpnav_pending_navigations` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `pluginNavItem` text 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 `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 COLLATE utf8_unicode_ci NOT NULL,
  `expiryDate` datetime DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `fk_vbjqiceclnzmknibifbowgeqibixwiqpihxe` (`userId`),
  CONSTRAINT `fk_vbjqiceclnzmknibifbowgeqibixwiqpihxe` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `fingerprint` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `lastOccurrence` datetime NOT NULL,
  `file` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `line` smallint(5) unsigned DEFAULT NULL,
  `message` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `traces` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_gyixbjmpciyrxhkufnyhhfdzyxpnduzlluji` (`key`,`fingerprint`)
) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `notes` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `trackChanges` tinyint(1) NOT NULL DEFAULT 0,
  `dateLastMerged` datetime DEFAULT NULL,
  `saved` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  KEY `idx_gaeesqyzzojfoyjbudoddwdocttbgzfeltyb` (`saved`),
  KEY `fk_xkiimjneqkqopdtjxhmcokhcwdywhffutnlg` (`creatorId`),
  KEY `fk_cfgjdzlnxvzegzqydshaawreealnnrrfcfsd` (`canonicalId`),
  KEY `idx_bdelcfdxxzdjvjzyommwkjtulwzcpyriknkw` (`creatorId`,`provisional`),
  CONSTRAINT `fk_cfgjdzlnxvzegzqydshaawreealnnrrfcfsd` FOREIGN KEY (`canonicalId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_xkiimjneqkqopdtjxhmcokhcwdywhffutnlg` FOREIGN KEY (`creatorId`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=1393 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci 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) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_aijlfeitdzsrfdehzsuuzwlivfcsmnhfkqbc` (`dateDeleted`),
  KEY `idx_tghqdgazuzalfjqackjtkcvqlnlctxsizszu` (`fieldLayoutId`),
  KEY `idx_dhavnldyinenyyedlkaklpuevecwubmccndh` (`type`),
  KEY `idx_upuqhqswhlqwtxspgwmkxrlsulqbfvieezxf` (`enabled`),
  KEY `idx_kyeablnkjhwfabodhagofxpdzvmrohjyzpyi` (`archived`,`dateCreated`),
  KEY `fk_ttzyqgeryabravgpbrucxstxewtxvtmlrfgz` (`draftId`),
  KEY `fk_tggqnirmmauxtvqxczjfdrfpsbmptgmmhgkt` (`revisionId`),
  KEY `fk_hthtxswafdoxwpwhqphbgwlivkwytlskhvyq` (`canonicalId`),
  KEY `idx_vmicgxvanuzvjngjyyfpuutyraunlyewifvo` (`archived`,`dateDeleted`,`draftId`,`revisionId`,`canonicalId`),
  KEY `idx_cxqezmgmjegkwbyvxhibgnfxfjxfahepxrtc` (`archived`,`dateDeleted`,`draftId`,`revisionId`,`canonicalId`,`enabled`),
  CONSTRAINT `fk_hthtxswafdoxwpwhqphbgwlivkwytlskhvyq` FOREIGN KEY (`canonicalId`) REFERENCES `elements` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_kxczxnrffeitzacazozzunhshzhufguulkuc` FOREIGN KEY (`fieldLayoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_tggqnirmmauxtvqxczjfdrfpsbmptgmmhgkt` FOREIGN KEY (`revisionId`) REFERENCES `revisions` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_ttzyqgeryabravgpbrucxstxewtxvtmlrfgz` FOREIGN KEY (`draftId`) REFERENCES `drafts` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=143225 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci DEFAULT NULL,
  `uri` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `enabled` tinyint(1) NOT NULL DEFAULT 1,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_jfalsdaamwglsjugemrvdldytsbnfoehkoov` (`elementId`,`siteId`),
  KEY `idx_anshfhtxzltqjrycglxydgkoavokkcuvznvq` (`siteId`),
  KEY `idx_ficrioouivoweeouoplmgjiswphescbrsmxu` (`slug`,`siteId`),
  KEY `idx_tsnybmgdlbbtivkmusfblqjjzjzxcwrpglwk` (`enabled`),
  KEY `idx_thyycenqfdmtdqbzgfbeluivsvufefjspdtw` (`uri`,`siteId`),
  CONSTRAINT `fk_diyzkzyhgpecrbpklpjvfkemqqwgrtbqiarq` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_wmjnawlpwtuwkdojztjtrpdmixmojdvqcvys` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=143225 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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_uwmjdamouzondywohgvcftuwyouxctgjspxj` (`postDate`),
  KEY `idx_fajccukqmghdhxrcfpakyabzlmkwlxruvbpl` (`expiryDate`),
  KEY `idx_xixbplzwpythlofxqitndgwfpqxmxaulvnqg` (`authorId`),
  KEY `idx_isqurhepfbthlhhqsyngcadnrvlmzliuqubw` (`sectionId`),
  KEY `idx_zgrcqjogwvvbfvkrpourqmxxunatmqiwxaoa` (`typeId`),
  KEY `fk_wrtdowxjlrjyxtedeptwisazwiudksqdajft` (`parentId`),
  CONSTRAINT `fk_aaopqksvrxydjrdqqsberxjwoufkanvkcrwm` FOREIGN KEY (`sectionId`) REFERENCES `sections` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_ajhshzcwxltdoqatfmeepfnudntnlbyiodlv` FOREIGN KEY (`authorId`) REFERENCES `users` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_unweiaieooyumyllkygyjsluhooyfgvtbmwh` FOREIGN KEY (`typeId`) REFERENCES `entrytypes` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_wrtdowxjlrjyxtedeptwisazwiudksqdajft` FOREIGN KEY (`parentId`) REFERENCES `entries` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_zaoxictnqgimkzyjuzklcpcptvemxshzomse` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `handle` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `hasTitleField` tinyint(1) NOT NULL DEFAULT 1,
  `titleTranslationMethod` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'site',
  `titleTranslationKeyFormat` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `titleFormat` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `sortOrder` smallint(5) unsigned DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `dateDeleted` datetime DEFAULT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_cidtddxfvuofguvrkyizehtyqclqezmnvpnr` (`name`,`sectionId`),
  KEY `idx_vsmblhevbqftpstoeieeuabppgomlkmjlozx` (`handle`,`sectionId`),
  KEY `idx_ljvmnsnurqgtebznavfnrmixaracvdwknzok` (`sectionId`),
  KEY `idx_whnvahnsveefjgdakhbygbygryxrtosrlmyd` (`fieldLayoutId`),
  KEY `idx_faeehugvhwgnisncycuvzebzvoavjegsbapn` (`dateDeleted`),
  CONSTRAINT `fk_lpvurordhxgtzcjblvjyhavkqvbercejsysm` FOREIGN KEY (`sectionId`) REFERENCES `sections` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_seebbltqalthfoufbdpnvpbcmjdpbudakoqu` FOREIGN KEY (`fieldLayoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `feedme_feeds`
--

DROP TABLE IF EXISTS `feedme_feeds`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `feedme_feeds` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `feedUrl` text COLLATE utf8_unicode_ci NOT NULL,
  `feedType` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `primaryElement` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `elementType` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `elementGroup` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `siteId` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `sortOrder` smallint(5) unsigned DEFAULT NULL,
  `singleton` tinyint(1) NOT NULL DEFAULT 0,
  `duplicateHandle` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `updateSearchIndexes` tinyint(1) NOT NULL DEFAULT 1,
  `paginationNode` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `fieldMapping` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `fieldUnique` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `passkey` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `backup` tinyint(1) NOT NULL DEFAULT 0,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `dateDeleted` datetime DEFAULT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_gjdhuubbulepnfnjejtdltzsqoearmrpxwuv` (`name`),
  KEY `idx_fbluowtnqqaclhdohjfojbvkldeajqpufkmy` (`dateDeleted`,`name`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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(5) unsigned DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_xrpaoyvtrourgwnvvhlaljgbbnvluytzxkdx` (`layoutId`,`fieldId`),
  KEY `idx_awvuqbwfmterdxkztvckwkcxutojmnwvqklh` (`sortOrder`),
  KEY `idx_sshdvqjizuicesjkekbgadwrhfaghhtbeesq` (`tabId`),
  KEY `idx_zfdjonzhswzdmoowjtoccokpehrfdnlanxwo` (`fieldId`),
  CONSTRAINT `fk_attniemynfxuvsquoujvcbsjxwkgcrmawuxk` FOREIGN KEY (`tabId`) REFERENCES `fieldlayouttabs` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_azujcdegulopjwswbbxpiaiofssbrozyfvko` FOREIGN KEY (`fieldId`) REFERENCES `fields` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_ulhvdtdfycpxnrejnwjuopzfzuplqbsonecy` FOREIGN KEY (`layoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2650 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `dateDeleted` datetime DEFAULT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_liyjmtyufgfcpscnmczdfggbmzjsrhfeuppk` (`dateDeleted`),
  KEY `idx_ssxfaqndsczqeyftochyppigopnnzjgwjyyn` (`type`)
) ENGINE=InnoDB AUTO_INCREMENT=71 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `settings` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `elements` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `sortOrder` smallint(5) unsigned DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_lwiuknnvqybjcoblfrtttvzapxkkuvfldghd` (`sortOrder`),
  KEY `idx_tcssgcwwepncebcmbteijaeqscgyoervzqdc` (`layoutId`),
  CONSTRAINT `fk_gdglrufyegcxdxcbmkgrpjghmzxwzktteeud` FOREIGN KEY (`layoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=1074 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `handle` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
  `context` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'global',
  `columnSuffix` char(8) COLLATE utf8_unicode_ci DEFAULT NULL,
  `instructions` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `searchable` tinyint(1) NOT NULL DEFAULT 1,
  `translationMethod` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'none',
  `translationKeyFormat` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `type` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `settings` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_vrwatacndbtmsomcirwajlorsjgcmpjxdqbh` (`handle`,`context`),
  KEY `idx_akhoulaaowinnjjiymqjzlnqxvsmvhrepgnq` (`groupId`),
  KEY `idx_jdatkuizcrupnjodzvbqiqqxwvcjwrdukszk` (`context`),
  CONSTRAINT `fk_ezyflppqcnprymmbibidkbsqulqqirmfzkre` FOREIGN KEY (`groupId`) REFERENCES `fieldgroups` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=221 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_crm_fields`
--

DROP TABLE IF EXISTS `freeform_crm_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `freeform_crm_fields` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `integrationId` int(11) NOT NULL,
  `label` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `handle` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `type` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `required` tinyint(1) DEFAULT 0,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_crm_fields_type_idx` (`type`),
  KEY `freeform_crm_fields_integrationId_fk` (`integrationId`),
  CONSTRAINT `freeform_crm_fields_integrationId_fk` FOREIGN KEY (`integrationId`) REFERENCES `freeform_integrations` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=120 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_export_notifications`
--

DROP TABLE IF EXISTS `freeform_export_notifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `freeform_export_notifications` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `profileId` int(11) NOT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `fileType` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
  `fileName` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `frequency` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
  `recipients` text COLLATE utf8_unicode_ci NOT NULL,
  `subject` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `message` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `dateCreated` datetime DEFAULT NULL,
  `dateUpdated` datetime DEFAULT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`),
  KEY `fk_qtcwaqbgfyfmsxrsxlvbtimyndvqrgxmrgxj` (`profileId`),
  CONSTRAINT `fk_qtcwaqbgfyfmsxrsxlvbtimyndvqrgxmrgxj` FOREIGN KEY (`profileId`) REFERENCES `freeform_export_profiles` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_export_profiles`
--

DROP TABLE IF EXISTS `freeform_export_profiles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `freeform_export_profiles` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `formId` int(11) NOT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `limit` int(11) DEFAULT NULL,
  `dateRange` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `rangeStart` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `rangeEnd` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `fields` text COLLATE utf8_unicode_ci NOT NULL,
  `filters` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `statuses` text COLLATE utf8_unicode_ci NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`),
  KEY `freeform_export_profiles_formId_fk` (`formId`),
  CONSTRAINT `freeform_export_profiles_formId_fk` FOREIGN KEY (`formId`) REFERENCES `freeform_forms` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_export_settings`
--

DROP TABLE IF EXISTS `freeform_export_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `freeform_export_settings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userId` int(11) NOT NULL,
  `setting` mediumtext COLLATE utf8_unicode_ci DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_export_settings_userId_fk` (`userId`),
  CONSTRAINT `freeform_export_settings_userId_fk` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_feed_messages`
--

DROP TABLE IF EXISTS `freeform_feed_messages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `freeform_feed_messages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `feedId` int(11) NOT NULL,
  `message` text COLLATE utf8_unicode_ci NOT NULL,
  `conditions` text COLLATE utf8_unicode_ci NOT NULL,
  `type` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `seen` tinyint(1) NOT NULL DEFAULT 0,
  `issueDate` datetime NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_feed_messages_feedId_fk` (`feedId`),
  CONSTRAINT `freeform_feed_messages_feedId_fk` FOREIGN KEY (`feedId`) REFERENCES `freeform_feeds` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_feeds`
--

DROP TABLE IF EXISTS `freeform_feeds`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `freeform_feeds` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `hash` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `min` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `max` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `issueDate` datetime NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `freeform_feeds_hash_unq_idx` (`hash`)
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_fields`
--

DROP TABLE IF EXISTS `freeform_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `freeform_fields` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `handle` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `label` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `required` tinyint(1) DEFAULT 0,
  `instructions` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `metaProperties` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `handle` (`handle`),
  KEY `freeform_fields_type_idx` (`type`)
) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_forms`
--

DROP TABLE IF EXISTS `freeform_forms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `freeform_forms` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `handle` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `spamBlockCount` int(11) unsigned NOT NULL DEFAULT 0,
  `submissionTitleFormat` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `description` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `layoutJson` mediumtext COLLATE utf8_unicode_ci DEFAULT NULL,
  `returnUrl` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `defaultStatus` int(11) unsigned DEFAULT NULL,
  `formTemplateId` int(11) unsigned DEFAULT NULL,
  `color` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL,
  `optInDataStorageTargetHash` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
  `limitFormSubmissions` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
  `extraPostUrl` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `extraPostTriggerPhrase` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `order` int(11) DEFAULT NULL,
  `gtmEnabled` tinyint(1) DEFAULT 0,
  `gtmId` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `gtmEventName` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  `type` varchar(200) COLLATE utf8_unicode_ci NOT NULL,
  `metadata` mediumtext COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `handle` (`handle`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_integrations`
--

DROP TABLE IF EXISTS `freeform_integrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `freeform_integrations` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `handle` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `type` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `class` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `accessToken` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `settings` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `forceUpdate` tinyint(1) DEFAULT 0,
  `lastUpdate` datetime DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `handle` (`handle`),
  KEY `freeform_integrations_type_idx` (`type`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_integrations_queue`
--

DROP TABLE IF EXISTS `freeform_integrations_queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `freeform_integrations_queue` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `submissionId` int(11) NOT NULL,
  `integrationType` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `status` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `fieldHash` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_integrations_queue_status_idx` (`status`),
  KEY `freeform_integrations_queue_submissionId_fk` (`submissionId`),
  CONSTRAINT `freeform_integrations_queue_id_fk` FOREIGN KEY (`id`) REFERENCES `freeform_mailing_list_fields` (`id`) ON DELETE CASCADE,
  CONSTRAINT `freeform_integrations_queue_submissionId_fk` FOREIGN KEY (`submissionId`) REFERENCES `freeform_submissions` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_lock`
--

DROP TABLE IF EXISTS `freeform_lock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `freeform_lock` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `key` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_lock_key_dateCreated_idx` (`key`,`dateCreated`),
  KEY `idx_amibllsouutcxrttkrueulrwfjbqbbhhwdqw` (`dateCreated`)
) ENGINE=InnoDB AUTO_INCREMENT=34131 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_mailing_list_fields`
--

DROP TABLE IF EXISTS `freeform_mailing_list_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `freeform_mailing_list_fields` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `mailingListId` int(11) NOT NULL,
  `label` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `handle` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `type` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `required` tinyint(1) DEFAULT 0,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_mailing_list_fields_type_idx` (`type`),
  KEY `freeform_mailing_list_fields_mailingListId_fk` (`mailingListId`),
  CONSTRAINT `freeform_mailing_list_fields_mailingListId_fk` FOREIGN KEY (`mailingListId`) REFERENCES `freeform_mailing_lists` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_mailing_lists`
--

DROP TABLE IF EXISTS `freeform_mailing_lists`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `freeform_mailing_lists` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `integrationId` int(11) NOT NULL,
  `resourceId` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `memberCount` int(11) DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `freeform_mailing_lists_integrationId_resourceId_unq_idx` (`integrationId`,`resourceId`),
  CONSTRAINT `freeform_mailing_lists_integrationId_fk` FOREIGN KEY (`integrationId`) REFERENCES `freeform_integrations` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_notification_log`
--

DROP TABLE IF EXISTS `freeform_notification_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `freeform_notification_log` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_notification_log_type_dateCreated_idx` (`type`,`dateCreated`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_notifications`
--

DROP TABLE IF EXISTS `freeform_notifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `freeform_notifications` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `handle` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `subject` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `description` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `fromName` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `fromEmail` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `replyToName` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `replyToEmail` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `cc` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `bcc` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `bodyHtml` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `bodyText` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `autoText` tinyint(1) NOT NULL DEFAULT 1,
  `includeAttachments` tinyint(1) DEFAULT 1,
  `presetAssets` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `sortOrder` int(11) DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `handle` (`handle`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_payment_gateway_fields`
--

DROP TABLE IF EXISTS `freeform_payment_gateway_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `freeform_payment_gateway_fields` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `integrationId` int(11) NOT NULL,
  `label` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `handle` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `type` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `required` tinyint(1) DEFAULT 0,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_payment_gateway_fields_type_idx` (`type`),
  KEY `freeform_payment_gateway_fields_integrationId_fk` (`integrationId`),
  CONSTRAINT `freeform_payment_gateway_fields_integrationId_fk` FOREIGN KEY (`integrationId`) REFERENCES `freeform_integrations` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_payments_payments`
--

DROP TABLE IF EXISTS `freeform_payments_payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `freeform_payments_payments` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `integrationId` int(11) NOT NULL,
  `submissionId` int(11) NOT NULL,
  `subscriptionId` int(11) DEFAULT NULL,
  `resourceId` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
  `amount` float DEFAULT NULL,
  `currency` varchar(3) COLLATE utf8_unicode_ci DEFAULT NULL,
  `last4` smallint(6) DEFAULT NULL,
  `status` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
  `metadata` mediumtext COLLATE utf8_unicode_ci DEFAULT NULL,
  `errorCode` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
  `errorMessage` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `freeform_payments_payments_integrationId_resourceId_unq_idx` (`integrationId`,`resourceId`),
  KEY `freeform_payments_payments_submissionId_fk` (`submissionId`),
  KEY `freeform_payments_payments_subscriptionId_fk` (`subscriptionId`),
  CONSTRAINT `freeform_payments_payments_integrationId_fk` FOREIGN KEY (`integrationId`) REFERENCES `freeform_integrations` (`id`) ON DELETE CASCADE,
  CONSTRAINT `freeform_payments_payments_submissionId_fk` FOREIGN KEY (`submissionId`) REFERENCES `freeform_submissions` (`id`) ON DELETE CASCADE,
  CONSTRAINT `freeform_payments_payments_subscriptionId_fk` FOREIGN KEY (`subscriptionId`) REFERENCES `freeform_payments_subscriptions` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_payments_subscription_plans`
--

DROP TABLE IF EXISTS `freeform_payments_subscription_plans`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `freeform_payments_subscription_plans` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `integrationId` int(11) NOT NULL,
  `resourceId` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `status` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_payments_subscription_plans_integrationId_fk` (`integrationId`),
  CONSTRAINT `freeform_payments_subscription_plans_integrationId_fk` FOREIGN KEY (`integrationId`) REFERENCES `freeform_integrations` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_payments_subscriptions`
--

DROP TABLE IF EXISTS `freeform_payments_subscriptions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `freeform_payments_subscriptions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `integrationId` int(11) NOT NULL,
  `submissionId` int(11) NOT NULL,
  `planId` int(11) NOT NULL,
  `resourceId` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
  `amount` float DEFAULT NULL,
  `currency` varchar(3) COLLATE utf8_unicode_ci DEFAULT NULL,
  `interval` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
  `intervalCount` smallint(6) DEFAULT NULL,
  `last4` smallint(6) DEFAULT NULL,
  `status` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
  `metadata` mediumtext COLLATE utf8_unicode_ci DEFAULT NULL,
  `errorCode` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
  `errorMessage` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `freeform_payments_subscriptions_integrationId_resourceId_unq_idx` (`integrationId`,`resourceId`),
  KEY `freeform_payments_subscriptions_submissionId_fk` (`submissionId`),
  KEY `freeform_payments_subscriptions_planId_fk` (`planId`),
  CONSTRAINT `freeform_payments_subscriptions_integrationId_fk` FOREIGN KEY (`integrationId`) REFERENCES `freeform_integrations` (`id`) ON DELETE CASCADE,
  CONSTRAINT `freeform_payments_subscriptions_planId_fk` FOREIGN KEY (`planId`) REFERENCES `freeform_payments_subscription_plans` (`id`) ON DELETE CASCADE,
  CONSTRAINT `freeform_payments_subscriptions_submissionId_fk` FOREIGN KEY (`submissionId`) REFERENCES `freeform_submissions` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_saved_forms`
--

DROP TABLE IF EXISTS `freeform_saved_forms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `freeform_saved_forms` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `sessionId` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
  `formId` int(11) NOT NULL,
  `token` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `payload` mediumtext COLLATE utf8_unicode_ci DEFAULT NULL,
  `dateCreated` datetime DEFAULT NULL,
  `dateUpdated` datetime DEFAULT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_femeytcyhvpfkcnlwhpnboafibbrmzlvafek` (`token`),
  KEY `idx_uljnyxplwawnpifhxweoevrrnalzsriyprlt` (`dateCreated`),
  KEY `idx_xskrwagevrcqqwnkbbqoxnmshnxcajlbgftq` (`sessionId`),
  KEY `fk_eahevwoecnrblhvzawlfgiebpugqwnzhstnv` (`formId`),
  CONSTRAINT `fk_eahevwoecnrblhvzawlfgiebpugqwnzhstnv` FOREIGN KEY (`formId`) REFERENCES `freeform_forms` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_session_context`
--

DROP TABLE IF EXISTS `freeform_session_context`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `freeform_session_context` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `contextKey` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `sessionId` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `formId` int(11) NOT NULL,
  `propertyBag` mediumtext COLLATE utf8_unicode_ci DEFAULT NULL,
  `attributeBag` mediumtext COLLATE utf8_unicode_ci DEFAULT NULL,
  `dateCreated` datetime DEFAULT NULL,
  `dateUpdated` datetime DEFAULT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_gdilzlapzmtphwmebkreakoqsiuzzpzrqopg` (`contextKey`,`formId`),
  KEY `idx_dajrtfydficsnagceppmjfwkvgycrftahxpp` (`sessionId`),
  KEY `fk_bxvutssdubhnedlvynwcxobwldiudvauesnt` (`formId`),
  CONSTRAINT `fk_bxvutssdubhnedlvynwcxobwldiudvauesnt` FOREIGN KEY (`formId`) REFERENCES `freeform_forms` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_spam_reason`
--

DROP TABLE IF EXISTS `freeform_spam_reason`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `freeform_spam_reason` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `submissionId` int(11) NOT NULL,
  `reasonType` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `reasonMessage` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_spam_reason_submissionId_reasonType_idx` (`submissionId`,`reasonType`),
  CONSTRAINT `freeform_spam_reason_submissionId_fk` FOREIGN KEY (`submissionId`) REFERENCES `freeform_submissions` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_statuses`
--

DROP TABLE IF EXISTS `freeform_statuses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `freeform_statuses` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `handle` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `color` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL,
  `isDefault` tinyint(1) DEFAULT NULL,
  `sortOrder` int(11) DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `handle` (`handle`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_submission_notes`
--

DROP TABLE IF EXISTS `freeform_submission_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `freeform_submission_notes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `submissionId` int(11) NOT NULL,
  `note` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_submission_notes_submissionId_fk` (`submissionId`),
  CONSTRAINT `freeform_submission_notes_submissionId_fk` FOREIGN KEY (`submissionId`) REFERENCES `freeform_submissions` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_submissions`
--

DROP TABLE IF EXISTS `freeform_submissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `freeform_submissions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `incrementalId` int(11) NOT NULL,
  `statusId` int(11) DEFAULT NULL,
  `formId` int(11) NOT NULL,
  `token` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `ip` varchar(46) COLLATE utf8_unicode_ci DEFAULT NULL,
  `isSpam` tinyint(1) DEFAULT 0,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  `userId` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `freeform_submissions_incrementalId_unq_idx` (`incrementalId`),
  UNIQUE KEY `freeform_submissions_token_unq_idx` (`token`),
  KEY `freeform_submissions_formId_fk` (`formId`),
  KEY `freeform_submissions_statusId_fk` (`statusId`),
  KEY `fk_wbqpsbyxnkrssfipoberginlvhktkzsbeazk` (`userId`),
  CONSTRAINT `fk_wbqpsbyxnkrssfipoberginlvhktkzsbeazk` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE,
  CONSTRAINT `freeform_submissions_formId_fk` FOREIGN KEY (`formId`) REFERENCES `freeform_forms` (`id`) ON DELETE CASCADE,
  CONSTRAINT `freeform_submissions_id_fk` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `freeform_submissions_statusId_fk` FOREIGN KEY (`statusId`) REFERENCES `freeform_statuses` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=143132 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_submissions_brand_audit_1`
--

DROP TABLE IF EXISTS `freeform_submissions_brand_audit_1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `freeform_submissions_brand_audit_1` (
  `id` int(11) NOT NULL,
  `user_id_15` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `why_does_your_brand_exist_12` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `user_full_name_17` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `who_does_your_brand_exist_to_serve_18` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `values_what_do_you_stand_for_and_how_do_you_operat_19` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `culture_how_do_you_and_your_people_think_and_behav_20` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `your_people_22` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `your_customers_23` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `your_brand_is_24` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `your_brand_stands_for_25` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `our_past_26` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `our_future_27` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `our_current_brands_and_their_place_in_the_overall_28` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `voice_what_does_your_brand_sound_likehow_it_speaks_29` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `markets_we_compete_in_30` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `competitors_31` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `organisations_similar_to_us_or_that_we_admire_32` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `customersand_their_wantsneeds_include_33` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `our_visual_branding_needs_to_34` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `existing_materials_include_35` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `new_needs_include_36` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `campaigns_what_campaigns_will_tell_your_story_and_37` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `promise_what_canshoulddo_customers_expect_from_you_38` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `opportunities_what_can_your_brand_achieve_for_your_39` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `outcomes_what_needs_to_be_done_as_a_result_of_this_40` text COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  CONSTRAINT `fk_hxzzrfhaakxqkugeiyrqhimjebahclkulqho` FOREIGN KEY (`id`) REFERENCES `freeform_submissions` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_submissions_cald_3`
--

DROP TABLE IF EXISTS `freeform_submissions_cald_3`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `freeform_submissions_cald_3` (
  `id` int(11) NOT NULL,
  `email_3` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `first_name_1` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `last_name_2` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `yearofbirth_42` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `mobile_5` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `country_birth_9` text COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  CONSTRAINT `fk_danvpzyfzlndnwnhfngkpzlsxytqpaagnjcd` FOREIGN KEY (`id`) REFERENCES `freeform_submissions` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_submissions_contact_us_2`
--

DROP TABLE IF EXISTS `freeform_submissions_contact_us_2`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `freeform_submissions_contact_us_2` (
  `id` int(11) NOT NULL,
  `first_name_1` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `last_name_2` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `email_3` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `phone_41` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `message_12` text COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  CONSTRAINT `fk_wmmojngdfrhiaemlqjmxuistxwfovrwlpjzt` FOREIGN KEY (`id`) REFERENCES `freeform_submissions` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_unfinalized_files`
--

DROP TABLE IF EXISTS `freeform_unfinalized_files`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `freeform_unfinalized_files` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `assetId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  `fieldHandle` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `formToken` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `freeform_unfinalized_files_fieldHandle_formToken_idx` (`fieldHandle`,`formToken`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_webhooks`
--

DROP TABLE IF EXISTS `freeform_webhooks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `freeform_webhooks` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `webhook` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `settings` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_webhooks_type_idx` (`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `freeform_webhooks_form_relations`
--

DROP TABLE IF EXISTS `freeform_webhooks_form_relations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `freeform_webhooks_form_relations` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `webhookId` int(11) NOT NULL,
  `formId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `freeform_webhooks_form_relations_webhookId_idx` (`webhookId`),
  KEY `freeform_webhooks_form_relations_formId_idx` (`formId`),
  CONSTRAINT `freeform_webhooks_form_relations_formId_fk` FOREIGN KEY (`formId`) REFERENCES `freeform_forms` (`id`) ON DELETE CASCADE,
  CONSTRAINT `freeform_webhooks_form_relations_webhookId_fk` FOREIGN KEY (`webhookId`) REFERENCES `freeform_webhooks` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `handle` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `fieldLayoutId` int(11) DEFAULT NULL,
  `sortOrder` smallint(6) unsigned DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_krnbqvxvrksprbywxzjimvcozceiwvvsthyn` (`name`),
  KEY `idx_bfqvsmaabovmwcnxxfszikqjutscksxlopgs` (`handle`),
  KEY `idx_iyjhqtaixvuktmxiatdjgnwgiitwsagozgmj` (`fieldLayoutId`),
  KEY `idx_adwwoqfocuvxaehxxhkhcigozzywwkaeotji` (`sortOrder`),
  CONSTRAINT `fk_gyrbhxactocptbhgddkwjsdpdksxfuqkcvtk` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_tygdrazmkavbcyxgkffgvbgyepihbqrhnmxm` FOREIGN KEY (`fieldLayoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=97389 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `scope` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `isPublic` tinyint(1) NOT NULL DEFAULT 0,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `accessToken` varchar(255) COLLATE utf8_unicode_ci 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) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_ihedrhchrsniqqjcyowvxzbcfrizgbazwfxp` (`accessToken`),
  UNIQUE KEY `idx_ksrwwqkmhyuihlaunwbyfascqrartinpyyrm` (`name`),
  KEY `fk_lmczkixncbydgjphgugivxxxbsfamvukkxdv` (`schemaId`),
  CONSTRAINT `fk_lmczkixncbydgjphgugivxxxbsfamvukkxdv` FOREIGN KEY (`schemaId`) REFERENCES `gqlschemas` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci DEFAULT NULL,
  `filename` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `format` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `transformString` varchar(255) COLLATE utf8_unicode_ci 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) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_cxedrnnovlduqlgyzbwwibhxqkfqcgrnpzqs` (`assetId`,`format`,`transformString`),
  KEY `idx_knjehcsakprmcwzxvrmqxamhpcfccdvvcwqb` (`assetId`,`transformString`)
) ENGINE=InnoDB AUTO_INCREMENT=353086 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `handle` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `mode` enum('stretch','fit','crop','letterbox') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'crop',
  `position` enum('top-left','top-center','top-right','center-left','center-center','center-right','bottom-left','bottom-center','bottom-right') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'center-center',
  `width` int(10) unsigned DEFAULT NULL,
  `height` int(10) unsigned DEFAULT NULL,
  `format` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `quality` int(11) DEFAULT NULL,
  `interlace` enum('none','line','plane','partition') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'none',
  `fill` varchar(11) COLLATE utf8_unicode_ci DEFAULT NULL,
  `upscale` tinyint(1) NOT NULL DEFAULT 1,
  `parameterChangeTime` datetime DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_xqshdpoyltrxjfuuwbmdtjkiexetqjjrawvb` (`name`),
  KEY `idx_zfvuiinvtdbgpchzobgswbqnpzidnqzmopce` (`handle`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `schemaVersion` varchar(15) COLLATE utf8_unicode_ci NOT NULL,
  `maintenance` tinyint(1) NOT NULL DEFAULT 0,
  `configVersion` char(12) COLLATE utf8_unicode_ci NOT NULL DEFAULT '000000000000',
  `fieldVersion` char(12) COLLATE utf8_unicode_ci NOT NULL DEFAULT '000000000000',
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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_bhpytgtkdmpipkyjnwgqhkvonjpwvdqvduei` (`primaryOwnerId`),
  KEY `idx_kzflsoqbsxzevfrnicflspayzlrbiccdkqam` (`fieldId`),
  KEY `idx_jtltuyihtlizoogibhbhpptbveyamoobobud` (`typeId`),
  CONSTRAINT `fk_jtxuwbaplwokmxquwtsqgfbfhheousbxmiwb` FOREIGN KEY (`primaryOwnerId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_qxlvcrfnuuilhndflnnvzfyjclhlvkjukmar` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_tlsibdrgfygfrmxcadwvhjisxpdoncubqvsq` FOREIGN KEY (`typeId`) REFERENCES `matrixblocktypes` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_zriucckpqbetibmirlckmavdofuddnqgvemd` FOREIGN KEY (`fieldId`) REFERENCES `fields` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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_vvywbbwhnyhaocvawwmgglamlzljzdsghizo` (`ownerId`),
  CONSTRAINT `fk_ssgojmmlolnvzwpbblntxbtyzznlbvkhlswx` FOREIGN KEY (`blockId`) REFERENCES `matrixblocks` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_vvywbbwhnyhaocvawwmgglamlzljzdsghizo` FOREIGN KEY (`ownerId`) REFERENCES `elements` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `handle` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `sortOrder` smallint(5) unsigned DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_dshwgknsqtirschoeznetpwbiryzapesyzwq` (`name`,`fieldId`),
  KEY `idx_kvfngfisibkzhfyveblxxebxubpsexpfebjg` (`handle`,`fieldId`),
  KEY `idx_axaptsnjmyxqsucophplzvwbhzbkzxqpvinb` (`fieldId`),
  KEY `idx_qxajgdrftrhsohjlipsazjvcqsjumuvbvnmx` (`fieldLayoutId`),
  CONSTRAINT `fk_ajowjnyymnxnvoikluwjdxkbcrfgxflgaorp` FOREIGN KEY (`fieldLayoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_vqsjyehgbqciihewgxjiliafflzdjyldicmj` FOREIGN KEY (`fieldId`) REFERENCES `fields` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `matrixcontent_accordioncontent`
--

DROP TABLE IF EXISTS `matrixcontent_accordioncontent`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `matrixcontent_accordioncontent` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `elementId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  `field_accordionBlock_buttonText_wwfbjvap` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_accordionBlock_buttonUrl_zbzseplm` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_accordionBlock_accordionTitle_incqkijn` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_accordionBlock_accordionText_eroezkpc` text COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_gbnttbkazffkchoiehlpqzgxxwqzzacatafg` (`elementId`,`siteId`),
  KEY `fk_suyzuiznneuggpflmpycjhcqsupjmnedgjex` (`siteId`),
  CONSTRAINT `fk_mataafkixxltqkhirtsyrqlilbychspmtyaq` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_suyzuiznneuggpflmpycjhcqsupjmnedgjex` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `matrixcontent_bodycodes`
--

DROP TABLE IF EXISTS `matrixcontent_bodycodes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `matrixcontent_bodycodes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `elementId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  `field_codeBocks_codeBlock` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `matrixcontent_bodycodes_elementId_siteId_unq_idx` (`elementId`,`siteId`),
  KEY `matrixcontent_bodycodes_siteId_fk` (`siteId`),
  CONSTRAINT `matrixcontent_bodycodes_elementId_fk` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `matrixcontent_bodycodes_siteId_fk` 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 `matrixcontent_buttons`
--

DROP TABLE IF EXISTS `matrixcontent_buttons`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `matrixcontent_buttons` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `elementId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  `field_button_buttonText` text DEFAULT NULL,
  `field_button_buttonUrl` varchar(255) DEFAULT NULL,
  `field_button_newWindow` tinyint(1) DEFAULT NULL,
  `field_button_style` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `matrixcontent_buttons_elementId_siteId_unq_idx` (`elementId`,`siteId`),
  KEY `matrixcontent_buttons_siteId_fk` (`siteId`),
  CONSTRAINT `matrixcontent_buttons_elementId_fk` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `matrixcontent_buttons_siteId_fk` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=39249 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `matrixcontent_buttons_1`
--

DROP TABLE IF EXISTS `matrixcontent_buttons_1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `matrixcontent_buttons_1` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `elementId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  `field_buttons_buttonText` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_buttons_externalLink` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_buttons_buttonStyle` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_buttons_buttonColour` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_qsgkrnbqyahvshzksxrlwaohbzveqlukgwgu` (`elementId`,`siteId`),
  KEY `fk_nvwrivhpbffhcxmprmznntqllhzooxdljehz` (`siteId`),
  CONSTRAINT `fk_nvwrivhpbffhcxmprmznntqllhzooxdljehz` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `fk_pjixhznfvmkxxdgmlihvzinmxlafnktbmigm` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `matrixcontent_column`
--

DROP TABLE IF EXISTS `matrixcontent_column`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `matrixcontent_column` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `elementId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  `field_column_richText` text DEFAULT NULL,
  `field_column_buttonText` text DEFAULT NULL,
  `field_column_newWindow` tinyint(1) DEFAULT NULL,
  `field_column_buttonStyle` varchar(255) DEFAULT NULL,
  `field_column_buttonUrl` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `matrixcontent_column_elementId_siteId_unq_idx` (`elementId`,`siteId`),
  KEY `matrixcontent_column_siteId_fk` (`siteId`),
  CONSTRAINT `matrixcontent_column_elementId_fk` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `matrixcontent_column_siteId_fk` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=12484 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `matrixcontent_contentbuilder`
--

DROP TABLE IF EXISTS `matrixcontent_contentbuilder`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `matrixcontent_contentbuilder` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `elementId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  `field_fullWidthHeadingAndText_text` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_fullWidthHeadingAndText_heading` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_redBackgroundGridList_heading` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_headingLeftTextRight_heading` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_headingLeftTextRight_text` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_logoCloud_heading` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_fullWidthHeadingAndText_sectionHeading` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_redBackgroundGridList_sectionHeading` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_peopleGrid_sectionHeading` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_headingLeftTextRight_sectionHeading` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_logoCloud_sectionHeading` text COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_ijuljzupjkeuiudpxswhkbvjxxnbmgcjiwqy` (`elementId`,`siteId`),
  KEY `fk_nlrcqodyinsqklbomuuzamgaqwihlnkfuxpk` (`siteId`),
  CONSTRAINT `fk_ijrjtsowyyxdstuptsggqntdwreiupisdrfq` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_nlrcqodyinsqklbomuuzamgaqwihlnkfuxpk` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=481 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `matrixcontent_footercodes`
--

DROP TABLE IF EXISTS `matrixcontent_footercodes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `matrixcontent_footercodes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `elementId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  `field_codeBlocks_codeBlock` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `matrixcontent_footercodes_elementId_siteId_unq_idx` (`elementId`,`siteId`),
  KEY `matrixcontent_footercodes_siteId_fk` (`siteId`),
  CONSTRAINT `matrixcontent_footercodes_elementId_fk` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `matrixcontent_footercodes_siteId_fk` 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 `matrixcontent_footernavigation`
--

DROP TABLE IF EXISTS `matrixcontent_footernavigation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `matrixcontent_footernavigation` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `elementId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  `field_footerColumn_footerMenu` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `matrixcontent_footernavigation_elementId_siteId_unq_idx` (`elementId`,`siteId`),
  KEY `matrixcontent_footernavigation_siteId_fk` (`siteId`),
  CONSTRAINT `matrixcontent_footernavigation_elementId_fk` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `matrixcontent_footernavigation_siteId_fk` 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 `matrixcontent_headercodes`
--

DROP TABLE IF EXISTS `matrixcontent_headercodes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `matrixcontent_headercodes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `elementId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  `field_codeBlocks_codeBlock` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `matrixcontent_headercodes_elementId_siteId_unq_idx` (`elementId`,`siteId`),
  KEY `matrixcontent_headercodes_siteId_fk` (`siteId`),
  CONSTRAINT `matrixcontent_headercodes_elementId_fk` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `matrixcontent_headercodes_siteId_fk` 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 `matrixcontent_homepageslideshow`
--

DROP TABLE IF EXISTS `matrixcontent_homepageslideshow`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `matrixcontent_homepageslideshow` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `elementId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  `field_homepageSlideshow_lessText` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_homepageSlideshow_moreText` text COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_wjplzxegyxyicgxjtyfsmxwlvdtvicixnigz` (`elementId`,`siteId`),
  KEY `fk_awqjxwsidsepiuppvsxojgbffvnrysegymvm` (`siteId`),
  CONSTRAINT `fk_awqjxwsidsepiuppvsxojgbffvnrysegymvm` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `fk_edcuynfqhngzfiloojqfzdjxlepstpbmbcle` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=544 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `matrixcontent_layoutbuilder`
--

DROP TABLE IF EXISTS `matrixcontent_layoutbuilder`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `matrixcontent_layoutbuilder` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `elementId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  `field_leadText_heading` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_leadText_text` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_headingAndText_heading` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_headingAndText_text` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_imageAndText_heading` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_imageAndText_text` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_imageAndText_imageAlignment` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_headingAndText_height` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_leadText_height_gjpgbrsz` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_fdlhgpikrbuawouogngoufamtjqbzatdmkwc` (`elementId`,`siteId`),
  KEY `fk_ouwcnsmwkhqafouutdatamhexkvwfwldgeof` (`siteId`),
  CONSTRAINT `fk_imqvvyqlmpqbucxqaerwajdqxnddyxfmhhiv` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_ouwcnsmwkhqafouutdatamhexkvwfwldgeof` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=1450 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `matrixcontent_newscontent`
--

DROP TABLE IF EXISTS `matrixcontent_newscontent`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `matrixcontent_newscontent` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `elementId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  `field_richText_richText` text DEFAULT NULL,
  `field_image_caption` text DEFAULT NULL,
  `field_blockquote_cite` text DEFAULT NULL,
  `field_blockquote_quote` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `matrixcontent_newscontent_elementId_siteId_unq_idx` (`elementId`,`siteId`),
  KEY `matrixcontent_newscontent_siteId_fk` (`siteId`),
  CONSTRAINT `matrixcontent_newscontent_elementId_fk` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `matrixcontent_newscontent_siteId_fk` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4977 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `matrixcontent_questions`
--

DROP TABLE IF EXISTS `matrixcontent_questions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `matrixcontent_questions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `elementId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  `field_question_question` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_question_answer` text COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_eddwxdhkcyzoxcbtdxdayzhumpdcvddbicpv` (`elementId`,`siteId`),
  KEY `fk_khijambxsdtuhvutaajyaviwuitbxmjzttnl` (`siteId`),
  CONSTRAINT `fk_jzeawteckgwrcetcdzdrinepatwkjhrlvzuk` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_khijambxsdtuhvutaajyaviwuitbxmjzttnl` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=106 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `matrixcontent_textbuilder`
--

DROP TABLE IF EXISTS `matrixcontent_textbuilder`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `matrixcontent_textbuilder` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `elementId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  `field_heading_headingColour` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_heading_headingText` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_text_textSize` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_text_text` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_text_textColour` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_heading_headingSize` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_zmvmvmazcxtqlfkhzljungbigihvaieqlrkc` (`elementId`,`siteId`),
  KEY `idx_vwzramrifzuyhdtdgxzkqywkdlqkotxyxmba` (`siteId`),
  CONSTRAINT `fk_iwvzfolhuimfeowidmpmtbmauhihkkwkxojf` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `fk_puztrcgaliqcrwffvfwzmkqdgpjefigmeowt` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `matrixcontent_videos`
--

DROP TABLE IF EXISTS `matrixcontent_videos`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `matrixcontent_videos` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `elementId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  `field_videos_videoCode_ohcnrvnx` text COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_kvbozvhocdxxdeqazpkbexjmwciqpaixpema` (`elementId`,`siteId`),
  KEY `fk_xxzdnetdmkdbclgcbjgkvepdtkuupjbaptrq` (`siteId`),
  CONSTRAINT `fk_cupoiiyakpfseayjyepchhhlldqplrjuylbt` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_xxzdnetdmkdbclgcbjgkvepdtkuupjbaptrq` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `applyTime` datetime NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_cpsruknbszjjndsgyfcfuhcgeknyihhrvzdm` (`track`,`name`)
) ENGINE=InnoDB AUTO_INCREMENT=363 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `navigation_navs`
--

DROP TABLE IF EXISTS `navigation_navs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `navigation_navs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `structureId` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  `handle` varchar(255) NOT NULL,
  `instructions` text DEFAULT NULL,
  `sortOrder` smallint(6) unsigned DEFAULT NULL,
  `propagateNodes` tinyint(1) DEFAULT 0,
  `maxNodes` int(11) DEFAULT NULL,
  `permissions` text DEFAULT NULL,
  `siteSettings` text DEFAULT 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 `navigation_navs_structureId_idx` (`structureId`),
  KEY `navigation_navs_dateDeleted_idx` (`dateDeleted`),
  KEY `navigation_navs_handle_idx` (`handle`),
  KEY `navigation_navs_fieldLayoutId_idx` (`fieldLayoutId`),
  CONSTRAINT `navigation_navs_fieldLayoutId_fk` FOREIGN KEY (`fieldLayoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE SET NULL,
  CONSTRAINT `navigation_navs_structureId_fk` FOREIGN KEY (`structureId`) REFERENCES `structures` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `navigation_nodes`
--

DROP TABLE IF EXISTS `navigation_nodes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `navigation_nodes` (
  `id` int(11) NOT NULL,
  `elementId` int(11) DEFAULT NULL,
  `navId` int(11) NOT NULL,
  `parentId` int(11) DEFAULT NULL,
  `url` varchar(255) DEFAULT NULL,
  `type` varchar(255) DEFAULT NULL,
  `classes` varchar(255) DEFAULT NULL,
  `urlSuffix` varchar(255) DEFAULT NULL,
  `customAttributes` text DEFAULT NULL,
  `data` text DEFAULT NULL,
  `newWindow` tinyint(1) DEFAULT 0,
  `deletedWithNav` tinyint(1) DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `navigation_nodes_navId_idx` (`navId`),
  KEY `navigation_nodes_elementId_fk` (`elementId`),
  CONSTRAINT `navigation_nodes_elementId_fk` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE SET NULL,
  CONSTRAINT `navigation_nodes_id_fk` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `navigation_nodes_navId_fk` FOREIGN KEY (`navId`) REFERENCES `navigation_navs` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `neoblocks`
--

DROP TABLE IF EXISTS `neoblocks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `neoblocks` (
  `id` int(11) NOT NULL,
  `ownerId` int(11) NOT NULL,
  `ownerSiteId` int(11) DEFAULT NULL,
  `fieldId` int(11) NOT NULL,
  `typeId` int(11) NOT NULL,
  `deletedWithOwner` tinyint(1) 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`),
  KEY `neoblocks_ownerId_idx` (`ownerId`),
  KEY `neoblocks_ownerSiteId_idx` (`ownerSiteId`),
  KEY `neoblocks_fieldId_idx` (`fieldId`),
  KEY `neoblocks_typeId_idx` (`typeId`),
  CONSTRAINT `neoblocks_fieldId_fk` FOREIGN KEY (`fieldId`) REFERENCES `fields` (`id`) ON DELETE CASCADE,
  CONSTRAINT `neoblocks_id_fk` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `neoblocks_ownerId_fk` FOREIGN KEY (`ownerId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `neoblocks_ownerSiteId_fk` FOREIGN KEY (`ownerSiteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `neoblocks_typeId_fk` FOREIGN KEY (`typeId`) REFERENCES `neoblocktypes` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `neoblockstructures`
--

DROP TABLE IF EXISTS `neoblockstructures`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `neoblockstructures` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `structureId` int(11) NOT NULL,
  `ownerId` int(11) NOT NULL,
  `ownerSiteId` int(11) DEFAULT NULL,
  `fieldId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `neoblockstructures_structureId_idx` (`structureId`),
  KEY `neoblockstructures_ownerId_idx` (`ownerId`),
  KEY `neoblockstructures_ownerSiteId_idx` (`ownerSiteId`),
  KEY `neoblockstructures_fieldId_idx` (`fieldId`),
  CONSTRAINT `neoblockstructures_fieldId_fk` FOREIGN KEY (`fieldId`) REFERENCES `fields` (`id`) ON DELETE CASCADE,
  CONSTRAINT `neoblockstructures_ownerId_fk` FOREIGN KEY (`ownerId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `neoblockstructures_ownerSiteId_fk` FOREIGN KEY (`ownerSiteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `neoblockstructures_structureId_fk` FOREIGN KEY (`structureId`) REFERENCES `structures` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=18672 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `neoblocktypegroups`
--

DROP TABLE IF EXISTS `neoblocktypegroups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `neoblocktypegroups` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `fieldId` int(11) NOT NULL,
  `name` 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 `neoblocktypegroups_name_fieldId_idx` (`name`,`fieldId`),
  KEY `neoblocktypegroups_fieldId_idx` (`fieldId`),
  CONSTRAINT `neoblocktypegroups_fieldId_fk` FOREIGN KEY (`fieldId`) REFERENCES `fields` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=122 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `neoblocktypes`
--

DROP TABLE IF EXISTS `neoblocktypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `neoblocktypes` (
  `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,
  `maxBlocks` smallint(6) unsigned DEFAULT NULL,
  `maxSiblingBlocks` smallint(6) unsigned DEFAULT 0,
  `maxChildBlocks` smallint(6) unsigned DEFAULT NULL,
  `childBlocks` text DEFAULT NULL,
  `topLevel` tinyint(1) NOT NULL DEFAULT 1,
  `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 `neoblocktypes_handle_fieldId_unq_idx` (`handle`,`fieldId`),
  KEY `neoblocktypes_name_fieldId_idx` (`name`,`fieldId`),
  KEY `neoblocktypes_fieldId_idx` (`fieldId`),
  KEY `neoblocktypes_fieldLayoutId_idx` (`fieldLayoutId`),
  CONSTRAINT `neoblocktypes_fieldId_fk` FOREIGN KEY (`fieldId`) REFERENCES `fields` (`id`) ON DELETE CASCADE,
  CONSTRAINT `neoblocktypes_fieldLayoutId_fk` FOREIGN KEY (`fieldLayoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=25 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) COLLATE utf8_unicode_ci NOT NULL,
  `version` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `schemaVersion` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `installDate` datetime NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_naaruzbrnrvrxevlacwajncbdenubqhqkhst` (`handle`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `value` text COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`path`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'queue',
  `job` longblob NOT NULL,
  `description` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `timePushed` int(11) NOT NULL,
  `ttr` int(11) NOT NULL,
  `delay` int(11) NOT NULL DEFAULT 0,
  `priority` int(10) unsigned NOT NULL DEFAULT 1024,
  `dateReserved` datetime DEFAULT NULL,
  `timeUpdated` int(11) DEFAULT NULL,
  `progress` smallint(6) NOT NULL DEFAULT 0,
  `progressLabel` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `attempt` int(11) DEFAULT NULL,
  `fail` tinyint(1) DEFAULT 0,
  `dateFailed` datetime DEFAULT NULL,
  `error` text COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_yhteazwwuskchhdmglusxytmjrakvnqugglc` (`channel`,`fail`,`timeUpdated`,`timePushed`),
  KEY `idx_pqidgfuacklajfiiwdsfzeupwxedickbqalz` (`channel`,`fail`,`timeUpdated`,`delay`)
) ENGINE=InnoDB AUTO_INCREMENT=564271 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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(5) unsigned DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_zgwzfodnwmoemjvengzzyzatzzonuibculbi` (`fieldId`,`sourceId`,`sourceSiteId`,`targetId`),
  KEY `idx_dgpoxismszssrhhuefleajloraonwvhridlc` (`sourceId`),
  KEY `idx_lwyhgkjfjryfnceounezgvayoshrawteaytx` (`targetId`),
  KEY `idx_bfdcvbfpiowvdrjbxjismbrcmxdqkqdscyhj` (`sourceSiteId`),
  CONSTRAINT `fk_bdrrhlnzpnifnulcwhtkzaltugazjbjpozgy` FOREIGN KEY (`sourceSiteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `fk_pbkoenbimqioghphlkvdzdoohcdtkkdgadei` FOREIGN KEY (`fieldId`) REFERENCES `fields` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_pqgibkixovmubyhgeettqrlaysgtpycwhoot` FOREIGN KEY (`sourceId`) REFERENCES `elements` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=122050 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `path` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`hash`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `retour_redirects`
--

DROP TABLE IF EXISTS `retour_redirects`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `retour_redirects` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  `siteId` int(11) DEFAULT NULL,
  `associatedElementId` int(11) NOT NULL,
  `enabled` tinyint(1) DEFAULT 1,
  `redirectSrcUrl` varchar(255) DEFAULT '',
  `redirectSrcUrlParsed` varchar(255) DEFAULT '',
  `redirectSrcMatch` varchar(32) DEFAULT 'pathonly',
  `redirectMatchType` varchar(32) DEFAULT 'exactmatch',
  `redirectDestUrl` varchar(255) DEFAULT '',
  `redirectHttpCode` int(11) DEFAULT 301,
  `hitCount` int(11) DEFAULT 1,
  `hitLastTime` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `retour_redirects_redirectSrcUrlParsed_idx` (`redirectSrcUrlParsed`),
  KEY `retour_redirects_redirectSrcUrl_idx` (`redirectSrcUrl`),
  KEY `retour_redirects_siteId_idx` (`siteId`),
  KEY `retour_redirects_associatedElementId_fk` (`associatedElementId`),
  CONSTRAINT `retour_redirects_associatedElementId_fk` FOREIGN KEY (`associatedElementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `retour_static_redirects`
--

DROP TABLE IF EXISTS `retour_static_redirects`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `retour_static_redirects` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  `siteId` int(11) DEFAULT NULL,
  `associatedElementId` int(11) NOT NULL,
  `enabled` tinyint(1) DEFAULT 1,
  `redirectSrcUrl` varchar(255) DEFAULT '',
  `redirectSrcUrlParsed` varchar(255) DEFAULT '',
  `redirectSrcMatch` varchar(32) DEFAULT 'pathonly',
  `redirectMatchType` varchar(32) DEFAULT 'exactmatch',
  `redirectDestUrl` varchar(255) DEFAULT '',
  `redirectHttpCode` int(11) DEFAULT 301,
  `hitCount` int(11) DEFAULT 1,
  `hitLastTime` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `retour_static_redirects_redirectSrcUrlParsed_idx` (`redirectSrcUrlParsed`),
  KEY `retour_static_redirects_redirectSrcUrl_idx` (`redirectSrcUrl`),
  KEY `retour_static_redirects_siteId_idx` (`siteId`),
  CONSTRAINT `retour_static_redirects_siteId_fk` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=64 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `retour_stats`
--

DROP TABLE IF EXISTS `retour_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `retour_stats` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  `siteId` int(11) DEFAULT NULL,
  `redirectSrcUrl` varchar(255) DEFAULT '',
  `referrerUrl` varchar(2000) DEFAULT '',
  `remoteIp` varchar(45) DEFAULT '',
  `userAgent` varchar(255) DEFAULT '',
  `exceptionMessage` varchar(255) DEFAULT '',
  `exceptionFilePath` varchar(255) DEFAULT '',
  `exceptionFileLine` int(11) DEFAULT 0,
  `hitCount` int(11) DEFAULT 1,
  `hitLastTime` datetime DEFAULT NULL,
  `handledByRetour` tinyint(1) DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `retour_stats_redirectSrcUrl_idx` (`redirectSrcUrl`),
  KEY `retour_stats_siteId_idx` (`siteId`),
  CONSTRAINT `retour_stats_siteId_fk` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=70328 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 COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_gmzbfgatlbvkjdnkwamjhwayefmojcsrzpia` (`canonicalId`,`num`),
  KEY `fk_rcggqjmeyoiawnlyrezfakpdhirqwpqpyrfl` (`creatorId`),
  CONSTRAINT `fk_gcifiuhoqtoiwkbmzwvwfezzoerdjzlmvket` FOREIGN KEY (`canonicalId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_rcggqjmeyoiawnlyrezfakpdhirqwpqpyrfl` FOREIGN KEY (`creatorId`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=123909 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `fieldId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `keywords` text COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`elementId`,`attribute`,`fieldId`,`siteId`),
  FULLTEXT KEY `idx_rshjttfkwfczfjqeptwrgypyelzasrxulmla` (`keywords`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `handle` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `type` enum('single','channel','structure') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'channel',
  `enableVersioning` tinyint(1) NOT NULL DEFAULT 0,
  `propagationMethod` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'all',
  `defaultPlacement` enum('beginning','end') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'end',
  `previewTargets` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `dateDeleted` datetime DEFAULT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_txeodfhsiubnuxydtodvwhdcydkbzbwcixwb` (`handle`),
  KEY `idx_nhrurhdzxlwxckuffhmstqywvztylvdutphr` (`name`),
  KEY `idx_alxbefvopqneimhhktjccicmcmuzajuilkvu` (`structureId`),
  KEY `idx_fkexzxlemkqyoqwdthvxhwmrqilmukzdeian` (`dateDeleted`),
  CONSTRAINT `fk_acotlgetvkhchypyrverijagzauiwgflnamb` FOREIGN KEY (`structureId`) REFERENCES `structures` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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 COLLATE utf8_unicode_ci DEFAULT NULL,
  `template` varchar(500) COLLATE utf8_unicode_ci DEFAULT NULL,
  `enabledByDefault` tinyint(1) NOT NULL DEFAULT 1,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_slqsmtbhycjmkzfszmrewipualcmbgzgpetq` (`sectionId`,`siteId`),
  KEY `idx_lxfwkkymygbckrcptwrtkaauukjxmxmwfiev` (`siteId`),
  CONSTRAINT `fk_hbvgfdmkghsdysuhkxajhtlabomhewxwymww` FOREIGN KEY (`sectionId`) REFERENCES `sections` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_ibzofvtwtzzcpqjmmedjlvnfrvfetzuehskv` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `seomatic_metabundles`
--

DROP TABLE IF EXISTS `seomatic_metabundles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `seomatic_metabundles` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  `bundleVersion` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `sourceBundleType` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `sourceId` int(11) DEFAULT NULL,
  `sourceName` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `sourceHandle` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `sourceType` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `typeId` int(11) DEFAULT NULL,
  `sourceTemplate` varchar(500) COLLATE utf8_unicode_ci DEFAULT '',
  `sourceSiteId` int(11) DEFAULT NULL,
  `sourceAltSiteSettings` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `sourceDateUpdated` datetime NOT NULL,
  `metaGlobalVars` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `metaSiteVars` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `metaSitemapVars` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `metaContainers` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `redirectsContainer` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `frontendTemplatesContainer` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `metaBundleSettings` text COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_hloiguijnpbdzlsajpprsbskjstumutohhuf` (`sourceBundleType`),
  KEY `idx_mwbwnypjhewxndlduholnukvwjeuxsyszcnn` (`sourceId`),
  KEY `idx_uguewkxgrogjnpwvlafdqgmoiazbgwxetzyq` (`sourceSiteId`),
  KEY `idx_sonvykuodprdqgvtqdbtgldhvhvbjqhgjcqp` (`sourceHandle`),
  CONSTRAINT `fk_uvlnvfybgojdoastcplpbglglumkxihfhmsw` FOREIGN KEY (`sourceSiteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `next` int(10) unsigned NOT NULL DEFAULT 1,
  PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_dctfjxmsttafdacfczfitcyvbrieadjdwdpc` (`uid`),
  KEY `idx_sywyhvbnywakatassqifjuzfvcuguxscjxgw` (`token`),
  KEY `idx_pyjvjxhaobqilthmqfgbsvsdltteyuqdchrp` (`dateUpdated`),
  KEY `idx_xpojwalbxemrrqqgzdxlwfomhhaauwncscnl` (`userId`),
  CONSTRAINT `fk_ifhoexghxkapoestlrddcoorlwxhejsidrne` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=818 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `expiryDate` datetime DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_syjqmhbfdexjfmikehnsclefgoegqmthfnkw` (`userId`,`message`),
  CONSTRAINT `fk_zjvrfieayupetmmrxgafatftnajxsscxzgde` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `dateDeleted` datetime DEFAULT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_vwrupzvoyuszruwqdrzamzqvxgujofqikpwx` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'true',
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `handle` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `language` varchar(12) COLLATE utf8_unicode_ci NOT NULL,
  `hasUrls` tinyint(1) NOT NULL DEFAULT 0,
  `baseUrl` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `sortOrder` smallint(5) unsigned DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `dateDeleted` datetime DEFAULT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_kpuyipfkddgmbnmsvzizmznwfgeufxgmalhc` (`dateDeleted`),
  KEY `idx_yiplyzlsafrkpqspkslsbyhdnvixbpeibzxb` (`handle`),
  KEY `idx_ufzblykfrdubfsyqbnwcxednimupthdndhbx` (`sortOrder`),
  KEY `fk_yvtlpfznhwoyomsgtjefbkizclmegxouaohl` (`groupId`),
  CONSTRAINT `fk_yvtlpfznhwoyomsgtjefbkizclmegxouaohl` FOREIGN KEY (`groupId`) REFERENCES `sitegroups` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `sprig_playgrounds`
--

DROP TABLE IF EXISTS `sprig_playgrounds`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sprig_playgrounds` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `component` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `variables` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `stc_10_links`
--

DROP TABLE IF EXISTS `stc_10_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `stc_10_links` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `elementId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  `field_externalLink` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_linkText` text COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_ikyurbtqvegeibjmateuiarskwhrzelcvtqo` (`elementId`,`siteId`),
  KEY `fk_hshdebtkkqxkzaurgagkgeodzkpfmnthwafk` (`siteId`),
  CONSTRAINT `fk_gmluajpictnjwgxcfyjaycixzekrdigmvbfm` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_hshdebtkkqxkzaurgagkgeodzkpfmnthwafk` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=89 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `stc_11_griditems`
--

DROP TABLE IF EXISTS `stc_11_griditems`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `stc_11_griditems` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `elementId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  `field_text` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_heading` text COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_uiioynwdkopiuendzuttzysfawtzymkeyrua` (`elementId`,`siteId`),
  KEY `idx_etnseieqwkyyezpvuqgwfedjhfmwtcxexqai` (`siteId`),
  CONSTRAINT `fk_hqmhbzoausuaqiqzvxhtnvtgaeixnjhonznd` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `fk_qvwpbcfbovalrmswxufulhprgzizbfhknkjd` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=82 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `stc_11_links`
--

DROP TABLE IF EXISTS `stc_11_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `stc_11_links` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `elementId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  `field_externalLink` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_linkText` text COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_vrdilznydrxcyyhvqmipphexlvqcjadarqhh` (`elementId`,`siteId`),
  KEY `fk_rnhkrhjajmmdyuqceiuyscbajnxxrobaorbi` (`siteId`),
  CONSTRAINT `fk_msdooazigrjwttcolsabyydknzusgjuctist` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_rnhkrhjajmmdyuqceiuyscbajnxxrobaorbi` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=155 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `stc_12_logos`
--

DROP TABLE IF EXISTS `stc_12_logos`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `stc_12_logos` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `elementId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  `field_logoLink` text COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_sygmbrkxrwmjtgmnliyujputxhlqcrgmlspr` (`elementId`,`siteId`),
  KEY `idx_drgemgpeuvpjkvelrbklpkiyvfpfzamyoedu` (`siteId`),
  CONSTRAINT `fk_dgocnhrhccvwuqdgocfbcswpymsoepcyijub` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `fk_hhdgwtehtfrkesjbiyjzsurftaeinuxqgvus` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=128 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `stc_16_griditems`
--

DROP TABLE IF EXISTS `stc_16_griditems`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `stc_16_griditems` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `elementId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  `field_text` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_heading` text COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_lqyaijdohggfwapjzoiayvxerfaiggckleoe` (`elementId`,`siteId`),
  KEY `idx_scioqsluihrxarmnqduhpjhgbnyrtgtpkfad` (`siteId`),
  CONSTRAINT `fk_axopsdonbkrxlywwlzidyxygdfdrpwfjgzoo` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `fk_kpwwnpakjgsnsjntuakrhagihedptzxpivvz` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `stc_7_videos`
--

DROP TABLE IF EXISTS `stc_7_videos`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `stc_7_videos` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `elementId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  `field_videoCode` text COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_cgocmlpvgtxecuzeftuqdvgwxlefrgonphhf` (`elementId`,`siteId`),
  KEY `idx_hobzaprnzjsxqgrsmmdevlufrehlhvpdoecw` (`siteId`),
  CONSTRAINT `fk_skpxawnqlkhmkveeyvcrtvnjwndlvylwlxza` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_zqjhbgbcuwukajpgynfxxwkkhrtphoelgkfw` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=98 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `stc_7_videos_1`
--

DROP TABLE IF EXISTS `stc_7_videos_1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `stc_7_videos_1` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `elementId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  `field_videoCode` text COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_ywzwxxjfeadvdgtydpoqimqywswfihbsoxsm` (`elementId`,`siteId`),
  KEY `idx_aurymoswuzrcfujbabslelpnqaxbprvqqhrk` (`siteId`),
  CONSTRAINT `fk_ljlmvvzopfffraiyizywxjsmftkhfiltlyxe` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_uudvuyxdojdxmyoybnbegyaubeqmfwxxriij` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=198 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `stc_8_links`
--

DROP TABLE IF EXISTS `stc_8_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `stc_8_links` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `elementId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  `field_linkText_old` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_externalLink_old` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_externalLink` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_linkText` text COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_mkbaftfxuhulekimflhsjmlsjwhwkvzuslsm` (`elementId`,`siteId`),
  KEY `idx_tsswhnawnukrepoqrgkrnxnfryylvzpvscwx` (`siteId`),
  CONSTRAINT `fk_fptsqmuvmigdwpsounnphpgvcwrxghshqper` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_sppvcpkcmtsrayhkllqgywlvkrwtlecvksrb` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=258 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `stc_9_griditems`
--

DROP TABLE IF EXISTS `stc_9_griditems`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `stc_9_griditems` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `elementId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  `field_text` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_heading` text COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_ldychcdgweusdigmojxvawraizjlapkffvih` (`elementId`,`siteId`),
  KEY `idx_aatxxjldsxoxjywmijzyoikpxbwpccnuaopo` (`siteId`),
  CONSTRAINT `fk_rhzeuidcapespterafsmbryfvsjfxzfwskbx` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_zpsqsqrgxrdccuevydsbfxqpdostcfbhjkin` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=396 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `stc_griditems`
--

DROP TABLE IF EXISTS `stc_griditems`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `stc_griditems` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `elementId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  `field_text` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_heading` text COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_wtqzattinaldraxcuicekpqppwervhthulxk` (`elementId`,`siteId`),
  KEY `fk_xtrkuvnljsmxluhdsuucczhxulffzfdnmzwv` (`siteId`),
  CONSTRAINT `fk_jcygixufxgnxjymwnssmaymvzeklrpnfsdel` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_xtrkuvnljsmxluhdsuucczhxulffzfdnmzwv` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=286 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `stc_links`
--

DROP TABLE IF EXISTS `stc_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `stc_links` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `elementId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  `field_linkText_old` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_externalLink_old` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_externalLink` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `field_linkText` text COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_xzktrcnrxwfltqhkbycjrirxsywiwzrdnrgt` (`elementId`,`siteId`),
  KEY `fk_xidcyujfivqctxwlzhczkktkfyvzmgzknzju` (`siteId`),
  CONSTRAINT `fk_lguvkoqygkeauijyczfjydhzhnbbcjvamfsk` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_xidcyujfivqctxwlzhczkktkfyvzmgzknzju` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=236 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `stc_logos`
--

DROP TABLE IF EXISTS `stc_logos`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `stc_logos` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `elementId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  `field_logoLink` text COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_ckszsycsgdjoxoearjctfvbviftkwwkvdbic` (`elementId`,`siteId`),
  KEY `fk_paqvnzsoogdggdzgqsscqwvxjfngykjayhkw` (`siteId`),
  CONSTRAINT `fk_dpbdkyywlrixqdfnvvlayjcdzgpdxsoftrcv` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_paqvnzsoogdggdzgqsscqwvxjfngykjayhkw` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `stc_videos`
--

DROP TABLE IF EXISTS `stc_videos`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `stc_videos` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `elementId` int(11) NOT NULL,
  `siteId` int(11) NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  `field_videoCode` text COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_zsvvgzmdojwrrvjthbqnlmmwlijkklagamdh` (`elementId`,`siteId`),
  KEY `fk_rnoaxiagmyjhwlaitdolrvmtmvjoffzfdmml` (`siteId`),
  CONSTRAINT `fk_hogzzuayfwjedxtvgoappfcnwvskgbknnurz` FOREIGN KEY (`elementId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_rnoaxiagmyjhwlaitdolrvmtmvjoffzfdmml` FOREIGN KEY (`siteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=173 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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(10) unsigned DEFAULT NULL,
  `lft` int(10) unsigned NOT NULL,
  `rgt` int(10) unsigned NOT NULL,
  `level` smallint(5) unsigned NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_yxagcanjjdaabeebuqyxhoahrepmjrdpxjdj` (`structureId`,`elementId`),
  KEY `idx_jrucmzbzfdzwszvwvdcyxojyyquhpfqchqwr` (`root`),
  KEY `idx_imdenjyojjixgvsydmtevfgzwtdnappoiiwh` (`lft`),
  KEY `idx_loumkdbnmedmgvlojcszbvxvlzvyhwnqvofy` (`rgt`),
  KEY `idx_kcfotjajigiwdhikeoyhcixhisaquguipzqp` (`level`),
  KEY `idx_yboomnamaczfdlzdtmpnygfdyatrzvkncwpw` (`elementId`),
  CONSTRAINT `fk_vorqfuallteytbjzytvrybexacpdxisuptmc` FOREIGN KEY (`structureId`) REFERENCES `structures` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=109 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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(5) unsigned DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `dateDeleted` datetime DEFAULT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_aklgswdbkdhalkhkmftdgkegcezxebqflhai` (`dateDeleted`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `supertableblocks`
--

DROP TABLE IF EXISTS `supertableblocks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `supertableblocks` (
  `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_ndwqbuqoorleenfkxirdwcsqrpszighmopkb` (`primaryOwnerId`),
  KEY `idx_yxbmmzuriawgebekltacabriiyprqxkpnsmb` (`fieldId`),
  KEY `idx_gbvrsgaunhrqwwxtatfhrypwqgfgeyrsitil` (`typeId`),
  CONSTRAINT `fk_dgwvndhrtwozzknoxjfjnqtqhlqfnqfyfrnp` FOREIGN KEY (`primaryOwnerId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_hxzgpykwefjqkdoivtpaqfdxqfphfyqhevgv` FOREIGN KEY (`fieldId`) REFERENCES `fields` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_iklzdszvulrfqudgnaxvdcssjadcjbhaxprr` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_vrqccecoakelwiowhjmoohgqqyxgewzhatpw` FOREIGN KEY (`typeId`) REFERENCES `supertableblocktypes` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `supertableblocks_owners`
--

DROP TABLE IF EXISTS `supertableblocks_owners`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `supertableblocks_owners` (
  `blockId` int(11) NOT NULL,
  `ownerId` int(11) NOT NULL,
  `sortOrder` smallint(6) unsigned NOT NULL,
  PRIMARY KEY (`blockId`,`ownerId`),
  KEY `fk_qdcnfmmhxwuapbklioueoelunrzvwslwfxry` (`ownerId`),
  CONSTRAINT `fk_qdcnfmmhxwuapbklioueoelunrzvwslwfxry` FOREIGN KEY (`ownerId`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_yxdnpcramnqyzeqyvyxqiexgutoweqfdqoon` FOREIGN KEY (`blockId`) REFERENCES `supertableblocks` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `supertableblocktypes`
--

DROP TABLE IF EXISTS `supertableblocktypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `supertableblocktypes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `fieldId` int(11) NOT NULL,
  `fieldLayoutId` int(11) DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_wcaesqnhhwxobhxmoquspkrzkuvdtqcjwfpm` (`fieldId`),
  KEY `idx_cvcpnsvswpjktipdzqyijyfkljgprganutfy` (`fieldLayoutId`),
  CONSTRAINT `fk_iwluqalgaxcehyzfrpapmutwwdmbzqsflxva` FOREIGN KEY (`fieldLayoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_ygkbjbvlrytsufclgqysigdwwjclggnkqzwx` FOREIGN KEY (`fieldId`) REFERENCES `fields` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `key` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `subject` text COLLATE utf8_unicode_ci NOT NULL,
  `body` text COLLATE utf8_unicode_ci NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_ljliekakdamyqzrntipcnnkmkadkdwwhiddn` (`key`,`language`),
  KEY `idx_fsnyhfpksbtadmglocmfposvyhgpryjpnoyh` (`language`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `handle` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `fieldLayoutId` int(11) DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `dateDeleted` datetime DEFAULT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_osahbigyxuxxfjjeyquelpkrroqwlctknhqr` (`name`),
  KEY `idx_vksnxnsvsssyjqauxbfeobcxfayatinzdofg` (`handle`),
  KEY `idx_dolfguuyefvnspdwvfsnsprbfeuuengrlaiq` (`dateDeleted`),
  KEY `fk_iuibdjrwowzycksxylgvctllrmxxvhzuciiy` (`fieldLayoutId`),
  CONSTRAINT `fk_iuibdjrwowzycksxylgvctllrmxxvhzuciiy` FOREIGN KEY (`fieldLayoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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_ugugufogpkpwmkrmgacluovzzeyoabahzxac` (`groupId`),
  CONSTRAINT `fk_rgfzmpabyranhcwjljlbjvncfzilhcpohohl` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_yfvzuldeazbdguqtvujlrawtfhcckdnirmnk` FOREIGN KEY (`groupId`) REFERENCES `taggroups` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `route` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `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) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_pzzwwxvpitlafzegmydmyuyeguwwryapkrig` (`token`),
  KEY `idx_kbwoskooihxlhlgxerpojzyqtjojchkrspfx` (`expiryDate`)
) ENGINE=InnoDB AUTO_INCREMENT=683 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `handle` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `description` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_yulpwbvwhmprfxcvsuirqhpxrjnusycezxpl` (`handle`),
  KEY `idx_uqaolhjncayjiolgwmwjetzssixhuczpmbgz` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_ultklkarnyopwrvpksglhiatdszoruwlussh` (`groupId`,`userId`),
  KEY `idx_fkbpongzxonglqqjhydlhiisumfshwyytzhm` (`userId`),
  CONSTRAINT `fk_xjhoaaiqkeggcvuhcrmsrpirnqoagdnshkfq` FOREIGN KEY (`groupId`) REFERENCES `usergroups` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_znakjsabpnmhjifcgqwpbcqnsuxeclldyszq` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=38 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_bxkrbtheikyolutwwgdymcihykkvofogczvs` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=145 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_edckcecyrnoyovpxwbwhkxwfqtqfdrzulyhm` (`permissionId`,`groupId`),
  KEY `idx_rnbvxexeyuvydhlllzboprvbcezfqlubijhx` (`groupId`),
  CONSTRAINT `fk_fcbkvpxnkqnimpfpkamzbbeiaczircdjbajo` FOREIGN KEY (`groupId`) REFERENCES `usergroups` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_rdcproewqiewzqdynrjqxfypljikmxqhiecx` FOREIGN KEY (`permissionId`) REFERENCES `userpermissions` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=708 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_tjtwopyjlsatqorsbygyfgqlwncchxlixnpz` (`permissionId`,`userId`),
  KEY `idx_lqowxtpnfnofxowobfkditrvypqnyjsenotx` (`userId`),
  CONSTRAINT `fk_abatzolfjqinbglofcumuxmysfrahdcwmasz` FOREIGN KEY (`permissionId`) REFERENCES `userpermissions` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_rsvexbpsseujxidarmtgbdfovnntlzapyxij` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=106 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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 COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`userId`),
  CONSTRAINT `fk_ibnftmoheayjekuapofxldakzuomfxmvhimf` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=142717 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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,
  `username` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `fullName` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `photoId` int(11) DEFAULT NULL,
  `firstName` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `lastName` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `password` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `admin` tinyint(1) NOT NULL DEFAULT 0,
  `active` tinyint(1) NOT NULL DEFAULT 0,
  `locked` tinyint(1) NOT NULL DEFAULT 0,
  `suspended` tinyint(1) NOT NULL DEFAULT 0,
  `pending` tinyint(1) NOT NULL DEFAULT 0,
  `lastLoginDate` datetime DEFAULT NULL,
  `lastLoginAttemptIp` varchar(45) COLLATE utf8_unicode_ci 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) COLLATE utf8_unicode_ci DEFAULT NULL,
  `verificationCodeIssuedDate` datetime DEFAULT NULL,
  `unverifiedEmail` varchar(255) COLLATE utf8_unicode_ci 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_pgcwfqegfrazdakxlqfhatekeieirjuikblf` (`verificationCode`),
  KEY `idx_yldpvaucgrjnswqrdbrotweahbaswazycatq` (`email`),
  KEY `idx_bybmbzjbpuahsitezwlurzvmxgkcizfzppkk` (`username`),
  KEY `fk_dmuatsaaeyqlarxdukckscivuykdjmtkieet` (`photoId`),
  KEY `idx_rdqtrvlbztajatvbjdxbocbhiazilgcyulio` (`active`),
  KEY `idx_qqoqixlidcifcjfusatdpbxltfjddoyfzfjo` (`locked`),
  KEY `idx_uvyxzrtvrngaxixiblkrcxdrirfsnliyukzu` (`pending`),
  KEY `idx_wvhourltuzvtakxdoeubntpjclgaweevmhse` (`suspended`),
  CONSTRAINT `fk_dmuatsaaeyqlarxdukckscivuykdjmtkieet` FOREIGN KEY (`photoId`) REFERENCES `assets` (`id`) ON DELETE SET NULL,
  CONSTRAINT `fk_ychmmwldzsufgwmislnceqxthuaoffgdyias` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `path` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_sfxhrullzirfjfzeijbwkmdrkbvibeqbzqtk` (`name`,`parentId`,`volumeId`),
  KEY `idx_svppncajflwglqnwyjvtaeyshiijsxuzbeeb` (`parentId`),
  KEY `idx_vxobjihpbrjaogcqgbodvrrndoukmnbergyy` (`volumeId`),
  CONSTRAINT `fk_dddeitstxqretdquhpvwzbxpwulrlorcrzru` FOREIGN KEY (`volumeId`) REFERENCES `volumes` (`id`) ON DELETE CASCADE,
  CONSTRAINT `fk_jbxnkgjdginjjkfkmetfiilcaefdzbxsnoag` FOREIGN KEY (`parentId`) REFERENCES `volumefolders` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=63 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `handle` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `fs` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `transformFs` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `transformSubpath` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `titleTranslationMethod` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'site',
  `titleTranslationKeyFormat` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `sortOrder` smallint(5) unsigned DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `dateDeleted` datetime DEFAULT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_yfjrkppnivvuaszrkkgmnhzlkduihrascrwb` (`name`),
  KEY `idx_rxlooxfhwdgasvnvmdvbowphdpnzteyfaqjm` (`handle`),
  KEY `idx_vegjarpmdnmveszdwooqcuvkzfhwmznlalrn` (`fieldLayoutId`),
  KEY `idx_tosxaknjpduouokskvtkmuqvlkziyhovwnyx` (`dateDeleted`),
  CONSTRAINT `fk_mlzocggblgiuxmkuuphewecosgwtnnubzmyz` FOREIGN KEY (`fieldLayoutId`) REFERENCES `fieldlayouts` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!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) COLLATE utf8_unicode_ci NOT NULL,
  `sortOrder` smallint(5) unsigned DEFAULT NULL,
  `colspan` tinyint(4) DEFAULT NULL,
  `settings` text COLLATE utf8_unicode_ci DEFAULT NULL,
  `enabled` tinyint(1) NOT NULL DEFAULT 1,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_gvegpibxspqorizlmgbvljrqispoakdwarar` (`userId`),
  CONSTRAINT `fk_ogzjlmmrzwnordtgorkwlterovaqcxqvulgj` FOREIGN KEY (`userId`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `workflow_reviews`
--

DROP TABLE IF EXISTS `workflow_reviews`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `workflow_reviews` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `submissionId` int(11) DEFAULT NULL,
  `userId` int(11) DEFAULT NULL,
  `approved` tinyint(1) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `workflow_reviews_submissionId_fk` (`submissionId`),
  KEY `workflow_reviews_userId_fk` (`userId`),
  CONSTRAINT `workflow_reviews_submissionId_fk` FOREIGN KEY (`submissionId`) REFERENCES `workflow_submissions` (`id`) ON DELETE CASCADE,
  CONSTRAINT `workflow_reviews_userId_fk` 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 `workflow_submissions`
--

DROP TABLE IF EXISTS `workflow_submissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `workflow_submissions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `ownerId` int(11) DEFAULT NULL,
  `ownerSiteId` int(11) DEFAULT NULL,
  `ownerDraftId` int(11) DEFAULT NULL,
  `editorId` int(11) DEFAULT NULL,
  `publisherId` int(11) DEFAULT NULL,
  `status` enum('approved','pending','rejected','revoked') DEFAULT NULL,
  `editorNotes` text DEFAULT NULL,
  `publisherNotes` text DEFAULT NULL,
  `data` mediumtext DEFAULT NULL,
  `dateApproved` datetime DEFAULT NULL,
  `dateRejected` datetime DEFAULT NULL,
  `dateRevoked` datetime DEFAULT NULL,
  `dateCreated` datetime NOT NULL,
  `dateUpdated` datetime NOT NULL,
  `uid` char(36) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `workflow_submissions_id_idx` (`id`),
  KEY `workflow_submissions_ownerId_idx` (`ownerId`),
  KEY `workflow_submissions_ownerDraftId_idx` (`ownerDraftId`),
  KEY `workflow_submissions_ownerSiteId_idx` (`ownerSiteId`),
  KEY `workflow_submissions_editorId_idx` (`editorId`),
  KEY `workflow_submissions_publisherId_idx` (`publisherId`),
  CONSTRAINT `workflow_submissions_editorId_fk` FOREIGN KEY (`editorId`) REFERENCES `users` (`id`) ON DELETE CASCADE,
  CONSTRAINT `workflow_submissions_id_fk` FOREIGN KEY (`id`) REFERENCES `elements` (`id`) ON DELETE CASCADE,
  CONSTRAINT `workflow_submissions_ownerDraftId_fk` FOREIGN KEY (`ownerDraftId`) REFERENCES `drafts` (`id`) ON DELETE SET NULL,
  CONSTRAINT `workflow_submissions_ownerId_fk` FOREIGN KEY (`ownerId`) REFERENCES `elements` (`id`) ON DELETE SET NULL,
  CONSTRAINT `workflow_submissions_ownerSiteId_fk` FOREIGN KEY (`ownerSiteId`) REFERENCES `sites` (`id`) ON DELETE CASCADE,
  CONSTRAINT `workflow_submissions_publisherId_fk` FOREIGN KEY (`publisherId`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=163144 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping routines for database 'nwo_three'
--
/*!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-04-11 12:08:17
-- MySQL dump 10.19  Distrib 10.3.35-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: nwo_three
-- ------------------------------------------------------
-- Server version	10.3.35-MariaDB

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!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;
/*!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;
INSERT INTO `announcements` VALUES (2,17887,NULL,'Editor Slideouts','Double-click entries and other editable elements to try the new editor slideout interface.',1,NULL,'2021-07-16 00:36:58'),(4,21898,NULL,'Editor Slideouts','Double-click entries and other editable elements to try the new editor slideout interface.',1,NULL,'2021-07-16 00:36:58'),(5,17899,NULL,'Editor Slideouts','Double-click entries and other editable elements to try the new editor slideout interface.',1,NULL,'2021-07-16 00:36:58'),(8,17934,NULL,'Editor Slideouts','Double-click entries and other editable elements to try the new editor slideout interface.',1,NULL,'2021-07-16 00:36:58'),(9,17941,NULL,'Editor Slideouts','Double-click entries and other editable elements to try the new editor slideout interface.',1,NULL,'2021-07-16 00:36:58'),(10,17881,NULL,'Editor Slideouts','Double-click entries and other editable elements to try the new editor slideout interface.',1,NULL,'2021-07-16 00:36:58'),(12,17954,NULL,'Editor Slideouts','Double-click entries and other editable elements to try the new editor slideout interface.',1,NULL,'2021-07-16 00:36:58'),(14,17996,NULL,'Editor Slideouts','Double-click entries and other editable elements to try the new editor slideout interface.',1,NULL,'2021-07-16 00:36:58'),(16,17887,NULL,'Streamlined Entry Publishing Flow','The entry publishing workflow is now [simpler and more intuitive](https://craftcms.com/knowledge-base/editing-entries).',1,NULL,'2021-07-16 00:36:58'),(18,21898,NULL,'Streamlined Entry Publishing Flow','The entry publishing workflow is now [simpler and more intuitive](https://craftcms.com/knowledge-base/editing-entries).',1,NULL,'2021-07-16 00:36:58'),(19,17899,NULL,'Streamlined Entry Publishing Flow','The entry publishing workflow is now [simpler and more intuitive](https://craftcms.com/knowledge-base/editing-entries).',1,NULL,'2021-07-16 00:36:58'),(22,17934,NULL,'Streamlined Entry Publishing Flow','The entry publishing workflow is now [simpler and more intuitive](https://craftcms.com/knowledge-base/editing-entries).',1,NULL,'2021-07-16 00:36:58'),(23,17941,NULL,'Streamlined Entry Publishing Flow','The entry publishing workflow is now [simpler and more intuitive](https://craftcms.com/knowledge-base/editing-entries).',1,NULL,'2021-07-16 00:36:58'),(24,17881,NULL,'Streamlined Entry Publishing Flow','The entry publishing workflow is now [simpler and more intuitive](https://craftcms.com/knowledge-base/editing-entries).',1,NULL,'2021-07-16 00:36:58'),(26,17954,NULL,'Streamlined Entry Publishing Flow','The entry publishing workflow is now [simpler and more intuitive](https://craftcms.com/knowledge-base/editing-entries).',1,NULL,'2021-07-16 00:36:58'),(28,17996,NULL,'Streamlined Entry Publishing Flow','The entry publishing workflow is now [simpler and more intuitive](https://craftcms.com/knowledge-base/editing-entries).',1,NULL,'2021-07-16 00:36:58'),(29,17875,11,'t9n:[\"blitz\",\"New Dashboard Widget\"]','t9n:[\"blitz\",\"The new Blitz Cache dashboard widget contains the ability to refresh specific URIs, all pages in a site, or the entire cache ([read the announcement]({url})).\",{\"url\":\"https://putyourlightson.com/articles/blitz-4-3-feature-release\"}]',1,NULL,'2023-03-06 23:46:32'),(30,17887,11,'t9n:[\"blitz\",\"New Dashboard Widget\"]','t9n:[\"blitz\",\"The new Blitz Cache dashboard widget contains the ability to refresh specific URIs, all pages in a site, or the entire cache ([read the announcement]({url})).\",{\"url\":\"https://putyourlightson.com/articles/blitz-4-3-feature-release\"}]',1,NULL,'2023-03-06 23:46:32'),(31,17893,11,'t9n:[\"blitz\",\"New Dashboard Widget\"]','t9n:[\"blitz\",\"The new Blitz Cache dashboard widget contains the ability to refresh specific URIs, all pages in a site, or the entire cache ([read the announcement]({url})).\",{\"url\":\"https://putyourlightson.com/articles/blitz-4-3-feature-release\"}]',1,NULL,'2023-03-06 23:46:32'),(32,141503,11,'t9n:[\"blitz\",\"New Dashboard Widget\"]','t9n:[\"blitz\",\"The new Blitz Cache dashboard widget contains the ability to refresh specific URIs, all pages in a site, or the entire cache ([read the announcement]({url})).\",{\"url\":\"https://putyourlightson.com/articles/blitz-4-3-feature-release\"}]',1,NULL,'2023-03-06 23:46:32'),(33,141616,11,'t9n:[\"blitz\",\"New Dashboard Widget\"]','t9n:[\"blitz\",\"The new Blitz Cache dashboard widget contains the ability to refresh specific URIs, all pages in a site, or the entire cache ([read the announcement]({url})).\",{\"url\":\"https://putyourlightson.com/articles/blitz-4-3-feature-release\"}]',1,NULL,'2023-03-06 23:46:32'),(34,142039,11,'t9n:[\"blitz\",\"New Dashboard Widget\"]','t9n:[\"blitz\",\"The new Blitz Cache dashboard widget contains the ability to refresh specific URIs, all pages in a site, or the entire cache ([read the announcement]({url})).\",{\"url\":\"https://putyourlightson.com/articles/blitz-4-3-feature-release\"}]',1,NULL,'2023-03-06 23:46:32'),(35,17899,11,'t9n:[\"blitz\",\"New Dashboard Widget\"]','t9n:[\"blitz\",\"The new Blitz Cache dashboard widget contains the ability to refresh specific URIs, all pages in a site, or the entire cache ([read the announcement]({url})).\",{\"url\":\"https://putyourlightson.com/articles/blitz-4-3-feature-release\"}]',1,NULL,'2023-03-06 23:46:32'),(36,17921,11,'t9n:[\"blitz\",\"New Dashboard Widget\"]','t9n:[\"blitz\",\"The new Blitz Cache dashboard widget contains the ability to refresh specific URIs, all pages in a site, or the entire cache ([read the announcement]({url})).\",{\"url\":\"https://putyourlightson.com/articles/blitz-4-3-feature-release\"}]',1,NULL,'2023-03-06 23:46:32'),(37,17934,11,'t9n:[\"blitz\",\"New Dashboard Widget\"]','t9n:[\"blitz\",\"The new Blitz Cache dashboard widget contains the ability to refresh specific URIs, all pages in a site, or the entire cache ([read the announcement]({url})).\",{\"url\":\"https://putyourlightson.com/articles/blitz-4-3-feature-release\"}]',1,NULL,'2023-03-06 23:46:32'),(38,17941,11,'t9n:[\"blitz\",\"New Dashboard Widget\"]','t9n:[\"blitz\",\"The new Blitz Cache dashboard widget contains the ability to refresh specific URIs, all pages in a site, or the entire cache ([read the announcement]({url})).\",{\"url\":\"https://putyourlightson.com/articles/blitz-4-3-feature-release\"}]',1,NULL,'2023-03-06 23:46:32'),(39,30433,11,'t9n:[\"blitz\",\"New Dashboard Widget\"]','t9n:[\"blitz\",\"The new Blitz Cache dashboard widget contains the ability to refresh specific URIs, all pages in a site, or the entire cache ([read the announcement]({url})).\",{\"url\":\"https://putyourlightson.com/articles/blitz-4-3-feature-release\"}]',1,NULL,'2023-03-06 23:46:32'),(40,97259,11,'t9n:[\"blitz\",\"New Dashboard Widget\"]','t9n:[\"blitz\",\"The new Blitz Cache dashboard widget contains the ability to refresh specific URIs, all pages in a site, or the entire cache ([read the announcement]({url})).\",{\"url\":\"https://putyourlightson.com/articles/blitz-4-3-feature-release\"}]',1,NULL,'2023-03-06 23:46:32'),(41,142250,11,'t9n:[\"blitz\",\"New Dashboard Widget\"]','t9n:[\"blitz\",\"The new Blitz Cache dashboard widget contains the ability to refresh specific URIs, all pages in a site, or the entire cache ([read the announcement]({url})).\",{\"url\":\"https://putyourlightson.com/articles/blitz-4-3-feature-release\"}]',1,NULL,'2023-03-06 23:46:32'),(42,142716,11,'t9n:[\"blitz\",\"New Dashboard Widget\"]','t9n:[\"blitz\",\"The new Blitz Cache dashboard widget contains the ability to refresh specific URIs, all pages in a site, or the entire cache ([read the announcement]({url})).\",{\"url\":\"https://putyourlightson.com/articles/blitz-4-3-feature-release\"}]',1,NULL,'2023-03-06 23:46:32'),(43,17881,11,'t9n:[\"blitz\",\"New Dashboard Widget\"]','t9n:[\"blitz\",\"The new Blitz Cache dashboard widget contains the ability to refresh specific URIs, all pages in a site, or the entire cache ([read the announcement]({url})).\",{\"url\":\"https://putyourlightson.com/articles/blitz-4-3-feature-release\"}]',1,NULL,'2023-03-06 23:46:32'),(44,1,11,'t9n:[\"blitz\",\"New Dashboard Widget\"]','t9n:[\"blitz\",\"The new Blitz Cache dashboard widget contains the ability to refresh specific URIs, all pages in a site, or the entire cache ([read the announcement]({url})).\",{\"url\":\"https://putyourlightson.com/articles/blitz-4-3-feature-release\"}]',1,NULL,'2023-03-06 23:46:32'),(45,17954,11,'t9n:[\"blitz\",\"New Dashboard Widget\"]','t9n:[\"blitz\",\"The new Blitz Cache dashboard widget contains the ability to refresh specific URIs, all pages in a site, or the entire cache ([read the announcement]({url})).\",{\"url\":\"https://putyourlightson.com/articles/blitz-4-3-feature-release\"}]',1,NULL,'2023-03-06 23:46:32'),(46,140513,11,'t9n:[\"blitz\",\"New Dashboard Widget\"]','t9n:[\"blitz\",\"The new Blitz Cache dashboard widget contains the ability to refresh specific URIs, all pages in a site, or the entire cache ([read the announcement]({url})).\",{\"url\":\"https://putyourlightson.com/articles/blitz-4-3-feature-release\"}]',1,NULL,'2023-03-06 23:46:32'),(47,17956,11,'t9n:[\"blitz\",\"New Dashboard Widget\"]','t9n:[\"blitz\",\"The new Blitz Cache dashboard widget contains the ability to refresh specific URIs, all pages in a site, or the entire cache ([read the announcement]({url})).\",{\"url\":\"https://putyourlightson.com/articles/blitz-4-3-feature-release\"}]',1,NULL,'2023-03-06 23:46:32'),(48,142281,11,'t9n:[\"blitz\",\"New Dashboard Widget\"]','t9n:[\"blitz\",\"The new Blitz Cache dashboard widget contains the ability to refresh specific URIs, all pages in a site, or the entire cache ([read the announcement]({url})).\",{\"url\":\"https://putyourlightson.com/articles/blitz-4-3-feature-release\"}]',1,NULL,'2023-03-06 23:46:32'),(49,17996,11,'t9n:[\"blitz\",\"New Dashboard Widget\"]','t9n:[\"blitz\",\"The new Blitz Cache dashboard widget contains the ability to refresh specific URIs, all pages in a site, or the entire cache ([read the announcement]({url})).\",{\"url\":\"https://putyourlightson.com/articles/blitz-4-3-feature-release\"}]',1,NULL,'2023-03-06 23:46:32'),(50,141642,11,'t9n:[\"blitz\",\"New Dashboard Widget\"]','t9n:[\"blitz\",\"The new Blitz Cache dashboard widget contains the ability to refresh specific URIs, all pages in a site, or the entire cache ([read the announcement]({url})).\",{\"url\":\"https://putyourlightson.com/articles/blitz-4-3-feature-release\"}]',1,NULL,'2023-03-06 23:46:32');
/*!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 (16629,1,5,1,'revelian-1.jpg','image',NULL,2400,2700,3400634,NULL,NULL,NULL,'2021-06-03 01:36:47','2021-05-17 06:01:34','2021-06-03 04:53:34'),(16630,1,5,1,'revelian-2.jpg','image',NULL,1920,1620,254999,NULL,NULL,NULL,'2021-06-03 01:36:48','2021-05-17 06:02:27','2021-06-03 04:52:45'),(16648,1,5,1,'revelian-3.jpg','image',NULL,4800,4350,11568213,NULL,NULL,NULL,'2021-06-03 01:36:48','2021-05-17 06:05:07','2021-06-03 04:52:00'),(16665,1,5,1,'revelian-4.jpg','image',NULL,4800,2700,13686018,NULL,NULL,NULL,'2021-06-03 01:36:49','2021-05-17 06:06:55','2021-06-03 04:52:31'),(16669,1,5,1,'revelian-5.jpg','image',NULL,4800,3600,717150,NULL,NULL,NULL,'2021-06-03 01:36:49','2021-05-17 06:08:05','2021-06-03 04:50:44'),(16675,1,5,1,'revelian-6.jpg','image',NULL,4800,2700,6247011,NULL,NULL,NULL,'2021-06-03 01:36:49','2021-05-17 06:09:36','2021-06-03 04:50:59'),(16683,1,5,1,'revelian-7.jpg','image',NULL,4800,4050,9984543,NULL,NULL,NULL,'2021-06-03 01:36:49','2021-05-17 06:11:00','2021-06-03 04:51:14'),(16693,1,5,1,'revelian-8.jpg','image',NULL,2400,1350,4859069,NULL,NULL,NULL,'2021-06-03 01:36:50','2021-05-17 06:12:43','2021-06-03 04:51:32'),(16705,1,5,1,'revelian-9.jpg','image',NULL,2400,2025,3283373,NULL,NULL,NULL,'2021-06-03 01:36:50','2021-05-17 06:13:43','2021-06-03 04:51:42'),(16719,1,5,1,'revelian-10.jpg','image',NULL,2400,3375,4755085,NULL,NULL,NULL,'2021-06-03 01:36:50','2021-05-17 06:15:31','2021-06-03 04:53:48'),(16735,1,5,1,'revelian-12.jpg','image',NULL,2400,2850,9546268,NULL,NULL,NULL,'2021-06-03 01:36:50','2021-05-17 06:16:39','2021-06-03 04:52:59'),(16824,1,5,1,'dfv-feature.jpeg','image',NULL,1600,907,80147,NULL,NULL,NULL,'2021-06-03 01:36:47','2021-05-17 23:39:58','2021-06-03 04:53:30'),(16826,1,5,1,'dfv-2.gif','image',NULL,1920,1080,1407091,NULL,NULL,NULL,'2021-06-03 01:36:46','2021-05-17 23:40:57','2021-06-03 04:53:14'),(16838,1,5,1,'dfv-3.jpeg','image',NULL,1600,919,29516,NULL,NULL,NULL,'2021-06-03 01:36:46','2021-05-17 23:44:29','2021-06-03 04:53:18'),(16839,1,5,1,'dfv-4.jpeg','image',NULL,1600,911,27882,NULL,NULL,NULL,'2021-06-03 01:36:46','2021-05-17 23:44:30','2021-06-03 04:53:22'),(16840,1,5,1,'dfv-5.jpeg','image',NULL,1600,920,55126,NULL,NULL,NULL,'2021-06-03 01:36:47','2021-05-17 23:44:30','2021-06-03 04:53:26'),(17045,1,7,NULL,'mario-calvo-345-unsplash.jpg','image',NULL,2048,1365,193687,NULL,NULL,NULL,'2021-06-03 01:27:30','2021-05-18 00:59:39','2021-06-03 04:10:52'),(17046,1,7,NULL,'inanc-avadit-571215-unsplash.jpg','image',NULL,2048,1365,288997,NULL,NULL,NULL,'2021-06-03 01:27:09','2021-05-18 00:59:43','2021-06-03 04:19:59'),(17047,1,7,NULL,'felix-russell-saw-609926-unsplash.jpg','image',NULL,2048,1365,251038,NULL,NULL,NULL,'2021-06-03 01:26:49','2021-05-18 00:59:46','2021-06-03 04:57:07'),(17048,1,7,NULL,'christin-hume-482896-unsplash.jpg','image',NULL,2000,1453,248809,NULL,NULL,NULL,'2021-06-03 01:26:32','2021-05-18 00:59:49','2021-06-03 05:09:07'),(17049,1,7,NULL,'chris-lee-654655-unsplash.jpg','image',NULL,1536,2048,381420,NULL,NULL,NULL,'2021-06-03 01:26:32','2021-05-18 00:59:52','2021-06-03 05:08:26'),(17050,1,7,NULL,'rawpixel-603021-unsplash.jpg','image',NULL,2048,1601,306916,NULL,NULL,NULL,'2021-06-03 01:28:10','2021-05-18 00:59:56','2021-06-03 04:37:20'),(17051,1,7,NULL,'SUNCOAST_FARMS_LOGO_WHITE_CMYK.png','image',NULL,2321,831,72642,NULL,NULL,NULL,'2021-06-03 01:28:27','2021-05-18 01:00:00','2021-06-03 04:29:30'),(17052,1,7,NULL,'medicalmums-3.jpg','image',NULL,1800,900,636424,NULL,NULL,NULL,'2021-06-03 01:27:32','2021-05-18 01:00:03','2021-06-03 04:11:19'),(17053,1,7,NULL,'medical-mums-feature.jpg','image',NULL,1440,796,283586,NULL,NULL,NULL,'2021-06-03 01:27:31','2021-05-18 01:00:05','2021-06-03 04:11:13'),(17054,1,7,NULL,'NWO_200618_3128.jpg','image',NULL,2016,1344,229524,NULL,NULL,NULL,'2021-06-03 01:27:34','2021-05-18 01:00:07','2021-06-03 04:13:28'),(17055,1,7,NULL,'Profile_avatar_placeholder_large.png','image',NULL,360,360,2247,NULL,NULL,NULL,'2021-06-03 01:27:56','2021-05-18 01:00:11','2021-06-03 04:35:47'),(17057,1,7,NULL,'NWO-website-logos-1.png','image',NULL,450,210,6010,NULL,NULL,NULL,'2021-06-03 01:27:44','2021-05-18 01:00:12','2021-06-03 04:10:24'),(17058,1,7,NULL,'NWO-website-logos-2.png','image',NULL,450,210,4620,NULL,NULL,NULL,'2021-06-03 01:27:44','2021-05-18 01:00:13','2021-06-03 04:13:25'),(17059,1,7,NULL,'NWO-website-logos-10.png','image',NULL,450,210,10246,NULL,NULL,NULL,'2021-06-03 01:27:44','2021-05-18 01:00:14','2021-06-03 04:10:23'),(17060,1,7,NULL,'NWO-website-logos-11.png','image',NULL,450,210,10806,NULL,NULL,NULL,'2021-06-03 01:27:44','2021-05-18 01:00:14','2021-06-03 04:10:21'),(17061,1,7,NULL,'NWO-website-logos-12.png','image',NULL,450,210,5748,NULL,NULL,NULL,'2021-06-03 01:27:45','2021-05-18 01:00:15','2021-06-03 04:11:40'),(17062,1,7,NULL,'NWO-website-logos-14.png','image',NULL,450,210,7393,NULL,NULL,NULL,'2021-06-03 01:27:45','2021-05-18 01:00:16','2021-06-03 04:11:31'),(17063,1,7,NULL,'NWO-website-logos-15.png','image',NULL,450,210,7925,NULL,NULL,NULL,'2021-06-03 01:27:45','2021-05-18 01:00:17','2021-06-03 04:11:46'),(17064,1,7,NULL,'NWO-website-logos-16.png','image',NULL,450,210,6362,NULL,NULL,NULL,'2021-06-03 01:27:46','2021-05-18 01:00:17','2021-06-03 04:13:17'),(17065,1,7,NULL,'NWO-website-logos-17.png','image',NULL,450,210,6037,NULL,NULL,NULL,'2021-06-03 01:27:46','2021-05-18 01:00:18','2021-06-03 04:13:22'),(17066,1,7,NULL,'NWO-website-logos-18.png','image',NULL,450,210,13676,NULL,NULL,NULL,'2021-06-03 01:27:46','2021-05-18 01:00:19','2021-06-03 04:13:23'),(17067,1,7,NULL,'NWO-website-logos-19.png','image',NULL,450,210,6166,NULL,NULL,NULL,'2021-06-03 01:27:47','2021-05-18 01:00:20','2021-06-03 04:13:24'),(17068,1,7,NULL,'NWO-website-logos-20.png','image',NULL,450,210,11220,NULL,NULL,NULL,'2021-06-03 01:27:47','2021-05-18 01:00:21','2021-06-03 04:13:26'),(17069,1,7,NULL,'Asset-2-80.jpg','image',NULL,1284,1834,265137,NULL,NULL,NULL,'2021-06-03 01:26:14','2021-05-18 01:00:22','2021-06-03 05:05:10'),(17070,1,7,NULL,'Asset-3-80.jpg','image',NULL,840,1200,93673,NULL,NULL,NULL,'2021-06-03 01:26:15','2021-05-18 01:00:25','2021-06-03 05:06:36'),(17071,1,7,NULL,'Asset-4-80.jpg','image',NULL,840,1200,131965,NULL,NULL,NULL,'2021-06-03 01:26:15','2021-05-18 01:00:26','2021-06-03 05:06:38'),(17072,1,7,NULL,'Asset-5-80.jpg','image',NULL,840,1200,83556,NULL,NULL,NULL,'2021-06-03 01:26:15','2021-05-18 01:00:27','2021-06-03 05:06:40'),(17073,1,7,NULL,'QSA_Homepage.jpg','image',NULL,3679,3679,517541,NULL,NULL,NULL,'2021-06-03 01:28:01','2021-05-18 01:00:29','2021-06-03 04:36:13'),(17074,1,7,NULL,'qsa-1.jpg','image',NULL,1800,1126,272194,NULL,NULL,NULL,'2021-06-03 01:28:02','2021-05-18 01:00:38','2021-06-03 04:33:36'),(17075,1,7,NULL,'qsa-2.jpg','image',NULL,1800,676,44995,NULL,NULL,NULL,'2021-06-03 01:28:02','2021-05-18 01:00:40','2021-06-03 04:33:40'),(17076,1,7,NULL,'qsa-3.jpg','image',NULL,1800,900,239932,NULL,NULL,NULL,'2021-06-03 01:28:02','2021-05-18 01:00:42','2021-06-03 04:33:43'),(17077,1,7,NULL,'qsa-4.jpg','image',NULL,1800,1350,148051,NULL,NULL,NULL,'2021-06-03 01:28:03','2021-05-18 01:00:44','2021-06-03 04:33:49'),(17078,1,7,NULL,'qsa-6.jpg','image',NULL,1800,1240,271913,NULL,NULL,NULL,'2021-06-03 01:28:03','2021-05-18 01:00:46','2021-06-03 04:36:09'),(17079,1,7,NULL,'our-hpw-our-future-900x450-1.png','image',NULL,900,450,588332,NULL,NULL,NULL,'2021-06-03 01:27:48','2021-05-18 01:00:48','2021-06-03 04:12:23'),(17080,1,7,NULL,'getstarted_1-900x450.jpg','image',NULL,900,450,29891,NULL,NULL,NULL,'2021-06-03 01:26:51','2021-05-18 01:00:49','2021-06-03 04:59:27'),(17081,1,7,NULL,'getstarted_2.jpg','image',NULL,900,226,46922,NULL,NULL,NULL,'2021-06-03 01:26:52','2021-05-18 01:00:50','2021-06-03 04:58:08'),(17082,1,7,NULL,'getstarted_3.jpg','image',NULL,900,450,99729,NULL,NULL,NULL,'2021-06-03 01:26:52','2021-05-18 01:00:51','2021-06-03 04:59:28'),(17083,1,7,NULL,'Ryan-computer.jpg','image',NULL,1535,862,362424,NULL,NULL,NULL,'2021-06-03 01:28:18','2021-05-18 01:00:52','2021-06-03 04:25:33'),(17084,1,7,NULL,'Wall-pointing.jpg','image',NULL,1535,862,371517,NULL,NULL,NULL,'2021-06-03 01:28:36','2021-05-18 01:00:54','2021-06-03 04:28:49'),(17085,1,7,NULL,'Typewriter.jpg','image',NULL,1535,862,383499,NULL,NULL,NULL,'2021-06-03 01:28:35','2021-05-18 01:00:56','2021-06-03 04:28:38'),(17086,1,7,NULL,'Artboard-4-copy-2.jpg','image',NULL,2568,1331,419022,NULL,NULL,NULL,'2021-06-03 01:26:12','2021-05-18 01:00:58','2021-06-03 04:48:39'),(17087,1,7,NULL,'Artboard-4-copy.jpg','image',NULL,2568,1331,435901,NULL,NULL,NULL,'2021-06-03 01:26:12','2021-05-18 01:01:02','2021-06-03 04:48:48'),(17088,1,7,NULL,'Artboard-4.jpg','image',NULL,2568,1331,490042,NULL,NULL,NULL,'2021-06-03 01:26:12','2021-05-18 01:01:06','2021-06-03 04:48:56'),(17089,1,7,NULL,'Scott-card-game-illo-2.png','image',NULL,842,409,83030,NULL,NULL,NULL,'2021-06-03 01:28:19','2021-05-18 01:01:10','2021-06-03 04:27:31'),(17090,1,7,NULL,'hal-gatewood-613602-unsplash.jpg','image',NULL,5184,3456,1516747,NULL,NULL,NULL,'2021-06-03 01:26:53','2021-05-18 01:01:14','2021-06-03 05:02:39'),(17092,1,7,NULL,'ra-1.jpg','image',NULL,1800,900,393438,NULL,NULL,NULL,'2021-06-03 01:28:08','2021-05-18 01:01:33','2021-06-03 04:41:20'),(17093,1,7,NULL,'ra-2.jpg','image',NULL,1800,900,397194,NULL,NULL,NULL,'2021-06-03 01:28:08','2021-05-18 01:01:35','2021-06-03 04:41:25'),(17094,1,7,NULL,'ra-3.jpg','image',NULL,1800,900,230392,NULL,NULL,NULL,'2021-06-03 01:28:09','2021-05-18 01:01:37','2021-06-03 04:41:29'),(17095,1,7,NULL,'ra-4.jpg','image',NULL,1800,900,411859,NULL,NULL,NULL,'2021-06-03 01:28:09','2021-05-18 01:01:39','2021-06-03 04:41:34'),(17096,1,7,NULL,'ra-5.jpg','image',NULL,1800,900,286557,NULL,NULL,NULL,'2021-06-03 01:28:09','2021-05-18 01:01:41','2021-06-03 04:41:39'),(17097,1,7,NULL,'ra-6.jpg','image',NULL,1800,900,308228,NULL,NULL,NULL,'2021-06-03 01:28:09','2021-05-18 01:01:44','2021-06-03 04:41:44'),(17098,1,7,NULL,'ra-7.jpg','image',NULL,1800,900,238731,NULL,NULL,NULL,'2021-06-03 01:28:10','2021-05-18 01:01:46','2021-06-03 04:41:49'),(17099,1,7,NULL,'ra-8.jpg','image',NULL,1800,1800,353820,NULL,NULL,NULL,'2021-06-03 01:28:10','2021-05-18 01:01:48','2021-06-03 04:41:15'),(17100,1,7,NULL,'RA_Website_01.jpg','image',NULL,3750,2172,786775,NULL,NULL,NULL,'2021-06-03 01:28:06','2021-05-18 01:01:51','2021-06-03 04:40:09'),(17101,1,7,NULL,'RA_Website_02.jpg','image',NULL,3750,5165,1620264,NULL,NULL,NULL,'2021-06-03 01:28:07','2021-05-18 01:01:59','2021-06-03 04:37:57'),(17102,1,7,NULL,'RA_Website_03.jpg','image',NULL,3750,2498,707555,NULL,NULL,NULL,'2021-06-03 01:28:07','2021-05-18 01:02:16','2021-06-03 04:39:58'),(17103,1,7,NULL,'RA_Website_04.jpg','image',NULL,3750,4652,1061098,NULL,NULL,NULL,'2021-06-03 01:28:07','2021-05-18 01:02:26','2021-06-03 04:36:55'),(17104,1,7,NULL,'RA_Website_05.jpg','image',NULL,3750,2657,394292,NULL,NULL,NULL,'2021-06-03 01:28:08','2021-05-18 01:02:40','2021-06-03 04:37:10'),(17105,1,7,NULL,'KS_LinkedIn-Article-image.jpg','image',NULL,2500,1306,959657,NULL,NULL,NULL,'2021-06-03 01:27:26','2021-05-18 01:02:45','2021-06-03 04:14:27'),(17106,1,7,NULL,'pursuit-1.jpg','image',NULL,1800,900,66306,NULL,NULL,NULL,'2021-06-03 01:27:56','2021-05-18 01:02:48','2021-06-03 04:35:48'),(17107,1,7,NULL,'pursuit-2-1.jpg','image',NULL,2048,1024,262010,NULL,NULL,NULL,'2021-06-03 01:27:56','2021-05-18 01:02:50','2021-06-03 04:35:52'),(17108,1,7,1,'21_03-IWD-banner-Bree_1.jpg','image',NULL,1306,1306,804542,NULL,NULL,NULL,'2021-06-03 01:25:57','2021-05-18 01:02:51','2021-06-03 04:45:50'),(17109,1,7,NULL,'pursuit-3-1.jpg','image',NULL,2048,1024,239361,NULL,NULL,NULL,'2021-06-03 01:27:56','2021-05-18 01:02:53','2021-06-03 04:35:58'),(17110,1,7,NULL,'pursuit-4.jpg','image',NULL,1800,450,37606,NULL,NULL,NULL,'2021-06-03 01:27:57','2021-05-18 01:02:55','2021-06-03 04:36:06'),(17111,1,7,NULL,'pursuit-5-1.jpg','image',NULL,2048,1536,215451,NULL,NULL,NULL,'2021-06-03 01:27:57','2021-05-18 01:02:57','2021-06-03 04:35:33'),(17112,1,7,NULL,'21_03-IWD-LinkedIn-Bree_2.jpg','image',NULL,2500,1306,2285060,NULL,NULL,NULL,'2021-06-03 01:25:58','2021-05-18 01:02:57','2021-06-03 04:43:00'),(17113,1,7,NULL,'PursuitMinerals_homepage.jpg','image',NULL,2592,2592,286786,NULL,NULL,NULL,'2021-06-03 01:27:57','2021-05-18 01:03:00','2021-06-03 04:33:58'),(17114,1,7,1,'21_03-IWD-banner-Suz_1.jpg','image',NULL,1306,1306,799497,NULL,NULL,NULL,'2021-06-03 01:25:57','2021-05-18 01:03:03','2021-06-03 04:43:10'),(17115,1,7,1,'21_03-IWD-LinkedIn-Kate_1.jpg','image',NULL,1306,1306,698921,NULL,NULL,NULL,'2021-06-03 01:25:58','2021-05-18 01:03:08','2021-06-03 04:42:27'),(17116,1,7,NULL,'dsiti-ap-1.jpg','image',NULL,1800,900,214742,NULL,NULL,NULL,'2021-06-03 01:26:42','2021-05-18 01:03:09','2021-06-03 04:59:23'),(17117,1,7,NULL,'dsiti-ap-2.jpg','image',NULL,1800,900,228010,NULL,NULL,NULL,'2021-06-03 01:26:43','2021-05-18 01:03:11','2021-06-03 04:59:00'),(17118,1,7,NULL,'dsiti-ap-3.jpg','image',NULL,1800,900,113566,NULL,NULL,NULL,'2021-06-03 01:26:43','2021-05-18 01:03:13','2021-06-03 04:58:05'),(17119,1,7,1,'21_03-IWD-LinkedIn-Kimi_1.jpg','image',NULL,1306,1306,789638,NULL,NULL,NULL,'2021-06-03 01:25:59','2021-05-18 01:03:15','2021-06-03 04:42:32'),(17120,1,7,NULL,'dsiti-ap-4.jpg','image',NULL,1800,900,215915,NULL,NULL,NULL,'2021-06-03 01:26:46','2021-05-18 01:03:15','2021-06-03 04:57:49'),(17121,1,7,NULL,'dsiti-ap-5.jpg','image',NULL,1800,900,141991,NULL,NULL,NULL,'2021-06-03 01:26:46','2021-05-18 01:03:17','2021-06-03 04:58:01'),(17122,1,7,NULL,'dsiti-ap-6.jpg','image',NULL,1800,900,163950,NULL,NULL,NULL,'2021-06-03 01:26:47','2021-05-18 01:03:19','2021-06-03 04:57:14'),(17123,1,7,NULL,'Charters-towers_homepage.jpg','image',NULL,2048,2048,160379,NULL,NULL,NULL,'2021-06-03 01:26:32','2021-05-18 01:03:22','2021-06-03 05:09:15'),(17124,1,7,1,'21_03-IWD-LinkedIn-Bec_1.jpg','image',NULL,1306,1306,864541,NULL,NULL,NULL,'2021-06-03 01:25:57','2021-05-18 01:03:24','2021-06-03 04:42:37'),(17125,1,7,NULL,'sdc-1.jpg','image',NULL,1800,1126,206960,NULL,NULL,NULL,'2021-06-03 01:28:23','2021-05-18 01:03:26','2021-06-03 04:24:47'),(17126,1,7,NULL,'sdc-2.jpg','image',NULL,1800,736,336533,NULL,NULL,NULL,'2021-06-03 01:28:23','2021-05-18 01:03:29','2021-06-03 04:24:12'),(17127,1,7,1,'21_03-IWD-LinkedIn-Kat_1.jpg','image',NULL,1306,1306,878304,NULL,NULL,NULL,'2021-06-03 01:25:58','2021-05-18 01:03:31','2021-06-03 04:42:22'),(17128,1,7,NULL,'sdc-3.jpg','image',NULL,1800,838,498631,NULL,NULL,NULL,'2021-06-03 01:28:24','2021-05-18 01:03:31','2021-06-03 04:24:51'),(17129,1,7,NULL,'sdc-4.jpg','image',NULL,1800,1800,1020038,NULL,NULL,NULL,'2021-06-03 01:28:24','2021-05-18 01:03:34','2021-06-03 04:24:57'),(17130,1,7,NULL,'sdc-5.jpg','image',NULL,1800,1350,561575,NULL,NULL,NULL,'2021-06-03 01:28:24','2021-05-18 01:03:37','2021-06-03 04:25:01'),(17131,1,7,1,'21_03-IWD-LinkedIn-Jo_1.jpg','image',NULL,1306,1306,547676,NULL,NULL,NULL,'2021-06-03 01:25:58','2021-05-18 01:03:37','2021-06-03 04:42:16'),(17132,1,7,NULL,'sdc-6.jpg','image',NULL,1800,644,809353,NULL,NULL,NULL,'2021-06-03 01:28:25','2021-05-18 01:03:39','2021-06-03 04:25:06'),(17133,1,7,NULL,'physiotas_1.jpg','image',NULL,900,226,23671,NULL,NULL,NULL,'2021-06-03 01:27:51','2021-05-18 01:03:41','2021-06-03 04:13:08'),(17134,1,7,NULL,'physiotas_2.jpg','image',NULL,900,226,29310,NULL,NULL,NULL,'2021-06-03 01:27:51','2021-05-18 01:03:42','2021-06-03 04:24:01'),(17135,1,7,NULL,'physiotas_3.jpg','image',NULL,900,450,71527,NULL,NULL,NULL,'2021-06-03 01:27:52','2021-05-18 01:03:43','2021-06-03 04:21:26'),(17136,1,7,NULL,'21_04_DTIS_DJAG.pdf','pdf',NULL,NULL,NULL,525077,NULL,NULL,NULL,'2021-06-03 01:25:59','2021-05-18 01:03:42','2021-06-03 04:42:36'),(17137,1,7,NULL,'21_04_DTIS_DSITI.pdf','pdf',NULL,NULL,NULL,720232,NULL,NULL,NULL,'2021-06-03 01:25:59','2021-05-18 01:03:43','2021-06-03 04:42:36'),(17138,1,7,NULL,'physiotas_4.jpg','image',NULL,900,450,139085,NULL,NULL,NULL,'2021-06-03 01:27:52','2021-05-18 01:03:43','2021-06-03 04:24:11'),(17139,1,7,NULL,'21_04_DTIS_Infographics.pdf','pdf',NULL,NULL,NULL,1387868,NULL,NULL,NULL,'2021-06-03 01:26:00','2021-05-18 01:03:44','2021-06-03 04:42:16'),(17140,1,7,NULL,'21_04_DTIS_OG.pdf','pdf',NULL,NULL,NULL,579287,NULL,NULL,NULL,'2021-06-03 01:26:00','2021-05-18 01:03:44','2021-06-03 04:42:37'),(17141,1,7,NULL,'physiotas_5.jpg','image',NULL,900,900,321903,NULL,NULL,NULL,'2021-06-03 01:27:52','2021-05-18 01:03:44','2021-06-03 04:32:03'),(17142,1,7,NULL,'21_04_DTIS_QFCC.pdf','pdf',NULL,NULL,NULL,648061,NULL,NULL,NULL,'2021-06-03 01:26:00','2021-05-18 01:03:45','2021-06-03 04:42:43'),(17143,1,7,NULL,'21_04_DTIS_QPC.pdf','pdf',NULL,NULL,NULL,1070965,NULL,NULL,NULL,'2021-06-03 01:26:01','2021-05-18 01:03:45','2021-06-03 04:42:43'),(17144,1,7,NULL,'qpc-1.jpg','image',NULL,1800,1800,395365,NULL,NULL,NULL,'2021-06-03 01:28:00','2021-05-18 01:03:46','2021-06-03 04:33:09'),(17145,1,7,NULL,'Janine.jpg','image',NULL,1600,1600,326758,NULL,NULL,NULL,'2021-06-03 01:27:20','2021-05-18 01:03:46','2021-06-03 04:23:31'),(17146,1,7,NULL,'qpc-2.jpg','image',NULL,1800,900,1189924,NULL,NULL,NULL,'2021-06-03 01:28:01','2021-05-18 01:03:49','2021-06-03 04:33:20'),(17147,1,7,NULL,'Jo.jpg','image',NULL,1181,1181,467047,NULL,NULL,NULL,'2021-06-03 01:27:20','2021-05-18 01:03:49','2021-06-03 04:23:37'),(17148,1,7,NULL,'Tim-Kho.jpg','image',NULL,1600,1600,835267,NULL,NULL,NULL,'2021-06-03 01:28:30','2021-05-18 01:03:51','2021-06-03 04:31:29'),(17149,1,7,NULL,'qpc-3.jpg','image',NULL,1800,900,1709148,NULL,NULL,NULL,'2021-06-03 01:28:01','2021-05-18 01:03:52','2021-06-03 04:33:25'),(17150,1,7,NULL,'qpc-41.jpg','image',NULL,1800,1126,1072237,NULL,NULL,NULL,'2021-06-03 01:28:01','2021-05-18 01:03:55','2021-06-03 04:33:31'),(17151,1,7,NULL,'CCC-tour-citipointe.jpg','image',NULL,2000,2057,1418981,NULL,NULL,NULL,'2021-06-03 01:26:29','2021-05-18 01:03:55','2021-06-03 05:09:30'),(17152,1,7,NULL,'fopats-1.jpg','image',NULL,900,450,28146,NULL,NULL,NULL,'2021-06-03 01:26:50','2021-05-18 01:03:57','2021-06-03 04:57:55'),(17153,1,7,NULL,'fopats-2.jpg','image',NULL,900,450,35840,NULL,NULL,NULL,'2021-06-03 01:26:50','2021-05-18 01:03:57','2021-06-03 04:57:56'),(17154,1,7,NULL,'fopats-3.jpg','image',NULL,900,450,35818,NULL,NULL,NULL,'2021-06-03 01:26:50','2021-05-18 01:03:58','2021-06-03 04:57:57'),(17155,1,7,NULL,'fopats-4.jpg','image',NULL,900,450,81049,NULL,NULL,NULL,'2021-06-03 01:26:50','2021-05-18 01:03:59','2021-06-03 04:57:58'),(17156,1,7,NULL,'fopats-5.jpg','image',NULL,900,450,23525,NULL,NULL,NULL,'2021-06-03 01:26:51','2021-05-18 01:03:59','2021-06-03 04:57:59'),(17157,1,7,NULL,'CCC-iCan-19.jpg','image',NULL,2880,1020,526368,NULL,NULL,NULL,'2021-06-03 01:26:28','2021-05-18 01:04:00','2021-06-03 05:09:23'),(17158,1,7,NULL,'fopats-6.jpg','image',NULL,900,450,19202,NULL,NULL,NULL,'2021-06-03 01:26:51','2021-05-18 01:04:00','2021-06-03 04:58:00'),(17159,1,7,NULL,'13family-1.jpg','image',NULL,900,450,57733,NULL,NULL,NULL,'2021-06-03 01:25:37','2021-05-18 01:04:01','2021-06-03 04:52:19'),(17160,1,7,NULL,'13family-2.jpg','image',NULL,900,450,75526,NULL,NULL,NULL,'2021-06-03 01:25:37','2021-05-18 01:04:01','2021-06-03 04:52:20'),(17161,1,7,NULL,'13family-3.jpg','image',NULL,900,450,85378,NULL,NULL,NULL,'2021-06-03 01:25:38','2021-05-18 01:04:02','2021-06-03 04:52:21'),(17162,1,7,NULL,'13family-4.jpg','image',NULL,900,450,87692,NULL,NULL,NULL,'2021-06-03 01:25:38','2021-05-18 01:04:03','2021-06-03 04:52:22'),(17163,1,7,NULL,'13family-5.jpg','image',NULL,900,450,82389,NULL,NULL,NULL,'2021-06-03 01:25:38','2021-05-18 01:04:04','2021-06-03 04:52:23'),(17164,1,7,NULL,'13family-6.jpg','image',NULL,900,450,80399,NULL,NULL,NULL,'2021-06-03 01:25:39','2021-05-18 01:04:05','2021-06-03 04:52:24'),(17165,1,7,NULL,'FCC-13Family-FB-1200x628_2-2-900x450.jpg','image',NULL,900,450,54966,NULL,NULL,NULL,'2021-06-03 01:26:49','2021-05-18 01:04:06','2021-06-03 04:57:46'),(17166,1,7,NULL,'maik-jonietz-535261-unsplash.jpg','image',NULL,2048,1365,271927,NULL,NULL,NULL,'2021-06-03 01:27:29','2021-05-18 01:04:07','2021-06-03 04:10:29'),(17167,1,7,NULL,'Artboard-5-2-1024x445.jpg','image',NULL,1024,445,41856,NULL,NULL,NULL,'2021-06-03 01:26:12','2021-05-18 01:04:10','2021-06-03 04:49:03'),(17168,1,7,NULL,'SEO-banner.jpg','image',NULL,2001,1001,250411,NULL,NULL,NULL,'2021-06-03 01:28:25','2021-05-18 01:04:11','2021-06-03 04:25:16'),(17169,1,7,NULL,'cogs.jpg','image',NULL,1400,505,141297,NULL,NULL,NULL,'2021-06-03 01:26:35','2021-05-18 01:04:14','2021-06-03 05:08:34'),(17170,1,7,NULL,'elliot.jpg','image',NULL,740,740,86629,NULL,NULL,NULL,'2021-06-03 01:26:48','2021-05-18 01:04:15','2021-06-03 04:57:45'),(17171,1,7,NULL,'bike-1024x1024.jpg','image',NULL,1024,1024,469690,NULL,NULL,NULL,'2021-06-03 01:26:17','2021-05-18 01:04:16','2021-06-03 05:06:32'),(17172,1,7,NULL,'baby-1024x1024.jpg','image',NULL,1024,1024,154878,NULL,NULL,NULL,'2021-06-03 01:26:16','2021-05-18 01:04:18','2021-06-03 05:06:41'),(17173,1,7,NULL,'guitar-1024x1024.jpg','image',NULL,1024,1024,282693,NULL,NULL,NULL,'2021-06-03 01:26:52','2021-05-18 01:04:20','2021-06-03 05:02:17'),(17174,1,7,NULL,'fergus-2.jpg','image',NULL,740,740,121486,NULL,NULL,NULL,'2021-06-03 01:26:49','2021-05-18 01:04:22','2021-06-03 04:57:47'),(17175,1,7,NULL,'andrew-163.jpg','image',NULL,750,750,145733,NULL,NULL,NULL,'2021-06-03 01:26:09','2021-05-18 01:04:23','2021-06-03 04:48:20'),(17176,1,7,NULL,'Andrew1.jpg','image',NULL,500,500,173463,NULL,NULL,NULL,'2021-06-03 01:26:11','2021-05-18 01:04:24','2021-06-03 04:48:35'),(17177,1,7,NULL,'Andrew2.jpg','image',NULL,500,500,180794,NULL,NULL,NULL,'2021-06-03 01:26:11','2021-05-18 01:04:25','2021-06-03 04:48:13'),(17178,1,7,NULL,'photo-5.jpg','image',NULL,480,480,72776,NULL,NULL,NULL,'2021-06-03 01:27:51','2021-05-18 01:04:26','2021-06-03 04:13:07'),(17179,1,7,NULL,'Cathy1.jpg','image',NULL,750,750,392928,NULL,NULL,NULL,'2021-06-03 01:26:21','2021-05-18 01:04:27','2021-06-03 05:05:19'),(17180,1,7,NULL,'Cathy2.jpg','image',NULL,750,750,328726,NULL,NULL,NULL,'2021-06-03 01:26:21','2021-05-18 01:04:29','2021-06-03 05:05:20'),(17181,1,7,NULL,'Cathy3-1024x1024.jpg','image',NULL,1024,1024,216013,NULL,NULL,NULL,'2021-06-03 01:26:22','2021-05-18 01:04:30','2021-06-03 05:05:21'),(17182,1,7,NULL,'laura-lee-moreau-9137-unsplash.jpg','image',NULL,2048,1365,182159,NULL,NULL,NULL,'2021-06-03 01:27:26','2021-05-18 01:04:32','2021-06-03 04:21:27'),(17183,1,7,NULL,'acc_1.jpg','image',NULL,900,450,284076,NULL,NULL,NULL,'2021-06-03 01:26:06','2021-05-18 01:04:35','2021-06-03 04:50:05'),(17184,1,7,NULL,'acc_2.jpg','image',NULL,900,450,217749,NULL,NULL,NULL,'2021-06-03 01:26:06','2021-05-18 01:04:36','2021-06-03 04:50:07'),(17185,1,7,NULL,'acc_3.jpg','image',NULL,900,675,447515,NULL,NULL,NULL,'2021-06-03 01:26:07','2021-05-18 01:04:37','2021-06-03 04:50:08'),(17186,1,7,NULL,'amg-1.jpg','image',NULL,1800,540,76146,NULL,NULL,NULL,'2021-06-03 01:26:07','2021-05-18 01:04:38','2021-06-03 04:50:09'),(17187,1,7,NULL,'amg-2.jpg','image',NULL,1800,466,73297,NULL,NULL,NULL,'2021-06-03 01:26:08','2021-05-18 01:04:40','2021-06-03 04:49:53'),(17188,1,7,NULL,'amg-3.jpg','image',NULL,1800,732,140579,NULL,NULL,NULL,'2021-06-03 01:26:08','2021-05-18 01:04:41','2021-06-03 04:49:11'),(17189,1,7,NULL,'amg-4.jpg','image',NULL,1800,1168,334428,NULL,NULL,NULL,'2021-06-03 01:26:08','2021-05-18 01:04:43','2021-06-03 04:48:37'),(17190,1,7,NULL,'amg-5.jpg','image',NULL,1800,880,195215,NULL,NULL,NULL,'2021-06-03 01:26:08','2021-05-18 01:04:45','2021-06-03 04:49:08'),(17191,1,7,NULL,'amg-6.jpg','image',NULL,1800,1000,163600,NULL,NULL,NULL,'2021-06-03 01:26:09','2021-05-18 01:04:48','2021-06-03 04:48:14'),(17192,1,7,NULL,'amg-7.jpg','image',NULL,1800,1720,888429,NULL,NULL,NULL,'2021-06-03 01:26:09','2021-05-18 01:05:19','2021-06-03 04:48:16'),(17193,1,7,NULL,'aseeos-web-1.jpg','image',NULL,900,450,77852,NULL,NULL,NULL,'2021-06-03 01:26:14','2021-05-18 01:05:22','2021-06-03 04:49:06'),(17194,1,7,NULL,'aseeos-web-2.jpg','image',NULL,900,450,59258,NULL,NULL,NULL,'2021-06-03 01:26:14','2021-05-18 01:05:22','2021-06-03 04:49:07'),(17195,1,7,NULL,'aseeos-web-3.jpg','image',NULL,900,450,60705,NULL,NULL,NULL,'2021-06-03 01:26:14','2021-05-18 01:05:23','2021-06-03 04:56:47'),(17196,1,7,NULL,'aseeos_brochures.jpg','image',NULL,900,450,70182,NULL,NULL,NULL,'2021-06-03 01:26:13','2021-05-18 01:05:24','2021-06-03 04:50:41'),(17197,1,7,NULL,'aseeos_signage.jpg','image',NULL,900,450,66187,NULL,NULL,NULL,'2021-06-03 01:26:13','2021-05-18 01:05:25','2021-06-03 04:56:48'),(17198,1,7,NULL,'website_video-900x450.jpg','image',NULL,900,450,103520,NULL,NULL,NULL,'2021-06-03 01:28:36','2021-05-18 01:05:25','2021-06-03 04:28:52'),(17199,1,7,NULL,'aseeos-testimonies-1.jpg','image',NULL,900,225,74587,NULL,NULL,NULL,'2021-06-03 01:26:13','2021-05-18 01:05:26','2021-06-03 04:49:05'),(17200,1,7,NULL,'citi-1.jpg','image',NULL,900,450,86846,NULL,NULL,NULL,'2021-06-03 01:26:32','2021-05-18 01:05:27','2021-06-03 05:08:16'),(17201,1,7,NULL,'citi-2.jpg','image',NULL,900,450,80472,NULL,NULL,NULL,'2021-06-03 01:26:33','2021-05-18 01:05:28','2021-06-03 05:08:17'),(17202,1,7,NULL,'citi-3.jpg','image',NULL,900,450,66041,NULL,NULL,NULL,'2021-06-03 01:26:33','2021-05-18 01:05:29','2021-06-03 05:08:19'),(17203,1,7,NULL,'citi-4.jpg','image',NULL,900,450,63320,NULL,NULL,NULL,'2021-06-03 01:26:33','2021-05-18 01:05:29','2021-06-03 05:08:20'),(17204,1,7,NULL,'citi-5.jpg','image',NULL,900,450,80466,NULL,NULL,NULL,'2021-06-03 01:26:33','2021-05-18 01:05:30','2021-06-03 05:08:21'),(17205,1,7,NULL,'citi-6.jpg','image',NULL,900,675,84662,NULL,NULL,NULL,'2021-06-03 01:26:34','2021-05-18 01:05:31','2021-06-03 05:08:22'),(17206,1,7,NULL,'citi-7.jpg','image',NULL,900,450,83647,NULL,NULL,NULL,'2021-06-03 01:26:34','2021-05-18 01:05:32','2021-06-03 05:08:24'),(17207,1,7,NULL,'citi-8.jpg','image',NULL,900,450,54016,NULL,NULL,NULL,'2021-06-03 01:26:34','2021-05-18 01:05:33','2021-06-03 05:08:15'),(17208,1,7,NULL,'cciq-corp-partnerships-1.jpg','image',NULL,1800,900,336425,NULL,NULL,NULL,'2021-06-03 01:26:29','2021-05-18 01:05:34','2021-06-03 05:10:09'),(17209,1,7,NULL,'cciq-corp-partnerships-2.jpg','image',NULL,1800,900,258982,NULL,NULL,NULL,'2021-06-03 01:26:30','2021-05-18 01:05:36','2021-06-03 05:10:12'),(17210,1,7,NULL,'cciq-corp-partnerships-3.jpg','image',NULL,1800,900,193064,NULL,NULL,NULL,'2021-06-03 01:26:30','2021-05-18 01:05:39','2021-06-03 05:10:14'),(17211,1,7,NULL,'cciq-corp-partnerships-4.jpg','image',NULL,1800,900,164457,NULL,NULL,NULL,'2021-06-03 01:26:30','2021-05-18 01:05:41','2021-06-03 05:10:16'),(17212,1,7,NULL,'cciq-corp-partnerships-5.jpg','image',NULL,1800,900,201800,NULL,NULL,NULL,'2021-06-03 01:26:30','2021-05-18 01:05:43','2021-06-03 05:10:19'),(17213,1,7,NULL,'cciq-corp-partnerships-6.jpg','image',NULL,1800,900,136840,NULL,NULL,NULL,'2021-06-03 01:26:31','2021-05-18 01:05:45','2021-06-03 05:10:22'),(17215,1,7,NULL,'ddh-1.jpg','image',NULL,1800,900,234807,NULL,NULL,NULL,'2021-06-03 01:26:39','2021-05-18 01:05:49','2021-06-03 04:58:43'),(17216,1,7,NULL,'ddh-2.jpg','image',NULL,1800,900,303359,NULL,NULL,NULL,'2021-06-03 01:26:39','2021-05-18 01:05:50','2021-06-03 04:58:45'),(17217,1,7,NULL,'ddh-3.jpg','image',NULL,1800,900,258051,NULL,NULL,NULL,'2021-06-03 01:26:39','2021-05-18 01:05:53','2021-06-03 04:58:48'),(17218,1,7,NULL,'ddh-4.jpg','image',NULL,1800,900,182534,NULL,NULL,NULL,'2021-06-03 01:26:39','2021-05-18 01:05:55','2021-06-03 04:58:51'),(17219,1,7,NULL,'ddh-5.jpg','image',NULL,1800,900,157650,NULL,NULL,NULL,'2021-06-03 01:26:40','2021-05-18 01:05:57','2021-06-03 04:58:52'),(17220,1,7,NULL,'ddh-6.jpg','image',NULL,1800,900,300251,NULL,NULL,NULL,'2021-06-03 01:26:40','2021-05-18 01:05:59','2021-06-03 04:58:09'),(17221,1,7,NULL,'NWO_Endeavour_project-1.jpg','image',NULL,2048,1024,248151,NULL,NULL,NULL,'2021-06-03 01:27:34','2021-05-18 01:06:01','2021-06-03 04:13:18'),(17222,1,7,NULL,'NWO_Endeavour_project-2.jpg','image',NULL,2048,1024,198711,NULL,NULL,NULL,'2021-06-03 01:27:35','2021-05-18 01:06:04','2021-06-03 04:14:01'),(17223,1,7,NULL,'NWO_Endeavour_project-3.jpg','image',NULL,2048,1024,247999,NULL,NULL,NULL,'2021-06-03 01:27:35','2021-05-18 01:06:35','2021-06-03 04:14:06'),(17224,1,7,NULL,'NWO_Endeavour_project-4.jpg','image',NULL,2048,1024,286768,NULL,NULL,NULL,'2021-06-03 01:27:35','2021-05-18 01:06:38','2021-06-03 04:14:10'),(17225,1,7,NULL,'NWO_Endeavour_project-5.jpg','image',NULL,2048,1024,286184,NULL,NULL,NULL,'2021-06-03 01:27:36','2021-05-18 01:06:41','2021-06-03 04:14:15'),(17226,1,7,NULL,'NWO_Endeavour_project-6.jpg','image',NULL,2048,1280,171066,NULL,NULL,NULL,'2021-06-03 01:27:36','2021-05-18 01:06:45','2021-06-03 04:14:22'),(17227,1,7,NULL,'NWO_Endeavour_project-7.jpg','image',NULL,2048,1024,164001,NULL,NULL,NULL,'2021-06-03 01:27:36','2021-05-18 01:07:16','2021-06-03 04:13:39'),(17228,1,7,NULL,'NWO_Endeavour_project-8.jpg','image',NULL,2048,1664,290911,NULL,NULL,NULL,'2021-06-03 01:27:37','2021-05-18 01:07:19','2021-06-03 04:13:09'),(17229,1,7,NULL,'NWO_Endeavour_project-9.jpg','image',NULL,1820,2048,269492,NULL,NULL,NULL,'2021-06-03 01:27:37','2021-05-18 01:07:23','2021-06-03 04:12:43'),(17230,1,7,NULL,'NWO_Endeavour_project-10.jpg','image',NULL,2048,678,211271,NULL,NULL,NULL,'2021-06-03 01:27:37','2021-05-18 01:07:26','2021-06-03 04:13:35'),(17231,1,7,NULL,'NWO_Endeavour_project-11.jpg','image',NULL,2048,1152,311231,NULL,NULL,NULL,'2021-06-03 01:27:37','2021-05-18 01:07:29','2021-06-03 04:13:50'),(17232,1,7,NULL,'NWO_Endeavour_project-12.jpg','image',NULL,2048,1024,116447,NULL,NULL,NULL,'2021-06-03 01:27:38','2021-05-18 01:07:32','2021-06-03 04:13:56'),(17233,1,7,NULL,'Revelian-project_1.png','image',NULL,2400,2700,898417,NULL,NULL,NULL,'2021-06-03 01:28:12','2021-05-18 01:07:39','2021-06-03 04:36:41'),(17234,1,7,NULL,'Revelian-project_2.png','image',NULL,2400,2025,44558,NULL,NULL,NULL,'2021-06-03 01:28:12','2021-05-18 01:07:50','2021-06-03 04:39:02'),(17235,1,7,NULL,'Revelian-project_3.png','image',NULL,2400,2175,894294,NULL,NULL,NULL,'2021-06-03 01:28:12','2021-05-18 01:08:04','2021-06-03 04:39:13'),(17236,1,7,NULL,'Revelian-project_4.png','image',NULL,2400,1350,1340259,NULL,NULL,NULL,'2021-06-03 01:28:13','2021-05-18 01:08:15','2021-06-03 04:39:25'),(17237,1,7,NULL,'Revelian-project_5.png','image',NULL,2400,1800,52753,NULL,NULL,NULL,'2021-06-03 01:28:13','2021-05-18 01:08:22','2021-06-03 04:39:35'),(17238,1,7,NULL,'Revelian-project_6.png','image',NULL,2400,1350,478127,NULL,NULL,NULL,'2021-06-03 01:28:13','2021-05-18 01:08:30','2021-06-03 04:39:45'),(17239,1,7,NULL,'Revelian-project_7.png','image',NULL,2400,2025,809271,NULL,NULL,NULL,'2021-06-03 01:28:13','2021-05-18 01:08:38','2021-06-03 04:36:27'),(17240,1,7,NULL,'Revelian-project_8.png','image',NULL,2400,1350,1523761,NULL,NULL,NULL,'2021-06-03 01:28:14','2021-05-18 01:08:48','2021-06-03 04:31:53'),(17241,1,7,NULL,'Revelian-project_9.png','image',NULL,2400,2025,694368,NULL,NULL,NULL,'2021-06-03 01:28:14','2021-05-18 01:08:56','2021-06-03 04:27:52'),(17242,1,7,NULL,'Revelian-project_11.png','image',NULL,2400,3375,1105494,NULL,NULL,NULL,'2021-06-03 01:28:14','2021-05-18 01:09:07','2021-06-03 04:38:12'),(17243,1,7,NULL,'Revelian-project_12.png','image',NULL,2400,2850,1566974,NULL,NULL,NULL,'2021-06-03 01:28:15','2021-05-18 01:09:28','2021-06-03 04:38:45'),(17244,1,7,NULL,'QUU-Landing-1.jpg','image',NULL,1600,1080,64773,NULL,NULL,NULL,'2021-06-03 01:28:04','2021-05-18 01:09:37','2021-06-03 04:40:20'),(17245,1,7,NULL,'QUU-Landing-2.jpg','image',NULL,1600,1080,332612,NULL,NULL,NULL,'2021-06-03 01:28:04','2021-05-18 01:09:39','2021-06-03 04:40:32'),(17246,1,7,NULL,'QUU-Landing-3.jpg','image',NULL,1600,1520,314165,NULL,NULL,NULL,'2021-06-03 01:28:04','2021-05-18 01:09:41','2021-06-03 04:40:37'),(17247,1,7,NULL,'QUU-Landing-4.jpg','image',NULL,1600,1080,409070,NULL,NULL,NULL,'2021-06-03 01:28:04','2021-05-18 01:09:44','2021-06-03 04:40:50'),(17248,1,7,NULL,'QUU-Landing-5.jpg','image',NULL,1600,1270,879493,NULL,NULL,NULL,'2021-06-03 01:28:05','2021-05-18 01:09:47','2021-06-03 04:40:56'),(17249,1,7,NULL,'QUU-Landing-7.jpg','image',NULL,1600,960,247984,NULL,NULL,NULL,'2021-06-03 01:28:05','2021-05-18 01:09:49','2021-06-03 04:41:00'),(17250,1,7,NULL,'QUU-Landing-8.jpg','image',NULL,1600,960,115862,NULL,NULL,NULL,'2021-06-03 01:28:05','2021-05-18 01:09:51','2021-06-03 04:41:04'),(17251,1,7,NULL,'QUU-Landing-9.jpg','image',NULL,1600,1080,991075,NULL,NULL,NULL,'2021-06-03 01:28:05','2021-05-18 01:09:54','2021-06-03 04:41:09'),(17252,1,7,NULL,'Revelian-project_10.png','image',NULL,2400,6750,1304801,NULL,NULL,NULL,'2021-06-03 01:28:14','2021-05-18 01:10:25','2021-06-03 04:37:35'),(17253,1,7,NULL,'NWO_200618_3030-e1551914831676.jpg','image',NULL,1344,1441,175308,NULL,NULL,NULL,'2021-06-03 01:27:34','2021-05-18 01:11:53','2021-06-03 04:11:41'),(17254,1,7,NULL,'Bec.jpg','image',NULL,1200,1200,97574,NULL,NULL,NULL,'2021-06-03 01:26:16','2021-05-18 01:11:55','2021-06-03 05:06:48'),(17255,1,7,NULL,'Kimi.jpg','image',NULL,1200,1200,87822,NULL,NULL,NULL,'2021-06-03 01:27:26','2021-05-18 01:11:58','2021-06-03 04:21:22'),(17256,1,7,NULL,'Nick.jpg','image',NULL,1200,1200,82854,NULL,NULL,NULL,'2021-06-03 01:27:34','2021-05-18 01:12:00','2021-06-03 04:11:36'),(17257,1,7,NULL,'Liz.jpg','image',NULL,1200,1200,105285,NULL,NULL,NULL,'2021-06-03 01:27:28','2021-05-18 01:12:03','2021-06-03 04:14:35'),(17258,1,7,NULL,'Jonno.jpg','image',NULL,1200,1200,73441,NULL,NULL,NULL,'2021-06-03 01:27:21','2021-05-18 01:12:06','2021-06-03 04:23:57'),(17259,1,7,NULL,'Tilly.jpg','image',NULL,1200,1200,126215,NULL,NULL,NULL,'2021-06-03 01:28:29','2021-05-18 01:12:08','2021-06-03 04:31:20'),(17260,1,7,NULL,'Kate.jpg','image',NULL,1200,1200,143836,NULL,NULL,NULL,'2021-06-03 01:27:25','2021-05-18 01:12:10','2021-06-03 04:21:06'),(17261,1,7,NULL,'Cathy.jpg','image',NULL,1200,1200,158856,NULL,NULL,NULL,'2021-06-03 01:26:21','2021-05-18 01:12:13','2021-06-03 05:06:19'),(17262,1,7,NULL,'Andrew.jpg','image',NULL,1200,1200,171147,NULL,NULL,NULL,'2021-06-03 01:26:10','2021-05-18 01:12:15','2021-06-03 04:48:31'),(17263,1,7,NULL,'Scott.jpg','image',NULL,1200,1200,169743,NULL,NULL,NULL,'2021-06-03 01:28:20','2021-05-18 01:12:18','2021-06-03 04:27:34'),(17264,1,7,NULL,'Suz.jpg','image',NULL,1200,1200,172858,NULL,NULL,NULL,'2021-06-03 01:28:27','2021-05-18 01:12:21','2021-06-03 04:29:45'),(17265,1,7,NULL,'IMG_1782.jpg','image',NULL,4000,3000,4685005,NULL,NULL,NULL,'2021-06-03 01:27:04','2021-05-18 01:12:25','2021-06-03 04:56:50'),(17266,1,7,NULL,'kate-shane_previews_by-savannah-van-der-niet-14.jpg','image',NULL,5760,3840,1829627,NULL,NULL,NULL,'2021-06-03 01:27:25','2021-05-18 01:12:49','2021-06-03 04:20:52'),(17267,1,7,NULL,'IMG_2673.jpg','image',NULL,750,629,58677,NULL,NULL,NULL,'2021-06-03 01:27:04','2021-05-18 01:13:05','2021-06-03 04:35:03'),(17268,1,7,NULL,'IMG_2675.jpg','image',NULL,1536,1536,558166,NULL,NULL,NULL,'2021-06-03 01:27:05','2021-05-18 01:13:06','2021-06-03 04:41:54'),(17269,1,7,NULL,'IMG_2685.jpg','image',NULL,3024,3024,2412535,NULL,NULL,NULL,'2021-06-03 01:27:05','2021-05-18 01:13:10','2021-06-03 04:17:31'),(17270,1,7,NULL,'Image-from-iOS-1.jpg','image',NULL,2448,3264,689323,NULL,NULL,NULL,'2021-06-03 01:26:59','2021-05-18 01:13:19','2021-06-03 04:59:46'),(17271,1,7,NULL,'Image-from-iOS-2.jpg','image',NULL,2320,3088,576889,NULL,NULL,NULL,'2021-06-03 01:26:59','2021-05-18 01:13:31','2021-06-03 04:59:59'),(17272,1,7,NULL,'Image-from-iOS.jpg','image',NULL,2448,3264,1045642,NULL,NULL,NULL,'2021-06-03 01:27:01','2021-05-18 01:13:37','2021-06-03 05:00:56'),(17273,1,7,NULL,'Image-from-iOS-3.jpg','image',NULL,4032,4032,1086990,NULL,NULL,NULL,'2021-06-03 01:26:59','2021-05-18 01:13:49','2021-06-03 05:00:10'),(17274,1,7,NULL,'Image-from-iOS-4.jpg','image',NULL,3024,4032,935795,NULL,NULL,NULL,'2021-06-03 01:27:00','2021-05-18 01:14:15','2021-06-03 05:00:28'),(17275,1,7,NULL,'Image-from-iOS-5.jpg','image',NULL,750,1334,75170,NULL,NULL,NULL,'2021-06-03 01:27:00','2021-05-18 01:14:25','2021-06-03 05:00:41'),(17276,1,7,NULL,'Image-from-iOS-6.jpg','image',NULL,3024,4032,995019,NULL,NULL,NULL,'2021-06-03 01:27:00','2021-05-18 01:14:26','2021-06-03 05:00:43'),(17277,1,7,NULL,'IMG_1897.jpg','image',NULL,720,1278,204772,NULL,NULL,NULL,'2021-06-03 01:27:04','2021-05-18 01:14:39','2021-06-03 04:42:15'),(17278,1,7,NULL,'IMG_1013.jpg','image',NULL,640,852,110047,NULL,NULL,NULL,'2021-06-03 01:27:03','2021-05-18 01:14:40','2021-06-03 05:01:31'),(17279,1,7,NULL,'IMG_0772.jpg','image',NULL,960,1280,353310,NULL,NULL,NULL,'2021-06-03 01:27:02','2021-05-18 01:14:41','2021-06-03 05:01:29'),(17280,1,7,NULL,'IMG_0661.jpg','image',NULL,2448,3264,2000187,NULL,NULL,NULL,'2021-06-03 01:27:02','2021-05-18 01:14:43','2021-06-03 05:01:15'),(17281,1,7,NULL,'Black-garlic-bread-from-my-favourite-cafe—Gauge.jpg','image',NULL,2448,3264,532716,NULL,NULL,NULL,'2021-06-03 01:26:17','2021-05-18 01:14:53','2021-06-03 05:06:53'),(17282,1,7,NULL,'coffees.jpg','image',NULL,640,640,37427,NULL,NULL,NULL,'2021-06-03 01:26:35','2021-05-18 01:15:03','2021-06-03 05:08:25'),(17283,1,7,NULL,'Jonno-and-Liz.jpg','image',NULL,4256,2832,1518740,NULL,NULL,NULL,'2021-06-03 01:27:21','2021-05-18 01:15:04','2021-06-03 04:23:41'),(17284,1,7,NULL,'Margaret-River-wine.jpg','image',NULL,2448,3264,463071,NULL,NULL,NULL,'2021-06-03 01:27:30','2021-05-18 01:15:19','2021-06-03 04:10:38'),(17285,1,7,NULL,'IMG_6640.jpg','image',NULL,2250,1499,175060,NULL,NULL,NULL,'2021-06-03 01:27:08','2021-05-18 01:15:29','2021-06-03 04:19:42'),(17286,1,7,NULL,'TRI-landing-2.jpg','image',NULL,1600,900,58947,NULL,NULL,NULL,'2021-06-03 01:28:30','2021-05-18 01:15:32','2021-06-03 04:29:25'),(17287,1,7,NULL,'TRI-landing-1_3.jpg','image',NULL,1600,800,208862,NULL,NULL,NULL,'2021-06-03 01:28:30','2021-05-18 01:15:33','2021-06-03 04:28:35'),(17288,1,7,NULL,'TRI-landing-3_3.jpg','image',NULL,1600,900,72898,NULL,NULL,NULL,'2021-06-03 01:28:31','2021-05-18 01:15:35','2021-06-03 04:28:19'),(17289,1,7,NULL,'TRI-landing-4_3.jpg','image',NULL,1600,900,122076,NULL,NULL,NULL,'2021-06-03 01:28:31','2021-05-18 01:15:37','2021-06-03 04:28:23'),(17290,1,7,NULL,'TRI-landing-5_3.jpg','image',NULL,1600,900,179293,NULL,NULL,NULL,'2021-06-03 01:28:31','2021-05-18 01:15:38','2021-06-03 04:28:27'),(17291,1,7,NULL,'TRI-landing-7_3.jpg','image',NULL,1600,450,29318,NULL,NULL,NULL,'2021-06-03 01:28:32','2021-05-18 01:15:40','2021-06-03 04:28:04'),(17292,1,7,NULL,'TRI-landing-14.jpg','image',NULL,1600,900,112103,NULL,NULL,NULL,'2021-06-03 01:28:32','2021-05-18 01:15:44','2021-06-03 04:31:34'),(17293,1,7,NULL,'TRI-landing-15.jpg','image',NULL,1600,900,80147,NULL,NULL,NULL,'2021-06-03 01:28:32','2021-05-18 01:15:46','2021-06-03 04:31:40'),(17294,1,7,NULL,'TRI-landing-16.jpg','image',NULL,1600,900,271506,NULL,NULL,NULL,'2021-06-03 01:28:32','2021-05-18 01:15:48','2021-06-03 04:31:45'),(17295,1,7,NULL,'TRI-landing-17.jpg','image',NULL,1600,900,162886,NULL,NULL,NULL,'2021-06-03 01:28:33','2021-05-18 01:15:50','2021-06-03 04:31:49'),(17296,1,7,NULL,'TRI-landing-18.jpg','image',NULL,1600,900,281312,NULL,NULL,NULL,'2021-06-03 01:28:33','2021-05-18 01:15:52','2021-06-03 04:31:06'),(17297,1,7,NULL,'TRI-landing-20.jpg','image',NULL,1600,900,206397,NULL,NULL,NULL,'2021-06-03 01:28:33','2021-05-18 01:15:54','2021-06-03 04:28:06'),(17298,1,7,NULL,'TRI-landing-21.jpg','image',NULL,1600,900,218564,NULL,NULL,NULL,'2021-06-03 01:28:34','2021-05-18 01:15:56','2021-06-03 04:28:11'),(17299,1,7,NULL,'TRI-landing-22.jpg','image',NULL,1600,1000,137079,NULL,NULL,NULL,'2021-06-03 01:28:34','2021-05-18 01:15:58','2021-06-03 04:28:16'),(17300,1,7,NULL,'TRI-landing-19.jpg','image',NULL,1600,380,20329,NULL,NULL,NULL,'2021-06-03 01:28:33','2021-05-18 01:15:59','2021-06-03 04:29:29'),(17301,1,7,NULL,'TRI-landing-6_3.jpg','image',NULL,1600,900,133569,NULL,NULL,NULL,'2021-06-03 01:28:31','2021-05-18 01:16:00','2021-06-03 04:28:31'),(17302,1,7,NULL,'EF-landing-header.jpg','image',NULL,2400,1600,51618,NULL,NULL,NULL,'2021-06-03 01:26:48','2021-05-18 01:16:02','2021-06-03 04:57:35'),(17303,1,7,NULL,'dashboard_1.jpg','image',NULL,6500,4500,376482,NULL,NULL,NULL,'2021-06-03 01:26:37','2021-05-18 01:16:09','2021-06-03 05:04:55'),(17304,1,7,NULL,'dashboard_2.jpg','image',NULL,6500,4500,390756,NULL,NULL,NULL,'2021-06-03 01:26:37','2021-05-18 01:16:35','2021-06-03 04:59:29'),(17305,1,7,NULL,'dashboard_3.jpg','image',NULL,6500,4500,387633,NULL,NULL,NULL,'2021-06-03 01:26:37','2021-05-18 01:16:57','2021-06-03 05:04:39'),(17306,1,7,NULL,'dashboard_4.jpg','image',NULL,6500,4500,644282,NULL,NULL,NULL,'2021-06-03 01:26:38','2021-05-18 01:17:23','2021-06-03 04:58:12'),(17307,1,7,NULL,'dashboard_5.jpg','image',NULL,6500,4500,384510,NULL,NULL,NULL,'2021-06-03 01:26:38','2021-05-18 01:17:48','2021-06-03 04:58:28'),(17308,1,7,NULL,'dashboard.jpg','image',NULL,6500,4500,645340,NULL,NULL,NULL,'2021-06-03 01:26:38','2021-05-18 01:18:14','2021-06-03 05:08:01'),(17309,1,7,NULL,'howto_1.jpg','image',NULL,6000,4500,337596,NULL,NULL,NULL,'2021-06-03 01:26:54','2021-05-18 01:18:36','2021-06-03 05:03:15'),(17310,1,7,NULL,'howto_2.jpg','image',NULL,6000,4500,573454,NULL,NULL,NULL,'2021-06-03 01:26:54','2021-05-18 01:18:57','2021-06-03 05:03:29'),(17311,1,7,NULL,'howto_3.jpg','image',NULL,6000,4500,331960,NULL,NULL,NULL,'2021-06-03 01:26:55','2021-05-18 01:19:27','2021-06-03 05:02:21'),(17312,1,7,NULL,'howto_4.jpg','image',NULL,6000,4500,576613,NULL,NULL,NULL,'2021-06-03 01:26:55','2021-05-18 01:19:48','2021-06-03 05:03:43'),(17313,1,7,NULL,'howto_5.jpg','image',NULL,6000,4500,336597,NULL,NULL,NULL,'2021-06-03 01:26:55','2021-05-18 01:20:12','2021-06-03 05:03:59'),(17314,1,7,NULL,'howto.jpg','image',NULL,6000,4500,332919,NULL,NULL,NULL,'2021-06-03 01:26:55','2021-05-18 01:20:32','2021-06-03 05:02:59'),(17315,1,7,NULL,'review_1.jpg','image',NULL,6000,4500,287666,NULL,NULL,NULL,'2021-06-03 01:28:16','2021-05-18 01:20:57','2021-06-03 04:25:56'),(17316,1,7,NULL,'review_2.jpg','image',NULL,6000,4500,299191,NULL,NULL,NULL,'2021-06-03 01:28:16','2021-05-18 01:21:17','2021-06-03 04:26:10'),(17317,1,7,NULL,'review_3.jpg','image',NULL,6000,4500,555075,NULL,NULL,NULL,'2021-06-03 01:28:16','2021-05-18 01:21:40','2021-06-03 04:26:25'),(17318,1,7,NULL,'review_4.jpg','image',NULL,6000,4500,292119,NULL,NULL,NULL,'2021-06-03 01:28:16','2021-05-18 01:22:00','2021-06-03 04:26:39'),(17319,1,7,NULL,'review_5.jpg','image',NULL,6000,4500,551838,NULL,NULL,NULL,'2021-06-03 01:28:17','2021-05-18 01:22:23','2021-06-03 04:26:53'),(17320,1,7,NULL,'review.jpg','image',NULL,6000,4500,297421,NULL,NULL,NULL,'2021-06-03 01:28:17','2021-05-18 01:22:56','2021-06-03 04:25:41'),(17321,1,7,NULL,'695271024.jpg','image',NULL,1920,1080,144124,NULL,NULL,NULL,'2021-06-03 01:26:06','2021-05-18 01:23:16','2021-06-03 04:50:00'),(17322,1,7,NULL,'539926774.jpg','image',NULL,1920,1080,71837,NULL,NULL,NULL,'2021-06-03 01:26:03','2021-05-18 01:23:18','2021-06-03 04:49:14'),(17323,1,7,NULL,'602857754.jpg','image',NULL,1920,1080,99117,NULL,NULL,NULL,'2021-06-03 01:26:06','2021-05-18 01:23:20','2021-06-03 04:49:55'),(17324,1,7,NULL,'556095585.jpg','image',NULL,1920,1080,64440,NULL,NULL,NULL,'2021-06-03 01:26:05','2021-05-18 01:23:22','2021-06-03 04:49:38'),(17325,1,7,NULL,'539004679.jpg','image',NULL,1920,1080,43980,NULL,NULL,NULL,'2021-06-03 01:26:03','2021-05-18 01:23:24','2021-06-03 04:47:54'),(17326,1,7,NULL,'548056278.jpg','image',NULL,1920,1080,89386,NULL,NULL,NULL,'2021-06-03 01:26:04','2021-05-18 01:23:26','2021-06-03 04:49:30'),(17327,1,7,NULL,'544940887.jpg','image',NULL,1920,1080,24528,NULL,NULL,NULL,'2021-06-03 01:26:04','2021-05-18 01:23:28','2021-06-03 04:49:27'),(17328,1,7,NULL,'551528308.jpg','image',NULL,1280,720,34483,NULL,NULL,NULL,'2021-06-03 01:26:05','2021-05-18 01:23:30','2021-06-03 04:49:34'),(17329,1,7,NULL,'532507435.jpg','image',NULL,1280,720,12864,NULL,NULL,NULL,'2021-06-03 01:26:03','2021-05-18 01:23:32','2021-06-03 04:43:15'),(17330,1,7,NULL,'437038080.jpg','image',NULL,1280,720,30498,NULL,NULL,NULL,'2021-06-03 01:26:02','2021-05-18 01:23:33','2021-06-03 04:42:51'),(17331,1,7,NULL,'543288836.jpg','image',NULL,1920,1080,51429,NULL,NULL,NULL,'2021-06-03 01:26:03','2021-05-18 01:23:35','2021-06-03 04:49:20'),(17332,1,7,NULL,'482742662.jpg','image',NULL,1280,720,40580,NULL,NULL,NULL,'2021-06-03 01:26:02','2021-05-18 01:23:37','2021-06-03 04:42:55'),(17333,1,7,NULL,'543288973.jpg','image',NULL,1920,1080,63399,NULL,NULL,NULL,'2021-06-03 01:26:04','2021-05-18 01:23:39','2021-06-03 04:49:23'),(17334,1,7,NULL,'IMG_6613.jpg','image',NULL,1367,1367,397918,NULL,NULL,NULL,'2021-06-03 01:27:08','2021-05-18 01:23:41','2021-06-03 04:19:35'),(17335,1,7,NULL,'IMG_1591.jpg','image',NULL,2445,2445,330945,NULL,NULL,NULL,'2021-06-03 01:27:03','2021-05-18 01:23:44','2021-06-03 05:02:03'),(17336,1,7,NULL,'IMG_4847.jpg','image',NULL,3179,3179,679394,NULL,NULL,NULL,'2021-06-03 01:27:07','2021-05-18 01:23:51','2021-06-03 04:17:17'),(17337,1,7,NULL,'IMG_5326.jpg','image',NULL,3024,3024,795369,NULL,NULL,NULL,'2021-06-03 01:27:07','2021-05-18 01:24:00','2021-06-03 04:19:22'),(17338,1,7,NULL,'Andrew-dark.jpg','image',NULL,800,800,418684,NULL,NULL,NULL,'2021-06-03 01:26:10','2021-05-18 01:24:09','2021-06-03 04:48:29'),(17339,1,7,NULL,'Bec-dark.jpg','image',NULL,800,800,418138,NULL,NULL,NULL,'2021-06-03 01:26:16','2021-05-18 01:24:10','2021-06-03 05:06:46'),(17340,1,7,NULL,'Cathy-dark.jpg','image',NULL,800,800,540336,NULL,NULL,NULL,'2021-06-03 01:26:20','2021-05-18 01:24:12','2021-06-03 05:05:47'),(17341,1,7,NULL,'Elliot-dark.jpg','image',NULL,800,800,491124,NULL,NULL,NULL,'2021-06-03 01:26:48','2021-05-18 01:24:13','2021-06-03 04:57:43'),(17342,1,7,NULL,'Hazel.jpg','image',NULL,800,800,670498,NULL,NULL,NULL,'2021-06-03 01:26:53','2021-05-18 01:24:15','2021-06-03 05:02:54'),(17343,1,7,NULL,'Jonno-dark.jpg','image',NULL,800,800,342474,NULL,NULL,NULL,'2021-06-03 01:27:21','2021-05-18 01:24:16','2021-06-03 04:23:55'),(17344,1,7,NULL,'Julia-dark.jpg','image',NULL,800,800,602834,NULL,NULL,NULL,'2021-06-03 01:27:22','2021-05-18 01:24:17','2021-06-03 04:23:14'),(17345,1,7,NULL,'Julia.jpg','image',NULL,800,800,506034,NULL,NULL,NULL,'2021-06-03 01:27:22','2021-05-18 01:24:19','2021-06-03 04:22:00'),(17346,1,7,NULL,'Kate-dark.jpg','image',NULL,800,800,543470,NULL,NULL,NULL,'2021-06-03 01:27:24','2021-05-18 01:24:20','2021-06-03 04:20:49'),(17347,1,7,NULL,'Kimi-Copy.jpg','image',NULL,800,800,463145,NULL,NULL,NULL,'2021-06-03 01:27:25','2021-05-18 01:24:22','2021-06-03 04:21:11'),(17348,1,7,NULL,'Liz-dark.jpg','image',NULL,800,800,462535,NULL,NULL,NULL,'2021-06-03 01:27:28','2021-05-18 01:24:24','2021-06-03 04:20:23'),(17349,1,7,NULL,'Nick-dark.jpg','image',NULL,800,800,305311,NULL,NULL,NULL,'2021-06-03 01:27:33','2021-05-18 01:24:25','2021-06-03 04:11:34'),(17350,1,7,NULL,'Scott-dark.jpg','image',NULL,800,800,484664,NULL,NULL,NULL,'2021-06-03 01:28:19','2021-05-18 01:24:26','2021-06-03 04:27:32'),(17351,1,7,NULL,'Suz-dark.jpg','image',NULL,800,800,600895,NULL,NULL,NULL,'2021-06-03 01:28:27','2021-05-18 01:24:28','2021-06-03 04:29:43'),(17352,1,7,NULL,'Tilly-dark.jpg','image',NULL,800,800,497995,NULL,NULL,NULL,'2021-06-03 01:28:29','2021-05-18 01:24:29','2021-06-03 04:31:15'),(17353,1,7,NULL,'IMG_3412.jpg','image',NULL,2008,2008,610048,NULL,NULL,NULL,'2021-06-03 01:27:05','2021-05-18 01:24:31','2021-06-03 04:17:56'),(17354,1,7,NULL,'IMG_3667.jpg','image',NULL,2130,2130,319092,NULL,NULL,NULL,'2021-06-03 01:27:06','2021-05-18 01:24:36','2021-06-03 04:18:21'),(17355,1,7,NULL,'Suz2.jpg','image',NULL,750,750,464764,NULL,NULL,NULL,'2021-06-03 01:28:28','2021-05-18 01:24:41','2021-06-03 04:29:51'),(17356,1,7,NULL,'Suz1.jpg','image',NULL,750,750,255070,NULL,NULL,NULL,'2021-06-03 01:28:28','2021-05-18 01:24:42','2021-06-03 04:29:49'),(17357,1,7,NULL,'Suz3.jpg','image',NULL,750,750,463627,NULL,NULL,NULL,'2021-06-03 01:28:28','2021-05-18 01:24:45','2021-06-03 04:29:52'),(17358,1,7,NULL,'T5A1116.jpg','image',NULL,2500,1667,82638,NULL,NULL,NULL,'2021-06-03 01:28:28','2021-05-18 01:24:46','2021-06-03 04:29:53'),(17359,1,7,NULL,'IMG_1439.jpg','image',NULL,5153,3433,898564,NULL,NULL,NULL,'2021-06-03 01:27:03','2021-05-18 01:24:53','2021-06-03 05:01:33'),(17360,1,7,NULL,'IMG_8167-EFFECTS.jpg','image',NULL,3764,2832,911589,NULL,NULL,NULL,'2021-06-03 01:27:08','2021-05-18 01:25:11','2021-06-03 04:19:49'),(17361,1,7,NULL,'NZ0008.jpg','image',NULL,4583,3055,1167381,NULL,NULL,NULL,'2021-06-03 01:27:47','2021-05-18 01:25:20','2021-06-03 04:11:55'),(17362,1,7,NULL,'image3.png','image',NULL,640,635,726033,NULL,NULL,NULL,'2021-06-03 01:27:01','2021-05-18 01:25:34','2021-06-03 05:01:14'),(17363,1,7,NULL,'image1.png','image',NULL,640,636,423423,NULL,NULL,NULL,'2021-06-03 01:27:01','2021-05-18 01:25:36','2021-06-03 04:59:44'),(17364,1,7,NULL,'image2.png','image',NULL,640,639,638080,NULL,NULL,NULL,'2021-06-03 01:27:01','2021-05-18 01:25:37','2021-06-03 05:01:11'),(17365,1,7,NULL,'Screen-Shot-2019-03-13-at-4.40.45-pm.png','image',NULL,597,597,592374,NULL,NULL,NULL,'2021-06-03 01:28:21','2021-05-18 01:25:38','2021-06-03 04:25:24'),(17366,1,7,NULL,'Screen-Shot-2019-03-13-at-4.40.15-pm.png','image',NULL,600,599,568985,NULL,NULL,NULL,'2021-06-03 01:28:21','2021-05-18 01:25:39','2021-06-03 04:24:55'),(17367,1,7,NULL,'Image-1-1.jpeg','image',NULL,750,741,172312,NULL,NULL,NULL,'2021-06-03 01:26:58','2021-05-18 01:25:40','2021-06-03 05:02:15'),(17368,1,7,NULL,'acc.jpg','image',NULL,540,240,45357,NULL,NULL,NULL,'2021-06-03 01:26:07','2021-05-18 01:25:41','2021-06-03 04:50:04'),(17369,1,7,NULL,'bpeq.jpg','image',NULL,540,240,48928,NULL,NULL,NULL,'2021-06-03 01:26:17','2021-05-18 01:25:41','2021-06-03 05:07:12'),(17370,1,7,NULL,'ccc.jpg','image',NULL,540,240,49838,NULL,NULL,NULL,'2021-06-03 01:26:29','2021-05-18 01:25:42','2021-06-03 05:10:07'),(17371,1,7,NULL,'cciq.jpg','image',NULL,540,240,25976,NULL,NULL,NULL,'2021-06-03 01:26:31','2021-05-18 01:25:43','2021-06-03 05:10:08'),(17372,1,7,NULL,'ipswich.jpg','image',NULL,540,240,33670,NULL,NULL,NULL,'2021-06-03 01:27:09','2021-05-18 01:25:43','2021-06-03 04:20:08'),(17373,1,7,NULL,'mbc.jpg','image',NULL,540,240,38673,NULL,NULL,NULL,'2021-06-03 01:27:31','2021-05-18 01:25:44','2021-06-03 04:11:06'),(17374,1,7,NULL,'ndvr.jpg','image',NULL,540,240,35731,NULL,NULL,NULL,'2021-06-03 01:27:32','2021-05-18 01:25:44','2021-06-03 04:10:27'),(17375,1,7,NULL,'phn.jpg','image',NULL,540,240,36339,NULL,NULL,NULL,'2021-06-03 01:27:50','2021-05-18 01:25:45','2021-06-03 04:13:00'),(17376,1,7,NULL,'qg.jpg','image',NULL,540,240,49834,NULL,NULL,NULL,'2021-06-03 01:27:58','2021-05-18 01:25:46','2021-06-03 04:32:11'),(17377,1,7,NULL,'qsa.jpg','image',NULL,540,240,30554,NULL,NULL,NULL,'2021-06-03 01:28:03','2021-05-18 01:25:46','2021-06-03 04:34:12'),(17378,1,7,NULL,'quu.jpg','image',NULL,540,240,33618,NULL,NULL,NULL,'2021-06-03 01:28:06','2021-05-18 01:25:47','2021-06-03 04:41:14'),(17379,1,7,NULL,'rcc.jpg','image',NULL,540,240,41889,NULL,NULL,NULL,'2021-06-03 01:28:11','2021-05-18 01:25:47','2021-06-03 04:37:28'),(17380,1,7,NULL,'retireaustralia.jpg','image',NULL,540,240,34146,NULL,NULL,NULL,'2021-06-03 01:28:11','2021-05-18 01:25:48','2021-06-03 04:37:33'),(17381,1,7,NULL,'revelian.jpg','image',NULL,540,240,37249,NULL,NULL,NULL,'2021-06-03 01:28:15','2021-05-18 01:25:49','2021-06-03 04:31:52'),(17382,1,7,NULL,'sentis.jpg','image',NULL,540,240,23089,NULL,NULL,NULL,'2021-06-03 01:28:25','2021-05-18 01:25:49','2021-06-03 04:25:15'),(17383,1,7,NULL,'tritium.jpg','image',NULL,540,240,30809,NULL,NULL,NULL,'2021-06-03 01:28:34','2021-05-18 01:25:50','2021-06-03 04:28:34'),(17384,1,7,NULL,'quu-tile.png','image',NULL,2172,1556,214129,NULL,NULL,NULL,'2021-06-03 01:28:06','2021-05-18 01:25:52','2021-06-03 04:40:23'),(17385,1,7,NULL,'revelianvideo.jpg','image',NULL,1375,733,68692,NULL,NULL,NULL,'2021-06-03 01:28:15','2021-05-18 01:25:55','2021-06-03 04:25:37'),(17386,1,7,NULL,'websitetile.jpg','image',NULL,4800,3204,864598,NULL,NULL,NULL,'2021-06-03 01:28:36','2021-05-18 01:25:58','2021-06-03 04:28:54'),(17387,1,7,NULL,'UNADJUSTEDNONRAW_thumb_3bb2.jpg','image',NULL,1024,1024,94942,NULL,NULL,NULL,'2021-06-03 01:28:35','2021-05-18 01:26:10','2021-06-03 04:28:42'),(17388,1,7,NULL,'icon1.png','image',NULL,384,384,9773,NULL,NULL,NULL,'2021-06-03 01:26:58','2021-05-18 01:26:11','2021-06-03 05:03:58'),(17389,1,7,NULL,'icon2.png','image',NULL,384,384,8482,NULL,NULL,NULL,'2021-06-03 01:26:58','2021-05-18 01:26:13','2021-06-03 05:02:16'),(17390,1,7,NULL,'icon3.png','image',NULL,384,384,16795,NULL,NULL,NULL,'2021-06-03 01:26:58','2021-05-18 01:26:14','2021-06-03 05:01:13'),(17391,1,7,NULL,'Scott1.jpg','image',NULL,750,750,486231,NULL,NULL,NULL,'2021-06-03 01:28:20','2021-05-18 01:26:16','2021-06-03 04:27:37'),(17392,1,7,NULL,'Scott2.jpg','image',NULL,750,750,503948,NULL,NULL,NULL,'2021-06-03 01:28:20','2021-05-18 01:26:17','2021-06-03 04:27:13'),(17393,1,7,NULL,'Scott3.jpg','image',NULL,750,750,522182,NULL,NULL,NULL,'2021-06-03 01:28:21','2021-05-18 01:26:18','2021-06-03 04:25:25'),(17394,1,7,NULL,'IMG_3733.jpg','image',NULL,3024,4032,621946,NULL,NULL,NULL,'2021-06-03 01:27:06','2021-05-18 01:26:19','2021-06-03 04:18:31'),(17395,1,7,NULL,'IMG_5098.jpg','image',NULL,3024,4032,1055059,NULL,NULL,NULL,'2021-06-03 01:27:07','2021-05-18 01:26:30','2021-06-03 04:19:01'),(17396,1,7,NULL,'IMG_3471.jpg','image',NULL,3024,4032,917471,NULL,NULL,NULL,'2021-06-03 01:27:06','2021-05-18 01:26:42','2021-06-03 04:18:06'),(17397,1,7,NULL,'IMG_4207.jpg','image',NULL,3024,4032,1443452,NULL,NULL,NULL,'2021-06-03 01:27:07','2021-05-18 01:26:53','2021-06-03 04:18:47'),(17398,1,7,NULL,'hqt-video.jpg','image',NULL,1800,900,105249,NULL,NULL,NULL,'2021-06-03 01:26:57','2021-05-18 01:27:07','2021-06-03 05:04:35'),(17399,1,7,NULL,'hqt-14.jpg','image',NULL,1800,900,394553,NULL,NULL,NULL,'2021-06-03 01:26:57','2021-05-18 01:27:09','2021-06-03 05:04:26'),(17400,1,7,NULL,'hqt-11.jpg','image',NULL,1800,900,704217,NULL,NULL,NULL,'2021-06-03 01:26:56','2021-05-18 01:27:11','2021-06-03 05:04:13'),(17401,1,7,NULL,'hqt-12.jpg','image',NULL,1800,900,440058,NULL,NULL,NULL,'2021-06-03 01:26:56','2021-05-18 01:27:13','2021-06-03 05:04:18'),(17402,1,7,NULL,'hqt-15.jpg','image',NULL,1800,900,359329,NULL,NULL,NULL,'2021-06-03 01:26:57','2021-05-18 01:27:16','2021-06-03 05:04:31'),(17403,1,7,NULL,'hqt-13.jpg','image',NULL,1800,900,722785,NULL,NULL,NULL,'2021-06-03 01:26:56','2021-05-18 01:27:18','2021-06-03 05:04:22'),(17404,1,7,NULL,'LIFE-STYLE-Castle05.jpg','image',NULL,1400,915,173126,NULL,NULL,NULL,'2021-06-03 01:27:27','2021-05-18 01:27:20','2021-06-03 04:21:45'),(17405,1,7,NULL,'newpictures.jpg','image',NULL,1440,516,35363,NULL,NULL,NULL,'2021-06-03 01:27:33','2021-05-18 01:27:22','2021-06-03 04:11:32'),(17406,1,7,NULL,'Desktop-HD-Copy.jpg','image',NULL,2880,1032,327146,NULL,NULL,NULL,'2021-06-03 01:26:41','2021-05-18 01:27:24','2021-06-03 04:59:08'),(17407,1,7,NULL,'Desktop-HD-Copy-3.jpg','image',NULL,1348,1032,379390,NULL,NULL,NULL,'2021-06-03 01:26:41','2021-05-18 01:27:28','2021-06-03 04:59:04'),(17408,1,7,NULL,'Desktop-HD-Copy-2.jpg','image',NULL,1348,1032,608545,NULL,NULL,NULL,'2021-06-03 01:26:40','2021-05-18 01:27:30','2021-06-03 04:58:56'),(17409,1,7,NULL,'Screen-Shot-2019-03-15-at-12.18.44-pm.jpg','image',NULL,3038,1492,477959,NULL,NULL,NULL,'2021-06-03 01:28:21','2021-05-18 01:27:32','2021-06-03 04:24:16'),(17410,1,7,NULL,'backedbynwo.png','image',NULL,590,173,11306,NULL,NULL,NULL,'2021-06-03 01:26:16','2021-05-18 01:27:37','2021-06-03 05:06:46'),(17411,1,7,NULL,'services.jpg','image',NULL,1440,500,57867,NULL,NULL,NULL,'2021-06-03 01:28:25','2021-05-18 01:27:38','2021-06-03 04:25:21'),(17412,1,7,NULL,'services2.jpg','image',NULL,2880,1000,119451,NULL,NULL,NULL,'2021-06-03 01:28:26','2021-05-18 01:27:39','2021-06-03 04:27:39'),(17413,1,7,NULL,'services3.jpg','image',NULL,2880,1000,117111,NULL,NULL,NULL,'2021-06-03 01:28:26','2021-05-18 01:27:43','2021-06-03 04:25:27'),(17414,1,7,NULL,'services4.jpg','image',NULL,2880,1000,95162,NULL,NULL,NULL,'2021-06-03 01:28:26','2021-05-18 01:27:46','2021-06-03 04:27:45'),(17415,1,7,NULL,'contact.jpg','image',NULL,2880,1000,216902,NULL,NULL,NULL,'2021-06-03 01:26:35','2021-05-18 01:27:49','2021-06-03 05:08:40'),(17416,1,7,NULL,'people.png','image',NULL,2880,1000,1456703,NULL,NULL,NULL,'2021-06-03 01:27:48','2021-05-18 01:27:54','2021-06-03 04:12:30'),(17417,1,7,NULL,'people2.png','image',NULL,2880,1000,1451455,NULL,NULL,NULL,'2021-06-03 01:27:49','2021-05-18 01:27:59','2021-06-03 04:11:47'),(17418,1,7,NULL,'people3.jpg','image',NULL,2880,1000,106434,NULL,NULL,NULL,'2021-06-03 01:27:49','2021-05-18 01:28:02','2021-06-03 04:12:37'),(17419,1,7,NULL,'people4.jpg','image',NULL,2880,1000,112591,NULL,NULL,NULL,'2021-06-03 01:27:49','2021-05-18 01:28:05','2021-06-03 04:12:49'),(17420,1,7,NULL,'Andrew-Ali-Booth-SML-1000.jpg','image',NULL,2000,1335,585522,NULL,NULL,NULL,'2021-06-03 01:26:10','2021-05-18 01:28:10','2021-06-03 04:48:22'),(17421,1,7,NULL,'contact2.jpg','image',NULL,1490,1000,188704,NULL,NULL,NULL,'2021-06-03 01:26:36','2021-05-18 01:28:14','2021-06-03 05:08:47'),(17422,1,7,NULL,'iStock-911033734.jpg','image',NULL,2063,1452,74054,NULL,NULL,NULL,'2021-06-03 01:27:15','2021-05-18 01:28:16','2021-06-03 04:22:16'),(17423,1,7,NULL,'iStock-905389930.jpg','image',NULL,2121,1414,68952,NULL,NULL,NULL,'2021-06-03 01:27:14','2021-05-18 01:28:19','2021-06-03 04:20:16'),(17424,1,7,NULL,'iStock-958693744.jpg','image',NULL,2120,1414,25237,NULL,NULL,NULL,'2021-06-03 01:27:18','2021-05-18 01:28:22','2021-06-03 04:23:07'),(17425,1,7,NULL,'iStock-950216174.jpg','image',NULL,2121,1414,50109,NULL,NULL,NULL,'2021-06-03 01:27:17','2021-05-18 01:28:25','2021-06-03 04:22:10'),(17426,1,7,NULL,'iStock-510868382.jpg','image',NULL,2121,1414,103861,NULL,NULL,NULL,'2021-06-03 01:27:11','2021-05-18 01:28:28','2021-06-03 04:14:38'),(17427,1,7,NULL,'iStock-510868020.jpg','image',NULL,2121,1414,358930,NULL,NULL,NULL,'2021-06-03 01:27:11','2021-05-18 01:28:31','2021-06-03 04:15:35'),(17428,1,7,NULL,'iStock-656362342.jpg','image',NULL,2309,1299,171165,NULL,NULL,NULL,'2021-06-03 01:27:13','2021-05-18 01:28:35','2021-06-03 04:16:32'),(17429,1,7,NULL,'iStock-1052205052.jpg','image',NULL,2121,1414,136620,NULL,NULL,NULL,'2021-06-03 01:27:20','2021-05-18 01:28:38','2021-06-03 04:14:47'),(17430,1,7,NULL,'iStock-489250372.jpg','image',NULL,2121,1414,183374,NULL,NULL,NULL,'2021-06-03 01:27:10','2021-05-18 01:28:42','2021-06-03 04:15:12'),(17431,1,7,NULL,'iStock-521457912.jpg','image',NULL,2121,1414,101898,NULL,NULL,NULL,'2021-06-03 01:27:12','2021-05-18 01:28:45','2021-09-27 22:59:35'),(17432,1,7,NULL,'iStock-925712824.jpg','image',NULL,2121,1414,130963,NULL,NULL,NULL,'2021-06-03 01:27:16','2021-05-18 01:28:48','2021-06-03 04:22:37'),(17433,1,7,NULL,'iStock-641523282.jpg','image',NULL,2121,1414,120455,NULL,NULL,NULL,'2021-06-03 01:27:13','2021-05-18 01:28:52','2021-06-03 04:16:25'),(17434,1,7,NULL,'iStock-1035462384.jpg','image',NULL,2121,1414,91713,NULL,NULL,NULL,'2021-06-03 01:27:19','2021-05-18 01:28:55','2021-06-03 04:15:50'),(17435,1,7,NULL,'iStock-517228554.jpg','image',NULL,2121,1414,74271,NULL,NULL,NULL,'2021-06-03 01:27:12','2021-05-18 01:28:58','2021-06-03 04:15:58'),(17436,1,7,NULL,'iStock-491490296.jpg','image',NULL,2121,1414,139150,NULL,NULL,NULL,'2021-06-03 01:27:10','2021-05-18 01:29:01','2021-06-03 04:15:20'),(17437,1,7,NULL,'iStock-962558946.jpg','image',NULL,2121,1414,133163,NULL,NULL,NULL,'2021-06-03 01:27:18','2021-05-18 01:29:05','2021-06-03 04:23:16'),(17438,1,7,NULL,'iStock-873554714.jpg','image',NULL,2121,1414,108923,NULL,NULL,NULL,'2021-06-03 01:27:14','2021-05-18 01:29:08','2021-06-03 04:20:08'),(17439,1,7,NULL,'iStock-515965490.jpg','image',NULL,2124,1411,57004,NULL,NULL,NULL,'2021-06-03 01:27:11','2021-05-18 01:29:12','2021-06-03 04:15:44'),(17440,1,7,NULL,'iStock-506435716.jpg','image',NULL,2380,1260,120115,NULL,NULL,NULL,'2021-06-03 01:27:10','2021-05-18 01:29:15','2021-06-03 04:15:27'),(17441,1,7,NULL,'iStock-894068816.jpg','image',NULL,2121,1414,153650,NULL,NULL,NULL,'2021-06-03 01:27:14','2021-05-18 01:29:18','2021-06-03 04:17:10'),(17442,1,7,NULL,'iStock-680238016.jpg','image',NULL,2062,1454,122333,NULL,NULL,NULL,'2021-06-03 01:27:13','2021-05-18 01:29:21','2021-06-03 04:16:39'),(17443,1,7,NULL,'iStock-1003225576.jpg','image',NULL,2119,1414,47813,NULL,NULL,NULL,'2021-06-03 01:27:18','2021-05-18 01:29:25','2021-06-03 04:19:15'),(17444,1,7,NULL,'iStock-916563360.jpg','image',NULL,2448,1224,81442,NULL,NULL,NULL,'2021-06-03 01:27:15','2021-05-18 01:29:29','2021-06-03 04:22:23'),(17445,1,7,NULL,'iStock-994198500.jpg','image',NULL,3999,2025,828827,NULL,NULL,NULL,'2021-06-03 01:27:18','2021-05-18 01:29:34','2021-06-03 04:23:23'),(17446,1,7,NULL,'iStock-680338102.jpg','image',NULL,2154,1392,105291,NULL,NULL,NULL,'2021-06-03 01:27:13','2021-05-18 01:29:41','2021-06-03 04:16:46'),(17447,1,7,NULL,'iStock-937407226.jpg','image',NULL,2119,1414,97467,NULL,NULL,NULL,'2021-06-03 01:27:17','2021-05-18 01:29:45','2021-06-03 04:22:52'),(17448,1,7,NULL,'iStock-133313561.jpg','image',NULL,3008,2000,292916,NULL,NULL,NULL,'2021-06-03 01:27:10','2021-05-18 01:29:49','2021-06-03 04:15:02'),(17449,1,7,NULL,'iStock-916628448.jpg','image',NULL,2368,1265,123407,NULL,NULL,NULL,'2021-06-03 01:27:16','2021-05-18 01:29:55','2021-06-03 04:22:31'),(17450,1,7,NULL,'iStock-1036100456.jpg','image',NULL,2448,1224,65548,NULL,NULL,NULL,'2021-06-03 01:27:19','2021-05-18 01:29:58','2021-06-03 04:16:54'),(17451,1,7,NULL,'iStock-939395854.jpg','image',NULL,2121,1414,68399,NULL,NULL,NULL,'2021-06-03 01:27:17','2021-05-18 01:30:03','2021-06-03 04:23:00'),(17452,1,7,NULL,'iStock-1018683178.jpg','image',NULL,2121,1414,130532,NULL,NULL,NULL,'2021-06-03 01:27:19','2021-05-18 01:30:07','2021-06-03 04:17:01'),(17453,1,7,NULL,'iStock-929888090.jpg','image',NULL,2121,1414,96841,NULL,NULL,NULL,'2021-06-03 01:27:16','2021-05-18 01:30:11','2021-06-03 04:22:44'),(17454,1,7,NULL,'PHN-preview.jpg','image',NULL,1600,1200,92577,NULL,NULL,NULL,'2021-06-03 01:27:50','2021-05-18 01:30:14','2021-06-03 04:12:57'),(17455,1,7,NULL,'qfcc-striped.jpg','image',NULL,1599,1199,88238,NULL,NULL,NULL,'2021-06-03 01:27:58','2021-05-18 01:30:17','2021-06-03 04:32:07'),(17456,1,7,NULL,'qcs.jpg','image',NULL,1599,1199,154161,NULL,NULL,NULL,'2021-06-03 01:27:58','2021-05-18 01:30:19','2021-06-03 04:33:54'),(17457,1,7,NULL,'disti.jpg','image',NULL,1599,1199,105726,NULL,NULL,NULL,'2021-06-03 01:26:41','2021-05-18 01:30:21','2021-06-03 04:59:16'),(17458,1,7,NULL,'placeholder-inline.jpg','image',NULL,1242,918,38409,NULL,NULL,NULL,'2021-06-03 01:27:55','2021-05-18 01:30:23','2021-06-03 04:35:44'),(17459,1,7,NULL,'placeholder-fullwidth.jpg','image',NULL,1440,968,54117,NULL,NULL,NULL,'2021-06-03 01:27:55','2021-05-18 01:30:25','2021-06-03 04:35:41'),(17460,1,7,NULL,'CT-1.jpg','image',NULL,1600,1200,34546,NULL,NULL,NULL,'2021-06-03 01:26:36','2021-05-18 01:30:27','2021-06-03 05:08:51'),(17461,1,7,NULL,'CT-4.jpg','image',NULL,1600,1200,90817,NULL,NULL,NULL,'2021-06-03 01:26:37','2021-05-18 01:30:29','2021-06-03 05:09:03'),(17462,1,7,NULL,'CT-3.jpg','image',NULL,1600,1200,53091,NULL,NULL,NULL,'2021-06-03 01:26:36','2021-05-18 01:30:31','2021-06-03 05:08:59'),(17463,1,7,NULL,'CT-2.jpg','image',NULL,1600,1200,55463,NULL,NULL,NULL,'2021-06-03 01:26:36','2021-05-18 01:30:33','2021-06-03 05:08:55'),(17464,1,7,NULL,'ccc-1.jpg','image',NULL,1600,1200,115303,NULL,NULL,NULL,'2021-06-03 01:26:22','2021-05-18 01:30:35','2021-06-03 05:05:25'),(17465,1,7,NULL,'ccc-3.jpg','image',NULL,1601,1200,80471,NULL,NULL,NULL,'2021-06-03 01:26:23','2021-05-18 01:30:37','2021-06-03 05:05:34'),(17466,1,7,NULL,'ccc-6.jpg','image',NULL,1600,1200,140111,NULL,NULL,NULL,'2021-06-03 01:26:24','2021-05-18 01:30:39','2021-06-03 05:05:43'),(17467,1,7,NULL,'ccc-4.jpg','image',NULL,1601,1201,116872,NULL,NULL,NULL,'2021-06-03 01:26:23','2021-05-18 01:30:43','2021-06-03 05:05:38'),(17468,1,7,NULL,'ccc-5.jpg','image',NULL,1600,1200,85764,NULL,NULL,NULL,'2021-06-03 01:26:23','2021-05-18 01:30:45','2021-06-03 05:05:15'),(17469,1,7,NULL,'ccc-2.jpg','image',NULL,1600,1200,76511,NULL,NULL,NULL,'2021-06-03 01:26:22','2021-05-18 01:30:48','2021-06-03 05:05:30'),(17470,1,7,NULL,'h.jpg','image',NULL,1599,1199,73341,NULL,NULL,NULL,'2021-06-03 01:26:53','2021-05-18 01:30:50','2021-06-03 05:02:35'),(17471,1,7,NULL,'Bruce-black.jpg','image',NULL,1600,1600,1278031,NULL,NULL,NULL,'2021-06-03 01:26:19','2021-05-18 01:30:52','2021-06-03 05:07:07'),(17472,1,7,NULL,'Bruce.jpg','image',NULL,1600,1600,1340685,NULL,NULL,NULL,'2021-06-03 01:26:20','2021-05-18 01:30:56','2021-06-03 05:06:23'),(17473,1,7,NULL,'1.jpg','image',NULL,1600,1200,63829,NULL,NULL,NULL,'2021-06-03 01:25:36','2021-05-18 01:30:58','2021-06-03 04:51:54'),(17474,1,7,NULL,'2.jpg','image',NULL,1600,1200,54522,NULL,NULL,NULL,'2021-06-03 01:25:36','2021-05-18 01:31:00','2021-06-03 04:54:43'),(17475,1,7,NULL,'3.jpg','image',NULL,1600,1200,107097,NULL,NULL,NULL,'2021-06-03 01:25:36','2021-05-18 01:31:02','2021-06-03 04:42:44'),(17476,1,7,NULL,'Suz-black.jpg','image',NULL,1600,1600,1418108,NULL,NULL,NULL,'2021-06-03 01:28:27','2021-05-18 01:31:05','2021-06-03 04:29:37'),(17477,1,7,NULL,'19_06-Landing-page_13fam.jpg','image',NULL,2000,1042,125198,NULL,NULL,NULL,'2021-06-03 01:25:39','2021-05-18 01:31:08','2021-06-03 04:52:25'),(17478,1,7,NULL,'19_06-Landing-page_GetStartedVoucher.jpg','image',NULL,2000,1042,59572,NULL,NULL,NULL,'2021-06-03 01:25:39','2021-05-18 01:31:11','2021-06-03 04:54:02'),(17479,1,7,NULL,'19_06-Landing-page_HQT.jpg','image',NULL,2000,1042,192216,NULL,NULL,NULL,'2021-06-03 01:25:40','2021-05-18 01:31:14','2021-06-03 04:52:51'),(17480,1,7,NULL,'19_06-Landing-page_No3.jpg','image',NULL,2000,1042,142936,NULL,NULL,NULL,'2021-06-03 01:25:40','2021-05-18 01:31:17','2021-06-03 04:54:08'),(17481,1,7,NULL,'nwo-traffic.png','image',NULL,471,277,74419,NULL,NULL,NULL,'2021-06-03 01:27:43','2021-05-18 01:31:20','2021-06-03 04:10:25'),(17482,1,7,NULL,'piv-1.jpg','image',NULL,2400,1575,66109,NULL,NULL,NULL,'2021-06-03 01:27:53','2021-05-18 01:31:21','2021-06-03 04:34:24'),(17483,1,7,NULL,'piv-2.jpg','image',NULL,2400,1575,366109,NULL,NULL,NULL,'2021-06-03 01:27:53','2021-05-18 01:31:27','2021-06-03 04:34:32'),(17484,1,7,NULL,'piv-3.jpg','image',NULL,2400,1650,252837,NULL,NULL,NULL,'2021-06-03 01:27:53','2021-05-18 01:31:33','2021-06-03 04:34:43'),(17485,1,7,NULL,'piv-4.jpg','image',NULL,2400,1350,767507,NULL,NULL,NULL,'2021-06-03 01:27:53','2021-05-18 01:31:38','2021-06-03 04:34:52'),(17486,1,7,NULL,'piv-5.jpg','image',NULL,2400,1575,346898,NULL,NULL,NULL,'2021-06-03 01:27:54','2021-05-18 01:31:44','2021-06-03 04:24:02'),(17487,1,7,NULL,'piv-6.jpg','image',NULL,2400,1575,527405,NULL,NULL,NULL,'2021-06-03 01:27:54','2021-05-18 01:31:49','2021-06-03 04:35:04'),(17488,1,7,NULL,'piv-7.jpg','image',NULL,2400,1575,307339,NULL,NULL,NULL,'2021-06-03 01:27:54','2021-05-18 01:31:55','2021-06-03 04:35:13'),(17489,1,7,NULL,'piv-8.jpg','image',NULL,2400,1530,262995,NULL,NULL,NULL,'2021-06-03 01:27:55','2021-05-18 01:32:00','2021-06-03 04:34:13'),(17490,1,7,NULL,'piv-9.jpg','image',NULL,2400,1530,201001,NULL,NULL,NULL,'2021-06-03 01:27:55','2021-05-18 01:32:05','2021-06-03 04:35:23'),(17491,1,7,NULL,'QHRC_800x500-1.jpg','image',NULL,3333,2083,78827,NULL,NULL,NULL,'2021-06-03 01:27:59','2021-05-18 01:32:10','2021-06-03 04:32:12'),(17492,1,7,NULL,'QHRC_800x500-3.jpg','image',NULL,3333,2083,138553,NULL,NULL,NULL,'2021-06-03 01:27:59','2021-05-18 01:32:16','2021-06-03 04:32:23'),(17493,1,7,NULL,'QHRC_800x500-4.jpg','image',NULL,3333,2083,287850,NULL,NULL,NULL,'2021-06-03 01:27:59','2021-05-18 01:32:22','2021-06-03 04:32:34'),(17494,1,7,NULL,'QHRC_800x500-5.jpg','image',NULL,3333,2083,394147,NULL,NULL,NULL,'2021-06-03 01:27:59','2021-05-18 01:32:28','2021-06-03 04:32:45'),(17495,1,7,NULL,'QHRC_800x500-6.jpg','image',NULL,3333,2083,465669,NULL,NULL,NULL,'2021-06-03 01:28:00','2021-05-18 01:32:34','2021-06-03 04:32:55'),(17496,1,7,NULL,'old-new-pivotus.jpg','image',NULL,2400,1575,97531,NULL,NULL,NULL,'2021-06-03 01:27:47','2021-05-18 01:32:40','2021-06-03 04:12:13'),(17497,1,7,NULL,'4.jpg','image',NULL,1440,900,15395,NULL,NULL,NULL,'2021-06-03 01:25:36','2021-05-18 01:32:44','2021-06-03 04:42:48'),(17498,1,7,NULL,'5.jpg','image',NULL,1440,2626,198153,NULL,NULL,NULL,'2021-06-03 01:25:37','2021-05-18 01:32:47','2021-06-03 04:47:48'),(17499,1,7,NULL,'6.jpg','image',NULL,1440,900,41768,NULL,NULL,NULL,'2021-06-03 01:25:37','2021-05-18 01:32:52','2021-06-03 04:49:49'),(17500,1,7,NULL,'iStock-1058304620.jpg','image',NULL,2121,1414,81651,NULL,NULL,NULL,'2021-06-03 01:27:20','2021-05-18 01:32:54','2021-06-03 04:14:54'),(17501,1,7,NULL,'iStock-545276138.jpg','image',NULL,2121,1414,126199,NULL,NULL,NULL,'2021-06-03 01:27:12','2021-05-18 01:32:57','2021-06-03 04:16:17'),(17502,1,7,NULL,'venn.jpg','image',NULL,1652,956,259800,NULL,NULL,NULL,'2021-06-03 01:28:35','2021-05-18 01:33:01','2021-06-03 04:28:46'),(17503,1,7,NULL,'download.png','image',NULL,224,224,8283,NULL,NULL,NULL,'2021-06-03 01:26:42','2021-05-18 01:33:03','2021-06-03 04:59:22'),(17504,1,7,NULL,'MBBC_P_RGB_tag.jpg','image',NULL,2159,985,573434,NULL,NULL,NULL,'2021-06-03 01:27:30','2021-05-18 01:33:04','2021-06-03 04:11:00'),(17505,1,7,NULL,'MBC_P_RGB_tag.jpg','image',NULL,1687,1005,431130,NULL,NULL,NULL,'2021-06-03 01:27:30','2021-05-18 01:33:07','2021-06-03 04:11:07'),(17506,1,7,NULL,'PymbleLCLogo_Stacked_Blue.png','image',NULL,1468,682,488619,NULL,NULL,NULL,'2021-06-03 01:27:57','2021-05-18 01:33:10','2021-06-03 04:33:14'),(17507,1,7,NULL,'mcalogo4.png','image',NULL,507,107,29701,NULL,NULL,NULL,'2021-06-03 01:27:31','2021-05-18 01:33:13','2021-06-03 04:10:28'),(17508,1,7,NULL,'our-ladys-college-qld-1.jpg','image',NULL,1100,734,66204,NULL,NULL,NULL,'2021-06-03 01:27:48','2021-05-18 01:33:14','2021-06-03 04:12:25'),(17509,1,7,NULL,'logo.png','image',NULL,430,310,15797,NULL,NULL,NULL,'2021-06-03 01:27:28','2021-05-18 01:33:16','2021-06-03 04:13:27'),(17510,1,7,NULL,'mackenzie-ss-logo.png','image',NULL,173,108,25832,NULL,NULL,NULL,'2021-06-03 01:27:29','2021-05-18 01:33:17','2021-06-03 04:14:26'),(17511,1,7,NULL,'SDC_main_rgb.png','image',NULL,1200,578,362831,NULL,NULL,NULL,'2021-06-03 01:28:23','2021-05-18 01:33:18','2021-06-03 04:25:10'),(17512,1,7,NULL,'Ipswich-Grammar-Crest-Tile-390x250.jpg','image',NULL,390,250,18405,NULL,NULL,NULL,'2021-06-03 01:27:09','2021-05-18 01:33:20','2021-06-03 04:20:06'),(17513,1,7,NULL,'download-1.png','image',NULL,230,220,11710,NULL,NULL,NULL,'2021-06-03 01:26:42','2021-05-18 01:33:21','2021-06-03 04:59:21'),(17514,1,7,NULL,'-.png','image',NULL,200,200,19340,NULL,NULL,NULL,'2021-06-03 01:25:35','2021-05-18 01:33:22','2021-06-03 04:51:54'),(17515,1,7,NULL,'ANFwMxLD_400x400.jpg','image',NULL,400,400,13922,NULL,NULL,NULL,'2021-06-03 01:26:11','2021-05-18 01:33:23','2021-06-03 04:48:36'),(17516,1,7,NULL,'EducateCoLogo_vertical_ROSE-rgb.jpg','image',NULL,1327,1710,366062,NULL,NULL,NULL,'2021-06-03 01:26:47','2021-05-18 01:33:24','2021-06-03 04:57:31'),(17517,1,7,NULL,'Malyon_footer_RGB.png','image',NULL,390,118,35355,NULL,NULL,NULL,'2021-06-03 01:27:29','2021-05-18 01:33:28','2021-06-03 04:10:37'),(17518,1,7,NULL,'QLDDeptofEdu.png','image',NULL,561,236,45457,NULL,NULL,NULL,'2021-06-03 01:28:00','2021-05-18 01:33:29','2021-06-03 04:32:05'),(17519,1,7,NULL,'tbc.jpg','image',NULL,358,233,21332,NULL,NULL,NULL,'2021-06-03 01:28:29','2021-05-18 01:33:31','2021-06-03 04:29:37'),(17520,1,7,NULL,'CCC-iCan-1.jpg','image',NULL,1440,1020,168119,NULL,NULL,NULL,'2021-06-03 01:26:24','2021-05-18 01:33:31','2021-06-03 05:05:49'),(17521,1,7,NULL,'CCC-iCan-2.jpg','image',NULL,1440,1020,372752,NULL,NULL,NULL,'2021-06-03 01:26:24','2021-05-18 01:33:35','2021-06-03 05:09:40'),(17522,1,7,NULL,'CCC-iCan-3.jpg','image',NULL,1440,1020,143122,NULL,NULL,NULL,'2021-06-03 01:26:24','2021-05-18 01:33:37','2021-06-03 05:09:44'),(17523,1,7,NULL,'CCC-iCan-4.jpg','image',NULL,1440,1020,126108,NULL,NULL,NULL,'2021-06-03 01:26:25','2021-05-18 01:33:39','2021-06-03 05:09:48'),(17524,1,7,NULL,'CCC-iCan-6.jpg','image',NULL,1440,1020,134333,NULL,NULL,NULL,'2021-06-03 01:26:25','2021-05-18 01:33:42','2021-06-03 05:09:52'),(17525,1,7,NULL,'CCC-iCan-7.jpg','image',NULL,1440,1021,136972,NULL,NULL,NULL,'2021-06-03 01:26:25','2021-05-18 01:33:44','2021-06-03 05:09:55'),(17526,1,7,NULL,'CCC-iCan-8.jpg','image',NULL,1440,1020,141241,NULL,NULL,NULL,'2021-06-03 01:26:25','2021-05-18 01:33:47','2021-06-03 05:09:59'),(17527,1,7,NULL,'CCC-iCan-9.jpg','image',NULL,1440,1020,131637,NULL,NULL,NULL,'2021-06-03 01:26:26','2021-05-18 01:33:49','2021-06-03 05:10:03'),(17528,1,7,NULL,'CCC-iCan-10.jpg','image',NULL,1440,1020,288271,NULL,NULL,NULL,'2021-06-03 01:26:26','2021-05-18 01:33:51','2021-06-03 05:05:54'),(17529,1,7,NULL,'CCC-iCan-11.jpg','image',NULL,1440,1020,174141,NULL,NULL,NULL,'2021-06-03 01:26:26','2021-05-18 01:33:54','2021-06-03 05:05:58'),(17530,1,7,NULL,'CCC-iCan-12.jpg','image',NULL,1440,1020,179696,NULL,NULL,NULL,'2021-06-03 01:26:26','2021-05-18 01:33:57','2021-06-03 05:06:02'),(17531,1,7,NULL,'CCC-iCan-13.jpg','image',NULL,1440,1020,257865,NULL,NULL,NULL,'2021-06-03 01:26:27','2021-05-18 01:33:59','2021-06-03 05:06:06'),(17532,1,7,NULL,'CCC-iCan-14.jpg','image',NULL,1440,1020,216875,NULL,NULL,NULL,'2021-06-03 01:26:27','2021-05-18 01:34:02','2021-06-03 05:06:10'),(17533,1,7,NULL,'CCC-iCan-15.jpg','image',NULL,1440,1020,465295,NULL,NULL,NULL,'2021-06-03 01:26:27','2021-05-18 01:34:05','2021-06-03 05:06:14'),(17534,1,7,NULL,'CCC-iCan-16.jpg','image',NULL,1440,1020,402072,NULL,NULL,NULL,'2021-06-03 01:26:28','2021-05-18 01:34:08','2021-06-03 05:07:52'),(17535,1,7,NULL,'CCC-iCan-17.jpg','image',NULL,1440,1020,184152,NULL,NULL,NULL,'2021-06-03 01:26:28','2021-05-18 01:34:10','2021-06-03 05:06:28'),(17536,1,7,NULL,'CCC-iCan-18.jpg','image',NULL,1440,1020,287173,NULL,NULL,NULL,'2021-06-03 01:26:28','2021-05-18 01:34:13','2021-06-03 05:07:56'),(17537,1,7,NULL,'19_09-MBC-Colleges_16.png','image',NULL,1008,610,263582,NULL,NULL,NULL,'2021-06-03 01:25:44','2021-05-18 01:34:16','2021-06-03 04:56:32'),(17538,1,7,NULL,'19_09-MBC-Colleges_01.png','image',NULL,1008,281,27414,NULL,NULL,NULL,'2021-06-03 01:25:40','2021-05-18 01:34:17','2021-06-03 04:55:56'),(17539,1,7,NULL,'19_09-MBC-Colleges_02.png','image',NULL,1008,571,1234131,NULL,NULL,NULL,'2021-06-03 01:25:41','2021-05-18 01:34:19','2021-06-03 04:56:01'),(17540,1,7,NULL,'19_09-MBC-Colleges_03.png','image',NULL,1008,654,172684,NULL,NULL,NULL,'2021-06-03 01:25:41','2021-05-18 01:34:20','2021-06-03 04:56:03'),(17541,1,7,NULL,'19_09-MBC-Colleges_04.png','image',NULL,1008,390,60412,NULL,NULL,NULL,'2021-06-03 01:25:41','2021-05-18 01:34:22','2021-06-03 04:56:06'),(17542,1,7,NULL,'19_09-MBC-Colleges_05.png','image',NULL,1008,800,914304,NULL,NULL,NULL,'2021-06-03 01:25:41','2021-05-18 01:34:24','2021-06-03 04:56:07'),(17543,1,7,NULL,'19_09-MBC-Colleges_06.png','image',NULL,1008,927,752365,NULL,NULL,NULL,'2021-06-03 01:25:42','2021-05-18 01:34:27','2021-06-03 04:56:11'),(17544,1,7,NULL,'19_09-MBC-Colleges_07.png','image',NULL,1008,276,21355,NULL,NULL,NULL,'2021-06-03 01:25:42','2021-05-18 01:34:29','2021-06-03 04:56:14'),(17545,1,7,NULL,'19_09-MBC-Colleges_08.png','image',NULL,1008,573,899087,NULL,NULL,NULL,'2021-06-03 01:25:42','2021-05-18 01:34:30','2021-06-03 04:56:15'),(17546,1,7,NULL,'19_09-MBC-Colleges_09.png','image',NULL,1008,630,234000,NULL,NULL,NULL,'2021-06-03 01:25:42','2021-05-18 01:34:32','2021-06-03 04:55:58'),(17547,1,7,NULL,'19_09-MBC-Colleges_10.png','image',NULL,1008,717,854119,NULL,NULL,NULL,'2021-06-03 01:25:43','2021-05-18 01:34:35','2021-06-03 04:56:18'),(17548,1,7,NULL,'19_09-MBC-Colleges_12.png','image',NULL,1008,508,781353,NULL,NULL,NULL,'2021-06-03 01:25:43','2021-05-18 01:34:41','2021-06-03 04:56:26'),(17549,1,7,NULL,'19_09-MBC-Colleges_14.png','image',NULL,1008,952,681052,NULL,NULL,NULL,'2021-06-03 01:25:43','2021-05-18 01:34:43','2021-06-03 04:56:28'),(17550,1,7,NULL,'19_09-MBC-Colleges_15.png','image',NULL,1008,202,16737,NULL,NULL,NULL,'2021-06-03 01:25:44','2021-05-18 01:34:44','2021-06-03 04:56:31'),(17551,1,7,NULL,'19_5275-christmas-e-sig_32.png','image',NULL,768,768,101027,NULL,NULL,NULL,'2021-06-03 01:25:47','2021-05-18 01:34:45','2021-06-03 04:54:39'),(17552,1,7,NULL,'19_5275-christmas-e-sig_3.png','image',NULL,768,768,95569,NULL,NULL,NULL,'2021-06-03 01:25:47','2021-05-18 01:34:47','2021-06-03 04:54:37'),(17553,1,7,NULL,'19_5275-christmas-e-sig_4.png','image',NULL,768,555,93525,NULL,NULL,NULL,'2021-06-03 01:25:47','2021-05-18 01:34:48','2021-06-03 04:54:41'),(17554,1,7,NULL,'19_5275-christmas-e-sig_42.png','image',NULL,768,506,99197,NULL,NULL,NULL,'2021-06-03 01:25:47','2021-05-18 01:34:49','2021-06-03 04:54:42'),(17555,1,7,NULL,'nwo-logo-stacked.png','image',NULL,256,149,28192,NULL,NULL,NULL,'2021-06-03 01:27:42','2021-05-18 01:34:50','2021-06-03 04:09:38'),(17556,1,7,NULL,'NWO-Andrews-Dads-famous-cheeseball.pdf','pdf',NULL,NULL,NULL,135862,NULL,NULL,NULL,'2021-06-03 01:27:39','2021-05-18 01:34:51','2021-06-03 04:11:18'),(17557,1,7,NULL,'NWO-Becs-Nutella-Christmas-tree.pdf','pdf',NULL,NULL,NULL,35865,NULL,NULL,NULL,'2021-06-03 01:27:39','2021-05-18 01:34:51','2021-06-03 04:10:28'),(17558,1,7,NULL,'NWO-Bruces-Christmas-pudding.pdf','pdf',NULL,NULL,NULL,39936,NULL,NULL,NULL,'2021-06-03 01:27:39','2021-05-18 01:34:52','2021-06-03 04:10:26'),(17559,1,7,NULL,'NWO-Cathys-Grandmas-rum-balls.pdf','pdf',NULL,NULL,NULL,37831,NULL,NULL,NULL,'2021-06-03 01:27:40','2021-05-18 01:34:52','2021-06-03 04:10:27'),(17560,1,7,NULL,'NWO-Elliots-house-deposit-mousse.pdf','pdf',NULL,NULL,NULL,34595,NULL,NULL,NULL,'2021-06-03 01:27:40','2021-05-18 01:34:52','2021-06-03 04:09:39'),(17561,1,7,NULL,'NWO-Jonnos-trifle.pdf','pdf',NULL,NULL,NULL,104374,NULL,NULL,NULL,'2021-06-03 01:27:41','2021-05-18 01:34:53','2021-06-03 04:09:40'),(17562,1,7,NULL,'NWO-Kates-Aperol-Spritz.pdf','pdf',NULL,NULL,NULL,106076,NULL,NULL,NULL,'2021-06-03 01:27:41','2021-05-18 01:34:53','2021-06-03 04:09:40'),(17563,1,7,NULL,'NWO-Kimis-Christmas-Eve-sangria.pdf','pdf',NULL,NULL,NULL,118014,NULL,NULL,NULL,'2021-06-03 01:27:41','2021-05-18 01:34:53','2021-06-03 04:09:41'),(17564,1,7,NULL,'NWO-Lizs-Vasilopita.pdf','pdf',NULL,NULL,NULL,69945,NULL,NULL,NULL,'2021-06-03 01:27:41','2021-05-18 01:34:54','2021-06-03 04:09:41'),(17565,1,7,NULL,'NWO-Scotts-glazed-ham.pdf','pdf',NULL,NULL,NULL,87766,NULL,NULL,NULL,'2021-06-03 01:27:42','2021-05-18 01:34:54','2021-06-03 04:10:21'),(17566,1,7,NULL,'NWO-Suzs-prosciutto-lemon-wrapped-chicken.pdf','pdf',NULL,NULL,NULL,65113,NULL,NULL,NULL,'2021-06-03 01:27:43','2021-05-18 01:34:55','2021-06-03 04:10:26'),(17567,1,7,NULL,'NWO-Tillys-breakfast-salad-with-tahini-dressing.pdf','pdf',NULL,NULL,NULL,104722,NULL,NULL,NULL,'2021-06-03 01:27:43','2021-05-18 01:34:55','2021-06-03 04:10:26'),(17568,1,7,NULL,'NWO_Scott_19_04.pdf','pdf',NULL,NULL,NULL,32257,NULL,NULL,NULL,'2021-06-03 01:27:38','2021-05-18 01:34:55','2021-06-03 04:13:09'),(17569,1,7,NULL,'NWO_Suzanne_19_07.pdf','pdf',NULL,NULL,NULL,35471,NULL,NULL,NULL,'2021-06-03 01:27:38','2021-05-18 01:34:56','2021-06-03 04:11:54'),(17570,1,7,NULL,'NWO_Team_20-04.pdf','pdf',NULL,NULL,NULL,958556,NULL,NULL,NULL,'2021-06-03 01:27:38','2021-05-18 01:34:56','2021-06-03 04:11:54'),(17571,1,7,NULL,'Flag-Lady_1.jpg','image',NULL,1898,1024,44891,NULL,NULL,NULL,'2021-06-03 01:26:49','2021-05-18 01:34:57','2021-06-03 04:57:52'),(17572,1,7,NULL,'Scott-and-Suz_1.jpg','image',NULL,2015,1019,77583,NULL,NULL,NULL,'2021-06-03 01:28:19','2021-05-18 01:34:59','2021-06-03 04:27:24'),(17573,1,7,NULL,'teal-01.jpg','image',NULL,2000,1008,12099,NULL,NULL,NULL,'2021-06-03 01:28:29','2021-05-18 01:35:02','2021-06-03 04:30:02'),(17574,1,7,NULL,'New-Word-Order-Strategic-Communication-white-paper.pdf','pdf',NULL,NULL,NULL,790718,NULL,NULL,NULL,'2021-06-03 01:27:32','2021-05-18 01:35:04','2021-06-03 04:11:32'),(17593,1,6,1,'newwordorder.WordPress.2021-05-18-5.xml','xml',NULL,NULL,NULL,384766,NULL,NULL,NULL,'2021-06-03 00:47:36','2021-05-18 03:07:19','2021-06-03 04:52:57'),(17596,1,6,1,'Posts-Export-2021-May-18-0312.csv','unknown',NULL,NULL,NULL,162453,NULL,NULL,NULL,'2021-06-03 00:47:39','2021-05-18 03:13:03','2021-06-03 04:52:58'),(17597,1,6,1,'Posts-Export-2021-May-18-0312-2.csv','unknown',NULL,NULL,NULL,162953,NULL,NULL,NULL,'2021-06-03 00:47:39','2021-05-18 03:17:29','2021-06-03 04:52:56'),(17598,1,6,1,'newwordorder.WordPress.2021-05-18-6.xml','xml',NULL,NULL,NULL,406871,NULL,NULL,NULL,'2021-06-03 00:47:36','2021-05-18 03:19:16','2021-06-03 04:52:57'),(17709,1,6,1,'newwordorder.WordPress.2021-05-18-7.xml','xml',NULL,NULL,NULL,365462,NULL,NULL,NULL,'2021-06-03 00:47:37','2021-05-18 03:21:51','2021-06-03 04:52:58'),(17711,1,6,1,'newwordorder.WordPress.2021-05-18-8.xml','xml',NULL,NULL,NULL,360893,NULL,NULL,NULL,'2021-06-03 00:47:37','2021-05-18 03:23:02','2021-06-03 04:52:58'),(17713,1,6,1,'newwordorder.WordPress.2021-05-18-9.xml','xml',NULL,NULL,NULL,350078,NULL,NULL,NULL,'2021-06-03 00:47:38','2021-05-18 03:24:10','2021-06-03 04:52:58'),(17715,1,6,1,'newwordorder.WordPress.2021-05-18-10.xml','xml',NULL,NULL,NULL,244449,NULL,NULL,NULL,'2021-06-03 00:47:38','2021-05-18 03:25:29','2021-06-03 04:52:56'),(17716,1,7,NULL,'IMG_1483.jpg','image',NULL,3024,4032,1176503,NULL,NULL,NULL,'2021-06-03 01:27:03','2021-05-18 03:26:03','2021-06-03 05:01:48'),(17717,1,7,NULL,'IMG_0744.jpg','image',NULL,3024,4032,1210852,NULL,NULL,NULL,'2021-06-03 01:27:02','2021-05-18 03:26:14','2021-06-03 04:42:01'),(17718,1,7,NULL,'Leah.jpg','image',NULL,1600,1600,1115500,NULL,NULL,NULL,'2021-06-03 01:27:27','2021-05-18 03:26:29','2021-06-03 04:21:34'),(17719,1,7,NULL,'585612573.609978-1.jpg','image',NULL,2000,2000,430490,NULL,NULL,NULL,'2021-06-03 01:26:05','2021-05-18 03:26:32','2021-06-03 04:49:42'),(17720,1,7,NULL,'IMG_3045-1.jpg','image',NULL,2320,2320,1077639,NULL,NULL,NULL,'2021-06-03 01:27:05','2021-05-18 03:26:38','2021-06-03 04:17:45'),(17721,1,7,NULL,'Leah_2-copy.jpg','image',NULL,1600,1600,985932,NULL,NULL,NULL,'2021-06-03 01:27:27','2021-05-18 03:26:44','2021-06-03 04:21:40'),(17722,1,7,NULL,'Kat.jpg','image',NULL,1600,1600,1016801,NULL,NULL,NULL,'2021-06-03 01:27:24','2021-05-18 03:26:48','2021-06-03 04:20:39'),(17723,1,7,NULL,'kat-1.jpg','image',NULL,2000,2000,1864279,NULL,NULL,NULL,'2021-06-03 01:27:23','2021-05-18 03:26:51','2021-06-03 04:21:14'),(17724,1,7,NULL,'kat-2.jpg','image',NULL,847,847,244906,NULL,NULL,NULL,'2021-06-03 01:27:23','2021-05-18 03:26:57','2021-06-03 04:21:58'),(17725,1,7,NULL,'kat-3.jpg','image',NULL,720,720,122176,NULL,NULL,NULL,'2021-06-03 01:27:23','2021-05-18 03:26:59','2021-06-03 04:20:29'),(17726,1,7,NULL,'kat-4.jpg','image',NULL,2000,2000,1242741,NULL,NULL,NULL,'2021-06-03 01:27:24','2021-05-18 03:27:00','2021-06-03 04:20:31'),(17727,1,7,NULL,'Kat_2.jpg','image',NULL,1600,1600,915938,NULL,NULL,NULL,'2021-06-03 01:27:23','2021-05-18 03:27:06','2021-06-03 04:20:44'),(17728,1,7,NULL,'Ryan_1.jpg','image',NULL,1600,1600,708221,NULL,NULL,NULL,'2021-06-03 01:28:17','2021-05-18 03:27:09','2021-06-03 04:27:08'),(17729,1,7,NULL,'Ryan_2.jpg','image',NULL,1600,1600,761928,NULL,NULL,NULL,'2021-06-03 01:28:18','2021-05-18 03:27:12','2021-06-03 04:27:14'),(17730,1,7,NULL,'10507868_850789261627979_2025167980_n.jpg','image',NULL,640,640,83281,NULL,NULL,NULL,'2021-06-03 01:26:01','2021-05-18 03:27:15','2021-06-03 04:50:42'),(17731,1,7,NULL,'110212406_317290776291456_5383731733289153646_n.jpg','image',NULL,640,640,44063,NULL,NULL,NULL,'2021-06-03 01:26:02','2021-05-18 03:27:15','2021-06-03 04:51:58'),(17732,1,7,NULL,'23161087_141800066456571_6351681053626728448_n.jpg','image',NULL,640,640,34394,NULL,NULL,NULL,'2021-06-03 01:26:01','2021-05-18 03:27:16','2021-06-03 04:42:43'),(17733,1,7,NULL,'59839865_431918420931933_8904987626071490290_n.jpg','image',NULL,640,640,70954,NULL,NULL,NULL,'2021-06-03 01:26:01','2021-05-18 03:27:17','2021-06-03 04:49:19'),(17734,1,7,NULL,'19_09-PHN-SP_8.jpg','image',NULL,1600,1239,335288,NULL,NULL,NULL,'2021-06-03 01:25:46','2021-05-18 03:27:18','2021-06-03 04:54:33'),(17735,1,7,NULL,'brandjam-background.jpg','image',NULL,4000,2000,1513310,NULL,NULL,NULL,'2021-06-03 01:26:17','2021-05-18 03:27:21','2021-06-03 05:07:13'),(17736,1,7,NULL,'brandjam.png','image',NULL,1086,1080,134943,NULL,NULL,NULL,'2021-06-03 01:26:18','2021-05-18 03:27:33','2021-06-03 05:07:33'),(17737,1,7,NULL,'Screen-Shot-2020-09-08-at-10.09.19-am.png','image',NULL,1435,1208,1943658,NULL,NULL,NULL,'2021-06-03 01:28:23','2021-05-18 03:27:36','2021-06-03 04:24:42'),(17738,1,7,NULL,'scott-1.jpg','image',NULL,1440,1805,383710,NULL,NULL,NULL,'2021-06-03 01:28:18','2021-05-18 03:27:39','2021-06-03 04:27:19'),(17739,1,7,NULL,'BrandJam-eDM-header1.jpg','image',NULL,800,400,43889,NULL,NULL,NULL,'2021-06-03 01:26:18','2021-05-18 03:27:42','2021-06-03 05:07:25'),(17740,1,7,NULL,'brandjam-lp-header.jpg','image',NULL,4000,1000,219882,NULL,NULL,NULL,'2021-06-03 01:26:18','2021-05-18 03:27:43','2021-06-03 05:07:26'),(17741,1,7,NULL,'braondjam-red.jpg','image',NULL,3000,1600,61796,NULL,NULL,NULL,'2021-06-03 01:26:19','2021-05-18 03:27:48','2021-06-03 05:07:45'),(17742,1,7,NULL,'braondjam-red-centre.jpg','image',NULL,3000,1600,61638,NULL,NULL,NULL,'2021-06-03 01:26:19','2021-05-18 03:27:51','2021-06-03 05:07:37'),(17743,1,7,NULL,'kelly-sikkema-v9FQR4tbIq8-unsplash.jpg','image',NULL,1920,1280,136215,NULL,NULL,NULL,'2021-06-03 01:27:25','2021-05-18 03:27:55','2021-06-03 04:20:25'),(17744,1,7,NULL,'20_10-PHN-Safe-to-see-your-GP_1.jpg','image',NULL,6666,3801,1219395,NULL,NULL,NULL,'2021-06-03 01:25:51','2021-05-18 03:28:00','2021-06-03 04:47:59'),(17745,1,7,NULL,'20_10-PHN-Safe-to-see-your-GP_2.jpg','image',NULL,6666,3679,931295,NULL,NULL,NULL,'2021-06-03 01:25:52','2021-05-18 03:28:20','2021-06-03 04:50:12'),(17746,1,7,NULL,'20_10-PHN-Safe-to-see-your-GP_3.jpg','image',NULL,6666,3865,1133829,NULL,NULL,NULL,'2021-06-03 01:25:52','2021-05-18 03:28:37','2021-06-03 04:43:38'),(17747,1,7,NULL,'20_10-PHN-MM-Vaccination-Myths_1.jpg','image',NULL,6666,4076,8155756,NULL,NULL,NULL,'2021-06-03 01:25:50','2021-05-18 03:29:01','2021-06-03 04:55:19'),(17748,1,7,NULL,'20_10-PHN-MM-Vaccination-Myths_2.jpg','image',NULL,6666,4361,857443,NULL,NULL,NULL,'2021-06-03 01:25:50','2021-05-18 03:29:26','2021-06-03 04:55:35'),(17749,1,6,1,'newwordorder.WordPress.2021-05-18-11.xml','xml',NULL,NULL,NULL,2038644,NULL,NULL,NULL,'2021-06-03 00:47:38','2021-05-18 03:29:38','2021-06-03 04:52:57'),(17750,1,7,NULL,'20_10-PHN-MM-Vaccination-Myths_3.jpg','image',NULL,6666,3811,1246291,NULL,NULL,NULL,'2021-06-03 01:25:51','2021-05-18 03:29:52','2021-06-03 04:54:15'),(17751,1,7,NULL,'20_10-PHN-MM-Vaccination-Myths_4.jpg','image',NULL,6666,4572,870482,NULL,NULL,NULL,'2021-06-03 01:25:51','2021-05-18 03:30:12','2021-06-03 04:50:26'),(17752,1,7,NULL,'20_PHN-Right-place-right-time_1.jpg','image',NULL,5120,3412,1610637,NULL,NULL,NULL,'2021-06-03 01:25:55','2021-05-18 03:30:34','2021-06-03 04:46:43'),(17753,1,7,NULL,'20_PHN-Right-place-right-time_2.jpg','image',NULL,5120,3477,1268933,NULL,NULL,NULL,'2021-06-03 01:25:56','2021-05-18 03:30:52','2021-06-03 04:47:00'),(17754,1,7,NULL,'20_PHN-Right-place-right-time_3.jpg','image',NULL,5120,3383,1596956,NULL,NULL,NULL,'2021-06-03 01:25:56','2021-05-18 03:31:10','2021-06-03 04:47:15'),(17755,1,7,NULL,'20_PHN-Right-place-right-time_4.jpg','image',NULL,5120,3269,993542,NULL,NULL,NULL,'2021-06-03 01:25:56','2021-05-18 03:31:29','2021-06-03 04:47:30'),(17756,1,7,NULL,'20_10-PHN-Year-in-review_1.jpg','image',NULL,6666,4497,2789639,NULL,NULL,NULL,'2021-06-03 01:25:52','2021-05-18 03:31:47','2021-06-03 04:43:54'),(17757,1,7,NULL,'20_10-PHN-Year-in-review_2.jpg','image',NULL,6666,5607,2338440,NULL,NULL,NULL,'2021-06-03 01:25:52','2021-05-18 03:32:19','2021-06-03 04:44:12'),(17758,1,7,NULL,'20_PHN-Aged-care-nav_1.jpg','image',NULL,5120,4363,1132139,NULL,NULL,NULL,'2021-06-03 01:25:53','2021-05-18 03:32:54','2021-06-03 04:44:31'),(17759,1,7,NULL,'20_PHN-Aged-care-nav_2.jpg','image',NULL,5120,3322,726651,NULL,NULL,NULL,'2021-06-03 01:25:53','2021-05-18 03:33:26','2021-06-03 04:44:50'),(17760,1,7,NULL,'20_PHN-Aged-care-nav_3.jpg','image',NULL,5120,3809,1142845,NULL,NULL,NULL,'2021-06-03 01:25:53','2021-05-18 03:33:43','2021-06-03 04:45:05'),(17761,1,7,NULL,'20_PHN-Bris-North-website_1.jpg','image',NULL,5120,3128,1050830,NULL,NULL,NULL,'2021-06-03 01:25:54','2021-05-18 03:34:07','2021-06-03 04:45:23'),(17762,1,7,NULL,'20_PHN-Bris-North-website_2.jpg','image',NULL,5120,4513,1294080,NULL,NULL,NULL,'2021-06-03 01:25:54','2021-05-18 03:34:26','2021-06-03 04:43:20'),(17763,1,7,NULL,'20_PHN-Health-pathways_1.jpg','image',NULL,5120,2766,811296,NULL,NULL,NULL,'2021-06-03 01:25:54','2021-05-18 03:34:50','2021-06-03 04:45:36'),(17764,1,7,NULL,'20_PHN-Health-pathways_2.jpg','image',NULL,5120,3069,1574286,NULL,NULL,NULL,'2021-06-03 01:25:55','2021-05-18 03:35:01','2021-06-03 04:45:55'),(17765,1,7,NULL,'20_PHN-My-mental-health_1.jpg','image',NULL,5120,4469,1082812,NULL,NULL,NULL,'2021-06-03 01:25:55','2021-05-18 03:35:17','2021-06-03 04:46:11'),(17766,1,7,NULL,'20_PHN-My-mental-health_2.jpg','image',NULL,5120,2941,1256648,NULL,NULL,NULL,'2021-06-03 01:25:55','2021-05-18 03:35:42','2021-06-03 04:46:28'),(17767,1,7,NULL,'nwo-logo.png','image',NULL,800,70,9246,NULL,NULL,NULL,'2021-06-03 01:27:42','2021-05-18 03:35:54','2021-06-03 04:09:41'),(17770,1,7,NULL,'Screen-Shot-2020-06-17-at-2.12.51-pm-1.png','image',NULL,1390,731,1525417,NULL,NULL,NULL,'2021-06-03 01:28:22','2021-05-18 03:37:29','2021-06-03 04:24:24'),(17771,1,7,NULL,'Screen-Shot-2020-06-17-at-2.17.03-pm.png','image',NULL,1393,733,1693638,NULL,NULL,NULL,'2021-06-03 01:28:22','2021-05-18 03:37:32','2021-06-03 04:24:28'),(17772,1,7,NULL,'Screen-Shot-2020-06-17-at-2.22.28-pm.png','image',NULL,1399,825,410455,NULL,NULL,NULL,'2021-06-03 01:28:22','2021-05-18 03:37:35','2021-06-03 04:24:32'),(17773,1,7,NULL,'Screen-Shot-2020-06-17-at-2.23.12-pm-1.png','image',NULL,1393,732,1305511,NULL,NULL,NULL,'2021-06-03 01:28:22','2021-05-18 03:37:37','2021-06-03 04:24:37'),(17774,1,7,NULL,'20_06-Project-page_HPW-Campaign_1.jpg','image',NULL,1600,837,236700,NULL,NULL,NULL,'2021-06-03 01:25:49','2021-05-18 03:37:39','2021-06-03 04:55:03'),(17775,1,7,NULL,'20_06-Project-page_HPW-Campaign_3.jpg','image',NULL,1600,837,220866,NULL,NULL,NULL,'2021-06-03 01:25:49','2021-05-18 03:37:41','2021-06-03 04:55:07'),(17776,1,7,NULL,'20_06-Project-page_HPW-Campaign_4.jpg','image',NULL,1600,932,124016,NULL,NULL,NULL,'2021-06-03 01:25:50','2021-05-18 03:37:43','2021-06-03 04:55:11'),(17777,1,7,NULL,'20_06-Project-page_HPW-Campaign_5.jpg','image',NULL,1600,830,120131,NULL,NULL,NULL,'2021-06-03 01:25:50','2021-05-18 03:37:45','2021-06-03 04:55:15'),(17778,1,7,NULL,'20_06-Project-page_DFV-Campaign_1.jpg','image',NULL,1600,920,55126,NULL,NULL,NULL,'2021-06-03 01:25:48','2021-05-18 03:37:47','2021-06-03 04:54:46'),(17779,1,7,NULL,'20_06-Project-page_DFV-Campaign_2.jpg','image',NULL,1600,919,29516,NULL,NULL,NULL,'2021-06-03 01:25:48','2021-05-18 03:37:48','2021-06-03 04:54:29'),(17780,1,7,NULL,'20_06-Project-page_DFV-Campaign_3.jpg','image',NULL,1600,907,80147,NULL,NULL,NULL,'2021-06-03 01:25:48','2021-05-18 03:37:50','2021-06-03 04:54:50'),(17781,1,7,NULL,'20_06-Project-page_DFV-Campaign_4.jpg','image',NULL,1600,911,27882,NULL,NULL,NULL,'2021-06-03 01:25:49','2021-05-18 03:37:52','2021-06-03 04:54:59'),(17782,1,7,NULL,'DV_video-cover-image.jpg','image',NULL,8000,4500,5712001,NULL,NULL,NULL,'2021-06-03 01:26:47','2021-05-18 03:37:58','2021-06-03 04:57:18'),(17784,1,7,NULL,'Phone_1-1.gif','image',NULL,1920,1080,1407091,NULL,NULL,NULL,'2021-06-03 01:27:51','2021-05-18 03:38:21','2021-06-03 04:13:03'),(17785,1,7,NULL,'19_09-PHN-SP_1-1.jpg','image',NULL,1600,1205,181358,NULL,NULL,NULL,'2021-06-03 01:25:45','2021-05-18 03:38:31','2021-06-03 04:56:38'),(17786,1,7,NULL,'19_09-PHN-SP_2.jpg','image',NULL,1600,1066,110195,NULL,NULL,NULL,'2021-06-03 01:25:45','2021-05-18 03:38:43','2021-06-03 04:56:42'),(17787,1,7,NULL,'19_09-PHN-SP_3-1.jpg','image',NULL,1600,1188,88208,NULL,NULL,NULL,'2021-06-03 01:25:45','2021-05-18 03:38:51','2021-06-03 04:56:22'),(17788,1,7,NULL,'19_09-PHN-SP_4.jpg','image',NULL,1600,900,32449,NULL,NULL,NULL,'2021-06-03 01:25:46','2021-05-18 03:38:53','2021-06-03 04:55:53'),(17789,1,7,NULL,'19_09-PHN-SP_5.jpg','image',NULL,1600,1239,198636,NULL,NULL,NULL,'2021-06-03 01:25:46','2021-05-18 03:38:55','2021-06-03 04:54:54'),(17790,1,7,NULL,'19_09-PHN-SP_6.jpg','image',NULL,1600,800,200013,NULL,NULL,NULL,'2021-06-03 01:25:46','2021-05-18 03:38:58','2021-06-03 04:55:49'),(17791,1,7,NULL,'19_09-PHN-SP_1-1-2.jpg','image',NULL,1600,840,661675,NULL,NULL,NULL,'2021-06-03 01:25:44','2021-05-18 03:38:59','2021-06-03 04:56:35'),(17792,1,7,NULL,'White-paper_iPad_1.jpg','image',NULL,5616,3744,558141,NULL,NULL,NULL,'2021-06-03 01:28:36','2021-05-18 03:39:03','2021-06-03 04:29:10'),(17793,1,7,NULL,'header.jpeg','image',NULL,1200,600,134333,NULL,NULL,NULL,'2021-06-03 01:26:54','2021-05-18 03:39:17','2021-06-03 05:02:56'),(17794,1,7,NULL,'reasons-to-stay.jpeg','image',NULL,1200,700,815417,NULL,NULL,NULL,'2021-06-03 01:28:11','2021-05-18 03:39:18','2021-06-03 04:37:29'),(17795,1,7,NULL,'domestic-violence.jpeg','image',NULL,625,625,131132,NULL,NULL,NULL,'2021-06-03 01:26:42','2021-05-18 03:39:20','2021-06-03 04:59:20'),(17796,1,7,NULL,'rental.jpeg','image',NULL,625,625,365735,NULL,NULL,NULL,'2021-06-03 01:28:11','2021-05-18 03:39:21','2021-06-03 04:37:32'),(17797,1,7,NULL,'nwo-footer.jpeg','image',NULL,1200,240,67356,NULL,NULL,NULL,'2021-06-03 01:27:40','2021-05-18 03:39:22','2021-06-03 04:09:39'),(17798,1,7,NULL,'PHN_1.jpg','image',NULL,300,300,84466,NULL,NULL,NULL,'2021-06-03 01:27:50','2021-05-18 03:39:22','2021-06-03 04:13:01'),(17811,1,7,1,'iStock-911033734.jpeg','image',NULL,2063,1452,74054,NULL,NULL,NULL,'2021-06-03 01:27:15','2021-05-18 03:47:57','2021-06-03 04:22:02'),(17815,1,7,1,'lightbulbs.jpeg','image',NULL,2121,1414,68952,NULL,NULL,NULL,'2021-06-03 01:27:28','2021-05-18 03:49:47','2021-06-03 04:21:51'),(17818,1,7,1,'motion.jpeg','image',NULL,2120,1414,25237,NULL,NULL,NULL,'2021-06-03 01:27:32','2021-05-18 03:51:13','2021-06-03 04:11:24'),(18216,1,7,NULL,'cciq-corp-partnerships-video.jpg','image',NULL,1800,900,102784,NULL,NULL,NULL,'2021-06-03 01:26:31','2021-06-09 23:26:18','2021-06-09 23:26:18'),(18584,1,5,1,'medical-mums-1.jpeg','image',NULL,6666,4076,6395796,NULL,NULL,NULL,'2021-06-09 23:47:17','2021-06-09 23:47:18','2021-06-09 23:47:18'),(18597,1,5,1,'medical-mums-2.jpeg','image',NULL,6666,4361,802088,NULL,NULL,NULL,'2021-06-09 23:48:51','2021-06-09 23:48:51','2021-06-09 23:48:51'),(18598,1,5,1,'medical-mums-3.jpeg','image',NULL,6666,3811,896421,NULL,NULL,NULL,'2021-06-09 23:48:58','2021-06-09 23:48:59','2021-06-09 23:48:59'),(18599,1,5,1,'medical-mums-4.jpeg','image',NULL,6666,4572,824152,NULL,NULL,NULL,'2021-06-09 23:49:04','2021-06-09 23:49:05','2021-06-09 23:49:05'),(18638,1,5,1,'TRI-landing-1_3.jpg','image',NULL,1600,800,188180,NULL,NULL,NULL,'2021-06-10 01:39:32','2021-06-10 01:39:32','2021-06-10 01:39:32'),(18639,1,5,1,'TRI-landing-3_3.jpg','image',NULL,1600,900,63688,NULL,NULL,NULL,'2021-06-10 01:39:34','2021-06-10 01:39:34','2021-06-10 01:39:34'),(18640,1,5,1,'TRI-landing-4_3.jpg','image',NULL,1600,900,138128,NULL,NULL,NULL,'2021-06-10 01:39:36','2021-06-10 01:39:36','2021-06-10 01:39:36'),(18641,1,5,1,'TRI-landing-5_3.jpg','image',NULL,1600,900,192732,NULL,NULL,NULL,'2021-06-10 01:39:38','2021-06-10 01:39:38','2021-06-10 01:39:38'),(18642,1,5,1,'TRI-landing-6_3.jpg','image',NULL,1600,900,154172,NULL,NULL,NULL,'2021-06-10 01:39:39','2021-06-10 01:39:39','2021-06-10 01:39:39'),(18643,1,5,1,'TRI-landing-7_3.jpg','image',NULL,1600,450,28798,NULL,NULL,NULL,'2021-06-10 01:39:40','2021-06-10 01:39:40','2021-06-10 01:39:40'),(18644,1,5,1,'TRI-landing-14.jpg','image',NULL,1600,900,125331,NULL,NULL,NULL,'2021-06-10 01:39:41','2021-06-10 01:39:42','2021-06-10 01:39:42'),(18645,1,5,1,'TRI-landing-15.jpg','image',NULL,1600,900,97515,NULL,NULL,NULL,'2021-06-10 01:39:43','2021-06-10 01:39:43','2021-06-10 01:39:43'),(18646,1,5,1,'TRI-landing-16.jpg','image',NULL,1600,900,282967,NULL,NULL,NULL,'2021-06-10 01:39:45','2021-06-10 01:39:45','2021-06-10 01:39:45'),(18647,1,5,1,'TRI-landing-17.jpg','image',NULL,1600,900,175307,NULL,NULL,NULL,'2021-06-10 01:39:46','2021-06-10 01:39:46','2021-06-10 01:39:46'),(18648,1,5,1,'TRI-landing-18.jpg','image',NULL,1600,900,287952,NULL,NULL,NULL,'2021-06-10 01:39:48','2021-06-10 01:39:48','2021-06-10 01:39:48'),(18649,1,5,1,'TRI-landing-19.jpg','image',NULL,1600,380,18386,NULL,NULL,NULL,'2021-06-10 01:39:49','2021-06-10 01:39:50','2021-06-10 01:39:50'),(18650,1,5,1,'TRI-landing-20.jpg','image',NULL,1600,900,218469,NULL,NULL,NULL,'2021-06-10 01:39:51','2021-06-10 01:39:52','2021-06-10 01:39:52'),(18651,1,5,1,'TRI-landing-21.jpg','image',NULL,1600,900,228513,NULL,NULL,NULL,'2021-06-10 01:39:53','2021-06-10 01:39:53','2021-06-10 01:39:53'),(18652,1,5,1,'TRI-landing-22.jpg','image',NULL,1600,1000,154028,NULL,NULL,NULL,'2021-06-10 01:39:54','2021-06-10 01:39:55','2021-06-10 01:39:55'),(18653,1,5,1,'TRI-video-placeholder.jpeg','image',NULL,1600,900,51897,NULL,NULL,NULL,'2021-06-10 01:41:13','2021-06-10 01:41:13','2021-06-10 01:41:13'),(19052,1,5,1,'QUU-Landing-1.jpg','image',NULL,1600,1080,64570,NULL,NULL,NULL,'2021-06-10 04:17:10','2021-06-10 04:17:10','2021-06-10 04:17:10'),(19053,1,5,1,'QUU-Landing-2.jpg','image',NULL,1600,1080,343977,NULL,NULL,NULL,'2021-06-10 04:17:12','2021-06-10 04:17:12','2021-06-10 04:17:12'),(19054,1,5,1,'QUU-Landing-3.jpeg','image',NULL,1600,1520,335305,NULL,NULL,NULL,'2021-06-10 04:17:15','2021-06-10 04:17:15','2021-06-10 04:17:15'),(19055,1,5,1,'QUU-Landing-4.jpeg','image',NULL,1600,1080,406231,NULL,NULL,NULL,'2021-06-10 04:17:18','2021-06-10 04:17:18','2021-06-10 04:17:18'),(19056,1,5,1,'QUU-Landing-5.jpeg','image',NULL,1600,1270,899414,NULL,NULL,NULL,'2021-06-10 04:17:22','2021-06-10 04:17:22','2021-06-10 04:17:22'),(19057,1,5,1,'QUU-Landing-7.jpeg','image',NULL,1600,960,256681,NULL,NULL,NULL,'2021-06-10 04:17:24','2021-06-10 04:17:25','2021-06-10 04:17:25'),(19058,1,5,1,'QUU-Landing-8.jpeg','image',NULL,1600,960,135098,NULL,NULL,NULL,'2021-06-10 04:17:27','2021-06-10 04:17:27','2021-06-10 04:17:27'),(19059,1,5,1,'QUU-Landing-9.jpeg','image',NULL,1600,1080,905992,NULL,NULL,NULL,'2021-06-10 04:17:30','2021-06-10 04:17:31','2021-06-10 04:17:31'),(19060,1,5,1,'reasons-to-stay-1.jpeg','image',NULL,1600,840,690614,NULL,NULL,NULL,'2021-06-10 04:20:00','2021-06-10 04:20:01','2021-06-10 04:20:01'),(19061,1,5,1,'reasons-to-stay-2.jpeg','image',NULL,1600,1066,94788,NULL,NULL,NULL,'2021-06-10 04:20:02','2021-06-10 04:20:02','2021-06-10 04:20:02'),(19062,1,5,1,'reasons-to-stay-3.jpeg','image',NULL,1600,800,222851,NULL,NULL,NULL,'2021-06-10 04:20:03','2021-06-10 04:20:04','2021-06-10 04:20:04'),(19063,1,5,1,'reasons-to-stay-thumbnail-1.jpg','image',NULL,6240,4160,8347988,NULL,NULL,NULL,'2021-06-10 04:20:28','2021-06-10 04:20:30','2021-06-10 04:20:30'),(19064,1,5,1,'reasons-to-stay-thumbnail-2.jpg','image',NULL,6240,4160,8161147,NULL,NULL,NULL,'2021-06-10 04:20:55','2021-06-10 04:20:56','2021-06-10 04:20:56'),(19065,1,5,1,'reasons-to-stay-thumbnail-3.jpg','image',NULL,6240,4160,9073839,NULL,NULL,NULL,'2021-06-10 04:21:20','2021-06-10 04:21:21','2021-06-10 04:21:21'),(19066,1,5,1,'reasons-to-stay-thumbnail-4.jpg','image',NULL,6240,4160,10089156,NULL,NULL,NULL,'2021-06-10 04:21:49','2021-06-10 04:21:51','2021-06-10 04:21:51'),(19067,1,5,1,'reasons-to-stay-thumbnail-5.jpg','image',NULL,6240,4160,8322416,NULL,NULL,NULL,'2021-06-10 04:22:16','2021-06-10 04:22:17','2021-06-10 04:22:17'),(19068,1,5,1,'reasons-to-stay-thumbnail-6.jpg','image',NULL,6240,4160,8746704,NULL,NULL,NULL,'2021-06-10 04:22:42','2021-06-10 04:22:44','2021-06-10 04:22:44'),(19081,1,5,1,'PHN-SP-Branding_1.jpg','image',NULL,5000,2613,5700664,NULL,NULL,NULL,'2021-06-10 04:24:58','2021-06-10 04:24:59','2021-06-10 04:24:59'),(21075,1,1,NULL,'pivotus.jpg','image',NULL,772,334,40617,NULL,NULL,NULL,'2021-06-18 04:28:04','2021-06-21 04:37:48','2021-10-05 07:03:40'),(21076,1,1,NULL,'qld-gov.jpg','image',NULL,772,334,59400,NULL,NULL,NULL,'2021-06-18 04:28:07','2021-06-21 04:37:48','2021-10-05 07:04:02'),(21079,1,1,NULL,'threeby3.jpg','image',NULL,772,334,41456,NULL,NULL,NULL,'2021-06-18 04:28:10','2021-06-21 04:37:53','2021-10-05 07:03:19'),(21082,1,1,NULL,'iap2.jpg','image',NULL,772,334,20330,NULL,NULL,NULL,'2021-06-18 04:28:00','2021-06-21 04:37:57','2021-10-05 07:03:01'),(21084,1,1,NULL,'hubspot.jpg','image',NULL,772,334,61095,NULL,NULL,NULL,'2021-06-18 04:27:57','2021-06-21 04:37:58','2021-10-05 07:02:44'),(21085,1,1,NULL,'educate-plus.jpg','image',NULL,772,334,58205,NULL,NULL,NULL,'2021-06-18 04:27:53','2021-06-21 04:38:02','2021-11-09 06:09:05'),(21910,1,1,1,'down-chevron.svg','image',NULL,48,48,585,NULL,NULL,NULL,'2021-07-15 01:58:41','2021-07-15 01:58:41','2021-11-09 06:09:00'),(21915,1,1,1,'educate-plus.svg','image',NULL,229,144,15257,NULL,NULL,NULL,'2021-07-15 02:28:25','2021-07-15 02:28:25','2021-11-09 06:09:09'),(21916,1,1,1,'hubspot.svg','image',NULL,229,144,4313,NULL,NULL,NULL,'2021-07-15 02:28:26','2021-07-15 02:28:26','2021-10-05 06:47:50'),(21917,1,1,1,'iap2.svg','image',NULL,229,144,2140,NULL,NULL,NULL,'2021-07-15 02:28:26','2021-07-15 02:28:26','2021-10-05 06:48:11'),(21918,1,1,1,'pivotus.svg','image',NULL,229,144,3480,NULL,NULL,NULL,'2021-07-15 02:28:27','2021-07-15 02:28:27','2021-10-05 06:47:29'),(21919,1,1,1,'qld-govt.svg','image',NULL,229,144,53312,NULL,NULL,NULL,'2021-07-15 02:28:28','2021-07-15 02:28:28','2021-10-05 06:47:12'),(21920,1,1,1,'three-by-three.svg','image',NULL,229,144,3032,NULL,NULL,NULL,'2021-07-15 02:28:29','2021-07-15 02:28:29','2021-10-05 06:46:52'),(21979,1,5,1,'20_PHN-My-mental-health_1.jpeg','image',NULL,5120,4469,1083360,NULL,NULL,NULL,'2021-07-16 01:39:01','2021-07-16 01:39:02','2021-07-16 01:39:02'),(21999,1,5,1,'20_PHN-My-mental-health_2.jpeg','image',NULL,5120,2941,1218706,NULL,NULL,NULL,'2021-07-16 01:41:05','2021-07-16 01:41:06','2021-07-16 01:41:06'),(22010,1,5,1,'20_PHN-Right-place-right-time_1.jpeg','image',NULL,5120,3412,1492304,NULL,NULL,NULL,'2021-07-16 01:44:58','2021-07-16 01:44:58','2021-07-16 01:44:58'),(22011,1,5,1,'20_PHN-Right-place-right-time_2.jpeg','image',NULL,5120,3477,1146452,NULL,NULL,NULL,'2021-07-16 01:45:05','2021-07-16 01:45:06','2021-07-16 01:45:06'),(22012,1,5,1,'20_PHN-Right-place-right-time_3.jpeg','image',NULL,5120,3383,1508078,NULL,NULL,NULL,'2021-07-16 01:45:13','2021-07-16 01:45:14','2021-07-16 01:45:14'),(22083,1,5,1,'TRI-landing-1_3.jpeg','image',NULL,1600,800,188180,NULL,NULL,NULL,'2021-07-16 01:56:20','2021-07-16 01:56:20','2021-07-16 01:56:20'),(22084,1,5,1,'TRI-landing-2.jpeg','image',NULL,1600,900,51897,NULL,NULL,NULL,'2021-07-16 01:56:21','2021-07-16 01:56:21','2021-07-16 01:56:21'),(22085,1,5,1,'TRI-landing-3_3.jpeg','image',NULL,1600,900,63688,NULL,NULL,NULL,'2021-07-16 01:56:23','2021-07-16 01:56:23','2021-07-16 01:56:23'),(22086,1,5,1,'TRI-landing-4_3.jpeg','image',NULL,1600,900,138128,NULL,NULL,NULL,'2021-07-16 01:56:24','2021-07-16 01:56:24','2021-07-16 01:56:24'),(22087,1,5,1,'TRI-landing-5_3.jpeg','image',NULL,1600,900,192732,NULL,NULL,NULL,'2021-07-16 01:56:26','2021-07-16 01:56:26','2021-07-16 01:56:26'),(22088,1,5,1,'TRI-landing-6_3.jpeg','image',NULL,1600,900,154172,NULL,NULL,NULL,'2021-07-16 01:56:27','2021-07-16 01:56:27','2021-07-16 01:56:27'),(22089,1,5,1,'TRI-landing-7_3.jpeg','image',NULL,1600,450,28798,NULL,NULL,NULL,'2021-07-16 01:56:28','2021-07-16 01:56:28','2021-07-16 01:56:28'),(22090,1,5,1,'TRI-landing-14.jpeg','image',NULL,1600,900,125331,NULL,NULL,NULL,'2021-07-16 01:56:30','2021-07-16 01:56:30','2021-07-16 01:56:30'),(22091,1,5,1,'TRI-landing-15.jpeg','image',NULL,1600,900,97515,NULL,NULL,NULL,'2021-07-16 01:56:31','2021-07-16 01:56:31','2021-07-16 01:56:31'),(22092,1,5,1,'TRI-landing-16.jpeg','image',NULL,1600,900,282967,NULL,NULL,NULL,'2021-07-16 01:56:33','2021-07-16 01:56:33','2021-07-16 01:56:33'),(22093,1,5,1,'TRI-landing-17.jpeg','image',NULL,1600,900,175307,NULL,NULL,NULL,'2021-07-16 01:56:35','2021-07-16 01:56:35','2021-07-16 01:56:35'),(22094,1,5,1,'TRI-landing-18.jpeg','image',NULL,1600,900,287952,NULL,NULL,NULL,'2021-07-16 01:56:37','2021-07-16 01:56:37','2021-07-16 01:56:37'),(22095,1,5,1,'TRI-landing-19.jpeg','image',NULL,1600,380,18386,NULL,NULL,NULL,'2021-07-16 01:56:38','2021-07-16 01:56:38','2021-07-16 01:56:38'),(22096,1,5,1,'TRI-landing-20.jpeg','image',NULL,1600,900,218469,NULL,NULL,NULL,'2021-07-16 01:56:39','2021-07-16 01:56:40','2021-07-16 01:56:40'),(22097,1,5,1,'TRI-landing-21.jpeg','image',NULL,1600,900,228513,NULL,NULL,NULL,'2021-07-16 01:56:42','2021-07-16 01:56:42','2021-07-16 01:56:42'),(22158,1,5,1,'20_10-PHN-Safe-to-see-your-GP_1.jpeg','image',NULL,6666,3801,1233762,NULL,NULL,NULL,'2021-07-16 02:52:10','2021-07-16 02:52:11','2021-07-16 02:52:11'),(22159,1,5,1,'20_10-PHN-Safe-to-see-your-GP_2.jpeg','image',NULL,6666,3679,965429,NULL,NULL,NULL,'2021-07-16 02:52:15','2021-07-16 02:52:15','2021-07-16 02:52:15'),(22160,1,5,1,'20_10-PHN-Safe-to-see-your-GP_3.jpeg','image',NULL,6666,3865,1157824,NULL,NULL,NULL,'2021-07-16 02:52:21','2021-07-16 02:52:22','2021-07-16 02:52:22'),(22211,1,5,1,'6083_Landing-Page_1920-x-1080_1.jpg','image',NULL,1920,1080,1539722,NULL,NULL,NULL,'2021-07-16 03:18:46','2021-07-16 03:18:46','2021-07-16 03:18:46'),(22303,1,5,1,'RuralAid_FB-Single-HR.jpg','image',NULL,7999,4493,1074366,NULL,NULL,NULL,'2021-07-16 04:07:02','2021-07-16 03:57:09','2021-07-16 04:07:03'),(27826,1,5,1,'iStock-579745094.jpg','image',NULL,5226,2940,12428918,NULL,NULL,NULL,'2021-07-21 23:27:32','2021-07-21 23:27:33','2021-07-21 23:27:33'),(28041,1,7,NULL,'21_03-IWD-IG-Bec_13.jpg','image',NULL,2250,2250,1415327,NULL,NULL,NULL,'2021-07-23 05:43:25','2021-07-23 05:43:26','2021-07-23 05:43:26'),(28094,1,1,NULL,'esther-jiao-3HqSeexXYpQ-unsplash.jpg','image',NULL,6000,4000,1203312,NULL,NULL,NULL,'2021-07-23 06:54:41','2021-07-23 06:54:41','2021-11-09 06:06:58'),(28097,1,1,NULL,'Building-blocks-of-branding.jpg','image',NULL,1800,1200,467540,NULL,NULL,NULL,'2021-07-23 06:57:15','2021-07-23 06:57:15','2021-11-09 06:09:14'),(28101,1,1,NULL,'school-marketing.jpg','image',NULL,1800,1200,1298594,NULL,NULL,NULL,'2021-07-23 06:59:37','2021-07-23 06:59:37','2021-10-05 06:42:39'),(30434,1,1,17934,'Smartcane-BMP_global.jpg','image',NULL,2500,1667,997215,NULL,NULL,NULL,'2021-08-12 00:56:34','2021-08-12 00:56:35','2021-10-05 06:44:26'),(30436,1,1,17934,'Canegrowers_factsheets-mockup_1.jpg','image',NULL,4000,2933,2525992,NULL,NULL,NULL,'2021-08-12 01:37:48','2021-08-12 01:35:41','2021-10-05 06:43:58'),(30438,1,1,17934,'Smartcane-BMP_website.jpg','image',NULL,2500,1667,614737,NULL,NULL,NULL,'2021-08-12 03:24:12','2021-08-12 03:24:13','2021-10-05 06:41:54'),(30441,1,1,17934,'21_COOMERA-WEB-5_Global.jpg','image',NULL,8192,5464,5053950,NULL,NULL,NULL,'2021-08-12 03:40:56','2021-08-12 03:40:57','2022-06-27 02:56:52'),(30444,1,1,17934,'21_COOMERA-WEB-1.jpg','image',NULL,2500,1767,1163281,NULL,NULL,NULL,'2021-08-12 03:43:01','2021-08-12 03:43:02','2022-06-27 02:56:34'),(30445,1,1,17934,'21_COOMERA-WEB-42.jpg','image',NULL,2000,1097,1364271,NULL,NULL,NULL,'2021-08-12 03:43:36','2021-08-12 03:43:36','2022-06-27 02:56:48'),(30446,1,1,17934,'21_COOMERA-WEB-3.jpg','image',NULL,2500,1370,1335659,NULL,NULL,NULL,'2021-08-12 03:44:03','2021-08-12 03:44:03','2022-06-27 02:56:40'),(30447,1,1,17934,'21_COOMERA-WEB-2.jpg','image',NULL,2500,1946,1189912,NULL,NULL,NULL,'2021-08-12 03:44:23','2021-08-12 03:44:23','2022-06-27 02:56:37'),(30448,1,1,17934,'21_COOMERA-WEB-4.jpg','image',NULL,2500,1371,964045,NULL,NULL,NULL,'2021-08-12 03:44:50','2021-08-12 03:44:50','2022-06-27 02:56:45'),(30449,1,1,17934,'21_COOMERA-WEB-32.jpg','image',NULL,2500,1370,1278635,NULL,NULL,NULL,'2021-08-12 03:45:21','2021-08-12 03:45:21','2022-06-27 02:56:43'),(38122,1,1,1,'CCC-iCan-15.jpeg','image',NULL,1440,1020,432207,NULL,NULL,NULL,'2021-08-26 23:32:23','2021-08-26 23:32:23','2021-11-09 06:07:29'),(38123,1,1,1,'CCC-iCan-17.jpeg','image',NULL,1440,1020,168305,NULL,NULL,NULL,'2021-08-26 23:33:04','2021-08-26 23:33:04','2021-11-09 06:07:58'),(38129,1,1,1,'CCC-iCan-19-scaled.jpeg','image',NULL,2560,907,201254,NULL,NULL,NULL,'2021-08-26 23:48:09','2021-08-26 23:48:09','2021-11-09 06:08:12'),(38130,1,1,1,'CCC-iCan-10.jpeg','image',NULL,1440,1020,255911,NULL,NULL,NULL,'2021-08-26 23:48:41','2021-08-26 23:48:41','2021-11-09 06:07:13'),(38131,1,1,1,'CCC-iCan-16.jpeg','image',NULL,1440,1020,375063,NULL,NULL,NULL,'2021-08-26 23:49:56','2021-08-26 23:49:56','2021-11-09 06:07:43'),(38134,1,1,1,'CCC-tour-citipointe.jpeg','image',NULL,2000,2057,1301060,NULL,NULL,NULL,'2021-08-26 23:58:21','2021-08-26 23:58:21','2021-11-09 06:08:37'),(44864,1,1,17934,'21_heart-HQ-web.jpg','image',NULL,5208,1458,354846,NULL,NULL,NULL,'2021-09-10 01:49:33','2021-09-10 01:49:33','2021-10-05 06:32:59'),(44867,1,1,17934,'21_heart-HQ-web2.jpg','image',NULL,5208,2500,1242168,NULL,NULL,NULL,'2021-09-10 01:51:08','2021-09-10 01:51:08','2021-10-05 06:32:37'),(44873,1,1,17934,'21_heart-HQ-web5.jpg','image',NULL,10417,5000,4639711,NULL,NULL,NULL,'2021-09-10 01:54:51','2021-09-10 01:54:53','2021-10-05 06:32:09'),(44874,1,1,17934,'21_heart-HQ-web2_2021-09-10-015607_ecvr.jpg','image',NULL,10417,5417,5435289,NULL,NULL,NULL,'2021-09-10 01:56:16','2021-09-10 01:56:18','2021-10-05 06:31:35'),(44878,1,1,17934,'21_heart-HQ-web3.jpg','image',NULL,10417,6250,6496927,NULL,NULL,NULL,'2021-09-10 01:58:08','2021-09-10 01:58:09','2021-10-05 06:30:33'),(45205,1,1,17934,'21_heart-HQ-web6.jpg','image',NULL,10417,6250,12136015,NULL,NULL,NULL,'2021-09-10 03:12:22','2021-09-10 03:12:24','2021-10-05 06:29:51'),(45209,1,1,17934,'21_NSPT.jpg','image',NULL,8333,4566,1831402,NULL,NULL,NULL,'2021-09-10 03:19:18','2021-09-10 03:19:19','2021-10-05 06:29:25'),(45210,1,1,17934,'21_NSPT2.jpg','image',NULL,8333,4566,4131049,NULL,NULL,NULL,'2021-09-10 03:19:32','2021-09-10 03:19:34','2021-10-05 06:28:58'),(45316,1,1,17934,'21_Medical-mums.jpg','image',NULL,10417,3333,1316538,NULL,NULL,NULL,'2021-09-14 01:19:47','2021-09-14 01:19:48','2021-10-05 06:28:28'),(45317,1,1,17934,'21_Medical-mums5.jpg','image',NULL,10417,2400,4523314,NULL,NULL,NULL,'2021-09-14 01:20:32','2021-09-14 01:20:33','2021-10-05 06:28:05'),(45318,1,1,17934,'21_Medical-mums_2021-09-14-012111_vdfb.jpg','image',NULL,10417,3333,1316538,NULL,NULL,NULL,'2021-09-14 01:21:16','2021-09-14 01:21:17','2021-10-05 06:27:40'),(45319,1,1,17934,'21_Medical-mums2.jpg','image',NULL,10417,3650,3454436,NULL,NULL,NULL,'2021-09-14 01:22:07','2021-09-14 01:22:09','2021-10-05 06:27:04'),(45320,1,1,17934,'21_Medical-mums3.jpg','image',NULL,10417,3650,3791359,NULL,NULL,NULL,'2021-09-14 01:22:20','2021-09-14 01:22:22','2021-10-05 06:26:20'),(45321,1,1,17934,'21_Medical-mums4.jpg','image',NULL,10417,3650,3557834,NULL,NULL,NULL,'2021-09-14 01:22:32','2021-09-14 01:22:33','2021-10-05 06:25:57'),(45322,1,1,17934,'21_Medical-mums4_2021-09-14-012257_cpve.jpg','image',NULL,10417,3650,3557834,NULL,NULL,NULL,'2021-09-14 01:23:03','2021-09-14 01:23:04','2021-10-05 06:25:35'),(45323,1,1,17934,'21_Medical-mums3_2021-09-14-012412_cjgj.jpg','image',NULL,10417,3650,3791359,NULL,NULL,NULL,'2021-09-14 01:24:17','2021-09-14 01:24:19','2021-10-05 06:25:12'),(45325,1,1,17934,'21_NSPT2_2021-09-14-012725_ookj.jpg','image',NULL,8333,4566,4131049,NULL,NULL,NULL,'2021-09-14 01:27:32','2021-09-14 01:27:33','2021-10-05 06:24:11'),(45329,1,1,17934,'21_WestMAc.jpg','image',NULL,10417,6250,9030740,NULL,NULL,NULL,'2021-09-14 03:38:47','2021-09-14 03:38:49','2021-10-05 06:23:29'),(45330,1,1,17934,'21_WestMAc3.jpg','image',NULL,10417,4616,7307272,NULL,NULL,NULL,'2021-09-14 03:40:45','2021-09-14 03:40:47','2021-10-05 06:22:20'),(45333,1,1,17934,'21_WestMAc4.jpg','image',NULL,10417,7000,10898361,NULL,NULL,NULL,'2021-09-14 04:04:14','2021-09-14 04:04:16','2021-10-05 06:22:38'),(45336,1,1,17934,'21_Endeavour.jpg','image',NULL,10417,5208,4932107,NULL,NULL,NULL,'2021-09-14 04:15:51','2021-09-14 04:15:53','2021-10-05 06:21:36'),(45338,1,1,17934,'21_Endeavour2.jpg','image',NULL,10417,4616,3281516,NULL,NULL,NULL,'2021-09-14 04:16:30','2021-09-14 04:16:31','2021-10-05 06:21:08'),(45339,1,1,17934,'21_Endeavour4.jpg','image',NULL,10417,6250,3604605,NULL,NULL,NULL,'2021-09-14 04:17:19','2021-09-14 04:17:21','2021-10-05 06:20:27'),(45340,1,1,17934,'21_Endeavour3.jpg','image',NULL,10417,8925,6626058,NULL,NULL,NULL,'2021-09-14 05:34:41','2021-09-14 05:34:43','2021-10-05 06:19:53'),(47639,1,1,17934,'21_Revelian.jpg','image',NULL,10417,6250,8056986,NULL,NULL,NULL,'2021-09-16 23:36:16','2021-09-16 23:36:18','2021-10-05 06:18:55'),(47640,1,1,17934,'21_Revelian2.jpg','image',NULL,10417,5000,4938240,NULL,NULL,NULL,'2021-09-16 23:37:10','2021-09-16 23:37:11','2021-10-05 06:18:24'),(47641,1,1,17934,'21_Revelian_2021-09-16-234314_uuws.jpg','image',NULL,10417,5000,6212493,NULL,NULL,NULL,'2021-09-16 23:43:22','2021-09-16 23:43:24','2021-10-05 06:18:00'),(47642,1,1,17934,'21_Revelian3.jpg','image',NULL,10417,5854,7251736,NULL,NULL,NULL,'2021-09-16 23:44:35','2021-09-16 23:44:36','2021-10-05 06:17:10'),(47643,1,1,17934,'21_Revelian4.jpg','image',NULL,10417,6250,8246924,NULL,NULL,NULL,'2021-09-16 23:44:54','2021-09-16 23:44:56','2021-10-05 06:16:14'),(47656,1,1,17934,'21_QMHC.jpg','image',NULL,10417,2917,7322241,NULL,NULL,NULL,'2021-09-17 05:37:55','2021-09-17 05:37:56','2021-10-05 06:15:31'),(47657,1,1,17934,'21_QMHC2.jpg','image',NULL,10417,6250,4970791,NULL,NULL,NULL,'2021-09-17 05:39:15','2021-09-17 05:39:17','2021-10-05 06:14:55'),(47660,1,1,17934,'21_DPHW-Renting-images.jpg','image',NULL,10417,2726,4383742,NULL,NULL,NULL,'2021-09-17 05:57:50','2021-09-17 05:57:51','2022-06-28 01:10:20'),(47661,1,1,17934,'21_DPHW-Renting-images2.jpg','image',NULL,10417,5000,4000072,NULL,NULL,NULL,'2021-09-17 05:58:04','2021-09-17 05:58:05','2022-06-28 01:10:27'),(47662,1,1,17934,'21_DPHW-Renting-images3.jpg','image',NULL,10417,2726,4882406,NULL,NULL,NULL,'2021-09-17 05:59:23','2021-09-17 05:59:24','2021-10-05 06:13:29'),(47663,1,1,17934,'21_DPHW-Renting-images4.jpg','image',NULL,10417,5000,3404150,NULL,NULL,NULL,'2021-09-17 06:00:38','2021-09-17 06:00:39','2021-10-05 06:13:00'),(47671,1,1,17934,'TRI-landing-1.jpg','image',NULL,1600,800,188180,NULL,NULL,NULL,'2021-09-17 06:24:56','2021-09-17 06:24:56','2021-10-05 06:12:21'),(47672,1,1,17934,'TRI-landing-3.jpg','image',NULL,1600,900,63688,NULL,NULL,NULL,'2021-09-17 06:24:57','2021-09-17 06:24:57','2021-10-05 06:12:00'),(47673,1,1,17934,'TRI-landing-4.jpg','image',NULL,1600,900,138128,NULL,NULL,NULL,'2021-09-17 06:24:59','2021-09-17 06:24:59','2021-10-05 06:11:40'),(47674,1,1,17934,'TRI-landing-5.jpg','image',NULL,1600,900,192732,NULL,NULL,NULL,'2021-09-17 06:25:00','2021-09-17 06:25:01','2021-10-05 06:11:14'),(47675,1,1,17934,'TRI-landing-6.jpg','image',NULL,1600,900,154172,NULL,NULL,NULL,'2021-09-17 06:25:03','2021-09-17 06:25:03','2021-10-05 06:10:52'),(47676,1,1,17934,'TRI-landing-7.jpg','image',NULL,1600,450,28798,NULL,NULL,NULL,'2021-09-17 06:25:04','2021-09-17 06:25:04','2021-10-05 06:10:25'),(47677,1,1,17934,'TRI-landing-14.jpg','image',NULL,1600,900,125331,NULL,NULL,NULL,'2021-09-17 06:25:09','2021-09-17 06:25:09','2021-10-05 06:09:04'),(47678,1,1,17934,'TRI-landing-15.jpg','image',NULL,1600,900,97515,NULL,NULL,NULL,'2021-09-17 06:25:10','2021-09-17 06:25:11','2021-10-05 06:09:16'),(47679,1,1,17934,'TRI-landing-16.jpg','image',NULL,1600,900,282967,NULL,NULL,NULL,'2021-09-17 06:25:13','2021-09-17 06:25:13','2021-10-05 05:28:07'),(47680,1,1,17934,'TRI-landing-17.jpg','image',NULL,1600,900,175307,NULL,NULL,NULL,'2021-09-17 06:25:16','2021-09-17 06:25:16','2021-10-05 05:27:16'),(47681,1,1,17934,'TRI-landing-18.jpg','image',NULL,1600,900,287952,NULL,NULL,NULL,'2021-09-17 06:25:19','2021-09-17 06:25:19','2021-10-05 04:30:07'),(47682,1,1,17934,'TRI-landing-19.jpg','image',NULL,1600,380,18386,NULL,NULL,NULL,'2021-09-17 06:25:20','2021-09-17 06:25:20','2021-10-05 04:29:33'),(47683,1,1,17934,'TRI-landing-20.jpg','image',NULL,1600,900,218469,NULL,NULL,NULL,'2021-09-17 06:25:22','2021-09-17 06:25:22','2021-10-05 04:28:44'),(47693,1,1,17934,'21_COOMERA-website-3.jpg','image',NULL,16667,9133,18025305,NULL,NULL,NULL,'2021-09-21 00:59:30','2021-09-21 00:59:33','2022-06-27 02:57:01'),(47697,1,1,1,'21_Tritium.jpg','image',NULL,10417,6250,2578784,NULL,NULL,NULL,'2021-10-19 11:30:39','2021-09-21 01:43:44','2021-10-19 11:30:45'),(47698,1,1,1,'21_Tritium2.jpg','image',NULL,10417,6250,6051691,NULL,NULL,NULL,'2021-10-20 03:34:30','2021-09-21 01:44:01','2021-10-20 03:34:34'),(47699,1,1,1,'21_Tritium3.jpg','image',NULL,10417,6250,2218858,NULL,NULL,NULL,'2021-10-19 11:26:16','2021-09-21 01:44:15','2021-10-19 11:26:19'),(47700,1,1,1,'21_Tritium4.jpg','image',NULL,10417,4167,3216937,NULL,NULL,NULL,'2021-10-20 03:36:20','2021-09-21 01:44:32','2021-10-20 03:36:22'),(47701,1,1,17934,'21_Tritium5.jpg','image',NULL,10417,10417,5511400,NULL,NULL,NULL,'2021-09-21 01:45:01','2021-09-21 01:45:03','2021-10-05 04:25:45'),(47702,1,1,17934,'21_Tritium6.jpg','image',NULL,10417,8646,5815574,NULL,NULL,NULL,'2021-09-21 01:45:40','2021-09-21 01:45:42','2021-10-05 04:25:12'),(47703,1,1,17934,'21_Tritium7.jpg','image',NULL,10417,18333,13838275,NULL,NULL,NULL,'2021-09-21 01:47:35','2021-09-21 01:47:38','2021-10-05 04:24:22'),(47704,1,1,17934,'21_Tritium2_2021-09-21-030031_ksmz.jpg','image',NULL,10417,6250,5452590,NULL,NULL,NULL,'2021-09-21 03:00:39','2021-09-21 03:00:40','2021-10-05 04:23:41'),(47705,1,1,17934,'21_Tritium4_2021-09-21-030053_ocnu.jpg','image',NULL,10417,4167,3211384,NULL,NULL,NULL,'2021-09-21 03:01:00','2021-09-21 03:01:01','2021-10-05 04:22:59'),(47706,1,1,17934,'21_Tritium5_2021-09-21-030109_zapq.jpg','image',NULL,10417,10417,5511400,NULL,NULL,NULL,'2021-09-21 03:01:23','2021-09-21 03:01:25','2021-10-05 04:26:03'),(47708,1,1,17934,'21_Tritium_2021-09-21-030554_gqpp.jpg','image',NULL,10417,6250,2579254,NULL,NULL,NULL,'2021-09-21 03:06:01','2021-09-21 03:06:02','2021-10-05 01:55:43'),(47709,1,1,17934,'21_Tritium3_2021-09-21-030610_gurv.jpg','image',NULL,10417,6250,2216733,NULL,NULL,NULL,'2021-09-21 03:06:18','2021-09-21 03:06:19','2021-10-05 01:50:57'),(47710,1,1,17934,'21_Tritium6_2021-09-21-030633_jtiz.jpg','image',NULL,10417,8646,5815574,NULL,NULL,NULL,'2021-09-21 03:06:45','2021-09-21 03:06:46','2021-10-05 01:50:39'),(47712,1,1,17934,'21_Tritium7_2021-09-21-030707_pdgr.jpg','image',NULL,10417,18333,13838275,NULL,NULL,NULL,'2021-09-21 03:07:32','2021-09-21 03:07:36','2021-10-05 01:50:08'),(47714,1,1,17934,'21_Tritium7_2021-09-21-030847_tomi.jpg','image',NULL,10417,18333,13838275,NULL,NULL,NULL,'2021-09-21 03:09:11','2021-09-21 03:09:15','2021-10-05 01:49:43'),(47719,1,1,17934,'21_RuralAid-logo3.jpg','image',NULL,8000,2500,709238,NULL,NULL,NULL,'2021-09-21 03:20:33','2021-09-21 03:20:33','2021-10-05 01:49:05'),(47723,1,1,17934,'21_QUU2.jpg','image',NULL,10417,7083,5377835,NULL,NULL,NULL,'2021-09-21 03:39:51','2021-09-21 03:39:53','2021-10-05 01:48:48'),(47724,1,1,17934,'21_QUU.jpg','image',NULL,10417,7083,2785461,NULL,NULL,NULL,'2021-09-21 03:39:56','2021-09-21 03:39:58','2021-10-05 01:48:21'),(47725,1,1,17934,'21_QUU3.jpg','image',NULL,10417,9917,6226316,NULL,NULL,NULL,'2021-09-21 03:40:40','2021-09-21 03:40:42','2021-10-05 01:47:44'),(47726,1,1,17934,'21_QUU4.jpg','image',NULL,10417,6250,7640952,NULL,NULL,NULL,'2021-09-21 03:44:25','2021-09-21 03:44:27','2021-10-05 01:46:51'),(47727,1,1,17934,'21_QUU6.jpg','image',NULL,10417,6250,4606152,NULL,NULL,NULL,'2021-09-21 03:45:15','2021-09-21 03:45:17','2021-10-05 01:46:29'),(47728,1,1,17934,'21_QUU7.jpg','image',NULL,10417,6250,3603680,NULL,NULL,NULL,'2021-09-21 03:45:25','2021-09-21 03:45:27','2021-10-05 01:45:25'),(47729,1,1,17934,'21_QUU8.jpg','image',NULL,10417,6250,7081810,NULL,NULL,NULL,'2021-09-21 03:45:45','2021-09-21 03:45:47','2021-10-05 01:43:46'),(47730,1,1,17934,'21_QUU5.jpg','image',NULL,10417,8333,14011994,NULL,NULL,NULL,'2021-09-21 03:46:01','2021-09-21 03:46:03','2021-10-05 01:43:02'),(47733,1,1,17934,'21_QUU5_2021-09-21-035412_nlrv.jpg','image',NULL,10417,8333,14011994,NULL,NULL,NULL,'2021-09-21 03:54:25','2021-09-21 03:54:27','2021-10-05 01:42:39'),(47734,1,1,17934,'21_QUU8_2021-09-21-035446_tafi.jpg','image',NULL,10417,6250,7081810,NULL,NULL,NULL,'2021-09-21 03:54:56','2021-09-21 03:54:57','2021-10-05 01:22:55'),(47736,1,1,17934,'21_Citipointe.jpg','image',NULL,10417,7379,17241908,NULL,NULL,NULL,'2021-09-21 04:42:15','2021-09-21 04:42:16','2022-06-27 02:57:13'),(47738,1,1,17934,'21_Citipointe2.jpg','image',NULL,10417,3683,3853760,NULL,NULL,NULL,'2021-09-21 04:47:16','2021-09-21 04:47:17','2022-06-28 01:09:32'),(47739,1,1,17934,'21_Citipointe6.jpg','image',NULL,10417,9167,5788964,NULL,NULL,NULL,'2021-09-21 04:48:27','2021-09-21 04:48:28','2022-06-28 01:10:11'),(47740,1,1,17934,'21_Citipointe4.jpg','image',NULL,10417,7379,10135786,NULL,NULL,NULL,'2021-09-21 04:48:56','2021-09-21 04:48:57','2022-06-28 01:09:53'),(47741,1,1,17934,'21_Citipointe3.jpg','image',NULL,10417,7379,12164964,NULL,NULL,NULL,'2021-09-21 04:49:15','2021-09-21 04:49:16','2022-06-28 01:09:41'),(47742,1,1,17934,'21_Citipointe5.jpg','image',NULL,10417,7379,14119423,NULL,NULL,NULL,'2021-09-21 04:49:39','2021-09-21 04:49:41','2022-06-28 01:10:04'),(47745,1,1,17934,'21_BNPHN-Website.jpg','image',NULL,10417,5833,4537437,NULL,NULL,NULL,'2021-09-21 05:08:39','2021-09-21 05:08:40','2022-06-27 01:39:48'),(47746,1,1,17934,'21_BNPHN-Website2.jpg','image',NULL,10417,17083,11002080,NULL,NULL,NULL,'2021-09-21 05:09:27','2021-09-21 05:09:30','2022-06-27 01:39:58'),(47749,1,1,17934,'21_BSPHN-Aged-care-navigator.jpg','image',NULL,10417,5833,8524330,NULL,NULL,NULL,'2021-09-21 05:39:01','2021-09-21 05:39:02','2022-06-27 01:40:07'),(47750,1,1,17934,'21_BSPHN-Aged-care-navigator2.jpg','image',NULL,10417,4167,2983119,NULL,NULL,NULL,'2021-09-21 05:39:28','2021-09-21 05:39:29','2022-06-27 01:40:13'),(47751,1,1,17934,'21_BSPHN-Aged-care-navigator3.jpg','image',NULL,10417,5833,8521548,NULL,NULL,NULL,'2021-09-21 05:39:48','2021-09-21 05:39:49','2022-06-27 01:40:18'),(47752,1,1,17934,'21_BSPHN-Aged-care-navigator4.jpg','image',NULL,10417,10000,6340455,NULL,NULL,NULL,'2021-09-21 05:41:40','2021-09-21 05:41:41','2022-06-27 01:40:24'),(47755,1,1,17934,'21_Pivotus.jpg','image',NULL,10417,3750,1324243,NULL,NULL,NULL,'2021-09-21 05:58:50','2021-09-21 05:58:50','2021-10-05 01:01:29'),(47756,1,1,17934,'21_Pivotus3.jpg','image',NULL,10417,7500,7247285,NULL,NULL,NULL,'2021-09-21 05:59:23','2021-09-21 05:59:25','2021-10-05 01:00:53'),(47757,1,1,17934,'21_Pivotus4.jpg','image',NULL,10417,6250,5503428,NULL,NULL,NULL,'2021-09-21 05:59:36','2021-09-21 05:59:37','2021-10-05 01:00:30'),(47758,1,1,17934,'21_Pivotus5.jpg','image',NULL,10417,11250,5739571,NULL,NULL,NULL,'2021-09-21 05:59:55','2021-09-21 05:59:57','2021-10-05 00:59:48'),(47759,1,1,17934,'21_Pivotus6.jpg','image',NULL,10417,6250,4758197,NULL,NULL,NULL,'2021-09-21 06:00:12','2021-09-21 06:00:14','2021-10-05 00:59:07'),(47761,1,1,17934,'21_Pivotus4_2021-09-21-060151_gauz.jpg','image',NULL,10417,6250,5503428,NULL,NULL,NULL,'2021-09-21 06:02:01','2021-09-21 06:02:02','2021-10-05 00:58:42'),(47763,1,1,17934,'21_Pivotus5_2021-09-21-060319_rddn.jpg','image',NULL,10417,11250,5739571,NULL,NULL,NULL,'2021-09-21 06:03:36','2021-09-21 06:03:38','2021-10-05 00:59:33'),(47764,1,1,17934,'21_Pivotus6_2021-09-21-060435_tslc.jpg','image',NULL,10417,6250,4758197,NULL,NULL,NULL,'2021-09-21 06:04:45','2021-09-21 06:04:47','2021-10-05 00:57:00'),(47767,1,1,17934,'21_DTMR.jpg','image',NULL,10417,6250,8342044,NULL,NULL,NULL,'2021-09-21 06:35:01','2021-09-21 06:35:03','2021-10-05 00:54:22'),(47768,1,1,17934,'21_DTMR2.jpg','image',NULL,10417,6250,6187547,NULL,NULL,NULL,'2021-09-21 06:35:13','2021-09-21 06:35:15','2021-10-05 00:53:32'),(47773,1,1,17934,'21_Asseos.jpg','image',NULL,10417,6250,6748340,NULL,NULL,NULL,'2021-09-21 07:03:18','2021-09-21 07:03:20','2022-06-23 03:27:35'),(47990,1,1,17934,'21_Pivotus1.jpg','image',NULL,10417,5000,3342810,NULL,NULL,NULL,'2021-09-24 01:35:43','2021-09-24 01:35:45','2021-10-05 00:51:46'),(47992,1,1,17934,'21_Pivotus3_2021-09-24-013559_tirx.jpg','image',NULL,10417,7500,7135172,NULL,NULL,NULL,'2021-09-24 01:36:09','2021-09-24 01:36:11','2021-10-05 00:51:21'),(47997,1,1,17934,'21_Asseos-brochure2.jpg','image',NULL,10417,6250,6188354,NULL,NULL,NULL,'2021-09-24 02:00:27','2021-09-24 02:00:29','2022-06-23 03:27:28'),(48006,1,1,17887,'Brigidine-College-logo.png','image',NULL,200,200,44088,NULL,NULL,NULL,'2021-09-24 05:00:40','2021-09-24 05:00:41','2021-10-05 00:50:17'),(48007,1,1,17887,'Screen-Shot-2021-09-24-at-2.58.39-pm.png','image',NULL,2540,1284,301213,NULL,NULL,NULL,'2021-09-24 05:02:08','2021-09-24 05:02:09','2021-10-05 00:48:43'),(48012,1,1,17887,'Screen-Shot-2021-09-24-at-2.58.39-pm_2021-09-24-053947_rcdl.png','image',NULL,2540,1284,301213,NULL,NULL,NULL,'2021-09-24 05:39:48','2021-09-24 05:39:48','2021-10-05 00:47:49'),(48162,1,1,17934,'21_NSPT_global.jpg','image',NULL,8000,6000,1825463,NULL,NULL,NULL,'2021-09-27 02:11:18','2021-09-27 02:11:20','2021-10-05 00:47:23'),(48166,1,1,17934,'21_Asseos_global.jpg','image',NULL,8192,5464,1704380,NULL,NULL,NULL,'2021-09-27 02:19:32','2021-09-27 02:19:32','2022-06-23 03:27:39'),(48171,1,1,17934,'21_Asseos_global_2021-09-27-023614_kppa.jpg','image',NULL,8000,6000,1278803,NULL,NULL,NULL,'2021-09-27 02:36:18','2021-09-27 02:36:19','2022-06-23 03:27:44'),(48176,1,1,17934,'21_Asseos_global_2021-09-27-023815_mfld.jpg','image',NULL,8000,6000,1165238,NULL,NULL,NULL,'2021-09-27 02:38:20','2021-09-27 02:38:20','2022-06-23 03:27:49'),(48180,1,1,17934,'21_DTMR_Global.jpg','image',NULL,8000,6000,4442687,NULL,NULL,NULL,'2021-09-27 02:42:02','2021-09-27 02:42:03','2021-10-05 00:44:47'),(48184,1,1,17934,'21_Pivotus_global.jpg','image',NULL,8000,6000,812636,NULL,NULL,NULL,'2021-09-27 02:46:00','2021-09-27 02:46:01','2021-10-04 23:57:57'),(48358,1,1,17934,'21_Blog-Behaviour-change.jpg','image',NULL,10417,6250,1947805,NULL,NULL,NULL,'2021-09-27 06:12:50','2021-09-27 06:12:51','2022-06-27 01:40:42'),(48362,1,1,17934,'21_Blog-Behaviour-change_2021-09-27-063940_ccrm.jpg','image',NULL,6250,6250,4460963,NULL,NULL,NULL,'2021-09-27 06:39:43','2021-09-27 06:39:44','2022-06-27 01:40:48'),(48366,1,1,17934,'21_Blog-Brand-loyalty.jpg','image',NULL,6250,6250,5800251,NULL,NULL,NULL,'2021-09-27 06:52:45','2021-09-27 06:52:46','2022-06-27 02:56:30'),(48413,1,1,17934,'SEO.jpg','image',NULL,6250,6250,1659131,NULL,NULL,NULL,'2021-09-27 23:53:35','2021-09-27 23:53:36','2021-10-04 23:44:22'),(48414,1,1,17934,'SEO_2021-09-27-235336_kuwi.jpg','image',NULL,6250,6250,1659131,NULL,NULL,NULL,'2021-09-27 23:53:41','2021-09-27 23:53:42','2021-10-04 23:55:12'),(48452,1,1,17934,'21_DPHW-Renting-images_GLOBAL.jpg','image',NULL,8000,6000,8425931,NULL,NULL,NULL,'2021-09-28 07:11:24','2021-09-28 07:11:25','2021-10-04 23:54:49'),(48474,1,1,17934,'21_BSPHN-Poster1_GLOBAL.jpg','image',NULL,8000,5333,4897039,NULL,NULL,NULL,'2021-09-28 07:27:41','2021-09-28 07:27:42','2022-06-27 01:40:31'),(48476,1,1,17934,'21_BSPHN-Poster1_GLOBAL_2021-09-28-072836_skos.jpg','image',NULL,8000,5333,4897039,NULL,NULL,NULL,'2021-09-28 07:28:42','2021-09-28 07:28:43','2022-06-27 01:40:37'),(48532,1,1,17934,'21_BNPHN-GLOBAL.jpg','image',NULL,8000,4500,1595034,NULL,NULL,NULL,'2021-09-30 03:36:44','2021-09-30 03:36:45','2022-06-23 03:27:53'),(48535,1,1,17934,'21_Endeavour-GLOBAL.jpg','image',NULL,8000,6000,2529263,NULL,NULL,NULL,'2021-09-30 03:43:03','2021-09-30 03:43:04','2021-10-04 23:51:22'),(48538,1,1,17934,'21_WestMac_GLOBAL.jpg','image',NULL,8000,5333,3251772,NULL,NULL,NULL,'2021-09-30 03:47:23','2021-09-30 03:47:24','2021-10-04 23:49:49'),(48541,1,1,17934,'QMHC_Global.jpg','image',NULL,8000,5333,6504844,NULL,NULL,NULL,'2021-09-30 03:51:11','2021-09-30 03:51:12','2021-10-04 23:49:11'),(48545,1,1,17934,'21_Tritium_GLOBAL.jpg','image',NULL,8000,4800,1334908,NULL,NULL,NULL,'2021-09-30 03:53:52','2021-09-30 03:53:53','2021-10-04 23:48:27'),(48548,1,1,1,'21_RetireAustralia_Verge-shopping-ban-1.gif','image',NULL,5000,3333,6515791,NULL,NULL,NULL,'2021-09-30 23:30:05','2021-09-30 05:08:27','2021-10-04 23:48:07'),(48550,1,1,17934,'21_RetireAustralia_GLOBAL.jpg','image',NULL,8000,5333,6858157,NULL,NULL,NULL,'2021-09-30 05:12:15','2021-09-30 05:12:17','2021-10-04 23:50:34'),(48554,1,1,17934,'21_RetireAustralia.jpg','image',NULL,10417,6250,11447926,NULL,NULL,NULL,'2021-09-30 05:57:40','2021-09-30 05:57:42','2021-10-04 23:50:03'),(48555,1,1,17934,'21_RetireAustralia2.jpg','image',NULL,10417,4167,6406846,NULL,NULL,NULL,'2021-09-30 05:58:32','2021-09-30 05:58:34','2021-10-04 23:46:53'),(48556,1,1,17934,'21_RetireAustralia3.jpg','image',NULL,10417,5000,4836451,NULL,NULL,NULL,'2021-09-30 05:58:43','2021-09-30 05:58:44','2021-10-04 23:46:11'),(48557,1,1,17934,'21_RetireAustralia4.jpg','image',NULL,10417,7500,10470255,NULL,NULL,NULL,'2021-09-30 05:59:13','2021-09-30 05:59:16','2021-10-04 23:46:25'),(48558,1,1,17934,'21_RetireAustralia6.jpg','image',NULL,10417,17083,11291902,NULL,NULL,NULL,'2021-09-30 05:59:42','2021-09-30 05:59:45','2021-10-01 05:23:51'),(48559,1,1,17934,'21_RetireAustralia5.jpg','image',NULL,10417,7500,8678442,NULL,NULL,NULL,'2021-09-30 06:00:00','2021-09-30 06:00:03','2021-10-01 05:23:23'),(48562,1,1,17934,'21_RetireAustralia4_2021-09-30-060203_byhf.jpg','image',NULL,10417,7500,10470255,NULL,NULL,NULL,'2021-09-30 06:02:21','2021-09-30 06:02:24','2021-10-01 05:22:52'),(48563,1,1,17934,'21_RetireAustralia6_2021-09-30-060224_ixbi.jpg','image',NULL,10417,17083,11291902,NULL,NULL,NULL,'2021-09-30 06:02:50','2021-09-30 06:02:53','2021-10-01 05:22:28'),(48564,1,1,17934,'21_RetireAustralia5_2021-09-30-060606_unpf.jpg','image',NULL,10417,7500,8678442,NULL,NULL,NULL,'2021-09-30 06:06:20','2021-09-30 06:06:22','2021-10-01 05:21:42'),(61819,1,1,17875,'TRI_Comp_6_V2.jpg','image',NULL,4982,3618,8166404,NULL,NULL,NULL,'2021-10-18 04:17:36','2021-10-18 04:17:37','2021-10-18 04:17:37'),(61823,1,1,17875,'no3-home.jpg','image',NULL,6000,3375,2129025,NULL,NULL,NULL,'2021-10-18 04:48:10','2021-10-18 04:48:11','2021-10-18 04:48:11'),(61826,1,1,17875,'heart-hq.jpg','image',NULL,6000,4002,5987586,NULL,NULL,NULL,'2021-10-18 04:50:58','2021-10-18 04:50:59','2021-10-18 04:50:59'),(61829,1,1,17875,'QUU_Ekka_Toilet-3.jpg','image',NULL,3000,1500,671151,NULL,NULL,NULL,'2021-10-18 06:15:02','2021-10-18 06:15:02','2021-10-18 06:15:02'),(61830,1,1,17875,'QUU_Ekka_Toilet-8.jpg','image',NULL,3000,1688,424574,NULL,NULL,NULL,'2021-10-18 06:16:58','2021-10-18 06:16:58','2021-10-18 06:16:58'),(61834,1,1,17875,'Tritium-1.jpg','image',NULL,3000,1875,370421,NULL,NULL,NULL,'2021-10-18 07:12:49','2021-10-18 07:12:49','2021-10-18 07:12:49'),(61835,1,1,17875,'Tritium-2.jpg','image',NULL,3000,1800,977451,NULL,NULL,NULL,'2021-10-18 07:12:56','2021-10-18 07:12:57','2021-10-18 07:12:57'),(61836,1,1,17875,'Tritium-3.jpg','image',NULL,3000,1801,269421,NULL,NULL,NULL,'2021-10-18 07:12:59','2021-10-18 07:13:00','2021-10-18 07:13:00'),(61837,1,1,17875,'Tritium-4.jpg','image',NULL,3000,1680,647834,NULL,NULL,NULL,'2021-10-18 07:13:02','2021-10-18 07:13:03','2021-10-18 07:13:03'),(61838,1,1,17875,'Tritium-5.jpg','image',NULL,3000,2400,741542,NULL,NULL,NULL,'2021-10-18 07:13:06','2021-10-18 07:13:07','2021-10-18 07:13:07'),(61839,1,1,17875,'Tritium-6.jpg','image',NULL,3000,2160,968341,NULL,NULL,NULL,'2021-10-18 07:13:11','2021-10-18 07:13:11','2021-10-18 07:13:11'),(61840,1,1,17875,'Tritium-7.jpg','image',NULL,3000,4200,1944332,NULL,NULL,NULL,'2021-10-18 07:13:18','2021-10-18 07:13:18','2021-10-18 07:13:18'),(61841,1,1,17875,'Tritium-8.jpg','image',NULL,3000,1800,393885,NULL,NULL,NULL,'2021-10-18 07:13:20','2021-10-18 07:13:20','2021-10-18 07:13:20'),(61842,1,1,17875,'Tritium-9.jpg','image',NULL,3000,6938,6127915,NULL,NULL,NULL,'2021-10-18 07:13:39','2021-10-18 07:13:40','2021-10-18 07:13:40'),(61843,1,1,17875,'Tritium-website.jpg','image',NULL,3000,5250,2097978,NULL,NULL,NULL,'2021-10-18 07:13:48','2021-10-18 07:13:49','2021-10-18 07:13:49'),(61847,1,1,17875,'TRI_Comp_9.jpg','image',NULL,3865,2576,10428448,NULL,NULL,NULL,'2021-10-18 07:23:28','2021-10-18 07:23:29','2021-10-18 07:23:29'),(61851,1,1,17875,'Tritium-5000.jpg','image',NULL,5000,7000,4378221,NULL,NULL,NULL,'2021-10-18 07:36:25','2021-10-18 07:36:26','2021-10-18 07:36:26'),(73935,1,1,1,'21_Tritium7_2021-10-20-033816_izqz.jpg','image',NULL,10417,18333,13838275,NULL,NULL,NULL,'2021-10-20 03:38:43','2021-10-20 03:38:47','2021-10-20 03:38:47'),(73936,1,1,1,'21_Tritium6_2021-10-20-033858_dfmf.jpg','image',NULL,10417,8646,5815574,NULL,NULL,NULL,'2021-10-20 03:39:11','2021-10-20 03:39:13','2021-10-20 03:39:13'),(73937,1,1,1,'21_Tritium5_2021-10-20-033925_nmqg.jpg','image',NULL,10417,10417,5511400,NULL,NULL,NULL,'2021-10-20 03:39:41','2021-10-20 03:39:43','2021-10-20 03:39:43'),(73938,1,1,1,'21_Tritium4_2021-10-20-033949_apun.jpg','image',NULL,10417,4167,3181143,NULL,NULL,NULL,'2021-10-20 03:39:58','2021-10-20 03:40:00','2021-10-20 03:40:00'),(73939,1,1,1,'21_Tritium3_2021-10-20-034006_fbfv.jpg','image',NULL,10417,6250,2216733,NULL,NULL,NULL,'2021-10-20 03:40:14','2021-10-20 03:40:16','2021-10-20 03:40:16'),(73940,1,1,1,'21_Tritium2_2021-10-20-034026_uadw.jpg','image',NULL,10417,6250,5452590,NULL,NULL,NULL,'2021-10-20 03:40:37','2021-10-20 03:40:38','2021-10-20 03:40:38'),(73941,1,1,1,'21_Tritium_2021-10-20-034044_phty.jpg','image',NULL,10417,6250,2579254,NULL,NULL,NULL,'2021-10-20 03:40:53','2021-10-20 03:40:54','2021-10-20 03:40:54'),(73947,1,1,1,'21_Tritium-111.jpg','image',NULL,6000,3600,1077444,NULL,NULL,NULL,'2021-10-20 04:31:06','2021-10-20 04:31:06','2021-10-20 04:31:06'),(74034,1,1,17875,'Andrew-col-23.jpg','image',NULL,1280,1280,1591713,NULL,NULL,NULL,'2023-03-09 04:30:48','2021-11-09 00:00:59','2023-03-09 04:30:57'),(74035,1,1,17875,'Bree-col-23.jpg','image',NULL,1280,1280,1713577,NULL,NULL,NULL,'2023-03-09 04:25:51','2021-11-09 00:03:21','2023-03-09 04:25:55'),(74037,1,1,17875,'Bruce-col-23.jpg','image',NULL,1280,1280,1801223,NULL,NULL,NULL,'2023-03-09 04:38:54','2021-11-09 00:11:24','2023-03-09 04:39:00'),(74038,1,1,NULL,'Janine.png','image',NULL,1280,1280,1560258,NULL,NULL,NULL,'2021-11-09 00:11:48','2021-11-09 00:11:51','2021-11-09 00:11:51'),(74039,1,1,17875,'Jo-col-23.jpg','image',NULL,1280,1280,1541260,NULL,NULL,NULL,'2023-03-09 04:27:18','2021-11-09 00:12:47','2023-03-09 04:27:23'),(74040,1,1,NULL,'Kat.png','image',NULL,1280,1280,1443697,NULL,NULL,NULL,'2021-11-09 00:13:23','2021-11-09 00:13:27','2021-11-09 00:13:27'),(74041,1,1,NULL,'Kate.png','image',NULL,1280,1280,1608838,NULL,NULL,NULL,'2021-11-09 00:13:47','2021-11-09 00:13:50','2021-11-09 00:13:50'),(74042,1,1,17875,'Kimi-col-23.jpg','image',NULL,1280,1280,1724777,NULL,NULL,NULL,'2023-03-09 04:26:52','2021-11-09 00:14:13','2023-03-09 04:26:59'),(74043,1,1,17875,'Liam-col-23.jpg','image',NULL,1280,1280,1481287,NULL,NULL,NULL,'2023-03-09 04:27:00','2021-11-09 00:14:42','2023-03-09 04:27:04'),(74044,1,1,17875,'Margaret-col-23.jpg','image',NULL,1280,1280,1570063,NULL,NULL,NULL,'2023-03-09 04:27:24','2021-11-09 00:15:52','2023-03-09 04:27:34'),(74045,1,1,17875,'Bec-col-23.jpg','image',NULL,1280,1280,1696248,NULL,NULL,NULL,'2023-03-09 04:27:51','2021-11-09 00:16:18','2023-03-09 04:27:57'),(74046,1,1,NULL,'Ryan.png','image',NULL,1280,1280,1316556,NULL,NULL,NULL,'2021-11-09 00:16:40','2021-11-09 00:16:42','2021-11-09 00:16:42'),(74047,1,1,17875,'Scott-col-23.jpg','image',NULL,1280,1280,1653260,NULL,NULL,NULL,'2023-03-09 04:27:58','2021-11-09 00:17:07','2023-03-09 04:28:03'),(74049,1,1,17875,'Suz-col-23.jpg','image',NULL,1280,1280,1710144,NULL,NULL,NULL,'2023-03-09 04:27:41','2021-11-09 00:18:01','2023-03-09 04:27:46'),(74050,1,1,17875,'Tim-col-23.jpg','image',NULL,1280,1280,1424401,NULL,NULL,NULL,'2023-03-09 04:28:12','2021-11-09 00:18:25','2023-03-09 04:28:18'),(74105,1,1,1,'logo-black.svg','image',NULL,300,152,2837,NULL,NULL,NULL,'2021-11-09 01:34:39','2021-11-09 01:34:40','2021-11-09 01:34:40'),(74156,1,1,17875,'Kerry-col-23.jpg','image',NULL,1280,1280,1863151,NULL,NULL,NULL,'2023-03-09 04:26:47','2021-11-09 06:10:45','2023-03-09 04:26:51'),(74279,1,1,1,'email-sig.gif','image',NULL,2000,549,191419,NULL,NULL,NULL,'2021-11-15 01:52:56','2021-11-15 01:52:58','2021-11-15 01:52:58'),(74300,1,1,1,'NWO-casestudy-YCN.pdf','pdf',NULL,NULL,NULL,2149350,NULL,NULL,NULL,'2021-11-25 23:54:41','2021-11-25 23:54:45','2021-11-25 23:54:45'),(74301,1,1,1,'NWO-casestudy-HEARTHQ.pdf','pdf',NULL,NULL,NULL,7375374,NULL,NULL,NULL,'2021-11-25 23:54:55','2021-11-25 23:55:00','2021-11-25 23:55:00'),(74302,1,1,1,'NWO-casestudy-DFV.pdf','pdf',NULL,NULL,NULL,668180,NULL,NULL,NULL,'2021-11-25 23:55:10','2021-11-25 23:55:14','2021-11-25 23:55:14'),(84909,1,1,17875,'nwo-email-christmas.png','image',NULL,2000,500,27975,NULL,NULL,NULL,'2021-12-01 01:33:14','2021-12-01 00:22:17','2021-12-01 01:33:21'),(84923,1,1,17875,'nwo-email-christmas-21.png','image',NULL,2000,500,27975,NULL,NULL,NULL,'2021-12-01 01:44:37','2021-12-01 01:44:38','2021-12-01 01:44:38'),(87584,1,1,17934,'Mock-up-Gif1.gif','image',NULL,2000,1333,3133332,NULL,NULL,NULL,'2021-12-09 23:53:36','2021-12-09 23:53:39','2021-12-09 23:53:39'),(87592,1,1,17934,'NWO-Recipe_web-tiles.jpg','image',NULL,4167,2344,2355100,NULL,NULL,NULL,'2021-12-10 00:24:08','2021-12-10 00:24:11','2021-12-10 00:24:11'),(87594,1,1,17934,'NWO-Recipe_web-tiles_2021-12-10-002443_mffa.jpg','image',NULL,4167,2344,2355100,NULL,NULL,NULL,'2021-12-10 00:24:45','2021-12-10 00:24:48','2021-12-10 00:24:48'),(87595,1,1,17934,'NWO-Recipe_web-tiles2.jpg','image',NULL,4167,2344,3016436,NULL,NULL,NULL,'2021-12-10 00:27:26','2021-12-10 00:27:30','2021-12-10 00:27:30'),(87596,1,1,17934,'NWO-Recipe_web-tiles3.jpg','image',NULL,4167,2344,2913011,NULL,NULL,NULL,'2021-12-10 00:27:55','2021-12-10 00:27:58','2021-12-10 00:27:58'),(87597,1,1,17934,'NWO-Recipe_web-tiles4.jpg','image',NULL,4167,2344,3452049,NULL,NULL,NULL,'2021-12-10 00:28:10','2021-12-10 00:28:14','2021-12-10 00:28:14'),(87599,1,1,17934,'NWO-Recipe_web-tiles52.jpg','image',NULL,4167,2344,1025443,NULL,NULL,NULL,'2021-12-10 00:32:53','2021-12-10 00:32:56','2021-12-10 00:32:56'),(87601,1,1,17934,'NWO-Recipe_web-tiles5.jpg','image',NULL,4167,2344,3451435,NULL,NULL,NULL,'2021-12-10 00:35:22','2021-12-10 00:35:25','2021-12-10 00:35:25'),(87602,1,1,17934,'NWO-Recipe_web-tiles52_2021-12-10-003525_aywz.jpg','image',NULL,4167,2344,1025443,NULL,NULL,NULL,'2021-12-10 00:35:26','2021-12-10 00:35:29','2021-12-10 00:35:29'),(87607,1,6,1,'entries.csv','unknown',NULL,NULL,NULL,6864,NULL,NULL,NULL,'2021-12-10 01:00:24','2021-12-10 01:00:26','2021-12-10 01:00:26'),(87622,1,1,1,'2021-Necessities-for-Christmas-festivities-Vol2.pdf','pdf',NULL,NULL,NULL,2498099,NULL,NULL,NULL,'2021-12-10 01:59:16','2021-12-10 01:59:17','2022-06-23 03:27:24'),(94202,1,1,17934,'NWOrebrand_v03_GIF_16x9_1080.gif','image',NULL,1080,608,3868272,NULL,NULL,NULL,'2021-12-21 05:50:25','2021-12-21 05:50:32','2021-12-21 05:50:32'),(94203,1,1,17934,'21_NWO_type-1.jpg','image',NULL,5208,2500,335074,NULL,NULL,NULL,'2021-12-21 06:37:49','2021-12-21 06:37:51','2021-12-21 06:37:51'),(94209,1,1,17875,'NWO-Business-Card-mockup.jpg','image',NULL,4000,2667,2258732,NULL,NULL,NULL,'2022-01-06 23:35:23','2022-01-06 23:35:34','2022-01-06 23:35:34'),(94210,1,1,17875,'nwo-brand-1.jpg','image',NULL,4000,2296,192211,NULL,NULL,NULL,'2022-01-07 01:37:54','2022-01-07 01:37:56','2022-01-07 01:37:56'),(94211,1,1,17875,'nwo-brand-2.jpg','image',NULL,4000,2296,186178,NULL,NULL,NULL,'2022-01-07 01:37:59','2022-01-07 01:38:01','2022-01-07 01:38:01'),(94212,1,1,17875,'nwo-brand-3.jpg','image',NULL,4000,1704,244356,NULL,NULL,NULL,'2022-01-07 01:38:05','2022-01-07 01:38:07','2022-01-07 01:38:07'),(94213,1,1,17875,'nwo-brand-4.jpg','image',NULL,4000,1704,95144,NULL,NULL,NULL,'2022-01-07 01:38:09','2022-01-07 01:38:10','2022-01-07 01:38:10'),(94214,1,1,17875,'nwo-brand-5.jpg','image',NULL,4000,1704,182815,NULL,NULL,NULL,'2022-01-07 01:38:19','2022-01-07 01:38:21','2022-01-07 01:38:21'),(94215,1,1,17875,'nwo-brand-6.jpg','image',NULL,4000,2296,292942,NULL,NULL,NULL,'2022-01-07 01:38:26','2022-01-07 01:38:29','2022-01-07 01:38:29'),(94216,1,1,17875,'nwo-brand-7.jpg','image',NULL,4000,2296,321025,NULL,NULL,NULL,'2022-01-07 01:38:35','2022-01-07 01:38:37','2022-01-07 01:38:37'),(94220,1,1,17875,'NWO-CaseStudy-mockup.jpg','image',NULL,3375,1864,5037582,NULL,NULL,NULL,'2022-01-07 01:54:51','2022-01-07 01:54:54','2022-01-07 01:54:54'),(94221,1,1,17875,'NWO-Website-mockup.jpg','image',NULL,4000,2667,2906250,NULL,NULL,NULL,'2022-01-07 01:54:58','2022-01-07 01:55:01','2022-01-07 01:55:01'),(97266,1,1,17875,'Marnie-col-23.jpg','image',NULL,1280,1280,1566602,NULL,NULL,NULL,'2023-03-09 04:27:06','2022-01-20 03:48:43','2023-03-09 04:27:10'),(99458,1,1,1,'6063_QSA-Pres_3-1.pdf','pdf',NULL,NULL,NULL,151245,NULL,NULL,NULL,'2022-02-09 02:25:19','2022-02-09 02:25:22','2022-02-09 02:25:22'),(106869,1,1,1,'6228-Chevron_Roadhouse_Concepts_3CC.pdf','pdf',NULL,NULL,NULL,614407,NULL,NULL,NULL,'2022-02-11 00:38:25','2022-02-11 00:38:29','2022-02-11 00:38:29'),(106870,1,1,1,'8010-Chevron_CoffeePlus_Concepts_3CC.pdf','pdf',NULL,NULL,NULL,1661099,NULL,NULL,NULL,'2022-02-11 00:38:31','2022-02-11 00:38:35','2022-02-11 00:38:35'),(139963,1,1,1,'New-TCs-final-2.docx','word',NULL,NULL,NULL,25550,NULL,NULL,NULL,'2022-05-17 01:56:14','2022-03-28 03:20:08','2022-05-17 01:56:28'),(139975,1,1,17934,'22_QAS-Website.jpg','image',NULL,5208,2104,1731146,NULL,NULL,NULL,'2022-04-21 05:48:07','2022-04-21 05:48:10','2022-04-21 05:48:10'),(139976,1,1,17934,'22_QAS-Website2.jpg','image',NULL,5208,2607,1245612,NULL,NULL,NULL,'2022-04-21 05:48:36','2022-04-21 05:48:39','2022-04-21 05:48:39'),(139977,1,1,17934,'22_QAS-Website3.jpg','image',NULL,5208,3125,7021388,NULL,NULL,NULL,'2022-04-21 05:48:49','2022-04-21 05:48:54','2022-04-21 05:48:54'),(139978,1,1,17934,'22_QAS-Website4.jpg','image',NULL,5208,3125,1879509,NULL,NULL,NULL,'2022-04-21 05:50:22','2022-04-21 05:50:25','2022-04-21 05:50:25'),(139990,1,1,1,'New-TCs-final-1-1.docx','word',NULL,NULL,NULL,25550,NULL,NULL,NULL,'2022-05-04 04:30:53','2022-05-04 04:30:55','2022-05-04 04:30:55'),(140001,1,1,17934,'05-ComSol-Project-Page_1_12.jpg','image',NULL,2000,2250,363221,NULL,NULL,NULL,'2022-05-05 07:13:35','2022-05-05 07:13:35','2022-06-23 03:26:58'),(140005,1,1,17934,'05-ComSol-Project-Page_1_1.jpg','image',NULL,4000,2250,679271,NULL,NULL,NULL,'2022-05-05 07:25:01','2022-05-05 07:25:01','2022-06-23 03:26:55'),(140009,1,1,17934,'05-ComSol-Project-Page_1_13.jpg','image',NULL,2000,2250,488457,NULL,NULL,NULL,'2022-05-05 07:25:53','2022-05-05 07:25:53','2022-06-23 03:27:03'),(140057,1,1,17934,'15DECEMER-FARM-20219609_v02.jpg','image',NULL,8192,5464,9168790,NULL,NULL,NULL,'2022-05-09 03:38:06','2022-05-09 03:38:06','2022-06-23 03:27:22'),(140063,1,1,17934,'05-Burnie-Brae-Project-Page_1_1.jpg','image',NULL,4000,2250,503604,NULL,NULL,NULL,'2022-05-09 04:00:55','2022-05-09 04:00:55','2022-06-22 07:54:32'),(140064,1,1,17934,'05-Burnie-Brae-Project-Page_1_12.jpg','image',NULL,4000,2250,977122,NULL,NULL,NULL,'2022-05-09 04:01:05','2022-05-09 04:01:05','2022-06-22 07:54:35'),(140065,1,1,17934,'05-Burnie-Brae-Project-Page_2_1.jpg','image',NULL,2000,2250,633706,NULL,NULL,NULL,'2022-05-09 04:01:09','2022-05-09 04:01:09','2022-06-22 07:54:38'),(140066,1,1,17934,'05-Burnie-Brae-Project-Page_2_12.jpg','image',NULL,2000,2250,541986,NULL,NULL,NULL,'2022-05-09 04:01:13','2022-05-09 04:01:13','2022-06-22 07:54:40'),(140069,1,1,17934,'05-Burnie-Brae-Project-Page_3_1.jpg','image',NULL,4000,2250,957189,NULL,NULL,NULL,'2022-05-09 04:38:44','2022-05-09 04:38:44','2022-06-23 03:26:46'),(140076,1,1,17934,'05-Burnie-Brae-Project-Page_4_1.jpg','image',NULL,4000,2250,1178577,NULL,NULL,NULL,'2022-05-09 04:56:12','2022-05-09 04:56:12','2022-06-23 03:26:50'),(140080,1,1,17934,'05-Burnie-Brae-Project-Page_4_1_2022-05-09-045644_argl.jpg','image',NULL,4000,2250,1178577,NULL,NULL,NULL,'2022-05-09 04:56:48','2022-05-09 04:56:48','2022-06-23 03:26:52'),(140086,1,1,17934,'05-ComSol-Project-Page_1_12_2022-05-09-054222_ykhg.jpg','image',NULL,2000,2250,355778,NULL,NULL,NULL,'2022-05-09 05:42:26','2022-05-09 05:42:26','2022-06-23 03:27:00'),(140087,1,1,17934,'05-ComSol-Project-Page_1_1_2022-05-09-054241_bdwl.jpg','image',NULL,4000,2250,663885,NULL,NULL,NULL,'2022-05-09 05:42:45','2022-05-09 05:42:45','2022-06-23 03:27:09'),(140088,1,1,17934,'05-ComSol-Project-Page_1_13_2022-05-09-054405_ocvc.jpg','image',NULL,4000,2250,1327754,NULL,NULL,NULL,'2022-05-09 05:44:10','2022-05-09 05:44:10','2022-06-23 03:27:06'),(140092,1,1,17934,'05-ComSol-Project-Page_3_1.jpg','image',NULL,2000,2250,690655,NULL,NULL,NULL,'2022-05-09 05:47:54','2022-05-09 05:47:54','2022-06-23 03:27:12'),(140093,1,1,17934,'05-ComSol-Project-Page_3_1_2022-05-09-054930_lfrr.jpg','image',NULL,2000,2250,690655,NULL,NULL,NULL,'2022-05-09 05:49:34','2022-05-09 05:49:34','2022-06-23 03:27:16'),(140787,1,1,17887,'Tim_IMG_1576_EDIT_1280x1280px.jpg','image',NULL,1280,1280,1009197,NULL,0,0,'2022-06-23 00:35:52','2022-06-23 00:35:54','2022-06-23 00:35:54'),(141052,1,6,17893,'All-income.csv','unknown',NULL,NULL,NULL,5508,NULL,NULL,NULL,'2022-09-14 22:58:41','2022-06-23 04:12:38','2022-09-14 23:00:11'),(141227,1,6,17893,'All_Income_June.csv','unknown',NULL,NULL,NULL,5355,NULL,NULL,NULL,'2022-06-23 06:15:17','2022-06-23 06:15:18','2022-06-23 06:15:18'),(141483,1,1,1,'2f07ff125729035.61255095f2446.png','image',NULL,1400,1073,172898,NULL,NULL,NULL,'2022-06-24 01:07:20','2022-06-24 01:07:24','2022-06-24 01:07:24'),(141484,1,1,17893,'IMG_1576.png','image',NULL,3024,4032,16979237,NULL,NULL,NULL,'2022-06-24 07:18:22','2022-06-24 07:18:28','2022-06-24 07:18:28'),(141504,1,1,17934,'22_06-GlengaraCare-Website.jpg','image',NULL,2000,2250,1158323,NULL,NULL,NULL,'2022-06-28 01:37:49','2022-06-28 01:37:51','2022-06-28 01:37:51'),(141505,1,1,17934,'22_06-GlengaraCare-Website2.jpg','image',NULL,5208,2250,2728615,NULL,NULL,NULL,'2022-06-28 01:38:04','2022-06-28 01:38:08','2022-06-28 01:38:08'),(141506,1,1,17934,'22_06-GlengaraCare-Website3.jpg','image',NULL,2000,2250,1156756,NULL,NULL,NULL,'2022-06-28 01:38:10','2022-06-28 01:38:13','2022-06-28 01:38:13'),(141516,1,1,17875,'Meet-Tim-2.jpg','image',NULL,1280,1280,1009262,NULL,NULL,NULL,'2022-06-28 02:41:32','2022-06-28 02:41:34','2022-06-28 02:41:34'),(141522,1,1,17934,'22_06-GlengaraCare-Website-header.jpg','image',NULL,5208,3333,4448659,NULL,NULL,NULL,'2022-06-28 04:51:14','2022-06-28 04:51:20','2022-06-28 04:51:20'),(141527,1,1,1,'Heres-Tim.jpg','image',NULL,3333,1667,1444681,NULL,NULL,NULL,'2022-06-29 01:31:14','2022-06-29 01:17:11','2022-06-29 01:31:21'),(141534,1,1,1,'NWO-logo.jpg','image',NULL,1667,1667,121692,NULL,NULL,NULL,'2022-06-29 01:44:44','2022-06-29 01:44:44','2022-06-29 01:44:44'),(141535,1,1,1,'NWO-logo_2022-06-29-014636_ronb.jpg','image',NULL,1600,1600,147449,NULL,NULL,NULL,'2022-06-29 01:46:37','2022-06-29 01:46:38','2022-06-29 01:46:38'),(141536,1,1,1,'Heres-Tim_2022-06-29-014909_sdpk.jpg','image',NULL,3333,1667,1444347,NULL,NULL,NULL,'2022-06-29 01:49:11','2022-06-29 01:49:13','2022-06-29 01:49:13'),(141538,1,1,1,'nwo-background.jpg','image',NULL,8000,4500,523948,NULL,NULL,NULL,'2022-06-30 05:32:09','2022-06-29 01:56:09','2022-06-30 05:32:20'),(141594,1,1,17934,'YCN_Flyer-mock-1-1.jpg','image',NULL,4500,3000,313746,NULL,NULL,NULL,'2022-07-04 01:51:08','2022-07-04 01:51:10','2022-07-04 01:51:10'),(141595,1,1,17934,'YCN_Flyer-mock-1-1_2022-07-04-015326_ygzd.jpg','image',NULL,3994,2701,297715,NULL,NULL,NULL,'2022-07-04 01:53:27','2022-07-04 01:53:28','2022-07-04 01:53:28'),(141596,1,1,17934,'YCN_Website-mock-1-1.jpg','image',NULL,6000,4000,902221,NULL,NULL,NULL,'2022-07-04 07:06:20','2022-07-04 07:06:23','2022-07-04 07:06:23'),(141599,1,1,17934,'22_07-YCN-Marketing-Website.jpg','image',NULL,2000,2250,472285,NULL,NULL,NULL,'2022-07-04 07:10:43','2022-07-04 07:10:45','2022-07-04 07:10:45'),(141602,1,1,17934,'22_07-YCN-Marketing-Website_2022-07-04-071901_flnv.jpg','image',NULL,2000,2250,405308,NULL,NULL,NULL,'2022-07-04 07:19:02','2022-07-04 07:19:04','2022-07-04 07:19:04'),(141632,1,1,17887,'Untitled_Artwork-7.jpg','image',NULL,1500,1500,178310,NULL,NULL,NULL,'2022-07-18 03:24:34','2022-07-18 03:24:36','2022-07-18 03:24:36'),(141650,1,1,17887,'22_07-Meet-Greg.jpg','image',NULL,5208,2604,666752,NULL,NULL,NULL,'2022-07-21 23:03:29','2022-07-21 23:03:32','2022-07-21 23:03:32'),(141670,1,1,17934,'22_07-Ramsay-Marketing-Project-Page_1_1.jpg','image',NULL,4000,2250,930148,NULL,NULL,NULL,'2022-07-26 01:35:54','2022-07-26 01:35:56','2022-07-26 01:35:56'),(141671,1,1,17934,'22_07-Ramsay-Marketing-Project-Page_1_12.jpg','image',NULL,4000,2250,607357,NULL,NULL,NULL,'2022-07-26 01:35:58','2022-07-26 01:36:01','2022-07-26 01:36:01'),(141672,1,1,17934,'22_07-Ramsay-Marketing-Project-Page_1_13.jpg','image',NULL,4000,2250,941425,NULL,NULL,NULL,'2022-07-26 01:36:02','2022-07-26 01:36:04','2022-07-26 01:36:04'),(141680,1,1,17934,'22_07-Ramsay-Marketing-Netball_1_1.gif','image',NULL,1920,1080,2676838,NULL,NULL,NULL,'2022-07-26 01:39:44','2022-07-26 01:39:47','2022-07-26 01:39:47'),(141688,1,1,17934,'22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-014420_awbz.jpg','image',NULL,4000,2250,930148,NULL,NULL,NULL,'2022-07-26 01:44:21','2022-07-26 01:44:26','2022-07-26 01:44:26'),(141698,1,1,17934,'22_07-Ramsay-Marketing-Netball_1_2.gif','image',NULL,1920,1080,1984239,NULL,NULL,NULL,'2022-07-26 05:03:56','2022-07-26 05:03:58','2022-07-26 05:03:58'),(141699,1,1,17934,'22_07-Ramsay-Marketing-Netball_1_2_2022-07-26-050421_aetu.gif','image',NULL,1920,1080,1984239,NULL,NULL,NULL,'2022-07-26 05:04:22','2022-07-26 05:04:27','2022-07-26 05:04:27'),(141704,1,1,17934,'22_07-Ramsay-Marketing-Netball_1_3.gif','image',NULL,960,540,523678,NULL,NULL,NULL,'2022-07-26 05:08:33','2022-07-26 05:08:36','2022-07-26 05:08:36'),(141707,1,1,17934,'22_07-Ramsay-Marketing-Netball_1_3_2022-07-26-052255_ddlu.gif','image',NULL,960,540,523678,NULL,NULL,NULL,'2022-07-26 05:22:56','2022-07-26 05:22:58','2022-07-26 05:22:58'),(141720,1,1,17934,'22_07-Ramsay-Marketing-Netball_1_3_2022-07-26-052741_nqgi.gif','image',NULL,960,540,523678,NULL,NULL,NULL,'2022-07-26 05:27:42','2022-07-26 05:27:44','2022-07-26 05:27:44'),(141733,1,1,17887,'22_07-Meet-Greg-2.jpg','image',NULL,5208,2604,684098,NULL,NULL,NULL,'2022-07-26 05:43:15','2022-07-26 05:43:18','2022-07-26 05:43:18'),(141735,1,1,17875,'Greg-col-23.jpg','image',NULL,1280,1280,1407156,NULL,NULL,NULL,'2023-03-09 04:26:27','2022-07-26 05:44:08','2023-03-09 04:26:32'),(141736,1,1,17934,'22_07-Ramsay-Marketing-Project-Page_2_1.jpg','image',NULL,4000,2250,547709,NULL,NULL,NULL,'2022-07-26 06:52:15','2022-07-26 06:52:17','2022-07-26 06:52:17'),(141737,1,1,17934,'22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065637_uxmw.jpg','image',NULL,4000,2250,1754301,NULL,NULL,NULL,'2022-07-26 06:56:38','2022-07-26 06:56:42','2022-07-26 06:56:42'),(141738,1,1,17934,'22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065643_rdgr.jpg','image',NULL,4000,2250,2428128,NULL,NULL,NULL,'2022-07-26 06:56:44','2022-07-26 06:56:47','2022-07-26 06:56:47'),(141739,1,1,17934,'22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065647_gmwa.jpg','image',NULL,4000,2250,522036,NULL,NULL,NULL,'2022-07-26 06:56:49','2022-07-26 06:56:51','2022-07-26 06:56:51'),(141740,1,1,17934,'22_07-Ramsay-Marketing-Project-Page_1_14.jpg','image',NULL,4000,2250,1013761,NULL,NULL,NULL,'2022-07-26 06:56:52','2022-07-26 06:56:54','2022-07-26 06:56:54'),(141741,1,1,17934,'22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065723_icjm.jpg','image',NULL,4000,2250,1754301,NULL,NULL,NULL,'2022-07-26 06:57:25','2022-07-26 06:57:27','2022-07-26 06:57:27'),(141742,1,1,17934,'22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065728_qnal.jpg','image',NULL,4000,2250,2428128,NULL,NULL,NULL,'2022-07-26 06:57:29','2022-07-26 06:57:35','2022-07-26 06:57:35'),(141743,1,1,17934,'22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065735_rgqd.jpg','image',NULL,4000,2250,522036,NULL,NULL,NULL,'2022-07-26 06:57:36','2022-07-26 06:57:39','2022-07-26 06:57:39'),(141744,1,1,17934,'22_07-Ramsay-Marketing-Project-Page_1_14_2022-07-26-065740_ktpl.jpg','image',NULL,4000,2250,1013761,NULL,NULL,NULL,'2022-07-26 06:57:41','2022-07-26 06:57:45','2022-07-26 06:57:45'),(141745,1,1,17934,'22_07-Ramsay-Marketing-Project-Page_3_1.jpg','image',NULL,2000,2250,431284,NULL,NULL,NULL,'2022-07-26 07:00:32','2022-07-26 07:00:34','2022-07-26 07:00:34'),(141758,1,1,17934,'22_07-Greg-EDM_1_1.jpg','image',NULL,1167,583,243890,NULL,NULL,NULL,'2022-07-26 07:05:58','2022-07-26 07:05:59','2022-07-26 07:05:59'),(141802,1,1,1,'Tritium-07-1.jpg','image',NULL,1440,960,242454,NULL,NULL,NULL,'2022-08-02 00:28:24','2022-08-02 00:28:25','2022-08-02 00:28:25'),(141803,1,1,1,'Tritium-07-2.png','image',NULL,1600,900,2937012,NULL,NULL,NULL,'2022-08-02 00:28:28','2022-08-02 00:28:31','2022-08-02 00:28:31'),(141804,1,1,1,'Tritium-07-3.png','image',NULL,1702,1110,3254544,NULL,NULL,NULL,'2022-08-02 00:28:34','2022-08-02 00:28:37','2022-08-02 00:28:37'),(141805,1,1,1,'Tritium-07-4.png','image',NULL,817,1110,343109,NULL,NULL,NULL,'2022-08-02 00:28:40','2022-08-02 00:28:42','2022-08-02 00:28:42'),(141806,1,1,1,'Tritium-07-5.png','image',NULL,1381,924,495130,NULL,NULL,NULL,'2022-08-02 00:28:45','2022-08-02 00:28:46','2022-08-02 00:28:46'),(141945,1,1,17934,'22_08-Ekka-Marketing-Website.jpg','image',NULL,5208,3125,6031438,NULL,NULL,NULL,'2022-08-15 05:27:42','2022-08-15 05:27:45','2022-08-15 05:27:45'),(141946,1,1,17934,'22_08-Ekka-Marketing-Website2.jpg','image',NULL,5208,3125,6669522,NULL,NULL,NULL,'2022-08-15 05:30:38','2022-08-15 05:30:44','2022-08-15 05:30:44'),(141947,1,1,17934,'22_08-Ekka-Marketing-Website3.jpg','image',NULL,5208,3125,4071942,NULL,NULL,NULL,'2022-08-15 05:31:37','2022-08-15 05:31:43','2022-08-15 05:31:43'),(141948,1,1,17934,'22_08-Ekka-Marketing-Website4.jpg','image',NULL,2604,3125,1060293,NULL,NULL,NULL,'2022-08-15 05:32:14','2022-08-15 05:32:16','2022-08-15 05:32:16'),(141954,1,1,17934,'22_07-YCN-Marketing-Website-1.jpg','image',NULL,5208,3125,940015,NULL,NULL,NULL,'2022-08-15 05:54:34','2022-08-15 05:54:39','2022-08-15 05:54:39'),(141957,1,1,17875,'Meet-William.jpg','image',NULL,3200,1600,4740242,NULL,NULL,NULL,'2022-08-16 04:32:35','2022-08-16 04:32:39','2022-08-16 04:32:39'),(141961,1,1,17875,'William.png','image',NULL,2000,2000,6109631,NULL,NULL,NULL,'2022-08-16 05:10:37','2022-08-16 05:10:41','2022-08-16 05:10:41'),(141962,1,1,17875,'Will-col-23.jpg','image',NULL,1280,1280,1689685,NULL,NULL,NULL,'2023-03-09 04:28:22','2022-08-16 05:35:05','2023-03-09 04:28:28'),(141977,1,1,17887,'nwo-seven-marketing.jpg','image',NULL,1200,1200,221100,NULL,NULL,NULL,'2022-08-17 04:16:34','2022-08-17 04:16:36','2022-08-17 04:16:36'),(141998,1,1,17875,'22_08-Ekka-Marketing-Website5.jpg','image',NULL,5208,3125,1773572,NULL,NULL,NULL,'2022-08-18 07:06:06','2022-08-18 07:06:09','2022-08-18 07:06:09'),(142009,1,1,17875,'22_07-YCN-Marketing-Website-3.jpg','image',NULL,3125,3125,549175,NULL,NULL,NULL,'2022-08-18 07:17:57','2022-08-18 07:17:59','2022-08-18 07:17:59'),(142011,1,1,17875,'22_07-YCN-Marketing-Website-4.jpg','image',NULL,4000,2667,2185360,NULL,NULL,NULL,'2022-08-18 07:21:04','2022-08-18 07:21:07','2022-08-18 07:21:07'),(142014,1,1,17875,'22_07-YCN-Marketing-Website-5.jpg','image',NULL,3125,3125,635257,NULL,NULL,NULL,'2022-08-18 07:24:47','2022-08-18 07:24:49','2022-08-18 07:24:49'),(142252,1,1,17934,'22_09-RTA-Website-global-img.jpg','image',NULL,5208,3125,699944,NULL,NULL,NULL,'2022-09-12 03:51:59','2022-09-12 03:52:01','2022-09-12 03:52:01'),(142381,1,1,17934,'Ramsay-carousels.jpg','image',NULL,2000,1124,281660,NULL,NULL,NULL,'2022-09-15 06:42:47','2022-09-15 06:42:49','2022-09-15 06:42:49'),(142436,1,1,17934,'iStock-157531192.jpg','image',NULL,5616,3744,6747303,NULL,NULL,NULL,'2022-09-20 00:51:14','2022-09-20 00:51:19','2022-09-20 00:51:19'),(142440,1,1,17934,'iStock-157531192_2022-09-20-005211_dufd.jpg','image',NULL,5616,3744,6747303,NULL,NULL,NULL,'2022-09-20 00:52:14','2022-09-20 00:52:19','2022-09-20 00:52:19'),(142443,1,1,17934,'iStock-157531192_2022-09-20-005338_cntb.jpg','image',NULL,5616,3744,6747303,NULL,NULL,NULL,'2022-09-20 00:53:40','2022-09-20 00:53:44','2022-09-20 00:53:44'),(142449,1,1,17934,'iStock-157531192_2022-09-20-005526_isig.jpg','image',NULL,5616,3744,6747303,NULL,NULL,NULL,'2022-09-20 00:55:28','2022-09-20 00:55:43','2022-09-20 00:55:43'),(142451,1,1,17934,'iStock-157531192_2022-09-20-005553_qwkt.jpg','image',NULL,5616,3744,6747303,NULL,NULL,NULL,'2022-09-20 00:55:55','2022-09-20 00:55:58','2022-09-20 00:55:58'),(142564,1,1,17934,'Untitled_Artwork-10.jpg','image',NULL,1500,1500,356812,NULL,NULL,NULL,'2022-09-20 03:29:37','2022-09-20 03:29:39','2022-09-20 03:29:39'),(142566,1,1,17934,'Untitled_Artwork-10_2022-09-20-032947_cwfz.jpg','image',NULL,1500,1500,356812,NULL,NULL,NULL,'2022-09-20 03:29:48','2022-09-20 03:29:50','2022-09-20 03:29:50'),(142571,1,1,17887,'Meet-marnie.jpg','image',NULL,3072,1536,756814,NULL,NULL,NULL,'2022-09-20 04:38:36','2022-09-20 04:38:39','2022-09-20 04:38:39'),(142595,1,1,17875,'boy-meets-universe-1.jpg','image',NULL,1600,1600,1925369,NULL,NULL,NULL,'2022-09-21 00:48:50','2022-09-21 00:48:53','2022-09-21 00:48:53'),(142596,1,1,17875,'Bullet-Train-Book.jpg','image',NULL,1260,1260,571201,NULL,NULL,NULL,'2022-09-21 00:48:55','2022-09-21 00:48:57','2022-09-21 00:48:57'),(142598,1,1,17875,'stanley-tucci.jpg','image',NULL,1200,1200,330751,NULL,NULL,NULL,'2022-09-21 01:01:33','2022-09-21 01:01:34','2022-09-21 01:01:34'),(142605,1,1,17934,'Meet-Kimi.jpg','image',NULL,3072,1536,925998,NULL,NULL,NULL,'2022-09-28 04:51:45','2022-09-28 04:51:47','2022-09-28 04:51:47'),(142648,1,1,17875,'Hazel-col-23.jpg','image',NULL,1280,1280,1615687,NULL,NULL,NULL,'2023-03-09 04:26:36','2022-09-29 02:19:43','2023-03-09 04:26:45'),(142651,1,1,17934,'22_09-QLD-Hydro-Website.jpg','image',NULL,5208,3125,2231849,NULL,NULL,NULL,'2022-10-04 04:48:06','2022-10-04 04:48:12','2022-10-04 04:48:12'),(142652,1,1,17934,'22_09-QLD-Hydro-Website2.jpg','image',NULL,5208,3125,360465,NULL,NULL,NULL,'2022-10-04 04:48:14','2022-10-04 04:48:16','2022-10-04 04:48:16'),(142653,1,1,17934,'22_09-QLD-Hydro-Website3.jpg','image',NULL,5208,3125,377543,NULL,NULL,NULL,'2022-10-04 04:48:18','2022-10-04 04:48:20','2022-10-04 04:48:20'),(142654,1,1,17934,'22_09-QLD-Hydro-Website4.jpg','image',NULL,2604,3125,237051,NULL,NULL,NULL,'2022-10-04 04:48:40','2022-10-04 04:48:41','2022-10-04 04:48:41'),(142659,1,1,17934,'22_09-QLD-Hydro-Website-collat.jpg','image',NULL,5208,3125,724836,NULL,NULL,NULL,'2022-10-04 06:03:26','2022-10-04 05:31:23','2022-10-04 06:03:35'),(142665,1,1,17934,'22_09-QLD-Hydro-Website-collat2.jpg','image',NULL,5208,3125,724880,NULL,NULL,NULL,'2022-10-04 06:04:03','2022-10-04 06:04:05','2022-10-04 06:04:05'),(142674,1,1,17887,'Untitled_Artwork-11.jpg','image',NULL,1500,1500,705466,NULL,NULL,NULL,'2022-10-04 21:57:16','2022-10-04 21:57:19','2022-10-04 21:57:19'),(142702,1,1,17934,'22_09-QLD-Hydro-Website_2022-10-10-055027_yuxp.jpg','image',NULL,5208,3125,718079,NULL,NULL,NULL,'2022-10-10 05:50:28','2022-10-10 05:50:32','2022-10-10 05:50:32'),(142764,1,1,17887,'losing-face.jpg','image',NULL,1600,1600,306189,NULL,NULL,NULL,'2022-10-18 23:37:26','2022-10-18 23:37:27','2022-10-18 23:37:27'),(142775,1,1,17934,'22_10-retainer-image-1-1.jpg','image',NULL,1083,1083,84052,NULL,NULL,NULL,'2022-10-20 00:43:56','2022-10-20 00:43:56','2022-10-20 00:43:56'),(142776,1,1,17934,'22_10-retainer-image-1-2.jpg','image',NULL,2167,1083,88842,NULL,NULL,NULL,'2022-10-20 00:44:46','2022-10-20 00:44:47','2022-10-20 00:44:47'),(142777,1,1,17934,'22_10-retainer-image-1-12.jpg','image',NULL,2167,1083,72276,NULL,NULL,NULL,'2022-10-20 00:45:41','2022-10-20 00:45:42','2022-10-20 00:45:42'),(142802,1,1,17934,'21_QAIHC_EDM.jpg','image',NULL,5208,2708,1453524,NULL,NULL,NULL,'2022-10-21 06:40:09','2022-10-21 06:40:12','2022-10-21 06:40:12'),(142807,1,1,17934,'qld-Hydro_website.jpg','image',NULL,5000,3335,1820013,NULL,NULL,NULL,'2022-10-23 23:47:30','2022-10-23 23:47:34','2022-10-23 23:47:34'),(142810,1,1,17934,'22_09-QLD-Hydro-Website-logos.jpg','image',NULL,5208,3125,263094,NULL,NULL,NULL,'2022-10-23 23:54:54','2022-10-23 23:54:56','2022-10-23 23:54:56'),(142813,1,1,17934,'22_09-QLD-Hydro-Website-image.jpg','image',NULL,5208,3125,1707213,NULL,NULL,NULL,'2022-10-23 23:57:51','2022-10-23 23:57:54','2022-10-23 23:57:54'),(142816,1,1,17934,'22_09-QLD-Hydro-Website-lgoos.jpg','image',NULL,5208,3125,252920,NULL,NULL,NULL,'2022-10-24 00:00:00','2022-10-24 00:00:02','2022-10-24 00:00:02'),(142819,1,1,17934,'22_08-Ekka-Marketing-Website2_2022-10-24-002545_aogm.jpg','image',NULL,5208,3125,6669522,NULL,NULL,NULL,'2022-10-24 00:25:47','2022-10-24 00:25:50','2022-10-24 00:25:50'),(142821,1,1,17875,'NWO_CustomerCharter2022.pdf','pdf',NULL,NULL,NULL,113468,NULL,NULL,NULL,'2022-10-24 00:54:27','2022-10-24 00:54:29','2022-10-24 00:54:29'),(142823,1,1,17934,'22_10-custom-illo-blog-1-1.jpg','image',NULL,1083,1083,108491,NULL,NULL,NULL,'2022-10-24 06:44:43','2022-10-24 01:06:44','2022-10-24 06:44:48'),(142824,1,1,17934,'22_10-custom-illo-blog-1-12.jpg','image',NULL,2167,1083,118370,NULL,NULL,NULL,'2022-10-24 01:07:00','2022-10-24 01:07:01','2022-10-24 01:07:01'),(142830,1,1,17934,'22_10-custom-illo-blog-square.jpg','image',NULL,1083,1083,108529,NULL,NULL,NULL,'2022-10-24 06:45:43','2022-10-24 06:45:44','2022-10-24 06:45:44'),(142831,1,1,17934,'22_10-custom-illo-blog-1-13-header.jpg','image',NULL,2167,1083,130406,NULL,NULL,NULL,'2022-10-24 06:46:06','2022-10-24 06:46:07','2022-10-24 06:46:07'),(142834,1,1,17934,'22_10-OLGR-website_1-1.jpg','image',NULL,5208,3125,912745,NULL,NULL,NULL,'2022-10-25 03:00:10','2022-10-25 03:00:13','2022-10-25 03:00:13'),(142835,1,1,17934,'22_10-OLGR-website_1-12.jpg','image',NULL,2604,3125,284025,NULL,NULL,NULL,'2022-10-25 03:00:30','2022-10-25 03:00:32','2022-10-25 03:00:32'),(142836,1,1,17934,'22_10-OLGR-website_1-13.jpg','image',NULL,2604,3125,335281,NULL,NULL,NULL,'2022-10-25 03:00:33','2022-10-25 03:00:35','2022-10-25 03:00:35'),(142837,1,1,17934,'22_10-OLGR-website_1-14.jpg','image',NULL,5208,3125,708496,NULL,NULL,NULL,'2022-10-25 03:01:25','2022-10-25 03:01:27','2022-10-25 03:01:27'),(142838,1,1,17934,'22_10-OLGR-website_1-1-global.jpg','image',NULL,5208,3125,470259,NULL,NULL,NULL,'2022-10-25 03:29:18','2022-10-25 03:29:20','2022-10-25 03:29:20'),(142868,1,1,17875,'nwo-email-christmas-22.png','image',NULL,2000,500,12918,NULL,NULL,NULL,'2022-10-26 23:41:25','2022-10-26 23:41:25','2022-10-26 23:41:25'),(142869,1,1,17875,'nwo-email-christmas-22-1.png','image',NULL,2000,500,12918,NULL,NULL,NULL,'2022-10-26 23:43:37','2022-10-26 23:43:37','2022-10-26 23:43:37'),(142874,1,1,17875,'Mike-col-23.jpg','image',NULL,1280,1280,1588953,NULL,NULL,NULL,'2023-03-09 04:28:04','2022-10-28 06:47:58','2023-03-09 04:28:11'),(142876,1,1,17934,'22_11-modern-marketing-blog-image-1-12.jpg','image',NULL,2167,1083,85696,NULL,NULL,NULL,'2022-11-03 05:31:49','2022-11-03 05:31:50','2022-11-03 05:31:50'),(142877,1,1,17934,'22_11-modern-marketing-blog-image-1-1.jpg','image',NULL,1083,1083,82865,NULL,NULL,NULL,'2022-11-03 05:32:02','2022-11-03 05:32:02','2022-11-03 05:32:02'),(142887,1,1,17875,'NWO-secret-weapon.pdf','pdf',NULL,NULL,NULL,690985,NULL,NULL,NULL,'2022-11-03 05:51:31','2022-11-03 05:51:35','2022-11-03 05:51:35'),(142911,1,1,17934,'163A4511.jpg','image',NULL,6720,4480,4915967,NULL,NULL,NULL,'2022-11-18 05:55:01','2022-11-07 05:03:01','2022-11-18 05:55:04'),(142924,1,1,17875,'nwo-email-christmas-22-2.png','image',NULL,2000,500,29374,NULL,NULL,NULL,'2022-12-01 07:10:38','2022-11-09 06:43:55','2022-12-01 07:10:57'),(142935,1,1,17934,'22_11-Meet-Liam.jpg','image',NULL,5208,5208,1368467,NULL,NULL,NULL,'2022-11-11 00:38:17','2022-11-11 00:38:19','2022-11-11 00:38:19'),(142939,1,1,17934,'22_11-Meet-Liam-2.jpg','image',NULL,5208,2604,527879,NULL,NULL,NULL,'2022-11-11 00:41:17','2022-11-11 00:41:18','2022-11-11 00:41:18'),(142978,1,1,17934,'8147_DoE-Early-childhood-services-video-2-2-35.jpg','image',NULL,8000,4501,1736132,NULL,NULL,NULL,'2022-11-17 00:06:40','2022-11-17 00:06:42','2022-11-17 00:06:42'),(142984,1,1,17934,'35510008.jpeg','image',NULL,309,500,28427,NULL,NULL,NULL,'2022-11-17 00:13:52','2022-11-17 00:13:52','2022-11-17 00:13:52'),(142985,1,1,17934,'81MjSLTbrjL.jpeg','image',NULL,1535,2327,379274,NULL,NULL,NULL,'2022-11-17 00:15:33','2022-11-17 00:15:34','2022-11-17 00:15:34'),(142994,1,1,17934,'163A4323.jpg','image',NULL,6720,4480,4042062,NULL,NULL,NULL,'2022-11-18 05:51:42','2022-11-18 05:51:52','2022-11-18 05:51:52'),(142995,1,1,17934,'163A4413.jpg','image',NULL,6720,4480,4867962,NULL,NULL,NULL,'2022-11-18 05:52:03','2022-11-18 05:52:06','2022-11-18 05:52:06'),(142996,1,1,17934,'163A4443.jpg','image',NULL,6720,4480,6504455,NULL,NULL,NULL,'2022-11-18 05:52:16','2022-11-18 05:52:19','2022-11-18 05:52:19'),(143000,1,1,17934,'163A3962.jpg','image',NULL,6720,4480,4103110,NULL,NULL,NULL,'2022-11-18 06:01:54','2022-11-18 06:01:57','2022-11-18 06:01:57'),(143003,1,1,17934,'163A4166.jpg','image',NULL,6720,4480,4615153,NULL,NULL,NULL,'2022-11-18 06:03:14','2022-11-18 06:03:17','2022-11-18 06:03:17'),(143023,1,1,17875,'iStock-1215011930.jpg','image',NULL,3864,2577,637381,NULL,NULL,NULL,'2022-11-25 05:33:34','2022-11-25 05:29:52','2022-11-25 05:33:44'),(143029,1,1,17875,'NWO-Christmas_website2.jpg','image',NULL,2250,2250,1577492,NULL,NULL,NULL,'2022-11-29 03:31:52','2022-11-29 03:31:59','2022-11-29 03:31:59'),(143032,1,1,17875,'NWO-Christmas_website-wide1.jpg','image',NULL,4000,2250,2741585,NULL,NULL,NULL,'2022-12-01 06:18:48','2022-12-01 06:18:51','2022-12-01 06:18:51'),(143033,1,1,17875,'NWO-Christmas_website-wide2.jpg','image',NULL,4000,2250,2069904,NULL,NULL,NULL,'2022-12-01 06:18:52','2022-12-01 06:18:55','2022-12-01 06:18:55'),(143034,1,1,17875,'NWO-Christmas_website-wide3.jpg','image',NULL,4000,2250,2975241,NULL,NULL,NULL,'2022-12-01 06:18:57','2022-12-01 06:19:00','2022-12-01 06:19:00'),(143035,1,1,17875,'NWO-Christmas_website-wide4.jpg','image',NULL,4000,2250,2648708,NULL,NULL,NULL,'2022-12-01 06:19:01','2022-12-01 06:19:04','2022-12-01 06:19:04'),(143036,1,1,17875,'NWO-Christmas_website-wide5.jpg','image',NULL,4000,2250,2798378,NULL,NULL,NULL,'2022-12-01 06:19:06','2022-12-01 06:19:10','2022-12-01 06:19:10'),(143037,1,1,17875,'NWO-Christmas_website-wide6.jpg','image',NULL,4000,2250,2485117,NULL,NULL,NULL,'2022-12-01 06:19:12','2022-12-01 06:19:17','2022-12-01 06:19:17'),(143038,1,1,17875,'NWO-Christmas_website-wide7.jpg','image',NULL,4000,2250,1474562,NULL,NULL,NULL,'2022-12-01 06:19:19','2022-12-01 06:19:22','2022-12-01 06:19:22'),(143039,1,1,17875,'NWO-Christmas_website-wide8.jpg','image',NULL,4000,2250,1925831,NULL,NULL,NULL,'2022-12-01 06:19:24','2022-12-01 06:19:27','2022-12-01 06:19:27'),(143040,1,1,17875,'NWO-Christmas_website-wide9.jpg','image',NULL,4000,2250,1677208,NULL,NULL,NULL,'2022-12-01 06:19:29','2022-12-01 06:19:31','2022-12-01 06:19:31'),(143041,1,1,17875,'NWO-Recipe-book-2022.pdf','pdf',NULL,NULL,NULL,8122764,NULL,NULL,NULL,'2022-12-01 06:57:37','2022-12-01 06:57:44','2022-12-01 06:58:12'),(143051,1,1,17875,'nwo-email-christmas-22-3.png','image',NULL,2000,500,29374,NULL,NULL,NULL,'2022-12-01 07:12:41','2022-12-01 07:12:42','2022-12-01 07:12:42'),(143100,1,1,140513,'AboutUsImage.png','image',NULL,1280,1280,1583015,NULL,NULL,NULL,'2023-03-06 01:40:29','2023-03-06 01:40:28','2023-03-06 01:40:31'),(143101,1,1,140513,'MainPageImage-min.png','image',NULL,3000,3000,6203551,NULL,NULL,NULL,'2023-03-06 01:46:12','2023-03-06 01:46:11','2023-03-06 01:46:15'),(143135,1,1,17887,'Meet-bree.jpg','image',NULL,3072,1536,615644,NULL,NULL,NULL,'2023-03-28 06:35:12','2023-03-28 06:35:14','2023-03-28 06:35:14'),(143145,1,1,17887,'23_03-March-emotional-connection-blog-1-1.jpg','image',NULL,1083,1083,102033,NULL,NULL,NULL,'2023-03-29 03:53:49','2023-03-29 03:53:50','2023-03-29 03:53:50'),(143172,1,1,17934,'23_vital-website-assets_1-1.jpg','image',NULL,10417,6250,2082787,NULL,NULL,NULL,'2023-03-31 00:57:12','2023-03-31 00:57:15','2023-03-31 00:57:15'),(143173,1,1,17934,'23_vital-website-assets_1-1_2023-03-31-005724_bewu.jpg','image',NULL,10417,6250,2082787,NULL,NULL,NULL,'2023-03-31 00:57:27','2023-03-31 00:57:31','2023-03-31 00:57:31'),(143174,1,1,17934,'23_vital-website-assets_1-12.jpg','image',NULL,10417,6250,1614506,NULL,NULL,NULL,'2023-03-31 00:57:34','2023-03-31 00:57:38','2023-03-31 00:57:38'),(143175,1,1,17934,'23_vital-website-assets_1-13.jpg','image',NULL,10417,6250,2054882,NULL,NULL,NULL,'2023-03-31 00:57:48','2023-03-31 00:57:51','2023-03-31 00:57:51'),(143176,1,1,17934,'23_vital-website-assets_1-14.jpg','image',NULL,5208,6250,643718,NULL,NULL,NULL,'2023-03-31 00:57:59','2023-03-31 00:58:01','2023-03-31 00:58:01'),(143177,1,1,17934,'23_vital-website-assets_1-15.jpg','image',NULL,10417,6250,1266550,NULL,NULL,NULL,'2023-03-31 00:58:17','2023-03-31 00:58:25','2023-03-31 00:58:25'),(143178,1,1,17934,'23_vital-website-assets_1-16.jpg','image',NULL,10417,6250,2123204,NULL,NULL,NULL,'2023-03-31 00:58:35','2023-03-31 00:58:38','2023-03-31 00:58:38'),(143181,1,1,17934,'23_vital-website-assets_1-13_2023-03-31-010319_jprk.jpg','image',NULL,10417,6250,2054882,NULL,NULL,NULL,'2023-03-31 01:03:22','2023-03-31 01:03:25','2023-03-31 01:03:25'),(143184,1,1,17934,'23_vital-website-assets_1-4.jpg','image',NULL,5208,6250,600886,NULL,NULL,NULL,'2023-03-31 01:05:52','2023-03-31 01:05:54','2023-03-31 01:05:54'),(143187,1,1,17934,'23_vital-website-assets_1-5.jpg','image',NULL,5208,6250,601623,NULL,NULL,NULL,'2023-03-31 01:07:07','2023-03-31 01:07:08','2023-03-31 01:07:08'),(143190,1,1,17934,'23_vital-website-assets_1-6.jpg','image',NULL,5208,6250,618656,NULL,NULL,NULL,'2023-03-31 01:12:42','2023-03-31 01:12:44','2023-03-31 01:12:44');
/*!40000 ALTER TABLE `assets` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `blitz_caches`
--

LOCK TABLES `blitz_caches` WRITE;
/*!40000 ALTER TABLE `blitz_caches` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `blitz_caches` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `blitz_cachetags`
--

LOCK TABLES `blitz_cachetags` WRITE;
/*!40000 ALTER TABLE `blitz_cachetags` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `blitz_cachetags` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `blitz_driverdata`
--

LOCK TABLES `blitz_driverdata` WRITE;
/*!40000 ALTER TABLE `blitz_driverdata` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `blitz_driverdata` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `blitz_elementcaches`
--

LOCK TABLES `blitz_elementcaches` WRITE;
/*!40000 ALTER TABLE `blitz_elementcaches` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `blitz_elementcaches` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `blitz_elementexpirydates`
--

LOCK TABLES `blitz_elementexpirydates` WRITE;
/*!40000 ALTER TABLE `blitz_elementexpirydates` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `blitz_elementexpirydates` VALUES (141725,'2022-07-28 05:00:00'),(142801,'2022-10-28 06:37:00'),(142258,'2023-09-12 06:03:00'),(48011,'2023-09-24 05:39:00'),(142251,'2023-09-28 03:53:00'),(142847,'2023-10-26 02:15:00'),(142875,'2023-10-31 00:55:00');
/*!40000 ALTER TABLE `blitz_elementexpirydates` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `blitz_elementfieldcaches`
--

LOCK TABLES `blitz_elementfieldcaches` WRITE;
/*!40000 ALTER TABLE `blitz_elementfieldcaches` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `blitz_elementfieldcaches` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `blitz_elementqueries`
--

LOCK TABLES `blitz_elementqueries` WRITE;
/*!40000 ALTER TABLE `blitz_elementqueries` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `blitz_elementqueries` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `blitz_elementqueryattributes`
--

LOCK TABLES `blitz_elementqueryattributes` WRITE;
/*!40000 ALTER TABLE `blitz_elementqueryattributes` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `blitz_elementqueryattributes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `blitz_elementquerycaches`
--

LOCK TABLES `blitz_elementquerycaches` WRITE;
/*!40000 ALTER TABLE `blitz_elementquerycaches` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `blitz_elementquerycaches` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `blitz_elementqueryfields`
--

LOCK TABLES `blitz_elementqueryfields` WRITE;
/*!40000 ALTER TABLE `blitz_elementqueryfields` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `blitz_elementqueryfields` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `blitz_elementquerysources`
--

LOCK TABLES `blitz_elementquerysources` WRITE;
/*!40000 ALTER TABLE `blitz_elementquerysources` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `blitz_elementquerysources` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `blitz_hints`
--

LOCK TABLES `blitz_hints` WRITE;
/*!40000 ALTER TABLE `blitz_hints` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `blitz_hints` VALUES (1,188,'index.twig','entry',90,'2022-05-18 02:19:12','2023-04-11 02:07:12','d6c611f1-1259-44c9-b6d7-1887ed8c7a89'),(2,191,'index.twig','',91,'2022-05-18 02:19:12','2023-04-11 02:07:12','8bfe95f4-45f8-4adb-b9d0-74776d2fdf73'),(3,69,'index.twig','',93,'2022-05-18 02:19:12','2023-04-11 02:07:12','72a4ca50-8622-48d2-b7eb-f8b707b1e1ef'),(38,69,'articles/_entry.twig','entry',22,'2022-05-18 02:29:45','2023-04-11 02:01:04','49bd56b6-b7e4-4222-866d-89899be82b0d'),(57,69,'work/index.twig','',11,'2022-05-18 02:32:15','2023-04-11 01:39:18','94b72021-2cd1-469c-aec7-92e3f05f1914'),(64,79,'_partials/_blackSidebar.twig','',19,'2022-05-18 02:34:02','2023-04-11 02:01:50','39c29318-14ac-462f-bd6e-ad4052bb4a1b'),(65,76,'people/_entry.twig','',62,'2022-05-18 02:34:02','2023-04-11 02:01:50','902702a0-8e0b-47e6-ad5b-1614e59921cd'),(117,184,'articles/index.twig','',11,'2022-05-18 02:49:41','2023-04-11 02:04:17','aa6088a9-f621-45f5-b7bd-ec50f2b26d77'),(118,69,'articles/index.twig','',78,'2022-05-18 02:49:41','2023-04-11 02:04:17','9480d5a0-3b97-416b-8433-11ceefd09ce6'),(119,69,'category/index.twig','',13,'2022-05-18 02:49:44','2023-04-11 02:05:41','643e118e-b6b6-4cce-ba43-3def63d565d1'),(34189,120,'dashboard/_components/_dashboardHeader.twig','',4,'2022-05-25 00:44:57','2023-04-05 04:36:59','843d34bc-711b-4b55-a9bb-5539553c9815'),(60092,120,'brandaudit/index.twig','',11,'2022-05-30 07:37:07','2023-02-15 04:31:17','2d8e168b-f6d1-433e-83f6-b3fdc22513de'),(700697,69,'./index.twig','',203,'2022-10-08 04:41:25','2022-12-27 03:04:28','cc3c0c2b-c581-4f83-adf1-d2427749d2f9'),(1418398,220,'people/_entry.twig','',27,'2023-03-06 02:26:27','2023-04-11 02:01:50','fd9d5751-1e59-4b70-adce-ac2607a79795'),(1418478,219,'_vizypartials/_userGrid.twig','',9,'2023-03-06 02:41:08','2023-04-11 01:37:16','b2a7348d-091d-4c11-ae09-e873219aaf25'),(1433497,120,'brandaudit/_components/entry-form.twig','',14,'2023-03-09 03:26:05','2023-03-09 03:26:05','7d1e6922-c2ac-4eab-9c47-78a99da6dddf');
/*!40000 ALTER TABLE `blitz_hints` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `blitz_includes`
--

LOCK TABLES `blitz_includes` WRITE;
/*!40000 ALTER TABLE `blitz_includes` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `blitz_includes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `blitz_ssiincludecaches`
--

LOCK TABLES `blitz_ssiincludecaches` WRITE;
/*!40000 ALTER TABLE `blitz_ssiincludecaches` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `blitz_ssiincludecaches` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `calendarize`
--

LOCK TABLES `calendarize` WRITE;
/*!40000 ALTER TABLE `calendarize` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `calendarize` VALUES (1632,141315,1,68,'2021-04-29 23:00:00','2021-05-08 02:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-16 02:53:13','2021-03-16 02:53:13','88413478-b143-430c-a05e-42cf85f44f3e'),(1633,141317,1,68,'2021-04-29 23:00:00','2021-05-08 02:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-16 02:53:14','2021-03-16 02:53:14','ffe75990-5323-4525-ac7f-0b2eaaf122d5'),(1634,141320,1,68,'2021-04-29 23:00:00','2021-05-08 02:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-16 02:53:49','2021-03-16 02:53:49','acdf7f58-0b50-4d9e-b573-75cd341b65d4'),(1644,142542,1,68,'2021-04-29 23:00:00','2021-05-08 02:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-16 23:22:35','2021-03-16 23:22:35','3cdf4ef5-b72b-4b3b-be8a-e6e2bd574175'),(1646,142544,1,68,'2021-04-29 23:00:00','2021-05-08 02:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-16 23:28:36','2021-03-16 23:28:36','bf29cba5-f2dc-4a9d-8bfe-43c3af420f47'),(1650,142548,1,68,'2021-04-19 09:00:00','2021-04-19 10:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-16 23:32:40','2021-03-16 23:32:40','7b0ece6a-c059-4619-a18a-a6ff749496ad'),(1657,143150,1,68,'2021-04-28 23:30:00','2021-04-29 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17 03:58:50','2021-03-17 03:58:50','8e0aba19-bfd5-46c8-895a-7e10224a605a'),(1660,143153,1,68,'2021-04-28 23:30:00','2021-04-29 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17 04:01:24','2021-03-17 04:01:24','90873e25-7332-490d-a0e1-0c005f2956e0'),(1661,143154,1,68,'2021-04-28 23:30:00','2021-04-29 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17 04:01:27','2021-03-17 04:01:27','451d70fb-cc5d-4fb4-862c-f7e6ee1e0bc1'),(1663,143999,1,68,'2021-05-28 23:30:00','2021-05-29 07:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18 02:30:32','2021-03-18 02:30:32','20a66afa-e9a1-4edb-8581-0c0aecc5273c'),(1664,144000,1,68,'2021-05-28 23:30:00','2021-05-29 07:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18 02:30:32','2021-03-18 02:30:32','7feb2559-ecec-450d-96b2-bb1882ce8ba8'),(1667,144011,1,68,'2021-05-14 00:00:00','2021-05-14 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18 04:10:10','2021-03-18 04:10:10','ff68dfca-3f00-49ea-a803-e8ec283af233'),(1668,144012,1,68,'2021-05-14 00:00:00','2021-05-14 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18 04:10:10','2021-03-18 04:10:10','ff093f33-b556-4a91-9b0c-30f26881d606'),(1669,144013,1,68,'2021-05-14 00:00:00','2021-05-14 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18 04:10:10','2021-03-18 04:10:10','22576438-8b32-4312-a87e-bf4ce31a21f1'),(1670,144015,1,68,'2021-05-20 00:00:00','2021-05-20 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18 04:10:56','2021-03-18 04:11:24','14932f5e-682d-4b84-8ac9-bde0cd6841e2'),(1672,144018,1,68,'2021-05-20 00:00:00','2021-05-25 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18 04:14:50','2021-03-18 04:14:50','623df4fd-0d20-408b-acd2-71465a5990df'),(1673,144019,1,68,'2021-05-20 00:00:00','2021-05-25 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18 04:14:50','2021-03-18 04:14:50','d842c346-5986-4385-8bca-9ecc8af4bf84'),(1674,144020,1,68,'2021-05-20 00:00:00','2021-05-25 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18 04:14:50','2021-03-18 04:14:50','e7dc3212-aab5-49fd-bf22-7134d4743c7c'),(1676,144024,1,68,'2021-05-14 00:00:00','2021-05-14 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18 04:15:23','2021-03-18 04:15:23','9e39de18-a2ca-445b-aa93-e6349365be7d'),(1679,144032,1,68,'2021-05-27 00:00:00','2021-05-27 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18 04:55:45','2021-03-18 04:55:45','325cedf2-d635-4edd-b286-a5cdc2a1d152'),(1680,144033,1,68,'2021-05-27 00:00:00','2021-05-27 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18 04:55:45','2021-03-18 04:55:45','282d76a0-7269-4f96-89d6-bdff29b0521c'),(1682,144036,1,68,'2021-05-11 02:30:00','2021-05-11 03:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18 05:52:24','2021-03-18 05:52:24','970f984a-6f24-44f2-abbb-242cf69797e5'),(1683,144038,1,68,'2021-05-11 02:30:00','2021-05-11 03:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18 05:52:25','2021-03-18 05:52:25','35f1c579-2d82-4ff3-9f2d-6cb18d392316'),(1685,144065,1,68,'2021-05-11 02:30:00','2021-05-11 03:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-19 00:09:10','2021-03-19 00:09:10','49f84e3b-c8f0-4c0b-9b38-3bb54c1cd0cc'),(1686,144066,1,68,'2021-05-27 00:00:00','2021-05-27 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-19 00:10:45','2021-03-19 00:10:45','c353c899-4685-4fed-b9da-a7b3f775f453'),(1687,144067,1,68,'2021-05-27 00:00:00','2021-05-27 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-19 00:10:49','2021-03-19 00:10:49','6ff7c506-f142-47b5-bc06-0a926ea27371'),(1688,144071,1,68,'2021-05-14 00:00:00','2021-05-14 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-19 00:15:57','2021-03-19 00:15:57','ace6d5bd-46fb-44b9-8d5a-b901df11d3d6'),(1689,144072,1,68,'2021-05-14 00:00:00','2021-05-14 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-19 00:16:00','2021-03-19 00:16:00','2beae7f0-53b7-4d7e-aebe-91119e8977f8'),(1690,144073,1,68,'2021-05-20 00:00:00','2021-05-25 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-19 00:19:19','2021-03-19 00:19:19','8c467d21-e107-4ddf-a564-f547409172ec'),(1691,144074,1,68,'2021-05-20 00:00:00','2021-05-25 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-19 00:19:22','2021-03-19 00:19:22','6ae16afd-4dbb-4e2e-ab81-8a93b21f8659'),(1692,144075,1,68,'2021-05-27 00:00:00','2021-05-27 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-19 00:19:50','2021-03-19 00:19:50','4194388e-117c-4763-9a21-c32f3ed37811'),(1693,144076,1,68,'2021-05-14 00:00:00','2021-05-14 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-19 00:20:19','2021-03-19 00:20:19','2633b259-b3ce-4784-8f15-e6b3a7065b99'),(1694,144077,1,68,'2021-05-28 23:30:00','2021-05-29 07:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-19 00:23:25','2021-03-19 00:23:25','d3fbd7aa-8b32-40e0-9c21-ef24004690b9'),(1695,144078,1,68,'2021-05-28 23:30:00','2021-05-29 07:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-19 00:23:28','2021-03-19 00:23:28','f581d577-f238-45ee-8ce9-d142cf9d19e5'),(1696,144079,1,68,'2021-04-21 22:00:00','2021-06-02 23:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-19 01:44:24','2021-03-19 01:44:24','e44f70aa-b651-4706-b9b5-4ed51ba755f0'),(1697,144081,1,68,'2021-04-21 22:00:00','2021-06-02 23:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-19 01:44:25','2021-03-19 01:44:25','dd85c076-9d8a-4cad-b10e-f3e9dd2910d6'),(1698,144082,1,68,'2021-04-21 22:00:00','2021-06-02 23:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-19 01:44:25','2021-03-19 01:44:25','a416b39c-ac16-4c48-8a48-136a818204ad'),(1699,144084,1,68,'2021-04-21 22:00:00','2021-06-02 23:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-19 01:44:26','2021-03-19 01:44:26','c5c6f3c9-ebed-4d3d-8e76-edefd3c0c4c5'),(1700,144085,1,68,'2021-04-21 22:00:00','2021-06-02 23:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-19 03:54:27','2021-03-19 03:54:27','fc71a3ca-b768-467a-9e54-a57ea5b9ae9b'),(1701,144086,1,68,'2021-04-21 22:00:00','2021-06-02 23:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-19 03:56:56','2021-03-19 03:56:56','76090252-40cb-483b-a20c-49de5ea62389'),(1710,144291,1,68,'2021-05-07 22:30:00','2021-05-08 07:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-23 01:54:25','2021-03-23 01:54:25','f58bdc04-55f2-412e-9330-81f2252b8e0f'),(1711,144293,1,68,'2021-05-07 22:30:00','2021-05-08 07:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-23 01:54:26','2021-03-23 01:54:26','beb04196-f4c5-47b4-aade-afa76758f18d'),(1713,144305,1,68,'2021-05-07 22:30:00','2021-05-08 07:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-23 04:22:29','2021-03-23 04:22:29','26376a83-59ec-48a1-b083-856966ee6f07'),(1714,144306,1,68,'2021-05-07 22:30:00','2021-05-08 07:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-23 04:22:31','2021-03-23 04:22:31','25275b14-326d-43b3-b02f-25061f1df67a'),(1721,144331,1,68,'2021-05-07 22:30:00','2021-05-08 07:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-23 04:53:01','2021-03-23 04:53:01','8ec623ac-d208-426d-9609-cc0dbdfe2156'),(1723,144333,1,68,'2021-04-21 22:00:00','2021-06-02 23:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-23 04:54:44','2021-03-23 04:54:44','27872be4-c2ee-47e8-a642-6093d60b97bf'),(1724,144334,1,68,'2021-04-21 22:00:00','2021-06-02 23:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-23 04:54:46','2021-03-23 04:54:46','e5bf7dd0-8dbb-4c08-97ad-cd89826e46ba'),(1728,144490,1,68,'2021-04-13 08:00:00','2021-04-13 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-24 03:39:50','2021-03-24 03:39:50','03cd80ba-1f17-4c7d-aeac-45c022813621'),(1729,144492,1,68,'2021-04-13 08:00:00','2021-04-13 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-24 03:39:51','2021-03-24 03:39:51','db813384-698a-411b-8796-b032194840ea'),(1731,145042,1,68,'2021-04-13 08:00:00','2021-04-13 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-25 22:39:31','2021-03-25 22:39:31','be74cff5-1439-42d3-8246-f70d65a8e8b9'),(1732,145043,1,68,'2021-04-13 08:00:00','2021-04-13 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-25 22:39:34','2021-03-25 22:39:34','6a78220e-439e-4a86-bc60-27e7b64e31bf'),(1735,145121,1,68,'2021-06-09 22:45:00','2021-06-10 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-26 01:00:16','2021-03-26 01:00:16','24efda83-8027-4719-a080-e63d738fded5'),(1736,145123,1,68,'2021-06-09 22:45:00','2021-06-10 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-26 01:00:16','2021-03-26 01:00:16','052bea73-e868-4e61-b6f9-2a6959b43541'),(1737,145124,1,68,'2021-06-21 22:45:00','2021-06-22 06:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-26 01:05:26','2021-03-26 01:05:26','e049a347-456a-4e81-8878-f239b2fa6a73'),(1738,145126,1,68,'2021-06-21 22:45:00','2021-06-22 06:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-26 01:05:27','2021-03-26 01:05:27','fc7fc043-fdef-46ff-b6b3-245930e81bb3'),(1739,145511,1,68,'2021-05-13 08:00:00','2021-05-13 09:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-26 02:33:28','2021-03-26 02:33:28','f3e038a3-27c8-4bab-b0bd-35aa9b53887e'),(1740,145513,1,68,'2021-05-13 08:00:00','2021-05-13 09:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-26 02:33:30','2021-03-26 02:33:30','2e62ca76-94a2-4fd7-8518-7301168d788b'),(1742,145551,1,68,'2021-05-13 08:00:00','2021-05-13 09:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-26 03:45:16','2021-03-26 03:45:16','dcce2a4b-e822-4c0c-9324-815b0e8047ca'),(1743,145552,1,68,'2021-05-13 08:00:00','2021-05-13 09:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-26 03:45:18','2021-03-26 03:45:18','5d704bfa-ec78-469d-9280-a1916a91efa5'),(1745,145554,1,68,'2021-06-09 22:45:00','2021-06-10 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-26 04:24:36','2021-03-26 04:24:36','0f84d026-2625-402c-b987-2b2d7d210154'),(1746,145555,1,68,'2021-06-09 22:45:00','2021-06-10 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-26 04:24:38','2021-03-26 04:24:38','57c07f28-edaf-4753-ae99-f50f3b070ac5'),(1747,145556,1,68,'2021-06-09 22:45:00','2021-06-10 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-26 04:25:00','2021-03-26 04:25:00','c44971f2-b426-4bc4-a917-1cccfce53a5b'),(1749,145558,1,68,'2021-06-21 22:45:00','2021-06-22 06:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-26 04:28:38','2021-03-26 04:28:38','2ba0ee39-0d88-41b8-9994-aa4ad521f9e5'),(1750,145559,1,68,'2021-06-21 22:45:00','2021-06-22 06:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-26 04:28:41','2021-03-26 04:28:41','23b563e3-b176-4185-b3a1-46212795d29e'),(1751,145560,1,68,'2021-06-09 22:45:00','2021-06-10 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-26 04:29:10','2021-03-26 04:29:10','e9f2738b-7d16-448e-a1b7-42cefb006503'),(1753,145562,1,68,'2021-06-21 22:45:00','2021-06-22 06:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-26 04:58:19','2021-03-26 04:58:19','13a34ab6-80a0-4f89-9e9c-01398187723b'),(1754,145563,1,68,'2021-06-21 22:45:00','2021-06-22 06:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-26 04:58:22','2021-03-26 04:58:22','92bc8abe-bb54-4d5c-a9f1-b4b584be075d'),(1755,145564,1,68,'2021-06-21 22:45:00','2021-06-22 06:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-26 04:58:29','2021-03-26 04:58:29','40ee6354-df77-43a0-aa4f-957d28e70b70'),(1757,145566,1,68,'2021-06-09 22:45:00','2021-06-10 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-26 04:59:21','2021-03-26 04:59:21','430cee44-c053-4efc-92f7-c53fe66828c0'),(1758,145567,1,68,'2021-06-09 22:45:00','2021-06-10 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-26 04:59:24','2021-03-26 04:59:24','a41b474c-ee06-4d6e-b3ed-e1576ebede22'),(1764,145573,1,68,'2021-04-21 22:00:00','2021-04-21 23:00:00',0,1,'{\"4\":\"on\"}','onDay','date','2021-06-02 14:00:00','[]','[]','weekly','2021-03-26 05:20:23','2021-03-26 05:20:23','24f9515f-8afb-4d04-92f9-4299ae7515c6'),(1765,145574,1,68,'2021-04-21 22:00:00','2021-04-21 23:00:00',0,1,'{\"4\":\"on\"}','onDay','date','2021-06-02 14:00:00','[]','[]','weekly','2021-03-26 05:20:23','2021-03-26 05:20:23','dd6ef34d-b5bc-42b1-badf-73cafdac0b12'),(1766,145575,1,68,'2021-04-21 22:00:00','2021-04-21 23:00:00',0,1,'{\"4\":\"on\"}','onDay','date','2021-06-02 14:00:00','[]','[]','weekly','2021-03-26 05:20:26','2021-03-26 05:20:26','da7e4317-0d24-420b-a3e5-06388be1ff8c'),(1767,145576,1,68,'2021-04-21 22:00:00','2021-06-02 23:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-26 05:20:58','2021-03-26 05:20:58','1d3491e2-a4f1-4c8b-88be-95521368d230'),(1768,147104,1,68,'2021-04-14 07:30:00','2021-04-14 08:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 05:08:06','2021-03-31 05:08:06','72a7b501-3677-436e-93b2-49825d6e100f'),(1769,147106,1,68,'2021-04-14 07:30:00','2021-04-14 08:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 05:08:07','2021-03-31 05:08:07','ccdad9b3-ef0b-4a96-bf55-d80ba8d72a07'),(1770,147107,1,68,'2021-04-14 09:00:00','2021-04-14 10:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 05:10:25','2021-03-31 22:44:35','e98168cf-3a5c-4e3b-873f-ae86c38ceb84'),(1771,147109,1,68,'2021-04-14 09:00:00','0021-04-14 09:47:52',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 05:10:26','2021-03-31 05:10:26','66ea56d5-34ae-498c-a753-14b81eda6d88'),(1772,147110,1,68,'2021-04-15 02:00:00','2021-04-15 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 05:11:59','2021-03-31 05:11:59','21315744-d095-4f36-9987-ab116ef83db9'),(1773,147112,1,68,'2021-04-15 02:00:00','2021-04-15 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 05:12:00','2021-03-31 05:12:00','86e204e0-bd9e-4541-8e1c-891273cd8875'),(1774,147113,1,68,'2021-03-31 06:00:00','2021-06-30 08:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 05:15:22','2021-03-31 05:15:22','ade970a0-9281-4147-9774-097025714ecc'),(1775,147115,1,68,'2021-03-31 06:00:00','2021-06-30 08:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 05:15:23','2021-03-31 05:15:23','9e124f9e-b583-40e1-8f5c-0a6955914879'),(1776,147116,1,68,'2021-04-28 09:00:00','2021-04-28 10:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 05:15:34','2021-03-31 05:15:34','e9392f1e-cfdc-4f54-b16e-fc4a99d52e8c'),(1777,147118,1,68,'2021-04-28 09:00:00','2021-04-28 10:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 05:15:35','2021-03-31 05:15:35','9c638e68-c604-41e4-b3cb-bee770a958fb'),(1778,147119,1,68,'2021-04-06 03:00:00','2021-06-30 01:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 05:17:26','2021-03-31 05:17:26','a1378c3d-c096-4508-912b-b93e533f58af'),(1779,147121,1,68,'2021-04-06 03:00:00','2021-06-30 01:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 05:17:28','2021-03-31 05:17:28','0b8b8d11-c5ff-4b4e-8d68-fce60d9a37fe'),(1780,147122,1,68,'2021-04-20 02:00:00','2021-06-29 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 05:19:10','2021-03-31 05:19:10','75037ad2-ac73-46bc-a4ba-fda4c2e8fb76'),(1781,147124,1,68,'2021-04-20 02:00:00','2021-06-29 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 05:19:10','2021-03-31 05:19:10','0d9789b6-4772-4468-bbf4-d346afecdc39'),(1782,147125,1,68,'2021-04-12 03:00:00','2021-06-24 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 05:20:49','2021-03-31 05:20:49','d486791c-99ed-4632-a012-4da114f743df'),(1783,147127,1,68,'2021-04-12 03:00:00','2021-06-24 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 05:20:50','2021-03-31 05:20:50','92215f71-80ab-4668-a95e-72f4b2bdf342'),(1784,147128,1,68,'2021-05-05 00:00:00','2021-06-24 01:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 05:22:26','2021-03-31 05:22:26','a2bb7617-9480-4641-9c98-22ffa9569e78'),(1785,147130,1,68,'2021-05-05 00:00:00','2021-06-24 01:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 05:22:27','2021-03-31 05:22:27','261c2fee-fb02-42f2-8d74-7e43dc96de8e'),(1786,147131,1,68,'2021-04-21 23:00:00','2021-06-30 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 05:24:03','2021-03-31 05:24:03','4a803bdb-5155-47ed-848a-39e8c62bbe66'),(1787,147133,1,68,'2021-04-21 23:00:00','2021-06-30 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 05:24:03','2021-03-31 05:24:03','02509523-f3b1-465b-b80f-209a5c7c3f17'),(1788,147134,1,68,'2021-04-22 02:30:00','2021-06-30 02:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 05:25:57','2021-03-31 05:25:57','981571ca-f934-45b0-be31-a90ec7955f3b'),(1789,147136,1,68,'2021-04-22 02:30:00','2021-06-30 02:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 05:25:57','2021-03-31 05:25:57','b2223651-5fa4-4441-83dc-0f9e14c87c84'),(1790,147137,1,68,'2021-04-01 01:00:00','2021-06-30 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 05:28:18','2021-03-31 05:28:18','7601a707-53ad-442b-8a78-c02a0ad407ad'),(1791,147139,1,68,'2021-04-01 01:00:00','2021-06-30 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 05:28:19','2021-03-31 05:28:19','b5545c68-4fb5-4a24-8e6a-705443de3320'),(1792,147140,1,68,'2021-04-21 02:00:00','2021-06-16 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 05:29:51','2021-03-31 05:29:51','f57d0d20-b452-4d70-aa4b-cb304e335c06'),(1793,147142,1,68,'2021-04-21 02:00:00','2021-06-16 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 05:29:52','2021-03-31 05:29:52','918fab64-ec50-43d1-aa7c-bd28a5d01cf6'),(1794,147143,1,68,'2021-05-12 00:00:00','2021-06-29 01:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 05:31:39','2021-03-31 05:31:39','599c6366-4cfe-421c-892a-9829ef71f937'),(1795,147145,1,68,'2021-05-12 00:00:00','2021-06-29 01:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 05:31:40','2021-03-31 05:31:40','1a1f9116-894b-4898-8b6c-e59d3ff4210c'),(1797,148572,1,68,'2021-05-12 00:00:00','2021-06-29 01:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 22:23:55','2021-03-31 22:23:55','6d40f79c-1c54-4c14-9025-940b749ad6d8'),(1798,148573,1,68,'2021-05-12 00:00:00','2021-06-29 01:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 22:23:57','2021-03-31 22:23:57','9d2102df-95df-45f3-915d-1d0c2150d607'),(1800,148575,1,68,'2021-04-21 02:00:00','2021-06-16 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 22:25:27','2021-03-31 22:25:27','22336a2d-4c44-42dc-b248-831f964d9af7'),(1801,148576,1,68,'2021-04-21 02:00:00','2021-06-16 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 22:25:34','2021-03-31 22:25:34','760064f5-2ff8-4f7a-a158-c03481f63186'),(1802,148577,1,68,'2021-04-01 01:00:00','2021-06-30 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 22:26:41','2021-03-31 22:26:41','e97ac998-cc8a-4106-8583-4e681909117c'),(1803,148578,1,68,'2021-04-22 02:30:00','2021-06-30 02:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 22:27:38','2021-03-31 22:27:38','a1af7286-865a-4519-b3e0-523b42ae579b'),(1805,148580,1,68,'2021-04-21 23:00:00','2021-06-30 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 22:28:46','2021-03-31 22:28:46','b96ceaa9-ec00-41a9-9fb0-31db3fa1e217'),(1806,148581,1,68,'2021-04-21 23:00:00','2021-06-30 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 22:28:49','2021-03-31 22:28:49','e33620b1-5b99-482c-b886-2c7cb3ea0b0f'),(1808,148583,1,68,'2021-05-05 00:00:00','2021-06-24 01:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 22:30:20','2021-03-31 22:30:20','9118963e-91df-4497-87fe-d487b1473f60'),(1809,148584,1,68,'2021-05-05 00:00:00','2021-06-24 01:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 22:30:23','2021-03-31 22:30:23','027063c6-30e2-49c8-a8b2-400d23a772f2'),(1811,148586,1,68,'2021-04-12 03:00:00','2021-06-24 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 22:31:41','2021-03-31 22:31:41','38fe2f00-7764-46df-a52c-1aa5f4a176ea'),(1812,148587,1,68,'2021-04-12 03:00:00','2021-06-24 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 22:31:44','2021-03-31 22:31:44','84de119c-48fe-4553-abf2-146b2d8200a8'),(1813,148588,1,68,'2021-04-20 02:00:00','2021-06-29 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 22:34:01','2021-03-31 22:34:01','670fdfcb-46a5-439b-b3d0-0e52f2ee663f'),(1814,148589,1,68,'2021-04-06 03:00:00','2021-06-30 01:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 22:35:01','2021-03-31 22:35:01','f0404152-265d-4630-a52b-f3be1892f2a4'),(1816,148591,1,68,'2021-04-28 09:00:00','2021-04-28 10:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 22:36:17','2021-03-31 22:36:17','aa06018d-0615-4651-888e-4f3a325a1ee0'),(1817,148592,1,68,'2021-04-28 09:00:00','2021-04-28 10:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 22:36:20','2021-03-31 22:36:20','21e65ca8-ed6d-494b-913f-9f3f5831352a'),(1819,148594,1,68,'2021-03-31 06:00:00','2021-06-30 08:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 22:37:44','2021-03-31 22:37:44','7d46ffee-37ea-48af-8951-30258bd13a36'),(1820,148595,1,68,'2021-03-31 06:00:00','2021-06-30 08:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 22:37:47','2021-03-31 22:37:47','c5303c25-3f7f-48e4-975e-ee9c0af5c676'),(1822,148597,1,68,'2021-04-15 02:00:00','2021-04-15 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 22:39:15','2021-03-31 22:39:15','58c6ad33-53fa-47f9-9ee8-44eadb72e129'),(1823,148598,1,68,'2021-04-15 02:00:00','2021-04-15 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 22:39:17','2021-03-31 22:39:17','378b8df8-23bd-4c50-9bb3-4bfb7cc3a73a'),(1824,148599,1,68,'2021-04-14 07:30:00','2021-04-14 08:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 22:41:45','2021-03-31 22:41:45','ca9ead64-14b1-4390-baf3-8f551f8c7ea2'),(1825,148600,1,68,'2021-04-21 23:00:00','2021-06-30 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 22:42:12','2021-03-31 22:42:12','91604d0b-c7c7-47b5-82f5-2a75e306d3ce'),(1826,148601,1,68,'2021-04-14 09:00:00','2021-04-14 10:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 22:44:35','2021-03-31 22:44:35','7ba0752a-4d0f-4783-90f8-d351b8de80ee'),(1828,148760,1,68,'2021-04-14 09:00:00','2021-04-14 10:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 23:47:58','2021-03-31 23:47:58','35a19d2e-0600-4e41-be0f-57fd962d6545'),(1829,148761,1,68,'2021-04-14 09:00:00','2021-04-14 10:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 23:51:20','2021-03-31 23:51:20','a158c422-4d56-4640-a807-3946f6e3775b'),(1831,148763,1,68,'2021-04-21 23:00:00','2021-06-30 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 23:52:55','2021-03-31 23:52:55','00ccd35d-ff0b-4de3-8e6a-a2ebfb3d41cc'),(1833,148765,1,68,'2021-04-21 23:00:00','2021-06-30 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 23:56:35','2021-03-31 23:56:35','ceedbbb5-3553-47f7-9dcd-65ef3c6938f7'),(1834,148766,1,68,'2021-04-21 23:00:00','2021-06-30 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 23:56:37','2021-03-31 23:56:37','b5c753f8-82e0-4bb8-bae4-b5a21b669128'),(1836,148768,1,68,'2021-04-14 07:30:00','2021-04-14 08:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 23:58:05','2021-03-31 23:58:05','104cb3d8-75ff-47a6-9776-1d88a7320963'),(1837,148769,1,68,'2021-04-14 07:30:00','2021-04-14 08:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 23:58:07','2021-03-31 23:58:07','022dab5c-ecbf-45db-b91e-2b9b03c43033'),(1839,148771,1,68,'2021-04-15 02:00:00','2021-04-15 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 23:58:59','2021-03-31 23:58:59','e80ad3d4-2ea5-455d-b3b2-1f4da311e075'),(1840,148772,1,68,'2021-04-15 02:00:00','2021-04-15 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-31 23:59:02','2021-03-31 23:59:02','61ef4b9f-5775-4331-96d2-de0661359bf7'),(1841,148773,1,68,'2021-03-31 06:00:00','2021-06-30 08:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 00:00:15','2021-04-01 00:00:15','71f9de98-f191-4aa1-96d4-880e9f53852e'),(1842,148774,1,68,'2021-04-06 03:00:00','2021-06-30 01:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 00:04:57','2021-04-01 00:04:57','fc83d6ce-26d5-40ff-b5bc-9c1f411c5a88'),(1843,148775,1,68,'2021-04-20 02:00:00','2021-06-29 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 00:07:05','2021-04-01 00:07:05','79e53e7f-ec1f-4383-a8dc-4358a979b779'),(1844,148776,1,68,'2021-04-12 03:00:00','2021-06-24 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 00:09:45','2021-04-01 00:09:45','b6639c93-1bcc-4e5e-bc91-fb18d9379d26'),(1845,148777,1,68,'2021-05-05 00:00:00','2021-06-24 01:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 00:12:33','2021-04-01 00:12:33','1c0e668d-5315-469b-883a-fcca1e0ff801'),(1846,148778,1,68,'2021-04-06 03:00:00','2021-06-30 01:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 00:12:54','2021-04-01 00:12:54','6b3b5a6f-ddc2-4bd7-8eae-499968c8d682'),(1847,148779,1,68,'2021-04-22 02:30:00','2021-06-30 02:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 00:15:30','2021-04-01 00:15:30','e291b67e-524a-4c19-9bb7-46942a095471'),(1848,148780,1,68,'2021-04-01 01:00:00','2021-06-30 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 00:20:17','2021-04-01 00:20:17','922ec968-1f30-4c23-9d1c-60f64b8fc076'),(1849,148781,1,68,'2021-04-21 02:00:00','2021-06-16 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 00:21:19','2021-04-01 00:21:19','63112470-5653-4496-a1d7-b9fd52be1cf0'),(1850,148782,1,68,'2021-05-12 00:00:00','2021-06-29 01:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 00:22:30','2021-04-01 00:22:30','1d84dfe1-acc4-4dfc-8494-9cc7e334accb'),(1851,148783,1,68,'2021-03-31 06:00:00','2021-06-30 08:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 00:23:30','2021-04-01 00:23:30','8763b1dc-4699-4c68-ab82-0a22f3ec859b'),(1852,148784,1,68,'2021-03-31 06:00:00','2021-06-30 08:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 00:23:48','2021-04-01 00:23:48','1278e6ed-1c0f-4d3d-910f-66e3319a26af'),(1853,148785,1,68,'2021-04-28 09:00:00','2021-04-28 10:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 00:25:37','2021-04-01 00:25:37','f22db36c-a198-4d63-9a4a-00076be5e905'),(1855,148790,1,68,'2021-08-31 14:00:00','2021-09-02 14:00:00',1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 01:51:46','2021-04-01 01:51:46','a0a79874-faf8-4247-a2e8-6a2ed9e5a667'),(1856,148791,1,68,'2021-08-31 14:00:00','2021-09-02 14:00:00',1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 01:51:46','2021-04-01 01:51:46','1f7fa499-5406-42b2-8b89-de5a7872846d'),(1859,148797,1,68,'2021-07-20 23:00:00','2021-07-23 07:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 01:58:22','2021-04-01 01:58:22','c5516a41-a96d-4b53-964c-6262fe9df5ad'),(1860,148798,1,68,'2021-07-20 23:00:00','2021-07-23 07:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 01:58:22','2021-04-01 01:58:22','f2950a25-cd80-4fb0-b4db-54143c7c8b8b'),(1862,148803,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:35:16','2021-04-01 02:35:16','edefb748-c0af-4584-a6a1-8b9505132c14'),(1863,148805,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:35:17','2021-04-01 02:35:17','83c2f4d0-b617-4d23-99f1-6c8605507d16'),(1864,148808,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:38:03','2021-04-01 02:38:03','7390b02a-345e-49ae-9c7a-279c559a688d'),(1865,148811,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:38:04','2021-04-01 02:38:04','d18369c8-3104-4f41-a025-ce0d2489d7cd'),(1866,148814,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:38:06','2021-04-01 02:38:06','f09117f9-bfb9-4991-8816-c3cf668fd893'),(1867,148817,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:38:07','2021-04-01 02:38:07','dbbe5592-47d2-4578-8921-968bd39e417f'),(1868,148820,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:38:09','2021-04-01 02:38:09','269bcfe3-1754-40c5-9522-e33e5c600acb'),(1869,148823,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:38:10','2021-04-01 02:38:10','d445f04b-c668-4a42-b2ae-fe2bae3e57f7'),(1870,148826,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:38:12','2021-04-01 02:38:12','77b442c2-2b06-41f9-93cb-82432d49f91d'),(1871,148829,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:38:13','2021-04-01 02:38:13','0a20826b-47bd-4b46-8c3f-5c2e8227a42e'),(1872,148832,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:38:15','2021-04-01 02:38:15','b51e3697-7cb6-47b9-82f4-6c8c8a950438'),(1873,148835,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:38:16','2021-04-01 02:38:16','a8725cac-8691-4253-af6e-4e7663b99074'),(1874,148838,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:38:18','2021-04-01 02:38:18','36969b2a-d6f3-466d-b616-e93cab226a2a'),(1875,148841,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:38:20','2021-04-01 02:38:20','e7751a34-88e0-4745-a2d6-13c62900869c'),(1876,148844,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:38:21','2021-04-01 02:38:21','a60eb6d8-9e8b-4c60-a834-ca93a528bd1e'),(1877,148847,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:38:23','2021-04-01 02:38:23','593d3ef2-f9a7-42b5-8852-febd29ea4315'),(1878,148850,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:38:24','2021-04-01 02:38:24','42c2c075-66ae-4c75-bfd4-5d94354b34ce'),(1879,148853,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:38:26','2021-04-01 02:38:26','69c7f60e-356c-4317-b581-6aeed9d1373c'),(1880,148856,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:38:27','2021-04-01 02:38:27','dc140f68-c5e7-4237-a664-6f0dfe0ef614'),(1881,148859,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:38:29','2021-04-01 02:38:29','a8e4edf2-856c-4f7d-8b85-13a687d323e0'),(1882,148862,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:38:30','2021-04-01 02:38:30','d286073e-82b9-488e-8041-978b30e9de82'),(1883,148865,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:38:32','2021-04-01 02:38:32','954a88b5-cc40-480c-8093-88e22ef04c7f'),(1884,148868,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:38:33','2021-04-01 02:38:33','4269ab55-3d44-4f4c-b159-bc59134e1ab2'),(1885,148871,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:38:34','2021-04-01 02:38:34','d5d71654-7ea2-4096-ade8-5bdbadc05335'),(1886,148874,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:38:36','2021-04-01 02:38:36','447f99d5-6c1c-4811-b1e2-b8b8978c44dc'),(1887,148877,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:38:38','2021-04-01 02:38:38','57727452-d6ca-4694-9994-83fc4ff528b1'),(1888,148880,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:38:39','2021-04-01 02:38:39','7a7befea-7478-4a21-bf12-88639f5cc388'),(1889,148883,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:39:17','2021-04-01 02:39:17','930d660e-b103-4009-9c33-b14f892fa384'),(1890,148886,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:39:18','2021-04-01 02:39:18','f3b63e8c-ddf9-401f-b838-f0bba11b135f'),(1891,148889,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:39:20','2021-04-01 02:39:20','a60872f2-0a09-43c7-ba4c-9d0e6abefd08'),(1892,148892,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:39:21','2021-04-01 02:39:21','43b50514-66c4-475b-a0c1-430bb46f9020'),(1893,148895,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:39:23','2021-04-01 02:39:23','f2dc7c40-f051-45c7-8c44-15191b6e5002'),(1894,148898,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:39:25','2021-04-01 02:39:25','f78c90da-253e-46c4-8876-033541526cc0'),(1895,148901,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:39:27','2021-04-01 02:39:27','7ab866c2-9f88-44fe-8765-6bbc99f34f88'),(1896,148904,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:39:28','2021-04-01 02:39:28','a1736e22-1d79-4483-b751-67c4cc18646f'),(1897,148907,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:39:30','2021-04-01 02:39:30','a1c0fd73-e372-4421-a04c-0934d8c95b1e'),(1898,148910,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:39:31','2021-04-01 02:39:31','df9198b1-91e8-4eac-86fb-f7dda35af03d'),(1899,148913,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:39:32','2021-04-01 02:39:32','a26bd9eb-c0c1-4c5d-a6f1-0d07f245272f'),(1900,148916,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:39:34','2021-04-01 02:39:34','8cfad655-8444-48f9-a038-1806a5fdea00'),(1901,148919,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:39:35','2021-04-01 02:39:35','cc2eb690-87e5-4d8c-955d-fb50410b4d8e'),(1902,148922,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:39:37','2021-04-01 02:39:37','50e92c36-682b-490c-87e7-5d925a5b1f63'),(1903,148925,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:39:38','2021-04-01 02:39:38','61374377-146a-4606-b67b-00ebde3286eb'),(1904,148928,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:39:40','2021-04-01 02:39:40','aeae00f8-f567-4646-aa38-e9480997494d'),(1905,148931,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:39:41','2021-04-01 02:39:41','77f97c3f-8e79-42c1-97d7-1fea0cf9ee4e'),(1906,148934,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:39:43','2021-04-01 02:39:43','177badc8-fbec-43b8-9ecb-47b6bb8651b3'),(1907,148937,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 02:39:44','2021-04-01 02:39:44','d525d8f8-7788-4369-b7ea-83402fe797ff'),(1909,148945,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 04:55:18','2021-04-01 04:55:18','7c7ddb76-c040-446b-b974-5aa775aa6788'),(1910,148946,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 04:55:21','2021-04-01 04:55:21','a23bee8f-1840-4b96-88ce-00624149821f'),(1911,148947,1,68,'2021-04-29 09:00:00','2021-05-05 09:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-01 05:02:34','2021-04-01 05:02:34','c7830af5-f9a9-4c0d-a158-b484c06e213d'),(1912,149336,1,68,'2021-05-14 23:30:00','2021-05-22 02:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-07 00:16:41','2021-04-07 00:16:41','4b3c861e-a379-4fee-b6fe-b995f99dc015'),(1913,149338,1,68,'2021-05-14 23:30:00','2021-05-22 02:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-07 00:16:43','2021-04-07 00:16:43','754895f2-8386-4bb6-9c57-96b7c2843caf'),(1914,150150,1,68,'2021-07-20 23:00:00','2021-07-23 07:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-07 02:34:21','2021-04-07 02:34:21','c4c5d72b-f59f-4397-91d2-18ed74c3b75a'),(1915,150151,1,68,'2021-07-20 23:00:00','2021-07-23 07:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-07 02:34:25','2021-04-07 02:34:25','42ff9fa2-73b6-47a2-8772-ce7bc681c62c'),(1916,150152,1,68,'2021-08-31 14:00:00','2021-09-02 14:00:00',1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-07 02:37:48','2021-04-07 02:37:48','a16b4a6b-deba-4075-abf3-0fef1ff320f5'),(1917,150153,1,68,'2021-08-31 14:00:00','2021-09-02 14:00:00',1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-07 02:38:01','2021-04-07 02:38:01','e87c7206-fc63-4df1-acab-1747a2959de3'),(1919,150155,1,68,'2021-05-14 23:30:00','2021-05-22 02:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-07 02:43:29','2021-04-07 02:43:29','368da25c-dd0a-404a-b7ae-d069305ecfd7'),(1920,150156,1,68,'2021-05-14 23:30:00','2021-05-22 02:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-07 02:43:32','2021-04-07 02:43:32','fd87dfa4-b341-4bb4-8a4a-f025e46db343'),(1922,150163,1,68,'2021-05-31 23:30:00','2021-06-01 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-07 23:59:01','2021-04-07 23:59:01','bfbbcb38-f7ac-4818-9b35-49014325ddea'),(1923,150164,1,68,'2021-05-31 23:30:00','2021-06-01 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-07 23:59:01','2021-04-07 23:59:01','8c67ae69-09f0-4eae-85f2-ba4ff212d9e6'),(1924,150165,1,68,'2021-05-31 23:30:00','2021-06-01 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-07 23:59:10','2021-04-07 23:59:10','5c5283a4-ded2-4ac1-ac60-11196ee50dc2'),(1925,150176,1,68,'2021-05-27 00:00:00','2021-05-27 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-08 04:26:46','2021-04-08 04:26:46','f8d55a2c-f5e9-4e16-9f13-3a5be8b5bca7'),(1926,150177,1,68,'2021-05-20 00:00:00','2021-05-25 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-08 04:27:04','2021-04-08 04:27:04','e38ff04f-b0a5-4314-a94d-96a5bc69851d'),(1927,150178,1,68,'2021-05-14 00:00:00','2021-05-14 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-08 04:27:19','2021-04-08 04:27:19','060e227f-7316-4af7-bb9b-d27e07e997f2'),(1928,150309,1,68,'2021-06-04 22:00:00','2021-06-05 07:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-09 03:04:25','2021-04-09 03:04:42','74a54de3-1416-48fb-ac2c-1b9a15670a83'),(1929,150311,1,68,'2021-06-04 22:00:00','2021-06-01 07:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-09 03:04:27','2021-04-09 03:04:27','aecf349d-b778-4c7d-965a-b775fd4f0366'),(1930,150314,1,68,'2021-06-04 22:00:00','2021-06-05 07:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-09 03:04:44','2021-04-09 03:04:44','f15df3d0-20ff-40a6-8504-865bab7908ad'),(1931,150315,1,68,'2021-10-29 22:00:00','2021-10-30 07:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-09 03:06:04','2021-04-09 03:06:04','b614170a-ff29-474a-9049-917700d88252'),(1932,150317,1,68,'2021-10-29 22:00:00','2021-10-30 07:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-09 03:06:05','2021-04-09 03:06:05','c68d4ae1-44e0-4fb8-b9b7-7286f234995e'),(1933,150325,1,68,'2021-10-29 22:00:00','2021-10-30 07:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-09 03:59:44','2021-04-09 03:59:44','427add2c-7a7a-4d48-aa8a-8ce2f76951f6'),(1934,150326,1,68,'2021-10-29 22:00:00','2021-10-30 07:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-09 03:59:57','2021-04-09 03:59:57','639ca232-df60-48b5-a17d-21f90292d3a2'),(1935,150327,1,68,'2021-06-04 22:00:00','2021-06-05 07:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-09 04:01:34','2021-04-09 04:01:34','e1939533-bad0-4e21-809c-6c1a0582d665'),(1936,150328,1,68,'2021-10-29 22:00:00','2021-10-30 07:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-09 04:01:57','2021-04-09 04:01:57','9d467152-a6ac-4baa-a78a-35a60062d0ea'),(1937,150418,1,68,'2021-04-20 03:30:00','2021-04-20 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-11 23:58:15','2021-04-11 23:58:15','305905d0-1a9e-4918-a000-941cad418d7c'),(1938,150420,1,68,'2021-04-20 03:30:00','2021-04-20 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-11 23:58:16','2021-04-11 23:58:16','06d9a751-da6e-4362-afbb-ce0237687f9d'),(1943,150429,1,68,'2021-04-20 03:30:00','2021-04-20 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-12 00:01:31','2021-04-12 00:01:31','862fe51e-9333-4ebc-81b8-814838f236c6'),(1944,150432,1,68,'2021-04-20 03:30:00','2021-04-20 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-12 00:02:10','2021-04-12 00:02:10','0788f05a-af36-460c-ae90-54ac3a36f53b'),(1945,150483,1,68,'2021-04-20 03:30:00','2021-04-20 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-12 01:22:21','2021-04-12 01:22:21','80900049-6c8f-4d6c-8222-890a35b2898b'),(1947,150485,1,68,'2021-04-20 03:30:00','2021-04-20 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-12 01:30:16','2021-04-12 01:30:16','764050b7-10dd-4ab8-9418-3b2eb3e5e5af'),(1948,150486,1,68,'2021-04-20 03:30:00','2021-04-20 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-12 01:30:38','2021-04-12 01:30:38','78fe56a0-76c3-414d-9c59-b037ac43e867'),(1949,150487,1,68,'2021-04-20 03:30:00','2021-04-20 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-12 01:31:13','2021-04-12 01:31:13','f80ad351-c2d4-4425-849b-98d8cd30d7a0'),(1950,150491,1,68,'2021-04-20 03:30:00','2021-04-20 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-12 02:21:10','2021-04-12 02:21:10','219900d0-bb39-4d26-82c2-d106c0fcecbe'),(1953,150715,1,68,'2021-05-04 08:30:00','2021-05-18 08:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-12 05:42:36','2021-04-12 05:43:15','ad54cddc-252d-463d-b84f-32c22f349ad3'),(1954,150717,1,68,'2021-05-04 08:30:00','2021-05-17 14:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-12 05:42:37','2021-04-12 05:42:37','8a7c6c0b-80d4-41fb-875b-5436e3443215'),(1955,150776,1,68,'2021-05-04 08:30:00','2021-05-18 08:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-12 05:43:16','2021-04-12 05:43:16','cea3b617-7098-422d-af96-996184429fb0'),(1957,150879,1,68,'2021-05-04 08:30:00','2021-05-18 08:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-12 06:36:42','2021-04-12 06:36:42','6144fe70-75fa-4167-95a8-0901c93d0f44'),(1958,150880,1,68,'2021-05-04 08:30:00','2021-05-18 08:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-12 06:36:45','2021-04-12 06:36:45','c40d1b6a-e8d2-431f-9aad-68838002bba8'),(1959,150887,1,68,'2021-05-18 08:00:00','2021-05-18 11:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-13 02:50:33','2021-04-13 02:50:33','c6d7f880-7d41-453f-8f48-62248581c80a'),(1960,150889,1,68,'2021-05-18 08:00:00','2021-05-18 11:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-13 02:50:33','2021-04-13 02:50:33','d18be65a-9dd2-42b8-b50a-757171010c59'),(1962,150891,1,68,'2021-05-18 08:00:00','2021-05-18 11:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-13 05:01:18','2021-04-13 05:01:18','43a5d5b3-f2f2-420a-a925-7008fd4f4047'),(1963,150892,1,68,'2021-05-18 08:00:00','2021-05-18 11:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-13 05:01:35','2021-04-13 05:01:35','3bea152d-cc37-446d-b801-0d9e01c3ee86'),(1964,151155,1,68,'2021-05-19 00:00:00','2021-06-09 00:30:00',0,1,'{\"3\":\"on\"}','onDay','date',NULL,'[]','[]','weekly','2021-04-14 22:41:30','2021-04-14 22:42:53','2a49defe-c1d6-4d37-9fbb-4b23a8adc8b6'),(1965,151156,1,68,'2021-05-05 08:00:00','2021-05-05 09:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-14 23:38:29','2021-04-14 23:38:29','abb8c6a0-8397-4bdc-9149-b78aaf6528b7'),(1966,151158,1,68,'2021-05-05 08:00:00','2021-05-05 09:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-14 23:38:31','2021-04-14 23:38:31','01e0dcfc-637a-4e4e-96c9-74bf7b6eceb7'),(1968,151161,1,68,'2021-05-05 08:00:00','2021-05-05 09:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-15 04:31:17','2021-04-15 04:31:17','fd299ebb-afbf-4d98-a1d0-a80d12353b31'),(1969,151162,1,68,'2021-05-05 08:00:00','2021-05-05 09:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-15 04:31:21','2021-04-15 04:31:21','c32725c1-1a5c-4eb3-bc86-119063ba6343'),(1970,151163,1,68,'2021-05-05 08:00:00','2021-05-05 09:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-15 04:31:49','2021-04-15 04:31:49','e88997ac-30e3-4f99-9575-5113306b27ce'),(1971,151164,1,68,'2021-05-05 08:00:00','2021-05-05 09:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-15 04:33:45','2021-04-15 04:33:45','8b8ad7e3-8f3d-41d6-a813-536155ff9494'),(1973,151166,1,68,'2021-05-05 08:00:00','2021-05-05 09:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-15 04:36:47','2021-04-15 04:36:47','d20da9e1-b30e-4ce9-a0c2-9feda0ed757e'),(1974,151167,1,68,'2021-05-05 08:00:00','2021-05-05 09:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-15 04:36:50','2021-04-15 04:36:50','906bbff1-e198-4fd0-936e-c1f75f84531b'),(1976,151195,1,68,'2021-05-12 08:00:00','2021-05-12 10:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-18 05:46:30','2021-04-18 05:46:30','ab55f4af-aec3-462e-8ec8-e593da6391ba'),(1977,151196,1,68,'2021-05-12 08:00:00','2021-05-12 10:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-18 05:46:30','2021-04-18 05:46:30','10e77ead-608e-45d1-aeff-aaaaf6d30cc3'),(1979,151210,1,68,'2021-05-12 08:00:00','2021-05-12 10:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-18 22:32:00','2021-04-18 22:32:00','e0985adb-9377-45e2-87e4-618fbfa90f0e'),(1980,151211,1,68,'2021-05-12 08:00:00','2021-05-12 10:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-18 22:32:02','2021-04-18 22:32:02','f61356fc-649f-4132-9348-1d23e4481914'),(1981,151212,1,68,'2021-05-04 01:00:00','2021-05-04 02:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-18 22:37:31','2021-04-18 22:37:31','c69985a7-0d7f-4b8d-a594-4f4616b87736'),(1982,151214,1,68,'2021-05-04 01:00:00','2021-05-04 02:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-18 22:37:32','2021-04-18 22:37:32','168b80ae-3e94-4034-999b-cabb047e7170'),(1984,151225,1,68,'2021-05-04 01:00:00','2021-05-04 02:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-19 05:08:23','2021-04-19 05:08:23','fb48e52c-fd0b-45bc-b352-75e7bd4bcfff'),(1985,151226,1,68,'2021-05-04 01:00:00','2021-05-04 02:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-19 05:08:25','2021-04-19 05:08:25','6229cb48-7293-4b03-8366-837e518e2cb7'),(1987,151235,1,68,'2021-05-19 22:30:00','2021-05-20 06:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-20 03:05:10','2021-04-20 03:05:10','dc8409c2-0936-458f-ac12-8ad5e1d3befb'),(1988,151236,1,68,'2021-05-19 22:30:00','2021-05-20 06:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-20 03:05:10','2021-04-20 03:05:10','31d9e5a0-0b49-4c64-861e-3a54530af0b3'),(1989,151237,1,68,'2021-05-19 22:30:00','2021-05-20 06:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-20 03:05:10','2021-04-20 03:05:10','0b71453f-a381-49c1-87a0-7a2412270e0d'),(1991,151241,1,68,'2021-07-07 22:30:00','2021-07-08 06:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-20 03:07:14','2021-04-20 03:07:14','ec0f81c8-6eae-41e7-b806-10c618b1197a'),(1992,151242,1,68,'2021-07-07 22:30:00','2021-07-08 06:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-20 03:07:14','2021-04-20 03:07:14','346c8d39-c98b-4f57-8836-e62be8b19cb2'),(1994,151267,1,68,'2021-07-07 22:30:00','2021-07-08 06:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-20 04:35:33','2021-04-20 04:35:33','2f94b127-73ec-49d0-93aa-4c136e1d3db8'),(1995,151268,1,68,'2021-07-07 22:30:00','2021-07-08 06:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-20 04:35:36','2021-04-20 04:35:36','6ad602a3-974e-42b9-997d-1c231ef83945'),(1997,151270,1,68,'2021-05-19 22:30:00','2021-05-20 06:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-20 04:36:57','2021-04-20 04:36:57','36130241-2381-4689-a6d5-3543afbc22f4'),(1998,151271,1,68,'2021-05-19 22:30:00','2021-05-20 06:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-20 04:36:59','2021-04-20 04:36:59','ba7ef041-e865-4fea-b9ab-73de771d2f31'),(1999,151282,1,68,'2021-04-28 09:00:00','2021-04-28 11:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-20 05:19:52','2021-04-20 05:19:52','3572e420-a75e-4cdf-aa4f-fda6f1889349'),(2000,151284,1,68,'2021-04-28 09:00:00','2021-04-28 11:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-20 05:19:53','2021-04-20 05:19:53','725154f9-1373-4808-b84f-cd1c78cc76d9'),(2001,151454,1,68,'2021-07-23 23:00:00','2021-07-25 06:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-20 06:02:00','2021-04-20 06:02:00','39af3a3c-659f-4f7a-95ea-25ae0e2ee19c'),(2002,151456,1,68,'2021-07-23 23:00:00','2021-07-25 06:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-20 06:02:01','2021-04-20 06:02:01','cd74843b-1e22-4422-b4bc-65ce83f774f5'),(2004,151483,1,68,'2021-07-23 23:00:00','2021-07-25 06:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-21 21:51:52','2021-04-21 21:51:52','a7862125-2d59-4588-9477-d75f8e232503'),(2005,151484,1,68,'2021-07-23 23:00:00','2021-07-25 06:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-21 21:51:55','2021-04-21 21:51:55','02cd3dbc-d23d-4cb6-b087-2f002ccb1854'),(2007,151486,1,68,'2021-04-28 09:00:00','2021-04-28 11:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-22 00:00:57','2021-04-22 00:00:57','6a56846a-9c71-4bd3-8e95-8c893ae0a8f7'),(2008,151487,1,68,'2021-04-28 09:00:00','2021-04-28 11:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-22 00:00:59','2021-04-22 00:00:59','63ba691b-ae9b-499f-b435-8347fb45d00c'),(2009,151534,1,68,'2021-04-27 09:00:00','2021-04-27 10:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-22 01:57:53','2021-04-22 01:57:53','eb5d40a0-b80a-4a4b-b271-da7136c44c5a'),(2010,151536,1,68,'2021-04-27 09:00:00','2021-04-27 10:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-22 01:57:56','2021-04-22 01:57:56','ab2a7dd7-3aac-49d8-a7d4-d6b89d188fb7'),(2012,151767,1,68,'2021-04-27 09:00:00','2021-04-27 10:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-22 05:34:49','2021-04-22 05:34:49','44bab62b-730e-45b3-8cbf-3f1de71bc692'),(2013,151768,1,68,'2021-04-27 09:00:00','2021-04-27 10:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-22 05:34:51','2021-04-22 05:34:51','9c10a92b-7a5d-4774-b3f0-062ecdd8c96b'),(2014,152742,1,68,'2021-05-17 02:00:00','2021-05-17 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-25 23:54:35','2021-04-25 23:54:35','0d613f94-b22b-4240-8588-5a6b6b1295b0'),(2015,152744,1,68,'2021-05-17 02:00:00','2021-05-17 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-25 23:54:37','2021-04-25 23:54:37','446bf507-82f0-4f99-80fb-e8a48a8557fa'),(2016,152745,1,68,'2021-06-18 03:00:00','2021-06-18 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-25 23:56:08','2021-04-25 23:56:08','74328fa9-8f37-491a-9dc6-26b4543abc30'),(2017,152747,1,68,'2021-06-18 03:00:00','2021-06-18 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-25 23:56:09','2021-04-25 23:56:09','e2f1124c-3f3a-458c-bfe7-6a889879792d'),(2018,152748,1,68,'2021-06-18 03:00:00','2021-06-18 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-25 23:56:09','2021-04-25 23:56:09','10efa0db-696b-49a6-ac7d-34f9f7a9128a'),(2019,152750,1,68,'2021-06-18 03:00:00','2021-06-18 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-25 23:56:10','2021-04-25 23:56:10','ea40acd7-4859-4048-9336-29a025e730d0'),(2020,152751,1,68,'2021-07-22 02:00:00','2021-07-22 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-25 23:58:16','2021-04-25 23:58:16','d9581f70-ac60-486a-b36e-43b23cbcec7d'),(2021,152753,1,68,'2021-07-22 02:00:00','2021-07-22 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-25 23:58:17','2021-04-25 23:58:17','4d29102d-9774-4d49-9675-c39e9a01743c'),(2023,152758,1,68,'2021-05-17 02:00:00','2021-05-17 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-26 22:33:46','2021-04-26 22:33:46','70c47369-72c6-46c6-9007-60268f556492'),(2024,152759,1,68,'2021-05-17 02:00:00','2021-05-17 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-26 22:33:50','2021-04-26 22:33:50','0db2e1d3-e2dc-4dbd-8182-500b4b208e9b'),(2025,152760,1,68,'2021-05-17 02:00:00','2021-05-17 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-26 22:34:05','2021-04-26 22:34:05','d99cfc2f-92a2-4a10-bec2-a4f8babee12d'),(2026,152761,1,68,'2021-06-18 03:00:00','2021-06-18 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-26 22:34:46','2021-04-26 22:34:46','77be3652-56e1-40b2-8a09-27a9e25deb8b'),(2027,152762,1,68,'2021-06-18 03:00:00','2021-06-18 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-26 22:35:01','2021-04-26 22:35:01','d3a76973-fff8-4415-8a9f-e7a6c0917f52'),(2028,152763,1,68,'2021-06-18 03:00:00','2021-06-18 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-26 22:37:30','2021-04-26 22:37:30','122beefa-2e71-4b8d-9c9a-bebe3b64348f'),(2029,152764,1,68,'2021-05-17 02:00:00','2021-05-17 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-26 22:41:43','2021-04-26 22:41:43','7306ada0-e8f3-4e5f-8f0e-b44e9455bbd9'),(2030,152765,1,68,'2021-05-17 02:00:00','2021-05-17 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-26 22:45:28','2021-04-26 22:45:28','dc001d0c-91f6-42cc-8db9-85443ec595f6'),(2031,152766,1,68,'2021-05-17 02:00:00','2021-05-17 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-26 22:45:39','2021-04-26 22:45:39','3adf119c-13c2-443b-a5b0-976204677386'),(2033,152768,1,68,'2021-06-18 03:00:00','2021-06-18 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-26 22:49:47','2021-04-26 22:49:47','785365ba-98b6-4f50-96d1-923b397e06ca'),(2034,152769,1,68,'2021-06-18 03:00:00','2021-06-18 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-26 22:49:52','2021-04-26 22:49:52','ad90475f-8467-444a-a115-9bbd9f496c2e'),(2035,152770,1,68,'2021-06-18 03:00:00','2021-06-18 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-26 22:56:29','2021-04-26 22:56:29','fcf3a853-7284-4745-9ff2-9bb413fa6ef1'),(2037,152772,1,68,'2021-07-22 02:00:00','2021-07-22 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-26 23:18:42','2021-04-26 23:18:42','2332dccc-6549-4219-823e-119150b3f56f'),(2038,152773,1,68,'2021-07-22 02:00:00','2021-07-22 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-26 23:18:46','2021-04-26 23:18:46','46001aba-df36-493d-b4c9-3d4fd3e3e6fb'),(2039,152777,1,68,'2021-04-26 14:00:00','2021-05-10 14:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-27 03:32:32','2021-04-27 03:33:04','ef7c133d-67a5-4a11-8ccf-50af41de8c7b'),(2040,152779,1,68,'2021-04-26 14:00:00','2021-04-26 14:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-27 03:32:33','2021-04-27 03:32:33','ce7ad116-a447-4e19-a90f-21ac350de4ba'),(2041,152782,1,68,'2021-04-26 14:00:00','2021-05-10 14:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-27 03:33:05','2021-04-27 03:33:05','cfac1c50-f4e8-49db-af98-091cd9f92fc9'),(2043,153300,1,68,NULL,NULL,1,1,'[]','onDay','date','2022-04-28 14:00:00','[]','[]','daily','2021-04-28 02:05:45','2021-04-29 02:10:13','ef28bb91-1bcd-4b66-9b6d-9cc841b42e2d'),(2044,153301,1,68,NULL,NULL,0,1,'[]','onDay','never',NULL,'[]','[]','daily','2021-04-28 02:05:45','2021-04-28 02:05:45','97697730-b08a-4618-9a1c-5a8f1dafe0a5'),(2046,153317,1,68,'2021-06-03 03:00:00','2021-06-03 05:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-29 00:33:27','2021-04-29 00:33:27','951e0eb1-d902-427e-b84e-fbffd515180c'),(2047,153319,1,68,'2021-06-03 03:00:00','2021-06-03 05:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-29 00:33:28','2021-04-29 00:33:28','7e2e07a8-719d-41b4-b964-4f888b858423'),(2048,153320,1,68,'2021-06-03 03:00:00','2021-06-03 05:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-29 00:33:28','2021-04-29 00:33:28','1408384a-98dd-49e2-83ec-838a0001e04e'),(2049,153322,1,68,'2021-06-03 03:00:00','2021-06-03 05:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-29 00:33:30','2021-04-29 00:33:30','38a00cbf-cc7d-4001-9ea3-9efff70a4ba3'),(2050,153354,1,68,'2021-04-26 14:00:00','2021-05-10 14:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-29 01:56:27','2021-04-29 01:56:27','d7ea3345-6791-47f4-9b61-d836d8c263b4'),(2051,153355,1,68,NULL,NULL,1,1,'[]','onDay','date','2022-04-28 14:00:00','[]','[]','daily','2021-04-29 02:10:13','2021-04-29 02:10:13','32d06bc6-95b4-4d2d-b32a-cf9bcf7aad86'),(2052,153356,1,68,NULL,NULL,1,1,'[]','onDay','date','2022-04-28 14:00:00','[]','[]','daily','2021-04-29 02:10:18','2021-04-29 02:10:18','9af45e62-6e81-4974-833d-df1eaa4ffee6'),(2054,153360,1,68,'2021-06-03 03:00:00','2021-06-03 05:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-29 03:08:56','2021-04-29 03:08:56','11172ac6-352b-4c23-bf9a-becdd56af6d2'),(2055,153361,1,68,'2021-06-03 03:00:00','2021-06-03 05:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-29 03:09:03','2021-04-29 03:09:03','d1e69133-91bf-4d3d-9f12-3f2919177204'),(2056,153974,1,68,'2021-05-25 08:30:00','2021-05-25 10:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-03 00:31:56','2021-05-03 00:31:56','bd7352a5-65ca-4f7e-9cfd-b42dd2f1244d'),(2057,153976,1,68,'2021-05-25 08:30:00','2021-05-25 10:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-03 00:31:57','2021-05-03 00:31:57','cabfd86b-040f-4704-81fc-c2f2023a2322'),(2058,153977,1,68,'2021-05-25 08:30:00','2021-05-25 10:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-03 00:31:58','2021-05-03 00:31:58','1e7a3626-df54-457d-b4f4-16043f48879c'),(2059,153979,1,68,'2021-05-25 08:30:00','2021-05-25 10:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-03 00:31:58','2021-05-03 00:31:58','4a91ad88-b317-49d5-8258-efa50a15d9ba'),(2060,153982,1,68,'2021-05-25 08:30:00','2021-05-25 10:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-03 00:33:54','2021-05-03 00:33:54','7fbcb95d-3acf-4a7d-acfa-915b16aa2166'),(2061,153985,1,68,'2021-05-25 08:30:00','2021-05-25 10:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-03 00:34:22','2021-05-03 00:34:22','6c9340ca-14b5-472c-b857-ff07f16850d3'),(2063,153998,1,68,'2021-05-25 08:30:00','2021-05-25 10:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-04 00:31:36','2021-05-04 00:31:36','6847a9e7-14a5-4b77-8e23-445875a3f961'),(2064,153999,1,68,'2021-05-25 08:30:00','2021-05-25 10:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-04 00:31:39','2021-05-04 00:31:39','cba5bc51-aa32-4430-a259-57fb2065540b'),(2065,154000,1,68,'2021-05-11 09:00:00','2021-05-11 11:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-04 02:32:13','2021-05-04 02:32:13','6a9750a9-06d1-473e-a91e-e525c2efb982'),(2066,154002,1,68,'2021-05-11 09:00:00','2021-05-11 11:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-04 02:32:14','2021-05-04 02:32:14','c17caeac-ad5c-49d4-8224-5dff4e4d50ba'),(2068,154055,1,68,'2021-05-11 09:00:00','2021-05-11 11:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-04 04:52:12','2021-05-04 04:52:12','5f9d2365-edfe-42a7-b260-711736ea96fb'),(2069,154056,1,68,'2021-05-11 09:00:00','2021-05-11 11:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-04 04:52:15','2021-05-04 04:52:15','d444dbeb-8bbb-4e20-9cf2-d534e60304bc'),(2070,154321,1,68,'2021-05-25 08:30:00','2021-05-25 10:45:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-06 23:27:31','2021-05-06 23:27:31','a8b6c66a-77f1-4ada-a432-bee7f79e60db'),(2071,154323,1,68,'2021-05-25 08:30:00','2021-05-25 10:45:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-06 23:27:32','2021-05-06 23:27:32','ec4c1c59-7d0f-482c-bd77-8d935499aae2'),(2072,154324,1,68,'2021-05-25 08:30:00','2021-05-25 10:45:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-06 23:53:20','2021-05-06 23:53:20','ea3c5126-1586-476a-b8ee-e427f8d557f5'),(2074,154436,1,68,'2021-05-17 22:00:00','2021-05-17 23:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-07 01:49:16','2021-05-07 01:49:16','9798933f-fc80-4bd9-8c23-514872932efc'),(2075,154437,1,68,'2021-05-17 22:00:00','2021-05-17 23:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-07 01:49:16','2021-05-07 01:49:16','fbef3e4c-2da9-4015-9bac-d9e147a96170'),(2077,154941,1,68,'2021-05-17 22:00:00','2021-05-17 23:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-07 03:46:48','2021-05-07 03:46:48','561d4a98-07f8-41d0-b53b-3596b440e1ac'),(2078,154942,1,68,'2021-05-17 22:00:00','2021-05-17 23:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-07 03:46:52','2021-05-07 03:46:52','39c95348-5b2f-4e9d-86ec-ae7dd70dc65f'),(2079,156995,1,68,'2021-05-25 08:30:00','2021-05-25 10:45:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-09 22:42:41','2021-05-09 22:42:41','6c5773a3-b79c-40b5-a446-f6b27d3d5b4e'),(2080,157037,1,68,'2021-07-23 23:00:00','2021-07-25 06:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-10 01:07:55','2021-05-10 01:07:55','c19a95d7-1234-402e-9a33-18ff8d494459'),(2081,157040,1,68,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-10 01:26:02','2021-05-10 01:26:02','11e49ae6-ab69-420c-88d4-06042e1fd392'),(2082,157041,1,68,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-10 01:26:02','2021-05-10 01:26:02','eef88169-f7f6-4b02-95c5-22c2407e8920'),(2083,159111,1,68,'2021-05-31 14:00:00','2021-06-07 13:59:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 01:58:03','2021-05-11 01:58:03','9d2c3733-bede-4dcf-a374-2dd2dde4188b'),(2084,159113,1,68,'2021-05-31 14:00:00','2021-06-07 13:59:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 01:58:03','2021-05-11 01:58:03','5f51b376-25c2-4fa1-98f0-1f832a99c18d'),(2086,160121,1,68,'2021-05-31 14:00:00','2021-06-07 13:59:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 02:54:25','2021-05-11 02:54:25','30b33ac0-54a5-4ba6-9a13-3def72e1ecfb'),(2087,160122,1,68,'2021-05-31 14:00:00','2021-06-07 13:59:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 02:54:27','2021-05-11 02:54:27','b6eabf7f-7cfb-4cdb-b953-c6397da34c6a'),(2088,160426,1,68,'2021-05-17 09:00:00','2021-05-17 10:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 04:46:39','2021-05-11 04:46:39','3b9c32ad-3c91-42f7-9e46-a69e6130c707'),(2089,160428,1,68,'2021-05-17 09:00:00','2021-05-17 10:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 04:46:40','2021-05-11 04:46:40','3886bd42-0141-414e-95d8-45b66a9f3822'),(2091,160785,1,68,'2021-05-17 09:00:00','2021-05-17 10:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 04:50:59','2021-05-11 04:50:59','aa04e836-f07d-4c23-aad8-6be7c76f92f7'),(2092,160786,1,68,'2021-05-17 09:00:00','2021-05-17 10:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 04:51:01','2021-05-11 04:51:01','55c8b13d-ca6f-4149-b0a6-f405a7768da6'),(2094,161362,1,68,'2021-05-14 22:30:00','2021-05-15 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 05:48:30','2021-05-11 05:48:30','1dfe2075-d8f2-4840-b974-fd9ea26af129'),(2095,161363,1,68,'2021-05-14 22:30:00','2021-05-15 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 05:48:30','2021-05-11 05:48:30','c14546f2-aef3-4a66-bbe4-6f0b369fcd8d'),(2097,161366,1,68,'2021-05-14 22:30:00','2021-05-15 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 05:59:07','2021-05-11 05:59:07','2116a823-c3d6-4590-894f-5b88f5c94991'),(2098,161367,1,68,'2021-05-14 22:30:00','2021-05-15 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 05:59:09','2021-05-11 05:59:09','cbe007df-487c-45f6-9925-cc1758f4df15'),(2100,161375,1,68,'2021-06-03 09:00:00','2021-06-24 11:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 23:47:22','2021-05-11 23:47:22','d349610a-738e-422b-a840-134fb088ac52'),(2101,161376,1,68,'2021-06-03 09:00:00','2021-06-24 11:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 23:47:22','2021-05-11 23:47:22','2652330d-c553-43d7-b674-88f35da73821'),(2104,161382,1,68,'2021-06-03 23:00:00','2021-06-12 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 23:51:05','2021-05-11 23:51:05','9d498acd-8357-4864-9507-d906ec5ecf84'),(2105,161383,1,68,'2021-06-03 23:00:00','2021-06-12 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 23:51:05','2021-05-11 23:51:05','d2e24f9f-7a27-410c-b97a-5b06d058bd26'),(2106,161384,1,68,'2021-06-03 23:00:00','2021-06-12 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 23:51:05','2021-05-11 23:51:05','92286b53-5435-4363-9eca-2467364d6f2e'),(2108,161387,1,68,'2021-06-22 09:00:00','2021-06-22 10:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 23:53:34','2021-05-11 23:53:34','c0dcf9ae-65e6-4a9c-b1ec-4b18c3f29ed7'),(2109,161388,1,68,'2021-06-22 09:00:00','2021-06-22 10:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 23:53:34','2021-05-11 23:53:34','1c91c808-0576-4574-8c4f-bcb92578a0a3'),(2110,161389,1,68,'2021-06-22 09:00:00','2021-06-22 10:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 23:53:34','2021-05-11 23:53:34','2a578658-501e-44f5-91d9-92bf65fca22e'),(2112,161394,1,68,'2021-07-14 09:00:00','2021-07-14 10:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 23:57:23','2021-05-11 23:57:23','4b593a44-5d54-4741-8bd7-eb5bf6461650'),(2113,161395,1,68,'2021-07-14 09:00:00','2021-07-14 10:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 23:57:23','2021-05-11 23:57:23','d0737351-d297-48ff-b63e-9a08bd10ed36'),(2114,161396,1,68,'2021-07-14 09:00:00','2021-07-14 10:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 23:57:23','2021-05-11 23:57:23','76acf8de-7369-4279-82f8-528e75cdf84f'),(2115,161401,1,68,'2021-05-20 09:00:00','2021-05-20 10:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-12 02:07:20','2021-05-12 02:07:20','7663a394-b66b-456d-8638-489bc99dc612'),(2116,161403,1,68,'2021-05-20 09:00:00','2021-05-20 10:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-12 02:07:21','2021-05-12 02:07:21','a3d64b62-1ba8-400c-a7d9-1f4d81a5256b'),(2118,161405,1,68,'2021-05-20 09:00:00','2021-05-20 10:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-12 02:36:42','2021-05-12 02:36:42','34cc9037-ca6c-4b4e-bbb4-3fa8e5e6ad08'),(2119,161406,1,68,'2021-05-20 09:00:00','2021-05-20 10:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-12 02:36:44','2021-05-12 02:36:44','0adb72dd-eff0-452a-9f9f-7035b58d9c27'),(2120,161407,1,68,'2021-05-20 09:00:00','2021-05-20 10:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-12 02:37:01','2021-05-12 02:37:01','16fc365c-fa1c-4bce-b530-d790814bb480'),(2122,161415,1,68,'2021-05-19 09:00:00','2021-05-19 11:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-12 12:05:45','2021-05-12 12:05:45','7afe0d9b-86bc-4d95-b8a8-6ae1c25efada'),(2123,161416,1,68,'2021-05-19 09:00:00','2021-05-19 11:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-12 12:05:45','2021-05-12 12:05:45','aefb65d2-23b0-4fd7-b5d9-e1af4a01cafc'),(2124,161417,1,68,'2021-05-19 09:00:00','2021-05-19 11:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-12 12:05:45','2021-05-12 12:05:45','2c283870-29da-4f1f-a35a-e147b6ebce5b'),(2125,161419,1,68,'2021-06-03 09:00:00','2021-06-24 11:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-12 23:05:03','2021-05-12 23:05:03','819e3fc4-62c9-419d-9c4d-829f81cf9c75'),(2126,161420,1,68,'2021-06-03 09:00:00','2021-06-24 11:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-12 23:05:08','2021-05-12 23:05:08','63c4bdad-fe8a-4cd8-9acb-835ae389b0de'),(2128,161422,1,68,'2021-06-03 23:00:00','2021-06-12 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-12 23:08:07','2021-05-12 23:08:07','1ef1a002-593f-4f4a-8dec-f9954636c477'),(2129,161423,1,68,'2021-06-03 23:00:00','2021-06-12 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-12 23:08:10','2021-05-12 23:08:10','d963c075-ff90-4188-86b9-7bccc3fee3e0'),(2131,161425,1,68,'2021-06-22 09:00:00','2021-06-22 10:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-12 23:09:51','2021-05-12 23:09:51','9e28e2d5-5f06-4259-8aa3-4d64ef389114'),(2132,161426,1,68,'2021-06-22 09:00:00','2021-06-22 10:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-12 23:09:54','2021-05-12 23:09:54','0d01915e-736b-47f2-a25f-8c863471dc85'),(2133,161427,1,68,'2021-06-03 23:00:00','2021-06-12 03:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-12 23:10:19','2021-05-12 23:10:19','7e052686-aefe-42bf-9a70-4af8aac6513d'),(2134,161428,1,68,'2021-06-03 09:00:00','2021-06-24 11:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-12 23:10:40','2021-05-12 23:10:40','1d6c2160-18ed-4c0f-aaa2-a9f59b4e1e70'),(2135,161429,1,68,'2021-07-14 09:00:00','2021-07-14 10:30:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-12 23:11:22','2021-05-12 23:11:22','948c1c6d-4b95-4116-b548-2002695f39ee'),(2137,161431,1,68,'2021-05-19 09:00:00','2021-05-19 11:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-12 23:13:57','2021-05-12 23:13:57','64c379ff-197e-42ad-b354-49bde5a55fe9'),(2138,161432,1,68,'2021-05-19 09:00:00','2021-05-19 11:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-12 23:14:08','2021-05-12 23:14:08','01db5fac-26d9-40c9-94f7-3bbe690f7c95'),(2140,162037,1,68,'2021-05-27 23:00:00','2021-05-28 01:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-14 00:42:29','2021-05-14 00:42:29','b76e66c9-355d-4036-8906-8d0ffcc489a8'),(2141,162038,1,68,'2021-05-27 23:00:00','2021-05-28 01:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-14 00:42:29','2021-05-14 00:42:29','97025565-604a-453b-89a3-09390659aeb1'),(2143,162041,1,68,'2021-05-27 23:00:00','2021-05-28 01:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-14 00:59:04','2021-05-14 00:59:04','d61a4245-df91-42ea-ba1d-1b4a3cfd1146'),(2144,162042,1,68,'2021-05-27 23:00:00','2021-05-28 01:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-14 00:59:06','2021-05-14 00:59:06','0179159c-54ce-4071-bd41-7fc6eadd6974'),(2146,162053,1,68,'2021-05-27 09:00:00','2021-05-27 10:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-14 05:41:46','2021-05-14 05:41:46','4cda2240-77cc-4900-9832-14075f986647'),(2147,162054,1,68,'2021-05-27 09:00:00','2021-05-27 10:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-14 05:41:46','2021-05-14 05:41:46','9a992bf6-5731-43fc-8305-596558fdfe98'),(2149,162057,1,68,'2021-05-27 09:00:00','2021-05-27 10:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-14 05:43:49','2021-05-14 05:43:49','11cd10c0-b00e-4b21-a53f-6061a670618f'),(2150,162058,1,68,'2021-05-27 09:00:00','2021-05-27 10:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-14 05:43:53','2021-05-14 05:43:53','3ea9ffaf-b4b6-40c8-a64b-de3e381a25b7'),(2151,162099,1,68,'2021-05-25 09:00:00','2021-05-25 11:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-17 06:41:44','2021-05-17 06:41:44','070062d1-be10-43a2-972b-1a8052e7e77b'),(2152,162101,1,68,'2021-05-25 09:00:00','2021-05-25 11:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-17 06:41:45','2021-05-17 06:41:45','7d49eb03-7da3-4dd5-a1dc-a31049037b3a'),(2154,162112,1,68,'2021-05-25 09:00:00','2021-05-25 11:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-18 00:48:23','2021-05-18 00:48:23','9be09ce0-d5f4-4ba4-82c1-23fe006eacaf'),(2155,162113,1,68,'2021-05-25 09:00:00','2021-05-25 11:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-18 00:48:26','2021-05-18 00:48:26','cc104f60-f5d7-4425-8750-714ac9dc38d5'),(2157,162224,1,68,'2021-05-26 02:30:00','2021-05-26 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-18 03:14:56','2021-05-18 03:14:56','f037c17d-7b14-458e-91a6-888cac73d15b'),(2158,162225,1,68,'2021-05-26 02:30:00','2021-05-26 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-18 03:14:56','2021-05-18 03:14:56','c0d57064-c01e-4860-b4b4-51c0c767d1c7'),(2161,162229,1,68,'2021-05-28 02:30:00','2021-05-28 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-18 03:16:59','2021-05-18 03:16:59','743679bc-f049-44a7-b0da-424e7ff3c165'),(2162,162230,1,68,'2021-05-28 02:30:00','2021-05-28 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-18 03:16:59','2021-05-18 03:16:59','e69ee379-93ff-409d-8870-8445071e8f7b'),(2165,162344,1,68,'2021-05-25 09:00:00','2021-05-25 11:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-18 05:44:08','2021-05-18 05:44:08','dfce432e-d562-4215-8db6-550ae5540848'),(2166,162345,1,68,'2021-05-26 02:30:00','2021-05-26 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-18 05:45:56','2021-05-18 05:45:56','7c869429-5536-4b9a-bdaa-20648b15fcfd'),(2167,162346,1,68,'2021-05-26 02:30:00','2021-05-26 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-18 05:45:59','2021-05-18 05:45:59','e639f47c-7316-4e27-80b5-382e242105cb'),(2168,162347,1,68,'2021-05-28 02:30:00','2021-05-28 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-18 05:46:37','2021-05-18 05:46:37','9aafe562-3968-4f8e-a189-56bce58c4e6e'),(2169,162348,1,68,'2021-05-28 02:30:00','2021-05-28 04:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-18 05:46:39','2021-05-18 05:46:39','e736be4d-3908-4ca9-b4ec-246b9d5b58f9'),(2170,163138,1,68,'2021-05-25 04:00:00','2021-05-25 08:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-19 01:53:55','2021-05-19 01:53:55','2244fe3d-22dd-439a-9e65-7bd11e108a4a'),(2171,163140,1,68,'2021-05-25 04:00:00','2021-05-25 08:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-19 01:53:56','2021-05-19 01:53:56','19508333-001a-44d0-8255-848c41a9b460'),(2172,163141,1,68,'2021-05-25 04:00:00','2021-05-25 08:00:00',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-19 02:08:15','2021-05-19 02:08:15','37f1d928-12f8-4c75-9f95-716781d12118');
/*!40000 ALTER TABLE `calendarize` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `categories`
--

LOCK TABLES `categories` WRITE;
/*!40000 ALTER TABLE `categories` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `categories` VALUES (16866,1,NULL,NULL,'2021-05-18 00:31:07','2021-05-18 00:31:07'),(16867,1,NULL,NULL,'2021-05-18 00:31:08','2021-05-18 00:31:08'),(16868,1,NULL,NULL,'2021-05-18 00:31:08','2021-05-18 00:31:08'),(16869,1,NULL,NULL,'2021-05-18 00:31:08','2021-05-18 00:31:08'),(16870,1,NULL,NULL,'2021-05-18 00:31:08','2021-05-18 00:31:08'),(16871,1,NULL,NULL,'2021-05-18 00:31:08','2021-05-18 00:31:08'),(16872,1,NULL,NULL,'2021-05-18 00:31:08','2021-05-18 00:31:08'),(16875,1,NULL,NULL,'2021-05-18 00:31:08','2021-05-18 00:31:08'),(16876,1,NULL,NULL,'2021-05-18 00:31:08','2021-05-18 00:31:08'),(16877,1,NULL,NULL,'2021-05-18 00:31:08','2021-05-18 00:31:08'),(16880,1,NULL,NULL,'2021-05-18 00:31:09','2021-05-18 00:31:09'),(16881,1,NULL,NULL,'2021-05-18 00:31:09','2021-05-18 00:31:09'),(16882,1,NULL,NULL,'2021-05-18 00:31:09','2021-05-18 00:31:09'),(16883,1,NULL,NULL,'2021-05-18 00:31:09','2021-05-18 00:31:09'),(16886,1,NULL,NULL,'2021-05-18 00:31:09','2021-05-18 00:31:09'),(16887,1,NULL,NULL,'2021-05-18 00:31:09','2021-05-18 00:31:09'),(16888,1,NULL,NULL,'2021-05-18 00:31:09','2021-05-18 00:31:09'),(16889,1,NULL,NULL,'2021-05-18 00:31:09','2021-05-18 00:31:09'),(16892,1,NULL,NULL,'2021-05-18 00:31:09','2021-05-18 00:31:09'),(16893,1,NULL,NULL,'2021-05-18 00:31:09','2021-05-18 00:31:09'),(16896,1,NULL,NULL,'2021-05-18 00:31:10','2021-05-18 00:31:10'),(16897,1,NULL,NULL,'2021-05-18 00:31:10','2021-05-18 00:31:10'),(16900,1,NULL,NULL,'2021-05-18 00:31:10','2021-05-18 00:31:10'),(16901,1,NULL,NULL,'2021-05-18 00:31:10','2021-05-18 00:31:10'),(16902,1,NULL,NULL,'2021-05-18 00:31:10','2021-05-18 00:31:10'),(16903,1,NULL,NULL,'2021-05-18 00:31:10','2021-05-18 00:31:10'),(16904,1,NULL,NULL,'2021-05-18 00:31:10','2021-05-18 00:31:10'),(16907,1,NULL,NULL,'2021-05-18 00:31:10','2021-05-18 00:31:10'),(16908,1,NULL,NULL,'2021-05-18 00:31:10','2021-05-18 00:31:10'),(16911,1,NULL,NULL,'2021-05-18 00:31:11','2021-05-18 00:31:11'),(16912,1,NULL,NULL,'2021-05-18 00:31:11','2021-05-18 00:31:11'),(16915,1,NULL,NULL,'2021-05-18 00:31:11','2021-05-18 00:31:11'),(16918,1,NULL,NULL,'2021-05-18 00:31:11','2021-05-18 00:31:11'),(16919,1,NULL,NULL,'2021-05-18 00:31:11','2021-05-18 00:31:11'),(16920,1,NULL,NULL,'2021-05-18 00:31:11','2021-05-18 00:31:11'),(16923,1,NULL,NULL,'2021-05-18 00:31:11','2021-05-18 00:31:11'),(16926,1,NULL,NULL,'2021-05-18 00:31:12','2021-05-18 00:31:12'),(16927,1,NULL,NULL,'2021-05-18 00:31:12','2021-05-18 00:31:12'),(16930,1,NULL,NULL,'2021-05-18 00:31:12','2021-05-18 00:31:12'),(16931,1,NULL,NULL,'2021-05-18 00:31:12','2021-05-18 00:31:12'),(16932,1,NULL,NULL,'2021-05-18 00:31:12','2021-05-18 00:31:12'),(16933,1,NULL,NULL,'2021-05-18 00:31:12','2021-05-18 00:31:12'),(16936,1,NULL,NULL,'2021-05-18 00:31:12','2021-05-18 00:31:12'),(16937,1,NULL,NULL,'2021-05-18 00:31:12','2021-05-18 00:31:12'),(16938,1,NULL,NULL,'2021-05-18 00:31:13','2021-05-18 00:31:13'),(16939,1,NULL,NULL,'2021-05-18 00:31:13','2021-05-18 00:31:13'),(16942,1,NULL,NULL,'2021-05-18 00:31:13','2021-05-18 00:31:13'),(16947,1,NULL,NULL,'2021-05-18 00:31:13','2021-05-18 00:31:13'),(16950,1,NULL,NULL,'2021-05-18 00:31:14','2021-05-18 00:31:14'),(16953,1,NULL,NULL,'2021-05-18 00:31:14','2021-05-18 00:31:14'),(16954,1,NULL,NULL,'2021-05-18 00:31:14','2021-05-18 00:31:14'),(16955,1,NULL,NULL,'2021-05-18 00:31:14','2021-05-18 00:31:14'),(16956,1,NULL,NULL,'2021-05-18 00:31:14','2021-05-18 00:31:14'),(16959,1,NULL,NULL,'2021-05-18 00:31:14','2021-05-18 00:31:14'),(16960,1,NULL,NULL,'2021-05-18 00:31:14','2021-05-18 00:31:14'),(16963,1,NULL,NULL,'2021-05-18 00:31:15','2021-05-18 00:31:15'),(16964,1,NULL,NULL,'2021-05-18 00:31:15','2021-05-18 00:31:15'),(16965,1,NULL,NULL,'2021-05-18 00:31:15','2021-05-18 00:31:15'),(16966,1,NULL,NULL,'2021-05-18 00:31:15','2021-05-18 00:31:15'),(16969,1,NULL,NULL,'2021-05-18 00:31:15','2021-05-18 00:31:15'),(16970,1,NULL,NULL,'2021-05-18 00:31:15','2021-05-18 00:31:15'),(16971,1,NULL,NULL,'2021-05-18 00:31:15','2021-05-18 00:31:15'),(16972,1,NULL,NULL,'2021-05-18 00:31:15','2021-05-18 00:31:15'),(16973,1,NULL,NULL,'2021-05-18 00:31:15','2021-05-18 00:31:15'),(16974,1,NULL,NULL,'2021-05-18 00:31:15','2021-05-18 00:31:15'),(16977,1,NULL,NULL,'2021-05-18 00:31:15','2021-05-18 00:31:15'),(17008,1,NULL,NULL,'2021-05-18 00:31:18','2021-05-18 00:31:18'),(17600,1,NULL,NULL,'2021-05-18 03:20:48','2021-05-18 03:20:48'),(17601,1,NULL,NULL,'2021-05-18 03:20:48','2021-05-18 03:20:48'),(17602,1,NULL,NULL,'2021-05-18 03:20:48','2021-05-18 03:20:48'),(17605,1,NULL,NULL,'2021-05-18 03:20:48','2021-05-18 03:20:48'),(17606,1,NULL,NULL,'2021-05-18 03:20:48','2021-05-18 03:20:48'),(17607,1,NULL,NULL,'2021-05-18 03:20:48','2021-05-18 03:20:48'),(17610,1,NULL,NULL,'2021-05-18 03:20:48','2021-05-18 03:20:48'),(17619,1,NULL,NULL,'2021-05-18 03:20:49','2021-05-18 03:20:49'),(17620,1,NULL,NULL,'2021-05-18 03:20:49','2021-05-18 03:20:49'),(17625,1,NULL,NULL,'2021-05-18 03:20:50','2021-05-18 03:20:50'),(17630,1,NULL,NULL,'2021-05-18 03:20:50','2021-05-18 03:20:50'),(17637,1,NULL,NULL,'2021-05-18 03:20:51','2021-05-18 03:20:51'),(17640,1,NULL,NULL,'2021-05-18 03:20:52','2021-05-18 03:20:52'),(17641,1,NULL,NULL,'2021-05-18 03:20:52','2021-05-18 03:20:52'),(17656,1,NULL,NULL,'2021-05-18 03:20:53','2021-05-18 03:20:53'),(17657,1,NULL,NULL,'2021-05-18 03:20:53','2021-05-18 03:20:53'),(17658,1,NULL,NULL,'2021-05-18 03:20:53','2021-05-18 03:20:53'),(17659,1,NULL,NULL,'2021-05-18 03:20:53','2021-05-18 03:20:53'),(17694,1,NULL,NULL,'2021-05-18 03:20:58','2021-05-18 03:20:58'),(17964,3,NULL,NULL,'2021-06-01 07:14:22','2021-06-01 07:14:22'),(17965,3,NULL,NULL,'2021-06-01 07:14:29','2021-06-01 07:14:29'),(17966,3,NULL,NULL,'2021-06-01 07:14:34','2021-06-01 07:14:34'),(17967,3,NULL,NULL,'2021-06-01 07:14:41','2021-06-01 07:14:41'),(17968,3,NULL,NULL,'2021-06-01 07:14:46','2021-06-01 07:14:46'),(17969,3,NULL,NULL,'2021-06-01 07:14:51','2021-06-01 07:14:51'),(17970,3,NULL,NULL,'2021-06-01 07:14:56','2021-06-01 07:14:56'),(17971,3,NULL,NULL,'2021-06-01 07:15:01','2021-06-01 07:15:01'),(18057,4,NULL,NULL,'2021-06-03 05:58:40','2021-06-03 05:58:40'),(19167,5,NULL,NULL,'2021-06-11 00:30:18','2021-06-11 00:30:18'),(19175,5,NULL,NULL,'2021-06-11 01:36:15','2021-06-11 01:36:15'),(19196,5,NULL,NULL,'2021-06-13 23:20:52','2021-06-13 23:20:52'),(38157,4,NULL,NULL,'2021-09-03 00:13:04','2021-09-03 00:13:04'),(38158,4,NULL,NULL,'2021-09-03 00:13:46','2021-09-03 00:13:46'),(38159,4,NULL,NULL,'2021-09-03 00:13:57','2021-09-03 00:13:57'),(38160,4,NULL,NULL,'2021-09-03 00:14:07','2021-09-03 00:14:07'),(38161,4,NULL,NULL,'2021-09-03 00:14:36','2021-09-03 00:14:36'),(45224,5,NULL,NULL,'2021-09-10 06:08:44','2021-09-10 06:08:44');
/*!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;
INSERT INTO `categorygroups` VALUES (1,1,13,'Resource categories','resourceCategories','end','2021-05-18 00:28:05','2021-05-18 00:28:05',NULL,'1bc6714f-5786-433d-b7dd-879fbc8767b7'),(3,3,16,'Services categories','servicesCategories','end','2021-05-25 06:32:21','2021-05-25 06:32:21',NULL,'cfd21061-ac1a-4fa4-adba-02a314e45cb2'),(4,4,17,'Sector categories','sectorCategories','end','2021-05-25 06:32:34','2021-05-25 06:32:34',NULL,'73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba'),(5,5,22,'Company','company','end','2021-06-11 00:30:06','2021-06-11 00:30:06',NULL,'069a7d0a-be68-4833-9385-e2804d215d07');
/*!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;
INSERT INTO `categorygroups_sites` VALUES (1,1,1,1,'resource-categories/{slug}',NULL,'2021-05-18 00:28:05','2021-05-18 00:28:05','56fce6bc-dbdb-43aa-9dc5-23969f21df09'),(3,3,1,1,'services-categories/{slug}','category/index','2021-05-25 06:32:21','2021-06-21 03:36:15','2c12da70-f4c7-411c-852d-9cf241e7e1fd'),(4,4,1,1,'sector-categories/{slug}','category/index','2021-05-25 06:32:34','2021-10-01 02:06:27','b6dc7e78-3f69-4897-b9ab-2962dee81271'),(5,5,1,1,'brandaudit/company/{slug}','brandaudit/search','2021-06-11 00:30:06','2021-06-11 07:05:22','43fe97db-39eb-4b70-b65d-5de7ae686a9d');
/*!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 (1,1,'fieldLayoutId','2021-04-20 06:32:03',0,1),(1,1,'firstName','2021-04-08 01:43:14',0,1),(1,1,'lastName','2021-04-08 01:43:14',0,1),(1,1,'photoId','2021-11-09 00:16:42',0,1),(16571,1,'enabled','2021-09-10 02:05:36',0,NULL),(16571,1,'postDate','2022-08-12 03:46:46',0,17875),(16571,1,'slug','2021-09-10 02:05:54',0,NULL),(16571,1,'title','2021-09-10 02:05:36',0,NULL),(16828,1,'enabled','2021-09-03 05:07:33',0,NULL),(16828,1,'postDate','2022-08-12 03:47:29',0,17875),(16828,1,'slug','2021-06-03 06:12:30',0,1),(16828,1,'title','2021-09-03 05:07:10',0,NULL),(16828,1,'uri','2021-06-03 06:12:30',0,1),(17603,1,'enabled','2021-07-23 06:19:14',0,NULL),(17603,1,'postDate','2021-05-18 04:15:29',0,1),(17603,1,'uri','2021-07-23 03:36:53',0,1),(17608,1,'enabled','2021-07-23 06:19:14',0,NULL),(17608,1,'postDate','2021-05-18 04:14:57',0,1),(17608,1,'uri','2021-07-23 03:36:53',0,1),(17611,1,'enabled','2021-07-23 06:19:15',0,NULL),(17611,1,'postDate','2021-05-18 04:14:19',0,1),(17611,1,'uri','2021-07-23 03:36:52',0,1),(17613,1,'enabled','2021-07-23 06:19:15',0,NULL),(17613,1,'postDate','2021-05-18 04:13:41',0,1),(17613,1,'uri','2021-07-23 03:36:52',0,1),(17615,1,'enabled','2021-07-23 06:19:15',0,NULL),(17615,1,'postDate','2021-05-18 04:13:08',0,1),(17615,1,'uri','2021-07-23 03:36:52',0,1),(17617,1,'enabled','2021-07-23 06:19:15',0,NULL),(17617,1,'postDate','2021-05-18 04:12:33',0,1),(17617,1,'uri','2021-07-23 03:36:52',0,1),(17621,1,'enabled','2021-07-23 06:19:15',0,NULL),(17621,1,'postDate','2021-05-18 04:11:10',0,1),(17621,1,'uri','2021-07-23 03:36:52',0,1),(17623,1,'authorId','2021-09-22 01:51:29',0,17887),(17623,1,'enabled','2021-09-22 00:02:05',0,17887),(17623,1,'postDate','2021-05-18 04:11:52',0,1),(17623,1,'uri','2021-07-23 03:36:52',0,1),(17626,1,'enabled','2021-07-23 06:19:15',0,NULL),(17626,1,'postDate','2021-05-18 04:10:15',0,1),(17626,1,'uri','2021-07-23 03:36:52',0,1),(17628,1,'enabled','2021-07-23 06:19:16',0,NULL),(17628,1,'postDate','2021-05-18 04:09:35',0,1),(17628,1,'uri','2021-07-23 03:36:52',0,1),(17631,1,'enabled','2021-07-23 06:19:16',0,NULL),(17631,1,'postDate','2021-05-18 04:08:57',0,1),(17631,1,'uri','2021-07-23 03:36:52',0,1),(17633,1,'enabled','2021-07-23 06:19:16',0,NULL),(17633,1,'postDate','2021-05-18 04:08:21',0,1),(17633,1,'uri','2021-07-23 03:36:52',0,1),(17635,1,'enabled','2021-07-23 06:19:16',0,NULL),(17635,1,'postDate','2021-05-18 04:05:43',0,1),(17635,1,'uri','2021-07-23 03:36:51',0,1),(17638,1,'enabled','2021-07-23 06:19:16',0,NULL),(17638,1,'postDate','2021-05-18 04:07:42',0,1),(17638,1,'uri','2021-07-23 03:36:52',0,1),(17642,1,'enabled','2021-07-23 06:19:17',0,NULL),(17642,1,'postDate','2021-05-18 04:06:44',0,1),(17642,1,'uri','2021-07-23 03:36:51',0,1),(17644,1,'authorId','2022-08-08 07:05:22',0,17887),(17644,1,'enabled','2021-09-22 00:02:05',0,17887),(17644,1,'postDate','2021-05-18 04:05:05',0,1),(17644,1,'uri','2021-07-23 03:36:51',0,1),(17646,1,'authorId','2022-08-16 07:22:28',0,17875),(17646,1,'enabled','2022-08-25 04:23:31',0,17934),(17646,1,'postDate','2021-05-18 04:04:32',0,1),(17646,1,'slug','2022-08-17 05:10:50',0,17887),(17646,1,'title','2022-08-25 02:41:38',0,17934),(17646,1,'uri','2021-07-23 03:36:51',0,1),(17648,1,'enabled','2021-07-23 06:19:17',0,NULL),(17648,1,'postDate','2021-05-18 04:03:05',0,1),(17648,1,'uri','2021-07-23 03:36:51',0,1),(17650,1,'authorId','2022-07-18 04:21:58',0,17887),(17650,1,'enabled','2022-07-28 04:53:43',0,17934),(17650,1,'postDate','2021-05-18 04:03:49',0,1),(17650,1,'uri','2021-07-23 03:36:51',0,1),(17652,1,'enabled','2021-07-23 06:19:17',0,NULL),(17652,1,'postDate','2021-05-18 04:02:23',0,1),(17652,1,'uri','2021-07-23 03:36:51',0,1),(17654,1,'authorId','2021-09-22 00:49:41',0,17887),(17654,1,'enabled','2021-09-22 00:02:05',0,17887),(17654,1,'postDate','2021-05-18 04:01:46',0,1),(17654,1,'uri','2021-07-23 03:36:51',0,1),(17660,1,'enabled','2021-09-22 00:02:05',0,17887),(17660,1,'postDate','2021-05-18 04:00:53',0,1),(17660,1,'uri','2021-07-23 03:36:51',0,1),(17662,1,'enabled','2021-07-23 06:19:18',0,NULL),(17662,1,'postDate','2021-05-18 04:00:05',0,1),(17662,1,'uri','2021-07-23 03:36:51',0,1),(17664,1,'enabled','2021-07-23 06:19:18',0,NULL),(17664,1,'postDate','2021-05-18 03:56:55',0,1),(17664,1,'uri','2021-07-23 03:36:51',0,1),(17666,1,'enabled','2021-07-23 06:19:18',0,NULL),(17666,1,'postDate','2021-05-18 03:56:17',0,1),(17666,1,'uri','2021-07-23 03:36:50',0,1),(17668,1,'enabled','2021-07-23 06:19:18',0,NULL),(17668,1,'postDate','2021-05-18 03:55:28',0,1),(17668,1,'uri','2021-07-23 03:36:50',0,1),(17670,1,'enabled','2021-07-23 06:19:19',0,NULL),(17670,1,'postDate','2021-05-18 03:54:13',0,1),(17670,1,'uri','2021-07-23 03:36:50',0,1),(17672,1,'enabled','2021-07-23 06:19:19',0,NULL),(17672,1,'postDate','2021-05-18 03:52:25',0,1),(17672,1,'uri','2021-07-23 03:36:50',0,1),(17674,1,'enabled','2021-07-23 06:19:19',0,NULL),(17674,1,'uri','2021-07-23 03:36:50',0,1),(17676,1,'enabled','2021-07-23 06:19:19',0,NULL),(17676,1,'postDate','2021-05-18 03:50:22',0,1),(17676,1,'uri','2021-07-23 03:36:50',0,1),(17678,1,'authorId','2021-07-23 07:26:56',0,NULL),(17678,1,'enabled','2021-07-23 07:26:56',0,NULL),(17678,1,'postDate','2021-05-18 03:49:52',0,1),(17678,1,'uri','2021-07-23 03:36:50',0,1),(17680,1,'enabled','2021-09-22 00:02:06',0,17887),(17680,1,'postDate','2021-05-18 03:49:00',0,1),(17680,1,'uri','2021-07-23 03:36:50',0,1),(17682,1,'authorId','2021-07-23 06:47:17',0,NULL),(17682,1,'enabled','2021-07-23 06:47:17',0,NULL),(17682,1,'postDate','2021-05-18 03:48:36',0,1),(17682,1,'title','2021-08-13 04:53:52',0,NULL),(17682,1,'uri','2021-07-23 03:36:50',0,1),(17684,1,'authorId','2021-07-30 01:29:29',0,NULL),(17684,1,'enabled','2021-07-23 06:55:08',0,NULL),(17684,1,'postDate','2021-05-18 03:48:02',0,1),(17684,1,'uri','2021-07-23 03:36:50',0,1),(17686,1,'enabled','2021-07-30 02:03:43',0,NULL),(17686,1,'postDate','2021-05-18 03:46:30',0,1),(17686,1,'uri','2021-07-23 03:36:50',0,1),(17688,1,'authorId','2021-07-23 06:33:59',0,NULL),(17688,1,'enabled','2021-07-23 06:33:59',0,NULL),(17688,1,'postDate','2021-05-18 03:46:06',0,1),(17688,1,'uri','2021-07-23 03:36:49',0,1),(17690,1,'enabled','2021-07-30 01:44:40',0,NULL),(17690,1,'postDate','2021-05-18 03:45:31',0,1),(17690,1,'uri','2021-07-23 03:36:49',0,1),(17692,1,'authorId','2021-07-23 06:26:23',0,NULL),(17692,1,'enabled','2021-07-23 06:26:23',0,NULL),(17692,1,'postDate','2021-05-18 03:44:18',0,1),(17692,1,'uri','2021-07-23 03:36:49',0,1),(17875,1,'admin','2021-06-01 07:16:52',0,1),(17875,1,'lastPasswordChangeDate','2021-06-15 04:49:55',0,NULL),(17875,1,'password','2021-06-15 04:49:55',0,NULL),(17875,1,'photoId','2021-11-09 00:00:59',0,1),(17875,1,'verificationCode','2021-06-15 04:49:55',0,NULL),(17875,1,'verificationCodeIssuedDate','2021-06-15 04:49:55',0,NULL),(17881,1,'lastPasswordChangeDate','2022-09-14 06:42:50',0,NULL),(17881,1,'password','2022-09-14 06:42:50',0,NULL),(17881,1,'photoId','2021-11-09 00:16:18',0,1),(17881,1,'verificationCode','2022-09-14 06:42:50',0,NULL),(17881,1,'verificationCodeIssuedDate','2022-09-14 06:42:50',0,NULL),(17887,1,'admin','2022-08-01 06:01:46',0,1),(17887,1,'lastPasswordChangeDate','2021-09-17 06:02:14',0,NULL),(17887,1,'password','2021-09-17 06:02:14',0,NULL),(17887,1,'photoId','2021-11-09 00:03:21',0,1),(17887,1,'verificationCode','2021-09-17 06:02:12',0,NULL),(17887,1,'verificationCodeIssuedDate','2021-09-17 06:02:12',0,NULL),(17893,1,'admin','2021-06-01 07:17:13',0,1),(17893,1,'lastPasswordChangeDate','2021-11-15 06:42:05',0,NULL),(17893,1,'password','2021-11-15 06:42:05',0,NULL),(17893,1,'photoId','2021-11-09 00:11:24',0,1),(17893,1,'verificationCode','2021-11-15 06:42:05',0,NULL),(17893,1,'verificationCodeIssuedDate','2021-11-15 06:42:05',0,NULL),(17899,1,'admin','2021-06-01 07:17:21',0,1),(17899,1,'lastPasswordChangeDate','2022-02-11 00:13:01',0,NULL),(17899,1,'password','2022-02-11 00:13:01',0,NULL),(17899,1,'photoId','2021-11-09 00:12:47',0,1),(17899,1,'verificationCode','2022-02-11 00:13:01',0,NULL),(17899,1,'verificationCodeIssuedDate','2022-02-11 00:13:01',0,NULL),(17921,1,'photoId','2021-11-09 06:10:45',0,1),(17934,1,'lastPasswordChangeDate','2021-08-12 00:05:57',0,NULL),(17934,1,'password','2021-08-12 00:05:57',0,NULL),(17934,1,'photoId','2021-11-09 00:14:13',0,1),(17934,1,'verificationCode','2021-08-12 00:05:57',0,NULL),(17934,1,'verificationCodeIssuedDate','2021-08-12 00:05:57',0,NULL),(17941,1,'photoId','2021-11-09 00:14:42',0,1),(17954,1,'admin','2021-06-01 07:18:28',0,1),(17954,1,'lastPasswordChangeDate','2021-06-01 09:19:04',0,NULL),(17954,1,'password','2021-06-01 09:19:04',0,NULL),(17954,1,'photoId','2021-11-09 00:17:07',0,1),(17954,1,'verificationCode','2021-06-01 09:19:04',0,NULL),(17954,1,'verificationCodeIssuedDate','2021-06-01 09:19:04',0,NULL),(17956,1,'admin','2021-06-01 07:18:37',0,1),(17956,1,'email','2021-11-30 01:23:02',0,17893),(17956,1,'invalidLoginCount','2021-11-30 01:25:31',0,NULL),(17956,1,'invalidLoginWindowStart','2021-11-30 01:25:31',0,NULL),(17956,1,'lastPasswordChangeDate','2021-11-30 01:25:31',0,NULL),(17956,1,'password','2021-11-30 01:25:31',0,NULL),(17956,1,'passwordResetRequired','2021-11-30 01:25:31',0,NULL),(17956,1,'photoId','2021-11-09 00:18:01',0,1),(17956,1,'username','2021-11-30 01:23:02',0,17893),(17956,1,'verificationCode','2021-11-30 01:25:31',0,NULL),(17956,1,'verificationCodeIssuedDate','2021-11-30 01:25:31',0,NULL),(17996,1,'admin','2022-03-24 04:41:02',0,1),(17996,1,'lastPasswordChangeDate','2022-10-24 02:18:35',0,NULL),(17996,1,'password','2022-10-24 02:18:35',0,NULL),(17996,1,'passwordResetRequired','2022-10-24 02:18:35',0,NULL),(17996,1,'photoId','2021-11-09 00:18:25',0,1),(17996,1,'verificationCode','2022-10-24 02:18:35',0,NULL),(17996,1,'verificationCodeIssuedDate','2022-10-24 02:18:35',0,NULL),(18109,1,'enabled','2021-09-03 04:00:26',0,NULL),(18109,1,'title','2021-09-03 04:00:14',0,NULL),(18122,1,'enabled','2021-09-03 03:29:28',0,NULL),(18122,1,'title','2022-08-08 06:40:23',0,17887),(18126,1,'enabled','2021-09-10 07:01:05',0,NULL),(18139,1,'authorId','2022-07-04 01:22:26',0,17934),(18139,1,'enabled','2022-08-30 00:13:41',0,17887),(18139,1,'postDate','2022-07-04 01:22:27',0,17934),(18139,1,'slug','2022-07-07 02:20:26',0,17934),(18139,1,'title','2022-07-13 04:32:09',0,17887),(18142,1,'enabled','2021-09-03 01:35:54',0,NULL),(18142,1,'postDate','2021-07-16 01:50:07',0,1),(18156,1,'enabled','2021-09-03 02:01:01',0,NULL),(18156,1,'postDate','2022-08-12 03:46:53',0,17875),(18164,1,'enabled','2021-09-03 05:58:48',0,NULL),(18164,1,'title','2021-09-10 01:18:35',0,NULL),(18168,1,'enabled','2021-09-03 01:52:38',0,NULL),(18168,1,'postDate','2021-07-16 03:10:46',0,1),(18168,1,'title','2022-08-08 06:30:58',0,17887),(18176,1,'enabled','2022-08-09 00:06:10',0,17875),(19176,1,'lastPasswordChangeDate','2021-06-11 01:37:35',0,NULL),(19176,1,'password','2021-06-11 01:37:35',0,NULL),(19176,1,'verificationCode','2021-06-11 01:37:35',0,NULL),(19176,1,'verificationCodeIssuedDate','2021-06-11 01:37:35',0,NULL),(19181,1,'slug','2021-06-11 01:46:34',0,1),(19181,1,'title','2021-06-11 01:46:34',0,1),(19181,1,'uri','2021-06-11 01:46:34',0,1),(19197,1,'lastPasswordChangeDate','2021-06-13 23:22:33',0,NULL),(19197,1,'password','2021-06-13 23:22:33',0,NULL),(19197,1,'verificationCode','2021-06-13 23:22:33',0,NULL),(19197,1,'verificationCodeIssuedDate','2021-06-13 23:22:33',0,NULL),(19222,1,'title','2021-06-15 22:13:18',0,17875),(20195,1,'title','2022-02-09 23:16:13',0,1),(20379,1,'uri','2021-06-21 04:45:00',0,1),(21297,1,'title','2023-03-15 04:25:54',0,17875),(21898,1,'photoId','2021-11-09 00:11:51',0,1),(22210,1,'slug','2021-07-16 03:13:10',0,1),(22210,1,'title','2021-07-16 03:13:10',0,1),(22210,1,'uri','2021-07-16 03:13:10',0,1),(28040,1,'slug','2021-07-23 05:37:50',0,NULL),(28040,1,'title','2021-07-23 05:37:50',0,NULL),(28040,1,'uri','2021-07-23 05:37:50',0,NULL),(30418,1,'enabled','2021-07-30 01:43:29',0,NULL),(30427,1,'postDate','2022-08-12 03:45:45',0,17875),(30427,1,'slug','2021-08-06 06:46:40',0,NULL),(30427,1,'title','2022-08-08 06:27:50',0,NULL),(30427,1,'uri','2021-08-06 06:46:40',0,NULL),(30433,1,'lastPasswordChangeDate','2021-09-08 04:04:48',0,NULL),(30433,1,'password','2021-09-08 04:04:48',0,NULL),(30433,1,'photoId','2021-11-09 00:15:52',0,1),(30433,1,'verificationCode','2021-09-08 04:04:48',0,NULL),(30433,1,'verificationCodeIssuedDate','2021-09-08 04:04:48',0,NULL),(38121,1,'enabled','2022-01-30 04:05:13',0,1),(38121,1,'slug','2021-08-26 23:31:04',0,1),(38121,1,'title','2021-10-18 06:53:58',0,1),(38121,1,'uri','2021-08-26 23:31:04',0,1),(40501,1,'title','2021-09-03 06:06:16',0,NULL),(40504,1,'postDate','2022-08-12 03:46:35',0,17875),(40504,1,'slug','2021-09-03 06:26:32',0,NULL),(40504,1,'title','2021-09-03 06:26:32',0,NULL),(40504,1,'uri','2021-09-03 06:26:32',0,NULL),(40506,1,'slug','2021-09-03 06:51:22',0,NULL),(40506,1,'title','2021-09-03 06:51:22',0,NULL),(40506,1,'uri','2021-09-03 06:51:22',0,NULL),(44837,1,'slug','2021-09-10 01:04:00',0,NULL),(44837,1,'title','2021-09-10 01:04:03',0,NULL),(44837,1,'uri','2021-09-10 01:04:00',0,NULL),(44841,1,'slug','2021-09-10 01:18:48',0,NULL),(44841,1,'title','2021-09-10 01:18:48',0,NULL),(44841,1,'uri','2021-09-10 01:18:48',0,NULL),(44843,1,'slug','2021-09-10 01:24:09',0,NULL),(44843,1,'title','2021-09-10 01:24:09',0,NULL),(44843,1,'uri','2021-09-10 01:24:09',0,NULL),(44845,1,'slug','2021-09-10 01:29:17',0,NULL),(44845,1,'title','2021-09-10 01:29:17',0,NULL),(44845,1,'uri','2021-09-10 01:29:17',0,NULL),(44849,1,'slug','2021-09-10 01:37:43',0,NULL),(44849,1,'title','2021-09-10 01:37:43',0,NULL),(44849,1,'uri','2021-09-10 01:37:43',0,NULL),(44862,1,'slug','2021-09-10 01:48:11',0,NULL),(44862,1,'title','2021-09-10 01:48:11',0,NULL),(44862,1,'uri','2021-09-10 01:48:11',0,NULL),(44981,1,'postDate','2022-08-12 03:45:04',0,17875),(44981,1,'slug','2021-09-27 02:36:32',0,17934),(44981,1,'title','2021-09-21 06:39:30',0,17934),(44981,1,'uri','2021-09-10 02:07:48',0,NULL),(44983,1,'enabled','2021-09-27 02:02:53',0,17934),(44983,1,'slug','2021-09-10 02:11:42',0,NULL),(44983,1,'title','2021-09-10 02:11:42',0,NULL),(44983,1,'uri','2021-09-10 02:11:42',0,NULL),(44985,1,'enabled','2021-09-27 02:02:40',0,17934),(44985,1,'slug','2021-09-10 02:13:52',0,NULL),(44985,1,'title','2021-09-10 02:13:52',0,NULL),(44985,1,'uri','2021-09-10 02:13:52',0,NULL),(44987,1,'enabled','2021-09-27 02:03:15',0,17934),(44987,1,'slug','2021-09-10 02:19:54',0,NULL),(44987,1,'title','2021-09-10 02:19:54',0,NULL),(44987,1,'uri','2021-09-10 02:19:54',0,NULL),(45214,1,'enabled','2021-09-27 02:03:03',0,17934),(45214,1,'slug','2021-09-10 05:19:27',0,NULL),(45214,1,'title','2021-09-10 05:19:27',0,NULL),(45214,1,'uri','2021-09-10 05:19:27',0,NULL),(45216,1,'enabled','2021-09-27 02:36:56',0,17934),(45216,1,'slug','2021-09-10 05:35:39',0,NULL),(45216,1,'title','2021-09-10 05:35:39',0,NULL),(45216,1,'uri','2021-09-10 05:35:39',0,NULL),(45218,1,'enabled','2021-09-27 02:39:13',0,17934),(45218,1,'slug','2021-09-10 05:50:24',0,NULL),(45218,1,'title','2021-09-10 05:50:24',0,NULL),(45218,1,'uri','2021-09-10 05:50:24',0,NULL),(45220,1,'enabled','2021-09-27 02:02:06',0,17934),(45220,1,'slug','2021-09-10 06:02:31',0,NULL),(45220,1,'title','2021-09-10 06:02:31',0,NULL),(45220,1,'uri','2021-09-10 06:02:31',0,NULL),(45222,1,'enabled','2021-09-27 02:01:51',0,17934),(45222,1,'slug','2021-09-10 06:07:17',0,NULL),(45222,1,'title','2021-09-10 06:07:17',0,NULL),(45222,1,'uri','2021-09-10 06:07:17',0,NULL),(45223,1,'lastName','2021-09-10 06:09:10',0,1),(45223,1,'lastPasswordChangeDate','2021-09-13 04:04:35',0,NULL),(45223,1,'password','2021-09-13 04:04:35',0,NULL),(45223,1,'verificationCode','2021-09-13 04:04:35',0,NULL),(45223,1,'verificationCodeIssuedDate','2021-09-13 04:04:35',0,NULL),(45225,1,'lastPasswordChangeDate','2021-09-13 04:06:38',0,NULL),(45225,1,'password','2021-09-13 04:06:38',0,NULL),(45225,1,'verificationCode','2021-09-13 04:06:38',0,NULL),(45225,1,'verificationCodeIssuedDate','2021-09-13 04:06:38',0,NULL),(45226,1,'lastPasswordChangeDate','2021-09-13 04:07:43',0,NULL),(45226,1,'password','2021-09-13 04:07:43',0,NULL),(45226,1,'verificationCode','2021-09-13 04:07:43',0,NULL),(45226,1,'verificationCodeIssuedDate','2021-09-13 04:07:43',0,NULL),(45298,1,'title','2022-02-08 21:04:18',0,17956),(45346,1,'title','2021-09-28 06:20:01',0,45225),(48003,1,'authorId','2021-09-24 05:39:08',0,17887),(48003,1,'slug','2021-09-27 01:13:47',0,17887),(48003,1,'title','2021-09-27 01:13:47',0,17887),(48011,1,'enabled','2022-10-19 03:57:15',0,17887),(48011,1,'postDate','2022-09-28 06:41:59',0,17887),(48011,1,'slug','2022-09-20 03:10:25',0,17934),(48011,1,'title','2022-09-20 01:04:39',0,17934),(48011,1,'uri','2022-09-20 03:10:25',0,17934),(48262,1,'slug','2021-11-30 00:08:35',0,1),(58762,1,'enabled','2022-02-08 03:37:36',0,1),(58762,1,'slug','2021-10-01 06:45:53',0,NULL),(58762,1,'title','2021-10-01 06:45:53',0,NULL),(58762,1,'uri','2021-10-01 06:45:53',0,NULL),(97259,1,'lastPasswordChangeDate','2022-01-20 03:46:20',0,NULL),(97259,1,'password','2022-01-20 03:46:20',0,NULL),(97259,1,'photoId','2022-01-20 03:48:43',0,17887),(97259,1,'verificationCode','2022-01-20 03:46:20',0,NULL),(97259,1,'verificationCodeIssuedDate','2022-01-20 03:46:20',0,NULL),(139967,1,'postDate','2022-08-15 02:54:41',0,1),(139967,1,'slug','2022-04-21 05:56:44',0,17934),(139967,1,'title','2022-04-21 05:59:35',0,17887),(139967,1,'uri','2022-04-21 05:56:44',0,17934),(140013,1,'enabled','2022-08-12 03:38:45',0,17875),(140013,1,'slug','2022-05-05 23:50:02',0,17934),(140013,1,'title','2022-05-05 23:50:02',0,17934),(140013,1,'uri','2022-05-05 23:50:02',0,17934),(140060,1,'enabled','2022-06-02 03:48:40',0,17934),(140060,1,'slug','2022-05-09 03:59:31',0,17934),(140060,1,'title','2022-05-09 03:59:31',0,17934),(140060,1,'uri','2022-05-09 03:59:31',0,17934),(140246,1,'enabled','2022-08-05 06:08:47',0,1),(140513,1,'fullName','2022-08-08 23:41:44',0,NULL),(140513,1,'lastPasswordChangeDate','2022-08-08 23:41:44',0,NULL),(140513,1,'password','2022-08-08 23:41:44',0,NULL),(140513,1,'passwordResetRequired','2022-08-08 23:41:44',0,NULL),(140513,1,'verificationCode','2022-08-08 23:41:44',0,NULL),(140513,1,'verificationCodeIssuedDate','2022-08-08 23:41:44',0,NULL),(141493,1,'enabled','2022-07-07 02:12:55',0,17934),(141493,1,'postDate','2022-07-05 05:49:47',0,17934),(141493,1,'slug','2022-06-28 01:38:40',0,17934),(141493,1,'title','2022-06-29 04:05:50',0,1),(141503,1,'lastPasswordChangeDate','2022-06-28 01:36:09',0,NULL),(141503,1,'password','2022-06-28 01:36:09',0,NULL),(141503,1,'verificationCode','2022-06-28 01:36:09',0,NULL),(141503,1,'verificationCodeIssuedDate','2022-06-28 01:36:09',0,NULL),(141533,1,'authorId','2023-03-30 23:08:02',0,17887),(141533,1,'enabled','2022-08-25 02:27:46',0,17934),(141533,1,'postDate','2022-06-29 01:50:15',0,1),(141533,1,'slug','2022-06-29 04:05:44',0,17887),(141533,1,'title','2022-06-29 04:05:44',0,17887),(141533,1,'uri','2022-06-29 01:49:56',0,1),(141616,1,'photoId','2022-07-26 05:44:08',0,17887),(141642,1,'lastPasswordChangeDate','2022-10-06 02:00:29',0,NULL),(141642,1,'password','2022-10-06 02:00:29',0,NULL),(141642,1,'passwordResetRequired','2022-10-06 02:00:29',0,NULL),(141642,1,'photoId','2022-08-16 05:35:05',0,17875),(141642,1,'verificationCode','2022-10-06 02:00:29',0,NULL),(141642,1,'verificationCodeIssuedDate','2022-10-06 02:00:29',0,NULL),(141662,1,'slug','2022-08-08 06:42:29',0,17887),(141662,1,'uri','2022-08-08 06:42:29',0,17887),(141725,1,'authorId','2022-07-26 07:04:20',0,17934),(141725,1,'enabled','2022-07-28 04:50:07',0,17934),(141725,1,'postDate','2022-07-28 04:52:59',0,17934),(141725,1,'slug','2022-07-26 07:06:44',0,17934),(141725,1,'title','2022-07-26 07:05:13',0,17934),(141725,1,'uri','2022-07-26 07:06:44',0,17934),(141925,1,'enabled','2022-08-18 07:07:34',0,17875),(141925,1,'postDate','2022-08-15 05:32:55',0,17934),(141925,1,'slug','2022-08-09 04:19:21',0,17934),(141925,1,'title','2022-08-09 04:19:21',0,17934),(141925,1,'uri','2022-08-09 04:19:21',0,17934),(142039,1,'photoId','2022-09-29 02:19:43',0,17887),(142065,1,'slug','2022-08-25 06:04:35',0,17934),(142065,1,'title','2022-08-25 06:04:35',0,17934),(142065,1,'uri','2022-08-25 06:04:35',0,17934),(142250,1,'lastPasswordChangeDate','2022-09-08 06:44:15',0,NULL),(142250,1,'password','2022-09-08 06:44:15',0,NULL),(142250,1,'verificationCode','2022-09-08 06:44:15',0,NULL),(142250,1,'verificationCodeIssuedDate','2022-09-08 06:44:15',0,NULL),(142251,1,'enabled','2022-10-05 03:56:34',0,17934),(142251,1,'postDate','2022-10-05 03:56:34',0,17934),(142251,1,'slug','2022-10-05 03:56:34',0,17934),(142251,1,'title','2022-10-05 03:56:34',0,17934),(142251,1,'uri','2022-09-12 03:46:36',0,17934),(142258,1,'enabled','2022-10-12 06:39:20',0,17887),(142258,1,'postDate','2022-10-12 06:39:20',0,17887),(142258,1,'slug','2022-09-12 05:46:32',0,17934),(142258,1,'title','2022-09-12 05:46:32',0,17934),(142258,1,'uri','2022-09-12 05:46:32',0,17934),(142281,1,'lastPasswordChangeDate','2022-09-14 06:37:11',0,NULL),(142281,1,'password','2022-09-14 06:37:11',0,NULL),(142281,1,'verificationCode','2022-09-14 06:37:11',0,NULL),(142281,1,'verificationCodeIssuedDate','2022-09-14 06:37:11',0,NULL),(142716,1,'lastPasswordChangeDate','2022-10-18 00:36:14',0,NULL),(142716,1,'password','2022-10-18 00:36:14',0,NULL),(142716,1,'passwordResetRequired','2022-10-18 00:36:14',0,NULL),(142716,1,'photoId','2022-10-28 06:47:58',0,17875),(142716,1,'verificationCode','2022-10-18 00:36:14',0,NULL),(142716,1,'verificationCodeIssuedDate','2022-10-18 00:36:14',0,NULL),(142717,1,'authorId','2022-10-18 00:50:59',0,142716),(142717,1,'enabled','2022-10-20 00:46:10',0,17934),(142717,1,'postDate','2022-10-18 00:50:59',0,142716),(142717,1,'slug','2022-10-18 00:50:59',0,142716),(142717,1,'title','2022-10-18 00:50:59',0,142716),(142801,1,'postDate','2022-11-04 04:01:07',0,17875),(142801,1,'slug','2022-10-21 06:11:24',0,17934),(142801,1,'title','2022-10-21 06:11:24',0,17934),(142801,1,'uri','2022-10-21 06:11:24',0,17934),(142833,1,'enabled','2022-10-25 03:24:01',0,17934),(142833,1,'postDate','2022-10-25 03:24:00',0,17934),(142833,1,'slug','2022-10-25 00:13:15',0,17934),(142833,1,'title','2022-10-25 00:13:27',0,17934),(142833,1,'uri','2022-10-25 00:13:15',0,17934),(142840,1,'title','2022-10-25 03:33:48',0,17934),(142847,1,'authorId','2022-11-03 05:32:42',0,17934),(142847,1,'enabled','2022-11-04 03:53:19',0,17934),(142847,1,'postDate','2022-11-04 03:53:19',0,17934),(142847,1,'slug','2022-10-26 02:13:52',0,17934),(142847,1,'title','2022-10-26 02:13:52',0,17934),(142847,1,'uri','2022-10-26 02:13:52',0,17934),(142875,1,'enabled','2023-03-31 01:26:05',0,17887),(142875,1,'postDate','2023-03-30 06:26:20',0,17934),(142875,1,'slug','2023-03-30 06:26:20',0,17934),(142875,1,'title','2023-03-30 06:26:20',0,17934),(142875,1,'uri','2022-10-31 00:51:36',0,17934),(142901,1,'enabled','2022-11-16 22:13:40',0,17887),(142901,1,'expiryDate','2022-11-16 22:13:39',0,17887),(142901,1,'postDate','2022-11-16 22:13:40',0,17887),(142901,1,'slug','2022-11-07 04:10:07',0,17934),(142901,1,'title','2022-11-16 22:15:24',0,17887),(142901,1,'uri','2022-11-07 04:10:07',0,17934),(143021,1,'postDate','2022-12-01 06:59:16',0,17875),(143021,1,'slug','2022-12-01 07:05:23',0,17875),(143021,1,'title','2022-12-01 07:05:07',0,17875),(143021,1,'uri','2022-12-01 07:05:23',0,17875),(143060,1,'enabled','2023-01-09 02:40:27',0,17887),(143060,1,'postDate','2023-01-09 02:25:41',0,17887),(143060,1,'slug','2023-01-09 02:25:39',0,17887),(143060,1,'title','2023-01-09 02:27:18',0,17887),(143060,1,'uri','2023-01-09 02:25:39',0,17887),(143069,1,'slug','2023-01-10 00:57:18',0,17887),(143080,1,'postDate','2023-02-27 02:02:01',0,17875),(143080,1,'slug','2023-02-27 01:59:29',0,17875),(143080,1,'title','2023-02-27 01:59:29',0,17875),(143080,1,'uri','2023-02-27 01:59:29',0,17875),(143139,1,'authorId','2023-03-29 03:44:40',0,17887),(143139,1,'enabled','2023-03-31 01:26:44',0,17887),(143139,1,'postDate','2023-03-29 03:44:42',0,17887),(143139,1,'slug','2023-03-31 03:39:22',0,17887),(143139,1,'title','2023-03-31 03:39:22',0,17887),(143139,1,'uri','2023-03-29 03:42:42',0,17887);
/*!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 (1,1,75,'2022-10-24 23:08:02',0,17875),(1,1,76,'2022-10-24 23:08:02',0,17875),(1,1,81,'2022-10-24 23:08:02',0,17875),(1,1,120,'2022-10-24 23:08:02',0,17875),(1,1,172,'2022-10-24 23:08:02',0,17875),(1,1,183,'2022-10-24 23:08:02',0,17875),(16571,1,69,'2021-05-17 06:58:03',0,1),(16571,1,70,'2021-05-17 07:01:02',0,1),(16571,1,74,'2021-09-10 02:05:36',0,NULL),(16571,1,78,'2021-09-10 02:05:36',0,NULL),(16571,1,79,'2021-09-10 02:05:36',0,NULL),(16571,1,84,'2021-09-10 02:05:36',0,NULL),(16571,1,85,'2021-09-10 02:05:36',0,NULL),(16571,1,164,'2022-08-12 03:46:47',0,17875),(16571,1,195,'2022-05-30 01:45:01',0,1),(16571,1,196,'2022-05-30 01:45:01',0,1),(16571,1,198,'2022-05-30 01:45:01',0,1),(16828,1,59,'2021-07-16 06:04:47',0,1),(16828,1,70,'2021-05-17 23:43:51',0,1),(16828,1,74,'2021-09-03 05:07:10',0,NULL),(16828,1,77,'2021-06-03 05:56:54',0,1),(16828,1,78,'2021-09-03 05:07:10',0,NULL),(16828,1,79,'2021-09-03 05:07:10',0,NULL),(16828,1,80,'2021-07-16 01:17:55',0,1),(16828,1,85,'2021-08-26 23:27:01',0,1),(16828,1,90,'2021-06-03 05:56:54',0,1),(16828,1,164,'2022-08-12 03:47:30',0,17875),(16828,1,195,'2022-05-30 01:44:13',0,1),(16828,1,196,'2022-05-30 01:44:13',0,1),(16828,1,198,'2022-05-30 01:44:13',0,1),(17603,1,69,'2021-07-23 03:36:53',0,1),(17603,1,72,'2021-07-23 03:34:56',0,1),(17603,1,85,'2021-07-23 03:36:53',0,1),(17603,1,164,'2021-07-23 03:36:53',0,1),(17603,1,184,'2021-07-23 03:36:53',0,1),(17608,1,69,'2021-07-23 03:36:53',0,1),(17608,1,72,'2021-07-23 03:34:21',0,1),(17608,1,85,'2021-07-23 03:36:53',0,1),(17608,1,164,'2021-07-23 03:36:53',0,1),(17608,1,184,'2021-07-23 03:36:53',0,1),(17611,1,69,'2021-07-23 03:36:52',0,1),(17611,1,72,'2021-07-23 03:32:57',0,1),(17611,1,85,'2021-07-23 03:36:52',0,1),(17611,1,164,'2021-07-23 03:36:52',0,1),(17611,1,184,'2021-07-23 03:36:52',0,1),(17613,1,69,'2021-07-23 03:36:52',0,1),(17613,1,72,'2021-07-23 03:30:27',0,1),(17613,1,85,'2021-07-23 03:36:52',0,1),(17613,1,164,'2021-07-23 03:36:52',0,1),(17613,1,184,'2021-07-23 03:36:52',0,1),(17615,1,69,'2021-07-23 03:36:52',0,1),(17615,1,72,'2021-07-23 03:27:34',0,1),(17615,1,85,'2021-07-23 03:36:52',0,1),(17615,1,164,'2021-07-23 03:36:52',0,1),(17615,1,184,'2021-07-23 03:36:52',0,1),(17617,1,69,'2021-07-23 03:36:52',0,1),(17617,1,72,'2021-07-23 03:26:58',0,1),(17617,1,85,'2021-07-23 03:36:52',0,1),(17617,1,164,'2021-07-23 03:36:52',0,1),(17617,1,184,'2021-07-23 03:36:52',0,1),(17621,1,69,'2021-07-23 03:36:52',0,1),(17621,1,72,'2021-07-23 03:22:12',0,1),(17621,1,85,'2021-07-23 03:36:52',0,1),(17621,1,164,'2021-07-23 03:36:52',0,1),(17621,1,184,'2021-07-23 03:36:52',0,1),(17623,1,69,'2021-07-23 03:36:52',0,1),(17623,1,72,'2021-07-23 03:26:01',0,1),(17623,1,85,'2021-07-23 03:36:52',0,1),(17623,1,164,'2021-11-09 02:03:06',0,1),(17623,1,184,'2021-09-27 23:03:26',0,17887),(17623,1,195,'2021-11-09 02:03:06',0,1),(17623,1,196,'2021-11-09 02:03:06',0,1),(17623,1,197,'2021-11-09 02:03:06',0,1),(17623,1,198,'2021-11-09 02:03:06',0,1),(17623,1,199,'2021-11-09 02:03:06',0,1),(17626,1,69,'2021-07-23 03:36:52',0,1),(17626,1,72,'2021-07-23 03:20:39',0,1),(17626,1,85,'2021-07-23 03:36:52',0,1),(17626,1,164,'2021-07-23 03:36:52',0,1),(17626,1,184,'2021-07-23 03:36:52',0,1),(17628,1,69,'2021-07-23 03:36:52',0,1),(17628,1,72,'2021-07-23 03:19:27',0,1),(17628,1,85,'2021-07-23 03:36:52',0,1),(17628,1,164,'2021-07-23 03:36:52',0,1),(17628,1,184,'2021-07-23 03:36:52',0,1),(17631,1,69,'2021-07-23 03:36:52',0,1),(17631,1,72,'2021-07-23 03:14:59',0,1),(17631,1,85,'2021-07-23 03:36:52',0,1),(17631,1,164,'2021-07-23 03:36:52',0,1),(17631,1,184,'2021-07-23 03:36:52',0,1),(17633,1,69,'2021-07-23 03:36:52',0,1),(17633,1,72,'2021-07-23 03:14:00',0,1),(17633,1,85,'2021-07-23 03:36:52',0,1),(17633,1,164,'2021-07-23 03:36:52',0,1),(17633,1,184,'2021-07-23 03:36:52',0,1),(17635,1,69,'2021-07-23 03:36:51',0,1),(17635,1,72,'2021-07-23 03:08:45',0,1),(17635,1,85,'2021-07-23 03:36:51',0,1),(17635,1,164,'2021-07-23 03:36:51',0,1),(17635,1,184,'2021-07-23 03:36:51',0,1),(17638,1,69,'2021-07-23 03:36:52',0,1),(17638,1,72,'2021-07-23 03:13:18',0,1),(17638,1,85,'2021-07-23 03:36:52',0,1),(17638,1,164,'2021-07-23 03:36:52',0,1),(17638,1,184,'2021-07-23 03:36:52',0,1),(17642,1,69,'2021-07-23 03:36:51',0,1),(17642,1,72,'2021-07-23 03:12:29',0,1),(17642,1,85,'2021-07-23 03:36:51',0,1),(17642,1,164,'2021-07-23 03:36:51',0,1),(17642,1,184,'2021-07-23 03:36:51',0,1),(17644,1,69,'2021-07-23 03:36:51',0,1),(17644,1,72,'2021-07-23 03:06:02',0,1),(17644,1,85,'2021-09-27 22:57:34',0,17887),(17644,1,164,'2021-11-09 02:02:27',0,1),(17644,1,184,'2021-09-27 23:03:06',0,17887),(17644,1,195,'2021-11-09 02:02:27',0,1),(17644,1,196,'2021-11-09 02:02:27',0,1),(17644,1,197,'2021-11-09 02:02:27',0,1),(17644,1,198,'2021-11-09 02:02:27',0,1),(17644,1,199,'2021-11-09 02:02:27',0,1),(17646,1,69,'2022-08-17 04:38:30',0,17887),(17646,1,72,'2021-07-23 03:01:34',0,1),(17646,1,85,'2021-09-27 22:55:36',0,17887),(17646,1,164,'2022-08-25 04:36:55',0,17934),(17646,1,184,'2022-08-17 04:38:30',0,17887),(17646,1,195,'2022-08-17 04:38:57',0,17887),(17646,1,196,'2022-08-17 04:38:57',0,17887),(17646,1,197,'2021-11-09 02:01:53',0,1),(17646,1,198,'2022-08-17 04:38:30',0,17887),(17646,1,199,'2021-11-09 02:01:53',0,1),(17648,1,69,'2021-07-23 03:36:51',0,1),(17648,1,72,'2021-07-23 02:57:11',0,1),(17648,1,85,'2021-07-23 03:36:51',0,1),(17648,1,164,'2021-07-23 03:36:51',0,1),(17648,1,184,'2021-07-23 03:36:51',0,1),(17650,1,69,'2022-07-18 03:34:47',0,17887),(17650,1,72,'2021-07-23 02:59:41',0,1),(17650,1,85,'2021-07-23 03:36:51',0,1),(17650,1,164,'2022-08-08 07:04:08',0,17887),(17650,1,184,'2021-07-23 03:36:51',0,1),(17650,1,195,'2022-08-17 05:11:34',0,17887),(17650,1,196,'2022-08-17 05:11:34',0,17887),(17650,1,198,'2022-08-17 05:11:34',0,17887),(17652,1,69,'2021-07-23 03:36:51',0,1),(17652,1,72,'2021-07-23 01:52:04',0,1),(17652,1,85,'2021-07-23 03:36:51',0,1),(17652,1,164,'2021-07-23 03:36:51',0,1),(17652,1,184,'2021-07-23 03:36:51',0,1),(17654,1,69,'2021-07-23 03:36:51',0,1),(17654,1,72,'2021-07-23 01:49:44',0,1),(17654,1,85,'2021-09-27 22:55:06',0,17887),(17654,1,164,'2021-11-09 02:01:18',0,1),(17654,1,184,'2021-09-27 23:02:16',0,17887),(17654,1,195,'2021-11-09 02:01:18',0,1),(17654,1,196,'2021-11-09 02:01:18',0,1),(17654,1,197,'2021-11-09 02:01:18',0,1),(17654,1,198,'2021-11-09 02:01:18',0,1),(17654,1,199,'2021-11-09 02:01:18',0,1),(17660,1,69,'2021-07-23 03:36:51',0,1),(17660,1,72,'2021-07-23 01:47:24',0,1),(17660,1,85,'2021-09-27 22:53:36',0,17887),(17660,1,164,'2022-08-08 07:02:06',0,17887),(17660,1,184,'2021-09-27 23:02:00',0,17887),(17660,1,195,'2021-11-09 02:00:48',0,1),(17660,1,196,'2021-11-09 02:00:48',0,1),(17660,1,197,'2021-11-09 02:00:48',0,1),(17660,1,198,'2021-11-09 02:00:48',0,1),(17660,1,199,'2021-11-09 02:00:48',0,1),(17662,1,69,'2021-07-23 03:36:51',0,1),(17662,1,72,'2021-07-23 01:43:47',0,1),(17662,1,85,'2021-07-23 03:36:51',0,1),(17662,1,164,'2021-07-23 03:36:51',0,1),(17662,1,184,'2021-07-23 03:36:51',0,1),(17664,1,69,'2021-07-23 03:36:51',0,1),(17664,1,72,'2021-07-23 01:41:34',0,1),(17664,1,85,'2021-07-23 03:36:51',0,1),(17664,1,164,'2021-07-23 03:36:51',0,1),(17664,1,184,'2021-07-23 03:36:51',0,1),(17666,1,69,'2021-07-23 03:36:50',0,1),(17666,1,72,'2021-07-23 01:24:26',0,1),(17666,1,85,'2021-07-23 03:36:50',0,1),(17666,1,164,'2021-07-23 03:36:50',0,1),(17666,1,184,'2021-07-23 03:36:50',0,1),(17668,1,69,'2021-07-23 03:36:50',0,1),(17668,1,72,'2021-07-23 01:17:51',0,1),(17668,1,85,'2021-07-23 03:36:50',0,1),(17668,1,164,'2021-07-23 03:36:50',0,1),(17668,1,184,'2021-07-23 03:36:50',0,1),(17670,1,69,'2021-07-23 03:36:50',0,1),(17670,1,72,'2021-07-23 01:16:03',0,1),(17670,1,85,'2021-07-23 03:36:50',0,1),(17670,1,164,'2021-07-23 03:36:50',0,1),(17670,1,184,'2021-07-23 03:36:50',0,1),(17672,1,69,'2021-07-23 03:36:50',0,1),(17672,1,72,'2021-07-23 01:13:29',0,1),(17672,1,85,'2021-07-23 03:36:50',0,1),(17672,1,164,'2021-07-23 03:36:50',0,1),(17672,1,184,'2021-07-23 03:36:50',0,1),(17674,1,69,'2021-07-23 03:36:50',0,1),(17674,1,72,'2021-07-23 01:08:24',0,1),(17674,1,85,'2021-07-23 03:36:50',0,1),(17674,1,164,'2021-07-23 03:36:50',0,1),(17674,1,184,'2021-07-23 03:36:50',0,1),(17676,1,69,'2021-07-23 03:36:50',0,1),(17676,1,72,'2021-07-23 01:06:04',0,1),(17676,1,85,'2021-07-23 03:36:50',0,1),(17676,1,164,'2021-07-23 03:36:50',0,1),(17676,1,184,'2021-07-23 03:36:50',0,1),(17678,1,69,'2021-07-23 07:26:56',0,NULL),(17678,1,72,'2021-07-23 00:58:41',0,1),(17678,1,85,'2021-07-23 07:26:56',0,NULL),(17678,1,164,'2022-11-28 23:23:04',0,140513),(17678,1,184,'2021-07-23 07:26:56',0,NULL),(17678,1,195,'2021-11-09 01:59:54',0,1),(17678,1,196,'2021-11-09 01:59:54',0,1),(17678,1,197,'2021-11-09 01:59:54',0,1),(17678,1,198,'2021-11-09 01:59:54',0,1),(17678,1,199,'2021-11-09 01:59:54',0,1),(17680,1,69,'2021-09-28 00:16:18',0,17934),(17680,1,72,'2021-07-22 05:38:16',0,1),(17680,1,85,'2021-07-23 06:49:43',0,NULL),(17680,1,164,'2021-11-09 01:59:29',0,1),(17680,1,184,'2021-09-28 00:16:18',0,17934),(17680,1,195,'2021-11-09 01:59:29',0,1),(17680,1,196,'2021-11-09 01:59:29',0,1),(17680,1,197,'2021-11-09 01:59:29',0,1),(17680,1,198,'2021-11-09 01:59:29',0,1),(17680,1,199,'2021-11-09 01:59:29',0,1),(17682,1,69,'2021-07-23 03:36:50',0,1),(17682,1,72,'2021-07-22 05:35:48',0,1),(17682,1,85,'2021-07-23 03:36:50',0,1),(17682,1,164,'2022-06-30 03:06:51',0,17887),(17682,1,184,'2021-07-23 03:36:50',0,1),(17682,1,195,'2021-11-09 01:58:37',0,1),(17682,1,196,'2021-11-09 01:58:37',0,1),(17682,1,197,'2021-11-09 01:58:37',0,1),(17682,1,198,'2021-11-09 01:58:37',0,1),(17682,1,199,'2021-11-09 01:58:37',0,1),(17684,1,69,'2021-07-23 06:57:34',0,NULL),(17684,1,72,'2021-07-22 05:33:33',0,1),(17684,1,85,'2021-07-23 06:55:08',0,NULL),(17684,1,164,'2021-11-09 01:58:03',0,1),(17684,1,184,'2021-07-23 06:57:34',0,NULL),(17684,1,195,'2021-11-09 01:58:03',0,1),(17684,1,196,'2021-11-09 01:58:03',0,1),(17684,1,197,'2021-11-09 01:58:03',0,1),(17684,1,198,'2021-11-09 01:58:03',0,1),(17684,1,199,'2021-11-09 01:58:03',0,1),(17686,1,69,'2021-07-23 03:36:50',0,1),(17686,1,72,'2021-07-22 05:30:30',0,1),(17686,1,85,'2021-07-23 03:36:50',0,1),(17686,1,164,'2022-05-30 01:18:47',0,1),(17686,1,184,'2021-07-23 03:36:50',0,1),(17686,1,195,'2021-11-09 01:57:32',0,1),(17686,1,196,'2021-11-09 01:57:32',0,1),(17686,1,197,'2021-11-09 01:57:32',0,1),(17686,1,198,'2021-11-09 01:57:32',0,1),(17686,1,199,'2021-11-09 01:57:32',0,1),(17688,1,69,'2021-07-23 03:36:49',0,1),(17688,1,72,'2021-07-22 05:20:42',0,1),(17688,1,85,'2021-07-23 03:36:49',0,1),(17688,1,164,'2021-11-09 01:57:07',0,1),(17688,1,184,'2021-07-23 03:36:49',0,1),(17688,1,195,'2021-11-09 01:57:07',0,1),(17688,1,196,'2021-11-09 01:57:07',0,1),(17688,1,197,'2021-11-09 01:57:07',0,1),(17688,1,198,'2021-11-09 01:57:07',0,1),(17688,1,199,'2021-11-09 01:57:07',0,1),(17690,1,69,'2021-07-23 03:36:49',0,1),(17690,1,72,'2021-07-22 05:16:05',0,1),(17690,1,85,'2021-07-23 03:36:49',0,1),(17690,1,164,'2022-05-30 01:18:24',0,1),(17690,1,184,'2021-07-23 03:36:49',0,1),(17690,1,195,'2021-11-09 01:56:33',0,1),(17690,1,196,'2021-11-09 01:56:33',0,1),(17690,1,197,'2021-11-09 01:56:33',0,1),(17690,1,198,'2021-11-09 01:56:33',0,1),(17690,1,199,'2021-11-09 01:56:33',0,1),(17692,1,69,'2022-10-24 06:46:28',0,17934),(17692,1,72,'2021-07-22 05:14:54',0,1),(17692,1,85,'2022-10-24 00:26:00',0,17934),(17692,1,164,'2022-10-24 06:46:28',0,17934),(17692,1,184,'2022-10-24 06:46:28',0,17934),(17692,1,195,'2021-11-09 01:55:41',0,1),(17692,1,196,'2021-11-09 01:55:41',0,1),(17692,1,197,'2021-11-09 01:55:41',0,1),(17692,1,198,'2022-10-21 05:20:57',0,17934),(17692,1,199,'2021-11-09 01:55:41',0,1),(17875,1,75,'2023-03-06 02:48:59',0,140513),(17875,1,76,'2023-03-06 02:48:59',0,140513),(17875,1,81,'2023-03-06 02:48:59',0,140513),(17875,1,120,'2023-03-06 02:48:59',0,140513),(17875,1,172,'2023-03-06 02:48:59',0,140513),(17875,1,183,'2023-03-06 02:48:59',0,140513),(17875,1,219,'2023-03-06 02:48:59',0,140513),(17875,1,220,'2023-03-06 02:48:59',0,140513),(17876,1,82,'2023-03-06 02:48:59',0,140513),(17876,1,83,'2023-03-06 02:48:59',0,140513),(17877,1,82,'2023-03-06 02:48:59',0,140513),(17877,1,83,'2023-03-06 02:48:59',0,140513),(17878,1,82,'2023-03-06 02:48:59',0,140513),(17878,1,83,'2023-03-06 02:48:59',0,140513),(17879,1,82,'2023-03-06 02:48:59',0,140513),(17879,1,83,'2023-03-06 02:48:59',0,140513),(17880,1,82,'2023-03-06 02:48:59',0,140513),(17880,1,83,'2023-03-06 02:48:59',0,140513),(17881,1,75,'2023-03-09 04:28:33',0,17875),(17881,1,76,'2023-03-09 04:28:33',0,17875),(17881,1,81,'2023-03-09 04:28:33',0,17875),(17881,1,120,'2023-03-09 04:28:33',0,17875),(17881,1,172,'2023-03-09 04:28:33',0,17875),(17881,1,183,'2023-03-09 04:28:33',0,17875),(17881,1,219,'2023-03-09 04:28:33',0,17875),(17881,1,220,'2023-03-09 04:28:33',0,17875),(17882,1,82,'2023-03-09 04:28:33',0,17875),(17882,1,83,'2023-03-09 04:28:33',0,17875),(17883,1,82,'2023-03-09 04:28:33',0,17875),(17883,1,83,'2023-03-09 04:28:33',0,17875),(17884,1,82,'2023-03-09 04:28:33',0,17875),(17884,1,83,'2023-03-09 04:28:33',0,17875),(17885,1,82,'2023-03-09 04:28:33',0,17875),(17885,1,83,'2023-03-09 04:28:33',0,17875),(17886,1,82,'2023-03-09 04:28:33',0,17875),(17886,1,83,'2023-03-09 04:28:33',0,17875),(17887,1,75,'2023-04-06 04:54:21',0,17887),(17887,1,76,'2023-04-06 04:54:21',0,17887),(17887,1,81,'2023-04-06 04:54:21',0,17887),(17887,1,120,'2023-04-06 04:54:21',0,17887),(17887,1,172,'2023-04-06 04:54:21',0,17887),(17887,1,183,'2023-04-06 04:54:21',0,17887),(17887,1,219,'2023-04-06 04:54:21',0,17887),(17887,1,220,'2023-04-06 04:54:21',0,17887),(17888,1,82,'2023-04-06 04:54:21',0,17887),(17888,1,83,'2023-04-06 04:54:21',0,17887),(17889,1,82,'2023-04-06 04:54:21',0,17887),(17889,1,83,'2023-04-06 04:54:21',0,17887),(17890,1,82,'2023-04-06 04:54:21',0,17887),(17890,1,83,'2023-04-06 04:54:21',0,17887),(17891,1,82,'2023-04-06 04:54:21',0,17887),(17891,1,83,'2023-04-06 04:54:21',0,17887),(17892,1,82,'2023-04-06 04:54:21',0,17887),(17892,1,83,'2023-04-06 04:54:21',0,17887),(17893,1,75,'2023-03-09 04:39:16',0,17875),(17893,1,76,'2023-03-09 04:39:16',0,17875),(17893,1,81,'2023-03-09 04:39:16',0,17875),(17893,1,120,'2023-03-09 04:39:16',0,17875),(17893,1,172,'2023-03-09 04:39:16',0,17875),(17893,1,183,'2023-03-09 04:39:16',0,17875),(17893,1,219,'2023-03-09 04:39:16',0,17875),(17893,1,220,'2023-03-09 04:39:16',0,17875),(17894,1,82,'2023-03-09 04:39:16',0,17875),(17894,1,83,'2023-03-09 04:39:16',0,17875),(17895,1,82,'2023-03-09 04:39:16',0,17875),(17895,1,83,'2023-03-09 04:39:16',0,17875),(17896,1,82,'2023-03-09 04:39:16',0,17875),(17896,1,83,'2023-03-09 04:39:16',0,17875),(17897,1,82,'2023-03-09 04:39:16',0,17875),(17897,1,83,'2023-03-09 04:39:16',0,17875),(17898,1,82,'2023-03-09 04:39:16',0,17875),(17898,1,83,'2023-03-09 04:39:16',0,17875),(17899,1,75,'2023-03-09 04:28:28',0,17875),(17899,1,76,'2023-03-09 04:28:28',0,17875),(17899,1,81,'2023-03-09 04:28:28',0,17875),(17899,1,120,'2023-03-09 04:28:28',0,17875),(17899,1,172,'2023-03-09 04:28:28',0,17875),(17899,1,183,'2023-03-09 04:28:28',0,17875),(17899,1,219,'2023-03-09 04:28:28',0,17875),(17899,1,220,'2023-03-09 04:28:28',0,17875),(17900,1,82,'2023-03-09 04:28:28',0,17875),(17900,1,83,'2023-03-09 04:28:28',0,17875),(17901,1,82,'2023-03-09 04:28:28',0,17875),(17901,1,83,'2023-03-09 04:28:28',0,17875),(17902,1,82,'2023-03-09 04:28:28',0,17875),(17902,1,83,'2023-03-09 04:28:28',0,17875),(17903,1,82,'2023-03-09 04:28:28',0,17875),(17903,1,83,'2023-03-09 04:28:28',0,17875),(17904,1,82,'2023-03-09 04:28:28',0,17875),(17904,1,83,'2023-03-09 04:28:28',0,17875),(17905,1,82,'2022-10-24 23:08:02',0,17875),(17905,1,83,'2022-10-24 23:08:02',0,17875),(17906,1,82,'2022-10-24 23:08:02',0,17875),(17906,1,83,'2022-10-24 23:08:02',0,17875),(17907,1,82,'2022-10-24 23:08:02',0,17875),(17907,1,83,'2022-10-24 23:08:02',0,17875),(17908,1,82,'2022-10-24 23:08:02',0,17875),(17908,1,83,'2022-10-24 23:08:02',0,17875),(17909,1,82,'2022-10-24 23:08:02',0,17875),(17909,1,83,'2022-10-24 23:08:02',0,17875),(17921,1,75,'2023-03-09 04:28:32',0,17875),(17921,1,76,'2023-03-09 04:28:32',0,17875),(17921,1,81,'2023-03-09 04:28:32',0,17875),(17921,1,120,'2023-03-09 04:28:32',0,17875),(17921,1,172,'2023-03-09 04:28:32',0,17875),(17921,1,183,'2023-03-09 04:28:32',0,17875),(17921,1,219,'2023-03-09 04:28:32',0,17875),(17921,1,220,'2023-03-09 04:28:32',0,17875),(17922,1,82,'2023-03-09 04:28:32',0,17875),(17922,1,83,'2023-03-09 04:28:32',0,17875),(17923,1,82,'2023-03-09 04:28:32',0,17875),(17923,1,83,'2023-03-09 04:28:32',0,17875),(17924,1,82,'2023-03-09 04:28:32',0,17875),(17924,1,83,'2023-03-09 04:28:32',0,17875),(17925,1,82,'2023-03-09 04:28:32',0,17875),(17925,1,83,'2023-03-09 04:28:32',0,17875),(17926,1,82,'2023-03-09 04:28:32',0,17875),(17926,1,83,'2023-03-09 04:28:32',0,17875),(17934,1,75,'2023-03-09 04:28:29',0,17875),(17934,1,76,'2023-03-09 04:28:29',0,17875),(17934,1,81,'2023-03-09 04:28:29',0,17875),(17934,1,120,'2023-03-09 04:28:29',0,17875),(17934,1,172,'2023-03-09 04:28:29',0,17875),(17934,1,183,'2023-03-09 04:28:29',0,17875),(17934,1,219,'2023-03-09 04:28:29',0,17875),(17934,1,220,'2023-03-09 04:28:29',0,17875),(17935,1,82,'2023-03-09 04:28:29',0,17875),(17935,1,83,'2023-03-09 04:28:29',0,17875),(17936,1,82,'2023-03-09 04:28:29',0,17875),(17936,1,83,'2023-03-09 04:28:29',0,17875),(17937,1,82,'2023-03-09 04:28:29',0,17875),(17937,1,83,'2023-03-09 04:28:29',0,17875),(17938,1,82,'2023-03-09 04:28:29',0,17875),(17938,1,83,'2023-03-09 04:28:29',0,17875),(17939,1,82,'2023-03-09 04:28:29',0,17875),(17939,1,83,'2023-03-09 04:28:29',0,17875),(17941,1,75,'2023-03-09 04:28:33',0,17875),(17941,1,76,'2023-03-09 04:28:33',0,17875),(17941,1,81,'2023-03-09 04:28:33',0,17875),(17941,1,120,'2023-03-09 04:28:33',0,17875),(17941,1,172,'2023-03-09 04:28:33',0,17875),(17941,1,183,'2023-03-09 04:28:33',0,17875),(17941,1,219,'2023-03-09 04:28:33',0,17875),(17941,1,220,'2023-03-09 04:28:33',0,17875),(17942,1,82,'2023-03-09 04:28:33',0,17875),(17942,1,83,'2023-03-09 04:28:33',0,17875),(17943,1,82,'2023-03-09 04:28:33',0,17875),(17943,1,83,'2023-03-09 04:28:33',0,17875),(17944,1,82,'2023-03-09 04:28:33',0,17875),(17944,1,83,'2023-03-09 04:28:33',0,17875),(17945,1,82,'2023-03-09 04:28:33',0,17875),(17945,1,83,'2023-03-09 04:28:33',0,17875),(17946,1,82,'2023-03-09 04:28:33',0,17875),(17946,1,83,'2023-03-09 04:28:33',0,17875),(17954,1,75,'2023-03-09 04:28:45',0,17875),(17954,1,76,'2023-03-09 04:28:45',0,17875),(17954,1,81,'2023-03-09 04:28:45',0,17875),(17954,1,120,'2023-03-09 04:28:45',0,17875),(17954,1,172,'2023-03-09 04:28:45',0,17875),(17954,1,183,'2023-03-09 04:28:45',0,17875),(17954,1,219,'2023-03-09 04:28:45',0,17875),(17954,1,220,'2023-03-09 04:28:45',0,17875),(17956,1,75,'2023-03-09 04:28:36',0,17875),(17956,1,76,'2023-03-09 04:28:36',0,17875),(17956,1,81,'2023-03-09 04:28:36',0,17875),(17956,1,120,'2023-03-09 04:28:36',0,17875),(17956,1,172,'2023-03-09 04:28:36',0,17875),(17956,1,183,'2023-03-09 04:28:36',0,17875),(17956,1,219,'2023-03-09 04:28:36',0,17875),(17956,1,220,'2023-03-09 04:28:36',0,17875),(17972,1,82,'2023-03-09 04:28:45',0,17875),(17972,1,83,'2023-03-09 04:28:45',0,17875),(17973,1,82,'2023-03-09 04:28:45',0,17875),(17973,1,83,'2023-03-09 04:28:45',0,17875),(17974,1,82,'2023-03-09 04:28:45',0,17875),(17974,1,83,'2023-03-09 04:28:45',0,17875),(17975,1,82,'2023-03-09 04:28:45',0,17875),(17975,1,83,'2023-03-09 04:28:45',0,17875),(17976,1,82,'2023-03-09 04:28:45',0,17875),(17976,1,83,'2023-03-09 04:28:45',0,17875),(17991,1,82,'2023-03-09 04:28:36',0,17875),(17991,1,83,'2023-03-09 04:28:36',0,17875),(17992,1,82,'2023-03-09 04:28:36',0,17875),(17992,1,83,'2023-03-09 04:28:36',0,17875),(17993,1,82,'2023-03-09 04:28:36',0,17875),(17993,1,83,'2023-03-09 04:28:36',0,17875),(17994,1,82,'2023-03-09 04:28:36',0,17875),(17994,1,83,'2023-03-09 04:28:36',0,17875),(17995,1,82,'2023-03-09 04:28:36',0,17875),(17995,1,83,'2023-03-09 04:28:36',0,17875),(17996,1,75,'2023-03-09 04:28:37',0,17875),(17996,1,76,'2023-03-09 04:28:37',0,17875),(17996,1,81,'2023-03-09 04:28:37',0,17875),(17996,1,120,'2023-03-09 04:28:37',0,17875),(17996,1,172,'2023-03-09 04:28:37',0,17875),(17996,1,183,'2023-03-09 04:28:37',0,17875),(17996,1,219,'2023-03-09 04:28:37',0,17875),(17996,1,220,'2023-03-09 04:28:37',0,17875),(17997,1,82,'2023-03-09 04:28:37',0,17875),(17997,1,83,'2023-03-09 04:28:37',0,17875),(17998,1,82,'2023-03-09 04:28:37',0,17875),(17998,1,83,'2023-03-09 04:28:37',0,17875),(17999,1,82,'2023-03-09 04:28:37',0,17875),(17999,1,83,'2023-03-09 04:28:37',0,17875),(18000,1,82,'2023-03-09 04:28:37',0,17875),(18000,1,83,'2023-03-09 04:28:37',0,17875),(18001,1,82,'2023-03-09 04:28:37',0,17875),(18001,1,83,'2023-03-09 04:28:37',0,17875),(18109,1,59,'2021-07-16 06:00:43',0,1),(18109,1,69,'2021-10-18 04:50:02',0,17875),(18109,1,79,'2021-10-18 04:50:02',0,17875),(18109,1,84,'2021-09-03 04:00:14',0,NULL),(18109,1,85,'2021-08-26 23:25:21',0,1),(18109,1,164,'2022-08-08 06:46:51',0,17887),(18109,1,195,'2022-05-30 01:42:50',0,1),(18109,1,196,'2022-05-30 01:42:50',0,1),(18109,1,198,'2022-05-30 01:42:50',0,1),(18122,1,59,'2021-07-16 05:59:12',0,1),(18122,1,69,'2021-07-16 07:15:34',0,1),(18122,1,74,'2021-09-23 23:14:08',0,NULL),(18122,1,78,'2021-09-03 03:29:11',0,NULL),(18122,1,79,'2021-09-03 02:08:55',0,NULL),(18122,1,84,'2021-09-03 02:08:55',0,NULL),(18122,1,85,'2021-08-26 23:24:34',0,1),(18122,1,164,'2022-08-08 06:41:23',0,17887),(18122,1,182,'2021-07-16 06:18:20',0,1),(18122,1,195,'2022-05-30 01:41:22',0,1),(18122,1,196,'2022-05-30 01:41:22',0,1),(18122,1,198,'2022-05-30 01:41:22',0,1),(18126,1,59,'2021-07-16 05:54:32',0,1),(18126,1,74,'2021-09-10 07:00:56',0,NULL),(18126,1,78,'2021-09-10 07:00:56',0,NULL),(18126,1,80,'2021-07-16 01:36:03',0,1),(18126,1,84,'2021-09-10 07:00:56',0,NULL),(18126,1,85,'2021-08-26 23:24:04',0,1),(18126,1,164,'2022-08-08 06:39:24',0,17887),(18126,1,195,'2022-05-30 01:40:48',0,1),(18126,1,196,'2022-05-30 01:40:48',0,1),(18126,1,198,'2022-05-30 01:40:48',0,1),(18139,1,59,'2021-07-16 05:46:02',0,1),(18139,1,69,'2022-08-30 00:13:34',0,17887),(18139,1,74,'2022-08-30 00:13:34',0,17887),(18139,1,78,'2022-08-30 00:13:34',0,17887),(18139,1,79,'2022-08-30 00:13:34',0,17887),(18139,1,84,'2022-08-30 00:13:34',0,17887),(18139,1,85,'2022-08-30 00:13:34',0,17887),(18139,1,164,'2022-09-13 23:03:12',0,17887),(18139,1,182,'2022-08-30 00:13:34',0,17887),(18139,1,195,'2022-08-30 00:13:34',0,17887),(18139,1,196,'2022-08-30 00:13:34',0,17887),(18139,1,197,'2022-08-30 00:13:34',0,17887),(18139,1,198,'2022-08-30 00:13:34',0,17887),(18139,1,199,'2022-08-30 00:13:34',0,17887),(18142,1,59,'2021-07-16 05:47:20',0,1),(18142,1,69,'2021-07-16 01:49:52',0,1),(18142,1,74,'2021-09-03 01:34:27',0,NULL),(18142,1,78,'2021-09-03 01:34:27',0,NULL),(18142,1,79,'2021-09-03 01:35:46',0,NULL),(18142,1,80,'2021-07-16 01:49:52',0,1),(18142,1,84,'2021-09-03 01:34:27',0,NULL),(18142,1,85,'2021-08-26 23:22:04',0,1),(18142,1,164,'2021-09-17 07:24:50',0,17934),(18142,1,195,'2022-05-30 01:36:15',0,1),(18142,1,196,'2022-05-30 01:36:15',0,1),(18142,1,198,'2022-05-30 01:36:15',0,1),(18156,1,59,'2021-07-16 05:51:53',0,1),(18156,1,69,'2021-10-18 04:17:46',0,17875),(18156,1,78,'2021-09-03 02:00:34',0,NULL),(18156,1,79,'2021-09-03 02:00:34',0,NULL),(18156,1,80,'2021-07-16 01:58:23',0,1),(18156,1,84,'2021-09-03 02:00:54',0,NULL),(18156,1,85,'2021-09-03 02:00:34',0,NULL),(18156,1,164,'2022-08-12 03:46:54',0,17875),(18156,1,195,'2022-05-30 01:39:39',0,1),(18156,1,196,'2022-05-30 01:39:39',0,1),(18156,1,198,'2022-05-30 01:39:39',0,1),(18164,1,69,'2021-09-27 02:11:26',0,17934),(18164,1,74,'2021-11-08 04:11:29',0,1),(18164,1,78,'2021-09-03 06:10:44',0,NULL),(18164,1,79,'2021-09-03 06:10:44',0,NULL),(18164,1,84,'2021-09-03 06:10:44',0,NULL),(18164,1,85,'2021-09-03 06:10:44',0,NULL),(18164,1,164,'2021-11-08 04:11:29',0,1),(18164,1,195,'2022-05-30 01:38:27',0,1),(18164,1,196,'2022-05-30 01:38:27',0,1),(18164,1,198,'2022-05-30 01:38:27',0,1),(18168,1,59,'2021-07-16 05:49:15',0,1),(18168,1,69,'2021-07-16 03:07:32',0,1),(18168,1,74,'2021-09-03 01:52:31',0,NULL),(18168,1,78,'2021-09-10 01:43:09',0,1),(18168,1,79,'2021-09-03 01:52:31',0,NULL),(18168,1,80,'2021-07-16 03:07:32',0,1),(18168,1,84,'2022-08-08 06:30:58',0,NULL),(18168,1,85,'2021-09-03 01:52:31',0,NULL),(18168,1,164,'2022-08-08 06:30:59',0,17887),(18168,1,195,'2022-05-30 01:37:10',0,1),(18168,1,196,'2022-05-30 01:37:10',0,1),(18168,1,198,'2022-05-30 01:37:10',0,1),(18176,1,69,'2021-09-30 03:51:18',0,17934),(18176,1,74,'2021-11-08 04:12:09',0,1),(18176,1,78,'2021-09-17 04:13:34',0,17934),(18176,1,164,'2021-11-08 04:12:09',0,1),(18176,1,195,'2022-05-30 01:37:38',0,1),(18176,1,196,'2022-05-30 01:37:38',0,1),(18176,1,198,'2022-05-30 01:37:38',0,1),(19192,1,94,'2021-06-11 04:57:32',0,19191),(19192,1,95,'2021-06-11 04:57:32',0,19191),(19192,1,96,'2021-06-11 04:57:32',0,19191),(19192,1,97,'2021-06-11 04:57:32',0,19191),(19192,1,98,'2021-06-11 04:57:32',0,19191),(19192,1,99,'2021-06-11 04:57:32',0,19191),(19192,1,100,'2021-06-11 04:57:32',0,19191),(19192,1,101,'2021-06-11 04:57:32',0,19191),(19192,1,102,'2021-06-11 04:57:32',0,19191),(19192,1,103,'2021-06-11 04:57:32',0,19191),(19192,1,104,'2021-06-11 04:57:32',0,19191),(19192,1,105,'2021-06-11 04:57:32',0,19191),(19192,1,106,'2021-06-11 04:57:32',0,19191),(19192,1,107,'2021-06-11 04:57:32',0,19191),(19192,1,108,'2021-06-11 04:57:32',0,19191),(19192,1,109,'2021-06-11 04:57:32',0,19191),(19192,1,110,'2021-06-11 04:57:32',0,19191),(19192,1,112,'2021-06-11 04:57:32',0,19191),(19192,1,113,'2021-06-11 04:57:32',0,19191),(19192,1,114,'2021-06-11 04:57:32',0,19191),(19192,1,115,'2021-06-11 04:57:32',0,19191),(19192,1,116,'2021-06-11 04:57:32',0,19191),(19192,1,117,'2021-06-11 04:57:32',0,19191),(19192,1,118,'2021-06-11 04:57:32',0,19191),(19200,1,94,'2021-06-14 00:18:05',0,19197),(19200,1,95,'2021-06-14 00:18:05',0,19197),(19200,1,96,'2021-06-14 00:18:05',0,19197),(19200,1,97,'2021-06-14 00:18:05',0,19197),(19200,1,98,'2021-06-14 00:18:05',0,19197),(19200,1,99,'2021-06-14 00:18:05',0,19197),(19200,1,100,'2021-06-14 00:18:05',0,19197),(19200,1,101,'2021-06-14 00:18:05',0,19197),(19200,1,102,'2021-06-14 00:18:05',0,19197),(19200,1,103,'2021-06-14 00:18:05',0,19197),(19200,1,104,'2021-06-14 00:18:05',0,19197),(19200,1,105,'2021-06-14 00:18:05',0,19197),(19200,1,106,'2021-06-14 00:18:05',0,19197),(19200,1,107,'2021-06-14 00:18:05',0,19197),(19200,1,108,'2021-06-14 00:18:05',0,19197),(19200,1,109,'2021-06-14 00:18:05',0,19197),(19200,1,110,'2021-06-14 00:18:05',0,19197),(19200,1,112,'2021-06-14 00:18:05',0,19197),(19200,1,113,'2021-06-14 00:18:05',0,19197),(19200,1,114,'2021-06-14 00:18:05',0,19197),(19200,1,115,'2021-06-14 00:18:05',0,19197),(19200,1,116,'2021-06-14 00:18:05',0,19197),(19200,1,117,'2021-06-14 00:18:05',0,19197),(19200,1,118,'2021-06-14 00:18:05',0,19197),(19222,1,94,'2021-06-15 23:35:41',0,17875),(19222,1,95,'2021-06-15 23:35:41',0,17875),(19222,1,96,'2021-06-15 23:35:41',0,17875),(19222,1,97,'2021-06-15 23:35:41',0,17875),(19222,1,98,'2021-06-15 23:35:41',0,17875),(19222,1,99,'2021-06-15 23:35:41',0,17875),(19222,1,100,'2021-06-15 23:35:41',0,17875),(19222,1,101,'2021-06-15 23:35:41',0,17875),(19222,1,102,'2021-06-15 23:35:41',0,17875),(19222,1,103,'2021-06-15 23:35:41',0,17875),(19222,1,104,'2021-06-15 23:35:41',0,17875),(19222,1,105,'2021-06-15 23:35:41',0,17875),(19222,1,106,'2021-06-15 23:35:41',0,17875),(19222,1,107,'2021-06-15 23:35:41',0,17875),(19222,1,108,'2021-06-15 23:35:41',0,17875),(19222,1,109,'2021-06-15 23:35:41',0,17875),(19222,1,110,'2021-06-15 23:35:41',0,17875),(19222,1,112,'2021-06-15 23:35:41',0,17875),(19222,1,113,'2021-06-15 23:35:41',0,17875),(19222,1,114,'2021-06-15 23:35:41',0,17875),(19222,1,115,'2021-06-15 23:35:41',0,17875),(19222,1,116,'2021-06-15 23:35:41',0,17875),(19222,1,117,'2021-06-15 23:35:41',0,17875),(19222,1,118,'2021-06-15 23:35:41',0,17875),(20195,1,94,'2022-02-09 23:35:56',0,1),(20195,1,95,'2022-02-09 23:35:56',0,1),(20195,1,96,'2022-02-09 23:35:56',0,1),(20195,1,97,'2022-02-09 23:35:56',0,1),(20195,1,98,'2022-02-09 23:35:56',0,1),(20195,1,99,'2022-02-09 23:35:56',0,1),(20195,1,100,'2022-02-09 23:35:56',0,1),(20195,1,101,'2022-02-09 23:35:56',0,1),(20195,1,102,'2022-02-09 23:35:56',0,1),(20195,1,103,'2022-02-09 23:35:56',0,1),(20195,1,104,'2022-02-09 23:35:56',0,1),(20195,1,105,'2022-02-09 23:35:56',0,1),(20195,1,106,'2022-02-09 23:35:56',0,1),(20195,1,107,'2022-02-09 23:35:56',0,1),(20195,1,108,'2022-02-09 23:35:56',0,1),(20195,1,109,'2022-02-09 23:35:56',0,1),(20195,1,110,'2022-02-09 23:35:56',0,1),(20195,1,112,'2022-02-09 23:35:56',0,1),(20195,1,113,'2022-02-09 23:35:56',0,1),(20195,1,114,'2022-02-09 23:35:56',0,1),(20195,1,115,'2022-02-09 23:35:56',0,1),(20195,1,116,'2022-02-09 23:35:56',0,1),(20195,1,117,'2022-02-09 23:35:56',0,1),(20195,1,118,'2022-02-09 23:35:56',0,1),(20379,1,121,'2021-06-21 05:15:33',0,1),(20379,1,164,'2023-03-10 01:36:38',0,17875),(20379,1,195,'2022-07-10 23:10:02',0,17887),(20379,1,196,'2022-07-10 23:10:02',0,17887),(20379,1,197,'2022-07-10 23:10:02',0,17887),(20379,1,198,'2022-07-10 23:10:02',0,17887),(20379,1,199,'2022-07-10 23:10:02',0,17887),(21297,1,164,'2023-03-15 04:25:54',0,17875),(21297,1,195,'2022-02-23 23:10:12',0,1),(21297,1,196,'2022-02-23 23:10:12',0,1),(21297,1,197,'2022-02-23 23:10:12',0,1),(21297,1,198,'2022-02-23 23:10:12',0,1),(21297,1,199,'2022-02-23 23:10:12',0,1),(21898,1,75,'2022-10-24 23:07:53',0,17875),(21898,1,76,'2022-10-24 23:07:53',0,17875),(21898,1,81,'2022-10-24 23:07:53',0,17875),(21898,1,120,'2022-10-24 23:07:53',0,17875),(21898,1,172,'2022-10-24 23:07:53',0,17875),(21898,1,183,'2022-10-24 23:07:53',0,17875),(22210,1,59,'2021-07-16 05:33:06',0,1),(22210,1,69,'2021-07-21 23:27:44',0,1),(22210,1,70,'2021-07-16 04:08:00',0,1),(22210,1,74,'2021-07-16 03:13:13',0,1),(22210,1,78,'2021-07-16 03:13:21',0,1),(22210,1,84,'2021-09-03 00:43:42',0,NULL),(22210,1,85,'2021-09-03 00:43:42',0,NULL),(22210,1,164,'2022-08-08 06:30:07',0,17887),(22210,1,182,'2021-09-10 07:11:43',0,NULL),(22210,1,195,'2022-05-30 01:34:00',0,1),(22210,1,196,'2022-05-30 01:34:00',0,1),(22210,1,198,'2022-05-30 01:34:00',0,1),(28040,1,69,'2021-07-23 06:18:47',0,NULL),(28040,1,85,'2021-07-23 06:18:47',0,NULL),(28040,1,164,'2022-05-30 01:17:29',0,1),(28040,1,184,'2021-07-23 06:18:47',0,NULL),(28040,1,195,'2021-11-09 01:53:02',0,1),(28040,1,196,'2021-11-09 01:53:02',0,1),(28040,1,197,'2021-11-09 01:53:02',0,1),(28040,1,198,'2021-11-09 01:53:02',0,1),(28040,1,199,'2021-11-09 01:53:02',0,1),(30411,1,164,'2021-07-30 01:23:04',0,NULL),(30418,1,164,'2021-07-30 01:43:29',0,NULL),(30419,1,164,'2021-07-30 01:44:03',0,NULL),(30427,1,69,'2021-08-12 03:41:27',0,17934),(30427,1,70,'2021-08-06 07:05:52',0,NULL),(30427,1,74,'2022-08-08 06:27:50',0,17887),(30427,1,78,'2021-08-06 07:11:15',0,NULL),(30427,1,79,'2021-09-03 00:15:59',0,NULL),(30427,1,84,'2021-09-03 00:15:59',0,NULL),(30427,1,85,'2021-08-26 23:19:35',0,1),(30427,1,164,'2022-08-12 03:45:46',0,17875),(30427,1,182,'2021-09-10 01:43:47',0,1),(30427,1,195,'2022-05-30 01:32:36',0,1),(30427,1,196,'2022-05-30 01:32:36',0,1),(30427,1,198,'2022-05-30 01:32:36',0,1),(30433,1,75,'2023-03-09 04:28:32',0,17875),(30433,1,76,'2023-03-09 04:28:32',0,17875),(30433,1,81,'2023-03-09 04:28:32',0,17875),(30433,1,120,'2023-03-09 04:28:32',0,17875),(30433,1,172,'2023-03-09 04:28:32',0,17875),(30433,1,183,'2023-03-09 04:28:32',0,17875),(30433,1,219,'2023-03-09 04:28:32',0,17875),(30433,1,220,'2023-03-09 04:28:32',0,17875),(38121,1,69,'2021-10-18 06:53:58',0,1),(38121,1,70,'2021-08-26 23:34:11',0,1),(38121,1,74,'2021-11-08 04:09:06',0,1),(38121,1,78,'2021-10-18 06:53:58',0,1),(38121,1,79,'2021-10-18 06:53:58',0,1),(38121,1,84,'2021-10-18 06:53:58',0,1),(38121,1,85,'2021-10-18 06:53:58',0,1),(38121,1,164,'2022-01-30 04:05:13',0,1),(38121,1,182,'2021-10-18 06:53:58',0,1),(38121,1,195,'2022-01-30 04:05:13',0,1),(38121,1,196,'2022-01-30 04:05:13',0,1),(38121,1,197,'2022-01-30 04:05:13',0,1),(38121,1,198,'2022-01-30 04:05:13',0,1),(38121,1,199,'2022-01-30 04:05:13',0,1),(38149,1,82,'2023-03-09 04:28:32',0,17875),(38149,1,83,'2023-03-09 04:28:32',0,17875),(38150,1,82,'2023-03-09 04:28:32',0,17875),(38150,1,83,'2023-03-09 04:28:32',0,17875),(38151,1,82,'2023-03-09 04:28:32',0,17875),(38151,1,83,'2023-03-09 04:28:32',0,17875),(38152,1,82,'2023-03-09 04:28:32',0,17875),(38152,1,83,'2023-03-09 04:28:32',0,17875),(38153,1,82,'2023-03-09 04:28:32',0,17875),(38153,1,83,'2023-03-09 04:28:32',0,17875),(40501,1,74,'2021-09-03 06:06:13',0,NULL),(40501,1,78,'2021-09-03 06:08:13',0,NULL),(40501,1,79,'2021-09-03 06:06:05',0,NULL),(40501,1,84,'2021-09-03 06:06:43',0,NULL),(40501,1,85,'2021-09-03 06:06:32',0,NULL),(40501,1,164,'2021-09-03 06:09:29',0,NULL),(40504,1,69,'2021-10-18 04:54:05',0,17875),(40504,1,74,'2021-09-03 06:29:01',0,NULL),(40504,1,78,'2021-09-03 06:27:21',0,NULL),(40504,1,79,'2021-09-03 06:30:45',0,NULL),(40504,1,84,'2021-09-03 06:31:44',0,NULL),(40504,1,85,'2021-09-03 06:31:36',0,NULL),(40504,1,164,'2022-08-12 03:46:36',0,17875),(40504,1,182,'2021-09-10 07:10:55',0,1),(40504,1,195,'2022-05-30 01:31:33',0,1),(40504,1,196,'2022-05-30 01:31:33',0,1),(40504,1,198,'2022-05-30 01:31:33',0,1),(40506,1,69,'2021-09-30 03:47:30',0,17934),(40506,1,74,'2021-11-08 04:17:49',0,1),(40506,1,78,'2022-08-08 06:26:23',0,17887),(40506,1,79,'2021-09-03 06:55:15',0,NULL),(40506,1,84,'2021-09-03 06:55:37',0,NULL),(40506,1,85,'2021-09-03 06:55:31',0,NULL),(40506,1,164,'2022-08-08 06:26:23',0,17887),(40506,1,195,'2022-05-30 01:29:36',0,1),(40506,1,196,'2022-05-30 01:29:36',0,1),(40506,1,198,'2022-05-30 01:29:36',0,1),(44837,1,69,'2021-09-30 03:43:12',0,17934),(44837,1,74,'2021-09-10 01:07:33',0,NULL),(44837,1,78,'2021-09-10 01:07:56',0,NULL),(44837,1,79,'2021-09-10 01:08:19',0,NULL),(44837,1,84,'2021-09-10 01:08:41',0,NULL),(44837,1,85,'2021-09-10 01:08:35',0,NULL),(44837,1,164,'2022-08-08 06:23:48',0,17887),(44837,1,195,'2022-05-30 01:26:48',0,1),(44837,1,196,'2022-05-30 01:26:48',0,1),(44837,1,197,'2022-05-16 04:04:22',0,17887),(44837,1,198,'2022-05-30 01:30:25',0,1),(44837,1,199,'2022-05-16 04:04:22',0,17887),(44841,1,69,'2021-09-30 03:36:52',0,17934),(44841,1,74,'2021-09-10 01:21:39',0,NULL),(44841,1,78,'2021-09-10 01:21:19',0,NULL),(44841,1,79,'2021-09-10 01:19:40',0,NULL),(44841,1,84,'2021-09-10 01:20:03',0,NULL),(44841,1,85,'2021-09-10 01:19:56',0,NULL),(44841,1,164,'2022-08-24 01:12:16',0,17887),(44841,1,195,'2022-05-30 01:24:58',0,1),(44841,1,196,'2022-05-30 01:24:58',0,1),(44841,1,198,'2022-05-30 01:24:58',0,1),(44843,1,69,'2021-09-28 07:28:52',0,17934),(44843,1,74,'2021-09-10 01:24:20',0,NULL),(44843,1,78,'2021-09-10 01:24:58',0,NULL),(44843,1,79,'2021-09-10 01:25:36',0,NULL),(44843,1,84,'2021-09-10 01:26:03',0,NULL),(44843,1,85,'2021-09-10 01:25:49',0,NULL),(44843,1,164,'2022-08-08 06:20:27',0,17887),(44843,1,195,'2022-05-30 01:24:10',0,1),(44843,1,196,'2022-05-30 01:24:10',0,1),(44843,1,198,'2022-05-30 01:24:10',0,1),(44845,1,69,'2021-09-28 07:11:32',0,17934),(44845,1,74,'2021-09-10 01:29:42',0,NULL),(44845,1,78,'2021-09-10 01:30:06',0,NULL),(44845,1,79,'2021-09-10 01:30:23',0,NULL),(44845,1,84,'2021-09-10 01:30:42',0,NULL),(44845,1,85,'2021-09-10 01:30:36',0,NULL),(44845,1,164,'2022-08-08 06:19:56',0,17887),(44845,1,195,'2021-11-09 02:07:46',0,1),(44845,1,196,'2021-11-09 02:07:46',0,1),(44845,1,197,'2021-11-09 02:07:46',0,1),(44845,1,198,'2021-11-09 02:07:46',0,1),(44845,1,199,'2021-11-09 02:07:46',0,1),(44849,1,69,'2021-09-27 02:46:51',0,17934),(44849,1,74,'2021-09-10 01:37:50',0,NULL),(44849,1,78,'2021-09-10 01:40:12',0,NULL),(44849,1,79,'2021-09-10 01:40:44',0,NULL),(44849,1,84,'2021-09-10 01:46:19',0,NULL),(44849,1,85,'2021-09-10 01:43:21',0,NULL),(44849,1,164,'2022-08-08 06:22:14',0,17887),(44849,1,195,'2021-11-09 02:06:46',0,1),(44849,1,196,'2021-11-09 02:06:46',0,1),(44849,1,197,'2021-11-09 02:06:46',0,1),(44849,1,198,'2021-11-09 02:06:46',0,1),(44849,1,199,'2021-11-09 02:06:46',0,1),(44862,1,69,'2021-09-27 02:42:07',0,17934),(44862,1,74,'2021-11-08 02:59:42',0,1),(44862,1,78,'2021-09-10 01:48:33',0,NULL),(44862,1,84,'2021-09-10 01:49:01',0,NULL),(44862,1,85,'2021-09-10 01:48:55',0,NULL),(44862,1,164,'2021-11-09 02:06:04',0,1),(44862,1,195,'2021-11-09 02:06:04',0,1),(44862,1,196,'2021-11-09 02:06:04',0,1),(44862,1,197,'2021-11-09 02:06:04',0,1),(44862,1,198,'2021-11-09 02:06:04',0,1),(44862,1,199,'2021-11-09 02:06:04',0,1),(44879,1,188,'2021-11-09 01:32:14',0,1),(44879,1,195,'2021-11-12 03:23:52',0,NULL),(44879,1,196,'2021-11-12 03:41:36',0,NULL),(44879,1,197,'2021-11-12 03:23:06',0,NULL),(44967,1,189,'2021-09-10 02:32:14',0,1),(44967,1,190,'2021-09-10 02:32:14',0,1),(44969,1,189,'2021-11-08 02:54:16',0,1),(44969,1,190,'2021-11-08 02:54:16',0,1),(44970,1,189,'2021-09-10 02:34:41',0,1),(44970,1,190,'2021-09-10 02:32:14',0,1),(44971,1,189,'2021-11-09 01:32:15',0,1),(44971,1,190,'2021-11-09 01:32:15',0,1),(44981,1,69,'2021-09-27 02:38:37',0,17934),(44981,1,74,'2021-09-10 02:08:00',0,NULL),(44981,1,78,'2021-09-21 06:39:30',0,17934),(44981,1,79,'2021-09-10 02:08:57',0,NULL),(44981,1,84,'2021-09-10 02:09:33',0,NULL),(44981,1,85,'2021-09-10 02:09:25',0,NULL),(44981,1,164,'2021-11-09 02:05:30',0,1),(44981,1,195,'2021-11-09 02:05:30',0,1),(44981,1,196,'2021-11-09 02:05:30',0,1),(44981,1,197,'2021-11-09 02:05:30',0,1),(44981,1,198,'2021-11-09 02:05:30',0,1),(44981,1,199,'2021-11-09 02:05:30',0,1),(44983,1,74,'2021-09-10 02:11:57',0,NULL),(44983,1,78,'2021-09-10 02:12:28',0,NULL),(44983,1,79,'2021-09-10 02:12:49',0,NULL),(44983,1,84,'2021-09-10 02:13:12',0,NULL),(44983,1,85,'2021-09-10 02:13:17',0,NULL),(44983,1,164,'2021-10-14 05:45:58',0,17887),(44985,1,74,'2021-09-10 02:15:26',0,NULL),(44985,1,78,'2021-09-10 02:15:18',0,NULL),(44985,1,79,'2021-09-10 02:15:55',0,NULL),(44985,1,84,'2021-09-10 02:15:47',0,NULL),(44985,1,85,'2021-09-10 02:15:39',0,NULL),(44985,1,164,'2021-09-27 02:02:40',0,17934),(44987,1,74,'2021-09-10 02:19:31',0,NULL),(44987,1,78,'2021-09-10 02:19:50',0,NULL),(44987,1,79,'2021-09-10 02:20:16',0,NULL),(44987,1,84,'2021-09-10 02:20:39',0,NULL),(44987,1,85,'2021-09-10 02:20:32',0,NULL),(44987,1,164,'2021-09-27 02:03:15',0,17934),(45214,1,74,'2021-09-10 05:27:25',0,NULL),(45214,1,78,'2021-09-10 05:20:41',0,NULL),(45214,1,79,'2021-09-10 05:20:55',0,NULL),(45214,1,84,'2021-09-10 05:22:48',0,NULL),(45214,1,85,'2021-09-10 05:22:38',0,NULL),(45214,1,164,'2021-09-27 02:03:03',0,17934),(45216,1,74,'2021-09-10 05:36:24',0,NULL),(45216,1,78,'2021-09-10 05:37:44',0,NULL),(45216,1,164,'2021-09-27 02:36:56',0,17934),(45218,1,74,'2021-09-10 05:50:34',0,NULL),(45218,1,78,'2021-09-10 05:50:37',0,NULL),(45218,1,79,'2021-09-10 06:01:48',0,NULL),(45218,1,84,'2021-09-10 05:51:03',0,NULL),(45218,1,85,'2021-09-10 05:50:52',0,NULL),(45218,1,164,'2021-09-27 02:39:13',0,17934),(45220,1,74,'2021-09-10 06:03:00',0,NULL),(45220,1,78,'2021-09-10 06:04:06',0,NULL),(45220,1,79,'2021-09-10 06:04:19',0,NULL),(45220,1,84,'2021-09-10 06:04:44',0,NULL),(45220,1,85,'2021-09-10 06:04:33',0,NULL),(45220,1,164,'2021-09-27 02:02:06',0,17934),(45222,1,74,'2021-09-10 06:07:21',0,NULL),(45222,1,78,'2021-09-10 06:08:25',0,NULL),(45222,1,79,'2021-09-10 06:08:34',0,NULL),(45222,1,84,'2021-09-10 06:08:57',0,NULL),(45222,1,85,'2021-09-10 06:08:50',0,NULL),(45222,1,164,'2021-10-14 05:48:03',0,17887),(45223,1,120,'2021-09-10 06:09:10',0,1),(45249,1,189,'2021-09-13 22:24:13',0,1),(45249,1,191,'2021-09-10 07:17:17',0,1),(45298,1,94,'2022-02-08 23:32:12',0,17956),(45298,1,95,'2022-02-08 23:32:12',0,17956),(45298,1,96,'2022-02-08 23:32:12',0,17956),(45298,1,97,'2022-02-08 23:32:12',0,17956),(45298,1,98,'2022-02-08 23:32:12',0,17956),(45298,1,99,'2022-02-08 23:32:12',0,17956),(45298,1,100,'2022-02-08 23:32:12',0,17956),(45298,1,101,'2022-02-08 23:32:12',0,17956),(45298,1,102,'2022-02-08 23:32:12',0,17956),(45298,1,103,'2022-02-08 23:32:12',0,17956),(45298,1,104,'2022-02-08 23:32:12',0,17956),(45298,1,105,'2022-02-08 23:32:12',0,17956),(45298,1,106,'2022-02-08 23:32:12',0,17956),(45298,1,107,'2022-02-08 23:32:12',0,17956),(45298,1,108,'2022-02-08 23:32:12',0,17956),(45298,1,109,'2022-02-08 23:32:12',0,17956),(45298,1,110,'2022-02-08 23:32:12',0,17956),(45298,1,112,'2022-02-08 23:32:12',0,17956),(45298,1,113,'2022-02-08 23:32:12',0,17956),(45298,1,114,'2022-02-08 23:32:12',0,17956),(45298,1,115,'2022-02-08 23:32:12',0,17956),(45298,1,116,'2022-02-08 23:32:12',0,17956),(45298,1,117,'2022-02-08 23:32:12',0,17956),(45298,1,118,'2022-02-08 23:32:12',0,17956),(45346,1,94,'2021-09-28 09:48:01',0,45225),(45346,1,95,'2021-09-28 09:48:01',0,45225),(45346,1,96,'2021-09-28 09:48:01',0,45225),(45346,1,97,'2021-09-28 09:48:01',0,45225),(45346,1,98,'2021-09-28 09:48:01',0,45225),(45346,1,99,'2021-09-28 09:48:01',0,45225),(45346,1,100,'2021-09-28 09:48:01',0,45225),(45346,1,101,'2021-09-28 09:48:01',0,45225),(45346,1,102,'2021-09-28 09:48:01',0,45225),(45346,1,103,'2021-09-28 09:48:01',0,45225),(45346,1,104,'2021-09-28 09:48:01',0,45225),(45346,1,105,'2021-09-28 09:48:01',0,45225),(45346,1,106,'2021-09-28 09:48:01',0,45225),(45346,1,107,'2021-09-28 09:48:01',0,45225),(45346,1,108,'2021-09-28 09:48:01',0,45225),(45346,1,109,'2021-09-28 09:48:01',0,45225),(45346,1,110,'2021-09-28 09:48:01',0,45225),(45346,1,112,'2021-09-28 09:48:01',0,45225),(45346,1,113,'2021-09-28 09:48:01',0,45225),(45346,1,114,'2021-09-28 09:48:01',0,45225),(45346,1,115,'2021-09-28 09:48:01',0,45225),(45346,1,116,'2021-09-28 09:48:01',0,45225),(45346,1,117,'2021-09-28 09:48:01',0,45225),(45346,1,118,'2021-09-28 09:48:01',0,45225),(48003,1,69,'2021-09-27 06:53:04',0,17934),(48003,1,85,'2021-09-27 22:57:51',0,17887),(48003,1,164,'2022-08-08 06:56:05',0,17887),(48003,1,184,'2021-09-27 22:58:41',0,17887),(48003,1,195,'2021-11-09 01:39:33',0,1),(48003,1,196,'2021-11-09 01:39:33',0,1),(48003,1,197,'2021-11-09 01:39:33',0,1),(48003,1,198,'2021-11-09 01:39:33',0,1),(48003,1,199,'2021-11-09 01:39:33',0,1),(48011,1,69,'2022-09-20 03:33:03',0,17934),(48011,1,85,'2022-09-15 03:43:28',0,17934),(48011,1,164,'2022-11-17 00:21:54',0,17887),(48011,1,184,'2022-09-20 00:52:20',0,17934),(48011,1,195,'2022-09-20 02:59:41',0,17887),(48011,1,196,'2022-09-20 21:44:15',0,17887),(48011,1,197,'2022-02-08 00:50:47',0,1),(48011,1,198,'2022-09-20 03:33:03',0,17934),(48011,1,199,'2022-02-08 00:50:47',0,1),(48017,1,94,'2021-09-27 04:07:34',0,45223),(48017,1,95,'2021-09-27 04:07:34',0,45223),(48017,1,96,'2021-09-27 04:07:34',0,45223),(48017,1,97,'2021-09-27 04:07:34',0,45223),(48017,1,98,'2021-09-27 04:07:34',0,45223),(48017,1,99,'2021-09-27 04:07:34',0,45223),(48017,1,100,'2021-09-27 04:07:34',0,45223),(48017,1,101,'2021-09-27 04:07:34',0,45223),(48017,1,102,'2021-09-27 04:07:34',0,45223),(48017,1,103,'2021-09-27 04:07:34',0,45223),(48017,1,104,'2021-09-27 04:07:34',0,45223),(48017,1,105,'2021-09-27 04:07:34',0,45223),(48017,1,106,'2021-09-27 04:07:34',0,45223),(48017,1,107,'2021-09-27 04:07:34',0,45223),(48017,1,108,'2021-09-27 04:07:34',0,45223),(48017,1,109,'2021-09-27 04:07:34',0,45223),(48017,1,110,'2021-09-27 04:07:34',0,45223),(48017,1,112,'2021-09-27 04:07:34',0,45223),(48017,1,113,'2021-09-27 04:07:34',0,45223),(48017,1,114,'2021-09-27 04:07:34',0,45223),(48017,1,115,'2021-09-27 04:07:34',0,45223),(48017,1,116,'2021-09-27 04:07:34',0,45223),(48017,1,117,'2021-09-27 04:07:34',0,45223),(48017,1,118,'2021-09-27 04:07:34',0,45223),(48262,1,164,'2022-08-08 06:09:47',0,17887),(48411,1,69,'2021-09-27 23:12:39',0,17887),(48411,1,164,'2021-09-27 23:14:08',0,17887),(48411,1,184,'2021-09-27 23:14:08',0,17887),(48417,1,94,'2021-09-28 02:00:46',0,45226),(48417,1,95,'2021-09-28 02:00:46',0,45226),(48417,1,96,'2021-09-28 02:00:46',0,45226),(48417,1,97,'2021-09-28 02:00:46',0,45226),(48417,1,98,'2021-09-28 02:00:46',0,45226),(48417,1,99,'2021-09-28 02:00:46',0,45226),(48417,1,100,'2021-09-28 02:00:46',0,45226),(48417,1,101,'2021-09-28 02:00:46',0,45226),(48417,1,102,'2021-09-28 02:00:46',0,45226),(48417,1,103,'2021-09-28 02:00:46',0,45226),(48417,1,104,'2021-09-28 02:00:46',0,45226),(48417,1,105,'2021-09-28 02:00:46',0,45226),(48417,1,106,'2021-09-28 02:00:46',0,45226),(48417,1,107,'2021-09-28 02:00:46',0,45226),(48417,1,108,'2021-09-28 02:00:46',0,45226),(48417,1,109,'2021-09-28 02:00:46',0,45226),(48417,1,110,'2021-09-28 02:00:46',0,45226),(48417,1,112,'2021-09-28 02:00:46',0,45226),(48417,1,113,'2021-09-28 02:00:46',0,45226),(48417,1,114,'2021-09-28 02:00:46',0,45226),(48417,1,115,'2021-09-28 02:00:46',0,45226),(48417,1,116,'2021-09-28 02:00:46',0,45226),(48417,1,117,'2021-09-28 02:00:46',0,45226),(48417,1,118,'2021-09-28 02:00:46',0,45226),(51531,1,190,'2021-11-08 02:53:33',0,1),(58762,1,69,'2022-02-09 00:57:55',0,1),(58762,1,74,'2021-10-01 06:46:52',0,NULL),(58762,1,78,'2021-10-01 06:50:42',0,NULL),(58762,1,84,'2021-10-01 06:51:29',0,NULL),(58762,1,85,'2021-10-01 06:51:23',0,NULL),(58762,1,164,'2022-05-30 01:20:36',0,1),(58762,1,195,'2022-02-09 00:57:55',0,1),(58762,1,196,'2022-02-09 00:57:55',0,1),(58762,1,197,'2022-02-09 00:57:55',0,1),(58762,1,198,'2022-02-09 00:57:55',0,1),(58762,1,199,'2022-02-09 00:57:55',0,1),(74162,1,164,'2021-11-09 23:44:01',0,1),(74168,1,164,'2021-11-11 01:05:49',0,17887),(74168,1,195,'2021-11-11 01:05:49',0,17887),(74168,1,196,'2021-11-11 01:05:49',0,17887),(74168,1,197,'2021-11-11 01:05:49',0,17887),(74168,1,198,'2021-11-11 01:05:49',0,17887),(74168,1,199,'2021-11-11 01:05:49',0,17887),(74275,1,164,'2021-11-15 01:48:59',0,1),(74276,1,72,'2022-12-01 07:16:44',0,17875),(74286,1,164,'2021-11-24 05:30:59',0,1),(87608,1,74,'2021-12-10 01:13:40',0,1),(87608,1,164,'2021-12-10 03:35:23',0,1),(87608,1,195,'2021-12-10 03:35:23',0,1),(87608,1,196,'2021-12-10 03:35:23',0,1),(87608,1,197,'2021-12-10 03:35:23',0,1),(87608,1,198,'2021-12-10 03:35:23',0,1),(87608,1,199,'2021-12-10 03:35:23',0,1),(87608,1,201,'2021-12-10 03:35:23',0,1),(87608,1,202,'2021-12-10 03:35:23',0,1),(87608,1,203,'2021-12-10 03:35:23',0,1),(87608,1,204,'2021-12-10 03:35:23',0,1),(94201,1,164,'2021-12-21 06:38:04',0,17934),(94201,1,195,'2021-12-21 06:38:04',0,17934),(94201,1,196,'2021-12-21 06:38:04',0,17934),(94201,1,197,'2021-12-21 06:38:04',0,17934),(94201,1,198,'2021-12-21 06:38:04',0,17934),(94201,1,199,'2021-12-21 06:38:04',0,17934),(94223,1,94,'2022-01-17 03:55:39',0,17893),(94223,1,95,'2022-01-17 03:55:39',0,17893),(94223,1,96,'2022-01-17 03:55:39',0,17893),(94223,1,97,'2022-01-17 03:55:39',0,17893),(94223,1,98,'2022-01-17 03:55:39',0,17893),(94223,1,99,'2022-01-17 03:55:39',0,17893),(94223,1,100,'2022-01-17 03:55:39',0,17893),(94223,1,101,'2022-01-17 03:55:39',0,17893),(94223,1,102,'2022-01-17 03:55:39',0,17893),(94223,1,103,'2022-01-17 03:55:39',0,17893),(94223,1,104,'2022-01-17 03:55:39',0,17893),(94223,1,105,'2022-01-17 03:55:39',0,17893),(94223,1,106,'2022-01-17 03:55:39',0,17893),(94223,1,107,'2022-01-17 03:55:39',0,17893),(94223,1,108,'2022-01-17 03:55:39',0,17893),(94223,1,109,'2022-01-17 03:55:39',0,17893),(94223,1,110,'2022-01-17 03:55:39',0,17893),(94223,1,112,'2022-01-17 03:55:39',0,17893),(94223,1,113,'2022-01-17 03:55:39',0,17893),(94223,1,114,'2022-01-17 03:55:39',0,17893),(94223,1,115,'2022-01-17 03:55:39',0,17893),(94223,1,116,'2022-01-17 03:55:39',0,17893),(94223,1,117,'2022-01-17 03:55:39',0,17893),(94223,1,118,'2022-01-17 03:55:39',0,17893),(97259,1,75,'2023-03-09 04:28:33',0,17875),(97259,1,76,'2023-03-09 04:28:33',0,17875),(97259,1,81,'2023-03-09 04:28:33',0,17875),(97259,1,120,'2023-03-09 04:28:33',0,17875),(97259,1,172,'2023-03-09 04:28:33',0,17875),(97259,1,183,'2023-03-09 04:28:33',0,17875),(97259,1,219,'2023-03-09 04:28:33',0,17875),(97259,1,220,'2023-03-09 04:28:33',0,17875),(97260,1,82,'2023-03-09 04:28:33',0,17875),(97260,1,83,'2023-03-09 04:28:33',0,17875),(97261,1,82,'2023-03-09 04:28:33',0,17875),(97261,1,83,'2023-03-09 04:28:33',0,17875),(97262,1,82,'2023-03-09 04:28:33',0,17875),(97262,1,83,'2023-03-09 04:28:33',0,17875),(97263,1,82,'2023-03-09 04:28:33',0,17875),(97263,1,83,'2023-03-09 04:28:33',0,17875),(97264,1,82,'2023-03-09 04:28:33',0,17875),(97264,1,83,'2023-03-09 04:28:33',0,17875),(97276,1,164,'2022-02-08 03:26:36',0,17887),(97276,1,195,'2022-02-08 03:26:36',0,17887),(97276,1,196,'2022-02-08 03:26:36',0,17887),(97276,1,197,'2022-02-08 03:26:36',0,17887),(97276,1,198,'2022-02-08 03:26:36',0,17887),(97276,1,199,'2022-02-08 03:26:36',0,17887),(97284,1,164,'2022-02-08 03:43:46',0,17875),(97284,1,195,'2022-02-08 03:43:46',0,17875),(97284,1,196,'2022-02-08 03:43:46',0,17875),(97284,1,197,'2022-02-08 03:43:46',0,17875),(97284,1,198,'2022-02-08 03:43:46',0,17875),(97284,1,199,'2022-02-08 03:43:46',0,17875),(139967,1,69,'2022-05-30 01:42:17',0,1),(139967,1,74,'2022-04-21 05:59:35',0,17887),(139967,1,78,'2022-04-21 05:59:35',0,17887),(139967,1,164,'2022-08-15 02:54:42',0,1),(139967,1,195,'2022-05-30 01:42:17',0,1),(139967,1,196,'2022-05-30 01:42:17',0,1),(139967,1,197,'2022-04-26 01:35:01',0,17887),(139967,1,198,'2022-05-30 01:42:17',0,1),(139967,1,199,'2022-04-26 01:35:01',0,17887),(139973,1,164,'2022-04-21 04:17:15',0,17934),(139973,1,195,'2022-04-21 04:17:15',0,17934),(139973,1,196,'2022-04-21 04:17:15',0,17934),(139973,1,197,'2022-04-21 04:17:15',0,17934),(139973,1,198,'2022-04-21 04:17:15',0,17934),(139973,1,199,'2022-04-21 04:17:15',0,17934),(140013,1,69,'2022-05-09 03:38:16',0,17934),(140013,1,74,'2022-05-05 23:50:07',0,17934),(140013,1,78,'2022-06-19 22:46:15',0,1),(140013,1,79,'2022-05-05 23:49:43',0,17934),(140013,1,164,'2022-08-12 03:38:45',0,17875),(140013,1,195,'2022-05-31 04:26:02',0,17934),(140013,1,196,'2022-05-31 04:26:02',0,17934),(140013,1,197,'2022-05-31 04:26:02',0,17934),(140013,1,198,'2022-05-31 04:26:02',0,17934),(140013,1,199,'2022-05-31 04:26:02',0,17934),(140032,1,164,'2022-05-06 00:48:47',0,17934),(140032,1,195,'2022-05-06 00:48:47',0,17934),(140032,1,196,'2022-05-06 00:48:47',0,17934),(140032,1,197,'2022-05-06 00:48:47',0,17934),(140032,1,198,'2022-05-06 00:48:47',0,17934),(140032,1,199,'2022-05-06 00:48:47',0,17934),(140060,1,69,'2022-06-02 03:48:39',0,17934),(140060,1,74,'2022-05-09 03:59:36',0,17934),(140060,1,78,'2022-05-09 03:59:40',0,17934),(140060,1,84,'2022-08-08 06:14:50',0,17887),(140060,1,85,'2022-08-08 06:14:50',0,17887),(140060,1,164,'2022-08-08 06:22:48',0,17887),(140060,1,195,'2022-06-29 02:24:20',0,17887),(140060,1,196,'2022-06-29 02:24:20',0,17887),(140060,1,197,'2022-05-12 06:39:12',0,17875),(140060,1,198,'2022-05-12 06:39:12',0,17875),(140060,1,199,'2022-05-12 06:39:12',0,17875),(140121,1,164,'2022-05-16 04:28:38',0,17887),(140121,1,195,'2022-05-16 04:28:38',0,17887),(140121,1,196,'2022-05-16 04:28:38',0,17887),(140121,1,197,'2022-05-16 04:28:38',0,17887),(140121,1,198,'2022-05-16 04:28:38',0,17887),(140121,1,199,'2022-05-16 04:28:38',0,17887),(140123,1,164,'2022-05-25 22:56:49',0,1),(140123,1,195,'2022-05-17 02:45:07',0,1),(140123,1,196,'2022-05-17 02:45:07',0,1),(140123,1,197,'2022-05-17 02:45:07',0,1),(140123,1,198,'2022-05-17 02:45:07',0,1),(140123,1,199,'2022-05-17 02:45:07',0,1),(140183,1,164,'2022-05-30 01:22:37',0,1),(140246,1,164,'2022-10-21 04:18:22',0,17875),(140246,1,195,'2022-08-05 06:09:43',0,1),(140246,1,196,'2022-08-05 06:09:43',0,1),(140246,1,197,'2022-08-05 06:09:43',0,1),(140246,1,198,'2022-08-05 06:09:43',0,1),(140246,1,199,'2022-08-05 06:09:43',0,1),(140428,1,164,'2022-06-14 03:32:37',0,1),(140513,1,75,'2022-08-08 22:46:46',0,17875),(140513,1,76,'2022-08-08 22:46:46',0,17875),(140513,1,81,'2022-08-08 22:46:46',0,17875),(140513,1,120,'2022-08-08 22:46:46',0,17875),(140513,1,172,'2022-08-08 22:46:46',0,17875),(140513,1,183,'2022-08-08 22:46:46',0,17875),(141312,1,8,'2022-09-14 23:00:46',0,17893),(141312,1,10,'2022-09-14 23:00:46',0,17893),(141312,1,11,'2022-09-14 23:00:46',0,17893),(141312,1,57,'2022-09-14 23:00:46',0,17893),(141312,1,58,'2022-09-14 23:00:46',0,17893),(141312,1,207,'2022-09-14 23:00:46',0,17893),(141314,1,8,'2022-09-14 23:00:47',0,17893),(141314,1,10,'2022-09-14 23:00:47',0,17893),(141314,1,11,'2022-09-14 23:00:47',0,17893),(141314,1,57,'2022-09-14 23:00:47',0,17893),(141314,1,58,'2022-09-14 23:00:47',0,17893),(141314,1,207,'2022-09-14 23:00:47',0,17893),(141316,1,8,'2022-09-14 23:00:48',0,17893),(141316,1,10,'2022-09-14 23:00:48',0,17893),(141316,1,11,'2022-09-14 23:00:48',0,17893),(141316,1,57,'2022-09-14 23:00:48',0,17893),(141316,1,58,'2022-09-14 23:00:48',0,17893),(141316,1,207,'2022-09-14 23:00:48',0,17893),(141318,1,8,'2022-09-14 23:00:49',0,17893),(141318,1,10,'2022-09-14 23:00:49',0,17893),(141318,1,11,'2022-09-14 23:00:49',0,17893),(141318,1,57,'2022-09-14 23:00:49',0,17893),(141318,1,58,'2022-09-14 23:00:49',0,17893),(141318,1,207,'2022-09-14 23:00:49',0,17893),(141320,1,8,'2022-09-14 23:00:50',0,17893),(141320,1,10,'2022-09-14 23:00:50',0,17893),(141320,1,11,'2022-09-14 23:00:50',0,17893),(141320,1,57,'2022-09-14 23:00:50',0,17893),(141320,1,58,'2022-09-14 23:00:50',0,17893),(141320,1,207,'2022-09-14 23:00:50',0,17893),(141322,1,8,'2022-09-14 23:00:51',0,17893),(141322,1,10,'2022-09-14 23:00:51',0,17893),(141322,1,11,'2022-09-14 23:00:51',0,17893),(141322,1,57,'2022-09-14 23:00:51',0,17893),(141322,1,58,'2022-09-14 23:00:51',0,17893),(141322,1,207,'2022-09-14 23:00:51',0,17893),(141324,1,8,'2022-09-14 23:00:52',0,17893),(141324,1,10,'2022-09-14 23:00:52',0,17893),(141324,1,11,'2022-09-14 23:00:52',0,17893),(141324,1,57,'2022-09-14 23:00:52',0,17893),(141324,1,58,'2022-09-14 23:00:52',0,17893),(141324,1,207,'2022-09-14 23:00:52',0,17893),(141326,1,8,'2022-09-14 23:00:53',0,17893),(141326,1,10,'2022-09-14 23:00:53',0,17893),(141326,1,11,'2022-09-14 23:00:53',0,17893),(141326,1,57,'2022-09-14 23:00:53',0,17893),(141326,1,58,'2022-09-14 23:00:53',0,17893),(141326,1,207,'2022-09-14 23:00:53',0,17893),(141328,1,8,'2022-09-14 23:00:54',0,17893),(141328,1,10,'2022-09-14 23:00:54',0,17893),(141328,1,11,'2022-09-14 23:00:54',0,17893),(141328,1,57,'2022-09-14 23:00:54',0,17893),(141328,1,58,'2022-09-14 23:00:54',0,17893),(141328,1,207,'2022-09-14 23:00:54',0,17893),(141330,1,8,'2022-09-14 23:00:55',0,17893),(141330,1,10,'2022-09-14 23:00:55',0,17893),(141330,1,11,'2022-09-14 23:00:55',0,17893),(141330,1,57,'2022-09-14 23:00:55',0,17893),(141330,1,58,'2022-09-14 23:00:55',0,17893),(141330,1,207,'2022-09-14 23:00:55',0,17893),(141332,1,8,'2022-09-14 23:00:56',0,17893),(141332,1,10,'2022-09-14 23:00:56',0,17893),(141332,1,11,'2022-09-14 23:00:56',0,17893),(141332,1,57,'2022-09-14 23:00:56',0,17893),(141332,1,58,'2022-09-14 23:00:56',0,17893),(141332,1,207,'2022-09-14 23:00:56',0,17893),(141334,1,8,'2022-09-14 23:00:57',0,17893),(141334,1,10,'2022-09-14 23:00:57',0,17893),(141334,1,11,'2022-09-14 23:00:57',0,17893),(141334,1,57,'2022-09-14 23:00:57',0,17893),(141334,1,58,'2022-09-14 23:00:57',0,17893),(141334,1,207,'2022-09-14 23:00:57',0,17893),(141336,1,8,'2022-09-14 23:00:58',0,17893),(141336,1,10,'2022-09-14 23:00:58',0,17893),(141336,1,11,'2022-09-14 23:00:58',0,17893),(141336,1,57,'2022-09-14 23:00:58',0,17893),(141336,1,58,'2022-09-14 23:00:58',0,17893),(141336,1,207,'2022-09-14 23:00:58',0,17893),(141338,1,8,'2022-09-14 23:00:59',0,17893),(141338,1,10,'2022-09-14 23:00:59',0,17893),(141338,1,11,'2022-09-14 23:00:59',0,17893),(141338,1,57,'2022-09-14 23:00:59',0,17893),(141338,1,58,'2022-09-14 23:00:59',0,17893),(141338,1,207,'2022-09-14 23:00:59',0,17893),(141340,1,8,'2022-09-14 23:01:00',0,17893),(141340,1,10,'2022-09-14 23:01:00',0,17893),(141340,1,11,'2022-09-14 23:01:00',0,17893),(141340,1,57,'2022-09-14 23:01:00',0,17893),(141340,1,58,'2022-09-14 23:01:00',0,17893),(141340,1,207,'2022-09-14 23:01:00',0,17893),(141342,1,8,'2022-09-14 23:01:01',0,17893),(141342,1,10,'2022-09-14 23:01:01',0,17893),(141342,1,11,'2022-09-14 23:01:01',0,17893),(141342,1,57,'2022-09-14 23:01:01',0,17893),(141342,1,58,'2022-09-14 23:01:01',0,17893),(141342,1,207,'2022-09-14 23:01:01',0,17893),(141344,1,8,'2022-09-14 23:01:02',0,17893),(141344,1,10,'2022-09-14 23:01:02',0,17893),(141344,1,11,'2022-09-14 23:01:02',0,17893),(141344,1,57,'2022-09-14 23:01:02',0,17893),(141344,1,58,'2022-09-14 23:01:02',0,17893),(141344,1,207,'2022-09-14 23:01:02',0,17893),(141346,1,8,'2022-09-14 23:01:03',0,17893),(141346,1,10,'2022-09-14 23:01:03',0,17893),(141346,1,11,'2022-09-14 23:01:03',0,17893),(141346,1,57,'2022-09-14 23:01:03',0,17893),(141346,1,58,'2022-09-14 23:01:03',0,17893),(141346,1,207,'2022-09-14 23:01:03',0,17893),(141348,1,8,'2022-09-14 23:01:03',0,17893),(141348,1,10,'2022-09-14 23:01:03',0,17893),(141348,1,11,'2022-09-14 23:01:03',0,17893),(141348,1,57,'2022-09-14 23:01:03',0,17893),(141348,1,58,'2022-09-14 23:01:03',0,17893),(141348,1,207,'2022-09-14 23:01:03',0,17893),(141350,1,8,'2022-09-14 23:01:04',0,17893),(141350,1,10,'2022-09-14 23:01:04',0,17893),(141350,1,11,'2022-09-14 23:01:04',0,17893),(141350,1,57,'2022-09-14 23:01:04',0,17893),(141350,1,58,'2022-09-14 23:01:04',0,17893),(141350,1,207,'2022-09-14 23:01:04',0,17893),(141352,1,8,'2022-09-14 23:01:06',0,17893),(141352,1,10,'2022-09-14 23:01:06',0,17893),(141352,1,11,'2022-09-14 23:01:06',0,17893),(141352,1,57,'2022-09-14 23:01:06',0,17893),(141352,1,58,'2022-09-14 23:01:06',0,17893),(141352,1,207,'2022-09-14 23:01:06',0,17893),(141354,1,8,'2022-09-14 23:01:06',0,17893),(141354,1,10,'2022-09-14 23:01:06',0,17893),(141354,1,11,'2022-09-14 23:01:06',0,17893),(141354,1,57,'2022-09-14 23:01:06',0,17893),(141354,1,58,'2022-09-14 23:01:06',0,17893),(141354,1,207,'2022-09-14 23:01:06',0,17893),(141356,1,8,'2022-09-14 23:01:07',0,17893),(141356,1,10,'2022-09-14 23:01:07',0,17893),(141356,1,11,'2022-09-14 23:01:07',0,17893),(141356,1,57,'2022-09-14 23:01:07',0,17893),(141356,1,58,'2022-09-14 23:01:07',0,17893),(141356,1,207,'2022-09-14 23:01:07',0,17893),(141358,1,8,'2022-09-14 23:01:08',0,17893),(141358,1,10,'2022-09-14 23:01:08',0,17893),(141358,1,11,'2022-09-14 23:01:08',0,17893),(141358,1,57,'2022-09-14 23:01:08',0,17893),(141358,1,58,'2022-09-14 23:01:08',0,17893),(141358,1,207,'2022-09-14 23:01:08',0,17893),(141360,1,8,'2022-09-14 23:01:10',0,17893),(141360,1,10,'2022-09-14 23:01:10',0,17893),(141360,1,11,'2022-09-14 23:01:10',0,17893),(141360,1,57,'2022-09-14 23:01:10',0,17893),(141360,1,58,'2022-09-14 23:01:10',0,17893),(141360,1,207,'2022-09-14 23:01:10',0,17893),(141362,1,8,'2022-09-14 23:01:11',0,17893),(141362,1,10,'2022-09-14 23:01:11',0,17893),(141362,1,11,'2022-09-14 23:01:11',0,17893),(141362,1,57,'2022-09-14 23:01:11',0,17893),(141362,1,58,'2022-09-14 23:01:11',0,17893),(141362,1,207,'2022-09-14 23:01:11',0,17893),(141364,1,8,'2022-09-14 23:01:12',0,17893),(141364,1,10,'2022-09-14 23:01:12',0,17893),(141364,1,11,'2022-09-14 23:01:12',0,17893),(141364,1,57,'2022-09-14 23:01:12',0,17893),(141364,1,58,'2022-09-14 23:01:12',0,17893),(141364,1,207,'2022-09-14 23:01:12',0,17893),(141366,1,8,'2022-09-14 23:01:12',0,17893),(141366,1,10,'2022-09-14 23:01:12',0,17893),(141366,1,11,'2022-09-14 23:01:12',0,17893),(141366,1,57,'2022-09-14 23:01:12',0,17893),(141366,1,58,'2022-09-14 23:01:12',0,17893),(141366,1,207,'2022-09-14 23:01:12',0,17893),(141368,1,8,'2022-09-14 23:01:14',0,17893),(141368,1,10,'2022-09-14 23:01:14',0,17893),(141368,1,11,'2022-09-14 23:01:14',0,17893),(141368,1,57,'2022-09-14 23:01:14',0,17893),(141368,1,58,'2022-09-14 23:01:14',0,17893),(141368,1,207,'2022-09-14 23:01:14',0,17893),(141370,1,8,'2022-09-14 23:01:15',0,17893),(141370,1,10,'2022-09-14 23:01:15',0,17893),(141370,1,11,'2022-09-14 23:01:15',0,17893),(141370,1,57,'2022-09-14 23:01:15',0,17893),(141370,1,58,'2022-09-14 23:01:15',0,17893),(141370,1,207,'2022-09-14 23:01:15',0,17893),(141372,1,8,'2022-09-14 23:01:16',0,17893),(141372,1,10,'2022-09-14 23:01:16',0,17893),(141372,1,11,'2022-09-14 23:01:16',0,17893),(141372,1,57,'2022-09-14 23:01:16',0,17893),(141372,1,58,'2022-09-14 23:01:16',0,17893),(141372,1,207,'2022-09-14 23:01:16',0,17893),(141374,1,8,'2022-09-14 23:01:17',0,17893),(141374,1,10,'2022-09-14 23:01:17',0,17893),(141374,1,11,'2022-09-14 23:01:17',0,17893),(141374,1,57,'2022-09-14 23:01:17',0,17893),(141374,1,58,'2022-09-14 23:01:17',0,17893),(141374,1,207,'2022-09-14 23:01:17',0,17893),(141376,1,8,'2022-09-14 23:01:18',0,17893),(141376,1,10,'2022-09-14 23:01:18',0,17893),(141376,1,11,'2022-09-14 23:01:18',0,17893),(141376,1,57,'2022-09-14 23:01:18',0,17893),(141376,1,58,'2022-09-14 23:01:18',0,17893),(141376,1,207,'2022-09-14 23:01:18',0,17893),(141378,1,8,'2022-09-14 23:01:18',0,17893),(141378,1,10,'2022-09-14 23:01:18',0,17893),(141378,1,11,'2022-09-14 23:01:18',0,17893),(141378,1,57,'2022-09-14 23:01:18',0,17893),(141378,1,58,'2022-09-14 23:01:18',0,17893),(141378,1,207,'2022-09-14 23:01:18',0,17893),(141380,1,8,'2022-09-14 23:01:19',0,17893),(141380,1,10,'2022-09-14 23:01:19',0,17893),(141380,1,11,'2022-09-14 23:01:19',0,17893),(141380,1,57,'2022-09-14 23:01:19',0,17893),(141380,1,58,'2022-09-14 23:01:19',0,17893),(141380,1,207,'2022-09-14 23:01:19',0,17893),(141382,1,8,'2022-09-14 23:01:20',0,17893),(141382,1,10,'2022-09-14 23:01:20',0,17893),(141382,1,11,'2022-09-14 23:01:20',0,17893),(141382,1,57,'2022-09-14 23:01:20',0,17893),(141382,1,58,'2022-09-14 23:01:20',0,17893),(141382,1,207,'2022-09-14 23:01:20',0,17893),(141384,1,8,'2022-09-14 23:01:21',0,17893),(141384,1,10,'2022-09-14 23:01:21',0,17893),(141384,1,11,'2022-09-14 23:01:21',0,17893),(141384,1,57,'2022-09-14 23:01:21',0,17893),(141384,1,58,'2022-09-14 23:01:21',0,17893),(141384,1,207,'2022-09-14 23:01:21',0,17893),(141386,1,8,'2022-09-14 23:01:22',0,17893),(141386,1,10,'2022-09-14 23:01:22',0,17893),(141386,1,11,'2022-09-14 23:01:22',0,17893),(141386,1,57,'2022-09-14 23:01:22',0,17893),(141386,1,58,'2022-09-14 23:01:22',0,17893),(141386,1,207,'2022-09-14 23:01:22',0,17893),(141388,1,8,'2022-09-14 23:01:23',0,17893),(141388,1,10,'2022-09-14 23:01:23',0,17893),(141388,1,11,'2022-09-14 23:01:23',0,17893),(141388,1,57,'2022-09-14 23:01:23',0,17893),(141388,1,58,'2022-09-14 23:01:23',0,17893),(141388,1,207,'2022-09-14 23:01:23',0,17893),(141390,1,8,'2022-09-14 23:01:25',0,17893),(141390,1,10,'2022-09-14 23:01:25',0,17893),(141390,1,11,'2022-09-14 23:01:25',0,17893),(141390,1,57,'2022-09-14 23:01:25',0,17893),(141390,1,58,'2022-09-14 23:01:25',0,17893),(141390,1,207,'2022-09-14 23:01:25',0,17893),(141392,1,8,'2022-09-14 23:01:25',0,17893),(141392,1,10,'2022-09-14 23:01:25',0,17893),(141392,1,11,'2022-09-14 23:01:25',0,17893),(141392,1,57,'2022-09-14 23:01:25',0,17893),(141392,1,58,'2022-09-14 23:01:25',0,17893),(141392,1,207,'2022-09-14 23:01:25',0,17893),(141394,1,8,'2022-09-14 23:01:26',0,17893),(141394,1,10,'2022-09-14 23:01:26',0,17893),(141394,1,11,'2022-09-14 23:01:26',0,17893),(141394,1,57,'2022-09-14 23:01:26',0,17893),(141394,1,58,'2022-09-14 23:01:26',0,17893),(141394,1,207,'2022-09-14 23:01:26',0,17893),(141396,1,8,'2022-09-14 23:01:27',0,17893),(141396,1,10,'2022-09-14 23:01:27',0,17893),(141396,1,11,'2022-09-14 23:01:27',0,17893),(141396,1,57,'2022-09-14 23:01:27',0,17893),(141396,1,58,'2022-09-14 23:01:27',0,17893),(141396,1,207,'2022-09-14 23:01:27',0,17893),(141398,1,8,'2022-09-14 23:01:29',0,17893),(141398,1,10,'2022-09-14 23:01:29',0,17893),(141398,1,11,'2022-09-14 23:01:29',0,17893),(141398,1,57,'2022-09-14 23:01:29',0,17893),(141398,1,58,'2022-09-14 23:01:29',0,17893),(141398,1,207,'2022-09-14 23:01:29',0,17893),(141400,1,8,'2022-09-14 23:01:30',0,17893),(141400,1,10,'2022-09-14 23:01:30',0,17893),(141400,1,11,'2022-09-14 23:01:30',0,17893),(141400,1,57,'2022-09-14 23:01:30',0,17893),(141400,1,58,'2022-09-14 23:01:30',0,17893),(141400,1,207,'2022-09-14 23:01:30',0,17893),(141402,1,8,'2022-09-14 23:01:31',0,17893),(141402,1,10,'2022-09-14 23:01:31',0,17893),(141402,1,11,'2022-09-14 23:01:31',0,17893),(141402,1,57,'2022-09-14 23:01:31',0,17893),(141402,1,58,'2022-09-14 23:01:31',0,17893),(141402,1,207,'2022-09-14 23:01:31',0,17893),(141404,1,8,'2022-09-14 23:01:32',0,17893),(141404,1,10,'2022-09-14 23:01:32',0,17893),(141404,1,11,'2022-09-14 23:01:32',0,17893),(141404,1,57,'2022-09-14 23:01:32',0,17893),(141404,1,58,'2022-09-14 23:01:32',0,17893),(141404,1,207,'2022-09-14 23:01:32',0,17893),(141406,1,8,'2022-09-14 23:01:33',0,17893),(141406,1,10,'2022-09-14 23:01:33',0,17893),(141406,1,11,'2022-09-14 23:01:33',0,17893),(141406,1,57,'2022-09-14 23:01:33',0,17893),(141406,1,58,'2022-09-14 23:01:33',0,17893),(141406,1,207,'2022-09-14 23:01:33',0,17893),(141408,1,8,'2022-09-14 23:01:34',0,17893),(141408,1,10,'2022-09-14 23:01:34',0,17893),(141408,1,11,'2022-09-14 23:01:34',0,17893),(141408,1,57,'2022-09-14 23:01:34',0,17893),(141408,1,58,'2022-09-14 23:01:34',0,17893),(141408,1,207,'2022-09-14 23:01:34',0,17893),(141410,1,8,'2022-09-14 23:01:35',0,17893),(141410,1,10,'2022-09-14 23:01:35',0,17893),(141410,1,11,'2022-09-14 23:01:35',0,17893),(141410,1,57,'2022-09-14 23:01:35',0,17893),(141410,1,58,'2022-09-14 23:01:35',0,17893),(141410,1,207,'2022-09-14 23:01:35',0,17893),(141412,1,8,'2022-09-14 23:01:36',0,17893),(141412,1,10,'2022-09-14 23:01:36',0,17893),(141412,1,11,'2022-09-14 23:01:36',0,17893),(141412,1,57,'2022-09-14 23:01:36',0,17893),(141412,1,58,'2022-09-14 23:01:36',0,17893),(141412,1,207,'2022-09-14 23:01:36',0,17893),(141414,1,8,'2022-09-14 23:01:37',0,17893),(141414,1,10,'2022-09-14 23:01:37',0,17893),(141414,1,11,'2022-09-14 23:01:37',0,17893),(141414,1,57,'2022-09-14 23:01:37',0,17893),(141414,1,58,'2022-09-14 23:01:37',0,17893),(141414,1,207,'2022-09-14 23:01:37',0,17893),(141416,1,8,'2022-09-14 23:01:38',0,17893),(141416,1,10,'2022-09-14 23:01:38',0,17893),(141416,1,11,'2022-09-14 23:01:38',0,17893),(141416,1,57,'2022-09-14 23:01:38',0,17893),(141416,1,58,'2022-09-14 23:01:38',0,17893),(141416,1,207,'2022-09-14 23:01:38',0,17893),(141418,1,8,'2022-09-14 23:01:38',0,17893),(141418,1,10,'2022-09-14 23:01:38',0,17893),(141418,1,11,'2022-09-14 23:01:38',0,17893),(141418,1,57,'2022-09-14 23:01:38',0,17893),(141418,1,58,'2022-09-14 23:01:38',0,17893),(141418,1,207,'2022-09-14 23:01:38',0,17893),(141420,1,8,'2022-09-14 23:01:40',0,17893),(141420,1,10,'2022-09-14 23:01:40',0,17893),(141420,1,11,'2022-09-14 23:01:40',0,17893),(141420,1,57,'2022-09-14 23:01:40',0,17893),(141420,1,58,'2022-09-14 23:01:40',0,17893),(141420,1,207,'2022-09-14 23:01:40',0,17893),(141422,1,8,'2022-09-14 23:01:41',0,17893),(141422,1,10,'2022-09-14 23:01:41',0,17893),(141422,1,11,'2022-09-14 23:01:41',0,17893),(141422,1,57,'2022-09-14 23:01:41',0,17893),(141422,1,58,'2022-09-14 23:01:41',0,17893),(141422,1,207,'2022-09-14 23:01:41',0,17893),(141424,1,8,'2022-09-14 23:01:41',0,17893),(141424,1,10,'2022-09-14 23:01:41',0,17893),(141424,1,11,'2022-09-14 23:01:41',0,17893),(141424,1,57,'2022-09-14 23:01:41',0,17893),(141424,1,58,'2022-09-14 23:01:41',0,17893),(141424,1,207,'2022-09-14 23:01:42',0,17893),(141426,1,8,'2022-09-14 23:01:43',0,17893),(141426,1,10,'2022-09-14 23:01:43',0,17893),(141426,1,11,'2022-09-14 23:01:43',0,17893),(141426,1,57,'2022-09-14 23:01:43',0,17893),(141426,1,58,'2022-09-14 23:01:43',0,17893),(141426,1,207,'2022-09-14 23:01:43',0,17893),(141428,1,8,'2022-09-14 23:01:45',0,17893),(141428,1,10,'2022-09-14 23:01:45',0,17893),(141428,1,11,'2022-09-14 23:01:45',0,17893),(141428,1,57,'2022-09-14 23:01:45',0,17893),(141428,1,58,'2022-09-14 23:01:45',0,17893),(141428,1,207,'2022-09-14 23:01:45',0,17893),(141430,1,8,'2022-09-14 23:01:46',0,17893),(141430,1,10,'2022-09-14 23:01:46',0,17893),(141430,1,11,'2022-09-14 23:01:46',0,17893),(141430,1,57,'2022-09-14 23:01:46',0,17893),(141430,1,58,'2022-09-14 23:01:46',0,17893),(141430,1,207,'2022-09-14 23:01:46',0,17893),(141432,1,8,'2022-09-14 23:01:47',0,17893),(141432,1,10,'2022-09-14 23:01:47',0,17893),(141432,1,11,'2022-09-14 23:01:47',0,17893),(141432,1,57,'2022-09-14 23:01:47',0,17893),(141432,1,58,'2022-09-14 23:01:47',0,17893),(141432,1,207,'2022-09-14 23:01:47',0,17893),(141434,1,8,'2022-09-14 23:01:48',0,17893),(141434,1,10,'2022-09-14 23:01:48',0,17893),(141434,1,11,'2022-09-14 23:01:48',0,17893),(141434,1,57,'2022-09-14 23:01:48',0,17893),(141434,1,58,'2022-09-14 23:01:48',0,17893),(141434,1,207,'2022-09-14 23:01:48',0,17893),(141436,1,8,'2022-09-14 23:01:49',0,17893),(141436,1,10,'2022-09-14 23:01:49',0,17893),(141436,1,11,'2022-09-14 23:01:49',0,17893),(141436,1,57,'2022-09-14 23:01:49',0,17893),(141436,1,58,'2022-09-14 23:01:49',0,17893),(141436,1,207,'2022-09-14 23:01:49',0,17893),(141438,1,8,'2022-09-14 23:01:49',0,17893),(141438,1,10,'2022-09-14 23:01:49',0,17893),(141438,1,11,'2022-09-14 23:01:49',0,17893),(141438,1,57,'2022-09-14 23:01:49',0,17893),(141438,1,58,'2022-09-14 23:01:49',0,17893),(141438,1,207,'2022-09-14 23:01:49',0,17893),(141440,1,8,'2022-09-14 23:01:50',0,17893),(141440,1,10,'2022-09-14 23:01:50',0,17893),(141440,1,11,'2022-09-14 23:01:50',0,17893),(141440,1,57,'2022-09-14 23:01:50',0,17893),(141440,1,58,'2022-09-14 23:01:50',0,17893),(141440,1,207,'2022-09-14 23:01:50',0,17893),(141442,1,8,'2022-09-14 23:01:51',0,17893),(141442,1,10,'2022-09-14 23:01:51',0,17893),(141442,1,11,'2022-09-14 23:01:51',0,17893),(141442,1,57,'2022-09-14 23:01:51',0,17893),(141442,1,58,'2022-09-14 23:01:51',0,17893),(141442,1,207,'2022-09-14 23:01:51',0,17893),(141444,1,8,'2022-09-14 23:01:52',0,17893),(141444,1,10,'2022-09-14 23:01:52',0,17893),(141444,1,11,'2022-09-14 23:01:52',0,17893),(141444,1,57,'2022-09-14 23:01:52',0,17893),(141444,1,58,'2022-09-14 23:01:52',0,17893),(141444,1,207,'2022-09-14 23:01:52',0,17893),(141446,1,8,'2022-09-14 23:01:53',0,17893),(141446,1,10,'2022-09-14 23:01:53',0,17893),(141446,1,11,'2022-09-14 23:01:53',0,17893),(141446,1,57,'2022-09-14 23:01:53',0,17893),(141446,1,58,'2022-09-14 23:01:53',0,17893),(141446,1,207,'2022-09-14 23:01:53',0,17893),(141448,1,8,'2022-09-14 23:01:54',0,17893),(141448,1,10,'2022-09-14 23:01:54',0,17893),(141448,1,11,'2022-09-14 23:01:54',0,17893),(141448,1,57,'2022-09-14 23:01:54',0,17893),(141448,1,58,'2022-09-14 23:01:54',0,17893),(141448,1,207,'2022-09-14 23:01:54',0,17893),(141450,1,8,'2022-09-14 23:01:55',0,17893),(141450,1,10,'2022-09-14 23:01:55',0,17893),(141450,1,11,'2022-09-14 23:01:55',0,17893),(141450,1,57,'2022-09-14 23:01:55',0,17893),(141450,1,58,'2022-09-14 23:01:55',0,17893),(141450,1,207,'2022-09-14 23:01:55',0,17893),(141452,1,8,'2022-09-14 23:01:56',0,17893),(141452,1,10,'2022-09-14 23:01:56',0,17893),(141452,1,11,'2022-09-14 23:01:56',0,17893),(141452,1,57,'2022-09-14 23:01:56',0,17893),(141452,1,58,'2022-09-14 23:01:56',0,17893),(141452,1,207,'2022-09-14 23:01:56',0,17893),(141454,1,8,'2022-09-14 23:01:57',0,17893),(141454,1,10,'2022-09-14 23:01:57',0,17893),(141454,1,11,'2022-09-14 23:01:57',0,17893),(141454,1,57,'2022-09-14 23:01:57',0,17893),(141454,1,58,'2022-09-14 23:01:57',0,17893),(141454,1,207,'2022-09-14 23:01:57',0,17893),(141456,1,8,'2022-09-14 23:01:58',0,17893),(141456,1,10,'2022-09-14 23:01:58',0,17893),(141456,1,11,'2022-09-14 23:01:58',0,17893),(141456,1,57,'2022-09-14 23:01:58',0,17893),(141456,1,58,'2022-09-14 23:01:58',0,17893),(141456,1,207,'2022-09-14 23:01:58',0,17893),(141458,1,8,'2022-09-14 23:01:59',0,17893),(141458,1,10,'2022-09-14 23:01:59',0,17893),(141458,1,11,'2022-09-14 23:01:59',0,17893),(141458,1,57,'2022-09-14 23:01:59',0,17893),(141458,1,58,'2022-09-14 23:01:59',0,17893),(141458,1,207,'2022-09-14 23:01:59',0,17893),(141460,1,8,'2022-09-14 23:02:00',0,17893),(141460,1,10,'2022-09-14 23:02:00',0,17893),(141460,1,11,'2022-09-14 23:02:00',0,17893),(141460,1,57,'2022-09-14 23:02:00',0,17893),(141460,1,58,'2022-09-14 23:02:00',0,17893),(141460,1,207,'2022-09-14 23:02:00',0,17893),(141462,1,8,'2022-09-14 23:02:01',0,17893),(141462,1,10,'2022-09-14 23:02:01',0,17893),(141462,1,11,'2022-09-14 23:02:01',0,17893),(141462,1,57,'2022-09-14 23:02:01',0,17893),(141462,1,58,'2022-09-14 23:02:01',0,17893),(141462,1,207,'2022-09-14 23:02:01',0,17893),(141464,1,8,'2022-09-14 23:02:02',0,17893),(141464,1,10,'2022-09-14 23:02:02',0,17893),(141464,1,11,'2022-09-14 23:02:02',0,17893),(141464,1,57,'2022-09-14 23:02:02',0,17893),(141464,1,58,'2022-09-14 23:02:02',0,17893),(141464,1,207,'2022-09-14 23:02:02',0,17893),(141466,1,8,'2022-09-14 23:02:02',0,17893),(141466,1,10,'2022-09-14 23:02:02',0,17893),(141466,1,11,'2022-09-14 23:02:02',0,17893),(141466,1,57,'2022-09-14 23:02:02',0,17893),(141466,1,58,'2022-09-14 23:02:02',0,17893),(141466,1,207,'2022-09-14 23:02:02',0,17893),(141468,1,8,'2022-09-14 23:02:03',0,17893),(141468,1,10,'2022-09-14 23:02:03',0,17893),(141468,1,11,'2022-09-14 23:02:03',0,17893),(141468,1,57,'2022-09-14 23:02:03',0,17893),(141468,1,58,'2022-09-14 23:02:03',0,17893),(141468,1,207,'2022-09-14 23:02:03',0,17893),(141470,1,8,'2022-09-14 23:02:04',0,17893),(141470,1,10,'2022-09-14 23:02:04',0,17893),(141470,1,11,'2022-09-14 23:02:04',0,17893),(141470,1,57,'2022-09-14 23:02:04',0,17893),(141470,1,58,'2022-09-14 23:02:04',0,17893),(141470,1,207,'2022-09-14 23:02:04',0,17893),(141472,1,8,'2022-09-14 23:02:05',0,17893),(141472,1,10,'2022-09-14 23:02:05',0,17893),(141472,1,11,'2022-09-14 23:02:05',0,17893),(141472,1,57,'2022-09-14 23:02:05',0,17893),(141472,1,58,'2022-09-14 23:02:05',0,17893),(141472,1,207,'2022-09-14 23:02:05',0,17893),(141474,1,8,'2022-09-14 23:02:06',0,17893),(141474,1,10,'2022-09-14 23:02:06',0,17893),(141474,1,11,'2022-09-14 23:02:06',0,17893),(141474,1,57,'2022-09-14 23:02:06',0,17893),(141474,1,58,'2022-09-14 23:02:06',0,17893),(141474,1,207,'2022-09-14 23:02:06',0,17893),(141476,1,8,'2022-09-14 23:02:06',0,17893),(141476,1,10,'2022-09-14 23:02:06',0,17893),(141476,1,11,'2022-09-14 23:02:06',0,17893),(141476,1,57,'2022-09-14 23:02:06',0,17893),(141476,1,58,'2022-09-14 23:02:06',0,17893),(141476,1,207,'2022-09-14 23:02:06',0,17893),(141478,1,8,'2022-09-14 23:02:07',0,17893),(141478,1,10,'2022-09-14 23:02:07',0,17893),(141478,1,11,'2022-09-14 23:02:07',0,17893),(141478,1,57,'2022-09-14 23:02:07',0,17893),(141478,1,58,'2022-09-14 23:02:07',0,17893),(141478,1,207,'2022-09-14 23:02:07',0,17893),(141486,1,74,'2022-08-08 06:16:57',0,17887),(141486,1,164,'2022-08-08 06:17:28',0,17887),(141493,1,69,'2022-06-29 02:23:01',0,1),(141493,1,74,'2022-06-28 00:45:36',0,17934),(141493,1,78,'2022-06-29 03:24:16',0,17887),(141493,1,85,'2022-08-08 06:16:07',0,17887),(141493,1,164,'2022-08-08 06:16:08',0,17887),(141493,1,195,'2022-06-29 02:24:36',0,17887),(141493,1,196,'2022-06-29 02:24:36',0,17887),(141493,1,198,'2022-06-29 02:23:00',0,1),(141511,1,164,'2022-06-28 01:51:24',0,141503),(141512,1,164,'2022-06-28 02:05:48',0,141503),(141533,1,69,'2022-06-29 01:46:40',0,1),(141533,1,164,'2023-03-31 03:56:55',0,17887),(141533,1,184,'2022-06-29 01:59:52',0,1),(141533,1,195,'2022-08-08 06:51:49',0,17887),(141533,1,196,'2023-03-30 23:07:39',0,17887),(141533,1,198,'2022-06-29 01:56:55',0,1),(141574,1,164,'2022-06-29 06:01:23',0,1),(141582,1,164,'2022-06-30 05:33:23',0,1),(141582,1,184,'2022-06-30 05:32:35',0,1),(141607,1,164,'2022-07-05 05:41:44',0,17893),(141616,1,75,'2023-03-09 04:28:28',0,17875),(141616,1,76,'2023-03-09 04:28:28',0,17875),(141616,1,81,'2023-03-09 04:28:28',0,17875),(141616,1,120,'2023-03-09 04:28:28',0,17875),(141616,1,172,'2023-03-09 04:28:28',0,17875),(141616,1,183,'2023-03-09 04:28:28',0,17875),(141616,1,219,'2023-03-09 04:28:28',0,17875),(141616,1,220,'2023-03-09 04:28:28',0,17875),(141617,1,82,'2023-03-09 04:28:28',0,17875),(141617,1,83,'2023-03-09 04:28:28',0,17875),(141618,1,82,'2023-03-09 04:28:28',0,17875),(141618,1,83,'2023-03-09 04:28:28',0,17875),(141619,1,82,'2023-03-09 04:28:28',0,17875),(141619,1,83,'2023-03-09 04:28:28',0,17875),(141620,1,82,'2023-03-09 04:28:28',0,17875),(141620,1,83,'2023-03-09 04:28:28',0,17875),(141621,1,82,'2023-03-09 04:28:28',0,17875),(141621,1,83,'2023-03-09 04:28:28',0,17875),(141642,1,75,'2023-03-09 04:28:37',0,17875),(141642,1,76,'2023-03-09 04:28:37',0,17875),(141642,1,81,'2023-03-09 04:28:37',0,17875),(141642,1,120,'2023-03-09 04:28:37',0,17875),(141642,1,172,'2023-03-09 04:28:37',0,17875),(141642,1,183,'2023-03-09 04:28:37',0,17875),(141642,1,219,'2023-03-09 04:28:37',0,17875),(141642,1,220,'2023-03-09 04:28:37',0,17875),(141662,1,164,'2022-08-08 06:44:51',0,17887),(141725,1,69,'2022-07-26 07:03:20',0,17934),(141725,1,74,'2022-07-26 05:31:15',0,17934),(141725,1,78,'2022-07-27 04:47:15',0,17887),(141725,1,79,'2022-09-15 06:42:56',0,17934),(141725,1,84,'2022-09-15 06:42:56',0,17934),(141725,1,164,'2022-11-16 22:17:09',0,17887),(141725,1,195,'2022-07-26 07:06:10',0,17934),(141725,1,196,'2022-07-26 07:06:10',0,17934),(141725,1,198,'2022-07-26 07:06:10',0,17934),(141776,1,164,'2022-08-25 04:29:25',0,17934),(141811,1,164,'2022-08-05 05:36:55',0,17934),(141913,1,164,'2022-08-08 07:07:53',0,17887),(141914,1,164,'2022-11-02 04:07:54',0,17887),(141915,1,82,'2023-03-09 04:28:37',0,17875),(141915,1,83,'2023-03-09 04:28:37',0,17875),(141916,1,82,'2023-03-09 04:28:37',0,17875),(141916,1,83,'2023-03-09 04:28:37',0,17875),(141917,1,82,'2023-03-09 04:28:37',0,17875),(141917,1,83,'2023-03-09 04:28:37',0,17875),(141918,1,82,'2023-03-09 04:28:37',0,17875),(141918,1,83,'2023-03-09 04:28:37',0,17875),(141919,1,82,'2023-03-09 04:28:37',0,17875),(141919,1,83,'2023-03-09 04:28:37',0,17875),(141925,1,69,'2022-08-15 05:27:51',0,17934),(141925,1,74,'2022-08-09 04:19:16',0,17934),(141925,1,78,'2022-08-25 02:31:18',0,17934),(141925,1,79,'2022-08-18 07:09:49',0,17875),(141925,1,164,'2022-11-16 22:17:00',0,17887),(141925,1,195,'2022-08-18 21:47:11',0,17887),(141925,1,196,'2022-11-16 22:17:00',0,17887),(141925,1,197,'2022-08-18 21:47:11',0,17887),(141925,1,198,'2022-08-18 07:07:33',0,17875),(142030,1,164,'2022-08-23 06:18:36',0,17887),(142036,1,164,'2022-08-24 06:39:08',0,17887),(142038,1,164,'2022-08-24 07:11:54',0,17887),(142039,1,75,'2023-03-09 04:28:28',0,17875),(142039,1,76,'2023-03-09 04:28:28',0,17875),(142039,1,81,'2023-03-09 04:28:28',0,17875),(142039,1,120,'2023-03-09 04:28:28',0,17875),(142039,1,172,'2023-03-09 04:28:28',0,17875),(142039,1,183,'2023-03-09 04:28:28',0,17875),(142039,1,219,'2023-03-09 04:28:28',0,17875),(142039,1,220,'2023-03-09 04:28:28',0,17875),(142040,1,82,'2023-03-09 04:28:28',0,17875),(142040,1,83,'2023-03-09 04:28:28',0,17875),(142051,1,164,'2022-08-25 02:31:27',0,17934),(142065,1,74,'2022-08-25 06:04:14',0,17934),(142065,1,78,'2022-08-25 06:04:22',0,17934),(142065,1,164,'2023-03-30 02:08:31',0,17934),(142065,1,195,'2023-03-30 23:10:32',0,17887),(142065,1,196,'2023-03-30 23:10:25',0,17887),(142243,1,8,'2022-09-14 23:02:08',0,17893),(142243,1,10,'2022-09-14 23:02:08',0,17893),(142243,1,11,'2022-09-14 23:02:08',0,17893),(142243,1,57,'2022-09-14 23:02:08',0,17893),(142243,1,58,'2022-09-14 23:02:08',0,17893),(142243,1,207,'2022-09-14 23:02:08',0,17893),(142245,1,8,'2022-09-14 23:02:09',0,17893),(142245,1,10,'2022-09-14 23:02:09',0,17893),(142245,1,11,'2022-09-14 23:02:09',0,17893),(142245,1,57,'2022-09-14 23:02:09',0,17893),(142245,1,58,'2022-09-14 23:02:09',0,17893),(142245,1,207,'2022-09-14 23:02:09',0,17893),(142247,1,8,'2022-09-14 23:02:10',0,17893),(142247,1,10,'2022-09-14 23:02:10',0,17893),(142247,1,11,'2022-09-14 23:16:37',0,17893),(142247,1,57,'2022-09-14 23:02:10',0,17893),(142247,1,58,'2022-09-14 23:16:08',0,17893),(142247,1,207,'2022-09-14 23:02:10',0,17893),(142251,1,69,'2022-10-05 03:56:34',0,17934),(142251,1,74,'2022-10-05 03:56:34',0,17934),(142251,1,78,'2022-10-05 03:56:34',0,17934),(142251,1,164,'2023-03-30 23:10:00',0,17887),(142251,1,195,'2022-11-16 22:17:35',0,17887),(142251,1,196,'2022-11-16 22:17:35',0,17887),(142258,1,69,'2022-10-23 23:50:16',0,17934),(142258,1,74,'2022-10-10 05:42:37',0,17934),(142258,1,78,'2022-10-27 04:16:33',0,17887),(142258,1,164,'2022-10-27 04:16:33',0,17887),(142258,1,195,'2022-11-16 22:16:13',0,17887),(142258,1,196,'2022-11-16 22:16:13',0,17887),(142258,1,198,'2022-11-16 22:16:13',0,17887),(142281,1,75,'2023-03-09 04:39:38',0,17875),(142281,1,76,'2023-03-09 04:39:38',0,17875),(142281,1,81,'2023-03-09 04:39:38',0,17875),(142281,1,120,'2023-03-09 04:39:38',0,17875),(142281,1,172,'2023-03-09 04:39:38',0,17875),(142281,1,183,'2023-03-09 04:39:38',0,17875),(142281,1,219,'2023-03-09 04:39:38',0,17875),(142281,1,220,'2023-03-09 04:39:38',0,17875),(142377,1,164,'2022-09-15 01:40:39',0,17934),(142387,1,164,'2022-09-15 23:02:06',0,142281),(142642,1,82,'2023-03-09 04:28:28',0,17875),(142642,1,83,'2023-03-09 04:28:28',0,17875),(142643,1,82,'2023-03-09 04:28:28',0,17875),(142643,1,83,'2023-03-09 04:28:28',0,17875),(142644,1,82,'2023-03-09 04:28:28',0,17875),(142644,1,83,'2023-03-09 04:28:28',0,17875),(142645,1,82,'2023-03-09 04:28:28',0,17875),(142645,1,83,'2023-03-09 04:28:28',0,17875),(142676,1,195,'2022-11-16 22:16:43',0,17887),(142676,1,196,'2022-11-16 22:16:43',0,17887),(142676,1,197,'2022-11-16 22:16:43',0,17887),(142676,1,198,'2022-11-16 22:16:43',0,17887),(142716,1,75,'2023-03-09 04:28:32',0,17875),(142716,1,76,'2023-03-09 04:28:32',0,17875),(142716,1,81,'2023-03-09 04:28:32',0,17875),(142716,1,120,'2023-03-09 04:28:32',0,17875),(142716,1,172,'2023-03-09 04:28:32',0,17875),(142716,1,183,'2023-03-09 04:28:32',0,17875),(142716,1,219,'2023-03-09 04:28:32',0,17875),(142716,1,220,'2023-03-09 04:28:32',0,17875),(142717,1,69,'2022-10-20 00:46:10',0,17934),(142717,1,85,'2022-10-18 01:02:30',0,142716),(142717,1,164,'2022-10-20 00:46:11',0,17934),(142717,1,184,'2022-10-20 00:46:10',0,17934),(142717,1,198,'2022-10-20 00:46:10',0,17934),(142754,1,164,'2022-10-18 01:27:34',0,142716),(142755,1,164,'2022-10-18 04:05:08',0,17887),(142756,1,164,'2022-10-18 04:05:10',0,17887),(142779,1,69,'2022-10-20 00:46:39',0,17934),(142779,1,164,'2022-10-20 00:50:31',0,17934),(142789,1,164,'2022-10-21 03:57:14',0,17893),(142801,1,69,'2022-10-21 06:40:35',0,17934),(142801,1,74,'2022-10-21 06:11:30',0,17934),(142801,1,78,'2022-10-21 06:11:44',0,17934),(142801,1,164,'2022-10-21 06:50:34',0,17934),(142833,1,69,'2022-10-25 03:29:25',0,17934),(142833,1,74,'2022-10-25 00:14:05',0,17934),(142833,1,78,'2022-10-25 00:14:13',0,17934),(142833,1,164,'2022-10-25 03:29:29',0,17934),(142833,1,195,'2022-11-16 22:18:05',0,17887),(142833,1,196,'2022-11-16 22:18:05',0,17887),(142833,1,198,'2022-11-16 22:18:05',0,17887),(142847,1,69,'2022-11-03 05:32:10',0,17934),(142847,1,164,'2023-04-03 01:08:13',0,17887),(142847,1,184,'2022-11-03 05:32:10',0,17934),(142847,1,198,'2022-11-03 05:33:05',0,17934),(142875,1,69,'2023-03-31 01:01:05',0,17934),(142875,1,74,'2023-03-30 06:26:20',0,17934),(142875,1,78,'2023-03-31 03:42:53',0,17887),(142875,1,84,'2023-03-30 23:05:48',0,17887),(142875,1,85,'2023-03-30 23:05:48',0,17887),(142875,1,164,'2023-03-31 03:42:53',0,17887),(142875,1,195,'2023-03-30 23:09:33',0,17887),(142875,1,196,'2023-03-30 23:09:33',0,17887),(142875,1,198,'2023-03-31 01:21:58',0,17934),(142901,1,69,'2022-11-07 05:06:23',0,17934),(142901,1,74,'2022-11-07 04:10:11',0,17934),(142901,1,78,'2022-11-07 04:10:16',0,17934),(142901,1,164,'2022-11-22 21:32:50',0,17887),(142901,1,195,'2022-11-16 22:15:23',0,17887),(142901,1,196,'2022-11-16 22:15:23',0,17887),(142901,1,197,'2022-11-16 03:44:31',0,17875),(142901,1,198,'2022-11-16 03:44:31',0,17875),(142917,1,164,'2022-11-07 05:23:40',0,17887),(142947,1,82,'2023-03-09 04:28:32',0,17875),(142947,1,83,'2023-03-09 04:28:32',0,17875),(142948,1,82,'2023-03-09 04:28:32',0,17875),(142948,1,83,'2023-03-09 04:28:32',0,17875),(142949,1,82,'2023-03-09 04:28:32',0,17875),(142949,1,83,'2023-03-09 04:28:32',0,17875),(142950,1,82,'2023-03-09 04:28:32',0,17875),(142950,1,83,'2023-03-09 04:28:32',0,17875),(142951,1,82,'2023-03-09 04:28:32',0,17875),(142951,1,83,'2023-03-09 04:28:32',0,17875),(142977,1,164,'2022-11-17 00:09:19',0,17934),(142987,1,164,'2022-11-17 00:15:50',0,17934),(143005,1,164,'2022-11-18 06:43:10',0,17875),(143017,1,164,'2022-11-25 04:38:47',0,17875),(143018,1,164,'2022-11-25 04:39:03',0,17875),(143021,1,74,'2022-12-01 07:05:07',0,17875),(143021,1,78,'2022-12-01 06:20:14',0,17875),(143021,1,164,'2022-12-01 07:04:26',0,17875),(143021,1,195,'2022-12-01 06:58:42',0,17875),(143021,1,196,'2022-12-01 06:58:49',0,17875),(143021,1,198,'2022-12-01 06:22:36',0,17875),(143021,1,199,'2022-12-01 06:58:56',0,17875),(143021,1,201,'2022-12-01 06:58:35',0,17875),(143021,1,202,'2022-12-01 06:22:52',0,17875),(143021,1,203,'2022-11-25 05:15:06',0,17875),(143021,1,204,'2022-12-01 06:23:12',0,17875),(143022,1,164,'2022-11-25 06:29:05',0,17875),(143057,1,164,'2022-12-20 00:34:44',0,17887),(143060,1,74,'2023-01-09 02:27:18',0,17887),(143060,1,164,'2023-01-09 02:27:18',0,17887),(143066,1,164,'2023-01-09 02:28:03',0,17887),(143069,1,164,'2023-01-10 00:57:19',0,17887),(143080,1,74,'2023-02-27 02:01:14',0,17875),(143080,1,78,'2023-02-28 07:09:22',0,17875),(143080,1,164,'2023-03-01 02:12:26',0,140513),(143080,1,201,'2023-03-01 01:10:05',0,140513),(143080,1,202,'2023-03-01 01:10:05',0,140513),(143080,1,203,'2023-03-01 01:10:05',0,140513),(143080,1,204,'2023-03-01 01:10:05',0,140513),(143080,1,218,'2023-03-01 02:26:34',0,140513),(143094,1,164,'2023-03-01 02:21:20',0,140513),(143103,1,164,'2023-03-09 03:29:02',0,140513),(143104,1,164,'2023-03-09 03:31:12',0,140513),(143105,1,164,'2023-03-09 03:31:20',0,140513),(143106,1,164,'2023-03-09 03:31:24',0,140513),(143107,1,164,'2023-03-09 03:31:29',0,140513),(143108,1,164,'2023-03-09 03:30:18',0,140513),(143109,1,164,'2023-03-09 03:30:21',0,140513),(143110,1,164,'2023-03-09 03:31:16',0,140513),(143111,1,164,'2023-03-09 03:31:32',0,140513),(143112,1,164,'2023-03-09 03:31:39',0,140513),(143113,1,164,'2023-03-09 03:31:43',0,140513),(143114,1,164,'2023-03-09 03:31:45',0,140513),(143115,1,164,'2023-03-09 03:31:47',0,140513),(143116,1,164,'2023-03-09 03:31:51',0,140513),(143117,1,164,'2023-03-09 03:31:54',0,140513),(143127,1,164,'2023-03-10 00:19:17',0,140513),(143128,1,164,'2023-03-10 00:39:27',0,140513),(143139,1,69,'2023-03-29 03:54:12',0,17887),(143139,1,164,'2023-03-31 03:59:37',0,17887),(143139,1,184,'2023-03-29 03:54:12',0,17887),(143139,1,195,'2023-03-31 03:39:22',0,17887),(143139,1,196,'2023-03-30 23:07:15',0,17887),(143139,1,198,'2023-03-30 23:07:15',0,17887);
/*!40000 ALTER TABLE `changedfields` 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,'2021-03-30 06:11:45','2022-10-24 23:08:02','620d3254-4dbb-4a21-b908-5ed62aff0488',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Full-stack developer',NULL,NULL,NULL,'#### Ryan has more than a decade’s experience as a full-stack developer. \n\nOver that time he has worked with many systems and frameworks to help clients achieve their goals. Ryan has a passion for problem solving and delivering the best solutions for clients.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.linkedin.com/in/ryan2407/',NULL,NULL,NULL,NULL,'blue',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(14833,14833,1,'James McIlwraith - Brand Audit','2021-04-22 23:29:35','2021-04-22 23:29:35','0b68cd53-da69-4a26-b208-6e1e073ac660',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16568,16571,1,'Revelian','2021-05-14 06:43:31','2022-08-12 03:46:46','8490436b-c3c6-435b-b2c2-6790f18d9a7e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'It’s all about the reveal, especially for a brand that reveals truth as their core business. Revelian uncovers the hidden, delves inside and goes beneath the surface to reveal the truth inside people, for businesses and organisations wanting to hire people well, and utilise them well',NULL,NULL,'The big reveal',NULL,NULL,'Revelian is a charismatic player in the field of business talent identification and assessment. We told Revelian’s story by rolling out a suite of new brand tools and using a powerful visual metaphor for the outcomes their customers gain.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wVL1kj40Jr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47639\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3ldwVmO5X2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"A beautiful partnership\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our goal was to position and powerfully differentiate this business from its competitors. The branding achieves this and binds Revelian’s internal team more closely to its purpose and business objectives. In doing so, it ensures current and prospective customers and partners can access, understand—and most importantly—prefer Revelian and its offering.\\n\\nOverall, our rollout for Revelian was staged and achievable, allowing the client to adjust and update their brand over time. This approach remains cost-effective for our client and has allowed us to work with them closely with key stakeholders to ensure we are meeting their needs and creating value for their investment.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-88fP2RTozJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47641\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-l0m2MRWrk9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"A new brand story to tell\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The Revelian brand story centres around the stories of their prospective customers—those who require business talent identification and assessment. Revelian’s narrative guides these customers along a compelling journey. It reads like any good treasure hunt should: the hunter driven by the thrill of next step and the genuine promise of quality and authenticity.\\n\\nThe intrigue and complexity of human behaviour is a fascinating topic that most of us explore throughout our daily life and work. Revelian uncovers the hidden, delves inside and goes beneath the surface to reveal the truth inside people, for businesses and organisations wanting to hire people well, and utilise them well.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3wNj8vd0Xj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/317380021?h=7cf79dbb3e&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-zVMqQZyrh0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"A refreshing approach\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As we refreshed their brand, we wrapped every element in the concept of ‘reveal’. The idea flows consistently throughout every aspect of the Revelian brand: we’ll start on the surface and delve deeper into the intrigue of human behaviour and insights for hiring and people management solutions.\\n\\nWhile the logo remains simple, strong and typographic, the visual elements have starring roles. Using filters, colours, photography and myriad gorgeous design treatments, they show and tell how the company reveals its precious insights.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WxJNoxzJXO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47642\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UCB7SM9ORH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strong, productive relationships\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our successful working relationship with the client has been key to forming the initial strategy for their brand development, website, collateral and exhibition development.\\n\\nOur team of creatives, developers and content specialists have enjoyed walking through this journey with Revelian.\\n\\nThe insights we’ve gained from this partnership have allowed us to produce work that performs to a very high standard within the agreed-upon scope, budget and timeframe.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kBhhzN53nM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47643\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FzPUJWQp19\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"A new front door\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"After refreshing their brand, we began redeveloping the Revelian website. To start with, we created a content strategy based on customer journeys and key messages. \\n\\nOur team of content specialists worked with the client to edit and review web copy for pages on the website. \\n\\nWith copy and wireframes ready and approved for development, our digital team applied the refreshed branding across the website.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Revelian','We told Revelian’s story by rolling out a suite of new brand tools and using a powerful visual metaphor for the outcomes their customers gain.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16569,16573,1,'The big reveal','2021-05-14 06:43:31','2021-05-14 06:43:31','939e5be1-e9f3-4892-b63d-f0516dae0fe5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'It’s all about the reveal, especially for a brand that reveals truth as their core business. Revelian uncovers the hidden, delves inside and goes beneath the surface to reveal the truth inside people, for businesses and organisations wanting to hire people well, and utilise them well.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16571,16578,1,'The big reveal','2021-05-17 05:37:57','2021-05-17 05:37:57','34272605-5dde-4f89-96d4-b337c60c2f1f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'It’s all about the reveal, especially for a brand that reveals truth as their core business. Revelian uncovers the hidden, delves inside and goes beneath the surface to reveal the truth inside people, for businesses and organisations wanting to hire people well, and utilise them well',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16572,16580,1,'The big reveal','2021-05-17 05:38:01','2021-05-17 05:38:01','0bf5fe60-6054-41ca-8195-9eb11fde4b9c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'It’s all about the reveal, especially for a brand that reveals truth as their core business. Revelian uncovers the hidden, delves inside and goes beneath the surface to reveal the truth inside people, for businesses and organisations wanting to hire people well, and utilise them well',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16575,16589,1,'The big reveal','2021-05-17 05:40:22','2021-05-17 05:40:22','6bfbbdbe-ea4d-45d5-b013-e1f01a62d9a1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'It’s all about the reveal, especially for a brand that reveals truth as their core business. Revelian uncovers the hidden, delves inside and goes beneath the surface to reveal the truth inside people, for businesses and organisations wanting to hire people well, and utilise them well',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16576,16592,1,'The big reveal','2021-05-17 05:40:26','2021-05-17 05:40:26','51e36ff8-1e7c-4c05-ae3f-7827c2f51b43',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'It’s all about the reveal, especially for a brand that reveals truth as their core business. Revelian uncovers the hidden, delves inside and goes beneath the surface to reveal the truth inside people, for businesses and organisations wanting to hire people well, and utilise them well',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16577,16595,1,'The big reveal','2021-05-17 05:41:16','2021-05-17 05:41:16','2f91b641-6dd7-4410-a0f1-cec782c1701d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'It’s all about the reveal, especially for a brand that reveals truth as their core business. Revelian uncovers the hidden, delves inside and goes beneath the surface to reveal the truth inside people, for businesses and organisations wanting to hire people well, and utilise them well',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16580,16604,1,'The big reveal','2021-05-17 05:42:46','2021-05-17 05:42:46','5b78024c-c80d-4e96-b165-56a29feeb236',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'It’s all about the reveal, especially for a brand that reveals truth as their core business. Revelian uncovers the hidden, delves inside and goes beneath the surface to reveal the truth inside people, for businesses and organisations wanting to hire people well, and utilise them well',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16581,16607,1,'The big reveal','2021-05-17 05:42:51','2021-05-17 05:42:51','2d113389-61b4-4bb6-badf-3590e67895b5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'It’s all about the reveal, especially for a brand that reveals truth as their core business. Revelian uncovers the hidden, delves inside and goes beneath the surface to reveal the truth inside people, for businesses and organisations wanting to hire people well, and utilise them well',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16583,16620,1,'The big reveal','2021-05-17 05:47:14','2021-05-17 05:47:14','0c059c1a-5272-47af-9434-f96186a3b79a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'It’s all about the reveal, especially for a brand that reveals truth as their core business. Revelian uncovers the hidden, delves inside and goes beneath the surface to reveal the truth inside people, for businesses and organisations wanting to hire people well, and utilise them well',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16586,16629,1,'Revelian 1','2021-05-17 06:01:34','2021-06-09 23:22:03','aae3a1ad-a893-4859-b7c0-54220b198cb2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1728_crop_center-center_82_line/revelian-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x1440_crop_center-center_82_line/revelian-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x1152_crop_center-center_82_line/revelian-1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x2304_crop_center-center_82_line/revelian-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x864_crop_center-center_82_line/revelian-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x720_crop_center-center_82_line/revelian-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1728_crop_center-center_82_line/revelian-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x1440_crop_center-center_82_line/revelian-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x1152_crop_center-center_82_line/revelian-1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x2304_crop_center-center_82_line/revelian-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x864_crop_center-center_82_line/revelian-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x720_crop_center-center_82_line/revelian-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1728,\"1280\":1440,\"1024\":1152,\"2048\":2304,\"768\":864,\"640\":720},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2400\",\"originalImageHeight\":\"2700\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A75jjA3AE9M1XW+tjeGz85TcBdxQDtXEX05DwD7bNLIEV2YyFtrdeD1H4VXR54t0ttPIG5ZirHcAT3PU81m6itc7Y4OTnyvRPqVaWJiJ0AJAIORnrxRRXPD4j28X/AAmf/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#40525b\",\"#e6242a\",\"#dccec9\",\"#8e5553\",\"#c38995\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":1728,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16587,16630,1,'Revelian 2','2021-05-17 06:02:27','2021-06-09 23:22:33','96d9d1b4-3e50-44aa-bb5b-b7589afcb3ce',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1296_crop_center-center_82_line/revelian-2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x1080_crop_center-center_82_line/revelian-2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x864_crop_center-center_82_line/revelian-2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x648_crop_center-center_82_line/revelian-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x540_crop_center-center_82_line/revelian-2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1296_crop_center-center_82_line/revelian-2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x1080_crop_center-center_82_line/revelian-2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x864_crop_center-center_82_line/revelian-2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x648_crop_center-center_82_line/revelian-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x540_crop_center-center_82_line/revelian-2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1296,\"1280\":1080,\"1024\":864,\"768\":648,\"640\":540},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1920\",\"originalImageHeight\":\"1620\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A4+jFFL2oKR//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#251c22\",\"#861933\",\"#5c1525\",\"#3f131c\",\"#30282c\"],\"lightness\":20,\"placeholderWidth\":1536,\"placeholderHeight\":1296,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16589,16638,1,'The big reveal','2021-05-17 06:03:01','2021-05-17 06:03:01','1d4bc69e-ccfc-4ffa-9c5d-683a12173977',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'It’s all about the reveal, especially for a brand that reveals truth as their core business. Revelian uncovers the hidden, delves inside and goes beneath the surface to reveal the truth inside people, for businesses and organisations wanting to hire people well, and utilise them well',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16591,16648,1,'Revelian 3','2021-05-17 06:05:04','2021-06-09 23:22:52','f371cd37-ed14-4e4a-88ca-97008f7f0f80',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1392_crop_center-center_82_line/revelian-3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x2784_crop_center-center_82_line/revelian-3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x1160_crop_center-center_82_line/revelian-3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x2320_crop_center-center_82_line/revelian-3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x928_crop_center-center_82_line/revelian-3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1856_crop_center-center_82_line/revelian-3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x696_crop_center-center_82_line/revelian-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x580_crop_center-center_82_line/revelian-3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1392_crop_center-center_82_line/revelian-3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x2784_crop_center-center_82_line/revelian-3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x1160_crop_center-center_82_line/revelian-3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x2320_crop_center-center_82_line/revelian-3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x928_crop_center-center_82_line/revelian-3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1856_crop_center-center_82_line/revelian-3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x696_crop_center-center_82_line/revelian-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x580_crop_center-center_82_line/revelian-3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1392,\"3072\":2784,\"1280\":1160,\"2560\":2320,\"1024\":928,\"2048\":1856,\"768\":696,\"640\":580},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"4800\",\"originalImageHeight\":\"4350\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A059buE1a/tA0EaWyqyl0JJyoPPzD1rRsr9rqRlKBQDjuD1xyD/8AXqC48P2txqMl80kqyyABgpGDgY9PalstDSzuhOt7dyHcWKyOCCSMc8f5wKWtytLH/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#262120\",\"#dfdad6\",\"#895547\",\"#ad7e63\",\"#918d87\"],\"lightness\":46,\"placeholderWidth\":1536,\"placeholderHeight\":1392,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16592,16654,1,'The big reveal','2021-05-17 06:05:33','2021-05-17 06:05:33','8fc1e812-5f2c-4616-b960-25fcdc4490b6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'It’s all about the reveal, especially for a brand that reveals truth as their core business. Revelian uncovers the hidden, delves inside and goes beneath the surface to reveal the truth inside people, for businesses and organisations wanting to hire people well, and utilise them well',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16594,16665,1,'Revelian 4','2021-05-17 06:06:53','2021-06-09 23:22:56','9021e629-52d1-4a9f-ac41-3eb7847b5e05',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/revelian-4.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x1728_crop_center-center_82_line/revelian-4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/revelian-4.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1440_crop_center-center_82_line/revelian-4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/revelian-4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1152_crop_center-center_82_line/revelian-4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/revelian-4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/revelian-4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/revelian-4.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x1728_crop_center-center_82_line/revelian-4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/revelian-4.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1440_crop_center-center_82_line/revelian-4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/revelian-4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1152_crop_center-center_82_line/revelian-4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/revelian-4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/revelian-4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"4800\",\"originalImageHeight\":\"2700\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AZc7L61cRu7ZxIsxBJVj09STzggevtVQyDTJgkrswQ+YrHkuG+9j+6Qf1780+0/4+5/8AryH81o1n/j90f/eP/stT1sX0P//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#bbaca5\",\"#1c1819\",\"#543330\",\"#6f4f40\",\"#685e58\"],\"lightness\":37,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16595,16669,1,'Revelian 5','2021-05-17 06:08:04','2021-06-09 23:23:00','25655e6e-bcfa-4045-ba4f-1577a0d104db',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1152_crop_center-center_82_line/revelian-5.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x2304_crop_center-center_82_line/revelian-5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x960_crop_center-center_82_line/revelian-5.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1920_crop_center-center_82_line/revelian-5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x768_crop_center-center_82_line/revelian-5.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1536_crop_center-center_82_line/revelian-5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x576_crop_center-center_82_line/revelian-5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x480_crop_center-center_82_line/revelian-5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1152_crop_center-center_82_line/revelian-5.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x2304_crop_center-center_82_line/revelian-5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x960_crop_center-center_82_line/revelian-5.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1920_crop_center-center_82_line/revelian-5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x768_crop_center-center_82_line/revelian-5.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1536_crop_center-center_82_line/revelian-5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x576_crop_center-center_82_line/revelian-5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x480_crop_center-center_82_line/revelian-5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"3072\":2304,\"1280\":960,\"2560\":1920,\"1024\":768,\"2048\":1536,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"4800\",\"originalImageHeight\":\"3600\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A1/Eurz6ULbyEd/NLZ2puxjH+NbrLtPWoLi0gutvnxLJt6Z7VNS6lyknFJbn/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e3e2e2\",\"#e51f27\",\"#110d0d\",\"#969595\",\"#fc7474\"],\"lightness\":57,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16596,16675,1,'Revelian 6','2021-05-17 06:09:35','2021-06-09 23:23:03','46bf5647-7892-4d5e-bf63-e90cd7165005',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/revelian-6.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x1728_crop_center-center_82_line/revelian-6.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/revelian-6.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1440_crop_center-center_82_line/revelian-6.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/revelian-6.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1152_crop_center-center_82_line/revelian-6.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/revelian-6.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/revelian-6.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/revelian-6.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x1728_crop_center-center_82_line/revelian-6.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/revelian-6.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1440_crop_center-center_82_line/revelian-6.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/revelian-6.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1152_crop_center-center_82_line/revelian-6.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/revelian-6.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/revelian-6.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"4800\",\"originalImageHeight\":\"2700\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Au6loPmeIII4reQ2U4LTtyRnnv27VX1DRVg8yDTrKZZN+WkOWDDnGPz/Su2/5Zt+NMH3B+FS43NY1ZJ3fTbyP/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ded5d3\",\"#2b2222\",\"#db2029\",\"#b55651\",\"#3898b0\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16597,16683,1,'Revelian 7','2021-05-17 06:10:57','2021-06-09 23:23:06','364e9ede-5f19-4f35-891b-4ac0e645c8b6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1296_crop_center-center_82_line/revelian-7.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x2592_crop_center-center_82_line/revelian-7.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x1080_crop_center-center_82_line/revelian-7.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x2160_crop_center-center_82_line/revelian-7.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x864_crop_center-center_82_line/revelian-7.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1728_crop_center-center_82_line/revelian-7.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x648_crop_center-center_82_line/revelian-7.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x540_crop_center-center_82_line/revelian-7.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1296_crop_center-center_82_line/revelian-7.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x2592_crop_center-center_82_line/revelian-7.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x1080_crop_center-center_82_line/revelian-7.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x2160_crop_center-center_82_line/revelian-7.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x864_crop_center-center_82_line/revelian-7.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1728_crop_center-center_82_line/revelian-7.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x648_crop_center-center_82_line/revelian-7.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x540_crop_center-center_82_line/revelian-7.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1296,\"3072\":2592,\"1280\":1080,\"2560\":2160,\"1024\":864,\"2048\":1728,\"768\":648,\"640\":540},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"4800\",\"originalImageHeight\":\"4050\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AxLPSUuLD7QzODgnAxz1/w5ou9Lt4LJ50uVdgqlVDgnJxnIx71nJcSomxW+XkYwDipJL+6lhMTy5QgAjaOcdKnUu6P//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c19d8d\",\"#231c1b\",\"#745d4b\",\"#898e88\",\"#848484\"],\"lightness\":43,\"placeholderWidth\":1536,\"placeholderHeight\":1296,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16598,16693,1,'Revelian 8','2021-05-17 06:12:43','2021-06-09 23:23:09','6782e33b-bb9b-4850-b20f-22c61f9083c8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/revelian-8.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/revelian-8.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/revelian-8.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1152_crop_center-center_82_line/revelian-8.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/revelian-8.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/revelian-8.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/revelian-8.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/revelian-8.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/revelian-8.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1152_crop_center-center_82_line/revelian-8.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/revelian-8.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/revelian-8.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2400\",\"originalImageHeight\":\"1350\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8ARr5HnWBYnU+TtOWAwcN2/D+VLcxSyxpgwhY0V8EZPQD+efzrGb/kLp9B/wCzVcj+/J/1yP8ASs1qi3of/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#bbafa1\",\"#201b17\",\"#584130\",\"#795e44\",\"#6d6c6b\"],\"lightness\":38,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16599,16705,1,'Revelian 9','2021-05-17 06:13:42','2021-06-09 23:23:10','622ed5a5-8664-465a-b40b-49606bb271b9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1296_crop_center-center_82_line/revelian-9.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x1080_crop_center-center_82_line/revelian-9.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x864_crop_center-center_82_line/revelian-9.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1728_crop_center-center_82_line/revelian-9.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x648_crop_center-center_82_line/revelian-9.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x540_crop_center-center_82_line/revelian-9.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1296_crop_center-center_82_line/revelian-9.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x1080_crop_center-center_82_line/revelian-9.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x864_crop_center-center_82_line/revelian-9.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1728_crop_center-center_82_line/revelian-9.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x648_crop_center-center_82_line/revelian-9.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x540_crop_center-center_82_line/revelian-9.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1296,\"1280\":1080,\"1024\":864,\"2048\":1728,\"768\":648,\"640\":540},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2400\",\"originalImageHeight\":\"2025\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5ODynEnmlUKqSvB+Y+laul6RDfaHeX7tIskG/aqrleFB5/Osd2LqFbGAAOlaFnrd1ZaZPYRrEYp8hiyncMqF459BQM//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1f1b1d\",\"#e4cfcf\",\"#6d5f59\",\"#8c8c95\",\"#889986\"],\"lightness\":45,\"placeholderWidth\":1536,\"placeholderHeight\":1296,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16600,16719,1,'Revelian 10','2021-05-17 06:15:30','2021-06-09 23:22:30','571071dc-75f6-43ff-9bbf-b064e4899ccf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x2160_crop_center-center_82_line/revelian-10.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x1800_crop_center-center_82_line/revelian-10.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x1440_crop_center-center_82_line/revelian-10.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x2880_crop_center-center_82_line/revelian-10.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x1080_crop_center-center_82_line/revelian-10.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x900_crop_center-center_82_line/revelian-10.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x2160_crop_center-center_82_line/revelian-10.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x1800_crop_center-center_82_line/revelian-10.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x1440_crop_center-center_82_line/revelian-10.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x2880_crop_center-center_82_line/revelian-10.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x1080_crop_center-center_82_line/revelian-10.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x900_crop_center-center_82_line/revelian-10.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":2160,\"1280\":1800,\"1024\":1440,\"2048\":2880,\"768\":1080,\"640\":900},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2400\",\"originalImageHeight\":\"3375\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAFgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5iw08XwlzL5exSV+XO4+lVptKvktY7k258iXJRgQdwBweM5pkV4bdn2Mw3DBIrr/AAmV1OKG2urgCOGOQRRoQG+Y85/AmlqVpocHWzofiGbRZfMit45DsKfMT0Jz/SiimSf/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#0f0e0f\",\"#ccb0aa\",\"#664645\",\"#768fa2\",\"#64788f\"],\"lightness\":38,\"placeholderWidth\":1536,\"placeholderHeight\":2160,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16601,16735,1,'Revelian 12','2021-05-17 06:16:38','2021-06-09 23:22:08','efa9892e-1e25-4a32-8b39-347b7c51fbc1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1824_crop_center-center_82_line/revelian-12.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x1520_crop_center-center_82_line/revelian-12.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x1216_crop_center-center_82_line/revelian-12.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x2432_crop_center-center_82_line/revelian-12.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x912_crop_center-center_82_line/revelian-12.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x760_crop_center-center_82_line/revelian-12.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1824_crop_center-center_82_line/revelian-12.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x1520_crop_center-center_82_line/revelian-12.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x1216_crop_center-center_82_line/revelian-12.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x2432_crop_center-center_82_line/revelian-12.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x912_crop_center-center_82_line/revelian-12.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x760_crop_center-center_82_line/revelian-12.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1824,\"1280\":1520,\"1024\":1216,\"2048\":2432,\"768\":912,\"640\":760},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2400\",\"originalImageHeight\":\"2850\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3L2bVUvX8sQR2i/N5jEEkYHbIxzmp7GW9meKSYxCFouQjA5fPUe2M1aksbWeQTTRIzj5QW9PT9aZDp9vFJ56wxJIP+ea4A7fypa3KurFgqGBDAEHsaFVUUKqhQOwFFFMk//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e4e3e2\",\"#292825\",\"#c23a38\",\"#a37f5e\",\"#959592\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":1824,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16602,16756,1,'The big reveal','2021-05-17 06:17:11','2021-05-17 06:17:11','15c6bea3-05fb-4c4f-a4c6-4b9c67a7659b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'It’s all about the reveal, especially for a brand that reveals truth as their core business. Revelian uncovers the hidden, delves inside and goes beneath the surface to reveal the truth inside people, for businesses and organisations wanting to hire people well, and utilise them well',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16603,16769,1,'The big reveal','2021-05-17 06:49:14','2021-05-17 06:49:14','d052183c-6950-4cd8-9072-0e9e1dccc533',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'It’s all about the reveal, especially for a brand that reveals truth as their core business. Revelian uncovers the hidden, delves inside and goes beneath the surface to reveal the truth inside people, for businesses and organisations wanting to hire people well, and utilise them well',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16604,16782,1,'The big reveal','2021-05-17 06:58:03','2021-05-17 06:58:03','aefffe85-7fd4-4b64-a63d-aa04aeb19240',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'It’s all about the reveal, especially for a brand that reveals truth as their core business. Revelian uncovers the hidden, delves inside and goes beneath the surface to reveal the truth inside people, for businesses and organisations wanting to hire people well, and utilise them well',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16605,16795,1,'Revelian','2021-05-17 07:01:00','2021-05-17 07:01:00','5aeba477-2311-47a8-b70b-54b096701872',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16606,16796,1,'The big reveal','2021-05-17 07:01:02','2021-05-17 07:01:02','deca22c9-37ac-4877-ab40-10d4908b3716',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'It’s all about the reveal, especially for a brand that reveals truth as their core business. Revelian uncovers the hidden, delves inside and goes beneath the surface to reveal the truth inside people, for businesses and organisations wanting to hire people well, and utilise them well',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16608,16810,1,'The big reveal','2021-05-17 23:37:52','2021-05-17 23:37:52','092818c9-bae1-48c1-b37c-1c46627314fa',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'It’s all about the reveal, especially for a brand that reveals truth as their core business. Revelian uncovers the hidden, delves inside and goes beneath the surface to reveal the truth inside people, for businesses and organisations wanting to hire people well, and utilise them well',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16610,16824,1,'Dfv feature','2021-05-17 23:39:58','2021-06-09 23:22:20','272b27c8-7595-46c5-a603-11bb73874f69',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x870_crop_center-center_82_line/16824/dfv-feature.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x725_crop_center-center_82_line/16824/dfv-feature.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x580_crop_center-center_82_line/16824/dfv-feature.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x435_crop_center-center_82_line/16824/dfv-feature.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x362_crop_center-center_82_line/16824/dfv-feature.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x870_crop_center-center_82_line/16824/dfv-feature.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x725_crop_center-center_82_line/16824/dfv-feature.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x580_crop_center-center_82_line/16824/dfv-feature.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x435_crop_center-center_82_line/16824/dfv-feature.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x362_crop_center-center_82_line/16824/dfv-feature.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":870,\"1280\":725,\"1024\":580,\"768\":435,\"640\":362},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"907\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AZepFAsU0kzkvuCMCeMHviqzRPeWMflygx9dpyAOvvV3Vv+ReT6r/ACqtB/x4x/7tOK3kE9LI/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#545f69\",\"#d4ac87\",\"#9b9388\",\"#aac0c8\",\"#9db0be\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":870,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16611,16826,1,'Dfv 2','2021-05-17 23:40:57','2021-06-09 23:22:17','7945711d-ff02-46dc-b1ed-0f105061b820',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16612,16828,1,'Domestic and family violence','2021-05-17 23:41:01','2022-08-12 03:47:29','30ea1060-a9cb-4484-9559-fbc3ea72c37f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To help slow the spread of COVID-19, Queenslanders are spending more time at home—but home isn’t always a safe place.\n\nEveryone deserves to feel safe. Domestic and family violence is never acceptable. Help and support are available.',NULL,NULL,'Everyone deserves to feel safe',NULL,NULL,'We developed a powerful campaign—visuals, messaging and animation—to help Queenslanders understand the nature of domestic and family violence and to seek help for themselves or others.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2BMTwZsxt5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16826\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yW5tY9wyAQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"To help slow the spread of COVID-19, Queenslanders are spending more time at home—but home isn’t always a safe place.\\n\\nEveryone deserves to feel safe. Domestic and family violence is never acceptable. Help and support are available.\\n\\nThis is the campaign message the Queensland Government commissioned us to develop as the impact of COVID-19 rippled across our state.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BAdruYcFgJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16838\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CsRNpWzHen\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started the project by researching DFV campaigns in Australia and around the world.\\n\\nOur diverse target market included:\\n\\n- Adult Queenslanders 18+ who are affected by domestic and family violence\\n    - People experiencing domestic and family violence\\n    - People who become aware of domestic and family violence occurring\\n- Young Queenslanders 13-17 years old who may be affected by domestic and family violence in their household.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fOoytqzb18\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16839\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-refpZT5QBU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Messaging\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Rather than describe exactly what DFV might look like, the scripts and campaign advertisements echo the thoughts and feelings of those experiencing or observing DFV.\\n\\nThe copy style is concise, informal and written to an individual. DFV is complex and often hard to identify. We unpacked the different dimensions of DFV and always pointed the reader or viewer to help and support.\\n\\nOur messages were targeted to a diverse Queensland audience. We aimed to capture the human experience and emotions of DFV through the voice and style of the copy.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7Bn5w0QSW7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16840\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JtCJdSgzXY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our creative team completed an environmental scan to develop three design concepts with strategic choices in colours, symbols, typography and iconography.\\n\\nThe icons are simple and symbolic. We were careful to avoid using the human figure or gender-specific shapes to symbolise violent or threatening behaviours.\\n\\nInstead, our goal was to capture the far-reaching effect of domestic violence in the home and family through clean and minimal iconography, colours and shapes.\\n\\nWe used brand colours strategically, ensuring they were striking but not aggressive or alarming. Wherever possible, we avoided dark colours and shadows.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NnJbovUwRk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/572805319?h=8a36b70d04&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/572805011?h=d90ee17ccd&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vsjyJmaOWT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Animation\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"When directing the animation style, we wanted to convey the key messages of the campaign clearly and quickly. The morphing animation style is eye-catching and interesting.\\n\\nThe morphing shapes also efficiently unpack important messages to the viewer, complementing and supporting the messages in the video voiceover.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-asjEpeVorj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/572804196\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0Latj6rdpS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Phase 2\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"After the success of our 2020 launch, we rolled out a new iteration in 2021 that focused more on the non-physical forms of domestic and family violence.\\n\\nThis includes behaviour around controlling or monitoring finances, technology and social interactions.\\n\\nOur goal: to raise awareness and understanding of these forms of abuse, and communicate the seriousness of these behaviours.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aCf57wrIYs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/430227569\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Qes33flGQL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Work of this kind speaks straight to our purpose as an agency: to make a meaningful impact to people’s lives. Our team is proud to have been involved supporting families in our local community.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Domestic and family violence','We developed a powerful campaign—visuals, messaging and animation—to help Queenslanders understand the nature of domestic and family violence and to seek help for themselves or others.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16613,16830,1,'Domestic and family violence awareness campaign','2021-05-17 23:41:01','2021-05-17 23:41:01','7d3cd212-1130-4de4-9cfe-e2c4b03d01c6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To help slow the spread of COVID-19, Queenslanders are spending more time at home—but home isn’t always a safe place.\n\nEveryone deserves to feel safe. Domestic and family violence is never acceptable. Help and support are available.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16614,16832,1,'Domestic and family violence awareness campaign','2021-05-17 23:43:09','2021-05-17 23:43:09','f1d052e3-35cd-4680-8534-f99f726352db',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To help slow the spread of COVID-19, Queenslanders are spending more time at home—but home isn’t always a safe place.\n\nEveryone deserves to feel safe. Domestic and family violence is never acceptable. Help and support are available.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16615,16834,1,'Queensland Government','2021-05-17 23:43:31','2021-05-17 23:43:31','38064225-5323-43c1-b82d-c858d3614fc3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16617,16836,1,'Domestic and family violence awareness campaign','2021-05-17 23:43:51','2021-05-17 23:43:51','23de72aa-3596-4415-ac8d-6c66b055a091',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To help slow the spread of COVID-19, Queenslanders are spending more time at home—but home isn’t always a safe place.\n\nEveryone deserves to feel safe. Domestic and family violence is never acceptable. Help and support are available.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16618,16838,1,'Dfv 3','2021-05-17 23:44:29','2021-06-09 23:22:18','50669def-3677-4996-9c64-698d488204cb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x882_crop_center-center_82_line/16838/dfv-3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x735_crop_center-center_82_line/16838/dfv-3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x588_crop_center-center_82_line/16838/dfv-3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x441_crop_center-center_82_line/16838/dfv-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x367_crop_center-center_82_line/16838/dfv-3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x882_crop_center-center_82_line/16838/dfv-3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x735_crop_center-center_82_line/16838/dfv-3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x588_crop_center-center_82_line/16838/dfv-3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x441_crop_center-center_82_line/16838/dfv-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x367_crop_center-center_82_line/16838/dfv-3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":882,\"1280\":735,\"1024\":588,\"768\":441,\"640\":367},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"919\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AkBAIJGQDyPWgsCxIGATwPSm0tfO30se11uf/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d37a04\",\"#ceccda\",\"#5b476d\",\"#c48444\",\"#986248\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":882,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16619,16839,1,'Dfv 4','2021-05-17 23:44:30','2021-06-09 23:22:19','c5be06ea-4668-46b9-ad54-9288ce98aa16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x874_crop_center-center_82_line/16839/dfv-4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x728_crop_center-center_82_line/16839/dfv-4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x583_crop_center-center_82_line/16839/dfv-4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x437_crop_center-center_82_line/16839/dfv-4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x364_crop_center-center_82_line/16839/dfv-4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x874_crop_center-center_82_line/16839/dfv-4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x728_crop_center-center_82_line/16839/dfv-4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x583_crop_center-center_82_line/16839/dfv-4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x437_crop_center-center_82_line/16839/dfv-4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x364_crop_center-center_82_line/16839/dfv-4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":874,\"1280\":728,\"1024\":583,\"768\":437,\"640\":364},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"911\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AxsJ8vznn73HSgCMo5LkMPujH3v8ACmUV3jP/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#4c3c83\",\"#ded4d8\",\"#ae6922\",\"#9c9cc4\",\"#9c94bc\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":874,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16620,16840,1,'Dfv 5','2021-05-17 23:44:30','2021-06-09 23:22:19','d5ebd928-6f08-4138-8c4e-07a65f222139',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x883_crop_center-center_82_line/16840/dfv-5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x736_crop_center-center_82_line/16840/dfv-5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x588_crop_center-center_82_line/16840/dfv-5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x441_crop_center-center_82_line/16840/dfv-5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x368_crop_center-center_82_line/16840/dfv-5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x883_crop_center-center_82_line/16840/dfv-5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x736_crop_center-center_82_line/16840/dfv-5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x588_crop_center-center_82_line/16840/dfv-5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x441_crop_center-center_82_line/16840/dfv-5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x368_crop_center-center_82_line/16840/dfv-5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":883,\"1280\":736,\"1024\":588,\"768\":441,\"640\":368},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"920\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AxUK7hvzt74pZCnmN5edmfl3dcUyiu+2tx30P/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#4b3b83\",\"#d27f18\",\"#824d38\",\"#925550\",\"#a46c54\"],\"lightness\":40,\"placeholderWidth\":1536,\"placeholderHeight\":883,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16621,16841,1,'Domestic and family violence awareness campaign','2021-05-17 23:46:42','2021-05-17 23:46:42','99fde460-8bd1-4e7b-970c-4146ef1a3b28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To help slow the spread of COVID-19, Queenslanders are spending more time at home—but home isn’t always a safe place.\n\nEveryone deserves to feel safe. Domestic and family violence is never acceptable. Help and support are available.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16622,16844,1,'Domestic and family violence awareness campaign','2021-05-17 23:48:09','2021-05-17 23:48:09','6d262bdf-c911-4059-9655-5c258a6f0100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To help slow the spread of COVID-19, Queenslanders are spending more time at home—but home isn’t always a safe place.\n\nEveryone deserves to feel safe. Domestic and family violence is never acceptable. Help and support are available.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16623,16848,1,'Domestic and family violence awareness campaign','2021-05-17 23:51:22','2021-05-17 23:51:22','fd07fcd4-4f6c-4aa9-93c7-f2db2358925d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To help slow the spread of COVID-19, Queenslanders are spending more time at home—but home isn’t always a safe place.\n\nEveryone deserves to feel safe. Domestic and family violence is never acceptable. Help and support are available.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16624,16852,1,'Domestic and family violence awareness campaign','2021-05-17 23:54:40','2021-05-17 23:54:40','67ab215a-8681-43fd-9c7d-4369314b9246',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To help slow the spread of COVID-19, Queenslanders are spending more time at home—but home isn’t always a safe place.\n\nEveryone deserves to feel safe. Domestic and family violence is never acceptable. Help and support are available.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16625,16856,1,'Domestic and family violence awareness campaign','2021-05-18 00:01:20','2021-05-18 00:01:20','e3003532-1f5b-492c-9828-9a8919541e5f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To help slow the spread of COVID-19, Queenslanders are spending more time at home—but home isn’t always a safe place.\n\nEveryone deserves to feel safe. Domestic and family violence is never acceptable. Help and support are available.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16627,16861,1,'Domestic and family violence awareness campaign','2021-05-18 00:07:48','2021-05-18 00:07:48','478afedc-a76f-4ba0-858f-00e35d23b868',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To help slow the spread of COVID-19, Queenslanders are spending more time at home—but home isn’t always a safe place.\n\nEveryone deserves to feel safe. Domestic and family violence is never acceptable. Help and support are available.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16629,16866,1,'b2b','2021-05-18 00:31:07','2021-05-18 00:31:07','3a921bab-5bc9-4f75-9f7e-60e2a81997a1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16630,16867,1,'Brand','2021-05-18 00:31:08','2021-05-18 00:31:08','273b2c85-445b-4cd1-a1bc-a9c4d3869dda',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16631,16868,1,'business to business','2021-05-18 00:31:08','2021-05-18 00:31:08','3f854f4c-a2d1-45d0-8d34-9e228449c493',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16632,16869,1,'Campaign','2021-05-18 00:31:08','2021-05-18 00:31:08','a00b500b-2004-494f-bc07-3430c8b2de4e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16633,16870,1,'marketing','2021-05-18 00:31:08','2021-05-18 00:31:08','254dfe83-fd7c-439a-adce-e3d8497c2b63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16634,16871,1,'niche market','2021-05-18 00:31:08','2021-05-18 00:31:08','af55a5a2-7c4f-415a-85a8-fd1f863d5c4c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16635,16872,1,'vertical market','2021-05-18 00:31:08','2021-05-18 00:31:08','ef01d142-34f1-49b4-a073-b7cfb34b14a6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16638,16875,1,'case study','2021-05-18 00:31:08','2021-05-18 00:31:08','c05e8ae2-c519-4526-9283-56e20a06986f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16639,16876,1,'client focus','2021-05-18 00:31:08','2021-05-18 00:31:08','52557a2c-7b36-487f-ad10-1af9786bc9a6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16640,16877,1,'client service','2021-05-18 00:31:08','2021-05-18 00:31:08','65a23b3e-c645-4518-bab2-ef1eebd33d42',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16643,16880,1,'Business','2021-05-18 00:31:09','2021-05-18 00:31:09','ad9eb054-c571-4cad-90c6-8fb5d9638e6c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16644,16881,1,'language','2021-05-18 00:31:09','2021-05-18 00:31:09','53c96344-a81c-4a88-8dd9-80840ab8677b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16645,16882,1,'logic','2021-05-18 00:31:09','2021-05-18 00:31:09','cd518985-8ee4-4d3c-98fc-70a2d716d391',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16646,16883,1,'project management','2021-05-18 00:31:09','2021-05-18 00:31:09','1cd6b6e3-f489-4f93-831d-7aa693409242',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16649,16886,1,'journalism','2021-05-18 00:31:09','2021-05-18 00:31:09','4199e82e-d0c9-4375-a024-91a5fcf8e68d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16650,16887,1,'media','2021-05-18 00:31:09','2021-05-18 00:31:09','ed075f75-537c-4ff0-84a7-98d79981b1d4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16651,16888,1,'reporting','2021-05-18 00:31:09','2021-05-18 00:31:09','1cbcb9ba-c0e6-4c4f-87f2-5b8d2105e4e9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16652,16889,1,'writing','2021-05-18 00:31:09','2021-05-18 00:31:09','30e1611b-dc3a-4ad5-b5d3-a394063f43d0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16655,16892,1,'Communication','2021-05-18 00:31:09','2021-05-18 00:31:09','b3061a29-6ac0-44a7-b392-129cdcc8afce',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16656,16893,1,'jargon','2021-05-18 00:31:09','2021-05-18 00:31:09','123381ec-03ca-4686-ae9e-bf654acd0d4f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16659,16896,1,'leadership','2021-05-18 00:31:10','2021-05-18 00:31:10','a11ecf7a-9404-42c8-945b-ab0bf3a6b1bf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16660,16897,1,'management','2021-05-18 00:31:10','2021-05-18 00:31:10','73d6083b-48b9-4860-980d-aea4d6d9d010',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16663,16900,1,'Gen-Y','2021-05-18 00:31:10','2021-05-18 00:31:10','32a381a6-2e26-4e67-bd30-c908b0eb3913',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16664,16901,1,'people','2021-05-18 00:31:10','2021-05-18 00:31:10','0d836e21-4d6e-44d1-8cd0-0eec8792a4d4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16665,16902,1,'social media','2021-05-18 00:31:10','2021-05-18 00:31:10','6a5ec24e-77bf-4827-a348-098af5c62f1a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16666,16903,1,'strategy','2021-05-18 00:31:10','2021-05-18 00:31:10','7009b224-9e99-4096-a888-227427161021',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16667,16904,1,'target audience','2021-05-18 00:31:10','2021-05-18 00:31:10','16b9c46b-ba1c-4f6e-a367-fd2cd677bff4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16670,16907,1,'copywriting','2021-05-18 00:31:10','2021-05-18 00:31:10','2d51c92e-ca41-4487-b0f0-f184ac6801ed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16671,16908,1,'hero','2021-05-18 00:31:10','2021-05-18 00:31:10','cafd891a-29f7-4423-b52b-520ec22fd129',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16674,16911,1,'Content','2021-05-18 00:31:11','2021-05-18 00:31:11','260db276-eb21-4ac5-8613-d4c05d5ee15e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16675,16912,1,'content marketing','2021-05-18 00:31:11','2021-05-18 00:31:11','5a4ddf0d-5d1f-4324-826c-580f6de2d109',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16678,16915,1,'Collaboration','2021-05-18 00:31:11','2021-05-18 00:31:11','ea1d7ed3-1b57-4f33-b033-de70951d848d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16681,16918,1,'creative','2021-05-18 00:31:11','2021-05-18 00:31:11','65a22650-536c-46b3-8c7d-089958d3c6ab',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16682,16919,1,'creative agency','2021-05-18 00:31:11','2021-05-18 00:31:11','e1abfc54-56ab-4b7e-8cad-b5bfc14dd6f1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16683,16920,1,'human','2021-05-18 00:31:11','2021-05-18 00:31:11','db3ed8c7-e2b0-4176-9f32-b0f0052428a9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16686,16923,1,'experience','2021-05-18 00:31:11','2021-05-18 00:31:11','065b9060-caf1-4e5a-9751-50a4dc20d1ec',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16689,16926,1,'pitch','2021-05-18 00:31:12','2021-05-18 00:31:12','35a5db2a-6298-4d85-bcd5-ca4dda22b12b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16690,16927,1,'tender','2021-05-18 00:31:12','2021-05-18 00:31:12','ac28285f-c608-47d2-9ff1-05186fa4dbbb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16693,16930,1,'branding','2021-05-18 00:31:12','2021-05-18 00:31:12','cc03eb56-82e1-41df-aaff-823a896d5c07',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16694,16931,1,'Design','2021-05-18 00:31:12','2021-05-18 00:31:12','8b6bbe4f-a90f-4b24-8f51-d229ff804657',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16695,16932,1,'photoshoot','2021-05-18 00:31:12','2021-05-18 00:31:12','b1acdbb6-77be-462b-b408-35f26cd35e54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16696,16933,1,'stock photography','2021-05-18 00:31:12','2021-05-18 00:31:12','bf514ced-038a-48f1-bcbb-fdc64eed7578',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16699,16936,1,'best practice','2021-05-18 00:31:12','2021-05-18 00:31:12','4b7c7d0a-5a42-42da-be8e-a2411b104a6f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16700,16937,1,'Digital','2021-05-18 00:31:12','2021-05-18 00:31:12','e5169a5f-9964-4768-8fa6-5c18b0301d64',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16701,16938,1,'structure','2021-05-18 00:31:13','2021-05-18 00:31:13','e493154b-593c-49c6-a8a7-80dba6fc9209',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16702,16939,1,'web copy','2021-05-18 00:31:13','2021-05-18 00:31:13','7ca84775-0182-4f04-a270-f4836513655d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16705,16942,1,'advertising','2021-05-18 00:31:13','2021-05-18 00:31:13','bfcf1d06-2bf9-454b-96c3-5290ccd16a33',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16710,16947,1,'SME','2021-05-18 00:31:13','2021-05-18 00:31:13','d3338b89-39c6-42aa-9d4e-b69649461dce',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16713,16950,1,'website','2021-05-18 00:31:14','2021-05-18 00:31:14','99885b63-55af-4152-bb87-b13a2f0846cf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16716,16953,1,'maccas','2021-05-18 00:31:14','2021-05-18 00:31:14','7848548a-c5a8-493c-9f88-dc2b00027f79',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16717,16954,1,'mcdonalds','2021-05-18 00:31:14','2021-05-18 00:31:14','501b7494-3a74-4828-9712-43ae87146ec4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16718,16955,1,'tell','2021-05-18 00:31:14','2021-05-18 00:31:14','2576384c-8481-4fac-8625-d86985681c55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16719,16956,1,'truth','2021-05-18 00:31:14','2021-05-18 00:31:14','d8910c99-84ac-4c7c-877b-8805219a0d07',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16722,16959,1,'b2c','2021-05-18 00:31:14','2021-05-18 00:31:14','d7dab9a0-3843-4a9c-b50b-315066f2d593',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16723,16960,1,'h2h','2021-05-18 00:31:14','2021-05-18 00:31:14','1f189376-1349-4fca-aeb1-bda8b5e01445',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16726,16963,1,'aggregated content','2021-05-18 00:31:15','2021-05-18 00:31:15','30e75138-7ac0-496c-ace2-729a8d686930',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16727,16964,1,'content creation','2021-05-18 00:31:15','2021-05-18 00:31:15','fbb20a07-754e-45fc-a523-b21d07f93ed1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16728,16965,1,'content curation','2021-05-18 00:31:15','2021-05-18 00:31:15','742fd1a5-f1a0-4e71-9c13-6e4dadb16eac',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16729,16966,1,'thought leadership','2021-05-18 00:31:15','2021-05-18 00:31:15','7686127f-8880-4f68-ba2f-e37a8a958876',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16732,16969,1,'data','2021-05-18 00:31:15','2021-05-18 00:31:15','64160d75-4114-4993-99f1-6baa93f752e8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16733,16970,1,'engagement','2021-05-18 00:31:15','2021-05-18 00:31:15','df3b14fe-80ec-4fa8-be5c-1154a6427251',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16734,16971,1,'growth','2021-05-18 00:31:15','2021-05-18 00:31:15','d49bb664-3456-43e7-92d4-40a3b0341088',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16735,16972,1,'measuring','2021-05-18 00:31:15','2021-05-18 00:31:15','ff5141c5-34e7-4bc4-b1d1-0f9dabc10f80',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16736,16973,1,'ROI','2021-05-18 00:31:15','2021-05-18 00:31:15','dca0e142-0c20-42d5-8738-f8bc170cb188',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16737,16974,1,'sales','2021-05-18 00:31:15','2021-05-18 00:31:15','e38a0b23-16b8-40f1-87e9-5913e1dd180f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16740,16977,1,'Video','2021-05-18 00:31:15','2021-05-18 00:31:15','2319b747-a6e2-4b99-8017-17d4b363412c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16771,17008,1,'IWD 2021','2021-05-18 00:31:18','2021-05-18 00:31:18','da79072d-5095-4d22-b0c1-1dec1427a804',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16808,17045,1,'mario-calvo-345-unsplash','2021-05-18 00:59:39','2021-07-16 03:54:06','ae6c1adf-dc8b-4472-8b43-73ee786676a5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1023_crop_center-center_82_line/mario-calvo-345-unsplash.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/mario-calvo-345-unsplash.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/mario-calvo-345-unsplash.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/mario-calvo-345-unsplash.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x511_crop_center-center_82_line/mario-calvo-345-unsplash.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/mario-calvo-345-unsplash.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1023_crop_center-center_82_line/mario-calvo-345-unsplash.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/mario-calvo-345-unsplash.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/mario-calvo-345-unsplash.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/mario-calvo-345-unsplash.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x511_crop_center-center_82_line/mario-calvo-345-unsplash.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/mario-calvo-345-unsplash.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1023,\"1280\":853,\"1024\":682,\"2048\":1365,\"768\":511,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2048\",\"originalImageHeight\":\"1365\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ar3Gl6TbyqiLHgru/eTsKspoeizaX9r8vnBJxM20V0dtYWciBpLSBzjq0YNPura3jtyiQRKv90IAKBn//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#cdc5c4\",\"#1f1a26\",\"#524c53\",\"#756f74\",\"#5e5c5c\"],\"lightness\":44,\"placeholderWidth\":1536,\"placeholderHeight\":1023,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16809,17046,1,'inanc-avadit-571215-unsplash','2021-05-18 00:59:42','2021-06-09 23:14:37','bc10b830-797e-42f9-aef6-bc3aa76d164d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1023_crop_center-center_82_line/inanc-avadit-571215-unsplash.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/inanc-avadit-571215-unsplash.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/inanc-avadit-571215-unsplash.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/inanc-avadit-571215-unsplash.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x511_crop_center-center_82_line/inanc-avadit-571215-unsplash.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/inanc-avadit-571215-unsplash.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1023_crop_center-center_82_line/inanc-avadit-571215-unsplash.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/inanc-avadit-571215-unsplash.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/inanc-avadit-571215-unsplash.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/inanc-avadit-571215-unsplash.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x511_crop_center-center_82_line/inanc-avadit-571215-unsplash.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/inanc-avadit-571215-unsplash.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1023,\"1280\":853,\"1024\":682,\"2048\":1365,\"768\":511,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2048\",\"originalImageHeight\":\"1365\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ayp1iN1JACcIeGI+Y84GfzqOOOVLYtEpEf3JGA6t6U+1/5Ck//XP/AAra07/kDP8A9dT/AOg1KG42bR//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#384137\",\"#d1b2a9\",\"#81786d\",\"#939ea1\",\"#90a68e\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":1023,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16810,17047,1,'felix-russell-saw-609926-unsplash','2021-05-18 00:59:46','2021-06-09 23:24:54','842c04e9-2008-4b30-bbb7-8d36d8b1b7a3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1023_crop_center-center_82_line/felix-russell-saw-609926-unsplash.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/felix-russell-saw-609926-unsplash.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/felix-russell-saw-609926-unsplash.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/felix-russell-saw-609926-unsplash.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x511_crop_center-center_82_line/felix-russell-saw-609926-unsplash.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/felix-russell-saw-609926-unsplash.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1023_crop_center-center_82_line/felix-russell-saw-609926-unsplash.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/felix-russell-saw-609926-unsplash.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/felix-russell-saw-609926-unsplash.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/felix-russell-saw-609926-unsplash.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x511_crop_center-center_82_line/felix-russell-saw-609926-unsplash.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/felix-russell-saw-609926-unsplash.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1023,\"1280\":853,\"1024\":682,\"2048\":1365,\"768\":511,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2048\",\"originalImageHeight\":\"1365\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Az9OePUWmaV0t8rt3Bcgg9vrWfqDtC3lqUwyqhYdXwMZPt9KqWDMrEqxB9j7Gnaj/AK9B2BOB+ArPyGf/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#282617\",\"#afaca6\",\"#756e56\",\"#8b8c74\",\"#8c8484\"],\"lightness\":40,\"placeholderWidth\":1536,\"placeholderHeight\":1023,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16811,17048,1,'christin-hume-482896-unsplash','2021-05-18 00:59:49','2021-06-09 23:26:23','128107ba-717e-4b5b-8c80-aa20cfc57914',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1115_crop_center-center_82_line/christin-hume-482896-unsplash.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x929_crop_center-center_82_line/christin-hume-482896-unsplash.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x743_crop_center-center_82_line/christin-hume-482896-unsplash.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x557_crop_center-center_82_line/christin-hume-482896-unsplash.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x464_crop_center-center_82_line/christin-hume-482896-unsplash.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1115_crop_center-center_82_line/christin-hume-482896-unsplash.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x929_crop_center-center_82_line/christin-hume-482896-unsplash.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x743_crop_center-center_82_line/christin-hume-482896-unsplash.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x557_crop_center-center_82_line/christin-hume-482896-unsplash.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x464_crop_center-center_82_line/christin-hume-482896-unsplash.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1115,\"1280\":929,\"1024\":743,\"768\":557,\"640\":464},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2000\",\"originalImageHeight\":\"1453\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A4aExhgWbHI7Z47ipEUYYDzMDIUhM5FBuJYpSY5CuQOlNe6mf70hPHekB/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#0b0a09\",\"#a9a7a8\",\"#585755\",\"#7d7c79\",\"#73746f\"],\"lightness\":35,\"placeholderWidth\":1536,\"placeholderHeight\":1115,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16812,17049,1,'chris-lee-654655-unsplash','2021-05-18 00:59:52','2021-06-09 23:26:21','4ae1e6d6-4dae-4047-943e-172f7f4a17dd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2048_crop_center-center_82_line/chris-lee-654655-unsplash.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1706_crop_center-center_82_line/chris-lee-654655-unsplash.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1365_crop_center-center_82_line/chris-lee-654655-unsplash.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1024_crop_center-center_82_line/chris-lee-654655-unsplash.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x853_crop_center-center_82_line/chris-lee-654655-unsplash.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2048_crop_center-center_82_line/chris-lee-654655-unsplash.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1706_crop_center-center_82_line/chris-lee-654655-unsplash.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1365_crop_center-center_82_line/chris-lee-654655-unsplash.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1024_crop_center-center_82_line/chris-lee-654655-unsplash.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x853_crop_center-center_82_line/chris-lee-654655-unsplash.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":2048,\"1280\":1706,\"1024\":1365,\"768\":1024,\"640\":853},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1536\",\"originalImageHeight\":\"2048\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAFQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8As6proF2xinbywu1UHykNuAbPp8vQn+dc1HfzL9pheVzvOGRWOGJz/I4/Lr67t3LBaam7WtpPMZWEaCYNzzyqk/wkZ9fpitO5i0DT7sI9oGkALhYslCfcZ256/wCcVlbqybB4askkuFvJMNJsyCRk8jnJPJNUvEscX9qXbyRiQDyvlb3Vj/7IB+J9aKKpbB0P/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#29401b\",\"#f0f0e9\",\"#91af77\",\"#989a94\",\"#ac9c84\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":2048,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16813,17050,1,'rawpixel-603021-unsplash','2021-05-18 00:59:56','2021-06-09 23:18:58','1e3307f8-8e82-4969-9567-036d8cbbc962',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1200_crop_center-center_82_line/rawpixel-603021-unsplash.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1000_crop_center-center_82_line/rawpixel-603021-unsplash.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x800_crop_center-center_82_line/rawpixel-603021-unsplash.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1601_crop_center-center_82_line/rawpixel-603021-unsplash.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x600_crop_center-center_82_line/rawpixel-603021-unsplash.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x500_crop_center-center_82_line/rawpixel-603021-unsplash.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1200_crop_center-center_82_line/rawpixel-603021-unsplash.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1000_crop_center-center_82_line/rawpixel-603021-unsplash.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x800_crop_center-center_82_line/rawpixel-603021-unsplash.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1601_crop_center-center_82_line/rawpixel-603021-unsplash.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x600_crop_center-center_82_line/rawpixel-603021-unsplash.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x500_crop_center-center_82_line/rawpixel-603021-unsplash.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1200,\"1280\":1000,\"1024\":800,\"2048\":1601,\"768\":600,\"640\":500},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2048\",\"originalImageHeight\":\"1601\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6VrmMfwfnUiTocfJUKW6N13f99GpvskYGQWz/vUAf//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#cccbcc\",\"#8a8a89\",\"#464646\",\"#6c6c68\",\"#74746c\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":1200,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16814,17051,1,'SUNCOAST_FARMS_LOGO_WHITE_CMYK','2021-05-18 00:59:59','2021-06-09 23:17:41','ccc56ea4-6e28-4145-8093-32019da1be5e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x549_crop_center-center_82_line/17051/SUNCOAST_FARMS_LOGO_WHITE_CMYK.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x458_crop_center-center_82_line/17051/SUNCOAST_FARMS_LOGO_WHITE_CMYK.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x366_crop_center-center_82_line/17051/SUNCOAST_FARMS_LOGO_WHITE_CMYK.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x733_crop_center-center_82_line/17051/SUNCOAST_FARMS_LOGO_WHITE_CMYK.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x274_crop_center-center_82_line/17051/SUNCOAST_FARMS_LOGO_WHITE_CMYK.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x229_crop_center-center_82_line/17051/SUNCOAST_FARMS_LOGO_WHITE_CMYK.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x549_crop_center-center_82_line/17051/SUNCOAST_FARMS_LOGO_WHITE_CMYK.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x458_crop_center-center_82_line/17051/SUNCOAST_FARMS_LOGO_WHITE_CMYK.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x366_crop_center-center_82_line/17051/SUNCOAST_FARMS_LOGO_WHITE_CMYK.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x733_crop_center-center_82_line/17051/SUNCOAST_FARMS_LOGO_WHITE_CMYK.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x274_crop_center-center_82_line/17051/SUNCOAST_FARMS_LOGO_WHITE_CMYK.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x229_crop_center-center_82_line/17051/SUNCOAST_FARMS_LOGO_WHITE_CMYK.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":549,\"1280\":458,\"1024\":366,\"2048\":733,\"768\":274,\"640\":229},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2321\",\"originalImageHeight\":\"831\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5aT7PGscM8LTFGaMHzCqjHfaO54/zzSfaLa2i8+Gxh3hsDzCXXp6H/PFFFAH/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ebebeb\",\"#040404\",\"#747474\",\"#555555\",\"#6c6c6c\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":549,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16815,17052,1,'medicalmums-3','2021-05-18 01:00:02','2021-06-21 04:38:09','3716be2a-e371-4c11-893d-118a20648a1d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/medicalmums-3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/medicalmums-3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/medicalmums-3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/medicalmums-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/medicalmums-3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/medicalmums-3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/medicalmums-3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/medicalmums-3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/medicalmums-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/medicalmums-3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A0LO7iGnt5QBZU47c9uarm6RJL3d/qBtIPGMnOcYooqJu87djblShc//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#b8b0b4\",\"#724621\",\"#8d7562\",\"#50575b\",\"#873687\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16816,17053,1,'medical-mums-feature','2021-05-18 01:00:05','2021-06-21 04:38:07','7be00789-ecff-4e41-a0ca-940e3f50b5fd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x707_crop_center-center_82_line/medical-mums-feature.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x566_crop_center-center_82_line/medical-mums-feature.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x424_crop_center-center_82_line/medical-mums-feature.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x353_crop_center-center_82_line/medical-mums-feature.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x707_crop_center-center_82_line/medical-mums-feature.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x566_crop_center-center_82_line/medical-mums-feature.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x424_crop_center-center_82_line/medical-mums-feature.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x353_crop_center-center_82_line/medical-mums-feature.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":707,\"1024\":566,\"768\":424,\"640\":353},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1440\",\"originalImageHeight\":\"796\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8ApWdw0+tIiEnHyr82AO1aepR3NjOZGV/KUHewGQe386KKybNoxTsj/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#827665\",\"#e9e2dc\",\"#391c14\",\"#cea690\",\"#b8b6b4\"],\"lightness\":55,\"placeholderWidth\":1280,\"placeholderHeight\":707,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16817,17054,1,'NWO_200618_3128','2021-05-18 01:00:07','2021-06-21 04:39:37','29573b5a-8318-4171-a470-692418af7703',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/NWO_200618_3128.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/NWO_200618_3128.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/NWO_200618_3128.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/NWO_200618_3128.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/NWO_200618_3128.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/NWO_200618_3128.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/NWO_200618_3128.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/NWO_200618_3128.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/NWO_200618_3128.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/NWO_200618_3128.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"1280\":853,\"1024\":682,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2016\",\"originalImageHeight\":\"1344\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AxnhkMnyjKZH+f0qaOEC52xoWV8fMQQTTckRHntVN2ZJPkYrwOhx2oKP/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#5c5357\",\"#1a181e\",\"#b88d6e\",\"#2d2226\",\"#3b2d24\"],\"lightness\":29,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16818,17055,1,'Profile_avatar_placeholder_large','2021-05-18 01:00:11','2021-06-09 23:18:30','19b2c22a-3749-4ec4-836f-cc01bbda20de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"360\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_360x360_crop_center-center_line/Profile_avatar_placeholder_large.png\"},\"optimizedWebPImageUrls\":{\"360\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_360x360_crop_center-center_line/Profile_avatar_placeholder_large.png.webp\"},\"variantSourceWidths\":[\"360\"],\"variantHeights\":{\"360\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"360\",\"originalImageHeight\":\"360\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6y4aRIWMQy1Fu0jwqZVw1R3cU0gHlPjHUZxmi0imjB81856DOcUAf//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#a4a4a4\",\"#e3e3e3\",\"#bcbcbc\",\"#c4c4c4\",\"#cccccc\"],\"lightness\":75,\"placeholderWidth\":360,\"placeholderHeight\":360,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16820,17057,1,'NWO-website-logos-1','2021-05-18 01:00:12','2021-06-09 23:14:04','09b0542a-8fc7-4e73-aa35-f2a536bc5192',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"450\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_450x210_crop_center-center_line/NWO-website-logos-1.png\"},\"optimizedWebPImageUrls\":{\"450\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_450x210_crop_center-center_line/NWO-website-logos-1.png.webp\"},\"variantSourceWidths\":[\"450\"],\"variantHeights\":{\"450\":210},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"450\",\"originalImageHeight\":\"210\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A68Wt+t/PKt7ugZB5cboCEbPPTGRj+dWUW73fO8JXPQIR/WiigD//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e6e5e5\",\"#282426\",\"#747373\",\"#949494\",\"#8c8c8c\"],\"lightness\":54,\"placeholderWidth\":450,\"placeholderHeight\":210,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16821,17058,1,'NWO-website-logos-2','2021-05-18 01:00:13','2021-06-09 23:14:14','884ae291-4398-4c70-8eb1-22730f6be374',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"450\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_450x210_crop_center-center_line/NWO-website-logos-2.png\"},\"optimizedWebPImageUrls\":{\"450\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_450x210_crop_center-center_line/NWO-website-logos-2.png.webp\"},\"variantSourceWidths\":[\"450\"],\"variantHeights\":{\"450\":210},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"450\",\"originalImageHeight\":\"210\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7ho7jOVnGM5wUHTPT8uKWOOcY8yYHGM4XGfX8+fzoooA/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#eeeded\",\"#2a2828\",\"#9d9c9c\",\"#7a7879\",\"#948c94\"],\"lightness\":57,\"placeholderWidth\":450,\"placeholderHeight\":210,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16822,17059,1,'NWO-website-logos-10','2021-05-18 01:00:13','2021-06-09 23:14:04','2330783d-6bd8-4d62-b3a9-0b72fb46c43c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"450\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_450x210_crop_center-center_line/NWO-website-logos-10.png\"},\"optimizedWebPImageUrls\":{\"450\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_450x210_crop_center-center_line/NWO-website-logos-10.png.webp\"},\"variantSourceWidths\":[\"450\"],\"variantHeights\":{\"450\":210},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"450\",\"originalImageHeight\":\"210\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7SVbwJL5JXcWypY5AGf8KS1OoFv9J8lVHoCSf1oooA//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ecebec\",\"#353435\",\"#a6a5a6\",\"#7f7f7f\",\"#949394\"],\"lightness\":59,\"placeholderWidth\":450,\"placeholderHeight\":210,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16823,17060,1,'NWO-website-logos-11','2021-05-18 01:00:14','2021-06-21 04:39:40','36e8888c-dd76-449e-a574-22653e3c3372',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"450\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_450x210_crop_center-center_line/NWO-website-logos-11.png\"},\"optimizedWebPImageUrls\":{\"450\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_450x210_crop_center-center_line/NWO-website-logos-11.png.webp\"},\"variantSourceWidths\":[\"450\"],\"variantHeights\":{\"450\":210},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"450\",\"originalImageHeight\":\"210\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7lUuQeZUPJ/g/KhVucDc8ef90/40UUAf/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d1d0d0\",\"#2b2a2a\",\"#7a797a\",\"#5a5a5a\",\"#656364\"],\"lightness\":48,\"placeholderWidth\":450,\"placeholderHeight\":210,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16824,17061,1,'NWO-website-logos-12','2021-05-18 01:00:15','2021-06-09 23:14:05','46ad61bf-f4e3-4570-9350-8dc35a3494cc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"450\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_450x210_crop_center-center_line/NWO-website-logos-12.png\"},\"optimizedWebPImageUrls\":{\"450\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_450x210_crop_center-center_line/NWO-website-logos-12.png.webp\"},\"variantSourceWidths\":[\"450\"],\"variantHeights\":{\"450\":210},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"450\",\"originalImageHeight\":\"210\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7a4iuXmVoZyiAYK8YP6UW0VxG5M0xkXHHT+gFFFAH//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#353334\",\"#e9e9e9\",\"#969595\",\"#a6a4a4\",\"#948c94\"],\"lightness\":55,\"placeholderWidth\":450,\"placeholderHeight\":210,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16825,17062,1,'NWO-website-logos-14','2021-05-18 01:00:16','2021-06-21 04:38:54','b2c8f585-6e46-47dc-ad07-1c65ee765687',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"450\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_450x210_crop_center-center_line/NWO-website-logos-14.png\"},\"optimizedWebPImageUrls\":{\"450\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_450x210_crop_center-center_line/NWO-website-logos-14.png.webp\"},\"variantSourceWidths\":[\"450\"],\"variantHeights\":{\"450\":210},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"450\",\"originalImageHeight\":\"210\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7GWPUhK5inhKFsqrLjaPToc06BdQDp55hKfxbWOfw4+lFFAH/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#312f30\",\"#e8e7e7\",\"#949192\",\"#8c8b8c\",\"#9c9c9c\"],\"lightness\":53,\"placeholderWidth\":450,\"placeholderHeight\":210,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16826,17063,1,'NWO-website-logos-15','2021-05-18 01:00:17','2021-06-09 23:14:07','f598dba8-eb8d-471a-bec3-42b3f04e2de3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"450\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_450x210_crop_center-center_line/NWO-website-logos-15.png\"},\"optimizedWebPImageUrls\":{\"450\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_450x210_crop_center-center_line/NWO-website-logos-15.png.webp\"},\"variantSourceWidths\":[\"450\"],\"variantHeights\":{\"450\":210},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"450\",\"originalImageHeight\":\"210\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6uaDVm1Rniuo1tChCqRkg4/x/SrMUd8JQZZ42TPIC4NFFAH/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e5e3e4\",\"#272426\",\"#797979\",\"#948c94\",\"#949494\"],\"lightness\":54,\"placeholderWidth\":450,\"placeholderHeight\":210,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16827,17064,1,'NWO-website-logos-16','2021-05-18 01:00:17','2021-06-09 23:14:03','b214785b-0111-41fb-8742-7f9b8e749334',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"450\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_450x210_crop_center-center_line/NWO-website-logos-16.png\"},\"optimizedWebPImageUrls\":{\"450\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_450x210_crop_center-center_line/NWO-website-logos-16.png.webp\"},\"variantSourceWidths\":[\"450\"],\"variantHeights\":{\"450\":210},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"450\",\"originalImageHeight\":\"210\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7eZLtnPkzQonYNGWP57hUMUWojUFea4ia2EZBRFwd+eDyDxj3oooA//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e1e0e1\",\"#272425\",\"#737071\",\"#949494\",\"#8c8a8c\"],\"lightness\":53,\"placeholderWidth\":450,\"placeholderHeight\":210,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16828,17065,1,'NWO-website-logos-17','2021-05-18 01:00:18','2021-06-09 23:14:07','8bd25573-59bd-4152-b818-17296ba15f94',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"450\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_450x210_crop_center-center_line/NWO-website-logos-17.png\"},\"optimizedWebPImageUrls\":{\"450\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_450x210_crop_center-center_line/NWO-website-logos-17.png.webp\"},\"variantSourceWidths\":[\"450\"],\"variantHeights\":{\"450\":210},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"450\",\"originalImageHeight\":\"210\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7iRLks2yVFXtlc0kUV0GBkuFYZ5AQCiigD//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#f2f2f2\",\"#353435\",\"#adacac\",\"#9e9c9c\",\"#8a8a8a\"],\"lightness\":62,\"placeholderWidth\":450,\"placeholderHeight\":210,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16829,17066,1,'NWO-website-logos-18','2021-05-18 01:00:19','2021-06-09 23:14:13','7a0cc703-d786-40d6-8fd4-bd9756248b5f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"450\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_450x210_crop_center-center_line/NWO-website-logos-18.png\"},\"optimizedWebPImageUrls\":{\"450\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_450x210_crop_center-center_line/NWO-website-logos-18.png.webp\"},\"variantSourceWidths\":[\"450\"],\"variantHeights\":{\"450\":210},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"450\",\"originalImageHeight\":\"210\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7XUN727xROUkYcMO1FhuS3SKRy8gBJJOe9FFAH//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c8c8c8\",\"#2d2b2c\",\"#4f4e4f\",\"#6f6e6f\",\"#5c5c5c\"],\"lightness\":44,\"placeholderWidth\":450,\"placeholderHeight\":210,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16830,17067,1,'NWO-website-logos-19','2021-05-18 01:00:20','2021-06-09 23:14:13','a91f202f-6559-4f11-8ccd-d2fc5cc77a10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"450\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_450x210_crop_center-center_line/NWO-website-logos-19.png\"},\"optimizedWebPImageUrls\":{\"450\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_450x210_crop_center-center_line/NWO-website-logos-19.png.webp\"},\"variantSourceWidths\":[\"450\"],\"variantHeights\":{\"450\":210},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"450\",\"originalImageHeight\":\"210\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7C5i1JtSikt7iNbMIweMp8zN25/z+NSWq3ol/wBIZSmD0x1/KiigD//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#2b272a\",\"#e8e7e8\",\"#848484\",\"#949494\",\"#8c8c8c\"],\"lightness\":51,\"placeholderWidth\":450,\"placeholderHeight\":210,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16831,17068,1,'NWO-website-logos-20','2021-05-18 01:00:21','2021-06-09 23:14:14','1b6bb20d-106d-4a38-a8f6-9682f902981f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"450\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_450x210_crop_center-center_line/NWO-website-logos-20.png\"},\"optimizedWebPImageUrls\":{\"450\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_450x210_crop_center-center_line/NWO-website-logos-20.png.webp\"},\"variantSourceWidths\":[\"450\"],\"variantHeights\":{\"450\":210},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"450\",\"originalImageHeight\":\"210\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3/FLzu0FtE7Ro4Ys4AIzxjIyM9/xxSeFZJ1862mZnVFUhjgDOTnAyccY/HNFFAH/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#deddde\",\"#262125\",\"#747273\",\"#948c8c\",\"#948c94\"],\"lightness\":52,\"placeholderWidth\":450,\"placeholderHeight\":210,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16832,17069,1,'Asset 2-80','2021-05-18 01:00:22','2021-06-09 23:25:49','0140327b-f4e2-46cd-9808-0765fad98dd3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1828_crop_center-center_82_line/Asset-2-80.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1462_crop_center-center_82_line/Asset-2-80.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1096_crop_center-center_82_line/Asset-2-80.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x914_crop_center-center_82_line/Asset-2-80.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1828_crop_center-center_82_line/Asset-2-80.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1462_crop_center-center_82_line/Asset-2-80.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1096_crop_center-center_82_line/Asset-2-80.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x914_crop_center-center_82_line/Asset-2-80.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1828,\"1024\":1462,\"768\":1096,\"640\":914},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1284\",\"originalImageHeight\":\"1834\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAFgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ax7WwEgXjLGtq00x4VEm3v0q0JLfTVCZTevB2rlj+JqWLXbQL8+8f8BrpxKi42itO5jTrTj70Fc5OW6eVy7dTVaSZqKKqo20TDQ//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#344470\",\"#82dfc6\",\"#6068de\",\"#d1816f\",\"#896280\"],\"lightness\":52,\"placeholderWidth\":1280,\"placeholderHeight\":1828,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16833,17070,1,'Asset 3-80','2021-05-18 01:00:25','2021-06-09 23:25:50','5bc928d5-0e85-494c-aa2d-a51b0b6bb6f6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1097_crop_center-center_82_line/Asset-3-80.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x914_crop_center-center_82_line/Asset-3-80.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1097_crop_center-center_82_line/Asset-3-80.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x914_crop_center-center_82_line/Asset-3-80.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":1097,\"640\":914},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"840\",\"originalImageHeight\":\"1200\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAFgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Au2Uy3NyI1XI6mtGezUrmIYI7etZc19baPEYYNrTfxN3NJB4ohx+/jOfVamtCk3anHQiVfESaqwfy/wCAclPK7sXdiWPJNV9x9aKK6JbkR2P/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#8eecbe\",\"#2a3a46\",\"#f28457\",\"#6b69ea\",\"#907d6e\"],\"lightness\":55,\"placeholderWidth\":768,\"placeholderHeight\":1097,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16834,17071,1,'Asset 4-80','2021-05-18 01:00:26','2021-06-09 23:25:43','ee5f2c14-4182-4398-889f-7758badefb30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1097_crop_center-center_82_line/Asset-4-80.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x914_crop_center-center_82_line/Asset-4-80.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1097_crop_center-center_82_line/Asset-4-80.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x914_crop_center-center_82_line/Asset-4-80.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":1097,\"640\":914},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"840\",\"originalImageHeight\":\"1200\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAFgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ax7WwEgXjLGtq00x4VEm3v0q0JLfTVCZTevB2rlj+JqWLXbQLh94/4DXTiVFxtFadzGnWnH3oK5yUt08rl26mq8kzUUVVRtomGh//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#334370\",\"#82e0c6\",\"#d1816f\",\"#6068df\",\"#896280\"],\"lightness\":53,\"placeholderWidth\":768,\"placeholderHeight\":1097,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16835,17072,1,'Asset 5-80','2021-05-18 01:00:27','2021-06-09 23:25:33','f28ace86-08cf-4720-b5bf-0649282a3aec',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1097_crop_center-center_82_line/Asset-5-80.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x914_crop_center-center_82_line/Asset-5-80.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1097_crop_center-center_82_line/Asset-5-80.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x914_crop_center-center_82_line/Asset-5-80.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":1097,\"640\":914},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"840\",\"originalImageHeight\":\"1200\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAFgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3lslD8/dptzagLujHTqKsz3EVtGZJWAAGaZa3cF4gaFwwNc/so2OWOMxCaqN7dDjNe1WS6nkjGVQHGKyYbue3OYZXjP+ycUUV2NJFU0uU//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#88ecba\",\"#243b44\",\"#f08959\",\"#448e8a\",\"#4f8c74\"],\"lightness\":51,\"placeholderWidth\":768,\"placeholderHeight\":1097,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16836,17073,1,'QSA_Homepage','2021-05-18 01:00:28','2021-06-09 23:19:23','9ee7b541-4f75-4075-887e-40a9991b218c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/QSA_Homepage.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x3072_crop_center-center_82_line/QSA_Homepage.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/QSA_Homepage.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x2560_crop_center-center_82_line/QSA_Homepage.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/QSA_Homepage.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2048_crop_center-center_82_line/QSA_Homepage.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/QSA_Homepage.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/QSA_Homepage.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/QSA_Homepage.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x3072_crop_center-center_82_line/QSA_Homepage.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/QSA_Homepage.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x2560_crop_center-center_82_line/QSA_Homepage.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/QSA_Homepage.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2048_crop_center-center_82_line/QSA_Homepage.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/QSA_Homepage.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/QSA_Homepage.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"3072\":3072,\"1280\":1280,\"2560\":2560,\"1024\":1024,\"2048\":2048,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3679\",\"originalImageHeight\":\"3679\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AgUQRSK/lMpPAK9hnpUs0DyK0azElhjrnjsTVC4keOF3jYHnK7ulOa5efLBgGwD8h6UjKx//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#5a6f65\",\"#1b2420\",\"#8cac9c\",\"#2b3d35\",\"#243c2c\"],\"lightness\":32,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16837,17074,1,'qsa-1','2021-05-18 01:00:38','2021-06-09 23:18:21','33308a97-8df7-485f-87b1-7859dc2638b1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x960_crop_center-center_82_line/qsa-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x800_crop_center-center_82_line/qsa-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x640_crop_center-center_82_line/qsa-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x480_crop_center-center_82_line/qsa-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x400_crop_center-center_82_line/qsa-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x960_crop_center-center_82_line/qsa-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x800_crop_center-center_82_line/qsa-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x640_crop_center-center_82_line/qsa-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x480_crop_center-center_82_line/qsa-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x400_crop_center-center_82_line/qsa-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":960,\"1280\":800,\"1024\":640,\"768\":480,\"640\":400},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"1126\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6y6kNlZyzK6sw55HSuVXX75rwF7tFUg4QJx1PqK69FXHQc9eKoPZ2zahlreEnbnlB6mklqKeyR//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e5e4e1\",\"#39574f\",\"#c48150\",\"#619b9c\",\"#7a7474\"],\"lightness\":57,\"placeholderWidth\":1536,\"placeholderHeight\":960,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16838,17075,1,'qsa-2','2021-05-18 01:00:40','2021-06-09 23:18:42','c76325fc-1701-4d5b-ac8f-9476da218476',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x576_crop_center-center_82_line/qsa-2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x480_crop_center-center_82_line/qsa-2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x384_crop_center-center_82_line/qsa-2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x288_crop_center-center_82_line/qsa-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x240_crop_center-center_82_line/qsa-2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x576_crop_center-center_82_line/qsa-2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x480_crop_center-center_82_line/qsa-2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x384_crop_center-center_82_line/qsa-2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x288_crop_center-center_82_line/qsa-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x240_crop_center-center_82_line/qsa-2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":576,\"1280\":480,\"1024\":384,\"768\":288,\"640\":240},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"676\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5JGjA+aPcf8AexSs8Zi2hMNnOc9vSiigZ//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#241d23\",\"#bfbcbd\",\"#8c8c8c\",\"#686667\",\"#8c8484\"],\"lightness\":43,\"placeholderWidth\":1536,\"placeholderHeight\":576,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16839,17076,1,'qsa-3','2021-05-18 01:00:42','2021-06-09 23:19:19','452a940f-c58f-44b9-9af2-1fdab2fae7d7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/qsa-3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/qsa-3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/qsa-3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/qsa-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/qsa-3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/qsa-3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/qsa-3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/qsa-3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/qsa-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/qsa-3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A2o9Qgk3FA7FPvARN8v144qD+1IEnlkluNse0YjIPHv0ooqnJmaR//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#bbd0d9\",\"#2d454e\",\"#786a4a\",\"#708488\",\"#70626c\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16840,17077,1,'qsa-4','2021-05-18 01:00:44','2021-06-09 23:19:20','057eebf2-5ad3-4024-a95a-83d15779b8af',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/qsa-4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/qsa-4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/qsa-4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/qsa-4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/qsa-4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/qsa-4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/qsa-4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/qsa-4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/qsa-4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/qsa-4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"1280\":960,\"1024\":768,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"1350\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7t5UU/NIq/U4psdxFM22KVHIGcA54pJrO3m/1kYPOepHNEFnBbtuij2nbt6k8daED8j/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#57807d\",\"#eadecf\",\"#869994\",\"#cda754\",\"#706c66\"],\"lightness\":58,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16841,17078,1,'qsa-6','2021-05-18 01:00:46','2021-06-09 23:19:21','1f72a065-5819-4ff7-aaf7-e6337f61cfbc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1058_crop_center-center_82_line/qsa-6.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x881_crop_center-center_82_line/qsa-6.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x705_crop_center-center_82_line/qsa-6.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x529_crop_center-center_82_line/qsa-6.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x440_crop_center-center_82_line/qsa-6.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1058_crop_center-center_82_line/qsa-6.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x881_crop_center-center_82_line/qsa-6.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x705_crop_center-center_82_line/qsa-6.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x529_crop_center-center_82_line/qsa-6.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x440_crop_center-center_82_line/qsa-6.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1058,\"1280\":881,\"1024\":705,\"768\":529,\"640\":440},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"1240\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6ldInWZX+3uwEzSYKnof4evasm21O5fxQbXzG8rz3X/WE8DPGK6yqy6fZrcfaFt4xNuLb8c5PU0mth36n//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#cec0ae\",\"#293436\",\"#606d6e\",\"#5f3a2c\",\"#916e36\"],\"lightness\":44,\"placeholderWidth\":1536,\"placeholderHeight\":1058,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16842,17079,1,'our-hpw-our-future-900x450','2021-05-18 01:00:48','2021-06-21 04:39:32','bdde1937-5ccb-44c0-a50c-fe2a97aa62b2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/17079/our-hpw-our-future-900x450-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/17079/our-hpw-our-future-900x450-1.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/17079/our-hpw-our-future-900x450-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/17079/our-hpw-our-future-900x450-1.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A0bu8kW3ZA5LSqVAOPSm2dxMIQGlkBUDOCMY7Y4ooqOZ8tzZRXLc//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#a7938d\",\"#d8d2de\",\"#312936\",\"#6f434b\",\"#74633e\"],\"lightness\":53,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16843,17080,1,'getstarted_1-900x450','2021-05-18 01:00:49','2021-06-09 23:25:00','0ca22deb-d665-4d57-bf58-766b759ad7e9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/getstarted_1-900x450.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/getstarted_1-900x450.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/getstarted_1-900x450.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/getstarted_1-900x450.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6nUZNR+0lLaF2gMeMqQDuz1ByD04qtZQ6mNYFxN9oEEhbMTSArH1x3+nbvRRWZR//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#3f4a45\",\"#f9f8e8\",\"#c5444f\",\"#d5a38a\",\"#bb8864\"],\"lightness\":57,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16844,17081,1,'getstarted_2','2021-05-18 01:00:50','2021-06-09 23:25:03','bb76fe89-ea16-495a-918b-7e8d8f9b8ebf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x192_crop_center-center_82_line/getstarted_2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x160_crop_center-center_82_line/getstarted_2.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x192_crop_center-center_82_line/getstarted_2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x160_crop_center-center_82_line/getstarted_2.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":192,\"640\":160},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"226\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7e4hDKx3yDJGQGpIIQoX53JBPJNFFNfCZ/bP/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#66b1ba\",\"#f1f4ea\",\"#82c5d0\",\"#ba6a76\",\"#91c679\"],\"lightness\":68,\"placeholderWidth\":768,\"placeholderHeight\":192,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16845,17082,1,'getstarted_3','2021-05-18 01:00:51','2021-06-09 23:25:04','e3663953-1c89-4e49-a881-137e9272bd1e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/getstarted_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/getstarted_3.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/getstarted_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/getstarted_3.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AsbmF4gYnyiOQP8/SlD7pGwmCvGfUUUVr1PNb93Tt+p//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#50b2b0\",\"#e59995\",\"#3d2a1f\",\"#96988d\",\"#93624d\"],\"lightness\":50,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16846,17083,1,'Ryan-computer','2021-05-18 01:00:51','2021-06-09 23:17:11','994cf969-254f-4e77-ab35-cdb8a82a21b0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x718_crop_center-center_82_line/Ryan-computer.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x575_crop_center-center_82_line/Ryan-computer.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x431_crop_center-center_82_line/Ryan-computer.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x359_crop_center-center_82_line/Ryan-computer.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x718_crop_center-center_82_line/Ryan-computer.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x575_crop_center-center_82_line/Ryan-computer.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x431_crop_center-center_82_line/Ryan-computer.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x359_crop_center-center_82_line/Ryan-computer.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":718,\"1024\":575,\"768\":431,\"640\":359},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1535\",\"originalImageHeight\":\"862\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AydDt72C8mVjmPb/fz06H+dTXhfUo54k+QxgZJPbPNFFQ1rc6Idj/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#8e645a\",\"#1a1014\",\"#c5b7c0\",\"#cdaaa1\",\"#d88691\"],\"lightness\":46,\"placeholderWidth\":1280,\"placeholderHeight\":718,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16847,17084,1,'Wall-pointing','2021-05-18 01:00:53','2021-06-09 23:17:31','5c7d9ddc-9e39-4baa-b1fd-45ed0c0054a9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x718_crop_center-center_82_line/Wall-pointing.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x575_crop_center-center_82_line/Wall-pointing.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x431_crop_center-center_82_line/Wall-pointing.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x359_crop_center-center_82_line/Wall-pointing.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x718_crop_center-center_82_line/Wall-pointing.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x575_crop_center-center_82_line/Wall-pointing.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x431_crop_center-center_82_line/Wall-pointing.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x359_crop_center-center_82_line/Wall-pointing.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":718,\"1024\":575,\"768\":431,\"640\":359},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1535\",\"originalImageHeight\":\"862\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AT7RGqxqpeQAsSyp049s+lW4jG2nTyMvIxjPUUUVy3u02drVlof/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ac795d\",\"#ddcbc6\",\"#6f2e1d\",\"#3a2223\",\"#d4b49c\"],\"lightness\":51,\"placeholderWidth\":1280,\"placeholderHeight\":718,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16848,17085,1,'Typewriter','2021-05-18 01:00:55','2021-06-09 23:17:29','8053c0fb-48cd-42a3-9e52-1500d9497598',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x718_crop_center-center_82_line/Typewriter.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x575_crop_center-center_82_line/Typewriter.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x431_crop_center-center_82_line/Typewriter.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x359_crop_center-center_82_line/Typewriter.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x718_crop_center-center_82_line/Typewriter.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x575_crop_center-center_82_line/Typewriter.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x431_crop_center-center_82_line/Typewriter.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x359_crop_center-center_82_line/Typewriter.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":718,\"1024\":575,\"768\":431,\"640\":359},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1535\",\"originalImageHeight\":\"862\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Aw5L/AMvU5kWNmkb5F2DJ74xW5frd6qlvLdeWkiRBSOQc+pxkUUVNjW5//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#785a54\",\"#ded0cf\",\"#180c10\",\"#b5a6a7\",\"#a99aa5\"],\"lightness\":50,\"placeholderWidth\":1280,\"placeholderHeight\":718,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16849,17086,1,'Artboard 4 copy 2','2021-05-18 01:00:58','2021-06-09 23:25:39','31b2c13c-f0c9-4878-8ebc-e26692eb4755',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x796_crop_center-center_82_line/Artboard-4-copy-2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x663_crop_center-center_82_line/Artboard-4-copy-2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1326_crop_center-center_82_line/Artboard-4-copy-2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x530_crop_center-center_82_line/Artboard-4-copy-2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1061_crop_center-center_82_line/Artboard-4-copy-2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x398_crop_center-center_82_line/Artboard-4-copy-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x331_crop_center-center_82_line/Artboard-4-copy-2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x796_crop_center-center_82_line/Artboard-4-copy-2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x663_crop_center-center_82_line/Artboard-4-copy-2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1326_crop_center-center_82_line/Artboard-4-copy-2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x530_crop_center-center_82_line/Artboard-4-copy-2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1061_crop_center-center_82_line/Artboard-4-copy-2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x398_crop_center-center_82_line/Artboard-4-copy-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x331_crop_center-center_82_line/Artboard-4-copy-2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":796,\"1280\":663,\"2560\":1326,\"1024\":530,\"2048\":1061,\"768\":398,\"640\":331},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2568\",\"originalImageHeight\":\"1331\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AtW6RWSebcNmQ9vSrEd9bSHPmAfU4ooolOXMR7NThzPc//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#8cc6c4\",\"#886b5b\",\"#7268aa\",\"#979f90\",\"#b5b8a8\"],\"lightness\":57,\"placeholderWidth\":1536,\"placeholderHeight\":796,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16850,17087,1,'Artboard 4 copy','2021-05-18 01:01:02','2021-06-09 23:25:41','e162e61a-cc12-487e-ace0-9d7ecb2e2477',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x796_crop_center-center_82_line/Artboard-4-copy.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x663_crop_center-center_82_line/Artboard-4-copy.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1326_crop_center-center_82_line/Artboard-4-copy.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x530_crop_center-center_82_line/Artboard-4-copy.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1061_crop_center-center_82_line/Artboard-4-copy.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x398_crop_center-center_82_line/Artboard-4-copy.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x331_crop_center-center_82_line/Artboard-4-copy.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x796_crop_center-center_82_line/Artboard-4-copy.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x663_crop_center-center_82_line/Artboard-4-copy.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1326_crop_center-center_82_line/Artboard-4-copy.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x530_crop_center-center_82_line/Artboard-4-copy.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1061_crop_center-center_82_line/Artboard-4-copy.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x398_crop_center-center_82_line/Artboard-4-copy.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x331_crop_center-center_82_line/Artboard-4-copy.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":796,\"1280\":663,\"2560\":1326,\"1024\":530,\"2048\":1061,\"768\":398,\"640\":331},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2568\",\"originalImageHeight\":\"1331\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A13kiiUtK6oB602OeCf8A1UqOPY0UU7J3VjmTkoqd3c//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#88c6c2\",\"#e59e6d\",\"#525758\",\"#76847c\",\"#5c8686\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":796,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16851,17088,1,'Artboard 4','2021-05-18 01:01:06','2021-06-09 23:25:35','86d396d9-cc9f-469d-b1c3-9903f6e211a9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x796_crop_center-center_82_line/Artboard-4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x663_crop_center-center_82_line/Artboard-4.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1326_crop_center-center_82_line/Artboard-4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x530_crop_center-center_82_line/Artboard-4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1061_crop_center-center_82_line/Artboard-4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x398_crop_center-center_82_line/Artboard-4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x331_crop_center-center_82_line/Artboard-4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x796_crop_center-center_82_line/Artboard-4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x663_crop_center-center_82_line/Artboard-4.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1326_crop_center-center_82_line/Artboard-4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x530_crop_center-center_82_line/Artboard-4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1061_crop_center-center_82_line/Artboard-4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x398_crop_center-center_82_line/Artboard-4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x331_crop_center-center_82_line/Artboard-4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":796,\"1280\":663,\"2560\":1326,\"1024\":530,\"2048\":1061,\"768\":398,\"640\":331},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2568\",\"originalImageHeight\":\"1331\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AlhhhtlBl4I65P9KuR3NtjiRAPfiiitqj0MYLnjdn/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#7cb3c2\",\"#716493\",\"#c6a088\",\"#a6afa7\",\"#8f827c\"],\"lightness\":58,\"placeholderWidth\":1536,\"placeholderHeight\":796,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16852,17089,1,'Scott-card-game-illo-2','2021-05-18 01:01:10','2021-06-09 23:17:16','28e3f066-a144-49dc-95f7-c07854ad7130',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x373_crop_center-center_82_line/17089/Scott-card-game-illo-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x310_crop_center-center_82_line/17089/Scott-card-game-illo-2.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x373_crop_center-center_82_line/17089/Scott-card-game-illo-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x310_crop_center-center_82_line/17089/Scott-card-game-illo-2.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":373,\"640\":310},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"842\",\"originalImageHeight\":\"409\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6icau0rtE6hFY44XkVdD3XnW4ITYVPm47HHaiipaLvfof//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d18573\",\"#69b0af\",\"#f0f1f0\",\"#77262c\",\"#cc8031\"],\"lightness\":62,\"placeholderWidth\":768,\"placeholderHeight\":373,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16853,17090,1,'hal-gatewood-613602-unsplash','2021-05-18 01:01:12','2021-06-09 23:25:07','73a612fe-e24e-485e-8873-11c3cbe86bcf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/hal-gatewood-613602-unsplash.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2048_crop_center-center_82_line/hal-gatewood-613602-unsplash.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/hal-gatewood-613602-unsplash.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1706_crop_center-center_82_line/hal-gatewood-613602-unsplash.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/hal-gatewood-613602-unsplash.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/hal-gatewood-613602-unsplash.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/hal-gatewood-613602-unsplash.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/hal-gatewood-613602-unsplash.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/hal-gatewood-613602-unsplash.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2048_crop_center-center_82_line/hal-gatewood-613602-unsplash.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/hal-gatewood-613602-unsplash.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1706_crop_center-center_82_line/hal-gatewood-613602-unsplash.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/hal-gatewood-613602-unsplash.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/hal-gatewood-613602-unsplash.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/hal-gatewood-613602-unsplash.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/hal-gatewood-613602-unsplash.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"3072\":2048,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"5184\",\"originalImageHeight\":\"3456\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6OJ5yzxNcNuIIGCOD+VVtOv5p4XzK7SwvuwSQCp7e/8A9eodLUPqU7MAzBuCeSOBW7EiopCKFB9Biql2JWqZ/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dcdddf\",\"#41516b\",\"#899aab\",\"#775889\",\"#729667\"],\"lightness\":59,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16855,17092,1,'ra-1','2021-05-18 01:01:33','2021-06-09 23:19:34','526e362f-ab70-451d-a753-3ae4cad75a39',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/ra-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/ra-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/ra-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/ra-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/ra-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/ra-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/ra-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/ra-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/ra-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/ra-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ai8O6qtoJN7bSeWxjp6CnXfiBY5dp6hQN24e2eKKK5ORSVmaJ6H//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#49431e\",\"#dfd08f\",\"#b2b446\",\"#9d884e\",\"#b29f97\"],\"lightness\":46,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16856,17093,1,'ra-2','2021-05-18 01:01:35','2021-06-09 23:19:35','09e6d1ae-4c54-4c0c-b581-5cbbde66cb5a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/ra-2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/ra-2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/ra-2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/ra-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/ra-2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/ra-2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/ra-2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/ra-2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/ra-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/ra-2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ay7FolFuZXSPLhiXGOfr6VJoms/ZCIUiLgsC5DDhef/1/hRRUGltT/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#40352e\",\"#cdbcae\",\"#8d7766\",\"#a29d8d\",\"#9c9494\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16857,17094,1,'ra-3','2021-05-18 01:01:37','2021-06-09 23:19:36','7d486b7b-d383-4c8e-be27-1f33630ac751',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/ra-3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/ra-3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/ra-3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/ra-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/ra-3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/ra-3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/ra-3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/ra-3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/ra-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/ra-3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6eCVcO5Mm3bxuXGKg8yOOGUbmaQ/MgzgGiiojrJIqWiZ/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d9d1c8\",\"#3b7993\",\"#bea37c\",\"#7f584a\",\"#b09659\"],\"lightness\":59,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16858,17095,1,'ra-4','2021-05-18 01:01:39','2021-06-09 23:19:28','cde3fba7-560a-4666-a9d5-080ccbcdd8b0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/ra-4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/ra-4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/ra-4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/ra-4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/ra-4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/ra-4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/ra-4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/ra-4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/ra-4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/ra-4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AkhtrhCoeKSVWUnDRkYJFc/G1ubfdhOoxn054+vFFFJjjo2f/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#44423f\",\"#d0c3bf\",\"#948880\",\"#60b7bf\",\"#549eb2\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16859,17096,1,'ra-5','2021-05-18 01:01:41','2021-06-09 23:19:18','9081db19-77a3-4b77-a15d-a1180700d89d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/ra-5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/ra-5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/ra-5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/ra-5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/ra-5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/ra-5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/ra-5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/ra-5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/ra-5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/ra-5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AoWk2m7lNy22NuSCSMc/Spb1tPeBvskmAp5UZ549/xoopWXKVfU//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#625247\",\"#d3c7c7\",\"#161523\",\"#a9b0c4\",\"#9d9daf\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16860,17097,1,'ra-6','2021-05-18 01:01:43','2021-06-09 23:19:00','40f90f54-ba8a-426e-b495-9f053b3db03c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/ra-6.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/ra-6.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/ra-6.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/ra-6.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/ra-6.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/ra-6.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/ra-6.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/ra-6.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/ra-6.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/ra-6.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AwFvEmVlkYAqnrjdzXo1us1tFHaLcnOzCsQOP0oorOStaxTbP/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#483530\",\"#e9e0c8\",\"#afb69c\",\"#9a7a61\",\"#7886a2\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16861,17098,1,'ra-7','2021-05-18 01:01:45','2021-06-09 23:19:17','02b886b3-9827-4162-9928-52cb11dde4e8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/ra-7.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/ra-7.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/ra-7.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/ra-7.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/ra-7.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/ra-7.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/ra-7.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/ra-7.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/ra-7.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/ra-7.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7UfaEkkMm0oW+TaSTj3qhp1xfM5SQMVD5yyHoTzzRRSaugP/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e6e5e4\",\"#59646c\",\"#e1b32a\",\"#858e93\",\"#835b53\"],\"lightness\":60,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16862,17099,1,'ra-8','2021-05-18 01:01:47','2021-06-09 23:18:45','087b73e3-a181-4525-8bf4-e672767a7fd0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/ra-8.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/ra-8.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/ra-8.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/ra-8.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/ra-8.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/ra-8.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/ra-8.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/ra-8.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/ra-8.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/ra-8.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"1800\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3JNXvTd3MHmRxskjKg2dh0J5+npVpNbIaNNiy5YRlgcHd9Kkk0OA3s90rOHmO5hnjOMZxTLTRRFN5kjK+JBIvy9DS1K0P//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c3b8b5\",\"#312e27\",\"#6b3e2c\",\"#826b63\",\"#7a5d44\"],\"lightness\":43,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16863,17100,1,'RA_Website_01','2021-05-18 01:01:50','2021-06-09 23:18:46','2680c5c6-f5b7-45ec-b68c-f43c5d557701',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x889_crop_center-center_82_line/RA_Website_01.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1779_crop_center-center_82_line/RA_Website_01.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x741_crop_center-center_82_line/RA_Website_01.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1482_crop_center-center_82_line/RA_Website_01.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x593_crop_center-center_82_line/RA_Website_01.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1186_crop_center-center_82_line/RA_Website_01.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x444_crop_center-center_82_line/RA_Website_01.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x370_crop_center-center_82_line/RA_Website_01.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x889_crop_center-center_82_line/RA_Website_01.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1779_crop_center-center_82_line/RA_Website_01.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x741_crop_center-center_82_line/RA_Website_01.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1482_crop_center-center_82_line/RA_Website_01.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x593_crop_center-center_82_line/RA_Website_01.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1186_crop_center-center_82_line/RA_Website_01.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x444_crop_center-center_82_line/RA_Website_01.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x370_crop_center-center_82_line/RA_Website_01.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":889,\"3072\":1779,\"1280\":741,\"2560\":1482,\"1024\":593,\"2048\":1186,\"768\":444,\"640\":370},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3750\",\"originalImageHeight\":\"2172\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AsanpiR3QnuJ0jt+mNrbQOABkA4NYeraXbrMk1jJ+7cld6PuGcc8nnviuu1v/AJAN7/1yNcqv/ItR/wC+/wDKrhBXJcm0f//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#32343f\",\"#d8dad3\",\"#8b7661\",\"#a8c0cf\",\"#7a93b0\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":889,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16864,17101,1,'RA_Website_02','2021-05-18 01:01:57','2021-06-09 23:18:48','079ce897-b92a-43cf-85cd-55babe4e9648',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2115_crop_center-center_82_line/RA_Website_02.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x4231_crop_center-center_82_line/RA_Website_02.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1762_crop_center-center_82_line/RA_Website_02.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x3525_crop_center-center_82_line/RA_Website_02.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1410_crop_center-center_82_line/RA_Website_02.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2820_crop_center-center_82_line/RA_Website_02.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1057_crop_center-center_82_line/RA_Website_02.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x881_crop_center-center_82_line/RA_Website_02.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2115_crop_center-center_82_line/RA_Website_02.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x4231_crop_center-center_82_line/RA_Website_02.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1762_crop_center-center_82_line/RA_Website_02.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x3525_crop_center-center_82_line/RA_Website_02.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1410_crop_center-center_82_line/RA_Website_02.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2820_crop_center-center_82_line/RA_Website_02.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1057_crop_center-center_82_line/RA_Website_02.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x881_crop_center-center_82_line/RA_Website_02.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":2115,\"3072\":4231,\"1280\":1762,\"2560\":3525,\"1024\":1410,\"2048\":2820,\"768\":1057,\"640\":881},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3750\",\"originalImageHeight\":\"5165\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAFgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6i6v9TQL5VlGmDl2kkBGPzHPSpYtVijRRezRJI3I2ngjp2J75qveypHLvd5pQpzsXohweeOaht0S/lWZmIGQpWQld/0BGe/buKm+tg1tobnkg/ewR6GqE2h2stw03mXCFiDtjlKqPoB0ooq02hNJ7n//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#2c5562\",\"#e6e5dd\",\"#9c9152\",\"#7d5f48\",\"#8c9da2\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":2115,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16865,17102,1,'RA_Website_03','2021-05-18 01:02:16','2021-06-09 23:18:51','d6a4a1b9-e1de-4c0a-bd0b-e163829e14e1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1023_crop_center-center_82_line/RA_Website_03.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2046_crop_center-center_82_line/RA_Website_03.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x852_crop_center-center_82_line/RA_Website_03.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1705_crop_center-center_82_line/RA_Website_03.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/RA_Website_03.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1364_crop_center-center_82_line/RA_Website_03.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x511_crop_center-center_82_line/RA_Website_03.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/RA_Website_03.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1023_crop_center-center_82_line/RA_Website_03.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2046_crop_center-center_82_line/RA_Website_03.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x852_crop_center-center_82_line/RA_Website_03.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1705_crop_center-center_82_line/RA_Website_03.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/RA_Website_03.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1364_crop_center-center_82_line/RA_Website_03.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x511_crop_center-center_82_line/RA_Website_03.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/RA_Website_03.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1023,\"3072\":2046,\"1280\":852,\"2560\":1705,\"1024\":682,\"2048\":1364,\"768\":511,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3750\",\"originalImageHeight\":\"2498\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3NT13TZlhX7YREWO/Z3GPp64rK1D+yZ7Zns3MszMFGW+brz+lVrSGJluA0aEBeAVHFMsIo47klEVTzyBilcTjc//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#89948c\",\"#1d2b33\",\"#e9ece3\",\"#64593b\",\"#4e3e34\"],\"lightness\":46,\"placeholderWidth\":1536,\"placeholderHeight\":1023,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16866,17103,1,'RA_Website_04','2021-05-18 01:02:25','2021-06-09 23:18:53','893a94e6-25f4-485d-9e09-b439d94c3182',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1905_crop_center-center_82_line/RA_Website_04.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x3810_crop_center-center_82_line/RA_Website_04.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1587_crop_center-center_82_line/RA_Website_04.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x3175_crop_center-center_82_line/RA_Website_04.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1270_crop_center-center_82_line/RA_Website_04.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2540_crop_center-center_82_line/RA_Website_04.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x952_crop_center-center_82_line/RA_Website_04.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x793_crop_center-center_82_line/RA_Website_04.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1905_crop_center-center_82_line/RA_Website_04.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x3810_crop_center-center_82_line/RA_Website_04.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1587_crop_center-center_82_line/RA_Website_04.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x3175_crop_center-center_82_line/RA_Website_04.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1270_crop_center-center_82_line/RA_Website_04.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2540_crop_center-center_82_line/RA_Website_04.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x952_crop_center-center_82_line/RA_Website_04.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x793_crop_center-center_82_line/RA_Website_04.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1905,\"3072\":3810,\"1280\":1587,\"2560\":3175,\"1024\":1270,\"2048\":2540,\"768\":952,\"640\":793},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3750\",\"originalImageHeight\":\"4652\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A68aiJJZIo2j8yM4YDLEH6cetTR3J8xUkx8wyCBj8MUy/cxRBjKsQJAyev0Hv/wDXqk1xqckoezihng9Q+zvyCCM5o3E2kad1aW95GI7mFJUB3AOMgH1otbS3s4zHbQpEhO4qgwCfWiii47H/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1a465f\",\"#eae9e7\",\"#816252\",\"#929698\",\"#947e62\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":1905,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16867,17104,1,'RA_Website_05','2021-05-18 01:02:40','2021-06-09 23:18:56','4fc53760-c588-4c8d-9d72-2529330fcb04',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1088_crop_center-center_82_line/RA_Website_05.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2176_crop_center-center_82_line/RA_Website_05.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/RA_Website_05.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1813_crop_center-center_82_line/RA_Website_05.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/RA_Website_05.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1451_crop_center-center_82_line/RA_Website_05.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/RA_Website_05.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/RA_Website_05.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1088_crop_center-center_82_line/RA_Website_05.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2176_crop_center-center_82_line/RA_Website_05.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/RA_Website_05.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1813_crop_center-center_82_line/RA_Website_05.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/RA_Website_05.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1451_crop_center-center_82_line/RA_Website_05.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/RA_Website_05.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/RA_Website_05.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1088,\"3072\":2176,\"1280\":906,\"2560\":1813,\"1024\":725,\"2048\":1451,\"768\":544,\"640\":453},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3750\",\"originalImageHeight\":\"2657\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6XUYPtISPy3kwCwRZNmSMd/xNLZWyWkrxorpuRXKu5bBJYdfwFRayWW3R0d0YNjKMVPQ+lV/DUss9tNJNK8j79u52JOB0HP1NIdtD//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e3e2e2\",\"#121113\",\"#8e614d\",\"#ae835e\",\"#929191\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":1088,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16868,17105,1,'KS_LinkedIn Article image','2021-05-18 01:02:44','2021-06-21 04:38:32','a64e6aba-2bfc-4275-9b9e-487c22f3aa52',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x802_crop_center-center_82_line/KS_LinkedIn-Article-image.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x668_crop_center-center_82_line/KS_LinkedIn-Article-image.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x534_crop_center-center_82_line/KS_LinkedIn-Article-image.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1069_crop_center-center_82_line/KS_LinkedIn-Article-image.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x401_crop_center-center_82_line/KS_LinkedIn-Article-image.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x334_crop_center-center_82_line/KS_LinkedIn-Article-image.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x802_crop_center-center_82_line/KS_LinkedIn-Article-image.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x668_crop_center-center_82_line/KS_LinkedIn-Article-image.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x534_crop_center-center_82_line/KS_LinkedIn-Article-image.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1069_crop_center-center_82_line/KS_LinkedIn-Article-image.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x401_crop_center-center_82_line/KS_LinkedIn-Article-image.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x334_crop_center-center_82_line/KS_LinkedIn-Article-image.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":802,\"1280\":668,\"1024\":534,\"2048\":1069,\"768\":401,\"640\":334},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2500\",\"originalImageHeight\":\"1306\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Av3ZeSxjbTzAVXDJ6de3asfUICddF/E5QRpudgerAY/wooqJGkNT/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#b7aaa1\",\"#251816\",\"#66392f\",\"#875942\",\"#74625e\"],\"lightness\":39,\"placeholderWidth\":1536,\"placeholderHeight\":802,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16869,17106,1,'pursuit-1','2021-05-18 01:02:48','2021-06-09 23:18:20','030b7dcc-2506-4868-a58f-5d511c1e5fa3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/pursuit-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/pursuit-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/pursuit-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/pursuit-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/pursuit-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/pursuit-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/pursuit-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/pursuit-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/pursuit-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/pursuit-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A2W8Z2JXPk3I+m3/GtZdVhHG2Un1IFFFPEe5blM8NJ1L8x//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#cdac89\",\"#085479\",\"#edf5f4\",\"#746c5c\",\"#5caccc\"],\"lightness\":57,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16870,17107,1,'pursuit-2-1','2021-05-18 01:02:50','2021-06-09 23:18:09','d1a33a6f-4048-4ddd-b50a-4194221f3e65',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/pursuit-2-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/pursuit-2-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/pursuit-2-1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1024_crop_center-center_82_line/pursuit-2-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/pursuit-2-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/pursuit-2-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/pursuit-2-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/pursuit-2-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/pursuit-2-1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1024_crop_center-center_82_line/pursuit-2-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/pursuit-2-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/pursuit-2-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"2048\":1024,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2048\",\"originalImageHeight\":\"1024\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6bU5LhLzEaTMhA5QHFQaQNQ/tBTdeYIth4JOM0UVnsyt0f/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c7a987\",\"#3a6471\",\"#f2f1f0\",\"#77807e\",\"#6a675a\"],\"lightness\":58,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16871,17108,1,'21_03 IWD banner Bree_1','2021-05-18 01:02:51','2021-06-09 23:20:25','8131064d-31b3-4630-b34a-3cea731cea96',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/21_03-IWD-banner-Bree_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/21_03-IWD-banner-Bree_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/21_03-IWD-banner-Bree_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/21_03-IWD-banner-Bree_1.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/21_03-IWD-banner-Bree_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/21_03-IWD-banner-Bree_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/21_03-IWD-banner-Bree_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/21_03-IWD-banner-Bree_1.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1306\",\"originalImageHeight\":\"1306\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A0dPsrGzuzZ+Qj7VG53QMWOPU9PpUmpaLZyKpWCNFUncqKFznvkc8VTsLu2vrk3ImRHcYeNiM/h+grQ1G/hKFJMooO9n2bgAKT2CmrvbQ/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d3c8c5\",\"#234031\",\"#82958c\",\"#8a5651\",\"#bc696a\"],\"lightness\":52,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16872,17109,1,'pursuit-3-1','2021-05-18 01:02:53','2021-06-09 23:18:19','21e9c6a0-40e5-450b-b217-f11a551090ce',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/pursuit-3-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/pursuit-3-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/pursuit-3-1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1024_crop_center-center_82_line/pursuit-3-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/pursuit-3-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/pursuit-3-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/pursuit-3-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/pursuit-3-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/pursuit-3-1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1024_crop_center-center_82_line/pursuit-3-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/pursuit-3-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/pursuit-3-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"2048\":1024,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2048\",\"originalImageHeight\":\"1024\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6Kwu544ZPtH2xmJG3dbyH+lWH1JliLCG6Zt2ABbyZx+Iooq1BIy9oz//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e0ddd7\",\"#1c5a75\",\"#8a7a61\",\"#8a9597\",\"#747177\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16873,17110,1,'pursuit-4','2021-05-18 01:02:55','2021-06-09 23:18:01','22654285-9085-4d13-8b51-f3546d60cf14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x384_crop_center-center_82_line/pursuit-4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x320_crop_center-center_82_line/pursuit-4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x256_crop_center-center_82_line/pursuit-4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x192_crop_center-center_82_line/pursuit-4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x160_crop_center-center_82_line/pursuit-4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x384_crop_center-center_82_line/pursuit-4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x320_crop_center-center_82_line/pursuit-4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x256_crop_center-center_82_line/pursuit-4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x192_crop_center-center_82_line/pursuit-4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x160_crop_center-center_82_line/pursuit-4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":384,\"1280\":320,\"1024\":256,\"768\":192,\"640\":160},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7mODZcyy+bI3mAfIWyq49B2qQJiRm3Mc44J4FFFD3FHY/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#176285\",\"#eae7e0\",\"#d0ae87\",\"#91b5c7\",\"#84949c\"],\"lightness\":60,\"placeholderWidth\":1536,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16874,17111,1,'pursuit-5-1','2021-05-18 01:02:56','2021-06-09 23:18:01','7c174374-67c0-4809-9624-f9d0c042059d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/pursuit-5-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/pursuit-5-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/pursuit-5-1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1536_crop_center-center_82_line/pursuit-5-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/pursuit-5-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/pursuit-5-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/pursuit-5-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/pursuit-5-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/pursuit-5-1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1536_crop_center-center_82_line/pursuit-5-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/pursuit-5-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/pursuit-5-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"1280\":960,\"1024\":768,\"2048\":1536,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2048\",\"originalImageHeight\":\"1536\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A65Y4ZAokU7sdQ5H8qx9Gu43sIlnuCZ3ZtobJLDce/wCFa6XDooUBcD1FVba3jtYRFECEBJAJz1Oaq+hFtbn/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ced6d7\",\"#095677\",\"#818a83\",\"#819ea5\",\"#677a7f\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16875,17112,1,'21_03 IWD LinkedIn Bree_2','2021-05-18 01:02:57','2021-06-09 23:20:34','b3d0a493-15e1-491d-8480-0df7e4072d6f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x802_crop_center-center_82_line/21_03-IWD-LinkedIn-Bree_2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x668_crop_center-center_82_line/21_03-IWD-LinkedIn-Bree_2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x534_crop_center-center_82_line/21_03-IWD-LinkedIn-Bree_2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1069_crop_center-center_82_line/21_03-IWD-LinkedIn-Bree_2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x401_crop_center-center_82_line/21_03-IWD-LinkedIn-Bree_2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x334_crop_center-center_82_line/21_03-IWD-LinkedIn-Bree_2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x802_crop_center-center_82_line/21_03-IWD-LinkedIn-Bree_2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x668_crop_center-center_82_line/21_03-IWD-LinkedIn-Bree_2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x534_crop_center-center_82_line/21_03-IWD-LinkedIn-Bree_2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1069_crop_center-center_82_line/21_03-IWD-LinkedIn-Bree_2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x401_crop_center-center_82_line/21_03-IWD-LinkedIn-Bree_2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x334_crop_center-center_82_line/21_03-IWD-LinkedIn-Bree_2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":802,\"1280\":668,\"1024\":534,\"2048\":1069,\"768\":401,\"640\":334},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2500\",\"originalImageHeight\":\"1306\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A07b7FLp0oMcBhyfKxjp2H8q4i4CC4kEf3N52/TPFFFLqRNe6j//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d4c8c6\",\"#224031\",\"#899c93\",\"#ad6361\",\"#8ca59c\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":802,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16876,17113,1,'PursuitMinerals_homepage','2021-05-18 01:03:00','2021-06-09 23:18:03','694073ab-156e-495c-a4b7-e9c5240eacd2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/PursuitMinerals_homepage.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/PursuitMinerals_homepage.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x2560_crop_center-center_82_line/PursuitMinerals_homepage.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/PursuitMinerals_homepage.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2048_crop_center-center_82_line/PursuitMinerals_homepage.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/PursuitMinerals_homepage.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/PursuitMinerals_homepage.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/PursuitMinerals_homepage.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/PursuitMinerals_homepage.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x2560_crop_center-center_82_line/PursuitMinerals_homepage.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/PursuitMinerals_homepage.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2048_crop_center-center_82_line/PursuitMinerals_homepage.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/PursuitMinerals_homepage.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/PursuitMinerals_homepage.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"2560\":2560,\"1024\":1024,\"2048\":2048,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2592\",\"originalImageHeight\":\"2592\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AoIcIyHJ2dCoyOfWoZwgGTwTV9reK0tcMUkkbq3p9Ky7iQtLuLbuO9dMPed0cFRcqsz//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#125f7b\",\"#a49e8b\",\"#618084\",\"#6e969a\",\"#689fb0\"],\"lightness\":44,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16877,17114,1,'21_03 IWD banner Suz_1','2021-05-18 01:03:02','2021-06-09 23:20:26','fa27d72f-d364-40fc-bc1d-99975dd05e74',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/21_03-IWD-banner-Suz_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/21_03-IWD-banner-Suz_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/21_03-IWD-banner-Suz_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/21_03-IWD-banner-Suz_1.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/21_03-IWD-banner-Suz_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/21_03-IWD-banner-Suz_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/21_03-IWD-banner-Suz_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/21_03-IWD-banner-Suz_1.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1306\",\"originalImageHeight\":\"1306\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AjuLSLTbZpYNjtE+11kQHeBjJyeep6CtCfS7O5hidYERCM7VQL1xySOeKzpdUtL6BlMUgklILqHwCenA/z0q9DdsLXZehoxGchzHkbR6+hpMVNXltof/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c6b9b6\",\"#264537\",\"#677e75\",\"#70584f\",\"#9c6364\"],\"lightness\":47,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16878,17115,1,'21_03 IWD LinkedIn Kate_1','2021-05-18 01:03:08','2021-06-09 23:21:31','7b43e5d0-bfdd-45c4-8117-830e579e101a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/21_03-IWD-LinkedIn-Kate_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/21_03-IWD-LinkedIn-Kate_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/21_03-IWD-LinkedIn-Kate_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/21_03-IWD-LinkedIn-Kate_1.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/21_03-IWD-LinkedIn-Kate_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/21_03-IWD-LinkedIn-Kate_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/21_03-IWD-LinkedIn-Kate_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/21_03-IWD-LinkedIn-Kate_1.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1306\",\"originalImageHeight\":\"1306\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Almshp909rYpH/o0YMkjwq5lc+u7oPpVufTrLUbG3u0tookZdzJGgXk98jnisu1kk1X7dcLdRpPMm0IzhSx69P0q1Yl7LTBBevtAPmfc3CNR2J5570mKmry20P//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d5c1bf\",\"#1f3e2f\",\"#575b51\",\"#6e847a\",\"#ac6365\"],\"lightness\":47,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16879,17116,1,'dsiti-ap-1','2021-05-18 01:03:09','2021-06-09 23:23:25','766503f8-18df-4773-810c-418fddc60cad',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/dsiti-ap-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/dsiti-ap-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/dsiti-ap-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/dsiti-ap-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/dsiti-ap-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/dsiti-ap-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/dsiti-ap-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/dsiti-ap-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/dsiti-ap-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/dsiti-ap-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3NdurqC+iFtI6DYC2M4PJ9varejXs1xF5dwjb1yd/rzRRQLlV7n/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e5e7e6\",\"#445e52\",\"#43b88b\",\"#7d726b\",\"#827d71\"],\"lightness\":57,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16880,17117,1,'dsiti-ap-2','2021-05-18 01:03:11','2021-06-09 23:23:30','836351b1-a7dc-47cf-9972-e351484547b5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/dsiti-ap-2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/dsiti-ap-2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/dsiti-ap-2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/dsiti-ap-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/dsiti-ap-2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/dsiti-ap-2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/dsiti-ap-2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/dsiti-ap-2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/dsiti-ap-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/dsiti-ap-2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6DUZnv5Ft7GcpNa3KGUElcrzxx1qzolpPY2JhuZxM4kYgqxIAPbmiimxLuf/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#eaebeb\",\"#1d3540\",\"#35b085\",\"#ce7467\",\"#ca8a76\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16881,17118,1,'dsiti-ap-3','2021-05-18 01:03:13','2021-06-09 23:23:34','9362787f-4fa2-4e16-bf5d-ae20e506e20a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/dsiti-ap-3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/dsiti-ap-3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/dsiti-ap-3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/dsiti-ap-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/dsiti-ap-3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/dsiti-ap-3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/dsiti-ap-3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/dsiti-ap-3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/dsiti-ap-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/dsiti-ap-3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AXy/Fn2rb/pmN/XeNuM12Uxv0uV8lIpITjcXcgrzzgY9KKKbEkf/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e5e8e8\",\"#182d3a\",\"#42ac86\",\"#697c85\",\"#66c4a8\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16882,17119,1,'21_03 IWD LinkedIn Kimi_1','2021-05-18 01:03:15','2021-06-09 23:21:32','3e3c1735-6e38-44a2-a295-29ef4967c90a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/21_03-IWD-LinkedIn-Kimi_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/21_03-IWD-LinkedIn-Kimi_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/21_03-IWD-LinkedIn-Kimi_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/21_03-IWD-LinkedIn-Kimi_1.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/21_03-IWD-LinkedIn-Kimi_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/21_03-IWD-LinkedIn-Kimi_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/21_03-IWD-LinkedIn-Kimi_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/21_03-IWD-LinkedIn-Kimi_1.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1306\",\"originalImageHeight\":\"1306\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Atz6R9htY47GKIyD/AFkssYcn6eneo47G21Cwgma2ijPzB1RQoJzjORz2/Wrtnqdpql0rCYRJ5JDo7gENkYx696qQyLbW7wz7kjjfcrbNwCj/AOvSYU1eV7aH/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d0c4c1\",\"#224132\",\"#758980\",\"#7f544e\",\"#a96969\"],\"lightness\":50,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16883,17120,1,'dsiti-ap-4','2021-05-18 01:03:15','2021-06-09 23:23:35','785d8f65-e18e-4716-9bad-215d0fad413b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/dsiti-ap-4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/dsiti-ap-4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/dsiti-ap-4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/dsiti-ap-4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/dsiti-ap-4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/dsiti-ap-4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/dsiti-ap-4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/dsiti-ap-4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/dsiti-ap-4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/dsiti-ap-4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7d95ICZrF0e2aHWr+QySkOzfIxJA+btk4/KiigTP/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#335945\",\"#efefef\",\"#99afb3\",\"#88685a\",\"#94826e\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16884,17121,1,'dsiti-ap-5','2021-05-18 01:03:17','2021-06-09 23:23:35','eb4fa6e1-df66-482d-82bd-4d8f4d3d8a34',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/dsiti-ap-5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/dsiti-ap-5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/dsiti-ap-5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/dsiti-ap-5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/dsiti-ap-5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/dsiti-ap-5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/dsiti-ap-5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/dsiti-ap-5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/dsiti-ap-5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/dsiti-ap-5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7kZyCOg6j1rF0K7kuJWR0dRGGADKemRzk9aKKBPY/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#436455\",\"#f0efee\",\"#846a61\",\"#9aa099\",\"#9b816e\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16885,17122,1,'dsiti-ap-6','2021-05-18 01:03:19','2021-06-09 23:23:36','23e690c4-5523-4dc3-a71b-a9bb70c72319',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/dsiti-ap-6.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/dsiti-ap-6.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/dsiti-ap-6.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/dsiti-ap-6.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/dsiti-ap-6.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/dsiti-ap-6.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/dsiti-ap-6.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/dsiti-ap-6.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/dsiti-ap-6.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/dsiti-ap-6.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7nDEggjjqDVC2uLibVJVki2RIGCNn73IoopMT2P/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#eeedeb\",\"#428062\",\"#856b5b\",\"#9cab9d\",\"#97816e\"],\"lightness\":61,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16886,17123,1,'Charters-towers_homepage','2021-05-18 01:03:22','2021-06-09 23:26:19','776bc0d0-2375-43ae-82f1-a9a56d448a93',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/Charters-towers_homepage.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/Charters-towers_homepage.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Charters-towers_homepage.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2048_crop_center-center_82_line/Charters-towers_homepage.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Charters-towers_homepage.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Charters-towers_homepage.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/Charters-towers_homepage.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/Charters-towers_homepage.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Charters-towers_homepage.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2048_crop_center-center_82_line/Charters-towers_homepage.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Charters-towers_homepage.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Charters-towers_homepage.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"1024\":1024,\"2048\":2048,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2048\",\"originalImageHeight\":\"2048\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8ArwxyWwZ8AMeBk9a0EJZFLdSKyTebzhlyFPar0Zk8veAV9FJr0YNdDyKkXuz/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#36aad9\",\"#2c546d\",\"#327495\",\"#2d6385\",\"#3483ad\"],\"lightness\":41,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16887,17124,1,'21_03 IWD LinkedIn Bec_1','2021-05-18 01:03:24','2021-06-09 23:21:02','a9a5b76f-b78a-4304-86ee-e108cad27e3f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/21_03-IWD-LinkedIn-Bec_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/21_03-IWD-LinkedIn-Bec_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/21_03-IWD-LinkedIn-Bec_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/21_03-IWD-LinkedIn-Bec_1.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/21_03-IWD-LinkedIn-Bec_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/21_03-IWD-LinkedIn-Bec_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/21_03-IWD-LinkedIn-Bec_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/21_03-IWD-LinkedIn-Bec_1.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1306\",\"originalImageHeight\":\"1306\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ar21ssMs6QrGVgHJeLeZCByM9vwrSk02zuoY3WCNUxuwqheuOcjmsCK9LC4K5EsxwFA4GetbttchLBEuY3hEYGSU3DA79OKlipK720P/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#2f4c3e\",\"#aebbb5\",\"#e2aba9\",\"#8f928b\",\"#9daca3\"],\"lightness\":54,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16888,17125,1,'sdc-1','2021-05-18 01:03:26','2021-06-09 23:16:41','17a7bb69-07e5-4cc5-af18-fa1c39fca6e0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x960_crop_center-center_82_line/sdc-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x800_crop_center-center_82_line/sdc-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x640_crop_center-center_82_line/sdc-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x480_crop_center-center_82_line/sdc-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x400_crop_center-center_82_line/sdc-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x960_crop_center-center_82_line/sdc-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x800_crop_center-center_82_line/sdc-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x640_crop_center-center_82_line/sdc-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x480_crop_center-center_82_line/sdc-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x400_crop_center-center_82_line/sdc-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":960,\"1280\":800,\"1024\":640,\"768\":480,\"640\":400},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"1126\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A73nf149MVxnfvXa1xddeG6nn477Pz/Q//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#36b8e8\",\"#e7eeed\",\"#2b617a\",\"#84b5c1\",\"#858989\"],\"lightness\":61,\"placeholderWidth\":1536,\"placeholderHeight\":960,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16889,17126,1,'sdc-2','2021-05-18 01:03:29','2021-06-09 23:16:43','5259fc9e-6d73-4d9b-baf9-55ad0f5fde4f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x628_crop_center-center_82_line/sdc-2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x523_crop_center-center_82_line/sdc-2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x418_crop_center-center_82_line/sdc-2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x314_crop_center-center_82_line/sdc-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x261_crop_center-center_82_line/sdc-2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x628_crop_center-center_82_line/sdc-2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x523_crop_center-center_82_line/sdc-2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x418_crop_center-center_82_line/sdc-2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x314_crop_center-center_82_line/sdc-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x261_crop_center-center_82_line/sdc-2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":628,\"1280\":523,\"1024\":418,\"768\":314,\"640\":261},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"736\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Aqa5/yx6dG6jPpXcadj9516gfePvRRWeM/wB5p/P8jLB/wH/XU//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#f1c72d\",\"#293e4e\",\"#3cb3e7\",\"#f0f5f3\",\"#806008\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":628,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16890,17127,1,'21_03 IWD LinkedIn Kat_1','2021-05-18 01:03:31','2021-06-09 23:21:26','4283aa02-85d4-4821-98ee-63ac42657aa2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/21_03-IWD-LinkedIn-Kat_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/21_03-IWD-LinkedIn-Kat_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/21_03-IWD-LinkedIn-Kat_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/21_03-IWD-LinkedIn-Kat_1.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/21_03-IWD-LinkedIn-Kat_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/21_03-IWD-LinkedIn-Kat_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/21_03-IWD-LinkedIn-Kat_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/21_03-IWD-LinkedIn-Kat_1.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1306\",\"originalImageHeight\":\"1306\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AkNvZaYiRpCsp6OXiyW9ee1WbrSbSUIBDGEGThVC5z3yOaqRTpqlu7LPEkjPkIzAFeOnvVn7SPLU3KtEI1BLFNw47+1Swpq720P/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#bdb3ae\",\"#224031\",\"#63796f\",\"#654a41\",\"#765a56\"],\"lightness\":44,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16891,17128,1,'sdc-3','2021-05-18 01:03:31','2021-06-09 23:16:43','21e22da3-a1fb-4be1-ac8a-b82dc72daf72',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x715_crop_center-center_82_line/sdc-3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x595_crop_center-center_82_line/sdc-3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x476_crop_center-center_82_line/sdc-3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x357_crop_center-center_82_line/sdc-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x297_crop_center-center_82_line/sdc-3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x715_crop_center-center_82_line/sdc-3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x595_crop_center-center_82_line/sdc-3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x476_crop_center-center_82_line/sdc-3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x357_crop_center-center_82_line/sdc-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x297_crop_center-center_82_line/sdc-3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":715,\"1280\":595,\"1024\":476,\"768\":357,\"640\":297},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"838\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AjEsTS70Zt/BbIxkVdjOQSSfpRRXfSbd0zyK0UrWP/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#39a2cf\",\"#e9cc3d\",\"#2a5e7e\",\"#2e5463\",\"#85c3c9\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":715,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16892,17129,1,'sdc-4','2021-05-18 01:03:33','2021-06-09 23:16:44','1002bc51-ec03-4586-9917-f949841fecc6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/sdc-4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/sdc-4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/sdc-4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/sdc-4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/sdc-4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/sdc-4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/sdc-4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/sdc-4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/sdc-4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/sdc-4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"1800\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A1JbyaG+mzI5QOVxu+7zx7Vcs7m+luUDxt5JydxXtjg5/KmX9mBcExQbg/wAzfKTk1ahmuAUiO8KMDHl8AfXFTOSjLmtvoKim049j/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#4187a4\",\"#d0dddf\",\"#e5a544\",\"#997ab7\",\"#c4ab7d\"],\"lightness\":61,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16893,17130,1,'sdc-5','2021-05-18 01:03:36','2021-06-09 23:16:45','c3136a91-4f6e-4c4a-a7aa-de9733f285fd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/sdc-5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/sdc-5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/sdc-5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/sdc-5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/sdc-5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/sdc-5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/sdc-5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/sdc-5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/sdc-5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/sdc-5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"1280\":960,\"1024\":768,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"1350\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ap6Loj6pFJIsiKVbADAn+VP1rRZNLsoWcxNlyu5VIJ6nnNVdO1q70xCtsUAJz8y5p2pa7e6pCsV0yFVbcNq45q3KzsZ2urn//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#293e4e\",\"#c0dae9\",\"#e5c03d\",\"#657b90\",\"#6cbc9c\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16894,17131,1,'21_03 IWD LinkedIn Jo_1','2021-05-18 01:03:37','2021-06-09 23:21:03','06176305-80d8-437e-9361-2468c3a1f3f3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/21_03-IWD-LinkedIn-Jo_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/21_03-IWD-LinkedIn-Jo_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/21_03-IWD-LinkedIn-Jo_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/21_03-IWD-LinkedIn-Jo_1.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/21_03-IWD-LinkedIn-Jo_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/21_03-IWD-LinkedIn-Jo_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/21_03-IWD-LinkedIn-Jo_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/21_03-IWD-LinkedIn-Jo_1.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1306\",\"originalImageHeight\":\"1306\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A2J9FtdPtoIIIgCQQ8pVSztxjkg8deBT9Z8P2bRJIkEUajhlRQoye+R9K5WbVbmbT4yt1I100hD88nOa2FvJ4/NW6mdbXCyAMhbaR/Kkwp6vbQ//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e7c0be\",\"#244132\",\"#a3b2ab\",\"#81837c\",\"#89a494\"],\"lightness\":57,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16895,17132,1,'sdc-6','2021-05-18 01:03:39','2021-06-09 23:16:46','f4f33691-bc7a-434c-a3e6-0086f680f628',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x549_crop_center-center_82_line/sdc-6.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x457_crop_center-center_82_line/sdc-6.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x366_crop_center-center_82_line/sdc-6.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x274_crop_center-center_82_line/sdc-6.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x228_crop_center-center_82_line/sdc-6.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x549_crop_center-center_82_line/sdc-6.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x457_crop_center-center_82_line/sdc-6.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x366_crop_center-center_82_line/sdc-6.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x274_crop_center-center_82_line/sdc-6.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x228_crop_center-center_82_line/sdc-6.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":549,\"1280\":457,\"1024\":366,\"768\":274,\"640\":228},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"644\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AqahamJJ2WVtidE9ARnH61miVwck57/pRRUJ3bv5hUST0P//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#354137\",\"#cfc0bb\",\"#6e7e56\",\"#83b3d2\",\"#6b94ae\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":549,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16896,17133,1,'physiotas_1','2021-05-18 01:03:41','2021-06-09 23:18:24','f990842a-e7b8-4473-b898-3180e640a073',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x192_crop_center-center_82_line/physiotas_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x160_crop_center-center_82_line/physiotas_1.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x192_crop_center-center_82_line/physiotas_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x160_crop_center-center_82_line/physiotas_1.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":192,\"640\":160},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"226\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5xW2nOAfqM0jNuOdoHsKKKsg/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#2c3c44\",\"#cec2a7\",\"#44afa9\",\"#518387\",\"#4aa99c\"],\"lightness\":45,\"placeholderWidth\":768,\"placeholderHeight\":192,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16897,17134,1,'physiotas_2','2021-05-18 01:03:42','2021-06-09 23:18:24','2ca85cd4-6b2d-4810-b7c3-4c14e3d0b751',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x192_crop_center-center_82_line/physiotas_2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x160_crop_center-center_82_line/physiotas_2.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x192_crop_center-center_82_line/physiotas_2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x160_crop_center-center_82_line/physiotas_2.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":192,\"640\":160},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"226\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7wLhicnntnigJhy25uTnGeOlFFAH/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#7c6438\",\"#e5e9e8\",\"#3ca498\",\"#d9bf8e\",\"#84848c\"],\"lightness\":57,\"placeholderWidth\":768,\"placeholderHeight\":192,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16898,17135,1,'physiotas_3','2021-05-18 01:03:42','2021-06-09 23:18:25','3b18b2f1-d9ed-48de-b43a-6193dbd972d1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/physiotas_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/physiotas_3.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/physiotas_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/physiotas_3.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6rxC16tpH9gWYyF8Ex9QPf2rUXOOTn8KKKBJan//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e4ebec\",\"#2e6263\",\"#3ab8ab\",\"#7a8486\",\"#44acac\"],\"lightness\":57,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16899,17136,1,'21_04_DTIS_DJAG','2021-05-18 01:03:42','2021-06-09 23:21:33','b5ec77e8-952e-41c4-9f22-6a48a04ca6db',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16900,17137,1,'21_04_DTIS_DSITI','2021-05-18 01:03:43','2021-06-09 23:21:33','aa84d7d1-94f4-4c0c-afd0-46520b9b5f68',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16901,17138,1,'physiotas_4','2021-05-18 01:03:43','2021-06-09 23:18:25','3beb03f4-2e24-48e8-92cc-139a539c51db',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/physiotas_4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/physiotas_4.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/physiotas_4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/physiotas_4.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6SbR7ptWmvBeFYXIIRScjA/LrVuW4ntbyytgvmpOWDyEcrgZHSiigD//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#404a4e\",\"#e4e1df\",\"#9c8a84\",\"#acbabb\",\"#6c94b4\"],\"lightness\":57,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16902,17139,1,'21_04_DTIS_Infographics','2021-05-18 01:03:44','2021-06-09 23:21:33','2c3e4544-5359-42a3-bca6-5f0c8530f5cb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16903,17140,1,'21_04_DTIS_OG','2021-05-18 01:03:44','2021-06-09 23:21:33','498f30d1-dead-411f-a0de-22fa5be8e8bb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16904,17141,1,'physiotas_5','2021-05-18 01:03:44','2021-06-09 23:16:31','d9db942f-36dc-487e-a5fc-5c7e236f58b7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/physiotas_5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/physiotas_5.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/physiotas_5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/physiotas_5.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Av2ulaf8A2ZbvNbL5rRKzZzk8DmoNQsWktJJfLZlRGKccAAVrRXukfZoRcLCZVjVWZosngYxnFOubjTJLOeOJYld4mRWEeCMjHpxRytyuQ6sIx1Z//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d3d2ce\",\"#326465\",\"#d78c26\",\"#5c8889\",\"#646568\"],\"lightness\":54,\"placeholderWidth\":768,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16905,17142,1,'21_04_DTIS_QFCC','2021-05-18 01:03:45','2021-06-09 23:21:33','b9e69cee-5e7a-43cc-9cf9-bcd34cf2f9a8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16906,17143,1,'21_04_DTIS_QPC','2021-05-18 01:03:45','2021-06-09 23:21:30','c825f14f-0f27-4e2a-ae3b-ba773d0b8b49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16907,17144,1,'qpc-1','2021-05-18 01:03:46','2021-06-09 23:18:16','831f8095-a8bd-4eb2-9c23-a8c4cd6ca86a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/qpc-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/qpc-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/qpc-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/qpc-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/qpc-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/qpc-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/qpc-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/qpc-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/qpc-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/qpc-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"1800\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AwggMRfeoIONvOTTanEQWNSXTDZ564ps6bDt8yJ8EjKUBc//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#414546\",\"#dc846f\",\"#877777\",\"#1e91a5\",\"#6ebcc7\"],\"lightness\":45,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16908,17145,1,'Janine','2021-05-18 01:03:46','2021-06-09 23:15:42','04ba275a-15c7-4918-aefa-42f57ab683ab',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/Janine.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/Janine.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Janine.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Janine.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Janine.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/Janine.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/Janine.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Janine.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Janine.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Janine.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1600\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6fUJJo7f/R2VHJxvZdwX8O9Q6PeTXkEhuAu6N9oZQQGGOuD0q3IjXFu5hAZlbBVu9VLSGfTrKWSZV2ht+0dQO5p8/v8AkVyLk8z/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dbe0ee\",\"#824f35\",\"#cb8361\",\"#e09e84\",\"#7c7c7c\"],\"lightness\":64,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16909,17146,1,'qpc-2','2021-05-18 01:03:48','2021-06-09 23:18:17','acd8c751-88d5-4f15-b577-1581454b2fa7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/qpc-2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/qpc-2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/qpc-2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/qpc-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/qpc-2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/qpc-2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/qpc-2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/qpc-2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/qpc-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/qpc-2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AjCwW3iC3XTHJBI8wA8Ct68kaQeUG5Vcb/Xn/AOsKKKPsodVWrTXp+R//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c8c6c1\",\"#0e5868\",\"#e31e28\",\"#7e837f\",\"#726159\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16910,17147,1,'Jo','2021-05-18 01:03:49','2021-06-09 23:15:43','63861d9a-a46c-4df5-beca-1a0969bd4563',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Jo.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Jo.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Jo.jpg\"},\"optimizedWebPImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Jo.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Jo.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Jo.jpg.webp\"},\"variantSourceWidths\":[\"1024\",\"768\",\"640\"],\"variantHeights\":{\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1181\",\"originalImageHeight\":\"1181\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6fUJ3ghXy2CFmwWKltowecUafJJJAfNk8wq2A+zbkcdqyJvEENxpzXJhZYd+0HqeuM4pbPxDAtk05iYW6SbS3cdOcfjVc3v+QWXJ5n//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d0d2df\",\"#2f2b2b\",\"#99745d\",\"#8e8f8c\",\"#b46c7c\"],\"lightness\":53,\"placeholderWidth\":1024,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16911,17148,1,'Tim Kho','2021-05-18 01:03:51','2021-06-09 23:17:51','e3cde485-6266-487e-b959-450fad73ee4d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/Tim-Kho.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/Tim-Kho.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Tim-Kho.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Tim-Kho.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Tim-Kho.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/Tim-Kho.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/Tim-Kho.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Tim-Kho.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Tim-Kho.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Tim-Kho.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1600\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6TxBdXNtaJ9jlSKV3xvdd2B9PypfD2oSahp+6d1aaNyjso259DjtWRrviG2kP2eGJnCsczdAPp61U8N+JLayiNtdRMgL585ec/Ue1cvsZ8uw7x5fM//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#eef0ae\",\"#2f3647\",\"#965a45\",\"#af7e54\",\"#748c8c\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16912,17149,1,'qpc-3','2021-05-18 01:03:51','2021-06-09 23:18:18','326c11a7-53a0-4aff-9ed9-190aef2422ee',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/qpc-3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/qpc-3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/qpc-3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/qpc-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/qpc-3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/qpc-3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/qpc-3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/qpc-3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/qpc-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/qpc-3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AYLa4eUQ3dzBGs4JVwDuOOoYHkdaWadruyjuQ0JijHzoeCuccZHXJH6UUVlGTlNJmsoqNNtdD/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#bcafa3\",\"#1d333e\",\"#623021\",\"#a76d27\",\"#5a717c\"],\"lightness\":41,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16913,17150,1,'qpc-41','2021-05-18 01:03:54','2021-06-09 23:18:41','cdb0c17e-e325-4df5-9c13-9c30f4c3256c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x960_crop_center-center_82_line/qpc-41.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x800_crop_center-center_82_line/qpc-41.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x640_crop_center-center_82_line/qpc-41.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x480_crop_center-center_82_line/qpc-41.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x400_crop_center-center_82_line/qpc-41.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x960_crop_center-center_82_line/qpc-41.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x800_crop_center-center_82_line/qpc-41.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x640_crop_center-center_82_line/qpc-41.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x480_crop_center-center_82_line/qpc-41.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x400_crop_center-center_82_line/qpc-41.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":960,\"1280\":800,\"1024\":640,\"768\":480,\"640\":400},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"1126\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3p/Ei2+oyW11FtRZNqyIffAzWk19GlxBHlpPNYgGPkDnHNc7qqKbycFQQZRkY68mtmVFEthhQMMD096q2tiG+WNz/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#206d7d\",\"#e5e6e6\",\"#aa3738\",\"#75a5b3\",\"#aa8a55\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":960,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16914,17151,1,'CCC-tour-citipointe','2021-05-18 01:03:55','2021-06-09 23:25:58','534b3062-248e-488a-a60b-9aced0c3945a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1579_crop_center-center_82_line/CCC-tour-citipointe.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1316_crop_center-center_82_line/CCC-tour-citipointe.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1053_crop_center-center_82_line/CCC-tour-citipointe.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x789_crop_center-center_82_line/CCC-tour-citipointe.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x658_crop_center-center_82_line/CCC-tour-citipointe.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1579_crop_center-center_82_line/CCC-tour-citipointe.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1316_crop_center-center_82_line/CCC-tour-citipointe.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1053_crop_center-center_82_line/CCC-tour-citipointe.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x789_crop_center-center_82_line/CCC-tour-citipointe.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x658_crop_center-center_82_line/CCC-tour-citipointe.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1579,\"1280\":1316,\"1024\":1053,\"768\":789,\"640\":658},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2000\",\"originalImageHeight\":\"2057\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AwNQubk6xdRpO4UXDrjzMfxHoKtw3t02rWltNcyYSaPaG4LAsOp71v30Ulrq195Su0aJuQEZG47ckf99Grmm6St+tvfXE8ySEhmiUgKSDxxj2FadLkdbH/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#212e3e\",\"#d2d4d1\",\"#2270ab\",\"#78a3bc\",\"#9e5f57\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":1579,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16915,17152,1,'fopats-1','2021-05-18 01:03:57','2021-06-09 23:24:57','fe16f7f1-cbae-4779-8af7-53e0fd74c7ab',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/fopats-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/fopats-1.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/fopats-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/fopats-1.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A62UkQvsxvwcZqJpG8tS4G4jmiigD/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dadad9\",\"#4d4c44\",\"#898982\",\"#747874\",\"#7c7474\"],\"lightness\":55,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16916,17153,1,'fopats-2','2021-05-18 01:03:57','2021-06-09 23:24:58','32cda44f-5370-470c-867d-82b655746bdc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/fopats-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/fopats-2.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/fopats-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/fopats-2.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7FSmCGJB9RUNw6j7pz9RRRQB/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dbdbda\",\"#318abf\",\"#d89d65\",\"#92ccea\",\"#e8a494\"],\"lightness\":68,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16917,17154,1,'fopats-3','2021-05-18 01:03:58','2021-06-09 23:24:58','1d212daf-85f7-4652-a8b7-a7987ecfd82a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/fopats-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/fopats-3.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/fopats-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/fopats-3.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6m6d0iBixu3jr9adcOuRtwRiiigD/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dad9d8\",\"#5e5a42\",\"#9b9883\",\"#7c7476\",\"#747c74\"],\"lightness\":57,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16918,17155,1,'fopats-4','2021-05-18 01:03:59','2021-06-09 23:24:59','1a21b453-6fcb-42e9-b5a7-190db0f49ccf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/fopats-4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/fopats-4.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/fopats-4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/fopats-4.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7C8MiWMzxN84iJXA6HBxWfYm6msbaV5kSR0UuHjJOT9CKKKrqR0P/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d8e7eb\",\"#3a3334\",\"#773428\",\"#c08f4d\",\"#87aabc\"],\"lightness\":52,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16919,17156,1,'fopats-5','2021-05-18 01:03:59','2021-06-09 23:24:59','009bc0b3-b071-4db3-93c5-b63ab6dfcf31',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/fopats-5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/fopats-5.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/fopats-5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/fopats-5.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A719+Bs25zzupI/MwfMC57bTRRQB//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#eff3ee\",\"#355b71\",\"#b47867\",\"#ecd45e\",\"#5cc4d4\"],\"lightness\":63,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16920,17157,1,'CCC-iCan-19','2021-05-18 01:04:00','2021-06-03 05:09:23','25e99726-c019-4be2-aa91-612644e88ac0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x544_crop_center-center_82_line/CCC-iCan-19.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x453_crop_center-center_82_line/CCC-iCan-19.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x906_crop_center-center_82_line/CCC-iCan-19.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x362_crop_center-center_82_line/CCC-iCan-19.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x725_crop_center-center_82_line/CCC-iCan-19.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x272_crop_center-center_82_line/CCC-iCan-19.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x226_crop_center-center_82_line/CCC-iCan-19.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x544_crop_center-center_82_line/CCC-iCan-19.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x453_crop_center-center_82_line/CCC-iCan-19.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x906_crop_center-center_82_line/CCC-iCan-19.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x362_crop_center-center_82_line/CCC-iCan-19.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x725_crop_center-center_82_line/CCC-iCan-19.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x272_crop_center-center_82_line/CCC-iCan-19.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x226_crop_center-center_82_line/CCC-iCan-19.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":544,\"1280\":453,\"2560\":906,\"1024\":362,\"2048\":725,\"768\":272,\"640\":226},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2880\",\"originalImageHeight\":\"1020\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5GGUpYzdTucL1wMY9O/b8qs8CyPHTP8AKiiqYkf/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#20242a\",\"#b9c4cb\",\"#788ea2\",\"#697480\",\"#948f85\"],\"lightness\":46,\"placeholderWidth\":1536,\"placeholderHeight\":544,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16921,17158,1,'fopats-6','2021-05-18 01:04:00','2021-06-09 23:24:56','0dc55b2f-bcc1-4ab5-b022-608a93a1abaa',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/fopats-6.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/fopats-6.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/fopats-6.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/fopats-6.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A759235MZ96RN+395t3f7PSiigD//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#455865\",\"#f4f3f1\",\"#d8735e\",\"#adbdc7\",\"#eabc5a\"],\"lightness\":62,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16922,17159,1,'13family-1','2021-05-18 01:04:01','2021-06-09 23:23:15','3aadbfe3-0fec-494d-b8f7-0b31d7742dba',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/13family-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/13family-1.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/13family-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/13family-1.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7W6F55qG1MO3HzCQH9MU62+2bm+1GDbzjy85/WiigD//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#295360\",\"#e8e5e1\",\"#a23d4b\",\"#a6a855\",\"#939b9a\"],\"lightness\":52,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16923,17160,1,'13family-2','2021-05-18 01:04:01','2021-06-09 23:23:15','f9853e52-39ab-4d59-ad00-c1672464199f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/13family-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/13family-2.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/13family-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/13family-2.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ah8Pxh7CRjJbriQgCQjPQevao9bgMOmxs01u7GQZ8tgTnaf0oorobvI5IwUYt9z//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#0f3f5d\",\"#d2d2d2\",\"#11b9ce\",\"#8d6658\",\"#789494\"],\"lightness\":47,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16924,17161,1,'13family-3','2021-05-18 01:04:02','2021-06-09 23:23:16','0a2436a6-1837-4dd0-ad91-50b04a5b98de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/13family-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/13family-3.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/13family-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/13family-3.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ar6BH5lg7ebbriQjEhGeg9R0qXxCqJpikPbsxnGPLxnGG9O3Siit/tmLlemlbY//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dbabbe\",\"#073e63\",\"#96afcd\",\"#817b81\",\"#688dc0\"],\"lightness\":55,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16925,17162,1,'13family-4','2021-05-18 01:04:03','2021-06-09 23:23:16','e7c6dc78-952c-4d9f-9237-e8c7edcf0bc8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/13family-4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/13family-4.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/13family-4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/13family-4.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A67WY5zZTNAWD8Y2nB6+tGjLO1hC9yCsmDuDEE9T6UUUDvpY//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e5e4e3\",\"#3c3630\",\"#aa2f3f\",\"#919050\",\"#919fa0\"],\"lightness\":53,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16926,17163,1,'13family-5','2021-05-18 01:04:04','2021-06-09 23:23:17','23687592-43c1-4d8a-98aa-6beb947eeacb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/13family-5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/13family-5.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/13family-5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/13family-5.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7DVY5jaTGFiGIGMHB/Ok0iGWOziErl2GeWJJPJ7miimK2tz/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e5e4e4\",\"#208592\",\"#805949\",\"#96acad\",\"#9f7a65\"],\"lightness\":58,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16927,17164,1,'13family-6','2021-05-18 01:04:05','2021-06-09 23:23:17','27f3252e-8f6b-4b08-96c3-0aa061d99b71',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/13family-6.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/13family-6.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/13family-6.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/13family-6.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6zW47g2EzWxbzOMbTg9fWn6Ss7WcT3H+s5z+ZoooA//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e5e4e3\",\"#204b64\",\"#845c43\",\"#af8363\",\"#96a6b1\"],\"lightness\":55,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16928,17165,1,'FCC-13Family-FB-1200x628_2-2-900x450','2021-05-18 01:04:06','2021-06-09 23:24:24','b7cc6afb-c2b1-4cb5-92d2-e6a6790709a2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/FCC-13Family-FB-1200x628_2-2-900x450.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/FCC-13Family-FB-1200x628_2-2-900x450.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/FCC-13Family-FB-1200x628_2-2-900x450.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/FCC-13Family-FB-1200x628_2-2-900x450.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AzNLkht7iCXcA53K2T0yMCtJtSmEUsMaYVg4L5BDAjgDn3oop4l6k4X4T/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#264457\",\"#d7c7bc\",\"#9a7a67\",\"#a8b3ba\",\"#5c96b4\"],\"lightness\":52,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16929,17166,1,'maik-jonietz-535261-unsplash','2021-05-18 01:04:07','2021-07-16 03:54:00','a2378c64-52f6-4763-badc-d388e819ba38',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1023_crop_center-center_82_line/maik-jonietz-535261-unsplash.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/maik-jonietz-535261-unsplash.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/maik-jonietz-535261-unsplash.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/maik-jonietz-535261-unsplash.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x511_crop_center-center_82_line/maik-jonietz-535261-unsplash.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/maik-jonietz-535261-unsplash.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1023_crop_center-center_82_line/maik-jonietz-535261-unsplash.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/maik-jonietz-535261-unsplash.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/maik-jonietz-535261-unsplash.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/maik-jonietz-535261-unsplash.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x511_crop_center-center_82_line/maik-jonietz-535261-unsplash.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/maik-jonietz-535261-unsplash.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1023,\"1280\":853,\"1024\":682,\"2048\":1365,\"768\":511,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2048\",\"originalImageHeight\":\"1365\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5YKGXlsfhmlMK+VuEyZ/unrSR8oc81G/3j9aYH//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#27272d\",\"#a07476\",\"#5a7d87\",\"#60545a\",\"#507d6d\"],\"lightness\":35,\"placeholderWidth\":1536,\"placeholderHeight\":1023,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16930,17167,1,'Artboard-5-2-1024x445','2021-05-18 01:04:10','2021-06-09 23:25:42','c88ac25a-c3be-48b2-b571-fc2e9f8f7ba6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x444_crop_center-center_82_line/Artboard-5-2-1024x445.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x333_crop_center-center_82_line/Artboard-5-2-1024x445.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x278_crop_center-center_82_line/Artboard-5-2-1024x445.jpg\"},\"optimizedWebPImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x444_crop_center-center_82_line/Artboard-5-2-1024x445.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x333_crop_center-center_82_line/Artboard-5-2-1024x445.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x278_crop_center-center_82_line/Artboard-5-2-1024x445.jpg.webp\"},\"variantSourceWidths\":[\"1024\",\"768\",\"640\"],\"variantHeights\":{\"1024\":444,\"768\":333,\"640\":278},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1024\",\"originalImageHeight\":\"445\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A2UL3ZdvPuE3HOBJxmmreySTJa+ZN127vMwTj8KKK7+Vc78jx+d+zXmz/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#7bd4f4\",\"#0ea9df\",\"#ece8e3\",\"#7a4d29\",\"#7c8494\"],\"lightness\":62,\"placeholderWidth\":1024,\"placeholderHeight\":444,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16931,17168,1,'SEO-banner','2021-05-18 01:04:11','2021-06-09 23:17:17','8b3fbe8c-b0c9-4798-8027-e8ca66cb2cbc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/SEO-banner.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/SEO-banner.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/SEO-banner.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/SEO-banner.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/SEO-banner.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/SEO-banner.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/SEO-banner.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/SEO-banner.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/SEO-banner.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/SEO-banner.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2001\",\"originalImageHeight\":\"1001\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6EbcHcDntg0KrKuSykntnkfpRRWpw9D/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#98d5d5\",\"#454946\",\"#f0ebe8\",\"#7c6d81\",\"#446e70\"],\"lightness\":58,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16932,17169,1,'cogs','2021-05-18 01:04:14','2021-06-09 23:23:52','7d3ebeda-691b-4f4e-a401-073807c474bc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x461_crop_center-center_82_line/cogs.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x369_crop_center-center_82_line/cogs.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x277_crop_center-center_82_line/cogs.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x230_crop_center-center_82_line/cogs.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x461_crop_center-center_82_line/cogs.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x369_crop_center-center_82_line/cogs.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x277_crop_center-center_82_line/cogs.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x230_crop_center-center_82_line/cogs.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":461,\"1024\":369,\"768\":277,\"640\":230},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1400\",\"originalImageHeight\":\"505\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Aw/NdWRVcqCoHFSSMQ7Ih2heOO9FFYtK5qm7H/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#b06117\",\"#393d3c\",\"#815224\",\"#61543d\",\"#59350f\"],\"lightness\":31,\"placeholderWidth\":1280,\"placeholderHeight\":461,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16933,17170,1,'elliot','2021-05-18 01:04:15','2021-06-09 23:23:49','cd30e3ea-3c56-4945-a26a-43e9f639f12e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/elliot.jpg\"},\"optimizedWebPImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/elliot.jpg.webp\"},\"variantSourceWidths\":[\"640\"],\"variantHeights\":{\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"740\",\"originalImageHeight\":\"740\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AqrqbSBA1zKxORt27jyMcfyrMnkIcIqldowQeucYNWtNWN3kYjnZ8pP8ACcE5HvxTNXkjEyqir5gHzsBjNAH/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#3e3e3e\",\"#c9c9c9\",\"#9c9c9c\",\"#808080\",\"#949494\"],\"lightness\":51,\"placeholderWidth\":640,\"placeholderHeight\":640,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16934,17171,1,'bike-1024x1024','2021-05-18 01:04:16','2021-06-09 23:25:18','18cc5ead-1008-4292-837f-63a36335edfe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/bike-1024x1024.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/bike-1024x1024.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/bike-1024x1024.jpg\"},\"optimizedWebPImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/bike-1024x1024.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/bike-1024x1024.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/bike-1024x1024.jpg.webp\"},\"variantSourceWidths\":[\"1024\",\"768\",\"640\"],\"variantHeights\":{\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1024\",\"originalImageHeight\":\"1024\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AxbDzjIp27QO5Ham6lbzrO7EbwSTmtYRusRKRKx926mpVikubdmdOY+Mj0ouLlR//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#434b4a\",\"#c7bfb6\",\"#948e87\",\"#a8b0ad\",\"#98a4ad\"],\"lightness\":53,\"placeholderWidth\":1024,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16935,17172,1,'baby-1024x1024','2021-05-18 01:04:18','2021-06-09 23:25:23','a7f95133-0e7e-48f4-bfcc-2f316103891f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/baby-1024x1024.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/baby-1024x1024.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/baby-1024x1024.jpg\"},\"optimizedWebPImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/baby-1024x1024.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/baby-1024x1024.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/baby-1024x1024.jpg.webp\"},\"variantSourceWidths\":[\"1024\",\"768\",\"640\"],\"variantHeights\":{\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1024\",\"originalImageHeight\":\"1024\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AtLY2pTzGllUHkncAB+lNl061RXdtzrxw2CCCR7VJDaxzb/MLneR0bGMdMCp2tf3FzmZmB+UAj7tCBpdz/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#b1b2b5\",\"#332928\",\"#8f776d\",\"#465a63\",\"#645354\"],\"lightness\":44,\"placeholderWidth\":1024,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16936,17173,1,'guitar-1024x1024','2021-05-18 01:04:20','2021-06-09 23:25:05','9659ad64-45ec-4e56-8d6d-626c7aa9de6b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/guitar-1024x1024.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/guitar-1024x1024.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/guitar-1024x1024.jpg\"},\"optimizedWebPImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/guitar-1024x1024.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/guitar-1024x1024.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/guitar-1024x1024.jpg.webp\"},\"variantSourceWidths\":[\"1024\",\"768\",\"640\"],\"variantHeights\":{\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1024\",\"originalImageHeight\":\"1024\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ajl1ie2dhGUC4+Usf1xWHrFxM88hudplcqxKsCCAOOhPrU92yPEAVBK9GOPxrOvJY5N2VJlJ5bPT8PSrigZ//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#24273b\",\"#c5aea7\",\"#7e6e70\",\"#8aa4b1\",\"#6288a9\"],\"lightness\":46,\"placeholderWidth\":1024,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16937,17174,1,'fergus-2','2021-05-18 01:04:22','2021-06-09 23:24:56','a947fc64-e79d-4ce6-a960-1571fd4e59ab',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/fergus-2.jpg\"},\"optimizedWebPImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/fergus-2.jpg.webp\"},\"variantSourceWidths\":[\"640\"],\"variantHeights\":{\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"740\",\"originalImageHeight\":\"740\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AiXVlh2xxW4OODvkz+tD+I7tBmKOJMEggLnkfWsR7mA9Ov0ppVSeJFGeeal1JPQShHc//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#353528\",\"#c1d0cc\",\"#93b8d6\",\"#857a56\",\"#6f90bb\"],\"lightness\":50,\"placeholderWidth\":640,\"placeholderHeight\":640,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16938,17175,1,'andrew-163','2021-05-18 01:04:23','2021-06-09 23:23:21','2f51eeca-a693-4548-8406-59ce48903119',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/andrew-163.jpg\"},\"optimizedWebPImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/andrew-163.jpg.webp\"},\"variantSourceWidths\":[\"640\"],\"variantHeights\":{\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"750\",\"originalImageHeight\":\"750\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A2oNYtikhGBtk8sBuM9Of1qa21i3ltoZHOwyErj0YdRWTDATF5flbc3IkPP6+9TpCfKgVRgR3B9em480rgf/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c4cac6\",\"#353233\",\"#745545\",\"#7c7974\",\"#676067\"],\"lightness\":47,\"placeholderWidth\":640,\"placeholderHeight\":640,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16939,17176,1,'Andrew1','2021-05-18 01:04:24','2021-06-09 23:25:38','4931353d-d798-4d40-ae98-354a94f3b703',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"500\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_500x500_crop_center-center_line/Andrew1.jpg\"},\"optimizedWebPImageUrls\":{\"500\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_500x500_crop_center-center_line/Andrew1.jpg.webp\"},\"variantSourceWidths\":[\"500\"],\"variantHeights\":{\"500\":500},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"500\",\"originalImageHeight\":\"500\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A0b25+zvI8kj7fMCKoAx90H69/Wo7g8AMRkMVyOM4JFSX9t9oeRGWUDzA6spXB+UDvyOnpUNyOMtjJYnAOcZJNYVvhZ04e3PE/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c3b9b1\",\"#a34e2d\",\"#c38865\",\"#634e51\",\"#5c5c5c\"],\"lightness\":53,\"placeholderWidth\":500,\"placeholderHeight\":500,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16940,17177,1,'Andrew2','2021-05-18 01:04:25','2021-06-09 23:25:38','3e783cd0-ceb8-4eb5-92f9-734fdfac9852',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"500\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_500x500_crop_center-center_line/Andrew2.jpg\"},\"optimizedWebPImageUrls\":{\"500\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_500x500_crop_center-center_line/Andrew2.jpg.webp\"},\"variantSourceWidths\":[\"500\"],\"variantHeights\":{\"500\":500},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"500\",\"originalImageHeight\":\"500\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A1tQ+2RQQW9tqCWaLGMscFieRV3QbuaS1khup0uJIujr1ZcAgkfjj8K5tNctby7FrDDtHO2WQli/1q9Ya3Z2V3LFOwAnVdsijhQMjB/HNZpPY0klyn//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e0d8c2\",\"#42283b\",\"#9d7c70\",\"#7e5e51\",\"#615e74\"],\"lightness\":51,\"placeholderWidth\":500,\"placeholderHeight\":500,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16941,17178,1,'photo-5','2021-05-18 01:04:26','2021-06-09 23:18:23','62fa6e3b-5297-4c3d-b3ad-0bc4a85a9c2c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"480\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_480x480_crop_center-center_line/photo-5.jpg\"},\"optimizedWebPImageUrls\":{\"480\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_480x480_crop_center-center_line/photo-5.jpg.webp\"},\"variantSourceWidths\":[\"480\"],\"variantHeights\":{\"480\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"480\",\"originalImageHeight\":\"480\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8ARdRlQR3FuszIwIDFOPfvUcN3KFLXBkKc8MuG5z3PbOKbZ6nZ2oWzhLvCUILNwQ3c/wCfaiCb7VdMsikoDxj1/wAgVNk/dtobbR1R/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#8c6c6a\",\"#312c3c\",\"#dddac7\",\"#aaabc3\",\"#cfb0a5\"],\"lightness\":52,\"placeholderWidth\":480,\"placeholderHeight\":480,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16942,17179,1,'Cathy1','2021-05-18 01:04:27','2021-06-09 23:25:31','1d955e1c-3f2c-4d05-8c4f-7da885a4abbe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Cathy1.jpg\"},\"optimizedWebPImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Cathy1.jpg.webp\"},\"variantSourceWidths\":[\"640\"],\"variantHeights\":{\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"750\",\"originalImageHeight\":\"750\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8ArWWiaF/ZkM80ybnAYF2Idj6YzjFaVte6PYRiG04kRssgG3gjHUDnt1z1p2hafp15o2ni7jDHb8nOOcnir+tQWdrYXU/2WNZGUAMFGSegrlcjrjyvQ//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#251310\",\"#f5dfc0\",\"#ca3f2b\",\"#db9d69\",\"#be7841\"],\"lightness\":47,\"placeholderWidth\":640,\"placeholderHeight\":640,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16943,17180,1,'Cathy2','2021-05-18 01:04:29','2021-06-09 23:25:51','66483519-0a43-4a1d-9417-66898304b00f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Cathy2.jpg\"},\"optimizedWebPImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Cathy2.jpg.webp\"},\"variantSourceWidths\":[\"640\"],\"variantHeights\":{\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"750\",\"originalImageHeight\":\"750\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AW6uXs9NglA3TTkkZ6KAcU/SdYkub54ZY1CuCVx/D+NQWs9ve2I0+/wB8MkDN5M20kYJ6GtLSNNt7NWk85ZpipwR0H0qfe5vI7FKl7G3U/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d1b9ca\",\"#7e2218\",\"#533e4f\",\"#9f466d\",\"#98746e\"],\"lightness\":48,\"placeholderWidth\":640,\"placeholderHeight\":640,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16944,17181,1,'Cathy3-1024x1024','2021-05-18 01:04:30','2021-06-09 23:25:34','47797f8a-a831-4427-be41-8064e2726542',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Cathy3-1024x1024.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Cathy3-1024x1024.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Cathy3-1024x1024.jpg\"},\"optimizedWebPImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Cathy3-1024x1024.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Cathy3-1024x1024.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Cathy3-1024x1024.jpg.webp\"},\"variantSourceWidths\":[\"1024\",\"768\",\"640\"],\"variantHeights\":{\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1024\",\"originalImageHeight\":\"1024\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A528DMbZ3j2JLGMEEHp1PH171OIYIpBb+bJtQyMe2VwMf1z9Kbp2pwBFieAZSLaGZ87skZ9sYz+VTX1nf6pN5ghWMJkMzMqDoDnGcn8K57u9mdLjFK6P/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d19568\",\"#301a10\",\"#8b4c2d\",\"#989e88\",\"#688c8c\"],\"lightness\":41,\"placeholderWidth\":1024,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16945,17182,1,'laura-lee-moreau-9137-unsplash','2021-05-18 01:04:32','2021-06-21 04:38:30','25448f45-25c4-47d0-a074-4dbc3385ee3a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1023_crop_center-center_82_line/laura-lee-moreau-9137-unsplash.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/laura-lee-moreau-9137-unsplash.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/laura-lee-moreau-9137-unsplash.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/laura-lee-moreau-9137-unsplash.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x511_crop_center-center_82_line/laura-lee-moreau-9137-unsplash.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/laura-lee-moreau-9137-unsplash.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1023_crop_center-center_82_line/laura-lee-moreau-9137-unsplash.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/laura-lee-moreau-9137-unsplash.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/laura-lee-moreau-9137-unsplash.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/laura-lee-moreau-9137-unsplash.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x511_crop_center-center_82_line/laura-lee-moreau-9137-unsplash.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/laura-lee-moreau-9137-unsplash.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1023,\"1280\":853,\"1024\":682,\"2048\":1365,\"768\":511,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2048\",\"originalImageHeight\":\"1365\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AZ4n1SJ7SO0hj+dWzvxjbx2/OqN8LRdNR7FZQrhWffnhu/PQ11FtbQSbGeCNj6sgPauR1KWRzOjSMyqQACeB1qE+hZ//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dcd2c1\",\"#3f3436\",\"#b19f91\",\"#8c817b\",\"#9c949c\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":1023,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16946,17183,1,'acc_1','2021-05-18 01:04:35','2021-06-09 23:21:10','714217cc-4bcc-401f-8149-f96a9bd10f3c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/acc_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/acc_1.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/acc_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/acc_1.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AxGjluJ2kns7gZAChYzximmKeKZZIba4BXk5iIoopJWVhttu5/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#322d29\",\"#e8e7e3\",\"#af6b3d\",\"#7f7a74\",\"#939c5f\"],\"lightness\":48,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16947,17184,1,'acc_2','2021-05-18 01:04:36','2021-06-09 23:21:12','b74ff12d-0cd4-4cf9-96ec-630f7d34bcf6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/acc_2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/acc_2.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/acc_2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/acc_2.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A12ur0amFC4iGAig/f9SaSKa/TXgoR5LVhyeiqP8AHNFFKw7n/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#cfcdcc\",\"#34231e\",\"#864829\",\"#ae7240\",\"#7b7979\"],\"lightness\":47,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16948,17185,1,'acc_3','2021-05-18 01:04:37','2021-06-09 23:21:12','e36ec3af-bfee-4003-b45d-88c8e89612ea',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/acc_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/acc_3.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/acc_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/acc_3.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"675\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AuaDbaeumW7yJAC65LPtyT+NZmrxaMLaYRD/SEPDLnDHOPpjvWLbazfW8CwxTsqL0A7VUnmkkdmdiS/LZ70gP/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dddcd6\",\"#2d2c2a\",\"#7f7369\",\"#989d87\",\"#98949c\"],\"lightness\":53,\"placeholderWidth\":768,\"placeholderHeight\":576,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16949,17186,1,'amg-1','2021-05-18 01:04:38','2021-06-09 23:21:13','b040e486-04f3-47ef-a34d-d244561c01fe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x460_crop_center-center_82_line/amg-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x384_crop_center-center_82_line/amg-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x307_crop_center-center_82_line/amg-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x230_crop_center-center_82_line/amg-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x192_crop_center-center_82_line/amg-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x460_crop_center-center_82_line/amg-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x384_crop_center-center_82_line/amg-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x307_crop_center-center_82_line/amg-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x230_crop_center-center_82_line/amg-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x192_crop_center-center_82_line/amg-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":460,\"1280\":384,\"1024\":307,\"768\":230,\"640\":192},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"540\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7a9LDyNrsuZQDg4zUsG7adzs5z1OP6UUVK3H0P/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ece8e0\",\"#60513d\",\"#7c7b7c\",\"#c59441\",\"#948474\"],\"lightness\":58,\"placeholderWidth\":1536,\"placeholderHeight\":460,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16950,17187,1,'amg-2','2021-05-18 01:04:40','2021-06-09 23:21:13','de05da58-8c32-4df7-965f-e88e312ef979',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x397_crop_center-center_82_line/amg-2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x331_crop_center-center_82_line/amg-2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x265_crop_center-center_82_line/amg-2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x198_crop_center-center_82_line/amg-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x165_crop_center-center_82_line/amg-2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x397_crop_center-center_82_line/amg-2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x331_crop_center-center_82_line/amg-2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x265_crop_center-center_82_line/amg-2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x198_crop_center-center_82_line/amg-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x165_crop_center-center_82_line/amg-2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":397,\"1280\":331,\"1024\":265,\"768\":198,\"640\":165},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"466\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A70pkn5mGeODVI2f/ABNFuPtVzx/yy8z92eMdP1oooA//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e1ddd8\",\"#41403f\",\"#85817a\",\"#9c9ca4\",\"#8c8ca4\"],\"lightness\":57,\"placeholderWidth\":1536,\"placeholderHeight\":397,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16951,17188,1,'amg-3','2021-05-18 01:04:41','2021-06-09 23:21:14','0ff395e4-6703-4fe6-80b1-122d9b10fa4d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x624_crop_center-center_82_line/amg-3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x520_crop_center-center_82_line/amg-3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x416_crop_center-center_82_line/amg-3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x312_crop_center-center_82_line/amg-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x260_crop_center-center_82_line/amg-3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x624_crop_center-center_82_line/amg-3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x520_crop_center-center_82_line/amg-3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x416_crop_center-center_82_line/amg-3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x312_crop_center-center_82_line/amg-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x260_crop_center-center_82_line/amg-3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":624,\"1280\":520,\"1024\":416,\"768\":312,\"640\":260},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"732\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7thN5mVZNmBwRzRh/PzuHl7fu+9FFIZ//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#7d6945\",\"#f2f1ee\",\"#7d7e7f\",\"#b0a99b\",\"#8c8484\"],\"lightness\":59,\"placeholderWidth\":1536,\"placeholderHeight\":624,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16952,17189,1,'amg-4','2021-05-18 01:04:42','2021-06-09 23:21:17','8ae6e400-80ef-49f5-92fc-5a8ea0b7976b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x996_crop_center-center_82_line/amg-4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x830_crop_center-center_82_line/amg-4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x664_crop_center-center_82_line/amg-4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x498_crop_center-center_82_line/amg-4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x415_crop_center-center_82_line/amg-4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x996_crop_center-center_82_line/amg-4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x830_crop_center-center_82_line/amg-4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x664_crop_center-center_82_line/amg-4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x498_crop_center-center_82_line/amg-4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x415_crop_center-center_82_line/amg-4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":996,\"1280\":830,\"1024\":664,\"768\":498,\"640\":415},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"1168\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7X98JpfnJUsCvHTgcfShWmEoDMSpkPp0weP5VapjojMhZQSrZUkdDg80W1BvQ//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ede9e0\",\"#3f686d\",\"#bd894d\",\"#99b8c8\",\"#898591\"],\"lightness\":62,\"placeholderWidth\":1536,\"placeholderHeight\":996,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16953,17190,1,'amg-5','2021-05-18 01:04:45','2021-06-09 23:21:21','d10a349d-f224-42a1-a488-a619804e8faf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x750_crop_center-center_82_line/amg-5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x625_crop_center-center_82_line/amg-5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x500_crop_center-center_82_line/amg-5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x375_crop_center-center_82_line/amg-5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x312_crop_center-center_82_line/amg-5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x750_crop_center-center_82_line/amg-5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x625_crop_center-center_82_line/amg-5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x500_crop_center-center_82_line/amg-5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x375_crop_center-center_82_line/amg-5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x312_crop_center-center_82_line/amg-5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":750,\"1280\":625,\"1024\":500,\"768\":375,\"640\":312},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"880\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ax1ti0AkAJz7D/Gq9FFAH/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#444444\",\"#cacaca\",\"#7d7d7d\",\"#9c9c9c\",\"#949494\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":750,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16954,17191,1,'amg-6','2021-05-18 01:04:48','2021-06-09 23:23:18','dee0cf6d-6661-4341-907c-15b709950c0b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x853_crop_center-center_82_line/amg-6.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x711_crop_center-center_82_line/amg-6.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x568_crop_center-center_82_line/amg-6.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x426_crop_center-center_82_line/amg-6.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x355_crop_center-center_82_line/amg-6.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x853_crop_center-center_82_line/amg-6.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x711_crop_center-center_82_line/amg-6.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x568_crop_center-center_82_line/amg-6.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x426_crop_center-center_82_line/amg-6.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x355_crop_center-center_82_line/amg-6.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":853,\"1280\":711,\"1024\":568,\"768\":426,\"640\":355},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"1000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7qGR3QmRAhyQAGzx69K5jW7q4j8QQpDczxoHjDIHIVgSO1FFSxo//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#4d4941\",\"#f2f1ee\",\"#be8f42\",\"#87888a\",\"#9c9c9c\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":853,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16955,17192,1,'amg-7','2021-05-18 01:05:19','2021-06-09 23:21:43','f16b4f1a-a964-42cb-8723-2431c47bca40',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1467_crop_center-center_82_line/amg-7.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1223_crop_center-center_82_line/amg-7.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x978_crop_center-center_82_line/amg-7.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x733_crop_center-center_82_line/amg-7.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x611_crop_center-center_82_line/amg-7.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1467_crop_center-center_82_line/amg-7.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1223_crop_center-center_82_line/amg-7.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x978_crop_center-center_82_line/amg-7.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x733_crop_center-center_82_line/amg-7.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x611_crop_center-center_82_line/amg-7.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1467,\"1280\":1223,\"1024\":978,\"768\":733,\"640\":611},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"1720\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Arfa7mS4lCtcFQ7KoRzzg/SootQvVuokmW7Cs6ry3HJHXjpXYfb4Q8BW7aNYwA6CMncR71PLqtnJFInmFiwIUFD1qWmO6P//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#bab4ac\",\"#49433e\",\"#26201c\",\"#907040\",\"#5c5c5c\"],\"lightness\":40,\"placeholderWidth\":1536,\"placeholderHeight\":1467,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16956,17193,1,'aseeos-web-1','2021-05-18 01:05:22','2021-06-09 23:25:44','570e47d9-191a-4224-b1a7-6ee94c32cd1e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/aseeos-web-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/aseeos-web-1.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/aseeos-web-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/aseeos-web-1.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6y/85boMqXDpjGIWAx7mixlme6CtDMkW08y9c/4UUVLGj//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d5d5c8\",\"#6d572f\",\"#888b75\",\"#6a6d62\",\"#746c5e\"],\"lightness\":53,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16957,17194,1,'aseeos-web-2','2021-05-18 01:05:22','2021-06-09 23:25:45','322ea534-c7bf-4db1-a68a-9bae2accfc31',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/aseeos-web-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/aseeos-web-2.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/aseeos-web-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/aseeos-web-2.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7qQfMD60sY5OfXiiigD/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e8e8e7\",\"#3b3b3c\",\"#99999a\",\"#7c7c7c\",\"#747474\"],\"lightness\":58,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16958,17195,1,'aseeos-web-3','2021-05-18 01:05:23','2021-06-09 23:25:46','0063b54d-8e2d-41ff-b738-58d59bbf632d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/aseeos-web-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/aseeos-web-3.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/aseeos-web-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/aseeos-web-3.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7uUEAlAC3vSRZ/iADewoooA//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ebebea\",\"#252525\",\"#9e9e9d\",\"#7c7c7c\",\"#848484\"],\"lightness\":57,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16959,17196,1,'aseeos_brochures','2021-05-18 01:05:24','2021-06-09 23:25:47','58419151-9a9c-4d95-97e3-c83332c555bd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/aseeos_brochures.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/aseeos_brochures.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/aseeos_brochures.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/aseeos_brochures.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Aupp+nyeF3kleF18vfJNEqjB6nAxxzVK90i4Xw/HYo5dUiwZWdVAIYnnIzgZ9aKKnqM//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#121111\",\"#d2cfca\",\"#864c33\",\"#7d8081\",\"#9e7a5b\"],\"lightness\":41,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16960,17197,1,'aseeos_signage','2021-05-18 01:05:25','2021-06-09 23:25:48','6b337f57-90d4-4205-a4c8-2192745d1c8b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/aseeos_signage.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/aseeos_signage.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/aseeos_signage.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/aseeos_signage.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AzkWP+2I3VV8xySH3HIOTzj2AFdXpWuQxhYpNQjuF7sxwwooqyT//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#2d3645\",\"#e3dcc6\",\"#b1c0cd\",\"#9aa9bd\",\"#8b8e99\"],\"lightness\":57,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16961,17198,1,'website_video-900x450','2021-05-18 01:05:25','2021-06-09 23:17:31','c0159600-d562-42c8-ad66-a49a6b5f37e7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/website_video-900x450.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/website_video-900x450.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/website_video-900x450.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/website_video-900x450.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7OUSEsVCtnpkn/Codx+WFotr5B3cetFFLqM//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e5e4e1\",\"#5f5548\",\"#757574\",\"#bca78a\",\"#887a6e\"],\"lightness\":59,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16962,17199,1,'aseeos-testimonies-1','2021-05-18 01:05:26','2021-06-09 23:25:43','e589bbd9-4fd7-4c3f-89fe-0be9ad65f423',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x192_crop_center-center_82_line/aseeos-testimonies-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x160_crop_center-center_82_line/aseeos-testimonies-1.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x192_crop_center-center_82_line/aseeos-testimonies-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x160_crop_center-center_82_line/aseeos-testimonies-1.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":192,\"640\":160},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"225\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AtamTiQEk5cde3T/Csy81KYXVzGEjAJ7Z7HHr3xRRVyFFI//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#91abbd\",\"#503333\",\"#d7c6c7\",\"#3d6b7e\",\"#983868\"],\"lightness\":52,\"placeholderWidth\":768,\"placeholderHeight\":192,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16963,17200,1,'citi-1','2021-05-18 01:05:27','2021-06-09 23:26:23','c6554b8f-c029-48ee-8093-92a2099b01bc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/citi-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/citi-1.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/citi-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/citi-1.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AuXba/wDbJ/LN55fmNs29NuTj9KtaY+tMYGuVnUB8OGbkjPU0UVrOV0tDGnGzep//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#216895\",\"#ebe8e4\",\"#2e2d30\",\"#99c0d3\",\"#5ca2d7\"],\"lightness\":53,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16964,17201,1,'citi-2','2021-05-18 01:05:28','2021-06-09 23:26:25','2e13b3b0-979c-4d16-b04a-198720e1421e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/citi-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/citi-2.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/citi-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/citi-2.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6ua0uWuw6XlwISclAR+QOen4VM01ybtUClYkPLdd1FFAH//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ededec\",\"#414b49\",\"#8d644a\",\"#aa8f65\",\"#99a4b3\"],\"lightness\":58,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16965,17202,1,'citi-3','2021-05-18 01:05:29','2021-06-03 05:08:19','9e2080b3-8ca6-40b5-ae69-d671a50bc49c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/citi-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/citi-3.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/citi-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/citi-3.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8At3MuvtezqiXaxB22FTwRuOP0p1q2vfbIPM+2eX5i79x4xnmiitoS0ehhOGqZ/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ecebea\",\"#146395\",\"#302b2f\",\"#87c4ea\",\"#62a6d6\"],\"lightness\":56,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16966,17203,1,'citi-4','2021-05-18 01:05:29','2021-06-09 23:25:52','e5d569a8-3cce-4449-acb4-595aeae9933a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/citi-4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/citi-4.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/citi-4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/citi-4.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6s3N6NW8gW0ht8BvO3DaOelXw0m75iu32zRRQB//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#f0f1f1\",\"#343c47\",\"#96a6ab\",\"#8b654e\",\"#ac8669\"],\"lightness\":59,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16967,17204,1,'citi-5','2021-05-18 01:05:30','2021-06-09 23:25:13','83d83117-2487-4477-8223-df8d31d7e097',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/citi-5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/citi-5.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/citi-5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/citi-5.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7KMzfa5WLNsOAoOcf5/xqtdPfNfp5ZkWJXUEAZBHGTn9KKKAZ//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ebe7e5\",\"#41505a\",\"#8b6651\",\"#95a2b6\",\"#b08c64\"],\"lightness\":59,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16968,17205,1,'citi-6','2021-05-18 01:05:31','2021-06-09 23:24:25','b697634d-b84e-4668-bb81-322a2a1c64e3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/citi-6.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/citi-6.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/citi-6.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/citi-6.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"675\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A1NTv005CY3ZhMNoXGPLOMZz+VW7aNo7aMXkkhkLcEt146cdamFrBKmJYlcZz8wzzTbyIM0LknKONv4kf4U3awtT/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d0d1d2\",\"#21435c\",\"#7d543b\",\"#8491a3\",\"#9f864e\"],\"lightness\":52,\"placeholderWidth\":768,\"placeholderHeight\":576,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16969,17206,1,'citi-7','2021-05-18 01:05:32','2021-06-09 23:25:13','95bda5df-7369-40ed-baa3-bd31dc590c23',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/citi-7.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/citi-7.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/citi-7.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/citi-7.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AsR2l9Dd4h3uxYuCsgdGG70P1qfS9QsTF5Ymx3w3X6UUU5S1SCME4tn//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#bec9d1\",\"#1d4465\",\"#703a29\",\"#6b7c8c\",\"#94715a\"],\"lightness\":48,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16970,17207,1,'citi-8','2021-05-18 01:05:33','2021-06-09 23:23:50','074d0350-b8b2-436b-89dc-547be2c51b79',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/citi-8.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/citi-8.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/citi-8.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/citi-8.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"900\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6vUJJ5pJbWNWRRCJBKpPLZPy8fT171H4emuHs2FykyyBuTLnLe4zRRVJe6yG/eR//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e3e5e5\",\"#245a7c\",\"#866256\",\"#a08865\",\"#65bcdc\"],\"lightness\":57,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16971,17208,1,'cciq-corp-partnerships-1','2021-05-18 01:05:34','2021-06-09 23:26:00','e50d982a-ee11-4fe9-836e-1e2c241a3e89',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/cciq-corp-partnerships-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/cciq-corp-partnerships-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/cciq-corp-partnerships-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/cciq-corp-partnerships-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/cciq-corp-partnerships-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/cciq-corp-partnerships-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/cciq-corp-partnerships-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/cciq-corp-partnerships-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/cciq-corp-partnerships-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/cciq-corp-partnerships-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5dHMqK8coBKbHzKBjA9DjIPXPvUlpc3ECNIlxtI5IVtuetFFA79D/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1d1a1b\",\"#bdb2b8\",\"#6e5964\",\"#8b8c8c\",\"#89848c\"],\"lightness\":41,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16972,17209,1,'cciq-corp-partnerships-2','2021-05-18 01:05:36','2021-06-09 23:26:04','9b9bae90-ea4a-449a-95f3-71e5e65b3073',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/cciq-corp-partnerships-2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/cciq-corp-partnerships-2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/cciq-corp-partnerships-2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/cciq-corp-partnerships-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/cciq-corp-partnerships-2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/cciq-corp-partnerships-2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/cciq-corp-partnerships-2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/cciq-corp-partnerships-2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/cciq-corp-partnerships-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/cciq-corp-partnerships-2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A19ZmnIa6gluoXt2ciPadrAdeOhq74XN5/ZoN4zs8kjMN4OQCBgH0oooA/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#2b2a2a\",\"#d6d5d6\",\"#62535b\",\"#7e7e7e\",\"#6c6c6c\"],\"lightness\":44,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16973,17210,1,'cciq-corp-partnerships-3','2021-05-18 01:05:39','2021-06-09 23:26:08','ad72288c-c397-45c3-9a93-70fd8a2a0eca',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/cciq-corp-partnerships-3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/cciq-corp-partnerships-3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/cciq-corp-partnerships-3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/cciq-corp-partnerships-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/cciq-corp-partnerships-3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/cciq-corp-partnerships-3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/cciq-corp-partnerships-3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/cciq-corp-partnerships-3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/cciq-corp-partnerships-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/cciq-corp-partnerships-3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7qUyZYLwNp5xnFZWgXuo3RmS+t2jWNyqM8ZQuBjn8aKKB9D/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#241d1f\",\"#e5e2e3\",\"#934767\",\"#878787\",\"#6c746c\"],\"lightness\":46,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16974,17211,1,'cciq-corp-partnerships-4','2021-05-18 01:05:41','2021-06-09 23:26:11','af1d771b-18fb-42f4-926b-6d4389034cee',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/cciq-corp-partnerships-4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/cciq-corp-partnerships-4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/cciq-corp-partnerships-4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/cciq-corp-partnerships-4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/cciq-corp-partnerships-4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/cciq-corp-partnerships-4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/cciq-corp-partnerships-4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/cciq-corp-partnerships-4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/cciq-corp-partnerships-4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/cciq-corp-partnerships-4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7xiwbrxjpWZoxlaWRpMhTnYGGDjjFFFA+h//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d7d6d6\",\"#373536\",\"#9e3c67\",\"#868686\",\"#6c6c6c\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16975,17212,1,'cciq-corp-partnerships-5','2021-05-18 01:05:43','2021-06-09 23:25:53','f797f840-ecef-47f7-97bc-23bf6869e25d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/cciq-corp-partnerships-5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/cciq-corp-partnerships-5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/cciq-corp-partnerships-5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/cciq-corp-partnerships-5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/cciq-corp-partnerships-5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/cciq-corp-partnerships-5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/cciq-corp-partnerships-5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/cciq-corp-partnerships-5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/cciq-corp-partnerships-5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/cciq-corp-partnerships-5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AWWS68yZFSXabqYknPTtj8/0rs9MLtYWxbPMKdR/siiigD//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#434041\",\"#dfdfdf\",\"#949192\",\"#acacac\",\"#a8a4ac\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16976,17213,1,'cciq-corp-partnerships-6','2021-05-18 01:05:45','2021-06-09 23:26:14','45083bf7-5827-4ada-818e-21a8c14ade9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/cciq-corp-partnerships-6.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/cciq-corp-partnerships-6.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/cciq-corp-partnerships-6.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/cciq-corp-partnerships-6.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/cciq-corp-partnerships-6.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/cciq-corp-partnerships-6.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/cciq-corp-partnerships-6.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/cciq-corp-partnerships-6.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/cciq-corp-partnerships-6.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/cciq-corp-partnerships-6.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7e9aZbSZoFLSAfKo6k1zqz+IybQeQ4XzV83pnaW5z+FFFAH/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c0bfc0\",\"#161616\",\"#5a3e4b\",\"#616161\",\"#50544c\"],\"lightness\":40,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16978,17215,1,'ddh-1','2021-05-18 01:05:48','2021-06-09 23:24:17','a6700b91-fa5a-4553-b633-7db06f0041d6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/ddh-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/ddh-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/ddh-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/ddh-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/ddh-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/ddh-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/ddh-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/ddh-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/ddh-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/ddh-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6XZqaa5uEjvZsfuEAqox69c1po0v2h1ZT5eMqeMdvxooqm7kpWP/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1b4f7e\",\"#f6f9f9\",\"#93afc6\",\"#818c91\",\"#84949c\"],\"lightness\":60,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16979,17216,1,'ddh-2','2021-05-18 01:05:50','2021-06-09 23:24:20','d0e78f4a-1f76-4977-b9fe-7d565cd320f5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/ddh-2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/ddh-2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/ddh-2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/ddh-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/ddh-2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/ddh-2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/ddh-2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/ddh-2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/ddh-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/ddh-2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AsznVjqN/tN15QjcRBQwGe2PetLw59vWxzfGXfuIIm6+3XmiitW9DNLU//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dbdde1\",\"#083c6a\",\"#718496\",\"#868c8c\",\"#5894c0\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16980,17217,1,'ddh-3','2021-05-18 01:05:53','2021-06-09 23:23:57','d4f883d0-6b55-415b-92b2-579ab073130f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/ddh-3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/ddh-3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/ddh-3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/ddh-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/ddh-3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/ddh-3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/ddh-3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/ddh-3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/ddh-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/ddh-3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AfYme7+1ZmuMxzMq+VEGGOw+6aZdPeQNbnzLlUacRsJoQuR7HAoorotrYwvpc/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#184770\",\"#a2acaf\",\"#e0eaec\",\"#131e2a\",\"#709abf\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16981,17218,1,'ddh-4','2021-05-18 01:05:55','2021-06-09 23:23:46','2c1427d4-5ba8-4ade-b0b7-d676fae97194',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/ddh-4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/ddh-4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/ddh-4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/ddh-4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/ddh-4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/ddh-4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/ddh-4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/ddh-4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/ddh-4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/ddh-4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A1/CcTut6yuAounyuOvAp3i1SsdlkAA3ikflRRW3/AC8MfsH/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c7cccd\",\"#0a457a\",\"#7dacce\",\"#6498c8\",\"#8c7444\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16982,17219,1,'ddh-5','2021-05-18 01:05:57','2021-06-09 23:23:31','775dea68-e04b-405a-ba4e-c61b7a510163',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/ddh-5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/ddh-5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/ddh-5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/ddh-5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/ddh-5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/ddh-5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/ddh-5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/ddh-5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/ddh-5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/ddh-5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A1D4eiUPIJruPe24gADJb8aP+Ech3wu1xdOwbcoOCAR+OKKK05pdzPlj2P//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c6cbce\",\"#0a477e\",\"#628fad\",\"#566476\",\"#64747c\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16983,17220,1,'ddh-6','2021-05-18 01:05:59','2021-06-09 23:23:43','0bd819e1-dc11-47fc-9e27-ec2852c45a8c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/ddh-6.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/ddh-6.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/ddh-6.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/ddh-6.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/ddh-6.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/ddh-6.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/ddh-6.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/ddh-6.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/ddh-6.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/ddh-6.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A64yH7OxEEpKn7gTk/TpUiSDEbtFKg5+XYcjp6ZoooA//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ebedee\",\"#a43133\",\"#a5a9aa\",\"#4b91bd\",\"#7c7c7c\"],\"lightness\":65,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16984,17221,1,'NWO_Endeavour_project-1','2021-05-18 01:06:01','2021-06-21 04:39:18','2b665403-dd24-435a-9e9e-26440c6fe61a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/NWO_Endeavour_project-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/NWO_Endeavour_project-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/NWO_Endeavour_project-1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1024_crop_center-center_82_line/NWO_Endeavour_project-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/NWO_Endeavour_project-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/NWO_Endeavour_project-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/NWO_Endeavour_project-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/NWO_Endeavour_project-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/NWO_Endeavour_project-1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1024_crop_center-center_82_line/NWO_Endeavour_project-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/NWO_Endeavour_project-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/NWO_Endeavour_project-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"2048\":1024,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2048\",\"originalImageHeight\":\"1024\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AvW0nmzSOJMocbV9KzDbobD7TnByF24/Ciis8MlGckvI7HJtRd+p//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#b8716f\",\"#b4ccda\",\"#393b3b\",\"#dfc7ad\",\"#86562d\"],\"lightness\":57,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16985,17222,1,'NWO_Endeavour_project-2','2021-05-18 01:06:04','2021-06-21 04:39:02','9d257b28-71ab-46ce-84ba-0e3d07ba38b6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/NWO_Endeavour_project-2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/NWO_Endeavour_project-2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/NWO_Endeavour_project-2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1024_crop_center-center_82_line/NWO_Endeavour_project-2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/NWO_Endeavour_project-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/NWO_Endeavour_project-2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/NWO_Endeavour_project-2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/NWO_Endeavour_project-2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/NWO_Endeavour_project-2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1024_crop_center-center_82_line/NWO_Endeavour_project-2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/NWO_Endeavour_project-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/NWO_Endeavour_project-2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"2048\":1024,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2048\",\"originalImageHeight\":\"1024\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AzkuEaVouMjNdJcTuNRt4UDEY3Njpjkc/SiivMxaTkr9n+R605OUde7P/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#362e2c\",\"#e12c4b\",\"#f8be19\",\"#daada0\",\"#996350\"],\"lightness\":44,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16986,17223,1,'NWO_Endeavour_project-3','2021-05-18 01:06:35','2021-06-21 04:39:05','1fa598dd-af82-4bd2-b290-44acb0b36d99',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/NWO_Endeavour_project-3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/NWO_Endeavour_project-3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/NWO_Endeavour_project-3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1024_crop_center-center_82_line/NWO_Endeavour_project-3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/NWO_Endeavour_project-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/NWO_Endeavour_project-3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/NWO_Endeavour_project-3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/NWO_Endeavour_project-3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/NWO_Endeavour_project-3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1024_crop_center-center_82_line/NWO_Endeavour_project-3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/NWO_Endeavour_project-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/NWO_Endeavour_project-3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"2048\":1024,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2048\",\"originalImageHeight\":\"1024\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ar3EmyaL5sDngHvkf0zTYJ2e5kQpx2Jft06UUUYaTglbrb9TTMI+0lLm6X/Q//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e46857\",\"#473e3d\",\"#15a2db\",\"#5e8ea7\",\"#95daf5\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16987,17224,1,'NWO_Endeavour_project-4','2021-05-18 01:06:38','2021-06-21 04:39:07','27278bb1-c7a7-4b4d-b1a1-cf78fccc3664',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/NWO_Endeavour_project-4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/NWO_Endeavour_project-4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/NWO_Endeavour_project-4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1024_crop_center-center_82_line/NWO_Endeavour_project-4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/NWO_Endeavour_project-4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/NWO_Endeavour_project-4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/NWO_Endeavour_project-4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/NWO_Endeavour_project-4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/NWO_Endeavour_project-4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1024_crop_center-center_82_line/NWO_Endeavour_project-4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/NWO_Endeavour_project-4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/NWO_Endeavour_project-4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"2048\":1024,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2048\",\"originalImageHeight\":\"1024\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AdGrAOxbdlsY/u1DJscqwV22AlgDjB7d+aKKxhBSlZjpVJU4Scf7v6n//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#5e9b61\",\"#e07461\",\"#3d302b\",\"#a08773\",\"#95afc7\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16988,17225,1,'NWO_Endeavour_project-5','2021-05-18 01:06:41','2021-06-21 04:39:10','db806856-ae39-4cb2-ac61-d06ebdedb191',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/NWO_Endeavour_project-5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/NWO_Endeavour_project-5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/NWO_Endeavour_project-5.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1024_crop_center-center_82_line/NWO_Endeavour_project-5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/NWO_Endeavour_project-5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/NWO_Endeavour_project-5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/NWO_Endeavour_project-5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/NWO_Endeavour_project-5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/NWO_Endeavour_project-5.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1024_crop_center-center_82_line/NWO_Endeavour_project-5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/NWO_Endeavour_project-5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/NWO_Endeavour_project-5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"2048\":1024,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2048\",\"originalImageHeight\":\"1024\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8At3mqPbXaQPGFzzncMsM9QPwNVF2/MDkkLkY+tFFRlkYxpc0Va9vzZhj3eaT6KX5I/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#f1bf30\",\"#2d9bc6\",\"#2f2e30\",\"#635a51\",\"#9ae0fa\"],\"lightness\":45,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16989,17226,1,'NWO_Endeavour_project-6','2021-05-18 01:06:45','2021-06-21 04:39:12','300088aa-5993-4ca6-b75f-50dfccfbdbb2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x960_crop_center-center_82_line/NWO_Endeavour_project-6.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x800_crop_center-center_82_line/NWO_Endeavour_project-6.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x640_crop_center-center_82_line/NWO_Endeavour_project-6.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1280_crop_center-center_82_line/NWO_Endeavour_project-6.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x480_crop_center-center_82_line/NWO_Endeavour_project-6.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x400_crop_center-center_82_line/NWO_Endeavour_project-6.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x960_crop_center-center_82_line/NWO_Endeavour_project-6.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x800_crop_center-center_82_line/NWO_Endeavour_project-6.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x640_crop_center-center_82_line/NWO_Endeavour_project-6.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1280_crop_center-center_82_line/NWO_Endeavour_project-6.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x480_crop_center-center_82_line/NWO_Endeavour_project-6.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x400_crop_center-center_82_line/NWO_Endeavour_project-6.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":960,\"1280\":800,\"1024\":640,\"2048\":1280,\"768\":480,\"640\":400},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2048\",\"originalImageHeight\":\"1280\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A39ca9TT3aw8x5t4wFxkCpdIknktCbgSB/MYfOOcZ4q8aBSsVzPl5T//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e2e1e0\",\"#3b2f33\",\"#ce344c\",\"#aa7c62\",\"#939097\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":960,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16990,17227,1,'NWO_Endeavour_project-7','2021-05-18 01:07:16','2021-06-21 04:38:55','fb32ce78-fd45-4aa4-ab06-1920081ae4c4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/NWO_Endeavour_project-7.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/NWO_Endeavour_project-7.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/NWO_Endeavour_project-7.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1024_crop_center-center_82_line/NWO_Endeavour_project-7.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/NWO_Endeavour_project-7.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/NWO_Endeavour_project-7.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/NWO_Endeavour_project-7.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/NWO_Endeavour_project-7.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/NWO_Endeavour_project-7.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1024_crop_center-center_82_line/NWO_Endeavour_project-7.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/NWO_Endeavour_project-7.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/NWO_Endeavour_project-7.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"2048\":1024,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2048\",\"originalImageHeight\":\"1024\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AbCkbRneyA57mlVYktZw7I0u4eWR6ZOf6UUV6rV3ueImknof/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#188fcb\",\"#d7d6d1\",\"#413c38\",\"#70d8f9\",\"#2c446c\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16991,17228,1,'NWO_Endeavour_project-8','2021-05-18 01:07:19','2021-06-21 04:39:15','52747be3-3f69-41c8-80c6-376fd9549bc3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1248_crop_center-center_82_line/NWO_Endeavour_project-8.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1040_crop_center-center_82_line/NWO_Endeavour_project-8.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x832_crop_center-center_82_line/NWO_Endeavour_project-8.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1664_crop_center-center_82_line/NWO_Endeavour_project-8.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x624_crop_center-center_82_line/NWO_Endeavour_project-8.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x520_crop_center-center_82_line/NWO_Endeavour_project-8.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1248_crop_center-center_82_line/NWO_Endeavour_project-8.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1040_crop_center-center_82_line/NWO_Endeavour_project-8.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x832_crop_center-center_82_line/NWO_Endeavour_project-8.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1664_crop_center-center_82_line/NWO_Endeavour_project-8.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x624_crop_center-center_82_line/NWO_Endeavour_project-8.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x520_crop_center-center_82_line/NWO_Endeavour_project-8.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1248,\"1280\":1040,\"1024\":832,\"2048\":1664,\"768\":624,\"640\":520},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2048\",\"originalImageHeight\":\"1664\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6u5t7mXDQXXleoKAinpbyRuGe5d8DBUgAE+vTNTBiOmKTvnvSsC0P//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e4e4e3\",\"#4e8352\",\"#d55444\",\"#90aa8f\",\"#cb9052\"],\"lightness\":63,\"placeholderWidth\":1536,\"placeholderHeight\":1248,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16992,17229,1,'NWO_Endeavour_project-9','2021-05-18 01:07:23','2021-06-21 04:39:20','16b03613-8aed-4c22-8c2e-3548a54ad147',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1728_crop_center-center_82_line/NWO_Endeavour_project-9.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1440_crop_center-center_82_line/NWO_Endeavour_project-9.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1152_crop_center-center_82_line/NWO_Endeavour_project-9.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x864_crop_center-center_82_line/NWO_Endeavour_project-9.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x720_crop_center-center_82_line/NWO_Endeavour_project-9.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1728_crop_center-center_82_line/NWO_Endeavour_project-9.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1440_crop_center-center_82_line/NWO_Endeavour_project-9.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1152_crop_center-center_82_line/NWO_Endeavour_project-9.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x864_crop_center-center_82_line/NWO_Endeavour_project-9.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x720_crop_center-center_82_line/NWO_Endeavour_project-9.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1728,\"1280\":1440,\"1024\":1152,\"768\":864,\"640\":720},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1820\",\"originalImageHeight\":\"2048\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Aj0e2aW6lCCFtsRb96m4AZHbB5rRvrQjS55ClrlQCSlvsIGeMHFJpVvJbxRXVtcQI8qFWEi52jP8AvD0qbXb8payWjzwSGRQfkRh37dR+tdEm3PQE9DmPOlA2iVwB0AY8UjO8hy7MxHGSc0UVr1A//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#574f90\",\"#eae0de\",\"#462b1d\",\"#89bac9\",\"#539bd6\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":1728,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16993,17230,1,'NWO_Endeavour_project-10','2021-05-18 01:07:26','2021-06-21 04:39:35','7ee92348-7e5a-4157-ac33-729ca6e324ca',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x508_crop_center-center_82_line/NWO_Endeavour_project-10.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x423_crop_center-center_82_line/NWO_Endeavour_project-10.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x339_crop_center-center_82_line/NWO_Endeavour_project-10.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x678_crop_center-center_82_line/NWO_Endeavour_project-10.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x254_crop_center-center_82_line/NWO_Endeavour_project-10.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x211_crop_center-center_82_line/NWO_Endeavour_project-10.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x508_crop_center-center_82_line/NWO_Endeavour_project-10.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x423_crop_center-center_82_line/NWO_Endeavour_project-10.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x339_crop_center-center_82_line/NWO_Endeavour_project-10.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x678_crop_center-center_82_line/NWO_Endeavour_project-10.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x254_crop_center-center_82_line/NWO_Endeavour_project-10.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x211_crop_center-center_82_line/NWO_Endeavour_project-10.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":508,\"1280\":423,\"1024\":339,\"2048\":678,\"768\":254,\"640\":211},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2048\",\"originalImageHeight\":\"678\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ap2d+1wjKUC7SSCD9KP7QuP8ARTG5TAJIHRue/wCVFFZ10pay1/pipJRen9bH/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#413733\",\"#e6bb56\",\"#18a1d9\",\"#5ba764\",\"#97735b\"],\"lightness\":43,\"placeholderWidth\":1536,\"placeholderHeight\":508,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16994,17231,1,'NWO_Endeavour_project-11','2021-05-18 01:07:28','2021-06-21 04:38:57','a9579018-c2df-489f-aa15-ef2172e437b9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/NWO_Endeavour_project-11.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/NWO_Endeavour_project-11.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/NWO_Endeavour_project-11.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1152_crop_center-center_82_line/NWO_Endeavour_project-11.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/NWO_Endeavour_project-11.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/NWO_Endeavour_project-11.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/NWO_Endeavour_project-11.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/NWO_Endeavour_project-11.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/NWO_Endeavour_project-11.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1152_crop_center-center_82_line/NWO_Endeavour_project-11.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/NWO_Endeavour_project-11.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/NWO_Endeavour_project-11.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2048\",\"originalImageHeight\":\"1152\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6Szi065uY7i1iQMhIyBs/Tv1q4IbeG7ecMEmcYO5/wCmfasjQ/8Aj0T/AHj/AOy0upf8hKX/AK5j+RqpRSb8hQk5pN9j/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#3f7792\",\"#ebe8e7\",\"#bd415c\",\"#be9554\",\"#8e98a7\"],\"lightness\":59,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16995,17232,1,'NWO_Endeavour_project-12','2021-05-18 01:07:32','2021-06-21 04:38:59','eb786a3e-0184-4ca9-a792-7e13ac5aea83',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/NWO_Endeavour_project-12.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/NWO_Endeavour_project-12.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/NWO_Endeavour_project-12.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1024_crop_center-center_82_line/NWO_Endeavour_project-12.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/NWO_Endeavour_project-12.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/NWO_Endeavour_project-12.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/NWO_Endeavour_project-12.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/NWO_Endeavour_project-12.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/NWO_Endeavour_project-12.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1024_crop_center-center_82_line/NWO_Endeavour_project-12.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/NWO_Endeavour_project-12.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/NWO_Endeavour_project-12.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"2048\":1024,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2048\",\"originalImageHeight\":\"1024\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AoJHEfndu4+Qd/r6CmSqg5Rs5PI9KKK7mtbjP/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#594f92\",\"#d7a689\",\"#69412b\",\"#a49ccf\",\"#9c94d6\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16996,17233,1,'Revelian-project_1','2021-05-18 01:07:35','2021-06-09 23:19:02','b8ca50a9-e78c-46c8-af81-7b043c1bc2c7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1728_crop_center-center_82_line/17233/Revelian-project_1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1440_crop_center-center_82_line/17233/Revelian-project_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1152_crop_center-center_82_line/17233/Revelian-project_1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2304_crop_center-center_82_line/17233/Revelian-project_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x864_crop_center-center_82_line/17233/Revelian-project_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x720_crop_center-center_82_line/17233/Revelian-project_1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1728_crop_center-center_82_line/17233/Revelian-project_1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1440_crop_center-center_82_line/17233/Revelian-project_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1152_crop_center-center_82_line/17233/Revelian-project_1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2304_crop_center-center_82_line/17233/Revelian-project_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x864_crop_center-center_82_line/17233/Revelian-project_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x720_crop_center-center_82_line/17233/Revelian-project_1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1728,\"1280\":1440,\"1024\":1152,\"2048\":2304,\"768\":864,\"640\":720},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2400\",\"originalImageHeight\":\"2700\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A4BeuSCQOtSNBIIhNsIjJwCTXYXNpY26pDDs/eRqZdqgjPXFRPapJAFVFkjTL7CudgJ71m6itc7Y4OTnyvRPqMpYmYToASAc5GevFFFc8Nz28X/CZ/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#150f0f\",\"#e5252a\",\"#6394a2\",\"#d9c5bf\",\"#45788c\"],\"lightness\":39,\"placeholderWidth\":1536,\"placeholderHeight\":1728,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16997,17234,1,'Revelian-project_2','2021-05-18 01:07:47','2021-06-09 23:19:13','8987f2a2-b541-4ec6-9afa-c79974d3e9bb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1296_crop_center-center_82_line/17234/Revelian-project_2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1080_crop_center-center_82_line/17234/Revelian-project_2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x864_crop_center-center_82_line/17234/Revelian-project_2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1728_crop_center-center_82_line/17234/Revelian-project_2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x648_crop_center-center_82_line/17234/Revelian-project_2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x540_crop_center-center_82_line/17234/Revelian-project_2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1296_crop_center-center_82_line/17234/Revelian-project_2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1080_crop_center-center_82_line/17234/Revelian-project_2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x864_crop_center-center_82_line/17234/Revelian-project_2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1728_crop_center-center_82_line/17234/Revelian-project_2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x648_crop_center-center_82_line/17234/Revelian-project_2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x540_crop_center-center_82_line/17234/Revelian-project_2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1296,\"1280\":1080,\"1024\":864,\"2048\":1728,\"768\":648,\"640\":540},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2400\",\"originalImageHeight\":\"2025\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A4+jFJTu1BSP/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#251c1d\",\"#841c35\",\"#5b1625\",\"#3f131b\",\"#3e242c\"],\"lightness\":20,\"placeholderWidth\":1536,\"placeholderHeight\":1296,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16998,17235,1,'Revelian-project_3','2021-05-18 01:07:58','2021-06-09 23:19:15','ac2f38f5-73bf-4d30-8b94-bba0ca3aee4c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1392_crop_center-center_82_line/17235/Revelian-project_3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1160_crop_center-center_82_line/17235/Revelian-project_3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x928_crop_center-center_82_line/17235/Revelian-project_3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1856_crop_center-center_82_line/17235/Revelian-project_3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x696_crop_center-center_82_line/17235/Revelian-project_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x580_crop_center-center_82_line/17235/Revelian-project_3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1392_crop_center-center_82_line/17235/Revelian-project_3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1160_crop_center-center_82_line/17235/Revelian-project_3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x928_crop_center-center_82_line/17235/Revelian-project_3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1856_crop_center-center_82_line/17235/Revelian-project_3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x696_crop_center-center_82_line/17235/Revelian-project_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x580_crop_center-center_82_line/17235/Revelian-project_3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1392,\"1280\":1160,\"1024\":928,\"2048\":1856,\"768\":696,\"640\":580},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2400\",\"originalImageHeight\":\"2175\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A059buE1a/tA0EaWyqyl0JJyoPPzD1rRsr9rqRhsCgHHcHrjkH/69QXHh+1uNRkvmklWWQAMFIwcDHp7UtloaWd0J1vbuQ7ixWRwQSRjnj/PFLW5Wlj//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#262120\",\"#dfdad7\",\"#895446\",\"#ad7e63\",\"#918d86\"],\"lightness\":46,\"placeholderWidth\":1536,\"placeholderHeight\":1392,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16999,17236,1,'Revelian-project_4','2021-05-18 01:08:12','2021-06-09 23:18:43','55fda963-db10-4c0a-a1c0-97ca6a15fbd3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/17236/Revelian-project_4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/17236/Revelian-project_4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/17236/Revelian-project_4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1152_crop_center-center_82_line/17236/Revelian-project_4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/17236/Revelian-project_4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/17236/Revelian-project_4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/17236/Revelian-project_4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/17236/Revelian-project_4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/17236/Revelian-project_4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1152_crop_center-center_82_line/17236/Revelian-project_4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/17236/Revelian-project_4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/17236/Revelian-project_4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2400\",\"originalImageHeight\":\"1350\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AZc7L61cRu7ZxIsxBJUnp6knnBA9faqhkGmTBJXZgh8xWPJcN97H90g/r35p9p/x9z/8AXkP5rRrP/H5pH+8f/ZanrYvpc//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#bbaca5\",\"#1c1819\",\"#543330\",\"#6f4f40\",\"#685e58\"],\"lightness\":37,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17000,17237,1,'Revelian-project_5','2021-05-18 01:08:20','2021-06-09 23:17:56','f40d495a-f4be-48eb-be76-e3647a7489ba',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/17237/Revelian-project_5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/17237/Revelian-project_5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/17237/Revelian-project_5.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1536_crop_center-center_82_line/17237/Revelian-project_5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/17237/Revelian-project_5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/17237/Revelian-project_5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/17237/Revelian-project_5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/17237/Revelian-project_5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/17237/Revelian-project_5.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1536_crop_center-center_82_line/17237/Revelian-project_5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/17237/Revelian-project_5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/17237/Revelian-project_5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"1280\":960,\"1024\":768,\"2048\":1536,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2400\",\"originalImageHeight\":\"1800\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A1/Eurz6ULbyEd/NLZ2puxjH+NbrLtPWoLi0gutvnxLJt6Z7VNS6lyacUluf/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e3e2e3\",\"#e61f27\",\"#110d0e\",\"#9a999a\",\"#a2807c\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17001,17238,1,'Revelian-project_6','2021-05-18 01:08:28','2021-06-09 23:17:20','9df23050-c5c2-4379-9941-d0633283146d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/17238/Revelian-project_6.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/17238/Revelian-project_6.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/17238/Revelian-project_6.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1152_crop_center-center_82_line/17238/Revelian-project_6.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/17238/Revelian-project_6.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/17238/Revelian-project_6.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/17238/Revelian-project_6.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/17238/Revelian-project_6.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/17238/Revelian-project_6.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1152_crop_center-center_82_line/17238/Revelian-project_6.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/17238/Revelian-project_6.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/17238/Revelian-project_6.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2400\",\"originalImageHeight\":\"1350\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Au6loPmeIII4reQ2c4LTtyRnnv27VX1DRVg8yDTrKZZN5LSHLBhzjH5/pXbf8s2/GmD7g/Cpcbmsask7vpt5H/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dfd6d3\",\"#2b2222\",\"#db2029\",\"#b55650\",\"#3898b0\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17002,17239,1,'Revelian-project_7','2021-05-18 01:08:35','2021-06-09 23:17:54','d8f2e4fd-815a-4181-aa55-43f26eb7e6ba',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1296_crop_center-center_82_line/17239/Revelian-project_7.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1080_crop_center-center_82_line/17239/Revelian-project_7.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x864_crop_center-center_82_line/17239/Revelian-project_7.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1728_crop_center-center_82_line/17239/Revelian-project_7.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x648_crop_center-center_82_line/17239/Revelian-project_7.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x540_crop_center-center_82_line/17239/Revelian-project_7.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1296_crop_center-center_82_line/17239/Revelian-project_7.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1080_crop_center-center_82_line/17239/Revelian-project_7.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x864_crop_center-center_82_line/17239/Revelian-project_7.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1728_crop_center-center_82_line/17239/Revelian-project_7.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x648_crop_center-center_82_line/17239/Revelian-project_7.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x540_crop_center-center_82_line/17239/Revelian-project_7.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1296,\"1280\":1080,\"1024\":864,\"2048\":1728,\"768\":648,\"640\":540},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2400\",\"originalImageHeight\":\"2025\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AxLPSUuLAXDM4OCcDHPX/AA5ou9Lt4LJ50uVdgFKqHBOTjORj3rOS4lRNit8vIxgHFSSX91LCYnlyjAAjaOcdKnUu6P/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c19e8d\",\"#231c1b\",\"#745d4c\",\"#8a8e85\",\"#818484\"],\"lightness\":43,\"placeholderWidth\":1536,\"placeholderHeight\":1296,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17003,17240,1,'Revelian-project_8','2021-05-18 01:08:44','2021-06-09 23:16:53','a7df62dc-9a44-4577-8e64-0ad17aaa841a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/17240/Revelian-project_8.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/17240/Revelian-project_8.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/17240/Revelian-project_8.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1152_crop_center-center_82_line/17240/Revelian-project_8.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/17240/Revelian-project_8.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/17240/Revelian-project_8.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/17240/Revelian-project_8.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/17240/Revelian-project_8.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/17240/Revelian-project_8.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1152_crop_center-center_82_line/17240/Revelian-project_8.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/17240/Revelian-project_8.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/17240/Revelian-project_8.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2400\",\"originalImageHeight\":\"1350\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AQ3qPOsCxOp8nacsBg4bt+H8qW5illjTBhCxor4IyegH88/nWM3/IYT6D/wBmq5H9+T/rkf6VmtUW9D//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#bbafa1\",\"#211b17\",\"#584230\",\"#795e44\",\"#6d6c6c\"],\"lightness\":38,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17004,17241,1,'Revelian-project_9','2021-05-18 01:08:53','2021-06-09 23:16:54','03659f61-6728-44e6-91e4-19e331ba0b7b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1296_crop_center-center_82_line/17241/Revelian-project_9.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1080_crop_center-center_82_line/17241/Revelian-project_9.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x864_crop_center-center_82_line/17241/Revelian-project_9.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1728_crop_center-center_82_line/17241/Revelian-project_9.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x648_crop_center-center_82_line/17241/Revelian-project_9.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x540_crop_center-center_82_line/17241/Revelian-project_9.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1296_crop_center-center_82_line/17241/Revelian-project_9.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1080_crop_center-center_82_line/17241/Revelian-project_9.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x864_crop_center-center_82_line/17241/Revelian-project_9.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1728_crop_center-center_82_line/17241/Revelian-project_9.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x648_crop_center-center_82_line/17241/Revelian-project_9.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x540_crop_center-center_82_line/17241/Revelian-project_9.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1296,\"1280\":1080,\"1024\":864,\"2048\":1728,\"768\":648,\"640\":540},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2400\",\"originalImageHeight\":\"2025\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5ODynEnmlUKqSvB+Y+laul6RDfaHeX7tIskG/aqrleFB5/Osd2LqFbGAAOlaFnrd1ZaZPYRrEYp8hiyncMqF459BQM//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1f1b1d\",\"#e3cfcf\",\"#6d5e59\",\"#8c8c94\",\"#879a82\"],\"lightness\":45,\"placeholderWidth\":1536,\"placeholderHeight\":1296,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17005,17242,1,'Revelian-project_11','2021-05-18 01:09:02','2021-06-09 23:19:07','2f55dc92-f0fc-4b13-88dd-3dc80132580d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2160_crop_center-center_82_line/17242/Revelian-project_11.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1800_crop_center-center_82_line/17242/Revelian-project_11.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1440_crop_center-center_82_line/17242/Revelian-project_11.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2880_crop_center-center_82_line/17242/Revelian-project_11.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1080_crop_center-center_82_line/17242/Revelian-project_11.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x900_crop_center-center_82_line/17242/Revelian-project_11.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2160_crop_center-center_82_line/17242/Revelian-project_11.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1800_crop_center-center_82_line/17242/Revelian-project_11.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1440_crop_center-center_82_line/17242/Revelian-project_11.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2880_crop_center-center_82_line/17242/Revelian-project_11.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1080_crop_center-center_82_line/17242/Revelian-project_11.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x900_crop_center-center_82_line/17242/Revelian-project_11.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":2160,\"1280\":1800,\"1024\":1440,\"2048\":2880,\"768\":1080,\"640\":900},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2400\",\"originalImageHeight\":\"3375\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAFgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5iw08XwlzJ5exSV+XO4+lVptJvktY7o258iXJRgQdwBweM5pkV4bdn2Mw3DGVrr/AAmV1OKG3urgCOGOQRRoQG+Y85/AmlqVpocHWzofiGbRZfMit45DsKfMT0Jz/SiimSf/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#0f0e0f\",\"#ccb1ab\",\"#674745\",\"#7593a9\",\"#6f7d8f\"],\"lightness\":39,\"placeholderWidth\":1536,\"placeholderHeight\":2160,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17006,17243,1,'Revelian-project_12','2021-05-18 01:09:23','2021-06-09 23:19:10','ed3a7139-6e8a-4d62-adba-1f68b65afc68',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1824_crop_center-center_82_line/17243/Revelian-project_12.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1520_crop_center-center_82_line/17243/Revelian-project_12.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1216_crop_center-center_82_line/17243/Revelian-project_12.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2432_crop_center-center_82_line/17243/Revelian-project_12.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x912_crop_center-center_82_line/17243/Revelian-project_12.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x760_crop_center-center_82_line/17243/Revelian-project_12.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1824_crop_center-center_82_line/17243/Revelian-project_12.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1520_crop_center-center_82_line/17243/Revelian-project_12.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1216_crop_center-center_82_line/17243/Revelian-project_12.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2432_crop_center-center_82_line/17243/Revelian-project_12.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x912_crop_center-center_82_line/17243/Revelian-project_12.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x760_crop_center-center_82_line/17243/Revelian-project_12.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1824,\"1280\":1520,\"1024\":1216,\"2048\":2432,\"768\":912,\"640\":760},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2400\",\"originalImageHeight\":\"2850\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3L2fVUvX8sQR2i/N5jkEkYHbIxzmp7GW9meKSYxCFouQjA5fPUe2M1aksbWeQTTRIzj5QW9PT9aZDp9vFJ56wxJIOnlrgDt/Klrcq6sWGUMMMAQexoVVRQqqFA7CiimSf//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e4e3e2\",\"#292725\",\"#be3d39\",\"#a48060\",\"#959592\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":1824,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17007,17244,1,'QUU-Landing-1','2021-05-18 01:09:37','2021-06-09 23:19:25','b6eb1bd9-dea3-4a26-aaed-c582f3d75880',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1036_crop_center-center_82_line/QUU-Landing-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x864_crop_center-center_82_line/QUU-Landing-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x691_crop_center-center_82_line/QUU-Landing-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x518_crop_center-center_82_line/QUU-Landing-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x432_crop_center-center_82_line/QUU-Landing-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1036_crop_center-center_82_line/QUU-Landing-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x864_crop_center-center_82_line/QUU-Landing-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x691_crop_center-center_82_line/QUU-Landing-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x518_crop_center-center_82_line/QUU-Landing-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x432_crop_center-center_82_line/QUU-Landing-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1036,\"1280\":864,\"1024\":691,\"768\":518,\"640\":432},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1080\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AxYkV32sSB6gZqS8ijhuGSFyyADk1BRXoW1ubn//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#5c3383\",\"#e1dbbd\",\"#ad8dcc\",\"#5e4b4a\",\"#a488b8\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":1036,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17008,17245,1,'QUU-Landing-2','2021-05-18 01:09:39','2021-06-09 23:19:26','65a54f73-7d19-45ce-8db5-774888ec676e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1036_crop_center-center_82_line/QUU-Landing-2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x864_crop_center-center_82_line/QUU-Landing-2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x691_crop_center-center_82_line/QUU-Landing-2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x518_crop_center-center_82_line/QUU-Landing-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x432_crop_center-center_82_line/QUU-Landing-2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1036_crop_center-center_82_line/QUU-Landing-2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x864_crop_center-center_82_line/QUU-Landing-2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x691_crop_center-center_82_line/QUU-Landing-2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x518_crop_center-center_82_line/QUU-Landing-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x432_crop_center-center_82_line/QUU-Landing-2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1036,\"1280\":864,\"1024\":691,\"768\":518,\"640\":432},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1080\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AS+0qKwMYVjJ5p25fHy9KZp+jpeSzCQvEqY24HX8/pW9qaK1uu5QfmHUVFop3WrM3LFzknqa5FiansOe+ppc//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#583176\",\"#ccd755\",\"#c3c3d7\",\"#9d6d61\",\"#5f5b5f\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":1036,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17009,17246,1,'QUU-Landing-3','2021-05-18 01:09:41','2021-06-09 23:19:26','ad8faaf4-4b7a-4a95-9e0b-7b61a47a5c67',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1459_crop_center-center_82_line/QUU-Landing-3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1216_crop_center-center_82_line/QUU-Landing-3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x972_crop_center-center_82_line/QUU-Landing-3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x729_crop_center-center_82_line/QUU-Landing-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x608_crop_center-center_82_line/QUU-Landing-3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1459_crop_center-center_82_line/QUU-Landing-3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1216_crop_center-center_82_line/QUU-Landing-3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x972_crop_center-center_82_line/QUU-Landing-3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x729_crop_center-center_82_line/QUU-Landing-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x608_crop_center-center_82_line/QUU-Landing-3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1459,\"1280\":1216,\"1024\":972,\"768\":729,\"640\":608},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1520\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6PdgMQc+ntTC4M0QP3iDxSRxOkkrE7ldgQPTjFS7QWBKjjp7V4OxZ//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d0da53\",\"#733b1c\",\"#f2e1c4\",\"#dcd88f\",\"#626e0e\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":1459,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17010,17247,1,'QUU-Landing-4','2021-05-18 01:09:44','2021-06-09 23:19:20','da450899-9909-4ccd-8caf-92c4a5208068',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1036_crop_center-center_82_line/QUU-Landing-4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x864_crop_center-center_82_line/QUU-Landing-4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x691_crop_center-center_82_line/QUU-Landing-4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x518_crop_center-center_82_line/QUU-Landing-4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x432_crop_center-center_82_line/QUU-Landing-4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1036_crop_center-center_82_line/QUU-Landing-4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x864_crop_center-center_82_line/QUU-Landing-4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x691_crop_center-center_82_line/QUU-Landing-4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x518_crop_center-center_82_line/QUU-Landing-4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x432_crop_center-center_82_line/QUU-Landing-4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1036,\"1280\":864,\"1024\":691,\"768\":518,\"640\":432},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1080\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ay5lhjkCMZHI4OwKR9PvVft7m2mmVfs8rYQjtyQe+DxV8Ro+7eit9Rmo/s8COrpDGrA9QoBohNxdkXKnGcbs//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#473a40\",\"#d7a693\",\"#979087\",\"#4893cf\",\"#98bdcd\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":1036,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17011,17248,1,'QUU-Landing-5','2021-05-18 01:09:46','2021-06-09 23:19:27','8fe5bce3-7a33-4f93-8afd-e3ef6fa4a366',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1219_crop_center-center_82_line/QUU-Landing-5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1016_crop_center-center_82_line/QUU-Landing-5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x812_crop_center-center_82_line/QUU-Landing-5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x609_crop_center-center_82_line/QUU-Landing-5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x508_crop_center-center_82_line/QUU-Landing-5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1219_crop_center-center_82_line/QUU-Landing-5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1016_crop_center-center_82_line/QUU-Landing-5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x812_crop_center-center_82_line/QUU-Landing-5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x609_crop_center-center_82_line/QUU-Landing-5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x508_crop_center-center_82_line/QUU-Landing-5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1219,\"1280\":1016,\"1024\":812,\"768\":609,\"640\":508},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1270\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A0bRjYov26Mgs/wAmPbA/niqlhZ2sy5l3oFjHbv6c/Q0urXU0awlXJOxmGRnB45qXRyQ8hznIHBAI4Jrnd4R5+jOm97ye5//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dbe097\",\"#634067\",\"#e7643a\",\"#999e62\",\"#ad9ac1\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":1219,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17012,17249,1,'QUU-Landing-7','2021-05-18 01:09:49','2021-06-09 23:19:29','c39b5cc7-5063-453e-a4c8-a91632e7c960',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x921_crop_center-center_82_line/QUU-Landing-7.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x768_crop_center-center_82_line/QUU-Landing-7.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x614_crop_center-center_82_line/QUU-Landing-7.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x460_crop_center-center_82_line/QUU-Landing-7.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x384_crop_center-center_82_line/QUU-Landing-7.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x921_crop_center-center_82_line/QUU-Landing-7.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x768_crop_center-center_82_line/QUU-Landing-7.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x614_crop_center-center_82_line/QUU-Landing-7.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x460_crop_center-center_82_line/QUU-Landing-7.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x384_crop_center-center_82_line/QUU-Landing-7.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"1280\":768,\"1024\":614,\"768\":460,\"640\":384},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"960\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A1Nc1G+tL4RW7EK8YKAIDlt309Kk0m9vrm9CTn5FjbcNoBDbuO3pW0etAqm1bYdz/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#573579\",\"#e2e1e3\",\"#a67146\",\"#7e5c96\",\"#9285a2\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17013,17250,1,'QUU-Landing-8','2021-05-18 01:09:51','2021-06-09 23:19:30','15db6ff6-f615-4ed6-b2a1-6772634a0ee9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x921_crop_center-center_82_line/QUU-Landing-8.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x768_crop_center-center_82_line/QUU-Landing-8.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x614_crop_center-center_82_line/QUU-Landing-8.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x460_crop_center-center_82_line/QUU-Landing-8.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x384_crop_center-center_82_line/QUU-Landing-8.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x921_crop_center-center_82_line/QUU-Landing-8.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x768_crop_center-center_82_line/QUU-Landing-8.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x614_crop_center-center_82_line/QUU-Landing-8.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x460_crop_center-center_82_line/QUU-Landing-8.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x384_crop_center-center_82_line/QUU-Landing-8.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"1280\":768,\"1024\":614,\"768\":460,\"640\":384},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"960\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7K4uLxL1YoLYSRGPJYsB83PH8vzqW3kuXb9/Asa4zkPu5z0/KrHeigZ//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e4e1e1\",\"#5d397c\",\"#956537\",\"#bbbc70\",\"#747880\"],\"lightness\":58,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17014,17251,1,'QUU-Landing-9','2021-05-18 01:09:53','2021-06-09 23:19:31','87fee727-4ba9-401c-8408-377f475f95ae',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1036_crop_center-center_82_line/QUU-Landing-9.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x864_crop_center-center_82_line/QUU-Landing-9.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x691_crop_center-center_82_line/QUU-Landing-9.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x518_crop_center-center_82_line/QUU-Landing-9.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x432_crop_center-center_82_line/QUU-Landing-9.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1036_crop_center-center_82_line/QUU-Landing-9.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x864_crop_center-center_82_line/QUU-Landing-9.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x691_crop_center-center_82_line/QUU-Landing-9.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x518_crop_center-center_82_line/QUU-Landing-9.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x432_crop_center-center_82_line/QUU-Landing-9.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1036,\"1280\":864,\"1024\":691,\"768\":518,\"640\":432},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1080\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5eWG7nmzLuaTH93mtG00yT7LGCn72RssGGCPb9c10enogSNgoBKjJx1qw/EjY/uVPmVfof/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c0aea2\",\"#312c2a\",\"#81776e\",\"#98a3a0\",\"#8f949e\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":1036,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17015,17252,1,'Revelian-project_10','2021-05-18 01:09:56','2021-06-09 23:19:04','22027674-72ff-4610-9c51-b73f04b3d479',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x4320_crop_center-center_82_line/17252/Revelian-project_10.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x3600_crop_center-center_82_line/17252/Revelian-project_10.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x2880_crop_center-center_82_line/17252/Revelian-project_10.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x5760_crop_center-center_82_line/17252/Revelian-project_10.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x2160_crop_center-center_82_line/17252/Revelian-project_10.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x1800_crop_center-center_82_line/17252/Revelian-project_10.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x4320_crop_center-center_82_line/17252/Revelian-project_10.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x3600_crop_center-center_82_line/17252/Revelian-project_10.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x2880_crop_center-center_82_line/17252/Revelian-project_10.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x5760_crop_center-center_82_line/17252/Revelian-project_10.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x2160_crop_center-center_82_line/17252/Revelian-project_10.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x1800_crop_center-center_82_line/17252/Revelian-project_10.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":4320,\"1280\":3600,\"1024\":2880,\"2048\":5760,\"768\":2160,\"640\":1800},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2400\",\"originalImageHeight\":\"6750\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgALQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6hpr0XLolkrQjG2TzgCenOMdjmrDFhImMbTnOeueKo3GtWlteNbO7+aMAgJntnr+NThZI7pFlupGzkhSqgN+IHtQMkubO2u4jHOgOSDkDng+tNjuZ3lKPaSojfxF0IH5HNXQ22EY7mq0Xl2yi0ihdVwX3dsk85PrQBy+pa3qEPiY2MMiLAXRQNgJ5UE/zq3pOq3l1qQhldPL54Cf17VdufD9jdagb6QSeeSDkPgcAAfyqS20e0tbkTxBw4z1bjmoad1Y3pTpqElJavY//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e2e0e0\",\"#2e2929\",\"#da292d\",\"#af8258\",\"#929090\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":4320,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17016,17253,1,'NWO_200618_3030','2021-05-18 01:11:53','2021-06-09 23:14:15','73675181-fabb-418d-9fc2-03f1b1e3aaa4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1372_crop_center-center_82_line/NWO_200618_3030-e1551914831676.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1097_crop_center-center_82_line/NWO_200618_3030-e1551914831676.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x823_crop_center-center_82_line/NWO_200618_3030-e1551914831676.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x686_crop_center-center_82_line/NWO_200618_3030-e1551914831676.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1372_crop_center-center_82_line/NWO_200618_3030-e1551914831676.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1097_crop_center-center_82_line/NWO_200618_3030-e1551914831676.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x823_crop_center-center_82_line/NWO_200618_3030-e1551914831676.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x686_crop_center-center_82_line/NWO_200618_3030-e1551914831676.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1372,\"1024\":1097,\"768\":823,\"640\":686},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1344\",\"originalImageHeight\":\"1441\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AqrrhPh9dOcbSpDeYvpnP55qxp/iG2kk8q8iVl2gLJ1PAA5+tZl3HLNIjl2kwCDvck/QVXt9PmFz5+4JhtwAOcfjU63L0saZ6Chfu/nRRTJP/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#5b4f48\",\"#d9d6d4\",\"#1c140d\",\"#abacac\",\"#a0a0a4\"],\"lightness\":47,\"placeholderWidth\":1280,\"placeholderHeight\":1372,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17017,17254,1,'Bec','2021-05-18 01:11:55','2021-06-09 23:25:17','60c3ad4b-7436-4972-b444-6690bc708675',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Bec.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Bec.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Bec.jpg\"},\"optimizedWebPImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Bec.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Bec.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Bec.jpg.webp\"},\"variantSourceWidths\":[\"1024\",\"768\",\"640\"],\"variantHeights\":{\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1200\",\"originalImageHeight\":\"1200\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A2NfnkkuILCOeWFHRpZXh+9tHQZ7DNQeEb24e4vrC4lklEBVojIcsFOeCfyrB1vW0m8QpcQ7hFBmFj13jJycenNV9D12PSNZnndWnhmXYzKMEDsQDU63NNOU//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ecdfdb\",\"#231816\",\"#7b5040\",\"#af7b64\",\"#494440\"],\"lightness\":49,\"placeholderWidth\":1024,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17018,17255,1,'Kimi','2021-05-18 01:11:58','2021-06-21 04:38:34','5c584591-2838-4790-b276-7785516a3e80',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Kimi.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Kimi.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Kimi.jpg\"},\"optimizedWebPImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Kimi.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Kimi.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Kimi.jpg.webp\"},\"variantSourceWidths\":[\"1024\",\"768\",\"640\"],\"variantHeights\":{\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1200\",\"originalImageHeight\":\"1200\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A2tfS6ltlS0umtzySVAy3tnIxUHgnULu8guobyXzngcBXJySDn/D9a53xHr08t1JHbsESJ2jBA5boDmqGg69c6LcmUKrQzFVkUjqB3HvyaSvcp2sf/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e2dad9\",\"#1e1615\",\"#764b3d\",\"#74646c\",\"#54545c\"],\"lightness\":46,\"placeholderWidth\":1024,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17019,17256,1,'Nick','2021-05-18 01:12:00','2021-06-21 04:38:15','bbe17988-f773-4eec-9861-f30b7063a46b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Nick.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Nick.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Nick.jpg\"},\"optimizedWebPImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Nick.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Nick.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Nick.jpg.webp\"},\"variantSourceWidths\":[\"1024\",\"768\",\"640\"],\"variantHeights\":{\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1200\",\"originalImageHeight\":\"1200\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6TVFlMIWGV4s9WRQW7AD9f0qLSp5Li0JlYsVbaGYYLDA5NUb3xJZl/IQlwThpMfKv+eKoWHiW2tN1rIheNW4ljHB/OlZ3LuuU//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dccece\",\"#353640\",\"#8f6053\",\"#857c83\",\"#706074\"],\"lightness\":52,\"placeholderWidth\":1024,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17020,17257,1,'Liz','2021-05-18 01:12:03','2021-06-21 04:38:49','8d68597c-bfe8-4e08-b1c4-45ec686bc5fa',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Liz.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Liz.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Liz.jpg\"},\"optimizedWebPImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Liz.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Liz.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Liz.jpg.webp\"},\"variantSourceWidths\":[\"1024\",\"768\",\"640\"],\"variantHeights\":{\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1200\",\"originalImageHeight\":\"1200\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A0NVuW+0wWaySRCRGdmjYKeBxzTPCuozXKXFpdP5ktuwxJnO5T0+vSuV8Qaw91q3m2/yfZyVjZTycHrVXSdbuNM1H7V98SHEqn+IZ/nS1uVdWP//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#221918\",\"#d5cac9\",\"#a0908d\",\"#b57461\",\"#84747c\"],\"lightness\":47,\"placeholderWidth\":1024,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17021,17258,1,'Jonno','2021-05-18 01:12:06','2021-06-09 23:15:47','623de9ca-7239-4a41-83ee-eb65dd3cb2cd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Jonno.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Jonno.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Jonno.jpg\"},\"optimizedWebPImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Jonno.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Jonno.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Jonno.jpg.webp\"},\"variantSourceWidths\":[\"1024\",\"768\",\"640\"],\"variantHeights\":{\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1200\",\"originalImageHeight\":\"1200\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A05YhLGQ0skaqCSYyAfzNVdGlkmtH8x2fZIyqz8kj3Pes/UPEEcNw9sI2KrlXcYJzjsPrVLRfEC2yra3ShYtx2yD+HJzz+fWlrcu6sf/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#b9aaa9\",\"#201a1a\",\"#644439\",\"#7c5847\",\"#6e615e\"],\"lightness\":39,\"placeholderWidth\":1024,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17022,17259,1,'Tilly','2021-05-18 01:12:08','2021-06-09 23:17:50','f762deda-9115-448d-8698-2a3339b97b87',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Tilly.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Tilly.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Tilly.jpg\"},\"optimizedWebPImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Tilly.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Tilly.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Tilly.jpg.webp\"},\"variantSourceWidths\":[\"1024\",\"768\",\"640\"],\"variantHeights\":{\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1200\",\"originalImageHeight\":\"1200\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3L7MoaESyxfJu3RnBPtntUGgXUtxbSxzsWkgkKEtycds0+eN31GPbnG0hhj7w9P603TYDYNcL95Nxd3PUk1mnqate6f/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d2c1b9\",\"#492d24\",\"#7c5141\",\"#976d54\",\"#887875\"],\"lightness\":48,\"placeholderWidth\":1024,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17023,17260,1,'Kate','2021-05-18 01:12:10','2021-06-21 04:38:24','7d761836-8192-4b12-8c14-cdf7074d855a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Kate.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Kate.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Kate.jpg\"},\"optimizedWebPImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Kate.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Kate.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Kate.jpg.webp\"},\"variantSourceWidths\":[\"1024\",\"768\",\"640\"],\"variantHeights\":{\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1200\",\"originalImageHeight\":\"1200\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8As6ldTC4gsrV9kkuSXC5Kj2H50miag809xZTzedLCcrIV2ll+n+etQavpuonVbe7tE3AKBkY465z+BqrpWmX+n6s1zOm2LDBmyDuHb+lRrc00sf/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c4b6b4\",\"#321f16\",\"#674437\",\"#8a604e\",\"#766a68\"],\"lightness\":43,\"placeholderWidth\":1024,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17024,17261,1,'Cathy','2021-05-18 01:12:13','2021-06-09 23:25:30','e1b93bed-2c88-4b6d-988f-6afd754baf92',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Cathy.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Cathy.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Cathy.jpg\"},\"optimizedWebPImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Cathy.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Cathy.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Cathy.jpg.webp\"},\"variantSourceWidths\":[\"1024\",\"768\",\"640\"],\"variantHeights\":{\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1200\",\"originalImageHeight\":\"1200\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6rUJWGI0dkG3cxRgG64H9fypug3r3ltKsjl2hk2bj1IwCP54/CqJvIr/AFmaGLcn2ZCkjkdTnGKxoNTm0XVZIrVVuI3O1kLcnA65+lZ3941snE//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#44322c\",\"#efdfd9\",\"#885a44\",\"#aa7d62\",\"#9e8a80\"],\"lightness\":49,\"placeholderWidth\":1024,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17025,17262,1,'Andrew','2021-05-18 01:12:15','2021-06-09 23:25:37','b9bb51fb-9ecf-4e39-9c5e-e67b7c53ea8f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Andrew.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Andrew.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Andrew.jpg\"},\"optimizedWebPImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Andrew.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Andrew.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Andrew.jpg.webp\"},\"variantSourceWidths\":[\"1024\",\"768\",\"640\"],\"variantHeights\":{\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1200\",\"originalImageHeight\":\"1200\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6TVN5tQqTSQAn5pI8ZAx7++KZ4bnnns51nlaYwzGNXcYYrgHn86p67qq2tnzGSGbaCDz0PNP0W9+xaeonDGMjfnjK55/GlZ3LuuU/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e0d8d8\",\"#473435\",\"#aa8d89\",\"#a06f60\",\"#6b6c6f\"],\"lightness\":56,\"placeholderWidth\":1024,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17026,17263,1,'Scott','2021-05-18 01:12:18','2021-06-09 23:17:08','9ce10e95-389f-45f6-8306-9d0747a40f44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Scott.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Scott.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Scott.jpg\"},\"optimizedWebPImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Scott.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Scott.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Scott.jpg.webp\"},\"variantSourceWidths\":[\"1024\",\"768\",\"640\"],\"variantHeights\":{\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1200\",\"originalImageHeight\":\"1200\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3LhVZNrSSxqf4ohzVPRrprhJ42dpBE+FdhglSMjNQ2usfbrhoRCUQKTnqT0/Tmqem6rDpk0lldrsBbesoHHPY/l1pWdy7rlP/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#cdbdb8\",\"#39323b\",\"#754e44\",\"#946858\",\"#7f6f78\"],\"lightness\":47,\"placeholderWidth\":1024,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17027,17264,1,'Suz','2021-05-18 01:12:21','2021-06-09 23:17:44','1b8062be-2e0c-4f5c-9aea-871bee392242',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Suz.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Suz.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Suz.jpg\"},\"optimizedWebPImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Suz.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Suz.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Suz.jpg.webp\"},\"variantSourceWidths\":[\"1024\",\"768\",\"640\"],\"variantHeights\":{\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1200\",\"originalImageHeight\":\"1200\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A1Ncmka/tbRZpYonDFzE21jgEjn8Ku6DcSzWssczmRreVog5OSwGCCffnH4Vzl5qYvL0O0B3RktGQSGA7fXI/nUWn6/JZ6gsjBltZn/eBznk8Fvw4/KpV7mjtyn//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#302321\",\"#ddd0cc\",\"#795040\",\"#9f715e\",\"#8a7f7c\"],\"lightness\":44,\"placeholderWidth\":1024,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17028,17265,1,'IMG_1782','2021-05-18 01:12:24','2021-06-09 23:15:02','471a492a-63f9-46bb-ad10-5fb054484ee4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/IMG_1782.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2304_crop_center-center_82_line/IMG_1782.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/IMG_1782.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1920_crop_center-center_82_line/IMG_1782.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/IMG_1782.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1536_crop_center-center_82_line/IMG_1782.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/IMG_1782.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/IMG_1782.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/IMG_1782.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2304_crop_center-center_82_line/IMG_1782.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/IMG_1782.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1920_crop_center-center_82_line/IMG_1782.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/IMG_1782.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1536_crop_center-center_82_line/IMG_1782.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/IMG_1782.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/IMG_1782.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"3072\":2304,\"1280\":960,\"2560\":1920,\"1024\":768,\"2048\":1536,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"4000\",\"originalImageHeight\":\"3000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Awbd3tiZF3KCMMP7w9K6PSdTDW5eRWZyMFT/OsVz+6B7lcn8zU1nM6j5TjHy5Hoe1OEm9DK/U/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#3a4e4c\",\"#c4cbd0\",\"#84b7bb\",\"#718e88\",\"#879bb1\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17029,17266,1,'kate & shane_previews_by savannah van der niet-14','2021-05-18 01:12:47','2021-06-21 04:38:39','f2f4b36c-3bdc-4095-9687-4dc53a125f7a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/kate-shane_previews_by-savannah-van-der-niet-14.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2048_crop_center-center_82_line/kate-shane_previews_by-savannah-van-der-niet-14.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/kate-shane_previews_by-savannah-van-der-niet-14.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1706_crop_center-center_82_line/kate-shane_previews_by-savannah-van-der-niet-14.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/kate-shane_previews_by-savannah-van-der-niet-14.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/kate-shane_previews_by-savannah-van-der-niet-14.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/kate-shane_previews_by-savannah-van-der-niet-14.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/kate-shane_previews_by-savannah-van-der-niet-14.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/kate-shane_previews_by-savannah-van-der-niet-14.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2048_crop_center-center_82_line/kate-shane_previews_by-savannah-van-der-niet-14.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/kate-shane_previews_by-savannah-van-der-niet-14.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1706_crop_center-center_82_line/kate-shane_previews_by-savannah-van-der-niet-14.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/kate-shane_previews_by-savannah-van-der-niet-14.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/kate-shane_previews_by-savannah-van-der-niet-14.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/kate-shane_previews_by-savannah-van-der-niet-14.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/kate-shane_previews_by-savannah-van-der-niet-14.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"3072\":2048,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"5760\",\"originalImageHeight\":\"3840\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6loTMWkkGXj+ZDxwQK5Hwzr93JqzRStK6eUTIPvZbIy2O3euw0wloHLEk7z1+grj/CSKLy9cKN4nChsc43dPpQB//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#141a1e\",\"#e1dedc\",\"#7b6257\",\"#8d8882\",\"#8b7867\"],\"lightness\":44,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17030,17267,1,'IMG_2673','2021-05-18 01:13:05','2021-06-09 23:15:21','ba3d0979-6297-425b-831e-2674711135a7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x536_crop_center-center_82_line/IMG_2673.jpg\"},\"optimizedWebPImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x536_crop_center-center_82_line/IMG_2673.jpg.webp\"},\"variantSourceWidths\":[\"640\"],\"variantHeights\":{\"640\":536},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"750\",\"originalImageHeight\":\"629\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Aux2MEYKSw+ajH7yZyP0pZNDtmz5Nywb+66GoxqN1/wA9cf8AARU3264MePNPTsBXT7RnMqcXuj//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#518caf\",\"#d9d6eb\",\"#a7bdd8\",\"#2d3642\",\"#325464\"],\"lightness\":60,\"placeholderWidth\":640,\"placeholderHeight\":536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17031,17268,1,'IMG_2675','2021-05-18 01:13:06','2021-06-09 23:15:22','b36bdb2a-78bb-4698-86ef-20f241737061',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/IMG_2675.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/IMG_2675.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/IMG_2675.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/IMG_2675.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/IMG_2675.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/IMG_2675.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/IMG_2675.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/IMG_2675.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/IMG_2675.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/IMG_2675.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1536\",\"originalImageHeight\":\"1536\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AratMZr9/N5JcgknA4xjOPpWnp+oyWSwwGWAKIxyz54/P6Vl3ttDJEDACoBGe+f196IMRwwRuPn3FVYDPPUf59qx5ro1lFrQ//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#554a41\",\"#dac49f\",\"#a57b60\",\"#adb797\",\"#a49f9f\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17032,17269,1,'IMG_2685','2021-05-18 01:13:09','2021-06-09 23:15:23','6bb816ee-8db3-4a97-a7f6-832cd214ce48',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/IMG_2685.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/IMG_2685.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x2560_crop_center-center_82_line/IMG_2685.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/IMG_2685.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2048_crop_center-center_82_line/IMG_2685.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/IMG_2685.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/IMG_2685.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/IMG_2685.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/IMG_2685.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x2560_crop_center-center_82_line/IMG_2685.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/IMG_2685.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2048_crop_center-center_82_line/IMG_2685.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/IMG_2685.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/IMG_2685.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"2560\":2560,\"1024\":1024,\"2048\":2048,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3024\",\"originalImageHeight\":\"3024\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AybRgpABPzHkd63luFt7d2kkbeV+6Vxj+tZukoz6hA7RgR/eJ69On60uvXa29+x2blbqTzj8Klq4rH//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#474c45\",\"#cac8bc\",\"#919386\",\"#a5b299\",\"#a4a1a5\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17033,17270,1,'Image from iOS (1)','2021-05-18 01:13:19','2021-06-09 23:19:38','ee56b286-2b3b-44f6-8913-67c2bd4591af',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2048_crop_center-center_82_line/Image-from-iOS-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1706_crop_center-center_82_line/Image-from-iOS-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1365_crop_center-center_82_line/Image-from-iOS-1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2730_crop_center-center_82_line/Image-from-iOS-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1024_crop_center-center_82_line/Image-from-iOS-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x853_crop_center-center_82_line/Image-from-iOS-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2048_crop_center-center_82_line/Image-from-iOS-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1706_crop_center-center_82_line/Image-from-iOS-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1365_crop_center-center_82_line/Image-from-iOS-1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2730_crop_center-center_82_line/Image-from-iOS-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1024_crop_center-center_82_line/Image-from-iOS-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x853_crop_center-center_82_line/Image-from-iOS-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":2048,\"1280\":1706,\"1024\":1365,\"2048\":2730,\"768\":1024,\"640\":853},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2448\",\"originalImageHeight\":\"3264\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAFQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AzdeuzdajNK8LQswGUbqKi0q3jlurVZl3I0qhl9RUGrXa3N/LJGrhSABvGDViwmht4S13EWyPlU5B9eDTlL3rjS906i80G1tWW9ZnkmkI9AF+lTJo9sbiJJER8qGJK0UVxzb9qWvgP//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#3a363a\",\"#cfbfa0\",\"#789fc7\",\"#91765c\",\"#9e9e88\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":2048,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17034,17271,1,'Image from iOS (2)','2021-05-18 01:13:30','2021-06-09 23:24:38','5c95ced0-c2b4-4c74-9105-d122d94a89d2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2044_crop_center-center_82_line/Image-from-iOS-2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1703_crop_center-center_82_line/Image-from-iOS-2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1362_crop_center-center_82_line/Image-from-iOS-2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2725_crop_center-center_82_line/Image-from-iOS-2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1022_crop_center-center_82_line/Image-from-iOS-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x851_crop_center-center_82_line/Image-from-iOS-2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2044_crop_center-center_82_line/Image-from-iOS-2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1703_crop_center-center_82_line/Image-from-iOS-2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1362_crop_center-center_82_line/Image-from-iOS-2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2725_crop_center-center_82_line/Image-from-iOS-2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1022_crop_center-center_82_line/Image-from-iOS-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x851_crop_center-center_82_line/Image-from-iOS-2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":2044,\"1280\":1703,\"1024\":1362,\"2048\":2725,\"768\":1022,\"640\":851},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2320\",\"originalImageHeight\":\"3088\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAFQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ad9l3wRCCOETbsAq2Cav6L4juftUVlc248sfJvByQR3PtXP3wMtpa+S5BAJHP3hxg/XitbQog9vmR2V3/AI+x/wA4rFN9DecdLnPecRbuVAA3HA9D7VvLL5GnWkIXcrQ7iSfbAoopRLra2P/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#71493b\",\"#d2ccb8\",\"#a5947f\",\"#ce8f79\",\"#adaaad\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":2044,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17035,17272,1,'Image from iOS','2021-05-18 01:13:37','2021-06-09 23:23:22','69882bf2-c221-4b16-bc59-dcaaca28529e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2048_crop_center-center_82_line/Image-from-iOS.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1706_crop_center-center_82_line/Image-from-iOS.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1365_crop_center-center_82_line/Image-from-iOS.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2730_crop_center-center_82_line/Image-from-iOS.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1024_crop_center-center_82_line/Image-from-iOS.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x853_crop_center-center_82_line/Image-from-iOS.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2048_crop_center-center_82_line/Image-from-iOS.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1706_crop_center-center_82_line/Image-from-iOS.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1365_crop_center-center_82_line/Image-from-iOS.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2730_crop_center-center_82_line/Image-from-iOS.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1024_crop_center-center_82_line/Image-from-iOS.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x853_crop_center-center_82_line/Image-from-iOS.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":2048,\"1280\":1706,\"1024\":1365,\"2048\":2730,\"768\":1024,\"640\":853},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2448\",\"originalImageHeight\":\"3264\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAFQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Azn028dVNzEYEXrIyYwPxxmq97p7W06fZy80LoG3Ad+/T+tdJa6v9sRVldpJWb5U7LjufX6VNd3bxziN8Y2gjjtUWFyqxy1pK8LK8ZwwPWr7XMs7K8rljtA57UUUy+h//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#4e5446\",\"#d5d2ce\",\"#c3afa0\",\"#999794\",\"#9cb87e\"],\"lightness\":57,\"placeholderWidth\":1536,\"placeholderHeight\":2048,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17036,17273,1,'Image from iOS (3)','2021-05-18 01:13:48','2021-06-09 23:24:40','51f7d59c-e521-4dda-b964-afd61f3dd5a6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/Image-from-iOS-3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x3072_crop_center-center_82_line/Image-from-iOS-3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/Image-from-iOS-3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x2560_crop_center-center_82_line/Image-from-iOS-3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Image-from-iOS-3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2048_crop_center-center_82_line/Image-from-iOS-3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Image-from-iOS-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Image-from-iOS-3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/Image-from-iOS-3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x3072_crop_center-center_82_line/Image-from-iOS-3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/Image-from-iOS-3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x2560_crop_center-center_82_line/Image-from-iOS-3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Image-from-iOS-3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2048_crop_center-center_82_line/Image-from-iOS-3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Image-from-iOS-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Image-from-iOS-3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"3072\":3072,\"1280\":1280,\"2560\":2560,\"1024\":1024,\"2048\":2048,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"4032\",\"originalImageHeight\":\"4032\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Az/FUXn+MriEHG9oxn0Gxal8JxSjXNLkI2xlpl4HHEef6mtjWLy3g8SyK8Yz8oZyv+yKmsXgbxDZNbCLy3ViVUDKHaemKz51exooOx//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#2e241c\",\"#d3b9a3\",\"#916344\",\"#aea28e\",\"#a69494\"],\"lightness\":45,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17037,17274,1,'Image from iOS (4)','2021-05-18 01:14:14','2021-06-09 23:24:44','aee24f09-7931-446b-a233-83534c0cd6c0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2048_crop_center-center_82_line/Image-from-iOS-4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1706_crop_center-center_82_line/Image-from-iOS-4.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x3413_crop_center-center_82_line/Image-from-iOS-4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1365_crop_center-center_82_line/Image-from-iOS-4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2730_crop_center-center_82_line/Image-from-iOS-4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1024_crop_center-center_82_line/Image-from-iOS-4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x853_crop_center-center_82_line/Image-from-iOS-4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2048_crop_center-center_82_line/Image-from-iOS-4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1706_crop_center-center_82_line/Image-from-iOS-4.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x3413_crop_center-center_82_line/Image-from-iOS-4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1365_crop_center-center_82_line/Image-from-iOS-4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2730_crop_center-center_82_line/Image-from-iOS-4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1024_crop_center-center_82_line/Image-from-iOS-4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x853_crop_center-center_82_line/Image-from-iOS-4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":2048,\"1280\":1706,\"2560\":3413,\"1024\":1365,\"2048\":2730,\"768\":1024,\"640\":853},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3024\",\"originalImageHeight\":\"4032\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAFQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AbqqXRvD5eRFgOAOMZXn/APVVbRLZbi/Ftt2EKWLf99Afzq7LdrJ5TxqfmiVcN1P+c1kwXctvdNcwSAPtKlcVgpe/bodDppU79S4sYWNSny7enGar/Z0XcRwWOScdaKKzRq9j/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#835b43\",\"#2a2b25\",\"#cfd2c2\",\"#e66c32\",\"#a1a6aa\"],\"lightness\":44,\"placeholderWidth\":1536,\"placeholderHeight\":2048,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17038,17275,1,'Image from iOS (5)','2021-05-18 01:14:25','2021-06-09 23:24:46','8860c051-63c6-4a5a-9f93-9b84a7b9176d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x1138_crop_center-center_82_line/Image-from-iOS-5.jpg\"},\"optimizedWebPImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x1138_crop_center-center_82_line/Image-from-iOS-5.jpg.webp\"},\"variantSourceWidths\":[\"640\"],\"variantHeights\":{\"640\":1138},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"750\",\"originalImageHeight\":\"1334\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAHAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5y48uNzFIDgn71WzaSXOnSXNuV8uHrk4Jx1xVBszSiSQ8E9M1fi1ApbNGEwrKVbHQjFQWvMozwNa3bwzA5RsH3FMaVVBC966HxdGh8uTYA+0/MOprlASzYJprVXJejsf/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#342f29\",\"#c7a699\",\"#6f5f54\",\"#877f79\",\"#74747e\"],\"lightness\":41,\"placeholderWidth\":640,\"placeholderHeight\":1138,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17039,17276,1,'Image from iOS (6)','2021-05-18 01:14:26','2021-06-09 23:24:47','a5d93e74-a0ba-4fdd-9e51-d49b65ab5dc5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2048_crop_center-center_82_line/Image-from-iOS-6.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1706_crop_center-center_82_line/Image-from-iOS-6.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x3413_crop_center-center_82_line/Image-from-iOS-6.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1365_crop_center-center_82_line/Image-from-iOS-6.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2730_crop_center-center_82_line/Image-from-iOS-6.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1024_crop_center-center_82_line/Image-from-iOS-6.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x853_crop_center-center_82_line/Image-from-iOS-6.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2048_crop_center-center_82_line/Image-from-iOS-6.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1706_crop_center-center_82_line/Image-from-iOS-6.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x3413_crop_center-center_82_line/Image-from-iOS-6.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1365_crop_center-center_82_line/Image-from-iOS-6.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2730_crop_center-center_82_line/Image-from-iOS-6.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1024_crop_center-center_82_line/Image-from-iOS-6.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x853_crop_center-center_82_line/Image-from-iOS-6.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":2048,\"1280\":1706,\"2560\":3413,\"1024\":1365,\"2048\":2730,\"768\":1024,\"640\":853},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3024\",\"originalImageHeight\":\"4032\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAFQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ak1Owj0luG3AsDvwcCtG38Vurk3CRsjfd2Hbjp3PXiuW1i5mS5NvFIfJcA8elX9aYW1vaIi4BTOSOvQZpxg7ahJqLsZmqFXgtiqKrum4sBzwvSkkv5dQe3gnVCEIXcBjIJFFFb1dBS+I//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#3b424d\",\"#d0b5ba\",\"#9dbbe6\",\"#8f807a\",\"#8f8abf\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":2048,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17040,17277,1,'IMG_1897','2021-05-18 01:14:39','2021-06-09 23:15:18','51f26285-23cb-4eb7-ba1a-66c28270261d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x1136_crop_center-center_82_line/IMG_1897.jpg\"},\"optimizedWebPImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x1136_crop_center-center_82_line/IMG_1897.jpg.webp\"},\"variantSourceWidths\":[\"640\"],\"variantHeights\":{\"640\":1136},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"720\",\"originalImageHeight\":\"1278\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAHAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7KUocK/ftXM67BCzBo1wQcH3q8upLJqao+MMML9ah16VIdKlLbQ3QEjknNZxupI1aUos5C4u3F1ujkPytlWHHPtWul1Dqujul9cqJ0OQSw3GsK7b5FOB1H9KrSkpKhHcV2uCkkccZOLfmf/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1c4368\",\"#e5c7b1\",\"#717883\",\"#9f7f81\",\"#5d525d\"],\"lightness\":49,\"placeholderWidth\":640,\"placeholderHeight\":1136,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17041,17278,1,'IMG_1013','2021-05-18 01:14:40','2021-06-09 23:15:10','e06eb0ee-76f8-4cbe-a037-240ba46dd609',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x852_crop_center-center_82_line/IMG_1013.jpg\"},\"optimizedWebPImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x852_crop_center-center_82_line/IMG_1013.jpg.webp\"},\"variantSourceWidths\":[\"640\"],\"variantHeights\":{\"640\":852},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"640\",\"originalImageHeight\":\"852\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAFQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A29YvTb6XLOrjzBwpB6n6GuHubyeGa3ui0pnzli/Oas+JLi4h02ytrqfzLnmV8DGM9vc1l6hqRuYIlG4Mwy+en4U+ZSirGratY2/iDBHFfW5jULuQg4HXB/8Ar1y1unmTxITwzBf1oopR+EyP/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dbbdc0\",\"#191221\",\"#7e5456\",\"#96937d\",\"#8927a7\"],\"lightness\":47,\"placeholderWidth\":640,\"placeholderHeight\":852,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17042,17279,1,'IMG_0772','2021-05-18 01:14:41','2021-06-09 23:15:09','2f7caa12-7abd-41ea-8cd3-4eb3716cb885',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1024_crop_center-center_82_line/IMG_0772.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x853_crop_center-center_82_line/IMG_0772.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1024_crop_center-center_82_line/IMG_0772.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x853_crop_center-center_82_line/IMG_0772.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":1024,\"640\":853},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"960\",\"originalImageHeight\":\"1280\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAFQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AmudWuksTJJdSMspxsI/kazRd3UUKyORt+9jPIFVbi+862s4p43EakbsHqB6VP5zNZeRGyyRFtvTDY+vpU8zKshms2y2+mwFDypAqvpcpWLnnFFFH2Qluf//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#4f4c4a\",\"#c8a890\",\"#998477\",\"#a8aeaf\",\"#9297ad\"],\"lightness\":51,\"placeholderWidth\":768,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17043,17280,1,'IMG_0661','2021-05-18 01:14:43','2021-06-09 23:15:04','784cd59e-06e8-4085-9af2-cf324233c771',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2048_crop_center-center_82_line/IMG_0661.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1706_crop_center-center_82_line/IMG_0661.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1365_crop_center-center_82_line/IMG_0661.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2730_crop_center-center_82_line/IMG_0661.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1024_crop_center-center_82_line/IMG_0661.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x853_crop_center-center_82_line/IMG_0661.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2048_crop_center-center_82_line/IMG_0661.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1706_crop_center-center_82_line/IMG_0661.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1365_crop_center-center_82_line/IMG_0661.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2730_crop_center-center_82_line/IMG_0661.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1024_crop_center-center_82_line/IMG_0661.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x853_crop_center-center_82_line/IMG_0661.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":2048,\"1280\":1706,\"1024\":1365,\"2048\":2730,\"768\":1024,\"640\":853},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2448\",\"originalImageHeight\":\"3264\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAFQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A2ZNUgt42aS9lGBnG4kn9aDriLArJPKGbgKw5zXGzXeiGYSx292pBzgOMZ9ea1dEvJ7yC6itbho/myzMBlgSe1TqkPqcy0IYZ6fhWp4Vcw6s0Y+66EGiiqH1P/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d3cdc0\",\"#312d30\",\"#a0a8a1\",\"#8f8378\",\"#758e9f\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":2048,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17044,17281,1,'Black garlic bread from my favourite cafe—Gauge','2021-05-18 01:14:53','2021-06-09 23:25:18','500a4d9d-497c-4175-9638-0c2110031269',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2048_crop_center-center_82_line/Black-garlic-bread-from-my-favourite-cafe—Gauge.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1706_crop_center-center_82_line/Black-garlic-bread-from-my-favourite-cafe—Gauge.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1365_crop_center-center_82_line/Black-garlic-bread-from-my-favourite-cafe—Gauge.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2730_crop_center-center_82_line/Black-garlic-bread-from-my-favourite-cafe—Gauge.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1024_crop_center-center_82_line/Black-garlic-bread-from-my-favourite-cafe—Gauge.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x853_crop_center-center_82_line/Black-garlic-bread-from-my-favourite-cafe—Gauge.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2048_crop_center-center_82_line/Black-garlic-bread-from-my-favourite-cafe—Gauge.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1706_crop_center-center_82_line/Black-garlic-bread-from-my-favourite-cafe—Gauge.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1365_crop_center-center_82_line/Black-garlic-bread-from-my-favourite-cafe—Gauge.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2730_crop_center-center_82_line/Black-garlic-bread-from-my-favourite-cafe—Gauge.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1024_crop_center-center_82_line/Black-garlic-bread-from-my-favourite-cafe—Gauge.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x853_crop_center-center_82_line/Black-garlic-bread-from-my-favourite-cafe—Gauge.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":2048,\"1280\":1706,\"1024\":1365,\"2048\":2730,\"768\":1024,\"640\":853},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2448\",\"originalImageHeight\":\"3264\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAFQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A1dBguIoBI6qEkUZ3dSaq60Wu8yQzQTQw9REwJUn1/Ktiexe8aB45iiRfNtHc1zOiaPeaR9ukvVVY3h2LhgdxJ4/z71i1dM1UtTotLeQ2+S5x0AxWbqssguCsjlwDx2A4ooqJfCWviP/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#705136\",\"#e2d5c4\",\"#b28a66\",\"#4d5162\",\"#7c645c\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":2048,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17045,17282,1,'coffees','2021-05-18 01:15:03','2021-06-09 23:23:51','3f699b64-ebd0-45f9-ab12-ebdf5d13b141',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/coffees.jpg\"},\"optimizedWebPImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/coffees.jpg.webp\"},\"variantSourceWidths\":[\"640\"],\"variantHeights\":{\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"640\",\"originalImageHeight\":\"640\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A2T4gZ7EYlMczfLwFZ1b1296yV1/WI/tAe/icRMQD5YBcDuPl6VqiTX/s21tGRpsYMhnTB/DP9axF0XxGm/baAF85O+PPPXvQB//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#434344\",\"#d9d9d9\",\"#a0a0a1\",\"#97949c\",\"#aca4ac\"],\"lightness\":56,\"placeholderWidth\":640,\"placeholderHeight\":640,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17046,17283,1,'Jonno and Liz','2021-05-18 01:15:04','2021-06-09 23:15:44','fd86e1d1-7a53-47ef-92c8-c37aeae99910',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1022_crop_center-center_82_line/Jonno-and-Liz.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2044_crop_center-center_82_line/Jonno-and-Liz.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x851_crop_center-center_82_line/Jonno-and-Liz.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1703_crop_center-center_82_line/Jonno-and-Liz.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x681_crop_center-center_82_line/Jonno-and-Liz.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1362_crop_center-center_82_line/Jonno-and-Liz.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x511_crop_center-center_82_line/Jonno-and-Liz.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x425_crop_center-center_82_line/Jonno-and-Liz.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1022_crop_center-center_82_line/Jonno-and-Liz.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2044_crop_center-center_82_line/Jonno-and-Liz.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x851_crop_center-center_82_line/Jonno-and-Liz.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1703_crop_center-center_82_line/Jonno-and-Liz.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x681_crop_center-center_82_line/Jonno-and-Liz.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1362_crop_center-center_82_line/Jonno-and-Liz.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x511_crop_center-center_82_line/Jonno-and-Liz.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x425_crop_center-center_82_line/Jonno-and-Liz.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1022,\"3072\":2044,\"1280\":851,\"2560\":1703,\"1024\":681,\"2048\":1362,\"768\":511,\"640\":425},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"4256\",\"originalImageHeight\":\"2832\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AyC0MMKs6E7uBj17VPqGnm2tYJnAAnUkc9Kzpz+5i/wCugroPEhP9iaZz/wAsx/6CKwUbo9qdRxqJdH/kf//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c2232c\",\"#271d1b\",\"#d9d1d1\",\"#722a25\",\"#a08894\"],\"lightness\":43,\"placeholderWidth\":1536,\"placeholderHeight\":1022,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17047,17284,1,'Margaret River wine','2021-05-18 01:15:19','2021-07-16 03:54:03','01cc71f2-3d5c-45ec-a8a6-dc2820ba0999',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2048_crop_center-center_82_line/Margaret-River-wine.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1706_crop_center-center_82_line/Margaret-River-wine.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1365_crop_center-center_82_line/Margaret-River-wine.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2730_crop_center-center_82_line/Margaret-River-wine.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1024_crop_center-center_82_line/Margaret-River-wine.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x853_crop_center-center_82_line/Margaret-River-wine.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2048_crop_center-center_82_line/Margaret-River-wine.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1706_crop_center-center_82_line/Margaret-River-wine.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1365_crop_center-center_82_line/Margaret-River-wine.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2730_crop_center-center_82_line/Margaret-River-wine.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1024_crop_center-center_82_line/Margaret-River-wine.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x853_crop_center-center_82_line/Margaret-River-wine.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":2048,\"1280\":1706,\"1024\":1365,\"2048\":2730,\"768\":1024,\"640\":853},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2448\",\"originalImageHeight\":\"3264\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAFQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AqXt7HqEaefdnf9iyc/xSA9Oe9YlsIReKgclNhYn3x/8AWptoYJFTzmBJkKNlsZHGP61o2un2N0tsMMrOzAsj56An+grOMS2yhrlnDZXEaQqQCuTk571QgleCVJYXKOvRhRRVR2Gz/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#251c13\",\"#bcac98\",\"#7b6957\",\"#898691\",\"#939598\"],\"lightness\":41,\"placeholderWidth\":1536,\"placeholderHeight\":2048,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17048,17285,1,'IMG_6640','2021-05-18 01:15:29','2021-06-09 23:14:33','602840e4-37dd-4e49-a46c-fbd4cd7256d3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1023_crop_center-center_82_line/IMG_6640.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x852_crop_center-center_82_line/IMG_6640.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/IMG_6640.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1364_crop_center-center_82_line/IMG_6640.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x511_crop_center-center_82_line/IMG_6640.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/IMG_6640.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1023_crop_center-center_82_line/IMG_6640.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x852_crop_center-center_82_line/IMG_6640.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/IMG_6640.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1364_crop_center-center_82_line/IMG_6640.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x511_crop_center-center_82_line/IMG_6640.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/IMG_6640.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1023,\"1280\":852,\"1024\":682,\"2048\":1364,\"768\":511,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2250\",\"originalImageHeight\":\"1499\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6qGRdgJIAoe5Qxkhhx1rlb2eZdMBWVwdy9GNHmyf2Wp3tky9c/7dHUdj/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d2d0d2\",\"#414342\",\"#816563\",\"#8b8087\",\"#766b74\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":1023,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17049,17286,1,'TRI-landing-2','2021-05-18 01:15:32','2021-06-09 23:17:22','84cec316-f3a2-40fa-8e24-04a688eec075',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/TRI-landing-2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/TRI-landing-2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/TRI-landing-2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/TRI-landing-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/TRI-landing-2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/TRI-landing-2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/TRI-landing-2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/TRI-landing-2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/TRI-landing-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/TRI-landing-2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AWXGRuOB3IrLv8DO05GeDWnP0rLvfu161XZnzmG+JH//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#04a3d6\",\"#1c4759\",\"#046c8c\",\"#d0f5fa\",\"#66dcf7\"],\"lightness\":42,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17050,17287,1,'TRI-landing-1_3','2021-05-18 01:15:33','2021-06-09 23:17:37','6b2df4d5-0c1b-4fb1-b541-4a697545c6e4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/TRI-landing-1_3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/TRI-landing-1_3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/TRI-landing-1_3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/TRI-landing-1_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/TRI-landing-1_3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/TRI-landing-1_3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/TRI-landing-1_3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/TRI-landing-1_3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/TRI-landing-1_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/TRI-landing-1_3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"800\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7s7xGm7Jfvsx1x70r7/L+TO73oooFY//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#2c90ae\",\"#eff8f8\",\"#97cdda\",\"#81888d\",\"#949494\"],\"lightness\":65,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17051,17288,1,'TRI-landing-3_3','2021-05-18 01:15:35','2021-06-09 23:17:25','150397e7-fb9d-46a4-87b3-436ddf576c87',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/TRI-landing-3_3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/TRI-landing-3_3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/TRI-landing-3_3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/TRI-landing-3_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/TRI-landing-3_3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/TRI-landing-3_3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/TRI-landing-3_3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/TRI-landing-3_3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/TRI-landing-3_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/TRI-landing-3_3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A0tQ127ttSktoYInRGUZOc8gH1qxZaxNcXyQNHGFYkZGc9Kw9U/5GO5/3l/ktW9K/5DEX+838jXXGnFwbt0PNqVqiqqN9Ln//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#0699cd\",\"#e3e3e4\",\"#184b5f\",\"#a4c4cc\",\"#74949c\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17052,17289,1,'TRI-landing-4_3','2021-05-18 01:15:37','2021-06-09 23:17:26','3f4a8af9-5faf-4b9e-b682-08b090296c82',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/TRI-landing-4_3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/TRI-landing-4_3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/TRI-landing-4_3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/TRI-landing-4_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/TRI-landing-4_3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/TRI-landing-4_3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/TRI-landing-4_3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/TRI-landing-4_3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/TRI-landing-4_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/TRI-landing-4_3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A27zStNnvHuJXbzgQzKjDI6duvpT7C1sDMlzA7biSVDHB7jpWbJ/yHNU/3E/mtXB/yMKfT+hrWF3dJ9Dnq8q5ZNX1sf/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dee0e1\",\"#157797\",\"#bc5d2f\",\"#16313b\",\"#8b864b\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17053,17290,1,'TRI-landing-5_3','2021-05-18 01:15:38','2021-06-09 23:17:27','62cd33b8-d0a6-4a56-94db-40c78a392774',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/TRI-landing-5_3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/TRI-landing-5_3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/TRI-landing-5_3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/TRI-landing-5_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/TRI-landing-5_3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/TRI-landing-5_3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/TRI-landing-5_3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/TRI-landing-5_3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/TRI-landing-5_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/TRI-landing-5_3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A2odOlOvXlxNF/o8iAA5B3Hjt+FSNYOusQzQxbYE759R/jWp3papSaIlBStf1P//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1c7290\",\"#e2e2e1\",\"#8ba2ab\",\"#d7622d\",\"#907e60\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17054,17291,1,'TRI-landing-7_3','2021-05-18 01:15:40','2021-06-09 23:17:27','706aff2a-01fd-42f4-b889-4df64a9fb4d8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x432_crop_center-center_82_line/TRI-landing-7_3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x360_crop_center-center_82_line/TRI-landing-7_3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x288_crop_center-center_82_line/TRI-landing-7_3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x216_crop_center-center_82_line/TRI-landing-7_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x180_crop_center-center_82_line/TRI-landing-7_3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x432_crop_center-center_82_line/TRI-landing-7_3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x360_crop_center-center_82_line/TRI-landing-7_3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x288_crop_center-center_82_line/TRI-landing-7_3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x216_crop_center-center_82_line/TRI-landing-7_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x180_crop_center-center_82_line/TRI-landing-7_3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":432,\"1280\":360,\"1024\":288,\"768\":216,\"640\":180},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6o2NpI5le2iaRsgsUBJ4x/KkisbS3YyQW0Ub9NyIAaKKBWP/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e0e1e1\",\"#1c4a5a\",\"#8ca4af\",\"#74888c\",\"#7c7c7c\"],\"lightness\":57,\"placeholderWidth\":1536,\"placeholderHeight\":432,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17055,17292,1,'TRI-landing-14','2021-05-18 01:15:44','2021-06-09 23:17:52','c3adbad1-9f35-4802-87fd-637ca5eec6df',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/TRI-landing-14.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/TRI-landing-14.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/TRI-landing-14.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/TRI-landing-14.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/TRI-landing-14.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/TRI-landing-14.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/TRI-landing-14.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/TRI-landing-14.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/TRI-landing-14.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/TRI-landing-14.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ao6dpkN7aySF5vMQgbY03daratY/2bqMtp5nm+Xj5tu3OQD0/GmW/Rqim/wBc1b63OTSx/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1f4c5c\",\"#ccd5d1\",\"#4ea0c8\",\"#32401c\",\"#8c9c90\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17056,17293,1,'TRI-landing-15','2021-05-18 01:15:46','2021-06-09 23:17:52','72903e0d-1ffe-4ca1-b229-1388667b01d4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/TRI-landing-15.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/TRI-landing-15.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/TRI-landing-15.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/TRI-landing-15.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/TRI-landing-15.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/TRI-landing-15.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/TRI-landing-15.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/TRI-landing-15.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/TRI-landing-15.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/TRI-landing-15.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5/dtOR1rTjvLCGxu4VSWWWZAqs8ajYQeucmss9aSuh6nGtNT/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#184e60\",\"#e3e8e9\",\"#1191bc\",\"#63c3e7\",\"#6d8a94\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17057,17294,1,'TRI-landing-16','2021-05-18 01:15:48','2021-06-09 23:17:53','94e8b944-f858-417f-8ec2-4dfa746df75e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/TRI-landing-16.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/TRI-landing-16.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/TRI-landing-16.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/TRI-landing-16.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/TRI-landing-16.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/TRI-landing-16.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/TRI-landing-16.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/TRI-landing-16.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/TRI-landing-16.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/TRI-landing-16.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3tAihfQ491umfK++VHPWl1eFF8PXLeXHnyxghBkdKXQf+QDB/wBc/wDGpda/5Fq5/wCuY/pVdSH8J//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e2e4e3\",\"#194859\",\"#856354\",\"#d77d4c\",\"#548494\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17058,17295,1,'TRI-landing-17','2021-05-18 01:15:50','2021-06-09 23:17:48','4019692a-bded-414c-be90-6f6b940e3e41',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/TRI-landing-17.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/TRI-landing-17.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/TRI-landing-17.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/TRI-landing-17.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/TRI-landing-17.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/TRI-landing-17.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/TRI-landing-17.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/TRI-landing-17.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/TRI-landing-17.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/TRI-landing-17.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8ApaVosupybEmSP93vy2fUD+tMbTGWxkuXuY12kgIc5bGOn51veDf+Pv8A7dz/AOhCoJP+RdvP94/+y11Nb/I8+Mm+W/W/4H//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1b4b5d\",\"#d3e7ea\",\"#0799ca\",\"#1bb4e1\",\"#30839d\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17059,17296,1,'TRI-landing-18','2021-05-18 01:15:52','2021-06-09 23:17:38','ed681991-e263-4de0-a2ae-32e2887cd7b2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/TRI-landing-18.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/TRI-landing-18.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/TRI-landing-18.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/TRI-landing-18.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/TRI-landing-18.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/TRI-landing-18.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/TRI-landing-18.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/TRI-landing-18.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/TRI-landing-18.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/TRI-landing-18.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AXTrR7DSjePKpju4/LVR1BznJ/Kk1PxJFfRzKIHQPF5a8j1zk1LqH/Ioab/v/ANGrmK6N0cW0n8j/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d7ebef\",\"#1a4c5e\",\"#2bb4db\",\"#0c93c3\",\"#728f96\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17060,17297,1,'TRI-landing-20','2021-05-18 01:15:54','2021-06-09 23:17:23','19f71a95-7f02-4475-ae0d-49272d9bae03',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/TRI-landing-20.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/TRI-landing-20.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/TRI-landing-20.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/TRI-landing-20.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/TRI-landing-20.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/TRI-landing-20.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/TRI-landing-20.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/TRI-landing-20.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/TRI-landing-20.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/TRI-landing-20.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ar20V1MZ3jsZbmJGCgpnIO0HGAR61BI1yk8Iks5bdCfmLBhk4OByTzwa6fwj/AMet1/18f+yLVHWv+PCL/r8/9pmunnl7W1+pw+yh7C9uh//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#118eb9\",\"#cdcccb\",\"#0a191d\",\"#2e4a54\",\"#38d0f8\"],\"lightness\":43,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17061,17298,1,'TRI-landing-21','2021-05-18 01:15:56','2021-06-09 23:17:24','ed05b53b-3df5-4720-83eb-d376cb5ca2aa',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/TRI-landing-21.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/TRI-landing-21.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/TRI-landing-21.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/TRI-landing-21.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/TRI-landing-21.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/TRI-landing-21.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/TRI-landing-21.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/TRI-landing-21.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/TRI-landing-21.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/TRI-landing-21.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Av6QdlofKWAv5h3eZEXPIAHQVNrltLHYq8622TKuPJTGDtOaz9L/4+R9f6GtzxT/yDov+u39DXT/y/OD/AJhb+R//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1596c0\",\"#e5ecea\",\"#1a1b1b\",\"#5b6246\",\"#b96c3e\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17062,17299,1,'TRI-landing-22','2021-05-18 01:15:58','2021-06-09 23:17:24','26391c85-01f0-4bce-88b3-0bed8eb15d1a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x960_crop_center-center_82_line/TRI-landing-22.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x800_crop_center-center_82_line/TRI-landing-22.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x640_crop_center-center_82_line/TRI-landing-22.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x480_crop_center-center_82_line/TRI-landing-22.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x400_crop_center-center_82_line/TRI-landing-22.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x960_crop_center-center_82_line/TRI-landing-22.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x800_crop_center-center_82_line/TRI-landing-22.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x640_crop_center-center_82_line/TRI-landing-22.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x480_crop_center-center_82_line/TRI-landing-22.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x400_crop_center-center_82_line/TRI-landing-22.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":960,\"1280\":800,\"1024\":640,\"768\":480,\"640\":400},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8ApuLkuRD5mwrg7Qcdama51CU+XeSStGOQG6Z/zmnRzzRAiOV0B5wrEUSTzSjEkruBzhmJr0OX95c8b2n7nlP/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1681a4\",\"#d6e4e4\",\"#244a54\",\"#1c4766\",\"#44d4f4\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":960,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17063,17300,1,'TRI-landing-19','2021-05-18 01:15:59','2021-06-09 23:17:28','364e6a8b-15a0-4478-a17a-39536f33b6b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x364_crop_center-center_82_line/TRI-landing-19.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x304_crop_center-center_82_line/TRI-landing-19.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x243_crop_center-center_82_line/TRI-landing-19.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x182_crop_center-center_82_line/TRI-landing-19.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x152_crop_center-center_82_line/TRI-landing-19.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x364_crop_center-center_82_line/TRI-landing-19.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x304_crop_center-center_82_line/TRI-landing-19.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x243_crop_center-center_82_line/TRI-landing-19.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x182_crop_center-center_82_line/TRI-landing-19.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x152_crop_center-center_82_line/TRI-landing-19.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":364,\"1280\":304,\"1024\":243,\"768\":182,\"640\":152},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"380\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAAwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A53JxjJxRRRXQcZ//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1b4a5b\",\"#f5fcfc\",\"#7c8f94\",\"#849cb4\",\"#2c485c\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":364,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17064,17301,1,'TRI-landing-6_3','2021-05-18 01:16:00','2021-06-09 23:17:21','7fd3042d-f2e3-4c2e-8377-7674171bfbec',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/TRI-landing-6_3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/TRI-landing-6_3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/TRI-landing-6_3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/TRI-landing-6_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/TRI-landing-6_3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/TRI-landing-6_3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/TRI-landing-6_3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/TRI-landing-6_3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/TRI-landing-6_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/TRI-landing-6_3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AuatMDd3agnd5b5+nl8f1rO8MQodbUkkhUZk5yc9OfwJp2q/8hy8/65v/AOijTvCP/Iak/wCuB/mtdE3dL0OKirSfqz//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1b5062\",\"#dfe1e1\",\"#0fb9e9\",\"#0693c4\",\"#e2672b\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17065,17302,1,'EF-landing-header','2021-05-18 01:16:02','2021-06-09 23:23:41','7f8f05b4-2c89-498d-b999-2f1da3d25391',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/EF-landing-header.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/EF-landing-header.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/EF-landing-header.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/EF-landing-header.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/EF-landing-header.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/EF-landing-header.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/EF-landing-header.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/EF-landing-header.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/EF-landing-header.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/EF-landing-header.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/EF-landing-header.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/EF-landing-header.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"1280\":853,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2400\",\"originalImageHeight\":\"1600\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Au2c++Pax+Zf5VnX0nmTn0FWU4cfjWdP/AK1vqa51TjKveOl9Tvy2q3Qblq1of//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#28a3a7\",\"#f4903b\",\"#9b3f8b\",\"#e32c4c\",\"#953c9c\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17066,17303,1,'dashboard_1','2021-05-18 01:16:07','2021-06-09 23:24:03','54d0a507-b578-4ed9-a2c9-be7b13738f9f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1063_crop_center-center_82_line/dashboard_1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2126_crop_center-center_82_line/dashboard_1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x886_crop_center-center_82_line/dashboard_1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1772_crop_center-center_82_line/dashboard_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x708_crop_center-center_82_line/dashboard_1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1417_crop_center-center_82_line/dashboard_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x531_crop_center-center_82_line/dashboard_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x443_crop_center-center_82_line/dashboard_1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1063_crop_center-center_82_line/dashboard_1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2126_crop_center-center_82_line/dashboard_1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x886_crop_center-center_82_line/dashboard_1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1772_crop_center-center_82_line/dashboard_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x708_crop_center-center_82_line/dashboard_1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1417_crop_center-center_82_line/dashboard_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x531_crop_center-center_82_line/dashboard_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x443_crop_center-center_82_line/dashboard_1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1063,\"3072\":2126,\"1280\":886,\"2560\":1772,\"1024\":708,\"2048\":1417,\"768\":531,\"640\":443},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6500\",\"originalImageHeight\":\"4500\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ap6Bp1lfSy/b7pYEUYUbwpY/j/nmpfEOlWGlxwm1unlaVjgFg2AOvQe4rDoxXTZ3vcy6H/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#2b3b62\",\"#ebedee\",\"#050507\",\"#8cc8c7\",\"#8e96ac\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":1063,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17067,17304,1,'dashboard_2','2021-05-18 01:16:32','2021-06-09 23:24:06','b366feed-105c-4f64-9b31-41bb69554774',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1063_crop_center-center_82_line/dashboard_2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2126_crop_center-center_82_line/dashboard_2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x886_crop_center-center_82_line/dashboard_2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1772_crop_center-center_82_line/dashboard_2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x708_crop_center-center_82_line/dashboard_2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1417_crop_center-center_82_line/dashboard_2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x531_crop_center-center_82_line/dashboard_2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x443_crop_center-center_82_line/dashboard_2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1063_crop_center-center_82_line/dashboard_2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2126_crop_center-center_82_line/dashboard_2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x886_crop_center-center_82_line/dashboard_2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1772_crop_center-center_82_line/dashboard_2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x708_crop_center-center_82_line/dashboard_2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1417_crop_center-center_82_line/dashboard_2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x531_crop_center-center_82_line/dashboard_2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x443_crop_center-center_82_line/dashboard_2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1063,\"3072\":2126,\"1280\":886,\"2560\":1772,\"1024\":708,\"2048\":1417,\"768\":531,\"640\":443},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6500\",\"originalImageHeight\":\"4500\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6pnTzdkkwhUDO44GfYE8f5FI80aTRok6SBs+5/T6/wA6lpojQNuCLu9cc14CqQ9nyuOvcD//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d7f64b\",\"#0d0e0c\",\"#ebefef\",\"#a6ae8d\",\"#707068\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":1063,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17068,17305,1,'dashboard_3','2021-05-18 01:16:54','2021-06-09 23:24:09','8ae7bb0a-87cf-4d20-af97-5c0c283a6600',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1063_crop_center-center_82_line/dashboard_3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2126_crop_center-center_82_line/dashboard_3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x886_crop_center-center_82_line/dashboard_3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1772_crop_center-center_82_line/dashboard_3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x708_crop_center-center_82_line/dashboard_3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1417_crop_center-center_82_line/dashboard_3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x531_crop_center-center_82_line/dashboard_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x443_crop_center-center_82_line/dashboard_3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1063_crop_center-center_82_line/dashboard_3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2126_crop_center-center_82_line/dashboard_3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x886_crop_center-center_82_line/dashboard_3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1772_crop_center-center_82_line/dashboard_3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x708_crop_center-center_82_line/dashboard_3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1417_crop_center-center_82_line/dashboard_3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x531_crop_center-center_82_line/dashboard_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x443_crop_center-center_82_line/dashboard_3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1063,\"3072\":2126,\"1280\":886,\"2560\":1772,\"1024\":708,\"2048\":1417,\"768\":531,\"640\":443},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6500\",\"originalImageHeight\":\"4500\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6CPymlKzTiFQM5JAyfbP+elFyYYZI0juFkD59CePp9aSk8tN27aufXFaHnKUeW1j/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#81d6ce\",\"#080b0b\",\"#f0f2f2\",\"#4e5557\",\"#44746c\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":1063,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17069,17306,1,'dashboard_4','2021-05-18 01:17:20','2021-06-09 23:24:12','844b1c1b-c6ea-4c4c-bcc2-a9908c287c1b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1063_crop_center-center_82_line/dashboard_4.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2126_crop_center-center_82_line/dashboard_4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x886_crop_center-center_82_line/dashboard_4.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1772_crop_center-center_82_line/dashboard_4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x708_crop_center-center_82_line/dashboard_4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1417_crop_center-center_82_line/dashboard_4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x531_crop_center-center_82_line/dashboard_4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x443_crop_center-center_82_line/dashboard_4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1063_crop_center-center_82_line/dashboard_4.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2126_crop_center-center_82_line/dashboard_4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x886_crop_center-center_82_line/dashboard_4.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1772_crop_center-center_82_line/dashboard_4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x708_crop_center-center_82_line/dashboard_4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1417_crop_center-center_82_line/dashboard_4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x531_crop_center-center_82_line/dashboard_4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x443_crop_center-center_82_line/dashboard_4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1063,\"3072\":2126,\"1280\":886,\"2560\":1772,\"1024\":708,\"2048\":1417,\"768\":531,\"640\":443},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6500\",\"originalImageHeight\":\"4500\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AsaZbW1zK4u7lYEA4ywUsfbNP1a0tLLyhBcmUyE8Eg8D6fWqFJtGc4GawurWsfSOlUdTnU9Ox/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#f63b53\",\"#ebedee\",\"#110d0e\",\"#a1898f\",\"#bf9ca4\"],\"lightness\":58,\"placeholderWidth\":1536,\"placeholderHeight\":1063,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17070,17307,1,'dashboard_5','2021-05-18 01:17:45','2021-06-09 23:24:14','9274d346-b268-4b43-b54f-930de28ca9f0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1063_crop_center-center_82_line/dashboard_5.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2126_crop_center-center_82_line/dashboard_5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x886_crop_center-center_82_line/dashboard_5.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1772_crop_center-center_82_line/dashboard_5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x708_crop_center-center_82_line/dashboard_5.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1417_crop_center-center_82_line/dashboard_5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x531_crop_center-center_82_line/dashboard_5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x443_crop_center-center_82_line/dashboard_5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1063_crop_center-center_82_line/dashboard_5.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2126_crop_center-center_82_line/dashboard_5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x886_crop_center-center_82_line/dashboard_5.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1772_crop_center-center_82_line/dashboard_5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x708_crop_center-center_82_line/dashboard_5.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1417_crop_center-center_82_line/dashboard_5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x531_crop_center-center_82_line/dashboard_5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x443_crop_center-center_82_line/dashboard_5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1063,\"3072\":2126,\"1280\":886,\"2560\":1772,\"1024\":708,\"2048\":1417,\"768\":531,\"640\":443},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6500\",\"originalImageHeight\":\"4500\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8An0u1tbmVxd3KwIo4+YKWPtmnavZ2lj5QguTKZCeCQeB9PrWfRtGc4Ga9BxlzXudnK73uf//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#9f4cb8\",\"#ebeeef\",\"#0b090d\",\"#595651\",\"#bca4d4\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":1063,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17071,17308,1,'dashboard','2021-05-18 01:18:11','2021-06-09 23:24:00','2ad89cd2-4e59-433f-8995-139d398b2963',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1063_crop_center-center_82_line/dashboard.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2126_crop_center-center_82_line/dashboard.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x886_crop_center-center_82_line/dashboard.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1772_crop_center-center_82_line/dashboard.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x708_crop_center-center_82_line/dashboard.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1417_crop_center-center_82_line/dashboard.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x531_crop_center-center_82_line/dashboard.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x443_crop_center-center_82_line/dashboard.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1063_crop_center-center_82_line/dashboard.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2126_crop_center-center_82_line/dashboard.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x886_crop_center-center_82_line/dashboard.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1772_crop_center-center_82_line/dashboard.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x708_crop_center-center_82_line/dashboard.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1417_crop_center-center_82_line/dashboard.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x531_crop_center-center_82_line/dashboard.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x443_crop_center-center_82_line/dashboard.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1063,\"3072\":2126,\"1280\":886,\"2560\":1772,\"1024\":708,\"2048\":1417,\"768\":531,\"640\":443},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6500\",\"originalImageHeight\":\"4500\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7OedUlCNKIQBkscDPsCeP8imi6UXEcYnjkVgTkcn9Pr+hq1TRFGH3hFDeuOaAP/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#f0f0f1\",\"#101011\",\"#9ea8aa\",\"#7c7c7c\",\"#848484\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":1063,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17072,17309,1,'howto_1','2021-05-18 01:18:33','2021-06-09 23:25:01','df7819d1-e081-49ed-b296-ef24bfbb69dc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/howto_1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2304_crop_center-center_82_line/howto_1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/howto_1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1920_crop_center-center_82_line/howto_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/howto_1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1536_crop_center-center_82_line/howto_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/howto_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/howto_1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/howto_1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2304_crop_center-center_82_line/howto_1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/howto_1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1920_crop_center-center_82_line/howto_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/howto_1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1536_crop_center-center_82_line/howto_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/howto_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/howto_1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"3072\":2304,\"1280\":960,\"2560\":1920,\"1024\":768,\"2048\":1536,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6000\",\"originalImageHeight\":\"4500\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ab4W0ez1UzG5MhaIj92DgEH9aseL9ItrG2tZrSFYk3GNgO/cfyNc/Y6hdac7vaSmJ3XaSADx+NRTzzXEhkuJXlc/xOxJros+a5ndWP//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#2c3c63\",\"#f1f2f2\",\"#060607\",\"#9099ac\",\"#94a6ae\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17073,17310,1,'howto_2','2021-05-18 01:18:54','2021-06-09 23:24:52','ec54b0fa-bb1d-4476-b278-0be0ae86d771',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/howto_2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2304_crop_center-center_82_line/howto_2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/howto_2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1920_crop_center-center_82_line/howto_2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/howto_2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1536_crop_center-center_82_line/howto_2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/howto_2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/howto_2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/howto_2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2304_crop_center-center_82_line/howto_2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/howto_2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1920_crop_center-center_82_line/howto_2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/howto_2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1536_crop_center-center_82_line/howto_2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/howto_2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/howto_2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"3072\":2304,\"1280\":960,\"2560\":1920,\"1024\":768,\"2048\":1536,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6000\",\"originalImageHeight\":\"4500\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6xI2muGQyMqhQQFwN3XPP5dPWnSQpbyJs4EgIOWJJI5HX2z+VRSo5kUpM8bcrlcdD25B9BSxW6RMWGWc9Xc5Y/iea8b2lNUOXl1YH//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d8f74c\",\"#0b0c0c\",\"#f2f3f3\",\"#b4bf8c\",\"#71736e\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17074,17311,1,'howto_3','2021-05-18 01:19:24','2021-06-09 23:24:35','2e19283e-a907-4d0a-b831-9425003e50a4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/howto_3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2304_crop_center-center_82_line/howto_3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/howto_3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1920_crop_center-center_82_line/howto_3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/howto_3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1536_crop_center-center_82_line/howto_3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/howto_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/howto_3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/howto_3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2304_crop_center-center_82_line/howto_3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/howto_3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1920_crop_center-center_82_line/howto_3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/howto_3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1536_crop_center-center_82_line/howto_3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/howto_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/howto_3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"3072\":2304,\"1280\":960,\"2560\":1920,\"1024\":768,\"2048\":1536,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6000\",\"originalImageHeight\":\"4500\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6O1t/tM7q8jAKoIVeN3XPP5dPWpLy2jtmjMY2h8qcsSSRyOvtmqjGRXDRSvGxBXK46H6j2oSJVYuSzuerucsfxrSzucPNFU7W1P/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#82d7cf\",\"#070909\",\"#f4f4f5\",\"#51555a\",\"#5c6c6c\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17075,17312,1,'howto_4','2021-05-18 01:19:46','2021-06-09 23:24:50','388f83d9-762b-4b00-83af-35a842de62a8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/howto_4.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2304_crop_center-center_82_line/howto_4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/howto_4.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1920_crop_center-center_82_line/howto_4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/howto_4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1536_crop_center-center_82_line/howto_4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/howto_4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/howto_4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/howto_4.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2304_crop_center-center_82_line/howto_4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/howto_4.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1920_crop_center-center_82_line/howto_4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/howto_4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1536_crop_center-center_82_line/howto_4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/howto_4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/howto_4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"3072\":2304,\"1280\":960,\"2560\":1920,\"1024\":768,\"2048\":1536,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6000\",\"originalImageHeight\":\"4500\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Av6Jp8F/JKJmf93ghFOAwPv1/Kptf06Gzjgkt4wiklGGc5PUdfxrKguZ7Vy1vK0TMNpIAPH40xmaRy8jvI5/ic5P51jdcp73sqjxHNzaI/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#f73b54\",\"#f2f2f3\",\"#0f0c0d\",\"#ae8891\",\"#b69cae\"],\"lightness\":58,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17076,17313,1,'howto_5','2021-05-18 01:20:10','2021-06-09 23:24:27','f6a937c5-678e-4512-ae97-cba689c48ad8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/howto_5.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2304_crop_center-center_82_line/howto_5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/howto_5.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1920_crop_center-center_82_line/howto_5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/howto_5.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1536_crop_center-center_82_line/howto_5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/howto_5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/howto_5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/howto_5.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2304_crop_center-center_82_line/howto_5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/howto_5.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1920_crop_center-center_82_line/howto_5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/howto_5.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1536_crop_center-center_82_line/howto_5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/howto_5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/howto_5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"3072\":2304,\"1280\":960,\"2560\":1920,\"1024\":768,\"2048\":1536,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6000\",\"originalImageHeight\":\"4500\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AvaHp0GoSS+cz5jwQinAYH36/lU3iHToLOO3kt4wiklGAOcnqOv41kwXU9q5e2laJmG0kAHj8ajdnkcvK7yOf4nOT+dd3LJ1L30OrlfPe5//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#a04dbc\",\"#f2f3f4\",\"#0a090b\",\"#543c5c\",\"#c494d4\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17077,17314,1,'howto','2021-05-18 01:20:30','2021-06-09 23:25:11','33aa6442-9486-4fcd-811b-68ab54f09df3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/howto.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2304_crop_center-center_82_line/howto.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/howto.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1920_crop_center-center_82_line/howto.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/howto.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1536_crop_center-center_82_line/howto.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/howto.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/howto.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/howto.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2304_crop_center-center_82_line/howto.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/howto.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1920_crop_center-center_82_line/howto.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/howto.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1536_crop_center-center_82_line/howto.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/howto.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/howto.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"3072\":2304,\"1280\":960,\"2560\":1920,\"1024\":768,\"2048\":1536,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6000\",\"originalImageHeight\":\"4500\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7NxLJdNH5rIgQMAoALdc8/l09aVY1gmUAnEgI+ZiSSOR19s/lSXERkkQrNJG3IymM4PUcg+gp0FrFASygs56ux3MfxPNAH//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#f5f5f5\",\"#0d0d0e\",\"#9e9fa5\",\"#7c7c81\",\"#848484\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17078,17315,1,'review_1','2021-05-18 01:20:54','2021-06-09 23:17:00','152f4e7a-8993-40d6-8f3b-cedb652df3db',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/review_1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2304_crop_center-center_82_line/review_1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/review_1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1920_crop_center-center_82_line/review_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/review_1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1536_crop_center-center_82_line/review_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/review_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/review_1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/review_1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2304_crop_center-center_82_line/review_1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/review_1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1920_crop_center-center_82_line/review_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/review_1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1536_crop_center-center_82_line/review_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/review_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/review_1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"3072\":2304,\"1280\":960,\"2560\":1920,\"1024\":768,\"2048\":1536,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6000\",\"originalImageHeight\":\"4500\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ah8M6Lb6v9o89pV8rbjYwHXPqD6UvifRLfR/s32dpW83dnzGB6Y9APWsi3u7m13fZriWHd97y3K5/Ki4vLm62/abiWbb93zHLY/OuizvcyurH/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#2d3d63\",\"#f2f3f3\",\"#131316\",\"#85cecf\",\"#9499ac\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17079,17316,1,'review_2','2021-05-18 01:21:14','2021-06-09 23:17:03','66e6f39d-4207-41e7-84b5-802d1c621a29',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/review_2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2304_crop_center-center_82_line/review_2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/review_2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1920_crop_center-center_82_line/review_2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/review_2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1536_crop_center-center_82_line/review_2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/review_2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/review_2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/review_2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2304_crop_center-center_82_line/review_2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/review_2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1920_crop_center-center_82_line/review_2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/review_2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1536_crop_center-center_82_line/review_2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/review_2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/review_2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"3072\":2304,\"1280\":960,\"2560\":1920,\"1024\":768,\"2048\":1536,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6000\",\"originalImageHeight\":\"4500\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A61FaWd0DFQqqeMd8+x9KdJGYZVXczBgT82O2PQe9MaMM27LqcYyrlc/lQqBTnc7H/act/OvC9pS9ly8vvdwP/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d9f84d\",\"#f0f2f4\",\"#171813\",\"#b4bf85\",\"#717484\"],\"lightness\":60,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17080,17317,1,'review_3','2021-05-18 01:21:38','2021-06-09 23:16:50','a94788d9-728b-4094-8f12-da4a812d01ad',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/review_3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2304_crop_center-center_82_line/review_3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/review_3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1920_crop_center-center_82_line/review_3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/review_3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1536_crop_center-center_82_line/review_3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/review_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/review_3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/review_3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2304_crop_center-center_82_line/review_3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/review_3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1920_crop_center-center_82_line/review_3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/review_3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1536_crop_center-center_82_line/review_3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/review_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/review_3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"3072\":2304,\"1280\":960,\"2560\":1920,\"1024\":768,\"2048\":1536,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6000\",\"originalImageHeight\":\"4500\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6O1g+0zSIWZQiqflI759QfSnXdv9mkRQzMGBPzY7Y9B71Bj5tys6k8Ha5XP5UvOcs7se29y2PzrTW55/NDktbU//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#83d8d0\",\"#151317\",\"#f5f5f5\",\"#585f70\",\"#747c7c\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17081,17318,1,'review_4','2021-05-18 01:21:57','2021-06-09 23:17:06','3f27464c-f756-4aeb-b2bf-0abf21c93b33',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/review_4.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2304_crop_center-center_82_line/review_4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/review_4.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1920_crop_center-center_82_line/review_4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/review_4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1536_crop_center-center_82_line/review_4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/review_4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/review_4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/review_4.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2304_crop_center-center_82_line/review_4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/review_4.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1920_crop_center-center_82_line/review_4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/review_4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1536_crop_center-center_82_line/review_4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/review_4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/review_4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"3072\":2304,\"1280\":960,\"2560\":1920,\"1024\":768,\"2048\":1536,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6000\",\"originalImageHeight\":\"4500\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AvaNp0eotMJGdfLC42kDrn1B9KXWtNi05oRE0jCTdneQemPQD1rPjmlhJMUskeeuxyufyokmlmx500kmOm9y2PzrC6tY+i9lV9tz83u9j/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#f83c54\",\"#f1f3f4\",\"#1a1717\",\"#a78695\",\"#949cac\"],\"lightness\":59,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17082,17319,1,'review_5','2021-05-18 01:22:21','2021-06-09 23:17:09','d6d69f08-1f4b-4799-952f-2f1c545b8aed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/review_5.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2304_crop_center-center_82_line/review_5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/review_5.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1920_crop_center-center_82_line/review_5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/review_5.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1536_crop_center-center_82_line/review_5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/review_5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/review_5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/review_5.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2304_crop_center-center_82_line/review_5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/review_5.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1920_crop_center-center_82_line/review_5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/review_5.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1536_crop_center-center_82_line/review_5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/review_5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/review_5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"3072\":2304,\"1280\":960,\"2560\":1920,\"1024\":768,\"2048\":1536,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6000\",\"originalImageHeight\":\"4500\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AuaLpseotMJGdfL242EDrn1B9KXW9Mi00w+U0jeZuzvIPTHoB61nxTSwk+TNJHnrscrn8qJZ5psedNJJjpvctj867+WXPe+h18sua99D/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#a14dbd\",\"#f0f3f4\",\"#161518\",\"#4c5464\",\"#b48ccc\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `content` VALUES (17083,17320,1,'review','2021-05-18 01:22:53','2021-06-09 23:16:58','05363fa2-e820-4fdf-a3af-614da88e129f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/review.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2304_crop_center-center_82_line/review.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/review.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1920_crop_center-center_82_line/review.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/review.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1536_crop_center-center_82_line/review.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/review.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/review.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/review.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2304_crop_center-center_82_line/review.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/review.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1920_crop_center-center_82_line/review.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/review.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1536_crop_center-center_82_line/review.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/review.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/review.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"3072\":2304,\"1280\":960,\"2560\":1920,\"1024\":768,\"2048\":1536,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6000\",\"originalImageHeight\":\"4500\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7VjI9w0asVCqDxjuT7H0pwDpMFZiwKk847Y9B70SQJI247g2MZVyv8qWOFYzkFiemWct/OgD/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#f6f6f6\",\"#19191a\",\"#a2b2b4\",\"#7c7c7c\",\"#848484\"],\"lightness\":58,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17084,17321,1,'695271024','2021-05-18 01:23:16','2021-06-09 23:21:09','489b7699-e73d-4c03-9de7-4be38d34d243',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/695271024.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/695271024.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/695271024.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/695271024.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/695271024.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/695271024.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/695271024.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/695271024.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/695271024.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/695271024.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1920\",\"originalImageHeight\":\"1080\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A0Rlo/wB0RuHb1qvaXRuHkDoQAAeoIB6YpY6oaN0uP94V4UIJ0Ztra34nc5NTSP/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dda611\",\"#374a63\",\"#b583a2\",\"#886545\",\"#6f4428\"],\"lightness\":43,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17085,17322,1,'539926774','2021-05-18 01:23:18','2021-06-09 23:21:40','3b9ea73d-a46d-40ed-9fdb-1fdede34b28f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/539926774.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/539926774.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/539926774.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/539926774.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/539926774.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/539926774.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/539926774.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/539926774.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/539926774.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/539926774.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1920\",\"originalImageHeight\":\"1080\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7x9+5dvTvWNotzeTXr/aC7I6F+c4ByMY/A/pW5SDrUta3uB//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#f1f3e8\",\"#b0c86a\",\"#2a311e\",\"#6f7b4e\",\"#595f47\"],\"lightness\":57,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17086,17323,1,'602857754','2021-05-18 01:23:20','2021-06-09 23:21:09','51e07569-8010-445e-8d6c-7d899f488a14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/602857754.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/602857754.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/602857754.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/602857754.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/602857754.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/602857754.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/602857754.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/602857754.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/602857754.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/602857754.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1920\",\"originalImageHeight\":\"1080\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AlTUIUuWkM5ZXYqATwPQdcD61Kl9MsyG4FtHAzFeJ1Lk9sc49K5yP/Wp9RVrW/wDj3g/66D+VS4KLCE3NXP/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#233133\",\"#bca990\",\"#f1f5f5\",\"#654d3c\",\"#725c42\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17087,17324,1,'556095585','2021-05-18 01:23:22','2021-06-09 23:21:05','749e564b-ae63-4210-aa53-046ca3b62853',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/556095585.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/556095585.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/556095585.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/556095585.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/556095585.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/556095585.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/556095585.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/556095585.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/556095585.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/556095585.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1920\",\"originalImageHeight\":\"1080\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Agtk059zoXtnXpvPDfr7U++ktoraBopwz7jv8t+WGD7kVjTfw/Wi2/wBc1aX1M4x00P/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#2e5363\",\"#e2c0bb\",\"#72b0b6\",\"#52a0c1\",\"#1d1819\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17088,17325,1,'539004679','2021-05-18 01:23:24','2021-06-09 23:21:40','9a2d92c4-ed31-4d8b-ade2-a38358d2023e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/539004679.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/539004679.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/539004679.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/539004679.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/539004679.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/539004679.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/539004679.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/539004679.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/539004679.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/539004679.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1920\",\"originalImageHeight\":\"1080\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7qfzguYcEgE4Pc9qp6XNfTNJ9rTao6Erg5rRooFbW5//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#70b9a0\",\"#eff6f4\",\"#182e26\",\"#286854\",\"#2c644c\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17089,17326,1,'548056278','2021-05-18 01:23:26','2021-06-09 23:21:24','7cccd85c-1543-48eb-9227-a6a7e4bcc5fc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/548056278.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/548056278.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/548056278.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/548056278.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/548056278.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/548056278.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/548056278.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/548056278.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/548056278.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/548056278.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1920\",\"originalImageHeight\":\"1080\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A1dKitZLa4e5Cs6/cDMR+lOvoLaPTEeMIJ94VgGyRwayqK4+ZctrHPzaWsf/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#64994a\",\"#e7e9e5\",\"#434444\",\"#dfca4d\",\"#a3db89\"],\"lightness\":57,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17090,17327,1,'544940887','2021-05-18 01:23:28','2021-06-09 23:21:11','95e176bd-ee32-44b5-b33f-44553d9dc670',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/544940887.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/544940887.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/544940887.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/544940887.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/544940887.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/544940887.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/544940887.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/544940887.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/544940887.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/544940887.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1920\",\"originalImageHeight\":\"1080\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7i5eZAnkpuyTn2+Ukfrii2eZw/nJtwRj3+UE/rmpxQaVtRWP/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#62ab4a\",\"#f4faf0\",\"#bddcb0\",\"#cd403c\",\"#d4b092\"],\"lightness\":68,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17091,17328,1,'551528308','2021-05-18 01:23:30','2021-06-09 23:21:05','9f5a93f6-412b-4df2-a2e4-26a4a02f3a43',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/551528308.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/551528308.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/551528308.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/551528308.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/551528308.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/551528308.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/551528308.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/551528308.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1280\",\"originalImageHeight\":\"720\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5JFhKDcxDd+T/hRIIlHyZJPfdx/KoqK7LanPc//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#05234b\",\"#a19651\",\"#628b56\",\"#486844\",\"#272612\"],\"lightness\":31,\"placeholderWidth\":1280,\"placeholderHeight\":720,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17092,17329,1,'532507435','2021-05-18 01:23:31','2021-06-09 23:21:39','a90cac1b-d1ca-4bf4-a660-91360b6cad7e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/532507435.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/532507435.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/532507435.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/532507435.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/532507435.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/532507435.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/532507435.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/532507435.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1280\",\"originalImageHeight\":\"720\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A71y4HyKpPucf0pV3EfMAD7HNLRQB/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#2c424c\",\"#eef4f4\",\"#93bccd\",\"#849498\",\"#849c9c\"],\"lightness\":58,\"placeholderWidth\":1280,\"placeholderHeight\":720,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17093,17330,1,'437038080','2021-05-18 01:23:33','2021-06-09 23:21:37','6ce403cf-661b-447c-81e7-5f2792c0383e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/437038080.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/437038080.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/437038080.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/437038080.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/437038080.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/437038080.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/437038080.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/437038080.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1280\",\"originalImageHeight\":\"720\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6O6vY4YN5V8YzkIfrUdg4aHfKGVpCXAb0zxTpP8AkHr9B/KoI+9YyikaRk3qf//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ddc8aa\",\"#5d5745\",\"#eaede7\",\"#868778\",\"#7a796e\"],\"lightness\":62,\"placeholderWidth\":1280,\"placeholderHeight\":720,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17094,17331,1,'543288836','2021-05-18 01:23:35','2021-06-09 23:21:35','d8f6745d-7399-477f-83bb-41bb1395ba7b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/543288836.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/543288836.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/543288836.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/543288836.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/543288836.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/543288836.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/543288836.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/543288836.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/543288836.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/543288836.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1920\",\"originalImageHeight\":\"1080\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6mGNTZh0gSWTPRu/NF5BElqXWBY33jp16isuf7j1BF/rU+tXbUzvof/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c8d5d9\",\"#344f65\",\"#70889e\",\"#64595d\",\"#6c6c6c\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17095,17332,1,'482742662','2021-05-18 01:23:37','2021-06-09 23:21:37','9b0148bc-fe40-4631-b7a3-9716d1855cba',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/482742662.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/482742662.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/482742662.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/482742662.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/482742662.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/482742662.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/482742662.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/482742662.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1280\",\"originalImageHeight\":\"720\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3UjQ6Kz4+Yd/+BVnjHlMT97Ix9Of/rU3+GgdK7VGx5Lle2h//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#51b0cd\",\"#deeff2\",\"#f6c90c\",\"#52aa9f\",\"#57a888\"],\"lightness\":63,\"placeholderWidth\":1280,\"placeholderHeight\":720,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17096,17333,1,'543288973','2021-05-18 01:23:39','2021-06-09 23:21:25','e43d9553-1adf-4f4e-a7ae-5740e2f8f947',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/543288973.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/543288973.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/543288973.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/543288973.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/543288973.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/543288973.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/543288973.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/543288973.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/543288973.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/543288973.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1920\",\"originalImageHeight\":\"1080\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AuW9/C2x3kKMBtMYGck55/lUqwxrO7JPl2yWi5wDxzzXPQf6+P/eFatt/yFrv6CuiUEndGMJtqzP/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#9aa7bd\",\"#3a6f9c\",\"#2e2327\",\"#f2d5d0\",\"#b66343\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17097,17334,1,'IMG_6613','2021-05-18 01:23:41','2021-06-09 23:14:32','f66a1c73-9e51-454e-9ccc-f48dd783829b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/IMG_6613.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/IMG_6613.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/IMG_6613.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/IMG_6613.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/IMG_6613.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/IMG_6613.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/IMG_6613.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/IMG_6613.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1367\",\"originalImageHeight\":\"1367\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ax7fRRcRxuZyqyAMecArkj+lD6E4lVA6FWPLA5A/zg1fhureLTVgj3ebsI3YHFV9XnjkA8tyZwysXThenOB9axvdbmt1of//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#caaa9a\",\"#352b1a\",\"#97aaa0\",\"#886446\",\"#486c95\"],\"lightness\":48,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17098,17335,1,'IMG_1591','2021-05-18 01:23:44','2021-06-09 23:15:16','23ed9053-4ec3-40ff-95bf-468f3639ad5c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/IMG_1591.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/IMG_1591.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/IMG_1591.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2048_crop_center-center_82_line/IMG_1591.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/IMG_1591.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/IMG_1591.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/IMG_1591.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/IMG_1591.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/IMG_1591.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2048_crop_center-center_82_line/IMG_1591.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/IMG_1591.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/IMG_1591.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"1024\":1024,\"2048\":2048,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2445\",\"originalImageHeight\":\"2445\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6a6LC0kKOVbH3hjI/OjS2aW1XdKZWGfmOASPwrKe5e5uAsv3FPyFM4De/rWhaTRx53MqccZbGfpQB//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d1d1d1\",\"#5b5b5b\",\"#9d9d9d\",\"#848484\",\"#8c8c8c\"],\"lightness\":59,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17099,17336,1,'IMG_4847','2021-05-18 01:23:51','2021-06-09 23:14:58','a1920a06-a1ee-47f4-af84-797d6bee736d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/IMG_4847.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x3072_crop_center-center_82_line/IMG_4847.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/IMG_4847.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x2560_crop_center-center_82_line/IMG_4847.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/IMG_4847.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2048_crop_center-center_82_line/IMG_4847.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/IMG_4847.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/IMG_4847.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/IMG_4847.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x3072_crop_center-center_82_line/IMG_4847.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/IMG_4847.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x2560_crop_center-center_82_line/IMG_4847.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/IMG_4847.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2048_crop_center-center_82_line/IMG_4847.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/IMG_4847.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/IMG_4847.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"3072\":3072,\"1280\":1280,\"2560\":2560,\"1024\":1024,\"2048\":2048,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3179\",\"originalImageHeight\":\"3179\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AlV44FjDnb5jBAfQnvUiQ7LVEdtzhRuJJ/rWPrN3HEIAHZZFycAA8H6/SptIuJQ81vOF3qoIAGMe2KYj/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#919499\",\"#211d21\",\"#38404e\",\"#bdcbd9\",\"#414d5a\"],\"lightness\":40,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17100,17337,1,'IMG_5326','2021-05-18 01:24:00','2021-06-09 23:14:55','3aea02c8-cfa0-40d9-b618-94c1e1365e4a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/IMG_5326.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/IMG_5326.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x2560_crop_center-center_82_line/IMG_5326.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/IMG_5326.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2048_crop_center-center_82_line/IMG_5326.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/IMG_5326.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/IMG_5326.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/IMG_5326.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/IMG_5326.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x2560_crop_center-center_82_line/IMG_5326.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/IMG_5326.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2048_crop_center-center_82_line/IMG_5326.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/IMG_5326.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/IMG_5326.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"2560\":2560,\"1024\":1024,\"2048\":2048,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3024\",\"originalImageHeight\":\"3024\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Aguori3tkuTeLIWT53znZ6cc9fatvQ9abNv8AaiGj8raso43c9T9MVkhhNAlssQ2CTe2BnjBGMenNPP7mH7OEG3zC6N0IBHI/Okr+z5iOZH//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#647960\",\"#dfd0c6\",\"#849ecc\",\"#1f2430\",\"#acc5d8\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17101,17338,1,'Andrew dark','2021-05-18 01:24:09','2021-06-09 23:25:36','c1499371-50da-4617-802b-fd8c856b67f1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Andrew-dark.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Andrew-dark.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Andrew-dark.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Andrew-dark.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"800\",\"originalImageHeight\":\"800\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5HQ9NGp3hjdmSJVLMyjJHpxUOo2i2kwVH3qQSDjHerOiSrZX4llcqu0g4Gfpn8aqXh82UFSSAMc9Pwpa3L05fM//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c38d79\",\"#0b0a0a\",\"#5e3b30\",\"#7c645c\",\"#7c5c5c\"],\"lightness\":35,\"placeholderWidth\":768,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17102,17339,1,'Bec dark','2021-05-18 01:24:10','2021-06-09 23:25:16','140fe597-debf-4b62-87be-87b597c5677a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Bec-dark.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Bec-dark.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Bec-dark.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Bec-dark.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"800\",\"originalImageHeight\":\"800\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A4OOPefarN/ZrbpDLG5ZJBzkfdPpnvUEJOCAORzT55S8EcYYkKSSPQ0upWlj/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#0d0909\",\"#ae7766\",\"#5d3b30\",\"#7c6c5c\",\"#7c5c5c\"],\"lightness\":29,\"placeholderWidth\":768,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17103,17340,1,'Cathy dark','2021-05-18 01:24:11','2021-06-09 23:25:30','dde57f86-4b16-4cdf-b0e6-6698e4924822',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Cathy-dark.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Cathy-dark.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Cathy-dark.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Cathy-dark.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"800\",\"originalImageHeight\":\"800\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5fw/paajcSebyka52g43HBqnqdulteyRR8KpIx6c1t6Oo0e/EN8wiO3duJ4yRwP1NZ2sC3aYtBOJcksT9ai75jSy5fM//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#bc8f78\",\"#0c0a08\",\"#5c3c2c\",\"#7c6c5c\",\"#746464\"],\"lightness\":34,\"placeholderWidth\":768,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17104,17341,1,'Elliot dark','2021-05-18 01:24:13','2021-06-09 23:24:24','7c695dce-99d5-4639-acf9-dfe94a23b1e7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Elliot-dark.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Elliot-dark.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Elliot-dark.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Elliot-dark.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"800\",\"originalImageHeight\":\"800\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5bw/pkWp3bpOXWNFySik/wAqp6jbpbXbxxsWQHgkYzV3w3eHT9SWdnKRMpV/cEf41U1BzcXLyqcjtxilrcvTlP/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#cca08f\",\"#0a0909\",\"#5c3a31\",\"#7c7474\",\"#7c6c6c\"],\"lightness\":38,\"placeholderWidth\":768,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17105,17342,1,'Hazel','2021-05-18 01:24:14','2021-06-09 23:25:09','16b2769f-877a-4e08-87e1-471eec574019',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Hazel.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Hazel.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Hazel.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Hazel.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"800\",\"originalImageHeight\":\"800\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5y0soXCtKWfIJ2p1GKW6sIRuaFmUABtr9ee1NFyLO6jkxny8nHuaPO+0XLzEkJIRgH1rn13N1y8ux//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#36280d\",\"#b67658\",\"#864d33\",\"#9c6e5c\",\"#947c5c\"],\"lightness\":35,\"placeholderWidth\":768,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17106,17343,1,'Jonno dark','2021-05-18 01:24:16','2021-06-09 23:15:46','2ca59d48-648d-40af-85ed-035b83f6f460',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Jonno-dark.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Jonno-dark.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Jonno-dark.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Jonno-dark.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"800\",\"originalImageHeight\":\"800\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5LQdOTVNQ8iRyiBCxIUse3b8arahbra3TxoxZB0JGMirOku+n30dyzFVXIbHPBGKq3p825d1IZc4BGcY/Gp1uVpy+Z//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c99582\",\"#0b0a09\",\"#5b3a2e\",\"#7c6454\",\"#745854\"],\"lightness\":36,\"placeholderWidth\":768,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17107,17344,1,'Julia dark','2021-05-18 01:24:17','2021-06-09 23:15:48','e9d05946-8721-45f5-986c-079d4b1635f3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Julia-dark.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Julia-dark.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Julia-dark.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Julia-dark.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"800\",\"originalImageHeight\":\"800\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5zw9pdveLLPdkmNAQqj196r6rZwxZeEbCDhk9KveHpEgPkyvhXyc44ycDB9sc/hUOsxpCzotwJGbkmo15jWy5D//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#b58772\",\"#151112\",\"#6b4734\",\"#826e5a\",\"#4e4c65\"],\"lightness\":35,\"placeholderWidth\":768,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17108,17345,1,'Julia','2021-05-18 01:24:19','2021-06-09 23:15:48','4a3e985a-17ad-4fd1-aaf1-4b88efc42dc9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Julia.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Julia.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Julia.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Julia.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"800\",\"originalImageHeight\":\"800\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6e7uPLcRBipIzkDJqnpGqNdXEltIcsg3A9CRWJc6/b3upoxUxQpkByc7vqOwrM/tZdI1Fri1lS4Y8FdpChfSp97mHyx9n5n/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#322836\",\"#cdd4cc\",\"#835642\",\"#a97c64\",\"#808482\"],\"lightness\":46,\"placeholderWidth\":768,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17109,17346,1,'Kate dark','2021-05-18 01:24:20','2021-06-09 23:15:55','b6592b0d-d16c-46dd-adc5-0f3541172200',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Kate-dark.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Kate-dark.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Kate-dark.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Kate-dark.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"800\",\"originalImageHeight\":\"800\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A4qzgWXORuY/Kg9TUNxE0MrIwAYcEeldLe6DcabcWxtI2lUBSW6/N3qG98OXMdnc3Ny6+YnzKqc5HfP4UtblaWP/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#b5aaaa\",\"#130c09\",\"#5c423a\",\"#7c7c7c\",\"#7a747c\"],\"lightness\":39,\"placeholderWidth\":768,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17110,17347,1,'Kimi Copy','2021-05-18 01:24:22','2021-06-21 04:38:35','fbbcec9a-507f-48cf-a9a1-38d956fdd91c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Kimi-Copy.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Kimi-Copy.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Kimi-Copy.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Kimi-Copy.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"800\",\"originalImageHeight\":\"800\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A4vTbF9QuvIjIBxnJzj9BUFxEYZSh7frVrTriSwb7VFgsDgqehHcVBcFnxIwxu5HtSvqVbQ//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#0c0806\",\"#bc9080\",\"#553025\",\"#604c54\",\"#746c64\"],\"lightness\":30,\"placeholderWidth\":768,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17111,17348,1,'Liz dark','2021-05-18 01:24:23','2021-06-21 04:38:49','98dc4f38-075c-4f8e-94a5-19e556afa441',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Liz-dark.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Liz-dark.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Liz-dark.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Liz-dark.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"800\",\"originalImageHeight\":\"800\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A4uxgW4nCOQASBknAFRXcDW1w8TdVJHTGafbyvbOksZw6ncKLyZru5eZhjcc4zmlrcrSx/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#0d0a09\",\"#b2826e\",\"#613c30\",\"#765e5c\",\"#7c6c5c\"],\"lightness\":30,\"placeholderWidth\":768,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17112,17349,1,'Nick dark','2021-05-18 01:24:25','2021-06-21 04:38:14','4aac253d-a082-4c42-ae6c-f5a5ff35c269',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Nick-dark.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Nick-dark.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Nick-dark.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Nick-dark.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"800\",\"originalImageHeight\":\"800\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A4/RNOXU74wPIUUIWJCk/oPrTNVsVsbkIjl0YZBK4q94fD2N8l1I22MqVIHJII7/ofwpmsJ9qu90UocIu0ddp+lLW5WnKf//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ba9080\",\"#0b0b0c\",\"#554946\",\"#646b78\",\"#737d86\"],\"lightness\":37,\"placeholderWidth\":768,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17113,17350,1,'Scott dark','2021-05-18 01:24:26','2021-06-09 23:17:17','5923fcae-cd1d-4c67-bd93-58a54f1e9d00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Scott-dark.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Scott-dark.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Scott-dark.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Scott-dark.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"800\",\"originalImageHeight\":\"800\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A4/RbCPUb3yppfKjCli2M+wH5moL2BYJmWNiyA43eta2jW3k3Mm0sztHhcDPOQc/pWfqdvNFcYlJJYbvY5pWdytOU/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#b69083\",\"#0f0d10\",\"#5e3f35\",\"#7b6d7c\",\"#7a6c72\"],\"lightness\":36,\"placeholderWidth\":768,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17114,17351,1,'Suz dark','2021-05-18 01:24:28','2021-06-09 23:17:44','250cc6c7-3c5f-41de-94d8-7d8161a1821a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Suz-dark.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Suz-dark.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Suz-dark.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Suz-dark.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"800\",\"originalImageHeight\":\"800\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5LRdPXUb5YpGKxk8kDJ6E/0qHVbRbK+kgRiyqeCRjNafh5YrcrczSyIS3y7RkenI/OmaxFDdTSTQu+7k4Zcfy6VOvMXZcvmf/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c59986\",\"#0e0b0a\",\"#65473b\",\"#827f7d\",\"#7c747c\"],\"lightness\":39,\"placeholderWidth\":768,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17115,17352,1,'Tilly dark','2021-05-18 01:24:29','2021-06-09 23:17:50','ce1d3202-d233-4bf0-a3ef-6950c283760e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Tilly-dark.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Tilly-dark.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Tilly-dark.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Tilly-dark.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"800\",\"originalImageHeight\":\"800\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5XQtKXUnnaVykcKbiQM81SvIBBJtGRyQQa6DwvbT/Zd652zSFcDuoHNN1nQmxM8b/PESTuPL5xWfN7xpyrlP/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1e1510\",\"#b7937b\",\"#80756e\",\"#786c6c\",\"#8e544c\"],\"lightness\":37,\"placeholderWidth\":768,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17116,17353,1,'IMG_3412','2021-05-18 01:24:31','2021-06-09 23:15:28','4b08974e-9d90-4696-a34d-1b6b2bd650e3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/IMG_3412.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/IMG_3412.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/IMG_3412.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/IMG_3412.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/IMG_3412.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/IMG_3412.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/IMG_3412.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/IMG_3412.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/IMG_3412.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/IMG_3412.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2008\",\"originalImageHeight\":\"2008\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Afa2kNsDl1cHBVimCfXFWbmGOTY2CyKcbVXnGPY1W02OGfUY3NunluhAVjuYEc5zXROEIwiKpHdV5rFvsdGq0Z//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d1beaa\",\"#50332f\",\"#5f5c51\",\"#ba6b6e\",\"#bd5e33\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17117,17354,1,'IMG_3667','2021-05-18 01:24:36','2021-06-09 23:15:33','08519f91-6e0d-4a42-8d07-329895df8c50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/IMG_3667.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/IMG_3667.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/IMG_3667.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2048_crop_center-center_82_line/IMG_3667.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/IMG_3667.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/IMG_3667.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/IMG_3667.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/IMG_3667.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/IMG_3667.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2048_crop_center-center_82_line/IMG_3667.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/IMG_3667.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/IMG_3667.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"1024\":1024,\"2048\":2048,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2130\",\"originalImageHeight\":\"2130\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A1vDckt3vurjasT5CIRgNzyR+NUtb1e6SWVIiUETFcgAFwf0/Gsj+3gtjFHax7JkODuGVxj/Gq91e8oVJeKWMnDclPmPAPpwKlNvcpo//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#413938\",\"#e2dfd5\",\"#b5a27f\",\"#9ca0b6\",\"#8c857a\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17118,17355,1,'Suz2','2021-05-18 01:24:41','2021-06-09 23:17:46','e64ead50-a7b7-40f1-98c7-6a9ca9268ef2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Suz2.jpg\"},\"optimizedWebPImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Suz2.jpg.webp\"},\"variantSourceWidths\":[\"640\"],\"variantHeights\":{\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"750\",\"originalImageHeight\":\"750\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AtaMujPpMpRAIwN0pYYIOO1ZRFsNOld0lJcExMDhgvbI7020sbe20syy3ZWVgHePAIC9gR69KqzXH2q12bQUClRsUKSPWqhFvRGzSiryP/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#3c2c42\",\"#e0b6bc\",\"#6f68bc\",\"#9b5b71\",\"#a7a495\"],\"lightness\":50,\"placeholderWidth\":640,\"placeholderHeight\":640,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17119,17356,1,'Suz1','2021-05-18 01:24:42','2021-06-09 23:17:45','db49c929-d425-4a3c-99b1-1bb95df77607',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Suz1.jpg\"},\"optimizedWebPImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Suz1.jpg.webp\"},\"variantSourceWidths\":[\"640\"],\"variantHeights\":{\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"750\",\"originalImageHeight\":\"750\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5yytZLqXy4yAIxlumTn0qhqVrcWtwVuInj3ZKh/Sr+hXT296t0uNq4V8jPBpfEeppqE6MqkBF2gk89aqN07Gs2nqf//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1b1029\",\"#cc9d88\",\"#70353c\",\"#866d7e\",\"#7c8474\"],\"lightness\":37,\"placeholderWidth\":640,\"placeholderHeight\":640,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17120,17357,1,'Suz3','2021-05-18 01:24:45','2021-06-09 23:17:40','fb80f379-3faf-4812-85fd-8f685f79685d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Suz3.jpg\"},\"optimizedWebPImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Suz3.jpg.webp\"},\"variantSourceWidths\":[\"640\"],\"variantHeights\":{\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"750\",\"originalImageHeight\":\"750\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3L7UY7C6WK3RZXkBIVjgDAqK31MxpHJezwgSMTsLDfH6AgfzPrWE+nS6rKjzTQrIy+YwiwBGOoH48VUsr/TVsLoToCS53bmy8jY+8M++aTnFrRG6o23Z/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dac2c3\",\"#281730\",\"#872e3e\",\"#a06f7f\",\"#a15e45\"],\"lightness\":47,\"placeholderWidth\":640,\"placeholderHeight\":640,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17121,17358,1,'_T5A1116','2021-05-18 01:24:46','2021-06-09 23:17:46','9adacf91-b445-402b-878e-49b5a8feac48',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/T5A1116.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/T5A1116.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/T5A1116.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/T5A1116.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/T5A1116.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/T5A1116.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/T5A1116.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/T5A1116.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/T5A1116.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/T5A1116.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/T5A1116.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/T5A1116.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"1280\":853,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2500\",\"originalImageHeight\":\"1667\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5KJk3fOSBjsKdNtRmUDLA8HtioPSp70AXTgDHT+VTYd9D//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#222117\",\"#dbb8a1\",\"#bb846c\",\"#6f4728\",\"#868471\"],\"lightness\":42,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17122,17359,1,'IMG_1439','2021-05-18 01:24:51','2021-06-09 23:15:11','1c42a074-d3b3-45d7-90cd-ddea0396f486',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1023_crop_center-center_82_line/IMG_1439.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2046_crop_center-center_82_line/IMG_1439.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x852_crop_center-center_82_line/IMG_1439.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1705_crop_center-center_82_line/IMG_1439.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/IMG_1439.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1364_crop_center-center_82_line/IMG_1439.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x511_crop_center-center_82_line/IMG_1439.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/IMG_1439.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1023_crop_center-center_82_line/IMG_1439.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2046_crop_center-center_82_line/IMG_1439.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x852_crop_center-center_82_line/IMG_1439.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1705_crop_center-center_82_line/IMG_1439.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/IMG_1439.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1364_crop_center-center_82_line/IMG_1439.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x511_crop_center-center_82_line/IMG_1439.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/IMG_1439.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1023,\"3072\":2046,\"1280\":852,\"2560\":1705,\"1024\":682,\"2048\":1364,\"768\":511,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"5153\",\"originalImageHeight\":\"3433\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Aty6u9hlZpriMykDe7jr6j5ahh11pJxCl5cF3yB8y/wDxNc7rbuz4ZiQoOAT05FV7ckajZkEg4HNaOOpCelz/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#43515d\",\"#dbe3e8\",\"#a6bacc\",\"#938b8c\",\"#87a2c8\"],\"lightness\":60,\"placeholderWidth\":1536,\"placeholderHeight\":1023,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17123,17360,1,'IMG_8167-EFFECTS','2021-05-18 01:25:11','2021-06-09 23:14:34','a39912e4-ef0d-4ab5-8247-6b58fed5613c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1155_crop_center-center_82_line/IMG_8167-EFFECTS.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2311_crop_center-center_82_line/IMG_8167-EFFECTS.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x963_crop_center-center_82_line/IMG_8167-EFFECTS.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1926_crop_center-center_82_line/IMG_8167-EFFECTS.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x770_crop_center-center_82_line/IMG_8167-EFFECTS.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1540_crop_center-center_82_line/IMG_8167-EFFECTS.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x577_crop_center-center_82_line/IMG_8167-EFFECTS.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x481_crop_center-center_82_line/IMG_8167-EFFECTS.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1155_crop_center-center_82_line/IMG_8167-EFFECTS.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2311_crop_center-center_82_line/IMG_8167-EFFECTS.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x963_crop_center-center_82_line/IMG_8167-EFFECTS.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1926_crop_center-center_82_line/IMG_8167-EFFECTS.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x770_crop_center-center_82_line/IMG_8167-EFFECTS.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1540_crop_center-center_82_line/IMG_8167-EFFECTS.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x577_crop_center-center_82_line/IMG_8167-EFFECTS.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x481_crop_center-center_82_line/IMG_8167-EFFECTS.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1155,\"3072\":2311,\"1280\":963,\"2560\":1926,\"1024\":770,\"2048\":1540,\"768\":577,\"640\":481},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3764\",\"originalImageHeight\":\"2832\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AWHV7UxiQQNFgkAOTn+VPbxDaxqyrGwYjPU81nIqsBlFOM44qQxx/MRGoYDggc1d533JtHsf/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#6b6e6f\",\"#cfcccd\",\"#8aa8d0\",\"#1e1c12\",\"#b1c4dd\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":1155,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17124,17361,1,'NZ0008','2021-05-18 01:25:19','2021-06-21 04:39:23','88fefd58-cae9-429d-9c59-f66ac202df2b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1023_crop_center-center_82_line/NZ0008.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2047_crop_center-center_82_line/NZ0008.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/NZ0008.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1706_crop_center-center_82_line/NZ0008.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/NZ0008.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/NZ0008.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x511_crop_center-center_82_line/NZ0008.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/NZ0008.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1023_crop_center-center_82_line/NZ0008.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2047_crop_center-center_82_line/NZ0008.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/NZ0008.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1706_crop_center-center_82_line/NZ0008.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/NZ0008.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/NZ0008.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x511_crop_center-center_82_line/NZ0008.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/NZ0008.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1023,\"3072\":2047,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1365,\"768\":511,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"4583\",\"originalImageHeight\":\"3055\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AoTW0hZHluGf5myXG7PHA5/GpGt5YUVhH8qjk4wBVWEkyoCT3/ka7LWf+Rfk/3F/mK57XKP/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#6c6942\",\"#e0d8c2\",\"#1f1e12\",\"#abb679\",\"#aca5a4\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":1023,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17125,17362,1,'image3','2021-05-18 01:25:34','2021-06-09 23:19:37','fdeb0659-4b8f-4f3d-b64e-c0b7e1645683',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x635_crop_center-center_82_line/17362/image3.jpg\"},\"optimizedWebPImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x635_crop_center-center_82_line/17362/image3.jpg.webp\"},\"variantSourceWidths\":[\"640\"],\"variantHeights\":{\"640\":635},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"640\",\"originalImageHeight\":\"635\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ars08Uh86Qbi3CsasWguHvPsyRjeq7mYHAxVFrmwjcyGzkmkPeV8596isNajt783KwOGPUB+D+FZqTL5Ef//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#4d4a41\",\"#d4c3a5\",\"#9e8473\",\"#8ebcb4\",\"#92aaad\"],\"lightness\":52,\"placeholderWidth\":640,\"placeholderHeight\":635,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17126,17363,1,'image1','2021-05-18 01:25:35','2021-06-09 23:19:40','083db22b-1c28-4dd7-b2b5-636f7ba0c243',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x636_crop_center-center_82_line/17363/image1.jpg\"},\"optimizedWebPImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x636_crop_center-center_82_line/17363/image1.jpg.webp\"},\"variantSourceWidths\":[\"640\"],\"variantHeights\":{\"640\":636},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"640\",\"originalImageHeight\":\"636\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ayri5DZ5qlKSYt+04zjNQPKTn3ppncpsz8vpVqNjC9z//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#213d45\",\"#617061\",\"#a4a986\",\"#7c8c6f\",\"#6e8184\"],\"lightness\":39,\"placeholderWidth\":640,\"placeholderHeight\":636,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17127,17364,1,'image2','2021-05-18 01:25:36','2021-06-09 23:18:26','b217781e-a94a-4b87-89a5-f60b6fc39763',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x639_crop_center-center_82_line/17364/image2.jpg\"},\"optimizedWebPImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x639_crop_center-center_82_line/17364/image2.jpg.webp\"},\"variantSourceWidths\":[\"640\"],\"variantHeights\":{\"640\":639},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"640\",\"originalImageHeight\":\"639\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A01vnuLqGCcQukuQwV84HPY846HNTpqsVq7W6rKyRfKMKW5xu6+wNef6tqMkmqeWoCKpCMI8ru9f61tx6xay3iJEJo1WMDCnHIGPx4xSsB//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c1bfb5\",\"#101112\",\"#4a4d4d\",\"#676a66\",\"#575c54\"],\"lightness\":40,\"placeholderWidth\":640,\"placeholderHeight\":639,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17128,17365,1,'Screen Shot 2019-03-13 at 4.40.45 pm','2021-05-18 01:25:38','2021-06-09 23:16:34','25384b57-6137-4797-8659-cd4ce304b16e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"597\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_597x597_crop_center-center_line/Screen-Shot-2019-03-13-at-4.40.45-pm.png\"},\"optimizedWebPImageUrls\":{\"597\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_597x597_crop_center-center_line/Screen-Shot-2019-03-13-at-4.40.45-pm.png.webp\"},\"variantSourceWidths\":[\"597\"],\"variantHeights\":{\"597\":597},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"597\",\"originalImageHeight\":\"597\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8ArWVrCY1VVLvjJwpPr/8AWpt5awiNlcbZFHIIIOaj02+8p1ZX2sAee3TvTb68Vi7F95J5J71yan0NnffQ/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ca2e32\",\"#efc3a7\",\"#d87965\",\"#900617\",\"#e48f91\"],\"lightness\":58,\"placeholderWidth\":597,\"placeholderHeight\":597,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17129,17366,1,'Screen Shot 2019-03-13 at 4.40.15 pm','2021-05-18 01:25:39','2021-06-09 23:16:33','44b62b83-8bf5-4ae5-a471-39354a9235cd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"600\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_600x599_crop_center-center_line/Screen-Shot-2019-03-13-at-4.40.15-pm.png\"},\"optimizedWebPImageUrls\":{\"600\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_600x599_crop_center-center_line/Screen-Shot-2019-03-13-at-4.40.15-pm.png.webp\"},\"variantSourceWidths\":[\"600\"],\"variantHeights\":{\"600\":599},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"600\",\"originalImageHeight\":\"599\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AfY6l8o+QY+mauyamiLnyyfwrkLC/dR9K0ZdQ/d85BrJwWxupPc//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#856b63\",\"#281e25\",\"#e1b392\",\"#483232\",\"#60422c\"],\"lightness\":38,\"placeholderWidth\":600,\"placeholderHeight\":599,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17130,17367,1,'Image-1-1','2021-05-18 01:25:40','2021-06-09 23:24:37','90b32527-f474-4570-bf8f-8029542524cd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x632_crop_center-center_82_line/17367/Image-1-1.jpg\"},\"optimizedWebPImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x632_crop_center-center_82_line/17367/Image-1-1.jpg.webp\"},\"variantSourceWidths\":[\"640\"],\"variantHeights\":{\"640\":632},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"750\",\"originalImageHeight\":\"741\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AiXw3If4DT/8AhGpMf6s100elWoI2hvzNSvZW6A4DfnQB/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d4d4d4\",\"#3f3f3f\",\"#686868\",\"#878787\",\"#747474\"],\"lightness\":52,\"placeholderWidth\":640,\"placeholderHeight\":632,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17131,17368,1,'acc','2021-05-18 01:25:41','2021-06-09 23:21:04','b414ef4f-8210-4838-8ba5-98148f6c2c84',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"540\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_540x240_crop_center-center_line/acc.jpg\"},\"optimizedWebPImageUrls\":{\"540\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_540x240_crop_center-center_line/acc.jpg.webp\"},\"variantSourceWidths\":[\"540\"],\"variantHeights\":{\"540\":240},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"540\",\"originalImageHeight\":\"240\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7PVUu5LUJZEq7NhmBGVGDyOR3x3pNKW7S1KXuS6tgMSCSMDnqe+aKKd9LAf/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#334264\",\"#e7ecf3\",\"#929cb6\",\"#9c9cb4\",\"#8991b4\"],\"lightness\":60,\"placeholderWidth\":540,\"placeholderHeight\":240,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17132,17369,1,'bpeq','2021-05-18 01:25:41','2021-06-09 23:25:20','aa0cbd99-7e7d-4c60-9b8b-96a790da133c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"540\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_540x240_crop_center-center_line/bpeq.jpg\"},\"optimizedWebPImageUrls\":{\"540\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_540x240_crop_center-center_line/bpeq.jpg.webp\"},\"variantSourceWidths\":[\"540\"],\"variantHeights\":{\"540\":240},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"540\",\"originalImageHeight\":\"240\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7mUT5byivI43dqLf7Tz9oMftsBoooA//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#485064\",\"#ebf0f5\",\"#979eaf\",\"#818691\",\"#7c7c8c\"],\"lightness\":59,\"placeholderWidth\":540,\"placeholderHeight\":240,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17133,17370,1,'ccc','2021-05-18 01:25:42','2021-06-09 23:26:00','c36922d1-73bd-4644-a067-e32096f73b00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"540\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_540x240_crop_center-center_line/ccc.jpg\"},\"optimizedWebPImageUrls\":{\"540\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_540x240_crop_center-center_line/ccc.jpg.webp\"},\"variantSourceWidths\":[\"540\"],\"variantHeights\":{\"540\":240},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"540\",\"originalImageHeight\":\"240\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7cpc/aHIkUREfKuOQalQSjG4qfU0UUAf/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#454f63\",\"#e7ebf1\",\"#747c8e\",\"#949cae\",\"#888c94\"],\"lightness\":58,\"placeholderWidth\":540,\"placeholderHeight\":240,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17134,17371,1,'cciq','2021-05-18 01:25:43','2021-06-09 23:26:18','8c826696-1ced-4a33-b891-23e224acb549',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"540\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_540x240_crop_center-center_line/cciq.jpg\"},\"optimizedWebPImageUrls\":{\"540\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_540x240_crop_center-center_line/cciq.jpg.webp\"},\"variantSourceWidths\":[\"540\"],\"variantHeights\":{\"540\":240},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"540\",\"originalImageHeight\":\"240\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7e6iuZCv2e4EQGcjaDnpjr+P50ltHdJNKbiZZIzjYAuNp5z/AEoooA//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#2f4065\",\"#f2f5f7\",\"#8691ac\",\"#9ca4b4\",\"#949cb4\"],\"lightness\":60,\"placeholderWidth\":540,\"placeholderHeight\":240,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17135,17372,1,'ipswich','2021-05-18 01:25:43','2021-06-09 23:14:38','4de5a386-75b8-4505-851e-5d11e84b12c7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"540\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_540x240_crop_center-center_line/ipswich.jpg\"},\"optimizedWebPImageUrls\":{\"540\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_540x240_crop_center-center_line/ipswich.jpg.webp\"},\"variantSourceWidths\":[\"540\"],\"variantHeights\":{\"540\":240},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"540\",\"originalImageHeight\":\"240\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7qNZw8m+RSpbKDHQelPAfuy/l/8AXoooA//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#444f67\",\"#e7ebf1\",\"#8e95a8\",\"#7c7f8c\",\"#848c92\"],\"lightness\":58,\"placeholderWidth\":540,\"placeholderHeight\":240,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17136,17373,1,'mbc','2021-05-18 01:25:44','2021-06-21 04:38:04','b9f95b98-e914-4eff-9f50-f535e7402fc9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"540\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_540x240_crop_center-center_line/mbc.jpg\"},\"optimizedWebPImageUrls\":{\"540\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_540x240_crop_center-center_line/mbc.jpg.webp\"},\"variantSourceWidths\":[\"540\"],\"variantHeights\":{\"540\":240},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"540\",\"originalImageHeight\":\"240\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7iNbrzpvMePy8jy8Akgd81KBJkZZcd/l/wDr0UUAf//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e2e7ec\",\"#3c475f\",\"#7e8596\",\"#6c7c96\",\"#90989c\"],\"lightness\":59,\"placeholderWidth\":540,\"placeholderHeight\":240,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17137,17374,1,'ndvr','2021-05-18 01:25:44','2021-06-21 04:38:12','62e22ca0-2e9b-4390-be93-65d61da84110',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"540\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_540x240_crop_center-center_line/ndvr.jpg\"},\"optimizedWebPImageUrls\":{\"540\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_540x240_crop_center-center_line/ndvr.jpg.webp\"},\"variantSourceWidths\":[\"540\"],\"variantHeights\":{\"540\":240},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"540\",\"originalImageHeight\":\"240\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7bUI7iW32WsjRuTyVxnGD60tlG8VuEkaVmB6yOGP5iiigD//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#eff3f8\",\"#374564\",\"#adb6c8\",\"#868b9f\",\"#8e99b4\"],\"lightness\":66,\"placeholderWidth\":540,\"placeholderHeight\":240,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17138,17375,1,'phn','2021-05-18 01:25:45','2021-06-09 23:15:52','70b92ea3-314d-4de9-85e3-8a19956b428f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"540\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_540x240_crop_center-center_line/phn.jpg\"},\"optimizedWebPImageUrls\":{\"540\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_540x240_crop_center-center_line/phn.jpg.webp\"},\"variantSourceWidths\":[\"540\"],\"variantHeights\":{\"540\":240},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"540\",\"originalImageHeight\":\"240\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7a8iuJdnkTNEB97aASemOtS24kWILKxdh/EcDP5UUUAf/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e9ebef\",\"#2f3d5d\",\"#757a87\",\"#576470\",\"#919494\"],\"lightness\":57,\"placeholderWidth\":540,\"placeholderHeight\":240,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17139,17376,1,'qg','2021-05-18 01:25:46','2021-06-09 23:18:07','d28b727a-91da-4f44-8459-2bed988d49ef',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"540\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_540x240_crop_center-center_line/qg.jpg\"},\"optimizedWebPImageUrls\":{\"540\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_540x240_crop_center-center_line/qg.jpg.webp\"},\"variantSourceWidths\":[\"540\"],\"variantHeights\":{\"540\":240},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"540\",\"originalImageHeight\":\"240\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7mVZzKDE6hMcgjvSxifd+8Me3/ZBzRRQB//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#41495b\",\"#e7ebf2\",\"#757a89\",\"#959daa\",\"#848c93\"],\"lightness\":57,\"placeholderWidth\":540,\"placeholderHeight\":240,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17140,17377,1,'qsa','2021-05-18 01:25:46','2021-06-09 23:19:22','455f04cb-1406-4507-9398-84446d1ce5d1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"540\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_540x240_crop_center-center_line/qsa.jpg\"},\"optimizedWebPImageUrls\":{\"540\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_540x240_crop_center-center_line/qsa.jpg.webp\"},\"variantSourceWidths\":[\"540\"],\"variantHeights\":{\"540\":240},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"540\",\"originalImageHeight\":\"240\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7i8z5Qx/eotM+Uc+tFFMD//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#f2f5f7\",\"#444f69\",\"#848b9c\",\"#8c94a4\",\"#7c8ca4\"],\"lightness\":64,\"placeholderWidth\":540,\"placeholderHeight\":240,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17141,17378,1,'quu','2021-05-18 01:25:47','2021-06-09 23:19:34','43956481-2192-4194-b303-47d4c93caaec',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"540\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_540x240_crop_center-center_line/quu.jpg\"},\"optimizedWebPImageUrls\":{\"540\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_540x240_crop_center-center_line/quu.jpg.webp\"},\"variantSourceWidths\":[\"540\"],\"variantHeights\":{\"540\":240},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"540\",\"originalImageHeight\":\"240\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7ki5818GPy+NvBz75/z3qRfM43bffFFFAH//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e8ebf0\",\"#3c4863\",\"#7c808b\",\"#898e94\",\"#6c8494\"],\"lightness\":60,\"placeholderWidth\":540,\"placeholderHeight\":240,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17142,17379,1,'rcc','2021-05-18 01:25:47','2021-06-09 23:18:44','c74d4780-4256-410a-81d5-b22dac1b1ab7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"540\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_540x240_crop_center-center_line/rcc.jpg\"},\"optimizedWebPImageUrls\":{\"540\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_540x240_crop_center-center_line/rcc.jpg.webp\"},\"variantSourceWidths\":[\"540\"],\"variantHeights\":{\"540\":240},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"540\",\"originalImageHeight\":\"240\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7mVZy+YpAq47jvRCtwH/AHrxsuP4Vwc0UUAf/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e7ebf0\",\"#38445e\",\"#7e8492\",\"#6c7c96\",\"#8c9494\"],\"lightness\":59,\"placeholderWidth\":540,\"placeholderHeight\":240,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17143,17380,1,'retireaustralia','2021-05-18 01:25:48','2021-06-09 23:19:01','20278a21-b00f-40ad-848a-2e844ab4ca82',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"540\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_540x240_crop_center-center_line/retireaustralia.jpg\"},\"optimizedWebPImageUrls\":{\"540\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_540x240_crop_center-center_line/retireaustralia.jpg.webp\"},\"variantSourceWidths\":[\"540\"],\"variantHeights\":{\"540\":240},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"540\",\"originalImageHeight\":\"240\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7W5jvWuoGt5o0gXPmIyZLccc063FyHPnlSuOMetFFAH/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#f1f5f8\",\"#344263\",\"#a8b1c5\",\"#808ca4\",\"#8d98b4\"],\"lightness\":66,\"placeholderWidth\":540,\"placeholderHeight\":240,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17144,17381,1,'revelian','2021-05-18 01:25:49','2021-06-09 23:16:56','588be3c4-6ea9-4195-ad3d-3ad27f7ea7d1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"540\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_540x240_crop_center-center_line/revelian.jpg\"},\"optimizedWebPImageUrls\":{\"540\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_540x240_crop_center-center_line/revelian.jpg.webp\"},\"variantSourceWidths\":[\"540\"],\"variantHeights\":{\"540\":240},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"540\",\"originalImageHeight\":\"240\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7mWOZnJjmKDGAMDr69KWNJg4Lyhl9MUUUAf/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#3b4863\",\"#eff3f6\",\"#9ba1ad\",\"#888c93\",\"#848490\"],\"lightness\":59,\"placeholderWidth\":540,\"placeholderHeight\":240,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17145,17382,1,'sentis','2021-05-18 01:25:49','2021-06-09 23:16:48','525614df-15da-45dd-a6e6-733997a33a4f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"540\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_540x240_crop_center-center_line/sentis.jpg\"},\"optimizedWebPImageUrls\":{\"540\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_540x240_crop_center-center_line/sentis.jpg.webp\"},\"variantSourceWidths\":[\"540\"],\"variantHeights\":{\"540\":240},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"540\",\"originalImageHeight\":\"240\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7qcXB2+QYh/e3gn8sGiAXALfaGjYZ+XYCPzoooA//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#334162\",\"#edf0f4\",\"#9aa7bc\",\"#a4a4bc\",\"#8c94ac\"],\"lightness\":61,\"placeholderWidth\":540,\"placeholderHeight\":240,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17146,17383,1,'tritium','2021-05-18 01:25:50','2021-06-09 23:17:28','d68cb321-3051-46b3-a9cc-8cea23e2e1ba',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"540\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_540x240_crop_center-center_line/tritium.jpg\"},\"optimizedWebPImageUrls\":{\"540\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_540x240_crop_center-center_line/tritium.jpg.webp\"},\"variantSourceWidths\":[\"540\"],\"variantHeights\":{\"540\":240},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"540\",\"originalImageHeight\":\"240\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7d4rg3gdZ8Q7fuYHX/PP4VIiTBgWlVl7jZjP60UUAf/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#344262\",\"#f3f6f8\",\"#a2abc6\",\"#acb4c4\",\"#8c94b4\"],\"lightness\":63,\"placeholderWidth\":540,\"placeholderHeight\":240,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17147,17384,1,'quu-tile','2021-05-18 01:25:50','2021-06-09 23:19:32','5443d51f-538b-4977-bdcf-8341653406fa',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1100_crop_center-center_82_line/17384/quu-tile.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x916_crop_center-center_82_line/17384/quu-tile.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x733_crop_center-center_82_line/17384/quu-tile.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1467_crop_center-center_82_line/17384/quu-tile.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x550_crop_center-center_82_line/17384/quu-tile.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x458_crop_center-center_82_line/17384/quu-tile.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1100_crop_center-center_82_line/17384/quu-tile.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x916_crop_center-center_82_line/17384/quu-tile.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x733_crop_center-center_82_line/17384/quu-tile.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1467_crop_center-center_82_line/17384/quu-tile.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x550_crop_center-center_82_line/17384/quu-tile.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x458_crop_center-center_82_line/17384/quu-tile.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1100,\"1280\":916,\"1024\":733,\"2048\":1467,\"768\":550,\"640\":458},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2172\",\"originalImageHeight\":\"1556\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AzdNCG5+dQwCk4IzV68gEVrMxgjXOcHAyPmrIVijBlOCKsXV5cToqSSErjOMAVvUpSlUUk9P8ja2p/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#5d3681\",\"#d2d070\",\"#8caf67\",\"#494015\",\"#348cbc\"],\"lightness\":45,\"placeholderWidth\":1536,\"placeholderHeight\":1100,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17148,17385,1,'revelianvideo','2021-05-18 01:25:55','2021-06-09 23:16:57','11dab8c4-4c1f-47a6-bcb0-2c917bc935e0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x682_crop_center-center_82_line/revelianvideo.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x545_crop_center-center_82_line/revelianvideo.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x409_crop_center-center_82_line/revelianvideo.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x341_crop_center-center_82_line/revelianvideo.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x682_crop_center-center_82_line/revelianvideo.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x545_crop_center-center_82_line/revelianvideo.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x409_crop_center-center_82_line/revelianvideo.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x341_crop_center-center_82_line/revelianvideo.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":682,\"1024\":545,\"768\":409,\"640\":341},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1375\",\"originalImageHeight\":\"733\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AxYX002sTr9ljT58hkRnz/DkNnipU0yyvzDcTXdvCmzEiQ7QCQPXpnkcYoopFH//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#beb2ab\",\"#171515\",\"#8e8c8b\",\"#736255\",\"#807b85\"],\"lightness\":45,\"placeholderWidth\":1280,\"placeholderHeight\":682,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17149,17386,1,'websitetile','2021-05-18 01:25:57','2021-06-09 23:17:33','8b2b704e-1032-41bc-9d7a-7126276463e6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1025_crop_center-center_82_line/websitetile.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2050_crop_center-center_82_line/websitetile.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x854_crop_center-center_82_line/websitetile.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1708_crop_center-center_82_line/websitetile.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x683_crop_center-center_82_line/websitetile.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1367_crop_center-center_82_line/websitetile.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/websitetile.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x427_crop_center-center_82_line/websitetile.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1025_crop_center-center_82_line/websitetile.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2050_crop_center-center_82_line/websitetile.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x854_crop_center-center_82_line/websitetile.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1708_crop_center-center_82_line/websitetile.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x683_crop_center-center_82_line/websitetile.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1367_crop_center-center_82_line/websitetile.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/websitetile.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x427_crop_center-center_82_line/websitetile.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1025,\"3072\":2050,\"1280\":854,\"2560\":1708,\"1024\":683,\"2048\":1367,\"768\":512,\"640\":427},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"4800\",\"originalImageHeight\":\"3204\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Au+Mo4y9nuaRWZtqmM4IBIz+grKMMUNsy75jJuI3SNuBHOMDsa3PEf/IY0w+m8j8qqXEaAM2xcndk46/IKmTshx1Z/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ccc2ba\",\"#1c2d34\",\"#6c615b\",\"#583c30\",\"#70523e\"],\"lightness\":43,\"placeholderWidth\":1536,\"placeholderHeight\":1025,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17150,17387,1,'UNADJUSTEDNONRAW_thumb_3bb2','2021-05-18 01:26:10','2021-06-09 23:17:29','65610104-65d2-4f31-8790-ab261474aae5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/UNADJUSTEDNONRAW_thumb_3bb2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/UNADJUSTEDNONRAW_thumb_3bb2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/UNADJUSTEDNONRAW_thumb_3bb2.jpg\"},\"optimizedWebPImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/UNADJUSTEDNONRAW_thumb_3bb2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/UNADJUSTEDNONRAW_thumb_3bb2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/UNADJUSTEDNONRAW_thumb_3bb2.jpg.webp\"},\"variantSourceWidths\":[\"1024\",\"768\",\"640\"],\"variantHeights\":{\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1024\",\"originalImageHeight\":\"1024\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7Ce52kHoufTNPRxIgdTkGsbX7iFNJlkZfOXgLt9fX+fNP0K/gnhVI2X7illXohI+n+cGrIP/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dde8ef\",\"#334454\",\"#8f9fa8\",\"#747c86\",\"#748484\"],\"lightness\":58,\"placeholderWidth\":1024,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17151,17388,1,'icon1','2021-05-18 01:26:11','2021-06-09 23:24:27','cedf5605-074e-4276-abf7-7a0bba81e888',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"384\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_384x384_crop_center-center_line/icon1.png\"},\"optimizedWebPImageUrls\":{\"384\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_384x384_crop_center-center_line/icon1.png.webp\"},\"variantSourceWidths\":[\"384\"],\"variantHeights\":{\"384\":384},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"384\",\"originalImageHeight\":\"384\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A1rieNfk8xF9Tux/n/P0qrHeIlwUbDISBuB6VX1vTZpFFxCvmsvDAdSPX3pum20FxZRCGOVZwx88vwv4fpQ4u10ddGVK/LLY//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e6445d\",\"#1d253b\",\"#f6f5f6\",\"#6c7c8c\",\"#8ca4b4\"],\"lightness\":53,\"placeholderWidth\":384,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17152,17389,1,'icon2','2021-05-18 01:26:12','2021-06-09 23:24:34','e78af199-433f-4296-a3db-bd166f220cbd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"384\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_384x384_crop_center-center_line/icon2.png\"},\"optimizedWebPImageUrls\":{\"384\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_384x384_crop_center-center_line/icon2.png.webp\"},\"variantSourceWidths\":[\"384\"],\"variantHeights\":{\"384\":384},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"384\",\"originalImageHeight\":\"384\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6FY1bjjjrihoQScCqV3bymH9yS3zfMM9atQyztEDKiq57A9q5WqymmjVwXIpXP/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#0a0c0e\",\"#dae254\",\"#ed435b\",\"#f6f5f3\",\"#d8e08c\"],\"lightness\":47,\"placeholderWidth\":384,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17153,17390,1,'icon3','2021-05-18 01:26:14','2021-06-09 23:24:37','ffb58a36-0141-4e01-9ab5-36a47a628ed1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"384\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_384x384_crop_center-center_line/icon3.png\"},\"optimizedWebPImageUrls\":{\"384\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_384x384_crop_center-center_line/icon3.png.webp\"},\"variantSourceWidths\":[\"384\"],\"variantHeights\":{\"384\":384},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"384\",\"originalImageHeight\":\"384\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6O3gEzlMhRjOaj2I3MbpIpzh0bIPNNkTzI3Q52sCp2nGQaZbQJbQrDCCI1zgE9Oc1VlYw5mnax//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#8dd1ca\",\"#0d121a\",\"#f4f8f8\",\"#4d768c\",\"#495471\"],\"lightness\":52,\"placeholderWidth\":384,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17154,17391,1,'Scott1','2021-05-18 01:26:15','2021-06-09 23:16:49','846118ea-9420-4157-a1f8-eb0aea3a82ee',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Scott1.jpg\"},\"optimizedWebPImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Scott1.jpg.webp\"},\"variantSourceWidths\":[\"640\"],\"variantHeights\":{\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"750\",\"originalImageHeight\":\"750\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A0I7OSCaaUTu5LEjLk8nrU0MsspVZHbKycEHqO1Z15qNy1yttFby9SGIUgdal89YLuG3gjmfBGXKkjOema5pxdjXmuz//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#b6a476\",\"#573137\",\"#ebe5d3\",\"#4d6e75\",\"#8f6d2c\"],\"lightness\":51,\"placeholderWidth\":640,\"placeholderHeight\":640,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17155,17392,1,'Scott2','2021-05-18 01:26:17','2021-06-09 23:16:42','8d4d992a-00d4-420a-bbac-e5a3574ed51b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Scott2.jpg\"},\"optimizedWebPImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Scott2.jpg.webp\"},\"variantSourceWidths\":[\"640\"],\"variantHeights\":{\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"750\",\"originalImageHeight\":\"750\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8ApbNDm0eWJIy12F+RpAd7MemMHnnitXGnrpMYuXcPFFsWDkY/D19Sf5Vltc6LHc2X9ngmUTL8zFgAOhySasDWbaDU7yzvIlkhmYDzeGOcdyT0qWmzVX3P/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d5b9a5\",\"#16162d\",\"#602e44\",\"#726269\",\"#72584a\"],\"lightness\":41,\"placeholderWidth\":640,\"placeholderHeight\":640,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17156,17393,1,'Scott3','2021-05-18 01:26:18','2021-06-09 23:16:48','83dbda04-48a4-4fe6-ad65-05f7428dd455',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Scott3.jpg\"},\"optimizedWebPImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Scott3.jpg.webp\"},\"variantSourceWidths\":[\"640\"],\"variantHeights\":{\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"750\",\"originalImageHeight\":\"750\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AybqE2kgSBxPNDgb5MgRZ6KB1PeqVs80t4lo6wqSSxZV5PHT9K1JVutQubq/s7F7q1uMCRAfmVwOoxVSziuU1YXBtDviBbyiee+Sx7d6a6s1fLypdT//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d7a990\",\"#1f1638\",\"#7d4b53\",\"#8b948d\",\"#647798\"],\"lightness\":45,\"placeholderWidth\":640,\"placeholderHeight\":640,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17157,17394,1,'IMG_3733','2021-05-18 01:26:19','2021-06-09 23:15:35','c7ce32cf-9705-4df2-8749-1a60c93238e6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2048_crop_center-center_82_line/IMG_3733.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1706_crop_center-center_82_line/IMG_3733.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x3413_crop_center-center_82_line/IMG_3733.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1365_crop_center-center_82_line/IMG_3733.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2730_crop_center-center_82_line/IMG_3733.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1024_crop_center-center_82_line/IMG_3733.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x853_crop_center-center_82_line/IMG_3733.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2048_crop_center-center_82_line/IMG_3733.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1706_crop_center-center_82_line/IMG_3733.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x3413_crop_center-center_82_line/IMG_3733.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1365_crop_center-center_82_line/IMG_3733.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2730_crop_center-center_82_line/IMG_3733.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1024_crop_center-center_82_line/IMG_3733.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x853_crop_center-center_82_line/IMG_3733.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":2048,\"1280\":1706,\"2560\":3413,\"1024\":1365,\"2048\":2730,\"768\":1024,\"640\":853},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3024\",\"originalImageHeight\":\"4032\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAFQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6xp9g61ja7qcc9rJZRykucb9vOBWBq94o8630/z2bcQ0rSsBnuAM8iqWhu0l0UlXJVchsdMHpWTnZXRpGF3Zl22UNMNwzk81sXSotzhI0UD5QAMUUVzS2OpfEf/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d5cec1\",\"#2f261e\",\"#915c37\",\"#a77956\",\"#6f3e22\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":2048,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17158,17395,1,'IMG_5098','2021-05-18 01:26:29','2021-06-09 23:14:42','d63c0c91-64ce-4fd9-b3ce-1b3dfad5b693',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2048_crop_center-center_82_line/IMG_5098.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1706_crop_center-center_82_line/IMG_5098.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x3413_crop_center-center_82_line/IMG_5098.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1365_crop_center-center_82_line/IMG_5098.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2730_crop_center-center_82_line/IMG_5098.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1024_crop_center-center_82_line/IMG_5098.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x853_crop_center-center_82_line/IMG_5098.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2048_crop_center-center_82_line/IMG_5098.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1706_crop_center-center_82_line/IMG_5098.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x3413_crop_center-center_82_line/IMG_5098.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1365_crop_center-center_82_line/IMG_5098.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2730_crop_center-center_82_line/IMG_5098.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1024_crop_center-center_82_line/IMG_5098.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x853_crop_center-center_82_line/IMG_5098.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":2048,\"1280\":1706,\"2560\":3413,\"1024\":1365,\"2048\":2730,\"768\":1024,\"640\":853},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3024\",\"originalImageHeight\":\"4032\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAFQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A2LLxPazlknP2aTsrngj61pW99DcFlimRyvUKwOPyrhp9EHlbopGDZzhuaraNNPazybGaOQnGV6AjsaxU00aum07E39uyT2qt5CofunB6+9Qm7by3RVVQ+Dx15PNFFPlQudn/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#33291e\",\"#a47550\",\"#e3e1d8\",\"#603e27\",\"#cbc0ac\"],\"lightness\":43,\"placeholderWidth\":1536,\"placeholderHeight\":2048,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17159,17396,1,'IMG_3471','2021-05-18 01:26:42','2021-06-09 23:15:30','65bf2c38-63e7-4e4d-98ce-ab4ae6b6e838',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2048_crop_center-center_82_line/IMG_3471.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1706_crop_center-center_82_line/IMG_3471.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x3413_crop_center-center_82_line/IMG_3471.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1365_crop_center-center_82_line/IMG_3471.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2730_crop_center-center_82_line/IMG_3471.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1024_crop_center-center_82_line/IMG_3471.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x853_crop_center-center_82_line/IMG_3471.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2048_crop_center-center_82_line/IMG_3471.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1706_crop_center-center_82_line/IMG_3471.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x3413_crop_center-center_82_line/IMG_3471.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1365_crop_center-center_82_line/IMG_3471.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2730_crop_center-center_82_line/IMG_3471.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1024_crop_center-center_82_line/IMG_3471.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x853_crop_center-center_82_line/IMG_3471.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":2048,\"1280\":1706,\"2560\":3413,\"1024\":1365,\"2048\":2730,\"768\":1024,\"640\":853},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3024\",\"originalImageHeight\":\"4032\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAFQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A17mGO0kjGCzSd84B9qx7zW4ZI3WDdvGQCGH581BcahE4+W2kmflfMLHIHp14NZa6cD5k1w5ij64BzgVlaMtTS7WiIIWKRoQxyR60y9meSHazHGc4B4oorZJWuYtu9j//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#433f38\",\"#d2b9a2\",\"#a08771\",\"#afb3a7\",\"#9f96ab\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":2048,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17160,17397,1,'IMG_4207','2021-05-18 01:26:53','2021-06-09 23:15:19','b059a6f6-98de-43fe-97a8-9aee43abe1a8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2048_crop_center-center_82_line/IMG_4207.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1706_crop_center-center_82_line/IMG_4207.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x3413_crop_center-center_82_line/IMG_4207.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1365_crop_center-center_82_line/IMG_4207.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2730_crop_center-center_82_line/IMG_4207.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1024_crop_center-center_82_line/IMG_4207.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x853_crop_center-center_82_line/IMG_4207.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2048_crop_center-center_82_line/IMG_4207.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1706_crop_center-center_82_line/IMG_4207.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x3413_crop_center-center_82_line/IMG_4207.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1365_crop_center-center_82_line/IMG_4207.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2730_crop_center-center_82_line/IMG_4207.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1024_crop_center-center_82_line/IMG_4207.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x853_crop_center-center_82_line/IMG_4207.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":2048,\"1280\":1706,\"2560\":3413,\"1024\":1365,\"2048\":2730,\"768\":1024,\"640\":853},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3024\",\"originalImageHeight\":\"4032\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAFQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AzdOvpLKdGz1UHaMng12VjrkWoERGIApgc/xHqMflzXmsUvlOJSxLqc47Vu6VeRTXKwJGU8wESyg8tznA9O3PX6VLaSuVa+hhFAAc81a0+Qwy+Yo+YFQPxIBoopy2JW5//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#32302d\",\"#d1bca7\",\"#7d706a\",\"#98a1a3\",\"#808b9e\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":2048,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17161,17398,1,'hqt-video','2021-05-18 01:27:06','2021-06-09 23:24:33','f0357c4f-f87f-4023-9457-1e1ec60ff385',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/hqt-video.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/hqt-video.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/hqt-video.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/hqt-video.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/hqt-video.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/hqt-video.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/hqt-video.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/hqt-video.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/hqt-video.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/hqt-video.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AvqFbaTtyFwM/zprIqjqCccnPU0UV4J7PU//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e78b29\",\"#fadfa9\",\"#f0ae65\",\"#b2600a\",\"#fcd080\"],\"lightness\":62,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17162,17399,1,'hqt-14','2021-05-18 01:27:08','2021-06-09 23:24:32','7ea8c7a7-c357-4159-b693-15005157844f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/hqt-14.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/hqt-14.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/hqt-14.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/hqt-14.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/hqt-14.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/hqt-14.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/hqt-14.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/hqt-14.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/hqt-14.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/hqt-14.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Au2l4HZQ5RFwc7sYP+frUGqTExhreRS3QqEHTnnnmiisZTmqtuZlcseTY/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#aa8f4a\",\"#94bcea\",\"#2e302c\",\"#939399\",\"#404e38\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17163,17400,1,'hqt-11','2021-05-18 01:27:11','2021-06-09 23:24:29','271715ff-c3e3-413f-8d02-a14c3ef78b64',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/hqt-11.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/hqt-11.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/hqt-11.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/hqt-11.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/hqt-11.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/hqt-11.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/hqt-11.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/hqt-11.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/hqt-11.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/hqt-11.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AbBa6vDZtBFbp5b8uwByQO2cdKrz6deyB7ltmXHG0/eH0oorn52kFj//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#4b5141\",\"#e2e3e1\",\"#b6b265\",\"#a0af5d\",\"#858c89\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17164,17401,1,'hqt-12','2021-05-18 01:27:13','2021-06-09 23:24:30','2107c999-c3b5-4bd6-926e-4f71eb0755c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/hqt-12.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/hqt-12.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/hqt-12.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/hqt-12.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/hqt-12.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/hqt-12.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/hqt-12.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/hqt-12.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/hqt-12.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/hqt-12.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AZHf2gA2WsjH0yBVqOTdAbhYCyBsHaRxx9aKK0lOTWrIjCKZ//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#6f89a7\",\"#d8d3cc\",\"#262b27\",\"#4b4e3e\",\"#a8ceeb\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17165,17402,1,'hqt-15','2021-05-18 01:27:16','2021-06-09 23:24:33','9f4fb490-365b-48d5-8271-730e96c68a1a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/hqt-15.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/hqt-15.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/hqt-15.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/hqt-15.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/hqt-15.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/hqt-15.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/hqt-15.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/hqt-15.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/hqt-15.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/hqt-15.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ae+q3duubprbJGRngn6YpkOs3M0RKxW7YP3geD+tFFJVJc1rjcI2P/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#929fb1\",\"#26292d\",\"#865a20\",\"#543c2a\",\"#e7d1b8\"],\"lightness\":40,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17166,17403,1,'hqt-13','2021-05-18 01:27:18','2021-06-09 23:24:31','6297b4c9-0fcc-45c8-8356-0477fcecf5eb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/hqt-13.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/hqt-13.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/hqt-13.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/hqt-13.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/hqt-13.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/hqt-13.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/hqt-13.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/hqt-13.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/hqt-13.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/hqt-13.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AZHpV0I1BYKiggbiM4OfSkmS+trD7MIA8ed24AEk+veiiudTfMW4qx//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#4b4e3a\",\"#d0c4a1\",\"#9f9a74\",\"#acbcad\",\"#879fb7\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17167,17404,1,'LIFE-STYLE-Castle05','2021-05-18 01:27:20','2021-06-21 04:38:45','579900da-871c-4927-ad6b-5ab7b477e2a5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x836_crop_center-center_82_line/LIFE-STYLE-Castle05.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x669_crop_center-center_82_line/LIFE-STYLE-Castle05.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x501_crop_center-center_82_line/LIFE-STYLE-Castle05.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x418_crop_center-center_82_line/LIFE-STYLE-Castle05.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x836_crop_center-center_82_line/LIFE-STYLE-Castle05.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x669_crop_center-center_82_line/LIFE-STYLE-Castle05.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x501_crop_center-center_82_line/LIFE-STYLE-Castle05.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x418_crop_center-center_82_line/LIFE-STYLE-Castle05.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":836,\"1024\":669,\"768\":501,\"640\":418},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1400\",\"originalImageHeight\":\"915\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5RbaOSPyhKJ5QPl8vOPxJArSt7G0t05XdMVyBIO/tiqOk9GPfNb8HFspHBx1/Gs5tlxR/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#28211e\",\"#bcab93\",\"#7e6a53\",\"#9c9d7b\",\"#98908c\"],\"lightness\":41,\"placeholderWidth\":1280,\"placeholderHeight\":836,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17168,17405,1,'newpictures','2021-05-18 01:27:22','2021-06-21 04:38:13','95e09de6-9d29-4d82-94cd-b275d64be3fb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x458_crop_center-center_82_line/newpictures.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x366_crop_center-center_82_line/newpictures.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x275_crop_center-center_82_line/newpictures.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x229_crop_center-center_82_line/newpictures.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x458_crop_center-center_82_line/newpictures.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x366_crop_center-center_82_line/newpictures.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x275_crop_center-center_82_line/newpictures.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x229_crop_center-center_82_line/newpictures.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":458,\"1024\":366,\"768\":275,\"640\":229},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1440\",\"originalImageHeight\":\"516\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A32OFNIe9FFecQf/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#bbd37d\",\"#9ab364\",\"#a4bc6e\",\"#acc474\",\"#a8c46c\"],\"lightness\":60,\"placeholderWidth\":1280,\"placeholderHeight\":458,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17169,17406,1,'Desktop HD Copy','2021-05-18 01:27:24','2021-06-09 23:23:27','a5d61668-d1e4-43c2-8eca-6312dd264657',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x550_crop_center-center_82_line/Desktop-HD-Copy.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x458_crop_center-center_82_line/Desktop-HD-Copy.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x917_crop_center-center_82_line/Desktop-HD-Copy.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x366_crop_center-center_82_line/Desktop-HD-Copy.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x733_crop_center-center_82_line/Desktop-HD-Copy.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x275_crop_center-center_82_line/Desktop-HD-Copy.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x229_crop_center-center_82_line/Desktop-HD-Copy.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x550_crop_center-center_82_line/Desktop-HD-Copy.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x458_crop_center-center_82_line/Desktop-HD-Copy.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x917_crop_center-center_82_line/Desktop-HD-Copy.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x366_crop_center-center_82_line/Desktop-HD-Copy.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x733_crop_center-center_82_line/Desktop-HD-Copy.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x275_crop_center-center_82_line/Desktop-HD-Copy.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x229_crop_center-center_82_line/Desktop-HD-Copy.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":550,\"1280\":458,\"2560\":917,\"1024\":366,\"2048\":733,\"768\":275,\"640\":229},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2880\",\"originalImageHeight\":\"1032\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AfVwQxwpJtBYBON+Cfzoorom/eSPPpJckn6fqf//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#3da3b4\",\"#e9c3bb\",\"#2b1f21\",\"#72574f\",\"#94dcec\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":550,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17170,17407,1,'Desktop HD Copy 3','2021-05-18 01:27:28','2021-06-09 23:23:26','106dca28-0909-41fd-b060-2c3d9a33bb32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x979_crop_center-center_82_line/Desktop-HD-Copy-3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x783_crop_center-center_82_line/Desktop-HD-Copy-3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x587_crop_center-center_82_line/Desktop-HD-Copy-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x489_crop_center-center_82_line/Desktop-HD-Copy-3.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x979_crop_center-center_82_line/Desktop-HD-Copy-3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x783_crop_center-center_82_line/Desktop-HD-Copy-3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x587_crop_center-center_82_line/Desktop-HD-Copy-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x489_crop_center-center_82_line/Desktop-HD-Copy-3.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":979,\"1024\":783,\"768\":587,\"640\":489},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1348\",\"originalImageHeight\":\"1032\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3s85pOB26GnEcikIx0J615xB/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#bad27d\",\"#96af61\",\"#a4bc6e\",\"#a4bc64\",\"#a4b46c\"],\"lightness\":58,\"placeholderWidth\":1280,\"placeholderHeight\":979,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17171,17408,1,'Desktop HD Copy 2','2021-05-18 01:27:30','2021-06-09 23:23:25','ab762e49-84ae-48ce-81ba-b25b6b9f1ac4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x979_crop_center-center_82_line/Desktop-HD-Copy-2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x783_crop_center-center_82_line/Desktop-HD-Copy-2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x587_crop_center-center_82_line/Desktop-HD-Copy-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x489_crop_center-center_82_line/Desktop-HD-Copy-2.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x979_crop_center-center_82_line/Desktop-HD-Copy-2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x783_crop_center-center_82_line/Desktop-HD-Copy-2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x587_crop_center-center_82_line/Desktop-HD-Copy-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x489_crop_center-center_82_line/Desktop-HD-Copy-2.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":979,\"1024\":783,\"768\":587,\"640\":489},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1348\",\"originalImageHeight\":\"1032\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A07ue5e4NvBhQBuZs9BUtperM2zlguF8zGAzVZ8pMsdoBYYJHUimfZogqKFwqdAOlfPXVrHp3P//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#f7bd3e\",\"#9e4914\",\"#c37228\",\"#e2981a\",\"#94642c\"],\"lightness\":47,\"placeholderWidth\":1280,\"placeholderHeight\":979,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17172,17409,1,'Screen Shot 2019-03-15 at 12.18.44 pm','2021-05-18 01:27:32','2021-06-09 23:16:35','9bec58a4-482c-4c26-b25c-6a5f10711f1b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x754_crop_center-center_82_line/Screen-Shot-2019-03-15-at-12.18.44-pm.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x628_crop_center-center_82_line/Screen-Shot-2019-03-15-at-12.18.44-pm.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1257_crop_center-center_82_line/Screen-Shot-2019-03-15-at-12.18.44-pm.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x502_crop_center-center_82_line/Screen-Shot-2019-03-15-at-12.18.44-pm.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1005_crop_center-center_82_line/Screen-Shot-2019-03-15-at-12.18.44-pm.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x377_crop_center-center_82_line/Screen-Shot-2019-03-15-at-12.18.44-pm.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x314_crop_center-center_82_line/Screen-Shot-2019-03-15-at-12.18.44-pm.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x754_crop_center-center_82_line/Screen-Shot-2019-03-15-at-12.18.44-pm.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x628_crop_center-center_82_line/Screen-Shot-2019-03-15-at-12.18.44-pm.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1257_crop_center-center_82_line/Screen-Shot-2019-03-15-at-12.18.44-pm.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x502_crop_center-center_82_line/Screen-Shot-2019-03-15-at-12.18.44-pm.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1005_crop_center-center_82_line/Screen-Shot-2019-03-15-at-12.18.44-pm.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x377_crop_center-center_82_line/Screen-Shot-2019-03-15-at-12.18.44-pm.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x314_crop_center-center_82_line/Screen-Shot-2019-03-15-at-12.18.44-pm.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":754,\"1280\":628,\"2560\":1257,\"1024\":502,\"2048\":1005,\"768\":377,\"640\":314},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3038\",\"originalImageHeight\":\"1492\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AvadbwRXt25LNJJICQONuc8daq288M4ZJLtoyBuO6ItnPXnPtRRWVJvkjK+rsOolK6ex//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c8bfb0\",\"#205460\",\"#694443\",\"#cea11f\",\"#677985\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":754,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17173,17410,1,'backedbynwo','2021-05-18 01:27:37','2021-06-09 23:25:32','25714260-5d44-46a6-8f6f-b841714334fc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"590\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_590x173_crop_center-center_line/backedbynwo.png\"},\"optimizedWebPImageUrls\":{\"590\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_590x173_crop_center-center_line/backedbynwo.png.webp\"},\"variantSourceWidths\":[\"590\"],\"variantHeights\":{\"590\":173},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"590\",\"originalImageHeight\":\"173\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A2ht3t8o9eSfU1at0WVChUAA8ECiigD//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ededee\",\"#060606\",\"#dc5269\",\"#32b597\",\"#ac7c7c\"],\"lightness\":53,\"placeholderWidth\":590,\"placeholderHeight\":173,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17174,17411,1,'services','2021-05-18 01:27:38','2021-06-09 23:16:50','b00c68c1-6159-4dac-bcf3-3e42c656523e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x444_crop_center-center_82_line/services.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x355_crop_center-center_82_line/services.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x266_crop_center-center_82_line/services.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x222_crop_center-center_82_line/services.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x444_crop_center-center_82_line/services.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x355_crop_center-center_82_line/services.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x266_crop_center-center_82_line/services.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x222_crop_center-center_82_line/services.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":444,\"1024\":355,\"768\":266,\"640\":222},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1440\",\"originalImageHeight\":\"500\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3SMEj0NMaNGi8sqNmMYxxRRVQfNFNnA9JaH/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#8cd2ca\",\"#a4547e\",\"#d4e051\",\"#293f5b\",\"#d8da7e\"],\"lightness\":56,\"placeholderWidth\":1280,\"placeholderHeight\":444,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17175,17412,1,'services2','2021-05-18 01:27:39','2021-06-09 23:17:19','ea6c214f-4a59-4ac9-81f7-1a9a92c687b2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x533_crop_center-center_82_line/services2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x444_crop_center-center_82_line/services2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x888_crop_center-center_82_line/services2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x355_crop_center-center_82_line/services2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x711_crop_center-center_82_line/services2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x266_crop_center-center_82_line/services2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x222_crop_center-center_82_line/services2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x533_crop_center-center_82_line/services2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x444_crop_center-center_82_line/services2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x888_crop_center-center_82_line/services2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x355_crop_center-center_82_line/services2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x711_crop_center-center_82_line/services2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x266_crop_center-center_82_line/services2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x222_crop_center-center_82_line/services2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":533,\"1280\":444,\"2560\":888,\"1024\":355,\"2048\":711,\"768\":266,\"640\":222},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2880\",\"originalImageHeight\":\"1000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A2+BIy49yfX/OKcBkEg4xRRSqScYXXl+aOJJOR//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#85ccca\",\"#d4de51\",\"#9a5595\",\"#223e60\",\"#c6c883\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":533,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17176,17413,1,'services3','2021-05-18 01:27:43','2021-06-09 23:17:39','9ed65a7a-dee7-45ff-bdb0-b32c3254b4c1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x533_crop_center-center_82_line/services3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x444_crop_center-center_82_line/services3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x888_crop_center-center_82_line/services3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x355_crop_center-center_82_line/services3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x711_crop_center-center_82_line/services3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x266_crop_center-center_82_line/services3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x222_crop_center-center_82_line/services3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x533_crop_center-center_82_line/services3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x444_crop_center-center_82_line/services3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x888_crop_center-center_82_line/services3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x355_crop_center-center_82_line/services3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x711_crop_center-center_82_line/services3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x266_crop_center-center_82_line/services3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x222_crop_center-center_82_line/services3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":533,\"1280\":444,\"2560\":888,\"1024\":355,\"2048\":711,\"768\":266,\"640\":222},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2880\",\"originalImageHeight\":\"1000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A2wqgLgD5QQOOgNIwHmIxAzyB/n8KKK0skrI4U22f/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#85ccca\",\"#d5cb53\",\"#674f88\",\"#b4ca6c\",\"#547c90\"],\"lightness\":57,\"placeholderWidth\":1536,\"placeholderHeight\":533,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17177,17414,1,'services4','2021-05-18 01:27:46','2021-06-09 23:17:40','388db398-31c4-47fa-b584-cb58dbdb83d0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x533_crop_center-center_82_line/services4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x444_crop_center-center_82_line/services4.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x888_crop_center-center_82_line/services4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x355_crop_center-center_82_line/services4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x711_crop_center-center_82_line/services4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x266_crop_center-center_82_line/services4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x222_crop_center-center_82_line/services4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x533_crop_center-center_82_line/services4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x444_crop_center-center_82_line/services4.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x888_crop_center-center_82_line/services4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x355_crop_center-center_82_line/services4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x711_crop_center-center_82_line/services4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x266_crop_center-center_82_line/services4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x222_crop_center-center_82_line/services4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":533,\"1280\":444,\"2560\":888,\"1024\":355,\"2048\":711,\"768\":266,\"640\":222},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2880\",\"originalImageHeight\":\"1000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A20JK89e9L/EG7jocUUVpZNWZwN2lof/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#85ccca\",\"#d6c655\",\"#534f78\",\"#afd267\",\"#4c848c\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":533,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17178,17415,1,'contact','2021-05-18 01:27:49','2021-06-09 23:23:52','6246d453-6fe4-4b2e-889f-ec80c9ae8bfb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x533_crop_center-center_82_line/contact.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x444_crop_center-center_82_line/contact.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x888_crop_center-center_82_line/contact.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x355_crop_center-center_82_line/contact.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x711_crop_center-center_82_line/contact.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x266_crop_center-center_82_line/contact.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x222_crop_center-center_82_line/contact.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x533_crop_center-center_82_line/contact.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x444_crop_center-center_82_line/contact.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x888_crop_center-center_82_line/contact.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x355_crop_center-center_82_line/contact.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x711_crop_center-center_82_line/contact.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x266_crop_center-center_82_line/contact.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x222_crop_center-center_82_line/contact.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":533,\"1280\":444,\"2560\":888,\"1024\":355,\"2048\":711,\"768\":266,\"640\":222},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2880\",\"originalImageHeight\":\"1000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ax9Ti8m72gjG0HgYxntTtOh87eGPyKQSuOuTjr2ooq3J+yT9CF8Z//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#253b63\",\"#caa66a\",\"#73695a\",\"#85599f\",\"#8ca45c\"],\"lightness\":42,\"placeholderWidth\":1536,\"placeholderHeight\":533,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17179,17416,1,'people','2021-05-18 01:27:52','2021-06-09 23:13:46','687f0027-a7a0-4172-b6ca-ad19c1cb752b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x533_crop_center-center_82_line/17416/people.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x444_crop_center-center_82_line/17416/people.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x888_crop_center-center_82_line/17416/people.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x355_crop_center-center_82_line/17416/people.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x711_crop_center-center_82_line/17416/people.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x266_crop_center-center_82_line/17416/people.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x222_crop_center-center_82_line/17416/people.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x533_crop_center-center_82_line/17416/people.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x444_crop_center-center_82_line/17416/people.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x888_crop_center-center_82_line/17416/people.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x355_crop_center-center_82_line/17416/people.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x711_crop_center-center_82_line/17416/people.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x266_crop_center-center_82_line/17416/people.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x222_crop_center-center_82_line/17416/people.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":533,\"1280\":444,\"2560\":888,\"1024\":355,\"2048\":711,\"768\":266,\"640\":222},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2880\",\"originalImageHeight\":\"1000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A4N5TIzswBLfhg+oH+etOgdljlweBhsEZBIPHH40UUDW5/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#050506\",\"#aa708d\",\"#78a4a0\",\"#614e7e\",\"#4e2141\"],\"lightness\":33,\"placeholderWidth\":1536,\"placeholderHeight\":533,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17180,17417,1,'people2','2021-05-18 01:27:57','2021-06-09 23:13:48','e717ff6d-aca0-4381-8517-a6a0d1491d42',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x533_crop_center-center_82_line/17417/people2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x444_crop_center-center_82_line/17417/people2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x888_crop_center-center_82_line/17417/people2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x355_crop_center-center_82_line/17417/people2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x711_crop_center-center_82_line/17417/people2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x266_crop_center-center_82_line/17417/people2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x222_crop_center-center_82_line/17417/people2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x533_crop_center-center_82_line/17417/people2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x444_crop_center-center_82_line/17417/people2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x888_crop_center-center_82_line/17417/people2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x355_crop_center-center_82_line/17417/people2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x711_crop_center-center_82_line/17417/people2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x266_crop_center-center_82_line/17417/people2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x222_crop_center-center_82_line/17417/people2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":533,\"1280\":444,\"2560\":888,\"1024\":355,\"2048\":711,\"768\":266,\"640\":222},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2880\",\"originalImageHeight\":\"1000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A50tuJJAyf0pUYgNg8DBwR15oorqMluf/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#243c63\",\"#b66b81\",\"#7d5188\",\"#8859a4\",\"#88cac8\"],\"lightness\":43,\"placeholderWidth\":1536,\"placeholderHeight\":533,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17181,17418,1,'people3','2021-05-18 01:28:02','2021-06-09 23:13:49','3c3b2d52-651c-487c-a783-59a6e9026f48',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x533_crop_center-center_82_line/people3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x444_crop_center-center_82_line/people3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x888_crop_center-center_82_line/people3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x355_crop_center-center_82_line/people3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x711_crop_center-center_82_line/people3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x266_crop_center-center_82_line/people3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x222_crop_center-center_82_line/people3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x533_crop_center-center_82_line/people3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x444_crop_center-center_82_line/people3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x888_crop_center-center_82_line/people3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x355_crop_center-center_82_line/people3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x711_crop_center-center_82_line/people3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x266_crop_center-center_82_line/people3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x222_crop_center-center_82_line/people3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":533,\"1280\":444,\"2560\":888,\"1024\":355,\"2048\":711,\"768\":266,\"640\":222},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2880\",\"originalImageHeight\":\"1000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5502qhz95c/Tkj+lPFzJ5vmSEytjGXJJ/OiiuparUxP/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#243c63\",\"#c9a16c\",\"#85cccb\",\"#765a78\",\"#895aa4\"],\"lightness\":46,\"placeholderWidth\":1536,\"placeholderHeight\":533,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17182,17419,1,'people4','2021-05-18 01:28:05','2021-06-09 23:13:50','613fc44e-84cc-480a-a0a9-769a24e86288',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x533_crop_center-center_82_line/people4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x444_crop_center-center_82_line/people4.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x888_crop_center-center_82_line/people4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x355_crop_center-center_82_line/people4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x711_crop_center-center_82_line/people4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x266_crop_center-center_82_line/people4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x222_crop_center-center_82_line/people4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x533_crop_center-center_82_line/people4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x444_crop_center-center_82_line/people4.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x888_crop_center-center_82_line/people4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x355_crop_center-center_82_line/people4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x711_crop_center-center_82_line/people4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x266_crop_center-center_82_line/people4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x222_crop_center-center_82_line/people4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":533,\"1280\":444,\"2560\":888,\"1024\":355,\"2048\":711,\"768\":266,\"640\":222},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2880\",\"originalImageHeight\":\"1000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AwJ5DKQ7D5jxn27VJAYvs83mQ73AGxt2NvPPHfNFFdMlpYy6n/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#263c63\",\"#c6bb68\",\"#88c2c6\",\"#865da4\",\"#34442a\"],\"lightness\":45,\"placeholderWidth\":1536,\"placeholderHeight\":533,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17183,17420,1,'Andrew-Ali-Booth-SML-1000','2021-05-18 01:28:10','2021-06-09 23:25:14','6fc70a8b-f984-410e-bf50-a288b6403c41',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1025_crop_center-center_82_line/Andrew-Ali-Booth-SML-1000.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x854_crop_center-center_82_line/Andrew-Ali-Booth-SML-1000.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x683_crop_center-center_82_line/Andrew-Ali-Booth-SML-1000.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/Andrew-Ali-Booth-SML-1000.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x427_crop_center-center_82_line/Andrew-Ali-Booth-SML-1000.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1025_crop_center-center_82_line/Andrew-Ali-Booth-SML-1000.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x854_crop_center-center_82_line/Andrew-Ali-Booth-SML-1000.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x683_crop_center-center_82_line/Andrew-Ali-Booth-SML-1000.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/Andrew-Ali-Booth-SML-1000.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x427_crop_center-center_82_line/Andrew-Ali-Booth-SML-1000.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1025,\"1280\":854,\"1024\":683,\"768\":512,\"640\":427},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2000\",\"originalImageHeight\":\"1335\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ax7PS7iaJpnUxwqwDEgk49QAKZd6ZcQRRSeXvSQZUpk/mKu3cjrwrsAQeAasacSYzkk4xiub2nuc1ibI//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#2a3d24\",\"#c7c0aa\",\"#7d8b3e\",\"#90a846\",\"#5e75a7\"],\"lightness\":43,\"placeholderWidth\":1536,\"placeholderHeight\":1025,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17184,17421,1,'contact2','2021-05-18 01:28:14','2021-06-09 23:23:53','e1d83d8a-3562-4dbb-b18c-5bd93d944273',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x859_crop_center-center_82_line/contact2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x687_crop_center-center_82_line/contact2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x515_crop_center-center_82_line/contact2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x429_crop_center-center_82_line/contact2.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x859_crop_center-center_82_line/contact2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x687_crop_center-center_82_line/contact2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x515_crop_center-center_82_line/contact2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x429_crop_center-center_82_line/contact2.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":859,\"1024\":687,\"768\":515,\"640\":429},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1490\",\"originalImageHeight\":\"1000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AZbtYwxvDfWzCYOVZQnQH3/DNWNI+w2120bSB7hjiIyLghewz69aqQgHTrViPmJbJ79qzXJ8kPn5hNwe9J0+e6uaypr2ftOrZ/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#273b62\",\"#c0537a\",\"#d3df51\",\"#89c6c6\",\"#635c6d\"],\"lightness\":46,\"placeholderWidth\":1280,\"placeholderHeight\":859,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17185,17422,1,'iStock-911033734','2021-05-18 01:28:16','2021-06-09 23:16:21','7b02342b-b39f-422f-91a0-9b7ff6571f6d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1081_crop_center-center_82_line/iStock-911033734.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x900_crop_center-center_82_line/iStock-911033734.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x720_crop_center-center_82_line/iStock-911033734.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1441_crop_center-center_82_line/iStock-911033734.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x540_crop_center-center_82_line/iStock-911033734.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x450_crop_center-center_82_line/iStock-911033734.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1081_crop_center-center_82_line/iStock-911033734.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x900_crop_center-center_82_line/iStock-911033734.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x720_crop_center-center_82_line/iStock-911033734.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1441_crop_center-center_82_line/iStock-911033734.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x540_crop_center-center_82_line/iStock-911033734.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x450_crop_center-center_82_line/iStock-911033734.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1081,\"1280\":900,\"1024\":720,\"2048\":1441,\"768\":540,\"640\":450},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2063\",\"originalImageHeight\":\"1452\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A4qMZXjrSybSvvUcZI6GiQnFdt/dBH//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#140c4c\",\"#7a1d7c\",\"#080429\",\"#470c5f\",\"#4c1b76\"],\"lightness\":20,\"placeholderWidth\":1536,\"placeholderHeight\":1081,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17186,17423,1,'iStock-905389930','2021-05-18 01:28:19','2021-06-09 23:16:16','70c74321-3db3-406a-8a90-5d3f2455d353',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-905389930.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-905389930.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-905389930.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-905389930.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-905389930.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-905389930.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-905389930.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-905389930.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-905389930.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-905389930.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-905389930.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-905389930.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"1280\":853,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2121\",\"originalImageHeight\":\"1414\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7nyWxjecfU1ErF7h4Pmyozu7HP8An9at0lAH/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e4e3e3\",\"#d29743\",\"#959593\",\"#4e8c99\",\"#98688f\"],\"lightness\":65,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17187,17424,1,'iStock-958693744','2021-05-18 01:28:22','2021-06-09 23:16:01','da9ebe87-a023-4e60-b6ce-238a897158ae',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-958693744.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-958693744.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-958693744.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-958693744.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-958693744.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-958693744.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-958693744.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-958693744.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-958693744.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-958693744.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-958693744.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-958693744.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"1280\":853,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2120\",\"originalImageHeight\":\"1414\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5aO2jlGFHzUktiUTccCm2xIcYJqS4YnqTXvVUpO9rHoU4QdLma1P/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#33047d\",\"#cf04bb\",\"#5804e8\",\"#89049f\",\"#3e04b7\"],\"lightness\":35,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17188,17425,1,'iStock-950216174','2021-05-18 01:28:25','2021-06-09 23:16:17','779d15b8-6bbb-4ae4-b158-3c8ca6403d6e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-950216174.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-950216174.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-950216174.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-950216174.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-950216174.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-950216174.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-950216174.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-950216174.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-950216174.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-950216174.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-950216174.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-950216174.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"1280\":853,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2121\",\"originalImageHeight\":\"1414\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6GKYOvWmvGjXCuR82O3fH/66mYADgVVnJEqYPY/0rJzNFE//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#cdc4b9\",\"#6a3d2a\",\"#b47a69\",\"#996c54\",\"#8c8078\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17189,17426,1,'iStock-510868382','2021-05-18 01:28:28','2021-06-09 23:15:00','4189bf33-2d28-4b2a-b7f6-c4141782b5ac',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-510868382.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-510868382.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-510868382.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-510868382.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-510868382.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-510868382.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-510868382.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-510868382.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-510868382.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-510868382.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-510868382.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-510868382.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"1280\":853,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2121\",\"originalImageHeight\":\"1414\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Aj0u3tbmALHc+REn8JHLH39a6e1vbeaJBDeQFgoBiBG78s5qvajCjHHT+VMu+EZhw3r3pIbP/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#cac7c5\",\"#322b2a\",\"#6a5250\",\"#7d7d7b\",\"#7c6c55\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17190,17427,1,'iStock-510868020','2021-05-18 01:28:31','2021-06-09 23:15:37','203656ab-7c5c-4833-99d9-f0f8060ee674',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-510868020.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-510868020.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-510868020.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-510868020.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-510868020.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-510868020.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-510868020.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-510868020.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-510868020.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-510868020.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-510868020.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-510868020.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"1280\":853,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2121\",\"originalImageHeight\":\"1414\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AkjgE4T5mj2sCdv8AF7GtLTS2nQmLmdT94yHk+361Tte1XW+4awWmx0NI/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#b89580\",\"#30271e\",\"#f2f0ef\",\"#736c29\",\"#614238\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17191,17428,1,'iStock-656362342','2021-05-18 01:28:35','2021-06-09 23:16:10','d0b8840d-549f-4e70-b2c3-2ffa3467cfeb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/iStock-656362342.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/iStock-656362342.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/iStock-656362342.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1152_crop_center-center_82_line/iStock-656362342.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/iStock-656362342.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/iStock-656362342.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/iStock-656362342.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/iStock-656362342.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/iStock-656362342.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1152_crop_center-center_82_line/iStock-656362342.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/iStock-656362342.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/iStock-656362342.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2309\",\"originalImageHeight\":\"1299\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6aC1MZUmV2wCOQO5zU0EPkxKm95MfxOck/jSrUgoA//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dbdbdb\",\"#433f3d\",\"#7f7e7d\",\"#746860\",\"#78786c\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17192,17429,1,'iStock-1052205052','2021-05-18 01:28:38','2021-06-09 23:14:46','bf1b46d8-4fe5-4615-98e2-447830fb5a10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-1052205052.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-1052205052.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-1052205052.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-1052205052.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-1052205052.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-1052205052.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-1052205052.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-1052205052.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-1052205052.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-1052205052.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-1052205052.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-1052205052.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"1280\":853,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2121\",\"originalImageHeight\":\"1414\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AvzanaLqaae4IkOCDg4z2H6frUs8iqSp2kDjjA+tctNzdu3cXMeD/AMBFXJuc5rJ2Rqrs/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#beaa9b\",\"#1b1d20\",\"#7a6e64\",\"#785842\",\"#654839\"],\"lightness\":41,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17193,17430,1,'iStock-489250372','2021-05-18 01:28:42','2021-06-09 23:14:51','da892173-eff8-4bc6-9b7f-e181306e25ba',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-489250372.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-489250372.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-489250372.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-489250372.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-489250372.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-489250372.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-489250372.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-489250372.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-489250372.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-489250372.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-489250372.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-489250372.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"1280\":853,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2121\",\"originalImageHeight\":\"1414\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3/7MtmiI+bLDrnODXN31v5E7xMylk9D1FXtfmljESpI6qRyFYgGsaXjOOOKTKR//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#766d6a\",\"#d9d9db\",\"#c6bdb3\",\"#211c1a\",\"#b4b4b4\"],\"lightness\":58,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17194,17431,1,'iStock-521457912','2021-05-18 01:28:45','2021-09-27 22:59:35','922f4dd4-9efa-4bd8-a9e4-1ad30a91256c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-521457912.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-521457912.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-521457912.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-521457912.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-521457912.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-521457912.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-521457912.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-521457912.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-521457912.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-521457912.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-521457912.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-521457912.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"1280\":853,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2121\",\"originalImageHeight\":\"1414\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8ANIXTLuyVTaM04ypIchic4JxnpWJdQWqLM7PLCucAlM4Ppgn68103kxLY2xWNASpyQo5rOvoo2J3RqeO4qalXXlRdOnbVn//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#32303c\",\"#c7bcb2\",\"#8ac1eb\",\"#9b6a49\",\"#5285be\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17195,17432,1,'iStock-925712824','2021-05-18 01:28:48','2021-06-09 23:16:25','d9ea048b-7c84-410a-a158-71240cf48510',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-925712824.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-925712824.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-925712824.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-925712824.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-925712824.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-925712824.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-925712824.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-925712824.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-925712824.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-925712824.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-925712824.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-925712824.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"1280\":853,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2121\",\"originalImageHeight\":\"1414\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Atabd3e1Ei2ZgJVpCCeCOOnP+FUfGGsSmyayd45FfBDLg5I9//rVs6bGg0aDCL8z5bjr1615/4jAXVpgoAG48D6motqXfQ//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#cbbaaf\",\"#19100e\",\"#5d3b2c\",\"#675d58\",\"#7f553c\"],\"lightness\":39,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17196,17433,1,'iStock-641523282','2021-05-18 01:28:52','2021-06-09 23:16:08','4febbce0-aa04-441e-8671-37ee0a15bc68',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-641523282.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-641523282.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-641523282.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-641523282.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-641523282.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-641523282.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-641523282.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-641523282.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-641523282.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-641523282.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-641523282.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-641523282.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"1280\":853,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2121\",\"originalImageHeight\":\"1414\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ak84NCIpyCeu4DGKZePAloYmkUoxznbWUXYqmWJ/GqcrM28liSOmT0rgjh4I3dj//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#8c7832\",\"#d3cc25\",\"#3b2c15\",\"#d4af72\",\"#4d331e\"],\"lightness\":38,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17197,17434,1,'iStock-1035462384','2021-05-18 01:28:55','2021-06-09 23:14:40','2ef6248d-c27c-407c-85b5-fd9e5c5a9aaa',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-1035462384.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-1035462384.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-1035462384.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-1035462384.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-1035462384.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-1035462384.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-1035462384.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-1035462384.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-1035462384.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-1035462384.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-1035462384.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-1035462384.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"1280\":853,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2121\",\"originalImageHeight\":\"1414\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AoWNq08iW8qxJGxLqyuvyg9jWrB4fsoog4vLcSAZOT3/OqlmfkT6VamP7p/pXNzJ9Dp9nZbn/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#956d4d\",\"#dae0e3\",\"#312b29\",\"#d49f6e\",\"#ccb489\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17198,17435,1,'iStock-517228554','2021-05-18 01:28:58','2021-06-09 23:16:03','3e1ca1c6-4c9e-494b-b6e6-df859200cfe3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-517228554.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-517228554.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-517228554.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-517228554.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-517228554.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-517228554.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-517228554.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-517228554.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-517228554.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-517228554.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-517228554.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-517228554.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"1280\":853,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2121\",\"originalImageHeight\":\"1414\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A17WVpGbfbXCYHJMgX+TVNeWEbRkiedeck7siixA8pRj+GnaiSEUAkAt0H0qzI//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#bdcfd2\",\"#22293b\",\"#728d95\",\"#4e6d7c\",\"#6e6f5f\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17199,17436,1,'iStock-491490296','2021-05-18 01:29:01','2021-06-09 23:14:52','7e74bfee-47b4-4597-b58a-fedb2e795645',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-491490296.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-491490296.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-491490296.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-491490296.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-491490296.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-491490296.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-491490296.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-491490296.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-491490296.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-491490296.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-491490296.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-491490296.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"1280\":853,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2121\",\"originalImageHeight\":\"1414\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AwIlTYMyKOn86Rwu0jcDjHTvxVcdKKAP/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#363535\",\"#c8c8c8\",\"#b8b253\",\"#7c7c7c\",\"#94947e\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17200,17437,1,'iStock-962558946','2021-05-18 01:29:05','2021-06-09 23:15:50','9da0d4f7-dccb-4e6e-86a5-414a9223c9a1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-962558946.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-962558946.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-962558946.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-962558946.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-962558946.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-962558946.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-962558946.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-962558946.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-962558946.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-962558946.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-962558946.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-962558946.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"1280\":853,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2121\",\"originalImageHeight\":\"1414\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AwYHaLhl3g4C7e1XWaMRBlbL87lIxjmqlv0qDJ+0yc0Af/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#47494c\",\"#dfb126\",\"#877766\",\"#97959f\",\"#a2a7ac\"],\"lightness\":44,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17201,17438,1,'iStock-873554714','2021-05-18 01:29:08','2021-06-09 23:16:14','8b12d226-0ba6-4c56-bd2c-ef903aababa2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-873554714.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-873554714.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-873554714.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-873554714.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-873554714.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-873554714.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-873554714.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-873554714.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-873554714.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-873554714.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-873554714.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-873554714.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"1280\":853,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2121\",\"originalImageHeight\":\"1414\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AydHcadItw9uztIgMJChhnHHPY8U3xBqkd9bgSQlJzJkknOeP0/8Ar1iQk+WBn+Kkm6v7GuVU1zXO5y90/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e19b4e\",\"#441105\",\"#b0340b\",\"#946c44\",\"#a4841c\"],\"lightness\":38,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17202,17439,1,'iStock-515965490','2021-05-18 01:29:11','2021-06-09 23:15:39','115137e4-fd45-4a1c-8e19-56760d93ead3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1020_crop_center-center_82_line/iStock-515965490.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x850_crop_center-center_82_line/iStock-515965490.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x680_crop_center-center_82_line/iStock-515965490.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1360_crop_center-center_82_line/iStock-515965490.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x510_crop_center-center_82_line/iStock-515965490.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x425_crop_center-center_82_line/iStock-515965490.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1020_crop_center-center_82_line/iStock-515965490.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x850_crop_center-center_82_line/iStock-515965490.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x680_crop_center-center_82_line/iStock-515965490.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1360_crop_center-center_82_line/iStock-515965490.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x510_crop_center-center_82_line/iStock-515965490.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x425_crop_center-center_82_line/iStock-515965490.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1020,\"1280\":850,\"1024\":680,\"2048\":1360,\"768\":510,\"640\":425},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2124\",\"originalImageHeight\":\"1411\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6db4t0YUPcSMMR4Lnuei+/8A9asizrTiAJ5FA0f/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#cdcbcb\",\"#624335\",\"#8b8989\",\"#85594a\",\"#9f7868\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":1020,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17203,17440,1,'iStock-506435716','2021-05-18 01:29:15','2021-06-09 23:14:54','8761b4bb-9638-481f-b9c4-32da95b7600c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x813_crop_center-center_82_line/iStock-506435716.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x677_crop_center-center_82_line/iStock-506435716.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x542_crop_center-center_82_line/iStock-506435716.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1084_crop_center-center_82_line/iStock-506435716.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x406_crop_center-center_82_line/iStock-506435716.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x338_crop_center-center_82_line/iStock-506435716.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x813_crop_center-center_82_line/iStock-506435716.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x677_crop_center-center_82_line/iStock-506435716.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x542_crop_center-center_82_line/iStock-506435716.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1084_crop_center-center_82_line/iStock-506435716.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x406_crop_center-center_82_line/iStock-506435716.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x338_crop_center-center_82_line/iStock-506435716.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":813,\"1280\":677,\"1024\":542,\"2048\":1084,\"768\":406,\"640\":338},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2380\",\"originalImageHeight\":\"1260\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AyrnTdIuLWSXTbopJC2SkpxuB6YNVr5rQaYu20WOULhn83JY+uOtFFaW0MLvmsf/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#15272f\",\"#cdd7d1\",\"#4fafc1\",\"#4e7678\",\"#3185b0\"],\"lightness\":44,\"placeholderWidth\":1536,\"placeholderHeight\":813,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17204,17441,1,'iStock-894068816','2021-05-18 01:29:18','2021-06-09 23:16:04','a5df7b38-c511-49f8-b7ef-96162fb6edb5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-894068816.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-894068816.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-894068816.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-894068816.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-894068816.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-894068816.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-894068816.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-894068816.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-894068816.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-894068816.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-894068816.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-894068816.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"1280\":853,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2121\",\"originalImageHeight\":\"1414\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AwTZeVJuW4hAx6nP8qualaTTzI4ClfLGSWAz1rGlJIGa0Nc4W0x/zz/rUu9zZNNPQ/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d08a77\",\"#34272c\",\"#824b46\",\"#9a959a\",\"#908a8c\"],\"lightness\":45,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17205,17442,1,'iStock-680238016','2021-05-18 01:29:21','2021-06-09 23:16:11','976dc648-a32b-4852-b26b-295470455906',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1083_crop_center-center_82_line/iStock-680238016.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x902_crop_center-center_82_line/iStock-680238016.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x722_crop_center-center_82_line/iStock-680238016.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1444_crop_center-center_82_line/iStock-680238016.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x541_crop_center-center_82_line/iStock-680238016.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x451_crop_center-center_82_line/iStock-680238016.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1083_crop_center-center_82_line/iStock-680238016.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x902_crop_center-center_82_line/iStock-680238016.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x722_crop_center-center_82_line/iStock-680238016.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1444_crop_center-center_82_line/iStock-680238016.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x541_crop_center-center_82_line/iStock-680238016.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x451_crop_center-center_82_line/iStock-680238016.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1083,\"1280\":902,\"1024\":722,\"2048\":1444,\"768\":541,\"640\":451},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2062\",\"originalImageHeight\":\"1454\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8At6lJHa3IaTcAwyCvXcDx/WtDQpYZo5pYwwZ35DdQP85qjqltFc3C+cC20cfMR/KrmjWsNtu8lSu7rlif5moLvof/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c9c0b5\",\"#3f2c33\",\"#7c5151\",\"#817171\",\"#8d645b\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":1083,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17206,17443,1,'iStock-1003225576','2021-05-18 01:29:25','2021-06-09 23:14:39','356a2cd5-96c5-41d2-8c42-912b2c885183',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-1003225576.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x854_crop_center-center_82_line/iStock-1003225576.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x683_crop_center-center_82_line/iStock-1003225576.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1366_crop_center-center_82_line/iStock-1003225576.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-1003225576.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x427_crop_center-center_82_line/iStock-1003225576.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-1003225576.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x854_crop_center-center_82_line/iStock-1003225576.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x683_crop_center-center_82_line/iStock-1003225576.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1366_crop_center-center_82_line/iStock-1003225576.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-1003225576.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x427_crop_center-center_82_line/iStock-1003225576.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"1280\":854,\"1024\":683,\"2048\":1366,\"768\":512,\"640\":427},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2119\",\"originalImageHeight\":\"1414\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7OG5ikGVdT06GlhvYXkMfmoX3YCg8/lWbEi+ah2jJPJxUGjqo12fCgfKT0rSEVJO/QyqzcXG3Vn/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e6e6e9\",\"#1ba3d4\",\"#807b7a\",\"#95908e\",\"#95b1bf\"],\"lightness\":64,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17207,17444,1,'iStock-916563360','2021-05-18 01:29:29','2021-06-09 23:16:22','84e6ec6e-a7da-42ce-8a5d-1a3a2aa5961c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/iStock-916563360.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/iStock-916563360.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/iStock-916563360.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1024_crop_center-center_82_line/iStock-916563360.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/iStock-916563360.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/iStock-916563360.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/iStock-916563360.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/iStock-916563360.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/iStock-916563360.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1024_crop_center-center_82_line/iStock-916563360.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/iStock-916563360.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/iStock-916563360.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"2048\":1024,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2448\",\"originalImageHeight\":\"1224\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AIg0jrGgy7HAFdPb2scVsICAy4+bI+8aKK48LFWbO/Gyd1E//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#da5f19\",\"#e0dede\",\"#844c42\",\"#ac9486\",\"#ac8c94\"],\"lightness\":59,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17208,17445,1,'iStock-994198500','2021-05-18 01:29:34','2021-06-09 23:16:00','dc27b019-9f0c-414c-9596-72cdf34f0d7b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x777_crop_center-center_82_line/iStock-994198500.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1555_crop_center-center_82_line/iStock-994198500.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x648_crop_center-center_82_line/iStock-994198500.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1296_crop_center-center_82_line/iStock-994198500.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x518_crop_center-center_82_line/iStock-994198500.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1037_crop_center-center_82_line/iStock-994198500.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x388_crop_center-center_82_line/iStock-994198500.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x324_crop_center-center_82_line/iStock-994198500.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x777_crop_center-center_82_line/iStock-994198500.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1555_crop_center-center_82_line/iStock-994198500.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x648_crop_center-center_82_line/iStock-994198500.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1296_crop_center-center_82_line/iStock-994198500.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x518_crop_center-center_82_line/iStock-994198500.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1037_crop_center-center_82_line/iStock-994198500.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x388_crop_center-center_82_line/iStock-994198500.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x324_crop_center-center_82_line/iStock-994198500.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":777,\"3072\":1555,\"1280\":648,\"2560\":1296,\"1024\":518,\"2048\":1037,\"768\":388,\"640\":324},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3999\",\"originalImageHeight\":\"2025\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3TM32clC0gdQoJ4xwT/hWbLdypEqqNySqJAGPA5AxiiioSvqVKTi3FH/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d3c8bf\",\"#465c5f\",\"#92584b\",\"#c48878\",\"#a56968\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":777,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17209,17446,1,'iStock-680338102','2021-05-18 01:29:41','2021-06-09 23:16:12','88c107a8-4dc9-457a-abde-4b09dbc0240f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x992_crop_center-center_82_line/iStock-680338102.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x827_crop_center-center_82_line/iStock-680338102.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x661_crop_center-center_82_line/iStock-680338102.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1323_crop_center-center_82_line/iStock-680338102.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x496_crop_center-center_82_line/iStock-680338102.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x413_crop_center-center_82_line/iStock-680338102.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x992_crop_center-center_82_line/iStock-680338102.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x827_crop_center-center_82_line/iStock-680338102.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x661_crop_center-center_82_line/iStock-680338102.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1323_crop_center-center_82_line/iStock-680338102.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x496_crop_center-center_82_line/iStock-680338102.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x413_crop_center-center_82_line/iStock-680338102.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":992,\"1280\":827,\"1024\":661,\"2048\":1323,\"768\":496,\"640\":413},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2154\",\"originalImageHeight\":\"1392\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A0INFvVnklklWPe247OrHHU8U8W2qyx7HkWNPrmrt47/aEXc209s8Vl6z8sOV4ORyKxm1F2NYXauf/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d2cac6\",\"#312922\",\"#a0733c\",\"#79472f\",\"#a78467\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":992,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17210,17447,1,'iStock-937407226','2021-05-18 01:29:45','2021-06-09 23:16:27','a74232e9-b7f8-475f-ad3e-799dcf6a732e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-937407226.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x854_crop_center-center_82_line/iStock-937407226.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x683_crop_center-center_82_line/iStock-937407226.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1366_crop_center-center_82_line/iStock-937407226.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-937407226.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x427_crop_center-center_82_line/iStock-937407226.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-937407226.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x854_crop_center-center_82_line/iStock-937407226.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x683_crop_center-center_82_line/iStock-937407226.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1366_crop_center-center_82_line/iStock-937407226.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-937407226.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x427_crop_center-center_82_line/iStock-937407226.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"1280\":854,\"1024\":683,\"2048\":1366,\"768\":512,\"640\":427},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2119\",\"originalImageHeight\":\"1414\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A2d7i6XA/eFcZ7YH/AOs0/E4Uj5KiBPnde1TEnHWt02ckkj//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#94c8d9\",\"#217090\",\"#dac6cc\",\"#8d4a52\",\"#d16e66\"],\"lightness\":59,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17211,17448,1,'iStock-133313561','2021-05-18 01:29:48','2021-06-09 23:14:49','a775dbd7-8291-4c51-b60e-96431616ca6a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1021_crop_center-center_82_line/iStock-133313561.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x851_crop_center-center_82_line/iStock-133313561.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1702_crop_center-center_82_line/iStock-133313561.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x680_crop_center-center_82_line/iStock-133313561.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1361_crop_center-center_82_line/iStock-133313561.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x510_crop_center-center_82_line/iStock-133313561.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x425_crop_center-center_82_line/iStock-133313561.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1021_crop_center-center_82_line/iStock-133313561.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x851_crop_center-center_82_line/iStock-133313561.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1702_crop_center-center_82_line/iStock-133313561.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x680_crop_center-center_82_line/iStock-133313561.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1361_crop_center-center_82_line/iStock-133313561.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x510_crop_center-center_82_line/iStock-133313561.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x425_crop_center-center_82_line/iStock-133313561.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1021,\"1280\":851,\"2560\":1702,\"1024\":680,\"2048\":1361,\"768\":510,\"640\":425},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3008\",\"originalImageHeight\":\"2000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AuS2llbxRTWERktygO6NQf5jP4VmT2VrqEcjGPEynowGSOxx2pPBs0o1IQiRxFhvk3Hb19K6XUY037ti7gCAccgVzNWNlqf/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#b69c73\",\"#2b2015\",\"#5a452d\",\"#f5e6ce\",\"#6c5533\"],\"lightness\":41,\"placeholderWidth\":1536,\"placeholderHeight\":1021,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17212,17449,1,'iStock-916628448','2021-05-18 01:29:54','2021-06-09 23:16:24','90387ff6-471b-4526-bead-abe53ebe4b49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x820_crop_center-center_82_line/iStock-916628448.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x683_crop_center-center_82_line/iStock-916628448.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x547_crop_center-center_82_line/iStock-916628448.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1094_crop_center-center_82_line/iStock-916628448.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x410_crop_center-center_82_line/iStock-916628448.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x341_crop_center-center_82_line/iStock-916628448.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x820_crop_center-center_82_line/iStock-916628448.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x683_crop_center-center_82_line/iStock-916628448.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x547_crop_center-center_82_line/iStock-916628448.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1094_crop_center-center_82_line/iStock-916628448.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x410_crop_center-center_82_line/iStock-916628448.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x341_crop_center-center_82_line/iStock-916628448.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":820,\"1280\":683,\"1024\":547,\"2048\":1094,\"768\":410,\"640\":341},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2368\",\"originalImageHeight\":\"1265\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AntEvILrLOBH1DDv+GOvvmtcxm4tnmZ8Mq42FR1JoorSGxnPc/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#b2bfca\",\"#2e3436\",\"#688498\",\"#58514c\",\"#655f58\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":820,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17213,17450,1,'iStock-1036100456','2021-05-18 01:29:58','2021-06-09 23:14:45','159ed8d0-baec-4e32-8977-d0a1ecea1638',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/iStock-1036100456.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/iStock-1036100456.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/iStock-1036100456.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1024_crop_center-center_82_line/iStock-1036100456.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/iStock-1036100456.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/iStock-1036100456.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/iStock-1036100456.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/iStock-1036100456.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/iStock-1036100456.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1024_crop_center-center_82_line/iStock-1036100456.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/iStock-1036100456.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/iStock-1036100456.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"2048\":1024,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2448\",\"originalImageHeight\":\"1224\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ax7eO0+YsSGGNo7HnvV2AwDIZlwaKK1RLP//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#54596e\",\"#debf72\",\"#8694ac\",\"#14131c\",\"#888696\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17214,17451,1,'iStock-939395854','2021-05-18 01:30:03','2021-06-09 23:16:29','f018b3c4-37cc-4d4d-b515-bf3ef1e91149',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-939395854.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-939395854.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-939395854.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-939395854.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-939395854.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-939395854.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-939395854.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-939395854.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-939395854.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-939395854.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-939395854.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-939395854.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"1280\":853,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2121\",\"originalImageHeight\":\"1414\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6SFVkV+u4dOabmqFw7LJGAxAPUA9atDpTe5tQ+E//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d3bcc6\",\"#525b5b\",\"#a57580\",\"#8b5963\",\"#847464\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17215,17452,1,'iStock-1018683178','2021-05-18 01:30:07','2021-06-09 23:14:30','c4306d11-27e1-4fe9-a0e5-6ce0185b2b03',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-1018683178.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-1018683178.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-1018683178.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-1018683178.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-1018683178.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-1018683178.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-1018683178.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-1018683178.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-1018683178.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-1018683178.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-1018683178.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-1018683178.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"1280\":853,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2121\",\"originalImageHeight\":\"1414\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AuyJ1z+Ofx/8Ar/r7VXdcev8AX/8AXx+Y96vycHjt/n+g/Kqc3CtjjAP8j/gPyFdEGZSR/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#aaa6a0\",\"#2857ad\",\"#e3e9f1\",\"#627cad\",\"#596491\"],\"lightness\":61,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17216,17453,1,'iStock-929888090','2021-05-18 01:30:11','2021-06-09 23:16:26','5d4ca942-5c40-420a-a2f6-e98ee1a4f8f8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-929888090.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-929888090.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-929888090.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-929888090.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-929888090.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-929888090.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-929888090.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-929888090.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-929888090.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-929888090.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-929888090.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-929888090.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"1280\":853,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2121\",\"originalImageHeight\":\"1414\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AqGVbi0S2uTuljjWLzEGVHJ4J+hHTuKy57OIzSKtwoCnA3cZqwI08r7i8H0qrJGn9xfypMo//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#3e3533\",\"#bac1c1\",\"#ad9180\",\"#797a7b\",\"#94a08e\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17217,17454,1,'PHN preview','2021-05-18 01:30:14','2021-06-09 23:16:30','eba5fe4c-b6c4-4c7b-8de6-24318388b42a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/PHN-preview.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/PHN-preview.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/PHN-preview.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/PHN-preview.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/PHN-preview.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/PHN-preview.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/PHN-preview.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/PHN-preview.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/PHN-preview.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/PHN-preview.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"1280\":960,\"1024\":768,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1200\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Az5I7uQ/uUYJuwHBXk4GRz9f1pzWepWzI91DKkTNty6gDOD6fSpCThRuICsWXB6E45/QVNPd3NwgSeeSRQdwDHIz6/rXo8tTmvfQ87mhy2tqf/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#2874b4\",\"#e3e7e3\",\"#122431\",\"#143366\",\"#43d8db\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17218,17455,1,'qfcc striped','2021-05-18 01:30:17','2021-06-09 23:18:06','e70725e3-12e7-49bf-8b20-b6f3895cefc9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1151_crop_center-center_82_line/qfcc-striped.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x959_crop_center-center_82_line/qfcc-striped.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x767_crop_center-center_82_line/qfcc-striped.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x575_crop_center-center_82_line/qfcc-striped.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x479_crop_center-center_82_line/qfcc-striped.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1151_crop_center-center_82_line/qfcc-striped.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x959_crop_center-center_82_line/qfcc-striped.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x767_crop_center-center_82_line/qfcc-striped.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x575_crop_center-center_82_line/qfcc-striped.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x479_crop_center-center_82_line/qfcc-striped.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1151,\"1280\":959,\"1024\":767,\"768\":575,\"640\":479},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1599\",\"originalImageHeight\":\"1199\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Av2WlrcWySmOdt2fusoHXHfmpL/RUtbSS4Wdvkx8rL6nHWtfw4AdJQkZ+Zh+tHiEAaRJgdWH86z5Vy3PS+sVfrHJzaXt+J//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e5e7e6\",\"#f53b54\",\"#51585f\",\"#afa896\",\"#b09097\"],\"lightness\":65,\"placeholderWidth\":1536,\"placeholderHeight\":1151,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17219,17456,1,'qcs','2021-05-18 01:30:19','2021-06-09 23:18:06','7adb013c-32a7-494e-bbed-d993341f6de3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1151_crop_center-center_82_line/qcs.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x959_crop_center-center_82_line/qcs.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x767_crop_center-center_82_line/qcs.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x575_crop_center-center_82_line/qcs.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x479_crop_center-center_82_line/qcs.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1151_crop_center-center_82_line/qcs.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x959_crop_center-center_82_line/qcs.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x767_crop_center-center_82_line/qcs.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x575_crop_center-center_82_line/qcs.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x479_crop_center-center_82_line/qcs.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1151,\"1280\":959,\"1024\":767,\"768\":575,\"640\":479},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1599\",\"originalImageHeight\":\"1199\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6i7WRLhb2RA0eNpKD5o/Q+9JYGK6uJbhcC4TAKEYOB0Jp9yS0sURPyHcxX1I6UySJGvreQr8xRwSOMjA61onoc7Vnp3P/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e2e8e9\",\"#107cbb\",\"#7acbc7\",\"#999997\",\"#a9a7a2\"],\"lightness\":65,\"placeholderWidth\":1536,\"placeholderHeight\":1151,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17220,17457,1,'disti','2021-05-18 01:30:21','2021-06-09 23:23:28','f623c342-9772-4fb3-ac12-fdd1ebddb6aa',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1151_crop_center-center_82_line/disti.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x959_crop_center-center_82_line/disti.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x767_crop_center-center_82_line/disti.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x575_crop_center-center_82_line/disti.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x479_crop_center-center_82_line/disti.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1151_crop_center-center_82_line/disti.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x959_crop_center-center_82_line/disti.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x767_crop_center-center_82_line/disti.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x575_crop_center-center_82_line/disti.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x479_crop_center-center_82_line/disti.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1151,\"1280\":959,\"1024\":767,\"768\":575,\"640\":479},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1599\",\"originalImageHeight\":\"1199\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AZaXahVCrbupAwrBM/wAq19T0Wz1SyN5bx/ZZlUkgAbTjHBA/pXNeHEDa3CcspAJBVip/Su9ndjazZOf3bfyq3eLISWrP/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e6e6e6\",\"#2e3d55\",\"#46b089\",\"#838082\",\"#96acbb\"],\"lightness\":57,\"placeholderWidth\":1536,\"placeholderHeight\":1151,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17221,17458,1,'placeholder-inline','2021-05-18 01:30:23','2021-06-09 23:18:40','4f6ec471-f1cd-4fe5-b7f5-d377154d3d08',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x756_crop_center-center_82_line/placeholder-inline.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x567_crop_center-center_82_line/placeholder-inline.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x473_crop_center-center_82_line/placeholder-inline.jpg\"},\"optimizedWebPImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x756_crop_center-center_82_line/placeholder-inline.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x567_crop_center-center_82_line/placeholder-inline.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x473_crop_center-center_82_line/placeholder-inline.jpg.webp\"},\"variantSourceWidths\":[\"1024\",\"768\",\"640\"],\"variantHeights\":{\"1024\":756,\"768\":567,\"640\":473},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1242\",\"originalImageHeight\":\"918\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AhAyeooIwcZB+lJRXqHef/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#a24cbc\",\"#f3dbf7\",\"#b18dbf\",\"#d498f0\",\"#c996e4\"],\"lightness\":69,\"placeholderWidth\":1024,\"placeholderHeight\":756,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17222,17459,1,'placeholder-fullwidth','2021-05-18 01:30:25','2021-06-09 23:18:40','c72ea975-7bc1-4c7e-8e7e-43e73feb0327',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x860_crop_center-center_82_line/placeholder-fullwidth.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x688_crop_center-center_82_line/placeholder-fullwidth.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x516_crop_center-center_82_line/placeholder-fullwidth.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x430_crop_center-center_82_line/placeholder-fullwidth.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x860_crop_center-center_82_line/placeholder-fullwidth.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x688_crop_center-center_82_line/placeholder-fullwidth.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x516_crop_center-center_82_line/placeholder-fullwidth.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x430_crop_center-center_82_line/placeholder-fullwidth.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":860,\"1024\":688,\"768\":516,\"640\":430},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1440\",\"originalImageHeight\":\"968\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AYBnqQPrQRjuDRRXMfWH/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#fb3c5a\",\"#fac7d2\",\"#e87e8c\",\"#fc94a4\",\"#b15969\"],\"lightness\":71,\"placeholderWidth\":1280,\"placeholderHeight\":860,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17223,17460,1,'CT-1','2021-05-18 01:30:27','2021-06-09 23:23:54','4a1894ec-c4f5-45c4-8c86-ceb07d6e75de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/CT-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/CT-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/CT-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/CT-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/CT-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/CT-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/CT-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/CT-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/CT-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/CT-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"1280\":960,\"1024\":768,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1200\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A73J34yuP1rje/Wu0rjK68N1PPxv2fmf/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#3db7e8\",\"#e8eeeb\",\"#2b5d7b\",\"#8cbac6\",\"#808185\"],\"lightness\":62,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17224,17461,1,'CT-4','2021-05-18 01:30:29','2021-06-09 23:23:56','953eedea-4f87-473f-82a5-59aa90101445',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/CT-4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/CT-4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/CT-4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/CT-4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/CT-4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/CT-4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/CT-4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/CT-4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/CT-4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/CT-4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"1280\":960,\"1024\":768,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1200\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A2NSeWPUCybiAo4GavWUV2r755kZGX5VB5FGoRh/Lzng9qbaDFwR6A1M5csk++gU1fmXbU//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#4588a5\",\"#e3e1de\",\"#dfa446\",\"#87b6c1\",\"#987ab0\"],\"lightness\":62,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17225,17462,1,'CT-3','2021-05-18 01:30:31','2021-06-09 23:23:50','7a84c85e-230d-499a-a4f5-f304abbaa5c3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/CT-3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/CT-3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/CT-3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/CT-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/CT-3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/CT-3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/CT-3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/CT-3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/CT-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/CT-3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"1280\":960,\"1024\":768,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1200\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Aa0MkDtKMgyN121bQ7jwy4rFgnlE3DkZIB962FQLJxngetd9OTbszya0Elc//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#38a4d1\",\"#eccc38\",\"#2d6280\",\"#304f5d\",\"#7cbeb7\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17226,17463,1,'CT-2','2021-05-18 01:30:33','2021-06-09 23:23:55','d730b358-1ab3-4b43-97da-b0e6cdef00ed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/CT-2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/CT-2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/CT-2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/CT-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/CT-2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/CT-2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/CT-2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/CT-2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/CT-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/CT-2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"1280\":960,\"1024\":768,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1200\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Aqa7g+RnJxu6fhXc6ax/ecr1A/nXC+IP+Xf8A4F/Su903/lp+H9azxv8AvVP5/kZYP+A/66n/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#3eb6e7\",\"#2b3c50\",\"#f6ca25\",\"#f2f6f5\",\"#345c77\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17227,17464,1,'ccc-1','2021-05-18 01:30:35','2021-06-09 23:25:51','8a3c770b-1cd1-42fb-8ce9-2523090e97db',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/ccc-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/ccc-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/ccc-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/ccc-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/ccc-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/ccc-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/ccc-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/ccc-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/ccc-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/ccc-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"1280\":960,\"1024\":768,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1200\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ao3di0KSybnWBvlRwQCSRkY4osEMtjMfLlMjxIFKnblwT1yRnt61mXU0zmBHlZlCZwcdckfyFaPhy5cT3K8FdgYAjODk9K6Yu8jmkuWGh/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1f2c3b\",\"#c1d6e3\",\"#7abbe5\",\"#3c8cc5\",\"#2c6b9a\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17228,17465,1,'ccc-3','2021-05-18 01:30:37','2021-06-03 05:05:34','62f8e81d-b22d-416d-ad41-92965aac84c5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1151_crop_center-center_82_line/ccc-3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x959_crop_center-center_82_line/ccc-3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x767_crop_center-center_82_line/ccc-3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x575_crop_center-center_82_line/ccc-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x479_crop_center-center_82_line/ccc-3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1151_crop_center-center_82_line/ccc-3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x959_crop_center-center_82_line/ccc-3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x767_crop_center-center_82_line/ccc-3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x575_crop_center-center_82_line/ccc-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x479_crop_center-center_82_line/ccc-3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1151,\"1280\":959,\"1024\":767,\"768\":575,\"640\":479},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1601\",\"originalImageHeight\":\"1200\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5RbeVDExVdjkAEOCefbOaualcTODaTTFliGYw456evWsYOyTBlJBB4NLLNLNMGldnYYAJOeK3MrM/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#101e35\",\"#becfd9\",\"#6d9fc0\",\"#3377a7\",\"#476883\"],\"lightness\":46,\"placeholderWidth\":1536,\"placeholderHeight\":1151,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17229,17466,1,'ccc-6','2021-05-18 01:30:39','2021-06-03 05:05:43','d44662f8-ded5-4012-a633-f540f00fa8e1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/ccc-6.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/ccc-6.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/ccc-6.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/ccc-6.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/ccc-6.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/ccc-6.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/ccc-6.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/ccc-6.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/ccc-6.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/ccc-6.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"1280\":960,\"1024\":768,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1200\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A0dWvhZPjeGToWXOVb3Pan/b2uba0NllvOkAkBXBC85z6dDUGtXhgjmQQwttTcC6ZIODzWLZ3t3LHdym5kDRR5ABwD+HSsp0oRV0hx13P/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c5c488\",\"#313648\",\"#725245\",\"#d5e0e9\",\"#aaae39\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17230,17467,1,'ccc-4','2021-05-18 01:30:43','2021-06-03 05:05:38','b39cef4f-77bf-4d60-b763-2719863e17ad',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/ccc-4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/ccc-4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/ccc-4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/ccc-4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/ccc-4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/ccc-4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/ccc-4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/ccc-4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/ccc-4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/ccc-4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"1280\":960,\"1024\":768,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1601\",\"originalImageHeight\":\"1201\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8ApWzxxQK6grG6/exzn6j2rb0k20+5pEVkZPkHqeQa88gJXBBPI5596vW2pT2ykRhAWOd2Ofzo5Uwuz//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#373435\",\"#d1cdc1\",\"#978d7f\",\"#648baf\",\"#a2b2c3\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17231,17468,1,'ccc-5','2021-05-18 01:30:45','2021-06-03 05:05:15','1df5ee55-35e9-46ff-b281-b1894b879b83',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/ccc-5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/ccc-5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/ccc-5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/ccc-5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/ccc-5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/ccc-5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/ccc-5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/ccc-5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/ccc-5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/ccc-5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"1280\":960,\"1024\":768,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1200\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ao6Po6Rh5yHdEj3ErgjpnI55qP7VCI5JldvOUMoBAyQen8/SqVtf3llZiSC5kHONpOQB+Naekka1byvdoge3A2sigZ9znPP0olroNd2f/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#38353a\",\"#cdbbaf\",\"#907769\",\"#9fafb7\",\"#4b7eaf\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17232,17469,1,'ccc-2','2021-05-18 01:30:48','2021-06-03 05:05:30','ec53b03c-b30d-45c2-9d52-2e515c16c9a8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/ccc-2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/ccc-2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/ccc-2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/ccc-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/ccc-2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/ccc-2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/ccc-2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/ccc-2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/ccc-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/ccc-2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"1280\":960,\"1024\":768,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1200\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AwJrBIkDnzQv97bxn60lxa28NhFMkwaWQ/cyMoMnr9aqKxd1B6E4pLjiUjsAMVTQkz//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#262a36\",\"#c3a599\",\"#715653\",\"#136ba5\",\"#7aacc9\"],\"lightness\":40,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17233,17470,1,'h','2021-05-18 01:30:50','2021-06-09 23:25:05','1839a20e-9e86-4137-affb-e7cc8f6520fd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1151_crop_center-center_82_line/h.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x959_crop_center-center_82_line/h.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x767_crop_center-center_82_line/h.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x575_crop_center-center_82_line/h.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x479_crop_center-center_82_line/h.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1151_crop_center-center_82_line/h.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x959_crop_center-center_82_line/h.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x767_crop_center-center_82_line/h.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x575_crop_center-center_82_line/h.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x479_crop_center-center_82_line/h.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1151,\"1280\":959,\"1024\":767,\"768\":575,\"640\":479},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1599\",\"originalImageHeight\":\"1199\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ak062Sd3M2Nv8IJxUMsYClxtA3bQFbPrzVWSV1O0H5T1GKk8x3wrEbR0GAK61Cp7S99DtaV7o/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#9951ab\",\"#d4bfaf\",\"#cc534a\",\"#313547\",\"#dd846e\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":1151,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17234,17471,1,'Bruce-black','2021-05-18 01:30:52','2021-06-09 23:25:27','db767cea-2e03-438c-bb5e-f5732fe63d0f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/Bruce-black.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/Bruce-black.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Bruce-black.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Bruce-black.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Bruce-black.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/Bruce-black.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/Bruce-black.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Bruce-black.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Bruce-black.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Bruce-black.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1600\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5PQtOt9RuWS5naJFXI2rkk+lQ6xp/wDZ14Y1ZmiblCwwce/vXW+H/CWpWMEl7dOsO5OLcDczemfSoNU8PanrMAuIDGzQkjyWG126cj1/Glrcuy5bn//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c6a19b\",\"#0c0a09\",\"#8c3e38\",\"#7c7c81\",\"#7c7174\"],\"lightness\":41,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17235,17472,1,'Bruce','2021-05-18 01:30:55','2021-06-09 23:25:28','a41a196a-a647-46e7-97c0-76f6d28d753d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/Bruce.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/Bruce.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Bruce.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Bruce.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Bruce.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/Bruce.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/Bruce.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Bruce.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Bruce.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Bruce.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1600\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A63U53gtwY38sscbwm8jj0pmkXUlzDIJXLlGwHKbSwx3H51JqkTSWTqqb2BBxUOiRNDZEOgQsxbA9K5PZvl21L05bn//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#efefc0\",\"#7c5647\",\"#b88876\",\"#787c5c\",\"#7c7c6c\"],\"lightness\":58,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17236,17473,1,'1','2021-05-18 01:30:58','2021-06-09 23:22:54','9ab9cc7a-51b2-4010-96bd-5b9c7d128ebd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"1280\":960,\"1024\":768,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1200\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7GS7/wBKkhR/mTG4Y6ZGaSw1GG9fbFKJMAngcVZe1heRpCmHbG5lJBOPWo7TTbKycva2sUTkYLKuDj0oA//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dbdddd\",\"#1d1a15\",\"#8a8d90\",\"#846144\",\"#997c5b\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17237,17474,1,'2','2021-05-18 01:31:00','2021-06-09 23:20:39','9631025b-8c86-43b9-a62f-318c27c6cf5a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"1280\":960,\"1024\":768,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1200\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8As67rmp2viWS0t7rZAuzCbU7gZ6jNdfBIzty2R9KqXeg6be3f2q4tg0/GX3EZx071ejhWM5G4n3OabZKTR//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dce0e1\",\"#0d313f\",\"#787c7c\",\"#6d7072\",\"#599e99\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17238,17475,1,'3','2021-05-18 01:31:02','2021-06-09 23:21:35','be2feec2-03b4-4d7b-b21a-aa7db6d7acf5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1152_crop_center-center_82_line/3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x960_crop_center-center_82_line/3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x768_crop_center-center_82_line/3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x576_crop_center-center_82_line/3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x480_crop_center-center_82_line/3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"1280\":960,\"1024\":768,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1200\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ax7Cee4haFZC0ykyITySP4hn9fz9atrZwmGP7T+/bO9Qr8YPXLDr07enWodZjjt7Qx26CJBNtITPzjB6+vSq1uS+mtljiKQBcHswOR+n86080YeR//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#22444c\",\"#dbdddd\",\"#69807d\",\"#8faaa9\",\"#879ca4\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17239,17476,1,'Suz-black','2021-05-18 01:31:05','2021-06-09 23:17:43','89af190a-de54-401a-be69-9763cba89d38',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/Suz-black.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/Suz-black.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Suz-black.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Suz-black.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Suz-black.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/Suz-black.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/Suz-black.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Suz-black.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Suz-black.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Suz-black.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1600\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5LQNNj1PUBDNI0cYUksoyelVL+2+y3ckP9xsfWtzwxBDbMt5czyRE/6tVXIbsc1X1y2gkke4gldiOoZQPpwKnW5dlyn/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#140f0d\",\"#d0ab9b\",\"#885144\",\"#75727c\",\"#7c7c76\"],\"lightness\":38,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17240,17477,1,'19_06 Landing page_13fam','2021-05-18 01:31:08','2021-06-09 23:23:18','056650d7-9a26-4c59-b110-b4e9a8fca303',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x800_crop_center-center_82_line/19_06-Landing-page_13fam.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x666_crop_center-center_82_line/19_06-Landing-page_13fam.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x533_crop_center-center_82_line/19_06-Landing-page_13fam.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x400_crop_center-center_82_line/19_06-Landing-page_13fam.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x333_crop_center-center_82_line/19_06-Landing-page_13fam.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x800_crop_center-center_82_line/19_06-Landing-page_13fam.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x666_crop_center-center_82_line/19_06-Landing-page_13fam.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x533_crop_center-center_82_line/19_06-Landing-page_13fam.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x400_crop_center-center_82_line/19_06-Landing-page_13fam.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x333_crop_center-center_82_line/19_06-Landing-page_13fam.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":800,\"1280\":666,\"1024\":533,\"768\":400,\"640\":333},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2000\",\"originalImageHeight\":\"1042\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7SQXxkcRm32H7u4Nms65s7l9UtmaQ4UDOwkAnPp9KKKBNXsf/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1f7b89\",\"#dfdddb\",\"#9e4a54\",\"#a7a459\",\"#8e9e9c\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":800,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17241,17478,1,'19_06 Landing page_GetStartedVoucher','2021-05-18 01:31:11','2021-06-09 23:23:13','3905464c-5c71-403c-a3df-ee8208a2a965',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x800_crop_center-center_82_line/19_06-Landing-page_GetStartedVoucher.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x666_crop_center-center_82_line/19_06-Landing-page_GetStartedVoucher.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x533_crop_center-center_82_line/19_06-Landing-page_GetStartedVoucher.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x400_crop_center-center_82_line/19_06-Landing-page_GetStartedVoucher.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x333_crop_center-center_82_line/19_06-Landing-page_GetStartedVoucher.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x800_crop_center-center_82_line/19_06-Landing-page_GetStartedVoucher.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x666_crop_center-center_82_line/19_06-Landing-page_GetStartedVoucher.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x533_crop_center-center_82_line/19_06-Landing-page_GetStartedVoucher.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x400_crop_center-center_82_line/19_06-Landing-page_GetStartedVoucher.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x333_crop_center-center_82_line/19_06-Landing-page_GetStartedVoucher.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":800,\"1280\":666,\"1024\":533,\"768\":400,\"640\":333},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2000\",\"originalImageHeight\":\"1042\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AnDSB38wZQEYC9cd6nAXaOTmiitkjy5PTY//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#54b7b1\",\"#daa498\",\"#402c1e\",\"#92b5ad\",\"#5c6e4d\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":800,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17242,17479,1,'19_06 Landing page_HQT','2021-05-18 01:31:14','2021-06-09 23:22:50','421ef11b-ee1c-4839-8583-3e93eafa5958',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x800_crop_center-center_82_line/19_06-Landing-page_HQT.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x666_crop_center-center_82_line/19_06-Landing-page_HQT.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x533_crop_center-center_82_line/19_06-Landing-page_HQT.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x400_crop_center-center_82_line/19_06-Landing-page_HQT.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x333_crop_center-center_82_line/19_06-Landing-page_HQT.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x800_crop_center-center_82_line/19_06-Landing-page_HQT.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x666_crop_center-center_82_line/19_06-Landing-page_HQT.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x533_crop_center-center_82_line/19_06-Landing-page_HQT.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x400_crop_center-center_82_line/19_06-Landing-page_HQT.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x333_crop_center-center_82_line/19_06-Landing-page_HQT.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":800,\"1280\":666,\"1024\":533,\"768\":400,\"640\":333},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2000\",\"originalImageHeight\":\"1042\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ayf7OlaHCQRucffjYtz+HerL6cZ4vJS2SGRScNv8A15HSiipqVpX9PUmFNW9T/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1a4668\",\"#d0b175\",\"#3e351c\",\"#7facd1\",\"#5389cd\"],\"lightness\":41,\"placeholderWidth\":1536,\"placeholderHeight\":800,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17243,17480,1,'19_06 Landing page_No3','2021-05-18 01:31:17','2021-06-09 23:22:42','a4c8e6dc-2a21-4f86-aa0c-388d8873c261',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x800_crop_center-center_82_line/19_06-Landing-page_No3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x666_crop_center-center_82_line/19_06-Landing-page_No3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x533_crop_center-center_82_line/19_06-Landing-page_No3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x400_crop_center-center_82_line/19_06-Landing-page_No3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x333_crop_center-center_82_line/19_06-Landing-page_No3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x800_crop_center-center_82_line/19_06-Landing-page_No3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x666_crop_center-center_82_line/19_06-Landing-page_No3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x533_crop_center-center_82_line/19_06-Landing-page_No3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x400_crop_center-center_82_line/19_06-Landing-page_No3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x333_crop_center-center_82_line/19_06-Landing-page_No3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":800,\"1280\":666,\"1024\":533,\"768\":400,\"640\":333},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2000\",\"originalImageHeight\":\"1042\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Aj0jd5c32MN5wUbufftUesCYeT9qYmQhiPpniiilf/a+X+tjXqf/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#5f3985\",\"#d1d662\",\"#9aaa61\",\"#4c3d24\",\"#aa87cc\"],\"lightness\":46,\"placeholderWidth\":1536,\"placeholderHeight\":800,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17244,17481,1,'nwo-traffic','2021-05-18 01:31:20','2021-06-09 23:14:03','64f3dc06-d782-4474-a7bb-0fbd553c7f32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"471\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_471x277_crop_center-center_line/nwo-traffic.png\"},\"optimizedWebPImageUrls\":{\"471\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_471x277_crop_center-center_line/nwo-traffic.png.webp\"},\"variantSourceWidths\":[\"471\"],\"variantHeights\":{\"471\":277},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"471\",\"originalImageHeight\":\"277\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AS4tTZKQ6quemGOOP5df0q5DqY2nzmVfTAPSodY/1sX/AqzE+5/31/StN0Tsf/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1b253a\",\"#f6f7f7\",\"#505c78\",\"#d4d4d4\",\"#3c5484\"],\"lightness\":52,\"placeholderWidth\":471,\"placeholderHeight\":277,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17245,17482,1,'piv-1','2021-05-18 01:31:21','2021-06-09 23:18:27','13821e10-a73f-47c6-8ce2-58f2b58947e8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1008_crop_center-center_82_line/piv-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x840_crop_center-center_82_line/piv-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x672_crop_center-center_82_line/piv-1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1344_crop_center-center_82_line/piv-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x504_crop_center-center_82_line/piv-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x420_crop_center-center_82_line/piv-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1008_crop_center-center_82_line/piv-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x840_crop_center-center_82_line/piv-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x672_crop_center-center_82_line/piv-1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1344_crop_center-center_82_line/piv-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x504_crop_center-center_82_line/piv-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x420_crop_center-center_82_line/piv-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1008,\"1280\":840,\"1024\":672,\"2048\":1344,\"768\":504,\"640\":420},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2400\",\"originalImageHeight\":\"1575\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5ZQpOGbaPXGaGAB+Vtw9cYptFdZzH//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#133353\",\"#ccdbe2\",\"#67717b\",\"#849cac\",\"#8494ac\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":1008,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17246,17483,1,'piv-2','2021-05-18 01:31:26','2021-06-09 23:18:22','620b9aa2-dfe8-4200-8063-42579b65e626',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1008_crop_center-center_82_line/piv-2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x840_crop_center-center_82_line/piv-2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x672_crop_center-center_82_line/piv-2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1344_crop_center-center_82_line/piv-2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x504_crop_center-center_82_line/piv-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x420_crop_center-center_82_line/piv-2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1008_crop_center-center_82_line/piv-2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x840_crop_center-center_82_line/piv-2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x672_crop_center-center_82_line/piv-2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1344_crop_center-center_82_line/piv-2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x504_crop_center-center_82_line/piv-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x420_crop_center-center_82_line/piv-2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1008,\"1280\":840,\"1024\":672,\"2048\":1344,\"768\":504,\"640\":420},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2400\",\"originalImageHeight\":\"1575\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AxbOae6mePdKCq7uXNMluLuCVMecoYZwXNaagLeArxl2Bx/uioz82qxhuRsPX6iik/fZq1+5uf//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#2f3342\",\"#c07672\",\"#86514d\",\"#7c93b4\",\"#709b7e\"],\"lightness\":43,\"placeholderWidth\":1536,\"placeholderHeight\":1008,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17247,17484,1,'piv-3','2021-05-18 01:31:32','2021-06-09 23:18:29','8b3ae6b2-48a2-466c-9f72-3d8bd71a5f46',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1056_crop_center-center_82_line/piv-3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x880_crop_center-center_82_line/piv-3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x704_crop_center-center_82_line/piv-3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1408_crop_center-center_82_line/piv-3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x528_crop_center-center_82_line/piv-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x440_crop_center-center_82_line/piv-3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1056_crop_center-center_82_line/piv-3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x880_crop_center-center_82_line/piv-3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x704_crop_center-center_82_line/piv-3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1408_crop_center-center_82_line/piv-3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x528_crop_center-center_82_line/piv-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x440_crop_center-center_82_line/piv-3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1056,\"1280\":880,\"1024\":704,\"2048\":1408,\"768\":528,\"640\":440},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2400\",\"originalImageHeight\":\"1650\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AybizhhsC0UcckuxS2UcFRyNw524OOvNdB4WWeHTYt0bmKRiQ23AH+cVxst5c3GfOnkkyAPmYngdK7jwpI76HGGYkK7AA9hmtp35TKNuY/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#102e4f\",\"#cecacb\",\"#62aea2\",\"#a8607e\",\"#6692b4\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":1056,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17248,17485,1,'piv-4','2021-05-18 01:31:38','2021-06-09 23:18:31','1319a716-ad9a-4cc5-807e-b85b6f4bf459',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/piv-4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/piv-4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/piv-4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1152_crop_center-center_82_line/piv-4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/piv-4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/piv-4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/piv-4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/piv-4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/piv-4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1152_crop_center-center_82_line/piv-4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/piv-4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/piv-4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2400\",\"originalImageHeight\":\"1350\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ank1i0sYsxs8g4Hljj8egqaGaK3hnSR1XzBnLH7uK5m//AOPYf7/9BW5f/wDHm34/0pSm7xXr+g6cUoyt5fqf/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#b8b0b8\",\"#234c5b\",\"#607173\",\"#d87f3c\",\"#543c42\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17249,17486,1,'piv-5','2021-05-18 01:31:44','2021-06-09 23:18:32','10176835-c936-4d09-ba71-aa61649364e7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1008_crop_center-center_82_line/piv-5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x840_crop_center-center_82_line/piv-5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x672_crop_center-center_82_line/piv-5.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1344_crop_center-center_82_line/piv-5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x504_crop_center-center_82_line/piv-5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x420_crop_center-center_82_line/piv-5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1008_crop_center-center_82_line/piv-5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x840_crop_center-center_82_line/piv-5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x672_crop_center-center_82_line/piv-5.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1344_crop_center-center_82_line/piv-5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x504_crop_center-center_82_line/piv-5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x420_crop_center-center_82_line/piv-5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1008,\"1280\":840,\"1024\":672,\"2048\":1344,\"768\":504,\"640\":420},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2400\",\"originalImageHeight\":\"1575\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5pUAtyzKMn7rE1qXkGnjTJWt48TxlQTlvXnrWNuO3GTjNad1I5snBdiDjgn3Fbv4kZL4X8j/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1a3654\",\"#b8a08e\",\"#7896b2\",\"#64738c\",\"#7f94a0\"],\"lightness\":46,\"placeholderWidth\":1536,\"placeholderHeight\":1008,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17250,17487,1,'piv-6','2021-05-18 01:31:49','2021-06-09 23:18:34','898c3a75-b3e3-459d-9468-be2851dc5de7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1008_crop_center-center_82_line/piv-6.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x840_crop_center-center_82_line/piv-6.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x672_crop_center-center_82_line/piv-6.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1344_crop_center-center_82_line/piv-6.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x504_crop_center-center_82_line/piv-6.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x420_crop_center-center_82_line/piv-6.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1008_crop_center-center_82_line/piv-6.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x840_crop_center-center_82_line/piv-6.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x672_crop_center-center_82_line/piv-6.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1344_crop_center-center_82_line/piv-6.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x504_crop_center-center_82_line/piv-6.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x420_crop_center-center_82_line/piv-6.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1008,\"1280\":840,\"1024\":672,\"2048\":1344,\"768\":504,\"640\":420},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2400\",\"originalImageHeight\":\"1575\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ay7LyrjThFJCGMRZ9yj5go559etXb4xjRLmPyV3xsqeYFA6Ef4iucoya35Nb3MVPSx//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c8ac9d\",\"#193651\",\"#60afb2\",\"#527a8d\",\"#7790ac\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":1008,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17251,17488,1,'piv-7','2021-05-18 01:31:55','2021-06-09 23:18:35','35ae3d6d-170a-451f-b238-e12f5427b6d6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1008_crop_center-center_82_line/piv-7.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x840_crop_center-center_82_line/piv-7.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x672_crop_center-center_82_line/piv-7.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1344_crop_center-center_82_line/piv-7.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x504_crop_center-center_82_line/piv-7.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x420_crop_center-center_82_line/piv-7.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1008_crop_center-center_82_line/piv-7.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x840_crop_center-center_82_line/piv-7.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x672_crop_center-center_82_line/piv-7.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1344_crop_center-center_82_line/piv-7.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x504_crop_center-center_82_line/piv-7.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x420_crop_center-center_82_line/piv-7.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1008,\"1280\":840,\"1024\":672,\"2048\":1344,\"768\":504,\"640\":420},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2400\",\"originalImageHeight\":\"1575\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7GEAxgGMHP8AFinTRqLfOwKR3FVdxxjJx6Ug44oA/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d4d5d5\",\"#39676f\",\"#af6d92\",\"#d6814d\",\"#88acb2\"],\"lightness\":59,\"placeholderWidth\":1536,\"placeholderHeight\":1008,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17252,17489,1,'piv-8','2021-05-18 01:32:00','2021-06-09 23:18:37','d2d9384b-784b-4b26-a275-1f5e477ce080',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x979_crop_center-center_82_line/piv-8.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x816_crop_center-center_82_line/piv-8.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x652_crop_center-center_82_line/piv-8.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1305_crop_center-center_82_line/piv-8.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x489_crop_center-center_82_line/piv-8.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x408_crop_center-center_82_line/piv-8.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x979_crop_center-center_82_line/piv-8.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x816_crop_center-center_82_line/piv-8.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x652_crop_center-center_82_line/piv-8.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1305_crop_center-center_82_line/piv-8.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x489_crop_center-center_82_line/piv-8.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x408_crop_center-center_82_line/piv-8.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":979,\"1280\":816,\"1024\":652,\"2048\":1305,\"768\":489,\"640\":408},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2400\",\"originalImageHeight\":\"1530\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AieRhfxRDnf2yf6VmaNcTSXpWSdpF2E4LE9xW0Y0ZgxRSw6EjmmpBFG26OJEPTKqBWiOtxfOnc//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#bb6d97\",\"#222732\",\"#4c6665\",\"#a1abd4\",\"#babfd5\"],\"lightness\":45,\"placeholderWidth\":1536,\"placeholderHeight\":979,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17253,17490,1,'piv-9','2021-05-18 01:32:05','2021-06-09 23:18:38','756b3b71-b442-4ef6-af0c-3b972a59f501',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x979_crop_center-center_82_line/piv-9.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x816_crop_center-center_82_line/piv-9.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x652_crop_center-center_82_line/piv-9.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1305_crop_center-center_82_line/piv-9.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x489_crop_center-center_82_line/piv-9.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x408_crop_center-center_82_line/piv-9.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x979_crop_center-center_82_line/piv-9.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x816_crop_center-center_82_line/piv-9.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x652_crop_center-center_82_line/piv-9.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1305_crop_center-center_82_line/piv-9.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x489_crop_center-center_82_line/piv-9.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x408_crop_center-center_82_line/piv-9.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":979,\"1280\":816,\"1024\":652,\"2048\":1305,\"768\":489,\"640\":408},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2400\",\"originalImageHeight\":\"1530\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AdresS2F6YkiDjyw2S5GOT6fSpdL1Q3d6kRUqfLLspLZHT14PXrWpLaW07bpreKRsYy6AnFEVpbQNuht4o2xjKIAcV0633OXTl2P/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#95ceef\",\"#172332\",\"#915e38\",\"#f0e1d1\",\"#4c647c\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":979,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17254,17491,1,'QHRC_800x500-1','2021-05-18 01:32:10','2021-06-09 23:17:59','c0f6b914-925d-4c76-b6a1-e7453fc53436',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x959_crop_center-center_82_line/QHRC_800x500-1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1919_crop_center-center_82_line/QHRC_800x500-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x799_crop_center-center_82_line/QHRC_800x500-1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1599_crop_center-center_82_line/QHRC_800x500-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x639_crop_center-center_82_line/QHRC_800x500-1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1279_crop_center-center_82_line/QHRC_800x500-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x479_crop_center-center_82_line/QHRC_800x500-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x399_crop_center-center_82_line/QHRC_800x500-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x959_crop_center-center_82_line/QHRC_800x500-1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1919_crop_center-center_82_line/QHRC_800x500-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x799_crop_center-center_82_line/QHRC_800x500-1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1599_crop_center-center_82_line/QHRC_800x500-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x639_crop_center-center_82_line/QHRC_800x500-1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1279_crop_center-center_82_line/QHRC_800x500-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x479_crop_center-center_82_line/QHRC_800x500-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x399_crop_center-center_82_line/QHRC_800x500-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":959,\"3072\":1919,\"1280\":799,\"2560\":1599,\"1024\":639,\"2048\":1279,\"768\":479,\"640\":399},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3333\",\"originalImageHeight\":\"2083\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7yRmUDYm/nnnGKVGZh8yFT6E06igD//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#495961\",\"#eeeae8\",\"#c17a5a\",\"#95a8b0\",\"#848488\"],\"lightness\":58,\"placeholderWidth\":1536,\"placeholderHeight\":959,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17255,17492,1,'QHRC_800x500-3','2021-05-18 01:32:16','2021-06-09 23:18:08','1c3f1c1d-9e4e-4196-b7a6-95f2c4178fa2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x959_crop_center-center_82_line/QHRC_800x500-3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1919_crop_center-center_82_line/QHRC_800x500-3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x799_crop_center-center_82_line/QHRC_800x500-3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1599_crop_center-center_82_line/QHRC_800x500-3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x639_crop_center-center_82_line/QHRC_800x500-3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1279_crop_center-center_82_line/QHRC_800x500-3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x479_crop_center-center_82_line/QHRC_800x500-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x399_crop_center-center_82_line/QHRC_800x500-3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x959_crop_center-center_82_line/QHRC_800x500-3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1919_crop_center-center_82_line/QHRC_800x500-3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x799_crop_center-center_82_line/QHRC_800x500-3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1599_crop_center-center_82_line/QHRC_800x500-3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x639_crop_center-center_82_line/QHRC_800x500-3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1279_crop_center-center_82_line/QHRC_800x500-3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x479_crop_center-center_82_line/QHRC_800x500-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x399_crop_center-center_82_line/QHRC_800x500-3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":959,\"3072\":1919,\"1280\":799,\"2560\":1599,\"1024\":639,\"2048\":1279,\"768\":479,\"640\":399},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3333\",\"originalImageHeight\":\"2083\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8ANfCH7zEfIP580zRAAo2nPynr6Zo8Q9P+Af1puhfdH+5/Wlj/AOCPKvil6fqf/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e86c3b\",\"#1c5f85\",\"#71cce3\",\"#a35c6c\",\"#954345\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":959,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17256,17493,1,'QHRC_800x500-4','2021-05-18 01:32:21','2021-06-09 23:18:10','2ea5dd29-afdd-47c7-9c6d-d1ecad96120a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x959_crop_center-center_82_line/QHRC_800x500-4.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1919_crop_center-center_82_line/QHRC_800x500-4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x799_crop_center-center_82_line/QHRC_800x500-4.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1599_crop_center-center_82_line/QHRC_800x500-4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x639_crop_center-center_82_line/QHRC_800x500-4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1279_crop_center-center_82_line/QHRC_800x500-4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x479_crop_center-center_82_line/QHRC_800x500-4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x399_crop_center-center_82_line/QHRC_800x500-4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x959_crop_center-center_82_line/QHRC_800x500-4.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1919_crop_center-center_82_line/QHRC_800x500-4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x799_crop_center-center_82_line/QHRC_800x500-4.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1599_crop_center-center_82_line/QHRC_800x500-4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x639_crop_center-center_82_line/QHRC_800x500-4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1279_crop_center-center_82_line/QHRC_800x500-4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x479_crop_center-center_82_line/QHRC_800x500-4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x399_crop_center-center_82_line/QHRC_800x500-4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":959,\"3072\":1919,\"1280\":799,\"2560\":1599,\"1024\":639,\"2048\":1279,\"768\":479,\"640\":399},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3333\",\"originalImageHeight\":\"2083\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8As6SIb7SobSVBJDKH3ckdD7Vg+JoLfR9ZRLCIJayQDfGGznk9+eeAa2dL/wCQHJ/1zk/rWT4r6Q/R/wCdJDZ//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dad4d1\",\"#262626\",\"#a5a6a3\",\"#7c7771\",\"#888f95\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":959,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17257,17494,1,'QHRC_800x500-5','2021-05-18 01:32:27','2021-06-09 23:18:12','4b9b6821-4f1a-402b-a678-310d69bb5658',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x959_crop_center-center_82_line/QHRC_800x500-5.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1919_crop_center-center_82_line/QHRC_800x500-5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x799_crop_center-center_82_line/QHRC_800x500-5.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1599_crop_center-center_82_line/QHRC_800x500-5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x639_crop_center-center_82_line/QHRC_800x500-5.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1279_crop_center-center_82_line/QHRC_800x500-5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x479_crop_center-center_82_line/QHRC_800x500-5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x399_crop_center-center_82_line/QHRC_800x500-5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x959_crop_center-center_82_line/QHRC_800x500-5.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1919_crop_center-center_82_line/QHRC_800x500-5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x799_crop_center-center_82_line/QHRC_800x500-5.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1599_crop_center-center_82_line/QHRC_800x500-5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x639_crop_center-center_82_line/QHRC_800x500-5.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1279_crop_center-center_82_line/QHRC_800x500-5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x479_crop_center-center_82_line/QHRC_800x500-5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x399_crop_center-center_82_line/QHRC_800x500-5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":959,\"3072\":1919,\"1280\":799,\"2560\":1599,\"1024\":639,\"2048\":1279,\"768\":479,\"640\":399},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3333\",\"originalImageHeight\":\"2083\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Avc/X8+f/AB7pR27/AI5/M/NULfxf7q0p6t/vj+la2OW5/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#7dbdc8\",\"#d9a081\",\"#614c4c\",\"#2a5271\",\"#2d7c9a\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":959,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17258,17495,1,'QHRC_800x500-6','2021-05-18 01:32:34','2021-06-09 23:18:14','3f5e1912-9e5b-4c26-902f-f523480023fe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x959_crop_center-center_82_line/QHRC_800x500-6.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1919_crop_center-center_82_line/QHRC_800x500-6.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x799_crop_center-center_82_line/QHRC_800x500-6.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1599_crop_center-center_82_line/QHRC_800x500-6.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x639_crop_center-center_82_line/QHRC_800x500-6.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1279_crop_center-center_82_line/QHRC_800x500-6.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x479_crop_center-center_82_line/QHRC_800x500-6.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x399_crop_center-center_82_line/QHRC_800x500-6.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x959_crop_center-center_82_line/QHRC_800x500-6.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1919_crop_center-center_82_line/QHRC_800x500-6.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x799_crop_center-center_82_line/QHRC_800x500-6.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1599_crop_center-center_82_line/QHRC_800x500-6.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x639_crop_center-center_82_line/QHRC_800x500-6.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1279_crop_center-center_82_line/QHRC_800x500-6.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x479_crop_center-center_82_line/QHRC_800x500-6.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x399_crop_center-center_82_line/QHRC_800x500-6.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":959,\"3072\":1919,\"1280\":799,\"2560\":1599,\"1024\":639,\"2048\":1279,\"768\":479,\"640\":399},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3333\",\"originalImageHeight\":\"2083\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A1raKadv3QyFHzcjj0qKB5F5kfdmo/wDlk/4UR/cX/dFRKTvFFRirSZ//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#9ea6a7\",\"#e6893a\",\"#344f5d\",\"#efddd3\",\"#665355\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":959,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17259,17496,1,'old-new-pivotus','2021-05-18 01:32:40','2021-06-21 04:39:29','2bf9f123-a761-4b70-903a-6698cf4fd2f1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1008_crop_center-center_82_line/old-new-pivotus.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x840_crop_center-center_82_line/old-new-pivotus.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x672_crop_center-center_82_line/old-new-pivotus.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1344_crop_center-center_82_line/old-new-pivotus.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x504_crop_center-center_82_line/old-new-pivotus.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x420_crop_center-center_82_line/old-new-pivotus.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1008_crop_center-center_82_line/old-new-pivotus.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x840_crop_center-center_82_line/old-new-pivotus.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x672_crop_center-center_82_line/old-new-pivotus.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1344_crop_center-center_82_line/old-new-pivotus.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x504_crop_center-center_82_line/old-new-pivotus.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x420_crop_center-center_82_line/old-new-pivotus.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1008,\"1280\":840,\"1024\":672,\"2048\":1344,\"768\":504,\"640\":420},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2400\",\"originalImageHeight\":\"1575\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7zL+ZjauzH3t3P5YozJvxtXb67ufyxT6KAP/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#314763\",\"#f1f5f2\",\"#b4c54a\",\"#a1acb7\",\"#8c7c74\"],\"lightness\":57,\"placeholderWidth\":1536,\"placeholderHeight\":1008,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17260,17497,1,'4','2021-05-18 01:32:44','2021-06-09 23:21:36','48e3cf58-8ec6-464a-8a89-ac096b3b0287',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x800_crop_center-center_82_line/4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x640_crop_center-center_82_line/4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x480_crop_center-center_82_line/4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x400_crop_center-center_82_line/4.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x800_crop_center-center_82_line/4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x640_crop_center-center_82_line/4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x480_crop_center-center_82_line/4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x400_crop_center-center_82_line/4.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":800,\"1024\":640,\"768\":480,\"640\":400},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1440\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7lmYHhC341FBNPI+JbVolx94up/lViigD//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#f9fafa\",\"#163d57\",\"#aacecd\",\"#808888\",\"#84948c\"],\"lightness\":63,\"placeholderWidth\":1280,\"placeholderHeight\":800,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17261,17498,1,'5','2021-05-18 01:32:46','2021-06-09 23:21:38','b85eb07c-7dec-41f0-a8d9-a4486aea566f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x2334_crop_center-center_82_line/5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1867_crop_center-center_82_line/5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1400_crop_center-center_82_line/5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x1167_crop_center-center_82_line/5.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x2334_crop_center-center_82_line/5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1867_crop_center-center_82_line/5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1400_crop_center-center_82_line/5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x1167_crop_center-center_82_line/5.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":2334,\"1024\":1867,\"768\":1400,\"640\":1167},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1440\",\"originalImageHeight\":\"2626\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAHQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6v8AtyyBDGZ9pbA+Tjrisv7FrhfzFZRLjbzJn8ev6Vebw/bMu3zpAeORtB/lWnDPDMoeFkcHupzStfcfoKAiyM38TYzkk/p2rJstM0q3u1e3z5yMQPmPBI/wrWCKGZgOWPOTVaHTbSCUSxxbXByDuP8AjTYkf//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ecebea\",\"#4c4c3e\",\"#987d5e\",\"#9d9b98\",\"#7e7b7e\"],\"lightness\":58,\"placeholderWidth\":1280,\"placeholderHeight\":2334,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17262,17499,1,'6','2021-05-18 01:32:52','2021-06-09 23:21:08','1dc6ed8a-e9bb-40ef-ab7a-bf95dd80177d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x800_crop_center-center_82_line/6.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x640_crop_center-center_82_line/6.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x480_crop_center-center_82_line/6.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x400_crop_center-center_82_line/6.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x800_crop_center-center_82_line/6.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x640_crop_center-center_82_line/6.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x480_crop_center-center_82_line/6.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x400_crop_center-center_82_line/6.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":800,\"1024\":640,\"768\":480,\"640\":400},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1440\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6O71PUIbyeKHT3lijxtfa3zdOnr1/Sm2Gp6jcTQLPYtErsQ5MTDb97ufoPzrbooA/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#5a5049\",\"#f9f9f9\",\"#a09996\",\"#847c84\",\"#848484\"],\"lightness\":59,\"placeholderWidth\":1280,\"placeholderHeight\":800,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17263,17500,1,'iStock-1058304620','2021-05-18 01:32:54','2021-06-09 23:14:48','ca332dc3-9767-4aaf-a3b3-8d5824dcbd3f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-1058304620.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-1058304620.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-1058304620.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-1058304620.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-1058304620.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-1058304620.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-1058304620.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-1058304620.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-1058304620.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-1058304620.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-1058304620.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-1058304620.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"1280\":853,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2121\",\"originalImageHeight\":\"1414\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A623QBI8dNoqpfRFvMXzfKQ4zjmrlv/qYv9wf0qrqX+rf3IrkrK8TWn8Vj//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e3e3e0\",\"#d7ac2f\",\"#dec777\",\"#d062a1\",\"#787e83\"],\"lightness\":67,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17264,17501,1,'iStock-545276138','2021-05-18 01:32:57','2021-06-09 23:16:07','123d04db-3fdc-4419-bd6a-b2cac1db81a8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-545276138.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-545276138.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-545276138.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-545276138.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-545276138.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-545276138.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/iStock-545276138.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/iStock-545276138.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/iStock-545276138.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/iStock-545276138.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/iStock-545276138.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/iStock-545276138.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"1280\":853,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2121\",\"originalImageHeight\":\"1414\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3vKj2AEDH3vX/PSm3VtC0bfItOH+r/Efyp8n+p/4DXFRqNqxpVitz//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c8cab3\",\"#ca9e2a\",\"#cfb462\",\"#507d6e\",\"#937655\"],\"lightness\":58,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17265,17502,1,'venn','2021-05-18 01:33:01','2021-06-09 23:17:30','f5f5fa9e-aaf6-4fb5-b3c2-49dd1de247b9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x888_crop_center-center_82_line/venn.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x740_crop_center-center_82_line/venn.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x592_crop_center-center_82_line/venn.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x444_crop_center-center_82_line/venn.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x370_crop_center-center_82_line/venn.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x888_crop_center-center_82_line/venn.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x740_crop_center-center_82_line/venn.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x592_crop_center-center_82_line/venn.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x444_crop_center-center_82_line/venn.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x370_crop_center-center_82_line/venn.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":888,\"1280\":740,\"1024\":592,\"768\":444,\"640\":370},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1652\",\"originalImageHeight\":\"956\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6K8lnUTOjN5yg7R79hWLZXN19ridZJDcMwyD3PcGurm/4/0/CqNn/wAh+f8AGlPWxtgH7P2jep//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#fa3d5a\",\"#86dbd3\",\"#2d3e64\",\"#f2ebef\",\"#e47c84\"],\"lightness\":61,\"placeholderWidth\":1536,\"placeholderHeight\":888,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17266,17503,1,'download','2021-05-18 01:33:03','2021-06-09 23:23:30','5414efe9-7086-474e-8ecc-1f1426a76a38',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"224\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_224x224_crop_center-center_line/download.png\"},\"optimizedWebPImageUrls\":{\"224\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_224x224_crop_center-center_line/download.png.webp\"},\"variantSourceWidths\":[\"224\"],\"variantHeights\":{\"224\":224},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"224\",\"originalImageHeight\":\"224\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7PU7xrK3EiJvJbGKNNvHvIWd49hDYxT5oJJ02yFMA5GM0QwSQIVjKcnJzmgWtz//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#285875\",\"#e1eaea\",\"#c4a74f\",\"#799db5\",\"#5f5f5d\"],\"lightness\":55,\"placeholderWidth\":224,\"placeholderHeight\":224,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17267,17504,1,'MBBC_P_RGB_tag','2021-05-18 01:33:04','2021-07-16 03:53:58','6c915f84-248d-4180-8f63-53d6579acb18',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x700_crop_center-center_82_line/MBBC_P_RGB_tag.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x583_crop_center-center_82_line/MBBC_P_RGB_tag.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x467_crop_center-center_82_line/MBBC_P_RGB_tag.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x934_crop_center-center_82_line/MBBC_P_RGB_tag.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x350_crop_center-center_82_line/MBBC_P_RGB_tag.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x291_crop_center-center_82_line/MBBC_P_RGB_tag.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x700_crop_center-center_82_line/MBBC_P_RGB_tag.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x583_crop_center-center_82_line/MBBC_P_RGB_tag.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x467_crop_center-center_82_line/MBBC_P_RGB_tag.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x934_crop_center-center_82_line/MBBC_P_RGB_tag.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x350_crop_center-center_82_line/MBBC_P_RGB_tag.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x291_crop_center-center_82_line/MBBC_P_RGB_tag.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":700,\"1280\":583,\"1024\":467,\"2048\":934,\"768\":350,\"640\":291},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2159\",\"originalImageHeight\":\"985\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7idi8TJtZCw68HH60kBMcKx4ZyowTwKKKroZ2965/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#30a7d4\",\"#edfafa\",\"#8fd7eb\",\"#64dffc\",\"#b4dcf4\"],\"lightness\":71,\"placeholderWidth\":1536,\"placeholderHeight\":700,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17268,17505,1,'MBC_P_RGB_tag','2021-05-18 01:33:07','2021-06-21 04:38:04','f6e057af-2546-4f82-8751-26fb68350e83',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x915_crop_center-center_82_line/MBC_P_RGB_tag.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x762_crop_center-center_82_line/MBC_P_RGB_tag.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x610_crop_center-center_82_line/MBC_P_RGB_tag.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x457_crop_center-center_82_line/MBC_P_RGB_tag.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x381_crop_center-center_82_line/MBC_P_RGB_tag.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x915_crop_center-center_82_line/MBC_P_RGB_tag.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x762_crop_center-center_82_line/MBC_P_RGB_tag.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x610_crop_center-center_82_line/MBC_P_RGB_tag.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x457_crop_center-center_82_line/MBC_P_RGB_tag.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x381_crop_center-center_82_line/MBC_P_RGB_tag.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":915,\"1280\":762,\"1024\":610,\"768\":457,\"640\":381},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1687\",\"originalImageHeight\":\"1005\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7S7k861dIWw5HBZT/hSWbi3tY45n3MO4U88/SnP99vrSx/6wfWlcq+lj/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#f6ebee\",\"#a51d52\",\"#92865d\",\"#a7a197\",\"#e46a9c\"],\"lightness\":63,\"placeholderWidth\":1536,\"placeholderHeight\":915,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17269,17506,1,'PymbleLCLogo_Stacked_Blue','2021-05-18 01:33:10','2021-06-09 23:18:05','92125c85-413a-4879-8dcf-7e0b151fb207',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x594_crop_center-center_82_line/17506/PymbleLCLogo_Stacked_Blue.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x475_crop_center-center_82_line/17506/PymbleLCLogo_Stacked_Blue.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x356_crop_center-center_82_line/17506/PymbleLCLogo_Stacked_Blue.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x297_crop_center-center_82_line/17506/PymbleLCLogo_Stacked_Blue.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x594_crop_center-center_82_line/17506/PymbleLCLogo_Stacked_Blue.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x475_crop_center-center_82_line/17506/PymbleLCLogo_Stacked_Blue.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x356_crop_center-center_82_line/17506/PymbleLCLogo_Stacked_Blue.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x297_crop_center-center_82_line/17506/PymbleLCLogo_Stacked_Blue.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":594,\"1024\":475,\"768\":356,\"640\":297},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1468\",\"originalImageHeight\":\"682\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7KeaRrZt8DqemQykdcetOgdoYxGIpGC4BJIz0+tFFV0Ef//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#2b3e77\",\"#eff5f8\",\"#93a2c8\",\"#777b9a\",\"#80868c\"],\"lightness\":60,\"placeholderWidth\":1280,\"placeholderHeight\":594,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17270,17507,1,'mcalogo4','2021-05-18 01:33:12','2021-06-21 04:38:06','73e77d84-8bf7-4cc6-b4bf-a05fea1bd4ca',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"507\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_507x106_crop_center-center_line/mcalogo4.png\"},\"optimizedWebPImageUrls\":{\"507\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_507x106_crop_center-center_line/mcalogo4.png.webp\"},\"variantSourceWidths\":[\"507\"],\"variantHeights\":{\"507\":106},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"507\",\"originalImageHeight\":\"107\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAAwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AsWLMUyHZfmx8rEZ/Kpg8nH76Xqf+Wjf40UUQ+FCe5//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#182c3f\",\"#eaebde\",\"#1c5aa1\",\"#a47004\",\"#74a4d4\"],\"lightness\":45,\"placeholderWidth\":507,\"placeholderHeight\":106,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17271,17508,1,'our-ladys-college-qld-1','2021-05-18 01:33:14','2021-06-21 04:39:33','1abffa35-ed3c-49bf-b089-90bd855042bc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x683_crop_center-center_82_line/our-ladys-college-qld-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/our-ladys-college-qld-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x427_crop_center-center_82_line/our-ladys-college-qld-1.jpg\"},\"optimizedWebPImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x683_crop_center-center_82_line/our-ladys-college-qld-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/our-ladys-college-qld-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x427_crop_center-center_82_line/our-ladys-college-qld-1.jpg.webp\"},\"variantSourceWidths\":[\"1024\",\"768\",\"640\"],\"variantHeights\":{\"1024\":683,\"768\":512,\"640\":427},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1100\",\"originalImageHeight\":\"734\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7TUzi2xsMnP3FbBI/rRppzbY2FOfus2SB/Sm6p/q0+tGmcxyZ/vf0pW1uK+p/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#285b32\",\"#f0f5e6\",\"#afa92f\",\"#94b4a1\",\"#78877f\"],\"lightness\":54,\"placeholderWidth\":1024,\"placeholderHeight\":683,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17272,17509,1,'logo','2021-05-18 01:33:16','2021-07-16 03:53:59','98907592-eebe-48e4-a0e0-9b8bc8ab7511',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"430\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_430x310_crop_center-center_line/logo.png\"},\"optimizedWebPImageUrls\":{\"430\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_430x310_crop_center-center_line/logo.png.webp\"},\"variantSourceWidths\":[\"430\"],\"variantHeights\":{\"430\":310},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"430\",\"originalImageHeight\":\"310\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3PMtZfn87G48fNj19/aqDvKpaISqST/rQ/AH09aQHbKQAuAR/CKguXZLshcAAsB8o9cVso2Mm7n/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#102a4b\",\"#ebf4f6\",\"#3d94ce\",\"#77bae3\",\"#9cb4cc\"],\"lightness\":55,\"placeholderWidth\":430,\"placeholderHeight\":310,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17273,17510,1,'mackenzie-ss-logo','2021-05-18 01:33:17','2021-07-16 03:54:00','e9c96c7c-d524-467c-9ab8-2d8ece7687f2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"173\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_173x108_crop_center-center_line/mackenzie-ss-logo.png\"},\"optimizedWebPImageUrls\":{\"173\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_173x108_crop_center-center_line/mackenzie-ss-logo.png.webp\"},\"variantSourceWidths\":[\"173\"],\"variantHeights\":{\"173\":108},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"173\",\"originalImageHeight\":\"108\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6vU7mQlY7aXbjO845GPr+NTWN0fs6C5kHmk4+vpUNz/rT/v/ANabH/rY/wDeH/oVFiub3eWx/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e6e1e2\",\"#c3313c\",\"#6f6667\",\"#828385\",\"#c88b92\"],\"lightness\":62,\"placeholderWidth\":173,\"placeholderHeight\":108,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17274,17511,1,'SDC_main_rgb','2021-05-18 01:33:18','2021-06-09 23:16:47','e88e9797-066d-4843-b979-98f32f1f0872',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x493_crop_center-center_82_line/17511/SDC_main_rgb.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x369_crop_center-center_82_line/17511/SDC_main_rgb.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x308_crop_center-center_82_line/17511/SDC_main_rgb.jpg\"},\"optimizedWebPImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x493_crop_center-center_82_line/17511/SDC_main_rgb.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x369_crop_center-center_82_line/17511/SDC_main_rgb.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x308_crop_center-center_82_line/17511/SDC_main_rgb.jpg.webp\"},\"variantSourceWidths\":[\"1024\",\"768\",\"640\"],\"variantHeights\":{\"1024\":493,\"768\":369,\"640\":308},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1200\",\"originalImageHeight\":\"578\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Arr40sQAfs9yuMABSvboanTxhasoOy5wcYy/pRRTW5Mtj/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#0f1318\",\"#f5f1d4\",\"#42b2e0\",\"#3e5164\",\"#ccac5c\"],\"lightness\":46,\"placeholderWidth\":1024,\"placeholderHeight\":493,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17275,17512,1,'Ipswich-Grammar-Crest-Tile-390x250','2021-05-18 01:33:20','2021-06-09 23:14:38','91b10b47-ea63-4804-ad2d-15aba59fd269',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"390\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_390x250_crop_center-center_line/Ipswich-Grammar-Crest-Tile-390x250.jpg\"},\"optimizedWebPImageUrls\":{\"390\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_390x250_crop_center-center_line/Ipswich-Grammar-Crest-Tile-390x250.jpg.webp\"},\"variantSourceWidths\":[\"390\"],\"variantHeights\":{\"390\":250},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"390\",\"originalImageHeight\":\"250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6/W1aSy8pE3FmByegwQaNFVo7IRMm0qSc9jk5qxdgHbkA9aLUAB8D0pdS7+7Y//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#923944\",\"#f5eaeb\",\"#a67379\",\"#c9949d\",\"#b4acac\"],\"lightness\":63,\"placeholderWidth\":390,\"placeholderHeight\":250,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17276,17513,1,'download-1','2021-05-18 01:33:21','2021-06-09 23:23:29','b5c5a653-37e6-4347-9bce-7635f692716a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"230\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_230x220_crop_center-center_line/download-1.png\"},\"optimizedWebPImageUrls\":{\"230\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_230x220_crop_center-center_line/download-1.png.webp\"},\"variantSourceWidths\":[\"230\"],\"variantHeights\":{\"230\":220},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"230\",\"originalImageHeight\":\"220\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A25RcahJcNFc3cduJSsgD7THg4IHtjn8T7VKhOnraSSX91OrTiIRhg+4sMDJ7gZ/SpNTtJ7OS5vLJTJHOhFxCCAemNy54qHQNNlPk3NzH5MUQPkQltx5/iY5PPTj/AAoA/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#171717\",\"#dadada\",\"#848484\",\"#8c8c8c\",\"#7c7c7c\"],\"lightness\":46,\"placeholderWidth\":230,\"placeholderHeight\":220,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17277,17514,1,'0','2021-05-18 01:33:22','2021-06-09 23:23:12','1417c28b-f13b-459e-8022-68d79d5d0610',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"200\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_200x200_crop_center-center_line/-.png\"},\"optimizedWebPImageUrls\":{\"200\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_200x200_crop_center-center_line/-.png.webp\"},\"variantSourceWidths\":[\"200\"],\"variantHeights\":{\"200\":200},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"200\",\"originalImageHeight\":\"200\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7CTUNtyYfkU7iPnJG33PGMH+opYdQaSRFMLAMeWwcAH7p6dzUr2rM5bznGTnGW4/WlW2ZXDec5wemT/jU2fc05o22P/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#303030\",\"#df2c1e\",\"#f3ecea\",\"#c26b66\",\"#b78c8a\"],\"lightness\":50,\"placeholderWidth\":200,\"placeholderHeight\":200,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17278,17515,1,'ANFwMxLD_400x400','2021-05-18 01:33:23','2021-06-09 23:25:39','5bff737d-a164-4439-8b7a-59a988b588e4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"400\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_400x400_crop_center-center_line/ANFwMxLD_400x400.jpg\"},\"optimizedWebPImageUrls\":{\"400\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_400x400_crop_center-center_line/ANFwMxLD_400x400.jpg.webp\"},\"variantSourceWidths\":[\"400\"],\"variantHeights\":{\"400\":400},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"400\",\"originalImageHeight\":\"400\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3vEut3FhKltZgCQpvZyucDOP6UeG9aub6Vra8GZAnmI+3G4ZxWhqOmm5nW4gk8udV2ZIyGXOcHn1pbG0u4bgyXEsbqVxwuCKiz5rnZz0vY8ttfxP/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ce1a29\",\"#f4ecec\",\"#db8b95\",\"#e09594\",\"#7f3f44\"],\"lightness\":66,\"placeholderWidth\":400,\"placeholderHeight\":400,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17279,17516,1,'EducateCoLogo_vertical_ROSE rgb','2021-05-18 01:33:24','2021-06-09 23:23:40','784bdb2d-5434-4f70-b5bf-58dc4c39c6c9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1649_crop_center-center_82_line/EducateCoLogo_vertical_ROSE-rgb.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1319_crop_center-center_82_line/EducateCoLogo_vertical_ROSE-rgb.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x989_crop_center-center_82_line/EducateCoLogo_vertical_ROSE-rgb.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x824_crop_center-center_82_line/EducateCoLogo_vertical_ROSE-rgb.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1649_crop_center-center_82_line/EducateCoLogo_vertical_ROSE-rgb.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1319_crop_center-center_82_line/EducateCoLogo_vertical_ROSE-rgb.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x989_crop_center-center_82_line/EducateCoLogo_vertical_ROSE-rgb.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x824_crop_center-center_82_line/EducateCoLogo_vertical_ROSE-rgb.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1649,\"1024\":1319,\"768\":989,\"640\":824},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1327\",\"originalImageHeight\":\"1710\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAFAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7gtuO4jK4HQ5IoUlMEAnhixJx3oddoYlTy3XOAPSlVckBVyoOQ2c/WpLIxcOSeF64/WnRzs3UDrj9aKKAaP/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#fbf8f4\",\"#e1a398\",\"#e59b88\",\"#eac1b4\",\"#f5cfc8\"],\"lightness\":83,\"placeholderWidth\":1280,\"placeholderHeight\":1649,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17280,17517,1,'Malyon_footer_RGB','2021-05-18 01:33:27','2021-07-16 03:54:03','00ff36d2-2ac7-4f12-b05f-5a2712b72335',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"390\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_390x118_crop_center-center_line/Malyon_footer_RGB.png\"},\"optimizedWebPImageUrls\":{\"390\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_390x118_crop_center-center_line/Malyon_footer_RGB.png.webp\"},\"variantSourceWidths\":[\"390\"],\"variantHeights\":{\"390\":118},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"390\",\"originalImageHeight\":\"118\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AqaNPNILlXlc/MDknnPPNa8KOV/10v5iiitZbkrY//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#f5f7f7\",\"#243156\",\"#050508\",\"#848c9c\",\"#7c7ca4\"],\"lightness\":50,\"placeholderWidth\":390,\"placeholderHeight\":118,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17281,17518,1,'QLDDeptofEdu','2021-05-18 01:33:29','2021-06-09 23:18:16','6a1eff72-22c8-4713-8339-36b8393898a0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"561\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_561x236_crop_center-center_line/QLDDeptofEdu.png\"},\"optimizedWebPImageUrls\":{\"561\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_561x236_crop_center-center_line/QLDDeptofEdu.png.webp\"},\"variantSourceWidths\":[\"561\"],\"variantHeights\":{\"561\":236},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"561\",\"originalImageHeight\":\"236\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AtxRnEnlsysR13d804xXWB/pD5Oed4/8AiaKKAP/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#191919\",\"#e8e8e8\",\"#8f8f8f\",\"#9c9c9c\",\"#848484\"],\"lightness\":50,\"placeholderWidth\":561,\"placeholderHeight\":236,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17282,17519,1,'tbc','2021-05-18 01:33:31','2021-06-09 23:17:48','2424c779-0172-4c37-b1f0-31b023ad6ccf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"358\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_358x233_crop_center-center_line/tbc.jpg\"},\"optimizedWebPImageUrls\":{\"358\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_358x233_crop_center-center_line/tbc.jpg.webp\"},\"variantSourceWidths\":[\"358\"],\"variantHeights\":{\"358\":233},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"358\",\"originalImageHeight\":\"233\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A626dYrppCYgwYYyzDPA64+tTx30QTM0kak8jbnGPqetGksX0u2ZiWYoMknJNW6AP/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#151515\",\"#e9e9e9\",\"#888888\",\"#7c7c7c\",\"#9c9c9c\"],\"lightness\":48,\"placeholderWidth\":358,\"placeholderHeight\":233,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17283,17520,1,'CCC-iCan-1','2021-05-18 01:33:31','2021-06-03 05:05:49','032a77d6-6eb8-4be6-86c4-da35a5dc5bc5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/CCC-iCan-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/CCC-iCan-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-1.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/CCC-iCan-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/CCC-iCan-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-1.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":906,\"1024\":725,\"768\":544,\"640\":453},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1440\",\"originalImageHeight\":\"1020\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5W1jWSaJElUsxwVAOR79MfrVjVLma4dobiVmeHKoHXDYz69/xqiWIxjAOOoGDSMS7FmJLHqT1ra5nY//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#122136\",\"#b7c8d4\",\"#75a3bf\",\"#3776a4\",\"#4c6a82\"],\"lightness\":45,\"placeholderWidth\":1280,\"placeholderHeight\":906,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17284,17521,1,'CCC-iCan-2','2021-05-18 01:33:35','2021-06-03 05:09:40','446bb007-288b-4a8c-9791-057762d378f8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/CCC-iCan-2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/CCC-iCan-2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-2.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/CCC-iCan-2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/CCC-iCan-2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-2.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":906,\"1024\":725,\"768\":544,\"640\":453},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1440\",\"originalImageHeight\":\"1020\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AqWUlporRvGxeQPt8xhjA78fiafHrV7cR3Kx23myMdoG48HsfesfxExWaFVOFABwPWtzwYouba4lmG9zN16elbSVnYyhrqf/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#212c38\",\"#cdd2d6\",\"#86b3d1\",\"#52708e\",\"#4880c1\"],\"lightness\":50,\"placeholderWidth\":1280,\"placeholderHeight\":906,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17285,17522,1,'CCC-iCan-3','2021-05-18 01:33:37','2021-06-03 05:09:44','8a59b1cd-8264-4b66-8edb-2e9c627ec516',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/CCC-iCan-3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/CCC-iCan-3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-3.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/CCC-iCan-3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/CCC-iCan-3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-3.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":906,\"1024\":725,\"768\":544,\"640\":453},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1440\",\"originalImageHeight\":\"1020\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A4uF/3qIBnNamrmSN/sk85cxoCm4euO/+elYm4h8g4Io3szgsxJ6c1ZB//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#101722\",\"#b4c3cf\",\"#7498b3\",\"#455a6f\",\"#587a9c\"],\"lightness\":43,\"placeholderWidth\":1280,\"placeholderHeight\":906,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17286,17523,1,'CCC-iCan-4','2021-05-18 01:33:39','2021-06-03 05:09:48','45b1faa0-c97d-4d60-84ff-e499d574972c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/CCC-iCan-4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/CCC-iCan-4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-4.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/CCC-iCan-4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/CCC-iCan-4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-4.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":906,\"1024\":725,\"768\":544,\"640\":453},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1440\",\"originalImageHeight\":\"1020\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5qyXBCD5e30pbvapbB4xWl4Vs4LzzftCb9q5HzEdj6Vo+K7O2t9EmeGCNHLL8wUZ6jvQB//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#323131\",\"#cccac9\",\"#7e7372\",\"#8da1b9\",\"#808c9f\"],\"lightness\":49,\"placeholderWidth\":1280,\"placeholderHeight\":906,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17287,17524,1,'CCC-iCan-6','2021-05-18 01:33:42','2021-06-03 05:09:52','8848cc59-5a19-410a-a0fa-7283260a3a4b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/CCC-iCan-6.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/CCC-iCan-6.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-6.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-6.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/CCC-iCan-6.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/CCC-iCan-6.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-6.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-6.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":906,\"1024\":725,\"768\":544,\"640\":453},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1440\",\"originalImageHeight\":\"1020\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A4yBv3yRgdetXr6d5F8iaUnYPkDrg9u9ZIYh8g4Ipd7M4LMSemSask//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#121923\",\"#b0bbc3\",\"#495a6e\",\"#7d92a0\",\"#6e7f98\"],\"lightness\":40,\"placeholderWidth\":1280,\"placeholderHeight\":906,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17288,17525,1,'CCC-iCan-7','2021-05-18 01:33:44','2021-06-09 23:26:17','cbf5c27c-6024-43af-a458-eb80e3cfa7b8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x907_crop_center-center_82_line/CCC-iCan-7.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x726_crop_center-center_82_line/CCC-iCan-7.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-7.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-7.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x907_crop_center-center_82_line/CCC-iCan-7.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x726_crop_center-center_82_line/CCC-iCan-7.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-7.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-7.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":907,\"1024\":726,\"768\":544,\"640\":453},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1440\",\"originalImageHeight\":\"1021\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A4yF/3qIFzmtDUZnb/R5pWOwfuw457d6xwxD5BwRS72ZwWYk+9WSf/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#111823\",\"#b2bcc6\",\"#495a6f\",\"#7e90a0\",\"#6b7c98\"],\"lightness\":41,\"placeholderWidth\":1280,\"placeholderHeight\":907,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17289,17526,1,'CCC-iCan-8','2021-05-18 01:33:47','2021-06-03 05:09:59','1fcb2264-278c-466a-9ffd-b68bd1a42c8f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/CCC-iCan-8.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/CCC-iCan-8.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-8.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-8.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/CCC-iCan-8.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/CCC-iCan-8.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-8.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-8.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":906,\"1024\":725,\"768\":544,\"640\":453},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1440\",\"originalImageHeight\":\"1020\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A4uJ8SKgUn1xV+9uXmQQzOw2jMauMHH1rJ3EPkHBFLvZnBZiT05NWSf/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#101822\",\"#a5b2bb\",\"#495b6e\",\"#617e97\",\"#907771\"],\"lightness\":38,\"placeholderWidth\":1280,\"placeholderHeight\":906,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17290,17527,1,'CCC-iCan-9','2021-05-18 01:33:49','2021-06-09 23:25:57','c995915e-78f2-4e21-b9f9-eac2e23b1d92',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/CCC-iCan-9.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/CCC-iCan-9.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-9.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-9.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/CCC-iCan-9.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/CCC-iCan-9.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-9.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-9.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":906,\"1024\":725,\"768\":544,\"640\":453},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1440\",\"originalImageHeight\":\"1020\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A4yBszJGB14q/fTSsot7iUkoPkDD+vWsgMVfIOCKUu7yAsxJ6ZJqyT//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#121924\",\"#b3bdc6\",\"#495a70\",\"#7c91a1\",\"#627998\"],\"lightness\":41,\"placeholderWidth\":1280,\"placeholderHeight\":906,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17291,17528,1,'CCC-iCan-10','2021-05-18 01:33:51','2021-06-03 05:05:54','5089c802-baf3-4cf8-ad0d-42a6bd0b49b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/CCC-iCan-10.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/CCC-iCan-10.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-10.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-10.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/CCC-iCan-10.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/CCC-iCan-10.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-10.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-10.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":906,\"1024\":725,\"768\":544,\"640\":453},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1440\",\"originalImageHeight\":\"1020\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AyLfTpbh/3NpG25cKpbBzjr/WhA72cDpbFNoAZjwCAOePx61S0+5nhmUxyupC8c+1aFk7XSCGc70SM7c9R+PWqu0LlT3P/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#2e2d32\",\"#c1bbb3\",\"#556f83\",\"#7ba8c6\",\"#4485b5\"],\"lightness\":45,\"placeholderWidth\":1280,\"placeholderHeight\":906,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17292,17529,1,'CCC-iCan-11','2021-05-18 01:33:54','2021-06-03 05:05:58','743cb717-8ca7-4e9e-a615-a3c685a16d72',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/CCC-iCan-11.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/CCC-iCan-11.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-11.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-11.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/CCC-iCan-11.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/CCC-iCan-11.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-11.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-11.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":906,\"1024\":725,\"768\":544,\"640\":453},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1440\",\"originalImageHeight\":\"1020\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A56SzgiRd8pD/AMQweOPpT47K2NlLcNOAyHasbEBjxnP0qvMeB049qilJ2KO1W0JM/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#2d2f38\",\"#c6aaa0\",\"#2f78aa\",\"#5d6a7c\",\"#7c9c94\"],\"lightness\":43,\"placeholderWidth\":1280,\"placeholderHeight\":906,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17293,17530,1,'CCC-iCan-12','2021-05-18 01:33:57','2021-06-03 05:06:02','b7e434e6-8070-49d9-a0f7-d5d82f3f4cbb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/CCC-iCan-12.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/CCC-iCan-12.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-12.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-12.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/CCC-iCan-12.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/CCC-iCan-12.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-12.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-12.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":906,\"1024\":725,\"768\":544,\"640\":453},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1440\",\"originalImageHeight\":\"1020\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AoaHpMGDMjecUj3MisMjgHp1NRS3MaRSN86znKAMACQf8/pWfDcTW1kHt5GjOQDtOM1s6Ox1LTp5Lz968WAhPGB+FEtdBp9T/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#373438\",\"#ccbcb1\",\"#8e7667\",\"#99afbe\",\"#4c7fb1\"],\"lightness\":48,\"placeholderWidth\":1280,\"placeholderHeight\":906,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17294,17531,1,'CCC-iCan-13','2021-05-18 01:33:59','2021-06-03 05:06:06','f3dbf5be-111c-447f-81da-49f450d1b137',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/CCC-iCan-13.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/CCC-iCan-13.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-13.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-13.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/CCC-iCan-13.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/CCC-iCan-13.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-13.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-13.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":906,\"1024\":725,\"768\":544,\"640\":453},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1440\",\"originalImageHeight\":\"1020\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AzdMs0utKhWE5nJx14+9jv9RUJKR6gYyxcHao3HjeGHTHTvVGzlkW2fa7L8rj5TjtTEdlEZBwdwOffI/xro5noYKK1P/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#17212c\",\"#c1d2db\",\"#317eb8\",\"#64add9\",\"#2c5e84\"],\"lightness\":45,\"placeholderWidth\":1280,\"placeholderHeight\":906,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17295,17532,1,'CCC-iCan-14','2021-05-18 01:34:02','2021-06-03 05:06:10','9ed0c46a-a32a-44d0-b1ea-be98c63fb359',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/CCC-iCan-14.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/CCC-iCan-14.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-14.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-14.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/CCC-iCan-14.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/CCC-iCan-14.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-14.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-14.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":906,\"1024\":725,\"768\":544,\"640\":453},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1440\",\"originalImageHeight\":\"1020\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AyrG7tVhTY4DsDuXHI79frW/pE1pOx3hHBT5VJGc85z+lcCh+RMAD3AFWor24hVljkwGOTwDRyoLs/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#323030\",\"#d1ccc0\",\"#948b7e\",\"#678cb0\",\"#a1b3c4\"],\"lightness\":50,\"placeholderWidth\":1280,\"placeholderHeight\":906,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17296,17533,1,'CCC-iCan-15','2021-05-18 01:34:04','2021-06-03 05:06:14','cb92150e-5715-4a26-a32a-1f396a269b8e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/CCC-iCan-15.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/CCC-iCan-15.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-15.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-15.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/CCC-iCan-15.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/CCC-iCan-15.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-15.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-15.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":906,\"1024\":725,\"768\":544,\"640\":453},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1440\",\"originalImageHeight\":\"1020\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AyNX06y065SF5GLuisNkCkfN/wKorTSobu8a2jlw4V2JeFcfKM44NXHupZmV5SjsqhQWjUkAdO1CzyZZgQrMpBZVAJGPUUWQrH//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dddbd8\",\"#1e2928\",\"#716d65\",\"#69a884\",\"#6486a4\"],\"lightness\":51,\"placeholderWidth\":1280,\"placeholderHeight\":906,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17297,17534,1,'CCC-iCan-16','2021-05-18 01:34:08','2021-06-03 05:07:52','4ea21e18-08cd-4e7f-a0bf-ca2b66b23816',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/CCC-iCan-16.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/CCC-iCan-16.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-16.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-16.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/CCC-iCan-16.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/CCC-iCan-16.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-16.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-16.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":906,\"1024\":725,\"768\":544,\"640\":453},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1440\",\"originalImageHeight\":\"1020\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A50CxN5ne3lEA8jGDj/Gtm3j03yvkkcMRkNnOPT/Oa5uQDPStPTwEt8Lxznj1qXFWsO9z/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#333128\",\"#c7c1ac\",\"#7f745f\",\"#93a391\",\"#6087a5\"],\"lightness\":45,\"placeholderWidth\":1280,\"placeholderHeight\":906,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17298,17535,1,'CCC-iCan-17','2021-05-18 01:34:10','2021-06-03 05:06:28','f01515b5-81dd-4fcc-970b-f3564aca8ff1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/CCC-iCan-17.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/CCC-iCan-17.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-17.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-17.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/CCC-iCan-17.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/CCC-iCan-17.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-17.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-17.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":906,\"1024\":725,\"768\":544,\"640\":453},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1440\",\"originalImageHeight\":\"1020\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AivtWu4kQW678g7gy5+n9aSNp9SADlQI8FhjGM1oGNUuwFGB7UjyO7FWOQCR+Fbpa6HI3dWZ//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#6492a5\",\"#c4cccd\",\"#121f2a\",\"#474944\",\"#9ad2f1\"],\"lightness\":49,\"placeholderWidth\":1280,\"placeholderHeight\":906,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17299,17536,1,'CCC-iCan-18','2021-05-18 01:34:12','2021-06-03 05:07:56','edb2b9b7-199b-4bb2-b792-200b1755c0b2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/CCC-iCan-18.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/CCC-iCan-18.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-18.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-18.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x906_crop_center-center_82_line/CCC-iCan-18.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x725_crop_center-center_82_line/CCC-iCan-18.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x544_crop_center-center_82_line/CCC-iCan-18.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x453_crop_center-center_82_line/CCC-iCan-18.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":906,\"1024\":725,\"768\":544,\"640\":453},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1440\",\"originalImageHeight\":\"1020\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AzbyQEW6RXcio3DAvx+tW4IomkkR5HjwMq33c/MOmAc+tdXd6bZXNxunt0kIPG4ZxVm10+0hULHbxqPQCp6DP/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#494941\",\"#dcd7d1\",\"#9b9489\",\"#afb8b6\",\"#9ea7b2\"],\"lightness\":56,\"placeholderWidth\":1280,\"placeholderHeight\":906,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17300,17537,1,'19_09-MBC-Colleges_16','2021-05-18 01:34:15','2021-06-09 23:22:46','5b42b847-ed0b-4686-b419-249f4ab79ade',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x464_crop_center-center_82_line/17537/19_09-MBC-Colleges_16.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x387_crop_center-center_82_line/17537/19_09-MBC-Colleges_16.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x464_crop_center-center_82_line/17537/19_09-MBC-Colleges_16.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x387_crop_center-center_82_line/17537/19_09-MBC-Colleges_16.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":464,\"640\":387},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1008\",\"originalImageHeight\":\"610\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8ApLJetJ8qtHEx6gnOPTFXzqGo27o9vM5hQ/MrkEBeKguOklZ0f+q/ClGDb3G3aLfb/M//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#504c3d\",\"#d9ccb4\",\"#9b867f\",\"#60a8c8\",\"#95b9c1\"],\"lightness\":53,\"placeholderWidth\":768,\"placeholderHeight\":464,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17301,17538,1,'19_09-MBC-Colleges_01','2021-05-18 01:34:17','2021-06-09 23:22:49','b1ca2c05-b904-4c2a-a4c2-439c86451d08',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x214_crop_center-center_82_line/17538/19_09-MBC-Colleges_01.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x178_crop_center-center_82_line/17538/19_09-MBC-Colleges_01.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x214_crop_center-center_82_line/17538/19_09-MBC-Colleges_01.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x178_crop_center-center_82_line/17538/19_09-MBC-Colleges_01.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":214,\"640\":178},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1008\",\"originalImageHeight\":\"281\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A0QxZW5x06ClR5No/eN+lFFBXQ//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#f2f0f0\",\"#0e090a\",\"#ae154e\",\"#85885e\",\"#8c6474\"],\"lightness\":49,\"placeholderWidth\":768,\"placeholderHeight\":214,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17302,17539,1,'19_09-MBC-Colleges_02','2021-05-18 01:34:19','2021-06-09 23:22:35','ceca94e1-76fd-4041-bbb2-56a82c1448a5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x435_crop_center-center_82_line/17539/19_09-MBC-Colleges_02.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x362_crop_center-center_82_line/17539/19_09-MBC-Colleges_02.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x435_crop_center-center_82_line/17539/19_09-MBC-Colleges_02.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x362_crop_center-center_82_line/17539/19_09-MBC-Colleges_02.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":435,\"640\":362},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1008\",\"originalImageHeight\":\"571\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8As6xqt3fXcMMUTwwplnAlUh8gY/Iilga9jVWMcroBnAmjHr3z9Kgi+5+FRTf6s1jK5SlbY//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#a7967c\",\"#26251b\",\"#f5f8f3\",\"#623231\",\"#6c6429\"],\"lightness\":47,\"placeholderWidth\":768,\"placeholderHeight\":435,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17303,17540,1,'19_09-MBC-Colleges_03','2021-05-18 01:34:20','2021-06-09 23:22:36','dfa5332a-706d-4c6c-a2f0-6f137e98a19b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x498_crop_center-center_82_line/17540/19_09-MBC-Colleges_03.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x415_crop_center-center_82_line/17540/19_09-MBC-Colleges_03.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x498_crop_center-center_82_line/17540/19_09-MBC-Colleges_03.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x415_crop_center-center_82_line/17540/19_09-MBC-Colleges_03.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":498,\"640\":415},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1008\",\"originalImageHeight\":\"654\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A0Z1uhb75IIjFn92V4YnPQn6Z/KmyIA0YjQtk/PkkYpVZi5UsSoPAzwKjPWh6stzv0R//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e6e0de\",\"#090808\",\"#cf1a74\",\"#e0a237\",\"#5c6454\"],\"lightness\":49,\"placeholderWidth\":768,\"placeholderHeight\":498,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17304,17541,1,'19_09-MBC-Colleges_04','2021-05-18 01:34:22','2021-06-09 23:22:37','52670ec9-a03f-4c0a-a94d-658ec6d3deee',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x297_crop_center-center_82_line/17541/19_09-MBC-Colleges_04.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x247_crop_center-center_82_line/17541/19_09-MBC-Colleges_04.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x297_crop_center-center_82_line/17541/19_09-MBC-Colleges_04.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x247_crop_center-center_82_line/17541/19_09-MBC-Colleges_04.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":297,\"640\":247},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1008\",\"originalImageHeight\":\"390\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Azoyu4YXtzzW/pWPsh/3jRRWWafwPme7if43yP//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#bd2893\",\"#f9ae23\",\"#f681de\",\"#e49926\",\"#d09281\"],\"lightness\":56,\"placeholderWidth\":768,\"placeholderHeight\":297,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17305,17542,1,'19_09-MBC-Colleges_05','2021-05-18 01:34:23','2021-06-09 23:22:38','275c9840-20f2-44c2-8031-28f7925bb4b7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x609_crop_center-center_82_line/17542/19_09-MBC-Colleges_05.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x507_crop_center-center_82_line/17542/19_09-MBC-Colleges_05.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x609_crop_center-center_82_line/17542/19_09-MBC-Colleges_05.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x507_crop_center-center_82_line/17542/19_09-MBC-Colleges_05.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":609,\"640\":507},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1008\",\"originalImageHeight\":\"800\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Apy3cqJCHlOSAWAGz3IJB6U+znnY+as0rAuhChjzyc8emKqoS9xqELElI7Uuv1IXP/oRqYxBbmIKSoRUAAx2NJrqXc//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#2d2727\",\"#d2a8ae\",\"#876c66\",\"#9fa09d\",\"#958fa5\"],\"lightness\":46,\"placeholderWidth\":768,\"placeholderHeight\":609,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17306,17543,1,'19_09-MBC-Colleges_06','2021-05-18 01:34:26','2021-06-09 23:22:39','a6e021f9-ebf7-47bd-a1f1-f48760cc8da1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x706_crop_center-center_82_line/17543/19_09-MBC-Colleges_06.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x588_crop_center-center_82_line/17543/19_09-MBC-Colleges_06.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x706_crop_center-center_82_line/17543/19_09-MBC-Colleges_06.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x588_crop_center-center_82_line/17543/19_09-MBC-Colleges_06.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":706,\"640\":588},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1008\",\"originalImageHeight\":\"927\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8ArSXc5eaGe6jSKF2EYLbSq5wOR/WqkN8X1COJZ5CFkClg5IbB4/A13cFlcPcQXC3GIAuDEehOCM/r+lW9RRRp8+FGdvpUWfc29pZWR//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#351d15\",\"#ecdfdb\",\"#ada28d\",\"#a23e43\",\"#a88a90\"],\"lightness\":51,\"placeholderWidth\":768,\"placeholderHeight\":706,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17307,17544,1,'19_09-MBC-Colleges_07','2021-05-18 01:34:29','2021-06-09 23:22:40','25dfef2c-964c-4e0a-bd3b-2ec5cf7c234f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x210_crop_center-center_82_line/17544/19_09-MBC-Colleges_07.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x175_crop_center-center_82_line/17544/19_09-MBC-Colleges_07.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x210_crop_center-center_82_line/17544/19_09-MBC-Colleges_07.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x175_crop_center-center_82_line/17544/19_09-MBC-Colleges_07.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":210,\"640\":175},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1008\",\"originalImageHeight\":\"276\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A0oFU7wF2/wC6TzSF2U4DHgetFFV9kj7R/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#060607\",\"#1da3d6\",\"#f3f6f6\",\"#e4dcdc\",\"#447cb4\"],\"lightness\":48,\"placeholderWidth\":768,\"placeholderHeight\":210,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17308,17545,1,'19_09-MBC-Colleges_08','2021-05-18 01:34:30','2021-06-09 23:22:41','319fb886-095c-4dec-8148-0dc203fe0d76',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x436_crop_center-center_82_line/17545/19_09-MBC-Colleges_08.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x363_crop_center-center_82_line/17545/19_09-MBC-Colleges_08.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x436_crop_center-center_82_line/17545/19_09-MBC-Colleges_08.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x363_crop_center-center_82_line/17545/19_09-MBC-Colleges_08.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":436,\"640\":363},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1008\",\"originalImageHeight\":\"573\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AoxRIzSAxsySACMEcjkf0BFOWF2ik8wcqm0oAevpmrNr/AMfEX1/rVm8/1cf+8f61xxnY6pxuz//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#805836\",\"#20363b\",\"#d3ccbb\",\"#d08f5d\",\"#9d9fa8\"],\"lightness\":44,\"placeholderWidth\":768,\"placeholderHeight\":436,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17309,17546,1,'19_09-MBC-Colleges_09','2021-05-18 01:34:32','2021-06-09 23:22:34','4b8ffe8f-602a-455d-b539-bab844bf8048',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x480_crop_center-center_82_line/17546/19_09-MBC-Colleges_09.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x400_crop_center-center_82_line/17546/19_09-MBC-Colleges_09.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x480_crop_center-center_82_line/17546/19_09-MBC-Colleges_09.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x400_crop_center-center_82_line/17546/19_09-MBC-Colleges_09.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":480,\"640\":400},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1008\",\"originalImageHeight\":\"630\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A02E9tEHaGIRbiAyj52OeM/hk/hVQ3T7k/cnBPze1WriWQsF8xtoY4GeKj3N/eP5007dBNX6n/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e5e4e3\",\"#121112\",\"#46a1cb\",\"#265c96\",\"#b15c26\"],\"lightness\":50,\"placeholderWidth\":768,\"placeholderHeight\":480,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17310,17547,1,'19_09-MBC-Colleges_10','2021-05-18 01:34:34','2021-06-09 23:22:42','3310b1bf-469a-4052-b24e-1885e835291d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x546_crop_center-center_82_line/17547/19_09-MBC-Colleges_10.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x455_crop_center-center_82_line/17547/19_09-MBC-Colleges_10.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x546_crop_center-center_82_line/17547/19_09-MBC-Colleges_10.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x455_crop_center-center_82_line/17547/19_09-MBC-Colleges_10.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":546,\"640\":455},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1008\",\"originalImageHeight\":\"717\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8ArTAS3O7KuC7FkVj1JI6eootiolMc0xDu4wvX0xz+NM1R2EE+MfLLxx/tVHpyKTGxUE+co/UVrKnyq9zCnV521ax//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#cbbdb4\",\"#1d252d\",\"#2eb1e6\",\"#806859\",\"#5189b3\"],\"lightness\":48,\"placeholderWidth\":768,\"placeholderHeight\":546,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17311,17548,1,'19_09-MBC-Colleges_12','2021-05-18 01:34:37','2021-06-09 23:22:43','7c063a3e-b07a-4155-92ac-fcee811a6d17',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x387_crop_center-center_82_line/17548/19_09-MBC-Colleges_12.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x322_crop_center-center_82_line/17548/19_09-MBC-Colleges_12.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x387_crop_center-center_82_line/17548/19_09-MBC-Colleges_12.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x322_crop_center-center_82_line/17548/19_09-MBC-Colleges_12.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":387,\"640\":322},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1008\",\"originalImageHeight\":\"508\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AWC5jWaNXVwmD5xORs4Hp2yK2JtXsLe3Jtb3L7AI0LMwJ+hH170UU7iaP/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c3c8ce\",\"#273a44\",\"#494649\",\"#595857\",\"#677076\"],\"lightness\":45,\"placeholderWidth\":768,\"placeholderHeight\":387,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17312,17549,1,'19_09-MBC-Colleges_14','2021-05-18 01:34:42','2021-06-09 23:22:44','8742d15f-02ca-46d5-8448-911773d9f92f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x725_crop_center-center_82_line/17549/19_09-MBC-Colleges_14.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x604_crop_center-center_82_line/17549/19_09-MBC-Colleges_14.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x725_crop_center-center_82_line/17549/19_09-MBC-Colleges_14.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x604_crop_center-center_82_line/17549/19_09-MBC-Colleges_14.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":725,\"640\":604},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1008\",\"originalImageHeight\":\"952\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AtHUI2haLzfLeIsMo2MkHvis2HUJjerG1wSjHoXyR049+tb0ZRbuJ2nhECg7oShOWweT8uOtaNzLpjwSLGsXmFcKRFg/nilrayYWV7tH/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e2d7c9\",\"#1f2021\",\"#2989b8\",\"#78b6c9\",\"#9a5f29\"],\"lightness\":51,\"placeholderWidth\":768,\"placeholderHeight\":725,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17313,17550,1,'19_09-MBC-Colleges_15','2021-05-18 01:34:44','2021-06-09 23:22:45','69453434-5e1e-47ab-a6df-4f6a1dd6414c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x153_crop_center-center_82_line/17550/19_09-MBC-Colleges_15.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x128_crop_center-center_82_line/17550/19_09-MBC-Colleges_15.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x153_crop_center-center_82_line/17550/19_09-MBC-Colleges_15.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x128_crop_center-center_82_line/17550/19_09-MBC-Colleges_15.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":153,\"640\":128},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1008\",\"originalImageHeight\":\"202\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAAwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A0L0B1TdVIKOaKKAP/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#131415\",\"#f5f6f6\",\"#e3e4e4\",\"#6c7478\",\"#666c74\"],\"lightness\":54,\"placeholderWidth\":768,\"placeholderHeight\":153,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17314,17551,1,'19_5275 christmas e-sig_32','2021-05-18 01:34:45','2021-06-09 23:20:37','e0a13aea-dafa-44e2-aa2b-31ca9767ec2d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/17551/19_5275-christmas-e-sig_32.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/17551/19_5275-christmas-e-sig_32.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/17551/19_5275-christmas-e-sig_32.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/17551/19_5275-christmas-e-sig_32.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"768\",\"originalImageHeight\":\"768\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AvTajHBcCJsnpk+9Pt7yG5ZlWXDqcbTge3enNpySXBuAwDHrkZ7dqlfTreaNVkTOCGznBOKUr7odNxvyyT9dPy/4J/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dae9ee\",\"#d3210a\",\"#060809\",\"#2aa9aa\",\"#cd892e\"],\"lightness\":50,\"placeholderWidth\":768,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17315,17552,1,'19_5275 christmas e-sig_3','2021-05-18 01:34:47','2021-06-09 23:20:36','bb62a76d-80be-4a97-a0af-724d92f37fe9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/17552/19_5275-christmas-e-sig_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/17552/19_5275-christmas-e-sig_3.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/17552/19_5275-christmas-e-sig_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/17552/19_5275-christmas-e-sig_3.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"768\",\"originalImageHeight\":\"768\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A15ZNi9ffJ9KQyK2BC5kO0N8v3fz6VLJE0m1gVGOCD0Ip9vbw21v5MKAJyT9TXHRjW55OexvJ0+VWP//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#f7dce4\",\"#111c06\",\"#f5a90c\",\"#a44e04\",\"#6e8a54\"],\"lightness\":49,\"placeholderWidth\":768,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17316,17553,1,'19_5275 christmas e-sig_4','2021-05-18 01:34:48','2021-06-09 23:20:38','18de1aca-107c-4bf8-b676-5ff88af60cc6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x555_crop_center-center_82_line/17553/19_5275-christmas-e-sig_4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x462_crop_center-center_82_line/17553/19_5275-christmas-e-sig_4.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x555_crop_center-center_82_line/17553/19_5275-christmas-e-sig_4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x462_crop_center-center_82_line/17553/19_5275-christmas-e-sig_4.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":555,\"640\":462},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"768\",\"originalImageHeight\":\"555\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A1JVKg/Lkv8xwOtVtv2uIXFrCFiAw24YYt06VNOxAjYHkOoB9j1rQmASIKowvoK4qFGcaknN7nS5qUFbof//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#f4aa0f\",\"#142106\",\"#f8d2e1\",\"#a44e04\",\"#728a4c\"],\"lightness\":44,\"placeholderWidth\":768,\"placeholderHeight\":555,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17317,17554,1,'19_5275 christmas e-sig_42','2021-05-18 01:34:49','2021-06-09 23:20:38','81f7b32f-e9ce-4ca1-b5fd-67e49102771c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x506_crop_center-center_82_line/17554/19_5275-christmas-e-sig_42.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x421_crop_center-center_82_line/17554/19_5275-christmas-e-sig_42.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x506_crop_center-center_82_line/17554/19_5275-christmas-e-sig_42.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x421_crop_center-center_82_line/17554/19_5275-christmas-e-sig_42.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":506,\"640\":421},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"768\",\"originalImageHeight\":\"506\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8As3OoypqGyJWPTgfTrmprfU1Xct2ssPOFbOQ3NVpABeAgAErz71a2q0ShlBAIPI96KkXbmTFRqRdR0nH531/y/A//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#3fadb7\",\"#3f0606\",\"#f2e9df\",\"#e62c0d\",\"#6d7517\"],\"lightness\":46,\"placeholderWidth\":768,\"placeholderHeight\":506,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17318,17555,1,'nwo-logo-stacked','2021-05-18 01:34:50','2021-06-21 04:39:41','517a9cb0-a214-4fd0-93d3-766deff7ef52',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"256\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_256x149_crop_center-center_line/nwo-logo-stacked.png\"},\"optimizedWebPImageUrls\":{\"256\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_256x149_crop_center-center_line/nwo-logo-stacked.png.webp\"},\"variantSourceWidths\":[\"256\"],\"variantHeights\":{\"256\":149},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"256\",\"originalImageHeight\":\"149\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AimsGUOXCp3AzkAD1Pb/61XIPs+0m4dI+cjCds49fpVnUf+WP0assfcP0b+Yq9xbH/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#f5f6f7\",\"#1b2232\",\"#78808c\",\"#8c94a4\",\"#5e6171\"],\"lightness\":56,\"placeholderWidth\":256,\"placeholderHeight\":149,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17319,17556,1,'NWO Andrew\'s Dad\'s famous cheeseball','2021-05-18 01:34:51','2021-06-21 04:38:17','5d98125c-8fe6-438a-a7ee-757f94feb338',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17320,17557,1,'NWO Bec\'s Nutella Christmas tree','2021-05-18 01:34:51','2021-06-21 04:38:12','f21b9a47-31ae-4c8c-8d63-aba33078f7a4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17321,17558,1,'NWO Bruce\'s Christmas pudding','2021-05-18 01:34:52','2021-06-21 04:38:02','73f503c9-1216-4ab7-a787-8b0bb58ccfcb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17322,17559,1,'NWO Cathy\'s Grandma\'s rum balls','2021-05-18 01:34:52','2021-06-21 04:38:13','48715f38-e3ae-4ad5-8fad-93f8539ba849',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17323,17560,1,'NWO Elliot\'s house deposit mousse','2021-05-18 01:34:52','2021-06-21 04:38:13','6dd689bc-4a7d-460b-86da-3e1558bda203',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17324,17561,1,'NWO Jonno\'s trifle','2021-05-18 01:34:53','2021-06-21 04:38:54','a62d22bd-3ab4-46f4-b767-afcaf20634d7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17325,17562,1,'NWO Kate\'s Aperol Spritz','2021-05-18 01:34:53','2021-06-21 04:38:45','4bb718b1-64c5-43f4-9230-0d63f861b1db',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17326,17563,1,'NWO Kimi\'s Christmas Eve sangria','2021-05-18 01:34:53','2021-06-21 04:38:55','1d17e850-cf6d-4cb4-ac24-6f44c175e3d5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17327,17564,1,'NWO Liz\'s Vasilopita','2021-05-18 01:34:54','2021-06-21 04:39:40','ce1029d3-853e-4f46-b9e3-86201285539a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17328,17565,1,'NWO Scott\'s glazed ham','2021-05-18 01:34:54','2021-06-09 23:12:53','9bd8e3de-0e84-4bc6-857a-a63efb2d8841',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17329,17566,1,'NWO Suz\'s prosciutto lemon wrapped chicken','2021-05-18 01:34:55','2021-06-09 23:12:59','880bdd63-cda4-4573-a069-a788606b03a7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17330,17567,1,'NWO Tilly\'s breakfast salad with tahini dressing','2021-05-18 01:34:55','2021-06-09 23:14:03','6da3ffbe-0e01-4978-801f-c10cbc5101ea',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17331,17568,1,'NWO_Scott_19_04','2021-05-18 01:34:55','2021-06-21 04:39:22','8012f062-b4dd-4395-b5b6-1d88ca908fe3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17332,17569,1,'NWO_Suzanne_19_07','2021-05-18 01:34:56','2021-06-21 04:39:22','930d68c4-2ac5-4d36-b2fc-5b07aa2ecd3d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17333,17570,1,'NWO_Team_20-04','2021-05-18 01:34:56','2021-06-21 04:39:23','c980cc19-089a-4598-84ee-c4af0cb7a8a8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17334,17571,1,'Flag Lady_1','2021-05-18 01:34:57','2021-06-09 23:24:57','1bb2ee3f-2c23-44ad-a38f-bccd7c0730ce',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x828_crop_center-center_82_line/Flag-Lady_1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x690_crop_center-center_82_line/Flag-Lady_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x552_crop_center-center_82_line/Flag-Lady_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x414_crop_center-center_82_line/Flag-Lady_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x345_crop_center-center_82_line/Flag-Lady_1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x828_crop_center-center_82_line/Flag-Lady_1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x690_crop_center-center_82_line/Flag-Lady_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x552_crop_center-center_82_line/Flag-Lady_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x414_crop_center-center_82_line/Flag-Lady_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x345_crop_center-center_82_line/Flag-Lady_1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":828,\"1280\":690,\"1024\":552,\"768\":414,\"640\":345},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1898\",\"originalImageHeight\":\"1024\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7mWdIgTuU46jcOKqafcLdS3GAPL35Ug8+nI7dKKKdtCWf//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c5dbdd\",\"#51607d\",\"#c28346\",\"#7b8fa3\",\"#696e80\"],\"lightness\":58,\"placeholderWidth\":1536,\"placeholderHeight\":828,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17335,17572,1,'Scott and Suz_1','2021-05-18 01:34:59','2021-06-09 23:17:15','25abbcc3-905a-4495-b64d-3d91d1abb81c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x776_crop_center-center_82_line/Scott-and-Suz_1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x647_crop_center-center_82_line/Scott-and-Suz_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x517_crop_center-center_82_line/Scott-and-Suz_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x388_crop_center-center_82_line/Scott-and-Suz_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x323_crop_center-center_82_line/Scott-and-Suz_1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x776_crop_center-center_82_line/Scott-and-Suz_1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x647_crop_center-center_82_line/Scott-and-Suz_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x517_crop_center-center_82_line/Scott-and-Suz_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x388_crop_center-center_82_line/Scott-and-Suz_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x323_crop_center-center_82_line/Scott-and-Suz_1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":776,\"1280\":647,\"1024\":517,\"768\":388,\"640\":323},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2015\",\"originalImageHeight\":\"1019\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3r+W7XUf3ZdQoxGByGz14q/BFJHKWAADHL8nrRRVy2REuh//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d8efec\",\"#7d6899\",\"#a989b9\",\"#f6a250\",\"#80cec9\"],\"lightness\":68,\"placeholderWidth\":1536,\"placeholderHeight\":776,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17336,17573,1,'teal-01','2021-05-18 01:35:01','2021-06-09 23:17:49','89878127-226c-422d-8790-90f0871cf59f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x774_crop_center-center_82_line/teal-01.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x645_crop_center-center_82_line/teal-01.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x516_crop_center-center_82_line/teal-01.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x387_crop_center-center_82_line/teal-01.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x322_crop_center-center_82_line/teal-01.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x774_crop_center-center_82_line/teal-01.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x645_crop_center-center_82_line/teal-01.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x516_crop_center-center_82_line/teal-01.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x387_crop_center-center_82_line/teal-01.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x322_crop_center-center_82_line/teal-01.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":774,\"1280\":645,\"1024\":516,\"768\":387,\"640\":322},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2000\",\"originalImageHeight\":\"1008\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7iiiimZH/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e4f4f4\",\"#e8f4f4\",\"#e8f4f4\",\"#e8f4f4\",\"#e8f4f4\"],\"lightness\":93,\"placeholderWidth\":1536,\"placeholderHeight\":774,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17337,17574,1,'New Word Order Strategic Communication white paper','2021-05-18 01:35:04','2021-07-16 03:53:58','f55a0c62-5090-4a68-848f-89078dcb8332',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17356,17593,1,'Newwordorder Word Press 2021 05 18 5','2021-05-18 03:07:19','2021-06-09 23:22:11','259d49cb-5ffe-4d15-95f8-aeef6647d44f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17359,17596,1,'Posts Export 2021 May 18 0312','2021-05-18 03:13:03','2021-06-09 23:22:12','20006eb7-6a02-45de-8e67-c70dc5a6c007',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17360,17597,1,'Posts Export 2021 May 18 0312 2','2021-05-18 03:17:29','2021-06-09 23:22:11','716875ca-7862-41d5-8e3e-60231de1c9ab',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17361,17598,1,'Newwordorder Word Press 2021 05 18 6','2021-05-18 03:19:16','2021-06-09 23:22:11','a65c2231-3055-480b-ae4b-d4778f1aea0c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17363,17600,1,'business-to-business','2021-05-18 03:20:48','2021-05-18 03:20:48','54a7668e-aa46-4942-ab80-3f6fab4037d3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17364,17601,1,'niche-market','2021-05-18 03:20:48','2021-05-18 03:20:48','e0f9b854-91d1-4c64-bace-db1816e85905',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17365,17602,1,'vertical-market','2021-05-18 03:20:48','2021-05-18 03:20:48','18e72895-7ae0-4231-85ea-d17fe3961228',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17366,17603,1,'Be heard across vertical markets and sectors','2021-05-18 03:20:48','2021-07-23 06:19:14','4de82002-0481-4b03-82d1-21755e7e2467',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-miFonpEY6W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Everyone wants a product or service that meets their needs. We’re time-poor, so that means we want to work with businesses that get us, that know what we do and can service us accordingly.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Businesses with specialised, vertically oriented products have been marketing this strength for years.\\n\\nSo how do you capitalise if your product isn’t niche-market specific?\\n\\nI’m not about to tell you to start touting your product as market specific or specialised if it’s not. But if clients from a particular industry sector are benefiting from your product or service, why not tell other potential, similar clients? It’s much easier to get an audience to listen if you’re speaking directly to them.\\n\\nCustomising your message can build confidence in your service and help you to build market share.\\n\\nChoose one or two major industry sectors you service, and then ask yourself (or better still, ask them) a few questions.\\n\\nHow do they use your product or service?\\n\\nWhat specific business benefit are they getting when they use it?\\n\\nWhat staff within the organisation use it the most?\\n\\nArmed with that knowledge, you can produce messages and communications collateral that directly engages the audience.\\n\\nIt doesn’t have to be complicated. You don’t have to build a whole new campaign for every industry you service. Your brand and product remains consistent, but the way you structure your message changes.\\n\\nThere’s no better way to show potential clients how much you appreciate their specific needs.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17367,17604,1,'Be heard across vertical markets and sectors','2021-05-18 03:20:48','2021-05-18 03:20:48','45c637e5-4595-4286-b345-c8a9630ca84d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Everyone wants a product or service that meets their needs. We’re time-poor, so that means we want to work with businesses that get us, that know what we do and can service us accordingly.\n\nBusinesses with specialised, vertically oriented products have been marketing this strength for years.\n\nSo how do you capitalise if your product isn’t niche-market specific?\n\nI’m not about to tell you to start touting your product as market specific or specialised if it’s not. But if clients from a particular industry sector are benefiting from your product or service, why not tell other potential, similar clients? It’s much easier to get an audience to listen if you’re speaking directly to them.\n\nCustomising your message can build confidence in your service and help you to build market share.\n\nChoose one or two major industry sectors you service, and then ask yourself (or better still, ask them) a few questions.\n\n<em>How do they use your product or service? </em>\n\n<em>What specific business benefit are they getting when they use it? </em>\n\n<em>What staff within the organisation use it the most?</em>\n\nArmed with that knowledge, you can produce messages and communications collateral that directly engages the audience.\n\nIt doesn’t have to be complicated. You don’t have to build a whole new campaign for every industry you service. Your brand and product remains consistent, but the way you structure your message changes.\n\nThere’s no better way to show potential clients how much you appreciate their specific needs.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17368,17605,1,'case-study','2021-05-18 03:20:48','2021-05-18 03:20:48','7fb62060-8e46-4797-a113-f09f95936929',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17369,17606,1,'client-focus','2021-05-18 03:20:48','2021-05-18 03:20:48','af928794-ea9e-4cac-b6a6-979d9fcf5898',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17370,17607,1,'client-service','2021-05-18 03:20:48','2021-05-18 03:20:48','00c3a196-9945-49c8-a813-852f40f1abf2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17371,17608,1,'State your client’s case','2021-05-18 03:20:48','2021-07-23 06:19:14','88a12588-0064-4434-80dd-c8c4904c56c0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wwyHcPmT7W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"We all know how much easier it is to see the path if someone else has cleared it for us first. Your clients and potential clients are no different. Comparing can help them comprehend the value to their own business.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"That’s the value of a case study.\\n\\nThe trick is producing an interesting, well-written, balanced story that makes audiences believe and want to read it.\\n\\nSo how do you put together a great case study?\\n\\nFirst, you need a happy (and preferably interesting) client who agrees to let you tell their story.\\n\\nNext you need to listen to their story. It’s not good enough that you know where your product and services sit in their business. That’s not the story, that’s your marketing copy.\\n\\nStep away from your own business perspective for a moment and think about your clients’.\\n\\n- What are they trying to achieve as a business?\\n- What specifically were they trying to achieve when they implemented your product or service?\\n- What was the situation or status quo prior to implementing your product or service?\\n- How did (or do) they find the process?\\n- Did your service meet or exceed their expectations?\\n- Were there any hiccups or learning experiences that can be included? (We figure if you’ve chosen this story it’s a pretty happy one. But there’s nothing wrong with including an honest teething problem, especially one that has a happy ending. If you addressed and resolved the issue quickly, then it’s a positive reflection on your business).\\n- What was the final outcome?\\n- Can you put a dollar or other specific value figure on the outcome?\\n\\nYou need detail to paint a picture, but don’t get bogged down by it. Keep it sharp, informative and interesting to the audience, and make sure your tone suits them too. Include constant subtle reminders of your product or service\'s involvement in the success, but avoid making it sound like advertorial.\\n\\nGetting it right is worth the effort. At New Word Order, we’ve been producing case studies for client web sites, brochures, presentations, publications and other collateral for over 9 years. We get the brief right, we know what questions to ask and we know how to conduct a phone interview. Because we do them every day.\\n\\nIf your product or service adds value, a great client case study is going to be the most effective sales tools you ever invested in.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17372,17609,1,'State your client’s case','2021-05-18 03:20:48','2021-05-18 03:20:48','b508f90f-f2e7-4422-a285-e36e13fb1283',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'We all know how much easier it is to see the path if someone else has cleared it for us first. Your clients and potential clients are no different. Comparing can help them comprehend the value to their own business.\n\nThat’s the value of a case study.\n\nThe trick is producing an interesting, well-written, balanced story that makes audiences believe and want to read it.\n\nSo how do you put together a great case study?\n\nFirst, you need a happy (and preferably interesting) client who agrees to let you tell their story.\n\nNext you need to listen to their story. It’s not good enough that you know where your product and services sit in their business. That’s not the story, that’s your marketing copy.\n\nStep away from your own business perspective for a moment and think about your clients’.\n<ul>\n 	<li> What are they trying to achieve as a business?</li>\n 	<li>What specifically were they trying to achieve when they implemented your product or service?</li>\n 	<li>What was the situation or status quo prior to implementing your product or service?</li>\n 	<li>How did (or do) they find the process?</li>\n 	<li>Did your service meet or exceed their expectations?</li>\n 	<li>Were there any hiccups or learning experiences that can be included? (We figure if you’ve chosen this story it’s a pretty happy one. But there’s nothing wrong with including an honest teething problem, especially one that has a happy ending. If you addressed and resolved the issue quickly, then it’s a positive reflection on your business).</li>\n 	<li>What was the final outcome?</li>\n 	<li>Can you put a dollar or other specific value figure on the outcome?</li>\n</ul>\nYou need detail to paint a picture, but don’t get bogged down by it. Keep it sharp, informative and interesting to the audience, and make sure your tone suits them too. Include constant subtle reminders of your product or service\'s involvement in the success, but avoid making it sound like advertorial.\n\nGetting it right is worth the effort. At New Word Order, we’ve been producing case studies for client web sites, brochures, presentations, publications and other collateral for over 9 years. We get the brief right, we know what questions to ask and we know how to conduct a phone interview. Because we do them every day.\n\nIf your product or service adds value, a great client case study is going to be the most effective sales tools you ever invested in.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17373,17610,1,'project-management','2021-05-18 03:20:48','2021-05-18 03:20:48','6b7d18c9-671b-47da-a82c-ffd3206e5c14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17374,17611,1,'Common sense isn’t common','2021-05-18 03:20:48','2021-07-23 06:19:14','b68ad838-373d-4a13-aacc-e0dde99025d2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pEGVOX2A5Z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"A great deal of being successful in business is being practical, prepared and dedicated. Seems like common sense.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"You could almost say ‘never put off till tomorrow what you can do today’.\\n\\n##### **But things aren’t ever that simple.**\\n\\nWhile old sayings knock around forever, quite often all they do is put a situation into a little box so it stops nagging on our limited attention. In business, however, those nags – technically known as ‘thought-terminating clichés’ – often desperately need to be heeded.\\n\\nIn my work this week, I’ve seen what happens when an otherwise impressive company becomes blinded by its own clichés. In this case, it’s made senior management myopic, staff stifled, and the owners so consumed by their own narrative they’re unwilling to take responsibility for their failures. It’s not pretty, and the effects are wide-ranging.\\n\\nSo, how can you tell if you’re thinking clearly or caught up in your own clichés? For one, consider the terrifying thing about common clichés: pretty much all of them have an equally popular contradictory saying. Chances are the ones you favour in your business do, too.\\n\\n##### **Look before you leap … He who hesitates is lost.**\\n\\nIf at first you don\'t succeed, try, try again … Don\'t beat your head against a brick wall.\\n\\nAbsence makes the heart grow fonder … Out of sight, out of mind.\\n\\n##### **Haste makes waste … Time waits for no man.**\\n\\nYou\'re never too old to learn … You can\'t teach an old dog new tricks.\\n\\n##### **Do unto others as you would have others do unto you**\\n\\n… Nice guys finish last.\\n\\nReal common sense comes from combining logic, understanding and intuition. Most importantly, in a business sense, it comes from owners and managers operating with honesty, integrity and a good dose of self-awareness.\\n\\nSo while the problem you’re tackling in your business might well be better solved by putting your brain in gear, nose to the grindstone, shoulder to the wheel and keeping your eyes peeled – chances are that what you really need is the guts to be brutally honest with yourself.\\n\\nIt begs the question: What are the ways you use common language to brush over problems in your business? Are there common catchphrases or clichés buffering you from a dose of reality?\\n\\nHere are some examples:\\n\\n- That’s not the way we do things.\\n- It’s not my fault.\\n- That customer’s an idiot.\\n- It’s my way or the highway.\\n- The buck stops with me.\\n\\nIf you stopped to consider the situation and the automatic response within your business, I wonder if there’d be a nugget of genuine insight there that’s being hidden by a cliché? An opportunity to improve, rather than deny?\\n\\nIt’s worth considering. After all, it’s better to be safe than sorry.\\n\\nThis article first appeared in CCIQ’s Inform. We create, research and write this monthly e-zine, which goes out to businesses across Queensland.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17375,17612,1,'Common sense isn’t common','2021-05-18 03:20:48','2021-05-18 03:20:48','19c47c7d-8dbe-4167-a38a-d3d46e38a87d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A great deal of being successful in business is being practical, prepared and dedicated. Seems like common sense.\n\nYou could almost say ‘never put off till tomorrow what you can do today’.\n\nBut things aren’t ever that simple.\n\nWhile old sayings knock around forever, quite often all they do is put a situation into a little box so it stops nagging on our limited attention. In business, however, those nags – technically known as ‘thought-terminating clichés’ – often desperately need to be heeded.\n\nIn my work this week, I’ve seen what happens when an otherwise impressive company becomes blinded by its own clichés. In this case, it’s made senior management myopic, staff stifled, and the owners so consumed by their own narrative they’re unwilling to take responsibility for their failures. It’s not pretty, and the effects are wide-ranging.\n\nSo, how can you tell if you’re thinking clearly or caught up in your own clichés? For one, consider the terrifying thing about common clichés: pretty much all of them have an equally popular contradictory saying. Chances are the ones you favour in your business do, too.\n\n<em>Look before you leap … He who hesitates is lost.</em>\n\n<em>If at first you don\'t succeed, try, try again … Don\'t beat your head against a brick wall.</em>\n\n<em>Absence makes the heart grow fonder … Out of sight, out of mind.</em>\n\n<em>Haste makes waste … Time waits for no man.</em>\n\n<em>You\'re never too old to learn … You can\'t teach an old dog new tricks.</em>\n\n<em>Do unto others as you would have others do unto you … Nice guys finish last.</em>\n\nReal common sense comes from combining logic, understanding and intuition. Most importantly, in a business sense, it comes from owners and managers operating with honesty, integrity and a good dose of self-awareness.\n\nSo while the problem you’re tackling in your business might well be better solved by putting your brain in gear, nose to the grindstone, shoulder to the wheel and keeping your eyes peeled – chances are that what you really need is the guts to be brutally honest with yourself.\n\nIt begs the question: What are the ways you use common language to brush over problems in your business? Are there common catchphrases or clichés buffering you from a dose of reality?\n\nHere are some examples:\n\n<em>That’s not the way we do things.</em>\n\n<em> It’s not my fault.</em>\n\n<em>That customer’s an idiot.</em>\n\n<em>It’s my way or the highway.</em>\n\n<em>The buck stops with me.</em>\n\nIf you stopped to consider the situation and the automatic response within your business, I wonder if there’d be a nugget of genuine insight there that’s being hidden by a cliché? An opportunity to improve, rather than deny?\n\nIt’s worth considering. After all, it’s better to be safe than sorry.\n\n<em>This article first appeared in CCIQ’s Inform. We create, research and write this monthly e-zine, which goes out to businesses across Queensland.</em>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17376,17613,1,'How to read the media','2021-05-18 03:20:49','2021-07-23 06:19:15','3e33e559-0ad7-42f5-a97f-213903fbc83f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZQ8GkHzE9z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"With so much sensationalist news out there competing with valid journalism for your attention – and often winning – being able to tell the exploitative from the illuminative is a valuable skill.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"At the moment, the ideal of an informed public is suffering in something of a perfect news storm.\\n\\nThe interdependent weather fronts colliding are the 24-hour news cycle, Google’s diversity of sources, a global panic culture and political coverage that paints one side as uniformly outrageous and the other as cringingly ineffective: Abbott vs. Gillard, Newman vs. Palaszczuk, Romney vs. Obama.\\n\\nNews companies have found their new news audiences are always switched on, always hungry and, through Google, able to choose facts to suit their preceding opinions.\\n\\nSo used to being shocked, so prepared for it, the audience is anxiously tensed to leap on the tawdry or gory or disastrous.\\n\\nHeadlines such as “Australia actually unpopular destination for refugees” don’t sell.*\\n\\nPeople crave certainty in uncertain times. And there’s profit in that. At its worst, that led to the goings-on at News in the UK, but in its garden-variety form it has led news devolving from knowledge, analysis and consideration to information, opinion and soundbites.\\n\\nOr, more often in the case of financial and business news, an addiction to data (which sits one rung of below information, and two below knowledge) and whichever statistic is most alarming at that hour.\\n\\nBut now, a caveat before we unload on journalism: largely speaking, journalists do their best and care passionately about doing what they do and about doing it well and accurately. But, as every business knows, where there is passion there is overwork. And news is business.\\n\\nThus, these days reading news is, more than ever, about reading between the lines.\\n\\n##### **Here’s how:**\\n\\n###### **Experts and gurus**\\n\\nIn general there are three ways journalists establish the veracity of their stories they appeal to your mind, your heart or your respect for someone’s reputation.\\n\\nIt’s roughly the same idea as academic referencing in research, but it is perverted by placing the angle before the evidence. A quick way to clock a true expert is to research their credentials.\\n\\nLook for markers of success and that they practice what they preach. Would you go to a financial planner who was broke? If a story really gets you thinking, it worth doing some digging into who is quoted.\\n\\n###### **Bleeds it leads**\\n\\nOne of the oldest sayings in journalism is ‘if it bleeds it leads’: essentially, bad news sells. These days news services are struggling to find a business model that works when so much content is free online.\\n\\nMany simply try to drive maximum traffic through their sites. Shock tactics and so-called beat-ups are one way of grabbing attention.\\n\\nMost of the time, bad news is not nearly so bad. For example, remember the hullabaloo that preceded the activation of the Large Hadron Collider?\\n\\n###### **Chinese whispers**\\n\\nDo you hear what was said or what you want to hear? There is no way to avoid it, communication misfires almost constantly.\\n\\nA speaker can think one thing but accidentally say another, the listener can misunderstand what they say, the note taker can make a mistake, the tape recorder can pick up the sound of papers rustling at a crucial time. And that’s just communication across one link of the chain from brain-to-mouth, mouth-to-ear, ear-to-brain, brain-to-hand, pen-to-paper. Multiply these each time the information passes to the next actor in the sequence – including journalist, editor, proof reader, sub-editor and printer – and it is a wonder anything is even largely accurate.\\n\\n###### **Damn statistics**\\n\\n‘Lies, damn lies and statistics’ is true!\\n\\nStats are compressions of mathematical data into pieces of information. Compression always loses something. And there are big loopholes through which data can be pushed to get the result you like.\\n\\nFor example, if a study on income has a sample of 1000 people of whom 999 earn $1 a year and one Clive Rinehart who earns $1 billion a year, then the average wage – mathematically speaking – is just over $1 million. Prosperity for all!\\n\\nStats, facts and figures have their place. Generally, that place is not the centre.\\n\\n###### **Agenda and bias**\\n\\nBack in the Obama-McCain race there was 25 seconds that beautifully demonstrated media bias. You can watch it here.\\n\\nIf you don’t want to watch, this is what happens: the reporter asks a group of diners if they are going to vote for McCain – no one puts their hand up (one couple fights about it); then he asks who is going to vote for Obama – everyone puts their hand up. Then he turns to the camera and says, “See, it’s split.”\\n\\nAustralian mainstream media doesn’t seem embrace such gasp-inducing chutzpah, but there are definite leans to many of our outlets. Keep an eye out for them.\\n\\n###### **Simple and simplistic**\\n\\nEdward De Bono – regardless of what you think of him – wrote something useful about the difference between simple and simplistic.\\n\\n“If you do not seek to understand a situation or process, your efforts will be ‘simplistic’ rather than simple. Simplicity before understanding is worthless.”\\n\\nTime poor generalist journalists often never get a true and deep understanding what they are writing about. (Dedicated subject-matter journos, such as Laurie Oakes, absolutely understand what they are talking about). The average newshound just has to get the story down on paper, compressed by time, and move to the next thing.\\n\\nThey simply lack the time – and very often the inclination – to pore over details. Confronted with 4000 words of research for a 500-word space they prune things off. Often that simplification ends up simplistic and vital, subtle accuracies are accidentally lost.\\n\\n###### **Questioning headlines?**\\n\\nMy last point is taken verbatim from journalist Andrew Marr and his book My Trade because it can’t really be said any better.\\n\\n“If the headline asks a question, try answering ‘no’. “Is This the True Face of Britain’s Young?” (Sensible reader: No.) “Have We Found the Cure for AIDS?” (No; or you wouldn\'t have put the question mark in.) “Does This Map Provide the Key for Peace?” (Probably not.) A headline with a question mark at the end means, in the vast majority of cases, that the story is tendentious or over-sold.\\n\\n“It is often a scare story, or an attempt to elevate some run-of-the-mill piece of reporting into a national controversy and, preferably, a national panic.”\\n\\n##### **What it all means**\\n\\nJournalism is a tricky trade. The tricks cut both ways: you can foist them upon the audience or you can be caught out by them.\\n\\nAs long as attention spans continue to shorten – or as long as pandering to short attention spans makes more money – news is only going to get ‘trickier’ – in both senses of the word.\\n\\n*According to 2011 research form the UN, Australia ranks as the 46th most popular destination for asylum seekers.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17377,17614,1,'How to read the media','2021-05-18 03:20:49','2021-05-18 03:20:49','5f6ed5ca-66e5-4fb9-895d-30e0205e334c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'With so much sensationalist news out there competing with valid journalism for your attention – and often winning – being able to tell the exploitative from the illuminative is a valuable skill.\n\n<strong> </strong>\n\nAt the moment, the ideal of an informed public is suffering in something of a perfect news storm.\n\nThe interdependent weather fronts colliding are the 24-hour news cycle, Google’s diversity of sources, a global panic culture and political coverage that paints one side as uniformly outrageous and the other as cringingly ineffective: Abbott vs. Gillard, Newman vs. Palaszczuk, Romney vs. Obama.\n\nNews companies have found their new news audiences are always switched on, always hungry and, through Google, able to choose facts to suit their preceding opinions.\n\nSo used to being shocked, so prepared for it, the audience is anxiously tensed to leap on the tawdry or gory or disastrous.\n\nHeadlines such as “Australia actually unpopular destination for refugees” don’t sell.*\n\nPeople crave certainty in uncertain times. And there’s profit in that. At its worst, that led to the goings-on at News in the UK, but in its garden-variety form it has led news devolving from knowledge, analysis and consideration to information, opinion and soundbites.\n\nOr, more often in the case of financial and business news, an addiction to data (which sits one rung of below information, and two below knowledge) and whichever statistic is most alarming at that hour.\n\nBut now, a caveat before we unload on journalism: largely speaking, journalists do their best and care passionately about doing what they do and about doing it well and accurately. But, as every business knows, where there is passion there is overwork. And news is business.\n\nThus, these days reading news is, more than ever, about reading between the lines.\n\nHere’s how:\n\n<strong> </strong>\n\n<strong>Experts and gurus</strong>\n\nIn general there are three ways journalists establish the veracity of their stories they appeal to your mind, your heart or your respect for someone’s reputation.\n\nIt’s roughly the same idea as academic referencing in research, but it is perverted by placing the angle before the evidence. A quick way to clock a true expert is to research their credentials.\n\nLook for markers of success and that they practice what they preach. Would you go to a financial planner who was broke? If a story really gets you thinking, it worth doing some digging into who is quoted.\n\n<strong> </strong>\n\n<strong>Bleeds it leads</strong>\n\nOne of the oldest sayings in journalism is ‘if it bleeds it leads’: essentially, bad news sells. These days news services are struggling to find a business model that works when so much content is free online.\n\nMany simply try to drive maximum traffic through their sites. Shock tactics and so-called beat-ups are one way of grabbing attention.\n\nMost of the time, bad news is not nearly so bad. For example, remember the hullabaloo that preceded the activation of the Large Hadron Collider?\n\n<strong> </strong>\n\n<strong>Chinese whispers</strong>\n\nDo you hear what was said or what you want to hear? There is no way to avoid it, communication misfires almost constantly.\n\nA speaker can think one thing but accidentally say another, the listener can misunderstand what they say, the note taker can make a mistake, the tape recorder can pick up the sound of papers rustling at a crucial time. And that’s just communication across one link of the chain from brain-to-mouth, mouth-to-ear, ear-to-brain, brain-to-hand, pen-to-paper. Multiply these each time the information passes to the next actor in the sequence – including journalist, editor, proof reader, sub-editor and printer – and it is a wonder anything is even largely accurate.\n\n<strong>Damn statistics</strong>\n\n‘Lies, damn lies and statistics’ is true!\n\nStats are compressions of mathematical data into pieces of information. Compression always loses something. And there are big loopholes through which data can be pushed to get the result you like.\n\nFor example, if a study on income has a sample of 1000 people of whom 999 earn $1 a year and one Clive Rinehart who earns $1 billion a year, then the average wage – mathematically speaking – is just over $1 million. Prosperity for all!\n\nStats, facts and figures have their place. Generally, that place is not the centre.\n\n<strong>Agenda and bias</strong>\n\nBack in the Obama-McCain race there was 25 seconds that beautifully demonstrated media bias. You can watch it <a href=\"http://www.youtube.com/watch?v=KTkqosRiyYo\">here</a>.\n\nIf you don’t want to watch, this is what happens: the reporter asks a group of diners if they are going to vote for McCain – no one puts their hand up (one couple fights about it); then he asks who is going to vote for Obama – everyone puts their hand up. Then he turns to the camera and says, “See, it’s split.”\n\nAustralian mainstream media doesn’t seem embrace such gasp-inducing chutzpah, but there are definite leans to many of our outlets. Keep an eye out for them.\n\n<strong>Simple and simplistic</strong>\n\nEdward De Bono – regardless of what you think of him – wrote something useful about the difference between simple and simplistic.\n\n“If you do not seek to understand a situation or process, your efforts will be ‘simplistic’ rather than simple. Simplicity before understanding is worthless.”\n\nTime poor generalist journalists often never get a true and deep understanding what they are writing about. (Dedicated subject-matter journos, such as Laurie Oakes, absolutely understand what they are talking about). The average newshound just has to get the story down on paper, compressed by time, and move to the next thing.\n\nThey simply lack the time – and very often the inclination – to pore over details. Confronted with 4000 words of research for a 500-word space they prune things off. Often that simplification ends up simplistic and vital, subtle accuracies are accidentally lost.\n\n<strong>Questioning headlines?</strong>\n\nMy last point is taken verbatim from journalist <a href=\"http://en.wikipedia.org/wiki/Andrew_Marr\">Andrew Marr</a> and his book <em>My Trade</em> because it can’t really be said any better.\n\n“If the headline asks a question, try answering ‘no’. “Is This the True Face of Britain’s Young?” (Sensible reader: No.) “Have We Found the Cure for AIDS?” (No; or you wouldn\'t have put the question mark in.) “Does This Map Provide the Key for Peace?” (Probably not.) A headline with a question mark at the end means, in the vast majority of cases, that the story is tendentious or over-sold.\n\n“It is often a scare story, or an attempt to elevate some run-of-the-mill piece of reporting into a national controversy and, preferably, a national panic.”\n\n<strong>What it all means</strong>\n\nJournalism is a tricky trade. The tricks cut both ways: you can foist them upon the audience or you can be caught out by them.\n\nAs long as attention spans continue to shorten – or as long as pandering to short attention spans makes more money – news is only going to get ‘trickier’ – in both senses of the word.\n\n*According to 2011 research form the UN, Australia ranks as the 46th most popular destination for asylum seekers.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17378,17615,1,'Corporatese to English','2021-05-18 03:20:49','2021-07-23 06:19:15','31065fca-5bae-49a3-b47a-5a52009b43dc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-HTh3V8VYub\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Our business, a prominent leading boutique South East Queensland digital, media, full service and mixed creative agency whose track record puts forth successes and achievement, is New Word Order.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We have built our business on a sensed customer need to elucidate and provide services and solutions from depth-wise passions toward maximizing, engaging and touching base with expert decision-makers and leading experts across our metropolitan networks and even internationally.\\n\\nThese helping, leading and connective skills are what we’d offer to any of our thousands of potentials – inclusive of and with regard to prospectives across the Brisbane and Queensland and Australasian business regionality. Therefore, does contacting New Word Order makes a case for your foremost responsibility toward your strategy regarding your business media?\\n\\nTaking this as a call to revolutionising content, we’d arrange to respond to results-based briefing documentation in solutionised offerings right through to customisable tailored service solutions, meaning the customers is always directly involved within the provision of every consultative gathering of resources, attaining full and effective impacts.\\n\\nSynergising professionally written, artfully designed and productionised media communiqués aligns with our lovely, ever-broadening, and exceptionally cultivated, understanding regarding to every comprehensive aspect within messaging strategies and best practice.\\n\\nAiding and multiplying the efficacy to give pursuit-led and driven engagement regarding consideration to you on our in-house specialities, strength and market-leading is an outstand.\\n\\nAttaining a results-based outcome hand-in-hand with dominant-paradigm appropriation and knowledge guarantees absolute marketing and communicated outcomes.\\n\\nOr, more simply:\\n\\nNeed help with business media? We’d love to give you a hand.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17379,17616,1,'Corporatese to English','2021-05-18 03:20:49','2021-05-18 03:20:49','9a252c0d-2783-4f04-82a6-dcaf75acfb4d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Our business, a prominent leading boutique South East Queensland digital, media, full service and mixed creative agency whose track record puts forth successes and achievement, is New Word Order.\n\nWe have built our business on a sensed customer <strong><span>need</span></strong> to elucidate and provide services and solutions from depth-wise passions toward maximizing, engaging and touching base with expert decision-makers and leading experts across our metropolitan networks and even internationally.\n\nThese <strong><span>help</span></strong>ing, leading and connective skills are what we’d offer to any of our thousands of potentials – inclusive of and <strong><span>with</span></strong> regard to prospectives across the Brisbane and Queensland and Australasian <strong><span>business</span></strong> regionality. Therefore, does contacting New Word Order makes a case for your foremost responsibility toward your strategy regarding your business <strong><span>media?</span></strong>\n\nTaking this as a call to revolutionising content, <strong><span>we’d</span></strong> arrange to respond to results-based briefing documentation in solutionised offerings right through to customisable tailored service solutions, meaning the customers is always directly involved within the provision of every consultative gathering of resources, attaining full and effective impacts.\n\nSynergising professionally written, artfully designed and productionised media communiqués aligns with our <strong><span>love</span></strong>ly, ever-broadening, and exceptionally cultivated, understanding regarding <strong><span>to</span></strong> every comprehensive aspect within messaging strategies and best practice.\n\nAiding and multiplying the efficacy to <strong><span>give</span></strong> pursuit-led and driven engagement regarding consideration to <strong><span>you</span></strong> on our in-house specialities, strength and market-leading is an outstand.\n\nAttaining <strong><span>a</span></strong> results-based outcome <strong><span>hand</span></strong>-in-hand with dominant-paradigm appropriation and knowledge guarantees absolute marketing and communicated outcomes.\n\nOr, more simply:\n\n<a href=\"http://www.newwordorder.com.au\"><strong><span>Need help with business media? We’d love to give you a hand.</span></strong></a>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17380,17617,1,'Management is more than measurement','2021-05-18 03:20:49','2021-07-23 06:19:15','b22257f7-4ad7-4a00-8a8c-ac0a9656c823',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4GZRkIUT1L\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Businesses in the service sectors have taken many management practices straight out of the factories of the 20th Century. Often they don’t work.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Let me use one of my staff’s previous performance reviews as a case study.\\n\\nHe worked for a large corporation and its performance review policy was worker and boss would sit down once a year for 20 minutes.\\n\\nThe boss had a set checklist for everyone – the same one.\\n\\nIt was a single A4 page covered with metrics along which each staff member would receive a score from ‘subpar’ through ‘needs improvement’ and ‘meets expectations’ to ‘exceeds expectations’.\\n\\nMy employee told me that his boss ticked ‘meets expectations’ for everything … regardless of who he was scoring.\\n\\nFor people who have worked in large corporations, nothing would be surprising so far. However, my employee and his boss had an unusually candid relationship.\\n\\nWhen my employee asked his old boss what he had to do to ‘exceed expectations’, the boss intimated that head office had decreed that no-one was allowed to ‘exceed expectations’.\\n\\nYou could surmise that this might have merely been an attempt to keep things simple. If everyone is average and everything works well enough, then no-one gets a raise, no-one needs leadership coaching, no budgets are stressed, and everyone remains motivated to ‘exceed expectations’.\\n\\nHowever, this case study skewers the saying you can’t manage what you can’t measure. This company’s performance reviews were not measuring, though they looked a lot like it. Their measurement tools and practices didn’t match the nature of their staff’s tasks in a services industry.\\n\\nSo this company was using an unreliable yardstick – a single A4 of tick-and-cross – and an unreliable measurer: the manager’s judgment in that one 20-minute block once a year.\\n\\nPlus they had kneecapped both with a rule that no-one can be better than just ‘good enough’.\\n\\nHere’s the rub. Most jobs these days aren’t on conveyor belts. Most create ‘value’ – the unmeasurable flipside of ROI – through services. Performance in these jobs can be accurately judged and appraised by involved and well-trained managers, but job performance in these sorts of roles cannot be accurately summed up with numbers.\\n\\nHere are the crucial toolkit words – and these words are a great hammer and anvil to crack so many things apart: qualitative and quantitative.\\n\\nManagement by measurement is quantitative. It is accountancy played with people. It fits neatly with the MBA approach to business.\\n\\nManagement by attention, involvement and open dialogue is qualitative. It understands and then secures consensus. It doesn’t fit anything neatly.\\n\\nWorking with people’s qualities isn’t neat, but it is where value comes from in the service sector.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17381,17618,1,'Management is more than measurement','2021-05-18 03:20:49','2021-05-18 03:20:49','604d4033-139f-4eb5-9382-44ea5c16a262',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Businesses in the service sectors have taken many management practices straight out of the factories of the 20th Century. Often they don’t work.\n\nLet me use one of my staff’s previous performance reviews as a case study.\n\nHe worked for a large corporation and its performance review policy was worker and boss would sit down once a year for 20 minutes.\n\nThe boss had a set checklist for everyone – the same one.\n\nIt was a single A4 page covered with metrics along which each staff member would receive a score from ‘subpar’ through ‘needs improvement’ and ‘meets expectations’ to ‘exceeds expectations’.\n\nMy employee told me that his boss ticked ‘meets expectations’ for everything … regardless of who he was scoring.\n\nFor people who have worked in large corporations, nothing would be surprising so far. However, my employee and his boss had an unusually candid relationship.\n\nWhen my employee asked his old boss what he had to do to ‘exceed expectations’, the boss intimated that head office had decreed that no-one was allowed to ‘exceed expectations’.\n\nYou could surmise that this might have merely been an attempt to keep things simple. If everyone is average and everything works well enough, then no-one gets a raise, no-one needs leadership coaching, no budgets are stressed, and everyone remains motivated to ‘exceed expectations’.\n\nHowever, this case study skewers the saying <em>you can’t manage what you can’t measure</em>. This company’s performance reviews were <em>not </em>measuring, though they looked a lot like it. Their measurement tools and practices didn’t match the nature of their staff’s tasks in a services industry.\n\nSo this company was using an unreliable yardstick – a single A4 of tick-and-cross – and an unreliable measurer: the manager’s judgment in that one 20-minute block once a year.\n\nPlus they had kneecapped both with a rule that no-one can be better than just ‘good enough’.\n\nHere’s the rub. Most jobs these days aren’t on conveyor belts. Most create ‘value’ – the unmeasurable flipside of ROI – through services. Performance in these jobs can be accurately judged and appraised by involved and well-trained managers, but job performance in these sorts of roles cannot be accurately summed up with numbers.\n\nHere are the crucial toolkit words – and these words are a great hammer and anvil to crack so many things apart: qualitative and quantitative.\n\nManagement by measurement is quantitative. It is accountancy played with people. It fits neatly with the MBA approach to business.\n\nManagement by attention, involvement and open dialogue is qualitative. It understands and then secures consensus. It doesn’t fit anything neatly.\n\nWorking with people’s qualities isn’t neat, but it <em>is </em>where value comes from in the service sector.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17382,17619,1,'social-media','2021-05-18 03:20:49','2021-05-18 03:20:49','3688f800-c215-4b80-9fb2-62c4812a1b3f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17383,17620,1,'target-audience','2021-05-18 03:20:49','2021-05-18 03:20:49','510c888d-bad1-4edb-8b76-c1434b68ed2d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17384,17621,1,'Talking to the kids: tips for marketing to Gen-Y','2021-05-18 03:20:49','2021-07-23 06:19:15','dd3de6b8-b7cd-4d37-88d1-dae5f48e2341',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-33RxHlAlsf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Generation-Y is the first generation that grew up with the internet, and so marketing and speaking to those whippersnappers can be a challenge. We found when we worked on our My Smoking and Feeling Good campaigns with Queensland Health that Gen-Y doesn’t like being preached at – they prefer being spoken to, sharing stories, and honest marketing experiences.\\n\\nKeeping in mind that half of the NWO team fits into that pesky generation, we’ve taken a good look at global researcher Joeri Van den Bergh interviews with 21 global marketing executives from big brands, like Converse, Heineken and BBC about improving their marketing to Gen-Y customers. Here’s what he - and we - learned.\\n\\n##### **1. Make it relevant**\\n\\nFor Gen-Y, it’s all about price/quality: Are you offering something valuable? Are you only selling product, or facilitating and endorsing their life? Being true to who you are is also key. Van den Bergh found storytelling, authenticity, and uniqueness add more than you would expect: They reflect Gen-Y\'s core values and sustain your corporate identity.\\n\\nHe also says that creating an actual experience around your product, online and offline, elevates your brand experience. To stay relevant for Millennials, Van den Bergh says marketers should endorse inclusive brands with exclusive experiences.\\n\\n##### **2. Be where they are**\\n\\nVan den Bergh says that above-the-line campaigns still create awareness, but integration with social media and interaction is vital to connect with Gen-Y.\\n\\nHe recommends that websites be used to engage with Gen-Y customers on a deeper level, with contests, games, or ads. Van den Bergh says your website should be a portal where everything your consumer needs to know is presented in an intuitive and engaging way.\\n\\nOf course, he considers social media a must. Facebook, for example, enables interaction and inspiration and is a great platform for trying new things. Van den Bergh recommends going mobile to connect with your consumers, and to connect them with each other.\\n\\nHe also says events are the way to go when you want to create an ultimate customer experience. The result is word-of-mouth—sharing stories online and long-lasting memories.\\n\\n##### **3. Activate conversations**\\n\\nSurprising your consumers is the best way to shake them awake and make sure they stay focused. Van den Bergh says a surprise can be anything and as long it’s relevant and you don\'t stalk them, Gen-Y will love it.\\n\\nHe also says not to underestimate the power of stories. Tell a story about yourself, let your consumers share stories about their personal life, or combine both.\\n\\n##### **4. Enhance loyalty, be FAIR**\\n\\nYou have to keep your Gen-Y consumers involved. Van den Bergh says to follow the FAIR model: FAst, Innovative, and Rewarding.\\n\\nThe faster you react to your consumers, the more likely you are to have a bond with them. By innovating, you are showing interest, creativity, and initiative. Showing Gen-Y consumers your appreciation for having chosen you is key.\\n\\n##### **5. Have guts**\\n\\nGo out there and create a daring but relevant appeal.\\n\\nHow have you marketed to Gen-Y? What’s worked, and what hasn’t? We’d love to hear from you! Let us know and join the conversation in the comments below.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17385,17622,1,'Talking to the kids: tips for marketing to Gen-Y','2021-05-18 03:20:50','2021-05-18 03:20:50','8b641dbd-59c9-4db5-b3ab-8de80e0a663b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Generation-Y is the first generation that grew up with the internet, and so marketing and speaking to those whippersnappers can be a challenge. We found when we worked on our My Smoking and Feeling Good campaigns with Queensland Health that Gen-Y doesn’t like being preached at – they prefer being spoken to, sharing stories, and honest marketing experiences.\n\nKeeping in mind that half of the NWO team fits into that pesky generation, we’ve taken a good look at global researcher Joeri Van den Bergh <a href=\"http://www.marketingprofs.com/articles/2013/10599/five-steps-to-improve-your-marketing-to-generation-y\">interviews with 21 global marketing executives</a> from big brands, like Converse, Heineken and BBC about improving their marketing to Gen-Y customers. Here’s what he - and we - learned.\n\n<strong>1. Make it relevant</strong>\n\nFor Gen-Y, it’s all about price/quality: Are you offering something valuable? Are you only selling product, or facilitating and endorsing their life? Being true to who you are is also key. Van den Bergh found storytelling, authenticity, and uniqueness add more than you would expect: They reflect Gen-Y\'s core values and sustain your corporate identity.\n\nHe also says that creating an actual experience around your product, online and offline, elevates your brand experience. To stay relevant for Millennials, Van den Bergh says marketers should endorse inclusive brands with exclusive experiences.\n\n<strong>2. Be where they are</strong>\n\nVan den Bergh says that above-the-line campaigns still create awareness, but integration with social media and interaction is vital to connect with Gen-Y.\n\nHe recommends that websites be used to engage with Gen-Y customers on a deeper level, with contests, games, or ads. Van den Bergh says your website should be a portal where everything your consumer needs to know is presented in an intuitive and engaging way.\n\nOf course, he considers social media a must. Facebook, for example, enables interaction and inspiration and is a great platform for trying new things. Van den Bergh recommends going mobile to connect with your consumers, and to connect them with each other.\n\nHe also says events are the way to go when you want to create an ultimate customer experience. The result is word-of-mouth—sharing stories online and long-lasting memories.\n\n<strong>3. Activate conversations</strong>\n\nSurprising your consumers is the best way to shake them awake and make sure they stay focused. Van den Bergh says a surprise can be anything and as long it’s relevant and you don\'t stalk them, Gen-Y will love it.\n\nHe also says not to underestimate the power of stories. Tell a story about yourself, let your consumers share stories about their personal life, or combine both.\n\n<strong>4. Enhance loyalty, be FAIR</strong>\n\nYou have to keep your Gen-Y consumers involved. Van den Bergh says to follow the FAIR model: FAst, Innovative, and Rewarding.\n\nThe faster you react to your consumers, the more likely you are to have a bond with them. By innovating, you are showing interest, creativity, and initiative. Showing Gen-Y consumers your appreciation for having chosen you is key.\n\n<strong>5. Have guts</strong>\n\nGo out there and create a daring but relevant appeal.\n\nHow have you marketed to Gen-Y? What’s worked, and what hasn’t? We’d love to hear from you! Let us know and join the conversation in the comments below.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17386,17623,1,'Righting writing','2021-05-18 03:20:50','2022-05-30 01:20:14','9e50db93-0b91-41df-9428-25215059fcdb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WiIX62eIQK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uni was when I found my purpose in life. A passionate lecture on the very first day was my ‘eureka!’ moment that then propelled me through a double major in communications, 10 years in a newsroom and countless more in corporate writing.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"But it all could have come tumbling down in the stern and unyielding face of just one lecturer: Ros Petelin.\\n\\nLike most kids who gravitated toward the arts in school, I’d been feted as a bit of a writer. I wrote installments of unreasonably sappy romance novels late at night and distributed copies to peers on the train the next morning. I won an academic scholarship for my writing (although nearly lost it many times for my maths).\\n\\nIt was left to Ros—now an associate professor in the School of English, Media Studies and Art History at UQ, and a well-respected writer in business communication—to tear my self-made kingdom down, word by word, until I could rebuild it on more solid foundations.\\n\\nHere’s what I now know to be true about writing effective business words.\\n\\nThanks, Ros. I hope you’re grading more kindly these days.\\n\\n##### **Trick #1: Talk like your audience**\\n\\nIf you’re writing for your business, forget formal words and don’t allow fear of failure—or grammar—to stop you writing. Instead, a trick I’ve long used in business writing is to hear a typical customer’s voice in my head, and then to write like they talk.\\n\\nLike acting, the craft of writing involves immersing yourself in the character. In this case, the character is your customer—and by sounding like them, you’re more likely to draw them in.\\n\\n##### **Trick #2: WIRMI**\\n\\nI have Ros and her fondness for US author Linda Flowers to thank for WIRMI. The acronym ‘What I Really Mean Is’ is extraordinarily helpful in bringing clarity to business writing, and it’s a tool I still use daily.\\n\\nYou can use WIRMI as a catchphrase at any point of your writing—when you’re trying to work out exactly what you want to say, and when you’ve written something and you need to ensure it says what you want, clearly and well.\\n\\nIf you’re not comfortable with writing—and plenty of people would rather line up for a root canal than write an essay—this is a great way to check you’re on track.\\n\\n##### **Trick #3: So nice you read it thrice**\\n\\nFinally, if you’re satisfied that what you’ve written is the best you can do, read it through once more—and then put it down.\\n\\nAfter a few hours—or a few days, if you have the time—pick it up and critically read it again. Make a few adjustments. Delete a few words. Then hide it again.\\n\\nOn the third go, after another break, pretend you’re the customer and read it aloud to yourself as though you’re seeing it for the first time. If you have no more changes to make to it, it’s good to go. But chances are, you’ll think of a few.\\n\\nWhy at least three reads? Professional writers and editors know better than anyone that great writing comes from multiple drafts, not a single session of inspiration. Taking a break in between drafts—although hard to do in a busy work day—can be the key to achieving great results.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Righting writing','Uni was when I found my purpose in life. A passionate lecture on the very first day was my ‘eureka!’ moment that then propelled me through a double major in communications, 10 years in a newsroom and countless more in corporate writing.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17387,17624,1,'Righting writing','2021-05-18 03:20:50','2021-05-18 03:20:50','62084c5c-83d2-4b32-a2b8-ffa87d1d4a0a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Uni was when I found my purpose in life. A passionate lecture on the very first day was my ‘eureka!’ moment that then propelled me through a double major in communications, 10 years in a newsroom and countless more in corporate writing.\n\nBut it all could have come tumbling down in the stern and unyielding face of just one lecturer: Ros Petelin.\n\nLike most kids who gravitated toward the arts in school, I’d been feted as a bit of a writer. I wrote installments of unreasonably sappy romance novels late at night and distributed copies to peers on the train the next morning. I won an academic scholarship for my writing (although nearly lost it many times for my maths).\n\nIt was left to Ros – now an associate professor in the School of English, Media Studies and Art History at UQ, and a well-respected writer in business communication – to tear my self-made kingdom down, word by word, until I could rebuild it on more solid foundations.\n\nHere’s what I now know to be true about writing effective business words.\n\nThanks, Ros. I hope you’re grading more kindly these days.\n\n<strong>Trick #1: Talk like your audience</strong>\n\nIf you’re writing for your business, forget formal words and don’t allow fear of failure – or grammar – to stop you writing. Instead, a trick I’ve long used in business writing is to hear a typical customer’s voice in my head, and then to write like they talk.\n\nLike acting, the craft of writing involves immersing yourself in the character. In this case, the character is your customer – and by sounding like them, you’re more likely to draw them in.\n\n<strong>Trick #2: WIRMI</strong>\n\nI have Ros and her fondness for US author Linda Flowers to thank for WIRMI. The acronym ‘What I Really Mean Is’ is extraordinarily helpful in bringing clarity to business writing, and it’s a tool I still use daily.\n\nYou can use WIRMI as a catchphrase at any point of your writing – when you’re trying to work out exactly what you want to say, and when you’ve written something and you need to ensure it says what you want, clearly and well.\n\nIf you’re not comfortable with writing – and plenty of people would rather line up for a root canal than write an essay – this is a great way to check you’re on track.\n\n<strong>Trick #3: So nice you read it thrice</strong>\n\nFinally, if you’re satisfied that what you’ve written is the best you can do, read it through once more – and then put it down.\n\nAfter a few hours – or a few days, if you have the time – pick it up and critically read it again. Make a few adjustments. Delete a few words. Then hide it again.\n\nOn the third go, after another break, pretend you’re the customer and read it aloud to yourself as though you’re seeing it for the first time. If you have no more changes to make to it, it’s good to go. But chances are, you’ll think of a few.\n\nWhy at least three reads? Professional writers and editors know better than anyone that great writing comes from multiple drafts, not a single session of inspiration. Taking a break in between drafts – although hard to do in a busy work day – can be the key to achieving great results.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17388,17625,1,'content-marketing','2021-05-18 03:20:50','2021-05-18 03:20:50','e817a3c8-cc66-48e4-b58e-ed89319f8eb5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17389,17626,1,'The year of content marketing','2021-05-18 03:20:50','2021-07-23 06:19:15','ce7180c4-9f6a-43a1-a60e-148dec7f056a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5uJhJG0gB5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"We’re halfway through the year already. When did that happen? For marketers, this was going to be the ‘year of content marketing’. Has it been for you?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Many brands have had a great time putting together content marketing campaigns – Marketing Mag cites Red Bull and Mitre 10’s efforts on The Block. But there’s always an extra worry that overloading customers with content can do more harm than good.\\n\\nThink of how you engage online and use social media yourself. We all have those friends who overpost and overshare, and you end up either ignoring or blocking them. Don’t run the risk of bombarding your customers with inconsistent or non-engaging content just to keep up a social media presence. It’s a guaranteed way put them off completely.\\n\\nWith LinkedIn and Facebook used to distribute the most marketing content, it’s not just the frequency of posts that can let your company down. It’s about what you’re saying, too. And the balance between pushing your message and producing good content is tough, as is maintaining consistency. It’s a balance, really, and the key is creating informative, engaging and sharable content.\\n\\nSo, what’s the trick? Well… there is none. Sorry. It’s old-school. Understand your market’s likes and expectations, and especially understand how much they want to hear from you. A common sense approach. How are you surviving in the year of content marketing?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17390,17627,1,'The year of content marketing','2021-05-18 03:20:50','2021-05-18 03:20:50','7fa0426c-6595-4d1b-905b-696105fac6d3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'We’re halfway through the year already. When did that happen? For marketers, this was going to be the ‘year of content marketing’. Has it been for you?\n\nMany brands have had a great time putting together content marketing campaigns – <a href=\"http://www.marketingmag.com.au/blogs/when-content-marketing-goes-wrong-40021/#.UYyG17Zm2cR\">Marketing Mag</a> cites Red Bull and Mitre 10’s efforts on <em>The Block</em>. But there’s always an extra worry that overloading customers with content can do more harm than good.\n\nThink of how you engage online and use social media yourself. We all have those friends who overpost and overshare, and you end up either ignoring or blocking them. Don’t run the risk of bombarding your customers with inconsistent or non-engaging content just to keep up a social media presence. It’s a guaranteed way put them off completely.\n\nWith LinkedIn and Facebook used to distribute the most marketing content, it’s not just the frequency of posts that can let your company down. It’s about what you’re saying, too. And the balance between pushing your message and producing good content is tough, as is maintaining consistency. It’s a balance, really, and the key is creating informative, engaging and sharable content.\n\nSo, what’s the trick? Well… there is none. Sorry. It’s old-school. Understand your market’s likes and expectations, and especially understand how much they want to hear from you. A common sense approach. How are you surviving in the year of content marketing?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17391,17628,1,'Learning to lead','2021-05-18 03:20:50','2021-07-23 06:19:16','b8c97320-d3e1-4f4c-b5ac-f401206840bb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uWsaVfK1Sl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Most of us have leadership potential, but not all of us are true leaders. Have you ever thought about what true leadership is? Let\'s take a look at how to inspire and motivate yourself and a team to follow your vision.\\n\\n##### **A vision**\\n\\nLeadership starts with vision. A survey by Harvard Business Review found that being forward-thinking is the attribute that most distinguishes leaders from non-leaders. The consensus is that envisioning exciting possibilities and sharing them with others is the most inspiring way to lead a team.\\n\\nGreat leaders, John Ryan wrote in Forbes, give real thought to the values, ideas and activities they’re most passionate about. These should be challenging to put in action, and success should only be reached by setting realistic, demanding goals and going after them relentlessly.\\n\\nWith the help of other engaged and talented men and women, a leader is born.\\n\\n##### **Balance vision and action**\\n\\nWhile your vision is the destination, action is how you get there. Creating a balance only happens when the directions or instructions to reach that vision are clear.\\n\\nA leader needs to understand their team and what motivates them. David Lavinsky wrote in Forbes that true leaders recognise talent and work with those with skills to complement their own, celebrating small victories with the team while staying focused on the big goal.\\n\\n##### **A personal statement**\\n\\nA useful personal leadership vision, focused on action and direction, is a compelling image of an achievable future. Stew Friedman suggested in the Harvard Business Review that to grow as a leader, you should compose your own personal leadership vision, drafted and practised until it’s true and inspiring.\\n\\nFriedman also recommended asking staff to do the same, building on the trust that comes from being aware of what really drives one another.\\n\\n“You’ll be better equipped to capitalise on a critical, often overlooked, aspect of diversity – the remarkable variety that exists in the aspirations of the people around you,” Friedman said.\\n\\n##### **Communicating your vision**\\n\\nKnowing what you want to accomplish may seem clear to you, but as Tanya Price wrote in Forbes, explaining and motivating others is a different story. Clearly and succinctly describing what you want done is important. If you can’t relate your vision to your team, you won’t all be working toward the same goal.\\n\\nCreating a productive work environment depends on clear communication. Your team will learn to trust and depend on you, and will be less hesitant to work harder.\\n\\n##### **Values and delegation**\\n\\nYour team is a reflection of yourself, and if you make honest and ethical behavior a key value, they\'ll follow suit.\\n\\nDelegating tasks is one of the most important skills you can develop for leadership. And the key to delegation is identifying the strengths of your team, and capitalising on them.\\n\\n##### **Confident and committed**\\n\\nPart of your job as a leader is to keep up your confidence and focus on the larger goal.\\n\\n“Remember, your team will take cues from you, so if you exude a level of calm damage control, your team will pick up on that feeling,” said Price.\\n\\nOf course, if you expect your team to work hard and produce quality results, you must lead by example. There’s no greater motivation than seeing hard work done at every level.\\n\\n##### **Leadership, not management**\\n\\nManagement is a set of processes, like planning, budgeting, staffing and problem-solving. That’s different to leadership, which is about taking a team or organisation into the future, finding opportunity, and producing useful change.\\n\\nWhile management is about attributes, leadership is about behaviour. Are you behaving like a leader?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17392,17629,1,'Learning to lead','2021-05-18 03:20:50','2021-05-18 03:20:50','2564cd24-1622-4df5-b360-5ede95dbc27a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Most of us have leadership potential, but not all of us are true leaders. Have you ever thought about what true leadership is? Let\'s take a look at how to inspire and motivate yourself and a team to follow your vision.\n\n<strong>A vision</strong>\n\nLeadership starts with vision. A survey by <em>Harvard Business Review</em> found that being forward-thinking is the attribute that most distinguishes leaders from non-leaders. The consensus is that envisioning exciting possibilities and sharing them with others is the most inspiring way to lead a team.\n\nGreat leaders, John Ryan wrote in <em>Forbes</em>, give real thought to the values, ideas and activities they’re most passionate about. These should be challenging to put in action, and success should only be reached by setting realistic, demanding goals and going after them relentlessly.\n\nWith the help of other engaged and talented men and women, a leader is born.\n\n<strong>Balance vision and action</strong>\n\nWhile your vision is the destination, action is how you get there. Creating a balance only happens when the directions or instructions to reach that vision are clear.\n\nA leader needs to understand their team and what motivates them. David Lavinsky wrote in <em>Forbes</em> that true leaders recognise talent and work with those with skills to complement their own, celebrating small victories with the team while staying focused on the big goal.\n\n<strong>A personal statement</strong>\n\nA useful personal leadership vision, focused on action and direction, is a compelling image of an achievable future. Stew Friedman suggested in the <em>Harvard Business Review</em> that to grow as a leader, you should compose your own personal leadership vision, drafted and practised until it’s true and inspiring.\n\nFriedman also recommended asking staff to do the same, building on the trust that comes from being aware of what really drives one another.\n\n“You’ll be better equipped to capitalise on a critical, often overlooked, aspect of diversity – the remarkable variety that exists in the aspirations of the people around you,” Friedman said.\n\n<strong>Communicating your vision</strong>\n\nKnowing what you want to accomplish may seem clear to you, but as Tanya Price wrote in <em>Forbes</em>, explaining and motivating others is a different story. Clearly and succinctly describing what you want done is important. If you can’t relate your vision to your team, you won’t all be working toward the same goal.\n\nCreating a productive work environment depends on clear communication. Your team will learn to trust and depend on you, and will be less hesitant to work harder.\n\n<strong>Values and delegation</strong>\n\nYour team is a reflection of yourself, and if you make honest and ethical behavior a key value, they\'ll follow suit.\n\nDelegating tasks is one of the most important skills you can develop for leadership. And the key to delegation is identifying the strengths of your team, and capitalising on them.\n\n<strong>Confident and committed</strong>\n\nPart of your job as a leader is to keep up your confidence and focus on the larger goal.\n\n“Remember, your team will take cues from you, so if you exude a level of calm damage control, your team will pick up on that feeling,” said Price.\n\nOf course, if you expect your team to work hard and produce quality results, you must lead by example. There’s no greater motivation than seeing hard work done at every level.\n\n<strong>Leadership, not management</strong>\n\nManagement is a set of processes, like planning, budgeting, staffing and problem-solving. That’s different to leadership, which is about taking a team or organisation into the future, finding opportunity, and producing useful change.\n\nWhile management is about attributes, leadership is about behaviour. Are you behaving like a leader?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17393,17630,1,'creative-agency','2021-05-18 03:20:50','2021-05-18 03:20:50','9c73fc5b-3e2e-4fc4-8654-9ee9c50c80a8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17394,17631,1,'The problem of creativity','2021-05-18 03:20:51','2021-07-23 06:19:16','1e91600c-f49c-4ff2-8ce3-d7d9dcd8b3f4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TgHcrFPn5p\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Explaining what it is we do at New Word Order, working in a creative agency, can be a little tough.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We’ve come to realise it’s the word ‘creative’ that probably throws people.\\n\\nCreative means something different to everyone. It even means something different to each of us here at NWO. Our project managers, marketers, designers and writers each work in different disciplines and are inspired by different things. And each of our clients and their projects are, too.\\n\\nSo we took some time to ask around the office and try to define what creative means to us. What we found was interesting – some fascinating definitions and insights, inspired by work and from outside of it. It seems that working in a building with ‘creative’ written on the side does encourage us to be so. And what was amusing was the insight into our staff their responses elicited.\\n\\nFor our designer Rebekah, creativity means letting go of what you think you know. Isn’t that kind of perfect? At the same time, our resident wordsmith Suzanne finds creativity in beautifully crafted words. Suzanne says she can be star-struck by beautiful phrases the same way someone else can be affected by visual art or fashion.\\n\\nTo feel creative, our strategic marketer Nikala says she likes to consider the problem at hand and then take time out to think – go for a walk, have a drink with friends, relax. Scott, our Creative Director, says he also likes a change of pace and headspace to ignite creativity – he even finds airports and planes inspiring because they’re so different to his normal place. Scott feels most creative, though, when a worthy challenge or brief comes our way. Rebekah also feels most creative when inspired by a great brief.\\n\\nAnd what of true creativity? According to Suzanne, at its heart creativity is about seeing the world differently and pursuing the new. She says that writing with great creativity is the hardest work she does, and she finds creative copywriting demands the most energy but also gives her the greatest satisfaction.\\n\\nScott says creativity is the generation of something new that contributes to the shared human experience. It\'s sometimes original that spans every aspect of what a human mind is capable of – science, art, you name it.\\n\\nNikala agrees that creativity isn’t necessarily about art. Paving the way for our clients and their projects, she points out that creativity can be seen anywhere and is probably best defined by someone thinking differently about a problem and coming up with a solution that is not only new, but also works.\\n\\nAnd so, in a building labelled ‘a creative agency’, there are as many different ideas as people when it comes to defining what characterises our work. Last words to Scott:\\n\\nTrue creativity is unique, incredibly clever, transforming to humanity, and startling in its (metaphorical) beauty. I\'m hooked on the link between creativity and beauty in all its possible meanings.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17395,17632,1,'The problem of creativity','2021-05-18 03:20:51','2021-05-18 03:20:51','083824fd-2d92-45c5-be72-f466149bebc9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p class=\"AAPARAGRAPH\"></p>\n<p class=\"AAPARAGRAPH\"><span>Explaining what it is we do at New Word Order, working in a <em>creative agency</em>, can be a little tough. </span></p>\n<p class=\"AAPARAGRAPH\"><span>We’ve come to realise it’s the word ‘creative’ that probably throws people.</span><em><span>\n</span></em></p>\n<p class=\"AAPARAGRAPH\"><em><span>Creative</span></em><span> means something different to everyone. It even means something different to each of us here at NWO. Our project managers, marketers, designers and writers each work in different disciplines and are inspired by different things. And each of our clients and their projects are, too.</span></p>\n<p class=\"AAPARAGRAPH\"><span>So we took some time to ask around the office and try to define what creative means to us. What we found was interesting – some fascinating definitions and insights, inspired by work and from outside of it. It seems that working in a building with ‘creative’ written on the side does encourage us to be so. And what was amusing was the insight into our staff their responses elicited.</span></p>\n<p class=\"AAPARAGRAPH\"><span>For our designer Rebekah, creativity means letting go of what you think you know. Isn’t that kind of perfect? At the same time, our resident wordsmith Suzanne finds creativity in </span><span lang=\"en-us\" xml:lang=\"en-us\">beautifully crafted words. Suzanne says she can be star-struck by beautiful phrases the same way someone else can be affected by visual art or fashion.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">To feel creative, our strategic marketer Nikala says she likes to consider the problem at hand and then take time out to think – go for a walk, have a drink with friends, relax. Scott, our Creative Director, says he also likes a change of pace and headspace to ignite creativity – he even finds airports and planes inspiring because they’re so different to his normal place. Scott feels most creative, though, when a worthy challenge or brief comes our way. Rebekah also feels most creative when </span><span>inspired by a great brief.</span></p>\n<p class=\"AAPARAGRAPH\"><span>And what of true creativity? According to Suzanne, </span><span lang=\"en-us\" xml:lang=\"en-us\">at its heart creativity is about seeing the world differently and pursuing the new. She says that writing with great creativity is the hardest work she does, and she finds creative copywriting demands the most energy but also gives her the greatest satisfaction. </span></p>\n<p class=\"AAPARAGRAPH\"><span>Scott says creativity is the generation of something new that contributes to the shared human experience. It\'s sometimes original that spans every aspect of what a human mind is capable of – science, art, you name it. </span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Nikala agrees that creativity isn’t necessarily about art. Paving the way for our clients and their projects, she points out that creativity can be seen anywhere and is </span><span>probably best defined by someone thinking differently about a problem and coming up with a solution that is not only new, but also works. </span></p>\n<p class=\"AAPARAGRAPH\"><span>And so, in a building labelled ‘a creative agency’, there are as many different ideas as people when it comes to defining what characterises our work. Last words to Scott:</span></p>\n<p class=\"AAPARAGRAPH\"><em><span>True creativity is unique, incredibly clever, transforming to humanity, and startling in its (metaphorical) beauty. I\'m hooked on the link between creativity and beauty in all its possible meanings. </span></em></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17396,17633,1,'Mums mean business','2021-05-18 03:20:51','2021-07-23 06:19:16','e3b619f5-afd2-4e57-b74c-43aea52d8f78',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jTl3w1cGNC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Twelve years ago, I turned my back on a promising career at News Limited and became part of what is now a significant movement in small business: the mumpreneurs.\\n\\nFaced with inflexible working conditions, shift work and only average pay as a subeditor, the option to build a business through freelancing was alluring. My husband and I had also walked a long, hard road to have our kids; turning around and putting them in full-time childcare felt like a betrayal of the journey.\\n\\nWorking from home with a young child, of course, had drawbacks. I remember clearly the day my monitor went dead during a pressing deadline… because my baby had crawled underneath the desk and chewed through the connection cord. The horror that she could have just easily chomped on the power cord sent me out to buy a playpen.\\n\\nSocial isolation was also a significant issue. I didn’t join mother’s groups or lunch with the ladies while any of my three children were at home because every sleeping moment for a child was a working opportunity for me. No other woman in my wide circle of acquaintances worked for themselves or, if they did, it looked nothing like my level of enterprise. I became – and remain – the queen of speed because there was simply no time to waste.\\n\\nSince expanding the business and no longer working from home, I look back on those years with a mixture of amusement and dread. It tickles me that so few clients knew I worked from home, and that my business grew just as fast as my children did. Sometimes faster. I also remember, very clearly, the deadlines worked all night and the stress of needing far more hours than I had capacity. Quite literally, I pressed ‘send’ on work to clients on my way to hospital to deliver a baby. Twice. By the time my third child arrived, thankfully, I’d hired another writer.\\n\\nLast week, memories of my early years in small business came flooding back with a Sydney Morning Herald article on mumpreneurs. The women interviewed were driven to begin home businesses by similar factors: childcare costs and a desire for flexible parenting while generating an income.\\n\\nBut that’s where the similarities end. Today’s mumpreneur is part of a growing army. A BankWest study in 2011 found women are starting businesses at twice the rate of men, thanks to the benefits of better technology. Mumpreneurs Online surveyed UK women last year to find that 73 per cent had started their own business – and they knew another woman who was doing the same. AusMumpreneur claims 16,000 members nationwide. And in October, a two-day conference called Mumpreneurs on Fire is drawing hundreds of women to Melbourne. One of the plenary sessions is on how to build a multi-million dollar business. These mums mean business.\\n\\nIt’s about time. With Baby Boomers fast exiting the small business – half of all businesses are owned by people over 45 – there will be a glaring gap in our economy unless Generation Y, mums included, steps up to the plate.\\n\\nLong live the entrepreneurial spirit enshrined in small business, and best of luck to this rising mummy army. I just hope they get more sleep than I did.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17397,17634,1,'Mums mean business','2021-05-18 03:20:51','2021-05-18 03:20:51','4c4746b9-634e-493d-85a3-90897e08080d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p class=\"AAPARAGRAPH\"></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Twelve years ago, I turned my back on a promising career at News Limited and became part of what is now a significant movement in small business: the mumpreneurs.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Faced with inflexible working conditions, shift work and only average pay as a subeditor, the option to build a business through freelancing was alluring. My husband and I had also walked a long, hard road to have our kids; turning around and putting them in full-time childcare felt like a betrayal of the journey.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Working from home with a young child, of course, had drawbacks. I remember clearly the day my monitor went dead during a pressing deadline… because my baby had crawled underneath the desk and chewed through the connection cord. The horror that she could have just easily chomped on the power cord sent me out to buy a playpen.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Social isolation was also a significant issue. I didn’t join mother’s groups or lunch with the ladies while any of my three children were at home because every sleeping moment for a child was a working opportunity for me. No other woman in my wide circle of acquaintances worked for themselves or, if they did, it looked nothing like my level of enterprise. I became – and remain – the queen of speed because there was simply no time to waste.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Since expanding the business and no longer working from home, I look back on those years with a mixture of amusement and dread. It tickles me that so few clients knew I worked from home, and that my business grew just as fast as my children did. Sometimes faster. I also remember, very clearly, the deadlines worked all night and the stress of needing far more hours than I had capacity. Quite literally, I pressed ‘send’ on work to clients on my way to hospital to deliver a baby. Twice. By the time my third child arrived, thankfully, I’d hired another writer.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Last week, memories of my early years in small business came flooding back with a <em>Sydney Morning Herald </em>article on mumpreneurs. The women interviewed were driven to begin home businesses by similar factors: childcare costs and a desire for flexible parenting while generating an income.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">But that’s where the similarities end. Today’s mumpreneur is part of a growing army. A BankWest study in 2011 found women are starting businesses at twice the rate of men, thanks to the benefits of better technology. Mumpreneurs Online surveyed UK women last year to find that 73 per cent had started their own business – and they knew another woman who was doing the same. AusMumpreneur claims 16,000 members nationwide. And in October, a two-day conference called Mumpreneurs on Fire is drawing hundreds of women to Melbourne. One of the plenary sessions is on how to build a multi-million dollar business. These mums mean business.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">It’s about time. With Baby Boomers fast exiting the small business – half of all businesses are owned by people over 45 – there will be a glaring gap in our economy unless Generation Y, mums included, steps up to the plate.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Long live the entrepreneurial spirit enshrined in small business, and best of luck to this rising mummy army. I just hope they get more sleep than I did.</span></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17398,17635,1,'The tender pitch','2021-05-18 03:20:51','2021-07-23 06:19:16','8fdbe4c2-9358-45bb-808c-7d4490df30fd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1LjriJPkD9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"If networking nights are like professional speed dates, then tenders and pitches are like fast and furious flings that shotgun quickly to marriage or – mostly – burn out with little said between the two parties.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"And in pitch season, that unofficial period of the year where you seem to do little paid work and an awful lot of these tenders and pitches, one can get a little down at the sheer amount of time and expense expended, not to mention the quick but brilliant creative that won’t see the light of day.\\n\\n##### **‘I’ve met someone else’**\\n\\nSo, with pitches in full swing, I thought I’d continue the metaphor and shed some light on what it feels like to be the eager party still sparkly with romance and ready to commit to a long-term relationship, only to be told it’s over before it even began. It’s not much fun to be cast as the best friend and not the star.\\n\\nEarlier in my career, I was a member of the Australian Graphic Design Association (AGDA). AGDA had an unambiguous policy against free pitching, equating it to professional prostitution (though, oddly enough, prostitutes get paid for what they do). Their policy was built on the idea that our ideas are everything, and that giving them away was the worst thing we could do.\\n\\nIt’s a good, strong ethic that I still wholeheartedly espouse – but I compete in an industry where free pitching, often on top of an extensive and expensive tender process, is the norm. If only my industry had the same rule about free pitching, then we might all get hired for our potential and value without the massive time and IP giveaway.\\n\\n##### **‘It’s over’**\\n\\nThe biggest challenge, though, about free pitching is not the cost or the time. It’s the requirement to develop creative without the ability to properly research, develop the brief or fully explore the clients’ needs.\\n\\nWhile all pitchers (except incumbents) are under the same restrictions, nobody can really develop a campaign under a free pitch that will work as well as one developed with the serious time and effort it takes to truly know a brief and provide a solution.\\n\\nSubstance should matter more than flash. Didn’t our mothers always warn us about girls like that? But sadly, another agency’s flash can mean a budding relationship is over before it even had a chance to begin.\\n\\n##### **‘There are plenty more fish in the sea’**\\n\\nSo the answer is, of course, to not try and meet new professional flames this way. Nobody is forcing us to participate and there are plenty of potential lovers who will choose you based on referral and credentials. But the sad fact is that whole sectors don’t procure that way and if you want to work with them – and we do – you need to be ready to date their way.\\n\\n##### **Creative house seeks new relationship**\\n\\nI admit it: we’ve been playing the field. And yes, from time to time, the dating game has meant we’ve been a bit burned, but never bitter.\\n\\nIn our adventures, though, we’ve found love – and if past experience can teach us anything, it’s that we’re built for a love that lasts. We want the kind of client relationship that grows and builds over time, bringing with it joy, rewards, results... and a bit of fidelity.\\n\\nCare for a date?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17399,17636,1,'The tender pitch','2021-05-18 03:20:51','2021-05-18 03:20:51','5d54be86-c265-4f33-8562-96e5939dedbb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p class=\"AAPARAGRAPH\"></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">If networking nights are like professional speed dates, then tenders and pitches are like fast and furious flings that shotgun quickly to marriage or – mostly – burn out with little said between the two parties.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">And in pitch season, that unofficial period of the year where you seem to do little paid work and an awful lot of these tenders and pitches, one can get a little down at the sheer amount of time and expense expended, not to mention the quick but brilliant creative that won’t see the light of day.</span></p>\n<p class=\"AAPARAGRAPH\"><strong><span lang=\"en-us\" xml:lang=\"en-us\">‘I’ve met someone else’</span></strong></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">So, with pitches in full swing, I thought I’d continue the metaphor and shed some light on what it feels like to be the eager party still sparkly with romance and ready to commit to a long-term relationship, only to be told it’s over before it even began. It’s not much fun to be cast as the best friend and not the star.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Earlier in my career, I was a member of the Australian Graphic Design Association (AGDA). AGDA had an unambiguous policy against free pitching, equating it to professional prostitution (though, oddly enough, prostitutes get paid for what they do). Their policy was built on the idea that our ideas are everything, and that giving them away was the worst thing we could do.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">It’s a good, strong ethic that I still wholeheartedly espouse – but I compete in an industry where free pitching, often on top of an extensive and expensive tender process, is the norm. If only my industry had the same rule about free pitching, then we might all get hired for our potential and value without the massive time and IP giveaway.</span></p>\n<p class=\"AAPARAGRAPH\"><strong><span lang=\"en-us\" xml:lang=\"en-us\">‘It’s over’</span></strong></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">The biggest challenge, though, about free pitching is not the cost or the time. It’s the requirement to develop creative without the ability to properly research, develop the brief or fully explore the clients’ needs. </span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">While all pitchers (except incumbents) are under the same restrictions, nobody can really develop a campaign under a free pitch that will work as well as one developed with the serious time and effort it takes to truly know a brief and provide a solution. </span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Substance should matter more than flash. Didn’t our mothers always warn us about girls like that? But sadly, another agency’s flash can mean a budding relationship is over before it even had a chance to begin.</span></p>\n<p class=\"AAPARAGRAPH\"><strong><span lang=\"en-us\" xml:lang=\"en-us\">‘There are plenty more fish in the sea’</span></strong></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">So the answer is, of course, to not try and meet new professional flames this way. Nobody is forcing us to participate and there are plenty of potential lovers who will choose you based on referral and credentials. But the sad fact is that whole sectors don’t procure that way and if you want to work with them – and we do – you need to be ready to date their way.</span></p>\n<p class=\"AAPARAGRAPH\"><strong><span lang=\"en-us\" xml:lang=\"en-us\">Creative house seeks new relationship</span></strong></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">I admit it: we’ve been playing the field. And yes, from time to time, the dating game has meant we’ve been a bit burned, but never bitter. </span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">In our adventures, though, we’ve found love – and if past experience can teach us anything, it’s that we’re built for a love that lasts. We want the kind of client relationship that grows and builds over time, bringing with it joy, rewards, results... and a bit of fidelity.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Care for a date?</span></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17400,17637,1,'stock-photography','2021-05-18 03:20:51','2021-05-18 03:20:51','ab53a925-495c-468f-95eb-52aa89f914b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17401,17638,1,'Photography and your brand','2021-05-18 03:20:51','2021-07-23 06:19:16','e06f1c71-ee13-4e9c-b8ea-0aabd1d5ff85',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Y0QyW1M0Xw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Using visuals and imagery are essential parts of any campaign. When you take a look at our lives and consider our love of infographics, Pinterest and Instagram, as well as our preference for fast, digestible information, using pictures well in your marketing mix makes good sense.\\n\\nMost marketers turn to stock photography when they want to illustrate their idea or campaign. That’s because it can be cost-effective and fast. But there are risks with stock photos, and smart marketers should know them.\\n\\nThe reason we use stock photos most often here at New Word Order is to create mock-ups and ideas for our clients, giving them a better representation of our idea and what we have in mind. Stock photography can also be faster and cheaper than a photo shoot, and it’s instantly available. So, for brochures and smaller pieces, stock photography can be the way to go.\\n\\nBut there are also many, many reasons why investing in a proper photo shoot is better for your business and brand. For starters, stock photography is pretty generic, impersonal and unrealistic. Probably not the look you were after for your new campaign or your brand.\\n\\nStock photos are never taken with a specific idea in mind, and that means they can be bought by anyone and have no particular alignment with any brand. If you use stock photos, you risk looking like any other business – unoriginal, and quite possibly uninspired. If you want to look unique, only images unique to you can achieve this… not the clichés and overused images of your competitors, nor the unrelated stock images you might try to shoehorn into your idea.\\n\\nAt NWO, we love a photo shoot. It’s not just that we’re all about an original idea, either. We believe that when you work with a photographer, you get far more than an image file. You get the benefit of experience, creativity, knowledge and insight.\\n\\nYou also get to say something unique, present something instantly recognisable to the market, and really stand out. You get a professional who listens to and understands your brief, knows what you’re trying to say and what you want to achieve. If you want to make changes on the day, you can, and the final decision on the final image is also in your hands. Complete control.\\n\\nSo while stock photos may be cheap and fast, they can also make your brand look unfocused and unoriginal. A photo shoot is the only solution for a company that wants to visually stand apart from the competition.\\n\\nWith the help of our trusted photography partners, we’ve directed photos shoots for many of our clients – some of them on tight budgets – from Mosaic Chartered Accountants through to Embertec’s very own Power Saviour. For every client, it’s been well worth the investment to truly stand out.\\n\\n[Talk to us today](/contact) about how you can use photography to bring life to your next campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17402,17639,1,'Photography and your brand','2021-05-18 03:20:51','2021-05-18 03:20:51','18ca6c05-e91c-414c-8327-c2ccbb61ff2c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<span lang=\"en-us\" xml:lang=\"en-us\">Using visuals and imagery are essential parts of any campaign. When you take a look at our lives and consider our love of infographics, Pinterest and Instagram, as well as our preference for fast, digestible information, using pictures well in your marketing mix makes good sense.</span>\n<p class=\"aaparagraph\"><span lang=\"en-us\" xml:lang=\"en-us\">Most marketers turn to stock photography when they want to illustrate their idea or campaign. That’s because it can be cost-effective and fast. But there are risks with stock photos, and smart marketers should know them.</span></p>\n<p class=\"aaparagraph\"></p>\n<p class=\"aaparagraph\"><span lang=\"en-us\" xml:lang=\"en-us\">The reason we use stock photos most often here at New Word Order is to create mock-ups and ideas for our clients, giving them a better representation of our idea and what we have in mind. Stock photography can also be faster and cheaper than a photo shoot, and it’s instantly available. So, for brochures and smaller pieces, stock photography can be the way to go.</span></p>\n<p class=\"aaparagraph\"></p>\n<p class=\"aaparagraph\"><span lang=\"en-us\" xml:lang=\"en-us\">But there are also many, many reasons why investing in a proper photo shoot is better for your business and brand. For starters, stock photography is pretty generic, impersonal and unrealistic. Probably not the look you were after for your new campaign or your brand.</span></p>\n<p class=\"aaparagraph\"></p>\n<p class=\"aaparagraph\"><span lang=\"en-us\" xml:lang=\"en-us\">Stock photos are never taken with a specific idea in mind, and that means they can be bought by anyone and have no particular alignment with any brand. If you use stock photos, you risk looking like any other business – unoriginal, and quite possibly uninspired. If you want to look unique, only images unique to you can achieve this… not the clichés and overused images of your competitors, nor the unrelated stock images you might try to shoehorn into your idea.</span></p>\n<p class=\"aaparagraph\"></p>\n<p class=\"aaparagraph\"><span lang=\"en-us\" xml:lang=\"en-us\">At NWO, we love a photo shoot. It’s not just that we’re all about an original idea, either. We believe that when you work with a photographer, you get far more than an image file. You get the benefit of experience, creativity, knowledge and insight.</span></p>\n<p class=\"aaparagraph\"></p>\n<p class=\"aaparagraph\"><span lang=\"en-us\" xml:lang=\"en-us\">You also get to say something unique, present something instantly recognisable to the market, and really stand out. You get a professional who listens to and understands your brief, knows what you’re trying to say and what you want to achieve. If you want to make changes on the day, you can, and the final decision on the final image is also in your hands. Complete control.</span></p>\n<p class=\"aaparagraph\"></p>\n<p class=\"aaparagraph\"><span lang=\"en-us\" xml:lang=\"en-us\">So while stock photos may be cheap and fast, they can also make your brand look unfocused and unoriginal. A photo shoot is the only solution for a company that wants to visually stand apart from the competition.</span></p>\n<p class=\"aaparagraph\"><span lang=\"en-us\" xml:lang=\"en-us\"> </span></p>\n<p class=\"aaparagraph\"></p>\n<p class=\"aaparagraph\"><span lang=\"en-us\" xml:lang=\"en-us\">With the help of our trusted photography partners, we’ve directed photos shoots for many of our clients – some of them on tight budgets – from <a href=\"http://www.mosaicca.com.au/\">Mosaic Chartered Accountants </a>through to Embertec’s very own Power Saviour. For every client, it’s been well worth the investment to truly stand out.</span></p>\n<p class=\"aaparagraph\"><span lang=\"en-us\" xml:lang=\"en-us\"> </span></p>\n<p class=\"aaparagraph\"><span lang=\"en-us\" xml:lang=\"en-us\">Talk to us today about how you can use photography to bring life to your next campaign.</span></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17403,17640,1,'best-practice','2021-05-18 03:20:52','2021-05-18 03:20:52','5928424f-6a72-494c-8be1-874602ffa6bf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17404,17641,1,'web-copy','2021-05-18 03:20:52','2021-05-18 03:20:52','773e680c-b559-4252-8da6-3dff5d61d063',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17405,17642,1,'Writing for (readable) web','2021-05-18 03:20:52','2021-07-23 06:19:16','9ecd5861-9bcc-4059-8bd5-15cd99f4a66b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AWtBdVK79w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Just as website navigation is a unique narrative structure, writing web content follows unique writing conventions.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Why? Because that’s the way we work as readers.\\n\\nWhen we pick up our tablet or our website, we rarely read word for word. Research has shown the average reading time is 25 per cent slower on a screen, so we skim, searching for keywords.\\n\\nAnd, because we don’t want to scroll, we won’t.\\n\\nThe result? Your web copy had better be short, concise and very easy to navigate. Otherwise, you’ll lose your readers in less time than it takes them to click their mouse.\\n\\nThe way your readers read demands your web and other digital content should be written to suit.\\n\\nTo take a practical example: The length of copy and type of language used in a corporate letter or marketing communications are too long and formal for a digital environment. Aim instead for half the words you’d use in a paper document. And then cut in half again.\\n\\nAnd to take another example: Think of a news story. It has the main info up the top, short and snappy sentences, and clear headings. Web and digital writing follows the same convention.\\n\\nAt New Word Order, we have established eight hallmarks for effective web writing, and we use these to assess our clients’ site and the work we provide them:\\n\\n- Short, effective sentences (say the same information with less)\\n- Sub-headings and headings containing keywords\\n- Everyday words the average reader can easily understand (plain English)\\n- Informal voice\\n- Common language conventions\\n- Direct language\\n- Active tense\\n- Consistent, logical structuring of information.\\n\\n##### **1. Write in short sentences and paragraphs**\\n\\nAim for short sentences, each with one or two clauses.\\n\\nEach paragraph should contain no more than 2–3 sentences, and altogether a page of content should fit comfortably within the web page without requiring the reader to scroll. The optimum line length is 8–12 words.\\n\\nIncluding useful and interesting facts keeps readers’ attention longer than ‘motherhood’ or general statements. They’re more believable, too.\\n\\n##### **2. Use headlines and sub-headings**\\n\\nHeadlines and sub-headings are an effective way to guide a reader through their skimming of a web page. Since research tells us readers rarely read every word on a website, it makes sense to prioritise what they see – and headlines and sub-headings do this well.\\n\\nMake headlines and sub-headings factual, not fanciful. This enables readers to rapidly scan useful keywords.\\n\\n##### **3. Write in plain English**\\n\\nWhile plain English should be the aim of all of your publications, it’s especially important in a digital environment.\\n\\nPlain English means using words the average Australian reader can easily understand.\\n\\nThat means you should:\\n\\n- include useful headings\\n- use the simplest form of a word possible e.g. said (not announced or discussed); try (not endeavour)\\n- define tricky terms\\n- delete unnecessary verbiage\\n- use familiar, easily understood words\\n- include lists and tables to simplify content and reduce word count.\\n\\n##### **4. Use informal voice**\\n\\nUnlike general corporate writing, digital environments demand a more informal voice.\\n\\nThis means using ‘you’, ‘we’ and other pronouns to speak directly to the reader within the text. Formal language is out.\\n\\n##### **5. Use common language conventions**\\n\\nEffective web writing uses language conventions found more commonly in conversation.\\n\\nThis means using:\\n\\n- contractions (isn’t, that’s)\\n- common bridging words to begin sentences (and, but, because)\\n- short statements of fact\\n- links to longer explanations (e.g. PDFs, minutes, fact sheets).\\n\\n##### **6. Get to the point**\\n\\nWriting for digital environments takes discipline, because readers have little tolerance for fluffy language, repetition, ‘happy talk’ or unnecessary explanations of what’s already evident on the page.\\n\\nTo write direct, straight-to-the-point copy:\\n\\n- stick to the topic\\n- cut unnecessary adverbs (e.g. completely finish, tentatively plan)\\n- delete tautologies (e.g. whole of the country; for a period of six months)\\n- use simple present tense when possible (e.g. uses instead of ‘is utilised by’, conducts instead of ‘is conducted by’)\\n- avoid clichés.\\n\\n##### **7. Use active voice**\\n\\nActive voice is a way of structuring information that allows you to focus on the subject and cut excess words. Following this method enables quick readability.\\n\\nActive voice places the subject first in a sentence, followed by the action.\\n\\ne.g. Active voice: New Word Order opened in 1998.\\n\\nPassive voice: New Word Order was opened in 1998.\\n\\n##### **8. Structure content well**\\n\\nThe most important information should always be placed first on a web page, and the web layout and navigation should be consistent and logical to a reader.\\n\\nA good rule of thumb for navigation is organise the content to suit how the reader needs to discover it.\\n\\nWith only a few exceptions, your website should go no deeper than three levels of navigation. Too many websites go down rabbit warrens.\\n\\nTo structure new web content, follow this checklist:\\n\\n- Plan what you need to write, and stick to the topic.\\n- Lead with the most important information – this means placing these details first on a page.\\n- Keep each section simple and clear – don’t try to achieve too much in one place.\\n- Use meaningful links – rather than repeating information found elsewhere on the website, link to it.\\n- Put the most recent information at the top – for example, when you’re archiving minutes or reports.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17406,17643,1,'Writing for (readable) web','2021-05-18 03:20:52','2021-05-18 03:20:52','8fa5eb33-2818-49b9-9c49-fac5eba85577',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Just as website navigation is a unique narrative structure, writing web content follows unique writing conventions.\n\nWhy? Because that’s the way we work as readers.\n\nWhen we pick up our tablet or our website, we rarely read word for word. Research has shown the average reading time is 25 per cent slower on a screen, so we skim, searching for keywords.\n\nAnd, because we don’t want to scroll, we won’t.\n\nThe result? Your web copy had better be short, concise and very easy to navigate. Otherwise, you’ll lose your readers in less time than it takes them to click their mouse.\n\nThe way your readers read demands your web and other digital content should be written to suit.\n\nTo take a practical example: The length of copy and type of language used in a corporate letter or marketing communications are too long and formal for a digital environment. Aim instead for half the words you’d use in a paper document. And then cut in half again.\n\nAnd to take another example: Think of a news story. It has the main info up the top, short and snappy sentences, and clear headings. Web and digital writing follows the same convention.\n\nAt New Word Order, we have established eight hallmarks for effective web writing, and we use these to assess our clients’ site and the work we provide them:\n<ol>\n 	<li>Short, effective sentences (say the same information with less)</li>\n 	<li>Sub-headings and headings containing keywords</li>\n 	<li>Everyday words the average reader can easily understand (plain English)</li>\n 	<li>Informal voice</li>\n 	<li>Common language conventions</li>\n 	<li>Direct language</li>\n 	<li>Active tense</li>\n 	<li>Consistent, logical structuring of information.</li>\n</ol>\n<strong>1. </strong><strong>Write in short sentences and paragraphs</strong>\n\nAim for short sentences, each with one or two clauses.\n\nEach paragraph should contain no more than 2–3 sentences, and altogether a page of content should fit comfortably within the web page without requiring the reader to scroll. The optimum line length is 8–12 words.\n\nIncluding useful and interesting facts keeps readers’ attention longer than ‘motherhood’ or general statements. They’re more believable, too.\n\n<strong>2. Use headlines and sub-headings </strong>\n\nHeadlines and sub-headings are an effective way to guide a reader through their skimming of a web page. Since research tells us readers rarely read every word on a website, it makes sense to prioritise what they see – and headlines and sub-headings do this well.\n\nMake headlines and sub-headings factual, not fanciful. This enables readers to rapidly scan useful keywords.\n\n<strong>3. </strong><strong>Write in plain English</strong>\n\nWhile plain English should be the aim of all of your publications, it’s especially important in a digital environment.\n\nPlain English means using words the average Australian reader can easily understand.\n\nThat means you should:\n<ul>\n 	<li>include useful headings</li>\n 	<li>use the simplest form of a word possible e.g. said (not announced or discussed); try (not endeavour)</li>\n 	<li>define tricky terms</li>\n 	<li>delete unnecessary verbiage</li>\n 	<li>use familiar, easily understood words</li>\n 	<li>include lists and tables to simplify content and reduce word count.</li>\n</ul>\n<strong>4. </strong><strong>Use informal voice</strong>\n\nUnlike general corporate writing, digital environments demand a more informal voice.\n\nThis means using ‘you’, ‘we’ and other pronouns to speak directly to the reader within the text. Formal language is out.\n\n<strong>5. </strong><strong>Use common language conventions</strong>\n\nEffective web writing uses language conventions found more commonly in conversation.\n\nThis means using:\n<ul>\n 	<li>contractions (isn’t, that’s)</li>\n 	<li>common bridging words to begin sentences (and, but, because)</li>\n 	<li>short statements of fact</li>\n 	<li>links to longer explanations (e.g. PDFs, minutes, fact sheets).</li>\n</ul>\n<strong>6. Get to the point</strong>\n\nWriting for digital environments takes discipline, because readers have little tolerance for fluffy language, repetition, ‘happy talk’ or unnecessary explanations of what’s already evident on the page.\n\nTo write direct, straight-to-the-point copy:\n<ul>\n 	<li>stick to the topic</li>\n 	<li>cut unnecessary adverbs (e.g. <span>completely</span> finish, <span>tentatively</span> plan)</li>\n 	<li>delete tautologies (e.g. whole <span>of the</span> country; for <span>a period of</span> six months)</li>\n 	<li>use simple present tense when possible (e.g. <em>uses</em> instead of ‘is utilised by’, <em>conducts</em> instead of ‘is conducted by’)</li>\n 	<li>avoid clichés.</li>\n</ul>\n<strong>7. Use active voice</strong>\n\nActive voice is a way of structuring information that allows you to focus on the subject and cut excess words. Following this method enables quick readability.\n\nActive voice places the subject first in a sentence, followed by the action.\n\ne.g.\n\nActive voice: New Word Order opened in 1998.\n\nPassive voice: New Word Order was opened in1998.\n\n<strong>8. Structure content well</strong>\n\nThe most important information should always be placed first on a web page, and the web layout and navigation should be consistent and logical to a reader.\n\nA good rule of thumb for navigation is organise the content to suit how the reader needs to discover it.\n\nWith only a few exceptions, your website should go no deeper than three levels of navigation. Too many websites go down rabbit warrens.\n\nTo structure new web content, follow this checklist:\n<ul>\n 	<li>Plan what you need to write, and stick to the topic.</li>\n 	<li>Lead with the most important information – this means placing these details first on a page.</li>\n 	<li>Keep each section simple and clear – don’t try to achieve too much in one place.</li>\n 	<li>Use meaningful links – rather than repeating information found elsewhere on the website, link to it.</li>\n 	<li>Put the most recent information at the top – for example, when you’re archiving minutes or reports.</li>\n</ul>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17407,17644,1,'What the artist breaks','2021-05-18 03:20:52','2022-08-08 07:05:22','a388a0f8-b9aa-4f6d-8042-d7d83644ab8c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QjbPRQcxAH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"It’s arguable that copywriting is at the heart of all advertising and marketing today. We remember taglines and recall jingles; and copy is the beginning of most brand stories. But, boy, is it fantastic to look back at a time when it really was all about the words.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Bill Bernbach was the founding creative director of legendary Manhattan ad agency Doyle Dane Bernbach (DDB). He came out with quotes like:\\n\\n“Advertising is fundamentally persuasion and persuasion happens to be not a science, but an art”, and\\n\\n“Word of mouth is the best medium of all”, and\\n\\n“Rules are what the artist breaks; the memorable never emerged from a formula.”\\n\\nThat’s really provocative stuff that makes you nod your head at the truth and simple power of his thinking—and imagine how inspiring but uncompromising a boss he would have been. What an exhilarating time to be writing.\\n\\nBernbach not only had a way with a turn of phrase, but he also really set up the structure of creative teams for marketing and advertising, and was, of course, part of the inspiration for Mad Men. But mostly, he was a writer. And what a writer he was. His firm revolutionised advertising copy and laid out the early foundations for brand storytelling through engaging narrative and brand persona development. We can, and have, all learned from these guys.\\n\\nIn the 1960s, DDB took on Volkswagen as a client and began creating a series of print ads that referred to the VW as a “lemon” and encouraged consumers to “think small”. The copy, by the incomparable Julian Koenig, starts out saying “This Volkswagen missed the boat. The chrome strip on the glove compartment is blemished, and must be replaced.” Not exactly sales speak.\\n\\n##### **It was funny. It was clever. And it was ground-breaking.**\\n\\nFor the rest of the decade, VW kept their unconventional campaign rolling. DDB’s strategy of turning seeming faults into benefits was a huge hit. One ad didn\'t even include a picture of the little lemon: “No point in showing you the 1962 Volkswagen. It still looks the same.”\\n\\nMuch has been written about the ads, and you can take a look at a bunch of them here if you like. It was ranked the best advertising campaign of the twentieth century by Ad Age, and it deserves the title. This sort of brand bravery is rare and may be a little of its time, too. The truth is that the power is all right there, in the copy, which exists to inspire us. Last words to Mr Bernbach himself:\\n\\nYou can say the right thing about a product and nobody will listen. You\'ve got to say it in such a way that people will feel it in their gut. Because if they don\'t feel it, nothing will happen.\\n\\nWhat is your brand really saying?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What the artist breaks','It’s arguable that copywriting is at the heart of all advertising and marketing today. We remember taglines and recall jingles; and copy is the beginning of most brand stories. But, boy, is it fantastic to look back at a time when it really was all about the words.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17408,17645,1,'What the artist breaks','2021-05-18 03:20:52','2021-05-18 03:20:52','031f4753-c631-4290-b5bd-2bf3cb203bb2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p class=\"AAPARAGRAPH\"></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">It’s arguable that copywriting is at the heart of all advertising and marketing today. We remember taglines and recall jingles; and copy is the beginning of most brand stories. But, boy, is it fantastic to look back at a time when it really was all about the words.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Bill Bernbach was the founding creative director of legendary Manhattan ad agency Doyle Dane Bernbach. He came out with quotes like:</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">“Advertising is fundamentally persuasion and persuasion happens to be not a science, but an art”, <em>and</em></span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">“Word of mouth is the best medium of all”, <em>and</em></span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">“Rules are what the artist breaks; the memorable never emerged from a formula.”</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">That’s really provocative stuff that makes you nod your head at the truth and simple power of his thinking – and imagine how inspiring but uncompromising a boss he would have been. What an exhilarating time to be writing.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Bernbach not only had a way with a turn of phrase, but he also really set up the structure of creative teams for marketing and advertising, and was, of course, part of the inspiration for Mad Men. But mostly, he was a writer. And what a writer he was. His firm revolutionised advertising copy and laid out the early foundations for brand storytelling through engaging narrative and brand persona development. We can, and have, all learned from these guys.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">In the 1960s, DDB took on Volkswagen as a client and began creating <a href=\"http://nwo.app:8000/wp-content/uploads/2013/10/vw-lemon-and-think-small-ads.jpg\">a series of print ads</a> that referred to the VW as a “lemon” and encouraged consumers to “think small”. The copy, by the incomparable Julian Koenig, starts out saying “<em>This Volkswagen missed the boat. The chrome strip on the glove compartment is blemished, and must be replaced</em>.” Not exactly sales speak. </span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">It was funny. It was clever. And it was ground-breaking.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">For the rest of the decade, VW kept their unconventional campaign rolling. DDB’s strategy of turning seeming faults into benefits was a huge hit. One ad didn\'t even include a picture of the little lemon: “<em>No point in showing you the 1962 Volkswagen. It still looks the same</em>.”</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Much has been written about the ads, and you can take a look at a bunch of them <a href=\"http://www.visualnews.com/2013/09/03/20-best-volkswagen-ads-1960s-campaign/\">here</a> if you like. It was ranked the best advertising campaign of the twentieth century by Ad Age, and it deserves the title. This sort of brand bravery is rare and may be a little of its time, too. The truth is that the power is all right there, in the copy, which exists to inspire us. Last words to Mr Bernbach himself:</span></p>\n<p class=\"AAPARAGRAPH\"><em><span lang=\"en-us\" xml:lang=\"en-us\">You can say the right thing about a product and nobody will listen. You\'ve got to say it in such a way that people will feel it in their gut. Because if they don\'t feel it, nothing will happen.</span></em></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">What is your brand really saying?</span></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17409,17646,1,'Seven important questions for effective marcomms','2021-05-18 03:20:52','2022-08-25 04:36:54','2b93a487-bc5a-436a-8eb5-952fe3dcc75b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VzKHBkk2Ca\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Many companies don’t have the inhouse expertise to create effective marketing communications.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The most common mistake made when they try to do it themselves is that their marcomms lacks a strategic understanding of the customer and/or isn’t linked to a business plan.\\n\\nWithout the right kind of marcomms expertise, you can push out communication that fails to engage or achieve the desired outcome. At NWO, our experienced professionals can develop customised marcomms strategies and compelling content to position your brand perfectly with the right audience.\\n\\nHere’s a handy checklist of the important questions you need to ask and answer before embarking on any form of marcomms.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yJWD4Ckdat\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**1. What does the marketing communication need to deliver?**\\n\\nEvery strategy needs an objective—is it revenue, new customers, enquiries? Set a goal that is measurable and realistic.\\n\\n**2. How are we different?**\\n\\nThink hard about what makes your business unique and differentiates you from your competitors. Then you can market your difference to link to your objective.\\n\\n**3. Who are our competitors?**\\n\\nEffective marcomms starts with a robust analysis of your marketplace competitors. Map their strengths against your own unique offering.\\n\\n**4. Who are our customers?**\\n\\nMost companies think they know their customers but not all go very far beneath the surface. Do you know what they really want? Have you asked them or have you assumed your product or service fits all their needs? How do they buy your products/services? What is their mindset? What problems do they have? These are the types of strategic questions that need to be asked (and answered) to make your marcomms effective.\\n\\n**5. Are we using the right communication channels?**\\n\\nThe best messages are wasted if your desired audience isn’t seeing them. Use the right channel at the right time to ensure your messaging connects and engages.\\n\\n**6. Do we have the right message?**\\n\\nAny business can talk about its product or service, but is that what your customer wants to hear? Acknowledge the problem you are solving for them. Double-check the language suits them. Ensure every message reflects your brand position, your personality, your tone of voice and has the creativity to cut through all the clutter.\\n\\n**7. How are we measuring success?**\\n\\nDefine the measures you’re using to link back to your goals. You can’t manage what you can’t measure.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Qwl8bxCyv8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Maximising your investment in marcomms is your ultimate goal and posing these questions before you start work is crucial to achieving long-term success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Seven important questions for effective marketing communications','Many companies don’t have the inhouse expertise to create effective marketing communications (marcomms). The most common mistake made when they try to do it themselves is that their marcomms lacks a strategic understanding of the customer and/or isn’t linked to a business plan.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17410,17647,1,'8 important marketing questions for every business','2021-05-18 03:20:52','2021-05-18 03:20:52','91dcc01e-ca6c-4c09-99be-ea5d15b9c67c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Marketing communications in business is all about attracting and retaining customers. We do it for dozens of Australian companies every day, and the bigger the company, the tighter the marketing strategy governing their communications – because they know customers are fickle, and competitors are waiting to pounce on any weakness.\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">The same philosophy of tight strategy and execution should drive your business. Effective marketing communications must be an essential part of your core business strategy to ensure you’re pushing the same, consistent message through every aspect of your organisation. </span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">But it’s not always so easy to go it alone. If you’re in a small business and know you need to step up, here’s a handy checklist of the marketing questions you need to answer to keep your customers in tune with you – and your competitors at bay. </span></p>\n<p class=\"AAPARAGRAPH\"><em><span lang=\"en-us\" xml:lang=\"en-us\">Who are my existing customers?</span></em></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">The best way to sell to your customers is to first understand who they are, why they buy from you, and what value they expect from you. And the best way to learn this? Listen to them. Marketing communication begins with good customer relationships, which are almost like your own form of market research.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">When you talk to your customers, you’ll learn things like your customers’ age, income, education, how often they buy from you, what their buying triggers are, and how they’re influenced. This is a valuable step in honing your marketing message, so don’t be tempted to think you already know the information if you’ve been in business for a while. Every customer conversation will add another layer to your understanding. </span></p>\n<p class=\"AAPARAGRAPH\"><em><span lang=\"en-us\" xml:lang=\"en-us\">Who are my potential customers?</span></em></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">It’s just as critical to have a very clear understanding of your desired target market and new customers. Get as detailed as you possibly can. The more specific you are, the better you can develop messages for them.</span></p>\n<p class=\"AAPARAGRAPH\"><em><span lang=\"en-us\" xml:lang=\"en-us\">Who are my competitors?</span></em></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Understanding who competes for your customers – and what they’re offering – is vital. Get very familiar with every aspect of your competitors’ businesses – including their reputation, prices and marketing material. This knowledge will help you position your marketing communication relative to how your customers are already being targeted and differentiate yourself in the market.</span></p>\n<p class=\"AAPARAGRAPH\"><em><span lang=\"en-us\" xml:lang=\"en-us\">What am I trying to achieve?</span></em></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Understanding why you’re communicating with your customers is essential. Are you purely after quick wins? Or preparing the ground for a new product or stronger relationships? The rationale and potential value for any marketing effort should determine how much money you need to spend, and where it’s best spent.</span></p>\n<p class=\"AAPARAGRAPH\"><em><span lang=\"en-us\" xml:lang=\"en-us\">What am I trying to say?</span></em></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">This is where everything comes together. You must now develop clear, key messages that talk up your product or service, meet the expectations and needs of your new and existing customers, and differentiate yourself from your competition.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Make sure you have no more than five key messages – in fact, the fewer the better – and make them specific and meaningful. That’s how you stand out in the crowded market. Ensure your customers are aware of your business and its products or services, and why they should care (e.g. What’s in it for them? And what are the true benefits?). These benefits should be factual and real. It’s important not to overload customers with information, but rather to be clear and articulate.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">All of your marketing communications should include a strong call to action: What is it that you want customers to do once they’ve interacted with you? Leave them in no doubt and make it easy for them.</span></p>\n<p class=\"AAPARAGRAPH\"><em><span lang=\"en-us\" xml:lang=\"en-us\">What’s the right channel?</span></em></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">There’s no doubt that it’s a busy marketplace when it comes to finding the perfect place to share your marketing messages. The challenge here is in focusing and narrowing your communication – and finding the right time and place to connect with your customers. </span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Many marketers are now jumping on social media networks, but that might not be where your customers can be found. It’s important that you understand how and when they want to hear from you, and use that information to foster a true customer relationship.</span></p>\n<p class=\"AAPARAGRAPH\"><em><span lang=\"en-us\" xml:lang=\"en-us\">Is my strategy integrated?</span></em></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Communicating in an integrated way across all channels (such as website, emails and brochures) means your brand will become better known and understood. Integration means that every time your customers hear from you, they get the same feel for who you are. By creating consistent, strong marketing communications, your customers will identify and remember you into the future.</span></p>\n<p class=\"AAPARAGRAPH\"><em><span lang=\"en-us\" xml:lang=\"en-us\">Finally: Am I communicating with genuine creativity?</span></em></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Creativity isn’t about paying your local print shop to pull together a flyer with your logo on it, or using a WordPress template to build your long-overdue website. They might be tactics that you use, but they’re not what creativity is really about.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">True creative thinking pulls together everything you know about your business, your goals and your customers into a single, cohesive package that cuts through, connects and resonates. Creativity distills everything down to the right words, images and design so that your marketing collateral has the right impact. No business can afford to skimp on this stage because getting creativity right means you’ll get the results you’re really after: maximum return on your marketing investment.</span></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17411,17648,1,'Promises, promises','2021-05-18 03:20:52','2021-07-23 06:19:17','6732a6af-d822-4aac-b9b4-7364da0aa686',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Ekny1wVuy4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Aah, Telstra.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"If you own a business small enough that it’s your job to do hand-to-hand combat with a telco, these two words say it all. And it doesn’t matter what brand name you insert: nothing brings out a sense of shared suffering better than a tale of a telco stuff-up.\\n\\nI had a story I dined out on regularly that involved a telco sub-contractor turning up to fix a crackle – and ending up severing all of the phone and fax lines running to my business. That was fun.\\n\\nRight now, I’m in my 7th week of hour-long conversations with many truly delightful employees of a certain telco, each of whom is exceedingly articulate and apologetic for all the employees who have gone before them. (One supervisor, in all seriousness, said to me: “You need to expect that we won’t get anything right. In fact, I find it best to have very low expectations.”)\\n\\nMy end of a conversation just a week ago went something like this: “So you’re telling me that you can see that you’ve made a mistake in charging me $700 extra this month, but that it’ll take you another three months to reverse the mistake in billing… so I need to give you $700 now and trust that you’ll give it back to me later?”\\n\\n##### **Not surprisingly, I asked for this once-in-a-lifetime deal in writing.**\\n\\nOf course, stuff-ups, broken promises and disappointments occur every day between businesses and consumers. It’s human nature. It doesn’t have to be a telco – although they do it with panache. And it doesn’t have to be big business – although it often is.\\n\\nSmall businesses can often break faith with customers through the sheer limitations of their size. Flexibility and nimbleness are great benefits of working with small business; but when lots of work hits, there’s no-one spare to get it done. Unfortunately, SMEs also need to fight harder than big corporates to keep consumer faith and love alive – because it can mean the difference between floating or sinking.\\n\\nHere’s a great example. Quite a few weekends ago, a small water filter company I’ve used in the past phoned me. The first guy – who said he was the business owner – gave me the sales spiel, and then handed me off to the junior to take my order. Inwardly, I applaud their decision to go aggressively out to the market and to phone customers one by one for after-hours orders. After all, when cash flow’s tight, you have to work smart. Outwardly, I’ll probably not order from them again: the filter still hasn’t arrived.\\n\\n##### **It’s all very well for marketing managers to talk endlessly about channels, for CEOs to cast vision and for designers to beleaguer brand design.**\\n\\nBut at the heart of every brand experience must be trust, in any of its forms. If you’re a services company, then be a trusted advisor. If you provide products, then provide them to a high standard. And in every transactional stage, keep your promises – whether it’s getting a bill right, delivering a product or following up words with actions.\\n\\nSmall businesses also need to keep promises in order to grow their future markets. Nothing closes doors on future opportunities faster than a disgruntled current customer. Case in point: I’m a hostile captive to my telco. No other telco covers my area – so it’s either their way or no information superhighway. But captivity doesn’t encourage me – it frustrates me, and when added to negative experiences, makes me ready to share my tales with anyone and everyone.\\n\\nLikewise, small businesses need to beware the hostile captives in their business. Is there a customer who’s contractually wedded to you but bitterly unhappy with the service you provide? Beware their rage – it can and will go viral to potential customers in the blink of an eye.\\n\\nCherish the value of trust to your customers. Promises kept will define you and your brand long after your competitors have broken theirs.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17412,17649,1,'Promises, promises','2021-05-18 03:20:53','2021-05-18 03:20:53','3fd944fd-48f8-44c8-852e-7d332f083b4e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Aah, Telstra.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">If you own a business small enough that it’s your job to do hand-to-hand combat with a telco, these two words say it all. And it doesn’t matter what brand name you insert: nothing brings out a sense of shared suffering better than a tale of a telco stuff-up.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">I had a story I dined out on regularly that involved a telco sub-contractor turning up to fix a crackle – and ending up severing all of the phone and fax lines running to my business. That was fun.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Right now, I’m in my 7<sup>th</sup> week of hour-long conversations with many truly delightful employees of a certain telco, each of whom is exceedingly articulate and apologetic for all the employees who have gone before them. (One supervisor, in all seriousness, said to me: “You need to expect that we won’t get anything right. In fact, I find it best to have very low expectations.”) </span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">My end of a conversation just a week ago went something like this: “So you’re telling me that you can see that you’ve made a mistake in charging me $700 extra this month, but that it’ll take you another three months to reverse the mistake in billing… so I need to give you $700 now and trust that you’ll give it back to me later?”</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Not surprisingly, I asked for this once-in-a-lifetime deal in writing.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Of course, stuff-ups, broken promises and disappointments occur every day between businesses and consumers. It’s human nature. It doesn’t have to be a telco – although they do it with panache. And it doesn’t have to be big business – although it often is.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Small businesses can often break faith with customers through the sheer limitations of their size. Flexibility and nimbleness are great benefits of working with small business; but when lots of work hits, there’s no-one spare to get it done. Unfortunately, SMEs also need to fight harder than big corporates to keep consumer faith and love alive – because it can mean the difference between floating or sinking.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Here’s a great example. Quite a few weekends ago, a small water filter company I’ve used in the past phoned me. The first guy – who said he was the business owner – gave me the sales spiel, and then handed me off to the junior to take my order. Inwardly, I applaud their decision to go aggressively out to the market and to phone customers one by one for after-hours orders. After all, when cash flow’s tight, you have to work smart. Outwardly, I’ll probably not order from them again: the filter still hasn’t arrived.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">It’s all very well for marketing managers to talk endlessly about channels, for CEOs to cast vision and for designers to beleaguer brand design.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">But at the heart of every brand experience must be <em>trust</em>, in any of its forms. If you’re a services company, then be a trusted advisor. If you provide products, then provide them to a high standard. And in every transactional stage, keep your promises – whether it’s getting a bill right, delivering a product or following up words with actions.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Small businesses also need to keep promises in order to grow their future markets. Nothing closes doors on future opportunities faster than a disgruntled current customer. Case in point: I’m a hostile captive to my telco. No other telco covers my area – so it’s either their way or no information superhighway. But captivity doesn’t encourage me – it frustrates me, and when added to negative experiences, makes me ready to share my tales with anyone and everyone.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Likewise, small businesses need to beware the hostile captives in their business. Is there a customer who’s contractually wedded to you but bitterly unhappy with the service you provide? Beware their rage – it can and will go viral to potential customers in the blink of an eye. </span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Cherish the value of trust to your customers. Promises kept will define you and your brand long after your competitors have broken theirs.</span></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17413,17650,1,'Are customers giving up on your website?','2021-05-18 03:20:53','2022-08-17 05:11:34','21751a24-0ca8-43cd-b6fd-8b80d3e91cc4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gahB36q3Yd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We’ve all tried to navigate frustrating websites that have ended in annoyance, giving up and even turning to a competitor. Good web design translates to successful conversions, and that all depends on user experience.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Usually, we’re only willing to give a website one minute to display what we’re looking for before we give up. The most common website complaints are that there is ‘too much going on’ and also ‘not enough information’. Translation: many sites drone on and on… but don’t really say much.\\n\\nUsers also complain—across all age groups and digital skill levels—that text is too small and navigation is difficult. Thirty-five per cent of users fail to complete simple tasks on the average website.\\n\\nLet’s improve those stats, shall we?\\n\\n##### **1. Design from the user’s perspective, not your own**\\n\\nWe know your company is the greatest thing since Google and you can’t wait to tell everyone all about where it began, who works there and the details of your offering. But the truth is this: users just want to get to the point, and their interests should override yours. \\nUsability is key. Show them what they’re looking for, and don’t make them search for it.\\n\\n##### **2. Create a navigation path**\\n\\nIf the information on your website is simple and structured, you can guide visitors along the path you’d like them to take—their user journey. Use tabs and sub-pages for different categories and keep it super logical.\\n\\n##### **3. Content is everything**\\n\\nContent is the most important element of your site, really—and it needs to fit the logical and structured navigation. You’ll want to include keywords, page titles, meta tags and headings for search engine optimisation. There are some hallmarks we use when writing web copy for our clients:\\n\\n-\\tKeep it concise.\\n-\\tRound out sub-headings and headings with keywords.\\n-\\tUse plain English and an informal voice.\\n-\\tStick to common language conventions.\\n-\\tBe direct and use active tense.\\n-\\tStructure your information consistently and logically.\\n-\\tSpeak to your audience.\\n\\n\\n##### **4. Speed it up and make it simple**\\n\\nLet’s face it. We’re a busy bunch, and a reminder of the old days of dial-up—waiting for your site to load—will test the patience of even the most loyal visitor. In fact, many visitors will abandon a website after just a few seconds of loading time. Longer loading time is usually caused by complicated design, so make smart design decisions.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP7D0kN7UR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":null,\"plainText\":\"**From site structure to copy, design and development, we’re passionate about finding the best, most creative way to present your business. Talk to us about it today.**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Are customers giving up on your website?','We’ve all tried to navigate frustrating websites that have ended in annoyance, giving up and even turning to a competitor. Good web design translates to successful conversions, and that all depends on user experience.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17414,17651,1,'Are customers giving up on your website?','2021-05-18 03:20:53','2021-05-18 03:20:53','b8590e18-bdca-4a46-ac2b-5d61f01c952d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'\n<p>We’ve all been to websites where trying to make a simple purchase can end in frustration with an impossible-to-navigate website, or, worse for the organisation, to us turning to a competitor. Good web design translates to successful conversions, and all of that is dependent on the user experience.</p>\n\n\n\n<p>A great new <a href=\"http://digitalsynopsis.com/design/important-good-web-design-impact-people-profits\">infographic</a> has found that we’ll give a website a minute to display what we’re looking for before we give up. Some types of sites are better than others in delivering what we’re after – especially hotel booking sites.</p>\n\n\n\n<p>The two biggest complaints about web sites, according to the research, include that there is ‘too much going on’ and also ‘not enough information’, which we can take to mean that many sites drone on and on… but don’t really say much.</p>\n\n\n\n<p>Users also complain – across all age groups and online skills – that text is too small and that navigation is difficult on the sites they give up on. Thirty-five per cent of users fail to complete simple tasks on the average website.</p>\n\n\n\n<p>Let’s improve those stats, shall we? Here’s a plan.</p>\n\n\n\n<p><strong>1. Design from the user’s perspective, not your own</strong></p>\n\n\n\n<p>We know your company is the greatest thing since Google and you can’t wait to tell everyone all about where it began, who works there and the details of your offering. But the truth is that a user just wants to get to the point, and their interests should override yours. Usability is key. Show them what they’re looking for, and don’t make them search for it. That doesn’t mean sacrificing look and feel for too much simplicity, it just means focusing the layout and design on the search.</p>\n\n\n\n<p><strong>2. Create a navigation path</strong></p>\n\n\n\n<p>If the information on your website is simple and structured, you can guide visitors on the path you’d like them to take. Use tabs and sub-pages for different categories, and make it logical.</p>\n\n\n\n<p><strong>3. Content is king</strong></p>\n\n\n\n<p>Content is the most important element of your site, really – and it needs to fit the logical and structured navigation. You’ll want to include keywords, page titles, meta tags, and headings for search engine optimisation. As we’ve previously discussed in our <a href=\"https://newwordorder.com.au/writing-for-readable-web/\"><em>Writing for (readable) web</em></a> article, there are some hallmarks we use when writing web copy for our clients:</p>\n\n\n\n<ul><li>short, effective sentences (say the same information with less)</li><li>sub-headings and headings containing keywords</li><li>everyday words the average reader can easily understand (plain English)</li><li>informal voice</li><li>common language conventions</li><li>direct language</li><li>active tense</li><li>consistent, logical structuring of information.</li></ul>\n\n\n\n<p><strong>4. Speed it up and make it simple</strong></p>\n\n\n\n<p>Let’s face it, we’re a busy bunch, and a reminder of the old days of dial-up – waiting for your site to load – is going to test the patience of even the most loyal visitor. In fact, many visitors will start to abandon a website after just a few seconds of loading time. Most of that time is the result of design decisions, so simplify some of the fancy effects.</p>\n\n\n\n<p>We love web design and working with you on the best and most creative way to present your business. Starting with a structure that appeals to your audience, then adding in some clever design and copy, ensures that your site will be a success. <a href=\"https://www.newwordorder.com.au/contact\">Talk to us</a> about it today.</p>\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17415,17652,1,'Truth without fear','2021-05-18 03:20:53','2021-07-23 06:19:17','973ffb3c-4e9f-425a-96d6-ee62265aa2be',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hJ2BsC4HWQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"I’ve always been a big believer that marketing is at its most powerful when you can encourage potential customers to ask an audaciously big question, and know that your offering can answer it indisputably and confidently.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Truth-telling doesn’t have to be controversial. Done well, it simply gives you an edge the others can’t match.\\n\\nSpecifically, truth-telling campaigns can be about demystifying doubts or falsehoods in the marketplace by challenging customers to ask you the tough questions, knowing you’ve nothing to hide and every positive answer can be a true one.\\n\\nNow, I don’t know if truth necessarily applies here all the time… but I do love the strategy behind McDonalds’ approach to all the urban myths (truths?) surrounding the content and manufacturing process of their food, and this approach, manifest in this nifty and functional digital solution http://yourquestions.mcdonalds.com.au, captured my interest.\\n\\nA powerful aspect of this approach is permissioning the target group to cut to the chase and bluntly ask anything. No matter how ugly the question, the Maccas guys maintain a friendly and elegant response, and manage to turn even the roughest questions into positive answers. This way, the questioner is the one who looks bad to the rest of the viewing audience, and the credibility of the answer is reinforced. Do we believe them? Is it the whole truth?\\n\\nOne of our clients markets products in a particularly crowded retail sector. Recently, after hearing a competitor was routinely bagging them, they decided to attack the rumours head-on by attaching to their quotes a clever but honest response. We’re helping them get their strategy to market this week, and believe they’ll reap rewards for their honesty.\\n\\n#### **What erroneous facts about your business lurk in your marketplace?**\\n\\nHave you researched your marketplace, either formally or informally, to know? Even if these myths aren’t widespread, addressing the issue in a positive way can provoke interest in your brand, create discussion, and increase the potential for better relationships and new work.\\n\\n##### **The truth is – or should be – out there.**\\n\\nTruth-telling campaigns can be some of the most rewarding to work on.\\n\\nFrom a tagline that challenges the competition to a wholesale campaign addressing porkies, the benefits to your brand can be great if you get the right help to research, strategise and execute it well.\\n\\n[Talk to us](/contact) – we’d love to help.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17416,17653,1,'Truth without fear','2021-05-18 03:20:53','2021-05-18 03:20:53','e6851ba6-0e34-4762-9f59-366b6134684d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'I’ve always been a big believer that marketing is at its most powerful when you can encourage potential customers to ask an audaciously big question, and know that your offering can answer it indisputably and confidently.\n\nTruth-telling doesn’t have to be controversial. Done well, it simply gives you an edge the others can’t match.\n\nSpecifically, truth-telling campaigns can be about demystifying doubts or falsehoods in the marketplace by challenging customers to ask you the tough questions, knowing you’ve nothing to hide and every positive answer can be a true one.\n\nNow, I don’t know if truth necessarily applies here all the time… but I do love the strategy behind McDonalds’ approach to all the urban myths (truths?) surrounding the content and manufacturing process of their food, and this approach, manifest in this nifty and functional digital solution <a href=\"http://yourquestions.mcdonalds.com.au\">http://yourquestions.mcdonalds.com.au</a>, captured my interest.\n\nA powerful aspect of this approach is permissioning the target group to cut to the chase and bluntly ask anything. No matter how ugly the question, the Maccas guys maintain a friendly and elegant response, and manage to turn even the roughest questions into positive answers. This way, the questioner is the one who looks bad to the rest of the viewing audience, and the credibility of the answer is reinforced. Do we believe them? Is it the whole truth?\n\nOne of our clients markets products in a particularly crowded retail sector. Recently, after hearing a competitor was routinely bagging them, they decided to attack the rumours head-on by attaching to their quotes a clever but honest response. We’re helping them get their strategy to market this week, and believe they’ll reap rewards for their honesty.\n\n<em>What erroneous facts about your business lurk in your marketplace? </em>\n\nHave you researched your marketplace, either formally or informally, to know? Even if these myths aren’t widespread, addressing the issue in a positive way can provoke interest in your brand, create discussion, and increase the potential for better relationships and new work.\n\n<em>The truth is – or should be – out there.</em>\n\nTruth-telling campaigns can be some of the most rewarding to work on.\n\nFrom a tagline that challenges the competition to a wholesale campaign addressing porkies, the benefits to your brand can be great if you get the right help to research, strategise and execute it well.\n\n<a href=\"https://newwordorder.com.au/contact\" target=\"_blank\" rel=\"noreferrer noopener\">Talk to us</a> – we’d love to help.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17417,17654,1,'B2B is dead','2021-05-18 03:20:53','2022-05-30 01:19:40','f3aec5c0-0c22-4b43-a7d9-8777432ed732',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-luIsqIjBj1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"As deaths go, it was a quiet one. Few people knew of its demise.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"But there it lay still: the artificial divide between B2B and B2C marketing, gone forever.\\n\\nWhy bother lamenting the dead? Dare I say, it’s good riddance to a dodgy invention.\\n\\nThe idea that marketing business-to-business took entirely different skills and strategies to talking to consumers has its roots back in the early Noughties. The notion, which most marketers sadly still hold, was that because the volume of B2B transactions is so much higher than B2C—if you count every transaction required along a manufacturing supply chain, for example—then B2B branding requirements were stronger, too.\\n\\nConversely, the B2C belief held that the consumers of the world needed entirely different marketing strategies to convince them to open their wallets.\\n\\nTrue, where they differ most is in the justification of purchases. In B2C land, I need to convince myself why I should buy yet another pair of red shoes. (It’s a short discussion.) In B2B, I might be lobbying the board to invest in an expensive new CRM system.\\n\\nBut the truth is both groups share more similarities than differences.\\n\\nYour customers—be they businesses, consumers or both—have similar emotional and logical requirements that must be met. The relationship lifecycle between a purchaser and a brand exists with businesses and consumers alike. Both groups also frequent the same social media spheres, are Google-happy and web-savvy, and require strong brand confidence in order to purchase.\\n\\nThe illusion that you’re selling to a company in B2B should be seen for what it is. In retail or in business marketing, you’re selling to individuals. And each wants to feel that you get them.\\n\\n##### **Long live H2H.**\\n\\nWhich is where yet another acronym is starting to make a play: H2H, or human-to-human marketing.\\n\\nIt espouses the belief that we all, business and retail customers alike, are looking for connection, inclusion and to be understood. If you take that as your starting point—and not your burning need to produce another brochure—then the marketing toolbox available to your business automatically grows.\\n\\nIt means the vast strategies already out there, like relationship marketing and continuous touchpoints, become as relevant to a retail customer as to the business that buys your widgets. And the traditional B2C tools like social media become far more relevant B2B because they help build connections better than a sterile product flyer.\\n\\n##### **Let’s make H2H practical.**\\n\\n**1. Open your horizons**\\n\\nSwitching your mindset to focusing on the individual, human needs of your market means you can open your marketing to all sorts of potential tools. Just because you run a hair salon doesn’t mean you can’t start sending out a monthly email newsletter—if your customers are the kind of people that like to know more about you. And just because you’re an accountant doesn’t mean you can’t lead an industry group on LinkedIn or advertise on Facebook—if that’s where you’ll find the types of sales you want. Think about your customers, and let their needs lead you.\\n\\n**2. Make your customers feel**\\n\\nSales overwhelmingly come from relationships in my business, so meeting my clients’ emotional needs is a no-brainer. If my clients are happy, they’ll stay.\\n\\nBut even if your sales rely heavily on good old-fashioned foot traffic, it’s relationships that will lure them and keep them. So, in every tool you use to get to market, make sure you get the emotional kicker in. Empathise and prove you understand their needs.\\n\\n**3. Ask your employees what they think**\\n\\nIt’s one thing to make marketing decisions from an ivory tower. Chances are it’s your staff who really know how your clients think, or how your customers behave. So get their ideas and integrate it into your marketing. Let them drive your innovation.\\n\\n**4. Finally, listen to your customers**\\n\\nThere is marketing gold in every intentional conversation you have with a customer. Ask the ‘why’ that follows the tough questions: Do you feel safe with my business? Do you like dealing with us? Would you refer us to your friends? The answers will revolutionise how you think about marketing to your customers.\\n\\n---\\n\\n*Written for the February 2014 issue of Inform, the monthly magazine of the Chamber of Commerce and Industry in Queensland.*\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'B2B is dead','As deaths go, it was a quiet one. Few people knew of its demise.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17418,17655,1,'B2B is dead','2021-05-18 03:20:53','2021-05-18 03:20:53','4a4f4450-f08b-4354-bc3d-d14375520662',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'As deaths go, it was a quiet one. Few people knew of its demise.\n\nBut there it lay still: the artificial divide between B2B and B2C marketing, gone forever.\n\nWhy bother lamenting the dead? Dare I say, it’s good riddance to a dodgy invention.\n\nThe idea that marketing business-to-business took entirely different skills and strategies to talking to consumers has its roots back in the early Noughties. The notion, which most marketers sadly still hold, was that because the volume of B2B transactions is so much higher than B2C – if you count every transaction required along a manufacturing supply chain, for example – then B2B branding requirements were stronger, too.\n\nConversely, the B2C belief held that the consumers of the world needed entirely different marketing strategies to convince them to open their wallets.\n\nTrue, where they differ most is in the justification of purchases. In B2C land, I need to convince myself why I should buy yet another pair of red shoes. (It’s a short discussion.) In B2B, I might be lobbying the board to invest in an expensive new CRM system.\n\nBut the truth is both groups share more similarities than differences.\n\nYour customers – be they businesses, consumers or both – have similar emotional and logical requirements that must be met. The relationship lifecycle between a purchaser and a brand exists with businesses and consumers alike. Both groups also frequent the same social media spheres, are Google-happy and web-savvy, and require strong brand confidence in order to purchase.\n\nThe illusion that you’re selling to a company in B2B should be seen for what it is. In retail or in business marketing, you’re selling to individuals. And each wants to feel that you get them.\n\n<em>Long live H2H.</em>\n\nWhich is where yet another acronym is starting to make a play: H2H, or human-to-human marketing.\n\nIt espouses the belief that we all, business and retail customers alike, are looking for connection, inclusion and to be understood. If you take that as your starting point – and not your burning need to produce another brochure – then the marketing toolbox available to your business automatically grows.\n\nIt means the vast strategies already out there like relationship marketing and continuous touchpoints become as relevant to a retail customer as to the business that buys your widgets. And the traditional B2C tools like social media become far more relevant business-to-business because they help build connections better than a sterile product flyer.\n\n<em>Let’s make H2H practical.</em>\n\n<strong>1. </strong><strong>Open your horizons</strong>\n\nSwitching your mindset to focusing on the individual, human needs of your market means you can open your marketing to all sorts of potential tools. Just because you run a hair salon doesn’t mean you can’t start sending out a monthly email newsletter – <em>if</em> your customers are the kind of people that like to know more about you. And just because you’re an accountant doesn’t mean you can’t lead an industry group on LinkedIn or advertise on Facebook – <em>if</em> that’s where you’ll find the types of sales you want. Think about your customers, and let their needs lead you.\n\n<strong>2. </strong><strong>Make your customers feel</strong>\n\nSales overwhelmingly come from relationships in my business, so meeting my clients’ emotional needs is a no-brainer. If my clients are happy, they’ll stay.\n\nBut even if your sales rely heavily on good old-fashioned foot traffic, it’s relationships that will lure them and keep them. So, in every tool you use to get to market, make sure you get the emotional kicker in. Empathise and prove you understand their needs.\n\n<strong>3. </strong><strong>Ask your employees what they think</strong>\n\nIt’s one thing to make marketing decisions from an ivory tower. Chances are it’s your staff who really know how your clients think, or how your customers behave. So get their ideas and integrate it into your marketing. Let them drive your innovation.\n\n<strong>4. </strong><strong>Finally, listen to your customers</strong>\n\nThere is marketing gold in every intentional conversation you have with a customer. Ask the ‘why’ that follows the tough questions: Do you feel safe with my business? Do you like dealing with us? Would you refer us to your friends? The answers will revolutionise how you think about marketing to your customers.\n\n---\n\nWritten for the February 2014 issue of <em>Inform, </em>the monthly magazine of the Chamber of Commerce and Industry in Queensland.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17419,17656,1,'aggregated-content','2021-05-18 03:20:53','2021-05-18 03:20:53','f44c2209-d1bf-4f05-8b49-d3f519108b49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17420,17657,1,'content-creation','2021-05-18 03:20:53','2021-05-18 03:20:53','d8a98f0c-1d25-4bfd-8149-4ea74e2c1c97',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17421,17658,1,'content-curation','2021-05-18 03:20:53','2021-05-18 03:20:53','7b986766-ecd1-4a4c-b6db-c0882ced5db3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17422,17659,1,'thought-leadership','2021-05-18 03:20:53','2021-05-18 03:20:53','95b10eaa-35ad-4b95-badd-42cbb0a395bc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17423,17660,1,'The 6 steps of content creation','2021-05-18 03:20:54','2022-08-08 07:02:05','4b6f4e14-74af-40d6-9ca1-de22f9725317',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-92RCseTSp0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"You know what your business is about. You’ve nailed down your story. You’ve worked out who you want to talk to.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Now you need to add some real value.\\n\\nTime-poor organisations need their content to work across different channels online—including websites, e-newsletters, blogs and across social media. One way to add value to your existing, more sales-focused content is through content curation. Content curation means finding useful content online, curating it for your audience and re-telling it in your voice and with your advice.\\n\\n##### **Here’s how to optimise, write and curate content for your target audience.**\\n\\n###### **Defining your goals**\\n\\nEvery good plan starts with defining what it’s trying to achieve. How do you want your content to define your business? What are you offering your target market? Do you want to be a thought leader in your particular area?\\n\\nContent curation is about meeting your customers where they are and offering them something they’re not getting elsewhere. It’s about finding, gathering and sharing information of value with them; positioning your business and brand as an authority both with original content—your sales offering and business learnings—and information you’ve found and shared online. Participating in conversations that are happening about your field leads to more engagement with your target market, the ultimate goal being to give your brand a voice of value that will see your audience come back again and again for your offering.\\n\\n###### **Getting started**\\n\\nIt’s important to remember that well-executed content curation isn’t about regurgitating content that was already published. Instead, it’s your business’ personal re-telling of a story. As Susan Gunelius wrote for Forbes, the human element of content curation is what makes curated content compelling.\\n\\nTherefore, when offering your audience valuable content, remember to tell your story. What are you saying that’s different? What do you know that others might not? Involve your whole team—not just marketing and sales—and that story will evolve to give your business a truly useful and unique voice.\\n\\n###### **Finding content**\\n\\nHere’s where you get amongst it!\\n\\nWant to know where your target market is looking for information online? Go exploring! Ask them! Discover for yourself where the good stories are being shared. Find out what topics matter to your goals and audience, and go after them.\\n\\nIntegrating content curation into your broader marketing strategy is the way to go here—it legitimises the exercise and gets your team thinking about the value of your brand and how they can add to it. The best place to start is probably your social media accounts. Valuable content is being shared every day on platforms like Facebook, Twitter and LinkedIn. There are also Google alerts and news aggregate sites that can be set up with your special business needs in mind.\\n\\n###### **Be authentic to find your voice**\\n\\nThere is nothing like the instant world of social media to add value and timeliness to your content. Social media has changed the term ‘sharing’ forever, and the opportunities for your brand are endless. It’s important to add your own value to social content—as Mark Lerner says, if you just \'retweet\', or share an article without including your own voice in the post, you’ll fail to distinguish yourself from everyone else who shared that content.\\n\\nHow do you find your voice? Authentically, of course! Offer your opinion and add your advice in areas where you are confident. Try to be friendly and informative, and adopt an approachable tone. Not so confident? Ask questions! Get your community talking and they’ll come back to you.\\n\\n###### **Context and thought leadership**\\n\\nGood content curation provides your audience with context and convenience—that means filtering and explaining what you find online, and rewording it in your voice so it’s useful to them. You don’t always need to be selling, but you do always need to be mindful of your brand and of offering real value. Knowing who your market is and writing in your ‘voice’ allows you to, as J-P De Clerck says, inform, educate, entertain and engage target audiences.\\n\\n###### **Where to share**\\n\\nThere are many ways to share curated content, but the best way is in a mix of your existing ‘sales’ content. E-newletters and blogs offer an opportunity to share curated and original content, and social media is the most instant way to add your voice to a new idea, and also probably the first place your audience will find you. They’ll also find your website, so don’t forget about the curated content opportunities there. Always remember that you should be providing useful information, not just repeating content or working on the hard sell.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-smxImKOfwg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":null,\"plainText\":\"Content curation is convenient, but it’s also an important opportunity to add value, develop a business voice and grow an online community. What do you think about content curation? Has it worked for you? Got any tips? Let us know.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The 6 steps of content creation','You know what your business is about. You’ve nailed down your story. You’ve worked out who you want to talk to.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17424,17661,1,'The 6 steps of content creation','2021-05-18 03:20:54','2021-05-18 03:20:54','1da86722-b928-45b4-8622-92f635f6109b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'You know what your business is about. You’ve nailed down your story. You’ve worked out who you want to talk to.\n\n<em>Now you need to add some real value.</em>\n\nTime poor organisations need their content to work across different channels online – including websites, e-newsletters, blogs and across social media. One way to add value to your existing, more sales-focused, content is through <strong>content curation</strong>. Content creation means finding useful content online, curating it for your audience and re-telling it in your voice and with your advice.\n\nHere’s how to optimise, write and curate content for your target audience.\n<h3>Defining your goals</h3>\nEvery good plan starts with defining what it’s trying to achieve. How do you want your content to define your business? What are you offering your target market? Do you want to be a thought leader in your particular area?\n\nContent curation is about meeting your customers where they are and offering them something they’re not getting elsewhere. It’s about finding, gathering and sharing information of value with them; positioning your business and brand as an authority both with original content – your sales offering and business learnings – and information you’ve found and shared online. Participating in conversations that are happening about your field leads to more engagement with your target market, the ultimate goal being to give your brand a voice of value that will see your audience come back again and again for your offering.\n<h3>Getting started</h3>\nIt’s important to remember that well-executed content curation isn’t about regurgitating content that was already published. Instead, it’s your business’s personal re-telling of a story. As Susan Gunelius wrote for <a href=\"http://www.forbes.com/sites/work-in-progress/2012/07/05/5-ways-to-use-content-curation-for-marketing-and-tools-to-do-it/\" target=\"_blank\" rel=\"noreferrer noopener\">Forbes</a>, the human element of content curation is what makes curated content compelling.\n\nTherefore, when offering your audience valuable content, remember to tell your story. What are you saying that’s different? What do you know that others might not? Involve your whole team – not just marketing and sales – and that story will evolve to give your business a truly useful and unique voice.\n<h3>Finding content</h3>\nHere’s where you get amongst it!\n\nWant to know where your target market is looking for information online? Go exploring! Ask them! Discover for yourself where the good stories are being shared. Find out what topics matter to your goals and audience, and go after them.\n\nIntegrating content curation into your broader marketing strategy is the way to go here – it legitimises the exercise and gets your team thinking about the value of your brand and how they can add to it. The best place to start is probably your social media accounts. Valuable content is being shared every day on platforms like Facebook, Twitter and LinkedIn. There are also Google alerts and news aggregate sites that can be set up with your special business needs in mind.\n<h3>Be authentic to find your voice</h3>\nThere is nothing like the instant world of social media to add value and timeliness to your content. Social media has changed the term ‘sharing’ forever, and the opportunities for your brand are endless. It’s important to add your own value to social content – as Mark Lerner says, if you just “retweet,” or share an article without including your own voice in the post, you’ll fail to distinguish yourself from everyone else who shared that content.\n\nHow do you find your voice? Authentically, of course! Offer your opinion and add your advice in areas you are confident about. Try to be friendly and informative, and adopt an approachable tone. Not so confident? Ask questions! Get your community talking and they’ll come back to you.\n<h3>Context and thought leadership</h3>\nGood content curation provides your audience with context and convenience – that means filtering and explaining what you find online, and rewording it in your voice so it’s useful to them. You don’t always need to be selling, but you do always need to be mindful of your brand and of offering real value. Knowing who your market is and writing in your ‘voice’ allows you to, as J-P De Clerck says, inform, educate, entertain and engage target audiences.\n<h3>Where to share</h3>\nThere are many ways to share curated content, but the best way is in a mix of your existing ‘sales’ content. E-newletters and blogs offer an opportunity to share curated and original content, and social media is the most instant way to add your voice to a new idea, and also probably the first place your audience will find you. They’ll also find your website, so don’t forget about the curated content opportunities there. Always remember that you should be providing useful information, not just repeating content or working on the hard sell.\n\nContent curation is convenient, but it’s also an important opportunity to add value, develop a business voice and grow an online community. What do you think about content curation? Has it worked for you? Got any tips? Let us know.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17425,17662,1,'Measure your marketing with meaning','2021-05-18 03:20:54','2021-07-23 06:19:18','45e981da-0e61-4564-9d25-b8c6e1546e48',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SFr1a8qndz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"It’s the age-old struggle for marketers – measuring the return on investment (ROI) of your activities and campaigns. The struggle comes in part because it’s difficult to relate concepts like brand awareness directly to sales. But that doesn’t mean there aren’t ways to monitor and measure your marketing and prove its worth. After all, if you don’t measure, how do you know what’s working?\\n\\n##### **Steps for meaningful data**\\n\\n1. define your metrics and develop a plan\\n2. collect the data\\n3. develop reporting guidelines\\n4. analyse and change as needed\\n5. Collecting and analysing meaningful data is about more than finding tools and interpreting charts. It’s about valuing the data and understanding how it can help justify and grow your hard work and campaigns.\\n\\nThere are several tools that will help you measure your marketing data, and Google analytics is probably the most helpful – it’s also free. Bonus!\\n\\n##### **What we look for**\\n\\nWhen measuring our campaigns for clients, we look at engagement and growth.\\n\\n##### **Engagement**\\n\\nStarting with content performance, it’s helpful to measure social shares on Twitter, Facebook and LinkedIn (shares equal love!), and then check your blog and website for bounce rates and visit time. Facebook and Twitter have built-in analytics tools that will help you here. On your website and blog, use Google analytics. High bounce rates and short visits usually mean your audience isn’t finding what they thought they would, or they’re not as engaged as they should be with your content. Pages per visit is another interesting content measure – if visitors are clicking around your site, they’re liking what they find and you’re getting more exposure. Nice work!\\n\\nA specific example of measuring engagement in action can be found in our My Smoking quit smoking campaign. It was targeted at men and women aged 18–29 across TV, radio, print and digital. Data showed that:\\n\\n- 8 in 10 young smokers supported the campaign\\n- 76% contemplated quitting because of the campaign\\n- 50% reported cutting down on cigarettes because of the campaign\\n- 47% tried quitting\\n\\nImagine being able to prove your campaign success to your team and managers? We do it from the start with our work. Do you?\\n\\n##### **Growth**\\n\\nFor growth in marketing, it all starts with click-throughs on your call to action. If your analytics tell you they’re low, then you need to change up your content. Look at the words you’re using, how your e-marketing looks, your subject line on EDMs and even the specific call to action.\\n\\nOther growth indicators will see you linking up with your sales team to measure metrics like how many leads your content is bringing in and turning into customers, cost per lead, average sales cycle duration and revenue per user. Always remember that increasing customer retention is the aim for the sales cycle, too. These things are tougher to measure, but good lead generation processes are a big help, and we find having campaign measurement expectations in place right from the start will make things much easier.\\n\\nA terrific example of analysing the performance and growth of our work was for our client the Chamber of Commerce & Industry Queensland (CCIQ). A review of their key communication channels saw us creating a monthly e-zine to better engage members. As a result of our work, we measured that CCIQ got 3,350 new subscribers in 5 months, grew website traffic by 161% to 76,277 visitors over six months, had 4,171 qualified leads generated over six months and a 110% increase in revenue in a single month. Impressive figures that not only lead to successful relationships with clients, but to high-achieving campaigns and ongoing work. We’re proving what we do is working.\\n\\n[Have a chat with us today](/contact) about your marketing and we’ll have you measured up in no time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17426,17663,1,'Measure your marketing with meaning','2021-05-18 03:20:54','2021-05-18 03:20:54','8360e214-4e23-4d46-9668-8229c2d7e433',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'It’s the age-old struggle for marketers – measuring the return on investment (ROI) of your activities and campaigns. The struggle comes in part because it’s difficult to relate concepts like brand awareness directly to sales. But that doesn’t mean there aren’t ways to monitor and measure your marketing and prove its worth. After all, if you don’t measure, how do you know what’s working?\n\n<b>Steps for meaningful data</b>\n<ol>\n 	<li>define your metrics and develop a plan</li>\n 	<li>collect the data</li>\n 	<li>develop reporting guidelines</li>\n 	<li>analyse and change as needed</li>\n</ol>\nCollecting and analysing meaningful data is about more than finding tools and interpreting charts. It’s about <b>valuing the data</b> and understanding how it can help <b>justify and grow your hard work and campaigns</b>.\n\nThere are several tools that will help you measure your marketing data, and <b>Google analytics</b> is probably the most helpful – it’s also free. Bonus!\n\n<b>What we look for</b>\n\nWhen measuring our campaigns for clients, we look at <b>engagement</b> and <b>growth</b>.\n\n<b>Engagement</b>\n\nStarting with content performance, it’s helpful to measure social shares on Twitter, Facebook and LinkedIn (shares equal love!), and then check your blog and website for bounce rates and visit time. Facebook and Twitter have built-in analytics tools that will help you here. On your website and blog, use Google analytics. High bounce rates and short visits usually mean your audience isn’t finding what they thought they would, or they’re not as engaged as they should be with your content. Pages per visit is another interesting content measure – if visitors are clicking around your site, they’re liking what they find and you’re getting more exposure. Nice work!\n\nA specific example of measuring engagement in action can be found in our My Smoking quit smoking campaign. It was targeted at men and women aged 18–29 across TV, radio, print and digital. Data showed that:\n<ul>\n 	<li>8 in 10 young smokers supported the campaign</li>\n 	<li>76% contemplated quitting because of the campaign</li>\n 	<li>50% reported cutting down on cigarettes because of the campaign</li>\n 	<li>47% tried quitting</li>\n</ul>\nImagine being able to prove your campaign success to your team and managers? We do it from the start with our work. Do you?\n\n<b>Growth</b>\n\nFor growth in marketing, it all starts with click-throughs on your call to action. If your analytics tell you they’re low, then you need to change up your content. Look at the words you’re using, how your e-marketing looks, your subject line on EDMs and even the specific call to action.\n\nOther growth indicators will see you linking up with your sales team to measure metrics like how many leads your content is bringing in and turning into customers, cost per lead, average sales cycle duration and revenue per user. Always remember that increasing customer retention is the aim for the sales cycle, too. These things are tougher to measure, but good lead generation processes are a big help, and we find having campaign measurement expectations in place right from the start will make things much easier.\n\nA terrific example of analysing the performance and growth of our work was for our client the Chamber of Commerce &amp; Industry Queensland (CCIQ). A review of their key communication channels saw us creating a monthly e-zine to better engage members. As a result of our work, we measured that CCIQ got 3,350 new subscribers in 5 months, grew website traffic by 161% to 76,277 visitors over six months, had 4,171 qualified leads generated over six months and a 110% increase in revenue in a single month. Impressive figures that not only lead to successful relationships with clients, but to high-achieving campaigns and ongoing work. We’re proving what we do is working.\n\nHave a chat with us today about your marketing and we’ll have you measured up in no time.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17427,17664,1,'Making the most of video','2021-05-18 03:20:55','2021-07-23 06:19:18','ed228168-1356-46f0-a10d-ef53d4b8bbec',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-93421JnaRh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Right now the web is awash with video. Just look at your Facebook or LinkedIn feed and you’ll get an idea of how much video content is being produced and posted every day. And it’s on the rise, with video expected to account for around 82% of all internet traffic by 2020.\\n\\n##### **Quality is king**\\n\\nThe thing is, we don’t have any more time in our days to view all this extra content, so video quality and relevance is going to play an increasingly important role in what gets watched and what doesn’t. While there are lots of cheap production services available, if you want your video to be successful, it’s worth looking beyond cost alone.\\n\\nThe key purpose of any video communication is to tell a clear and compelling story – something that captures and maintains your audience’s interest. It also needs to be well strategised, use its medium well and, of course, be well crafted.\\n\\n##### **Things to consider**\\n\\nWhen planning your next video, keep these things in mind:\\n\\nIs animation the right approach, or would live action better suit? Budget can be a big factor here because it is often much easier to animate.\\nThink about voiceover versus text on screen. Does the video need to work without sound, on social media or in a noisy display? Will people read enough of the message on screen? Is the voice vital to the communication of the message, through a tone, accent or character?\\nAre you creating a series? If so, can any illustration assets be used again, or can the video be edited for smaller uses such as social media marketing?\\nNWO video examples\\n\\n##### **Here are some recent examples of videos we’ve created, using some of this thinking.**\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F8O5gbyyqy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/141875728\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/186503939\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new3\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/145234065\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17428,17665,1,'Making the most of video','2021-05-18 03:20:55','2021-05-18 03:20:55','d61d6d43-33b2-4d58-ba5f-a0be4f6d5e15',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Right now the web is awash with video. Just look at your Facebook or LinkedIn feed and you’ll get an idea of how much video content is being produced and posted every day. And it’s on the rise, with video expected to account for around 82% of all internet traffic by 2020.\n\n<strong>Quality is king</strong>\n\nThe thing is, we don’t have any more time in our days to view all this extra content, so video quality and relevance is going to play an increasingly important role in what gets watched and what doesn’t. While there are lots of cheap production services available, if you want your video to be successful, it’s worth looking beyond cost alone.\n<p class=\"p1\"><span class=\"s1\">The key purpose of any video communication is to tell a clear and compelling story – something that captures and maintains your audience’s interest. It also needs to be well strategised, use its medium well and, of course, be well crafted.</span></p>\n<p class=\"p1\"><strong>Things to consider</strong></p>\nWhen planning your next video, keep these things in mind:\n<ul>\n 	<li class=\"li1\"><span class=\"s2\">Is animation the right approach, or would live action </span><span class=\"s3\">better</span><span class=\"s2\"> suit? Budget can be a big factor </span><span class=\"s3\">here because</span><span class=\"s2\"> it is often much easier to animate.</span></li>\n 	<li class=\"li1\"><span class=\"s3\">Think about v</span><span class=\"s2\">oiceover versus text on screen. Does the video need to work without sound, on social media or in a noisy display? Will people read enough of the message on screen? Is the voice vital to the communication of the message, through a tone, accent or character?</span></li>\n 	<li class=\"li1\"><span class=\"s2\">Are you creating a series? If so, can any illustration assets be used again, or can the video be edited for smaller uses such as social media marketing?</span></li>\n</ul>\n<strong>NWO video examples</strong>\n\n<span class=\"s1\">Here are some recent examples of videos we’ve created, using some of </span><span class=\"s2\">this thinking.</span>\n\n<strong><span class=\"s1\"><span class=\"s2\">Mental Health Week</span></span></strong>\n\n\n<div class=\"embed-container\"><iframe src=\"https://player.vimeo.com/video/141875728\" width=\"300\" height=\"150\" frameborder=\"0\"></iframe></div>\n<span class=\"s3\">Uses emotive music and messaging on screen to ensure</span><span class=\"s4\">, s</span><span class=\"s3\">ound or no sound, the messages get through.</span>\n\n<strong><span class=\"s5\"><span class=\"s2\">Our HPW, our future</span></span></strong>\n\n\n<div class=\"embed-container\"><iframe src=\"https://player.vimeo.com/video/186503939\" width=\"300\" height=\"150\" frameborder=\"0\"></iframe></div>\n<span class=\"s3\">Uses real staff members delivering autocue script to camera, taken from the words of them and their colleagues.</span>\n\n<strong><span class=\"s5\"><span class=\"s2\">DEWS energy bill</span></span></strong>\n\n\n<div class=\"embed-container\"><iframe src=\"https://player.vimeo.com/video/145234065\" width=\"300\" height=\"150\" frameborder=\"0\"></iframe></div>\n<span class=\"s3\">Uses characters to explain and entertain.</span>\n\nWe’d love to know what videos you’re planning. <a href=\"http://newwordorder.com.au/#contact\">Drop us a line</a> to see how we can help.\n\nSource: <a href=\"http://www.cisco.com/c/en/us/solutions/collateral/service-provider/visual-networking-index-vni/complete-white-paper-c11-481360.html\">http://www.cisco.com/c/en/us/solutions/collateral/service-provider/visual-networking-index-vni/complete-white-paper-c11-481360.html</a>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17429,17666,1,'Looking beyond the banner','2021-05-18 03:20:55','2021-07-23 06:19:18','977bf207-dd5c-40e9-9e7e-ad62da838ffd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PozxXC4SkM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Banner ads have come a long way over the years. And the fairly recent introduction of HTML5 means they can now be transformed into beautiful little packages of story that work well amidst busy news pages, despite not having audio.\\n\\n##### **Striking the right balance**\\n\\nPre-rolls (which play before feature videos) and social media ads offer other options if you have the budget for video, when a television commercial doesn’t exist, and conventional video is too expensive.\\n\\nOne approach that provides the ideal balance is using video like a ‘banner ad on steroids’. By creating a simple (though still sophisticated) slideshow with a managed level of animation, you can add in story-boosting music and voiceover while keeping costs down.\\n\\n##### **NWO video examples**\\n\\nHere are some recent examples of videos we’ve created, using some of this thinking.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F4a71SFzVH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/176686850\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/170735464\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new3\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/177308827\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17430,17667,1,'Looking beyond the banner','2021-05-18 03:20:55','2021-05-18 03:20:55','dfbc5dab-203b-4946-b525-b521a4c4e189',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Banner ads have come a long way over the years. <span class=\"s1\">And the fairly recent introduction of HTML5 means they can now be transformed into beautiful little packages of story that work well amidst busy news pages, </span><span class=\"s2\">despite not having audio.</span>\n\n<strong>Striking the right balance</strong>\n<p class=\"p1\"><span class=\"s1\">Pre-rolls (which play before feature videos) and social media ads offer other options if you have the budget for video, when a television commercial doesn’t exist, and conventional video is too expensive.</span></p>\nOne approach that provides the ideal balance is using video like a ‘banner ad on steroids’. <span class=\"s1\">By creating a simple (though still sophisticated) </span><span class=\"s2\">slideshow</span><span class=\"s1\"> with a managed level of animation, you can add in</span><span class=\"s2\"> story-boosting music and voiceover while keeping costs down.</span>\n\n<strong>NWO video examples</strong>\n<p class=\"p1\"><span class=\"s1\">Here are some recent examples of videos we’ve created, using some of </span><span class=\"s2\">this</span><span class=\"s1\"> thinking.</span></p>\n<strong><span class=\"s1\"><span class=\"s2\">Queensland Week</span></span></strong>\n\n\n<div class=\"embed-container\"><iframe src=\"https://player.vimeo.com/video/176686850\" width=\"300\" height=\"150\" frameborder=\"0\"></iframe></div>\n \n\n<span class=\"s4\">Higher use of animation but no voiceover kept the budget lean.</span>\n\n<strong><span class=\"s5\"><span class=\"s2\">QFES recruitment</span></span></strong>\n\n\n<div class=\"embed-container\"><iframe src=\"https://player.vimeo.com/video/170735464\" width=\"300\" height=\"150\" frameborder=\"0\"></iframe></div>\n \n\n<span class=\"s4\">A series of five videos built around key messages, output in standard screen dimensions and square for Instagram.</span>\n\n<strong><span class=\"s1\"><span class=\"s2\">Electric Bikes Brisbane</span></span></strong>\n\n\n<div class=\"embed-container\"><iframe src=\"https://player.vimeo.com/video/177308827\" width=\"300\" height=\"150\" frameborder=\"0\"></iframe></div>\n \n\n<span class=\"s4\">No voiceover needed here because fun and clever stock images and quirky music told the story.</span>\n\nWe’d love to know about any banner ads or videos you’re planning. <a href=\"http://newwordorder.com.au/#contact\">Drop us a line</a><span> to see how we can help.</span>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17431,17668,1,'Outsourcing creative services','2021-05-18 03:20:55','2021-07-23 06:19:18','7570accb-9a02-4c3c-ae97-62dc74903e68',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-N45x3IS2PH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"When it comes to finding an external supplier, we understand the challenges many government comms (and non-comms) people face.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"You need someone who has a good idea of how the government arena works and the demands and limitations you face but still pushes the boundaries to achieve something worth paying external fees for. But where do you start?\\n\\n##### **Take a look at the list**\\n\\nA great place to begin your search for an external creative services supplier is the whole-of-government panel. Here you’ll find a list of large and small advertising and communications agencies that are all pre-qualified and experienced working in your space.\\n\\nWhen perusing the names on the whole-of-government panel, consider the following:\\n\\n- Smaller agencies can do big campaign and project work too. Many have been competing with the top end of town for years and can often ensure you get very senior, experienced people working directly with you on your job.\\n- Find an agency that can fill in the gaps you have. If you’re not used to outsourcing design or campaigns, the right agency can answer every question you have and work with you to develop a brief that will meet all your needs (even the ones you’re not sure of yet!).\\n- Help the agency and yourself by being clear on what’s required and what happens if or when you change your mind. Author’s corrections can amass unexpectedly and everyone needs to be clear on when they kick in and why they are happening.\\n\\nNWO is on the whole-of-government panel, so be sure to drop us a line to see how we can help with your next project or campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17432,17669,1,'Outsourcing creative services','2021-05-18 03:20:56','2021-05-18 03:20:56','6a78c2e6-37de-4e17-993d-2ff68b68ca6f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'When it comes to finding an external supplier, we understand the challenges many government comms (and non-comms) people face. <span class=\"s1\">You need someone who has a good idea of how the government arena </span><span class=\"s2\">works </span><span class=\"s1\">and the demands and limitations you</span><span class=\"s2\"> face</span><span class=\"s1\"> but still pushes the boundaries</span> to achieve something worth paying external fees for. But where do you start?\n\n<strong>Take a look at the list</strong>\n\nA great place to begin your search for an external creative services supplier is the whole-of-government panel. Here you’ll find a list of large and small advertising and communications agencies that are all pre-qualified and experienced working in your space.\n\nWhen perusing the names on the <span class=\"s1\">whole-of-government</span> panel, consider the following:\n<ol>\n 	<li>Smaller agencies can do big campaign and project work too. Many have been competing with the top end of town for years and can often ensure you get very senior, experienced people working directly with you on your job.</li>\n 	<li>Find an agency that can fill in the gaps you have. If you’re not used to outsourcing design or campaigns, the right agency can answer every question you have and work with you to develop a brief that will meet all your needs (even the ones you’re not sure of yet!).</li>\n 	<li>Help the agency and yourself by being clear on what’s required and what happens <span class=\"s2\">if or when </span><span>you change your mind. Author’s corrections can amass unexpectedly and everyone needs to be clear on when they kick in and why they are happening.</span></li>\n</ol>\nNWO is on the whole-of-government panel, so be sure to <a href=\"http://newwordorder.com.au/#contact\">drop us a line</a> to see how we can help with your next project or campaign.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17433,17670,1,'Overhauling your website','2021-05-18 03:20:56','2021-07-23 06:19:19','6a22b97d-c093-4c1f-99c5-74ea285da7e4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-zjgeVEYzo2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"There comes a time in every website’s life where things need to change. Usually, in a big way.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But it needn’t be all doom and gloom. Yes, it can seem overwhelming and yes, it can take quite some time to implement. But remember to keep your eyes on the prize; don’t lose sight of why you’re doing the update in the first place.\\n\\n##### **So why should you do it?**\\n\\nFirstly, there’s the appearance. If your site looks dated, your customers might have the same perception of your brand. Also, your site should be mobile friendly – search engines are now starting to penalise sites that aren’t optimised for mobile.\\n\\nIt should also be more than an ‘online presence’ – it should add value to your business. So if it’s currently not drawing in customers, it’s worth updating. Analytics tools and SEO are also crucial additions for any efficiently run site, so definitely keep them in mind.\\n\\nThen there’s the engagement factor. Does your content and imagery really grab your audience and make them want to stay on your site? Also, you should be capturing information from your customers whenever possible, via tools such as contact forms, surveys and mailing lists.\\n\\n##### **How do you go about it?**\\n\\nHere are a few simple steps that might help.\\n\\n1. **Undertake an audit of your current site** – note what you think is working and what isn’t.\\n2. **Do a bit of competitor analysis** – see what other brands in your industry are doing online.\\n3. **Start mapping out the pages and sections of your ideal new site** – develop wireframes if you can.\\n4. **Work on content and imagery** – essentially filling in the blanks in your wireframe.\\n5. **Do some testing** – either online or face-to-face tests and focus groups can provide great feedback.\\n6. **Make relevant changes** – listen to what people have said and update your site accordingly.\\n7. **Send it live!** Then sit back and marvel at your new masterpiece.\\n\\nOf course, here at NWO we do offer a specialised website development service – contact us to find out more.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17434,17671,1,'Overhauling your website','2021-05-18 03:20:56','2021-05-18 03:20:56','35b0211f-1d74-49b9-b835-4f537773e8d5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'There comes a time in every website’s life where things need to change. Usually, in a big way.\n\nBut it needn’t be all doom and gloom. Yes, it can seem overwhelming and yes, it can take quite some time to implement. But remember to keep your eyes on the prize; don’t lose sight of why you’re doing the update in the first place.\n<h3><strong>So why should you do it?</strong></h3>\nFirstly, there’s the appearance. If your site looks dated, your customers might have the same perception of your brand. Also, your site should be mobile friendly – search engines are now starting to penalise sites that aren’t optimised for mobile.\n\nIt should also be more than an ‘online presence’ – it should add value to your business. So if it’s currently not drawing in customers, it’s worth updating. Analytics tools and SEO are also crucial additions for any efficiently run site, so definitely keep them in mind.\n\nThen there’s the engagement factor. Does your content and imagery really grab your audience and make them want to stay on your site? Also, you should be capturing information from your customers whenever possible, via tools such as contact forms, surveys and mailing lists.\n<h3><strong>How do you go about it?</strong></h3>\nHere are a few simple steps that might help.\n<ol>\n 	<li>Undertake an audit of your current site – note what you think is working and what isn’t.</li>\n 	<li>Do a bit of competitor analysis – see what other brands in your industry are doing online.</li>\n 	<li>Start mapping out the pages and sections of your ideal new site – develop wireframes if you can.</li>\n 	<li>Work on content and imagery – essentially filling in the blanks in your wireframe.</li>\n 	<li>Do some testing – either online or face-to-face tests and focus groups can provide great feedback.</li>\n 	<li>Make relevant changes – listen to what people have said and update your site accordingly.</li>\n 	<li>Send it live! Then sit back and marvel at your new masterpiece.</li>\n</ol>\n<p class=\"p1\"><span class=\"s1\">Of course, here at NWO we do offer a specialised website development service – </span><a href=\"http://newwordorder.com.au/#contact\"><span class=\"s2\">contact us</span></a><span class=\"s3\"> to find out more.</span></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17435,17672,1,'Building better brands','2021-05-18 03:20:56','2021-07-23 06:19:19','68deb040-637e-4c96-8f75-6a7294168fa5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lRz71ReQLs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"So, you’re thinking of rebranding? Or branding something new from scratch? Good for you – there’s nothing we love more than brands that go out of their way to portray themselves in an interesting and unique light.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But before you start scribbling down new logo ideas, there are a number of things that we think are worth considering. Firstly, and yes we know there’s a lot of info out there on this, but it’s important to remind yourself what exactly a ‘brand’ is.\\n\\n##### **Brand basics**\\n\\nThis is also important when speaking to an agency, but clarifying exactly what you’re after – either a new brand identity or a new brand – can be crucial in your planning, not to mention costs and timings. A ‘brand identity’ typically includes a logo and other graphical devices, along with fonts and colours. But this alone doesn’t make a brand.\\n\\nA ‘brand’ includes all of the above plus so many other elements, which help your customers form an opinion of your organisation. Things such as images, feelings, products, words, sounds, smells, events, people and places, can all make up a brand too.\\n\\n##### **Beginning the brand journey**\\n\\nWith the above definitions in mind, once you’ve clarified what you want to do with your brand, it’s time to think about where to start. Try these steps on for size:\\n\\n1. **Conduct a brand audit** – if you’ve currently got a brand, look at all the elements and see what’s working, and what isn’t. External consultants who aren’t so close to your brand can often give a fresh, unbiased perspective.\\n2. **Do your research** – look at competitors to see what their brands are like, and what opportunities might be available to you. Also, look for inspiration outside your category or industry.\\n3. **Conduct a brand workshop** – this will help you dig up useful insights, and to develop a plan for where you want your brand to go and what you want it to portray.\\n\\nAfter completing these first few steps, you should have plenty of information to brief in your internal comms department or external agency on the job ahead of them. Of course, here at NWO we specialise in branding projects, so get in touch with us today to see how we can get involved.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `content` VALUES (17436,17673,1,'Building better brands','2021-05-18 03:20:56','2021-05-18 03:20:56','b5af44f5-cafc-4fbd-a55b-d5c5f2d1154f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'So, you’re thinking of rebranding? Or branding something new from scratch? Good for you – there’s nothing we love more than brands that go out of their way to portray themselves in an interesting and unique light.\n\nBut before you start scribbling down new logo ideas, there are a number of things that we think are worth considering. Firstly, and yes we know there’s a lot of info out there on this, but it’s important to remind yourself what exactly a ‘brand’ is.\n<h3><strong>Brand basics</strong></h3>\nThis is also important when speaking to an agency, but clarifying exactly what you’re after – either a new brand identity or a new brand – can be crucial in your planning, not to mention costs and timings. A ‘brand identity’ typically includes a logo and other graphical devices, along with fonts and colours. But this alone doesn’t make a brand.\n\nA ‘brand’ includes all of the above plus so many other elements, which help your customers form an opinion of your organisation. Things such as images, feelings, products, words, sounds, smells, events, people and places, can all make up a brand too.\n<h3><strong>Beginning the brand journey</strong></h3>\nWith the above definitions in mind, once you’ve clarified what you want to do with your brand, it’s time to think about where to start. Try these steps on for size:\n<ol>\n 	<li><strong> Conduct a brand audit</strong> – if you’ve currently got a brand, look at all the elements and see what’s working, and what isn’t. External consultants who aren’t so close to your brand can often give a fresh, unbiased perspective.</li>\n 	<li><strong> Do your research</strong> – look at competitors to see what their brands are like, and what opportunities might be available to you. Also, look for inspiration outside your category or industry.</li>\n 	<li><strong> Conduct a brand workshop</strong> – this will help you dig up useful insights, and to develop a plan for where you want your brand to go and what you want it to portray.</li>\n</ol>\nAfter completing these first few steps, you should have plenty of information to brief in your internal comms department or external agency on the job ahead of them. Of course, here at NWO we specialise in branding projects, so <a href=\"http://newwordorder.com.au/#contact\"><u>get in touch</u></a> with us today to see how we can get involved.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17437,17674,1,'Getting the most from motion','2021-05-18 03:20:56','2021-07-23 06:19:19','ce840858-ba3b-40d6-a958-6901ef591b71',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UzdiNWbjFp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Video can be a great way to present information in an engaging format, with very little input required from the viewer. No matter what topic you’re covering, there’s always a way to bring it to life in video.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"##### **More bang for your buck**\\n\\nThe thing is, when most people think about creating a video, they think of it being extremely expensive. While that may have been the case years ago, nowadays it can actually be a very cost-effective exercise – particularly thanks to animation.\\n\\nWhen time is of the essence, animated videos can often be created fairly quickly and give you great bang for your buck. They can really grab people’s attention too, as there’s so much you can do with them creatively – they’re only limited by your imagination!\\n\\n##### **Got some explaining to do?**\\n\\nOne type of video becoming more and more popular with organisations is the explainer video. Generally about 90 seconds in length, explainer videos are often animated and used to communicate a fairly complex topic in an easy-to-understand way.\\n\\nCheck out the explainer video on the decisioning.co site. As well as the site itself, we created the neat little video – it just shows how a well-written and executed explainer can communicate clearly and succinctly, all without a big budget.\\n\\n##### **Support and simplify**\\n\\nAnother way in which animated videos are being used is to provide guidance to customers, helping them navigate often tricky subject matter. A great example of this is the ‘Better electricity deals for small business’ suite of videos we created for the Department of Energy and Water Supply.\\n\\nThese were used on social media and really communicated the essence of the problem at hand, cutting information down into sound bites that could be easily understood by the audience. The use of fun little characters and infographics were great in getting our message across.\\n\\nTo learn more about our thoughts on video, [check out this blog article](/resources/making-the-most-of-video).\\n\\nTo chat about an upcoming video project, get in touch – we’d love to be involved in the process.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17438,17675,1,'Getting the most from motion','2021-05-18 03:20:56','2021-05-18 03:20:56','cc0cf8a0-72a1-4ffa-8226-842c6c364eb7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Video can be a great way to present information in an engaging format, with very little input required from the viewer. No matter what topic you’re covering, there’s always a way to bring it to life in video.\n<h3><strong>More bang for your buck</strong></h3>\nThe thing is, when most people think about creating a video, they think of it being extremely expensive. While that may have been the case years ago, nowadays it can actually be a very cost-effective exercise – particularly thanks to animation.\n\nWhen time is of the essence, animated videos can often be created fairly quickly and give you great bang for your buck. They can really grab people’s attention too, as there’s so much you can do with them creatively – they’re only limited by your imagination!\n<h3><strong>Got some explaining to do?</strong></h3>\nOne type of video becoming more and more popular with organisations is the explainer video. Generally about 90 seconds in length, explainer videos are often animated and used to communicate a fairly complex topic in an easy-to-understand way.\n\nCheck out the explainer video on the <a href=\"http://www.decisioning.co/\">decisioning.co</a> site. As well as the site itself, we created the neat little video – it just shows how a well-written and executed explainer can communicate clearly and succinctly, all without a big budget.\n<h3><strong>Support and simplify</strong></h3>\nAnother way in which animated videos are being used is to provide guidance to customers, helping them navigate often tricky subject matter. A great example of this is the <a href=\"http://newpictures.com.au/portfolio/better-electricity-deal-for-small-business/\">‘Better electricity deals for small business’ suite of videos</a> we created for the Department of Energy and Water Supply.\n\nThese were used on social media and really communicated the essence of the problem at hand, cutting information down into sound bites that could be easily understood by the audience. The use of fun little characters and infographics were great in getting our message across.\n\nTo learn more about our thoughts on video, check out this <a href=\"https://newwordorder.com.au/making-the-most-of-video/\"><u>blog article</u></a>.\n<p class=\"p1\"><span class=\"s1\">To chat about an upcoming video project, <a href=\"http://newwordorder.com.au/#contact\"><span class=\"s2\">get in touch</span></a> – we’d love to be involved in the process.</span></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17439,17676,1,'What is marketing automation?','2021-05-18 03:20:56','2021-07-23 06:19:19','780b0d5b-2a11-4808-af5e-863de50ba808',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4WoAgyFTvi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Marketing what? The word automation can sound like a coder’s dream and everyone else’s nightmare.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But the truth is that if your business has prospects and customers and communicates with them in any way, then you already have most of the pieces needed to play with marketing automation.\\n\\n**Matching pieces**\\n\\nYou see, marketing automation is actually both a business owner’s dream and a marketer’s dream. Why? Because it’s software that helps sales and marketing to come together in order to grow revenue. Most marketing automation software includes the following components:\\n\\n**CRM (customer relationship management)**\\n\\nThe software will include a built-in CRM for storing your prospects and customers’ data and/or it will integrate with other CRMs such as Salesforce, Pipedrive, Nimble or Zoho.\\n\\n**Campaigns**\\n\\nThese can include any type of lead-gen, lead-nurturing and sales-closing campaigns—not just email but as broad as social, online, trade shows, webinars, Google Adwords, blogs and so on. Basically, it’s anywhere where the call to action leads to someone filling out a form online or liking a page. Once again, marketing automation software will include some or all of these tools built-in and it will play well with other software you’re already using.\\n\\n**Analytics and reports**\\n\\nIn the same way that email marketing software such as Mailchimp and Campaign Monitor provides reports on open rates, clicks and unsubscribes, marketing automation software takes it a step further. You can run reports on all of your online and offline campaigns and track engagement with your website. Then you can combine these statistics with your sales data to measure ROI from the generation of a lead right through to the close of sale.\\n\\n**The kicker**\\n\\nAll of these things exist outside of marketing automation. What makes marketing automation so powerful is how it brings them all together. The software uses triggers and workflows to automate time-consuming sales and marketing processes such as scoring, segmenting leads based on fit and engagement, and matching content to leads’ interests and pain points.\\n\\nThe result is highly personalised marketing that uses tailored and dynamic content to nurture every lead as if it was your most important one—from first touchpoint right through to closing a sale and beyond.\\n\\nAsk us to run a workshop for your team\\nMost marketers we talk to know the need for marketing automation but don’t have time to research the best option for them.\\n\\nRight now, we’re running a limited number of free one-hour workshops to help your team to determine the right fit for your strategy, and the best options available on the market.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17440,17677,1,'What is marketing automation?','2021-05-18 03:20:56','2021-05-18 03:20:56','fd1f9350-0b28-4305-9d2b-1be5af8ceb9b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Marketing what? The word automation can sound like a coder’s dream and everyone else’s nightmare.\n\nBut the truth is that if your business has prospects and customers and communicates with them in any way, then you already have most of the pieces needed to play with marketing automation.\n<h2>Matching pieces</h2>\nYou see, marketing automation is actually both a business owner’s dream and a marketer’s dream. Why? Because it’s software that helps sales and marketing to come together in order to grow revenue. Most marketing automation software includes the following components:\n\n<strong>CRM</strong> (customer relationship management): The software will include a built-in CRM for storing your prospects and customers’ data and/or it will integrate with other CRMs such as Salesforce, Pipedrive, Nimble or Zoho.\n\n<strong>Campaigns: </strong>These can include any type of lead-gen, lead-nurturing and sales-closing campaigns—not just email but as broad as social, online, trade shows, webinars, Google Adwords, blogs and so on. Basically, it’s anywhere where the call to action leads to someone filling out a form online or liking a page. Once again, marketing automation software will include some or all of these tools built-in and it will play well with other software you’re already using.\n\n<strong>Analytics and reports: </strong>In the same way that email marketing software such as Mailchimp and Campaign Monitor provides reports on open rates, clicks and unsubscribes, marketing automation software takes it a step further. You can run reports on all of your online and offline campaigns and track engagement with your website. Then you can combine these statistics with your sales data to measure ROI from the generation of a lead right through to the close of sale.<strong> </strong>\n<h2>The kicker</h2>\nAll of these things exist outside of marketing automation. What makes marketing automation so powerful is how it brings them all together. The software uses triggers and workflows to automate time-consuming sales and marketing processes such as scoring, segmenting leads based on fit and engagement, and matching content to leads’ interests and pain points.\n\nThe result is highly personalised marketing that uses tailored and dynamic content to nurture every lead as if it was your most important one—from first touchpoint right through to closing a sale and beyond.\n<h2>Ask us to run a workshop for your team</h2>\nMost marketers we talk to know the need for marketing automation but don’t have time to research the best option for them.\n\nRight now, we’re running a limited number of free one-hour workshops to help your team to determine the right fit for your strategy, and the best options available on the market.\n<h3> </h3>\n<h3> </h3>\n<h3>Book a workshop</h3>\n\n\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17441,17678,1,'Simplifying the complex: Fifteen years of marketing schools','2021-05-18 03:20:56','2022-11-28 23:23:03','25a04117-7076-4f72-90e4-56bcb228d5be',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WAYo0QEnCs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"After 20 years of marketing—including 15 years working with schools across Queensland and New South Wales—I am steadfast in my belief that there is no marketing challenge as complex as that faced by schools.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"In what other industry would you find thousands of individual stakeholders—students, parents, teachers, alumni and more—all with do-or-die expectations?\\n\\nOr an environment that can, quite honestly, change the trajectory of children’s lives?\\n\\nThen you have the two very distinct markets—internal and external—often with very different needs that need to be met with minimal budgets.\\n\\nThe experience of school changed little for nearly a century but, in the past 20 years, it has evolved in such leaps and bounds that today’s parents struggle to recognise it.\\n\\nPhilosophically, there are few industries I can think of that have such a strong evidence base to guide practice—here I’m thinking of teaching and learning—yet the required outcome is often diametrically opposed to it. \\n\\nIt’s little wonder that I find the business of marketing schools endlessly fascinating.\\n\\nOnly this morning I was in another principal’s office, talking through these very complexities. In our conversation, we touched on what I’ve discovered over the years are three bedrock principles every school needs as their marketing foundation. They’re my way of transforming a little of the complex into the simple.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Esbo1iQq5g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"1. Work out what makes you unique\",\"plainText\":\"Marketing and enrolments teams live and die by their numbers. \\n\\nIt is endlessly tempting, then, to try to go wide in your appeal so that you create the biggest possible net. \\n\\nIn practice, though, it means no-one knows what you stand for. \\n\\nThe better alternative is to embrace what makes you unique and then market that hard. You’ll end up attracting families that are the right fit for you and work hard as your ambassadors. \\n\\nInternally, there’ll be great cohesion, too, because you’ll attract and retain great educators who get what you’re about and support it in their words and actions.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-v1FFRTuEFs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"2. Don’t be afraid to look like you’re unique\",\"plainText\":\"If you’re bored one day in your office, try this game. \\n\\nGet ads from three schools, and then block out their hats and uniforms. Can you still tell them apart? \\n\\nIt astounds me that we continue to use sterile, look-alike images—hey, here’s a girl in a lab coat with a test tube as proof that we promote girls in STEM!—that don’t reflect the day-to-day experience of what it is to learn at your school. \\n\\nCelebrate your uniqueness—and set yourself apart from your competitors—by choosing unique visual styles and photography.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cMg5IvARdG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"3. Now stay unique\",\"plainText\":\"Over time, teachers and leaders of schools get to know each other pretty well. \\n\\nPrincipals, in particular, know other schools like bookies know racehorses. The net result in marketing is that your great idea quickly becomes next year’s norm… and after a few years, what was edgy is simply outdated. \\n\\nWise schools invest in a middle ground here. \\n\\nThey start off strong and then review and refresh their brand every year or two. \\n\\nThat way, subtle tweaks don’t destabilise your internal audience but you stay fresh and relevant externally.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3XrIiJiL9w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Want to know more?\",\"plainText\":\"Suzanne advises schools on sustainable marketing strategy that helps them get the most from their internal resources. To chat, phone <a href=\\\"tel:07 3334 8340\\\">07 3334 8340</a> or email <a href=\\\"mailto:suzanne@newwordorder.com.au\\\">suzanne@newwordorder.com.au.</a>\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simplifying the complex: Fifteen years of marketing schools','After 20 years of marketing—including 15 years working with schools across Queensland and New South Wales—I am steadfast in my belief that there is no marketing challenge as complex as that faced by schools.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17442,17679,1,'Simplifying the complex: Fifteen years of marketing schools','2021-05-18 03:20:57','2021-05-18 03:20:57','cb315425-a1f7-4ecc-818f-08a740381f66',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<span>After 20 years of marketing—including 15 years working with schools across Queensland and New South Wales—I am steadfast in my belief that there is no marketing challenge as complex as that faced by schools.</span>\n\n<span>In what other industry would you find thousands of individual stakeholders—students, parents, teachers, alumni and more—all with do-or-die expectations?</span>\n\n<span>Or an environment that can, quite honestly, change the trajectory of children’s lives?</span>\n\n<span>Then you have the two very distinct markets—internal and external—often with very different needs that need to be met with minimal budgets.</span>\n\n<span>The experience of school changed little for nearly a century but, in the past 20 years, it has evolved in such leaps and bounds that today’s parents struggle to recognise it.</span>\n\n<span>Philosophically, there are few industries I can think of that have such a strong evidence base to guide practice—here I’m thinking of teaching and learning—yet the required outcome is often diametrically opposed to it. Looking forward to the arrival of ATAR, anyone?</span>\n\n<span>It’s little wonder that I find the business of marketing schools endlessly fascinating.</span>\n\n<span>Only this morning I was in another principal’s office, talking through these very complexities. In our conversation, we touched on what I’ve discovered over the years are three bedrock principles every school needs as their marketing foundation. They’re my way of transforming a little of the complex into the simple.</span>\n<h3>1. Work out what makes you unique</h3>\n<span>Marketing and enrolments teams live and die by their numbers. It is endlessly tempting, then, to try to go wide in your appeal so that you create the biggest possible net. In practice, though, it means no-one knows what you stand for. The better alternative is to embrace what makes you unique and then market that hard. You’ll end up attracting families that are the right fit for you and work hard as your ambassadors. Internally, there’ll be great cohesion, too, because you’ll attract and retain great educators who get what you’re about and support it in their words and actions.</span>\n<h3><span>2. Don’t be afraid to like you’re unique</span></h3>\n<span>If you’re bored one day in your office, try this game. Get ads from three schools, and then block out their hats and uniforms. Can you still tell them apart? It astounds me that we continue to use sterile, look-alike images—hey, here’s a girl in a lab coat with a test tube as proof that we promote girls in STEM!—that don’t reflect the day-to-day experience of what it is to learn at your school. Celebrate your uniqueness—and set yourself apart from your competitors—by choosing unique visual styles and photography.</span>\n<h3>3. Now stay unique</h3>\n<span>Over time, teachers and leaders of schools get to know each other pretty well. Principals, in particular, know other schools like bookies know racehorses. The net result in marketing is that your great idea quickly becomes next year’s norm… and after a few years, what was edgy is simply outdated. Wise schools invest in a middle ground here. They start off strong and then review and refresh their brand every year or two. That way, subtle tweaks don’t destabilise your internal audience but you stay fresh and relevant externally.</span>\n\n \n\n<span>--</span>\n\n \n<h3><span>Want to know more?</span></h3>\n<span>Suzanne advises schools on sustainable marketing strategy that helps them get the most from their internal resources. To chat, phone 07 3334 8340 or <a href=\"mailto:suzanne@newwordorder.com.au\">email</a>.</span>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17443,17680,1,'Top 20 tips for SEO','2021-05-18 03:20:57','2021-11-09 01:59:29','6a204826-8c05-4639-9c48-fbd408ac3d30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-P9HDvjQfFI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"GOOD SEO STARTS WITH A BIT OF DIY.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Sure, there are loads of experts and agencies out there that specialise in the field, and many of them do a great job.\\n\\nBut there’s actually plenty you can do yourself before you even need to look for an external supplier to help with your SEO.\\n\\nTo get you started on your next SEO DIY project, we’ve put together a top 20 checklist.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"1. Do your research\",\"text\":\"Identify key search terms, words and phrases, and check out competitors’ sites.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"2. Work out where you are now\",\"text\":\"As soon as possible, keep a regular record of where your site currently ranks in search results, using various words, phrases and questions.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"3. Work out where you want to be\",\"text\":\"Define your goals early on so you can measure your progress and adjust your strategy as you go along.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"4. Make your content relevant\",\"text\":\"Search engines provide the most relevant results to a searcher’s query, so write content based on what people might search for.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"5. Improve the quality of your content\",\"text\":\"Publish helpful, useful articles, videos and other types of media that people will want to engage with.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"6. Think about user experience\",\"text\":\"Make sure your site is easy to navigate, with plenty of relevant internal links to keep users on your page for longer.\"}},\"new7\":{\"type\":\"6\",\"fields\":{\"heading\":\"7. Ensure your site is responsive\",\"text\":\"Is your website designed to resize for viewing on desktop, tablet and mobile devices? It should be.\"}},\"new8\":{\"type\":\"6\",\"fields\":{\"heading\":\"8. Include plenty of internal links\",\"text\":\"This helps pushes traffic around your site, building higher ‘trust signals’ for Google, and gives your audience more to read.\"}},\"new9\":{\"type\":\"6\",\"fields\":{\"heading\":\"9. Write meta descriptions\",\"text\":\"This short paragraph of text under your page’s URL in search results can really improve the chance of someone clicking on it.\"}},\"new10\":{\"type\":\"6\",\"fields\":{\"heading\":\"10. Include title tags\",\"text\":\"These few keywords describing the page and your brand name tell visitors and search engines what your site is about in the most succinct way possible.\"}},\"new11\":{\"type\":\"6\",\"fields\":{\"heading\":\"11. Tag your images\",\"text\":\"Search engines cannot ‘see’ images but they can ‘read’, so it’s important to describe any pictures you upload to your site.\"}},\"new12\":{\"type\":\"6\",\"fields\":{\"heading\":\"12. Create evergreen content\",\"text\":\"More thoughtful and practical advice-based articles can create better results over the long term. Top 20 list, anyone?\"}},\"new13\":{\"type\":\"6\",\"fields\":{\"heading\":\"13. Consider your domain name\",\"text\":\"Having a ‘keyword-rich’ domain name can improve ranking but can also lead to closer scrutiny by search engines.\"}},\"new14\":{\"type\":\"6\",\"fields\":{\"heading\":\"14. Think about headlines\",\"text\":\"Make headlines as snappy, attractive and descriptive as possible, and stay away from clickbait.\"}},\"new15\":{\"type\":\"6\",\"fields\":{\"heading\":\"15. Turn on comments\",\"text\":\"This helps generate a community of engaged users and, whatever their opinion of your content, you’ll know it’s being read.\"}},\"new16\":{\"type\":\"6\",\"fields\":{\"heading\":\"16. Go social\",\"text\":\"By using social media channels as a genuine way to interact with customers, you can help generate interest in your brand and drive traffic to your site.\"}},\"new17\":{\"type\":\"6\",\"fields\":{\"heading\":\"17. Watch your on-site advertising\",\"text\":\"Intrusive ads can destroy the pleasure of viewing your content and also slow your site down (not good for SEO).\"}},\"new18\":{\"type\":\"6\",\"fields\":{\"heading\":\"18. Avoid keyword stuffing\",\"text\":\"Some search engines will actually penalise you for obviously overusing certain keywords on your pages.\"}},\"new19\":{\"type\":\"6\",\"fields\":{\"heading\":\"19. Be aware of duplicated content\",\"text\":\"If two sites publish identical content, search engines will only index one of those pages.\"}},\"new20\":{\"type\":\"6\",\"fields\":{\"heading\":\"20. Don’t hide links and text\",\"text\":\"Doing things like hiding white keyword-stuffed text on a white background or hiding a link in a full stop is likely to be punished by search engines.\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Follow these tips and you’ll be well on your way up the rankings in no time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Top 20 tips for SEO','To get you started on your next SEO DIY project, we’ve put together a top 20 checklist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17444,17681,1,'Top 20 tips for SEO','2021-05-18 03:20:57','2021-05-18 03:20:57','f94e5d60-a023-4453-9c75-9ea5b10d8f4e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Good SEO starts with a bit of DIY.\n\nSure, there are loads of experts and agencies out there that specialise in the field, and many of them do a great job.\n\nBut there’s actually plenty you can do yourself before you even need to look for an external supplier to help with your SEO.\n<h2>Get your SEO checklist</h2>\nTo get you started on your next SEO DIY project, we’ve put together a top 20 checklist.\n<ol>\n 	<li><strong>Do your research</strong>—Identify key search terms, words and phrases, and check out competitors’ sites.</li>\n 	<li><strong>Work out where you are now</strong>—As soon as possible, keep a regular record of where your site currently ranks in search results, using various words, phrases and questions.</li>\n 	<li><strong>Work out where you want to be</strong>—Define your goals early on so you can measure your progress and adjust your strategy as you go along.</li>\n 	<li><strong>Make your content relevant</strong>—Search engines provide the most relevant results to a searcher’s query, so write content based on what people might search for.</li>\n 	<li><strong>Improve the quality of your content</strong>—Publish helpful, useful articles, videos and other types of media that people will want to engage with.</li>\n 	<li><strong>Think about user experience</strong>—Make sure your site is easy to navigate, with plenty of relevant internal links to keep users on your page for longer.</li>\n 	<li><strong>Ensure your site is responsive</strong>—Is your website designed to resize for viewing on desktop, tablet and mobile devices? It should be.</li>\n 	<li><strong>Include plenty of internal links</strong>—This helps pushes traffic around your site, building higher ‘trust signals’ for Google, and gives your audience more to read.</li>\n 	<li><strong>Write meta descriptions</strong>—This short paragraph of text under your page’s URL in search results can really improve the chance of someone clicking on it.</li>\n 	<li><strong>Include title tags</strong>—These few key words describing the page and your brand name tell visitors and search engines what your site is about in the most succinct way possible.</li>\n 	<li><strong>Tag your images</strong>—Search engines cannot ‘see’ images but they can ‘read’, so it’s important to describe any pictures you upload to your site.</li>\n 	<li><strong>Create evergreen content</strong>—More thoughtful and practical advice-based articles can create better results over the long term. Top 20 list, anyone?</li>\n 	<li><strong>Consider your domain name</strong>—Having a ‘keyword-rich’ domain name can improve ranking but can also lead to closer scrutiny by search engines.</li>\n 	<li><strong>Think about headlines</strong>—Make headlines as snappy, attractive and descriptive as possible, and stay away from clickbait.</li>\n 	<li><strong>Turn on comments</strong>—This helps generate a community of engaged users and, whatever their opinion of your content, you’ll know it’s being read.</li>\n 	<li><strong>Go social</strong>—By using social media channels as a genuine way to interact with customers, you can help generate interest in your brand and drive traffic to your site.</li>\n 	<li><strong>Watch your on-site advertising</strong>—Intrusive ads can destroy the pleasure of viewing your content and also slow your site down (not good for SEO).</li>\n 	<li><strong>Avoid keyword stuffing</strong>—Some search engines will actually penalise you for obviously overusing certain keywords on your pages.</li>\n 	<li><strong>Be aware of duplicated content</strong>—If two sites publish identical content, search engines will only index one of those pages.</li>\n 	<li><strong>Don’t hide links and text</strong>—Doing things like hiding white keyword-stuffed text on a white background or hiding a link in a full stop is likely to be punished by search engines.</li>\n</ol>\nFollow these tips and you’ll be well on your way up the rankings in no time!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17445,17682,1,'Want to understand your brand? Ask your stakeholders.','2021-05-18 03:20:57','2022-06-30 03:06:50','040e927d-41b2-43e6-9d14-751d2d376b10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pb6yRuUQJr\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":[],\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BpDlpLY30k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Whether they are inside, outside, removed or closely involved, stakeholders have the insight businesses need for long-term growth and sustainability.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"If they are a stakeholder, they have a connection with you.\\n\\nAnd like any other relationship, they need to know their connection, time and opinions are valued.\\n\\nIt often takes an open mind to find what works for you and the stakeholder.\\n\\nFinding this place of mutual benefit can lead to business growth and longevity.\\n\\nWe’ve broken down our approach to nurturing stakeholder relationships for meaningful engagement.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-023wqZnDwH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Your stakeholder is anyone who can be affected by your business.\",\"plainText\":\"Once you really understand this, you’ll start to notice the cycle of impact between the stakeholder and your business. And this is partly why we begin to engage with stakeholders—to understand how different groups are responding, reacting or behaving.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZC7YPx4oyi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"But who are they, really?\",\"plainText\":\"Now, go deeper to really understand the nuances of your stakeholder groups.\\n\\nYour engagement plan should be detailed enough to allow for different levels of accessibility, and demographic and cultural considerations. The better you nuance, the greater the feeling of respect and care you’ll engender.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4fsgssb3iu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"What do I need to achieve here?\",\"plainText\":\"There are varying degrees of impact that stakeholders can have on your organisation across the common types of engagement—inform, consult, involve, collaborate and empower. Every impact is a win for you.\\n\\nBy inviting stakeholders to provide advice and guidance, you are showing interest and genuine regard for their opinions.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-zK1GdW2Vy7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Let’s talk\",\"plainText\":\"A healthy and productive conversation is two-way. We pursue positive and productive conversations with stakeholders because we need to understand stakeholder perspectives, and we need to hear it from them.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wWO0nagqvx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bye for now\",\"plainText\":\"The conversation will close, but the relationship isn’t over. Stakeholders have given their time, effort and reflections. It’s your turn to respond with accuracy, timeliness and balance.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8YdtZLjoMO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The truth is, these conversations take patience, a steadfast commitment to values, sometimes sacrifice, and always an open mind.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"At NWO, we care about stakeholder engagement because we regularly witness the impact it has on the health of businesses and organisations.\\n\\nIs it important to you?\\n\\nTalk to us about stakeholder engagement today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Want to understand your brand? Ask your stakeholders.','Whether they are inside, outside, removed or closely involved—stakeholders have the insight businesses need for long-term growth and sustainability.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17446,17683,1,'How to really consult your stakeholders','2021-05-18 03:20:57','2021-05-18 03:20:57','dce4c323-22e9-417a-8ea7-c18dd116b503',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,' \n<p class=\"p1\">Whether they are inside, outside, removed or closely involved—stakeholders have the insight businesses need for long-term growth and sustainability.</p>\n<p class=\"p1\">If they are a stakeholder, they have a connection with you.</p>\n<p class=\"p1\">And like any other relationship, they need to know their connection, time and opinions are valued.</p>\n<p class=\"p1\">It often takes an open mind to find what works for you and the stakeholder.</p>\n<p class=\"p1\">Finding this place of mutual benefit can lead to business growth and longevity.</p>\n<p class=\"p1\">We’ve broken down our approach to nurturing stakeholder relationships for meaningful engagement.</p>\n\n<h2>Your stakeholder is anyone who can be impacted by your business.</h2>\n<p class=\"p1\">Once you really understand this, you’ll start to notice the cycle of impact between the stakeholder and your business. And, this is partly why we begin to engage with stakeholders—to understand how different groups are responding, reacting or behaving.</p>\n\n<h3>But who are they, really?</h3>\n<p class=\"p1\">Now, go deeper to really understand the nuances of your stakeholder groups.</p>\nYour engagement plan should be detailed enough to allow for different levels of accessibility, and demographic and cultural considerations. The better you nuance, the greater the feeling of respect and care you’ll engender.\n<h3>What do I need to achieve here?</h3>\n<p class=\"p1\">There are varying degrees of impact across the common types of engagement—inform, consult, involve, collaborate and empower. Every impact is a win for you.</p>\n<p class=\"p1\">By inviting stakeholders to provide advice and guidance, you are showing interest and genuine regard for their opinions.</p>\n\n<h3>Let’s talk</h3>\n<p class=\"p1\">A healthy and productive conversation is two-way. We pursue positive and productive conversations with stakeholders because we need to understand stakeholder perspectives, and we need to hear it from them.</p>\n\n<h3>Bye for now</h3>\n<p class=\"p1\">The conversation will close, but the relationship isn’t over. Stakeholders have given their time, effort and reflections. It’s your turn to respond with accuracy, timeliness and balance.</p>\n<p class=\"p2\">The truth is, these conversations take patience, a steadfast commitment to values, sometimes sacrifice, and always an open mind.</p>\n<p class=\"p2\">At NWO, we care about stakeholder engagement because we regularly witness the impact it has on the health of businesses and organisations.</p>\n<p class=\"p2\">Is it important to you?</p>\n<p class=\"p2\"><a href=\"http://newwordorder.com.au#contact\">Talk to us about stakeholder engagement today</a>.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17447,17684,1,'The building blocks of branding','2021-05-18 03:20:57','2022-08-08 06:59:41','f58ea828-2af5-4b9e-bdc3-2e393bff43d7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UBcW4IgaI5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Through 20 years of branding experience, we’ve come to understand stakeholder engagement is essential for a brand to have cut-through.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’ve engaged with our clients’ stakeholders for many years and in many ways—ranging from formal, formative market research through to in-depth focus groups, workshops, community forums, brand satisfaction surveys and phone interviews.\\n\\nNo matter the method, what really counts is that we capture how people relate to your brand. That relationship leads to relevance and then the ultimate goal: resonance.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qaQGFaRj3d\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Relationship\",\"plainText\":\"Every great brand is built on relationship.\\n\\nWhen you form healthy relationships with stakeholders, you open yourself up to a range of opinions. Generally, feedback gets more constructive as the relationship grows healthier.\\n\\nIf you’re the brand manager, it can feel a bit like tough love at first—but it does get easier.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IDzmWzpUSE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Relevance\",\"plainText\":\"So much more than a logo, brands are heavy with meaning for stakeholders. And so if the environment changes but your brand doesn’t, the meaning is lost.\\n\\nA lot of the stakeholder feedback we hear about brands is that they’re outdated or lack appeal. Without relevance, your stakeholders no longer feel the love.\\n\\nConstantly retune yourself to your stakeholders and you’ll keep fulfilling their needs.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8Wdlr8QGTN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Resonance\",\"plainText\":\"Resonance is where understanding meets impact.\\n\\nA brand rich with resonance is the holy grail of marketing and, true to legend, few reach it.\\n\\nThat’s because resonance means your brand is a perfect fit for your stakeholders’ environment, pain points, wants and emotional connection.\\n\\nResonance engenders attention and respect, and turns want to need.\\n\\nAnd when stakeholders can’t live without your brand? Happy days.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EdELli6glE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The three Rs start here\",\"plainText\":\"Whether you’re looking to name and brand or rename and rebrand, your brand journey starts with understanding your stakeholders.\\n\\nTalk to us about how to take your first steps.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The building blocks of branding','Through 20 years of branding experience, we’ve come to understand stakeholder engagement is essential for a brand to have cut-through.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17448,17685,1,'The building blocks of branding','2021-05-18 03:20:57','2021-05-18 03:20:57','2de02ab6-7e80-4d5f-abcb-5bdea188e1e9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p class=\"p1\">Through 20 years of branding experience, we’ve come to understand stakeholder engagement is essential for a brand to have cut-through.</p>\n<p class=\"p1\">We’ve engaged with our clients’ stakeholders for many years and in many ways—ranging from formal, formative market research through to in-depth focus groups, workshops, community forums, brand satisfaction surveys and phone interviews.</p>\n<p class=\"p1\">No matter the method, what really counts is that we capture how people relate to your brand. That relationship leads to relevance and then the ultimate goal: resonance.</p>\n\n<h2 class=\"p1\">Relationship</h2>\n<p class=\"p1\">Every great brand is built on relationship.</p>\n<p class=\"p1\">When you form healthy relationships with stakeholders, you open yourself up to a range of opinions. Generally, feedback gets more constructive as the relationship grows healthier.</p>\n<p class=\"p1\">If you’re the brand manager, it can feel a bit like tough love at first—but it does get easier.</p>\n\n<h2 class=\"p1\">Relevance</h2>\n<p class=\"p1\">So much more than a logo, brands are heavy with meaning for stakeholders. And so if the environment changes but your brand doesn’t, the meaning is lost.</p>\n<p class=\"p1\">A lot of the stakeholder feedback we hear about brands is that they’re outdated or lack appeal. Without relevance, your stakeholders no longer feel the love.</p>\n<p class=\"p1\">Constantly retune yourself to your stakeholders and you’ll keep fulfilling their needs.</p>\n\n<h2 class=\"p1\">Resonance</h2>\n<p class=\"p1\">Resonance is where understanding meets impact.</p>\n<p class=\"p1\">A brand rich with resonance is the holy grail of marketing and, true to legend, few reach it.</p>\n<p class=\"p1\">That’s because resonance means your brand is a perfect fit for your stakeholders’ environment, pain points, wants and emotional connection.</p>\n<p class=\"p1\">Resonance engenders attention and respect, and turns want to need.</p>\n<p class=\"p1\">And when stakeholders can’t live without your brand? Happy days.</p>\n\n<h2 class=\"p1\">The 3Rs start here</h2>\n<p class=\"p1\">Whether you’re looking to name and brand or rename and rebrand, your brand journey starts with understanding your stakeholders.</p>\n<p class=\"p1\"><a href=\"http://newwordorder.com.au#contact\"><span class=\"s1\">Talk to us</span></a> about how to take your first steps.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17449,17686,1,'Seven mistakes people make building websites','2021-05-18 03:20:57','2022-05-30 01:18:46','1c503a4e-6c24-49ab-abe5-a2e48a37abc6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-anLTeFZY0U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Now is the moment.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The advertising you’ve done, the marketing budget you’ve spent, the countless planning meetings your team has attended—all that time and money you’ve invested has driven a potential customer to your website.\\n\\nAfter months—maybe years—of effort, your potential customer will make their decision in seconds.\\n\\nThey may love what they see and continue to be interested. Or they may leave, with their memory of you going up in smoke and your investment with it.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EfutEvAS20\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"That’s why it’s so important to build an effective website.\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZPpIywfo5M\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Framing a website to contain everything you need is challenging. Some websites become too word-heavy, while others lack structure and narrative.\\n\\nGetting your website right from the beginning can save you a lot of pain in the long run.\\n\\nHere are our tips for tackling website mistakes.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SUHWHfibhh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"1. Unacknowledged expectations\",\"plainText\":\"What do you expect your website to do for you? You want this investment to count, so be informed, decide what you need and be intentional with your allocated budget.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kEhIZbV4lw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There are only two options—either start with careful planning and consultation and spend a realistic budget, or jump in with assumptions … and experience scope-creep, frustration and the need to pour more money in later. \\n\\nYour time and money (and sanity) are too valuable to waste on option two. So, choose wisely.\\n\\nIt’s also important to understand the purpose of your website. A website for a website’s sake helps no-one. Your business is unique so your website should be, too. \\n\\nMake it crystal clear—state who you are, what you do and what you promise your customers. \\n\\nSet yourself up for success by providing your developer with a clear website purpose, an informed plan and a predetermined budget.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AvlLtsTA5v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"2. A guess is no good\",\"plainText\":\"Analytics, metrics or key performance indicators (KPIs)—they’re all clever ways to study the website user journey.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KbVtpoSNTv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"What do you need your website to achieve? This will depend on what kind of product or service you offer and the kind of experience you want to create for the user. \\n\\nLay out your objectives and match them with KPIs.\\n\\nThere are plenty of ways to get insight into your website. Consider bounce rates, session duration or pages per session metrics. \\n\\nOr you could sharpen your content strategy by watching goal conversion rates of passive to active website users. \\n\\nUnderstanding your metrics and the goals you want to achieve will also help you to understand how your website interacts with its digital ecosystem.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p5FEdYJwJA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"3. It’s not for you\",\"plainText\":\"It might be about you, but the website isn’t for you.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VInDUCQqbf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Optimising your website starts with learning what your users are responding well to. How are they getting to your website? What kind of content are they reading? When do they read it? How long are they staying?\\n\\nBy understanding your metrics you can shape a truly effective website experience for your customers. It’s all in the detail—from content creation to search engine optimisation.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-elwxPOwb2f\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"4. Information overload\",\"plainText\":\"Your website is where your potential customers will go to check your credibility.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-07RQSQ8ts5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Credibility is about trust. One way to build trust is to position yourself and your organisation as experts. However, credibility isn’t just about what you know—it’s about who you are. \\n\\nInclude stories and testimonials about you and your organisation to avoid information overload. \\n\\nThen, potential customers will leave your website satisfied that you can be trusted ... and they\'re one step closer to doing business with you.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4aZLU4d7lj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"5. Losing the user\",\"plainText\":\"Many people complain about feeling lost on websites.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5Up8K6KfhA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The customer journey should be clear. If the information on your website is simple and structured, you can guide visitors on the path you’d like them to take. \\n\\nUse tabs and sub-pages for different categories, and make it logical. For best results, spend time studying user movements and running trials and tests. \\n\\nOver time your predictions will become more accurate as you get to know your audience.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-J6N6kO7pK4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"6. Wasted words\",\"plainText\":\"Capture your customers quickly.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gvCeMnMMmI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There are some hallmarks we use when writing web copy. Here are a few of them:\\n\\n- short, effective sentences (say the same information with less)\\n- sub-headings and headings containing keywords\\n- everyday words the average reader can easily understand (plain English)\\n- direct language\\n- consistent, logical structuring of information.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9cFms9o1W6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"7. Don\'t be unfriendly\",\"plainText\":\"How does your website display on mobile?\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WNBSOqBQRA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The majority of the time, someone will be visiting your website on their phone (68.1% in 2020 to be exact). That means when it comes to your website design, it\'s not enough that your website simply works on mobile. It needs to be designed with mobile in mind **first**.\\n\\nIf your website doesn\'t look amazing and function seamlessly on mobile, your customers won\'t go looking for their nearest desktop computer...  they\'ll look for another website. \\n\\nWhat kind of service do you give your customers in person? Ensure they experience the same quality on your website, and more importantly, on their phone.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Seven mistakes people make building websites','The advertising you’ve done, the marketing budget you’ve spent, the countless planning meetings your team has attended—all that time and money you’ve invested has driven a potential customer to your website.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17450,17687,1,'Seven mistakes people make building websites','2021-05-18 03:20:57','2021-05-18 03:20:57','773c727d-cfa5-42fe-92a3-d03e06cca77e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p>Open your website, the window to your business. What do you see?</p>\n<p>The advertising you’ve done, the marketing budget you’ve spent, the countless planning meetings your team has attended—all that time and money you’ve invested has driven a potential customer to your website.</p>\n<p>Now is the moment.</p>\n<p>After months—maybe years—of effort, your potential customer will make their decision in seconds.</p>\n<p>They may love what they see and continue to be interested. Or they may leave, with their memory of you going up in smoke and your investment with it.</p>\n<p><em>That’s</em> why it’s so important to build an effective website.</p>\n<p>Framing a website to contain everything you need is challenging. Some websites become too word-heavy, while others lack structure and narrative.</p>\n<p>Getting your website right from the beginning can save you a lot of pain in the long run.</p>\n<p>Here\'s our tips to tackling website mistakes.</p>\n<h2><strong>1. Unacknowledged expectations</strong></h2>\n<p>What do you expect your website to do for you? You want this investment to count, so be informed, decide what you need and be intentional with your allocated budget. There are only two options—either start with careful planning and consultation and spend a realistic budget, or jump in with assumptions … and experience scope-creep, frustration and the need to pour more money in later. Your time and money (and sanity) are too valuable to waste on option two. So, choose wisely.</p>\n<p>It’s also important to understand the purpose of your website. A website for a website’s sake helps no-one. Your business is unique so your website should be, too. Make it crystal clear—state who you are, what you do and what you promise your customers. Set yourself up for success by providing your developer with a clear website purpose, an informed plan and a predetermined budget.<strong> </strong></p>\n<h2><strong>2. A guess is no good </strong></h2>\n<p>Analytics, metrics or key performance indicators (KPIs)—they’re all clever ways to study the website user journey. What do you need your website to achieve? This will depend on what kind of product or service you offer and the kind of experience you want to create for the user. Lay out your objectives and match them with KPIs.</p>\n<p>There are plenty of ways to get insight into your website. Consider bounce rates, session duration or pages per session metrics. Or you could sharpen your content strategy by watching goal conversion rates of passive to active website users. Understanding your metrics and the goals you want to achieve will also help you to understand how your website interacts with its digital ecosystem.</p>\n<h2><strong>3. It’s not for you</strong></h2>\n<p>It might be <em>about</em> you, but the website isn’t <em>for</em> you. Optimising your website starts with learning what your users are responding well to. How are they getting to your website? What kind of content are they reading? When do they read it? How long are they staying?</p>\n<p>By understanding your metrics you can shape a truly effective website experience for your customers. It’s all in the detail—from content creation to search engine optimisation (we have some helpful tips <a href=\"http://newwordorder.com.au/top-20-tips-seo/\">here</a>).</p>\n<h2><strong>4. Information overload</strong></h2>\n<p>Your website is where your potential customers will go to check your credibility. Credibility is about trust. One way to build trust is to position yourself and your organisation as experts. However, credibility isn’t just about what you know—it’s about who you are. Include stories and testimonials about you and your organisation to avoid information overload. Then, potential customers will leave your website satisfied that you can be trusted ... and they\'re one step closer to doing business with you.</p>\n<h2><strong>5. Losing the user</strong></h2>\n<p>Many people complain about feeling lost on websites. The customer journey should be clear. If the information on your website is simple and structured, you can guide visitors on the path you’d like them to take. Use tabs and sub-pages for different categories, and make it logical. For best results, spend time studying user movements and running trials and tests. Over time your predictions will become more accurate as you get to know your audience.</p>\n<h2><strong>6. Wasted words</strong></h2>\n<p>Capture your customers quickly. As we’ve previously discussed in our <a href=\"http://newwordorder.com.au/writing-for-readable-web/\">Writing for (readable) web</a> article, there are some hallmarks we use when writing web copy for our clients. Here are a few of them:</p>\n<ul>\n<li>short, effective sentences (say the same information with less)</li>\n<li>sub-headings and headings containing keywords</li>\n<li>everyday words the average reader can easily understand (plain English)</li>\n<li>direct language</li>\n<li>consistent, logical structuring of information.</li>\n</ul>\n<h2><strong>7. Don’t be unfriendly</strong></h2>\n<p>How does your website display on mobile devices and tablets? Due to the growth in user visits from non-desktop devices, it’s now safe to say that an unresponsive website—regardless of your industry and demographic—will cost you customers and revenue. When your website isn’t responsive, your customers won’t look for the closest desktop computer ... they’ll look for another website. Instead, make your website as friendly as possible to give your customers the same quality of experience online that they experience offline.</p>\n<p>Looking for inspiration? Here are some recent websites we’ve designed and built.</p>\n<p><a href=\"http://newwordorder.com.au/project/pursuit-minerals/\">Pursuit Minerals</a></p>\n<p><a href=\"http://newwordorder.com.au/project/13family/\">13family</a></p>\n<p><a href=\"http://newwordorder.com.au/project/physiotas/\">Physiotas</a></p>\n<p><a href=\"http://newwordorder.com.au/project/charters-towers/\">School of Distance Education, Charters Towers</a></p>\n\n\n\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17451,17688,1,'Pretty or powerful? And can you have it all?','2021-05-18 03:20:58','2022-05-30 01:18:33','580df5d3-686b-4148-8b56-bc4ed2efdc21',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UxDAMYmx0G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Being a commercial creative means someone is hoping, expecting and paying for a result.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"But just because something is creative in its execution doesn’t mean it’s going to be effective in achieving its goal.\\n\\nHere are five pitfalls to avoid when procuring creative services:\\n\\n1. Hiring a single creative, like a designer, to be a whole creative team. Your supplier will end up working in one strength and many weaknesses.\\n2. Procuring from a supplier who can use design software but isn’t a designer. The work will miss the mark despite looking okay.\\n3. Working with a graphic designer who isn’t skilled in the type of design you need (like brand design). You’ll get a pretty logo lacking in brand story and meaning.\\n4. Jumping straight into design without a strategy. You’ll receive design work that’s lovely, even beautiful… but not strategic.\\n5. Failing to define what success looks like. Your supplier’s work will lack purpose. Instead, make sure you have a clear goal that measures the biggest outcome of all: return on investment.\\n\\nSo yes, creative work can be both pretty and powerful. And you can have it all… if you invest in a team of strategically focused creatives.\\n\\nCreative agencies cost more but are teams for a reason. **We\'re much more powerful together than on our own.**\\n\\nJust like a hand of aces versus a single 3.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Pretty or powerful? And can you have it all?','Being a commercial creative means someone is hoping, expecting and paying for a result.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17452,17689,1,'Pretty or powerful? And can you have it all?','2021-05-18 03:20:58','2021-05-18 03:20:58','c667bcc6-407e-4412-a5cf-ff58fc9d6833',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,' \n\nBeing a commercial creative means someone is hoping, expecting and paying for a result.\n\nBut just because something is creative in its execution doesn’t mean it’s going to be effective in achieving its goal.\n\nHere are five pitfalls to avoid when procuring creative services:\n<ol>\n 	<li>Hiring a single creative, like a designer, to be a whole creative team. Your supplier will end up working in one strength and many weaknesses.</li>\n 	<li>Procuring from a supplier who can use design software but isn’t a designer. The work will miss the mark despite looking okay.</li>\n 	<li>Working with a graphic designer who isn’t skilled in the type of design you need (like brand design). You’ll get a pretty logo lacking in brand story and meaning.</li>\n 	<li>Jumping straight into design without a strategy. You’ll receive design work that’s lovely, even beautiful… but not strategic.</li>\n 	<li>Failing to define what success looks like. Your supplier’s work will lack purpose. Instead, make sure you have a clear goal that measures the biggest outcome of all: return on investment.</li>\n</ol>\nSo yes, creative work can be both pretty and powerful. And you can have it all… if you invest in a team of strategically focused creatives.\n\nCreative agencies cost more but are teams for a reason. We\'re much more powerful together than on our own.\n\nJust like a hand of aces vs a single 3.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17453,17690,1,'Why you need a six-month comms strategy for your website','2021-05-18 03:20:58','2022-05-30 01:18:23','c1fc6be4-ad29-4de8-a5b6-509280919eb0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AgEbVkr4de\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"YOU KNOW THE FEELING: AN AD PROMISE DRAWS YOU IN, YOU CLICK THROUGH TO THE WEBSITE AND YOU’RE IMPRESSED BECAUSE IT LOOKS SUPER SLICK.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Then you actually read it. And now you’re disappointed because it doesn’t actually say anything other than the surface detail of a business.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QesBwreMAq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"These websites are so common they’ve earned the term ‘brochure’ website. They look great, but that’s it.\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-b9aMnjAcJ0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We see it all the time and think it’s such a shame. Why? Because a website can be so. much. more.\\n\\nHow can your website escape the dreaded brochure effect? In short, don’t set and forget.\\n\\nGood websites move, breathe and live—just like your business does.\\n\\nEveryone knows it’s good practice to regularly update your website messaging and functionality. But you need to actually get around to doing it and—more importantly—have a reason for making a change.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3YeCOos4iz\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"So, what’s your strategy?\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V4Ur8T6jd4\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A website communication and engagement strategy has so many benefits. But the biggest one by far is SEO.\\n\\nBy biggest we don’t mean the most confusing or time-consuming. It simply boils down to content. Fresh content tells Google: This is who I am! This is what I do! See me! Hear me!\\n\\nGoogle’s algorithms are super clever because they serve up the sort of content people want. But it means Google can only give people the content they want if it knows about your business and what you’re offering.\\n\\nOf course, there are some technical aspects to consider. But your best SEO strategy is a long-term communications plan.\\n\\nDo you know what the next six months for your website content looks like? What can you offer your customers other than opening hours and where you’re located?\\n\\nBy developing a digital communications strategy, your website gets updated regularly, which helps Google share your message with the right people at the right time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5XBczMM2nF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Potential customers will find you, engage with you and trust you enough to get in touch.\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W1NCV9CxoK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"You have so many options for interesting content. It could be a thought-leadership piece, event, media release, whitepaper, testimonial—the list can go on.\\n\\nWe have a huge amount of communications tools and angles we can develop to bolster your web presence.\\n\\nGoogle also loves a fast, responsive website. Optimising your website by using the latest version of your content management system will ensure your site is running smoothly and as fast as it can.\\n\\nLikewise, this will make your site more secure and help prevent security breaches (particularly important if you use WordPress).\\n\\nWe also offer long-term website maintenance plans. These include detailed server monitoring and ensuring your CMS and plugins are up-to-date.\\n\\nFor more critical sites, we offer zero downtime code-update deployments.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-v9RKLjPOWn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Talk to us about a long-term strategy for your website so it can be more than just another ‘brochure site’.\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Why you need a six-month comms strategy for your website','Everyone knows it’s good practice to regularly update your website messaging and functionality. But you need to actually get around to doing it and—more importantly—have a reason for making a change.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17454,17691,1,'Why you need a six-month comms strategy for your website','2021-05-18 03:20:58','2021-05-18 03:20:58','436cba68-1c93-48f4-9daa-18afd6d7d07b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17455,17692,1,'Break away from the same-same with custom illustration','2021-05-18 03:20:58','2022-10-25 22:47:48','a3b72d72-b385-4c2e-a39b-9a104feaf1fe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tiYExhhMPf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The most important thing for a brand is to stand out from the competition.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Too often, companies don\'t understand their brand well enough to know its unique personality and look. \\n\\nAs a result, they use stock imagery, and in doing so, immediately dilute the brand and its message. \\n\\nThis is where custom illustration can play a critical role in making a brand stand out from the pack.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZOmCf7hZyl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"There’s nothing more special than something made just for you.\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cezN1PdcHJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"You hold it loudly and proudly for all to see—and people notice because there’s nothing else in the world quite like it. And this makes you treasure it that little bit more.\\n\\nThe dream of an illustrator is to have time, budget and ability to craft a bespoke masterpiece for every job that comes across their desk.\\n\\nThat dream doesn’t turn to reality very often. But that doesn’t mean your brand has to revert to using the same old stock illustrations everyone else uses, either.\\n\\nThere are so many ways to get over those hurdles when a project doesn’t have time or budget to allow for a custom piece.\\n\\nA lot of the time, stock illustration can be tweaked to give it the edge it needs to stand out from the crowd.\\n\\nChange up the colours, mix up the style and jazz up the faces.\\n\\nSometimes stock forms the base for us to build something fresh. And other times there might already be the perfect stock illustration that tells the right story without much tweaking at all.\\n\\nWhatever the constraints—budget, time, brief—there’s always a way to break free. It just takes some thinking outside of the box.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-amC4hnZM56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"If you’re drowning in a sea of same-same, come chat to us and [we\'ll make your brand stand out](/contact).\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Break away from the same-same with custom illustration','There’s nothing more special than something made just for you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17456,17693,1,'Break away from the same-same with custom illustration','2021-05-18 03:20:58','2021-05-18 03:20:58','2a604552-2e57-4dd3-b434-69d8d9f8e965',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'\n<h2>There’s nothing more special than something made just for you.</h2>\n\n\n\n<p>You hold it loudly and proudly for all to see—and they notice because there’s nothing else in the world quite like it. And this makes you treasure it that little bit more.</p>\n\n\n\n<p>The dream of an illustrator is to have time, budget and ability to craft a bespoke masterpiece for every job that comes across the desk.</p>\n\n\n\n<p>That dream doesn’t turn to reality very often. But that doesn’t mean your brand has to revert to using the same old stock illustrations everyone else uses either.</p>\n\n\n\n<p>There are so many ways to get over those hurdles when a project doesn’t have time or budget to allow for a custom piece.</p>\n\n\n\n<p>A lot of the time, stock illustration can be tweaked to give it the edge it needs to stand out from the crowd.</p>\n\n\n\n<p>Change up the colours, mix up the style and jazz up the faces.</p>\n\n\n\n<p>Sometimes stock forms the base for us to build something fresh. And other times there might already be the perfect stock illustration that tells the right story without much tweaking at all.</p>\n\n\n\n<p>Whatever the constraints—budget, time, brief—there’s always a way break free. It just takes some thinking outside of the box. If you’re drowning in a sea of same-same, come chat to us and we’ll get you out of there in no time.</p>\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17457,17694,1,'iwd-2021','2021-05-18 03:20:58','2021-05-18 03:20:58','6b70506d-94e9-428d-9447-5ea6071aebec',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17472,17709,1,'Newwordorder Word Press 2021 05 18 7','2021-05-18 03:21:51','2021-06-09 23:22:11','18261fa5-d061-4c34-8fe3-80d3c1659fa3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17474,17711,1,'Newwordorder Word Press 2021 05 18 8','2021-05-18 03:23:02','2021-06-09 23:22:12','e851a759-bd69-4b33-a264-adbc1db796c6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17476,17713,1,'Newwordorder Word Press 2021 05 18 9','2021-05-18 03:24:10','2021-06-09 23:22:12','9087b68e-976d-429a-ba9f-233037e0aa89',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17478,17715,1,'Newwordorder Word Press 2021 05 18 10','2021-05-18 03:25:29','2021-06-09 23:22:11','8bfcb543-a24d-4c72-9892-8adb53785d83',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17479,17716,1,'IMG_1483','2021-05-18 03:26:02','2021-06-09 23:15:14','15397658-a7b3-429d-b109-1668846f5d5b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2048_crop_center-center_82_line/IMG_1483.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1706_crop_center-center_82_line/IMG_1483.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x3413_crop_center-center_82_line/IMG_1483.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1365_crop_center-center_82_line/IMG_1483.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2730_crop_center-center_82_line/IMG_1483.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1024_crop_center-center_82_line/IMG_1483.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x853_crop_center-center_82_line/IMG_1483.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2048_crop_center-center_82_line/IMG_1483.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1706_crop_center-center_82_line/IMG_1483.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x3413_crop_center-center_82_line/IMG_1483.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1365_crop_center-center_82_line/IMG_1483.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2730_crop_center-center_82_line/IMG_1483.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1024_crop_center-center_82_line/IMG_1483.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x853_crop_center-center_82_line/IMG_1483.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":2048,\"1280\":1706,\"2560\":3413,\"1024\":1365,\"2048\":2730,\"768\":1024,\"640\":853},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3024\",\"originalImageHeight\":\"4032\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAFQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A4y2tJZrlIQjKWOOR0rbi0M/bgI5C8MeGDlcEnrjFdNcQGKLZHHIQSCTxx7VbhgAiXnOByayci1EsgbiAakKgYGKKKUho/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#bdae96\",\"#151310\",\"#694e36\",\"#e7e2e1\",\"#80623f\"],\"lightness\":44,\"placeholderWidth\":1536,\"placeholderHeight\":2048,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17480,17717,1,'IMG_0744','2021-05-18 03:26:13','2021-06-09 23:15:07','a41934d2-f2ee-4435-94b8-98fd6fff7173',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2048_crop_center-center_82_line/IMG_0744.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1706_crop_center-center_82_line/IMG_0744.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x3413_crop_center-center_82_line/IMG_0744.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1365_crop_center-center_82_line/IMG_0744.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2730_crop_center-center_82_line/IMG_0744.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1024_crop_center-center_82_line/IMG_0744.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x853_crop_center-center_82_line/IMG_0744.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x2048_crop_center-center_82_line/IMG_0744.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1706_crop_center-center_82_line/IMG_0744.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x3413_crop_center-center_82_line/IMG_0744.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1365_crop_center-center_82_line/IMG_0744.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2730_crop_center-center_82_line/IMG_0744.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x1024_crop_center-center_82_line/IMG_0744.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x853_crop_center-center_82_line/IMG_0744.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":2048,\"1280\":1706,\"2560\":3413,\"1024\":1365,\"2048\":2730,\"768\":1024,\"640\":853},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3024\",\"originalImageHeight\":\"4032\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAFQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6JNUV/mYbWHV0PH4+n4io7XxB9p1BraKNbiBU3NKp4znp79/yrmPEd0YtN2x5DSNsJA7d6j8M2dzZxvctwZBgJnkD1oAkuJMyQZAO1twyO9aMU7FQQABnGKKKAP/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#9b9b9b\",\"#1d1d1d\",\"#e2e2e2\",\"#4c4c4c\",\"#545454\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":2048,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17481,17718,1,'Leah','2021-05-18 03:26:28','2021-06-21 04:38:27','9b7b3679-221b-4487-b12e-ffc33cd0e5c0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/Leah.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/Leah.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Leah.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Leah.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Leah.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/Leah.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/Leah.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Leah.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Leah.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Leah.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1600\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A1fEGpTW88FpbymEyKXeRVyQo9KboOpXM11Ja3MhmAG5JCu049DiuX1XxOupajC8VqI0TKhmb5mB/QVZsPEMemalme2zGyhSyNyv4HrS15gUY+z21P//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1b1412\",\"#c7d9d6\",\"#7b5348\",\"#a27767\",\"#7e807d\"],\"lightness\":42,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17482,17719,1,'585612573.609978-1','2021-05-18 03:26:32','2021-06-09 23:21:06','127c7e8e-67bc-4706-bddd-4a8c2d03ad76',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/585612573.609978-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/585612573.609978-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/585612573.609978-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/585612573.609978-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/585612573.609978-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/585612573.609978-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/585612573.609978-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/585612573.609978-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/585612573.609978-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/585612573.609978-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2000\",\"originalImageHeight\":\"2000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A1YtOjGZpH3AAqq44xVee0SBlAcleh+takMQkj2hmAGRhT2ycfpTru2T7JIpZSAwZTnqfSs0I/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#bbc3ae\",\"#778176\",\"#eff7e1\",\"#8c8f7b\",\"#8c8c87\"],\"lightness\":65,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17483,17720,1,'IMG_3045-1','2021-05-18 03:26:38','2021-06-09 23:15:26','c5843a11-e6a4-42e1-8cc6-0f234989207f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/IMG_3045-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/IMG_3045-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/IMG_3045-1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2048_crop_center-center_82_line/IMG_3045-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/IMG_3045-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/IMG_3045-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/IMG_3045-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/IMG_3045-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/IMG_3045-1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2048_crop_center-center_82_line/IMG_3045-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/IMG_3045-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/IMG_3045-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"1024\":1024,\"2048\":2048,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2320\",\"originalImageHeight\":\"2320\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AhubhDdLaF2MbEExbi3Q988gcVFiAz3EcMSI0G5mLD26etM0iCJ7+WdirEDo5xnj2qzdWsF3cyyIjLcKf3nbcCQcflke9cDmno2enKm4O1kf/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c26e3d\",\"#331d11\",\"#e0d1a1\",\"#b21009\",\"#92a8b9\"],\"lightness\":44,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17484,17721,1,'Leah_2 copy','2021-05-18 03:26:44','2021-06-21 04:38:26','23d53606-133a-4d9f-950b-4bd6133d3119',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/Leah_2-copy.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/Leah_2-copy.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Leah_2-copy.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Leah_2-copy.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Leah_2-copy.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/Leah_2-copy.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/Leah_2-copy.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Leah_2-copy.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Leah_2-copy.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Leah_2-copy.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1600\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A4zTrQXDgsM5cKBmrms6bBbW8c9tkKTtZSc5PrVGxmMFzGwPG4cHvV3WrmW5kjhY7UUcfX/OanW5atyn/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ab8077\",\"#0c0a09\",\"#69483d\",\"#807671\",\"#7f6a6c\"],\"lightness\":36,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17485,17722,1,'Kat','2021-05-18 03:26:47','2021-06-09 23:15:52','2b56aeb0-097b-4f5a-9d9a-819921a02743',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/Kat.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/Kat.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Kat.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Kat.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Kat.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/Kat.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/Kat.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Kat.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Kat.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Kat.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1600\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6jVb37JANpKu2cELuxj/APWKbouoHULQu4xIjbTxjPoaoX9z9uv44rc5SMMHz3yOn6Cq2n3h0WaWK7UlJcMCvO0DI5o5ve8jXSx//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#513b33\",\"#f0d8e8\",\"#966e60\",\"#a5918a\",\"#84747c\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17486,17723,1,'kat-1','2021-05-18 03:26:51','2021-06-09 23:15:41','4dd17c9d-0124-4d99-9833-743709021f30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/kat-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/kat-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/kat-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/kat-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/kat-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/kat-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/kat-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/kat-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/kat-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/kat-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2000\",\"originalImageHeight\":\"2000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AZFOq7JBnKbgMn6cVY1a63yQTJkKF5I7VjgvaxGWX51VshTV5buO6hXEYVsfLwTjjp+NOxTR//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#796d73\",\"#d0ccc8\",\"#2e1d36\",\"#c0aeaa\",\"#b3a9bd\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17487,17724,1,'kat-2','2021-05-18 03:26:57','2021-06-09 23:15:49','9f158d12-53b3-40f5-9710-0fec5903129b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/kat-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/kat-2.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/kat-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/kat-2.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"847\",\"originalImageHeight\":\"847\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A0X1SXdveUKxHY8U+LW5OgZW28E9c1zV3dwmMebbmQgnA8wgduvFZkDus0ijgddpzj/PNPl0uK19D/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#8b8f89\",\"#2b243b\",\"#dbf0e9\",\"#3d4a60\",\"#464e38\"],\"lightness\":47,\"placeholderWidth\":768,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17488,17725,1,'kat-3','2021-05-18 03:26:59','2021-06-09 23:15:51','0edd4b56-e943-4b76-bda6-06b60bcc38de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/kat-3.jpg\"},\"optimizedWebPImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/kat-3.jpg.webp\"},\"variantSourceWidths\":[\"640\"],\"variantHeights\":{\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"720\",\"originalImageHeight\":\"720\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A2U1yKC3WWVFKnHU881pabqltebYxsWYjO3PBHse9eb/Zrgp81vJgdypH61OoujyYnUqf4VNF0Fj/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#48464a\",\"#dcdada\",\"#938784\",\"#a9aeb7\",\"#9fa0ae\"],\"lightness\":56,\"placeholderWidth\":640,\"placeholderHeight\":640,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17489,17726,1,'kat-4','2021-05-18 03:27:00','2021-06-09 23:14:29','46aaa343-4efb-4486-b0be-04193fd2b205',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/kat-4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/kat-4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/kat-4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/kat-4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/kat-4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/kat-4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/kat-4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/kat-4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/kat-4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/kat-4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2000\",\"originalImageHeight\":\"2000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A2ZbqFi5jRtwbb6BhjOagS9XYjsh5wCFOSMnFU3Viu7dn6jH+TTLJ+HyPxPep1LUVytn/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#b4a9a7\",\"#423d3c\",\"#86474f\",\"#716e6c\",\"#84644f\"],\"lightness\":45,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17490,17727,1,'Kat_2','2021-05-18 03:27:06','2021-06-09 23:15:54','0b9d3c41-0dbc-4c92-a6cb-614160c7e18c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/Kat_2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/Kat_2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Kat_2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Kat_2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Kat_2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/Kat_2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/Kat_2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Kat_2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Kat_2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Kat_2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1600\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5bw9pSanPKZt5jiUHanVieg/Q1BrFnFaXCiAOsbDo/UV0XhrTp7ORA7AOxLsoPbaQAfzNVfEOlTSXIclUO3Kr2qb6l2XL5n/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#b39388\",\"#120e0d\",\"#874242\",\"#747474\",\"#747c74\"],\"lightness\":39,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17491,17728,1,'Ryan_1','2021-05-18 03:27:09','2021-06-09 23:17:12','62218c66-539a-4ff2-b3d8-b121516a9c96',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/Ryan_1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/Ryan_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Ryan_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Ryan_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Ryan_1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/Ryan_1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/Ryan_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Ryan_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Ryan_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Ryan_1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1600\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6PVrqa2th9mXMrHAJGcDuaj0O/lvrZ/PH7yNtpbGN3vis/WfEVlG7Wq5kKnDuOi/T1qp4d8Q2UJ+wSnYS5Ky/wALE+vpV83v7hZcnmf/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#543d37\",\"#d3ddf2\",\"#b0756c\",\"#74747c\",\"#7c7484\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17492,17729,1,'Ryan_2','2021-05-18 03:27:12','2021-06-09 23:17:13','a7aab014-9fe4-47ad-b3f9-e10118e1e76c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/Ryan_2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/Ryan_2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Ryan_2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Ryan_2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Ryan_2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/Ryan_2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/Ryan_2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/Ryan_2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/Ryan_2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/Ryan_2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1600\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A43StObUZnRT91c4HU/5xTNTs/sV15QzjaCM1f0BjYXouJ2KRlSGUdSD6/wA6ras32m9eWNgy9Bj0qepenL5n/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#b08076\",\"#090807\",\"#5f443a\",\"#70615c\",\"#746f67\"],\"lightness\":34,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17493,17730,1,'10507868_850789261627979_2025167980_n','2021-05-18 03:27:15','2021-06-09 23:23:13','e61482aa-ca1c-43a9-a856-38c6c3934875',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/10507868_850789261627979_2025167980_n.jpg\"},\"optimizedWebPImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/10507868_850789261627979_2025167980_n.jpg.webp\"},\"variantSourceWidths\":[\"640\"],\"variantHeights\":{\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"640\",\"originalImageHeight\":\"640\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AoReGp0Mf2hkiRl3FzyPp9alvfCqPZvdWd3HLGueMjkgc81Hq9y6XTTQymSKY/dflVI44HToKWw1PGnTWcqB0OWXAHyk96lr3eZM3u3Lksf/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dfb7a4\",\"#3e2a3c\",\"#965546\",\"#67a5bb\",\"#3c7eb0\"],\"lightness\":49,\"placeholderWidth\":640,\"placeholderHeight\":640,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17494,17731,1,'110212406_317290776291456_5383731733289153646_n','2021-05-18 03:27:15','2021-06-09 23:23:14','b501a8c7-b342-4bd5-a9c6-eff13a4d58cb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/110212406_317290776291456_5383731733289153646_n.jpg\"},\"optimizedWebPImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/110212406_317290776291456_5383731733289153646_n.jpg.webp\"},\"variantSourceWidths\":[\"640\"],\"variantHeights\":{\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"640\",\"originalImageHeight\":\"640\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AW3ZYIYZLjylSVSQFfcwx2Ix7H8qk0xRq1tPLFOpk8wiOFVzhRnG49s4PPSsrXdXjlVIZY2DYLktjcMjGOPxqr4YvZrC/iR1xFJlQS2Bzj/OKAP/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#3c3c3c\",\"#dcdcdc\",\"#969696\",\"#b4b4b4\",\"#acacac\"],\"lightness\":56,\"placeholderWidth\":640,\"placeholderHeight\":640,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17495,17732,1,'23161087_141800066456571_6351681053626728448_n','2021-05-18 03:27:16','2021-06-09 23:21:34','7e0cede3-6eed-4a82-94c1-752ca9202604',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/23161087_141800066456571_6351681053626728448_n.jpg\"},\"optimizedWebPImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/23161087_141800066456571_6351681053626728448_n.jpg.webp\"},\"variantSourceWidths\":[\"640\"],\"variantHeights\":{\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"640\",\"originalImageHeight\":\"640\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A4i0CM7BxwRwfStjw9qC6bfOJY0kR12MGGfxFZVqkTSIrXCxqfvEgnH5Cp5UgjnHlXCypngAENjsTkUON0K+p/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#111517\",\"#c8cba4\",\"#5f6043\",\"#75a39e\",\"#255ebb\"],\"lightness\":38,\"placeholderWidth\":640,\"placeholderHeight\":640,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17496,17733,1,'59839865_431918420931933_8904987626071490290_n','2021-05-18 03:27:17','2021-06-09 23:21:07','e8c2f6c4-6f48-4142-bc95-277c65fd48db',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/59839865_431918420931933_8904987626071490290_n.jpg\"},\"optimizedWebPImageUrls\":{\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/59839865_431918420931933_8904987626071490290_n.jpg.webp\"},\"variantSourceWidths\":[\"640\"],\"variantHeights\":{\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"640\",\"originalImageHeight\":\"640\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AfdOJZIkfkbhwx3cdenbpVq91Z5p4pGtYXcRlAHG4ZyOQKqM0cduHeIj5sYOAVPqT/Ws438dvM1tdxskwOWZWDdcEemeKEm9hSdkf/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#8d8e89\",\"#192c46\",\"#543937\",\"#ecede9\",\"#725737\"],\"lightness\":43,\"placeholderWidth\":640,\"placeholderHeight\":640,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17497,17734,1,'19_09-PHN-SP_8','2021-05-18 03:27:18','2021-06-09 23:21:41','10386286-178c-4fde-9ce7-b0e73742e71c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1189_crop_center-center_82_line/19_09-PHN-SP_8.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x991_crop_center-center_82_line/19_09-PHN-SP_8.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x792_crop_center-center_82_line/19_09-PHN-SP_8.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x594_crop_center-center_82_line/19_09-PHN-SP_8.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x495_crop_center-center_82_line/19_09-PHN-SP_8.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1189_crop_center-center_82_line/19_09-PHN-SP_8.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x991_crop_center-center_82_line/19_09-PHN-SP_8.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x792_crop_center-center_82_line/19_09-PHN-SP_8.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x594_crop_center-center_82_line/19_09-PHN-SP_8.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x495_crop_center-center_82_line/19_09-PHN-SP_8.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1189,\"1280\":991,\"1024\":792,\"768\":594,\"640\":495},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1239\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AVdQvclJneNyuR8oGPc1NZahdhGV3SWRmwuT09sf1rVeytZJC7wIzk5JI5NKlnboQViUEHI9jSsB//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c5c4c2\",\"#4c4b40\",\"#535b64\",\"#8f876e\",\"#73695d\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":1189,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17498,17735,1,'brandjam-background','2021-05-18 03:27:21','2021-06-09 23:25:21','c08c4189-751b-4566-b49b-94efa563c2b6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/brandjam-background.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1536_crop_center-center_82_line/brandjam-background.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/brandjam-background.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1280_crop_center-center_82_line/brandjam-background.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/brandjam-background.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1024_crop_center-center_82_line/brandjam-background.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/brandjam-background.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/brandjam-background.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/brandjam-background.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1536_crop_center-center_82_line/brandjam-background.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/brandjam-background.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1280_crop_center-center_82_line/brandjam-background.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/brandjam-background.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1024_crop_center-center_82_line/brandjam-background.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/brandjam-background.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/brandjam-background.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"3072\":1536,\"1280\":640,\"2560\":1280,\"1024\":512,\"2048\":1024,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"4000\",\"originalImageHeight\":\"2000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A4LNGKKKRR//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#491a1d\",\"#070404\",\"#2a0809\",\"#0d140a\",\"#0e0914\"],\"lightness\":10,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17499,17736,1,'brandjam','2021-05-18 03:27:33','2021-06-09 23:25:23','55050222-31b9-4ce3-a623-1486f0d46571',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1018_crop_center-center_82_line/17736/brandjam.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x763_crop_center-center_82_line/17736/brandjam.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x636_crop_center-center_82_line/17736/brandjam.jpg\"},\"optimizedWebPImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1018_crop_center-center_82_line/17736/brandjam.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x763_crop_center-center_82_line/17736/brandjam.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x636_crop_center-center_82_line/17736/brandjam.jpg.webp\"},\"variantSourceWidths\":[\"1024\",\"768\",\"640\"],\"variantHeights\":{\"1024\":1018,\"768\":763,\"640\":636},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1086\",\"originalImageHeight\":\"1080\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A4mJVa3DbRuRueOtTaxBHHJDNCm2KZAwAXAz3qvZn940Zzhxj8avOPtGiPnO62fOfY0luaS1imf/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c77271\",\"#090505\",\"#582221\",\"#7c7c7c\",\"#747374\"],\"lightness\":35,\"placeholderWidth\":1024,\"placeholderHeight\":1018,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17500,17737,1,'Screen Shot 2020-09-08 at 10.09.19 am','2021-05-18 03:27:35','2021-06-09 23:16:32','85919785-185e-4572-87c7-0a2a10ce397a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1077_crop_center-center_82_line/17737/Screen-Shot-2020-09-08-at-10.09.19-am.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x862_crop_center-center_82_line/17737/Screen-Shot-2020-09-08-at-10.09.19-am.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x646_crop_center-center_82_line/17737/Screen-Shot-2020-09-08-at-10.09.19-am.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x538_crop_center-center_82_line/17737/Screen-Shot-2020-09-08-at-10.09.19-am.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1077_crop_center-center_82_line/17737/Screen-Shot-2020-09-08-at-10.09.19-am.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x862_crop_center-center_82_line/17737/Screen-Shot-2020-09-08-at-10.09.19-am.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x646_crop_center-center_82_line/17737/Screen-Shot-2020-09-08-at-10.09.19-am.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x538_crop_center-center_82_line/17737/Screen-Shot-2020-09-08-at-10.09.19-am.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1077,\"1024\":862,\"768\":646,\"640\":538},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1435\",\"originalImageHeight\":\"1208\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ap3KuLV3TPy4JI9M81M8RVVbYVVhlec8fXvWlpxUIEdQ6yuQQfYVb1NV/s9kCgCPbtHp2osV0P//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#756f6d\",\"#d0c5cd\",\"#241b17\",\"#b3afb7\",\"#adacaa\"],\"lightness\":51,\"placeholderWidth\":1280,\"placeholderHeight\":1077,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17501,17738,1,'scott (1)','2021-05-18 03:27:39','2021-06-09 23:17:14','99f40bc7-c8de-4360-b019-b96278192dde',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1604_crop_center-center_82_line/scott-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1283_crop_center-center_82_line/scott-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x962_crop_center-center_82_line/scott-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x802_crop_center-center_82_line/scott-1.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1604_crop_center-center_82_line/scott-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1283_crop_center-center_82_line/scott-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x962_crop_center-center_82_line/scott-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x802_crop_center-center_82_line/scott-1.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1604,\"1024\":1283,\"768\":962,\"640\":802},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1440\",\"originalImageHeight\":\"1805\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAFAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AqMVRSzcAUEccgj2IxU7WMt3aS+UAWXGB3J6irFzYSw20cznO4DcD1BpFdCxZ5jhiZCVLOc471PfSM9pcBjnbtx+dFFUI/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#746f6e\",\"#cec7d0\",\"#33231c\",\"#c59a8b\",\"#acacac\"],\"lightness\":52,\"placeholderWidth\":1280,\"placeholderHeight\":1604,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17502,17739,1,'BrandJam-eDM-header1','2021-05-18 03:27:42','2021-06-09 23:25:22','6652ec01-b0c2-402a-a5df-66b99abcf866',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/BrandJam-eDM-header1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/BrandJam-eDM-header1.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/BrandJam-eDM-header1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/BrandJam-eDM-header1.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"800\",\"originalImageHeight\":\"400\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AxH83cNm3b79qfRRXlXPskrH/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#eb1304\",\"#1c0504\",\"#8f110b\",\"#b81a12\",\"#d01b14\"],\"lightness\":31,\"placeholderWidth\":768,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17503,17740,1,'brandjam-lp-header','2021-05-18 03:27:43','2021-06-09 23:25:15','dba78a23-2f5e-4372-8b34-f4ba99a35e0f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x384_crop_center-center_82_line/brandjam-lp-header.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x768_crop_center-center_82_line/brandjam-lp-header.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x320_crop_center-center_82_line/brandjam-lp-header.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x640_crop_center-center_82_line/brandjam-lp-header.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x256_crop_center-center_82_line/brandjam-lp-header.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x512_crop_center-center_82_line/brandjam-lp-header.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x192_crop_center-center_82_line/brandjam-lp-header.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x160_crop_center-center_82_line/brandjam-lp-header.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x384_crop_center-center_82_line/brandjam-lp-header.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x768_crop_center-center_82_line/brandjam-lp-header.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x320_crop_center-center_82_line/brandjam-lp-header.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x640_crop_center-center_82_line/brandjam-lp-header.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x256_crop_center-center_82_line/brandjam-lp-header.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x512_crop_center-center_82_line/brandjam-lp-header.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x192_crop_center-center_82_line/brandjam-lp-header.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x160_crop_center-center_82_line/brandjam-lp-header.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":384,\"3072\":768,\"1280\":320,\"2560\":640,\"1024\":256,\"2048\":512,\"768\":192,\"640\":160},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"4000\",\"originalImageHeight\":\"1000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A8/q9YuyBGB5SUYoopMuG5//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#080505\",\"#bb615e\",\"#571613\",\"#7c7c7c\",\"#747474\"],\"lightness\":29,\"placeholderWidth\":1536,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17504,17741,1,'braondjam-red','2021-05-18 03:27:47','2021-06-09 23:25:25','969edc29-d326-42d7-a1a3-d48c57873f7c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x819_crop_center-center_82_line/braondjam-red.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x682_crop_center-center_82_line/braondjam-red.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1365_crop_center-center_82_line/braondjam-red.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x546_crop_center-center_82_line/braondjam-red.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1092_crop_center-center_82_line/braondjam-red.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x409_crop_center-center_82_line/braondjam-red.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x341_crop_center-center_82_line/braondjam-red.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x819_crop_center-center_82_line/braondjam-red.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x682_crop_center-center_82_line/braondjam-red.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1365_crop_center-center_82_line/braondjam-red.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x546_crop_center-center_82_line/braondjam-red.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1092_crop_center-center_82_line/braondjam-red.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x409_crop_center-center_82_line/braondjam-red.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x341_crop_center-center_82_line/braondjam-red.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":819,\"1280\":682,\"2560\":1365,\"1024\":546,\"2048\":1092,\"768\":409,\"640\":341},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3000\",\"originalImageHeight\":\"1600\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Aw3Mu75ApX37VJRRXlXPskrM//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#eb1304\",\"#250405\",\"#8e1311\",\"#bc1d16\",\"#d81f2c\"],\"lightness\":32,\"placeholderWidth\":1536,\"placeholderHeight\":819,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17505,17742,1,'braondjam-red-centre','2021-05-18 03:27:51','2021-06-09 23:25:24','1bf12309-1afe-43df-a3e4-491757ab97e7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x819_crop_center-center_82_line/braondjam-red-centre.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x682_crop_center-center_82_line/braondjam-red-centre.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1365_crop_center-center_82_line/braondjam-red-centre.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x546_crop_center-center_82_line/braondjam-red-centre.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1092_crop_center-center_82_line/braondjam-red-centre.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x409_crop_center-center_82_line/braondjam-red-centre.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x341_crop_center-center_82_line/braondjam-red-centre.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x819_crop_center-center_82_line/braondjam-red-centre.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x682_crop_center-center_82_line/braondjam-red-centre.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1365_crop_center-center_82_line/braondjam-red-centre.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x546_crop_center-center_82_line/braondjam-red-centre.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1092_crop_center-center_82_line/braondjam-red-centre.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x409_crop_center-center_82_line/braondjam-red-centre.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x341_crop_center-center_82_line/braondjam-red-centre.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":819,\"1280\":682,\"2560\":1365,\"1024\":546,\"2048\":1092,\"768\":409,\"640\":341},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3000\",\"originalImageHeight\":\"1600\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AxX37fkxn3oTft+fGfaiivKufZW1uf//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#eb1304\",\"#190405\",\"#8f140d\",\"#bb1e17\",\"#d01d11\"],\"lightness\":31,\"placeholderWidth\":1536,\"placeholderHeight\":819,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17506,17743,1,'kelly-sikkema-v9FQR4tbIq8-unsplash','2021-05-18 03:27:55','2021-06-21 04:38:36','9fb5e10a-76d4-46f9-806e-8a597d7f17cf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/kelly-sikkema-v9FQR4tbIq8-unsplash.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/kelly-sikkema-v9FQR4tbIq8-unsplash.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/kelly-sikkema-v9FQR4tbIq8-unsplash.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/kelly-sikkema-v9FQR4tbIq8-unsplash.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/kelly-sikkema-v9FQR4tbIq8-unsplash.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/kelly-sikkema-v9FQR4tbIq8-unsplash.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/kelly-sikkema-v9FQR4tbIq8-unsplash.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/kelly-sikkema-v9FQR4tbIq8-unsplash.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/kelly-sikkema-v9FQR4tbIq8-unsplash.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/kelly-sikkema-v9FQR4tbIq8-unsplash.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"1280\":853,\"1024\":682,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1920\",\"originalImageHeight\":\"1280\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AmTRYY4XaO4MhdiSUOBn0rlr+0iiZ5GdhIXICnBJH+c1qWcsi+JSiuwVg24A8HjvXLszPduzsWYkkknJNK1noNSunc//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#22201e\",\"#c0b8b5\",\"#989a9a\",\"#85614f\",\"#7e848c\"],\"lightness\":44,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17507,17744,1,'20_10-PHN-Safe-to-see-your-GP_1','2021-05-18 03:27:58','2021-06-09 23:20:42','4a06cf66-b737-49ae-a353-38fb3bd83fd0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x875_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1751_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x729_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1459_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x583_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1167_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x437_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x364_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x875_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1751_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x729_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1459_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x583_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1167_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x437_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x364_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":875,\"3072\":1751,\"1280\":729,\"2560\":1459,\"1024\":583,\"2048\":1167,\"768\":437,\"640\":364},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6666\",\"originalImageHeight\":\"3801\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A2vMSO9aIlX+fYCqAc/n+FNRLZikMN0rMGbIzkEnn/GsYf69v94VD4b/4/wCP/rq3/oJrOC3aLnZpJo//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ccccc7\",\"#3d7f86\",\"#b0946b\",\"#935732\",\"#cc7b28\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":875,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17508,17745,1,'20_10-PHN-Safe-to-see-your-GP_2','2021-05-18 03:28:18','2021-06-09 23:20:32','814eb64e-c046-46e6-9fc4-c8404d1fdec2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x847_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1695_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x706_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1412_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x565_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1130_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x423_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x353_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x847_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1695_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x706_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1412_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x565_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1130_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x423_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x353_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":847,\"3072\":1695,\"1280\":706,\"2560\":1412,\"1024\":565,\"2048\":1130,\"768\":423,\"640\":353},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6666\",\"originalImageHeight\":\"3679\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7AzXazMI4leMH727JP68d6ikutVHliOyQ5cByW4C5OT169KKKAP/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ddd9d5\",\"#305f7a\",\"#a06948\",\"#a06577\",\"#7ea4af\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":847,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17509,17746,1,'20_10-PHN-Safe-to-see-your-GP_3','2021-05-18 03:28:34','2021-06-09 23:20:09','22b0f06d-f338-41fa-a23a-f5ad541bd3a1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x890_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1781_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x742_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1484_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x593_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1187_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x445_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x371_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x890_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1781_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x742_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1484_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x593_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1187_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x445_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x371_crop_center-center_82_line/20_10-PHN-Safe-to-see-your-GP_3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":890,\"3072\":1781,\"1280\":742,\"2560\":1484,\"1024\":593,\"2048\":1187,\"768\":445,\"640\":371},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6666\",\"originalImageHeight\":\"3865\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A2rS4snt/NvAvlKEUF4ywzz04+lWY/sk0uy2WPADBwsW3B4wDx6ZqlH/yBbX/AD3q/H/x8N9R/wCgipi7lyjyn//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d9d6d6\",\"#2d252a\",\"#85523c\",\"#9f7159\",\"#838184\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":890,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17510,17747,1,'20_10 PHN MM Vaccination Myths_1','2021-05-18 03:28:58','2021-06-09 23:20:49','ed1e980e-26fa-4005-b6b3-ea7ada5f0956',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x939_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1878_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x782_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1565_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x626_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1252_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x469_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x391_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x939_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1878_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x782_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1565_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x626_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1252_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x469_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x391_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":939,\"3072\":1878,\"1280\":782,\"2560\":1565,\"1024\":626,\"2048\":1252,\"768\":469,\"640\":391},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6666\",\"originalImageHeight\":\"4076\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AtwavbtfOLtgQi/u8tjLeo/z61De3v2nUENhdlDt2MzdCxHQD+p4rAf8A4+v+ANWt4S6X3+4P/ZqadqdzarTSqOK6Ox//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#cac4c5\",\"#28303f\",\"#a62859\",\"#637689\",\"#77554c\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":939,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17511,17748,1,'20_10-PHN-MM-Vaccination-Myths_2','2021-05-18 03:29:23','2021-06-09 23:20:52','7f618fbc-8775-495b-ba69-6c2dc22a97e0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1004_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2009_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x837_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1674_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x669_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1339_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x502_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x418_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1004_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2009_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x837_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1674_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x669_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1339_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x502_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x418_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1004,\"3072\":2009,\"1280\":837,\"2560\":1674,\"1024\":669,\"2048\":1339,\"768\":502,\"640\":418},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6666\",\"originalImageHeight\":\"4361\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7QSTruIiz1x8+c0z7Tdl1AtuCRkk9BV0KqkkKAT6ClpW0HfW9j//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d6dadc\",\"#e37533\",\"#3d6c80\",\"#cb678a\",\"#d4a483\"],\"lightness\":62,\"placeholderWidth\":1536,\"placeholderHeight\":1004,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17512,17749,1,'Newwordorder Word Press 2021 05 18 11','2021-05-18 03:29:38','2021-06-09 23:22:11','a16165a3-2795-4162-85cc-adc2a4641096',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17513,17750,1,'20_10-PHN-MM-Vaccination-Myths_3','2021-05-18 03:29:50','2021-06-09 23:20:56','7b71788c-61cd-4f53-93ac-7435051234a4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x878_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1756_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x731_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1463_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x585_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1170_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x439_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x365_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x878_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1756_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x731_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1463_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x585_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1170_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x439_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x365_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":878,\"3072\":1756,\"1280\":731,\"2560\":1463,\"1024\":585,\"2048\":1170,\"768\":439,\"640\":365},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6666\",\"originalImageHeight\":\"3811\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6Rnn8xkWJVK5zv7+lNtpZpWUNAQCRnsQOf8AAfnW0/ShOlPnlcj2cbH/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d0e0e2\",\"#39747e\",\"#b3755e\",\"#79b6a7\",\"#d05f8c\"],\"lightness\":60,\"placeholderWidth\":1536,\"placeholderHeight\":878,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17514,17751,1,'20_10-PHN-MM-Vaccination-Myths_4','2021-05-18 03:30:09','2021-06-09 23:20:59','9951c0ba-4b09-4288-b8b4-2e9d156f72b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1053_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_4.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2106_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x877_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_4.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1755_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x702_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1404_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x526_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x438_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1053_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_4.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2106_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x877_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_4.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1755_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x702_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1404_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x526_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x438_crop_center-center_82_line/20_10-PHN-MM-Vaccination-Myths_4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1053,\"3072\":2106,\"1280\":877,\"2560\":1755,\"1024\":702,\"2048\":1404,\"768\":526,\"640\":438},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6666\",\"originalImageHeight\":\"4572\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7NryUbv9HbgEjnrTGu5nmVVt5MZAJzgD3q/UE/30pdLB1uf/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d7dbdc\",\"#e77635\",\"#419195\",\"#8db7b9\",\"#94787c\"],\"lightness\":63,\"placeholderWidth\":1536,\"placeholderHeight\":1053,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17515,17752,1,'20_PHN-Right-place-right-time_1','2021-05-18 03:30:32','2021-06-09 23:20:14','3c304404-65a8-4770-9977-98aa993e7bb0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1023_crop_center-center_82_line/20_PHN-Right-place-right-time_1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2047_crop_center-center_82_line/20_PHN-Right-place-right-time_1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/20_PHN-Right-place-right-time_1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1706_crop_center-center_82_line/20_PHN-Right-place-right-time_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/20_PHN-Right-place-right-time_1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1364_crop_center-center_82_line/20_PHN-Right-place-right-time_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x511_crop_center-center_82_line/20_PHN-Right-place-right-time_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/20_PHN-Right-place-right-time_1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1023_crop_center-center_82_line/20_PHN-Right-place-right-time_1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2047_crop_center-center_82_line/20_PHN-Right-place-right-time_1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/20_PHN-Right-place-right-time_1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1706_crop_center-center_82_line/20_PHN-Right-place-right-time_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/20_PHN-Right-place-right-time_1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1364_crop_center-center_82_line/20_PHN-Right-place-right-time_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x511_crop_center-center_82_line/20_PHN-Right-place-right-time_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/20_PHN-Right-place-right-time_1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1023,\"3072\":2047,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1364,\"768\":511,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"5120\",\"originalImageHeight\":\"3412\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A1LjU4ElWPzN0plXGXxleOg71oPdx+d5CRb2JwWI4A9RXDaqAvjaBVAABAAHbk100LsNRiXccG3JIz7ikB//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d1cdc8\",\"#1a3135\",\"#849699\",\"#8a4a44\",\"#b8a24e\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":1023,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17516,17753,1,'20_PHN-Right-place-right-time_2','2021-05-18 03:30:51','2021-06-09 23:20:17','c9d3efd3-fa6c-4f3c-96a2-63689b400ab9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1043_crop_center-center_82_line/20_PHN-Right-place-right-time_2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2086_crop_center-center_82_line/20_PHN-Right-place-right-time_2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x869_crop_center-center_82_line/20_PHN-Right-place-right-time_2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1738_crop_center-center_82_line/20_PHN-Right-place-right-time_2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x695_crop_center-center_82_line/20_PHN-Right-place-right-time_2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1390_crop_center-center_82_line/20_PHN-Right-place-right-time_2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x521_crop_center-center_82_line/20_PHN-Right-place-right-time_2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x434_crop_center-center_82_line/20_PHN-Right-place-right-time_2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1043_crop_center-center_82_line/20_PHN-Right-place-right-time_2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2086_crop_center-center_82_line/20_PHN-Right-place-right-time_2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x869_crop_center-center_82_line/20_PHN-Right-place-right-time_2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1738_crop_center-center_82_line/20_PHN-Right-place-right-time_2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x695_crop_center-center_82_line/20_PHN-Right-place-right-time_2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1390_crop_center-center_82_line/20_PHN-Right-place-right-time_2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x521_crop_center-center_82_line/20_PHN-Right-place-right-time_2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x434_crop_center-center_82_line/20_PHN-Right-place-right-time_2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1043,\"3072\":2086,\"1280\":869,\"2560\":1738,\"1024\":695,\"2048\":1390,\"768\":521,\"640\":434},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"5120\",\"originalImageHeight\":\"3477\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6qdFlLuysDncJc8YzwB+FFxqlzHGrQ6fJMSQCA2MevaqsBJs8E5HlN1+tatmzNJcZJOJOMn2FYU2ua9uxO5//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#9dc260\",\"#e7e9e5\",\"#15546f\",\"#99c33a\",\"#764a37\"],\"lightness\":57,\"placeholderWidth\":1536,\"placeholderHeight\":1043,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17517,17754,1,'20_PHN-Right-place-right-time_3','2021-05-18 03:31:08','2021-06-09 23:20:20','0252cd2c-d454-491a-aa39-71bfbee59eef',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1014_crop_center-center_82_line/20_PHN-Right-place-right-time_3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2029_crop_center-center_82_line/20_PHN-Right-place-right-time_3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x845_crop_center-center_82_line/20_PHN-Right-place-right-time_3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1691_crop_center-center_82_line/20_PHN-Right-place-right-time_3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x676_crop_center-center_82_line/20_PHN-Right-place-right-time_3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1353_crop_center-center_82_line/20_PHN-Right-place-right-time_3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x507_crop_center-center_82_line/20_PHN-Right-place-right-time_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x422_crop_center-center_82_line/20_PHN-Right-place-right-time_3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1014_crop_center-center_82_line/20_PHN-Right-place-right-time_3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2029_crop_center-center_82_line/20_PHN-Right-place-right-time_3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x845_crop_center-center_82_line/20_PHN-Right-place-right-time_3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1691_crop_center-center_82_line/20_PHN-Right-place-right-time_3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x676_crop_center-center_82_line/20_PHN-Right-place-right-time_3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1353_crop_center-center_82_line/20_PHN-Right-place-right-time_3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x507_crop_center-center_82_line/20_PHN-Right-place-right-time_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x422_crop_center-center_82_line/20_PHN-Right-place-right-time_3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1014,\"3072\":2029,\"1280\":845,\"2560\":1691,\"1024\":676,\"2048\":1353,\"768\":507,\"640\":422},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"5120\",\"originalImageHeight\":\"3383\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AzzArQWJtppZLqQjcrSggkjt6c+tdhmKSzkS42iTBA7bh26ViXFtBGsTRwxqQy4KqB3qTTHY2xyxP+ksOT2x0qJaK4nKx/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c7c2b6\",\"#2d332e\",\"#574b44\",\"#6a8375\",\"#a09840\"],\"lightness\":45,\"placeholderWidth\":1536,\"placeholderHeight\":1014,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17518,17755,1,'20_PHN-Right-place-right-time_4','2021-05-18 03:31:27','2021-06-09 23:20:23','0cfd7156-119e-45db-aa36-cb3d3cd0d0d5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x980_crop_center-center_82_line/20_PHN-Right-place-right-time_4.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1961_crop_center-center_82_line/20_PHN-Right-place-right-time_4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x817_crop_center-center_82_line/20_PHN-Right-place-right-time_4.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1634_crop_center-center_82_line/20_PHN-Right-place-right-time_4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x653_crop_center-center_82_line/20_PHN-Right-place-right-time_4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1307_crop_center-center_82_line/20_PHN-Right-place-right-time_4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x490_crop_center-center_82_line/20_PHN-Right-place-right-time_4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x408_crop_center-center_82_line/20_PHN-Right-place-right-time_4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x980_crop_center-center_82_line/20_PHN-Right-place-right-time_4.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1961_crop_center-center_82_line/20_PHN-Right-place-right-time_4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x817_crop_center-center_82_line/20_PHN-Right-place-right-time_4.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1634_crop_center-center_82_line/20_PHN-Right-place-right-time_4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x653_crop_center-center_82_line/20_PHN-Right-place-right-time_4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1307_crop_center-center_82_line/20_PHN-Right-place-right-time_4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x490_crop_center-center_82_line/20_PHN-Right-place-right-time_4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x408_crop_center-center_82_line/20_PHN-Right-place-right-time_4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":980,\"3072\":1961,\"1280\":817,\"2560\":1634,\"1024\":653,\"2048\":1307,\"768\":490,\"640\":408},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"5120\",\"originalImageHeight\":\"3269\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6rUwPJmil8zynPMjMMDOMY59f5VVS9ubTzJIIWu1mYMAZAMepHWtx4o5M740bPqoNczHI7y6jvdm2MFXJztBOCB7UupjN2dz/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#248762\",\"#dde1dc\",\"#9f9b41\",\"#68b088\",\"#4c647c\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":980,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17519,17756,1,'20_10-PHN-Year-in-review_1','2021-05-18 03:31:44','2021-06-09 23:20:28','5a03d40a-37d3-4b94-882e-6d3e8af26115',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1036_crop_center-center_82_line/20_10-PHN-Year-in-review_1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2072_crop_center-center_82_line/20_10-PHN-Year-in-review_1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x863_crop_center-center_82_line/20_10-PHN-Year-in-review_1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1727_crop_center-center_82_line/20_10-PHN-Year-in-review_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x690_crop_center-center_82_line/20_10-PHN-Year-in-review_1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1381_crop_center-center_82_line/20_10-PHN-Year-in-review_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x518_crop_center-center_82_line/20_10-PHN-Year-in-review_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x431_crop_center-center_82_line/20_10-PHN-Year-in-review_1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1036_crop_center-center_82_line/20_10-PHN-Year-in-review_1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2072_crop_center-center_82_line/20_10-PHN-Year-in-review_1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x863_crop_center-center_82_line/20_10-PHN-Year-in-review_1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1727_crop_center-center_82_line/20_10-PHN-Year-in-review_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x690_crop_center-center_82_line/20_10-PHN-Year-in-review_1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1381_crop_center-center_82_line/20_10-PHN-Year-in-review_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x518_crop_center-center_82_line/20_10-PHN-Year-in-review_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x431_crop_center-center_82_line/20_10-PHN-Year-in-review_1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1036,\"3072\":2072,\"1280\":863,\"2560\":1727,\"1024\":690,\"2048\":1381,\"768\":518,\"640\":431},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6666\",\"originalImageHeight\":\"4497\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A2rHTYcyW+4qGHysvBz1/r+lZ2s6HJZ25ljfeAeSQMkcen+eK2k/16H/a/pTNdJ/se4OecDn8RSWxT3P/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d1c7c2\",\"#4d4646\",\"#88746e\",\"#516a7d\",\"#756051\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":1036,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17520,17757,1,'20_10-PHN-Year-in-review_2','2021-05-18 03:32:15','2021-06-09 23:19:44','21f0f12f-a1d9-4f6e-9015-e5d3360ec0d4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1291_crop_center-center_82_line/20_10-PHN-Year-in-review_2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2583_crop_center-center_82_line/20_10-PHN-Year-in-review_2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1076_crop_center-center_82_line/20_10-PHN-Year-in-review_2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x2153_crop_center-center_82_line/20_10-PHN-Year-in-review_2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x861_crop_center-center_82_line/20_10-PHN-Year-in-review_2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1722_crop_center-center_82_line/20_10-PHN-Year-in-review_2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x645_crop_center-center_82_line/20_10-PHN-Year-in-review_2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x538_crop_center-center_82_line/20_10-PHN-Year-in-review_2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1291_crop_center-center_82_line/20_10-PHN-Year-in-review_2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2583_crop_center-center_82_line/20_10-PHN-Year-in-review_2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1076_crop_center-center_82_line/20_10-PHN-Year-in-review_2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x2153_crop_center-center_82_line/20_10-PHN-Year-in-review_2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x861_crop_center-center_82_line/20_10-PHN-Year-in-review_2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1722_crop_center-center_82_line/20_10-PHN-Year-in-review_2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x645_crop_center-center_82_line/20_10-PHN-Year-in-review_2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x538_crop_center-center_82_line/20_10-PHN-Year-in-review_2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1291,\"3072\":2583,\"1280\":1076,\"2560\":2153,\"1024\":861,\"2048\":1722,\"768\":645,\"640\":538},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6666\",\"originalImageHeight\":\"5607\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6vXUnuLJo7K4aOZWBOzliPTqMdc1W0S2mtbpvtOqG5Z0x5LdVPB7sam1TTxeT5MrIAMEAdabFpv/ABNbS683/UxlNu3rwR1/Gmn0Fbqf/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#29455d\",\"#e1e3e3\",\"#746057\",\"#948a60\",\"#84909b\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":1291,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17521,17758,1,'20_PHN-Aged-care-nav_1','2021-05-18 03:32:52','2021-06-09 23:19:48','894fddb9-e6ad-46df-8b92-559a2eea1492',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1308_crop_center-center_82_line/20_PHN-Aged-care-nav_1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2617_crop_center-center_82_line/20_PHN-Aged-care-nav_1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1090_crop_center-center_82_line/20_PHN-Aged-care-nav_1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x2181_crop_center-center_82_line/20_PHN-Aged-care-nav_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x872_crop_center-center_82_line/20_PHN-Aged-care-nav_1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1745_crop_center-center_82_line/20_PHN-Aged-care-nav_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x654_crop_center-center_82_line/20_PHN-Aged-care-nav_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x545_crop_center-center_82_line/20_PHN-Aged-care-nav_1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1308_crop_center-center_82_line/20_PHN-Aged-care-nav_1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2617_crop_center-center_82_line/20_PHN-Aged-care-nav_1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1090_crop_center-center_82_line/20_PHN-Aged-care-nav_1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x2181_crop_center-center_82_line/20_PHN-Aged-care-nav_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x872_crop_center-center_82_line/20_PHN-Aged-care-nav_1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1745_crop_center-center_82_line/20_PHN-Aged-care-nav_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x654_crop_center-center_82_line/20_PHN-Aged-care-nav_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x545_crop_center-center_82_line/20_PHN-Aged-care-nav_1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1308,\"3072\":2617,\"1280\":1090,\"2560\":2181,\"1024\":872,\"2048\":1745,\"768\":654,\"640\":545},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"5120\",\"originalImageHeight\":\"4363\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6G8NzcTTCKOOeRY12ghSEJLdj9P0p2jC4huVhurZYG8tgrBlzLgryQPT+tUdNillupik7R4Vc8Z3ZLVLdxSwXcBe4aU7HwTxjlfeuX2zjDmsUveTZ//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#97ac47\",\"#0e0b0a\",\"#edebe5\",\"#ee842e\",\"#67473a\"],\"lightness\":45,\"placeholderWidth\":1536,\"placeholderHeight\":1308,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17522,17759,1,'20_PHN-Aged-care-nav_2','2021-05-18 03:33:24','2021-06-09 23:19:51','5ca0b05c-8948-47ed-805f-ee7747563c4d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x996_crop_center-center_82_line/20_PHN-Aged-care-nav_2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1993_crop_center-center_82_line/20_PHN-Aged-care-nav_2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x830_crop_center-center_82_line/20_PHN-Aged-care-nav_2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1661_crop_center-center_82_line/20_PHN-Aged-care-nav_2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x664_crop_center-center_82_line/20_PHN-Aged-care-nav_2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1328_crop_center-center_82_line/20_PHN-Aged-care-nav_2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x498_crop_center-center_82_line/20_PHN-Aged-care-nav_2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x415_crop_center-center_82_line/20_PHN-Aged-care-nav_2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x996_crop_center-center_82_line/20_PHN-Aged-care-nav_2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1993_crop_center-center_82_line/20_PHN-Aged-care-nav_2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x830_crop_center-center_82_line/20_PHN-Aged-care-nav_2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1661_crop_center-center_82_line/20_PHN-Aged-care-nav_2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x664_crop_center-center_82_line/20_PHN-Aged-care-nav_2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1328_crop_center-center_82_line/20_PHN-Aged-care-nav_2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x498_crop_center-center_82_line/20_PHN-Aged-care-nav_2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x415_crop_center-center_82_line/20_PHN-Aged-care-nav_2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":996,\"3072\":1993,\"1280\":830,\"2560\":1661,\"1024\":664,\"2048\":1328,\"768\":498,\"640\":415},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"5120\",\"originalImageHeight\":\"3322\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A666ubmK6ZYbRpFAB37sD6Yptrf3s14kUtg0URB3SE9Dz/wDW/OtDavmbtoz64p9JLUbelj//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d3cdc8\",\"#3f464e\",\"#e0712f\",\"#755240\",\"#7d7f82\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":996,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17523,17760,1,'20_PHN-Aged-care-nav_3','2021-05-18 03:33:41','2021-06-09 23:19:54','b3f1a30f-d857-480a-916b-2f314f42f3ea',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1142_crop_center-center_82_line/20_PHN-Aged-care-nav_3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2285_crop_center-center_82_line/20_PHN-Aged-care-nav_3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x952_crop_center-center_82_line/20_PHN-Aged-care-nav_3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1904_crop_center-center_82_line/20_PHN-Aged-care-nav_3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x761_crop_center-center_82_line/20_PHN-Aged-care-nav_3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1523_crop_center-center_82_line/20_PHN-Aged-care-nav_3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x571_crop_center-center_82_line/20_PHN-Aged-care-nav_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x476_crop_center-center_82_line/20_PHN-Aged-care-nav_3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1142_crop_center-center_82_line/20_PHN-Aged-care-nav_3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2285_crop_center-center_82_line/20_PHN-Aged-care-nav_3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x952_crop_center-center_82_line/20_PHN-Aged-care-nav_3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1904_crop_center-center_82_line/20_PHN-Aged-care-nav_3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x761_crop_center-center_82_line/20_PHN-Aged-care-nav_3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1523_crop_center-center_82_line/20_PHN-Aged-care-nav_3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x571_crop_center-center_82_line/20_PHN-Aged-care-nav_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x476_crop_center-center_82_line/20_PHN-Aged-care-nav_3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1142,\"3072\":2285,\"1280\":952,\"2560\":1904,\"1024\":761,\"2048\":1523,\"768\":571,\"640\":476},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"5120\",\"originalImageHeight\":\"3809\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6DVYhbrbuqBthOFJ4zjg5qhpU9w8V3HdqpU7SnzbieTkH26VtC3iu7SFbhd4GDyT1rM1qKOwubJLRFiWQsGCjrSleL8hRvLY/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#cfd5d4\",\"#2f353e\",\"#809a4a\",\"#804b3a\",\"#788f95\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":1142,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17524,17761,1,'20_PHN-Bris-North-website_1','2021-05-18 03:34:06','2021-06-09 23:19:57','2c2db50a-991d-4e2c-a78c-b739c3d9a602',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x938_crop_center-center_82_line/20_PHN-Bris-North-website_1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1876_crop_center-center_82_line/20_PHN-Bris-North-website_1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x782_crop_center-center_82_line/20_PHN-Bris-North-website_1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1564_crop_center-center_82_line/20_PHN-Bris-North-website_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x625_crop_center-center_82_line/20_PHN-Bris-North-website_1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1251_crop_center-center_82_line/20_PHN-Bris-North-website_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x469_crop_center-center_82_line/20_PHN-Bris-North-website_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x391_crop_center-center_82_line/20_PHN-Bris-North-website_1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x938_crop_center-center_82_line/20_PHN-Bris-North-website_1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1876_crop_center-center_82_line/20_PHN-Bris-North-website_1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x782_crop_center-center_82_line/20_PHN-Bris-North-website_1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1564_crop_center-center_82_line/20_PHN-Bris-North-website_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x625_crop_center-center_82_line/20_PHN-Bris-North-website_1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1251_crop_center-center_82_line/20_PHN-Bris-North-website_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x469_crop_center-center_82_line/20_PHN-Bris-North-website_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x391_crop_center-center_82_line/20_PHN-Bris-North-website_1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":938,\"3072\":1876,\"1280\":782,\"2560\":1564,\"1024\":625,\"2048\":1251,\"768\":469,\"640\":391},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"5120\",\"originalImageHeight\":\"3128\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AZp2mXksTJG0seD8778Icc9eKkvrW1u9NjhlkWYx7h58f3eeQOevXH4VPef8AIuv/ANdz/wCgCsS3/wCQMn/XU/yFTzXii1G0mf/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#474545\",\"#d5ccc7\",\"#9f846f\",\"#96bcc3\",\"#87a0b3\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":938,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17525,17762,1,'20_PHN-Bris-North-website_2','2021-05-18 03:34:23','2021-06-09 23:20:00','5a1f0709-fbe8-49b7-ab9f-d4400eeb9145',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1353_crop_center-center_82_line/20_PHN-Bris-North-website_2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2707_crop_center-center_82_line/20_PHN-Bris-North-website_2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1128_crop_center-center_82_line/20_PHN-Bris-North-website_2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x2256_crop_center-center_82_line/20_PHN-Bris-North-website_2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x902_crop_center-center_82_line/20_PHN-Bris-North-website_2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1805_crop_center-center_82_line/20_PHN-Bris-North-website_2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x676_crop_center-center_82_line/20_PHN-Bris-North-website_2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x564_crop_center-center_82_line/20_PHN-Bris-North-website_2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1353_crop_center-center_82_line/20_PHN-Bris-North-website_2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2707_crop_center-center_82_line/20_PHN-Bris-North-website_2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1128_crop_center-center_82_line/20_PHN-Bris-North-website_2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x2256_crop_center-center_82_line/20_PHN-Bris-North-website_2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x902_crop_center-center_82_line/20_PHN-Bris-North-website_2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1805_crop_center-center_82_line/20_PHN-Bris-North-website_2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x676_crop_center-center_82_line/20_PHN-Bris-North-website_2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x564_crop_center-center_82_line/20_PHN-Bris-North-website_2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1353,\"3072\":2707,\"1280\":1128,\"2560\":2256,\"1024\":902,\"2048\":1805,\"768\":676,\"640\":564},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"5120\",\"originalImageHeight\":\"4513\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7LU0nkgC2s4ikDAlj6VW0qK7juXNzfLcKQcKMcHP0FR6lo1pe3jTTB9xxnDsOn0NS6dp5sZVWGZvJJyY2+btjgnoOAad9LEpa3P/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#155365\",\"#e1e0e0\",\"#805f5c\",\"#868d9e\",\"#937a65\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":1353,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17526,17763,1,'20_PHN-Health-pathways_1','2021-05-18 03:34:49','2021-06-09 23:20:03','956ce209-ed85-45f5-9e36-55f7683ba038',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x829_crop_center-center_82_line/20_PHN-Health-pathways_1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1659_crop_center-center_82_line/20_PHN-Health-pathways_1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x691_crop_center-center_82_line/20_PHN-Health-pathways_1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1383_crop_center-center_82_line/20_PHN-Health-pathways_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x553_crop_center-center_82_line/20_PHN-Health-pathways_1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1106_crop_center-center_82_line/20_PHN-Health-pathways_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x414_crop_center-center_82_line/20_PHN-Health-pathways_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x345_crop_center-center_82_line/20_PHN-Health-pathways_1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x829_crop_center-center_82_line/20_PHN-Health-pathways_1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1659_crop_center-center_82_line/20_PHN-Health-pathways_1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x691_crop_center-center_82_line/20_PHN-Health-pathways_1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1383_crop_center-center_82_line/20_PHN-Health-pathways_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x553_crop_center-center_82_line/20_PHN-Health-pathways_1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1106_crop_center-center_82_line/20_PHN-Health-pathways_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x414_crop_center-center_82_line/20_PHN-Health-pathways_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x345_crop_center-center_82_line/20_PHN-Health-pathways_1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":829,\"3072\":1659,\"1280\":691,\"2560\":1383,\"1024\":553,\"2048\":1106,\"768\":414,\"640\":345},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"5120\",\"originalImageHeight\":\"2766\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7KR7lHbyURsk9ycc96khkuCf3qqBxjANFFArH//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ccd9d6\",\"#2b5b70\",\"#de8f30\",\"#799e9f\",\"#815443\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":829,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17527,17764,1,'20_PHN-Health-pathways_2','2021-05-18 03:35:00','2021-06-09 23:19:41','783ab2d0-888d-4604-a549-c645549d4b04',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x920_crop_center-center_82_line/20_PHN-Health-pathways_2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1841_crop_center-center_82_line/20_PHN-Health-pathways_2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x767_crop_center-center_82_line/20_PHN-Health-pathways_2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1534_crop_center-center_82_line/20_PHN-Health-pathways_2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x613_crop_center-center_82_line/20_PHN-Health-pathways_2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1227_crop_center-center_82_line/20_PHN-Health-pathways_2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x460_crop_center-center_82_line/20_PHN-Health-pathways_2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x383_crop_center-center_82_line/20_PHN-Health-pathways_2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x920_crop_center-center_82_line/20_PHN-Health-pathways_2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1841_crop_center-center_82_line/20_PHN-Health-pathways_2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x767_crop_center-center_82_line/20_PHN-Health-pathways_2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1534_crop_center-center_82_line/20_PHN-Health-pathways_2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x613_crop_center-center_82_line/20_PHN-Health-pathways_2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1227_crop_center-center_82_line/20_PHN-Health-pathways_2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x460_crop_center-center_82_line/20_PHN-Health-pathways_2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x383_crop_center-center_82_line/20_PHN-Health-pathways_2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":920,\"3072\":1841,\"1280\":767,\"2560\":1534,\"1024\":613,\"2048\":1227,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"5120\",\"originalImageHeight\":\"3069\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A2LG9UX/2RbeTIXJdhhfw9atXDsGYMoCkZ46UyH+D6ilvP4vrWN1y6Ivlbluf/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d0c6b4\",\"#214359\",\"#b5946d\",\"#ca8d42\",\"#786450\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":920,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17528,17765,1,'20_PHN-My-mental-health_1','2021-05-18 03:35:15','2021-06-09 23:20:06','3f3be323-62b7-4655-abdf-2239aa9f1383',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1340_crop_center-center_82_line/20_PHN-My-mental-health_1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2681_crop_center-center_82_line/20_PHN-My-mental-health_1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1117_crop_center-center_82_line/20_PHN-My-mental-health_1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x2234_crop_center-center_82_line/20_PHN-My-mental-health_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x893_crop_center-center_82_line/20_PHN-My-mental-health_1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1787_crop_center-center_82_line/20_PHN-My-mental-health_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x670_crop_center-center_82_line/20_PHN-My-mental-health_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x558_crop_center-center_82_line/20_PHN-My-mental-health_1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1340_crop_center-center_82_line/20_PHN-My-mental-health_1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2681_crop_center-center_82_line/20_PHN-My-mental-health_1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1117_crop_center-center_82_line/20_PHN-My-mental-health_1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x2234_crop_center-center_82_line/20_PHN-My-mental-health_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x893_crop_center-center_82_line/20_PHN-My-mental-health_1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1787_crop_center-center_82_line/20_PHN-My-mental-health_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x670_crop_center-center_82_line/20_PHN-My-mental-health_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x558_crop_center-center_82_line/20_PHN-My-mental-health_1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1340,\"3072\":2681,\"1280\":1117,\"2560\":2234,\"1024\":893,\"2048\":1787,\"768\":670,\"640\":558},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"5120\",\"originalImageHeight\":\"4469\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3b6+l1S5W3028ESINzyKck844I69afaSyaRMf7R1AzxzcIX42kfU+9V9St9NgvJFbTo3Iwc7iBzz0q/ZWFpNBAHhDIMOivyF44HuBWrsl5D6H//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dfdde5\",\"#532e83\",\"#6d429a\",\"#53c1ae\",\"#688084\"],\"lightness\":57,\"placeholderWidth\":1536,\"placeholderHeight\":1340,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17529,17766,1,'20_PHN-My-mental-health_2','2021-05-18 03:35:41','2021-06-09 23:20:12','9498c473-e661-4d8e-99ff-9ec81206d979',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x882_crop_center-center_82_line/20_PHN-My-mental-health_2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1764_crop_center-center_82_line/20_PHN-My-mental-health_2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x735_crop_center-center_82_line/20_PHN-My-mental-health_2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1470_crop_center-center_82_line/20_PHN-My-mental-health_2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x588_crop_center-center_82_line/20_PHN-My-mental-health_2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1176_crop_center-center_82_line/20_PHN-My-mental-health_2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x441_crop_center-center_82_line/20_PHN-My-mental-health_2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x367_crop_center-center_82_line/20_PHN-My-mental-health_2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x882_crop_center-center_82_line/20_PHN-My-mental-health_2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1764_crop_center-center_82_line/20_PHN-My-mental-health_2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x735_crop_center-center_82_line/20_PHN-My-mental-health_2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1470_crop_center-center_82_line/20_PHN-My-mental-health_2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x588_crop_center-center_82_line/20_PHN-My-mental-health_2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1176_crop_center-center_82_line/20_PHN-My-mental-health_2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x441_crop_center-center_82_line/20_PHN-My-mental-health_2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x367_crop_center-center_82_line/20_PHN-My-mental-health_2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":882,\"3072\":1764,\"1280\":735,\"2560\":1470,\"1024\":588,\"2048\":1176,\"768\":441,\"640\":367},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"5120\",\"originalImageHeight\":\"2941\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A2priOSQWjSmKRsE44IXPJz+dVNQ1MW1lstNt0Yn2s7HJ2juR3PvVC/8A+Rif/r1b+Rpmlf8AIJg/66/41DdkbR1P/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d6c2b7\",\"#3a3345\",\"#915847\",\"#b6846e\",\"#734f93\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":882,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17530,17767,1,'nwo-logo','2021-05-18 03:35:54','2021-06-21 04:39:41','f2f2432f-3323-4eef-8b55-444a427f95c4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x67_crop_center-center_82_line/17767/nwo-logo.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x56_crop_center-center_82_line/17767/nwo-logo.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x67_crop_center-center_82_line/17767/nwo-logo.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x56_crop_center-center_82_line/17767/nwo-logo.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":67,\"640\":56},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"800\",\"originalImageHeight\":\"70\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAAQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AnX7n4/404f6kf7v9aKK0IP/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#354056\",\"#eef2f5\",\"#a5afc5\",\"#888f9e\",\"#8895b8\"],\"lightness\":60,\"placeholderWidth\":768,\"placeholderHeight\":67,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17533,17770,1,'Screen Shot 2020-06-17 at 2.12.51 pm','2021-05-18 03:37:29','2021-06-09 23:16:37','3cc879d6-21d9-469a-aef7-6426e4bd97c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x673_crop_center-center_82_line/17770/Screen-Shot-2020-06-17-at-2.12.51-pm-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x538_crop_center-center_82_line/17770/Screen-Shot-2020-06-17-at-2.12.51-pm-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x403_crop_center-center_82_line/17770/Screen-Shot-2020-06-17-at-2.12.51-pm-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x336_crop_center-center_82_line/17770/Screen-Shot-2020-06-17-at-2.12.51-pm-1.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x673_crop_center-center_82_line/17770/Screen-Shot-2020-06-17-at-2.12.51-pm-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x538_crop_center-center_82_line/17770/Screen-Shot-2020-06-17-at-2.12.51-pm-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x403_crop_center-center_82_line/17770/Screen-Shot-2020-06-17-at-2.12.51-pm-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x336_crop_center-center_82_line/17770/Screen-Shot-2020-06-17-at-2.12.51-pm-1.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":673,\"1024\":538,\"768\":403,\"640\":336},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1390\",\"originalImageHeight\":\"731\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AvM7TvO1uzRS+dh2aQt0yOPTt+VY+t3UtvMYp5I3Z0UhgeQP85ooqILnlJS6M0cnCKcdz/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#cbc3ba\",\"#28344d\",\"#97343d\",\"#d3952d\",\"#6e7f89\"],\"lightness\":49,\"placeholderWidth\":1280,\"placeholderHeight\":673,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17534,17771,1,'Screen Shot 2020-06-17 at 2.17.03 pm','2021-05-18 03:37:32','2021-06-09 23:16:38','1f271bd7-d70c-4a19-b363-83391cf65d1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x673_crop_center-center_82_line/17771/Screen-Shot-2020-06-17-at-2.17.03-pm.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x538_crop_center-center_82_line/17771/Screen-Shot-2020-06-17-at-2.17.03-pm.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x404_crop_center-center_82_line/17771/Screen-Shot-2020-06-17-at-2.17.03-pm.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x336_crop_center-center_82_line/17771/Screen-Shot-2020-06-17-at-2.17.03-pm.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x673_crop_center-center_82_line/17771/Screen-Shot-2020-06-17-at-2.17.03-pm.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x538_crop_center-center_82_line/17771/Screen-Shot-2020-06-17-at-2.17.03-pm.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x404_crop_center-center_82_line/17771/Screen-Shot-2020-06-17-at-2.17.03-pm.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x336_crop_center-center_82_line/17771/Screen-Shot-2020-06-17-at-2.17.03-pm.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":673,\"1024\":538,\"768\":404,\"640\":336},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1393\",\"originalImageHeight\":\"733\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3XQxrLtYqsZwdsfPI6j1qrNMjXcCXEExZD5ihWwBnjmiis1tcvrY/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d3c4b7\",\"#3c3739\",\"#705454\",\"#908069\",\"#85932f\"],\"lightness\":48,\"placeholderWidth\":1280,\"placeholderHeight\":673,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17535,17772,1,'Screen Shot 2020-06-17 at 2.22.28 pm','2021-05-18 03:37:34','2021-06-09 23:16:39','45c39b3e-96a7-41f2-9791-4e1a9b8bfe79',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x754_crop_center-center_82_line/17772/Screen-Shot-2020-06-17-at-2.22.28-pm.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x603_crop_center-center_82_line/17772/Screen-Shot-2020-06-17-at-2.22.28-pm.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x452_crop_center-center_82_line/17772/Screen-Shot-2020-06-17-at-2.22.28-pm.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x377_crop_center-center_82_line/17772/Screen-Shot-2020-06-17-at-2.22.28-pm.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x754_crop_center-center_82_line/17772/Screen-Shot-2020-06-17-at-2.22.28-pm.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x603_crop_center-center_82_line/17772/Screen-Shot-2020-06-17-at-2.22.28-pm.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x452_crop_center-center_82_line/17772/Screen-Shot-2020-06-17-at-2.22.28-pm.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x377_crop_center-center_82_line/17772/Screen-Shot-2020-06-17-at-2.22.28-pm.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":754,\"1024\":603,\"768\":452,\"640\":377},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1399\",\"originalImageHeight\":\"825\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6tp9QFwVggikTJyTLyOePpUpn1AzKotU2ZGWLdu/er9FA0z/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d7d1ce\",\"#3b2d39\",\"#c1375a\",\"#a67e79\",\"#956c51\"],\"lightness\":53,\"placeholderWidth\":1280,\"placeholderHeight\":754,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17536,17773,1,'Screen Shot 2020-06-17 at 2.23.12 pm','2021-05-18 03:37:37','2021-06-09 23:16:40','db44814e-4986-45bb-9e6d-9d94cc4a5812',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x672_crop_center-center_82_line/17773/Screen-Shot-2020-06-17-at-2.23.12-pm-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x538_crop_center-center_82_line/17773/Screen-Shot-2020-06-17-at-2.23.12-pm-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x403_crop_center-center_82_line/17773/Screen-Shot-2020-06-17-at-2.23.12-pm-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x336_crop_center-center_82_line/17773/Screen-Shot-2020-06-17-at-2.23.12-pm-1.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x672_crop_center-center_82_line/17773/Screen-Shot-2020-06-17-at-2.23.12-pm-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x538_crop_center-center_82_line/17773/Screen-Shot-2020-06-17-at-2.23.12-pm-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x403_crop_center-center_82_line/17773/Screen-Shot-2020-06-17-at-2.23.12-pm-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x336_crop_center-center_82_line/17773/Screen-Shot-2020-06-17-at-2.23.12-pm-1.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":672,\"1024\":538,\"768\":403,\"640\":336},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1393\",\"originalImageHeight\":\"732\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3tQfF6CTIn7s7XVc/N6VzlxdXyzafcQSyrHAwWRFcj5M9SKKKzb1NYpOJ//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d7c9c2\",\"#221c1a\",\"#926856\",\"#734b3d\",\"#817774\"],\"lightness\":46,\"placeholderWidth\":1280,\"placeholderHeight\":672,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17537,17774,1,'20_06 Project page_HPW Campaign_1','2021-05-18 03:37:39','2021-06-09 23:20:45','a17ba36a-c411-46c0-b79c-093268eafba9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x803_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x669_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x535_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x401_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x334_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x803_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x669_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x535_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x401_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x334_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":803,\"1280\":669,\"1024\":535,\"768\":401,\"640\":334},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"837\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AvPI07ztbsYpfOw7NIW6ZHHp2/KsfW7qW3nMU8kbs6KwYHkD/ADmiis4LnlJS6M0cnCKcdz//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#29334d\",\"#cdc7be\",\"#99353f\",\"#ce9524\",\"#6d7b82\"],\"lightness\":45,\"placeholderWidth\":1536,\"placeholderHeight\":803,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17538,17775,1,'20_06 Project page_HPW Campaign_3','2021-05-18 03:37:41','2021-06-09 23:20:46','e694cbf2-8b47-44e1-9a1a-c4d63008a6aa',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x803_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x669_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x535_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x401_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x334_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x803_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x669_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x535_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x401_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x334_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":803,\"1280\":669,\"1024\":535,\"768\":401,\"640\":334},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"837\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3ZFMYm2sVWM4O2PnkdR61VlmRryBJ4JiyfvFCtgDIxzRRWa2uX1sf//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d3c4b7\",\"#3a3638\",\"#907f6a\",\"#6e534f\",\"#8a9b28\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":803,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17539,17776,1,'20_06 Project page_HPW Campaign_4','2021-05-18 03:37:43','2021-06-09 23:20:47','8f00af81-506b-4fc7-a225-470e14800d2f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x894_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x745_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x596_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x447_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x372_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x894_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x745_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x596_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x447_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x372_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":894,\"1280\":745,\"1024\":596,\"768\":447,\"640\":372},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"932\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6sz6iLhhBBFJHk5JlyRzx9KlM+oGZVFqgTIyxbt371fooGmf/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d1cac5\",\"#3b2e39\",\"#b93a58\",\"#9e7776\",\"#956d4a\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":894,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17540,17777,1,'20_06 Project page_HPW Campaign_5','2021-05-18 03:37:45','2021-06-09 23:20:47','ac1c2bf2-0aa8-45e6-a014-52345aa51679',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x796_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x664_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x531_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x398_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x332_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x796_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x664_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x531_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x398_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x332_crop_center-center_82_line/20_06-Project-page_HPW-Campaign_5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":796,\"1280\":664,\"1024\":531,\"768\":398,\"640\":332},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"830\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3tQfF6Ms6fuztdVz83pXOz3V8txp1xBLKIoSElRXI+TOMkUUVm3qaxScT//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d8cac3\",\"#211c1a\",\"#926854\",\"#734a3b\",\"#807572\"],\"lightness\":46,\"placeholderWidth\":1536,\"placeholderHeight\":796,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17541,17778,1,'20_06 Project page_DFV Campaign_1','2021-05-18 03:37:47','2021-06-09 23:20:40','a3326f23-1fc6-4e43-a53c-f5ae94d4bfb2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x883_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x736_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x588_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x441_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x368_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x883_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x736_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x588_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x441_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x368_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":883,\"1280\":736,\"1024\":588,\"768\":441,\"640\":368},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"920\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AxUK7hvzt74pZCnmN5edmfl3dcUyiu+2tx30P/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#4b3b83\",\"#d27f18\",\"#824d38\",\"#925550\",\"#a46c54\"],\"lightness\":40,\"placeholderWidth\":1536,\"placeholderHeight\":883,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17542,17779,1,'20_06-Project-page_DFV-Campaign_2','2021-05-18 03:37:48','2021-06-09 23:20:40','8197e1d1-67d0-4579-ba89-871a44fcc941',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x882_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x735_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x588_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x441_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x367_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x882_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x735_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x588_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x441_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x367_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":882,\"1280\":735,\"1024\":588,\"768\":441,\"640\":367},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"919\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AkBAIJGQDyPWgsCxIGATwPSm0tfO30se11uf/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d37a04\",\"#ceccda\",\"#5b476d\",\"#c48444\",\"#986248\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":882,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17543,17780,1,'20_06-Project-page_DFV-Campaign_3','2021-05-18 03:37:50','2021-06-09 23:20:36','053af2f0-26dd-4259-b0df-e4c9fad86b5b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x870_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x725_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x580_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x435_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x362_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x870_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x725_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x580_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x435_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x362_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":870,\"1280\":725,\"1024\":580,\"768\":435,\"640\":362},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"907\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AZepFAsU0kzkvuCMCeMHviqzRPeWMflygx9dpyAOvvV3Vv+ReT6r/ACqtB/x4x/7tOK3kE9LI/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#545f69\",\"#d4ac87\",\"#9b9388\",\"#aac0c8\",\"#9db0be\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":870,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17544,17781,1,'20_06-Project-page_DFV-Campaign_4','2021-05-18 03:37:52','2021-06-09 23:20:41','b6072f37-750a-4399-9655-a81ef67ac8b7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x874_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x728_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x583_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x437_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x364_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x874_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x728_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x583_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x437_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x364_crop_center-center_82_line/20_06-Project-page_DFV-Campaign_4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":874,\"1280\":728,\"1024\":583,\"768\":437,\"640\":364},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"911\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AxsJ8vznn73HSgCMo5LkMPujH3v8ACmUV3jP/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#4c3c83\",\"#ded4d8\",\"#ae6922\",\"#9c9cc4\",\"#9c94bc\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":874,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17545,17782,1,'DV_video cover image','2021-05-18 03:37:54','2021-06-09 23:23:38','3a1eb847-4dc4-458b-9a98-414421f5ee6e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/DV_video-cover-image.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1728_crop_center-center_82_line/DV_video-cover-image.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/DV_video-cover-image.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1440_crop_center-center_82_line/DV_video-cover-image.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/DV_video-cover-image.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1152_crop_center-center_82_line/DV_video-cover-image.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/DV_video-cover-image.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/DV_video-cover-image.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/DV_video-cover-image.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x1728_crop_center-center_82_line/DV_video-cover-image.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/DV_video-cover-image.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1440_crop_center-center_82_line/DV_video-cover-image.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/DV_video-cover-image.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1152_crop_center-center_82_line/DV_video-cover-image.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/DV_video-cover-image.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/DV_video-cover-image.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"8000\",\"originalImageHeight\":\"4500\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AVy2w7MbscZpV6DJyfWiivnb6WPatrc//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d37904\",\"#55478b\",\"#614362\",\"#904c04\",\"#dc8404\"],\"lightness\":38,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17547,17784,1,'Phone_1','2021-05-18 03:38:21','2021-06-09 23:17:58','35bceca6-e226-4637-a1de-7b16fb2610a1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17548,17785,1,'19_09 PHN SP_1','2021-05-18 03:38:31','2021-06-09 23:22:47','6d906c38-4e7d-4fde-83e1-023517d780e7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1156_crop_center-center_82_line/19_09-PHN-SP_1-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x964_crop_center-center_82_line/19_09-PHN-SP_1-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x771_crop_center-center_82_line/19_09-PHN-SP_1-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x578_crop_center-center_82_line/19_09-PHN-SP_1-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x482_crop_center-center_82_line/19_09-PHN-SP_1-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1156_crop_center-center_82_line/19_09-PHN-SP_1-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x964_crop_center-center_82_line/19_09-PHN-SP_1-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x771_crop_center-center_82_line/19_09-PHN-SP_1-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x578_crop_center-center_82_line/19_09-PHN-SP_1-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x482_crop_center-center_82_line/19_09-PHN-SP_1-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1156,\"1280\":964,\"1024\":771,\"768\":578,\"640\":482},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1205\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A0otS1ueOVtzRP/yzXYv9RSReIdRjV0m8hpAoxu5yc4/hx7V1DWsDIUMS4IweKS0s4LOMpAgVScn3pWYz/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#605d4d\",\"#cecfd0\",\"#c3b39b\",\"#a39a92\",\"#b0b5a8\"],\"lightness\":59,\"placeholderWidth\":1536,\"placeholderHeight\":1156,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17549,17786,1,'19_09-PHN-SP_2','2021-05-18 03:38:43','2021-06-09 23:22:48','b75aff78-0529-415e-8764-750b706ae9fa',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1023_crop_center-center_82_line/19_09-PHN-SP_2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x852_crop_center-center_82_line/19_09-PHN-SP_2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/19_09-PHN-SP_2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x511_crop_center-center_82_line/19_09-PHN-SP_2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/19_09-PHN-SP_2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1023_crop_center-center_82_line/19_09-PHN-SP_2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x852_crop_center-center_82_line/19_09-PHN-SP_2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/19_09-PHN-SP_2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x511_crop_center-center_82_line/19_09-PHN-SP_2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/19_09-PHN-SP_2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1023,\"1280\":852,\"1024\":682,\"768\":511,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1066\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Aj0fSrO6nZI4ESCQEKA+7pnGc9ehPaq2u6da21xPAFcbVGFiACjhfU561qeDQP3HA/wBZ/wCyNVHxm7Jqc21iucdDjtUFpH//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#413b30\",\"#e1d1c3\",\"#947c68\",\"#a1b09a\",\"#909aaa\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":1023,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17550,17787,1,'19_09-PHN-SP_3','2021-05-18 03:38:51','2021-06-09 23:22:49','f4a4e1fb-b695-4288-8b39-df1e852096d7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1140_crop_center-center_82_line/19_09-PHN-SP_3-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x950_crop_center-center_82_line/19_09-PHN-SP_3-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x760_crop_center-center_82_line/19_09-PHN-SP_3-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x570_crop_center-center_82_line/19_09-PHN-SP_3-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x475_crop_center-center_82_line/19_09-PHN-SP_3-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1140_crop_center-center_82_line/19_09-PHN-SP_3-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x950_crop_center-center_82_line/19_09-PHN-SP_3-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x760_crop_center-center_82_line/19_09-PHN-SP_3-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x570_crop_center-center_82_line/19_09-PHN-SP_3-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x475_crop_center-center_82_line/19_09-PHN-SP_3-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1140,\"1280\":950,\"1024\":760,\"768\":570,\"640\":475},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1188\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6+/muI2kMPntsVSEiC85J9QaWxmnkaNpfPXcGykqqMYPXgCrMltFK5dt+4jB2uy/yNEdrFHIJFDFwMAs7Nx+JoA//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#252420\",\"#e9e9e9\",\"#adadab\",\"#877c72\",\"#a09b9d\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":1140,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17551,17788,1,'19_09-PHN-SP_4','2021-05-18 03:38:53','2021-06-09 23:22:34','a992bbd9-b0f7-4b6e-abf7-f289bf428012',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/19_09-PHN-SP_4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/19_09-PHN-SP_4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/19_09-PHN-SP_4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/19_09-PHN-SP_4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/19_09-PHN-SP_4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x864_crop_center-center_82_line/19_09-PHN-SP_4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x720_crop_center-center_82_line/19_09-PHN-SP_4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x576_crop_center-center_82_line/19_09-PHN-SP_4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x432_crop_center-center_82_line/19_09-PHN-SP_4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x360_crop_center-center_82_line/19_09-PHN-SP_4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7EsQfukilByOmKWikB//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e3e3e3\",\"#92928b\",\"#b8b8b2\",\"#acaca5\",\"#aeb4a4\"],\"lightness\":72,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17552,17789,1,'19_09-PHN-SP_5','2021-05-18 03:38:55','2021-06-09 23:21:42','7b1e3e6e-59b4-4777-8f16-ec1eb8eda4f0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1189_crop_center-center_82_line/19_09-PHN-SP_5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x991_crop_center-center_82_line/19_09-PHN-SP_5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x792_crop_center-center_82_line/19_09-PHN-SP_5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x594_crop_center-center_82_line/19_09-PHN-SP_5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x495_crop_center-center_82_line/19_09-PHN-SP_5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1189_crop_center-center_82_line/19_09-PHN-SP_5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x991_crop_center-center_82_line/19_09-PHN-SP_5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x792_crop_center-center_82_line/19_09-PHN-SP_5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x594_crop_center-center_82_line/19_09-PHN-SP_5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x495_crop_center-center_82_line/19_09-PHN-SP_5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1189,\"1280\":991,\"1024\":792,\"768\":594,\"640\":495},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1239\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AnXWtUyUmmkjcrkfKBj3PFWLDXNSVGR5I55XfC7u3tgfz9q6R9JsJJDI9pEzk5JK8miPSrKKVZI4FVlO4Y6A0rAf/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#5f5e53\",\"#c8caca\",\"#c5be9c\",\"#baa092\",\"#909190\"],\"lightness\":59,\"placeholderWidth\":1536,\"placeholderHeight\":1189,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17553,17790,1,'19_09-PHN-SP_6','2021-05-18 03:38:57','2021-06-09 23:21:04','82679d4f-7391-4422-8089-a030db0f008c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/19_09-PHN-SP_6.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/19_09-PHN-SP_6.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/19_09-PHN-SP_6.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/19_09-PHN-SP_6.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/19_09-PHN-SP_6.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/19_09-PHN-SP_6.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/19_09-PHN-SP_6.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/19_09-PHN-SP_6.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/19_09-PHN-SP_6.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/19_09-PHN-SP_6.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"800\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6W7jldj5Lojb23b43bPJxyPbFXRuzyBj60UUgP/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e3e8e2\",\"#282823\",\"#83645f\",\"#928d8c\",\"#7b7a62\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17554,17791,1,'19_09-PHN-SP_1-1','2021-05-18 03:38:59','2021-06-09 23:22:46','6d57e362-abc6-4bfd-b0fd-562f83766b07',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x806_crop_center-center_82_line/19_09-PHN-SP_1-1-2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x672_crop_center-center_82_line/19_09-PHN-SP_1-1-2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x537_crop_center-center_82_line/19_09-PHN-SP_1-1-2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x403_crop_center-center_82_line/19_09-PHN-SP_1-1-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x336_crop_center-center_82_line/19_09-PHN-SP_1-1-2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x806_crop_center-center_82_line/19_09-PHN-SP_1-1-2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x672_crop_center-center_82_line/19_09-PHN-SP_1-1-2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x537_crop_center-center_82_line/19_09-PHN-SP_1-1-2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x403_crop_center-center_82_line/19_09-PHN-SP_1-1-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x336_crop_center-center_82_line/19_09-PHN-SP_1-1-2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":806,\"1280\":672,\"1024\":537,\"768\":403,\"640\":336},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"840\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AupodwIJjdEuXGS20kgU2xstReGT7JJP5ZAUNvEfQ/wD16KKmw7n/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#cfcac3\",\"#45453a\",\"#7e795f\",\"#575b53\",\"#6a5952\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":806,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17555,17792,1,'White-paper_iPad_1','2021-05-18 03:39:01','2021-06-09 23:17:35','015453c4-3dfe-4bc4-8482-0ae17083b0fc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/White-paper_iPad_1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2048_crop_center-center_82_line/White-paper_iPad_1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/White-paper_iPad_1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1706_crop_center-center_82_line/White-paper_iPad_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/White-paper_iPad_1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/White-paper_iPad_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/White-paper_iPad_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/White-paper_iPad_1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/White-paper_iPad_1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_3072x2048_crop_center-center_82_line/White-paper_iPad_1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/White-paper_iPad_1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2560x1706_crop_center-center_82_line/White-paper_iPad_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/White-paper_iPad_1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/White-paper_iPad_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/White-paper_iPad_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/White-paper_iPad_1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"3072\":2048,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"5616\",\"originalImageHeight\":\"3744\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6+1ZfJAicSxvgiQMCG7dvpWF4ispNSfyIwfuc5Xoef8AGp9QJimiER2AEAbeMVagJaKJ2JLHqT1NY15unDmRUEnI/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dadddc\",\"#3f4b40\",\"#d7aa40\",\"#b0a278\",\"#7d583f\"],\"lightness\":57,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17556,17793,1,'header','2021-05-18 03:39:17','2021-06-09 23:25:10','350cde02-818b-4896-9b56-61c0513e8c5e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/17793/header.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/17793/header.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/17793/header.jpg\"},\"optimizedWebPImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/17793/header.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/17793/header.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/17793/header.jpg.webp\"},\"variantSourceWidths\":[\"1024\",\"768\",\"640\"],\"variantHeights\":{\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1200\",\"originalImageHeight\":\"600\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7zbtJ+8QTnk9KX8DRRQB/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#eceeeb\",\"#5f646f\",\"#a4a5ae\",\"#d3bc84\",\"#928494\"],\"lightness\":67,\"placeholderWidth\":1024,\"placeholderHeight\":512,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17557,17794,1,'reasons-to-stay','2021-05-18 03:39:18','2021-06-09 23:18:59','8d1e31ef-1217-4f34-94d5-3c1cbe1621f7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x597_crop_center-center_82_line/17794/reasons-to-stay.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x448_crop_center-center_82_line/17794/reasons-to-stay.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x373_crop_center-center_82_line/17794/reasons-to-stay.jpg\"},\"optimizedWebPImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x597_crop_center-center_82_line/17794/reasons-to-stay.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x448_crop_center-center_82_line/17794/reasons-to-stay.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x373_crop_center-center_82_line/17794/reasons-to-stay.jpg.webp\"},\"variantSourceWidths\":[\"1024\",\"768\",\"640\"],\"variantHeights\":{\"1024\":597,\"768\":448,\"640\":373},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1200\",\"originalImageHeight\":\"700\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AgA8qWSG5fJxg4ycHuKtaY88AMNpNKpmkAzgDJ7c5rvKx3/5DDf76/wBKm1hn/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#5f5e53\",\"#cacdce\",\"#beac96\",\"#90918f\",\"#abb492\"],\"lightness\":58,\"placeholderWidth\":1024,\"placeholderHeight\":597,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17558,17795,1,'domestic-violence','2021-05-18 03:39:20','2021-06-09 23:23:29','9bc0d861-abf3-40dd-b01b-b1546febcbec',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"625\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_625x625_crop_center-center_line/domestic-violence.jpeg\"},\"optimizedWebPImageUrls\":{\"625\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_625x625_crop_center-center_line/domestic-violence.jpeg.webp\"},\"variantSourceWidths\":[\"625\"],\"variantHeights\":{\"625\":625},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"625\",\"originalImageHeight\":\"625\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AybeHz5ducAcmnXtq1ncGJ+uMj6VAGZeUOD9cUFmblzk+5zXXyz9pe+nYu65bW1P/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#4b3b82\",\"#d47a09\",\"#dfc9af\",\"#997464\",\"#4c3e9c\"],\"lightness\":48,\"placeholderWidth\":625,\"placeholderHeight\":625,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17559,17796,1,'rental','2021-05-18 03:39:21','2021-06-09 23:19:01','bef517cb-951c-475f-961b-0e84aa6e47fb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"625\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_625x625_crop_center-center_line/rental.jpeg\"},\"optimizedWebPImageUrls\":{\"625\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_625x625_crop_center-center_line/rental.jpeg.webp\"},\"variantSourceWidths\":[\"625\"],\"variantHeights\":{\"625\":625},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"625\",\"originalImageHeight\":\"625\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AvWniHhllJDrwwClsfrVqPWYLi6it5JCplbYP3ZGT+f0rOtNOe3eOC8KpK3DH7w5Py59zV2a0j068hklXzPLIclBjaM9fesrLqmdNqdt/w/4J/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e6dcce\",\"#7f2a4d\",\"#a77c43\",\"#5a72ae\",\"#a17c7b\"],\"lightness\":57,\"placeholderWidth\":625,\"placeholderHeight\":625,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17560,17797,1,'nwo-footer','2021-05-18 03:39:22','2021-06-21 04:38:03','01a6a57a-3614-47dd-bf71-46a961f4b59d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x204_crop_center-center_82_line/17797/nwo-footer.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x153_crop_center-center_82_line/17797/nwo-footer.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x128_crop_center-center_82_line/17797/nwo-footer.jpg\"},\"optimizedWebPImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x204_crop_center-center_82_line/17797/nwo-footer.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x153_crop_center-center_82_line/17797/nwo-footer.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x128_crop_center-center_82_line/17797/nwo-footer.jpg.webp\"},\"variantSourceWidths\":[\"1024\",\"768\",\"640\"],\"variantHeights\":{\"1024\":204,\"768\":153,\"640\":128},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1200\",\"originalImageHeight\":\"240\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAAwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A52g0UV1mJ//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#2a3c64\",\"#8293bb\",\"#6c84ac\",\"#607ca0\",\"#59698c\"],\"lightness\":46,\"placeholderWidth\":1024,\"placeholderHeight\":204,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17561,17798,1,'PHN_1','2021-05-18 03:39:22','2021-06-09 23:16:31','52c0d79d-aea3-4820-a075-6e7564e22ba3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"300\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_300x300_crop_center-center_line/PHN_1.jpg\"},\"optimizedWebPImageUrls\":{\"300\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_300x300_crop_center-center_line/PHN_1.jpg.webp\"},\"variantSourceWidths\":[\"300\"],\"variantHeights\":{\"300\":300},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"300\",\"originalImageHeight\":\"300\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AW11O6lciW8mVQuQN5HXP6cUQvdTNDFPJdMHcDLOSMNjHP51dk8O6nE73O60O0bti57c4Hy1DpumXM2qWUspYAHc45GMcgVNrD3R//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#54554d\",\"#ccc1b3\",\"#9f907a\",\"#96a5b7\",\"#b2b68e\"],\"lightness\":54,\"placeholderWidth\":300,\"placeholderHeight\":300,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17570,17807,1,'Break away from the same-same with custom illustration','2021-05-18 03:44:18','2021-05-18 03:44:18','6ed68f31-1c30-44b4-9f9e-1a4f65fbca42',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'\n<h2>There’s nothing more special than something made just for you.</h2>\n\n\n\n<p>You hold it loudly and proudly for all to see—and they notice because there’s nothing else in the world quite like it. And this makes you treasure it that little bit more.</p>\n\n\n\n<p>The dream of an illustrator is to have time, budget and ability to craft a bespoke masterpiece for every job that comes across the desk.</p>\n\n\n\n<p>That dream doesn’t turn to reality very often. But that doesn’t mean your brand has to revert to using the same old stock illustrations everyone else uses either.</p>\n\n\n\n<p>There are so many ways to get over those hurdles when a project doesn’t have time or budget to allow for a custom piece.</p>\n\n\n\n<p>A lot of the time, stock illustration can be tweaked to give it the edge it needs to stand out from the crowd.</p>\n\n\n\n<p>Change up the colours, mix up the style and jazz up the faces.</p>\n\n\n\n<p>Sometimes stock forms the base for us to build something fresh. And other times there might already be the perfect stock illustration that tells the right story without much tweaking at all.</p>\n\n\n\n<p>Whatever the constraints—budget, time, brief—there’s always a way break free. It just takes some thinking outside of the box. If you’re drowning in a sea of same-same, come chat to us and we’ll get you out of there in no time.</p>\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17571,17808,1,'Why you need a six-month comms strategy for your website','2021-05-18 03:45:31','2021-05-18 03:45:31','2c305257-be39-4616-b68d-29bf439a7f0b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p>You know the feeling: an ad promise draws you in, you click through to the website and you’re impressed because it looks super slick.</p>\n<p>Then you actually read it. And now you’re disappointed because it doesn’t actually say anything other than the surface detail of a business.</p>\n<p>These websites are so common they’ve earned the term ‘brochure’ website. They look great, but that’s it.</p>\n<p>We see it all the time and think it’s such a shame. Why? Because a website can be so. much. more.</p>\n<p>How can your website escape the dreaded brochure effect? In short, don’t set and forget.</p>\n<p>Good websites move, breathe and live—just like your business does.</p>\n<p>Everyone knows it’s good practice to regularly update your website messaging and functionality. But you need to actually get around to doing it and—more importantly—have a reason for making a change.</p>\n<p>So, what’s your strategy?</p>\n<p>A website communication and engagement strategy has so many benefits. But the biggest one by far is SEO.</p>\n<p>By biggest we don’t mean the most confusing or time-consuming. It simply boils down to content. Fresh content tells Google: This is who I am! This is what I do! See me! Hear me!</p>\n<p>Google’s algorithms are super clever because they serve up the sort of content people want. But it means Google can only give people the content they want if it knows about your business and what you’re offering.</p>\n<p>Of course, there are some technical aspects to consider. But your best SEO strategy is a long-term communications plan.</p>\n<p>Do you know what the next six months for your website content looks like? What can you offer your customers other than opening hours and where you’re located?</p>\n<p>By developing a digital communications strategy, your website gets updated regularly, which helps Google share your message with the right people at the right time.</p>\n<p>Potential customers will find you, engage with you and trust you enough to get in touch.</p>\n<p>You have so many options for interesting content. It could be a thought-leadership piece, event, media release, whitepaper, testimonial—the list can go on.</p>\n<p>We have a huge amount of communications tools and angles we can develop to bolster your web presence.</p>\n<p>Google also loves a fast, responsive website. Optimising your website by using the latest version of your content management system will ensure your site is running smoothly and as fast as it can.</p>\n<p>Likewise, this will make your site more secure and help prevent security breaches (particularly important if you use WordPress).</p>\n<p>We also offer long-term website maintenance plans. These include detailed server monitoring and ensuring your CMS and plugins are up-to-date.</p>\n<p>For more critical sites, we offer zero downtime code-update deployments.</p>\n<p>Talk to us about a long-term strategy for your website so it can be more than just another ‘brochure site’.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17572,17809,1,'Pretty or powerful? And can you have it all?','2021-05-18 03:46:06','2021-05-18 03:46:06','ea28f997-98d2-472d-a3ab-2e8cc38a8329',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,' \n\nBeing a commercial creative means someone is hoping, expecting and paying for a result.\n\nBut just because something is creative in its execution doesn’t mean it’s going to be effective in achieving its goal.\n\nHere are five pitfalls to avoid when procuring creative services:\n<ol>\n 	<li>Hiring a single creative, like a designer, to be a whole creative team. Your supplier will end up working in one strength and many weaknesses.</li>\n 	<li>Procuring from a supplier who can use design software but isn’t a designer. The work will miss the mark despite looking okay.</li>\n 	<li>Working with a graphic designer who isn’t skilled in the type of design you need (like brand design). You’ll get a pretty logo lacking in brand story and meaning.</li>\n 	<li>Jumping straight into design without a strategy. You’ll receive design work that’s lovely, even beautiful… but not strategic.</li>\n 	<li>Failing to define what success looks like. Your supplier’s work will lack purpose. Instead, make sure you have a clear goal that measures the biggest outcome of all: return on investment.</li>\n</ol>\nSo yes, creative work can be both pretty and powerful. And you can have it all… if you invest in a team of strategically focused creatives.\n\nCreative agencies cost more but are teams for a reason. We\'re much more powerful together than on our own.\n\nJust like a hand of aces vs a single 3.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17573,17810,1,'Seven mistakes people make building websites','2021-05-18 03:46:30','2021-05-18 03:46:30','91c2b745-0d2a-4caa-ad49-4c644caf83ac',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p>Open your website, the window to your business. What do you see?</p>\n<p>The advertising you’ve done, the marketing budget you’ve spent, the countless planning meetings your team has attended—all that time and money you’ve invested has driven a potential customer to your website.</p>\n<p>Now is the moment.</p>\n<p>After months—maybe years—of effort, your potential customer will make their decision in seconds.</p>\n<p>They may love what they see and continue to be interested. Or they may leave, with their memory of you going up in smoke and your investment with it.</p>\n<p><em>That’s</em> why it’s so important to build an effective website.</p>\n<p>Framing a website to contain everything you need is challenging. Some websites become too word-heavy, while others lack structure and narrative.</p>\n<p>Getting your website right from the beginning can save you a lot of pain in the long run.</p>\n<p>Here\'s our tips to tackling website mistakes.</p>\n<h2><strong>1. Unacknowledged expectations</strong></h2>\n<p>What do you expect your website to do for you? You want this investment to count, so be informed, decide what you need and be intentional with your allocated budget. There are only two options—either start with careful planning and consultation and spend a realistic budget, or jump in with assumptions … and experience scope-creep, frustration and the need to pour more money in later. Your time and money (and sanity) are too valuable to waste on option two. So, choose wisely.</p>\n<p>It’s also important to understand the purpose of your website. A website for a website’s sake helps no-one. Your business is unique so your website should be, too. Make it crystal clear—state who you are, what you do and what you promise your customers. Set yourself up for success by providing your developer with a clear website purpose, an informed plan and a predetermined budget.<strong> </strong></p>\n<h2><strong>2. A guess is no good </strong></h2>\n<p>Analytics, metrics or key performance indicators (KPIs)—they’re all clever ways to study the website user journey. What do you need your website to achieve? This will depend on what kind of product or service you offer and the kind of experience you want to create for the user. Lay out your objectives and match them with KPIs.</p>\n<p>There are plenty of ways to get insight into your website. Consider bounce rates, session duration or pages per session metrics. Or you could sharpen your content strategy by watching goal conversion rates of passive to active website users. Understanding your metrics and the goals you want to achieve will also help you to understand how your website interacts with its digital ecosystem.</p>\n<h2><strong>3. It’s not for you</strong></h2>\n<p>It might be <em>about</em> you, but the website isn’t <em>for</em> you. Optimising your website starts with learning what your users are responding well to. How are they getting to your website? What kind of content are they reading? When do they read it? How long are they staying?</p>\n<p>By understanding your metrics you can shape a truly effective website experience for your customers. It’s all in the detail—from content creation to search engine optimisation (we have some helpful tips <a href=\"http://newwordorder.com.au/top-20-tips-seo/\">here</a>).</p>\n<h2><strong>4. Information overload</strong></h2>\n<p>Your website is where your potential customers will go to check your credibility. Credibility is about trust. One way to build trust is to position yourself and your organisation as experts. However, credibility isn’t just about what you know—it’s about who you are. Include stories and testimonials about you and your organisation to avoid information overload. Then, potential customers will leave your website satisfied that you can be trusted ... and they\'re one step closer to doing business with you.</p>\n<h2><strong>5. Losing the user</strong></h2>\n<p>Many people complain about feeling lost on websites. The customer journey should be clear. If the information on your website is simple and structured, you can guide visitors on the path you’d like them to take. Use tabs and sub-pages for different categories, and make it logical. For best results, spend time studying user movements and running trials and tests. Over time your predictions will become more accurate as you get to know your audience.</p>\n<h2><strong>6. Wasted words</strong></h2>\n<p>Capture your customers quickly. As we’ve previously discussed in our <a href=\"http://newwordorder.com.au/writing-for-readable-web/\">Writing for (readable) web</a> article, there are some hallmarks we use when writing web copy for our clients. Here are a few of them:</p>\n<ul>\n<li>short, effective sentences (say the same information with less)</li>\n<li>sub-headings and headings containing keywords</li>\n<li>everyday words the average reader can easily understand (plain English)</li>\n<li>direct language</li>\n<li>consistent, logical structuring of information.</li>\n</ul>\n<h2><strong>7. Don’t be unfriendly</strong></h2>\n<p>How does your website display on mobile devices and tablets? Due to the growth in user visits from non-desktop devices, it’s now safe to say that an unresponsive website—regardless of your industry and demographic—will cost you customers and revenue. When your website isn’t responsive, your customers won’t look for the closest desktop computer ... they’ll look for another website. Instead, make your website as friendly as possible to give your customers the same quality of experience online that they experience offline.</p>\n<p>Looking for inspiration? Here are some recent websites we’ve designed and built.</p>\n<p><a href=\"http://newwordorder.com.au/project/pursuit-minerals/\">Pursuit Minerals</a></p>\n<p><a href=\"http://newwordorder.com.au/project/13family/\">13family</a></p>\n<p><a href=\"http://newwordorder.com.au/project/physiotas/\">Physiotas</a></p>\n<p><a href=\"http://newwordorder.com.au/project/charters-towers/\">School of Distance Education, Charters Towers</a></p>\n\n\n\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17574,17811,1,'I Stock 911033734','2021-05-18 03:47:57','2021-06-09 23:16:19','9e7fdf2a-5b99-4100-bb84-34d25940190d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1081_crop_center-center_82_line/17811/iStock-911033734.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x900_crop_center-center_82_line/17811/iStock-911033734.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x720_crop_center-center_82_line/17811/iStock-911033734.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1441_crop_center-center_82_line/17811/iStock-911033734.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x540_crop_center-center_82_line/17811/iStock-911033734.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x450_crop_center-center_82_line/17811/iStock-911033734.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1081_crop_center-center_82_line/17811/iStock-911033734.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x900_crop_center-center_82_line/17811/iStock-911033734.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x720_crop_center-center_82_line/17811/iStock-911033734.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1441_crop_center-center_82_line/17811/iStock-911033734.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x540_crop_center-center_82_line/17811/iStock-911033734.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x450_crop_center-center_82_line/17811/iStock-911033734.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1081,\"1280\":900,\"1024\":720,\"2048\":1441,\"768\":540,\"640\":450},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2063\",\"originalImageHeight\":\"1452\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A4qMZXjrSybSvvUcZI6GiQnFdt/dBH//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#140c4c\",\"#7a1d7c\",\"#080429\",\"#470c5f\",\"#4c1b76\"],\"lightness\":20,\"placeholderWidth\":1536,\"placeholderHeight\":1081,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17575,17812,1,'The building blocks of branding','2021-05-18 03:48:02','2021-05-18 03:48:02','d5335e66-ae34-4bc0-b42d-baf430c5ecf9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p class=\"p1\">Through 20 years of branding experience, we’ve come to understand stakeholder engagement is essential for a brand to have cut-through.</p>\n<p class=\"p1\">We’ve engaged with our clients’ stakeholders for many years and in many ways—ranging from formal, formative market research through to in-depth focus groups, workshops, community forums, brand satisfaction surveys and phone interviews.</p>\n<p class=\"p1\">No matter the method, what really counts is that we capture how people relate to your brand. That relationship leads to relevance and then the ultimate goal: resonance.</p>\n\n<h2 class=\"p1\">Relationship</h2>\n<p class=\"p1\">Every great brand is built on relationship.</p>\n<p class=\"p1\">When you form healthy relationships with stakeholders, you open yourself up to a range of opinions. Generally, feedback gets more constructive as the relationship grows healthier.</p>\n<p class=\"p1\">If you’re the brand manager, it can feel a bit like tough love at first—but it does get easier.</p>\n\n<h2 class=\"p1\">Relevance</h2>\n<p class=\"p1\">So much more than a logo, brands are heavy with meaning for stakeholders. And so if the environment changes but your brand doesn’t, the meaning is lost.</p>\n<p class=\"p1\">A lot of the stakeholder feedback we hear about brands is that they’re outdated or lack appeal. Without relevance, your stakeholders no longer feel the love.</p>\n<p class=\"p1\">Constantly retune yourself to your stakeholders and you’ll keep fulfilling their needs.</p>\n\n<h2 class=\"p1\">Resonance</h2>\n<p class=\"p1\">Resonance is where understanding meets impact.</p>\n<p class=\"p1\">A brand rich with resonance is the holy grail of marketing and, true to legend, few reach it.</p>\n<p class=\"p1\">That’s because resonance means your brand is a perfect fit for your stakeholders’ environment, pain points, wants and emotional connection.</p>\n<p class=\"p1\">Resonance engenders attention and respect, and turns want to need.</p>\n<p class=\"p1\">And when stakeholders can’t live without your brand? Happy days.</p>\n\n<h2 class=\"p1\">The 3Rs start here</h2>\n<p class=\"p1\">Whether you’re looking to name and brand or rename and rebrand, your brand journey starts with understanding your stakeholders.</p>\n<p class=\"p1\"><a href=\"http://newwordorder.com.au#contact\"><span class=\"s1\">Talk to us</span></a> about how to take your first steps.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17576,17813,1,'How to really consult your stakeholders','2021-05-18 03:48:36','2021-05-18 03:48:36','75f30fef-8220-432c-8f17-10f46dc11f0b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,' \n<p class=\"p1\">Whether they are inside, outside, removed or closely involved—stakeholders have the insight businesses need for long-term growth and sustainability.</p>\n<p class=\"p1\">If they are a stakeholder, they have a connection with you.</p>\n<p class=\"p1\">And like any other relationship, they need to know their connection, time and opinions are valued.</p>\n<p class=\"p1\">It often takes an open mind to find what works for you and the stakeholder.</p>\n<p class=\"p1\">Finding this place of mutual benefit can lead to business growth and longevity.</p>\n<p class=\"p1\">We’ve broken down our approach to nurturing stakeholder relationships for meaningful engagement.</p>\n\n<h2>Your stakeholder is anyone who can be impacted by your business.</h2>\n<p class=\"p1\">Once you really understand this, you’ll start to notice the cycle of impact between the stakeholder and your business. And, this is partly why we begin to engage with stakeholders—to understand how different groups are responding, reacting or behaving.</p>\n\n<h3>But who are they, really?</h3>\n<p class=\"p1\">Now, go deeper to really understand the nuances of your stakeholder groups.</p>\nYour engagement plan should be detailed enough to allow for different levels of accessibility, and demographic and cultural considerations. The better you nuance, the greater the feeling of respect and care you’ll engender.\n<h3>What do I need to achieve here?</h3>\n<p class=\"p1\">There are varying degrees of impact across the common types of engagement—inform, consult, involve, collaborate and empower. Every impact is a win for you.</p>\n<p class=\"p1\">By inviting stakeholders to provide advice and guidance, you are showing interest and genuine regard for their opinions.</p>\n\n<h3>Let’s talk</h3>\n<p class=\"p1\">A healthy and productive conversation is two-way. We pursue positive and productive conversations with stakeholders because we need to understand stakeholder perspectives, and we need to hear it from them.</p>\n\n<h3>Bye for now</h3>\n<p class=\"p1\">The conversation will close, but the relationship isn’t over. Stakeholders have given their time, effort and reflections. It’s your turn to respond with accuracy, timeliness and balance.</p>\n<p class=\"p2\">The truth is, these conversations take patience, a steadfast commitment to values, sometimes sacrifice, and always an open mind.</p>\n<p class=\"p2\">At NWO, we care about stakeholder engagement because we regularly witness the impact it has on the health of businesses and organisations.</p>\n<p class=\"p2\">Is it important to you?</p>\n<p class=\"p2\"><a href=\"http://newwordorder.com.au#contact\">Talk to us about stakeholder engagement today</a>.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17577,17814,1,'Top 20 tips for SEO','2021-05-18 03:49:00','2021-05-18 03:49:00','2c3b597b-bb03-4543-a45f-27e7d319689d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Good SEO starts with a bit of DIY.\n\nSure, there are loads of experts and agencies out there that specialise in the field, and many of them do a great job.\n\nBut there’s actually plenty you can do yourself before you even need to look for an external supplier to help with your SEO.\n<h2>Get your SEO checklist</h2>\nTo get you started on your next SEO DIY project, we’ve put together a top 20 checklist.\n<ol>\n 	<li><strong>Do your research</strong>—Identify key search terms, words and phrases, and check out competitors’ sites.</li>\n 	<li><strong>Work out where you are now</strong>—As soon as possible, keep a regular record of where your site currently ranks in search results, using various words, phrases and questions.</li>\n 	<li><strong>Work out where you want to be</strong>—Define your goals early on so you can measure your progress and adjust your strategy as you go along.</li>\n 	<li><strong>Make your content relevant</strong>—Search engines provide the most relevant results to a searcher’s query, so write content based on what people might search for.</li>\n 	<li><strong>Improve the quality of your content</strong>—Publish helpful, useful articles, videos and other types of media that people will want to engage with.</li>\n 	<li><strong>Think about user experience</strong>—Make sure your site is easy to navigate, with plenty of relevant internal links to keep users on your page for longer.</li>\n 	<li><strong>Ensure your site is responsive</strong>—Is your website designed to resize for viewing on desktop, tablet and mobile devices? It should be.</li>\n 	<li><strong>Include plenty of internal links</strong>—This helps pushes traffic around your site, building higher ‘trust signals’ for Google, and gives your audience more to read.</li>\n 	<li><strong>Write meta descriptions</strong>—This short paragraph of text under your page’s URL in search results can really improve the chance of someone clicking on it.</li>\n 	<li><strong>Include title tags</strong>—These few key words describing the page and your brand name tell visitors and search engines what your site is about in the most succinct way possible.</li>\n 	<li><strong>Tag your images</strong>—Search engines cannot ‘see’ images but they can ‘read’, so it’s important to describe any pictures you upload to your site.</li>\n 	<li><strong>Create evergreen content</strong>—More thoughtful and practical advice-based articles can create better results over the long term. Top 20 list, anyone?</li>\n 	<li><strong>Consider your domain name</strong>—Having a ‘keyword-rich’ domain name can improve ranking but can also lead to closer scrutiny by search engines.</li>\n 	<li><strong>Think about headlines</strong>—Make headlines as snappy, attractive and descriptive as possible, and stay away from clickbait.</li>\n 	<li><strong>Turn on comments</strong>—This helps generate a community of engaged users and, whatever their opinion of your content, you’ll know it’s being read.</li>\n 	<li><strong>Go social</strong>—By using social media channels as a genuine way to interact with customers, you can help generate interest in your brand and drive traffic to your site.</li>\n 	<li><strong>Watch your on-site advertising</strong>—Intrusive ads can destroy the pleasure of viewing your content and also slow your site down (not good for SEO).</li>\n 	<li><strong>Avoid keyword stuffing</strong>—Some search engines will actually penalise you for obviously overusing certain keywords on your pages.</li>\n 	<li><strong>Be aware of duplicated content</strong>—If two sites publish identical content, search engines will only index one of those pages.</li>\n 	<li><strong>Don’t hide links and text</strong>—Doing things like hiding white keyword-stuffed text on a white background or hiding a link in a full stop is likely to be punished by search engines.</li>\n</ol>\nFollow these tips and you’ll be well on your way up the rankings in no time!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17578,17815,1,'Lightbulbs','2021-05-18 03:49:47','2021-06-21 04:38:46','67a3558c-b767-4090-9930-7e1673fb3f17',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/17815/lightbulbs.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/17815/lightbulbs.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/17815/lightbulbs.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/17815/lightbulbs.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/17815/lightbulbs.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/17815/lightbulbs.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/17815/lightbulbs.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/17815/lightbulbs.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/17815/lightbulbs.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/17815/lightbulbs.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/17815/lightbulbs.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/17815/lightbulbs.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"1280\":853,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2121\",\"originalImageHeight\":\"1414\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7nyWxjecfU1ErF7h4Pmyozu7HP8An9at0lAH/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e4e3e3\",\"#d29743\",\"#959593\",\"#4e8c99\",\"#98688f\"],\"lightness\":65,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17579,17816,1,'Simplifying the complex: Fifteen years of marketing schools','2021-05-18 03:49:52','2021-05-18 03:49:52','bf855a77-7c9c-40ea-8da1-a610adfa9645',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<span>After 20 years of marketing—including 15 years working with schools across Queensland and New South Wales—I am steadfast in my belief that there is no marketing challenge as complex as that faced by schools.</span>\n\n<span>In what other industry would you find thousands of individual stakeholders—students, parents, teachers, alumni and more—all with do-or-die expectations?</span>\n\n<span>Or an environment that can, quite honestly, change the trajectory of children’s lives?</span>\n\n<span>Then you have the two very distinct markets—internal and external—often with very different needs that need to be met with minimal budgets.</span>\n\n<span>The experience of school changed little for nearly a century but, in the past 20 years, it has evolved in such leaps and bounds that today’s parents struggle to recognise it.</span>\n\n<span>Philosophically, there are few industries I can think of that have such a strong evidence base to guide practice—here I’m thinking of teaching and learning—yet the required outcome is often diametrically opposed to it. Looking forward to the arrival of ATAR, anyone?</span>\n\n<span>It’s little wonder that I find the business of marketing schools endlessly fascinating.</span>\n\n<span>Only this morning I was in another principal’s office, talking through these very complexities. In our conversation, we touched on what I’ve discovered over the years are three bedrock principles every school needs as their marketing foundation. They’re my way of transforming a little of the complex into the simple.</span>\n<h3>1. Work out what makes you unique</h3>\n<span>Marketing and enrolments teams live and die by their numbers. It is endlessly tempting, then, to try to go wide in your appeal so that you create the biggest possible net. In practice, though, it means no-one knows what you stand for. The better alternative is to embrace what makes you unique and then market that hard. You’ll end up attracting families that are the right fit for you and work hard as your ambassadors. Internally, there’ll be great cohesion, too, because you’ll attract and retain great educators who get what you’re about and support it in their words and actions.</span>\n<h3><span>2. Don’t be afraid to like you’re unique</span></h3>\n<span>If you’re bored one day in your office, try this game. Get ads from three schools, and then block out their hats and uniforms. Can you still tell them apart? It astounds me that we continue to use sterile, look-alike images—hey, here’s a girl in a lab coat with a test tube as proof that we promote girls in STEM!—that don’t reflect the day-to-day experience of what it is to learn at your school. Celebrate your uniqueness—and set yourself apart from your competitors—by choosing unique visual styles and photography.</span>\n<h3>3. Now stay unique</h3>\n<span>Over time, teachers and leaders of schools get to know each other pretty well. Principals, in particular, know other schools like bookies know racehorses. The net result in marketing is that your great idea quickly becomes next year’s norm… and after a few years, what was edgy is simply outdated. Wise schools invest in a middle ground here. They start off strong and then review and refresh their brand every year or two. That way, subtle tweaks don’t destabilise your internal audience but you stay fresh and relevant externally.</span>\n\n \n\n<span>--</span>\n\n \n<h3><span>Want to know more?</span></h3>\n<span>Suzanne advises schools on sustainable marketing strategy that helps them get the most from their internal resources. To chat, phone 07 3334 8340 or <a href=\"mailto:suzanne@newwordorder.com.au\">email</a>.</span>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17580,17817,1,'What is marketing automation?','2021-05-18 03:50:22','2021-05-18 03:50:22','1c5f7cdc-c98e-449f-bf59-6b10d2a6569c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Marketing what? The word automation can sound like a coder’s dream and everyone else’s nightmare.\n\nBut the truth is that if your business has prospects and customers and communicates with them in any way, then you already have most of the pieces needed to play with marketing automation.\n<h2>Matching pieces</h2>\nYou see, marketing automation is actually both a business owner’s dream and a marketer’s dream. Why? Because it’s software that helps sales and marketing to come together in order to grow revenue. Most marketing automation software includes the following components:\n\n<strong>CRM</strong> (customer relationship management): The software will include a built-in CRM for storing your prospects and customers’ data and/or it will integrate with other CRMs such as Salesforce, Pipedrive, Nimble or Zoho.\n\n<strong>Campaigns: </strong>These can include any type of lead-gen, lead-nurturing and sales-closing campaigns—not just email but as broad as social, online, trade shows, webinars, Google Adwords, blogs and so on. Basically, it’s anywhere where the call to action leads to someone filling out a form online or liking a page. Once again, marketing automation software will include some or all of these tools built-in and it will play well with other software you’re already using.\n\n<strong>Analytics and reports: </strong>In the same way that email marketing software such as Mailchimp and Campaign Monitor provides reports on open rates, clicks and unsubscribes, marketing automation software takes it a step further. You can run reports on all of your online and offline campaigns and track engagement with your website. Then you can combine these statistics with your sales data to measure ROI from the generation of a lead right through to the close of sale.<strong> </strong>\n<h2>The kicker</h2>\nAll of these things exist outside of marketing automation. What makes marketing automation so powerful is how it brings them all together. The software uses triggers and workflows to automate time-consuming sales and marketing processes such as scoring, segmenting leads based on fit and engagement, and matching content to leads’ interests and pain points.\n\nThe result is highly personalised marketing that uses tailored and dynamic content to nurture every lead as if it was your most important one—from first touchpoint right through to closing a sale and beyond.\n<h2>Ask us to run a workshop for your team</h2>\nMost marketers we talk to know the need for marketing automation but don’t have time to research the best option for them.\n\nRight now, we’re running a limited number of free one-hour workshops to help your team to determine the right fit for your strategy, and the best options available on the market.\n<h3> </h3>\n<h3> </h3>\n<h3>Book a workshop</h3>\n\n\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17581,17818,1,'Motion','2021-05-18 03:51:13','2021-06-21 04:38:10','c6e9adc5-37b0-4510-b352-6b1ef1e94828',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/17818/motion.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/17818/motion.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/17818/motion.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/17818/motion.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/17818/motion.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/17818/motion.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1024_crop_center-center_82_line/17818/motion.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x853_crop_center-center_82_line/17818/motion.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x682_crop_center-center_82_line/17818/motion.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x1365_crop_center-center_82_line/17818/motion.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x512_crop_center-center_82_line/17818/motion.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x426_crop_center-center_82_line/17818/motion.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"1280\":853,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2120\",\"originalImageHeight\":\"1414\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5aO2jlGFHzUktiUTccCm2xIcYJqS4YnqTXvVUpO9rHoU4QdLma1P/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#33047d\",\"#cf04bb\",\"#5804e8\",\"#89049f\",\"#3e04b7\"],\"lightness\":35,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17582,17819,1,'Getting the most from motion','2021-05-18 03:51:16','2021-05-18 03:51:16','0429e4ee-9d67-4d85-afaa-f12db7d3bf49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Video can be a great way to present information in an engaging format, with very little input required from the viewer. No matter what topic you’re covering, there’s always a way to bring it to life in video.\n<h3><strong>More bang for your buck</strong></h3>\nThe thing is, when most people think about creating a video, they think of it being extremely expensive. While that may have been the case years ago, nowadays it can actually be a very cost-effective exercise – particularly thanks to animation.\n\nWhen time is of the essence, animated videos can often be created fairly quickly and give you great bang for your buck. They can really grab people’s attention too, as there’s so much you can do with them creatively – they’re only limited by your imagination!\n<h3><strong>Got some explaining to do?</strong></h3>\nOne type of video becoming more and more popular with organisations is the explainer video. Generally about 90 seconds in length, explainer videos are often animated and used to communicate a fairly complex topic in an easy-to-understand way.\n\nCheck out the explainer video on the <a href=\"http://www.decisioning.co/\">decisioning.co</a> site. As well as the site itself, we created the neat little video – it just shows how a well-written and executed explainer can communicate clearly and succinctly, all without a big budget.\n<h3><strong>Support and simplify</strong></h3>\nAnother way in which animated videos are being used is to provide guidance to customers, helping them navigate often tricky subject matter. A great example of this is the <a href=\"http://newpictures.com.au/portfolio/better-electricity-deal-for-small-business/\">‘Better electricity deals for small business’ suite of videos</a> we created for the Department of Energy and Water Supply.\n\nThese were used on social media and really communicated the essence of the problem at hand, cutting information down into sound bites that could be easily understood by the audience. The use of fun little characters and infographics were great in getting our message across.\n\nTo learn more about our thoughts on video, check out this <a href=\"https://newwordorder.com.au/making-the-most-of-video/\"><u>blog article</u></a>.\n<p class=\"p1\"><span class=\"s1\">To chat about an upcoming video project, <a href=\"http://newwordorder.com.au/#contact\"><span class=\"s2\">get in touch</span></a> – we’d love to be involved in the process.</span></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17583,17820,1,'Building better brands','2021-05-18 03:52:25','2021-05-18 03:52:25','6c49d88e-33da-44c2-95b8-6459199abc1e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'So, you’re thinking of rebranding? Or branding something new from scratch? Good for you – there’s nothing we love more than brands that go out of their way to portray themselves in an interesting and unique light.\n\nBut before you start scribbling down new logo ideas, there are a number of things that we think are worth considering. Firstly, and yes we know there’s a lot of info out there on this, but it’s important to remind yourself what exactly a ‘brand’ is.\n<h3><strong>Brand basics</strong></h3>\nThis is also important when speaking to an agency, but clarifying exactly what you’re after – either a new brand identity or a new brand – can be crucial in your planning, not to mention costs and timings. A ‘brand identity’ typically includes a logo and other graphical devices, along with fonts and colours. But this alone doesn’t make a brand.\n\nA ‘brand’ includes all of the above plus so many other elements, which help your customers form an opinion of your organisation. Things such as images, feelings, products, words, sounds, smells, events, people and places, can all make up a brand too.\n<h3><strong>Beginning the brand journey</strong></h3>\nWith the above definitions in mind, once you’ve clarified what you want to do with your brand, it’s time to think about where to start. Try these steps on for size:\n<ol>\n 	<li><strong> Conduct a brand audit</strong> – if you’ve currently got a brand, look at all the elements and see what’s working, and what isn’t. External consultants who aren’t so close to your brand can often give a fresh, unbiased perspective.</li>\n 	<li><strong> Do your research</strong> – look at competitors to see what their brands are like, and what opportunities might be available to you. Also, look for inspiration outside your category or industry.</li>\n 	<li><strong> Conduct a brand workshop</strong> – this will help you dig up useful insights, and to develop a plan for where you want your brand to go and what you want it to portray.</li>\n</ol>\nAfter completing these first few steps, you should have plenty of information to brief in your internal comms department or external agency on the job ahead of them. Of course, here at NWO we specialise in branding projects, so <a href=\"http://newwordorder.com.au/#contact\"><u>get in touch</u></a> with us today to see how we can get involved.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17584,17821,1,'Overhauling your website','2021-05-18 03:54:13','2021-05-18 03:54:13','80c6cddd-8ea3-4add-aa41-4689676eefad',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'There comes a time in every website’s life where things need to change. Usually, in a big way.\n\nBut it needn’t be all doom and gloom. Yes, it can seem overwhelming and yes, it can take quite some time to implement. But remember to keep your eyes on the prize; don’t lose sight of why you’re doing the update in the first place.\n<h3><strong>So why should you do it?</strong></h3>\nFirstly, there’s the appearance. If your site looks dated, your customers might have the same perception of your brand. Also, your site should be mobile friendly – search engines are now starting to penalise sites that aren’t optimised for mobile.\n\nIt should also be more than an ‘online presence’ – it should add value to your business. So if it’s currently not drawing in customers, it’s worth updating. Analytics tools and SEO are also crucial additions for any efficiently run site, so definitely keep them in mind.\n\nThen there’s the engagement factor. Does your content and imagery really grab your audience and make them want to stay on your site? Also, you should be capturing information from your customers whenever possible, via tools such as contact forms, surveys and mailing lists.\n<h3><strong>How do you go about it?</strong></h3>\nHere are a few simple steps that might help.\n<ol>\n 	<li>Undertake an audit of your current site – note what you think is working and what isn’t.</li>\n 	<li>Do a bit of competitor analysis – see what other brands in your industry are doing online.</li>\n 	<li>Start mapping out the pages and sections of your ideal new site – develop wireframes if you can.</li>\n 	<li>Work on content and imagery – essentially filling in the blanks in your wireframe.</li>\n 	<li>Do some testing – either online or face-to-face tests and focus groups can provide great feedback.</li>\n 	<li>Make relevant changes – listen to what people have said and update your site accordingly.</li>\n 	<li>Send it live! Then sit back and marvel at your new masterpiece.</li>\n</ol>\n<p class=\"p1\"><span class=\"s1\">Of course, here at NWO we do offer a specialised website development service – </span><a href=\"http://newwordorder.com.au/#contact\"><span class=\"s2\">contact us</span></a><span class=\"s3\"> to find out more.</span></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17585,17822,1,'Outsourcing creative services','2021-05-18 03:55:28','2021-05-18 03:55:28','a267a040-20a3-47a5-afc7-d7f18333c6f5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'When it comes to finding an external supplier, we understand the challenges many government comms (and non-comms) people face. <span class=\"s1\">You need someone who has a good idea of how the government arena </span><span class=\"s2\">works </span><span class=\"s1\">and the demands and limitations you</span><span class=\"s2\"> face</span><span class=\"s1\"> but still pushes the boundaries</span> to achieve something worth paying external fees for. But where do you start?\n\n<strong>Take a look at the list</strong>\n\nA great place to begin your search for an external creative services supplier is the whole-of-government panel. Here you’ll find a list of large and small advertising and communications agencies that are all pre-qualified and experienced working in your space.\n\nWhen perusing the names on the <span class=\"s1\">whole-of-government</span> panel, consider the following:\n<ol>\n 	<li>Smaller agencies can do big campaign and project work too. Many have been competing with the top end of town for years and can often ensure you get very senior, experienced people working directly with you on your job.</li>\n 	<li>Find an agency that can fill in the gaps you have. If you’re not used to outsourcing design or campaigns, the right agency can answer every question you have and work with you to develop a brief that will meet all your needs (even the ones you’re not sure of yet!).</li>\n 	<li>Help the agency and yourself by being clear on what’s required and what happens <span class=\"s2\">if or when </span><span>you change your mind. Author’s corrections can amass unexpectedly and everyone needs to be clear on when they kick in and why they are happening.</span></li>\n</ol>\nNWO is on the whole-of-government panel, so be sure to <a href=\"http://newwordorder.com.au/#contact\">drop us a line</a> to see how we can help with your next project or campaign.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17586,17823,1,'Looking beyond the banner','2021-05-18 03:56:17','2021-05-18 03:56:17','06ffdcd0-8581-431d-9c8a-04dab1c4bc0c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Banner ads have come a long way over the years. <span class=\"s1\">And the fairly recent introduction of HTML5 means they can now be transformed into beautiful little packages of story that work well amidst busy news pages, </span><span class=\"s2\">despite not having audio.</span>\n\n<strong>Striking the right balance</strong>\n<p class=\"p1\"><span class=\"s1\">Pre-rolls (which play before feature videos) and social media ads offer other options if you have the budget for video, when a television commercial doesn’t exist, and conventional video is too expensive.</span></p>\nOne approach that provides the ideal balance is using video like a ‘banner ad on steroids’. <span class=\"s1\">By creating a simple (though still sophisticated) </span><span class=\"s2\">slideshow</span><span class=\"s1\"> with a managed level of animation, you can add in</span><span class=\"s2\"> story-boosting music and voiceover while keeping costs down.</span>\n\n<strong>NWO video examples</strong>\n<p class=\"p1\"><span class=\"s1\">Here are some recent examples of videos we’ve created, using some of </span><span class=\"s2\">this</span><span class=\"s1\"> thinking.</span></p>\n<strong><span class=\"s1\"><span class=\"s2\">Queensland Week</span></span></strong>\n\n\n<div class=\"embed-container\"><iframe src=\"https://player.vimeo.com/video/176686850\" width=\"300\" height=\"150\" frameborder=\"0\"></iframe></div>\n \n\n<span class=\"s4\">Higher use of animation but no voiceover kept the budget lean.</span>\n\n<strong><span class=\"s5\"><span class=\"s2\">QFES recruitment</span></span></strong>\n\n\n<div class=\"embed-container\"><iframe src=\"https://player.vimeo.com/video/170735464\" width=\"300\" height=\"150\" frameborder=\"0\"></iframe></div>\n \n\n<span class=\"s4\">A series of five videos built around key messages, output in standard screen dimensions and square for Instagram.</span>\n\n<strong><span class=\"s1\"><span class=\"s2\">Electric Bikes Brisbane</span></span></strong>\n\n\n<div class=\"embed-container\"><iframe src=\"https://player.vimeo.com/video/177308827\" width=\"300\" height=\"150\" frameborder=\"0\"></iframe></div>\n \n\n<span class=\"s4\">No voiceover needed here because fun and clever stock images and quirky music told the story.</span>\n\nWe’d love to know about any banner ads or videos you’re planning. <a href=\"http://newwordorder.com.au/#contact\">Drop us a line</a><span> to see how we can help.</span>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17587,17824,1,'Making the most of video','2021-05-18 03:56:55','2021-05-18 03:56:55','9b440061-4bc3-41a8-9202-1fb4fad2164f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Right now the web is awash with video. Just look at your Facebook or LinkedIn feed and you’ll get an idea of how much video content is being produced and posted every day. And it’s on the rise, with video expected to account for around 82% of all internet traffic by 2020.\n\n<strong>Quality is king</strong>\n\nThe thing is, we don’t have any more time in our days to view all this extra content, so video quality and relevance is going to play an increasingly important role in what gets watched and what doesn’t. While there are lots of cheap production services available, if you want your video to be successful, it’s worth looking beyond cost alone.\n<p class=\"p1\"><span class=\"s1\">The key purpose of any video communication is to tell a clear and compelling story – something that captures and maintains your audience’s interest. It also needs to be well strategised, use its medium well and, of course, be well crafted.</span></p>\n<p class=\"p1\"><strong>Things to consider</strong></p>\nWhen planning your next video, keep these things in mind:\n<ul>\n 	<li class=\"li1\"><span class=\"s2\">Is animation the right approach, or would live action </span><span class=\"s3\">better</span><span class=\"s2\"> suit? Budget can be a big factor </span><span class=\"s3\">here because</span><span class=\"s2\"> it is often much easier to animate.</span></li>\n 	<li class=\"li1\"><span class=\"s3\">Think about v</span><span class=\"s2\">oiceover versus text on screen. Does the video need to work without sound, on social media or in a noisy display? Will people read enough of the message on screen? Is the voice vital to the communication of the message, through a tone, accent or character?</span></li>\n 	<li class=\"li1\"><span class=\"s2\">Are you creating a series? If so, can any illustration assets be used again, or can the video be edited for smaller uses such as social media marketing?</span></li>\n</ul>\n<strong>NWO video examples</strong>\n\n<span class=\"s1\">Here are some recent examples of videos we’ve created, using some of </span><span class=\"s2\">this thinking.</span>\n\n<strong><span class=\"s1\"><span class=\"s2\">Mental Health Week</span></span></strong>\n\n\n<div class=\"embed-container\"><iframe src=\"https://player.vimeo.com/video/141875728\" width=\"300\" height=\"150\" frameborder=\"0\"></iframe></div>\n<span class=\"s3\">Uses emotive music and messaging on screen to ensure</span><span class=\"s4\">, s</span><span class=\"s3\">ound or no sound, the messages get through.</span>\n\n<strong><span class=\"s5\"><span class=\"s2\">Our HPW, our future</span></span></strong>\n\n\n<div class=\"embed-container\"><iframe src=\"https://player.vimeo.com/video/186503939\" width=\"300\" height=\"150\" frameborder=\"0\"></iframe></div>\n<span class=\"s3\">Uses real staff members delivering autocue script to camera, taken from the words of them and their colleagues.</span>\n\n<strong><span class=\"s5\"><span class=\"s2\">DEWS energy bill</span></span></strong>\n\n\n<div class=\"embed-container\"><iframe src=\"https://player.vimeo.com/video/145234065\" width=\"300\" height=\"150\" frameborder=\"0\"></iframe></div>\n<span class=\"s3\">Uses characters to explain and entertain.</span>\n\nWe’d love to know what videos you’re planning. <a href=\"http://newwordorder.com.au/#contact\">Drop us a line</a> to see how we can help.\n\nSource: <a href=\"http://www.cisco.com/c/en/us/solutions/collateral/service-provider/visual-networking-index-vni/complete-white-paper-c11-481360.html\">http://www.cisco.com/c/en/us/solutions/collateral/service-provider/visual-networking-index-vni/complete-white-paper-c11-481360.html</a>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17588,17825,1,'Measure your marketing with meaning','2021-05-18 04:00:05','2021-05-18 04:00:05','8e6c3b2a-04b3-498a-91c1-61816d21df4f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'It’s the age-old struggle for marketers – measuring the return on investment (ROI) of your activities and campaigns. The struggle comes in part because it’s difficult to relate concepts like brand awareness directly to sales. But that doesn’t mean there aren’t ways to monitor and measure your marketing and prove its worth. After all, if you don’t measure, how do you know what’s working?\n\n<b>Steps for meaningful data</b>\n<ol>\n 	<li>define your metrics and develop a plan</li>\n 	<li>collect the data</li>\n 	<li>develop reporting guidelines</li>\n 	<li>analyse and change as needed</li>\n</ol>\nCollecting and analysing meaningful data is about more than finding tools and interpreting charts. It’s about <b>valuing the data</b> and understanding how it can help <b>justify and grow your hard work and campaigns</b>.\n\nThere are several tools that will help you measure your marketing data, and <b>Google analytics</b> is probably the most helpful – it’s also free. Bonus!\n\n<b>What we look for</b>\n\nWhen measuring our campaigns for clients, we look at <b>engagement</b> and <b>growth</b>.\n\n<b>Engagement</b>\n\nStarting with content performance, it’s helpful to measure social shares on Twitter, Facebook and LinkedIn (shares equal love!), and then check your blog and website for bounce rates and visit time. Facebook and Twitter have built-in analytics tools that will help you here. On your website and blog, use Google analytics. High bounce rates and short visits usually mean your audience isn’t finding what they thought they would, or they’re not as engaged as they should be with your content. Pages per visit is another interesting content measure – if visitors are clicking around your site, they’re liking what they find and you’re getting more exposure. Nice work!\n\nA specific example of measuring engagement in action can be found in our My Smoking quit smoking campaign. It was targeted at men and women aged 18–29 across TV, radio, print and digital. Data showed that:\n<ul>\n 	<li>8 in 10 young smokers supported the campaign</li>\n 	<li>76% contemplated quitting because of the campaign</li>\n 	<li>50% reported cutting down on cigarettes because of the campaign</li>\n 	<li>47% tried quitting</li>\n</ul>\nImagine being able to prove your campaign success to your team and managers? We do it from the start with our work. Do you?\n\n<b>Growth</b>\n\nFor growth in marketing, it all starts with click-throughs on your call to action. If your analytics tell you they’re low, then you need to change up your content. Look at the words you’re using, how your e-marketing looks, your subject line on EDMs and even the specific call to action.\n\nOther growth indicators will see you linking up with your sales team to measure metrics like how many leads your content is bringing in and turning into customers, cost per lead, average sales cycle duration and revenue per user. Always remember that increasing customer retention is the aim for the sales cycle, too. These things are tougher to measure, but good lead generation processes are a big help, and we find having campaign measurement expectations in place right from the start will make things much easier.\n\nA terrific example of analysing the performance and growth of our work was for our client the Chamber of Commerce &amp; Industry Queensland (CCIQ). A review of their key communication channels saw us creating a monthly e-zine to better engage members. As a result of our work, we measured that CCIQ got 3,350 new subscribers in 5 months, grew website traffic by 161% to 76,277 visitors over six months, had 4,171 qualified leads generated over six months and a 110% increase in revenue in a single month. Impressive figures that not only lead to successful relationships with clients, but to high-achieving campaigns and ongoing work. We’re proving what we do is working.\n\nHave a chat with us today about your marketing and we’ll have you measured up in no time.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17589,17826,1,'The 6 steps of content creation','2021-05-18 04:00:53','2021-05-18 04:00:53','d06563b3-74af-4f51-bae0-1eeb5b3dc727',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'You know what your business is about. You’ve nailed down your story. You’ve worked out who you want to talk to.\n\n<em>Now you need to add some real value.</em>\n\nTime poor organisations need their content to work across different channels online – including websites, e-newsletters, blogs and across social media. One way to add value to your existing, more sales-focused, content is through <strong>content curation</strong>. Content creation means finding useful content online, curating it for your audience and re-telling it in your voice and with your advice.\n\nHere’s how to optimise, write and curate content for your target audience.\n<h3>Defining your goals</h3>\nEvery good plan starts with defining what it’s trying to achieve. How do you want your content to define your business? What are you offering your target market? Do you want to be a thought leader in your particular area?\n\nContent curation is about meeting your customers where they are and offering them something they’re not getting elsewhere. It’s about finding, gathering and sharing information of value with them; positioning your business and brand as an authority both with original content – your sales offering and business learnings – and information you’ve found and shared online. Participating in conversations that are happening about your field leads to more engagement with your target market, the ultimate goal being to give your brand a voice of value that will see your audience come back again and again for your offering.\n<h3>Getting started</h3>\nIt’s important to remember that well-executed content curation isn’t about regurgitating content that was already published. Instead, it’s your business’s personal re-telling of a story. As Susan Gunelius wrote for <a href=\"http://www.forbes.com/sites/work-in-progress/2012/07/05/5-ways-to-use-content-curation-for-marketing-and-tools-to-do-it/\" target=\"_blank\" rel=\"noreferrer noopener\">Forbes</a>, the human element of content curation is what makes curated content compelling.\n\nTherefore, when offering your audience valuable content, remember to tell your story. What are you saying that’s different? What do you know that others might not? Involve your whole team – not just marketing and sales – and that story will evolve to give your business a truly useful and unique voice.\n<h3>Finding content</h3>\nHere’s where you get amongst it!\n\nWant to know where your target market is looking for information online? Go exploring! Ask them! Discover for yourself where the good stories are being shared. Find out what topics matter to your goals and audience, and go after them.\n\nIntegrating content curation into your broader marketing strategy is the way to go here – it legitimises the exercise and gets your team thinking about the value of your brand and how they can add to it. The best place to start is probably your social media accounts. Valuable content is being shared every day on platforms like Facebook, Twitter and LinkedIn. There are also Google alerts and news aggregate sites that can be set up with your special business needs in mind.\n<h3>Be authentic to find your voice</h3>\nThere is nothing like the instant world of social media to add value and timeliness to your content. Social media has changed the term ‘sharing’ forever, and the opportunities for your brand are endless. It’s important to add your own value to social content – as Mark Lerner says, if you just “retweet,” or share an article without including your own voice in the post, you’ll fail to distinguish yourself from everyone else who shared that content.\n\nHow do you find your voice? Authentically, of course! Offer your opinion and add your advice in areas you are confident about. Try to be friendly and informative, and adopt an approachable tone. Not so confident? Ask questions! Get your community talking and they’ll come back to you.\n<h3>Context and thought leadership</h3>\nGood content curation provides your audience with context and convenience – that means filtering and explaining what you find online, and rewording it in your voice so it’s useful to them. You don’t always need to be selling, but you do always need to be mindful of your brand and of offering real value. Knowing who your market is and writing in your ‘voice’ allows you to, as J-P De Clerck says, inform, educate, entertain and engage target audiences.\n<h3>Where to share</h3>\nThere are many ways to share curated content, but the best way is in a mix of your existing ‘sales’ content. E-newletters and blogs offer an opportunity to share curated and original content, and social media is the most instant way to add your voice to a new idea, and also probably the first place your audience will find you. They’ll also find your website, so don’t forget about the curated content opportunities there. Always remember that you should be providing useful information, not just repeating content or working on the hard sell.\n\nContent curation is convenient, but it’s also an important opportunity to add value, develop a business voice and grow an online community. What do you think about content curation? Has it worked for you? Got any tips? Let us know.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17590,17827,1,'B2B is dead','2021-05-18 04:01:45','2021-05-18 04:01:45','fddf56cf-fcfe-4ead-9c62-e119ba90f85c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'As deaths go, it was a quiet one. Few people knew of its demise.\n\nBut there it lay still: the artificial divide between B2B and B2C marketing, gone forever.\n\nWhy bother lamenting the dead? Dare I say, it’s good riddance to a dodgy invention.\n\nThe idea that marketing business-to-business took entirely different skills and strategies to talking to consumers has its roots back in the early Noughties. The notion, which most marketers sadly still hold, was that because the volume of B2B transactions is so much higher than B2C – if you count every transaction required along a manufacturing supply chain, for example – then B2B branding requirements were stronger, too.\n\nConversely, the B2C belief held that the consumers of the world needed entirely different marketing strategies to convince them to open their wallets.\n\nTrue, where they differ most is in the justification of purchases. In B2C land, I need to convince myself why I should buy yet another pair of red shoes. (It’s a short discussion.) In B2B, I might be lobbying the board to invest in an expensive new CRM system.\n\nBut the truth is both groups share more similarities than differences.\n\nYour customers – be they businesses, consumers or both – have similar emotional and logical requirements that must be met. The relationship lifecycle between a purchaser and a brand exists with businesses and consumers alike. Both groups also frequent the same social media spheres, are Google-happy and web-savvy, and require strong brand confidence in order to purchase.\n\nThe illusion that you’re selling to a company in B2B should be seen for what it is. In retail or in business marketing, you’re selling to individuals. And each wants to feel that you get them.\n\n<em>Long live H2H.</em>\n\nWhich is where yet another acronym is starting to make a play: H2H, or human-to-human marketing.\n\nIt espouses the belief that we all, business and retail customers alike, are looking for connection, inclusion and to be understood. If you take that as your starting point – and not your burning need to produce another brochure – then the marketing toolbox available to your business automatically grows.\n\nIt means the vast strategies already out there like relationship marketing and continuous touchpoints become as relevant to a retail customer as to the business that buys your widgets. And the traditional B2C tools like social media become far more relevant business-to-business because they help build connections better than a sterile product flyer.\n\n<em>Let’s make H2H practical.</em>\n\n<strong>1. </strong><strong>Open your horizons</strong>\n\nSwitching your mindset to focusing on the individual, human needs of your market means you can open your marketing to all sorts of potential tools. Just because you run a hair salon doesn’t mean you can’t start sending out a monthly email newsletter – <em>if</em> your customers are the kind of people that like to know more about you. And just because you’re an accountant doesn’t mean you can’t lead an industry group on LinkedIn or advertise on Facebook – <em>if</em> that’s where you’ll find the types of sales you want. Think about your customers, and let their needs lead you.\n\n<strong>2. </strong><strong>Make your customers feel</strong>\n\nSales overwhelmingly come from relationships in my business, so meeting my clients’ emotional needs is a no-brainer. If my clients are happy, they’ll stay.\n\nBut even if your sales rely heavily on good old-fashioned foot traffic, it’s relationships that will lure them and keep them. So, in every tool you use to get to market, make sure you get the emotional kicker in. Empathise and prove you understand their needs.\n\n<strong>3. </strong><strong>Ask your employees what they think</strong>\n\nIt’s one thing to make marketing decisions from an ivory tower. Chances are it’s your staff who really know how your clients think, or how your customers behave. So get their ideas and integrate it into your marketing. Let them drive your innovation.\n\n<strong>4. </strong><strong>Finally, listen to your customers</strong>\n\nThere is marketing gold in every intentional conversation you have with a customer. Ask the ‘why’ that follows the tough questions: Do you feel safe with my business? Do you like dealing with us? Would you refer us to your friends? The answers will revolutionise how you think about marketing to your customers.\n\n---\n\nWritten for the February 2014 issue of <em>Inform, </em>the monthly magazine of the Chamber of Commerce and Industry in Queensland.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17591,17828,1,'Truth without fear','2021-05-18 04:02:23','2021-05-18 04:02:23','13118ee2-b957-4ce0-824d-37e6da984e91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'I’ve always been a big believer that marketing is at its most powerful when you can encourage potential customers to ask an audaciously big question, and know that your offering can answer it indisputably and confidently.\n\nTruth-telling doesn’t have to be controversial. Done well, it simply gives you an edge the others can’t match.\n\nSpecifically, truth-telling campaigns can be about demystifying doubts or falsehoods in the marketplace by challenging customers to ask you the tough questions, knowing you’ve nothing to hide and every positive answer can be a true one.\n\nNow, I don’t know if truth necessarily applies here all the time… but I do love the strategy behind McDonalds’ approach to all the urban myths (truths?) surrounding the content and manufacturing process of their food, and this approach, manifest in this nifty and functional digital solution <a href=\"http://yourquestions.mcdonalds.com.au\">http://yourquestions.mcdonalds.com.au</a>, captured my interest.\n\nA powerful aspect of this approach is permissioning the target group to cut to the chase and bluntly ask anything. No matter how ugly the question, the Maccas guys maintain a friendly and elegant response, and manage to turn even the roughest questions into positive answers. This way, the questioner is the one who looks bad to the rest of the viewing audience, and the credibility of the answer is reinforced. Do we believe them? Is it the whole truth?\n\nOne of our clients markets products in a particularly crowded retail sector. Recently, after hearing a competitor was routinely bagging them, they decided to attack the rumours head-on by attaching to their quotes a clever but honest response. We’re helping them get their strategy to market this week, and believe they’ll reap rewards for their honesty.\n\n<em>What erroneous facts about your business lurk in your marketplace? </em>\n\nHave you researched your marketplace, either formally or informally, to know? Even if these myths aren’t widespread, addressing the issue in a positive way can provoke interest in your brand, create discussion, and increase the potential for better relationships and new work.\n\n<em>The truth is – or should be – out there.</em>\n\nTruth-telling campaigns can be some of the most rewarding to work on.\n\nFrom a tagline that challenges the competition to a wholesale campaign addressing porkies, the benefits to your brand can be great if you get the right help to research, strategise and execute it well.\n\n<a href=\"https://newwordorder.com.au/contact\" target=\"_blank\" rel=\"noreferrer noopener\">Talk to us</a> – we’d love to help.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17592,17829,1,'Promises, promises','2021-05-18 04:03:05','2021-05-18 04:03:05','849835dd-7847-49db-a90b-906733ad8c49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Aah, Telstra.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">If you own a business small enough that it’s your job to do hand-to-hand combat with a telco, these two words say it all. And it doesn’t matter what brand name you insert: nothing brings out a sense of shared suffering better than a tale of a telco stuff-up.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">I had a story I dined out on regularly that involved a telco sub-contractor turning up to fix a crackle – and ending up severing all of the phone and fax lines running to my business. That was fun.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Right now, I’m in my 7<sup>th</sup> week of hour-long conversations with many truly delightful employees of a certain telco, each of whom is exceedingly articulate and apologetic for all the employees who have gone before them. (One supervisor, in all seriousness, said to me: “You need to expect that we won’t get anything right. In fact, I find it best to have very low expectations.”) </span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">My end of a conversation just a week ago went something like this: “So you’re telling me that you can see that you’ve made a mistake in charging me $700 extra this month, but that it’ll take you another three months to reverse the mistake in billing… so I need to give you $700 now and trust that you’ll give it back to me later?”</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Not surprisingly, I asked for this once-in-a-lifetime deal in writing.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Of course, stuff-ups, broken promises and disappointments occur every day between businesses and consumers. It’s human nature. It doesn’t have to be a telco – although they do it with panache. And it doesn’t have to be big business – although it often is.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Small businesses can often break faith with customers through the sheer limitations of their size. Flexibility and nimbleness are great benefits of working with small business; but when lots of work hits, there’s no-one spare to get it done. Unfortunately, SMEs also need to fight harder than big corporates to keep consumer faith and love alive – because it can mean the difference between floating or sinking.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Here’s a great example. Quite a few weekends ago, a small water filter company I’ve used in the past phoned me. The first guy – who said he was the business owner – gave me the sales spiel, and then handed me off to the junior to take my order. Inwardly, I applaud their decision to go aggressively out to the market and to phone customers one by one for after-hours orders. After all, when cash flow’s tight, you have to work smart. Outwardly, I’ll probably not order from them again: the filter still hasn’t arrived.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">It’s all very well for marketing managers to talk endlessly about channels, for CEOs to cast vision and for designers to beleaguer brand design.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">But at the heart of every brand experience must be <em>trust</em>, in any of its forms. If you’re a services company, then be a trusted advisor. If you provide products, then provide them to a high standard. And in every transactional stage, keep your promises – whether it’s getting a bill right, delivering a product or following up words with actions.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Small businesses also need to keep promises in order to grow their future markets. Nothing closes doors on future opportunities faster than a disgruntled current customer. Case in point: I’m a hostile captive to my telco. No other telco covers my area – so it’s either their way or no information superhighway. But captivity doesn’t encourage me – it frustrates me, and when added to negative experiences, makes me ready to share my tales with anyone and everyone.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Likewise, small businesses need to beware the hostile captives in their business. Is there a customer who’s contractually wedded to you but bitterly unhappy with the service you provide? Beware their rage – it can and will go viral to potential customers in the blink of an eye. </span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Cherish the value of trust to your customers. Promises kept will define you and your brand long after your competitors have broken theirs.</span></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17593,17830,1,'Are customers giving up on your website?','2021-05-18 04:03:49','2021-05-18 04:03:49','7bfa4d7c-f72d-4cb9-91cc-ad0eab1b9e08',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'\n<p>We’ve all been to websites where trying to make a simple purchase can end in frustration with an impossible-to-navigate website, or, worse for the organisation, to us turning to a competitor. Good web design translates to successful conversions, and all of that is dependent on the user experience.</p>\n\n\n\n<p>A great new <a href=\"http://digitalsynopsis.com/design/important-good-web-design-impact-people-profits\">infographic</a> has found that we’ll give a website a minute to display what we’re looking for before we give up. Some types of sites are better than others in delivering what we’re after – especially hotel booking sites.</p>\n\n\n\n<p>The two biggest complaints about web sites, according to the research, include that there is ‘too much going on’ and also ‘not enough information’, which we can take to mean that many sites drone on and on… but don’t really say much.</p>\n\n\n\n<p>Users also complain – across all age groups and online skills – that text is too small and that navigation is difficult on the sites they give up on. Thirty-five per cent of users fail to complete simple tasks on the average website.</p>\n\n\n\n<p>Let’s improve those stats, shall we? Here’s a plan.</p>\n\n\n\n<p><strong>1. Design from the user’s perspective, not your own</strong></p>\n\n\n\n<p>We know your company is the greatest thing since Google and you can’t wait to tell everyone all about where it began, who works there and the details of your offering. But the truth is that a user just wants to get to the point, and their interests should override yours. Usability is key. Show them what they’re looking for, and don’t make them search for it. That doesn’t mean sacrificing look and feel for too much simplicity, it just means focusing the layout and design on the search.</p>\n\n\n\n<p><strong>2. Create a navigation path</strong></p>\n\n\n\n<p>If the information on your website is simple and structured, you can guide visitors on the path you’d like them to take. Use tabs and sub-pages for different categories, and make it logical.</p>\n\n\n\n<p><strong>3. Content is king</strong></p>\n\n\n\n<p>Content is the most important element of your site, really – and it needs to fit the logical and structured navigation. You’ll want to include keywords, page titles, meta tags, and headings for search engine optimisation. As we’ve previously discussed in our <a href=\"https://newwordorder.com.au/writing-for-readable-web/\"><em>Writing for (readable) web</em></a> article, there are some hallmarks we use when writing web copy for our clients:</p>\n\n\n\n<ul><li>short, effective sentences (say the same information with less)</li><li>sub-headings and headings containing keywords</li><li>everyday words the average reader can easily understand (plain English)</li><li>informal voice</li><li>common language conventions</li><li>direct language</li><li>active tense</li><li>consistent, logical structuring of information.</li></ul>\n\n\n\n<p><strong>4. Speed it up and make it simple</strong></p>\n\n\n\n<p>Let’s face it, we’re a busy bunch, and a reminder of the old days of dial-up – waiting for your site to load – is going to test the patience of even the most loyal visitor. In fact, many visitors will start to abandon a website after just a few seconds of loading time. Most of that time is the result of design decisions, so simplify some of the fancy effects.</p>\n\n\n\n<p>We love web design and working with you on the best and most creative way to present your business. Starting with a structure that appeals to your audience, then adding in some clever design and copy, ensures that your site will be a success. <a href=\"https://www.newwordorder.com.au/contact\">Talk to us</a> about it today.</p>\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17594,17831,1,'8 important marketing questions for every business','2021-05-18 04:04:32','2021-05-18 04:04:32','def1c353-751e-427d-984f-e88ecd162e21',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Marketing communications in business is all about attracting and retaining customers. We do it for dozens of Australian companies every day, and the bigger the company, the tighter the marketing strategy governing their communications – because they know customers are fickle, and competitors are waiting to pounce on any weakness.\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">The same philosophy of tight strategy and execution should drive your business. Effective marketing communications must be an essential part of your core business strategy to ensure you’re pushing the same, consistent message through every aspect of your organisation. </span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">But it’s not always so easy to go it alone. If you’re in a small business and know you need to step up, here’s a handy checklist of the marketing questions you need to answer to keep your customers in tune with you – and your competitors at bay. </span></p>\n<p class=\"AAPARAGRAPH\"><em><span lang=\"en-us\" xml:lang=\"en-us\">Who are my existing customers?</span></em></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">The best way to sell to your customers is to first understand who they are, why they buy from you, and what value they expect from you. And the best way to learn this? Listen to them. Marketing communication begins with good customer relationships, which are almost like your own form of market research.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">When you talk to your customers, you’ll learn things like your customers’ age, income, education, how often they buy from you, what their buying triggers are, and how they’re influenced. This is a valuable step in honing your marketing message, so don’t be tempted to think you already know the information if you’ve been in business for a while. Every customer conversation will add another layer to your understanding. </span></p>\n<p class=\"AAPARAGRAPH\"><em><span lang=\"en-us\" xml:lang=\"en-us\">Who are my potential customers?</span></em></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">It’s just as critical to have a very clear understanding of your desired target market and new customers. Get as detailed as you possibly can. The more specific you are, the better you can develop messages for them.</span></p>\n<p class=\"AAPARAGRAPH\"><em><span lang=\"en-us\" xml:lang=\"en-us\">Who are my competitors?</span></em></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Understanding who competes for your customers – and what they’re offering – is vital. Get very familiar with every aspect of your competitors’ businesses – including their reputation, prices and marketing material. This knowledge will help you position your marketing communication relative to how your customers are already being targeted and differentiate yourself in the market.</span></p>\n<p class=\"AAPARAGRAPH\"><em><span lang=\"en-us\" xml:lang=\"en-us\">What am I trying to achieve?</span></em></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Understanding why you’re communicating with your customers is essential. Are you purely after quick wins? Or preparing the ground for a new product or stronger relationships? The rationale and potential value for any marketing effort should determine how much money you need to spend, and where it’s best spent.</span></p>\n<p class=\"AAPARAGRAPH\"><em><span lang=\"en-us\" xml:lang=\"en-us\">What am I trying to say?</span></em></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">This is where everything comes together. You must now develop clear, key messages that talk up your product or service, meet the expectations and needs of your new and existing customers, and differentiate yourself from your competition.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Make sure you have no more than five key messages – in fact, the fewer the better – and make them specific and meaningful. That’s how you stand out in the crowded market. Ensure your customers are aware of your business and its products or services, and why they should care (e.g. What’s in it for them? And what are the true benefits?). These benefits should be factual and real. It’s important not to overload customers with information, but rather to be clear and articulate.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">All of your marketing communications should include a strong call to action: What is it that you want customers to do once they’ve interacted with you? Leave them in no doubt and make it easy for them.</span></p>\n<p class=\"AAPARAGRAPH\"><em><span lang=\"en-us\" xml:lang=\"en-us\">What’s the right channel?</span></em></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">There’s no doubt that it’s a busy marketplace when it comes to finding the perfect place to share your marketing messages. The challenge here is in focusing and narrowing your communication – and finding the right time and place to connect with your customers. </span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Many marketers are now jumping on social media networks, but that might not be where your customers can be found. It’s important that you understand how and when they want to hear from you, and use that information to foster a true customer relationship.</span></p>\n<p class=\"AAPARAGRAPH\"><em><span lang=\"en-us\" xml:lang=\"en-us\">Is my strategy integrated?</span></em></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Communicating in an integrated way across all channels (such as website, emails and brochures) means your brand will become better known and understood. Integration means that every time your customers hear from you, they get the same feel for who you are. By creating consistent, strong marketing communications, your customers will identify and remember you into the future.</span></p>\n<p class=\"AAPARAGRAPH\"><em><span lang=\"en-us\" xml:lang=\"en-us\">Finally: Am I communicating with genuine creativity?</span></em></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Creativity isn’t about paying your local print shop to pull together a flyer with your logo on it, or using a WordPress template to build your long-overdue website. They might be tactics that you use, but they’re not what creativity is really about.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">True creative thinking pulls together everything you know about your business, your goals and your customers into a single, cohesive package that cuts through, connects and resonates. Creativity distills everything down to the right words, images and design so that your marketing collateral has the right impact. No business can afford to skimp on this stage because getting creativity right means you’ll get the results you’re really after: maximum return on your marketing investment.</span></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17595,17832,1,'What the artist breaks','2021-05-18 04:05:05','2021-05-18 04:05:05','6dfec9fa-7e02-4b0f-b72e-e40d9b101acb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p class=\"AAPARAGRAPH\"></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">It’s arguable that copywriting is at the heart of all advertising and marketing today. We remember taglines and recall jingles; and copy is the beginning of most brand stories. But, boy, is it fantastic to look back at a time when it really was all about the words.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Bill Bernbach was the founding creative director of legendary Manhattan ad agency Doyle Dane Bernbach. He came out with quotes like:</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">“Advertising is fundamentally persuasion and persuasion happens to be not a science, but an art”, <em>and</em></span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">“Word of mouth is the best medium of all”, <em>and</em></span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">“Rules are what the artist breaks; the memorable never emerged from a formula.”</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">That’s really provocative stuff that makes you nod your head at the truth and simple power of his thinking – and imagine how inspiring but uncompromising a boss he would have been. What an exhilarating time to be writing.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Bernbach not only had a way with a turn of phrase, but he also really set up the structure of creative teams for marketing and advertising, and was, of course, part of the inspiration for Mad Men. But mostly, he was a writer. And what a writer he was. His firm revolutionised advertising copy and laid out the early foundations for brand storytelling through engaging narrative and brand persona development. We can, and have, all learned from these guys.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">In the 1960s, DDB took on Volkswagen as a client and began creating <a href=\"http://nwo.app:8000/wp-content/uploads/2013/10/vw-lemon-and-think-small-ads.jpg\">a series of print ads</a> that referred to the VW as a “lemon” and encouraged consumers to “think small”. The copy, by the incomparable Julian Koenig, starts out saying “<em>This Volkswagen missed the boat. The chrome strip on the glove compartment is blemished, and must be replaced</em>.” Not exactly sales speak. </span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">It was funny. It was clever. And it was ground-breaking.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">For the rest of the decade, VW kept their unconventional campaign rolling. DDB’s strategy of turning seeming faults into benefits was a huge hit. One ad didn\'t even include a picture of the little lemon: “<em>No point in showing you the 1962 Volkswagen. It still looks the same</em>.”</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Much has been written about the ads, and you can take a look at a bunch of them <a href=\"http://www.visualnews.com/2013/09/03/20-best-volkswagen-ads-1960s-campaign/\">here</a> if you like. It was ranked the best advertising campaign of the twentieth century by Ad Age, and it deserves the title. This sort of brand bravery is rare and may be a little of its time, too. The truth is that the power is all right there, in the copy, which exists to inspire us. Last words to Mr Bernbach himself:</span></p>\n<p class=\"AAPARAGRAPH\"><em><span lang=\"en-us\" xml:lang=\"en-us\">You can say the right thing about a product and nobody will listen. You\'ve got to say it in such a way that people will feel it in their gut. Because if they don\'t feel it, nothing will happen.</span></em></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">What is your brand really saying?</span></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17596,17833,1,'The tender pitch','2021-05-18 04:05:43','2021-05-18 04:05:43','7745693e-9a40-4aea-9843-b2de5ffbc6b5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p class=\"AAPARAGRAPH\"></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">If networking nights are like professional speed dates, then tenders and pitches are like fast and furious flings that shotgun quickly to marriage or – mostly – burn out with little said between the two parties.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">And in pitch season, that unofficial period of the year where you seem to do little paid work and an awful lot of these tenders and pitches, one can get a little down at the sheer amount of time and expense expended, not to mention the quick but brilliant creative that won’t see the light of day.</span></p>\n<p class=\"AAPARAGRAPH\"><strong><span lang=\"en-us\" xml:lang=\"en-us\">‘I’ve met someone else’</span></strong></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">So, with pitches in full swing, I thought I’d continue the metaphor and shed some light on what it feels like to be the eager party still sparkly with romance and ready to commit to a long-term relationship, only to be told it’s over before it even began. It’s not much fun to be cast as the best friend and not the star.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Earlier in my career, I was a member of the Australian Graphic Design Association (AGDA). AGDA had an unambiguous policy against free pitching, equating it to professional prostitution (though, oddly enough, prostitutes get paid for what they do). Their policy was built on the idea that our ideas are everything, and that giving them away was the worst thing we could do.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">It’s a good, strong ethic that I still wholeheartedly espouse – but I compete in an industry where free pitching, often on top of an extensive and expensive tender process, is the norm. If only my industry had the same rule about free pitching, then we might all get hired for our potential and value without the massive time and IP giveaway.</span></p>\n<p class=\"AAPARAGRAPH\"><strong><span lang=\"en-us\" xml:lang=\"en-us\">‘It’s over’</span></strong></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">The biggest challenge, though, about free pitching is not the cost or the time. It’s the requirement to develop creative without the ability to properly research, develop the brief or fully explore the clients’ needs. </span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">While all pitchers (except incumbents) are under the same restrictions, nobody can really develop a campaign under a free pitch that will work as well as one developed with the serious time and effort it takes to truly know a brief and provide a solution. </span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Substance should matter more than flash. Didn’t our mothers always warn us about girls like that? But sadly, another agency’s flash can mean a budding relationship is over before it even had a chance to begin.</span></p>\n<p class=\"AAPARAGRAPH\"><strong><span lang=\"en-us\" xml:lang=\"en-us\">‘There are plenty more fish in the sea’</span></strong></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">So the answer is, of course, to not try and meet new professional flames this way. Nobody is forcing us to participate and there are plenty of potential lovers who will choose you based on referral and credentials. But the sad fact is that whole sectors don’t procure that way and if you want to work with them – and we do – you need to be ready to date their way.</span></p>\n<p class=\"AAPARAGRAPH\"><strong><span lang=\"en-us\" xml:lang=\"en-us\">Creative house seeks new relationship</span></strong></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">I admit it: we’ve been playing the field. And yes, from time to time, the dating game has meant we’ve been a bit burned, but never bitter. </span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">In our adventures, though, we’ve found love – and if past experience can teach us anything, it’s that we’re built for a love that lasts. We want the kind of client relationship that grows and builds over time, bringing with it joy, rewards, results... and a bit of fidelity.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Care for a date?</span></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17597,17834,1,'Writing for (readable) web','2021-05-18 04:06:44','2021-05-18 04:06:44','f4a9b884-88f2-4aa6-887c-e80a04c0e5f6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Just as website navigation is a unique narrative structure, writing web content follows unique writing conventions.\n\nWhy? Because that’s the way we work as readers.\n\nWhen we pick up our tablet or our website, we rarely read word for word. Research has shown the average reading time is 25 per cent slower on a screen, so we skim, searching for keywords.\n\nAnd, because we don’t want to scroll, we won’t.\n\nThe result? Your web copy had better be short, concise and very easy to navigate. Otherwise, you’ll lose your readers in less time than it takes them to click their mouse.\n\nThe way your readers read demands your web and other digital content should be written to suit.\n\nTo take a practical example: The length of copy and type of language used in a corporate letter or marketing communications are too long and formal for a digital environment. Aim instead for half the words you’d use in a paper document. And then cut in half again.\n\nAnd to take another example: Think of a news story. It has the main info up the top, short and snappy sentences, and clear headings. Web and digital writing follows the same convention.\n\nAt New Word Order, we have established eight hallmarks for effective web writing, and we use these to assess our clients’ site and the work we provide them:\n<ol>\n 	<li>Short, effective sentences (say the same information with less)</li>\n 	<li>Sub-headings and headings containing keywords</li>\n 	<li>Everyday words the average reader can easily understand (plain English)</li>\n 	<li>Informal voice</li>\n 	<li>Common language conventions</li>\n 	<li>Direct language</li>\n 	<li>Active tense</li>\n 	<li>Consistent, logical structuring of information.</li>\n</ol>\n<strong>1. </strong><strong>Write in short sentences and paragraphs</strong>\n\nAim for short sentences, each with one or two clauses.\n\nEach paragraph should contain no more than 2–3 sentences, and altogether a page of content should fit comfortably within the web page without requiring the reader to scroll. The optimum line length is 8–12 words.\n\nIncluding useful and interesting facts keeps readers’ attention longer than ‘motherhood’ or general statements. They’re more believable, too.\n\n<strong>2. Use headlines and sub-headings </strong>\n\nHeadlines and sub-headings are an effective way to guide a reader through their skimming of a web page. Since research tells us readers rarely read every word on a website, it makes sense to prioritise what they see – and headlines and sub-headings do this well.\n\nMake headlines and sub-headings factual, not fanciful. This enables readers to rapidly scan useful keywords.\n\n<strong>3. </strong><strong>Write in plain English</strong>\n\nWhile plain English should be the aim of all of your publications, it’s especially important in a digital environment.\n\nPlain English means using words the average Australian reader can easily understand.\n\nThat means you should:\n<ul>\n 	<li>include useful headings</li>\n 	<li>use the simplest form of a word possible e.g. said (not announced or discussed); try (not endeavour)</li>\n 	<li>define tricky terms</li>\n 	<li>delete unnecessary verbiage</li>\n 	<li>use familiar, easily understood words</li>\n 	<li>include lists and tables to simplify content and reduce word count.</li>\n</ul>\n<strong>4. </strong><strong>Use informal voice</strong>\n\nUnlike general corporate writing, digital environments demand a more informal voice.\n\nThis means using ‘you’, ‘we’ and other pronouns to speak directly to the reader within the text. Formal language is out.\n\n<strong>5. </strong><strong>Use common language conventions</strong>\n\nEffective web writing uses language conventions found more commonly in conversation.\n\nThis means using:\n<ul>\n 	<li>contractions (isn’t, that’s)</li>\n 	<li>common bridging words to begin sentences (and, but, because)</li>\n 	<li>short statements of fact</li>\n 	<li>links to longer explanations (e.g. PDFs, minutes, fact sheets).</li>\n</ul>\n<strong>6. Get to the point</strong>\n\nWriting for digital environments takes discipline, because readers have little tolerance for fluffy language, repetition, ‘happy talk’ or unnecessary explanations of what’s already evident on the page.\n\nTo write direct, straight-to-the-point copy:\n<ul>\n 	<li>stick to the topic</li>\n 	<li>cut unnecessary adverbs (e.g. <span>completely</span> finish, <span>tentatively</span> plan)</li>\n 	<li>delete tautologies (e.g. whole <span>of the</span> country; for <span>a period of</span> six months)</li>\n 	<li>use simple present tense when possible (e.g. <em>uses</em> instead of ‘is utilised by’, <em>conducts</em> instead of ‘is conducted by’)</li>\n 	<li>avoid clichés.</li>\n</ul>\n<strong>7. Use active voice</strong>\n\nActive voice is a way of structuring information that allows you to focus on the subject and cut excess words. Following this method enables quick readability.\n\nActive voice places the subject first in a sentence, followed by the action.\n\ne.g.\n\nActive voice: New Word Order opened in 1998.\n\nPassive voice: New Word Order was opened in1998.\n\n<strong>8. Structure content well</strong>\n\nThe most important information should always be placed first on a web page, and the web layout and navigation should be consistent and logical to a reader.\n\nA good rule of thumb for navigation is organise the content to suit how the reader needs to discover it.\n\nWith only a few exceptions, your website should go no deeper than three levels of navigation. Too many websites go down rabbit warrens.\n\nTo structure new web content, follow this checklist:\n<ul>\n 	<li>Plan what you need to write, and stick to the topic.</li>\n 	<li>Lead with the most important information – this means placing these details first on a page.</li>\n 	<li>Keep each section simple and clear – don’t try to achieve too much in one place.</li>\n 	<li>Use meaningful links – rather than repeating information found elsewhere on the website, link to it.</li>\n 	<li>Put the most recent information at the top – for example, when you’re archiving minutes or reports.</li>\n</ul>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17598,17835,1,'Photography and your brand','2021-05-18 04:07:42','2021-05-18 04:07:42','15cffdc5-6c2c-4682-98f0-fa90ccdf0a9b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p><span lang=\"en-us\" xml:lang=\"en-us\">Using visuals and imagery are essential parts of any campaign. When you take a look at our lives and consider our love of infographics, Pinterest and Instagram, as well as our preference for fast, digestible information, using pictures well in your marketing mix makes good sense.</span></p>\n<p class=\"aaparagraph\"><span lang=\"en-us\" xml:lang=\"en-us\">Most marketers turn to stock photography when they want to illustrate their idea or campaign. That’s because it can be cost-effective and fast. But there are risks with stock photos, and smart marketers should know them.</span></p>\n\n<p class=\"aaparagraph\"><span lang=\"en-us\" xml:lang=\"en-us\">The reason we use stock photos most often here at New Word Order is to create mock-ups and ideas for our clients, giving them a better representation of our idea and what we have in mind. Stock photography can also be faster and cheaper than a photo shoot, and it’s instantly available. So, for brochures and smaller pieces, stock photography can be the way to go.</span></p>\n\n<p class=\"aaparagraph\"><span lang=\"en-us\" xml:lang=\"en-us\">But there are also many, many reasons why investing in a proper photo shoot is better for your business and brand. For starters, stock photography is pretty generic, impersonal and unrealistic. Probably not the look you were after for your new campaign or your brand.</span></p>\n\n<p class=\"aaparagraph\"><span lang=\"en-us\" xml:lang=\"en-us\">Stock photos are never taken with a specific idea in mind, and that means they can be bought by anyone and have no particular alignment with any brand. If you use stock photos, you risk looking like any other business – unoriginal, and quite possibly uninspired. If you want to look unique, only images unique to you can achieve this… not the clichés and overused images of your competitors, nor the unrelated stock images you might try to shoehorn into your idea.</span></p>\n\n<p class=\"aaparagraph\"><span lang=\"en-us\" xml:lang=\"en-us\">At NWO, we love a photo shoot. It’s not just that we’re all about an original idea, either. We believe that when you work with a photographer, you get far more than an image file. You get the benefit of experience, creativity, knowledge and insight.</span></p>\n\n<p class=\"aaparagraph\"><span lang=\"en-us\" xml:lang=\"en-us\">You also get to say something unique, present something instantly recognisable to the market, and really stand out. You get a professional who listens to and understands your brief, knows what you’re trying to say and what you want to achieve. If you want to make changes on the day, you can, and the final decision on the final image is also in your hands. Complete control.</span></p>\n\n<p class=\"aaparagraph\"><span lang=\"en-us\" xml:lang=\"en-us\">So while stock photos may be cheap and fast, they can also make your brand look unfocused and unoriginal. A photo shoot is the only solution for a company that wants to visually stand apart from the competition.</span><span lang=\"en-us\" xml:lang=\"en-us\"> </span></p>\n\n\n<p class=\"aaparagraph\"><span lang=\"en-us\" xml:lang=\"en-us\">With the help of our trusted photography partners, we’ve directed photos shoots for many of our clients – some of them on tight budgets – from <a href=\"http://www.mosaicca.com.au/\">Mosaic Chartered Accountants </a>through to Embertec’s very own Power Saviour. For every client, it’s been well worth the investment to truly stand out.</span></p>\n<p class=\"aaparagraph\"><span lang=\"en-us\" xml:lang=\"en-us\"> </span></p>\n<p class=\"aaparagraph\"><span lang=\"en-us\" xml:lang=\"en-us\">Talk to us today about how you can use photography to bring life to your next campaign.</span></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17599,17836,1,'Mums mean business','2021-05-18 04:08:21','2021-05-18 04:08:21','ca6ce5da-562c-4815-9893-f573dc9be1c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p class=\"AAPARAGRAPH\"></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Twelve years ago, I turned my back on a promising career at News Limited and became part of what is now a significant movement in small business: the mumpreneurs.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Faced with inflexible working conditions, shift work and only average pay as a subeditor, the option to build a business through freelancing was alluring. My husband and I had also walked a long, hard road to have our kids; turning around and putting them in full-time childcare felt like a betrayal of the journey.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Working from home with a young child, of course, had drawbacks. I remember clearly the day my monitor went dead during a pressing deadline… because my baby had crawled underneath the desk and chewed through the connection cord. The horror that she could have just easily chomped on the power cord sent me out to buy a playpen.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Social isolation was also a significant issue. I didn’t join mother’s groups or lunch with the ladies while any of my three children were at home because every sleeping moment for a child was a working opportunity for me. No other woman in my wide circle of acquaintances worked for themselves or, if they did, it looked nothing like my level of enterprise. I became – and remain – the queen of speed because there was simply no time to waste.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Since expanding the business and no longer working from home, I look back on those years with a mixture of amusement and dread. It tickles me that so few clients knew I worked from home, and that my business grew just as fast as my children did. Sometimes faster. I also remember, very clearly, the deadlines worked all night and the stress of needing far more hours than I had capacity. Quite literally, I pressed ‘send’ on work to clients on my way to hospital to deliver a baby. Twice. By the time my third child arrived, thankfully, I’d hired another writer.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Last week, memories of my early years in small business came flooding back with a <em>Sydney Morning Herald </em>article on mumpreneurs. The women interviewed were driven to begin home businesses by similar factors: childcare costs and a desire for flexible parenting while generating an income.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">But that’s where the similarities end. Today’s mumpreneur is part of a growing army. A BankWest study in 2011 found women are starting businesses at twice the rate of men, thanks to the benefits of better technology. Mumpreneurs Online surveyed UK women last year to find that 73 per cent had started their own business – and they knew another woman who was doing the same. AusMumpreneur claims 16,000 members nationwide. And in October, a two-day conference called Mumpreneurs on Fire is drawing hundreds of women to Melbourne. One of the plenary sessions is on how to build a multi-million dollar business. These mums mean business.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">It’s about time. With Baby Boomers fast exiting the small business – half of all businesses are owned by people over 45 – there will be a glaring gap in our economy unless Generation Y, mums included, steps up to the plate.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Long live the entrepreneurial spirit enshrined in small business, and best of luck to this rising mummy army. I just hope they get more sleep than I did.</span></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17600,17837,1,'The problem of creativity','2021-05-18 04:08:57','2021-05-18 04:08:57','722f9b60-eb76-41a0-a4a6-332395a36b0d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'\n<p class=\"AAPARAGRAPH\">Explaining what it is we do at New Word Order, working in a <em>creative agency</em>, can be a little tough. </p>\n<p class=\"AAPARAGRAPH\">We’ve come to realise it’s the word ‘creative’ that probably throws people.<em>\n</em></p>\n<p class=\"AAPARAGRAPH\"><em>Creative</em> means something different to everyone. It even means something different to each of us here at NWO. Our project managers, marketers, designers and writers each work in different disciplines and are inspired by different things. And each of our clients and their projects are, too.</p>\n<p class=\"AAPARAGRAPH\">So we took some time to ask around the office and try to define what creative means to us. What we found was interesting – some fascinating definitions and insights, inspired by work and from outside of it. It seems that working in a building with ‘creative’ written on the side does encourage us to be so. And what was amusing was the insight into our staff their responses elicited.</p>\n<p class=\"AAPARAGRAPH\">For our designer Rebekah, creativity means letting go of what you think you know. Isn’t that kind of perfect? At the same time, our resident wordsmith Suzanne finds creativity in <span lang=\"en-us\" xml:lang=\"en-us\">beautifully crafted words. Suzanne says she can be star-struck by beautiful phrases the same way someone else can be affected by visual art or fashion.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">To feel creative, our strategic marketer Nikala says she likes to consider the problem at hand and then take time out to think – go for a walk, have a drink with friends, relax. Scott, our Creative Director, says he also likes a change of pace and headspace to ignite creativity – he even finds airports and planes inspiring because they’re so different to his normal place. Scott feels most creative, though, when a worthy challenge or brief comes our way. Rebekah also feels most creative when </span>inspired by a great brief.</p>\n<p class=\"AAPARAGRAPH\">And what of true creativity? According to Suzanne, <span lang=\"en-us\" xml:lang=\"en-us\">at its heart creativity is about seeing the world differently and pursuing the new. She says that writing with great creativity is the hardest work she does, and she finds creative copywriting demands the most energy but also gives her the greatest satisfaction. </span></p>\n<p class=\"AAPARAGRAPH\">Scott says creativity is the generation of something new that contributes to the shared human experience. It\'s sometimes original that spans every aspect of what a human mind is capable of – science, art, you name it. </p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Nikala agrees that creativity isn’t necessarily about art. Paving the way for our clients and their projects, she points out that creativity can be seen anywhere and is </span>probably best defined by someone thinking differently about a problem and coming up with a solution that is not only new, but also works. </p>\n<p class=\"AAPARAGRAPH\">And so, in a building labelled ‘a creative agency’, there are as many different ideas as people when it comes to defining what characterises our work. Last words to Scott:</p>\n<p class=\"AAPARAGRAPH\"><em>True creativity is unique, incredibly clever, transforming to humanity, and startling in its (metaphorical) beauty. I\'m hooked on the link between creativity and beauty in all its possible meanings. </em></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17601,17838,1,'Learning to lead','2021-05-18 04:09:35','2021-05-18 04:09:35','77317323-048a-4739-ac93-60a46bf9691e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Most of us have leadership potential, but not all of us are true leaders. Have you ever thought about what true leadership is? Let\'s take a look at how to inspire and motivate yourself and a team to follow your vision.\n\n<strong>A vision</strong>\n\nLeadership starts with vision. A survey by <em>Harvard Business Review</em> found that being forward-thinking is the attribute that most distinguishes leaders from non-leaders. The consensus is that envisioning exciting possibilities and sharing them with others is the most inspiring way to lead a team.\n\nGreat leaders, John Ryan wrote in <em>Forbes</em>, give real thought to the values, ideas and activities they’re most passionate about. These should be challenging to put in action, and success should only be reached by setting realistic, demanding goals and going after them relentlessly.\n\nWith the help of other engaged and talented men and women, a leader is born.\n\n<strong>Balance vision and action</strong>\n\nWhile your vision is the destination, action is how you get there. Creating a balance only happens when the directions or instructions to reach that vision are clear.\n\nA leader needs to understand their team and what motivates them. David Lavinsky wrote in <em>Forbes</em> that true leaders recognise talent and work with those with skills to complement their own, celebrating small victories with the team while staying focused on the big goal.\n\n<strong>A personal statement</strong>\n\nA useful personal leadership vision, focused on action and direction, is a compelling image of an achievable future. Stew Friedman suggested in the <em>Harvard Business Review</em> that to grow as a leader, you should compose your own personal leadership vision, drafted and practised until it’s true and inspiring.\n\nFriedman also recommended asking staff to do the same, building on the trust that comes from being aware of what really drives one another.\n\n“You’ll be better equipped to capitalise on a critical, often overlooked, aspect of diversity – the remarkable variety that exists in the aspirations of the people around you,” Friedman said.\n\n<strong>Communicating your vision</strong>\n\nKnowing what you want to accomplish may seem clear to you, but as Tanya Price wrote in <em>Forbes</em>, explaining and motivating others is a different story. Clearly and succinctly describing what you want done is important. If you can’t relate your vision to your team, you won’t all be working toward the same goal.\n\nCreating a productive work environment depends on clear communication. Your team will learn to trust and depend on you, and will be less hesitant to work harder.\n\n<strong>Values and delegation</strong>\n\nYour team is a reflection of yourself, and if you make honest and ethical behavior a key value, they\'ll follow suit.\n\nDelegating tasks is one of the most important skills you can develop for leadership. And the key to delegation is identifying the strengths of your team, and capitalising on them.\n\n<strong>Confident and committed</strong>\n\nPart of your job as a leader is to keep up your confidence and focus on the larger goal.\n\n“Remember, your team will take cues from you, so if you exude a level of calm damage control, your team will pick up on that feeling,” said Price.\n\nOf course, if you expect your team to work hard and produce quality results, you must lead by example. There’s no greater motivation than seeing hard work done at every level.\n\n<strong>Leadership, not management</strong>\n\nManagement is a set of processes, like planning, budgeting, staffing and problem-solving. That’s different to leadership, which is about taking a team or organisation into the future, finding opportunity, and producing useful change.\n\nWhile management is about attributes, leadership is about behaviour. Are you behaving like a leader?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17602,17839,1,'The year of content marketing','2021-05-18 04:10:15','2021-05-18 04:10:15','b8fab843-8bc2-4adb-8a76-24c76f0a8b58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'We’re halfway through the year already. When did that happen? For marketers, this was going to be the ‘year of content marketing’. Has it been for you?\n\nMany brands have had a great time putting together content marketing campaigns – <a href=\"http://www.marketingmag.com.au/blogs/when-content-marketing-goes-wrong-40021/#.UYyG17Zm2cR\">Marketing Mag</a> cites Red Bull and Mitre 10’s efforts on <em>The Block</em>. But there’s always an extra worry that overloading customers with content can do more harm than good.\n\nThink of how you engage online and use social media yourself. We all have those friends who overpost and overshare, and you end up either ignoring or blocking them. Don’t run the risk of bombarding your customers with inconsistent or non-engaging content just to keep up a social media presence. It’s a guaranteed way put them off completely.\n\nWith LinkedIn and Facebook used to distribute the most marketing content, it’s not just the frequency of posts that can let your company down. It’s about what you’re saying, too. And the balance between pushing your message and producing good content is tough, as is maintaining consistency. It’s a balance, really, and the key is creating informative, engaging and sharable content.\n\nSo, what’s the trick? Well… there is none. Sorry. It’s old-school. Understand your market’s likes and expectations, and especially understand how much they want to hear from you. A common sense approach. How are you surviving in the year of content marketing?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17603,17840,1,'Talking to the kids: tips for marketing to Gen-Y','2021-05-18 04:11:10','2021-05-18 04:11:10','bb15c0ee-4c01-4c09-aaf4-32c8a57f9aac',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Generation-Y is the first generation that grew up with the internet, and so marketing and speaking to those whippersnappers can be a challenge. We found when we worked on our My Smoking and Feeling Good campaigns with Queensland Health that Gen-Y doesn’t like being preached at – they prefer being spoken to, sharing stories, and honest marketing experiences.\n\nKeeping in mind that half of the NWO team fits into that pesky generation, we’ve taken a good look at global researcher Joeri Van den Bergh <a href=\"http://www.marketingprofs.com/articles/2013/10599/five-steps-to-improve-your-marketing-to-generation-y\">interviews with 21 global marketing executives</a> from big brands, like Converse, Heineken and BBC about improving their marketing to Gen-Y customers. Here’s what he - and we - learned.\n\n<strong>1. Make it relevant</strong>\n\nFor Gen-Y, it’s all about price/quality: Are you offering something valuable? Are you only selling product, or facilitating and endorsing their life? Being true to who you are is also key. Van den Bergh found storytelling, authenticity, and uniqueness add more than you would expect: They reflect Gen-Y\'s core values and sustain your corporate identity.\n\nHe also says that creating an actual experience around your product, online and offline, elevates your brand experience. To stay relevant for Millennials, Van den Bergh says marketers should endorse inclusive brands with exclusive experiences.\n\n<strong>2. Be where they are</strong>\n\nVan den Bergh says that above-the-line campaigns still create awareness, but integration with social media and interaction is vital to connect with Gen-Y.\n\nHe recommends that websites be used to engage with Gen-Y customers on a deeper level, with contests, games, or ads. Van den Bergh says your website should be a portal where everything your consumer needs to know is presented in an intuitive and engaging way.\n\nOf course, he considers social media a must. Facebook, for example, enables interaction and inspiration and is a great platform for trying new things. Van den Bergh recommends going mobile to connect with your consumers, and to connect them with each other.\n\nHe also says events are the way to go when you want to create an ultimate customer experience. The result is word-of-mouth—sharing stories online and long-lasting memories.\n\n<strong>3. Activate conversations</strong>\n\nSurprising your consumers is the best way to shake them awake and make sure they stay focused. Van den Bergh says a surprise can be anything and as long it’s relevant and you don\'t stalk them, Gen-Y will love it.\n\nHe also says not to underestimate the power of stories. Tell a story about yourself, let your consumers share stories about their personal life, or combine both.\n\n<strong>4. Enhance loyalty, be FAIR</strong>\n\nYou have to keep your Gen-Y consumers involved. Van den Bergh says to follow the FAIR model: FAst, Innovative, and Rewarding.\n\nThe faster you react to your consumers, the more likely you are to have a bond with them. By innovating, you are showing interest, creativity, and initiative. Showing Gen-Y consumers your appreciation for having chosen you is key.\n\n<strong>5. Have guts</strong>\n\nGo out there and create a daring but relevant appeal.\n\nHow have you marketed to Gen-Y? What’s worked, and what hasn’t? We’d love to hear from you! Let us know and join the conversation in the comments below.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17604,17841,1,'Righting writing','2021-05-18 04:11:52','2021-05-18 04:11:52','e82a9ea1-18ff-483a-a0db-9569ac4f0494',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Uni was when I found my purpose in life. A passionate lecture on the very first day was my ‘eureka!’ moment that then propelled me through a double major in communications, 10 years in a newsroom and countless more in corporate writing.\n\nBut it all could have come tumbling down in the stern and unyielding face of just one lecturer: Ros Petelin.\n\nLike most kids who gravitated toward the arts in school, I’d been feted as a bit of a writer. I wrote installments of unreasonably sappy romance novels late at night and distributed copies to peers on the train the next morning. I won an academic scholarship for my writing (although nearly lost it many times for my maths).\n\nIt was left to Ros – now an associate professor in the School of English, Media Studies and Art History at UQ, and a well-respected writer in business communication – to tear my self-made kingdom down, word by word, until I could rebuild it on more solid foundations.\n\nHere’s what I now know to be true about writing effective business words.\n\nThanks, Ros. I hope you’re grading more kindly these days.\n\n<strong>Trick #1: Talk like your audience</strong>\n\nIf you’re writing for your business, forget formal words and don’t allow fear of failure – or grammar – to stop you writing. Instead, a trick I’ve long used in business writing is to hear a typical customer’s voice in my head, and then to write like they talk.\n\nLike acting, the craft of writing involves immersing yourself in the character. In this case, the character is your customer – and by sounding like them, you’re more likely to draw them in.\n\n<strong>Trick #2: WIRMI</strong>\n\nI have Ros and her fondness for US author Linda Flowers to thank for WIRMI. The acronym ‘What I Really Mean Is’ is extraordinarily helpful in bringing clarity to business writing, and it’s a tool I still use daily.\n\nYou can use WIRMI as a catchphrase at any point of your writing – when you’re trying to work out exactly what you want to say, and when you’ve written something and you need to ensure it says what you want, clearly and well.\n\nIf you’re not comfortable with writing – and plenty of people would rather line up for a root canal than write an essay – this is a great way to check you’re on track.\n\n<strong>Trick #3: So nice you read it thrice</strong>\n\nFinally, if you’re satisfied that what you’ve written is the best you can do, read it through once more – and then put it down.\n\nAfter a few hours – or a few days, if you have the time – pick it up and critically read it again. Make a few adjustments. Delete a few words. Then hide it again.\n\nOn the third go, after another break, pretend you’re the customer and read it aloud to yourself as though you’re seeing it for the first time. If you have no more changes to make to it, it’s good to go. But chances are, you’ll think of a few.\n\nWhy at least three reads? Professional writers and editors know better than anyone that great writing comes from multiple drafts, not a single session of inspiration. Taking a break in between drafts – although hard to do in a busy work day – can be the key to achieving great results.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17605,17842,1,'Management is more than measurement','2021-05-18 04:12:33','2021-05-18 04:12:33','434cc3d9-1912-4a14-ace0-d49848c9ced5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Businesses in the service sectors have taken many management practices straight out of the factories of the 20th Century. Often they don’t work.\n\nLet me use one of my staff’s previous performance reviews as a case study.\n\nHe worked for a large corporation and its performance review policy was worker and boss would sit down once a year for 20 minutes.\n\nThe boss had a set checklist for everyone – the same one.\n\nIt was a single A4 page covered with metrics along which each staff member would receive a score from ‘subpar’ through ‘needs improvement’ and ‘meets expectations’ to ‘exceeds expectations’.\n\nMy employee told me that his boss ticked ‘meets expectations’ for everything … regardless of who he was scoring.\n\nFor people who have worked in large corporations, nothing would be surprising so far. However, my employee and his boss had an unusually candid relationship.\n\nWhen my employee asked his old boss what he had to do to ‘exceed expectations’, the boss intimated that head office had decreed that no-one was allowed to ‘exceed expectations’.\n\nYou could surmise that this might have merely been an attempt to keep things simple. If everyone is average and everything works well enough, then no-one gets a raise, no-one needs leadership coaching, no budgets are stressed, and everyone remains motivated to ‘exceed expectations’.\n\nHowever, this case study skewers the saying <em>you can’t manage what you can’t measure</em>. This company’s performance reviews were <em>not </em>measuring, though they looked a lot like it. Their measurement tools and practices didn’t match the nature of their staff’s tasks in a services industry.\n\nSo this company was using an unreliable yardstick – a single A4 of tick-and-cross – and an unreliable measurer: the manager’s judgment in that one 20-minute block once a year.\n\nPlus they had kneecapped both with a rule that no-one can be better than just ‘good enough’.\n\nHere’s the rub. Most jobs these days aren’t on conveyor belts. Most create ‘value’ – the unmeasurable flipside of ROI – through services. Performance in these jobs can be accurately judged and appraised by involved and well-trained managers, but job performance in these sorts of roles cannot be accurately summed up with numbers.\n\nHere are the crucial toolkit words – and these words are a great hammer and anvil to crack so many things apart: qualitative and quantitative.\n\nManagement by measurement is quantitative. It is accountancy played with people. It fits neatly with the MBA approach to business.\n\nManagement by attention, involvement and open dialogue is qualitative. It understands and then secures consensus. It doesn’t fit anything neatly.\n\nWorking with people’s qualities isn’t neat, but it <em>is </em>where value comes from in the service sector.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17606,17843,1,'Corporatese to English','2021-05-18 04:13:08','2021-05-18 04:13:08','24ce1b9b-fb48-4594-86b3-35133227dba7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Our business, a prominent leading boutique South East Queensland digital, media, full service and mixed creative agency whose track record puts forth successes and achievement, is New Word Order.\n\nWe have built our business on a sensed customer <strong><span>need</span></strong> to elucidate and provide services and solutions from depth-wise passions toward maximizing, engaging and touching base with expert decision-makers and leading experts across our metropolitan networks and even internationally.\n\nThese <strong><span>help</span></strong>ing, leading and connective skills are what we’d offer to any of our thousands of potentials – inclusive of and <strong><span>with</span></strong> regard to prospectives across the Brisbane and Queensland and Australasian <strong><span>business</span></strong> regionality. Therefore, does contacting New Word Order makes a case for your foremost responsibility toward your strategy regarding your business <strong><span>media?</span></strong>\n\nTaking this as a call to revolutionising content, <strong><span>we’d</span></strong> arrange to respond to results-based briefing documentation in solutionised offerings right through to customisable tailored service solutions, meaning the customers is always directly involved within the provision of every consultative gathering of resources, attaining full and effective impacts.\n\nSynergising professionally written, artfully designed and productionised media communiqués aligns with our <strong><span>love</span></strong>ly, ever-broadening, and exceptionally cultivated, understanding regarding <strong><span>to</span></strong> every comprehensive aspect within messaging strategies and best practice.\n\nAiding and multiplying the efficacy to <strong><span>give</span></strong> pursuit-led and driven engagement regarding consideration to <strong><span>you</span></strong> on our in-house specialities, strength and market-leading is an outstand.\n\nAttaining <strong><span>a</span></strong> results-based outcome <strong><span>hand</span></strong>-in-hand with dominant-paradigm appropriation and knowledge guarantees absolute marketing and communicated outcomes.\n\nOr, more simply:\n\n<a href=\"http://www.newwordorder.com.au\"><strong><span>Need help with business media? We’d love to give you a hand.</span></strong></a>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17607,17844,1,'How to read the media','2021-05-18 04:13:41','2021-05-18 04:13:41','94d2fec6-b16e-4a29-95d0-934af744aa3a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'With so much sensationalist news out there competing with valid journalism for your attention – and often winning – being able to tell the exploitative from the illuminative is a valuable skill.\n\n<strong> </strong>\n\nAt the moment, the ideal of an informed public is suffering in something of a perfect news storm.\n\nThe interdependent weather fronts colliding are the 24-hour news cycle, Google’s diversity of sources, a global panic culture and political coverage that paints one side as uniformly outrageous and the other as cringingly ineffective: Abbott vs. Gillard, Newman vs. Palaszczuk, Romney vs. Obama.\n\nNews companies have found their new news audiences are always switched on, always hungry and, through Google, able to choose facts to suit their preceding opinions.\n\nSo used to being shocked, so prepared for it, the audience is anxiously tensed to leap on the tawdry or gory or disastrous.\n\nHeadlines such as “Australia actually unpopular destination for refugees” don’t sell.*\n\nPeople crave certainty in uncertain times. And there’s profit in that. At its worst, that led to the goings-on at News in the UK, but in its garden-variety form it has led news devolving from knowledge, analysis and consideration to information, opinion and soundbites.\n\nOr, more often in the case of financial and business news, an addiction to data (which sits one rung of below information, and two below knowledge) and whichever statistic is most alarming at that hour.\n\nBut now, a caveat before we unload on journalism: largely speaking, journalists do their best and care passionately about doing what they do and about doing it well and accurately. But, as every business knows, where there is passion there is overwork. And news is business.\n\nThus, these days reading news is, more than ever, about reading between the lines.\n\nHere’s how:\n\n<strong> </strong>\n\n<strong>Experts and gurus</strong>\n\nIn general there are three ways journalists establish the veracity of their stories they appeal to your mind, your heart or your respect for someone’s reputation.\n\nIt’s roughly the same idea as academic referencing in research, but it is perverted by placing the angle before the evidence. A quick way to clock a true expert is to research their credentials.\n\nLook for markers of success and that they practice what they preach. Would you go to a financial planner who was broke? If a story really gets you thinking, it worth doing some digging into who is quoted.\n\n<strong> </strong>\n\n<strong>Bleeds it leads</strong>\n\nOne of the oldest sayings in journalism is ‘if it bleeds it leads’: essentially, bad news sells. These days news services are struggling to find a business model that works when so much content is free online.\n\nMany simply try to drive maximum traffic through their sites. Shock tactics and so-called beat-ups are one way of grabbing attention.\n\nMost of the time, bad news is not nearly so bad. For example, remember the hullabaloo that preceded the activation of the Large Hadron Collider?\n\n<strong> </strong>\n\n<strong>Chinese whispers</strong>\n\nDo you hear what was said or what you want to hear? There is no way to avoid it, communication misfires almost constantly.\n\nA speaker can think one thing but accidentally say another, the listener can misunderstand what they say, the note taker can make a mistake, the tape recorder can pick up the sound of papers rustling at a crucial time. And that’s just communication across one link of the chain from brain-to-mouth, mouth-to-ear, ear-to-brain, brain-to-hand, pen-to-paper. Multiply these each time the information passes to the next actor in the sequence – including journalist, editor, proof reader, sub-editor and printer – and it is a wonder anything is even largely accurate.\n\n<strong>Damn statistics</strong>\n\n‘Lies, damn lies and statistics’ is true!\n\nStats are compressions of mathematical data into pieces of information. Compression always loses something. And there are big loopholes through which data can be pushed to get the result you like.\n\nFor example, if a study on income has a sample of 1000 people of whom 999 earn $1 a year and one Clive Rinehart who earns $1 billion a year, then the average wage – mathematically speaking – is just over $1 million. Prosperity for all!\n\nStats, facts and figures have their place. Generally, that place is not the centre.\n\n<strong>Agenda and bias</strong>\n\nBack in the Obama-McCain race there was 25 seconds that beautifully demonstrated media bias. You can watch it <a href=\"http://www.youtube.com/watch?v=KTkqosRiyYo\">here</a>.\n\nIf you don’t want to watch, this is what happens: the reporter asks a group of diners if they are going to vote for McCain – no one puts their hand up (one couple fights about it); then he asks who is going to vote for Obama – everyone puts their hand up. Then he turns to the camera and says, “See, it’s split.”\n\nAustralian mainstream media doesn’t seem embrace such gasp-inducing chutzpah, but there are definite leans to many of our outlets. Keep an eye out for them.\n\n<strong>Simple and simplistic</strong>\n\nEdward De Bono – regardless of what you think of him – wrote something useful about the difference between simple and simplistic.\n\n“If you do not seek to understand a situation or process, your efforts will be ‘simplistic’ rather than simple. Simplicity before understanding is worthless.”\n\nTime poor generalist journalists often never get a true and deep understanding what they are writing about. (Dedicated subject-matter journos, such as Laurie Oakes, absolutely understand what they are talking about). The average newshound just has to get the story down on paper, compressed by time, and move to the next thing.\n\nThey simply lack the time – and very often the inclination – to pore over details. Confronted with 4000 words of research for a 500-word space they prune things off. Often that simplification ends up simplistic and vital, subtle accuracies are accidentally lost.\n\n<strong>Questioning headlines?</strong>\n\nMy last point is taken verbatim from journalist <a href=\"http://en.wikipedia.org/wiki/Andrew_Marr\">Andrew Marr</a> and his book <em>My Trade</em> because it can’t really be said any better.\n\n“If the headline asks a question, try answering ‘no’. “Is This the True Face of Britain’s Young?” (Sensible reader: No.) “Have We Found the Cure for AIDS?” (No; or you wouldn\'t have put the question mark in.) “Does This Map Provide the Key for Peace?” (Probably not.) A headline with a question mark at the end means, in the vast majority of cases, that the story is tendentious or over-sold.\n\n“It is often a scare story, or an attempt to elevate some run-of-the-mill piece of reporting into a national controversy and, preferably, a national panic.”\n\n<strong>What it all means</strong>\n\nJournalism is a tricky trade. The tricks cut both ways: you can foist them upon the audience or you can be caught out by them.\n\nAs long as attention spans continue to shorten – or as long as pandering to short attention spans makes more money – news is only going to get ‘trickier’ – in both senses of the word.\n\n*According to 2011 research form the UN, Australia ranks as the 46th most popular destination for asylum seekers.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17608,17845,1,'Common sense isn’t common','2021-05-18 04:14:19','2021-05-18 04:14:19','1de32ec1-7636-4422-871e-1b99b1f53f67',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A great deal of being successful in business is being practical, prepared and dedicated. Seems like common sense.\n\nYou could almost say ‘never put off till tomorrow what you can do today’.\n\nBut things aren’t ever that simple.\n\nWhile old sayings knock around forever, quite often all they do is put a situation into a little box so it stops nagging on our limited attention. In business, however, those nags – technically known as ‘thought-terminating clichés’ – often desperately need to be heeded.\n\nIn my work this week, I’ve seen what happens when an otherwise impressive company becomes blinded by its own clichés. In this case, it’s made senior management myopic, staff stifled, and the owners so consumed by their own narrative they’re unwilling to take responsibility for their failures. It’s not pretty, and the effects are wide-ranging.\n\nSo, how can you tell if you’re thinking clearly or caught up in your own clichés? For one, consider the terrifying thing about common clichés: pretty much all of them have an equally popular contradictory saying. Chances are the ones you favour in your business do, too.\n\n<em>Look before you leap … He who hesitates is lost.</em>\n\n<em>If at first you don\'t succeed, try, try again … Don\'t beat your head against a brick wall.</em>\n\n<em>Absence makes the heart grow fonder … Out of sight, out of mind.</em>\n\n<em>Haste makes waste … Time waits for no man.</em>\n\n<em>You\'re never too old to learn … You can\'t teach an old dog new tricks.</em>\n\n<em>Do unto others as you would have others do unto you … Nice guys finish last.</em>\n\nReal common sense comes from combining logic, understanding and intuition. Most importantly, in a business sense, it comes from owners and managers operating with honesty, integrity and a good dose of self-awareness.\n\nSo while the problem you’re tackling in your business might well be better solved by putting your brain in gear, nose to the grindstone, shoulder to the wheel and keeping your eyes peeled – chances are that what you really need is the guts to be brutally honest with yourself.\n\nIt begs the question: What are the ways you use common language to brush over problems in your business? Are there common catchphrases or clichés buffering you from a dose of reality?\n\nHere are some examples:\n\n<em>That’s not the way we do things.</em>\n\n<em> It’s not my fault.</em>\n\n<em>That customer’s an idiot.</em>\n\n<em>It’s my way or the highway.</em>\n\n<em>The buck stops with me.</em>\n\nIf you stopped to consider the situation and the automatic response within your business, I wonder if there’d be a nugget of genuine insight there that’s being hidden by a cliché? An opportunity to improve, rather than deny?\n\nIt’s worth considering. After all, it’s better to be safe than sorry.\n\n<em>This article first appeared in CCIQ’s Inform. We create, research and write this monthly e-zine, which goes out to businesses across Queensland.</em>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17609,17846,1,'State your client’s case','2021-05-18 04:14:57','2021-05-18 04:14:57','9939993d-43cf-467a-88c4-69b30743c0c0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'We all know how much easier it is to see the path if someone else has cleared it for us first. Your clients and potential clients are no different. Comparing can help them comprehend the value to their own business.\n\nThat’s the value of a case study.\n\nThe trick is producing an interesting, well-written, balanced story that makes audiences believe and want to read it.\n\nSo how do you put together a great case study?\n\nFirst, you need a happy (and preferably interesting) client who agrees to let you tell their story.\n\nNext you need to listen to their story. It’s not good enough that you know where your product and services sit in their business. That’s not the story, that’s your marketing copy.\n\nStep away from your own business perspective for a moment and think about your clients’.\n<ul>\n 	<li> What are they trying to achieve as a business?</li>\n 	<li>What specifically were they trying to achieve when they implemented your product or service?</li>\n 	<li>What was the situation or status quo prior to implementing your product or service?</li>\n 	<li>How did (or do) they find the process?</li>\n 	<li>Did your service meet or exceed their expectations?</li>\n 	<li>Were there any hiccups or learning experiences that can be included? (We figure if you’ve chosen this story it’s a pretty happy one. But there’s nothing wrong with including an honest teething problem, especially one that has a happy ending. If you addressed and resolved the issue quickly, then it’s a positive reflection on your business).</li>\n 	<li>What was the final outcome?</li>\n 	<li>Can you put a dollar or other specific value figure on the outcome?</li>\n</ul>\nYou need detail to paint a picture, but don’t get bogged down by it. Keep it sharp, informative and interesting to the audience, and make sure your tone suits them too. Include constant subtle reminders of your product or service\'s involvement in the success, but avoid making it sound like advertorial.\n\nGetting it right is worth the effort. At New Word Order, we’ve been producing case studies for client web sites, brochures, presentations, publications and other collateral for over 9 years. We get the brief right, we know what questions to ask and we know how to conduct a phone interview. Because we do them every day.\n\nIf your product or service adds value, a great client case study is going to be the most effective sales tools you ever invested in.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17610,17847,1,'Be heard across vertical markets and sectors','2021-05-18 04:15:29','2021-05-18 04:15:29','923d3691-9cfd-4697-b2e9-79a305c5b9a9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Everyone wants a product or service that meets their needs. We’re time-poor, so that means we want to work with businesses that get us, that know what we do and can service us accordingly.\n\nBusinesses with specialised, vertically oriented products have been marketing this strength for years.\n\nSo how do you capitalise if your product isn’t niche-market specific?\n\nI’m not about to tell you to start touting your product as market specific or specialised if it’s not. But if clients from a particular industry sector are benefiting from your product or service, why not tell other potential, similar clients? It’s much easier to get an audience to listen if you’re speaking directly to them.\n\nCustomising your message can build confidence in your service and help you to build market share.\n\nChoose one or two major industry sectors you service, and then ask yourself (or better still, ask them) a few questions.\n\n<em>How do they use your product or service? </em>\n\n<em>What specific business benefit are they getting when they use it? </em>\n\n<em>What staff within the organisation use it the most?</em>\n\nArmed with that knowledge, you can produce messages and communications collateral that directly engages the audience.\n\nIt doesn’t have to be complicated. You don’t have to build a whole new campaign for every industry you service. Your brand and product remains consistent, but the way you structure your message changes.\n\nThere’s no better way to show potential clients how much you appreciate their specific needs.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17613,17850,1,'Family and Child Connect','2021-05-25 06:14:02','2021-05-25 06:14:02','128e63ca-b613-44e5-ac5e-43ce2d8185cb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17614,17851,1,'Government','2021-05-25 06:16:19','2021-05-25 06:16:19','5c689f52-1448-4a04-b933-dce4d2d43f03',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17618,17855,1,'Urban Utilities','2021-05-26 01:35:56','2021-05-26 01:35:56','85d38e7f-6486-4a2f-b1d2-f206bb603604',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17620,17857,1,'Brisbane North PHN','2021-05-26 01:44:01','2021-05-26 01:44:01','137fc592-ee68-49bf-8263-2d9b10907a26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17625,17862,1,'Central Queensland, Wide Bay and Sunshine Coast PHN','2021-05-26 02:12:21','2021-05-26 02:12:21','41dbdedd-cb0f-418e-bfe7-651db0b2c0a3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17627,17864,1,'AMG Super','2021-05-26 02:16:07','2021-05-26 02:16:07','3a923b3b-513e-4a9c-9877-70c99255c742',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17629,17866,1,'Mosaic Chartered Accountants','2021-05-26 02:17:58','2021-05-26 02:17:58','086f201a-6106-48f6-8757-678e7577f126',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17631,17868,1,'Tritium','2021-05-26 03:26:45','2021-05-26 03:26:45','7497f706-1811-44ba-b0f1-cb554b2259ff',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17635,17872,1,'Queensland Mental Health Commission','2021-05-26 03:44:07','2021-05-26 03:44:07','3d03ffd8-f1a7-4265-b0bb-5e3b7d7b537c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17638,17875,1,NULL,'2021-05-31 07:10:29','2023-03-06 02:48:59','399a30eb-7d7c-410f-9024-de1f0a3dc789',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Head of design',NULL,NULL,NULL,'#### As head of design, Andrew leads our studio. \n\nIn his 18 years of design experience, he’s built many brands, campaigns and most importantly long-standing relationships with clients. Andrew believes in finding the right creative solution for any design challenge at hand, but brand reputation is where his true passion lies. He gets immense satisfaction from clients embodying their brand and seeing how successful it makes them. From a billboard or a bus driving past, to a pre-roll on YouTube and ad in the cinema before a movie—seeing and feeling your work in print and the real world is one of the best parts of being a creative.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.linkedin.com/in/andrew--mcguckin/',NULL,NULL,NULL,NULL,'blue',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17639,17881,1,NULL,'2021-05-31 07:14:26','2023-03-09 04:28:33','27624077-dfd8-4f70-90f5-ea406b2e5600',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Account manager',NULL,NULL,NULL,'#### Rebecca’s working experience includes living in the UK for 13 years. \n\nWorking for both global and independent agencies managing packaging, design and brand consultancy projects for global brands such as Shell, Wrigley, Cadbury and Tesco—to name just a few—has given Rebecca insights and experiences across a wide range of market categories and cultures.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.linkedin.com/in/rebecca-holman-a327227/',NULL,NULL,NULL,NULL,'red',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17640,17887,1,NULL,'2021-05-31 07:17:11','2023-04-06 04:54:21','7cce876d-d65b-4e0d-ac41-d94c340c3872',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Junior copywriter + production coordinator',NULL,NULL,NULL,'#### Bree is a balance of organised type A and chaotic creative. \n\nShe loves projects down to the small details, taking care of the little parts so that our team can do what it does best. Bree’s been a writer since the first time she picked up a pencil and she loves expressing what our clients can’t find the words to say. She studied public relations at QUT but New Word Order is where she fell in love with marketing.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.linkedin.com/in/bree-leitch-01a6311a4/',NULL,NULL,NULL,NULL,'red',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17641,17893,1,NULL,'2021-05-31 07:20:10','2023-03-09 04:39:16','6451968e-ef32-493a-a927-12a8e2c896f5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Chief operating officer',NULL,NULL,NULL,'#### Bruce’s passion for creating and enabling exceptional teams has taken him around the world, across public and private sectors. \n\nHis work life has seen him honing his business management and communication skills in industries as varied as information technology, media, communications, construction and even a comedy cafe.  Bruce makes sure our people have what they need to transform our clients’ project dreams into reality.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.linkedin.com/in/bruceconnell/',NULL,NULL,NULL,NULL,'blue',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17642,17899,1,NULL,'2021-06-01 06:34:23','2023-03-09 04:28:28','87d7b79f-419e-499d-bd3e-10d45c633bad',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Production manager',NULL,NULL,NULL,'#### Jo comes with a wealth of experience via London and Sydney. \n\nShe initially started out as a creative in the design world before transitioning into client services and studio management. Jo has worked across multiple industries including youth and education, banking, arts, not-for-profit and market research. She understands every side of the business, which enables her to know where every project should be and keep the wheels turning.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.linkedin.com/in/jo-penney-06328518/',NULL,NULL,NULL,NULL,'green',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17644,17921,1,NULL,'2021-06-01 06:59:14','2023-03-09 04:28:32','6430909c-6e39-450b-8842-d071ed5db8d5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Bookkeeper',NULL,NULL,NULL,'#### Kerry is our numbers genius.\n\nMany people think bookkeeping is pretty boring. And they’re not wrong. We’re lucky to have Kerry because this is where she shines and how her brain is wired. She loves getting her hands dirty with processes, keeping things in balance and always looking for better ways of doing things. Kerry is as experienced as they get for finance in the creative industries—she’s worked for graphic designers, radio stations, marketing agencies, touring theatre companies and more.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'green',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17652,17934,1,NULL,'2021-06-01 07:03:46','2023-03-09 04:28:29','1a1b72b4-a3e0-48b6-be56-708355b5d07b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Senior designer + illustrator',NULL,NULL,NULL,'#### Kimberley graduated from Design College Australia in 2015 with an Advanced Diploma in Visual Communication. \n\nSince then she’s worked for both agencies and large corporates, and has been a key part of multi-national rebrands. She loves the branding process and creating something with which businesses whole-heartedly identify. But her main passion lies with illustration and storyboarding animated videos, where she can present ideas in a way that truly connects with people. In her spare time, she runs a small business sewing leather handbags and accessories, which she stocks at select stores around Brisbane and the Gold Coast.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.linkedin.com/in/kimberley-schieren-a57b3aa6/',NULL,NULL,NULL,NULL,'green',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17654,17941,1,NULL,'2021-06-01 07:07:28','2023-03-09 04:28:33','5b392f7b-72b7-43ba-ab3a-eab3d5d2634d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Senior copywriter',NULL,NULL,NULL,'#### Liam has often been called the somewhat paradoxical term of a pragmatic creative. \n\nCrafting words and conceptualising new ideas and strategies remains his passion, but ensuring everything he works on generates a positive impact for the client is what drives him. His experience in large multinational advertising agencies, along with years in independent agencies, has given him a broad perspective of what actually works in the dark arts of advertising and marketing. Deep in a storage box somewhere is a piece of paper saying he holds a Bachelor of Business-Communications (Majoring in Advertising).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'red',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17662,17954,1,NULL,'2021-06-01 07:09:17','2023-03-09 04:28:45','85094036-ea72-4a83-98b0-9703360f09fa',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Head of strategy and creative',NULL,NULL,NULL,'#### Scott is a partner, creative director and co-head of strategy. \n\nHe is a creative, writer, strategist, facilitator, producer, speaker and podcaster. He is driven by the power of human decision making across personal, professional, commercial and organisational spheres and the power of evidence to inform strategy that achieves change, either solving a problem or unlocking potential.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.linkedin.com/in/scottoxford/',NULL,NULL,NULL,NULL,'red',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17664,17956,1,NULL,'2021-06-01 07:09:51','2023-03-09 04:28:36','ff4d6048-2aab-49c9-babc-5fb1ebf102d6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Founding partner, CEO',NULL,NULL,NULL,'#### Our founder and fearless leader is a communication strategist and content manager for many clients in the private, public and not-for-profit sectors. \n\nSuzanne works at both strategic and tactical levels within organisations, developing strategic messaging with leadership and then supporting internal marketing and communications teams to understand and express strategic change. Tertiary qualifications in journalism and copywriting preceded 10 years of reporting and editing for News Limited. Today, after 20+ years at the helm of New Word Order and managing creative teams, her areas of professional expertise reflect every area of corporate marketing communications.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.linkedin.com/in/suzanne-oxford/',NULL,NULL,NULL,NULL,'green',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17666,17958,1,NULL,'2021-06-01 07:14:11','2021-06-01 07:14:11','177e019b-5dab-46d5-a96c-7ae2add1cda5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Executive assistant',NULL,NULL,NULL,'Lynn has been working as an EA/PA for 25+ years and spanning four countries. She\'s had the honour of working with some remarkable CEOs, MDs and Chairs, across a diverse range of industries. The standouts in her career are the people she\'s met and worked, and some of the exciting projects she has involved with and the things she has learned—and is still learning.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17667,17964,1,'Strategy','2021-06-01 07:14:22','2021-06-01 07:14:22','a88bf62b-6cd8-4d86-9e0d-12f61b39ff83',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17668,17965,1,'Brand','2021-06-01 07:14:29','2021-06-01 07:14:29','511cdcac-e814-4025-95ef-a844ee47d450',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17669,17966,1,'Campaign','2021-06-01 07:14:34','2021-06-01 07:14:34','32a00757-a57f-47fe-96aa-b0f1a0a703d3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17670,17967,1,'Behaviour change','2021-06-01 07:14:41','2021-06-01 07:14:41','23b6ba59-54f9-4613-b2fd-18f9126d751b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17671,17968,1,'Engagement','2021-06-01 07:14:46','2021-06-01 07:14:46','39f01034-5d04-47a3-8fe2-3420917f4dcd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17672,17969,1,'Video','2021-06-01 07:14:51','2021-06-01 07:14:51','77093518-62f4-4308-8a63-8de1f57a5f1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17673,17970,1,'Digital','2021-06-01 07:14:56','2021-06-01 07:14:56','3d1c7884-7230-477f-8d12-bdf99405fb3f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17674,17971,1,'Content','2021-06-01 07:15:01','2021-06-01 07:15:01','3b19038c-885e-4e50-ab7b-c46b79d797f2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17675,17977,1,'The big reveal','2021-06-01 07:20:12','2021-06-01 07:20:12','fc588c23-964c-4b16-a691-ec86fb69d6f2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'It’s all about the reveal, especially for a brand that reveals truth as their core business. Revelian uncovers the hidden, delves inside and goes beneath the surface to reveal the truth inside people, for businesses and organisations wanting to hire people well, and utilise them well',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17676,17990,1,NULL,'2021-06-02 04:09:43','2021-11-15 01:17:36','c5dc0268-1f46-4a7f-aa97-73ac558928ce',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17677,17996,1,NULL,'2021-06-02 23:43:43','2023-03-09 04:28:37','a4a1fd32-9639-444c-bb80-e0515dddafe5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Senior account manager',NULL,NULL,NULL,'#### Tim brings 15 years of expertise to NWO, ranging from media suppliers to full-service agencies like us. \n\nHis experience has taken him deep and wide in almost every sector including retail, not-for-profit, automotive, the arts, banking, insurance, and local and state governments. Tim isn’t just a yes man—he builds strong relationships with his clients and works with them to drive great outcomes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.linkedin.com/in/timkho/',NULL,NULL,NULL,NULL,'green',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17679,18003,1,'Domestic and family violence awareness campaign','2021-06-03 05:19:19','2021-06-03 05:19:19','75e7f29d-27ce-400a-865a-ddbfb71fc4ff',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To help slow the spread of COVID-19, Queenslanders are spending more time at home—but home isn’t always a safe place.\n\nEveryone deserves to feel safe. Domestic and family violence is never acceptable. Help and support are available.',NULL,NULL,'What do you do when home isn\'t safe',NULL,'* research\n* campaign strategy\n* concept development\n* key messages\n* custom illustration\n* scriptwriting\n* storyboards\n* animation\n* voice over and sound design\n* social media videos\n* radio ads\n* programmatic ads\n* digital banners','Produced during the height of COVID-19 in 2020 when our team was working remotely, this campaign is a testament to our skill and processes.\n\nDFV can take many forms, but it leaves people feeling isolated, scared and out of control. Our campaign builds awareness of what DFV can feel like and encourages anyone affected to reach out for help.','To slow the spread of COVID-19, people were spending more time at home. But for some, home isn\'t the safe place it should be. The Queensland Government commissioned us to develop a campaign to build awareness of domestic and family violence and the support available.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17681,18021,1,'Domestic and family violence awareness campaign','2021-06-03 05:22:27','2021-06-03 05:22:27','d4e27f93-3f6a-4c84-a2db-bfd5fc5950a1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To help slow the spread of COVID-19, Queenslanders are spending more time at home—but home isn’t always a safe place.\n\nEveryone deserves to feel safe. Domestic and family violence is never acceptable. Help and support are available.',NULL,NULL,'What do you do when home isn\'t safe',NULL,'* research\n* campaign strategy\n* concept development\n* key messages\n* custom illustration\n* scriptwriting\n* storyboards\n* animation\n* voice over and sound design\n* social media videos\n* radio ads\n* programmatic ads\n* digital banners','Produced during the height of COVID-19 in 2020 when our team was working remotely, this campaign is a testament to our skill and processes.\n\nDFV can take many forms, but it leaves people feeling isolated, scared and out of control. Our campaign builds awareness of what DFV can feel like and encourages anyone affected to reach out for help.','To slow the spread of COVID-19, people were spending more time at home. But for some, home isn\'t the safe place it should be. The Queensland Government commissioned us to develop a campaign to build awareness of domestic and family violence and the support available.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17682,18027,1,'Domestic and family violence awareness campaign','2021-06-03 05:27:17','2021-06-03 05:27:17','545b63dc-4015-4628-83a9-ef6c8f054d04',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To help slow the spread of COVID-19, Queenslanders are spending more time at home—but home isn’t always a safe place.\n\nEveryone deserves to feel safe. Domestic and family violence is never acceptable. Help and support are available.',NULL,NULL,'What do you do when home isn\'t safe',NULL,'* research\n* campaign strategy\n* concept development\n* key messages\n* custom illustration\n* scriptwriting\n* storyboards\n* animation\n* voice over and sound design\n* social media videos\n* radio ads\n* programmatic ads\n* digital banners','Produced during the height of COVID-19 in 2020 when our team was working remotely, this campaign is a testament to our skill and processes.\n\nDFV can take many forms, but it leaves people feeling isolated, scared and out of control. Our campaign builds awareness of what DFV can feel like and encourages anyone affected to reach out for help.','To slow the spread of COVID-19, people were spending more time at home. But for some, home isn\'t the safe place it should be. The Queensland Government commissioned us to develop a campaign to build awareness of domestic and family violence and the support available.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17683,18033,1,'research','2021-06-03 05:55:30','2021-06-03 05:55:30','ab3a8e04-15ff-4e82-a13e-f1e34b8ec9d2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17684,18034,1,'Domestic and family violence awareness campaign','2021-06-03 05:55:32','2021-06-03 05:55:32','5c03a0cb-a500-4c1a-980f-b8b315e4f3f3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What do you do when home isn\'t safe',NULL,'* research\n* campaign strategy\n* concept development\n* key messages\n* custom illustration\n* scriptwriting\n* storyboards\n* animation\n* voice over and sound design\n* social media videos\n* radio ads\n* programmatic ads\n* digital banners','Produced during the height of COVID-19 in 2020 when our team was working remotely, this campaign is a testament to our skill and processes.\n\nDFV can take many forms, but it leaves people feeling isolated, scared and out of control. Our campaign builds awareness of what DFV can feel like and encourages anyone affected to reach out for help.','To slow the spread of COVID-19, people were spending more time at home. But for some, home isn\'t the safe place it should be. The Queensland Government commissioned us to develop a campaign to build awareness of domestic and family violence and the support available.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17685,18040,1,'campaign strategy','2021-06-03 05:55:44','2021-06-03 05:55:44','70f62ced-d83b-4395-b18e-5581b5a4d985',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17686,18041,1,'concept development','2021-06-03 05:55:51','2021-06-03 05:55:51','11dfa0fd-d9f2-470b-ac0b-bf46664e8109',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17687,18042,1,'key messages','2021-06-03 05:55:59','2021-06-03 05:55:59','b57b3809-d842-4f01-b9f1-abf36729cb8a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17688,18043,1,'custom illustration','2021-06-03 05:56:05','2021-06-03 05:56:05','3ef1e3fb-cfea-4671-98df-aa3332fd90a2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17689,18044,1,'scriptwriting','2021-06-03 05:56:11','2021-06-03 05:56:11','e5ba19b8-0b57-4b02-996c-cf498c2d5039',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17690,18045,1,'storyboards','2021-06-03 05:56:17','2021-06-03 05:56:17','10f606ce-4426-4506-84d8-7715feb356ea',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17691,18046,1,'animation','2021-06-03 05:56:23','2021-06-03 05:56:23','6c96895f-0f21-4cbd-9bdf-7f6e5a4a90a5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17692,18047,1,'voice over and sound design','2021-06-03 05:56:28','2021-06-03 05:56:28','f4717a6e-812f-4e90-80bd-7028c04b36a7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17693,18048,1,'social media videos','2021-06-03 05:56:33','2021-06-03 05:56:33','7def6693-c3d2-43d7-8ae3-67093ac88fef',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17694,18049,1,'radiprogrammatic adso ads','2021-06-03 05:56:41','2021-06-03 05:56:41','3e5a9ab8-8916-49b6-b405-ab6f87a76b4b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17695,18050,1,'digital banners','2021-06-03 05:56:48','2021-06-03 05:56:48','83b8a51c-496f-413f-9824-d6d750a14bda',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17696,18051,1,'Domestic and family violence awareness campaign','2021-06-03 05:56:53','2021-06-03 05:56:53','22fcb20e-f344-4ad2-a8d5-84d241b6f536',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What do you do when home isn\'t safe',NULL,NULL,'Produced during the height of COVID-19 in 2020 when our team was working remotely, this campaign is a testament to our skill and processes.\n\nDFV can take many forms, but it leaves people feeling isolated, scared and out of control. Our campaign builds awareness of what DFV can feel like and encourages anyone affected to reach out for help.','To slow the spread of COVID-19, people were spending more time at home. But for some, home isn\'t the safe place it should be. The Queensland Government commissioned us to develop a campaign to build awareness of domestic and family violence and the support available.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17697,18057,1,'Government','2021-06-03 05:58:40','2021-06-03 05:58:40','e348b735-720b-4d59-95d5-5127591128a4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17699,18071,1,'Domestic and family violence awareness campaign','2021-06-03 06:11:01','2021-06-03 06:11:01','01886286-11c8-40e0-83ba-c1b24bc9f84a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What do you do when home isn\'t safe',NULL,NULL,'Produced during the height of COVID-19 in 2020 when our team was working remotely, this campaign is a testament to our skill and processes.\n\nDFV can take many forms, but it leaves people feeling isolated, scared and out of control. Our campaign builds awareness of what DFV can feel like and encourages anyone affected to reach out for help.','To slow the spread of COVID-19, people were spending more time at home. But for some, home isn\'t the safe place it should be. The Queensland Government commissioned us to develop a campaign to build awareness of domestic and family violence and the support available.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17700,18077,1,'DFV Campaign','2021-06-03 06:12:30','2021-06-03 06:12:30','e53cd633-ea29-4628-ae1f-8553c1c33f1a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What do you do when home isn\'t safe',NULL,NULL,'Produced during the height of COVID-19 in 2020 when our team was working remotely, this campaign is a testament to our skill and processes.\n\nDFV can take many forms, but it leaves people feeling isolated, scared and out of control. Our campaign builds awareness of what DFV can feel like and encourages anyone affected to reach out for help.','To slow the spread of COVID-19, people were spending more time at home. But for some, home isn\'t the safe place it should be. The Queensland Government commissioned us to develop a campaign to build awareness of domestic and family violence and the support available.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17702,18097,1,'DFV Campaign','2021-06-03 06:13:45','2021-06-03 06:13:45','50c51946-699b-4a62-a215-e8bd0f6c5daa',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What do you do when home isn\'t safe',NULL,NULL,'Produced during the height of COVID-19 in 2020 when our team was working remotely, this campaign is a testament to our skill and processes.\n\nDFV can take many forms, but it leaves people feeling isolated, scared and out of control. Our campaign builds awareness of what DFV can feel like and encourages anyone affected to reach out for help.','To slow the spread of COVID-19, people were spending more time at home. But for some, home isn\'t the safe place it should be. The Queensland Government commissioned us to develop a campaign to build awareness of domestic and family violence and the support available.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17703,18104,1,'copywriting','2021-06-03 06:15:07','2021-06-03 06:15:07','8e27212b-9f84-4f86-a21d-07855e44f933',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17704,18105,1,'collateral design','2021-06-03 06:15:25','2021-06-03 06:15:25','32663cc0-1f74-43d3-b7cc-bbdcea9dd535',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17705,18106,1,'merchandise design','2021-06-03 06:15:35','2021-06-03 06:15:35','36c3230f-0d38-4897-8be9-b69b96db2cc8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17706,18107,1,'exhibition design','2021-06-03 06:15:42','2021-06-03 06:15:42','ae6c2468-ee0f-4fc2-a58c-d6e00b9ea08c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17707,18108,1,'game development','2021-06-03 06:15:49','2021-06-03 06:15:49','57560fae-a13e-4684-a733-66329d7b3139',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17708,18109,1,'What\'s a No. 3?','2021-06-03 06:15:55','2022-08-08 06:46:50','336bb978-7a3f-4067-af24-31547f441ea4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a No. 3? Anything that shouldn\'t go down the loo.',NULL,NULL,'The playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way. We set out to capture the attention of kids and adults with an innovative and integrated campaign that featured interactive and creative design, animation, illustration, merchandise and video.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YLmNoEn3SV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Water and waste treatment are essential services and flushing the wrong items down the toilet costs Queensland Urban Utilities $200 million every year.\\n\\nUrban Utilities asked us to think of an original, creative campaign idea that would resonate with Queensland families. Our solution was the No. 3 campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FITIFbeFNO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47723\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lKKKRlcirp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"So, what\'s a No. 3? It\'s anything that shouldn’t go down the loo. Talking about our toilet habits is never comfortable. To navigate our way around the taboo topic, our creative team used humour to influence the bright, quirky look and feel of the entire campaign.\\n\\nThe playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-97JqWmRp6Z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/325104551\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rwksXdZztM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47725\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-szxmUd2L8D\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Result\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The campaign reached 29,790 people in its first month, and we quickly saw signs of behaviour change. \\n\\nAccording to independent market research, 50% of people will no longer flush wet wipes, 48% of people will no longer flush tampons, 47% will no longer flush condoms and 45% will no longer flush cotton buds as a result of seeing this campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xxFbGAqcFU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47726\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2exJaiRsw5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iQhxL9nSze\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"61829\"],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/635014768?h=d3d29c9d60&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"GAMETOILET_HD_sound.mp4\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"61830\"],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/635015208?h=4079228e62&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"VIDEOAD_2_HD_sound\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new3\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/635025685?h=b22d402bd4&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"QUU Ekka footage\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FFU7esnnDy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47727\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QpOS0cp79X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47734\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'What\'s a No. 3?','We set out to capture the attention of kids and adults with an innovative and integrated campaign that featured interactive and creative design, animation, illustration, merchandise and video.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17709,18110,1,'No. 3 campaign','2021-06-03 06:15:55','2021-06-03 06:15:55','d7386442-e7eb-429c-8f5a-c04e0bfd971f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a No. 3? Anything that shouldn\'t go down the loo.',NULL,'* campaign strategy\n* concepts\n* key messages\n* copywriting\n* custom illustration\n* animation\n* collateral design\n* merchandise design\n* exhibition design\n* game development','The playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way. We set out to capture the attention of kids and adults with an innovative and integrated campaign that featured interactive and creative design, animation, illustration, merchandise and video.','Water and waste treatment are essential services and flushing the wrong items down the toilet costs Queensland Urban Utilities $200 million every year. Urban Utilities asked us to think of an original, creative campaign idea that would resonate with Queensland families. Our solution was the No. 3 campaign.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17711,18112,1,'No. 3 campaign','2021-06-03 06:16:26','2021-06-03 06:16:26','e2bd894f-fa6e-4ca3-85f5-5b9480044322',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a No. 3? Anything that shouldn\'t go down the loo.',NULL,NULL,'The playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way. We set out to capture the attention of kids and adults with an innovative and integrated campaign that featured interactive and creative design, animation, illustration, merchandise and video.','Water and waste treatment are essential services and flushing the wrong items down the toilet costs Queensland Urban Utilities $200 million every year. Urban Utilities asked us to think of an original, creative campaign idea that would resonate with Queensland families. Our solution was the No. 3 campaign.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17712,18113,1,'No. 3 campaign','2021-06-03 06:16:30','2021-06-03 06:16:30','113d6cff-04e9-429c-90de-47665d0d8969',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a No. 3? Anything that shouldn\'t go down the loo.',NULL,NULL,'The playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way. We set out to capture the attention of kids and adults with an innovative and integrated campaign that featured interactive and creative design, animation, illustration, merchandise and video.','Water and waste treatment are essential services and flushing the wrong items down the toilet costs Queensland Urban Utilities $200 million every year. Urban Utilities asked us to think of an original, creative campaign idea that would resonate with Queensland families. Our solution was the No. 3 campaign.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17713,18114,1,'market research','2021-06-03 06:16:46','2021-06-03 06:16:46','8a0885a4-c56a-4fe6-873c-12f391f63f17',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17714,18115,1,'focus group facilitation','2021-06-03 06:16:54','2021-06-03 06:16:54','9327d8b5-1fa0-462c-a3a5-34d700e9e734',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17715,18116,1,'insights development','2021-06-03 06:17:01','2021-06-03 06:17:01','8aefcf24-d19c-4983-81f9-3f5c3d512c7b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17716,18117,1,'photography','2021-06-03 06:17:12','2021-06-03 06:17:12','0c41216b-bd9b-4505-be3d-b1d419e36e8a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17717,18118,1,'video production','2021-06-03 06:17:17','2021-06-03 06:17:17','24645945-62a7-4cb9-b6a8-59553d369bbe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17718,18119,1,'videos for social media','2021-06-03 06:17:23','2021-06-03 06:17:23','33a3626a-c902-4623-b1d3-bacd0ab97f00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17719,18120,1,'digital ads','2021-06-03 06:17:28','2021-06-03 06:17:28','c5a532f5-4248-4fff-b636-a079479e47b8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17720,18121,1,'website','2021-06-03 06:17:32','2021-06-03 06:17:32','1311d59b-e2e0-4f96-a2fd-705b97df2377',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17721,18122,1,'Reasons to stay','2021-06-03 06:17:38','2022-08-08 06:41:22','5dc25b10-9472-4a78-b57b-a9cf4682583b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Conversations save lives',NULL,NULL,'Our agency purpose—to make a meaningful difference to people’s lives—rings no truer than this campaign. Conversations can be lifesaving. The Reasons to Stay campaign drives this message to remind people to reach out and find their reasons to keep living.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Wuk6XROt8C\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19060\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vjXnYnypEU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Suicide takes around eight Australians from us every day and it needs to stop.\\n\\nBrisbane North PHN commissioned us to join the fight against suicide and produce a powerful digital campaign, speaking to people at risk of suicide and to their friends and family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xEmYfpUPYn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"19064\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"19066\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new3\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"19067\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new4\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"19068\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447109\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hlukn3QtpP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The concept and campaign name of Reasons to Stay emerged from our conversations with people who have lived experience of suicide—both survivors and families of those who had passed away.\\n\\nThis prevention campaign targeted two specific groups: those at risk of suicide themselves and the friends and family around those at risk.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CYFHnSDjBC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19062\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GgXhbYC3Wx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Open hearts and minds from beginning to end\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Presenting our creative concepts to these groups enabled us to test and hone visual directions and key messages.\\n\\nWe further refined the work and key members of the focus groups reviewed the results and gave their blessing to the final approach that appears in the campaign videos, digital ads and website.\\n\\nWe also worked with other organisations working across niche groups within our target market to ensure we were inclusive and respectful of their individual efforts in this space.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-trgV3eAZYY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"19081\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UvCFl0uQ9c\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our team was grateful to be involved in this important project.\\n\\nThe PHN’s intention—and ours—is to see this campaign spread far beyond the northern boundaries of Brisbane and make a difference to people’s lives everywhere.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lo0qiknCPj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19061\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'Reasons to Stay','Our agency purpose—to make a meaningful difference to people’s lives—rings no truer than this campaign.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17722,18123,1,'Reasons to Stay','2021-06-03 06:17:38','2021-06-03 06:17:38','851c5786-bf9f-4414-b01f-6516101a7081',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Helping to find reasons to stay',NULL,NULL,'The concept and campaign name of Reasons to Stay emerged from our conversations with people who have lived experience of suicide—both survivors and families of those who had passed away.','Suicide take around eight Australians from us every day and it needs to stop. Brisbane North PHN commissioned us to join the fight against suicide and produce a powerful digital campaign, speaking to people at risk of suicide and to their friends and family.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17723,18124,1,'Reasons to Stay','2021-06-03 06:17:42','2021-06-03 06:17:42','d40e7a8a-be3a-4874-92b6-86420e22bb0a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Helping to find reasons to stay',NULL,NULL,'The concept and campaign name of Reasons to Stay emerged from our conversations with people who have lived experience of suicide—both survivors and families of those who had passed away.','Suicide take around eight Australians from us every day and it needs to stop. Brisbane North PHN commissioned us to join the fight against suicide and produce a powerful digital campaign, speaking to people at risk of suicide and to their friends and family.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17724,18125,1,'social media management','2021-06-03 22:50:50','2021-06-03 22:50:50','9654b424-c793-48b7-a762-2b53d0932365',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17725,18126,1,'Medical Mums','2021-06-03 22:51:16','2022-08-08 06:39:23','25b7a3ea-3b8c-4217-a7cd-1ce748c3f239',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A long-term approach to behaviour change',NULL,NULL,'For the past six years we have been running behaviour change campaigns to encourage families to vaccinate their children. And in that time, we\'ve seen the positive impact.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ydM19JpsMi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45317\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pqYRaab2Y6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45318\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NUepHwOfhy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"In 2015, market research and immunisation rates across Brisbane North PHN\'s catchment were showing the anti-vax movement was taking hold.\\n\\nWhile parents from lower socio-economic backgrounds were responding to the Australian Government’s ‘no jab, no pay’ rules, those not using daycare—including many from among the wealthier suburbs—were holding their ground.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5st3FTYzr4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45319\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QwUWkeN1w7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We determined from research that parents would respond to their GP’s opinion, and developed a behaviour change campaign to encourage conversations between parents and medical professionals around immunisation and overcome objections to it.\\n\\nWe harnessed the GP/medical voice and added extra credibility by finding medical professionals who were also parents.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MQKB9uw8mS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45323\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PVmUcFRs5l\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Under the heading of Medical Mums, we found two GPs and one Indigenous health nurse to become the faces and voice of the campaign. Each discussed hot topics as well as the benefits of immunisation, drawing on their own beliefs and practices as parents as well as their medical training.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Lt1sEFXPGo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/173565144?h=a059ec04b7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/173565142?h=1a735c3207&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-elDM8mfUVq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"2016\",\"text\":\"Medical Mums was launched during Immunisation Week.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"2017\",\"text\":\"The creative was still fresh and effective for the target group, and we ran the campaign again.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"2018\",\"text\":\"We added Stuart, our honorary Medical Dad.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"2019\",\"text\":\"It was time to mix up the messaging and creative, so we developed a vaccination myth-busting video featuring illustration—a move away from the previous live-action ads.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"2020\",\"text\":\"With COVID-19, there was new vaccination messaging clutter to cut through. We encouraged our market to keep up to date with their routine vaccinations.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"2021\",\"text\":\"Funding was initially approved for five years. But our campaign has been so successful the PHN has been provided with funding for an additional year. We will launch a new iteration in the coming months.\"}}}}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-za95KkkRhY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45322\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9XsuejXAac\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We launched the campaign in Immunisation Week in 2016, and have revised it for relaunch every year since. Results showed immunisation levels increased after the campaign each year, and our has client received extensive positive feedback—including from the Queensland Minister for Health.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Medical Mums','For the past six years we have been running behaviour change campaigns to encourage families to vaccinate their children. And in that time, we\'ve seen the positive impact.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17726,18127,1,'Medical Mums','2021-06-03 22:51:16','2021-06-03 22:51:16','78533a27-ca02-497e-9959-215184728e09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Medical Mums busting vaccination myths',NULL,NULL,'Our market research showed the people in our target market trust their GP\'s advice.','Market research in 2015 was showing the anti-vax movement was taking hold.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17727,18128,1,'Medical Mums','2021-06-03 22:51:20','2021-06-03 22:51:20','363fe7ee-e327-427c-b6e3-e9e45b73cf79',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Medical Mums busting vaccination myths',NULL,NULL,'Our market research showed the people in our target market trust their GP\'s advice.','Market research in 2015 was showing the anti-vax movement was taking hold.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17728,18129,1,'digital strategy','2021-06-03 22:51:45','2021-06-03 22:51:45','b40fd076-c45d-4200-be8a-c6932bd25625',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17729,18130,1,'website scoping','2021-06-03 22:51:51','2021-06-03 22:51:51','ccbb9fb1-9201-41e3-9008-fd2b2d668f25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17730,18131,1,'content design','2021-06-03 22:51:56','2021-06-03 22:51:56','43922f2c-444d-4334-8901-8c3d4a6a13d9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17731,18132,1,'UX design','2021-06-03 22:52:04','2021-06-03 22:52:04','6d2d2416-f9fd-4a03-91e7-a848e2fcb9c1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17732,18133,1,'website development','2021-06-03 22:52:09','2021-06-03 22:52:09','9c666fe6-5d61-4546-86db-f5561aa9128a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17733,18134,1,'hosting','2021-06-03 22:52:41','2021-06-03 22:52:41','b64ec560-d0d0-49c3-a201-8db5835479ce',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17734,18135,1,'ongoing maintenance','2021-06-03 22:52:47','2021-06-03 22:52:47','346eb576-23e8-4681-b462-5db62eadd1f5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17738,18139,1,'Your Care Navigator','2021-06-03 23:01:25','2022-09-13 23:03:11','dcf0b53c-c9ea-4bdd-aa58-17153ce977bb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator',NULL,NULL,'Ageing can be overwhelming, especially with a dementia diagnosis. There are so many big life decisions to make, services to navigate and logistics to plan. Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support. Additionally, it’s a resource that helps healthcare professionals coordinate care for their patients and provide them with quality resources.','Brisbane North PHN needed a website developed for consumers, carers, service providers and health professionals that provides information about mental health, alcohol and other drugs and suicide prevention services in the region.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TBzFA0UCIO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142011\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cYowRU3xxP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Brisbane North PHN asked us to write, design and develop a navigator website that doubles as a one-stop-shop of resources, information and services that promote healthy ageing in the Brisbane North and Moreton Bay region. The project’s goal was to enable people to more proactively manage their own healthcare, while also equipping healthcare professional and carers with resources to support their care services.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VACsyz6zoc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142009\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Working closely with the client team and the Council on the Ageing, our strategists conducted a stakeholder consultation process with community members and health professionals. The stakeholders generously shared their expertise and lived experience to help this project reach the community’s specific needs, with a particular focus on: dementia, physical health, mental health, social connection, nutrition and digital skills.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pI57baAPCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Each aspect of the content writing, design and development of the website was informed by insights from the stakeholders, to ensure the project would fulfil community needs. We made sure the site was easy to use by integrating a very simple user interface into the web design and development. User experience and acceptance testing was a key element of ensuring the site would be practical and enjoyable for its audience.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Check out the website\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"https://yourcarenavigator.org.au/\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}}},\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RgOzDzfM2D\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142014\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Nothing like this existed before now. This project fulfils community needs around healthy ageing in a way that really excited the stakeholders who were involved in the project. This kind of work aligns perfectly with our purpose at NWO: to make a meaningful difference to people’s lives.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator','Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17739,18140,1,'My Mental Health','2021-06-03 23:01:25','2021-06-03 23:01:25','f1ca0d67-fadd-4d6e-b43f-8f282833c698',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Find the support you need',NULL,NULL,'Our solution was to develop the My Mental Health website, in collaboration with the My Mental Health Service Navigation team, to provide this vital information.\n\nThe My Mental Health Service Navigation team also support health professionals, consumers and carers making a referral to the PHN-commissioned services.','Brisbane North PHN needed a website developed for consumers, carers, service providers and health professionals that provides information about mental health, alcohol and other drugs and suicide prevention services in the region.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17740,18141,1,'My Mental Health','2021-06-03 23:01:29','2021-06-03 23:01:29','9e688793-78f2-4e09-88e6-06c73283a633',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Find the support you need',NULL,NULL,'Our solution was to develop the My Mental Health website, in collaboration with the My Mental Health Service Navigation team, to provide this vital information.\n\nThe My Mental Health Service Navigation team also support health professionals, consumers and carers making a referral to the PHN-commissioned services.','Brisbane North PHN needed a website developed for consumers, carers, service providers and health professionals that provides information about mental health, alcohol and other drugs and suicide prevention services in the region.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17741,18142,1,'Right time, right place','2021-06-03 23:02:15','2022-05-30 01:36:15','c61dbd65-3599-4525-9930-dc8250d34cc2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'So much better than a hospital waiting room',NULL,NULL,'Central Queensland, Wide Bay and Sunshine Coast PHN asked us to refresh its campaign strategy, messaging and creative because people were still going to the emergency department with non-life-threatening sickness or injuries. Our solution was to show the people who live in the region—and holidaymakers—that the emergency department isn\'t the only option.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22010\",\"22012\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22011\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Right time, right place','So much better than a hospital waiting room',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17742,18143,1,'Right time, right place','2021-06-03 23:02:15','2021-06-03 23:02:15','9c5e613c-738e-4a81-9663-b07c62912465',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Do I go to the ED?',NULL,NULL,'Our solution was to show the people who live in the region, and the large numbers of holidaymakers who travel to the region, that the emergency department isn\'t the only option.\n\nThe healthdirect app shows options for medical care based on your location, so you don\'t need to wait in a crowded emergency department.','It\'s a constant focus for PHNs, hospital and health services and state governments all over Australia: people are going to the emergency department with non-life-threatening sickness or injuries.\n\nTwo years after its last campaign on the topic, the PHN asked us to refresh the campaign strategy, messaging and creative.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17743,18144,1,'Right time, right place','2021-06-03 23:02:19','2021-06-03 23:02:19','35ca31df-5cd8-4b81-bacf-395ba1978527',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Do I go to the ED?',NULL,NULL,'Our solution was to show the people who live in the region, and the large numbers of holidaymakers who travel to the region, that the emergency department isn\'t the only option.\n\nThe healthdirect app shows options for medical care based on your location, so you don\'t need to wait in a crowded emergency department.','It\'s a constant focus for PHNs, hospital and health services and state governments all over Australia: people are going to the emergency department with non-life-threatening sickness or injuries.\n\nTwo years after its last campaign on the topic, the PHN asked us to refresh the campaign strategy, messaging and creative.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17744,18145,1,'brand','2021-06-03 23:02:34','2021-06-03 23:02:34','52b6750f-0d34-4cef-89bf-de30f1409d63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17748,18149,1,'brand strategy','2021-06-03 23:03:09','2021-06-03 23:03:09','86ed07a1-4307-4fc4-9e31-ec6479833442',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17749,18150,1,'brand architecture','2021-06-03 23:03:24','2021-06-03 23:03:24','d25fdb90-0e48-442a-8b96-eb6b2b459dc3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17750,18151,1,'product branding','2021-06-03 23:03:35','2021-06-03 23:03:35','1201571f-a11f-4900-85d0-6f6f632b7209',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17751,18152,1,'public relations','2021-06-03 23:03:40','2021-06-03 23:03:40','c7e6343e-0d95-4991-870e-a5d9e3a5b6ce',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17752,18153,1,'brand book','2021-06-03 23:03:47','2021-06-03 23:03:47','ea991e74-ef25-412b-a6c6-9585ae2e8d14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17753,18154,1,'3D animation','2021-06-03 23:03:53','2021-06-03 23:03:53','192aaf7c-f9d4-416a-9155-1187659bbe08',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17754,18155,1,'website design','2021-06-03 23:03:57','2021-06-03 23:03:57','b9b2544b-eaab-4fa5-a000-88447fd23479',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17755,18156,1,'Tritium','2021-06-03 23:04:04','2022-08-12 03:46:53','774d66fa-30c0-47c1-8cc0-dcd3332e0277',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league. Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GLSN3YDBFD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"73939\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LrG99HVOYN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"61847\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"BRAND\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tritium is now a global brand—and our work took them to the world stage.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked with Tritium a few years ago to define their brand narrative, design their brand and create logo, visual identity and a range of assets.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZeQWeTuQlo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"73941\",\"73940\",\"73937\",\"73936\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-02qw9cOzxi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141804\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"BRIEF\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked with Tritium when it was in the midst of hypergrowth and collaborated with their founder and leaders across time zones and continents, as well as their rapidly growing marketing and sales teams, to rebrand the company and its products.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"At the time, Tritium was still wearing the badge designed by their founder years earlier and needed to dress for world domination, which they most certainly now are achieving. The brand needed to work in all contexts—on rapid chargers, in signage, in extrusion as well as in print, and it needed to be truly global in its appeal. The brand also needed to consider products that were still emerging and not yet defined.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eEjb9cnAXp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141806\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"RATIONALE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We deeply embedded story in the Tritium brand we developed. The logo is three-sided (for ‘tri’). The blues represent clean power, and each of the three elements of the brand represent battery indicators, from empty to full. Meanwhile, the brand is distinctive yet subtle enough to sit successfully alongside co-branded or white-labelled Tritium products.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8PWapwyQK2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141802\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"OUTCOME\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We successfully positioned Tritium for global expansion. We developed and defined a global Masterbrand with a defined brand narrative and transformational, authentic reflection of their vision. The brand goes from strength to strength and is easily our furthest-reaching and highest impact visual identity, recently listing on the NASDAQ and with none other than POTUS.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Tritium','Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17756,18157,1,'Tritium','2021-06-03 23:04:04','2021-06-03 23:04:04','2432be6e-3fa2-49d9-8dbf-086e498003e8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'We turned up the voltage on the launch of the new brand with this show-stopping animated brand video.\nWith an appetite only satisfied by global domination and a powerful vision of energy freedom, Tritium’s journey has only just begun… but they started in the fast lane. We developed a set of foundational branding elements that showcase who Tritium is now and prepares for their exciting future.','As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league.\n\nTritium commissioned us to update their brand—to put their internal culture of creativity and innovation on display and to share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17757,18158,1,'Tritium','2021-06-03 23:04:08','2021-06-03 23:04:08','4b67285f-1ace-4f11-8863-2753780e4d89',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'We turned up the voltage on the launch of the new brand with this show-stopping animated brand video.\nWith an appetite only satisfied by global domination and a powerful vision of energy freedom, Tritium’s journey has only just begun… but they started in the fast lane. We developed a set of foundational branding elements that showcase who Tritium is now and prepares for their exciting future.','As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league.\n\nTritium commissioned us to update their brand—to put their internal culture of creativity and innovation on display and to share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17758,18159,1,'engagement with Aboriginal and Torres Strait Islander communities','2021-06-03 23:04:20','2021-06-03 23:04:20','c2443278-21d0-4c57-9ffa-9c9a49a5180f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17759,18160,1,'engagement with members of the LGBTQI* community','2021-06-03 23:04:30','2021-06-03 23:04:30','97c4ff53-daf3-41b1-ae6c-bec16d8a5293',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17760,18161,1,'workshop facilitation','2021-06-03 23:04:32','2021-06-03 23:04:32','eb1cdbe5-0880-4146-8fbc-d1cca67db54b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17761,18162,1,'report writing, editing and proofreading','2021-06-03 23:04:53','2021-06-03 23:04:53','ed60e6cf-e0e8-46ba-a91e-4fe373df659a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17762,18163,1,'communications consulting','2021-06-03 23:04:59','2021-06-03 23:04:59','32de79ab-f060-4aaa-82cd-aa5301f7212f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17763,18164,1,'Brisbane North PHN NSPT','2021-06-03 23:05:05','2022-05-30 01:38:27','d0a51063-f67d-4276-9a29-dea20343899b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'National Suicide Prevention Trial',NULL,NULL,'We were chosen to consult with Brisbane North communities who had been selected for the trial: LGBTIQ communities, Aboriginal and Torres Strait Islander communities, and community organisations working with young to middle-aged men.','The team of Brisbane North PHN is one of the national sites chosen to deliver National Suicide Prevention Trial funding. With the four-year trial drawing to a close, we were chosen to consult with Brisbane North communities who had been selected for the trial: LGBTIQ communities, Aboriginal and Torres Strait Islander communities, and community organisations working with young to middle-aged men.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yV9Swskqh3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45209\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Bri6BITkLV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The team of Brisbane North PHN is one of the national sites chosen to deliver National Suicide Prevention Trial (NSPT) funding.\\n\\nOur work had two important parts. The first was to engage deeply and sensitively with communities to understand their experiences, successes and reflections during the four years of trial funding and to report on these. The second was to deliver useful materials the service organisations could use to seek further funding and sponsorships as they transitioned from trial funding.\\n\\nTo successfully undertake community engagement, we again partnered with Janine Crawford, a skilled health consultant and Aboriginal and Torres Strait Islander woman. Our work included workshops, face-to-face interviews and a highly successful yarning circle, and these important and sensitive conversations—which included Sad News/Sorry Business—were given the time and space each needed.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2OxHHkid1g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45325\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VcPtAbE6Am\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The finalised report was submitted to NSPT as a qualitative reflection on the remarkable achievements of the trial—including the PHN’s commitment to community-led co-design, and the healing within communities that was begun through the intentionally collaborative process.\\n\\nTo offer creative services that were suited to the context, needs and existing resourcing of the seven service organisations, we offered a menu of items, ranging from fact sheets to marketing consultations. The groups then chose the elements that were of greatest use to them.\\n\\nPart of the unique nature of the Brisbane North PHN NSPT trial was the emphasis on community partnerships and collaboration, and we embodied this in our design approach, too. To enable groups to pitch together or separately for any future suicide prevention funding, we created a single brand style to visually unify any designed material. Each group, then, had its own logo and its own colour palette within that visual style—a brand within a brand. That way, any future funding pitches that relied on our designed material could look as though the groups were unique but still closely aligned.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Brisbane North PHN NSPT','We were chosen to consult with Brisbane North communities who had been selected for the trial: LGBTIQ communities, Aboriginal and Torres Strait Islander communities, and community organisations working with young to middle-aged men.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17764,18165,1,'NSPT','2021-06-03 23:05:05','2021-06-03 23:05:05','73aeba17-a82f-489b-b5a3-f1eff597219f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'National Suicide Prevention Trials',NULL,NULL,'Part of the unique nature of the Brisbane North PHN NSPT trial was the emphasis on community partnerships and collaboration, and we embodied this in our design approach, too. To enable groups to pitch together or separately for any future suicide prevention funding, we created a single brand style to visually unify any designed material. Each group, then, had its own logo and its own colour palette within that visual style—a brand within a brand. That way, any future funding pitches that relied on our designed material could look as though the groups were unique but still closely aligned.','The team of Brisbane North PHN is one of the national sites chosen to deliver National Suicide Prevention Trial funding. With the four-year trial drawing to a close, we were chosen to consult with Brisbane North communities who had been selected for the trial: LGBTIQ communities, Aboriginal and Torres Strait Islander communities, and community organisations working with young to middle-aged men.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17765,18166,1,'NSPT','2021-06-03 23:05:09','2021-06-03 23:05:09','3f779e1a-8ee6-41f0-a106-bdda063cc26a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'National Suicide Prevention Trials',NULL,NULL,'Part of the unique nature of the Brisbane North PHN NSPT trial was the emphasis on community partnerships and collaboration, and we embodied this in our design approach, too. To enable groups to pitch together or separately for any future suicide prevention funding, we created a single brand style to visually unify any designed material. Each group, then, had its own logo and its own colour palette within that visual style—a brand within a brand. That way, any future funding pitches that relied on our designed material could look as though the groups were unique but still closely aligned.','The team of Brisbane North PHN is one of the national sites chosen to deliver National Suicide Prevention Trial funding. With the four-year trial drawing to a close, we were chosen to consult with Brisbane North communities who had been selected for the trial: LGBTIQ communities, Aboriginal and Torres Strait Islander communities, and community organisations working with young to middle-aged men.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17766,18167,1,'campaign concept','2021-06-03 23:05:30','2021-06-03 23:05:30','e60976f1-1249-49c0-bc41-1cb44b4a199b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17767,18168,1,'Safe to see your GP','2021-06-03 23:06:10','2022-08-08 06:30:58','953f1a9f-b8c6-4180-9b80-9817ca6cbbfd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'There\'s no reason to put your health on hold',NULL,NULL,'With life beginning to return to normal in Queensland after the height of COVID-19, the Darling Downs and West Moreton  PHN, and Brisbane North PHN wanted to encourage their communities to go back to a normal routine—especially for healthcare.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xsaPgG0g7g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22160\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-emf7fKO95v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Data showed community members were staying at home and not visiting their GP and other health services for regular checkups. \\n\\nTo avoid more serious health and wellbeing problems down the track, the community needed to know it was safe to go back to regular appointments.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bd28dXEaNq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22159\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4a7YEtYm2U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Solution\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We created a fresh campaign called ‘Safe to see your GP’, using friendly animated characters to let people know there is no reason to put their health on hold. \\n\\nThis campaign we developed the campaign strategy, creative, custom illustration, animated video for social media and TV, digital ads, radio ads and landing page.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Lx1YJWY50w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17744\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SJWVzlIztu\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We originally developed this campaign for Darling Downs and West Moreton PHN, and Brisbane North PHN requested to run it as well. It\'s a great example of our Primary Health Networks working together to improve the health of all Australians.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Safe to See your GP','There\'s no reason to put your health on hold',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17768,18169,1,'Safe to See your GP','2021-06-03 23:06:10','2021-06-03 23:06:10','6799724c-03a9-4c3f-a707-e5d3d8b70b46',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Getting back to a normal health routine',NULL,NULL,'Community members were staying at home and not visiting their GP and other health services for regular checkups. To avoid more serious health and wellbeing problems down the track, the community needed to know it was safe to go back to regular appointments. We originally developed this campaign for Darling Downs West Moreton PHN, and Brisbane North PHN requested it run in its region as well.','With life beginning to return to normal in Queensland, the Darling Downs West Moreton and Brisbane North PHN wanted to encourage their communities to go back to a normal routine—especially for healthcare.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17769,18170,1,'Safe to See your GP','2021-06-03 23:06:13','2021-06-03 23:06:13','e7ee6785-adf2-4c2c-bd4b-cfaeb1c1bdf7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Getting back to a normal health routine',NULL,NULL,'Community members were staying at home and not visiting their GP and other health services for regular checkups. To avoid more serious health and wellbeing problems down the track, the community needed to know it was safe to go back to regular appointments. We originally developed this campaign for Darling Downs West Moreton PHN, and Brisbane North PHN requested it run in its region as well.','With life beginning to return to normal in Queensland, the Darling Downs West Moreton and Brisbane North PHN wanted to encourage their communities to go back to a normal routine—especially for healthcare.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17770,18171,1,'26 interviews with internal and external stakeholders','2021-06-03 23:06:32','2021-06-03 23:06:32','a4232fee-ac7e-48fd-be58-1a64d14a40af',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17771,18172,1,'workshops with internal stakeholders','2021-06-03 23:06:37','2021-06-03 23:06:37','6fc6386f-dd92-41b8-ae7c-738f9f228703',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17772,18173,1,'stakeholder map','2021-06-03 23:06:41','2021-06-03 23:06:41','a43297d0-c46d-4b2b-b301-15ad7680c3a1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17773,18174,1,'community engagement strategy','2021-06-03 23:06:46','2021-06-03 23:06:46','dcdf0555-a346-4913-a3e2-67249e4badfc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17774,18175,1,'communications strategy','2021-06-03 23:06:52','2021-06-03 23:06:52','96f423d6-b353-4cfd-b4c3-72a949a62c7e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17775,18176,1,'QMHC','2021-06-03 23:07:00','2022-08-09 00:06:09','d6626e17-666d-410e-987d-09c166e771f4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Stakeholder engagement',NULL,NULL,NULL,'Since its inception, the Queensland Mental Health Commission has sought to lead discourse and policy among government, stakeholder and grassroots community groups around mental health, suicide, and alcohol and other drugs.\nThe commission engaged us to refine their approach to communication and engagement with stakeholders, with a view to determining an accurate view of the enormous breadth of their stakeholders, their efficacy in reaching them, and the right mix of communication tools and tactics to better engage.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QkuSHpszbt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47656\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-B6PvNvL5Iy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We gained clear lines of sight into the impressions and needs of their stakeholder audience through 26 guided, in-depth phone interviews. Each interview was between 30 and 45 minutes long, and followed an approved guide to elicit data and insights to key questions. Key stakeholders included representatives of vulnerable groups, including remote communities, LGBTIQ+ stakeholder organisations, and Aboriginal and Torres Strait Islander groups.\\n\\nFrom this data, we developed an insights document and then a strategy to enable the Commission’s 20+ staff to better reach stakeholders with timely, needed communication and engagement opportunities.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F39qRl2lIU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47657\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'QMHC','Stakeholder engagement',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17776,18177,1,'QMHC','2021-06-03 23:07:00','2021-06-03 23:07:00','bf919339-3058-4b06-a20a-52cb8d46a024',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Queensland Mental Health Commission community engagement',NULL,NULL,'We gained clear lines of sight into the impressions and needs of their stakeholder audience through 26 guided, in-depth phone interviews. Each interview was between 30 and 45 minutes long, and followed an approved guide to elicit data and insights to key questions. Key stakeholders included representatives of vulnerable groups, including remote communities, LGBTIQ+ stakeholder organisations, and Aboriginal and Torres Strait Islander groups.\n\nFrom this data, we developed an insights document and then a strategy to enable the Commission’s 20+ staff to better reach stakeholders with timely, needed communication and engagement opportunities.','Since its inception, the Queensland Mental Health Commission has sought to lead discourse and policy among government, stakeholder and grassroots community groups around mental health, suicide, and alcohol and other drugs.\nThe commission engaged us to refine their approach to communication and engagement with stakeholders, with a view to determining an accurate view of the enormous breadth of their stakeholders, their efficacy in reaching them, and the right mix of communication tools and tactics to better engage.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17777,18178,1,'QMHC','2021-06-03 23:07:04','2021-06-03 23:07:04','08cdc07b-d3b1-4b59-8791-f56a8988a6da',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Queensland Mental Health Commission community engagement',NULL,NULL,'We gained clear lines of sight into the impressions and needs of their stakeholder audience through 26 guided, in-depth phone interviews. Each interview was between 30 and 45 minutes long, and followed an approved guide to elicit data and insights to key questions. Key stakeholders included representatives of vulnerable groups, including remote communities, LGBTIQ+ stakeholder organisations, and Aboriginal and Torres Strait Islander groups.\n\nFrom this data, we developed an insights document and then a strategy to enable the Commission’s 20+ staff to better reach stakeholders with timely, needed communication and engagement opportunities.','Since its inception, the Queensland Mental Health Commission has sought to lead discourse and policy among government, stakeholder and grassroots community groups around mental health, suicide, and alcohol and other drugs.\nThe commission engaged us to refine their approach to communication and engagement with stakeholders, with a view to determining an accurate view of the enormous breadth of their stakeholders, their efficacy in reaching them, and the right mix of communication tools and tactics to better engage.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17778,18179,1,'training workshops','2021-06-03 23:07:31','2021-06-03 23:07:31','0d8fc92e-8a1f-4589-b2e5-e0c41ff476f5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17779,18180,1,'stakeholder interviews','2021-06-03 23:07:47','2021-06-03 23:07:47','95556cad-6d8b-44ac-bf04-00639fc2e1bd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17780,18181,1,'photography and video production in rural areas','2021-06-03 23:08:10','2021-06-03 23:08:10','33991bc7-4f39-4758-bdaf-d6430c1027f3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17784,18185,1,'custom animation','2021-06-03 23:08:49','2021-06-03 23:08:49','f2648a74-1fa0-46b3-9596-f091b3bfed33',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17814,18216,1,'Cciq corp partnerships video','2021-06-09 23:26:18','2021-06-09 23:26:18','8a4908ae-338c-43bf-b972-250e908f0ab2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/cciq-corp-partnerships-video.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/cciq-corp-partnerships-video.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/cciq-corp-partnerships-video.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/cciq-corp-partnerships-video.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/cciq-corp-partnerships-video.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x768_crop_center-center_82_line/cciq-corp-partnerships-video.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x640_crop_center-center_82_line/cciq-corp-partnerships-video.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x512_crop_center-center_82_line/cciq-corp-partnerships-video.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x384_crop_center-center_82_line/cciq-corp-partnerships-video.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x320_crop_center-center_82_line/cciq-corp-partnerships-video.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6Pw/c31zBI18rIwwEDptz79K0bmQpbyMqfOF424JP4UUUAf/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#4c4c46\",\"#e9e9ea\",\"#959894\",\"#787e77\",\"#84867c\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17816,18338,1,'No. 3 campaign','2021-06-09 23:34:56','2021-06-09 23:34:56','1022dd44-495a-4d75-96d4-114b8c2fab0e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a No. 3? Anything that shouldn\'t go down the loo.',NULL,NULL,'The playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way. We set out to capture the attention of kids and adults with an innovative and integrated campaign that featured interactive and creative design, animation, illustration, merchandise and video.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17817,18348,1,'No. 3 campaign','2021-06-09 23:35:01','2021-06-09 23:35:01','a70223d2-fa38-4160-912c-813ffaa46dfc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a No. 3? Anything that shouldn\'t go down the loo.',NULL,NULL,'The playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way. We set out to capture the attention of kids and adults with an innovative and integrated campaign that featured interactive and creative design, animation, illustration, merchandise and video.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17819,18369,1,'Reasons to Stay','2021-06-09 23:36:04','2021-06-09 23:36:04','bb9b4dc8-5b05-4319-9ffd-3fdb821f76ab',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Helping to find reasons to stay',NULL,NULL,'The concept and campaign name of Reasons to Stay emerged from our conversations with people who have lived experience of suicide—both survivors and families of those who had passed away.','Suicide take around eight Australians from us every day and it needs to stop. Brisbane North PHN commissioned us to join the fight against suicide and produce a powerful digital campaign, speaking to people at risk of suicide and to their friends and family.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17821,18538,1,'Reasons to Stay','2021-06-09 23:44:53','2021-06-09 23:44:53','4adb49f9-7ab7-48c1-a40d-6d527908b69f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Helping to find reasons to stay',NULL,NULL,'The concept and campaign name of Reasons to Stay emerged from our conversations with people who have lived experience of suicide—both survivors and families of those who had passed away.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17822,18550,1,'Reasons to Stay','2021-06-09 23:44:59','2021-06-09 23:44:59','d0669cd1-d180-4c9b-a12a-a995fc961c05',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Helping to find reasons to stay',NULL,NULL,'The concept and campaign name of Reasons to Stay emerged from our conversations with people who have lived experience of suicide—both survivors and families of those who had passed away.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17823,18562,1,'No. 3 campaign','2021-06-09 23:45:20','2021-06-09 23:45:20','8ba4c139-0c8b-47a9-b6dc-d294ed6d314c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a No. 3? Anything that shouldn\'t go down the loo.',NULL,NULL,'The playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way. We set out to capture the attention of kids and adults with an innovative and integrated campaign that featured interactive and creative design, animation, illustration, merchandise and video.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17824,18572,1,'Reasons to Stay','2021-06-09 23:45:55','2021-06-09 23:45:55','30d97507-f3f3-4e2c-be97-6c048b3e6516',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Helping to find reasons to stay',NULL,NULL,'The concept and campaign name of Reasons to Stay emerged from our conversations with people who have lived experience of suicide—both survivors and families of those who had passed away.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17825,18584,1,'Medical mums 1','2021-06-09 23:47:12','2021-06-09 23:47:12','46085b30-4644-481e-a7ce-5de47e7ee082',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x939_crop_center-center_82_line/18584/medical-mums-1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x1878_crop_center-center_82_line/18584/medical-mums-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x782_crop_center-center_82_line/18584/medical-mums-1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1565_crop_center-center_82_line/18584/medical-mums-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x626_crop_center-center_82_line/18584/medical-mums-1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1252_crop_center-center_82_line/18584/medical-mums-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x469_crop_center-center_82_line/18584/medical-mums-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x391_crop_center-center_82_line/18584/medical-mums-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x939_crop_center-center_82_line/18584/medical-mums-1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x1878_crop_center-center_82_line/18584/medical-mums-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x782_crop_center-center_82_line/18584/medical-mums-1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1565_crop_center-center_82_line/18584/medical-mums-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x626_crop_center-center_82_line/18584/medical-mums-1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1252_crop_center-center_82_line/18584/medical-mums-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x469_crop_center-center_82_line/18584/medical-mums-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x391_crop_center-center_82_line/18584/medical-mums-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":939,\"3072\":1878,\"1280\":782,\"2560\":1565,\"1024\":626,\"2048\":1252,\"768\":469,\"640\":391},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6666\",\"originalImageHeight\":\"4076\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AtwavbtfOLtgQi/u8tjLev+feob29+06ghsLsoduxmboSR0A/qeK5+T/j6/4A1a/hLpff7g/9mpp2p3NqtNKo4ro7H//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#cac4c5\",\"#27303f\",\"#a62859\",\"#637689\",\"#75554c\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":939,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17827,18597,1,'Medical mums 2','2021-06-09 23:48:48','2021-06-09 23:48:48','746bd945-30c9-4fb5-8eea-3ef788510af6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1004_crop_center-center_82_line/18597/medical-mums-2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x2009_crop_center-center_82_line/18597/medical-mums-2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x837_crop_center-center_82_line/18597/medical-mums-2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1674_crop_center-center_82_line/18597/medical-mums-2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x669_crop_center-center_82_line/18597/medical-mums-2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1339_crop_center-center_82_line/18597/medical-mums-2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x502_crop_center-center_82_line/18597/medical-mums-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x418_crop_center-center_82_line/18597/medical-mums-2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1004_crop_center-center_82_line/18597/medical-mums-2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x2009_crop_center-center_82_line/18597/medical-mums-2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x837_crop_center-center_82_line/18597/medical-mums-2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1674_crop_center-center_82_line/18597/medical-mums-2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x669_crop_center-center_82_line/18597/medical-mums-2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1339_crop_center-center_82_line/18597/medical-mums-2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x502_crop_center-center_82_line/18597/medical-mums-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x418_crop_center-center_82_line/18597/medical-mums-2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1004,\"3072\":2009,\"1280\":837,\"2560\":1674,\"1024\":669,\"2048\":1339,\"768\":502,\"640\":418},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6666\",\"originalImageHeight\":\"4361\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7QSTruIiz1x8+c037TdllAtuCRkk9BVwKqkkKAT6ClpW0HfW9j//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d6dadc\",\"#e47534\",\"#3c6d7f\",\"#c9688b\",\"#d6a483\"],\"lightness\":62,\"placeholderWidth\":1536,\"placeholderHeight\":1004,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17828,18598,1,'Medical mums 3','2021-06-09 23:48:55','2021-06-09 23:48:55','75f3bfcf-5bdc-4e44-84f3-4d8ae9672d13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x878_crop_center-center_82_line/18598/medical-mums-3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x1756_crop_center-center_82_line/18598/medical-mums-3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x731_crop_center-center_82_line/18598/medical-mums-3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1463_crop_center-center_82_line/18598/medical-mums-3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x585_crop_center-center_82_line/18598/medical-mums-3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1170_crop_center-center_82_line/18598/medical-mums-3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x439_crop_center-center_82_line/18598/medical-mums-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x365_crop_center-center_82_line/18598/medical-mums-3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x878_crop_center-center_82_line/18598/medical-mums-3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x1756_crop_center-center_82_line/18598/medical-mums-3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x731_crop_center-center_82_line/18598/medical-mums-3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1463_crop_center-center_82_line/18598/medical-mums-3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x585_crop_center-center_82_line/18598/medical-mums-3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1170_crop_center-center_82_line/18598/medical-mums-3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x439_crop_center-center_82_line/18598/medical-mums-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x365_crop_center-center_82_line/18598/medical-mums-3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":878,\"3072\":1756,\"1280\":731,\"2560\":1463,\"1024\":585,\"2048\":1170,\"768\":439,\"640\":365},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6666\",\"originalImageHeight\":\"3811\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6Rnn8xkWJVK5zv7+lNtpZpWUNAQCRnsQOf8AAfnW0/ShOlPnlcj2cbH/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d0e0e2\",\"#3a757e\",\"#b2765f\",\"#7ab5a5\",\"#d6618d\"],\"lightness\":60,\"placeholderWidth\":1536,\"placeholderHeight\":878,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17829,18599,1,'Medical mums 4','2021-06-09 23:49:02','2021-06-09 23:49:02','05663d85-12f6-4220-9277-ea765d26cf63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1053_crop_center-center_82_line/18599/medical-mums-4.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x2106_crop_center-center_82_line/18599/medical-mums-4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x877_crop_center-center_82_line/18599/medical-mums-4.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1755_crop_center-center_82_line/18599/medical-mums-4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x702_crop_center-center_82_line/18599/medical-mums-4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1404_crop_center-center_82_line/18599/medical-mums-4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x526_crop_center-center_82_line/18599/medical-mums-4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x438_crop_center-center_82_line/18599/medical-mums-4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1053_crop_center-center_82_line/18599/medical-mums-4.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x2106_crop_center-center_82_line/18599/medical-mums-4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x877_crop_center-center_82_line/18599/medical-mums-4.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1755_crop_center-center_82_line/18599/medical-mums-4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x702_crop_center-center_82_line/18599/medical-mums-4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1404_crop_center-center_82_line/18599/medical-mums-4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x526_crop_center-center_82_line/18599/medical-mums-4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x438_crop_center-center_82_line/18599/medical-mums-4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1053,\"3072\":2106,\"1280\":877,\"2560\":1755,\"1024\":702,\"2048\":1404,\"768\":526,\"640\":438},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6666\",\"originalImageHeight\":\"4572\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7NryUbv9HbgEjnrTGu5nmVVt5MZAJzgD3q/UE/30pdA63P/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d6dbdb\",\"#e67636\",\"#429296\",\"#85baba\",\"#90807e\"],\"lightness\":63,\"placeholderWidth\":1536,\"placeholderHeight\":1053,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17830,18626,1,'Medical Mums','2021-06-09 23:50:04','2021-06-09 23:50:04','9df05757-c26e-4aee-9bea-0c4884b39869',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Medical Mums busting vaccination myths',NULL,NULL,'Our market research showed the people in our target market trust their GP\'s advice.','Market research in 2015 was showing the anti-vax movement was taking hold.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17831,18632,1,'Medical Mums','2021-06-09 23:50:10','2021-06-09 23:50:10','26ed4354-4ae7-4f1d-b106-cfcb79624970',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Medical Mums busting vaccination myths',NULL,NULL,'Our market research showed the people in our target market trust their GP\'s advice.','Market research in 2015 was showing the anti-vax movement was taking hold.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17832,18638,1,'TRI landing 1 3','2021-06-10 01:39:31','2021-06-10 01:39:31','4a418484-3bc5-4e7c-b43a-2dd4a3fc290d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x768_crop_center-center_82_line/TRI-landing-1_3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x640_crop_center-center_82_line/TRI-landing-1_3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x512_crop_center-center_82_line/TRI-landing-1_3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x384_crop_center-center_82_line/TRI-landing-1_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x320_crop_center-center_82_line/TRI-landing-1_3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x768_crop_center-center_82_line/TRI-landing-1_3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x640_crop_center-center_82_line/TRI-landing-1_3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x512_crop_center-center_82_line/TRI-landing-1_3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x384_crop_center-center_82_line/TRI-landing-1_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x320_crop_center-center_82_line/TRI-landing-1_3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"800\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7s7xGm7Jfvsx1x70r7/L+TO73oooFY//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#2d91ae\",\"#f0f8f8\",\"#95cad7\",\"#7f8a8f\",\"#949494\"],\"lightness\":65,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17833,18639,1,'TRI landing 3 3','2021-06-10 01:39:34','2021-06-10 01:39:34','4877afca-2752-49bd-8464-4c53ba6c03a0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/TRI-landing-3_3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/TRI-landing-3_3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/TRI-landing-3_3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/TRI-landing-3_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/TRI-landing-3_3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/TRI-landing-3_3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/TRI-landing-3_3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/TRI-landing-3_3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/TRI-landing-3_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/TRI-landing-3_3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A0tQ128ttSlt4YInRGUZOc8gH1qxZaxNcXyQNHGFYkZGc9KwtU/5GO5/3h/JauaV/yGIv95v5GuyNOLg3boebUrVFVUb6XP/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#069ad0\",\"#e3e3ea\",\"#174962\",\"#a4c4cc\",\"#74949c\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17834,18640,1,'TRI landing 4 3','2021-06-10 01:39:35','2021-06-10 01:39:35','677bd330-68b4-4327-a6a9-1c4cbb93939d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/TRI-landing-4_3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/TRI-landing-4_3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/TRI-landing-4_3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/TRI-landing-4_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/TRI-landing-4_3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/TRI-landing-4_3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/TRI-landing-4_3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/TRI-landing-4_3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/TRI-landing-4_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/TRI-landing-4_3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A27zStNnvHuJXbzgQzKjDI6duvpT7C1sDKlzA7biSVDHB7jpWbJ/yHNU/3E/mtXB/yMKfT+hrWF3dX6HPV5VyyavrY//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dee0e5\",\"#157798\",\"#ba5d2e\",\"#15323e\",\"#8c8850\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17835,18641,1,'TRI landing 5 3','2021-06-10 01:39:37','2021-06-10 01:39:37','cfa7314f-1a36-4c0d-b038-d9c8517ef329',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/TRI-landing-5_3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/TRI-landing-5_3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/TRI-landing-5_3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/TRI-landing-5_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/TRI-landing-5_3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/TRI-landing-5_3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/TRI-landing-5_3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/TRI-landing-5_3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/TRI-landing-5_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/TRI-landing-5_3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A2odOlOvXlxNF/o8iAA5B3Hjt+FSNYOusQzQxbYE759R/jWp3NLVKTREoKVr+p//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e0e0e5\",\"#1b6e8d\",\"#2cc3f1\",\"#968265\",\"#cf6330\"],\"lightness\":59,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17836,18642,1,'TRI landing 6 3','2021-06-10 01:39:39','2021-06-10 01:39:39','7df1a2b7-da74-481b-a6ff-ec8275696ca7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/TRI-landing-6_3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/TRI-landing-6_3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/TRI-landing-6_3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/TRI-landing-6_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/TRI-landing-6_3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/TRI-landing-6_3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/TRI-landing-6_3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/TRI-landing-6_3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/TRI-landing-6_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/TRI-landing-6_3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AuatMpu7tQTu8t8/9+/8A9dZ3hiFDrakkkKjMnPOenP4E07Vf+Q7ef9c3/wDRRp3hH/kNSf8AXA/zWuibvFehxUVaT9Wf/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1b4d63\",\"#dfe1e4\",\"#0fbae9\",\"#0793c4\",\"#e5682b\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17837,18643,1,'TRI landing 7 3','2021-06-10 01:39:40','2021-06-10 01:39:40','532d698c-661f-40f4-ab6f-74e64b8f3e35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x432_crop_center-center_82_line/TRI-landing-7_3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x360_crop_center-center_82_line/TRI-landing-7_3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x288_crop_center-center_82_line/TRI-landing-7_3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x216_crop_center-center_82_line/TRI-landing-7_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x180_crop_center-center_82_line/TRI-landing-7_3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x432_crop_center-center_82_line/TRI-landing-7_3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x360_crop_center-center_82_line/TRI-landing-7_3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x288_crop_center-center_82_line/TRI-landing-7_3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x216_crop_center-center_82_line/TRI-landing-7_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x180_crop_center-center_82_line/TRI-landing-7_3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":432,\"1280\":360,\"1024\":288,\"768\":216,\"640\":180},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6o2NpI5le2iaRsgsUBJ4x/KkisbS3YyQW0Ub9NyIAaKKYrH/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e0e0e4\",\"#1c485b\",\"#8ca5af\",\"#7c7c7c\",\"#74848c\"],\"lightness\":58,\"placeholderWidth\":1536,\"placeholderHeight\":432,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17838,18644,1,'TRI landing 14','2021-06-10 01:39:41','2021-06-10 01:39:41','3ea41b1d-a17e-4f31-a11e-5ea82d2dca82',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/TRI-landing-14.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/TRI-landing-14.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/TRI-landing-14.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/TRI-landing-14.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/TRI-landing-14.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/TRI-landing-14.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/TRI-landing-14.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/TRI-landing-14.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/TRI-landing-14.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/TRI-landing-14.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ao6dpkN7aySF5vMQgbY03daratY/2bqMtp5nm+Xj5tu3OQD0/GmW/Rqin/wBc1b63OTSx/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1f4a5e\",\"#ccd5d2\",\"#4ea1c7\",\"#313e1b\",\"#8b9c86\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17839,18645,1,'TRI landing 15','2021-06-10 01:39:43','2021-06-10 01:39:43','93ed259b-fabc-457c-abb6-566a577505c9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/TRI-landing-15.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/TRI-landing-15.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/TRI-landing-15.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/TRI-landing-15.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/TRI-landing-15.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/TRI-landing-15.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/TRI-landing-15.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/TRI-landing-15.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/TRI-landing-15.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/TRI-landing-15.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5/dtOR1rTjvbCGxu4VSWWWZAqM8SjYQeucmso9aK6HqcaVtT/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#184c62\",\"#e2e7e8\",\"#0b8fbb\",\"#5ab5d3\",\"#6c8793\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17840,18646,1,'TRI landing 16','2021-06-10 01:39:44','2021-06-10 01:39:44','5065dc95-b0e8-45f9-834e-67679bd02800',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/TRI-landing-16.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/TRI-landing-16.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/TRI-landing-16.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/TRI-landing-16.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/TRI-landing-16.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/TRI-landing-16.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/TRI-landing-16.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/TRI-landing-16.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/TRI-landing-16.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/TRI-landing-16.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3tAihfQ491umfK++VHPWl1eFF8PXLeXHnyxghBkdKXQf+QDB/wBc/wDGpda/5Fq5/wCuY/pVdSH8J//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e2e4e3\",\"#194759\",\"#7c6259\",\"#d57b47\",\"#548494\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17841,18647,1,'TRI landing 17','2021-06-10 01:39:46','2021-06-10 01:39:46','86d41bdf-952c-4956-bbcb-f71d093ddaa4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/TRI-landing-17.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/TRI-landing-17.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/TRI-landing-17.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/TRI-landing-17.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/TRI-landing-17.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/TRI-landing-17.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/TRI-landing-17.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/TRI-landing-17.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/TRI-landing-17.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/TRI-landing-17.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8ApaVosupybEmSP93vy2fUD+tMbTGWxkuXuY12kgIc5bGOn51veDf+Pv8A7dz/AOhCoJP+Rdvf94/+y11Nb/I8+Mm+W/W/4H//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1c4a5d\",\"#d3e6eb\",\"#0796ca\",\"#1db4e4\",\"#30839d\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17842,18648,1,'TRI landing 18','2021-06-10 01:39:47','2021-06-10 01:39:47','b394aa39-8648-43cb-9f16-018886ec648c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/TRI-landing-18.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/TRI-landing-18.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/TRI-landing-18.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/TRI-landing-18.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/TRI-landing-18.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/TRI-landing-18.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/TRI-landing-18.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/TRI-landing-18.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/TRI-landing-18.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/TRI-landing-18.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AXTrR7DSjdvKpju4/LVR1BznJ/Kk1PxJFfRzKIHTfF5a8j1zk1LqH/Ioab/v/ANGrmK6N0cW0n8j/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d8ebf0\",\"#1a4a60\",\"#2bb2d9\",\"#0991c3\",\"#708d95\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17843,18649,1,'TRI landing 19','2021-06-10 01:39:49','2021-06-10 01:39:49','37941abe-9692-4cdd-b15b-615b19726ff5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x364_crop_center-center_82_line/TRI-landing-19.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x304_crop_center-center_82_line/TRI-landing-19.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x243_crop_center-center_82_line/TRI-landing-19.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x182_crop_center-center_82_line/TRI-landing-19.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x152_crop_center-center_82_line/TRI-landing-19.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x364_crop_center-center_82_line/TRI-landing-19.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x304_crop_center-center_82_line/TRI-landing-19.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x243_crop_center-center_82_line/TRI-landing-19.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x182_crop_center-center_82_line/TRI-landing-19.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x152_crop_center-center_82_line/TRI-landing-19.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":364,\"1280\":304,\"1024\":243,\"768\":182,\"640\":152},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"380\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAAwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A53JIxk4oooroOM//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1a455c\",\"#f4fcfc\",\"#7c8d94\",\"#7c9cac\",\"#2c4c5c\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":364,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17844,18650,1,'TRI landing 20','2021-06-10 01:39:51','2021-06-10 01:39:51','70ab533e-a602-4a77-8c2a-62bac8dc264f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/TRI-landing-20.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/TRI-landing-20.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/TRI-landing-20.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/TRI-landing-20.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/TRI-landing-20.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/TRI-landing-20.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/TRI-landing-20.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/TRI-landing-20.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/TRI-landing-20.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/TRI-landing-20.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ar20d1MZ3jsZbmJGCgpnIO0HGAR61BI1yk8Iks5beMn5iwYZODgck88Gun8I/8et1/wBfH/si1R1n/jwi/wCvz/2ma6eeXtbX6nD7KHsL26H/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#118eb9\",\"#cdcccc\",\"#0a191d\",\"#2e4a54\",\"#44d4fc\"],\"lightness\":43,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17845,18651,1,'TRI landing 21','2021-06-10 01:39:53','2021-06-10 01:39:53','ea677cb4-1d56-49e0-a2e5-096e50619184',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/TRI-landing-21.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/TRI-landing-21.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/TRI-landing-21.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/TRI-landing-21.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/TRI-landing-21.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/TRI-landing-21.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/TRI-landing-21.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/TRI-landing-21.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/TRI-landing-21.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/TRI-landing-21.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Av6SdlqfKWAv5h3eZEXPIAHQVNrltLHYq8622TKuPJTGDtOaz9L/4+R9f6Gt3xT/yD4v+u39DXTf9+cH/ADC38j//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1496c1\",\"#e5ecea\",\"#1a1b1b\",\"#5c6247\",\"#bb6c3e\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17846,18652,1,'TRI landing 22','2021-06-10 01:39:54','2021-06-10 01:39:54','dee4feb6-6d1c-435d-824e-28312b5e6547',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x960_crop_center-center_82_line/TRI-landing-22.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x800_crop_center-center_82_line/TRI-landing-22.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x640_crop_center-center_82_line/TRI-landing-22.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x480_crop_center-center_82_line/TRI-landing-22.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x400_crop_center-center_82_line/TRI-landing-22.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x960_crop_center-center_82_line/TRI-landing-22.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x800_crop_center-center_82_line/TRI-landing-22.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x640_crop_center-center_82_line/TRI-landing-22.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x480_crop_center-center_82_line/TRI-landing-22.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x400_crop_center-center_82_line/TRI-landing-22.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":960,\"1280\":800,\"1024\":640,\"768\":480,\"640\":400},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8ApuLkyEQ+ZsK4O0HHWpmudQlPl3kkrRjkBhxn/OadHPNECI5XQHnCsRRJPNKAJJXcDnDMTXocv7y543tP3PKf/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#128eb7\",\"#255160\",\"#d7e5e4\",\"#1a4b6d\",\"#44d4f4\"],\"lightness\":44,\"placeholderWidth\":1536,\"placeholderHeight\":960,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17847,18653,1,'TRI video placeholder','2021-06-10 01:41:13','2021-06-10 01:41:13','9d6bb4da-320d-4ca1-ae48-581c6715cd74',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/18653/TRI-video-placeholder.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/18653/TRI-video-placeholder.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/18653/TRI-video-placeholder.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/18653/TRI-video-placeholder.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/18653/TRI-video-placeholder.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/18653/TRI-video-placeholder.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/18653/TRI-video-placeholder.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/18653/TRI-video-placeholder.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/18653/TRI-video-placeholder.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/18653/TRI-video-placeholder.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AWXBI3HA7kVl3+ADtORng1pz9Ky777tetV2Z85hviR//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#04a3d6\",\"#105874\",\"#d1f4f9\",\"#66ddf8\",\"#0474a4\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17849,19014,1,'Tritium','2021-06-10 01:54:28','2021-06-10 01:54:28','cc3ea660-093e-4427-a389-c07f1e3a2ee2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'We turned up the voltage on the launch of the new brand with this show-stopping animated brand video.\nWith an appetite only satisfied by global domination and a powerful vision of energy freedom, Tritium’s journey has only just begun… but they started in the fast lane. We developed a set of foundational branding elements that showcase who Tritium is now and prepares for their exciting future.','As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league.\n\nTritium commissioned us to update their brand—to put their internal culture of creativity and innovation on display and to share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17850,19033,1,'Tritium','2021-06-10 01:54:38','2021-06-10 01:54:38','12cb54b8-176c-4e85-893e-4dcdd95027bc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'We turned up the voltage on the launch of the new brand with this show-stopping animated brand video.\nWith an appetite only satisfied by global domination and a powerful vision of energy freedom, Tritium’s journey has only just begun… but they started in the fast lane. We developed a set of foundational branding elements that showcase who Tritium is now and prepares for their exciting future.','As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league.\n\nTritium commissioned us to update their brand—to put their internal culture of creativity and innovation on display and to share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17851,19052,1,'QUU Landing 1','2021-06-10 04:17:10','2021-06-10 04:17:10','95b97320-aad8-4daf-8944-1feb013fc513',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1036_crop_center-center_82_line/QUU-Landing-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x864_crop_center-center_82_line/QUU-Landing-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x691_crop_center-center_82_line/QUU-Landing-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x518_crop_center-center_82_line/QUU-Landing-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x432_crop_center-center_82_line/QUU-Landing-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1036_crop_center-center_82_line/QUU-Landing-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x864_crop_center-center_82_line/QUU-Landing-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x691_crop_center-center_82_line/QUU-Landing-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x518_crop_center-center_82_line/QUU-Landing-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x432_crop_center-center_82_line/QUU-Landing-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1036,\"1280\":864,\"1024\":691,\"768\":518,\"640\":432},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1080\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AxYkV32sSB6gZqS8ijhuGSFyyADk1BRXoW1ubn//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#5c3383\",\"#e2dcbf\",\"#ac8ccd\",\"#5c4849\",\"#ac94bc\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":1036,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17852,19053,1,'QUU Landing 2','2021-06-10 04:17:12','2021-06-10 04:17:12','20257a17-199f-47db-8b25-d84a2b26d000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1036_crop_center-center_82_line/QUU-Landing-2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x864_crop_center-center_82_line/QUU-Landing-2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x691_crop_center-center_82_line/QUU-Landing-2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x518_crop_center-center_82_line/QUU-Landing-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x432_crop_center-center_82_line/QUU-Landing-2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1036_crop_center-center_82_line/QUU-Landing-2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x864_crop_center-center_82_line/QUU-Landing-2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x691_crop_center-center_82_line/QUU-Landing-2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x518_crop_center-center_82_line/QUU-Landing-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x432_crop_center-center_82_line/QUU-Landing-2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1036,\"1280\":864,\"1024\":691,\"768\":518,\"640\":432},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1080\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AS+0qKwMYVjJ5p2/P/D0pmn6Ol5LMJC8Spjbgdfrn6VvamitAu5QfmHUVFop3WrM3LFzknqa5FiansOe+ppc//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#583177\",\"#cdd555\",\"#c3c2d7\",\"#9c6d61\",\"#5f5a60\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":1036,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17853,19054,1,'QUU Landing 3','2021-06-10 04:17:15','2021-06-10 04:17:15','4b3e9148-cf26-4b1b-b0b7-6bc043b2f7c5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1459_crop_center-center_82_line/19054/QUU-Landing-3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x1216_crop_center-center_82_line/19054/QUU-Landing-3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x972_crop_center-center_82_line/19054/QUU-Landing-3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x729_crop_center-center_82_line/19054/QUU-Landing-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x608_crop_center-center_82_line/19054/QUU-Landing-3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1459_crop_center-center_82_line/19054/QUU-Landing-3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x1216_crop_center-center_82_line/19054/QUU-Landing-3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x972_crop_center-center_82_line/19054/QUU-Landing-3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x729_crop_center-center_82_line/19054/QUU-Landing-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x608_crop_center-center_82_line/19054/QUU-Landing-3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1459,\"1280\":1216,\"1024\":972,\"768\":729,\"640\":608},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1520\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6PdwxBz6e1MLgyxA/eIPFJHE8ckrE7ldgQPTjFS7QWBKjjp7V4OxZ//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d1d953\",\"#733c1b\",\"#f1e1c4\",\"#697019\",\"#dfda90\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":1459,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17854,19055,1,'QUU Landing 4','2021-06-10 04:17:17','2021-06-10 04:17:17','21dd9601-1d08-42eb-ac1d-6c3ee0e8925c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1036_crop_center-center_82_line/19055/QUU-Landing-4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x864_crop_center-center_82_line/19055/QUU-Landing-4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x691_crop_center-center_82_line/19055/QUU-Landing-4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x518_crop_center-center_82_line/19055/QUU-Landing-4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x432_crop_center-center_82_line/19055/QUU-Landing-4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1036_crop_center-center_82_line/19055/QUU-Landing-4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x864_crop_center-center_82_line/19055/QUU-Landing-4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x691_crop_center-center_82_line/19055/QUU-Landing-4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x518_crop_center-center_82_line/19055/QUU-Landing-4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x432_crop_center-center_82_line/19055/QUU-Landing-4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1036,\"1280\":864,\"1024\":691,\"768\":518,\"640\":432},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1080\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ay5lhjkCMZHI4OwKR9PvVft7m2lmVfs8pwhHbkg98Hir4jRw29Fb6jNR/Z4EZXSGNWB6hQDRCbi7IuVOM43Z//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#726366\",\"#d8a693\",\"#4893ce\",\"#171414\",\"#99bdcc\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":1036,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17855,19056,1,'QUU Landing 5','2021-06-10 04:17:21','2021-06-10 04:17:21','4c4be55f-0a9f-4690-ba8e-7b602a0de09e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1219_crop_center-center_82_line/19056/QUU-Landing-5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x1016_crop_center-center_82_line/19056/QUU-Landing-5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x812_crop_center-center_82_line/19056/QUU-Landing-5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x609_crop_center-center_82_line/19056/QUU-Landing-5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x508_crop_center-center_82_line/19056/QUU-Landing-5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1219_crop_center-center_82_line/19056/QUU-Landing-5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x1016_crop_center-center_82_line/19056/QUU-Landing-5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x812_crop_center-center_82_line/19056/QUU-Landing-5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x609_crop_center-center_82_line/19056/QUU-Landing-5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x508_crop_center-center_82_line/19056/QUU-Landing-5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1219,\"1280\":1016,\"1024\":812,\"768\":609,\"640\":508},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1270\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A0bVjYov26Mgs/wAgA9MD+eKqWFnazLmXeoWP07+nP0NLq11NGsJVyTsZhkZweOal0ckPIc5yBwQCOCa53eEefozpve8nuf/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#624767\",\"#dce098\",\"#e76339\",\"#a49163\",\"#ac99c1\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":1219,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17856,19057,1,'QUU Landing 7','2021-06-10 04:17:24','2021-06-10 04:17:24','29c90fac-5283-432f-a08d-2eeb6550c08c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x921_crop_center-center_82_line/19057/QUU-Landing-7.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x768_crop_center-center_82_line/19057/QUU-Landing-7.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x614_crop_center-center_82_line/19057/QUU-Landing-7.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x460_crop_center-center_82_line/19057/QUU-Landing-7.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x384_crop_center-center_82_line/19057/QUU-Landing-7.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x921_crop_center-center_82_line/19057/QUU-Landing-7.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x768_crop_center-center_82_line/19057/QUU-Landing-7.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x614_crop_center-center_82_line/19057/QUU-Landing-7.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x460_crop_center-center_82_line/19057/QUU-Landing-7.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x384_crop_center-center_82_line/19057/QUU-Landing-7.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"1280\":768,\"1024\":614,\"768\":460,\"640\":384},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"960\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A1Nc1G+tL4RW7EK8YKAIDlt309Kk0m9vrm9Ec5+RY23DaAQ27jt6VtHrQKptW2Hc//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#573579\",\"#e2e1e8\",\"#94556a\",\"#a6aa49\",\"#9384a1\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17857,19058,1,'QUU Landing 8','2021-06-10 04:17:26','2021-06-10 04:17:26','c6cdeda7-c631-4457-b9d1-9dcb0280ce13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x921_crop_center-center_82_line/19058/QUU-Landing-8.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x768_crop_center-center_82_line/19058/QUU-Landing-8.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x614_crop_center-center_82_line/19058/QUU-Landing-8.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x460_crop_center-center_82_line/19058/QUU-Landing-8.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x384_crop_center-center_82_line/19058/QUU-Landing-8.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x921_crop_center-center_82_line/19058/QUU-Landing-8.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x768_crop_center-center_82_line/19058/QUU-Landing-8.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x614_crop_center-center_82_line/19058/QUU-Landing-8.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x460_crop_center-center_82_line/19058/QUU-Landing-8.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x384_crop_center-center_82_line/19058/QUU-Landing-8.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"1280\":768,\"1024\":614,\"768\":460,\"640\":384},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"960\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7K4uLtL1YoLYSRGPJYsB83PH8qlt5Ll2/fwLGuM5D7uc9Pyqx3ooGf/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#976e3e\",\"#e5e3e4\",\"#5d397e\",\"#b7b57d\",\"#747880\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17858,19059,1,'QUU Landing 9','2021-06-10 04:17:30','2021-06-10 04:17:30','65cfd8c5-b4cd-474e-86e6-be929eb02b85',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1036_crop_center-center_82_line/19059/QUU-Landing-9.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x864_crop_center-center_82_line/19059/QUU-Landing-9.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x691_crop_center-center_82_line/19059/QUU-Landing-9.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x518_crop_center-center_82_line/19059/QUU-Landing-9.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x432_crop_center-center_82_line/19059/QUU-Landing-9.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1036_crop_center-center_82_line/19059/QUU-Landing-9.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x864_crop_center-center_82_line/19059/QUU-Landing-9.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x691_crop_center-center_82_line/19059/QUU-Landing-9.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x518_crop_center-center_82_line/19059/QUU-Landing-9.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x432_crop_center-center_82_line/19059/QUU-Landing-9.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1036,\"1280\":864,\"1024\":691,\"768\":518,\"640\":432},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1080\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5eWG7nmzLuaTA/h5rRtNMk+yxgp+9kbLBhgj2/XNdHp6IEjYKASoycdasPxK2P7lT5lX6H//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c0aea2\",\"#312c2a\",\"#81776e\",\"#98a39f\",\"#8d949d\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":1036,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17859,19060,1,'Reasons to stay 1','2021-06-10 04:20:00','2021-06-10 04:20:00','6b8aa85e-ac9d-4b31-8b97-64b39dfc8a79',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x806_crop_center-center_82_line/19060/reasons-to-stay-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x672_crop_center-center_82_line/19060/reasons-to-stay-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x537_crop_center-center_82_line/19060/reasons-to-stay-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x403_crop_center-center_82_line/19060/reasons-to-stay-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x336_crop_center-center_82_line/19060/reasons-to-stay-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x806_crop_center-center_82_line/19060/reasons-to-stay-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x672_crop_center-center_82_line/19060/reasons-to-stay-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x537_crop_center-center_82_line/19060/reasons-to-stay-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x403_crop_center-center_82_line/19060/reasons-to-stay-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x336_crop_center-center_82_line/19060/reasons-to-stay-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":806,\"1280\":672,\"1024\":537,\"768\":403,\"640\":336},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"840\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AupodwIJjdEuXGS20kgU2xstReGT7JJP5ZAUNvEfQ/wD16KKmw7n/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#cfcac3\",\"#45453a\",\"#7e795f\",\"#575b53\",\"#6a5952\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":806,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17860,19061,1,'Reasons to stay 2','2021-06-10 04:20:01','2021-06-10 04:20:01','1f09799a-3978-42b2-a411-0aad3807c401',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1023_crop_center-center_82_line/19061/reasons-to-stay-2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x852_crop_center-center_82_line/19061/reasons-to-stay-2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x682_crop_center-center_82_line/19061/reasons-to-stay-2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x511_crop_center-center_82_line/19061/reasons-to-stay-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x426_crop_center-center_82_line/19061/reasons-to-stay-2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1023_crop_center-center_82_line/19061/reasons-to-stay-2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x852_crop_center-center_82_line/19061/reasons-to-stay-2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x682_crop_center-center_82_line/19061/reasons-to-stay-2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x511_crop_center-center_82_line/19061/reasons-to-stay-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x426_crop_center-center_82_line/19061/reasons-to-stay-2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1023,\"1280\":852,\"1024\":682,\"768\":511,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"1066\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ai0fSrO6nZI4ESCQEKA+7pnGc9ehPaq+u6da21xPAFcbVGFiACj7vqc9a0/BgH+j8D/Wf+yNVLxm7Jqc21iucdDjtUFpH/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#413b2f\",\"#e1d1c3\",\"#947a65\",\"#99aa95\",\"#8995a4\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":1023,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17861,19062,1,'Reasons to stay 3','2021-06-10 04:20:03','2021-06-10 04:20:03','6235db4d-6aef-46f1-bac7-6316ac1bcd7a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x768_crop_center-center_82_line/19062/reasons-to-stay-3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x640_crop_center-center_82_line/19062/reasons-to-stay-3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x512_crop_center-center_82_line/19062/reasons-to-stay-3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x384_crop_center-center_82_line/19062/reasons-to-stay-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x320_crop_center-center_82_line/19062/reasons-to-stay-3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x768_crop_center-center_82_line/19062/reasons-to-stay-3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x640_crop_center-center_82_line/19062/reasons-to-stay-3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x512_crop_center-center_82_line/19062/reasons-to-stay-3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x384_crop_center-center_82_line/19062/reasons-to-stay-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x320_crop_center-center_82_line/19062/reasons-to-stay-3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"800\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6W7jldj5Loj723b43bPJxyPbFXRuzyBj60UUgP/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e3e8e2\",\"#282823\",\"#846560\",\"#918c8b\",\"#7b7a62\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17862,19063,1,'Reasons to stay thumbnail 1','2021-06-10 04:20:21','2021-06-10 04:20:21','3115b72c-570e-43dd-b3d2-c9f13332341e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1024_crop_center-center_82_line/reasons-to-stay-thumbnail-1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x2048_crop_center-center_82_line/reasons-to-stay-thumbnail-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x853_crop_center-center_82_line/reasons-to-stay-thumbnail-1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1706_crop_center-center_82_line/reasons-to-stay-thumbnail-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x682_crop_center-center_82_line/reasons-to-stay-thumbnail-1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1365_crop_center-center_82_line/reasons-to-stay-thumbnail-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x512_crop_center-center_82_line/reasons-to-stay-thumbnail-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x426_crop_center-center_82_line/reasons-to-stay-thumbnail-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1024_crop_center-center_82_line/reasons-to-stay-thumbnail-1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x2048_crop_center-center_82_line/reasons-to-stay-thumbnail-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x853_crop_center-center_82_line/reasons-to-stay-thumbnail-1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1706_crop_center-center_82_line/reasons-to-stay-thumbnail-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x682_crop_center-center_82_line/reasons-to-stay-thumbnail-1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1365_crop_center-center_82_line/reasons-to-stay-thumbnail-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x512_crop_center-center_82_line/reasons-to-stay-thumbnail-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x426_crop_center-center_82_line/reasons-to-stay-thumbnail-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"3072\":2048,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6240\",\"originalImageHeight\":\"4160\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AuXt5qAVY2j8qBzhpEf5gccdOnQVkXVnqGoMrEvsTIXOSSM/55rU1c/vIR2wTRpxIgcAkDik0+XmuF1ex/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#b0b1aa\",\"#35362d\",\"#34597e\",\"#82775d\",\"#6d534f\"],\"lightness\":43,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17863,19064,1,'Reasons to stay thumbnail 2','2021-06-10 04:20:48','2021-06-10 04:20:48','f236f36e-7166-4fa8-bbc6-ca42a310f7fe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1024_crop_center-center_82_line/reasons-to-stay-thumbnail-2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x2048_crop_center-center_82_line/reasons-to-stay-thumbnail-2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x853_crop_center-center_82_line/reasons-to-stay-thumbnail-2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1706_crop_center-center_82_line/reasons-to-stay-thumbnail-2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x682_crop_center-center_82_line/reasons-to-stay-thumbnail-2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1365_crop_center-center_82_line/reasons-to-stay-thumbnail-2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x512_crop_center-center_82_line/reasons-to-stay-thumbnail-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x426_crop_center-center_82_line/reasons-to-stay-thumbnail-2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1024_crop_center-center_82_line/reasons-to-stay-thumbnail-2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x2048_crop_center-center_82_line/reasons-to-stay-thumbnail-2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x853_crop_center-center_82_line/reasons-to-stay-thumbnail-2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1706_crop_center-center_82_line/reasons-to-stay-thumbnail-2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x682_crop_center-center_82_line/reasons-to-stay-thumbnail-2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1365_crop_center-center_82_line/reasons-to-stay-thumbnail-2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x512_crop_center-center_82_line/reasons-to-stay-thumbnail-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x426_crop_center-center_82_line/reasons-to-stay-thumbnail-2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"3072\":2048,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6240\",\"originalImageHeight\":\"4160\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ag+0XuoXKpOkqwDJ25JGcd6j2X2nzytaK8cUndew//XXURfcqC/JEHBx9Kyd+XmK8j//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#54513b\",\"#c3c4c8\",\"#bab28b\",\"#ae977e\",\"#929792\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17864,19065,1,'Reasons to stay thumbnail 3','2021-06-10 04:21:14','2021-06-10 04:21:14','2e7f85c5-d00d-49d6-99db-df6e67e4df2b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1024_crop_center-center_82_line/reasons-to-stay-thumbnail-3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x2048_crop_center-center_82_line/reasons-to-stay-thumbnail-3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x853_crop_center-center_82_line/reasons-to-stay-thumbnail-3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1706_crop_center-center_82_line/reasons-to-stay-thumbnail-3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x682_crop_center-center_82_line/reasons-to-stay-thumbnail-3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1365_crop_center-center_82_line/reasons-to-stay-thumbnail-3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x512_crop_center-center_82_line/reasons-to-stay-thumbnail-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x426_crop_center-center_82_line/reasons-to-stay-thumbnail-3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1024_crop_center-center_82_line/reasons-to-stay-thumbnail-3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x2048_crop_center-center_82_line/reasons-to-stay-thumbnail-3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x853_crop_center-center_82_line/reasons-to-stay-thumbnail-3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1706_crop_center-center_82_line/reasons-to-stay-thumbnail-3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x682_crop_center-center_82_line/reasons-to-stay-thumbnail-3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1365_crop_center-center_82_line/reasons-to-stay-thumbnail-3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x512_crop_center-center_82_line/reasons-to-stay-thumbnail-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x426_crop_center-center_82_line/reasons-to-stay-thumbnail-3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"3072\":2048,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6240\",\"originalImageHeight\":\"4160\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Az7ey1B5zc3ZmKDLE7jkmta71XVYPJeGSRYdoyHUDsO5q/qhzcqp5GzpVyyAaIBgCAo4NQ01HmuPTY//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#5a5843\",\"#ced2d6\",\"#d7cda7\",\"#95979f\",\"#b8bc94\"],\"lightness\":59,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17865,19066,1,'Reasons to stay thumbnail 4','2021-06-10 04:21:42','2021-06-10 04:21:42','67879e66-775b-43c8-a548-2ea39c874819',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1024_crop_center-center_82_line/reasons-to-stay-thumbnail-4.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x2048_crop_center-center_82_line/reasons-to-stay-thumbnail-4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x853_crop_center-center_82_line/reasons-to-stay-thumbnail-4.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1706_crop_center-center_82_line/reasons-to-stay-thumbnail-4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x682_crop_center-center_82_line/reasons-to-stay-thumbnail-4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1365_crop_center-center_82_line/reasons-to-stay-thumbnail-4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x512_crop_center-center_82_line/reasons-to-stay-thumbnail-4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x426_crop_center-center_82_line/reasons-to-stay-thumbnail-4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1024_crop_center-center_82_line/reasons-to-stay-thumbnail-4.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x2048_crop_center-center_82_line/reasons-to-stay-thumbnail-4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x853_crop_center-center_82_line/reasons-to-stay-thumbnail-4.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1706_crop_center-center_82_line/reasons-to-stay-thumbnail-4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x682_crop_center-center_82_line/reasons-to-stay-thumbnail-4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1365_crop_center-center_82_line/reasons-to-stay-thumbnail-4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x512_crop_center-center_82_line/reasons-to-stay-thumbnail-4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x426_crop_center-center_82_line/reasons-to-stay-thumbnail-4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"3072\":2048,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6240\",\"originalImageHeight\":\"4160\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AyoriXEfnFvLJw+O/X/AUy9hOXeN1RGJZUJwep7VoeKGZdTVVJCqgIAPAqPSlWWUiUBwFyAwzz61CXu8wX6H/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#3c3f38\",\"#b8aa8d\",\"#7a7557\",\"#909663\",\"#818999\"],\"lightness\":43,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17866,19067,1,'Reasons to stay thumbnail 5','2021-06-10 04:22:08','2021-06-10 04:22:08','d85a82c9-13bd-4bec-adfe-ef89005bbc83',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1024_crop_center-center_82_line/reasons-to-stay-thumbnail-5.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x2048_crop_center-center_82_line/reasons-to-stay-thumbnail-5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x853_crop_center-center_82_line/reasons-to-stay-thumbnail-5.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1706_crop_center-center_82_line/reasons-to-stay-thumbnail-5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x682_crop_center-center_82_line/reasons-to-stay-thumbnail-5.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1365_crop_center-center_82_line/reasons-to-stay-thumbnail-5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x512_crop_center-center_82_line/reasons-to-stay-thumbnail-5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x426_crop_center-center_82_line/reasons-to-stay-thumbnail-5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1024_crop_center-center_82_line/reasons-to-stay-thumbnail-5.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x2048_crop_center-center_82_line/reasons-to-stay-thumbnail-5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x853_crop_center-center_82_line/reasons-to-stay-thumbnail-5.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1706_crop_center-center_82_line/reasons-to-stay-thumbnail-5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x682_crop_center-center_82_line/reasons-to-stay-thumbnail-5.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1365_crop_center-center_82_line/reasons-to-stay-thumbnail-5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x512_crop_center-center_82_line/reasons-to-stay-thumbnail-5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x426_crop_center-center_82_line/reasons-to-stay-thumbnail-5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"3072\":2048,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6240\",\"originalImageHeight\":\"4160\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ajje6n1KSa4CyPIqjYzDtx0H+eaoXllcO0rh18gOVV2cAEZ6ZPWqmrSyJrl0yyMrLKwBBwQKs+H0WV5xIocAAgMM+tZ9Lj6H/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#393a2f\",\"#cbc5b9\",\"#b2ae81\",\"#a68c78\",\"#81835d\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17867,19068,1,'Reasons to stay thumbnail 6','2021-06-10 04:22:35','2021-06-10 04:22:35','c382e6c9-a11f-455a-9c56-b5a6cb867449',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1024_crop_center-center_82_line/reasons-to-stay-thumbnail-6.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x2048_crop_center-center_82_line/reasons-to-stay-thumbnail-6.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x853_crop_center-center_82_line/reasons-to-stay-thumbnail-6.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1706_crop_center-center_82_line/reasons-to-stay-thumbnail-6.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x682_crop_center-center_82_line/reasons-to-stay-thumbnail-6.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1365_crop_center-center_82_line/reasons-to-stay-thumbnail-6.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x512_crop_center-center_82_line/reasons-to-stay-thumbnail-6.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x426_crop_center-center_82_line/reasons-to-stay-thumbnail-6.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1024_crop_center-center_82_line/reasons-to-stay-thumbnail-6.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x2048_crop_center-center_82_line/reasons-to-stay-thumbnail-6.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x853_crop_center-center_82_line/reasons-to-stay-thumbnail-6.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1706_crop_center-center_82_line/reasons-to-stay-thumbnail-6.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x682_crop_center-center_82_line/reasons-to-stay-thumbnail-6.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1365_crop_center-center_82_line/reasons-to-stay-thumbnail-6.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x512_crop_center-center_82_line/reasons-to-stay-thumbnail-6.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x426_crop_center-center_82_line/reasons-to-stay-thumbnail-6.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"3072\":2048,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6240\",\"originalImageHeight\":\"4160\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8ArS293bvbwTysrHcc9259/qOKfd2UQWRTNI5YceXGxH51FqUsh8TXWZGO1sDnoK6LwozSWE/mEtiTA3HOOBWTRVtD/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#525441\",\"#e1ddc5\",\"#a09379\",\"#b4b996\",\"#b2aaa6\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17869,19081,1,'PHN SP Branding 1','2021-06-10 04:24:54','2021-06-10 04:24:54','6f1fc251-4ba3-4b57-aa4a-ed5ec16cd601',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x802_crop_center-center_82_line/PHN-SP-Branding_1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x1605_crop_center-center_82_line/PHN-SP-Branding_1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x668_crop_center-center_82_line/PHN-SP-Branding_1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1337_crop_center-center_82_line/PHN-SP-Branding_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x535_crop_center-center_82_line/PHN-SP-Branding_1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1070_crop_center-center_82_line/PHN-SP-Branding_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x401_crop_center-center_82_line/PHN-SP-Branding_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x334_crop_center-center_82_line/PHN-SP-Branding_1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x802_crop_center-center_82_line/PHN-SP-Branding_1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x1605_crop_center-center_82_line/PHN-SP-Branding_1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x668_crop_center-center_82_line/PHN-SP-Branding_1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1337_crop_center-center_82_line/PHN-SP-Branding_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x535_crop_center-center_82_line/PHN-SP-Branding_1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1070_crop_center-center_82_line/PHN-SP-Branding_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x401_crop_center-center_82_line/PHN-SP-Branding_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x334_crop_center-center_82_line/PHN-SP-Branding_1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":802,\"3072\":1605,\"1280\":668,\"2560\":1337,\"1024\":535,\"2048\":1070,\"768\":401,\"640\":334},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"5000\",\"originalImageHeight\":\"2613\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AsahY3aapckwzSpI7kbI2YAEnHb0NJp0F3BI1vbm4gMrgHI2kdcE96KKm1lcD/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#5e5d53\",\"#cbcece\",\"#beac96\",\"#909291\",\"#abb48f\"],\"lightness\":58,\"placeholderWidth\":1536,\"placeholderHeight\":802,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17870,19093,1,'Reasons to Stay','2021-06-10 04:26:08','2021-06-10 04:26:08','2698373d-276b-4f8c-9880-fb7003a2b63f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Helping to find reasons to stay',NULL,NULL,'The concept and campaign name of Reasons to Stay emerged from our conversations with people who have lived experience of suicide—both survivors and families of those who had passed away.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17871,19105,1,'Reasons to Stay','2021-06-10 04:26:13','2021-06-10 04:26:13','37a7e6c9-c2fc-43ad-93ee-c18085f6f597',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Helping to find reasons to stay',NULL,NULL,'The concept and campaign name of Reasons to Stay emerged from our conversations with people who have lived experience of suicide—both survivors and families of those who had passed away.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17873,19136,1,'No. 3 campaign','2021-06-10 04:27:36','2021-06-10 04:27:36','cb20f1c8-21ce-4bfa-9dbb-9d920008dda8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a No. 3? Anything that shouldn\'t go down the loo.',NULL,NULL,'The playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way. We set out to capture the attention of kids and adults with an innovative and integrated campaign that featured interactive and creative design, animation, illustration, merchandise and video.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17874,19146,1,'No. 3 campaign','2021-06-10 04:27:41','2021-06-10 04:27:41','28e96761-79e0-424f-9620-c3249fc53b1d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a No. 3? Anything that shouldn\'t go down the loo.',NULL,NULL,'The playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way. We set out to capture the attention of kids and adults with an innovative and integrated campaign that featured interactive and creative design, animation, illustration, merchandise and video.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17886,19167,1,'New Word Order','2021-06-11 00:30:18','2021-06-11 00:30:18','8b6de71d-2ef3-4d7a-96b0-9584f3708c05',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17894,19175,1,'Surepipe','2021-06-11 01:36:15','2021-06-11 01:36:15','19b55b6f-4077-4530-be44-af2f53b48a5b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17895,19176,1,NULL,'2021-06-11 01:36:22','2021-06-11 01:37:34','369ff56d-ac82-401b-843b-7f561cce2d4c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17896,19177,1,'Stewart Anderson - Brand Audit Submission - 11 Jun, 2021','2021-06-11 01:39:49','2021-06-11 01:39:49','1a3ef042-5c17-4ded-a2e5-4a05c29656b7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To stock and sell steel pipe and casing','Customers that require steel pipe and casing: mining & drilling, marine and land based piling, fabricators, under-road borers and rural are the main markets, as well merchant sales to other steel distributors.','Making sure it is done properly, honesty, communication, flexibility and prompt response.','I think that our people do a very good job of living up our values.','I think we don’t do enough internally to talk about our brand and our values.  I think we live the values naturally and the team is somewhat self selecting, people that don’t share the values tend to move on quick.','This is a tough one, I am not really sure.','Not short term, we have been in business for over 30 years.  Many of our staff are long termers too, 10 + years.  I think this adds to a solid feeling.','Good quality products, expertise in our field, safe, like your requirements are in good hands.','We where formally East Coast Pipe Supplies, rebranded to Surepipe in 2014.',NULL,'Surepipe is our only brand and it covers branches in Brisbane and Wollongong.  I have thought that in the future we could attack allied industries by setting up a company or sub branch called Surepipe HVAC, for example.','I don’t think it speaks enough.','Mining, Drilling, Under road boring, piling, fabrication and merchant sales.','Steelforce, Atlas, Southern steel, Steelpipes, Orrcon, Van Leeuwen, Citisteel',NULL,'Anglo American, Lucas Drilling, Mitchell Drilling, Infrabuild, Bothar Boring, Pezzimenti Tunnelbore, Brady Marine, The Jetty Specialist, Bluescope.','I am pretty happy with our visual branding, I think it suits the brand and does what it needs to do.',NULL,'Website, brochures, LinkedIn as well as promotional items, hats, stubby coolers, etc.',NULL,NULL,'Getting it right, easy to deal with, responsive.','It can definitely improve awareness.','A cohesive marketing strategy that is easy to follow and improves our brand awareness.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17897,19178,1,'Stewart Anderson - Brand Audit Submission - 11 Jun, 2021','2021-06-11 01:39:49','2021-06-11 01:39:49','a972fbcf-bc44-4c66-98af-06a7d1ece984',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To stock and sell steel pipe and casing','Customers that require steel pipe and casing: mining & drilling, marine and land based piling, fabricators, under-road borers and rural are the main markets, as well merchant sales to other steel distributors.','Making sure it is done properly, honesty, communication, flexibility and prompt response.','I think that our people do a very good job of living up our values.','I think we don’t do enough internally to talk about our brand and our values.  I think we live the values naturally and the team is somewhat self selecting, people that don’t share the values tend to move on quick.','This is a tough one, I am not really sure.','Not short term, we have been in business for over 30 years.  Many of our staff are long termers too, 10 + years.  I think this adds to a solid feeling.','Good quality products, expertise in our field, safe, like your requirements are in good hands.','We where formally East Coast Pipe Supplies, rebranded to Surepipe in 2014.',NULL,'Surepipe is our only brand and it covers branches in Brisbane and Wollongong.  I have thought that in the future we could attack allied industries by setting up a company or sub branch called Surepipe HVAC, for example.','I don’t think it speaks enough.','Mining, Drilling, Under road boring, piling, fabrication and merchant sales.','Steelforce, Atlas, Southern steel, Steelpipes, Orrcon, Van Leeuwen, Citisteel',NULL,'Anglo American, Lucas Drilling, Mitchell Drilling, Infrabuild, Bothar Boring, Pezzimenti Tunnelbore, Brady Marine, The Jetty Specialist, Bluescope.','I am pretty happy with our visual branding, I think it suits the brand and does what it needs to do.',NULL,'Website, brochures, LinkedIn as well as promotional items, hats, stubby coolers, etc.',NULL,NULL,'Getting it right, easy to deal with, responsive.','It can definitely improve awareness.','A cohesive marketing strategy that is easy to follow and improves our brand awareness.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17898,19179,1,NULL,'2021-06-11 01:42:05','2021-06-11 01:42:05','076fb0b3-2126-4a75-b07f-46ee70a1553f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17900,19181,1,'Franc Pierro - Brand Audit Submission - 11 Jun, 2021','2021-06-11 01:45:58','2021-06-11 01:46:34','0c6028fc-c9c4-4e39-9458-0fa89d6fe673',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To support the building/infrastructure needs of Australia’s construction industry through supplying\nstructural steel line pipe.','- Construction companies and building sites that require ready-made steel.','I stand for integrity, professionalism and dedication. I am dedicated to being the best and most professional Internal Sales Representative that I can be whilst always maintaining my integrity. I operate in a matter that is best for the business, in ensuring all deadlines are met and being the first point of contact for most sales query. I ensue that all clients are satisfied with my service, but also the services and products we offer. By maintaining integrity and quality in my work, it instills faith in our clients and builds life-long relationships and continuous business from them. I am dedicated to ensuring the continuous success of Surepipe.','As mentioned above, I feel that our entire team works with dedication to get the job done. We all work hard to provide the best quality pipes to our clients, but also as importantly, we continue to build good faith and trustworthy relationships with our clients. Our manner in our approach with our clients, I believe, is what keeps them coming back. We do everything we can to ensure a smooth outcome for their needs. We are a team that work closely and rely on each other and have a great relationship with each other which carries on into providing the best to our clients. Having a close working team, helps the business grow successfully.','- Having belief in what we do and sell.\n- Working hard to provide the best service to our clients.\n- Dedication to our Company to help it grow.','- We mainly engage via phone queries but are also dedicated to face to face consults with new and existing clients. This is to put a face to the name, which helps them get a feel for us as a whole.\n- Our existing customers are just as important as our new ones, so checking in and keeping in touch with them regularly helps maintain business with them.','- Our brand is our promise to our customers – providing ready-made and work-ready pressure, structural steel pipe and casing solutions.','- Quality and longevity – 30 years running of a family business.\n- Success\n- Hard working and rewarding',NULL,'- Continuing to provide ready-made, quality pipes to Australia, New Zealand and Papua New Guinea\n- Expand to other Countries and further grow as a business',NULL,'- It is professional, shows that Surepipe is a family grown business (this I feel sits well with people as sometimes the product can get lost in these multi-tiered Organisations)\n- It shows people that they are dealing directly with the owners and a selection of hard working and dedicated staff, rather than just hiring people fort eh sake of numbers.\n- We have quality workers dedicated to the Organisation and our customers.\n- We could potentially benefit from putting ourselves out there on social media – this is a big selling point in this era and a way to physically show the quality of what we offer, so people can see we are true to what we say and then gives them faith in wanting to use us.\n- It also gives us an advantage point over other competitors. It puts us out there on the map and expands our future potential clientele','- We compete in the market with other steel merchants and plate rolling companies.','- Steelpipes (operating under the Southern Steel Group). – Nothing to admire here..','- Steelpipes (operating under the Southern Steel Group). – Nothing to admire here..','- Ranging from a couple offcuts for a backyard fire pit to a major project supported by the Government/councils our customers require our pipe to complete their projects.\n- Our customers also need great service and on time deliveries which helps keep good business.','- Captivate our customers.\n- Look professional.\n- Show dedication and show we are a trustworthy company they want to engage with.\n- Use colour psychology to bring customers into wanting to approach us.',NULL,NULL,'- As we expand, move to a bigger site to accommodate the growth\n- More staff/positions as the company continues to grow.','- Marketing campaigns that are easy to read, captivating but also informative of who we are, what we do and what we offer.\n- Commercials so people can see the faces behind the business and the workers that these customers will be dealing with (gives them a face value connection that is more personal)','- Quality products\n- Timely outcomes\n- Integrity\n- Professionalism\n- Dedication to them and their needs','- Longevity of the business and future success\n- Ways to potentially grow and expand','- See what areas that need improving and strategies to enable this outcome.\n- Inform us of what is going well so we can continue to do that.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17901,19182,1,'Franc Pierro - Brand Audit Submission - 11 June, 2021','2021-06-11 01:45:58','2021-06-11 01:45:58','45a9032f-1833-4767-ba29-4dfc637b7409',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To support the building/infrastructure needs of Australia’s construction industry through supplying\nstructural steel line pipe.','- Construction companies and building sites that require ready-made steel.','I stand for integrity, professionalism and dedication. I am dedicated to being the best and most professional Internal Sales Representative that I can be whilst always maintaining my integrity. I operate in a matter that is best for the business, in ensuring all deadlines are met and being the first point of contact for most sales query. I ensue that all clients are satisfied with my service, but also the services and products we offer. By maintaining integrity and quality in my work, it instills faith in our clients and builds life-long relationships and continuous business from them. I am dedicated to ensuring the continuous success of Surepipe.','As mentioned above, I feel that our entire team works with dedication to get the job done. We all work hard to provide the best quality pipes to our clients, but also as importantly, we continue to build good faith and trustworthy relationships with our clients. Our manner in our approach with our clients, I believe, is what keeps them coming back. We do everything we can to ensure a smooth outcome for their needs. We are a team that work closely and rely on each other and have a great relationship with each other which carries on into providing the best to our clients. Having a close working team, helps the business grow successfully.','- Having belief in what we do and sell.\n- Working hard to provide the best service to our clients.\n- Dedication to our Company to help it grow.','- We mainly engage via phone queries but are also dedicated to face to face consults with new and existing clients. This is to put a face to the name, which helps them get a feel for us as a whole.\n- Our existing customers are just as important as our new ones, so checking in and keeping in touch with them regularly helps maintain business with them.','- Our brand is our promise to our customers – providing ready-made and work-ready pressure, structural steel pipe and casing solutions.','- Quality and longevity – 30 years running of a family business.\n- Success\n- Hard working and rewarding',NULL,'- Continuing to provide ready-made, quality pipes to Australia, New Zealand and Papua New Guinea\n- Expand to other Countries and further grow as a business',NULL,'- It is professional, shows that Surepipe is a family grown business (this I feel sits well with people as sometimes the product can get lost in these multi-tiered Organisations)\n- It shows people that they are dealing directly with the owners and a selection of hard working and dedicated staff, rather than just hiring people fort eh sake of numbers.\n- We have quality workers dedicated to the Organisation and our customers.\n- We could potentially benefit from putting ourselves out there on social media – this is a big selling point in this era and a way to physically show the quality of what we offer, so people can see we are true to what we say and then gives them faith in wanting to use us.\n- It also gives us an advantage point over other competitors. It puts us out there on the map and expands our future potential clientele','- We compete in the market with other steel merchants and plate rolling companies.','- Steelpipes (operating under the Southern Steel Group). – Nothing to admire here..','- Steelpipes (operating under the Southern Steel Group). – Nothing to admire here..','- Ranging from a couple offcuts for a backyard fire pit to a major project supported by the Government/councils our customers require our pipe to complete their projects.\n- Our customers also need great service and on time deliveries which helps keep good business.','- Captivate our customers.\n- Look professional.\n- Show dedication and show we are a trustworthy company they want to engage with.\n- Use colour psychology to bring customers into wanting to approach us.',NULL,NULL,'- As we expand, move to a bigger site to accommodate the growth\n- More staff/positions as the company continues to grow.','- Marketing campaigns that are easy to read, captivating but also informative of who we are, what we do and what we offer.\n- Commercials so people can see the faces behind the business and the workers that these customers will be dealing with (gives them a face value connection that is more personal)','- Quality products\n- Timely outcomes\n- Integrity\n- Professionalism\n- Dedication to them and their needs','- Longevity of the business and future success\n- Ways to potentially grow and expand','- See what areas that need improving and strategies to enable this outcome.\n- Inform us of what is going well so we can continue to do that.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17902,19183,1,'Franc Pierro - Brand Audit Submission - 11 June, 2021','2021-06-11 01:46:01','2021-06-11 01:46:01','e4fa6a04-24ea-4f46-a8b2-895b2aa26c06',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To support the building/infrastructure needs of Australia’s construction industry through supplying\nstructural steel line pipe.','- Construction companies and building sites that require ready-made steel.','I stand for integrity, professionalism and dedication. I am dedicated to being the best and most professional Internal Sales Representative that I can be whilst always maintaining my integrity. I operate in a matter that is best for the business, in ensuring all deadlines are met and being the first point of contact for most sales query. I ensue that all clients are satisfied with my service, but also the services and products we offer. By maintaining integrity and quality in my work, it instills faith in our clients and builds life-long relationships and continuous business from them. I am dedicated to ensuring the continuous success of Surepipe.','As mentioned above, I feel that our entire team works with dedication to get the job done. We all work hard to provide the best quality pipes to our clients, but also as importantly, we continue to build good faith and trustworthy relationships with our clients. Our manner in our approach with our clients, I believe, is what keeps them coming back. We do everything we can to ensure a smooth outcome for their needs. We are a team that work closely and rely on each other and have a great relationship with each other which carries on into providing the best to our clients. Having a close working team, helps the business grow successfully.','- Having belief in what we do and sell.\n- Working hard to provide the best service to our clients.\n- Dedication to our Company to help it grow.','- We mainly engage via phone queries but are also dedicated to face to face consults with new and existing clients. This is to put a face to the name, which helps them get a feel for us as a whole.\n- Our existing customers are just as important as our new ones, so checking in and keeping in touch with them regularly helps maintain business with them.','- Our brand is our promise to our customers – providing ready-made and work-ready pressure, structural steel pipe and casing solutions.','- Quality and longevity – 30 years running of a family business.\n- Success\n- Hard working and rewarding',NULL,'- Continuing to provide ready-made, quality pipes to Australia, New Zealand and Papua New Guinea\n- Expand to other Countries and further grow as a business',NULL,'- It is professional, shows that Surepipe is a family grown business (this I feel sits well with people as sometimes the product can get lost in these multi-tiered Organisations)\n- It shows people that they are dealing directly with the owners and a selection of hard working and dedicated staff, rather than just hiring people fort eh sake of numbers.\n- We have quality workers dedicated to the Organisation and our customers.\n- We could potentially benefit from putting ourselves out there on social media – this is a big selling point in this era and a way to physically show the quality of what we offer, so people can see we are true to what we say and then gives them faith in wanting to use us.\n- It also gives us an advantage point over other competitors. It puts us out there on the map and expands our future potential clientele','- We compete in the market with other steel merchants and plate rolling companies.','- Steelpipes (operating under the Southern Steel Group). – Nothing to admire here..','- Steelpipes (operating under the Southern Steel Group). – Nothing to admire here..','- Ranging from a couple offcuts for a backyard fire pit to a major project supported by the Government/councils our customers require our pipe to complete their projects.\n- Our customers also need great service and on time deliveries which helps keep good business.','- Captivate our customers.\n- Look professional.\n- Show dedication and show we are a trustworthy company they want to engage with.\n- Use colour psychology to bring customers into wanting to approach us.',NULL,NULL,'- As we expand, move to a bigger site to accommodate the growth\n- More staff/positions as the company continues to grow.','- Marketing campaigns that are easy to read, captivating but also informative of who we are, what we do and what we offer.\n- Commercials so people can see the faces behind the business and the workers that these customers will be dealing with (gives them a face value connection that is more personal)','- Quality products\n- Timely outcomes\n- Integrity\n- Professionalism\n- Dedication to them and their needs','- Longevity of the business and future success\n- Ways to potentially grow and expand','- See what areas that need improving and strategies to enable this outcome.\n- Inform us of what is going well so we can continue to do that.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17903,19184,1,'Franc Pierro - Brand Audit Submission - 11 Jun, 2021','2021-06-11 01:46:34','2021-06-11 01:46:34','11bf02b1-4da0-4e93-8233-954084fceca5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To support the building/infrastructure needs of Australia’s construction industry through supplying\nstructural steel line pipe.','- Construction companies and building sites that require ready-made steel.','I stand for integrity, professionalism and dedication. I am dedicated to being the best and most professional Internal Sales Representative that I can be whilst always maintaining my integrity. I operate in a matter that is best for the business, in ensuring all deadlines are met and being the first point of contact for most sales query. I ensue that all clients are satisfied with my service, but also the services and products we offer. By maintaining integrity and quality in my work, it instills faith in our clients and builds life-long relationships and continuous business from them. I am dedicated to ensuring the continuous success of Surepipe.','As mentioned above, I feel that our entire team works with dedication to get the job done. We all work hard to provide the best quality pipes to our clients, but also as importantly, we continue to build good faith and trustworthy relationships with our clients. Our manner in our approach with our clients, I believe, is what keeps them coming back. We do everything we can to ensure a smooth outcome for their needs. We are a team that work closely and rely on each other and have a great relationship with each other which carries on into providing the best to our clients. Having a close working team, helps the business grow successfully.','- Having belief in what we do and sell.\n- Working hard to provide the best service to our clients.\n- Dedication to our Company to help it grow.','- We mainly engage via phone queries but are also dedicated to face to face consults with new and existing clients. This is to put a face to the name, which helps them get a feel for us as a whole.\n- Our existing customers are just as important as our new ones, so checking in and keeping in touch with them regularly helps maintain business with them.','- Our brand is our promise to our customers – providing ready-made and work-ready pressure, structural steel pipe and casing solutions.','- Quality and longevity – 30 years running of a family business.\n- Success\n- Hard working and rewarding',NULL,'- Continuing to provide ready-made, quality pipes to Australia, New Zealand and Papua New Guinea\n- Expand to other Countries and further grow as a business',NULL,'- It is professional, shows that Surepipe is a family grown business (this I feel sits well with people as sometimes the product can get lost in these multi-tiered Organisations)\n- It shows people that they are dealing directly with the owners and a selection of hard working and dedicated staff, rather than just hiring people fort eh sake of numbers.\n- We have quality workers dedicated to the Organisation and our customers.\n- We could potentially benefit from putting ourselves out there on social media – this is a big selling point in this era and a way to physically show the quality of what we offer, so people can see we are true to what we say and then gives them faith in wanting to use us.\n- It also gives us an advantage point over other competitors. It puts us out there on the map and expands our future potential clientele','- We compete in the market with other steel merchants and plate rolling companies.','- Steelpipes (operating under the Southern Steel Group). – Nothing to admire here..','- Steelpipes (operating under the Southern Steel Group). – Nothing to admire here..','- Ranging from a couple offcuts for a backyard fire pit to a major project supported by the Government/councils our customers require our pipe to complete their projects.\n- Our customers also need great service and on time deliveries which helps keep good business.','- Captivate our customers.\n- Look professional.\n- Show dedication and show we are a trustworthy company they want to engage with.\n- Use colour psychology to bring customers into wanting to approach us.',NULL,NULL,'- As we expand, move to a bigger site to accommodate the growth\n- More staff/positions as the company continues to grow.','- Marketing campaigns that are easy to read, captivating but also informative of who we are, what we do and what we offer.\n- Commercials so people can see the faces behind the business and the workers that these customers will be dealing with (gives them a face value connection that is more personal)','- Quality products\n- Timely outcomes\n- Integrity\n- Professionalism\n- Dedication to them and their needs','- Longevity of the business and future success\n- Ways to potentially grow and expand','- See what areas that need improving and strategies to enable this outcome.\n- Inform us of what is going well so we can continue to do that.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17904,19185,1,NULL,'2021-06-11 01:47:49','2021-06-11 01:47:49','f566973f-5b3b-4c42-95f3-02c78d46ad8c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17907,19188,1,'Rachel Shannon - Brand Audit Submission - 11 Jun, 2021','2021-06-11 01:50:23','2021-06-11 01:50:26','5d2b6ba9-8922-4391-821a-8f1dbe418c9b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To provide high quality products and service to clients needing pipe','Everyone with a need for pipe combined with excellent customer service','The customer is at the heart of everything I do and I ensure the best possible service every time with fast and informative communication','I would like everyone to work together to ensure great customer outcomes which happens mostly BUT I feel a divide in the office sometimes',NULL,'We are always getting repeat business from our customers and they can always expect a personalized experience via email and phone','Ready Made Easy','Reliable friendly team providing competitive pricing and high quality customer service while offering a range of products and services','30 year history delivering to long term clients. Increasing our product range, opening a branch in NSW','New yard at Brendale, offering more services','n/a','Our customers know they can ask for anything and we will do everything we can to deliver','The markets we compete in are Drilling, Screwpilers, Construction','Our Competitors are Ozcon, Van Leeuwen, Steelpipes, Southern Queensland Steel,','Global Valve & Fittings – always friendly, quick responses, competitive pricing','Our customers are all around Australia but I mainly deal with customers in Queensland and NSW. Their main requirements are threaded casing and they usually need a quick turn-around time which we manage with the machine shop at Sharpe Engineering','Need to grow our brand and where it appears\nOur brand currently appears on our Website, Linked In and our local truck',NULL,'Marketing brochures, stock lists, stubby coolers, yeti cups, hats','Updated brochure – in progress','Vision 6 marketing emails to be sent out on a monthly basis','High quality customer service, excellent communication, fast service, competitive pricing','Growing our market share',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17908,19189,1,'Rachel Shannon - Brand Audit Submission - 11 Jun, 2021','2021-06-11 01:50:23','2021-06-11 01:50:23','5eb5f5b4-db6b-4482-ae93-19a0e4845eb7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To provide high quality products and service to clients needing pipe','Everyone with a need for pipe combined with excellent customer service','The customer is at the heart of everything I do and I ensure the best possible service every time with fast and informative communication','I would like everyone to work together to ensure great customer outcomes which happens mostly BUT I feel a divide in the office sometimes',NULL,'We are always getting repeat business from our customers and they can always expect a personalized experience via email and phone','Ready Made Easy','Reliable friendly team providing competitive pricing and high quality customer service while offering a range of products and services','30 year history delivering to long term clients. Increasing our product range, opening a branch in NSW','New yard at Brendale, offering more services','n/a','Our customers know they can ask for anything and we will do everything we can to deliver','The markets we compete in are Drilling, Screwpilers, Construction','Our Competitors are Ozcon, Van Leeuwen, Steelpipes, Southern Queensland Steel,','Global Valve & Fittings – always friendly, quick responses, competitive pricing','Our customers are all around Australia but I mainly deal with customers in Queensland and NSW. Their main requirements are threaded casing and they usually need a quick turn-around time which we manage with the machine shop at Sharpe Engineering','Need to grow our brand and where it appears\nOur brand currently appears on our Website, Linked In and our local truck',NULL,'Marketing brochures, stock lists, stubby coolers, yeti cups, hats','Updated brochure – in progress','Vision 6 marketing emails to be sent out on a monthly basis','High quality customer service, excellent communication, fast service, competitive pricing','Growing our market share',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17909,19190,1,'Rachel Shannon - Brand Audit Submission - 11 Jun, 2021','2021-06-11 01:50:26','2021-06-11 01:50:26','bf8e81b1-ecff-4cb4-94d6-3406e5136a1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To provide high quality products and service to clients needing pipe','Everyone with a need for pipe combined with excellent customer service','The customer is at the heart of everything I do and I ensure the best possible service every time with fast and informative communication','I would like everyone to work together to ensure great customer outcomes which happens mostly BUT I feel a divide in the office sometimes',NULL,'We are always getting repeat business from our customers and they can always expect a personalized experience via email and phone','Ready Made Easy','Reliable friendly team providing competitive pricing and high quality customer service while offering a range of products and services','30 year history delivering to long term clients. Increasing our product range, opening a branch in NSW','New yard at Brendale, offering more services','n/a','Our customers know they can ask for anything and we will do everything we can to deliver','The markets we compete in are Drilling, Screwpilers, Construction','Our Competitors are Ozcon, Van Leeuwen, Steelpipes, Southern Queensland Steel,','Global Valve & Fittings – always friendly, quick responses, competitive pricing','Our customers are all around Australia but I mainly deal with customers in Queensland and NSW. Their main requirements are threaded casing and they usually need a quick turn-around time which we manage with the machine shop at Sharpe Engineering','Need to grow our brand and where it appears\nOur brand currently appears on our Website, Linked In and our local truck',NULL,'Marketing brochures, stock lists, stubby coolers, yeti cups, hats','Updated brochure – in progress','Vision 6 marketing emails to be sent out on a monthly basis','High quality customer service, excellent communication, fast service, competitive pricing','Growing our market share',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17910,19191,1,NULL,'2021-06-11 04:54:21','2021-06-11 04:54:21','1f8ed05f-e297-444e-8a5c-fc39dce4d6cf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17911,19192,1,'James McIlwraith - Brand Audit Submission - 11 Jun, 2021','2021-06-11 04:55:44','2021-06-11 04:57:32','768179f3-b021-45f5-a3db-e3d883e0f2f5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'There is a requirement in Australia for a business like us to exist. To stock, supply and service the (hell out of) many companies that need our product(s) in Australia. If we didn’t exist, someone else will do it or our customers will have to take on that responsibility which is not normally in their scope.','Anyone that wants to buy mild carbon steel pipe. From a one off cash sale person looking to make a smoker/BBQ to a multimillion dollar run Building Contractor. 90% of our business are return customers.','A family owned and run business, 3rd generation. Who are here to exist for a long time not a short time. Our relationships with our customers are key and we plan to grow with them not sting them. Our easy to deal with approach helps give our edge against our competitors. Along with quick responses and quick managerial decisions. \nInternally, we are strong believers in a solid work life balance. Our environment is one of family. Hence the high number of long term staff members.','We try to keep it warm, fun, family orientated professional, and goal driven. It stems from the senior management down to everyone. Me personally, I like to help my staff with career and personal (if asked) development/progression.','On our site. Face to face in our yard or office.','Face to face, phone, email. We try and entertain our big clients on a regular basis.','Surepipe NSW. A leader in steel pipe storing and distribution.','The best service and knowledge in providing any steel pipe requirement.','NSW started in a small yard in Wollongong and has now become a leader in supplying Steel pipes into the NSW market. With added value in processing to the pipes if required.','To continue growing the business in all markets and to be the only brand all our customers think of when they require steel pipe.',NULL,NULL,'Civil Piling. Marine Piling. Tunnel Boring. Screw piling. Structural applications - Fabrications. Pipelines. Drilling.','Steelpipes. Van Leeuwen. Atlas. Gordon Adams. Surplus dealers. Steel Traders/Project teams. Bendworx. ABFI','We admire none really. You can say we like the larger family run businesses like Southern steel Group (Steelpipes) because they were once small as well.','Reliable supply. Easy to deal with. Straight forward answers. No ones perfect, so when there is a problem they want a supplier to face it not run away from it. Quick responses. A supplier that knows the product/technical data.','At the for-front of people’s minds when they have a steel pipe requirement/thought/understanding/question.',NULL,'Brochures, writing tools, writing pads, drinking travel mug. Hats. T-shirts. Stubby coolers. Website.','Pens. Calculators. Rulers. USB. Standard mugs. Stickers. Manufacturing Specifications summary sheets/quick referencing.','Not too sure. We do not sell into retail, so TV or radio ads are not too affective. Most of our customers are repeat business. i.e. once a year to once a week. Our competitors can sell the exact same product (we buy from the same manufacturers). \nMaybe a campaign into the designers/engineers and decision makers on who uses or products. Which is hard because that is very broad.','Straight Answers. Quick responses. Knowledge on what you are talking about. Friendliness. Partnering on projects.','More exposure to other jobs and people looking for Steel pipes. When people think of steel pipe they think of Surepipe NSW and their staff first before anyone else.','A marketing strategy that everyone in the organization understands and can follow so we achieve the same goal. More business! Maybe sales and customer service training for front line staff that haven’t been with the company too long.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17912,19193,1,'James McIlwraith - Brand Audit Submission - 11 Jun, 2021','2021-06-11 04:55:44','2021-06-11 04:55:44','1fdbe016-1808-456f-9bbc-70667d5d9734',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'There is a requirement in Australia for a business like us to exist. To stock, supply and service the (hell out of) many companies that need our product(s) in Australia. If we didn’t exist, someone else will do it or our customers will have to take on that responsibility which is not normally in their scope.','Anyone that wants to buy mild carbon steel pipe. From a one off cash sale person looking to make a smoker/BBQ to a multimillion dollar run Building Contractor. 90% of our business are return customers.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17913,19194,1,'James McIlwraith - Brand Audit Submission - 11 Jun, 2021','2021-06-11 04:57:22','2021-06-11 04:57:22','9713f6e0-18f5-408c-a3c3-b892508db1fa',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'There is a requirement in Australia for a business like us to exist. To stock, supply and service the (hell out of) many companies that need our product(s) in Australia. If we didn’t exist, someone else will do it or our customers will have to take on that responsibility which is not normally in their scope.','Anyone that wants to buy mild carbon steel pipe. From a one off cash sale person looking to make a smoker/BBQ to a multimillion dollar run Building Contractor. 90% of our business are return customers.','A family owned and run business, 3rd generation. Who are here to exist for a long time not a short time. Our relationships with our customers are key and we plan to grow with them not sting them. Our easy to deal with approach helps give our edge against our competitors. Along with quick responses and quick managerial decisions. \nInternally, we are strong believers in a solid work life balance. Our environment is one of family. Hence the high number of long term staff members.','We try to keep it warm, fun, family orientated professional, and goal driven. It stems from the senior management down to everyone. Me personally, I like to help my staff with career and personal (if asked) development/progression.','On our site. Face to face in our yard or office.','Face to face, phone, email. We try and entertain our big clients on a regular basis.','Surepipe NSW. A leader in steel pipe storing and distribution.','The best service and knowledge in providing any steel pipe requirement.','NSW started in a small yard in Wollongong and has now become a leader in supplying Steel pipes into the NSW market. With added value in processing to the pipes if required.','To continue growing the business in all markets and to be the only brand all our customers think of when they require steel pipe.',NULL,NULL,'Civil Piling. Marine Piling. Tunnel Boring. Screw piling. Structural applications - Fabrications. Pipelines. Drilling.','Steelpipes. Van Leeuwen. Atlas. Gordon Adams. Surplus dealers. Steel Traders/Project teams. Bendworx. ABFI','We admire none really. You can say we like the larger family run businesses like Southern steel Group (Steelpipes) because they were once small as well.','Reliable supply. Easy to deal with. Straight forward answers. No ones perfect, so when there is a problem they want a supplier to face it not run away from it. Quick responses. A supplier that knows the product/technical data.','At the for-front of people’s minds when they have a steel pipe requirement/thought/understanding/question.',NULL,'Brochures, writing tools, writing pads, drinking travel mug. Hats. T-shirts. Stubby coolers. Website.','Pens. Calculators. Rulers. USB. Standard mugs. Stickers. Manufacturing Specifications summary sheets/quick referencing.','Not too sure. We do not sell into retail, so TV or radio ads are not too affective. Most of our customers are repeat business. i.e. once a year to once a week. Our competitors can sell the exact same product (we buy from the same manufacturers). \nMaybe a campaign into the designers/engineers and decision makers on who uses or products. Which is hard because that is very broad.','Straight Answers. Quick responses. Knowledge on what you are talking about. Friendliness. Partnering on projects.','More exposure to other jobs and people looking for Steel pipes. When people think of steel pipe they think of Surepipe NSW and their staff first before anyone else.','A marketing strategy that everyone in the organization understands and can follow so we achieve the same goal. More business! Maybe sales and customer service training for front line staff that haven’t been with the company too long.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17914,19195,1,'James McIlwraith - Brand Audit Submission - 11 Jun, 2021','2021-06-11 04:57:32','2021-06-11 04:57:32','ccb96462-78e2-47a1-8bd6-40ed329fe556',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'There is a requirement in Australia for a business like us to exist. To stock, supply and service the (hell out of) many companies that need our product(s) in Australia. If we didn’t exist, someone else will do it or our customers will have to take on that responsibility which is not normally in their scope.','Anyone that wants to buy mild carbon steel pipe. From a one off cash sale person looking to make a smoker/BBQ to a multimillion dollar run Building Contractor. 90% of our business are return customers.','A family owned and run business, 3rd generation. Who are here to exist for a long time not a short time. Our relationships with our customers are key and we plan to grow with them not sting them. Our easy to deal with approach helps give our edge against our competitors. Along with quick responses and quick managerial decisions. \nInternally, we are strong believers in a solid work life balance. Our environment is one of family. Hence the high number of long term staff members.','We try to keep it warm, fun, family orientated professional, and goal driven. It stems from the senior management down to everyone. Me personally, I like to help my staff with career and personal (if asked) development/progression.','On our site. Face to face in our yard or office.','Face to face, phone, email. We try and entertain our big clients on a regular basis.','Surepipe NSW. A leader in steel pipe storing and distribution.','The best service and knowledge in providing any steel pipe requirement.','NSW started in a small yard in Wollongong and has now become a leader in supplying Steel pipes into the NSW market. With added value in processing to the pipes if required.','To continue growing the business in all markets and to be the only brand all our customers think of when they require steel pipe.',NULL,NULL,'Civil Piling. Marine Piling. Tunnel Boring. Screw piling. Structural applications - Fabrications. Pipelines. Drilling.','Steelpipes. Van Leeuwen. Atlas. Gordon Adams. Surplus dealers. Steel Traders/Project teams. Bendworx. ABFI','We admire none really. You can say we like the larger family run businesses like Southern steel Group (Steelpipes) because they were once small as well.','Reliable supply. Easy to deal with. Straight forward answers. No ones perfect, so when there is a problem they want a supplier to face it not run away from it. Quick responses. A supplier that knows the product/technical data.','At the for-front of people’s minds when they have a steel pipe requirement/thought/understanding/question.',NULL,'Brochures, writing tools, writing pads, drinking travel mug. Hats. T-shirts. Stubby coolers. Website.','Pens. Calculators. Rulers. USB. Standard mugs. Stickers. Manufacturing Specifications summary sheets/quick referencing.','Not too sure. We do not sell into retail, so TV or radio ads are not too affective. Most of our customers are repeat business. i.e. once a year to once a week. Our competitors can sell the exact same product (we buy from the same manufacturers). \nMaybe a campaign into the designers/engineers and decision makers on who uses or products. Which is hard because that is very broad.','Straight Answers. Quick responses. Knowledge on what you are talking about. Friendliness. Partnering on projects.','More exposure to other jobs and people looking for Steel pipes. When people think of steel pipe they think of Surepipe NSW and their staff first before anyone else.','A marketing strategy that everyone in the organization understands and can follow so we achieve the same goal. More business! Maybe sales and customer service training for front line staff that haven’t been with the company too long.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17915,19196,1,'Some Company','2021-06-13 23:20:52','2021-06-13 23:20:52','ac8c38b0-837b-4e95-88a2-199b777a640b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17916,19197,1,NULL,'2021-06-13 23:21:06','2021-06-13 23:22:32','48095599-d5af-41e8-8b0b-c84498283782',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17919,19200,1,'Some User - Brand Audit Submission - 14 Jun, 2021','2021-06-13 23:27:28','2021-06-14 00:18:05','663eddc9-515e-45f1-b83d-cc58ea8fd419',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Here is an answer to the question you just asked me.','This is another answer that you need','Here are some values.','This is an answer to my culture stuff.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17920,19201,1,'Some User - Brand Audit Submission - 14 Jun, 2021','2021-06-13 23:27:28','2021-06-13 23:27:28','e3f4826d-7db8-4734-86ee-826e3d41e484',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Here is an answer to the question you just asked me.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17921,19202,1,'Some User - Brand Audit Submission - 14 Jun, 2021','2021-06-13 23:27:51','2021-06-13 23:27:51','f2e653c6-907e-4833-87b5-c040669f4faf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Here is an answer to the question you just asked me.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17922,19203,1,'Some User - Brand Audit Submission - 14 Jun, 2021','2021-06-14 00:13:29','2021-06-14 00:13:29','59933400-ea55-4f13-965c-96626b253e4a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Here is an answer to the question you just asked me.','This is another answer that you need',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17923,19204,1,'Some User - Brand Audit Submission - 14 Jun, 2021','2021-06-14 00:14:00','2021-06-14 00:14:00','e23680d2-cd39-47b5-bdfd-30d3ebb9ee06',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Here is an answer to the question you just asked me.','This is another answer that you need',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17924,19205,1,'Some User - Brand Audit Submission - 14 Jun, 2021','2021-06-14 00:14:10','2021-06-14 00:14:10','9e75e6a2-739c-4478-998e-59c76f136b98',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Here is an answer to the question you just asked me.','This is another answer that you need',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17925,19206,1,'Some User - Brand Audit Submission - 14 Jun, 2021','2021-06-14 00:14:19','2021-06-14 00:14:19','a135c2a1-9ce1-4b04-b86b-af154ed4aade',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Here is an answer to the question you just asked me.','This is another answer that you need',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17926,19207,1,'Some User - Brand Audit Submission - 14 Jun, 2021','2021-06-14 00:14:24','2021-06-14 00:14:24','96095aaf-99c0-4917-a0b2-e5c43b9858ba',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Here is an answer to the question you just asked me.','This is another answer that you need',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17927,19208,1,'Some User - Brand Audit Submission - 14 Jun, 2021','2021-06-14 00:14:29','2021-06-14 00:14:29','3c0e5a53-e675-4b97-b31a-9e6f041b5672',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Here is an answer to the question you just asked me.','This is another answer that you need',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17928,19209,1,'Some User - Brand Audit Submission - 14 Jun, 2021','2021-06-14 00:14:33','2021-06-14 00:14:33','a2f11225-0f3a-4f30-8f14-d61cf396de37',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Here is an answer to the question you just asked me.','This is another answer that you need',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17929,19210,1,'Some User - Brand Audit Submission - 14 Jun, 2021','2021-06-14 00:14:36','2021-06-14 00:14:36','84b90b89-d855-4741-9c9f-c0a87d3409ab',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Here is an answer to the question you just asked me.','This is another answer that you need',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17930,19211,1,'Some User - Brand Audit Submission - 14 Jun, 2021','2021-06-14 00:14:40','2021-06-14 00:14:40','aabaa17a-4b08-469c-a0d1-1d82e31d4b3a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Here is an answer to the question you just asked me.','This is another answer that you need',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17931,19212,1,'Some User - Brand Audit Submission - 14 Jun, 2021','2021-06-14 00:14:48','2021-06-14 00:14:48','1abd0aae-a22b-4eaa-a147-9e79f895ee10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Here is an answer to the question you just asked me.','This is another answer that you need',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17932,19213,1,'Some User - Brand Audit Submission - 14 Jun, 2021','2021-06-14 00:15:27','2021-06-14 00:15:27','bab75922-bdd6-43e5-a232-df13248ac25c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Here is an answer to the question you just asked me.','This is another answer that you need',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17933,19214,1,'Some User - Brand Audit Submission - 14 Jun, 2021','2021-06-14 00:15:49','2021-06-14 00:15:49','f147a286-c456-4d1c-9bcb-05e31289b615',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Here is an answer to the question you just asked me.','This is another answer that you need',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17934,19215,1,'Some User - Brand Audit Submission - 14 Jun, 2021','2021-06-14 00:16:01','2021-06-14 00:16:01','a962a677-bec9-4097-ab0b-8cf2b0cd5585',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Here is an answer to the question you just asked me.','This is another answer that you need',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17935,19216,1,'Some User - Brand Audit Submission - 14 Jun, 2021','2021-06-14 00:16:22','2021-06-14 00:16:22','c3ffde1c-dc2c-4aa8-900e-6749e63b1e76',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Here is an answer to the question you just asked me.','This is another answer that you need',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17936,19217,1,'Some User - Brand Audit Submission - 14 Jun, 2021','2021-06-14 00:16:35','2021-06-14 00:16:35','c9dbd1ba-bed5-4399-a6d9-64c8ca3bfb53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Here is an answer to the question you just asked me.','This is another answer that you need',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17937,19218,1,'Some User - Brand Audit Submission - 14 Jun, 2021','2021-06-14 00:16:57','2021-06-14 00:16:57','8efc09f5-5e6f-4512-a5a2-770624f5824d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Here is an answer to the question you just asked me.','This is another answer that you need',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17938,19219,1,'Some User - Brand Audit Submission - 14 Jun, 2021','2021-06-14 00:17:09','2021-06-14 00:17:09','afbc463c-c4d1-444d-8a46-e5a303a449cd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Here is an answer to the question you just asked me.','This is another answer that you need',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17939,19220,1,'Some User - Brand Audit Submission - 14 Jun, 2021','2021-06-14 00:17:42','2021-06-14 00:17:42','82639a82-12a4-49f2-aec7-80f2991f4e6d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Here is an answer to the question you just asked me.','This is another answer that you need','Here are some values.','This is an answer to my culture stuff.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17940,19221,1,'Some User - Brand Audit Submission - 14 Jun, 2021','2021-06-14 00:18:05','2021-06-14 00:18:05','44db4288-28ac-48f4-8d1c-32fa818756f4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Here is an answer to the question you just asked me.','This is another answer that you need','Here are some values.','This is an answer to my culture stuff.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17941,19222,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 04:51:48','2021-06-15 23:35:41','604fb338-4299-4ea5-9105-7a2bfd1b8e35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18864,20145,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:29:45','2021-06-15 23:29:45','da23e9a6-c6a9-4c65-a2f2-2addeaa6349c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18865,20146,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:29:49','2021-06-15 23:29:49','53653890-5ef2-4356-975a-14f74d75668e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18866,20147,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:29:52','2021-06-15 23:29:52','11702029-f509-4038-835b-01f1904c21f8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18867,20148,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:29:56','2021-06-15 23:29:56','86fcd553-cac4-4c15-9ee7-ecf5778c8a47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18868,20149,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:29:58','2021-06-15 23:29:58','5f3dacba-fd60-44a7-8b80-7ed8d14aba78',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18869,20150,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:30:20','2021-06-15 23:30:20','2f5fdba4-e2ac-4f88-b6fb-a7fe89d8216e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18870,20151,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:30:31','2021-06-15 23:30:31','df7988ac-3378-4ed0-ba35-58a3ff374f2a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18871,20152,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:30:38','2021-06-15 23:30:38','b7a78820-138a-494f-8047-6ec4bdccd04d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18872,20153,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:30:43','2021-06-15 23:30:43','63cf867c-aad1-4414-912a-8de47b21fdf9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18873,20154,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:30:48','2021-06-15 23:30:48','a6c7cefd-16fc-4f16-a208-cc4d617af69a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18874,20155,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:30:52','2021-06-15 23:30:52','f3b553eb-c1fa-4d10-8c1c-c20db46f647f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18875,20156,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:30:56','2021-06-15 23:30:56','4661d06d-a5f0-454e-b03c-59137ff0fd7c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18876,20157,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:30:59','2021-06-15 23:30:59','872ff35a-136d-4618-9a2d-5c64d49a6059',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18877,20158,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:31:02','2021-06-15 23:31:02','2a790dda-4746-48b6-9c71-75783937e313',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18878,20159,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:31:04','2021-06-15 23:31:04','aec55538-0125-43c9-96e2-9ef8b8f881ef',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18879,20160,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:31:07','2021-06-15 23:31:07','bd92a7f5-40af-400c-bc10-d41ff2afeb67',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18880,20161,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:31:09','2021-06-15 23:31:09','512302f9-487e-4b0d-b9ff-51cd1e19ed3c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18881,20162,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:31:11','2021-06-15 23:31:11','b9fc484e-987a-47eb-99fd-a40e59fa8e44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18882,20163,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:31:32','2021-06-15 23:31:32','e9c971fc-8e9a-4544-b7bb-711d4bb45306',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18883,20164,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:31:43','2021-06-15 23:31:43','11c476e9-6bff-4331-a278-cba114f40bd2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18884,20165,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:31:50','2021-06-15 23:31:50','018a3140-e86e-4d5f-9cc5-576a90c943b8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18885,20166,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:32:12','2021-06-15 23:32:12','a37f07a3-8fb3-4ce4-bf9a-a7148d6c62b3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18886,20167,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:32:22','2021-06-15 23:32:22','19d8aa38-a2a5-4b26-a454-a253bc294b6b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18887,20168,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:32:30','2021-06-15 23:32:30','fb1d04c1-131a-47ab-a051-8e8973106b9f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18888,20169,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:32:35','2021-06-15 23:32:35','58978e0d-9354-4256-bde7-56d2c4b05548',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18889,20170,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:32:40','2021-06-15 23:32:40','021c755f-9c7d-4525-9b7b-08d4103c931a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18890,20171,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:32:44','2021-06-15 23:32:44','354d1610-8979-4dd3-a30b-58baa1c8592a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18891,20172,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:32:47','2021-06-15 23:32:47','fce11213-b637-4400-948f-3e9b204b590f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18892,20173,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:33:09','2021-06-15 23:33:09','5b38c6a8-883b-4070-9c9d-c0c311f8a6e0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18893,20174,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:33:19','2021-06-15 23:33:19','c35eef27-44c0-49bd-a9d8-53187464f9d8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18894,20175,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:33:27','2021-06-15 23:33:27','844ffd65-e6a6-4b02-a453-6c89b2f7a973',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18895,20176,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:33:32','2021-06-15 23:33:32','4fe7d6e5-3ade-411e-9337-468dd40c4439',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18896,20177,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:33:37','2021-06-15 23:33:37','98ccc3d6-8ded-408f-982b-8316602fcd33',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18897,20178,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:33:41','2021-06-15 23:33:41','35a8dde9-c00e-4f98-a5fb-ddb48e8f8dbb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18898,20179,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:34:02','2021-06-15 23:34:02','e22c7f44-ed45-415d-82ba-b99b4ee2d6fb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18899,20180,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:34:13','2021-06-15 23:34:13','a8ac0ed1-65a5-4d7a-9019-fed7d2dccb2c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18900,20181,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:34:20','2021-06-15 23:34:20','d2df31d0-09a7-4cea-8a6f-aa418594693f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18901,20182,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:34:26','2021-06-15 23:34:26','ea816ab5-139d-4d37-a624-2c673c53e417',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18902,20183,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:34:31','2021-06-15 23:34:31','3b079fb6-0df4-48cf-a13e-5de41c2b41f5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18903,20184,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:34:35','2021-06-15 23:34:35','15aa59a6-15ed-4636-8875-3c4c70f5c068',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18904,20185,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:34:38','2021-06-15 23:34:38','b78ecbec-8003-4add-8bc8-5dba969cf3ff',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18905,20186,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:34:41','2021-06-15 23:34:41','538b64af-ce6d-4b48-b72e-7a319fcb7288',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18906,20187,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:34:44','2021-06-15 23:34:44','0a958bff-58ca-4459-92e1-f82eb1a0ffb9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18907,20188,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:35:05','2021-06-15 23:35:05','68ed22c0-9fc8-488d-bd48-92ef91dab276',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18908,20189,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:35:16','2021-06-15 23:35:16','0e17058f-4a54-40ac-bb53-ded9579d3738',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18909,20190,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:35:23','2021-06-15 23:35:23','13bf7cc2-8b78-4464-879a-77e1ba2e409e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18910,20191,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:35:29','2021-06-15 23:35:29','5ee43735-5698-46b1-9ad5-6976c5b09a51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18911,20192,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:35:34','2021-06-15 23:35:34','40ee5f57-4b67-46f8-ba8d-fb53dc62ff1d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18912,20193,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:35:37','2021-06-15 23:35:37','e1cdfd0f-c49b-4573-a949-45995d50be3e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18913,20194,1,'Andrew McGuckin - Brand Audit Submission - 16 Jun, 2021','2021-06-15 23:35:41','2021-06-15 23:35:41','43ef6d5b-6ad2-4980-aa1a-66f5eea42c8c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18914,20195,1,'Ryan Murray - Brand Audit Submission - 10 Feb., 2022','2021-06-16 00:27:52','2022-02-09 23:35:54','46029a8a-c43a-467c-85e7-b609a463e9fa',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people','This is some stuff','Cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19098,20379,1,'About us','2021-06-21 04:18:41','2023-03-10 01:36:37','3a318700-b551-4773-926e-64b8118e785a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17881\",\"17996\",\"17934\",\"141616\",\"142716\",\"17899\",\"17875\",\"17887\",\"30433\",\"17921\",\"97259\",\"141642\",\"17941\",\"142039\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | About us','For 20 years we have helped businesses, organisations and governments to solve problems, unlock potential and connect with people to inspire action.','strategy, brand, campaign, behaviour change, engagement, digital, video, content',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19108,21075,1,'Pivotus logo orange','2021-06-21 04:37:48','2021-10-05 07:03:40','eb090f94-1610-4086-9a93-35c9ce5bf195',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x332_crop_center-center_82_line/pivotus.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x276_crop_center-center_82_line/pivotus.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x332_crop_center-center_82_line/pivotus.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x276_crop_center-center_82_line/pivotus.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":332,\"640\":276},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"772\",\"originalImageHeight\":\"334\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A71w5xsZR9RmhA4++wP0GKKKB9D//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#faf4ee\",\"#ec6e5f\",\"#e9938f\",\"#f2b8aa\",\"#ec9c84\"],\"lightness\":79,\"placeholderWidth\":768,\"placeholderHeight\":332,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19109,21076,1,'Queensland Government logo orange','2021-06-21 04:37:48','2021-10-05 07:04:02','f6c7c55a-f3a3-47e4-a29a-949fb77b6cda',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x332_crop_center-center_82_line/qld-gov.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x276_crop_center-center_82_line/qld-gov.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x332_crop_center-center_82_line/qld-gov.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x276_crop_center-center_82_line/qld-gov.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":332,\"640\":276},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"772\",\"originalImageHeight\":\"334\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7zEm5vmXb2G2nAN3I/KiigbP/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e17e76\",\"#f9f4f0\",\"#f3b8b0\",\"#f6c2c4\",\"#f098a2\"],\"lightness\":80,\"placeholderWidth\":768,\"placeholderHeight\":332,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19112,21079,1,'Three by 3 logo orange','2021-06-21 04:37:53','2021-10-05 07:03:19','79ad6e14-46de-4dc3-9add-38859ec585db',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x332_crop_center-center_82_line/threeby3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x276_crop_center-center_82_line/threeby3.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x332_crop_center-center_82_line/threeby3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x276_crop_center-center_82_line/threeby3.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":332,\"640\":276},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"772\",\"originalImageHeight\":\"334\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7orNvbDqBn5cjOKcglH32U/QUUUimf/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#f9f6f1\",\"#ee6c5d\",\"#ea9593\",\"#f7b1a7\",\"#ec9c84\"],\"lightness\":79,\"placeholderWidth\":768,\"placeholderHeight\":332,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19115,21082,1,'Iap2 logo orange','2021-06-21 04:37:57','2021-10-05 07:03:01','81965f52-6336-48b3-b660-62a788981158',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x332_crop_center-center_82_line/iap2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x276_crop_center-center_82_line/iap2.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x332_crop_center-center_82_line/iap2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x276_crop_center-center_82_line/iap2.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":332,\"640\":276},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"772\",\"originalImageHeight\":\"334\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A75gxU7SA3YkZoXO0biCe+KKKB9D/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#eb6f5f\",\"#faf6f1\",\"#f9bbb1\",\"#e89696\",\"#fccccc\"],\"lightness\":80,\"placeholderWidth\":768,\"placeholderHeight\":332,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19117,21084,1,'HubSpot logo orange','2021-06-21 04:37:58','2021-10-05 07:02:44','5bf34562-ce0f-488e-b217-4996765092a5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x332_crop_center-center_82_line/hubspot.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x276_crop_center-center_82_line/hubspot.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x332_crop_center-center_82_line/hubspot.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x276_crop_center-center_82_line/hubspot.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":332,\"640\":276},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"772\",\"originalImageHeight\":\"334\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7lxcbzsaPb2yKbCLnzP3jIV7gdaKKjqa/ZP/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#faf4ef\",\"#f26858\",\"#eb8f8a\",\"#f8b1a4\",\"#fc947c\"],\"lightness\":79,\"placeholderWidth\":768,\"placeholderHeight\":332,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19118,21085,1,'Educate Plus orange logo','2021-06-21 04:38:02','2021-11-09 06:09:05','a3f56aa1-18b6-4c69-adce-962e0a48ebcc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x332_crop_center-center_82_line/educate-plus.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x276_crop_center-center_82_line/educate-plus.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x332_crop_center-center_82_line/educate-plus.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x276_crop_center-center_82_line/educate-plus.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":332,\"640\":276},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":772,\"originalImageHeight\":334,\"placeholder\":\"/9j/4AAQSkZJRgABAQEASABIAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAGABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAQb/xAAcEAABBAMBAAAAAAAAAAAAAAABAAIREgMiYXH/xAAVAQEBAAAAAAAAAAAAAAAAAAABAP/EABkRAAIDAQAAAAAAAAAAAAAAAAARAQJBIf/aAAwDAQACEQMRAD8AvXXnQtjqOjC0Md5dcg+KhjZYf//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#f86c58\",\"#f9f3f1\",\"#f7928d\",\"#f7b5a8\",\"#fbc1be\"],\"lightness\":79,\"placeholderWidth\":768,\"placeholderHeight\":332,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19131,21296,1,NULL,'2021-06-21 06:00:18','2023-03-09 04:49:56','354c7027-a2b5-4e47-8c59-3e8a7e5a6a07',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19132,21297,1,'Contact ','2021-06-21 06:24:18','2023-03-15 04:25:53','f19b1ada-b17b-48cf-8031-15ff957d5b34',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dJRNyHHzcn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Contact us\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Contact\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2RtDIpwkus\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<!--[if lte IE 8]>\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2-legacy.js\\\"></script>\\n<![endif]-->\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: \\\"na1\\\",\\n    portalId: \\\"8394441\\\",\\n    formId: \\\"74668c3f-aa7f-4ec7-aa81-c8ce26655bfe\\\"\\n});\\n</script>\",\"backgroundColour\":\"bg-black\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | Contact us','We are a creative agency that specialises in strategy, brand and behaviour change. Get in touch with us—we can’t wait to meet you.','strategy, brand, campaign, behaviour change, engagement, content, digital',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19133,21298,1,'Contact ','2021-06-21 06:24:18','2021-06-21 06:24:18','1e04f7db-99fc-4706-a0bf-fbaaf7d01224',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19134,21299,1,'Contact ','2021-06-21 06:24:59','2021-06-21 06:24:59','8444234a-5a56-4544-bc53-9fe1bb5f784b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19136,21308,1,'Contact ','2021-06-21 06:26:26','2021-06-21 06:26:26','59406304-1b16-426d-a82a-6aa64aac7d8c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19138,21336,1,'Contact ','2021-06-21 06:33:45','2021-06-21 06:33:45','0d5cf7ca-bbec-4927-a581-ee93923c72b1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19139,21338,1,'Contact ','2021-06-21 06:33:48','2021-06-21 06:33:48','aa48f7f3-9e37-49e8-aab3-8deac3f2a423',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19204,21898,1,NULL,'2021-07-14 02:01:23','2022-10-24 23:07:53','18662b8a-25c9-43bf-bb38-8f29d3eca3dc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Aboriginal and Torres Strait Islander consultant',NULL,NULL,NULL,'#### A specialist in brand strategy and customer-centric marketing, Janine has a comprehensive knowledge of commercial market readiness and is renowned for her strategic business acumen, creative and digital nous and niche marketing campaigns.\n\nWith 15+ years’ experience in major infrastructure projects (hospitals, bridges and regional transport services), health reform, international tourism, education, ICT and utilities, Janine is well-versed in stakeholder engagement, governance and business improvement processes (including Aboriginal and Torres Strait Islander engagement).\n\nOver the course of her career, Janine has been actively involved in a number of health and communications initiatives, having worked as a key part of the Director General of Health’s Communications team early in her career and most recently on a project in Preventative Health. Janine has also previously held health roles including Marketing and Communications Manager at the Queensland Children’s Hospital Construction Project and undertaken all manner of communications activities for medical projects, including the roll-out of Medical Line Labelling across Queensland.\n\nJanine’s aesthetic flair, visionary style, exemplary interpersonal skills and ability to deliver quality outcomes are key elements of her marketing, communications and project management success.\n\nBy nature, Janine is innately curious, an avid learner and in her unique style negotiates in high stakes environments—leveraging opportunities through a world’s best practice, commercial lens. Both her achievements and reputation speak volumes about her personal character, integrity and the level of executive trust she is able to inspire. She is regularly called on as a ‘brains trust’ in consulting roles providing strategic marketing, policy and operational advice on risks, issues and opportunities at an executive level. Janine relishes the intellectually rigorous and dynamic nature of marketing and communications.\n\n**Aboriginal and Torres Strait Islander connectivity**\n\nJanine’s awareness and engagement in Aboriginal and Torres Strait Islander culture, primarily in the development and delivery of health initiatives, has fuelled her passion to foster a greater understanding and need for linear connectivity between the needs of Aboriginal and Torres Strait Islander peoples and the community in the context of marketing, communications, and community engagement and implementation.\n\nJanine’s experience encompasses consultation on the development and implementation of strategic plans, policies and frameworks as part of a broader organisational transition. She also has extensive experience of Aboriginal and Torres Strait Islander issues and priorities at a national and state level including the development and delivery of a service delivery model for the Department of Housing and a non-profit provider (Murri Sisters)—testament to her expansive community engagement skills and business acumen.\n\nAn astute leader recognised for her aesthetic flair, Janine is well versed in managing complex projects, stakeholder interdependencies and competing priorities often in highly complex and politically sensitive environments. It is the combination of Janine’s dynamic marketing and communications skills, creative nous and passion for improving the lives of Aboriginal and Torres Strait Islander peoples that sets her apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.linkedin.com/in/janine-c-9856b515/',NULL,NULL,NULL,NULL,'green',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19207,21901,1,'Contact ','2021-07-14 23:06:29','2021-07-14 23:06:29','e7f1d829-646f-4632-916b-0a12327b69d3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19209,21903,1,'Contact ','2021-07-14 23:07:37','2021-07-14 23:07:37','83a472be-1c7e-4c32-bea6-a5099d0eb4c6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dJRNyHHzcn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionTitle\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Contact us\",\"headingColour\":\"text-white\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Some text will go in here\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}}},\"buttons\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19210,21904,1,'Contact ','2021-07-14 23:07:41','2021-07-14 23:07:41','d629ac0d-d0b9-426c-b518-11a4e94cbaae',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dJRNyHHzcn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionTitle\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Contact us\",\"headingColour\":\"text-white\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Some text will go in here\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}}},\"buttons\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19211,21905,1,'Contact ','2021-07-14 23:13:02','2021-07-14 23:13:02','84b80520-4718-4d17-b8b3-e56bc588f42a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dJRNyHHzcn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Contact us\",\"headingColour\":\"text-white\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Some text will go in here\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-172EAYLfJn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-JIUNKK7uSu\",\"content\":{\"fields\":{\"freeformForm\":\"2\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19212,21906,1,'Contact ','2021-07-14 23:16:04','2021-07-14 23:16:04','c6a07834-514d-47c4-80e3-26febf3a949b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dJRNyHHzcn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Contact us\",\"headingColour\":\"text-white\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Some text will go in here\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-172EAYLfJn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-JIUNKK7uSu\",\"content\":{\"fields\":{\"freeformForm\":\"2\",\"backgroundColour\":\"bg-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19213,21907,1,'Contact ','2021-07-14 23:33:15','2021-07-14 23:33:15','987424e1-c3bd-4c25-805f-ddcb9f6e04fa',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dJRNyHHzcn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Contact us\",\"headingColour\":\"text-white\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Like what you see? Get in touch with us—we can’t wait to meet you.\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-172EAYLfJn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-JIUNKK7uSu\",\"content\":{\"fields\":{\"freeformForm\":\"2\",\"backgroundColour\":\"bg-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19214,21908,1,'About us','2021-07-15 00:09:37','2021-07-15 00:09:37','e555b266-ff94-49cb-95f5-503f169e8255',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Work with us\",\"internalLink\":\"\",\"externalLink\":\"/work\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"internalLink\":\"\",\"externalLink\":\"/work\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":\"1\",\"fields\":{\"gridItems\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\"],\"blocks\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}}}}}}}},\"buttons\":\"\",\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Find out what this means\",\"internalLink\":\"\",\"externalLink\":\"\",\"buttonStyle\":\"outline\",\"buttonColour\":\"white\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"for **us** and **you...**\",\"internalLink\":\"\",\"externalLink\":\"#\",\"buttonStyle\":\"link\",\"buttonColour\":\"white\"}}}},\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17910\",\"17881\",\"17848\",\"17934\",\"1\",\"17887\",\"21898\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"heading\":\"Our partners\",\"images\":[\"21085\",\"21084\",\"21082\",\"21079\",\"21075\",\"21076\"],\"sectionTitle\":\"Our partners\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19215,21909,1,'About us','2021-07-15 00:11:33','2021-07-15 00:11:33','7e9aa189-48e3-41ab-be0e-ac9216db2881',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Work with us\",\"internalLink\":\"\",\"externalLink\":\"/work\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"internalLink\":\"\",\"externalLink\":\"/work\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":\"1\",\"fields\":{\"gridItems\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\"],\"blocks\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}}}}}}}},\"buttons\":\"\",\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Find out what this means\",\"internalLink\":\"\",\"externalLink\":\"\",\"buttonStyle\":\"outline\",\"buttonColour\":\"white\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"for **us** and **you...**\",\"internalLink\":\"\",\"externalLink\":\"#\",\"buttonStyle\":\"link\",\"buttonColour\":\"white\"}}}},\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17910\",\"17881\",\"17848\",\"17934\",\"1\",\"17887\",\"21898\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"heading\":\"Our partners\",\"images\":[\"21085\",\"21084\",\"21082\",\"21079\",\"21075\",\"21076\"],\"sectionTitle\":\"Our partners\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Stategy\",\"internalLink\":\"\",\"externalLink\":\"\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Brand\",\"internalLink\":\"\",\"externalLink\":\"\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19216,21910,1,'Down chevron','2021-07-15 01:58:41','2021-11-09 06:09:00','c087baf4-1274-4ab5-8084-0e689374be29',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"48\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_48x48_crop_center-center_line/down-chevron.svg\"},\"optimizedWebPImageUrls\":{\"48\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_48x48_crop_center-center_line/down-chevron.svg.webp\"},\"variantSourceWidths\":[48],\"variantHeights\":{\"48\":48},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":48,\"originalImageHeight\":48,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/wAALCAAQABABAREA/8QAFgABAQEAAAAAAAAAAAAAAAAAAAEG/8QAHxAAAQQCAwEBAAAAAAAAAAAAAgEDBBExMgASIQVB/9oACAEBAAA/ANY2DEqOE36HQhdpWwc0BF1SsXj3hwGIsc5vz+oi1auA3oaJslYvPvK04xFjJBnqIgI9BJzRwfz3F1lOHXGJUZYMBRICHoRN6Nj++4usJz//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#080808\",\"#e8e8e8\",\"#7c7c7c\",\"#747474\",\"#848484\"],\"lightness\":44,\"placeholderWidth\":48,\"placeholderHeight\":48,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19217,21911,1,'About us','2021-07-15 01:58:54','2021-07-15 01:58:54','ae1b4740-4b8d-4643-b4e5-a37deef6ef0b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/work\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/work\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":\"1\",\"fields\":{\"gridItems\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\"],\"blocks\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}}}}}}}},\"buttons\":\"\",\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Find out what this means\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"\",\"buttonStyle\":\"outline\",\"buttonColour\":\"white\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"for **us** and **you...**\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"#\",\"buttonStyle\":\"link\",\"buttonColour\":\"white\"}}}},\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17910\",\"17881\",\"17848\",\"17934\",\"1\",\"17887\",\"21898\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"heading\":\"Our partners\",\"images\":[\"21085\",\"21084\",\"21082\",\"21079\",\"21075\",\"21076\"],\"sectionTitle\":\"Our partners\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Stategy\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"\",\"buttonImage\":[\"21910\"],\"internalLink\":\"\",\"externalLink\":\"\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19218,21912,1,'About us','2021-07-15 02:11:52','2021-07-15 02:11:52','59efd344-29e7-4f36-ba15-8e976f7b2330',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/work\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/work\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":\"1\",\"fields\":{\"gridItems\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\"],\"blocks\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}}}}}}}},\"buttons\":\"\",\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Find out what this means\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"\",\"buttonStyle\":\"outline\",\"buttonColour\":\"white\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"for **us** and **you...**\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"#\",\"buttonStyle\":\"link\",\"buttonColour\":\"white\"}}}},\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17910\",\"17881\",\"17848\",\"17934\",\"1\",\"17887\",\"21898\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"heading\":\"Our partners\",\"images\":[\"21085\",\"21084\",\"21082\",\"21079\",\"21075\",\"21076\"],\"sectionTitle\":\"Our partners\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Stategy\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"\",\"buttonImage\":[\"21910\"],\"internalLink\":\"\",\"externalLink\":\"/#footer\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `content` VALUES (19219,21913,1,'About us','2021-07-15 02:12:22','2021-07-15 02:12:22','c076b49a-0134-4939-9a0b-5aaed2a0fe24',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/work\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/work\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":\"1\",\"fields\":{\"gridItems\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\"],\"blocks\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}}}}}}}},\"buttons\":\"\",\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Find out what this means\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"\",\"buttonStyle\":\"outline\",\"buttonColour\":\"white\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"for **us** and **you...**\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"#\",\"buttonStyle\":\"link\",\"buttonColour\":\"white\"}}}},\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17910\",\"17881\",\"17848\",\"17934\",\"1\",\"17887\",\"21898\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"heading\":\"Our partners\",\"images\":[\"21085\",\"21084\",\"21082\",\"21079\",\"21075\",\"21076\"],\"sectionTitle\":\"Our partners\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Stategy\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"\",\"buttonImage\":[\"21910\"],\"internalLink\":\"\",\"externalLink\":\"#footer\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19221,21915,1,'Educate Plus logo monochrome','2021-07-15 02:28:25','2021-11-09 06:09:09','dbbe4318-5526-4e52-af81-29e623b592e7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"229\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_229x144_crop_center-center_line/educate-plus.svg\"},\"optimizedWebPImageUrls\":{\"229\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_229x144_crop_center-center_line/educate-plus.svg.webp\"},\"variantSourceWidths\":[229],\"variantHeights\":{\"229\":144},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":229,\"originalImageHeight\":144,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/wAALCAAKABABAREA/8QAFwAAAwEAAAAAAAAAAAAAAAAAAAIEBv/EABwQAAICAwEBAAAAAAAAAAAAAAIDABEBBBIhof/aAAgBAQAAPwDct2DWfONdrMVfQ1X3MTX2WNcQkg1jXmSlUJ//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#111111\",\"#e1e1e1\",\"#8c8c8c\",\"#848484\",\"#7c7c7c\"],\"lightness\":47,\"placeholderWidth\":229,\"placeholderHeight\":144,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19222,21916,1,'HubSpot logo monochrome','2021-07-15 02:28:26','2021-10-05 06:47:50','b0ef124a-56ec-4257-84a1-e30f745ad72d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"229\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_229x144_crop_center-center_line/hubspot.svg\"},\"optimizedWebPImageUrls\":{\"229\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_229x144_crop_center-center_line/hubspot.svg.webp\"},\"variantSourceWidths\":[\"229\"],\"variantHeights\":{\"229\":144},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"229\",\"originalImageHeight\":\"144\",\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":229,\"placeholderHeight\":144,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19223,21917,1,'Iap2 logo monochrome','2021-07-15 02:28:26','2021-10-05 06:48:11','aea34c4b-4374-46c3-8635-8bb606a96d2c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"229\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_229x144_crop_center-center_line/iap2.svg\"},\"optimizedWebPImageUrls\":{\"229\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_229x144_crop_center-center_line/iap2.svg.webp\"},\"variantSourceWidths\":[\"229\"],\"variantHeights\":{\"229\":144},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"229\",\"originalImageHeight\":\"144\",\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":229,\"placeholderHeight\":144,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19224,21918,1,'Pivotus logo','2021-07-15 02:28:27','2021-10-05 06:47:29','e0949017-997f-404c-ac6e-baaf19a27ca4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"229\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_229x144_crop_center-center_line/pivotus.svg\"},\"optimizedWebPImageUrls\":{\"229\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_229x144_crop_center-center_line/pivotus.svg.webp\"},\"variantSourceWidths\":[\"229\"],\"variantHeights\":{\"229\":144},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"229\",\"originalImageHeight\":\"144\",\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":229,\"placeholderHeight\":144,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19225,21919,1,'Queensland Government logo','2021-07-15 02:28:28','2021-10-05 06:47:12','bcc7a6e4-72d3-40f3-bfb3-4e7f3ee8dced',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"229\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_229x144_crop_center-center_line/qld-govt.svg\"},\"optimizedWebPImageUrls\":{\"229\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_229x144_crop_center-center_line/qld-govt.svg.webp\"},\"variantSourceWidths\":[\"229\"],\"variantHeights\":{\"229\":144},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"229\",\"originalImageHeight\":\"144\",\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":229,\"placeholderHeight\":144,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19226,21920,1,'Three by 3 logo','2021-07-15 02:28:29','2021-10-05 06:46:52','81751f3b-6a79-4d7e-ac4e-d7eb9725284d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"229\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_229x144_crop_center-center_line/three-by-three.svg\"},\"optimizedWebPImageUrls\":{\"229\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_229x144_crop_center-center_line/three-by-three.svg.webp\"},\"variantSourceWidths\":[\"229\"],\"variantHeights\":{\"229\":144},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"229\",\"originalImageHeight\":\"144\",\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":229,\"placeholderHeight\":144,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19227,21921,1,'About us','2021-07-15 02:29:01','2021-07-15 02:29:01','8812839b-42b1-4cbd-a3d9-0a9e96195fb7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/work\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/work\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":\"1\",\"fields\":{\"gridItems\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\"],\"blocks\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}}}}}}}},\"buttons\":\"\",\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Find out what this means\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"\",\"buttonStyle\":\"outline\",\"buttonColour\":\"white\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"for **us** and **you...**\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"#\",\"buttonStyle\":\"link\",\"buttonColour\":\"white\"}}}},\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17910\",\"17881\",\"17848\",\"17934\",\"1\",\"17887\",\"21898\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Stategy\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"\",\"buttonImage\":[\"21910\"],\"internalLink\":\"\",\"externalLink\":\"#footer\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19228,21922,1,'Contact ','2021-07-15 04:55:38','2021-07-15 04:55:38','e51b9f89-0753-4b00-83dc-c6211f5220c1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dJRNyHHzcn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Contact us\",\"headingColour\":\"text-white\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Like what you see? Get in touch with us—we can’t wait to meet you.\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}}},\"buttons\":\"\",\"sectionTitle\":\"Contact NWO\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-172EAYLfJn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-JIUNKK7uSu\",\"content\":{\"fields\":{\"freeformForm\":\"2\",\"backgroundColour\":\"bg-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19230,21936,1,'The big reveal','2021-07-16 01:16:05','2021-07-16 01:16:05','19d9896b-a160-4568-b3bc-195d185af161',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19232,21960,1,'DFV Campaign','2021-07-16 01:17:55','2021-07-16 01:17:55','b42f9945-0161-4930-90bb-e5c28b6c42c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What do you do when home isn\'t safe',NULL,NULL,'Produced during the height of COVID-19 in 2020 when our team was working remotely, this campaign is a testament to our skill and processes.\n\nDFV can take many forms, but it leaves people feeling isolated, scared and out of control. Our campaign builds awareness of what DFV can feel like and encourages anyone affected to reach out for help.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19234,21973,1,'Medical Mums','2021-07-16 01:36:04','2021-07-16 01:36:04','958741bd-39e8-44e7-bbb5-5ddd490bc871',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Medical Mums busting vaccination myths',NULL,NULL,'Our market research showed the people in our target market trust their GP\'s advice.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19235,21979,1,'20 PHN My mental health 1','2021-07-16 01:38:59','2021-07-16 01:38:59','5b355e02-57ea-44b5-a668-ae4e0fbd45a5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1340_crop_center-center_82_line/21979/20_PHN-My-mental-health_1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x2681_crop_center-center_82_line/21979/20_PHN-My-mental-health_1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x1117_crop_center-center_82_line/21979/20_PHN-My-mental-health_1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x2234_crop_center-center_82_line/21979/20_PHN-My-mental-health_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x893_crop_center-center_82_line/21979/20_PHN-My-mental-health_1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1787_crop_center-center_82_line/21979/20_PHN-My-mental-health_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x670_crop_center-center_82_line/21979/20_PHN-My-mental-health_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x558_crop_center-center_82_line/21979/20_PHN-My-mental-health_1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1340_crop_center-center_82_line/21979/20_PHN-My-mental-health_1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x2681_crop_center-center_82_line/21979/20_PHN-My-mental-health_1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x1117_crop_center-center_82_line/21979/20_PHN-My-mental-health_1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x2234_crop_center-center_82_line/21979/20_PHN-My-mental-health_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x893_crop_center-center_82_line/21979/20_PHN-My-mental-health_1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1787_crop_center-center_82_line/21979/20_PHN-My-mental-health_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x670_crop_center-center_82_line/21979/20_PHN-My-mental-health_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x558_crop_center-center_82_line/21979/20_PHN-My-mental-health_1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1340,\"3072\":2681,\"1280\":1117,\"2560\":2234,\"1024\":893,\"2048\":1787,\"768\":670,\"640\":558},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"5120\",\"originalImageHeight\":\"4469\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3b6+l1S5W3028ESINzyKck844I69afaSyaRMf7R1AzxzcIX42kfU+9V9St9NgvJFbTo3Iwc7iBzz0q/ZWFpNBAHhDIMOivyF44HuBWrsl5D6H//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e0dde5\",\"#542e84\",\"#56c1af\",\"#7a52a6\",\"#6c7484\"],\"lightness\":59,\"placeholderWidth\":1536,\"placeholderHeight\":1340,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19237,21999,1,'20 PHN My mental health 2','2021-07-16 01:41:03','2021-07-16 01:41:03','69154c7e-509d-488b-a921-85644ac0a22c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x882_crop_center-center_82_line/21999/20_PHN-My-mental-health_2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x1764_crop_center-center_82_line/21999/20_PHN-My-mental-health_2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x735_crop_center-center_82_line/21999/20_PHN-My-mental-health_2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1470_crop_center-center_82_line/21999/20_PHN-My-mental-health_2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x588_crop_center-center_82_line/21999/20_PHN-My-mental-health_2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1176_crop_center-center_82_line/21999/20_PHN-My-mental-health_2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x441_crop_center-center_82_line/21999/20_PHN-My-mental-health_2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x367_crop_center-center_82_line/21999/20_PHN-My-mental-health_2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x882_crop_center-center_82_line/21999/20_PHN-My-mental-health_2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x1764_crop_center-center_82_line/21999/20_PHN-My-mental-health_2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x735_crop_center-center_82_line/21999/20_PHN-My-mental-health_2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1470_crop_center-center_82_line/21999/20_PHN-My-mental-health_2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x588_crop_center-center_82_line/21999/20_PHN-My-mental-health_2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1176_crop_center-center_82_line/21999/20_PHN-My-mental-health_2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x441_crop_center-center_82_line/21999/20_PHN-My-mental-health_2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x367_crop_center-center_82_line/21999/20_PHN-My-mental-health_2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":882,\"3072\":1764,\"1280\":735,\"2560\":1470,\"1024\":588,\"2048\":1176,\"768\":441,\"640\":367},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"5120\",\"originalImageHeight\":\"2941\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A2priN5BatKYpGwxxwQueTn86qahqYtrLZabboxPtZ2IJ2juR3+tUL/8A5GKT/r1b+Rpmlf8AIJg/66/41D0RstT/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d7c2b7\",\"#3a3346\",\"#925747\",\"#b5836e\",\"#734f96\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":882,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19238,22006,1,'My Mental Health','2021-07-16 01:41:34','2021-07-16 01:41:34','8e0c9166-abbc-490a-bc69-fef5a7100937',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Find the support you need',NULL,NULL,'Our solution was to develop the My Mental Health website, in collaboration with the My Mental Health Service Navigation team, to provide this vital information.\n\nThe My Mental Health Service Navigation team also support health professionals, consumers and carers making a referral to the PHN-commissioned services.','Brisbane North PHN needed a website developed for consumers, carers, service providers and health professionals that provides information about mental health, alcohol and other drugs and suicide prevention services in the region.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19239,22010,1,'20 PHN Right place right time 1','2021-07-16 01:44:56','2021-07-16 01:44:56','3ed4ff3f-3052-4f25-b9af-ae9c4fcdc9e8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1023_crop_center-center_82_line/22010/20_PHN-Right-place-right-time_1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x2047_crop_center-center_82_line/22010/20_PHN-Right-place-right-time_1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x853_crop_center-center_82_line/22010/20_PHN-Right-place-right-time_1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1706_crop_center-center_82_line/22010/20_PHN-Right-place-right-time_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x682_crop_center-center_82_line/22010/20_PHN-Right-place-right-time_1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1364_crop_center-center_82_line/22010/20_PHN-Right-place-right-time_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x511_crop_center-center_82_line/22010/20_PHN-Right-place-right-time_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x426_crop_center-center_82_line/22010/20_PHN-Right-place-right-time_1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1023_crop_center-center_82_line/22010/20_PHN-Right-place-right-time_1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x2047_crop_center-center_82_line/22010/20_PHN-Right-place-right-time_1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x853_crop_center-center_82_line/22010/20_PHN-Right-place-right-time_1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1706_crop_center-center_82_line/22010/20_PHN-Right-place-right-time_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x682_crop_center-center_82_line/22010/20_PHN-Right-place-right-time_1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1364_crop_center-center_82_line/22010/20_PHN-Right-place-right-time_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x511_crop_center-center_82_line/22010/20_PHN-Right-place-right-time_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x426_crop_center-center_82_line/22010/20_PHN-Right-place-right-time_1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1023,\"3072\":2047,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1364,\"768\":511,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"5120\",\"originalImageHeight\":\"3412\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A1LjU4ElWPzN0plXGXxleOg71oPdx+d5CRb2JwWI4A9RXDaqAvjaBQAACAAO3JrpoXb+0Yl3HBgJIz7ikB//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d1cdc8\",\"#1a3035\",\"#83979a\",\"#b7a24e\",\"#8a4a44\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":1023,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19240,22011,1,'20 PHN Right place right time 2','2021-07-16 01:45:03','2021-07-16 01:45:03','85d1c9bd-4db2-464a-a55c-e07bc73a9c5e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1043_crop_center-center_82_line/22011/20_PHN-Right-place-right-time_2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x2086_crop_center-center_82_line/22011/20_PHN-Right-place-right-time_2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x869_crop_center-center_82_line/22011/20_PHN-Right-place-right-time_2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1738_crop_center-center_82_line/22011/20_PHN-Right-place-right-time_2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x695_crop_center-center_82_line/22011/20_PHN-Right-place-right-time_2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1390_crop_center-center_82_line/22011/20_PHN-Right-place-right-time_2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x521_crop_center-center_82_line/22011/20_PHN-Right-place-right-time_2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x434_crop_center-center_82_line/22011/20_PHN-Right-place-right-time_2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1043_crop_center-center_82_line/22011/20_PHN-Right-place-right-time_2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x2086_crop_center-center_82_line/22011/20_PHN-Right-place-right-time_2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x869_crop_center-center_82_line/22011/20_PHN-Right-place-right-time_2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1738_crop_center-center_82_line/22011/20_PHN-Right-place-right-time_2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x695_crop_center-center_82_line/22011/20_PHN-Right-place-right-time_2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1390_crop_center-center_82_line/22011/20_PHN-Right-place-right-time_2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x521_crop_center-center_82_line/22011/20_PHN-Right-place-right-time_2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x434_crop_center-center_82_line/22011/20_PHN-Right-place-right-time_2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1043,\"3072\":2086,\"1280\":869,\"2560\":1738,\"1024\":695,\"2048\":1390,\"768\":521,\"640\":434},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"5120\",\"originalImageHeight\":\"3477\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6qdFlLuykHO4S54AzwB+FFxqlzHGrQ6fJMSQCA2MevaqsBJtME5HlN1+tatmzNJcZJOJOMn2FYU2ua9uxO5//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#9dc260\",\"#e7e9e5\",\"#16546e\",\"#96ba39\",\"#83594f\"],\"lightness\":57,\"placeholderWidth\":1536,\"placeholderHeight\":1043,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19241,22012,1,'20 PHN Right place right time 3','2021-07-16 01:45:11','2021-07-16 01:45:11','a9a506c4-4d3e-4a97-8f35-2b5de3f12623',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1014_crop_center-center_82_line/22012/20_PHN-Right-place-right-time_3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x2029_crop_center-center_82_line/22012/20_PHN-Right-place-right-time_3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x845_crop_center-center_82_line/22012/20_PHN-Right-place-right-time_3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1691_crop_center-center_82_line/22012/20_PHN-Right-place-right-time_3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x676_crop_center-center_82_line/22012/20_PHN-Right-place-right-time_3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1353_crop_center-center_82_line/22012/20_PHN-Right-place-right-time_3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x507_crop_center-center_82_line/22012/20_PHN-Right-place-right-time_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x422_crop_center-center_82_line/22012/20_PHN-Right-place-right-time_3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x1014_crop_center-center_82_line/22012/20_PHN-Right-place-right-time_3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x2029_crop_center-center_82_line/22012/20_PHN-Right-place-right-time_3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x845_crop_center-center_82_line/22012/20_PHN-Right-place-right-time_3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1691_crop_center-center_82_line/22012/20_PHN-Right-place-right-time_3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x676_crop_center-center_82_line/22012/20_PHN-Right-place-right-time_3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1353_crop_center-center_82_line/22012/20_PHN-Right-place-right-time_3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x507_crop_center-center_82_line/22012/20_PHN-Right-place-right-time_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x422_crop_center-center_82_line/22012/20_PHN-Right-place-right-time_3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1014,\"3072\":2029,\"1280\":845,\"2560\":1691,\"1024\":676,\"2048\":1353,\"768\":507,\"640\":422},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"5120\",\"originalImageHeight\":\"3383\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AzzArQWJtppZLqQjcrSggkjt6c+tdhmKSzkS42iTBA7bh26ViXFtBGsTRwxqQy4KqB3qTTHY2xyxP+ksOT2x0qJaK4OVj/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c7c2b6\",\"#2d332e\",\"#574b44\",\"#6a8374\",\"#a09940\"],\"lightness\":45,\"placeholderWidth\":1536,\"placeholderHeight\":1014,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19243,22041,1,'Right time, right place','2021-07-16 01:49:52','2021-07-16 01:49:52','75ec1668-4e0c-4b88-a523-be997a463499',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Do I go to the ED?',NULL,NULL,'Our solution was to show the people who live in the region, and the large numbers of holidaymakers who travel to the region, that the emergency department isn\'t the only option.\n\nThe healthdirect app shows options for medical care based on your location, so you don\'t need to wait in a crowded emergency department.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19245,22051,1,'Right time, right place','2021-07-16 01:50:07','2021-07-16 01:50:07','690de597-c994-44a2-97e3-7a71ce86bee6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Do I go to the ED?',NULL,NULL,'Our solution was to show the people who live in the region, and the large numbers of holidaymakers who travel to the region, that the emergency department isn\'t the only option.\n\nThe healthdirect app shows options for medical care based on your location, so you don\'t need to wait in a crowded emergency department.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19247,22060,1,'My Mental Health','2021-07-16 01:50:19','2021-07-16 01:50:19','63163079-5d9e-4e5e-bbe7-ec6c912e76b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Find the support you need',NULL,NULL,'Our solution was to develop the My Mental Health website, in collaboration with the My Mental Health Service Navigation team, to provide this vital information.\n\nThe My Mental Health Service Navigation team also support health professionals, consumers and carers making a referral to the PHN-commissioned services.','Brisbane North PHN needed a website developed for consumers, carers, service providers and health professionals that provides information about mental health, alcohol and other drugs and suicide prevention services in the region.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19249,22083,1,'TRI landing 1 3','2021-07-16 01:56:20','2021-07-16 01:56:20','01c2c898-2da5-40d5-b3e6-b55fe33b0b13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x768_crop_center-center_82_line/22083/TRI-landing-1_3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x640_crop_center-center_82_line/22083/TRI-landing-1_3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x512_crop_center-center_82_line/22083/TRI-landing-1_3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x384_crop_center-center_82_line/22083/TRI-landing-1_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x320_crop_center-center_82_line/22083/TRI-landing-1_3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x768_crop_center-center_82_line/22083/TRI-landing-1_3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x640_crop_center-center_82_line/22083/TRI-landing-1_3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x512_crop_center-center_82_line/22083/TRI-landing-1_3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x384_crop_center-center_82_line/22083/TRI-landing-1_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x320_crop_center-center_82_line/22083/TRI-landing-1_3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"800\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7s7xGm7Jfvsx1x70r7/L+TO73oooFY//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#2d91ae\",\"#f0f8f8\",\"#95cad7\",\"#7f8a8f\",\"#949494\"],\"lightness\":65,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19250,22084,1,'TRI landing 2','2021-07-16 01:56:21','2021-07-16 01:56:21','e4f0ced3-6e3c-4669-80bb-8fc104df4ac8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/22084/TRI-landing-2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/22084/TRI-landing-2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/22084/TRI-landing-2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/22084/TRI-landing-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/22084/TRI-landing-2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/22084/TRI-landing-2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/22084/TRI-landing-2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/22084/TRI-landing-2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/22084/TRI-landing-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/22084/TRI-landing-2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AWXBI3HA7kVl3+ADtORng1pz9Ky777tetV2Z85hviR//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#04a3d6\",\"#105874\",\"#d1f4f9\",\"#66ddf8\",\"#0474a4\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19251,22085,1,'TRI landing 3 3','2021-07-16 01:56:22','2021-07-16 01:56:22','f00df33c-a6ea-4070-9ec2-33cc50cc6ad3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/22085/TRI-landing-3_3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/22085/TRI-landing-3_3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/22085/TRI-landing-3_3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/22085/TRI-landing-3_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/22085/TRI-landing-3_3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/22085/TRI-landing-3_3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/22085/TRI-landing-3_3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/22085/TRI-landing-3_3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/22085/TRI-landing-3_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/22085/TRI-landing-3_3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A0tQ128ttSlt4YInRGUZOc8gH1qxZaxNcXyQNHGFYkZGc9KwtU/5GO5/3h/JauaV/yGIv95v5GuyNOLg3boebUrVFVUb6XP/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#069ad0\",\"#e3e3ea\",\"#174962\",\"#a4c4cc\",\"#74949c\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19252,22086,1,'TRI landing 4 3','2021-07-16 01:56:24','2021-07-16 01:56:24','ecf94cb4-e8fa-4536-a886-aef369a20ac8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/22086/TRI-landing-4_3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/22086/TRI-landing-4_3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/22086/TRI-landing-4_3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/22086/TRI-landing-4_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/22086/TRI-landing-4_3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/22086/TRI-landing-4_3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/22086/TRI-landing-4_3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/22086/TRI-landing-4_3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/22086/TRI-landing-4_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/22086/TRI-landing-4_3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A27zStNnvHuJXbzgQzKjDI6duvpT7C1sDKlzA7biSVDHB7jpWbJ/yHNU/3E/mtXB/yMKfT+hrWF3dX6HPV5VyyavrY//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dee0e5\",\"#157798\",\"#ba5d2e\",\"#15323e\",\"#8c8850\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19253,22087,1,'TRI landing 5 3','2021-07-16 01:56:25','2021-07-16 01:56:25','cc747ce1-a964-4f1a-9e5e-593c0411a131',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/22087/TRI-landing-5_3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/22087/TRI-landing-5_3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/22087/TRI-landing-5_3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/22087/TRI-landing-5_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/22087/TRI-landing-5_3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/22087/TRI-landing-5_3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/22087/TRI-landing-5_3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/22087/TRI-landing-5_3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/22087/TRI-landing-5_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/22087/TRI-landing-5_3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A2odOlOvXlxNF/o8iAA5B3Hjt+FSNYOusQzQxbYE759R/jWp3NLVKTREoKVr+p//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e0e0e5\",\"#1b6e8d\",\"#2cc3f1\",\"#968265\",\"#cf6330\"],\"lightness\":59,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19254,22088,1,'TRI landing 6 3','2021-07-16 01:56:27','2021-07-16 01:56:27','e639237b-7c87-4459-8380-8b7d027a4e85',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/22088/TRI-landing-6_3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/22088/TRI-landing-6_3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/22088/TRI-landing-6_3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/22088/TRI-landing-6_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/22088/TRI-landing-6_3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/22088/TRI-landing-6_3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/22088/TRI-landing-6_3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/22088/TRI-landing-6_3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/22088/TRI-landing-6_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/22088/TRI-landing-6_3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AuatMpu7tQTu8t8/9+/8A9dZ3hiFDrakkkKjMnPOenP4E07Vf+Q7ef9c3/wDRRp3hH/kNSf8AXA/zWuibvFehxUVaT9Wf/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1b4d63\",\"#dfe1e4\",\"#0fbae9\",\"#0793c4\",\"#e5682b\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19255,22089,1,'TRI landing 7 3','2021-07-16 01:56:28','2021-07-16 01:56:28','b06d2448-4f97-4ed5-a720-042fc3d62a3e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x432_crop_center-center_82_line/22089/TRI-landing-7_3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x360_crop_center-center_82_line/22089/TRI-landing-7_3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x288_crop_center-center_82_line/22089/TRI-landing-7_3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x216_crop_center-center_82_line/22089/TRI-landing-7_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x180_crop_center-center_82_line/22089/TRI-landing-7_3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x432_crop_center-center_82_line/22089/TRI-landing-7_3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x360_crop_center-center_82_line/22089/TRI-landing-7_3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x288_crop_center-center_82_line/22089/TRI-landing-7_3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x216_crop_center-center_82_line/22089/TRI-landing-7_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x180_crop_center-center_82_line/22089/TRI-landing-7_3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":432,\"1280\":360,\"1024\":288,\"768\":216,\"640\":180},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6o2NpI5le2iaRsgsUBJ4x/KkisbS3YyQW0Ub9NyIAaKKYrH/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e0e0e4\",\"#1c485b\",\"#8ca5af\",\"#7c7c7c\",\"#74848c\"],\"lightness\":58,\"placeholderWidth\":1536,\"placeholderHeight\":432,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19256,22090,1,'TRI landing 14','2021-07-16 01:56:29','2021-07-16 01:56:29','6b41606e-8baa-4180-b6fd-838b8670bd1d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/22090/TRI-landing-14.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/22090/TRI-landing-14.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/22090/TRI-landing-14.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/22090/TRI-landing-14.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/22090/TRI-landing-14.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/22090/TRI-landing-14.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/22090/TRI-landing-14.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/22090/TRI-landing-14.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/22090/TRI-landing-14.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/22090/TRI-landing-14.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ao6dpkN7aySF5vMQgbY03daratY/2bqMtp5nm+Xj5tu3OQD0/GmW/Rqin/wBc1b63OTSx/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1f4a5e\",\"#ccd5d2\",\"#4ea1c7\",\"#313e1b\",\"#8b9c86\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19257,22091,1,'TRI landing 15','2021-07-16 01:56:31','2021-07-16 01:56:31','86603792-0e4c-479f-813b-f578f89200e8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/22091/TRI-landing-15.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/22091/TRI-landing-15.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/22091/TRI-landing-15.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/22091/TRI-landing-15.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/22091/TRI-landing-15.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/22091/TRI-landing-15.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/22091/TRI-landing-15.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/22091/TRI-landing-15.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/22091/TRI-landing-15.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/22091/TRI-landing-15.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5/dtOR1rTjvbCGxu4VSWWWZAqM8SjYQeucmso9aK6HqcaVtT/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#184c62\",\"#e2e7e8\",\"#0b8fbb\",\"#5ab5d3\",\"#6c8793\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19258,22092,1,'TRI landing 16','2021-07-16 01:56:32','2021-07-16 01:56:32','73b3c1d8-7f69-418f-9ce6-7aabc55d6b27',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/22092/TRI-landing-16.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/22092/TRI-landing-16.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/22092/TRI-landing-16.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/22092/TRI-landing-16.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/22092/TRI-landing-16.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/22092/TRI-landing-16.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/22092/TRI-landing-16.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/22092/TRI-landing-16.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/22092/TRI-landing-16.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/22092/TRI-landing-16.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3tAihfQ491umfK++VHPWl1eFF8PXLeXHnyxghBkdKXQf+QDB/wBc/wDGpda/5Fq5/wCuY/pVdSH8J//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e2e4e3\",\"#194759\",\"#7c6259\",\"#d57b47\",\"#548494\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19259,22093,1,'TRI landing 17','2021-07-16 01:56:35','2021-07-16 01:56:35','f564082c-aea9-4162-bfd7-e38256e2dd2d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/22093/TRI-landing-17.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/22093/TRI-landing-17.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/22093/TRI-landing-17.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/22093/TRI-landing-17.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/22093/TRI-landing-17.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/22093/TRI-landing-17.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/22093/TRI-landing-17.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/22093/TRI-landing-17.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/22093/TRI-landing-17.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/22093/TRI-landing-17.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8ApaVosupybEmSP93vy2fUD+tMbTGWxkuXuY12kgIc5bGOn51veDf+Pv8A7dz/AOhCoJP+Rdvf94/+y11Nb/I8+Mm+W/W/4H//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1c4a5d\",\"#d3e6eb\",\"#0796ca\",\"#1db4e4\",\"#30839d\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19260,22094,1,'TRI landing 18','2021-07-16 01:56:37','2021-07-16 01:56:37','f4f839b9-e360-4810-9ca2-956517736d5b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/22094/TRI-landing-18.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/22094/TRI-landing-18.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/22094/TRI-landing-18.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/22094/TRI-landing-18.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/22094/TRI-landing-18.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/22094/TRI-landing-18.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/22094/TRI-landing-18.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/22094/TRI-landing-18.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/22094/TRI-landing-18.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/22094/TRI-landing-18.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AXTrR7DSjdvKpju4/LVR1BznJ/Kk1PxJFfRzKIHTfF5a8j1zk1LqH/Ioab/v/ANGrmK6N0cW0n8j/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d8ebf0\",\"#1a4a60\",\"#2bb2d9\",\"#0991c3\",\"#708d95\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19261,22095,1,'TRI landing 19','2021-07-16 01:56:38','2021-07-16 01:56:38','727eb9bd-00d9-41df-a7e2-4120805d9435',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x364_crop_center-center_82_line/22095/TRI-landing-19.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x304_crop_center-center_82_line/22095/TRI-landing-19.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x243_crop_center-center_82_line/22095/TRI-landing-19.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x182_crop_center-center_82_line/22095/TRI-landing-19.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x152_crop_center-center_82_line/22095/TRI-landing-19.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x364_crop_center-center_82_line/22095/TRI-landing-19.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x304_crop_center-center_82_line/22095/TRI-landing-19.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x243_crop_center-center_82_line/22095/TRI-landing-19.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x182_crop_center-center_82_line/22095/TRI-landing-19.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x152_crop_center-center_82_line/22095/TRI-landing-19.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":364,\"1280\":304,\"1024\":243,\"768\":182,\"640\":152},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"380\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAAwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A53JIxk4oooroOM//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1a455c\",\"#f4fcfc\",\"#7c8d94\",\"#7c9cac\",\"#2c4c5c\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":364,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19262,22096,1,'TRI landing 20','2021-07-16 01:56:39','2021-07-16 01:56:39','189a246d-cfbd-4201-a48d-273c794b49d7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/22096/TRI-landing-20.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/22096/TRI-landing-20.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/22096/TRI-landing-20.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/22096/TRI-landing-20.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/22096/TRI-landing-20.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/22096/TRI-landing-20.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/22096/TRI-landing-20.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/22096/TRI-landing-20.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/22096/TRI-landing-20.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/22096/TRI-landing-20.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ar20d1MZ3jsZbmJGCgpnIO0HGAR61BI1yk8Iks5beMn5iwYZODgck88Gun8I/8et1/wBfH/si1R1n/jwi/wCvz/2ma6eeXtbX6nD7KHsL26H/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#118eb9\",\"#cdcccc\",\"#0a191d\",\"#2e4a54\",\"#44d4fc\"],\"lightness\":43,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19263,22097,1,'TRI landing 21','2021-07-16 01:56:41','2021-07-16 01:56:41','9be91758-3a62-49e7-b627-eb85daffef55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/22097/TRI-landing-21.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/22097/TRI-landing-21.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/22097/TRI-landing-21.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/22097/TRI-landing-21.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/22097/TRI-landing-21.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/22097/TRI-landing-21.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/22097/TRI-landing-21.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/22097/TRI-landing-21.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/22097/TRI-landing-21.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/22097/TRI-landing-21.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Av6SdlqfKWAv5h3eZEXPIAHQVNrltLHYq8622TKuPJTGDtOaz9L/4+R9f6Gt3xT/yD4v+u39DXTf9+cH/ADC38j//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1496c1\",\"#e5ecea\",\"#1a1b1b\",\"#5c6247\",\"#bb6c3e\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19264,22099,1,'Tritium','2021-07-16 01:57:58','2021-07-16 01:57:58','16cfe529-a469-44e2-b171-78279b2bc66e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'We turned up the voltage on the launch of the new brand with this show-stopping animated brand video.\nWith an appetite only satisfied by global domination and a powerful vision of energy freedom, Tritium’s journey has only just begun… but they started in the fast lane. We developed a set of foundational branding elements that showcase who Tritium is now and prepares for their exciting future.','As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league.\n\nTritium commissioned us to update their brand—to put their internal culture of creativity and innovation on display and to share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19266,22139,1,'Tritium','2021-07-16 01:58:24','2021-07-16 01:58:24','dea2c225-ccfb-4421-aa67-1d8e42ec6c45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'We turned up the voltage on the launch of the new brand with this show-stopping animated brand video.\nWith an appetite only satisfied by global domination and a powerful vision of energy freedom, Tritium’s journey has only just begun… but they started in the fast lane. We developed a set of foundational branding elements that showcase who Tritium is now and prepares for their exciting future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19267,22158,1,'20 10 PHN Safe to see your GP 1','2021-07-16 02:52:07','2021-07-16 02:52:07','499c4fe1-aef0-42bb-9372-39127a804855',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x875_crop_center-center_82_line/22158/20_10-PHN-Safe-to-see-your-GP_1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x1751_crop_center-center_82_line/22158/20_10-PHN-Safe-to-see-your-GP_1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x729_crop_center-center_82_line/22158/20_10-PHN-Safe-to-see-your-GP_1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1459_crop_center-center_82_line/22158/20_10-PHN-Safe-to-see-your-GP_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x583_crop_center-center_82_line/22158/20_10-PHN-Safe-to-see-your-GP_1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1167_crop_center-center_82_line/22158/20_10-PHN-Safe-to-see-your-GP_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x437_crop_center-center_82_line/22158/20_10-PHN-Safe-to-see-your-GP_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x364_crop_center-center_82_line/22158/20_10-PHN-Safe-to-see-your-GP_1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x875_crop_center-center_82_line/22158/20_10-PHN-Safe-to-see-your-GP_1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x1751_crop_center-center_82_line/22158/20_10-PHN-Safe-to-see-your-GP_1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x729_crop_center-center_82_line/22158/20_10-PHN-Safe-to-see-your-GP_1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1459_crop_center-center_82_line/22158/20_10-PHN-Safe-to-see-your-GP_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x583_crop_center-center_82_line/22158/20_10-PHN-Safe-to-see-your-GP_1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1167_crop_center-center_82_line/22158/20_10-PHN-Safe-to-see-your-GP_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x437_crop_center-center_82_line/22158/20_10-PHN-Safe-to-see-your-GP_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x364_crop_center-center_82_line/22158/20_10-PHN-Safe-to-see-your-GP_1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":875,\"3072\":1751,\"1280\":729,\"2560\":1459,\"1024\":583,\"2048\":1167,\"768\":437,\"640\":364},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6666\",\"originalImageHeight\":\"3801\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A2vMSO9aIlX+fYCqAc/n+FNRLZikMN0rMGbIzkEnn/GsYf69v94VD4b/4/wCP/rq3/oJrOC3aLnZpJo//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ccccc7\",\"#3d7f86\",\"#b0956b\",\"#935733\",\"#cb7a28\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":875,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19268,22159,1,'20 10 PHN Safe to see your GP 2','2021-07-16 02:52:12','2021-07-16 02:52:12','d27170e9-31ec-45de-a1c1-477065271cfb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x847_crop_center-center_82_line/22159/20_10-PHN-Safe-to-see-your-GP_2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x1695_crop_center-center_82_line/22159/20_10-PHN-Safe-to-see-your-GP_2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x706_crop_center-center_82_line/22159/20_10-PHN-Safe-to-see-your-GP_2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1412_crop_center-center_82_line/22159/20_10-PHN-Safe-to-see-your-GP_2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x565_crop_center-center_82_line/22159/20_10-PHN-Safe-to-see-your-GP_2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1130_crop_center-center_82_line/22159/20_10-PHN-Safe-to-see-your-GP_2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x423_crop_center-center_82_line/22159/20_10-PHN-Safe-to-see-your-GP_2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x353_crop_center-center_82_line/22159/20_10-PHN-Safe-to-see-your-GP_2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x847_crop_center-center_82_line/22159/20_10-PHN-Safe-to-see-your-GP_2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x1695_crop_center-center_82_line/22159/20_10-PHN-Safe-to-see-your-GP_2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x706_crop_center-center_82_line/22159/20_10-PHN-Safe-to-see-your-GP_2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1412_crop_center-center_82_line/22159/20_10-PHN-Safe-to-see-your-GP_2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x565_crop_center-center_82_line/22159/20_10-PHN-Safe-to-see-your-GP_2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1130_crop_center-center_82_line/22159/20_10-PHN-Safe-to-see-your-GP_2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x423_crop_center-center_82_line/22159/20_10-PHN-Safe-to-see-your-GP_2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x353_crop_center-center_82_line/22159/20_10-PHN-Safe-to-see-your-GP_2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":847,\"3072\":1695,\"1280\":706,\"2560\":1412,\"1024\":565,\"2048\":1130,\"768\":423,\"640\":353},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6666\",\"originalImageHeight\":\"3679\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7EzXazMscSvGDw27JP68d6hkutVHliOyQ5cBiW4C5OT169KKKAP/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ddd9d6\",\"#31607a\",\"#a06947\",\"#a86577\",\"#7da2ac\"],\"lightness\":57,\"placeholderWidth\":1536,\"placeholderHeight\":847,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19269,22160,1,'20 10 PHN Safe to see your GP 3','2021-07-16 02:52:18','2021-07-16 02:52:18','a50b46f0-a2ad-4242-b16f-396f8e783613',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x890_crop_center-center_82_line/22160/20_10-PHN-Safe-to-see-your-GP_3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x1781_crop_center-center_82_line/22160/20_10-PHN-Safe-to-see-your-GP_3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x742_crop_center-center_82_line/22160/20_10-PHN-Safe-to-see-your-GP_3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1484_crop_center-center_82_line/22160/20_10-PHN-Safe-to-see-your-GP_3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x593_crop_center-center_82_line/22160/20_10-PHN-Safe-to-see-your-GP_3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1187_crop_center-center_82_line/22160/20_10-PHN-Safe-to-see-your-GP_3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x445_crop_center-center_82_line/22160/20_10-PHN-Safe-to-see-your-GP_3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x371_crop_center-center_82_line/22160/20_10-PHN-Safe-to-see-your-GP_3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x890_crop_center-center_82_line/22160/20_10-PHN-Safe-to-see-your-GP_3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x1781_crop_center-center_82_line/22160/20_10-PHN-Safe-to-see-your-GP_3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x742_crop_center-center_82_line/22160/20_10-PHN-Safe-to-see-your-GP_3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1484_crop_center-center_82_line/22160/20_10-PHN-Safe-to-see-your-GP_3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x593_crop_center-center_82_line/22160/20_10-PHN-Safe-to-see-your-GP_3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1187_crop_center-center_82_line/22160/20_10-PHN-Safe-to-see-your-GP_3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x445_crop_center-center_82_line/22160/20_10-PHN-Safe-to-see-your-GP_3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x371_crop_center-center_82_line/22160/20_10-PHN-Safe-to-see-your-GP_3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":890,\"3072\":1781,\"1280\":742,\"2560\":1484,\"1024\":593,\"2048\":1187,\"768\":445,\"640\":371},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6666\",\"originalImageHeight\":\"3865\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A2rS4snt/NvAvlKEUF4ywzz04+lWo/sk0uy2WPADBwsW3B4wDx6ZqjH/yBbX/AD3q/H/x8N9R/wCgipi7lyjY/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d9d6d6\",\"#2d252a\",\"#85513c\",\"#a0725a\",\"#838184\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":890,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19271,22195,1,'Safe to See your GP','2021-07-16 03:07:32','2021-07-16 03:07:32','72d758fd-e859-463f-a95e-1d3a85885945',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Getting back to a normal health routine',NULL,NULL,'Community members were staying at home and not visiting their GP and other health services for regular checkups. To avoid more serious health and wellbeing problems down the track, the community needed to know it was safe to go back to regular appointments. We originally developed this campaign for Darling Downs West Moreton PHN, and Brisbane North PHN requested it run in its region as well.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19273,22205,1,'Safe to See your GP','2021-07-16 03:10:46','2021-07-16 03:10:46','5f0ae799-f67a-4101-b489-c166ac84387d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Getting back to a normal health routine',NULL,NULL,'Community members were staying at home and not visiting their GP and other health services for regular checkups. To avoid more serious health and wellbeing problems down the track, the community needed to know it was safe to go back to regular appointments. We originally developed this campaign for Darling Downs West Moreton PHN, and Brisbane North PHN requested it run in its region as well.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19274,22210,1,'Rural Aid','2021-07-16 03:13:01','2022-08-08 06:30:06','a66aa0c5-36f2-4abd-8cd0-9698548ca71b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Through drought, flood and fire, Rural Aid is there.',NULL,NULL,'Rural Aid is there for local farmers doing it tough, providing water, fodder and financial and counselling help. \n\nProviding emergency support is the priority, but it was time for Rural Aid to shift its focus to building resilience and sustainability in rural communities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eLK3JgwUaW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47719\",\"22211\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QCEdWG6OxJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"The nature of the campaign, featuring real farmers telling their story, was insightful for many staff who might not get the chance to speak with or hear from farmers very often.\\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-a1ZSpKzNhg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575770982\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F9lQRkpJbI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The campaign\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-h8vXLy3MfI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“The generous donations received from our community of supporters as a result from the campaign has had a very positive impact for the beneficiaries of our fundraising—Aussie farmers.”\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V9u5ejPQKv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575783623\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p6CVgVhKEp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Campaign messaging was two-tiered: an EOFY donations appeal and a thank you. Both worked for existing donors, people in existing databases and prospects.d\\n\\nTo ensure the greatest value for money for our client, we pooled the majority of our ad spend into digital, working closely with our media partner, Pivotus. We A/B tested the messaging and captured the audience with retargeting strategies.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8P2070zTQ8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"NWO were great to work with and really took an interest in our organisation and what we’re trying to achieve, and this showed through in the quality and the emotion captured in the final production. \\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rhaSMwFESv\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Creative\",\"plainText\":\"We proposed a campaign based on interviews with Australian farmers who had experiences with Rural Aid.\\n\\nIt’s an honest campaign of full of real people, stories and emotions.\\n\\nWith COVID-19 still hanging around, our approach ensured we avoided potential interruptions, travel restrictions and cancellation costs for our client.\\n\\nThe videos are compilations of interviews with various farmers across the spectrum of industries that are framed by a ‘zoom screen’ visual device, which adds layers of authenticity to the personal stories. \\n\\nSimilarly the display banners and static Facebook posts used the zoom imagery and visual devices—all pointing people to the EOFY Rural Aid landing page where viewers could view the full videos and choose to donate.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vJUro6swC6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We proposed a campaign based on interviews with Australian farmers who had experiences with Rural Aid.\\n\\nIt’s an honest campaign of full of real people, stories and emotions.\\n\\nWith COVID-19 still hanging around, our approach ensured we avoided potential interruptions, travel restrictions and cancellation costs for our client.\\n\\nThe videos are compilations of interviews with various farmers across the spectrum of industries that are framed by a ‘zoom screen’ visual device, which adds layers of authenticity to the personal stories. \\n\\nSimilarly the display banners and static Facebook posts used the zoom imagery and visual devices—all pointing people to the EOFY Rural Aid landing page where viewers could view the full videos and choose to donate.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3MV0vWsZV5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"I am very proud to have been a part of this campaign. Even though I was part of the storytelling behind the scenes, I was moved at every stage of the process by how tough these Australians have it on a daily basis, and how candid they were with us about their stories.\\\"\",\"plainText\":\"**— Kat Scott, producer**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NURtiGsn81\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":[],\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'Rural Aid','Through drought, flood and fire, Rural Aid is there.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19275,22211,1,'6083 Landing Page 1920 x 1080 1','2021-07-16 03:18:45','2021-07-16 03:18:45','1dcb3920-b1b2-4b4d-87ba-35d7aa75b82d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/6083_Landing-Page_1920-x-1080_1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/6083_Landing-Page_1920-x-1080_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/6083_Landing-Page_1920-x-1080_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/6083_Landing-Page_1920-x-1080_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/6083_Landing-Page_1920-x-1080_1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/6083_Landing-Page_1920-x-1080_1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/6083_Landing-Page_1920-x-1080_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/6083_Landing-Page_1920-x-1080_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/6083_Landing-Page_1920-x-1080_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/6083_Landing-Page_1920-x-1080_1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1920\",\"originalImageHeight\":\"1080\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AqaZqNvHCn7iCPaoXcEXcf1FWdT1PT5rUqokBAGfmADY9q46y+8Kk1H7orm9n725rGyV0j//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#45341a\",\"#e3c082\",\"#93c150\",\"#9f7746\",\"#a29994\"],\"lightness\":45,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19276,22266,1,'Rural Aid','2021-07-16 03:23:11','2021-07-16 03:23:11','b41a1de2-0f5e-4a8c-8f87-08454d47cf09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Through drought, flood and fire, Rural Aid is there.',NULL,NULL,'Rural Aid is there for local farmers doing it tough, providing water, fodder and financial and counselling help. \n\nProviding emergency support is the priority, but it was time for Rural Aid to shift its focus to building resilience and sustainability in rural communities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19278,22279,1,'Rural Aid','2021-07-16 03:53:04','2021-07-16 03:53:04','2a0557f0-be7e-436f-ad28-2e10c79626d7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Through drought, flood and fire, Rural Aid is there.',NULL,NULL,'Rural Aid is there for local farmers doing it tough, providing water, fodder and financial and counselling help. \n\nProviding emergency support is the priority, but it was time for Rural Aid to shift its focus to building resilience and sustainability in rural communities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19281,22296,1,'Rural Aid','2021-07-16 03:55:48','2021-07-16 03:55:48','306a942a-7580-42da-81af-a18d26287b71',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Through drought, flood and fire, Rural Aid is there.',NULL,NULL,'Rural Aid is there for local farmers doing it tough, providing water, fodder and financial and counselling help. \n\nProviding emergency support is the priority, but it was time for Rural Aid to shift its focus to building resilience and sustainability in rural communities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19283,22303,1,'Rural Aid FB Single HR','2021-07-16 03:57:05','2021-07-16 04:07:22','977c75cd-22ad-40e6-8aee-30af340c800e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x862_crop_center-center_82_line/RuralAid_FB-Single-HR.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x1725_crop_center-center_82_line/RuralAid_FB-Single-HR.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x718_crop_center-center_82_line/RuralAid_FB-Single-HR.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1437_crop_center-center_82_line/RuralAid_FB-Single-HR.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x575_crop_center-center_82_line/RuralAid_FB-Single-HR.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1150_crop_center-center_82_line/RuralAid_FB-Single-HR.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x431_crop_center-center_82_line/RuralAid_FB-Single-HR.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x359_crop_center-center_82_line/RuralAid_FB-Single-HR.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x862_crop_center-center_82_line/RuralAid_FB-Single-HR.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x1725_crop_center-center_82_line/RuralAid_FB-Single-HR.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x718_crop_center-center_82_line/RuralAid_FB-Single-HR.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1437_crop_center-center_82_line/RuralAid_FB-Single-HR.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x575_crop_center-center_82_line/RuralAid_FB-Single-HR.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1150_crop_center-center_82_line/RuralAid_FB-Single-HR.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x431_crop_center-center_82_line/RuralAid_FB-Single-HR.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x359_crop_center-center_82_line/RuralAid_FB-Single-HR.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":862,\"3072\":1725,\"1280\":718,\"2560\":1437,\"1024\":575,\"2048\":1150,\"768\":431,\"640\":359},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"7999\",\"originalImageHeight\":\"4493\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Asatq8yXpSH7Rs2gbkkKrnvx3rV0C5eeVC00znb8wd2PP0JoorKm7oFsf/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c4ceb4\",\"#352c22\",\"#614b42\",\"#7ba43e\",\"#757169\"],\"lightness\":45,\"placeholderWidth\":1536,\"placeholderHeight\":862,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19285,22311,1,'Rural Aid','2021-07-16 03:57:20','2021-07-16 03:57:20','9125361b-9d17-4431-a7b6-538e3a25bc1f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Through drought, flood and fire, Rural Aid is there.',NULL,NULL,'Rural Aid is there for local farmers doing it tough, providing water, fodder and financial and counselling help. \n\nProviding emergency support is the priority, but it was time for Rural Aid to shift its focus to building resilience and sustainability in rural communities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19286,22317,1,'Rural Aid','2021-07-16 04:06:19','2021-07-16 04:06:19','48078a78-df32-435e-9015-deed33c723a7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19288,22326,1,'Rural Aid','2021-07-16 04:08:00','2021-07-16 04:08:00','f6bb9ba0-edf9-4a79-9f93-37c0ec05ef45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Through drought, flood and fire, Rural Aid is there.',NULL,NULL,'Rural Aid is there for local farmers doing it tough, providing water, fodder and financial and counselling help. \n\nProviding emergency support is the priority, but it was time for Rural Aid to shift its focus to building resilience and sustainability in rural communities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19289,22332,1,'Rural Aid','2021-07-16 04:09:55','2021-07-16 04:09:55','954c6f49-2996-4a72-bad1-07b1c92e61a9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Through drought, flood and fire, Rural Aid is there.',NULL,NULL,'Rural Aid is there for local farmers doing it tough, providing water, fodder and financial and counselling help. \n\nProviding emergency support is the priority, but it was time for Rural Aid to shift its focus to building resilience and sustainability in rural communities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19291,22375,1,'Rural Aid','2021-07-16 04:25:30','2021-07-16 04:25:30','65391935-bd1c-48d7-9690-6e6c64317379',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Through drought, flood and fire, Rural Aid is there.',NULL,NULL,'Rural Aid is there for local farmers doing it tough, providing water, fodder and financial and counselling help. \n\nProviding emergency support is the priority, but it was time for Rural Aid to shift its focus to building resilience and sustainability in rural communities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19293,22398,1,'Rural Aid','2021-07-16 05:01:46','2021-07-16 05:01:46','cdaf40d7-c5ae-40dd-92bf-84a52c9eabfe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Through drought, flood and fire, Rural Aid is there.',NULL,NULL,'Rural Aid is there for local farmers doing it tough, providing water, fodder and financial and counselling help. \n\nProviding emergency support is the priority, but it was time for Rural Aid to shift its focus to building resilience and sustainability in rural communities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eLK3JgwUaW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22211\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hvMptRi0um\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\"],\"blocks\":{\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"\\\"The nature of the campaign, featuring real farmers telling their story, was insightful for many staff who might not get the chance to speak with or hear from farmers very often.\\\"\\n\\n**- Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-a1ZSpKzNhg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/572803469\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6HKBZhtaqU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"The campaign\",\"headingColour\":\"text-black\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XMSFJCah0r\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"\\\"The revenue being generated from the campaign has had a very positive impact on our revenue budget for the month of June, which has a direct impact on the beneficiaries of our fundraising—Aussie farmers.\\\"\\n\\n**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V9u5ejPQKv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/572802923\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QfSBc7W35n\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Campaign messaging was two-tired: an EOFY donations appeal and a thank you. Both worked to be targeted at existing donors, or people captured in existing databases or prospecting. \\n\\nTo ensure the greatest value for money for our client, we pooled the majority of our ad spend into digital, working closely with our media partner, Pivotus. We A/B tested the messaging and capture the audience with retargeting strategies.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-zHQI8oXYSe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"\\\"NWO were great to work with and really took an interest in our organisation and what we’re trying to achieve, and this showed through in the quality and the emotion captured in the final production. \\\"\\n\\n**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19295,22420,1,'Rural Aid','2021-07-16 05:27:15','2021-07-16 05:27:15','8e86e60f-ad06-44dc-b387-1d8c400dfdbd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Through drought, flood and fire, Rural Aid is there.',NULL,NULL,'Rural Aid is there for local farmers doing it tough, providing water, fodder and financial and counselling help. \n\nProviding emergency support is the priority, but it was time for Rural Aid to shift its focus to building resilience and sustainability in rural communities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eLK3JgwUaW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22211\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QCEdWG6OxJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The nature of the campaign, featuring real farmers telling their story, was insightful for many staff who might not get the chance to speak with or hear from farmers very often.\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-a1ZSpKzNhg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/572803469\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4IaqNatl2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The campaign\",\"plainText\":\"Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-h8vXLy3MfI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"The revenue being generated from the campaign has had a very positive impact on our revenue budget for the month of June, which has a direct impact on the beneficiaries of our fundraising—Aussie farmers.\\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V9u5ejPQKv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/572802923\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ShWv4eC3wX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Strategy\",\"plainText\":\"Campaign messaging was two-tired: an EOFY donations appeal and a thank you. Both worked to be targeted at existing donors, or people captured in existing databases or prospecting. \\n\\nTo ensure the greatest value for money for our client, we pooled the majority of our ad spend into digital, working closely with our media partner, Pivotus. We A/B tested the messaging and capture the audience with retargeting strategies.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8P2070zTQ8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"NWO were great to work with and really took an interest in our organisation and what we’re trying to achieve, and this showed through in the quality and the emotion captured in the final production. \\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19297,22440,1,'Rural Aid','2021-07-16 05:33:06','2021-07-16 05:33:06','8b7a3c22-c21c-42f6-ab29-96dadd6f40ff',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Through drought, flood and fire, Rural Aid is there.',NULL,NULL,'Rural Aid is there for local farmers doing it tough, providing water, fodder and financial and counselling help. \n\nProviding emergency support is the priority, but it was time for Rural Aid to shift its focus to building resilience and sustainability in rural communities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eLK3JgwUaW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22211\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QCEdWG6OxJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The nature of the campaign, featuring real farmers telling their story, was insightful for many staff who might not get the chance to speak with or hear from farmers very often.\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-a1ZSpKzNhg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/572803469\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4IaqNatl2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The campaign\",\"plainText\":\"Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-h8vXLy3MfI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"The revenue being generated from the campaign has had a very positive impact on our revenue budget for the month of June, which has a direct impact on the beneficiaries of our fundraising—Aussie farmers.\\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V9u5ejPQKv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/572802923\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ShWv4eC3wX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Strategy\",\"plainText\":\"Campaign messaging was two-tired: an EOFY donations appeal and a thank you. Both worked to be targeted at existing donors, or people captured in existing databases or prospecting. \\n\\nTo ensure the greatest value for money for our client, we pooled the majority of our ad spend into digital, working closely with our media partner, Pivotus. We A/B tested the messaging and capture the audience with retargeting strategies.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8P2070zTQ8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"NWO were great to work with and really took an interest in our organisation and what we’re trying to achieve, and this showed through in the quality and the emotion captured in the final production. \\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19299,22442,1,'Rural Aid','2021-07-16 05:37:58','2021-07-16 05:37:58','1395c957-e103-401a-aea5-a16fc11060cb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Through drought, flood and fire, Rural Aid is there.',NULL,NULL,'Rural Aid is there for local farmers doing it tough, providing water, fodder and financial and counselling help. \n\nProviding emergency support is the priority, but it was time for Rural Aid to shift its focus to building resilience and sustainability in rural communities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eLK3JgwUaW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22211\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QCEdWG6OxJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The nature of the campaign, featuring real farmers telling their story, was insightful for many staff who might not get the chance to speak with or hear from farmers very often.\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-a1ZSpKzNhg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/572803469\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4IaqNatl2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The campaign\",\"plainText\":\"Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-h8vXLy3MfI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"The revenue being generated from the campaign has had a very positive impact on our revenue budget for the month of June, which has a direct impact on the beneficiaries of our fundraising—Aussie farmers.\\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V9u5ejPQKv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/572802923\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ShWv4eC3wX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Strategy\",\"plainText\":\"Campaign messaging was two-tired: an EOFY donations appeal and a thank you. Both worked to be targeted at existing donors, or people captured in existing databases or prospecting. \\n\\nTo ensure the greatest value for money for our client, we pooled the majority of our ad spend into digital, working closely with our media partner, Pivotus. We A/B tested the messaging and capture the audience with retargeting strategies.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8P2070zTQ8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"NWO were great to work with and really took an interest in our organisation and what we’re trying to achieve, and this showed through in the quality and the emotion captured in the final production. \\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19301,22444,1,'Rural Aid','2021-07-16 05:43:18','2021-07-16 05:43:18','63abcfba-1821-4907-bf11-a18da93aa81b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Through drought, flood and fire, Rural Aid is there.',NULL,NULL,'Rural Aid is there for local farmers doing it tough, providing water, fodder and financial and counselling help. \n\nProviding emergency support is the priority, but it was time for Rural Aid to shift its focus to building resilience and sustainability in rural communities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eLK3JgwUaW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22211\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QCEdWG6OxJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The nature of the campaign, featuring real farmers telling their story, was insightful for many staff who might not get the chance to speak with or hear from farmers very often.\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-a1ZSpKzNhg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/572803469\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4IaqNatl2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The campaign\",\"plainText\":\"Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-h8vXLy3MfI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"The revenue being generated from the campaign has had a very positive impact on our revenue budget for the month of June, which has a direct impact on the beneficiaries of our fundraising—Aussie farmers.\\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V9u5ejPQKv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/572802923\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ShWv4eC3wX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Strategy\",\"plainText\":\"Campaign messaging was two-tired: an EOFY donations appeal and a thank you. Both worked to be targeted at existing donors, or people captured in existing databases or prospecting. \\n\\nTo ensure the greatest value for money for our client, we pooled the majority of our ad spend into digital, working closely with our media partner, Pivotus. We A/B tested the messaging and capture the audience with retargeting strategies.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8P2070zTQ8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"NWO were great to work with and really took an interest in our organisation and what we’re trying to achieve, and this showed through in the quality and the emotion captured in the final production. \\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rhaSMwFESv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Creative\",\"plainText\":\"We proposed a campaign based on interviews with Australian farmers who had experiences with Rural Aid.\\n\\nIt’s an honest campaign of full of real people, stories and emotions.\\n\\nWith COVID-19 still hanging around, our approach ensured we avoided potential interruptions, travel restrictions and cancellation costs for our client.\\n\\nThe videos are compilations of interviews with various farmers across the spectrum of industries that are framed by a ‘zoom screen’ visual device, which adds layers of authenticity to the personal stories. \\n\\nSimilarly the display banners and static Facebook posts used the zoom imagery and visual devices—all pointing people to the EOFY Rural Aid landing page where viewers could view the full videos and choose to donate.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3MV0vWsZV5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"I am very proud to have been a part of this campaign. Even though I was part of the storytelling process behind the scenes, I was moved at every stage of the process by how tough these Australians have it on a daily basis, and how candid they were with us about their stories. \",\"plainText\":\"**— Kat Scott, producer**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19303,22449,1,'My Mental Health','2021-07-16 05:46:03','2021-07-16 05:46:03','16180b69-8882-494f-ae5d-e2346476f601',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Find the support you need',NULL,NULL,'Our solution was to develop the My Mental Health website, in collaboration with the My Mental Health Service Navigation team, to provide this vital information.\n\nThe My Mental Health Service Navigation team also support health professionals, consumers and carers making a referral to the PHN-commissioned services.','Brisbane North PHN needed a website developed for consumers, carers, service providers and health professionals that provides information about mental health, alcohol and other drugs and suicide prevention services in the region.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5pfvkvSNrw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"21979\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SKyajV0yX2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Challenge\",\"plainText\":\"Brisbane North PHN needed a website developed for consumers, carers, service providers and health professionals that provides information about mental health, alcohol and other drugs and suicide prevention services in the region.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-czaT07FwtQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"21999\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19305,22455,1,'Right time, right place','2021-07-16 05:47:20','2021-07-16 05:47:20','85bed0db-ea04-41ea-a122-a407555b228f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Do I go to the ED?',NULL,NULL,'Our solution was to show the people who live in the region, and the large numbers of holidaymakers who travel to the region, that the emergency department isn\'t the only option.\n\nThe healthdirect app shows options for medical care based on your location, so you don\'t need to wait in a crowded emergency department.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22011\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-35PPqrQPxG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Challenge\",\"plainText\":\"It\'s a constant focus for PHNs, hospital and health services and state governments all over Australia: people are going to the emergency department with non-life-threatening sickness or injuries.\\n\\nTwo years after its last campaign on the topic, the PHN asked us to refresh the campaign strategy, messaging and creative.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22012\",\"22010\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19307,22461,1,'Safe to See your GP','2021-07-16 05:49:16','2021-07-16 05:49:16','1351ee66-44ca-48c5-a92e-7df2fa8d78a1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Getting back to a normal health routine',NULL,NULL,'Community members were staying at home and not visiting their GP and other health services for regular checkups. To avoid more serious health and wellbeing problems down the track, the community needed to know it was safe to go back to regular appointments. We originally developed this campaign for Darling Downs West Moreton PHN, and Brisbane North PHN requested it run in its region as well.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xsaPgG0g7g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22160\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4A9pSO81W9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Challenge\",\"plainText\":\"With life beginning to return to normal in Queensland, the Darling Downs West Moreton and Brisbane North PHN wanted to encourage their communities to go back to a normal routine—especially for healthcare.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bd28dXEaNq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22159\",\"22158\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19309,22481,1,'Tritium','2021-07-16 05:51:53','2021-07-16 05:51:53','410d8078-6712-400c-a3c6-8400036f951f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'We turned up the voltage on the launch of the new brand with this show-stopping animated brand video.\nWith an appetite only satisfied by global domination and a powerful vision of energy freedom, Tritium’s journey has only just begun… but they started in the fast lane. We developed a set of foundational branding elements that showcase who Tritium is now and prepares for their exciting future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GLSN3YDBFD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"22084\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0hdQHDSnBf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Challenge\",\"plainText\":\"As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league.\\n\\nTritium commissioned us to update their brand—to put their internal culture of creativity and innovation on display and to share it with the world.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dz4aGfI5jw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22083\",\"22085\",\"22086\",\"22087\",\"22088\",\"22089\",\"22090\",\"22091\",\"22092\",\"22093\",\"22094\",\"22095\",\"22096\",\"22097\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19310,22482,1,'Tritium','2021-07-16 05:52:30','2021-07-16 05:52:30','dac5a31c-68c5-45b5-876f-bd7acb907aa2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'We turned up the voltage on the launch of the new brand with this show-stopping animated brand video.\nWith an appetite only satisfied by global domination and a powerful vision of energy freedom, Tritium’s journey has only just begun… but they started in the fast lane. We developed a set of foundational branding elements that showcase who Tritium is now and prepares for their exciting future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GLSN3YDBFD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"22084\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0hdQHDSnBf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Challenge\",\"plainText\":\"As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league.\\n\\nTritium commissioned us to update their brand—to put their internal culture of creativity and innovation on display and to share it with the world.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dz4aGfI5jw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22083\",\"22085\",\"22086\",\"22087\",\"22088\",\"22089\",\"22090\",\"22091\",\"22092\",\"22093\",\"22094\",\"22095\",\"22096\",\"22097\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19312,22489,1,'Medical Mums','2021-07-16 05:54:32','2021-07-16 05:54:32','dd31ca9f-71e1-488c-b6e4-833ea304e8b1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Medical Mums busting vaccination myths',NULL,NULL,'Our market research showed the people in our target market trust their GP\'s advice.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-g4kMbqzyF9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"18584\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4HgMjSCVKR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Challenge\",\"plainText\":\"Market research in 2015 was showing the anti-vax movement was taking hold.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-mIR2TIGy0g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"18597\",\"18598\",\"18599\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19314,22502,1,'Reasons to Stay','2021-07-16 05:59:13','2021-07-16 05:59:13','061d2141-752d-4b29-9548-cd7ad8bd1dff',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Helping to find reasons to stay',NULL,NULL,'The concept and campaign name of Reasons to Stay emerged from our conversations with people who have lived experience of suicide—both survivors and families of those who had passed away.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Wuk6XROt8C\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19060\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oOjGZKhNOe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Challenge\",\"plainText\":\"Suicide take around eight Australians from us every day and it needs to stop. Brisbane North PHN commissioned us to join the fight against suicide and produce a powerful digital campaign, speaking to people at risk of suicide and to their friends and family.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lo0qiknCPj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19061\",\"19062\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-trgV3eAZYY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19081\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xEmYfpUPYn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19064\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19066\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new3\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19067\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new4\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19068\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447109\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19316,22513,1,'No. 3 campaign','2021-07-16 06:00:44','2021-07-16 06:00:44','082036bb-5135-41de-b4f8-f83524aa388a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a No. 3? Anything that shouldn\'t go down the loo.',NULL,NULL,'The playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way. We set out to capture the attention of kids and adults with an innovative and integrated campaign that featured interactive and creative design, animation, illustration, merchandise and video.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19052\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ubOOdTH4px\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Challenge\",\"plainText\":\"Water and waste treatment are essential services and flushing the wrong items down the toilet costs Queensland Urban Utilities $200 million every year. Urban Utilities asked us to think of an original, creative campaign idea that would resonate with Queensland families. Our solution was the No. 3 campaign.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3JfRbb2a6Q\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19059\",\"19058\",\"19057\",\"19056\",\"19055\",\"19054\",\"19053\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19317,22514,1,'No. 3 campaign','2021-07-16 06:01:47','2021-07-16 06:01:47','9f45ce07-99ba-4ea5-a159-5d36a7c3f04c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a No. 3? Anything that shouldn\'t go down the loo.',NULL,NULL,'The playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way. We set out to capture the attention of kids and adults with an innovative and integrated campaign that featured interactive and creative design, animation, illustration, merchandise and video.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19052\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ubOOdTH4px\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Challenge\",\"plainText\":\"Water and waste treatment are essential services and flushing the wrong items down the toilet costs Queensland Urban Utilities $200 million every year. Urban Utilities asked us to think of an original, creative campaign idea that would resonate with Queensland families. Our solution was the No. 3 campaign.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3JfRbb2a6Q\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19059\",\"19058\",\"19057\",\"19056\",\"19055\",\"19054\",\"19053\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19319,22522,1,'DFV Campaign','2021-07-16 06:04:48','2021-07-16 06:04:48','1407673c-8d94-449c-800a-ba4bab696361',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What do you do when home isn\'t safe',NULL,NULL,'Produced during the height of COVID-19 in 2020 when our team was working remotely, this campaign is a testament to our skill and processes.\n\nDFV can take many forms, but it leaves people feeling isolated, scared and out of control. Our campaign builds awareness of what DFV can feel like and encourages anyone affected to reach out for help.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EhhNBGoCzT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17780\",\"16839\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SSuFI1ciJX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Challenge\",\"plainText\":\"To slow the spread of COVID-19, people were spending more time at home. But for some, home isn\'t the safe place it should be. The Queensland Government commissioned us to develop a campaign to build awareness of domestic and family violence and the support available.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VXy61QNrbJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17784\",\"16838\",\"16840\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19321,22524,1,'DFV Campaign','2021-07-16 06:05:41','2021-07-16 06:05:41','7f446534-3802-438f-ab20-0402ddb3bd7f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What do you do when home isn\'t safe',NULL,NULL,'Produced during the height of COVID-19 in 2020 when our team was working remotely, this campaign is a testament to our skill and processes.\n\nDFV can take many forms, but it leaves people feeling isolated, scared and out of control. Our campaign builds awareness of what DFV can feel like and encourages anyone affected to reach out for help.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EhhNBGoCzT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17780\",\"16839\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SSuFI1ciJX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Challenge\",\"plainText\":\"To slow the spread of COVID-19, people were spending more time at home. But for some, home isn\'t the safe place it should be. The Queensland Government commissioned us to develop a campaign to build awareness of domestic and family violence and the support available.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VXy61QNrbJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17784\",\"16838\",\"16840\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19323,22526,1,'DFV Campaign','2021-07-16 06:07:33','2021-07-16 06:07:33','6e65ee47-57e2-4e8b-a77d-9350c6b0def7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What do you do when home isn\'t safe',NULL,NULL,'Produced during the height of COVID-19 in 2020 when our team was working remotely, this campaign is a testament to our skill and processes.\n\nDFV can take many forms, but it leaves people feeling isolated, scared and out of control. Our campaign builds awareness of what DFV can feel like and encourages anyone affected to reach out for help.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EhhNBGoCzT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17780\",\"16839\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SSuFI1ciJX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Challenge\",\"plainText\":\"To slow the spread of COVID-19, people were spending more time at home. But for some, home isn\'t the safe place it should be. The Queensland Government commissioned us to develop a campaign to build awareness of domestic and family violence and the support available.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VXy61QNrbJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16838\",\"16840\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19325,22528,1,'Reasons to Stay','2021-07-16 06:18:20','2021-07-16 06:18:20','d96c3863-efc3-4160-adb4-fd6a82921abf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Helping to find reasons to stay',NULL,NULL,'The concept and campaign name of Reasons to Stay emerged from our conversations with people who have lived experience of suicide—both survivors and families of those who had passed away.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Wuk6XROt8C\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19060\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oOjGZKhNOe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Challenge\",\"plainText\":\"Suicide take around eight Australians from us every day and it needs to stop. Brisbane North PHN commissioned us to join the fight against suicide and produce a powerful digital campaign, speaking to people at risk of suicide and to their friends and family.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lo0qiknCPj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19061\",\"19062\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-trgV3eAZYY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19081\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xEmYfpUPYn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19064\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19066\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new3\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19067\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new4\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19068\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447109\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19327,22530,1,'Reasons to Stay','2021-07-16 07:15:35','2021-07-16 07:15:35','a237c10c-85d1-44b7-a63f-1a20965e9bf5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Helping to find reasons to stay',NULL,NULL,'The concept and campaign name of Reasons to Stay emerged from our conversations with people who have lived experience of suicide—both survivors and families of those who had passed away.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Wuk6XROt8C\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19060\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oOjGZKhNOe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Challenge\",\"plainText\":\"Suicide take around eight Australians from us every day and it needs to stop. Brisbane North PHN commissioned us to join the fight against suicide and produce a powerful digital campaign, speaking to people at risk of suicide and to their friends and family.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lo0qiknCPj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19061\",\"19062\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-trgV3eAZYY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19081\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xEmYfpUPYn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19064\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19066\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new3\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19067\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new4\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19068\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447109\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19329,22532,1,'Rural Aid','2021-07-16 07:23:19','2021-07-16 07:23:19','8d7f4c27-3432-4a5e-9083-00c3e36a70fd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Through drought, flood and fire, Rural Aid is there.',NULL,NULL,'Rural Aid is there for local farmers doing it tough, providing water, fodder and financial and counselling help. \n\nProviding emergency support is the priority, but it was time for Rural Aid to shift its focus to building resilience and sustainability in rural communities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eLK3JgwUaW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22211\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QCEdWG6OxJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The nature of the campaign, featuring real farmers telling their story, was insightful for many staff who might not get the chance to speak with or hear from farmers very often.\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-a1ZSpKzNhg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575717915\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4IaqNatl2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The campaign\",\"plainText\":\"Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-h8vXLy3MfI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"The revenue being generated from the campaign has had a very positive impact on our revenue budget for the month of June, which has a direct impact on the beneficiaries of our fundraising—Aussie farmers.\\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V9u5ejPQKv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/572802923\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ShWv4eC3wX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Strategy\",\"plainText\":\"Campaign messaging was two-tired: an EOFY donations appeal and a thank you. Both worked to be targeted at existing donors, or people captured in existing databases or prospecting. \\n\\nTo ensure the greatest value for money for our client, we pooled the majority of our ad spend into digital, working closely with our media partner, Pivotus. We A/B tested the messaging and capture the audience with retargeting strategies.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8P2070zTQ8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"NWO were great to work with and really took an interest in our organisation and what we’re trying to achieve, and this showed through in the quality and the emotion captured in the final production. \\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rhaSMwFESv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Creative\",\"plainText\":\"We proposed a campaign based on interviews with Australian farmers who had experiences with Rural Aid.\\n\\nIt’s an honest campaign of full of real people, stories and emotions.\\n\\nWith COVID-19 still hanging around, our approach ensured we avoided potential interruptions, travel restrictions and cancellation costs for our client.\\n\\nThe videos are compilations of interviews with various farmers across the spectrum of industries that are framed by a ‘zoom screen’ visual device, which adds layers of authenticity to the personal stories. \\n\\nSimilarly the display banners and static Facebook posts used the zoom imagery and visual devices—all pointing people to the EOFY Rural Aid landing page where viewers could view the full videos and choose to donate.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3MV0vWsZV5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"I am very proud to have been a part of this campaign. Even though I was part of the storytelling process behind the scenes, I was moved at every stage of the process by how tough these Australians have it on a daily basis, and how candid they were with us about their stories. \",\"plainText\":\"**— Kat Scott, producer**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19331,22534,1,'Rural Aid','2021-07-16 10:25:14','2021-07-16 10:25:14','727712af-1076-4a2c-acaf-a9b1098db229',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Through drought, flood and fire, Rural Aid is there.',NULL,NULL,'Rural Aid is there for local farmers doing it tough, providing water, fodder and financial and counselling help. \n\nProviding emergency support is the priority, but it was time for Rural Aid to shift its focus to building resilience and sustainability in rural communities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eLK3JgwUaW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22211\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QCEdWG6OxJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The nature of the campaign, featuring real farmers telling their story, was insightful for many staff who might not get the chance to speak with or hear from farmers very often.\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-a1ZSpKzNhg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575770982\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4IaqNatl2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The campaign\",\"plainText\":\"Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-h8vXLy3MfI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"The revenue being generated from the campaign has had a very positive impact on our revenue budget for the month of June, which has a direct impact on the beneficiaries of our fundraising—Aussie farmers.\\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V9u5ejPQKv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/572802923\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ShWv4eC3wX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Strategy\",\"plainText\":\"Campaign messaging was two-tired: an EOFY donations appeal and a thank you. Both worked to be targeted at existing donors, or people captured in existing databases or prospecting. \\n\\nTo ensure the greatest value for money for our client, we pooled the majority of our ad spend into digital, working closely with our media partner, Pivotus. We A/B tested the messaging and capture the audience with retargeting strategies.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8P2070zTQ8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"NWO were great to work with and really took an interest in our organisation and what we’re trying to achieve, and this showed through in the quality and the emotion captured in the final production. \\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rhaSMwFESv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Creative\",\"plainText\":\"We proposed a campaign based on interviews with Australian farmers who had experiences with Rural Aid.\\n\\nIt’s an honest campaign of full of real people, stories and emotions.\\n\\nWith COVID-19 still hanging around, our approach ensured we avoided potential interruptions, travel restrictions and cancellation costs for our client.\\n\\nThe videos are compilations of interviews with various farmers across the spectrum of industries that are framed by a ‘zoom screen’ visual device, which adds layers of authenticity to the personal stories. \\n\\nSimilarly the display banners and static Facebook posts used the zoom imagery and visual devices—all pointing people to the EOFY Rural Aid landing page where viewers could view the full videos and choose to donate.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3MV0vWsZV5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"I am very proud to have been a part of this campaign. Even though I was part of the storytelling process behind the scenes, I was moved at every stage of the process by how tough these Australians have it on a daily basis, and how candid they were with us about their stories. \",\"plainText\":\"**— Kat Scott, producer**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19332,22535,1,'Rural Aid','2021-07-16 10:26:43','2021-07-16 10:26:43','14623728-5345-41f9-89a8-2d0181d0ecb1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Through drought, flood and fire, Rural Aid is there.',NULL,NULL,'Rural Aid is there for local farmers doing it tough, providing water, fodder and financial and counselling help. \n\nProviding emergency support is the priority, but it was time for Rural Aid to shift its focus to building resilience and sustainability in rural communities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eLK3JgwUaW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22211\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QCEdWG6OxJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The nature of the campaign, featuring real farmers telling their story, was insightful for many staff who might not get the chance to speak with or hear from farmers very often.\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-a1ZSpKzNhg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575770982\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4IaqNatl2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The campaign\",\"plainText\":\"Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-h8vXLy3MfI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"The revenue being generated from the campaign has had a very positive impact on our revenue budget for the month of June, which has a direct impact on the beneficiaries of our fundraising—Aussie farmers.\\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V9u5ejPQKv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/572802923\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ShWv4eC3wX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Strategy\",\"plainText\":\"Campaign messaging was two-tired: an EOFY donations appeal and a thank you. Both worked to be targeted at existing donors, or people captured in existing databases or prospecting. \\n\\nTo ensure the greatest value for money for our client, we pooled the majority of our ad spend into digital, working closely with our media partner, Pivotus. We A/B tested the messaging and capture the audience with retargeting strategies.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8P2070zTQ8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"NWO were great to work with and really took an interest in our organisation and what we’re trying to achieve, and this showed through in the quality and the emotion captured in the final production. \\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rhaSMwFESv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Creative\",\"plainText\":\"We proposed a campaign based on interviews with Australian farmers who had experiences with Rural Aid.\\n\\nIt’s an honest campaign of full of real people, stories and emotions.\\n\\nWith COVID-19 still hanging around, our approach ensured we avoided potential interruptions, travel restrictions and cancellation costs for our client.\\n\\nThe videos are compilations of interviews with various farmers across the spectrum of industries that are framed by a ‘zoom screen’ visual device, which adds layers of authenticity to the personal stories. \\n\\nSimilarly the display banners and static Facebook posts used the zoom imagery and visual devices—all pointing people to the EOFY Rural Aid landing page where viewers could view the full videos and choose to donate.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3MV0vWsZV5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"I am very proud to have been a part of this campaign. Even though I was part of the storytelling process behind the scenes, I was moved at every stage of the process by how tough these Australians have it on a daily basis, and how candid they were with us about their stories. \",\"plainText\":\"**— Kat Scott, producer**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19334,22537,1,'Rural Aid','2021-07-16 10:54:02','2021-07-16 10:54:02','7ea08fa2-57bc-4720-8c5c-94c1619f3f38',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Through drought, flood and fire, Rural Aid is there.',NULL,NULL,'Rural Aid is there for local farmers doing it tough, providing water, fodder and financial and counselling help. \n\nProviding emergency support is the priority, but it was time for Rural Aid to shift its focus to building resilience and sustainability in rural communities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eLK3JgwUaW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22211\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QCEdWG6OxJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The nature of the campaign, featuring real farmers telling their story, was insightful for many staff who might not get the chance to speak with or hear from farmers very often.\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-a1ZSpKzNhg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575770982\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4IaqNatl2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The campaign\",\"plainText\":\"Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-h8vXLy3MfI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"The revenue being generated from the campaign has had a very positive impact on our revenue budget for the month of June, which has a direct impact on the beneficiaries of our fundraising—Aussie farmers.\\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V9u5ejPQKv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575779518\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ShWv4eC3wX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Strategy\",\"plainText\":\"Campaign messaging was two-tired: an EOFY donations appeal and a thank you. Both worked to be targeted at existing donors, or people captured in existing databases or prospecting. \\n\\nTo ensure the greatest value for money for our client, we pooled the majority of our ad spend into digital, working closely with our media partner, Pivotus. We A/B tested the messaging and capture the audience with retargeting strategies.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8P2070zTQ8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"NWO were great to work with and really took an interest in our organisation and what we’re trying to achieve, and this showed through in the quality and the emotion captured in the final production. \\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rhaSMwFESv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Creative\",\"plainText\":\"We proposed a campaign based on interviews with Australian farmers who had experiences with Rural Aid.\\n\\nIt’s an honest campaign of full of real people, stories and emotions.\\n\\nWith COVID-19 still hanging around, our approach ensured we avoided potential interruptions, travel restrictions and cancellation costs for our client.\\n\\nThe videos are compilations of interviews with various farmers across the spectrum of industries that are framed by a ‘zoom screen’ visual device, which adds layers of authenticity to the personal stories. \\n\\nSimilarly the display banners and static Facebook posts used the zoom imagery and visual devices—all pointing people to the EOFY Rural Aid landing page where viewers could view the full videos and choose to donate.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3MV0vWsZV5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"I am very proud to have been a part of this campaign. Even though I was part of the storytelling process behind the scenes, I was moved at every stage of the process by how tough these Australians have it on a daily basis, and how candid they were with us about their stories. \",\"plainText\":\"**— Kat Scott, producer**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19336,22539,1,'Rural Aid','2021-07-16 11:00:57','2021-07-16 11:00:57','3004fea5-c4c6-4bfd-8a7b-77d4788af6dd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Through drought, flood and fire, Rural Aid is there.',NULL,NULL,'Rural Aid is there for local farmers doing it tough, providing water, fodder and financial and counselling help. \n\nProviding emergency support is the priority, but it was time for Rural Aid to shift its focus to building resilience and sustainability in rural communities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eLK3JgwUaW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22211\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QCEdWG6OxJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The nature of the campaign, featuring real farmers telling their story, was insightful for many staff who might not get the chance to speak with or hear from farmers very often.\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-a1ZSpKzNhg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575770982\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4IaqNatl2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The campaign\",\"plainText\":\"Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-h8vXLy3MfI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"The revenue being generated from the campaign has had a very positive impact on our revenue budget for the month of June, which has a direct impact on the beneficiaries of our fundraising—Aussie farmers.\\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V9u5ejPQKv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575781107\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ShWv4eC3wX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Strategy\",\"plainText\":\"Campaign messaging was two-tired: an EOFY donations appeal and a thank you. Both worked to be targeted at existing donors, or people captured in existing databases or prospecting. \\n\\nTo ensure the greatest value for money for our client, we pooled the majority of our ad spend into digital, working closely with our media partner, Pivotus. We A/B tested the messaging and capture the audience with retargeting strategies.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8P2070zTQ8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"NWO were great to work with and really took an interest in our organisation and what we’re trying to achieve, and this showed through in the quality and the emotion captured in the final production. \\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rhaSMwFESv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Creative\",\"plainText\":\"We proposed a campaign based on interviews with Australian farmers who had experiences with Rural Aid.\\n\\nIt’s an honest campaign of full of real people, stories and emotions.\\n\\nWith COVID-19 still hanging around, our approach ensured we avoided potential interruptions, travel restrictions and cancellation costs for our client.\\n\\nThe videos are compilations of interviews with various farmers across the spectrum of industries that are framed by a ‘zoom screen’ visual device, which adds layers of authenticity to the personal stories. \\n\\nSimilarly the display banners and static Facebook posts used the zoom imagery and visual devices—all pointing people to the EOFY Rural Aid landing page where viewers could view the full videos and choose to donate.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3MV0vWsZV5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"I am very proud to have been a part of this campaign. Even though I was part of the storytelling process behind the scenes, I was moved at every stage of the process by how tough these Australians have it on a daily basis, and how candid they were with us about their stories. \",\"plainText\":\"**— Kat Scott, producer**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19338,22541,1,'Rural Aid','2021-07-16 11:10:03','2021-07-16 11:10:03','efd87982-bba3-4dbc-97fe-07dad0b2db05',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Through drought, flood and fire, Rural Aid is there.',NULL,NULL,'Rural Aid is there for local farmers doing it tough, providing water, fodder and financial and counselling help. \n\nProviding emergency support is the priority, but it was time for Rural Aid to shift its focus to building resilience and sustainability in rural communities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eLK3JgwUaW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22211\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QCEdWG6OxJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The nature of the campaign, featuring real farmers telling their story, was insightful for many staff who might not get the chance to speak with or hear from farmers very often.\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-a1ZSpKzNhg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575770982\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4IaqNatl2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The campaign\",\"plainText\":\"Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-h8vXLy3MfI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"The revenue being generated from the campaign has had a very positive impact on our revenue budget for the month of June, which has a direct impact on the beneficiaries of our fundraising—Aussie farmers.\\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V9u5ejPQKv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575783623\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ShWv4eC3wX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Strategy\",\"plainText\":\"Campaign messaging was two-tired: an EOFY donations appeal and a thank you. Both worked to be targeted at existing donors, or people captured in existing databases or prospecting. \\n\\nTo ensure the greatest value for money for our client, we pooled the majority of our ad spend into digital, working closely with our media partner, Pivotus. We A/B tested the messaging and capture the audience with retargeting strategies.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8P2070zTQ8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"NWO were great to work with and really took an interest in our organisation and what we’re trying to achieve, and this showed through in the quality and the emotion captured in the final production. \\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rhaSMwFESv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Creative\",\"plainText\":\"We proposed a campaign based on interviews with Australian farmers who had experiences with Rural Aid.\\n\\nIt’s an honest campaign of full of real people, stories and emotions.\\n\\nWith COVID-19 still hanging around, our approach ensured we avoided potential interruptions, travel restrictions and cancellation costs for our client.\\n\\nThe videos are compilations of interviews with various farmers across the spectrum of industries that are framed by a ‘zoom screen’ visual device, which adds layers of authenticity to the personal stories. \\n\\nSimilarly the display banners and static Facebook posts used the zoom imagery and visual devices—all pointing people to the EOFY Rural Aid landing page where viewers could view the full videos and choose to donate.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3MV0vWsZV5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"I am very proud to have been a part of this campaign. Even though I was part of the storytelling process behind the scenes, I was moved at every stage of the process by how tough these Australians have it on a daily basis, and how candid they were with us about their stories. \",\"plainText\":\"**— Kat Scott, producer**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19339,22542,1,'Contact ','2021-07-20 03:44:03','2021-07-20 03:44:03','f9b33036-6373-4373-892b-c124ace5361d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dJRNyHHzcn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Contact us\",\"headingColour\":\"text-white\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Like what you see? Get in touch with us—we can’t wait to meet you.\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}}},\"buttons\":\"\",\"sectionTitle\":\"Contact NWO\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-172EAYLfJn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-JIUNKK7uSu\",\"content\":{\"fields\":{\"freeformForm\":\"2\",\"backgroundColour\":\"bg-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24605,27808,1,'Ryan Murray - Brand Audit Submission - 21 Jul, 2021','2021-07-21 00:29:49','2021-07-21 00:29:49','c7f5d4cc-1174-4e55-b4c2-d18d5ccb762a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','Blajkadsf sd;hsdjlfh dslfh',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24606,27809,1,'Ryan Murray - Brand Audit Submission - 21 Jul, 2021','2021-07-21 00:49:47','2021-07-21 00:49:47','da5f1d7d-05cc-4efb-b60f-583347b42f74',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','Blajkadsf sd;hsdjlfh dslfh',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24607,27810,1,'Ryan Murray - Brand Audit Submission - 21 Jul, 2021','2021-07-21 01:09:46','2021-07-21 01:09:46','49246075-cb68-4c40-a470-6515e1442054',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','Blajkadsf sd;hsdjlfh dslfh',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24608,27811,1,'Ryan Murray - Brand Audit Submission - 21 Jul, 2021','2021-07-21 01:28:46','2021-07-21 01:28:46','732ce2d5-e70c-40a3-a64b-48492987ded9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','Blajkadsf sd;hsdjlfh dslfh',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24609,27812,1,'Ryan Murray - Brand Audit Submission - 21 Jul, 2021','2021-07-21 01:48:46','2021-07-21 01:48:46','28c35208-d6f4-4af3-97a3-cc1a2d8dbe0e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','Blajkadsf sd;hsdjlfh dslfh',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24610,27813,1,'Ryan Murray - Brand Audit Submission - 21 Jul, 2021','2021-07-21 02:08:46','2021-07-21 02:08:46','ec99a506-206f-43a6-9164-ff7f7786ee28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','Blajkadsf sd;hsdjlfh dslfh',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24611,27814,1,'Ryan Murray - Brand Audit Submission - 21 Jul, 2021','2021-07-21 02:28:46','2021-07-21 02:28:46','a408041f-acc6-42d4-99ae-de51174169c5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','Blajkadsf sd;hsdjlfh dslfh',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24612,27815,1,'Ryan Murray - Brand Audit Submission - 21 Jul, 2021','2021-07-21 02:34:58','2021-07-21 02:34:58','c85c6e7e-8c37-49c2-907b-b885236e1141',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','Blajkadsf sd;hsdjlfh dslfh',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24613,27816,1,'Ryan Murray - Brand Audit Submission - 21 Jul, 2021','2021-07-21 02:35:28','2021-07-21 02:35:28','22f0f76a-f613-41d8-b69b-79a0d86098ff',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','Blajkadsf sd;hsdjlfh dslfh',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24614,27817,1,'Ryan Murray - Brand Audit Submission - 21 Jul, 2021','2021-07-21 02:35:58','2021-07-21 02:35:58','96f421a7-5fd0-4a77-a7f7-bb12a117bd99',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','Blajkadsf sd;hsdjlfh dslfh',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24615,27818,1,'Ryan Murray - Brand Audit Submission - 21 Jul, 2021','2021-07-21 02:36:28','2021-07-21 02:36:28','b28fff58-4c12-40f2-bd4d-2207fac1ba08',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','Blajkadsf sd;hsdjlfh dslfh',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24616,27819,1,'Ryan Murray - Brand Audit Submission - 21 Jul, 2021','2021-07-21 02:36:58','2021-07-21 02:36:58','5758dd8b-b8ef-4744-b97a-b6689c47dd75',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','Blajkadsf sd;hsdjlfh dslfh',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24617,27820,1,'Ryan Murray - Brand Audit Submission - 21 Jul, 2021','2021-07-21 02:37:30','2021-07-21 02:37:30','08549b89-f7de-4794-8f21-e3addc27399e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','Blajkadsf sd;hsdjlfh dslfh',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24618,27821,1,'Ryan Murray - Brand Audit Submission - 21 Jul, 2021','2021-07-21 02:38:00','2021-07-21 02:38:00','023f8ef0-b180-4e74-99e1-ee50ad5d16cf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','Blajkadsf sd;hsdjlfh dslfh',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24619,27822,1,'Ryan Murray - Brand Audit Submission - 21 Jul, 2021','2021-07-21 02:38:32','2021-07-21 02:38:32','bf14283f-6572-4781-967e-a32d69cf7ee1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','Blajkadsf sd;hsdjlfh dslfh',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24620,27823,1,'Ryan Murray - Brand Audit Submission - 21 Jul, 2021','2021-07-21 02:39:02','2021-07-21 02:39:02','afd55c1a-8565-4086-9da0-f54f8366ce61',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','Blajkadsf sd;hsdjlfh dslfh',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24621,27824,1,'Ryan Murray - Brand Audit Submission - 21 Jul, 2021','2021-07-21 02:40:46','2021-07-21 02:40:46','9eb26ff6-7ffe-4993-a18e-272d31c663ac',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','Blajkadsf sd;hsdjlfh dslfh',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24623,27826,1,'I Stock 579745094','2021-07-21 23:27:28','2021-07-21 23:27:28','1ccffda4-ed3f-4092-bd6f-46ffb3e49e6d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/iStock-579745094.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x1728_crop_center-center_82_line/iStock-579745094.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/iStock-579745094.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1440_crop_center-center_82_line/iStock-579745094.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/iStock-579745094.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1152_crop_center-center_82_line/iStock-579745094.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/iStock-579745094.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/iStock-579745094.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1536x864_crop_center-center_82_line/iStock-579745094.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_3072x1728_crop_center-center_82_line/iStock-579745094.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1280x720_crop_center-center_82_line/iStock-579745094.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2560x1440_crop_center-center_82_line/iStock-579745094.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_1024x576_crop_center-center_82_line/iStock-579745094.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_2048x1152_crop_center-center_82_line/iStock-579745094.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_768x432_crop_center-center_82_line/iStock-579745094.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/work/_640x360_crop_center-center_82_line/iStock-579745094.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"5226\",\"originalImageHeight\":\"2940\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AdYapplugxHIwPQFgQM//AKhVDWf7Nvd85EhLc/fXj9a5mypLvqfrXN7Np2udHPpex//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#785128\",\"#1e1106\",\"#f4cf90\",\"#dc9c51\",\"#c1ac96\"],\"lightness\":39,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24624,27827,1,'Rural Aid','2021-07-21 23:27:44','2021-07-21 23:27:44','2ad160b3-d95a-494c-b18a-1c10d1ac682e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Through drought, flood and fire, Rural Aid is there.',NULL,NULL,'Rural Aid is there for local farmers doing it tough, providing water, fodder and financial and counselling help. \n\nProviding emergency support is the priority, but it was time for Rural Aid to shift its focus to building resilience and sustainability in rural communities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eLK3JgwUaW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22211\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QCEdWG6OxJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The nature of the campaign, featuring real farmers telling their story, was insightful for many staff who might not get the chance to speak with or hear from farmers very often.\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-a1ZSpKzNhg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575770982\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4IaqNatl2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The campaign\",\"plainText\":\"Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-h8vXLy3MfI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"The revenue being generated from the campaign has had a very positive impact on our revenue budget for the month of June, which has a direct impact on the beneficiaries of our fundraising—Aussie farmers.\\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V9u5ejPQKv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575783623\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ShWv4eC3wX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Strategy\",\"plainText\":\"Campaign messaging was two-tired: an EOFY donations appeal and a thank you. Both worked to be targeted at existing donors, or people captured in existing databases or prospecting. \\n\\nTo ensure the greatest value for money for our client, we pooled the majority of our ad spend into digital, working closely with our media partner, Pivotus. We A/B tested the messaging and capture the audience with retargeting strategies.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8P2070zTQ8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"NWO were great to work with and really took an interest in our organisation and what we’re trying to achieve, and this showed through in the quality and the emotion captured in the final production. \\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rhaSMwFESv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Creative\",\"plainText\":\"We proposed a campaign based on interviews with Australian farmers who had experiences with Rural Aid.\\n\\nIt’s an honest campaign of full of real people, stories and emotions.\\n\\nWith COVID-19 still hanging around, our approach ensured we avoided potential interruptions, travel restrictions and cancellation costs for our client.\\n\\nThe videos are compilations of interviews with various farmers across the spectrum of industries that are framed by a ‘zoom screen’ visual device, which adds layers of authenticity to the personal stories. \\n\\nSimilarly the display banners and static Facebook posts used the zoom imagery and visual devices—all pointing people to the EOFY Rural Aid landing page where viewers could view the full videos and choose to donate.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3MV0vWsZV5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"I am very proud to have been a part of this campaign. Even though I was part of the storytelling process behind the scenes, I was moved at every stage of the process by how tough these Australians have it on a daily basis, and how candid they were with us about their stories. \",\"plainText\":\"**— Kat Scott, producer**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24651,27854,1,'Break away from the same-same with custom illustration','2021-07-22 05:14:54','2021-07-22 05:14:54','09adb48a-ea3c-48b4-9675-f11a6b42a9ca',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tiYExhhMPf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"There’s nothing more special than something made just for you.\",\"headingColour\":\"text-black\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"You hold it loudly and proudly for all to see—and they notice because there’s nothing else in the world quite like it. And this makes you treasure it that little bit more.\\n\\nThe dream of an illustrator is to have time, budget and ability to craft a bespoke masterpiece for every job that comes across the desk.\\n\\nThat dream doesn’t turn to reality very often. But that doesn’t mean your brand has to revert to using the same old stock illustrations everyone else uses either.\\n\\nThere are so many ways to get over those hurdles when a project doesn’t have time or budget to allow for a custom piece.\\n\\nA lot of the time, stock illustration can be tweaked to give it the edge it needs to stand out from the crowd.\\n\\nChange up the colours, mix up the style and jazz up the faces.\\n\\nSometimes stock forms the base for us to build something fresh. And other times there might already be the perfect stock illustration that tells the right story without much tweaking at all.\\n\\nWhatever the constraints—budget, time, brief—there’s always a way break free. It just takes some thinking outside of the box. If you’re drowning in a sea of same-same, come chat to us and we’ll get you out of there in no time.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24653,27856,1,'Why you need a six-month comms strategy for your website','2021-07-22 05:16:05','2021-07-22 05:16:05','67bc0e35-664c-4552-86ec-075549749b9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o8eD7sK4R6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"You know the feeling: an ad promise draws you in, you click through to the website and you’re impressed because it looks super slick.\\n\\nThen you actually read it. And now you’re disappointed because it doesn’t actually say anything other than the surface detail of a business.\\n\\nThese websites are so common they’ve earned the term ‘brochure’ website. They look great, but that’s it.\\n\\nWe see it all the time and think it’s such a shame. Why? Because a website can be so. much. more.\\n\\nHow can your website escape the dreaded brochure effect? In short, don’t set and forget.\\n\\nGood websites move, breathe and live—just like your business does.\\n\\nEveryone knows it’s good practice to regularly update your website messaging and functionality. But you need to actually get around to doing it and—more importantly—have a reason for making a change.\\n\\nSo, what’s your strategy?\\n\\nA website communication and engagement strategy has so many benefits. But the biggest one by far is SEO.\\n\\nBy biggest we don’t mean the most confusing or time-consuming. It simply boils down to content. Fresh content tells Google: This is who I am! This is what I do! See me! Hear me!\\n\\nGoogle’s algorithms are super clever because they serve up the sort of content people want. But it means Google can only give people the content they want if it knows about your business and what you’re offering.\\n\\nOf course, there are some technical aspects to consider. But your best SEO strategy is a long-term communications plan.\\n\\nDo you know what the next six months for your website content looks like? What can you offer your customers other than opening hours and where you’re located?\\n\\nBy developing a digital communications strategy, your website gets updated regularly, which helps Google share your message with the right people at the right time.\\n\\nPotential customers will find you, engage with you and trust you enough to get in touch.\\n\\nYou have so many options for interesting content. It could be a thought-leadership piece, event, media release, whitepaper, testimonial—the list can go on.\\n\\nWe have a huge amount of communications tools and angles we can develop to bolster your web presence.\\n\\nGoogle also loves a fast, responsive website. Optimising your website by using the latest version of your content management system will ensure your site is running smoothly and as fast as it can.\\n\\nLikewise, this will make your site more secure and help prevent security breaches (particularly important if you use WordPress).\\n\\nWe also offer long-term website maintenance plans. These include detailed server monitoring and ensuring your CMS and plugins are up-to-date.\\n\\nFor more critical sites, we offer zero downtime code-update deployments.\\n\\nTalk to us about a long-term strategy for your website so it can be more than just another ‘brochure site’.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24654,27857,1,'Why you need a six-month comms strategy for your website','2021-07-22 05:19:49','2021-07-22 05:19:49','6bd932a0-2962-423c-8bf5-8547a00e160c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o8eD7sK4R6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"You know the feeling: an ad promise draws you in, you click through to the website and you’re impressed because it looks super slick.\\n\\nThen you actually read it. And now you’re disappointed because it doesn’t actually say anything other than the surface detail of a business.\\n\\nThese websites are so common they’ve earned the term ‘brochure’ website. They look great, but that’s it.\\n\\nWe see it all the time and think it’s such a shame. Why? Because a website can be so. much. more.\\n\\nHow can your website escape the dreaded brochure effect? In short, don’t set and forget.\\n\\nGood websites move, breathe and live—just like your business does.\\n\\nEveryone knows it’s good practice to regularly update your website messaging and functionality. But you need to actually get around to doing it and—more importantly—have a reason for making a change.\\n\\nSo, what’s your strategy?\\n\\nA website communication and engagement strategy has so many benefits. But the biggest one by far is SEO.\\n\\nBy biggest we don’t mean the most confusing or time-consuming. It simply boils down to content. Fresh content tells Google: This is who I am! This is what I do! See me! Hear me!\\n\\nGoogle’s algorithms are super clever because they serve up the sort of content people want. But it means Google can only give people the content they want if it knows about your business and what you’re offering.\\n\\nOf course, there are some technical aspects to consider. But your best SEO strategy is a long-term communications plan.\\n\\nDo you know what the next six months for your website content looks like? What can you offer your customers other than opening hours and where you’re located?\\n\\nBy developing a digital communications strategy, your website gets updated regularly, which helps Google share your message with the right people at the right time.\\n\\nPotential customers will find you, engage with you and trust you enough to get in touch.\\n\\nYou have so many options for interesting content. It could be a thought-leadership piece, event, media release, whitepaper, testimonial—the list can go on.\\n\\nWe have a huge amount of communications tools and angles we can develop to bolster your web presence.\\n\\nGoogle also loves a fast, responsive website. Optimising your website by using the latest version of your content management system will ensure your site is running smoothly and as fast as it can.\\n\\nLikewise, this will make your site more secure and help prevent security breaches (particularly important if you use WordPress).\\n\\nWe also offer long-term website maintenance plans. These include detailed server monitoring and ensuring your CMS and plugins are up-to-date.\\n\\nFor more critical sites, we offer zero downtime code-update deployments.\\n\\nTalk to us about a long-term strategy for your website so it can be more than just another ‘brochure site’.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24656,27859,1,'Pretty or powerful? And can you have it all?','2021-07-22 05:20:42','2021-07-22 05:20:42','33cc384e-12fc-4d90-b983-0d16856480a9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XzpqqhzWYc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Being a commercial creative means someone is hoping, expecting and paying for a result.\\n\\nBut just because something is creative in its execution doesn’t mean it’s going to be effective in achieving its goal.\\n\\nHere are five pitfalls to avoid when procuring creative services:\\n\\nHiring a single creative, like a designer, to be a whole creative team. Your supplier will end up working in one strength and many weaknesses.\\nProcuring from a supplier who can use design software but isn’t a designer. The work will miss the mark despite looking okay.\\nWorking with a graphic designer who isn’t skilled in the type of design you need (like brand design). You’ll get a pretty logo lacking in brand story and meaning.\\nJumping straight into design without a strategy. You’ll receive design work that’s lovely, even beautiful… but not strategic.\\nFailing to define what success looks like. Your supplier’s work will lack purpose. Instead, make sure you have a clear goal that measures the biggest outcome of all: return on investment.\\nSo yes, creative work can be both pretty and powerful. And you can have it all… if you invest in a team of strategically focused creatives.\\n\\nCreative agencies cost more but are teams for a reason. We\'re much more powerful together than on our own.\\n\\nJust like a hand of aces vs a single 3.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24658,27861,1,'Seven mistakes people make building websites','2021-07-22 05:30:30','2021-07-22 05:30:30','fc613a6f-321f-4200-bb6d-c0303e434f98',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uGC0jkS6q3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new3\",\"new1\"],\"blocks\":{\"new3\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Open your website, the window to your business. What do you see?\",\"headingColour\":\"text-black\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The advertising you’ve done, the marketing budget you’ve spent, the countless planning meetings your team has attended—all that time and money you’ve invested has driven a potential customer to your website.\\n\\nNow is the moment.\\n\\nAfter months—maybe years—of effort, your potential customer will make their decision in seconds.\\n\\nThey may love what they see and continue to be interested. Or they may leave, with their memory of you going up in smoke and your investment with it.\\n\\nThat’s why it’s so important to build an effective website.\\n\\nFraming a website to contain everything you need is challenging. Some websites become too word-heavy, while others lack structure and narrative.\\n\\nGetting your website right from the beginning can save you a lot of pain in the long run.\\n\\nHere\'s our tips to tackling website mistakes.\\n\\n**1. Unacknowledged expectations**\\nWhat do you expect your website to do for you? You want this investment to count, so be informed, decide what you need and be intentional with your allocated budget. There are only two options—either start with careful planning and consultation and spend a realistic budget, or jump in with assumptions … and experience scope-creep, frustration and the need to pour more money in later. Your time and money (and sanity) are too valuable to waste on option two. So, choose wisely.\\n\\nIt’s also important to understand the purpose of your website. A website for a website’s sake helps no-one. Your business is unique so your website should be, too. Make it crystal clear—state who you are, what you do and what you promise your customers. Set yourself up for success by providing your developer with a clear website purpose, an informed plan and a predetermined budget.\\n\\n**2. A guess is no good**\\nAnalytics, metrics or key performance indicators (KPIs)—they’re all clever ways to study the website user journey. What do you need your website to achieve? This will depend on what kind of product or service you offer and the kind of experience you want to create for the user. Lay out your objectives and match them with KPIs.\\n\\nThere are plenty of ways to get insight into your website. Consider bounce rates, session duration or pages per session metrics. Or you could sharpen your content strategy by watching goal conversion rates of passive to active website users. Understanding your metrics and the goals you want to achieve will also help you to understand how your website interacts with its digital ecosystem.\\n\\n**3. It’s not for you**\\nIt might be about you, but the website isn’t for you. Optimising your website starts with learning what your users are responding well to. How are they getting to your website? What kind of content are they reading? When do they read it? How long are they staying?\\n\\nBy understanding your metrics you can shape a truly effective website experience for your customers. It’s all in the detail—from content creation to search engine optimisation (we have some helpful tips [here](http://newwordorder.com.au/top-20-tips-seo/)).\\n\\n**4. Information overload**\\nYour website is where your potential customers will go to check your credibility. Credibility is about trust. One way to build trust is to position yourself and your organisation as experts. However, credibility isn’t just about what you know—it’s about who you are. Include stories and testimonials about you and your organisation to avoid information overload. Then, potential customers will leave your website satisfied that you can be trusted ... and they\'re one step closer to doing business with you.\\n\\n**5. Losing the user**\\nMany people complain about feeling lost on websites. The customer journey should be clear. If the information on your website is simple and structured, you can guide visitors on the path you’d like them to take. Use tabs and sub-pages for different categories, and make it logical. For best results, spend time studying user movements and running trials and tests. Over time your predictions will become more accurate as you get to know your audience.\\n\\n**6. Wasted words**\\nCapture your customers quickly. As we’ve previously discussed in our Writing for (readable) web article, there are some hallmarks we use when writing web copy for our clients. Here are a few of them:\\n\\n- short, effective sentences (say the same information with less)\\n- sub-headings and headings containing keywords\\n- everyday words the average reader can easily understand (plain English)\\n- direct language\\n- consistent, logical structuring of information.\\n\\n**7. Don’t be unfriendly**\\nHow does your website display on mobile devices and tablets? Due to the growth in user visits from non-desktop devices, it’s now safe to say that an unresponsive website—regardless of your industry and demographic—will cost you customers and revenue. When your website isn’t responsive, your customers won’t look for the closest desktop computer ... they’ll look for another website. Instead, make your website as friendly as possible to give your customers the same quality of experience online that they experience offline.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24661,27864,1,'The building blocks of branding','2021-07-22 05:33:33','2021-07-22 05:33:33','fa77eaf4-ad56-4916-a0d9-fe92e02b1be5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Ct01dSZeJa\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Through 20 years of branding experience, we’ve come to understand stakeholder engagement is essential for a brand to have cut-through.\\n\\nWe’ve engaged with our clients’ stakeholders for many years and in many ways—ranging from formal, formative market research through to in-depth focus groups, workshops, community forums, brand satisfaction surveys and phone interviews.\\n\\nNo matter the method, what really counts is that we capture how people relate to your brand. That relationship leads to relevance and then the ultimate goal: resonance.\\n\\n**Relationship**\\nEvery great brand is built on relationship.\\n\\nWhen you form healthy relationships with stakeholders, you open yourself up to a range of opinions. Generally, feedback gets more constructive as the relationship grows healthier.\\n\\nIf you’re the brand manager, it can feel a bit like tough love at first—but it does get easier.\\n\\n**Relevance**\\nSo much more than a logo, brands are heavy with meaning for stakeholders. And so if the environment changes but your brand doesn’t, the meaning is lost.\\n\\nA lot of the stakeholder feedback we hear about brands is that they’re outdated or lack appeal. Without relevance, your stakeholders no longer feel the love.\\n\\nConstantly retune yourself to your stakeholders and you’ll keep fulfilling their needs.\\n\\n**Resonance**\\nResonance is where understanding meets impact.\\n\\nA brand rich with resonance is the holy grail of marketing and, true to legend, few reach it.\\n\\nThat’s because resonance means your brand is a perfect fit for your stakeholders’ environment, pain points, wants and emotional connection.\\n\\nResonance engenders attention and respect, and turns want to need.\\n\\nAnd when stakeholders can’t live without your brand? Happy days.\\n\\n**The 3Rs start here**\\nWhether you’re looking to name and brand or rename and rebrand, your brand journey starts with understanding your stakeholders.\\n\\nTalk to us about how to take your first steps.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24663,27866,1,'How to really consult your stakeholders','2021-07-22 05:34:28','2021-07-22 05:34:28','bd1233e4-f644-42a3-b84d-869cd2096d56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p>Whether they are inside, outside, removed or closely involved—stakeholders have the insight businesses need for long-term growth and sustainability.</p>\n<p>If they are a stakeholder, they have a connection with you.</p>\n<p>And like any other relationship, they need to know their connection, time and opinions are valued.</p>\n<p>It often takes an open mind to find what works for you and the stakeholder.</p>\n<p>Finding this place of mutual benefit can lead to business growth and longevity.</p>\n<p>We’ve broken down our approach to nurturing stakeholder relationships for meaningful engagement.</p>\n<h2>Your stakeholder is anyone who can be impacted by your business.</h2>\n<p>Once you really understand this, you’ll start to notice the cycle of impact between the stakeholder and your business. And, this is partly why we begin to engage with stakeholders—to understand how different groups are responding, reacting or behaving.</p>\n<h3>But who are they, really?</h3>\n<p>Now, go deeper to really understand the nuances of your stakeholder groups.</p>\n<p>Your engagement plan should be detailed enough to allow for different levels of accessibility, and demographic and cultural considerations. The better you nuance, the greater the feeling of respect and care you’ll engender.</p>\n<h3>What do I need to achieve here?</h3>\n<p>There are varying degrees of impact across the common types of engagement—inform, consult, involve, collaborate and empower. Every impact is a win for you.</p>\n<p>By inviting stakeholders to provide advice and guidance, you are showing interest and genuine regard for their opinions.</p>\n<h3>Let’s talk</h3>\n<p>A healthy and productive conversation is two-way. We pursue positive and productive conversations with stakeholders because we need to understand stakeholder perspectives, and we need to hear it from them.</p>\n<h3>Bye for now</h3>\n<p>The conversation will close, but the relationship isn’t over. Stakeholders have given their time, effort and reflections. It’s your turn to respond with accuracy, timeliness and balance.</p>\n<p>The truth is, these conversations take patience, a steadfast commitment to values, sometimes sacrifice, and always an open mind.</p>\n<p>At NWO, we care about stakeholder engagement because we regularly witness the impact it has on the health of businesses and organisations.</p>\n<p>Is it important to you?</p>\n<p><a href=\"http://newwordorder.com.au/#contact\">Talk to us about stakeholder engagement today</a>.</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1GVSJLHr6Y\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":\"\",\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24665,27868,1,'How to really consult your stakeholders','2021-07-22 05:35:48','2021-07-22 05:35:48','3e9772ce-2c8f-439b-9219-f5edd55aee80',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WmytH7pZEr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Whether they are inside, outside, removed or closely involved—stakeholders have the insight businesses need for long-term growth and sustainability.\\n\\nIf they are a stakeholder, they have a connection with you.\\n\\nAnd like any other relationship, they need to know their connection, time and opinions are valued.\\n\\nIt often takes an open mind to find what works for you and the stakeholder.\\n\\nFinding this place of mutual benefit can lead to business growth and longevity.\\n\\nWe’ve broken down our approach to nurturing stakeholder relationships for meaningful engagement.\\n\\n**Your stakeholder is anyone who can be impacted by your business.**\\nOnce you really understand this, you’ll start to notice the cycle of impact between the stakeholder and your business. And, this is partly why we begin to engage with stakeholders—to understand how different groups are responding, reacting or behaving.\\n\\n**But who are they, really?**\\nNow, go deeper to really understand the nuances of your stakeholder groups.\\n\\nYour engagement plan should be detailed enough to allow for different levels of accessibility, and demographic and cultural considerations. The better you nuance, the greater the feeling of respect and care you’ll engender.\\n\\n**What do I need to achieve here?**\\nThere are varying degrees of impact across the common types of engagement—inform, consult, involve, collaborate and empower. Every impact is a win for you.\\n\\nBy inviting stakeholders to provide advice and guidance, you are showing interest and genuine regard for their opinions.\\n\\n**Let’s talk**\\nA healthy and productive conversation is two-way. We pursue positive and productive conversations with stakeholders because we need to understand stakeholder perspectives, and we need to hear it from them.\\n\\n**Bye for now**\\nThe conversation will close, but the relationship isn’t over. Stakeholders have given their time, effort and reflections. It’s your turn to respond with accuracy, timeliness and balance.\\n\\nThe truth is, these conversations take patience, a steadfast commitment to values, sometimes sacrifice, and always an open mind.\\n\\nAt NWO, we care about stakeholder engagement because we regularly witness the impact it has on the health of businesses and organisations.\\n\\nIs it important to you?\\n\\nTalk to us about stakeholder engagement today.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24667,27870,1,'Top 20 tips for SEO','2021-07-22 05:38:16','2021-07-22 05:38:16','46809de2-177a-4f3d-85c9-2550d3beb901',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hssF3i5OvL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Good SEO starts with a bit of DIY.\\n\\nSure, there are loads of experts and agencies out there that specialise in the field, and many of them do a great job.\\n\\nBut there’s actually plenty you can do yourself before you even need to look for an external supplier to help with your SEO.\\n\\nGet your SEO checklist\\nTo get you started on your next SEO DIY project, we’ve put together a top 20 checklist.\\n\\n1. Do your research—Identify key search terms, words and phrases, and check out competitors’ sites.\\n2. Work out where you are now—As soon as possible, keep a regular record of where your site currently ranks in search results, using various words, phrases and questions.\\n3. Work out where you want to be—Define your goals early on so you can measure your progress and adjust your strategy as you go along.\\n4. Make your content relevant—Search engines provide the most relevant results to a searcher’s query, so write content based on what people might search for.\\n5. Improve the quality of your content—Publish helpful, useful articles, videos and other types of media that people will want to engage with.\\n6. Think about user experience—Make sure your site is easy to navigate, with plenty of relevant internal links to keep users on your page for longer.\\n7. Ensure your site is responsive—Is your website designed to resize for viewing on desktop, tablet and mobile devices? It should be.\\n8. Include plenty of internal links—This helps pushes traffic around your site, building higher ‘trust signals’ for Google, and gives your audience more to read.\\n9. Write meta descriptions—This short paragraph of text under your page’s URL in search results can really improve the chance of someone clicking on it.\\n10. Include title tags—These few key words describing the page and your brand name tell visitors and search engines what your site is about in the most succinct way possible.\\n11. Tag your images—Search engines cannot ‘see’ images but they can ‘read’, so it’s important to describe any pictures you upload to your site.\\n12. Create evergreen content—More thoughtful and practical advice-based articles can create better results over the long term. Top 20 list, anyone?\\n13. Consider your domain name—Having a ‘keyword-rich’ domain name can improve ranking but can also lead to closer scrutiny by search engines.\\n14. Think about headlines—Make headlines as snappy, attractive and descriptive as possible, and stay away from clickbait.\\n15. Turn on comments—This helps generate a community of engaged users and, whatever their opinion of your content, you’ll know it’s being read.\\n16. Go social—By using social media channels as a genuine way to interact with customers, you can help generate interest in your brand and drive traffic to your site.\\n17. Watch your on-site advertising—Intrusive ads can destroy the pleasure of viewing your content and also slow your site down (not good for SEO).\\n18. Avoid keyword stuffing—Some search engines will actually penalise you for obviously overusing certain keywords on your pages.\\n19. Be aware of duplicated content—If two sites publish identical content, search engines will only index one of those pages.\\n20. Don’t hide links and text—Doing things like hiding white keyword-stuffed text on a white background or hiding a link in a full stop is likely to be punished by search engines.\\n\\nFollow these tips and you’ll be well on your way up the rankings in no time!\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24670,27873,1,'Why you need a six-month comms strategy for your website','2021-07-22 05:52:23','2021-07-22 05:52:23','0ea6bd2d-8681-4e6f-a331-e400f3c7a17f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"},\"content\":[{\"type\":\"text\",\"text\":\"You know the feeling: an ad promise draws you in, you click through to the website and you’re impressed because it looks super slick.\"}]},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"},\"content\":[{\"type\":\"text\",\"text\":\"Then you actually read it. And now you’re disappointed because it doesn’t actually say anything other than the surface detail of a business.\"}]},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"},\"content\":[{\"type\":\"text\",\"text\":\"These websites are so common they’ve earned the term ‘brochure’ website. They look great, but that’s it.\"}]},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"},\"content\":[{\"type\":\"text\",\"text\":\"We see it all the time and think it’s such a shame. Why? Because a website can be so. much. more.\"}]},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"},\"content\":[{\"type\":\"text\",\"text\":\"How can your website escape the dreaded brochure effect? In short, don’t set and forget.\"}]},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"},\"content\":[{\"type\":\"text\",\"text\":\"Good websites move, breathe and live—just like your business does.\"}]},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"},\"content\":[{\"type\":\"text\",\"text\":\"Everyone knows it’s good practice to regularly update your website messaging and functionality. But you need to actually get around to doing it and—more importantly—have a reason for making a change.\"}]},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"},\"content\":[{\"type\":\"text\",\"text\":\"So, what’s your strategy?\"}]},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"},\"content\":[{\"type\":\"text\",\"text\":\"A website communication and engagement strategy has so many benefits. But the biggest one by far is SEO.\"}]},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"},\"content\":[{\"type\":\"text\",\"text\":\"By biggest we don’t mean the most confusing or time-consuming. It simply boils down to content. Fresh content tells Google: This is who I am! This is what I do! See me! Hear me!\"}]},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"},\"content\":[{\"type\":\"text\",\"text\":\"Google’s algorithms are super clever because they serve up the sort of content people want. But it means Google can only give people the content they want if it knows about your business and what you’re offering.\"}]},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"},\"content\":[{\"type\":\"text\",\"text\":\"Of course, there are some technical aspects to consider. But your best SEO strategy is a long-term communications plan.\"}]},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"},\"content\":[{\"type\":\"text\",\"text\":\"Do you know what the next six months for your website content looks like? What can you offer your customers other than opening hours and where you’re located?\"}]},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"},\"content\":[{\"type\":\"text\",\"text\":\"By developing a digital communications strategy, your website gets updated regularly, which helps Google share your message with the right people at the right time.\"}]},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"},\"content\":[{\"type\":\"text\",\"text\":\"Potential customers will find you, engage with you and trust you enough to get in touch.\"}]},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"},\"content\":[{\"type\":\"text\",\"text\":\"You have so many options for interesting content. It could be a thought-leadership piece, event, media release, whitepaper, testimonial—the list can go on.\"}]},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"},\"content\":[{\"type\":\"text\",\"text\":\"We have a huge amount of communications tools and angles we can develop to bolster your web presence.\"}]},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"},\"content\":[{\"type\":\"text\",\"text\":\"Google also loves a fast, responsive website. Optimising your website by using the latest version of your content management system will ensure your site is running smoothly and as fast as it can.\"}]},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"},\"content\":[{\"type\":\"text\",\"text\":\"Likewise, this will make your site more secure and help prevent security breaches (particularly important if you use WordPress).\"}]},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"},\"content\":[{\"type\":\"text\",\"text\":\"We also offer long-term website maintenance plans. These include detailed server monitoring and ensuring your CMS and plugins are up-to-date.\"}]},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"},\"content\":[{\"type\":\"text\",\"text\":\"For more critical sites, we offer zero downtime code-update deployments.\"}]},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"},\"content\":[{\"type\":\"text\",\"text\":\"Talk to us about a long-term strategy for your website so it can be more than just another ‘brochure site’.\"}]}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24671,27874,1,'Seven mistakes people make building websites','2021-07-22 05:55:18','2021-07-22 05:55:18','57e610eb-96e1-4afb-8ba9-dd54f2c3126e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24673,27876,1,'Seven mistakes people make building websites','2021-07-22 05:56:43','2021-07-22 05:56:43','5eb9d608-b8a1-434d-a067-b1e62f02d279',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ceS0FthEM6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-zgzhmh66J7\",\"content\":{\"fields\":{\"backgroundColour\":\"bg-white\",\"sectionHeight\":\"h-auto\",\"plainText\":\"The advertising you’ve done, the marketing budget you’ve spent, the countless planning meetings your team has attended—all that time and money you’ve invested has driven a potential customer to your website.\\n\\nNow is the moment.\\n\\nAfter months—maybe years—of effort, your potential customer will make their decision in seconds.\\n\\nThey may love what they see and continue to be interested. Or they may leave, with their memory of you going up in smoke and your investment with it.\\n\\nThat’s why it’s so important to build an effective website.\\n\\nFraming a website to contain everything you need is challenging. Some websites become too word-heavy, while others lack structure and narrative.\\n\\nGetting your website right from the beginning can save you a lot of pain in the long run.\\n\\nHere\'s our tips to tackling website mistakes.\\n\\n**1. Unacknowledged expectations**\\n\\nWhat do you expect your website to do for you? You want this investment to count, so be informed, decide what you need and be intentional with your allocated budget. There are only two options—either start with careful planning and consultation and spend a realistic budget, or jump in with assumptions … and experience scope-creep, frustration and the need to pour more money in later. Your time and money (and sanity) are too valuable to waste on option two. So, choose wisely.\\n\\nIt’s also important to understand the purpose of your website. A website for a website’s sake helps no-one. Your business is unique so your website should be, too. Make it crystal clear—state who you are, what you do and what you promise your customers. Set yourself up for success by providing your developer with a clear website purpose, an informed plan and a predetermined budget.\\n\\n**2. A guess is no good**\\n\\nAnalytics, metrics or key performance indicators (KPIs)—they’re all clever ways to study the website user journey. What do you need your website to achieve? This will depend on what kind of product or service you offer and the kind of experience you want to create for the user. Lay out your objectives and match them with KPIs.\\n\\nThere are plenty of ways to get insight into your website. Consider bounce rates, session duration or pages per session metrics. Or you could sharpen your content strategy by watching goal conversion rates of passive to active website users. Understanding your metrics and the goals you want to achieve will also help you to understand how your website interacts with its digital ecosystem.\\n\\n**3. It’s not for you**\\n\\nIt might be about you, but the website isn’t for you. Optimising your website starts with learning what your users are responding well to. How are they getting to your website? What kind of content are they reading? When do they read it? How long are they staying?\\n\\nBy understanding your metrics you can shape a truly effective website experience for your customers. It’s all in the detail—from content creation to search engine optimisation (we have some helpful tips [here](http://newwordorder.com.au/top-20-tips-seo/)).\\n\\n**4. Information overload**\\n\\nYour website is where your potential customers will go to check your credibility. Credibility is about trust. One way to build trust is to position yourself and your organisation as experts. However, credibility isn’t just about what you know—it’s about who you are. Include stories and testimonials about you and your organisation to avoid information overload. Then, potential customers will leave your website satisfied that you can be trusted ... and they\'re one step closer to doing business with you.\\n\\n**5. Losing the user**\\n\\nMany people complain about feeling lost on websites. The customer journey should be clear. If the information on your website is simple and structured, you can guide visitors on the path you’d like them to take. Use tabs and sub-pages for different categories, and make it logical. For best results, spend time studying user movements and running trials and tests. Over time your predictions will become more accurate as you get to know your audience.\\n\\n**6. Wasted words**\\n\\nCapture your customers quickly. As we’ve previously discussed in our Writing for (readable) web article, there are some hallmarks we use when writing web copy for our clients. Here are a few of them:\\n\\n- short, effective sentences (say the same information with less)\\n- sub-headings and headings containing keywords\\n- everyday words the average reader can easily understand (plain English)\\n- direct language\\n- consistent, logical structuring of information.\\n\\n**7. Don’t be unfriendly**\\n\\nHow does your website display on mobile devices and tablets? Due to the growth in user visits from non-desktop devices, it’s now safe to say that an unresponsive website—regardless of your industry and demographic—will cost you customers and revenue. When your website isn’t responsive, your customers won’t look for the closest desktop computer ... they’ll look for another website. Instead, make your website as friendly as possible to give your customers the same quality of experience online that they experience offline.\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24675,27878,1,'The building blocks of branding','2021-07-22 05:57:58','2021-07-22 05:57:58','401097d2-d8c4-48e7-86f7-7267826050dd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-h0rIv02KE0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-zgzhmh66J7\",\"content\":{\"fields\":{\"backgroundColour\":\"bg-white\",\"sectionHeight\":\"h-auto\",\"plainText\":\"Through 20 years of branding experience, we’ve come to understand stakeholder engagement is essential for a brand to have cut-through.\\n\\nWe’ve engaged with our clients’ stakeholders for many years and in many ways—ranging from formal, formative market research through to in-depth focus groups, workshops, community forums, brand satisfaction surveys and phone interviews.\\n\\nNo matter the method, what really counts is that we capture how people relate to your brand. That relationship leads to relevance and then the ultimate goal: resonance.\\n\\n#### **Relationship**\\n\\nEvery great brand is built on relationship.\\n\\nWhen you form healthy relationships with stakeholders, you open yourself up to a range of opinions. Generally, feedback gets more constructive as the relationship grows healthier.\\n\\nIf you’re the brand manager, it can feel a bit like tough love at first—but it does get easier.\\n\\n#### **Relevance**\\n\\nSo much more than a logo, brands are heavy with meaning for stakeholders. And so if the environment changes but your brand doesn’t, the meaning is lost.\\n\\nA lot of the stakeholder feedback we hear about brands is that they’re outdated or lack appeal. Without relevance, your stakeholders no longer feel the love.\\n\\nConstantly retune yourself to your stakeholders and you’ll keep fulfilling their needs.\\n\\n#### **Resonance**\\n\\nResonance is where understanding meets impact.\\n\\nA brand rich with resonance is the holy grail of marketing and, true to legend, few reach it.\\n\\nThat’s because resonance means your brand is a perfect fit for your stakeholders’ environment, pain points, wants and emotional connection.\\n\\nResonance engenders attention and respect, and turns want to need.\\n\\nAnd when stakeholders can’t live without your brand? Happy days.\\n\\n#### **The 3Rs start here**\\n\\nWhether you’re looking to name and brand or rename and rebrand, your brand journey starts with understanding your stakeholders.\\n\\nTalk to us about how to take your first steps.\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24677,27880,1,'Why you need a six-month comms strategy for your website','2021-07-22 05:59:20','2021-07-22 05:59:20','a5449977-9ded-4bf3-b9f1-8d23e80103a2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Ag2Hjm9ifL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-zgzhmh66J7\",\"content\":{\"fields\":{\"backgroundColour\":\"bg-white\",\"sectionHeight\":\"h-auto\",\"plainText\":\"You know the feeling: an ad promise draws you in, you click through to the website and you’re impressed because it looks super slick.\\n\\nThen you actually read it. And now you’re disappointed because it doesn’t actually say anything other than the surface detail of a business.\\n\\nThese websites are so common they’ve earned the term ‘brochure’ website. They look great, but that’s it.\\n\\nWe see it all the time and think it’s such a shame. Why? Because a website can be so. much. more.\\n\\nHow can your website escape the dreaded brochure effect? In short, don’t set and forget.\\n\\nGood websites move, breathe and live—just like your business does.\\n\\nEveryone knows it’s good practice to regularly update your website messaging and functionality. But you need to actually get around to doing it and—more importantly—have a reason for making a change.\\n\\n#### So, what’s your strategy?\\n\\nA website communication and engagement strategy has so many benefits. But the biggest one by far is SEO.\\n\\nBy biggest we don’t mean the most confusing or time-consuming. It simply boils down to content. Fresh content tells Google: This is who I am! This is what I do! See me! Hear me!\\n\\nGoogle’s algorithms are super clever because they serve up the sort of content people want. But it means Google can only give people the content they want if it knows about your business and what you’re offering.\\n\\nOf course, there are some technical aspects to consider. But your best SEO strategy is a long-term communications plan.\\n\\nDo you know what the next six months for your website content looks like? What can you offer your customers other than opening hours and where you’re located?\\n\\nBy developing a digital communications strategy, your website gets updated regularly, which helps Google share your message with the right people at the right time.\\nPotential customers will find you, engage with you and trust you enough to get in touch.\\n\\nYou have so many options for interesting content. It could be a thought-leadership piece, event, media release, whitepaper, testimonial—the list can go on.\\n\\nWe have a huge amount of communications tools and angles we can develop to bolster your web presence.\\nGoogle also loves a fast, responsive website. Optimising your website by using the latest version of your content management system will ensure your site is running smoothly and as fast as it can.\\n\\nLikewise, this will make your site more secure and help prevent security breaches (particularly important if you use WordPress).\\n\\nWe also offer long-term website maintenance plans. These include detailed server monitoring and ensuring your CMS and plugins are up-to-date.\\n\\nFor more critical sites, we offer zero downtime code-update deployments.\\n\\nTalk to us about a long-term strategy for your website so it can be more than just another ‘brochure site’.\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24679,27882,1,'Top 20 tips for SEO','2021-07-22 06:04:40','2021-07-22 06:04:40','04f4ca4a-392b-459d-9e59-eb785663f1c0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-O6poAgcqdE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Good SEO starts with a bit of DIY.\",\"headingColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZQX7vXsd49\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-zgzhmh66J7\",\"content\":{\"fields\":{\"backgroundColour\":\"bg-white\",\"sectionHeight\":\"h-auto\",\"plainText\":\"Sure, there are loads of experts and agencies out there that specialise in the field, and many of them do a great job.\\n\\nBut there’s actually plenty you can do yourself before you even need to look for an external supplier to help with your SEO.\\n\\nGet your SEO checklist\\nTo get you started on your next SEO DIY project, we’ve put together a top 20 checklist.\\n\\n1. Do your research—Identify key search terms, words and phrases, and check out competitors’ sites.\\n2. Work out where you are now—As soon as possible, keep a regular record of where your site currently ranks in search results, using various words, phrases and questions.\\n3. Work out where you want to be—Define your goals early on so you can measure your progress and adjust your strategy as you go along.\\n4. Make your content relevant—Search engines provide the most relevant results to a searcher’s query, so write content based on what people might search for.\\n5. Improve the quality of your content—Publish helpful, useful articles, videos and other types of media that people will want to engage with.\\n6. Think about user experience—Make sure your site is easy to navigate, with plenty of relevant internal links to keep users on your page for longer.\\n7. Ensure your site is responsive—Is your website designed to resize for viewing on desktop, tablet and mobile devices? It should be.\\n8. Include plenty of internal links—This helps pushes traffic around your site, building higher ‘trust signals’ for Google, and gives your audience more to read.\\n9. Write meta descriptions—This short paragraph of text under your page’s URL in search results can really improve the chance of someone clicking on it.\\n10. Include title tags—These few key words describing the page and your brand name tell visitors and search engines what your site is about in the most succinct way possible.\\n11. Tag your images—Search engines cannot ‘see’ images but they can ‘read’, so it’s important to describe any pictures you upload to your site.\\n12. Create evergreen content—More thoughtful and practical advice-based articles can create better results over the long term. Top 20 list, anyone?\\n13. Consider your domain name—Having a ‘keyword-rich’ domain name can improve ranking but can also lead to closer scrutiny by search engines.\\n14. Think about headlines—Make headlines as snappy, attractive and descriptive as possible, and stay away from clickbait.\\n15. Turn on comments—This helps generate a community of engaged users and, whatever their opinion of your content, you’ll know it’s being read.\\n16. Go social—By using social media channels as a genuine way to interact with customers, you can help generate interest in your brand and drive traffic to your site.\\n17. Watch your on-site advertising—Intrusive ads can destroy the pleasure of viewing your content and also slow your site down (not good for SEO).\\n18. Avoid keyword stuffing—Some search engines will actually penalise you for obviously overusing certain keywords on your pages.\\n19. Be aware of duplicated content—If two sites publish identical content, search engines will only index one of those pages.\\n20. Don’t hide links and text—Doing things like hiding white keyword-stuffed text on a white background or hiding a link in a full stop is likely to be punished by search engines.\\n\\nFollow these tips and you’ll be well on your way up the rankings in no time!\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24681,27884,1,'Top 20 tips for SEO','2021-07-22 06:05:23','2021-07-22 06:05:23','6d338a9d-4a29-43e2-b735-ed67a353a821',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZQX7vXsd49\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-zgzhmh66J7\",\"content\":{\"fields\":{\"backgroundColour\":\"bg-white\",\"sectionHeight\":\"h-auto\",\"plainText\":\"#### Good SEO starts with a bit of DIY.\\n\\nSure, there are loads of experts and agencies out there that specialise in the field, and many of them do a great job.\\n\\nBut there’s actually plenty you can do yourself before you even need to look for an external supplier to help with your SEO.\\n\\nGet your SEO checklist\\nTo get you started on your next SEO DIY project, we’ve put together a top 20 checklist.\\n\\n1. Do your research—Identify key search terms, words and phrases, and check out competitors’ sites.\\n2. Work out where you are now—As soon as possible, keep a regular record of where your site currently ranks in search results, using various words, phrases and questions.\\n3. Work out where you want to be—Define your goals early on so you can measure your progress and adjust your strategy as you go along.\\n4. Make your content relevant—Search engines provide the most relevant results to a searcher’s query, so write content based on what people might search for.\\n5. Improve the quality of your content—Publish helpful, useful articles, videos and other types of media that people will want to engage with.\\n6. Think about user experience—Make sure your site is easy to navigate, with plenty of relevant internal links to keep users on your page for longer.\\n7. Ensure your site is responsive—Is your website designed to resize for viewing on desktop, tablet and mobile devices? It should be.\\n8. Include plenty of internal links—This helps pushes traffic around your site, building higher ‘trust signals’ for Google, and gives your audience more to read.\\n9. Write meta descriptions—This short paragraph of text under your page’s URL in search results can really improve the chance of someone clicking on it.\\n10. Include title tags—These few key words describing the page and your brand name tell visitors and search engines what your site is about in the most succinct way possible.\\n11. Tag your images—Search engines cannot ‘see’ images but they can ‘read’, so it’s important to describe any pictures you upload to your site.\\n12. Create evergreen content—More thoughtful and practical advice-based articles can create better results over the long term. Top 20 list, anyone?\\n13. Consider your domain name—Having a ‘keyword-rich’ domain name can improve ranking but can also lead to closer scrutiny by search engines.\\n14. Think about headlines—Make headlines as snappy, attractive and descriptive as possible, and stay away from clickbait.\\n15. Turn on comments—This helps generate a community of engaged users and, whatever their opinion of your content, you’ll know it’s being read.\\n16. Go social—By using social media channels as a genuine way to interact with customers, you can help generate interest in your brand and drive traffic to your site.\\n17. Watch your on-site advertising—Intrusive ads can destroy the pleasure of viewing your content and also slow your site down (not good for SEO).\\n18. Avoid keyword stuffing—Some search engines will actually penalise you for obviously overusing certain keywords on your pages.\\n19. Be aware of duplicated content—If two sites publish identical content, search engines will only index one of those pages.\\n20. Don’t hide links and text—Doing things like hiding white keyword-stuffed text on a white background or hiding a link in a full stop is likely to be punished by search engines.\\n\\nFollow these tips and you’ll be well on your way up the rankings in no time!\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24683,27886,1,'Top 20 tips for SEO','2021-07-22 06:07:24','2021-07-22 06:07:24','b986c5fe-e606-4f76-ab4b-d734aef248a8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZQX7vXsd49\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-zgzhmh66J7\",\"content\":{\"fields\":{\"backgroundColour\":\"bg-white\",\"sectionHeight\":\"h-auto\",\"plainText\":\"### **GOOD SEO STARTS WITH A BIT OF DIY.**\\n\\nSure, there are loads of experts and agencies out there that specialise in the field, and many of them do a great job.\\n\\nBut there’s actually plenty you can do yourself before you even need to look for an external supplier to help with your SEO.\\n\\nGet your SEO checklist\\nTo get you started on your next SEO DIY project, we’ve put together a top 20 checklist.\\n\\n1. Do your research—Identify key search terms, words and phrases, and check out competitors’ sites.\\n2. Work out where you are now—As soon as possible, keep a regular record of where your site currently ranks in search results, using various words, phrases and questions.\\n3. Work out where you want to be—Define your goals early on so you can measure your progress and adjust your strategy as you go along.\\n4. Make your content relevant—Search engines provide the most relevant results to a searcher’s query, so write content based on what people might search for.\\n5. Improve the quality of your content—Publish helpful, useful articles, videos and other types of media that people will want to engage with.\\n6. Think about user experience—Make sure your site is easy to navigate, with plenty of relevant internal links to keep users on your page for longer.\\n7. Ensure your site is responsive—Is your website designed to resize for viewing on desktop, tablet and mobile devices? It should be.\\n8. Include plenty of internal links—This helps pushes traffic around your site, building higher ‘trust signals’ for Google, and gives your audience more to read.\\n9. Write meta descriptions—This short paragraph of text under your page’s URL in search results can really improve the chance of someone clicking on it.\\n10. Include title tags—These few key words describing the page and your brand name tell visitors and search engines what your site is about in the most succinct way possible.\\n11. Tag your images—Search engines cannot ‘see’ images but they can ‘read’, so it’s important to describe any pictures you upload to your site.\\n12. Create evergreen content—More thoughtful and practical advice-based articles can create better results over the long term. Top 20 list, anyone?\\n13. Consider your domain name—Having a ‘keyword-rich’ domain name can improve ranking but can also lead to closer scrutiny by search engines.\\n14. Think about headlines—Make headlines as snappy, attractive and descriptive as possible, and stay away from clickbait.\\n15. Turn on comments—This helps generate a community of engaged users and, whatever their opinion of your content, you’ll know it’s being read.\\n16. Go social—By using social media channels as a genuine way to interact with customers, you can help generate interest in your brand and drive traffic to your site.\\n17. Watch your on-site advertising—Intrusive ads can destroy the pleasure of viewing your content and also slow your site down (not good for SEO).\\n18. Avoid keyword stuffing—Some search engines will actually penalise you for obviously overusing certain keywords on your pages.\\n19. Be aware of duplicated content—If two sites publish identical content, search engines will only index one of those pages.\\n20. Don’t hide links and text—Doing things like hiding white keyword-stuffed text on a white background or hiding a link in a full stop is likely to be punished by search engines.\\n\\nFollow these tips and you’ll be well on your way up the rankings in no time!\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24685,27888,1,'How to really consult your stakeholders','2021-07-22 06:08:55','2021-07-22 06:08:55','44fd8003-5f6f-4b87-803e-81be78a91389',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-P2IEHpScdx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-zgzhmh66J7\",\"content\":{\"fields\":{\"backgroundColour\":\"bg-white\",\"sectionHeight\":\"h-auto\",\"plainText\":\"Whether they are inside, outside, removed or closely involved—stakeholders have the insight businesses need for long-term growth and sustainability.\\n\\nIf they are a stakeholder, they have a connection with you.\\n\\nAnd like any other relationship, they need to know their connection, time and opinions are valued.\\n\\nIt often takes an open mind to find what works for you and the stakeholder.\\n\\nFinding this place of mutual benefit can lead to business growth and longevity.\\n\\nWe’ve broken down our approach to nurturing stakeholder relationships for meaningful engagement.\\n\\n#### **Your stakeholder is anyone who can be impacted by your business.**\\n\\nOnce you really understand this, you’ll start to notice the cycle of impact between the stakeholder and your business. And, this is partly why we begin to engage with stakeholders—to understand how different groups are responding, reacting or behaving.\\n\\n#### **But who are they, really?**\\n\\nNow, go deeper to really understand the nuances of your stakeholder groups.\\n\\nYour engagement plan should be detailed enough to allow for different levels of accessibility, and demographic and cultural considerations. The better you nuance, the greater the feeling of respect and care you’ll engender.\\n\\n#### **What do I need to achieve here?**\\n\\nThere are varying degrees of impact across the common types of engagement—inform, consult, involve, collaborate and empower. Every impact is a win for you.\\n\\nBy inviting stakeholders to provide advice and guidance, you are showing interest and genuine regard for their opinions.\\n\\n#### **Let’s talk**\\n\\nA healthy and productive conversation is two-way. We pursue positive and productive conversations with stakeholders because we need to understand stakeholder perspectives, and we need to hear it from them.\\n\\n#### **Bye for now**\\n\\nThe conversation will close, but the relationship isn’t over. Stakeholders have given their time, effort and reflections. It’s your turn to respond with accuracy, timeliness and balance.\\n\\nThe truth is, these conversations take patience, a steadfast commitment to values, sometimes sacrifice, and always an open mind.\\n\\nAt NWO, we care about stakeholder engagement because we regularly witness the impact it has on the health of businesses and organisations.\\n\\nIs it important to you?\\n\\nTalk to us about stakeholder engagement today.\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24686,27889,1,'How to really consult your stakeholders','2021-07-22 06:09:31','2021-07-22 06:09:31','71124a88-3930-42a6-bcee-d7ebb50ea6f4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-P2IEHpScdx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-zgzhmh66J7\",\"content\":{\"fields\":{\"backgroundColour\":\"bg-white\",\"sectionHeight\":\"h-auto\",\"plainText\":\"Whether they are inside, outside, removed or closely involved—stakeholders have the insight businesses need for long-term growth and sustainability.\\n\\nIf they are a stakeholder, they have a connection with you.\\n\\nAnd like any other relationship, they need to know their connection, time and opinions are valued.\\n\\nIt often takes an open mind to find what works for you and the stakeholder.\\n\\nFinding this place of mutual benefit can lead to business growth and longevity.\\n\\nWe’ve broken down our approach to nurturing stakeholder relationships for meaningful engagement.\\n\\n#### **Your stakeholder is anyone who can be impacted by your business.**\\n\\nOnce you really understand this, you’ll start to notice the cycle of impact between the stakeholder and your business. And, this is partly why we begin to engage with stakeholders—to understand how different groups are responding, reacting or behaving.\\n\\n#### **But who are they, really?**\\n\\nNow, go deeper to really understand the nuances of your stakeholder groups.\\n\\nYour engagement plan should be detailed enough to allow for different levels of accessibility, and demographic and cultural considerations. The better you nuance, the greater the feeling of respect and care you’ll engender.\\n\\n#### **What do I need to achieve here?**\\n\\nThere are varying degrees of impact across the common types of engagement—inform, consult, involve, collaborate and empower. Every impact is a win for you.\\n\\nBy inviting stakeholders to provide advice and guidance, you are showing interest and genuine regard for their opinions.\\n\\n#### **Let’s talk**\\n\\nA healthy and productive conversation is two-way. We pursue positive and productive conversations with stakeholders because we need to understand stakeholder perspectives, and we need to hear it from them.\\n\\n#### **Bye for now**\\n\\nThe conversation will close, but the relationship isn’t over. Stakeholders have given their time, effort and reflections. It’s your turn to respond with accuracy, timeliness and balance.\\n\\nThe truth is, these conversations take patience, a steadfast commitment to values, sometimes sacrifice, and always an open mind.\\n\\nAt NWO, we care about stakeholder engagement because we regularly witness the impact it has on the health of businesses and organisations.\\n\\nIs it important to you?\\n\\nTalk to us about stakeholder engagement today.\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24691,27894,1,'Top 20 tips for SEO','2021-07-22 06:21:57','2021-07-22 06:21:57','00513150-8db7-40b1-a592-32f0c393e4a4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZQX7vXsd49\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-zgzhmh66J7\",\"content\":{\"fields\":{\"backgroundColour\":\"bg-white\",\"sectionHeight\":\"h-auto\",\"plainText\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-P9HDvjQfFI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"GOOD SEO STARTS WITH A BIT OF DIY\",\"headingColour\":\"text-black\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Sure, there are loads of experts and agencies out there that specialise in the field, and many of them do a great job.\\n\\nBut there’s actually plenty you can do yourself before you even need to look for an external supplier to help with your SEO.\\n\\nGet your SEO checklist\\n\\nTo get you started on your next SEO DIY project, we’ve put together a top 20 checklist.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":\"1\",\"fields\":{\"gridItems\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\",\"new6\",\"new7\",\"new8\",\"new9\",\"new10\",\"new11\",\"new12\",\"new13\",\"new14\",\"new15\",\"new16\",\"new17\",\"new18\",\"new19\",\"new20\"],\"blocks\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"1. Do your research\",\"text\":\"Identify key search terms, words and phrases, and check out competitors’ sites.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"2. Work out where you are now\",\"text\":\"Work out where you are now—As soon as possible, keep a regular record of where your site currently ranks in search results, using various words, phrases and questions.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"3. Work out where you want to be\",\"text\":\"Define your goals early on so you can measure your progress and adjust your strategy as you go along.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"4. Make your content relevant\",\"text\":\"Search engines provide the most relevant results to a searcher’s query, so write content based on what people might search for.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"5. Improve the quality of your content\",\"text\":\"Publish helpful, useful articles, videos and other types of media that people will want to engage with.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"6. Think about user experience\",\"text\":\"Make sure your site is easy to navigate, with plenty of relevant internal links to keep users on your page for longer.\"}},\"new7\":{\"type\":\"6\",\"fields\":{\"heading\":\"7. Ensure your site is responsive\",\"text\":\"s your website designed to resize for viewing on desktop, tablet and mobile devices? It should be.\"}},\"new8\":{\"type\":\"6\",\"fields\":{\"heading\":\"8. Include plenty of internal links\",\"text\":\"This helps pushes traffic around your site, building higher ‘trust signals’ for Google, and gives your audience more to read.\"}},\"new9\":{\"type\":\"6\",\"fields\":{\"heading\":\"9. Write meta descriptions\",\"text\":\"This short paragraph of text under your page’s URL in search results can really improve the chance of someone clicking on it.\"}},\"new10\":{\"type\":\"6\",\"fields\":{\"heading\":\"10. Include title tags\",\"text\":\"These few key words describing the page and your brand name tell visitors and search engines what your site is about in the most succinct way possible.\"}},\"new11\":{\"type\":\"6\",\"fields\":{\"heading\":\"11. Tag your images\",\"text\":\"Search engines cannot ‘see’ images but they can ‘read’, so it’s important to describe any pictures you upload to your site.\"}},\"new12\":{\"type\":\"6\",\"fields\":{\"heading\":\"12. Create evergreen content\",\"text\":\"More thoughtful and practical advice-based articles can create better results over the long term. Top 20 list, anyone?\"}},\"new13\":{\"type\":\"6\",\"fields\":{\"heading\":\"13. Consider your domain name\",\"text\":\"Having a ‘keyword-rich’ domain name can improve ranking but can also lead to closer scrutiny by search engines.\"}},\"new14\":{\"type\":\"6\",\"fields\":{\"heading\":\"14. Think about headlines\",\"text\":\"Make headlines as snappy, attractive and descriptive as possible, and stay away from clickbait.\"}},\"new15\":{\"type\":\"6\",\"fields\":{\"heading\":\"15. Turn on comments\",\"text\":\"This helps generate a community of engaged users and, whatever their opinion of your content, you’ll know it’s being read.\"}},\"new16\":{\"type\":\"6\",\"fields\":{\"heading\":\"16. Go social\",\"text\":\"By using social media channels as a genuine way to interact with customers, you can help generate interest in your brand and drive traffic to your site.\"}},\"new17\":{\"type\":\"6\",\"fields\":{\"heading\":\"17. Watch your on-site advertising\",\"text\":\"Intrusive ads can destroy the pleasure of viewing your content and also slow your site down (not good for SEO).\"}},\"new18\":{\"type\":\"6\",\"fields\":{\"heading\":\"18. Avoid keyword stuffing\",\"text\":\"Some search engines will actually penalise you for obviously overusing certain keywords on your pages.\"}},\"new19\":{\"type\":\"6\",\"fields\":{\"heading\":\"19. Be aware of duplicated content\",\"text\":\"If two sites publish identical content, search engines will only index one of those pages.\"}},\"new20\":{\"type\":\"6\",\"fields\":{\"heading\":\"20. Don’t hide links and text\",\"text\":\"Doing things like hiding white keyword-stuffed text on a white background or hiding a link in a full stop is likely to be punished by search engines.\"}}}}}},\"new4\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Follow these tips and you’ll be well on your way up the rankings in no time!\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24693,27896,1,'Pretty or powerful? And can you have it all?','2021-07-22 09:36:18','2021-07-22 09:36:18','a44ac49f-f699-41ac-8f45-e21a68bfbafc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2kuJmcRRkp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-zgzhmh66J7\",\"content\":{\"fields\":{\"backgroundColour\":\"bg-white\",\"sectionHeight\":\"h-auto\",\"plainText\":\"#### Being a commercial creative means someone is hoping, expecting and paying for a result.\\n\\nBut just because something is creative in its execution doesn’t mean it’s going to be effective in achieving its goal.\\n\\nHere are five pitfalls to avoid when procuring creative services:\\n\\n- Hiring a single creative, like a designer, to be a whole creative team. Your supplier will end up working in one strength and many weaknesses.\\n- Procuring from a supplier who can use design software but isn’t a designer. The work will miss the mark despite looking okay.\\n- Working with a graphic designer who isn’t skilled in the type of design you need (like brand design). You’ll get a pretty logo lacking in brand story and meaning.\\n- Jumping straight into design without a strategy. You’ll receive design work that’s lovely, even beautiful… but not strategic.\\n- Failing to define what success looks like. Your supplier’s work will lack purpose. Instead, make sure you have a clear goal that measures the biggest outcome of all: return on investment.\\n\\nSo yes, creative work can be both pretty and powerful. And you can have it all… if you invest in a team of strategically focused creatives.\\n\\nCreative agencies cost more but are teams for a reason. We\'re much more powerful together than on our own.\\n\\nJust like a hand of aces vs a single 3.\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24695,27898,1,'Seven mistakes people make building websites','2021-07-22 09:37:59','2021-07-22 09:37:59','cca292de-505b-4fd1-a835-1f543d955e83',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7Z3z0PQH6c\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-zgzhmh66J7\",\"content\":{\"fields\":{\"backgroundColour\":\"bg-white\",\"sectionHeight\":\"h-auto\",\"plainText\":\"The advertising you’ve done, the marketing budget you’ve spent, the countless planning meetings your team has attended—all that time and money you’ve invested has driven a potential customer to your website.\\n\\nNow is the moment.\\n\\nAfter months—maybe years—of effort, your potential customer will make their decision in seconds.\\n\\nThey may love what they see and continue to be interested. Or they may leave, with their memory of you going up in smoke and your investment with it.\\n\\nThat’s why it’s so important to build an effective website.\\n\\nFraming a website to contain everything you need is challenging. Some websites become too word-heavy, while others lack structure and narrative.\\n\\nGetting your website right from the beginning can save you a lot of pain in the long run.\\n\\nHere\'s our tips to tackling website mistakes.\\n\\n**1. Unacknowledged expectations**\\n\\nWhat do you expect your website to do for you? You want this investment to count, so be informed, decide what you need and be intentional with your allocated budget. There are only two options—either start with careful planning and consultation and spend a realistic budget, or jump in with assumptions … and experience scope-creep, frustration and the need to pour more money in later. Your time and money (and sanity) are too valuable to waste on option two. So, choose wisely.\\n\\nIt’s also important to understand the purpose of your website. A website for a website’s sake helps no-one. Your business is unique so your website should be, too. Make it crystal clear—state who you are, what you do and what you promise your customers. Set yourself up for success by providing your developer with a clear website purpose, an informed plan and a predetermined budget.\\n\\n**2. A guess is no good**\\n\\nAnalytics, metrics or key performance indicators (KPIs)—they’re all clever ways to study the website user journey. What do you need your website to achieve? This will depend on what kind of product or service you offer and the kind of experience you want to create for the user. Lay out your objectives and match them with KPIs.\\n\\nThere are plenty of ways to get insight into your website. Consider bounce rates, session duration or pages per session metrics. Or you could sharpen your content strategy by watching goal conversion rates of passive to active website users. Understanding your metrics and the goals you want to achieve will also help you to understand how your website interacts with its digital ecosystem.\\n\\n**3. It’s not for you**\\n\\nIt might be about you, but the website isn’t for you. Optimising your website starts with learning what your users are responding well to. How are they getting to your website? What kind of content are they reading? When do they read it? How long are they staying?\\n\\nBy understanding your metrics you can shape a truly effective website experience for your customers. It’s all in the detail—from content creation to search engine optimisation (we have some helpful tips [here](http://newwordorder.com.au/top-20-tips-seo/)).\\n\\n**4. Information overload**\\n\\nYour website is where your potential customers will go to check your credibility. Credibility is about trust. One way to build trust is to position yourself and your organisation as experts. However, credibility isn’t just about what you know—it’s about who you are. Include stories and testimonials about you and your organisation to avoid information overload. Then, potential customers will leave your website satisfied that you can be trusted ... and they\'re one step closer to doing business with you.\\n\\n**5. Losing the user**\\n\\nMany people complain about feeling lost on websites. The customer journey should be clear. If the information on your website is simple and structured, you can guide visitors on the path you’d like them to take. Use tabs and sub-pages for different categories, and make it logical. For best results, spend time studying user movements and running trials and tests. Over time your predictions will become more accurate as you get to know your audience.\\n\\n**6. Wasted words**\\n\\nCapture your customers quickly. As we’ve previously discussed in our Writing for (readable) web article, there are some hallmarks we use when writing web copy for our clients. Here are a few of them:\\n\\n- short, effective sentences (say the same information with less)\\n- sub-headings and headings containing keywords\\n- everyday words the average reader can easily understand (plain English)\\n- direct language\\n- consistent, logical structuring of information.\\n\\n**7. Don’t be unfriendly**\\n\\nHow does your website display on mobile devices and tablets? Due to the growth in user visits from non-desktop devices, it’s now safe to say that an unresponsive website—regardless of your industry and demographic—will cost you customers and revenue. When your website isn’t responsive, your customers won’t look for the closest desktop computer ... they’ll look for another website. Instead, make your website as friendly as possible to give your customers the same quality of experience online that they experience offline.\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24697,27900,1,'The building blocks of branding','2021-07-22 09:39:45','2021-07-22 09:39:45','62bd65be-d719-44d2-ac2d-a68dbe3ba9ce',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-h0rIv02KE0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-zgzhmh66J7\",\"content\":{\"fields\":{\"backgroundColour\":\"bg-white\",\"sectionHeight\":\"h-auto\",\"plainText\":\"Through 20 years of branding experience, we’ve come to understand stakeholder engagement is essential for a brand to have cut-through.\\n\\nWe’ve engaged with our clients’ stakeholders for many years and in many ways—ranging from formal, formative market research through to in-depth focus groups, workshops, community forums, brand satisfaction surveys and phone interviews.\\n\\nNo matter the method, what really counts is that we capture how people relate to your brand. That relationship leads to relevance and then the ultimate goal: resonance.\\n\\n#### **Relationship**\\n\\nEvery great brand is built on relationship.\\n\\nWhen you form healthy relationships with stakeholders, you open yourself up to a range of opinions. Generally, feedback gets more constructive as the relationship grows healthier.\\n\\nIf you’re the brand manager, it can feel a bit like tough love at first—but it does get easier.\\n\\n#### **Relevance**\\n\\nSo much more than a logo, brands are heavy with meaning for stakeholders. And so if the environment changes but your brand doesn’t, the meaning is lost.\\n\\nA lot of the stakeholder feedback we hear about brands is that they’re outdated or lack appeal. Without relevance, your stakeholders no longer feel the love.\\n\\nConstantly retune yourself to your stakeholders and you’ll keep fulfilling their needs.\\n\\n#### **Resonance**\\n\\nResonance is where understanding meets impact.\\n\\nA brand rich with resonance is the holy grail of marketing and, true to legend, few reach it.\\n\\nThat’s because resonance means your brand is a perfect fit for your stakeholders’ environment, pain points, wants and emotional connection.\\n\\nResonance engenders attention and respect, and turns want to need.\\n\\nAnd when stakeholders can’t live without your brand? Happy days.\\n\\n#### **The 3Rs start here**\\n\\nWhether you’re looking to name and brand or rename and rebrand, your brand journey starts with understanding your stakeholders.\\n\\nTalk to us about how to take your first steps.\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24711,27914,1,'Break away from the same-same with custom illustration','2021-07-22 09:43:45','2021-07-22 09:43:45','bac7a30a-6059-4814-9431-af4ac1d2f864',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tiYExhhMPf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"There’s nothing more special than something made just for you.\",\"headingColour\":\"text-black\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"You hold it loudly and proudly for all to see—and they notice because there’s nothing else in the world quite like it. And this makes you treasure it that little bit more.\\n\\nThe dream of an illustrator is to have time, budget and ability to craft a bespoke masterpiece for every job that comes across the desk.\\n\\nThat dream doesn’t turn to reality very often. But that doesn’t mean your brand has to revert to using the same old stock illustrations everyone else uses either.\\n\\nThere are so many ways to get over those hurdles when a project doesn’t have time or budget to allow for a custom piece.\\n\\nA lot of the time, stock illustration can be tweaked to give it the edge it needs to stand out from the crowd.\\n\\nChange up the colours, mix up the style and jazz up the faces.\\n\\nSometimes stock forms the base for us to build something fresh. And other times there might already be the perfect stock illustration that tells the right story without much tweaking at all.\\n\\nWhatever the constraints—budget, time, brief—there’s always a way break free. It just takes some thinking outside of the box. If you’re drowning in a sea of same-same, come chat to us and we’ll get you out of there in no time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24723,27926,1,'Break away from the same-same with custom illustration','2021-07-22 23:34:54','2021-07-22 23:34:54','a1173ea1-127d-49da-a697-142433ecd8aa',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tiYExhhMPf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"There’s nothing more special than something made just for you.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"You hold it loudly and proudly for all to see—and they notice because there’s nothing else in the world quite like it. And this makes you treasure it that little bit more.\\n\\nThe dream of an illustrator is to have time, budget and ability to craft a bespoke masterpiece for every job that comes across the desk.\\n\\nThat dream doesn’t turn to reality very often. But that doesn’t mean your brand has to revert to using the same old stock illustrations everyone else uses either.\\n\\nThere are so many ways to get over those hurdles when a project doesn’t have time or budget to allow for a custom piece.\\n\\nA lot of the time, stock illustration can be tweaked to give it the edge it needs to stand out from the crowd.\\n\\nChange up the colours, mix up the style and jazz up the faces.\\n\\nSometimes stock forms the base for us to build something fresh. And other times there might already be the perfect stock illustration that tells the right story without much tweaking at all.\\n\\nWhatever the constraints—budget, time, brief—there’s always a way break free. It just takes some thinking outside of the box. If you’re drowning in a sea of same-same, come chat to us and we’ll get you out of there in no time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24725,27928,1,'Why you need a six-month comms strategy for your website','2021-07-22 23:36:59','2021-07-22 23:36:59','114952d9-8a79-496c-937a-b9b43379862a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AgEbVkr4de\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"YOU KNOW THE FEELING: AN AD PROMISE DRAWS YOU IN, YOU CLICK THROUGH TO THE WEBSITE AND YOU’RE IMPRESSED BECAUSE IT LOOKS SUPER SLICK.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Then you actually read it. And now you’re disappointed because it doesn’t actually say anything other than the surface detail of a business.\\n\\nThese websites are so common they’ve earned the term ‘brochure’ website. They look great, but that’s it.\\n\\nWe see it all the time and think it’s such a shame. Why? Because a website can be so. much. more.\\n\\nHow can your website escape the dreaded brochure effect? In short, don’t set and forget.\\n\\nGood websites move, breathe and live—just like your business does.\\n\\nEveryone knows it’s good practice to regularly update your website messaging and functionality. But you need to actually get around to doing it and—more importantly—have a reason for making a change.\\n\\nSo, what’s your strategy?\\n\\nA website communication and engagement strategy has so many benefits. But the biggest one by far is SEO.\\n\\nBy biggest we don’t mean the most confusing or time-consuming. It simply boils down to content. Fresh content tells Google: This is who I am! This is what I do! See me! Hear me!\\n\\nGoogle’s algorithms are super clever because they serve up the sort of content people want. But it means Google can only give people the content they want if it knows about your business and what you’re offering.\\n\\nOf course, there are some technical aspects to consider. But your best SEO strategy is a long-term communications plan.\\n\\nDo you know what the next six months for your website content looks like? What can you offer your customers other than opening hours and where you’re located?\\n\\nBy developing a digital communications strategy, your website gets updated regularly, which helps Google share your message with the right people at the right time.\\n\\nPotential customers will find you, engage with you and trust you enough to get in touch.\\n\\nYou have so many options for interesting content. It could be a thought-leadership piece, event, media release, whitepaper, testimonial—the list can go on.\\n\\nWe have a huge amount of communications tools and angles we can develop to bolster your web presence.\\n\\nGoogle also loves a fast, responsive website. Optimising your website by using the latest version of your content management system will ensure your site is running smoothly and as fast as it can.\\n\\nLikewise, this will make your site more secure and help prevent security breaches (particularly important if you use WordPress).\\n\\nWe also offer long-term website maintenance plans. These include detailed server monitoring and ensuring your CMS and plugins are up-to-date.\\n\\nFor more critical sites, we offer zero downtime code-update deployments.\\n\\nTalk to us about a long-term strategy for your website so it can be more than just another ‘brochure site’.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24727,27930,1,'Why you need a six-month comms strategy for your website','2021-07-22 23:38:56','2021-07-22 23:38:56','a7e978d1-fb49-4318-b090-238a8ad2dfd7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AgEbVkr4de\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"YOU KNOW THE FEELING: AN AD PROMISE DRAWS YOU IN, YOU CLICK THROUGH TO THE WEBSITE AND YOU’RE IMPRESSED BECAUSE IT LOOKS SUPER SLICK.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Then you actually read it. And now you’re disappointed because it doesn’t actually say anything other than the surface detail of a business.\\n\\n#### These websites are so common they’ve earned the term ‘brochure’ website. They look great, but that’s it.\\n\\nWe see it all the time and think it’s such a shame. Why? Because a website can be so. much. more.\\n\\nHow can your website escape the dreaded brochure effect? In short, don’t set and forget.\\n\\nGood websites move, breathe and live—just like your business does.\\n\\nEveryone knows it’s good practice to regularly update your website messaging and functionality. But you need to actually get around to doing it and—more importantly—have a reason for making a change.\\n\\n#### So, what’s your strategy?\\n\\nA website communication and engagement strategy has so many benefits. But the biggest one by far is SEO.\\n\\nBy biggest we don’t mean the most confusing or time-consuming. It simply boils down to content. Fresh content tells Google: This is who I am! This is what I do! See me! Hear me!\\n\\nGoogle’s algorithms are super clever because they serve up the sort of content people want. But it means Google can only give people the content they want if it knows about your business and what you’re offering.\\n\\nOf course, there are some technical aspects to consider. But your best SEO strategy is a long-term communications plan.\\n\\nDo you know what the next six months for your website content looks like? What can you offer your customers other than opening hours and where you’re located?\\n\\nBy developing a digital communications strategy, your website gets updated regularly, which helps Google share your message with the right people at the right time.\\n\\nPotential customers will find you, engage with you and trust you enough to get in touch.\\n\\nYou have so many options for interesting content. It could be a thought-leadership piece, event, media release, whitepaper, testimonial—the list can go on.\\n\\nWe have a huge amount of communications tools and angles we can develop to bolster your web presence.\\n\\nGoogle also loves a fast, responsive website. Optimising your website by using the latest version of your content management system will ensure your site is running smoothly and as fast as it can.\\n\\nLikewise, this will make your site more secure and help prevent security breaches (particularly important if you use WordPress).\\n\\nWe also offer long-term website maintenance plans. These include detailed server monitoring and ensuring your CMS and plugins are up-to-date.\\n\\nFor more critical sites, we offer zero downtime code-update deployments.\\n\\nTalk to us about a long-term strategy for your website so it can be more than just another ‘brochure site’.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24745,27948,1,'Break away from the same-same with custom illustration','2021-07-23 00:37:47','2021-07-23 00:37:47','97724f28-d535-4681-8cb8-1c4aee9d3a46',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tiYExhhMPf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"There’s nothing more special than something made just for you.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"You hold it loudly and proudly for all to see—and they notice because there’s nothing else in the world quite like it. And this makes you treasure it that little bit more.\\n\\nThe dream of an illustrator is to have time, budget and ability to craft a bespoke masterpiece for every job that comes across the desk.\\n\\nThat dream doesn’t turn to reality very often. But that doesn’t mean your brand has to revert to using the same old stock illustrations everyone else uses either.\\n\\nThere are so many ways to get over those hurdles when a project doesn’t have time or budget to allow for a custom piece.\\n\\nA lot of the time, stock illustration can be tweaked to give it the edge it needs to stand out from the crowd.\\n\\nChange up the colours, mix up the style and jazz up the faces.\\n\\nSometimes stock forms the base for us to build something fresh. And other times there might already be the perfect stock illustration that tells the right story without much tweaking at all.\\n\\nWhatever the constraints—budget, time, brief—there’s always a way break free. It just takes some thinking outside of the box. If you’re drowning in a sea of same-same, come chat to us and we’ll get you out of there in no time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24746,27949,1,'Why you need a six-month comms strategy for your website','2021-07-23 00:38:08','2021-07-23 00:38:08','1b0e40b7-9aa8-45b3-a72d-f96f921432fc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AgEbVkr4de\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"YOU KNOW THE FEELING: AN AD PROMISE DRAWS YOU IN, YOU CLICK THROUGH TO THE WEBSITE AND YOU’RE IMPRESSED BECAUSE IT LOOKS SUPER SLICK.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Then you actually read it. And now you’re disappointed because it doesn’t actually say anything other than the surface detail of a business.\\n\\n#### These websites are so common they’ve earned the term ‘brochure’ website. They look great, but that’s it.\\n\\nWe see it all the time and think it’s such a shame. Why? Because a website can be so. much. more.\\n\\nHow can your website escape the dreaded brochure effect? In short, don’t set and forget.\\n\\nGood websites move, breathe and live—just like your business does.\\n\\nEveryone knows it’s good practice to regularly update your website messaging and functionality. But you need to actually get around to doing it and—more importantly—have a reason for making a change.\\n\\n#### So, what’s your strategy?\\n\\nA website communication and engagement strategy has so many benefits. But the biggest one by far is SEO.\\n\\nBy biggest we don’t mean the most confusing or time-consuming. It simply boils down to content. Fresh content tells Google: This is who I am! This is what I do! See me! Hear me!\\n\\nGoogle’s algorithms are super clever because they serve up the sort of content people want. But it means Google can only give people the content they want if it knows about your business and what you’re offering.\\n\\nOf course, there are some technical aspects to consider. But your best SEO strategy is a long-term communications plan.\\n\\nDo you know what the next six months for your website content looks like? What can you offer your customers other than opening hours and where you’re located?\\n\\nBy developing a digital communications strategy, your website gets updated regularly, which helps Google share your message with the right people at the right time.\\n\\nPotential customers will find you, engage with you and trust you enough to get in touch.\\n\\nYou have so many options for interesting content. It could be a thought-leadership piece, event, media release, whitepaper, testimonial—the list can go on.\\n\\nWe have a huge amount of communications tools and angles we can develop to bolster your web presence.\\n\\nGoogle also loves a fast, responsive website. Optimising your website by using the latest version of your content management system will ensure your site is running smoothly and as fast as it can.\\n\\nLikewise, this will make your site more secure and help prevent security breaches (particularly important if you use WordPress).\\n\\nWe also offer long-term website maintenance plans. These include detailed server monitoring and ensuring your CMS and plugins are up-to-date.\\n\\nFor more critical sites, we offer zero downtime code-update deployments.\\n\\nTalk to us about a long-term strategy for your website so it can be more than just another ‘brochure site’.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24748,27951,1,'Pretty or powerful? And can you have it all?','2021-07-23 00:40:50','2021-07-23 00:40:50','fe37ae2b-367a-4a62-a7c5-7a10c90994c8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UxDAMYmx0G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Being a commercial creative means someone is hoping, expecting and paying for a result.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But just because something is creative in its execution doesn’t mean it’s going to be effective in achieving its goal.\\n\\nHere are five pitfalls to avoid when procuring creative services:\\n\\n* Hiring a single creative, like a designer, to be a whole creative team. Your supplier will end up working in one strength and many weaknesses.\\n* Procuring from a supplier who can use design software but isn’t a designer. The work will miss the mark despite looking okay.\\n* Working with a graphic designer who isn’t skilled in the type of design you need (like brand design). You’ll get a pretty logo lacking in brand story and meaning.\\n* Jumping straight into design without a strategy. You’ll receive design work that’s lovely, even beautiful… but not strategic.\\n* Failing to define what success looks like. Your supplier’s work will lack purpose. Instead, make sure you have a clear goal that measures the biggest outcome of all: return on investment.\\n\\nSo yes, creative work can be both pretty and powerful. And you can have it all… if you invest in a team of strategically focused creatives.\\n\\nCreative agencies cost more but are teams for a reason. We\'re much more powerful together than on our own.\\n\\nJust like a hand of aces vs a single 3.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24749,27952,1,'Pretty or powerful? And can you have it all?','2021-07-23 00:42:25','2021-07-23 00:42:25','cf060d18-7a87-4251-8bd2-a1b312347a47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UxDAMYmx0G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Being a commercial creative means someone is hoping, expecting and paying for a result.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But just because something is creative in its execution doesn’t mean it’s going to be effective in achieving its goal.\\n\\nHere are five pitfalls to avoid when procuring creative services:\\n\\n* Hiring a single creative, like a designer, to be a whole creative team. Your supplier will end up working in one strength and many weaknesses.\\n* Procuring from a supplier who can use design software but isn’t a designer. The work will miss the mark despite looking okay.\\n* Working with a graphic designer who isn’t skilled in the type of design you need (like brand design). You’ll get a pretty logo lacking in brand story and meaning.\\n* Jumping straight into design without a strategy. You’ll receive design work that’s lovely, even beautiful… but not strategic.\\n* Failing to define what success looks like. Your supplier’s work will lack purpose. Instead, make sure you have a clear goal that measures the biggest outcome of all: return on investment.\\n\\nSo yes, creative work can be both pretty and powerful. And you can have it all… if you invest in a team of strategically focused creatives.\\n\\nCreative agencies cost more but are teams for a reason. We\'re much more powerful together than on our own.\\n\\nJust like a hand of aces vs a single 3.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24750,27953,1,'Pretty or powerful? And can you have it all?','2021-07-23 00:42:43','2021-07-23 00:42:43','2ff90e58-a439-4172-8f5d-4bb48a1e2f7c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UxDAMYmx0G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Being a commercial creative means someone is hoping, expecting and paying for a result.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But just because something is creative in its execution doesn’t mean it’s going to be effective in achieving its goal.\\n\\nHere are five pitfalls to avoid when procuring creative services:\\n\\n* Hiring a single creative, like a designer, to be a whole creative team. Your supplier will end up working in one strength and many weaknesses.\\n* Procuring from a supplier who can use design software but isn’t a designer. The work will miss the mark despite looking okay.\\n* Working with a graphic designer who isn’t skilled in the type of design you need (like brand design). You’ll get a pretty logo lacking in brand story and meaning.\\n* Jumping straight into design without a strategy. You’ll receive design work that’s lovely, even beautiful… but not strategic.\\n* Failing to define what success looks like. Your supplier’s work will lack purpose. Instead, make sure you have a clear goal that measures the biggest outcome of all: return on investment.\\n\\nSo yes, creative work can be both pretty and powerful. And you can have it all… if you invest in a team of strategically focused creatives.\\n\\nCreative agencies cost more but are teams for a reason. We\'re much more powerful together than on our own.\\n\\nJust like a hand of aces vs a single 3.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24752,27955,1,'Seven mistakes people make building websites','2021-07-23 00:43:48','2021-07-23 00:43:48','4c3157dc-3c2e-43b5-9993-9ea87eaaa0a2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-anLTeFZY0U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"The advertising you’ve done, the marketing budget you’ve spent, the countless planning meetings your team has attended—all that time and money you’ve invested has driven a potential customer to your website.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Now is the moment.\\n\\nAfter months—maybe years—of effort, your potential customer will make their decision in seconds.\\n\\nThey may love what they see and continue to be interested. Or they may leave, with their memory of you going up in smoke and your investment with it.\\n\\nThat’s why it’s so important to build an effective website.\\n\\nFraming a website to contain everything you need is challenging. Some websites become too word-heavy, while others lack structure and narrative.\\n\\nGetting your website right from the beginning can save you a lot of pain in the long run.\\n\\nHere\'s our tips to tackling website mistakes.\\n\\n**1. Unacknowledged expectations**\\n\\nWhat do you expect your website to do for you? You want this investment to count, so be informed, decide what you need and be intentional with your allocated budget. There are only two options—either start with careful planning and consultation and spend a realistic budget, or jump in with assumptions … and experience scope-creep, frustration and the need to pour more money in later. Your time and money (and sanity) are too valuable to waste on option two. So, choose wisely.\\n\\nIt’s also important to understand the purpose of your website. A website for a website’s sake helps no-one. Your business is unique so your website should be, too. Make it crystal clear—state who you are, what you do and what you promise your customers. Set yourself up for success by providing your developer with a clear website purpose, an informed plan and a predetermined budget.\\n\\n**2. A guess is no good**\\n\\nAnalytics, metrics or key performance indicators (KPIs)—they’re all clever ways to study the website user journey. What do you need your website to achieve? This will depend on what kind of product or service you offer and the kind of experience you want to create for the user. Lay out your objectives and match them with KPIs.\\n\\nThere are plenty of ways to get insight into your website. Consider bounce rates, session duration or pages per session metrics. Or you could sharpen your content strategy by watching goal conversion rates of passive to active website users. Understanding your metrics and the goals you want to achieve will also help you to understand how your website interacts with its digital ecosystem.\\n\\n**3. It’s not for you**\\n\\nIt might be about you, but the website isn’t for you. Optimising your website starts with learning what your users are responding well to. How are they getting to your website? What kind of content are they reading? When do they read it? How long are they staying?\\n\\nBy understanding your metrics you can shape a truly effective website experience for your customers. It’s all in the detail—from content creation to search engine optimisation (we have some helpful tips [here](http://newwordorder.com.au/top-20-tips-seo/)).\\n\\n**4. Information overload**\\n\\nYour website is where your potential customers will go to check your credibility. Credibility is about trust. One way to build trust is to position yourself and your organisation as experts. However, credibility isn’t just about what you know—it’s about who you are. Include stories and testimonials about you and your organisation to avoid information overload. Then, potential customers will leave your website satisfied that you can be trusted ... and they\'re one step closer to doing business with you.\\n\\n**5. Losing the user**\\n\\nMany people complain about feeling lost on websites. The customer journey should be clear. If the information on your website is simple and structured, you can guide visitors on the path you’d like them to take. Use tabs and sub-pages for different categories, and make it logical. For best results, spend time studying user movements and running trials and tests. Over time your predictions will become more accurate as you get to know your audience.\\n\\n**6. Wasted words**\\n\\nCapture your customers quickly. As we’ve previously discussed in our Writing for (readable) web article, there are some hallmarks we use when writing web copy for our clients. Here are a few of them:\\n\\n- short, effective sentences (say the same information with less)\\n- sub-headings and headings containing keywords\\n- everyday words the average reader can easily understand (plain English)\\n- direct language\\n- consistent, logical structuring of information.\\n\\n**7. Don’t be unfriendly**\\n\\nHow does your website display on mobile devices and tablets? Due to the growth in user visits from non-desktop devices, it’s now safe to say that an unresponsive website—regardless of your industry and demographic—will cost you customers and revenue. When your website isn’t responsive, your customers won’t look for the closest desktop computer ... they’ll look for another website. Instead, make your website as friendly as possible to give your customers the same quality of experience online that they experience offline.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24754,27957,1,'The building blocks of branding','2021-07-23 00:45:38','2021-07-23 00:45:38','1429face-bbb1-46ee-b809-f1193239cf07',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UBcW4IgaI5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Through 20 years of branding experience, we’ve come to understand stakeholder engagement is essential for a brand to have cut-through.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We’ve engaged with our clients’ stakeholders for many years and in many ways—ranging from formal, formative market research through to in-depth focus groups, workshops, community forums, brand satisfaction surveys and phone interviews.\\n\\nNo matter the method, what really counts is that we capture how people relate to your brand. That relationship leads to relevance and then the ultimate goal: resonance.\\n\\n#### **Relationship**\\n\\nEvery great brand is built on relationship.\\n\\nWhen you form healthy relationships with stakeholders, you open yourself up to a range of opinions. Generally, feedback gets more constructive as the relationship grows healthier.\\n\\nIf you’re the brand manager, it can feel a bit like tough love at first—but it does get easier.\\n\\n#### **Relevance**\\n\\nSo much more than a logo, brands are heavy with meaning for stakeholders. And so if the environment changes but your brand doesn’t, the meaning is lost.\\n\\nA lot of the stakeholder feedback we hear about brands is that they’re outdated or lack appeal. Without relevance, your stakeholders no longer feel the love.\\n\\nConstantly retune yourself to your stakeholders and you’ll keep fulfilling their needs.\\n\\n#### **Resonance**\\n\\nResonance is where understanding meets impact.\\n\\nA brand rich with resonance is the holy grail of marketing and, true to legend, few reach it.\\n\\nThat’s because resonance means your brand is a perfect fit for your stakeholders’ environment, pain points, wants and emotional connection.\\n\\nResonance engenders attention and respect, and turns want to need.\\n\\nAnd when stakeholders can’t live without your brand? Happy days.\\n\\n#### **The 3Rs start here**\\n\\nWhether you’re looking to name and brand or rename and rebrand, your brand journey starts with understanding your stakeholders.\\n\\nTalk to us about how to take your first steps.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24756,27959,1,'How to really consult your stakeholders','2021-07-23 00:47:31','2021-07-23 00:47:31','9bb093f1-3e8c-48d2-8ef2-2263af0515b9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BpDlpLY30k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Whether they are inside, outside, removed or closely involved—stakeholders have the insight businesses need for long-term growth and sustainability.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"If they are a stakeholder, they have a connection with you.\\n\\nAnd like any other relationship, they need to know their connection, time and opinions are valued.\\n\\nIt often takes an open mind to find what works for you and the stakeholder.\\n\\nFinding this place of mutual benefit can lead to business growth and longevity.\\n\\nWe’ve broken down our approach to nurturing stakeholder relationships for meaningful engagement.\\n\\n#### **Your stakeholder is anyone who can be impacted by your business.**\\n\\nOnce you really understand this, you’ll start to notice the cycle of impact between the stakeholder and your business. And, this is partly why we begin to engage with stakeholders—to understand how different groups are responding, reacting or behaving.\\n\\n#### **But who are they, really?**\\n\\nNow, go deeper to really understand the nuances of your stakeholder groups.\\n\\nYour engagement plan should be detailed enough to allow for different levels of accessibility, and demographic and cultural considerations. The better you nuance, the greater the feeling of respect and care you’ll engender.\\n\\n#### **What do I need to achieve here?**\\n\\nThere are varying degrees of impact across the common types of engagement—inform, consult, involve, collaborate and empower. Every impact is a win for you.\\n\\nBy inviting stakeholders to provide advice and guidance, you are showing interest and genuine regard for their opinions.\\n\\n#### **Let’s talk**\\n\\nA healthy and productive conversation is two-way. We pursue positive and productive conversations with stakeholders because we need to understand stakeholder perspectives, and we need to hear it from them.\\n\\n#### **Bye for now**\\n\\nThe conversation will close, but the relationship isn’t over. Stakeholders have given their time, effort and reflections. It’s your turn to respond with accuracy, timeliness and balance.\\n\\nThe truth is, these conversations take patience, a steadfast commitment to values, sometimes sacrifice, and always an open mind.\\n\\nAt NWO, we care about stakeholder engagement because we regularly witness the impact it has on the health of businesses and organisations.\\n\\nIs it important to you?\\n\\nTalk to us about stakeholder engagement today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24758,27961,1,'Top 20 tips for SEO','2021-07-23 00:49:19','2021-07-23 00:49:19','a8c7447d-cb44-4c35-b4c3-621ed52cfece',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-P9HDvjQfFI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"GOOD SEO STARTS WITH A BIT OF DIY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Sure, there are loads of experts and agencies out there that specialise in the field, and many of them do a great job.\\n\\nBut there’s actually plenty you can do yourself before you even need to look for an external supplier to help with your SEO.\\n\\nGet your SEO checklist\\n\\nTo get you started on your next SEO DIY project, we’ve put together a top 20 checklist.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":\"1\",\"fields\":{\"gridItems\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\",\"new6\",\"new7\",\"new8\",\"new9\",\"new10\",\"new11\",\"new12\",\"new13\",\"new14\",\"new15\",\"new16\",\"new17\",\"new18\",\"new19\",\"new20\"],\"blocks\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"1. Do your research\",\"text\":\"Identify key search terms, words and phrases, and check out competitors’ sites.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"2. Work out where you are now\",\"text\":\"Work out where you are now—As soon as possible, keep a regular record of where your site currently ranks in search results, using various words, phrases and questions.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"3. Work out where you want to be\",\"text\":\"Define your goals early on so you can measure your progress and adjust your strategy as you go along.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"4. Make your content relevant\",\"text\":\"Search engines provide the most relevant results to a searcher’s query, so write content based on what people might search for.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"5. Improve the quality of your content\",\"text\":\"Publish helpful, useful articles, videos and other types of media that people will want to engage with.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"6. Think about user experience\",\"text\":\"Make sure your site is easy to navigate, with plenty of relevant internal links to keep users on your page for longer.\"}},\"new7\":{\"type\":\"6\",\"fields\":{\"heading\":\"7. Ensure your site is responsive\",\"text\":\"s your website designed to resize for viewing on desktop, tablet and mobile devices? It should be.\"}},\"new8\":{\"type\":\"6\",\"fields\":{\"heading\":\"8. Include plenty of internal links\",\"text\":\"This helps pushes traffic around your site, building higher ‘trust signals’ for Google, and gives your audience more to read.\"}},\"new9\":{\"type\":\"6\",\"fields\":{\"heading\":\"9. Write meta descriptions\",\"text\":\"This short paragraph of text under your page’s URL in search results can really improve the chance of someone clicking on it.\"}},\"new10\":{\"type\":\"6\",\"fields\":{\"heading\":\"10. Include title tags\",\"text\":\"These few key words describing the page and your brand name tell visitors and search engines what your site is about in the most succinct way possible.\"}},\"new11\":{\"type\":\"6\",\"fields\":{\"heading\":\"11. Tag your images\",\"text\":\"Search engines cannot ‘see’ images but they can ‘read’, so it’s important to describe any pictures you upload to your site.\"}},\"new12\":{\"type\":\"6\",\"fields\":{\"heading\":\"12. Create evergreen content\",\"text\":\"More thoughtful and practical advice-based articles can create better results over the long term. Top 20 list, anyone?\"}},\"new13\":{\"type\":\"6\",\"fields\":{\"heading\":\"13. Consider your domain name\",\"text\":\"Having a ‘keyword-rich’ domain name can improve ranking but can also lead to closer scrutiny by search engines.\"}},\"new14\":{\"type\":\"6\",\"fields\":{\"heading\":\"14. Think about headlines\",\"text\":\"Make headlines as snappy, attractive and descriptive as possible, and stay away from clickbait.\"}},\"new15\":{\"type\":\"6\",\"fields\":{\"heading\":\"15. Turn on comments\",\"text\":\"This helps generate a community of engaged users and, whatever their opinion of your content, you’ll know it’s being read.\"}},\"new16\":{\"type\":\"6\",\"fields\":{\"heading\":\"16. Go social\",\"text\":\"By using social media channels as a genuine way to interact with customers, you can help generate interest in your brand and drive traffic to your site.\"}},\"new17\":{\"type\":\"6\",\"fields\":{\"heading\":\"17. Watch your on-site advertising\",\"text\":\"Intrusive ads can destroy the pleasure of viewing your content and also slow your site down (not good for SEO).\"}},\"new18\":{\"type\":\"6\",\"fields\":{\"heading\":\"18. Avoid keyword stuffing\",\"text\":\"Some search engines will actually penalise you for obviously overusing certain keywords on your pages.\"}},\"new19\":{\"type\":\"6\",\"fields\":{\"heading\":\"19. Be aware of duplicated content\",\"text\":\"If two sites publish identical content, search engines will only index one of those pages.\"}},\"new20\":{\"type\":\"6\",\"fields\":{\"heading\":\"20. Don’t hide links and text\",\"text\":\"Doing things like hiding white keyword-stuffed text on a white background or hiding a link in a full stop is likely to be punished by search engines.\"}}}}}},\"new4\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Follow these tips and you’ll be well on your way up the rankings in no time!\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24760,27963,1,'Simplifying the complex: Fifteen years of marketing schools','2021-07-23 00:58:41','2021-07-23 00:58:41','a084e3b5-327d-49f3-80d8-7674603da1d5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WAYo0QEnCs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"After 20 years of marketing—including 15 years working with schools across Queensland and New South Wales—I am steadfast in my belief that there is no marketing challenge as complex as that faced by schools.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"In what other industry would you find thousands of individual stakeholders—students, parents, teachers, alumni and more—all with do-or-die expectations?\\n\\nOr an environment that can, quite honestly, change the trajectory of children’s lives?\\n\\nThen you have the two very distinct markets—internal and external—often with very different needs that need to be met with minimal budgets.\\n\\nThe experience of school changed little for nearly a century but, in the past 20 years, it has evolved in such leaps and bounds that today’s parents struggle to recognise it.\\n\\nPhilosophically, there are few industries I can think of that have such a strong evidence base to guide practice—here I’m thinking of teaching and learning—yet the required outcome is often diametrically opposed to it. Looking forward to the arrival of ATAR, anyone?\\n\\nIt’s little wonder that I find the business of marketing schools endlessly fascinating.\\n\\nOnly this morning I was in another principal’s office, talking through these very complexities. In our conversation, we touched on what I’ve discovered over the years are three bedrock principles every school needs as their marketing foundation. They’re my way of transforming a little of the complex into the simple.\\n\\n1. Work out what makes you unique\\nMarketing and enrolments teams live and die by their numbers. It is endlessly tempting, then, to try to go wide in your appeal so that you create the biggest possible net. In practice, though, it means no-one knows what you stand for. The better alternative is to embrace what makes you unique and then market that hard. You’ll end up attracting families that are the right fit for you and work hard as your ambassadors. Internally, there’ll be great cohesion, too, because you’ll attract and retain great educators who get what you’re about and support it in their words and actions.\\n\\n2. Don’t be afraid to like you’re unique\\nIf you’re bored one day in your office, try this game. Get ads from three schools, and then block out their hats and uniforms. Can you still tell them apart? It astounds me that we continue to use sterile, look-alike images—hey, here’s a girl in a lab coat with a test tube as proof that we promote girls in STEM!—that don’t reflect the day-to-day experience of what it is to learn at your school. Celebrate your uniqueness—and set yourself apart from your competitors—by choosing unique visual styles and photography.\\n\\n3. Now stay unique\\nOver time, teachers and leaders of schools get to know each other pretty well. Principals, in particular, know other schools like bookies know racehorses. The net result in marketing is that your great idea quickly becomes next year’s norm… and after a few years, what was edgy is simply outdated. Wise schools invest in a middle ground here. They start off strong and then review and refresh their brand every year or two. That way, subtle tweaks don’t destabilise your internal audience but you stay fresh and relevant externally.\\n\\n---\\n\\n**Want to know more?**\\n\\nSuzanne advises schools on sustainable marketing strategy that helps them get the most from their internal resources. To chat, phone 07 3334 8340 or email.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24762,27965,1,'What is marketing automation?','2021-07-23 01:06:04','2021-07-23 01:06:04','d618ad06-2c73-4bf0-85b3-8e2f5f328ca1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4WoAgyFTvi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Marketing what? The word automation can sound like a coder’s dream and everyone else’s nightmare.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But the truth is that if your business has prospects and customers and communicates with them in any way, then you already have most of the pieces needed to play with marketing automation.\\n\\n**Matching pieces**\\n\\nYou see, marketing automation is actually both a business owner’s dream and a marketer’s dream. Why? Because it’s software that helps sales and marketing to come together in order to grow revenue. Most marketing automation software includes the following components:\\n\\n**CRM (customer relationship management)**\\n\\nThe software will include a built-in CRM for storing your prospects and customers’ data and/or it will integrate with other CRMs such as Salesforce, Pipedrive, Nimble or Zoho.\\n\\n**Campaigns**\\n\\nThese can include any type of lead-gen, lead-nurturing and sales-closing campaigns—not just email but as broad as social, online, trade shows, webinars, Google Adwords, blogs and so on. Basically, it’s anywhere where the call to action leads to someone filling out a form online or liking a page. Once again, marketing automation software will include some or all of these tools built-in and it will play well with other software you’re already using.\\n\\n**Analytics and reports**\\n\\nIn the same way that email marketing software such as Mailchimp and Campaign Monitor provides reports on open rates, clicks and unsubscribes, marketing automation software takes it a step further. You can run reports on all of your online and offline campaigns and track engagement with your website. Then you can combine these statistics with your sales data to measure ROI from the generation of a lead right through to the close of sale.\\n\\n**The kicker**\\n\\nAll of these things exist outside of marketing automation. What makes marketing automation so powerful is how it brings them all together. The software uses triggers and workflows to automate time-consuming sales and marketing processes such as scoring, segmenting leads based on fit and engagement, and matching content to leads’ interests and pain points.\\n\\nThe result is highly personalised marketing that uses tailored and dynamic content to nurture every lead as if it was your most important one—from first touchpoint right through to closing a sale and beyond.\\n\\nAsk us to run a workshop for your team\\nMost marketers we talk to know the need for marketing automation but don’t have time to research the best option for them.\\n\\nRight now, we’re running a limited number of free one-hour workshops to help your team to determine the right fit for your strategy, and the best options available on the market.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24764,27967,1,'Getting the most from motion','2021-07-23 01:08:24','2021-07-23 01:08:24','098a21b4-e5ce-4d8f-a4fc-bdaf41663a55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UzdiNWbjFp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Video can be a great way to present information in an engaging format, with very little input required from the viewer. No matter what topic you’re covering, there’s always a way to bring it to life in video.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"**More bang for your buck**\\n\\nThe thing is, when most people think about creating a video, they think of it being extremely expensive. While that may have been the case years ago, nowadays it can actually be a very cost-effective exercise – particularly thanks to animation.\\n\\nWhen time is of the essence, animated videos can often be created fairly quickly and give you great bang for your buck. They can really grab people’s attention too, as there’s so much you can do with them creatively – they’re only limited by your imagination!\\n\\n**Got some explaining to do?**\\n\\nOne type of video becoming more and more popular with organisations is the explainer video. Generally about 90 seconds in length, explainer videos are often animated and used to communicate a fairly complex topic in an easy-to-understand way.\\n\\nCheck out the explainer video on the decisioning.co site. As well as the site itself, we created the neat little video – it just shows how a well-written and executed explainer can communicate clearly and succinctly, all without a big budget.\\n\\n**Support and simplify**\\n\\nAnother way in which animated videos are being used is to provide guidance to customers, helping them navigate often tricky subject matter. A great example of this is the ‘Better electricity deals for small business’ suite of videos we created for the Department of Energy and Water Supply.\\n\\nThese were used on social media and really communicated the essence of the problem at hand, cutting information down into sound bites that could be easily understood by the audience. The use of fun little characters and infographics were great in getting our message across.\\n\\nTo learn more about our thoughts on video, [check out this blog article](/resources/making-the-most-of-video).\\n\\nTo chat about an upcoming video project, get in touch – we’d love to be involved in the process.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24766,27969,1,'Getting the most from motion','2021-07-23 01:10:23','2021-07-23 01:10:23','cf254edc-e458-4d36-84e8-368b06603b5d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UzdiNWbjFp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Video can be a great way to present information in an engaging format, with very little input required from the viewer. No matter what topic you’re covering, there’s always a way to bring it to life in video.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"##### **More bang for your buck**\\n\\nThe thing is, when most people think about creating a video, they think of it being extremely expensive. While that may have been the case years ago, nowadays it can actually be a very cost-effective exercise – particularly thanks to animation.\\n\\nWhen time is of the essence, animated videos can often be created fairly quickly and give you great bang for your buck. They can really grab people’s attention too, as there’s so much you can do with them creatively – they’re only limited by your imagination!\\n\\n##### **Got some explaining to do?**\\n\\nOne type of video becoming more and more popular with organisations is the explainer video. Generally about 90 seconds in length, explainer videos are often animated and used to communicate a fairly complex topic in an easy-to-understand way.\\n\\nCheck out the explainer video on the decisioning.co site. As well as the site itself, we created the neat little video – it just shows how a well-written and executed explainer can communicate clearly and succinctly, all without a big budget.\\n\\n##### **Support and simplify**\\n\\nAnother way in which animated videos are being used is to provide guidance to customers, helping them navigate often tricky subject matter. A great example of this is the ‘Better electricity deals for small business’ suite of videos we created for the Department of Energy and Water Supply.\\n\\nThese were used on social media and really communicated the essence of the problem at hand, cutting information down into sound bites that could be easily understood by the audience. The use of fun little characters and infographics were great in getting our message across.\\n\\nTo learn more about our thoughts on video, [check out this blog article](/resources/making-the-most-of-video).\\n\\nTo chat about an upcoming video project, get in touch – we’d love to be involved in the process.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24768,27971,1,'Building better brands','2021-07-23 01:13:29','2021-07-23 01:13:29','51132389-2da3-4514-b3b9-b446d5700b37',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lRz71ReQLs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"So, you’re thinking of rebranding? Or branding something new from scratch? Good for you – there’s nothing we love more than brands that go out of their way to portray themselves in an interesting and unique light.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But before you start scribbling down new logo ideas, there are a number of things that we think are worth considering. Firstly, and yes we know there’s a lot of info out there on this, but it’s important to remind yourself what exactly a ‘brand’ is.\\n\\n##### **Brand basics**\\n\\nThis is also important when speaking to an agency, but clarifying exactly what you’re after – either a new brand identity or a new brand – can be crucial in your planning, not to mention costs and timings. A ‘brand identity’ typically includes a logo and other graphical devices, along with fonts and colours. But this alone doesn’t make a brand.\\n\\nA ‘brand’ includes all of the above plus so many other elements, which help your customers form an opinion of your organisation. Things such as images, feelings, products, words, sounds, smells, events, people and places, can all make up a brand too.\\n\\n##### **Beginning the brand journey**\\n\\nWith the above definitions in mind, once you’ve clarified what you want to do with your brand, it’s time to think about where to start. Try these steps on for size:\\n\\n1. **Conduct a brand audit** – if you’ve currently got a brand, look at all the elements and see what’s working, and what isn’t. External consultants who aren’t so close to your brand can often give a fresh, unbiased perspective.\\n2. **Do your research** – look at competitors to see what their brands are like, and what opportunities might be available to you. Also, look for inspiration outside your category or industry.\\n3. **Conduct a brand workshop** – this will help you dig up useful insights, and to develop a plan for where you want your brand to go and what you want it to portray.\\n\\nAfter completing these first few steps, you should have plenty of information to brief in your internal comms department or external agency on the job ahead of them. Of course, here at NWO we specialise in branding projects, so get in touch with us today to see how we can get involved.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24770,27973,1,'Overhauling your website','2021-07-23 01:16:03','2021-07-23 01:16:03','16b19419-e4ba-4867-887f-5b3b5097dcda',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-zjgeVEYzo2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"There comes a time in every website’s life where things need to change. Usually, in a big way.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But it needn’t be all doom and gloom. Yes, it can seem overwhelming and yes, it can take quite some time to implement. But remember to keep your eyes on the prize; don’t lose sight of why you’re doing the update in the first place.\\n\\n##### **So why should you do it?**\\n\\nFirstly, there’s the appearance. If your site looks dated, your customers might have the same perception of your brand. Also, your site should be mobile friendly – search engines are now starting to penalise sites that aren’t optimised for mobile.\\n\\nIt should also be more than an ‘online presence’ – it should add value to your business. So if it’s currently not drawing in customers, it’s worth updating. Analytics tools and SEO are also crucial additions for any efficiently run site, so definitely keep them in mind.\\n\\nThen there’s the engagement factor. Does your content and imagery really grab your audience and make them want to stay on your site? Also, you should be capturing information from your customers whenever possible, via tools such as contact forms, surveys and mailing lists.\\n\\n##### **How do you go about it?**\\n\\nHere are a few simple steps that might help.\\n\\n1. **Undertake an audit of your current site** – note what you think is working and what isn’t.\\n2. **Do a bit of competitor analysis** – see what other brands in your industry are doing online.\\n3. **Start mapping out the pages and sections of your ideal new site** – develop wireframes if you can.\\n4. **Work on content and imagery** – essentially filling in the blanks in your wireframe.\\n5. **Do some testing** – either online or face-to-face tests and focus groups can provide great feedback.\\n6. **Make relevant changes** – listen to what people have said and update your site accordingly.\\n7. **Send it live!** Then sit back and marvel at your new masterpiece.\\n\\nOf course, here at NWO we do offer a specialised website development service – contact us to find out more.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24772,27975,1,'Outsourcing creative services','2021-07-23 01:17:51','2021-07-23 01:17:51','2a9c66e4-5d80-469e-84be-6cc7a690f966',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-N45x3IS2PH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"When it comes to finding an external supplier, we understand the challenges many government comms (and non-comms) people face.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"You need someone who has a good idea of how the government arena works and the demands and limitations you face but still pushes the boundaries to achieve something worth paying external fees for. But where do you start?\\n\\n##### **Take a look at the list**\\n\\nA great place to begin your search for an external creative services supplier is the whole-of-government panel. Here you’ll find a list of large and small advertising and communications agencies that are all pre-qualified and experienced working in your space.\\n\\nWhen perusing the names on the whole-of-government panel, consider the following:\\n\\n- Smaller agencies can do big campaign and project work too. Many have been competing with the top end of town for years and can often ensure you get very senior, experienced people working directly with you on your job.\\n- Find an agency that can fill in the gaps you have. If you’re not used to outsourcing design or campaigns, the right agency can answer every question you have and work with you to develop a brief that will meet all your needs (even the ones you’re not sure of yet!).\\n- Help the agency and yourself by being clear on what’s required and what happens if or when you change your mind. Author’s corrections can amass unexpectedly and everyone needs to be clear on when they kick in and why they are happening.\\n\\nNWO is on the whole-of-government panel, so be sure to drop us a line to see how we can help with your next project or campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24775,27978,1,'Looking beyond the banner','2021-07-23 01:24:26','2021-07-23 01:24:26','e25336fb-30a0-46bb-b7ce-d995dd6acd3c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PozxXC4SkM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Banner ads have come a long way over the years. And the fairly recent introduction of HTML5 means they can now be transformed into beautiful little packages of story that work well amidst busy news pages, despite not having audio.\\n\\n##### **Striking the right balance**\\n\\nPre-rolls (which play before feature videos) and social media ads offer other options if you have the budget for video, when a television commercial doesn’t exist, and conventional video is too expensive.\\n\\nOne approach that provides the ideal balance is using video like a ‘banner ad on steroids’. By creating a simple (though still sophisticated) slideshow with a managed level of animation, you can add in story-boosting music and voiceover while keeping costs down.\\n\\n##### **NWO video examples**\\n\\nHere are some recent examples of videos we’ve created, using some of this thinking.\\n\\n\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F4a71SFzVH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/176686850\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/170735464\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new3\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/177308827\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bzpTaK9Jzv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We’d love to know about any banner ads or videos you’re planning. Drop us a line to see how we can help.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24777,27980,1,'Looking beyond the banner','2021-07-23 01:36:15','2021-07-23 01:36:15','d66412c6-b6d3-47cd-a509-c3d0cf329646',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PozxXC4SkM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Banner ads have come a long way over the years. And the fairly recent introduction of HTML5 means they can now be transformed into beautiful little packages of story that work well amidst busy news pages, despite not having audio.\\n\\n##### **Striking the right balance**\\n\\nPre-rolls (which play before feature videos) and social media ads offer other options if you have the budget for video, when a television commercial doesn’t exist, and conventional video is too expensive.\\n\\nOne approach that provides the ideal balance is using video like a ‘banner ad on steroids’. By creating a simple (though still sophisticated) slideshow with a managed level of animation, you can add in story-boosting music and voiceover while keeping costs down.\\n\\n##### **NWO video examples**\\n\\nHere are some recent examples of videos we’ve created, using some of this thinking.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F4a71SFzVH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/176686850\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/170735464\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new3\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/177308827\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24779,27982,1,'Making the most of video','2021-07-23 01:41:34','2021-07-23 01:41:34','4ea1ca5c-2a1c-4a24-9ed7-9561789ae886',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-93421JnaRh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Right now the web is awash with video. Just look at your Facebook or LinkedIn feed and you’ll get an idea of how much video content is being produced and posted every day. And it’s on the rise, with video expected to account for around 82% of all internet traffic by 2020.\\n\\n##### **Quality is king**\\n\\nThe thing is, we don’t have any more time in our days to view all this extra content, so video quality and relevance is going to play an increasingly important role in what gets watched and what doesn’t. While there are lots of cheap production services available, if you want your video to be successful, it’s worth looking beyond cost alone.\\n\\nThe key purpose of any video communication is to tell a clear and compelling story – something that captures and maintains your audience’s interest. It also needs to be well strategised, use its medium well and, of course, be well crafted.\\n\\n##### **Things to consider**\\n\\nWhen planning your next video, keep these things in mind:\\n\\nIs animation the right approach, or would live action better suit? Budget can be a big factor here because it is often much easier to animate.\\nThink about voiceover versus text on screen. Does the video need to work without sound, on social media or in a noisy display? Will people read enough of the message on screen? Is the voice vital to the communication of the message, through a tone, accent or character?\\nAre you creating a series? If so, can any illustration assets be used again, or can the video be edited for smaller uses such as social media marketing?\\nNWO video examples\\n\\n##### **Here are some recent examples of videos we’ve created, using some of this thinking.**\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F8O5gbyyqy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/141875728\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/186503939\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new3\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/145234065\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24781,27984,1,'Measure your marketing with meaning','2021-07-23 01:43:48','2021-07-23 01:43:48','14254d1c-d1d7-4b98-b526-39f68feb4573',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SFr1a8qndz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"It’s the age-old struggle for marketers – measuring the return on investment (ROI) of your activities and campaigns. The struggle comes in part because it’s difficult to relate concepts like brand awareness directly to sales. But that doesn’t mean there aren’t ways to monitor and measure your marketing and prove its worth. After all, if you don’t measure, how do you know what’s working?\\n\\n##### **Steps for meaningful data**\\n\\n1. define your metrics and develop a plan\\n2. collect the data\\n3. develop reporting guidelines\\n4. analyse and change as needed\\n5. Collecting and analysing meaningful data is about more than finding tools and interpreting charts. It’s about valuing the data and understanding how it can help justify and grow your hard work and campaigns.\\n\\nThere are several tools that will help you measure your marketing data, and Google analytics is probably the most helpful – it’s also free. Bonus!\\n\\n##### **What we look for**\\n\\nWhen measuring our campaigns for clients, we look at engagement and growth.\\n\\n##### **Engagement**\\n\\nStarting with content performance, it’s helpful to measure social shares on Twitter, Facebook and LinkedIn (shares equal love!), and then check your blog and website for bounce rates and visit time. Facebook and Twitter have built-in analytics tools that will help you here. On your website and blog, use Google analytics. High bounce rates and short visits usually mean your audience isn’t finding what they thought they would, or they’re not as engaged as they should be with your content. Pages per visit is another interesting content measure – if visitors are clicking around your site, they’re liking what they find and you’re getting more exposure. Nice work!\\n\\nA specific example of measuring engagement in action can be found in our My Smoking quit smoking campaign. It was targeted at men and women aged 18–29 across TV, radio, print and digital. Data showed that:\\n\\n- 8 in 10 young smokers supported the campaign\\n- 76% contemplated quitting because of the campaign\\n- 50% reported cutting down on cigarettes because of the campaign\\n- 47% tried quitting\\n\\nImagine being able to prove your campaign success to your team and managers? We do it from the start with our work. Do you?\\n\\n##### **Growth**\\n\\nFor growth in marketing, it all starts with click-throughs on your call to action. If your analytics tell you they’re low, then you need to change up your content. Look at the words you’re using, how your e-marketing looks, your subject line on EDMs and even the specific call to action.\\n\\nOther growth indicators will see you linking up with your sales team to measure metrics like how many leads your content is bringing in and turning into customers, cost per lead, average sales cycle duration and revenue per user. Always remember that increasing customer retention is the aim for the sales cycle, too. These things are tougher to measure, but good lead generation processes are a big help, and we find having campaign measurement expectations in place right from the start will make things much easier.\\n\\nA terrific example of analysing the performance and growth of our work was for our client the Chamber of Commerce & Industry Queensland (CCIQ). A review of their key communication channels saw us creating a monthly e-zine to better engage members. As a result of our work, we measured that CCIQ got 3,350 new subscribers in 5 months, grew website traffic by 161% to 76,277 visitors over six months, had 4,171 qualified leads generated over six months and a 110% increase in revenue in a single month. Impressive figures that not only lead to successful relationships with clients, but to high-achieving campaigns and ongoing work. We’re proving what we do is working.\\n\\n[Have a chat with us today](/contact) about your marketing and we’ll have you measured up in no time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24783,27986,1,'The 6 steps of content creation','2021-07-23 01:47:24','2021-07-23 01:47:24','380f5eec-6f83-47fb-b3fa-906306cfe10f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-92RCseTSp0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"You know what your business is about. You’ve nailed down your story. You’ve worked out who you want to talk to.\\n\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Now you need to add some real value.\\n\\nTime poor organisations need their content to work across different channels online – including websites, e-newsletters, blogs and across social media. One way to add value to your existing, more sales-focused, content is through content curation. Content creation means finding useful content online, curating it for your audience and re-telling it in your voice and with your advice.\\n\\n##### **Here’s how to optimise, write and curate content for your target audience.**\\n\\n###### **Defining your goals**\\n\\nEvery good plan starts with defining what it’s trying to achieve. How do you want your content to define your business? What are you offering your target market? Do you want to be a thought leader in your particular area?\\n\\nContent curation is about meeting your customers where they are and offering them something they’re not getting elsewhere. It’s about finding, gathering and sharing information of value with them; positioning your business and brand as an authority both with original content – your sales offering and business learnings – and information you’ve found and shared online. Participating in conversations that are happening about your field leads to more engagement with your target market, the ultimate goal being to give your brand a voice of value that will see your audience come back again and again for your offering.\\n\\n###### **Getting started**\\n\\nIt’s important to remember that well-executed content curation isn’t about regurgitating content that was already published. Instead, it’s your business’s personal re-telling of a story. As Susan Gunelius wrote for Forbes, the human element of content curation is what makes curated content compelling.\\n\\nTherefore, when offering your audience valuable content, remember to tell your story. What are you saying that’s different? What do you know that others might not? Involve your whole team – not just marketing and sales – and that story will evolve to give your business a truly useful and unique voice.\\n\\n###### **Finding content**\\n\\nHere’s where you get amongst it!\\n\\nWant to know where your target market is looking for information online? Go exploring! Ask them! Discover for yourself where the good stories are being shared. Find out what topics matter to your goals and audience, and go after them.\\n\\nIntegrating content curation into your broader marketing strategy is the way to go here – it legitimises the exercise and gets your team thinking about the value of your brand and how they can add to it. The best place to start is probably your social media accounts. Valuable content is being shared every day on platforms like Facebook, Twitter and LinkedIn. There are also Google alerts and news aggregate sites that can be set up with your special business needs in mind.\\n\\n###### **Be authentic to find your voice**\\n\\nThere is nothing like the instant world of social media to add value and timeliness to your content. Social media has changed the term ‘sharing’ forever, and the opportunities for your brand are endless. It’s important to add your own value to social content – as Mark Lerner says, if you just “retweet,” or share an article without including your own voice in the post, you’ll fail to distinguish yourself from everyone else who shared that content.\\n\\nHow do you find your voice? Authentically, of course! Offer your opinion and add your advice in areas you are confident about. Try to be friendly and informative, and adopt an approachable tone. Not so confident? Ask questions! Get your community talking and they’ll come back to you.\\n\\n###### **Context and thought leadership**\\n\\nGood content curation provides your audience with context and convenience – that means filtering and explaining what you find online, and rewording it in your voice so it’s useful to them. You don’t always need to be selling, but you do always need to be mindful of your brand and of offering real value. Knowing who your market is and writing in your ‘voice’ allows you to, as J-P De Clerck says, inform, educate, entertain and engage target audiences.\\n\\n###### **Where to share**\\n\\nThere are many ways to share curated content, but the best way is in a mix of your existing ‘sales’ content. E-newletters and blogs offer an opportunity to share curated and original content, and social media is the most instant way to add your voice to a new idea, and also probably the first place your audience will find you. They’ll also find your website, so don’t forget about the curated content opportunities there. Always remember that you should be providing useful information, not just repeating content or working on the hard sell.\\n\\nContent curation is convenient, but it’s also an important opportunity to add value, develop a business voice and grow an online community. What do you think about content curation? Has it worked for you? Got any tips? Let us know.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24785,27988,1,'B2B is dead','2021-07-23 01:49:44','2021-07-23 01:49:44','a5c87d87-df97-4529-8062-95220826c605',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-luIsqIjBj1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"As deaths go, it was a quiet one. Few people knew of its demise.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But there it lay still: the artificial divide between B2B and B2C marketing, gone forever.\\n\\nWhy bother lamenting the dead? Dare I say, it’s good riddance to a dodgy invention.\\n\\nThe idea that marketing business-to-business took entirely different skills and strategies to talking to consumers has its roots back in the early Noughties. The notion, which most marketers sadly still hold, was that because the volume of B2B transactions is so much higher than B2C – if you count every transaction required along a manufacturing supply chain, for example – then B2B branding requirements were stronger, too.\\n\\nConversely, the B2C belief held that the consumers of the world needed entirely different marketing strategies to convince them to open their wallets.\\n\\nTrue, where they differ most is in the justification of purchases. In B2C land, I need to convince myself why I should buy yet another pair of red shoes. (It’s a short discussion.) In B2B, I might be lobbying the board to invest in an expensive new CRM system.\\n\\nBut the truth is both groups share more similarities than differences.\\n\\nYour customers – be they businesses, consumers or both – have similar emotional and logical requirements that must be met. The relationship lifecycle between a purchaser and a brand exists with businesses and consumers alike. Both groups also frequent the same social media spheres, are Google-happy and web-savvy, and require strong brand confidence in order to purchase.\\n\\nThe illusion that you’re selling to a company in B2B should be seen for what it is. In retail or in business marketing, you’re selling to individuals. And each wants to feel that you get them.\\n\\n##### **Long live H2H.**\\n\\nWhich is where yet another acronym is starting to make a play: H2H, or human-to-human marketing.\\n\\nIt espouses the belief that we all, business and retail customers alike, are looking for connection, inclusion and to be understood. If you take that as your starting point – and not your burning need to produce another brochure – then the marketing toolbox available to your business automatically grows.\\n\\nIt means the vast strategies already out there like relationship marketing and continuous touchpoints become as relevant to a retail customer as to the business that buys your widgets. And the traditional B2C tools like social media become far more relevant business-to-business because they help build connections better than a sterile product flyer.\\n\\n##### **Let’s make H2H practical.**\\n\\n**1. Open your horizons**\\n\\nSwitching your mindset to focusing on the individual, human needs of your market means you can open your marketing to all sorts of potential tools. Just because you run a hair salon doesn’t mean you can’t start sending out a monthly email newsletter – if your customers are the kind of people that like to know more about you. And just because you’re an accountant doesn’t mean you can’t lead an industry group on LinkedIn or advertise on Facebook – if that’s where you’ll find the types of sales you want. Think about your customers, and let their needs lead you.\\n\\n**2. Make your customers feel**\\n\\nSales overwhelmingly come from relationships in my business, so meeting my clients’ emotional needs is a no-brainer. If my clients are happy, they’ll stay.\\n\\nBut even if your sales rely heavily on good old-fashioned foot traffic, it’s relationships that will lure them and keep them. So, in every tool you use to get to market, make sure you get the emotional kicker in. Empathise and prove you understand their needs.\\n\\n**3. Ask your employees what they think**\\n\\nIt’s one thing to make marketing decisions from an ivory tower. Chances are it’s your staff who really know how your clients think, or how your customers behave. So get their ideas and integrate it into your marketing. Let them drive your innovation.\\n\\n**4. Finally, listen to your customers**\\n\\nThere is marketing gold in every intentional conversation you have with a customer. Ask the ‘why’ that follows the tough questions: Do you feel safe with my business? Do you like dealing with us? Would you refer us to your friends? The answers will revolutionise how you think about marketing to your customers.\\n\\n---\\n\\n*Written for the February 2014 issue of Inform, the monthly magazine of the Chamber of Commerce and Industry in Queensland.*\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24787,27990,1,'Truth without fear','2021-07-23 01:52:04','2021-07-23 01:52:04','c1adec04-b2fe-4e43-8c7e-c9ea283d6327',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hJ2BsC4HWQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"I’ve always been a big believer that marketing is at its most powerful when you can encourage potential customers to ask an audaciously big question, and know that your offering can answer it indisputably and confidently.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Truth-telling doesn’t have to be controversial. Done well, it simply gives you an edge the others can’t match.\\n\\nSpecifically, truth-telling campaigns can be about demystifying doubts or falsehoods in the marketplace by challenging customers to ask you the tough questions, knowing you’ve nothing to hide and every positive answer can be a true one.\\n\\nNow, I don’t know if truth necessarily applies here all the time… but I do love the strategy behind McDonalds’ approach to all the urban myths (truths?) surrounding the content and manufacturing process of their food, and this approach, manifest in this nifty and functional digital solution http://yourquestions.mcdonalds.com.au, captured my interest.\\n\\nA powerful aspect of this approach is permissioning the target group to cut to the chase and bluntly ask anything. No matter how ugly the question, the Maccas guys maintain a friendly and elegant response, and manage to turn even the roughest questions into positive answers. This way, the questioner is the one who looks bad to the rest of the viewing audience, and the credibility of the answer is reinforced. Do we believe them? Is it the whole truth?\\n\\nOne of our clients markets products in a particularly crowded retail sector. Recently, after hearing a competitor was routinely bagging them, they decided to attack the rumours head-on by attaching to their quotes a clever but honest response. We’re helping them get their strategy to market this week, and believe they’ll reap rewards for their honesty.\\n\\n#### **What erroneous facts about your business lurk in your marketplace?**\\n\\nHave you researched your marketplace, either formally or informally, to know? Even if these myths aren’t widespread, addressing the issue in a positive way can provoke interest in your brand, create discussion, and increase the potential for better relationships and new work.\\n\\n##### **The truth is – or should be – out there.**\\n\\nTruth-telling campaigns can be some of the most rewarding to work on.\\n\\nFrom a tagline that challenges the competition to a wholesale campaign addressing porkies, the benefits to your brand can be great if you get the right help to research, strategise and execute it well.\\n\\n[Talk to us](/contact) – we’d love to help.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24789,27992,1,'Promises, promises','2021-07-23 02:57:11','2021-07-23 02:57:11','9931cc08-aaed-4b45-9f1e-e8b2057e3fd3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Ekny1wVuy4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Aah, Telstra.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"If you own a business small enough that it’s your job to do hand-to-hand combat with a telco, these two words say it all. And it doesn’t matter what brand name you insert: nothing brings out a sense of shared suffering better than a tale of a telco stuff-up.\\n\\nI had a story I dined out on regularly that involved a telco sub-contractor turning up to fix a crackle – and ending up severing all of the phone and fax lines running to my business. That was fun.\\n\\nRight now, I’m in my 7th week of hour-long conversations with many truly delightful employees of a certain telco, each of whom is exceedingly articulate and apologetic for all the employees who have gone before them. (One supervisor, in all seriousness, said to me: “You need to expect that we won’t get anything right. In fact, I find it best to have very low expectations.”)\\n\\nMy end of a conversation just a week ago went something like this: “So you’re telling me that you can see that you’ve made a mistake in charging me $700 extra this month, but that it’ll take you another three months to reverse the mistake in billing… so I need to give you $700 now and trust that you’ll give it back to me later?”\\n\\n##### **Not surprisingly, I asked for this once-in-a-lifetime deal in writing.**\\n\\nOf course, stuff-ups, broken promises and disappointments occur every day between businesses and consumers. It’s human nature. It doesn’t have to be a telco – although they do it with panache. And it doesn’t have to be big business – although it often is.\\n\\nSmall businesses can often break faith with customers through the sheer limitations of their size. Flexibility and nimbleness are great benefits of working with small business; but when lots of work hits, there’s no-one spare to get it done. Unfortunately, SMEs also need to fight harder than big corporates to keep consumer faith and love alive – because it can mean the difference between floating or sinking.\\n\\nHere’s a great example. Quite a few weekends ago, a small water filter company I’ve used in the past phoned me. The first guy – who said he was the business owner – gave me the sales spiel, and then handed me off to the junior to take my order. Inwardly, I applaud their decision to go aggressively out to the market and to phone customers one by one for after-hours orders. After all, when cash flow’s tight, you have to work smart. Outwardly, I’ll probably not order from them again: the filter still hasn’t arrived.\\n\\n##### **It’s all very well for marketing managers to talk endlessly about channels, for CEOs to cast vision and for designers to beleaguer brand design.**\\n\\nBut at the heart of every brand experience must be trust, in any of its forms. If you’re a services company, then be a trusted advisor. If you provide products, then provide them to a high standard. And in every transactional stage, keep your promises – whether it’s getting a bill right, delivering a product or following up words with actions.\\n\\nSmall businesses also need to keep promises in order to grow their future markets. Nothing closes doors on future opportunities faster than a disgruntled current customer. Case in point: I’m a hostile captive to my telco. No other telco covers my area – so it’s either their way or no information superhighway. But captivity doesn’t encourage me – it frustrates me, and when added to negative experiences, makes me ready to share my tales with anyone and everyone.\\n\\nLikewise, small businesses need to beware the hostile captives in their business. Is there a customer who’s contractually wedded to you but bitterly unhappy with the service you provide? Beware their rage – it can and will go viral to potential customers in the blink of an eye.\\n\\nCherish the value of trust to your customers. Promises kept will define you and your brand long after your competitors have broken theirs.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24791,27994,1,'Are customers giving up on your website?','2021-07-23 02:59:41','2021-07-23 02:59:41','a5512f3b-c4a4-442a-b544-bd1826a63692',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gahB36q3Yd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"We’ve all been to websites where trying to make a simple purchase can end in frustration with an impossible-to-navigate website, or, worse for the organisation, to us turning to a competitor. Good web design translates to successful conversions, and all of that is dependent on the user experience.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"A great new infographic has found that we’ll give a website a minute to display what we’re looking for before we give up. Some types of sites are better than others in delivering what we’re after – especially hotel booking sites.\\n\\nThe two biggest complaints about web sites, according to the research, include that there is ‘too much going on’ and also ‘not enough information’, which we can take to mean that many sites drone on and on… but don’t really say much.\\n\\nUsers also complain – across all age groups and online skills – that text is too small and that navigation is difficult on the sites they give up on. Thirty-five per cent of users fail to complete simple tasks on the average website.\\n\\nLet’s improve those stats, shall we? Here’s a plan.\\n\\n##### **1. Design from the user’s perspective, not your own**\\n\\nWe know your company is the greatest thing since Google and you can’t wait to tell everyone all about where it began, who works there and the details of your offering. But the truth is that a user just wants to get to the point, and their interests should override yours. Usability is key. Show them what they’re looking for, and don’t make them search for it. That doesn’t mean sacrificing look and feel for too much simplicity, it just means focusing the layout and design on the search.\\n\\n##### **2. Create a navigation path**\\n\\nIf the information on your website is simple and structured, you can guide visitors on the path you’d like them to take. Use tabs and sub-pages for different categories, and make it logical.\\n\\n##### **3. Content is king**\\n\\nContent is the most important element of your site, really – and it needs to fit the logical and structured navigation. You’ll want to include keywords, page titles, meta tags, and headings for search engine optimisation. As we’ve previously discussed in our Writing for (readable) web article, there are some hallmarks we use when writing web copy for our clients:\\n\\n- short, effective sentences (say the same information with less)\\n- sub-headings and headings containing keywords\\n- everyday words the average reader can easily understand (plain English)\\n- informal voice\\n- common language conventions\\n- direct language\\n- active tense\\n- consistent, logical structuring of information.\\n\\n##### **4. Speed it up and make it simple**\\n\\nLet’s face it, we’re a busy bunch, and a reminder of the old days of dial-up – waiting for your site to load – is going to test the patience of even the most loyal visitor. In fact, many visitors will start to abandon a website after just a few seconds of loading time. Most of that time is the result of design decisions, so simplify some of the fancy effects.\\n\\nWe love web design and working with you on the best and most creative way to present your business. Starting with a structure that appeals to your audience, then adding in some clever design and copy, ensures that your site will be a success. Talk to us about it today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24793,27996,1,'8 important marketing questions for every business','2021-07-23 03:01:34','2021-07-23 03:01:34','7fc89b68-329c-4bbc-a9cb-7dd60212611a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VzKHBkk2Ca\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Marketing communications in business is all about attracting and retaining customers. We do it for dozens of Australian companies every day, and the bigger the company, the tighter the marketing strategy governing their communications – because they know customers are fickle, and competitors are waiting to pounce on any weakness.\\n\\nThe same philosophy of tight strategy and execution should drive your business. Effective marketing communications must be an essential part of your core business strategy to ensure you’re pushing the same, consistent message through every aspect of your organisation.\\n\\nBut it’s not always so easy to go it alone. If you’re in a small business and know you need to step up, here’s a handy checklist of the marketing questions you need to answer to keep your customers in tune with you – and your competitors at bay.\\n\\n##### **Who are my existing customers?**\\n\\nThe best way to sell to your customers is to first understand who they are, why they buy from you, and what value they expect from you. And the best way to learn this? Listen to them. Marketing communication begins with good customer relationships, which are almost like your own form of market research.\\n\\nWhen you talk to your customers, you’ll learn things like your customers’ age, income, education, how often they buy from you, what their buying triggers are, and how they’re influenced. This is a valuable step in honing your marketing message, so don’t be tempted to think you already know the information if you’ve been in business for a while. Every customer conversation will add another layer to your understanding.\\n\\n##### **Who are my potential customers?**\\n\\nIt’s just as critical to have a very clear understanding of your desired target market and new customers. Get as detailed as you possibly can. The more specific you are, the better you can develop messages for them.\\n\\n##### **Who are my competitors?**\\n\\nUnderstanding who competes for your customers – and what they’re offering – is vital. Get very familiar with every aspect of your competitors’ businesses – including their reputation, prices and marketing material. This knowledge will help you position your marketing communication relative to how your customers are already being targeted and differentiate yourself in the market.\\n\\n##### **What am I trying to achieve?**\\n\\nUnderstanding why you’re communicating with your customers is essential. Are you purely after quick wins? Or preparing the ground for a new product or stronger relationships? The rationale and potential value for any marketing effort should determine how much money you need to spend, and where it’s best spent.\\n\\n##### **What am I trying to say?**\\n\\nThis is where everything comes together. You must now develop clear, key messages that talk up your product or service, meet the expectations and needs of your new and existing customers, and differentiate yourself from your competition.\\n\\nMake sure you have no more than five key messages – in fact, the fewer the better – and make them specific and meaningful. That’s how you stand out in the crowded market. Ensure your customers are aware of your business and its products or services, and why they should care (e.g. What’s in it for them? And what are the true benefits?). These benefits should be factual and real. It’s important not to overload customers with information, but rather to be clear and articulate.\\n\\nAll of your marketing communications should include a strong call to action: What is it that you want customers to do once they’ve interacted with you? Leave them in no doubt and make it easy for them.\\n\\n##### **What’s the right channel?**\\n\\nThere’s no doubt that it’s a busy marketplace when it comes to finding the perfect place to share your marketing messages. The challenge here is in focusing and narrowing your communication – and finding the right time and place to connect with your customers.\\n\\nMany marketers are now jumping on social media networks, but that might not be where your customers can be found. It’s important that you understand how and when they want to hear from you, and use that information to foster a true customer relationship.\\n\\n##### **Is my strategy integrated?**\\n\\nCommunicating in an integrated way across all channels (such as website, emails and brochures) means your brand will become better known and understood. Integration means that every time your customers hear from you, they get the same feel for who you are. By creating consistent, strong marketing communications, your customers will identify and remember you into the future.\\n\\n##### **Finally: Am I communicating with genuine creativity?**\\n\\nCreativity isn’t about paying your local print shop to pull together a flyer with your logo on it, or using a WordPress template to build your long-overdue website. They might be tactics that you use, but they’re not what creativity is really about.\\n\\nTrue creative thinking pulls together everything you know about your business, your goals and your customers into a single, cohesive package that cuts through, connects and resonates. Creativity distills everything down to the right words, images and design so that your marketing collateral has the right impact. No business can afford to skimp on this stage because getting creativity right means you’ll get the results you’re really after: maximum return on your marketing investment.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24795,27998,1,'What the artist breaks','2021-07-23 03:04:26','2021-07-23 03:04:26','69fea1fa-1deb-4218-916d-a0ce60df4e30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">It’s arguable that copywriting is at the heart of all advertising and marketing today. We remember taglines and recall jingles; and copy is the beginning of most brand stories. But, boy, is it fantastic to look back at a time when it really was all about the words.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Bill Bernbach was the founding creative director of legendary Manhattan ad agency Doyle Dane Bernbach. He came out with quotes like:</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">“Advertising is fundamentally persuasion and persuasion happens to be not a science, but an art”, <em>and</em></span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">“Word of mouth is the best medium of all”, <em>and</em></span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">“Rules are what the artist breaks; the memorable never emerged from a formula.”</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">That’s really provocative stuff that makes you nod your head at the truth and simple power of his thinking – and imagine how inspiring but uncompromising a boss he would have been. What an exhilarating time to be writing.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Bernbach not only had a way with a turn of phrase, but he also really set up the structure of creative teams for marketing and advertising, and was, of course, part of the inspiration for Mad Men. But mostly, he was a writer. And what a writer he was. His firm revolutionised advertising copy and laid out the early foundations for brand storytelling through engaging narrative and brand persona development. We can, and have, all learned from these guys.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">In the 1960s, DDB took on Volkswagen as a client and began creating <a href=\"http://nwo.app:8000/wp-content/uploads/2013/10/vw-lemon-and-think-small-ads.jpg\">a series of print ads</a> that referred to the VW as a “lemon” and encouraged consumers to “think small”. The copy, by the incomparable Julian Koenig, starts out saying “<em>This Volkswagen missed the boat. The chrome strip on the glove compartment is blemished, and must be replaced</em>.” Not exactly sales speak. </span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">It was funny. It was clever. And it was ground-breaking.</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">For the rest of the decade, VW kept their unconventional campaign rolling. DDB’s strategy of turning seeming faults into benefits was a huge hit. One ad didn\'t even include a picture of the little lemon: “<em>No point in showing you the 1962 Volkswagen. It still looks the same</em>.”</span></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">Much has been written about the ads, and you can take a look at a bunch of them <a href=\"http://www.visualnews.com/2013/09/03/20-best-volkswagen-ads-1960s-campaign/\">here</a> if you like. It was ranked the best advertising campaign of the twentieth century by Ad Age, and it deserves the title. This sort of brand bravery is rare and may be a little of its time, too. The truth is that the power is all right there, in the copy, which exists to inspire us. Last words to Mr Bernbach himself:</span></p>\n<p class=\"AAPARAGRAPH\"><em><span lang=\"en-us\" xml:lang=\"en-us\">You can say the right thing about a product and nobody will listen. You\'ve got to say it in such a way that people will feel it in their gut. Because if they don\'t feel it, nothing will happen.</span></em></p>\n<p class=\"AAPARAGRAPH\"><span lang=\"en-us\" xml:lang=\"en-us\">What is your brand really saying?</span></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QjbPRQcxAH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"It’s arguable that copywriting is at the heart of all advertising and marketing today. We remember taglines and recall jingles; and copy is the beginning of most brand stories. But, boy, is it fantastic to look back at a time when it really was all about the words.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Bill Bernbach was the founding creative director of legendary Manhattan ad agency Doyle Dane Bernbach. He came out with quotes like:\\n\\n“Advertising is fundamentally persuasion and persuasion happens to be not a science, but an art”, and\\n\\n“Word of mouth is the best medium of all”, and\\n\\n“Rules are what the artist breaks; the memorable never emerged from a formula.”\\n\\nThat’s really provocative stuff that makes you nod your head at the truth and simple power of his thinking – and imagine how inspiring but uncompromising a boss he would have been. What an exhilarating time to be writing.\\n\\nBernbach not only had a way with a turn of phrase, but he also really set up the structure of creative teams for marketing and advertising, and was, of course, part of the inspiration for Mad Men. But mostly, he was a writer. And what a writer he was. His firm revolutionised advertising copy and laid out the early foundations for brand storytelling through engaging narrative and brand persona development. We can, and have, all learned from these guys.\\n\\nIn the 1960s, DDB took on Volkswagen as a client and began creating a series of print ads that referred to the VW as a “lemon” and encouraged consumers to “think small”. The copy, by the incomparable Julian Koenig, starts out saying “This Volkswagen missed the boat. The chrome strip on the glove compartment is blemished, and must be replaced.” Not exactly sales speak.\\n\\nIt was funny. It was clever. And it was ground-breaking.\\n\\nFor the rest of the decade, VW kept their unconventional campaign rolling. DDB’s strategy of turning seeming faults into benefits was a huge hit. One ad didn\'t even include a picture of the little lemon: “No point in showing you the 1962 Volkswagen. It still looks the same.”\\n\\nMuch has been written about the ads, and you can take a look at a bunch of them here if you like. It was ranked the best advertising campaign of the twentieth century by Ad Age, and it deserves the title. This sort of brand bravery is rare and may be a little of its time, too. The truth is that the power is all right there, in the copy, which exists to inspire us. Last words to Mr Bernbach himself:\\n\\nYou can say the right thing about a product and nobody will listen. You\'ve got to say it in such a way that people will feel it in their gut. Because if they don\'t feel it, nothing will happen.\\n\\nWhat is your brand really saying?\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24797,28000,1,'What the artist breaks','2021-07-23 03:06:02','2021-07-23 03:06:02','b427eec4-a8f2-451d-b11e-292fd5d924d4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QjbPRQcxAH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"It’s arguable that copywriting is at the heart of all advertising and marketing today. We remember taglines and recall jingles; and copy is the beginning of most brand stories. But, boy, is it fantastic to look back at a time when it really was all about the words.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Bill Bernbach was the founding creative director of legendary Manhattan ad agency Doyle Dane Bernbach. He came out with quotes like:\\n\\n“Advertising is fundamentally persuasion and persuasion happens to be not a science, but an art”, and\\n\\n“Word of mouth is the best medium of all”, and\\n\\n“Rules are what the artist breaks; the memorable never emerged from a formula.”\\n\\nThat’s really provocative stuff that makes you nod your head at the truth and simple power of his thinking – and imagine how inspiring but uncompromising a boss he would have been. What an exhilarating time to be writing.\\n\\nBernbach not only had a way with a turn of phrase, but he also really set up the structure of creative teams for marketing and advertising, and was, of course, part of the inspiration for Mad Men. But mostly, he was a writer. And what a writer he was. His firm revolutionised advertising copy and laid out the early foundations for brand storytelling through engaging narrative and brand persona development. We can, and have, all learned from these guys.\\n\\nIn the 1960s, DDB took on Volkswagen as a client and began creating a series of print ads that referred to the VW as a “lemon” and encouraged consumers to “think small”. The copy, by the incomparable Julian Koenig, starts out saying “This Volkswagen missed the boat. The chrome strip on the glove compartment is blemished, and must be replaced.” Not exactly sales speak.\\n\\n##### **It was funny. It was clever. And it was ground-breaking.**\\n\\nFor the rest of the decade, VW kept their unconventional campaign rolling. DDB’s strategy of turning seeming faults into benefits was a huge hit. One ad didn\'t even include a picture of the little lemon: “No point in showing you the 1962 Volkswagen. It still looks the same.”\\n\\nMuch has been written about the ads, and you can take a look at a bunch of them here if you like. It was ranked the best advertising campaign of the twentieth century by Ad Age, and it deserves the title. This sort of brand bravery is rare and may be a little of its time, too. The truth is that the power is all right there, in the copy, which exists to inspire us. Last words to Mr Bernbach himself:\\n\\nYou can say the right thing about a product and nobody will listen. You\'ve got to say it in such a way that people will feel it in their gut. Because if they don\'t feel it, nothing will happen.\\n\\nWhat is your brand really saying?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24799,28002,1,'The tender pitch','2021-07-23 03:08:45','2021-07-23 03:08:45','e9186c5a-1698-4eab-805d-47f32282262c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1LjriJPkD9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"If networking nights are like professional speed dates, then tenders and pitches are like fast and furious flings that shotgun quickly to marriage or – mostly – burn out with little said between the two parties.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"And in pitch season, that unofficial period of the year where you seem to do little paid work and an awful lot of these tenders and pitches, one can get a little down at the sheer amount of time and expense expended, not to mention the quick but brilliant creative that won’t see the light of day.\\n\\n##### **‘I’ve met someone else’**\\n\\nSo, with pitches in full swing, I thought I’d continue the metaphor and shed some light on what it feels like to be the eager party still sparkly with romance and ready to commit to a long-term relationship, only to be told it’s over before it even began. It’s not much fun to be cast as the best friend and not the star.\\n\\nEarlier in my career, I was a member of the Australian Graphic Design Association (AGDA). AGDA had an unambiguous policy against free pitching, equating it to professional prostitution (though, oddly enough, prostitutes get paid for what they do). Their policy was built on the idea that our ideas are everything, and that giving them away was the worst thing we could do.\\n\\nIt’s a good, strong ethic that I still wholeheartedly espouse – but I compete in an industry where free pitching, often on top of an extensive and expensive tender process, is the norm. If only my industry had the same rule about free pitching, then we might all get hired for our potential and value without the massive time and IP giveaway.\\n\\n##### **‘It’s over’**\\n\\nThe biggest challenge, though, about free pitching is not the cost or the time. It’s the requirement to develop creative without the ability to properly research, develop the brief or fully explore the clients’ needs.\\n\\nWhile all pitchers (except incumbents) are under the same restrictions, nobody can really develop a campaign under a free pitch that will work as well as one developed with the serious time and effort it takes to truly know a brief and provide a solution.\\n\\nSubstance should matter more than flash. Didn’t our mothers always warn us about girls like that? But sadly, another agency’s flash can mean a budding relationship is over before it even had a chance to begin.\\n\\n##### **‘There are plenty more fish in the sea’**\\n\\nSo the answer is, of course, to not try and meet new professional flames this way. Nobody is forcing us to participate and there are plenty of potential lovers who will choose you based on referral and credentials. But the sad fact is that whole sectors don’t procure that way and if you want to work with them – and we do – you need to be ready to date their way.\\n\\n##### **Creative house seeks new relationship**\\n\\nI admit it: we’ve been playing the field. And yes, from time to time, the dating game has meant we’ve been a bit burned, but never bitter.\\n\\nIn our adventures, though, we’ve found love – and if past experience can teach us anything, it’s that we’re built for a love that lasts. We want the kind of client relationship that grows and builds over time, bringing with it joy, rewards, results... and a bit of fidelity.\\n\\nCare for a date?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24801,28004,1,'Writing for (readable) web','2021-07-23 03:12:29','2021-07-23 03:12:29','dd69ab5c-943d-4f2d-b6d0-216fd1d4715c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AWtBdVK79w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Just as website navigation is a unique narrative structure, writing web content follows unique writing conventions.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Why? Because that’s the way we work as readers.\\n\\nWhen we pick up our tablet or our website, we rarely read word for word. Research has shown the average reading time is 25 per cent slower on a screen, so we skim, searching for keywords.\\n\\nAnd, because we don’t want to scroll, we won’t.\\n\\nThe result? Your web copy had better be short, concise and very easy to navigate. Otherwise, you’ll lose your readers in less time than it takes them to click their mouse.\\n\\nThe way your readers read demands your web and other digital content should be written to suit.\\n\\nTo take a practical example: The length of copy and type of language used in a corporate letter or marketing communications are too long and formal for a digital environment. Aim instead for half the words you’d use in a paper document. And then cut in half again.\\n\\nAnd to take another example: Think of a news story. It has the main info up the top, short and snappy sentences, and clear headings. Web and digital writing follows the same convention.\\n\\nAt New Word Order, we have established eight hallmarks for effective web writing, and we use these to assess our clients’ site and the work we provide them:\\n\\n- Short, effective sentences (say the same information with less)\\n- Sub-headings and headings containing keywords\\n- Everyday words the average reader can easily understand (plain English)\\n- Informal voice\\n- Common language conventions\\n- Direct language\\n- Active tense\\n- Consistent, logical structuring of information.\\n\\n##### **1. Write in short sentences and paragraphs**\\n\\nAim for short sentences, each with one or two clauses.\\n\\nEach paragraph should contain no more than 2–3 sentences, and altogether a page of content should fit comfortably within the web page without requiring the reader to scroll. The optimum line length is 8–12 words.\\n\\nIncluding useful and interesting facts keeps readers’ attention longer than ‘motherhood’ or general statements. They’re more believable, too.\\n\\n##### **2. Use headlines and sub-headings**\\n\\nHeadlines and sub-headings are an effective way to guide a reader through their skimming of a web page. Since research tells us readers rarely read every word on a website, it makes sense to prioritise what they see – and headlines and sub-headings do this well.\\n\\nMake headlines and sub-headings factual, not fanciful. This enables readers to rapidly scan useful keywords.\\n\\n##### **3. Write in plain English**\\n\\nWhile plain English should be the aim of all of your publications, it’s especially important in a digital environment.\\n\\nPlain English means using words the average Australian reader can easily understand.\\n\\nThat means you should:\\n\\n- include useful headings\\n- use the simplest form of a word possible e.g. said (not announced or discussed); try (not endeavour)\\n- define tricky terms\\n- delete unnecessary verbiage\\n- use familiar, easily understood words\\n- include lists and tables to simplify content and reduce word count.\\n\\n##### **4. Use informal voice**\\n\\nUnlike general corporate writing, digital environments demand a more informal voice.\\n\\nThis means using ‘you’, ‘we’ and other pronouns to speak directly to the reader within the text. Formal language is out.\\n\\n##### **5. Use common language conventions**\\n\\nEffective web writing uses language conventions found more commonly in conversation.\\n\\nThis means using:\\n\\n- contractions (isn’t, that’s)\\n- common bridging words to begin sentences (and, but, because)\\n- short statements of fact\\n- links to longer explanations (e.g. PDFs, minutes, fact sheets).\\n\\n##### **6. Get to the point**\\n\\nWriting for digital environments takes discipline, because readers have little tolerance for fluffy language, repetition, ‘happy talk’ or unnecessary explanations of what’s already evident on the page.\\n\\nTo write direct, straight-to-the-point copy:\\n\\n- stick to the topic\\n- cut unnecessary adverbs (e.g. completely finish, tentatively plan)\\n- delete tautologies (e.g. whole of the country; for a period of six months)\\n- use simple present tense when possible (e.g. uses instead of ‘is utilised by’, conducts instead of ‘is conducted by’)\\n- avoid clichés.\\n\\n##### **7. Use active voice**\\n\\nActive voice is a way of structuring information that allows you to focus on the subject and cut excess words. Following this method enables quick readability.\\n\\nActive voice places the subject first in a sentence, followed by the action.\\n\\ne.g. Active voice: New Word Order opened in 1998.\\n\\nPassive voice: New Word Order was opened in 1998.\\n\\n##### **8. Structure content well**\\n\\nThe most important information should always be placed first on a web page, and the web layout and navigation should be consistent and logical to a reader.\\n\\nA good rule of thumb for navigation is organise the content to suit how the reader needs to discover it.\\n\\nWith only a few exceptions, your website should go no deeper than three levels of navigation. Too many websites go down rabbit warrens.\\n\\nTo structure new web content, follow this checklist:\\n\\n- Plan what you need to write, and stick to the topic.\\n- Lead with the most important information – this means placing these details first on a page.\\n- Keep each section simple and clear – don’t try to achieve too much in one place.\\n- Use meaningful links – rather than repeating information found elsewhere on the website, link to it.\\n- Put the most recent information at the top – for example, when you’re archiving minutes or reports.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24803,28006,1,'Photography and your brand','2021-07-23 03:13:18','2021-07-23 03:13:18','bfdcbb38-99fc-4523-8f6b-4febc5f47ca5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Y0QyW1M0Xw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Using visuals and imagery are essential parts of any campaign. When you take a look at our lives and consider our love of infographics, Pinterest and Instagram, as well as our preference for fast, digestible information, using pictures well in your marketing mix makes good sense.\\n\\nMost marketers turn to stock photography when they want to illustrate their idea or campaign. That’s because it can be cost-effective and fast. But there are risks with stock photos, and smart marketers should know them.\\n\\nThe reason we use stock photos most often here at New Word Order is to create mock-ups and ideas for our clients, giving them a better representation of our idea and what we have in mind. Stock photography can also be faster and cheaper than a photo shoot, and it’s instantly available. So, for brochures and smaller pieces, stock photography can be the way to go.\\n\\nBut there are also many, many reasons why investing in a proper photo shoot is better for your business and brand. For starters, stock photography is pretty generic, impersonal and unrealistic. Probably not the look you were after for your new campaign or your brand.\\n\\nStock photos are never taken with a specific idea in mind, and that means they can be bought by anyone and have no particular alignment with any brand. If you use stock photos, you risk looking like any other business – unoriginal, and quite possibly uninspired. If you want to look unique, only images unique to you can achieve this… not the clichés and overused images of your competitors, nor the unrelated stock images you might try to shoehorn into your idea.\\n\\nAt NWO, we love a photo shoot. It’s not just that we’re all about an original idea, either. We believe that when you work with a photographer, you get far more than an image file. You get the benefit of experience, creativity, knowledge and insight.\\n\\nYou also get to say something unique, present something instantly recognisable to the market, and really stand out. You get a professional who listens to and understands your brief, knows what you’re trying to say and what you want to achieve. If you want to make changes on the day, you can, and the final decision on the final image is also in your hands. Complete control.\\n\\nSo while stock photos may be cheap and fast, they can also make your brand look unfocused and unoriginal. A photo shoot is the only solution for a company that wants to visually stand apart from the competition.\\n\\nWith the help of our trusted photography partners, we’ve directed photos shoots for many of our clients – some of them on tight budgets – from Mosaic Chartered Accountants through to Embertec’s very own Power Saviour. For every client, it’s been well worth the investment to truly stand out.\\n\\n[Talk to us today](/contact) about how you can use photography to bring life to your next campaign.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24805,28008,1,'Mums mean business','2021-07-23 03:14:01','2021-07-23 03:14:01','956ed9c2-1c2d-4e87-a2c6-909b76ebf4e5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jTl3w1cGNC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Twelve years ago, I turned my back on a promising career at News Limited and became part of what is now a significant movement in small business: the mumpreneurs.\\n\\nFaced with inflexible working conditions, shift work and only average pay as a subeditor, the option to build a business through freelancing was alluring. My husband and I had also walked a long, hard road to have our kids; turning around and putting them in full-time childcare felt like a betrayal of the journey.\\n\\nWorking from home with a young child, of course, had drawbacks. I remember clearly the day my monitor went dead during a pressing deadline… because my baby had crawled underneath the desk and chewed through the connection cord. The horror that she could have just easily chomped on the power cord sent me out to buy a playpen.\\n\\nSocial isolation was also a significant issue. I didn’t join mother’s groups or lunch with the ladies while any of my three children were at home because every sleeping moment for a child was a working opportunity for me. No other woman in my wide circle of acquaintances worked for themselves or, if they did, it looked nothing like my level of enterprise. I became – and remain – the queen of speed because there was simply no time to waste.\\n\\nSince expanding the business and no longer working from home, I look back on those years with a mixture of amusement and dread. It tickles me that so few clients knew I worked from home, and that my business grew just as fast as my children did. Sometimes faster. I also remember, very clearly, the deadlines worked all night and the stress of needing far more hours than I had capacity. Quite literally, I pressed ‘send’ on work to clients on my way to hospital to deliver a baby. Twice. By the time my third child arrived, thankfully, I’d hired another writer.\\n\\nLast week, memories of my early years in small business came flooding back with a Sydney Morning Herald article on mumpreneurs. The women interviewed were driven to begin home businesses by similar factors: childcare costs and a desire for flexible parenting while generating an income.\\n\\nBut that’s where the similarities end. Today’s mumpreneur is part of a growing army. A BankWest study in 2011 found women are starting businesses at twice the rate of men, thanks to the benefits of better technology. Mumpreneurs Online surveyed UK women last year to find that 73 per cent had started their own business – and they knew another woman who was doing the same. AusMumpreneur claims 16,000 members nationwide. And in October, a two-day conference called Mumpreneurs on Fire is drawing hundreds of women to Melbourne. One of the plenary sessions is on how to build a multi-million dollar business. These mums mean business.\\n\\nIt’s about time. With Baby Boomers fast exiting the small business – half of all businesses are owned by people over 45 – there will be a glaring gap in our economy unless Generation Y, mums included, steps up to the plate.\\n\\nLong live the entrepreneurial spirit enshrined in small business, and best of luck to this rising mummy army. I just hope they get more sleep than I did.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24807,28010,1,'Photography and your brand','2021-07-23 03:14:11','2021-07-23 03:14:11','38c5dd0e-bacb-4e87-beca-f641eb8b059a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Y0QyW1M0Xw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Using visuals and imagery are essential parts of any campaign. When you take a look at our lives and consider our love of infographics, Pinterest and Instagram, as well as our preference for fast, digestible information, using pictures well in your marketing mix makes good sense.\\n\\nMost marketers turn to stock photography when they want to illustrate their idea or campaign. That’s because it can be cost-effective and fast. But there are risks with stock photos, and smart marketers should know them.\\n\\nThe reason we use stock photos most often here at New Word Order is to create mock-ups and ideas for our clients, giving them a better representation of our idea and what we have in mind. Stock photography can also be faster and cheaper than a photo shoot, and it’s instantly available. So, for brochures and smaller pieces, stock photography can be the way to go.\\n\\nBut there are also many, many reasons why investing in a proper photo shoot is better for your business and brand. For starters, stock photography is pretty generic, impersonal and unrealistic. Probably not the look you were after for your new campaign or your brand.\\n\\nStock photos are never taken with a specific idea in mind, and that means they can be bought by anyone and have no particular alignment with any brand. If you use stock photos, you risk looking like any other business – unoriginal, and quite possibly uninspired. If you want to look unique, only images unique to you can achieve this… not the clichés and overused images of your competitors, nor the unrelated stock images you might try to shoehorn into your idea.\\n\\nAt NWO, we love a photo shoot. It’s not just that we’re all about an original idea, either. We believe that when you work with a photographer, you get far more than an image file. You get the benefit of experience, creativity, knowledge and insight.\\n\\nYou also get to say something unique, present something instantly recognisable to the market, and really stand out. You get a professional who listens to and understands your brief, knows what you’re trying to say and what you want to achieve. If you want to make changes on the day, you can, and the final decision on the final image is also in your hands. Complete control.\\n\\nSo while stock photos may be cheap and fast, they can also make your brand look unfocused and unoriginal. A photo shoot is the only solution for a company that wants to visually stand apart from the competition.\\n\\nWith the help of our trusted photography partners, we’ve directed photos shoots for many of our clients – some of them on tight budgets – from Mosaic Chartered Accountants through to Embertec’s very own Power Saviour. For every client, it’s been well worth the investment to truly stand out.\\n\\n[Talk to us today](/contact) about how you can use photography to bring life to your next campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24809,28012,1,'The problem of creativity','2021-07-23 03:14:59','2021-07-23 03:14:59','bacf4da5-5ccb-4c26-adc5-b53067f0463b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TgHcrFPn5p\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Explaining what it is we do at New Word Order, working in a creative agency, can be a little tough.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We’ve come to realise it’s the word ‘creative’ that probably throws people.\\n\\nCreative means something different to everyone. It even means something different to each of us here at NWO. Our project managers, marketers, designers and writers each work in different disciplines and are inspired by different things. And each of our clients and their projects are, too.\\n\\nSo we took some time to ask around the office and try to define what creative means to us. What we found was interesting – some fascinating definitions and insights, inspired by work and from outside of it. It seems that working in a building with ‘creative’ written on the side does encourage us to be so. And what was amusing was the insight into our staff their responses elicited.\\n\\nFor our designer Rebekah, creativity means letting go of what you think you know. Isn’t that kind of perfect? At the same time, our resident wordsmith Suzanne finds creativity in beautifully crafted words. Suzanne says she can be star-struck by beautiful phrases the same way someone else can be affected by visual art or fashion.\\n\\nTo feel creative, our strategic marketer Nikala says she likes to consider the problem at hand and then take time out to think – go for a walk, have a drink with friends, relax. Scott, our Creative Director, says he also likes a change of pace and headspace to ignite creativity – he even finds airports and planes inspiring because they’re so different to his normal place. Scott feels most creative, though, when a worthy challenge or brief comes our way. Rebekah also feels most creative when inspired by a great brief.\\n\\nAnd what of true creativity? According to Suzanne, at its heart creativity is about seeing the world differently and pursuing the new. She says that writing with great creativity is the hardest work she does, and she finds creative copywriting demands the most energy but also gives her the greatest satisfaction.\\n\\nScott says creativity is the generation of something new that contributes to the shared human experience. It\'s sometimes original that spans every aspect of what a human mind is capable of – science, art, you name it.\\n\\nNikala agrees that creativity isn’t necessarily about art. Paving the way for our clients and their projects, she points out that creativity can be seen anywhere and is probably best defined by someone thinking differently about a problem and coming up with a solution that is not only new, but also works.\\n\\nAnd so, in a building labelled ‘a creative agency’, there are as many different ideas as people when it comes to defining what characterises our work. Last words to Scott:\\n\\nTrue creativity is unique, incredibly clever, transforming to humanity, and startling in its (metaphorical) beauty. I\'m hooked on the link between creativity and beauty in all its possible meanings.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24811,28014,1,'Learning to lead','2021-07-23 03:19:27','2021-07-23 03:19:27','38e1aed6-92a1-4e14-abb6-efd434e863ea',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uWsaVfK1Sl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Most of us have leadership potential, but not all of us are true leaders. Have you ever thought about what true leadership is? Let\'s take a look at how to inspire and motivate yourself and a team to follow your vision.\\n\\n##### **A vision**\\n\\nLeadership starts with vision. A survey by Harvard Business Review found that being forward-thinking is the attribute that most distinguishes leaders from non-leaders. The consensus is that envisioning exciting possibilities and sharing them with others is the most inspiring way to lead a team.\\n\\nGreat leaders, John Ryan wrote in Forbes, give real thought to the values, ideas and activities they’re most passionate about. These should be challenging to put in action, and success should only be reached by setting realistic, demanding goals and going after them relentlessly.\\n\\nWith the help of other engaged and talented men and women, a leader is born.\\n\\n##### **Balance vision and action**\\n\\nWhile your vision is the destination, action is how you get there. Creating a balance only happens when the directions or instructions to reach that vision are clear.\\n\\nA leader needs to understand their team and what motivates them. David Lavinsky wrote in Forbes that true leaders recognise talent and work with those with skills to complement their own, celebrating small victories with the team while staying focused on the big goal.\\n\\n##### **A personal statement**\\n\\nA useful personal leadership vision, focused on action and direction, is a compelling image of an achievable future. Stew Friedman suggested in the Harvard Business Review that to grow as a leader, you should compose your own personal leadership vision, drafted and practised until it’s true and inspiring.\\n\\nFriedman also recommended asking staff to do the same, building on the trust that comes from being aware of what really drives one another.\\n\\n“You’ll be better equipped to capitalise on a critical, often overlooked, aspect of diversity – the remarkable variety that exists in the aspirations of the people around you,” Friedman said.\\n\\n##### **Communicating your vision**\\n\\nKnowing what you want to accomplish may seem clear to you, but as Tanya Price wrote in Forbes, explaining and motivating others is a different story. Clearly and succinctly describing what you want done is important. If you can’t relate your vision to your team, you won’t all be working toward the same goal.\\n\\nCreating a productive work environment depends on clear communication. Your team will learn to trust and depend on you, and will be less hesitant to work harder.\\n\\n##### **Values and delegation**\\n\\nYour team is a reflection of yourself, and if you make honest and ethical behavior a key value, they\'ll follow suit.\\n\\nDelegating tasks is one of the most important skills you can develop for leadership. And the key to delegation is identifying the strengths of your team, and capitalising on them.\\n\\n##### **Confident and committed**\\n\\nPart of your job as a leader is to keep up your confidence and focus on the larger goal.\\n\\n“Remember, your team will take cues from you, so if you exude a level of calm damage control, your team will pick up on that feeling,” said Price.\\n\\nOf course, if you expect your team to work hard and produce quality results, you must lead by example. There’s no greater motivation than seeing hard work done at every level.\\n\\n##### **Leadership, not management**\\n\\nManagement is a set of processes, like planning, budgeting, staffing and problem-solving. That’s different to leadership, which is about taking a team or organisation into the future, finding opportunity, and producing useful change.\\n\\nWhile management is about attributes, leadership is about behaviour. Are you behaving like a leader?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24813,28016,1,'The year of content marketing','2021-07-23 03:20:39','2021-07-23 03:20:39','902a6c69-fbc0-4fa4-9178-01262ba92eda',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5uJhJG0gB5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"We’re halfway through the year already. When did that happen? For marketers, this was going to be the ‘year of content marketing’. Has it been for you?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Many brands have had a great time putting together content marketing campaigns – Marketing Mag cites Red Bull and Mitre 10’s efforts on The Block. But there’s always an extra worry that overloading customers with content can do more harm than good.\\n\\nThink of how you engage online and use social media yourself. We all have those friends who overpost and overshare, and you end up either ignoring or blocking them. Don’t run the risk of bombarding your customers with inconsistent or non-engaging content just to keep up a social media presence. It’s a guaranteed way put them off completely.\\n\\nWith LinkedIn and Facebook used to distribute the most marketing content, it’s not just the frequency of posts that can let your company down. It’s about what you’re saying, too. And the balance between pushing your message and producing good content is tough, as is maintaining consistency. It’s a balance, really, and the key is creating informative, engaging and sharable content.\\n\\nSo, what’s the trick? Well… there is none. Sorry. It’s old-school. Understand your market’s likes and expectations, and especially understand how much they want to hear from you. A common sense approach. How are you surviving in the year of content marketing?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24815,28018,1,'Talking to the kids: tips for marketing to Gen-Y','2021-07-23 03:22:12','2021-07-23 03:22:12','e12499e0-ebcb-4703-b46d-ff13f620c41e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-33RxHlAlsf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Generation-Y is the first generation that grew up with the internet, and so marketing and speaking to those whippersnappers can be a challenge. We found when we worked on our My Smoking and Feeling Good campaigns with Queensland Health that Gen-Y doesn’t like being preached at – they prefer being spoken to, sharing stories, and honest marketing experiences.\\n\\nKeeping in mind that half of the NWO team fits into that pesky generation, we’ve taken a good look at global researcher Joeri Van den Bergh interviews with 21 global marketing executives from big brands, like Converse, Heineken and BBC about improving their marketing to Gen-Y customers. Here’s what he - and we - learned.\\n\\n##### **1. Make it relevant**\\n\\nFor Gen-Y, it’s all about price/quality: Are you offering something valuable? Are you only selling product, or facilitating and endorsing their life? Being true to who you are is also key. Van den Bergh found storytelling, authenticity, and uniqueness add more than you would expect: They reflect Gen-Y\'s core values and sustain your corporate identity.\\n\\nHe also says that creating an actual experience around your product, online and offline, elevates your brand experience. To stay relevant for Millennials, Van den Bergh says marketers should endorse inclusive brands with exclusive experiences.\\n\\n##### **2. Be where they are**\\n\\nVan den Bergh says that above-the-line campaigns still create awareness, but integration with social media and interaction is vital to connect with Gen-Y.\\n\\nHe recommends that websites be used to engage with Gen-Y customers on a deeper level, with contests, games, or ads. Van den Bergh says your website should be a portal where everything your consumer needs to know is presented in an intuitive and engaging way.\\n\\nOf course, he considers social media a must. Facebook, for example, enables interaction and inspiration and is a great platform for trying new things. Van den Bergh recommends going mobile to connect with your consumers, and to connect them with each other.\\n\\nHe also says events are the way to go when you want to create an ultimate customer experience. The result is word-of-mouth—sharing stories online and long-lasting memories.\\n\\n##### **3. Activate conversations**\\n\\nSurprising your consumers is the best way to shake them awake and make sure they stay focused. Van den Bergh says a surprise can be anything and as long it’s relevant and you don\'t stalk them, Gen-Y will love it.\\n\\nHe also says not to underestimate the power of stories. Tell a story about yourself, let your consumers share stories about their personal life, or combine both.\\n\\n##### **4. Enhance loyalty, be FAIR**\\n\\nYou have to keep your Gen-Y consumers involved. Van den Bergh says to follow the FAIR model: FAst, Innovative, and Rewarding.\\n\\nThe faster you react to your consumers, the more likely you are to have a bond with them. By innovating, you are showing interest, creativity, and initiative. Showing Gen-Y consumers your appreciation for having chosen you is key.\\n\\n##### **5. Have guts**\\n\\nGo out there and create a daring but relevant appeal.\\n\\nHow have you marketed to Gen-Y? What’s worked, and what hasn’t? We’d love to hear from you! Let us know and join the conversation in the comments below.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24817,28020,1,'Righting writing','2021-07-23 03:26:01','2021-07-23 03:26:01','1bd91bbb-aa47-488f-a399-94839f330082',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WiIX62eIQK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Uni was when I found my purpose in life. A passionate lecture on the very first day was my ‘eureka!’ moment that then propelled me through a double major in communications, 10 years in a newsroom and countless more in corporate writing.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But it all could have come tumbling down in the stern and unyielding face of just one lecturer: Ros Petelin.\\n\\nLike most kids who gravitated toward the arts in school, I’d been feted as a bit of a writer. I wrote installments of unreasonably sappy romance novels late at night and distributed copies to peers on the train the next morning. I won an academic scholarship for my writing (although nearly lost it many times for my maths).\\n\\nIt was left to Ros – now an associate professor in the School of English, Media Studies and Art History at UQ, and a well-respected writer in business communication – to tear my self-made kingdom down, word by word, until I could rebuild it on more solid foundations.\\n\\nHere’s what I now know to be true about writing effective business words.\\n\\nThanks, Ros. I hope you’re grading more kindly these days.\\n\\n##### **Trick #1: Talk like your audience**\\n\\nIf you’re writing for your business, forget formal words and don’t allow fear of failure – or grammar – to stop you writing. Instead, a trick I’ve long used in business writing is to hear a typical customer’s voice in my head, and then to write like they talk.\\n\\nLike acting, the craft of writing involves immersing yourself in the character. In this case, the character is your customer – and by sounding like them, you’re more likely to draw them in.\\n\\n##### **Trick #2: WIRMI**\\n\\nI have Ros and her fondness for US author Linda Flowers to thank for WIRMI. The acronym ‘What I Really Mean Is’ is extraordinarily helpful in bringing clarity to business writing, and it’s a tool I still use daily.\\n\\nYou can use WIRMI as a catchphrase at any point of your writing – when you’re trying to work out exactly what you want to say, and when you’ve written something and you need to ensure it says what you want, clearly and well.\\n\\nIf you’re not comfortable with writing – and plenty of people would rather line up for a root canal than write an essay – this is a great way to check you’re on track.\\n\\n##### **Trick #3: So nice you read it thrice**\\n\\nFinally, if you’re satisfied that what you’ve written is the best you can do, read it through once more – and then put it down.\\n\\nAfter a few hours – or a few days, if you have the time – pick it up and critically read it again. Make a few adjustments. Delete a few words. Then hide it again.\\n\\nOn the third go, after another break, pretend you’re the customer and read it aloud to yourself as though you’re seeing it for the first time. If you have no more changes to make to it, it’s good to go. But chances are, you’ll think of a few.\\n\\nWhy at least three reads? Professional writers and editors know better than anyone that great writing comes from multiple drafts, not a single session of inspiration. Taking a break in between drafts – although hard to do in a busy work day – can be the key to achieving great results.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24819,28022,1,'Management is more than measurement','2021-07-23 03:26:58','2021-07-23 03:26:58','34e8236c-aa3c-4646-9bba-ec6cae1700f3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4GZRkIUT1L\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Businesses in the service sectors have taken many management practices straight out of the factories of the 20th Century. Often they don’t work.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Let me use one of my staff’s previous performance reviews as a case study.\\n\\nHe worked for a large corporation and its performance review policy was worker and boss would sit down once a year for 20 minutes.\\n\\nThe boss had a set checklist for everyone – the same one.\\n\\nIt was a single A4 page covered with metrics along which each staff member would receive a score from ‘subpar’ through ‘needs improvement’ and ‘meets expectations’ to ‘exceeds expectations’.\\n\\nMy employee told me that his boss ticked ‘meets expectations’ for everything … regardless of who he was scoring.\\n\\nFor people who have worked in large corporations, nothing would be surprising so far. However, my employee and his boss had an unusually candid relationship.\\n\\nWhen my employee asked his old boss what he had to do to ‘exceed expectations’, the boss intimated that head office had decreed that no-one was allowed to ‘exceed expectations’.\\n\\nYou could surmise that this might have merely been an attempt to keep things simple. If everyone is average and everything works well enough, then no-one gets a raise, no-one needs leadership coaching, no budgets are stressed, and everyone remains motivated to ‘exceed expectations’.\\n\\nHowever, this case study skewers the saying you can’t manage what you can’t measure. This company’s performance reviews were not measuring, though they looked a lot like it. Their measurement tools and practices didn’t match the nature of their staff’s tasks in a services industry.\\n\\nSo this company was using an unreliable yardstick – a single A4 of tick-and-cross – and an unreliable measurer: the manager’s judgment in that one 20-minute block once a year.\\n\\nPlus they had kneecapped both with a rule that no-one can be better than just ‘good enough’.\\n\\nHere’s the rub. Most jobs these days aren’t on conveyor belts. Most create ‘value’ – the unmeasurable flipside of ROI – through services. Performance in these jobs can be accurately judged and appraised by involved and well-trained managers, but job performance in these sorts of roles cannot be accurately summed up with numbers.\\n\\nHere are the crucial toolkit words – and these words are a great hammer and anvil to crack so many things apart: qualitative and quantitative.\\n\\nManagement by measurement is quantitative. It is accountancy played with people. It fits neatly with the MBA approach to business.\\n\\nManagement by attention, involvement and open dialogue is qualitative. It understands and then secures consensus. It doesn’t fit anything neatly.\\n\\nWorking with people’s qualities isn’t neat, but it is where value comes from in the service sector.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24821,28024,1,'Corporatese to English','2021-07-23 03:27:34','2021-07-23 03:27:34','0f6933f5-72aa-4e72-a82f-c2f7ad0fbd37',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-HTh3V8VYub\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Our business, a prominent leading boutique South East Queensland digital, media, full service and mixed creative agency whose track record puts forth successes and achievement, is New Word Order.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We have built our business on a sensed customer need to elucidate and provide services and solutions from depth-wise passions toward maximizing, engaging and touching base with expert decision-makers and leading experts across our metropolitan networks and even internationally.\\n\\nThese helping, leading and connective skills are what we’d offer to any of our thousands of potentials – inclusive of and with regard to prospectives across the Brisbane and Queensland and Australasian business regionality. Therefore, does contacting New Word Order makes a case for your foremost responsibility toward your strategy regarding your business media?\\n\\nTaking this as a call to revolutionising content, we’d arrange to respond to results-based briefing documentation in solutionised offerings right through to customisable tailored service solutions, meaning the customers is always directly involved within the provision of every consultative gathering of resources, attaining full and effective impacts.\\n\\nSynergising professionally written, artfully designed and productionised media communiqués aligns with our lovely, ever-broadening, and exceptionally cultivated, understanding regarding to every comprehensive aspect within messaging strategies and best practice.\\n\\nAiding and multiplying the efficacy to give pursuit-led and driven engagement regarding consideration to you on our in-house specialities, strength and market-leading is an outstand.\\n\\nAttaining a results-based outcome hand-in-hand with dominant-paradigm appropriation and knowledge guarantees absolute marketing and communicated outcomes.\\n\\nOr, more simply:\\n\\nNeed help with business media? We’d love to give you a hand.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24823,28026,1,'How to read the media','2021-07-23 03:30:27','2021-07-23 03:30:27','1ab50905-52d6-4bf3-afe9-95c1909137c1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZQ8GkHzE9z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"With so much sensationalist news out there competing with valid journalism for your attention – and often winning – being able to tell the exploitative from the illuminative is a valuable skill.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"At the moment, the ideal of an informed public is suffering in something of a perfect news storm.\\n\\nThe interdependent weather fronts colliding are the 24-hour news cycle, Google’s diversity of sources, a global panic culture and political coverage that paints one side as uniformly outrageous and the other as cringingly ineffective: Abbott vs. Gillard, Newman vs. Palaszczuk, Romney vs. Obama.\\n\\nNews companies have found their new news audiences are always switched on, always hungry and, through Google, able to choose facts to suit their preceding opinions.\\n\\nSo used to being shocked, so prepared for it, the audience is anxiously tensed to leap on the tawdry or gory or disastrous.\\n\\nHeadlines such as “Australia actually unpopular destination for refugees” don’t sell.*\\n\\nPeople crave certainty in uncertain times. And there’s profit in that. At its worst, that led to the goings-on at News in the UK, but in its garden-variety form it has led news devolving from knowledge, analysis and consideration to information, opinion and soundbites.\\n\\nOr, more often in the case of financial and business news, an addiction to data (which sits one rung of below information, and two below knowledge) and whichever statistic is most alarming at that hour.\\n\\nBut now, a caveat before we unload on journalism: largely speaking, journalists do their best and care passionately about doing what they do and about doing it well and accurately. But, as every business knows, where there is passion there is overwork. And news is business.\\n\\nThus, these days reading news is, more than ever, about reading between the lines.\\n\\n##### **Here’s how:**\\n\\n###### **Experts and gurus**\\n\\nIn general there are three ways journalists establish the veracity of their stories they appeal to your mind, your heart or your respect for someone’s reputation.\\n\\nIt’s roughly the same idea as academic referencing in research, but it is perverted by placing the angle before the evidence. A quick way to clock a true expert is to research their credentials.\\n\\nLook for markers of success and that they practice what they preach. Would you go to a financial planner who was broke? If a story really gets you thinking, it worth doing some digging into who is quoted.\\n\\n###### **Bleeds it leads**\\n\\nOne of the oldest sayings in journalism is ‘if it bleeds it leads’: essentially, bad news sells. These days news services are struggling to find a business model that works when so much content is free online.\\n\\nMany simply try to drive maximum traffic through their sites. Shock tactics and so-called beat-ups are one way of grabbing attention.\\n\\nMost of the time, bad news is not nearly so bad. For example, remember the hullabaloo that preceded the activation of the Large Hadron Collider?\\n\\n###### **Chinese whispers**\\n\\nDo you hear what was said or what you want to hear? There is no way to avoid it, communication misfires almost constantly.\\n\\nA speaker can think one thing but accidentally say another, the listener can misunderstand what they say, the note taker can make a mistake, the tape recorder can pick up the sound of papers rustling at a crucial time. And that’s just communication across one link of the chain from brain-to-mouth, mouth-to-ear, ear-to-brain, brain-to-hand, pen-to-paper. Multiply these each time the information passes to the next actor in the sequence – including journalist, editor, proof reader, sub-editor and printer – and it is a wonder anything is even largely accurate.\\n\\n###### **Damn statistics**\\n\\n‘Lies, damn lies and statistics’ is true!\\n\\nStats are compressions of mathematical data into pieces of information. Compression always loses something. And there are big loopholes through which data can be pushed to get the result you like.\\n\\nFor example, if a study on income has a sample of 1000 people of whom 999 earn $1 a year and one Clive Rinehart who earns $1 billion a year, then the average wage – mathematically speaking – is just over $1 million. Prosperity for all!\\n\\nStats, facts and figures have their place. Generally, that place is not the centre.\\n\\n###### **Agenda and bias**\\n\\nBack in the Obama-McCain race there was 25 seconds that beautifully demonstrated media bias. You can watch it here.\\n\\nIf you don’t want to watch, this is what happens: the reporter asks a group of diners if they are going to vote for McCain – no one puts their hand up (one couple fights about it); then he asks who is going to vote for Obama – everyone puts their hand up. Then he turns to the camera and says, “See, it’s split.”\\n\\nAustralian mainstream media doesn’t seem embrace such gasp-inducing chutzpah, but there are definite leans to many of our outlets. Keep an eye out for them.\\n\\n###### **Simple and simplistic**\\n\\nEdward De Bono – regardless of what you think of him – wrote something useful about the difference between simple and simplistic.\\n\\n“If you do not seek to understand a situation or process, your efforts will be ‘simplistic’ rather than simple. Simplicity before understanding is worthless.”\\n\\nTime poor generalist journalists often never get a true and deep understanding what they are writing about. (Dedicated subject-matter journos, such as Laurie Oakes, absolutely understand what they are talking about). The average newshound just has to get the story down on paper, compressed by time, and move to the next thing.\\n\\nThey simply lack the time – and very often the inclination – to pore over details. Confronted with 4000 words of research for a 500-word space they prune things off. Often that simplification ends up simplistic and vital, subtle accuracies are accidentally lost.\\n\\n###### **Questioning headlines?**\\n\\nMy last point is taken verbatim from journalist Andrew Marr and his book My Trade because it can’t really be said any better.\\n\\n“If the headline asks a question, try answering ‘no’. “Is This the True Face of Britain’s Young?” (Sensible reader: No.) “Have We Found the Cure for AIDS?” (No; or you wouldn\'t have put the question mark in.) “Does This Map Provide the Key for Peace?” (Probably not.) A headline with a question mark at the end means, in the vast majority of cases, that the story is tendentious or over-sold.\\n\\n“It is often a scare story, or an attempt to elevate some run-of-the-mill piece of reporting into a national controversy and, preferably, a national panic.”\\n\\n##### **What it all means**\\n\\nJournalism is a tricky trade. The tricks cut both ways: you can foist them upon the audience or you can be caught out by them.\\n\\nAs long as attention spans continue to shorten – or as long as pandering to short attention spans makes more money – news is only going to get ‘trickier’ – in both senses of the word.\\n\\n*According to 2011 research form the UN, Australia ranks as the 46th most popular destination for asylum seekers.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24825,28028,1,'Common sense isn’t common','2021-07-23 03:32:57','2021-07-23 03:32:57','19791ed1-a1dc-41f7-bc16-e66d0571ee3f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pEGVOX2A5Z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"A great deal of being successful in business is being practical, prepared and dedicated. Seems like common sense.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"You could almost say ‘never put off till tomorrow what you can do today’.\\n\\n##### **But things aren’t ever that simple.**\\n\\nWhile old sayings knock around forever, quite often all they do is put a situation into a little box so it stops nagging on our limited attention. In business, however, those nags – technically known as ‘thought-terminating clichés’ – often desperately need to be heeded.\\n\\nIn my work this week, I’ve seen what happens when an otherwise impressive company becomes blinded by its own clichés. In this case, it’s made senior management myopic, staff stifled, and the owners so consumed by their own narrative they’re unwilling to take responsibility for their failures. It’s not pretty, and the effects are wide-ranging.\\n\\nSo, how can you tell if you’re thinking clearly or caught up in your own clichés? For one, consider the terrifying thing about common clichés: pretty much all of them have an equally popular contradictory saying. Chances are the ones you favour in your business do, too.\\n\\n##### **Look before you leap … He who hesitates is lost.**\\n\\nIf at first you don\'t succeed, try, try again … Don\'t beat your head against a brick wall.\\n\\nAbsence makes the heart grow fonder … Out of sight, out of mind.\\n\\n##### **Haste makes waste … Time waits for no man.**\\n\\nYou\'re never too old to learn … You can\'t teach an old dog new tricks.\\n\\n##### **Do unto others as you would have others do unto you**\\n\\n… Nice guys finish last.\\n\\nReal common sense comes from combining logic, understanding and intuition. Most importantly, in a business sense, it comes from owners and managers operating with honesty, integrity and a good dose of self-awareness.\\n\\nSo while the problem you’re tackling in your business might well be better solved by putting your brain in gear, nose to the grindstone, shoulder to the wheel and keeping your eyes peeled – chances are that what you really need is the guts to be brutally honest with yourself.\\n\\nIt begs the question: What are the ways you use common language to brush over problems in your business? Are there common catchphrases or clichés buffering you from a dose of reality?\\n\\nHere are some examples:\\n\\n- That’s not the way we do things.\\n- It’s not my fault.\\n- That customer’s an idiot.\\n- It’s my way or the highway.\\n- The buck stops with me.\\n\\nIf you stopped to consider the situation and the automatic response within your business, I wonder if there’d be a nugget of genuine insight there that’s being hidden by a cliché? An opportunity to improve, rather than deny?\\n\\nIt’s worth considering. After all, it’s better to be safe than sorry.\\n\\nThis article first appeared in CCIQ’s Inform. We create, research and write this monthly e-zine, which goes out to businesses across Queensland.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24827,28030,1,'State your client’s case','2021-07-23 03:34:21','2021-07-23 03:34:21','ead1a3f4-e61d-4e58-b4b1-f58cf484fe2c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wwyHcPmT7W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"We all know how much easier it is to see the path if someone else has cleared it for us first. Your clients and potential clients are no different. Comparing can help them comprehend the value to their own business.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"That’s the value of a case study.\\n\\nThe trick is producing an interesting, well-written, balanced story that makes audiences believe and want to read it.\\n\\nSo how do you put together a great case study?\\n\\nFirst, you need a happy (and preferably interesting) client who agrees to let you tell their story.\\n\\nNext you need to listen to their story. It’s not good enough that you know where your product and services sit in their business. That’s not the story, that’s your marketing copy.\\n\\nStep away from your own business perspective for a moment and think about your clients’.\\n\\n- What are they trying to achieve as a business?\\n- What specifically were they trying to achieve when they implemented your product or service?\\n- What was the situation or status quo prior to implementing your product or service?\\n- How did (or do) they find the process?\\n- Did your service meet or exceed their expectations?\\n- Were there any hiccups or learning experiences that can be included? (We figure if you’ve chosen this story it’s a pretty happy one. But there’s nothing wrong with including an honest teething problem, especially one that has a happy ending. If you addressed and resolved the issue quickly, then it’s a positive reflection on your business).\\n- What was the final outcome?\\n- Can you put a dollar or other specific value figure on the outcome?\\n\\nYou need detail to paint a picture, but don’t get bogged down by it. Keep it sharp, informative and interesting to the audience, and make sure your tone suits them too. Include constant subtle reminders of your product or service\'s involvement in the success, but avoid making it sound like advertorial.\\n\\nGetting it right is worth the effort. At New Word Order, we’ve been producing case studies for client web sites, brochures, presentations, publications and other collateral for over 9 years. We get the brief right, we know what questions to ask and we know how to conduct a phone interview. Because we do them every day.\\n\\nIf your product or service adds value, a great client case study is going to be the most effective sales tools you ever invested in.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24829,28032,1,'Be heard across vertical markets and sectors','2021-07-23 03:34:56','2021-07-23 03:34:56','f475dafe-29c7-48d1-b470-70c6979590d3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-miFonpEY6W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Everyone wants a product or service that meets their needs. We’re time-poor, so that means we want to work with businesses that get us, that know what we do and can service us accordingly.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Businesses with specialised, vertically oriented products have been marketing this strength for years.\\n\\nSo how do you capitalise if your product isn’t niche-market specific?\\n\\nI’m not about to tell you to start touting your product as market specific or specialised if it’s not. But if clients from a particular industry sector are benefiting from your product or service, why not tell other potential, similar clients? It’s much easier to get an audience to listen if you’re speaking directly to them.\\n\\nCustomising your message can build confidence in your service and help you to build market share.\\n\\nChoose one or two major industry sectors you service, and then ask yourself (or better still, ask them) a few questions.\\n\\nHow do they use your product or service?\\n\\nWhat specific business benefit are they getting when they use it?\\n\\nWhat staff within the organisation use it the most?\\n\\nArmed with that knowledge, you can produce messages and communications collateral that directly engages the audience.\\n\\nIt doesn’t have to be complicated. You don’t have to build a whole new campaign for every industry you service. Your brand and product remains consistent, but the way you structure your message changes.\\n\\nThere’s no better way to show potential clients how much you appreciate their specific needs.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24837,28040,1,'Hear the equality stories from NWO women','2021-07-23 05:37:29','2022-05-30 01:17:28','e9bcfc96-af38-479d-a39c-69e0155745d3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Wernf3qqvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"International Women\'s Day 2021\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We can all choose to challenge and call out inequality. We can all choose to seek out and celebrate women\'s achievements. Collectively, we can all help create an inclusive world. \\n\\nFrom challenge comes change, so let\'s all choose to challenge.\\n\\nThe 2021 theme for International Women\'s Day is #choosetochallenge. We asked the women of NWO what this means for them.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dQqtfQZh3I\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17131\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZSm70uSTq5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Jo Penney: We don\'t need titles\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"As a female with short hair, I am often referred to as ‘sir’.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This occurs mostly by flight attendants who take a quick glance and assume, rather than just offering a friendly ‘good morning’ or ‘good evening’ and avoiding their own embarrassment when they realise their mistake.\\n\\nOnce, the same flight attendant who greeted me to the plane was so embarrassed she could barely offer me tea or coffee later in the flight.\\n\\nIt’s silly and avoidable, and I find it quite funny and entertaining to see which way it will go.\\n\\nFor others, though, it can be an awful embarrassment that can easily be avoided by removing titles.\\n\\nSo, this International Women’s Day, I’m choosing to challenge all of us to end their use.\\n\\nI’m a proud female but I don’t feel the need to be referred to as madame, ma’am, mademoiselle, etc. It’s old-fashioned and classist.\\n\\nAnd as a proud LGBTI woman, I am extra aware that titles can isolate and sideline—not encourage and respect—people for whom gender and identity has been hard-won.\\n\\nLet’s talk our walk. Let’s end titles for good.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oVs7jOKhCm\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17127\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-823iS7DNes\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Kat Scott: The courage to listen\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"I’ve always thought the conversation around challenges women face was about finding your voice and speaking up; that strong, independent women needed to find the confidence to make their voices heard.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The older I get and the more the modern world allows us to see through the structures of society, economics and politics, I realise the conversation is really about finding the confidence to listen to those voices.\\n\\nYou see it every day in business, TV, music, media and social situations that when there is a woman who stands up and says how she feels, she is perceived as “too much”.\\n\\nI am guilty at times of not hearing other female voices and, worse than anything, sometimes of not even hearing my own voice.\\n\\nDespite thinking of myself as a very headstrong, intelligent and confident person, I tell myself to “tone it down” because I’m being “too much”.\\n\\nI want to see people rising to the challenge of actively listening to those female voices and perspectives, not because they are female but because they are equal.\\n\\nEvery person should be offered the same platform, the same ears and the same opportunities—if we choose to take them.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YdYo9ey7f6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17124\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jXUudS4IzN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Rebecca Holman: Let\'s keep choosing to challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s to the great women who kicked it all off.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"They challenged previously held societal norms, at great personal and physical cost, to give us the right to vote, the right to marry who we like, the right to choose our own careers, to be independent and to move closer to gender equality.\\n\\nThe spirit of these pioneers lives on, and the hard and uncomfortable work continues in many forms with each of us.\\n\\nAll of us can keep choosing to challenge each other—woman to man, woman to woman, man to man—in our everyday lives.\\n\\nHere’s to the mums, dads and those very special teachers who nurture our kids, lead by example and challenge the next generation to grow into people who treat each other with respect, patience and compassion.\\n\\nLet’s keep championing and supporting each other to achieve true gender equality.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RUzEpjpFMZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17119\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7wTrhTk0Ps\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Kimi Schieren: Deeper than the dollar amount\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Revealing you have a side hustle always brings up questions about success.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"“What kind of a profit are you making?”\\n\\n“Is it worth it?”\\n\\nEspecially if you, like myself, also work a full-time job and the side hustle itself is almost equally as full-time—the questions surrounding the value of your extracurricular will frequently plague you.\\n\\nHolding the worth of something solely on whether or not it’s profitable can be a slippery slope of creating unattainable goals and unrealistic expectations on yourself and your business.\\n\\nWhat I get out of my side hustle both professionally and personally far surpasses any financial goals.\\n\\nIt’s an outlet for my creativity and a way to express myself. Plus, it helps me to be more creative in my day job.\\n\\nThe two jobs feed into each other and without either or both I would struggle to feel like myself.\\n\\nSuccess from my side hustle is measured in the praise of happy customers, the smiles and comments I get from people who pass my stuff in the streets, and the self-satisfaction I get from creating something from an idea in my head to something you can physically wear or hold.\\n\\nSure, getting paid is also great and I dream of the day when it can become my full-time job. But, for now, my success is much deeper than a dollar amount.\\n\\nThis International Women’s Day, I’m choosing to challenge the notion that wealth equals success.\\n\\nLet’s choose to open our mind to what success looks like and celebrate the amazing things we’re doing.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TAZHDkM6ny\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17115\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EVYfpAlzzL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Kate Wood: Because they challenged, I get to choose\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"I’m in the grey area between Gen Y and Z, so I’m a product of the many Gen X women who raised me, inspired me and challenged me.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Gen X women were born in the 70s and 80s when the ideals of having it all—stable marriage, perfect family, lucrative work—came disguised as female empowerment. What crippling expectations.\\n\\nThese women defied mathematics. There are only 24 hours in a day and having it all takes at least 36.\\n\\nThey challenged the gender norms of the time and proved that, in fact, you can have it all.\\n\\nBecause of that, I don’t have to be the perfect mum with the perfect kids. I don’t have to be married to the dreamiest spouse. I don’t have to cook like Nigella or clean like Marie Kondo. I don’t have to climb the corporate ladder and smash through glass ceilings.\\n\\nI certainly don’t need to do all of that at the same time.\\n\\nAnd because I’m lucky enough to work for an incredible Gen X woman, I don’t have to work twice as hard to earn the same as my male colleague.\\n\\nInstead, I get to choose my values and the kind of woman I want to be.\\n\\nTo all you Gen X women who bravely went before: thank you. Because you worked so hard to challenge, I get to choose.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PCfYuBrUwo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17114\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aX0BZHIT5e\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Suzanne Oxford: Let\'s not mistake peace-keeping for peace-making\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"As a person of faith, I’ve always been challenged by a verse that says, “as far as it depends on you, live at peace”. I consider this my mandate.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"But don’t mistake peace-keeping for peace-making.\\n\\nPeace-keeping keeps factions apart with no expectation of resolution. It’s maximum effort expended in a passive, zero sum game. It reinforces apathy, privilege and anger.\\n\\nMe? I’m a peace-maker. The very act of making peace—and making peace, and making peace—is dynamic and potent, shining a light where inequality and injustice rob people of true peace.\\n\\nPeace-making drives me to lean in and bear witness to people’s stories with compassion and empathy.\\n\\nIt compels me to respond with strategies and actions that can create lasting change.\\n\\nIt urges me to have uncomfortable conversations to elicit greater understanding.\\n\\nIt impels me own my blind spots so I can grow in gentleness—and, in turn, create even greater peace.\\n\\nThere’s nothing passive about being a peace-maker, and peace-making never ends.\\n\\nIn fact, as I consider the broken world my children are now entering as young adults, my peace-making is only increasing in volume—as is my understanding that peace is a human right and that, as far as it depends on me, I must give it voice and life.\\n\\nAnd so I do.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OM2HjsMtPT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17108\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Knak12weJl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Bree Leitch: Our voice carries weight, even when it wavers\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"I grew up posting everything on social media, compiling a collage of my perfect life.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Every photo is meticulously chosen out of hundreds taken, every smile critiqued, and every caption drafted and redrafted. Anything less than perfection simply won’t do—I have an audience to please, you see.\\n\\nWomen have fought since the beginning of time to have our voices heard and taken seriously. And now we have an audience, they’re out for blood. It’s the little things—misusing terminology, Facetune gone wrong, dating too many people or not enough—the list goes on. Our audience will fault us for anything in order to discredit us.\\n\\nThe worst part? Often, that audience is me. Sometimes it’s you. It’s all of us women at one point or another, not because we mean to, but because we are trained to. We are taught we must tear other women down in order to lift ourselves up.\\n\\nWhen we let ourselves believe that our own success—or self-security, or popularity, or whatever validation we seek—is dependent on the destruction of other women, we all suffer.\\n\\nWe don’t have to be perfect to be valid. Our voice carries weight, even when it wavers.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Hear the equality stories from NWO women','We can all choose to challenge and call out inequality. We can all choose to seek out and celebrate women\'s achievements. Collectively, we can all help create an inclusive world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24838,28041,1,'21 03 IWD IG Bec 13','2021-07-23 05:43:24','2021-07-23 05:43:24','43f499f9-6274-4933-a5cd-498ab95f285f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/21_03-IWD-IG-Bec_13.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/21_03-IWD-IG-Bec_13.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/21_03-IWD-IG-Bec_13.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2048_crop_center-center_82_line/21_03-IWD-IG-Bec_13.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/21_03-IWD-IG-Bec_13.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/21_03-IWD-IG-Bec_13.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1536x1536_crop_center-center_82_line/21_03-IWD-IG-Bec_13.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1280x1280_crop_center-center_82_line/21_03-IWD-IG-Bec_13.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_1024x1024_crop_center-center_82_line/21_03-IWD-IG-Bec_13.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_2048x2048_crop_center-center_82_line/21_03-IWD-IG-Bec_13.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_768x768_crop_center-center_82_line/21_03-IWD-IG-Bec_13.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/WP-Media-Library/_640x640_crop_center-center_82_line/21_03-IWD-IG-Bec_13.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"1024\":1024,\"2048\":2048,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2250\",\"originalImageHeight\":\"2250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AtOdqFv50LygbIOe4pl0f9H+hzToRthA9ea5T3elz/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#eb7171\",\"#d53d3d\",\"#fbd4ad\",\"#d74f42\",\"#fcb2a5\"],\"lightness\":66,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24839,28042,1,'Hear the equality stories from NWO women','2021-07-23 06:18:47','2021-07-23 06:18:47','78b20226-c57e-4cc6-8ad6-dceb76f699ee',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Wernf3qqvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"International Women\'s Day 2021\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We can all choose to challenge and call out inequality. We can all choose to seek out and celebrate women\'s achievements. Collectively, we can all help create an inclusive world. \\n\\nFrom challenge comes change, so let\'s all choose to challenge.\\n\\nThe 2021 theme for International Women\'s Day is #choosetochallenge. We asked the women of NWO what this means for them.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dQqtfQZh3I\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17131\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZSm70uSTq5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new3\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Jo Penney: We don\'t need titles\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"As a female with short hair, I am often referred to as ‘sir’.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"This occurs mostly by flight attendants who take a quick glance and assume, rather than just offering a friendly ‘good morning’ or ‘good evening’ and avoiding their own embarrassment when they realise their mistake.\\n\\nOnce, the same flight attendant who greeted me to the plane was so embarrassed she could barely offer me tea or coffee later in the flight.\\n\\nIt’s silly and avoidable, and I find it quite funny and entertaining to see which way it will go.\\n\\nFor others, though, it can be an awful embarrassment that can easily be avoided by removing titles.\\n\\nSo, this International Women’s Day, I’m choosing to challenge all of us to end their use.\\n\\nI’m a proud female but I don’t feel the need to be referred to as madame, ma’am, mademoiselle, etc. It’s old-fashioned and classist.\\n\\nAnd as a proud LGBTI woman, I am extra aware that titles can isolate and sideline—not encourage and respect—people for whom gender and identity has been hard-won.\\n\\nLet’s talk our walk. Let’s end titles for good.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oVs7jOKhCm\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17127\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-823iS7DNes\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new3\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Kat Scott: The courage to listen\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"I’ve always thought the conversation around challenges women face was about finding your voice and speaking up; that strong, independent women needed to find the confidence to make their voices heard.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The older I get and the more the modern world allows us to see through the structures of society, economics and politics, I realise the conversation is really about finding the confidence to listen to those voices.\\n\\nYou see it every day in business, TV, music, media and social situations that when there is a woman who stands up and says how she feels, she is perceived as “too much”.\\n\\nI am guilty at times of not hearing other female voices and, worse than anything, sometimes of not even hearing my own voice.\\n\\nDespite thinking of myself as a very headstrong, intelligent and confident person, I tell myself to “tone it down” because I’m being “too much”.\\n\\nI want to see people rising to the challenge of actively listening to those female voices and perspectives, not because they are female but because they are equal.\\n\\nEvery person should be offered the same platform, the same ears and the same opportunities—if we choose to take them.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YdYo9ey7f6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17124\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jXUudS4IzN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Rebecca Holman: Let\'s keep choosing to challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Here’s to the great women who kicked it all off.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"They challenged previously held societal norms, at great personal and physical cost, to give us the right to vote, the right to marry who we like, the right to choose our own careers, to be independent and to move closer to gender equality.\\n\\nThe spirit of these pioneers lives on, and the hard and uncomfortable work continues in many forms with each of us.\\n\\nAll of us can keep choosing to challenge each other—woman to man, woman to woman, man to man—in our everyday lives.\\n\\nHere’s to the mums, dads and those very special teachers who nurture our kids, lead by example and challenge the next generation to grow into people who treat each other with respect, patience and compassion.\\n\\nLet’s keep championing and supporting each other to achieve true gender equality.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RUzEpjpFMZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17119\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7wTrhTk0Ps\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Kimi Schieren: Deeper than the dollar amount\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Revealing you have a side hustle always brings up questions about success.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"“What kind of a profit are you making?”\\n\\n“Is it worth it?”\\n\\nEspecially if you, like myself, also work a full-time job and the side hustle itself is almost equally as full-time—the questions surrounding the value of your extracurricular will frequently plague you.\\n\\nHolding the worth of something solely on whether or not it’s profitable can be a slippery slope of creating unattainable goals and unrealistic expectations on yourself and your business.\\n\\nWhat I get out of my side hustle both professionally and personally far surpasses any financial goals.\\n\\nIt’s an outlet for my creativity and a way to express myself. Plus, it helps me to be more creative in my day job.\\n\\nThe two jobs feed into each other and without either or both I would struggle to feel like myself.\\n\\nSuccess from my side hustle is measured in the praise of happy customers, the smiles and comments I get from people who pass my stuff in the streets, and the self-satisfaction I get from creating something from an idea in my head to something you can physically wear or hold.\\n\\nSure, getting paid is also great and I dream of the day when it can become my full-time job. But, for now, my success is much deeper than a dollar amount.\\n\\nThis International Women’s Day, I’m choosing to challenge the notion that wealth equals success.\\n\\nLet’s choose to open our mind to what success looks like and celebrate the amazing things we’re doing.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TAZHDkM6ny\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17115\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EVYfpAlzzL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Kate Wood: Because they challenged, I get to choose\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"I’m in the grey area between Gen Y and Z, so I’m a product of the many Gen X women who raised me, inspired me and challenged me.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Gen X women were born in the 70s and 80s when the ideals of having it all—stable marriage, perfect family, lucrative work—came disguised as female empowerment. What crippling expectations.\\n\\nThese women defied mathematics. There are only 24 hours in a day and having it all takes at least 36.\\n\\nThey challenged the gender norms of the time and proved that, in fact, you can have it all.\\n\\nBecause of that, I don’t have to be the perfect mum with the perfect kids. I don’t have to be married to the dreamiest spouse. I don’t have to cook like Nigella or clean like Marie Kondo. I don’t have to climb the corporate ladder and smash through glass ceilings.\\n\\nI certainly don’t need to do all of that at the same time.\\n\\nAnd because I’m lucky enough to work for an incredible Gen X woman, I don’t have to work twice as hard to earn the same as my male colleague.\\n\\nInstead, I get to choose my values and the kind of woman I want to be.\\n\\nTo all you Gen X women who bravely went before: thank you. Because you worked so hard to challenge, I get to choose.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PCfYuBrUwo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17114\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aX0BZHIT5e\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Suzanne Oxford: Let\'s not mistake peace-keeping for peace-making\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"As a person of faith, I’ve always been challenged by a verse that says, “as far as it depends on you, live at peace”. I consider this my mandate.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But don’t mistake peace-keeping for peace-making.\\n\\nPeace-keeping keeps factions apart with no expectation of resolution. It’s maximum effort expended in a passive, zero sum game. It reinforces apathy, privilege and anger.\\n\\nMe? I’m a peace-maker. The very act of making peace—and making peace, and making peace—is dynamic and potent, shining a light where inequality and injustice rob people of true peace.\\n\\nPeace-making drives me to lean in and bear witness to people’s stories with compassion and empathy.\\n\\nIt compels me to respond with strategies and actions that can create lasting change.\\n\\nIt urges me to have uncomfortable conversations to elicit greater understanding.\\n\\nIt impels me own my blind spots so I can grow in gentleness—and, in turn, create even greater peace.\\n\\nThere’s nothing passive about being a peace-maker, and peace-making never ends.\\n\\nIn fact, as I consider the broken world my children are now entering as young adults, my peace-making is only increasing in volume—as is my understanding that peace is a human right and that, as far as it depends on me, I must give it voice and life.\\n\\nAnd so I do.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OM2HjsMtPT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17108\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Knak12weJl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Bree Leitch: Our voice carries weight, even when it wavers\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"I grew up posting everything on social media, compiling a collage of my perfect life.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Every photo is meticulously chosen out of hundreds taken, every smile critiqued, and every caption drafted and redrafted. Anything less than perfection simply won’t do—I have an audience to please, you see.\\n\\nWomen have fought since the beginning of time to have our voices heard and taken seriously. And now we have an audience, they’re out for blood. It’s the little things—misusing terminology, Facetune gone wrong, dating too many people or not enough—the list goes on. Our audience will fault us for anything in order to discredit us.\\n\\nThe worst part? Often, that audience is me. Sometimes it’s you. It’s all of us women at one point or another, not because we mean to, but because we are trained to. We are taught we must tear other women down in order to lift ourselves up.\\n\\nWhen we let ourselves believe that our own success—or self-security, or popularity, or whatever validation we seek—is dependent on the destruction of other women, we all suffer.\\n\\nWe don’t have to be perfect to be valid. Our voice carries weight, even when it wavers.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24840,28043,1,'Be heard across vertical markets and sectors','2021-07-23 06:19:14','2021-07-23 06:19:14','65bea69b-ffd0-4e6d-a1cf-2dd59d9b2aaf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-miFonpEY6W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Everyone wants a product or service that meets their needs. We’re time-poor, so that means we want to work with businesses that get us, that know what we do and can service us accordingly.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Businesses with specialised, vertically oriented products have been marketing this strength for years.\\n\\nSo how do you capitalise if your product isn’t niche-market specific?\\n\\nI’m not about to tell you to start touting your product as market specific or specialised if it’s not. But if clients from a particular industry sector are benefiting from your product or service, why not tell other potential, similar clients? It’s much easier to get an audience to listen if you’re speaking directly to them.\\n\\nCustomising your message can build confidence in your service and help you to build market share.\\n\\nChoose one or two major industry sectors you service, and then ask yourself (or better still, ask them) a few questions.\\n\\nHow do they use your product or service?\\n\\nWhat specific business benefit are they getting when they use it?\\n\\nWhat staff within the organisation use it the most?\\n\\nArmed with that knowledge, you can produce messages and communications collateral that directly engages the audience.\\n\\nIt doesn’t have to be complicated. You don’t have to build a whole new campaign for every industry you service. Your brand and product remains consistent, but the way you structure your message changes.\\n\\nThere’s no better way to show potential clients how much you appreciate their specific needs.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24841,28044,1,'State your client’s case','2021-07-23 06:19:14','2021-07-23 06:19:14','ba71f934-9f83-4495-ab52-51a71d406d7f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wwyHcPmT7W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"We all know how much easier it is to see the path if someone else has cleared it for us first. Your clients and potential clients are no different. Comparing can help them comprehend the value to their own business.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"That’s the value of a case study.\\n\\nThe trick is producing an interesting, well-written, balanced story that makes audiences believe and want to read it.\\n\\nSo how do you put together a great case study?\\n\\nFirst, you need a happy (and preferably interesting) client who agrees to let you tell their story.\\n\\nNext you need to listen to their story. It’s not good enough that you know where your product and services sit in their business. That’s not the story, that’s your marketing copy.\\n\\nStep away from your own business perspective for a moment and think about your clients’.\\n\\n- What are they trying to achieve as a business?\\n- What specifically were they trying to achieve when they implemented your product or service?\\n- What was the situation or status quo prior to implementing your product or service?\\n- How did (or do) they find the process?\\n- Did your service meet or exceed their expectations?\\n- Were there any hiccups or learning experiences that can be included? (We figure if you’ve chosen this story it’s a pretty happy one. But there’s nothing wrong with including an honest teething problem, especially one that has a happy ending. If you addressed and resolved the issue quickly, then it’s a positive reflection on your business).\\n- What was the final outcome?\\n- Can you put a dollar or other specific value figure on the outcome?\\n\\nYou need detail to paint a picture, but don’t get bogged down by it. Keep it sharp, informative and interesting to the audience, and make sure your tone suits them too. Include constant subtle reminders of your product or service\'s involvement in the success, but avoid making it sound like advertorial.\\n\\nGetting it right is worth the effort. At New Word Order, we’ve been producing case studies for client web sites, brochures, presentations, publications and other collateral for over 9 years. We get the brief right, we know what questions to ask and we know how to conduct a phone interview. Because we do them every day.\\n\\nIf your product or service adds value, a great client case study is going to be the most effective sales tools you ever invested in.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24842,28045,1,'Common sense isn’t common','2021-07-23 06:19:14','2021-07-23 06:19:14','330e35ce-3994-419a-83d8-adf4759cdc25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pEGVOX2A5Z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"A great deal of being successful in business is being practical, prepared and dedicated. Seems like common sense.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"You could almost say ‘never put off till tomorrow what you can do today’.\\n\\n##### **But things aren’t ever that simple.**\\n\\nWhile old sayings knock around forever, quite often all they do is put a situation into a little box so it stops nagging on our limited attention. In business, however, those nags – technically known as ‘thought-terminating clichés’ – often desperately need to be heeded.\\n\\nIn my work this week, I’ve seen what happens when an otherwise impressive company becomes blinded by its own clichés. In this case, it’s made senior management myopic, staff stifled, and the owners so consumed by their own narrative they’re unwilling to take responsibility for their failures. It’s not pretty, and the effects are wide-ranging.\\n\\nSo, how can you tell if you’re thinking clearly or caught up in your own clichés? For one, consider the terrifying thing about common clichés: pretty much all of them have an equally popular contradictory saying. Chances are the ones you favour in your business do, too.\\n\\n##### **Look before you leap … He who hesitates is lost.**\\n\\nIf at first you don\'t succeed, try, try again … Don\'t beat your head against a brick wall.\\n\\nAbsence makes the heart grow fonder … Out of sight, out of mind.\\n\\n##### **Haste makes waste … Time waits for no man.**\\n\\nYou\'re never too old to learn … You can\'t teach an old dog new tricks.\\n\\n##### **Do unto others as you would have others do unto you**\\n\\n… Nice guys finish last.\\n\\nReal common sense comes from combining logic, understanding and intuition. Most importantly, in a business sense, it comes from owners and managers operating with honesty, integrity and a good dose of self-awareness.\\n\\nSo while the problem you’re tackling in your business might well be better solved by putting your brain in gear, nose to the grindstone, shoulder to the wheel and keeping your eyes peeled – chances are that what you really need is the guts to be brutally honest with yourself.\\n\\nIt begs the question: What are the ways you use common language to brush over problems in your business? Are there common catchphrases or clichés buffering you from a dose of reality?\\n\\nHere are some examples:\\n\\n- That’s not the way we do things.\\n- It’s not my fault.\\n- That customer’s an idiot.\\n- It’s my way or the highway.\\n- The buck stops with me.\\n\\nIf you stopped to consider the situation and the automatic response within your business, I wonder if there’d be a nugget of genuine insight there that’s being hidden by a cliché? An opportunity to improve, rather than deny?\\n\\nIt’s worth considering. After all, it’s better to be safe than sorry.\\n\\nThis article first appeared in CCIQ’s Inform. We create, research and write this monthly e-zine, which goes out to businesses across Queensland.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24843,28046,1,'How to read the media','2021-07-23 06:19:15','2021-07-23 06:19:15','95fdd16b-d67e-412a-84b9-af3064760fa2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZQ8GkHzE9z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"With so much sensationalist news out there competing with valid journalism for your attention – and often winning – being able to tell the exploitative from the illuminative is a valuable skill.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"At the moment, the ideal of an informed public is suffering in something of a perfect news storm.\\n\\nThe interdependent weather fronts colliding are the 24-hour news cycle, Google’s diversity of sources, a global panic culture and political coverage that paints one side as uniformly outrageous and the other as cringingly ineffective: Abbott vs. Gillard, Newman vs. Palaszczuk, Romney vs. Obama.\\n\\nNews companies have found their new news audiences are always switched on, always hungry and, through Google, able to choose facts to suit their preceding opinions.\\n\\nSo used to being shocked, so prepared for it, the audience is anxiously tensed to leap on the tawdry or gory or disastrous.\\n\\nHeadlines such as “Australia actually unpopular destination for refugees” don’t sell.*\\n\\nPeople crave certainty in uncertain times. And there’s profit in that. At its worst, that led to the goings-on at News in the UK, but in its garden-variety form it has led news devolving from knowledge, analysis and consideration to information, opinion and soundbites.\\n\\nOr, more often in the case of financial and business news, an addiction to data (which sits one rung of below information, and two below knowledge) and whichever statistic is most alarming at that hour.\\n\\nBut now, a caveat before we unload on journalism: largely speaking, journalists do their best and care passionately about doing what they do and about doing it well and accurately. But, as every business knows, where there is passion there is overwork. And news is business.\\n\\nThus, these days reading news is, more than ever, about reading between the lines.\\n\\n##### **Here’s how:**\\n\\n###### **Experts and gurus**\\n\\nIn general there are three ways journalists establish the veracity of their stories they appeal to your mind, your heart or your respect for someone’s reputation.\\n\\nIt’s roughly the same idea as academic referencing in research, but it is perverted by placing the angle before the evidence. A quick way to clock a true expert is to research their credentials.\\n\\nLook for markers of success and that they practice what they preach. Would you go to a financial planner who was broke? If a story really gets you thinking, it worth doing some digging into who is quoted.\\n\\n###### **Bleeds it leads**\\n\\nOne of the oldest sayings in journalism is ‘if it bleeds it leads’: essentially, bad news sells. These days news services are struggling to find a business model that works when so much content is free online.\\n\\nMany simply try to drive maximum traffic through their sites. Shock tactics and so-called beat-ups are one way of grabbing attention.\\n\\nMost of the time, bad news is not nearly so bad. For example, remember the hullabaloo that preceded the activation of the Large Hadron Collider?\\n\\n###### **Chinese whispers**\\n\\nDo you hear what was said or what you want to hear? There is no way to avoid it, communication misfires almost constantly.\\n\\nA speaker can think one thing but accidentally say another, the listener can misunderstand what they say, the note taker can make a mistake, the tape recorder can pick up the sound of papers rustling at a crucial time. And that’s just communication across one link of the chain from brain-to-mouth, mouth-to-ear, ear-to-brain, brain-to-hand, pen-to-paper. Multiply these each time the information passes to the next actor in the sequence – including journalist, editor, proof reader, sub-editor and printer – and it is a wonder anything is even largely accurate.\\n\\n###### **Damn statistics**\\n\\n‘Lies, damn lies and statistics’ is true!\\n\\nStats are compressions of mathematical data into pieces of information. Compression always loses something. And there are big loopholes through which data can be pushed to get the result you like.\\n\\nFor example, if a study on income has a sample of 1000 people of whom 999 earn $1 a year and one Clive Rinehart who earns $1 billion a year, then the average wage – mathematically speaking – is just over $1 million. Prosperity for all!\\n\\nStats, facts and figures have their place. Generally, that place is not the centre.\\n\\n###### **Agenda and bias**\\n\\nBack in the Obama-McCain race there was 25 seconds that beautifully demonstrated media bias. You can watch it here.\\n\\nIf you don’t want to watch, this is what happens: the reporter asks a group of diners if they are going to vote for McCain – no one puts their hand up (one couple fights about it); then he asks who is going to vote for Obama – everyone puts their hand up. Then he turns to the camera and says, “See, it’s split.”\\n\\nAustralian mainstream media doesn’t seem embrace such gasp-inducing chutzpah, but there are definite leans to many of our outlets. Keep an eye out for them.\\n\\n###### **Simple and simplistic**\\n\\nEdward De Bono – regardless of what you think of him – wrote something useful about the difference between simple and simplistic.\\n\\n“If you do not seek to understand a situation or process, your efforts will be ‘simplistic’ rather than simple. Simplicity before understanding is worthless.”\\n\\nTime poor generalist journalists often never get a true and deep understanding what they are writing about. (Dedicated subject-matter journos, such as Laurie Oakes, absolutely understand what they are talking about). The average newshound just has to get the story down on paper, compressed by time, and move to the next thing.\\n\\nThey simply lack the time – and very often the inclination – to pore over details. Confronted with 4000 words of research for a 500-word space they prune things off. Often that simplification ends up simplistic and vital, subtle accuracies are accidentally lost.\\n\\n###### **Questioning headlines?**\\n\\nMy last point is taken verbatim from journalist Andrew Marr and his book My Trade because it can’t really be said any better.\\n\\n“If the headline asks a question, try answering ‘no’. “Is This the True Face of Britain’s Young?” (Sensible reader: No.) “Have We Found the Cure for AIDS?” (No; or you wouldn\'t have put the question mark in.) “Does This Map Provide the Key for Peace?” (Probably not.) A headline with a question mark at the end means, in the vast majority of cases, that the story is tendentious or over-sold.\\n\\n“It is often a scare story, or an attempt to elevate some run-of-the-mill piece of reporting into a national controversy and, preferably, a national panic.”\\n\\n##### **What it all means**\\n\\nJournalism is a tricky trade. The tricks cut both ways: you can foist them upon the audience or you can be caught out by them.\\n\\nAs long as attention spans continue to shorten – or as long as pandering to short attention spans makes more money – news is only going to get ‘trickier’ – in both senses of the word.\\n\\n*According to 2011 research form the UN, Australia ranks as the 46th most popular destination for asylum seekers.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24844,28047,1,'Corporatese to English','2021-07-23 06:19:15','2021-07-23 06:19:15','e8b82460-7074-4458-b41f-3f8964251ef0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-HTh3V8VYub\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Our business, a prominent leading boutique South East Queensland digital, media, full service and mixed creative agency whose track record puts forth successes and achievement, is New Word Order.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We have built our business on a sensed customer need to elucidate and provide services and solutions from depth-wise passions toward maximizing, engaging and touching base with expert decision-makers and leading experts across our metropolitan networks and even internationally.\\n\\nThese helping, leading and connective skills are what we’d offer to any of our thousands of potentials – inclusive of and with regard to prospectives across the Brisbane and Queensland and Australasian business regionality. Therefore, does contacting New Word Order makes a case for your foremost responsibility toward your strategy regarding your business media?\\n\\nTaking this as a call to revolutionising content, we’d arrange to respond to results-based briefing documentation in solutionised offerings right through to customisable tailored service solutions, meaning the customers is always directly involved within the provision of every consultative gathering of resources, attaining full and effective impacts.\\n\\nSynergising professionally written, artfully designed and productionised media communiqués aligns with our lovely, ever-broadening, and exceptionally cultivated, understanding regarding to every comprehensive aspect within messaging strategies and best practice.\\n\\nAiding and multiplying the efficacy to give pursuit-led and driven engagement regarding consideration to you on our in-house specialities, strength and market-leading is an outstand.\\n\\nAttaining a results-based outcome hand-in-hand with dominant-paradigm appropriation and knowledge guarantees absolute marketing and communicated outcomes.\\n\\nOr, more simply:\\n\\nNeed help with business media? We’d love to give you a hand.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24845,28048,1,'Management is more than measurement','2021-07-23 06:19:15','2021-07-23 06:19:15','766d7730-e749-43cd-8559-029f23d21d38',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4GZRkIUT1L\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Businesses in the service sectors have taken many management practices straight out of the factories of the 20th Century. Often they don’t work.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Let me use one of my staff’s previous performance reviews as a case study.\\n\\nHe worked for a large corporation and its performance review policy was worker and boss would sit down once a year for 20 minutes.\\n\\nThe boss had a set checklist for everyone – the same one.\\n\\nIt was a single A4 page covered with metrics along which each staff member would receive a score from ‘subpar’ through ‘needs improvement’ and ‘meets expectations’ to ‘exceeds expectations’.\\n\\nMy employee told me that his boss ticked ‘meets expectations’ for everything … regardless of who he was scoring.\\n\\nFor people who have worked in large corporations, nothing would be surprising so far. However, my employee and his boss had an unusually candid relationship.\\n\\nWhen my employee asked his old boss what he had to do to ‘exceed expectations’, the boss intimated that head office had decreed that no-one was allowed to ‘exceed expectations’.\\n\\nYou could surmise that this might have merely been an attempt to keep things simple. If everyone is average and everything works well enough, then no-one gets a raise, no-one needs leadership coaching, no budgets are stressed, and everyone remains motivated to ‘exceed expectations’.\\n\\nHowever, this case study skewers the saying you can’t manage what you can’t measure. This company’s performance reviews were not measuring, though they looked a lot like it. Their measurement tools and practices didn’t match the nature of their staff’s tasks in a services industry.\\n\\nSo this company was using an unreliable yardstick – a single A4 of tick-and-cross – and an unreliable measurer: the manager’s judgment in that one 20-minute block once a year.\\n\\nPlus they had kneecapped both with a rule that no-one can be better than just ‘good enough’.\\n\\nHere’s the rub. Most jobs these days aren’t on conveyor belts. Most create ‘value’ – the unmeasurable flipside of ROI – through services. Performance in these jobs can be accurately judged and appraised by involved and well-trained managers, but job performance in these sorts of roles cannot be accurately summed up with numbers.\\n\\nHere are the crucial toolkit words – and these words are a great hammer and anvil to crack so many things apart: qualitative and quantitative.\\n\\nManagement by measurement is quantitative. It is accountancy played with people. It fits neatly with the MBA approach to business.\\n\\nManagement by attention, involvement and open dialogue is qualitative. It understands and then secures consensus. It doesn’t fit anything neatly.\\n\\nWorking with people’s qualities isn’t neat, but it is where value comes from in the service sector.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24846,28049,1,'Talking to the kids: tips for marketing to Gen-Y','2021-07-23 06:19:15','2021-07-23 06:19:15','1757fb2b-d29a-4dea-b42a-e7b1ce2f4367',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-33RxHlAlsf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Generation-Y is the first generation that grew up with the internet, and so marketing and speaking to those whippersnappers can be a challenge. We found when we worked on our My Smoking and Feeling Good campaigns with Queensland Health that Gen-Y doesn’t like being preached at – they prefer being spoken to, sharing stories, and honest marketing experiences.\\n\\nKeeping in mind that half of the NWO team fits into that pesky generation, we’ve taken a good look at global researcher Joeri Van den Bergh interviews with 21 global marketing executives from big brands, like Converse, Heineken and BBC about improving their marketing to Gen-Y customers. Here’s what he - and we - learned.\\n\\n##### **1. Make it relevant**\\n\\nFor Gen-Y, it’s all about price/quality: Are you offering something valuable? Are you only selling product, or facilitating and endorsing their life? Being true to who you are is also key. Van den Bergh found storytelling, authenticity, and uniqueness add more than you would expect: They reflect Gen-Y\'s core values and sustain your corporate identity.\\n\\nHe also says that creating an actual experience around your product, online and offline, elevates your brand experience. To stay relevant for Millennials, Van den Bergh says marketers should endorse inclusive brands with exclusive experiences.\\n\\n##### **2. Be where they are**\\n\\nVan den Bergh says that above-the-line campaigns still create awareness, but integration with social media and interaction is vital to connect with Gen-Y.\\n\\nHe recommends that websites be used to engage with Gen-Y customers on a deeper level, with contests, games, or ads. Van den Bergh says your website should be a portal where everything your consumer needs to know is presented in an intuitive and engaging way.\\n\\nOf course, he considers social media a must. Facebook, for example, enables interaction and inspiration and is a great platform for trying new things. Van den Bergh recommends going mobile to connect with your consumers, and to connect them with each other.\\n\\nHe also says events are the way to go when you want to create an ultimate customer experience. The result is word-of-mouth—sharing stories online and long-lasting memories.\\n\\n##### **3. Activate conversations**\\n\\nSurprising your consumers is the best way to shake them awake and make sure they stay focused. Van den Bergh says a surprise can be anything and as long it’s relevant and you don\'t stalk them, Gen-Y will love it.\\n\\nHe also says not to underestimate the power of stories. Tell a story about yourself, let your consumers share stories about their personal life, or combine both.\\n\\n##### **4. Enhance loyalty, be FAIR**\\n\\nYou have to keep your Gen-Y consumers involved. Van den Bergh says to follow the FAIR model: FAst, Innovative, and Rewarding.\\n\\nThe faster you react to your consumers, the more likely you are to have a bond with them. By innovating, you are showing interest, creativity, and initiative. Showing Gen-Y consumers your appreciation for having chosen you is key.\\n\\n##### **5. Have guts**\\n\\nGo out there and create a daring but relevant appeal.\\n\\nHow have you marketed to Gen-Y? What’s worked, and what hasn’t? We’d love to hear from you! Let us know and join the conversation in the comments below.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24847,28050,1,'Righting writing','2021-07-23 06:19:15','2021-07-23 06:19:15','fcd6dd8a-33be-4ec5-8ddc-0f21b1f94196',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WiIX62eIQK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Uni was when I found my purpose in life. A passionate lecture on the very first day was my ‘eureka!’ moment that then propelled me through a double major in communications, 10 years in a newsroom and countless more in corporate writing.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But it all could have come tumbling down in the stern and unyielding face of just one lecturer: Ros Petelin.\\n\\nLike most kids who gravitated toward the arts in school, I’d been feted as a bit of a writer. I wrote installments of unreasonably sappy romance novels late at night and distributed copies to peers on the train the next morning. I won an academic scholarship for my writing (although nearly lost it many times for my maths).\\n\\nIt was left to Ros – now an associate professor in the School of English, Media Studies and Art History at UQ, and a well-respected writer in business communication – to tear my self-made kingdom down, word by word, until I could rebuild it on more solid foundations.\\n\\nHere’s what I now know to be true about writing effective business words.\\n\\nThanks, Ros. I hope you’re grading more kindly these days.\\n\\n##### **Trick #1: Talk like your audience**\\n\\nIf you’re writing for your business, forget formal words and don’t allow fear of failure – or grammar – to stop you writing. Instead, a trick I’ve long used in business writing is to hear a typical customer’s voice in my head, and then to write like they talk.\\n\\nLike acting, the craft of writing involves immersing yourself in the character. In this case, the character is your customer – and by sounding like them, you’re more likely to draw them in.\\n\\n##### **Trick #2: WIRMI**\\n\\nI have Ros and her fondness for US author Linda Flowers to thank for WIRMI. The acronym ‘What I Really Mean Is’ is extraordinarily helpful in bringing clarity to business writing, and it’s a tool I still use daily.\\n\\nYou can use WIRMI as a catchphrase at any point of your writing – when you’re trying to work out exactly what you want to say, and when you’ve written something and you need to ensure it says what you want, clearly and well.\\n\\nIf you’re not comfortable with writing – and plenty of people would rather line up for a root canal than write an essay – this is a great way to check you’re on track.\\n\\n##### **Trick #3: So nice you read it thrice**\\n\\nFinally, if you’re satisfied that what you’ve written is the best you can do, read it through once more – and then put it down.\\n\\nAfter a few hours – or a few days, if you have the time – pick it up and critically read it again. Make a few adjustments. Delete a few words. Then hide it again.\\n\\nOn the third go, after another break, pretend you’re the customer and read it aloud to yourself as though you’re seeing it for the first time. If you have no more changes to make to it, it’s good to go. But chances are, you’ll think of a few.\\n\\nWhy at least three reads? Professional writers and editors know better than anyone that great writing comes from multiple drafts, not a single session of inspiration. Taking a break in between drafts – although hard to do in a busy work day – can be the key to achieving great results.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24848,28051,1,'The year of content marketing','2021-07-23 06:19:15','2021-07-23 06:19:15','91d5b204-c9cd-48fe-bd08-ee9d8f2a2c63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5uJhJG0gB5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"We’re halfway through the year already. When did that happen? For marketers, this was going to be the ‘year of content marketing’. Has it been for you?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Many brands have had a great time putting together content marketing campaigns – Marketing Mag cites Red Bull and Mitre 10’s efforts on The Block. But there’s always an extra worry that overloading customers with content can do more harm than good.\\n\\nThink of how you engage online and use social media yourself. We all have those friends who overpost and overshare, and you end up either ignoring or blocking them. Don’t run the risk of bombarding your customers with inconsistent or non-engaging content just to keep up a social media presence. It’s a guaranteed way put them off completely.\\n\\nWith LinkedIn and Facebook used to distribute the most marketing content, it’s not just the frequency of posts that can let your company down. It’s about what you’re saying, too. And the balance between pushing your message and producing good content is tough, as is maintaining consistency. It’s a balance, really, and the key is creating informative, engaging and sharable content.\\n\\nSo, what’s the trick? Well… there is none. Sorry. It’s old-school. Understand your market’s likes and expectations, and especially understand how much they want to hear from you. A common sense approach. How are you surviving in the year of content marketing?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24849,28052,1,'Learning to lead','2021-07-23 06:19:16','2021-07-23 06:19:16','7ea494bc-b951-4669-87ef-6c0c0b45a7bc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uWsaVfK1Sl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Most of us have leadership potential, but not all of us are true leaders. Have you ever thought about what true leadership is? Let\'s take a look at how to inspire and motivate yourself and a team to follow your vision.\\n\\n##### **A vision**\\n\\nLeadership starts with vision. A survey by Harvard Business Review found that being forward-thinking is the attribute that most distinguishes leaders from non-leaders. The consensus is that envisioning exciting possibilities and sharing them with others is the most inspiring way to lead a team.\\n\\nGreat leaders, John Ryan wrote in Forbes, give real thought to the values, ideas and activities they’re most passionate about. These should be challenging to put in action, and success should only be reached by setting realistic, demanding goals and going after them relentlessly.\\n\\nWith the help of other engaged and talented men and women, a leader is born.\\n\\n##### **Balance vision and action**\\n\\nWhile your vision is the destination, action is how you get there. Creating a balance only happens when the directions or instructions to reach that vision are clear.\\n\\nA leader needs to understand their team and what motivates them. David Lavinsky wrote in Forbes that true leaders recognise talent and work with those with skills to complement their own, celebrating small victories with the team while staying focused on the big goal.\\n\\n##### **A personal statement**\\n\\nA useful personal leadership vision, focused on action and direction, is a compelling image of an achievable future. Stew Friedman suggested in the Harvard Business Review that to grow as a leader, you should compose your own personal leadership vision, drafted and practised until it’s true and inspiring.\\n\\nFriedman also recommended asking staff to do the same, building on the trust that comes from being aware of what really drives one another.\\n\\n“You’ll be better equipped to capitalise on a critical, often overlooked, aspect of diversity – the remarkable variety that exists in the aspirations of the people around you,” Friedman said.\\n\\n##### **Communicating your vision**\\n\\nKnowing what you want to accomplish may seem clear to you, but as Tanya Price wrote in Forbes, explaining and motivating others is a different story. Clearly and succinctly describing what you want done is important. If you can’t relate your vision to your team, you won’t all be working toward the same goal.\\n\\nCreating a productive work environment depends on clear communication. Your team will learn to trust and depend on you, and will be less hesitant to work harder.\\n\\n##### **Values and delegation**\\n\\nYour team is a reflection of yourself, and if you make honest and ethical behavior a key value, they\'ll follow suit.\\n\\nDelegating tasks is one of the most important skills you can develop for leadership. And the key to delegation is identifying the strengths of your team, and capitalising on them.\\n\\n##### **Confident and committed**\\n\\nPart of your job as a leader is to keep up your confidence and focus on the larger goal.\\n\\n“Remember, your team will take cues from you, so if you exude a level of calm damage control, your team will pick up on that feeling,” said Price.\\n\\nOf course, if you expect your team to work hard and produce quality results, you must lead by example. There’s no greater motivation than seeing hard work done at every level.\\n\\n##### **Leadership, not management**\\n\\nManagement is a set of processes, like planning, budgeting, staffing and problem-solving. That’s different to leadership, which is about taking a team or organisation into the future, finding opportunity, and producing useful change.\\n\\nWhile management is about attributes, leadership is about behaviour. Are you behaving like a leader?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24850,28053,1,'The problem of creativity','2021-07-23 06:19:16','2021-07-23 06:19:16','c677b1d8-225a-4e23-b9cc-735f32604e53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TgHcrFPn5p\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Explaining what it is we do at New Word Order, working in a creative agency, can be a little tough.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We’ve come to realise it’s the word ‘creative’ that probably throws people.\\n\\nCreative means something different to everyone. It even means something different to each of us here at NWO. Our project managers, marketers, designers and writers each work in different disciplines and are inspired by different things. And each of our clients and their projects are, too.\\n\\nSo we took some time to ask around the office and try to define what creative means to us. What we found was interesting – some fascinating definitions and insights, inspired by work and from outside of it. It seems that working in a building with ‘creative’ written on the side does encourage us to be so. And what was amusing was the insight into our staff their responses elicited.\\n\\nFor our designer Rebekah, creativity means letting go of what you think you know. Isn’t that kind of perfect? At the same time, our resident wordsmith Suzanne finds creativity in beautifully crafted words. Suzanne says she can be star-struck by beautiful phrases the same way someone else can be affected by visual art or fashion.\\n\\nTo feel creative, our strategic marketer Nikala says she likes to consider the problem at hand and then take time out to think – go for a walk, have a drink with friends, relax. Scott, our Creative Director, says he also likes a change of pace and headspace to ignite creativity – he even finds airports and planes inspiring because they’re so different to his normal place. Scott feels most creative, though, when a worthy challenge or brief comes our way. Rebekah also feels most creative when inspired by a great brief.\\n\\nAnd what of true creativity? According to Suzanne, at its heart creativity is about seeing the world differently and pursuing the new. She says that writing with great creativity is the hardest work she does, and she finds creative copywriting demands the most energy but also gives her the greatest satisfaction.\\n\\nScott says creativity is the generation of something new that contributes to the shared human experience. It\'s sometimes original that spans every aspect of what a human mind is capable of – science, art, you name it.\\n\\nNikala agrees that creativity isn’t necessarily about art. Paving the way for our clients and their projects, she points out that creativity can be seen anywhere and is probably best defined by someone thinking differently about a problem and coming up with a solution that is not only new, but also works.\\n\\nAnd so, in a building labelled ‘a creative agency’, there are as many different ideas as people when it comes to defining what characterises our work. Last words to Scott:\\n\\nTrue creativity is unique, incredibly clever, transforming to humanity, and startling in its (metaphorical) beauty. I\'m hooked on the link between creativity and beauty in all its possible meanings.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24851,28054,1,'Mums mean business','2021-07-23 06:19:16','2021-07-23 06:19:16','c8da5532-dd44-4566-b028-4ba151dc4ab6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jTl3w1cGNC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Twelve years ago, I turned my back on a promising career at News Limited and became part of what is now a significant movement in small business: the mumpreneurs.\\n\\nFaced with inflexible working conditions, shift work and only average pay as a subeditor, the option to build a business through freelancing was alluring. My husband and I had also walked a long, hard road to have our kids; turning around and putting them in full-time childcare felt like a betrayal of the journey.\\n\\nWorking from home with a young child, of course, had drawbacks. I remember clearly the day my monitor went dead during a pressing deadline… because my baby had crawled underneath the desk and chewed through the connection cord. The horror that she could have just easily chomped on the power cord sent me out to buy a playpen.\\n\\nSocial isolation was also a significant issue. I didn’t join mother’s groups or lunch with the ladies while any of my three children were at home because every sleeping moment for a child was a working opportunity for me. No other woman in my wide circle of acquaintances worked for themselves or, if they did, it looked nothing like my level of enterprise. I became – and remain – the queen of speed because there was simply no time to waste.\\n\\nSince expanding the business and no longer working from home, I look back on those years with a mixture of amusement and dread. It tickles me that so few clients knew I worked from home, and that my business grew just as fast as my children did. Sometimes faster. I also remember, very clearly, the deadlines worked all night and the stress of needing far more hours than I had capacity. Quite literally, I pressed ‘send’ on work to clients on my way to hospital to deliver a baby. Twice. By the time my third child arrived, thankfully, I’d hired another writer.\\n\\nLast week, memories of my early years in small business came flooding back with a Sydney Morning Herald article on mumpreneurs. The women interviewed were driven to begin home businesses by similar factors: childcare costs and a desire for flexible parenting while generating an income.\\n\\nBut that’s where the similarities end. Today’s mumpreneur is part of a growing army. A BankWest study in 2011 found women are starting businesses at twice the rate of men, thanks to the benefits of better technology. Mumpreneurs Online surveyed UK women last year to find that 73 per cent had started their own business – and they knew another woman who was doing the same. AusMumpreneur claims 16,000 members nationwide. And in October, a two-day conference called Mumpreneurs on Fire is drawing hundreds of women to Melbourne. One of the plenary sessions is on how to build a multi-million dollar business. These mums mean business.\\n\\nIt’s about time. With Baby Boomers fast exiting the small business – half of all businesses are owned by people over 45 – there will be a glaring gap in our economy unless Generation Y, mums included, steps up to the plate.\\n\\nLong live the entrepreneurial spirit enshrined in small business, and best of luck to this rising mummy army. I just hope they get more sleep than I did.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24852,28055,1,'The tender pitch','2021-07-23 06:19:16','2021-07-23 06:19:16','e0cdfaaf-41d2-476b-8eee-a41992daf2d8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1LjriJPkD9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"If networking nights are like professional speed dates, then tenders and pitches are like fast and furious flings that shotgun quickly to marriage or – mostly – burn out with little said between the two parties.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"And in pitch season, that unofficial period of the year where you seem to do little paid work and an awful lot of these tenders and pitches, one can get a little down at the sheer amount of time and expense expended, not to mention the quick but brilliant creative that won’t see the light of day.\\n\\n##### **‘I’ve met someone else’**\\n\\nSo, with pitches in full swing, I thought I’d continue the metaphor and shed some light on what it feels like to be the eager party still sparkly with romance and ready to commit to a long-term relationship, only to be told it’s over before it even began. It’s not much fun to be cast as the best friend and not the star.\\n\\nEarlier in my career, I was a member of the Australian Graphic Design Association (AGDA). AGDA had an unambiguous policy against free pitching, equating it to professional prostitution (though, oddly enough, prostitutes get paid for what they do). Their policy was built on the idea that our ideas are everything, and that giving them away was the worst thing we could do.\\n\\nIt’s a good, strong ethic that I still wholeheartedly espouse – but I compete in an industry where free pitching, often on top of an extensive and expensive tender process, is the norm. If only my industry had the same rule about free pitching, then we might all get hired for our potential and value without the massive time and IP giveaway.\\n\\n##### **‘It’s over’**\\n\\nThe biggest challenge, though, about free pitching is not the cost or the time. It’s the requirement to develop creative without the ability to properly research, develop the brief or fully explore the clients’ needs.\\n\\nWhile all pitchers (except incumbents) are under the same restrictions, nobody can really develop a campaign under a free pitch that will work as well as one developed with the serious time and effort it takes to truly know a brief and provide a solution.\\n\\nSubstance should matter more than flash. Didn’t our mothers always warn us about girls like that? But sadly, another agency’s flash can mean a budding relationship is over before it even had a chance to begin.\\n\\n##### **‘There are plenty more fish in the sea’**\\n\\nSo the answer is, of course, to not try and meet new professional flames this way. Nobody is forcing us to participate and there are plenty of potential lovers who will choose you based on referral and credentials. But the sad fact is that whole sectors don’t procure that way and if you want to work with them – and we do – you need to be ready to date their way.\\n\\n##### **Creative house seeks new relationship**\\n\\nI admit it: we’ve been playing the field. And yes, from time to time, the dating game has meant we’ve been a bit burned, but never bitter.\\n\\nIn our adventures, though, we’ve found love – and if past experience can teach us anything, it’s that we’re built for a love that lasts. We want the kind of client relationship that grows and builds over time, bringing with it joy, rewards, results... and a bit of fidelity.\\n\\nCare for a date?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24853,28056,1,'Photography and your brand','2021-07-23 06:19:16','2021-07-23 06:19:16','4a75b21e-4210-4d8a-941f-2045c6d71bd3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Y0QyW1M0Xw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Using visuals and imagery are essential parts of any campaign. When you take a look at our lives and consider our love of infographics, Pinterest and Instagram, as well as our preference for fast, digestible information, using pictures well in your marketing mix makes good sense.\\n\\nMost marketers turn to stock photography when they want to illustrate their idea or campaign. That’s because it can be cost-effective and fast. But there are risks with stock photos, and smart marketers should know them.\\n\\nThe reason we use stock photos most often here at New Word Order is to create mock-ups and ideas for our clients, giving them a better representation of our idea and what we have in mind. Stock photography can also be faster and cheaper than a photo shoot, and it’s instantly available. So, for brochures and smaller pieces, stock photography can be the way to go.\\n\\nBut there are also many, many reasons why investing in a proper photo shoot is better for your business and brand. For starters, stock photography is pretty generic, impersonal and unrealistic. Probably not the look you were after for your new campaign or your brand.\\n\\nStock photos are never taken with a specific idea in mind, and that means they can be bought by anyone and have no particular alignment with any brand. If you use stock photos, you risk looking like any other business – unoriginal, and quite possibly uninspired. If you want to look unique, only images unique to you can achieve this… not the clichés and overused images of your competitors, nor the unrelated stock images you might try to shoehorn into your idea.\\n\\nAt NWO, we love a photo shoot. It’s not just that we’re all about an original idea, either. We believe that when you work with a photographer, you get far more than an image file. You get the benefit of experience, creativity, knowledge and insight.\\n\\nYou also get to say something unique, present something instantly recognisable to the market, and really stand out. You get a professional who listens to and understands your brief, knows what you’re trying to say and what you want to achieve. If you want to make changes on the day, you can, and the final decision on the final image is also in your hands. Complete control.\\n\\nSo while stock photos may be cheap and fast, they can also make your brand look unfocused and unoriginal. A photo shoot is the only solution for a company that wants to visually stand apart from the competition.\\n\\nWith the help of our trusted photography partners, we’ve directed photos shoots for many of our clients – some of them on tight budgets – from Mosaic Chartered Accountants through to Embertec’s very own Power Saviour. For every client, it’s been well worth the investment to truly stand out.\\n\\n[Talk to us today](/contact) about how you can use photography to bring life to your next campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24854,28057,1,'Writing for (readable) web','2021-07-23 06:19:16','2021-07-23 06:19:16','140db3cb-6ac3-4af8-abe2-7710e7bbda29',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AWtBdVK79w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Just as website navigation is a unique narrative structure, writing web content follows unique writing conventions.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Why? Because that’s the way we work as readers.\\n\\nWhen we pick up our tablet or our website, we rarely read word for word. Research has shown the average reading time is 25 per cent slower on a screen, so we skim, searching for keywords.\\n\\nAnd, because we don’t want to scroll, we won’t.\\n\\nThe result? Your web copy had better be short, concise and very easy to navigate. Otherwise, you’ll lose your readers in less time than it takes them to click their mouse.\\n\\nThe way your readers read demands your web and other digital content should be written to suit.\\n\\nTo take a practical example: The length of copy and type of language used in a corporate letter or marketing communications are too long and formal for a digital environment. Aim instead for half the words you’d use in a paper document. And then cut in half again.\\n\\nAnd to take another example: Think of a news story. It has the main info up the top, short and snappy sentences, and clear headings. Web and digital writing follows the same convention.\\n\\nAt New Word Order, we have established eight hallmarks for effective web writing, and we use these to assess our clients’ site and the work we provide them:\\n\\n- Short, effective sentences (say the same information with less)\\n- Sub-headings and headings containing keywords\\n- Everyday words the average reader can easily understand (plain English)\\n- Informal voice\\n- Common language conventions\\n- Direct language\\n- Active tense\\n- Consistent, logical structuring of information.\\n\\n##### **1. Write in short sentences and paragraphs**\\n\\nAim for short sentences, each with one or two clauses.\\n\\nEach paragraph should contain no more than 2–3 sentences, and altogether a page of content should fit comfortably within the web page without requiring the reader to scroll. The optimum line length is 8–12 words.\\n\\nIncluding useful and interesting facts keeps readers’ attention longer than ‘motherhood’ or general statements. They’re more believable, too.\\n\\n##### **2. Use headlines and sub-headings**\\n\\nHeadlines and sub-headings are an effective way to guide a reader through their skimming of a web page. Since research tells us readers rarely read every word on a website, it makes sense to prioritise what they see – and headlines and sub-headings do this well.\\n\\nMake headlines and sub-headings factual, not fanciful. This enables readers to rapidly scan useful keywords.\\n\\n##### **3. Write in plain English**\\n\\nWhile plain English should be the aim of all of your publications, it’s especially important in a digital environment.\\n\\nPlain English means using words the average Australian reader can easily understand.\\n\\nThat means you should:\\n\\n- include useful headings\\n- use the simplest form of a word possible e.g. said (not announced or discussed); try (not endeavour)\\n- define tricky terms\\n- delete unnecessary verbiage\\n- use familiar, easily understood words\\n- include lists and tables to simplify content and reduce word count.\\n\\n##### **4. Use informal voice**\\n\\nUnlike general corporate writing, digital environments demand a more informal voice.\\n\\nThis means using ‘you’, ‘we’ and other pronouns to speak directly to the reader within the text. Formal language is out.\\n\\n##### **5. Use common language conventions**\\n\\nEffective web writing uses language conventions found more commonly in conversation.\\n\\nThis means using:\\n\\n- contractions (isn’t, that’s)\\n- common bridging words to begin sentences (and, but, because)\\n- short statements of fact\\n- links to longer explanations (e.g. PDFs, minutes, fact sheets).\\n\\n##### **6. Get to the point**\\n\\nWriting for digital environments takes discipline, because readers have little tolerance for fluffy language, repetition, ‘happy talk’ or unnecessary explanations of what’s already evident on the page.\\n\\nTo write direct, straight-to-the-point copy:\\n\\n- stick to the topic\\n- cut unnecessary adverbs (e.g. completely finish, tentatively plan)\\n- delete tautologies (e.g. whole of the country; for a period of six months)\\n- use simple present tense when possible (e.g. uses instead of ‘is utilised by’, conducts instead of ‘is conducted by’)\\n- avoid clichés.\\n\\n##### **7. Use active voice**\\n\\nActive voice is a way of structuring information that allows you to focus on the subject and cut excess words. Following this method enables quick readability.\\n\\nActive voice places the subject first in a sentence, followed by the action.\\n\\ne.g. Active voice: New Word Order opened in 1998.\\n\\nPassive voice: New Word Order was opened in 1998.\\n\\n##### **8. Structure content well**\\n\\nThe most important information should always be placed first on a web page, and the web layout and navigation should be consistent and logical to a reader.\\n\\nA good rule of thumb for navigation is organise the content to suit how the reader needs to discover it.\\n\\nWith only a few exceptions, your website should go no deeper than three levels of navigation. Too many websites go down rabbit warrens.\\n\\nTo structure new web content, follow this checklist:\\n\\n- Plan what you need to write, and stick to the topic.\\n- Lead with the most important information – this means placing these details first on a page.\\n- Keep each section simple and clear – don’t try to achieve too much in one place.\\n- Use meaningful links – rather than repeating information found elsewhere on the website, link to it.\\n- Put the most recent information at the top – for example, when you’re archiving minutes or reports.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24855,28058,1,'What the artist breaks','2021-07-23 06:19:17','2021-07-23 06:19:17','d1efc970-0b62-4310-8c1c-e3b8424e3088',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QjbPRQcxAH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"It’s arguable that copywriting is at the heart of all advertising and marketing today. We remember taglines and recall jingles; and copy is the beginning of most brand stories. But, boy, is it fantastic to look back at a time when it really was all about the words.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Bill Bernbach was the founding creative director of legendary Manhattan ad agency Doyle Dane Bernbach. He came out with quotes like:\\n\\n“Advertising is fundamentally persuasion and persuasion happens to be not a science, but an art”, and\\n\\n“Word of mouth is the best medium of all”, and\\n\\n“Rules are what the artist breaks; the memorable never emerged from a formula.”\\n\\nThat’s really provocative stuff that makes you nod your head at the truth and simple power of his thinking – and imagine how inspiring but uncompromising a boss he would have been. What an exhilarating time to be writing.\\n\\nBernbach not only had a way with a turn of phrase, but he also really set up the structure of creative teams for marketing and advertising, and was, of course, part of the inspiration for Mad Men. But mostly, he was a writer. And what a writer he was. His firm revolutionised advertising copy and laid out the early foundations for brand storytelling through engaging narrative and brand persona development. We can, and have, all learned from these guys.\\n\\nIn the 1960s, DDB took on Volkswagen as a client and began creating a series of print ads that referred to the VW as a “lemon” and encouraged consumers to “think small”. The copy, by the incomparable Julian Koenig, starts out saying “This Volkswagen missed the boat. The chrome strip on the glove compartment is blemished, and must be replaced.” Not exactly sales speak.\\n\\n##### **It was funny. It was clever. And it was ground-breaking.**\\n\\nFor the rest of the decade, VW kept their unconventional campaign rolling. DDB’s strategy of turning seeming faults into benefits was a huge hit. One ad didn\'t even include a picture of the little lemon: “No point in showing you the 1962 Volkswagen. It still looks the same.”\\n\\nMuch has been written about the ads, and you can take a look at a bunch of them here if you like. It was ranked the best advertising campaign of the twentieth century by Ad Age, and it deserves the title. This sort of brand bravery is rare and may be a little of its time, too. The truth is that the power is all right there, in the copy, which exists to inspire us. Last words to Mr Bernbach himself:\\n\\nYou can say the right thing about a product and nobody will listen. You\'ve got to say it in such a way that people will feel it in their gut. Because if they don\'t feel it, nothing will happen.\\n\\nWhat is your brand really saying?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24856,28059,1,'8 important marketing questions for every business','2021-07-23 06:19:17','2021-07-23 06:19:17','b4c9f78e-1aa8-417b-beb4-1e6d20ed85a3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VzKHBkk2Ca\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Marketing communications in business is all about attracting and retaining customers. We do it for dozens of Australian companies every day, and the bigger the company, the tighter the marketing strategy governing their communications – because they know customers are fickle, and competitors are waiting to pounce on any weakness.\\n\\nThe same philosophy of tight strategy and execution should drive your business. Effective marketing communications must be an essential part of your core business strategy to ensure you’re pushing the same, consistent message through every aspect of your organisation.\\n\\nBut it’s not always so easy to go it alone. If you’re in a small business and know you need to step up, here’s a handy checklist of the marketing questions you need to answer to keep your customers in tune with you – and your competitors at bay.\\n\\n##### **Who are my existing customers?**\\n\\nThe best way to sell to your customers is to first understand who they are, why they buy from you, and what value they expect from you. And the best way to learn this? Listen to them. Marketing communication begins with good customer relationships, which are almost like your own form of market research.\\n\\nWhen you talk to your customers, you’ll learn things like your customers’ age, income, education, how often they buy from you, what their buying triggers are, and how they’re influenced. This is a valuable step in honing your marketing message, so don’t be tempted to think you already know the information if you’ve been in business for a while. Every customer conversation will add another layer to your understanding.\\n\\n##### **Who are my potential customers?**\\n\\nIt’s just as critical to have a very clear understanding of your desired target market and new customers. Get as detailed as you possibly can. The more specific you are, the better you can develop messages for them.\\n\\n##### **Who are my competitors?**\\n\\nUnderstanding who competes for your customers – and what they’re offering – is vital. Get very familiar with every aspect of your competitors’ businesses – including their reputation, prices and marketing material. This knowledge will help you position your marketing communication relative to how your customers are already being targeted and differentiate yourself in the market.\\n\\n##### **What am I trying to achieve?**\\n\\nUnderstanding why you’re communicating with your customers is essential. Are you purely after quick wins? Or preparing the ground for a new product or stronger relationships? The rationale and potential value for any marketing effort should determine how much money you need to spend, and where it’s best spent.\\n\\n##### **What am I trying to say?**\\n\\nThis is where everything comes together. You must now develop clear, key messages that talk up your product or service, meet the expectations and needs of your new and existing customers, and differentiate yourself from your competition.\\n\\nMake sure you have no more than five key messages – in fact, the fewer the better – and make them specific and meaningful. That’s how you stand out in the crowded market. Ensure your customers are aware of your business and its products or services, and why they should care (e.g. What’s in it for them? And what are the true benefits?). These benefits should be factual and real. It’s important not to overload customers with information, but rather to be clear and articulate.\\n\\nAll of your marketing communications should include a strong call to action: What is it that you want customers to do once they’ve interacted with you? Leave them in no doubt and make it easy for them.\\n\\n##### **What’s the right channel?**\\n\\nThere’s no doubt that it’s a busy marketplace when it comes to finding the perfect place to share your marketing messages. The challenge here is in focusing and narrowing your communication – and finding the right time and place to connect with your customers.\\n\\nMany marketers are now jumping on social media networks, but that might not be where your customers can be found. It’s important that you understand how and when they want to hear from you, and use that information to foster a true customer relationship.\\n\\n##### **Is my strategy integrated?**\\n\\nCommunicating in an integrated way across all channels (such as website, emails and brochures) means your brand will become better known and understood. Integration means that every time your customers hear from you, they get the same feel for who you are. By creating consistent, strong marketing communications, your customers will identify and remember you into the future.\\n\\n##### **Finally: Am I communicating with genuine creativity?**\\n\\nCreativity isn’t about paying your local print shop to pull together a flyer with your logo on it, or using a WordPress template to build your long-overdue website. They might be tactics that you use, but they’re not what creativity is really about.\\n\\nTrue creative thinking pulls together everything you know about your business, your goals and your customers into a single, cohesive package that cuts through, connects and resonates. Creativity distills everything down to the right words, images and design so that your marketing collateral has the right impact. No business can afford to skimp on this stage because getting creativity right means you’ll get the results you’re really after: maximum return on your marketing investment.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24857,28060,1,'Promises, promises','2021-07-23 06:19:17','2021-07-23 06:19:17','fed1fbb5-c06e-464d-825c-5d0eb27cf0ff',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Ekny1wVuy4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Aah, Telstra.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"If you own a business small enough that it’s your job to do hand-to-hand combat with a telco, these two words say it all. And it doesn’t matter what brand name you insert: nothing brings out a sense of shared suffering better than a tale of a telco stuff-up.\\n\\nI had a story I dined out on regularly that involved a telco sub-contractor turning up to fix a crackle – and ending up severing all of the phone and fax lines running to my business. That was fun.\\n\\nRight now, I’m in my 7th week of hour-long conversations with many truly delightful employees of a certain telco, each of whom is exceedingly articulate and apologetic for all the employees who have gone before them. (One supervisor, in all seriousness, said to me: “You need to expect that we won’t get anything right. In fact, I find it best to have very low expectations.”)\\n\\nMy end of a conversation just a week ago went something like this: “So you’re telling me that you can see that you’ve made a mistake in charging me $700 extra this month, but that it’ll take you another three months to reverse the mistake in billing… so I need to give you $700 now and trust that you’ll give it back to me later?”\\n\\n##### **Not surprisingly, I asked for this once-in-a-lifetime deal in writing.**\\n\\nOf course, stuff-ups, broken promises and disappointments occur every day between businesses and consumers. It’s human nature. It doesn’t have to be a telco – although they do it with panache. And it doesn’t have to be big business – although it often is.\\n\\nSmall businesses can often break faith with customers through the sheer limitations of their size. Flexibility and nimbleness are great benefits of working with small business; but when lots of work hits, there’s no-one spare to get it done. Unfortunately, SMEs also need to fight harder than big corporates to keep consumer faith and love alive – because it can mean the difference between floating or sinking.\\n\\nHere’s a great example. Quite a few weekends ago, a small water filter company I’ve used in the past phoned me. The first guy – who said he was the business owner – gave me the sales spiel, and then handed me off to the junior to take my order. Inwardly, I applaud their decision to go aggressively out to the market and to phone customers one by one for after-hours orders. After all, when cash flow’s tight, you have to work smart. Outwardly, I’ll probably not order from them again: the filter still hasn’t arrived.\\n\\n##### **It’s all very well for marketing managers to talk endlessly about channels, for CEOs to cast vision and for designers to beleaguer brand design.**\\n\\nBut at the heart of every brand experience must be trust, in any of its forms. If you’re a services company, then be a trusted advisor. If you provide products, then provide them to a high standard. And in every transactional stage, keep your promises – whether it’s getting a bill right, delivering a product or following up words with actions.\\n\\nSmall businesses also need to keep promises in order to grow their future markets. Nothing closes doors on future opportunities faster than a disgruntled current customer. Case in point: I’m a hostile captive to my telco. No other telco covers my area – so it’s either their way or no information superhighway. But captivity doesn’t encourage me – it frustrates me, and when added to negative experiences, makes me ready to share my tales with anyone and everyone.\\n\\nLikewise, small businesses need to beware the hostile captives in their business. Is there a customer who’s contractually wedded to you but bitterly unhappy with the service you provide? Beware their rage – it can and will go viral to potential customers in the blink of an eye.\\n\\nCherish the value of trust to your customers. Promises kept will define you and your brand long after your competitors have broken theirs.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24858,28061,1,'Are customers giving up on your website?','2021-07-23 06:19:17','2021-07-23 06:19:17','5a94954b-9c5a-4e9d-92f3-05d7df4734a5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gahB36q3Yd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"We’ve all been to websites where trying to make a simple purchase can end in frustration with an impossible-to-navigate website, or, worse for the organisation, to us turning to a competitor. Good web design translates to successful conversions, and all of that is dependent on the user experience.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"A great new infographic has found that we’ll give a website a minute to display what we’re looking for before we give up. Some types of sites are better than others in delivering what we’re after – especially hotel booking sites.\\n\\nThe two biggest complaints about web sites, according to the research, include that there is ‘too much going on’ and also ‘not enough information’, which we can take to mean that many sites drone on and on… but don’t really say much.\\n\\nUsers also complain – across all age groups and online skills – that text is too small and that navigation is difficult on the sites they give up on. Thirty-five per cent of users fail to complete simple tasks on the average website.\\n\\nLet’s improve those stats, shall we? Here’s a plan.\\n\\n##### **1. Design from the user’s perspective, not your own**\\n\\nWe know your company is the greatest thing since Google and you can’t wait to tell everyone all about where it began, who works there and the details of your offering. But the truth is that a user just wants to get to the point, and their interests should override yours. Usability is key. Show them what they’re looking for, and don’t make them search for it. That doesn’t mean sacrificing look and feel for too much simplicity, it just means focusing the layout and design on the search.\\n\\n##### **2. Create a navigation path**\\n\\nIf the information on your website is simple and structured, you can guide visitors on the path you’d like them to take. Use tabs and sub-pages for different categories, and make it logical.\\n\\n##### **3. Content is king**\\n\\nContent is the most important element of your site, really – and it needs to fit the logical and structured navigation. You’ll want to include keywords, page titles, meta tags, and headings for search engine optimisation. As we’ve previously discussed in our Writing for (readable) web article, there are some hallmarks we use when writing web copy for our clients:\\n\\n- short, effective sentences (say the same information with less)\\n- sub-headings and headings containing keywords\\n- everyday words the average reader can easily understand (plain English)\\n- informal voice\\n- common language conventions\\n- direct language\\n- active tense\\n- consistent, logical structuring of information.\\n\\n##### **4. Speed it up and make it simple**\\n\\nLet’s face it, we’re a busy bunch, and a reminder of the old days of dial-up – waiting for your site to load – is going to test the patience of even the most loyal visitor. In fact, many visitors will start to abandon a website after just a few seconds of loading time. Most of that time is the result of design decisions, so simplify some of the fancy effects.\\n\\nWe love web design and working with you on the best and most creative way to present your business. Starting with a structure that appeals to your audience, then adding in some clever design and copy, ensures that your site will be a success. Talk to us about it today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24859,28062,1,'Truth without fear','2021-07-23 06:19:17','2021-07-23 06:19:17','e7036b59-3a7e-46fc-8135-09ec7f785d79',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hJ2BsC4HWQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"I’ve always been a big believer that marketing is at its most powerful when you can encourage potential customers to ask an audaciously big question, and know that your offering can answer it indisputably and confidently.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Truth-telling doesn’t have to be controversial. Done well, it simply gives you an edge the others can’t match.\\n\\nSpecifically, truth-telling campaigns can be about demystifying doubts or falsehoods in the marketplace by challenging customers to ask you the tough questions, knowing you’ve nothing to hide and every positive answer can be a true one.\\n\\nNow, I don’t know if truth necessarily applies here all the time… but I do love the strategy behind McDonalds’ approach to all the urban myths (truths?) surrounding the content and manufacturing process of their food, and this approach, manifest in this nifty and functional digital solution http://yourquestions.mcdonalds.com.au, captured my interest.\\n\\nA powerful aspect of this approach is permissioning the target group to cut to the chase and bluntly ask anything. No matter how ugly the question, the Maccas guys maintain a friendly and elegant response, and manage to turn even the roughest questions into positive answers. This way, the questioner is the one who looks bad to the rest of the viewing audience, and the credibility of the answer is reinforced. Do we believe them? Is it the whole truth?\\n\\nOne of our clients markets products in a particularly crowded retail sector. Recently, after hearing a competitor was routinely bagging them, they decided to attack the rumours head-on by attaching to their quotes a clever but honest response. We’re helping them get their strategy to market this week, and believe they’ll reap rewards for their honesty.\\n\\n#### **What erroneous facts about your business lurk in your marketplace?**\\n\\nHave you researched your marketplace, either formally or informally, to know? Even if these myths aren’t widespread, addressing the issue in a positive way can provoke interest in your brand, create discussion, and increase the potential for better relationships and new work.\\n\\n##### **The truth is – or should be – out there.**\\n\\nTruth-telling campaigns can be some of the most rewarding to work on.\\n\\nFrom a tagline that challenges the competition to a wholesale campaign addressing porkies, the benefits to your brand can be great if you get the right help to research, strategise and execute it well.\\n\\n[Talk to us](/contact) – we’d love to help.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24860,28063,1,'B2B is dead','2021-07-23 06:19:17','2021-07-23 06:19:17','262a634e-0f22-46d9-9b17-4e5991bcab85',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-luIsqIjBj1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"As deaths go, it was a quiet one. Few people knew of its demise.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But there it lay still: the artificial divide between B2B and B2C marketing, gone forever.\\n\\nWhy bother lamenting the dead? Dare I say, it’s good riddance to a dodgy invention.\\n\\nThe idea that marketing business-to-business took entirely different skills and strategies to talking to consumers has its roots back in the early Noughties. The notion, which most marketers sadly still hold, was that because the volume of B2B transactions is so much higher than B2C – if you count every transaction required along a manufacturing supply chain, for example – then B2B branding requirements were stronger, too.\\n\\nConversely, the B2C belief held that the consumers of the world needed entirely different marketing strategies to convince them to open their wallets.\\n\\nTrue, where they differ most is in the justification of purchases. In B2C land, I need to convince myself why I should buy yet another pair of red shoes. (It’s a short discussion.) In B2B, I might be lobbying the board to invest in an expensive new CRM system.\\n\\nBut the truth is both groups share more similarities than differences.\\n\\nYour customers – be they businesses, consumers or both – have similar emotional and logical requirements that must be met. The relationship lifecycle between a purchaser and a brand exists with businesses and consumers alike. Both groups also frequent the same social media spheres, are Google-happy and web-savvy, and require strong brand confidence in order to purchase.\\n\\nThe illusion that you’re selling to a company in B2B should be seen for what it is. In retail or in business marketing, you’re selling to individuals. And each wants to feel that you get them.\\n\\n##### **Long live H2H.**\\n\\nWhich is where yet another acronym is starting to make a play: H2H, or human-to-human marketing.\\n\\nIt espouses the belief that we all, business and retail customers alike, are looking for connection, inclusion and to be understood. If you take that as your starting point – and not your burning need to produce another brochure – then the marketing toolbox available to your business automatically grows.\\n\\nIt means the vast strategies already out there like relationship marketing and continuous touchpoints become as relevant to a retail customer as to the business that buys your widgets. And the traditional B2C tools like social media become far more relevant business-to-business because they help build connections better than a sterile product flyer.\\n\\n##### **Let’s make H2H practical.**\\n\\n**1. Open your horizons**\\n\\nSwitching your mindset to focusing on the individual, human needs of your market means you can open your marketing to all sorts of potential tools. Just because you run a hair salon doesn’t mean you can’t start sending out a monthly email newsletter – if your customers are the kind of people that like to know more about you. And just because you’re an accountant doesn’t mean you can’t lead an industry group on LinkedIn or advertise on Facebook – if that’s where you’ll find the types of sales you want. Think about your customers, and let their needs lead you.\\n\\n**2. Make your customers feel**\\n\\nSales overwhelmingly come from relationships in my business, so meeting my clients’ emotional needs is a no-brainer. If my clients are happy, they’ll stay.\\n\\nBut even if your sales rely heavily on good old-fashioned foot traffic, it’s relationships that will lure them and keep them. So, in every tool you use to get to market, make sure you get the emotional kicker in. Empathise and prove you understand their needs.\\n\\n**3. Ask your employees what they think**\\n\\nIt’s one thing to make marketing decisions from an ivory tower. Chances are it’s your staff who really know how your clients think, or how your customers behave. So get their ideas and integrate it into your marketing. Let them drive your innovation.\\n\\n**4. Finally, listen to your customers**\\n\\nThere is marketing gold in every intentional conversation you have with a customer. Ask the ‘why’ that follows the tough questions: Do you feel safe with my business? Do you like dealing with us? Would you refer us to your friends? The answers will revolutionise how you think about marketing to your customers.\\n\\n---\\n\\n*Written for the February 2014 issue of Inform, the monthly magazine of the Chamber of Commerce and Industry in Queensland.*\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24861,28064,1,'The 6 steps of content creation','2021-07-23 06:19:18','2021-07-23 06:19:18','6d42a9e2-c24b-4c64-bc53-bd9f328c1a0b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-92RCseTSp0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"You know what your business is about. You’ve nailed down your story. You’ve worked out who you want to talk to.\\n\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Now you need to add some real value.\\n\\nTime poor organisations need their content to work across different channels online – including websites, e-newsletters, blogs and across social media. One way to add value to your existing, more sales-focused, content is through content curation. Content creation means finding useful content online, curating it for your audience and re-telling it in your voice and with your advice.\\n\\n##### **Here’s how to optimise, write and curate content for your target audience.**\\n\\n###### **Defining your goals**\\n\\nEvery good plan starts with defining what it’s trying to achieve. How do you want your content to define your business? What are you offering your target market? Do you want to be a thought leader in your particular area?\\n\\nContent curation is about meeting your customers where they are and offering them something they’re not getting elsewhere. It’s about finding, gathering and sharing information of value with them; positioning your business and brand as an authority both with original content – your sales offering and business learnings – and information you’ve found and shared online. Participating in conversations that are happening about your field leads to more engagement with your target market, the ultimate goal being to give your brand a voice of value that will see your audience come back again and again for your offering.\\n\\n###### **Getting started**\\n\\nIt’s important to remember that well-executed content curation isn’t about regurgitating content that was already published. Instead, it’s your business’s personal re-telling of a story. As Susan Gunelius wrote for Forbes, the human element of content curation is what makes curated content compelling.\\n\\nTherefore, when offering your audience valuable content, remember to tell your story. What are you saying that’s different? What do you know that others might not? Involve your whole team – not just marketing and sales – and that story will evolve to give your business a truly useful and unique voice.\\n\\n###### **Finding content**\\n\\nHere’s where you get amongst it!\\n\\nWant to know where your target market is looking for information online? Go exploring! Ask them! Discover for yourself where the good stories are being shared. Find out what topics matter to your goals and audience, and go after them.\\n\\nIntegrating content curation into your broader marketing strategy is the way to go here – it legitimises the exercise and gets your team thinking about the value of your brand and how they can add to it. The best place to start is probably your social media accounts. Valuable content is being shared every day on platforms like Facebook, Twitter and LinkedIn. There are also Google alerts and news aggregate sites that can be set up with your special business needs in mind.\\n\\n###### **Be authentic to find your voice**\\n\\nThere is nothing like the instant world of social media to add value and timeliness to your content. Social media has changed the term ‘sharing’ forever, and the opportunities for your brand are endless. It’s important to add your own value to social content – as Mark Lerner says, if you just “retweet,” or share an article without including your own voice in the post, you’ll fail to distinguish yourself from everyone else who shared that content.\\n\\nHow do you find your voice? Authentically, of course! Offer your opinion and add your advice in areas you are confident about. Try to be friendly and informative, and adopt an approachable tone. Not so confident? Ask questions! Get your community talking and they’ll come back to you.\\n\\n###### **Context and thought leadership**\\n\\nGood content curation provides your audience with context and convenience – that means filtering and explaining what you find online, and rewording it in your voice so it’s useful to them. You don’t always need to be selling, but you do always need to be mindful of your brand and of offering real value. Knowing who your market is and writing in your ‘voice’ allows you to, as J-P De Clerck says, inform, educate, entertain and engage target audiences.\\n\\n###### **Where to share**\\n\\nThere are many ways to share curated content, but the best way is in a mix of your existing ‘sales’ content. E-newletters and blogs offer an opportunity to share curated and original content, and social media is the most instant way to add your voice to a new idea, and also probably the first place your audience will find you. They’ll also find your website, so don’t forget about the curated content opportunities there. Always remember that you should be providing useful information, not just repeating content or working on the hard sell.\\n\\nContent curation is convenient, but it’s also an important opportunity to add value, develop a business voice and grow an online community. What do you think about content curation? Has it worked for you? Got any tips? Let us know.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24862,28065,1,'Measure your marketing with meaning','2021-07-23 06:19:18','2021-07-23 06:19:18','b5c5d669-feb7-4506-9ad4-43fbcf4d8b67',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SFr1a8qndz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"It’s the age-old struggle for marketers – measuring the return on investment (ROI) of your activities and campaigns. The struggle comes in part because it’s difficult to relate concepts like brand awareness directly to sales. But that doesn’t mean there aren’t ways to monitor and measure your marketing and prove its worth. After all, if you don’t measure, how do you know what’s working?\\n\\n##### **Steps for meaningful data**\\n\\n1. define your metrics and develop a plan\\n2. collect the data\\n3. develop reporting guidelines\\n4. analyse and change as needed\\n5. Collecting and analysing meaningful data is about more than finding tools and interpreting charts. It’s about valuing the data and understanding how it can help justify and grow your hard work and campaigns.\\n\\nThere are several tools that will help you measure your marketing data, and Google analytics is probably the most helpful – it’s also free. Bonus!\\n\\n##### **What we look for**\\n\\nWhen measuring our campaigns for clients, we look at engagement and growth.\\n\\n##### **Engagement**\\n\\nStarting with content performance, it’s helpful to measure social shares on Twitter, Facebook and LinkedIn (shares equal love!), and then check your blog and website for bounce rates and visit time. Facebook and Twitter have built-in analytics tools that will help you here. On your website and blog, use Google analytics. High bounce rates and short visits usually mean your audience isn’t finding what they thought they would, or they’re not as engaged as they should be with your content. Pages per visit is another interesting content measure – if visitors are clicking around your site, they’re liking what they find and you’re getting more exposure. Nice work!\\n\\nA specific example of measuring engagement in action can be found in our My Smoking quit smoking campaign. It was targeted at men and women aged 18–29 across TV, radio, print and digital. Data showed that:\\n\\n- 8 in 10 young smokers supported the campaign\\n- 76% contemplated quitting because of the campaign\\n- 50% reported cutting down on cigarettes because of the campaign\\n- 47% tried quitting\\n\\nImagine being able to prove your campaign success to your team and managers? We do it from the start with our work. Do you?\\n\\n##### **Growth**\\n\\nFor growth in marketing, it all starts with click-throughs on your call to action. If your analytics tell you they’re low, then you need to change up your content. Look at the words you’re using, how your e-marketing looks, your subject line on EDMs and even the specific call to action.\\n\\nOther growth indicators will see you linking up with your sales team to measure metrics like how many leads your content is bringing in and turning into customers, cost per lead, average sales cycle duration and revenue per user. Always remember that increasing customer retention is the aim for the sales cycle, too. These things are tougher to measure, but good lead generation processes are a big help, and we find having campaign measurement expectations in place right from the start will make things much easier.\\n\\nA terrific example of analysing the performance and growth of our work was for our client the Chamber of Commerce & Industry Queensland (CCIQ). A review of their key communication channels saw us creating a monthly e-zine to better engage members. As a result of our work, we measured that CCIQ got 3,350 new subscribers in 5 months, grew website traffic by 161% to 76,277 visitors over six months, had 4,171 qualified leads generated over six months and a 110% increase in revenue in a single month. Impressive figures that not only lead to successful relationships with clients, but to high-achieving campaigns and ongoing work. We’re proving what we do is working.\\n\\n[Have a chat with us today](/contact) about your marketing and we’ll have you measured up in no time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24863,28066,1,'Making the most of video','2021-07-23 06:19:18','2021-07-23 06:19:18','305bb45b-e1b4-48f0-8fff-8b5eae988dbf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-93421JnaRh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Right now the web is awash with video. Just look at your Facebook or LinkedIn feed and you’ll get an idea of how much video content is being produced and posted every day. And it’s on the rise, with video expected to account for around 82% of all internet traffic by 2020.\\n\\n##### **Quality is king**\\n\\nThe thing is, we don’t have any more time in our days to view all this extra content, so video quality and relevance is going to play an increasingly important role in what gets watched and what doesn’t. While there are lots of cheap production services available, if you want your video to be successful, it’s worth looking beyond cost alone.\\n\\nThe key purpose of any video communication is to tell a clear and compelling story – something that captures and maintains your audience’s interest. It also needs to be well strategised, use its medium well and, of course, be well crafted.\\n\\n##### **Things to consider**\\n\\nWhen planning your next video, keep these things in mind:\\n\\nIs animation the right approach, or would live action better suit? Budget can be a big factor here because it is often much easier to animate.\\nThink about voiceover versus text on screen. Does the video need to work without sound, on social media or in a noisy display? Will people read enough of the message on screen? Is the voice vital to the communication of the message, through a tone, accent or character?\\nAre you creating a series? If so, can any illustration assets be used again, or can the video be edited for smaller uses such as social media marketing?\\nNWO video examples\\n\\n##### **Here are some recent examples of videos we’ve created, using some of this thinking.**\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F8O5gbyyqy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/141875728\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/186503939\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new3\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/145234065\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24864,28067,1,'Looking beyond the banner','2021-07-23 06:19:18','2021-07-23 06:19:18','00b0415d-715b-4c55-8bba-3a5b512191c5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PozxXC4SkM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Banner ads have come a long way over the years. And the fairly recent introduction of HTML5 means they can now be transformed into beautiful little packages of story that work well amidst busy news pages, despite not having audio.\\n\\n##### **Striking the right balance**\\n\\nPre-rolls (which play before feature videos) and social media ads offer other options if you have the budget for video, when a television commercial doesn’t exist, and conventional video is too expensive.\\n\\nOne approach that provides the ideal balance is using video like a ‘banner ad on steroids’. By creating a simple (though still sophisticated) slideshow with a managed level of animation, you can add in story-boosting music and voiceover while keeping costs down.\\n\\n##### **NWO video examples**\\n\\nHere are some recent examples of videos we’ve created, using some of this thinking.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F4a71SFzVH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/176686850\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/170735464\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new3\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/177308827\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24865,28068,1,'Outsourcing creative services','2021-07-23 06:19:18','2021-07-23 06:19:18','56778457-82d9-4e11-9a98-1a62584aa937',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-N45x3IS2PH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"When it comes to finding an external supplier, we understand the challenges many government comms (and non-comms) people face.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"You need someone who has a good idea of how the government arena works and the demands and limitations you face but still pushes the boundaries to achieve something worth paying external fees for. But where do you start?\\n\\n##### **Take a look at the list**\\n\\nA great place to begin your search for an external creative services supplier is the whole-of-government panel. Here you’ll find a list of large and small advertising and communications agencies that are all pre-qualified and experienced working in your space.\\n\\nWhen perusing the names on the whole-of-government panel, consider the following:\\n\\n- Smaller agencies can do big campaign and project work too. Many have been competing with the top end of town for years and can often ensure you get very senior, experienced people working directly with you on your job.\\n- Find an agency that can fill in the gaps you have. If you’re not used to outsourcing design or campaigns, the right agency can answer every question you have and work with you to develop a brief that will meet all your needs (even the ones you’re not sure of yet!).\\n- Help the agency and yourself by being clear on what’s required and what happens if or when you change your mind. Author’s corrections can amass unexpectedly and everyone needs to be clear on when they kick in and why they are happening.\\n\\nNWO is on the whole-of-government panel, so be sure to drop us a line to see how we can help with your next project or campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24866,28069,1,'Overhauling your website','2021-07-23 06:19:19','2021-07-23 06:19:19','03e5553b-c95f-4550-8b3e-f0f306fbd697',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-zjgeVEYzo2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"There comes a time in every website’s life where things need to change. Usually, in a big way.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But it needn’t be all doom and gloom. Yes, it can seem overwhelming and yes, it can take quite some time to implement. But remember to keep your eyes on the prize; don’t lose sight of why you’re doing the update in the first place.\\n\\n##### **So why should you do it?**\\n\\nFirstly, there’s the appearance. If your site looks dated, your customers might have the same perception of your brand. Also, your site should be mobile friendly – search engines are now starting to penalise sites that aren’t optimised for mobile.\\n\\nIt should also be more than an ‘online presence’ – it should add value to your business. So if it’s currently not drawing in customers, it’s worth updating. Analytics tools and SEO are also crucial additions for any efficiently run site, so definitely keep them in mind.\\n\\nThen there’s the engagement factor. Does your content and imagery really grab your audience and make them want to stay on your site? Also, you should be capturing information from your customers whenever possible, via tools such as contact forms, surveys and mailing lists.\\n\\n##### **How do you go about it?**\\n\\nHere are a few simple steps that might help.\\n\\n1. **Undertake an audit of your current site** – note what you think is working and what isn’t.\\n2. **Do a bit of competitor analysis** – see what other brands in your industry are doing online.\\n3. **Start mapping out the pages and sections of your ideal new site** – develop wireframes if you can.\\n4. **Work on content and imagery** – essentially filling in the blanks in your wireframe.\\n5. **Do some testing** – either online or face-to-face tests and focus groups can provide great feedback.\\n6. **Make relevant changes** – listen to what people have said and update your site accordingly.\\n7. **Send it live!** Then sit back and marvel at your new masterpiece.\\n\\nOf course, here at NWO we do offer a specialised website development service – contact us to find out more.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24867,28070,1,'Building better brands','2021-07-23 06:19:19','2021-07-23 06:19:19','ac571f9c-9718-4055-962e-8b9cdf979a4e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lRz71ReQLs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"So, you’re thinking of rebranding? Or branding something new from scratch? Good for you – there’s nothing we love more than brands that go out of their way to portray themselves in an interesting and unique light.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But before you start scribbling down new logo ideas, there are a number of things that we think are worth considering. Firstly, and yes we know there’s a lot of info out there on this, but it’s important to remind yourself what exactly a ‘brand’ is.\\n\\n##### **Brand basics**\\n\\nThis is also important when speaking to an agency, but clarifying exactly what you’re after – either a new brand identity or a new brand – can be crucial in your planning, not to mention costs and timings. A ‘brand identity’ typically includes a logo and other graphical devices, along with fonts and colours. But this alone doesn’t make a brand.\\n\\nA ‘brand’ includes all of the above plus so many other elements, which help your customers form an opinion of your organisation. Things such as images, feelings, products, words, sounds, smells, events, people and places, can all make up a brand too.\\n\\n##### **Beginning the brand journey**\\n\\nWith the above definitions in mind, once you’ve clarified what you want to do with your brand, it’s time to think about where to start. Try these steps on for size:\\n\\n1. **Conduct a brand audit** – if you’ve currently got a brand, look at all the elements and see what’s working, and what isn’t. External consultants who aren’t so close to your brand can often give a fresh, unbiased perspective.\\n2. **Do your research** – look at competitors to see what their brands are like, and what opportunities might be available to you. Also, look for inspiration outside your category or industry.\\n3. **Conduct a brand workshop** – this will help you dig up useful insights, and to develop a plan for where you want your brand to go and what you want it to portray.\\n\\nAfter completing these first few steps, you should have plenty of information to brief in your internal comms department or external agency on the job ahead of them. Of course, here at NWO we specialise in branding projects, so get in touch with us today to see how we can get involved.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24868,28071,1,'Getting the most from motion','2021-07-23 06:19:19','2021-07-23 06:19:19','45b3eb1a-afbd-47df-b134-ffd77c9beadf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UzdiNWbjFp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Video can be a great way to present information in an engaging format, with very little input required from the viewer. No matter what topic you’re covering, there’s always a way to bring it to life in video.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"##### **More bang for your buck**\\n\\nThe thing is, when most people think about creating a video, they think of it being extremely expensive. While that may have been the case years ago, nowadays it can actually be a very cost-effective exercise – particularly thanks to animation.\\n\\nWhen time is of the essence, animated videos can often be created fairly quickly and give you great bang for your buck. They can really grab people’s attention too, as there’s so much you can do with them creatively – they’re only limited by your imagination!\\n\\n##### **Got some explaining to do?**\\n\\nOne type of video becoming more and more popular with organisations is the explainer video. Generally about 90 seconds in length, explainer videos are often animated and used to communicate a fairly complex topic in an easy-to-understand way.\\n\\nCheck out the explainer video on the decisioning.co site. As well as the site itself, we created the neat little video – it just shows how a well-written and executed explainer can communicate clearly and succinctly, all without a big budget.\\n\\n##### **Support and simplify**\\n\\nAnother way in which animated videos are being used is to provide guidance to customers, helping them navigate often tricky subject matter. A great example of this is the ‘Better electricity deals for small business’ suite of videos we created for the Department of Energy and Water Supply.\\n\\nThese were used on social media and really communicated the essence of the problem at hand, cutting information down into sound bites that could be easily understood by the audience. The use of fun little characters and infographics were great in getting our message across.\\n\\nTo learn more about our thoughts on video, [check out this blog article](/resources/making-the-most-of-video).\\n\\nTo chat about an upcoming video project, get in touch – we’d love to be involved in the process.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24869,28072,1,'What is marketing automation?','2021-07-23 06:19:19','2021-07-23 06:19:19','696d3b58-ef7c-4ca6-9aea-598ad8e674d5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4WoAgyFTvi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Marketing what? The word automation can sound like a coder’s dream and everyone else’s nightmare.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But the truth is that if your business has prospects and customers and communicates with them in any way, then you already have most of the pieces needed to play with marketing automation.\\n\\n**Matching pieces**\\n\\nYou see, marketing automation is actually both a business owner’s dream and a marketer’s dream. Why? Because it’s software that helps sales and marketing to come together in order to grow revenue. Most marketing automation software includes the following components:\\n\\n**CRM (customer relationship management)**\\n\\nThe software will include a built-in CRM for storing your prospects and customers’ data and/or it will integrate with other CRMs such as Salesforce, Pipedrive, Nimble or Zoho.\\n\\n**Campaigns**\\n\\nThese can include any type of lead-gen, lead-nurturing and sales-closing campaigns—not just email but as broad as social, online, trade shows, webinars, Google Adwords, blogs and so on. Basically, it’s anywhere where the call to action leads to someone filling out a form online or liking a page. Once again, marketing automation software will include some or all of these tools built-in and it will play well with other software you’re already using.\\n\\n**Analytics and reports**\\n\\nIn the same way that email marketing software such as Mailchimp and Campaign Monitor provides reports on open rates, clicks and unsubscribes, marketing automation software takes it a step further. You can run reports on all of your online and offline campaigns and track engagement with your website. Then you can combine these statistics with your sales data to measure ROI from the generation of a lead right through to the close of sale.\\n\\n**The kicker**\\n\\nAll of these things exist outside of marketing automation. What makes marketing automation so powerful is how it brings them all together. The software uses triggers and workflows to automate time-consuming sales and marketing processes such as scoring, segmenting leads based on fit and engagement, and matching content to leads’ interests and pain points.\\n\\nThe result is highly personalised marketing that uses tailored and dynamic content to nurture every lead as if it was your most important one—from first touchpoint right through to closing a sale and beyond.\\n\\nAsk us to run a workshop for your team\\nMost marketers we talk to know the need for marketing automation but don’t have time to research the best option for them.\\n\\nRight now, we’re running a limited number of free one-hour workshops to help your team to determine the right fit for your strategy, and the best options available on the market.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24870,28073,1,'Simplifying the complex: Fifteen years of marketing schools','2021-07-23 06:19:19','2021-07-23 06:19:19','e60bda19-1c35-4074-83e9-1ef0550dbd08',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WAYo0QEnCs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"After 20 years of marketing—including 15 years working with schools across Queensland and New South Wales—I am steadfast in my belief that there is no marketing challenge as complex as that faced by schools.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"In what other industry would you find thousands of individual stakeholders—students, parents, teachers, alumni and more—all with do-or-die expectations?\\n\\nOr an environment that can, quite honestly, change the trajectory of children’s lives?\\n\\nThen you have the two very distinct markets—internal and external—often with very different needs that need to be met with minimal budgets.\\n\\nThe experience of school changed little for nearly a century but, in the past 20 years, it has evolved in such leaps and bounds that today’s parents struggle to recognise it.\\n\\nPhilosophically, there are few industries I can think of that have such a strong evidence base to guide practice—here I’m thinking of teaching and learning—yet the required outcome is often diametrically opposed to it. Looking forward to the arrival of ATAR, anyone?\\n\\nIt’s little wonder that I find the business of marketing schools endlessly fascinating.\\n\\nOnly this morning I was in another principal’s office, talking through these very complexities. In our conversation, we touched on what I’ve discovered over the years are three bedrock principles every school needs as their marketing foundation. They’re my way of transforming a little of the complex into the simple.\\n\\n1. Work out what makes you unique\\nMarketing and enrolments teams live and die by their numbers. It is endlessly tempting, then, to try to go wide in your appeal so that you create the biggest possible net. In practice, though, it means no-one knows what you stand for. The better alternative is to embrace what makes you unique and then market that hard. You’ll end up attracting families that are the right fit for you and work hard as your ambassadors. Internally, there’ll be great cohesion, too, because you’ll attract and retain great educators who get what you’re about and support it in their words and actions.\\n\\n2. Don’t be afraid to like you’re unique\\nIf you’re bored one day in your office, try this game. Get ads from three schools, and then block out their hats and uniforms. Can you still tell them apart? It astounds me that we continue to use sterile, look-alike images—hey, here’s a girl in a lab coat with a test tube as proof that we promote girls in STEM!—that don’t reflect the day-to-day experience of what it is to learn at your school. Celebrate your uniqueness—and set yourself apart from your competitors—by choosing unique visual styles and photography.\\n\\n3. Now stay unique\\nOver time, teachers and leaders of schools get to know each other pretty well. Principals, in particular, know other schools like bookies know racehorses. The net result in marketing is that your great idea quickly becomes next year’s norm… and after a few years, what was edgy is simply outdated. Wise schools invest in a middle ground here. They start off strong and then review and refresh their brand every year or two. That way, subtle tweaks don’t destabilise your internal audience but you stay fresh and relevant externally.\\n\\n---\\n\\n**Want to know more?**\\n\\nSuzanne advises schools on sustainable marketing strategy that helps them get the most from their internal resources. To chat, phone 07 3334 8340 or email.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24871,28074,1,'Top 20 tips for SEO','2021-07-23 06:19:20','2021-07-23 06:19:20','a6a5c03b-0e4f-4589-8de0-e8f13a7a98c6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-P9HDvjQfFI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"GOOD SEO STARTS WITH A BIT OF DIY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Sure, there are loads of experts and agencies out there that specialise in the field, and many of them do a great job.\\n\\nBut there’s actually plenty you can do yourself before you even need to look for an external supplier to help with your SEO.\\n\\nGet your SEO checklist\\n\\nTo get you started on your next SEO DIY project, we’ve put together a top 20 checklist.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":\"1\",\"fields\":{\"gridItems\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\",\"new6\",\"new7\",\"new8\",\"new9\",\"new10\",\"new11\",\"new12\",\"new13\",\"new14\",\"new15\",\"new16\",\"new17\",\"new18\",\"new19\",\"new20\"],\"blocks\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"1. Do your research\",\"text\":\"Identify key search terms, words and phrases, and check out competitors’ sites.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"2. Work out where you are now\",\"text\":\"Work out where you are now—As soon as possible, keep a regular record of where your site currently ranks in search results, using various words, phrases and questions.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"3. Work out where you want to be\",\"text\":\"Define your goals early on so you can measure your progress and adjust your strategy as you go along.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"4. Make your content relevant\",\"text\":\"Search engines provide the most relevant results to a searcher’s query, so write content based on what people might search for.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"5. Improve the quality of your content\",\"text\":\"Publish helpful, useful articles, videos and other types of media that people will want to engage with.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"6. Think about user experience\",\"text\":\"Make sure your site is easy to navigate, with plenty of relevant internal links to keep users on your page for longer.\"}},\"new7\":{\"type\":\"6\",\"fields\":{\"heading\":\"7. Ensure your site is responsive\",\"text\":\"s your website designed to resize for viewing on desktop, tablet and mobile devices? It should be.\"}},\"new8\":{\"type\":\"6\",\"fields\":{\"heading\":\"8. Include plenty of internal links\",\"text\":\"This helps pushes traffic around your site, building higher ‘trust signals’ for Google, and gives your audience more to read.\"}},\"new9\":{\"type\":\"6\",\"fields\":{\"heading\":\"9. Write meta descriptions\",\"text\":\"This short paragraph of text under your page’s URL in search results can really improve the chance of someone clicking on it.\"}},\"new10\":{\"type\":\"6\",\"fields\":{\"heading\":\"10. Include title tags\",\"text\":\"These few key words describing the page and your brand name tell visitors and search engines what your site is about in the most succinct way possible.\"}},\"new11\":{\"type\":\"6\",\"fields\":{\"heading\":\"11. Tag your images\",\"text\":\"Search engines cannot ‘see’ images but they can ‘read’, so it’s important to describe any pictures you upload to your site.\"}},\"new12\":{\"type\":\"6\",\"fields\":{\"heading\":\"12. Create evergreen content\",\"text\":\"More thoughtful and practical advice-based articles can create better results over the long term. Top 20 list, anyone?\"}},\"new13\":{\"type\":\"6\",\"fields\":{\"heading\":\"13. Consider your domain name\",\"text\":\"Having a ‘keyword-rich’ domain name can improve ranking but can also lead to closer scrutiny by search engines.\"}},\"new14\":{\"type\":\"6\",\"fields\":{\"heading\":\"14. Think about headlines\",\"text\":\"Make headlines as snappy, attractive and descriptive as possible, and stay away from clickbait.\"}},\"new15\":{\"type\":\"6\",\"fields\":{\"heading\":\"15. Turn on comments\",\"text\":\"This helps generate a community of engaged users and, whatever their opinion of your content, you’ll know it’s being read.\"}},\"new16\":{\"type\":\"6\",\"fields\":{\"heading\":\"16. Go social\",\"text\":\"By using social media channels as a genuine way to interact with customers, you can help generate interest in your brand and drive traffic to your site.\"}},\"new17\":{\"type\":\"6\",\"fields\":{\"heading\":\"17. Watch your on-site advertising\",\"text\":\"Intrusive ads can destroy the pleasure of viewing your content and also slow your site down (not good for SEO).\"}},\"new18\":{\"type\":\"6\",\"fields\":{\"heading\":\"18. Avoid keyword stuffing\",\"text\":\"Some search engines will actually penalise you for obviously overusing certain keywords on your pages.\"}},\"new19\":{\"type\":\"6\",\"fields\":{\"heading\":\"19. Be aware of duplicated content\",\"text\":\"If two sites publish identical content, search engines will only index one of those pages.\"}},\"new20\":{\"type\":\"6\",\"fields\":{\"heading\":\"20. Don’t hide links and text\",\"text\":\"Doing things like hiding white keyword-stuffed text on a white background or hiding a link in a full stop is likely to be punished by search engines.\"}}}}}},\"new4\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Follow these tips and you’ll be well on your way up the rankings in no time!\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24872,28075,1,'How to really consult your stakeholders','2021-07-23 06:19:20','2021-07-23 06:19:20','308b3a00-fe3a-433b-8c5e-bf9890e999ae',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BpDlpLY30k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Whether they are inside, outside, removed or closely involved—stakeholders have the insight businesses need for long-term growth and sustainability.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"If they are a stakeholder, they have a connection with you.\\n\\nAnd like any other relationship, they need to know their connection, time and opinions are valued.\\n\\nIt often takes an open mind to find what works for you and the stakeholder.\\n\\nFinding this place of mutual benefit can lead to business growth and longevity.\\n\\nWe’ve broken down our approach to nurturing stakeholder relationships for meaningful engagement.\\n\\n#### **Your stakeholder is anyone who can be impacted by your business.**\\n\\nOnce you really understand this, you’ll start to notice the cycle of impact between the stakeholder and your business. And, this is partly why we begin to engage with stakeholders—to understand how different groups are responding, reacting or behaving.\\n\\n#### **But who are they, really?**\\n\\nNow, go deeper to really understand the nuances of your stakeholder groups.\\n\\nYour engagement plan should be detailed enough to allow for different levels of accessibility, and demographic and cultural considerations. The better you nuance, the greater the feeling of respect and care you’ll engender.\\n\\n#### **What do I need to achieve here?**\\n\\nThere are varying degrees of impact across the common types of engagement—inform, consult, involve, collaborate and empower. Every impact is a win for you.\\n\\nBy inviting stakeholders to provide advice and guidance, you are showing interest and genuine regard for their opinions.\\n\\n#### **Let’s talk**\\n\\nA healthy and productive conversation is two-way. We pursue positive and productive conversations with stakeholders because we need to understand stakeholder perspectives, and we need to hear it from them.\\n\\n#### **Bye for now**\\n\\nThe conversation will close, but the relationship isn’t over. Stakeholders have given their time, effort and reflections. It’s your turn to respond with accuracy, timeliness and balance.\\n\\nThe truth is, these conversations take patience, a steadfast commitment to values, sometimes sacrifice, and always an open mind.\\n\\nAt NWO, we care about stakeholder engagement because we regularly witness the impact it has on the health of businesses and organisations.\\n\\nIs it important to you?\\n\\nTalk to us about stakeholder engagement today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24873,28076,1,'The building blocks of branding','2021-07-23 06:19:20','2021-07-23 06:19:20','3fbfe25e-0866-45e1-9fdd-96049b4472dd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UBcW4IgaI5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Through 20 years of branding experience, we’ve come to understand stakeholder engagement is essential for a brand to have cut-through.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We’ve engaged with our clients’ stakeholders for many years and in many ways—ranging from formal, formative market research through to in-depth focus groups, workshops, community forums, brand satisfaction surveys and phone interviews.\\n\\nNo matter the method, what really counts is that we capture how people relate to your brand. That relationship leads to relevance and then the ultimate goal: resonance.\\n\\n#### **Relationship**\\n\\nEvery great brand is built on relationship.\\n\\nWhen you form healthy relationships with stakeholders, you open yourself up to a range of opinions. Generally, feedback gets more constructive as the relationship grows healthier.\\n\\nIf you’re the brand manager, it can feel a bit like tough love at first—but it does get easier.\\n\\n#### **Relevance**\\n\\nSo much more than a logo, brands are heavy with meaning for stakeholders. And so if the environment changes but your brand doesn’t, the meaning is lost.\\n\\nA lot of the stakeholder feedback we hear about brands is that they’re outdated or lack appeal. Without relevance, your stakeholders no longer feel the love.\\n\\nConstantly retune yourself to your stakeholders and you’ll keep fulfilling their needs.\\n\\n#### **Resonance**\\n\\nResonance is where understanding meets impact.\\n\\nA brand rich with resonance is the holy grail of marketing and, true to legend, few reach it.\\n\\nThat’s because resonance means your brand is a perfect fit for your stakeholders’ environment, pain points, wants and emotional connection.\\n\\nResonance engenders attention and respect, and turns want to need.\\n\\nAnd when stakeholders can’t live without your brand? Happy days.\\n\\n#### **The 3Rs start here**\\n\\nWhether you’re looking to name and brand or rename and rebrand, your brand journey starts with understanding your stakeholders.\\n\\nTalk to us about how to take your first steps.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24874,28077,1,'Seven mistakes people make building websites','2021-07-23 06:19:20','2021-07-23 06:19:20','5d1101ad-8a03-4b4b-856a-5cd3c9724d51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-anLTeFZY0U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"The advertising you’ve done, the marketing budget you’ve spent, the countless planning meetings your team has attended—all that time and money you’ve invested has driven a potential customer to your website.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Now is the moment.\\n\\nAfter months—maybe years—of effort, your potential customer will make their decision in seconds.\\n\\nThey may love what they see and continue to be interested. Or they may leave, with their memory of you going up in smoke and your investment with it.\\n\\nThat’s why it’s so important to build an effective website.\\n\\nFraming a website to contain everything you need is challenging. Some websites become too word-heavy, while others lack structure and narrative.\\n\\nGetting your website right from the beginning can save you a lot of pain in the long run.\\n\\nHere\'s our tips to tackling website mistakes.\\n\\n**1. Unacknowledged expectations**\\n\\nWhat do you expect your website to do for you? You want this investment to count, so be informed, decide what you need and be intentional with your allocated budget. There are only two options—either start with careful planning and consultation and spend a realistic budget, or jump in with assumptions … and experience scope-creep, frustration and the need to pour more money in later. Your time and money (and sanity) are too valuable to waste on option two. So, choose wisely.\\n\\nIt’s also important to understand the purpose of your website. A website for a website’s sake helps no-one. Your business is unique so your website should be, too. Make it crystal clear—state who you are, what you do and what you promise your customers. Set yourself up for success by providing your developer with a clear website purpose, an informed plan and a predetermined budget.\\n\\n**2. A guess is no good**\\n\\nAnalytics, metrics or key performance indicators (KPIs)—they’re all clever ways to study the website user journey. What do you need your website to achieve? This will depend on what kind of product or service you offer and the kind of experience you want to create for the user. Lay out your objectives and match them with KPIs.\\n\\nThere are plenty of ways to get insight into your website. Consider bounce rates, session duration or pages per session metrics. Or you could sharpen your content strategy by watching goal conversion rates of passive to active website users. Understanding your metrics and the goals you want to achieve will also help you to understand how your website interacts with its digital ecosystem.\\n\\n**3. It’s not for you**\\n\\nIt might be about you, but the website isn’t for you. Optimising your website starts with learning what your users are responding well to. How are they getting to your website? What kind of content are they reading? When do they read it? How long are they staying?\\n\\nBy understanding your metrics you can shape a truly effective website experience for your customers. It’s all in the detail—from content creation to search engine optimisation (we have some helpful tips [here](http://newwordorder.com.au/top-20-tips-seo/)).\\n\\n**4. Information overload**\\n\\nYour website is where your potential customers will go to check your credibility. Credibility is about trust. One way to build trust is to position yourself and your organisation as experts. However, credibility isn’t just about what you know—it’s about who you are. Include stories and testimonials about you and your organisation to avoid information overload. Then, potential customers will leave your website satisfied that you can be trusted ... and they\'re one step closer to doing business with you.\\n\\n**5. Losing the user**\\n\\nMany people complain about feeling lost on websites. The customer journey should be clear. If the information on your website is simple and structured, you can guide visitors on the path you’d like them to take. Use tabs and sub-pages for different categories, and make it logical. For best results, spend time studying user movements and running trials and tests. Over time your predictions will become more accurate as you get to know your audience.\\n\\n**6. Wasted words**\\n\\nCapture your customers quickly. As we’ve previously discussed in our Writing for (readable) web article, there are some hallmarks we use when writing web copy for our clients. Here are a few of them:\\n\\n- short, effective sentences (say the same information with less)\\n- sub-headings and headings containing keywords\\n- everyday words the average reader can easily understand (plain English)\\n- direct language\\n- consistent, logical structuring of information.\\n\\n**7. Don’t be unfriendly**\\n\\nHow does your website display on mobile devices and tablets? Due to the growth in user visits from non-desktop devices, it’s now safe to say that an unresponsive website—regardless of your industry and demographic—will cost you customers and revenue. When your website isn’t responsive, your customers won’t look for the closest desktop computer ... they’ll look for another website. Instead, make your website as friendly as possible to give your customers the same quality of experience online that they experience offline.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24875,28078,1,'Pretty or powerful? And can you have it all?','2021-07-23 06:19:20','2021-07-23 06:19:20','2a579841-1c7f-400a-88fb-09e723f8a625',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UxDAMYmx0G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Being a commercial creative means someone is hoping, expecting and paying for a result.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But just because something is creative in its execution doesn’t mean it’s going to be effective in achieving its goal.\\n\\nHere are five pitfalls to avoid when procuring creative services:\\n\\n* Hiring a single creative, like a designer, to be a whole creative team. Your supplier will end up working in one strength and many weaknesses.\\n* Procuring from a supplier who can use design software but isn’t a designer. The work will miss the mark despite looking okay.\\n* Working with a graphic designer who isn’t skilled in the type of design you need (like brand design). You’ll get a pretty logo lacking in brand story and meaning.\\n* Jumping straight into design without a strategy. You’ll receive design work that’s lovely, even beautiful… but not strategic.\\n* Failing to define what success looks like. Your supplier’s work will lack purpose. Instead, make sure you have a clear goal that measures the biggest outcome of all: return on investment.\\n\\nSo yes, creative work can be both pretty and powerful. And you can have it all… if you invest in a team of strategically focused creatives.\\n\\nCreative agencies cost more but are teams for a reason. We\'re much more powerful together than on our own.\\n\\nJust like a hand of aces vs a single 3.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24876,28079,1,'Why you need a six-month comms strategy for your website','2021-07-23 06:19:21','2021-07-23 06:19:21','cdbb181b-7e3f-47ed-8591-c99a4b875a9d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AgEbVkr4de\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"YOU KNOW THE FEELING: AN AD PROMISE DRAWS YOU IN, YOU CLICK THROUGH TO THE WEBSITE AND YOU’RE IMPRESSED BECAUSE IT LOOKS SUPER SLICK.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Then you actually read it. And now you’re disappointed because it doesn’t actually say anything other than the surface detail of a business.\\n\\n#### These websites are so common they’ve earned the term ‘brochure’ website. They look great, but that’s it.\\n\\nWe see it all the time and think it’s such a shame. Why? Because a website can be so. much. more.\\n\\nHow can your website escape the dreaded brochure effect? In short, don’t set and forget.\\n\\nGood websites move, breathe and live—just like your business does.\\n\\nEveryone knows it’s good practice to regularly update your website messaging and functionality. But you need to actually get around to doing it and—more importantly—have a reason for making a change.\\n\\n#### So, what’s your strategy?\\n\\nA website communication and engagement strategy has so many benefits. But the biggest one by far is SEO.\\n\\nBy biggest we don’t mean the most confusing or time-consuming. It simply boils down to content. Fresh content tells Google: This is who I am! This is what I do! See me! Hear me!\\n\\nGoogle’s algorithms are super clever because they serve up the sort of content people want. But it means Google can only give people the content they want if it knows about your business and what you’re offering.\\n\\nOf course, there are some technical aspects to consider. But your best SEO strategy is a long-term communications plan.\\n\\nDo you know what the next six months for your website content looks like? What can you offer your customers other than opening hours and where you’re located?\\n\\nBy developing a digital communications strategy, your website gets updated regularly, which helps Google share your message with the right people at the right time.\\n\\nPotential customers will find you, engage with you and trust you enough to get in touch.\\n\\nYou have so many options for interesting content. It could be a thought-leadership piece, event, media release, whitepaper, testimonial—the list can go on.\\n\\nWe have a huge amount of communications tools and angles we can develop to bolster your web presence.\\n\\nGoogle also loves a fast, responsive website. Optimising your website by using the latest version of your content management system will ensure your site is running smoothly and as fast as it can.\\n\\nLikewise, this will make your site more secure and help prevent security breaches (particularly important if you use WordPress).\\n\\nWe also offer long-term website maintenance plans. These include detailed server monitoring and ensuring your CMS and plugins are up-to-date.\\n\\nFor more critical sites, we offer zero downtime code-update deployments.\\n\\nTalk to us about a long-term strategy for your website so it can be more than just another ‘brochure site’.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24877,28080,1,'Break away from the same-same with custom illustration','2021-07-23 06:19:21','2021-07-23 06:19:21','6282e2a0-8c22-413f-a43f-804931d2364a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tiYExhhMPf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"There’s nothing more special than something made just for you.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"You hold it loudly and proudly for all to see—and they notice because there’s nothing else in the world quite like it. And this makes you treasure it that little bit more.\\n\\nThe dream of an illustrator is to have time, budget and ability to craft a bespoke masterpiece for every job that comes across the desk.\\n\\nThat dream doesn’t turn to reality very often. But that doesn’t mean your brand has to revert to using the same old stock illustrations everyone else uses either.\\n\\nThere are so many ways to get over those hurdles when a project doesn’t have time or budget to allow for a custom piece.\\n\\nA lot of the time, stock illustration can be tweaked to give it the edge it needs to stand out from the crowd.\\n\\nChange up the colours, mix up the style and jazz up the faces.\\n\\nSometimes stock forms the base for us to build something fresh. And other times there might already be the perfect stock illustration that tells the right story without much tweaking at all.\\n\\nWhatever the constraints—budget, time, brief—there’s always a way break free. It just takes some thinking outside of the box. If you’re drowning in a sea of same-same, come chat to us and we’ll get you out of there in no time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24879,28082,1,'Break away from the same-same with custom illustration','2021-07-23 06:26:23','2021-07-23 06:26:23','6958a7d3-bffc-4731-98b1-4ecff3483a01',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tiYExhhMPf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"There’s nothing more special than something made just for you.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"You hold it loudly and proudly for all to see—and they notice because there’s nothing else in the world quite like it. And this makes you treasure it that little bit more.\\n\\nThe dream of an illustrator is to have time, budget and ability to craft a bespoke masterpiece for every job that comes across the desk.\\n\\nThat dream doesn’t turn to reality very often. But that doesn’t mean your brand has to revert to using the same old stock illustrations everyone else uses either.\\n\\nThere are so many ways to get over those hurdles when a project doesn’t have time or budget to allow for a custom piece.\\n\\nA lot of the time, stock illustration can be tweaked to give it the edge it needs to stand out from the crowd.\\n\\nChange up the colours, mix up the style and jazz up the faces.\\n\\nSometimes stock forms the base for us to build something fresh. And other times there might already be the perfect stock illustration that tells the right story without much tweaking at all.\\n\\nWhatever the constraints—budget, time, brief—there’s always a way break free. It just takes some thinking outside of the box. \",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-amC4hnZM56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"If you’re drowning in a sea of same-same, come chat to us and [we’ll get you out of there in no time](/contact).\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24881,28084,1,'Break away from the same-same with custom illustration','2021-07-23 06:27:18','2021-07-23 06:27:18','b2bb88f7-1635-4c06-b7b2-02171c2305f1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tiYExhhMPf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"There’s nothing more special than something made just for you.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"You hold it loudly and proudly for all to see—and they notice because there’s nothing else in the world quite like it. And this makes you treasure it that little bit more.\\n\\nThe dream of an illustrator is to have time, budget and ability to craft a bespoke masterpiece for every job that comes across the desk.\\n\\nThat dream doesn’t turn to reality very often. But that doesn’t mean your brand has to revert to using the same old stock illustrations everyone else uses either.\\n\\nThere are so many ways to get over those hurdles when a project doesn’t have time or budget to allow for a custom piece.\\n\\nA lot of the time, stock illustration can be tweaked to give it the edge it needs to stand out from the crowd.\\n\\nChange up the colours, mix up the style and jazz up the faces.\\n\\nSometimes stock forms the base for us to build something fresh. And other times there might already be the perfect stock illustration that tells the right story without much tweaking at all.\\n\\nWhatever the constraints—budget, time, brief—there’s always a way break free. It just takes some thinking outside of the box.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-amC4hnZM56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"If you’re drowning in a sea of same-same, come chat to us and [we’ll get you out of there in no time](/contact).\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24882,28085,1,'Break away from the same-same with custom illustration','2021-07-23 06:28:16','2021-07-23 06:28:16','d84e1915-33de-4320-9fda-6b13c3e7e1be',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tiYExhhMPf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"There’s nothing more special than something made just for you.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"You hold it loudly and proudly for all to see—and they notice because there’s nothing else in the world quite like it. And this makes you treasure it that little bit more.\\n\\nThe dream of an illustrator is to have time, budget and ability to craft a bespoke masterpiece for every job that comes across the desk.\\n\\nThat dream doesn’t turn to reality very often. But that doesn’t mean your brand has to revert to using the same old stock illustrations everyone else uses either.\\n\\nThere are so many ways to get over those hurdles when a project doesn’t have time or budget to allow for a custom piece.\\n\\nA lot of the time, stock illustration can be tweaked to give it the edge it needs to stand out from the crowd.\\n\\nChange up the colours, mix up the style and jazz up the faces.\\n\\nSometimes stock forms the base for us to build something fresh. And other times there might already be the perfect stock illustration that tells the right story without much tweaking at all.\\n\\nWhatever the constraints—budget, time, brief—there’s always a way break free. It just takes some thinking outside of the box.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-amC4hnZM56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"If you’re drowning in a sea of same-same, come chat to us and [we’ll get you out of there in no time](/contact).\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24884,28087,1,'Pretty or powerful? And can you have it all?','2021-07-23 06:33:59','2021-07-23 06:33:59','0085caa7-e9c9-4fc9-8976-109960f3163e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UxDAMYmx0G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Being a commercial creative means someone is hoping, expecting and paying for a result.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But just because something is creative in its execution doesn’t mean it’s going to be effective in achieving its goal.\\n\\nHere are five pitfalls to avoid when procuring creative services:\\n\\n* Hiring a single creative, like a designer, to be a whole creative team. Your supplier will end up working in one strength and many weaknesses.\\n* Procuring from a supplier who can use design software but isn’t a designer. The work will miss the mark despite looking okay.\\n* Working with a graphic designer who isn’t skilled in the type of design you need (like brand design). You’ll get a pretty logo lacking in brand story and meaning.\\n* Jumping straight into design without a strategy. You’ll receive design work that’s lovely, even beautiful… but not strategic.\\n* Failing to define what success looks like. Your supplier’s work will lack purpose. Instead, make sure you have a clear goal that measures the biggest outcome of all: return on investment.\\n\\nSo yes, creative work can be both pretty and powerful. And you can have it all… if you invest in a team of strategically focused creatives.\\n\\nCreative agencies cost more but are teams for a reason. **We\'re much more powerful together than on our own.**\\n\\nJust like a hand of aces vs a single 3.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24886,28089,1,'How to really consult your stakeholders','2021-07-23 06:47:17','2021-07-23 06:47:17','e75a1ac9-c433-4e29-af7f-8422d12a6580',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pb6yRuUQJr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":\"\",\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BpDlpLY30k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Whether they are inside, outside, removed or closely involved—stakeholders have the insight businesses need for long-term growth and sustainability.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"If they are a stakeholder, they have a connection with you.\\n\\nAnd like any other relationship, they need to know their connection, time and opinions are valued.\\n\\nIt often takes an open mind to find what works for you and the stakeholder.\\n\\nFinding this place of mutual benefit can lead to business growth and longevity.\\n\\nWe’ve broken down our approach to nurturing stakeholder relationships for meaningful engagement.\\n\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-023wqZnDwH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Your stakeholder is anyone who can be impacted by your business.\",\"plainText\":\"Once you really understand this, you’ll start to notice the cycle of impact between the stakeholder and your business. And, this is partly why we begin to engage with stakeholders—to understand how different groups are responding, reacting or behaving.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZC7YPx4oyi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"But who are they, really?\",\"plainText\":\"Now, go deeper to really understand the nuances of your stakeholder groups.\\n\\nYour engagement plan should be detailed enough to allow for different levels of accessibility, and demographic and cultural considerations. The better you nuance, the greater the feeling of respect and care you’ll engender.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4fsgssb3iu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"What do I need to achieve here?\",\"plainText\":\"There are varying degrees of impact across the common types of engagement—inform, consult, involve, collaborate and empower. Every impact is a win for you.\\n\\nBy inviting stakeholders to provide advice and guidance, you are showing interest and genuine regard for their opinions.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-zK1GdW2Vy7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Let’s talk\",\"plainText\":\"A healthy and productive conversation is two-way. We pursue positive and productive conversations with stakeholders because we need to understand stakeholder perspectives, and we need to hear it from them.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wWO0nagqvx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bye for now\",\"plainText\":\"The conversation will close, but the relationship isn’t over. Stakeholders have given their time, effort and reflections. It’s your turn to respond with accuracy, timeliness and balance.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8YdtZLjoMO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"The truth is, these conversations take patience, a steadfast commitment to values, sometimes sacrifice, and always an open mind.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"At NWO, we care about stakeholder engagement because we regularly witness the impact it has on the health of businesses and organisations.\\n\\nIs it important to you?\\n\\nTalk to us about stakeholder engagement today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24888,28091,1,'Top 20 tips for SEO','2021-07-23 06:49:43','2021-07-23 06:49:43','d201cc72-9aff-4e1a-ba83-e066293a5fc6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-P9HDvjQfFI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"GOOD SEO STARTS WITH A BIT OF DIY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Sure, there are loads of experts and agencies out there that specialise in the field, and many of them do a great job.\\n\\nBut there’s actually plenty you can do yourself before you even need to look for an external supplier to help with your SEO.\\n\\nTo get you started on your next SEO DIY project, we’ve put together a top 20 checklist.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":\"1\",\"fields\":{\"gridItems\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\",\"new6\",\"new7\",\"new8\",\"new9\",\"new10\",\"new11\",\"new12\",\"new13\",\"new14\",\"new15\",\"new16\",\"new17\",\"new18\",\"new19\",\"new20\"],\"blocks\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"1. Do your research\",\"text\":\"Identify key search terms, words and phrases, and check out competitors’ sites.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"2. Work out where you are now\",\"text\":\"Work out where you are now—As soon as possible, keep a regular record of where your site currently ranks in search results, using various words, phrases and questions.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"3. Work out where you want to be\",\"text\":\"Define your goals early on so you can measure your progress and adjust your strategy as you go along.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"4. Make your content relevant\",\"text\":\"Search engines provide the most relevant results to a searcher’s query, so write content based on what people might search for.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"5. Improve the quality of your content\",\"text\":\"Publish helpful, useful articles, videos and other types of media that people will want to engage with.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"6. Think about user experience\",\"text\":\"Make sure your site is easy to navigate, with plenty of relevant internal links to keep users on your page for longer.\"}},\"new7\":{\"type\":\"6\",\"fields\":{\"heading\":\"7. Ensure your site is responsive\",\"text\":\"s your website designed to resize for viewing on desktop, tablet and mobile devices? It should be.\"}},\"new8\":{\"type\":\"6\",\"fields\":{\"heading\":\"8. Include plenty of internal links\",\"text\":\"This helps pushes traffic around your site, building higher ‘trust signals’ for Google, and gives your audience more to read.\"}},\"new9\":{\"type\":\"6\",\"fields\":{\"heading\":\"9. Write meta descriptions\",\"text\":\"This short paragraph of text under your page’s URL in search results can really improve the chance of someone clicking on it.\"}},\"new10\":{\"type\":\"6\",\"fields\":{\"heading\":\"10. Include title tags\",\"text\":\"These few key words describing the page and your brand name tell visitors and search engines what your site is about in the most succinct way possible.\"}},\"new11\":{\"type\":\"6\",\"fields\":{\"heading\":\"11. Tag your images\",\"text\":\"Search engines cannot ‘see’ images but they can ‘read’, so it’s important to describe any pictures you upload to your site.\"}},\"new12\":{\"type\":\"6\",\"fields\":{\"heading\":\"12. Create evergreen content\",\"text\":\"More thoughtful and practical advice-based articles can create better results over the long term. Top 20 list, anyone?\"}},\"new13\":{\"type\":\"6\",\"fields\":{\"heading\":\"13. Consider your domain name\",\"text\":\"Having a ‘keyword-rich’ domain name can improve ranking but can also lead to closer scrutiny by search engines.\"}},\"new14\":{\"type\":\"6\",\"fields\":{\"heading\":\"14. Think about headlines\",\"text\":\"Make headlines as snappy, attractive and descriptive as possible, and stay away from clickbait.\"}},\"new15\":{\"type\":\"6\",\"fields\":{\"heading\":\"15. Turn on comments\",\"text\":\"This helps generate a community of engaged users and, whatever their opinion of your content, you’ll know it’s being read.\"}},\"new16\":{\"type\":\"6\",\"fields\":{\"heading\":\"16. Go social\",\"text\":\"By using social media channels as a genuine way to interact with customers, you can help generate interest in your brand and drive traffic to your site.\"}},\"new17\":{\"type\":\"6\",\"fields\":{\"heading\":\"17. Watch your on-site advertising\",\"text\":\"Intrusive ads can destroy the pleasure of viewing your content and also slow your site down (not good for SEO).\"}},\"new18\":{\"type\":\"6\",\"fields\":{\"heading\":\"18. Avoid keyword stuffing\",\"text\":\"Some search engines will actually penalise you for obviously overusing certain keywords on your pages.\"}},\"new19\":{\"type\":\"6\",\"fields\":{\"heading\":\"19. Be aware of duplicated content\",\"text\":\"If two sites publish identical content, search engines will only index one of those pages.\"}},\"new20\":{\"type\":\"6\",\"fields\":{\"heading\":\"20. Don’t hide links and text\",\"text\":\"Doing things like hiding white keyword-stuffed text on a white background or hiding a link in a full stop is likely to be punished by search engines.\"}}}}}},\"new4\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Follow these tips and you’ll be well on your way up the rankings in no time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24891,28094,1,'Building blocks greyscale_2','2021-07-23 06:54:39','2021-11-09 06:06:58','d8beefe4-656a-4064-a7a7-9b026d571d56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/esther-jiao-3HqSeexXYpQ-unsplash.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/esther-jiao-3HqSeexXYpQ-unsplash.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/esther-jiao-3HqSeexXYpQ-unsplash.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/esther-jiao-3HqSeexXYpQ-unsplash.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/esther-jiao-3HqSeexXYpQ-unsplash.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/esther-jiao-3HqSeexXYpQ-unsplash.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/esther-jiao-3HqSeexXYpQ-unsplash.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/esther-jiao-3HqSeexXYpQ-unsplash.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/esther-jiao-3HqSeexXYpQ-unsplash.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/esther-jiao-3HqSeexXYpQ-unsplash.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/esther-jiao-3HqSeexXYpQ-unsplash.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/esther-jiao-3HqSeexXYpQ-unsplash.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/esther-jiao-3HqSeexXYpQ-unsplash.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/esther-jiao-3HqSeexXYpQ-unsplash.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/esther-jiao-3HqSeexXYpQ-unsplash.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/esther-jiao-3HqSeexXYpQ-unsplash.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"3072\":2048,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":6000,\"originalImageHeight\":4000,\"placeholder\":\"/9j/4AAQSkZJRgABAQEASABIAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAIG/8QAIhAAAQIGAQUAAAAAAAAAAAAAAQIDAAQREiExM0FRcsHR/8QAFAEBAAAAAAAAAAAAAAAAAAAAAP/EABQRAQAAAAAAAAAAAAAAAAAAAAD/2gAMAwEAAhEDEQA/AMPKyynlGuANXYBPaKeaaQwbCS4ldqq9N/IWvhPmPUGnMTqwMC7UB//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#606163\",\"#050506\",\"#343537\",\"#4c4c4c\",\"#444c4c\"],\"lightness\":23,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24892,28095,1,'The building blocks of branding','2021-07-23 06:55:08','2021-07-23 06:55:08','61c61517-3070-41ca-be23-25af15b2e49a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UBcW4IgaI5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Through 20 years of branding experience, we’ve come to understand stakeholder engagement is essential for a brand to have cut-through.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We’ve engaged with our clients’ stakeholders for many years and in many ways—ranging from formal, formative market research through to in-depth focus groups, workshops, community forums, brand satisfaction surveys and phone interviews.\\n\\nNo matter the method, what really counts is that we capture how people relate to your brand. That relationship leads to relevance and then the ultimate goal: resonance.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qaQGFaRj3d\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Relationship\",\"plainText\":\"Every great brand is built on relationship.\\n\\nWhen you form healthy relationships with stakeholders, you open yourself up to a range of opinions. Generally, feedback gets more constructive as the relationship grows healthier.\\n\\nIf you’re the brand manager, it can feel a bit like tough love at first—but it does get easier.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IDzmWzpUSE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Relevance\",\"plainText\":\"So much more than a logo, brands are heavy with meaning for stakeholders. And so if the environment changes but your brand doesn’t, the meaning is lost.\\n\\nA lot of the stakeholder feedback we hear about brands is that they’re outdated or lack appeal. Without relevance, your stakeholders no longer feel the love.\\n\\nConstantly retune yourself to your stakeholders and you’ll keep fulfilling their needs.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8Wdlr8QGTN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Resonance\",\"plainText\":\"Resonance is where understanding meets impact.\\n\\nA brand rich with resonance is the holy grail of marketing and, true to legend, few reach it.\\n\\nThat’s because resonance means your brand is a perfect fit for your stakeholders’ environment, pain points, wants and emotional connection.\\n\\nResonance engenders attention and respect, and turns want to need.\\n\\nAnd when stakeholders can’t live without your brand? Happy days.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EdELli6glE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The 3Rs start here\",\"plainText\":\"Whether you’re looking to name and brand or rename and rebrand, your brand journey starts with understanding your stakeholders.\\n\\nTalk to us about how to take your first steps.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24894,28097,1,'Building blocks greyscale','2021-07-23 06:57:14','2021-11-09 06:09:14','c65d22af-83f1-4f63-ad34-90e91d35a031',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/Building-blocks-of-branding.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/Building-blocks-of-branding.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/Building-blocks-of-branding.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/Building-blocks-of-branding.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/Building-blocks-of-branding.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/Building-blocks-of-branding.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/Building-blocks-of-branding.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/Building-blocks-of-branding.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/Building-blocks-of-branding.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/Building-blocks-of-branding.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"1280\":853,\"1024\":682,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1800,\"originalImageHeight\":1200,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAIG/8QAIhAAAQIGAQUAAAAAAAAAAAAAAQIDAAQREiExM0FRcsHR/8QAFAEBAAAAAAAAAAAAAAAAAAAAAP/EABQRAQAAAAAAAAAAAAAAAAAAAAD/2gAMAwEAAhEDEQA/AMPKyynlGuANXYBPaAp5ppDBsJLiV2qr038gFr4T5j1AGnMTqwMC7UB//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#5f6163\",\"#050506\",\"#343638\",\"#4c4c4c\",\"#444c4c\"],\"lightness\":23,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24895,28098,1,'The building blocks of branding','2021-07-23 06:57:34','2021-07-23 06:57:34','b29fc0f8-1558-4b32-a547-92f7ecd95fab',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UBcW4IgaI5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Through 20 years of branding experience, we’ve come to understand stakeholder engagement is essential for a brand to have cut-through.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We’ve engaged with our clients’ stakeholders for many years and in many ways—ranging from formal, formative market research through to in-depth focus groups, workshops, community forums, brand satisfaction surveys and phone interviews.\\n\\nNo matter the method, what really counts is that we capture how people relate to your brand. That relationship leads to relevance and then the ultimate goal: resonance.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qaQGFaRj3d\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Relationship\",\"plainText\":\"Every great brand is built on relationship.\\n\\nWhen you form healthy relationships with stakeholders, you open yourself up to a range of opinions. Generally, feedback gets more constructive as the relationship grows healthier.\\n\\nIf you’re the brand manager, it can feel a bit like tough love at first—but it does get easier.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IDzmWzpUSE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Relevance\",\"plainText\":\"So much more than a logo, brands are heavy with meaning for stakeholders. And so if the environment changes but your brand doesn’t, the meaning is lost.\\n\\nA lot of the stakeholder feedback we hear about brands is that they’re outdated or lack appeal. Without relevance, your stakeholders no longer feel the love.\\n\\nConstantly retune yourself to your stakeholders and you’ll keep fulfilling their needs.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8Wdlr8QGTN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Resonance\",\"plainText\":\"Resonance is where understanding meets impact.\\n\\nA brand rich with resonance is the holy grail of marketing and, true to legend, few reach it.\\n\\nThat’s because resonance means your brand is a perfect fit for your stakeholders’ environment, pain points, wants and emotional connection.\\n\\nResonance engenders attention and respect, and turns want to need.\\n\\nAnd when stakeholders can’t live without your brand? Happy days.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EdELli6glE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The 3Rs start here\",\"plainText\":\"Whether you’re looking to name and brand or rename and rebrand, your brand journey starts with understanding your stakeholders.\\n\\nTalk to us about how to take your first steps.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24896,28099,1,'Top 20 tips for SEO','2021-07-23 06:57:53','2021-07-23 06:57:53','08249d42-ddff-411f-afd5-3cd312001472',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-P9HDvjQfFI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"GOOD SEO STARTS WITH A BIT OF DIY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Sure, there are loads of experts and agencies out there that specialise in the field, and many of them do a great job.\\n\\nBut there’s actually plenty you can do yourself before you even need to look for an external supplier to help with your SEO.\\n\\nTo get you started on your next SEO DIY project, we’ve put together a top 20 checklist.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":\"1\",\"fields\":{\"gridItems\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\",\"new6\",\"new7\",\"new8\",\"new9\",\"new10\",\"new11\",\"new12\",\"new13\",\"new14\",\"new15\",\"new16\",\"new17\",\"new18\",\"new19\",\"new20\"],\"blocks\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"1. Do your research\",\"text\":\"Identify key search terms, words and phrases, and check out competitors’ sites.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"2. Work out where you are now\",\"text\":\"Work out where you are now—As soon as possible, keep a regular record of where your site currently ranks in search results, using various words, phrases and questions.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"3. Work out where you want to be\",\"text\":\"Define your goals early on so you can measure your progress and adjust your strategy as you go along.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"4. Make your content relevant\",\"text\":\"Search engines provide the most relevant results to a searcher’s query, so write content based on what people might search for.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"5. Improve the quality of your content\",\"text\":\"Publish helpful, useful articles, videos and other types of media that people will want to engage with.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"6. Think about user experience\",\"text\":\"Make sure your site is easy to navigate, with plenty of relevant internal links to keep users on your page for longer.\"}},\"new7\":{\"type\":\"6\",\"fields\":{\"heading\":\"7. Ensure your site is responsive\",\"text\":\"s your website designed to resize for viewing on desktop, tablet and mobile devices? It should be.\"}},\"new8\":{\"type\":\"6\",\"fields\":{\"heading\":\"8. Include plenty of internal links\",\"text\":\"This helps pushes traffic around your site, building higher ‘trust signals’ for Google, and gives your audience more to read.\"}},\"new9\":{\"type\":\"6\",\"fields\":{\"heading\":\"9. Write meta descriptions\",\"text\":\"This short paragraph of text under your page’s URL in search results can really improve the chance of someone clicking on it.\"}},\"new10\":{\"type\":\"6\",\"fields\":{\"heading\":\"10. Include title tags\",\"text\":\"These few key words describing the page and your brand name tell visitors and search engines what your site is about in the most succinct way possible.\"}},\"new11\":{\"type\":\"6\",\"fields\":{\"heading\":\"11. Tag your images\",\"text\":\"Search engines cannot ‘see’ images but they can ‘read’, so it’s important to describe any pictures you upload to your site.\"}},\"new12\":{\"type\":\"6\",\"fields\":{\"heading\":\"12. Create evergreen content\",\"text\":\"More thoughtful and practical advice-based articles can create better results over the long term. Top 20 list, anyone?\"}},\"new13\":{\"type\":\"6\",\"fields\":{\"heading\":\"13. Consider your domain name\",\"text\":\"Having a ‘keyword-rich’ domain name can improve ranking but can also lead to closer scrutiny by search engines.\"}},\"new14\":{\"type\":\"6\",\"fields\":{\"heading\":\"14. Think about headlines\",\"text\":\"Make headlines as snappy, attractive and descriptive as possible, and stay away from clickbait.\"}},\"new15\":{\"type\":\"6\",\"fields\":{\"heading\":\"15. Turn on comments\",\"text\":\"This helps generate a community of engaged users and, whatever their opinion of your content, you’ll know it’s being read.\"}},\"new16\":{\"type\":\"6\",\"fields\":{\"heading\":\"16. Go social\",\"text\":\"By using social media channels as a genuine way to interact with customers, you can help generate interest in your brand and drive traffic to your site.\"}},\"new17\":{\"type\":\"6\",\"fields\":{\"heading\":\"17. Watch your on-site advertising\",\"text\":\"Intrusive ads can destroy the pleasure of viewing your content and also slow your site down (not good for SEO).\"}},\"new18\":{\"type\":\"6\",\"fields\":{\"heading\":\"18. Avoid keyword stuffing\",\"text\":\"Some search engines will actually penalise you for obviously overusing certain keywords on your pages.\"}},\"new19\":{\"type\":\"6\",\"fields\":{\"heading\":\"19. Be aware of duplicated content\",\"text\":\"If two sites publish identical content, search engines will only index one of those pages.\"}},\"new20\":{\"type\":\"6\",\"fields\":{\"heading\":\"20. Don’t hide links and text\",\"text\":\"Doing things like hiding white keyword-stuffed text on a white background or hiding a link in a full stop is likely to be punished by search engines.\"}}}}}},\"new4\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Follow these tips and you’ll be well on your way up the rankings in no time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24898,28101,1,'Image of classroom with primary school students','2021-07-23 06:59:36','2021-10-05 06:42:39','2c29c12d-954e-45b5-9f8e-285c43a99edc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/school-marketing.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/school-marketing.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/school-marketing.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/school-marketing.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/school-marketing.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/school-marketing.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/school-marketing.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/school-marketing.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/school-marketing.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/school-marketing.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"1280\":853,\"1024\":682,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1800\",\"originalImageHeight\":\"1200\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8ArXt/OlnDPcQfOWymO4z0I7djV241fUkeJl05nXYF8pCWxnPP+fasjxOT5dtyeUBPueav6NNJJJJvkduV+8xPasuU0buf/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#b9aa94\",\"#211b19\",\"#623829\",\"#715833\",\"#685c53\"],\"lightness\":36,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(24899,28102,1,'Simplifying the complex: Fifteen years of marketing schools','2021-07-23 07:26:56','2021-07-23 07:26:56','9d5cb43f-0a00-48bb-9d48-568c84fcfa3a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WAYo0QEnCs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"After 20 years of marketing—including 15 years working with schools across Queensland and New South Wales—I am steadfast in my belief that there is no marketing challenge as complex as that faced by schools.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"In what other industry would you find thousands of individual stakeholders—students, parents, teachers, alumni and more—all with do-or-die expectations?\\n\\nOr an environment that can, quite honestly, change the trajectory of children’s lives?\\n\\nThen you have the two very distinct markets—internal and external—often with very different needs that need to be met with minimal budgets.\\n\\nThe experience of school changed little for nearly a century but, in the past 20 years, it has evolved in such leaps and bounds that today’s parents struggle to recognise it.\\n\\nPhilosophically, there are few industries I can think of that have such a strong evidence base to guide practice—here I’m thinking of teaching and learning—yet the required outcome is often diametrically opposed to it. Looking forward to the arrival of ATAR, anyone?\\n\\nIt’s little wonder that I find the business of marketing schools endlessly fascinating.\\n\\nOnly this morning I was in another principal’s office, talking through these very complexities. In our conversation, we touched on what I’ve discovered over the years are three bedrock principles every school needs as their marketing foundation. They’re my way of transforming a little of the complex into the simple.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Esbo1iQq5g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"1. Work out what makes you unique\",\"plainText\":\"Marketing and enrolments teams live and die by their numbers. \\n\\nIt is endlessly tempting, then, to try to go wide in your appeal so that you create the biggest possible net. \\n\\nIn practice, though, it means no-one knows what you stand for. \\n\\nThe better alternative is to embrace what makes you unique and then market that hard. You’ll end up attracting families that are the right fit for you and work hard as your ambassadors. \\n\\nInternally, there’ll be great cohesion, too, because you’ll attract and retain great educators who get what you’re about and support it in their words and actions.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-v1FFRTuEFs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"2. Don’t be afraid to like you’re unique\",\"plainText\":\"If you’re bored one day in your office, try this game. \\n\\nGet ads from three schools, and then block out their hats and uniforms. Can you still tell them apart? \\n\\nIt astounds me that we continue to use sterile, look-alike images—hey, here’s a girl in a lab coat with a test tube as proof that we promote girls in STEM!—that don’t reflect the day-to-day experience of what it is to learn at your school. \\n\\nCelebrate your uniqueness—and set yourself apart from your competitors—by choosing unique visual styles and photography.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cMg5IvARdG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"3. Now stay unique\",\"plainText\":\"Over time, teachers and leaders of schools get to know each other pretty well. \\n\\nPrincipals, in particular, know other schools like bookies know racehorses. The net result in marketing is that your great idea quickly becomes next year’s norm… and after a few years, what was edgy is simply outdated. \\n\\nWise schools invest in a middle ground here. \\n\\nThey start off strong and then review and refresh their brand every year or two. \\n\\nThat way, subtle tweaks don’t destabilise your internal audience but you stay fresh and relevant externally.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3XrIiJiL9w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Want to know more?\",\"plainText\":\"Suzanne advises schools on sustainable marketing strategy that helps them get the most from their internal resources. To chat, phone 07 3334 8340 or email suzanne@newwordorder.com.au.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27207,30410,1,'Ryan Murray - Brand Audit Submission - 26 Jul, 2021','2021-07-26 03:59:06','2021-07-26 03:59:06','79ade245-e036-4f61-9497-61956cc58f9e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27208,30411,1,'Hear the equality stories from NWO women','2021-07-30 01:23:04','2022-06-22 23:52:09','77fb47fa-8eb8-4db0-91ef-6e9d7211b53f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Wernf3qqvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"International Women\'s Day 2021\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We can all choose to challenge and call out inequality. We can all choose to seek out and celebrate women\'s achievements. Collectively, we can all help create an inclusive world. \\n\\nFrom challenge comes change, so let\'s all choose to challenge.\\n\\nThe 2021 theme for International Women\'s Day is #choosetochallenge. We asked the women of NWO what this means for them.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dQqtfQZh3I\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17131\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZSm70uSTq5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Jo Penney: We don\'t need titles\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"As a female with short hair, I am often referred to as ‘sir’.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"This occurs mostly by flight attendants who take a quick glance and assume, rather than just offering a friendly ‘good morning’ or ‘good evening’ and avoiding their own embarrassment when they realise their mistake.\\n\\nOnce, the same flight attendant who greeted me to the plane was so embarrassed she could barely offer me tea or coffee later in the flight.\\n\\nIt’s silly and avoidable, and I find it quite funny and entertaining to see which way it will go.\\n\\nFor others, though, it can be an awful embarrassment that can easily be avoided by removing titles.\\n\\nSo, this International Women’s Day, I’m choosing to challenge all of us to end their use.\\n\\nI’m a proud female but I don’t feel the need to be referred to as madame, ma’am, mademoiselle, etc. It’s old-fashioned and classist.\\n\\nAnd as a proud LGBTI woman, I am extra aware that titles can isolate and sideline—not encourage and respect—people for whom gender and identity has been hard-won.\\n\\nLet’s talk our walk. Let’s end titles for good.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oVs7jOKhCm\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17127\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-823iS7DNes\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Kat Scott: The courage to listen\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"I’ve always thought the conversation around challenges women face was about finding your voice and speaking up; that strong, independent women needed to find the confidence to make their voices heard.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The older I get and the more the modern world allows us to see through the structures of society, economics and politics, I realise the conversation is really about finding the confidence to listen to those voices.\\n\\nYou see it every day in business, TV, music, media and social situations that when there is a woman who stands up and says how she feels, she is perceived as “too much”.\\n\\nI am guilty at times of not hearing other female voices and, worse than anything, sometimes of not even hearing my own voice.\\n\\nDespite thinking of myself as a very headstrong, intelligent and confident person, I tell myself to “tone it down” because I’m being “too much”.\\n\\nI want to see people rising to the challenge of actively listening to those female voices and perspectives, not because they are female but because they are equal.\\n\\nEvery person should be offered the same platform, the same ears and the same opportunities—if we choose to take them.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YdYo9ey7f6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17124\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jXUudS4IzN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Rebecca Holman: Let\'s keep choosing to challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Here’s to the great women who kicked it all off.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"They challenged previously held societal norms, at great personal and physical cost, to give us the right to vote, the right to marry who we like, the right to choose our own careers, to be independent and to move closer to gender equality.\\n\\nThe spirit of these pioneers lives on, and the hard and uncomfortable work continues in many forms with each of us.\\n\\nAll of us can keep choosing to challenge each other—woman to man, woman to woman, man to man—in our everyday lives.\\n\\nHere’s to the mums, dads and those very special teachers who nurture our kids, lead by example and challenge the next generation to grow into people who treat each other with respect, patience and compassion.\\n\\nLet’s keep championing and supporting each other to achieve true gender equality.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RUzEpjpFMZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17119\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7wTrhTk0Ps\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Kimi Schieren: Deeper than the dollar amount\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Revealing you have a side hustle always brings up questions about success.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"“What kind of a profit are you making?”\\n\\n“Is it worth it?”\\n\\nEspecially if you, like myself, also work a full-time job and the side hustle itself is almost equally as full-time—the questions surrounding the value of your extracurricular will frequently plague you.\\n\\nHolding the worth of something solely on whether or not it’s profitable can be a slippery slope of creating unattainable goals and unrealistic expectations on yourself and your business.\\n\\nWhat I get out of my side hustle both professionally and personally far surpasses any financial goals.\\n\\nIt’s an outlet for my creativity and a way to express myself. Plus, it helps me to be more creative in my day job.\\n\\nThe two jobs feed into each other and without either or both I would struggle to feel like myself.\\n\\nSuccess from my side hustle is measured in the praise of happy customers, the smiles and comments I get from people who pass my stuff in the streets, and the self-satisfaction I get from creating something from an idea in my head to something you can physically wear or hold.\\n\\nSure, getting paid is also great and I dream of the day when it can become my full-time job. But, for now, my success is much deeper than a dollar amount.\\n\\nThis International Women’s Day, I’m choosing to challenge the notion that wealth equals success.\\n\\nLet’s choose to open our mind to what success looks like and celebrate the amazing things we’re doing.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TAZHDkM6ny\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17115\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EVYfpAlzzL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Kate Wood: Because they challenged, I get to choose\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"I’m in the grey area between Gen Y and Z, so I’m a product of the many Gen X women who raised me, inspired me and challenged me.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Gen X women were born in the 70s and 80s when the ideals of having it all—stable marriage, perfect family, lucrative work—came disguised as female empowerment. What crippling expectations.\\n\\nThese women defied mathematics. There are only 24 hours in a day and having it all takes at least 36.\\n\\nThey challenged the gender norms of the time and proved that, in fact, you can have it all.\\n\\nBecause of that, I don’t have to be the perfect mum with the perfect kids. I don’t have to be married to the dreamiest spouse. I don’t have to cook like Nigella or clean like Marie Kondo. I don’t have to climb the corporate ladder and smash through glass ceilings.\\n\\nI certainly don’t need to do all of that at the same time.\\n\\nAnd because I’m lucky enough to work for an incredible Gen X woman, I don’t have to work twice as hard to earn the same as my male colleague.\\n\\nInstead, I get to choose my values and the kind of woman I want to be.\\n\\nTo all you Gen X women who bravely went before: thank you. Because you worked so hard to challenge, I get to choose.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PCfYuBrUwo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17114\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aX0BZHIT5e\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Suzanne Oxford: Let\'s not mistake peace-keeping for peace-making\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"As a person of faith, I’ve always been challenged by a verse that says, “as far as it depends on you, live at peace”. I consider this my mandate.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But don’t mistake peace-keeping for peace-making.\\n\\nPeace-keeping keeps factions apart with no expectation of resolution. It’s maximum effort expended in a passive, zero sum game. It reinforces apathy, privilege and anger.\\n\\nMe? I’m a peace-maker. The very act of making peace—and making peace, and making peace—is dynamic and potent, shining a light where inequality and injustice rob people of true peace.\\n\\nPeace-making drives me to lean in and bear witness to people’s stories with compassion and empathy.\\n\\nIt compels me to respond with strategies and actions that can create lasting change.\\n\\nIt urges me to have uncomfortable conversations to elicit greater understanding.\\n\\nIt impels me own my blind spots so I can grow in gentleness—and, in turn, create even greater peace.\\n\\nThere’s nothing passive about being a peace-maker, and peace-making never ends.\\n\\nIn fact, as I consider the broken world my children are now entering as young adults, my peace-making is only increasing in volume—as is my understanding that peace is a human right and that, as far as it depends on me, I must give it voice and life.\\n\\nAnd so I do.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OM2HjsMtPT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17108\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Knak12weJl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Bree Leitch: Our voice carries weight, even when it wavers\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"I grew up posting everything on social media, compiling a collage of my perfect life.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Every photo is meticulously chosen out of hundreds taken, every smile critiqued, and every caption drafted and redrafted. Anything less than perfection simply won’t do—I have an audience to please, you see.\\n\\nWomen have fought since the beginning of time to have our voices heard and taken seriously. And now we have an audience, they’re out for blood. It’s the little things—misusing terminology, Facetune gone wrong, dating too many people or not enough—the list goes on. Our audience will fault us for anything in order to discredit us.\\n\\nThe worst part? Often, that audience is me. Sometimes it’s you. It’s all of us women at one point or another, not because we mean to, but because we are trained to. We are taught we must tear other women down in order to lift ourselves up.\\n\\nWhen we let ourselves believe that our own success—or self-security, or popularity, or whatever validation we seek—is dependent on the destruction of other women, we all suffer.\\n\\nWe don’t have to be perfect to be valid. Our voice carries weight, even when it wavers.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Hear the equality stories from NWO women','We can all choose to challenge and call out inequality. We can all choose to seek out and celebrate women\'s achievements. Collectively, we can all help create an inclusive world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27210,30413,1,'Pretty or powerful? And can you have it all?','2021-07-30 01:25:54','2021-07-30 01:25:54','0add2c39-8e97-4df6-afbf-3edd52e4d52f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UxDAMYmx0G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Being a commercial creative means someone is hoping, expecting and paying for a result.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But just because something is creative in its execution doesn’t mean it’s going to be effective in achieving its goal.\\n\\nHere are five pitfalls to avoid when procuring creative services:\\n\\n* Hiring a single creative, like a designer, to be a whole creative team. Your supplier will end up working in one strength and many weaknesses.\\n* Procuring from a supplier who can use design software but isn’t a designer. The work will miss the mark despite looking okay.\\n* Working with a graphic designer who isn’t skilled in the type of design you need (like brand design). You’ll get a pretty logo lacking in brand story and meaning.\\n* Jumping straight into design without a strategy. You’ll receive design work that’s lovely, even beautiful… but not strategic.\\n* Failing to define what success looks like. Your supplier’s work will lack purpose. Instead, make sure you have a clear goal that measures the biggest outcome of all: return on investment.\\n\\nSo yes, creative work can be both pretty and powerful. And you can have it all… if you invest in a team of strategically focused creatives.\\n\\nCreative agencies cost more but are teams for a reason. **We\'re much more powerful together than on our own.**\\n\\nJust like a hand of aces verses a single 3.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27212,30415,1,'The building blocks of branding','2021-07-30 01:29:29','2021-07-30 01:29:29','a43a29f3-1359-404c-b0b1-8d6ceff9f4b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UBcW4IgaI5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Through 20 years of branding experience, we’ve come to understand stakeholder engagement is essential for a brand to have cut-through.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We’ve engaged with our clients’ stakeholders for many years and in many ways—ranging from formal, formative market research through to in-depth focus groups, workshops, community forums, brand satisfaction surveys and phone interviews.\\n\\nNo matter the method, what really counts is that we capture how people relate to your brand. That relationship leads to relevance and then the ultimate goal: resonance.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qaQGFaRj3d\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Relationship\",\"plainText\":\"Every great brand is built on relationship.\\n\\nWhen you form healthy relationships with stakeholders, you open yourself up to a range of opinions. Generally, feedback gets more constructive as the relationship grows healthier.\\n\\nIf you’re the brand manager, it can feel a bit like tough love at first—but it does get easier.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IDzmWzpUSE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Relevance\",\"plainText\":\"So much more than a logo, brands are heavy with meaning for stakeholders. And so if the environment changes but your brand doesn’t, the meaning is lost.\\n\\nA lot of the stakeholder feedback we hear about brands is that they’re outdated or lack appeal. Without relevance, your stakeholders no longer feel the love.\\n\\nConstantly retune yourself to your stakeholders and you’ll keep fulfilling their needs.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8Wdlr8QGTN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Resonance\",\"plainText\":\"Resonance is where understanding meets impact.\\n\\nA brand rich with resonance is the holy grail of marketing and, true to legend, few reach it.\\n\\nThat’s because resonance means your brand is a perfect fit for your stakeholders’ environment, pain points, wants and emotional connection.\\n\\nResonance engenders attention and respect, and turns want to need.\\n\\nAnd when stakeholders can’t live without your brand? Happy days.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EdELli6glE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The three Rs start here\",\"plainText\":\"Whether you’re looking to name and brand or rename and rebrand, your brand journey starts with understanding your stakeholders.\\n\\nTalk to us about how to take your first steps.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27214,30417,1,'Why you need a six-month comms strategy for your website','2021-07-30 01:43:13','2021-07-30 01:43:13','2caa3d5f-de8f-43b5-9836-675338c70ed3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AgEbVkr4de\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"YOU KNOW THE FEELING: AN AD PROMISE DRAWS YOU IN, YOU CLICK THROUGH TO THE WEBSITE AND YOU’RE IMPRESSED BECAUSE IT LOOKS SUPER SLICK.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Then you actually read it. And now you’re disappointed because it doesn’t actually say anything other than the surface detail of a business.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QesBwreMAq\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"These websites are so common they’ve earned the term ‘brochure’ website. They look great, but that’s it.\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-b9aMnjAcJ0\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We see it all the time and think it’s such a shame. Why? Because a website can be so. much. more.\\n\\nHow can your website escape the dreaded brochure effect? In short, don’t set and forget.\\n\\nGood websites move, breathe and live—just like your business does.\\n\\nEveryone knows it’s good practice to regularly update your website messaging and functionality. But you need to actually get around to doing it and—more importantly—have a reason for making a change.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"},\"collapsed\":\"1\"}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3YeCOos4iz\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"So, what’s your strategy?\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V4Ur8T6jd4\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"A website communication and engagement strategy has so many benefits. But the biggest one by far is SEO.\\n\\nBy biggest we don’t mean the most confusing or time-consuming. It simply boils down to content. Fresh content tells Google: This is who I am! This is what I do! See me! Hear me!\\n\\nGoogle’s algorithms are super clever because they serve up the sort of content people want. But it means Google can only give people the content they want if it knows about your business and what you’re offering.\\n\\nOf course, there are some technical aspects to consider. But your best SEO strategy is a long-term communications plan.\\n\\nDo you know what the next six months for your website content looks like? What can you offer your customers other than opening hours and where you’re located?\\n\\nBy developing a digital communications strategy, your website gets updated regularly, which helps Google share your message with the right people at the right time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5XBczMM2nF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Potential customers will find you, engage with you and trust you enough to get in touch.\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W1NCV9CxoK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"You have so many options for interesting content. It could be a thought-leadership piece, event, media release, whitepaper, testimonial—the list can go on.\\n\\nWe have a huge amount of communications tools and angles we can develop to bolster your web presence.\\n\\nGoogle also loves a fast, responsive website. Optimising your website by using the latest version of your content management system will ensure your site is running smoothly and as fast as it can.\\n\\nLikewise, this will make your site more secure and help prevent security breaches (particularly important if you use WordPress).\\n\\nWe also offer long-term website maintenance plans. These include detailed server monitoring and ensuring your CMS and plugins are up-to-date.\\n\\nFor more critical sites, we offer zero downtime code-update deployments.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-v9RKLjPOWn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Talk to us about a long-term strategy for your website so it can be more than just another ‘brochure site’.\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27215,30418,1,'Why you need a six-month comms strategy for your website','2021-07-30 01:43:29','2021-07-30 01:43:29','d12de2c4-3d55-4e7e-942a-738a1750c228',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AgEbVkr4de\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"YOU KNOW THE FEELING: AN AD PROMISE DRAWS YOU IN, YOU CLICK THROUGH TO THE WEBSITE AND YOU’RE IMPRESSED BECAUSE IT LOOKS SUPER SLICK.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Then you actually read it. And now you’re disappointed because it doesn’t actually say anything other than the surface detail of a business.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QesBwreMAq\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"These websites are so common they’ve earned the term ‘brochure’ website. They look great, but that’s it.\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-b9aMnjAcJ0\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We see it all the time and think it’s such a shame. Why? Because a website can be so. much. more.\\n\\nHow can your website escape the dreaded brochure effect? In short, don’t set and forget.\\n\\nGood websites move, breathe and live—just like your business does.\\n\\nEveryone knows it’s good practice to regularly update your website messaging and functionality. But you need to actually get around to doing it and—more importantly—have a reason for making a change.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"},\"collapsed\":\"1\"}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3YeCOos4iz\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"So, what’s your strategy?\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V4Ur8T6jd4\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"A website communication and engagement strategy has so many benefits. But the biggest one by far is SEO.\\n\\nBy biggest we don’t mean the most confusing or time-consuming. It simply boils down to content. Fresh content tells Google: This is who I am! This is what I do! See me! Hear me!\\n\\nGoogle’s algorithms are super clever because they serve up the sort of content people want. But it means Google can only give people the content they want if it knows about your business and what you’re offering.\\n\\nOf course, there are some technical aspects to consider. But your best SEO strategy is a long-term communications plan.\\n\\nDo you know what the next six months for your website content looks like? What can you offer your customers other than opening hours and where you’re located?\\n\\nBy developing a digital communications strategy, your website gets updated regularly, which helps Google share your message with the right people at the right time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5XBczMM2nF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Potential customers will find you, engage with you and trust you enough to get in touch.\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W1NCV9CxoK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"You have so many options for interesting content. It could be a thought-leadership piece, event, media release, whitepaper, testimonial—the list can go on.\\n\\nWe have a huge amount of communications tools and angles we can develop to bolster your web presence.\\n\\nGoogle also loves a fast, responsive website. Optimising your website by using the latest version of your content management system will ensure your site is running smoothly and as fast as it can.\\n\\nLikewise, this will make your site more secure and help prevent security breaches (particularly important if you use WordPress).\\n\\nWe also offer long-term website maintenance plans. These include detailed server monitoring and ensuring your CMS and plugins are up-to-date.\\n\\nFor more critical sites, we offer zero downtime code-update deployments.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-v9RKLjPOWn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Talk to us about a long-term strategy for your website so it can be more than just another ‘brochure site’.\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27216,30419,1,'Top 20 tips for SEO','2021-07-30 01:44:03','2021-07-30 01:44:03','b7b48ed6-ab1f-4639-96de-328af4b52870',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-P9HDvjQfFI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"GOOD SEO STARTS WITH A BIT OF DIY.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Sure, there are loads of experts and agencies out there that specialise in the field, and many of them do a great job.\\n\\nBut there’s actually plenty you can do yourself before you even need to look for an external supplier to help with your SEO.\\n\\nTo get you started on your next SEO DIY project, we’ve put together a top 20 checklist.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":\"1\",\"fields\":{\"gridItems\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\",\"new6\",\"new7\",\"new8\",\"new9\",\"new10\",\"new11\",\"new12\",\"new13\",\"new14\",\"new15\",\"new16\",\"new17\",\"new18\",\"new19\",\"new20\"],\"blocks\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"1. Do your research\",\"text\":\"Identify key search terms, words and phrases, and check out competitors’ sites.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"2. Work out where you are now\",\"text\":\"Work out where you are now—As soon as possible, keep a regular record of where your site currently ranks in search results, using various words, phrases and questions.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"3. Work out where you want to be\",\"text\":\"Define your goals early on so you can measure your progress and adjust your strategy as you go along.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"4. Make your content relevant\",\"text\":\"Search engines provide the most relevant results to a searcher’s query, so write content based on what people might search for.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"5. Improve the quality of your content\",\"text\":\"Publish helpful, useful articles, videos and other types of media that people will want to engage with.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"6. Think about user experience\",\"text\":\"Make sure your site is easy to navigate, with plenty of relevant internal links to keep users on your page for longer.\"}},\"new7\":{\"type\":\"6\",\"fields\":{\"heading\":\"7. Ensure your site is responsive\",\"text\":\"s your website designed to resize for viewing on desktop, tablet and mobile devices? It should be.\"}},\"new8\":{\"type\":\"6\",\"fields\":{\"heading\":\"8. Include plenty of internal links\",\"text\":\"This helps pushes traffic around your site, building higher ‘trust signals’ for Google, and gives your audience more to read.\"}},\"new9\":{\"type\":\"6\",\"fields\":{\"heading\":\"9. Write meta descriptions\",\"text\":\"This short paragraph of text under your page’s URL in search results can really improve the chance of someone clicking on it.\"}},\"new10\":{\"type\":\"6\",\"fields\":{\"heading\":\"10. Include title tags\",\"text\":\"These few key words describing the page and your brand name tell visitors and search engines what your site is about in the most succinct way possible.\"}},\"new11\":{\"type\":\"6\",\"fields\":{\"heading\":\"11. Tag your images\",\"text\":\"Search engines cannot ‘see’ images but they can ‘read’, so it’s important to describe any pictures you upload to your site.\"}},\"new12\":{\"type\":\"6\",\"fields\":{\"heading\":\"12. Create evergreen content\",\"text\":\"More thoughtful and practical advice-based articles can create better results over the long term. Top 20 list, anyone?\"}},\"new13\":{\"type\":\"6\",\"fields\":{\"heading\":\"13. Consider your domain name\",\"text\":\"Having a ‘keyword-rich’ domain name can improve ranking but can also lead to closer scrutiny by search engines.\"}},\"new14\":{\"type\":\"6\",\"fields\":{\"heading\":\"14. Think about headlines\",\"text\":\"Make headlines as snappy, attractive and descriptive as possible, and stay away from clickbait.\"}},\"new15\":{\"type\":\"6\",\"fields\":{\"heading\":\"15. Turn on comments\",\"text\":\"This helps generate a community of engaged users and, whatever their opinion of your content, you’ll know it’s being read.\"}},\"new16\":{\"type\":\"6\",\"fields\":{\"heading\":\"16. Go social\",\"text\":\"By using social media channels as a genuine way to interact with customers, you can help generate interest in your brand and drive traffic to your site.\"}},\"new17\":{\"type\":\"6\",\"fields\":{\"heading\":\"17. Watch your on-site advertising\",\"text\":\"Intrusive ads can destroy the pleasure of viewing your content and also slow your site down (not good for SEO).\"}},\"new18\":{\"type\":\"6\",\"fields\":{\"heading\":\"18. Avoid keyword stuffing\",\"text\":\"Some search engines will actually penalise you for obviously overusing certain keywords on your pages.\"}},\"new19\":{\"type\":\"6\",\"fields\":{\"heading\":\"19. Be aware of duplicated content\",\"text\":\"If two sites publish identical content, search engines will only index one of those pages.\"}},\"new20\":{\"type\":\"6\",\"fields\":{\"heading\":\"20. Don’t hide links and text\",\"text\":\"Doing things like hiding white keyword-stuffed text on a white background or hiding a link in a full stop is likely to be punished by search engines.\"}}}}}},\"new4\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Follow these tips and you’ll be well on your way up the rankings in no time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27217,30420,1,'Why you need a six-month comms strategy for your website','2021-07-30 01:44:40','2021-07-30 01:44:40','6b2f205d-0028-466b-987a-c932213842bd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AgEbVkr4de\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"YOU KNOW THE FEELING: AN AD PROMISE DRAWS YOU IN, YOU CLICK THROUGH TO THE WEBSITE AND YOU’RE IMPRESSED BECAUSE IT LOOKS SUPER SLICK.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Then you actually read it. And now you’re disappointed because it doesn’t actually say anything other than the surface detail of a business.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QesBwreMAq\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"These websites are so common they’ve earned the term ‘brochure’ website. They look great, but that’s it.\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-b9aMnjAcJ0\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We see it all the time and think it’s such a shame. Why? Because a website can be so. much. more.\\n\\nHow can your website escape the dreaded brochure effect? In short, don’t set and forget.\\n\\nGood websites move, breathe and live—just like your business does.\\n\\nEveryone knows it’s good practice to regularly update your website messaging and functionality. But you need to actually get around to doing it and—more importantly—have a reason for making a change.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"},\"collapsed\":\"1\"}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3YeCOos4iz\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"So, what’s your strategy?\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V4Ur8T6jd4\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"A website communication and engagement strategy has so many benefits. But the biggest one by far is SEO.\\n\\nBy biggest we don’t mean the most confusing or time-consuming. It simply boils down to content. Fresh content tells Google: This is who I am! This is what I do! See me! Hear me!\\n\\nGoogle’s algorithms are super clever because they serve up the sort of content people want. But it means Google can only give people the content they want if it knows about your business and what you’re offering.\\n\\nOf course, there are some technical aspects to consider. But your best SEO strategy is a long-term communications plan.\\n\\nDo you know what the next six months for your website content looks like? What can you offer your customers other than opening hours and where you’re located?\\n\\nBy developing a digital communications strategy, your website gets updated regularly, which helps Google share your message with the right people at the right time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5XBczMM2nF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Potential customers will find you, engage with you and trust you enough to get in touch.\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W1NCV9CxoK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"You have so many options for interesting content. It could be a thought-leadership piece, event, media release, whitepaper, testimonial—the list can go on.\\n\\nWe have a huge amount of communications tools and angles we can develop to bolster your web presence.\\n\\nGoogle also loves a fast, responsive website. Optimising your website by using the latest version of your content management system will ensure your site is running smoothly and as fast as it can.\\n\\nLikewise, this will make your site more secure and help prevent security breaches (particularly important if you use WordPress).\\n\\nWe also offer long-term website maintenance plans. These include detailed server monitoring and ensuring your CMS and plugins are up-to-date.\\n\\nFor more critical sites, we offer zero downtime code-update deployments.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-v9RKLjPOWn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Talk to us about a long-term strategy for your website so it can be more than just another ‘brochure site’.\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27219,30422,1,'Seven mistakes people make building websites','2021-07-30 02:03:25','2021-07-30 02:03:25','ae0de313-489d-4c5c-b814-4c1ca8f934a1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-anLTeFZY0U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Now is the moment.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The advertising you’ve done, the marketing budget you’ve spent, the countless planning meetings your team has attended—all that time and money you’ve invested has driven a potential customer to your website.\\n\\nAfter months—maybe years—of effort, your potential customer will make their decision in seconds.\\n\\nThey may love what they see and continue to be interested. Or they may leave, with their memory of you going up in smoke and your investment with it.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EfutEvAS20\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"That’s why it’s so important to build an effective website.\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZPpIywfo5M\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Framing a website to contain everything you need is challenging. Some websites become too word-heavy, while others lack structure and narrative.\\n\\nGetting your website right from the beginning can save you a lot of pain in the long run.\\n\\nHere\'s our tips to tackling website mistakes.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SUHWHfibhh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"1. Unacknowledged expectations\",\"plainText\":\"What do you expect your website to do for you? You want this investment to count, so be informed, decide what you need and be intentional with your allocated budget.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kEhIZbV4lw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"There are only two options—either start with careful planning and consultation and spend a realistic budget, or jump in with assumptions … and experience scope-creep, frustration and the need to pour more money in later. \\n\\nYour time and money (and sanity) are too valuable to waste on option two. So, choose wisely.\\n\\nIt’s also important to understand the purpose of your website. A website for a website’s sake helps no-one. Your business is unique so your website should be, too. \\n\\nMake it crystal clear—state who you are, what you do and what you promise your customers. \\n\\nSet yourself up for success by providing your developer with a clear website purpose, an informed plan and a predetermined budget.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AvlLtsTA5v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"2. A guess is no good\",\"plainText\":\"Analytics, metrics or key performance indicators (KPIs)—they’re all clever ways to study the website user journey.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KbVtpoSNTv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"What do you need your website to achieve? This will depend on what kind of product or service you offer and the kind of experience you want to create for the user. \\n\\nLay out your objectives and match them with KPIs.\\n\\nThere are plenty of ways to get insight into your website. Consider bounce rates, session duration or pages per session metrics. \\n\\nOr you could sharpen your content strategy by watching goal conversion rates of passive to active website users. \\n\\nUnderstanding your metrics and the goals you want to achieve will also help you to understand how your website interacts with its digital ecosystem.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p5FEdYJwJA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"3. It’s not for you\",\"plainText\":\"It might be about you, but the website isn’t for you. \",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VInDUCQqbf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Optimising your website starts with learning what your users are responding well to. How are they getting to your website? What kind of content are they reading? When do they read it? How long are they staying?\\n\\nBy understanding your metrics you can shape a truly effective website experience for your customers. It’s all in the detail—from content creation to search engine optimisation.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-elwxPOwb2f\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"4. Information overload\",\"plainText\":\"Your website is where your potential customers will go to check your credibility. \",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-07RQSQ8ts5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Credibility is about trust. One way to build trust is to position yourself and your organisation as experts. However, credibility isn’t just about what you know—it’s about who you are. \\n\\nInclude stories and testimonials about you and your organisation to avoid information overload. \\n\\nThen, potential customers will leave your website satisfied that you can be trusted ... and they\'re one step closer to doing business with you.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4aZLU4d7lj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"5. Losing the user\",\"plainText\":\"Many people complain about feeling lost on websites. \",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5Up8K6KfhA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The customer journey should be clear. If the information on your website is simple and structured, you can guide visitors on the path you’d like them to take. \\n\\nUse tabs and sub-pages for different categories, and make it logical. For best results, spend time studying user movements and running trials and tests. \\n\\nOver time your predictions will become more accurate as you get to know your audience.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-J6N6kO7pK4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"6. Wasted words\",\"plainText\":\"Capture your customers quickly.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gvCeMnMMmI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"There are some hallmarks we use when writing web copy. Here are a few of them:\\n\\n- short, effective sentences (say the same information with less)\\n- sub-headings and headings containing keywords\\n- everyday words the average reader can easily understand (plain English)\\n- direct language\\n- consistent, logical structuring of information.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9cFms9o1W6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"7. Don’t be unfriendly\",\"plainText\":\"How does your website display on mobile devices and tablets?\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WNBSOqBQRA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Due to the growth in user visits from non-desktop devices, it’s now safe to say that an unresponsive website—regardless of your industry and demographic—will cost you customers and revenue. \\nWhen your website isn’t responsive, your customers won’t look for the closest desktop computer ... they’ll look for another website. \\n\\nInstead, make your website as friendly as possible to give your customers the same quality of experience online that they experience offline.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27220,30423,1,'Seven mistakes people make building websites','2021-07-30 02:03:43','2021-07-30 02:03:43','c9b92216-0576-4f40-9dc2-1942f1255d9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-anLTeFZY0U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Now is the moment.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The advertising you’ve done, the marketing budget you’ve spent, the countless planning meetings your team has attended—all that time and money you’ve invested has driven a potential customer to your website.\\n\\nAfter months—maybe years—of effort, your potential customer will make their decision in seconds.\\n\\nThey may love what they see and continue to be interested. Or they may leave, with their memory of you going up in smoke and your investment with it.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EfutEvAS20\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"That’s why it’s so important to build an effective website.\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZPpIywfo5M\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Framing a website to contain everything you need is challenging. Some websites become too word-heavy, while others lack structure and narrative.\\n\\nGetting your website right from the beginning can save you a lot of pain in the long run.\\n\\nHere\'s our tips to tackling website mistakes.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SUHWHfibhh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"1. Unacknowledged expectations\",\"plainText\":\"What do you expect your website to do for you? You want this investment to count, so be informed, decide what you need and be intentional with your allocated budget.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kEhIZbV4lw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"There are only two options—either start with careful planning and consultation and spend a realistic budget, or jump in with assumptions … and experience scope-creep, frustration and the need to pour more money in later. \\n\\nYour time and money (and sanity) are too valuable to waste on option two. So, choose wisely.\\n\\nIt’s also important to understand the purpose of your website. A website for a website’s sake helps no-one. Your business is unique so your website should be, too. \\n\\nMake it crystal clear—state who you are, what you do and what you promise your customers. \\n\\nSet yourself up for success by providing your developer with a clear website purpose, an informed plan and a predetermined budget.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AvlLtsTA5v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"2. A guess is no good\",\"plainText\":\"Analytics, metrics or key performance indicators (KPIs)—they’re all clever ways to study the website user journey.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KbVtpoSNTv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"What do you need your website to achieve? This will depend on what kind of product or service you offer and the kind of experience you want to create for the user. \\n\\nLay out your objectives and match them with KPIs.\\n\\nThere are plenty of ways to get insight into your website. Consider bounce rates, session duration or pages per session metrics. \\n\\nOr you could sharpen your content strategy by watching goal conversion rates of passive to active website users. \\n\\nUnderstanding your metrics and the goals you want to achieve will also help you to understand how your website interacts with its digital ecosystem.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p5FEdYJwJA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"3. It’s not for you\",\"plainText\":\"It might be about you, but the website isn’t for you. \",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VInDUCQqbf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Optimising your website starts with learning what your users are responding well to. How are they getting to your website? What kind of content are they reading? When do they read it? How long are they staying?\\n\\nBy understanding your metrics you can shape a truly effective website experience for your customers. It’s all in the detail—from content creation to search engine optimisation.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-elwxPOwb2f\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"4. Information overload\",\"plainText\":\"Your website is where your potential customers will go to check your credibility. \",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-07RQSQ8ts5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Credibility is about trust. One way to build trust is to position yourself and your organisation as experts. However, credibility isn’t just about what you know—it’s about who you are. \\n\\nInclude stories and testimonials about you and your organisation to avoid information overload. \\n\\nThen, potential customers will leave your website satisfied that you can be trusted ... and they\'re one step closer to doing business with you.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4aZLU4d7lj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"5. Losing the user\",\"plainText\":\"Many people complain about feeling lost on websites. \",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5Up8K6KfhA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The customer journey should be clear. If the information on your website is simple and structured, you can guide visitors on the path you’d like them to take. \\n\\nUse tabs and sub-pages for different categories, and make it logical. For best results, spend time studying user movements and running trials and tests. \\n\\nOver time your predictions will become more accurate as you get to know your audience.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-J6N6kO7pK4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"6. Wasted words\",\"plainText\":\"Capture your customers quickly.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gvCeMnMMmI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"There are some hallmarks we use when writing web copy. Here are a few of them:\\n\\n- short, effective sentences (say the same information with less)\\n- sub-headings and headings containing keywords\\n- everyday words the average reader can easily understand (plain English)\\n- direct language\\n- consistent, logical structuring of information.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9cFms9o1W6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"7. Don’t be unfriendly\",\"plainText\":\"How does your website display on mobile devices and tablets?\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WNBSOqBQRA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Due to the growth in user visits from non-desktop devices, it’s now safe to say that an unresponsive website—regardless of your industry and demographic—will cost you customers and revenue. \\nWhen your website isn’t responsive, your customers won’t look for the closest desktop computer ... they’ll look for another website. \\n\\nInstead, make your website as friendly as possible to give your customers the same quality of experience online that they experience offline.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27222,30425,1,'About us','2021-08-06 00:26:34','2021-08-06 00:26:34','740875fd-c95e-4ede-b9fa-2b43d07af41f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/work\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/work\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":\"1\",\"fields\":{\"gridItems\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\",\"new6\"],\"blocks\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Many of our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}}}},\"buttons\":\"\",\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Find out what this means\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"\",\"buttonStyle\":\"outline\",\"buttonColour\":\"white\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"for **us** and **you...**\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"#\",\"buttonStyle\":\"link\",\"buttonColour\":\"white\"}}}},\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17910\",\"17881\",\"17848\",\"17934\",\"1\",\"17887\",\"21898\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Stategy\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"\",\"buttonImage\":[\"21910\"],\"internalLink\":\"\",\"externalLink\":\"#footer\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27224,30427,1,'Coomera Anglican College','2021-08-06 06:46:16','2022-08-12 03:45:45','e2897b2e-9683-4077-8be9-1e66df1c7e4e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Anything is possible campaign',NULL,NULL,'This campaign is bridging the gap between Coomera Anglican College\'s storied past and bold future. It\'s a powerful positioning piece that\'s standing the college out from the crowd and showcasing it as the school of choice on the northern Gold Coast.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-B24Vguyo08\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30448\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-I4OkseByw6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Storied past, bold future\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Coomera Anglican College is heavily storied. It’s done a lot of work to capture its history and moments. As result, there is a lot of heritage and tradition for a relatively young school (just 25 years).\\n\\nThe college has set a strong future of innovation and entrepreneurship. It has appointed a deputy principal whose whole focus is innovation. It also has an exceptionally future-focused business manager who is sports-obsessed with big dreams.\\n\\nOur work is helping the college bridge the gap from the past to an exciting future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3S8xZRT3yd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30447\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1dcAEtVD40\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Following focus groups, in-depth interviews, a competitor analysis and a brand refresh in 2020, we embarked on developing a new public-facing campaign to help the college continue to position itself as the private school of choice for the rapidly growing northern Gold Coast region.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7mko9XHUCj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30449\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-27uMRCFOVx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"In order to stand out in the crowded private school space, we looked outside of schools for inspiration—drawing from global sports and technology brands.\\n\\nThis campaign steers right away from traditional school advertising: think students standing and smiling in their school uniforms, older and younger students holding hands and walking through manicured school grounds, girls in safety glasses huddled over a beaker and Bunsen burner.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EkVYlvmrxM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30444\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ek8exDfZlT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The result is a powerful cinematic masterpiece: dramatic, inspirational and compelling. The script was drawn from lyrics of the college’s traditional song. Paired with the inspiring footage, the video effectively acknowledges the past while painting a vivid picture of the future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IGcqD2p42y\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30445\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CUjY0m7ysa\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“It was a pleasure working with New Word Order to develop the new creative for our College. They took the time to get to know what makes our college unique, and helped put that into tangible storytelling.”\",\"plainText\":\"— Aimee Barlett, Marketing and Communications Manager at Coomera Anglican College\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Ja5zJfaN0T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30446\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Coomera Anglican College','This campaign is bridging the gap between Coomera Anglican College\'s storied past and bold future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27225,30428,1,'Coomera Anglican College','2021-08-06 06:54:09','2021-08-06 06:54:09','c44ddd51-b66f-4d59-93e7-0102529c607a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27226,30429,1,'Coomera Anglican College','2021-08-06 07:05:52','2021-08-06 07:05:52','c717b4d4-36ef-40c1-93e4-10d2c5b801b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Storied past, bold future',NULL,NULL,'Coomera Anglican College is heavily storied. It’s done a lot of work to capture its history and moments. As result, there is a lot of heritage and tradition for a relatively young school (just 25 years).\n\nThe college has set a strong future of innovation and entrepreneurship. It has appointed a deputy principal whose whole focus is innovation. It also has an exceptionally future-focused business manager who is sports-obsessed with big dreams.\n\nOur work is helping the college bridge the gap from the past to an exciting future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1dcAEtVD40\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Following focus groups, in-depth interviews, a competitor analysis and a brand refresh in 2020, we embarked on developing a new public-facing campaign to help the college continue to position itself as the private school of choice for the rapidly growing northern Gold Coast region. \",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-27uMRCFOVx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"In order to stand out in the crowded private school space, we looked outside of schools for inspiration—drawing from global sports and technology brands.\\n\\nThis campaign steers right away from traditional school advertising: think students standing and smiling in their school uniforms, older and younger students holding hands and walking through manicured school grounds, girls in safety glasses huddled over a beaker and Bunsen burner. \",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ek8exDfZlT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The result is a powerful cinematic masterpiece: dramatic, inspirational and compelling. The script was drawn from lyrics of the college’s traditional song. Paired with the inspiring footage, the video effectively acknowledges the past while painting a vivid picture of the future. \",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CUjY0m7ysa\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“It was a pleasure working with New Word Order to develop the new creative for our College. They took the time to get to know what makes our college unique, and helped put that into tangible storytelling.”\",\"plainText\":\"— Aimee Barlett, Marketing and Communications Manager at Coomera Anglican College\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27228,30431,1,'Coomera Anglican College','2021-08-06 07:11:15','2021-08-06 07:11:15','7b4d3a06-8fbc-4dc2-8133-e1103e1b3f7a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Anything is Possible',NULL,NULL,'This campaign is bridging the gap between Coomera Anglican College\'s storied past and bold future. It\'s a powerful positioning piece that\'s standing the college out from the crowd and showcasing it as the school of choice on the northern Gold Coast.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-I4OkseByw6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Storied past, bold future\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Coomera Anglican College is heavily storied. It’s done a lot of work to capture its history and moments. As result, there is a lot of heritage and tradition for a relatively young school (just 25 years).\\n\\nThe college has set a strong future of innovation and entrepreneurship. It has appointed a deputy principal whose whole focus is innovation. It also has an exceptionally future-focused business manager who is sports-obsessed with big dreams.\\n\\nOur work is helping the college bridge the gap from the past to an exciting future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1dcAEtVD40\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Following focus groups, in-depth interviews, a competitor analysis and a brand refresh in 2020, we embarked on developing a new public-facing campaign to help the college continue to position itself as the private school of choice for the rapidly growing northern Gold Coast region.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-27uMRCFOVx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"In order to stand out in the crowded private school space, we looked outside of schools for inspiration—drawing from global sports and technology brands.\\n\\nThis campaign steers right away from traditional school advertising: think students standing and smiling in their school uniforms, older and younger students holding hands and walking through manicured school grounds, girls in safety glasses huddled over a beaker and Bunsen burner.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ek8exDfZlT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The result is a powerful cinematic masterpiece: dramatic, inspirational and compelling. The script was drawn from lyrics of the college’s traditional song. Paired with the inspiring footage, the video effectively acknowledges the past while painting a vivid picture of the future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CUjY0m7ysa\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“It was a pleasure working with New Word Order to develop the new creative for our College. They took the time to get to know what makes our college unique, and helped put that into tangible storytelling.”\",\"plainText\":\"— Aimee Barlett, Marketing and Communications Manager at Coomera Anglican College\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27230,30433,1,NULL,'2021-08-12 00:15:26','2023-03-09 04:28:32','8b653310-b064-4870-9da5-45ca8dd4656f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Account manager',NULL,NULL,NULL,'#### Margaret is well-known as the woman who gets things done.\n\nShe’s thorough, relentless and tenacious in her approach to account management, as well as being an all-round delight to be around. Her decade-long career has spanned multiple Brisbane agencies and national brands. Just because she’s not busy enough raising a young family and orchestrating massive projects, she’s also investing in the next generation of marketers by teaching at QUT.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'blue',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27231,30434,1,'Smartcane BMP sugarcane photography still','2021-08-12 00:56:33','2021-10-05 06:44:26','296cdca3-5372-4485-bde6-91499d2dc93a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/Smartcane-BMP_global.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/Smartcane-BMP_global.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/Smartcane-BMP_global.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/Smartcane-BMP_global.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/Smartcane-BMP_global.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/Smartcane-BMP_global.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/Smartcane-BMP_global.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/Smartcane-BMP_global.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/Smartcane-BMP_global.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/Smartcane-BMP_global.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/Smartcane-BMP_global.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/Smartcane-BMP_global.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"1280\":853,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2500\",\"originalImageHeight\":\"1667\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AtQeK7eWVi0RAH+3/APWq2PFtmU+6wHI6/wD1q8/i6y/RqfOT83J/yKyu+5Vj/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#454023\",\"#e2e2dd\",\"#b0b58d\",\"#949262\",\"#a99996\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27233,30436,1,'Smartcane BMP factsheets collage','2021-08-12 01:35:40','2021-10-05 06:43:58','53360a6f-a1b2-4170-8fbb-8805ea5041ee',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1126_crop_center-center_82_line/Canegrowers_factsheets-mockup_1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2252_crop_center-center_82_line/Canegrowers_factsheets-mockup_1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x938_crop_center-center_82_line/Canegrowers_factsheets-mockup_1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1877_crop_center-center_82_line/Canegrowers_factsheets-mockup_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x750_crop_center-center_82_line/Canegrowers_factsheets-mockup_1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1501_crop_center-center_82_line/Canegrowers_factsheets-mockup_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x563_crop_center-center_82_line/Canegrowers_factsheets-mockup_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x469_crop_center-center_82_line/Canegrowers_factsheets-mockup_1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1126_crop_center-center_82_line/Canegrowers_factsheets-mockup_1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2252_crop_center-center_82_line/Canegrowers_factsheets-mockup_1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x938_crop_center-center_82_line/Canegrowers_factsheets-mockup_1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1877_crop_center-center_82_line/Canegrowers_factsheets-mockup_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x750_crop_center-center_82_line/Canegrowers_factsheets-mockup_1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1501_crop_center-center_82_line/Canegrowers_factsheets-mockup_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x563_crop_center-center_82_line/Canegrowers_factsheets-mockup_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x469_crop_center-center_82_line/Canegrowers_factsheets-mockup_1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1126,\"3072\":2252,\"1280\":938,\"2560\":1877,\"1024\":750,\"2048\":1501,\"768\":563,\"640\":469},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"4000\",\"originalImageHeight\":\"2933\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A2JplDbb0hX/g2yYyAfwpk8jMyLd+bGM4jKuFLHHPepdJdpIpC2CcjtiqWjzSS3t2kjFlVFIB7ZotfUR//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c3c7cb\",\"#3c3a38\",\"#7b934b\",\"#328a98\",\"#807d7b\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":1126,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27235,30438,1,'Smartcane BMP image of laptop displaying website','2021-08-12 03:24:12','2021-10-05 06:41:54','1dca4e3b-7d51-4568-b9e1-95f91ec8bfa0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/Smartcane-BMP_website.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/Smartcane-BMP_website.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/Smartcane-BMP_website.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/Smartcane-BMP_website.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/Smartcane-BMP_website.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/Smartcane-BMP_website.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/Smartcane-BMP_website.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/Smartcane-BMP_website.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/Smartcane-BMP_website.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/Smartcane-BMP_website.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/Smartcane-BMP_website.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/Smartcane-BMP_website.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"1280\":853,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2500\",\"originalImageHeight\":\"1667\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A1WJiI2v95Q/YZJ6DJ/CjTWjuZJLqaSKMhtpIffnABxu6flUkiK95ppZQx3OckZ6DisK8kkj3CN2UBuApxjg1LHGB/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ced3ca\",\"#2e3032\",\"#788c87\",\"#724a43\",\"#7f8e54\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27238,30441,1,'Coomera Anglican College photography still basketball action shot','2021-08-12 03:40:51','2022-06-27 02:56:52','2a0c6eed-cc19-4737-85a9-552687c00ac4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/21_COOMERA-WEB-5_Global.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2049_crop_center-center_82_line/21_COOMERA-WEB-5_Global.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/21_COOMERA-WEB-5_Global.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1707_crop_center-center_82_line/21_COOMERA-WEB-5_Global.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x683_crop_center-center_82_line/21_COOMERA-WEB-5_Global.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1366_crop_center-center_82_line/21_COOMERA-WEB-5_Global.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/21_COOMERA-WEB-5_Global.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/21_COOMERA-WEB-5_Global.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/21_COOMERA-WEB-5_Global.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2049_crop_center-center_82_line/21_COOMERA-WEB-5_Global.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/21_COOMERA-WEB-5_Global.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1707_crop_center-center_82_line/21_COOMERA-WEB-5_Global.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x683_crop_center-center_82_line/21_COOMERA-WEB-5_Global.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1366_crop_center-center_82_line/21_COOMERA-WEB-5_Global.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/21_COOMERA-WEB-5_Global.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/21_COOMERA-WEB-5_Global.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"3072\":2049,\"1280\":853,\"2560\":1707,\"1024\":683,\"2048\":1366,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"8192\",\"originalImageHeight\":\"5464\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A0Gso/tEMLJuklzgYHQdaspp0bxLJFgo3Q4xUHhp2mazklYySeT95jk9T3rZ0jnS4s88v/wChGr53e5nyLY//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#bcccd6\",\"#2a393c\",\"#6993b4\",\"#60463f\",\"#746758\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27239,30442,1,'Coomera Anglican College','2021-08-12 03:41:27','2021-08-12 03:41:27','dd1f275d-70cd-49c4-90b8-cd83fbdfa8b3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Anything is Possible',NULL,NULL,'This campaign is bridging the gap between Coomera Anglican College\'s storied past and bold future. It\'s a powerful positioning piece that\'s standing the college out from the crowd and showcasing it as the school of choice on the northern Gold Coast.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-I4OkseByw6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Storied past, bold future\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Coomera Anglican College is heavily storied. It’s done a lot of work to capture its history and moments. As result, there is a lot of heritage and tradition for a relatively young school (just 25 years).\\n\\nThe college has set a strong future of innovation and entrepreneurship. It has appointed a deputy principal whose whole focus is innovation. It also has an exceptionally future-focused business manager who is sports-obsessed with big dreams.\\n\\nOur work is helping the college bridge the gap from the past to an exciting future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1dcAEtVD40\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Following focus groups, in-depth interviews, a competitor analysis and a brand refresh in 2020, we embarked on developing a new public-facing campaign to help the college continue to position itself as the private school of choice for the rapidly growing northern Gold Coast region.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-27uMRCFOVx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"In order to stand out in the crowded private school space, we looked outside of schools for inspiration—drawing from global sports and technology brands.\\n\\nThis campaign steers right away from traditional school advertising: think students standing and smiling in their school uniforms, older and younger students holding hands and walking through manicured school grounds, girls in safety glasses huddled over a beaker and Bunsen burner.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ek8exDfZlT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The result is a powerful cinematic masterpiece: dramatic, inspirational and compelling. The script was drawn from lyrics of the college’s traditional song. Paired with the inspiring footage, the video effectively acknowledges the past while painting a vivid picture of the future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CUjY0m7ysa\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“It was a pleasure working with New Word Order to develop the new creative for our College. They took the time to get to know what makes our college unique, and helped put that into tangible storytelling.”\",\"plainText\":\"— Aimee Barlett, Marketing and Communications Manager at Coomera Anglican College\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27241,30444,1,'Coomera Anglican College academic prospectus three pages','2021-08-12 03:43:00','2022-06-27 02:56:34','8fecdb5f-5b76-4490-b6d6-3eb475ee00ea',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1085_crop_center-center_82_line/21_COOMERA-WEB-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x904_crop_center-center_82_line/21_COOMERA-WEB-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x723_crop_center-center_82_line/21_COOMERA-WEB-1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1447_crop_center-center_82_line/21_COOMERA-WEB-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x542_crop_center-center_82_line/21_COOMERA-WEB-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x452_crop_center-center_82_line/21_COOMERA-WEB-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1085_crop_center-center_82_line/21_COOMERA-WEB-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x904_crop_center-center_82_line/21_COOMERA-WEB-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x723_crop_center-center_82_line/21_COOMERA-WEB-1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1447_crop_center-center_82_line/21_COOMERA-WEB-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x542_crop_center-center_82_line/21_COOMERA-WEB-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x452_crop_center-center_82_line/21_COOMERA-WEB-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1085,\"1280\":904,\"1024\":723,\"2048\":1447,\"768\":542,\"640\":452},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2500\",\"originalImageHeight\":\"1767\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A0Imun8TXyPNMYYinloJMKuQDyO9aun3SzwjzHG/eU5wMkGrSKH1edXUMBEmAR7mnX6KluhRQpWVCMDp8wpDP/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dedcda\",\"#232227\",\"#7d5f54\",\"#8a8c8a\",\"#947969\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":1085,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27242,30445,1,'Coomera Anglican College photography stills collage garden','2021-08-12 03:43:35','2022-06-27 02:56:48','0d5ce57b-d0d5-4853-8324-60cdaa0f4603',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x842_crop_center-center_82_line/21_COOMERA-WEB-42.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x702_crop_center-center_82_line/21_COOMERA-WEB-42.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x561_crop_center-center_82_line/21_COOMERA-WEB-42.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x421_crop_center-center_82_line/21_COOMERA-WEB-42.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x351_crop_center-center_82_line/21_COOMERA-WEB-42.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x842_crop_center-center_82_line/21_COOMERA-WEB-42.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x702_crop_center-center_82_line/21_COOMERA-WEB-42.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x561_crop_center-center_82_line/21_COOMERA-WEB-42.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x421_crop_center-center_82_line/21_COOMERA-WEB-42.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x351_crop_center-center_82_line/21_COOMERA-WEB-42.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":842,\"1280\":702,\"1024\":561,\"768\":421,\"640\":351},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2000\",\"originalImageHeight\":\"1097\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AqahfJqcUksj7ZGUkYXpjp+HPpVeOebT23pC2xArO0ZyF478+vr6UUVkopuzLfc//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#433c2f\",\"#dac9a2\",\"#917c56\",\"#a5ae6a\",\"#9594a1\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":842,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27243,30446,1,'Coomera Anglican College \'anything is possible\' sports collage','2021-08-12 03:44:02','2022-06-27 02:56:40','cdf77cee-5de0-4814-afb5-696d784a11d1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x841_crop_center-center_82_line/21_COOMERA-WEB-3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x701_crop_center-center_82_line/21_COOMERA-WEB-3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x561_crop_center-center_82_line/21_COOMERA-WEB-3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1122_crop_center-center_82_line/21_COOMERA-WEB-3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x420_crop_center-center_82_line/21_COOMERA-WEB-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x350_crop_center-center_82_line/21_COOMERA-WEB-3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x841_crop_center-center_82_line/21_COOMERA-WEB-3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x701_crop_center-center_82_line/21_COOMERA-WEB-3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x561_crop_center-center_82_line/21_COOMERA-WEB-3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1122_crop_center-center_82_line/21_COOMERA-WEB-3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x420_crop_center-center_82_line/21_COOMERA-WEB-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x350_crop_center-center_82_line/21_COOMERA-WEB-3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":841,\"1280\":701,\"1024\":561,\"2048\":1122,\"768\":420,\"640\":350},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2500\",\"originalImageHeight\":\"1370\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A0nmje+CdY1GCUwcknH6Yqte28YgkTa29vkGDjBP/AOsZooq1JtGTVmf/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#8cacbc\",\"#233734\",\"#5c3931\",\"#dfdfdd\",\"#87654f\"],\"lightness\":46,\"placeholderWidth\":1536,\"placeholderHeight\":841,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27244,30447,1,'Coomera Anglican College billboard','2021-08-12 03:44:22','2022-06-27 02:56:37','2db7adb4-0a1c-45ef-8852-d03ef2087d01',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1195_crop_center-center_82_line/21_COOMERA-WEB-2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x996_crop_center-center_82_line/21_COOMERA-WEB-2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x797_crop_center-center_82_line/21_COOMERA-WEB-2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1594_crop_center-center_82_line/21_COOMERA-WEB-2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x597_crop_center-center_82_line/21_COOMERA-WEB-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x498_crop_center-center_82_line/21_COOMERA-WEB-2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1195_crop_center-center_82_line/21_COOMERA-WEB-2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x996_crop_center-center_82_line/21_COOMERA-WEB-2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x797_crop_center-center_82_line/21_COOMERA-WEB-2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1594_crop_center-center_82_line/21_COOMERA-WEB-2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x597_crop_center-center_82_line/21_COOMERA-WEB-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x498_crop_center-center_82_line/21_COOMERA-WEB-2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1195,\"1280\":996,\"1024\":797,\"2048\":1594,\"768\":597,\"640\":498},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2500\",\"originalImageHeight\":\"1946\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AhEcOP3sm0j+VSs8DxlYFhbbwcck+5q1PaW8t5mSFGJVs5HuP8abBawRSymOMLyBwT0wOK6nK5zJH/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#638bb2\",\"#0d284a\",\"#bbc3cb\",\"#4b4a4d\",\"#9cc6e6\"],\"lightness\":46,\"placeholderWidth\":1536,\"placeholderHeight\":1195,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27245,30448,1,'Coomera Anglican College photography stills collage science','2021-08-12 03:44:49','2022-06-27 02:56:45','3c0cc626-6cd5-499b-9c37-67b36edabc51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x842_crop_center-center_82_line/21_COOMERA-WEB-4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x701_crop_center-center_82_line/21_COOMERA-WEB-4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x561_crop_center-center_82_line/21_COOMERA-WEB-4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1123_crop_center-center_82_line/21_COOMERA-WEB-4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x421_crop_center-center_82_line/21_COOMERA-WEB-4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x350_crop_center-center_82_line/21_COOMERA-WEB-4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x842_crop_center-center_82_line/21_COOMERA-WEB-4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x701_crop_center-center_82_line/21_COOMERA-WEB-4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x561_crop_center-center_82_line/21_COOMERA-WEB-4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1123_crop_center-center_82_line/21_COOMERA-WEB-4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x421_crop_center-center_82_line/21_COOMERA-WEB-4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x350_crop_center-center_82_line/21_COOMERA-WEB-4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":842,\"1280\":701,\"1024\":561,\"2048\":1123,\"768\":421,\"640\":350},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2500\",\"originalImageHeight\":\"1371\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A519CkaySa0/0g5IbYCR/n/GkA+zCWz2sPkJCscZzz+lFFO7jsOK5lqf/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#b4a3a6\",\"#181622\",\"#699fa8\",\"#6a4e54\",\"#36729d\"],\"lightness\":43,\"placeholderWidth\":1536,\"placeholderHeight\":842,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27246,30449,1,'Coomera Anglican College \'anything is possible\' image collage_2','2021-08-12 03:45:20','2022-06-27 02:56:43','fb3d3ed4-b626-49b8-ad56-69f7dca9b71b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x841_crop_center-center_82_line/21_COOMERA-WEB-32.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x701_crop_center-center_82_line/21_COOMERA-WEB-32.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x561_crop_center-center_82_line/21_COOMERA-WEB-32.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1122_crop_center-center_82_line/21_COOMERA-WEB-32.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x420_crop_center-center_82_line/21_COOMERA-WEB-32.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x350_crop_center-center_82_line/21_COOMERA-WEB-32.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x841_crop_center-center_82_line/21_COOMERA-WEB-32.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x701_crop_center-center_82_line/21_COOMERA-WEB-32.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x561_crop_center-center_82_line/21_COOMERA-WEB-32.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1122_crop_center-center_82_line/21_COOMERA-WEB-32.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x420_crop_center-center_82_line/21_COOMERA-WEB-32.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x350_crop_center-center_82_line/21_COOMERA-WEB-32.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":841,\"1280\":701,\"1024\":561,\"2048\":1122,\"768\":420,\"640\":350},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2500\",\"originalImageHeight\":\"1370\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A17jauqrEyNn5UwD1z3Az/nFUnnglSXMYIKjGT/8AW69KKKidSS2E4LQ//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#b4c3c8\",\"#7b7e45\",\"#252b31\",\"#624635\",\"#6a8a9a\"],\"lightness\":45,\"placeholderWidth\":1536,\"placeholderHeight\":841,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27247,30450,1,'Coomera Anglican College','2021-08-12 04:01:48','2021-08-12 04:01:48','7e47eb41-d0ed-425f-aecf-7028c00f3092',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Anything is Possible',NULL,NULL,'This campaign is bridging the gap between Coomera Anglican College\'s storied past and bold future. It\'s a powerful positioning piece that\'s standing the college out from the crowd and showcasing it as the school of choice on the northern Gold Coast.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3S8xZRT3yd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30447\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-I4OkseByw6\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Storied past, bold future\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Coomera Anglican College is heavily storied. It’s done a lot of work to capture its history and moments. As result, there is a lot of heritage and tradition for a relatively young school (just 25 years).\\n\\nThe college has set a strong future of innovation and entrepreneurship. It has appointed a deputy principal whose whole focus is innovation. It also has an exceptionally future-focused business manager who is sports-obsessed with big dreams.\\n\\nOur work is helping the college bridge the gap from the past to an exciting future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-B24Vguyo08\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30448\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1dcAEtVD40\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Following focus groups, in-depth interviews, a competitor analysis and a brand refresh in 2020, we embarked on developing a new public-facing campaign to help the college continue to position itself as the private school of choice for the rapidly growing northern Gold Coast region.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7mko9XHUCj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30449\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-27uMRCFOVx\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"In order to stand out in the crowded private school space, we looked outside of schools for inspiration—drawing from global sports and technology brands.\\n\\nThis campaign steers right away from traditional school advertising: think students standing and smiling in their school uniforms, older and younger students holding hands and walking through manicured school grounds, girls in safety glasses huddled over a beaker and Bunsen burner.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EkVYlvmrxM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30444\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ek8exDfZlT\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The result is a powerful cinematic masterpiece: dramatic, inspirational and compelling. The script was drawn from lyrics of the college’s traditional song. Paired with the inspiring footage, the video effectively acknowledges the past while painting a vivid picture of the future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IGcqD2p42y\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30445\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CUjY0m7ysa\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“It was a pleasure working with New Word Order to develop the new creative for our College. They took the time to get to know what makes our college unique, and helped put that into tangible storytelling.”\",\"plainText\":\"— Aimee Barlett, Marketing and Communications Manager at Coomera Anglican College\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Ja5zJfaN0T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30446\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27249,30452,1,'Coomera Anglican College','2021-08-12 04:42:21','2021-08-12 04:42:21','4ba5c462-a773-471c-a3b4-348f35797077',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Anything is Possible',NULL,NULL,'This campaign is bridging the gap between Coomera Anglican College\'s storied past and bold future. It\'s a powerful positioning piece that\'s standing the college out from the crowd and showcasing it as the school of choice on the northern Gold Coast.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-B24Vguyo08\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30448\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-I4OkseByw6\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Storied past, bold future\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Coomera Anglican College is heavily storied. It’s done a lot of work to capture its history and moments. As result, there is a lot of heritage and tradition for a relatively young school (just 25 years).\\n\\nThe college has set a strong future of innovation and entrepreneurship. It has appointed a deputy principal whose whole focus is innovation. It also has an exceptionally future-focused business manager who is sports-obsessed with big dreams.\\n\\nOur work is helping the college bridge the gap from the past to an exciting future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3S8xZRT3yd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30447\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1dcAEtVD40\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Following focus groups, in-depth interviews, a competitor analysis and a brand refresh in 2020, we embarked on developing a new public-facing campaign to help the college continue to position itself as the private school of choice for the rapidly growing northern Gold Coast region.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7mko9XHUCj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30449\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-27uMRCFOVx\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"In order to stand out in the crowded private school space, we looked outside of schools for inspiration—drawing from global sports and technology brands.\\n\\nThis campaign steers right away from traditional school advertising: think students standing and smiling in their school uniforms, older and younger students holding hands and walking through manicured school grounds, girls in safety glasses huddled over a beaker and Bunsen burner.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EkVYlvmrxM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30444\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ek8exDfZlT\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The result is a powerful cinematic masterpiece: dramatic, inspirational and compelling. The script was drawn from lyrics of the college’s traditional song. Paired with the inspiring footage, the video effectively acknowledges the past while painting a vivid picture of the future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IGcqD2p42y\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30445\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CUjY0m7ysa\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“It was a pleasure working with New Word Order to develop the new creative for our College. They took the time to get to know what makes our college unique, and helped put that into tangible storytelling.”\",\"plainText\":\"— Aimee Barlett, Marketing and Communications Manager at Coomera Anglican College\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Ja5zJfaN0T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30446\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27251,30454,1,'Pretty or powerful? And can you have it all?','2021-08-13 04:45:47','2021-08-13 04:45:47','7d0da149-bdd1-4b59-9d57-d8dfee3dd714',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UxDAMYmx0G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Being a commercial creative means someone is hoping, expecting and paying for a result.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But just because something is creative in its execution doesn’t mean it’s going to be effective in achieving its goal.\\n\\nHere are five pitfalls to avoid when procuring creative services:\\n\\n1. Hiring a single creative, like a designer, to be a whole creative team. Your supplier will end up working in one strength and many weaknesses.\\n2. Procuring from a supplier who can use design software but isn’t a designer. The work will miss the mark despite looking okay.\\n3. Working with a graphic designer who isn’t skilled in the type of design you need (like brand design). You’ll get a pretty logo lacking in brand story and meaning.\\n4. Jumping straight into design without a strategy. You’ll receive design work that’s lovely, even beautiful… but not strategic.\\n5. Failing to define what success looks like. Your supplier’s work will lack purpose. Instead, make sure you have a clear goal that measures the biggest outcome of all: return on investment.\\n\\nSo yes, creative work can be both pretty and powerful. And you can have it all… if you invest in a team of strategically focused creatives.\\n\\nCreative agencies cost more but are teams for a reason. **We\'re much more powerful together than on our own.**\\n\\nJust like a hand of aces verses a single 3.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27253,30456,1,'Pretty or powerful? And can you have it all?','2021-08-13 04:46:40','2021-08-13 04:46:40','011c5a7e-1bb9-4224-a4f9-d392549c4b9d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UxDAMYmx0G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Being a commercial creative means someone is hoping, expecting and paying for a result.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But just because something is creative in its execution doesn’t mean it’s going to be effective in achieving its goal.\\n\\nHere are five pitfalls to avoid when procuring creative services:\\n\\n1. Hiring a single creative, like a designer, to be a whole creative team. Your supplier will end up working in one strength and many weaknesses.\\n2. Procuring from a supplier who can use design software but isn’t a designer. The work will miss the mark despite looking okay.\\n3. Working with a graphic designer who isn’t skilled in the type of design you need (like brand design). You’ll get a pretty logo lacking in brand story and meaning.\\n4. Jumping straight into design without a strategy. You’ll receive design work that’s lovely, even beautiful… but not strategic.\\n5. Failing to define what success looks like. Your supplier’s work will lack purpose. Instead, make sure you have a clear goal that measures the biggest outcome of all: return on investment.\\n\\nSo yes, creative work can be both pretty and powerful. And you can have it all… if you invest in a team of strategically focused creatives.\\n\\nCreative agencies cost more but are teams for a reason. **We\'re much more powerful together than on our own.**\\n\\nJust like a hand of aces versus a single 3.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27255,30458,1,'Want to understand your brand? Ask your stakeholders.','2021-08-13 04:53:52','2021-08-13 04:53:52','d9eb9b06-8915-4e38-b2aa-0cd5b07267c5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pb6yRuUQJr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":\"\",\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BpDlpLY30k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Whether they are inside, outside, removed or closely involved—stakeholders have the insight businesses need for long-term growth and sustainability.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"If they are a stakeholder, they have a connection with you.\\n\\nAnd like any other relationship, they need to know their connection, time and opinions are valued.\\n\\nIt often takes an open mind to find what works for you and the stakeholder.\\n\\nFinding this place of mutual benefit can lead to business growth and longevity.\\n\\nWe’ve broken down our approach to nurturing stakeholder relationships for meaningful engagement.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-023wqZnDwH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Your stakeholder is anyone who can be impacted by your business.\",\"plainText\":\"Once you really understand this, you’ll start to notice the cycle of impact between the stakeholder and your business. And, this is partly why we begin to engage with stakeholders—to understand how different groups are responding, reacting or behaving.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZC7YPx4oyi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"But who are they, really?\",\"plainText\":\"Now, go deeper to really understand the nuances of your stakeholder groups.\\n\\nYour engagement plan should be detailed enough to allow for different levels of accessibility, and demographic and cultural considerations. The better you nuance, the greater the feeling of respect and care you’ll engender.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4fsgssb3iu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"What do I need to achieve here?\",\"plainText\":\"There are varying degrees of impact across the common types of engagement—inform, consult, involve, collaborate and empower. Every impact is a win for you.\\n\\nBy inviting stakeholders to provide advice and guidance, you are showing interest and genuine regard for their opinions.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-zK1GdW2Vy7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Let’s talk\",\"plainText\":\"A healthy and productive conversation is two-way. We pursue positive and productive conversations with stakeholders because we need to understand stakeholder perspectives, and we need to hear it from them.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wWO0nagqvx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bye for now\",\"plainText\":\"The conversation will close, but the relationship isn’t over. Stakeholders have given their time, effort and reflections. It’s your turn to respond with accuracy, timeliness and balance.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8YdtZLjoMO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"The truth is, these conversations take patience, a steadfast commitment to values, sometimes sacrifice, and always an open mind.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"At NWO, we care about stakeholder engagement because we regularly witness the impact it has on the health of businesses and organisations.\\n\\nIs it important to you?\\n\\nTalk to us about stakeholder engagement today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27257,30460,1,'Want to understand your brand? Ask your stakeholders.','2021-08-13 04:54:39','2021-08-13 04:54:39','a0ba8975-2bf2-4ed5-97f1-d4de0f0fa47d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pb6yRuUQJr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":\"\",\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BpDlpLY30k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Whether they are inside, outside, removed or closely involved—stakeholders have the insight businesses need for long-term growth and sustainability.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"If they are a stakeholder, they have a connection with you.\\n\\nAnd like any other relationship, they need to know their connection, time and opinions are valued.\\n\\nIt often takes an open mind to find what works for you and the stakeholder.\\n\\nFinding this place of mutual benefit can lead to business growth and longevity.\\n\\nWe’ve broken down our approach to nurturing stakeholder relationships for meaningful engagement.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-023wqZnDwH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Your stakeholder is anyone who can be impacted by your business.\",\"plainText\":\"Once you really understand this, you’ll start to notice the cycle of impact between the stakeholder and your business. And, this is partly why we begin to engage with stakeholders—to understand how different groups are responding, reacting or behaving.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZC7YPx4oyi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"But who are they, really?\",\"plainText\":\"Now, go deeper to really understand the nuances of your stakeholder groups.\\n\\nYour engagement plan should be detailed enough to allow for different levels of accessibility, and demographic and cultural considerations. The better you nuance, the greater the feeling of respect and care you’ll engender.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4fsgssb3iu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"What do I need to achieve here?\",\"plainText\":\"There are varying degrees of impact across the common types of engagement—inform, consult, involve, collaborate and empower. Every impact is a win for you.\\n\\nBy inviting stakeholders to provide advice and guidance, you are showing interest and genuine regard for their opinions.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-zK1GdW2Vy7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Let’s talk\",\"plainText\":\"A healthy and productive conversation is two-way. We pursue positive and productive conversations with stakeholders because we need to understand stakeholder perspectives, and we need to hear it from them.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wWO0nagqvx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bye for now\",\"plainText\":\"The conversation will close, but the relationship isn’t over. Stakeholders have given their time, effort and reflections. It’s your turn to respond with accuracy, timeliness and balance.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8YdtZLjoMO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"The truth is, these conversations take patience, a steadfast commitment to values, sometimes sacrifice, and always an open mind.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"At NWO, we care about stakeholder engagement because we regularly witness the impact it has on the health of businesses and organisations.\\n\\nIs it important to you?\\n\\nTalk to us about stakeholder engagement today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27259,30462,1,'Simplifying the complex: Fifteen years of marketing schools','2021-08-13 04:56:17','2021-08-13 04:56:17','41ab27ec-400d-4107-aa5a-6c83f65f414b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WAYo0QEnCs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"After 20 years of marketing—including 15 years working with schools across Queensland and New South Wales—I am steadfast in my belief that there is no marketing challenge as complex as that faced by schools.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"In what other industry would you find thousands of individual stakeholders—students, parents, teachers, alumni and more—all with do-or-die expectations?\\n\\nOr an environment that can, quite honestly, change the trajectory of children’s lives?\\n\\nThen you have the two very distinct markets—internal and external—often with very different needs that need to be met with minimal budgets.\\n\\nThe experience of school changed little for nearly a century but, in the past 20 years, it has evolved in such leaps and bounds that today’s parents struggle to recognise it.\\n\\nPhilosophically, there are few industries I can think of that have such a strong evidence base to guide practice—here I’m thinking of teaching and learning—yet the required outcome is often diametrically opposed to it. Looking forward to the arrival of ATAR, anyone?\\n\\nIt’s little wonder that I find the business of marketing schools endlessly fascinating.\\n\\nOnly this morning I was in another principal’s office, talking through these very complexities. In our conversation, we touched on what I’ve discovered over the years are three bedrock principles every school needs as their marketing foundation. They’re my way of transforming a little of the complex into the simple.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Esbo1iQq5g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"1. Work out what makes you unique\",\"plainText\":\"Marketing and enrolments teams live and die by their numbers. \\n\\nIt is endlessly tempting, then, to try to go wide in your appeal so that you create the biggest possible net. \\n\\nIn practice, though, it means no-one knows what you stand for. \\n\\nThe better alternative is to embrace what makes you unique and then market that hard. You’ll end up attracting families that are the right fit for you and work hard as your ambassadors. \\n\\nInternally, there’ll be great cohesion, too, because you’ll attract and retain great educators who get what you’re about and support it in their words and actions.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-v1FFRTuEFs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"2. Don’t be afraid to like you’re unique\",\"plainText\":\"If you’re bored one day in your office, try this game. \\n\\nGet ads from three schools, and then block out their hats and uniforms. Can you still tell them apart? \\n\\nIt astounds me that we continue to use sterile, look-alike images—hey, here’s a girl in a lab coat with a test tube as proof that we promote girls in STEM!—that don’t reflect the day-to-day experience of what it is to learn at your school. \\n\\nCelebrate your uniqueness—and set yourself apart from your competitors—by choosing unique visual styles and photography.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cMg5IvARdG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"3. Now stay unique\",\"plainText\":\"Over time, teachers and leaders of schools get to know each other pretty well. \\n\\nPrincipals, in particular, know other schools like bookies know racehorses. The net result in marketing is that your great idea quickly becomes next year’s norm… and after a few years, what was edgy is simply outdated. \\n\\nWise schools invest in a middle ground here. \\n\\nThey start off strong and then review and refresh their brand every year or two. \\n\\nThat way, subtle tweaks don’t destabilise your internal audience but you stay fresh and relevant externally.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3XrIiJiL9w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Want to know more?\",\"plainText\":\"Suzanne advises schools on sustainable marketing strategy that helps them get the most from their internal resources. To chat, phone 07 3334 8340 or email suzanne@newwordorder.com.au.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27261,30464,1,'Simplifying the complex: Fifteen years of marketing schools','2021-08-13 04:56:59','2021-08-13 04:56:59','823d96c6-0d5a-4933-ae1a-88165a978f75',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WAYo0QEnCs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"After 20 years of marketing—including 15 years working with schools across Queensland and New South Wales—I am steadfast in my belief that there is no marketing challenge as complex as that faced by schools.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"In what other industry would you find thousands of individual stakeholders—students, parents, teachers, alumni and more—all with do-or-die expectations?\\n\\nOr an environment that can, quite honestly, change the trajectory of children’s lives?\\n\\nThen you have the two very distinct markets—internal and external—often with very different needs that need to be met with minimal budgets.\\n\\nThe experience of school changed little for nearly a century but, in the past 20 years, it has evolved in such leaps and bounds that today’s parents struggle to recognise it.\\n\\nPhilosophically, there are few industries I can think of that have such a strong evidence base to guide practice—here I’m thinking of teaching and learning—yet the required outcome is often diametrically opposed to it. \\n\\nIt’s little wonder that I find the business of marketing schools endlessly fascinating.\\n\\nOnly this morning I was in another principal’s office, talking through these very complexities. In our conversation, we touched on what I’ve discovered over the years are three bedrock principles every school needs as their marketing foundation. They’re my way of transforming a little of the complex into the simple.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Esbo1iQq5g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"1. Work out what makes you unique\",\"plainText\":\"Marketing and enrolments teams live and die by their numbers. \\n\\nIt is endlessly tempting, then, to try to go wide in your appeal so that you create the biggest possible net. \\n\\nIn practice, though, it means no-one knows what you stand for. \\n\\nThe better alternative is to embrace what makes you unique and then market that hard. You’ll end up attracting families that are the right fit for you and work hard as your ambassadors. \\n\\nInternally, there’ll be great cohesion, too, because you’ll attract and retain great educators who get what you’re about and support it in their words and actions.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-v1FFRTuEFs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"2. Don’t be afraid to like you’re unique\",\"plainText\":\"If you’re bored one day in your office, try this game. \\n\\nGet ads from three schools, and then block out their hats and uniforms. Can you still tell them apart? \\n\\nIt astounds me that we continue to use sterile, look-alike images—hey, here’s a girl in a lab coat with a test tube as proof that we promote girls in STEM!—that don’t reflect the day-to-day experience of what it is to learn at your school. \\n\\nCelebrate your uniqueness—and set yourself apart from your competitors—by choosing unique visual styles and photography.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cMg5IvARdG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"3. Now stay unique\",\"plainText\":\"Over time, teachers and leaders of schools get to know each other pretty well. \\n\\nPrincipals, in particular, know other schools like bookies know racehorses. The net result in marketing is that your great idea quickly becomes next year’s norm… and after a few years, what was edgy is simply outdated. \\n\\nWise schools invest in a middle ground here. \\n\\nThey start off strong and then review and refresh their brand every year or two. \\n\\nThat way, subtle tweaks don’t destabilise your internal audience but you stay fresh and relevant externally.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3XrIiJiL9w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Want to know more?\",\"plainText\":\"Suzanne advises schools on sustainable marketing strategy that helps them get the most from their internal resources. To chat, phone 07 3334 8340 or email suzanne@newwordorder.com.au.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27263,30466,1,'Simplifying the complex: Fifteen years of marketing schools','2021-08-13 04:57:53','2021-08-13 04:57:53','4ffcabbc-f908-4e7c-a5fd-20523defd911',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WAYo0QEnCs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"After 20 years of marketing—including 15 years working with schools across Queensland and New South Wales—I am steadfast in my belief that there is no marketing challenge as complex as that faced by schools.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"In what other industry would you find thousands of individual stakeholders—students, parents, teachers, alumni and more—all with do-or-die expectations?\\n\\nOr an environment that can, quite honestly, change the trajectory of children’s lives?\\n\\nThen you have the two very distinct markets—internal and external—often with very different needs that need to be met with minimal budgets.\\n\\nThe experience of school changed little for nearly a century but, in the past 20 years, it has evolved in such leaps and bounds that today’s parents struggle to recognise it.\\n\\nPhilosophically, there are few industries I can think of that have such a strong evidence base to guide practice—here I’m thinking of teaching and learning—yet the required outcome is often diametrically opposed to it. \\n\\nIt’s little wonder that I find the business of marketing schools endlessly fascinating.\\n\\nOnly this morning I was in another principal’s office, talking through these very complexities. In our conversation, we touched on what I’ve discovered over the years are three bedrock principles every school needs as their marketing foundation. They’re my way of transforming a little of the complex into the simple.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Esbo1iQq5g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"1. Work out what makes you unique\",\"plainText\":\"Marketing and enrolments teams live and die by their numbers. \\n\\nIt is endlessly tempting, then, to try to go wide in your appeal so that you create the biggest possible net. \\n\\nIn practice, though, it means no-one knows what you stand for. \\n\\nThe better alternative is to embrace what makes you unique and then market that hard. You’ll end up attracting families that are the right fit for you and work hard as your ambassadors. \\n\\nInternally, there’ll be great cohesion, too, because you’ll attract and retain great educators who get what you’re about and support it in their words and actions.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-v1FFRTuEFs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"2. Don’t be afraid to look like you’re unique\",\"plainText\":\"If you’re bored one day in your office, try this game. \\n\\nGet ads from three schools, and then block out their hats and uniforms. Can you still tell them apart? \\n\\nIt astounds me that we continue to use sterile, look-alike images—hey, here’s a girl in a lab coat with a test tube as proof that we promote girls in STEM!—that don’t reflect the day-to-day experience of what it is to learn at your school. \\n\\nCelebrate your uniqueness—and set yourself apart from your competitors—by choosing unique visual styles and photography.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cMg5IvARdG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"3. Now stay unique\",\"plainText\":\"Over time, teachers and leaders of schools get to know each other pretty well. \\n\\nPrincipals, in particular, know other schools like bookies know racehorses. The net result in marketing is that your great idea quickly becomes next year’s norm… and after a few years, what was edgy is simply outdated. \\n\\nWise schools invest in a middle ground here. \\n\\nThey start off strong and then review and refresh their brand every year or two. \\n\\nThat way, subtle tweaks don’t destabilise your internal audience but you stay fresh and relevant externally.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3XrIiJiL9w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Want to know more?\",\"plainText\":\"Suzanne advises schools on sustainable marketing strategy that helps them get the most from their internal resources. To chat, phone 07 3334 8340 or email suzanne@newwordorder.com.au.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `content` VALUES (27265,30468,1,'Seven mistakes people make building websites','2021-08-13 06:46:55','2021-08-13 06:46:55','b08065dc-2b79-4728-9514-57b112adcbea',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-anLTeFZY0U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Now is the moment.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The advertising you’ve done, the marketing budget you’ve spent, the countless planning meetings your team has attended—all that time and money you’ve invested has driven a potential customer to your website.\\n\\nAfter months—maybe years—of effort, your potential customer will make their decision in seconds.\\n\\nThey may love what they see and continue to be interested. Or they may leave, with their memory of you going up in smoke and your investment with it.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EfutEvAS20\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"That’s why it’s so important to build an effective website.\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZPpIywfo5M\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Framing a website to contain everything you need is challenging. Some websites become too word-heavy, while others lack structure and narrative.\\n\\nGetting your website right from the beginning can save you a lot of pain in the long run.\\n\\nHere\'s our tips to tackling website mistakes.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SUHWHfibhh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"1. Unacknowledged expectations\",\"plainText\":\"What do you expect your website to do for you? You want this investment to count, so be informed, decide what you need and be intentional with your allocated budget.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kEhIZbV4lw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"There are only two options—either start with careful planning and consultation and spend a realistic budget, or jump in with assumptions … and experience scope-creep, frustration and the need to pour more money in later. \\n\\nYour time and money (and sanity) are too valuable to waste on option two. So, choose wisely.\\n\\nIt’s also important to understand the purpose of your website. A website for a website’s sake helps no-one. Your business is unique so your website should be, too. \\n\\nMake it crystal clear—state who you are, what you do and what you promise your customers. \\n\\nSet yourself up for success by providing your developer with a clear website purpose, an informed plan and a predetermined budget.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AvlLtsTA5v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"2. A guess is no good\",\"plainText\":\"Analytics, metrics or key performance indicators (KPIs)—they’re all clever ways to study the website user journey.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KbVtpoSNTv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"What do you need your website to achieve? This will depend on what kind of product or service you offer and the kind of experience you want to create for the user. \\n\\nLay out your objectives and match them with KPIs.\\n\\nThere are plenty of ways to get insight into your website. Consider bounce rates, session duration or pages per session metrics. \\n\\nOr you could sharpen your content strategy by watching goal conversion rates of passive to active website users. \\n\\nUnderstanding your metrics and the goals you want to achieve will also help you to understand how your website interacts with its digital ecosystem.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p5FEdYJwJA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"3. It’s not for you\",\"plainText\":\"It might be about you, but the website isn’t for you. \",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VInDUCQqbf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Optimising your website starts with learning what your users are responding well to. How are they getting to your website? What kind of content are they reading? When do they read it? How long are they staying?\\n\\nBy understanding your metrics you can shape a truly effective website experience for your customers. It’s all in the detail—from content creation to search engine optimisation.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-elwxPOwb2f\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"4. Information overload\",\"plainText\":\"Your website is where your potential customers will go to check your credibility. \",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-07RQSQ8ts5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Credibility is about trust. One way to build trust is to position yourself and your organisation as experts. However, credibility isn’t just about what you know—it’s about who you are. \\n\\nInclude stories and testimonials about you and your organisation to avoid information overload. \\n\\nThen, potential customers will leave your website satisfied that you can be trusted ... and they\'re one step closer to doing business with you.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4aZLU4d7lj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"5. Losing the user\",\"plainText\":\"Many people complain about feeling lost on websites. \",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5Up8K6KfhA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The customer journey should be clear. If the information on your website is simple and structured, you can guide visitors on the path you’d like them to take. \\n\\nUse tabs and sub-pages for different categories, and make it logical. For best results, spend time studying user movements and running trials and tests. \\n\\nOver time your predictions will become more accurate as you get to know your audience.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-J6N6kO7pK4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"6. Wasted words\",\"plainText\":\"Capture your customers quickly.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gvCeMnMMmI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"There are some hallmarks we use when writing web copy. Here are a few of them:\\n\\n- short, effective sentences (say the same information with less)\\n- sub-headings and headings containing keywords\\n- everyday words the average reader can easily understand (plain English)\\n- direct language\\n- consistent, logical structuring of information.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9cFms9o1W6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"7. Don\'t be unfriendly\",\"plainText\":\"How does your website display on mobile devices and tablets?\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WNBSOqBQRA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The majority of the time, someone will be visiting your website on their phone (68.1% in 2020 to be exact). That means when it comes to your website design, it\'s not enough that your website simply works on mobile. It needs to be designed with mobile in mind **first**.\\n\\nIf your website doesn\'t look amazing and function seamlessly on mobile, your customers won\'t go looking for their nearest desktop computer...  they\'ll look for another website. \\n\\nWhat kind of service do you give your customers in person? Ensure they experience the same quality on your website, and more importantly, on their phone. \",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27267,30470,1,'Seven mistakes people make building websites','2021-08-13 06:47:41','2021-08-13 06:47:41','393fa659-cc2a-4c48-a184-cd8736927cdd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-anLTeFZY0U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Now is the moment.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The advertising you’ve done, the marketing budget you’ve spent, the countless planning meetings your team has attended—all that time and money you’ve invested has driven a potential customer to your website.\\n\\nAfter months—maybe years—of effort, your potential customer will make their decision in seconds.\\n\\nThey may love what they see and continue to be interested. Or they may leave, with their memory of you going up in smoke and your investment with it.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EfutEvAS20\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"That’s why it’s so important to build an effective website.\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZPpIywfo5M\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Framing a website to contain everything you need is challenging. Some websites become too word-heavy, while others lack structure and narrative.\\n\\nGetting your website right from the beginning can save you a lot of pain in the long run.\\n\\nHere\'s our tips to tackling website mistakes.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SUHWHfibhh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"1. Unacknowledged expectations\",\"plainText\":\"What do you expect your website to do for you? You want this investment to count, so be informed, decide what you need and be intentional with your allocated budget.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kEhIZbV4lw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"There are only two options—either start with careful planning and consultation and spend a realistic budget, or jump in with assumptions … and experience scope-creep, frustration and the need to pour more money in later. \\n\\nYour time and money (and sanity) are too valuable to waste on option two. So, choose wisely.\\n\\nIt’s also important to understand the purpose of your website. A website for a website’s sake helps no-one. Your business is unique so your website should be, too. \\n\\nMake it crystal clear—state who you are, what you do and what you promise your customers. \\n\\nSet yourself up for success by providing your developer with a clear website purpose, an informed plan and a predetermined budget.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AvlLtsTA5v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"2. A guess is no good\",\"plainText\":\"Analytics, metrics or key performance indicators (KPIs)—they’re all clever ways to study the website user journey.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KbVtpoSNTv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"What do you need your website to achieve? This will depend on what kind of product or service you offer and the kind of experience you want to create for the user. \\n\\nLay out your objectives and match them with KPIs.\\n\\nThere are plenty of ways to get insight into your website. Consider bounce rates, session duration or pages per session metrics. \\n\\nOr you could sharpen your content strategy by watching goal conversion rates of passive to active website users. \\n\\nUnderstanding your metrics and the goals you want to achieve will also help you to understand how your website interacts with its digital ecosystem.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p5FEdYJwJA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"3. It’s not for you\",\"plainText\":\"It might be about you, but the website isn’t for you. \",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VInDUCQqbf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Optimising your website starts with learning what your users are responding well to. How are they getting to your website? What kind of content are they reading? When do they read it? How long are they staying?\\n\\nBy understanding your metrics you can shape a truly effective website experience for your customers. It’s all in the detail—from content creation to search engine optimisation.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-elwxPOwb2f\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"4. Information overload\",\"plainText\":\"Your website is where your potential customers will go to check your credibility. \",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-07RQSQ8ts5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Credibility is about trust. One way to build trust is to position yourself and your organisation as experts. However, credibility isn’t just about what you know—it’s about who you are. \\n\\nInclude stories and testimonials about you and your organisation to avoid information overload. \\n\\nThen, potential customers will leave your website satisfied that you can be trusted ... and they\'re one step closer to doing business with you.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4aZLU4d7lj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"5. Losing the user\",\"plainText\":\"Many people complain about feeling lost on websites. \",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5Up8K6KfhA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The customer journey should be clear. If the information on your website is simple and structured, you can guide visitors on the path you’d like them to take. \\n\\nUse tabs and sub-pages for different categories, and make it logical. For best results, spend time studying user movements and running trials and tests. \\n\\nOver time your predictions will become more accurate as you get to know your audience.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-J6N6kO7pK4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"6. Wasted words\",\"plainText\":\"Capture your customers quickly.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gvCeMnMMmI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"There are some hallmarks we use when writing web copy. Here are a few of them:\\n\\n- short, effective sentences (say the same information with less)\\n- sub-headings and headings containing keywords\\n- everyday words the average reader can easily understand (plain English)\\n- direct language\\n- consistent, logical structuring of information.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9cFms9o1W6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"7. Don\'t be unfriendly\",\"plainText\":\"How does your website display on mobile?\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WNBSOqBQRA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The majority of the time, someone will be visiting your website on their phone (68.1% in 2020 to be exact). That means when it comes to your website design, it\'s not enough that your website simply works on mobile. It needs to be designed with mobile in mind **first**.\\n\\nIf your website doesn\'t look amazing and function seamlessly on mobile, your customers won\'t go looking for their nearest desktop computer...  they\'ll look for another website. \\n\\nWhat kind of service do you give your customers in person? Ensure they experience the same quality on your website, and more importantly, on their phone.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34898,38101,1,'Coomera Anglican College','2021-08-26 23:19:36','2021-08-26 23:19:36','e2424e6a-2907-413a-9314-c62ef17d463f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Anything is Possible',NULL,NULL,'This campaign is bridging the gap between Coomera Anglican College\'s storied past and bold future. It\'s a powerful positioning piece that\'s standing the college out from the crowd and showcasing it as the school of choice on the northern Gold Coast.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-B24Vguyo08\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30448\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-I4OkseByw6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Storied past, bold future\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Coomera Anglican College is heavily storied. It’s done a lot of work to capture its history and moments. As result, there is a lot of heritage and tradition for a relatively young school (just 25 years).\\n\\nThe college has set a strong future of innovation and entrepreneurship. It has appointed a deputy principal whose whole focus is innovation. It also has an exceptionally future-focused business manager who is sports-obsessed with big dreams.\\n\\nOur work is helping the college bridge the gap from the past to an exciting future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3S8xZRT3yd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30447\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1dcAEtVD40\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Following focus groups, in-depth interviews, a competitor analysis and a brand refresh in 2020, we embarked on developing a new public-facing campaign to help the college continue to position itself as the private school of choice for the rapidly growing northern Gold Coast region.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7mko9XHUCj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30449\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-27uMRCFOVx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"In order to stand out in the crowded private school space, we looked outside of schools for inspiration—drawing from global sports and technology brands.\\n\\nThis campaign steers right away from traditional school advertising: think students standing and smiling in their school uniforms, older and younger students holding hands and walking through manicured school grounds, girls in safety glasses huddled over a beaker and Bunsen burner.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EkVYlvmrxM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30444\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ek8exDfZlT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The result is a powerful cinematic masterpiece: dramatic, inspirational and compelling. The script was drawn from lyrics of the college’s traditional song. Paired with the inspiring footage, the video effectively acknowledges the past while painting a vivid picture of the future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IGcqD2p42y\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30445\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CUjY0m7ysa\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“It was a pleasure working with New Word Order to develop the new creative for our College. They took the time to get to know what makes our college unique, and helped put that into tangible storytelling.”\",\"plainText\":\"— Aimee Barlett, Marketing and Communications Manager at Coomera Anglican College\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Ja5zJfaN0T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30446\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34900,38103,1,'Tritium','2021-08-26 23:20:15','2021-08-26 23:20:15','fe51e4f0-a7df-4111-84c7-f09d023f7202',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'We turned up the voltage on the launch of the new brand with this show-stopping animated brand video.\nWith an appetite only satisfied by global domination and a powerful vision of energy freedom, Tritium’s journey has only just begun… but they started in the fast lane. We developed a set of foundational branding elements that showcase who Tritium is now and prepares for their exciting future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GLSN3YDBFD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"22084\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0hdQHDSnBf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Challenge\",\"plainText\":\"As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league.\\n\\nTritium commissioned us to update their brand—to put their internal culture of creativity and innovation on display and to share it with the world.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dz4aGfI5jw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22083\",\"22085\",\"22086\",\"22087\",\"22088\",\"22089\",\"22090\",\"22091\",\"22092\",\"22093\",\"22094\",\"22095\",\"22096\",\"22097\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34901,38104,1,'Rural Aid','2021-08-26 23:20:47','2021-08-26 23:20:47','f3bea4b9-37d8-4c05-8a48-84813e552333',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Through drought, flood and fire, Rural Aid is there.',NULL,NULL,'Rural Aid is there for local farmers doing it tough, providing water, fodder and financial and counselling help. \n\nProviding emergency support is the priority, but it was time for Rural Aid to shift its focus to building resilience and sustainability in rural communities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eLK3JgwUaW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22211\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QCEdWG6OxJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The nature of the campaign, featuring real farmers telling their story, was insightful for many staff who might not get the chance to speak with or hear from farmers very often.\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-a1ZSpKzNhg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575770982\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4IaqNatl2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The campaign\",\"plainText\":\"Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-h8vXLy3MfI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"The revenue being generated from the campaign has had a very positive impact on our revenue budget for the month of June, which has a direct impact on the beneficiaries of our fundraising—Aussie farmers.\\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V9u5ejPQKv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575783623\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ShWv4eC3wX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Strategy\",\"plainText\":\"Campaign messaging was two-tired: an EOFY donations appeal and a thank you. Both worked to be targeted at existing donors, or people captured in existing databases or prospecting. \\n\\nTo ensure the greatest value for money for our client, we pooled the majority of our ad spend into digital, working closely with our media partner, Pivotus. We A/B tested the messaging and capture the audience with retargeting strategies.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8P2070zTQ8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"NWO were great to work with and really took an interest in our organisation and what we’re trying to achieve, and this showed through in the quality and the emotion captured in the final production. \\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rhaSMwFESv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Creative\",\"plainText\":\"We proposed a campaign based on interviews with Australian farmers who had experiences with Rural Aid.\\n\\nIt’s an honest campaign of full of real people, stories and emotions.\\n\\nWith COVID-19 still hanging around, our approach ensured we avoided potential interruptions, travel restrictions and cancellation costs for our client.\\n\\nThe videos are compilations of interviews with various farmers across the spectrum of industries that are framed by a ‘zoom screen’ visual device, which adds layers of authenticity to the personal stories. \\n\\nSimilarly the display banners and static Facebook posts used the zoom imagery and visual devices—all pointing people to the EOFY Rural Aid landing page where viewers could view the full videos and choose to donate.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3MV0vWsZV5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"I am very proud to have been a part of this campaign. Even though I was part of the storytelling process behind the scenes, I was moved at every stage of the process by how tough these Australians have it on a daily basis, and how candid they were with us about their stories. \",\"plainText\":\"**— Kat Scott, producer**\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-white\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34903,38106,1,'My Mental Health','2021-08-26 23:21:32','2021-08-26 23:21:32','171fba4f-a8ad-4d8f-b829-607e05230a04',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Find the support you need',NULL,NULL,'Our solution was to develop the My Mental Health website, in collaboration with the My Mental Health Service Navigation team, to provide this vital information.\n\nThe My Mental Health Service Navigation team also support health professionals, consumers and carers making a referral to the PHN-commissioned services.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5pfvkvSNrw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"21979\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SKyajV0yX2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Challenge\",\"plainText\":\"Brisbane North PHN needed a website developed for consumers, carers, service providers and health professionals that provides information about mental health, alcohol and other drugs and suicide prevention services in the region.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-czaT07FwtQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"21999\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34905,38108,1,'Right time, right place','2021-08-26 23:22:04','2021-08-26 23:22:04','c4ce464e-9ec3-4640-bc4c-c18fd4ef47b9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Do I go to the ED?',NULL,NULL,'Our solution was to show the people who live in the region, and the large numbers of holidaymakers who travel to the region, that the emergency department isn\'t the only option.\n\nThe healthdirect app shows options for medical care based on your location, so you don\'t need to wait in a crowded emergency department.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22011\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-35PPqrQPxG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Challenge\",\"plainText\":\"It\'s a constant focus for PHNs, hospital and health services and state governments all over Australia: people are going to the emergency department with non-life-threatening sickness or injuries.\\n\\nTwo years after its last campaign on the topic, the PHN asked us to refresh the campaign strategy, messaging and creative.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22012\",\"22010\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34907,38110,1,'Safe to See your GP','2021-08-26 23:22:51','2021-08-26 23:22:51','b4601552-efa7-49de-a30a-52d401bf6b5d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Getting back to a normal health routine',NULL,NULL,'Community members were staying at home and not visiting their GP and other health services for regular checkups. To avoid more serious health and wellbeing problems down the track, the community needed to know it was safe to go back to regular appointments. We originally developed this campaign for Darling Downs West Moreton PHN, and Brisbane North PHN requested it run in its region as well.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xsaPgG0g7g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22160\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4A9pSO81W9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Challenge\",\"plainText\":\"With life beginning to return to normal in Queensland, the Darling Downs West Moreton and Brisbane North PHN wanted to encourage their communities to go back to a normal routine—especially for healthcare.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bd28dXEaNq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22159\",\"22158\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34909,38112,1,'Tritium','2021-08-26 23:23:27','2021-08-26 23:23:27','7851e2b2-b775-4482-8b77-413c15b2da5f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'We turned up the voltage on the launch of the new brand with this show-stopping animated brand video.\nWith an appetite only satisfied by global domination and a powerful vision of energy freedom, Tritium’s journey has only just begun… but they started in the fast lane. We developed a set of foundational branding elements that showcase who Tritium is now and prepares for their exciting future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GLSN3YDBFD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"22084\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0hdQHDSnBf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Challenge\",\"plainText\":\"As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league.\\n\\nTritium commissioned us to update their brand—to put their internal culture of creativity and innovation on display and to share it with the world.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dz4aGfI5jw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22083\",\"22085\",\"22086\",\"22087\",\"22088\",\"22089\",\"22090\",\"22091\",\"22092\",\"22093\",\"22094\",\"22095\",\"22096\",\"22097\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34911,38114,1,'Medical Mums','2021-08-26 23:24:05','2021-08-26 23:24:05','7cb025c1-0092-46fe-8d30-4dfe8663e778',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Medical Mums busting vaccination myths',NULL,NULL,'Our market research showed the people in our target market trust their GP\'s advice.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-g4kMbqzyF9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"18584\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4HgMjSCVKR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Challenge\",\"plainText\":\"Market research in 2015 was showing the anti-vax movement was taking hold.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-mIR2TIGy0g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"18597\",\"18598\",\"18599\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34913,38116,1,'Reasons to Stay','2021-08-26 23:24:34','2021-08-26 23:24:34','769ccbb2-cf42-43ae-8319-01fc74b5e6b8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Helping to find reasons to stay',NULL,NULL,'The concept and campaign name of Reasons to Stay emerged from our conversations with people who have lived experience of suicide—both survivors and families of those who had passed away.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Wuk6XROt8C\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19060\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oOjGZKhNOe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Challenge\",\"plainText\":\"Suicide take around eight Australians from us every day and it needs to stop. Brisbane North PHN commissioned us to join the fight against suicide and produce a powerful digital campaign, speaking to people at risk of suicide and to their friends and family.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lo0qiknCPj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19061\",\"19062\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-trgV3eAZYY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19081\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xEmYfpUPYn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19064\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19066\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new3\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19067\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new4\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19068\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447109\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34915,38118,1,'No. 3 campaign','2021-08-26 23:25:22','2021-08-26 23:25:22','ff5c94a0-5626-47b9-a882-4669c77e4da0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a No. 3? Anything that shouldn\'t go down the loo.',NULL,NULL,'The playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way. We set out to capture the attention of kids and adults with an innovative and integrated campaign that featured interactive and creative design, animation, illustration, merchandise and video.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19052\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ubOOdTH4px\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Challenge\",\"plainText\":\"Water and waste treatment are essential services and flushing the wrong items down the toilet costs Queensland Urban Utilities $200 million every year. Urban Utilities asked us to think of an original, creative campaign idea that would resonate with Queensland families. Our solution was the No. 3 campaign.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3JfRbb2a6Q\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19059\",\"19058\",\"19057\",\"19056\",\"19055\",\"19054\",\"19053\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34917,38120,1,'DFV Campaign','2021-08-26 23:27:01','2021-08-26 23:27:01','13ea4509-b44e-4138-b60f-ade72ff9a789',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What do you do when home isn\'t safe',NULL,NULL,'Produced during the height of COVID-19 in 2020 when our team was working remotely, this campaign is a testament to our skill and processes.\n\nDFV can take many forms, but it leaves people feeling isolated, scared and out of control. Our campaign builds awareness of what DFV can feel like and encourages anyone affected to reach out for help.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EhhNBGoCzT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17780\",\"16839\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SSuFI1ciJX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Challenge\",\"plainText\":\"To slow the spread of COVID-19, people were spending more time at home. But for some, home isn\'t the safe place it should be. The Queensland Government commissioned us to develop a campaign to build awareness of domestic and family violence and the support available.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VXy61QNrbJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16838\",\"16840\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34918,38121,1,'Citipointe Christian College','2021-08-26 23:30:56','2022-01-30 04:05:12','ac3dfd1b-8e0a-43a9-9490-ce068a9ff638',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'I can campaign',NULL,NULL,'Our campaign was based around the concept of ‘I can’, which responded to market research with parents and focused on the outcomes for students.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p51LYEpT5O\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47736\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iYNrrlmMZA\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’ve been working with Citipointe Christian College for a number of years, having first helped them define their brand and distinctives, and then campaigned the brand to great success and high enrolments and waiting lists.\\n\\nWe then faced a new challenge: getting parents to commit for the long haul.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Y6fbAAGpQK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47738\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KQMovznY0B\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We conducted in-depth interviews and asked parents: What would win you back? From their answers, we developed fresh new creative and messaging directly linked to parents’ aspirations for their children.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3Nuc4KqR6i\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47741\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UCCnWZFQHi\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The brand is now visually distinguishing from the competition by moving away from the usual depictions of happy children in school uniforms to a stronger conceptual approach that places students within the real-world situations the school is preparing them to reach.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rcnsOQ5GI8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47740\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V3kt5nqhg3\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Results\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This campaign is unlike anything else in the school market. It’s a powerful differentiator that’s continuing high levels of interest in the target market and enrolments and tour attendance are still growing.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jZNg6COExC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47742\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wchbDpZwnc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47739\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34919,38122,1,'Citipointe Christian College billboard surgery image_2','2021-08-26 23:32:22','2021-11-09 06:07:29','779265e5-7001-48f4-8450-a3c57c41f0f9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x906_crop_center-center_82_line/CCC-iCan-15.jpeg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x725_crop_center-center_82_line/CCC-iCan-15.jpeg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x544_crop_center-center_82_line/CCC-iCan-15.jpeg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x453_crop_center-center_82_line/CCC-iCan-15.jpeg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x906_crop_center-center_82_line/CCC-iCan-15.jpeg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x725_crop_center-center_82_line/CCC-iCan-15.jpeg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x544_crop_center-center_82_line/CCC-iCan-15.jpeg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x453_crop_center-center_82_line/CCC-iCan-15.jpeg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":906,\"1024\":725,\"768\":544,\"640\":453},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1440,\"originalImageHeight\":1020,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAALABADASIAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAgMEBf/EAB8QAAICAgIDAQAAAAAAAAAAAAECAwQAEQUSIVGBkf/EABUBAQEAAAAAAAAAAAAAAAAAAAAB/8QAFhEBAQEAAAAAAAAAAAAAAAAAABEB/9oADAMBAAIRAxEAPwDJ5jjqXHWlgd2Z3VWHWIa8/cVT4qC5caskmnCsxLRjXgb95dLZllZXlKuwUAFkBOh8wRYlXs6sFYggsoAP7iYkf//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dcdad7\",\"#212c2a\",\"#76726a\",\"#6aa78b\",\"#6889a4\"],\"lightness\":51,\"placeholderWidth\":1280,\"placeholderHeight\":906,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34920,38123,1,'Citipointe Christian College billboard_2','2021-08-26 23:33:04','2021-11-09 06:07:58','e0f2bbc0-ba6e-4cc6-8ff4-ed95bc53a84f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x906_crop_center-center_82_line/CCC-iCan-17.jpeg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x725_crop_center-center_82_line/CCC-iCan-17.jpeg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x544_crop_center-center_82_line/CCC-iCan-17.jpeg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x453_crop_center-center_82_line/CCC-iCan-17.jpeg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x906_crop_center-center_82_line/CCC-iCan-17.jpeg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x725_crop_center-center_82_line/CCC-iCan-17.jpeg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x544_crop_center-center_82_line/CCC-iCan-17.jpeg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x453_crop_center-center_82_line/CCC-iCan-17.jpeg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":906,\"1024\":725,\"768\":544,\"640\":453},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1440,\"originalImageHeight\":1020,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAALABADASIAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAAEDBf/EAB4QAAICAgIDAAAAAAAAAAAAAAECABEDBAUSEyFx/8QAFQEBAQAAAAAAAAAAAAAAAAAAAwT/xAAXEQEAAwAAAAAAAAAAAAAAAAABABEh/9oADAMBAAIRAxEAPwCW7y23iRRrp5LB7ArfyLG2fkQA/UBKJFVU0CiptgKKEHdmJUn1ZEcxySLZTP/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#6492a5\",\"#c2cbcc\",\"#13202a\",\"#464946\",\"#9ad3f0\"],\"lightness\":49,\"placeholderWidth\":1280,\"placeholderHeight\":906,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34921,38124,1,'I can','2021-08-26 23:33:16','2021-08-26 23:33:16','7057f958-8a03-49a9-9677-c6b270091f99',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Enrolments campaign',NULL,NULL,'We’ve been working with Citipointe Christian College since 2015, and in that time we have helped them to increase their school tours, enrolments and waiting lists to capacity.\n\nThis year we faced a new challenge: getting parents to commit for the long haul.\n\nWe conducted in-depth interviews and asked parents: What would win you back? From their answers, we developed fresh new creative and messaging directly linked to parents’ aspirations for their children.\n\nThis campaign is unlike anything else in the school market. It’s a powerful differentiator that’s continuing high levels of interest in the target market and enrolments and tour attendance are still growing.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p51LYEpT5O\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38122\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34922,38125,1,'Citipointe Christian College','2021-08-26 23:34:08','2021-08-26 23:34:08','eec55357-3483-40cd-b8da-31000803da33',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34924,38127,1,'I can','2021-08-26 23:34:11','2021-08-26 23:34:11','f053a8c8-27a7-47df-abf5-788c21a61602',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Enrolments campaign',NULL,NULL,'We’ve been working with Citipointe Christian College since 2015, and in that time we have helped them to increase their school tours, enrolments and waiting lists to capacity.\n\nThis year we faced a new challenge: getting parents to commit for the long haul.\n\nWe conducted in-depth interviews and asked parents: What would win you back? From their answers, we developed fresh new creative and messaging directly linked to parents’ aspirations for their children.\n\nThis campaign is unlike anything else in the school market. It’s a powerful differentiator that’s continuing high levels of interest in the target market and enrolments and tour attendance are still growing.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p51LYEpT5O\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38122\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34926,38129,1,'Citipointe Christian College two photography stills before edited together_2','2021-08-26 23:48:08','2021-11-09 06:08:12','395381fd-860b-4a23-93bb-7bd3c61b50e9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x544_crop_center-center_82_line/CCC-iCan-19-scaled.jpeg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x453_crop_center-center_82_line/CCC-iCan-19-scaled.jpeg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x907_crop_center-center_82_line/CCC-iCan-19-scaled.jpeg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x362_crop_center-center_82_line/CCC-iCan-19-scaled.jpeg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x725_crop_center-center_82_line/CCC-iCan-19-scaled.jpeg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x272_crop_center-center_82_line/CCC-iCan-19-scaled.jpeg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x226_crop_center-center_82_line/CCC-iCan-19-scaled.jpeg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x544_crop_center-center_82_line/CCC-iCan-19-scaled.jpeg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x453_crop_center-center_82_line/CCC-iCan-19-scaled.jpeg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x907_crop_center-center_82_line/CCC-iCan-19-scaled.jpeg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x362_crop_center-center_82_line/CCC-iCan-19-scaled.jpeg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x725_crop_center-center_82_line/CCC-iCan-19-scaled.jpeg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x272_crop_center-center_82_line/CCC-iCan-19-scaled.jpeg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x226_crop_center-center_82_line/CCC-iCan-19-scaled.jpeg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":544,\"1280\":453,\"2560\":907,\"1024\":362,\"2048\":725,\"768\":272,\"640\":226},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":2560,\"originalImageHeight\":907,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAFABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAAQG/8QAHhAAAgIBBQEAAAAAAAAAAAAAAQIAAxEEEhQhMVL/xAAVAQEBAAAAAAAAAAAAAAAAAAABAv/EABURAQEAAAAAAAAAAAAAAAAAAAAB/9oADAMBAAIRAxEAPwDJUWldFb0TucL7gYlSgcJj8xEqiP/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#21252b\",\"#b9c2ca\",\"#738ca4\",\"#68747f\",\"#98948c\"],\"lightness\":46,\"placeholderWidth\":1536,\"placeholderHeight\":544,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34927,38130,1,'Citipointe Christian College design images collage_2','2021-08-26 23:48:41','2021-11-09 06:07:13','1317b7d0-b90a-4b3f-adbf-88713a21bff4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x906_crop_center-center_82_line/CCC-iCan-10.jpeg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x725_crop_center-center_82_line/CCC-iCan-10.jpeg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x544_crop_center-center_82_line/CCC-iCan-10.jpeg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x453_crop_center-center_82_line/CCC-iCan-10.jpeg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x906_crop_center-center_82_line/CCC-iCan-10.jpeg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x725_crop_center-center_82_line/CCC-iCan-10.jpeg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x544_crop_center-center_82_line/CCC-iCan-10.jpeg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x453_crop_center-center_82_line/CCC-iCan-10.jpeg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":906,\"1024\":725,\"768\":544,\"640\":453},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1440,\"originalImageHeight\":1020,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAALABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQAE/8QAIRAAAQMDBAMAAAAAAAAAAAAAAgEDEQAEEgUhMWEiUYH/xAAVAQEBAAAAAAAAAAAAAAAAAAABAv/EABcRAQEBAQAAAAAAAAAAAAAAAAEAETH/2gAMAwEAAhEDEQA/ACGNOdfKWrVspHxFSjeOahEztGCG3wUUgiXZFjqsWn3LzTqYOkkD76pK0MrllG31zEAXGeU+81WoRg9v/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#2f2e33\",\"#c0b9b1\",\"#556e82\",\"#7aa8c7\",\"#4384b4\"],\"lightness\":45,\"placeholderWidth\":1280,\"placeholderHeight\":906,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34928,38131,1,'Citipointe Christian College bus shelter ad_2','2021-08-26 23:49:56','2021-11-09 06:07:43','feccd35e-4665-4e79-9823-cb642b892355',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x906_crop_center-center_82_line/CCC-iCan-16.jpeg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x725_crop_center-center_82_line/CCC-iCan-16.jpeg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x544_crop_center-center_82_line/CCC-iCan-16.jpeg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x453_crop_center-center_82_line/CCC-iCan-16.jpeg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x906_crop_center-center_82_line/CCC-iCan-16.jpeg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x725_crop_center-center_82_line/CCC-iCan-16.jpeg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x544_crop_center-center_82_line/CCC-iCan-16.jpeg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x453_crop_center-center_82_line/CCC-iCan-16.jpeg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":906,\"1024\":725,\"768\":544,\"640\":453},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1440,\"originalImageHeight\":1020,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAALABADASIAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABQb/xAAgEAACAQMEAwAAAAAAAAAAAAABEQIAAwQTISIxBRJR/8QAFQEBAQAAAAAAAAAAAAAAAAAAAQL/xAAXEQEBAQEAAAAAAAAAAAAAAAARAAEC/9oADAMBAAIRAxEAPwCdWCcxictIgdhIqmce143T4XJ+xDEm18qcuAPqk8ACGNx23dTvOBK3/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#343229\",\"#c4beaa\",\"#7f745f\",\"#91a693\",\"#6287a8\"],\"lightness\":45,\"placeholderWidth\":1280,\"placeholderHeight\":906,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34929,38132,1,'I can','2021-08-26 23:50:11','2021-08-26 23:50:11','69384ebd-8b60-412c-be3f-d98f2cee8088',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Enrolments campaign',NULL,NULL,'We’ve been working with Citipointe Christian College since 2015, and in that time we have helped them to increase their school tours, enrolments and waiting lists to capacity.\n\nThis year we faced a new challenge: getting parents to commit for the long haul.\n\nWe conducted in-depth interviews and asked parents: What would win you back? From their answers, we developed fresh new creative and messaging directly linked to parents’ aspirations for their children.\n\nThis campaign is unlike anything else in the school market. It’s a powerful differentiator that’s continuing high levels of interest in the target market and enrolments and tour attendance are still growing.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p51LYEpT5O\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38122\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Y6fbAAGpQK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38129\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3Nuc4KqR6i\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38130\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rcnsOQ5GI8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38123\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jZNg6COExC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38131\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34931,38134,1,'Citipointe Christian College tablet and mobile phones displaying website_2','2021-08-26 23:58:19','2021-11-09 06:08:37','dfde786b-6a30-4f3f-a0f1-7c7c67cdb61c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1579_crop_center-center_82_line/CCC-tour-citipointe.jpeg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1316_crop_center-center_82_line/CCC-tour-citipointe.jpeg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1053_crop_center-center_82_line/CCC-tour-citipointe.jpeg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x789_crop_center-center_82_line/CCC-tour-citipointe.jpeg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x658_crop_center-center_82_line/CCC-tour-citipointe.jpeg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1579_crop_center-center_82_line/CCC-tour-citipointe.jpeg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1316_crop_center-center_82_line/CCC-tour-citipointe.jpeg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1053_crop_center-center_82_line/CCC-tour-citipointe.jpeg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x789_crop_center-center_82_line/CCC-tour-citipointe.jpeg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x658_crop_center-center_82_line/CCC-tour-citipointe.jpeg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1579,\"1280\":1316,\"1024\":1053,\"768\":789,\"640\":658},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":2000,\"originalImageHeight\":2057,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABAX/xAAhEAACAgIBBAMAAAAAAAAAAAABAgMEBREAEhMhUSJhof/EABcBAQEBAQAAAAAAAAAAAAAAAAADAQL/xAAZEQEBAQEBAQAAAAAAAAAAAAABAgAREiH/2gAMAwEAAhEDEQA/AIF+xZOVsIsr9PeYa6/v1yofNNy4rllspVryzvpJU6QfBI2OEw1+7C9TKW+2rNGibQEb+RI8/p5zIU+XLWRTNxuIS+kF2xPKshOzGCACQfXFSQ8NsU1PXf/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#222f3e\",\"#d3d3d0\",\"#2372a9\",\"#7ea4b4\",\"#9a5e4e\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":1579,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34932,38135,1,'I can','2021-08-27 00:05:53','2021-08-27 00:05:53','eca4652d-223b-40c6-9a7c-dde03923c40e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Enrolments campaign',NULL,NULL,'We’ve been working with Citipointe Christian College since 2015, and in that time we have helped them to increase their school tours, enrolments and waiting lists to capacity.\n\nThis year we faced a new challenge: getting parents to commit for the long haul.\n\nWe conducted in-depth interviews and asked parents: What would win you back? From their answers, we developed fresh new creative and messaging directly linked to parents’ aspirations for their children.\n\nThis campaign is unlike anything else in the school market. It’s a powerful differentiator that’s continuing high levels of interest in the target market and enrolments and tour attendance are still growing.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p51LYEpT5O\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38122\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Y6fbAAGpQK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38129\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3Nuc4KqR6i\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38130\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rcnsOQ5GI8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38123\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jZNg6COExC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38131\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wchbDpZwnc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38134\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34947,38155,1,'About us','2021-08-27 05:35:28','2021-08-27 05:35:28','ae71ac3b-1c72-45a3-a0d4-0aca9a8b0204',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/work\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/work\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":\"1\",\"fields\":{\"gridItems\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\",\"new6\"],\"blocks\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Many of our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}}}},\"buttons\":\"\",\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Find out what this means\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"\",\"buttonStyle\":\"outline\",\"buttonColour\":\"white\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"for **us** and **you...**\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"#\",\"buttonStyle\":\"link\",\"buttonColour\":\"white\"}}}},\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17910\",\"17881\",\"17848\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Stategy\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"\",\"buttonImage\":[\"21910\"],\"internalLink\":\"\",\"externalLink\":\"#footer\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34949,38157,1,'Education','2021-09-03 00:13:04','2021-09-03 00:13:04','1b5da4f0-a240-41f5-a0e7-00802abc06d1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34950,38158,1,'Professional services','2021-09-03 00:13:46','2021-09-03 00:13:46','812d6df3-f341-4b41-be67-323d42e7bcea',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34951,38159,1,'Not-for-profit','2021-09-03 00:13:57','2021-09-03 00:13:57','a771092a-376a-4b4c-b5b0-5492687df6d2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34952,38160,1,'Health','2021-09-03 00:14:07','2021-09-03 00:14:07','2fa97fe8-39ad-44bb-aefd-e6e79852b465',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34953,38161,1,'Energy, mining and technology','2021-09-03 00:14:36','2021-09-03 00:14:36','ccac76c7-5434-431f-a856-0af8825dcafe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34954,38162,1,'Coomera Anglican College','2021-09-03 00:15:59','2021-09-03 00:15:59','fed6e755-d682-4286-b437-5db128b824a0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Anything is Possible',NULL,NULL,'This campaign is bridging the gap between Coomera Anglican College\'s storied past and bold future. It\'s a powerful positioning piece that\'s standing the college out from the crowd and showcasing it as the school of choice on the northern Gold Coast.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-B24Vguyo08\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30448\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-I4OkseByw6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Storied past, bold future\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Coomera Anglican College is heavily storied. It’s done a lot of work to capture its history and moments. As result, there is a lot of heritage and tradition for a relatively young school (just 25 years).\\n\\nThe college has set a strong future of innovation and entrepreneurship. It has appointed a deputy principal whose whole focus is innovation. It also has an exceptionally future-focused business manager who is sports-obsessed with big dreams.\\n\\nOur work is helping the college bridge the gap from the past to an exciting future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3S8xZRT3yd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30447\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1dcAEtVD40\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Following focus groups, in-depth interviews, a competitor analysis and a brand refresh in 2020, we embarked on developing a new public-facing campaign to help the college continue to position itself as the private school of choice for the rapidly growing northern Gold Coast region.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7mko9XHUCj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30449\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-27uMRCFOVx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"In order to stand out in the crowded private school space, we looked outside of schools for inspiration—drawing from global sports and technology brands.\\n\\nThis campaign steers right away from traditional school advertising: think students standing and smiling in their school uniforms, older and younger students holding hands and walking through manicured school grounds, girls in safety glasses huddled over a beaker and Bunsen burner.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EkVYlvmrxM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30444\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ek8exDfZlT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The result is a powerful cinematic masterpiece: dramatic, inspirational and compelling. The script was drawn from lyrics of the college’s traditional song. Paired with the inspiring footage, the video effectively acknowledges the past while painting a vivid picture of the future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IGcqD2p42y\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30445\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CUjY0m7ysa\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“It was a pleasure working with New Word Order to develop the new creative for our College. They took the time to get to know what makes our college unique, and helped put that into tangible storytelling.”\",\"plainText\":\"— Aimee Barlett, Marketing and Communications Manager at Coomera Anglican College\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Ja5zJfaN0T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30446\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34956,38164,1,'Rural Aid','2021-09-03 00:43:42','2021-09-03 00:43:42','c9d62d72-86ba-4bbe-824a-07997b13598f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Through drought, flood and fire, Rural Aid is there.',NULL,NULL,'Rural Aid is there for local farmers doing it tough, providing water, fodder and financial and counselling help. \n\nProviding emergency support is the priority, but it was time for Rural Aid to shift its focus to building resilience and sustainability in rural communities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eLK3JgwUaW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22211\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QCEdWG6OxJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The nature of the campaign, featuring real farmers telling their story, was insightful for many staff who might not get the chance to speak with or hear from farmers very often.\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-a1ZSpKzNhg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575770982\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4IaqNatl2X\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The campaign\",\"plainText\":\"Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F9lQRkpJbI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"The campaign\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-h8vXLy3MfI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“The generous donations received from our community of supporters as a result from the campaign has had a very positive impact for the beneficiaries of our fundraising—Aussie farmers.”\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V9u5ejPQKv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575783623\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p6CVgVhKEp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Campaign messaging was two-tired: an EOFY donations appeal and a thank you. Both worked to be targeted at existing donors, or people captured in existing databases or prospecting.\\n\\nTo ensure the greatest value for money for our client, we pooled the majority of our ad spend into digital, working closely with our media partner, Pivotus. We A/B tested the messaging and capture the audience with retargeting strategies.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8P2070zTQ8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"NWO were great to work with and really took an interest in our organisation and what we’re trying to achieve, and this showed through in the quality and the emotion captured in the final production. \\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rhaSMwFESv\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Creative\",\"plainText\":\"We proposed a campaign based on interviews with Australian farmers who had experiences with Rural Aid.\\n\\nIt’s an honest campaign of full of real people, stories and emotions.\\n\\nWith COVID-19 still hanging around, our approach ensured we avoided potential interruptions, travel restrictions and cancellation costs for our client.\\n\\nThe videos are compilations of interviews with various farmers across the spectrum of industries that are framed by a ‘zoom screen’ visual device, which adds layers of authenticity to the personal stories. \\n\\nSimilarly the display banners and static Facebook posts used the zoom imagery and visual devices—all pointing people to the EOFY Rural Aid landing page where viewers could view the full videos and choose to donate.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vJUro6swC6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We proposed a campaign based on interviews with Australian farmers who had experiences with Rural Aid.\\n\\nIt’s an honest campaign of full of real people, stories and emotions.\\n\\nWith COVID-19 still hanging around, our approach ensured we avoided potential interruptions, travel restrictions and cancellation costs for our client.\\n\\nThe videos are compilations of interviews with various farmers across the spectrum of industries that are framed by a ‘zoom screen’ visual device, which adds layers of authenticity to the personal stories. \\n\\nSimilarly the display banners and static Facebook posts used the zoom imagery and visual devices—all pointing people to the EOFY Rural Aid landing page where viewers could view the full videos and choose to donate.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3MV0vWsZV5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"I am very proud to have been a part of this campaign. Even though I was part of the storytelling behind the scenes, I was moved at every stage of the process by how tough these Australians have it on a daily basis, and how candid they were with us about their stories.\",\"plainText\":\"**— Kat Scott, producer**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NURtiGsn81\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":\"\",\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34958,38166,1,'My Mental Health','2021-09-03 00:54:26','2021-09-03 00:54:26','dd5a55e1-e95a-4a51-8e22-6528d3fee5ac',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Connecting you to the support services you need in the Brisbane North region',NULL,NULL,'We collaborated with Brisbane North PHN\'s mental health experts to empower consumers, carers and health practitioners to navigate the mental health sector with clear direction and ease. By understanding the website users on a deeper level, our creatives, strategists and developers delivered a meaningful and effective website.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5pfvkvSNrw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"21979\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-czaT07FwtQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"21999\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34959,38167,1,'DFV Campaign','2021-09-03 01:21:27','2021-09-03 01:21:27','349a64a5-058c-454f-b944-84ca8d7eeb91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What do you do when home isn\'t safe',NULL,NULL,'Produced during the height of COVID-19 in 2020 when our team was working remotely, this campaign is a testament to our skill and processes.\n\nDFV can take many forms, but it leaves people feeling isolated, scared and out of control. Our campaign builds awareness of what DFV can feel like and encourages anyone affected to reach out for help.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EhhNBGoCzT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17780\",\"16839\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SSuFI1ciJX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Challenge\",\"plainText\":\"To slow the spread of COVID-19, people were spending more time at home. But for some, home isn\'t the safe place it should be. The Queensland Government commissioned us to develop a campaign to build awareness of domestic and family violence and the support available.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VXy61QNrbJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16838\",\"16840\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34960,38168,1,'No. 3 campaign','2021-09-03 01:21:28','2021-09-03 01:21:28','0f155e4e-ae7c-48cb-ad30-1b5154f2a4c4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a No. 3? Anything that shouldn\'t go down the loo.',NULL,NULL,'The playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way. We set out to capture the attention of kids and adults with an innovative and integrated campaign that featured interactive and creative design, animation, illustration, merchandise and video.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19052\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ubOOdTH4px\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Challenge\",\"plainText\":\"Water and waste treatment are essential services and flushing the wrong items down the toilet costs Queensland Urban Utilities $200 million every year. Urban Utilities asked us to think of an original, creative campaign idea that would resonate with Queensland families. Our solution was the No. 3 campaign.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3JfRbb2a6Q\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19059\",\"19058\",\"19057\",\"19056\",\"19055\",\"19054\",\"19053\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34961,38169,1,'Reasons to Stay','2021-09-03 01:21:28','2021-09-03 01:21:28','f05b850a-d3e8-42ea-becd-10008ae08442',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Helping to find reasons to stay',NULL,NULL,'The concept and campaign name of Reasons to Stay emerged from our conversations with people who have lived experience of suicide—both survivors and families of those who had passed away.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Wuk6XROt8C\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19060\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oOjGZKhNOe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Challenge\",\"plainText\":\"Suicide take around eight Australians from us every day and it needs to stop. Brisbane North PHN commissioned us to join the fight against suicide and produce a powerful digital campaign, speaking to people at risk of suicide and to their friends and family.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lo0qiknCPj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19061\",\"19062\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-trgV3eAZYY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19081\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xEmYfpUPYn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19064\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19066\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new3\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19067\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new4\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19068\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447109\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34962,38170,1,'Medical Mums','2021-09-03 01:21:29','2021-09-03 01:21:29','1babc6bd-722c-4763-b530-00a8743d5ac6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Medical Mums busting vaccination myths',NULL,NULL,'Our market research showed the people in our target market trust their GP\'s advice.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-g4kMbqzyF9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"18584\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4HgMjSCVKR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Challenge\",\"plainText\":\"Market research in 2015 was showing the anti-vax movement was taking hold.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-mIR2TIGy0g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"18597\",\"18598\",\"18599\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34963,38171,1,'Right time, right place','2021-09-03 01:21:29','2021-09-03 01:21:29','114e13b6-01a1-46a0-9554-eafc7f9f6eeb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Do I go to the ED?',NULL,NULL,'Our solution was to show the people who live in the region, and the large numbers of holidaymakers who travel to the region, that the emergency department isn\'t the only option.\n\nThe healthdirect app shows options for medical care based on your location, so you don\'t need to wait in a crowded emergency department.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22011\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-35PPqrQPxG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Challenge\",\"plainText\":\"It\'s a constant focus for PHNs, hospital and health services and state governments all over Australia: people are going to the emergency department with non-life-threatening sickness or injuries.\\n\\nTwo years after its last campaign on the topic, the PHN asked us to refresh the campaign strategy, messaging and creative.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22012\",\"22010\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34964,38172,1,'Tritium','2021-09-03 01:21:30','2021-09-03 01:21:30','cd931b5a-989a-4f2a-8cf7-b9c51f37b063',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'We turned up the voltage on the launch of the new brand with this show-stopping animated brand video.\nWith an appetite only satisfied by global domination and a powerful vision of energy freedom, Tritium’s journey has only just begun… but they started in the fast lane. We developed a set of foundational branding elements that showcase who Tritium is now and prepares for their exciting future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GLSN3YDBFD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"22084\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0hdQHDSnBf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Challenge\",\"plainText\":\"As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league.\\n\\nTritium commissioned us to update their brand—to put their internal culture of creativity and innovation on display and to share it with the world.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dz4aGfI5jw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22083\",\"22085\",\"22086\",\"22087\",\"22088\",\"22089\",\"22090\",\"22091\",\"22092\",\"22093\",\"22094\",\"22095\",\"22096\",\"22097\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34965,38173,1,'Safe to See your GP','2021-09-03 01:21:30','2021-09-03 01:21:30','5e805a5f-403a-436a-9c8b-78829a47b789',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Getting back to a normal health routine',NULL,NULL,'Community members were staying at home and not visiting their GP and other health services for regular checkups. To avoid more serious health and wellbeing problems down the track, the community needed to know it was safe to go back to regular appointments. We originally developed this campaign for Darling Downs West Moreton PHN, and Brisbane North PHN requested it run in its region as well.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xsaPgG0g7g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22160\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4A9pSO81W9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Challenge\",\"plainText\":\"With life beginning to return to normal in Queensland, the Darling Downs West Moreton and Brisbane North PHN wanted to encourage their communities to go back to a normal routine—especially for healthcare.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bd28dXEaNq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22159\",\"22158\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34966,38174,1,'I can','2021-09-03 01:21:31','2021-09-03 01:21:31','b411681f-11de-48c7-9e66-f285905dfd54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Enrolments campaign',NULL,NULL,'We’ve been working with Citipointe Christian College since 2015, and in that time we have helped them to increase their school tours, enrolments and waiting lists to capacity.\n\nThis year we faced a new challenge: getting parents to commit for the long haul.\n\nWe conducted in-depth interviews and asked parents: What would win you back? From their answers, we developed fresh new creative and messaging directly linked to parents’ aspirations for their children.\n\nThis campaign is unlike anything else in the school market. It’s a powerful differentiator that’s continuing high levels of interest in the target market and enrolments and tour attendance are still growing.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p51LYEpT5O\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38122\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Y6fbAAGpQK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38129\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3Nuc4KqR6i\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38130\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rcnsOQ5GI8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38123\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jZNg6COExC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38131\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wchbDpZwnc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38134\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34968,38176,1,'Right time, right place','2021-09-03 01:34:27','2021-09-03 01:34:27','8a778bde-f095-45c7-ac9a-0770b4fbeccc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'So much better than a hospital waiting room',NULL,NULL,'Central Queensland, Wide Bay and Sunshine Coast PHN asked us to refresh its campaign strategy, messaging and creative because people were still going to the emergency department with non-life-threatening sickness or injuries. Our solution was to show the people who live in the region—and holidaymakers—that the emergency department isn\'t the only option.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22011\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22012\",\"22010\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34970,38178,1,'Right time, right place','2021-09-03 01:35:46','2021-09-03 01:35:46','13f690fd-36d7-44f1-9948-ab24e284cfb1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'So much better than a hospital waiting room',NULL,NULL,'Central Queensland, Wide Bay and Sunshine Coast PHN asked us to refresh its campaign strategy, messaging and creative because people were still going to the emergency department with non-life-threatening sickness or injuries. Our solution was to show the people who live in the region—and holidaymakers—that the emergency department isn\'t the only option.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22011\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22012\",\"22010\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34971,38179,1,'Right time, right place','2021-09-03 01:35:54','2021-09-03 01:35:54','5dcdfe8e-f3d1-4a26-b5c0-47d574552de4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'So much better than a hospital waiting room',NULL,NULL,'Central Queensland, Wide Bay and Sunshine Coast PHN asked us to refresh its campaign strategy, messaging and creative because people were still going to the emergency department with non-life-threatening sickness or injuries. Our solution was to show the people who live in the region—and holidaymakers—that the emergency department isn\'t the only option.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22011\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22012\",\"22010\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34973,38181,1,'Safe to See your GP','2021-09-03 01:52:31','2021-09-03 01:52:31','016fb5ba-c830-413e-b87d-ab00541bee80',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'There\'s no reason to put your health on hold',NULL,NULL,'With life beginning to return to normal in Queensland after the height of COVID-19, the Darling Downs and West Moreton  PHN, and Brisbane North PHN wanted to encourage their communities to go back to a normal routine—especially for healthcare.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xsaPgG0g7g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22160\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-emf7fKO95v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Data showed community members were staying at home and not visiting their GP and other health services for regular checkups. \\n\\nTo avoid more serious health and wellbeing problems down the track, the community needed to know it was safe to go back to regular appointments.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bd28dXEaNq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22159\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4a7YEtYm2U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Solution\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We created a fresh campaign called ‘Safe to see your GP’, using friendly animated characters to let people know there is no reason to put their health on hold. \\n\\nThis campaign we developed the campaign strategy, creative, custom illustration, animated video for social media and TV, digital ads, radio ads and landing page.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Lx1YJWY50w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17744\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SJWVzlIztu\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We originally developed this campaign for Darling Downs and West Moreton PHN, and Brisbane North PHN requested to run it as well. It\'s a great example of our Primary Health Networks working together to improve the health of all Australians.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34974,38182,1,'Safe to See your GP','2021-09-03 01:52:38','2021-09-03 01:52:38','4f00b4f5-fbf9-4669-9907-58677541772c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'There\'s no reason to put your health on hold',NULL,NULL,'With life beginning to return to normal in Queensland after the height of COVID-19, the Darling Downs and West Moreton  PHN, and Brisbane North PHN wanted to encourage their communities to go back to a normal routine—especially for healthcare.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xsaPgG0g7g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22160\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-emf7fKO95v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Data showed community members were staying at home and not visiting their GP and other health services for regular checkups. \\n\\nTo avoid more serious health and wellbeing problems down the track, the community needed to know it was safe to go back to regular appointments.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bd28dXEaNq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22159\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4a7YEtYm2U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Solution\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We created a fresh campaign called ‘Safe to see your GP’, using friendly animated characters to let people know there is no reason to put their health on hold. \\n\\nThis campaign we developed the campaign strategy, creative, custom illustration, animated video for social media and TV, digital ads, radio ads and landing page.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Lx1YJWY50w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17744\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SJWVzlIztu\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We originally developed this campaign for Darling Downs and West Moreton PHN, and Brisbane North PHN requested to run it as well. It\'s a great example of our Primary Health Networks working together to improve the health of all Australians.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34976,38184,1,'Tritium','2021-09-03 02:00:34','2021-09-03 02:00:34','d7232ae0-f941-46ca-8255-7fa961c18f1f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league. Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GLSN3YDBFD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"22084\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dz4aGfI5jw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22083\",\"22085\",\"22086\",\"22087\",\"22088\",\"22089\",\"22090\",\"22091\",\"22092\",\"22093\",\"22094\",\"22095\",\"22096\",\"22097\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34978,38186,1,'Tritium','2021-09-03 02:00:54','2021-09-03 02:00:54','fd28a55e-43b3-4b6b-b9e4-57c7ce7626fd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league. Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GLSN3YDBFD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"22084\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dz4aGfI5jw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22083\",\"22085\",\"22086\",\"22087\",\"22088\",\"22089\",\"22090\",\"22091\",\"22092\",\"22093\",\"22094\",\"22095\",\"22096\",\"22097\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34979,38187,1,'Tritium','2021-09-03 02:01:01','2021-09-03 02:01:01','dab40868-f040-4c9a-9705-91c168a16ac7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league. Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GLSN3YDBFD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"22084\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dz4aGfI5jw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22083\",\"22085\",\"22086\",\"22087\",\"22088\",\"22089\",\"22090\",\"22091\",\"22092\",\"22093\",\"22094\",\"22095\",\"22096\",\"22097\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34982,38190,1,'Reasons to Stay','2021-09-03 02:08:55','2021-09-03 02:08:55','233cf4d4-3ad6-4da7-97f7-e30a71ffb52e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Finding reasons to stay',NULL,NULL,'The concept and campaign name of Reasons to Stay emerged from our conversations with people who have lived experience of suicide—both survivors and families of those who had passed away.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Wuk6XROt8C\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19060\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oOjGZKhNOe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Challenge\",\"plainText\":\"Suicide take around eight Australians from us every day and it needs to stop. Brisbane North PHN commissioned us to join the fight against suicide and produce a powerful digital campaign, speaking to people at risk of suicide and to their friends and family.\",\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lo0qiknCPj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19061\",\"19062\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-trgV3eAZYY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19081\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xEmYfpUPYn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19064\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19066\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new3\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19067\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new4\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19068\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447109\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34984,38192,1,'Reasons to Stay','2021-09-03 03:29:11','2021-09-03 03:29:11','2ae79077-b2ee-4dad-a0e3-a35f2630d5dd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Finding reasons to stay',NULL,NULL,'Our agency purpose—to make a meaningful difference to people’s lives—rings no truer than this campaign. Conversations can be lifesaving. The Reasons to Stay campaign drives this message to remind people to reach out and find their reasons to keep living.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Wuk6XROt8C\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19060\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vjXnYnypEU\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Suicide takes around eight Australians from us every day and it needs to stop.\\n\\nBrisbane North PHN commissioned us to join the fight against suicide and produce a powerful digital campaign, speaking to people at risk of suicide and to their friends and family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"},\"collapsed\":\"\"}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xEmYfpUPYn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19064\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19066\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new3\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19067\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new4\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19068\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447109\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hlukn3QtpP\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The concept and campaign name of Reasons to Stay emerged from our conversations with people who have lived experience of suicide—both survivors and families of those who had passed away.\\n\\nThis prevention campaign targeted two specific groups: those at risk of suicide themselves and the friends and family around those at risk.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CYFHnSDjBC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19062\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GgXhbYC3Wx\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Open hearts and minds from beginning to end\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Presenting our creative concepts to these groups enabled us to test and hone visual directions and key messages.\\n\\nWe further refined the work and key members of the focus groups reviewed the results and gave their blessing to the final approach that appears in the campaign videos, digital ads and website.\\n\\nWe also worked with other organisations working across niche groups within our target market to ensure we were inclusive and respectful of their individual efforts in this space.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-trgV3eAZYY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19081\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UvCFl0uQ9c\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our team found the work has a particular significance, specifically in its potential to help keep people in the world.\\n\\nThe PHN’s intention—and ours—is to see this campaign spread far beyond the northern boundaries of Brisbane and make a difference to people’s lives everywhere.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lo0qiknCPj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19061\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34985,38193,1,'Reasons to Stay','2021-09-03 03:29:28','2021-09-03 03:29:28','98744a7d-0fcc-4970-8a5f-5327332aaeb2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Finding reasons to stay',NULL,NULL,'Our agency purpose—to make a meaningful difference to people’s lives—rings no truer than this campaign. Conversations can be lifesaving. The Reasons to Stay campaign drives this message to remind people to reach out and find their reasons to keep living.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Wuk6XROt8C\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19060\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vjXnYnypEU\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Suicide takes around eight Australians from us every day and it needs to stop.\\n\\nBrisbane North PHN commissioned us to join the fight against suicide and produce a powerful digital campaign, speaking to people at risk of suicide and to their friends and family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"},\"collapsed\":\"\"}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xEmYfpUPYn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19064\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19066\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new3\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19067\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new4\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19068\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447109\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hlukn3QtpP\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The concept and campaign name of Reasons to Stay emerged from our conversations with people who have lived experience of suicide—both survivors and families of those who had passed away.\\n\\nThis prevention campaign targeted two specific groups: those at risk of suicide themselves and the friends and family around those at risk.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CYFHnSDjBC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19062\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GgXhbYC3Wx\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Open hearts and minds from beginning to end\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Presenting our creative concepts to these groups enabled us to test and hone visual directions and key messages.\\n\\nWe further refined the work and key members of the focus groups reviewed the results and gave their blessing to the final approach that appears in the campaign videos, digital ads and website.\\n\\nWe also worked with other organisations working across niche groups within our target market to ensure we were inclusive and respectful of their individual efforts in this space.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-trgV3eAZYY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19081\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UvCFl0uQ9c\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our team found the work has a particular significance, specifically in its potential to help keep people in the world.\\n\\nThe PHN’s intention—and ours—is to see this campaign spread far beyond the northern boundaries of Brisbane and make a difference to people’s lives everywhere.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lo0qiknCPj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19061\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34987,38195,1,'What\'s a No. 3?','2021-09-03 04:00:15','2021-09-03 04:00:15','862c7743-7545-47b1-b65e-d569ad338ecc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a No. 3? Anything that shouldn\'t go down the loo.',NULL,NULL,'The playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way. We set out to capture the attention of kids and adults with an innovative and integrated campaign that featured interactive and creative design, animation, illustration, merchandise and video.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19052\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YLmNoEn3SV\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Water and waste treatment are essential services and flushing the wrong items down the toilet costs Queensland Urban Utilities $200 million every year.\\n\\nUrban Utilities asked us to think of an original, creative campaign idea that would resonate with Queensland families. Our solution was the No. 3 campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FITIFbeFNO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19053\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lKKKRlcirp\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"So, what\'s a No. 3? It\'s anything that shouldn’t go down the loo. Talking about our toilet habits is never comfortable. To navigate our way around the taboo topic, our creative team used humour to influence the bright, quirky look and feel of the entire campaign.\\n\\nThe playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rwksXdZztM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19054\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-szxmUd2L8D\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Result\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The campaign reached 29,790 people in its first month, and we quickly saw signs of behaviour change. \\n\\nAccording to independent market research, 50% of people will no longer flush wet wipes, 48% of people will no longer flush tampons, 47% will no longer flush condoms and 45% will no longer flush cotton buds as a result of seeing this campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xxFbGAqcFU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19055\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2exJaiRsw5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17248\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FFU7esnnDy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17249\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cUrrp9Mq8e\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19058\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QpOS0cp79X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17251\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34988,38196,1,'What\'s a No. 3?','2021-09-03 04:00:26','2021-09-03 04:00:26','347f7f87-3fa8-4ee5-aa44-1b3176e3e61f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a No. 3? Anything that shouldn\'t go down the loo.',NULL,NULL,'The playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way. We set out to capture the attention of kids and adults with an innovative and integrated campaign that featured interactive and creative design, animation, illustration, merchandise and video.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19052\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YLmNoEn3SV\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Water and waste treatment are essential services and flushing the wrong items down the toilet costs Queensland Urban Utilities $200 million every year.\\n\\nUrban Utilities asked us to think of an original, creative campaign idea that would resonate with Queensland families. Our solution was the No. 3 campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FITIFbeFNO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19053\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lKKKRlcirp\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"So, what\'s a No. 3? It\'s anything that shouldn’t go down the loo. Talking about our toilet habits is never comfortable. To navigate our way around the taboo topic, our creative team used humour to influence the bright, quirky look and feel of the entire campaign.\\n\\nThe playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rwksXdZztM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19054\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-szxmUd2L8D\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Result\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The campaign reached 29,790 people in its first month, and we quickly saw signs of behaviour change. \\n\\nAccording to independent market research, 50% of people will no longer flush wet wipes, 48% of people will no longer flush tampons, 47% will no longer flush condoms and 45% will no longer flush cotton buds as a result of seeing this campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xxFbGAqcFU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19055\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2exJaiRsw5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17248\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FFU7esnnDy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17249\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cUrrp9Mq8e\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19058\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QpOS0cp79X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17251\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(36170,39378,1,'Domestic and family violence','2021-09-03 05:07:10','2021-09-03 05:07:10','ad4b77cd-0289-4726-8d91-6f875c8d7691',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Everyone deserves to feel safe',NULL,NULL,'We developed a powerful campaign—visuals, messaging and animation—to help Queenslanders understand the nature of domestic and family violence and to seek help for themselves or others.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2BMTwZsxt5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16826\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yW5tY9wyAQ\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":\"\",\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BAdruYcFgJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16838\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CsRNpWzHen\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":\"\",\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fOoytqzb18\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16839\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0Latj6rdpS\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":\"\",\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7Bn5w0QSW7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16840\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-refpZT5QBU\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":\"\",\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JtCJdSgzXY\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":\"\",\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vsjyJmaOWT\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":\"\",\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Qes33flGQL\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Work of this kind speaks straight to our purpose as an agency: to make a meaningful impact to people’s lives. Our team is proud to have been involved supporting families in our local community.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(36293,39501,1,'Domestic and family violence','2021-09-03 05:07:32','2021-09-03 05:07:32','96697e2b-5242-4bb2-97f1-cf757ed7a1c1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Everyone deserves to feel safe',NULL,NULL,'We developed a powerful campaign—visuals, messaging and animation—to help Queenslanders understand the nature of domestic and family violence and to seek help for themselves or others.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2BMTwZsxt5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16826\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yW5tY9wyAQ\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":\"\",\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BAdruYcFgJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16838\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CsRNpWzHen\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":\"\",\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fOoytqzb18\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16839\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0Latj6rdpS\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":\"\",\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7Bn5w0QSW7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16840\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-refpZT5QBU\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":\"\",\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JtCJdSgzXY\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":\"\",\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vsjyJmaOWT\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":\"\",\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Qes33flGQL\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Work of this kind speaks straight to our purpose as an agency: to make a meaningful impact to people’s lives. Our team is proud to have been involved supporting families in our local community.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(37245,40453,1,'Domestic and family violence','2021-09-03 05:17:17','2021-09-03 05:17:17','6fa0089c-708c-446d-b852-2e41e9194da4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Everyone deserves to feel safe',NULL,NULL,'We developed a powerful campaign—visuals, messaging and animation—to help Queenslanders understand the nature of domestic and family violence and to seek help for themselves or others.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2BMTwZsxt5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16826\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yW5tY9wyAQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"To help slow the spread of COVID-19, Queenslanders are spending more time at home—but home isn’t always a safe place.\\n\\nEveryone deserves to feel safe. Domestic and family violence is never acceptable. Help and support are available.\\n\\nThis is the campaign message the Queensland Government commissioned us to develop as the impact of COVID-19 rippled across our state.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BAdruYcFgJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16838\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CsRNpWzHen\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We started the project by researching DFV campaigns in Australia and around the world.\\n\\nOur diverse target market included:\\n\\n1. Adult Queenslanders 18+ who are affected by domestic and family violence\\n\\n- People experiencing domestic and family violence\\n- People who become aware of domestic and family violence occurring\\n\\n2. Young Queenslanders 13-17 years old who may be affected by domestic and family violence in their household.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fOoytqzb18\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16839\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7Bn5w0QSW7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16840\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-refpZT5QBU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Messaging\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Rather than describe exactly what DFV might look like, the scripts and campaign advertisements echo the thoughts and feelings of those experiencing or observing DFV.\\n\\nThe copy style is concise, informal and written to an individual. DFV is complex and often hard to identify. We unpacked the different dimensions of DFV and always pointed the reader or viewer to help and support.\\n\\nOur messages were targeted to a diverse Queensland audience. We aimed to capture the human experience and emotions of DFV through the voice and style of the copy.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JtCJdSgzXY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our creative team completed an environmental scan to develop three design concepts with strategic choices in colours, symbols, typography and iconography.\\n\\nThe icons are simple and symbolic. We were careful to avoid using the human figure or gender-specific shapes to symbolise violent or threatening behaviours.\\n\\nInstead, our goal was to capture the far-reaching effect of domestic violence in the home and family through clean and minimal iconography, colours and shapes.\\n\\nWe used brand colours strategically, ensuring they were striking but not aggressive or alarming. Wherever possible, we avoided dark colours and shadows.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vsjyJmaOWT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Animation\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"When directing the animation style, we wanted to convey the key messages of the campaign clearly and quickly. The morphing animation style is eye-catching and interesting.\\n\\nThe morphing shapes also efficiently unpack important messages to the viewer, complementing and supporting the messages in the video voiceover.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0Latj6rdpS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Phase 2\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"After the success of our 2020 launch, we rolled out a new iteration in 2021 that focused more on the non-physical forms of domestic and family violence.\\n\\nThis includes behaviour around controlling or monitoring finances, technology and social interactions.\\n\\nOur goal: to raise awareness and understanding of these forms of abuse, and communicate the seriousness of these behaviours.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Qes33flGQL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Work of this kind speaks straight to our purpose as an agency: to make a meaningful impact to people’s lives. Our team is proud to have been involved supporting families in our local community.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(37285,40493,1,'I can.','2021-09-03 05:40:34','2021-09-03 05:40:34','e79cc334-8613-4182-9c52-342261d07c31',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Strategy, brand and enrolments campaign',NULL,NULL,'Our campaign was based around the concept of ‘I can’, which responded to market research with parents and focused on the outcomes for students.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p51LYEpT5O\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38122\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iYNrrlmMZA\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We’ve been working with Citipointe Christian College for a number of years, having first helped them define their brand and distinctives, and then campaigned the brand to great success and high enrolments and waiting lists.\\n\\nWe then faced a new challenge: getting parents to commit for the long haul.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Y6fbAAGpQK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38129\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KQMovznY0B\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We conducted in-depth interviews and asked parents: What would win you back? From their answers, we developed fresh new creative and messaging directly linked to parents’ aspirations for their children.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3Nuc4KqR6i\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38130\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UCCnWZFQHi\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The brand is now visually distinguishing from the competition by moving away from the usual depictions of happy children in school uniforms to a stronger conceptual approach that places students within the real-world situations the school is preparing them to reach.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rcnsOQ5GI8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38123\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V3kt5nqhg3\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Results\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"This campaign is unlike anything else in the school market. It’s a powerful differentiator that’s continuing high levels of interest in the target market and enrolments and tour attendance are still growing.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jZNg6COExC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38131\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wchbDpZwnc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38134\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(37286,40494,1,'I can.','2021-09-03 05:40:44','2021-09-03 05:40:44','743156b1-1864-4672-ba64-49849a1b3fd3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Strategy, brand and enrolments campaign',NULL,NULL,'Our campaign was based around the concept of ‘I can’, which responded to market research with parents and focused on the outcomes for students.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p51LYEpT5O\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38122\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iYNrrlmMZA\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We’ve been working with Citipointe Christian College for a number of years, having first helped them define their brand and distinctives, and then campaigned the brand to great success and high enrolments and waiting lists.\\n\\nWe then faced a new challenge: getting parents to commit for the long haul.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Y6fbAAGpQK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38129\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KQMovznY0B\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We conducted in-depth interviews and asked parents: What would win you back? From their answers, we developed fresh new creative and messaging directly linked to parents’ aspirations for their children.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3Nuc4KqR6i\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38130\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UCCnWZFQHi\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The brand is now visually distinguishing from the competition by moving away from the usual depictions of happy children in school uniforms to a stronger conceptual approach that places students within the real-world situations the school is preparing them to reach.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rcnsOQ5GI8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38123\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V3kt5nqhg3\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Results\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"This campaign is unlike anything else in the school market. It’s a powerful differentiator that’s continuing high levels of interest in the target market and enrolments and tour attendance are still growing.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jZNg6COExC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38131\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wchbDpZwnc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38134\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(37288,40496,1,'Domestic and family violence','2021-09-03 05:49:35','2021-09-03 05:49:35','7547890a-71d9-4f12-be73-b6e022367f10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Everyone deserves to feel safe',NULL,NULL,'We developed a powerful campaign—visuals, messaging and animation—to help Queenslanders understand the nature of domestic and family violence and to seek help for themselves or others.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2BMTwZsxt5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16826\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yW5tY9wyAQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"To help slow the spread of COVID-19, Queenslanders are spending more time at home—but home isn’t always a safe place.\\n\\nEveryone deserves to feel safe. Domestic and family violence is never acceptable. Help and support are available.\\n\\nThis is the campaign message the Queensland Government commissioned us to develop as the impact of COVID-19 rippled across our state.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BAdruYcFgJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16838\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CsRNpWzHen\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We started the project by researching DFV campaigns in Australia and around the world.\\n\\nOur diverse target market included:\\n\\n1. Adult Queenslanders 18+ who are affected by domestic and family violence\\n\\n- People experiencing domestic and family violence\\n- People who become aware of domestic and family violence occurring\\n\\n2. Young Queenslanders 13-17 years old who may be affected by domestic and family violence in their household.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fOoytqzb18\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16839\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7Bn5w0QSW7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16840\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-refpZT5QBU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Messaging\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Rather than describe exactly what DFV might look like, the scripts and campaign advertisements echo the thoughts and feelings of those experiencing or observing DFV.\\n\\nThe copy style is concise, informal and written to an individual. DFV is complex and often hard to identify. We unpacked the different dimensions of DFV and always pointed the reader or viewer to help and support.\\n\\nOur messages were targeted to a diverse Queensland audience. We aimed to capture the human experience and emotions of DFV through the voice and style of the copy.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JtCJdSgzXY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our creative team completed an environmental scan to develop three design concepts with strategic choices in colours, symbols, typography and iconography.\\n\\nThe icons are simple and symbolic. We were careful to avoid using the human figure or gender-specific shapes to symbolise violent or threatening behaviours.\\n\\nInstead, our goal was to capture the far-reaching effect of domestic violence in the home and family through clean and minimal iconography, colours and shapes.\\n\\nWe used brand colours strategically, ensuring they were striking but not aggressive or alarming. Wherever possible, we avoided dark colours and shadows.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vsjyJmaOWT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Animation\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"When directing the animation style, we wanted to convey the key messages of the campaign clearly and quickly. The morphing animation style is eye-catching and interesting.\\n\\nThe morphing shapes also efficiently unpack important messages to the viewer, complementing and supporting the messages in the video voiceover.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0Latj6rdpS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Phase 2\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"After the success of our 2020 launch, we rolled out a new iteration in 2021 that focused more on the non-physical forms of domestic and family violence.\\n\\nThis includes behaviour around controlling or monitoring finances, technology and social interactions.\\n\\nOur goal: to raise awareness and understanding of these forms of abuse, and communicate the seriousness of these behaviours.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Qes33flGQL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Work of this kind speaks straight to our purpose as an agency: to make a meaningful impact to people’s lives. Our team is proud to have been involved supporting families in our local community.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(37290,40498,1,'NSPT','2021-09-03 05:55:52','2021-09-03 05:55:52','39e2551e-b107-461a-aa60-bd1b3d38ea9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'National Suicide Prevention Trials',NULL,NULL,'The team of Brisbane North PHN is one of the national sites chosen to deliver National Suicide Prevention Trial (NSPT) funding.\n\nWith the four-year trial drawing to a close, we were chosen to consult with Brisbane North communities who had been selected for the trial: LGBTIQ communities, Aboriginal and Torres Strait Islander communities, and community organisations working with young to middle-aged men.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Bri6BITkLV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\"],\"blocks\":{\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our work had two important parts. The first was to engage deeply and sensitively with communities to understand their experiences, successes and reflections during the four years of trial funding and to report on these. The second was to deliver useful materials the service organisations could use to seek further funding and sponsorships as they transitioned from trial funding.\\n\\nTo successfully undertake community engagement, we again partnered with Janine Crawford, a skilled health consultant and Aboriginal and Torres Strait Islander woman. Our work included workshops, face-to-face interviews and a highly successful yarning circle, and these important and sensitive conversations—which included Sad News/Sorry Business—were given the time and space each needed. \\n\\nThe finalised report was submitted to NSPT as a qualitative reflection on the remarkable achievements of the trial—including the PHN’s commitment to community-led co-design, and the healing within communities that was begun through the intentionally collaborative process.\\n\\nTo offer creative services that were suited to the context, needs and existing resourcing of the seven service organisations, we offered a menu of items, ranging from fact sheets to marketing consultations. The groups then chose the elements that were of greatest use to them.\\n\\nPart of the unique nature of the Brisbane North PHN NSPT trial was the emphasis on community partnerships and collaboration, and we embodied this in our design approach, too. To enable groups to pitch together or separately for any future suicide prevention funding, we created a single brand style to visually unify any designed material. Each group, then, had its own logo and its own colour palette within that visual style—a brand within a brand. That way, any future funding pitches that relied on our designed material could look as though the groups were unique but still closely aligned. \",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(37292,40500,1,'NSPT','2021-09-03 05:58:48','2021-09-03 05:58:48','2c42db54-9c77-464a-bd7a-2a76184c5c19',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'National Suicide Prevention Trials',NULL,NULL,'The team of Brisbane North PHN is one of the national sites chosen to deliver National Suicide Prevention Trial (NSPT) funding.\n\nWith the four-year trial drawing to a close, we were chosen to consult with Brisbane North communities who had been selected for the trial: LGBTIQ communities, Aboriginal and Torres Strait Islander communities, and community organisations working with young to middle-aged men.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Bri6BITkLV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\"],\"blocks\":{\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our work had two important parts. The first was to engage deeply and sensitively with communities to understand their experiences, successes and reflections during the four years of trial funding and to report on these. The second was to deliver useful materials the service organisations could use to seek further funding and sponsorships as they transitioned from trial funding.\\n\\nTo successfully undertake community engagement, we again partnered with Janine Crawford, a skilled health consultant and Aboriginal and Torres Strait Islander woman. Our work included workshops, face-to-face interviews and a highly successful yarning circle, and these important and sensitive conversations—which included Sad News/Sorry Business—were given the time and space each needed. \\n\\nThe finalised report was submitted to NSPT as a qualitative reflection on the remarkable achievements of the trial—including the PHN’s commitment to community-led co-design, and the healing within communities that was begun through the intentionally collaborative process.\\n\\nTo offer creative services that were suited to the context, needs and existing resourcing of the seven service organisations, we offered a menu of items, ranging from fact sheets to marketing consultations. The groups then chose the elements that were of greatest use to them.\\n\\nPart of the unique nature of the Brisbane North PHN NSPT trial was the emphasis on community partnerships and collaboration, and we embodied this in our design approach, too. To enable groups to pitch together or separately for any future suicide prevention funding, we created a single brand style to visually unify any designed material. Each group, then, had its own logo and its own colour palette within that visual style—a brand within a brand. That way, any future funding pitches that relied on our designed material could look as though the groups were unique but still closely aligned. \",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(37293,40501,1,'Queensland Mental Health Commission','2021-09-03 06:04:36','2022-08-24 04:25:36','f5ab992e-a74d-4ea3-8386-3d6ec3eb1e21',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Community engagement strategy',NULL,NULL,'We refined QMHC\'s approach to communication and engagement with stakeholders, with a view to determining an accurate view of the enormous breadth of their stakeholders, their efficacy in reaching them, and the right mix of communication tools and tactics to better engage.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Nja5s2hLHi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Since its inception, the Queensland Mental Health Commission has sought to lead discourse and policy among government, stakeholder and grassroots community groups around mental health, suicide, and alcohol and other drugs.\\n\\nWe gained clear lines of sight into the impressions and needs of their stakeholder audience through 26 guided, in-depth phone interviews. \\n\\nEach interview was between 30 and 45 minutes long, and followed an approved guide to elicit data and insights to key questions. \\n\\nKey stakeholders included representatives of vulnerable groups, including remote communities, LGBTIQ+ stakeholder organisations, and Aboriginal and Torres Strait Islander groups.\\n\\nFrom this data, we developed an insights document and then a strategy to enable the Commission’s 20+ staff to better reach stakeholders with timely, needed communication and engagement opportunities.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'QMHC','Stakeholder engagement',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(37294,40502,1,'QMHC','2021-09-03 06:10:03','2021-09-03 06:10:03','dde1aaa0-a8f9-4509-aaf1-d6b684e90cf0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Queensland Mental Health Commission community engagement',NULL,NULL,'We gained clear lines of sight into the impressions and needs of their stakeholder audience through 26 guided, in-depth phone interviews. Each interview was between 30 and 45 minutes long, and followed an approved guide to elicit data and insights to key questions. Key stakeholders included representatives of vulnerable groups, including remote communities, LGBTIQ+ stakeholder organisations, and Aboriginal and Torres Strait Islander groups.\n\nFrom this data, we developed an insights document and then a strategy to enable the Commission’s 20+ staff to better reach stakeholders with timely, needed communication and engagement opportunities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(37295,40503,1,'Brisbane North PHN','2021-09-03 06:10:44','2021-09-03 06:10:44','3630bfc1-54f1-429e-8a50-1e3a40596873',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'National Suicide Prevention Trials',NULL,NULL,'We were chosen to consult with Brisbane North communities who had been selected for the trial: LGBTIQ communities, Aboriginal and Torres Strait Islander communities, and community organisations working with young to middle-aged men.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Bri6BITkLV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The team of Brisbane North PHN is one of the national sites chosen to deliver National Suicide Prevention Trial (NSPT) funding.\\n\\nOur work had two important parts. The first was to engage deeply and sensitively with communities to understand their experiences, successes and reflections during the four years of trial funding and to report on these. The second was to deliver useful materials the service organisations could use to seek further funding and sponsorships as they transitioned from trial funding.\\n\\nTo successfully undertake community engagement, we again partnered with Janine Crawford, a skilled health consultant and Aboriginal and Torres Strait Islander woman. Our work included workshops, face-to-face interviews and a highly successful yarning circle, and these important and sensitive conversations—which included Sad News/Sorry Business—were given the time and space each needed. \\n\\nThe finalised report was submitted to NSPT as a qualitative reflection on the remarkable achievements of the trial—including the PHN’s commitment to community-led co-design, and the healing within communities that was begun through the intentionally collaborative process.\\n\\nTo offer creative services that were suited to the context, needs and existing resourcing of the seven service organisations, we offered a menu of items, ranging from fact sheets to marketing consultations. The groups then chose the elements that were of greatest use to them.\\n\\nPart of the unique nature of the Brisbane North PHN NSPT trial was the emphasis on community partnerships and collaboration, and we embodied this in our design approach, too. To enable groups to pitch together or separately for any future suicide prevention funding, we created a single brand style to visually unify any designed material. Each group, then, had its own logo and its own colour palette within that visual style—a brand within a brand. That way, any future funding pitches that relied on our designed material could look as though the groups were unique but still closely aligned.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(37296,40504,1,'Heart HQ','2021-09-03 06:26:25','2022-08-12 03:46:35','f60c69b7-3c1b-4765-aba1-7de85a754a3b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'World-class medical with heart',NULL,NULL,'Big ambitions need a brand that accurately reflects their vision and mission, and that’s exactly what we sought to deliver for this client. With Heart HQ, and with the enormous amount of collateral that supports it, we’ve well and truly delivered this.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-P3bQXxcsfs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44878\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uicOuPt9of\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Sunshine Coast Heart Specialists was growing and changing. \\n\\nIn six years, the cardiology practice had grown to nearly 50 staff with rooms throughout the coast. Their cardiologists represented all of the possible sub-specialties within their profession. Within weeks, they would move to new purpose-built premises at Sippy Downs. They were about to open their own coronary CT clinic to the public and a heart murmur clinic to support GPs—both nation-leading initiatives.\\n\\nThe directors realised their geography-specific name would limit their ability to keep growing, and so renaming and rebranding was a strong need.\\n\\nTheir growth had also occurred at such a rate that there was strategic work needed to understand their market share and to form a marketing strategy that would offer them opportunities for segmentation. Growth is reliant on satisfied referring GPs and specialists, and so attention could never be removed from this area.\\n\\nFinally, such growth was also outstripping their capacity to fill the need. Cardiology is a highly specialised field within medicine, and to grow sustainably, they needed to attract more associates.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Lgp01pReVY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44873\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aTg3yWEGh3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Objective\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The practice needed a new name and brand assets for the business to accurately convey the mission and vision of the business, and to grow the business’s referrer and patient networks.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gG5PvaSbvX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44864\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oXH0AQY2PC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our brand strategy drew on customer and referrer interviews, competitor insights and employee workshops, which also helped to define the brand values of the business. \\n\\nIt was clear the practice and the individual directors were held in high esteem by their medical colleagues. They introduced surgical procedures to the Sunshine Coast that were, until then, only practised by a few in major cities. They were introducing clinics and services that had not been seen in regional areas in Australia. This gave us the confidence to be able to propose a tagline that truthfully boasted, ‘world-class cardiac care’.\\n\\nThe second part of the tagline reads: ‘…on the Sunshine Coast’. To compensate for the move away from the regionalisation in their original brand name—Sunshine Coast Heart Specialists—we added it to the tagline. The reason for this is that patients along the coast appreciated the practice was the only place where they could receive the full spectrum of care without having to travel to Brisbane.\\n\\nFinally, an important branding insight from our research was that patients were on a health journey—sometimes quite a precarious one—and could be experiencing anxiety. Patients told us they appreciated the kindness each doctor showed to them in their time of need. Simply promoting expertise could come across as cold and would not fairly represent the doctors’ deep commitment to quality care. So the Heart HQ brand connects with patients on a personal level and makes them feel reassured that they matter.\\n\\nIt’s this mix of strategy and heart that makes Heart HQ a brand that will stand tall among all the others.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ISdJyIN6AW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44874\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDNF080GkR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A name, tagline, brand visual identity, website, signage and countless assets that match up with Heart HQ’s brand promise of delivering world-class cardiac care on the Sunshine Coast.\\n\\nThe quality of the brand assets significantly differentiates Heart HQ from all other competitor practices.\\n\\nCreatively, the brand is modern, refreshing and arguably not what you would expect from an organisation in the medical field – but at the same time, the language is warm, supportive and with just the right amount of authority.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Np5NPasoP9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"##### \\\"Suzanne and her team came highly recommended. It was a great journey working with them to develop our new brand and we were very impressed with their ideas, enthusiasm and innovation. We have a new brand, a new identity and the confidence now to deliver on our growth plans.\\\"\\n\\n**Dr Peter Larsen**\\n<br>Managing Director – Heart HQ\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3VvPbVRO0Q\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45205\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AUTeHLiAy1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"##### \\\"NWO is part of our success journey.\\\"\\n\\n**Dr Peter Larsen**\\n<br>Managing Director – Heart HQ\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'Heart HQ','Big ambitions need a brand that accurately reflects their vision and mission, and that’s exactly what we sought to deliver for this client.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(37297,40505,1,'Heart HQ','2021-09-03 06:36:49','2021-09-03 06:36:49','83cf8718-f4bb-4cfc-94ff-318c5a0f1e84',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'World-class medical with heart',NULL,NULL,'Big ambitions need a brand that accurately reflects their vision and mission, and that’s exactly what we sought to deliver for this client. With Heart HQ, and with the enormous amount of collateral that supports it, we’ve well and truly delivered this.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uicOuPt9of\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Sunshine Coast Heart Specialists was growing and changing. \\n\\nIn six years, the cardiology practice had grown to nearly 50 staff with rooms throughout the coast. Their cardiologists represented all of the possible sub-specialties within their profession. Within weeks, they would move to new purpose-built premises at Sippy Downs. They were about to open their own coronary CT clinic to the public and a heart murmur clinic to support GPs—both nation-leading initiatives.\\n\\nThe directors realised their geography-specific name would limit their ability to keep growing, and so renaming and rebranding was a strong need.\\n\\nTheir growth had also occurred at such a rate that there was strategic work needed to understand their market share and to form a marketing strategy that would offer them opportunities for segmentation. Growth is reliant on satisfied referring GPs and specialists, and so attention could never be removed from this area.\\n\\nFinally, such growth was also outstripping their capacity to fill the need. Cardiology is a highly specialised field within medicine, and to grow sustainably, they needed to attract more associates.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aTg3yWEGh3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Objective\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The practice needed a new name and brand assets for the business to accurately convey the mission and vision of the business, and to grow the business’s referrer and patient networks.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oXH0AQY2PC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our brand strategy drew on customer and referrer interviews, competitor oversight and employee workshops, which also helped to define the brand values of the business. \\n\\nIt was clear the practice and the individual directors were held in high esteem by their medical colleagues. They introduced surgical procedures to the Sunshine Coast that were, until then, only practised by a few in major cities. They were introducing clinics for CT and heart murmurs that had not been seen in regional areas in Australia. This gave us the confidence to be able to propose a tagline that truthfully boasted, ‘world-class cardiac care’.\\n\\nThe second part of the tagline reads: ‘…on the Sunshine Coast’. To compensate for the move away from the regionalisation in their original brand name—Sunshine Coast Heart Specialists—we added it to the tagline. The reason for this is that patients along the coast appreciated the practice was the only place where they could receive the full spectrum of care without having to travel to Brisbane.\\n\\nFinally, an important branding insight from our research was that patients were on a health journey—sometimes quite a precarious one—and could be experiencing anxiety. Patients told us they appreciated the kindness each doctor showed to them in their time of need. Simply promoting expertise could come across as cold and would not fairly represent the doctors’ deep commitment to quality care. So the Heart HQ brand connects with patients on a personal level and makes them feel reassured that they matter.\\n\\nIt’s this mix of strategy and heart that makes Heart HQ a brand that will stand tall among all the others.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDNF080GkR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"A name, tagline, brand visual identity, website, signage and countless assets that match up with Heart HQ’s brand promise of delivering world-class cardiac care on the Sunshine Coast.\\n\\nThe quality of the brand assets significantly differentiates Heart HQ from all other competitor practices.\\n\\nCreatively, the brand is modern, refreshing and arguably not what you would expect from an organisation in the medical field – but at the same time, the language is warm, supportive and with just the right amount of authority.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(37298,40506,1,'West Moreton Anglican College','2021-09-03 06:50:20','2022-08-08 06:26:22','f30796bd-e424-46a7-a4f2-7390d6bd9e48',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The school for (real) life campaign',NULL,NULL,'Like schools everywhere, West Moreton Anglican College needed to change its plans to bring parents onto campus to experience the school because of the coronavirus.\n\nThis meant the annual open day was cancelled. But a few months later when restrictions eased, the school had a chance to bring parents back.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kSAkN1lDaq\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Like schools everywhere, West Moreton Anglican College needed to change its plans to bring parents onto campus to experience the school because of the coronavirus.\\n\\nThis meant the annual open day was cancelled. But a few months later when restrictions eased, the school had a chance to bring parents back.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fxOewiuxW6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45330\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-c4rLGz6SQd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We developed a 16-week plan that timed out the lead up to the modified open day, and follow-up of leads afterwards. It outlined a WestMAC-specific brand campaign that celebrated the WestMAC way and positioned the school as a unique and desirable offering compared to other schools in the catchment area.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GVAyDnsmRc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45329\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o0LzwcEURr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"At the end of the day, parents just want their kids to be happy, healthy and well.\\n\\nWestMAC is a wonderland for kids complete with an agriculture farm, animals and a garden for digging—because that\'s just what kids like doing. It\'s the school for real life.\\n\\nThis campaign included gorgeous hero photography, strategic messaging and a series of videos where students talk about their WestMAC experience.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-66MSHWAoOc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/470822168?h=a0ce3a6b80&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/470822520?h=90034f124f&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KSqaU5wR9Y\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The campaign resonated with parents in the catchment, and filled the tour. We continued to run the campaign for the rest of the year, encouraging prospective parents to attend a personal tour.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ip4P0zUBCI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45333\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'West Moreton Anglican College','The school for (real) life campaign',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(37299,40507,1,'West Moreton Anglican College','2021-09-03 07:15:30','2021-09-03 07:15:30','5680e4f7-56ec-47fe-8b8b-bada45d7f709',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The school for (real) life',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kSAkN1lDaq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Like schools everywhere, West Moreton Anglican College needed to change its plans to bring parents onto campus to experience the school because of the coronavirus.\\n\\nThis meant the annual open day was cancelled. But a few months later when restrictions eased, the school had a chance to bring parents back.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-c4rLGz6SQd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We developed a 16-week plan that timed out the lead up to the modified open day, and follow-up of leads afterwards. It outlined a WestMAC-specific brand campaign that celebrated the WestMAC way and positioned the school as a unique and desirable offering compared to other schools in the catchment area.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o0LzwcEURr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"At the end of the day, parents just want their kids to be happy, healthy and well.\\n\\nWestMAC is a wonderland for kids complete with an agriculture farm, animals and a garden for digging—because that\'s just what kids like doing. It\'s the school for real life.\\n\\nThis campaign included gorgeous hero photography, strategic messaging and a series of videos where students talk about their WestMAC experience.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KSqaU5wR9Y\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The campaign resonated with parents in the catchment, and filled the tour. We continued to run the campaign for the rest of the year, encouraging prospective parents to attend a personal tour.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41626,44834,1,'About us','2021-09-08 04:16:32','2021-09-08 04:16:32','486d1330-20ae-42f3-b472-02d7d75199b1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":\"1\",\"fields\":{\"gridItems\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\",\"new6\"],\"blocks\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Many of our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}}}},\"buttons\":\"\",\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Find out what this means\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"white\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"for **us** and **you...**\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"#\",\"buttonStyle\":\"link\",\"buttonColour\":\"white\"}}}},\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17910\",\"17881\",\"17848\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Stategy\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"\",\"buttonImage\":[\"21910\"],\"internalLink\":\"\",\"externalLink\":\"#footer\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41629,44837,1,'Endeavour Foundation','2021-09-10 01:03:53','2022-08-08 06:23:47','d209afef-5c38-4d1f-afd1-1da6f177b26e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rebranding an icon for a new era',NULL,NULL,'The Endeavour Foundation came to us with a new mandate and a new logo that needed the support of an incredible brand story. We stepped in to capture the essence of authentic customer service: to tell Endeavour’s compelling brand story about the people they serve, and the people who serve.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-i7VSDgqc7V\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45336\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XE9ZIQrYn6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Endeavour delivers essential, personalised and compassionate services to people with intellectual disabilities. When the NDIS was introduced, it was the perfect opportunity for Endeavour to show the world what their services mean to the community it serves.\\n\\nThey asked us to take their new logo and develop a complementary campaign and suite of branding tools to support it. Our goal was to capture the heart of Endeavour Foundation through storytelling and unify the foundation’s people and customers under one powerful vision.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5lKlpPU30x\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45338\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jeFwrbtZMK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45339\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JKRNdGpqnc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We based our campaign strategy on one question: what would make my life better? The question explored Endeavour’s objective to create a brand that could represent their customers and generate greater possibilities for their care. Our creative solution was to make Endeavour customers the heroes.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uYLiG0E4oM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/265285881\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MQfzkp05OB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Endeavour’s new brand video is an expression of their unifying purpose to truly serve and make a meaningful difference in the lives of their customers.\\n\\nThe campaign speaks for and to the extended stakeholder community about the vision, quality and outcomes of Endeavour’s services. It included:\\n<ul>\\n  <li>brand story</li>\\n  <li>full visual brand development from a supplied logo</li>\\n  <li>hero photography</li>\\n  <li>brand book</li>\\n  <li>brand video</li>\\n  <li>employer brand and collateral</li>\\n  <li>launch campaign.</li>\\n</ul>\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QPJ6J6kHcL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45340\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qBnvWlcG0T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Many powerful stories came out of this job, but the most incredible was watching Endeavour customers embrace the opportunity to model for our video and photography crew. Endeavour reported back to us the meaningful moments when their customers saw their photos for the first time.\\n\\nSince the brand and campaign launch in June 2018, Endeavour has boosted their number of leads for their main service areas: accommodation, day services and work placements. With a long-term goal in mind, these results are significantly greater than anticipated, and only a few months since the campaign launch.\\n\\nIn addition, Endeavour reported to us unexpected community engagement at their events—people who have no connection to intellectual disability and have not previously been involved with the foundation. We look forward to following this story and discovering the full impact of our work.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Endeavour Foundation','The Endeavour Foundation came to us with a new mandate and a new logo that needed the support of an incredible brand story.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41630,44838,1,'Endeavour Foundation','2021-09-10 01:16:41','2021-09-10 01:16:41','2e017180-e702-4e5a-8711-9ac4a2911574',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rebranding an icon for a new era',NULL,NULL,'The Endeavour Foundation came to us with a new mandate and a new logo that needed the support of an incredible brand story. We stepped in to capture the essence of authentic customer service: to tell Endeavour’s compelling brand story about the people they serve, and the people who serve.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XE9ZIQrYn6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Endeavour delivers essential, personalised and compassionate services to people with intellectual disabilities. When the NDIS was introduced, it was the perfect opportunity for Endeavour to show the world what their services mean to the community it serves.\\n\\nThey asked us to take their new logo and develop a complementary campaign and suite of branding tools to support it. Our goal was to capture the heart of Endeavour Foundation through storytelling and unify the foundation’s people and customers under one powerful vision.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JKRNdGpqnc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We based our campaign strategy on one question: what would make my life better? The question explored Endeavour’s objective to create a brand that could represent their customers and generate greater possibilities for their care. Our creative solution was to make Endeavour customers the heroes.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MQfzkp05OB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Endeavour’s new brand video is an expression of their unifying purpose to truly serve and make a meaningful difference in the lives of their customers.\\n\\nThe campaign speaks for and to the extended stakeholder community about the vision, quality and outcomes of Endeavour’s services. It included:\\n- brand story\\n- full visual brand development from a supplied logo\\n- hero photography\\n- brand book\\n- brand video\\n- employer brand and collateral\\n- launch campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qBnvWlcG0T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Many powerful stories came out of this job, but the most incredible was watching Endeavour customers embrace the opportunity to model for our video and photography crew. Endeavour reported back to us the meaningful moments when their customers saw their photos for the first time.\\n\\nSince the brand and campaign launch in June 2018, Endeavour has boosted their number of leads for their main service areas: accommodation, day services and work placements. With a long-term goal in mind, these results are significantly greater than anticipated, and only a few months since the campaign launch.\\n\\nIn addition, Endeavour reported to us unexpected community engagement at their events—people who have no connection to intellectual disability and have not previously been involved with the foundation. We look forward to following this story and discovering the full impact of our work.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41632,44840,1,'Brisbane North PHN NSPT','2021-09-10 01:18:35','2021-09-10 01:18:35','3e02dff9-c6bb-48f2-9b62-d2f532eb9b64',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'National Suicide Prevention Trials',NULL,NULL,'We were chosen to consult with Brisbane North communities who had been selected for the trial: LGBTIQ communities, Aboriginal and Torres Strait Islander communities, and community organisations working with young to middle-aged men.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Bri6BITkLV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The team of Brisbane North PHN is one of the national sites chosen to deliver National Suicide Prevention Trial (NSPT) funding.\\n\\nOur work had two important parts. The first was to engage deeply and sensitively with communities to understand their experiences, successes and reflections during the four years of trial funding and to report on these. The second was to deliver useful materials the service organisations could use to seek further funding and sponsorships as they transitioned from trial funding.\\n\\nTo successfully undertake community engagement, we again partnered with Janine Crawford, a skilled health consultant and Aboriginal and Torres Strait Islander woman. Our work included workshops, face-to-face interviews and a highly successful yarning circle, and these important and sensitive conversations—which included Sad News/Sorry Business—were given the time and space each needed. \\n\\nThe finalised report was submitted to NSPT as a qualitative reflection on the remarkable achievements of the trial—including the PHN’s commitment to community-led co-design, and the healing within communities that was begun through the intentionally collaborative process.\\n\\nTo offer creative services that were suited to the context, needs and existing resourcing of the seven service organisations, we offered a menu of items, ranging from fact sheets to marketing consultations. The groups then chose the elements that were of greatest use to them.\\n\\nPart of the unique nature of the Brisbane North PHN NSPT trial was the emphasis on community partnerships and collaboration, and we embodied this in our design approach, too. To enable groups to pitch together or separately for any future suicide prevention funding, we created a single brand style to visually unify any designed material. Each group, then, had its own logo and its own colour palette within that visual style—a brand within a brand. That way, any future funding pitches that relied on our designed material could look as though the groups were unique but still closely aligned.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41633,44841,1,'Brisbane North PHN website','2021-09-10 01:18:39','2022-08-24 01:14:57','fa688c0f-2bf2-4764-955c-40951358f5a2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Better access, better health',NULL,NULL,'The PHN’s website is where the ‘better access, better health’ vision comes to life and starts important conversations. This was an opportunity to innovate, collaborate and leverage the PHN\'s work through a powerful digital solution. With a clean design, intuitive user journeys and plain English content, this site is transforming the digital experience for stakeholders within and outside the PHN.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yXpuBl6k0n\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47745\",\"47746\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fee2W6XmAG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Every conversation matters when it comes to better community access to good health.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Check out the website\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"https://brisbanenorthphn.org.au/\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}}},\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Brisbane North PHN website','The PHN’s website is where the ‘better access, better health’ vision comes to life and starts important conversations.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41634,44842,1,'Brisbane North PHN website','2021-09-10 01:21:43','2021-09-10 01:21:43','958f5295-f764-4879-bbf2-777b271e330d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Better access, better health',NULL,NULL,'The PHN’s website is where the ‘better access, better health’ vision comes to life and starts important conversations. This was an opportunity to innovate, collaborate and leverage the PHN\'s work through a powerful digital solution. With a clean design, intuitive user journeys and plain English content, this site is transforming the digital experience for stakeholders within and outside the PHN.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41635,44843,1,'Brisbane South PHN','2021-09-10 01:24:02','2022-08-08 06:20:26','19199a7b-1f01-4041-84ac-b8605a3f2acc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Aged Care Navigator',NULL,NULL,'We helped Brisbane South PHN to encourage older people to sign up to My Aged Care, so affordable, practical support is ready for them when they need it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oNzYQDCB0J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47749\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JuROxoLizt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Authentic community engagement\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We ran focus groups with people within the target market—in Redlands and Logan—and learned their perceptions of aged care, the challenges with navigating services and levels of participation in My Aged Care.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gGzYlN4TtN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47750\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VOx7qvXe9V\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We developed a campaign strategy and creative to encourage people in the target groups to attend an information session.\\n\\nA key element to our campaign strategy was targeting the \'influencer\' group: children who often help their elderly parents to find the right support and make decisions. Influencers spend a lot of time using digital media, particularly Facebook, so this formed a large part of the campaign collateral we developed.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3VEF0Vw8lC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47751\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VfrmLMDvpV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47752\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Brisbane South PHN','We helped Brisbane South PHN to encourage older people to sign up to My Aged Care, so affordable, practical support is ready for them when they need it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41636,44844,1,'Brisbane South PHN','2021-09-10 01:28:12','2021-09-10 01:28:12','717f6fe6-583e-4c20-8099-22d16d923b62',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Aged Care Navigator',NULL,NULL,'We helped Brisbane South PHN to encourage older people to sign up to My Aged Care, so affordable, practical support is ready for them when they need it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JuROxoLizt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Authentic community engagement\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We ran focus groups with people within the target market—in Redlands and Logan—and learned their perceptions of aged care, the challenges with navigating services and levels of participation in My Aged Care.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VOx7qvXe9V\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We developed a campaign strategy and creative to encourage people in the target groups to attend an information session.\\n\\nA key element to our campaign strategy was targeting the \'influencer\' group: children who often help their elderly parents to find the right support and make decisions. Influencers spend a lot of time using digital media, particularly Facebook, so this formed a large part of the campaign collateral we developed.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41637,44845,1,'Department of Housing and Public Works','2021-09-10 01:29:05','2022-08-08 06:19:55','fd8b5e43-69e6-4713-835c-f770b2fc5e3e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Have your say in a better renting future',NULL,NULL,'With a range of renting reforms not yet law, we created a campaign to drive renters to a survey where they could have their say.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NnAYpM8RPK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47660\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2V7rQTXdap\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"More Queenslanders are renting than ever before.\\n\\nSo the Department of Housing and Public Works wanted to have open and honest conversations with renters, property owners and managers about what matters and what needs to change.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BQeIecGM9t\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47661\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-mjELLOS8zt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The messaging was compelling and obvious to convince the target groups there was value in them participating in the survey. To motivate the audiences, we tapped into key renting issues but kept a warm and positive sentiment.\\n\\nWe developed display ads, videos and static posts to build awareness and capture interest.\\n\\nPlus, we used long-form Facebook posts to convert target group interest and inform them on the details.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CDacbY6rtS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47662\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W1OXhvU4i4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The campaign had a total of 24 posts across two weeks, reaching 1.37 million individual Facebook users, with more than 42,000 engagements.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VN9WYyb9Pi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47663\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Department of Housing and Public Works - Have your say in a better renting future','With a range of renting reforms not yet law, we created a campaign to drive renters to a survey where they could have their say.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41638,44846,1,'Department of Housing and Public Works','2021-09-10 01:37:29','2021-09-10 01:37:29','ecc777bf-9e16-4e37-ac4f-980eea7c96c3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Have your say in a better renting future',NULL,NULL,'With a range of renting reforms not yet law, we created a campaign to drive renters to a survey where they could have their say.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2V7rQTXdap\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new3\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"More Queenslanders are renting than ever before.\\n\\nSo the Department of Housing and Public Works wanted to have open and honest conversations with renters, property owners and managers about what matters and what needs to change.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-mjELLOS8zt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The messaging was compelling and obvious to convince the target groups there was value in them participating in the survey. To motivate the audiences, we tapped into key renting issues but kept a warm and positive sentiment.\\n\\nWe developed display ads, videos and static posts to build awareness and capture interest.\\n\\nPlus, we used long-form Facebook posts to convert target group interest and inform them on the details.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W1OXhvU4i4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The campaign had a total of 24 posts across two weeks, reaching 1.37 million individual Facebook users, with more than 42,000 engagements.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41640,44848,1,'Coomera Anglican College','2021-09-10 01:37:37','2021-09-10 01:37:37','3110a400-f573-4aac-a8a8-5ebe77d401fc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Anything is Possible',NULL,NULL,'This campaign is bridging the gap between Coomera Anglican College\'s storied past and bold future. It\'s a powerful positioning piece that\'s standing the college out from the crowd and showcasing it as the school of choice on the northern Gold Coast.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-B24Vguyo08\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30448\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-I4OkseByw6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Storied past, bold future\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Coomera Anglican College is heavily storied. It’s done a lot of work to capture its history and moments. As result, there is a lot of heritage and tradition for a relatively young school (just 25 years).\\n\\nThe college has set a strong future of innovation and entrepreneurship. It has appointed a deputy principal whose whole focus is innovation. It also has an exceptionally future-focused business manager who is sports-obsessed with big dreams.\\n\\nOur work is helping the college bridge the gap from the past to an exciting future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3S8xZRT3yd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30447\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1dcAEtVD40\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Following focus groups, in-depth interviews, a competitor analysis and a brand refresh in 2020, we embarked on developing a new public-facing campaign to help the college continue to position itself as the private school of choice for the rapidly growing northern Gold Coast region.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7mko9XHUCj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30449\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-27uMRCFOVx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"In order to stand out in the crowded private school space, we looked outside of schools for inspiration—drawing from global sports and technology brands.\\n\\nThis campaign steers right away from traditional school advertising: think students standing and smiling in their school uniforms, older and younger students holding hands and walking through manicured school grounds, girls in safety glasses huddled over a beaker and Bunsen burner.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EkVYlvmrxM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30444\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ek8exDfZlT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The result is a powerful cinematic masterpiece: dramatic, inspirational and compelling. The script was drawn from lyrics of the college’s traditional song. Paired with the inspiring footage, the video effectively acknowledges the past while painting a vivid picture of the future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IGcqD2p42y\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30445\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CUjY0m7ysa\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“It was a pleasure working with New Word Order to develop the new creative for our College. They took the time to get to know what makes our college unique, and helped put that into tangible storytelling.”\",\"plainText\":\"— Aimee Barlett, Marketing and Communications Manager at Coomera Anglican College\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Ja5zJfaN0T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30446\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41641,44849,1,'Pivotus','2021-09-10 01:37:38','2022-08-08 06:22:13','bbcf344b-e69d-4d5b-b11e-b3b868de9ccf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a pivot?',NULL,NULL,'After rapid growth in recent years, My Media Trading Desk (MMTD) hit the pause button and engaged NWO to ask many of their valued clients: What do you really think of MMTD? Their clients’ generous answers both delighted MMTD and offered a mandate to change and grow. Pivotus is their response.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NhnaCQNxpw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47990\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-B78dz1rmC2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"But what do your clients really think?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"NWO began the rebranding process by surveying MMTD’s clients. Commonly held by all of their clients was great regard for their honesty, their industry knowledge, and their unbreakable commitment to exceptional customer service.\\n\\nClients also said they wanted to get deeper insights, beyond the fast and accurate data and delivery MMTD were already known for.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AlIqZXoFkr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47763\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ulVnymquUW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Why Pivotus?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"MMTD needed a new brand to drive their reputation for quality data, strategic advice and superior customer experiences.\\n\\nThe brand needed to convey a clear promise: we’ll rapidly measure and pivot to maximise your media spend returns.\\n\\nTo pivot is to turn on a point—and there’s no better metaphor for how they pivot digital media to get the best possible results for their clients.\\n\\nPivotus is also a call to action: Pivot your brand with their team—because they are nimble, fast and focused in a rapidly changing market.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MJZcxjyvrL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47761\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-w74pYr8Ehf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Founder and CEO Michael Petersen said the new brand better reflects market expectations of their firm and his team’s commitment to a superior customer experience.\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VLVB6hcgiC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47992\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GXT7RzNKoY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47764\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Pivotus - What\'s a pivot?','After rapid growth in recent years, My Media Trading Desk (MMTD) hit the pause button and engaged NWO to ask many of their valued clients: What do you really think of MMTD? Their clients’ generous answers both delighted MMTD and offered a mandate to change and grow. Pivotus is their response.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41644,44852,1,'Safe to See your GP','2021-09-10 01:41:20','2021-09-10 01:41:20','cac31335-556f-4770-a3a6-7ce296f6e2a8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'There\'s no reason to put your health on hold',NULL,NULL,'With life beginning to return to normal in Queensland after the height of COVID-19, the Darling Downs and West Moreton  PHN, and Brisbane North PHN wanted to encourage their communities to go back to a normal routine—especially for healthcare.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xsaPgG0g7g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22160\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-emf7fKO95v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Data showed community members were staying at home and not visiting their GP and other health services for regular checkups. \\n\\nTo avoid more serious health and wellbeing problems down the track, the community needed to know it was safe to go back to regular appointments.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bd28dXEaNq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22159\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4a7YEtYm2U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Solution\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We created a fresh campaign called ‘Safe to see your GP’, using friendly animated characters to let people know there is no reason to put their health on hold. \\n\\nThis campaign we developed the campaign strategy, creative, custom illustration, animated video for social media and TV, digital ads, radio ads and landing page.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Lx1YJWY50w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17744\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SJWVzlIztu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We originally developed this campaign for Darling Downs and West Moreton PHN, and Brisbane North PHN requested to run it as well. It\'s a great example of our Primary Health Networks working together to improve the health of all Australians.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41646,44854,1,'Safe to See your GP','2021-09-10 01:43:09','2021-09-10 01:43:09','751e2d18-4948-4d80-8a94-97c8e27f863b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'There\'s no reason to put your health on hold',NULL,NULL,'With life beginning to return to normal in Queensland after the height of COVID-19, the Darling Downs and West Moreton  PHN, and Brisbane North PHN wanted to encourage their communities to go back to a normal routine—especially for healthcare.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xsaPgG0g7g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22160\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-emf7fKO95v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Data showed community members were staying at home and not visiting their GP and other health services for regular checkups. \\n\\nTo avoid more serious health and wellbeing problems down the track, the community needed to know it was safe to go back to regular appointments.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bd28dXEaNq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22159\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4a7YEtYm2U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Solution\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We created a fresh campaign called ‘Safe to see your GP’, using friendly animated characters to let people know there is no reason to put their health on hold. \\n\\nThis campaign we developed the campaign strategy, creative, custom illustration, animated video for social media and TV, digital ads, radio ads and landing page.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Lx1YJWY50w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17744\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SJWVzlIztu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We originally developed this campaign for Darling Downs and West Moreton PHN, and Brisbane North PHN requested to run it as well. It\'s a great example of our Primary Health Networks working together to improve the health of all Australians.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-S5WWhHCEwb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/440475987\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MmdBErmbdH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/440475790\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41648,44856,1,'Coomera Anglican College','2021-09-10 01:43:47','2021-09-10 01:43:47','fb6acf87-8e15-4fa5-9248-fed34e28ea49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Anything is Possible',NULL,NULL,'This campaign is bridging the gap between Coomera Anglican College\'s storied past and bold future. It\'s a powerful positioning piece that\'s standing the college out from the crowd and showcasing it as the school of choice on the northern Gold Coast.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-B24Vguyo08\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30448\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-I4OkseByw6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Storied past, bold future\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Coomera Anglican College is heavily storied. It’s done a lot of work to capture its history and moments. As result, there is a lot of heritage and tradition for a relatively young school (just 25 years).\\n\\nThe college has set a strong future of innovation and entrepreneurship. It has appointed a deputy principal whose whole focus is innovation. It also has an exceptionally future-focused business manager who is sports-obsessed with big dreams.\\n\\nOur work is helping the college bridge the gap from the past to an exciting future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3S8xZRT3yd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30447\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1dcAEtVD40\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Following focus groups, in-depth interviews, a competitor analysis and a brand refresh in 2020, we embarked on developing a new public-facing campaign to help the college continue to position itself as the private school of choice for the rapidly growing northern Gold Coast region.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7mko9XHUCj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30449\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-27uMRCFOVx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"In order to stand out in the crowded private school space, we looked outside of schools for inspiration—drawing from global sports and technology brands.\\n\\nThis campaign steers right away from traditional school advertising: think students standing and smiling in their school uniforms, older and younger students holding hands and walking through manicured school grounds, girls in safety glasses huddled over a beaker and Bunsen burner.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EkVYlvmrxM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30444\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ek8exDfZlT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The result is a powerful cinematic masterpiece: dramatic, inspirational and compelling. The script was drawn from lyrics of the college’s traditional song. Paired with the inspiring footage, the video effectively acknowledges the past while painting a vivid picture of the future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IGcqD2p42y\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30445\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CUjY0m7ysa\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“It was a pleasure working with New Word Order to develop the new creative for our College. They took the time to get to know what makes our college unique, and helped put that into tangible storytelling.”\",\"plainText\":\"— Aimee Barlett, Marketing and Communications Manager at Coomera Anglican College\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Ja5zJfaN0T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30446\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41650,44858,1,'Coomera Anglican College','2021-09-10 01:45:52','2021-09-10 01:45:52','446354ff-e2a9-4037-8ed1-bdb55865e550',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Anything is Possible',NULL,NULL,'This campaign is bridging the gap between Coomera Anglican College\'s storied past and bold future. It\'s a powerful positioning piece that\'s standing the college out from the crowd and showcasing it as the school of choice on the northern Gold Coast.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-B24Vguyo08\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30448\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-I4OkseByw6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Storied past, bold future\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Coomera Anglican College is heavily storied. It’s done a lot of work to capture its history and moments. As result, there is a lot of heritage and tradition for a relatively young school (just 25 years).\\n\\nThe college has set a strong future of innovation and entrepreneurship. It has appointed a deputy principal whose whole focus is innovation. It also has an exceptionally future-focused business manager who is sports-obsessed with big dreams.\\n\\nOur work is helping the college bridge the gap from the past to an exciting future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3S8xZRT3yd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30447\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1dcAEtVD40\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Following focus groups, in-depth interviews, a competitor analysis and a brand refresh in 2020, we embarked on developing a new public-facing campaign to help the college continue to position itself as the private school of choice for the rapidly growing northern Gold Coast region.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7mko9XHUCj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30449\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-27uMRCFOVx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"In order to stand out in the crowded private school space, we looked outside of schools for inspiration—drawing from global sports and technology brands.\\n\\nThis campaign steers right away from traditional school advertising: think students standing and smiling in their school uniforms, older and younger students holding hands and walking through manicured school grounds, girls in safety glasses huddled over a beaker and Bunsen burner.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EkVYlvmrxM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30444\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ek8exDfZlT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The result is a powerful cinematic masterpiece: dramatic, inspirational and compelling. The script was drawn from lyrics of the college’s traditional song. Paired with the inspiring footage, the video effectively acknowledges the past while painting a vivid picture of the future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IGcqD2p42y\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30445\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CUjY0m7ysa\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“It was a pleasure working with New Word Order to develop the new creative for our College. They took the time to get to know what makes our college unique, and helped put that into tangible storytelling.”\",\"plainText\":\"— Aimee Barlett, Marketing and Communications Manager at Coomera Anglican College\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Ja5zJfaN0T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30446\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wtyTXQ0yRK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/574221746\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41651,44859,1,'Pivotus','2021-09-10 01:46:57','2021-09-10 01:46:57','7e90d652-e147-4337-8443-b375f1417267',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a pivot?',NULL,NULL,'After rapid growth in recent years, My Media Trading Desk (MMTD) hit the pause button and engaged NWO to ask many of their valued clients: What do you really think of MMTD? Their clients’ generous answers both delighted MMTD and offered a mandate to change and grow. Pivotus is their response.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-B78dz1rmC2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"But what do your clients really think?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"NWO began the rebranding process by surveying MMTD’s clients. Commonly held by all of their clients was great regard for their honesty, their industry knowledge, and their unbreakable commitment to exceptional customer service.\\n\\nClients also said they wanted to get deeper insights, beyond the fast and accurate data and delivery MMTD were already known for.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ulVnymquUW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Why Pivotus?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"MMTD needed a new brand to drive their reputation for quality data, strategic advice and superior customer experiences.\\n\\nThe brand needed to convey a clear promise: we’ll rapidly measure and pivot to maximise your media spend returns.\\n\\nTo pivot is to turn on a point—and there’s no better metaphor for how they pivot digital media to get the best possible results for their clients.\\n\\nPivotus is also a call to action: Pivot your brand with their team—because they are nimble, fast and focused in a rapidly changing market.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-w74pYr8Ehf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Founder and CEO Michael Petersen said the new brand better reflects market expectations of their firm and his team’s commitment to a superior customer experience.\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41653,44861,1,'What\'s a No. 3?','2021-09-10 01:47:53','2021-09-10 01:47:53','4a4cc4ff-13cf-40fe-9b54-535309e3f4b2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a No. 3? Anything that shouldn\'t go down the loo.',NULL,NULL,'The playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way. We set out to capture the attention of kids and adults with an innovative and integrated campaign that featured interactive and creative design, animation, illustration, merchandise and video.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19052\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YLmNoEn3SV\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Water and waste treatment are essential services and flushing the wrong items down the toilet costs Queensland Urban Utilities $200 million every year.\\n\\nUrban Utilities asked us to think of an original, creative campaign idea that would resonate with Queensland families. Our solution was the No. 3 campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FITIFbeFNO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19053\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lKKKRlcirp\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"So, what\'s a No. 3? It\'s anything that shouldn’t go down the loo. Talking about our toilet habits is never comfortable. To navigate our way around the taboo topic, our creative team used humour to influence the bright, quirky look and feel of the entire campaign.\\n\\nThe playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rwksXdZztM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19054\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-szxmUd2L8D\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Result\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The campaign reached 29,790 people in its first month, and we quickly saw signs of behaviour change. \\n\\nAccording to independent market research, 50% of people will no longer flush wet wipes, 48% of people will no longer flush tampons, 47% will no longer flush condoms and 45% will no longer flush cotton buds as a result of seeing this campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xxFbGAqcFU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19055\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2exJaiRsw5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17248\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FFU7esnnDy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17249\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cUrrp9Mq8e\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19058\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QpOS0cp79X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17251\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-97JqWmRp6Z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/325104551\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41654,44862,1,'Department of Transport and Main Roads','2021-09-10 01:47:59','2022-05-30 01:22:14','0ec0f364-60a5-46d4-af97-b4b71bcd6649',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'How Queensland Travels',NULL,NULL,'The Department of Transport and Main Roads has measured how, where and why Queenslanders travel since 1976. How Queensland Travels was the first time all of this research had been revealed together.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xiMuwH0qUn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47768\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UGKKHcWkDX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"We crafted a visual metaphor for this important story by enlarging infographic iconography, making it 3D and placing it into real world situations.\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ykadeGb8YM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/145833141?h=da493c8de8&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wXJAJa8GTY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":null,\"plainText\":\"The result is a metaphor for the role of data in the real world, especially as it relates to transport.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MQiJ46BCqv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47767\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IXjmqTVmWl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":null,\"plainText\":\"Our deliverables included an interactive PDF—written, edited and designed by our team—and the beautiful 3D animated video showing the 3D icons moving in the real world.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Department of Transport and Main Roads - How Queensland Travels','The Department of Transport and Main Roads has measured how, where and why Queenslanders travel since 1976. How Queensland Travels was the first time all of this research had been revealed together.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41656,44864,1,'Heart HQ two logos','2021-09-10 01:49:32','2021-10-05 06:32:59','6a4269e8-0be2-4c68-a48f-520e09968a9c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x430_crop_center-center_82_line/21_heart-HQ-web.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x860_crop_center-center_82_line/21_heart-HQ-web.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x358_crop_center-center_82_line/21_heart-HQ-web.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x716_crop_center-center_82_line/21_heart-HQ-web.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x286_crop_center-center_82_line/21_heart-HQ-web.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x573_crop_center-center_82_line/21_heart-HQ-web.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x215_crop_center-center_82_line/21_heart-HQ-web.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x179_crop_center-center_82_line/21_heart-HQ-web.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x430_crop_center-center_82_line/21_heart-HQ-web.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x860_crop_center-center_82_line/21_heart-HQ-web.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x358_crop_center-center_82_line/21_heart-HQ-web.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x716_crop_center-center_82_line/21_heart-HQ-web.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x286_crop_center-center_82_line/21_heart-HQ-web.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x573_crop_center-center_82_line/21_heart-HQ-web.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x215_crop_center-center_82_line/21_heart-HQ-web.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x179_crop_center-center_82_line/21_heart-HQ-web.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":430,\"3072\":860,\"1280\":358,\"2560\":716,\"1024\":286,\"2048\":573,\"768\":215,\"640\":179},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"5208\",\"originalImageHeight\":\"1458\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7wJgn52POeTXjJfIHyqOMcCiiumh1M5n/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#15266c\",\"#dbe7ef\",\"#46b7d4\",\"#66709c\",\"#7484bc\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":430,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41658,44866,1,'Domestic and family violence','2021-09-10 01:50:38','2021-09-10 01:50:38','312a6efc-b5e6-4e07-85a2-ffa08aeb3c44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Everyone deserves to feel safe',NULL,NULL,'We developed a powerful campaign—visuals, messaging and animation—to help Queenslanders understand the nature of domestic and family violence and to seek help for themselves or others.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2BMTwZsxt5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16826\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yW5tY9wyAQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"To help slow the spread of COVID-19, Queenslanders are spending more time at home—but home isn’t always a safe place.\\n\\nEveryone deserves to feel safe. Domestic and family violence is never acceptable. Help and support are available.\\n\\nThis is the campaign message the Queensland Government commissioned us to develop as the impact of COVID-19 rippled across our state.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BAdruYcFgJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16838\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CsRNpWzHen\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We started the project by researching DFV campaigns in Australia and around the world.\\n\\nOur diverse target market included:\\n\\n1. Adult Queenslanders 18+ who are affected by domestic and family violence\\n\\n- People experiencing domestic and family violence\\n- People who become aware of domestic and family violence occurring\\n\\n2. Young Queenslanders 13-17 years old who may be affected by domestic and family violence in their household.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fOoytqzb18\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16839\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7Bn5w0QSW7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16840\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-refpZT5QBU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Messaging\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Rather than describe exactly what DFV might look like, the scripts and campaign advertisements echo the thoughts and feelings of those experiencing or observing DFV.\\n\\nThe copy style is concise, informal and written to an individual. DFV is complex and often hard to identify. We unpacked the different dimensions of DFV and always pointed the reader or viewer to help and support.\\n\\nOur messages were targeted to a diverse Queensland audience. We aimed to capture the human experience and emotions of DFV through the voice and style of the copy.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JtCJdSgzXY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our creative team completed an environmental scan to develop three design concepts with strategic choices in colours, symbols, typography and iconography.\\n\\nThe icons are simple and symbolic. We were careful to avoid using the human figure or gender-specific shapes to symbolise violent or threatening behaviours.\\n\\nInstead, our goal was to capture the far-reaching effect of domestic violence in the home and family through clean and minimal iconography, colours and shapes.\\n\\nWe used brand colours strategically, ensuring they were striking but not aggressive or alarming. Wherever possible, we avoided dark colours and shadows.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vsjyJmaOWT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Animation\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"When directing the animation style, we wanted to convey the key messages of the campaign clearly and quickly. The morphing animation style is eye-catching and interesting.\\n\\nThe morphing shapes also efficiently unpack important messages to the viewer, complementing and supporting the messages in the video voiceover.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0Latj6rdpS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Phase 2\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"After the success of our 2020 launch, we rolled out a new iteration in 2021 that focused more on the non-physical forms of domestic and family violence.\\n\\nThis includes behaviour around controlling or monitoring finances, technology and social interactions.\\n\\nOur goal: to raise awareness and understanding of these forms of abuse, and communicate the seriousness of these behaviours.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Qes33flGQL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Work of this kind speaks straight to our purpose as an agency: to make a meaningful impact to people’s lives. Our team is proud to have been involved supporting families in our local community.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-asjEpeVorj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/572804196\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41659,44867,1,'Heart HQ brochure three pages','2021-09-10 01:51:05','2021-10-05 06:32:37','f2672d2b-6205-4e7e-b0da-b16d821c2c32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x737_crop_center-center_82_line/21_heart-HQ-web2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1474_crop_center-center_82_line/21_heart-HQ-web2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x614_crop_center-center_82_line/21_heart-HQ-web2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1228_crop_center-center_82_line/21_heart-HQ-web2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x491_crop_center-center_82_line/21_heart-HQ-web2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x983_crop_center-center_82_line/21_heart-HQ-web2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x368_crop_center-center_82_line/21_heart-HQ-web2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x307_crop_center-center_82_line/21_heart-HQ-web2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x737_crop_center-center_82_line/21_heart-HQ-web2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1474_crop_center-center_82_line/21_heart-HQ-web2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x614_crop_center-center_82_line/21_heart-HQ-web2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1228_crop_center-center_82_line/21_heart-HQ-web2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x491_crop_center-center_82_line/21_heart-HQ-web2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x983_crop_center-center_82_line/21_heart-HQ-web2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x368_crop_center-center_82_line/21_heart-HQ-web2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x307_crop_center-center_82_line/21_heart-HQ-web2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":737,\"3072\":1474,\"1280\":614,\"2560\":1228,\"1024\":491,\"2048\":983,\"768\":368,\"640\":307},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"5208\",\"originalImageHeight\":\"2500\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6TV/tC6rbyLLIkCxklVkIBYHuAefxq7YSnzCrySO0g3ru7D0FFFDYH//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ccc6c4\",\"#2c426f\",\"#7a5a4b\",\"#a98550\",\"#7b7f8e\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":737,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41661,44869,1,'Department of Transport and Main Roads','2021-09-10 01:52:46','2021-09-10 01:52:46','302d2752-5e4d-47d8-875e-a9b279466724',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'How Queensland Tavels',NULL,NULL,'The Department of Transport and Main Roads has measured how, where and why Queenslanders travel since 1976. How Queensland Travels was the first time all of this research had been revealed together.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UGKKHcWkDX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"We crafted a visual metaphor for this important story by enlarging infographic iconography, making it 3D and placing it into real world situations. \",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wXJAJa8GTY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The result is a metaphor for the role of data in the real world, especially as it relates to transport.\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IXjmqTVmWl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Our deliverables included an interactive PDF—written, edited and designed by our team—and the beautiful 3D animated video showing the 3D icons moving in the real world.\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41662,44870,1,'Domestic and family violence','2021-09-10 01:53:07','2021-09-10 01:53:07','0e3a5f3a-2aaf-48c6-9395-4cbbe855faac',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Everyone deserves to feel safe',NULL,NULL,'We developed a powerful campaign—visuals, messaging and animation—to help Queenslanders understand the nature of domestic and family violence and to seek help for themselves or others.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2BMTwZsxt5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16826\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yW5tY9wyAQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"To help slow the spread of COVID-19, Queenslanders are spending more time at home—but home isn’t always a safe place.\\n\\nEveryone deserves to feel safe. Domestic and family violence is never acceptable. Help and support are available.\\n\\nThis is the campaign message the Queensland Government commissioned us to develop as the impact of COVID-19 rippled across our state.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BAdruYcFgJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16838\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CsRNpWzHen\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We started the project by researching DFV campaigns in Australia and around the world.\\n\\nOur diverse target market included:\\n\\n1. Adult Queenslanders 18+ who are affected by domestic and family violence\\n\\n- People experiencing domestic and family violence\\n- People who become aware of domestic and family violence occurring\\n\\n2. Young Queenslanders 13-17 years old who may be affected by domestic and family violence in their household.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fOoytqzb18\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16839\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7Bn5w0QSW7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16840\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-refpZT5QBU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Messaging\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Rather than describe exactly what DFV might look like, the scripts and campaign advertisements echo the thoughts and feelings of those experiencing or observing DFV.\\n\\nThe copy style is concise, informal and written to an individual. DFV is complex and often hard to identify. We unpacked the different dimensions of DFV and always pointed the reader or viewer to help and support.\\n\\nOur messages were targeted to a diverse Queensland audience. We aimed to capture the human experience and emotions of DFV through the voice and style of the copy.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JtCJdSgzXY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our creative team completed an environmental scan to develop three design concepts with strategic choices in colours, symbols, typography and iconography.\\n\\nThe icons are simple and symbolic. We were careful to avoid using the human figure or gender-specific shapes to symbolise violent or threatening behaviours.\\n\\nInstead, our goal was to capture the far-reaching effect of domestic violence in the home and family through clean and minimal iconography, colours and shapes.\\n\\nWe used brand colours strategically, ensuring they were striking but not aggressive or alarming. Wherever possible, we avoided dark colours and shadows.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vsjyJmaOWT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Animation\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"When directing the animation style, we wanted to convey the key messages of the campaign clearly and quickly. The morphing animation style is eye-catching and interesting.\\n\\nThe morphing shapes also efficiently unpack important messages to the viewer, complementing and supporting the messages in the video voiceover.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0Latj6rdpS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Phase 2\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"After the success of our 2020 launch, we rolled out a new iteration in 2021 that focused more on the non-physical forms of domestic and family violence.\\n\\nThis includes behaviour around controlling or monitoring finances, technology and social interactions.\\n\\nOur goal: to raise awareness and understanding of these forms of abuse, and communicate the seriousness of these behaviours.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Qes33flGQL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Work of this kind speaks straight to our purpose as an agency: to make a meaningful impact to people’s lives. Our team is proud to have been involved supporting families in our local community.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-asjEpeVorj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/572804196\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aCf57wrIYs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/430227569\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41664,44872,1,'Heart HQ','2021-09-10 01:54:33','2021-09-10 01:54:33','5331d847-4bd7-45ad-b3c6-3993712fd8ff',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'World-class medical with heart',NULL,NULL,'Big ambitions need a brand that accurately reflects their vision and mission, and that’s exactly what we sought to deliver for this client. With Heart HQ, and with the enormous amount of collateral that supports it, we’ve well and truly delivered this.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uicOuPt9of\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Sunshine Coast Heart Specialists was growing and changing. \\n\\nIn six years, the cardiology practice had grown to nearly 50 staff with rooms throughout the coast. Their cardiologists represented all of the possible sub-specialties within their profession. Within weeks, they would move to new purpose-built premises at Sippy Downs. They were about to open their own coronary CT clinic to the public and a heart murmur clinic to support GPs—both nation-leading initiatives.\\n\\nThe directors realised their geography-specific name would limit their ability to keep growing, and so renaming and rebranding was a strong need.\\n\\nTheir growth had also occurred at such a rate that there was strategic work needed to understand their market share and to form a marketing strategy that would offer them opportunities for segmentation. Growth is reliant on satisfied referring GPs and specialists, and so attention could never be removed from this area.\\n\\nFinally, such growth was also outstripping their capacity to fill the need. Cardiology is a highly specialised field within medicine, and to grow sustainably, they needed to attract more associates.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aTg3yWEGh3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Objective\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The practice needed a new name and brand assets for the business to accurately convey the mission and vision of the business, and to grow the business’s referrer and patient networks.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oXH0AQY2PC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our brand strategy drew on customer and referrer interviews, competitor oversight and employee workshops, which also helped to define the brand values of the business. \\n\\nIt was clear the practice and the individual directors were held in high esteem by their medical colleagues. They introduced surgical procedures to the Sunshine Coast that were, until then, only practised by a few in major cities. They were introducing clinics for CT and heart murmurs that had not been seen in regional areas in Australia. This gave us the confidence to be able to propose a tagline that truthfully boasted, ‘world-class cardiac care’.\\n\\nThe second part of the tagline reads: ‘…on the Sunshine Coast’. To compensate for the move away from the regionalisation in their original brand name—Sunshine Coast Heart Specialists—we added it to the tagline. The reason for this is that patients along the coast appreciated the practice was the only place where they could receive the full spectrum of care without having to travel to Brisbane.\\n\\nFinally, an important branding insight from our research was that patients were on a health journey—sometimes quite a precarious one—and could be experiencing anxiety. Patients told us they appreciated the kindness each doctor showed to them in their time of need. Simply promoting expertise could come across as cold and would not fairly represent the doctors’ deep commitment to quality care. So the Heart HQ brand connects with patients on a personal level and makes them feel reassured that they matter.\\n\\nIt’s this mix of strategy and heart that makes Heart HQ a brand that will stand tall among all the others.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDNF080GkR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"A name, tagline, brand visual identity, website, signage and countless assets that match up with Heart HQ’s brand promise of delivering world-class cardiac care on the Sunshine Coast.\\n\\nThe quality of the brand assets significantly differentiates Heart HQ from all other competitor practices.\\n\\nCreatively, the brand is modern, refreshing and arguably not what you would expect from an organisation in the medical field – but at the same time, the language is warm, supportive and with just the right amount of authority.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MNtSSBwYBF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/581036917\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41665,44873,1,'Heart HQ front desk and wall art','2021-09-10 01:54:43','2021-10-05 06:32:09','aa439a18-1178-4e99-88fa-9e70b21be00f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x737_crop_center-center_82_line/21_heart-HQ-web5.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1474_crop_center-center_82_line/21_heart-HQ-web5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x614_crop_center-center_82_line/21_heart-HQ-web5.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1228_crop_center-center_82_line/21_heart-HQ-web5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x491_crop_center-center_82_line/21_heart-HQ-web5.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x983_crop_center-center_82_line/21_heart-HQ-web5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x368_crop_center-center_82_line/21_heart-HQ-web5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x307_crop_center-center_82_line/21_heart-HQ-web5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x737_crop_center-center_82_line/21_heart-HQ-web5.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1474_crop_center-center_82_line/21_heart-HQ-web5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x614_crop_center-center_82_line/21_heart-HQ-web5.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1228_crop_center-center_82_line/21_heart-HQ-web5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x491_crop_center-center_82_line/21_heart-HQ-web5.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x983_crop_center-center_82_line/21_heart-HQ-web5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x368_crop_center-center_82_line/21_heart-HQ-web5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x307_crop_center-center_82_line/21_heart-HQ-web5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":737,\"3072\":1474,\"1280\":614,\"2560\":1228,\"1024\":491,\"2048\":983,\"768\":368,\"640\":307},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"5000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AotrCx3Ew8gkJlR+8I6d61pNR+0aUkioIt6kkKM46jjNFFacq0JlJpH//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#a09791\",\"#29324e\",\"#dedbd5\",\"#81573e\",\"#51413f\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":737,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41666,44874,1,'Heart HQ brochure five pages with background design','2021-09-10 01:56:08','2021-10-05 06:31:35','f7827690-89f6-45d9-a04a-20ed9cdfc3b7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x798_crop_center-center_82_line/21_heart-HQ-web2_2021-09-10-015607_ecvr.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1597_crop_center-center_82_line/21_heart-HQ-web2_2021-09-10-015607_ecvr.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x665_crop_center-center_82_line/21_heart-HQ-web2_2021-09-10-015607_ecvr.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1331_crop_center-center_82_line/21_heart-HQ-web2_2021-09-10-015607_ecvr.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x532_crop_center-center_82_line/21_heart-HQ-web2_2021-09-10-015607_ecvr.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1064_crop_center-center_82_line/21_heart-HQ-web2_2021-09-10-015607_ecvr.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x399_crop_center-center_82_line/21_heart-HQ-web2_2021-09-10-015607_ecvr.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x332_crop_center-center_82_line/21_heart-HQ-web2_2021-09-10-015607_ecvr.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x798_crop_center-center_82_line/21_heart-HQ-web2_2021-09-10-015607_ecvr.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1597_crop_center-center_82_line/21_heart-HQ-web2_2021-09-10-015607_ecvr.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x665_crop_center-center_82_line/21_heart-HQ-web2_2021-09-10-015607_ecvr.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1331_crop_center-center_82_line/21_heart-HQ-web2_2021-09-10-015607_ecvr.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x532_crop_center-center_82_line/21_heart-HQ-web2_2021-09-10-015607_ecvr.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1064_crop_center-center_82_line/21_heart-HQ-web2_2021-09-10-015607_ecvr.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x399_crop_center-center_82_line/21_heart-HQ-web2_2021-09-10-015607_ecvr.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x332_crop_center-center_82_line/21_heart-HQ-web2_2021-09-10-015607_ecvr.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":798,\"3072\":1597,\"1280\":665,\"2560\":1331,\"1024\":532,\"2048\":1064,\"768\":399,\"640\":332},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"5417\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6e1l1E+b50jNiRsEKuAoJ46U8X1yz7lUGNiCMkdKKKmTKirn/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d4cbc6\",\"#353e67\",\"#938178\",\"#7b5a4f\",\"#ae8544\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":798,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41669,44877,1,'Endeavour Foundation','2021-09-10 01:57:45','2021-09-10 01:57:45','4703e43b-92ee-4400-9db0-789cdc7c4bc0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rebranding an icon for a new era',NULL,NULL,'The Endeavour Foundation came to us with a new mandate and a new logo that needed the support of an incredible brand story. We stepped in to capture the essence of authentic customer service: to tell Endeavour’s compelling brand story about the people they serve, and the people who serve.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XE9ZIQrYn6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Endeavour delivers essential, personalised and compassionate services to people with intellectual disabilities. When the NDIS was introduced, it was the perfect opportunity for Endeavour to show the world what their services mean to the community it serves.\\n\\nThey asked us to take their new logo and develop a complementary campaign and suite of branding tools to support it. Our goal was to capture the heart of Endeavour Foundation through storytelling and unify the foundation’s people and customers under one powerful vision.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JKRNdGpqnc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We based our campaign strategy on one question: what would make my life better? The question explored Endeavour’s objective to create a brand that could represent their customers and generate greater possibilities for their care. Our creative solution was to make Endeavour customers the heroes.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MQfzkp05OB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Endeavour’s new brand video is an expression of their unifying purpose to truly serve and make a meaningful difference in the lives of their customers.\\n\\nThe campaign speaks for and to the extended stakeholder community about the vision, quality and outcomes of Endeavour’s services. It included:\\n- brand story\\n- full visual brand development from a supplied logo\\n- hero photography\\n- brand book\\n- brand video\\n- employer brand and collateral\\n- launch campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qBnvWlcG0T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Many powerful stories came out of this job, but the most incredible was watching Endeavour customers embrace the opportunity to model for our video and photography crew. Endeavour reported back to us the meaningful moments when their customers saw their photos for the first time.\\n\\nSince the brand and campaign launch in June 2018, Endeavour has boosted their number of leads for their main service areas: accommodation, day services and work placements. With a long-term goal in mind, these results are significantly greater than anticipated, and only a few months since the campaign launch.\\n\\nIn addition, Endeavour reported to us unexpected community engagement at their events—people who have no connection to intellectual disability and have not previously been involved with the foundation. We look forward to following this story and discovering the full impact of our work.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uYLiG0E4oM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/265285881\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41670,44878,1,'Heart HQ image of laptop displaying website','2021-09-10 01:57:57','2021-10-05 06:30:33','08d84c3e-6374-4ae4-af00-f793a2913640',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_heart-HQ-web3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_heart-HQ-web3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_heart-HQ-web3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_heart-HQ-web3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_heart-HQ-web3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_heart-HQ-web3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_heart-HQ-web3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_heart-HQ-web3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_heart-HQ-web3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_heart-HQ-web3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_heart-HQ-web3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_heart-HQ-web3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_heart-HQ-web3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_heart-HQ-web3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_heart-HQ-web3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_heart-HQ-web3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AWy+z3SLcN5rQBOUEZCq4wM7h7CpoY/PvbYrbxNaq22SRAHKjnr3x0GaseDP+RZn/AOu5/ktRaZ/yEx/12P8AWpskhy3sf//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#b9b7af\",\"#262d2c\",\"#67312c\",\"#5e695f\",\"#856d37\"],\"lightness\":41,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41671,44879,1,'Home','2021-09-10 01:58:36','2022-05-17 23:19:16','328e5932-e441-447b-8b00-7e052023820e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | Brisbane','It\'s time for change. Proven strategy, fresh creative and powerful execution that will change your business.','strategy, brand, campaign, behaviour change, engagement, content, digital',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41672,44880,1,'Home','2021-09-10 01:58:36','2021-09-10 01:58:36','ab6dc47c-5be5-4ea3-b996-5b672071059e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41673,44881,1,'Home','2021-09-10 02:00:40','2021-09-10 02:00:40','520756c0-a07d-46c2-896c-55e9b4b70982',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41675,44972,1,'Home','2021-09-10 02:02:41','2021-09-10 02:02:41','b814e155-3149-473b-99bd-16e6946f35fa',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41676,44978,1,'Revelian','2021-09-10 02:05:36','2021-09-10 02:05:36','c9cf1e58-37a2-45ea-bf41-916078d4942e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The big reveal',NULL,NULL,'Revelian is a charismatic player in the field of business talent identification and assessment. We told Revelian’s story by rolling out a suite of new brand tools and using a powerful visual metaphor for the outcomes their customers gain.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3ldwVmO5X2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"A beautiful partnership\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our goal was to position and powerfully differentiate this business from its competitors. The branding achieves this and binds Revelian’s internal team more closely to its purpose and business objectives. In doing so, it ensures current and prospective customers and partners can access, understand—and most importantly—prefer Revelian and its offering.\\n\\nOverall, our rollout for Revelian was staged and achievable, allowing the client to adjust and update their brand over time. This approach remains cost-effective for our client and has allowed us to work with them closely with key stakeholders to ensure we are meeting their needs and creating value for their investment.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-l0m2MRWrk9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"A new brand story to tell\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The Revelian brand story centres around the stories of their prospective customers—those who require business talent identification and assessment. Revelian’s narrative guides these customers along a compelling journey. It reads like any good treasure hunt should: the hunter driven by the thrill of next step and the genuine promise of quality and authenticity.\\n\\nThe intrigue and complexity of human behaviour is a fascinating topic that most of us explore throughout our daily life and work. Revelian uncovers the hidden, delves inside and goes beneath the surface to reveal the truth inside people, for businesses and organisations wanting to hire people well, and utilise them well.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-zVMqQZyrh0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"A refreshing approach\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"As we refreshed their brand, we wrapped every element in the concept of ‘reveal’. The idea flows consistently throughout every aspect of the Revelian brand: we’ll start on the surface and delve deeper into the intrigue of human behaviour and insights for hiring and people management solutions.\\n\\nWhile the logo remains simple, strong and typographic, the visual elements have starring roles. Using filters, colours, photography and myriad gorgeous design treatments, they show and tell how the company reveals its precious insights.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UCB7SM9ORH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strong, productive relationships\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our successful working relationship with the client has been key to forming the initial strategy for their brand development, website, collateral and exhibition development.\\n\\nOur team of creatives, developers and content specialists have enjoyed walking through this journey with Revelian.\\n\\nThe insights we’ve gained from this partnership have allowed us to produce work that performs to a very high standard within the agreed-upon scope, budget and timeframe.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FzPUJWQp19\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"A new front door\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"After refreshing their brand, we began redeveloping the Revelian website. To start with, we created a content strategy based on customer journeys and key messages. \\n\\nOur team of content specialists worked with the client to edit and review web copy for pages on the website. \\n\\nWith copy and wireframes ready and approved for development, our digital team applied the refreshed branding across the website.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41678,44980,1,'Revelian','2021-09-10 02:05:54','2021-09-10 02:05:54','9f2ac3b6-c5f1-4f45-9b21-96b8c5a4dbf4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The big reveal',NULL,NULL,'Revelian is a charismatic player in the field of business talent identification and assessment. We told Revelian’s story by rolling out a suite of new brand tools and using a powerful visual metaphor for the outcomes their customers gain.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3ldwVmO5X2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"A beautiful partnership\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our goal was to position and powerfully differentiate this business from its competitors. The branding achieves this and binds Revelian’s internal team more closely to its purpose and business objectives. In doing so, it ensures current and prospective customers and partners can access, understand—and most importantly—prefer Revelian and its offering.\\n\\nOverall, our rollout for Revelian was staged and achievable, allowing the client to adjust and update their brand over time. This approach remains cost-effective for our client and has allowed us to work with them closely with key stakeholders to ensure we are meeting their needs and creating value for their investment.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-l0m2MRWrk9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"A new brand story to tell\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The Revelian brand story centres around the stories of their prospective customers—those who require business talent identification and assessment. Revelian’s narrative guides these customers along a compelling journey. It reads like any good treasure hunt should: the hunter driven by the thrill of next step and the genuine promise of quality and authenticity.\\n\\nThe intrigue and complexity of human behaviour is a fascinating topic that most of us explore throughout our daily life and work. Revelian uncovers the hidden, delves inside and goes beneath the surface to reveal the truth inside people, for businesses and organisations wanting to hire people well, and utilise them well.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-zVMqQZyrh0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"A refreshing approach\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"As we refreshed their brand, we wrapped every element in the concept of ‘reveal’. The idea flows consistently throughout every aspect of the Revelian brand: we’ll start on the surface and delve deeper into the intrigue of human behaviour and insights for hiring and people management solutions.\\n\\nWhile the logo remains simple, strong and typographic, the visual elements have starring roles. Using filters, colours, photography and myriad gorgeous design treatments, they show and tell how the company reveals its precious insights.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UCB7SM9ORH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strong, productive relationships\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our successful working relationship with the client has been key to forming the initial strategy for their brand development, website, collateral and exhibition development.\\n\\nOur team of creatives, developers and content specialists have enjoyed walking through this journey with Revelian.\\n\\nThe insights we’ve gained from this partnership have allowed us to produce work that performs to a very high standard within the agreed-upon scope, budget and timeframe.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FzPUJWQp19\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"A new front door\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"After refreshing their brand, we began redeveloping the Revelian website. To start with, we created a content strategy based on customer journeys and key messages. \\n\\nOur team of content specialists worked with the client to edit and review web copy for pages on the website. \\n\\nWith copy and wireframes ready and approved for development, our digital team applied the refreshed branding across the website.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41679,44981,1,'Aseeos','2021-09-10 02:07:38','2022-08-12 03:45:04','06778e63-4369-46ef-8289-0ef8c2b0dfc4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Delivering for disruptors',NULL,NULL,'Aseeos rebranded to transform its 10-year-old installation business into an industry-disrupting model that solves age-old industry problems of supply, quality and budget overruns. We worked closely with the team to take its core brand elements and develop a full range of collateral, including signage, brochures and catalogues, video, marketing, events and website.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bmUfyXmDcz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47997\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fyTxfCvyJr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47773\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WYeceTl1wB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/194746924?h=02b6e594f2&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Aseeos - Delivering for disruptors','Aseeos rebranded to transform its 10-year-old installation business into an industry-disrupting model that solves age-old industry problems of supply, quality and budget overruns. We worked closely with the team to take its core brand elements and develop a full range of collateral, including signage, brochures and catalogues, video, marketing, events and website.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41680,44982,1,'Asseos','2021-09-10 02:10:02','2021-09-10 02:10:02','bcc14c73-4164-4126-9324-e762dc71f0c3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Delivering for disruptors',NULL,NULL,'Asseos rebranded to transform its 10-year-old installation business into an industry-disrupting model that solves age-old industry problems of supply, quality and budget overruns. We worked closely with the team to take its core brand elements and develop a full range of collateral, including signage, brochures and catalogues, video, marketing, events and website.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41681,44983,1,'FOPATS','2021-09-10 02:10:22','2021-10-14 05:45:57','8f587f67-5141-41c3-b5d8-078f2ba938c5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Out with the old, in with the new',NULL,NULL,'FOPATS is a memorable acronym you’ll need to watch our video to decipher. FOPATS’ role was to manage the transition to a new housing and tenancy software platform in Queensland’s Department of Housing and Public Works—a critical tool in the department’s work. We created an employer marketing campaign to help explain the change and developed the character metaphors—two groovy robots—to embody the old and new platforms. Using video, displays, desktop tent cards and digital tools, the project involved branding, character development, video production, print production and software/web design.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41682,44984,1,'FOPATS','2021-09-10 02:13:28','2021-09-10 02:13:28','34dd7e1f-a83d-48c1-9642-8a83b3fdb1d2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Out with the old, in with the new',NULL,NULL,'FOPATS is a memorable acronym you’ll need to watch our video to decipher. FOPATS’ role was to manage the transition to a new housing and tenancy software platform in Queensland’s Department of Housing and Public Works—a critical tool in the department’s work. We created an employer marketing campaign to help explain the change and developed the character metaphors—two groovy robots—to embody the old and new platforms. Using video, displays, desktop tent cards and digital tools, the project involved branding, character development, video production, print production and software/web design.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41683,44985,1,'Physiotas','2021-09-10 02:13:46','2021-09-27 02:02:40','f1d57e61-ad06-4c09-81ac-7a17a626464c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Better together',NULL,NULL,'Boasting a proud history of providing trusted physio services to Northern Tasmania under a franchise brand, the team grabbed the opportunity this year to create their own name and brand and launch in time for their fifth and largest location in Launceston. We provided name development, logo and visual identity development as well as the new company website.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41684,44986,1,'Physiotas','2021-09-10 02:15:58','2021-09-10 02:15:58','49090bee-7f0a-4c0e-812f-ff79c51f3c72',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Better together',NULL,NULL,'Boasting a proud history of providing trusted physio services to Northern Tasmania under a franchise brand, the team grabbed the opportunity this year to create their own name and brand and launch in time for their fifth and largest location in Launceston. We provided name development, logo and visual identity development as well as the new company website.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41685,44987,1,'The School of Distance Education – Charters Towers','2021-09-10 02:18:13','2022-08-24 06:52:57','967d4f54-50d2-4a94-aa05-51765d8f08c8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The difference a brand can make',NULL,NULL,'This beautiful new brand for SDECT is just one example of how vital visual identity is to telling the true story of any organisation—and how solid marketing strategy, coupled with research, delivers results.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GgxMHLzdFt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Brands should go before you, showcasing a school’s distinctives, paving the way for more positive conversations to come. However, this was not the case at first for the School of Distance Education Charters Towers (SDECT).\\n\\nAs we learned more about the school through in-depth interviews with students, parents and staff, we discovered the school for what it is: contemporary and worthy of its national audience. The school had far surpassed what its brand represented, and it was our job to launch its look into the 21st century.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rq6KvKDblN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We discovered what made SDECT different to other distance education schools: its willingness to accept any child—students who live in isolated locations, have been expelled, live with disabilities or have learning difficulties, or have chronic physical or mental illness. The school\'s level of care, personal attention and customisation sets it apart.\\n\\nThe stories we heard from our research formed the basis of our messaging strategy. We posed this question to prospective families: \'What if an entire school exists only for your child?\' All of our messaging was crafted around this idea.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aqpv5uCKsx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Brand rollout\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We started by replacing the logo, colours and photography to create a fresh, clean and sophisticated look. We developed a range of applications for the new brand across collateral including certificates, banners and signage.\\n\\nWe also developed an informative website separate from the official school website, built for prospective parents. It houses information and stories about learning from home. As part of the website, we developed a range of downloadable fact sheets providing more detail on each topic.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5huCNjtxBM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Campaign\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Once the brand and website were in place, we developed an email campaign to organisations and other schools to build awareness. We sent electronic direct mail to four target groups, each with a clean look and strategic messaging.\\n\\nWe also developed the school’s first-ever social media presence through Facebook. We created content and built an engaged online community within six months, all while we trained and mentored their inhouse communications team to carry the work forward.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lG2tB4Nlor\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"SDECT was not prepared for what came next. Enrolments increased by 255 per cent—from fewer than 900 to 2300—in 2018. And in 2019, we again targeted enrolment growth for SDECT. We also ran a recruitment campaign to meet demand with quality teachers.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41687,44989,1,'Heart HQ','2021-09-10 02:22:58','2021-09-10 02:22:58','dd705934-ac91-4f35-a4eb-3a806ee9b019',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'World-class medical with heart',NULL,NULL,'Big ambitions need a brand that accurately reflects their vision and mission, and that’s exactly what we sought to deliver for this client. With Heart HQ, and with the enormous amount of collateral that supports it, we’ve well and truly delivered this.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uicOuPt9of\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Sunshine Coast Heart Specialists was growing and changing. \\n\\nIn six years, the cardiology practice had grown to nearly 50 staff with rooms throughout the coast. Their cardiologists represented all of the possible sub-specialties within their profession. Within weeks, they would move to new purpose-built premises at Sippy Downs. They were about to open their own coronary CT clinic to the public and a heart murmur clinic to support GPs—both nation-leading initiatives.\\n\\nThe directors realised their geography-specific name would limit their ability to keep growing, and so renaming and rebranding was a strong need.\\n\\nTheir growth had also occurred at such a rate that there was strategic work needed to understand their market share and to form a marketing strategy that would offer them opportunities for segmentation. Growth is reliant on satisfied referring GPs and specialists, and so attention could never be removed from this area.\\n\\nFinally, such growth was also outstripping their capacity to fill the need. Cardiology is a highly specialised field within medicine, and to grow sustainably, they needed to attract more associates.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aTg3yWEGh3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Objective\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The practice needed a new name and brand assets for the business to accurately convey the mission and vision of the business, and to grow the business’s referrer and patient networks.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oXH0AQY2PC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our brand strategy drew on customer and referrer interviews, competitor oversight and employee workshops, which also helped to define the brand values of the business. \\n\\nIt was clear the practice and the individual directors were held in high esteem by their medical colleagues. They introduced surgical procedures to the Sunshine Coast that were, until then, only practised by a few in major cities. They were introducing clinics for CT and heart murmurs that had not been seen in regional areas in Australia. This gave us the confidence to be able to propose a tagline that truthfully boasted, ‘world-class cardiac care’.\\n\\nThe second part of the tagline reads: ‘…on the Sunshine Coast’. To compensate for the move away from the regionalisation in their original brand name—Sunshine Coast Heart Specialists—we added it to the tagline. The reason for this is that patients along the coast appreciated the practice was the only place where they could receive the full spectrum of care without having to travel to Brisbane.\\n\\nFinally, an important branding insight from our research was that patients were on a health journey—sometimes quite a precarious one—and could be experiencing anxiety. Patients told us they appreciated the kindness each doctor showed to them in their time of need. Simply promoting expertise could come across as cold and would not fairly represent the doctors’ deep commitment to quality care. So the Heart HQ brand connects with patients on a personal level and makes them feel reassured that they matter.\\n\\nIt’s this mix of strategy and heart that makes Heart HQ a brand that will stand tall among all the others.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDNF080GkR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"A name, tagline, brand visual identity, website, signage and countless assets that match up with Heart HQ’s brand promise of delivering world-class cardiac care on the Sunshine Coast.\\n\\nThe quality of the brand assets significantly differentiates Heart HQ from all other competitor practices.\\n\\nCreatively, the brand is modern, refreshing and arguably not what you would expect from an organisation in the medical field – but at the same time, the language is warm, supportive and with just the right amount of authority.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MNtSSBwYBF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/581036917\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41689,44996,1,'Home','2021-09-10 02:23:39','2021-09-10 02:23:39','4f3a4b7f-965d-414d-bd7b-6b3b6cf22a0d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41691,45008,1,'Home','2021-09-10 02:25:54','2021-09-10 02:25:54','56f5f790-326f-4d5c-b4fc-d0d26ccc463a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41693,45020,1,'Home','2021-09-10 02:26:16','2021-09-10 02:26:16','df86476b-44ee-476f-8611-826df502e973',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41695,45032,1,'Home','2021-09-10 02:28:15','2021-09-10 02:28:15','355dfe1a-0764-4b9b-9c29-870866de7d4b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41697,45044,1,'Home','2021-09-10 02:28:45','2021-09-10 02:28:45','aadf6cd9-c644-4db1-9b0d-a18d22e72b61',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41699,45056,1,'Home','2021-09-10 02:30:52','2021-09-10 02:30:52','80bbe44e-b49f-450f-9b5f-a980bbe110d4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41701,45068,1,'Home','2021-09-10 02:31:08','2021-09-10 02:31:08','6ae37807-9be8-4ba9-a30c-7cc090f1dcae',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41703,45080,1,'Home','2021-09-10 02:31:42','2021-09-10 02:31:42','7c617496-e085-4a0a-9114-c4e29b1cb7b1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41705,45092,1,'Home','2021-09-10 02:32:15','2021-09-10 02:32:15','bc651ce8-3ca5-4982-9c6f-27bc545a4a96',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41707,45104,1,'Home','2021-09-10 02:32:28','2021-09-10 02:32:28','f9aefc13-f06f-4edc-bc7a-5f2c5ee992c7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41709,45116,1,'Home','2021-09-10 02:33:18','2021-09-10 02:33:18','d3e4d03c-7915-42e3-8f05-70acb10544ac',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41711,45128,1,'Home','2021-09-10 02:34:41','2021-09-10 02:34:41','f22b7e9b-1295-4446-8b1c-480180a80986',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41713,45140,1,'Home','2021-09-10 02:35:45','2021-09-10 02:35:45','59853e73-ded5-4205-87fa-bac87622895d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41715,45152,1,'Home','2021-09-10 02:36:19','2021-09-10 02:36:19','23ba0c65-f67c-4924-9bca-a27af935fc68',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41717,45164,1,'Home','2021-09-10 02:36:39','2021-09-10 02:36:39','cfa21b58-be6a-4506-bfb1-8bcf819e8af4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41719,45176,1,'Home','2021-09-10 03:08:20','2021-09-10 03:08:20','53e2a3d9-2954-4ce2-bd6f-0ac0cd5cb2b7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41721,45188,1,'Home','2021-09-10 03:10:52','2021-09-10 03:10:52','d29e1f7f-bf69-4ff4-931b-018e2a52211c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41723,45200,1,'Home','2021-09-10 03:11:43','2021-09-10 03:11:43','1a4aaa6a-29f2-440c-92bc-1524817fd248',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41724,45205,1,'Heart HQ photography stills collage','2021-09-10 03:12:08','2021-10-05 06:29:51','b6d65045-1596-4c1b-927f-1d8d2c9a7de7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_heart-HQ-web6.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_heart-HQ-web6.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_heart-HQ-web6.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_heart-HQ-web6.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_heart-HQ-web6.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_heart-HQ-web6.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_heart-HQ-web6.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_heart-HQ-web6.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_heart-HQ-web6.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_heart-HQ-web6.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_heart-HQ-web6.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_heart-HQ-web6.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_heart-HQ-web6.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_heart-HQ-web6.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_heart-HQ-web6.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_heart-HQ-web6.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AtQW4Mikb4yQUUorepPTHuRU3lyRlQIZHj4IfjcrEnqPxrNt/+P6X/rq//oQqO5/4/rj/AK6P/wCjFqthn//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c9bfbc\",\"#2f2f44\",\"#6f7593\",\"#62464a\",\"#826a4b\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41726,45207,1,'I can','2021-09-10 03:14:48','2021-09-10 03:14:48','9c3e91d0-5435-464f-b9e6-f12da91874f1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Strategy, brand and enrolments campaign',NULL,NULL,'Our campaign was based around the concept of ‘I can’, which responded to market research with parents and focused on the outcomes for students.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p51LYEpT5O\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38122\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iYNrrlmMZA\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We’ve been working with Citipointe Christian College for a number of years, having first helped them define their brand and distinctives, and then campaigned the brand to great success and high enrolments and waiting lists.\\n\\nWe then faced a new challenge: getting parents to commit for the long haul.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Y6fbAAGpQK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38129\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KQMovznY0B\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We conducted in-depth interviews and asked parents: What would win you back? From their answers, we developed fresh new creative and messaging directly linked to parents’ aspirations for their children.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3Nuc4KqR6i\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38130\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UCCnWZFQHi\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The brand is now visually distinguishing from the competition by moving away from the usual depictions of happy children in school uniforms to a stronger conceptual approach that places students within the real-world situations the school is preparing them to reach.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rcnsOQ5GI8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38123\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V3kt5nqhg3\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Results\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"This campaign is unlike anything else in the school market. It’s a powerful differentiator that’s continuing high levels of interest in the target market and enrolments and tour attendance are still growing.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jZNg6COExC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38131\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wchbDpZwnc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"38134\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41728,45209,1,'National Suicide Prevention Trial two brochures front and back cover','2021-09-10 03:19:13','2021-10-05 06:29:25','7fbfcb96-6064-4450-a9a3-deb35c024645',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x841_crop_center-center_82_line/21_NSPT.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1683_crop_center-center_82_line/21_NSPT.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x701_crop_center-center_82_line/21_NSPT.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1402_crop_center-center_82_line/21_NSPT.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x561_crop_center-center_82_line/21_NSPT.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1122_crop_center-center_82_line/21_NSPT.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x420_crop_center-center_82_line/21_NSPT.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x350_crop_center-center_82_line/21_NSPT.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x841_crop_center-center_82_line/21_NSPT.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1683_crop_center-center_82_line/21_NSPT.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x701_crop_center-center_82_line/21_NSPT.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1402_crop_center-center_82_line/21_NSPT.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x561_crop_center-center_82_line/21_NSPT.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1122_crop_center-center_82_line/21_NSPT.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x420_crop_center-center_82_line/21_NSPT.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x350_crop_center-center_82_line/21_NSPT.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":841,\"3072\":1683,\"1280\":701,\"2560\":1402,\"1024\":561,\"2048\":1122,\"768\":420,\"640\":350},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"8333\",\"originalImageHeight\":\"4566\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3vEsmtQTW8umnfBuAZETJz7+1TaDe39wXju4ywQnMhG0g+mO9FFXf3TGSfOtT//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1b667a\",\"#ecf7f7\",\"#22adb0\",\"#84a4bc\",\"#9c949c\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":841,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41729,45210,1,'National Suicide Prevention Trial brochure twelve pages_2','2021-09-10 03:19:25','2021-10-05 06:28:58','7c1fd86d-1e94-48d8-830b-294657c2aec9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x841_crop_center-center_82_line/21_NSPT2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1683_crop_center-center_82_line/21_NSPT2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x701_crop_center-center_82_line/21_NSPT2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1402_crop_center-center_82_line/21_NSPT2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x561_crop_center-center_82_line/21_NSPT2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1122_crop_center-center_82_line/21_NSPT2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x420_crop_center-center_82_line/21_NSPT2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x350_crop_center-center_82_line/21_NSPT2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x841_crop_center-center_82_line/21_NSPT2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1683_crop_center-center_82_line/21_NSPT2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x701_crop_center-center_82_line/21_NSPT2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1402_crop_center-center_82_line/21_NSPT2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x561_crop_center-center_82_line/21_NSPT2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1122_crop_center-center_82_line/21_NSPT2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x420_crop_center-center_82_line/21_NSPT2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x350_crop_center-center_82_line/21_NSPT2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":841,\"3072\":1683,\"1280\":701,\"2560\":1402,\"1024\":561,\"2048\":1122,\"768\":420,\"640\":350},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"8333\",\"originalImageHeight\":\"4566\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6qZ52ecC4ZYxxwvIO4d89MUtkJoRDFNcSTMF5Yj72WPv9PyoooEf/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d8d9d9\",\"#305467\",\"#8da2a3\",\"#7e9a79\",\"#81686f\"],\"lightness\":58,\"placeholderWidth\":1536,\"placeholderHeight\":841,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41730,45211,1,'Ryan Murray - Brand Audit Submission - 10 Sep, 2021','2021-09-10 03:57:09','2021-09-10 03:57:09','59ca3e52-6031-4c9b-af0c-1d4787d0325a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people','This is some stuff',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41731,45212,1,'Ryan Murray - Brand Audit Submission - 10 Sep, 2021','2021-09-10 03:57:31','2021-09-10 03:57:31','30daf9df-ccef-4911-af24-039f2c333603',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people','This is some stuff','Cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41732,45213,1,'The School of Distance Education – Charters Towers','2021-09-10 05:09:45','2021-09-10 05:09:45','ac125340-eb7c-40f5-ac4e-dc0d02f0756e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The difference a brand can make',NULL,NULL,'This beautiful new brand for SDECT is just one example of how vital visual identity is to telling the true story of any organisation—and how solid marketing strategy, coupled with research, delivers results.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GgxMHLzdFt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Brands should go before you, showcasing a school’s distinctives, paving the way for more positive conversations to come. However, this was not the case at first for the School of Distance Education Charters Towers (SDECT).\\n\\nAs we learned more about the school through in-depth interviews with students, parents and staff, we discovered the school for what it is: contemporary and worthy of its national audience. The school had far surpassed what its brand represented, and it was our job to launch its look into the 21st century.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rq6KvKDblN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We discovered what made SDECT different to other distance education schools: its willingness to accept any child—students who live in isolated locations, have been expelled, live with disabilities or have learning difficulties, or have chronic physical or mental illness. The school\'s level of care, personal attention and customisation sets it apart.\\n\\nThe stories we heard from our research formed the basis of our messaging strategy. We posed this question to prospective families: \'What if an entire school exists only for your child?\' All of our messaging was crafted around this idea.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aqpv5uCKsx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Brand rollout\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We started by replacing the logo, colours and photography to create a fresh, clean and sophisticated look. We developed a range of applications for the new brand across collateral including certificates, banners and signage.\\n\\nWe also developed an informative website separate from the official school website, built for prospective parents. It houses information and stories about learning from home. As part of the website, we developed a range of downloadable fact sheets providing more detail on each topic.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5huCNjtxBM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Campaign\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Once the brand and website were in place, we developed an email campaign to organisations and other schools to build awareness. We sent electronic direct mail to four target groups, each with a clean look and strategic messaging.\\n\\nWe also developed the school’s first-ever social media presence through Facebook. We created content and built an engaged online community within six months, all while we trained and mentored their inhouse communications team to carry the work forward.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lG2tB4Nlor\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"SDECT was not prepared for what came next. Enrolments increased by 255 per cent—from fewer than 900 to 2300—in 2018. And in 2019, we again targeted enrolment growth for SDECT. We also ran a recruitment campaign to meet demand with quality teachers.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41733,45214,1,'Pursuit Minerals','2021-09-10 05:19:18','2021-09-27 02:03:03','78fad60a-7a11-4793-9ef1-2ee7fe5328da',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Pursuing excellence',NULL,NULL,'This business, quite literally, goes ‘in pursuit’ of minerals. Pursuit Minerals is a mineral exploration and project development company that has expanded beyond Australia into Scandinavian markets. We branded the business and produced its key collateral including the website.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41734,45215,1,'Pursuit Minerals','2021-09-10 05:27:40','2021-09-10 05:27:40','9e912822-5c12-41e7-b5f0-d8c80ead150e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Pursuing excellence',NULL,NULL,'This business, quite literally, goes ‘in pursuit’ of minerals. Pursuit Minerals is a mineral exploration and project development company that has expanded beyond Australia into Scandinavian markets. We branded the business and produced its key collateral including the website.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41735,45216,1,'Department of Recreation, Sport and Arts','2021-09-10 05:34:09','2021-09-27 02:36:56','3aeb704f-9022-4c49-8fb4-c72fc584721b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Get Started Vouchers',NULL,NULL,'Great explainer videos take complex ideas and break them down into simple ideas. We were tasked to produce an educational video that stepped through the process in a three-minute video guide.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kZX4G1V78k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our client gives away 50,000 cash vouchers every year to families with young children who can’t afford to join a sport or recreation club.\\n\\nThe application process is complex, and our client was inundated with calls for help from lower socioeconomic families trying to access assistance when the process is technically difficult and challenging.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EN7PcojU3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We produced this video within budget and scope, and responded with a methodology that evoked the best of behaviour change principles.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DpRHohKc9w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We were surprised to hear that on the day the video launched, the calls to our client died down from a torrent to a mere trickle. And the trend has held—our client no longer has a back-to-back daily call rate, and no longer needs a dedicated team for the enquiry line.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5S5bSF6S0k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"With a response like this and what it means to our client in newly found productivity and success—that’s priceless.\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41736,45217,1,'Department of Recreation, Sport and Arts','2021-09-10 05:46:16','2021-09-10 05:46:16','955b106d-3915-455a-99aa-bcdf84c86233',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Get Started Vouchers',NULL,NULL,'Great explainer videos take complex ideas and break them down into simple ideas. We were tasked to produce an educational video that stepped through the process in a three-minute video guide.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kZX4G1V78k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our client gives away 50,000 cash vouchers every year to families with young children who can’t afford to join a sport or recreation club.\\n\\nThe application process is complex, and our client was inundated with calls for help from lower socioeconomic families trying to access assistance when the process is technically difficult and challenging.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EN7PcojU3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We produced this video within budget and scope, and responded with a methodology that evoked the best of behaviour change principles. \",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DpRHohKc9w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We were surprised to hear that on the day the video launched, the calls to our client died down from a torrent to a mere trickle. And the trend has held—our client no longer has a back-to-back daily call rate, and no longer needs a dedicated team for the enquiry line.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5S5bSF6S0k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"With a response like this and what it means to our client in newly found productivity and success—that’s priceless.\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41737,45218,1,'Department of Housing and Public Works','2021-09-10 05:50:12','2021-09-27 02:39:13','2cc5ffb0-3059-41a9-ae85-4f97c06f4f2d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Our HPW, our future',NULL,NULL,'We united the massive department and its many parts by capturing the voices of staff from workshops and presenting in a powerful and inspiring staff-delivered video.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DvN3FirR8O\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Every day, thousands of Housing and Public Works frontline staff play vital roles in the lives of Queenslanders, including those who need support to find shelter. The department needed to unite its many parts under one inspiring purpose.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Crjp0miKAR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Engagement\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We embarked on a state-wide culture project that included workshops around the state to gather staff ideas on what unites them as a workforce.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rcO4cT3PqW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"From staff words came a manifesto, executed in different collateral and including this video: staff from across the state, in their own words, sharing what makes them united and strong.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rUnpVvMnyo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Little did we know how widespread the impact and importance of this cultural integration project would be. The video became a central tool for recruitment and retention across the department.\\n\\nMore than a year on, when we interviewed staff for case studies, many repeated back to us the exact lines from this video as reasons for why they do what they do.\\n\\nAs a marker of engagement success, it doesn’t get much stronger.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41738,45219,1,'Department of Housing and Public Works','2021-09-10 06:01:58','2021-09-10 06:01:58','d113f554-8d5b-4f56-ad45-c0260f301706',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Our HPW, our future',NULL,NULL,'We united the massive department and its many parts by capturing the voices of staff from workshops and presenting in a powerful and inspiring staff-delivered video.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DvN3FirR8O\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Every day, thousands of Housing and Public Works frontline staff play vital roles in the lives of Queenslanders, including those who need support to find shelter. The department needed to unite its many parts under one inspiring purpose.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Crjp0miKAR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Engagement\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We embarked on a state-wide culture project that included workshops around the state to gather staff ideas on what unites them as a workforce.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rcO4cT3PqW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"From staff words came a manifesto, executed in different collateral and including this video: staff from across the state, in their own words, sharing what makes them united and strong.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rUnpVvMnyo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Little did we know how widespread the impact and importance of this cultural integration project would be. The video became a central tool for recruitment and retention across the department.\\n\\nMore than a year on, when we interviewed staff for case studies, many repeated back to us the exact lines from this video as reasons for why they do what they do.\\n\\nAs a marker of engagement success, it doesn’t get much stronger.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41739,45220,1,'Queensland State Archives','2021-09-10 06:02:22','2021-09-27 02:02:06','1cae9c78-3374-4ceb-ad14-f13a4ebf8aef',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Stories of then, now and forever',NULL,NULL,'The Queensland State Archives rebrand was an exciting process of consultation, discovery and world-wide benchmarking of similar organisations. Stepping away from a museum look, the Archives embraced its renewed vision of sharing stories of then, now and forever as it prepared to rollout a suite of new digital products. Our work included stakeholder workshops, branding and collateral development and merchandise rollout.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41740,45221,1,'Queensland State Archives','2021-09-10 06:04:48','2021-09-10 06:04:48','ec14f1d2-f648-40c3-a5f7-8c9483e1abda',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Stories of then, now and forever',NULL,NULL,'The Queensland State Archives rebrand was an exciting process of consultation, discovery and world-wide benchmarking of similar organisations. Stepping away from a museum look, the Archives embraced its renewed vision of sharing stories of then, now and forever as it prepared to rollout a suite of new digital products. Our work included stakeholder workshops, branding and collateral development and merchandise rollout.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41741,45222,1,'Family and Child Connect','2021-09-10 06:06:32','2021-10-14 05:48:03','b7a10352-0326-477b-aa9e-5992c994ee15',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'13 Family',NULL,NULL,'Great campaigns help people change their lives, and this one encourages families in crisis to reach out for real help, no strings attached.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-94Wz43ySiO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Family and Child Connect, within the Department of Communities, Child Safety and Disability Services, needed a campaign to build public awareness of the 13 Family support services.\\n\\nTo broach this sensitive issue, we needed to carry out a multi-channelled campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-77KaMezwdw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We tapped into research that showed this target group is made up of good people who really do love their kids, but have found themselves unable to care for them accordingly.\\n\\nBy understanding our client\'s objectives and the context of the target market, we developed a campaign the audience could relate to and, most importantly, felt encouraged to act.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xxGuN9crsA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We developed the campaign microsite, social media assets, print resources, online advertising and outdoor advertising. Using a variety of static executions for retargeting on social media, we set out for a high call-to-action rate for our client. In less than a month, we delivered a full campaign that broke through the social stigma of Queensland families needing support.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hU0rqO1qB1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our client reported the campaign had a total reach just shy of 1 million people, with 116,743 video views during the reporting period. The website had 11,641 visitors at the time—predominantly women aged 25–44, who were squarely in our target group.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41742,45223,1,NULL,'2021-09-10 06:08:06','2021-09-13 04:04:35','b5f3c580-119a-4c42-9bce-371288e1d8d5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'green',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41743,45224,1,'Bloom Asia','2021-09-10 06:08:44','2021-09-10 06:08:44','8ad90a0c-d4b3-4dc4-b16e-32f02d560527',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41744,45225,1,NULL,'2021-09-10 06:08:52','2021-09-13 04:06:37','2fd59fbf-f4fe-4c7b-abc7-4d327f96cd97',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'green',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41745,45226,1,NULL,'2021-09-10 06:09:41','2021-09-13 04:07:42','701269db-1bc5-4e3f-9629-96d82fcf6191',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'green',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41746,45227,1,'Family and Child Connect','2021-09-10 06:13:14','2021-09-10 06:13:14','ffb22ba5-ceae-4968-9352-60d8cb7242a6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'13 Family',NULL,NULL,'Great campaigns help people change their lives, and this one encourages families in crisis to reach out for real help, no strings attached.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-94Wz43ySiO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Family and Child Connect, within the Department of Communities, Child Safety and Disability Services, needed a campaign to build public awareness of the 13 Family support services.\\n\\nTo broach this sensitive issue, we needed to carry out a multi-channelled campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-77KaMezwdw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We tapped into research that showed this target group is made up of good people who really do love their kids, but have found themselves unable to care for them accordingly.\\n\\nBy understanding our client\'s objectives and the context of the target market, we developed a campaign the audience could relate to and, most importantly, felt encouraged to act.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xxGuN9crsA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We developed the campaign microsite, social media assets, print resources, online advertising and outdoor advertising. Using a variety of static executions for retargeting on social media, we set out for a high call-to-action rate for our client. In less than a month, we delivered a full campaign that broke through the social stigma of Queensland families needing support.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hU0rqO1qB1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our client reported the campaign had a total reach just shy of 1 million people, with 116,743 video views during the reporting period. The website had 11,641 visitors at the time—predominantly women aged 25–44, who were squarely in our target group.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41748,45229,1,'Medical Mums','2021-09-10 07:00:56','2021-09-10 07:00:56','5d7e86d0-1201-45bf-9ffc-7a60f11f31bd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A long-term approach to behaviour change',NULL,NULL,'For the past six years we have been running behaviour change campaigns to encourage families to vaccinate their children. And in that time, we\'ve seen the positive impact.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NUepHwOfhy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"In 2015, market research and immunisation rates across Brisbane North PHN\'s catchment were showing the anti-vax movement was taking hold.\\n\\nWhile parents from lower socio-economic backgrounds were responding to the Australian Government’s ‘no jab, no pay’ rules, those not using daycare—including many from among the wealthier suburbs—were holding their ground.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QwUWkeN1w7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We determined from research that parents would respond to their GP’s opinion, and developed a behaviour change campaign to encourage conversations between parents and medical professionals around immunisation and overcome objections to it.\\n\\nWe harnessed the GP/medical voice and added extra credibility by finding medical professionals who were also parents.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PVmUcFRs5l\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Under the heading of Medical Mums, we found two GPs and one Indigenous health nurse to become the faces and voice of the campaign. Each discussed hot topics as well as the benefits of immunisation, drawing on their own beliefs and practices as parents as well as their medical training.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-elDM8mfUVq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"textGrid\",\"enabled\":\"1\",\"fields\":{\"gridItems\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\",\"new6\"],\"blocks\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"2016\",\"text\":\"Medical Mums was launched during Immunisation Week. \"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"2017\",\"text\":\"The creative was still fresh and effective for the target group, and we ran the campaign again.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"2018\",\"text\":\"We added Stuart, our honorary Medical Dad. \"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"2019\",\"text\":\"It was time to mix up the messaging and creative, so we developed a vaccination myth-busting video featuring illustration—a move away from the previous live-action ads.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"2020\",\"text\":\"With COVID-19, there was new vaccination messaging clutter to cut through. We encouraged our market to keep up to date with their routine vaccinations.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"2021\",\"text\":\"Funding was initially approved for five years. But our campaign has been so successful the PHN has been provided with funding for an additional year. We will launch a new iteration in the coming months.\"}}}}}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9XsuejXAac\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We launched the campaign in Immunisation Week in 2016, and have revised it for relaunch every year since. Results showed immunisation levels increased after the campaign each year, and our has client received extensive positive feedback—including from the Queensland Minister for Health. \",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41749,45230,1,'Medical Mums','2021-09-10 07:01:05','2021-09-10 07:01:05','b07a55d1-f0b3-4974-80ac-1f14741e14c7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A long-term approach to behaviour change',NULL,NULL,'For the past six years we have been running behaviour change campaigns to encourage families to vaccinate their children. And in that time, we\'ve seen the positive impact.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NUepHwOfhy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"In 2015, market research and immunisation rates across Brisbane North PHN\'s catchment were showing the anti-vax movement was taking hold.\\n\\nWhile parents from lower socio-economic backgrounds were responding to the Australian Government’s ‘no jab, no pay’ rules, those not using daycare—including many from among the wealthier suburbs—were holding their ground.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QwUWkeN1w7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We determined from research that parents would respond to their GP’s opinion, and developed a behaviour change campaign to encourage conversations between parents and medical professionals around immunisation and overcome objections to it.\\n\\nWe harnessed the GP/medical voice and added extra credibility by finding medical professionals who were also parents.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PVmUcFRs5l\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Under the heading of Medical Mums, we found two GPs and one Indigenous health nurse to become the faces and voice of the campaign. Each discussed hot topics as well as the benefits of immunisation, drawing on their own beliefs and practices as parents as well as their medical training.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-elDM8mfUVq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"textGrid\",\"enabled\":\"1\",\"fields\":{\"gridItems\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\",\"new6\"],\"blocks\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"2016\",\"text\":\"Medical Mums was launched during Immunisation Week. \"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"2017\",\"text\":\"The creative was still fresh and effective for the target group, and we ran the campaign again.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"2018\",\"text\":\"We added Stuart, our honorary Medical Dad. \"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"2019\",\"text\":\"It was time to mix up the messaging and creative, so we developed a vaccination myth-busting video featuring illustration—a move away from the previous live-action ads.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"2020\",\"text\":\"With COVID-19, there was new vaccination messaging clutter to cut through. We encouraged our market to keep up to date with their routine vaccinations.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"2021\",\"text\":\"Funding was initially approved for five years. But our campaign has been so successful the PHN has been provided with funding for an additional year. We will launch a new iteration in the coming months.\"}}}}}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9XsuejXAac\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We launched the campaign in Immunisation Week in 2016, and have revised it for relaunch every year since. Results showed immunisation levels increased after the campaign each year, and our has client received extensive positive feedback—including from the Queensland Minister for Health. \",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41751,45232,1,'Heart HQ','2021-09-10 07:10:55','2021-09-10 07:10:55','937be26c-30a6-40b9-84d4-092a4c154dfc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'World-class medical with heart',NULL,NULL,'Big ambitions need a brand that accurately reflects their vision and mission, and that’s exactly what we sought to deliver for this client. With Heart HQ, and with the enormous amount of collateral that supports it, we’ve well and truly delivered this.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uicOuPt9of\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Sunshine Coast Heart Specialists was growing and changing. \\n\\nIn six years, the cardiology practice had grown to nearly 50 staff with rooms throughout the coast. Their cardiologists represented all of the possible sub-specialties within their profession. Within weeks, they would move to new purpose-built premises at Sippy Downs. They were about to open their own coronary CT clinic to the public and a heart murmur clinic to support GPs—both nation-leading initiatives.\\n\\nThe directors realised their geography-specific name would limit their ability to keep growing, and so renaming and rebranding was a strong need.\\n\\nTheir growth had also occurred at such a rate that there was strategic work needed to understand their market share and to form a marketing strategy that would offer them opportunities for segmentation. Growth is reliant on satisfied referring GPs and specialists, and so attention could never be removed from this area.\\n\\nFinally, such growth was also outstripping their capacity to fill the need. Cardiology is a highly specialised field within medicine, and to grow sustainably, they needed to attract more associates.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aTg3yWEGh3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Objective\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The practice needed a new name and brand assets for the business to accurately convey the mission and vision of the business, and to grow the business’s referrer and patient networks.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oXH0AQY2PC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our brand strategy drew on customer and referrer interviews, competitor oversight and employee workshops, which also helped to define the brand values of the business. \\n\\nIt was clear the practice and the individual directors were held in high esteem by their medical colleagues. They introduced surgical procedures to the Sunshine Coast that were, until then, only practised by a few in major cities. They were introducing clinics for CT and heart murmurs that had not been seen in regional areas in Australia. This gave us the confidence to be able to propose a tagline that truthfully boasted, ‘world-class cardiac care’.\\n\\nThe second part of the tagline reads: ‘…on the Sunshine Coast’. To compensate for the move away from the regionalisation in their original brand name—Sunshine Coast Heart Specialists—we added it to the tagline. The reason for this is that patients along the coast appreciated the practice was the only place where they could receive the full spectrum of care without having to travel to Brisbane.\\n\\nFinally, an important branding insight from our research was that patients were on a health journey—sometimes quite a precarious one—and could be experiencing anxiety. Patients told us they appreciated the kindness each doctor showed to them in their time of need. Simply promoting expertise could come across as cold and would not fairly represent the doctors’ deep commitment to quality care. So the Heart HQ brand connects with patients on a personal level and makes them feel reassured that they matter.\\n\\nIt’s this mix of strategy and heart that makes Heart HQ a brand that will stand tall among all the others.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDNF080GkR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"A name, tagline, brand visual identity, website, signage and countless assets that match up with Heart HQ’s brand promise of delivering world-class cardiac care on the Sunshine Coast.\\n\\nThe quality of the brand assets significantly differentiates Heart HQ from all other competitor practices.\\n\\nCreatively, the brand is modern, refreshing and arguably not what you would expect from an organisation in the medical field – but at the same time, the language is warm, supportive and with just the right amount of authority.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MNtSSBwYBF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/581036917\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41753,45234,1,'Rural Aid','2021-09-10 07:11:44','2021-09-10 07:11:44','d5340ad7-2bf4-4aa8-b606-b75dede696e0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Through drought, flood and fire, Rural Aid is there.',NULL,NULL,'Rural Aid is there for local farmers doing it tough, providing water, fodder and financial and counselling help. \n\nProviding emergency support is the priority, but it was time for Rural Aid to shift its focus to building resilience and sustainability in rural communities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eLK3JgwUaW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22211\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QCEdWG6OxJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The nature of the campaign, featuring real farmers telling their story, was insightful for many staff who might not get the chance to speak with or hear from farmers very often.\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-a1ZSpKzNhg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575770982\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4IaqNatl2X\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The campaign\",\"plainText\":\"Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F9lQRkpJbI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"The campaign\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-h8vXLy3MfI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“The generous donations received from our community of supporters as a result from the campaign has had a very positive impact for the beneficiaries of our fundraising—Aussie farmers.”\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V9u5ejPQKv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575783623\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p6CVgVhKEp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Campaign messaging was two-tired: an EOFY donations appeal and a thank you. Both worked to be targeted at existing donors, or people captured in existing databases or prospecting.\\n\\nTo ensure the greatest value for money for our client, we pooled the majority of our ad spend into digital, working closely with our media partner, Pivotus. We A/B tested the messaging and capture the audience with retargeting strategies.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8P2070zTQ8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"NWO were great to work with and really took an interest in our organisation and what we’re trying to achieve, and this showed through in the quality and the emotion captured in the final production. \\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rhaSMwFESv\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Creative\",\"plainText\":\"We proposed a campaign based on interviews with Australian farmers who had experiences with Rural Aid.\\n\\nIt’s an honest campaign of full of real people, stories and emotions.\\n\\nWith COVID-19 still hanging around, our approach ensured we avoided potential interruptions, travel restrictions and cancellation costs for our client.\\n\\nThe videos are compilations of interviews with various farmers across the spectrum of industries that are framed by a ‘zoom screen’ visual device, which adds layers of authenticity to the personal stories. \\n\\nSimilarly the display banners and static Facebook posts used the zoom imagery and visual devices—all pointing people to the EOFY Rural Aid landing page where viewers could view the full videos and choose to donate.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vJUro6swC6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We proposed a campaign based on interviews with Australian farmers who had experiences with Rural Aid.\\n\\nIt’s an honest campaign of full of real people, stories and emotions.\\n\\nWith COVID-19 still hanging around, our approach ensured we avoided potential interruptions, travel restrictions and cancellation costs for our client.\\n\\nThe videos are compilations of interviews with various farmers across the spectrum of industries that are framed by a ‘zoom screen’ visual device, which adds layers of authenticity to the personal stories. \\n\\nSimilarly the display banners and static Facebook posts used the zoom imagery and visual devices—all pointing people to the EOFY Rural Aid landing page where viewers could view the full videos and choose to donate.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3MV0vWsZV5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"I am very proud to have been a part of this campaign. Even though I was part of the storytelling behind the scenes, I was moved at every stage of the process by how tough these Australians have it on a daily basis, and how candid they were with us about their stories.\",\"plainText\":\"**— Kat Scott, producer**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NURtiGsn81\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":\"\",\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41755,45250,1,'Home','2021-09-10 07:17:03','2021-09-10 07:17:03','6f00e3e8-eed7-4382-acbd-5ce148ffadaf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41757,45262,1,'Home','2021-09-10 07:17:17','2021-09-10 07:17:17','057c3eea-6cac-4558-84af-d3d99a07a2e2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41759,45274,1,'Home','2021-09-10 07:18:35','2021-09-10 07:18:35','b4be0236-917e-4f70-9801-c4e8811e5a02',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41761,45286,1,'Home','2021-09-10 07:18:53','2021-09-10 07:18:53','e3ea997a-51c7-4f61-bdeb-7781a44980bd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41763,45293,1,'About us','2021-09-10 07:19:20','2021-09-10 07:19:20','585bcca6-9bee-4b69-92ff-5954c396fd89',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":\"1\",\"fields\":{\"gridItems\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\",\"new6\"],\"blocks\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Many of our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}}}},\"buttons\":\"\",\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Find out what this means\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"white\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"for **us** and **you...**\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"#\",\"buttonStyle\":\"link\",\"buttonColour\":\"white\"}}}},\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17910\",\"17881\",\"17848\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"\",\"buttonImage\":[\"21910\"],\"internalLink\":\"\",\"externalLink\":\"#footer\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41765,45295,1,'About us','2021-09-10 07:20:39','2021-09-10 07:20:39','cbeabfd5-d0ee-495f-bea9-bcfb27d77096',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":\"1\",\"fields\":{\"gridItems\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\",\"new6\"],\"blocks\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Many of our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}}}},\"buttons\":\"\",\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Find out what this means\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"white\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"for **us** and **you...**\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"#\",\"buttonStyle\":\"link\",\"buttonColour\":\"white\"}}}},\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17910\",\"17881\",\"17848\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"\",\"buttonImage\":[\"21910\"],\"internalLink\":\"\",\"externalLink\":\"#footer\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41767,45297,1,'About us','2021-09-10 07:22:30','2021-09-10 07:22:30','b36ad4ba-cd08-4988-94b2-66ba7a3a4163',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":\"1\",\"fields\":{\"gridItems\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\",\"new6\"],\"blocks\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Many of our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}}}},\"buttons\":\"\",\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}}},\"buttons\":\"\",\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17910\",\"17881\",\"17848\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"\",\"buttonImage\":[\"21910\"],\"internalLink\":\"\",\"externalLink\":\"#footer\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41768,45298,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2021-09-13 05:02:27','2022-02-08 23:32:11','9bd34141-14be-4e6b-982d-81f4ad6c9c50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41774,45309,1,'Home','2021-09-13 22:24:13','2021-09-13 22:24:13','ded94f98-ceef-435b-9f32-d00f573f217c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41776,45316,1,'Medical Mums two logos_2','2021-09-14 01:19:42','2021-10-05 06:28:28','6e3f6008-ac44-412e-8bcf-d7b562a56d19',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x491_crop_center-center_82_line/21_Medical-mums.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x982_crop_center-center_82_line/21_Medical-mums.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x409_crop_center-center_82_line/21_Medical-mums.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x819_crop_center-center_82_line/21_Medical-mums.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x327_crop_center-center_82_line/21_Medical-mums.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x655_crop_center-center_82_line/21_Medical-mums.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x245_crop_center-center_82_line/21_Medical-mums.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x204_crop_center-center_82_line/21_Medical-mums.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x491_crop_center-center_82_line/21_Medical-mums.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x982_crop_center-center_82_line/21_Medical-mums.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x409_crop_center-center_82_line/21_Medical-mums.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x819_crop_center-center_82_line/21_Medical-mums.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x327_crop_center-center_82_line/21_Medical-mums.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x655_crop_center-center_82_line/21_Medical-mums.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x245_crop_center-center_82_line/21_Medical-mums.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x204_crop_center-center_82_line/21_Medical-mums.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":491,\"3072\":982,\"1280\":409,\"2560\":819,\"1024\":327,\"2048\":655,\"768\":245,\"640\":204},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"3333\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7sxnzNwkYD+72pxUlwwYgAdPWiigD//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#7c647b\",\"#f2eef2\",\"#8e8e8e\",\"#b8a6b9\",\"#a4949c\"],\"lightness\":64,\"placeholderWidth\":1536,\"placeholderHeight\":491,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41777,45317,1,'Medical Mums photography stills collage','2021-09-14 01:20:25','2021-10-05 06:28:05','c3f9e9a5-ef02-4ce1-b0fb-34530a54d0c8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x353_crop_center-center_82_line/21_Medical-mums5.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x707_crop_center-center_82_line/21_Medical-mums5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x294_crop_center-center_82_line/21_Medical-mums5.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x589_crop_center-center_82_line/21_Medical-mums5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x235_crop_center-center_82_line/21_Medical-mums5.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x471_crop_center-center_82_line/21_Medical-mums5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x176_crop_center-center_82_line/21_Medical-mums5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x147_crop_center-center_82_line/21_Medical-mums5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x353_crop_center-center_82_line/21_Medical-mums5.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x707_crop_center-center_82_line/21_Medical-mums5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x294_crop_center-center_82_line/21_Medical-mums5.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x589_crop_center-center_82_line/21_Medical-mums5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x235_crop_center-center_82_line/21_Medical-mums5.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x471_crop_center-center_82_line/21_Medical-mums5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x176_crop_center-center_82_line/21_Medical-mums5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x147_crop_center-center_82_line/21_Medical-mums5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":353,\"3072\":707,\"1280\":294,\"2560\":589,\"1024\":235,\"2048\":471,\"768\":176,\"640\":147},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"2400\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAAwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8ALiaRTw5GJJP0HH8hWldk+fZjJ+cSFueuCKKKzeyNpJX/AK8z/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#bdb1a3\",\"#2e3431\",\"#7d3841\",\"#815c45\",\"#717371\"],\"lightness\":43,\"placeholderWidth\":1536,\"placeholderHeight\":353,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41778,45318,1,'Medical Mums two logos','2021-09-14 01:21:11','2021-10-05 06:27:40','ed4c6e35-5c88-47ff-8d13-f6d1c8bdb950',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x491_crop_center-center_82_line/21_Medical-mums_2021-09-14-012111_vdfb.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x982_crop_center-center_82_line/21_Medical-mums_2021-09-14-012111_vdfb.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x409_crop_center-center_82_line/21_Medical-mums_2021-09-14-012111_vdfb.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x819_crop_center-center_82_line/21_Medical-mums_2021-09-14-012111_vdfb.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x327_crop_center-center_82_line/21_Medical-mums_2021-09-14-012111_vdfb.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x655_crop_center-center_82_line/21_Medical-mums_2021-09-14-012111_vdfb.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x245_crop_center-center_82_line/21_Medical-mums_2021-09-14-012111_vdfb.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x204_crop_center-center_82_line/21_Medical-mums_2021-09-14-012111_vdfb.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x491_crop_center-center_82_line/21_Medical-mums_2021-09-14-012111_vdfb.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x982_crop_center-center_82_line/21_Medical-mums_2021-09-14-012111_vdfb.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x409_crop_center-center_82_line/21_Medical-mums_2021-09-14-012111_vdfb.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x819_crop_center-center_82_line/21_Medical-mums_2021-09-14-012111_vdfb.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x327_crop_center-center_82_line/21_Medical-mums_2021-09-14-012111_vdfb.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x655_crop_center-center_82_line/21_Medical-mums_2021-09-14-012111_vdfb.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x245_crop_center-center_82_line/21_Medical-mums_2021-09-14-012111_vdfb.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x204_crop_center-center_82_line/21_Medical-mums_2021-09-14-012111_vdfb.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":491,\"3072\":982,\"1280\":409,\"2560\":819,\"1024\":327,\"2048\":655,\"768\":245,\"640\":204},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"3333\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7sxnzNwkYD+72pxUlwwYgAdPWiigD//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#7c647b\",\"#f2eef2\",\"#8e8e8e\",\"#b8a6b9\",\"#a4949c\"],\"lightness\":64,\"placeholderWidth\":1536,\"placeholderHeight\":491,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41779,45319,1,'Medical Mums Diana banner_2','2021-09-14 01:22:01','2021-10-05 06:27:04','a87aba2b-fa3b-47f2-9ff8-b75bb286336b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x538_crop_center-center_82_line/21_Medical-mums2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1076_crop_center-center_82_line/21_Medical-mums2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x448_crop_center-center_82_line/21_Medical-mums2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x896_crop_center-center_82_line/21_Medical-mums2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x358_crop_center-center_82_line/21_Medical-mums2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x717_crop_center-center_82_line/21_Medical-mums2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x269_crop_center-center_82_line/21_Medical-mums2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x224_crop_center-center_82_line/21_Medical-mums2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x538_crop_center-center_82_line/21_Medical-mums2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1076_crop_center-center_82_line/21_Medical-mums2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x448_crop_center-center_82_line/21_Medical-mums2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x896_crop_center-center_82_line/21_Medical-mums2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x358_crop_center-center_82_line/21_Medical-mums2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x717_crop_center-center_82_line/21_Medical-mums2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x269_crop_center-center_82_line/21_Medical-mums2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x224_crop_center-center_82_line/21_Medical-mums2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":538,\"3072\":1076,\"1280\":448,\"2560\":896,\"1024\":358,\"2048\":717,\"768\":269,\"640\":224},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"3650\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A0zeXSXChZiFyfl59CfX1xXRWs5nihkIx5iBsZ6ZGaKKLasb2R//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e6ded8\",\"#38394d\",\"#7b5440\",\"#ac8e7d\",\"#ae774c\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":538,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41780,45320,1,'Medical Mums \'get the facts\' banner_2','2021-09-14 01:22:14','2021-10-05 06:26:20','43a8f7ec-3850-4e98-9f12-6f4ebd47c16d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x538_crop_center-center_82_line/21_Medical-mums3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1076_crop_center-center_82_line/21_Medical-mums3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x448_crop_center-center_82_line/21_Medical-mums3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x896_crop_center-center_82_line/21_Medical-mums3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x358_crop_center-center_82_line/21_Medical-mums3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x717_crop_center-center_82_line/21_Medical-mums3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x269_crop_center-center_82_line/21_Medical-mums3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x224_crop_center-center_82_line/21_Medical-mums3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x538_crop_center-center_82_line/21_Medical-mums3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1076_crop_center-center_82_line/21_Medical-mums3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x448_crop_center-center_82_line/21_Medical-mums3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x896_crop_center-center_82_line/21_Medical-mums3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x358_crop_center-center_82_line/21_Medical-mums3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x717_crop_center-center_82_line/21_Medical-mums3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x269_crop_center-center_82_line/21_Medical-mums3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x224_crop_center-center_82_line/21_Medical-mums3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":538,\"3072\":1076,\"1280\":448,\"2560\":896,\"1024\":358,\"2048\":717,\"768\":269,\"640\":224},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"3650\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Aj/tR1tsfZLNgqjhoc5/WtO+tpFNqVmA8114C8AFScYz7UUVpXVmjrrJJH//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#924f85\",\"#ded9d5\",\"#573426\",\"#d883da\",\"#414555\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":538,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41781,45321,1,'Medical Mums dad banner_2','2021-09-14 01:22:27','2021-10-05 06:25:57','e9e2ec7e-ad10-4a41-98cb-8e99c30faad3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x538_crop_center-center_82_line/21_Medical-mums4.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1076_crop_center-center_82_line/21_Medical-mums4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x448_crop_center-center_82_line/21_Medical-mums4.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x896_crop_center-center_82_line/21_Medical-mums4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x358_crop_center-center_82_line/21_Medical-mums4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x717_crop_center-center_82_line/21_Medical-mums4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x269_crop_center-center_82_line/21_Medical-mums4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x224_crop_center-center_82_line/21_Medical-mums4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x538_crop_center-center_82_line/21_Medical-mums4.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1076_crop_center-center_82_line/21_Medical-mums4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x448_crop_center-center_82_line/21_Medical-mums4.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x896_crop_center-center_82_line/21_Medical-mums4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x358_crop_center-center_82_line/21_Medical-mums4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x717_crop_center-center_82_line/21_Medical-mums4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x269_crop_center-center_82_line/21_Medical-mums4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x224_crop_center-center_82_line/21_Medical-mums4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":538,\"3072\":1076,\"1280\":448,\"2560\":896,\"1024\":358,\"2048\":717,\"768\":269,\"640\":224},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"3650\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A0/tpWE/6PbkAdDH1q9sJW3dXKmUcjsOCelFFcOHk23c9DERStY//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#de6f27\",\"#ddd2c3\",\"#cd8a62\",\"#a45e56\",\"#6d767e\"],\"lightness\":60,\"placeholderWidth\":1536,\"placeholderHeight\":538,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41782,45322,1,'Medical Mums dad banner','2021-09-14 01:22:57','2021-10-05 06:25:35','a28408b6-930c-4949-a454-c51627257cd2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x538_crop_center-center_82_line/21_Medical-mums4_2021-09-14-012257_cpve.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1076_crop_center-center_82_line/21_Medical-mums4_2021-09-14-012257_cpve.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x448_crop_center-center_82_line/21_Medical-mums4_2021-09-14-012257_cpve.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x896_crop_center-center_82_line/21_Medical-mums4_2021-09-14-012257_cpve.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x358_crop_center-center_82_line/21_Medical-mums4_2021-09-14-012257_cpve.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x717_crop_center-center_82_line/21_Medical-mums4_2021-09-14-012257_cpve.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x269_crop_center-center_82_line/21_Medical-mums4_2021-09-14-012257_cpve.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x224_crop_center-center_82_line/21_Medical-mums4_2021-09-14-012257_cpve.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x538_crop_center-center_82_line/21_Medical-mums4_2021-09-14-012257_cpve.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1076_crop_center-center_82_line/21_Medical-mums4_2021-09-14-012257_cpve.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x448_crop_center-center_82_line/21_Medical-mums4_2021-09-14-012257_cpve.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x896_crop_center-center_82_line/21_Medical-mums4_2021-09-14-012257_cpve.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x358_crop_center-center_82_line/21_Medical-mums4_2021-09-14-012257_cpve.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x717_crop_center-center_82_line/21_Medical-mums4_2021-09-14-012257_cpve.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x269_crop_center-center_82_line/21_Medical-mums4_2021-09-14-012257_cpve.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x224_crop_center-center_82_line/21_Medical-mums4_2021-09-14-012257_cpve.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":538,\"3072\":1076,\"1280\":448,\"2560\":896,\"1024\":358,\"2048\":717,\"768\":269,\"640\":224},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"3650\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A0/tpWE/6PbkAdDH1q9sJW3dXKmUcjsOCelFFcOHk23c9DERStY//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#de6f27\",\"#ddd2c3\",\"#cd8a62\",\"#a45e56\",\"#6d767e\"],\"lightness\":60,\"placeholderWidth\":1536,\"placeholderHeight\":538,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41783,45323,1,'Medical Mums \'get the facts\' banner','2021-09-14 01:24:12','2021-10-05 06:25:12','c34dd14b-c828-42c9-b5b8-9767c2a8284d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x538_crop_center-center_82_line/21_Medical-mums3_2021-09-14-012412_cjgj.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1076_crop_center-center_82_line/21_Medical-mums3_2021-09-14-012412_cjgj.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x448_crop_center-center_82_line/21_Medical-mums3_2021-09-14-012412_cjgj.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x896_crop_center-center_82_line/21_Medical-mums3_2021-09-14-012412_cjgj.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x358_crop_center-center_82_line/21_Medical-mums3_2021-09-14-012412_cjgj.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x717_crop_center-center_82_line/21_Medical-mums3_2021-09-14-012412_cjgj.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x269_crop_center-center_82_line/21_Medical-mums3_2021-09-14-012412_cjgj.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x224_crop_center-center_82_line/21_Medical-mums3_2021-09-14-012412_cjgj.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x538_crop_center-center_82_line/21_Medical-mums3_2021-09-14-012412_cjgj.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1076_crop_center-center_82_line/21_Medical-mums3_2021-09-14-012412_cjgj.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x448_crop_center-center_82_line/21_Medical-mums3_2021-09-14-012412_cjgj.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x896_crop_center-center_82_line/21_Medical-mums3_2021-09-14-012412_cjgj.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x358_crop_center-center_82_line/21_Medical-mums3_2021-09-14-012412_cjgj.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x717_crop_center-center_82_line/21_Medical-mums3_2021-09-14-012412_cjgj.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x269_crop_center-center_82_line/21_Medical-mums3_2021-09-14-012412_cjgj.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x224_crop_center-center_82_line/21_Medical-mums3_2021-09-14-012412_cjgj.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":538,\"3072\":1076,\"1280\":448,\"2560\":896,\"1024\":358,\"2048\":717,\"768\":269,\"640\":224},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"3650\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Aj/tR1tsfZLNgqjhoc5/WtO+tpFNqVmA8114C8AFScYz7UUVpXVmjrrJJH//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#924f85\",\"#ded9d5\",\"#573426\",\"#d883da\",\"#414555\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":538,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41784,45324,1,'Medical Mums','2021-09-14 01:25:34','2021-09-14 01:25:34','3cfb4196-52dd-407d-b460-9997691d6724',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A long-term approach to behaviour change',NULL,NULL,'For the past six years we have been running behaviour change campaigns to encourage families to vaccinate their children. And in that time, we\'ve seen the positive impact.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ydM19JpsMi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45317\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pqYRaab2Y6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45318\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NUepHwOfhy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"In 2015, market research and immunisation rates across Brisbane North PHN\'s catchment were showing the anti-vax movement was taking hold.\\n\\nWhile parents from lower socio-economic backgrounds were responding to the Australian Government’s ‘no jab, no pay’ rules, those not using daycare—including many from among the wealthier suburbs—were holding their ground.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5st3FTYzr4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45319\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QwUWkeN1w7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We determined from research that parents would respond to their GP’s opinion, and developed a behaviour change campaign to encourage conversations between parents and medical professionals around immunisation and overcome objections to it.\\n\\nWe harnessed the GP/medical voice and added extra credibility by finding medical professionals who were also parents.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MQKB9uw8mS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45323\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PVmUcFRs5l\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Under the heading of Medical Mums, we found two GPs and one Indigenous health nurse to become the faces and voice of the campaign. Each discussed hot topics as well as the benefits of immunisation, drawing on their own beliefs and practices as parents as well as their medical training.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-elDM8mfUVq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"textGrid\",\"enabled\":\"1\",\"fields\":{\"gridItems\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\",\"new6\"],\"blocks\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"2016\",\"text\":\"Medical Mums was launched during Immunisation Week.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"2017\",\"text\":\"The creative was still fresh and effective for the target group, and we ran the campaign again.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"2018\",\"text\":\"We added Stuart, our honorary Medical Dad.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"2019\",\"text\":\"It was time to mix up the messaging and creative, so we developed a vaccination myth-busting video featuring illustration—a move away from the previous live-action ads.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"2020\",\"text\":\"With COVID-19, there was new vaccination messaging clutter to cut through. We encouraged our market to keep up to date with their routine vaccinations.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"2021\",\"text\":\"Funding was initially approved for five years. But our campaign has been so successful the PHN has been provided with funding for an additional year. We will launch a new iteration in the coming months.\"}}}}}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-za95KkkRhY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45322\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9XsuejXAac\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We launched the campaign in Immunisation Week in 2016, and have revised it for relaunch every year since. Results showed immunisation levels increased after the campaign each year, and our has client received extensive positive feedback—including from the Queensland Minister for Health.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41785,45325,1,'National Suicide Prevention Trial brochure twelve pages','2021-09-14 01:27:25','2021-10-05 06:24:11','a4753c0b-779a-4eea-81c8-8c78ea2f3ce7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x841_crop_center-center_82_line/21_NSPT2_2021-09-14-012725_ookj.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1683_crop_center-center_82_line/21_NSPT2_2021-09-14-012725_ookj.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x701_crop_center-center_82_line/21_NSPT2_2021-09-14-012725_ookj.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1402_crop_center-center_82_line/21_NSPT2_2021-09-14-012725_ookj.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x561_crop_center-center_82_line/21_NSPT2_2021-09-14-012725_ookj.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1122_crop_center-center_82_line/21_NSPT2_2021-09-14-012725_ookj.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x420_crop_center-center_82_line/21_NSPT2_2021-09-14-012725_ookj.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x350_crop_center-center_82_line/21_NSPT2_2021-09-14-012725_ookj.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x841_crop_center-center_82_line/21_NSPT2_2021-09-14-012725_ookj.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1683_crop_center-center_82_line/21_NSPT2_2021-09-14-012725_ookj.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x701_crop_center-center_82_line/21_NSPT2_2021-09-14-012725_ookj.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1402_crop_center-center_82_line/21_NSPT2_2021-09-14-012725_ookj.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x561_crop_center-center_82_line/21_NSPT2_2021-09-14-012725_ookj.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1122_crop_center-center_82_line/21_NSPT2_2021-09-14-012725_ookj.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x420_crop_center-center_82_line/21_NSPT2_2021-09-14-012725_ookj.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x350_crop_center-center_82_line/21_NSPT2_2021-09-14-012725_ookj.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":841,\"3072\":1683,\"1280\":701,\"2560\":1402,\"1024\":561,\"2048\":1122,\"768\":420,\"640\":350},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"8333\",\"originalImageHeight\":\"4566\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6qZ52ecC4ZYxxwvIO4d89MUtkJoRDFNcSTMF5Yj72WPv9PyoooEf/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d8d9d9\",\"#305467\",\"#8da2a3\",\"#7e9a79\",\"#81686f\"],\"lightness\":58,\"placeholderWidth\":1536,\"placeholderHeight\":841,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41786,45326,1,'Brisbane North PHN NSPT','2021-09-14 01:27:58','2021-09-14 01:27:58','113bf714-8b5e-4055-bc35-874b12546cf6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'National Suicide Prevention Trials',NULL,NULL,'We were chosen to consult with Brisbane North communities who had been selected for the trial: LGBTIQ communities, Aboriginal and Torres Strait Islander communities, and community organisations working with young to middle-aged men.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yV9Swskqh3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45209\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Bri6BITkLV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The team of Brisbane North PHN is one of the national sites chosen to deliver National Suicide Prevention Trial (NSPT) funding.\\n\\nOur work had two important parts. The first was to engage deeply and sensitively with communities to understand their experiences, successes and reflections during the four years of trial funding and to report on these. The second was to deliver useful materials the service organisations could use to seek further funding and sponsorships as they transitioned from trial funding.\\n\\nTo successfully undertake community engagement, we again partnered with Janine Crawford, a skilled health consultant and Aboriginal and Torres Strait Islander woman. Our work included workshops, face-to-face interviews and a highly successful yarning circle, and these important and sensitive conversations—which included Sad News/Sorry Business—were given the time and space each needed. \\n\\nThe finalised report was submitted to NSPT as a qualitative reflection on the remarkable achievements of the trial—including the PHN’s commitment to community-led co-design, and the healing within communities that was begun through the intentionally collaborative process.\\n\\nTo offer creative services that were suited to the context, needs and existing resourcing of the seven service organisations, we offered a menu of items, ranging from fact sheets to marketing consultations. The groups then chose the elements that were of greatest use to them.\\n\\nPart of the unique nature of the Brisbane North PHN NSPT trial was the emphasis on community partnerships and collaboration, and we embodied this in our design approach, too. To enable groups to pitch together or separately for any future suicide prevention funding, we created a single brand style to visually unify any designed material. Each group, then, had its own logo and its own colour palette within that visual style—a brand within a brand. That way, any future funding pitches that relied on our designed material could look as though the groups were unique but still closely aligned.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2OxHHkid1g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45325\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41787,45327,1,'Heart HQ','2021-09-14 01:28:52','2021-09-14 01:28:52','c3393739-b26e-46b2-a8bc-6a63c7598401',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'World-class medical with heart',NULL,NULL,'Big ambitions need a brand that accurately reflects their vision and mission, and that’s exactly what we sought to deliver for this client. With Heart HQ, and with the enormous amount of collateral that supports it, we’ve well and truly delivered this.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-P3bQXxcsfs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44878\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uicOuPt9of\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Sunshine Coast Heart Specialists was growing and changing. \\n\\nIn six years, the cardiology practice had grown to nearly 50 staff with rooms throughout the coast. Their cardiologists represented all of the possible sub-specialties within their profession. Within weeks, they would move to new purpose-built premises at Sippy Downs. They were about to open their own coronary CT clinic to the public and a heart murmur clinic to support GPs—both nation-leading initiatives.\\n\\nThe directors realised their geography-specific name would limit their ability to keep growing, and so renaming and rebranding was a strong need.\\n\\nTheir growth had also occurred at such a rate that there was strategic work needed to understand their market share and to form a marketing strategy that would offer them opportunities for segmentation. Growth is reliant on satisfied referring GPs and specialists, and so attention could never be removed from this area.\\n\\nFinally, such growth was also outstripping their capacity to fill the need. Cardiology is a highly specialised field within medicine, and to grow sustainably, they needed to attract more associates.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Lgp01pReVY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44873\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aTg3yWEGh3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Objective\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The practice needed a new name and brand assets for the business to accurately convey the mission and vision of the business, and to grow the business’s referrer and patient networks.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gG5PvaSbvX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44864\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oXH0AQY2PC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our brand strategy drew on customer and referrer interviews, competitor oversight and employee workshops, which also helped to define the brand values of the business. \\n\\nIt was clear the practice and the individual directors were held in high esteem by their medical colleagues. They introduced surgical procedures to the Sunshine Coast that were, until then, only practised by a few in major cities. They were introducing clinics for CT and heart murmurs that had not been seen in regional areas in Australia. This gave us the confidence to be able to propose a tagline that truthfully boasted, ‘world-class cardiac care’.\\n\\nThe second part of the tagline reads: ‘…on the Sunshine Coast’. To compensate for the move away from the regionalisation in their original brand name—Sunshine Coast Heart Specialists—we added it to the tagline. The reason for this is that patients along the coast appreciated the practice was the only place where they could receive the full spectrum of care without having to travel to Brisbane.\\n\\nFinally, an important branding insight from our research was that patients were on a health journey—sometimes quite a precarious one—and could be experiencing anxiety. Patients told us they appreciated the kindness each doctor showed to them in their time of need. Simply promoting expertise could come across as cold and would not fairly represent the doctors’ deep commitment to quality care. So the Heart HQ brand connects with patients on a personal level and makes them feel reassured that they matter.\\n\\nIt’s this mix of strategy and heart that makes Heart HQ a brand that will stand tall among all the others.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ISdJyIN6AW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44874\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDNF080GkR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"A name, tagline, brand visual identity, website, signage and countless assets that match up with Heart HQ’s brand promise of delivering world-class cardiac care on the Sunshine Coast.\\n\\nThe quality of the brand assets significantly differentiates Heart HQ from all other competitor practices.\\n\\nCreatively, the brand is modern, refreshing and arguably not what you would expect from an organisation in the medical field – but at the same time, the language is warm, supportive and with just the right amount of authority.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3VvPbVRO0Q\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45205\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41789,45329,1,'West MAC bus shelter ad','2021-09-14 03:38:32','2021-10-05 06:23:29','3fce2cbd-6561-4cbf-9db7-3f38844c7efd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_WestMAc.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_WestMAc.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_WestMAc.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_WestMAc.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_WestMAc.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_WestMAc.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_WestMAc.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_WestMAc.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_WestMAc.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_WestMAc.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_WestMAc.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_WestMAc.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_WestMAc.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_WestMAc.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_WestMAc.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_WestMAc.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AxLOaKXUt0NvECV4WZQyk454PvWv51qGkje0AZyclVAAPoABxisbQ/wDkNQfX+tdL4n/5CA+i/wBamy2Hruf/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#383831\",\"#d6ccbb\",\"#857761\",\"#6486a3\",\"#98adab\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41790,45330,1,'West MAC photography stills overlap','2021-09-14 03:40:36','2021-10-05 06:22:20','50f82de3-5c57-4495-a504-bddadaa9fb0e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x680_crop_center-center_82_line/21_WestMAc3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1361_crop_center-center_82_line/21_WestMAc3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x567_crop_center-center_82_line/21_WestMAc3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1134_crop_center-center_82_line/21_WestMAc3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x453_crop_center-center_82_line/21_WestMAc3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x907_crop_center-center_82_line/21_WestMAc3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x340_crop_center-center_82_line/21_WestMAc3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x283_crop_center-center_82_line/21_WestMAc3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x680_crop_center-center_82_line/21_WestMAc3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1361_crop_center-center_82_line/21_WestMAc3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x567_crop_center-center_82_line/21_WestMAc3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1134_crop_center-center_82_line/21_WestMAc3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x453_crop_center-center_82_line/21_WestMAc3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x907_crop_center-center_82_line/21_WestMAc3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x340_crop_center-center_82_line/21_WestMAc3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x283_crop_center-center_82_line/21_WestMAc3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":680,\"3072\":1361,\"1280\":567,\"2560\":1134,\"1024\":453,\"2048\":907,\"768\":340,\"640\":283},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"4616\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8ApXCLbzSCS4bKcBSuc+n86bawrMN88O/v1GQPr/hRRWabLsj/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#45463e\",\"#d2bda4\",\"#95816c\",\"#7c8bac\",\"#a0b2a3\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":680,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41791,45331,1,'West Moreton Anglican College','2021-09-14 04:03:09','2021-09-14 04:03:09','d4829df0-1287-48c9-b0f0-b768751c6c35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The school for (real) life',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fxOewiuxW6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45330\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kSAkN1lDaq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Like schools everywhere, West Moreton Anglican College needed to change its plans to bring parents onto campus to experience the school because of the coronavirus.\\n\\nThis meant the annual open day was cancelled. But a few months later when restrictions eased, the school had a chance to bring parents back.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-c4rLGz6SQd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We developed a 16-week plan that timed out the lead up to the modified open day, and follow-up of leads afterwards. It outlined a WestMAC-specific brand campaign that celebrated the WestMAC way and positioned the school as a unique and desirable offering compared to other schools in the catchment area.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GVAyDnsmRc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45329\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o0LzwcEURr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"At the end of the day, parents just want their kids to be happy, healthy and well.\\n\\nWestMAC is a wonderland for kids complete with an agriculture farm, animals and a garden for digging—because that\'s just what kids like doing. It\'s the school for real life.\\n\\nThis campaign included gorgeous hero photography, strategic messaging and a series of videos where students talk about their WestMAC experience.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KSqaU5wR9Y\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The campaign resonated with parents in the catchment, and filled the tour. We continued to run the campaign for the rest of the year, encouraging prospective parents to attend a personal tour.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41793,45333,1,'West MAC photography stills collage','2021-09-14 04:03:59','2021-10-05 06:22:38','4a5fe73c-55c8-44e0-a9b6-4d87bb069df6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1032_crop_center-center_82_line/21_WestMAc4.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2064_crop_center-center_82_line/21_WestMAc4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x860_crop_center-center_82_line/21_WestMAc4.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1720_crop_center-center_82_line/21_WestMAc4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x688_crop_center-center_82_line/21_WestMAc4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1376_crop_center-center_82_line/21_WestMAc4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x516_crop_center-center_82_line/21_WestMAc4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x430_crop_center-center_82_line/21_WestMAc4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1032_crop_center-center_82_line/21_WestMAc4.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2064_crop_center-center_82_line/21_WestMAc4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x860_crop_center-center_82_line/21_WestMAc4.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1720_crop_center-center_82_line/21_WestMAc4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x688_crop_center-center_82_line/21_WestMAc4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1376_crop_center-center_82_line/21_WestMAc4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x516_crop_center-center_82_line/21_WestMAc4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x430_crop_center-center_82_line/21_WestMAc4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1032,\"3072\":2064,\"1280\":860,\"2560\":1720,\"1024\":688,\"2048\":1376,\"768\":516,\"640\":430},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"7000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ar6hKlvc4tohuC7lG0YIxyQR/Wr66ndC3OLSN4yrZwT1wpHb3P5Gs3SlWW1zIochcDcM4G0/4Vav/AJLwonyruztHA+7Su07BZWuf/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#aeada7\",\"#222a35\",\"#6d5937\",\"#523a2b\",\"#5d646a\"],\"lightness\":39,\"placeholderWidth\":1536,\"placeholderHeight\":1032,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41794,45334,1,'West Moreton Anglican College','2021-09-14 04:09:15','2021-09-14 04:09:15','0bd2e25b-7a9f-4afc-9a95-73cf2f2fc893',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The school for (real) life',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kSAkN1lDaq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Like schools everywhere, West Moreton Anglican College needed to change its plans to bring parents onto campus to experience the school because of the coronavirus.\\n\\nThis meant the annual open day was cancelled. But a few months later when restrictions eased, the school had a chance to bring parents back.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fxOewiuxW6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45330\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-c4rLGz6SQd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We developed a 16-week plan that timed out the lead up to the modified open day, and follow-up of leads afterwards. It outlined a WestMAC-specific brand campaign that celebrated the WestMAC way and positioned the school as a unique and desirable offering compared to other schools in the catchment area.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o0LzwcEURr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"At the end of the day, parents just want their kids to be happy, healthy and well.\\n\\nWestMAC is a wonderland for kids complete with an agriculture farm, animals and a garden for digging—because that\'s just what kids like doing. It\'s the school for real life.\\n\\nThis campaign included gorgeous hero photography, strategic messaging and a series of videos where students talk about their WestMAC experience.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GVAyDnsmRc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45329\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KSqaU5wR9Y\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The campaign resonated with parents in the catchment, and filled the tour. We continued to run the campaign for the rest of the year, encouraging prospective parents to attend a personal tour.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ip4P0zUBCI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45333\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41796,45336,1,'Endeavour two \'imagine what\'s possible\' images','2021-09-14 04:15:43','2021-10-05 06:21:36','0b5eb809-f55c-4628-b060-472a0e78c04c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x767_crop_center-center_82_line/21_Endeavour.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1535_crop_center-center_82_line/21_Endeavour.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x639_crop_center-center_82_line/21_Endeavour.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1279_crop_center-center_82_line/21_Endeavour.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x511_crop_center-center_82_line/21_Endeavour.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1023_crop_center-center_82_line/21_Endeavour.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x383_crop_center-center_82_line/21_Endeavour.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x319_crop_center-center_82_line/21_Endeavour.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x767_crop_center-center_82_line/21_Endeavour.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1535_crop_center-center_82_line/21_Endeavour.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x639_crop_center-center_82_line/21_Endeavour.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1279_crop_center-center_82_line/21_Endeavour.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x511_crop_center-center_82_line/21_Endeavour.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1023_crop_center-center_82_line/21_Endeavour.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x383_crop_center-center_82_line/21_Endeavour.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x319_crop_center-center_82_line/21_Endeavour.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":767,\"3072\":1535,\"1280\":639,\"2560\":1279,\"1024\":511,\"2048\":1023,\"768\":383,\"640\":319},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"5208\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A59o8WKOy4BYkMAMnt/NTW6bhzqPlLGxUDBO7j8qKKnEJTtzf3v0N6X7v4dPh/Jn/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e67c42\",\"#143765\",\"#8e5249\",\"#a0afc9\",\"#8898c4\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":767,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41798,45338,1,'Endeavour billboard','2021-09-14 04:16:24','2021-10-05 06:21:08','97970853-e0ff-4f80-8be7-57edbafd18b3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x680_crop_center-center_82_line/21_Endeavour2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1361_crop_center-center_82_line/21_Endeavour2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x567_crop_center-center_82_line/21_Endeavour2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1134_crop_center-center_82_line/21_Endeavour2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x453_crop_center-center_82_line/21_Endeavour2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x907_crop_center-center_82_line/21_Endeavour2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x340_crop_center-center_82_line/21_Endeavour2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x283_crop_center-center_82_line/21_Endeavour2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x680_crop_center-center_82_line/21_Endeavour2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1361_crop_center-center_82_line/21_Endeavour2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x567_crop_center-center_82_line/21_Endeavour2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1134_crop_center-center_82_line/21_Endeavour2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x453_crop_center-center_82_line/21_Endeavour2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x907_crop_center-center_82_line/21_Endeavour2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x340_crop_center-center_82_line/21_Endeavour2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x283_crop_center-center_82_line/21_Endeavour2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":680,\"3072\":1361,\"1280\":567,\"2560\":1134,\"1024\":453,\"2048\":907,\"768\":340,\"640\":283},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"4616\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AbCsJhG+SNW91bP8AKliEEVtdq8kckjAeUQp/vc9RxwP1oor1XG73PCjJRT03P//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#0d90cb\",\"#ddddda\",\"#241e1e\",\"#56504f\",\"#66d6f9\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":680,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41799,45339,1,'Endeavour brand elements document with annotation','2021-09-14 04:17:10','2021-10-05 06:20:27','e140d5ac-1cc9-4b47-a754-136038892a55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Endeavour4.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Endeavour4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Endeavour4.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Endeavour4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Endeavour4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Endeavour4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Endeavour4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Endeavour4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Endeavour4.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Endeavour4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Endeavour4.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Endeavour4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Endeavour4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Endeavour4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Endeavour4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Endeavour4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3tcN4mnu1j5jTbxgJ1AqXSHnezJuBIH8xh8/XGauj7xpT978aViud8vKf//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e1e0df\",\"#3a2e32\",\"#cd374e\",\"#ab7f63\",\"#94929b\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41800,45340,1,'Endeavour team possible posters three pages','2021-09-14 05:34:27','2021-10-05 06:19:52','c0b23c25-392f-42e1-9975-7ec9217997f9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1316_crop_center-center_82_line/21_Endeavour3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2632_crop_center-center_82_line/21_Endeavour3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1096_crop_center-center_82_line/21_Endeavour3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2193_crop_center-center_82_line/21_Endeavour3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x877_crop_center-center_82_line/21_Endeavour3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1754_crop_center-center_82_line/21_Endeavour3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x658_crop_center-center_82_line/21_Endeavour3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x548_crop_center-center_82_line/21_Endeavour3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1316_crop_center-center_82_line/21_Endeavour3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2632_crop_center-center_82_line/21_Endeavour3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1096_crop_center-center_82_line/21_Endeavour3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2193_crop_center-center_82_line/21_Endeavour3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x877_crop_center-center_82_line/21_Endeavour3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1754_crop_center-center_82_line/21_Endeavour3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x658_crop_center-center_82_line/21_Endeavour3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x548_crop_center-center_82_line/21_Endeavour3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1316,\"3072\":2632,\"1280\":1096,\"2560\":2193,\"1024\":877,\"2048\":1754,\"768\":658,\"640\":548},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"8925\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A37mMyPug1RE5yVZv6g1MscQMbHUmLJyyhxtauMVUd1Xbgk8sD1p5CMmVXbgZGPr39ev6Vs6CTHFW1R//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e6d8d3\",\"#5c5995\",\"#76b27d\",\"#473729\",\"#a1827c\"],\"lightness\":59,\"placeholderWidth\":1536,\"placeholderHeight\":1316,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41802,45342,1,'Endeavour Foundation','2021-09-14 07:26:29','2021-09-14 07:26:29','6a8c1181-7679-4a40-b907-f9e8d46d4801',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rebranding an icon for a new era',NULL,NULL,'The Endeavour Foundation came to us with a new mandate and a new logo that needed the support of an incredible brand story. We stepped in to capture the essence of authentic customer service: to tell Endeavour’s compelling brand story about the people they serve, and the people who serve.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-i7VSDgqc7V\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45336\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XE9ZIQrYn6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Endeavour delivers essential, personalised and compassionate services to people with intellectual disabilities. When the NDIS was introduced, it was the perfect opportunity for Endeavour to show the world what their services mean to the community it serves.\\n\\nThey asked us to take their new logo and develop a complementary campaign and suite of branding tools to support it. Our goal was to capture the heart of Endeavour Foundation through storytelling and unify the foundation’s people and customers under one powerful vision.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5lKlpPU30x\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45338\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jeFwrbtZMK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45339\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JKRNdGpqnc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We based our campaign strategy on one question: what would make my life better? The question explored Endeavour’s objective to create a brand that could represent their customers and generate greater possibilities for their care. Our creative solution was to make Endeavour customers the heroes.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MQfzkp05OB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Endeavour’s new brand video is an expression of their unifying purpose to truly serve and make a meaningful difference in the lives of their customers.\\n\\nThe campaign speaks for and to the extended stakeholder community about the vision, quality and outcomes of Endeavour’s services. It included:\\n- brand story\\n- full visual brand development from a supplied logo\\n- hero photography\\n- brand book\\n- brand video\\n- employer brand and collateral\\n- launch campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QPJ6J6kHcL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45340\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qBnvWlcG0T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Many powerful stories came out of this job, but the most incredible was watching Endeavour customers embrace the opportunity to model for our video and photography crew. Endeavour reported back to us the meaningful moments when their customers saw their photos for the first time.\\n\\nSince the brand and campaign launch in June 2018, Endeavour has boosted their number of leads for their main service areas: accommodation, day services and work placements. With a long-term goal in mind, these results are significantly greater than anticipated, and only a few months since the campaign launch.\\n\\nIn addition, Endeavour reported to us unexpected community engagement at their events—people who have no connection to intellectual disability and have not previously been involved with the foundation. We look forward to following this story and discovering the full impact of our work.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uYLiG0E4oM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/265285881\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41806,45346,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-15 06:39:59','2021-09-28 09:48:01','205d70d5-0fc7-463d-a30d-ae916c1996ec',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44093,47633,1,'Endeavour Foundation','2021-09-16 01:31:06','2021-09-16 01:31:06','867c6618-abbb-4ce5-b055-4a7865372cf4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rebranding an icon for a new era',NULL,NULL,'The Endeavour Foundation came to us with a new mandate and a new logo that needed the support of an incredible brand story. We stepped in to capture the essence of authentic customer service: to tell Endeavour’s compelling brand story about the people they serve, and the people who serve.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-i7VSDgqc7V\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45336\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XE9ZIQrYn6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Endeavour delivers essential, personalised and compassionate services to people with intellectual disabilities. When the NDIS was introduced, it was the perfect opportunity for Endeavour to show the world what their services mean to the community it serves.\\n\\nThey asked us to take their new logo and develop a complementary campaign and suite of branding tools to support it. Our goal was to capture the heart of Endeavour Foundation through storytelling and unify the foundation’s people and customers under one powerful vision.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5lKlpPU30x\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45338\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jeFwrbtZMK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45339\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JKRNdGpqnc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We based our campaign strategy on one question: what would make my life better? The question explored Endeavour’s objective to create a brand that could represent their customers and generate greater possibilities for their care. Our creative solution was to make Endeavour customers the heroes.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uYLiG0E4oM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/265285881\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MQfzkp05OB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Endeavour’s new brand video is an expression of their unifying purpose to truly serve and make a meaningful difference in the lives of their customers.\\n\\nThe campaign speaks for and to the extended stakeholder community about the vision, quality and outcomes of Endeavour’s services. It included:\\n- brand story\\n- full visual brand development from a supplied logo\\n- hero photography\\n- brand book\\n- brand video\\n- employer brand and collateral\\n- launch campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QPJ6J6kHcL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45340\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qBnvWlcG0T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Many powerful stories came out of this job, but the most incredible was watching Endeavour customers embrace the opportunity to model for our video and photography crew. Endeavour reported back to us the meaningful moments when their customers saw their photos for the first time.\\n\\nSince the brand and campaign launch in June 2018, Endeavour has boosted their number of leads for their main service areas: accommodation, day services and work placements. With a long-term goal in mind, these results are significantly greater than anticipated, and only a few months since the campaign launch.\\n\\nIn addition, Endeavour reported to us unexpected community engagement at their events—people who have no connection to intellectual disability and have not previously been involved with the foundation. We look forward to following this story and discovering the full impact of our work.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44099,47639,1,'Revelian design images collage','2021-09-16 23:36:05','2021-10-05 06:18:55','347b17c4-e460-4e29-86af-829ef15625cd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Revelian.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Revelian.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Revelian.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Revelian.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Revelian.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Revelian.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Revelian.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Revelian.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Revelian.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Revelian.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Revelian.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Revelian.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Revelian.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Revelian.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Revelian.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Revelian.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AZelb22k2TF3BEiTMSQhIyM+mQcYHr0qqJP7PmEdzJu8s78uPvK3UqO2D7dR2qzo/+pt/+uC/+jDWd4g+/af7j/8AoQqeti+h/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#bbaca5\",\"#1c1719\",\"#543431\",\"#6e4f40\",\"#675f59\"],\"lightness\":37,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44100,47640,1,'Revelian brochure eight pages_2','2021-09-16 23:37:03','2021-10-05 06:18:24','6e1eb9b2-1d8b-482a-bc50-929de99a18d0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x737_crop_center-center_82_line/21_Revelian2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1474_crop_center-center_82_line/21_Revelian2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x614_crop_center-center_82_line/21_Revelian2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1228_crop_center-center_82_line/21_Revelian2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x491_crop_center-center_82_line/21_Revelian2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x983_crop_center-center_82_line/21_Revelian2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x368_crop_center-center_82_line/21_Revelian2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x307_crop_center-center_82_line/21_Revelian2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x737_crop_center-center_82_line/21_Revelian2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1474_crop_center-center_82_line/21_Revelian2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x614_crop_center-center_82_line/21_Revelian2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1228_crop_center-center_82_line/21_Revelian2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x491_crop_center-center_82_line/21_Revelian2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x983_crop_center-center_82_line/21_Revelian2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x368_crop_center-center_82_line/21_Revelian2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x307_crop_center-center_82_line/21_Revelian2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":737,\"3072\":1474,\"1280\":614,\"2560\":1228,\"1024\":491,\"2048\":983,\"768\":368,\"640\":307},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"5000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AsaXqUtzrt1ZS3F5jzJEysp4/eDGMnjgEcdjVrwvPc3ly0s95cOE5CGQ7TnIwQf8APFFFS1qbQfuy9D//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dbd1d1\",\"#2b2526\",\"#d22429\",\"#9b695d\",\"#5c6c79\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":737,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44101,47641,1,'Revelian brochure eight pages','2021-09-16 23:43:14','2021-10-05 06:18:00','dc47d9bf-e036-48b5-b101-48f1ae08a9a4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x737_crop_center-center_82_line/21_Revelian_2021-09-16-234314_uuws.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1474_crop_center-center_82_line/21_Revelian_2021-09-16-234314_uuws.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x614_crop_center-center_82_line/21_Revelian_2021-09-16-234314_uuws.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1228_crop_center-center_82_line/21_Revelian_2021-09-16-234314_uuws.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x491_crop_center-center_82_line/21_Revelian_2021-09-16-234314_uuws.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x983_crop_center-center_82_line/21_Revelian_2021-09-16-234314_uuws.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x368_crop_center-center_82_line/21_Revelian_2021-09-16-234314_uuws.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x307_crop_center-center_82_line/21_Revelian_2021-09-16-234314_uuws.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x737_crop_center-center_82_line/21_Revelian_2021-09-16-234314_uuws.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1474_crop_center-center_82_line/21_Revelian_2021-09-16-234314_uuws.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x614_crop_center-center_82_line/21_Revelian_2021-09-16-234314_uuws.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1228_crop_center-center_82_line/21_Revelian_2021-09-16-234314_uuws.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x491_crop_center-center_82_line/21_Revelian_2021-09-16-234314_uuws.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x983_crop_center-center_82_line/21_Revelian_2021-09-16-234314_uuws.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x368_crop_center-center_82_line/21_Revelian_2021-09-16-234314_uuws.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x307_crop_center-center_82_line/21_Revelian_2021-09-16-234314_uuws.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":737,\"3072\":1474,\"1280\":614,\"2560\":1228,\"1024\":491,\"2048\":983,\"768\":368,\"640\":307},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"5000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Am0TUXu9UmtJZ7s5Z1JEp4O/I6njgEcdjUXhnUZbrX1X7TcyIAAVaZioO1s8Hr+lFFJ6Fx1dn2/Q//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e9d6d4\",\"#292426\",\"#935f51\",\"#a7a59e\",\"#878698\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":737,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44102,47642,1,'Revelian brand guidelines twenty slides','2021-09-16 23:44:24','2021-10-05 06:17:10','11c32ea6-33aa-461a-9bdd-11c7d82b4876',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x863_crop_center-center_82_line/21_Revelian3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1726_crop_center-center_82_line/21_Revelian3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x719_crop_center-center_82_line/21_Revelian3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1438_crop_center-center_82_line/21_Revelian3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x575_crop_center-center_82_line/21_Revelian3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1150_crop_center-center_82_line/21_Revelian3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x431_crop_center-center_82_line/21_Revelian3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x359_crop_center-center_82_line/21_Revelian3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x863_crop_center-center_82_line/21_Revelian3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1726_crop_center-center_82_line/21_Revelian3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x719_crop_center-center_82_line/21_Revelian3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1438_crop_center-center_82_line/21_Revelian3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x575_crop_center-center_82_line/21_Revelian3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1150_crop_center-center_82_line/21_Revelian3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x431_crop_center-center_82_line/21_Revelian3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x359_crop_center-center_82_line/21_Revelian3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":863,\"3072\":1726,\"1280\":719,\"2560\":1438,\"1024\":575,\"2048\":1150,\"768\":431,\"640\":359},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"5854\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AvanoPmeIbeOK3kaynG64bkjPPft2qvqOirAZINNsZ1k35aU5YMOcY/OiiokjppTk3dvZaH//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e7dfdd\",\"#2b2222\",\"#de2229\",\"#a55c54\",\"#3ca0b0\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":863,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44103,47643,1,'Revelian image of laptop displaying website','2021-09-16 23:44:46','2021-10-05 06:16:14','0152e0d1-a243-4f6c-9370-3bb375eb26fd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Revelian4.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Revelian4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Revelian4.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Revelian4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Revelian4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Revelian4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Revelian4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Revelian4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Revelian4.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Revelian4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Revelian4.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Revelian4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Revelian4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Revelian4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Revelian4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Revelian4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ay9FsNIlgkbUJ1hZRwXb72c9B7VI1ppy3ouNKuyfs8IIZ1wskgONvQdRWPedI/qf51vSf8gCL/fH86zvZGqV2f//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#2e221a\",\"#dbccc4\",\"#896a59\",\"#9d9996\",\"#988c98\"],\"lightness\":46,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44104,47644,1,'Revelian','2021-09-16 23:47:19','2021-09-16 23:47:19','af8b3da5-4808-4006-9c56-141ab0e167ab',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The big reveal',NULL,NULL,'Revelian is a charismatic player in the field of business talent identification and assessment. We told Revelian’s story by rolling out a suite of new brand tools and using a powerful visual metaphor for the outcomes their customers gain.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wVL1kj40Jr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47639\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3wNj8vd0Xj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<iframe src=\\\"https://player.vimeo.com/video/317380021?h=7cf79dbb3e&title=0&byline=0&portrait=0\\\" width=\\\"640\\\" height=\\\"360\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe> <p><a href=\\\"https://vimeo.com/317380021\\\">Revelian | Brand video</a> from <a href=\\\"https://vimeo.com/newwordorder\\\">New Word Order/New Pictures</a> on <a href=\\\"https://vimeo.com\\\">Vimeo</a>.</p>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3ldwVmO5X2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"A beautiful partnership\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our goal was to position and powerfully differentiate this business from its competitors. The branding achieves this and binds Revelian’s internal team more closely to its purpose and business objectives. In doing so, it ensures current and prospective customers and partners can access, understand—and most importantly—prefer Revelian and its offering.\\n\\nOverall, our rollout for Revelian was staged and achievable, allowing the client to adjust and update their brand over time. This approach remains cost-effective for our client and has allowed us to work with them closely with key stakeholders to ensure we are meeting their needs and creating value for their investment.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-88fP2RTozJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47641\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-l0m2MRWrk9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"A new brand story to tell\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The Revelian brand story centres around the stories of their prospective customers—those who require business talent identification and assessment. Revelian’s narrative guides these customers along a compelling journey. It reads like any good treasure hunt should: the hunter driven by the thrill of next step and the genuine promise of quality and authenticity.\\n\\nThe intrigue and complexity of human behaviour is a fascinating topic that most of us explore throughout our daily life and work. Revelian uncovers the hidden, delves inside and goes beneath the surface to reveal the truth inside people, for businesses and organisations wanting to hire people well, and utilise them well.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-zVMqQZyrh0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"A refreshing approach\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"As we refreshed their brand, we wrapped every element in the concept of ‘reveal’. The idea flows consistently throughout every aspect of the Revelian brand: we’ll start on the surface and delve deeper into the intrigue of human behaviour and insights for hiring and people management solutions.\\n\\nWhile the logo remains simple, strong and typographic, the visual elements have starring roles. Using filters, colours, photography and myriad gorgeous design treatments, they show and tell how the company reveals its precious insights.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WxJNoxzJXO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47642\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UCB7SM9ORH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strong, productive relationships\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our successful working relationship with the client has been key to forming the initial strategy for their brand development, website, collateral and exhibition development.\\n\\nOur team of creatives, developers and content specialists have enjoyed walking through this journey with Revelian.\\n\\nThe insights we’ve gained from this partnership have allowed us to produce work that performs to a very high standard within the agreed-upon scope, budget and timeframe.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kBhhzN53nM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47643\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FzPUJWQp19\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"A new front door\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"After refreshing their brand, we began redeveloping the Revelian website. To start with, we created a content strategy based on customer journeys and key messages. \\n\\nOur team of content specialists worked with the client to edit and review web copy for pages on the website. \\n\\nWith copy and wireframes ready and approved for development, our digital team applied the refreshed branding across the website.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44106,47646,1,'Revelian','2021-09-16 23:51:52','2021-09-16 23:51:52','a2b2d2e8-9ed3-4b45-bdd2-8d4b304cd6e3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The big reveal',NULL,NULL,'Revelian is a charismatic player in the field of business talent identification and assessment. We told Revelian’s story by rolling out a suite of new brand tools and using a powerful visual metaphor for the outcomes their customers gain.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wVL1kj40Jr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47639\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3ldwVmO5X2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"A beautiful partnership\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our goal was to position and powerfully differentiate this business from its competitors. The branding achieves this and binds Revelian’s internal team more closely to its purpose and business objectives. In doing so, it ensures current and prospective customers and partners can access, understand—and most importantly—prefer Revelian and its offering.\\n\\nOverall, our rollout for Revelian was staged and achievable, allowing the client to adjust and update their brand over time. This approach remains cost-effective for our client and has allowed us to work with them closely with key stakeholders to ensure we are meeting their needs and creating value for their investment.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-88fP2RTozJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47641\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-l0m2MRWrk9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"A new brand story to tell\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The Revelian brand story centres around the stories of their prospective customers—those who require business talent identification and assessment. Revelian’s narrative guides these customers along a compelling journey. It reads like any good treasure hunt should: the hunter driven by the thrill of next step and the genuine promise of quality and authenticity.\\n\\nThe intrigue and complexity of human behaviour is a fascinating topic that most of us explore throughout our daily life and work. Revelian uncovers the hidden, delves inside and goes beneath the surface to reveal the truth inside people, for businesses and organisations wanting to hire people well, and utilise them well.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3wNj8vd0Xj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/317380021?h=7cf79dbb3e&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-zVMqQZyrh0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"A refreshing approach\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"As we refreshed their brand, we wrapped every element in the concept of ‘reveal’. The idea flows consistently throughout every aspect of the Revelian brand: we’ll start on the surface and delve deeper into the intrigue of human behaviour and insights for hiring and people management solutions.\\n\\nWhile the logo remains simple, strong and typographic, the visual elements have starring roles. Using filters, colours, photography and myriad gorgeous design treatments, they show and tell how the company reveals its precious insights.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WxJNoxzJXO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47642\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UCB7SM9ORH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strong, productive relationships\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our successful working relationship with the client has been key to forming the initial strategy for their brand development, website, collateral and exhibition development.\\n\\nOur team of creatives, developers and content specialists have enjoyed walking through this journey with Revelian.\\n\\nThe insights we’ve gained from this partnership have allowed us to produce work that performs to a very high standard within the agreed-upon scope, budget and timeframe.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kBhhzN53nM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47643\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FzPUJWQp19\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"A new front door\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"After refreshing their brand, we began redeveloping the Revelian website. To start with, we created a content strategy based on customer journeys and key messages. \\n\\nOur team of content specialists worked with the client to edit and review web copy for pages on the website. \\n\\nWith copy and wireframes ready and approved for development, our digital team applied the refreshed branding across the website.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44108,47648,1,'West Moreton Anglican College','2021-09-17 01:17:20','2021-09-17 01:17:20','e1530401-c9d3-41ec-8941-ae0becc6faee',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The school for (real) life',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kSAkN1lDaq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Like schools everywhere, West Moreton Anglican College needed to change its plans to bring parents onto campus to experience the school because of the coronavirus.\\n\\nThis meant the annual open day was cancelled. But a few months later when restrictions eased, the school had a chance to bring parents back.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fxOewiuxW6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45330\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-c4rLGz6SQd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We developed a 16-week plan that timed out the lead up to the modified open day, and follow-up of leads afterwards. It outlined a WestMAC-specific brand campaign that celebrated the WestMAC way and positioned the school as a unique and desirable offering compared to other schools in the catchment area.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GVAyDnsmRc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45329\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o0LzwcEURr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"At the end of the day, parents just want their kids to be happy, healthy and well.\\n\\nWestMAC is a wonderland for kids complete with an agriculture farm, animals and a garden for digging—because that\'s just what kids like doing. It\'s the school for real life.\\n\\nThis campaign included gorgeous hero photography, strategic messaging and a series of videos where students talk about their WestMAC experience.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-66MSHWAoOc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/574221746?h=e0da3461d2&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KSqaU5wR9Y\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The campaign resonated with parents in the catchment, and filled the tour. We continued to run the campaign for the rest of the year, encouraging prospective parents to attend a personal tour.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ip4P0zUBCI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45333\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44110,47650,1,'West Moreton Anglican College','2021-09-17 02:22:50','2021-09-17 02:22:50','13c7ff32-1393-437d-8297-e46e10e8ec57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The school for (real) life',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kSAkN1lDaq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Like schools everywhere, West Moreton Anglican College needed to change its plans to bring parents onto campus to experience the school because of the coronavirus.\\n\\nThis meant the annual open day was cancelled. But a few months later when restrictions eased, the school had a chance to bring parents back.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fxOewiuxW6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45330\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-c4rLGz6SQd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We developed a 16-week plan that timed out the lead up to the modified open day, and follow-up of leads afterwards. It outlined a WestMAC-specific brand campaign that celebrated the WestMAC way and positioned the school as a unique and desirable offering compared to other schools in the catchment area.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GVAyDnsmRc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45329\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o0LzwcEURr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"At the end of the day, parents just want their kids to be happy, healthy and well.\\n\\nWestMAC is a wonderland for kids complete with an agriculture farm, animals and a garden for digging—because that\'s just what kids like doing. It\'s the school for real life.\\n\\nThis campaign included gorgeous hero photography, strategic messaging and a series of videos where students talk about their WestMAC experience.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-66MSHWAoOc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/470822168?h=a0ce3a6b80&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/470822520?h=90034f124f&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KSqaU5wR9Y\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The campaign resonated with parents in the catchment, and filled the tour. We continued to run the campaign for the rest of the year, encouraging prospective parents to attend a personal tour.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ip4P0zUBCI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45333\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44112,47652,1,'Brisbane North PHN NSPT','2021-09-17 04:07:32','2021-09-17 04:07:32','825e44ff-634e-42c6-8cb6-3edfad0ca403',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'National Suicide Prevention Trials',NULL,NULL,'We were chosen to consult with Brisbane North communities who had been selected for the trial: LGBTIQ communities, Aboriginal and Torres Strait Islander communities, and community organisations working with young to middle-aged men.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yV9Swskqh3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45209\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Bri6BITkLV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The team of Brisbane North PHN is one of the national sites chosen to deliver National Suicide Prevention Trial (NSPT) funding.\\n\\nOur work had two important parts. The first was to engage deeply and sensitively with communities to understand their experiences, successes and reflections during the four years of trial funding and to report on these. The second was to deliver useful materials the service organisations could use to seek further funding and sponsorships as they transitioned from trial funding.\\n\\nTo successfully undertake community engagement, we again partnered with Janine Crawford, a skilled health consultant and Aboriginal and Torres Strait Islander woman. Our work included workshops, face-to-face interviews and a highly successful yarning circle, and these important and sensitive conversations—which included Sad News/Sorry Business—were given the time and space each needed. \",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2OxHHkid1g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45325\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VcPtAbE6Am\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The finalised report was submitted to NSPT as a qualitative reflection on the remarkable achievements of the trial—including the PHN’s commitment to community-led co-design, and the healing within communities that was begun through the intentionally collaborative process.\\n\\nTo offer creative services that were suited to the context, needs and existing resourcing of the seven service organisations, we offered a menu of items, ranging from fact sheets to marketing consultations. The groups then chose the elements that were of greatest use to them.\\n\\nPart of the unique nature of the Brisbane North PHN NSPT trial was the emphasis on community partnerships and collaboration, and we embodied this in our design approach, too. To enable groups to pitch together or separately for any future suicide prevention funding, we created a single brand style to visually unify any designed material. Each group, then, had its own logo and its own colour palette within that visual style—a brand within a brand. That way, any future funding pitches that relied on our designed material could look as though the groups were unique but still closely aligned.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44114,47654,1,'QMHC','2021-09-17 04:13:34','2021-09-17 04:13:34','14a7214c-fa57-4056-8f56-8c3cac6712aa',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Queensland Mental Health Commission community engagement',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-B6PvNvL5Iy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\"],\"blocks\":{\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We gained clear lines of sight into the impressions and needs of their stakeholder audience through 26 guided, in-depth phone interviews. Each interview was between 30 and 45 minutes long, and followed an approved guide to elicit data and insights to key questions. Key stakeholders included representatives of vulnerable groups, including remote communities, LGBTIQ+ stakeholder organisations, and Aboriginal and Torres Strait Islander groups.\\n\\nFrom this data, we developed an insights document and then a strategy to enable the Commission’s 20+ staff to better reach stakeholders with timely, needed communication and engagement opportunities.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44116,47656,1,'Queensland Mental Health Commission photography stills collage','2021-09-17 05:37:46','2021-10-05 06:15:31','868d7933-347e-4acc-b4ac-b264ec6950e5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x430_crop_center-center_82_line/21_QMHC.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x860_crop_center-center_82_line/21_QMHC.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x358_crop_center-center_82_line/21_QMHC.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x716_crop_center-center_82_line/21_QMHC.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x286_crop_center-center_82_line/21_QMHC.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x573_crop_center-center_82_line/21_QMHC.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x215_crop_center-center_82_line/21_QMHC.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x179_crop_center-center_82_line/21_QMHC.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x430_crop_center-center_82_line/21_QMHC.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x860_crop_center-center_82_line/21_QMHC.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x358_crop_center-center_82_line/21_QMHC.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x716_crop_center-center_82_line/21_QMHC.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x286_crop_center-center_82_line/21_QMHC.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x573_crop_center-center_82_line/21_QMHC.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x215_crop_center-center_82_line/21_QMHC.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x179_crop_center-center_82_line/21_QMHC.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":430,\"3072\":860,\"1280\":358,\"2560\":716,\"1024\":286,\"2048\":573,\"768\":215,\"640\":179},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"2917\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Aju52tbW6NuFiKOxXaO+TWp4fT7WIp52ZpGjVyc980UVCSd7m9TRK3Y//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c19e8a\",\"#2a2a2c\",\"#dbdde5\",\"#a43b37\",\"#8a8431\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":430,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44117,47657,1,'Queensland Mental Health Commission insights report_2','2021-09-17 05:39:04','2021-10-05 06:14:55','93ce77b2-303f-43f1-a11b-419438e2cca4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_QMHC2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_QMHC2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_QMHC2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_QMHC2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_QMHC2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_QMHC2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_QMHC2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_QMHC2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_QMHC2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_QMHC2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_QMHC2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_QMHC2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_QMHC2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_QMHC2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_QMHC2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_QMHC2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A63VyHVIGBxICcg+mKZo99C4NmHy8fK5Odynn/GptR/19v9H/AJCufsP+P2y/66f+yipuWkmf/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#cfcece\",\"#3d4b5e\",\"#aa6b4d\",\"#bd9176\",\"#8c549b\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44118,47658,1,'QMHC','2021-09-17 05:39:46','2021-09-17 05:39:46','a50a1fad-b6cf-4f87-891f-6c7c91b61cec',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Queensland Mental Health Commission community engagement',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QkuSHpszbt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47656\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-B6PvNvL5Iy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We gained clear lines of sight into the impressions and needs of their stakeholder audience through 26 guided, in-depth phone interviews. Each interview was between 30 and 45 minutes long, and followed an approved guide to elicit data and insights to key questions. Key stakeholders included representatives of vulnerable groups, including remote communities, LGBTIQ+ stakeholder organisations, and Aboriginal and Torres Strait Islander groups.\\n\\nFrom this data, we developed an insights document and then a strategy to enable the Commission’s 20+ staff to better reach stakeholders with timely, needed communication and engagement opportunities.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F39qRl2lIU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47657\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44120,47660,1,'Department of Housing and Public Works image collage_2','2021-09-17 05:57:43','2022-06-28 01:10:20','8006a5b4-f3c6-4aeb-806d-863cd01455cd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x401_crop_center-center_82_line/21_DPHW-Renting-images.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x803_crop_center-center_82_line/21_DPHW-Renting-images.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x334_crop_center-center_82_line/21_DPHW-Renting-images.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x669_crop_center-center_82_line/21_DPHW-Renting-images.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x267_crop_center-center_82_line/21_DPHW-Renting-images.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x535_crop_center-center_82_line/21_DPHW-Renting-images.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x200_crop_center-center_82_line/21_DPHW-Renting-images.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x167_crop_center-center_82_line/21_DPHW-Renting-images.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x401_crop_center-center_82_line/21_DPHW-Renting-images.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x803_crop_center-center_82_line/21_DPHW-Renting-images.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x334_crop_center-center_82_line/21_DPHW-Renting-images.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x669_crop_center-center_82_line/21_DPHW-Renting-images.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x267_crop_center-center_82_line/21_DPHW-Renting-images.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x535_crop_center-center_82_line/21_DPHW-Renting-images.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x200_crop_center-center_82_line/21_DPHW-Renting-images.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x167_crop_center-center_82_line/21_DPHW-Renting-images.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":401,\"3072\":803,\"1280\":334,\"2560\":669,\"1024\":267,\"2048\":535,\"768\":200,\"640\":167},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"2726\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AfqbN/ZjTbiGLY44HU9qkutQuI9SID5C/MAecE0UVnDa5vN227H//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d0bbb3\",\"#3c3341\",\"#9c3440\",\"#b17734\",\"#8f6571\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":401,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44121,47661,1,'Department of Housing and Public Works mobile phone displaying website_2','2021-09-17 05:57:56','2022-06-28 01:10:27','34be3cd3-bdaf-4ebf-ab44-ff31cec868d2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x737_crop_center-center_82_line/21_DPHW-Renting-images2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1474_crop_center-center_82_line/21_DPHW-Renting-images2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x614_crop_center-center_82_line/21_DPHW-Renting-images2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1228_crop_center-center_82_line/21_DPHW-Renting-images2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x491_crop_center-center_82_line/21_DPHW-Renting-images2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x983_crop_center-center_82_line/21_DPHW-Renting-images2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x368_crop_center-center_82_line/21_DPHW-Renting-images2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x307_crop_center-center_82_line/21_DPHW-Renting-images2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x737_crop_center-center_82_line/21_DPHW-Renting-images2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1474_crop_center-center_82_line/21_DPHW-Renting-images2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x614_crop_center-center_82_line/21_DPHW-Renting-images2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1228_crop_center-center_82_line/21_DPHW-Renting-images2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x491_crop_center-center_82_line/21_DPHW-Renting-images2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x983_crop_center-center_82_line/21_DPHW-Renting-images2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x368_crop_center-center_82_line/21_DPHW-Renting-images2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x307_crop_center-center_82_line/21_DPHW-Renting-images2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":737,\"3072\":1474,\"1280\":614,\"2560\":1228,\"1024\":491,\"2048\":983,\"768\":368,\"640\":307},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"5000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A65Te+c/leSVyc8nPXj+tEX9rZTzfs4G4bgoP3c896KKVirn/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d6cfcc\",\"#9b373f\",\"#da8e20\",\"#ad7d7c\",\"#656e7f\"],\"lightness\":58,\"placeholderWidth\":1536,\"placeholderHeight\":737,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44122,47662,1,'Department of Housing and Public Works image collage','2021-09-17 05:59:15','2021-10-05 06:13:29','3ff31dc6-8a56-43d6-af69-dc7a7209634e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x401_crop_center-center_82_line/21_DPHW-Renting-images3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x803_crop_center-center_82_line/21_DPHW-Renting-images3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x334_crop_center-center_82_line/21_DPHW-Renting-images3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x669_crop_center-center_82_line/21_DPHW-Renting-images3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x267_crop_center-center_82_line/21_DPHW-Renting-images3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x535_crop_center-center_82_line/21_DPHW-Renting-images3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x200_crop_center-center_82_line/21_DPHW-Renting-images3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x167_crop_center-center_82_line/21_DPHW-Renting-images3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x401_crop_center-center_82_line/21_DPHW-Renting-images3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x803_crop_center-center_82_line/21_DPHW-Renting-images3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x334_crop_center-center_82_line/21_DPHW-Renting-images3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x669_crop_center-center_82_line/21_DPHW-Renting-images3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x267_crop_center-center_82_line/21_DPHW-Renting-images3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x535_crop_center-center_82_line/21_DPHW-Renting-images3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x200_crop_center-center_82_line/21_DPHW-Renting-images3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x167_crop_center-center_82_line/21_DPHW-Renting-images3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":401,\"3072\":803,\"1280\":334,\"2560\":669,\"1024\":267,\"2048\":535,\"768\":200,\"640\":167},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"2726\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AW8d4tNWZHcPkD7xx+XStDVHa2j82M/xgbW5Xqe34CiisV8KOl/Ez/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d2b7a5\",\"#572c3e\",\"#bb782f\",\"#926565\",\"#585770\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":401,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44123,47663,1,'Department of Housing and Public Works mobile phone displaying website','2021-09-17 06:00:29','2021-10-05 06:13:00','226b5ade-f62c-4d96-9229-6d078964a4c0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x737_crop_center-center_82_line/21_DPHW-Renting-images4.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1474_crop_center-center_82_line/21_DPHW-Renting-images4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x614_crop_center-center_82_line/21_DPHW-Renting-images4.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1228_crop_center-center_82_line/21_DPHW-Renting-images4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x491_crop_center-center_82_line/21_DPHW-Renting-images4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x983_crop_center-center_82_line/21_DPHW-Renting-images4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x368_crop_center-center_82_line/21_DPHW-Renting-images4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x307_crop_center-center_82_line/21_DPHW-Renting-images4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x737_crop_center-center_82_line/21_DPHW-Renting-images4.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1474_crop_center-center_82_line/21_DPHW-Renting-images4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x614_crop_center-center_82_line/21_DPHW-Renting-images4.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1228_crop_center-center_82_line/21_DPHW-Renting-images4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x491_crop_center-center_82_line/21_DPHW-Renting-images4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x983_crop_center-center_82_line/21_DPHW-Renting-images4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x368_crop_center-center_82_line/21_DPHW-Renting-images4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x307_crop_center-center_82_line/21_DPHW-Renting-images4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":737,\"3072\":1474,\"1280\":614,\"2560\":1228,\"1024\":491,\"2048\":983,\"768\":368,\"640\":307},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"5000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6+N9QMz7Ps7Qg9y27P8AnFOU6oWXctqFzzjceP8AOaKKVhp2P//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d2c9c4\",\"#372431\",\"#b43e45\",\"#c18134\",\"#a1756f\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":737,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44124,47664,1,'Department of Housing and Public Works','2021-09-17 06:01:05','2021-09-17 06:01:05','02ed6282-949e-4ec1-b055-e8680244bc72',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Have your say in a better renting future',NULL,NULL,'With a range of renting reforms not yet law, we created a campaign to drive renters to a survey where they could have their say.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NnAYpM8RPK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47660\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2V7rQTXdap\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"More Queenslanders are renting than ever before.\\n\\nSo the Department of Housing and Public Works wanted to have open and honest conversations with renters, property owners and managers about what matters and what needs to change.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BQeIecGM9t\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47661\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-mjELLOS8zt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The messaging was compelling and obvious to convince the target groups there was value in them participating in the survey. To motivate the audiences, we tapped into key renting issues but kept a warm and positive sentiment.\\n\\nWe developed display ads, videos and static posts to build awareness and capture interest.\\n\\nPlus, we used long-form Facebook posts to convert target group interest and inform them on the details.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CDacbY6rtS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47662\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W1OXhvU4i4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The campaign had a total of 24 posts across two weeks, reaching 1.37 million individual Facebook users, with more than 42,000 engagements.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VN9WYyb9Pi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47663\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44125,47665,1,'West Moreton Anglican College','2021-09-17 06:01:30','2021-09-17 06:01:30','02415741-412d-4ea2-af98-685db7de44f9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The school for (real) life',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kSAkN1lDaq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Like schools everywhere, West Moreton Anglican College needed to change its plans to bring parents onto campus to experience the school because of the coronavirus.\\n\\nThis meant the annual open day was cancelled. But a few months later when restrictions eased, the school had a chance to bring parents back.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fxOewiuxW6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45330\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-c4rLGz6SQd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We developed a 16-week plan that timed out the lead up to the modified open day, and follow-up of leads afterwards. It outlined a WestMAC-specific brand campaign that celebrated the WestMAC way and positioned the school as a unique and desirable offering compared to other schools in the catchment area.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GVAyDnsmRc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45329\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o0LzwcEURr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"At the end of the day, parents just want their kids to be happy, healthy and well.\\n\\nWestMAC is a wonderland for kids complete with an agriculture farm, animals and a garden for digging—because that\'s just what kids like doing. It\'s the school for real life.\\n\\nThis campaign included gorgeous hero photography, strategic messaging and a series of videos where students talk about their WestMAC experience.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-66MSHWAoOc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/470822168?h=a0ce3a6b80&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/470822520?h=90034f124f&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KSqaU5wR9Y\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The campaign resonated with parents in the catchment, and filled the tour. We continued to run the campaign for the rest of the year, encouraging prospective parents to attend a personal tour.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ip4P0zUBCI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45333\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44127,47667,1,'Medical Mums','2021-09-17 06:08:04','2021-09-17 06:08:04','8e83689d-01a8-478e-9611-f3c037ae1b1a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A long-term approach to behaviour change',NULL,NULL,'For the past six years we have been running behaviour change campaigns to encourage families to vaccinate their children. And in that time, we\'ve seen the positive impact.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ydM19JpsMi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45317\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pqYRaab2Y6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45318\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NUepHwOfhy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"In 2015, market research and immunisation rates across Brisbane North PHN\'s catchment were showing the anti-vax movement was taking hold.\\n\\nWhile parents from lower socio-economic backgrounds were responding to the Australian Government’s ‘no jab, no pay’ rules, those not using daycare—including many from among the wealthier suburbs—were holding their ground.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5st3FTYzr4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45319\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QwUWkeN1w7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We determined from research that parents would respond to their GP’s opinion, and developed a behaviour change campaign to encourage conversations between parents and medical professionals around immunisation and overcome objections to it.\\n\\nWe harnessed the GP/medical voice and added extra credibility by finding medical professionals who were also parents.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MQKB9uw8mS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45323\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PVmUcFRs5l\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Under the heading of Medical Mums, we found two GPs and one Indigenous health nurse to become the faces and voice of the campaign. Each discussed hot topics as well as the benefits of immunisation, drawing on their own beliefs and practices as parents as well as their medical training.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Lt1sEFXPGo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/173565144?h=a059ec04b7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/173565142?h=1a735c3207&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-elDM8mfUVq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"textGrid\",\"enabled\":\"1\",\"fields\":{\"gridItems\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\",\"new6\"],\"blocks\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"2016\",\"text\":\"Medical Mums was launched during Immunisation Week.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"2017\",\"text\":\"The creative was still fresh and effective for the target group, and we ran the campaign again.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"2018\",\"text\":\"We added Stuart, our honorary Medical Dad.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"2019\",\"text\":\"It was time to mix up the messaging and creative, so we developed a vaccination myth-busting video featuring illustration—a move away from the previous live-action ads.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"2020\",\"text\":\"With COVID-19, there was new vaccination messaging clutter to cut through. We encouraged our market to keep up to date with their routine vaccinations.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"2021\",\"text\":\"Funding was initially approved for five years. But our campaign has been so successful the PHN has been provided with funding for an additional year. We will launch a new iteration in the coming months.\"}}}}}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-za95KkkRhY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45322\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9XsuejXAac\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We launched the campaign in Immunisation Week in 2016, and have revised it for relaunch every year since. Results showed immunisation levels increased after the campaign each year, and our has client received extensive positive feedback—including from the Queensland Minister for Health.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44129,47669,1,'Domestic and family violence','2021-09-17 06:11:09','2021-09-17 06:11:09','eb452c63-096e-4d19-8853-d391bc91481f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Everyone deserves to feel safe',NULL,NULL,'We developed a powerful campaign—visuals, messaging and animation—to help Queenslanders understand the nature of domestic and family violence and to seek help for themselves or others.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2BMTwZsxt5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16826\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yW5tY9wyAQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"To help slow the spread of COVID-19, Queenslanders are spending more time at home—but home isn’t always a safe place.\\n\\nEveryone deserves to feel safe. Domestic and family violence is never acceptable. Help and support are available.\\n\\nThis is the campaign message the Queensland Government commissioned us to develop as the impact of COVID-19 rippled across our state.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BAdruYcFgJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16838\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CsRNpWzHen\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We started the project by researching DFV campaigns in Australia and around the world.\\n\\nOur diverse target market included:\\n\\n1. Adult Queenslanders 18+ who are affected by domestic and family violence\\n\\n- People experiencing domestic and family violence\\n- People who become aware of domestic and family violence occurring\\n\\n2. Young Queenslanders 13-17 years old who may be affected by domestic and family violence in their household.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fOoytqzb18\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16839\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-refpZT5QBU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Messaging\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Rather than describe exactly what DFV might look like, the scripts and campaign advertisements echo the thoughts and feelings of those experiencing or observing DFV.\\n\\nThe copy style is concise, informal and written to an individual. DFV is complex and often hard to identify. We unpacked the different dimensions of DFV and always pointed the reader or viewer to help and support.\\n\\nOur messages were targeted to a diverse Queensland audience. We aimed to capture the human experience and emotions of DFV through the voice and style of the copy.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7Bn5w0QSW7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16840\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JtCJdSgzXY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our creative team completed an environmental scan to develop three design concepts with strategic choices in colours, symbols, typography and iconography.\\n\\nThe icons are simple and symbolic. We were careful to avoid using the human figure or gender-specific shapes to symbolise violent or threatening behaviours.\\n\\nInstead, our goal was to capture the far-reaching effect of domestic violence in the home and family through clean and minimal iconography, colours and shapes.\\n\\nWe used brand colours strategically, ensuring they were striking but not aggressive or alarming. Wherever possible, we avoided dark colours and shadows.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-asjEpeVorj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/572804196\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vsjyJmaOWT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Animation\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"When directing the animation style, we wanted to convey the key messages of the campaign clearly and quickly. The morphing animation style is eye-catching and interesting.\\n\\nThe morphing shapes also efficiently unpack important messages to the viewer, complementing and supporting the messages in the video voiceover.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0Latj6rdpS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Phase 2\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"After the success of our 2020 launch, we rolled out a new iteration in 2021 that focused more on the non-physical forms of domestic and family violence.\\n\\nThis includes behaviour around controlling or monitoring finances, technology and social interactions.\\n\\nOur goal: to raise awareness and understanding of these forms of abuse, and communicate the seriousness of these behaviours.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aCf57wrIYs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/430227569\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Qes33flGQL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Work of this kind speaks straight to our purpose as an agency: to make a meaningful impact to people’s lives. Our team is proud to have been involved supporting families in our local community.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44131,47671,1,'Tritium logo collage_3','2021-09-17 06:24:55','2021-10-05 06:12:21','13272b50-e21f-4584-ae52-0edc4025964a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x768_crop_center-center_82_line/TRI-landing-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x640_crop_center-center_82_line/TRI-landing-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x512_crop_center-center_82_line/TRI-landing-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x384_crop_center-center_82_line/TRI-landing-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x320_crop_center-center_82_line/TRI-landing-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x768_crop_center-center_82_line/TRI-landing-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x640_crop_center-center_82_line/TRI-landing-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x512_crop_center-center_82_line/TRI-landing-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x384_crop_center-center_82_line/TRI-landing-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x320_crop_center-center_82_line/TRI-landing-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"1024\":512,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"800\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7s7xGm7Jfvsx1x70r7/L+TO73oooFY//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#2d91ae\",\"#f0f8f8\",\"#95cad7\",\"#7f8a8f\",\"#949494\"],\"lightness\":65,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44132,47672,1,'Tritium two banners cut off','2021-09-17 06:24:57','2021-10-05 06:12:00','2dca10fe-7ed4-4296-bb6f-ce9a5c6ec278',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/TRI-landing-3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/TRI-landing-3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/TRI-landing-3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/TRI-landing-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/TRI-landing-3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/TRI-landing-3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/TRI-landing-3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/TRI-landing-3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/TRI-landing-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/TRI-landing-3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A0tQ128ttSlt4YInRGUZOc8gH1qxZaxNcXyQNHGFYkZGc9KwtU/5GO5/3h/JauaV/yGIv95v5GuyNOLg3boebUrVFVUb6XP/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#069ad0\",\"#e3e3ea\",\"#174962\",\"#a4c4cc\",\"#74949c\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44133,47673,1,'Tritium five banners cut off','2021-09-17 06:24:58','2021-10-05 06:11:40','52cf6fcd-e9cc-4b09-98a7-ca0d90c141e4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/TRI-landing-4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/TRI-landing-4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/TRI-landing-4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/TRI-landing-4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/TRI-landing-4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/TRI-landing-4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/TRI-landing-4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/TRI-landing-4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/TRI-landing-4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/TRI-landing-4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A27zStNnvHuJXbzgQzKjDI6duvpT7C1sDKlzA7biSVDHB7jpWbJ/yHNU/3E/mtXB/yMKfT+hrWF3dX6HPV5VyyavrY//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dee0e5\",\"#157798\",\"#ba5d2e\",\"#15323e\",\"#8c8850\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44134,47674,1,'Tritium three banners cut off','2021-09-17 06:25:00','2021-10-05 06:11:14','43a09019-a13b-4832-ae13-359580ca690e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/TRI-landing-5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/TRI-landing-5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/TRI-landing-5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/TRI-landing-5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/TRI-landing-5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/TRI-landing-5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/TRI-landing-5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/TRI-landing-5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/TRI-landing-5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/TRI-landing-5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A2odOlOvXlxNF/o8iAA5B3Hjt+FSNYOusQzQxbYE759R/jWp3NLVKTREoKVr+p//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e0e0e5\",\"#1b6e8d\",\"#2cc3f1\",\"#968265\",\"#cf6330\"],\"lightness\":59,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44135,47675,1,'Tritium two banners close-up','2021-09-17 06:25:02','2021-10-05 06:10:52','fa005026-04bf-495d-adc4-f9e091aedc5c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/TRI-landing-6.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/TRI-landing-6.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/TRI-landing-6.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/TRI-landing-6.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/TRI-landing-6.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/TRI-landing-6.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/TRI-landing-6.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/TRI-landing-6.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/TRI-landing-6.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/TRI-landing-6.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AuatMpu7tQTu8t8/9+/8A9dZ3hiFDrakkkKjMnPOenP4E07Vf+Q7ef9c3/wDRRp3hH/kNSf8AXA/zWuibvFehxUVaT9Wf/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1b4d63\",\"#dfe1e4\",\"#0fbae9\",\"#0793c4\",\"#e5682b\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44136,47676,1,'Tritium concept','2021-09-17 06:25:04','2021-10-05 06:10:25','f89a34c3-1d4f-469b-936d-0b1be1767627',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x432_crop_center-center_82_line/TRI-landing-7.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x360_crop_center-center_82_line/TRI-landing-7.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x288_crop_center-center_82_line/TRI-landing-7.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x216_crop_center-center_82_line/TRI-landing-7.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x180_crop_center-center_82_line/TRI-landing-7.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x432_crop_center-center_82_line/TRI-landing-7.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x360_crop_center-center_82_line/TRI-landing-7.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x288_crop_center-center_82_line/TRI-landing-7.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x216_crop_center-center_82_line/TRI-landing-7.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x180_crop_center-center_82_line/TRI-landing-7.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":432,\"1280\":360,\"1024\":288,\"768\":216,\"640\":180},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"450\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6o2NpI5le2iaRsgsUBJ4x/KkisbS3YyQW0Ub9NyIAaKKYrH/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e0e0e4\",\"#1c485b\",\"#8ca5af\",\"#7c7c7c\",\"#74848c\"],\"lightness\":58,\"placeholderWidth\":1536,\"placeholderHeight\":432,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44137,47677,1,'Tritium first postcard','2021-09-17 06:25:08','2021-10-05 06:09:04','0bd33c32-9be7-4c46-913d-5c1e9f95ad81',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/TRI-landing-14.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/TRI-landing-14.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/TRI-landing-14.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/TRI-landing-14.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/TRI-landing-14.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/TRI-landing-14.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/TRI-landing-14.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/TRI-landing-14.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/TRI-landing-14.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/TRI-landing-14.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ao6dpkN7aySF5vMQgbY03daratY/2bqMtp5nm+Xj5tu3OQD0/GmW/Rqin/wBc1b63OTSx/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1f4a5e\",\"#ccd5d2\",\"#4ea1c7\",\"#313e1b\",\"#8b9c86\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44138,47678,1,'Tritium second postcard','2021-09-17 06:25:10','2021-10-05 06:09:16','553e117f-1840-48b6-bece-ba7abd21c230',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/TRI-landing-15.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/TRI-landing-15.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/TRI-landing-15.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/TRI-landing-15.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/TRI-landing-15.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/TRI-landing-15.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/TRI-landing-15.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/TRI-landing-15.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/TRI-landing-15.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/TRI-landing-15.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5/dtOR1rTjvbCGxu4VSWWWZAqM8SjYQeucmso9aK6HqcaVtT/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#184c62\",\"#e2e7e8\",\"#0b8fbb\",\"#5ab5d3\",\"#6c8793\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44139,47679,1,'Tritium data sheet two pages_3','2021-09-17 06:25:13','2021-10-05 05:28:07','70daf0bb-69bd-4d65-b944-9dd125573f39',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/TRI-landing-16.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/TRI-landing-16.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/TRI-landing-16.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/TRI-landing-16.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/TRI-landing-16.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/TRI-landing-16.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/TRI-landing-16.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/TRI-landing-16.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/TRI-landing-16.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/TRI-landing-16.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3tAihfQ491umfK++VHPWl1eFF8PXLeXHnyxghBkdKXQf+QDB/wBc/wDGpda/5Fq5/wCuY/pVdSH8J//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e2e4e3\",\"#194759\",\"#7c6259\",\"#d57b47\",\"#548494\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44140,47680,1,'Tritium brand story first four pages','2021-09-17 06:25:16','2021-10-05 05:27:16','179e9735-6713-4b64-a3c1-a2086cbc711c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/TRI-landing-17.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/TRI-landing-17.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/TRI-landing-17.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/TRI-landing-17.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/TRI-landing-17.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/TRI-landing-17.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/TRI-landing-17.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/TRI-landing-17.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/TRI-landing-17.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/TRI-landing-17.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8ApaVosupybEmSP93vy2fUD+tMbTGWxkuXuY12kgIc5bGOn51veDf+Pv8A7dz/AOhCoJP+Rdvf94/+y11Nb/I8+Mm+W/W/4H//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1c4a5d\",\"#d3e6eb\",\"#0796ca\",\"#1db4e4\",\"#30839d\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44141,47681,1,'Tritium brand book six pages','2021-09-17 06:25:18','2021-10-05 04:30:07','9ae37542-0527-41b1-ae62-f05018c8b7d6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/TRI-landing-18.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/TRI-landing-18.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/TRI-landing-18.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/TRI-landing-18.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/TRI-landing-18.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/TRI-landing-18.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/TRI-landing-18.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/TRI-landing-18.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/TRI-landing-18.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/TRI-landing-18.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AXTrR7DSjdvKpju4/LVR1BznJ/Kk1PxJFfRzKIHTfF5a8j1zk1LqH/Ioab/v/ANGrmK6N0cW0n8j/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d8ebf0\",\"#1a4a60\",\"#2bb2d9\",\"#0991c3\",\"#708d95\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44142,47682,1,'Tritium brand story','2021-09-17 06:25:20','2021-10-05 04:29:33','ff196540-88d8-466e-a570-e28c61252942',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x364_crop_center-center_82_line/TRI-landing-19.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x304_crop_center-center_82_line/TRI-landing-19.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x243_crop_center-center_82_line/TRI-landing-19.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x182_crop_center-center_82_line/TRI-landing-19.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x152_crop_center-center_82_line/TRI-landing-19.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x364_crop_center-center_82_line/TRI-landing-19.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x304_crop_center-center_82_line/TRI-landing-19.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x243_crop_center-center_82_line/TRI-landing-19.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x182_crop_center-center_82_line/TRI-landing-19.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x152_crop_center-center_82_line/TRI-landing-19.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":364,\"1280\":304,\"1024\":243,\"768\":182,\"640\":152},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"380\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAAwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A53JIxk4oooroOM//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1a455c\",\"#f4fcfc\",\"#7c8d94\",\"#7c9cac\",\"#2c4c5c\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":364,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44143,47683,1,'Tritium tablet displaying website close-up','2021-09-17 06:25:21','2021-10-05 04:28:44','bc814e0a-fec8-4e0b-92da-501744a04b00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/TRI-landing-20.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/TRI-landing-20.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/TRI-landing-20.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/TRI-landing-20.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/TRI-landing-20.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/TRI-landing-20.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/TRI-landing-20.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/TRI-landing-20.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/TRI-landing-20.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/TRI-landing-20.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1600\",\"originalImageHeight\":\"900\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ar20d1MZ3jsZbmJGCgpnIO0HGAR61BI1yk8Iks5beMn5iwYZODgck88Gun8I/8et1/wBfH/si1R1n/jwi/wCvz/2ma6eeXtbX6nD7KHsL26H/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#118eb9\",\"#cdcccc\",\"#0a191d\",\"#2e4a54\",\"#44d4fc\"],\"lightness\":43,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44144,47684,1,'Tritium','2021-09-17 06:28:19','2021-09-17 06:28:19','acbeb6bc-ce57-4c4d-be95-e87d204edfb6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league. Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GLSN3YDBFD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"22084\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dz4aGfI5jw\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22083\",\"22085\",\"22086\",\"22087\",\"22088\",\"22089\",\"22090\",\"22091\",\"22092\",\"22093\",\"22094\",\"22095\",\"22096\",\"22097\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZeQWeTuQlo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47671\",\"47672\",\"47673\",\"47674\",\"47675\",\"47676\",\"47677\",\"47678\",\"47679\",\"47680\",\"47681\",\"47682\",\"47683\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44146,47686,1,'Domestic and family violence','2021-09-17 07:03:48','2021-09-17 07:03:48','3a392621-9dcf-4a14-b1c0-abe46f967f4e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Everyone deserves to feel safe',NULL,NULL,'We developed a powerful campaign—visuals, messaging and animation—to help Queenslanders understand the nature of domestic and family violence and to seek help for themselves or others.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2BMTwZsxt5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16826\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yW5tY9wyAQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"To help slow the spread of COVID-19, Queenslanders are spending more time at home—but home isn’t always a safe place.\\n\\nEveryone deserves to feel safe. Domestic and family violence is never acceptable. Help and support are available.\\n\\nThis is the campaign message the Queensland Government commissioned us to develop as the impact of COVID-19 rippled across our state.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BAdruYcFgJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16838\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CsRNpWzHen\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We started the project by researching DFV campaigns in Australia and around the world.\\n\\nOur diverse target market included:\\n\\n1. Adult Queenslanders 18+ who are affected by domestic and family violence\\n\\n- People experiencing domestic and family violence\\n- People who become aware of domestic and family violence occurring\\n\\n2. Young Queenslanders 13-17 years old who may be affected by domestic and family violence in their household.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fOoytqzb18\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16839\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-refpZT5QBU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Messaging\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Rather than describe exactly what DFV might look like, the scripts and campaign advertisements echo the thoughts and feelings of those experiencing or observing DFV.\\n\\nThe copy style is concise, informal and written to an individual. DFV is complex and often hard to identify. We unpacked the different dimensions of DFV and always pointed the reader or viewer to help and support.\\n\\nOur messages were targeted to a diverse Queensland audience. We aimed to capture the human experience and emotions of DFV through the voice and style of the copy.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7Bn5w0QSW7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16840\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JtCJdSgzXY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our creative team completed an environmental scan to develop three design concepts with strategic choices in colours, symbols, typography and iconography.\\n\\nThe icons are simple and symbolic. We were careful to avoid using the human figure or gender-specific shapes to symbolise violent or threatening behaviours.\\n\\nInstead, our goal was to capture the far-reaching effect of domestic violence in the home and family through clean and minimal iconography, colours and shapes.\\n\\nWe used brand colours strategically, ensuring they were striking but not aggressive or alarming. Wherever possible, we avoided dark colours and shadows.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NnJbovUwRk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/572805319?h=8a36b70d04&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/572805011?h=d90ee17ccd&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vsjyJmaOWT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Animation\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"When directing the animation style, we wanted to convey the key messages of the campaign clearly and quickly. The morphing animation style is eye-catching and interesting.\\n\\nThe morphing shapes also efficiently unpack important messages to the viewer, complementing and supporting the messages in the video voiceover.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-asjEpeVorj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/572804196\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0Latj6rdpS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Phase 2\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"After the success of our 2020 launch, we rolled out a new iteration in 2021 that focused more on the non-physical forms of domestic and family violence.\\n\\nThis includes behaviour around controlling or monitoring finances, technology and social interactions.\\n\\nOur goal: to raise awareness and understanding of these forms of abuse, and communicate the seriousness of these behaviours.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aCf57wrIYs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/430227569\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Qes33flGQL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Work of this kind speaks straight to our purpose as an agency: to make a meaningful impact to people’s lives. Our team is proud to have been involved supporting families in our local community.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44147,47687,1,'Coomera Anglican College','2021-09-17 07:23:17','2021-09-17 07:23:17','dde46b3c-b029-4548-be61-555ee39d92b8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Anything is Possible',NULL,NULL,'This campaign is bridging the gap between Coomera Anglican College\'s storied past and bold future. It\'s a powerful positioning piece that\'s standing the college out from the crowd and showcasing it as the school of choice on the northern Gold Coast.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-B24Vguyo08\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30448\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-I4OkseByw6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Storied past, bold future\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Coomera Anglican College is heavily storied. It’s done a lot of work to capture its history and moments. As result, there is a lot of heritage and tradition for a relatively young school (just 25 years).\\n\\nThe college has set a strong future of innovation and entrepreneurship. It has appointed a deputy principal whose whole focus is innovation. It also has an exceptionally future-focused business manager who is sports-obsessed with big dreams.\\n\\nOur work is helping the college bridge the gap from the past to an exciting future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3S8xZRT3yd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30447\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1dcAEtVD40\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Following focus groups, in-depth interviews, a competitor analysis and a brand refresh in 2020, we embarked on developing a new public-facing campaign to help the college continue to position itself as the private school of choice for the rapidly growing northern Gold Coast region.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7mko9XHUCj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30449\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-27uMRCFOVx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"In order to stand out in the crowded private school space, we looked outside of schools for inspiration—drawing from global sports and technology brands.\\n\\nThis campaign steers right away from traditional school advertising: think students standing and smiling in their school uniforms, older and younger students holding hands and walking through manicured school grounds, girls in safety glasses huddled over a beaker and Bunsen burner.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EkVYlvmrxM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30444\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ek8exDfZlT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The result is a powerful cinematic masterpiece: dramatic, inspirational and compelling. The script was drawn from lyrics of the college’s traditional song. Paired with the inspiring footage, the video effectively acknowledges the past while painting a vivid picture of the future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IGcqD2p42y\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30445\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CUjY0m7ysa\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“It was a pleasure working with New Word Order to develop the new creative for our College. They took the time to get to know what makes our college unique, and helped put that into tangible storytelling.”\",\"plainText\":\"— Aimee Barlett, Marketing and Communications Manager at Coomera Anglican College\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Ja5zJfaN0T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30446\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wtyTXQ0yRK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/574221746\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44149,47689,1,'Right time, right place','2021-09-17 07:24:50','2021-09-17 07:24:50','af0ca93c-d2f0-4d3b-962d-3e7b67aaa596',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'So much better than a hospital waiting room',NULL,NULL,'Central Queensland, Wide Bay and Sunshine Coast PHN asked us to refresh its campaign strategy, messaging and creative because people were still going to the emergency department with non-life-threatening sickness or injuries. Our solution was to show the people who live in the region—and holidaymakers—that the emergency department isn\'t the only option.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22010\",\"22012\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22011\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44151,47691,1,'What\'s a No. 3?','2021-09-17 07:36:08','2021-09-17 07:36:08','8be3c5eb-2c7d-4144-8af2-c5bd0f2c721e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a No. 3? Anything that shouldn\'t go down the loo.',NULL,NULL,'The playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way. We set out to capture the attention of kids and adults with an innovative and integrated campaign that featured interactive and creative design, animation, illustration, merchandise and video.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19052\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YLmNoEn3SV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Water and waste treatment are essential services and flushing the wrong items down the toilet costs Queensland Urban Utilities $200 million every year.\\n\\nUrban Utilities asked us to think of an original, creative campaign idea that would resonate with Queensland families. Our solution was the No. 3 campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FITIFbeFNO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19053\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lKKKRlcirp\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"So, what\'s a No. 3? It\'s anything that shouldn’t go down the loo. Talking about our toilet habits is never comfortable. To navigate our way around the taboo topic, our creative team used humour to influence the bright, quirky look and feel of the entire campaign.\\n\\nThe playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rwksXdZztM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19054\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-szxmUd2L8D\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Result\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The campaign reached 29,790 people in its first month, and we quickly saw signs of behaviour change. \\n\\nAccording to independent market research, 50% of people will no longer flush wet wipes, 48% of people will no longer flush tampons, 47% will no longer flush condoms and 45% will no longer flush cotton buds as a result of seeing this campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xxFbGAqcFU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19055\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2exJaiRsw5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17248\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FFU7esnnDy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17249\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cUrrp9Mq8e\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19058\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QpOS0cp79X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17251\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-97JqWmRp6Z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/325104551\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44152,47692,1,'Family and Child Connect','2021-09-20 02:12:29','2021-09-20 02:12:29','eb82d06e-e3d2-4d4f-9543-162a087081ac',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'13 Family',NULL,NULL,'Great campaigns help people change their lives, and this one encourages families in crisis to reach out for real help, no strings attached.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-94Wz43ySiO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Family and Child Connect, within the Department of Communities, Child Safety and Disability Services, needed a campaign to build public awareness of the 13 Family support services.\\n\\nTo broach this sensitive issue, we needed to carry out a multi-channelled campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-77KaMezwdw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We tapped into research that showed this target group is made up of good people who really do love their kids, but have found themselves unable to care for them accordingly.\\n\\nBy understanding our client\'s objectives and the context of the target market, we developed a campaign the audience could relate to and, most importantly, felt encouraged to act.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xxGuN9crsA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We developed the campaign microsite, social media assets, print resources, online advertising and outdoor advertising. Using a variety of static executions for retargeting on social media, we set out for a high call-to-action rate for our client. In less than a month, we delivered a full campaign that broke through the social stigma of Queensland families needing support.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hU0rqO1qB1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our client reported the campaign had a total reach just shy of 1 million people, with 116,743 video views during the reporting period. The website had 11,641 visitors at the time—predominantly women aged 25–44, who were squarely in our target group.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44153,47693,1,'Coomera Anglican College \'anything is possible\' collage','2021-09-21 00:59:04','2022-06-27 02:57:01','7cc93b95-f774-48e9-a17f-fa626984f765',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x841_crop_center-center_82_line/21_COOMERA-website-3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1683_crop_center-center_82_line/21_COOMERA-website-3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x701_crop_center-center_82_line/21_COOMERA-website-3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1402_crop_center-center_82_line/21_COOMERA-website-3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x561_crop_center-center_82_line/21_COOMERA-website-3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1122_crop_center-center_82_line/21_COOMERA-website-3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x420_crop_center-center_82_line/21_COOMERA-website-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x350_crop_center-center_82_line/21_COOMERA-website-3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x841_crop_center-center_82_line/21_COOMERA-website-3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1683_crop_center-center_82_line/21_COOMERA-website-3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x701_crop_center-center_82_line/21_COOMERA-website-3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1402_crop_center-center_82_line/21_COOMERA-website-3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x561_crop_center-center_82_line/21_COOMERA-website-3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1122_crop_center-center_82_line/21_COOMERA-website-3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x420_crop_center-center_82_line/21_COOMERA-website-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x350_crop_center-center_82_line/21_COOMERA-website-3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":841,\"3072\":1683,\"1280\":701,\"2560\":1402,\"1024\":561,\"2048\":1122,\"768\":420,\"640\":350},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"16667\",\"originalImageHeight\":\"9133\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A17jauqrEyNn5UwD1z3Az/nFUnnglSXMYIKjGT/8AW69KKKznUkthci0P/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#b4c3c8\",\"#7b7e45\",\"#242a30\",\"#604837\",\"#6b8a99\"],\"lightness\":45,\"placeholderWidth\":1536,\"placeholderHeight\":841,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44155,47695,1,'Coomera Anglican College','2021-09-21 01:01:47','2021-09-21 01:01:47','3b415dcd-c81d-4770-bd86-bcf1aecd3569',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Anything is Possible',NULL,NULL,'This campaign is bridging the gap between Coomera Anglican College\'s storied past and bold future. It\'s a powerful positioning piece that\'s standing the college out from the crowd and showcasing it as the school of choice on the northern Gold Coast.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-B24Vguyo08\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30448\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-I4OkseByw6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Storied past, bold future\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Coomera Anglican College is heavily storied. It’s done a lot of work to capture its history and moments. As result, there is a lot of heritage and tradition for a relatively young school (just 25 years).\\n\\nThe college has set a strong future of innovation and entrepreneurship. It has appointed a deputy principal whose whole focus is innovation. It also has an exceptionally future-focused business manager who is sports-obsessed with big dreams.\\n\\nOur work is helping the college bridge the gap from the past to an exciting future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3S8xZRT3yd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30447\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1dcAEtVD40\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Following focus groups, in-depth interviews, a competitor analysis and a brand refresh in 2020, we embarked on developing a new public-facing campaign to help the college continue to position itself as the private school of choice for the rapidly growing northern Gold Coast region.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7mko9XHUCj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47693\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-27uMRCFOVx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"In order to stand out in the crowded private school space, we looked outside of schools for inspiration—drawing from global sports and technology brands.\\n\\nThis campaign steers right away from traditional school advertising: think students standing and smiling in their school uniforms, older and younger students holding hands and walking through manicured school grounds, girls in safety glasses huddled over a beaker and Bunsen burner.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EkVYlvmrxM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30444\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ek8exDfZlT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The result is a powerful cinematic masterpiece: dramatic, inspirational and compelling. The script was drawn from lyrics of the college’s traditional song. Paired with the inspiring footage, the video effectively acknowledges the past while painting a vivid picture of the future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IGcqD2p42y\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30445\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CUjY0m7ysa\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“It was a pleasure working with New Word Order to develop the new creative for our College. They took the time to get to know what makes our college unique, and helped put that into tangible storytelling.”\",\"plainText\":\"— Aimee Barlett, Marketing and Communications Manager at Coomera Anglican College\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Ja5zJfaN0T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30446\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wtyTXQ0yRK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/574221746\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44157,47697,1,'Tritium logo collage_2','2021-09-21 01:43:34','2021-10-19 11:30:30','6944ad71-ba87-4df1-afd2-72d71d16f867',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Tritium.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Tritium.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Tritium.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Tritium.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Tritium.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Tritium.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Tritium.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Tritium.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Tritium.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Tritium.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Tritium.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Tritium.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Tritium.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Tritium.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Tritium.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Tritium.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7ouwjQt8jHqME9ulK7MI8ryfpUlFAj//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#2b90ae\",\"#f2f9f9\",\"#97c7d3\",\"#818c8e\",\"#889494\"],\"lightness\":64,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44158,47698,1,'Tritium brand guide ten pages_2','2021-09-21 01:43:51','2021-10-20 03:34:21','9c5ccc23-c148-40eb-9cc0-d169967814c7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Tritium2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Tritium2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Tritium2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Tritium2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Tritium2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Tritium2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Tritium2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Tritium2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Tritium2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Tritium2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Tritium2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Tritium2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Tritium2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Tritium2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Tritium2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Tritium2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8As2GhJPpoQwxGeaNJUck/KvGc+9ZN7PZCe6EduoDooi2rgKe/f0q9pn3l/wCuK/yFc7XTc4rH/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1a4d5e\",\"#e0eaed\",\"#0a95c5\",\"#11b1e3\",\"#3385a0\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44159,47699,1,'Tritium logo_2','2021-09-21 01:44:07','2021-10-19 11:26:07','3dcac626-10c7-4908-8db4-a5ae0485e06d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Tritium3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Tritium3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Tritium3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Tritium3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Tritium3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Tritium3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Tritium3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Tritium3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Tritium3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Tritium3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Tritium3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Tritium3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Tritium3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Tritium3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Tritium3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Tritium3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AWQAsAx2gnk+lZeoAAsFO4A8H1rSn6VmXv3a9Wrsz5zDfEj//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#059fd3\",\"#105b71\",\"#d5f7fa\",\"#21d5fb\",\"#047ca4\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44160,47700,1,'Tritium five banners_2','2021-09-21 01:44:24','2021-10-20 03:36:12','45e5aa52-8846-4634-8ef6-66afa1faf332',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x614_crop_center-center_82_line/21_Tritium4.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1228_crop_center-center_82_line/21_Tritium4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x512_crop_center-center_82_line/21_Tritium4.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1024_crop_center-center_82_line/21_Tritium4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x409_crop_center-center_82_line/21_Tritium4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x819_crop_center-center_82_line/21_Tritium4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x307_crop_center-center_82_line/21_Tritium4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x256_crop_center-center_82_line/21_Tritium4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x614_crop_center-center_82_line/21_Tritium4.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1228_crop_center-center_82_line/21_Tritium4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x512_crop_center-center_82_line/21_Tritium4.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1024_crop_center-center_82_line/21_Tritium4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x409_crop_center-center_82_line/21_Tritium4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x819_crop_center-center_82_line/21_Tritium4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x307_crop_center-center_82_line/21_Tritium4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x256_crop_center-center_82_line/21_Tritium4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":614,\"3072\":1228,\"1280\":512,\"2560\":1024,\"1024\":409,\"2048\":819,\"768\":307,\"640\":256},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"4167\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3hFdnTmuTdN56uyqd3QbqzrqK5m1iMmTCC6IIDnkbhRRWy+E5pL3/uP/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#295865\",\"#e8eae7\",\"#159fce\",\"#40c7ec\",\"#bf6544\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":614,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44161,47701,1,'Tritium two postcards_2','2021-09-21 01:44:47','2021-10-05 04:25:45','3cb99902-18bd-4116-8057-e4655195cdab',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/21_Tritium5.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x3072_crop_center-center_82_line/21_Tritium5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/21_Tritium5.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2560_crop_center-center_82_line/21_Tritium5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/21_Tritium5.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2048_crop_center-center_82_line/21_Tritium5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/21_Tritium5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/21_Tritium5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/21_Tritium5.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x3072_crop_center-center_82_line/21_Tritium5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/21_Tritium5.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2560_crop_center-center_82_line/21_Tritium5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/21_Tritium5.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2048_crop_center-center_82_line/21_Tritium5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/21_Tritium5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/21_Tritium5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"3072\":3072,\"1280\":1280,\"2560\":2560,\"1024\":1024,\"2048\":2048,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"10417\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ap6bpkF7ZPLmdpFYDbEm7Gar6tYDTdSltRIZAm35iMZyAen41TRtrZ7ela0K6YlpdGe4hlmaL9yFD5DfioFb+bOTfRH//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1d4d5d\",\"#d7dedc\",\"#3a9bc4\",\"#1e769c\",\"#8ca49c\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44162,47702,1,'Tritium data sheet two pages_2','2021-09-21 01:45:27','2021-10-05 04:25:12','2e31b5a9-7edd-447b-bae5-598e3a725977',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1274_crop_center-center_82_line/21_Tritium6.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2549_crop_center-center_82_line/21_Tritium6.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1062_crop_center-center_82_line/21_Tritium6.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2124_crop_center-center_82_line/21_Tritium6.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x849_crop_center-center_82_line/21_Tritium6.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1699_crop_center-center_82_line/21_Tritium6.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x637_crop_center-center_82_line/21_Tritium6.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x531_crop_center-center_82_line/21_Tritium6.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1274_crop_center-center_82_line/21_Tritium6.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2549_crop_center-center_82_line/21_Tritium6.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1062_crop_center-center_82_line/21_Tritium6.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2124_crop_center-center_82_line/21_Tritium6.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x849_crop_center-center_82_line/21_Tritium6.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1699_crop_center-center_82_line/21_Tritium6.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x637_crop_center-center_82_line/21_Tritium6.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x531_crop_center-center_82_line/21_Tritium6.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1274,\"3072\":2549,\"1280\":1062,\"2560\":2124,\"1024\":849,\"2048\":1699,\"768\":637,\"640\":531},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"8646\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A0NL0DT7vTVnkaUylNxAbgdfai/0Gxg0ma4RJhIiBgWbjNZlp4iu7O1FvFFAVC7cspz/OnXXiS7urJ7V4oAjrtJAOf5108s7nBz0eW1tbH//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e9eae9\",\"#066984\",\"#322b2a\",\"#1da8ce\",\"#60bcd6\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":1274,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44163,47703,1,'Tritium tablet displaying website_3','2021-09-21 01:47:10','2021-10-05 04:24:22','a430a886-cfd4-42ec-a358-24777d58029b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x2703_crop_center-center_82_line/21_Tritium7.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x5406_crop_center-center_82_line/21_Tritium7.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x2252_crop_center-center_82_line/21_Tritium7.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x4505_crop_center-center_82_line/21_Tritium7.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1802_crop_center-center_82_line/21_Tritium7.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x3604_crop_center-center_82_line/21_Tritium7.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x1351_crop_center-center_82_line/21_Tritium7.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x1126_crop_center-center_82_line/21_Tritium7.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x2703_crop_center-center_82_line/21_Tritium7.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x5406_crop_center-center_82_line/21_Tritium7.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x2252_crop_center-center_82_line/21_Tritium7.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x4505_crop_center-center_82_line/21_Tritium7.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1802_crop_center-center_82_line/21_Tritium7.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x3604_crop_center-center_82_line/21_Tritium7.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x1351_crop_center-center_82_line/21_Tritium7.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x1126_crop_center-center_82_line/21_Tritium7.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":2703,\"3072\":5406,\"1280\":2252,\"2560\":4505,\"1024\":1802,\"2048\":3604,\"768\":1351,\"640\":1126},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"18333\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAHAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8ArWtrez/aZYbOS4iWTaCpHB2g4x+P61XlS8juIDNaSwx7sMzAgZKtgH34ziul0a4e0sMwpCd0rFt77ecKB/Kn63HOdOzcWsUA81GUI27na2a6bv2tvM4fd+r3t0MBNQms5GWLgkZBz0q5deIJNTi+zPbpGA2/cDyf85plskBUtJbRyPn7zMwP6EUXKwbQ0dtHG+fvKzE4/EmtOVe1uY879hbyP//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1b89b1\",\"#e1e3e0\",\"#0a1518\",\"#365052\",\"#7ad1e1\"],\"lightness\":46,\"placeholderWidth\":1536,\"placeholderHeight\":2703,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44164,47704,1,'Tritium brand guide ten pages','2021-09-21 03:00:31','2021-10-05 04:23:41','0bd6c7cd-3f8f-4179-bd79-370411bced45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Tritium2_2021-09-21-030031_ksmz.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Tritium2_2021-09-21-030031_ksmz.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Tritium2_2021-09-21-030031_ksmz.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Tritium2_2021-09-21-030031_ksmz.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Tritium2_2021-09-21-030031_ksmz.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Tritium2_2021-09-21-030031_ksmz.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Tritium2_2021-09-21-030031_ksmz.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Tritium2_2021-09-21-030031_ksmz.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Tritium2_2021-09-21-030031_ksmz.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Tritium2_2021-09-21-030031_ksmz.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Tritium2_2021-09-21-030031_ksmz.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Tritium2_2021-09-21-030031_ksmz.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Tritium2_2021-09-21-030031_ksmz.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Tritium2_2021-09-21-030031_ksmz.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Tritium2_2021-09-21-030031_ksmz.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Tritium2_2021-09-21-030031_ksmz.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8As2GhJPpoQwxGeaNJUck/KvGc1k3s9kJ7oR26gOiiLauAp79/Sr2mfeX/AK4r/IVztdNzisf/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1a4d5e\",\"#e0ebed\",\"#0a95c5\",\"#11b1e3\",\"#3586a0\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44165,47705,1,'Tritium five banners','2021-09-21 03:00:53','2021-10-05 04:22:59','b2482f65-67b2-417d-92f0-d659c2046130',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x614_crop_center-center_82_line/21_Tritium4_2021-09-21-030053_ocnu.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1228_crop_center-center_82_line/21_Tritium4_2021-09-21-030053_ocnu.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x512_crop_center-center_82_line/21_Tritium4_2021-09-21-030053_ocnu.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1024_crop_center-center_82_line/21_Tritium4_2021-09-21-030053_ocnu.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x409_crop_center-center_82_line/21_Tritium4_2021-09-21-030053_ocnu.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x819_crop_center-center_82_line/21_Tritium4_2021-09-21-030053_ocnu.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x307_crop_center-center_82_line/21_Tritium4_2021-09-21-030053_ocnu.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x256_crop_center-center_82_line/21_Tritium4_2021-09-21-030053_ocnu.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x614_crop_center-center_82_line/21_Tritium4_2021-09-21-030053_ocnu.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1228_crop_center-center_82_line/21_Tritium4_2021-09-21-030053_ocnu.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x512_crop_center-center_82_line/21_Tritium4_2021-09-21-030053_ocnu.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1024_crop_center-center_82_line/21_Tritium4_2021-09-21-030053_ocnu.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x409_crop_center-center_82_line/21_Tritium4_2021-09-21-030053_ocnu.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x819_crop_center-center_82_line/21_Tritium4_2021-09-21-030053_ocnu.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x307_crop_center-center_82_line/21_Tritium4_2021-09-21-030053_ocnu.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x256_crop_center-center_82_line/21_Tritium4_2021-09-21-030053_ocnu.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":614,\"3072\":1228,\"1280\":512,\"2560\":1024,\"1024\":409,\"2048\":819,\"768\":307,\"640\":256},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"4167\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A3hFdnTmuTdN56uyqd3QbqzrqK5m1iMmTCC6IIDnkbhRRWy+E5pK8/uP/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#295765\",\"#e8e9e7\",\"#149fce\",\"#40c7ec\",\"#be6543\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":614,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44166,47706,1,'Tritium two postcards','2021-09-21 03:01:09','2021-10-05 04:26:03','1c0bae30-43d1-4211-93e8-bf14069a83bd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/21_Tritium5_2021-09-21-030109_zapq.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x3072_crop_center-center_82_line/21_Tritium5_2021-09-21-030109_zapq.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/21_Tritium5_2021-09-21-030109_zapq.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2560_crop_center-center_82_line/21_Tritium5_2021-09-21-030109_zapq.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/21_Tritium5_2021-09-21-030109_zapq.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2048_crop_center-center_82_line/21_Tritium5_2021-09-21-030109_zapq.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/21_Tritium5_2021-09-21-030109_zapq.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/21_Tritium5_2021-09-21-030109_zapq.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/21_Tritium5_2021-09-21-030109_zapq.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x3072_crop_center-center_82_line/21_Tritium5_2021-09-21-030109_zapq.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/21_Tritium5_2021-09-21-030109_zapq.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2560_crop_center-center_82_line/21_Tritium5_2021-09-21-030109_zapq.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/21_Tritium5_2021-09-21-030109_zapq.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2048_crop_center-center_82_line/21_Tritium5_2021-09-21-030109_zapq.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/21_Tritium5_2021-09-21-030109_zapq.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/21_Tritium5_2021-09-21-030109_zapq.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"3072\":3072,\"1280\":1280,\"2560\":2560,\"1024\":1024,\"2048\":2048,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"10417\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAEAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8Ap6bpkF7ZPLmdpFYDbEm7Gar6tYDTdSltRIZAm35iMZyAen41TRtrZ7ela0K6YlpdGe4hlmaL9yFD5DfioFb+bOTfRH//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1d4d5d\",\"#d7dedc\",\"#3a9bc4\",\"#1e769c\",\"#8ca49c\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44167,47707,1,'Tritium','2021-09-21 03:03:40','2021-09-21 03:03:40','b876a69f-0062-4992-8ddf-987e020904f8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league. Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GLSN3YDBFD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"22084\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZeQWeTuQlo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47704\",\"47705\",\"47706\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44168,47708,1,'Tritium logo collage','2021-09-21 03:05:55','2021-10-05 01:55:43','e70eb0a1-515b-4139-aaa6-527edba47f17',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Tritium_2021-09-21-030554_gqpp.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Tritium_2021-09-21-030554_gqpp.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Tritium_2021-09-21-030554_gqpp.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Tritium_2021-09-21-030554_gqpp.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Tritium_2021-09-21-030554_gqpp.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Tritium_2021-09-21-030554_gqpp.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Tritium_2021-09-21-030554_gqpp.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Tritium_2021-09-21-030554_gqpp.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Tritium_2021-09-21-030554_gqpp.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Tritium_2021-09-21-030554_gqpp.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Tritium_2021-09-21-030554_gqpp.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Tritium_2021-09-21-030554_gqpp.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Tritium_2021-09-21-030554_gqpp.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Tritium_2021-09-21-030554_gqpp.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Tritium_2021-09-21-030554_gqpp.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Tritium_2021-09-21-030554_gqpp.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A7ouwjQt8jHqME9ulK7MI8ryfpUlFAj//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#2b90ad\",\"#f2f9f9\",\"#97c8d3\",\"#818c91\",\"#889494\"],\"lightness\":64,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44169,47709,1,'Tritium logo_2','2021-09-21 03:06:10','2021-10-05 01:50:57','8b2b24fb-6f6f-4f79-9991-3dfebf7503d8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Tritium3_2021-09-21-030610_gurv.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Tritium3_2021-09-21-030610_gurv.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Tritium3_2021-09-21-030610_gurv.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Tritium3_2021-09-21-030610_gurv.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Tritium3_2021-09-21-030610_gurv.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Tritium3_2021-09-21-030610_gurv.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Tritium3_2021-09-21-030610_gurv.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Tritium3_2021-09-21-030610_gurv.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Tritium3_2021-09-21-030610_gurv.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Tritium3_2021-09-21-030610_gurv.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Tritium3_2021-09-21-030610_gurv.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Tritium3_2021-09-21-030610_gurv.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Tritium3_2021-09-21-030610_gurv.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Tritium3_2021-09-21-030610_gurv.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Tritium3_2021-09-21-030610_gurv.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Tritium3_2021-09-21-030610_gurv.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AWQAsAx2gnk+lZeoAAsFO4A8H1rSn6VmXv3a9Wrsz5zDfEj//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#059fd3\",\"#105b71\",\"#d4f7fa\",\"#21d5fb\",\"#047ca4\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44170,47710,1,'Tritium data sheet two pages','2021-09-21 03:06:33','2021-10-05 01:50:39','cc63e0da-783f-4670-8bf5-725af246819e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1274_crop_center-center_82_line/21_Tritium6_2021-09-21-030633_jtiz.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2549_crop_center-center_82_line/21_Tritium6_2021-09-21-030633_jtiz.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1062_crop_center-center_82_line/21_Tritium6_2021-09-21-030633_jtiz.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2124_crop_center-center_82_line/21_Tritium6_2021-09-21-030633_jtiz.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x849_crop_center-center_82_line/21_Tritium6_2021-09-21-030633_jtiz.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1699_crop_center-center_82_line/21_Tritium6_2021-09-21-030633_jtiz.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x637_crop_center-center_82_line/21_Tritium6_2021-09-21-030633_jtiz.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x531_crop_center-center_82_line/21_Tritium6_2021-09-21-030633_jtiz.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1274_crop_center-center_82_line/21_Tritium6_2021-09-21-030633_jtiz.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2549_crop_center-center_82_line/21_Tritium6_2021-09-21-030633_jtiz.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1062_crop_center-center_82_line/21_Tritium6_2021-09-21-030633_jtiz.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2124_crop_center-center_82_line/21_Tritium6_2021-09-21-030633_jtiz.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x849_crop_center-center_82_line/21_Tritium6_2021-09-21-030633_jtiz.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1699_crop_center-center_82_line/21_Tritium6_2021-09-21-030633_jtiz.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x637_crop_center-center_82_line/21_Tritium6_2021-09-21-030633_jtiz.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x531_crop_center-center_82_line/21_Tritium6_2021-09-21-030633_jtiz.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1274,\"3072\":2549,\"1280\":1062,\"2560\":2124,\"1024\":849,\"2048\":1699,\"768\":637,\"640\":531},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"8646\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A0NL0DT7vTVnkaUylNxAbgdfai/0Gxg0ma4RJhIiBgWbjNZlp4iu7O1FvFFAVC7cspz/OnXXiS7urJ7V4oAjrtJAOf5108s7nBz0eW1tbH//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e9eae9\",\"#066984\",\"#322b2a\",\"#1da8ce\",\"#60bcd6\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":1274,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44172,47712,1,'Tritium tablet displaying website_2','2021-09-21 03:07:07','2021-10-05 01:50:08','98813e82-114f-4f08-8152-1e887d568203',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x2703_crop_center-center_82_line/21_Tritium7_2021-09-21-030707_pdgr.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x5406_crop_center-center_82_line/21_Tritium7_2021-09-21-030707_pdgr.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x2252_crop_center-center_82_line/21_Tritium7_2021-09-21-030707_pdgr.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x4505_crop_center-center_82_line/21_Tritium7_2021-09-21-030707_pdgr.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1802_crop_center-center_82_line/21_Tritium7_2021-09-21-030707_pdgr.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x3604_crop_center-center_82_line/21_Tritium7_2021-09-21-030707_pdgr.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x1351_crop_center-center_82_line/21_Tritium7_2021-09-21-030707_pdgr.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x1126_crop_center-center_82_line/21_Tritium7_2021-09-21-030707_pdgr.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x2703_crop_center-center_82_line/21_Tritium7_2021-09-21-030707_pdgr.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x5406_crop_center-center_82_line/21_Tritium7_2021-09-21-030707_pdgr.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x2252_crop_center-center_82_line/21_Tritium7_2021-09-21-030707_pdgr.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x4505_crop_center-center_82_line/21_Tritium7_2021-09-21-030707_pdgr.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1802_crop_center-center_82_line/21_Tritium7_2021-09-21-030707_pdgr.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x3604_crop_center-center_82_line/21_Tritium7_2021-09-21-030707_pdgr.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x1351_crop_center-center_82_line/21_Tritium7_2021-09-21-030707_pdgr.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x1126_crop_center-center_82_line/21_Tritium7_2021-09-21-030707_pdgr.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":2703,\"3072\":5406,\"1280\":2252,\"2560\":4505,\"1024\":1802,\"2048\":3604,\"768\":1351,\"640\":1126},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"18333\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAHAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8ArW1rez/aZYbOS4iWTaCpHB2g4x+P61XlS8juIDNaywx7vmZgQMlWwD78ZxXS6PcPaWGYUhO6Vi299vOFA/lT9bjnOnZuLWKAeajKEbdztbNdN37W3mcPu/V726GAmoTWcjLFwSMg56VcuvEEmpxfZnt0jAbfuB5P+c0y2SAqWkto5Hz95mYH9CKLlYNoaO2jjfP3lZicfiTWnKva3Med+wt5H//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1b89b1\",\"#e1e3e0\",\"#0a1518\",\"#365052\",\"#7ad2e1\"],\"lightness\":46,\"placeholderWidth\":1536,\"placeholderHeight\":2703,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44173,47713,1,'Tritium','2021-09-21 03:07:39','2021-09-21 03:07:39','41d1d1f1-cadb-4042-991c-0c43d49ede76',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league. Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GLSN3YDBFD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"22084\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZeQWeTuQlo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47704\",\"47705\",\"47706\",\"47708\",\"47710\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44174,47714,1,'Tritium tablet displaying website','2021-09-21 03:08:47','2021-10-05 01:49:43','d2f6ae8b-3972-4947-b4a6-2d6a2e748192',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x2703_crop_center-center_82_line/21_Tritium7_2021-09-21-030847_tomi.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x5406_crop_center-center_82_line/21_Tritium7_2021-09-21-030847_tomi.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x2252_crop_center-center_82_line/21_Tritium7_2021-09-21-030847_tomi.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x4505_crop_center-center_82_line/21_Tritium7_2021-09-21-030847_tomi.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1802_crop_center-center_82_line/21_Tritium7_2021-09-21-030847_tomi.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x3604_crop_center-center_82_line/21_Tritium7_2021-09-21-030847_tomi.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x1351_crop_center-center_82_line/21_Tritium7_2021-09-21-030847_tomi.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x1126_crop_center-center_82_line/21_Tritium7_2021-09-21-030847_tomi.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x2703_crop_center-center_82_line/21_Tritium7_2021-09-21-030847_tomi.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x5406_crop_center-center_82_line/21_Tritium7_2021-09-21-030847_tomi.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x2252_crop_center-center_82_line/21_Tritium7_2021-09-21-030847_tomi.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x4505_crop_center-center_82_line/21_Tritium7_2021-09-21-030847_tomi.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1802_crop_center-center_82_line/21_Tritium7_2021-09-21-030847_tomi.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x3604_crop_center-center_82_line/21_Tritium7_2021-09-21-030847_tomi.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x1351_crop_center-center_82_line/21_Tritium7_2021-09-21-030847_tomi.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x1126_crop_center-center_82_line/21_Tritium7_2021-09-21-030847_tomi.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":2703,\"3072\":5406,\"1280\":2252,\"2560\":4505,\"1024\":1802,\"2048\":3604,\"768\":1351,\"640\":1126},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"18333\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgAHAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8ArW1rez/aZYbOS4iWTaCpHB2g4x+P61XlS8juIDNaywx7vmZgQMlWwD78ZxXS6PcPaWGYUhO6Vi299vOFA/lT9bjnOnZuLWKAeajKEbdztbNdN37W3mcPu/V726GAmoTWcjLFwSMg56VcuvEEmpxfZnt0jAbfuB5P+c0y2SAqWkto5Hz95mYH9CKLlYNoaO2jjfP3lZicfiTWnKva3Med+wt5H//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1b89b1\",\"#e1e3e0\",\"#0a1518\",\"#365052\",\"#7ad2e1\"],\"lightness\":46,\"placeholderWidth\":1536,\"placeholderHeight\":2703,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44176,47716,1,'Tritium','2021-09-21 03:11:03','2021-09-21 03:11:03','5e090719-c6dc-4367-8418-6c79e95b87f7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league. Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GLSN3YDBFD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"22084\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZeQWeTuQlo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47708\",\"47704\",\"47705\",\"47706\",\"47710\",\"47714\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44178,47718,1,'Safe to See your GP','2021-09-21 03:13:10','2021-09-21 03:13:10','3f23cbd2-ac43-4c99-b393-c134d258415b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'There\'s no reason to put your health on hold',NULL,NULL,'With life beginning to return to normal in Queensland after the height of COVID-19, the Darling Downs and West Moreton  PHN, and Brisbane North PHN wanted to encourage their communities to go back to a normal routine—especially for healthcare.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Lx1YJWY50w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17744\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-emf7fKO95v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Data showed community members were staying at home and not visiting their GP and other health services for regular checkups. \\n\\nTo avoid more serious health and wellbeing problems down the track, the community needed to know it was safe to go back to regular appointments.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bd28dXEaNq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22159\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4a7YEtYm2U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Solution\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We created a fresh campaign called ‘Safe to see your GP’, using friendly animated characters to let people know there is no reason to put their health on hold. \\n\\nThis campaign we developed the campaign strategy, creative, custom illustration, animated video for social media and TV, digital ads, radio ads and landing page.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xsaPgG0g7g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22160\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-S5WWhHCEwb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/440475987\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SJWVzlIztu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We originally developed this campaign for Darling Downs and West Moreton PHN, and Brisbane North PHN requested to run it as well. It\'s a great example of our Primary Health Networks working together to improve the health of all Australians.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MmdBErmbdH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/440475790\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44179,47719,1,'Rural Aid logo','2021-09-21 03:20:30','2021-10-05 01:49:05','6b2776af-8688-4de0-9043-59864807cfff',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x480_crop_center-center_82_line/21_RuralAid-logo3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x960_crop_center-center_82_line/21_RuralAid-logo3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x400_crop_center-center_82_line/21_RuralAid-logo3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x800_crop_center-center_82_line/21_RuralAid-logo3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x320_crop_center-center_82_line/21_RuralAid-logo3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x640_crop_center-center_82_line/21_RuralAid-logo3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x240_crop_center-center_82_line/21_RuralAid-logo3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x200_crop_center-center_82_line/21_RuralAid-logo3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x480_crop_center-center_82_line/21_RuralAid-logo3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x960_crop_center-center_82_line/21_RuralAid-logo3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x400_crop_center-center_82_line/21_RuralAid-logo3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x800_crop_center-center_82_line/21_RuralAid-logo3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x320_crop_center-center_82_line/21_RuralAid-logo3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x640_crop_center-center_82_line/21_RuralAid-logo3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x240_crop_center-center_82_line/21_RuralAid-logo3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x200_crop_center-center_82_line/21_RuralAid-logo3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":480,\"3072\":960,\"1280\":400,\"2560\":800,\"1024\":320,\"2048\":640,\"768\":240,\"640\":200},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"8000\",\"originalImageHeight\":\"2500\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgABQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A711LIVDFc9x2oRSqBSxYgYye9FFAH//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e9ece3\",\"#50524c\",\"#8a9088\",\"#989c92\",\"#8c947c\"],\"lightness\":61,\"placeholderWidth\":1536,\"placeholderHeight\":480,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44181,47721,1,'Rural Aid','2021-09-21 03:20:52','2021-09-21 03:20:52','bd68b453-b61b-4cde-8e20-841bce961ba6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Through drought, flood and fire, Rural Aid is there.',NULL,NULL,'Rural Aid is there for local farmers doing it tough, providing water, fodder and financial and counselling help. \n\nProviding emergency support is the priority, but it was time for Rural Aid to shift its focus to building resilience and sustainability in rural communities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eLK3JgwUaW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47719\",\"22211\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QCEdWG6OxJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The nature of the campaign, featuring real farmers telling their story, was insightful for many staff who might not get the chance to speak with or hear from farmers very often.\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-a1ZSpKzNhg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575770982\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4IaqNatl2X\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The campaign\",\"plainText\":\"Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F9lQRkpJbI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"The campaign\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-h8vXLy3MfI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“The generous donations received from our community of supporters as a result from the campaign has had a very positive impact for the beneficiaries of our fundraising—Aussie farmers.”\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V9u5ejPQKv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575783623\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p6CVgVhKEp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Campaign messaging was two-tired: an EOFY donations appeal and a thank you. Both worked to be targeted at existing donors, or people captured in existing databases or prospecting.\\n\\nTo ensure the greatest value for money for our client, we pooled the majority of our ad spend into digital, working closely with our media partner, Pivotus. We A/B tested the messaging and capture the audience with retargeting strategies.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8P2070zTQ8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"NWO were great to work with and really took an interest in our organisation and what we’re trying to achieve, and this showed through in the quality and the emotion captured in the final production. \\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rhaSMwFESv\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Creative\",\"plainText\":\"We proposed a campaign based on interviews with Australian farmers who had experiences with Rural Aid.\\n\\nIt’s an honest campaign of full of real people, stories and emotions.\\n\\nWith COVID-19 still hanging around, our approach ensured we avoided potential interruptions, travel restrictions and cancellation costs for our client.\\n\\nThe videos are compilations of interviews with various farmers across the spectrum of industries that are framed by a ‘zoom screen’ visual device, which adds layers of authenticity to the personal stories. \\n\\nSimilarly the display banners and static Facebook posts used the zoom imagery and visual devices—all pointing people to the EOFY Rural Aid landing page where viewers could view the full videos and choose to donate.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vJUro6swC6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We proposed a campaign based on interviews with Australian farmers who had experiences with Rural Aid.\\n\\nIt’s an honest campaign of full of real people, stories and emotions.\\n\\nWith COVID-19 still hanging around, our approach ensured we avoided potential interruptions, travel restrictions and cancellation costs for our client.\\n\\nThe videos are compilations of interviews with various farmers across the spectrum of industries that are framed by a ‘zoom screen’ visual device, which adds layers of authenticity to the personal stories. \\n\\nSimilarly the display banners and static Facebook posts used the zoom imagery and visual devices—all pointing people to the EOFY Rural Aid landing page where viewers could view the full videos and choose to donate.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3MV0vWsZV5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"I am very proud to have been a part of this campaign. Even though I was part of the storytelling behind the scenes, I was moved at every stage of the process by how tough these Australians have it on a daily basis, and how candid they were with us about their stories.\",\"plainText\":\"**— Kat Scott, producer**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NURtiGsn81\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":\"\",\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44183,47723,1,'Urban Utilities poster with one U','2021-09-21 03:39:42','2021-10-05 01:48:48','8b664be1-00b9-4b4d-b0ab-c599813b391c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1044_crop_center-center_82_line/21_QUU2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2088_crop_center-center_82_line/21_QUU2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x870_crop_center-center_82_line/21_QUU2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1740_crop_center-center_82_line/21_QUU2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x696_crop_center-center_82_line/21_QUU2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1392_crop_center-center_82_line/21_QUU2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x522_crop_center-center_82_line/21_QUU2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x435_crop_center-center_82_line/21_QUU2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1044_crop_center-center_82_line/21_QUU2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2088_crop_center-center_82_line/21_QUU2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x870_crop_center-center_82_line/21_QUU2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1740_crop_center-center_82_line/21_QUU2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x696_crop_center-center_82_line/21_QUU2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1392_crop_center-center_82_line/21_QUU2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x522_crop_center-center_82_line/21_QUU2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x435_crop_center-center_82_line/21_QUU2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1044,\"3072\":2088,\"1280\":870,\"2560\":1740,\"1024\":696,\"2048\":1392,\"768\":522,\"640\":435},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"7083\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AbfaTFYeXhzJ5h2/PgbenNNsNGW7klEheIJjbgdfz+lb+oKrWrblBx0yKZpI/0MN/ExJJ7muNYqr7DnvqaXP/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#583274\",\"#ccd555\",\"#c9c3d5\",\"#916b5d\",\"#57604b\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":1044,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44184,47724,1,'Urban Utilities plain \'what\'s a no. 3?\' poster','2021-09-21 03:39:53','2021-10-05 01:48:21','680a0f70-9ae0-4d0f-acbd-9f6ebe3ab044',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1044_crop_center-center_82_line/21_QUU.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2088_crop_center-center_82_line/21_QUU.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x870_crop_center-center_82_line/21_QUU.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1740_crop_center-center_82_line/21_QUU.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x696_crop_center-center_82_line/21_QUU.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1392_crop_center-center_82_line/21_QUU.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x522_crop_center-center_82_line/21_QUU.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x435_crop_center-center_82_line/21_QUU.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1044_crop_center-center_82_line/21_QUU.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2088_crop_center-center_82_line/21_QUU.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x870_crop_center-center_82_line/21_QUU.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1740_crop_center-center_82_line/21_QUU.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x696_crop_center-center_82_line/21_QUU.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1392_crop_center-center_82_line/21_QUU.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x522_crop_center-center_82_line/21_QUU.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x435_crop_center-center_82_line/21_QUU.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1044,\"3072\":2088,\"1280\":870,\"2560\":1740,\"1024\":696,\"2048\":1392,\"768\":522,\"640\":435},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"7083\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACgAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AxYkV32sxA9QM1JeRRw3DJC5ZAByagor0La3Nz//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#5c3483\",\"#e2dbbd\",\"#ab87cd\",\"#574442\",\"#a48498\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":1044,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44185,47725,1,'Urban Utilities poster reading: \'what do U do in the loo?\'','2021-09-21 03:40:28','2021-10-05 01:47:44','ece1e41c-29f8-4740-be7a-c32f26e88fc4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1462_crop_center-center_82_line/21_QUU3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2924_crop_center-center_82_line/21_QUU3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1218_crop_center-center_82_line/21_QUU3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2437_crop_center-center_82_line/21_QUU3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x974_crop_center-center_82_line/21_QUU3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1949_crop_center-center_82_line/21_QUU3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x731_crop_center-center_82_line/21_QUU3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x609_crop_center-center_82_line/21_QUU3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1462_crop_center-center_82_line/21_QUU3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2924_crop_center-center_82_line/21_QUU3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1218_crop_center-center_82_line/21_QUU3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2437_crop_center-center_82_line/21_QUU3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x974_crop_center-center_82_line/21_QUU3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1949_crop_center-center_82_line/21_QUU3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x731_crop_center-center_82_line/21_QUU3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x609_crop_center-center_82_line/21_QUU3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1462,\"3072\":2924,\"1280\":1218,\"2560\":2437,\"1024\":974,\"2048\":1949,\"768\":731,\"640\":609},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"9917\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADwAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6HdgMQ2fT2ppdTLED94g8YpIonjkmJIdZGyB6cYqXau4EqOOntXg6Is//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d0d853\",\"#3e2d0b\",\"#be512c\",\"#f2e4c3\",\"#e2d893\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":1462,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44186,47726,1,'Urban Utilities bus ad','2021-09-21 03:44:15','2021-10-05 01:46:51','e872a596-9b63-4f09-8f79-95f7ef776b78',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_QUU4.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_QUU4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_QUU4.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_QUU4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_QUU4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_QUU4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_QUU4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_QUU4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_QUU4.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_QUU4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_QUU4.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_QUU4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_QUU4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_QUU4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_QUU4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_QUU4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8AzJljhkVGQyEYyQwAz+P86vWV5BczD/RcjYB8sgY8HnsO1aKfxVXP/H4PoaUZuDsjSVNShzM//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#736669\",\"#d7a992\",\"#4f95cf\",\"#171314\",\"#97bdd4\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44187,47727,1,'Urban Utilities poster with two U\'s','2021-09-21 03:45:07','2021-10-05 01:46:29','54c55117-42ad-4d47-9132-d79accdf21a5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_QUU6.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_QUU6.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_QUU6.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_QUU6.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_QUU6.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_QUU6.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_QUU6.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_QUU6.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_QUU6.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_QUU6.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_QUU6.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_QUU6.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_QUU6.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_QUU6.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_QUU6.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_QUU6.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A0dc1G+tL/wAm3chXjBQBActn6VLpV9fXN8sc5+QRtvG0Ahs/Stpuq/WgfeaqbVth30P/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#583579\",\"#e1e0e2\",\"#92586c\",\"#a4a94b\",\"#9789a9\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44188,47728,1,'Urban Utilities mobile phone displaying website','2021-09-21 03:45:18','2021-10-05 01:45:25','3fcc781e-18ef-4c54-adf1-38ae6a53d60c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_QUU7.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_QUU7.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_QUU7.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_QUU7.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_QUU7.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_QUU7.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_QUU7.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_QUU7.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_QUU7.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_QUU7.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_QUU7.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_QUU7.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_QUU7.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_QUU7.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_QUU7.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_QUU7.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A6t7u/wD7Snhjtg0SLlGPAbgd8+5qxBNfPIgmtURSW3EPnA7VOP8Aj4NS0Mdz/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#533371\",\"#e2ded9\",\"#b05149\",\"#bfbf4f\",\"#8b868b\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44189,47729,1,'Urban Utilities wall art_2','2021-09-21 03:45:34','2021-10-05 01:43:46','9dc7bf3f-71dc-4f40-85c3-33da391147e0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_QUU8.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_QUU8.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_QUU8.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_QUU8.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_QUU8.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_QUU8.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_QUU8.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_QUU8.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_QUU8.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_QUU8.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_QUU8.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_QUU8.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_QUU8.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_QUU8.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_QUU8.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_QUU8.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgACQAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A5hrS6mlAYyyPj/eNaNppsqWWCjCZ2BKsOe+K2NJ/1r/j/OtX/l5T/cP8xU76lXtof//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c3aa9b\",\"#2f2a28\",\"#7d7067\",\"#989e99\",\"#8f9296\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44190,47730,1,'Urban Utilities collage of posters_2','2021-09-21 03:45:49','2021-10-05 01:43:02','65fbdbed-b65c-4112-848f-0812acaa1f36',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1228_crop_center-center_82_line/21_QUU5.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2457_crop_center-center_82_line/21_QUU5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1023_crop_center-center_82_line/21_QUU5.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2047_crop_center-center_82_line/21_QUU5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x819_crop_center-center_82_line/21_QUU5.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1638_crop_center-center_82_line/21_QUU5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x614_crop_center-center_82_line/21_QUU5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x511_crop_center-center_82_line/21_QUU5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1228_crop_center-center_82_line/21_QUU5.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2457_crop_center-center_82_line/21_QUU5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1023_crop_center-center_82_line/21_QUU5.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2047_crop_center-center_82_line/21_QUU5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x819_crop_center-center_82_line/21_QUU5.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1638_crop_center-center_82_line/21_QUU5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x614_crop_center-center_82_line/21_QUU5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x511_crop_center-center_82_line/21_QUU5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1228,\"3072\":2457,\"1280\":1023,\"2560\":2047,\"1024\":819,\"2048\":1638,\"768\":614,\"640\":511},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"8333\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A0bRjYov26MhmfKY9sD+eKp2FnazDMm9Asfp39Ofxp2rXc8YhKvk7CwyM4PHNTaMSJJCTnIHBAI4Y1zu8I8/RnTe95Pc//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ba5c4b\",\"#54376d\",\"#e4dfe0\",\"#d2d862\",\"#a7a861\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":1228,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44191,47731,1,'What\'s a No. 3?','2021-09-21 03:51:47','2021-09-21 03:51:47','a1c97dcc-d4a4-4700-835f-1a7a73d6b92c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a No. 3? Anything that shouldn\'t go down the loo.',NULL,NULL,'The playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way. We set out to capture the attention of kids and adults with an innovative and integrated campaign that featured interactive and creative design, animation, illustration, merchandise and video.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47724\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YLmNoEn3SV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Water and waste treatment are essential services and flushing the wrong items down the toilet costs Queensland Urban Utilities $200 million every year.\\n\\nUrban Utilities asked us to think of an original, creative campaign idea that would resonate with Queensland families. Our solution was the No. 3 campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FITIFbeFNO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47723\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lKKKRlcirp\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"So, what\'s a No. 3? It\'s anything that shouldn’t go down the loo. Talking about our toilet habits is never comfortable. To navigate our way around the taboo topic, our creative team used humour to influence the bright, quirky look and feel of the entire campaign.\\n\\nThe playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-97JqWmRp6Z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/325104551\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rwksXdZztM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47725\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-szxmUd2L8D\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Result\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The campaign reached 29,790 people in its first month, and we quickly saw signs of behaviour change. \\n\\nAccording to independent market research, 50% of people will no longer flush wet wipes, 48% of people will no longer flush tampons, 47% will no longer flush condoms and 45% will no longer flush cotton buds as a result of seeing this campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xxFbGAqcFU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47726\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2exJaiRsw5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17248\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FFU7esnnDy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47727\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cUrrp9Mq8e\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47728\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QpOS0cp79X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17251\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44193,47733,1,'Urban Utilities collage of posters','2021-09-21 03:54:12','2021-10-05 01:42:39','6863fcbd-1728-4716-a3b0-ee70a18a3ac2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1228_crop_center-center_82_line/21_QUU5_2021-09-21-035412_nlrv.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2457_crop_center-center_82_line/21_QUU5_2021-09-21-035412_nlrv.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1023_crop_center-center_82_line/21_QUU5_2021-09-21-035412_nlrv.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2047_crop_center-center_82_line/21_QUU5_2021-09-21-035412_nlrv.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x819_crop_center-center_82_line/21_QUU5_2021-09-21-035412_nlrv.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1638_crop_center-center_82_line/21_QUU5_2021-09-21-035412_nlrv.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x614_crop_center-center_82_line/21_QUU5_2021-09-21-035412_nlrv.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x511_crop_center-center_82_line/21_QUU5_2021-09-21-035412_nlrv.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1228_crop_center-center_82_line/21_QUU5_2021-09-21-035412_nlrv.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2457_crop_center-center_82_line/21_QUU5_2021-09-21-035412_nlrv.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1023_crop_center-center_82_line/21_QUU5_2021-09-21-035412_nlrv.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2047_crop_center-center_82_line/21_QUU5_2021-09-21-035412_nlrv.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x819_crop_center-center_82_line/21_QUU5_2021-09-21-035412_nlrv.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1638_crop_center-center_82_line/21_QUU5_2021-09-21-035412_nlrv.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x614_crop_center-center_82_line/21_QUU5_2021-09-21-035412_nlrv.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x511_crop_center-center_82_line/21_QUU5_2021-09-21-035412_nlrv.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1228,\"3072\":2457,\"1280\":1023,\"2560\":2047,\"1024\":819,\"2048\":1638,\"768\":614,\"640\":511},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"8333\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD//gA7Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2ODApLCBxdWFsaXR5ID0gNTAK/9sAQwAQCwwODAoQDg0OEhEQExgoGhgWFhgxIyUdKDozPTw5Mzg3QEhcTkBEV0U3OFBtUVdfYmdoZz5NcXlwZHhcZWdj/9sAQwEREhIYFRgvGhovY0I4QmNjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2Nj/8AAEQgADAAQAwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMRAD8A0bRjYov26MhmfKY9sD+eKp2FnazDMm9Asfp39Ofxp2rXc8YhKvk7CwyM4PHNTaMSJJCTnIHBAI4Y1zu8I8/RnTe95Pc//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ba5c4b\",\"#54376d\",\"#e4dfe0\",\"#d2d862\",\"#a7a861\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":1228,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `content` VALUES (44194,47734,1,'Urban Utilities wall art','2021-09-21 03:54:47','2021-10-05 01:22:55','43064d5e-c461-4003-86c0-c283149969a7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_QUU8_2021-09-21-035446_tafi.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_QUU8_2021-09-21-035446_tafi.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_QUU8_2021-09-21-035446_tafi.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_QUU8_2021-09-21-035446_tafi.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_QUU8_2021-09-21-035446_tafi.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_QUU8_2021-09-21-035446_tafi.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_QUU8_2021-09-21-035446_tafi.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_QUU8_2021-09-21-035446_tafi.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_QUU8_2021-09-21-035446_tafi.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_QUU8_2021-09-21-035446_tafi.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_QUU8_2021-09-21-035446_tafi.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_QUU8_2021-09-21-035446_tafi.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_QUU8_2021-09-21-035446_tafi.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_QUU8_2021-09-21-035446_tafi.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_QUU8_2021-09-21-035446_tafi.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_QUU8_2021-09-21-035446_tafi.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABQb/xAAjEAACAAUCBwAAAAAAAAAAAAABAgADBAURE0EhM0RxcrHw/8QAFQEBAQAAAAAAAAAAAAAAAAAAAQL/xAAZEQEBAAMBAAAAAAAAAAAAAAABAAIRMWH/2gAMAwEAAhEDEQA/AJlqOpnTQH1HfHcwTtJGktk1KLBRhNdhlSOO+IgUy3Wo4ezFq5h+3hO0vJPqU8T7EMX/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#332e2b\",\"#bfbeb9\",\"#ca815d\",\"#7b7c7b\",\"#999c94\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44195,47735,1,'What\'s a No. 3?','2021-09-21 03:56:00','2021-09-21 03:56:00','9c01c459-0296-4378-b32f-fff7e1ad2f24',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a No. 3? Anything that shouldn\'t go down the loo.',NULL,NULL,'The playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way. We set out to capture the attention of kids and adults with an innovative and integrated campaign that featured interactive and creative design, animation, illustration, merchandise and video.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47724\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YLmNoEn3SV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Water and waste treatment are essential services and flushing the wrong items down the toilet costs Queensland Urban Utilities $200 million every year.\\n\\nUrban Utilities asked us to think of an original, creative campaign idea that would resonate with Queensland families. Our solution was the No. 3 campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FITIFbeFNO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47723\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lKKKRlcirp\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"So, what\'s a No. 3? It\'s anything that shouldn’t go down the loo. Talking about our toilet habits is never comfortable. To navigate our way around the taboo topic, our creative team used humour to influence the bright, quirky look and feel of the entire campaign.\\n\\nThe playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-97JqWmRp6Z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/325104551\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rwksXdZztM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47725\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-szxmUd2L8D\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Result\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The campaign reached 29,790 people in its first month, and we quickly saw signs of behaviour change. \\n\\nAccording to independent market research, 50% of people will no longer flush wet wipes, 48% of people will no longer flush tampons, 47% will no longer flush condoms and 45% will no longer flush cotton buds as a result of seeing this campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xxFbGAqcFU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47726\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2exJaiRsw5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FFU7esnnDy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47727\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cUrrp9Mq8e\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47728\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QpOS0cp79X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47734\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44196,47736,1,'Citipointe Christian College billboard with surgery image','2021-09-21 04:41:57','2022-06-27 02:57:13','579dc80b-5900-472a-bd69-d5aea2b2dc28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1088_crop_center-center_82_line/21_Citipointe.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2176_crop_center-center_82_line/21_Citipointe.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x906_crop_center-center_82_line/21_Citipointe.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1813_crop_center-center_82_line/21_Citipointe.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x725_crop_center-center_82_line/21_Citipointe.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1450_crop_center-center_82_line/21_Citipointe.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x544_crop_center-center_82_line/21_Citipointe.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x453_crop_center-center_82_line/21_Citipointe.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1088_crop_center-center_82_line/21_Citipointe.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2176_crop_center-center_82_line/21_Citipointe.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x906_crop_center-center_82_line/21_Citipointe.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1813_crop_center-center_82_line/21_Citipointe.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x725_crop_center-center_82_line/21_Citipointe.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1450_crop_center-center_82_line/21_Citipointe.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x544_crop_center-center_82_line/21_Citipointe.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x453_crop_center-center_82_line/21_Citipointe.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1088,\"3072\":2176,\"1280\":906,\"2560\":1813,\"1024\":725,\"2048\":1450,\"768\":544,\"640\":453},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"7379\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAALABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAQMEBf/EAB8QAAICAgIDAQAAAAAAAAAAAAECAwQABRESIVGBkf/EABYBAQEBAAAAAAAAAAAAAAAAAAEAAv/EABgRAQEBAQEAAAAAAAAAAAAAAAEAAjER/9oADAMBAAIRAxEAPwDJ3Gupa6ysDuzO6qw6xAjz9wMryygSqeqguXGrJIQ4VmJaMceBz7xcJB48a6WzLKyvKVdgoALICeB8xtwFiVezqwViCCygA/uVX//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dcdad6\",\"#1e2a29\",\"#716b62\",\"#5da679\",\"#4d7ea5\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":1088,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44198,47738,1,'Citipointe Christian College photography stills before edited into one image','2021-09-21 04:47:08','2022-06-28 01:09:32','1b2a6346-2a5e-41f5-a916-d9f7e7b73699',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x543_crop_center-center_82_line/21_Citipointe2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1086_crop_center-center_82_line/21_Citipointe2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x452_crop_center-center_82_line/21_Citipointe2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x905_crop_center-center_82_line/21_Citipointe2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x362_crop_center-center_82_line/21_Citipointe2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x724_crop_center-center_82_line/21_Citipointe2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x271_crop_center-center_82_line/21_Citipointe2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x226_crop_center-center_82_line/21_Citipointe2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x543_crop_center-center_82_line/21_Citipointe2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1086_crop_center-center_82_line/21_Citipointe2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x452_crop_center-center_82_line/21_Citipointe2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x905_crop_center-center_82_line/21_Citipointe2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x362_crop_center-center_82_line/21_Citipointe2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x724_crop_center-center_82_line/21_Citipointe2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x271_crop_center-center_82_line/21_Citipointe2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x226_crop_center-center_82_line/21_Citipointe2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":543,\"3072\":1086,\"1280\":452,\"2560\":905,\"1024\":362,\"2048\":724,\"768\":271,\"640\":226},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"3683\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAFABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABAb/xAAeEAACAQMFAAAAAAAAAAAAAAABAgMABBESFCExYv/EABUBAQEAAAAAAAAAAAAAAAAAAAID/8QAFREBAQAAAAAAAAAAAAAAAAAAAEH/2gAMAwEAAhEDEQA/AJKCUrZTcE6nC94GKpAKUDZN5qcN/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#23262c\",\"#b8c2c9\",\"#68747f\",\"#6f90ac\",\"#9f8c80\"],\"lightness\":45,\"placeholderWidth\":1536,\"placeholderHeight\":543,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44199,47739,1,'Citipointe Christian College tablets and mobile phones displaying website pages','2021-09-21 04:48:14','2022-06-28 01:10:11','1f48edb4-db8f-4720-bf5a-5231d779eef0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1351_crop_center-center_82_line/21_Citipointe6.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2703_crop_center-center_82_line/21_Citipointe6.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1126_crop_center-center_82_line/21_Citipointe6.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2252_crop_center-center_82_line/21_Citipointe6.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x901_crop_center-center_82_line/21_Citipointe6.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1802_crop_center-center_82_line/21_Citipointe6.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x675_crop_center-center_82_line/21_Citipointe6.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x563_crop_center-center_82_line/21_Citipointe6.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1351_crop_center-center_82_line/21_Citipointe6.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2703_crop_center-center_82_line/21_Citipointe6.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1126_crop_center-center_82_line/21_Citipointe6.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2252_crop_center-center_82_line/21_Citipointe6.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x901_crop_center-center_82_line/21_Citipointe6.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1802_crop_center-center_82_line/21_Citipointe6.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x675_crop_center-center_82_line/21_Citipointe6.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x563_crop_center-center_82_line/21_Citipointe6.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1351,\"3072\":2703,\"1280\":1126,\"2560\":2252,\"1024\":901,\"2048\":1802,\"768\":675,\"640\":563},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"9167\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAOABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAwX/xAAhEAACAgIBBAMAAAAAAAAAAAABAgMEBREABhITMSFhcf/EABYBAQEBAAAAAAAAAAAAAAAAAAABAv/EABkRAAMBAQEAAAAAAAAAAAAAAAABESECMf/aAAwDAQACEQMRAD8Abq27lYs74qM1hYuxdiPet80pNMui9NX8lPn/AAXJZiiRsNMCAfv95XJgVLmXxMly2k8LojLGy7O/kke+TlpPR0qs9GxeLiphJGjQ2QumlHtuTqXBymlp/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#263343\",\"#d2d3d1\",\"#2974aa\",\"#83a6b6\",\"#a47c74\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":1351,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44200,47740,1,'Citipointe Christian College billboard','2021-09-21 04:48:39','2022-06-28 01:09:53','ff60fa40-5668-4a9b-9e01-89110082984d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1088_crop_center-center_82_line/21_Citipointe4.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2176_crop_center-center_82_line/21_Citipointe4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x906_crop_center-center_82_line/21_Citipointe4.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1813_crop_center-center_82_line/21_Citipointe4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x725_crop_center-center_82_line/21_Citipointe4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1450_crop_center-center_82_line/21_Citipointe4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x544_crop_center-center_82_line/21_Citipointe4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x453_crop_center-center_82_line/21_Citipointe4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1088_crop_center-center_82_line/21_Citipointe4.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2176_crop_center-center_82_line/21_Citipointe4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x906_crop_center-center_82_line/21_Citipointe4.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1813_crop_center-center_82_line/21_Citipointe4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x725_crop_center-center_82_line/21_Citipointe4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1450_crop_center-center_82_line/21_Citipointe4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x544_crop_center-center_82_line/21_Citipointe4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x453_crop_center-center_82_line/21_Citipointe4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1088,\"3072\":2176,\"1280\":906,\"2560\":1813,\"1024\":725,\"2048\":1450,\"768\":544,\"640\":453},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"7379\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAALABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAAEDBf/EAB0QAAIBBQEBAAAAAAAAAAAAAAECEQADBAUSIXH/xAAYAQADAQEAAAAAAAAAAAAAAAAAAQIDBP/EABoRAAMBAQEBAAAAAAAAAAAAAAABAhExEiH/2gAMAwEAAhEDEQA/AJZu2y7SKMde5B6BWflbUsOeK9IVtr+xAVuQEgkREVSaXCKmn00OFTKAUQKOyLMr4DuzEqT5JFEpYOqbeH//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#6492a6\",\"#bdc7c7\",\"#14212b\",\"#484944\",\"#9dcfe4\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":1088,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44201,47741,1,'Citipointe Christian College banner ad image collage','2021-09-21 04:48:58','2022-06-28 01:09:41','487b6227-1992-4207-b7e2-74ff018fd989',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1088_crop_center-center_82_line/21_Citipointe3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2176_crop_center-center_82_line/21_Citipointe3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x906_crop_center-center_82_line/21_Citipointe3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1813_crop_center-center_82_line/21_Citipointe3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x725_crop_center-center_82_line/21_Citipointe3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1450_crop_center-center_82_line/21_Citipointe3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x544_crop_center-center_82_line/21_Citipointe3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x453_crop_center-center_82_line/21_Citipointe3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1088_crop_center-center_82_line/21_Citipointe3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2176_crop_center-center_82_line/21_Citipointe3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x906_crop_center-center_82_line/21_Citipointe3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1813_crop_center-center_82_line/21_Citipointe3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x725_crop_center-center_82_line/21_Citipointe3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1450_crop_center-center_82_line/21_Citipointe3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x544_crop_center-center_82_line/21_Citipointe3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x453_crop_center-center_82_line/21_Citipointe3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1088,\"3072\":2176,\"1280\":906,\"2560\":1813,\"1024\":725,\"2048\":1450,\"768\":544,\"640\":453},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"7379\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAALABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQEE/8QAIhAAAQMDBAMBAAAAAAAAAAAAAgEDEQAEIQUSIjETI2GB/8QAFgEBAQEAAAAAAAAAAAAAAAAAAgMA/8QAGxEBAQACAwEAAAAAAAAAAAAAAQACAxEhMUH/2gAMAwEAAhEDEQA/ACWNOdfL1WrZSPEVKMx3WUsc0EXDtGSG32KKQRLhFj5VXYHFI1PZY9OuXmnk2OkkDjPyge1PkjaGVyz4313iAcZ7T97o5Sx8b//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#2a3039\",\"#c6bcb2\",\"#816f66\",\"#4283b6\",\"#83afcd\"],\"lightness\":46,\"placeholderWidth\":1536,\"placeholderHeight\":1088,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44202,47742,1,'Citipointe Christian College bus shelter ad','2021-09-21 04:49:20','2022-06-28 01:10:04','74a344c6-c403-4f7f-a10a-cadea23557d7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1088_crop_center-center_82_line/21_Citipointe5.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2176_crop_center-center_82_line/21_Citipointe5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x906_crop_center-center_82_line/21_Citipointe5.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1813_crop_center-center_82_line/21_Citipointe5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x725_crop_center-center_82_line/21_Citipointe5.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1450_crop_center-center_82_line/21_Citipointe5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x544_crop_center-center_82_line/21_Citipointe5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x453_crop_center-center_82_line/21_Citipointe5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1088_crop_center-center_82_line/21_Citipointe5.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2176_crop_center-center_82_line/21_Citipointe5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x906_crop_center-center_82_line/21_Citipointe5.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1813_crop_center-center_82_line/21_Citipointe5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x725_crop_center-center_82_line/21_Citipointe5.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1450_crop_center-center_82_line/21_Citipointe5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x544_crop_center-center_82_line/21_Citipointe5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x453_crop_center-center_82_line/21_Citipointe5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1088,\"3072\":2176,\"1280\":906,\"2560\":1813,\"1024\":725,\"2048\":1450,\"768\":544,\"640\":453},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"7379\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAALABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABQb/xAAgEAACAAUFAQAAAAAAAAAAAAABEQACAwQFEhMhIjFR/8QAFgEBAQEAAAAAAAAAAAAAAAAAAgED/8QAGREAAwEBAQAAAAAAAAAAAAAAAAECESEx/9oADAMBAAIRAxEAPwCeAsTePXNtED0JFQJlrjFT0Yt6WN2+lSfUQxM2vkG430nCcqAPyNiCePAktuvHLgFP/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#36352b\",\"#c4bda6\",\"#857962\",\"#8fa595\",\"#4e7fac\"],\"lightness\":45,\"placeholderWidth\":1536,\"placeholderHeight\":1088,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44203,47743,1,'I can','2021-09-21 04:50:15','2021-09-21 04:50:15','bc051ab7-0936-4913-9804-05a16fc9e993',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Strategy, brand and enrolments campaign',NULL,NULL,'Our campaign was based around the concept of ‘I can’, which responded to market research with parents and focused on the outcomes for students.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p51LYEpT5O\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47736\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iYNrrlmMZA\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We’ve been working with Citipointe Christian College for a number of years, having first helped them define their brand and distinctives, and then campaigned the brand to great success and high enrolments and waiting lists.\\n\\nWe then faced a new challenge: getting parents to commit for the long haul.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Y6fbAAGpQK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47738\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KQMovznY0B\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We conducted in-depth interviews and asked parents: What would win you back? From their answers, we developed fresh new creative and messaging directly linked to parents’ aspirations for their children.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3Nuc4KqR6i\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47741\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UCCnWZFQHi\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The brand is now visually distinguishing from the competition by moving away from the usual depictions of happy children in school uniforms to a stronger conceptual approach that places students within the real-world situations the school is preparing them to reach.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rcnsOQ5GI8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47740\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V3kt5nqhg3\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Results\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"This campaign is unlike anything else in the school market. It’s a powerful differentiator that’s continuing high levels of interest in the target market and enrolments and tour attendance are still growing.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jZNg6COExC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47742\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wchbDpZwnc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47739\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44205,47745,1,'Brisbane North PHN photography still of child with tablet displaying the PHN\'s website_2','2021-09-21 05:08:29','2022-06-27 01:39:48','fcc0d41c-bcd5-4dc6-a93b-fdf0b0c8ae7a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x860_crop_center-center_82_line/21_BNPHN-Website.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1720_crop_center-center_82_line/21_BNPHN-Website.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x716_crop_center-center_82_line/21_BNPHN-Website.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1433_crop_center-center_82_line/21_BNPHN-Website.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x573_crop_center-center_82_line/21_BNPHN-Website.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1146_crop_center-center_82_line/21_BNPHN-Website.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x430_crop_center-center_82_line/21_BNPHN-Website.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x358_crop_center-center_82_line/21_BNPHN-Website.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x860_crop_center-center_82_line/21_BNPHN-Website.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1720_crop_center-center_82_line/21_BNPHN-Website.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x716_crop_center-center_82_line/21_BNPHN-Website.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1433_crop_center-center_82_line/21_BNPHN-Website.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x573_crop_center-center_82_line/21_BNPHN-Website.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1146_crop_center-center_82_line/21_BNPHN-Website.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x430_crop_center-center_82_line/21_BNPHN-Website.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x358_crop_center-center_82_line/21_BNPHN-Website.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":860,\"3072\":1720,\"1280\":716,\"2560\":1433,\"1024\":573,\"2048\":1146,\"768\":430,\"640\":358},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"5833\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAIABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAgb/xAAfEAACAQQCAwAAAAAAAAAAAAABAgMABBFhEhMhIlH/xAAVAQEBAAAAAAAAAAAAAAAAAAACAf/EABcRAQADAAAAAAAAAAAAAAAAAAAhIkH/2gAMAwEAAhEDEQA/AFHaW0pHcyo8inJb2wNbNKAtiZvVSCQxLGQnngxGCfh3UN//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#3d4043\",\"#d2d6d9\",\"#838586\",\"#66b8be\",\"#859fb1\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":860,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44206,47746,1,'Brisbane North PHN tablet displaying website','2021-09-21 05:09:02','2022-06-27 01:39:58','3192f438-f1ec-48cf-aa89-77804d206949',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x2518_crop_center-center_82_line/21_BNPHN-Website2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x5037_crop_center-center_82_line/21_BNPHN-Website2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x2099_crop_center-center_82_line/21_BNPHN-Website2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x4198_crop_center-center_82_line/21_BNPHN-Website2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1679_crop_center-center_82_line/21_BNPHN-Website2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x3358_crop_center-center_82_line/21_BNPHN-Website2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x1259_crop_center-center_82_line/21_BNPHN-Website2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x1049_crop_center-center_82_line/21_BNPHN-Website2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x2518_crop_center-center_82_line/21_BNPHN-Website2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x5037_crop_center-center_82_line/21_BNPHN-Website2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x2099_crop_center-center_82_line/21_BNPHN-Website2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x4198_crop_center-center_82_line/21_BNPHN-Website2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1679_crop_center-center_82_line/21_BNPHN-Website2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x3358_crop_center-center_82_line/21_BNPHN-Website2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x1259_crop_center-center_82_line/21_BNPHN-Website2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x1049_crop_center-center_82_line/21_BNPHN-Website2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":2518,\"3072\":5037,\"1280\":2099,\"2560\":4198,\"1024\":1679,\"2048\":3358,\"768\":1259,\"640\":1049},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"17083\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAaABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQAB/8QAJxAAAgIBAwIGAwEAAAAAAAAAAQIDBBEABRIGIRMiUZGh0TFBgbH/xAAXAQEBAQEAAAAAAAAAAAAAAAAAAQID/8QAGBEBAQEBAQAAAAAAAAAAAAAAAQACESH/2gAMAwEAAhEDEQA/AFdwm3h9zuCp4rxRuFUK2APKD6j1+dU5R7ZQm3lN2prbWVIJHKtyckHyk4/J9NSTN+qAxeKGR2clm4Sce+AM+wGpztoeW0qaCQM8MoMZDK0knLvgj/CffQpDdTdT2Nn3Ja8UMTr4YfLE/sn611zkT2560jXTHU9jeNwarLBGiiMvyUnPYj701kDyY0rOXadWxNynrQytjGXQE/OsDbQqlTq15i8FaGJsYyiAHH80WAX/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e9e7e6\",\"#132939\",\"#736c65\",\"#94a6a3\",\"#4c8bbc\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":2518,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44207,47747,1,'Brisbane North PHN website','2021-09-21 05:10:16','2021-09-21 05:10:16','5abc2fa2-2dc5-4617-b630-8aa3a52ff493',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Better access, better health',NULL,NULL,'The PHN’s website is where the ‘better access, better health’ vision comes to life and starts important conversations. This was an opportunity to innovate, collaborate and leverage the PHN\'s work through a powerful digital solution. With a clean design, intuitive user journeys and plain English content, this site is transforming the digital experience for stakeholders within and outside the PHN.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yXpuBl6k0n\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47745\",\"47746\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44209,47749,1,'Brisbane South PHN Aged Care Navigator shopping banners_2','2021-09-21 05:38:54','2022-06-27 01:40:07','d051483a-afd0-4ed3-a8ac-08def99dc4f8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x860_crop_center-center_82_line/21_BSPHN-Aged-care-navigator.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1720_crop_center-center_82_line/21_BSPHN-Aged-care-navigator.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x716_crop_center-center_82_line/21_BSPHN-Aged-care-navigator.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1433_crop_center-center_82_line/21_BSPHN-Aged-care-navigator.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x573_crop_center-center_82_line/21_BSPHN-Aged-care-navigator.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1146_crop_center-center_82_line/21_BSPHN-Aged-care-navigator.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x430_crop_center-center_82_line/21_BSPHN-Aged-care-navigator.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x358_crop_center-center_82_line/21_BSPHN-Aged-care-navigator.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x860_crop_center-center_82_line/21_BSPHN-Aged-care-navigator.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1720_crop_center-center_82_line/21_BSPHN-Aged-care-navigator.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x716_crop_center-center_82_line/21_BSPHN-Aged-care-navigator.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1433_crop_center-center_82_line/21_BSPHN-Aged-care-navigator.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x573_crop_center-center_82_line/21_BSPHN-Aged-care-navigator.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1146_crop_center-center_82_line/21_BSPHN-Aged-care-navigator.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x430_crop_center-center_82_line/21_BSPHN-Aged-care-navigator.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x358_crop_center-center_82_line/21_BSPHN-Aged-care-navigator.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":860,\"3072\":1720,\"1280\":716,\"2560\":1433,\"1024\":573,\"2048\":1146,\"768\":430,\"640\":358},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"5833\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAIABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAAIE/8QAHRAAAwACAgMAAAAAAAAAAAAAAQIDABEhUQQFFf/EABQBAQAAAAAAAAAAAAAAAAAAAAL/xAAVEQEBAAAAAAAAAAAAAAAAAAAAEf/aAAwDAQACEQMRAD8A3u8fsiMq+OGDElW0SeOt5NDA+6E5WitFYkoSDvjre8YwQn//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c8bfb6\",\"#24221d\",\"#767164\",\"#5d4e48\",\"#86963f\"],\"lightness\":44,\"placeholderWidth\":1536,\"placeholderHeight\":860,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44210,47750,1,'Brisbane South PHN Aged Care Navigator mobile phones displaying social media ads','2021-09-21 05:39:22','2022-06-27 01:40:13','b1b3f50e-4c38-4429-8f04-b63b4e53de7d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x614_crop_center-center_82_line/21_BSPHN-Aged-care-navigator2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1228_crop_center-center_82_line/21_BSPHN-Aged-care-navigator2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x512_crop_center-center_82_line/21_BSPHN-Aged-care-navigator2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1024_crop_center-center_82_line/21_BSPHN-Aged-care-navigator2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x409_crop_center-center_82_line/21_BSPHN-Aged-care-navigator2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x819_crop_center-center_82_line/21_BSPHN-Aged-care-navigator2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x307_crop_center-center_82_line/21_BSPHN-Aged-care-navigator2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x256_crop_center-center_82_line/21_BSPHN-Aged-care-navigator2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x614_crop_center-center_82_line/21_BSPHN-Aged-care-navigator2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1228_crop_center-center_82_line/21_BSPHN-Aged-care-navigator2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x512_crop_center-center_82_line/21_BSPHN-Aged-care-navigator2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1024_crop_center-center_82_line/21_BSPHN-Aged-care-navigator2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x409_crop_center-center_82_line/21_BSPHN-Aged-care-navigator2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x819_crop_center-center_82_line/21_BSPHN-Aged-care-navigator2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x307_crop_center-center_82_line/21_BSPHN-Aged-care-navigator2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x256_crop_center-center_82_line/21_BSPHN-Aged-care-navigator2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":614,\"3072\":1228,\"1280\":512,\"2560\":1024,\"1024\":409,\"2048\":819,\"768\":307,\"640\":256},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"4167\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAGABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAQb/xAAeEAABBAIDAQAAAAAAAAAAAAABAgQREgAxAxMUM//EABUBAQEAAAAAAAAAAAAAAAAAAAAB/8QAFxEBAQEBAAAAAAAAAAAAAAAAAREAIf/aAAwDAQACEQMRAD8AsvO6JlDwoFpjrByTuZTwOjNXdRafmNTrAN1Ukm//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dad7d4\",\"#44505a\",\"#ad883c\",\"#7f3b3d\",\"#809495\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":614,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44211,47751,1,'Brisbane South PHN Aged Care Navigator shopping banners','2021-09-21 05:39:41','2022-06-27 01:40:18','f4f841f5-67e1-43fd-b4a1-a1bbf96ce5b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x860_crop_center-center_82_line/21_BSPHN-Aged-care-navigator3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1720_crop_center-center_82_line/21_BSPHN-Aged-care-navigator3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x716_crop_center-center_82_line/21_BSPHN-Aged-care-navigator3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1433_crop_center-center_82_line/21_BSPHN-Aged-care-navigator3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x573_crop_center-center_82_line/21_BSPHN-Aged-care-navigator3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1146_crop_center-center_82_line/21_BSPHN-Aged-care-navigator3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x430_crop_center-center_82_line/21_BSPHN-Aged-care-navigator3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x358_crop_center-center_82_line/21_BSPHN-Aged-care-navigator3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x860_crop_center-center_82_line/21_BSPHN-Aged-care-navigator3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1720_crop_center-center_82_line/21_BSPHN-Aged-care-navigator3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x716_crop_center-center_82_line/21_BSPHN-Aged-care-navigator3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1433_crop_center-center_82_line/21_BSPHN-Aged-care-navigator3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x573_crop_center-center_82_line/21_BSPHN-Aged-care-navigator3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1146_crop_center-center_82_line/21_BSPHN-Aged-care-navigator3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x430_crop_center-center_82_line/21_BSPHN-Aged-care-navigator3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x358_crop_center-center_82_line/21_BSPHN-Aged-care-navigator3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":860,\"3072\":1720,\"1280\":716,\"2560\":1433,\"1024\":573,\"2048\":1146,\"768\":430,\"640\":358},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"5833\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAIABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAAMF/8QAIRAAAQQBAwUAAAAAAAAAAAAAEQABAgMxBBIhBRMUFVH/xAAUAQEAAAAAAAAAAAAAAAAAAAAC/8QAFhEBAQEAAAAAAAAAAAAAAAAAABES/9oADAMBAAIRAxEAPwDQlOhusyqrto3k7JOxbg4JVJX6X2UtPX4/dPBdj9xlEQydf//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d1c7c2\",\"#2b2827\",\"#8d796a\",\"#de7c33\",\"#6f412a\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":860,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44212,47752,1,'Brisbane South PHN tablet displaying Aged Care Navigator website','2021-09-21 05:41:25','2022-06-27 01:40:24','4846e731-ed47-4873-96fb-84ac33a035e5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1474_crop_center-center_82_line/21_BSPHN-Aged-care-navigator4.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2949_crop_center-center_82_line/21_BSPHN-Aged-care-navigator4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1228_crop_center-center_82_line/21_BSPHN-Aged-care-navigator4.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2457_crop_center-center_82_line/21_BSPHN-Aged-care-navigator4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x983_crop_center-center_82_line/21_BSPHN-Aged-care-navigator4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1966_crop_center-center_82_line/21_BSPHN-Aged-care-navigator4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x737_crop_center-center_82_line/21_BSPHN-Aged-care-navigator4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x614_crop_center-center_82_line/21_BSPHN-Aged-care-navigator4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1474_crop_center-center_82_line/21_BSPHN-Aged-care-navigator4.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2949_crop_center-center_82_line/21_BSPHN-Aged-care-navigator4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1228_crop_center-center_82_line/21_BSPHN-Aged-care-navigator4.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2457_crop_center-center_82_line/21_BSPHN-Aged-care-navigator4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x983_crop_center-center_82_line/21_BSPHN-Aged-care-navigator4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1966_crop_center-center_82_line/21_BSPHN-Aged-care-navigator4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x737_crop_center-center_82_line/21_BSPHN-Aged-care-navigator4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x614_crop_center-center_82_line/21_BSPHN-Aged-care-navigator4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1474,\"3072\":2949,\"1280\":1228,\"2560\":2457,\"1024\":983,\"2048\":1966,\"768\":737,\"640\":614},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"10000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAPABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAAMEBv/EACEQAAICAQQCAwAAAAAAAAAAAAECAwQRAAUSIRNBFDFR/8QAGAEAAgMAAAAAAAAAAAAAAAAAAQIAAwT/xAAbEQACAgMBAAAAAAAAAAAAAAAAAQMRAiJBMv/aAAwDAQACEQMRAD8A1G7CfnIYIWkfioU4BA+9B2FV0VsjWfOsdio8fBCPMcAP2PWorC64X3kuNKprOoTHYJ96rkUj8MToUY7iO3ypFZcdY/dLFjKnuzRK4mtEf//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d6d1ca\",\"#1a1310\",\"#d88d29\",\"#8a8850\",\"#684539\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":1474,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44213,47753,1,'Brisbane South PHN','2021-09-21 05:42:17','2021-09-21 05:42:17','1c10ef2f-2a58-4098-b6db-ef3c2edbb74f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Aged Care Navigator',NULL,NULL,'We helped Brisbane South PHN to encourage older people to sign up to My Aged Care, so affordable, practical support is ready for them when they need it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oNzYQDCB0J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47749\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JuROxoLizt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Authentic community engagement\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We ran focus groups with people within the target market—in Redlands and Logan—and learned their perceptions of aged care, the challenges with navigating services and levels of participation in My Aged Care.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gGzYlN4TtN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47750\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VOx7qvXe9V\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We developed a campaign strategy and creative to encourage people in the target groups to attend an information session.\\n\\nA key element to our campaign strategy was targeting the \'influencer\' group: children who often help their elderly parents to find the right support and make decisions. Influencers spend a lot of time using digital media, particularly Facebook, so this formed a large part of the campaign collateral we developed.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3VEF0Vw8lC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47751\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VfrmLMDvpV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47752\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44215,47755,1,'Pivotus logo','2021-09-21 05:58:46','2021-10-05 01:01:29','ea970bef-a2fb-42a8-9f9a-c6350dc3cb3c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x552_crop_center-center_82_line/21_Pivotus.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1105_crop_center-center_82_line/21_Pivotus.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x460_crop_center-center_82_line/21_Pivotus.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x921_crop_center-center_82_line/21_Pivotus.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x368_crop_center-center_82_line/21_Pivotus.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x737_crop_center-center_82_line/21_Pivotus.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x276_crop_center-center_82_line/21_Pivotus.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x230_crop_center-center_82_line/21_Pivotus.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x552_crop_center-center_82_line/21_Pivotus.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1105_crop_center-center_82_line/21_Pivotus.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x460_crop_center-center_82_line/21_Pivotus.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x921_crop_center-center_82_line/21_Pivotus.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x368_crop_center-center_82_line/21_Pivotus.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x737_crop_center-center_82_line/21_Pivotus.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x276_crop_center-center_82_line/21_Pivotus.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x230_crop_center-center_82_line/21_Pivotus.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":552,\"3072\":1105,\"1280\":460,\"2560\":921,\"1024\":368,\"2048\":737,\"768\":276,\"640\":230},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"3750\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAFABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAAb/xAAbEAEAAgMBAQAAAAAAAAAAAAACAQQABRExA//EABYBAQEBAAAAAAAAAAAAAAAAAAEAAv/EABcRAQEBAQAAAAAAAAAAAAAAAAEAEQL/2gAMAwEAAhEDEQA/ALDcXFSr/NiOynB95muTYXJp7iu122eSXJ97gmUO3//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#233f5d\",\"#edf1f1\",\"#9fb5c3\",\"#8191ac\",\"#b47c4c\"],\"lightness\":58,\"placeholderWidth\":1536,\"placeholderHeight\":552,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44216,47756,1,'Pivotus brochure cover and four inside pages_2','2021-09-21 05:59:12','2021-10-05 01:00:53','dd5f650e-a65f-46ac-bca0-3072711e997a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1105_crop_center-center_82_line/21_Pivotus3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2211_crop_center-center_82_line/21_Pivotus3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x921_crop_center-center_82_line/21_Pivotus3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1843_crop_center-center_82_line/21_Pivotus3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x737_crop_center-center_82_line/21_Pivotus3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1474_crop_center-center_82_line/21_Pivotus3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x552_crop_center-center_82_line/21_Pivotus3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x460_crop_center-center_82_line/21_Pivotus3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1105_crop_center-center_82_line/21_Pivotus3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2211_crop_center-center_82_line/21_Pivotus3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x921_crop_center-center_82_line/21_Pivotus3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1843_crop_center-center_82_line/21_Pivotus3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x737_crop_center-center_82_line/21_Pivotus3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1474_crop_center-center_82_line/21_Pivotus3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x552_crop_center-center_82_line/21_Pivotus3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x460_crop_center-center_82_line/21_Pivotus3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1105,\"3072\":2211,\"1280\":921,\"2560\":1843,\"1024\":737,\"2048\":1474,\"768\":552,\"640\":460},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"7500\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAALABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAAF/8QAIRAAAQQDAAEFAAAAAAAAAAAAAQIDBBEABRJRExQhMUH/xAAWAQEBAQAAAAAAAAAAAAAAAAADAgD/xAAeEQACAgICAwAAAAAAAAAAAAABAgARAyEEQRIiMf/aAAwDAQACEQMRAD8AdJ2OyRuCEPu+gJBTyACKBzJtiJdVjua0vaCDMjofecIeNpHP54+MqwFJPUAKxYUfsosRh2Spa2wpVlV2fvziOoXYk43YjxJ1A37naNF8Jc4XSekg1hjYMbj+ysT1P//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#94adc3\",\"#24374d\",\"#704b55\",\"#bc7d51\",\"#efeae8\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":1105,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44217,47757,1,'Pivotus powerpoint presentation template_2','2021-09-21 05:59:27','2021-10-05 01:00:30','1647fde3-6446-4149-9996-3d7c3f880869',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Pivotus4.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Pivotus4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Pivotus4.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Pivotus4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Pivotus4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Pivotus4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Pivotus4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Pivotus4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Pivotus4.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Pivotus4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Pivotus4.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Pivotus4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Pivotus4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Pivotus4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Pivotus4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Pivotus4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABAX/xAAhEAABBAEDBQAAAAAAAAAAAAACAAEDBCEREhUjMTNRYf/EABcBAQEBAQAAAAAAAAAAAAAAAAIAAQP/xAAYEQEBAQEBAAAAAAAAAAAAAAAAAQIREv/aAAwDAQACEQMRAD8Au8hekszVKhABNrsI21bHvC0vNmenVeWFoBszQkW7qOI4dvmErcuUmul0/EgZDd1J/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d9dadd\",\"#2a4a63\",\"#9c5f88\",\"#925955\",\"#82a9c1\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44218,47758,1,'Pivotus collage of tablets displaying website and background design_2','2021-09-21 05:59:39','2021-10-05 00:59:48','3c5a1ab0-23ce-4f2f-8b73-7dc02d011d1e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1658_crop_center-center_82_line/21_Pivotus5.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x3317_crop_center-center_82_line/21_Pivotus5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1382_crop_center-center_82_line/21_Pivotus5.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2764_crop_center-center_82_line/21_Pivotus5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1105_crop_center-center_82_line/21_Pivotus5.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2211_crop_center-center_82_line/21_Pivotus5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x829_crop_center-center_82_line/21_Pivotus5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x691_crop_center-center_82_line/21_Pivotus5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1658_crop_center-center_82_line/21_Pivotus5.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x3317_crop_center-center_82_line/21_Pivotus5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1382_crop_center-center_82_line/21_Pivotus5.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2764_crop_center-center_82_line/21_Pivotus5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1105_crop_center-center_82_line/21_Pivotus5.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2211_crop_center-center_82_line/21_Pivotus5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x829_crop_center-center_82_line/21_Pivotus5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x691_crop_center-center_82_line/21_Pivotus5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1658,\"3072\":3317,\"1280\":1382,\"2560\":2764,\"1024\":1105,\"2048\":2211,\"768\":829,\"640\":691},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"11250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAARABADAREAAhEBAxEB/8QAGAAAAgMAAAAAAAAAAAAAAAAAAAUDBAb/xAAkEAABAwMDBAMAAAAAAAAAAAABAgMEAAURBhIxEyEjQVJhgf/EABYBAQEBAAAAAAAAAAAAAAAAAAEAAv/EAB0RAAEEAgMAAAAAAAAAAAAAAAABAhExIXEyQWH/2gAMAwEAAhEDEQA/ANdNnrDLiYqCpzaQkj5eqnIqUDFR0+CeJJ1CbvFS+24IqsdTxjA591rEC7lii3qN26xkx02doEd94CQccY5/akjszVE1jduT7KzPb2ELGAoDJH1ijY6G6qBBNRH/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d2d3db\",\"#182639\",\"#6e493f\",\"#b0794b\",\"#65a092\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":1658,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44219,47759,1,'Pivotus brochure four design pages_2','2021-09-21 06:00:00','2021-10-05 00:59:07','404bf4b0-d62e-45b8-9e34-5a1bbdf70be9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Pivotus6.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Pivotus6.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Pivotus6.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Pivotus6.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Pivotus6.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Pivotus6.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Pivotus6.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Pivotus6.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Pivotus6.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Pivotus6.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Pivotus6.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Pivotus6.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Pivotus6.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Pivotus6.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Pivotus6.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Pivotus6.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQME/8QAHhAAAgICAgMAAAAAAAAAAAAAAQIDBAAFERITITP/xAAVAQEBAAAAAAAAAAAAAAAAAAAAAv/EABoRAQEAAgMAAAAAAAAAAAAAAAEAESECEjH/2gAMAwEAAhEDEQA/AN9ndbiranjhgV4VfiM+MkkZYcWl7G2Rr7i7JarxtXKrI/ViUI495Aay1I515L0/jiV8S//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d5d4d5\",\"#1c3856\",\"#70556a\",\"#719096\",\"#b98159\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44220,47760,1,'Pivotus','2021-09-21 06:01:18','2021-09-21 06:01:18','fc26f8e0-60c1-403c-9361-f0cbc92a1b58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a pivot?',NULL,NULL,'After rapid growth in recent years, My Media Trading Desk (MMTD) hit the pause button and engaged NWO to ask many of their valued clients: What do you really think of MMTD? Their clients’ generous answers both delighted MMTD and offered a mandate to change and grow. Pivotus is their response.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NhnaCQNxpw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47755\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MJZcxjyvrL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VAi2VWt2lS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vDLs1ulAlz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-B78dz1rmC2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"But what do your clients really think?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"NWO began the rebranding process by surveying MMTD’s clients. Commonly held by all of their clients was great regard for their honesty, their industry knowledge, and their unbreakable commitment to exceptional customer service.\\n\\nClients also said they wanted to get deeper insights, beyond the fast and accurate data and delivery MMTD were already known for.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VLVB6hcgiC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47756\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ulVnymquUW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Why Pivotus?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"MMTD needed a new brand to drive their reputation for quality data, strategic advice and superior customer experiences.\\n\\nThe brand needed to convey a clear promise: we’ll rapidly measure and pivot to maximise your media spend returns.\\n\\nTo pivot is to turn on a point—and there’s no better metaphor for how they pivot digital media to get the best possible results for their clients.\\n\\nPivotus is also a call to action: Pivot your brand with their team—because they are nimble, fast and focused in a rapidly changing market.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-w74pYr8Ehf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Founder and CEO Michael Petersen said the new brand better reflects market expectations of their firm and his team’s commitment to a superior customer experience.\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44221,47761,1,'Pivotus powerpoint presentation template','2021-09-21 06:01:51','2021-10-05 00:58:42','5f97db9a-042e-4ee0-be30-d64b9cabac61',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Pivotus4_2021-09-21-060151_gauz.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Pivotus4_2021-09-21-060151_gauz.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Pivotus4_2021-09-21-060151_gauz.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Pivotus4_2021-09-21-060151_gauz.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Pivotus4_2021-09-21-060151_gauz.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Pivotus4_2021-09-21-060151_gauz.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Pivotus4_2021-09-21-060151_gauz.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Pivotus4_2021-09-21-060151_gauz.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Pivotus4_2021-09-21-060151_gauz.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Pivotus4_2021-09-21-060151_gauz.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Pivotus4_2021-09-21-060151_gauz.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Pivotus4_2021-09-21-060151_gauz.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Pivotus4_2021-09-21-060151_gauz.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Pivotus4_2021-09-21-060151_gauz.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Pivotus4_2021-09-21-060151_gauz.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Pivotus4_2021-09-21-060151_gauz.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABAX/xAAhEAABBAEDBQAAAAAAAAAAAAACAAEDBCEREhUjMTNRYf/EABcBAQEBAQAAAAAAAAAAAAAAAAIAAQP/xAAYEQEBAQEBAAAAAAAAAAAAAAAAAQIREv/aAAwDAQACEQMRAD8Au8hekszVKhABNrsI21bHvC0vNmenVeWFoBszQkW7qOI4dvmErcuUmul0/EgZDd1J/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d9dadd\",\"#2a4a63\",\"#9c5f88\",\"#925955\",\"#82a9c1\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44223,47763,1,'Pivotus collage of tablets displaying website and background design','2021-09-21 06:03:19','2021-10-05 00:59:33','2d2c177b-77d2-4613-a7b5-a194f67c74c5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1658_crop_center-center_82_line/21_Pivotus5_2021-09-21-060319_rddn.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x3317_crop_center-center_82_line/21_Pivotus5_2021-09-21-060319_rddn.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1382_crop_center-center_82_line/21_Pivotus5_2021-09-21-060319_rddn.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2764_crop_center-center_82_line/21_Pivotus5_2021-09-21-060319_rddn.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1105_crop_center-center_82_line/21_Pivotus5_2021-09-21-060319_rddn.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2211_crop_center-center_82_line/21_Pivotus5_2021-09-21-060319_rddn.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x829_crop_center-center_82_line/21_Pivotus5_2021-09-21-060319_rddn.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x691_crop_center-center_82_line/21_Pivotus5_2021-09-21-060319_rddn.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1658_crop_center-center_82_line/21_Pivotus5_2021-09-21-060319_rddn.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x3317_crop_center-center_82_line/21_Pivotus5_2021-09-21-060319_rddn.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1382_crop_center-center_82_line/21_Pivotus5_2021-09-21-060319_rddn.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2764_crop_center-center_82_line/21_Pivotus5_2021-09-21-060319_rddn.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1105_crop_center-center_82_line/21_Pivotus5_2021-09-21-060319_rddn.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2211_crop_center-center_82_line/21_Pivotus5_2021-09-21-060319_rddn.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x829_crop_center-center_82_line/21_Pivotus5_2021-09-21-060319_rddn.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x691_crop_center-center_82_line/21_Pivotus5_2021-09-21-060319_rddn.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1658,\"3072\":3317,\"1280\":1382,\"2560\":2764,\"1024\":1105,\"2048\":2211,\"768\":829,\"640\":691},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"11250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAARABADAREAAhEBAxEB/8QAGAAAAgMAAAAAAAAAAAAAAAAAAAUDBAb/xAAkEAABAwMDBAMAAAAAAAAAAAABAgMEAAURBhIxEyEjQVJhgf/EABYBAQEBAAAAAAAAAAAAAAAAAAEAAv/EAB0RAAEEAgMAAAAAAAAAAAAAAAABAhExIXEyQWH/2gAMAwEAAhEDEQA/ANdNnrDLiYqCpzaQkj5eqnIqUDFR0+CeJJ1CbvFS+24IqsdTxjA591rEC7lii3qN26xkx02doEd94CQccY5/akjszVE1jduT7KzPb2ELGAoDJH1ijY6G6qBBNRH/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d2d3db\",\"#182639\",\"#6e493f\",\"#b0794b\",\"#65a092\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":1658,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44224,47764,1,'Pivotus brochure four design pages','2021-09-21 06:04:35','2021-10-05 00:57:00','4b3000ad-6f02-4cd3-bfe8-674579a587ac',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Pivotus6_2021-09-21-060435_tslc.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Pivotus6_2021-09-21-060435_tslc.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Pivotus6_2021-09-21-060435_tslc.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Pivotus6_2021-09-21-060435_tslc.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Pivotus6_2021-09-21-060435_tslc.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Pivotus6_2021-09-21-060435_tslc.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Pivotus6_2021-09-21-060435_tslc.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Pivotus6_2021-09-21-060435_tslc.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Pivotus6_2021-09-21-060435_tslc.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Pivotus6_2021-09-21-060435_tslc.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Pivotus6_2021-09-21-060435_tslc.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Pivotus6_2021-09-21-060435_tslc.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Pivotus6_2021-09-21-060435_tslc.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Pivotus6_2021-09-21-060435_tslc.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Pivotus6_2021-09-21-060435_tslc.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Pivotus6_2021-09-21-060435_tslc.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQME/8QAHhAAAgICAgMAAAAAAAAAAAAAAQIDBAAFERITITP/xAAVAQEBAAAAAAAAAAAAAAAAAAAAAv/EABoRAQEAAgMAAAAAAAAAAAAAAAEAESECEjH/2gAMAwEAAhEDEQA/AN9ndbiranjhgV4VfiM+MkkZYcWl7G2Rr7i7JarxtXKrI/ViUI495Aay1I515L0/jiV8S//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d5d4d5\",\"#1c3856\",\"#70556a\",\"#719096\",\"#b98159\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44225,47765,1,'Pivotus','2021-09-21 06:05:29','2021-09-21 06:05:29','c1250892-0bc9-4985-b70b-7488ecc826d3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a pivot?',NULL,NULL,'After rapid growth in recent years, My Media Trading Desk (MMTD) hit the pause button and engaged NWO to ask many of their valued clients: What do you really think of MMTD? Their clients’ generous answers both delighted MMTD and offered a mandate to change and grow. Pivotus is their response.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NhnaCQNxpw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47755\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-B78dz1rmC2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"But what do your clients really think?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"NWO began the rebranding process by surveying MMTD’s clients. Commonly held by all of their clients was great regard for their honesty, their industry knowledge, and their unbreakable commitment to exceptional customer service.\\n\\nClients also said they wanted to get deeper insights, beyond the fast and accurate data and delivery MMTD were already known for.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AlIqZXoFkr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47763\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ulVnymquUW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Why Pivotus?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"MMTD needed a new brand to drive their reputation for quality data, strategic advice and superior customer experiences.\\n\\nThe brand needed to convey a clear promise: we’ll rapidly measure and pivot to maximise your media spend returns.\\n\\nTo pivot is to turn on a point—and there’s no better metaphor for how they pivot digital media to get the best possible results for their clients.\\n\\nPivotus is also a call to action: Pivot your brand with their team—because they are nimble, fast and focused in a rapidly changing market.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MJZcxjyvrL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47761\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-w74pYr8Ehf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Founder and CEO Michael Petersen said the new brand better reflects market expectations of their firm and his team’s commitment to a superior customer experience.\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VLVB6hcgiC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47756\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GXT7RzNKoY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47764\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44227,47767,1,'Department of Transport and Main Roads \'How Queensland Travels\' report first twelve pages','2021-09-21 06:34:51','2021-10-05 00:54:22','ea2055ce-9828-43ef-be7a-7fbdf57d984e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_DTMR.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_DTMR.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_DTMR.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_DTMR.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_DTMR.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_DTMR.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_DTMR.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_DTMR.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_DTMR.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_DTMR.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_DTMR.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_DTMR.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_DTMR.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_DTMR.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_DTMR.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_DTMR.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQMG/8QAJBAAAQMDAQkAAAAAAAAAAAAAAQIDEQAEIQUSIjE0NXFzsbL/xAAXAQADAQAAAAAAAAAAAAAAAAAAAQMC/8QAHBEBAQACAgMAAAAAAAAAAAAAAQACMQMRQVFx/9oADAMBAAIRAxEAPwDR6alds9dHYuVKAkIcUDOTwpqSDqSS+07kOjdiYMRQibmPqkjqr/hT7NZiNsuWe7t/VR4t5famfi//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#355268\",\"#eae9eb\",\"#c3893c\",\"#90a4bc\",\"#a2617c\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44228,47768,1,'Department of Transport and Main Roads image of tablet displaying \'How Queensland Travels\' report','2021-09-21 06:35:04','2021-10-05 00:53:32','47f51465-7306-490e-97ee-bed4037fa8c4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_DTMR2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_DTMR2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_DTMR2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_DTMR2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_DTMR2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_DTMR2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_DTMR2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_DTMR2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_DTMR2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_DTMR2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_DTMR2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_DTMR2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_DTMR2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_DTMR2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_DTMR2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_DTMR2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABQP/xAAjEAACAQMCBwEAAAAAAAAAAAABAgQAAzERsQUTISIyNXFy/8QAFgEBAQEAAAAAAAAAAAAAAAAAAAEC/8QAGxEAAwACAwAAAAAAAAAAAAAAAAECETISIjH/2gAMAwEAAhEDEQA/AIwrUIIsi9aQtdJ0LgnGcUji9hWUuoo0jkQ2uR0tImo17MjrUtStSzl+hEHzg/G3NZNMW4v6pv2u5qMI/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#5f564c\",\"#becbd9\",\"#c6b299\",\"#828ea0\",\"#b0b7ac\"],\"lightness\":58,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44229,47769,1,'Department of Transport and Main Roads','2021-09-21 06:36:26','2021-09-21 06:36:26','f4b08b33-3ffa-44b3-889c-ff28ec2bf365',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'How Queensland Tavels',NULL,NULL,'The Department of Transport and Main Roads has measured how, where and why Queenslanders travel since 1976. How Queensland Travels was the first time all of this research had been revealed together.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xiMuwH0qUn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47768\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UGKKHcWkDX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"We crafted a visual metaphor for this important story by enlarging infographic iconography, making it 3D and placing it into real world situations.\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ykadeGb8YM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/145833141?h=da493c8de8&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wXJAJa8GTY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The result is a metaphor for the role of data in the real world, especially as it relates to transport.\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MQiJ46BCqv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47767\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IXjmqTVmWl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Our deliverables included an interactive PDF—written, edited and designed by our team—and the beautiful 3D animated video showing the 3D icons moving in the real world.\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44231,47771,1,'Aseeos','2021-09-21 06:39:30','2021-09-21 06:39:30','db292b71-bb90-4eac-964c-281c2df6086e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Delivering for disruptors',NULL,NULL,'Aseeos rebranded to transform its 10-year-old installation business into an industry-disrupting model that solves age-old industry problems of supply, quality and budget overruns. We worked closely with the team to take its core brand elements and develop a full range of collateral, including signage, brochures and catalogues, video, marketing, events and website.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44233,47773,1,'Aseeos image of laptop displaying website','2021-09-21 07:03:08','2022-06-23 03:27:35','db1f57a5-086f-4626-accb-402b38fd6672',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Asseos.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Asseos.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Asseos.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Asseos.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Asseos.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Asseos.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Asseos.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Asseos.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Asseos.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Asseos.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Asseos.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Asseos.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Asseos.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Asseos.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Asseos.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Asseos.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAEF/8QAIhAAAgECBQUAAAAAAAAAAAAAAQIDAAQFBiFxcxETMzVR/8QAFQEBAQAAAAAAAAAAAAAAAAAAAAH/xAAXEQEBAQEAAAAAAAAAAAAAAAABABFB/9oADAMBAAIRAxEAPwB1kbW3w6KW6RoiNAjydCBrt8qscNvk7kCxEwOZJUUBi6jesfN3iw/houT/AGE/EacoBl//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d2d7d6\",\"#222c21\",\"#555651\",\"#729a9f\",\"#697755\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44234,47774,1,'Aseeos','2021-09-21 07:06:57','2021-09-21 07:06:57','9b49da74-50ea-4414-803a-7bac1410f0f1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Delivering for disruptors',NULL,NULL,'Aseeos rebranded to transform its 10-year-old installation business into an industry-disrupting model that solves age-old industry problems of supply, quality and budget overruns. We worked closely with the team to take its core brand elements and develop a full range of collateral, including signage, brochures and catalogues, video, marketing, events and website.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fyTxfCvyJr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47773\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WYeceTl1wB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/194746924?h=02b6e594f2&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44235,47775,1,'Aseeos','2021-09-21 07:07:48','2021-09-21 07:07:48','979044a2-8fd0-4f22-a5c9-73a3df826aca',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Delivering for disruptors',NULL,NULL,'Aseeos rebranded to transform its 10-year-old installation business into an industry-disrupting model that solves age-old industry problems of supply, quality and budget overruns. We worked closely with the team to take its core brand elements and develop a full range of collateral, including signage, brochures and catalogues, video, marketing, events and website.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fyTxfCvyJr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47773\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WYeceTl1wB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/194746924?h=02b6e594f2&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44236,47776,1,'Brisbane North PHN website','2021-09-21 07:28:53','2021-09-21 07:28:53','14dbcf9c-0151-468b-9346-c542373e93f4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Better access, better health',NULL,NULL,'The PHN’s website is where the ‘better access, better health’ vision comes to life and starts important conversations. This was an opportunity to innovate, collaborate and leverage the PHN\'s work through a powerful digital solution. With a clean design, intuitive user journeys and plain English content, this site is transforming the digital experience for stakeholders within and outside the PHN.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yXpuBl6k0n\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47745\",\"47746\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44237,47777,1,'Righting writing','2021-09-22 00:02:04','2021-09-22 00:02:04','34d9fcae-85ab-4bb3-ace2-136dfa4abc71',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WiIX62eIQK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Uni was when I found my purpose in life. A passionate lecture on the very first day was my ‘eureka!’ moment that then propelled me through a double major in communications, 10 years in a newsroom and countless more in corporate writing.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But it all could have come tumbling down in the stern and unyielding face of just one lecturer: Ros Petelin.\\n\\nLike most kids who gravitated toward the arts in school, I’d been feted as a bit of a writer. I wrote installments of unreasonably sappy romance novels late at night and distributed copies to peers on the train the next morning. I won an academic scholarship for my writing (although nearly lost it many times for my maths).\\n\\nIt was left to Ros – now an associate professor in the School of English, Media Studies and Art History at UQ, and a well-respected writer in business communication – to tear my self-made kingdom down, word by word, until I could rebuild it on more solid foundations.\\n\\nHere’s what I now know to be true about writing effective business words.\\n\\nThanks, Ros. I hope you’re grading more kindly these days.\\n\\n##### **Trick #1: Talk like your audience**\\n\\nIf you’re writing for your business, forget formal words and don’t allow fear of failure – or grammar – to stop you writing. Instead, a trick I’ve long used in business writing is to hear a typical customer’s voice in my head, and then to write like they talk.\\n\\nLike acting, the craft of writing involves immersing yourself in the character. In this case, the character is your customer – and by sounding like them, you’re more likely to draw them in.\\n\\n##### **Trick #2: WIRMI**\\n\\nI have Ros and her fondness for US author Linda Flowers to thank for WIRMI. The acronym ‘What I Really Mean Is’ is extraordinarily helpful in bringing clarity to business writing, and it’s a tool I still use daily.\\n\\nYou can use WIRMI as a catchphrase at any point of your writing – when you’re trying to work out exactly what you want to say, and when you’ve written something and you need to ensure it says what you want, clearly and well.\\n\\nIf you’re not comfortable with writing – and plenty of people would rather line up for a root canal than write an essay – this is a great way to check you’re on track.\\n\\n##### **Trick #3: So nice you read it thrice**\\n\\nFinally, if you’re satisfied that what you’ve written is the best you can do, read it through once more – and then put it down.\\n\\nAfter a few hours – or a few days, if you have the time – pick it up and critically read it again. Make a few adjustments. Delete a few words. Then hide it again.\\n\\nOn the third go, after another break, pretend you’re the customer and read it aloud to yourself as though you’re seeing it for the first time. If you have no more changes to make to it, it’s good to go. But chances are, you’ll think of a few.\\n\\nWhy at least three reads? Professional writers and editors know better than anyone that great writing comes from multiple drafts, not a single session of inspiration. Taking a break in between drafts – although hard to do in a busy work day – can be the key to achieving great results.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44238,47778,1,'What the artist breaks','2021-09-22 00:02:05','2021-09-22 00:02:05','62b27fe7-19a4-46ac-bd7d-a802dcb79bbb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QjbPRQcxAH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"It’s arguable that copywriting is at the heart of all advertising and marketing today. We remember taglines and recall jingles; and copy is the beginning of most brand stories. But, boy, is it fantastic to look back at a time when it really was all about the words.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Bill Bernbach was the founding creative director of legendary Manhattan ad agency Doyle Dane Bernbach. He came out with quotes like:\\n\\n“Advertising is fundamentally persuasion and persuasion happens to be not a science, but an art”, and\\n\\n“Word of mouth is the best medium of all”, and\\n\\n“Rules are what the artist breaks; the memorable never emerged from a formula.”\\n\\nThat’s really provocative stuff that makes you nod your head at the truth and simple power of his thinking – and imagine how inspiring but uncompromising a boss he would have been. What an exhilarating time to be writing.\\n\\nBernbach not only had a way with a turn of phrase, but he also really set up the structure of creative teams for marketing and advertising, and was, of course, part of the inspiration for Mad Men. But mostly, he was a writer. And what a writer he was. His firm revolutionised advertising copy and laid out the early foundations for brand storytelling through engaging narrative and brand persona development. We can, and have, all learned from these guys.\\n\\nIn the 1960s, DDB took on Volkswagen as a client and began creating a series of print ads that referred to the VW as a “lemon” and encouraged consumers to “think small”. The copy, by the incomparable Julian Koenig, starts out saying “This Volkswagen missed the boat. The chrome strip on the glove compartment is blemished, and must be replaced.” Not exactly sales speak.\\n\\n##### **It was funny. It was clever. And it was ground-breaking.**\\n\\nFor the rest of the decade, VW kept their unconventional campaign rolling. DDB’s strategy of turning seeming faults into benefits was a huge hit. One ad didn\'t even include a picture of the little lemon: “No point in showing you the 1962 Volkswagen. It still looks the same.”\\n\\nMuch has been written about the ads, and you can take a look at a bunch of them here if you like. It was ranked the best advertising campaign of the twentieth century by Ad Age, and it deserves the title. This sort of brand bravery is rare and may be a little of its time, too. The truth is that the power is all right there, in the copy, which exists to inspire us. Last words to Mr Bernbach himself:\\n\\nYou can say the right thing about a product and nobody will listen. You\'ve got to say it in such a way that people will feel it in their gut. Because if they don\'t feel it, nothing will happen.\\n\\nWhat is your brand really saying?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44239,47779,1,'8 important marketing questions for every business','2021-09-22 00:02:05','2021-09-22 00:02:05','f75d8f3b-bc55-4ed2-b939-e4a13ea1852c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VzKHBkk2Ca\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Marketing communications in business is all about attracting and retaining customers. We do it for dozens of Australian companies every day, and the bigger the company, the tighter the marketing strategy governing their communications – because they know customers are fickle, and competitors are waiting to pounce on any weakness.\\n\\nThe same philosophy of tight strategy and execution should drive your business. Effective marketing communications must be an essential part of your core business strategy to ensure you’re pushing the same, consistent message through every aspect of your organisation.\\n\\nBut it’s not always so easy to go it alone. If you’re in a small business and know you need to step up, here’s a handy checklist of the marketing questions you need to answer to keep your customers in tune with you – and your competitors at bay.\\n\\n##### **Who are my existing customers?**\\n\\nThe best way to sell to your customers is to first understand who they are, why they buy from you, and what value they expect from you. And the best way to learn this? Listen to them. Marketing communication begins with good customer relationships, which are almost like your own form of market research.\\n\\nWhen you talk to your customers, you’ll learn things like your customers’ age, income, education, how often they buy from you, what their buying triggers are, and how they’re influenced. This is a valuable step in honing your marketing message, so don’t be tempted to think you already know the information if you’ve been in business for a while. Every customer conversation will add another layer to your understanding.\\n\\n##### **Who are my potential customers?**\\n\\nIt’s just as critical to have a very clear understanding of your desired target market and new customers. Get as detailed as you possibly can. The more specific you are, the better you can develop messages for them.\\n\\n##### **Who are my competitors?**\\n\\nUnderstanding who competes for your customers – and what they’re offering – is vital. Get very familiar with every aspect of your competitors’ businesses – including their reputation, prices and marketing material. This knowledge will help you position your marketing communication relative to how your customers are already being targeted and differentiate yourself in the market.\\n\\n##### **What am I trying to achieve?**\\n\\nUnderstanding why you’re communicating with your customers is essential. Are you purely after quick wins? Or preparing the ground for a new product or stronger relationships? The rationale and potential value for any marketing effort should determine how much money you need to spend, and where it’s best spent.\\n\\n##### **What am I trying to say?**\\n\\nThis is where everything comes together. You must now develop clear, key messages that talk up your product or service, meet the expectations and needs of your new and existing customers, and differentiate yourself from your competition.\\n\\nMake sure you have no more than five key messages – in fact, the fewer the better – and make them specific and meaningful. That’s how you stand out in the crowded market. Ensure your customers are aware of your business and its products or services, and why they should care (e.g. What’s in it for them? And what are the true benefits?). These benefits should be factual and real. It’s important not to overload customers with information, but rather to be clear and articulate.\\n\\nAll of your marketing communications should include a strong call to action: What is it that you want customers to do once they’ve interacted with you? Leave them in no doubt and make it easy for them.\\n\\n##### **What’s the right channel?**\\n\\nThere’s no doubt that it’s a busy marketplace when it comes to finding the perfect place to share your marketing messages. The challenge here is in focusing and narrowing your communication – and finding the right time and place to connect with your customers.\\n\\nMany marketers are now jumping on social media networks, but that might not be where your customers can be found. It’s important that you understand how and when they want to hear from you, and use that information to foster a true customer relationship.\\n\\n##### **Is my strategy integrated?**\\n\\nCommunicating in an integrated way across all channels (such as website, emails and brochures) means your brand will become better known and understood. Integration means that every time your customers hear from you, they get the same feel for who you are. By creating consistent, strong marketing communications, your customers will identify and remember you into the future.\\n\\n##### **Finally: Am I communicating with genuine creativity?**\\n\\nCreativity isn’t about paying your local print shop to pull together a flyer with your logo on it, or using a WordPress template to build your long-overdue website. They might be tactics that you use, but they’re not what creativity is really about.\\n\\nTrue creative thinking pulls together everything you know about your business, your goals and your customers into a single, cohesive package that cuts through, connects and resonates. Creativity distills everything down to the right words, images and design so that your marketing collateral has the right impact. No business can afford to skimp on this stage because getting creativity right means you’ll get the results you’re really after: maximum return on your marketing investment.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44240,47780,1,'B2B is dead','2021-09-22 00:02:05','2021-09-22 00:02:05','0b1b53d6-9e95-48c2-a7f7-0062ae0e2d8b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-luIsqIjBj1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"As deaths go, it was a quiet one. Few people knew of its demise.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But there it lay still: the artificial divide between B2B and B2C marketing, gone forever.\\n\\nWhy bother lamenting the dead? Dare I say, it’s good riddance to a dodgy invention.\\n\\nThe idea that marketing business-to-business took entirely different skills and strategies to talking to consumers has its roots back in the early Noughties. The notion, which most marketers sadly still hold, was that because the volume of B2B transactions is so much higher than B2C – if you count every transaction required along a manufacturing supply chain, for example – then B2B branding requirements were stronger, too.\\n\\nConversely, the B2C belief held that the consumers of the world needed entirely different marketing strategies to convince them to open their wallets.\\n\\nTrue, where they differ most is in the justification of purchases. In B2C land, I need to convince myself why I should buy yet another pair of red shoes. (It’s a short discussion.) In B2B, I might be lobbying the board to invest in an expensive new CRM system.\\n\\nBut the truth is both groups share more similarities than differences.\\n\\nYour customers – be they businesses, consumers or both – have similar emotional and logical requirements that must be met. The relationship lifecycle between a purchaser and a brand exists with businesses and consumers alike. Both groups also frequent the same social media spheres, are Google-happy and web-savvy, and require strong brand confidence in order to purchase.\\n\\nThe illusion that you’re selling to a company in B2B should be seen for what it is. In retail or in business marketing, you’re selling to individuals. And each wants to feel that you get them.\\n\\n##### **Long live H2H.**\\n\\nWhich is where yet another acronym is starting to make a play: H2H, or human-to-human marketing.\\n\\nIt espouses the belief that we all, business and retail customers alike, are looking for connection, inclusion and to be understood. If you take that as your starting point – and not your burning need to produce another brochure – then the marketing toolbox available to your business automatically grows.\\n\\nIt means the vast strategies already out there like relationship marketing and continuous touchpoints become as relevant to a retail customer as to the business that buys your widgets. And the traditional B2C tools like social media become far more relevant business-to-business because they help build connections better than a sterile product flyer.\\n\\n##### **Let’s make H2H practical.**\\n\\n**1. Open your horizons**\\n\\nSwitching your mindset to focusing on the individual, human needs of your market means you can open your marketing to all sorts of potential tools. Just because you run a hair salon doesn’t mean you can’t start sending out a monthly email newsletter – if your customers are the kind of people that like to know more about you. And just because you’re an accountant doesn’t mean you can’t lead an industry group on LinkedIn or advertise on Facebook – if that’s where you’ll find the types of sales you want. Think about your customers, and let their needs lead you.\\n\\n**2. Make your customers feel**\\n\\nSales overwhelmingly come from relationships in my business, so meeting my clients’ emotional needs is a no-brainer. If my clients are happy, they’ll stay.\\n\\nBut even if your sales rely heavily on good old-fashioned foot traffic, it’s relationships that will lure them and keep them. So, in every tool you use to get to market, make sure you get the emotional kicker in. Empathise and prove you understand their needs.\\n\\n**3. Ask your employees what they think**\\n\\nIt’s one thing to make marketing decisions from an ivory tower. Chances are it’s your staff who really know how your clients think, or how your customers behave. So get their ideas and integrate it into your marketing. Let them drive your innovation.\\n\\n**4. Finally, listen to your customers**\\n\\nThere is marketing gold in every intentional conversation you have with a customer. Ask the ‘why’ that follows the tough questions: Do you feel safe with my business? Do you like dealing with us? Would you refer us to your friends? The answers will revolutionise how you think about marketing to your customers.\\n\\n---\\n\\n*Written for the February 2014 issue of Inform, the monthly magazine of the Chamber of Commerce and Industry in Queensland.*\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44241,47781,1,'The 6 steps of content creation','2021-09-22 00:02:05','2021-09-22 00:02:05','5d3d0c86-7642-42f0-a436-989ee1bdcd4b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-92RCseTSp0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"You know what your business is about. You’ve nailed down your story. You’ve worked out who you want to talk to.\\n\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Now you need to add some real value.\\n\\nTime poor organisations need their content to work across different channels online – including websites, e-newsletters, blogs and across social media. One way to add value to your existing, more sales-focused, content is through content curation. Content creation means finding useful content online, curating it for your audience and re-telling it in your voice and with your advice.\\n\\n##### **Here’s how to optimise, write and curate content for your target audience.**\\n\\n###### **Defining your goals**\\n\\nEvery good plan starts with defining what it’s trying to achieve. How do you want your content to define your business? What are you offering your target market? Do you want to be a thought leader in your particular area?\\n\\nContent curation is about meeting your customers where they are and offering them something they’re not getting elsewhere. It’s about finding, gathering and sharing information of value with them; positioning your business and brand as an authority both with original content – your sales offering and business learnings – and information you’ve found and shared online. Participating in conversations that are happening about your field leads to more engagement with your target market, the ultimate goal being to give your brand a voice of value that will see your audience come back again and again for your offering.\\n\\n###### **Getting started**\\n\\nIt’s important to remember that well-executed content curation isn’t about regurgitating content that was already published. Instead, it’s your business’s personal re-telling of a story. As Susan Gunelius wrote for Forbes, the human element of content curation is what makes curated content compelling.\\n\\nTherefore, when offering your audience valuable content, remember to tell your story. What are you saying that’s different? What do you know that others might not? Involve your whole team – not just marketing and sales – and that story will evolve to give your business a truly useful and unique voice.\\n\\n###### **Finding content**\\n\\nHere’s where you get amongst it!\\n\\nWant to know where your target market is looking for information online? Go exploring! Ask them! Discover for yourself where the good stories are being shared. Find out what topics matter to your goals and audience, and go after them.\\n\\nIntegrating content curation into your broader marketing strategy is the way to go here – it legitimises the exercise and gets your team thinking about the value of your brand and how they can add to it. The best place to start is probably your social media accounts. Valuable content is being shared every day on platforms like Facebook, Twitter and LinkedIn. There are also Google alerts and news aggregate sites that can be set up with your special business needs in mind.\\n\\n###### **Be authentic to find your voice**\\n\\nThere is nothing like the instant world of social media to add value and timeliness to your content. Social media has changed the term ‘sharing’ forever, and the opportunities for your brand are endless. It’s important to add your own value to social content – as Mark Lerner says, if you just “retweet,” or share an article without including your own voice in the post, you’ll fail to distinguish yourself from everyone else who shared that content.\\n\\nHow do you find your voice? Authentically, of course! Offer your opinion and add your advice in areas you are confident about. Try to be friendly and informative, and adopt an approachable tone. Not so confident? Ask questions! Get your community talking and they’ll come back to you.\\n\\n###### **Context and thought leadership**\\n\\nGood content curation provides your audience with context and convenience – that means filtering and explaining what you find online, and rewording it in your voice so it’s useful to them. You don’t always need to be selling, but you do always need to be mindful of your brand and of offering real value. Knowing who your market is and writing in your ‘voice’ allows you to, as J-P De Clerck says, inform, educate, entertain and engage target audiences.\\n\\n###### **Where to share**\\n\\nThere are many ways to share curated content, but the best way is in a mix of your existing ‘sales’ content. E-newletters and blogs offer an opportunity to share curated and original content, and social media is the most instant way to add your voice to a new idea, and also probably the first place your audience will find you. They’ll also find your website, so don’t forget about the curated content opportunities there. Always remember that you should be providing useful information, not just repeating content or working on the hard sell.\\n\\nContent curation is convenient, but it’s also an important opportunity to add value, develop a business voice and grow an online community. What do you think about content curation? Has it worked for you? Got any tips? Let us know.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44242,47782,1,'Top 20 tips for SEO','2021-09-22 00:02:06','2021-09-22 00:02:06','532110ee-4669-475f-8337-ce4410c8d1b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-P9HDvjQfFI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"GOOD SEO STARTS WITH A BIT OF DIY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Sure, there are loads of experts and agencies out there that specialise in the field, and many of them do a great job.\\n\\nBut there’s actually plenty you can do yourself before you even need to look for an external supplier to help with your SEO.\\n\\nTo get you started on your next SEO DIY project, we’ve put together a top 20 checklist.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":\"1\",\"fields\":{\"gridItems\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\",\"new6\",\"new7\",\"new8\",\"new9\",\"new10\",\"new11\",\"new12\",\"new13\",\"new14\",\"new15\",\"new16\",\"new17\",\"new18\",\"new19\",\"new20\"],\"blocks\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"1. Do your research\",\"text\":\"Identify key search terms, words and phrases, and check out competitors’ sites.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"2. Work out where you are now\",\"text\":\"Work out where you are now—As soon as possible, keep a regular record of where your site currently ranks in search results, using various words, phrases and questions.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"3. Work out where you want to be\",\"text\":\"Define your goals early on so you can measure your progress and adjust your strategy as you go along.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"4. Make your content relevant\",\"text\":\"Search engines provide the most relevant results to a searcher’s query, so write content based on what people might search for.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"5. Improve the quality of your content\",\"text\":\"Publish helpful, useful articles, videos and other types of media that people will want to engage with.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"6. Think about user experience\",\"text\":\"Make sure your site is easy to navigate, with plenty of relevant internal links to keep users on your page for longer.\"}},\"new7\":{\"type\":\"6\",\"fields\":{\"heading\":\"7. Ensure your site is responsive\",\"text\":\"s your website designed to resize for viewing on desktop, tablet and mobile devices? It should be.\"}},\"new8\":{\"type\":\"6\",\"fields\":{\"heading\":\"8. Include plenty of internal links\",\"text\":\"This helps pushes traffic around your site, building higher ‘trust signals’ for Google, and gives your audience more to read.\"}},\"new9\":{\"type\":\"6\",\"fields\":{\"heading\":\"9. Write meta descriptions\",\"text\":\"This short paragraph of text under your page’s URL in search results can really improve the chance of someone clicking on it.\"}},\"new10\":{\"type\":\"6\",\"fields\":{\"heading\":\"10. Include title tags\",\"text\":\"These few key words describing the page and your brand name tell visitors and search engines what your site is about in the most succinct way possible.\"}},\"new11\":{\"type\":\"6\",\"fields\":{\"heading\":\"11. Tag your images\",\"text\":\"Search engines cannot ‘see’ images but they can ‘read’, so it’s important to describe any pictures you upload to your site.\"}},\"new12\":{\"type\":\"6\",\"fields\":{\"heading\":\"12. Create evergreen content\",\"text\":\"More thoughtful and practical advice-based articles can create better results over the long term. Top 20 list, anyone?\"}},\"new13\":{\"type\":\"6\",\"fields\":{\"heading\":\"13. Consider your domain name\",\"text\":\"Having a ‘keyword-rich’ domain name can improve ranking but can also lead to closer scrutiny by search engines.\"}},\"new14\":{\"type\":\"6\",\"fields\":{\"heading\":\"14. Think about headlines\",\"text\":\"Make headlines as snappy, attractive and descriptive as possible, and stay away from clickbait.\"}},\"new15\":{\"type\":\"6\",\"fields\":{\"heading\":\"15. Turn on comments\",\"text\":\"This helps generate a community of engaged users and, whatever their opinion of your content, you’ll know it’s being read.\"}},\"new16\":{\"type\":\"6\",\"fields\":{\"heading\":\"16. Go social\",\"text\":\"By using social media channels as a genuine way to interact with customers, you can help generate interest in your brand and drive traffic to your site.\"}},\"new17\":{\"type\":\"6\",\"fields\":{\"heading\":\"17. Watch your on-site advertising\",\"text\":\"Intrusive ads can destroy the pleasure of viewing your content and also slow your site down (not good for SEO).\"}},\"new18\":{\"type\":\"6\",\"fields\":{\"heading\":\"18. Avoid keyword stuffing\",\"text\":\"Some search engines will actually penalise you for obviously overusing certain keywords on your pages.\"}},\"new19\":{\"type\":\"6\",\"fields\":{\"heading\":\"19. Be aware of duplicated content\",\"text\":\"If two sites publish identical content, search engines will only index one of those pages.\"}},\"new20\":{\"type\":\"6\",\"fields\":{\"heading\":\"20. Don’t hide links and text\",\"text\":\"Doing things like hiding white keyword-stuffed text on a white background or hiding a link in a full stop is likely to be punished by search engines.\"}}}}}},\"new4\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Follow these tips and you’ll be well on your way up the rankings in no time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44243,47783,1,'Top 20 tips for SEO','2021-09-22 00:02:45','2021-09-22 00:02:45','16311039-25d6-48a8-832b-76fb973018fc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-P9HDvjQfFI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"GOOD SEO STARTS WITH A BIT OF DIY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Sure, there are loads of experts and agencies out there that specialise in the field, and many of them do a great job.\\n\\nBut there’s actually plenty you can do yourself before you even need to look for an external supplier to help with your SEO.\\n\\nTo get you started on your next SEO DIY project, we’ve put together a top 20 checklist.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":\"1\",\"fields\":{\"gridItems\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\",\"new6\",\"new7\",\"new8\",\"new9\",\"new10\",\"new11\",\"new12\",\"new13\",\"new14\",\"new15\",\"new16\",\"new17\",\"new18\",\"new19\",\"new20\"],\"blocks\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"1. Do your research\",\"text\":\"Identify key search terms, words and phrases, and check out competitors’ sites.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"2. Work out where you are now\",\"text\":\"Work out where you are now—As soon as possible, keep a regular record of where your site currently ranks in search results, using various words, phrases and questions.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"3. Work out where you want to be\",\"text\":\"Define your goals early on so you can measure your progress and adjust your strategy as you go along.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"4. Make your content relevant\",\"text\":\"Search engines provide the most relevant results to a searcher’s query, so write content based on what people might search for.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"5. Improve the quality of your content\",\"text\":\"Publish helpful, useful articles, videos and other types of media that people will want to engage with.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"6. Think about user experience\",\"text\":\"Make sure your site is easy to navigate, with plenty of relevant internal links to keep users on your page for longer.\"}},\"new7\":{\"type\":\"6\",\"fields\":{\"heading\":\"7. Ensure your site is responsive\",\"text\":\"s your website designed to resize for viewing on desktop, tablet and mobile devices? It should be.\"}},\"new8\":{\"type\":\"6\",\"fields\":{\"heading\":\"8. Include plenty of internal links\",\"text\":\"This helps pushes traffic around your site, building higher ‘trust signals’ for Google, and gives your audience more to read.\"}},\"new9\":{\"type\":\"6\",\"fields\":{\"heading\":\"9. Write meta descriptions\",\"text\":\"This short paragraph of text under your page’s URL in search results can really improve the chance of someone clicking on it.\"}},\"new10\":{\"type\":\"6\",\"fields\":{\"heading\":\"10. Include title tags\",\"text\":\"These few key words describing the page and your brand name tell visitors and search engines what your site is about in the most succinct way possible.\"}},\"new11\":{\"type\":\"6\",\"fields\":{\"heading\":\"11. Tag your images\",\"text\":\"Search engines cannot ‘see’ images but they can ‘read’, so it’s important to describe any pictures you upload to your site.\"}},\"new12\":{\"type\":\"6\",\"fields\":{\"heading\":\"12. Create evergreen content\",\"text\":\"More thoughtful and practical advice-based articles can create better results over the long term. Top 20 list, anyone?\"}},\"new13\":{\"type\":\"6\",\"fields\":{\"heading\":\"13. Consider your domain name\",\"text\":\"Having a ‘keyword-rich’ domain name can improve ranking but can also lead to closer scrutiny by search engines.\"}},\"new14\":{\"type\":\"6\",\"fields\":{\"heading\":\"14. Think about headlines\",\"text\":\"Make headlines as snappy, attractive and descriptive as possible, and stay away from clickbait.\"}},\"new15\":{\"type\":\"6\",\"fields\":{\"heading\":\"15. Turn on comments\",\"text\":\"This helps generate a community of engaged users and, whatever their opinion of your content, you’ll know it’s being read.\"}},\"new16\":{\"type\":\"6\",\"fields\":{\"heading\":\"16. Go social\",\"text\":\"By using social media channels as a genuine way to interact with customers, you can help generate interest in your brand and drive traffic to your site.\"}},\"new17\":{\"type\":\"6\",\"fields\":{\"heading\":\"17. Watch your on-site advertising\",\"text\":\"Intrusive ads can destroy the pleasure of viewing your content and also slow your site down (not good for SEO).\"}},\"new18\":{\"type\":\"6\",\"fields\":{\"heading\":\"18. Avoid keyword stuffing\",\"text\":\"Some search engines will actually penalise you for obviously overusing certain keywords on your pages.\"}},\"new19\":{\"type\":\"6\",\"fields\":{\"heading\":\"19. Be aware of duplicated content\",\"text\":\"If two sites publish identical content, search engines will only index one of those pages.\"}},\"new20\":{\"type\":\"6\",\"fields\":{\"heading\":\"20. Don’t hide links and text\",\"text\":\"Doing things like hiding white keyword-stuffed text on a white background or hiding a link in a full stop is likely to be punished by search engines.\"}}}}}},\"new4\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Follow these tips and you’ll be well on your way up the rankings in no time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44245,47785,1,'Hear the equality stories from NWO women','2021-09-22 00:10:23','2021-09-22 00:10:23','4b8b64e8-70cd-4c2f-9214-85fa9fcff761',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Wernf3qqvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"International Women\'s Day 2021\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We can all choose to challenge and call out inequality. We can all choose to seek out and celebrate women\'s achievements. Collectively, we can all help create an inclusive world. \\n\\nFrom challenge comes change, so let\'s all choose to challenge.\\n\\nThe 2021 theme for International Women\'s Day is #choosetochallenge. We asked the women of NWO what this means for them.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dQqtfQZh3I\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17131\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZSm70uSTq5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Jo Penney: We don\'t need titles\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"As a female with short hair, I am often referred to as ‘sir’.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"This occurs mostly by flight attendants who take a quick glance and assume, rather than just offering a friendly ‘good morning’ or ‘good evening’ and avoiding their own embarrassment when they realise their mistake.\\n\\nOnce, the same flight attendant who greeted me to the plane was so embarrassed she could barely offer me tea or coffee later in the flight.\\n\\nIt’s silly and avoidable, and I find it quite funny and entertaining to see which way it will go.\\n\\nFor others, though, it can be an awful embarrassment that can easily be avoided by removing titles.\\n\\nSo, this International Women’s Day, I’m choosing to challenge all of us to end their use.\\n\\nI’m a proud female but I don’t feel the need to be referred to as madame, ma’am, mademoiselle, etc. It’s old-fashioned and classist.\\n\\nAnd as a proud LGBTI woman, I am extra aware that titles can isolate and sideline—not encourage and respect—people for whom gender and identity has been hard-won.\\n\\nLet’s talk our walk. Let’s end titles for good.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oVs7jOKhCm\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17127\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-823iS7DNes\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Kat Scott: The courage to listen\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"I’ve always thought the conversation around challenges women face was about finding your voice and speaking up; that strong, independent women needed to find the confidence to make their voices heard.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The older I get and the more the modern world allows us to see through the structures of society, economics and politics, I realise the conversation is really about finding the confidence to listen to those voices.\\n\\nYou see it every day in business, TV, music, media and social situations that when there is a woman who stands up and says how she feels, she is perceived as “too much”.\\n\\nI am guilty at times of not hearing other female voices and, worse than anything, sometimes of not even hearing my own voice.\\n\\nDespite thinking of myself as a very headstrong, intelligent and confident person, I tell myself to “tone it down” because I’m being “too much”.\\n\\nI want to see people rising to the challenge of actively listening to those female voices and perspectives, not because they are female but because they are equal.\\n\\nEvery person should be offered the same platform, the same ears and the same opportunities—if we choose to take them.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YdYo9ey7f6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17124\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jXUudS4IzN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Rebecca Holman: Let\'s keep choosing to challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Here’s to the great women who kicked it all off.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"They challenged previously held societal norms, at great personal and physical cost, to give us the right to vote, the right to marry who we like, the right to choose our own careers, to be independent and to move closer to gender equality.\\n\\nThe spirit of these pioneers lives on, and the hard and uncomfortable work continues in many forms with each of us.\\n\\nAll of us can keep choosing to challenge each other—woman to man, woman to woman, man to man—in our everyday lives.\\n\\nHere’s to the mums, dads and those very special teachers who nurture our kids, lead by example and challenge the next generation to grow into people who treat each other with respect, patience and compassion.\\n\\nLet’s keep championing and supporting each other to achieve true gender equality.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RUzEpjpFMZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17119\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7wTrhTk0Ps\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Kimi Schieren: Deeper than the dollar amount\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Revealing you have a side hustle always brings up questions about success.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"“What kind of a profit are you making?”\\n\\n“Is it worth it?”\\n\\nEspecially if you, like myself, also work a full-time job and the side hustle itself is almost equally as full-time—the questions surrounding the value of your extracurricular will frequently plague you.\\n\\nHolding the worth of something solely on whether or not it’s profitable can be a slippery slope of creating unattainable goals and unrealistic expectations on yourself and your business.\\n\\nWhat I get out of my side hustle both professionally and personally far surpasses any financial goals.\\n\\nIt’s an outlet for my creativity and a way to express myself. Plus, it helps me to be more creative in my day job.\\n\\nThe two jobs feed into each other and without either or both I would struggle to feel like myself.\\n\\nSuccess from my side hustle is measured in the praise of happy customers, the smiles and comments I get from people who pass my stuff in the streets, and the self-satisfaction I get from creating something from an idea in my head to something you can physically wear or hold.\\n\\nSure, getting paid is also great and I dream of the day when it can become my full-time job. But, for now, my success is much deeper than a dollar amount.\\n\\nThis International Women’s Day, I’m choosing to challenge the notion that wealth equals success.\\n\\nLet’s choose to open our mind to what success looks like and celebrate the amazing things we’re doing.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TAZHDkM6ny\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17115\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EVYfpAlzzL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Kate Wood: Because they challenged, I get to choose\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"I’m in the grey area between Gen Y and Z, so I’m a product of the many Gen X women who raised me, inspired me and challenged me.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Gen X women were born in the 70s and 80s when the ideals of having it all—stable marriage, perfect family, lucrative work—came disguised as female empowerment. What crippling expectations.\\n\\nThese women defied mathematics. There are only 24 hours in a day and having it all takes at least 36.\\n\\nThey challenged the gender norms of the time and proved that, in fact, you can have it all.\\n\\nBecause of that, I don’t have to be the perfect mum with the perfect kids. I don’t have to be married to the dreamiest spouse. I don’t have to cook like Nigella or clean like Marie Kondo. I don’t have to climb the corporate ladder and smash through glass ceilings.\\n\\nI certainly don’t need to do all of that at the same time.\\n\\nAnd because I’m lucky enough to work for an incredible Gen X woman, I don’t have to work twice as hard to earn the same as my male colleague.\\n\\nInstead, I get to choose my values and the kind of woman I want to be.\\n\\nTo all you Gen X women who bravely went before: thank you. Because you worked so hard to challenge, I get to choose.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PCfYuBrUwo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17114\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aX0BZHIT5e\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Suzanne Oxford: Let\'s not mistake peace-keeping for peace-making\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"As a person of faith, I’ve always been challenged by a verse that says, “as far as it depends on you, live at peace”. I consider this my mandate.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But don’t mistake peace-keeping for peace-making.\\n\\nPeace-keeping keeps factions apart with no expectation of resolution. It’s maximum effort expended in a passive, zero sum game. It reinforces apathy, privilege and anger.\\n\\nMe? I’m a peace-maker. The very act of making peace—and making peace, and making peace—is dynamic and potent, shining a light where inequality and injustice rob people of true peace.\\n\\nPeace-making drives me to lean in and bear witness to people’s stories with compassion and empathy.\\n\\nIt compels me to respond with strategies and actions that can create lasting change.\\n\\nIt urges me to have uncomfortable conversations to elicit greater understanding.\\n\\nIt impels me own my blind spots so I can grow in gentleness—and, in turn, create even greater peace.\\n\\nThere’s nothing passive about being a peace-maker, and peace-making never ends.\\n\\nIn fact, as I consider the broken world my children are now entering as young adults, my peace-making is only increasing in volume—as is my understanding that peace is a human right and that, as far as it depends on me, I must give it voice and life.\\n\\nAnd so I do.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OM2HjsMtPT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17108\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Knak12weJl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Bree Leitch: Our voice carries weight, even when it wavers\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"I grew up posting everything on social media, compiling a collage of my perfect life.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Every photo is meticulously chosen out of hundreds taken, every smile critiqued, and every caption drafted and redrafted. Anything less than perfection simply won’t do—I have an audience to please, you see.\\n\\nWomen have fought since the beginning of time to have our voices heard and taken seriously. And now we have an audience, they’re out for blood. It’s the little things—misusing terminology, Facetune gone wrong, dating too many people or not enough—the list goes on. Our audience will fault us for anything in order to discredit us.\\n\\nThe worst part? Often, that audience is me. Sometimes it’s you. It’s all of us women at one point or another, not because we mean to, but because we are trained to. We are taught we must tear other women down in order to lift ourselves up.\\n\\nWhen we let ourselves believe that our own success—or self-security, or popularity, or whatever validation we seek—is dependent on the destruction of other women, we all suffer.\\n\\nWe don’t have to be perfect to be valid. Our voice carries weight, even when it wavers.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44247,47787,1,'Break away from the same-same with custom illustration','2021-09-22 00:11:31','2021-09-22 00:11:31','f73c9f1b-f10f-423a-b2ff-9c6e805f115e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tiYExhhMPf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"There’s nothing more special than something made just for you.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"You hold it loudly and proudly for all to see—and they notice because there’s nothing else in the world quite like it. And this makes you treasure it that little bit more.\\n\\nThe dream of an illustrator is to have time, budget and ability to craft a bespoke masterpiece for every job that comes across the desk.\\n\\nThat dream doesn’t turn to reality very often. But that doesn’t mean your brand has to revert to using the same old stock illustrations everyone else uses either.\\n\\nThere are so many ways to get over those hurdles when a project doesn’t have time or budget to allow for a custom piece.\\n\\nA lot of the time, stock illustration can be tweaked to give it the edge it needs to stand out from the crowd.\\n\\nChange up the colours, mix up the style and jazz up the faces.\\n\\nSometimes stock forms the base for us to build something fresh. And other times there might already be the perfect stock illustration that tells the right story without much tweaking at all.\\n\\nWhatever the constraints—budget, time, brief—there’s always a way to break free. It just takes some thinking outside of the box.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-amC4hnZM56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"If you’re drowning in a sea of same-same, come chat to us and [we’ll get you out of there in no time](/contact).\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44248,47788,1,'Why you need a six-month comms strategy for your website','2021-09-22 00:13:55','2021-09-22 00:13:55','5356c252-dd9f-414f-a7ef-5277616c93ff',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AgEbVkr4de\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"YOU KNOW THE FEELING: AN AD PROMISE DRAWS YOU IN, YOU CLICK THROUGH TO THE WEBSITE AND YOU’RE IMPRESSED BECAUSE IT LOOKS SUPER SLICK.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Then you actually read it. And now you’re disappointed because it doesn’t actually say anything other than the surface detail of a business.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QesBwreMAq\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"These websites are so common they’ve earned the term ‘brochure’ website. They look great, but that’s it.\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-b9aMnjAcJ0\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We see it all the time and think it’s such a shame. Why? Because a website can be so. much. more.\\n\\nHow can your website escape the dreaded brochure effect? In short, don’t set and forget.\\n\\nGood websites move, breathe and live—just like your business does.\\n\\nEveryone knows it’s good practice to regularly update your website messaging and functionality. But you need to actually get around to doing it and—more importantly—have a reason for making a change.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"},\"collapsed\":\"1\"}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3YeCOos4iz\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"So, what’s your strategy?\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V4Ur8T6jd4\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"A website communication and engagement strategy has so many benefits. But the biggest one by far is SEO.\\n\\nBy biggest we don’t mean the most confusing or time-consuming. It simply boils down to content. Fresh content tells Google: This is who I am! This is what I do! See me! Hear me!\\n\\nGoogle’s algorithms are super clever because they serve up the sort of content people want. But it means Google can only give people the content they want if it knows about your business and what you’re offering.\\n\\nOf course, there are some technical aspects to consider. But your best SEO strategy is a long-term communications plan.\\n\\nDo you know what the next six months for your website content looks like? What can you offer your customers other than opening hours and where you’re located?\\n\\nBy developing a digital communications strategy, your website gets updated regularly, which helps Google share your message with the right people at the right time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5XBczMM2nF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Potential customers will find you, engage with you and trust you enough to get in touch.\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W1NCV9CxoK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"You have so many options for interesting content. It could be a thought-leadership piece, event, media release, whitepaper, testimonial—the list can go on.\\n\\nWe have a huge amount of communications tools and angles we can develop to bolster your web presence.\\n\\nGoogle also loves a fast, responsive website. Optimising your website by using the latest version of your content management system will ensure your site is running smoothly and as fast as it can.\\n\\nLikewise, this will make your site more secure and help prevent security breaches (particularly important if you use WordPress).\\n\\nWe also offer long-term website maintenance plans. These include detailed server monitoring and ensuring your CMS and plugins are up-to-date.\\n\\nFor more critical sites, we offer zero downtime code-update deployments.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-v9RKLjPOWn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Talk to us about a long-term strategy for your website so it can be more than just another ‘brochure site’.\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44249,47789,1,'Pretty or powerful? And can you have it all?','2021-09-22 00:15:45','2021-09-22 00:15:45','d765520a-0578-4cc0-a4ea-dfc4a3df3e85',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UxDAMYmx0G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Being a commercial creative means someone is hoping, expecting and paying for a result.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But just because something is creative in its execution doesn’t mean it’s going to be effective in achieving its goal.\\n\\nHere are five pitfalls to avoid when procuring creative services:\\n\\n1. Hiring a single creative, like a designer, to be a whole creative team. Your supplier will end up working in one strength and many weaknesses.\\n2. Procuring from a supplier who can use design software but isn’t a designer. The work will miss the mark despite looking okay.\\n3. Working with a graphic designer who isn’t skilled in the type of design you need (like brand design). You’ll get a pretty logo lacking in brand story and meaning.\\n4. Jumping straight into design without a strategy. You’ll receive design work that’s lovely, even beautiful… but not strategic.\\n5. Failing to define what success looks like. Your supplier’s work will lack purpose. Instead, make sure you have a clear goal that measures the biggest outcome of all: return on investment.\\n\\nSo yes, creative work can be both pretty and powerful. And you can have it all… if you invest in a team of strategically focused creatives.\\n\\nCreative agencies cost more but are teams for a reason. **We\'re much more powerful together than on our own.**\\n\\nJust like a hand of aces versus a single 3.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44251,47791,1,'Seven mistakes people make building websites','2021-09-22 00:21:51','2021-09-22 00:21:51','00f084c2-52c6-4d4f-9912-942abf65fcb5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-anLTeFZY0U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Now is the moment.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The advertising you’ve done, the marketing budget you’ve spent, the countless planning meetings your team has attended—all that time and money you’ve invested has driven a potential customer to your website.\\n\\nAfter months—maybe years—of effort, your potential customer will make their decision in seconds.\\n\\nThey may love what they see and continue to be interested. Or they may leave, with their memory of you going up in smoke and your investment with it.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EfutEvAS20\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"That’s why it’s so important to build an effective website.\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZPpIywfo5M\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Framing a website to contain everything you need is challenging. Some websites become too word-heavy, while others lack structure and narrative.\\n\\nGetting your website right from the beginning can save you a lot of pain in the long run.\\n\\nHere are our tips for tackling website mistakes.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SUHWHfibhh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"1. Unacknowledged expectations\",\"plainText\":\"What do you expect your website to do for you? You want this investment to count, so be informed, decide what you need and be intentional with your allocated budget.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kEhIZbV4lw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"There are only two options—either start with careful planning and consultation and spend a realistic budget, or jump in with assumptions … and experience scope-creep, frustration and the need to pour more money in later. \\n\\nYour time and money (and sanity) are too valuable to waste on option two. So, choose wisely.\\n\\nIt’s also important to understand the purpose of your website. A website for a website’s sake helps no-one. Your business is unique so your website should be, too. \\n\\nMake it crystal clear—state who you are, what you do and what you promise your customers. \\n\\nSet yourself up for success by providing your developer with a clear website purpose, an informed plan and a predetermined budget.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AvlLtsTA5v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"2. A guess is no good\",\"plainText\":\"Analytics, metrics or key performance indicators (KPIs)—they’re all clever ways to study the website user journey.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KbVtpoSNTv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"What do you need your website to achieve? This will depend on what kind of product or service you offer and the kind of experience you want to create for the user. \\n\\nLay out your objectives and match them with KPIs.\\n\\nThere are plenty of ways to get insight into your website. Consider bounce rates, session duration or pages per session metrics. \\n\\nOr you could sharpen your content strategy by watching goal conversion rates of passive to active website users. \\n\\nUnderstanding your metrics and the goals you want to achieve will also help you to understand how your website interacts with its digital ecosystem.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p5FEdYJwJA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"3. It’s not for you\",\"plainText\":\"It might be about you, but the website isn’t for you. \",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VInDUCQqbf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Optimising your website starts with learning what your users are responding well to. How are they getting to your website? What kind of content are they reading? When do they read it? How long are they staying?\\n\\nBy understanding your metrics you can shape a truly effective website experience for your customers. It’s all in the detail—from content creation to search engine optimisation.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-elwxPOwb2f\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"4. Information overload\",\"plainText\":\"Your website is where your potential customers will go to check your credibility. \",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-07RQSQ8ts5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Credibility is about trust. One way to build trust is to position yourself and your organisation as experts. However, credibility isn’t just about what you know—it’s about who you are. \\n\\nInclude stories and testimonials about you and your organisation to avoid information overload. \\n\\nThen, potential customers will leave your website satisfied that you can be trusted ... and they\'re one step closer to doing business with you.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4aZLU4d7lj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"5. Losing the user\",\"plainText\":\"Many people complain about feeling lost on websites. \",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5Up8K6KfhA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The customer journey should be clear. If the information on your website is simple and structured, you can guide visitors on the path you’d like them to take. \\n\\nUse tabs and sub-pages for different categories, and make it logical. For best results, spend time studying user movements and running trials and tests. \\n\\nOver time your predictions will become more accurate as you get to know your audience.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-J6N6kO7pK4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"6. Wasted words\",\"plainText\":\"Capture your customers quickly.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gvCeMnMMmI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"There are some hallmarks we use when writing web copy. Here are a few of them:\\n\\n- short, effective sentences (say the same information with less)\\n- sub-headings and headings containing keywords\\n- everyday words the average reader can easily understand (plain English)\\n- direct language\\n- consistent, logical structuring of information.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9cFms9o1W6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"7. Don\'t be unfriendly\",\"plainText\":\"How does your website display on mobile?\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WNBSOqBQRA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The majority of the time, someone will be visiting your website on their phone (68.1% in 2020 to be exact). That means when it comes to your website design, it\'s not enough that your website simply works on mobile. It needs to be designed with mobile in mind **first**.\\n\\nIf your website doesn\'t look amazing and function seamlessly on mobile, your customers won\'t go looking for their nearest desktop computer...  they\'ll look for another website. \\n\\nWhat kind of service do you give your customers in person? Ensure they experience the same quality on your website, and more importantly, on their phone.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44252,47792,1,'The building blocks of branding','2021-09-22 00:23:34','2021-09-22 00:23:34','f853bbde-2d13-4981-8a07-c27a7e434ac1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UBcW4IgaI5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Through 20 years of branding experience, we’ve come to understand stakeholder engagement is essential for a brand to have cut-through.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We’ve engaged with our clients’ stakeholders for many years and in many ways—ranging from formal, formative market research through to in-depth focus groups, workshops, community forums, brand satisfaction surveys and phone interviews.\\n\\nNo matter the method, what really counts is that we capture how people relate to your brand. That relationship leads to relevance and then the ultimate goal: resonance.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qaQGFaRj3d\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Relationship\",\"plainText\":\"Every great brand is built on relationship.\\n\\nWhen you form healthy relationships with stakeholders, you open yourself up to a range of opinions. Generally, feedback gets more constructive as the relationship grows healthier.\\n\\nIf you’re the brand manager, it can feel a bit like tough love at first—but it does get easier.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IDzmWzpUSE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Relevance\",\"plainText\":\"So much more than a logo, brands are heavy with meaning for stakeholders. And so if the environment changes but your brand doesn’t, the meaning is lost.\\n\\nA lot of the stakeholder feedback we hear about brands is that they’re outdated or lack appeal. Without relevance, your stakeholders no longer feel the love.\\n\\nConstantly retune yourself to your stakeholders and you’ll keep fulfilling their needs.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8Wdlr8QGTN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Resonance\",\"plainText\":\"Resonance is where understanding meets impact.\\n\\nA brand rich with resonance is the holy grail of marketing and, true to legend, few reach it.\\n\\nThat’s because resonance means your brand is a perfect fit for your stakeholders’ environment, pain points, wants and emotional connection.\\n\\nResonance engenders attention and respect, and turns want to need.\\n\\nAnd when stakeholders can’t live without your brand? Happy days.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EdELli6glE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The three Rs start here\",\"plainText\":\"Whether you’re looking to name and brand or rename and rebrand, your brand journey starts with understanding your stakeholders.\\n\\nTalk to us about how to take your first steps.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44253,47793,1,'Want to understand your brand? Ask your stakeholders.','2021-09-22 00:25:28','2021-09-22 00:25:28','619429da-9866-4f85-85ac-351931f3283e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pb6yRuUQJr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":\"\",\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BpDlpLY30k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Whether they are inside, outside, removed or closely involved—stakeholders have the insight businesses need for long-term growth and sustainability.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"If they are a stakeholder, they have a connection with you.\\n\\nAnd like any other relationship, they need to know their connection, time and opinions are valued.\\n\\nIt often takes an open mind to find what works for you and the stakeholder.\\n\\nFinding this place of mutual benefit can lead to business growth and longevity.\\n\\nWe’ve broken down our approach to nurturing stakeholder relationships for meaningful engagement.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-023wqZnDwH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Your stakeholder is anyone who can be impacted by your business.\",\"plainText\":\"Once you really understand this, you’ll start to notice the cycle of impact between the stakeholder and your business. And, this is partly why we begin to engage with stakeholders—to understand how different groups are responding, reacting or behaving.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZC7YPx4oyi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"But who are they, really?\",\"plainText\":\"Now, go deeper to really understand the nuances of your stakeholder groups.\\n\\nYour engagement plan should be detailed enough to allow for different levels of accessibility, and demographic and cultural considerations. The better you nuance, the greater the feeling of respect and care you’ll engender.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4fsgssb3iu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"What do I need to achieve here?\",\"plainText\":\"There are varying degrees of impact across the common types of engagement—inform, consult, involve, collaborate and empower. Every impact is a win for you.\\n\\nBy inviting stakeholders to provide advice and guidance, you are showing interest and genuine regard for their opinions.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-zK1GdW2Vy7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Let’s talk\",\"plainText\":\"A healthy and productive conversation is two-way. We pursue positive and productive conversations with stakeholders because we need to understand stakeholder perspectives, and we need to hear it from them.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wWO0nagqvx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bye for now\",\"plainText\":\"The conversation will close, but the relationship isn’t over. Stakeholders have given their time, effort and reflections. It’s your turn to respond with accuracy, timeliness and balance.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8YdtZLjoMO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"The truth is, these conversations take patience, a steadfast commitment to values, sometimes sacrifice, and always an open mind.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"At NWO, we care about stakeholder engagement because we regularly witness the impact it has on the health of businesses and organisations.\\n\\nIs it important to you?\\n\\nTalk to us about stakeholder engagement today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44255,47795,1,'Top 20 tips for SEO','2021-09-22 00:29:50','2021-09-22 00:29:50','f95be43f-3d0c-4457-ad1b-c9b945b08618',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-P9HDvjQfFI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"GOOD SEO STARTS WITH A BIT OF DIY.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Sure, there are loads of experts and agencies out there that specialise in the field, and many of them do a great job.\\n\\nBut there’s actually plenty you can do yourself before you even need to look for an external supplier to help with your SEO.\\n\\nTo get you started on your next SEO DIY project, we’ve put together a top 20 checklist.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":\"1\",\"fields\":{\"gridItems\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\",\"new6\",\"new7\",\"new8\",\"new9\",\"new10\",\"new11\",\"new12\",\"new13\",\"new14\",\"new15\",\"new16\",\"new17\",\"new18\",\"new19\",\"new20\"],\"blocks\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"1. Do your research\",\"text\":\"Identify key search terms, words and phrases, and check out competitors’ sites.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"2. Work out where you are now\",\"text\":\"As soon as possible, keep a regular record of where your site currently ranks in search results, using various words, phrases and questions.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"3. Work out where you want to be\",\"text\":\"Define your goals early on so you can measure your progress and adjust your strategy as you go along.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"4. Make your content relevant\",\"text\":\"Search engines provide the most relevant results to a searcher’s query, so write content based on what people might search for.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"5. Improve the quality of your content\",\"text\":\"Publish helpful, useful articles, videos and other types of media that people will want to engage with.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"6. Think about user experience\",\"text\":\"Make sure your site is easy to navigate, with plenty of relevant internal links to keep users on your page for longer.\"}},\"new7\":{\"type\":\"6\",\"fields\":{\"heading\":\"7. Ensure your site is responsive\",\"text\":\"Is your website designed to resize for viewing on desktop, tablet and mobile devices? It should be.\"}},\"new8\":{\"type\":\"6\",\"fields\":{\"heading\":\"8. Include plenty of internal links\",\"text\":\"This helps pushes traffic around your site, building higher ‘trust signals’ for Google, and gives your audience more to read.\"}},\"new9\":{\"type\":\"6\",\"fields\":{\"heading\":\"9. Write meta descriptions\",\"text\":\"This short paragraph of text under your page’s URL in search results can really improve the chance of someone clicking on it.\"}},\"new10\":{\"type\":\"6\",\"fields\":{\"heading\":\"10. Include title tags\",\"text\":\"These few keywords describing the page and your brand name tell visitors and search engines what your site is about in the most succinct way possible.\"}},\"new11\":{\"type\":\"6\",\"fields\":{\"heading\":\"11. Tag your images\",\"text\":\"Search engines cannot ‘see’ images but they can ‘read’, so it’s important to describe any pictures you upload to your site.\"}},\"new12\":{\"type\":\"6\",\"fields\":{\"heading\":\"12. Create evergreen content\",\"text\":\"More thoughtful and practical advice-based articles can create better results over the long term. Top 20 list, anyone?\"}},\"new13\":{\"type\":\"6\",\"fields\":{\"heading\":\"13. Consider your domain name\",\"text\":\"Having a ‘keyword-rich’ domain name can improve ranking but can also lead to closer scrutiny by search engines.\"}},\"new14\":{\"type\":\"6\",\"fields\":{\"heading\":\"14. Think about headlines\",\"text\":\"Make headlines as snappy, attractive and descriptive as possible, and stay away from clickbait.\"}},\"new15\":{\"type\":\"6\",\"fields\":{\"heading\":\"15. Turn on comments\",\"text\":\"This helps generate a community of engaged users and, whatever their opinion of your content, you’ll know it’s being read.\"}},\"new16\":{\"type\":\"6\",\"fields\":{\"heading\":\"16. Go social\",\"text\":\"By using social media channels as a genuine way to interact with customers, you can help generate interest in your brand and drive traffic to your site.\"}},\"new17\":{\"type\":\"6\",\"fields\":{\"heading\":\"17. Watch your on-site advertising\",\"text\":\"Intrusive ads can destroy the pleasure of viewing your content and also slow your site down (not good for SEO).\"}},\"new18\":{\"type\":\"6\",\"fields\":{\"heading\":\"18. Avoid keyword stuffing\",\"text\":\"Some search engines will actually penalise you for obviously overusing certain keywords on your pages.\"}},\"new19\":{\"type\":\"6\",\"fields\":{\"heading\":\"19. Be aware of duplicated content\",\"text\":\"If two sites publish identical content, search engines will only index one of those pages.\"}},\"new20\":{\"type\":\"6\",\"fields\":{\"heading\":\"20. Don’t hide links and text\",\"text\":\"Doing things like hiding white keyword-stuffed text on a white background or hiding a link in a full stop is likely to be punished by search engines.\"}}}}}},\"new4\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Follow these tips and you’ll be well on your way up the rankings in no time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44256,47796,1,'Simplifying the complex: Fifteen years of marketing schools','2021-09-22 00:35:00','2021-09-22 00:35:00','82168d97-5988-49ee-8194-a2ef5db99c5a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WAYo0QEnCs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"After 20 years of marketing—including 15 years working with schools across Queensland and New South Wales—I am steadfast in my belief that there is no marketing challenge as complex as that faced by schools.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"In what other industry would you find thousands of individual stakeholders—students, parents, teachers, alumni and more—all with do-or-die expectations?\\n\\nOr an environment that can, quite honestly, change the trajectory of children’s lives?\\n\\nThen you have the two very distinct markets—internal and external—often with very different needs that need to be met with minimal budgets.\\n\\nThe experience of school changed little for nearly a century but, in the past 20 years, it has evolved in such leaps and bounds that today’s parents struggle to recognise it.\\n\\nPhilosophically, there are few industries I can think of that have such a strong evidence base to guide practice—here I’m thinking of teaching and learning—yet the required outcome is often diametrically opposed to it. \\n\\nIt’s little wonder that I find the business of marketing schools endlessly fascinating.\\n\\nOnly this morning I was in another principal’s office, talking through these very complexities. In our conversation, we touched on what I’ve discovered over the years are three bedrock principles every school needs as their marketing foundation. They’re my way of transforming a little of the complex into the simple.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Esbo1iQq5g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"1. Work out what makes you unique\",\"plainText\":\"Marketing and enrolments teams live and die by their numbers. \\n\\nIt is endlessly tempting, then, to try to go wide in your appeal so that you create the biggest possible net. \\n\\nIn practice, though, it means no-one knows what you stand for. \\n\\nThe better alternative is to embrace what makes you unique and then market that hard. You’ll end up attracting families that are the right fit for you and work hard as your ambassadors. \\n\\nInternally, there’ll be great cohesion, too, because you’ll attract and retain great educators who get what you’re about and support it in their words and actions.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-v1FFRTuEFs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"2. Don’t be afraid to look like you’re unique\",\"plainText\":\"If you’re bored one day in your office, try this game. \\n\\nGet ads from three schools, and then block out their hats and uniforms. Can you still tell them apart? \\n\\nIt astounds me that we continue to use sterile, look-alike images—hey, here’s a girl in a lab coat with a test tube as proof that we promote girls in STEM!—that don’t reflect the day-to-day experience of what it is to learn at your school. \\n\\nCelebrate your uniqueness—and set yourself apart from your competitors—by choosing unique visual styles and photography.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cMg5IvARdG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"3. Now stay unique\",\"plainText\":\"Over time, teachers and leaders of schools get to know each other pretty well. \\n\\nPrincipals, in particular, know other schools like bookies know racehorses. The net result in marketing is that your great idea quickly becomes next year’s norm… and after a few years, what was edgy is simply outdated. \\n\\nWise schools invest in a middle ground here. \\n\\nThey start off strong and then review and refresh their brand every year or two. \\n\\nThat way, subtle tweaks don’t destabilise your internal audience but you stay fresh and relevant externally.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3XrIiJiL9w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Want to know more?\",\"plainText\":\"Suzanne advises schools on sustainable marketing strategy that helps them get the most from their internal resources. To chat, phone 07 3334 8340 or email suzanne@newwordorder.com.au.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44258,47798,1,'The 6 steps of content creation','2021-09-22 00:40:44','2021-09-22 00:40:44','c686cff9-b698-47b8-88fa-7901f5ae13bc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-92RCseTSp0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"You know what your business is about. You’ve nailed down your story. You’ve worked out who you want to talk to.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Now you need to add some real value.\\n\\nTime-poor organisations need their content to work across different channels online—including websites, e-newsletters, blogs and across social media. One way to add value to your existing, more sales-focused content is through content curation. Content curation means finding useful content online, curating it for your audience and re-telling it in your voice and with your advice.\\n\\n##### **Here’s how to optimise, write and curate content for your target audience.**\\n\\n###### **Defining your goals**\\n\\nEvery good plan starts with defining what it’s trying to achieve. How do you want your content to define your business? What are you offering your target market? Do you want to be a thought leader in your particular area?\\n\\nContent curation is about meeting your customers where they are and offering them something they’re not getting elsewhere. It’s about finding, gathering and sharing information of value with them; positioning your business and brand as an authority both with original content—your sales offering and business learnings—and information you’ve found and shared online. Participating in conversations that are happening about your field leads to more engagement with your target market, the ultimate goal being to give your brand a voice of value that will see your audience come back again and again for your offering.\\n\\n###### **Getting started**\\n\\nIt’s important to remember that well-executed content curation isn’t about regurgitating content that was already published. Instead, it’s your business’ personal re-telling of a story. As Susan Gunelius wrote for Forbes, the human element of content curation is what makes curated content compelling.\\n\\nTherefore, when offering your audience valuable content, remember to tell your story. What are you saying that’s different? What do you know that others might not? Involve your whole team—not just marketing and sales—and that story will evolve to give your business a truly useful and unique voice.\\n\\n###### **Finding content**\\n\\nHere’s where you get amongst it!\\n\\nWant to know where your target market is looking for information online? Go exploring! Ask them! Discover for yourself where the good stories are being shared. Find out what topics matter to your goals and audience, and go after them.\\n\\nIntegrating content curation into your broader marketing strategy is the way to go here—it legitimises the exercise and gets your team thinking about the value of your brand and how they can add to it. The best place to start is probably your social media accounts. Valuable content is being shared every day on platforms like Facebook, Twitter and LinkedIn. There are also Google alerts and news aggregate sites that can be set up with your special business needs in mind.\\n\\n###### **Be authentic to find your voice**\\n\\nThere is nothing like the instant world of social media to add value and timeliness to your content. Social media has changed the term ‘sharing’ forever, and the opportunities for your brand are endless. It’s important to add your own value to social content—as Mark Lerner says, if you just \'retweet\', or share an article without including your own voice in the post, you’ll fail to distinguish yourself from everyone else who shared that content.\\n\\nHow do you find your voice? Authentically, of course! Offer your opinion and add your advice in areas where you are confident. Try to be friendly and informative, and adopt an approachable tone. Not so confident? Ask questions! Get your community talking and they’ll come back to you.\\n\\n###### **Context and thought leadership**\\n\\nGood content curation provides your audience with context and convenience—that means filtering and explaining what you find online, and rewording it in your voice so it’s useful to them. You don’t always need to be selling, but you do always need to be mindful of your brand and of offering real value. Knowing who your market is and writing in your ‘voice’ allows you to, as J-P De Clerck says, inform, educate, entertain and engage target audiences.\\n\\n###### **Where to share**\\n\\nThere are many ways to share curated content, but the best way is in a mix of your existing ‘sales’ content. E-newletters and blogs offer an opportunity to share curated and original content, and social media is the most instant way to add your voice to a new idea, and also probably the first place your audience will find you. They’ll also find your website, so don’t forget about the curated content opportunities there. Always remember that you should be providing useful information, not just repeating content or working on the hard sell.\\n\\nContent curation is convenient, but it’s also an important opportunity to add value, develop a business voice and grow an online community. What do you think about content curation? Has it worked for you? Got any tips? Let us know.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44260,47800,1,'B2B is dead','2021-09-22 00:49:41','2021-09-22 00:49:41','fbc259bf-42dc-47a5-bebf-0e9f657ea926',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-luIsqIjBj1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"As deaths go, it was a quiet one. Few people knew of its demise.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But there it lay still: the artificial divide between B2B and B2C marketing, gone forever.\\n\\nWhy bother lamenting the dead? Dare I say, it’s good riddance to a dodgy invention.\\n\\nThe idea that marketing business-to-business took entirely different skills and strategies to talking to consumers has its roots back in the early Noughties. The notion, which most marketers sadly still hold, was that because the volume of B2B transactions is so much higher than B2C—if you count every transaction required along a manufacturing supply chain, for example—then B2B branding requirements were stronger, too.\\n\\nConversely, the B2C belief held that the consumers of the world needed entirely different marketing strategies to convince them to open their wallets.\\n\\nTrue, where they differ most is in the justification of purchases. In B2C land, I need to convince myself why I should buy yet another pair of red shoes. (It’s a short discussion.) In B2B, I might be lobbying the board to invest in an expensive new CRM system.\\n\\nBut the truth is both groups share more similarities than differences.\\n\\nYour customers—be they businesses, consumers or both—have similar emotional and logical requirements that must be met. The relationship lifecycle between a purchaser and a brand exists with businesses and consumers alike. Both groups also frequent the same social media spheres, are Google-happy and web-savvy, and require strong brand confidence in order to purchase.\\n\\nThe illusion that you’re selling to a company in B2B should be seen for what it is. In retail or in business marketing, you’re selling to individuals. And each wants to feel that you get them.\\n\\n##### **Long live H2H.**\\n\\nWhich is where yet another acronym is starting to make a play: H2H, or human-to-human marketing.\\n\\nIt espouses the belief that we all, business and retail customers alike, are looking for connection, inclusion and to be understood. If you take that as your starting point—and not your burning need to produce another brochure—then the marketing toolbox available to your business automatically grows.\\n\\nIt means the vast strategies already out there, like relationship marketing and continuous touchpoints, become as relevant to a retail customer as to the business that buys your widgets. And the traditional B2C tools like social media become far more relevant B2B because they help build connections better than a sterile product flyer.\\n\\n##### **Let’s make H2H practical.**\\n\\n**1. Open your horizons**\\n\\nSwitching your mindset to focusing on the individual, human needs of your market means you can open your marketing to all sorts of potential tools. Just because you run a hair salon doesn’t mean you can’t start sending out a monthly email newsletter—if your customers are the kind of people that like to know more about you. And just because you’re an accountant doesn’t mean you can’t lead an industry group on LinkedIn or advertise on Facebook—if that’s where you’ll find the types of sales you want. Think about your customers, and let their needs lead you.\\n\\n**2. Make your customers feel**\\n\\nSales overwhelmingly come from relationships in my business, so meeting my clients’ emotional needs is a no-brainer. If my clients are happy, they’ll stay.\\n\\nBut even if your sales rely heavily on good old-fashioned foot traffic, it’s relationships that will lure them and keep them. So, in every tool you use to get to market, make sure you get the emotional kicker in. Empathise and prove you understand their needs.\\n\\n**3. Ask your employees what they think**\\n\\nIt’s one thing to make marketing decisions from an ivory tower. Chances are it’s your staff who really know how your clients think, or how your customers behave. So get their ideas and integrate it into your marketing. Let them drive your innovation.\\n\\n**4. Finally, listen to your customers**\\n\\nThere is marketing gold in every intentional conversation you have with a customer. Ask the ‘why’ that follows the tough questions: Do you feel safe with my business? Do you like dealing with us? Would you refer us to your friends? The answers will revolutionise how you think about marketing to your customers.\\n\\n---\\n\\n*Written for the February 2014 issue of Inform, the monthly magazine of the Chamber of Commerce and Industry in Queensland.*\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44262,47802,1,'8 important marketing questions for every business','2021-09-22 01:04:24','2021-09-22 01:04:24','5e7fdd73-6af9-477f-a877-bb17ecf8f498',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VzKHBkk2Ca\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Marketing communications in business is all about attracting and retaining customers. We do it for dozens of Australian companies every day, and the bigger the company, the tighter the marketing strategy governing their communications—because they know customers are fickle, and competitors are waiting to pounce on any weakness.\\n\\nThe same philosophy of tight strategy and execution should drive your business. Effective marketing communications must be an essential part of your core business strategy to ensure you’re pushing the same, consistent message through every aspect of your organisation.\\n\\nBut it’s not always so easy to go it alone. If you’re in a small business and know you need to step up, here’s a handy checklist of the marketing questions you need to answer to keep your customers in tune with you—and your competitors at bay.\\n\\n##### **Who are my existing customers?**\\n\\nThe best way to sell to your customers is to first understand who they are, why they buy from you, and what value they expect from you. And the best way to learn this? Listen to them. Marketing communication begins with good customer relationships, which are almost like your own form of market research.\\n\\nWhen you talk to your customers, you’ll learn things like your customers’ age, income, education, how often they buy from you, what their buying triggers are and how they’re influenced. This is a valuable step in honing your marketing message, so don’t be tempted to think you already know the information if you’ve been in business for a while. Every customer conversation will add another layer to your understanding.\\n\\n##### **Who are my potential customers?**\\n\\nIt’s just as critical to have a very clear understanding of your desired target market and new customers. Get as detailed as you possibly can. The more specific you are, the better you can develop messages for them.\\n\\n##### **Who are my competitors?**\\n\\nUnderstanding who competes for your customers—and what they’re offering—is vital. Get very familiar with every aspect of your competitors’ businesses—including their reputation, prices and marketing material. This knowledge will help you position your marketing communication relative to how your customers are already being targeted and differentiate yourself in the market.\\n\\n##### **What am I trying to achieve?**\\n\\nUnderstanding why you’re communicating with your customers is essential. Are you purely after quick wins? Or preparing the ground for a new product or stronger relationships? The rationale and potential value for any marketing effort should determine how much money you need to spend, and where it’s best spent.\\n\\n##### **What am I trying to say?**\\n\\nThis is where everything comes together. You must now develop clear, key messages that talk up your product or service, meet the expectations and needs of your new and existing customers, and differentiate yourself from your competition.\\n\\nMake sure you have no more than five key messages—in fact, the fewer the better—and make them specific and meaningful. That’s how you stand out in the crowded market. Ensure your customers are aware of your business and its products or services, and why they should care (e.g. What’s in it for them? And what are the true benefits?). These benefits should be factual and real. It’s important not to overload customers with information, but rather to be clear and articulate.\\n\\nAll of your marketing communications should include a strong call to action: What is it that you want customers to do once they’ve interacted with you? Leave them in no doubt and make it easy for them.\\n\\n##### **What’s the right channel?**\\n\\nThere’s no doubt that it’s a busy marketplace when it comes to finding the perfect place to share your marketing messages. The challenge here is in focusing and narrowing your communication—and finding the right time and place to connect with your customers.\\n\\nMany marketers are now jumping on social media networks, but that might not be where your customers can be found. It’s important that you understand how and when they want to hear from you, and use that information to foster a true customer relationship.\\n\\n##### **Is my strategy integrated?**\\n\\nCommunicating in an integrated way across all channels (such as website, emails and brochures) means your brand will become better known and understood. Integration means that every time your customers hear from you, they get the same feel for who you are. By creating consistent, strong marketing communications, your customers will identify and remember you into the future.\\n\\n##### **Finally: Am I communicating with genuine creativity?**\\n\\nCreativity isn’t about paying your local print shop to pull together a flyer with your logo on it, or using a WordPress template to build your long-overdue website. They might be tactics that you use, but they’re not what creativity is really about.\\n\\nTrue creative thinking pulls together everything you know about your business, your goals and your customers into a single, cohesive package that cuts through, connects and resonates. Creativity distills everything down to the right words, images and design so that your marketing collateral has the right impact. No business can afford to skimp on this stage because getting creativity right means you’ll get the results you’re really after: maximum return on your marketing investment.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44264,47804,1,'What the artist breaks','2021-09-22 01:47:15','2021-09-22 01:47:15','e5ac9fa0-3565-4fab-b9e3-7cbe886253b6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QjbPRQcxAH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"It’s arguable that copywriting is at the heart of all advertising and marketing today. We remember taglines and recall jingles; and copy is the beginning of most brand stories. But, boy, is it fantastic to look back at a time when it really was all about the words.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Bill Bernbach was the founding creative director of legendary Manhattan ad agency Doyle Dane Bernbach (DDB). He came out with quotes like:\\n\\n“Advertising is fundamentally persuasion and persuasion happens to be not a science, but an art”, and\\n\\n“Word of mouth is the best medium of all”, and\\n\\n“Rules are what the artist breaks; the memorable never emerged from a formula.”\\n\\nThat’s really provocative stuff that makes you nod your head at the truth and simple power of his thinking—and imagine how inspiring but uncompromising a boss he would have been. What an exhilarating time to be writing.\\n\\nBernbach not only had a way with a turn of phrase, but he also really set up the structure of creative teams for marketing and advertising, and was, of course, part of the inspiration for Mad Men. But mostly, he was a writer. And what a writer he was. His firm revolutionised advertising copy and laid out the early foundations for brand storytelling through engaging narrative and brand persona development. We can, and have, all learned from these guys.\\n\\nIn the 1960s, DDB took on Volkswagen as a client and began creating a series of print ads that referred to the VW as a “lemon” and encouraged consumers to “think small”. The copy, by the incomparable Julian Koenig, starts out saying “This Volkswagen missed the boat. The chrome strip on the glove compartment is blemished, and must be replaced.” Not exactly sales speak.\\n\\n##### **It was funny. It was clever. And it was ground-breaking.**\\n\\nFor the rest of the decade, VW kept their unconventional campaign rolling. DDB’s strategy of turning seeming faults into benefits was a huge hit. One ad didn\'t even include a picture of the little lemon: “No point in showing you the 1962 Volkswagen. It still looks the same.”\\n\\nMuch has been written about the ads, and you can take a look at a bunch of them here if you like. It was ranked the best advertising campaign of the twentieth century by Ad Age, and it deserves the title. This sort of brand bravery is rare and may be a little of its time, too. The truth is that the power is all right there, in the copy, which exists to inspire us. Last words to Mr Bernbach himself:\\n\\nYou can say the right thing about a product and nobody will listen. You\'ve got to say it in such a way that people will feel it in their gut. Because if they don\'t feel it, nothing will happen.\\n\\nWhat is your brand really saying?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44266,47806,1,'Righting writing','2021-09-22 01:51:12','2021-09-22 01:51:12','fe041795-a270-4eb3-9836-a2f381db5d71',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WiIX62eIQK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Uni was when I found my purpose in life. A passionate lecture on the very first day was my ‘eureka!’ moment that then propelled me through a double major in communications, 10 years in a newsroom and countless more in corporate writing.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But it all could have come tumbling down in the stern and unyielding face of just one lecturer: Ros Petelin.\\n\\nLike most kids who gravitated toward the arts in school, I’d been feted as a bit of a writer. I wrote installments of unreasonably sappy romance novels late at night and distributed copies to peers on the train the next morning. I won an academic scholarship for my writing (although nearly lost it many times for my maths).\\n\\nIt was left to Ros—now an associate professor in the School of English, Media Studies and Art History at UQ, and a well-respected writer in business communication—to tear my self-made kingdom down, word by word, until I could rebuild it on more solid foundations.\\n\\nHere’s what I now know to be true about writing effective business words.\\n\\nThanks, Ros. I hope you’re grading more kindly these days.\\n\\n##### **Trick #1: Talk like your audience**\\n\\nIf you’re writing for your business, forget formal words and don’t allow fear of failure—or grammar—to stop you writing. Instead, a trick I’ve long used in business writing is to hear a typical customer’s voice in my head, and then to write like they talk.\\n\\nLike acting, the craft of writing involves immersing yourself in the character. In this case, the character is your customer—and by sounding like them, you’re more likely to draw them in.\\n\\n##### **Trick #2: WIRMI**\\n\\nI have Ros and her fondness for US author Linda Flowers to thank for WIRMI. The acronym ‘What I Really Mean Is’ is extraordinarily helpful in bringing clarity to business writing, and it’s a tool I still use daily.\\n\\nYou can use WIRMI as a catchphrase at any point of your writing—when you’re trying to work out exactly what you want to say, and when you’ve written something and you need to ensure it says what you want, clearly and well.\\n\\nIf you’re not comfortable with writing—and plenty of people would rather line up for a root canal than write an essay—this is a great way to check you’re on track.\\n\\n##### **Trick #3: So nice you read it thrice**\\n\\nFinally, if you’re satisfied that what you’ve written is the best you can do, read it through once more—and then put it down.\\n\\nAfter a few hours—or a few days, if you have the time—pick it up and critically read it again. Make a few adjustments. Delete a few words. Then hide it again.\\n\\nOn the third go, after another break, pretend you’re the customer and read it aloud to yourself as though you’re seeing it for the first time. If you have no more changes to make to it, it’s good to go. But chances are, you’ll think of a few.\\n\\nWhy at least three reads? Professional writers and editors know better than anyone that great writing comes from multiple drafts, not a single session of inspiration. Taking a break in between drafts—although hard to do in a busy work day—can be the key to achieving great results.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44268,47808,1,'Righting writing','2021-09-22 01:51:29','2021-09-22 01:51:29','da017af1-0eba-48f8-8359-7fce21f0006a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WiIX62eIQK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Uni was when I found my purpose in life. A passionate lecture on the very first day was my ‘eureka!’ moment that then propelled me through a double major in communications, 10 years in a newsroom and countless more in corporate writing.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But it all could have come tumbling down in the stern and unyielding face of just one lecturer: Ros Petelin.\\n\\nLike most kids who gravitated toward the arts in school, I’d been feted as a bit of a writer. I wrote installments of unreasonably sappy romance novels late at night and distributed copies to peers on the train the next morning. I won an academic scholarship for my writing (although nearly lost it many times for my maths).\\n\\nIt was left to Ros—now an associate professor in the School of English, Media Studies and Art History at UQ, and a well-respected writer in business communication—to tear my self-made kingdom down, word by word, until I could rebuild it on more solid foundations.\\n\\nHere’s what I now know to be true about writing effective business words.\\n\\nThanks, Ros. I hope you’re grading more kindly these days.\\n\\n##### **Trick #1: Talk like your audience**\\n\\nIf you’re writing for your business, forget formal words and don’t allow fear of failure—or grammar—to stop you writing. Instead, a trick I’ve long used in business writing is to hear a typical customer’s voice in my head, and then to write like they talk.\\n\\nLike acting, the craft of writing involves immersing yourself in the character. In this case, the character is your customer—and by sounding like them, you’re more likely to draw them in.\\n\\n##### **Trick #2: WIRMI**\\n\\nI have Ros and her fondness for US author Linda Flowers to thank for WIRMI. The acronym ‘What I Really Mean Is’ is extraordinarily helpful in bringing clarity to business writing, and it’s a tool I still use daily.\\n\\nYou can use WIRMI as a catchphrase at any point of your writing—when you’re trying to work out exactly what you want to say, and when you’ve written something and you need to ensure it says what you want, clearly and well.\\n\\nIf you’re not comfortable with writing—and plenty of people would rather line up for a root canal than write an essay—this is a great way to check you’re on track.\\n\\n##### **Trick #3: So nice you read it thrice**\\n\\nFinally, if you’re satisfied that what you’ve written is the best you can do, read it through once more—and then put it down.\\n\\nAfter a few hours—or a few days, if you have the time—pick it up and critically read it again. Make a few adjustments. Delete a few words. Then hide it again.\\n\\nOn the third go, after another break, pretend you’re the customer and read it aloud to yourself as though you’re seeing it for the first time. If you have no more changes to make to it, it’s good to go. But chances are, you’ll think of a few.\\n\\nWhy at least three reads? Professional writers and editors know better than anyone that great writing comes from multiple drafts, not a single session of inspiration. Taking a break in between drafts—although hard to do in a busy work day—can be the key to achieving great results.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44449,47989,1,'Reasons to Stay','2021-09-23 23:14:08','2021-09-23 23:14:08','06066bcc-bb3c-49ed-8d71-76f291991fee',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Conversations save lives',NULL,NULL,'Our agency purpose—to make a meaningful difference to people’s lives—rings no truer than this campaign. Conversations can be lifesaving. The Reasons to Stay campaign drives this message to remind people to reach out and find their reasons to keep living.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Wuk6XROt8C\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19060\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vjXnYnypEU\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Suicide takes around eight Australians from us every day and it needs to stop.\\n\\nBrisbane North PHN commissioned us to join the fight against suicide and produce a powerful digital campaign, speaking to people at risk of suicide and to their friends and family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xEmYfpUPYn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19064\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19066\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new3\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19067\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new4\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19068\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447109\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hlukn3QtpP\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The concept and campaign name of Reasons to Stay emerged from our conversations with people who have lived experience of suicide—both survivors and families of those who had passed away.\\n\\nThis prevention campaign targeted two specific groups: those at risk of suicide themselves and the friends and family around those at risk.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CYFHnSDjBC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19062\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GgXhbYC3Wx\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Open hearts and minds from beginning to end\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Presenting our creative concepts to these groups enabled us to test and hone visual directions and key messages.\\n\\nWe further refined the work and key members of the focus groups reviewed the results and gave their blessing to the final approach that appears in the campaign videos, digital ads and website.\\n\\nWe also worked with other organisations working across niche groups within our target market to ensure we were inclusive and respectful of their individual efforts in this space.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-trgV3eAZYY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"19081\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UvCFl0uQ9c\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our team found the work has a particular significance, specifically in its potential to help keep people in the world.\\n\\nThe PHN’s intention—and ours—is to see this campaign spread far beyond the northern boundaries of Brisbane and make a difference to people’s lives everywhere.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lo0qiknCPj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19061\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44450,47990,1,'Pivotus logo and design background','2021-09-24 01:35:37','2021-10-05 00:51:46','9ec02be3-bd52-465f-8967-019e46c8e01c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x737_crop_center-center_82_line/21_Pivotus1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1474_crop_center-center_82_line/21_Pivotus1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x614_crop_center-center_82_line/21_Pivotus1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1228_crop_center-center_82_line/21_Pivotus1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x491_crop_center-center_82_line/21_Pivotus1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x983_crop_center-center_82_line/21_Pivotus1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x368_crop_center-center_82_line/21_Pivotus1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x307_crop_center-center_82_line/21_Pivotus1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x737_crop_center-center_82_line/21_Pivotus1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1474_crop_center-center_82_line/21_Pivotus1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x614_crop_center-center_82_line/21_Pivotus1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1228_crop_center-center_82_line/21_Pivotus1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x491_crop_center-center_82_line/21_Pivotus1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x983_crop_center-center_82_line/21_Pivotus1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x368_crop_center-center_82_line/21_Pivotus1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x307_crop_center-center_82_line/21_Pivotus1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":737,\"3072\":1474,\"1280\":614,\"2560\":1228,\"1024\":491,\"2048\":983,\"768\":368,\"640\":307},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"5000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAHABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAwb/xAAcEAACAQUBAAAAAAAAAAAAAAABAgADBBIhIhP/xAAWAQEBAQAAAAAAAAAAAAAAAAADAgT/xAAYEQADAQEAAAAAAAAAAAAAAAAAAhEBUf/aAAwDAQACEQMRAD8AnuktcS3L7AE0StQtqrOhCi5pemsZVDP/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#163655\",\"#ab8984\",\"#6c526a\",\"#8194a4\",\"#4c8cbc\"],\"lightness\":41,\"placeholderWidth\":1536,\"placeholderHeight\":737,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44452,47992,1,'Pivotus brochure cover and four inside pages','2021-09-24 01:35:59','2021-10-05 00:51:21','f045a6ec-0e43-4e37-9ad3-4e51c7c2859d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1105_crop_center-center_82_line/21_Pivotus3_2021-09-24-013559_tirx.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2211_crop_center-center_82_line/21_Pivotus3_2021-09-24-013559_tirx.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x921_crop_center-center_82_line/21_Pivotus3_2021-09-24-013559_tirx.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1843_crop_center-center_82_line/21_Pivotus3_2021-09-24-013559_tirx.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x737_crop_center-center_82_line/21_Pivotus3_2021-09-24-013559_tirx.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1474_crop_center-center_82_line/21_Pivotus3_2021-09-24-013559_tirx.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x552_crop_center-center_82_line/21_Pivotus3_2021-09-24-013559_tirx.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x460_crop_center-center_82_line/21_Pivotus3_2021-09-24-013559_tirx.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1105_crop_center-center_82_line/21_Pivotus3_2021-09-24-013559_tirx.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2211_crop_center-center_82_line/21_Pivotus3_2021-09-24-013559_tirx.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x921_crop_center-center_82_line/21_Pivotus3_2021-09-24-013559_tirx.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1843_crop_center-center_82_line/21_Pivotus3_2021-09-24-013559_tirx.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x737_crop_center-center_82_line/21_Pivotus3_2021-09-24-013559_tirx.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1474_crop_center-center_82_line/21_Pivotus3_2021-09-24-013559_tirx.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x552_crop_center-center_82_line/21_Pivotus3_2021-09-24-013559_tirx.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x460_crop_center-center_82_line/21_Pivotus3_2021-09-24-013559_tirx.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1105,\"3072\":2211,\"1280\":921,\"2560\":1843,\"1024\":737,\"2048\":1474,\"768\":552,\"640\":460},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"7500\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAALABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAIF/8QAIBAAAgICAgIDAAAAAAAAAAAAAQIDBAURABITFCExUf/EABYBAQEBAAAAAAAAAAAAAAAAAAMCAP/EAB0RAQACAgIDAAAAAAAAAAAAAAEAAhEhA0EEEiL/2gAMAwEAAhEDEQA/AHWcjkkzBCTy+AWCvUAEaB5qbskvGOPM2L2XWnbqpO7Dyk66r8Eb5WQFeoIWsmJNWpBLZZ3jDNstvZ+/3iXqV2SOO9k9V1A79nKRGcLJ0fS9lB1wzYxvH+q2Xqf/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c0c7d8\",\"#24374d\",\"#704b55\",\"#bc7d51\",\"#629b96\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":1105,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44453,47993,1,'Pivotus','2021-09-24 01:36:46','2021-09-24 01:36:46','93acf663-809b-4e48-bade-f82834dfd842',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a pivot?',NULL,NULL,'After rapid growth in recent years, My Media Trading Desk (MMTD) hit the pause button and engaged NWO to ask many of their valued clients: What do you really think of MMTD? Their clients’ generous answers both delighted MMTD and offered a mandate to change and grow. Pivotus is their response.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NhnaCQNxpw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47990\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-B78dz1rmC2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"But what do your clients really think?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"NWO began the rebranding process by surveying MMTD’s clients. Commonly held by all of their clients was great regard for their honesty, their industry knowledge, and their unbreakable commitment to exceptional customer service.\\n\\nClients also said they wanted to get deeper insights, beyond the fast and accurate data and delivery MMTD were already known for.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AlIqZXoFkr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47763\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ulVnymquUW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Why Pivotus?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"MMTD needed a new brand to drive their reputation for quality data, strategic advice and superior customer experiences.\\n\\nThe brand needed to convey a clear promise: we’ll rapidly measure and pivot to maximise your media spend returns.\\n\\nTo pivot is to turn on a point—and there’s no better metaphor for how they pivot digital media to get the best possible results for their clients.\\n\\nPivotus is also a call to action: Pivot your brand with their team—because they are nimble, fast and focused in a rapidly changing market.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MJZcxjyvrL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47761\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-w74pYr8Ehf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Founder and CEO Michael Petersen said the new brand better reflects market expectations of their firm and his team’s commitment to a superior customer experience.\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VLVB6hcgiC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47992\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GXT7RzNKoY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47764\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44455,47995,1,'Department of Transport and Main Roads','2021-09-24 01:38:36','2021-09-24 01:38:36','c5dd2e1d-591f-46b5-8351-fd8f1bb0bb05',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'How Queensland Tavels',NULL,NULL,'The Department of Transport and Main Roads has measured how, where and why Queenslanders travel since 1976. How Queensland Travels was the first time all of this research had been revealed together.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xiMuwH0qUn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47768\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UGKKHcWkDX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"We crafted a visual metaphor for this important story by enlarging infographic iconography, making it 3D and placing it into real world situations.\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ykadeGb8YM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/145833141?h=da493c8de8&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wXJAJa8GTY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\",\"plainText\":\"The result is a metaphor for the role of data in the real world, especially as it relates to transport.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MQiJ46BCqv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47767\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IXjmqTVmWl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\",\"plainText\":\"Our deliverables included an interactive PDF—written, edited and designed by our team—and the beautiful 3D animated video showing the 3D icons moving in the real world.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44457,47997,1,'Aseeos brochure','2021-09-24 02:00:16','2022-06-23 03:27:28','72b423b9-33a6-4b8b-9d1a-dc41ebec9d2c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Asseos-brochure2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Asseos-brochure2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Asseos-brochure2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Asseos-brochure2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Asseos-brochure2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Asseos-brochure2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Asseos-brochure2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Asseos-brochure2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Asseos-brochure2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Asseos-brochure2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Asseos-brochure2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Asseos-brochure2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Asseos-brochure2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Asseos-brochure2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Asseos-brochure2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Asseos-brochure2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":10417,\"originalImageHeight\":6250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABAb/xAAjEAABAwMCBwAAAAAAAAAAAAABAgMRAAQFMbETITI0cnPh/8QAFQEBAQAAAAAAAAAAAAAAAAAAAAH/xAAXEQEBAQEAAAAAAAAAAAAAAAAAQQEC/9oADAMBAAIRAxEAPwCly9+9avBLTsEqkiNBA+0DLS5JKOKvmoQJOpoB5ruR4p3NSrCXOi19o2pq8v/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#cdcbc9\",\"#868384\",\"#57433c\",\"#886958\",\"#6b6c6d\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44458,47998,1,'Aseeos','2021-09-24 02:01:06','2021-09-24 02:01:06','128a4abe-a823-4d3b-8a50-4559b79b72b6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Delivering for disruptors',NULL,NULL,'Aseeos rebranded to transform its 10-year-old installation business into an industry-disrupting model that solves age-old industry problems of supply, quality and budget overruns. We worked closely with the team to take its core brand elements and develop a full range of collateral, including signage, brochures and catalogues, video, marketing, events and website.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bmUfyXmDcz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47997\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fyTxfCvyJr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47773\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WYeceTl1wB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/194746924?h=02b6e594f2&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44463,48003,1,'These are a few of our favourite brands','2021-09-24 04:59:42','2022-08-08 06:56:04','98beedd9-3620-4120-aa03-efaa134bb35c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4Kng0ZJkmt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"I asked the team at New Word Order to think of a brand to which they are unwaveringly loyal.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Here\'s what they said.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fCc8knIn7z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Andrew\",\"plainText\":\"[**ASICS**](https://www.asics.com/au/en-au/). Since Mum and Dad spoiled me when I was 12, these are the only sports shoes I buy. They last forever and are Australian. Luckily they make specialised hockey shoes as well!\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BP6fkJyA6u\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kimi\",\"plainText\":\"[**Jatz**](https://www.arnotts.com/products/crackers)! The most versatile cracker that suits all and any occasion! You got a dip? Jatz. A soup? Dip a Jatz in. A fancy, artisanal soft cheese? Crack the Jatz out. A simple cheddar cheese? Jatz it. Feeling really hungover and can\'t keep anything down but need to eat something so you can muster the strength to order a burrito on Uber Eats? Jatz it, baby.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Yr3xX8UNUq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Tim\",\"plainText\":\"Super obvious one but [**Apple**](https://www.apple.com/au/). Everything from their product design and UI right through to their bricks and mortar storefront is meant to make you ‘think differently’ as per their brand promise, but at the same time give you a sense of familiarity. I’ve dabbled with more phones and laptops than I care to mention but will always come back to Apple. That said, iTunes sucks!\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WePs4cQeU3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Lynn\",\"plainText\":\"I can be impulsive by nature but the one thing I am never impulsive about is my [**Impulse**](https://www.unilever.com.au/brands/beauty-personal-care/impulse/) Merely Musk deodorant. I have used this deodorant since I can remember because it smells good and stops me smelling bad! I never worry about BO when I have my Impulse on!\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kFDk9QaMtq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Jo\",\"plainText\":\"[**RM Williams**](https://www.rmwilliams.com.au/). I got my first pair of boots on arrival to \'Straya as I’d heard great things and love a good Chelsea boot. After 17 years, I am only on my third pair, which shows you the quality and craftsmanship that goes into the RM brand.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qjkDIEMMe3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kat\",\"plainText\":\"[**The Iconic**](https://www.theiconic.com.au/). Their customer service/shipping options/returns policy is so user friendly and far outshines any competitors. They make the process of purchasing and returning so easy that I’m happy to throw my money at them. I’m sure they would lose money on the shipping/returns too, but make it back with the volume of sales from happy customers like myself.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-nXicTrGS5B\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bruce\",\"plainText\":\"[**The Dirt Company**](https://thedirtcompany.com.au/)\'s laundry detergent. I like the idea that not everything we buy has to \'cost the earth\' and Dirt have not only made a more eco-friendly washing detergent, but you can send their packaging back to them and they will reuse it. Their highly concentrated detergent won\'t harm the environment and the reusable packaging means a whole lot of plastic is not going into landfill or waterways. Another company that shows you can have a successful business while still protecting the planet.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ieCD98S7up\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bec\",\"plainText\":\"I found this tricky as I am a bit of a brand tart, and I have been disappointed by a few brands in the past who have not lived up to my expectation (“Nooo we vehemently don’t and will never test on animals…but we will sell out to the big company who does”) BUT a brand I have stayed loyal to is [**Vegemite**](https://vegemite.com.au/).\\n\\n– I loved it as a kid—I suspect the 50s jingle had more to do with that than the taste. Mum and dad regretted introducing us to that song with our robust young lungs joyfully belting it out over and over again on long car trips.\\n– I loved it as a young adult—that black tar smeared on toast. It was post-party comfort food and it was a cheap meal (with Vitamin B!). It made you feel better, like you could go on.\\n– I loved it as a slightly older adult when living abroad—Vegemite toast was like a hug from home. How happy was I when I realised you could get it everywhere and it still tasted the same, unlike Cadbury chocolate. There\'s that brand disappointment!\\n\\nI don’t know that Vegemite is the healthiest food group or even a brand with the most integrity, but I have an emotional connection to that bold brand of yellow, red and white with its tarry contents. It tastes so good on toast and even gives a stir fry an interesting edge. It’s stayed pretty consistent in a world that has changed so much, and as an Australian living abroad it’s part of your heritage and your identity. What’s even better, the brand has come back home to Australia.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dSCs5J35lI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kerry\",\"plainText\":\"I\'m loyal to the US hair care brand [**DevaCurl**](https://www.devacurl.com/us). It has been the only brand to date that has been able to calm my crazy hair and embrace my God-given curls. Of recent times, DevaCurl have been dragged through the courts as many people have claimed it makes their hair fall out. But I have kept on buying it from the US after 5 years of use and I still have enough hair to go around, so somehow I don\'t think it is a problem for me.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aPLfD479sh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Liam\",\"plainText\":\"I tend to enjoy a little cheating on my normal choices. But one brand I’ve stuck with since my teens is [**Ray-Ban**](https://www.ray-ban.com/australia) sunglasses. I like that their styles never stray too much from the original designs and they don’t follow trends. I’ve been gifted \'luxury fashion\' brand sunglasses before and they are more about getting their fancy name or logo on the product than anything else—the quality is dubious and the style trends come and go. Ray-Ban don’t try to be overly fashionable, they work well and look good. Proud middle-aged man moment for me was after I had bought a new pair of Ray-Bans overseas and in my first week back in Brisbane the cool hipster barista at the coffee shop said to me “Love your sunnies… they’re on point”.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qhin1NvFDx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Ryan\",\"plainText\":\"[**Patagonia**](https://www.patagonia.com.au/). It lasts for ages and they actually fix stuff. I had a pair of hiking pants that got hammered in Nepal and they fixed them for me. They also give 1% of sales back to conservation efforts. Their stuff also just seems to fit me really well.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UgAjx4JylF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Suzanne\",\"plainText\":\"[**Kawai**](https://kawai.com.au/) pianos is mine. I’ve played for 45 years and, no matter where I find a Kawai, the touch and the sound is consistent. The Kawai is smooth and sonorous. Love that it’s been so consistent for so long.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8UXqqjffzF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Scott\",\"plainText\":\"Tim took mine—Apple has been the most consistent brand in my life since we started NWO (and before, too) and crossed over seamlessly into my personal life as well. Their stuff works, lasts, is simple to use and is beautiful to look at, use and hold. But if I have to pick a different one I’d pick [**Nudie Jeans**](https://www.nudiejeans.com/). Like Patagonia they repair for free, they give you money for your old pair and resell it to save waste. And, their jeans just always fit me in a way no other ones ever have.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-v0xY9fvU6u\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kate\",\"plainText\":\"[**IKEA**](https://www.ikea.com/au/en/) is a Swedish wonderland. For me there’s nothing better than a free Saturday afternoon, barrelling down the M1 towards the glorious blue and yellow castle. From beginning to end the experience is flawlessly designed—from the carpark, to the food, to the warehouse, to the satisfaction of sitting on the couch you spent the past hour bolting together. Every aspect of the IKEA brand is designed to hug your mind, body and soul. No brand can wrap you in a cozy $5 throw like IKEA can.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uRfO2vtwj8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Margaret\",\"plainText\":\"[**Haagen Dazs**](https://www.haagen-dazs.com.au/) ice cream. No flavour ever disappoints and that cream base… I had my first HD on Singapore Airlines when I was 17 and I ate four in row. (Tip: ask four different air hostesses.)\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kesJqAugGq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bree\",\"plainText\":\"I regularly drive out of my way to stop at [**7-Eleven**](https://www.7eleven.com.au/) for fuel. I wouldn\'t even consider going anywhere else, and the reason why is so simple: the My 7-Eleven app. The lock-in price feature is a game changer and I get a thrill every time I see the price on the EFTPOS machine and how much lower it is than the price on the pump outside. It almost makes me enjoy buying fuel.\\n\\nThe Krispy Kremes don\'t hurt either.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-K1FhEue9Fp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As you can tell from the kinds of brands they chose, your brand doesn\'t have to be flashy or sexy. It just has to be true to itself and deliver on its promises, consistently and with a bit of personality.\\n\\n*Disclaimer: New Word Order is not sponsored by or partnered with any of the mentioned brands.*\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'These are a few of our favourite brands','I asked the team at New Word Order to think of a brand to which they are unwaveringly loyal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44464,48004,1,'Hear the equality stories from NWO women copy','2021-09-24 04:59:43','2021-09-24 04:59:43','5427ede0-49bf-47be-bc9a-c66cd2d6ee4a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Wernf3qqvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"International Women\'s Day 2021\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We can all choose to challenge and call out inequality. We can all choose to seek out and celebrate women\'s achievements. Collectively, we can all help create an inclusive world. \\n\\nFrom challenge comes change, so let\'s all choose to challenge.\\n\\nThe 2021 theme for International Women\'s Day is #choosetochallenge. We asked the women of NWO what this means for them.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dQqtfQZh3I\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17131\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZSm70uSTq5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Jo Penney: We don\'t need titles\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"As a female with short hair, I am often referred to as ‘sir’.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"This occurs mostly by flight attendants who take a quick glance and assume, rather than just offering a friendly ‘good morning’ or ‘good evening’ and avoiding their own embarrassment when they realise their mistake.\\n\\nOnce, the same flight attendant who greeted me to the plane was so embarrassed she could barely offer me tea or coffee later in the flight.\\n\\nIt’s silly and avoidable, and I find it quite funny and entertaining to see which way it will go.\\n\\nFor others, though, it can be an awful embarrassment that can easily be avoided by removing titles.\\n\\nSo, this International Women’s Day, I’m choosing to challenge all of us to end their use.\\n\\nI’m a proud female but I don’t feel the need to be referred to as madame, ma’am, mademoiselle, etc. It’s old-fashioned and classist.\\n\\nAnd as a proud LGBTI woman, I am extra aware that titles can isolate and sideline—not encourage and respect—people for whom gender and identity has been hard-won.\\n\\nLet’s talk our walk. Let’s end titles for good.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oVs7jOKhCm\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17127\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-823iS7DNes\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Kat Scott: The courage to listen\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"I’ve always thought the conversation around challenges women face was about finding your voice and speaking up; that strong, independent women needed to find the confidence to make their voices heard.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The older I get and the more the modern world allows us to see through the structures of society, economics and politics, I realise the conversation is really about finding the confidence to listen to those voices.\\n\\nYou see it every day in business, TV, music, media and social situations that when there is a woman who stands up and says how she feels, she is perceived as “too much”.\\n\\nI am guilty at times of not hearing other female voices and, worse than anything, sometimes of not even hearing my own voice.\\n\\nDespite thinking of myself as a very headstrong, intelligent and confident person, I tell myself to “tone it down” because I’m being “too much”.\\n\\nI want to see people rising to the challenge of actively listening to those female voices and perspectives, not because they are female but because they are equal.\\n\\nEvery person should be offered the same platform, the same ears and the same opportunities—if we choose to take them.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YdYo9ey7f6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17124\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jXUudS4IzN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Rebecca Holman: Let\'s keep choosing to challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Here’s to the great women who kicked it all off.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"They challenged previously held societal norms, at great personal and physical cost, to give us the right to vote, the right to marry who we like, the right to choose our own careers, to be independent and to move closer to gender equality.\\n\\nThe spirit of these pioneers lives on, and the hard and uncomfortable work continues in many forms with each of us.\\n\\nAll of us can keep choosing to challenge each other—woman to man, woman to woman, man to man—in our everyday lives.\\n\\nHere’s to the mums, dads and those very special teachers who nurture our kids, lead by example and challenge the next generation to grow into people who treat each other with respect, patience and compassion.\\n\\nLet’s keep championing and supporting each other to achieve true gender equality.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RUzEpjpFMZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17119\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7wTrhTk0Ps\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Kimi Schieren: Deeper than the dollar amount\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Revealing you have a side hustle always brings up questions about success.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"“What kind of a profit are you making?”\\n\\n“Is it worth it?”\\n\\nEspecially if you, like myself, also work a full-time job and the side hustle itself is almost equally as full-time—the questions surrounding the value of your extracurricular will frequently plague you.\\n\\nHolding the worth of something solely on whether or not it’s profitable can be a slippery slope of creating unattainable goals and unrealistic expectations on yourself and your business.\\n\\nWhat I get out of my side hustle both professionally and personally far surpasses any financial goals.\\n\\nIt’s an outlet for my creativity and a way to express myself. Plus, it helps me to be more creative in my day job.\\n\\nThe two jobs feed into each other and without either or both I would struggle to feel like myself.\\n\\nSuccess from my side hustle is measured in the praise of happy customers, the smiles and comments I get from people who pass my stuff in the streets, and the self-satisfaction I get from creating something from an idea in my head to something you can physically wear or hold.\\n\\nSure, getting paid is also great and I dream of the day when it can become my full-time job. But, for now, my success is much deeper than a dollar amount.\\n\\nThis International Women’s Day, I’m choosing to challenge the notion that wealth equals success.\\n\\nLet’s choose to open our mind to what success looks like and celebrate the amazing things we’re doing.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TAZHDkM6ny\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17115\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EVYfpAlzzL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Kate Wood: Because they challenged, I get to choose\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"I’m in the grey area between Gen Y and Z, so I’m a product of the many Gen X women who raised me, inspired me and challenged me.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Gen X women were born in the 70s and 80s when the ideals of having it all—stable marriage, perfect family, lucrative work—came disguised as female empowerment. What crippling expectations.\\n\\nThese women defied mathematics. There are only 24 hours in a day and having it all takes at least 36.\\n\\nThey challenged the gender norms of the time and proved that, in fact, you can have it all.\\n\\nBecause of that, I don’t have to be the perfect mum with the perfect kids. I don’t have to be married to the dreamiest spouse. I don’t have to cook like Nigella or clean like Marie Kondo. I don’t have to climb the corporate ladder and smash through glass ceilings.\\n\\nI certainly don’t need to do all of that at the same time.\\n\\nAnd because I’m lucky enough to work for an incredible Gen X woman, I don’t have to work twice as hard to earn the same as my male colleague.\\n\\nInstead, I get to choose my values and the kind of woman I want to be.\\n\\nTo all you Gen X women who bravely went before: thank you. Because you worked so hard to challenge, I get to choose.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PCfYuBrUwo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17114\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aX0BZHIT5e\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Suzanne Oxford: Let\'s not mistake peace-keeping for peace-making\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"As a person of faith, I’ve always been challenged by a verse that says, “as far as it depends on you, live at peace”. I consider this my mandate.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But don’t mistake peace-keeping for peace-making.\\n\\nPeace-keeping keeps factions apart with no expectation of resolution. It’s maximum effort expended in a passive, zero sum game. It reinforces apathy, privilege and anger.\\n\\nMe? I’m a peace-maker. The very act of making peace—and making peace, and making peace—is dynamic and potent, shining a light where inequality and injustice rob people of true peace.\\n\\nPeace-making drives me to lean in and bear witness to people’s stories with compassion and empathy.\\n\\nIt compels me to respond with strategies and actions that can create lasting change.\\n\\nIt urges me to have uncomfortable conversations to elicit greater understanding.\\n\\nIt impels me own my blind spots so I can grow in gentleness—and, in turn, create even greater peace.\\n\\nThere’s nothing passive about being a peace-maker, and peace-making never ends.\\n\\nIn fact, as I consider the broken world my children are now entering as young adults, my peace-making is only increasing in volume—as is my understanding that peace is a human right and that, as far as it depends on me, I must give it voice and life.\\n\\nAnd so I do.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OM2HjsMtPT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17108\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Knak12weJl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Bree Leitch: Our voice carries weight, even when it wavers\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"I grew up posting everything on social media, compiling a collage of my perfect life.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Every photo is meticulously chosen out of hundreds taken, every smile critiqued, and every caption drafted and redrafted. Anything less than perfection simply won’t do—I have an audience to please, you see.\\n\\nWomen have fought since the beginning of time to have our voices heard and taken seriously. And now we have an audience, they’re out for blood. It’s the little things—misusing terminology, Facetune gone wrong, dating too many people or not enough—the list goes on. Our audience will fault us for anything in order to discredit us.\\n\\nThe worst part? Often, that audience is me. Sometimes it’s you. It’s all of us women at one point or another, not because we mean to, but because we are trained to. We are taught we must tear other women down in order to lift ourselves up.\\n\\nWhen we let ourselves believe that our own success—or self-security, or popularity, or whatever validation we seek—is dependent on the destruction of other women, we all suffer.\\n\\nWe don’t have to be perfect to be valid. Our voice carries weight, even when it wavers.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44466,48006,1,'Brigidine College logo','2021-09-24 05:00:40','2021-10-05 00:50:17','deb1b36f-2256-4a38-879b-b5391c3c6d6e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"200\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_200x200_crop_center-center_line/Brigidine-College-logo.png\"},\"optimizedWebPImageUrls\":{\"200\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_200x200_crop_center-center_line/Brigidine-College-logo.png.webp\"},\"variantSourceWidths\":[\"200\"],\"variantHeights\":{\"200\":200},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"200\",\"originalImageHeight\":\"200\",\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAQQF/8QAIhAAAQQBBAIDAAAAAAAAAAAAAwECBREEABIxYQYyIUGh/8QAFQEBAQAAAAAAAAAAAAAAAAAAAAP/xAAYEQADAQEAAAAAAAAAAAAAAAAAImERE//aAAwDAQACEQMRAD8AxfGYzDlBmVyNY4Ne7d26/vnrT5LGYcWIKtRpHF3erdtVqSCyxRhmnTJGqPbRBuvjr450zuWKUKplyRog20Mbb/e11F+kC5T/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#0a1915\",\"#dfc870\",\"#658f63\",\"#637588\",\"#845c34\"],\"lightness\":37,\"placeholderWidth\":200,\"placeholderHeight\":200,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44467,48007,1,'Placeholder image_2','2021-09-24 05:02:07','2021-10-05 00:48:43','da8a5f1c-63f9-4ad6-962c-98e13db401ca',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x776_crop_center-center_82_line/Screen-Shot-2021-09-24-at-2.58.39-pm.png\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x647_crop_center-center_82_line/Screen-Shot-2021-09-24-at-2.58.39-pm.png\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x517_crop_center-center_82_line/Screen-Shot-2021-09-24-at-2.58.39-pm.png\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1035_crop_center-center_82_line/Screen-Shot-2021-09-24-at-2.58.39-pm.png\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x388_crop_center-center_82_line/Screen-Shot-2021-09-24-at-2.58.39-pm.png\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x323_crop_center-center_82_line/Screen-Shot-2021-09-24-at-2.58.39-pm.png\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x776_crop_center-center_82_line/Screen-Shot-2021-09-24-at-2.58.39-pm.png.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x647_crop_center-center_82_line/Screen-Shot-2021-09-24-at-2.58.39-pm.png.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x517_crop_center-center_82_line/Screen-Shot-2021-09-24-at-2.58.39-pm.png.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1035_crop_center-center_82_line/Screen-Shot-2021-09-24-at-2.58.39-pm.png.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x388_crop_center-center_82_line/Screen-Shot-2021-09-24-at-2.58.39-pm.png.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x323_crop_center-center_82_line/Screen-Shot-2021-09-24-at-2.58.39-pm.png.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":776,\"1280\":647,\"1024\":517,\"2048\":1035,\"768\":388,\"640\":323},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2540\",\"originalImageHeight\":\"1284\",\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAIABADASIAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAAb/xAAZEAACAwEAAAAAAAAAAAAAAAAAAQISMRH/xAAUAQEAAAAAAAAAAAAAAAAAAAAA/8QAFBEBAAAAAAAAAAAAAAAAAAAAAP/aAAwDAQACEQMRAD8AvZRVOaIpVxAAf//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#f2f2f2\",\"#c8a5a9\",\"#bebcbc\",\"#d1cacb\",\"#c0c6c9\"],\"lightness\":81,\"placeholderWidth\":1536,\"placeholderHeight\":776,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44468,48008,1,'Achieving brand loyalty','2021-09-24 05:09:38','2021-09-24 05:09:38','e141c4ae-e9ea-4a10-812f-9ad78af56052',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Wernf3qqvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\"],\"blocks\":{\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"I asked the team at New Word Order to think of a brand to which they are unwaveringly loyal and here\'s what they said.  \\n\\n\\n\\n**Andrew**: [ASICS](https://www.asics.com/au/en-au/). Since Mum and Dad spoiled me when I was 12, these are the only sports shoes I buy. They last forever and are Australian. Luckily they make specialised hockey shoes as well!  \\n\\n\\n**Kimi**: [Jatz](https://www.arnotts.com/products/crackers)! The most versatile cracker that suits all and any occasion! You got a dip? Jatz. A soup? Dip a Jatz in. A fancy, artisanal soft cheese? Crack the Jatz out. A simple cheddar cheese? Jatz it. Feeling really hungover and can\'t keep anything down but need to eat something so you can muster the strength to order a burrito on Uber Eats? Jatz it, baby.  \\n\\n\\n**Tim**: Super obvious one but [Apple](https://www.apple.com/au/). Everything from their product design and UI right through to their bricks and mortar storefront is meant to make you ‘think differently’ as per their brand promise, but at the same time give you a sense of familiarity. I’ve dabbled with more phones and laptops than I care to mention but will always come back to Apple. That said, iTunes sucks!  \\n\\n\\n**Lynn**: I can be impulsive by nature but the one thing I am never impulsive about is my [Impulse](https://www.unilever.com.au/brands/beauty-personal-care/impulse/) Merely Musk deodorant. I have used this deodorant since I can remember because it smells good and stops me smelling bad! I never worry about BO when I have my Impulse on!\\n\\n\\n**Jo**: [RM Williams](https://www.rmwilliams.com.au/). I got my first pair of boots on arrival to \'Straya as I’d heard great things and love a good Chelsea boot. After 17 years, I am only on my third pair, which shows you the quality and craftsmanship that goes into the RM brand.\\n\\n\\n**Kat**: [The Iconic](https://www.theiconic.com.au/). Their customer service/shipping options/returns policy is so user friendly and far outshines any competitors. They make the process of purchasing and returning so easy that I’m happy to throw my money at them. I’m sure they would lose money on the shipping/returns too, but make it back with the volume of sales from happy customers like myself.\\n\\n\\n**Bruce**: [The Dirt Company](https://thedirtcompany.com.au/)\'s laundry detergent. I like the idea that not everything we buy has to \'cost the earth\' and Dirt have not only made a more eco-friendly washing detergent, but you can send their packaging back to them and they will reuse it. Their highly concentrated detergent won\'t harm the environment and the reusable packaging means a whole lot of plastic is not going into landfill or waterways. Another company that shows you can have a successful business while still protecting the planet.\\n\\n\\n**Bec**: I found this tricky as I am a bit of a brand tart, and I have been disappointed by a few brands in the past who have not lived up to my expectation (“Nooo we vehemently don’t and will never test on animals…but we will sell out to the big company who does”) BUT a brand I have stayed loyal to is [Vegemite](https://vegemite.com.au/).\\n\\n- I loved it as a kid—I suspect the 50s jingle had more to do with that than the taste. Mum and dad regretted introducing us to that song with our robust young lungs joyfully belting it out over and over again on long car trips.\\n- I loved it as a young adult—that black tar smeared on toast. It was post-party comfort food and it was a cheap meal (with Vitamin B!). It made you feel better, like you could go on.\\n- I loved it as a slightly older adult when living abroad—Vegemite toast was like a hug from home. How happy was I when I realised you could get it everywhere and it still tasted the same, unlike Cadbury chocolate. There\'s that brand disappointment!\\n\\nI don’t know that Vegemite is the healthiest food group or even a brand with the most integrity, but I have an emotional connection to that bold brand of yellow, red and white with its tarry contents. It tastes so good on toast and even gives a stir fry an interesting edge. It’s stayed pretty consistent in a world that has changed so much, and as an Australian living abroad it’s part of your heritage and your identity. What’s even better, the brand has come back home to Australia.\\n\\n\\n**Kerry**: I\'m loyal to the US hair care brand [DevaCurl](https://www.devacurl.com/us). It has been the only brand to date that has been able to calm my crazy hair and embrace my God-given curls. Of recent times, DevaCurl have been dragged through the courts as many people have claimed it makes their hair fall out. But I have kept on buying it from the US after 5 years of use and I still have enough hair to go around, so somehow I don\'t think it is a problem for me.\\n\\n\\n**Liam**: I tend to enjoy a little cheating on my normal choices. But one brand I’ve stuck with since my teens is [Ray-Ban](https://www.ray-ban.com/australia) sunglasses. I like that their styles never stray too much from the original designs and they don’t follow trends. I’ve been gifted \'luxury fashion\' brand sunglasses before and they are more about getting their fancy name or logo on the product than anything else—the quality is dubious and the style trends come and go. Ray-Ban don’t try to be overly fashionable, they work well and look good. Proud middle-aged man moment for me was after I had bought a new pair of Ray-Bans overseas and in my first week back in Brisbane the cool hipster barista at the coffee shop said to me “Love your sunnies… they’re on point”.\\n\\n\\n**Ryan**: [Patagonia](https://www.patagonia.com.au/). It lasts for ages and they actually fix stuff. I had a pair of hiking pants that got hammered in Nepal and they fixed them for me. They also give 1% of sales back to conservation efforts. Their stuff also just seems to fit me really well.\\n\\n\\n**Suz**: [Kawai](https://kawai.com.au/) pianos is mine. I’ve played for 45 years and, no matter where I find a Kawai, the touch and the sound is consistent. The Kawai is smooth and sonorous. Love that it’s been so consistent for so long.\\n\\n\\n**Scott**: Tim took mine—Apple has been the most consistent brand in my life since we started NWO (and before, too) and crossed over seamlessly into my personal life as well. Their stuff works, lasts, is simple to use and is beautiful to look at, use and hold. But if I have to pick a different one I’d pick [Nudie Jeans](https://www.nudiejeans.com/). Like Patagonia they repair for free, they give you money for your old pair and resell it to save waste. And, their jeans just always fit me in a way no other ones ever have.\\n\\n\\n**Kate**: [IKEA](https://www.ikea.com/au/en/) is a Swedish wonderland. For me there’s nothing better than a free Saturday afternoon, barrelling down the M1 towards the glorious blue and yellow castle. From beginning to end the experience is flawlessly designed—from the carpark, to the food, to the warehouse, to the satisfaction of sitting on the couch you spent the past hour bolting together. Every aspect of the IKEA brand is designed to hug your mind, body and soul. No brand can wrap you in a cozy $5 throw like IKEA can.\\n\\n\\n**Margaret**: [Haagen Dazs](https://www.haagen-dazs.com.au/) ice cream. No flavour ever disappoints and that cream base… I had my first HD on Singapore Airlines when I was 17 and I ate four in row. (Tip: ask four different air hostesses.)\\n\\n\\n**Bree**: I regularly drive out of my way to stop at [7-Eleven](https://www.7eleven.com.au/) for fuel. I wouldn\'t even consider going anywhere else, and the reason why is so simple: the My 7-Eleven app. The lock-in price feature is a game changer and I get a thrill every time I see the price on the EFTPOS machine and how much lower it is than the price on the pump outside. It almost makes me enjoy buying fuel.\\n\\nThe Krispy Kremes don\'t hurt either.\\n\\n\\nAs you can tell from the kinds of brands they chose, your brand doesn\'t have to be flashy or sexy. It just has to be true to itself and deliver on its promises, consistently and with a bit of personality.\\n\\n\\n*Disclaimer: New Word Order is not sponsored by or partnered with any of the mentioned brands.*\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44470,48010,1,'These are a few of our favourite brands – placeholder title','2021-09-24 05:39:08','2021-09-24 05:39:08','787424f9-c065-4d50-a511-5fa50a039bad',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4Kng0ZJkmt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new1\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"I asked the team at New Word Order to think of a brand to which they are unwaveringly loyal.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Here\'s what they said.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fCc8knIn7z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Andrew\",\"plainText\":\"[**ASICS**](https://www.asics.com/au/en-au/). Since Mum and Dad spoiled me when I was 12, these are the only sports shoes I buy. They last forever and are Australian. Luckily they make specialised hockey shoes as well!  \",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BP6fkJyA6u\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kimi\",\"plainText\":\"[**Jatz**](https://www.arnotts.com/products/crackers)! The most versatile cracker that suits all and any occasion! You got a dip? Jatz. A soup? Dip a Jatz in. A fancy, artisanal soft cheese? Crack the Jatz out. A simple cheddar cheese? Jatz it. Feeling really hungover and can\'t keep anything down but need to eat something so you can muster the strength to order a burrito on Uber Eats? Jatz it, baby.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Yr3xX8UNUq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Tim\",\"plainText\":\"Super obvious one but [**Apple**](https://www.apple.com/au/). Everything from their product design and UI right through to their bricks and mortar storefront is meant to make you ‘think differently’ as per their brand promise, but at the same time give you a sense of familiarity. I’ve dabbled with more phones and laptops than I care to mention but will always come back to Apple. That said, iTunes sucks!  \\n\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WePs4cQeU3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Lynn\",\"plainText\":\"I can be impulsive by nature but the one thing I am never impulsive about is my [**Impulse**](https://www.unilever.com.au/brands/beauty-personal-care/impulse/) Merely Musk deodorant. I have used this deodorant since I can remember because it smells good and stops me smelling bad! I never worry about BO when I have my Impulse on!\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kFDk9QaMtq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Jo\",\"plainText\":\"[**RM Williams**](https://www.rmwilliams.com.au/). I got my first pair of boots on arrival to \'Straya as I’d heard great things and love a good Chelsea boot. After 17 years, I am only on my third pair, which shows you the quality and craftsmanship that goes into the RM brand.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qjkDIEMMe3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kat\",\"plainText\":\"[**The Iconic**](https://www.theiconic.com.au/). Their customer service/shipping options/returns policy is so user friendly and far outshines any competitors. They make the process of purchasing and returning so easy that I’m happy to throw my money at them. I’m sure they would lose money on the shipping/returns too, but make it back with the volume of sales from happy customers like myself.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-nXicTrGS5B\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bruce\",\"plainText\":\"[**The Dirt Company**](https://thedirtcompany.com.au/)\'s laundry detergent. I like the idea that not everything we buy has to \'cost the earth\' and Dirt have not only made a more eco-friendly washing detergent, but you can send their packaging back to them and they will reuse it. Their highly concentrated detergent won\'t harm the environment and the reusable packaging means a whole lot of plastic is not going into landfill or waterways. Another company that shows you can have a successful business while still protecting the planet.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ieCD98S7up\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bec\",\"plainText\":\"I found this tricky as I am a bit of a brand tart, and I have been disappointed by a few brands in the past who have not lived up to my expectation (“Nooo we vehemently don’t and will never test on animals…but we will sell out to the big company who does”) BUT a brand I have stayed loyal to is [**Vegemite**](https://vegemite.com.au/).\\n\\n– I loved it as a kid—I suspect the 50s jingle had more to do with that than the taste. Mum and dad regretted introducing us to that song with our robust young lungs joyfully belting it out over and over again on long car trips.\\n– I loved it as a young adult—that black tar smeared on toast. It was post-party comfort food and it was a cheap meal (with Vitamin B!). It made you feel better, like you could go on.\\n– I loved it as a slightly older adult when living abroad—Vegemite toast was like a hug from home. How happy was I when I realised you could get it everywhere and it still tasted the same, unlike Cadbury chocolate. There\'s that brand disappointment!\\n\\nI don’t know that Vegemite is the healthiest food group or even a brand with the most integrity, but I have an emotional connection to that bold brand of yellow, red and white with its tarry contents. It tastes so good on toast and even gives a stir fry an interesting edge. It’s stayed pretty consistent in a world that has changed so much, and as an Australian living abroad it’s part of your heritage and your identity. What’s even better, the brand has come back home to Australia.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dSCs5J35lI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kerry\",\"plainText\":\"I\'m loyal to the US hair care brand [**DevaCurl**](https://www.devacurl.com/us). It has been the only brand to date that has been able to calm my crazy hair and embrace my God-given curls. Of recent times, DevaCurl have been dragged through the courts as many people have claimed it makes their hair fall out. But I have kept on buying it from the US after 5 years of use and I still have enough hair to go around, so somehow I don\'t think it is a problem for me.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aPLfD479sh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Liam\",\"plainText\":\"I tend to enjoy a little cheating on my normal choices. But one brand I’ve stuck with since my teens is [**Ray-Ban**](https://www.ray-ban.com/australia) sunglasses. I like that their styles never stray too much from the original designs and they don’t follow trends. I’ve been gifted \'luxury fashion\' brand sunglasses before and they are more about getting their fancy name or logo on the product than anything else—the quality is dubious and the style trends come and go. Ray-Ban don’t try to be overly fashionable, they work well and look good. Proud middle-aged man moment for me was after I had bought a new pair of Ray-Bans overseas and in my first week back in Brisbane the cool hipster barista at the coffee shop said to me “Love your sunnies… they’re on point”.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qhin1NvFDx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Ryan\",\"plainText\":\"[**Patagonia**](https://www.patagonia.com.au/). It lasts for ages and they actually fix stuff. I had a pair of hiking pants that got hammered in Nepal and they fixed them for me. They also give 1% of sales back to conservation efforts. Their stuff also just seems to fit me really well.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UgAjx4JylF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Suzanne\",\"plainText\":\"[**Kawai**](https://kawai.com.au/) pianos is mine. I’ve played for 45 years and, no matter where I find a Kawai, the touch and the sound is consistent. The Kawai is smooth and sonorous. Love that it’s been so consistent for so long.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8UXqqjffzF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Scott\",\"plainText\":\"Tim took mine—Apple has been the most consistent brand in my life since we started NWO (and before, too) and crossed over seamlessly into my personal life as well. Their stuff works, lasts, is simple to use and is beautiful to look at, use and hold. But if I have to pick a different one I’d pick [**Nudie Jeans**](https://www.nudiejeans.com/). Like Patagonia they repair for free, they give you money for your old pair and resell it to save waste. And, their jeans just always fit me in a way no other ones ever have.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-v0xY9fvU6u\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kate\",\"plainText\":\"[**IKEA**](https://www.ikea.com/au/en/) is a Swedish wonderland. For me there’s nothing better than a free Saturday afternoon, barrelling down the M1 towards the glorious blue and yellow castle. From beginning to end the experience is flawlessly designed—from the carpark, to the food, to the warehouse, to the satisfaction of sitting on the couch you spent the past hour bolting together. Every aspect of the IKEA brand is designed to hug your mind, body and soul. No brand can wrap you in a cozy $5 throw like IKEA can.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uRfO2vtwj8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Margaret\",\"plainText\":\"[**Haagen Dazs**](https://www.haagen-dazs.com.au/) ice cream. No flavour ever disappoints and that cream base… I had my first HD on Singapore Airlines when I was 17 and I ate four in row. (Tip: ask four different air hostesses.)\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kesJqAugGq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bree\",\"plainText\":\"I regularly drive out of my way to stop at [**7-Eleven**](https://www.7eleven.com.au/) for fuel. I wouldn\'t even consider going anywhere else, and the reason why is so simple: the My 7-Eleven app. The lock-in price feature is a game changer and I get a thrill every time I see the price on the EFTPOS machine and how much lower it is than the price on the pump outside. It almost makes me enjoy buying fuel.\\n\\nThe Krispy Kremes don\'t hurt either.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-K1FhEue9Fp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"As you can tell from the kinds of brands they chose, your brand doesn\'t have to be flashy or sexy. It just has to be true to itself and deliver on its promises, consistently and with a bit of personality.\\n\\n\\n*Disclaimer: New Word Order is not sponsored by or partnered with any of the mentioned brands.*\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44471,48011,1,'NWO’s library','2021-09-24 05:39:24','2022-11-17 00:21:53','78103804-90ac-4842-bfc7-096fefe4ef84',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-nAshvWtoXq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142985\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### November picks\\n\\n<h6> Bec\'s pick </h6> \\n<b>Book title: </b> The Master and Margarita\\n<b>Author: </b> Mikhail Bulgakov\\nFind it <a href=\\\"https://www.goodreads.com/book/show/117833.The_Master_and_Margarita\\\"> here </a>\\n\\n<h6> Bree\'s pick </h6> \\n<b>Book title: </b> This is Going to Hurt\\n<b>Author: </b> Adam Kay\\nFind it <a href=\\\"https://www.goodreads.com/book/show/35510008-this-is-going-to-hurt\\\"> here </a>\\n\\n<h6> Jo\'s pick </h6> \\n<b>Book title: </b> Renegades\\n<b>Author: </b> Barack Obama and Bruce Springsteen\\nFind it <a href=\\\"https://renegadesbook.com/\\\"> here </a>\\n\\n<h6> Suzanne\'s pick </h6> \\n<b>Book title: </b> Windswept and Interesting\\n<b>Author: </b> Billy Connolly\\nFind it <a href=\\\"https://www.audible.com.au/pd/Windswept-Interesting-Audiobook/B08Y98R1JF\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142764\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### October picks\\n\\n* <a href=\\\"https://www.goodreads.com/book/show/28439513-a-night-without-stars\\\"> A Night Without Stars by Peter F Hamilton </a> \\n* <a href=\\\"https://www.goodreads.com/book/show/32620332-the-seven-husbands-of-evelyn-hugo\\\"> The Seven Husbands of Evelyn Hugo by Taylor Jenkins Reid</a>\\n* <a href=\\\"https://www.goodreads.com/book/show/60752357-losing-face\\\"> Losing Face by George Haddad </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/42975172-the-testaments\\\"> The Testaments by Margaret Atwood </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/60296308-the-bookseller-at-the-end-of-the-world\\\"> The Bookseller at the End of the World by Ruth Shaw </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8Zua9e4kWu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142595\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### September picks\\n\\n* <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> Taste: My Life Through Food by Stanley Tucci </a> \\n* <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> A Little Life by Hanya Yanagihara </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/37558445-boy-swallows-universe\\\"> Boy Swallows Universe by Trent Dalton </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> Johnno by David Malouf </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> Growing up Queer in Australia by Benjamin Law </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> Bullet Train by Kotaro Isaka </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> A Promised Land by Barack Obama </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> The Life by Malcolm Knox </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/11468377-thinking-fast-and-slow\\\"> Thinking, Fast and Slow by Daniel Kahneman </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> Hunt, Gather, Parent by Michaeleen Doucleff </a> \\n* <a href=\\\"https://www.goodreads.com/en/book/show/30762074\\\"> Odd Dog Out by Rob Bidulph </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tAgWmP7qVi\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NWO’s library','Taste: My Life Through Food by Stanley Tucci ... A Little Life by Hanya Yanagihara ... Johnno by David Malouf ... Growing up Queer in Australia by Benjamin Law ... Bullet Train by Kotaro Isaka ... A Promised Land by Barack Obama ... The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan ... The Life by Malcolm Knox',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44472,48012,1,'Placeholder image','2021-09-24 05:39:47','2021-10-05 00:47:49','376f3d09-b258-47ae-83c6-1284c42c1290',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x776_crop_center-center_82_line/Screen-Shot-2021-09-24-at-2.58.39-pm_2021-09-24-053947_rcdl.png\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x647_crop_center-center_82_line/Screen-Shot-2021-09-24-at-2.58.39-pm_2021-09-24-053947_rcdl.png\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x517_crop_center-center_82_line/Screen-Shot-2021-09-24-at-2.58.39-pm_2021-09-24-053947_rcdl.png\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1035_crop_center-center_82_line/Screen-Shot-2021-09-24-at-2.58.39-pm_2021-09-24-053947_rcdl.png\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x388_crop_center-center_82_line/Screen-Shot-2021-09-24-at-2.58.39-pm_2021-09-24-053947_rcdl.png\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x323_crop_center-center_82_line/Screen-Shot-2021-09-24-at-2.58.39-pm_2021-09-24-053947_rcdl.png\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x776_crop_center-center_82_line/Screen-Shot-2021-09-24-at-2.58.39-pm_2021-09-24-053947_rcdl.png.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x647_crop_center-center_82_line/Screen-Shot-2021-09-24-at-2.58.39-pm_2021-09-24-053947_rcdl.png.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x517_crop_center-center_82_line/Screen-Shot-2021-09-24-at-2.58.39-pm_2021-09-24-053947_rcdl.png.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1035_crop_center-center_82_line/Screen-Shot-2021-09-24-at-2.58.39-pm_2021-09-24-053947_rcdl.png.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x388_crop_center-center_82_line/Screen-Shot-2021-09-24-at-2.58.39-pm_2021-09-24-053947_rcdl.png.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x323_crop_center-center_82_line/Screen-Shot-2021-09-24-at-2.58.39-pm_2021-09-24-053947_rcdl.png.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":776,\"1280\":647,\"1024\":517,\"2048\":1035,\"768\":388,\"640\":323},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"2540\",\"originalImageHeight\":\"1284\",\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAIABADASIAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAAb/xAAZEAACAwEAAAAAAAAAAAAAAAAAAQISMRH/xAAUAQEAAAAAAAAAAAAAAAAAAAAA/8QAFBEBAAAAAAAAAAAAAAAAAAAAAP/aAAwDAQACEQMRAD8AvZRVOaIpVxAAf//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#f2f2f2\",\"#c8a5a9\",\"#bebcbc\",\"#d1cacb\",\"#c0c6c9\"],\"lightness\":81,\"placeholderWidth\":1536,\"placeholderHeight\":776,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44476,48016,1,'Family and Child Connect','2021-09-24 07:20:40','2021-09-24 07:20:40','27f660b2-f263-4b7e-8a78-2659c11f93b8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'13 Family',NULL,NULL,'Great campaigns help people change their lives, and this one encourages families in crisis to reach out for real help, no strings attached.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-94Wz43ySiO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Family and Child Connect, within the Department of Communities, Child Safety and Disability Services, needed a campaign to build public awareness of the 13 Family support services.\\n\\nTo broach this sensitive issue, we needed to carry out a multi-channelled campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-77KaMezwdw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We tapped into research that showed this target group is made up of good people who really do love their kids, but have found themselves unable to care for them accordingly.\\n\\nBy understanding our client\'s objectives and the context of the target market, we developed a campaign the audience could relate to and, most importantly, felt encouraged to act.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xxGuN9crsA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We developed the campaign microsite, social media assets, print resources, online advertising and outdoor advertising. Using a variety of static executions for retargeting on social media, we set out for a high call-to-action rate for our client. In less than a month, we delivered a full campaign that broke through the social stigma of Queensland families needing support.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hU0rqO1qB1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our client reported the campaign had a total reach just shy of 1 million people, with 116,743 video views during the reporting period. The website had 11,641 visitors at the time—predominantly women aged 25–44, who were squarely in our target group.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44477,48017,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-26 23:46:30','2021-09-27 04:07:34','2ba8f1f5-8223-4014-8cbf-19a30674dc25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44591,48131,1,'These are a few of our favourite brands','2021-09-27 01:13:47','2021-09-27 01:13:47','2385ee91-12a5-4ab9-87aa-ee3237fe414b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4Kng0ZJkmt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"I asked the team at New Word Order to think of a brand to which they are unwaveringly loyal.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Here\'s what they said.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fCc8knIn7z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Andrew\",\"plainText\":\"[**ASICS**](https://www.asics.com/au/en-au/). Since Mum and Dad spoiled me when I was 12, these are the only sports shoes I buy. They last forever and are Australian. Luckily they make specialised hockey shoes as well!  \",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BP6fkJyA6u\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kimi\",\"plainText\":\"[**Jatz**](https://www.arnotts.com/products/crackers)! The most versatile cracker that suits all and any occasion! You got a dip? Jatz. A soup? Dip a Jatz in. A fancy, artisanal soft cheese? Crack the Jatz out. A simple cheddar cheese? Jatz it. Feeling really hungover and can\'t keep anything down but need to eat something so you can muster the strength to order a burrito on Uber Eats? Jatz it, baby.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Yr3xX8UNUq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Tim\",\"plainText\":\"Super obvious one but [**Apple**](https://www.apple.com/au/). Everything from their product design and UI right through to their bricks and mortar storefront is meant to make you ‘think differently’ as per their brand promise, but at the same time give you a sense of familiarity. I’ve dabbled with more phones and laptops than I care to mention but will always come back to Apple. That said, iTunes sucks!  \\n\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WePs4cQeU3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Lynn\",\"plainText\":\"I can be impulsive by nature but the one thing I am never impulsive about is my [**Impulse**](https://www.unilever.com.au/brands/beauty-personal-care/impulse/) Merely Musk deodorant. I have used this deodorant since I can remember because it smells good and stops me smelling bad! I never worry about BO when I have my Impulse on!\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kFDk9QaMtq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Jo\",\"plainText\":\"[**RM Williams**](https://www.rmwilliams.com.au/). I got my first pair of boots on arrival to \'Straya as I’d heard great things and love a good Chelsea boot. After 17 years, I am only on my third pair, which shows you the quality and craftsmanship that goes into the RM brand.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qjkDIEMMe3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kat\",\"plainText\":\"[**The Iconic**](https://www.theiconic.com.au/). Their customer service/shipping options/returns policy is so user friendly and far outshines any competitors. They make the process of purchasing and returning so easy that I’m happy to throw my money at them. I’m sure they would lose money on the shipping/returns too, but make it back with the volume of sales from happy customers like myself.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-nXicTrGS5B\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bruce\",\"plainText\":\"[**The Dirt Company**](https://thedirtcompany.com.au/)\'s laundry detergent. I like the idea that not everything we buy has to \'cost the earth\' and Dirt have not only made a more eco-friendly washing detergent, but you can send their packaging back to them and they will reuse it. Their highly concentrated detergent won\'t harm the environment and the reusable packaging means a whole lot of plastic is not going into landfill or waterways. Another company that shows you can have a successful business while still protecting the planet.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ieCD98S7up\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bec\",\"plainText\":\"I found this tricky as I am a bit of a brand tart, and I have been disappointed by a few brands in the past who have not lived up to my expectation (“Nooo we vehemently don’t and will never test on animals…but we will sell out to the big company who does”) BUT a brand I have stayed loyal to is [**Vegemite**](https://vegemite.com.au/).\\n\\n– I loved it as a kid—I suspect the 50s jingle had more to do with that than the taste. Mum and dad regretted introducing us to that song with our robust young lungs joyfully belting it out over and over again on long car trips.\\n– I loved it as a young adult—that black tar smeared on toast. It was post-party comfort food and it was a cheap meal (with Vitamin B!). It made you feel better, like you could go on.\\n– I loved it as a slightly older adult when living abroad—Vegemite toast was like a hug from home. How happy was I when I realised you could get it everywhere and it still tasted the same, unlike Cadbury chocolate. There\'s that brand disappointment!\\n\\nI don’t know that Vegemite is the healthiest food group or even a brand with the most integrity, but I have an emotional connection to that bold brand of yellow, red and white with its tarry contents. It tastes so good on toast and even gives a stir fry an interesting edge. It’s stayed pretty consistent in a world that has changed so much, and as an Australian living abroad it’s part of your heritage and your identity. What’s even better, the brand has come back home to Australia.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dSCs5J35lI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kerry\",\"plainText\":\"I\'m loyal to the US hair care brand [**DevaCurl**](https://www.devacurl.com/us). It has been the only brand to date that has been able to calm my crazy hair and embrace my God-given curls. Of recent times, DevaCurl have been dragged through the courts as many people have claimed it makes their hair fall out. But I have kept on buying it from the US after 5 years of use and I still have enough hair to go around, so somehow I don\'t think it is a problem for me.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aPLfD479sh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Liam\",\"plainText\":\"I tend to enjoy a little cheating on my normal choices. But one brand I’ve stuck with since my teens is [**Ray-Ban**](https://www.ray-ban.com/australia) sunglasses. I like that their styles never stray too much from the original designs and they don’t follow trends. I’ve been gifted \'luxury fashion\' brand sunglasses before and they are more about getting their fancy name or logo on the product than anything else—the quality is dubious and the style trends come and go. Ray-Ban don’t try to be overly fashionable, they work well and look good. Proud middle-aged man moment for me was after I had bought a new pair of Ray-Bans overseas and in my first week back in Brisbane the cool hipster barista at the coffee shop said to me “Love your sunnies… they’re on point”.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qhin1NvFDx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Ryan\",\"plainText\":\"[**Patagonia**](https://www.patagonia.com.au/). It lasts for ages and they actually fix stuff. I had a pair of hiking pants that got hammered in Nepal and they fixed them for me. They also give 1% of sales back to conservation efforts. Their stuff also just seems to fit me really well.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UgAjx4JylF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Suzanne\",\"plainText\":\"[**Kawai**](https://kawai.com.au/) pianos is mine. I’ve played for 45 years and, no matter where I find a Kawai, the touch and the sound is consistent. The Kawai is smooth and sonorous. Love that it’s been so consistent for so long.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8UXqqjffzF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Scott\",\"plainText\":\"Tim took mine—Apple has been the most consistent brand in my life since we started NWO (and before, too) and crossed over seamlessly into my personal life as well. Their stuff works, lasts, is simple to use and is beautiful to look at, use and hold. But if I have to pick a different one I’d pick [**Nudie Jeans**](https://www.nudiejeans.com/). Like Patagonia they repair for free, they give you money for your old pair and resell it to save waste. And, their jeans just always fit me in a way no other ones ever have.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-v0xY9fvU6u\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kate\",\"plainText\":\"[**IKEA**](https://www.ikea.com/au/en/) is a Swedish wonderland. For me there’s nothing better than a free Saturday afternoon, barrelling down the M1 towards the glorious blue and yellow castle. From beginning to end the experience is flawlessly designed—from the carpark, to the food, to the warehouse, to the satisfaction of sitting on the couch you spent the past hour bolting together. Every aspect of the IKEA brand is designed to hug your mind, body and soul. No brand can wrap you in a cozy $5 throw like IKEA can.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uRfO2vtwj8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Margaret\",\"plainText\":\"[**Haagen Dazs**](https://www.haagen-dazs.com.au/) ice cream. No flavour ever disappoints and that cream base… I had my first HD on Singapore Airlines when I was 17 and I ate four in row. (Tip: ask four different air hostesses.)\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kesJqAugGq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bree\",\"plainText\":\"I regularly drive out of my way to stop at [**7-Eleven**](https://www.7eleven.com.au/) for fuel. I wouldn\'t even consider going anywhere else, and the reason why is so simple: the My 7-Eleven app. The lock-in price feature is a game changer and I get a thrill every time I see the price on the EFTPOS machine and how much lower it is than the price on the pump outside. It almost makes me enjoy buying fuel.\\n\\nThe Krispy Kremes don\'t hurt either.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-K1FhEue9Fp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"As you can tell from the kinds of brands they chose, your brand doesn\'t have to be flashy or sexy. It just has to be true to itself and deliver on its promises, consistently and with a bit of personality.\\n\\n\\n*Disclaimer: New Word Order is not sponsored by or partnered with any of the mentioned brands.*\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44594,48134,1,'What the artist breaks','2021-09-27 01:15:26','2021-09-27 01:15:26','cb2d3f5b-1452-4128-9ecf-9250bdd906ec',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QjbPRQcxAH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"It’s arguable that copywriting is at the heart of all advertising and marketing today. We remember taglines and recall jingles; and copy is the beginning of most brand stories. But, boy, is it fantastic to look back at a time when it really was all about the words.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Bill Bernbach was the founding creative director of legendary Manhattan ad agency Doyle Dane Bernbach (DDB). He came out with quotes like:\\n\\n“Advertising is fundamentally persuasion and persuasion happens to be not a science, but an art”, and\\n\\n“Word of mouth is the best medium of all”, and\\n\\n“Rules are what the artist breaks; the memorable never emerged from a formula.”\\n\\nThat’s really provocative stuff that makes you nod your head at the truth and simple power of his thinking—and imagine how inspiring but uncompromising a boss he would have been. What an exhilarating time to be writing.\\n\\nBernbach not only had a way with a turn of phrase, but he also really set up the structure of creative teams for marketing and advertising, and was, of course, part of the inspiration for Mad Men. But mostly, he was a writer. And what a writer he was. His firm revolutionised advertising copy and laid out the early foundations for brand storytelling through engaging narrative and brand persona development. We can, and have, all learned from these guys.\\n\\nIn the 1960s, DDB took on Volkswagen as a client and began creating a series of print ads that referred to the VW as a “lemon” and encouraged consumers to “think small”. The copy, by the incomparable Julian Koenig, starts out saying “This Volkswagen missed the boat. The chrome strip on the glove compartment is blemished, and must be replaced.” Not exactly sales speak.\\n\\n##### **It was funny. It was clever. And it was ground-breaking.**\\n\\nFor the rest of the decade, VW kept their unconventional campaign rolling. DDB’s strategy of turning seeming faults into benefits was a huge hit. One ad didn\'t even include a picture of the little lemon: “No point in showing you the 1962 Volkswagen. It still looks the same.”\\n\\nMuch has been written about the ads, and you can take a look at a bunch of them here if you like. It was ranked the best advertising campaign of the twentieth century by Ad Age, and it deserves the title. This sort of brand bravery is rare and may be a little of its time, too. The truth is that the power is all right there, in the copy, which exists to inspire us. Last words to Mr Bernbach himself:\\n\\nYou can say the right thing about a product and nobody will listen. You\'ve got to say it in such a way that people will feel it in their gut. Because if they don\'t feel it, nothing will happen.\\n\\nWhat is your brand really saying?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44609,48149,1,'Family and Child Connect','2021-09-27 02:01:51','2021-09-27 02:01:51','ef80ae46-2b10-46a2-84ff-ec30dd7186db',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'13 Family',NULL,NULL,'Great campaigns help people change their lives, and this one encourages families in crisis to reach out for real help, no strings attached.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-94Wz43ySiO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Family and Child Connect, within the Department of Communities, Child Safety and Disability Services, needed a campaign to build public awareness of the 13 Family support services.\\n\\nTo broach this sensitive issue, we needed to carry out a multi-channelled campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-77KaMezwdw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We tapped into research that showed this target group is made up of good people who really do love their kids, but have found themselves unable to care for them accordingly.\\n\\nBy understanding our client\'s objectives and the context of the target market, we developed a campaign the audience could relate to and, most importantly, felt encouraged to act.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xxGuN9crsA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We developed the campaign microsite, social media assets, print resources, online advertising and outdoor advertising. Using a variety of static executions for retargeting on social media, we set out for a high call-to-action rate for our client. In less than a month, we delivered a full campaign that broke through the social stigma of Queensland families needing support.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hU0rqO1qB1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our client reported the campaign had a total reach just shy of 1 million people, with 116,743 video views during the reporting period. The website had 11,641 visitors at the time—predominantly women aged 25–44, who were squarely in our target group.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44611,48151,1,'Queensland State Archives','2021-09-27 02:02:07','2021-09-27 02:02:07','648a0ef6-63b4-4258-9509-63c59d22ce68',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Stories of then, now and forever',NULL,NULL,'The Queensland State Archives rebrand was an exciting process of consultation, discovery and world-wide benchmarking of similar organisations. Stepping away from a museum look, the Archives embraced its renewed vision of sharing stories of then, now and forever as it prepared to rollout a suite of new digital products. Our work included stakeholder workshops, branding and collateral development and merchandise rollout.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44613,48153,1,'Physiotas','2021-09-27 02:02:40','2021-09-27 02:02:40','413e91b2-d719-4f33-bb89-0794e256639f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Better together',NULL,NULL,'Boasting a proud history of providing trusted physio services to Northern Tasmania under a franchise brand, the team grabbed the opportunity this year to create their own name and brand and launch in time for their fifth and largest location in Launceston. We provided name development, logo and visual identity development as well as the new company website.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44615,48155,1,'FOPATS','2021-09-27 02:02:53','2021-09-27 02:02:53','5cb3e6c6-27e4-44ec-b183-33231633814f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Out with the old, in with the new',NULL,NULL,'FOPATS is a memorable acronym you’ll need to watch our video to decipher. FOPATS’ role was to manage the transition to a new housing and tenancy software platform in Queensland’s Department of Housing and Public Works—a critical tool in the department’s work. We created an employer marketing campaign to help explain the change and developed the character metaphors—two groovy robots—to embody the old and new platforms. Using video, displays, desktop tent cards and digital tools, the project involved branding, character development, video production, print production and software/web design.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44618,48158,1,'Pursuit Minerals','2021-09-27 02:03:03','2021-09-27 02:03:03','c10030eb-c148-442d-8b0e-c606cb4f92a9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Pursuing excellence',NULL,NULL,'This business, quite literally, goes ‘in pursuit’ of minerals. Pursuit Minerals is a mineral exploration and project development company that has expanded beyond Australia into Scandinavian markets. We branded the business and produced its key collateral including the website.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44620,48160,1,'The School of Distance Education – Charters Towers','2021-09-27 02:03:16','2021-09-27 02:03:16','223def8e-c1a7-4a5e-b3ad-87330393d607',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The difference a brand can make',NULL,NULL,'This beautiful new brand for SDECT is just one example of how vital visual identity is to telling the true story of any organisation—and how solid marketing strategy, coupled with research, delivers results.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GgxMHLzdFt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Brands should go before you, showcasing a school’s distinctives, paving the way for more positive conversations to come. However, this was not the case at first for the School of Distance Education Charters Towers (SDECT).\\n\\nAs we learned more about the school through in-depth interviews with students, parents and staff, we discovered the school for what it is: contemporary and worthy of its national audience. The school had far surpassed what its brand represented, and it was our job to launch its look into the 21st century.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rq6KvKDblN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We discovered what made SDECT different to other distance education schools: its willingness to accept any child—students who live in isolated locations, have been expelled, live with disabilities or have learning difficulties, or have chronic physical or mental illness. The school\'s level of care, personal attention and customisation sets it apart.\\n\\nThe stories we heard from our research formed the basis of our messaging strategy. We posed this question to prospective families: \'What if an entire school exists only for your child?\' All of our messaging was crafted around this idea.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aqpv5uCKsx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Brand rollout\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We started by replacing the logo, colours and photography to create a fresh, clean and sophisticated look. We developed a range of applications for the new brand across collateral including certificates, banners and signage.\\n\\nWe also developed an informative website separate from the official school website, built for prospective parents. It houses information and stories about learning from home. As part of the website, we developed a range of downloadable fact sheets providing more detail on each topic.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5huCNjtxBM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Campaign\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Once the brand and website were in place, we developed an email campaign to organisations and other schools to build awareness. We sent electronic direct mail to four target groups, each with a clean look and strategic messaging.\\n\\nWe also developed the school’s first-ever social media presence through Facebook. We created content and built an engaged online community within six months, all while we trained and mentored their inhouse communications team to carry the work forward.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lG2tB4Nlor\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"SDECT was not prepared for what came next. Enrolments increased by 255 per cent—from fewer than 900 to 2300—in 2018. And in 2019, we again targeted enrolment growth for SDECT. We also ran a recruitment campaign to meet demand with quality teachers.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44621,48161,1,'Department of Transport and Main Roads','2021-09-27 02:03:39','2021-09-27 02:03:39','f23342c5-55dd-41bf-bf73-a0c9d5e33e39',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'How Queensland Tavels',NULL,NULL,'The Department of Transport and Main Roads has measured how, where and why Queenslanders travel since 1976. How Queensland Travels was the first time all of this research had been revealed together.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xiMuwH0qUn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47768\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UGKKHcWkDX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"We crafted a visual metaphor for this important story by enlarging infographic iconography, making it 3D and placing it into real world situations.\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ykadeGb8YM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/145833141?h=da493c8de8&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wXJAJa8GTY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\",\"plainText\":\"The result is a metaphor for the role of data in the real world, especially as it relates to transport.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MQiJ46BCqv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47767\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IXjmqTVmWl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\",\"plainText\":\"Our deliverables included an interactive PDF—written, edited and designed by our team—and the beautiful 3D animated video showing the 3D icons moving in the real world.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44622,48162,1,'National Suicide Prevention Trial design background','2021-09-27 02:11:09','2021-10-05 00:47:23','ea4055cc-312d-49ac-9a7f-8ce3df552289',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1152_crop_center-center_82_line/21_NSPT_global.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2304_crop_center-center_82_line/21_NSPT_global.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x960_crop_center-center_82_line/21_NSPT_global.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1920_crop_center-center_82_line/21_NSPT_global.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x768_crop_center-center_82_line/21_NSPT_global.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1536_crop_center-center_82_line/21_NSPT_global.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x576_crop_center-center_82_line/21_NSPT_global.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x480_crop_center-center_82_line/21_NSPT_global.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1152_crop_center-center_82_line/21_NSPT_global.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2304_crop_center-center_82_line/21_NSPT_global.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x960_crop_center-center_82_line/21_NSPT_global.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1920_crop_center-center_82_line/21_NSPT_global.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x768_crop_center-center_82_line/21_NSPT_global.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1536_crop_center-center_82_line/21_NSPT_global.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x576_crop_center-center_82_line/21_NSPT_global.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x480_crop_center-center_82_line/21_NSPT_global.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"3072\":2304,\"1280\":960,\"2560\":1920,\"1024\":768,\"2048\":1536,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"8000\",\"originalImageHeight\":\"6000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAMABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAQb/xAAWEAEBAQAAAAAAAAAAAAAAAAAAARH/xAAWAQEBAQAAAAAAAAAAAAAAAAAABAH/xAAVEQEBAAAAAAAAAAAAAAAAAAAAAf/aAAwDAQACEQMRAD8AnNWohQhAUbH/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#143d6b\",\"#134c72\",\"#1c3f6c\",\"#0c416a\",\"#144474\"],\"lightness\":25,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44624,48164,1,'Brisbane North PHN NSPT','2021-09-27 02:11:26','2021-09-27 02:11:26','f7c6444f-5aae-4758-8612-634529df52b6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'National Suicide Prevention Trials',NULL,NULL,'We were chosen to consult with Brisbane North communities who had been selected for the trial: LGBTIQ communities, Aboriginal and Torres Strait Islander communities, and community organisations working with young to middle-aged men.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yV9Swskqh3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45209\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Bri6BITkLV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The team of Brisbane North PHN is one of the national sites chosen to deliver National Suicide Prevention Trial (NSPT) funding.\\n\\nOur work had two important parts. The first was to engage deeply and sensitively with communities to understand their experiences, successes and reflections during the four years of trial funding and to report on these. The second was to deliver useful materials the service organisations could use to seek further funding and sponsorships as they transitioned from trial funding.\\n\\nTo successfully undertake community engagement, we again partnered with Janine Crawford, a skilled health consultant and Aboriginal and Torres Strait Islander woman. Our work included workshops, face-to-face interviews and a highly successful yarning circle, and these important and sensitive conversations—which included Sad News/Sorry Business—were given the time and space each needed.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2OxHHkid1g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45325\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VcPtAbE6Am\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The finalised report was submitted to NSPT as a qualitative reflection on the remarkable achievements of the trial—including the PHN’s commitment to community-led co-design, and the healing within communities that was begun through the intentionally collaborative process.\\n\\nTo offer creative services that were suited to the context, needs and existing resourcing of the seven service organisations, we offered a menu of items, ranging from fact sheets to marketing consultations. The groups then chose the elements that were of greatest use to them.\\n\\nPart of the unique nature of the Brisbane North PHN NSPT trial was the emphasis on community partnerships and collaboration, and we embodied this in our design approach, too. To enable groups to pitch together or separately for any future suicide prevention funding, we created a single brand style to visually unify any designed material. Each group, then, had its own logo and its own colour palette within that visual style—a brand within a brand. That way, any future funding pitches that relied on our designed material could look as though the groups were unique but still closely aligned.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44625,48165,1,'Brisbane North PHN NSPT','2021-09-27 02:12:24','2021-09-27 02:12:24','d6b4d015-d13e-4694-9b21-057fde44fde2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'National Suicide Prevention Trials',NULL,NULL,'We were chosen to consult with Brisbane North communities who had been selected for the trial: LGBTIQ communities, Aboriginal and Torres Strait Islander communities, and community organisations working with young to middle-aged men.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yV9Swskqh3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45209\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Bri6BITkLV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The team of Brisbane North PHN is one of the national sites chosen to deliver National Suicide Prevention Trial (NSPT) funding.\\n\\nOur work had two important parts. The first was to engage deeply and sensitively with communities to understand their experiences, successes and reflections during the four years of trial funding and to report on these. The second was to deliver useful materials the service organisations could use to seek further funding and sponsorships as they transitioned from trial funding.\\n\\nTo successfully undertake community engagement, we again partnered with Janine Crawford, a skilled health consultant and Aboriginal and Torres Strait Islander woman. Our work included workshops, face-to-face interviews and a highly successful yarning circle, and these important and sensitive conversations—which included Sad News/Sorry Business—were given the time and space each needed.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2OxHHkid1g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45325\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VcPtAbE6Am\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The finalised report was submitted to NSPT as a qualitative reflection on the remarkable achievements of the trial—including the PHN’s commitment to community-led co-design, and the healing within communities that was begun through the intentionally collaborative process.\\n\\nTo offer creative services that were suited to the context, needs and existing resourcing of the seven service organisations, we offered a menu of items, ranging from fact sheets to marketing consultations. The groups then chose the elements that were of greatest use to them.\\n\\nPart of the unique nature of the Brisbane North PHN NSPT trial was the emphasis on community partnerships and collaboration, and we embodied this in our design approach, too. To enable groups to pitch together or separately for any future suicide prevention funding, we created a single brand style to visually unify any designed material. Each group, then, had its own logo and its own colour palette within that visual style—a brand within a brand. That way, any future funding pitches that relied on our designed material could look as though the groups were unique but still closely aligned.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44626,48166,1,'Aseeos logo','2021-09-27 02:19:24','2022-06-23 03:27:39','8d948f28-194f-41db-b8ea-b6c16d437a15',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/21_Asseos_global.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2049_crop_center-center_82_line/21_Asseos_global.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/21_Asseos_global.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1707_crop_center-center_82_line/21_Asseos_global.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x683_crop_center-center_82_line/21_Asseos_global.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1366_crop_center-center_82_line/21_Asseos_global.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/21_Asseos_global.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/21_Asseos_global.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/21_Asseos_global.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2049_crop_center-center_82_line/21_Asseos_global.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/21_Asseos_global.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1707_crop_center-center_82_line/21_Asseos_global.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x683_crop_center-center_82_line/21_Asseos_global.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1366_crop_center-center_82_line/21_Asseos_global.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/21_Asseos_global.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/21_Asseos_global.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"3072\":2049,\"1280\":853,\"2560\":1707,\"1024\":683,\"2048\":1366,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"8192\",\"originalImageHeight\":\"5464\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAQIDBv/EAB4QAAIBAwUAAAAAAAAAAAAAAAECAAMEETEyQWFx/8QAFAEBAAAAAAAAAAAAAAAAAAAAAP/EABQRAQAAAAAAAAAAAAAAAAAAAAD/2gAMAwEAAhEDEQA/ANwK1UuFNuwzyWECyjHZOpgBdzewHgf/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e8e8ea\",\"#2e2c2d\",\"#f8a251\",\"#989898\",\"#7c747c\"],\"lightness\":59,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44628,48168,1,'Aseeos','2021-09-27 02:19:38','2021-09-27 02:19:38','5e364ead-d336-4f42-8115-475282bc5fbb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Delivering for disruptors',NULL,NULL,'Aseeos rebranded to transform its 10-year-old installation business into an industry-disrupting model that solves age-old industry problems of supply, quality and budget overruns. We worked closely with the team to take its core brand elements and develop a full range of collateral, including signage, brochures and catalogues, video, marketing, events and website.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bmUfyXmDcz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47997\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fyTxfCvyJr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47773\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WYeceTl1wB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/194746924?h=02b6e594f2&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44631,48171,1,'Aseeos design lines with \'meet Aseeos\'','2021-09-27 02:36:14','2022-06-23 03:27:44','8fa020cb-cb69-4e5e-ae9d-07984110bf11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1152_crop_center-center_82_line/21_Asseos_global_2021-09-27-023614_kppa.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2304_crop_center-center_82_line/21_Asseos_global_2021-09-27-023614_kppa.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x960_crop_center-center_82_line/21_Asseos_global_2021-09-27-023614_kppa.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1920_crop_center-center_82_line/21_Asseos_global_2021-09-27-023614_kppa.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x768_crop_center-center_82_line/21_Asseos_global_2021-09-27-023614_kppa.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1536_crop_center-center_82_line/21_Asseos_global_2021-09-27-023614_kppa.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x576_crop_center-center_82_line/21_Asseos_global_2021-09-27-023614_kppa.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x480_crop_center-center_82_line/21_Asseos_global_2021-09-27-023614_kppa.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1152_crop_center-center_82_line/21_Asseos_global_2021-09-27-023614_kppa.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2304_crop_center-center_82_line/21_Asseos_global_2021-09-27-023614_kppa.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x960_crop_center-center_82_line/21_Asseos_global_2021-09-27-023614_kppa.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1920_crop_center-center_82_line/21_Asseos_global_2021-09-27-023614_kppa.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x768_crop_center-center_82_line/21_Asseos_global_2021-09-27-023614_kppa.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1536_crop_center-center_82_line/21_Asseos_global_2021-09-27-023614_kppa.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x576_crop_center-center_82_line/21_Asseos_global_2021-09-27-023614_kppa.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x480_crop_center-center_82_line/21_Asseos_global_2021-09-27-023614_kppa.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"3072\":2304,\"1280\":960,\"2560\":1920,\"1024\":768,\"2048\":1536,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"8000\",\"originalImageHeight\":\"6000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAMABADASIAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAAECBv/EABwQAAEEAwEAAAAAAAAAAAAAAAEAAgNBERIhMf/EABUBAQEAAAAAAAAAAAAAAAAAAAAB/8QAFREBAQAAAAAAAAAAAAAAAAAAADH/2gAMAwEAAhEDEQA/AN5I8xjOpcm0h4DqoIHZDmvFQ6VKP//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#f5f5f3\",\"#ad7a42\",\"#808080\",\"#c4b19b\",\"#8c8c8c\"],\"lightness\":67,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44632,48172,1,'Aseeos','2021-09-27 02:36:32','2021-09-27 02:36:32','88bdc60d-2caf-4911-8ebd-b04ce19aec7b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Delivering for disruptors',NULL,NULL,'Aseeos rebranded to transform its 10-year-old installation business into an industry-disrupting model that solves age-old industry problems of supply, quality and budget overruns. We worked closely with the team to take its core brand elements and develop a full range of collateral, including signage, brochures and catalogues, video, marketing, events and website.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bmUfyXmDcz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47997\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fyTxfCvyJr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47773\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WYeceTl1wB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/194746924?h=02b6e594f2&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44634,48174,1,'Department of Recreation, Sport and Arts','2021-09-27 02:36:57','2021-09-27 02:36:57','d703b4a6-33f9-4b5c-b41d-0437f155f821',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Get Started Vouchers',NULL,NULL,'Great explainer videos take complex ideas and break them down into simple ideas. We were tasked to produce an educational video that stepped through the process in a three-minute video guide.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kZX4G1V78k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our client gives away 50,000 cash vouchers every year to families with young children who can’t afford to join a sport or recreation club.\\n\\nThe application process is complex, and our client was inundated with calls for help from lower socioeconomic families trying to access assistance when the process is technically difficult and challenging.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EN7PcojU3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We produced this video within budget and scope, and responded with a methodology that evoked the best of behaviour change principles.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DpRHohKc9w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We were surprised to hear that on the day the video launched, the calls to our client died down from a torrent to a mere trickle. And the trend has held—our client no longer has a back-to-back daily call rate, and no longer needs a dedicated team for the enquiry line.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5S5bSF6S0k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"With a response like this and what it means to our client in newly found productivity and success—that’s priceless.\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44636,48176,1,'Aseeos design lines','2021-09-27 02:38:15','2022-06-23 03:27:49','ec6774f7-e67b-4526-9610-a4a3761b6e6f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1152_crop_center-center_82_line/21_Asseos_global_2021-09-27-023815_mfld.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2304_crop_center-center_82_line/21_Asseos_global_2021-09-27-023815_mfld.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x960_crop_center-center_82_line/21_Asseos_global_2021-09-27-023815_mfld.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1920_crop_center-center_82_line/21_Asseos_global_2021-09-27-023815_mfld.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x768_crop_center-center_82_line/21_Asseos_global_2021-09-27-023815_mfld.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1536_crop_center-center_82_line/21_Asseos_global_2021-09-27-023815_mfld.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x576_crop_center-center_82_line/21_Asseos_global_2021-09-27-023815_mfld.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x480_crop_center-center_82_line/21_Asseos_global_2021-09-27-023815_mfld.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1152_crop_center-center_82_line/21_Asseos_global_2021-09-27-023815_mfld.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2304_crop_center-center_82_line/21_Asseos_global_2021-09-27-023815_mfld.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x960_crop_center-center_82_line/21_Asseos_global_2021-09-27-023815_mfld.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1920_crop_center-center_82_line/21_Asseos_global_2021-09-27-023815_mfld.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x768_crop_center-center_82_line/21_Asseos_global_2021-09-27-023815_mfld.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1536_crop_center-center_82_line/21_Asseos_global_2021-09-27-023815_mfld.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x576_crop_center-center_82_line/21_Asseos_global_2021-09-27-023815_mfld.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x480_crop_center-center_82_line/21_Asseos_global_2021-09-27-023815_mfld.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"3072\":2304,\"1280\":960,\"2560\":1920,\"1024\":768,\"2048\":1536,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"8000\",\"originalImageHeight\":\"6000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAMABADASIAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAAECBv/EAB0QAAIBBAMAAAAAAAAAAAAAAAABIQIDETESQYH/xAAUAQEAAAAAAAAAAAAAAAAAAAAB/8QAFREBAQAAAAAAAAAAAAAAAAAAADH/2gAMAwEAAhEDEQA/AN9CWWJS+VXiDdx560UpYUv/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#f9f9f7\",\"#e4953b\",\"#f0bc82\",\"#fcd5a1\",\"#fcecc2\"],\"lightness\":78,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44637,48177,1,'Aseeos','2021-09-27 02:38:37','2021-09-27 02:38:37','6228e47d-92b9-43f9-a719-4551945db2d4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Delivering for disruptors',NULL,NULL,'Aseeos rebranded to transform its 10-year-old installation business into an industry-disrupting model that solves age-old industry problems of supply, quality and budget overruns. We worked closely with the team to take its core brand elements and develop a full range of collateral, including signage, brochures and catalogues, video, marketing, events and website.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bmUfyXmDcz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47997\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fyTxfCvyJr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47773\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WYeceTl1wB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/194746924?h=02b6e594f2&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44639,48179,1,'Department of Housing and Public Works','2021-09-27 02:39:13','2021-09-27 02:39:13','1d59bc09-751c-4e15-ad37-feccf08f346f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Our HPW, our future',NULL,NULL,'We united the massive department and its many parts by capturing the voices of staff from workshops and presenting in a powerful and inspiring staff-delivered video.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DvN3FirR8O\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Every day, thousands of Housing and Public Works frontline staff play vital roles in the lives of Queenslanders, including those who need support to find shelter. The department needed to unite its many parts under one inspiring purpose.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Crjp0miKAR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Engagement\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We embarked on a state-wide culture project that included workshops around the state to gather staff ideas on what unites them as a workforce.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rcO4cT3PqW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"From staff words came a manifesto, executed in different collateral and including this video: staff from across the state, in their own words, sharing what makes them united and strong.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rUnpVvMnyo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Little did we know how widespread the impact and importance of this cultural integration project would be. The video became a central tool for recruitment and retention across the department.\\n\\nMore than a year on, when we interviewed staff for case studies, many repeated back to us the exact lines from this video as reasons for why they do what they do.\\n\\nAs a marker of engagement success, it doesn’t get much stronger.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44640,48180,1,'DTMR photography still with orange car','2021-09-27 02:41:57','2021-10-05 00:44:47','ee9bb24f-c61a-4c3d-9335-ac72f2d61664',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1152_crop_center-center_82_line/21_DTMR_Global.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2304_crop_center-center_82_line/21_DTMR_Global.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x960_crop_center-center_82_line/21_DTMR_Global.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1920_crop_center-center_82_line/21_DTMR_Global.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x768_crop_center-center_82_line/21_DTMR_Global.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1536_crop_center-center_82_line/21_DTMR_Global.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x576_crop_center-center_82_line/21_DTMR_Global.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x480_crop_center-center_82_line/21_DTMR_Global.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1152_crop_center-center_82_line/21_DTMR_Global.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2304_crop_center-center_82_line/21_DTMR_Global.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x960_crop_center-center_82_line/21_DTMR_Global.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1920_crop_center-center_82_line/21_DTMR_Global.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x768_crop_center-center_82_line/21_DTMR_Global.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1536_crop_center-center_82_line/21_DTMR_Global.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x576_crop_center-center_82_line/21_DTMR_Global.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x480_crop_center-center_82_line/21_DTMR_Global.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"3072\":2304,\"1280\":960,\"2560\":1920,\"1024\":768,\"2048\":1536,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"8000\",\"originalImageHeight\":\"6000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAMABADASIAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAQIEBv/EAB8QAAEEAwADAQAAAAAAAAAAAAIBAxESAAQFEyFBMf/EABUBAQEAAAAAAAAAAAAAAAAAAAEC/8QAGBEBAAMBAAAAAAAAAAAAAAAAAQACAxH/2gAMAwEAAhEDEQA/ALl6fPbauTqp6/KrOFepoCCF5Clflcz/AFSRjXF0AC9omMTlbzz+w0y7UgKfmU7WGBkcn//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#97abc5\",\"#292d2e\",\"#85673f\",\"#6f4d34\",\"#efd2b0\"],\"lightness\":44,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44642,48182,1,'Department of Transport and Main Roads','2021-09-27 02:42:07','2021-09-27 02:42:07','9606a729-e289-4146-8c53-60d196e4f7ee',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'How Queensland Tavels',NULL,NULL,'The Department of Transport and Main Roads has measured how, where and why Queenslanders travel since 1976. How Queensland Travels was the first time all of this research had been revealed together.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xiMuwH0qUn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47768\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UGKKHcWkDX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"We crafted a visual metaphor for this important story by enlarging infographic iconography, making it 3D and placing it into real world situations.\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ykadeGb8YM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/145833141?h=da493c8de8&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wXJAJa8GTY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\",\"plainText\":\"The result is a metaphor for the role of data in the real world, especially as it relates to transport.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MQiJ46BCqv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47767\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IXjmqTVmWl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\",\"plainText\":\"Our deliverables included an interactive PDF—written, edited and designed by our team—and the beautiful 3D animated video showing the 3D icons moving in the real world.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44644,48184,1,'Pivotus brand design coloured shapes','2021-09-27 02:45:56','2021-10-04 23:57:57','ea95ca5f-9e80-460a-a7a0-0795c8c5a889',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1152_crop_center-center_82_line/21_Pivotus_global.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2304_crop_center-center_82_line/21_Pivotus_global.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x960_crop_center-center_82_line/21_Pivotus_global.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1920_crop_center-center_82_line/21_Pivotus_global.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x768_crop_center-center_82_line/21_Pivotus_global.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1536_crop_center-center_82_line/21_Pivotus_global.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x576_crop_center-center_82_line/21_Pivotus_global.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x480_crop_center-center_82_line/21_Pivotus_global.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1152_crop_center-center_82_line/21_Pivotus_global.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2304_crop_center-center_82_line/21_Pivotus_global.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x960_crop_center-center_82_line/21_Pivotus_global.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1920_crop_center-center_82_line/21_Pivotus_global.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x768_crop_center-center_82_line/21_Pivotus_global.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1536_crop_center-center_82_line/21_Pivotus_global.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x576_crop_center-center_82_line/21_Pivotus_global.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x480_crop_center-center_82_line/21_Pivotus_global.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"3072\":2304,\"1280\":960,\"2560\":1920,\"1024\":768,\"2048\":1536,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"8000\",\"originalImageHeight\":\"6000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAMABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAIG/8QAHxAAAgICAwADAAAAAAAAAAAAAQIDBAASESExMlGB/8QAFQEBAQAAAAAAAAAAAAAAAAAAAQL/xAAZEQACAwEAAAAAAAAAAAAAAAABEQACAxL/2gAMAwEAAhEDEQA/ANxLbRDqg3f6GDa7ZilLFVljHyVD2uEvzPFYNeI6J1yR6f3LvUo6lVZ4GdZBx3t7jYMIScbdaIz/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#9dd4f2\",\"#e98c4c\",\"#69b49c\",\"#f1ecea\",\"#c77caa\"],\"lightness\":70,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44646,48186,1,'Pivotus','2021-09-27 02:46:51','2021-09-27 02:46:51','bb7b1e6d-428b-4700-9d7e-b93308e27d9e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a pivot?',NULL,NULL,'After rapid growth in recent years, My Media Trading Desk (MMTD) hit the pause button and engaged NWO to ask many of their valued clients: What do you really think of MMTD? Their clients’ generous answers both delighted MMTD and offered a mandate to change and grow. Pivotus is their response.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NhnaCQNxpw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47990\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-B78dz1rmC2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"But what do your clients really think?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"NWO began the rebranding process by surveying MMTD’s clients. Commonly held by all of their clients was great regard for their honesty, their industry knowledge, and their unbreakable commitment to exceptional customer service.\\n\\nClients also said they wanted to get deeper insights, beyond the fast and accurate data and delivery MMTD were already known for.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AlIqZXoFkr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47763\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ulVnymquUW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Why Pivotus?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"MMTD needed a new brand to drive their reputation for quality data, strategic advice and superior customer experiences.\\n\\nThe brand needed to convey a clear promise: we’ll rapidly measure and pivot to maximise your media spend returns.\\n\\nTo pivot is to turn on a point—and there’s no better metaphor for how they pivot digital media to get the best possible results for their clients.\\n\\nPivotus is also a call to action: Pivot your brand with their team—because they are nimble, fast and focused in a rapidly changing market.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MJZcxjyvrL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47761\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-w74pYr8Ehf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Founder and CEO Michael Petersen said the new brand better reflects market expectations of their firm and his team’s commitment to a superior customer experience.\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VLVB6hcgiC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47992\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GXT7RzNKoY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47764\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44649,48189,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 02:54:09','2021-09-27 02:54:09','0e8e3e14-2073-4598-b8ff-294e7f2550e2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44651,48191,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 02:54:43','2021-09-27 02:54:43','97cdd287-3beb-4873-adef-1b906fd85dcf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44654,48194,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 02:55:17','2021-09-27 02:55:17','d7107460-f159-4bed-98dc-0ce2c07467fb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44657,48197,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 02:55:54','2021-09-27 02:55:54','7ca6a8f7-f7f0-49e2-bac2-85e508a9f6f9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44660,48200,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 02:56:29','2021-09-27 02:56:29','17de2b02-9941-4d7d-bd38-15a0658bdf4d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44681,48221,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:00:11','2021-09-27 03:00:11','057e75e5-a674-402b-904e-759b230567e6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44685,48225,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:00:39','2021-09-27 03:00:39','44003f10-a35f-472d-9e6e-e28dafabf83d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44689,48229,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:01:09','2021-09-27 03:01:09','520aaf5f-81e7-43f6-ac5e-fa897dab2e46',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44693,48233,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:01:39','2021-09-27 03:01:39','ecaffe24-84b3-4aa6-9f92-ac0e552eb42c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44698,48238,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:02:31','2021-09-27 03:02:31','01dd9316-bd6d-46fb-8f25-2c1d8aaea91f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44701,48241,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:20:16','2021-09-27 03:20:16','b99ab654-b925-47b1-a14e-74796fdec2e3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44702,48242,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:20:49','2021-09-27 03:20:49','ca782ea3-907c-4b0f-8432-f480100aaf5e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44703,48243,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:21:12','2021-09-27 03:21:12','bd41ccbd-f798-4b92-921f-cb837d67892f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44704,48244,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:21:36','2021-09-27 03:21:36','e6d3fd0f-59d4-47ae-9645-77a6a4dd8da8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44705,48245,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:21:59','2021-09-27 03:21:59','da9ff697-5a3b-4f66-99a6-718481472da2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44706,48246,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:22:33','2021-09-27 03:22:33','77d6152d-07ec-459a-b097-64024719909a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44707,48247,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:23:04','2021-09-27 03:23:04','8be5a886-b2d0-4a4d-8bfc-1a6655026755',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44708,48248,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:23:33','2021-09-27 03:23:33','0dff0fda-909c-445e-a09d-f9979052651a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44709,48249,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:24:01','2021-09-27 03:24:01','0aff95e2-9402-40a1-adb0-4cd373f9eea9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44710,48250,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:24:30','2021-09-27 03:24:30','df9cd853-4994-406f-b40e-4bbeda3b9693',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44711,48251,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:24:59','2021-09-27 03:24:59','d3a6bc6b-4924-47ac-b31d-bb0fc814e577',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44712,48252,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:26:30','2021-09-27 03:26:30','bea15482-f636-4ddb-876a-8e002ab3ebdd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44713,48253,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:27:00','2021-09-27 03:27:00','a1a61f08-86d1-47cc-a260-36fb13ef50b3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44715,48255,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:27:36','2021-09-27 03:27:36','5754bcb2-424b-4f86-84f1-d138d56e122a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44716,48256,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:28:12','2021-09-27 03:28:12','400ff9d6-0e5b-4e7c-8e9f-cb838fd1de24',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44717,48257,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:28:49','2021-09-27 03:28:49','d1648fe2-516d-4fd0-bd0f-0919896583ce',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44718,48258,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:29:25','2021-09-27 03:29:25','c84efd03-38b8-487b-89e0-7b71d517d48c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44719,48259,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:30:03','2021-09-27 03:30:03','f6cce28a-35f1-45eb-ab0b-95a5f675bca7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44720,48260,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:30:38','2021-09-27 03:30:38','f13ada0c-f0bb-428c-8f27-ee90e8f3bc1d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44721,48261,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:31:13','2021-09-27 03:31:13','0087e956-48e4-4b1b-90f7-e3cd24aaf17e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44722,48262,1,'Terms and conditions','2021-09-27 03:32:47','2022-08-08 06:09:46','14dfb538-105c-4068-9469-e537dfddbb15',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LU0O2e8wW5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"General terms and conditions\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"##### **About this estimate**\\n\\nOur estimate is valid for a period of 45 days from the date of issue.\\n\\nThe following documents should be read together to understand the scope and price of our quoted services:\\n\\n- our estimate\\n- your brief, if supplied\\n- these Terms and Conditions\\n\\nThe estimate has been provided according to your brief to us. Any exclusions noted in the estimate should not be taken as exhaustive and you should assume that unless a service has been explicitly listed in the quote, it is not included in the price. \\n\\nAlterations to this brief or specifications will incur further costs, and we reserve the right to alter this estimate should we believe the changing scope of work falls outside of what was originally quoted.\\n\\nIt is your responsibility as the client to contact your account manager prior to approving the quote if you have queries or require clarification about any items in the quote. It is also your responsibility as the client to ensure this estimate accurately reflects the scope of work you require.\\n\\nBefore we begin work, you must sign your approval of the estimate and, if your organisation uses an ordering system, provide an order number or purchase order.\\n\\nYour acceptance of our estimate includes full acceptance of the conditions and payment terms listed in these terms and conditions. Once quotation approval has been provided, these conditions and payment terms are not negotiable.\\n\\nWe use the terms estimate and quote interchangeably and their meaning should be taken as the same: a cost estimate to the value of the work required to achieve your outcomes based on information you have provided us. This estimate may change in response to your project needs and, if it does, a new or additional quote may be required to be approved before work continues.\\n\\n##### **Approval**\\n\\nWe use Docusign for some estimates or, for smaller jobs, require an authorisation signature on a copy of the provided estimate. Your account manager will let you know the required authorisation method. No work can be scheduled until we have a duly authorised estimate through Docusign or your signature on an estimate.\\n\\n##### **Beginning your project**\\n\\nWe will not schedule or begin work on your project until we receive from you all of the artwork, content and other files required for the project, as well as the approved estimate or a purchase order.\\n\\nFor example, for an annual report, this might include all finalised content, graphs, charts, images, captions, financial statements and logos. This saves our studio unnecessary downtime and you money.\\n\\nWe will negotiate and document exceptions where required, but please be aware this may affect your costs and timeline.\\nYour NWO account manager may provide you with a checklist to ensure you are aware of all material that you must provide before we begin work on your project.\\n\\n##### **Brief**\\n\\nUsually, projects within NWO are worked on according to a brief developed in consultation between you and us. If you have not supplied a written brief to us, we may ask you to fill out our briefing template before we create an estimate. You need to check the wording of our estimate directly reflects your understanding of the work we’re carrying out for you. If it does not, please tell us and we will not begin working on the project until your concern is answered.\\n\\n##### **Checking, approval and signing-off**\\n\\nAs the client, you are responsible for checking your project for any errors and approving the final project. When you advise us that you approve a project, we take this to mean that you have checked it thoroughly for errors and that you are satisfied it has been completed to your satisfaction. For complex or additional jobs, we may ask you to fill in an approval form.\\n\\nWe have in place procedures and systems to ensure each of our finished projects reaches the highest possible standard of quality. However, from time to time, errors can occur. While we will do everything possible to fix the error, you are responsible for checking and approving the finished project and, as such, any costs of repairing the error are your responsibility.\\n\\nOn some projects, we may require you to provide your approval in writing before we finish work on your job or continue to publication or printing.\\n\\n##### **Client-directed alterations**\\n\\nAs much as possible, we try to accommodate client input and alterations within our quotes. However feedback, corrections and alterations to the brief over and above those quoted will be charged as incurred. Any requested changes are handled through our change control procedure which is:\\n\\n1. Any request for change must be detailed in writing including a description of the required change, the rationale for the change, and the effect the change will have on the project.\\n2. Your account manager will review the proposed change and determine, in consultation with you, if the change is within existing scope or outside the existing project scope. \\n3. If the change is minor and within the scope of the project briefing and/or budget, your account manager will schedule the change to be made at an appropriate time. \\n4. If the change is outside the scope of the existing project briefing and/or budget, your account manager will review the proposed change. \\n5. Your account manager will supply you with a quotation for the requested changes.\\n6. Work on the changes will be scheduled when we receive written  authorisation from you for the work and the associated charges. \\n7. Charges will be invoiced to you after we have implemented the agreed changes. \\n\\nThis is how we define a single round of changes: We supply the draft product, you email or otherwise detail the changes, and we then include those changes in our final product to you. Please note our preferred way of receiving changes is via a marked-up PDF. Your account manager can help you with this if you are unsure about marking up a PDF.\\n\\nChanges beyond this scope will be charged as author’s corrections. Please be aware that, during author’s corrections, all staff involved in the corrections process will incur costs for you. Depending on your project and the corrections required, this may include an account manager, producer, designer, editor, writer and so on.\\n\\nIf there is unused time left over from your estimate, we will use that time to make your alterations to save you money. Once that amount has been exhausted, however, we will begin charging author’s corrections and we will advise you of this by email and then in weekly cost updates.\\nYou can reduce the amount of corrections by:\\n\\n- supplying approved sourced material and instructions prior to NWO commencing work\\n- seeking authority within your organisation to be the ultimate decision-maker for this project\\n- advising the multiple stakeholders within your organisation of the cost of unbudgeted changes\\n- compiling all feedback into a single document for NWO’s use.\\n \\n##### **Digital projects**\\n\\nThe following terms are specific to digital projects. \\n\\n**Digital content entry**\\n\\nWhere the estimate pertains to content entry for your digital project, time has been allocated for us to input a set amount of content (as defined by the estimate). Should more time be required, it will be charged at our standard hourly rate. Content cannot be input until the project has been finalised and fully tested by NWO. Your timelines should allow content to be uploaded after completion of development and prior to final testing.\\n\\n**Acceptance and completion**\\n\\nWe will conduct testing throughout the project development; however, you are responsible for confirming the works produced by NWO are as per the brief and fit for the purpose and function as contracted. If no acceptance testing is undertaken by you, the product will be deemed accepted when launched or on its first public use. After acceptance, alterations/fixes will be charged as incurred.\\n\\n**Website warranty**\\n\\nWhen not otherwise specified our warranty period covers your website for 30 days from the acceptance date. Any issues in functionality that are brought to our attention during this period will be fixed without charge in a time frame to be negotiated with you. Charges will apply for any fixes outside the warranty period or changes to the website that are outside the scope of the original quotation.\\n\\n**Platform and browser compatibility**\\n\\nUnless otherwise specified, New Word Order will test the following browsers on the version current at the date of our estimate. \\n\\n- Chrome\\n- Edge\\n- Firefox\\n- Safari\\n- Opera\\n\\nNew Word Order is not responsible for work to update websites when new browsers are released after acceptance or if the website does not work on browsers not included in the list provided. Internet Explorer and other deprecated browsers are not tested against and, if required and possible, will incur additional charges.\\n\\n**Third-party software**\\n\\nIf third-party software is used in the delivery of your digital product unless otherwise specified the fees for the software are an annual licence fee. You agree to pay ongoing charges to ensure the continued functionality of your product.\\nIf you enter into a maintenance contract with us, on-going software licence fees will be included in the maintenance fees.\\n\\n##### **Deadlines**\\n\\nWe pride ourselves on meeting tight deadlines and have a strong reputation with our clients for fast, reliable work.\\n\\nHowever, if you significantly alter the brief – such as change text or photos that have already been supplied and approved, change website layouts, or increase the volume  to be produced – or other circumstances occur beyond our control, we may advise you of revised timelines.\\n\\nWe understand that circumstances change. We schedule all work into our studios based on delivery requirements. If your delivery requirements change you should inform us immediately.\\n\\nIf you are unable to meet timeframes for providing us information, feedback or content, we may withdraw your job from the studio until you get it to us. If your project has been delayed due to the loss of a scheduling window or the late approval of the estimate or proposal, we will inform you of the revised timeline.\\n\\nIf timelines are not being adhered to on your part and the project is on hold for 90 days or more, we reserve the right to close the project. You will be invoiced for any outstanding costs incurred up to the date of closure. Any overpayments will be refunded. We will always advise you before doing so, and will be happy to pick your project back up when you are ready to move ahead. \\n\\nRestarting a project will incur a re-commencement fee which will be invoiced prior to work starting again.\\n\\n##### **Administration and consumables**\\n\\nExpenses and administrative costs are incurred during every project. These may include phone calls, printing, couriers, proofs, materials, and finance and administrative work to make your project run smoothly.\\n\\nYour quote includes an estimate for these expenses, calculated at 3 per cent of your total quoted amount. We will advise you if these expenses will exceed the quoted amount.\\n\\n##### **Payment terms and pre-payments**\\n\\nOur invoices are to be paid within 14 days of the invoice date, with longer payment terms available for negotiation before a job begins.\\n\\n**When you’re a new client**\\n\\nIf you’re a new client, we reserve the right to invoice you 50 per cent of the total project fee before beginning work, or 100 per cent if the job is under $5000.\\n\\n**When you’re an existing client**\\n\\nIf you’re already a client of ours, we reserve the right to invoice you 30 per cent of the total project fee before beginning work, or 100 per cent if the job is under $5000.\\n\\n**When you owe us money**\\n\\nIf payment is delayed longer than 30 days, we reserve the right to withhold future and existing work until payment is made. See Late Payment below for fees associated with late payments.\\n\\n**When we’re employing suppliers for you**\\n\\nDepending on the level of costs and complexity associated with your project, we may choose to request a deposit of up to 50 per cent of the total cost prior to commencing your project. In this case, the remaining costs will be split into milestone-based payments.\\n\\n**When our work forms part of a larger project**\\n\\nWe reserve the right to invoice you when our responsibility within a project has been completed—not when your project has been completed in total.\\n\\n**When you order our work for your client**\\n\\nIf you have ordered our work on behalf of a third party, our payment terms still apply. Payment is required when our work is complete, not when you receive payment.\\n\\n**When you choose to make an advance payment**\\n\\nIf we agree to an advance payment, all work must be completed within that financial year.\\n\\n**Late payment**\\n\\nIf you do not pay us by the due date on an invoice, we reserve the right to cease production on any of your projects.\\n\\nWe may also charge a late payment fee:\\n\\n- 30-60 days late: 5%\\n- 60-90 days late: 10%\\n- 120+ days late: 15%\\n\\nWe do not offer payback schemes or loan arrangements. \\n\\nWe may engage a third party for debt recovery services of any payments which are more than 45 days overdue. Relevant contact details and information about outstanding payments will be provided to them to enable them to liaise directly with you for debt recovery purposes. \\n\\n##### **Limitation of liability**\\n\\nBy commissioning our services, you are agreeing that you will not hold New Word Order or its agents or employees liable for any incidental or consequential damages which arise from our failure to perform any aspect of the project in a timely manner, regardless of whether such failure was caused by intentional or negligent acts or omissions of New Word Order or a third party. Furthermore, we disclaim all implied warranties.\\n\\n##### **Photography and images**\\n\\nUnless otherwise specified in this estimate, we will charge you an additional amount if we purchase images from a stock library for your project.\\n\\nPlease note that you are responsible for ensuring all of your supplied images match the specifications we give you for your project. We expect you to comply with all relevant copyright and privacy laws and only supply content for which you have full authority to use\\n\\nWe reserve the right to charge additional time to assess your photo files and improve substandard images.\\n\\n##### **Print management and file output**\\n\\nWe have extensive experience in managing print projects. When you choose us to manage your print, you gain access to our experience, established supplier network and exacting quality control standards.\\n\\nFrom time to time, our clients choose to manage print themselves. In these situations, we will include a file output fee to cover the cost of supplying the file, and time taken to liaise with the printer will be charged as project management.\\n\\nWe hold onto current jobs for 6 months. After that time, your files are moved to our archive backup. If you require old files from our archive, a fee will be charged to locate and provide to you.\\n\\n##### **Project management**\\n\\nOur account and project managers make sure your project stays on track. This takes time and considerable effort. Your estimate contains a fee for project/account management that covers the administrative and management hours we expect our agency will expend in delivering your project.\\n\\nThese include project meetings between you and us, scheduling your work in the studios, ensuring projects are delivered on time and on budget, production of audio-visual and print components, and making sure project outcomes are in line with our requirements.\\n\\n##### **Publicity**\\n\\nWe may use your name for the purpose of promotional activities involving the works we have carried out for you, unless otherwise specified.\\n\\n##### **Supplying material to us**\\n\\nWe undertake projects in good faith. If the material you supply – such as photography, graphics or text – do not match the expected standard set during our discussions, we reserve the right to charge for the time it will take to improve or alter the material in order to use it.\\n\\nPlease supply all text, graphics and images in a digital format unless otherwise specified in this estimate or brief. Only supply material that you have the legal and ethical right to use.\\n\\n##### **Tenders**\\n\\nFrom time to time, we are engaged to supply services under a preferred supplier or tender arrangement. We reserve the right to withdraw from providing services after or during our appointment if changes to scope or exceptional circumstances make delivery untenable. Any decision will be made in consultation with the client.\\n\\n##### **Warranty of originality**\\n\\nNew Word Order warrants and represents that, to the best of its knowledge, the work assigned hereunder is original and has not been previously published, or that consent to use has been obtained on an unlimited basis; that all work or portions thereof obtained through the undersigned from third parties is original or, if previously published, that consent to use has been obtained on an unlimited basis; that New Word Order has full authority to make this agreement; and that the work prepared by New Word Order does not contain any scandalous, libellous, or unlawful matter. \\n\\nThis warranty does not extend to any uses that the client or others may make of our product that may infringe on the rights of others. The client expressly agrees that it will hold New Word Order harmless for all liability caused by the client’s use of our product to extent such use infringes on the rights of others.\\n\\n##### **Writing services**\\n\\nWe have extensive experience in all forms of writing and editing. Based on our experience, we choose not to work with Word files that contain multiple images or tables, as these files easily corrupt during the editing process. We are happy, though, to work with Word files with the images and tables extracted. Redesigning the Word file to include the images and tables at the end of the editing process will incur a separate fee.\\n\\n##### **Your obligation**\\n\\nYou have sole responsibility of ensuring the suitability and availability of any trademark rights, copyrights or other property rights that are intended to vest in the works that we have been commissioned to produce in accordance with your instructions.\\n\\n##### **Intellectual property**\\n\\nAny research data, concepts, diagrams or illustrations remain the property of New Word Order. Any alternate intellectual property rights contained in the design or materials used in the execution of this project, including artwork and computer-generated instructions and information, remain with New Word Order. \\n\\nYou warrant that you hold all necessary intellectual property rights in any document or material (including, but not limited to, plans and drawings), that are supplied to New Word Order for its provision of goods and services and that there is or will be no infringement of any rights or entitlements held by any third party. \\n\\nYou also indemnify and hold harmless New Word Order for any claims made against it arising from New Word Order’s use of any drawings, design or any other document, material or information provided by you, the client. \\n\\nYou warrant that all designs or instructions to New Word Order will not cause New Word Order to infringe any patent, registered design or trademark in the execution of the client orders.\\n\\n##### **Termination**\\n\\nNew Word Order may refuse to enter into this contract or terminate any existing arrangements, without prejudice, if we find our core values are at odds with yours. Our core values put people at the centre of everything we do. We do not condone discrimination of any kind, nor do we condone violations of human rights. \\n\\nWe also may terminate a contract if invoices are unpaid (see Payment terms and pre-payments) or if you become insolvent.\\n\\n##### **Changes to Terms and Conditions**\\n\\nFrom time-to-time we may make changes to these Terms and Conditions. Any changes, unless otherwise notified, will come into effect on your next project with us.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44723,48263,1,'Terms and conditions','2021-09-27 03:32:47','2021-09-27 03:32:47','d4c55366-115e-43f1-bf9f-75c65122e0ce',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44724,48264,1,'Terms and conditions','2021-09-27 03:34:00','2021-09-27 03:34:00','7c6b8b09-0df0-485e-b5d8-52c92b4cc563',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44726,48266,1,'Terms and conditions','2021-09-27 03:36:26','2021-09-27 03:36:26','fcc95d99-927d-43b3-b432-640dd33e3232',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LU0O2e8wW5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"General terms and conditions\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"#### About this estimate\\n\\nThis estimate is valid for a period of 30 days from the date of issue.\\n\\nThe following documents should be read together to understand the scope and price of our quoted services:\\n\\n- our estimate\\n- your brief, if supplied\\n- these General Terms and Conditions\\n- our Digital Terms and Conditions and other subcontractor terms and conditions, if applicable.\\n\\nThis estimate has been provided according to your brief to us. You should assume that unless a service has been explicitly listed in this quote, it is not included in the price.\\n\\nAlterations to this brief or specifications will incur further costs, and we reserve the right to alter this estimate should we believe the changing scope of work falls outside of what was originally quoted.\\n\\nIt is your responsibility as the client to contact your account manager prior to approving the quote if you have queries or require clarification about any items in the quote. It is also your responsibility as the client to ensure this estimate accurately reflects the scope of work you require.\\n\\nBefore we begin work, you must sign your approval of the quote and, if your organisation uses an ordering system, provide an order number or purchase order.\\n\\nYour acceptance of this quote includes full acceptance of the conditions and payment terms listed in this document. Once quotation approval has been provided, these conditions and payment terms are not negotiable.\\n\\n#### Beginning your project\\n\\nWe will not schedule or begin work on your project until we receive from you all of the artwork, content and other files required for the project, as well as the signed estimate or a purchase order.\\nFor example, for an annual report, this might include all finalised content, graphs, charts, photos, captions, financial statements and logos. This saves our studio unnecessary downtime and you money.\\nWe will negotiate and document exceptions where required, but please be aware this may affect your costs and timeline.\\nYour NWO account manager may provide you with a checklist to ensure you are aware of all material that you must provide before we begin work on your project.\\nBrief\\nUsually, projects within NWO are worked on according to a brief developed in consultation between you and us. If you have not supplied a written brief to us, we may ask you to fill out our briefing template before we create an estimate. You need to check the wording of our estimate directly reflects your understanding of the work we’re carrying out for you. If it does not, please tell us and we will not begin working on the project until your concern is answered.\\nChecking, approval and signing-off\\nAs the client, you are responsible for checking your project for any errors and approving the final project. When you advise us that you approve a project, we take this to mean that you have checked it thoroughly for errors and that you are satisfied it has been completed to your satisfaction. For complex or additional jobs, we may ask you to fill in an approval form.\\nAlthough we have procedures and systems in place to ensure the highest quality of our work, checking for errors is ultimately your responsibility. On some projects, we may require you to provide your approval in writing before we finish work on your job or continue to publication or printing.\\nClient-directed alterations\\nAs much as possible, we try to accommodate client input and alterations within our quotes. However feedback, corrections and alterations to the brief over and above those quoted will be charged as incurred.\\nThis is how we define a single round of changes: We supply the draft product, you email or otherwise detail the changes, and we then include those changes in our final product to you. Please note our preferred way of receiving changes is via a marked-up PDF.\\nChanges beyond this scope will be charged as author’s corrections. Please be aware that, during author’s corrections, all staff involved in the corrections process will incur costs for you. Depending on your project and the corrections required, this may include an account manager, producer, designer, editor, writer and so on.\\nIf there is unused time left over from your estimate, we will use that time to make your alterations to save you money. Once that amount has been exhausted, however, we will begin charging author’s corrections and we will advise you of this by email and then in weekly cost updates.\\nYou can reduce the amount of corrections by:\\nsupplying approved sourced material and instructions prior to NWO commencing work\\nseeking authority within your organisation to be the ultimate decision-maker for this project\\nadvising the multiple stakeholders within your organisation of the cost of unbudgeted changes\\ncompiling all feedback into a single document for NWO’s use.\\n \\nDeadlines\\nWe pride ourselves on meeting tight deadlines and have a strong reputation with our clients for fast, reliable work.\\nHowever, if you significantly alter the brief – such as change text or photos that have already been supplied and approved – or other circumstances occur beyond our control, we may advise you of revised timelines.\\n\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44727,48267,1,'Terms and conditions','2021-09-27 03:37:35','2021-09-27 03:37:35','72a74256-f259-44a4-a79a-68cb0c730021',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LU0O2e8wW5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"General terms and conditions\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"#### About this estimate\\n\\nThis estimate is valid for a period of 30 days from the date of issue.\\n\\nThe following documents should be read together to understand the scope and price of our quoted services:\\n\\n- our estimate\\n- your brief, if supplied\\n- these General Terms and Conditions\\n- our Digital Terms and Conditions and other subcontractor terms and conditions, if applicable.\\n\\nThis estimate has been provided according to your brief to us. You should assume that unless a service has been explicitly listed in this quote, it is not included in the price.\\n\\nAlterations to this brief or specifications will incur further costs, and we reserve the right to alter this estimate should we believe the changing scope of work falls outside of what was originally quoted.\\n\\nIt is your responsibility as the client to contact your account manager prior to approving the quote if you have queries or require clarification about any items in the quote. It is also your responsibility as the client to ensure this estimate accurately reflects the scope of work you require.\\n\\nBefore we begin work, you must sign your approval of the quote and, if your organisation uses an ordering system, provide an order number or purchase order.\\n\\nYour acceptance of this quote includes full acceptance of the conditions and payment terms listed in this document. Once quotation approval has been provided, these conditions and payment terms are not negotiable.\\n\\n#### Beginning your project\\n\\nWe will not schedule or begin work on your project until we receive from you all of the artwork, content and other files required for the project, as well as the signed estimate or a purchase order.\\nFor example, for an annual report, this might include all finalised content, graphs, charts, photos, captions, financial statements and logos. This saves our studio unnecessary downtime and you money.\\nWe will negotiate and document exceptions where required, but please be aware this may affect your costs and timeline.\\nYour NWO account manager may provide you with a checklist to ensure you are aware of all material that you must provide before we begin work on your project.\\nBrief\\nUsually, projects within NWO are worked on according to a brief developed in consultation between you and us. If you have not supplied a written brief to us, we may ask you to fill out our briefing template before we create an estimate. You need to check the wording of our estimate directly reflects your understanding of the work we’re carrying out for you. If it does not, please tell us and we will not begin working on the project until your concern is answered.\\nChecking, approval and signing-off\\nAs the client, you are responsible for checking your project for any errors and approving the final project. When you advise us that you approve a project, we take this to mean that you have checked it thoroughly for errors and that you are satisfied it has been completed to your satisfaction. For complex or additional jobs, we may ask you to fill in an approval form.\\nAlthough we have procedures and systems in place to ensure the highest quality of our work, checking for errors is ultimately your responsibility. On some projects, we may require you to provide your approval in writing before we finish work on your job or continue to publication or printing.\\nClient-directed alterations\\nAs much as possible, we try to accommodate client input and alterations within our quotes. However feedback, corrections and alterations to the brief over and above those quoted will be charged as incurred.\\nThis is how we define a single round of changes: We supply the draft product, you email or otherwise detail the changes, and we then include those changes in our final product to you. Please note our preferred way of receiving changes is via a marked-up PDF.\\nChanges beyond this scope will be charged as author’s corrections. Please be aware that, during author’s corrections, all staff involved in the corrections process will incur costs for you. Depending on your project and the corrections required, this may include an account manager, producer, designer, editor, writer and so on.\\nIf there is unused time left over from your estimate, we will use that time to make your alterations to save you money. Once that amount has been exhausted, however, we will begin charging author’s corrections and we will advise you of this by email and then in weekly cost updates.\\nYou can reduce the amount of corrections by:\\nsupplying approved sourced material and instructions prior to NWO commencing work\\nseeking authority within your organisation to be the ultimate decision-maker for this project\\nadvising the multiple stakeholders within your organisation of the cost of unbudgeted changes\\ncompiling all feedback into a single document for NWO’s use.\\n \\nDeadlines\\nWe pride ourselves on meeting tight deadlines and have a strong reputation with our clients for fast, reliable work.\\nHowever, if you significantly alter the brief – such as change text or photos that have already been supplied and approved – or other circumstances occur beyond our control, we may advise you of revised timelines.\\n\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44730,48270,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:38:18','2021-09-27 03:38:18','40f7a5d0-a574-4270-ae8c-c4c1a3ad5d51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44731,48271,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:38:49','2021-09-27 03:38:49','b615b8e6-d79b-4ce7-903a-1357284004e6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44732,48272,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:39:24','2021-09-27 03:39:24','518886bd-bfff-4d40-aff9-f32e6dd9a305',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44733,48273,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:40:00','2021-09-27 03:40:00','1b707b10-edf9-4229-b023-7c61cf9c08f7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44734,48274,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:40:26','2021-09-27 03:40:26','248a50af-96c5-4e7e-a6e0-7c33af36b403',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44736,48276,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:41:02','2021-09-27 03:41:02','9c983cd8-3738-471c-ab77-d662ebc85720',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44739,48279,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:41:38','2021-09-27 03:41:38','0b4dee5b-6bf8-469e-821d-2c5af9455156',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44741,48281,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:42:13','2021-09-27 03:42:13','cf9c6299-df10-4d37-9de4-5f8444b43950',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44744,48284,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:42:50','2021-09-27 03:42:50','157d4fa9-82f6-4fa2-930c-37b6c2a5275f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44754,48294,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:46:32','2021-09-27 03:46:32','fa1febab-eafc-40e2-ac02-3472f7233494',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44759,48299,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:53:03','2021-09-27 03:53:03','86ebcab6-b5e9-494c-9b54-c6b22d3074bc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44762,48302,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:53:37','2021-09-27 03:53:37','fe7188a6-552b-432d-bfae-290b67fc7bbf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44765,48305,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:54:13','2021-09-27 03:54:13','bdbe63e3-c107-43fc-ae2f-8739956a457e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44767,48307,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:54:42','2021-09-27 03:54:42','c460d67d-0eab-428a-9d67-ccc666dcd66c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44770,48310,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:55:16','2021-09-27 03:55:16','2551db09-0d02-4327-82a6-e7a15cedb3ab',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44772,48312,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:55:47','2021-09-27 03:55:47','35db8f3a-9485-44b7-8884-114430b25716',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44774,48314,1,'Terms and conditions','2021-09-27 03:56:03','2021-09-27 03:56:03','f5798076-c65a-4af9-b4d0-a03dc40acee9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LU0O2e8wW5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"General terms and conditions\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"##### **About this estimate**\\n\\nThis estimate is valid for a period of 30 days from the date of issue.\\n\\nThe following documents should be read together to understand the scope and price of our quoted services:\\n\\n- our estimate\\n- your brief, if supplied\\n- these General Terms and Conditions\\n- our Digital Terms and Conditions and other subcontractor terms and conditions, if applicable.\\n\\nThis estimate has been provided according to your brief to us. You should assume that unless a service has been explicitly listed in this quote, it is not included in the price.\\n\\nAlterations to this brief or specifications will incur further costs, and we reserve the right to alter this estimate should we believe the changing scope of work falls outside of what was originally quoted.\\n\\nIt is your responsibility as the client to contact your account manager prior to approving the quote if you have queries or require clarification about any items in the quote. It is also your responsibility as the client to ensure this estimate accurately reflects the scope of work you require.\\n\\nBefore we begin work, you must sign your approval of the quote and, if your organisation uses an ordering system, provide an order number or purchase order.\\n\\nYour acceptance of this quote includes full acceptance of the conditions and payment terms listed in this document. Once quotation approval has been provided, these conditions and payment terms are not negotiable.\\n\\n##### **Beginning your project**\\n\\nWe will not schedule or begin work on your project until we receive from you all of the artwork, content and other files required for the project, as well as the signed estimate or a purchase order.\\n\\nFor example, for an annual report, this might include all finalised content, graphs, charts, photos, captions, financial statements and logos. This saves our studio unnecessary downtime and you money.\\n\\nWe will negotiate and document exceptions where required, but please be aware this may affect your costs and timeline.\\n\\nYour NWO account manager may provide you with a checklist to ensure you are aware of all material that you must provide before we begin work on your project.\\n\\n##### **Brief**\\n\\nUsually, projects within NWO are worked on according to a brief developed in consultation between you and us. If you have not supplied a written brief to us, we may ask you to fill out our briefing template before we create an estimate. You need to check the wording of our estimate directly reflects your understanding of the work we’re carrying out for you. If it does not, please tell us and we will not begin working on the project until your concern is answered.\\n\\nChecking, approval and signing-off\\nAs the client, you are responsible for checking your project for any errors and approving the final project. When you advise us that you approve a project, we take this to mean that you have checked it thoroughly for errors and that you are satisfied it has been completed to your satisfaction. For complex or additional jobs, we may ask you to fill in an approval form.\\nAlthough we have procedures and systems in place to ensure the highest quality of our work, checking for errors is ultimately your responsibility. On some projects, we may require you to provide your approval in writing before we finish work on your job or continue to publication or printing.\\n\\n##### **Client-directed alterations**\\n\\nAs much as possible, we try to accommodate client input and alterations within our quotes. However feedback, corrections and alterations to the brief over and above those quoted will be charged as incurred.\\n\\nThis is how we define a single round of changes: We supply the draft product, you email or otherwise detail the changes, and we then include those changes in our final product to you. Please note our preferred way of receiving changes is via a marked-up PDF.\\n\\nChanges beyond this scope will be charged as author’s corrections. Please be aware that, during author’s corrections, all staff involved in the corrections process will incur costs for you. \\n\\nDepending on your project and the corrections required, this may include an account manager, producer, designer, editor, writer and so on.\\n\\nIf there is unused time left over from your estimate, we will use that time to make your alterations to save you money. Once that amount has been exhausted, however, we will begin charging author’s corrections and we will advise you of this by email and then in weekly cost updates.\\n\\nYou can reduce the amount of corrections by:\\n\\n- supplying approved sourced material and instructions prior to NWO commencing work\\n- seeking authority within your organisation to be the ultimate decision-maker for this project\\n- advising the multiple stakeholders within your organisation of the cost of unbudgeted changes\\n- compiling all feedback into a single document for NWO’s use.\\n \\n##### **Deadlines**\\n\\nWe pride ourselves on meeting tight deadlines and have a strong reputation with our clients for fast, reliable work.\\n\\nHowever, if you significantly alter the brief – such as change text or photos that have already been supplied and approved – or other circumstances occur beyond our control, we may advise you of revised timelines.\\n\\n**If timelines are not being kept to on your part and the project is on hold for 90 days or more, we reserve the right to close the project and refund the costs to you of any work not completed. We will always advise you before doing so, and will be happy to pick your project back up when you are ready to move ahead.**\\n\\n##### **Digital projects**\\n\\nAdditional terms and conditions apply for digital projects.\\n\\n##### **Consumables**\\n\\nExpenses are incurred during every project. These may include phone calls, printing, couriers, proofs and materials. Your quote includes an estimate for these expenses, calculated at 3 per cent of your total quoted amount. We will advise you if these expenses will exceed the quoted amount.\\n\\n##### **Payment terms and pre-payments**\\n\\nOur invoices are to be paid within 14 days of the invoice date, with longer payment terms available for negotiation before a job begins.\\n\\n##### **When you’re a new client**\\n\\nIf you’re a new client, we reserve the right to invoice you 30 per cent of the total project fee before beginning work.\\n\\n##### **When you owe us money**\\n\\nIf payment is delayed longer than 30 days, we reserve the right to withhold future and existing work until payment is made.\\n\\n##### **When we’re employing suppliers for you**\\n\\nDepending on the level of costs and complexity associated with your project, we may choose to request a deposit of 30 per cent of the total cost prior to commencing your project. In this case, the remaining 70 per cent of our invoice will be split into milestone-based payments.\\n\\n##### **When our work forms part of a larger project**\\n\\nWe reserve the right to invoice you when our responsibility within a project has been completed—not when your project has been completed in total.\\n\\n##### **When you order our work for your client**\\n\\nIf you have ordered our work on behalf of a third party, our payment terms still apply. Payment is required when our work is complete, not when you receive payment.\\n\\n##### **When you choose to make an advance payment**\\n\\nIf we agree to an advance payment, all work must be completed within that financial year.\\n\\n##### **Late payment**\\n\\nIf you do not pay us by the due date on an invoice, we reserve the right to cease production on any of your projects.\\n\\nWe may also charge a late payment fee:\\n\\n- 30-60 days late: 5%\\n- 60-90 days late: 10%\\n- 120+ days late: 15%\\n\\nWe do not offer payback schemes or loan arrangements.\\n\\n##### **Limitation of liability**\\n\\nBy commissioning our services, you are agreeing that you will not hold New Word Order or its agents or employees liable for any incidental or consequential damages which arise from our failure to perform any aspect of the project in a timely manner, regardless of whether such failure was caused by intentional or negligent acts or omissions of New Word Order or a third party. Furthermore, we disclaim all implied warranties.\\n\\n##### **Photography and images**\\n\\nUnless otherwise specified in this estimate, we will charge you an additional amount if we purchase images from a stock library for your project.\\n\\nPlease note that you are responsible for ensuring all of your supplied images match the specifications we give you for your project. We expect you to comply with all relevant copyright and privacy laws.\\n\\nWe reserve the right to charge additional time to assess your photo files and improve substandard images.\\n\\n##### **Print management and file output**\\n\\nWe have extensive experience in managing print projects. When you choose us to manage your print, you gain access to our experience, established supplier network and exacting quality control standards.\\n\\nFrom time to time, our clients choose to manage print themselves. In these situations, we will include a file output fee to cover the cost of supplying the file, and time taken to liaise with the printer will be charged as project management.\\n\\n##### **Project management**\\n\\nAll projects require project management. This fee covers the non-creative or strategic hours we expect our agency will expend in delivering your project.\\n\\n##### **Publicity**\\n\\nWe may use your name for the purpose of promotional activities involving the works we have carried out for you, unless otherwise specified.\\n\\n##### **Responsibility for errors**\\n\\nWe have in place procedures and systems to ensure each of our finished projects reaches the highest possible standard of quality. However, from time to time, errors can occur. While we will do everything possible to fix the error, you are responsible for checking and approving the finished project and, as such, any costs of repairing the error are your responsibility.\\n\\n##### **Supplying material to us**\\n\\nWe undertake projects in good faith. If the material you supply – such as photography, graphics or text – does not match the expected standard set during our discussions, we reserve the right to charge for the time it will take to improve or alter the material in order to use it.\\n\\nPlease supply all text, graphics and photography in a digital format unless otherwise specified in this estimate or brief.\\n\\n##### **Tenders**\\n\\nFrom time to time, we are engaged to supply services under a preferred supplier or tender arrangement. We reserve the right to withdraw from providing services after or during our appointment if changes to scope or exceptional circumstances make delivery untenable. Any decision will be made in consultation with the client.\\n\\n##### **Warranty of originality**\\n\\nNew Word Order warrants and represents that, to the best of its knowledge, the work assigned hereunder is original and has not been previously published, or that consent to use has been obtained on an unlimited basis; that all work or portions thereof obtained through the undersigned from third parties is original or, if previously published, that consent to use has been obtained on an unlimited basis; that New Word Order has full authority to make this agreement; and that the work prepared by New Word Order does not contain any scandalous, libellous, or unlawful matter. This warranty does not extend to any uses that the client or others may make of our product that may infringe on the rights of others. The client expressly agrees that it will hold New Word Order harmless for all liability caused by the client’s use of our product to extent such use infringes on the rights of others.\\n\\n##### **Writing services**\\n\\nWe have extensive experience in all forms of writing and editing. Based on our experience, we choose not to work with Word files that contain multiple images or tables, as these files easily corrupt during the editing process. We are happy, though, to work with Word files with the images and tables extracted. Redesigning the Word file to include the images and tables at the end of the editing process will incur a separate fee.\\n\\n##### **Your obligation**\\n\\nYou have sole responsibility of ensuring the suitability and availability of any trademark rights, copyrights or other property rights that are intended to vest in the works that we have been commissioned to produce in accordance with your instructions.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Digital terms and conditions\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new4\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"##### **Overview**\\n\\nUpon project commencement it is expressly understood by New Word Order that the client has agreed to the terms and conditions outlined below.\\n\\n##### **Estimate**\\n\\nThe estimate is valid for a period of 30 days from the date of issue. The estimate has been provided according to an initial client brief. Unless an item has been explicitly listed in this estimate it is not included in the price. Alterations to this brief or specifications will incur further costs. New Word Order reserves the right to alter the estimate should we believe the scope of works falls outside of what was estimated. Please contact the account manager prior to estimate approval should items within the estimate require clarification. All estimates require signed or email approval and order numbers (if an ordering system is in use) prior to commencement of work.\\n\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44777,48317,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:56:20','2021-09-27 03:56:20','1d021dc9-54f5-43cd-b5f8-045cb72da445',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44778,48318,1,'Terms and conditions','2021-09-27 03:56:22','2021-09-27 03:56:22','1d02a8b7-0505-4a6e-8286-a54f443e33b7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LU0O2e8wW5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"General terms and conditions\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"##### **About this estimate**\\n\\nThis estimate is valid for a period of 30 days from the date of issue.\\n\\nThe following documents should be read together to understand the scope and price of our quoted services:\\n\\n- our estimate\\n- your brief, if supplied\\n- these General Terms and Conditions\\n- our Digital Terms and Conditions and other subcontractor terms and conditions, if applicable.\\n\\nThis estimate has been provided according to your brief to us. You should assume that unless a service has been explicitly listed in this quote, it is not included in the price.\\n\\nAlterations to this brief or specifications will incur further costs, and we reserve the right to alter this estimate should we believe the changing scope of work falls outside of what was originally quoted.\\n\\nIt is your responsibility as the client to contact your account manager prior to approving the quote if you have queries or require clarification about any items in the quote. It is also your responsibility as the client to ensure this estimate accurately reflects the scope of work you require.\\n\\nBefore we begin work, you must sign your approval of the quote and, if your organisation uses an ordering system, provide an order number or purchase order.\\n\\nYour acceptance of this quote includes full acceptance of the conditions and payment terms listed in this document. Once quotation approval has been provided, these conditions and payment terms are not negotiable.\\n\\n##### **Beginning your project**\\n\\nWe will not schedule or begin work on your project until we receive from you all of the artwork, content and other files required for the project, as well as the signed estimate or a purchase order.\\n\\nFor example, for an annual report, this might include all finalised content, graphs, charts, photos, captions, financial statements and logos. This saves our studio unnecessary downtime and you money.\\n\\nWe will negotiate and document exceptions where required, but please be aware this may affect your costs and timeline.\\n\\nYour NWO account manager may provide you with a checklist to ensure you are aware of all material that you must provide before we begin work on your project.\\n\\n##### **Brief**\\n\\nUsually, projects within NWO are worked on according to a brief developed in consultation between you and us. If you have not supplied a written brief to us, we may ask you to fill out our briefing template before we create an estimate. You need to check the wording of our estimate directly reflects your understanding of the work we’re carrying out for you. If it does not, please tell us and we will not begin working on the project until your concern is answered.\\n\\nChecking, approval and signing-off\\nAs the client, you are responsible for checking your project for any errors and approving the final project. When you advise us that you approve a project, we take this to mean that you have checked it thoroughly for errors and that you are satisfied it has been completed to your satisfaction. For complex or additional jobs, we may ask you to fill in an approval form.\\nAlthough we have procedures and systems in place to ensure the highest quality of our work, checking for errors is ultimately your responsibility. On some projects, we may require you to provide your approval in writing before we finish work on your job or continue to publication or printing.\\n\\n##### **Client-directed alterations**\\n\\nAs much as possible, we try to accommodate client input and alterations within our quotes. However feedback, corrections and alterations to the brief over and above those quoted will be charged as incurred.\\n\\nThis is how we define a single round of changes: We supply the draft product, you email or otherwise detail the changes, and we then include those changes in our final product to you. Please note our preferred way of receiving changes is via a marked-up PDF.\\n\\nChanges beyond this scope will be charged as author’s corrections. Please be aware that, during author’s corrections, all staff involved in the corrections process will incur costs for you. \\n\\nDepending on your project and the corrections required, this may include an account manager, producer, designer, editor, writer and so on.\\n\\nIf there is unused time left over from your estimate, we will use that time to make your alterations to save you money. Once that amount has been exhausted, however, we will begin charging author’s corrections and we will advise you of this by email and then in weekly cost updates.\\n\\nYou can reduce the amount of corrections by:\\n\\n- supplying approved sourced material and instructions prior to NWO commencing work\\n- seeking authority within your organisation to be the ultimate decision-maker for this project\\n- advising the multiple stakeholders within your organisation of the cost of unbudgeted changes\\n- compiling all feedback into a single document for NWO’s use.\\n \\n##### **Deadlines**\\n\\nWe pride ourselves on meeting tight deadlines and have a strong reputation with our clients for fast, reliable work.\\n\\nHowever, if you significantly alter the brief – such as change text or photos that have already been supplied and approved – or other circumstances occur beyond our control, we may advise you of revised timelines.\\n\\n**If timelines are not being kept to on your part and the project is on hold for 90 days or more, we reserve the right to close the project and refund the costs to you of any work not completed. We will always advise you before doing so, and will be happy to pick your project back up when you are ready to move ahead.**\\n\\n##### **Digital projects**\\n\\nAdditional terms and conditions apply for digital projects.\\n\\n##### **Consumables**\\n\\nExpenses are incurred during every project. These may include phone calls, printing, couriers, proofs and materials. Your quote includes an estimate for these expenses, calculated at 3 per cent of your total quoted amount. We will advise you if these expenses will exceed the quoted amount.\\n\\n##### **Payment terms and pre-payments**\\n\\nOur invoices are to be paid within 14 days of the invoice date, with longer payment terms available for negotiation before a job begins.\\n\\n##### **When you’re a new client**\\n\\nIf you’re a new client, we reserve the right to invoice you 30 per cent of the total project fee before beginning work.\\n\\n##### **When you owe us money**\\n\\nIf payment is delayed longer than 30 days, we reserve the right to withhold future and existing work until payment is made.\\n\\n##### **When we’re employing suppliers for you**\\n\\nDepending on the level of costs and complexity associated with your project, we may choose to request a deposit of 30 per cent of the total cost prior to commencing your project. In this case, the remaining 70 per cent of our invoice will be split into milestone-based payments.\\n\\n##### **When our work forms part of a larger project**\\n\\nWe reserve the right to invoice you when our responsibility within a project has been completed—not when your project has been completed in total.\\n\\n##### **When you order our work for your client**\\n\\nIf you have ordered our work on behalf of a third party, our payment terms still apply. Payment is required when our work is complete, not when you receive payment.\\n\\n##### **When you choose to make an advance payment**\\n\\nIf we agree to an advance payment, all work must be completed within that financial year.\\n\\n##### **Late payment**\\n\\nIf you do not pay us by the due date on an invoice, we reserve the right to cease production on any of your projects.\\n\\nWe may also charge a late payment fee:\\n\\n- 30-60 days late: 5%\\n- 60-90 days late: 10%\\n- 120+ days late: 15%\\n\\nWe do not offer payback schemes or loan arrangements.\\n\\n##### **Limitation of liability**\\n\\nBy commissioning our services, you are agreeing that you will not hold New Word Order or its agents or employees liable for any incidental or consequential damages which arise from our failure to perform any aspect of the project in a timely manner, regardless of whether such failure was caused by intentional or negligent acts or omissions of New Word Order or a third party. Furthermore, we disclaim all implied warranties.\\n\\n##### **Photography and images**\\n\\nUnless otherwise specified in this estimate, we will charge you an additional amount if we purchase images from a stock library for your project.\\n\\nPlease note that you are responsible for ensuring all of your supplied images match the specifications we give you for your project. We expect you to comply with all relevant copyright and privacy laws.\\n\\nWe reserve the right to charge additional time to assess your photo files and improve substandard images.\\n\\n##### **Print management and file output**\\n\\nWe have extensive experience in managing print projects. When you choose us to manage your print, you gain access to our experience, established supplier network and exacting quality control standards.\\n\\nFrom time to time, our clients choose to manage print themselves. In these situations, we will include a file output fee to cover the cost of supplying the file, and time taken to liaise with the printer will be charged as project management.\\n\\n##### **Project management**\\n\\nAll projects require project management. This fee covers the non-creative or strategic hours we expect our agency will expend in delivering your project.\\n\\n##### **Publicity**\\n\\nWe may use your name for the purpose of promotional activities involving the works we have carried out for you, unless otherwise specified.\\n\\n##### **Responsibility for errors**\\n\\nWe have in place procedures and systems to ensure each of our finished projects reaches the highest possible standard of quality. However, from time to time, errors can occur. While we will do everything possible to fix the error, you are responsible for checking and approving the finished project and, as such, any costs of repairing the error are your responsibility.\\n\\n##### **Supplying material to us**\\n\\nWe undertake projects in good faith. If the material you supply – such as photography, graphics or text – does not match the expected standard set during our discussions, we reserve the right to charge for the time it will take to improve or alter the material in order to use it.\\n\\nPlease supply all text, graphics and photography in a digital format unless otherwise specified in this estimate or brief.\\n\\n##### **Tenders**\\n\\nFrom time to time, we are engaged to supply services under a preferred supplier or tender arrangement. We reserve the right to withdraw from providing services after or during our appointment if changes to scope or exceptional circumstances make delivery untenable. Any decision will be made in consultation with the client.\\n\\n##### **Warranty of originality**\\n\\nNew Word Order warrants and represents that, to the best of its knowledge, the work assigned hereunder is original and has not been previously published, or that consent to use has been obtained on an unlimited basis; that all work or portions thereof obtained through the undersigned from third parties is original or, if previously published, that consent to use has been obtained on an unlimited basis; that New Word Order has full authority to make this agreement; and that the work prepared by New Word Order does not contain any scandalous, libellous, or unlawful matter. This warranty does not extend to any uses that the client or others may make of our product that may infringe on the rights of others. The client expressly agrees that it will hold New Word Order harmless for all liability caused by the client’s use of our product to extent such use infringes on the rights of others.\\n\\n##### **Writing services**\\n\\nWe have extensive experience in all forms of writing and editing. Based on our experience, we choose not to work with Word files that contain multiple images or tables, as these files easily corrupt during the editing process. We are happy, though, to work with Word files with the images and tables extracted. Redesigning the Word file to include the images and tables at the end of the editing process will incur a separate fee.\\n\\n##### **Your obligation**\\n\\nYou have sole responsibility of ensuring the suitability and availability of any trademark rights, copyrights or other property rights that are intended to vest in the works that we have been commissioned to produce in accordance with your instructions.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44782,48322,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:56:57','2021-09-27 03:56:57','2a20bd72-01a1-4349-8b4b-3b8166daf370',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44783,48323,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 03:57:31','2021-09-27 03:57:31','e19cf511-e0c6-4b57-b5ca-3e95cdf59b37',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44784,48324,1,'Terms and conditions','2021-09-27 03:58:25','2021-09-27 03:58:25','084b77f9-2517-404d-b789-68b23a9815b8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LU0O2e8wW5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"General terms and conditions\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"##### **About this estimate**\\n\\nThis estimate is valid for a period of 30 days from the date of issue.\\n\\nThe following documents should be read together to understand the scope and price of our quoted services:\\n\\n- our estimate\\n- your brief, if supplied\\n- these General Terms and Conditions\\n- our Digital Terms and Conditions and other subcontractor terms and conditions, if applicable.\\n\\nThis estimate has been provided according to your brief to us. You should assume that unless a service has been explicitly listed in this quote, it is not included in the price.\\n\\nAlterations to this brief or specifications will incur further costs, and we reserve the right to alter this estimate should we believe the changing scope of work falls outside of what was originally quoted.\\n\\nIt is your responsibility as the client to contact your account manager prior to approving the quote if you have queries or require clarification about any items in the quote. It is also your responsibility as the client to ensure this estimate accurately reflects the scope of work you require.\\n\\nBefore we begin work, you must sign your approval of the quote and, if your organisation uses an ordering system, provide an order number or purchase order.\\n\\nYour acceptance of this quote includes full acceptance of the conditions and payment terms listed in this document. Once quotation approval has been provided, these conditions and payment terms are not negotiable.\\n\\n##### **Beginning your project**\\n\\nWe will not schedule or begin work on your project until we receive from you all of the artwork, content and other files required for the project, as well as the signed estimate or a purchase order.\\n\\nFor example, for an annual report, this might include all finalised content, graphs, charts, photos, captions, financial statements and logos. This saves our studio unnecessary downtime and you money.\\n\\nWe will negotiate and document exceptions where required, but please be aware this may affect your costs and timeline.\\n\\nYour NWO account manager may provide you with a checklist to ensure you are aware of all material that you must provide before we begin work on your project.\\n\\n##### **Brief**\\n\\nUsually, projects within NWO are worked on according to a brief developed in consultation between you and us. If you have not supplied a written brief to us, we may ask you to fill out our briefing template before we create an estimate. You need to check the wording of our estimate directly reflects your understanding of the work we’re carrying out for you. If it does not, please tell us and we will not begin working on the project until your concern is answered.\\n\\nChecking, approval and signing-off\\nAs the client, you are responsible for checking your project for any errors and approving the final project. When you advise us that you approve a project, we take this to mean that you have checked it thoroughly for errors and that you are satisfied it has been completed to your satisfaction. For complex or additional jobs, we may ask you to fill in an approval form.\\nAlthough we have procedures and systems in place to ensure the highest quality of our work, checking for errors is ultimately your responsibility. On some projects, we may require you to provide your approval in writing before we finish work on your job or continue to publication or printing.\\n\\n##### **Client-directed alterations**\\n\\nAs much as possible, we try to accommodate client input and alterations within our quotes. However feedback, corrections and alterations to the brief over and above those quoted will be charged as incurred.\\n\\nThis is how we define a single round of changes: We supply the draft product, you email or otherwise detail the changes, and we then include those changes in our final product to you. Please note our preferred way of receiving changes is via a marked-up PDF.\\n\\nChanges beyond this scope will be charged as author’s corrections. Please be aware that, during author’s corrections, all staff involved in the corrections process will incur costs for you. \\n\\nDepending on your project and the corrections required, this may include an account manager, producer, designer, editor, writer and so on.\\n\\nIf there is unused time left over from your estimate, we will use that time to make your alterations to save you money. Once that amount has been exhausted, however, we will begin charging author’s corrections and we will advise you of this by email and then in weekly cost updates.\\n\\nYou can reduce the amount of corrections by:\\n\\n- supplying approved sourced material and instructions prior to NWO commencing work\\n- seeking authority within your organisation to be the ultimate decision-maker for this project\\n- advising the multiple stakeholders within your organisation of the cost of unbudgeted changes\\n- compiling all feedback into a single document for NWO’s use.\\n \\n##### **Deadlines**\\n\\nWe pride ourselves on meeting tight deadlines and have a strong reputation with our clients for fast, reliable work.\\n\\nHowever, if you significantly alter the brief – such as change text or photos that have already been supplied and approved – or other circumstances occur beyond our control, we may advise you of revised timelines.\\n\\n**If timelines are not being kept to on your part and the project is on hold for 90 days or more, we reserve the right to close the project and refund the costs to you of any work not completed. We will always advise you before doing so, and will be happy to pick your project back up when you are ready to move ahead.**\\n\\n##### **Digital projects**\\n\\nAdditional terms and conditions apply for digital projects.\\n\\n##### **Consumables**\\n\\nExpenses are incurred during every project. These may include phone calls, printing, couriers, proofs and materials. Your quote includes an estimate for these expenses, calculated at 3 per cent of your total quoted amount. We will advise you if these expenses will exceed the quoted amount.\\n\\n##### **Payment terms and pre-payments**\\n\\nOur invoices are to be paid within 14 days of the invoice date, with longer payment terms available for negotiation before a job begins.\\n\\n##### **When you’re a new client**\\n\\nIf you’re a new client, we reserve the right to invoice you 30 per cent of the total project fee before beginning work.\\n\\n##### **When you owe us money**\\n\\nIf payment is delayed longer than 30 days, we reserve the right to withhold future and existing work until payment is made.\\n\\n##### **When we’re employing suppliers for you**\\n\\nDepending on the level of costs and complexity associated with your project, we may choose to request a deposit of 30 per cent of the total cost prior to commencing your project. In this case, the remaining 70 per cent of our invoice will be split into milestone-based payments.\\n\\n##### **When our work forms part of a larger project**\\n\\nWe reserve the right to invoice you when our responsibility within a project has been completed—not when your project has been completed in total.\\n\\n##### **When you order our work for your client**\\n\\nIf you have ordered our work on behalf of a third party, our payment terms still apply. Payment is required when our work is complete, not when you receive payment.\\n\\n##### **When you choose to make an advance payment**\\n\\nIf we agree to an advance payment, all work must be completed within that financial year.\\n\\n##### **Late payment**\\n\\nIf you do not pay us by the due date on an invoice, we reserve the right to cease production on any of your projects.\\n\\nWe may also charge a late payment fee:\\n\\n- 30-60 days late: 5%\\n- 60-90 days late: 10%\\n- 120+ days late: 15%\\n\\nWe do not offer payback schemes or loan arrangements.\\n\\n##### **Limitation of liability**\\n\\nBy commissioning our services, you are agreeing that you will not hold New Word Order or its agents or employees liable for any incidental or consequential damages which arise from our failure to perform any aspect of the project in a timely manner, regardless of whether such failure was caused by intentional or negligent acts or omissions of New Word Order or a third party. Furthermore, we disclaim all implied warranties.\\n\\n##### **Photography and images**\\n\\nUnless otherwise specified in this estimate, we will charge you an additional amount if we purchase images from a stock library for your project.\\n\\nPlease note that you are responsible for ensuring all of your supplied images match the specifications we give you for your project. We expect you to comply with all relevant copyright and privacy laws.\\n\\nWe reserve the right to charge additional time to assess your photo files and improve substandard images.\\n\\n##### **Print management and file output**\\n\\nWe have extensive experience in managing print projects. When you choose us to manage your print, you gain access to our experience, established supplier network and exacting quality control standards.\\n\\nFrom time to time, our clients choose to manage print themselves. In these situations, we will include a file output fee to cover the cost of supplying the file, and time taken to liaise with the printer will be charged as project management.\\n\\n##### **Project management**\\n\\nAll projects require project management. This fee covers the non-creative or strategic hours we expect our agency will expend in delivering your project.\\n\\n##### **Publicity**\\n\\nWe may use your name for the purpose of promotional activities involving the works we have carried out for you, unless otherwise specified.\\n\\n##### **Responsibility for errors**\\n\\nWe have in place procedures and systems to ensure each of our finished projects reaches the highest possible standard of quality. However, from time to time, errors can occur. While we will do everything possible to fix the error, you are responsible for checking and approving the finished project and, as such, any costs of repairing the error are your responsibility.\\n\\n##### **Supplying material to us**\\n\\nWe undertake projects in good faith. If the material you supply – such as photography, graphics or text – does not match the expected standard set during our discussions, we reserve the right to charge for the time it will take to improve or alter the material in order to use it.\\n\\nPlease supply all text, graphics and photography in a digital format unless otherwise specified in this estimate or brief.\\n\\n##### **Tenders**\\n\\nFrom time to time, we are engaged to supply services under a preferred supplier or tender arrangement. We reserve the right to withdraw from providing services after or during our appointment if changes to scope or exceptional circumstances make delivery untenable. Any decision will be made in consultation with the client.\\n\\n##### **Warranty of originality**\\n\\nNew Word Order warrants and represents that, to the best of its knowledge, the work assigned hereunder is original and has not been previously published, or that consent to use has been obtained on an unlimited basis; that all work or portions thereof obtained through the undersigned from third parties is original or, if previously published, that consent to use has been obtained on an unlimited basis; that New Word Order has full authority to make this agreement; and that the work prepared by New Word Order does not contain any scandalous, libellous, or unlawful matter. This warranty does not extend to any uses that the client or others may make of our product that may infringe on the rights of others. The client expressly agrees that it will hold New Word Order harmless for all liability caused by the client’s use of our product to extent such use infringes on the rights of others.\\n\\n##### **Writing services**\\n\\nWe have extensive experience in all forms of writing and editing. Based on our experience, we choose not to work with Word files that contain multiple images or tables, as these files easily corrupt during the editing process. We are happy, though, to work with Word files with the images and tables extracted. Redesigning the Word file to include the images and tables at the end of the editing process will incur a separate fee.\\n\\n##### **Your obligation**\\n\\nYou have sole responsibility of ensuring the suitability and availability of any trademark rights, copyrights or other property rights that are intended to vest in the works that we have been commissioned to produce in accordance with your instructions.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WK3QEqnAUL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Digital terms and conditions\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44785,48325,1,'Terms and conditions','2021-09-27 04:00:34','2021-09-27 04:00:34','c8474e46-883e-4866-8ebe-c996cda7a8e3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LU0O2e8wW5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"General terms and conditions\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"##### **About this estimate**\\n\\nThis estimate is valid for a period of 30 days from the date of issue.\\n\\nThe following documents should be read together to understand the scope and price of our quoted services:\\n\\n- our estimate\\n- your brief, if supplied\\n- these General Terms and Conditions\\n- our Digital Terms and Conditions and other subcontractor terms and conditions, if applicable.\\n\\nThis estimate has been provided according to your brief to us. You should assume that unless a service has been explicitly listed in this quote, it is not included in the price.\\n\\nAlterations to this brief or specifications will incur further costs, and we reserve the right to alter this estimate should we believe the changing scope of work falls outside of what was originally quoted.\\n\\nIt is your responsibility as the client to contact your account manager prior to approving the quote if you have queries or require clarification about any items in the quote. It is also your responsibility as the client to ensure this estimate accurately reflects the scope of work you require.\\n\\nBefore we begin work, you must sign your approval of the quote and, if your organisation uses an ordering system, provide an order number or purchase order.\\n\\nYour acceptance of this quote includes full acceptance of the conditions and payment terms listed in this document. Once quotation approval has been provided, these conditions and payment terms are not negotiable.\\n\\n##### **Beginning your project**\\n\\nWe will not schedule or begin work on your project until we receive from you all of the artwork, content and other files required for the project, as well as the signed estimate or a purchase order.\\n\\nFor example, for an annual report, this might include all finalised content, graphs, charts, photos, captions, financial statements and logos. This saves our studio unnecessary downtime and you money.\\n\\nWe will negotiate and document exceptions where required, but please be aware this may affect your costs and timeline.\\n\\nYour NWO account manager may provide you with a checklist to ensure you are aware of all material that you must provide before we begin work on your project.\\n\\n##### **Brief**\\n\\nUsually, projects within NWO are worked on according to a brief developed in consultation between you and us. If you have not supplied a written brief to us, we may ask you to fill out our briefing template before we create an estimate. You need to check the wording of our estimate directly reflects your understanding of the work we’re carrying out for you. If it does not, please tell us and we will not begin working on the project until your concern is answered.\\n\\nChecking, approval and signing-off\\nAs the client, you are responsible for checking your project for any errors and approving the final project. When you advise us that you approve a project, we take this to mean that you have checked it thoroughly for errors and that you are satisfied it has been completed to your satisfaction. For complex or additional jobs, we may ask you to fill in an approval form.\\nAlthough we have procedures and systems in place to ensure the highest quality of our work, checking for errors is ultimately your responsibility. On some projects, we may require you to provide your approval in writing before we finish work on your job or continue to publication or printing.\\n\\n##### **Client-directed alterations**\\n\\nAs much as possible, we try to accommodate client input and alterations within our quotes. However feedback, corrections and alterations to the brief over and above those quoted will be charged as incurred.\\n\\nThis is how we define a single round of changes: We supply the draft product, you email or otherwise detail the changes, and we then include those changes in our final product to you. Please note our preferred way of receiving changes is via a marked-up PDF.\\n\\nChanges beyond this scope will be charged as author’s corrections. Please be aware that, during author’s corrections, all staff involved in the corrections process will incur costs for you. \\n\\nDepending on your project and the corrections required, this may include an account manager, producer, designer, editor, writer and so on.\\n\\nIf there is unused time left over from your estimate, we will use that time to make your alterations to save you money. Once that amount has been exhausted, however, we will begin charging author’s corrections and we will advise you of this by email and then in weekly cost updates.\\n\\nYou can reduce the amount of corrections by:\\n\\n- supplying approved sourced material and instructions prior to NWO commencing work\\n- seeking authority within your organisation to be the ultimate decision-maker for this project\\n- advising the multiple stakeholders within your organisation of the cost of unbudgeted changes\\n- compiling all feedback into a single document for NWO’s use.\\n \\n##### **Deadlines**\\n\\nWe pride ourselves on meeting tight deadlines and have a strong reputation with our clients for fast, reliable work.\\n\\nHowever, if you significantly alter the brief – such as change text or photos that have already been supplied and approved – or other circumstances occur beyond our control, we may advise you of revised timelines.\\n\\n**If timelines are not being kept to on your part and the project is on hold for 90 days or more, we reserve the right to close the project and refund the costs to you of any work not completed. We will always advise you before doing so, and will be happy to pick your project back up when you are ready to move ahead.**\\n\\n##### **Digital projects**\\n\\nAdditional terms and conditions apply for digital projects.\\n\\n##### **Consumables**\\n\\nExpenses are incurred during every project. These may include phone calls, printing, couriers, proofs and materials. Your quote includes an estimate for these expenses, calculated at 3 per cent of your total quoted amount. We will advise you if these expenses will exceed the quoted amount.\\n\\n##### **Payment terms and pre-payments**\\n\\nOur invoices are to be paid within 14 days of the invoice date, with longer payment terms available for negotiation before a job begins.\\n\\n##### **When you’re a new client**\\n\\nIf you’re a new client, we reserve the right to invoice you 30 per cent of the total project fee before beginning work.\\n\\n##### **When you owe us money**\\n\\nIf payment is delayed longer than 30 days, we reserve the right to withhold future and existing work until payment is made.\\n\\n##### **When we’re employing suppliers for you**\\n\\nDepending on the level of costs and complexity associated with your project, we may choose to request a deposit of 30 per cent of the total cost prior to commencing your project. In this case, the remaining 70 per cent of our invoice will be split into milestone-based payments.\\n\\n##### **When our work forms part of a larger project**\\n\\nWe reserve the right to invoice you when our responsibility within a project has been completed—not when your project has been completed in total.\\n\\n##### **When you order our work for your client**\\n\\nIf you have ordered our work on behalf of a third party, our payment terms still apply. Payment is required when our work is complete, not when you receive payment.\\n\\n##### **When you choose to make an advance payment**\\n\\nIf we agree to an advance payment, all work must be completed within that financial year.\\n\\n##### **Late payment**\\n\\nIf you do not pay us by the due date on an invoice, we reserve the right to cease production on any of your projects.\\n\\nWe may also charge a late payment fee:\\n\\n- 30-60 days late: 5%\\n- 60-90 days late: 10%\\n- 120+ days late: 15%\\n\\nWe do not offer payback schemes or loan arrangements.\\n\\n##### **Limitation of liability**\\n\\nBy commissioning our services, you are agreeing that you will not hold New Word Order or its agents or employees liable for any incidental or consequential damages which arise from our failure to perform any aspect of the project in a timely manner, regardless of whether such failure was caused by intentional or negligent acts or omissions of New Word Order or a third party. Furthermore, we disclaim all implied warranties.\\n\\n##### **Photography and images**\\n\\nUnless otherwise specified in this estimate, we will charge you an additional amount if we purchase images from a stock library for your project.\\n\\nPlease note that you are responsible for ensuring all of your supplied images match the specifications we give you for your project. We expect you to comply with all relevant copyright and privacy laws.\\n\\nWe reserve the right to charge additional time to assess your photo files and improve substandard images.\\n\\n##### **Print management and file output**\\n\\nWe have extensive experience in managing print projects. When you choose us to manage your print, you gain access to our experience, established supplier network and exacting quality control standards.\\n\\nFrom time to time, our clients choose to manage print themselves. In these situations, we will include a file output fee to cover the cost of supplying the file, and time taken to liaise with the printer will be charged as project management.\\n\\n##### **Project management**\\n\\nAll projects require project management. This fee covers the non-creative or strategic hours we expect our agency will expend in delivering your project.\\n\\n##### **Publicity**\\n\\nWe may use your name for the purpose of promotional activities involving the works we have carried out for you, unless otherwise specified.\\n\\n##### **Responsibility for errors**\\n\\nWe have in place procedures and systems to ensure each of our finished projects reaches the highest possible standard of quality. However, from time to time, errors can occur. While we will do everything possible to fix the error, you are responsible for checking and approving the finished project and, as such, any costs of repairing the error are your responsibility.\\n\\n##### **Supplying material to us**\\n\\nWe undertake projects in good faith. If the material you supply – such as photography, graphics or text – does not match the expected standard set during our discussions, we reserve the right to charge for the time it will take to improve or alter the material in order to use it.\\n\\nPlease supply all text, graphics and photography in a digital format unless otherwise specified in this estimate or brief.\\n\\n##### **Tenders**\\n\\nFrom time to time, we are engaged to supply services under a preferred supplier or tender arrangement. We reserve the right to withdraw from providing services after or during our appointment if changes to scope or exceptional circumstances make delivery untenable. Any decision will be made in consultation with the client.\\n\\n##### **Warranty of originality**\\n\\nNew Word Order warrants and represents that, to the best of its knowledge, the work assigned hereunder is original and has not been previously published, or that consent to use has been obtained on an unlimited basis; that all work or portions thereof obtained through the undersigned from third parties is original or, if previously published, that consent to use has been obtained on an unlimited basis; that New Word Order has full authority to make this agreement; and that the work prepared by New Word Order does not contain any scandalous, libellous, or unlawful matter. This warranty does not extend to any uses that the client or others may make of our product that may infringe on the rights of others. The client expressly agrees that it will hold New Word Order harmless for all liability caused by the client’s use of our product to extent such use infringes on the rights of others.\\n\\n##### **Writing services**\\n\\nWe have extensive experience in all forms of writing and editing. Based on our experience, we choose not to work with Word files that contain multiple images or tables, as these files easily corrupt during the editing process. We are happy, though, to work with Word files with the images and tables extracted. Redesigning the Word file to include the images and tables at the end of the editing process will incur a separate fee.\\n\\n##### **Your obligation**\\n\\nYou have sole responsibility of ensuring the suitability and availability of any trademark rights, copyrights or other property rights that are intended to vest in the works that we have been commissioned to produce in accordance with your instructions.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WK3QEqnAUL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Digital terms and conditions\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44793,48333,1,'Dave Saxby - Brand Audit Submission - 27 Sep, 2021','2021-09-27 04:07:34','2021-09-27 04:07:34','396922a3-a11d-4972-ab9f-a45d3fb87007',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Australian Brand: As a portal for people who have more than they need to connect with people who don\'t have enough. Our brand facilitates the re-allocation of the worlds resources towards the needy and shares with integrity the plight of those less fortunate, their strength and resilience and their victories. Our brand also subtly but consistently shares the goodness of God. \nCambodian Brand: We often say in Cambodia, \"we don\'t make cakes, we make memories\". We get to be a part of people\'s special days - be it weddings, birthdays, anniversaries - not nly does the cake have to be perfect, but the memory does too - our customer service, our timing, our support...everything building towards a wonderful memory made for each customer with a Bloom cake in the middle of it.','Our supporter base in Australia (and hopefully one day, the world) - that they would find new freedoms within themselves and their lives through kindness, generosity and the nurturing of their justice hearts. \n\nOur beneficiaries - survivors of sex trafficking in Cambodia (and hopefully one day, the world). That they would find healing, hope and purpose through the spaces and programs Bloom facilitates.\n\nOur cake/cafe customers in Cambodia - that they would use Bloom to make their events something special.','We see individuals - in our staff, in our supporter-base, in our customers and in our beneficiaries. We\'re all about \"The One!\"\n\nWe share with integrity, sensitivity and hope. \n\nWe stand for healing, hope and purpose. For  restorative justice to take hold in sex-trafficking survivors hearts and permeate throughout their lives. We stand for the captives being set free\n+','Human trafficking is a heavy line of work to be involved in. We aim to walk a line of balance. One one side we seek a high level of professionalism and acknowledgement of the weight of the situations our beneficiaries are coming from on one side. On the other side we have a deep sense of gratitude, celebration and joy that we get to be a part of something so special. \n\nWe also have quite a healthy dose of fun, always.','I\'d say from an Australian perspective there is always a bit of hesitation and tension with our own interactions with our brand. Protecting the dignity or the girls and the true mission of Bloom whilst trying to advocate, fundraise and share that message has always seen us tiptoe a line of communication that rarely leaves any of us feeling fully satisfied. \nThat said I think we\'ve done it as well as we could have and I particularly like how internally we\'re focused on the hope, joy, life and all the positive things happening as a brand, rather than only presenting the negative \"mess\". \n\nPersonally I\'ve found the \"Asia\" on the end of Bloom to be a mental barrier to future growth. I\'ve also found our logo to be clunky and not easy work with.','I couldn\'t add anything more on top of what Emma has written here I\'m sure.','Bloom Asia (Aus)\nBloom Cakes and Training Cafe (Cambodia)','- Healing, Hope and Purpose.\n- Authentic opportunities for post-traumatic growth\n- A  chance at a new life\n- Integrity\n- A global acknowledgement of the long-term challenges facing survivors of sex trafficking.','I think the initial summary in our 5 year Strategic Planning document shares this well.\nThe big mention is that in our past our brands between NGO and business activity have been the same.','I see the name Bloom being retained as the not-for-profit entity name. I see it emerging as an on-point, vocal advocate for the challenges sex-trafficking survivors face. I see it as an organisation that meets these needs holistically for each individual.\nI see Bloom\'s reach extending beyond Asia one day. A slight rename in Australia would help facilitate this:\neg: Bloom Freedom Projects, \nBloom Freedom International, \n\nI also still really like the tagline \"she\'s worth fighting for\" which captures the core of Bloom\'s work. And would help with continuity amidst the transition.\nI see a new logo and new look (fonts, colours, images) for Bloom as a not-for-profit.\n\nIn Cambodia I see Bloom\'s business activities operating under different names, with different looks to create as much distance as possible from the NGO. This would start with the cafe/cake decorating businesses and different brands would be created for each future enterprise which the NGO starts.','Em will have covered this well.','Currently the most public representation of our NGO brand speaks of \"training and employment to trauma survivors or survivors of exploitation\". It touches lightly on the backgrounds of our beneficiaries but leans more heavily into what Bloom provides - literacy, vocational training, counselling and employment. \nAs it evolves I see Bloom balancing the scales a bit to share more of the true nature of its beneficiaries whilst at the same time being an educating platform as to what sex-trafficking survivors need to build a new life. \"rescue is a moment - restoration is a complex journey\" sort of message. I see the focus shifting a little further away from \"the cakes\" and more towards the programs and services happening for survivors (including employment). I see Bloom running a diverse range of employment and training centres in the future and these being less of a feature than the cake shop is at the moment within the NGO message/brand..','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I see m has completed this well.','I think our logo is a bit outdated and clunky to use across many platforms. The colour pallet and fonts are in need of updating - though there is a softness and light heartedness to the current colour pallet which I think captures Bloom well.',NULL,'Em can answer this','Em can answer this','Em can answer this','I think Em has forwarded through recent supporter surveys which will give insight into this.','Bigger and clearer voice in the not-for-profit sector providing restoration services to sex trafficking survivors. \nIncreased fundraising capabilities','This is outlined well in the \"Identity Matters\" document provided.','Just taking this space here to tell you again how grateful we are for NWO\'s support for Bloom! You guys are incredible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44798,48338,1,'Terms and conditions','2021-09-27 04:10:00','2021-09-27 04:10:00','fc6922f5-96dc-4e45-94ec-35264887d50b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LU0O2e8wW5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new5\",\"new6\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"General terms and conditions\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"##### **About this estimate**\\n\\nThis estimate is valid for a period of 30 days from the date of issue.\\n\\nThe following documents should be read together to understand the scope and price of our quoted services:\\n\\n- our estimate\\n- your brief, if supplied\\n- these General Terms and Conditions\\n- our Digital Terms and Conditions and other subcontractor terms and conditions, if applicable.\\n\\nThis estimate has been provided according to your brief to us. You should assume that unless a service has been explicitly listed in this quote, it is not included in the price.\\n\\nAlterations to this brief or specifications will incur further costs, and we reserve the right to alter this estimate should we believe the changing scope of work falls outside of what was originally quoted.\\n\\nIt is your responsibility as the client to contact your account manager prior to approving the quote if you have queries or require clarification about any items in the quote. It is also your responsibility as the client to ensure this estimate accurately reflects the scope of work you require.\\n\\nBefore we begin work, you must sign your approval of the quote and, if your organisation uses an ordering system, provide an order number or purchase order.\\n\\nYour acceptance of this quote includes full acceptance of the conditions and payment terms listed in this document. Once quotation approval has been provided, these conditions and payment terms are not negotiable.\\n\\n##### **Beginning your project**\\n\\nWe will not schedule or begin work on your project until we receive from you all of the artwork, content and other files required for the project, as well as the signed estimate or a purchase order.\\n\\nFor example, for an annual report, this might include all finalised content, graphs, charts, photos, captions, financial statements and logos. This saves our studio unnecessary downtime and you money.\\n\\nWe will negotiate and document exceptions where required, but please be aware this may affect your costs and timeline.\\n\\nYour NWO account manager may provide you with a checklist to ensure you are aware of all material that you must provide before we begin work on your project.\\n\\n##### **Brief**\\n\\nUsually, projects within NWO are worked on according to a brief developed in consultation between you and us. If you have not supplied a written brief to us, we may ask you to fill out our briefing template before we create an estimate. You need to check the wording of our estimate directly reflects your understanding of the work we’re carrying out for you. If it does not, please tell us and we will not begin working on the project until your concern is answered.\\n\\nChecking, approval and signing-off\\nAs the client, you are responsible for checking your project for any errors and approving the final project. When you advise us that you approve a project, we take this to mean that you have checked it thoroughly for errors and that you are satisfied it has been completed to your satisfaction. For complex or additional jobs, we may ask you to fill in an approval form.\\nAlthough we have procedures and systems in place to ensure the highest quality of our work, checking for errors is ultimately your responsibility. On some projects, we may require you to provide your approval in writing before we finish work on your job or continue to publication or printing.\\n\\n##### **Client-directed alterations**\\n\\nAs much as possible, we try to accommodate client input and alterations within our quotes. However feedback, corrections and alterations to the brief over and above those quoted will be charged as incurred.\\n\\nThis is how we define a single round of changes: We supply the draft product, you email or otherwise detail the changes, and we then include those changes in our final product to you. Please note our preferred way of receiving changes is via a marked-up PDF.\\n\\nChanges beyond this scope will be charged as author’s corrections. Please be aware that, during author’s corrections, all staff involved in the corrections process will incur costs for you. \\n\\nDepending on your project and the corrections required, this may include an account manager, producer, designer, editor, writer and so on.\\n\\nIf there is unused time left over from your estimate, we will use that time to make your alterations to save you money. Once that amount has been exhausted, however, we will begin charging author’s corrections and we will advise you of this by email and then in weekly cost updates.\\n\\nYou can reduce the amount of corrections by:\\n\\n- supplying approved sourced material and instructions prior to NWO commencing work\\n- seeking authority within your organisation to be the ultimate decision-maker for this project\\n- advising the multiple stakeholders within your organisation of the cost of unbudgeted changes\\n- compiling all feedback into a single document for NWO’s use.\\n \\n##### **Deadlines**\\n\\nWe pride ourselves on meeting tight deadlines and have a strong reputation with our clients for fast, reliable work.\\n\\nHowever, if you significantly alter the brief – such as change text or photos that have already been supplied and approved – or other circumstances occur beyond our control, we may advise you of revised timelines.\\n\\n**If timelines are not being kept to on your part and the project is on hold for 90 days or more, we reserve the right to close the project and refund the costs to you of any work not completed. We will always advise you before doing so, and will be happy to pick your project back up when you are ready to move ahead.**\\n\\n##### **Digital projects**\\n\\nAdditional terms and conditions apply for digital projects.\\n\\n##### **Consumables**\\n\\nExpenses are incurred during every project. These may include phone calls, printing, couriers, proofs and materials. Your quote includes an estimate for these expenses, calculated at 3 per cent of your total quoted amount. We will advise you if these expenses will exceed the quoted amount.\\n\\n##### **Payment terms and pre-payments**\\n\\nOur invoices are to be paid within 14 days of the invoice date, with longer payment terms available for negotiation before a job begins.\\n\\n##### **When you’re a new client**\\n\\nIf you’re a new client, we reserve the right to invoice you 30 per cent of the total project fee before beginning work.\\n\\n##### **When you owe us money**\\n\\nIf payment is delayed longer than 30 days, we reserve the right to withhold future and existing work until payment is made.\\n\\n##### **When we’re employing suppliers for you**\\n\\nDepending on the level of costs and complexity associated with your project, we may choose to request a deposit of 30 per cent of the total cost prior to commencing your project. In this case, the remaining 70 per cent of our invoice will be split into milestone-based payments.\\n\\n##### **When our work forms part of a larger project**\\n\\nWe reserve the right to invoice you when our responsibility within a project has been completed—not when your project has been completed in total.\\n\\n##### **When you order our work for your client**\\n\\nIf you have ordered our work on behalf of a third party, our payment terms still apply. Payment is required when our work is complete, not when you receive payment.\\n\\n##### **When you choose to make an advance payment**\\n\\nIf we agree to an advance payment, all work must be completed within that financial year.\\n\\n##### **Late payment**\\n\\nIf you do not pay us by the due date on an invoice, we reserve the right to cease production on any of your projects.\\n\\nWe may also charge a late payment fee:\\n\\n- 30-60 days late: 5%\\n- 60-90 days late: 10%\\n- 120+ days late: 15%\\n\\nWe do not offer payback schemes or loan arrangements.\\n\\n##### **Limitation of liability**\\n\\nBy commissioning our services, you are agreeing that you will not hold New Word Order or its agents or employees liable for any incidental or consequential damages which arise from our failure to perform any aspect of the project in a timely manner, regardless of whether such failure was caused by intentional or negligent acts or omissions of New Word Order or a third party. Furthermore, we disclaim all implied warranties.\\n\\n##### **Photography and images**\\n\\nUnless otherwise specified in this estimate, we will charge you an additional amount if we purchase images from a stock library for your project.\\n\\nPlease note that you are responsible for ensuring all of your supplied images match the specifications we give you for your project. We expect you to comply with all relevant copyright and privacy laws.\\n\\nWe reserve the right to charge additional time to assess your photo files and improve substandard images.\\n\\n##### **Print management and file output**\\n\\nWe have extensive experience in managing print projects. When you choose us to manage your print, you gain access to our experience, established supplier network and exacting quality control standards.\\n\\nFrom time to time, our clients choose to manage print themselves. In these situations, we will include a file output fee to cover the cost of supplying the file, and time taken to liaise with the printer will be charged as project management.\\n\\n##### **Project management**\\n\\nAll projects require project management. This fee covers the non-creative or strategic hours we expect our agency will expend in delivering your project.\\n\\n##### **Publicity**\\n\\nWe may use your name for the purpose of promotional activities involving the works we have carried out for you, unless otherwise specified.\\n\\n##### **Responsibility for errors**\\n\\nWe have in place procedures and systems to ensure each of our finished projects reaches the highest possible standard of quality. However, from time to time, errors can occur. While we will do everything possible to fix the error, you are responsible for checking and approving the finished project and, as such, any costs of repairing the error are your responsibility.\\n\\n##### **Supplying material to us**\\n\\nWe undertake projects in good faith. If the material you supply – such as photography, graphics or text – does not match the expected standard set during our discussions, we reserve the right to charge for the time it will take to improve or alter the material in order to use it.\\n\\nPlease supply all text, graphics and photography in a digital format unless otherwise specified in this estimate or brief.\\n\\n##### **Tenders**\\n\\nFrom time to time, we are engaged to supply services under a preferred supplier or tender arrangement. We reserve the right to withdraw from providing services after or during our appointment if changes to scope or exceptional circumstances make delivery untenable. Any decision will be made in consultation with the client.\\n\\n##### **Warranty of originality**\\n\\nNew Word Order warrants and represents that, to the best of its knowledge, the work assigned hereunder is original and has not been previously published, or that consent to use has been obtained on an unlimited basis; that all work or portions thereof obtained through the undersigned from third parties is original or, if previously published, that consent to use has been obtained on an unlimited basis; that New Word Order has full authority to make this agreement; and that the work prepared by New Word Order does not contain any scandalous, libellous, or unlawful matter. This warranty does not extend to any uses that the client or others may make of our product that may infringe on the rights of others. The client expressly agrees that it will hold New Word Order harmless for all liability caused by the client’s use of our product to extent such use infringes on the rights of others.\\n\\n##### **Writing services**\\n\\nWe have extensive experience in all forms of writing and editing. Based on our experience, we choose not to work with Word files that contain multiple images or tables, as these files easily corrupt during the editing process. We are happy, though, to work with Word files with the images and tables extracted. Redesigning the Word file to include the images and tables at the end of the editing process will incur a separate fee.\\n\\n##### **Your obligation**\\n\\nYou have sole responsibility of ensuring the suitability and availability of any trademark rights, copyrights or other property rights that are intended to vest in the works that we have been commissioned to produce in accordance with your instructions.\\n\\n---\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new5\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Digital terms and conditions\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new6\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"##### **Overview**\\n\\nUpon project commencement it is expressly understood by New Word Order that the client has agreed to the terms and conditions outlined below.\\n\\n##### **Estimate**\\n\\nThe estimate is valid for a period of 30 days from the date of issue. The estimate has been provided according to an initial client brief. Unless an item has been explicitly listed in this estimate it is not included in the price. Alterations to this brief or specifications will incur further costs. New Word Order reserves the right to alter the estimate should we believe the scope of works falls outside of what was estimated. Please contact the account manager prior to estimate approval should items within the estimate require clarification. All estimates require signed or email approval and order numbers (if an ordering system is in use) prior to commencement of work.\\n\\n##### **Brief / specification / strategy / development planning**\\n\\nAll brief / specification / strategy / development planning documents provided to the client by New Word Order supersede any client brief. The documents are the final brief for the project and will be what New Word Order works from to design and build the project. The client is responsible for ensuring all stakeholders within their organisation and relevant external organisations have read the document/s in full detail. Project design and development will not commence until New Word Order has received sign-off of the documents. Requests not covered within the documents that have been signed off will be treated as alterations to scope and therefore be subject to a costing and timeline review.\\n\\n##### **Timeframes**\\n\\nThe timeline is negotiated at project commencement once the final estimate has been approved. Timelines provided prior to final estimate approval are indicative only and may not form part of the project plan. Deadlines agreed in the timeframe set down at project commencement are subject to change should the client fail to supply requested materials, information and/or access to data, software or other systems according to the agreed schedule. All work will cease and timeframes will be impacted should invoices not be paid within the required period (please see payment notes). New Word Order endeavors to work within timeframes however there are certain factors that are subject to change and are outside our control. As such New Word Order cannot guarantee deadlines will be met.\\n\\n##### **Artwork**\\n\\nArtwork is to be fully approved from all client parties prior to the commencement of further work. Once approved and development commences, artwork alterations will incur further costs. Artwork supplied by the client needs to be to New Word Order specifications. Client must provide a detailed brief including placement and background specifications.\\n\\nOur estimate assumes a standard level of complexity. Upon viewing the artwork, New Word Order reserves the right to put forward an altered estimate should the artwork be not within the budget estimated.\\n\\n##### **Content**\\n\\nWhere this estimate pertains to content entry, time has been allocated for New Word Order to input a set amount of content (as defined by the estimate). Should more time be required, it will be charged at our standard hourly rate. Content cannot be input until the project has been finalised and fully tested by New Word Order. The client timelines should allow content to be uploaded after completion of development and prior to final testing.\\n\\n##### **Supply of material**\\n\\nText, graphics and photography are to be supplied in digital format unless otherwise specified in this estimate. Text is to be fully edited and proofread prior to New Word Order receiving it. All supplied materials must comply with standard copyright requirements. Work will not commence until all supplied materials have been given to New Word Order and they meet the requirements of the New Word Order workflow process. Failure to provide information in a timely manner will result in timelines being pushed out to accommodate.\\n\\n##### **Imagery**\\n\\nUnless otherwise specified in this estimate imagery required for a project that is purchased from a stock library or shot specifically by New Word Order’s professional photographer will be sourced at an additional cost.\\n\\n##### **Corrections, alterations and expenses**\\n\\nExpenses incurred throughout the project including couriers, proofs, and materials are invoiced in addition to the estimated amount. As much as possible we try to accommodate client input and alterations within our estimates. However feedback, corrections and alterations to the brief over and above those estimated will be charged as incurred. The client can reduce the amount of corrections by supplying approved sourced material and instructions prior to New Word Order commencing work.\\n\\n##### **Payment**\\n\\nUnless otherwise specified a deposit of 30% of the total estimate will be paid prior to the commencement of the project. The remaining 70% will be split into milestone based part payments. Each invoice is to be paid within 30 days of the invoice date. In the event of an invoice not being paid within the terms, production will cease on all work for the client. New Word Order reserves the right to invoice projects when our portion of the project has been completed, not once the project has been finalised by the client. In the case of content managed websites this means New Word Order will invoice once we have finalised our portion of the project – not once the website has gone live. New Word Order takes no responsibility for the time it takes for the client to enter content. If the client uses a purchase order number system in order to pay invoices the purchase order number is to be provided upon estimate approval. The project will not commence without a purchase order number. We do not, at any stage, offer payback schemes or loan arrangements. If New Word Order agrees to an advance payment, all work must be completed within that financial year. Your acceptance of this estimate includes full acceptance of the payment terms listed above. Once estimate approval has been provided these payment terms are not negotiable.\\n\\n##### **Project completion**\\n\\nNew Word Order will ensure the project is tested correctly however we do require our clients to fully test and approve their project prior to project completion. Testing is carried out at each stage of development. New Word Order will require proofs to be signed of at each stage of development. Once final approval has been given and the project is finalised, a 14-day period is allocated for final client testing. Once this period ends, alterations/fixes will be charged as incurred.\\n\\n##### **Publicity**\\n\\nNew Word Order may use the client’s name for the purpose of promotional activities involving the works carried out for the client unless otherwise specified.\\n\\n##### **Search engine optimisation**\\n\\nThis estimate does not include SEO (search engine optimisation) unless specified in the estimate.\\n\\n##### **Client’s obligation**\\n\\nThe client acknowledges that it has the sole responsibility of ensuring the suitability and availability of any trademark rights, copyrights or other property rights that are intended to vest in the works which New Word Order has been commissioned to produce in accordance with the client instructions.\\n\\n##### **Warranty of originality**\\n\\nNew Word Order warrants and represents that, to the best of its knowledge, the work assigned hereunder is original and has not been previously published, or that consent to use has been obtained on an unlimited basis; that all work or portions thereof obtained through the undersigned from third parties is original or, if previously published, that consent to use has been obtained on an unlimited basis; that New Word Order has full authority to make this agreement; and that the work prepared by New Word Order does not contain any scandalous, libellous, or unlawful matter. This warranty does not extend to any uses that the client or others may make of New Word Order’s product which may infringe on the rights of others. The client expressly agrees that it will hold New Word Order harmless for all liability caused by the client’s use of New Word Order’s product to extent such use infringes on the rights of others.\\n\\n##### **Limitation of liability**\\n\\nThe client agrees that it shall not hold New Word Order or its agents or employees liable for any incidental or consequential damages which arise from New Word Order failure to perform any aspect of the project in a timely manner, regardless of whether such failure was caused by intentional or negligent acts or omissions of New Word Order or a third party. Furthermore, New Word Order disclaims all implied warranties.\\n\\n##### **Platform and browser compatibility**\\n\\nThe client is responsible to confirm the works produced by New Word Order are to brief and fit for purpose and function on required browsers. As at the time of execution of this estimate New Word Order will test on the following browsers and platforms. New Word Order is not responsible for work to update websites when new browsers are released or does not work on browsers not included in the list provided in the estimate. If Internet Explorer 6, mobile browsers or any browsers not stated in the estimate are required then additional charges will apply unless otherwise stated.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44818,48358,1,'Coloured blocks design','2021-09-27 06:12:38','2022-06-27 01:40:42','ebf06499-5047-4ef2-9329-4bdf1c8c0b12',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Blog-Behaviour-change.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Blog-Behaviour-change.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Blog-Behaviour-change.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Blog-Behaviour-change.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Blog-Behaviour-change.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Blog-Behaviour-change.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Blog-Behaviour-change.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Blog-Behaviour-change.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Blog-Behaviour-change.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Blog-Behaviour-change.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Blog-Behaviour-change.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Blog-Behaviour-change.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Blog-Behaviour-change.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Blog-Behaviour-change.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Blog-Behaviour-change.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Blog-Behaviour-change.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABAb/xAAhEAABAwEJAAAAAAAAAAAAAAABAAIDBQQTFiEzQVNxkv/EABYBAQEBAAAAAAAAAAAAAAAAAAQCA//EAB0RAAMAAQUBAAAAAAAAAAAAAAABAiEDBBETFFH/2gAMAwEAAhEDEQA/AKjEtN5JPBWfbIzw63wBPV5HTF7JH3Rdk0nZDurpvOBs7WVPDWSYVDxto0Y+wpRKP//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ec533f\",\"#fbd785\",\"#fc8d5e\",\"#fcac94\",\"#fc7c6c\"],\"lightness\":68,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44822,48362,1,'Illustration reading: time for a change? with yes/no buttons','2021-09-27 06:39:41','2022-06-27 01:40:48','03a06127-0a00-4b9c-8507-910b34363f4a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/21_Blog-Behaviour-change_2021-09-27-063940_ccrm.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x3072_crop_center-center_82_line/21_Blog-Behaviour-change_2021-09-27-063940_ccrm.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/21_Blog-Behaviour-change_2021-09-27-063940_ccrm.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2560_crop_center-center_82_line/21_Blog-Behaviour-change_2021-09-27-063940_ccrm.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/21_Blog-Behaviour-change_2021-09-27-063940_ccrm.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2048_crop_center-center_82_line/21_Blog-Behaviour-change_2021-09-27-063940_ccrm.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/21_Blog-Behaviour-change_2021-09-27-063940_ccrm.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/21_Blog-Behaviour-change_2021-09-27-063940_ccrm.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/21_Blog-Behaviour-change_2021-09-27-063940_ccrm.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x3072_crop_center-center_82_line/21_Blog-Behaviour-change_2021-09-27-063940_ccrm.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/21_Blog-Behaviour-change_2021-09-27-063940_ccrm.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2560_crop_center-center_82_line/21_Blog-Behaviour-change_2021-09-27-063940_ccrm.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/21_Blog-Behaviour-change_2021-09-27-063940_ccrm.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2048_crop_center-center_82_line/21_Blog-Behaviour-change_2021-09-27-063940_ccrm.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/21_Blog-Behaviour-change_2021-09-27-063940_ccrm.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/21_Blog-Behaviour-change_2021-09-27-063940_ccrm.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"3072\":3072,\"1280\":1280,\"2560\":2560,\"1024\":1024,\"2048\":2048,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6250\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAQAD/8QAHBAAAgMAAwEAAAAAAAAAAAAAAQIAERIhMWGB/8QAFwEBAAMAAAAAAAAAAAAAAAAAAAEFBv/EABYRAQEBAAAAAAAAAAAAAAAAAAABEf/aAAwDAQACEQMRAD8A3Zsi5XNJbgVtdQS6nXQqx9FySzQiFeSbPgqNJMf/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#fa6353\",\"#512115\",\"#973b2f\",\"#c43c44\",\"#bc442c\"],\"lightness\":44,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44826,48366,1,'Illustration of RM boots and Vegemite','2021-09-27 06:52:42','2022-06-27 02:56:30','2167c0f4-95b7-4d02-b493-34568e9c3dd6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/21_Blog-Brand-loyalty.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x3072_crop_center-center_82_line/21_Blog-Brand-loyalty.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/21_Blog-Brand-loyalty.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2560_crop_center-center_82_line/21_Blog-Brand-loyalty.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/21_Blog-Brand-loyalty.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2048_crop_center-center_82_line/21_Blog-Brand-loyalty.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/21_Blog-Brand-loyalty.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/21_Blog-Brand-loyalty.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/21_Blog-Brand-loyalty.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x3072_crop_center-center_82_line/21_Blog-Brand-loyalty.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/21_Blog-Brand-loyalty.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2560_crop_center-center_82_line/21_Blog-Brand-loyalty.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/21_Blog-Brand-loyalty.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2048_crop_center-center_82_line/21_Blog-Brand-loyalty.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/21_Blog-Brand-loyalty.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/21_Blog-Brand-loyalty.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"3072\":3072,\"1280\":1280,\"2560\":2560,\"1024\":1024,\"2048\":2048,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6250\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAQMG/8QAGxABAAMAAwEAAAAAAAAAAAAAAQACEQMhQWH/xAAXAQEBAQEAAAAAAAAAAAAAAAAAAQQF/8QAFhEBAQEAAAAAAAAAAAAAAAAAABEB/9oADAMBAAIRAxEAPwDVqBrOK2Ctixo7ALb2Jp8lRI47nMWOq+my3IP/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#f9d373\",\"#6b572b\",\"#a58d4c\",\"#957b30\",\"#8c6c3d\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44827,48367,1,'These are a few of our favourite brands','2021-09-27 06:53:04','2021-09-27 06:53:04','6ded45e7-3ceb-43c6-bf4d-b85cf567b2ed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4Kng0ZJkmt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"I asked the team at New Word Order to think of a brand to which they are unwaveringly loyal.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Here\'s what they said.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fCc8knIn7z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Andrew\",\"plainText\":\"[**ASICS**](https://www.asics.com/au/en-au/). Since Mum and Dad spoiled me when I was 12, these are the only sports shoes I buy. They last forever and are Australian. Luckily they make specialised hockey shoes as well!\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BP6fkJyA6u\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kimi\",\"plainText\":\"[**Jatz**](https://www.arnotts.com/products/crackers)! The most versatile cracker that suits all and any occasion! You got a dip? Jatz. A soup? Dip a Jatz in. A fancy, artisanal soft cheese? Crack the Jatz out. A simple cheddar cheese? Jatz it. Feeling really hungover and can\'t keep anything down but need to eat something so you can muster the strength to order a burrito on Uber Eats? Jatz it, baby.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Yr3xX8UNUq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Tim\",\"plainText\":\"Super obvious one but [**Apple**](https://www.apple.com/au/). Everything from their product design and UI right through to their bricks and mortar storefront is meant to make you ‘think differently’ as per their brand promise, but at the same time give you a sense of familiarity. I’ve dabbled with more phones and laptops than I care to mention but will always come back to Apple. That said, iTunes sucks!\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WePs4cQeU3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Lynn\",\"plainText\":\"I can be impulsive by nature but the one thing I am never impulsive about is my [**Impulse**](https://www.unilever.com.au/brands/beauty-personal-care/impulse/) Merely Musk deodorant. I have used this deodorant since I can remember because it smells good and stops me smelling bad! I never worry about BO when I have my Impulse on!\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kFDk9QaMtq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Jo\",\"plainText\":\"[**RM Williams**](https://www.rmwilliams.com.au/). I got my first pair of boots on arrival to \'Straya as I’d heard great things and love a good Chelsea boot. After 17 years, I am only on my third pair, which shows you the quality and craftsmanship that goes into the RM brand.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qjkDIEMMe3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kat\",\"plainText\":\"[**The Iconic**](https://www.theiconic.com.au/). Their customer service/shipping options/returns policy is so user friendly and far outshines any competitors. They make the process of purchasing and returning so easy that I’m happy to throw my money at them. I’m sure they would lose money on the shipping/returns too, but make it back with the volume of sales from happy customers like myself.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-nXicTrGS5B\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bruce\",\"plainText\":\"[**The Dirt Company**](https://thedirtcompany.com.au/)\'s laundry detergent. I like the idea that not everything we buy has to \'cost the earth\' and Dirt have not only made a more eco-friendly washing detergent, but you can send their packaging back to them and they will reuse it. Their highly concentrated detergent won\'t harm the environment and the reusable packaging means a whole lot of plastic is not going into landfill or waterways. Another company that shows you can have a successful business while still protecting the planet.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ieCD98S7up\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bec\",\"plainText\":\"I found this tricky as I am a bit of a brand tart, and I have been disappointed by a few brands in the past who have not lived up to my expectation (“Nooo we vehemently don’t and will never test on animals…but we will sell out to the big company who does”) BUT a brand I have stayed loyal to is [**Vegemite**](https://vegemite.com.au/).\\n\\n– I loved it as a kid—I suspect the 50s jingle had more to do with that than the taste. Mum and dad regretted introducing us to that song with our robust young lungs joyfully belting it out over and over again on long car trips.\\n– I loved it as a young adult—that black tar smeared on toast. It was post-party comfort food and it was a cheap meal (with Vitamin B!). It made you feel better, like you could go on.\\n– I loved it as a slightly older adult when living abroad—Vegemite toast was like a hug from home. How happy was I when I realised you could get it everywhere and it still tasted the same, unlike Cadbury chocolate. There\'s that brand disappointment!\\n\\nI don’t know that Vegemite is the healthiest food group or even a brand with the most integrity, but I have an emotional connection to that bold brand of yellow, red and white with its tarry contents. It tastes so good on toast and even gives a stir fry an interesting edge. It’s stayed pretty consistent in a world that has changed so much, and as an Australian living abroad it’s part of your heritage and your identity. What’s even better, the brand has come back home to Australia.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dSCs5J35lI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kerry\",\"plainText\":\"I\'m loyal to the US hair care brand [**DevaCurl**](https://www.devacurl.com/us). It has been the only brand to date that has been able to calm my crazy hair and embrace my God-given curls. Of recent times, DevaCurl have been dragged through the courts as many people have claimed it makes their hair fall out. But I have kept on buying it from the US after 5 years of use and I still have enough hair to go around, so somehow I don\'t think it is a problem for me.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aPLfD479sh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Liam\",\"plainText\":\"I tend to enjoy a little cheating on my normal choices. But one brand I’ve stuck with since my teens is [**Ray-Ban**](https://www.ray-ban.com/australia) sunglasses. I like that their styles never stray too much from the original designs and they don’t follow trends. I’ve been gifted \'luxury fashion\' brand sunglasses before and they are more about getting their fancy name or logo on the product than anything else—the quality is dubious and the style trends come and go. Ray-Ban don’t try to be overly fashionable, they work well and look good. Proud middle-aged man moment for me was after I had bought a new pair of Ray-Bans overseas and in my first week back in Brisbane the cool hipster barista at the coffee shop said to me “Love your sunnies… they’re on point”.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qhin1NvFDx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Ryan\",\"plainText\":\"[**Patagonia**](https://www.patagonia.com.au/). It lasts for ages and they actually fix stuff. I had a pair of hiking pants that got hammered in Nepal and they fixed them for me. They also give 1% of sales back to conservation efforts. Their stuff also just seems to fit me really well.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UgAjx4JylF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Suzanne\",\"plainText\":\"[**Kawai**](https://kawai.com.au/) pianos is mine. I’ve played for 45 years and, no matter where I find a Kawai, the touch and the sound is consistent. The Kawai is smooth and sonorous. Love that it’s been so consistent for so long.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8UXqqjffzF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Scott\",\"plainText\":\"Tim took mine—Apple has been the most consistent brand in my life since we started NWO (and before, too) and crossed over seamlessly into my personal life as well. Their stuff works, lasts, is simple to use and is beautiful to look at, use and hold. But if I have to pick a different one I’d pick [**Nudie Jeans**](https://www.nudiejeans.com/). Like Patagonia they repair for free, they give you money for your old pair and resell it to save waste. And, their jeans just always fit me in a way no other ones ever have.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-v0xY9fvU6u\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kate\",\"plainText\":\"[**IKEA**](https://www.ikea.com/au/en/) is a Swedish wonderland. For me there’s nothing better than a free Saturday afternoon, barrelling down the M1 towards the glorious blue and yellow castle. From beginning to end the experience is flawlessly designed—from the carpark, to the food, to the warehouse, to the satisfaction of sitting on the couch you spent the past hour bolting together. Every aspect of the IKEA brand is designed to hug your mind, body and soul. No brand can wrap you in a cozy $5 throw like IKEA can.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uRfO2vtwj8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Margaret\",\"plainText\":\"[**Haagen Dazs**](https://www.haagen-dazs.com.au/) ice cream. No flavour ever disappoints and that cream base… I had my first HD on Singapore Airlines when I was 17 and I ate four in row. (Tip: ask four different air hostesses.)\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kesJqAugGq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bree\",\"plainText\":\"I regularly drive out of my way to stop at [**7-Eleven**](https://www.7eleven.com.au/) for fuel. I wouldn\'t even consider going anywhere else, and the reason why is so simple: the My 7-Eleven app. The lock-in price feature is a game changer and I get a thrill every time I see the price on the EFTPOS machine and how much lower it is than the price on the pump outside. It almost makes me enjoy buying fuel.\\n\\nThe Krispy Kremes don\'t hurt either.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-K1FhEue9Fp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"As you can tell from the kinds of brands they chose, your brand doesn\'t have to be flashy or sexy. It just has to be true to itself and deliver on its promises, consistently and with a bit of personality.\\n\\n\\n*Disclaimer: New Word Order is not sponsored by or partnered with any of the mentioned brands.*\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44836,48376,1,'8 important marketing questions for every business','2021-09-27 22:51:43','2021-09-27 22:51:43','f68a6cd0-e440-454c-a8f3-f5b18b841605',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VzKHBkk2Ca\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Marketing communications in business is all about attracting and retaining customers. We do it for dozens of Australian companies every day, and the bigger the company, the tighter the marketing strategy governing their communications—because they know customers are fickle, and competitors are waiting to pounce on any weakness.\\n\\nThe same philosophy of tight strategy and execution should drive your business. Effective marketing communications must be an essential part of your core business strategy to ensure you’re pushing the same, consistent message through every aspect of your organisation.\\n\\nBut it’s not always so easy to go it alone. If you’re in a small business and know you need to step up, here’s a handy checklist of the marketing questions you need to answer to keep your customers in tune with you—and your competitors at bay.\\n\\n##### **Who are my existing customers?**\\n\\nThe best way to sell to your customers is to first understand who they are, why they buy from you, and what value they expect from you. And the best way to learn this? Listen to them. Marketing communication begins with good customer relationships, which are almost like your own form of market research.\\n\\nWhen you talk to your customers, you’ll learn things like your customers’ age, income, education, how often they buy from you, what their buying triggers are and how they’re influenced. This is a valuable step in honing your marketing message, so don’t be tempted to think you already know the information if you’ve been in business for a while. Every customer conversation will add another layer to your understanding.\\n\\n##### **Who are my potential customers?**\\n\\nIt’s just as critical to have a very clear understanding of your desired target market and new customers. Get as detailed as you possibly can. The more specific you are, the better you can develop messages for them.\\n\\n##### **Who are my competitors?**\\n\\nUnderstanding who competes for your customers—and what they’re offering—is vital. Get very familiar with every aspect of your competitors’ businesses—including their reputation, prices and marketing material. This knowledge will help you position your marketing communication relative to how your customers are already being targeted and differentiate yourself in the market.\\n\\n##### **What am I trying to achieve?**\\n\\nUnderstanding why you’re communicating with your customers is essential. Are you purely after quick wins? Or preparing the ground for a new product or stronger relationships? The rationale and potential value for any marketing effort should determine how much money you need to spend, and where it’s best spent.\\n\\n##### **What am I trying to say?**\\n\\nThis is where everything comes together. You must now develop clear, key messages that talk up your product or service, meet the expectations and needs of your new and existing customers, and differentiate yourself from your competition.\\n\\nMake sure you have no more than five key messages—in fact, the fewer the better—and make them specific and meaningful. That’s how you stand out in the crowded market. Ensure your customers are aware of your business and its products or services, and why they should care (e.g. What’s in it for them? And what are the true benefits?). These benefits should be factual and real. It’s important not to overload customers with information, but rather to be clear and articulate.\\n\\nAll of your marketing communications should include a strong call to action: What is it that you want customers to do once they’ve interacted with you? Leave them in no doubt and make it easy for them.\\n\\n##### **What’s the right channel?**\\n\\nThere’s no doubt that it’s a busy marketplace when it comes to finding the perfect place to share your marketing messages. The challenge here is in focusing and narrowing your communication—and finding the right time and place to connect with your customers.\\n\\nMany marketers are now jumping on social media networks, but that might not be where your customers can be found. It’s important that you understand how and when they want to hear from you, and use that information to foster a true customer relationship.\\n\\n##### **Is my strategy integrated?**\\n\\nCommunicating in an integrated way across all channels (such as website, emails and brochures) means your brand will become better known and understood. Integration means that every time your customers hear from you, they get the same feel for who you are. By creating consistent, strong marketing communications, your customers will identify and remember you into the future.\\n\\n##### **Finally: Am I communicating with genuine creativity?**\\n\\nCreativity isn’t about paying your local print shop to pull together a flyer with your logo on it, or using a WordPress template to build your long-overdue website. They might be tactics that you use, but they’re not what creativity is really about.\\n\\nTrue creative thinking pulls together everything you know about your business, your goals and your customers into a single, cohesive package that cuts through, connects and resonates. Creativity distills everything down to the right words, images and design so that your marketing collateral has the right impact. No business can afford to skimp on this stage because getting creativity right means you’ll get the results you’re really after: maximum return on your marketing investment.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44838,48378,1,'The 6 steps of content creation','2021-09-27 22:53:36','2021-09-27 22:53:36','1d17aa26-7277-436b-a007-aae15a022045',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-92RCseTSp0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"You know what your business is about. You’ve nailed down your story. You’ve worked out who you want to talk to.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Now you need to add some real value.\\n\\nTime-poor organisations need their content to work across different channels online—including websites, e-newsletters, blogs and across social media. One way to add value to your existing, more sales-focused content is through content curation. Content curation means finding useful content online, curating it for your audience and re-telling it in your voice and with your advice.\\n\\n##### **Here’s how to optimise, write and curate content for your target audience.**\\n\\n###### **Defining your goals**\\n\\nEvery good plan starts with defining what it’s trying to achieve. How do you want your content to define your business? What are you offering your target market? Do you want to be a thought leader in your particular area?\\n\\nContent curation is about meeting your customers where they are and offering them something they’re not getting elsewhere. It’s about finding, gathering and sharing information of value with them; positioning your business and brand as an authority both with original content—your sales offering and business learnings—and information you’ve found and shared online. Participating in conversations that are happening about your field leads to more engagement with your target market, the ultimate goal being to give your brand a voice of value that will see your audience come back again and again for your offering.\\n\\n###### **Getting started**\\n\\nIt’s important to remember that well-executed content curation isn’t about regurgitating content that was already published. Instead, it’s your business’ personal re-telling of a story. As Susan Gunelius wrote for Forbes, the human element of content curation is what makes curated content compelling.\\n\\nTherefore, when offering your audience valuable content, remember to tell your story. What are you saying that’s different? What do you know that others might not? Involve your whole team—not just marketing and sales—and that story will evolve to give your business a truly useful and unique voice.\\n\\n###### **Finding content**\\n\\nHere’s where you get amongst it!\\n\\nWant to know where your target market is looking for information online? Go exploring! Ask them! Discover for yourself where the good stories are being shared. Find out what topics matter to your goals and audience, and go after them.\\n\\nIntegrating content curation into your broader marketing strategy is the way to go here—it legitimises the exercise and gets your team thinking about the value of your brand and how they can add to it. The best place to start is probably your social media accounts. Valuable content is being shared every day on platforms like Facebook, Twitter and LinkedIn. There are also Google alerts and news aggregate sites that can be set up with your special business needs in mind.\\n\\n###### **Be authentic to find your voice**\\n\\nThere is nothing like the instant world of social media to add value and timeliness to your content. Social media has changed the term ‘sharing’ forever, and the opportunities for your brand are endless. It’s important to add your own value to social content—as Mark Lerner says, if you just \'retweet\', or share an article without including your own voice in the post, you’ll fail to distinguish yourself from everyone else who shared that content.\\n\\nHow do you find your voice? Authentically, of course! Offer your opinion and add your advice in areas where you are confident. Try to be friendly and informative, and adopt an approachable tone. Not so confident? Ask questions! Get your community talking and they’ll come back to you.\\n\\n###### **Context and thought leadership**\\n\\nGood content curation provides your audience with context and convenience—that means filtering and explaining what you find online, and rewording it in your voice so it’s useful to them. You don’t always need to be selling, but you do always need to be mindful of your brand and of offering real value. Knowing who your market is and writing in your ‘voice’ allows you to, as J-P De Clerck says, inform, educate, entertain and engage target audiences.\\n\\n###### **Where to share**\\n\\nThere are many ways to share curated content, but the best way is in a mix of your existing ‘sales’ content. E-newletters and blogs offer an opportunity to share curated and original content, and social media is the most instant way to add your voice to a new idea, and also probably the first place your audience will find you. They’ll also find your website, so don’t forget about the curated content opportunities there. Always remember that you should be providing useful information, not just repeating content or working on the hard sell.\\n\\nContent curation is convenient, but it’s also an important opportunity to add value, develop a business voice and grow an online community. What do you think about content curation? Has it worked for you? Got any tips? Let us know.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44839,48379,1,'Simplifying the complex: Fifteen years of marketing schools','2021-09-27 22:53:58','2021-09-27 22:53:58','7d768fc9-b204-48a5-a77f-8766052a58d8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WAYo0QEnCs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"After 20 years of marketing—including 15 years working with schools across Queensland and New South Wales—I am steadfast in my belief that there is no marketing challenge as complex as that faced by schools.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"In what other industry would you find thousands of individual stakeholders—students, parents, teachers, alumni and more—all with do-or-die expectations?\\n\\nOr an environment that can, quite honestly, change the trajectory of children’s lives?\\n\\nThen you have the two very distinct markets—internal and external—often with very different needs that need to be met with minimal budgets.\\n\\nThe experience of school changed little for nearly a century but, in the past 20 years, it has evolved in such leaps and bounds that today’s parents struggle to recognise it.\\n\\nPhilosophically, there are few industries I can think of that have such a strong evidence base to guide practice—here I’m thinking of teaching and learning—yet the required outcome is often diametrically opposed to it. \\n\\nIt’s little wonder that I find the business of marketing schools endlessly fascinating.\\n\\nOnly this morning I was in another principal’s office, talking through these very complexities. In our conversation, we touched on what I’ve discovered over the years are three bedrock principles every school needs as their marketing foundation. They’re my way of transforming a little of the complex into the simple.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Esbo1iQq5g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"1. Work out what makes you unique\",\"plainText\":\"Marketing and enrolments teams live and die by their numbers. \\n\\nIt is endlessly tempting, then, to try to go wide in your appeal so that you create the biggest possible net. \\n\\nIn practice, though, it means no-one knows what you stand for. \\n\\nThe better alternative is to embrace what makes you unique and then market that hard. You’ll end up attracting families that are the right fit for you and work hard as your ambassadors. \\n\\nInternally, there’ll be great cohesion, too, because you’ll attract and retain great educators who get what you’re about and support it in their words and actions.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-v1FFRTuEFs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"2. Don’t be afraid to look like you’re unique\",\"plainText\":\"If you’re bored one day in your office, try this game. \\n\\nGet ads from three schools, and then block out their hats and uniforms. Can you still tell them apart? \\n\\nIt astounds me that we continue to use sterile, look-alike images—hey, here’s a girl in a lab coat with a test tube as proof that we promote girls in STEM!—that don’t reflect the day-to-day experience of what it is to learn at your school. \\n\\nCelebrate your uniqueness—and set yourself apart from your competitors—by choosing unique visual styles and photography.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cMg5IvARdG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"3. Now stay unique\",\"plainText\":\"Over time, teachers and leaders of schools get to know each other pretty well. \\n\\nPrincipals, in particular, know other schools like bookies know racehorses. The net result in marketing is that your great idea quickly becomes next year’s norm… and after a few years, what was edgy is simply outdated. \\n\\nWise schools invest in a middle ground here. \\n\\nThey start off strong and then review and refresh their brand every year or two. \\n\\nThat way, subtle tweaks don’t destabilise your internal audience but you stay fresh and relevant externally.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3XrIiJiL9w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Want to know more?\",\"plainText\":\"Suzanne advises schools on sustainable marketing strategy that helps them get the most from their internal resources. To chat, phone 07 3334 8340 or email suzanne@newwordorder.com.au.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44840,48380,1,'Simplifying the complex: Fifteen years of marketing schools','2021-09-27 22:54:36','2021-09-27 22:54:36','4f12b53d-b605-46b2-a2ca-89d9b2f6a62a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WAYo0QEnCs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"After 20 years of marketing—including 15 years working with schools across Queensland and New South Wales—I am steadfast in my belief that there is no marketing challenge as complex as that faced by schools.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"In what other industry would you find thousands of individual stakeholders—students, parents, teachers, alumni and more—all with do-or-die expectations?\\n\\nOr an environment that can, quite honestly, change the trajectory of children’s lives?\\n\\nThen you have the two very distinct markets—internal and external—often with very different needs that need to be met with minimal budgets.\\n\\nThe experience of school changed little for nearly a century but, in the past 20 years, it has evolved in such leaps and bounds that today’s parents struggle to recognise it.\\n\\nPhilosophically, there are few industries I can think of that have such a strong evidence base to guide practice—here I’m thinking of teaching and learning—yet the required outcome is often diametrically opposed to it. \\n\\nIt’s little wonder that I find the business of marketing schools endlessly fascinating.\\n\\nOnly this morning I was in another principal’s office, talking through these very complexities. In our conversation, we touched on what I’ve discovered over the years are three bedrock principles every school needs as their marketing foundation. They’re my way of transforming a little of the complex into the simple.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Esbo1iQq5g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"1. Work out what makes you unique\",\"plainText\":\"Marketing and enrolments teams live and die by their numbers. \\n\\nIt is endlessly tempting, then, to try to go wide in your appeal so that you create the biggest possible net. \\n\\nIn practice, though, it means no-one knows what you stand for. \\n\\nThe better alternative is to embrace what makes you unique and then market that hard. You’ll end up attracting families that are the right fit for you and work hard as your ambassadors. \\n\\nInternally, there’ll be great cohesion, too, because you’ll attract and retain great educators who get what you’re about and support it in their words and actions.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-v1FFRTuEFs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"2. Don’t be afraid to look like you’re unique\",\"plainText\":\"If you’re bored one day in your office, try this game. \\n\\nGet ads from three schools, and then block out their hats and uniforms. Can you still tell them apart? \\n\\nIt astounds me that we continue to use sterile, look-alike images—hey, here’s a girl in a lab coat with a test tube as proof that we promote girls in STEM!—that don’t reflect the day-to-day experience of what it is to learn at your school. \\n\\nCelebrate your uniqueness—and set yourself apart from your competitors—by choosing unique visual styles and photography.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cMg5IvARdG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"3. Now stay unique\",\"plainText\":\"Over time, teachers and leaders of schools get to know each other pretty well. \\n\\nPrincipals, in particular, know other schools like bookies know racehorses. The net result in marketing is that your great idea quickly becomes next year’s norm… and after a few years, what was edgy is simply outdated. \\n\\nWise schools invest in a middle ground here. \\n\\nThey start off strong and then review and refresh their brand every year or two. \\n\\nThat way, subtle tweaks don’t destabilise your internal audience but you stay fresh and relevant externally.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3XrIiJiL9w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Want to know more?\",\"plainText\":\"Suzanne advises schools on sustainable marketing strategy that helps them get the most from their internal resources. To chat, phone 07 3334 8340 or email suzanne@newwordorder.com.au.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44842,48382,1,'B2B is dead','2021-09-27 22:55:06','2021-09-27 22:55:06','55b04ae0-a080-47ef-a073-253bef81e143',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-luIsqIjBj1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"As deaths go, it was a quiet one. Few people knew of its demise.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But there it lay still: the artificial divide between B2B and B2C marketing, gone forever.\\n\\nWhy bother lamenting the dead? Dare I say, it’s good riddance to a dodgy invention.\\n\\nThe idea that marketing business-to-business took entirely different skills and strategies to talking to consumers has its roots back in the early Noughties. The notion, which most marketers sadly still hold, was that because the volume of B2B transactions is so much higher than B2C—if you count every transaction required along a manufacturing supply chain, for example—then B2B branding requirements were stronger, too.\\n\\nConversely, the B2C belief held that the consumers of the world needed entirely different marketing strategies to convince them to open their wallets.\\n\\nTrue, where they differ most is in the justification of purchases. In B2C land, I need to convince myself why I should buy yet another pair of red shoes. (It’s a short discussion.) In B2B, I might be lobbying the board to invest in an expensive new CRM system.\\n\\nBut the truth is both groups share more similarities than differences.\\n\\nYour customers—be they businesses, consumers or both—have similar emotional and logical requirements that must be met. The relationship lifecycle between a purchaser and a brand exists with businesses and consumers alike. Both groups also frequent the same social media spheres, are Google-happy and web-savvy, and require strong brand confidence in order to purchase.\\n\\nThe illusion that you’re selling to a company in B2B should be seen for what it is. In retail or in business marketing, you’re selling to individuals. And each wants to feel that you get them.\\n\\n##### **Long live H2H.**\\n\\nWhich is where yet another acronym is starting to make a play: H2H, or human-to-human marketing.\\n\\nIt espouses the belief that we all, business and retail customers alike, are looking for connection, inclusion and to be understood. If you take that as your starting point—and not your burning need to produce another brochure—then the marketing toolbox available to your business automatically grows.\\n\\nIt means the vast strategies already out there, like relationship marketing and continuous touchpoints, become as relevant to a retail customer as to the business that buys your widgets. And the traditional B2C tools like social media become far more relevant B2B because they help build connections better than a sterile product flyer.\\n\\n##### **Let’s make H2H practical.**\\n\\n**1. Open your horizons**\\n\\nSwitching your mindset to focusing on the individual, human needs of your market means you can open your marketing to all sorts of potential tools. Just because you run a hair salon doesn’t mean you can’t start sending out a monthly email newsletter—if your customers are the kind of people that like to know more about you. And just because you’re an accountant doesn’t mean you can’t lead an industry group on LinkedIn or advertise on Facebook—if that’s where you’ll find the types of sales you want. Think about your customers, and let their needs lead you.\\n\\n**2. Make your customers feel**\\n\\nSales overwhelmingly come from relationships in my business, so meeting my clients’ emotional needs is a no-brainer. If my clients are happy, they’ll stay.\\n\\nBut even if your sales rely heavily on good old-fashioned foot traffic, it’s relationships that will lure them and keep them. So, in every tool you use to get to market, make sure you get the emotional kicker in. Empathise and prove you understand their needs.\\n\\n**3. Ask your employees what they think**\\n\\nIt’s one thing to make marketing decisions from an ivory tower. Chances are it’s your staff who really know how your clients think, or how your customers behave. So get their ideas and integrate it into your marketing. Let them drive your innovation.\\n\\n**4. Finally, listen to your customers**\\n\\nThere is marketing gold in every intentional conversation you have with a customer. Ask the ‘why’ that follows the tough questions: Do you feel safe with my business? Do you like dealing with us? Would you refer us to your friends? The answers will revolutionise how you think about marketing to your customers.\\n\\n---\\n\\n*Written for the February 2014 issue of Inform, the monthly magazine of the Chamber of Commerce and Industry in Queensland.*\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44844,48384,1,'8 important marketing questions for every business','2021-09-27 22:55:36','2021-09-27 22:55:36','93d61711-204a-4fa8-b62e-e22305b544bc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VzKHBkk2Ca\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Marketing communications in business is all about attracting and retaining customers. We do it for dozens of Australian companies every day, and the bigger the company, the tighter the marketing strategy governing their communications—because they know customers are fickle, and competitors are waiting to pounce on any weakness.\\n\\nThe same philosophy of tight strategy and execution should drive your business. Effective marketing communications must be an essential part of your core business strategy to ensure you’re pushing the same, consistent message through every aspect of your organisation.\\n\\nBut it’s not always so easy to go it alone. If you’re in a small business and know you need to step up, here’s a handy checklist of the marketing questions you need to answer to keep your customers in tune with you—and your competitors at bay.\\n\\n##### **Who are my existing customers?**\\n\\nThe best way to sell to your customers is to first understand who they are, why they buy from you, and what value they expect from you. And the best way to learn this? Listen to them. Marketing communication begins with good customer relationships, which are almost like your own form of market research.\\n\\nWhen you talk to your customers, you’ll learn things like your customers’ age, income, education, how often they buy from you, what their buying triggers are and how they’re influenced. This is a valuable step in honing your marketing message, so don’t be tempted to think you already know the information if you’ve been in business for a while. Every customer conversation will add another layer to your understanding.\\n\\n##### **Who are my potential customers?**\\n\\nIt’s just as critical to have a very clear understanding of your desired target market and new customers. Get as detailed as you possibly can. The more specific you are, the better you can develop messages for them.\\n\\n##### **Who are my competitors?**\\n\\nUnderstanding who competes for your customers—and what they’re offering—is vital. Get very familiar with every aspect of your competitors’ businesses—including their reputation, prices and marketing material. This knowledge will help you position your marketing communication relative to how your customers are already being targeted and differentiate yourself in the market.\\n\\n##### **What am I trying to achieve?**\\n\\nUnderstanding why you’re communicating with your customers is essential. Are you purely after quick wins? Or preparing the ground for a new product or stronger relationships? The rationale and potential value for any marketing effort should determine how much money you need to spend, and where it’s best spent.\\n\\n##### **What am I trying to say?**\\n\\nThis is where everything comes together. You must now develop clear, key messages that talk up your product or service, meet the expectations and needs of your new and existing customers, and differentiate yourself from your competition.\\n\\nMake sure you have no more than five key messages—in fact, the fewer the better—and make them specific and meaningful. That’s how you stand out in the crowded market. Ensure your customers are aware of your business and its products or services, and why they should care (e.g. What’s in it for them? And what are the true benefits?). These benefits should be factual and real. It’s important not to overload customers with information, but rather to be clear and articulate.\\n\\nAll of your marketing communications should include a strong call to action: What is it that you want customers to do once they’ve interacted with you? Leave them in no doubt and make it easy for them.\\n\\n##### **What’s the right channel?**\\n\\nThere’s no doubt that it’s a busy marketplace when it comes to finding the perfect place to share your marketing messages. The challenge here is in focusing and narrowing your communication—and finding the right time and place to connect with your customers.\\n\\nMany marketers are now jumping on social media networks, but that might not be where your customers can be found. It’s important that you understand how and when they want to hear from you, and use that information to foster a true customer relationship.\\n\\n##### **Is my strategy integrated?**\\n\\nCommunicating in an integrated way across all channels (such as website, emails and brochures) means your brand will become better known and understood. Integration means that every time your customers hear from you, they get the same feel for who you are. By creating consistent, strong marketing communications, your customers will identify and remember you into the future.\\n\\n##### **Finally: Am I communicating with genuine creativity?**\\n\\nCreativity isn’t about paying your local print shop to pull together a flyer with your logo on it, or using a WordPress template to build your long-overdue website. They might be tactics that you use, but they’re not what creativity is really about.\\n\\nTrue creative thinking pulls together everything you know about your business, your goals and your customers into a single, cohesive package that cuts through, connects and resonates. Creativity distills everything down to the right words, images and design so that your marketing collateral has the right impact. No business can afford to skimp on this stage because getting creativity right means you’ll get the results you’re really after: maximum return on your marketing investment.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44846,48386,1,'What the artist breaks','2021-09-27 22:57:34','2021-09-27 22:57:34','b06ab79b-d166-44fa-9a88-32fda34110d2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QjbPRQcxAH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"It’s arguable that copywriting is at the heart of all advertising and marketing today. We remember taglines and recall jingles; and copy is the beginning of most brand stories. But, boy, is it fantastic to look back at a time when it really was all about the words.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Bill Bernbach was the founding creative director of legendary Manhattan ad agency Doyle Dane Bernbach (DDB). He came out with quotes like:\\n\\n“Advertising is fundamentally persuasion and persuasion happens to be not a science, but an art”, and\\n\\n“Word of mouth is the best medium of all”, and\\n\\n“Rules are what the artist breaks; the memorable never emerged from a formula.”\\n\\nThat’s really provocative stuff that makes you nod your head at the truth and simple power of his thinking—and imagine how inspiring but uncompromising a boss he would have been. What an exhilarating time to be writing.\\n\\nBernbach not only had a way with a turn of phrase, but he also really set up the structure of creative teams for marketing and advertising, and was, of course, part of the inspiration for Mad Men. But mostly, he was a writer. And what a writer he was. His firm revolutionised advertising copy and laid out the early foundations for brand storytelling through engaging narrative and brand persona development. We can, and have, all learned from these guys.\\n\\nIn the 1960s, DDB took on Volkswagen as a client and began creating a series of print ads that referred to the VW as a “lemon” and encouraged consumers to “think small”. The copy, by the incomparable Julian Koenig, starts out saying “This Volkswagen missed the boat. The chrome strip on the glove compartment is blemished, and must be replaced.” Not exactly sales speak.\\n\\n##### **It was funny. It was clever. And it was ground-breaking.**\\n\\nFor the rest of the decade, VW kept their unconventional campaign rolling. DDB’s strategy of turning seeming faults into benefits was a huge hit. One ad didn\'t even include a picture of the little lemon: “No point in showing you the 1962 Volkswagen. It still looks the same.”\\n\\nMuch has been written about the ads, and you can take a look at a bunch of them here if you like. It was ranked the best advertising campaign of the twentieth century by Ad Age, and it deserves the title. This sort of brand bravery is rare and may be a little of its time, too. The truth is that the power is all right there, in the copy, which exists to inspire us. Last words to Mr Bernbach himself:\\n\\nYou can say the right thing about a product and nobody will listen. You\'ve got to say it in such a way that people will feel it in their gut. Because if they don\'t feel it, nothing will happen.\\n\\nWhat is your brand really saying?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44848,48388,1,'These are a few of our favourite brands','2021-09-27 22:57:51','2021-09-27 22:57:51','fd3156af-f687-495a-87ab-1f76cabe2ff6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4Kng0ZJkmt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"I asked the team at New Word Order to think of a brand to which they are unwaveringly loyal.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Here\'s what they said.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fCc8knIn7z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Andrew\",\"plainText\":\"[**ASICS**](https://www.asics.com/au/en-au/). Since Mum and Dad spoiled me when I was 12, these are the only sports shoes I buy. They last forever and are Australian. Luckily they make specialised hockey shoes as well!\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BP6fkJyA6u\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kimi\",\"plainText\":\"[**Jatz**](https://www.arnotts.com/products/crackers)! The most versatile cracker that suits all and any occasion! You got a dip? Jatz. A soup? Dip a Jatz in. A fancy, artisanal soft cheese? Crack the Jatz out. A simple cheddar cheese? Jatz it. Feeling really hungover and can\'t keep anything down but need to eat something so you can muster the strength to order a burrito on Uber Eats? Jatz it, baby.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Yr3xX8UNUq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Tim\",\"plainText\":\"Super obvious one but [**Apple**](https://www.apple.com/au/). Everything from their product design and UI right through to their bricks and mortar storefront is meant to make you ‘think differently’ as per their brand promise, but at the same time give you a sense of familiarity. I’ve dabbled with more phones and laptops than I care to mention but will always come back to Apple. That said, iTunes sucks!\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WePs4cQeU3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Lynn\",\"plainText\":\"I can be impulsive by nature but the one thing I am never impulsive about is my [**Impulse**](https://www.unilever.com.au/brands/beauty-personal-care/impulse/) Merely Musk deodorant. I have used this deodorant since I can remember because it smells good and stops me smelling bad! I never worry about BO when I have my Impulse on!\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kFDk9QaMtq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Jo\",\"plainText\":\"[**RM Williams**](https://www.rmwilliams.com.au/). I got my first pair of boots on arrival to \'Straya as I’d heard great things and love a good Chelsea boot. After 17 years, I am only on my third pair, which shows you the quality and craftsmanship that goes into the RM brand.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qjkDIEMMe3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kat\",\"plainText\":\"[**The Iconic**](https://www.theiconic.com.au/). Their customer service/shipping options/returns policy is so user friendly and far outshines any competitors. They make the process of purchasing and returning so easy that I’m happy to throw my money at them. I’m sure they would lose money on the shipping/returns too, but make it back with the volume of sales from happy customers like myself.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-nXicTrGS5B\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bruce\",\"plainText\":\"[**The Dirt Company**](https://thedirtcompany.com.au/)\'s laundry detergent. I like the idea that not everything we buy has to \'cost the earth\' and Dirt have not only made a more eco-friendly washing detergent, but you can send their packaging back to them and they will reuse it. Their highly concentrated detergent won\'t harm the environment and the reusable packaging means a whole lot of plastic is not going into landfill or waterways. Another company that shows you can have a successful business while still protecting the planet.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ieCD98S7up\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bec\",\"plainText\":\"I found this tricky as I am a bit of a brand tart, and I have been disappointed by a few brands in the past who have not lived up to my expectation (“Nooo we vehemently don’t and will never test on animals…but we will sell out to the big company who does”) BUT a brand I have stayed loyal to is [**Vegemite**](https://vegemite.com.au/).\\n\\n– I loved it as a kid—I suspect the 50s jingle had more to do with that than the taste. Mum and dad regretted introducing us to that song with our robust young lungs joyfully belting it out over and over again on long car trips.\\n– I loved it as a young adult—that black tar smeared on toast. It was post-party comfort food and it was a cheap meal (with Vitamin B!). It made you feel better, like you could go on.\\n– I loved it as a slightly older adult when living abroad—Vegemite toast was like a hug from home. How happy was I when I realised you could get it everywhere and it still tasted the same, unlike Cadbury chocolate. There\'s that brand disappointment!\\n\\nI don’t know that Vegemite is the healthiest food group or even a brand with the most integrity, but I have an emotional connection to that bold brand of yellow, red and white with its tarry contents. It tastes so good on toast and even gives a stir fry an interesting edge. It’s stayed pretty consistent in a world that has changed so much, and as an Australian living abroad it’s part of your heritage and your identity. What’s even better, the brand has come back home to Australia.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dSCs5J35lI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kerry\",\"plainText\":\"I\'m loyal to the US hair care brand [**DevaCurl**](https://www.devacurl.com/us). It has been the only brand to date that has been able to calm my crazy hair and embrace my God-given curls. Of recent times, DevaCurl have been dragged through the courts as many people have claimed it makes their hair fall out. But I have kept on buying it from the US after 5 years of use and I still have enough hair to go around, so somehow I don\'t think it is a problem for me.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aPLfD479sh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Liam\",\"plainText\":\"I tend to enjoy a little cheating on my normal choices. But one brand I’ve stuck with since my teens is [**Ray-Ban**](https://www.ray-ban.com/australia) sunglasses. I like that their styles never stray too much from the original designs and they don’t follow trends. I’ve been gifted \'luxury fashion\' brand sunglasses before and they are more about getting their fancy name or logo on the product than anything else—the quality is dubious and the style trends come and go. Ray-Ban don’t try to be overly fashionable, they work well and look good. Proud middle-aged man moment for me was after I had bought a new pair of Ray-Bans overseas and in my first week back in Brisbane the cool hipster barista at the coffee shop said to me “Love your sunnies… they’re on point”.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qhin1NvFDx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Ryan\",\"plainText\":\"[**Patagonia**](https://www.patagonia.com.au/). It lasts for ages and they actually fix stuff. I had a pair of hiking pants that got hammered in Nepal and they fixed them for me. They also give 1% of sales back to conservation efforts. Their stuff also just seems to fit me really well.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UgAjx4JylF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Suzanne\",\"plainText\":\"[**Kawai**](https://kawai.com.au/) pianos is mine. I’ve played for 45 years and, no matter where I find a Kawai, the touch and the sound is consistent. The Kawai is smooth and sonorous. Love that it’s been so consistent for so long.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8UXqqjffzF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Scott\",\"plainText\":\"Tim took mine—Apple has been the most consistent brand in my life since we started NWO (and before, too) and crossed over seamlessly into my personal life as well. Their stuff works, lasts, is simple to use and is beautiful to look at, use and hold. But if I have to pick a different one I’d pick [**Nudie Jeans**](https://www.nudiejeans.com/). Like Patagonia they repair for free, they give you money for your old pair and resell it to save waste. And, their jeans just always fit me in a way no other ones ever have.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-v0xY9fvU6u\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kate\",\"plainText\":\"[**IKEA**](https://www.ikea.com/au/en/) is a Swedish wonderland. For me there’s nothing better than a free Saturday afternoon, barrelling down the M1 towards the glorious blue and yellow castle. From beginning to end the experience is flawlessly designed—from the carpark, to the food, to the warehouse, to the satisfaction of sitting on the couch you spent the past hour bolting together. Every aspect of the IKEA brand is designed to hug your mind, body and soul. No brand can wrap you in a cozy $5 throw like IKEA can.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uRfO2vtwj8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Margaret\",\"plainText\":\"[**Haagen Dazs**](https://www.haagen-dazs.com.au/) ice cream. No flavour ever disappoints and that cream base… I had my first HD on Singapore Airlines when I was 17 and I ate four in row. (Tip: ask four different air hostesses.)\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kesJqAugGq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bree\",\"plainText\":\"I regularly drive out of my way to stop at [**7-Eleven**](https://www.7eleven.com.au/) for fuel. I wouldn\'t even consider going anywhere else, and the reason why is so simple: the My 7-Eleven app. The lock-in price feature is a game changer and I get a thrill every time I see the price on the EFTPOS machine and how much lower it is than the price on the pump outside. It almost makes me enjoy buying fuel.\\n\\nThe Krispy Kremes don\'t hurt either.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-K1FhEue9Fp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"As you can tell from the kinds of brands they chose, your brand doesn\'t have to be flashy or sexy. It just has to be true to itself and deliver on its promises, consistently and with a bit of personality.\\n\\n\\n*Disclaimer: New Word Order is not sponsored by or partnered with any of the mentioned brands.*\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44853,48393,1,'Hear the equality stories from NWO women','2021-09-27 22:58:28','2021-09-27 22:58:28','94773f72-3f57-4619-9655-8e3a5141f117',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Wernf3qqvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"International Women\'s Day 2021\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We can all choose to challenge and call out inequality. We can all choose to seek out and celebrate women\'s achievements. Collectively, we can all help create an inclusive world. \\n\\nFrom challenge comes change, so let\'s all choose to challenge.\\n\\nThe 2021 theme for International Women\'s Day is #choosetochallenge. We asked the women of NWO what this means for them.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dQqtfQZh3I\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17131\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZSm70uSTq5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Jo Penney: We don\'t need titles\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"As a female with short hair, I am often referred to as ‘sir’.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"This occurs mostly by flight attendants who take a quick glance and assume, rather than just offering a friendly ‘good morning’ or ‘good evening’ and avoiding their own embarrassment when they realise their mistake.\\n\\nOnce, the same flight attendant who greeted me to the plane was so embarrassed she could barely offer me tea or coffee later in the flight.\\n\\nIt’s silly and avoidable, and I find it quite funny and entertaining to see which way it will go.\\n\\nFor others, though, it can be an awful embarrassment that can easily be avoided by removing titles.\\n\\nSo, this International Women’s Day, I’m choosing to challenge all of us to end their use.\\n\\nI’m a proud female but I don’t feel the need to be referred to as madame, ma’am, mademoiselle, etc. It’s old-fashioned and classist.\\n\\nAnd as a proud LGBTI woman, I am extra aware that titles can isolate and sideline—not encourage and respect—people for whom gender and identity has been hard-won.\\n\\nLet’s talk our walk. Let’s end titles for good.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oVs7jOKhCm\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17127\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-823iS7DNes\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Kat Scott: The courage to listen\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"I’ve always thought the conversation around challenges women face was about finding your voice and speaking up; that strong, independent women needed to find the confidence to make their voices heard.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The older I get and the more the modern world allows us to see through the structures of society, economics and politics, I realise the conversation is really about finding the confidence to listen to those voices.\\n\\nYou see it every day in business, TV, music, media and social situations that when there is a woman who stands up and says how she feels, she is perceived as “too much”.\\n\\nI am guilty at times of not hearing other female voices and, worse than anything, sometimes of not even hearing my own voice.\\n\\nDespite thinking of myself as a very headstrong, intelligent and confident person, I tell myself to “tone it down” because I’m being “too much”.\\n\\nI want to see people rising to the challenge of actively listening to those female voices and perspectives, not because they are female but because they are equal.\\n\\nEvery person should be offered the same platform, the same ears and the same opportunities—if we choose to take them.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YdYo9ey7f6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17124\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jXUudS4IzN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Rebecca Holman: Let\'s keep choosing to challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Here’s to the great women who kicked it all off.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"They challenged previously held societal norms, at great personal and physical cost, to give us the right to vote, the right to marry who we like, the right to choose our own careers, to be independent and to move closer to gender equality.\\n\\nThe spirit of these pioneers lives on, and the hard and uncomfortable work continues in many forms with each of us.\\n\\nAll of us can keep choosing to challenge each other—woman to man, woman to woman, man to man—in our everyday lives.\\n\\nHere’s to the mums, dads and those very special teachers who nurture our kids, lead by example and challenge the next generation to grow into people who treat each other with respect, patience and compassion.\\n\\nLet’s keep championing and supporting each other to achieve true gender equality.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RUzEpjpFMZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17119\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7wTrhTk0Ps\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Kimi Schieren: Deeper than the dollar amount\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Revealing you have a side hustle always brings up questions about success.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"“What kind of a profit are you making?”\\n\\n“Is it worth it?”\\n\\nEspecially if you, like myself, also work a full-time job and the side hustle itself is almost equally as full-time—the questions surrounding the value of your extracurricular will frequently plague you.\\n\\nHolding the worth of something solely on whether or not it’s profitable can be a slippery slope of creating unattainable goals and unrealistic expectations on yourself and your business.\\n\\nWhat I get out of my side hustle both professionally and personally far surpasses any financial goals.\\n\\nIt’s an outlet for my creativity and a way to express myself. Plus, it helps me to be more creative in my day job.\\n\\nThe two jobs feed into each other and without either or both I would struggle to feel like myself.\\n\\nSuccess from my side hustle is measured in the praise of happy customers, the smiles and comments I get from people who pass my stuff in the streets, and the self-satisfaction I get from creating something from an idea in my head to something you can physically wear or hold.\\n\\nSure, getting paid is also great and I dream of the day when it can become my full-time job. But, for now, my success is much deeper than a dollar amount.\\n\\nThis International Women’s Day, I’m choosing to challenge the notion that wealth equals success.\\n\\nLet’s choose to open our mind to what success looks like and celebrate the amazing things we’re doing.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TAZHDkM6ny\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17115\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EVYfpAlzzL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Kate Wood: Because they challenged, I get to choose\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"I’m in the grey area between Gen Y and Z, so I’m a product of the many Gen X women who raised me, inspired me and challenged me.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Gen X women were born in the 70s and 80s when the ideals of having it all—stable marriage, perfect family, lucrative work—came disguised as female empowerment. What crippling expectations.\\n\\nThese women defied mathematics. There are only 24 hours in a day and having it all takes at least 36.\\n\\nThey challenged the gender norms of the time and proved that, in fact, you can have it all.\\n\\nBecause of that, I don’t have to be the perfect mum with the perfect kids. I don’t have to be married to the dreamiest spouse. I don’t have to cook like Nigella or clean like Marie Kondo. I don’t have to climb the corporate ladder and smash through glass ceilings.\\n\\nI certainly don’t need to do all of that at the same time.\\n\\nAnd because I’m lucky enough to work for an incredible Gen X woman, I don’t have to work twice as hard to earn the same as my male colleague.\\n\\nInstead, I get to choose my values and the kind of woman I want to be.\\n\\nTo all you Gen X women who bravely went before: thank you. Because you worked so hard to challenge, I get to choose.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PCfYuBrUwo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17114\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aX0BZHIT5e\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Suzanne Oxford: Let\'s not mistake peace-keeping for peace-making\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"As a person of faith, I’ve always been challenged by a verse that says, “as far as it depends on you, live at peace”. I consider this my mandate.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But don’t mistake peace-keeping for peace-making.\\n\\nPeace-keeping keeps factions apart with no expectation of resolution. It’s maximum effort expended in a passive, zero sum game. It reinforces apathy, privilege and anger.\\n\\nMe? I’m a peace-maker. The very act of making peace—and making peace, and making peace—is dynamic and potent, shining a light where inequality and injustice rob people of true peace.\\n\\nPeace-making drives me to lean in and bear witness to people’s stories with compassion and empathy.\\n\\nIt compels me to respond with strategies and actions that can create lasting change.\\n\\nIt urges me to have uncomfortable conversations to elicit greater understanding.\\n\\nIt impels me own my blind spots so I can grow in gentleness—and, in turn, create even greater peace.\\n\\nThere’s nothing passive about being a peace-maker, and peace-making never ends.\\n\\nIn fact, as I consider the broken world my children are now entering as young adults, my peace-making is only increasing in volume—as is my understanding that peace is a human right and that, as far as it depends on me, I must give it voice and life.\\n\\nAnd so I do.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OM2HjsMtPT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17108\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Knak12weJl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Bree Leitch: Our voice carries weight, even when it wavers\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"I grew up posting everything on social media, compiling a collage of my perfect life.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Every photo is meticulously chosen out of hundreds taken, every smile critiqued, and every caption drafted and redrafted. Anything less than perfection simply won’t do—I have an audience to please, you see.\\n\\nWomen have fought since the beginning of time to have our voices heard and taken seriously. And now we have an audience, they’re out for blood. It’s the little things—misusing terminology, Facetune gone wrong, dating too many people or not enough—the list goes on. Our audience will fault us for anything in order to discredit us.\\n\\nThe worst part? Often, that audience is me. Sometimes it’s you. It’s all of us women at one point or another, not because we mean to, but because we are trained to. We are taught we must tear other women down in order to lift ourselves up.\\n\\nWhen we let ourselves believe that our own success—or self-security, or popularity, or whatever validation we seek—is dependent on the destruction of other women, we all suffer.\\n\\nWe don’t have to be perfect to be valid. Our voice carries weight, even when it wavers.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44855,48395,1,'These are a few of our favourite brands','2021-09-27 22:58:42','2021-09-27 22:58:42','bf4ba889-6c35-4c2a-a936-de3e9fa7488d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4Kng0ZJkmt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"I asked the team at New Word Order to think of a brand to which they are unwaveringly loyal.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Here\'s what they said.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fCc8knIn7z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Andrew\",\"plainText\":\"[**ASICS**](https://www.asics.com/au/en-au/). Since Mum and Dad spoiled me when I was 12, these are the only sports shoes I buy. They last forever and are Australian. Luckily they make specialised hockey shoes as well!\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BP6fkJyA6u\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kimi\",\"plainText\":\"[**Jatz**](https://www.arnotts.com/products/crackers)! The most versatile cracker that suits all and any occasion! You got a dip? Jatz. A soup? Dip a Jatz in. A fancy, artisanal soft cheese? Crack the Jatz out. A simple cheddar cheese? Jatz it. Feeling really hungover and can\'t keep anything down but need to eat something so you can muster the strength to order a burrito on Uber Eats? Jatz it, baby.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Yr3xX8UNUq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Tim\",\"plainText\":\"Super obvious one but [**Apple**](https://www.apple.com/au/). Everything from their product design and UI right through to their bricks and mortar storefront is meant to make you ‘think differently’ as per their brand promise, but at the same time give you a sense of familiarity. I’ve dabbled with more phones and laptops than I care to mention but will always come back to Apple. That said, iTunes sucks!\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WePs4cQeU3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Lynn\",\"plainText\":\"I can be impulsive by nature but the one thing I am never impulsive about is my [**Impulse**](https://www.unilever.com.au/brands/beauty-personal-care/impulse/) Merely Musk deodorant. I have used this deodorant since I can remember because it smells good and stops me smelling bad! I never worry about BO when I have my Impulse on!\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kFDk9QaMtq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Jo\",\"plainText\":\"[**RM Williams**](https://www.rmwilliams.com.au/). I got my first pair of boots on arrival to \'Straya as I’d heard great things and love a good Chelsea boot. After 17 years, I am only on my third pair, which shows you the quality and craftsmanship that goes into the RM brand.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qjkDIEMMe3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kat\",\"plainText\":\"[**The Iconic**](https://www.theiconic.com.au/). Their customer service/shipping options/returns policy is so user friendly and far outshines any competitors. They make the process of purchasing and returning so easy that I’m happy to throw my money at them. I’m sure they would lose money on the shipping/returns too, but make it back with the volume of sales from happy customers like myself.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-nXicTrGS5B\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bruce\",\"plainText\":\"[**The Dirt Company**](https://thedirtcompany.com.au/)\'s laundry detergent. I like the idea that not everything we buy has to \'cost the earth\' and Dirt have not only made a more eco-friendly washing detergent, but you can send their packaging back to them and they will reuse it. Their highly concentrated detergent won\'t harm the environment and the reusable packaging means a whole lot of plastic is not going into landfill or waterways. Another company that shows you can have a successful business while still protecting the planet.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ieCD98S7up\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bec\",\"plainText\":\"I found this tricky as I am a bit of a brand tart, and I have been disappointed by a few brands in the past who have not lived up to my expectation (“Nooo we vehemently don’t and will never test on animals…but we will sell out to the big company who does”) BUT a brand I have stayed loyal to is [**Vegemite**](https://vegemite.com.au/).\\n\\n– I loved it as a kid—I suspect the 50s jingle had more to do with that than the taste. Mum and dad regretted introducing us to that song with our robust young lungs joyfully belting it out over and over again on long car trips.\\n– I loved it as a young adult—that black tar smeared on toast. It was post-party comfort food and it was a cheap meal (with Vitamin B!). It made you feel better, like you could go on.\\n– I loved it as a slightly older adult when living abroad—Vegemite toast was like a hug from home. How happy was I when I realised you could get it everywhere and it still tasted the same, unlike Cadbury chocolate. There\'s that brand disappointment!\\n\\nI don’t know that Vegemite is the healthiest food group or even a brand with the most integrity, but I have an emotional connection to that bold brand of yellow, red and white with its tarry contents. It tastes so good on toast and even gives a stir fry an interesting edge. It’s stayed pretty consistent in a world that has changed so much, and as an Australian living abroad it’s part of your heritage and your identity. What’s even better, the brand has come back home to Australia.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dSCs5J35lI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kerry\",\"plainText\":\"I\'m loyal to the US hair care brand [**DevaCurl**](https://www.devacurl.com/us). It has been the only brand to date that has been able to calm my crazy hair and embrace my God-given curls. Of recent times, DevaCurl have been dragged through the courts as many people have claimed it makes their hair fall out. But I have kept on buying it from the US after 5 years of use and I still have enough hair to go around, so somehow I don\'t think it is a problem for me.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aPLfD479sh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Liam\",\"plainText\":\"I tend to enjoy a little cheating on my normal choices. But one brand I’ve stuck with since my teens is [**Ray-Ban**](https://www.ray-ban.com/australia) sunglasses. I like that their styles never stray too much from the original designs and they don’t follow trends. I’ve been gifted \'luxury fashion\' brand sunglasses before and they are more about getting their fancy name or logo on the product than anything else—the quality is dubious and the style trends come and go. Ray-Ban don’t try to be overly fashionable, they work well and look good. Proud middle-aged man moment for me was after I had bought a new pair of Ray-Bans overseas and in my first week back in Brisbane the cool hipster barista at the coffee shop said to me “Love your sunnies… they’re on point”.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qhin1NvFDx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Ryan\",\"plainText\":\"[**Patagonia**](https://www.patagonia.com.au/). It lasts for ages and they actually fix stuff. I had a pair of hiking pants that got hammered in Nepal and they fixed them for me. They also give 1% of sales back to conservation efforts. Their stuff also just seems to fit me really well.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UgAjx4JylF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Suzanne\",\"plainText\":\"[**Kawai**](https://kawai.com.au/) pianos is mine. I’ve played for 45 years and, no matter where I find a Kawai, the touch and the sound is consistent. The Kawai is smooth and sonorous. Love that it’s been so consistent for so long.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8UXqqjffzF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Scott\",\"plainText\":\"Tim took mine—Apple has been the most consistent brand in my life since we started NWO (and before, too) and crossed over seamlessly into my personal life as well. Their stuff works, lasts, is simple to use and is beautiful to look at, use and hold. But if I have to pick a different one I’d pick [**Nudie Jeans**](https://www.nudiejeans.com/). Like Patagonia they repair for free, they give you money for your old pair and resell it to save waste. And, their jeans just always fit me in a way no other ones ever have.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-v0xY9fvU6u\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kate\",\"plainText\":\"[**IKEA**](https://www.ikea.com/au/en/) is a Swedish wonderland. For me there’s nothing better than a free Saturday afternoon, barrelling down the M1 towards the glorious blue and yellow castle. From beginning to end the experience is flawlessly designed—from the carpark, to the food, to the warehouse, to the satisfaction of sitting on the couch you spent the past hour bolting together. Every aspect of the IKEA brand is designed to hug your mind, body and soul. No brand can wrap you in a cozy $5 throw like IKEA can.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uRfO2vtwj8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Margaret\",\"plainText\":\"[**Haagen Dazs**](https://www.haagen-dazs.com.au/) ice cream. No flavour ever disappoints and that cream base… I had my first HD on Singapore Airlines when I was 17 and I ate four in row. (Tip: ask four different air hostesses.)\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kesJqAugGq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bree\",\"plainText\":\"I regularly drive out of my way to stop at [**7-Eleven**](https://www.7eleven.com.au/) for fuel. I wouldn\'t even consider going anywhere else, and the reason why is so simple: the My 7-Eleven app. The lock-in price feature is a game changer and I get a thrill every time I see the price on the EFTPOS machine and how much lower it is than the price on the pump outside. It almost makes me enjoy buying fuel.\\n\\nThe Krispy Kremes don\'t hurt either.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-K1FhEue9Fp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"As you can tell from the kinds of brands they chose, your brand doesn\'t have to be flashy or sexy. It just has to be true to itself and deliver on its promises, consistently and with a bit of personality.\\n\\n\\n*Disclaimer: New Word Order is not sponsored by or partnered with any of the mentioned brands.*\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44856,48396,1,'Break away from the same-same with custom illustration','2021-09-27 22:58:49','2021-09-27 22:58:49','fbd16430-a535-4ce3-ad28-ab2922072f80',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tiYExhhMPf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"There’s nothing more special than something made just for you.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"You hold it loudly and proudly for all to see—and they notice because there’s nothing else in the world quite like it. And this makes you treasure it that little bit more.\\n\\nThe dream of an illustrator is to have time, budget and ability to craft a bespoke masterpiece for every job that comes across the desk.\\n\\nThat dream doesn’t turn to reality very often. But that doesn’t mean your brand has to revert to using the same old stock illustrations everyone else uses either.\\n\\nThere are so many ways to get over those hurdles when a project doesn’t have time or budget to allow for a custom piece.\\n\\nA lot of the time, stock illustration can be tweaked to give it the edge it needs to stand out from the crowd.\\n\\nChange up the colours, mix up the style and jazz up the faces.\\n\\nSometimes stock forms the base for us to build something fresh. And other times there might already be the perfect stock illustration that tells the right story without much tweaking at all.\\n\\nWhatever the constraints—budget, time, brief—there’s always a way to break free. It just takes some thinking outside of the box.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-amC4hnZM56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"If you’re drowning in a sea of same-same, come chat to us and [we’ll get you out of there in no time](/contact).\",\"plainText\":\"\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44857,48397,1,'Simplifying the complex: Fifteen years of marketing schools','2021-09-27 22:58:58','2021-09-27 22:58:58','93473117-620d-4fc8-b9d7-61631903181a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WAYo0QEnCs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"After 20 years of marketing—including 15 years working with schools across Queensland and New South Wales—I am steadfast in my belief that there is no marketing challenge as complex as that faced by schools.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"In what other industry would you find thousands of individual stakeholders—students, parents, teachers, alumni and more—all with do-or-die expectations?\\n\\nOr an environment that can, quite honestly, change the trajectory of children’s lives?\\n\\nThen you have the two very distinct markets—internal and external—often with very different needs that need to be met with minimal budgets.\\n\\nThe experience of school changed little for nearly a century but, in the past 20 years, it has evolved in such leaps and bounds that today’s parents struggle to recognise it.\\n\\nPhilosophically, there are few industries I can think of that have such a strong evidence base to guide practice—here I’m thinking of teaching and learning—yet the required outcome is often diametrically opposed to it. \\n\\nIt’s little wonder that I find the business of marketing schools endlessly fascinating.\\n\\nOnly this morning I was in another principal’s office, talking through these very complexities. In our conversation, we touched on what I’ve discovered over the years are three bedrock principles every school needs as their marketing foundation. They’re my way of transforming a little of the complex into the simple.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Esbo1iQq5g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"1. Work out what makes you unique\",\"plainText\":\"Marketing and enrolments teams live and die by their numbers. \\n\\nIt is endlessly tempting, then, to try to go wide in your appeal so that you create the biggest possible net. \\n\\nIn practice, though, it means no-one knows what you stand for. \\n\\nThe better alternative is to embrace what makes you unique and then market that hard. You’ll end up attracting families that are the right fit for you and work hard as your ambassadors. \\n\\nInternally, there’ll be great cohesion, too, because you’ll attract and retain great educators who get what you’re about and support it in their words and actions.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-v1FFRTuEFs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"2. Don’t be afraid to look like you’re unique\",\"plainText\":\"If you’re bored one day in your office, try this game. \\n\\nGet ads from three schools, and then block out their hats and uniforms. Can you still tell them apart? \\n\\nIt astounds me that we continue to use sterile, look-alike images—hey, here’s a girl in a lab coat with a test tube as proof that we promote girls in STEM!—that don’t reflect the day-to-day experience of what it is to learn at your school. \\n\\nCelebrate your uniqueness—and set yourself apart from your competitors—by choosing unique visual styles and photography.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cMg5IvARdG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"3. Now stay unique\",\"plainText\":\"Over time, teachers and leaders of schools get to know each other pretty well. \\n\\nPrincipals, in particular, know other schools like bookies know racehorses. The net result in marketing is that your great idea quickly becomes next year’s norm… and after a few years, what was edgy is simply outdated. \\n\\nWise schools invest in a middle ground here. \\n\\nThey start off strong and then review and refresh their brand every year or two. \\n\\nThat way, subtle tweaks don’t destabilise your internal audience but you stay fresh and relevant externally.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3XrIiJiL9w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Want to know more?\",\"plainText\":\"Suzanne advises schools on sustainable marketing strategy that helps them get the most from their internal resources. To chat, phone 07 3334 8340 or email suzanne@newwordorder.com.au.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `content` VALUES (44858,48398,1,'The 6 steps of content creation','2021-09-27 23:00:38','2021-09-27 23:00:38','2128f7e0-ef99-4d38-8665-1fe9869fc890',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-92RCseTSp0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"You know what your business is about. You’ve nailed down your story. You’ve worked out who you want to talk to.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Now you need to add some real value.\\n\\nTime-poor organisations need their content to work across different channels online—including websites, e-newsletters, blogs and across social media. One way to add value to your existing, more sales-focused content is through content curation. Content curation means finding useful content online, curating it for your audience and re-telling it in your voice and with your advice.\\n\\n##### **Here’s how to optimise, write and curate content for your target audience.**\\n\\n###### **Defining your goals**\\n\\nEvery good plan starts with defining what it’s trying to achieve. How do you want your content to define your business? What are you offering your target market? Do you want to be a thought leader in your particular area?\\n\\nContent curation is about meeting your customers where they are and offering them something they’re not getting elsewhere. It’s about finding, gathering and sharing information of value with them; positioning your business and brand as an authority both with original content—your sales offering and business learnings—and information you’ve found and shared online. Participating in conversations that are happening about your field leads to more engagement with your target market, the ultimate goal being to give your brand a voice of value that will see your audience come back again and again for your offering.\\n\\n###### **Getting started**\\n\\nIt’s important to remember that well-executed content curation isn’t about regurgitating content that was already published. Instead, it’s your business’ personal re-telling of a story. As Susan Gunelius wrote for Forbes, the human element of content curation is what makes curated content compelling.\\n\\nTherefore, when offering your audience valuable content, remember to tell your story. What are you saying that’s different? What do you know that others might not? Involve your whole team—not just marketing and sales—and that story will evolve to give your business a truly useful and unique voice.\\n\\n###### **Finding content**\\n\\nHere’s where you get amongst it!\\n\\nWant to know where your target market is looking for information online? Go exploring! Ask them! Discover for yourself where the good stories are being shared. Find out what topics matter to your goals and audience, and go after them.\\n\\nIntegrating content curation into your broader marketing strategy is the way to go here—it legitimises the exercise and gets your team thinking about the value of your brand and how they can add to it. The best place to start is probably your social media accounts. Valuable content is being shared every day on platforms like Facebook, Twitter and LinkedIn. There are also Google alerts and news aggregate sites that can be set up with your special business needs in mind.\\n\\n###### **Be authentic to find your voice**\\n\\nThere is nothing like the instant world of social media to add value and timeliness to your content. Social media has changed the term ‘sharing’ forever, and the opportunities for your brand are endless. It’s important to add your own value to social content—as Mark Lerner says, if you just \'retweet\', or share an article without including your own voice in the post, you’ll fail to distinguish yourself from everyone else who shared that content.\\n\\nHow do you find your voice? Authentically, of course! Offer your opinion and add your advice in areas where you are confident. Try to be friendly and informative, and adopt an approachable tone. Not so confident? Ask questions! Get your community talking and they’ll come back to you.\\n\\n###### **Context and thought leadership**\\n\\nGood content curation provides your audience with context and convenience—that means filtering and explaining what you find online, and rewording it in your voice so it’s useful to them. You don’t always need to be selling, but you do always need to be mindful of your brand and of offering real value. Knowing who your market is and writing in your ‘voice’ allows you to, as J-P De Clerck says, inform, educate, entertain and engage target audiences.\\n\\n###### **Where to share**\\n\\nThere are many ways to share curated content, but the best way is in a mix of your existing ‘sales’ content. E-newletters and blogs offer an opportunity to share curated and original content, and social media is the most instant way to add your voice to a new idea, and also probably the first place your audience will find you. They’ll also find your website, so don’t forget about the curated content opportunities there. Always remember that you should be providing useful information, not just repeating content or working on the hard sell.\\n\\nContent curation is convenient, but it’s also an important opportunity to add value, develop a business voice and grow an online community. What do you think about content curation? Has it worked for you? Got any tips? Let us know.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44859,48399,1,'B2B is dead','2021-09-27 23:01:03','2021-09-27 23:01:03','dfa510a9-a0f2-4718-8bb2-74e11af182c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-luIsqIjBj1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"As deaths go, it was a quiet one. Few people knew of its demise.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But there it lay still: the artificial divide between B2B and B2C marketing, gone forever.\\n\\nWhy bother lamenting the dead? Dare I say, it’s good riddance to a dodgy invention.\\n\\nThe idea that marketing business-to-business took entirely different skills and strategies to talking to consumers has its roots back in the early Noughties. The notion, which most marketers sadly still hold, was that because the volume of B2B transactions is so much higher than B2C—if you count every transaction required along a manufacturing supply chain, for example—then B2B branding requirements were stronger, too.\\n\\nConversely, the B2C belief held that the consumers of the world needed entirely different marketing strategies to convince them to open their wallets.\\n\\nTrue, where they differ most is in the justification of purchases. In B2C land, I need to convince myself why I should buy yet another pair of red shoes. (It’s a short discussion.) In B2B, I might be lobbying the board to invest in an expensive new CRM system.\\n\\nBut the truth is both groups share more similarities than differences.\\n\\nYour customers—be they businesses, consumers or both—have similar emotional and logical requirements that must be met. The relationship lifecycle between a purchaser and a brand exists with businesses and consumers alike. Both groups also frequent the same social media spheres, are Google-happy and web-savvy, and require strong brand confidence in order to purchase.\\n\\nThe illusion that you’re selling to a company in B2B should be seen for what it is. In retail or in business marketing, you’re selling to individuals. And each wants to feel that you get them.\\n\\n##### **Long live H2H.**\\n\\nWhich is where yet another acronym is starting to make a play: H2H, or human-to-human marketing.\\n\\nIt espouses the belief that we all, business and retail customers alike, are looking for connection, inclusion and to be understood. If you take that as your starting point—and not your burning need to produce another brochure—then the marketing toolbox available to your business automatically grows.\\n\\nIt means the vast strategies already out there, like relationship marketing and continuous touchpoints, become as relevant to a retail customer as to the business that buys your widgets. And the traditional B2C tools like social media become far more relevant B2B because they help build connections better than a sterile product flyer.\\n\\n##### **Let’s make H2H practical.**\\n\\n**1. Open your horizons**\\n\\nSwitching your mindset to focusing on the individual, human needs of your market means you can open your marketing to all sorts of potential tools. Just because you run a hair salon doesn’t mean you can’t start sending out a monthly email newsletter—if your customers are the kind of people that like to know more about you. And just because you’re an accountant doesn’t mean you can’t lead an industry group on LinkedIn or advertise on Facebook—if that’s where you’ll find the types of sales you want. Think about your customers, and let their needs lead you.\\n\\n**2. Make your customers feel**\\n\\nSales overwhelmingly come from relationships in my business, so meeting my clients’ emotional needs is a no-brainer. If my clients are happy, they’ll stay.\\n\\nBut even if your sales rely heavily on good old-fashioned foot traffic, it’s relationships that will lure them and keep them. So, in every tool you use to get to market, make sure you get the emotional kicker in. Empathise and prove you understand their needs.\\n\\n**3. Ask your employees what they think**\\n\\nIt’s one thing to make marketing decisions from an ivory tower. Chances are it’s your staff who really know how your clients think, or how your customers behave. So get their ideas and integrate it into your marketing. Let them drive your innovation.\\n\\n**4. Finally, listen to your customers**\\n\\nThere is marketing gold in every intentional conversation you have with a customer. Ask the ‘why’ that follows the tough questions: Do you feel safe with my business? Do you like dealing with us? Would you refer us to your friends? The answers will revolutionise how you think about marketing to your customers.\\n\\n---\\n\\n*Written for the February 2014 issue of Inform, the monthly magazine of the Chamber of Commerce and Industry in Queensland.*\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44861,48401,1,'8 important marketing questions for every business','2021-09-27 23:01:35','2021-09-27 23:01:35','c57bc28e-d418-4dab-8807-57afe3aa7c7d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VzKHBkk2Ca\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Marketing communications in business is all about attracting and retaining customers. We do it for dozens of Australian companies every day, and the bigger the company, the tighter the marketing strategy governing their communications—because they know customers are fickle, and competitors are waiting to pounce on any weakness.\\n\\nThe same philosophy of tight strategy and execution should drive your business. Effective marketing communications must be an essential part of your core business strategy to ensure you’re pushing the same, consistent message through every aspect of your organisation.\\n\\nBut it’s not always so easy to go it alone. If you’re in a small business and know you need to step up, here’s a handy checklist of the marketing questions you need to answer to keep your customers in tune with you—and your competitors at bay.\\n\\n##### **Who are my existing customers?**\\n\\nThe best way to sell to your customers is to first understand who they are, why they buy from you, and what value they expect from you. And the best way to learn this? Listen to them. Marketing communication begins with good customer relationships, which are almost like your own form of market research.\\n\\nWhen you talk to your customers, you’ll learn things like your customers’ age, income, education, how often they buy from you, what their buying triggers are and how they’re influenced. This is a valuable step in honing your marketing message, so don’t be tempted to think you already know the information if you’ve been in business for a while. Every customer conversation will add another layer to your understanding.\\n\\n##### **Who are my potential customers?**\\n\\nIt’s just as critical to have a very clear understanding of your desired target market and new customers. Get as detailed as you possibly can. The more specific you are, the better you can develop messages for them.\\n\\n##### **Who are my competitors?**\\n\\nUnderstanding who competes for your customers—and what they’re offering—is vital. Get very familiar with every aspect of your competitors’ businesses—including their reputation, prices and marketing material. This knowledge will help you position your marketing communication relative to how your customers are already being targeted and differentiate yourself in the market.\\n\\n##### **What am I trying to achieve?**\\n\\nUnderstanding why you’re communicating with your customers is essential. Are you purely after quick wins? Or preparing the ground for a new product or stronger relationships? The rationale and potential value for any marketing effort should determine how much money you need to spend, and where it’s best spent.\\n\\n##### **What am I trying to say?**\\n\\nThis is where everything comes together. You must now develop clear, key messages that talk up your product or service, meet the expectations and needs of your new and existing customers, and differentiate yourself from your competition.\\n\\nMake sure you have no more than five key messages—in fact, the fewer the better—and make them specific and meaningful. That’s how you stand out in the crowded market. Ensure your customers are aware of your business and its products or services, and why they should care (e.g. What’s in it for them? And what are the true benefits?). These benefits should be factual and real. It’s important not to overload customers with information, but rather to be clear and articulate.\\n\\nAll of your marketing communications should include a strong call to action: What is it that you want customers to do once they’ve interacted with you? Leave them in no doubt and make it easy for them.\\n\\n##### **What’s the right channel?**\\n\\nThere’s no doubt that it’s a busy marketplace when it comes to finding the perfect place to share your marketing messages. The challenge here is in focusing and narrowing your communication—and finding the right time and place to connect with your customers.\\n\\nMany marketers are now jumping on social media networks, but that might not be where your customers can be found. It’s important that you understand how and when they want to hear from you, and use that information to foster a true customer relationship.\\n\\n##### **Is my strategy integrated?**\\n\\nCommunicating in an integrated way across all channels (such as website, emails and brochures) means your brand will become better known and understood. Integration means that every time your customers hear from you, they get the same feel for who you are. By creating consistent, strong marketing communications, your customers will identify and remember you into the future.\\n\\n##### **Finally: Am I communicating with genuine creativity?**\\n\\nCreativity isn’t about paying your local print shop to pull together a flyer with your logo on it, or using a WordPress template to build your long-overdue website. They might be tactics that you use, but they’re not what creativity is really about.\\n\\nTrue creative thinking pulls together everything you know about your business, your goals and your customers into a single, cohesive package that cuts through, connects and resonates. Creativity distills everything down to the right words, images and design so that your marketing collateral has the right impact. No business can afford to skimp on this stage because getting creativity right means you’ll get the results you’re really after: maximum return on your marketing investment.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44863,48403,1,'The 6 steps of content creation','2021-09-27 23:02:00','2021-09-27 23:02:00','5326d8c2-9eca-4326-9a0e-8b57f16bb42d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-92RCseTSp0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"You know what your business is about. You’ve nailed down your story. You’ve worked out who you want to talk to.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Now you need to add some real value.\\n\\nTime-poor organisations need their content to work across different channels online—including websites, e-newsletters, blogs and across social media. One way to add value to your existing, more sales-focused content is through content curation. Content curation means finding useful content online, curating it for your audience and re-telling it in your voice and with your advice.\\n\\n##### **Here’s how to optimise, write and curate content for your target audience.**\\n\\n###### **Defining your goals**\\n\\nEvery good plan starts with defining what it’s trying to achieve. How do you want your content to define your business? What are you offering your target market? Do you want to be a thought leader in your particular area?\\n\\nContent curation is about meeting your customers where they are and offering them something they’re not getting elsewhere. It’s about finding, gathering and sharing information of value with them; positioning your business and brand as an authority both with original content—your sales offering and business learnings—and information you’ve found and shared online. Participating in conversations that are happening about your field leads to more engagement with your target market, the ultimate goal being to give your brand a voice of value that will see your audience come back again and again for your offering.\\n\\n###### **Getting started**\\n\\nIt’s important to remember that well-executed content curation isn’t about regurgitating content that was already published. Instead, it’s your business’ personal re-telling of a story. As Susan Gunelius wrote for Forbes, the human element of content curation is what makes curated content compelling.\\n\\nTherefore, when offering your audience valuable content, remember to tell your story. What are you saying that’s different? What do you know that others might not? Involve your whole team—not just marketing and sales—and that story will evolve to give your business a truly useful and unique voice.\\n\\n###### **Finding content**\\n\\nHere’s where you get amongst it!\\n\\nWant to know where your target market is looking for information online? Go exploring! Ask them! Discover for yourself where the good stories are being shared. Find out what topics matter to your goals and audience, and go after them.\\n\\nIntegrating content curation into your broader marketing strategy is the way to go here—it legitimises the exercise and gets your team thinking about the value of your brand and how they can add to it. The best place to start is probably your social media accounts. Valuable content is being shared every day on platforms like Facebook, Twitter and LinkedIn. There are also Google alerts and news aggregate sites that can be set up with your special business needs in mind.\\n\\n###### **Be authentic to find your voice**\\n\\nThere is nothing like the instant world of social media to add value and timeliness to your content. Social media has changed the term ‘sharing’ forever, and the opportunities for your brand are endless. It’s important to add your own value to social content—as Mark Lerner says, if you just \'retweet\', or share an article without including your own voice in the post, you’ll fail to distinguish yourself from everyone else who shared that content.\\n\\nHow do you find your voice? Authentically, of course! Offer your opinion and add your advice in areas where you are confident. Try to be friendly and informative, and adopt an approachable tone. Not so confident? Ask questions! Get your community talking and they’ll come back to you.\\n\\n###### **Context and thought leadership**\\n\\nGood content curation provides your audience with context and convenience—that means filtering and explaining what you find online, and rewording it in your voice so it’s useful to them. You don’t always need to be selling, but you do always need to be mindful of your brand and of offering real value. Knowing who your market is and writing in your ‘voice’ allows you to, as J-P De Clerck says, inform, educate, entertain and engage target audiences.\\n\\n###### **Where to share**\\n\\nThere are many ways to share curated content, but the best way is in a mix of your existing ‘sales’ content. E-newletters and blogs offer an opportunity to share curated and original content, and social media is the most instant way to add your voice to a new idea, and also probably the first place your audience will find you. They’ll also find your website, so don’t forget about the curated content opportunities there. Always remember that you should be providing useful information, not just repeating content or working on the hard sell.\\n\\nContent curation is convenient, but it’s also an important opportunity to add value, develop a business voice and grow an online community. What do you think about content curation? Has it worked for you? Got any tips? Let us know.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44865,48405,1,'B2B is dead','2021-09-27 23:02:16','2021-09-27 23:02:16','2aa81daa-8a23-49aa-abc4-6977117da15e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-luIsqIjBj1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"As deaths go, it was a quiet one. Few people knew of its demise.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But there it lay still: the artificial divide between B2B and B2C marketing, gone forever.\\n\\nWhy bother lamenting the dead? Dare I say, it’s good riddance to a dodgy invention.\\n\\nThe idea that marketing business-to-business took entirely different skills and strategies to talking to consumers has its roots back in the early Noughties. The notion, which most marketers sadly still hold, was that because the volume of B2B transactions is so much higher than B2C—if you count every transaction required along a manufacturing supply chain, for example—then B2B branding requirements were stronger, too.\\n\\nConversely, the B2C belief held that the consumers of the world needed entirely different marketing strategies to convince them to open their wallets.\\n\\nTrue, where they differ most is in the justification of purchases. In B2C land, I need to convince myself why I should buy yet another pair of red shoes. (It’s a short discussion.) In B2B, I might be lobbying the board to invest in an expensive new CRM system.\\n\\nBut the truth is both groups share more similarities than differences.\\n\\nYour customers—be they businesses, consumers or both—have similar emotional and logical requirements that must be met. The relationship lifecycle between a purchaser and a brand exists with businesses and consumers alike. Both groups also frequent the same social media spheres, are Google-happy and web-savvy, and require strong brand confidence in order to purchase.\\n\\nThe illusion that you’re selling to a company in B2B should be seen for what it is. In retail or in business marketing, you’re selling to individuals. And each wants to feel that you get them.\\n\\n##### **Long live H2H.**\\n\\nWhich is where yet another acronym is starting to make a play: H2H, or human-to-human marketing.\\n\\nIt espouses the belief that we all, business and retail customers alike, are looking for connection, inclusion and to be understood. If you take that as your starting point—and not your burning need to produce another brochure—then the marketing toolbox available to your business automatically grows.\\n\\nIt means the vast strategies already out there, like relationship marketing and continuous touchpoints, become as relevant to a retail customer as to the business that buys your widgets. And the traditional B2C tools like social media become far more relevant B2B because they help build connections better than a sterile product flyer.\\n\\n##### **Let’s make H2H practical.**\\n\\n**1. Open your horizons**\\n\\nSwitching your mindset to focusing on the individual, human needs of your market means you can open your marketing to all sorts of potential tools. Just because you run a hair salon doesn’t mean you can’t start sending out a monthly email newsletter—if your customers are the kind of people that like to know more about you. And just because you’re an accountant doesn’t mean you can’t lead an industry group on LinkedIn or advertise on Facebook—if that’s where you’ll find the types of sales you want. Think about your customers, and let their needs lead you.\\n\\n**2. Make your customers feel**\\n\\nSales overwhelmingly come from relationships in my business, so meeting my clients’ emotional needs is a no-brainer. If my clients are happy, they’ll stay.\\n\\nBut even if your sales rely heavily on good old-fashioned foot traffic, it’s relationships that will lure them and keep them. So, in every tool you use to get to market, make sure you get the emotional kicker in. Empathise and prove you understand their needs.\\n\\n**3. Ask your employees what they think**\\n\\nIt’s one thing to make marketing decisions from an ivory tower. Chances are it’s your staff who really know how your clients think, or how your customers behave. So get their ideas and integrate it into your marketing. Let them drive your innovation.\\n\\n**4. Finally, listen to your customers**\\n\\nThere is marketing gold in every intentional conversation you have with a customer. Ask the ‘why’ that follows the tough questions: Do you feel safe with my business? Do you like dealing with us? Would you refer us to your friends? The answers will revolutionise how you think about marketing to your customers.\\n\\n---\\n\\n*Written for the February 2014 issue of Inform, the monthly magazine of the Chamber of Commerce and Industry in Queensland.*\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44866,48406,1,'8 important marketing questions for every business','2021-09-27 23:02:26','2021-09-27 23:02:26','e805fcde-6ce4-4afa-927e-0d3c249d4d35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VzKHBkk2Ca\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Marketing communications in business is all about attracting and retaining customers. We do it for dozens of Australian companies every day, and the bigger the company, the tighter the marketing strategy governing their communications—because they know customers are fickle, and competitors are waiting to pounce on any weakness.\\n\\nThe same philosophy of tight strategy and execution should drive your business. Effective marketing communications must be an essential part of your core business strategy to ensure you’re pushing the same, consistent message through every aspect of your organisation.\\n\\nBut it’s not always so easy to go it alone. If you’re in a small business and know you need to step up, here’s a handy checklist of the marketing questions you need to answer to keep your customers in tune with you—and your competitors at bay.\\n\\n##### **Who are my existing customers?**\\n\\nThe best way to sell to your customers is to first understand who they are, why they buy from you, and what value they expect from you. And the best way to learn this? Listen to them. Marketing communication begins with good customer relationships, which are almost like your own form of market research.\\n\\nWhen you talk to your customers, you’ll learn things like your customers’ age, income, education, how often they buy from you, what their buying triggers are and how they’re influenced. This is a valuable step in honing your marketing message, so don’t be tempted to think you already know the information if you’ve been in business for a while. Every customer conversation will add another layer to your understanding.\\n\\n##### **Who are my potential customers?**\\n\\nIt’s just as critical to have a very clear understanding of your desired target market and new customers. Get as detailed as you possibly can. The more specific you are, the better you can develop messages for them.\\n\\n##### **Who are my competitors?**\\n\\nUnderstanding who competes for your customers—and what they’re offering—is vital. Get very familiar with every aspect of your competitors’ businesses—including their reputation, prices and marketing material. This knowledge will help you position your marketing communication relative to how your customers are already being targeted and differentiate yourself in the market.\\n\\n##### **What am I trying to achieve?**\\n\\nUnderstanding why you’re communicating with your customers is essential. Are you purely after quick wins? Or preparing the ground for a new product or stronger relationships? The rationale and potential value for any marketing effort should determine how much money you need to spend, and where it’s best spent.\\n\\n##### **What am I trying to say?**\\n\\nThis is where everything comes together. You must now develop clear, key messages that talk up your product or service, meet the expectations and needs of your new and existing customers, and differentiate yourself from your competition.\\n\\nMake sure you have no more than five key messages—in fact, the fewer the better—and make them specific and meaningful. That’s how you stand out in the crowded market. Ensure your customers are aware of your business and its products or services, and why they should care (e.g. What’s in it for them? And what are the true benefits?). These benefits should be factual and real. It’s important not to overload customers with information, but rather to be clear and articulate.\\n\\nAll of your marketing communications should include a strong call to action: What is it that you want customers to do once they’ve interacted with you? Leave them in no doubt and make it easy for them.\\n\\n##### **What’s the right channel?**\\n\\nThere’s no doubt that it’s a busy marketplace when it comes to finding the perfect place to share your marketing messages. The challenge here is in focusing and narrowing your communication—and finding the right time and place to connect with your customers.\\n\\nMany marketers are now jumping on social media networks, but that might not be where your customers can be found. It’s important that you understand how and when they want to hear from you, and use that information to foster a true customer relationship.\\n\\n##### **Is my strategy integrated?**\\n\\nCommunicating in an integrated way across all channels (such as website, emails and brochures) means your brand will become better known and understood. Integration means that every time your customers hear from you, they get the same feel for who you are. By creating consistent, strong marketing communications, your customers will identify and remember you into the future.\\n\\n##### **Finally: Am I communicating with genuine creativity?**\\n\\nCreativity isn’t about paying your local print shop to pull together a flyer with your logo on it, or using a WordPress template to build your long-overdue website. They might be tactics that you use, but they’re not what creativity is really about.\\n\\nTrue creative thinking pulls together everything you know about your business, your goals and your customers into a single, cohesive package that cuts through, connects and resonates. Creativity distills everything down to the right words, images and design so that your marketing collateral has the right impact. No business can afford to skimp on this stage because getting creativity right means you’ll get the results you’re really after: maximum return on your marketing investment.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44868,48408,1,'What the artist breaks','2021-09-27 23:03:06','2021-09-27 23:03:06','132e2051-06a5-4bb2-a2e1-1e4ccce14f3d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QjbPRQcxAH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"It’s arguable that copywriting is at the heart of all advertising and marketing today. We remember taglines and recall jingles; and copy is the beginning of most brand stories. But, boy, is it fantastic to look back at a time when it really was all about the words.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Bill Bernbach was the founding creative director of legendary Manhattan ad agency Doyle Dane Bernbach (DDB). He came out with quotes like:\\n\\n“Advertising is fundamentally persuasion and persuasion happens to be not a science, but an art”, and\\n\\n“Word of mouth is the best medium of all”, and\\n\\n“Rules are what the artist breaks; the memorable never emerged from a formula.”\\n\\nThat’s really provocative stuff that makes you nod your head at the truth and simple power of his thinking—and imagine how inspiring but uncompromising a boss he would have been. What an exhilarating time to be writing.\\n\\nBernbach not only had a way with a turn of phrase, but he also really set up the structure of creative teams for marketing and advertising, and was, of course, part of the inspiration for Mad Men. But mostly, he was a writer. And what a writer he was. His firm revolutionised advertising copy and laid out the early foundations for brand storytelling through engaging narrative and brand persona development. We can, and have, all learned from these guys.\\n\\nIn the 1960s, DDB took on Volkswagen as a client and began creating a series of print ads that referred to the VW as a “lemon” and encouraged consumers to “think small”. The copy, by the incomparable Julian Koenig, starts out saying “This Volkswagen missed the boat. The chrome strip on the glove compartment is blemished, and must be replaced.” Not exactly sales speak.\\n\\n##### **It was funny. It was clever. And it was ground-breaking.**\\n\\nFor the rest of the decade, VW kept their unconventional campaign rolling. DDB’s strategy of turning seeming faults into benefits was a huge hit. One ad didn\'t even include a picture of the little lemon: “No point in showing you the 1962 Volkswagen. It still looks the same.”\\n\\nMuch has been written about the ads, and you can take a look at a bunch of them here if you like. It was ranked the best advertising campaign of the twentieth century by Ad Age, and it deserves the title. This sort of brand bravery is rare and may be a little of its time, too. The truth is that the power is all right there, in the copy, which exists to inspire us. Last words to Mr Bernbach himself:\\n\\nYou can say the right thing about a product and nobody will listen. You\'ve got to say it in such a way that people will feel it in their gut. Because if they don\'t feel it, nothing will happen.\\n\\nWhat is your brand really saying?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44870,48410,1,'Righting writing','2021-09-27 23:03:26','2021-09-27 23:03:26','d349082d-d7bc-4339-a988-7629cd86ea39',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WiIX62eIQK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Uni was when I found my purpose in life. A passionate lecture on the very first day was my ‘eureka!’ moment that then propelled me through a double major in communications, 10 years in a newsroom and countless more in corporate writing.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"But it all could have come tumbling down in the stern and unyielding face of just one lecturer: Ros Petelin.\\n\\nLike most kids who gravitated toward the arts in school, I’d been feted as a bit of a writer. I wrote installments of unreasonably sappy romance novels late at night and distributed copies to peers on the train the next morning. I won an academic scholarship for my writing (although nearly lost it many times for my maths).\\n\\nIt was left to Ros—now an associate professor in the School of English, Media Studies and Art History at UQ, and a well-respected writer in business communication—to tear my self-made kingdom down, word by word, until I could rebuild it on more solid foundations.\\n\\nHere’s what I now know to be true about writing effective business words.\\n\\nThanks, Ros. I hope you’re grading more kindly these days.\\n\\n##### **Trick #1: Talk like your audience**\\n\\nIf you’re writing for your business, forget formal words and don’t allow fear of failure—or grammar—to stop you writing. Instead, a trick I’ve long used in business writing is to hear a typical customer’s voice in my head, and then to write like they talk.\\n\\nLike acting, the craft of writing involves immersing yourself in the character. In this case, the character is your customer—and by sounding like them, you’re more likely to draw them in.\\n\\n##### **Trick #2: WIRMI**\\n\\nI have Ros and her fondness for US author Linda Flowers to thank for WIRMI. The acronym ‘What I Really Mean Is’ is extraordinarily helpful in bringing clarity to business writing, and it’s a tool I still use daily.\\n\\nYou can use WIRMI as a catchphrase at any point of your writing—when you’re trying to work out exactly what you want to say, and when you’ve written something and you need to ensure it says what you want, clearly and well.\\n\\nIf you’re not comfortable with writing—and plenty of people would rather line up for a root canal than write an essay—this is a great way to check you’re on track.\\n\\n##### **Trick #3: So nice you read it thrice**\\n\\nFinally, if you’re satisfied that what you’ve written is the best you can do, read it through once more—and then put it down.\\n\\nAfter a few hours—or a few days, if you have the time—pick it up and critically read it again. Make a few adjustments. Delete a few words. Then hide it again.\\n\\nOn the third go, after another break, pretend you’re the customer and read it aloud to yourself as though you’re seeing it for the first time. If you have no more changes to make to it, it’s good to go. But chances are, you’ll think of a few.\\n\\nWhy at least three reads? Professional writers and editors know better than anyone that great writing comes from multiple drafts, not a single session of inspiration. Taking a break in between drafts—although hard to do in a busy work day—can be the key to achieving great results.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44871,48411,1,'Top 20 tips for SEO','2021-09-27 23:12:38','2021-09-27 23:14:08','e136685d-7852-4a58-be87-311635863582',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-P9HDvjQfFI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"GOOD SEO STARTS WITH A BIT OF DIY.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Sure, there are loads of experts and agencies out there that specialise in the field, and many of them do a great job.\\n\\nBut there’s actually plenty you can do yourself before you even need to look for an external supplier to help with your SEO.\\n\\nTo get you started on your next SEO DIY project, we’ve put together a top 20 checklist.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":\"1\",\"fields\":{\"gridItems\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\",\"new6\",\"new7\",\"new8\",\"new9\",\"new10\",\"new11\",\"new12\",\"new13\",\"new14\",\"new15\",\"new16\",\"new17\",\"new18\",\"new19\",\"new20\"],\"blocks\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"1. Do your research\",\"text\":\"Identify key search terms, words and phrases, and check out competitors’ sites.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"2. Work out where you are now\",\"text\":\"As soon as possible, keep a regular record of where your site currently ranks in search results, using various words, phrases and questions.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"3. Work out where you want to be\",\"text\":\"Define your goals early on so you can measure your progress and adjust your strategy as you go along.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"4. Make your content relevant\",\"text\":\"Search engines provide the most relevant results to a searcher’s query, so write content based on what people might search for.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"5. Improve the quality of your content\",\"text\":\"Publish helpful, useful articles, videos and other types of media that people will want to engage with.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"6. Think about user experience\",\"text\":\"Make sure your site is easy to navigate, with plenty of relevant internal links to keep users on your page for longer.\"}},\"new7\":{\"type\":\"6\",\"fields\":{\"heading\":\"7. Ensure your site is responsive\",\"text\":\"Is your website designed to resize for viewing on desktop, tablet and mobile devices? It should be.\"}},\"new8\":{\"type\":\"6\",\"fields\":{\"heading\":\"8. Include plenty of internal links\",\"text\":\"This helps pushes traffic around your site, building higher ‘trust signals’ for Google, and gives your audience more to read.\"}},\"new9\":{\"type\":\"6\",\"fields\":{\"heading\":\"9. Write meta descriptions\",\"text\":\"This short paragraph of text under your page’s URL in search results can really improve the chance of someone clicking on it.\"}},\"new10\":{\"type\":\"6\",\"fields\":{\"heading\":\"10. Include title tags\",\"text\":\"These few keywords describing the page and your brand name tell visitors and search engines what your site is about in the most succinct way possible.\"}},\"new11\":{\"type\":\"6\",\"fields\":{\"heading\":\"11. Tag your images\",\"text\":\"Search engines cannot ‘see’ images but they can ‘read’, so it’s important to describe any pictures you upload to your site.\"}},\"new12\":{\"type\":\"6\",\"fields\":{\"heading\":\"12. Create evergreen content\",\"text\":\"More thoughtful and practical advice-based articles can create better results over the long term. Top 20 list, anyone?\"}},\"new13\":{\"type\":\"6\",\"fields\":{\"heading\":\"13. Consider your domain name\",\"text\":\"Having a ‘keyword-rich’ domain name can improve ranking but can also lead to closer scrutiny by search engines.\"}},\"new14\":{\"type\":\"6\",\"fields\":{\"heading\":\"14. Think about headlines\",\"text\":\"Make headlines as snappy, attractive and descriptive as possible, and stay away from clickbait.\"}},\"new15\":{\"type\":\"6\",\"fields\":{\"heading\":\"15. Turn on comments\",\"text\":\"This helps generate a community of engaged users and, whatever their opinion of your content, you’ll know it’s being read.\"}},\"new16\":{\"type\":\"6\",\"fields\":{\"heading\":\"16. Go social\",\"text\":\"By using social media channels as a genuine way to interact with customers, you can help generate interest in your brand and drive traffic to your site.\"}},\"new17\":{\"type\":\"6\",\"fields\":{\"heading\":\"17. Watch your on-site advertising\",\"text\":\"Intrusive ads can destroy the pleasure of viewing your content and also slow your site down (not good for SEO).\"}},\"new18\":{\"type\":\"6\",\"fields\":{\"heading\":\"18. Avoid keyword stuffing\",\"text\":\"Some search engines will actually penalise you for obviously overusing certain keywords on your pages.\"}},\"new19\":{\"type\":\"6\",\"fields\":{\"heading\":\"19. Be aware of duplicated content\",\"text\":\"If two sites publish identical content, search engines will only index one of those pages.\"}},\"new20\":{\"type\":\"6\",\"fields\":{\"heading\":\"20. Don’t hide links and text\",\"text\":\"Doing things like hiding white keyword-stuffed text on a white background or hiding a link in a full stop is likely to be punished by search engines.\"}}}}}},\"new4\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Follow these tips and you’ll be well on your way up the rankings in no time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44873,48413,1,'SEO illustration of people using Google search','2021-09-27 23:53:29','2021-10-04 23:44:22','0352f499-8868-4013-a4a6-1f04bacddb7f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/SEO.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x3072_crop_center-center_82_line/SEO.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/SEO.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2560_crop_center-center_82_line/SEO.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/SEO.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2048_crop_center-center_82_line/SEO.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/SEO.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/SEO.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/SEO.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x3072_crop_center-center_82_line/SEO.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/SEO.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2560_crop_center-center_82_line/SEO.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/SEO.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2048_crop_center-center_82_line/SEO.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/SEO.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/SEO.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"3072\":3072,\"1280\":1280,\"2560\":2560,\"1024\":1024,\"2048\":2048,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6250\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAAIDBv/EAB8QAAICAwACAwAAAAAAAAAAAAECAwQAERITISIxsf/EABYBAQEBAAAAAAAAAAAAAAAAAAEAAv/EABoRAQEBAAMBAAAAAAAAAAAAAAECAAMhMRH/2gAMAwEAAhEDEQA/ANtdtipGG4aRifSqNnDt8woe4gvRTy+NVcNrfyUj9y7PdfRetO3RezJ0JOQPrNQsLs8kFhkr0rEN0SGRDFzojXvClpxEMu//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#509cb3\",\"#dfe6d4\",\"#e98041\",\"#917573\",\"#baa87b\"],\"lightness\":62,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44874,48414,1,'SEO illustration of people using Google search_2','2021-09-27 23:53:36','2021-10-04 23:55:12','eb93b4b4-fe5a-4c30-ae52-5a1c59c812fd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/SEO_2021-09-27-235336_kuwi.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x3072_crop_center-center_82_line/SEO_2021-09-27-235336_kuwi.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/SEO_2021-09-27-235336_kuwi.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2560_crop_center-center_82_line/SEO_2021-09-27-235336_kuwi.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/SEO_2021-09-27-235336_kuwi.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2048_crop_center-center_82_line/SEO_2021-09-27-235336_kuwi.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/SEO_2021-09-27-235336_kuwi.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/SEO_2021-09-27-235336_kuwi.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/SEO_2021-09-27-235336_kuwi.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x3072_crop_center-center_82_line/SEO_2021-09-27-235336_kuwi.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/SEO_2021-09-27-235336_kuwi.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2560_crop_center-center_82_line/SEO_2021-09-27-235336_kuwi.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/SEO_2021-09-27-235336_kuwi.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2048_crop_center-center_82_line/SEO_2021-09-27-235336_kuwi.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/SEO_2021-09-27-235336_kuwi.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/SEO_2021-09-27-235336_kuwi.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"3072\":3072,\"1280\":1280,\"2560\":2560,\"1024\":1024,\"2048\":2048,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6250\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAAIDBv/EAB8QAAICAwACAwAAAAAAAAAAAAECAwQAERITISIxsf/EABYBAQEBAAAAAAAAAAAAAAAAAAEAAv/EABoRAQEBAAMBAAAAAAAAAAAAAAECAAMhMRH/2gAMAwEAAhEDEQA/ANtdtipGG4aRifSqNnDt8woe4gvRTy+NVcNrfyUj9y7PdfRetO3RezJ0JOQPrNQsLs8kFhkr0rEN0SGRDFzojXvClpxEMu//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#509cb3\",\"#dfe6d4\",\"#e98041\",\"#917573\",\"#baa87b\"],\"lightness\":62,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44875,48415,1,'Top 20 tips for SEO','2021-09-28 00:16:19','2021-09-28 00:16:19','7db0cfb2-5077-4172-a7f7-78872708e66f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-P9HDvjQfFI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"GOOD SEO STARTS WITH A BIT OF DIY.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Sure, there are loads of experts and agencies out there that specialise in the field, and many of them do a great job.\\n\\nBut there’s actually plenty you can do yourself before you even need to look for an external supplier to help with your SEO.\\n\\nTo get you started on your next SEO DIY project, we’ve put together a top 20 checklist.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":\"1\",\"fields\":{\"gridItems\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\",\"new6\",\"new7\",\"new8\",\"new9\",\"new10\",\"new11\",\"new12\",\"new13\",\"new14\",\"new15\",\"new16\",\"new17\",\"new18\",\"new19\",\"new20\"],\"blocks\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"1. Do your research\",\"text\":\"Identify key search terms, words and phrases, and check out competitors’ sites.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"2. Work out where you are now\",\"text\":\"As soon as possible, keep a regular record of where your site currently ranks in search results, using various words, phrases and questions.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"3. Work out where you want to be\",\"text\":\"Define your goals early on so you can measure your progress and adjust your strategy as you go along.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"4. Make your content relevant\",\"text\":\"Search engines provide the most relevant results to a searcher’s query, so write content based on what people might search for.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"5. Improve the quality of your content\",\"text\":\"Publish helpful, useful articles, videos and other types of media that people will want to engage with.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"6. Think about user experience\",\"text\":\"Make sure your site is easy to navigate, with plenty of relevant internal links to keep users on your page for longer.\"}},\"new7\":{\"type\":\"6\",\"fields\":{\"heading\":\"7. Ensure your site is responsive\",\"text\":\"Is your website designed to resize for viewing on desktop, tablet and mobile devices? It should be.\"}},\"new8\":{\"type\":\"6\",\"fields\":{\"heading\":\"8. Include plenty of internal links\",\"text\":\"This helps pushes traffic around your site, building higher ‘trust signals’ for Google, and gives your audience more to read.\"}},\"new9\":{\"type\":\"6\",\"fields\":{\"heading\":\"9. Write meta descriptions\",\"text\":\"This short paragraph of text under your page’s URL in search results can really improve the chance of someone clicking on it.\"}},\"new10\":{\"type\":\"6\",\"fields\":{\"heading\":\"10. Include title tags\",\"text\":\"These few keywords describing the page and your brand name tell visitors and search engines what your site is about in the most succinct way possible.\"}},\"new11\":{\"type\":\"6\",\"fields\":{\"heading\":\"11. Tag your images\",\"text\":\"Search engines cannot ‘see’ images but they can ‘read’, so it’s important to describe any pictures you upload to your site.\"}},\"new12\":{\"type\":\"6\",\"fields\":{\"heading\":\"12. Create evergreen content\",\"text\":\"More thoughtful and practical advice-based articles can create better results over the long term. Top 20 list, anyone?\"}},\"new13\":{\"type\":\"6\",\"fields\":{\"heading\":\"13. Consider your domain name\",\"text\":\"Having a ‘keyword-rich’ domain name can improve ranking but can also lead to closer scrutiny by search engines.\"}},\"new14\":{\"type\":\"6\",\"fields\":{\"heading\":\"14. Think about headlines\",\"text\":\"Make headlines as snappy, attractive and descriptive as possible, and stay away from clickbait.\"}},\"new15\":{\"type\":\"6\",\"fields\":{\"heading\":\"15. Turn on comments\",\"text\":\"This helps generate a community of engaged users and, whatever their opinion of your content, you’ll know it’s being read.\"}},\"new16\":{\"type\":\"6\",\"fields\":{\"heading\":\"16. Go social\",\"text\":\"By using social media channels as a genuine way to interact with customers, you can help generate interest in your brand and drive traffic to your site.\"}},\"new17\":{\"type\":\"6\",\"fields\":{\"heading\":\"17. Watch your on-site advertising\",\"text\":\"Intrusive ads can destroy the pleasure of viewing your content and also slow your site down (not good for SEO).\"}},\"new18\":{\"type\":\"6\",\"fields\":{\"heading\":\"18. Avoid keyword stuffing\",\"text\":\"Some search engines will actually penalise you for obviously overusing certain keywords on your pages.\"}},\"new19\":{\"type\":\"6\",\"fields\":{\"heading\":\"19. Be aware of duplicated content\",\"text\":\"If two sites publish identical content, search engines will only index one of those pages.\"}},\"new20\":{\"type\":\"6\",\"fields\":{\"heading\":\"20. Don’t hide links and text\",\"text\":\"Doing things like hiding white keyword-stuffed text on a white background or hiding a link in a full stop is likely to be punished by search engines.\"}}}}}},\"new4\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Follow these tips and you’ll be well on your way up the rankings in no time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44877,48417,1,'Ruth Larwill - Brand Audit Submission - 28 Sep, 2021','2021-09-28 01:34:25','2021-09-28 02:00:46','d61291bf-81fe-4c86-a827-622edfc1b377',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To provide healing, hope and purpose to survivors of trafficking','survivors of trafficking','A foundation of Trust\nProfessionalism\nFun\nFaith\nLove\nRespect','We show the love of God to everyone\nWe believe all people are equal and deserve respect\nWe believe in excellence and professionalism\nWe have fun everyday in many ways!\nWe show agape love.\nEverything is formed a foundation of trust .','We are humbled to be part of what God is doing to show the most vulnerable they are loved and seen.','Our donors also feel God\'s hand over Bloom or if not Christian - then something divinely magical. They love seeing that there is hope for the broken hearted in a world that is very broken.','Journeying with young women who like a lotus have had to rise up through the mud to \'bloom\' and become everything God intended.','Hope: in every aspect of life - career, family, self-esteem, spirituality...\nHealing: Trauma-informed care\nPurpose: our beneficiaries can discover a rich, full and meaningful life in the midst of hardship and complex trauma.\nThe one - we do quality, not quantity\nCreativity & Beauty is a part of our brand - photography, font, images, smiles, cafe, uniforms, everything we do (our beneficiaries have seen so much ugliness - it\'s their time for beauty).\nExcellence - we do everything with excellence and professionalism','God brought Bloom into being and we are stewards and shepherds.','Growing our financial base so that more survivors can be helped and more donors can know the hope that is going on at Bloom!','I don\'t get this question','Beauty, fun, hope, God.\nPrivacy and dignity - Our beneficiaries have been exploited their whole lives and we will not exploit them further. Everything must have the \'voice of \'dignity and respect\'.','Anti-trafficking\nGlobal development','IJM, AIM','AIM to a point\nSari Bari to a point\nIJM to a point\nFreeset global\nInternational Sanctuary','Our beneficiaries and donors get to find meaning in this world of brokenness.','a fresh more modern look\nAppears on website, facebook, newsletters, church',NULL,NULL,NULL,NULL,'Sharing in what God is doing around the world.\nHope\nGood stories','???','The entire goal of rebranding is to allow us freedom to share the story of Bloom without fear of further exploiting our beneficiaries while allowing us a bigger platform to raise funds to help more girls.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44878,48418,1,'Ruth Larwill - Brand Audit Submission - 28 Sep, 2021','2021-09-28 01:34:25','2021-09-28 01:34:25','a63ff034-fab3-4254-948a-90b786656407',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To provide healing, hope and purpose to survivors of trafficking','survivors of trafficking','A foundation of Trust\nProfessionalism\nFun\nFaith\nLove\nRespect','We show the love of God to everyone\nWe believe all people are equal and deserve respect\nWe believe in excellence and professionalism\nWe have fun everyday in many ways!\nWe show agape love.\nEverything is formed a foundation of trust .',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44879,48419,1,'Ruth Larwill - Brand Audit Submission - 28 Sep, 2021','2021-09-28 01:44:19','2021-09-28 01:44:19','972c78ee-075c-4444-b4b9-8475b1c9bfe0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To provide healing, hope and purpose to survivors of trafficking','survivors of trafficking','A foundation of Trust\nProfessionalism\nFun\nFaith\nLove\nRespect','We show the love of God to everyone\nWe believe all people are equal and deserve respect\nWe believe in excellence and professionalism\nWe have fun everyday in many ways!\nWe show agape love.\nEverything is formed a foundation of trust .','We are humbled to be part of what God is doing to show the most vulnerable they are loved and seen.','Our donors also feel God\'s hand over Bloom or if not Christian - then something divinely magical. They love seeing that there is hope for the broken hearted in a world that is very broken.','Journeying with young women who like a lotus have had to rise up through the mud to \'bloom\' and become everything God intended.','Hope: in every aspect of life - career, family, self-esteem, spirituality\nHealing: Trauma-informed care\nPurpose: our beneficiaries can discover a rich, full and meaningful life in the midst of hardship and complex trauma.\nThe one - we do quality, not quantity\nCreativity & Beauty is a part of our brand - photography, font, images, smiles, cafe, uniforms, everything we do (our beneficiaries have seen so much ugliness - it\'s their time for beauty).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44880,48420,1,'Ruth Larwill - Brand Audit Submission - 28 Sep, 2021','2021-09-28 01:52:10','2021-09-28 01:52:10','a9f19aaa-b2fa-4ac0-b700-de1de74fa2fb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To provide healing, hope and purpose to survivors of trafficking','survivors of trafficking','A foundation of Trust\nProfessionalism\nFun\nFaith\nLove\nRespect','We show the love of God to everyone\nWe believe all people are equal and deserve respect\nWe believe in excellence and professionalism\nWe have fun everyday in many ways!\nWe show agape love.\nEverything is formed a foundation of trust .','We are humbled to be part of what God is doing to show the most vulnerable they are loved and seen.','Our donors also feel God\'s hand over Bloom or if not Christian - then something divinely magical. They love seeing that there is hope for the broken hearted in a world that is very broken.','Journeying with young women who like a lotus have had to rise up through the mud to \'bloom\' and become everything God intended.','Hope: in every aspect of life - career, family, self-esteem, spirituality...\nHealing: Trauma-informed care\nPurpose: our beneficiaries can discover a rich, full and meaningful life in the midst of hardship and complex trauma.\nThe one - we do quality, not quantity\nCreativity & Beauty is a part of our brand - photography, font, images, smiles, cafe, uniforms, everything we do (our beneficiaries have seen so much ugliness - it\'s their time for beauty).\nExcellence - we do everything with excellence and professionalism','God brought Bloom into being and we are stewards and shepherds.','Growing our financial base so that more survivors can be helped and more donors can know the hope that is going on at Bloom!','I don\'t get this question','Beauty, fun, hope, God.\nPrivacy and dignity - Our beneficiaries have been exploited their whole lives and we will not exploit them further. Everything must have the \'voice of \'dignity and respect\'.','Anti-trafficking\nGlobal development','IJM, AIM','Sari Bari','To find meaning',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44881,48421,1,'Ruth Larwill - Brand Audit Submission - 28 Sep, 2021','2021-09-28 01:52:58','2021-09-28 01:52:58','7c2a6dd4-7d1c-4bae-9530-7d2a12322866',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To provide healing, hope and purpose to survivors of trafficking','survivors of trafficking','A foundation of Trust\nProfessionalism\nFun\nFaith\nLove\nRespect','We show the love of God to everyone\nWe believe all people are equal and deserve respect\nWe believe in excellence and professionalism\nWe have fun everyday in many ways!\nWe show agape love.\nEverything is formed a foundation of trust .','We are humbled to be part of what God is doing to show the most vulnerable they are loved and seen.','Our donors also feel God\'s hand over Bloom or if not Christian - then something divinely magical. They love seeing that there is hope for the broken hearted in a world that is very broken.','Journeying with young women who like a lotus have had to rise up through the mud to \'bloom\' and become everything God intended.','Hope: in every aspect of life - career, family, self-esteem, spirituality...\nHealing: Trauma-informed care\nPurpose: our beneficiaries can discover a rich, full and meaningful life in the midst of hardship and complex trauma.\nThe one - we do quality, not quantity\nCreativity & Beauty is a part of our brand - photography, font, images, smiles, cafe, uniforms, everything we do (our beneficiaries have seen so much ugliness - it\'s their time for beauty).\nExcellence - we do everything with excellence and professionalism','God brought Bloom into being and we are stewards and shepherds.','Growing our financial base so that more survivors can be helped and more donors can know the hope that is going on at Bloom!','I don\'t get this question','Beauty, fun, hope, God.\nPrivacy and dignity - Our beneficiaries have been exploited their whole lives and we will not exploit them further. Everything must have the \'voice of \'dignity and respect\'.','Anti-trafficking\nGlobal development','IJM, AIM','AIM to a point\nSari Bari to a point\nIJM to a point','To find meaning',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44882,48422,1,'Ruth Larwill - Brand Audit Submission - 28 Sep, 2021','2021-09-28 01:53:18','2021-09-28 01:53:18','4193c8bf-0bc4-43b1-ae26-41fbbcb14808',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To provide healing, hope and purpose to survivors of trafficking','survivors of trafficking','A foundation of Trust\nProfessionalism\nFun\nFaith\nLove\nRespect','We show the love of God to everyone\nWe believe all people are equal and deserve respect\nWe believe in excellence and professionalism\nWe have fun everyday in many ways!\nWe show agape love.\nEverything is formed a foundation of trust .','We are humbled to be part of what God is doing to show the most vulnerable they are loved and seen.','Our donors also feel God\'s hand over Bloom or if not Christian - then something divinely magical. They love seeing that there is hope for the broken hearted in a world that is very broken.','Journeying with young women who like a lotus have had to rise up through the mud to \'bloom\' and become everything God intended.','Hope: in every aspect of life - career, family, self-esteem, spirituality...\nHealing: Trauma-informed care\nPurpose: our beneficiaries can discover a rich, full and meaningful life in the midst of hardship and complex trauma.\nThe one - we do quality, not quantity\nCreativity & Beauty is a part of our brand - photography, font, images, smiles, cafe, uniforms, everything we do (our beneficiaries have seen so much ugliness - it\'s their time for beauty).\nExcellence - we do everything with excellence and professionalism','God brought Bloom into being and we are stewards and shepherds.','Growing our financial base so that more survivors can be helped and more donors can know the hope that is going on at Bloom!','I don\'t get this question','Beauty, fun, hope, God.\nPrivacy and dignity - Our beneficiaries have been exploited their whole lives and we will not exploit them further. Everything must have the \'voice of \'dignity and respect\'.','Anti-trafficking\nGlobal development','IJM, AIM','AIM to a point\nSari Bari to a point\nIJM to a point','To find meaning',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44883,48423,1,'Ruth Larwill - Brand Audit Submission - 28 Sep, 2021','2021-09-28 01:53:38','2021-09-28 01:53:38','6e684b63-689d-483d-8783-e18bdd7aac04',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To provide healing, hope and purpose to survivors of trafficking','survivors of trafficking','A foundation of Trust\nProfessionalism\nFun\nFaith\nLove\nRespect','We show the love of God to everyone\nWe believe all people are equal and deserve respect\nWe believe in excellence and professionalism\nWe have fun everyday in many ways!\nWe show agape love.\nEverything is formed a foundation of trust .','We are humbled to be part of what God is doing to show the most vulnerable they are loved and seen.','Our donors also feel God\'s hand over Bloom or if not Christian - then something divinely magical. They love seeing that there is hope for the broken hearted in a world that is very broken.','Journeying with young women who like a lotus have had to rise up through the mud to \'bloom\' and become everything God intended.','Hope: in every aspect of life - career, family, self-esteem, spirituality...\nHealing: Trauma-informed care\nPurpose: our beneficiaries can discover a rich, full and meaningful life in the midst of hardship and complex trauma.\nThe one - we do quality, not quantity\nCreativity & Beauty is a part of our brand - photography, font, images, smiles, cafe, uniforms, everything we do (our beneficiaries have seen so much ugliness - it\'s their time for beauty).\nExcellence - we do everything with excellence and professionalism','God brought Bloom into being and we are stewards and shepherds.','Growing our financial base so that more survivors can be helped and more donors can know the hope that is going on at Bloom!','I don\'t get this question','Beauty, fun, hope, God.\nPrivacy and dignity - Our beneficiaries have been exploited their whole lives and we will not exploit them further. Everything must have the \'voice of \'dignity and respect\'.','Anti-trafficking\nGlobal development','IJM, AIM','AIM to a point\nSari Bari to a point\nIJM to a point','To find meaning',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44884,48424,1,'Ruth Larwill - Brand Audit Submission - 28 Sep, 2021','2021-09-28 01:53:58','2021-09-28 01:53:58','891c2d0a-b342-45eb-9778-975b568f2e80',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To provide healing, hope and purpose to survivors of trafficking','survivors of trafficking','A foundation of Trust\nProfessionalism\nFun\nFaith\nLove\nRespect','We show the love of God to everyone\nWe believe all people are equal and deserve respect\nWe believe in excellence and professionalism\nWe have fun everyday in many ways!\nWe show agape love.\nEverything is formed a foundation of trust .','We are humbled to be part of what God is doing to show the most vulnerable they are loved and seen.','Our donors also feel God\'s hand over Bloom or if not Christian - then something divinely magical. They love seeing that there is hope for the broken hearted in a world that is very broken.','Journeying with young women who like a lotus have had to rise up through the mud to \'bloom\' and become everything God intended.','Hope: in every aspect of life - career, family, self-esteem, spirituality...\nHealing: Trauma-informed care\nPurpose: our beneficiaries can discover a rich, full and meaningful life in the midst of hardship and complex trauma.\nThe one - we do quality, not quantity\nCreativity & Beauty is a part of our brand - photography, font, images, smiles, cafe, uniforms, everything we do (our beneficiaries have seen so much ugliness - it\'s their time for beauty).\nExcellence - we do everything with excellence and professionalism','God brought Bloom into being and we are stewards and shepherds.','Growing our financial base so that more survivors can be helped and more donors can know the hope that is going on at Bloom!','I don\'t get this question','Beauty, fun, hope, God.\nPrivacy and dignity - Our beneficiaries have been exploited their whole lives and we will not exploit them further. Everything must have the \'voice of \'dignity and respect\'.','Anti-trafficking\nGlobal development','IJM, AIM','AIM to a point\nSari Bari to a point\nIJM to a point','To find meaning',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44885,48425,1,'Ruth Larwill - Brand Audit Submission - 28 Sep, 2021','2021-09-28 01:54:18','2021-09-28 01:54:18','d592c2cb-8faf-4388-9465-2062b92bd92b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To provide healing, hope and purpose to survivors of trafficking','survivors of trafficking','A foundation of Trust\nProfessionalism\nFun\nFaith\nLove\nRespect','We show the love of God to everyone\nWe believe all people are equal and deserve respect\nWe believe in excellence and professionalism\nWe have fun everyday in many ways!\nWe show agape love.\nEverything is formed a foundation of trust .','We are humbled to be part of what God is doing to show the most vulnerable they are loved and seen.','Our donors also feel God\'s hand over Bloom or if not Christian - then something divinely magical. They love seeing that there is hope for the broken hearted in a world that is very broken.','Journeying with young women who like a lotus have had to rise up through the mud to \'bloom\' and become everything God intended.','Hope: in every aspect of life - career, family, self-esteem, spirituality...\nHealing: Trauma-informed care\nPurpose: our beneficiaries can discover a rich, full and meaningful life in the midst of hardship and complex trauma.\nThe one - we do quality, not quantity\nCreativity & Beauty is a part of our brand - photography, font, images, smiles, cafe, uniforms, everything we do (our beneficiaries have seen so much ugliness - it\'s their time for beauty).\nExcellence - we do everything with excellence and professionalism','God brought Bloom into being and we are stewards and shepherds.','Growing our financial base so that more survivors can be helped and more donors can know the hope that is going on at Bloom!','I don\'t get this question','Beauty, fun, hope, God.\nPrivacy and dignity - Our beneficiaries have been exploited their whole lives and we will not exploit them further. Everything must have the \'voice of \'dignity and respect\'.','Anti-trafficking\nGlobal development','IJM, AIM','AIM to a point\nSari Bari to a point\nIJM to a point','To find meaning',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44886,48426,1,'Ruth Larwill - Brand Audit Submission - 28 Sep, 2021','2021-09-28 01:54:38','2021-09-28 01:54:38','5fa515a3-77e0-4a72-9a04-eb4a6e6a2d1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To provide healing, hope and purpose to survivors of trafficking','survivors of trafficking','A foundation of Trust\nProfessionalism\nFun\nFaith\nLove\nRespect','We show the love of God to everyone\nWe believe all people are equal and deserve respect\nWe believe in excellence and professionalism\nWe have fun everyday in many ways!\nWe show agape love.\nEverything is formed a foundation of trust .','We are humbled to be part of what God is doing to show the most vulnerable they are loved and seen.','Our donors also feel God\'s hand over Bloom or if not Christian - then something divinely magical. They love seeing that there is hope for the broken hearted in a world that is very broken.','Journeying with young women who like a lotus have had to rise up through the mud to \'bloom\' and become everything God intended.','Hope: in every aspect of life - career, family, self-esteem, spirituality...\nHealing: Trauma-informed care\nPurpose: our beneficiaries can discover a rich, full and meaningful life in the midst of hardship and complex trauma.\nThe one - we do quality, not quantity\nCreativity & Beauty is a part of our brand - photography, font, images, smiles, cafe, uniforms, everything we do (our beneficiaries have seen so much ugliness - it\'s their time for beauty).\nExcellence - we do everything with excellence and professionalism','God brought Bloom into being and we are stewards and shepherds.','Growing our financial base so that more survivors can be helped and more donors can know the hope that is going on at Bloom!','I don\'t get this question','Beauty, fun, hope, God.\nPrivacy and dignity - Our beneficiaries have been exploited their whole lives and we will not exploit them further. Everything must have the \'voice of \'dignity and respect\'.','Anti-trafficking\nGlobal development','IJM, AIM','AIM to a point\nSari Bari to a point\nIJM to a point','To find meaning',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44887,48427,1,'Ruth Larwill - Brand Audit Submission - 28 Sep, 2021','2021-09-28 01:55:08','2021-09-28 01:55:08','f2ee1057-3eb3-486d-ad45-9c1299bba523',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To provide healing, hope and purpose to survivors of trafficking','survivors of trafficking','A foundation of Trust\nProfessionalism\nFun\nFaith\nLove\nRespect','We show the love of God to everyone\nWe believe all people are equal and deserve respect\nWe believe in excellence and professionalism\nWe have fun everyday in many ways!\nWe show agape love.\nEverything is formed a foundation of trust .','We are humbled to be part of what God is doing to show the most vulnerable they are loved and seen.','Our donors also feel God\'s hand over Bloom or if not Christian - then something divinely magical. They love seeing that there is hope for the broken hearted in a world that is very broken.','Journeying with young women who like a lotus have had to rise up through the mud to \'bloom\' and become everything God intended.','Hope: in every aspect of life - career, family, self-esteem, spirituality...\nHealing: Trauma-informed care\nPurpose: our beneficiaries can discover a rich, full and meaningful life in the midst of hardship and complex trauma.\nThe one - we do quality, not quantity\nCreativity & Beauty is a part of our brand - photography, font, images, smiles, cafe, uniforms, everything we do (our beneficiaries have seen so much ugliness - it\'s their time for beauty).\nExcellence - we do everything with excellence and professionalism','God brought Bloom into being and we are stewards and shepherds.','Growing our financial base so that more survivors can be helped and more donors can know the hope that is going on at Bloom!','I don\'t get this question','Beauty, fun, hope, God.\nPrivacy and dignity - Our beneficiaries have been exploited their whole lives and we will not exploit them further. Everything must have the \'voice of \'dignity and respect\'.','Anti-trafficking\nGlobal development','IJM, AIM','AIM to a point\nSari Bari to a point\nIJM to a point\nFreeset global','To find meaning',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44888,48428,1,'Ruth Larwill - Brand Audit Submission - 28 Sep, 2021','2021-09-28 01:55:28','2021-09-28 01:55:28','6fc9fabe-7b7f-4fbd-bc92-cd7e05342e4a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To provide healing, hope and purpose to survivors of trafficking','survivors of trafficking','A foundation of Trust\nProfessionalism\nFun\nFaith\nLove\nRespect','We show the love of God to everyone\nWe believe all people are equal and deserve respect\nWe believe in excellence and professionalism\nWe have fun everyday in many ways!\nWe show agape love.\nEverything is formed a foundation of trust .','We are humbled to be part of what God is doing to show the most vulnerable they are loved and seen.','Our donors also feel God\'s hand over Bloom or if not Christian - then something divinely magical. They love seeing that there is hope for the broken hearted in a world that is very broken.','Journeying with young women who like a lotus have had to rise up through the mud to \'bloom\' and become everything God intended.','Hope: in every aspect of life - career, family, self-esteem, spirituality...\nHealing: Trauma-informed care\nPurpose: our beneficiaries can discover a rich, full and meaningful life in the midst of hardship and complex trauma.\nThe one - we do quality, not quantity\nCreativity & Beauty is a part of our brand - photography, font, images, smiles, cafe, uniforms, everything we do (our beneficiaries have seen so much ugliness - it\'s their time for beauty).\nExcellence - we do everything with excellence and professionalism','God brought Bloom into being and we are stewards and shepherds.','Growing our financial base so that more survivors can be helped and more donors can know the hope that is going on at Bloom!','I don\'t get this question','Beauty, fun, hope, God.\nPrivacy and dignity - Our beneficiaries have been exploited their whole lives and we will not exploit them further. Everything must have the \'voice of \'dignity and respect\'.','Anti-trafficking\nGlobal development','IJM, AIM','AIM to a point\nSari Bari to a point\nIJM to a point\nFreeset global','To find meaning',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44889,48429,1,'Ruth Larwill - Brand Audit Submission - 28 Sep, 2021','2021-09-28 01:55:48','2021-09-28 01:55:48','7be8d77e-4317-4705-b327-fb998e8391c0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To provide healing, hope and purpose to survivors of trafficking','survivors of trafficking','A foundation of Trust\nProfessionalism\nFun\nFaith\nLove\nRespect','We show the love of God to everyone\nWe believe all people are equal and deserve respect\nWe believe in excellence and professionalism\nWe have fun everyday in many ways!\nWe show agape love.\nEverything is formed a foundation of trust .','We are humbled to be part of what God is doing to show the most vulnerable they are loved and seen.','Our donors also feel God\'s hand over Bloom or if not Christian - then something divinely magical. They love seeing that there is hope for the broken hearted in a world that is very broken.','Journeying with young women who like a lotus have had to rise up through the mud to \'bloom\' and become everything God intended.','Hope: in every aspect of life - career, family, self-esteem, spirituality...\nHealing: Trauma-informed care\nPurpose: our beneficiaries can discover a rich, full and meaningful life in the midst of hardship and complex trauma.\nThe one - we do quality, not quantity\nCreativity & Beauty is a part of our brand - photography, font, images, smiles, cafe, uniforms, everything we do (our beneficiaries have seen so much ugliness - it\'s their time for beauty).\nExcellence - we do everything with excellence and professionalism','God brought Bloom into being and we are stewards and shepherds.','Growing our financial base so that more survivors can be helped and more donors can know the hope that is going on at Bloom!','I don\'t get this question','Beauty, fun, hope, God.\nPrivacy and dignity - Our beneficiaries have been exploited their whole lives and we will not exploit them further. Everything must have the \'voice of \'dignity and respect\'.','Anti-trafficking\nGlobal development','IJM, AIM','AIM to a point\nSari Bari to a point\nIJM to a point\nFreeset global','To find meaning',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44890,48430,1,'Ruth Larwill - Brand Audit Submission - 28 Sep, 2021','2021-09-28 01:56:08','2021-09-28 01:56:08','28de5497-b4f8-4c0c-949b-f9909e7785f0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To provide healing, hope and purpose to survivors of trafficking','survivors of trafficking','A foundation of Trust\nProfessionalism\nFun\nFaith\nLove\nRespect','We show the love of God to everyone\nWe believe all people are equal and deserve respect\nWe believe in excellence and professionalism\nWe have fun everyday in many ways!\nWe show agape love.\nEverything is formed a foundation of trust .','We are humbled to be part of what God is doing to show the most vulnerable they are loved and seen.','Our donors also feel God\'s hand over Bloom or if not Christian - then something divinely magical. They love seeing that there is hope for the broken hearted in a world that is very broken.','Journeying with young women who like a lotus have had to rise up through the mud to \'bloom\' and become everything God intended.','Hope: in every aspect of life - career, family, self-esteem, spirituality...\nHealing: Trauma-informed care\nPurpose: our beneficiaries can discover a rich, full and meaningful life in the midst of hardship and complex trauma.\nThe one - we do quality, not quantity\nCreativity & Beauty is a part of our brand - photography, font, images, smiles, cafe, uniforms, everything we do (our beneficiaries have seen so much ugliness - it\'s their time for beauty).\nExcellence - we do everything with excellence and professionalism','God brought Bloom into being and we are stewards and shepherds.','Growing our financial base so that more survivors can be helped and more donors can know the hope that is going on at Bloom!','I don\'t get this question','Beauty, fun, hope, God.\nPrivacy and dignity - Our beneficiaries have been exploited their whole lives and we will not exploit them further. Everything must have the \'voice of \'dignity and respect\'.','Anti-trafficking\nGlobal development','IJM, AIM','AIM to a point\nSari Bari to a point\nIJM to a point\nFreeset global','To find meaning',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44891,48431,1,'Ruth Larwill - Brand Audit Submission - 28 Sep, 2021','2021-09-28 01:56:28','2021-09-28 01:56:28','905c084f-73f3-4db5-af5b-4a8ed76ea53d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To provide healing, hope and purpose to survivors of trafficking','survivors of trafficking','A foundation of Trust\nProfessionalism\nFun\nFaith\nLove\nRespect','We show the love of God to everyone\nWe believe all people are equal and deserve respect\nWe believe in excellence and professionalism\nWe have fun everyday in many ways!\nWe show agape love.\nEverything is formed a foundation of trust .','We are humbled to be part of what God is doing to show the most vulnerable they are loved and seen.','Our donors also feel God\'s hand over Bloom or if not Christian - then something divinely magical. They love seeing that there is hope for the broken hearted in a world that is very broken.','Journeying with young women who like a lotus have had to rise up through the mud to \'bloom\' and become everything God intended.','Hope: in every aspect of life - career, family, self-esteem, spirituality...\nHealing: Trauma-informed care\nPurpose: our beneficiaries can discover a rich, full and meaningful life in the midst of hardship and complex trauma.\nThe one - we do quality, not quantity\nCreativity & Beauty is a part of our brand - photography, font, images, smiles, cafe, uniforms, everything we do (our beneficiaries have seen so much ugliness - it\'s their time for beauty).\nExcellence - we do everything with excellence and professionalism','God brought Bloom into being and we are stewards and shepherds.','Growing our financial base so that more survivors can be helped and more donors can know the hope that is going on at Bloom!','I don\'t get this question','Beauty, fun, hope, God.\nPrivacy and dignity - Our beneficiaries have been exploited their whole lives and we will not exploit them further. Everything must have the \'voice of \'dignity and respect\'.','Anti-trafficking\nGlobal development','IJM, AIM','AIM to a point\nSari Bari to a point\nIJM to a point\nFreeset global','To find meaning',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44892,48432,1,'Ruth Larwill - Brand Audit Submission - 28 Sep, 2021','2021-09-28 01:56:47','2021-09-28 01:56:47','5e1e5372-a190-47b2-82bf-2ae9e0b7f0cb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To provide healing, hope and purpose to survivors of trafficking','survivors of trafficking','A foundation of Trust\nProfessionalism\nFun\nFaith\nLove\nRespect','We show the love of God to everyone\nWe believe all people are equal and deserve respect\nWe believe in excellence and professionalism\nWe have fun everyday in many ways!\nWe show agape love.\nEverything is formed a foundation of trust .','We are humbled to be part of what God is doing to show the most vulnerable they are loved and seen.','Our donors also feel God\'s hand over Bloom or if not Christian - then something divinely magical. They love seeing that there is hope for the broken hearted in a world that is very broken.','Journeying with young women who like a lotus have had to rise up through the mud to \'bloom\' and become everything God intended.','Hope: in every aspect of life - career, family, self-esteem, spirituality...\nHealing: Trauma-informed care\nPurpose: our beneficiaries can discover a rich, full and meaningful life in the midst of hardship and complex trauma.\nThe one - we do quality, not quantity\nCreativity & Beauty is a part of our brand - photography, font, images, smiles, cafe, uniforms, everything we do (our beneficiaries have seen so much ugliness - it\'s their time for beauty).\nExcellence - we do everything with excellence and professionalism','God brought Bloom into being and we are stewards and shepherds.','Growing our financial base so that more survivors can be helped and more donors can know the hope that is going on at Bloom!','I don\'t get this question','Beauty, fun, hope, God.\nPrivacy and dignity - Our beneficiaries have been exploited their whole lives and we will not exploit them further. Everything must have the \'voice of \'dignity and respect\'.','Anti-trafficking\nGlobal development','IJM, AIM','AIM to a point\nSari Bari to a point\nIJM to a point\nFreeset global','To find meaning',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44893,48433,1,'Ruth Larwill - Brand Audit Submission - 28 Sep, 2021','2021-09-28 02:00:46','2021-09-28 02:00:46','1398b075-8b4f-405f-879c-2bdc282b1581',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'To provide healing, hope and purpose to survivors of trafficking','survivors of trafficking','A foundation of Trust\nProfessionalism\nFun\nFaith\nLove\nRespect','We show the love of God to everyone\nWe believe all people are equal and deserve respect\nWe believe in excellence and professionalism\nWe have fun everyday in many ways!\nWe show agape love.\nEverything is formed a foundation of trust .','We are humbled to be part of what God is doing to show the most vulnerable they are loved and seen.','Our donors also feel God\'s hand over Bloom or if not Christian - then something divinely magical. They love seeing that there is hope for the broken hearted in a world that is very broken.','Journeying with young women who like a lotus have had to rise up through the mud to \'bloom\' and become everything God intended.','Hope: in every aspect of life - career, family, self-esteem, spirituality...\nHealing: Trauma-informed care\nPurpose: our beneficiaries can discover a rich, full and meaningful life in the midst of hardship and complex trauma.\nThe one - we do quality, not quantity\nCreativity & Beauty is a part of our brand - photography, font, images, smiles, cafe, uniforms, everything we do (our beneficiaries have seen so much ugliness - it\'s their time for beauty).\nExcellence - we do everything with excellence and professionalism','God brought Bloom into being and we are stewards and shepherds.','Growing our financial base so that more survivors can be helped and more donors can know the hope that is going on at Bloom!','I don\'t get this question','Beauty, fun, hope, God.\nPrivacy and dignity - Our beneficiaries have been exploited their whole lives and we will not exploit them further. Everything must have the \'voice of \'dignity and respect\'.','Anti-trafficking\nGlobal development','IJM, AIM','AIM to a point\nSari Bari to a point\nIJM to a point\nFreeset global\nInternational Sanctuary','Our beneficiaries and donors get to find meaning in this world of brokenness.','a fresh more modern look\nAppears on website, facebook, newsletters, church',NULL,NULL,NULL,NULL,'Sharing in what God is doing around the world.\nHope\nGood stories','???','The entire goal of rebranding is to allow us freedom to share the story of Bloom without fear of further exploiting our beneficiaries while allowing us a bigger platform to raise funds to help more girls.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44912,48452,1,'Department of Housing and Public Works photography still of front door mat','2021-09-28 07:11:19','2021-10-04 23:54:49','3fe7e4f1-d148-4b91-af12-e3149b0aa26c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1152_crop_center-center_82_line/21_DPHW-Renting-images_GLOBAL.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2304_crop_center-center_82_line/21_DPHW-Renting-images_GLOBAL.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x960_crop_center-center_82_line/21_DPHW-Renting-images_GLOBAL.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1920_crop_center-center_82_line/21_DPHW-Renting-images_GLOBAL.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x768_crop_center-center_82_line/21_DPHW-Renting-images_GLOBAL.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1536_crop_center-center_82_line/21_DPHW-Renting-images_GLOBAL.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x576_crop_center-center_82_line/21_DPHW-Renting-images_GLOBAL.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x480_crop_center-center_82_line/21_DPHW-Renting-images_GLOBAL.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1152_crop_center-center_82_line/21_DPHW-Renting-images_GLOBAL.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2304_crop_center-center_82_line/21_DPHW-Renting-images_GLOBAL.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x960_crop_center-center_82_line/21_DPHW-Renting-images_GLOBAL.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1920_crop_center-center_82_line/21_DPHW-Renting-images_GLOBAL.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x768_crop_center-center_82_line/21_DPHW-Renting-images_GLOBAL.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1536_crop_center-center_82_line/21_DPHW-Renting-images_GLOBAL.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x576_crop_center-center_82_line/21_DPHW-Renting-images_GLOBAL.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x480_crop_center-center_82_line/21_DPHW-Renting-images_GLOBAL.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"3072\":2304,\"1280\":960,\"2560\":1920,\"1024\":768,\"2048\":1536,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"8000\",\"originalImageHeight\":\"6000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAMABADASIAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABAX/xAAkEAACAgEDAgcAAAAAAAAAAAABAgMRBAAFEiExIiNBcYHB0f/EABUBAQEAAAAAAAAAAAAAAAAAAAED/8QAGhEAAgIDAAAAAAAAAAAAAAAAAREAAiExQf/aAAwDAQACEQMRAD8Ap4e9q8jhEVkBoFT3+PTVTFlbMEjx0jL08XbQMjbsfBlheJSTIwDcjdi6+9NxPK3WaFOkZW+PtX6dTVsE6iCEuz//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e0ddd2\",\"#41533f\",\"#a98b58\",\"#898f7e\",\"#755f3e\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44914,48454,1,'Department of Housing and Public Works','2021-09-28 07:11:33','2021-09-28 07:11:33','298c894a-263d-4f76-af5b-49fcc2f3cf8e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Have your say in a better renting future',NULL,NULL,'With a range of renting reforms not yet law, we created a campaign to drive renters to a survey where they could have their say.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NnAYpM8RPK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47660\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2V7rQTXdap\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"More Queenslanders are renting than ever before.\\n\\nSo the Department of Housing and Public Works wanted to have open and honest conversations with renters, property owners and managers about what matters and what needs to change.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BQeIecGM9t\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47661\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-mjELLOS8zt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The messaging was compelling and obvious to convince the target groups there was value in them participating in the survey. To motivate the audiences, we tapped into key renting issues but kept a warm and positive sentiment.\\n\\nWe developed display ads, videos and static posts to build awareness and capture interest.\\n\\nPlus, we used long-form Facebook posts to convert target group interest and inform them on the details.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CDacbY6rtS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47662\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W1OXhvU4i4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The campaign had a total of 24 posts across two weeks, reaching 1.37 million individual Facebook users, with more than 42,000 engagements.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VN9WYyb9Pi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47663\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44934,48474,1,'Brisbane South PHN shopping banner_2','2021-09-28 07:27:35','2022-06-27 01:40:31','d23bda26-ee25-4ebc-874b-82bfb2dfd5a7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1023_crop_center-center_82_line/21_BSPHN-Poster1_GLOBAL.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2047_crop_center-center_82_line/21_BSPHN-Poster1_GLOBAL.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/21_BSPHN-Poster1_GLOBAL.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/21_BSPHN-Poster1_GLOBAL.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/21_BSPHN-Poster1_GLOBAL.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/21_BSPHN-Poster1_GLOBAL.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x511_crop_center-center_82_line/21_BSPHN-Poster1_GLOBAL.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/21_BSPHN-Poster1_GLOBAL.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1023_crop_center-center_82_line/21_BSPHN-Poster1_GLOBAL.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2047_crop_center-center_82_line/21_BSPHN-Poster1_GLOBAL.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/21_BSPHN-Poster1_GLOBAL.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/21_BSPHN-Poster1_GLOBAL.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/21_BSPHN-Poster1_GLOBAL.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/21_BSPHN-Poster1_GLOBAL.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x511_crop_center-center_82_line/21_BSPHN-Poster1_GLOBAL.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/21_BSPHN-Poster1_GLOBAL.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1023,\"3072\":2047,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1365,\"768\":511,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"8000\",\"originalImageHeight\":\"5333\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADASIAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABAX/xAAiEAACAAUDBQAAAAAAAAAAAAABAgADBAUREjFhBhQhI4H/xAAUAQEAAAAAAAAAAAAAAAAAAAAC/8QAFhEBAQEAAAAAAAAAAAAAAAAAAAFB/9oADAMBAAIRAxEAPwC5UI0ykdp6KzKQQRuYJSdxKp5zrTqDqypGSR8MGvjsLBUEMc6R5zzBuk3ZrPMLMT7DueBAkLX/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ccc2b9\",\"#1e1c1c\",\"#80786f\",\"#899249\",\"#654d49\"],\"lightness\":45,\"placeholderWidth\":1536,\"placeholderHeight\":1023,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44935,48475,1,'Brisbane South PHN','2021-09-28 07:27:43','2021-09-28 07:27:43','75b87c52-acb6-4143-8ee1-4422f791d253',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Aged Care Navigator',NULL,NULL,'We helped Brisbane South PHN to encourage older people to sign up to My Aged Care, so affordable, practical support is ready for them when they need it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oNzYQDCB0J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47749\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JuROxoLizt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Authentic community engagement\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We ran focus groups with people within the target market—in Redlands and Logan—and learned their perceptions of aged care, the challenges with navigating services and levels of participation in My Aged Care.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gGzYlN4TtN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47750\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VOx7qvXe9V\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We developed a campaign strategy and creative to encourage people in the target groups to attend an information session.\\n\\nA key element to our campaign strategy was targeting the \'influencer\' group: children who often help their elderly parents to find the right support and make decisions. Influencers spend a lot of time using digital media, particularly Facebook, so this formed a large part of the campaign collateral we developed.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3VEF0Vw8lC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47751\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VfrmLMDvpV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47752\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44936,48476,1,'Brisbane South PHN shopping banner','2021-09-28 07:28:37','2022-06-27 01:40:37','009bb467-4353-46f1-a603-77858d11de4b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1023_crop_center-center_82_line/21_BSPHN-Poster1_GLOBAL_2021-09-28-072836_skos.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2047_crop_center-center_82_line/21_BSPHN-Poster1_GLOBAL_2021-09-28-072836_skos.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/21_BSPHN-Poster1_GLOBAL_2021-09-28-072836_skos.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/21_BSPHN-Poster1_GLOBAL_2021-09-28-072836_skos.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/21_BSPHN-Poster1_GLOBAL_2021-09-28-072836_skos.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/21_BSPHN-Poster1_GLOBAL_2021-09-28-072836_skos.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x511_crop_center-center_82_line/21_BSPHN-Poster1_GLOBAL_2021-09-28-072836_skos.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/21_BSPHN-Poster1_GLOBAL_2021-09-28-072836_skos.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1023_crop_center-center_82_line/21_BSPHN-Poster1_GLOBAL_2021-09-28-072836_skos.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2047_crop_center-center_82_line/21_BSPHN-Poster1_GLOBAL_2021-09-28-072836_skos.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/21_BSPHN-Poster1_GLOBAL_2021-09-28-072836_skos.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/21_BSPHN-Poster1_GLOBAL_2021-09-28-072836_skos.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/21_BSPHN-Poster1_GLOBAL_2021-09-28-072836_skos.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/21_BSPHN-Poster1_GLOBAL_2021-09-28-072836_skos.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x511_crop_center-center_82_line/21_BSPHN-Poster1_GLOBAL_2021-09-28-072836_skos.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/21_BSPHN-Poster1_GLOBAL_2021-09-28-072836_skos.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1023,\"3072\":2047,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1365,\"768\":511,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"8000\",\"originalImageHeight\":\"5333\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADASIAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABAX/xAAiEAACAAUDBQAAAAAAAAAAAAABAgADBAUREjFhBhQhI4H/xAAUAQEAAAAAAAAAAAAAAAAAAAAC/8QAFhEBAQEAAAAAAAAAAAAAAAAAAAFB/9oADAMBAAIRAxEAPwC5UI0ykdp6KzKQQRuYJSdxKp5zrTqDqypGSR8MGvjsLBUEMc6R5zzBuk3ZrPMLMT7DueBAkLX/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ccc2b9\",\"#1e1c1c\",\"#80786f\",\"#899249\",\"#654d49\"],\"lightness\":45,\"placeholderWidth\":1536,\"placeholderHeight\":1023,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44938,48478,1,'Brisbane South PHN','2021-09-28 07:28:53','2021-09-28 07:28:53','be4c4654-72f0-4ee8-93eb-6868e6fcd7e6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Aged Care Navigator',NULL,NULL,'We helped Brisbane South PHN to encourage older people to sign up to My Aged Care, so affordable, practical support is ready for them when they need it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oNzYQDCB0J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47749\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JuROxoLizt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Authentic community engagement\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We ran focus groups with people within the target market—in Redlands and Logan—and learned their perceptions of aged care, the challenges with navigating services and levels of participation in My Aged Care.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gGzYlN4TtN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47750\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VOx7qvXe9V\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We developed a campaign strategy and creative to encourage people in the target groups to attend an information session.\\n\\nA key element to our campaign strategy was targeting the \'influencer\' group: children who often help their elderly parents to find the right support and make decisions. Influencers spend a lot of time using digital media, particularly Facebook, so this formed a large part of the campaign collateral we developed.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3VEF0Vw8lC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47751\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VfrmLMDvpV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47752\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44942,48482,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 07:51:08','2021-09-28 07:51:08','515f85f8-f644-438d-8f4b-500033a3e69d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44943,48483,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 07:51:28','2021-09-28 07:51:28','a2fb42b1-2d07-4462-9697-35bb5b11cf48',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44944,48484,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 07:51:48','2021-09-28 07:51:48','0aece056-f054-4be5-a5f2-248ee948f2c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44945,48485,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 07:52:08','2021-09-28 07:52:08','92097074-131a-4ecf-bba3-8bcda7a9a25f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44946,48486,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 07:52:28','2021-09-28 07:52:28','f3dd60d4-3851-483e-93b8-5fbc9e0c119c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44947,48487,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 07:52:48','2021-09-28 07:52:48','db073ca7-6c51-4870-a324-93d4378a7f49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44948,48488,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 07:53:08','2021-09-28 07:53:08','ae8ade42-22ca-4bc9-9066-5a44025e3fa4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44949,48489,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 07:53:28','2021-09-28 07:53:28','a046fcff-feb8-45c6-bcd9-b0b671f8033e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44950,48490,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 07:53:48','2021-09-28 07:53:48','b196113d-202b-44df-b63a-ebf1fa6a2a7f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44951,48491,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 07:54:08','2021-09-28 07:54:08','e0a7a1b5-975c-4916-83a7-5d56c8f45bba',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44952,48492,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 07:54:28','2021-09-28 07:54:28','ab779ff9-2a68-4f03-80ce-8fb8a8820e13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44953,48493,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 07:54:48','2021-09-28 07:54:48','1ff87843-f326-4b6a-9ffd-8db97738f37b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44954,48494,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 07:55:08','2021-09-28 07:55:08','9440aacf-83f3-45b8-9877-2ac1d69dde51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44955,48495,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 07:55:28','2021-09-28 07:55:28','f6057a97-0893-49fd-ba61-0c74b74f837d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44956,48496,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 08:14:00','2021-09-28 08:14:00','78fc07bf-c958-4159-ba6f-6a2034a3497e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44957,48497,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 08:34:00','2021-09-28 08:34:00','21323c1e-2c5c-4e12-b559-c48b39466a1a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44958,48498,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 08:54:00','2021-09-28 08:54:00','eb43be8b-86be-4175-a748-ffc07e35333c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44959,48499,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 08:55:18','2021-09-28 08:55:18','d891c67b-83b3-4b96-8acb-498983f41574',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44960,48500,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 08:55:38','2021-09-28 08:55:38','596a3f79-d9da-476d-b188-f1c76b9d7280',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44961,48501,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 08:56:11','2021-09-28 08:56:11','8e8e77a3-275e-4c1d-a72d-38960a5c5638',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44962,48502,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 08:56:31','2021-09-28 08:56:31','7ef45e94-d259-49e0-9c50-f4e4d1da6964',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44963,48503,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 08:56:51','2021-09-28 08:56:51','44820e08-c0df-4267-9314-8d3974935f74',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44964,48504,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 08:57:11','2021-09-28 08:57:11','f20aaaff-390a-43c8-b753-3a961f85231c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44965,48505,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 08:57:41','2021-09-28 08:57:41','feb0f6e7-3c9a-4d63-b7f0-804cf2590009',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44966,48506,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 08:58:01','2021-09-28 08:58:01','ecb9d002-5d4b-44c0-b5b1-fe9131697f91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44967,48507,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 08:58:21','2021-09-28 08:58:21','6874ec94-049a-48c7-a102-2579d21ac1e3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44968,48508,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 08:58:41','2021-09-28 08:58:41','53a682f1-b8ab-4d31-9b66-c38ccb04dd76',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44969,48509,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 08:59:01','2021-09-28 08:59:01','419d2060-f996-41db-9d0a-10e69a70fb87',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44970,48510,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 08:59:21','2021-09-28 08:59:21','1cfe65ff-e75c-4bd1-ab45-bcb3e02a670d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44971,48511,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 08:59:41','2021-09-28 08:59:41','2423b0b7-4f90-46a5-b697-5e7fdc248f5b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44972,48512,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 09:00:01','2021-09-28 09:00:01','40f16a0d-defe-4464-b029-52cffff3a48c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44973,48513,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 09:00:21','2021-09-28 09:00:21','8cd44bf2-3a58-4671-8731-c6f7f7e320ac',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44974,48514,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 09:00:41','2021-09-28 09:00:41','b07dfa88-9a81-41fd-abae-e2f0a6e096b6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44975,48515,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 09:01:01','2021-09-28 09:01:01','95ca9a0f-c0e5-433e-8422-94a13a4deeb7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44976,48516,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 09:01:21','2021-09-28 09:01:21','25da8d33-6cdc-474d-84d0-180cc5ccd5c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44977,48517,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 09:09:20','2021-09-28 09:09:20','119f152f-fa11-4656-9501-ef298112beda',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44978,48518,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 09:09:40','2021-09-28 09:09:40','4203745f-b171-4b5d-9240-8f77122cea7d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44979,48519,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 09:10:00','2021-09-28 09:10:00','84a435fd-7d83-4df1-ace4-f6c0919743b3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44980,48520,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 09:10:20','2021-09-28 09:10:20','ad45d2a8-62e6-4396-bcbd-2632facaf0b8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44981,48521,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 09:10:39','2021-09-28 09:10:39','6e70426a-c830-407f-8ca6-6d0499c5adec',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44982,48522,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 09:11:00','2021-09-28 09:11:00','843a80c7-8378-4802-8a82-1766f5400425',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44983,48523,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 09:11:20','2021-09-28 09:11:20','ca34c6e4-4f62-4107-97b6-008236a821fd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44984,48524,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 09:11:40','2021-09-28 09:11:40','19a631e1-caa8-4aa7-915f-7d89411d4d32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44985,48525,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 09:12:00','2021-09-28 09:12:00','a90d46f0-caa8-401f-8963-defdb3e8349e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44986,48526,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 09:12:20','2021-09-28 09:12:20','d45666df-89ad-4449-b92c-68d17b8cf2f7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44987,48527,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 09:12:40','2021-09-28 09:12:40','aee607b6-323b-4763-83d1-f7a515a39620',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44988,48528,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 09:13:00','2021-09-28 09:13:00','10af1146-0711-4efa-8df5-614c11e901d5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44989,48529,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 09:13:20','2021-09-28 09:13:20','617d22d1-2374-41e5-90f2-4c79714f5133',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44990,48530,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 09:28:00','2021-09-28 09:28:00','c2fb77e1-e0fe-4f0b-a324-a091282c29cb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44991,48531,1,'Emma Hall - Brand Audit Submission - 28 Sep, 2021','2021-09-28 09:48:01','2021-09-28 09:48:01','7ffea8ed-2b81-4eb7-90ea-9db240f8a729',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'- to give survivors of sex-trafficking a pathway to freedom\n- for survivors of trafficking to find healing, hope, and purpose.','- donors with a passion and commitment toward seeing girls set free (and find healing) from the horrors of sex-trafficking\n- donors with a passion and commitment toward seeing the cycle of exploitation broken \n- donors with a passion and commitment toward social justice for women and girls. \n\nBeneficiaries: survivors of sex-trafficking and exploitation','- trauma-informed care\n- empowerment\n- individualised care\n- restoration\n- dignity\n- no quick fixes / deep transformation / as long as it takes\n- training national staff\n- transparency - donors can see their impact (as an organisation)\n- relationships (value personal connection with donors and partners)','- Fun\n- Trust\n- Respect\n- Personal / human\n- Professional\n-','see Dave\'s answer','See the surveys we sent.\n\n- replying to our emails\n- on the phone\n- social media\n- through church partners\n- through NGO partners\n- through community fundraisers',NULL,'see daves answer \n\nplus:\n\nA way for donors to empower trafficking survivors to build a new life.','primarily a social enterprise, small ngo. \n\nno professional communicatons/branding/fundraising/development staff.\n\nStaff didn\'t understand the importance of being donor-centric','Donor-centric (all communications is donor centric but I am still working on upskilling staff in this for 1 on 1 communications and speaking)\n\n\n\n(see articles to understand concept - https://gailperrygroup.com/1-tip-to-create-a-donor-centered-appeal-letter/ and https://gailperrygroup.com/category/donor-centered-fundraising-2/)',NULL,'See word bank document.','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Charities\nAnti-trafficking charities\nWomen\'s charities\nTrauma charities\nFaith-based charities','Other anti-trafficking/trauma-informed care organisations:\nhttps://aimfree.org/\nhttps://hagarinternational.org/\nhttps://haartkenya.org/\nhttps://10thousandwindows.org/\nhttps://www.a21.org/\nhttps://theexodusroad.com/\nhttps://ijm.org.au/\nhttps://www.wavetrust.org/\nhttps://rapha.org/\n\nOther NGO\'s we admire: (branding, communications etc)\nhttps://childrensground.org.au/\nhttps://www.charitywater.org/\nhttps://hagarinternational.org/\nhttps://foreverprojects.org/ourproject\nhttps://www.cbm.org.au/ / https://www.cbmnz.org.nz/ \nhttps://nbcf.org.au/\nhttps://www.barnardos.org.au/\nhttps://www.makeawish.org.au/','- charities who\'s impact aligns with their personal vision of how they want to impact the world\n- get to see their impact / they want to know they are making a difference\n- have a personal connection to our cause\n- want to feel good about being part of something that is doing good in the world\n- tax deductibility \n- want to be heroes (desire for themselves and others to see themself as someone who doing good)\n- want to feel a personal connection to the organisation and the people they are helping \n\n- trust us / transparency / credibility\n- desire to feel they','Dated. \n\nAppears on all collateral. \n\nOur visual branding needs to reflect our organisation.',NULL,'See supplied documents. plus email signatures.','Better explainer video\nMonthly giving video\nChristian impact/explainer video\nCase for support for new projects\nWebsite upgrade','Campaigns throughout the year. \n\nRecent call to actions include:\n\n-  empower survivors with the ongoing support they need to experience true restoration. Donate now. \n- give her a pathway to freedom. Donate now. \n- Protect a survivor from being re-trafficked. Donate now. \n- Give her the chance to build a new life through safe employment. Buy now.\n- Help her heal. Donate a counselling session today. \n- Surround her with love and support. Donate today.','- personal connection \n- gratitude\n-',NULL,NULL,'n/a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44992,48532,1,'Brisbane North PHN photography still of child with tablet displaying the PHN\'s website','2021-09-30 03:36:41','2022-06-23 03:27:53','1a4104c2-1882-468c-9a08-aa2f83fb8abd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/21_BNPHN-GLOBAL.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/21_BNPHN-GLOBAL.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/21_BNPHN-GLOBAL.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/21_BNPHN-GLOBAL.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/21_BNPHN-GLOBAL.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/21_BNPHN-GLOBAL.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/21_BNPHN-GLOBAL.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/21_BNPHN-GLOBAL.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/21_BNPHN-GLOBAL.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/21_BNPHN-GLOBAL.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/21_BNPHN-GLOBAL.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/21_BNPHN-GLOBAL.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/21_BNPHN-GLOBAL.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/21_BNPHN-GLOBAL.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/21_BNPHN-GLOBAL.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/21_BNPHN-GLOBAL.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"8000\",\"originalImageHeight\":\"4500\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAwEG/8QAJRAAAgAEAwkAAAAAAAAAAAAAAQIAAwQREhOxIjIzQVFhcoHR/8QAFAEBAAAAAAAAAAAAAAAAAAAAAf/EABURAQEAAAAAAAAAAAAAAAAAAAAx/9oADAMBAAIRAxEAPwCCTQurZ8xFZ0JaxDG3QdzGZrBls0sS8Nhskc/sNWcZPWsHU707xGkNEf/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#37393c\",\"#cdd3d6\",\"#7d7e80\",\"#5eb0ba\",\"#7a96a8\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44994,48534,1,'Brisbane North PHN website','2021-09-30 03:36:52','2021-09-30 03:36:52','e83e4399-9ccb-4a73-abfc-eaa3d97be314',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Better access, better health',NULL,NULL,'The PHN’s website is where the ‘better access, better health’ vision comes to life and starts important conversations. This was an opportunity to innovate, collaborate and leverage the PHN\'s work through a powerful digital solution. With a clean design, intuitive user journeys and plain English content, this site is transforming the digital experience for stakeholders within and outside the PHN.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yXpuBl6k0n\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47745\",\"47746\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44995,48535,1,'Endeavour Foundation \'imagine what\'s possible\' photography still','2021-09-30 03:42:58','2021-10-04 23:51:22','4c403ab5-db2f-492a-a974-5b112a5fc2e6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1152_crop_center-center_82_line/21_Endeavour-GLOBAL.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2304_crop_center-center_82_line/21_Endeavour-GLOBAL.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x960_crop_center-center_82_line/21_Endeavour-GLOBAL.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1920_crop_center-center_82_line/21_Endeavour-GLOBAL.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x768_crop_center-center_82_line/21_Endeavour-GLOBAL.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1536_crop_center-center_82_line/21_Endeavour-GLOBAL.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x576_crop_center-center_82_line/21_Endeavour-GLOBAL.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x480_crop_center-center_82_line/21_Endeavour-GLOBAL.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1152_crop_center-center_82_line/21_Endeavour-GLOBAL.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2304_crop_center-center_82_line/21_Endeavour-GLOBAL.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x960_crop_center-center_82_line/21_Endeavour-GLOBAL.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1920_crop_center-center_82_line/21_Endeavour-GLOBAL.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x768_crop_center-center_82_line/21_Endeavour-GLOBAL.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1536_crop_center-center_82_line/21_Endeavour-GLOBAL.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x576_crop_center-center_82_line/21_Endeavour-GLOBAL.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x480_crop_center-center_82_line/21_Endeavour-GLOBAL.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1152,\"3072\":2304,\"1280\":960,\"2560\":1920,\"1024\":768,\"2048\":1536,\"768\":576,\"640\":480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"8000\",\"originalImageHeight\":\"6000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAMABADASIAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAAEDBP/EACIQAAIBAwIHAAAAAAAAAAAAAAECAwAREgQhIjEyQUJhsf/EABUBAQEAAAAAAAAAAAAAAAAAAAEE/8QAFxEBAQEBAAAAAAAAAAAAAAAAEQABAv/aAAwDAQACEQMRAD8AyJAky2iyMx8e3yg6dgoZSW4cm26d6kkjqjIpsG5+6aSMGBFharjpcnC//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#5e539a\",\"#e6c7bb\",\"#c99271\",\"#68402e\",\"#a49ada\"],\"lightness\":58,\"placeholderWidth\":1536,\"placeholderHeight\":1152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44997,48537,1,'Endeavour Foundation','2021-09-30 03:43:13','2021-09-30 03:43:13','5d4707fd-a13c-47ba-8920-c42a9d108892',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rebranding an icon for a new era',NULL,NULL,'The Endeavour Foundation came to us with a new mandate and a new logo that needed the support of an incredible brand story. We stepped in to capture the essence of authentic customer service: to tell Endeavour’s compelling brand story about the people they serve, and the people who serve.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-i7VSDgqc7V\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45336\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XE9ZIQrYn6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Endeavour delivers essential, personalised and compassionate services to people with intellectual disabilities. When the NDIS was introduced, it was the perfect opportunity for Endeavour to show the world what their services mean to the community it serves.\\n\\nThey asked us to take their new logo and develop a complementary campaign and suite of branding tools to support it. Our goal was to capture the heart of Endeavour Foundation through storytelling and unify the foundation’s people and customers under one powerful vision.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5lKlpPU30x\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45338\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jeFwrbtZMK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45339\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JKRNdGpqnc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We based our campaign strategy on one question: what would make my life better? The question explored Endeavour’s objective to create a brand that could represent their customers and generate greater possibilities for their care. Our creative solution was to make Endeavour customers the heroes.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uYLiG0E4oM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/265285881\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MQfzkp05OB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Endeavour’s new brand video is an expression of their unifying purpose to truly serve and make a meaningful difference in the lives of their customers.\\n\\nThe campaign speaks for and to the extended stakeholder community about the vision, quality and outcomes of Endeavour’s services. It included:\\n- brand story\\n- full visual brand development from a supplied logo\\n- hero photography\\n- brand book\\n- brand video\\n- employer brand and collateral\\n- launch campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QPJ6J6kHcL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45340\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qBnvWlcG0T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Many powerful stories came out of this job, but the most incredible was watching Endeavour customers embrace the opportunity to model for our video and photography crew. Endeavour reported back to us the meaningful moments when their customers saw their photos for the first time.\\n\\nSince the brand and campaign launch in June 2018, Endeavour has boosted their number of leads for their main service areas: accommodation, day services and work placements. With a long-term goal in mind, these results are significantly greater than anticipated, and only a few months since the campaign launch.\\n\\nIn addition, Endeavour reported to us unexpected community engagement at their events—people who have no connection to intellectual disability and have not previously been involved with the foundation. We look forward to following this story and discovering the full impact of our work.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(44998,48538,1,'West MAC photography still of basketball students','2021-09-30 03:47:19','2021-10-04 23:49:49','cb26ada2-6a59-4f31-95c8-0076361213a7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1023_crop_center-center_82_line/21_WestMac_GLOBAL.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2047_crop_center-center_82_line/21_WestMac_GLOBAL.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/21_WestMac_GLOBAL.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/21_WestMac_GLOBAL.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/21_WestMac_GLOBAL.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/21_WestMac_GLOBAL.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x511_crop_center-center_82_line/21_WestMac_GLOBAL.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/21_WestMac_GLOBAL.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1023_crop_center-center_82_line/21_WestMac_GLOBAL.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2047_crop_center-center_82_line/21_WestMac_GLOBAL.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/21_WestMac_GLOBAL.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/21_WestMac_GLOBAL.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/21_WestMac_GLOBAL.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/21_WestMac_GLOBAL.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x511_crop_center-center_82_line/21_WestMac_GLOBAL.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/21_WestMac_GLOBAL.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1023,\"3072\":2047,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1365,\"768\":511,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"8000\",\"originalImageHeight\":\"5333\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADASIAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABQL/xAAgEAEAAgEEAgMAAAAAAAAAAAABAgMEAAUREhMxIWGB/8QAFAEBAAAAAAAAAAAAAAAAAAAAAf/EABgRAAIDAAAAAAAAAAAAAAAAAAABAhES/9oADAMBAAIRAxEAPwCMTeseoe1E6yIHEo+1dIX71hTsy6bHrXCJ0WLzJR50PVEllHYHlr9/ukt4A86HykOfv3pc2GVR/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#b0bbc5\",\"#1e2128\",\"#564337\",\"#78644d\",\"#60748c\"],\"lightness\":41,\"placeholderWidth\":1536,\"placeholderHeight\":1023,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(45000,48540,1,'West Moreton Anglican College','2021-09-30 03:47:30','2021-09-30 03:47:30','f5353f19-ec28-4764-8710-3ceb3bf462e6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The school for (real) life',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kSAkN1lDaq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Like schools everywhere, West Moreton Anglican College needed to change its plans to bring parents onto campus to experience the school because of the coronavirus.\\n\\nThis meant the annual open day was cancelled. But a few months later when restrictions eased, the school had a chance to bring parents back.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fxOewiuxW6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45330\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-c4rLGz6SQd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We developed a 16-week plan that timed out the lead up to the modified open day, and follow-up of leads afterwards. It outlined a WestMAC-specific brand campaign that celebrated the WestMAC way and positioned the school as a unique and desirable offering compared to other schools in the catchment area.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GVAyDnsmRc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45329\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o0LzwcEURr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"At the end of the day, parents just want their kids to be happy, healthy and well.\\n\\nWestMAC is a wonderland for kids complete with an agriculture farm, animals and a garden for digging—because that\'s just what kids like doing. It\'s the school for real life.\\n\\nThis campaign included gorgeous hero photography, strategic messaging and a series of videos where students talk about their WestMAC experience.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-66MSHWAoOc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/470822168?h=a0ce3a6b80&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/470822520?h=90034f124f&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KSqaU5wR9Y\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The campaign resonated with parents in the catchment, and filled the tour. We continued to run the campaign for the rest of the year, encouraging prospective parents to attend a personal tour.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ip4P0zUBCI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45333\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(45001,48541,1,'QMHC insights report booklet','2021-09-30 03:51:02','2021-10-04 23:49:11','a2933ac2-3097-4a7d-8eb5-9218c00e4123',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1023_crop_center-center_82_line/QMHC_Global.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2047_crop_center-center_82_line/QMHC_Global.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/QMHC_Global.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/QMHC_Global.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/QMHC_Global.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/QMHC_Global.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x511_crop_center-center_82_line/QMHC_Global.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/QMHC_Global.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1023_crop_center-center_82_line/QMHC_Global.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2047_crop_center-center_82_line/QMHC_Global.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/QMHC_Global.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/QMHC_Global.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/QMHC_Global.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/QMHC_Global.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x511_crop_center-center_82_line/QMHC_Global.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/QMHC_Global.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1023,\"3072\":2047,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1365,\"768\":511,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"8000\",\"originalImageHeight\":\"5333\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAAEFBv/EACEQAAIBBAICAwAAAAAAAAAAAAECAwAEERIFMRMhNFFy/8QAFgEBAQEAAAAAAAAAAAAAAAAAAQIA/8QAGhEAAwEBAQEAAAAAAAAAAAAAAAERITICA//aAAwDAQACEQMRAD8A1vLtuFg2ZdlLZVsdUXYMyhxF5FIhtvJtJF1k+yO6wzKPkvkQ/lql9IVyyXIixW9jLGoSQuAXUYJ9fdHvJCvlqZ//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#cdc1ba\",\"#36445b\",\"#b58155\",\"#954663\",\"#749d9b\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":1023,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(45003,48543,1,'QMHC','2021-09-30 03:51:18','2021-09-30 03:51:18','16ce4079-e557-44e3-a187-2566c9ce311b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Queensland Mental Health Commission community engagement',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QkuSHpszbt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47656\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-B6PvNvL5Iy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We gained clear lines of sight into the impressions and needs of their stakeholder audience through 26 guided, in-depth phone interviews. Each interview was between 30 and 45 minutes long, and followed an approved guide to elicit data and insights to key questions. Key stakeholders included representatives of vulnerable groups, including remote communities, LGBTIQ+ stakeholder organisations, and Aboriginal and Torres Strait Islander groups.\\n\\nFrom this data, we developed an insights document and then a strategy to enable the Commission’s 20+ staff to better reach stakeholders with timely, needed communication and engagement opportunities.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F39qRl2lIU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47657\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(45005,48545,1,'Tritium logo','2021-09-30 03:53:45','2021-10-04 23:48:27','e56ac89a-d4e5-4d59-93eb-f83ae8e63699',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Tritium_GLOBAL.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Tritium_GLOBAL.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/21_Tritium_GLOBAL.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/21_Tritium_GLOBAL.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Tritium_GLOBAL.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Tritium_GLOBAL.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Tritium_GLOBAL.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/21_Tritium_GLOBAL.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Tritium_GLOBAL.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Tritium_GLOBAL.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/21_Tritium_GLOBAL.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/21_Tritium_GLOBAL.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Tritium_GLOBAL.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Tritium_GLOBAL.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Tritium_GLOBAL.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/21_Tritium_GLOBAL.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":768,\"2560\":1536,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":384},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"8000\",\"originalImageHeight\":\"4800\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABQH/xAAeEAEAAQQCAwAAAAAAAAAAAAABAAIDESEEUQUxMv/EABYBAQEBAAAAAAAAAAAAAAAAAAQFBv/EABsRAAICAwEAAAAAAAAAAAAAAAADAjIBITEE/9oADAMBAAIRAxEAPwC3AagqcC7epZkZVfdhnkAMlLkHT3DtqPRfQlf9MTknwC+b8w7eD/PY/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#06a3d6\",\"#105c74\",\"#d1ecf5\",\"#087cb4\",\"#6cd4fc\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(45006,48546,1,'Tritium','2021-09-30 03:54:04','2021-09-30 03:54:04','37ee6e0d-dc8b-4fca-9389-cd744c2f2e46',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league. Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GLSN3YDBFD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"22084\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZeQWeTuQlo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47708\",\"47704\",\"47705\",\"47706\",\"47710\",\"47714\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(45008,48548,1,'Retire Australia Verge shopping banner','2021-09-30 05:08:23','2021-10-04 23:48:06','2e935dee-a393-4db5-907f-04504407fd16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":null,\"originalImageWidth\":null,\"originalImageHeight\":null,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":null,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(45010,48550,1,'Retire Australia photography still of couple walking through neighbourhood','2021-09-30 05:12:10','2021-10-04 23:50:34','33125a5b-3d78-4159-a0b6-148aebef1b13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1023_crop_center-center_82_line/21_RetireAustralia_GLOBAL.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2047_crop_center-center_82_line/21_RetireAustralia_GLOBAL.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/21_RetireAustralia_GLOBAL.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/21_RetireAustralia_GLOBAL.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/21_RetireAustralia_GLOBAL.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/21_RetireAustralia_GLOBAL.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x511_crop_center-center_82_line/21_RetireAustralia_GLOBAL.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/21_RetireAustralia_GLOBAL.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1023_crop_center-center_82_line/21_RetireAustralia_GLOBAL.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2047_crop_center-center_82_line/21_RetireAustralia_GLOBAL.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/21_RetireAustralia_GLOBAL.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/21_RetireAustralia_GLOBAL.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/21_RetireAustralia_GLOBAL.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/21_RetireAustralia_GLOBAL.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x511_crop_center-center_82_line/21_RetireAustralia_GLOBAL.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/21_RetireAustralia_GLOBAL.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1023,\"3072\":2047,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1365,\"768\":511,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"8000\",\"originalImageHeight\":\"5333\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQID/8QAIhAAAgECBQUAAAAAAAAAAAAAAQIDACEEBQYiQRESEyMx/8QAFQEBAQAAAAAAAAAAAAAAAAAAAQP/xAAXEQEBAQEAAAAAAAAAAAAAAAABAAIh/9oADAMBAAIRAxEAPwBaHUOAb1uWDBQ224NW+ocvXDMU742+BivUA1pFFGBaNBbgCgtabMsw4XaPIbC3FTztSUDt/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d4d6ce\",\"#2b321d\",\"#8d864e\",\"#6e5839\",\"#878a7d\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":1023,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(45014,48554,1,'Retire Australia photography stills collage','2021-09-30 05:57:26','2021-10-04 23:50:03','9ecca039-3b23-4d18-8c03-19ecdfbb94bd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_RetireAustralia.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_RetireAustralia.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_RetireAustralia.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_RetireAustralia.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_RetireAustralia.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_RetireAustralia.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_RetireAustralia.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_RetireAustralia.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_RetireAustralia.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_RetireAustralia.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_RetireAustralia.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_RetireAustralia.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_RetireAustralia.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_RetireAustralia.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_RetireAustralia.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_RetireAustralia.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADASIAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABAX/xAAmEAABAgQDCQAAAAAAAAAAAAACAQMABREhBDFyEyM0QUNxkbGy/8QAFQEBAQAAAAAAAAAAAAAAAAAAAgP/xAAWEQEBAQAAAAAAAAAAAAAAAAAAAUH/2gAMAwEAAhEDEQA/ACTt8yYElcddRDEt5yrXLwsVXZm5iQqZuE1s6G2gIhX7LbKATPq6h9LA5HxKaj+VieHY/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#3f3b32\",\"#ddd3c0\",\"#abbba6\",\"#a2886a\",\"#a29da4\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(45015,48555,1,'Retire Australia billboard','2021-09-30 05:58:22','2021-10-04 23:46:53','389f741d-cdd8-44ef-a10b-800c5d65dc1b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x614_crop_center-center_82_line/21_RetireAustralia2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1228_crop_center-center_82_line/21_RetireAustralia2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x512_crop_center-center_82_line/21_RetireAustralia2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1024_crop_center-center_82_line/21_RetireAustralia2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x409_crop_center-center_82_line/21_RetireAustralia2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x819_crop_center-center_82_line/21_RetireAustralia2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x307_crop_center-center_82_line/21_RetireAustralia2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x256_crop_center-center_82_line/21_RetireAustralia2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x614_crop_center-center_82_line/21_RetireAustralia2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1228_crop_center-center_82_line/21_RetireAustralia2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x512_crop_center-center_82_line/21_RetireAustralia2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1024_crop_center-center_82_line/21_RetireAustralia2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x409_crop_center-center_82_line/21_RetireAustralia2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x819_crop_center-center_82_line/21_RetireAustralia2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x307_crop_center-center_82_line/21_RetireAustralia2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x256_crop_center-center_82_line/21_RetireAustralia2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":614,\"3072\":1228,\"1280\":512,\"2560\":1024,\"1024\":409,\"2048\":819,\"768\":307,\"640\":256},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"4167\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAGABADASIAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAAT/xAAgEAACAQQBBQAAAAAAAAAAAAABAwACBBIhERMVMUFR/8QAFQEBAQAAAAAAAAAAAAAAAAAAAgP/xAAYEQACAwAAAAAAAAAAAAAAAAAAEQExQf/aAAwDAQACEQMRAD8ArF9bqZX1bSlhy1vgAfJILo9wDUqC1msk05k6PrxEQvSiij//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#9a8a8b\",\"#252327\",\"#e7e4e0\",\"#503f40\",\"#66523d\"],\"lightness\":46,\"placeholderWidth\":1536,\"placeholderHeight\":614,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(45016,48556,1,'Retire Australia newspaper ad','2021-09-30 05:58:34','2021-10-04 23:46:11','c7c03931-6590-44eb-b38b-ef56348d3997',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x737_crop_center-center_82_line/21_RetireAustralia3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1474_crop_center-center_82_line/21_RetireAustralia3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x614_crop_center-center_82_line/21_RetireAustralia3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1228_crop_center-center_82_line/21_RetireAustralia3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x491_crop_center-center_82_line/21_RetireAustralia3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x983_crop_center-center_82_line/21_RetireAustralia3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x368_crop_center-center_82_line/21_RetireAustralia3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x307_crop_center-center_82_line/21_RetireAustralia3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x737_crop_center-center_82_line/21_RetireAustralia3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1474_crop_center-center_82_line/21_RetireAustralia3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x614_crop_center-center_82_line/21_RetireAustralia3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1228_crop_center-center_82_line/21_RetireAustralia3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x491_crop_center-center_82_line/21_RetireAustralia3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x983_crop_center-center_82_line/21_RetireAustralia3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x368_crop_center-center_82_line/21_RetireAustralia3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x307_crop_center-center_82_line/21_RetireAustralia3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":737,\"3072\":1474,\"1280\":614,\"2560\":1228,\"1024\":491,\"2048\":983,\"768\":368,\"640\":307},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"5000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAHABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAgT/xAAdEAACAgIDAQAAAAAAAAAAAAABAgMEABETFCFh/8QAFQEBAQAAAAAAAAAAAAAAAAAAAQL/xAAaEQEBAAIDAAAAAAAAAAAAAAABAAIDESEx/9oADAMBAAIRAxEAPwBUjUqUuCAhy7FpAwI2cgBJVGmlqxyMz9ZQmifG+Yus95ky6v/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#918c89\",\"#26251d\",\"#654a2b\",\"#46331f\",\"#d3c7b8\"],\"lightness\":35,\"placeholderWidth\":1536,\"placeholderHeight\":737,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(45017,48557,1,'Retire Australia booklet covers_2','2021-09-30 05:58:58','2021-10-04 23:46:25','609e3a0a-8e4c-49d6-bd38-dd3d8f7e336c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1105_crop_center-center_82_line/21_RetireAustralia4.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2211_crop_center-center_82_line/21_RetireAustralia4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x921_crop_center-center_82_line/21_RetireAustralia4.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1843_crop_center-center_82_line/21_RetireAustralia4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x737_crop_center-center_82_line/21_RetireAustralia4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1474_crop_center-center_82_line/21_RetireAustralia4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x552_crop_center-center_82_line/21_RetireAustralia4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x460_crop_center-center_82_line/21_RetireAustralia4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1105_crop_center-center_82_line/21_RetireAustralia4.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2211_crop_center-center_82_line/21_RetireAustralia4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x921_crop_center-center_82_line/21_RetireAustralia4.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1843_crop_center-center_82_line/21_RetireAustralia4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x737_crop_center-center_82_line/21_RetireAustralia4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1474_crop_center-center_82_line/21_RetireAustralia4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x552_crop_center-center_82_line/21_RetireAustralia4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x460_crop_center-center_82_line/21_RetireAustralia4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1105,\"3072\":2211,\"1280\":921,\"2560\":1843,\"1024\":737,\"2048\":1474,\"768\":552,\"640\":460},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"7500\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAALABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABAX/xAAiEAACAQMDBQEAAAAAAAAAAAABAwIABBIFETETISJBUmL/xAAWAQEBAQAAAAAAAAAAAAAAAAAAAQL/xAAZEQADAQEBAAAAAAAAAAAAAAAAARECMWH/2gAMAwEAAhEDEQA/AKcnq603wk9bP2PE1j1DLWnBFpqMn4yhEtgTjlEHbf3VdKoTtdStbbdcI4wJO4HFOcGUqL09s03K0rOK/kDtxUTdD6f/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d0ccc5\",\"#3d5049\",\"#816e55\",\"#868e81\",\"#74686d\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":1105,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(45018,48558,1,'Retire Australia website design alternative','2021-09-30 05:59:16','2021-10-01 05:23:51','fc618282-75e7-48a0-89ac-7fe87f7db12e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x2518_crop_center-center_82_line/21_RetireAustralia6.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x5037_crop_center-center_82_line/21_RetireAustralia6.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x2099_crop_center-center_82_line/21_RetireAustralia6.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x4198_crop_center-center_82_line/21_RetireAustralia6.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1679_crop_center-center_82_line/21_RetireAustralia6.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x3358_crop_center-center_82_line/21_RetireAustralia6.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x1259_crop_center-center_82_line/21_RetireAustralia6.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x1049_crop_center-center_82_line/21_RetireAustralia6.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x2518_crop_center-center_82_line/21_RetireAustralia6.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x5037_crop_center-center_82_line/21_RetireAustralia6.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x2099_crop_center-center_82_line/21_RetireAustralia6.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x4198_crop_center-center_82_line/21_RetireAustralia6.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1679_crop_center-center_82_line/21_RetireAustralia6.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x3358_crop_center-center_82_line/21_RetireAustralia6.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x1259_crop_center-center_82_line/21_RetireAustralia6.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x1049_crop_center-center_82_line/21_RetireAustralia6.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":2518,\"3072\":5037,\"1280\":2099,\"2560\":4198,\"1024\":1679,\"2048\":3358,\"768\":1259,\"640\":1049},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"17083\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAaABADAREAAhEBAxEB/8QAGAAAAwEBAAAAAAAAAAAAAAAAAQIEAAX/xAAmEAACAQMDAwQDAAAAAAAAAAABAwIEBREAEjEGISITQVFhI4Gh/8QAFwEAAwEAAAAAAAAAAAAAAAAAAAECA//EABsRAAIDAQEBAAAAAAAAAAAAAAABAhESMSFB/9oADAMBAAIRAxEAPwC2tt9wuF/uBTIlK5xjn1CNvhE8ZHzoHYKG33Cg6goZuJCGMlEfkJ3eEj3GfrQKzvVU0Ju2yM5Qc5ZkYjtGR4yfvsBqJSpjQ1KqLa+LmNmwiG6EJDtE8ZH9H71MJW6G+C3VNCaqDXuSqoEcRLJ48c/GRrVw18I0k+gtC6OD5yTUKc3bjwYTiOfgk6MV7QaT4QdTJUysUWKhMhfMog+51pBujOaTZumUqXWMK1QgSvmMQPcaJt0EEkz/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#152830\",\"#e3e2d7\",\"#755144\",\"#9f944a\",\"#7c878b\"],\"lightness\":44,\"placeholderWidth\":1536,\"placeholderHeight\":2518,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(45019,48559,1,'Retire Australia booklet design alternative','2021-09-30 05:59:46','2021-10-01 05:23:23','6c3d4ad3-469c-4ab2-b789-15127197c461',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1105_crop_center-center_82_line/21_RetireAustralia5.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2211_crop_center-center_82_line/21_RetireAustralia5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x921_crop_center-center_82_line/21_RetireAustralia5.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1843_crop_center-center_82_line/21_RetireAustralia5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x737_crop_center-center_82_line/21_RetireAustralia5.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1474_crop_center-center_82_line/21_RetireAustralia5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x552_crop_center-center_82_line/21_RetireAustralia5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x460_crop_center-center_82_line/21_RetireAustralia5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1105_crop_center-center_82_line/21_RetireAustralia5.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2211_crop_center-center_82_line/21_RetireAustralia5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x921_crop_center-center_82_line/21_RetireAustralia5.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1843_crop_center-center_82_line/21_RetireAustralia5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x737_crop_center-center_82_line/21_RetireAustralia5.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1474_crop_center-center_82_line/21_RetireAustralia5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x552_crop_center-center_82_line/21_RetireAustralia5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x460_crop_center-center_82_line/21_RetireAustralia5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1105,\"3072\":2211,\"1280\":921,\"2560\":1843,\"1024\":737,\"2048\":1474,\"768\":552,\"640\":460},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"7500\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAALABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAEF/8QAHxAAAgICAQUAAAAAAAAAAAAAAQIDEQAEEiEjMVHB/8QAFgEBAQEAAAAAAAAAAAAAAAAAAgAB/8QAFxEBAQEBAAAAAAAAAAAAAAAAAQACEf/aAAwDAQACEQMRAD8A2eaT6pJUzc+jAgg38wKSzns3XSNNchY6BGIjWOGOLW7aBbsmveRasffldUAViBY8ZjRf/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d3d1d0\",\"#6d5642\",\"#a18f7f\",\"#796668\",\"#47ac8c\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":1105,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(45022,48562,1,'Retire Australia booklet covers','2021-09-30 06:02:04','2021-10-01 05:22:52','498a594b-75ba-45e1-932d-fb2b24f354c0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1105_crop_center-center_82_line/21_RetireAustralia4_2021-09-30-060203_byhf.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2211_crop_center-center_82_line/21_RetireAustralia4_2021-09-30-060203_byhf.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x921_crop_center-center_82_line/21_RetireAustralia4_2021-09-30-060203_byhf.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1843_crop_center-center_82_line/21_RetireAustralia4_2021-09-30-060203_byhf.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x737_crop_center-center_82_line/21_RetireAustralia4_2021-09-30-060203_byhf.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1474_crop_center-center_82_line/21_RetireAustralia4_2021-09-30-060203_byhf.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x552_crop_center-center_82_line/21_RetireAustralia4_2021-09-30-060203_byhf.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x460_crop_center-center_82_line/21_RetireAustralia4_2021-09-30-060203_byhf.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1105_crop_center-center_82_line/21_RetireAustralia4_2021-09-30-060203_byhf.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2211_crop_center-center_82_line/21_RetireAustralia4_2021-09-30-060203_byhf.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x921_crop_center-center_82_line/21_RetireAustralia4_2021-09-30-060203_byhf.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1843_crop_center-center_82_line/21_RetireAustralia4_2021-09-30-060203_byhf.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x737_crop_center-center_82_line/21_RetireAustralia4_2021-09-30-060203_byhf.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1474_crop_center-center_82_line/21_RetireAustralia4_2021-09-30-060203_byhf.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x552_crop_center-center_82_line/21_RetireAustralia4_2021-09-30-060203_byhf.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x460_crop_center-center_82_line/21_RetireAustralia4_2021-09-30-060203_byhf.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1105,\"3072\":2211,\"1280\":921,\"2560\":1843,\"1024\":737,\"2048\":1474,\"768\":552,\"640\":460},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"7500\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAALABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABAX/xAAiEAACAQMDBQEAAAAAAAAAAAABAwIABBIFETETISJBUmL/xAAWAQEBAQAAAAAAAAAAAAAAAAAAAQL/xAAZEQADAQEBAAAAAAAAAAAAAAAAARECMWH/2gAMAwEAAhEDEQA/AKcnq603wk9bP2PE1j1DLWnBFpqMn4yhEtgTjlEHbf3VdKoTtdStbbdcI4wJO4HFOcGUqL09s03K0rOK/kDtxUTdD6f/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d0ccc5\",\"#3d5049\",\"#816e55\",\"#868e81\",\"#74686d\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":1105,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(45023,48563,1,'Retire Australia website design','2021-09-30 06:02:24','2021-10-01 05:22:28','2cb228e8-f8a1-42fb-aa1c-35fd22d30a68',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x2518_crop_center-center_82_line/21_RetireAustralia6_2021-09-30-060224_ixbi.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x5037_crop_center-center_82_line/21_RetireAustralia6_2021-09-30-060224_ixbi.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x2099_crop_center-center_82_line/21_RetireAustralia6_2021-09-30-060224_ixbi.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x4198_crop_center-center_82_line/21_RetireAustralia6_2021-09-30-060224_ixbi.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1679_crop_center-center_82_line/21_RetireAustralia6_2021-09-30-060224_ixbi.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x3358_crop_center-center_82_line/21_RetireAustralia6_2021-09-30-060224_ixbi.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x1259_crop_center-center_82_line/21_RetireAustralia6_2021-09-30-060224_ixbi.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x1049_crop_center-center_82_line/21_RetireAustralia6_2021-09-30-060224_ixbi.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x2518_crop_center-center_82_line/21_RetireAustralia6_2021-09-30-060224_ixbi.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x5037_crop_center-center_82_line/21_RetireAustralia6_2021-09-30-060224_ixbi.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x2099_crop_center-center_82_line/21_RetireAustralia6_2021-09-30-060224_ixbi.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x4198_crop_center-center_82_line/21_RetireAustralia6_2021-09-30-060224_ixbi.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1679_crop_center-center_82_line/21_RetireAustralia6_2021-09-30-060224_ixbi.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x3358_crop_center-center_82_line/21_RetireAustralia6_2021-09-30-060224_ixbi.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x1259_crop_center-center_82_line/21_RetireAustralia6_2021-09-30-060224_ixbi.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x1049_crop_center-center_82_line/21_RetireAustralia6_2021-09-30-060224_ixbi.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":2518,\"3072\":5037,\"1280\":2099,\"2560\":4198,\"1024\":1679,\"2048\":3358,\"768\":1259,\"640\":1049},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"17083\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAaABADAREAAhEBAxEB/8QAGAAAAwEBAAAAAAAAAAAAAAAAAQIEAAX/xAAmEAACAQMDAwQDAAAAAAAAAAABAwIEBREAEjEGISITQVFhI4Gh/8QAFwEAAwEAAAAAAAAAAAAAAAAAAAECA//EABsRAAIDAQEBAAAAAAAAAAAAAAABAhESMSFB/9oADAMBAAIRAxEAPwC2tt9wuF/uBTIlK5xjn1CNvhE8ZHzoHYKG33Cg6goZuJCGMlEfkJ3eEj3GfrQKzvVU0Ju2yM5Qc5ZkYjtGR4yfvsBqJSpjQ1KqLa+LmNmwiG6EJDtE8ZH9H71MJW6G+C3VNCaqDXuSqoEcRLJ48c/GRrVw18I0k+gtC6OD5yTUKc3bjwYTiOfgk6MV7QaT4QdTJUysUWKhMhfMog+51pBujOaTZumUqXWMK1QgSvmMQPcaJt0EEkz/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#152830\",\"#e3e2d7\",\"#755144\",\"#9f944a\",\"#7c878b\"],\"lightness\":44,\"placeholderWidth\":1536,\"placeholderHeight\":2518,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(45024,48564,1,'Retire Australia booklet design','2021-09-30 06:06:06','2021-10-01 05:21:42','302ef01d-6920-435c-8ea1-c75d5f4c32de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1105_crop_center-center_82_line/21_RetireAustralia5_2021-09-30-060606_unpf.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2211_crop_center-center_82_line/21_RetireAustralia5_2021-09-30-060606_unpf.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x921_crop_center-center_82_line/21_RetireAustralia5_2021-09-30-060606_unpf.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1843_crop_center-center_82_line/21_RetireAustralia5_2021-09-30-060606_unpf.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x737_crop_center-center_82_line/21_RetireAustralia5_2021-09-30-060606_unpf.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1474_crop_center-center_82_line/21_RetireAustralia5_2021-09-30-060606_unpf.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x552_crop_center-center_82_line/21_RetireAustralia5_2021-09-30-060606_unpf.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x460_crop_center-center_82_line/21_RetireAustralia5_2021-09-30-060606_unpf.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1105_crop_center-center_82_line/21_RetireAustralia5_2021-09-30-060606_unpf.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2211_crop_center-center_82_line/21_RetireAustralia5_2021-09-30-060606_unpf.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x921_crop_center-center_82_line/21_RetireAustralia5_2021-09-30-060606_unpf.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1843_crop_center-center_82_line/21_RetireAustralia5_2021-09-30-060606_unpf.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x737_crop_center-center_82_line/21_RetireAustralia5_2021-09-30-060606_unpf.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1474_crop_center-center_82_line/21_RetireAustralia5_2021-09-30-060606_unpf.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x552_crop_center-center_82_line/21_RetireAustralia5_2021-09-30-060606_unpf.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x460_crop_center-center_82_line/21_RetireAustralia5_2021-09-30-060606_unpf.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1105,\"3072\":2211,\"1280\":921,\"2560\":1843,\"1024\":737,\"2048\":1474,\"768\":552,\"640\":460},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"7500\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAALABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAEF/8QAHxAAAgICAQUAAAAAAAAAAAAAAQIDEQAEEiEjMVHB/8QAFgEBAQEAAAAAAAAAAAAAAAAAAgAB/8QAFxEBAQEBAAAAAAAAAAAAAAAAAQACEf/aAAwDAQACEQMRAD8A2eaT6pJUzc+jAgg38wKSzns3XSNNchY6BGIjWOGOLW7aBbsmveRasffldUAViBY8ZjRf/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d3d1d0\",\"#6d5642\",\"#a18f7f\",\"#796668\",\"#47ac8c\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":1105,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(47974,51533,1,'Home','2021-10-01 01:02:35','2021-10-01 01:02:35','9cb321d3-e58c-4a98-b793-809ebb6b8cd9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(48098,51670,1,'Home','2021-10-01 01:03:20','2021-10-01 01:03:20','32f599bf-c100-4afb-b68e-6a9458270074',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(48289,51872,1,'Home','2021-10-01 01:04:10','2021-10-01 01:04:10','06e9c380-f398-4fff-a949-8d93dc0806a6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(55173,58762,1,'New Word Order','2021-10-01 06:45:38','2022-05-30 01:20:35','476ae1b6-2985-4c1e-8c5d-ce61bd82e6a5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'We\'ve stepped up',NULL,NULL,'We\'re big believers in making our outsides match our insides.\n\nOur clients always hear us telling them that this is the essence of brand integrity (because it is). And like all people who are striving to go from good to great, we\'ve stepped up.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-14yyQfdrAP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94210\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ajkeoG129p\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our new brand\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As part of our regular brand review process, we decided our old identity didn\'t have the strength of character our current brand embodies. A lot has changed in the past few years: our market shifted, and we shifted with it.\\n\\n**We used our proven brand methodology on ourselves.**\\n\\nOur unique methodology is about knowing our context, opinions, pain points and applying insights. Adding to this our business strategy—to which our brand strategy must align—and we\'re dressed and messaged for success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand audit\",\"text\":\"We laid out where our brand is currently and the story that led us here.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Stakeholder consultation\",\"text\":\"We spoke to our stakeholders to understand how they view and interact with our brand, and their perspective on what needed to change.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand comparison analysis\",\"text\":\"We learned where our business sits among others in Brisbane, around Australia and the world.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand story\",\"text\":\"We documented  the story of our brand as a central narrative so anyone within or connected to our business could access one source of truth.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"Visual brand development\",\"text\":\"We created a new logo and other branding elements that tell our story in multiple layers.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand voice and messaging\",\"text\":\"We defined and documented our new way of writing, speaking and the key messages we want to communicate.\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There is power in gathering insights, applying a proven methodology of insights development and planning a strategic way forward. \\n\\nOur brand informs and impacts every aspect of New Word Order, and gives us a clear direction that challenges the usual way of doing things and ensures anyone who comes into contact with our business knows what we offer and how we will solve their problems.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bEj6Q5npVj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94211\",\"94209\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QGxZjexaIq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This process is what we do for our clients every day, what we do for ourselves, and we\'d like to do this for you, too. Start the conversation with us and discover how a fresh brand will breathe new life into your business.\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Talk to us\",\"buttonImage\":[],\"internalLink\":[\"21297\"],\"externalLink\":null,\"buttonStyle\":\"outline\",\"buttonColour\":\"white\"}}},\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-diijVzsy4h\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Type\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our new typeface is bolder, stronger, and positively dripping with character. Check out the Ns, Ws and Rs in our font—Neue Machina.\\n\\nThe monospace and geometric type features with deep ink traps in the heavier weights.\\n\\nWe love it because of its versatility: clean and minimalist in the lighter weights, but the heavier weights are bold in more ways than one. \\n\\n- Deep ink traps in heavier weights\\n- Overshot terminals\\n- Rounded corners\\n- Monospace-like features\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4bQVkM05o8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94212\",\"94215\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MLS2xXnQoC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Words\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We\'re also intent on re-establishing our roots in the power of the written word. A subtle way we\'re doing this is using words over icons. As an example, see how we used the word \'menu\' instead of a hamburger.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gbJaMB0pnh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94214\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-K3KNRmvlzY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Colours\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our brand colours are mostly black and white with pops of red, green and blue. The colours are the basics in the digital environment (RGB). This is our primary palette—we bring strategy and creativity to form something entirely new and entirely what our clients need to solve their problems and unlock their potential.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-btBIAfxeyp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94216\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VDhaVH930A\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Experiences\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The main reason we\'re keeping our brand so pared back is because we want our creative portfolio to sing. Are you loving the immersive full-screen hover state feature as much as we are? We wanted our brand to allow for such experiences as this.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BRfSdhrk5C\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94221\",\"94220\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Our new brand','Our clients always hear us telling them that this is the essence of brand integrity (because it is). And like all people who are striving to go from good to great, we\'ve stepped up.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(55174,58763,1,'New Word Order','2021-10-08 02:09:53','2021-10-08 02:09:53','74816614-87cf-47b4-a282-10bd4babd850',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'We\'ve stepped up',NULL,NULL,'We\'re big believers in making our outsides match our insides.\n\nOur clients always hear us telling them that this is the essence of brand integrity (because it is). And like all people who are striving to go from good to great, we\'ve stepped up.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1yQgVqAUBG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Brand\",\"plainText\":\"It\'s the secret to staying true, relevant and compelling.\\n\\nIt\'s how we look, speak, sound, behave and operate.\\n\\nIt\'s in the obvious and the subliminal.\\n\\nIt\'s a beautiful mix of strategy, creativity and understanding.\\n\\nThere\'s an art and science behind capturing it, expressing it and managing it.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ajkeoG129p\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new5\",\"new6\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Our new brand\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"As part of our regular brand review process, we decided our old identity didn\'t have the strength of character our current brand embodies. A lot has changed in the past few years: our market shifted, and we shifted with it.\\n\\n**We used our proven brand methodology on ourselves.**\\n\\nOur unique methodology is about knowing our context, opinions, pain points and applying insights. Adding to this our business strategy—to which our brand strategy must align—and we\'re dressed and messaged for success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new5\":{\"type\":\"textGrid\",\"enabled\":\"1\",\"fields\":{\"gridItems\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\",\"new7\"],\"blocks\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand audit\",\"text\":\"We laid out where our brand is currently and the story that led us here.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Stakeholder consultation\",\"text\":\"We spoke to our stakeholders to understand how they view and interact with our brand, and their perspective on what needed to change.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand comparison analysis\",\"text\":\"We learned where our business sits among others in Brisbane, around Australia and the world.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand story\",\"text\":\"We documented  the story of our brand as a central narrative so anyone within or connected to our business could access one source of truth.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"Visual brand development\",\"text\":\"We created a new logo and other branding elements that tell our story in multiple layers.\"}},\"new7\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand voice and messaging\",\"text\":\"We defined and documented our new way of writing, speaking and the key messages we want to communicate.\"}}}}}},\"new6\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"There is power in gathering insights, applying a proven methodology of insights development and planning a strategic way forward. \\n\\nOur brand informs and impacts every aspect of New Word Order, and gives us a clear direction that challenges the usual way of doing things and ensures anyone who comes into contact with our business knows what we offer and how we will solve their problems.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QGxZjexaIq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"sortOrder\":[\"new2\"],\"blocks\":{\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"This process is what we do for our clients every day, what we do for ourselves, and we\'d like to do this for you, too. Start the conversation with us and discover how a fresh brand will breathe new life into your business. \",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}}},\"buttons\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Talk to us\",\"buttonImage\":\"\",\"internalLink\":[\"21297\"],\"externalLink\":\"\",\"buttonStyle\":\"outline\",\"buttonColour\":\"white\"}}}},\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-diijVzsy4h\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Type\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our new typeface is bolder, stronger, and positively dripping with character. Check out the Ns, Ws and Rs in our font—Neue Machina.\\n\\nThe monospace and geometric type features with deep ink traps in the heavier weights.\\n\\nWe love it because of its versatility: clean and minimalist in the lighter weights, but the heavier weights are bold in more ways than one. \\n\\n- Deep ink traps in heavier weights\\n- Overshot terminals\\n- Rounded corners\\n- Monospace-like features\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MLS2xXnQoC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Words\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We\'re also intent on re-establishing our roots in the power of the written word. A subtle way we\'re doing this is using words over icons. As an example, see how we used the word \'menu\' instead of a hamburger on this website. \",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-K3KNRmvlzY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Colours\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our brand colours are mostly black and white with pops of red, green and blue. The colours are the basics in the digital environment (RGB). This is our primary palette—we bring strategy and creativity to form something entirely new and entirely what our clients need to solve their problems and unlock their potential.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VDhaVH930A\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Experiences\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The main reason we\'re keeping our brand so pared back is because we want our creative portfolio to sing. Are you loving the immersive full-screen hover state feature as much as we are? We wanted our brand to allow for such experiences as this.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(55175,58764,1,'2021-10-11 10:12:29','2021-10-11 00:12:29','2021-10-11 00:12:29','75c14fec-d327-4d50-8f21-7d0948af7d96',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(55180,58769,1,'FOPATS','2021-10-14 05:45:58','2021-10-14 05:45:58','61629e38-2143-4a8e-a253-5c37665cc71b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Out with the old, in with the new',NULL,NULL,'FOPATS is a memorable acronym you’ll need to watch our video to decipher. FOPATS’ role was to manage the transition to a new housing and tenancy software platform in Queensland’s Department of Housing and Public Works—a critical tool in the department’s work. We created an employer marketing campaign to help explain the change and developed the character metaphors—two groovy robots—to embody the old and new platforms. Using video, displays, desktop tent cards and digital tools, the project involved branding, character development, video production, print production and software/web design.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(55181,58770,1,'Family and Child Connect','2021-10-14 05:48:03','2021-10-14 05:48:03','ccd7f770-050b-4b6f-ae98-0d1c8f7ba115',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'13 Family',NULL,NULL,'Great campaigns help people change their lives, and this one encourages families in crisis to reach out for real help, no strings attached.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-94Wz43ySiO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Family and Child Connect, within the Department of Communities, Child Safety and Disability Services, needed a campaign to build public awareness of the 13 Family support services.\\n\\nTo broach this sensitive issue, we needed to carry out a multi-channelled campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-77KaMezwdw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We tapped into research that showed this target group is made up of good people who really do love their kids, but have found themselves unable to care for them accordingly.\\n\\nBy understanding our client\'s objectives and the context of the target market, we developed a campaign the audience could relate to and, most importantly, felt encouraged to act.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xxGuN9crsA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We developed the campaign microsite, social media assets, print resources, online advertising and outdoor advertising. Using a variety of static executions for retargeting on social media, we set out for a high call-to-action rate for our client. In less than a month, we delivered a full campaign that broke through the social stigma of Queensland families needing support.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hU0rqO1qB1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our client reported the campaign had a total reach just shy of 1 million people, with 116,743 video views during the reporting period. The website had 11,641 visitors at the time—predominantly women aged 25–44, who were squarely in our target group.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58223,61812,1,'About us','2021-10-18 01:25:31','2021-10-18 01:25:31','43411d49-da3f-458c-a6d8-13feafee79ad',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":\"1\",\"fields\":{\"gridItems\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\",\"new6\"],\"blocks\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Many of our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}}}},\"buttons\":\"\",\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}}},\"buttons\":\"\",\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17910\",\"17881\",\"17848\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\",\"new6\",\"new7\",\"new8\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"\",\"buttonImage\":[\"21910\"],\"internalLink\":\"\",\"externalLink\":\"#footer\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58225,61814,1,'About us','2021-10-18 01:27:52','2021-10-18 01:27:52','da538902-2057-48c3-b341-28a53abb3bcf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":\"1\",\"fields\":{\"gridItems\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\",\"new6\"],\"blocks\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Many of our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}}}},\"buttons\":\"\",\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}}},\"buttons\":\"\",\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17910\",\"17881\",\"17848\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\",\"new6\",\"new7\",\"new8\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58227,61816,1,'About us','2021-10-18 03:42:08','2021-10-18 03:42:08','5250ae77-0874-43b2-bd9b-d5cf9da541de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":\"1\",\"fields\":{\"gridItems\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\",\"new6\"],\"blocks\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Many of our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}}}},\"buttons\":\"\",\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}}},\"buttons\":\"\",\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17910\",\"17881\",\"17848\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\",\"new6\",\"new7\",\"new8\"],\"blocks\":{\"new1\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":\"1\",\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":\"\",\"internalLink\":\"\",\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58230,61819,1,'TRI Comp 6 V2','2021-10-18 04:17:31','2021-10-18 04:17:31','7c72e478-1585-4f7f-b563-15795aaf819b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1115_crop_center-center_82_line/TRI_Comp_6_V2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2230_crop_center-center_82_line/TRI_Comp_6_V2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x929_crop_center-center_82_line/TRI_Comp_6_V2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1859_crop_center-center_82_line/TRI_Comp_6_V2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x743_crop_center-center_82_line/TRI_Comp_6_V2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1487_crop_center-center_82_line/TRI_Comp_6_V2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x557_crop_center-center_82_line/TRI_Comp_6_V2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x464_crop_center-center_82_line/TRI_Comp_6_V2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1115_crop_center-center_82_line/TRI_Comp_6_V2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2230_crop_center-center_82_line/TRI_Comp_6_V2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x929_crop_center-center_82_line/TRI_Comp_6_V2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1859_crop_center-center_82_line/TRI_Comp_6_V2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x743_crop_center-center_82_line/TRI_Comp_6_V2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1487_crop_center-center_82_line/TRI_Comp_6_V2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x557_crop_center-center_82_line/TRI_Comp_6_V2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x464_crop_center-center_82_line/TRI_Comp_6_V2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1115,\"3072\":2230,\"1280\":929,\"2560\":1859,\"1024\":743,\"2048\":1487,\"768\":557,\"640\":464},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"4982\",\"originalImageHeight\":\"3618\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAALABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAwQF/8QAJhAAAQIEAwkAAAAAAAAAAAAAAwECAAQREgUTMRUiMjNBUVKh4f/EABYBAQEBAAAAAAAAAAAAAAAAAAIBA//EABoRAAIDAQEAAAAAAAAAAAAAAAABAhESITH/2gAMAwEAAhEDEQA/ACPKDlMRewIVy0VLapd0+LCUlQHF3wZuXOTggmBRirRaNtr7iaSLmT9N0fNJpxQGaIgexu1xv3rrvJaadoKirsW5Vm+H/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c3c0ba\",\"#253a44\",\"#884529\",\"#6c7b81\",\"#c7732f\"],\"lightness\":46,\"placeholderWidth\":1536,\"placeholderHeight\":1115,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58231,61820,1,'Tritium','2021-10-18 04:17:46','2021-10-18 04:17:46','d10763e0-480a-4300-a42d-cef29fc866dd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league. Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GLSN3YDBFD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"22084\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZeQWeTuQlo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47708\",\"47704\",\"47705\",\"47706\",\"47710\",\"47714\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58233,61822,1,'Contact ','2021-10-18 04:28:19','2021-10-18 04:28:19','e069c76a-b10a-445d-8cd4-7be0bed8a272',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dJRNyHHzcn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Contact us\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Like what you see? Get in touch with us—we can’t wait to meet you.\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}}},\"buttons\":\"\",\"sectionTitle\":\"Contact\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-172EAYLfJn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-JIUNKK7uSu\",\"content\":{\"fields\":{\"freeformForm\":\"2\",\"backgroundColour\":\"bg-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58234,61823,1,'No3 home','2021-10-18 04:48:07','2021-10-18 04:48:07','db5991d2-3570-47ed-ba46-e1c5f5381b42',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/no3-home.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/no3-home.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/no3-home.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/no3-home.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/no3-home.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/no3-home.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/no3-home.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/no3-home.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/no3-home.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/no3-home.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/no3-home.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/no3-home.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/no3-home.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/no3-home.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/no3-home.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/no3-home.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6000\",\"originalImageHeight\":\"3375\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAQIF/8QAHBAAAgICAwAAAAAAAAAAAAAAAREAAgMEEzFS/8QAGAEAAgMAAAAAAAAAAAAAAAAAAAIBAwT/xAAZEQEBAQADAAAAAAAAAAAAAAAAARECAyH/2gAMAwEAAhEDEQA/AMjXAN0UWEHNnZubF1GanHkNXUkeSxG4W2ehFe4wEEv/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#5c3682\",\"#8f632c\",\"#d6c6ba\",\"#91b382\",\"#9c84c8\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58235,61824,1,'What\'s a No. 3?','2021-10-18 04:50:02','2021-10-18 04:50:02','24065a78-443f-4249-9b62-a8ac98011888',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a No. 3? Anything that shouldn\'t go down the loo.',NULL,NULL,'The playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way. We set out to capture the attention of kids and adults with an innovative and integrated campaign that featured interactive and creative design, animation, illustration, merchandise and video.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47724\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YLmNoEn3SV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Water and waste treatment are essential services and flushing the wrong items down the toilet costs Queensland Urban Utilities $200 million every year.\\n\\nUrban Utilities asked us to think of an original, creative campaign idea that would resonate with Queensland families. Our solution was the No. 3 campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FITIFbeFNO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47723\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lKKKRlcirp\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"So, what\'s a No. 3? It\'s anything that shouldn’t go down the loo. Talking about our toilet habits is never comfortable. To navigate our way around the taboo topic, our creative team used humour to influence the bright, quirky look and feel of the entire campaign.\\n\\nThe playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-97JqWmRp6Z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/325104551\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rwksXdZztM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47725\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-szxmUd2L8D\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Result\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The campaign reached 29,790 people in its first month, and we quickly saw signs of behaviour change. \\n\\nAccording to independent market research, 50% of people will no longer flush wet wipes, 48% of people will no longer flush tampons, 47% will no longer flush condoms and 45% will no longer flush cotton buds as a result of seeing this campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xxFbGAqcFU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47726\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2exJaiRsw5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FFU7esnnDy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47727\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cUrrp9Mq8e\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47728\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QpOS0cp79X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47734\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58237,61826,1,'Heart hq','2021-10-18 04:50:54','2021-10-18 04:50:54','76d437af-6811-40a6-8485-74bf9f54f298',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/heart-hq.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2049_crop_center-center_82_line/heart-hq.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/heart-hq.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1707_crop_center-center_82_line/heart-hq.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x683_crop_center-center_82_line/heart-hq.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1366_crop_center-center_82_line/heart-hq.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/heart-hq.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/heart-hq.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/heart-hq.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2049_crop_center-center_82_line/heart-hq.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/heart-hq.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1707_crop_center-center_82_line/heart-hq.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x683_crop_center-center_82_line/heart-hq.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1366_crop_center-center_82_line/heart-hq.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/heart-hq.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/heart-hq.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"3072\":2049,\"1280\":853,\"2560\":1707,\"1024\":683,\"2048\":1366,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6000\",\"originalImageHeight\":\"4002\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABQb/xAAiEAACAQMCBwAAAAAAAAAAAAABAgMABBIRIRQiIzFBYXH/xAAVAQEBAAAAAAAAAAAAAAAAAAAAAf/EABQRAQAAAAAAAAAAAAAAAAAAAAD/2gAMAwEAAhEDEQA/ALC9n4S1kkeQAjsCRv6oCEvo7mAK2QDbFXGOoopK8AaBsgDzeaIKUdRvtRX/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#cac9c8\",\"#37323d\",\"#7a5646\",\"#7d797b\",\"#8f7452\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58238,61827,1,'Heart HQ','2021-10-18 04:54:06','2021-10-18 04:54:06','cc913a54-d1a6-4e9a-a7b9-a12a21e67eac',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'World-class medical with heart',NULL,NULL,'Big ambitions need a brand that accurately reflects their vision and mission, and that’s exactly what we sought to deliver for this client. With Heart HQ, and with the enormous amount of collateral that supports it, we’ve well and truly delivered this.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-P3bQXxcsfs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44878\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uicOuPt9of\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Sunshine Coast Heart Specialists was growing and changing. \\n\\nIn six years, the cardiology practice had grown to nearly 50 staff with rooms throughout the coast. Their cardiologists represented all of the possible sub-specialties within their profession. Within weeks, they would move to new purpose-built premises at Sippy Downs. They were about to open their own coronary CT clinic to the public and a heart murmur clinic to support GPs—both nation-leading initiatives.\\n\\nThe directors realised their geography-specific name would limit their ability to keep growing, and so renaming and rebranding was a strong need.\\n\\nTheir growth had also occurred at such a rate that there was strategic work needed to understand their market share and to form a marketing strategy that would offer them opportunities for segmentation. Growth is reliant on satisfied referring GPs and specialists, and so attention could never be removed from this area.\\n\\nFinally, such growth was also outstripping their capacity to fill the need. Cardiology is a highly specialised field within medicine, and to grow sustainably, they needed to attract more associates.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Lgp01pReVY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44873\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aTg3yWEGh3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Objective\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The practice needed a new name and brand assets for the business to accurately convey the mission and vision of the business, and to grow the business’s referrer and patient networks.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gG5PvaSbvX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44864\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oXH0AQY2PC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our brand strategy drew on customer and referrer interviews, competitor oversight and employee workshops, which also helped to define the brand values of the business. \\n\\nIt was clear the practice and the individual directors were held in high esteem by their medical colleagues. They introduced surgical procedures to the Sunshine Coast that were, until then, only practised by a few in major cities. They were introducing clinics for CT and heart murmurs that had not been seen in regional areas in Australia. This gave us the confidence to be able to propose a tagline that truthfully boasted, ‘world-class cardiac care’.\\n\\nThe second part of the tagline reads: ‘…on the Sunshine Coast’. To compensate for the move away from the regionalisation in their original brand name—Sunshine Coast Heart Specialists—we added it to the tagline. The reason for this is that patients along the coast appreciated the practice was the only place where they could receive the full spectrum of care without having to travel to Brisbane.\\n\\nFinally, an important branding insight from our research was that patients were on a health journey—sometimes quite a precarious one—and could be experiencing anxiety. Patients told us they appreciated the kindness each doctor showed to them in their time of need. Simply promoting expertise could come across as cold and would not fairly represent the doctors’ deep commitment to quality care. So the Heart HQ brand connects with patients on a personal level and makes them feel reassured that they matter.\\n\\nIt’s this mix of strategy and heart that makes Heart HQ a brand that will stand tall among all the others.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ISdJyIN6AW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44874\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDNF080GkR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"A name, tagline, brand visual identity, website, signage and countless assets that match up with Heart HQ’s brand promise of delivering world-class cardiac care on the Sunshine Coast.\\n\\nThe quality of the brand assets significantly differentiates Heart HQ from all other competitor practices.\\n\\nCreatively, the brand is modern, refreshing and arguably not what you would expect from an organisation in the medical field – but at the same time, the language is warm, supportive and with just the right amount of authority.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3VvPbVRO0Q\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45205\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58240,61829,1,'QUU Ekka Toilet 3','2021-10-18 06:15:01','2021-10-18 06:15:01','26eaa91c-4b54-4e1c-94f2-a9e505b10bc7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x768_crop_center-center_82_line/QUU_Ekka_Toilet-3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x640_crop_center-center_82_line/QUU_Ekka_Toilet-3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1280_crop_center-center_82_line/QUU_Ekka_Toilet-3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x512_crop_center-center_82_line/QUU_Ekka_Toilet-3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1024_crop_center-center_82_line/QUU_Ekka_Toilet-3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x384_crop_center-center_82_line/QUU_Ekka_Toilet-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x320_crop_center-center_82_line/QUU_Ekka_Toilet-3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x768_crop_center-center_82_line/QUU_Ekka_Toilet-3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x640_crop_center-center_82_line/QUU_Ekka_Toilet-3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1280_crop_center-center_82_line/QUU_Ekka_Toilet-3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x512_crop_center-center_82_line/QUU_Ekka_Toilet-3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1024_crop_center-center_82_line/QUU_Ekka_Toilet-3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x384_crop_center-center_82_line/QUU_Ekka_Toilet-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x320_crop_center-center_82_line/QUU_Ekka_Toilet-3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"1280\":640,\"2560\":1280,\"1024\":512,\"2048\":1024,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3000\",\"originalImageHeight\":\"1500\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAIABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAwT/xAAdEAACAgEFAAAAAAAAAAAAAAABAgAREgMTI1Fh/8QAFgEBAQEAAAAAAAAAAAAAAAAABQQG/8QAHBEAAQQDAQAAAAAAAAAAAAAAAAECAxETISJB/9oADAMBAAIRAxEAPwBOPD2oTo0fVlJbS2WWlxCAju5a5GYwqNZs+7v0/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#ed5d30\",\"#d7d4d1\",\"#2f4346\",\"#c0a5a5\",\"#942c04\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58241,61830,1,'QUU Ekka Toilet 8','2021-10-18 06:16:57','2021-10-18 06:16:57','1da119a8-3662-4432-b117-b7cfdec4f506',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/QUU_Ekka_Toilet-8.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/QUU_Ekka_Toilet-8.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/QUU_Ekka_Toilet-8.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/QUU_Ekka_Toilet-8.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/QUU_Ekka_Toilet-8.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/QUU_Ekka_Toilet-8.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/QUU_Ekka_Toilet-8.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/QUU_Ekka_Toilet-8.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/QUU_Ekka_Toilet-8.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/QUU_Ekka_Toilet-8.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/QUU_Ekka_Toilet-8.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/QUU_Ekka_Toilet-8.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/QUU_Ekka_Toilet-8.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/QUU_Ekka_Toilet-8.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3000\",\"originalImageHeight\":\"1688\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAwAG/8QAIxAAAgEDAQkAAAAAAAAAAAAAAQIDAAQRBRIhNDVRYXJzsf/EABgBAAMBAQAAAAAAAAAAAAAAAAABAgMF/8QAHREAAgIBBQAAAAAAAAAAAAAAAAIBEQMEMTIzcf/aAAwDAQACEQMRAD8A0hOyGLHAG/PauDV1RQcEqXKLNESUbqMVTpOOZVtxle8FP62+UsXNfQD0vltv4CtNT2sB/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d3e254\",\"#603867\",\"#aea4c4\",\"#c2c68e\",\"#647674\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58242,61831,1,'What\'s a No. 3?','2021-10-18 06:20:17','2021-10-18 06:20:17','297bc55f-302f-40f7-877f-bd7e4755f231',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a No. 3? Anything that shouldn\'t go down the loo.',NULL,NULL,'The playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way. We set out to capture the attention of kids and adults with an innovative and integrated campaign that featured interactive and creative design, animation, illustration, merchandise and video.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YLmNoEn3SV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Water and waste treatment are essential services and flushing the wrong items down the toilet costs Queensland Urban Utilities $200 million every year.\\n\\nUrban Utilities asked us to think of an original, creative campaign idea that would resonate with Queensland families. Our solution was the No. 3 campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FITIFbeFNO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47723\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lKKKRlcirp\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"So, what\'s a No. 3? It\'s anything that shouldn’t go down the loo. Talking about our toilet habits is never comfortable. To navigate our way around the taboo topic, our creative team used humour to influence the bright, quirky look and feel of the entire campaign.\\n\\nThe playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-97JqWmRp6Z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/325104551\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rwksXdZztM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47725\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-szxmUd2L8D\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Result\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The campaign reached 29,790 people in its first month, and we quickly saw signs of behaviour change. \\n\\nAccording to independent market research, 50% of people will no longer flush wet wipes, 48% of people will no longer flush tampons, 47% will no longer flush condoms and 45% will no longer flush cotton buds as a result of seeing this campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xxFbGAqcFU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47726\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2exJaiRsw5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iQhxL9nSze\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\",\"new3\",\"new4\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"61829\"],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/635014768?h=d3d29c9d60&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"GAMETOILET_HD_sound.mp4\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new3\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"61830\"],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/635015208?h=4079228e62&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"VIDEOAD_2_HD_sound\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new4\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/635025685?h=b22d402bd4&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"QUU Ekka footage\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FFU7esnnDy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47727\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QpOS0cp79X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47734\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58244,61833,1,'Citipointe Christian College','2021-10-18 06:53:58','2021-10-18 06:53:58','240e4632-bdf2-49a8-b2df-84f802db99a5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Strategy, brand and enrolments campaign',NULL,NULL,'Our campaign was based around the concept of ‘I can’, which responded to market research with parents and focused on the outcomes for students.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p51LYEpT5O\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47736\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iYNrrlmMZA\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We’ve been working with Citipointe Christian College for a number of years, having first helped them define their brand and distinctives, and then campaigned the brand to great success and high enrolments and waiting lists.\\n\\nWe then faced a new challenge: getting parents to commit for the long haul.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Y6fbAAGpQK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47738\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KQMovznY0B\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We conducted in-depth interviews and asked parents: What would win you back? From their answers, we developed fresh new creative and messaging directly linked to parents’ aspirations for their children.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3Nuc4KqR6i\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47741\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UCCnWZFQHi\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The brand is now visually distinguishing from the competition by moving away from the usual depictions of happy children in school uniforms to a stronger conceptual approach that places students within the real-world situations the school is preparing them to reach.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rcnsOQ5GI8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47740\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V3kt5nqhg3\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Results\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"This campaign is unlike anything else in the school market. It’s a powerful differentiator that’s continuing high levels of interest in the target market and enrolments and tour attendance are still growing.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jZNg6COExC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47742\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wchbDpZwnc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47739\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58245,61834,1,'Tritium 1','2021-10-18 07:12:48','2021-10-18 07:12:48','d34db8ab-6db5-451b-8d05-88776e8c4cb0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x960_crop_center-center_82_line/Tritium-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x800_crop_center-center_82_line/Tritium-1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1600_crop_center-center_82_line/Tritium-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x640_crop_center-center_82_line/Tritium-1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1280_crop_center-center_82_line/Tritium-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x480_crop_center-center_82_line/Tritium-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x400_crop_center-center_82_line/Tritium-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x960_crop_center-center_82_line/Tritium-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x800_crop_center-center_82_line/Tritium-1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1600_crop_center-center_82_line/Tritium-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x640_crop_center-center_82_line/Tritium-1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1280_crop_center-center_82_line/Tritium-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x480_crop_center-center_82_line/Tritium-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x400_crop_center-center_82_line/Tritium-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":960,\"1280\":800,\"2560\":1600,\"1024\":640,\"2048\":1280,\"768\":480,\"640\":400},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3000\",\"originalImageHeight\":\"1875\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAgEG/8QAGxAAAgIDAQAAAAAAAAAAAAAAAQIAEQMiMXH/xAAWAQEBAQAAAAAAAAAAAAAAAAABAAL/xAAXEQEBAQEAAAAAAAAAAAAAAAAAEQEh/9oADAMBAAIRAxEAPwDdlmGNC2rHoq4s3Z0mYhLUWfIEpFZJ/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#239abe\",\"#edf5f6\",\"#94cdda\",\"#7e8e96\",\"#99a4a4\"],\"lightness\":65,\"placeholderWidth\":1536,\"placeholderHeight\":960,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58246,61835,1,'Tritium 2','2021-10-18 07:12:56','2021-10-18 07:12:56','22670d5a-e24c-427e-b729-a8bafe12a12a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/Tritium-2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/Tritium-2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/Tritium-2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/Tritium-2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/Tritium-2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/Tritium-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/Tritium-2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/Tritium-2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/Tritium-2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/Tritium-2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/Tritium-2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/Tritium-2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/Tritium-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/Tritium-2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"1280\":768,\"2560\":1536,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":384},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3000\",\"originalImageHeight\":\"1800\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABAX/xAAfEAACAgEEAwAAAAAAAAAAAAABAgMEAAURMUESMnP/xAAXAQADAQAAAAAAAAAAAAAAAAABAgQD/8QAHREAAgMAAgMAAAAAAAAAAAAAAAECERIhMQMygf/aAAwDAQACEQMRAD8AVQ0SOXTgrQxNNKiyo5PC95TqNp1wQ4nlxvnv4SLktNZ7SpAoDKBH4jYKe+8NOLpi6XkVoZQ4HyGI+jWPsQW9jhFR/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1b4d5f\",\"#d4e3e8\",\"#0c95c7\",\"#17b3e1\",\"#428599\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58247,61836,1,'Tritium 3','2021-10-18 07:12:58','2021-10-18 07:12:58','08c2eb8c-8239-402c-a741-f0085a461545',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x922_crop_center-center_82_line/Tritium-3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/Tritium-3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/Tritium-3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/Tritium-3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1229_crop_center-center_82_line/Tritium-3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x461_crop_center-center_82_line/Tritium-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/Tritium-3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x922_crop_center-center_82_line/Tritium-3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/Tritium-3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/Tritium-3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/Tritium-3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1229_crop_center-center_82_line/Tritium-3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x461_crop_center-center_82_line/Tritium-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/Tritium-3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":922,\"1280\":768,\"2560\":1536,\"1024\":614,\"2048\":1229,\"768\":461,\"640\":384},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3000\",\"originalImageHeight\":\"1801\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABQL/xAAfEAEAAQMEAwAAAAAAAAAAAAABAAIDEQQFIVESMTL/xAAWAQEBAQAAAAAAAAAAAAAAAAAEBQb/xAAbEQACAgMBAAAAAAAAAAAAAAAAAwIyASExBP/aAAwDAQACEQMRAD8Aq4DUFTgXl6lmRlV92F7gB5FLkHh7h21HovoSv+onJPgF635h28H+ex//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#05a4d6\",\"#105c74\",\"#d7edf5\",\"#70d4f4\",\"#047cc4\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":922,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58248,61837,1,'Tritium 4','2021-10-18 07:13:01','2021-10-18 07:13:01','2939acba-b670-48d1-a256-d54e6a69725b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x860_crop_center-center_82_line/Tritium-4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x716_crop_center-center_82_line/Tritium-4.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1433_crop_center-center_82_line/Tritium-4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x573_crop_center-center_82_line/Tritium-4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1146_crop_center-center_82_line/Tritium-4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x430_crop_center-center_82_line/Tritium-4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x358_crop_center-center_82_line/Tritium-4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x860_crop_center-center_82_line/Tritium-4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x716_crop_center-center_82_line/Tritium-4.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1433_crop_center-center_82_line/Tritium-4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x573_crop_center-center_82_line/Tritium-4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1146_crop_center-center_82_line/Tritium-4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x430_crop_center-center_82_line/Tritium-4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x358_crop_center-center_82_line/Tritium-4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":860,\"1280\":716,\"2560\":1433,\"1024\":573,\"2048\":1146,\"768\":430,\"640\":358},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3000\",\"originalImageHeight\":\"1680\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAIABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABAb/xAAhEAABBAEDBQAAAAAAAAAAAAACAQMEEQUAEyESIjFBcf/EABUBAQEAAAAAAAAAAAAAAAAAAAID/8QAHBEAAgMAAwEAAAAAAAAAAAAAAQIAAxESITFR/9oADAMBAAIRAxEAPwCiGXlCiLKUaISUdvoXnu8181RFBbDIWMypq+wMmdliyLTbSyAa3lEqb4q091pMFzqCs2aeX2f/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#285867\",\"#e2e4e1\",\"#15a8d6\",\"#c96841\",\"#84acac\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":860,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58249,61838,1,'Tritium 5','2021-10-18 07:13:05','2021-10-18 07:13:05','51aabd13-2f8b-4a9c-b4e3-306b1df9233c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1228_crop_center-center_82_line/Tritium-5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1024_crop_center-center_82_line/Tritium-5.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2048_crop_center-center_82_line/Tritium-5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x819_crop_center-center_82_line/Tritium-5.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1638_crop_center-center_82_line/Tritium-5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x614_crop_center-center_82_line/Tritium-5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x512_crop_center-center_82_line/Tritium-5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1228_crop_center-center_82_line/Tritium-5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1024_crop_center-center_82_line/Tritium-5.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2048_crop_center-center_82_line/Tritium-5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x819_crop_center-center_82_line/Tritium-5.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1638_crop_center-center_82_line/Tritium-5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x614_crop_center-center_82_line/Tritium-5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x512_crop_center-center_82_line/Tritium-5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1228,\"1280\":1024,\"2560\":2048,\"1024\":819,\"2048\":1638,\"768\":614,\"640\":512},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3000\",\"originalImageHeight\":\"2400\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAMABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQME/8QAHxAAAgEDBQEAAAAAAAAAAAAAAQMCAAQRBQYSEzFx/8QAFwEAAwEAAAAAAAAAAAAAAAAAAQIDBP/EABsRAAMBAAMBAAAAAAAAAAAAAAABAiEREjFR/9oADAMBAAIRAxEAPwAZFlcuX2rROax6QK0pfTE3ysEl6Zbot7s30oQdBWVQ7Bnl8oN7gVOPsU2/KTLVy5SPESBGDip1KKw2ZNwOk/V3MkACRHz4KefBL1n/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1e4d5d\",\"#d6ddda\",\"#1f91be\",\"#20799b\",\"#6db4d1\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":1228,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58250,61839,1,'Tritium 6','2021-10-18 07:13:10','2021-10-18 07:13:10','bdcfd4ab-c713-4564-a069-5b83029999b3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1105_crop_center-center_82_line/Tritium-6.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x921_crop_center-center_82_line/Tritium-6.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1843_crop_center-center_82_line/Tritium-6.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x737_crop_center-center_82_line/Tritium-6.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1474_crop_center-center_82_line/Tritium-6.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x552_crop_center-center_82_line/Tritium-6.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x460_crop_center-center_82_line/Tritium-6.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1105_crop_center-center_82_line/Tritium-6.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x921_crop_center-center_82_line/Tritium-6.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1843_crop_center-center_82_line/Tritium-6.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x737_crop_center-center_82_line/Tritium-6.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1474_crop_center-center_82_line/Tritium-6.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x552_crop_center-center_82_line/Tritium-6.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x460_crop_center-center_82_line/Tritium-6.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1105,\"1280\":921,\"2560\":1843,\"1024\":737,\"2048\":1474,\"768\":552,\"640\":460},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3000\",\"originalImageHeight\":\"2160\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAALABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQAD/8QAHhAAAgICAwEBAAAAAAAAAAAAAgMBBQQRABIxEyH/xAAWAQEBAQAAAAAAAAAAAAAAAAABAwT/xAAZEQEBAQEBAQAAAAAAAAAAAAABAgADERL/2gAMAwEAAhEDEQA/AGaatrn1IGzGA2/PZFMT7+8rV19IOzc+UPMU1ZVmGqke0cNYMFcSJx7vfGLprxcdecEKGPwc/KTXgC29RgNa6xylSe+6MdKJ892lhn5J1bFkzYSMRMdY4TIObumEd//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#086b89\",\"#e3e6e5\",\"#dc6a2d\",\"#45c6e3\",\"#292d2e\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":1105,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58251,61840,1,'Tritium 7','2021-10-18 07:13:16','2021-10-18 07:13:16','24270849-9860-4c84-9942-01866ebedcaa',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x2150_crop_center-center_82_line/Tritium-7.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1792_crop_center-center_82_line/Tritium-7.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x3584_crop_center-center_82_line/Tritium-7.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1433_crop_center-center_82_line/Tritium-7.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2867_crop_center-center_82_line/Tritium-7.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x1075_crop_center-center_82_line/Tritium-7.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x896_crop_center-center_82_line/Tritium-7.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x2150_crop_center-center_82_line/Tritium-7.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1792_crop_center-center_82_line/Tritium-7.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x3584_crop_center-center_82_line/Tritium-7.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1433_crop_center-center_82_line/Tritium-7.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2867_crop_center-center_82_line/Tritium-7.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x1075_crop_center-center_82_line/Tritium-7.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x896_crop_center-center_82_line/Tritium-7.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":2150,\"1280\":1792,\"2560\":3584,\"1024\":1433,\"2048\":2867,\"768\":1075,\"640\":896},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3000\",\"originalImageHeight\":\"4200\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAWABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAgMFBP/EACQQAAICAgECBwEAAAAAAAAAAAECAxEAEgQiMQUVISMyYXGx/8QAGAEAAwEBAAAAAAAAAAAAAAAAAQIDAAT/xAAdEQACAgIDAQAAAAAAAAAAAAAAAQIRAxIhMUFR/9oADAMBAAIRAxEAPwC+nmjeLSruh4ysCFsWF/uVioauznk8m6UevSuQpBruO/1k6LpiWMm0hjcLqAT02ao4OWakuRCSTF4laZuqifarYa+tn9w0C1YfKgeeXjushjETWQB8saM9U19EniU5KV9GjEKn/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e4e5e5\",\"#1d7691\",\"#8fa3aa\",\"#999252\",\"#815c55\"],\"lightness\":60,\"placeholderWidth\":1536,\"placeholderHeight\":2150,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58252,61841,1,'Tritium 8','2021-10-18 07:13:19','2021-10-18 07:13:19','c31a475f-ac5c-429d-b236-dd37820fd5c3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/Tritium-8.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/Tritium-8.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/Tritium-8.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/Tritium-8.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/Tritium-8.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/Tritium-8.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/Tritium-8.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/Tritium-8.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/Tritium-8.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/Tritium-8.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/Tritium-8.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/Tritium-8.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/Tritium-8.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/Tritium-8.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"1280\":768,\"2560\":1536,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":384},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3000\",\"originalImageHeight\":\"1800\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAAEEBf/EACIQAAIBAwMFAQAAAAAAAAAAAAECAwAEEQUGwRIxNFFxcv/EABcBAAMBAAAAAAAAAAAAAAAAAAABBAP/xAAaEQACAwEBAAAAAAAAAAAAAAAAAQIDETES/9oADAMBAAIRAxEAPwDZ1u8eCVESRkLISADj3VFSXh6RXuStjjJtpzz3D3LTXEsoXAHU2QM81lJYUVvdHr/m2/4PNOPAn1BtXtdfV5pSCs//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e2e2e3\",\"#1b5061\",\"#0ba5db\",\"#e36439\",\"#6c847c\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58253,61842,1,'Tritium 9','2021-10-18 07:13:35','2021-10-18 07:13:35','1b688e71-4851-45bd-bedd-25663029e537',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x3552_crop_center-center_82_line/Tritium-9.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x2960_crop_center-center_82_line/Tritium-9.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x5920_crop_center-center_82_line/Tritium-9.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x2368_crop_center-center_82_line/Tritium-9.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x4736_crop_center-center_82_line/Tritium-9.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x1776_crop_center-center_82_line/Tritium-9.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x1480_crop_center-center_82_line/Tritium-9.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x3552_crop_center-center_82_line/Tritium-9.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x2960_crop_center-center_82_line/Tritium-9.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x5920_crop_center-center_82_line/Tritium-9.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x2368_crop_center-center_82_line/Tritium-9.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x4736_crop_center-center_82_line/Tritium-9.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x1776_crop_center-center_82_line/Tritium-9.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x1480_crop_center-center_82_line/Tritium-9.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":3552,\"1280\":2960,\"2560\":5920,\"1024\":2368,\"2048\":4736,\"768\":1776,\"640\":1480},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3000\",\"originalImageHeight\":\"6938\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAlABADAREAAhEBAxEB/8QAGAABAQADAAAAAAAAAAAAAAAABAMABQb/xAApEAACAQMDAwEJAAAAAAAAAAABAgMEESEABRIGEzFRFBZBYXGBkcHh/8QAFwEBAQEBAAAAAAAAAAAAAAAAAwIAAf/EAB0RAAICAwEBAQAAAAAAAAAAAAABAhEDEjEhQVH/2gAMAwEAAhEDEQA/AFdYzou6ojIWJhFjfwbnOlg/A5r0r0jLC25S9uMqTFe/K+MfvWnw5DoTfapa/eopqBjKrQlPHHOfXRKUa6JTsv0zRz7XVtNWx9tO1xBDhrm4+A1Dy/vBFjXzple1JQbs1JHCFCDDZJFx/TpNE0Fu4sfTTRbtG0bz+zrTOMtaz4+2jeOvLLWS/TXe79R2jI8Dhrjy9zbHz+v50jaRyrFrR0TTwoJZFmcrcAXFxbHnRqe3GVrXUdRNEs0ZR72PobapqzidBRtNKJFez8lYMDzPkaySRrZ//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#3b4d59\",\"#e2d0bd\",\"#968981\",\"#a7c3cf\",\"#92a9bd\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":3552,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58254,61843,1,'Tritium website','2021-10-18 07:13:45','2021-10-18 07:13:45','207441a1-7201-4dcd-a8d0-e25e395785cd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x2688_crop_center-center_82_line/Tritium-website.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x2240_crop_center-center_82_line/Tritium-website.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x4480_crop_center-center_82_line/Tritium-website.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1792_crop_center-center_82_line/Tritium-website.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x3584_crop_center-center_82_line/Tritium-website.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x1344_crop_center-center_82_line/Tritium-website.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x1120_crop_center-center_82_line/Tritium-website.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x2688_crop_center-center_82_line/Tritium-website.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x2240_crop_center-center_82_line/Tritium-website.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x4480_crop_center-center_82_line/Tritium-website.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1792_crop_center-center_82_line/Tritium-website.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x3584_crop_center-center_82_line/Tritium-website.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x1344_crop_center-center_82_line/Tritium-website.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x1120_crop_center-center_82_line/Tritium-website.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":2688,\"1280\":2240,\"2560\":4480,\"1024\":1792,\"2048\":3584,\"768\":1344,\"640\":1120},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3000\",\"originalImageHeight\":\"5250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAcABADAREAAhEBAxEB/8QAGAAAAwEBAAAAAAAAAAAAAAAAAwQFAAL/xAAjEAACAgICAgEFAAAAAAAAAAABAwIRAAQFIRJRExQjMUFx/8QAGQEAAwEBAQAAAAAAAAAAAAAAAAECBAMF/8QAHBEAAgMBAQEBAAAAAAAAAAAAAQIAAwQRYRKB/9oADAMBAAIRAxEAPwBfVVtuL5q02bCoSABgLo1+KvNltjBiAZ5uehGrBI7AMltReoN1WIWbsyiRZo0O/wCYqbWZuEw0UItZIHJf4af0+pKS4CRkw+VuMP0KxaQAemViZinPZ3zSGDSjN2t8P3QYj5TPvxN4swH1K3MRX+yJDfdpsISOyLv1l6FBacsblUMb2+ddySxrtRBYifOxdnDOvGhsYlAPYFLYLBvXSw+5xsjND1hj0zHXe1Y4JnNgwda6Vn3CNHBKwp6IWXtYOGf/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#138ab1\",\"#d9dcda\",\"#0e1d20\",\"#345254\",\"#54dae8\"],\"lightness\":45,\"placeholderWidth\":1536,\"placeholderHeight\":2688,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58256,61845,1,'Tritium','2021-10-18 07:16:09','2021-10-18 07:16:09','dd0c4126-2ec7-462c-9ea2-4761cbc47050',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league. Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GLSN3YDBFD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"22084\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZeQWeTuQlo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"61834\",\"61836\",\"61835\",\"61840\",\"61837\",\"61838\",\"61841\",\"61843\",\"61839\",\"61842\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58258,61847,1,'TRI Comp 9','2021-10-18 07:23:24','2021-10-18 07:23:24','afedc3f7-4508-458e-a01e-9b8a338ffeb9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1023_crop_center-center_82_line/TRI_Comp_9.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2047_crop_center-center_82_line/TRI_Comp_9.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/TRI_Comp_9.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/TRI_Comp_9.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/TRI_Comp_9.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1364_crop_center-center_82_line/TRI_Comp_9.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x511_crop_center-center_82_line/TRI_Comp_9.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/TRI_Comp_9.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1023_crop_center-center_82_line/TRI_Comp_9.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2047_crop_center-center_82_line/TRI_Comp_9.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/TRI_Comp_9.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/TRI_Comp_9.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/TRI_Comp_9.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1364_crop_center-center_82_line/TRI_Comp_9.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x511_crop_center-center_82_line/TRI_Comp_9.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/TRI_Comp_9.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1023,\"3072\":2047,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1364,\"768\":511,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"3865\",\"originalImageHeight\":\"2576\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQAE/8QAIRAAAQIGAgMAAAAAAAAAAAAAAQIDAAQFERMhBiJhcaH/xAAXAQADAQAAAAAAAAAAAAAAAAABAgME/8QAGBEAAwEBAAAAAAAAAAAAAAAAAAERQTH/2gAMAwEAAhEDEQA/AMjNQaU+nMokIbA6o8+4rWZ4hGd5C5T5RBYdSpI0OoJH2Fc6OmwKSJzAX1eKYQ0qwSU2J1eA+D6f/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#456977\",\"#dcdddc\",\"#98b5c8\",\"#0b1f1e\",\"#98b4b2\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":1023,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58259,61848,1,'Tritium','2021-10-18 07:27:33','2021-10-18 07:27:33','8c1992d5-85b3-4d9a-92e4-92768c396428',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league. Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GLSN3YDBFD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"61836\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cbGNJ13Gop\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"61834\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LrG99HVOYN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"61847\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tritium commissioned us to update their brand—to put their internal culture of creativity and innovation on display and to share it with the world.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-z8jrs5ltRY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"61835\",\"61837\",\"61839\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-augwUTtLwL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":null,\"plainText\":\"We turned up the voltage on the launch of the new brand with this show-stopping animated brand video.\\n\\nWith an appetite only satisfied by global domination and a powerful vision of energy freedom, Tritium’s journey has only just begun… but they started in the fast lane. We developed a set of foundational branding elements that showcase who Tritium is now and prepares for their exciting future.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZeQWeTuQlo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"61840\",\"61838\",\"61841\",\"61843\",\"61842\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58260,61849,1,'Tritium','2021-10-18 07:29:57','2021-10-18 07:29:57','e58b9d24-1312-48e1-bd21-e84fa468417f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league. Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GLSN3YDBFD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"61836\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cbGNJ13Gop\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"61834\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LrG99HVOYN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"61847\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tritium commissioned us to update their brand—to put their internal culture of creativity and innovation on display and to share it with the world.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-z8jrs5ltRY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"61835\",\"61837\",\"61839\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-augwUTtLwL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":null,\"plainText\":\"We turned up the voltage on the launch of the new brand with this show-stopping animated brand video.\\n\\nWith an appetite only satisfied by global domination and a powerful vision of energy freedom, Tritium’s journey has only just begun… but they started in the fast lane. We developed a set of foundational branding elements that showcase who Tritium is now and prepares for their exciting future.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZeQWeTuQlo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"61840\",\"61838\",\"61841\",\"61843\",\"61842\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58262,61851,1,'Tritium 5000','2021-10-18 07:36:20','2021-10-18 07:36:20','4cf55301-ae74-4635-b1b6-16bbed87c591',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x2150_crop_center-center_82_line/Tritium-5000.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x4300_crop_center-center_82_line/Tritium-5000.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1792_crop_center-center_82_line/Tritium-5000.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x3584_crop_center-center_82_line/Tritium-5000.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1433_crop_center-center_82_line/Tritium-5000.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2867_crop_center-center_82_line/Tritium-5000.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x1075_crop_center-center_82_line/Tritium-5000.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x896_crop_center-center_82_line/Tritium-5000.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x2150_crop_center-center_82_line/Tritium-5000.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x4300_crop_center-center_82_line/Tritium-5000.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1792_crop_center-center_82_line/Tritium-5000.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x3584_crop_center-center_82_line/Tritium-5000.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1433_crop_center-center_82_line/Tritium-5000.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2867_crop_center-center_82_line/Tritium-5000.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x1075_crop_center-center_82_line/Tritium-5000.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x896_crop_center-center_82_line/Tritium-5000.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":2150,\"3072\":4300,\"1280\":1792,\"2560\":3584,\"1024\":1433,\"2048\":2867,\"768\":1075,\"640\":896},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"5000\",\"originalImageHeight\":\"7000\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAWABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAgMFBP/EACUQAAICAQMBCQAAAAAAAAAAAAECAxEABBIiBRMVISMxMmFxsf/EABgBAAMBAQAAAAAAAAAAAAAAAAECAwAE/8QAHREAAgICAwEAAAAAAAAAAAAAAAECEQMSITFBUf/aAAwDAQACEQMRAD8Avx96N1eRdyHSqwIWxYX9ysdNXZzyeTdKPXpXIUg0OQ9fjJl0xLGTdIY3C7QCeNmqODlmpLkQkkxeJWmblRPlVuG3xs/dYaBasPVQPPLp3WTsxC1kAe7GjPVNfRJ4lOSlfRoxCp//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e4e6e6\",\"#1c7692\",\"#8fa2a9\",\"#95904e\",\"#805b56\"],\"lightness\":60,\"placeholderWidth\":1536,\"placeholderHeight\":2150,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(58263,61852,1,'Tritium','2021-10-18 07:36:35','2021-10-18 07:36:35','25f442f1-1124-40d5-943b-789a40cef6c4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league. Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GLSN3YDBFD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"61836\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cbGNJ13Gop\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"61834\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LrG99HVOYN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"61847\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We turned up the voltage on the launch of the new brand with this show-stopping animated brand video.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With an appetite only satisfied by global domination and a powerful vision of energy freedom, Tritium’s journey has only just begun… but they started in the fast lane. We developed a set of foundational branding elements that showcase who Tritium is now and prepares for their exciting future.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-z8jrs5ltRY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"61851\",\"61835\",\"61837\",\"61839\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZeQWeTuQlo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"61840\",\"61838\",\"61841\",\"61843\",\"61842\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70338,73927,1,'Tritium','2021-10-19 11:27:41','2021-10-19 11:27:41','2051e6e3-7872-4a59-a104-7390316aee8b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league. Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GLSN3YDBFD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"47699\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cbGNJ13Gop\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47697\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LrG99HVOYN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"61847\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We turned up the voltage on the launch of the new brand with this show-stopping animated brand video.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With an appetite only satisfied by global domination and a powerful vision of energy freedom, Tritium’s journey has only just begun… but they started in the fast lane. We developed a set of foundational branding elements that showcase who Tritium is now and prepares for their exciting future.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-z8jrs5ltRY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"61851\",\"61835\",\"61837\",\"61839\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZeQWeTuQlo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"61840\",\"61838\",\"61841\",\"61843\",\"61842\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70341,73930,1,'Tritium','2021-10-19 11:31:42','2021-10-19 11:31:42','4a8e5360-a087-46ae-9ab0-4ff15db76845',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league. Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GLSN3YDBFD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"47699\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cbGNJ13Gop\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47697\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LrG99HVOYN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"61847\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We turned up the voltage on the launch of the new brand with this show-stopping animated brand video.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With an appetite only satisfied by global domination and a powerful vision of energy freedom, Tritium’s journey has only just begun… but they started in the fast lane. We developed a set of foundational branding elements that showcase who Tritium is now and prepares for their exciting future.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-z8jrs5ltRY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"61851\",\"61835\",\"61837\",\"61839\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZeQWeTuQlo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"61840\",\"61838\",\"61841\",\"61843\",\"61842\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70346,73935,1,'21 Tritium7','2021-10-20 03:38:16','2021-10-20 03:38:16','d29666ef-b715-4811-bc8b-3e82f6439dc6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x2703_crop_center-center_82_line/21_Tritium7_2021-10-20-033816_izqz.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x5406_crop_center-center_82_line/21_Tritium7_2021-10-20-033816_izqz.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x2252_crop_center-center_82_line/21_Tritium7_2021-10-20-033816_izqz.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x4505_crop_center-center_82_line/21_Tritium7_2021-10-20-033816_izqz.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1802_crop_center-center_82_line/21_Tritium7_2021-10-20-033816_izqz.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x3604_crop_center-center_82_line/21_Tritium7_2021-10-20-033816_izqz.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x1351_crop_center-center_82_line/21_Tritium7_2021-10-20-033816_izqz.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x1126_crop_center-center_82_line/21_Tritium7_2021-10-20-033816_izqz.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x2703_crop_center-center_82_line/21_Tritium7_2021-10-20-033816_izqz.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x5406_crop_center-center_82_line/21_Tritium7_2021-10-20-033816_izqz.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x2252_crop_center-center_82_line/21_Tritium7_2021-10-20-033816_izqz.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x4505_crop_center-center_82_line/21_Tritium7_2021-10-20-033816_izqz.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1802_crop_center-center_82_line/21_Tritium7_2021-10-20-033816_izqz.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x3604_crop_center-center_82_line/21_Tritium7_2021-10-20-033816_izqz.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x1351_crop_center-center_82_line/21_Tritium7_2021-10-20-033816_izqz.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x1126_crop_center-center_82_line/21_Tritium7_2021-10-20-033816_izqz.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":2703,\"3072\":5406,\"1280\":2252,\"2560\":4505,\"1024\":1802,\"2048\":3604,\"768\":1351,\"640\":1126},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"18333\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAcABADAREAAhEBAxEB/8QAGAAAAgMAAAAAAAAAAAAAAAAAAAQCBQb/xAAkEAACAgEEAQQDAAAAAAAAAAABAgMRBAAFEiETFDEyoSOR8P/EABgBAQADAQAAAAAAAAAAAAAAAAABAgQD/8QAHBEAAgMBAQEBAAAAAAAAAAAAAQIAAxEEYRIh/9oADAMBAAIRAxEAPwBbFxcyfzyxYT5MQfiCp7B4jqtabWIc/sw89amsEiLyx5cc8JlxHgTlTMRXuD0f1pS5LgbHRWBWTk02zZD4uB+FITylblzfj3QrTowNpleNmKZ7Jb3HOdvvIxooR5FKhGvujeo5gPuX7WIrlCm4y4cjLEBZF3ftq/QoLTlxuVQiN5W/y7lF6Z4FQBufIE2f69TQuNHW5NeewxI4GQtJjpI1/Ji1/R11sQE7M9FpVcAhlxwBA0eOiNfyUtf2dK0CnYvtLLhE/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1a8aaf\",\"#e1e0dd\",\"#0a1518\",\"#345051\",\"#6dd9e4\"],\"lightness\":45,\"placeholderWidth\":1536,\"placeholderHeight\":2703,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70347,73936,1,'21 Tritium6','2021-10-20 03:38:59','2021-10-20 03:38:59','8c580a37-f878-4e4c-8555-4a7871e2fb91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1274_crop_center-center_82_line/21_Tritium6_2021-10-20-033858_dfmf.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2549_crop_center-center_82_line/21_Tritium6_2021-10-20-033858_dfmf.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1062_crop_center-center_82_line/21_Tritium6_2021-10-20-033858_dfmf.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2124_crop_center-center_82_line/21_Tritium6_2021-10-20-033858_dfmf.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x849_crop_center-center_82_line/21_Tritium6_2021-10-20-033858_dfmf.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1699_crop_center-center_82_line/21_Tritium6_2021-10-20-033858_dfmf.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x637_crop_center-center_82_line/21_Tritium6_2021-10-20-033858_dfmf.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x531_crop_center-center_82_line/21_Tritium6_2021-10-20-033858_dfmf.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1274_crop_center-center_82_line/21_Tritium6_2021-10-20-033858_dfmf.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2549_crop_center-center_82_line/21_Tritium6_2021-10-20-033858_dfmf.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1062_crop_center-center_82_line/21_Tritium6_2021-10-20-033858_dfmf.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2124_crop_center-center_82_line/21_Tritium6_2021-10-20-033858_dfmf.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x849_crop_center-center_82_line/21_Tritium6_2021-10-20-033858_dfmf.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1699_crop_center-center_82_line/21_Tritium6_2021-10-20-033858_dfmf.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x637_crop_center-center_82_line/21_Tritium6_2021-10-20-033858_dfmf.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x531_crop_center-center_82_line/21_Tritium6_2021-10-20-033858_dfmf.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1274,\"3072\":2549,\"1280\":1062,\"2560\":2124,\"1024\":849,\"2048\":1699,\"768\":637,\"640\":531},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"8646\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAANABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQEC/8QAIBAAAgIBBAMBAAAAAAAAAAAAAQIDBAUABhESITGxYf/EABYBAQEBAAAAAAAAAAAAAAAAAAADBP/EABoRAAIDAQEAAAAAAAAAAAAAAAECAAMRBBL/2gAMAwEAAhEDEQA/AEcXgKFvGJPIZDKU7EBvA9/mrtaQ2CY6+dWQMZL2BowYmaxGswkRAwLN450Wxi2GLKEVCRDae4bVOqK8UcRUL15IPP3VDUCdkF6GVfM1a3Jas0nqvFEEdepIB5+6CoA7DdDMvkz/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e3e6e5\",\"#076a88\",\"#50c7e8\",\"#0ea5d6\",\"#312b28\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":1274,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70348,73937,1,'21 Tritium5','2021-10-20 03:39:26','2021-10-20 03:39:26','97f9dfd9-c6e9-4bf3-b7a2-8cb425d09a49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/21_Tritium5_2021-10-20-033925_nmqg.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x3072_crop_center-center_82_line/21_Tritium5_2021-10-20-033925_nmqg.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/21_Tritium5_2021-10-20-033925_nmqg.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2560_crop_center-center_82_line/21_Tritium5_2021-10-20-033925_nmqg.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/21_Tritium5_2021-10-20-033925_nmqg.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2048_crop_center-center_82_line/21_Tritium5_2021-10-20-033925_nmqg.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/21_Tritium5_2021-10-20-033925_nmqg.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/21_Tritium5_2021-10-20-033925_nmqg.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/21_Tritium5_2021-10-20-033925_nmqg.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x3072_crop_center-center_82_line/21_Tritium5_2021-10-20-033925_nmqg.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/21_Tritium5_2021-10-20-033925_nmqg.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2560_crop_center-center_82_line/21_Tritium5_2021-10-20-033925_nmqg.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/21_Tritium5_2021-10-20-033925_nmqg.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2048_crop_center-center_82_line/21_Tritium5_2021-10-20-033925_nmqg.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/21_Tritium5_2021-10-20-033925_nmqg.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/21_Tritium5_2021-10-20-033925_nmqg.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"3072\":3072,\"1280\":1280,\"2560\":2560,\"1024\":1024,\"2048\":2048,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"10417\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABAX/xAAeEAABBQEAAwEAAAAAAAAAAAABAgMEBREAEyIjkf/EABgBAAIDAAAAAAAAAAAAAAAAAAACAQME/8QAGREBAAMBAQAAAAAAAAAAAAAAAQACESFB/9oADAMBAAIRAxEAPwAddWx5kNbhU8XEqAxtO9c3zyZq0X2HtYArrByMHPIEZ7EZujeavTYlzHIRtZQdBOcEHpKzKa1ESUZD7TrymvjgVoV+cWdeSa1AdZ//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1d4e5e\",\"#d3dad7\",\"#3299c4\",\"#1e769c\",\"#8caca0\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70349,73938,1,'21 Tritium4','2021-10-20 03:39:49','2021-10-20 03:39:49','0f9088ca-d1f6-4c74-adea-3d41203e129b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x614_crop_center-center_82_line/21_Tritium4_2021-10-20-033949_apun.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1228_crop_center-center_82_line/21_Tritium4_2021-10-20-033949_apun.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x512_crop_center-center_82_line/21_Tritium4_2021-10-20-033949_apun.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1024_crop_center-center_82_line/21_Tritium4_2021-10-20-033949_apun.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x409_crop_center-center_82_line/21_Tritium4_2021-10-20-033949_apun.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x819_crop_center-center_82_line/21_Tritium4_2021-10-20-033949_apun.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x307_crop_center-center_82_line/21_Tritium4_2021-10-20-033949_apun.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x256_crop_center-center_82_line/21_Tritium4_2021-10-20-033949_apun.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x614_crop_center-center_82_line/21_Tritium4_2021-10-20-033949_apun.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1228_crop_center-center_82_line/21_Tritium4_2021-10-20-033949_apun.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x512_crop_center-center_82_line/21_Tritium4_2021-10-20-033949_apun.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1024_crop_center-center_82_line/21_Tritium4_2021-10-20-033949_apun.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x409_crop_center-center_82_line/21_Tritium4_2021-10-20-033949_apun.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x819_crop_center-center_82_line/21_Tritium4_2021-10-20-033949_apun.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x307_crop_center-center_82_line/21_Tritium4_2021-10-20-033949_apun.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x256_crop_center-center_82_line/21_Tritium4_2021-10-20-033949_apun.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":614,\"3072\":1228,\"1280\":512,\"2560\":1024,\"1024\":409,\"2048\":819,\"768\":307,\"640\":256},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"4167\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAGABADAREAAhEBAxEB/8QAFAABAAAAAAAAAAAAAAAAAAAABf/EAB0QAAICAwADAAAAAAAAAAAAAAECAwQABRESIUH/xAAWAQEBAQAAAAAAAAAAAAAAAAACAwT/xAAcEQEAAgIDAQAAAAAAAAAAAAABAAIDIRESYYH/2gAMAwEAAhEDEQA/AHY47Ta42mssZ1kZQe/PLK0DtuZ8qmPkdwyzHPPtYuvxRYIIDH2OjFawnyDHRqvrP//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#285868\",\"#e2e3e1\",\"#14a8d4\",\"#c96741\",\"#84acb4\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":614,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70350,73939,1,'21 Tritium3','2021-10-20 03:40:06','2021-10-20 03:40:06','8cbc3156-8af6-4c5b-8709-e90534228505',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Tritium3_2021-10-20-034006_fbfv.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Tritium3_2021-10-20-034006_fbfv.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Tritium3_2021-10-20-034006_fbfv.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Tritium3_2021-10-20-034006_fbfv.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Tritium3_2021-10-20-034006_fbfv.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Tritium3_2021-10-20-034006_fbfv.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Tritium3_2021-10-20-034006_fbfv.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Tritium3_2021-10-20-034006_fbfv.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Tritium3_2021-10-20-034006_fbfv.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Tritium3_2021-10-20-034006_fbfv.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Tritium3_2021-10-20-034006_fbfv.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Tritium3_2021-10-20-034006_fbfv.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Tritium3_2021-10-20-034006_fbfv.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Tritium3_2021-10-20-034006_fbfv.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Tritium3_2021-10-20-034006_fbfv.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Tritium3_2021-10-20-034006_fbfv.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABQH/xAAdEAEAAQQDAQAAAAAAAAAAAAABAAIDESEEBVEy/8QAFgEBAQEAAAAAAAAAAAAAAAAABAUG/8QAGxEAAgIDAQAAAAAAAAAAAAAAAAMCMgEhMQT/2gAMAwEAAhEDEQA/ALcBqCpwLt8lmRlV92GdgApS5B0+w7aj0X0JXonJPgF835h28H+ex//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#05a1d5\",\"#105c74\",\"#d4edf6\",\"#2cd4fb\",\"#087cb4\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70351,73940,1,'21 Tritium2','2021-10-20 03:40:27','2021-10-20 03:40:27','a5dc8925-dbfd-4030-bd2d-fdaf59ca1689',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Tritium2_2021-10-20-034026_uadw.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Tritium2_2021-10-20-034026_uadw.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Tritium2_2021-10-20-034026_uadw.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Tritium2_2021-10-20-034026_uadw.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Tritium2_2021-10-20-034026_uadw.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Tritium2_2021-10-20-034026_uadw.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Tritium2_2021-10-20-034026_uadw.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Tritium2_2021-10-20-034026_uadw.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Tritium2_2021-10-20-034026_uadw.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Tritium2_2021-10-20-034026_uadw.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Tritium2_2021-10-20-034026_uadw.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Tritium2_2021-10-20-034026_uadw.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Tritium2_2021-10-20-034026_uadw.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Tritium2_2021-10-20-034026_uadw.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Tritium2_2021-10-20-034026_uadw.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Tritium2_2021-10-20-034026_uadw.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAUG/8QAIBAAAgEEAQUAAAAAAAAAAAAAAQIDAAQFQRIRMTJxc//EABcBAAMBAAAAAAAAAAAAAAAAAAECBAP/xAAdEQACAwACAwAAAAAAAAAAAAAAAQIREiExAzKB/9oADAMBAAIRAxEAPwBVhg45sdxaGJp5UWVHJ7LuqdRtOuCHE8uN89/CReTWaz3SpbqAygR8R0Cne6NOLpg0vIrQ/H6+IpH0aR9jPN5H3TCo/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1c4d5f\",\"#dbe5ea\",\"#0b96c6\",\"#10b5e2\",\"#3a8599\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70352,73941,1,'21 Tritium','2021-10-20 03:40:44','2021-10-20 03:40:44','e2307b51-9f72-4e2e-8c54-3e59ba0931f5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Tritium_2021-10-20-034044_phty.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Tritium_2021-10-20-034044_phty.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Tritium_2021-10-20-034044_phty.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Tritium_2021-10-20-034044_phty.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Tritium_2021-10-20-034044_phty.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Tritium_2021-10-20-034044_phty.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Tritium_2021-10-20-034044_phty.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Tritium_2021-10-20-034044_phty.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Tritium_2021-10-20-034044_phty.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Tritium_2021-10-20-034044_phty.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/21_Tritium_2021-10-20-034044_phty.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/21_Tritium_2021-10-20-034044_phty.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Tritium_2021-10-20-034044_phty.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Tritium_2021-10-20-034044_phty.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Tritium_2021-10-20-034044_phty.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/21_Tritium_2021-10-20-034044_phty.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"10417\",\"originalImageHeight\":\"6250\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAQIG/8QAHRAAAgIBBQAAAAAAAAAAAAAAAQIAEQMTISIxcf/EABYBAQEBAAAAAAAAAAAAAAAAAAEAAv/EABcRAQEBAQAAAAAAAAAAAAAAAAARASH/2gAMAwEAAhEDEQA/AN2WbTQtxY9gC4s3Z0sxGO13PkCuRMk//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#259bbd\",\"#edf5f6\",\"#97cbd9\",\"#7c8f92\",\"#7c9c9c\"],\"lightness\":65,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70353,73942,1,'Tritium','2021-10-20 03:48:10','2021-10-20 03:48:10','81e705b7-c07a-4029-b232-23cc3bb3e721',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league. Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GLSN3YDBFD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"73939\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cbGNJ13Gop\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47697\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LrG99HVOYN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"61847\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We turned up the voltage on the launch of the new brand with this show-stopping animated brand video.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With an appetite only satisfied by global domination and a powerful vision of energy freedom, Tritium’s journey has only just begun… but they started in the fast lane. We developed a set of foundational branding elements that showcase who Tritium is now and prepares for their exciting future.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZeQWeTuQlo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"73941\",\"73940\",\"73938\",\"73937\",\"73936\",\"73935\",\"61842\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70355,73944,1,'Tritium','2021-10-20 03:49:12','2021-10-20 03:49:12','a40b42aa-5b2c-4972-a5bd-fcd7619a662f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league. Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GLSN3YDBFD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"73939\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cbGNJ13Gop\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47697\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LrG99HVOYN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"61847\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We turned up the voltage on the launch of the new brand with this show-stopping animated brand video.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With an appetite only satisfied by global domination and a powerful vision of energy freedom, Tritium’s journey has only just begun… but they started in the fast lane. We developed a set of foundational branding elements that showcase who Tritium is now and prepares for their exciting future.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZeQWeTuQlo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"73941\",\"73940\",\"73938\",\"73937\",\"73936\",\"73935\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70357,73946,1,'Tritium','2021-10-20 03:49:33','2021-10-20 03:49:33','b8740a43-3df1-4978-9ee8-c1d379160188',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league. Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GLSN3YDBFD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"73939\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LrG99HVOYN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"61847\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We turned up the voltage on the launch of the new brand with this show-stopping animated brand video.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With an appetite only satisfied by global domination and a powerful vision of energy freedom, Tritium’s journey has only just begun… but they started in the fast lane. We developed a set of foundational branding elements that showcase who Tritium is now and prepares for their exciting future.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZeQWeTuQlo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"73941\",\"73940\",\"73938\",\"73937\",\"73936\",\"73935\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70358,73947,1,'21 Tritium 111','2021-10-20 04:31:02','2021-10-20 04:31:02','a760a862-3949-4442-a565-91c2bb4711ad',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Tritium-111.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Tritium-111.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/21_Tritium-111.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/21_Tritium-111.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Tritium-111.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Tritium-111.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Tritium-111.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/21_Tritium-111.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/21_Tritium-111.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/21_Tritium-111.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/21_Tritium-111.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/21_Tritium-111.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/21_Tritium-111.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/21_Tritium-111.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/21_Tritium-111.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/21_Tritium-111.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":768,\"2560\":1536,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":384},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"6000\",\"originalImageHeight\":\"3600\",\"placeholder\":\"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAQIG/8QAHRAAAgIBBQAAAAAAAAAAAAAAAQIAEQMTISIxcf/EABYBAQEBAAAAAAAAAAAAAAAAAAEAAv/EABcRAQEBAQAAAAAAAAAAAAAAAAARASH/2gAMAwEAAhEDEQA/AN2WbTQtxY9gC4s3Z0sxGO13PkCuRMk//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#249abd\",\"#edf5f6\",\"#96ccdb\",\"#7a8c90\",\"#949c9c\"],\"lightness\":65,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70360,73949,1,'Tritium','2021-10-20 04:31:19','2021-10-20 04:31:19','b82dfb9c-80f1-4186-92aa-4e7073cc50db',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league. Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GLSN3YDBFD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"73939\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LrG99HVOYN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"61847\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We turned up the voltage on the launch of the new brand with this show-stopping animated brand video.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With an appetite only satisfied by global domination and a powerful vision of energy freedom, Tritium’s journey has only just begun… but they started in the fast lane. We developed a set of foundational branding elements that showcase who Tritium is now and prepares for their exciting future.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZeQWeTuQlo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"73941\",\"73940\",\"73938\",\"73937\",\"73936\",\"73935\",\"73947\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70362,73951,1,'Tritium','2021-10-20 04:32:46','2021-10-20 04:32:46','18343364-ac90-4ebf-bd14-4becd0641eb4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league. Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GLSN3YDBFD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"73939\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LrG99HVOYN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"61847\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We turned up the voltage on the launch of the new brand with this show-stopping animated brand video.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With an appetite only satisfied by global domination and a powerful vision of energy freedom, Tritium’s journey has only just begun… but they started in the fast lane. We developed a set of foundational branding elements that showcase who Tritium is now and prepares for their exciting future.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZeQWeTuQlo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"73941\",\"73947\",\"73940\",\"73938\",\"73937\",\"73936\",\"73935\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70364,73959,1,'Home','2021-11-08 02:53:17','2021-11-08 02:53:17','8b071934-5427-4378-aa46-af09c25a5a6c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70366,73973,1,'Home','2021-11-08 02:53:33','2021-11-08 02:53:33','408354c4-62d7-4804-8d95-b6650c8126ed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70368,73987,1,'Home','2021-11-08 02:54:17','2021-11-08 02:54:17','0e5e2e7a-8406-4f13-b773-4b887e11bdb1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70370,73995,1,'About us','2021-11-08 02:55:48','2021-11-08 02:55:48','8003da01-038c-4a73-ac60-e8273151a135',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17910\",\"17881\",\"17848\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70372,73997,1,'About us','2021-11-08 02:56:39','2021-11-08 02:56:39','ff802c01-321e-4aeb-80ad-1dc7c9bd5f50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17910\",\"17881\",\"17848\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70374,73999,1,'About us','2021-11-08 02:58:16','2021-11-08 02:58:16','48a4eecd-52d3-405d-8fac-3a58082d6141',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17910\",\"17881\",\"17848\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70376,74001,1,'Coomera Anglican College','2021-11-08 02:58:58','2021-11-08 02:58:58','c49c8642-2e2b-44b2-b041-531818292697',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Anything is Possible campaign',NULL,NULL,'This campaign is bridging the gap between Coomera Anglican College\'s storied past and bold future. It\'s a powerful positioning piece that\'s standing the college out from the crowd and showcasing it as the school of choice on the northern Gold Coast.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-B24Vguyo08\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30448\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-I4OkseByw6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Storied past, bold future\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Coomera Anglican College is heavily storied. It’s done a lot of work to capture its history and moments. As result, there is a lot of heritage and tradition for a relatively young school (just 25 years).\\n\\nThe college has set a strong future of innovation and entrepreneurship. It has appointed a deputy principal whose whole focus is innovation. It also has an exceptionally future-focused business manager who is sports-obsessed with big dreams.\\n\\nOur work is helping the college bridge the gap from the past to an exciting future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3S8xZRT3yd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30447\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1dcAEtVD40\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Following focus groups, in-depth interviews, a competitor analysis and a brand refresh in 2020, we embarked on developing a new public-facing campaign to help the college continue to position itself as the private school of choice for the rapidly growing northern Gold Coast region.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7mko9XHUCj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47693\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-27uMRCFOVx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"In order to stand out in the crowded private school space, we looked outside of schools for inspiration—drawing from global sports and technology brands.\\n\\nThis campaign steers right away from traditional school advertising: think students standing and smiling in their school uniforms, older and younger students holding hands and walking through manicured school grounds, girls in safety glasses huddled over a beaker and Bunsen burner.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EkVYlvmrxM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30444\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ek8exDfZlT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The result is a powerful cinematic masterpiece: dramatic, inspirational and compelling. The script was drawn from lyrics of the college’s traditional song. Paired with the inspiring footage, the video effectively acknowledges the past while painting a vivid picture of the future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IGcqD2p42y\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30445\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CUjY0m7ysa\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“It was a pleasure working with New Word Order to develop the new creative for our College. They took the time to get to know what makes our college unique, and helped put that into tangible storytelling.”\",\"plainText\":\"— Aimee Barlett, Marketing and Communications Manager at Coomera Anglican College\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Ja5zJfaN0T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30446\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wtyTXQ0yRK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/574221746\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70378,74003,1,'Department of Transport and Main Roads','2021-11-08 02:59:42','2021-11-08 02:59:42','cbd49a60-d955-4b0d-ab8e-50cb68e5531c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'How Queensland Travels',NULL,NULL,'The Department of Transport and Main Roads has measured how, where and why Queenslanders travel since 1976. How Queensland Travels was the first time all of this research had been revealed together.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xiMuwH0qUn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47768\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UGKKHcWkDX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"We crafted a visual metaphor for this important story by enlarging infographic iconography, making it 3D and placing it into real world situations.\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ykadeGb8YM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/145833141?h=da493c8de8&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wXJAJa8GTY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":null,\"plainText\":\"The result is a metaphor for the role of data in the real world, especially as it relates to transport.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MQiJ46BCqv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47767\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IXjmqTVmWl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":null,\"plainText\":\"Our deliverables included an interactive PDF—written, edited and designed by our team—and the beautiful 3D animated video showing the 3D icons moving in the real world.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70380,74005,1,'Heart HQ','2021-11-08 03:00:34','2021-11-08 03:00:34','1fb9a938-3db2-45e8-9620-83a3ca9af6ca',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'World-class medical with heart',NULL,NULL,'Big ambitions need a brand that accurately reflects their vision and mission, and that’s exactly what we sought to deliver for this client. With Heart HQ, and with the enormous amount of collateral that supports it, we’ve well and truly delivered this.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-P3bQXxcsfs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44878\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uicOuPt9of\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Sunshine Coast Heart Specialists was growing and changing. \\n\\nIn six years, the cardiology practice had grown to nearly 50 staff with rooms throughout the coast. Their cardiologists represented all of the possible sub-specialties within their profession. Within weeks, they would move to new purpose-built premises at Sippy Downs. They were about to open their own coronary CT clinic to the public and a heart murmur clinic to support GPs—both nation-leading initiatives.\\n\\nThe directors realised their geography-specific name would limit their ability to keep growing, and so renaming and rebranding was a strong need.\\n\\nTheir growth had also occurred at such a rate that there was strategic work needed to understand their market share and to form a marketing strategy that would offer them opportunities for segmentation. Growth is reliant on satisfied referring GPs and specialists, and so attention could never be removed from this area.\\n\\nFinally, such growth was also outstripping their capacity to fill the need. Cardiology is a highly specialised field within medicine, and to grow sustainably, they needed to attract more associates.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Lgp01pReVY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44873\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aTg3yWEGh3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Objective\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The practice needed a new name and brand assets for the business to accurately convey the mission and vision of the business, and to grow the business’s referrer and patient networks.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gG5PvaSbvX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44864\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oXH0AQY2PC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our brand strategy drew on customer and referrer interviews, competitor insights and employee workshops, which also helped to define the brand values of the business. \\n\\nIt was clear the practice and the individual directors were held in high esteem by their medical colleagues. They introduced surgical procedures to the Sunshine Coast that were, until then, only practised by a few in major cities. They were introducing clinics for CT and heart murmurs that had not been seen in regional areas in Australia. This gave us the confidence to be able to propose a tagline that truthfully boasted, ‘world-class cardiac care’.\\n\\nThe second part of the tagline reads: ‘…on the Sunshine Coast’. To compensate for the move away from the regionalisation in their original brand name—Sunshine Coast Heart Specialists—we added it to the tagline. The reason for this is that patients along the coast appreciated the practice was the only place where they could receive the full spectrum of care without having to travel to Brisbane.\\n\\nFinally, an important branding insight from our research was that patients were on a health journey—sometimes quite a precarious one—and could be experiencing anxiety. Patients told us they appreciated the kindness each doctor showed to them in their time of need. Simply promoting expertise could come across as cold and would not fairly represent the doctors’ deep commitment to quality care. So the Heart HQ brand connects with patients on a personal level and makes them feel reassured that they matter.\\n\\nIt’s this mix of strategy and heart that makes Heart HQ a brand that will stand tall among all the others.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ISdJyIN6AW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44874\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDNF080GkR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A name, tagline, brand visual identity, website, signage and countless assets that match up with Heart HQ’s brand promise of delivering world-class cardiac care on the Sunshine Coast.\\n\\nThe quality of the brand assets significantly differentiates Heart HQ from all other competitor practices.\\n\\nCreatively, the brand is modern, refreshing and arguably not what you would expect from an organisation in the medical field – but at the same time, the language is warm, supportive and with just the right amount of authority.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3VvPbVRO0Q\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45205\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70382,74007,1,'Heart HQ','2021-11-08 03:01:27','2021-11-08 03:01:27','37e1e966-25c6-42e4-b355-6a53720d254b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'World-class medical with heart',NULL,NULL,'Big ambitions need a brand that accurately reflects their vision and mission, and that’s exactly what we sought to deliver for this client. With Heart HQ, and with the enormous amount of collateral that supports it, we’ve well and truly delivered this.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-P3bQXxcsfs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44878\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uicOuPt9of\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Sunshine Coast Heart Specialists was growing and changing. \\n\\nIn six years, the cardiology practice had grown to nearly 50 staff with rooms throughout the coast. Their cardiologists represented all of the possible sub-specialties within their profession. Within weeks, they would move to new purpose-built premises at Sippy Downs. They were about to open their own coronary CT clinic to the public and a heart murmur clinic to support GPs—both nation-leading initiatives.\\n\\nThe directors realised their geography-specific name would limit their ability to keep growing, and so renaming and rebranding was a strong need.\\n\\nTheir growth had also occurred at such a rate that there was strategic work needed to understand their market share and to form a marketing strategy that would offer them opportunities for segmentation. Growth is reliant on satisfied referring GPs and specialists, and so attention could never be removed from this area.\\n\\nFinally, such growth was also outstripping their capacity to fill the need. Cardiology is a highly specialised field within medicine, and to grow sustainably, they needed to attract more associates.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Lgp01pReVY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44873\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aTg3yWEGh3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Objective\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The practice needed a new name and brand assets for the business to accurately convey the mission and vision of the business, and to grow the business’s referrer and patient networks.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gG5PvaSbvX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44864\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oXH0AQY2PC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our brand strategy drew on customer and referrer interviews, competitor insights and employee workshops, which also helped to define the brand values of the business. \\n\\nIt was clear the practice and the individual directors were held in high esteem by their medical colleagues. They introduced surgical procedures to the Sunshine Coast that were, until then, only practised by a few in major cities. They were introducing clinics and services that had not been seen in regional areas in Australia. This gave us the confidence to be able to propose a tagline that truthfully boasted, ‘world-class cardiac care’.\\n\\nThe second part of the tagline reads: ‘…on the Sunshine Coast’. To compensate for the move away from the regionalisation in their original brand name—Sunshine Coast Heart Specialists—we added it to the tagline. The reason for this is that patients along the coast appreciated the practice was the only place where they could receive the full spectrum of care without having to travel to Brisbane.\\n\\nFinally, an important branding insight from our research was that patients were on a health journey—sometimes quite a precarious one—and could be experiencing anxiety. Patients told us they appreciated the kindness each doctor showed to them in their time of need. Simply promoting expertise could come across as cold and would not fairly represent the doctors’ deep commitment to quality care. So the Heart HQ brand connects with patients on a personal level and makes them feel reassured that they matter.\\n\\nIt’s this mix of strategy and heart that makes Heart HQ a brand that will stand tall among all the others.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ISdJyIN6AW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44874\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDNF080GkR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A name, tagline, brand visual identity, website, signage and countless assets that match up with Heart HQ’s brand promise of delivering world-class cardiac care on the Sunshine Coast.\\n\\nThe quality of the brand assets significantly differentiates Heart HQ from all other competitor practices.\\n\\nCreatively, the brand is modern, refreshing and arguably not what you would expect from an organisation in the medical field – but at the same time, the language is warm, supportive and with just the right amount of authority.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3VvPbVRO0Q\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45205\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70384,74009,1,'Heart HQ','2021-11-08 03:16:16','2021-11-08 03:16:16','2d7dc14e-d3dd-451b-9ebc-1bb875a0e3ff',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'World-class medical with heart',NULL,NULL,'Big ambitions need a brand that accurately reflects their vision and mission, and that’s exactly what we sought to deliver for this client. With Heart HQ, and with the enormous amount of collateral that supports it, we’ve well and truly delivered this.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-P3bQXxcsfs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44878\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uicOuPt9of\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Sunshine Coast Heart Specialists was growing and changing. \\n\\nIn six years, the cardiology practice had grown to nearly 50 staff with rooms throughout the coast. Their cardiologists represented all of the possible sub-specialties within their profession. Within weeks, they would move to new purpose-built premises at Sippy Downs. They were about to open their own coronary CT clinic to the public and a heart murmur clinic to support GPs—both nation-leading initiatives.\\n\\nThe directors realised their geography-specific name would limit their ability to keep growing, and so renaming and rebranding was a strong need.\\n\\nTheir growth had also occurred at such a rate that there was strategic work needed to understand their market share and to form a marketing strategy that would offer them opportunities for segmentation. Growth is reliant on satisfied referring GPs and specialists, and so attention could never be removed from this area.\\n\\nFinally, such growth was also outstripping their capacity to fill the need. Cardiology is a highly specialised field within medicine, and to grow sustainably, they needed to attract more associates.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Lgp01pReVY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44873\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aTg3yWEGh3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Objective\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The practice needed a new name and brand assets for the business to accurately convey the mission and vision of the business, and to grow the business’s referrer and patient networks.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gG5PvaSbvX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44864\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oXH0AQY2PC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our brand strategy drew on customer and referrer interviews, competitor insights and employee workshops, which also helped to define the brand values of the business. \\n\\nIt was clear the practice and the individual directors were held in high esteem by their medical colleagues. They introduced surgical procedures to the Sunshine Coast that were, until then, only practised by a few in major cities. They were introducing clinics and services that had not been seen in regional areas in Australia. This gave us the confidence to be able to propose a tagline that truthfully boasted, ‘world-class cardiac care’.\\n\\nThe second part of the tagline reads: ‘…on the Sunshine Coast’. To compensate for the move away from the regionalisation in their original brand name—Sunshine Coast Heart Specialists—we added it to the tagline. The reason for this is that patients along the coast appreciated the practice was the only place where they could receive the full spectrum of care without having to travel to Brisbane.\\n\\nFinally, an important branding insight from our research was that patients were on a health journey—sometimes quite a precarious one—and could be experiencing anxiety. Patients told us they appreciated the kindness each doctor showed to them in their time of need. Simply promoting expertise could come across as cold and would not fairly represent the doctors’ deep commitment to quality care. So the Heart HQ brand connects with patients on a personal level and makes them feel reassured that they matter.\\n\\nIt’s this mix of strategy and heart that makes Heart HQ a brand that will stand tall among all the others.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ISdJyIN6AW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44874\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDNF080GkR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A name, tagline, brand visual identity, website, signage and countless assets that match up with Heart HQ’s brand promise of delivering world-class cardiac care on the Sunshine Coast.\\n\\nThe quality of the brand assets significantly differentiates Heart HQ from all other competitor practices.\\n\\nCreatively, the brand is modern, refreshing and arguably not what you would expect from an organisation in the medical field – but at the same time, the language is warm, supportive and with just the right amount of authority.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Np5NPasoP9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"##### Suzanne and her team came highly recommended. It was a great journey working with them to develop our new brand and we were very impressed with their ideas, enthusiasm and innovation. We have a new brand, a new identity and the confidence now to deliver on our growth plans. \\n\\n**Dr Peter Larsen**\\n<br>Managing Director – Heart HQ\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3VvPbVRO0Q\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45205\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZiaaoRDhrE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":[],\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70386,74011,1,'Heart HQ','2021-11-08 04:06:49','2021-11-08 04:06:49','7e13f99f-7945-46ab-b2c6-4ef0d9258989',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'World-class medical with heart',NULL,NULL,'Big ambitions need a brand that accurately reflects their vision and mission, and that’s exactly what we sought to deliver for this client. With Heart HQ, and with the enormous amount of collateral that supports it, we’ve well and truly delivered this.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-P3bQXxcsfs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44878\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uicOuPt9of\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Sunshine Coast Heart Specialists was growing and changing. \\n\\nIn six years, the cardiology practice had grown to nearly 50 staff with rooms throughout the coast. Their cardiologists represented all of the possible sub-specialties within their profession. Within weeks, they would move to new purpose-built premises at Sippy Downs. They were about to open their own coronary CT clinic to the public and a heart murmur clinic to support GPs—both nation-leading initiatives.\\n\\nThe directors realised their geography-specific name would limit their ability to keep growing, and so renaming and rebranding was a strong need.\\n\\nTheir growth had also occurred at such a rate that there was strategic work needed to understand their market share and to form a marketing strategy that would offer them opportunities for segmentation. Growth is reliant on satisfied referring GPs and specialists, and so attention could never be removed from this area.\\n\\nFinally, such growth was also outstripping their capacity to fill the need. Cardiology is a highly specialised field within medicine, and to grow sustainably, they needed to attract more associates.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Lgp01pReVY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44873\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aTg3yWEGh3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Objective\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The practice needed a new name and brand assets for the business to accurately convey the mission and vision of the business, and to grow the business’s referrer and patient networks.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gG5PvaSbvX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44864\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oXH0AQY2PC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our brand strategy drew on customer and referrer interviews, competitor insights and employee workshops, which also helped to define the brand values of the business. \\n\\nIt was clear the practice and the individual directors were held in high esteem by their medical colleagues. They introduced surgical procedures to the Sunshine Coast that were, until then, only practised by a few in major cities. They were introducing clinics and services that had not been seen in regional areas in Australia. This gave us the confidence to be able to propose a tagline that truthfully boasted, ‘world-class cardiac care’.\\n\\nThe second part of the tagline reads: ‘…on the Sunshine Coast’. To compensate for the move away from the regionalisation in their original brand name—Sunshine Coast Heart Specialists—we added it to the tagline. The reason for this is that patients along the coast appreciated the practice was the only place where they could receive the full spectrum of care without having to travel to Brisbane.\\n\\nFinally, an important branding insight from our research was that patients were on a health journey—sometimes quite a precarious one—and could be experiencing anxiety. Patients told us they appreciated the kindness each doctor showed to them in their time of need. Simply promoting expertise could come across as cold and would not fairly represent the doctors’ deep commitment to quality care. So the Heart HQ brand connects with patients on a personal level and makes them feel reassured that they matter.\\n\\nIt’s this mix of strategy and heart that makes Heart HQ a brand that will stand tall among all the others.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ISdJyIN6AW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44874\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDNF080GkR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A name, tagline, brand visual identity, website, signage and countless assets that match up with Heart HQ’s brand promise of delivering world-class cardiac care on the Sunshine Coast.\\n\\nThe quality of the brand assets significantly differentiates Heart HQ from all other competitor practices.\\n\\nCreatively, the brand is modern, refreshing and arguably not what you would expect from an organisation in the medical field – but at the same time, the language is warm, supportive and with just the right amount of authority.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Np5NPasoP9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"##### Suzanne and her team came highly recommended. It was a great journey working with them to develop our new brand and we were very impressed with their ideas, enthusiasm and innovation. We have a new brand, a new identity and the confidence now to deliver on our growth plans. \\n\\n**Dr Peter Larsen**\\n<br>Managing Director – Heart HQ\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3VvPbVRO0Q\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45205\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xseY6nsczI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"NWO is part of our success journey.\\\"\",\"plainText\":\"**Dr Peter Larsen**\\nManaging Director – Heart HQ\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textColour\":\"text-white\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70388,74013,1,'Heart HQ','2021-11-08 04:08:25','2021-11-08 04:08:25','635d4f79-62c1-4ddc-b57a-ef83c9ac4c05',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'World-class medical with heart',NULL,NULL,'Big ambitions need a brand that accurately reflects their vision and mission, and that’s exactly what we sought to deliver for this client. With Heart HQ, and with the enormous amount of collateral that supports it, we’ve well and truly delivered this.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-P3bQXxcsfs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44878\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uicOuPt9of\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Sunshine Coast Heart Specialists was growing and changing. \\n\\nIn six years, the cardiology practice had grown to nearly 50 staff with rooms throughout the coast. Their cardiologists represented all of the possible sub-specialties within their profession. Within weeks, they would move to new purpose-built premises at Sippy Downs. They were about to open their own coronary CT clinic to the public and a heart murmur clinic to support GPs—both nation-leading initiatives.\\n\\nThe directors realised their geography-specific name would limit their ability to keep growing, and so renaming and rebranding was a strong need.\\n\\nTheir growth had also occurred at such a rate that there was strategic work needed to understand their market share and to form a marketing strategy that would offer them opportunities for segmentation. Growth is reliant on satisfied referring GPs and specialists, and so attention could never be removed from this area.\\n\\nFinally, such growth was also outstripping their capacity to fill the need. Cardiology is a highly specialised field within medicine, and to grow sustainably, they needed to attract more associates.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Lgp01pReVY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44873\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aTg3yWEGh3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Objective\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The practice needed a new name and brand assets for the business to accurately convey the mission and vision of the business, and to grow the business’s referrer and patient networks.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gG5PvaSbvX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44864\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oXH0AQY2PC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our brand strategy drew on customer and referrer interviews, competitor insights and employee workshops, which also helped to define the brand values of the business. \\n\\nIt was clear the practice and the individual directors were held in high esteem by their medical colleagues. They introduced surgical procedures to the Sunshine Coast that were, until then, only practised by a few in major cities. They were introducing clinics and services that had not been seen in regional areas in Australia. This gave us the confidence to be able to propose a tagline that truthfully boasted, ‘world-class cardiac care’.\\n\\nThe second part of the tagline reads: ‘…on the Sunshine Coast’. To compensate for the move away from the regionalisation in their original brand name—Sunshine Coast Heart Specialists—we added it to the tagline. The reason for this is that patients along the coast appreciated the practice was the only place where they could receive the full spectrum of care without having to travel to Brisbane.\\n\\nFinally, an important branding insight from our research was that patients were on a health journey—sometimes quite a precarious one—and could be experiencing anxiety. Patients told us they appreciated the kindness each doctor showed to them in their time of need. Simply promoting expertise could come across as cold and would not fairly represent the doctors’ deep commitment to quality care. So the Heart HQ brand connects with patients on a personal level and makes them feel reassured that they matter.\\n\\nIt’s this mix of strategy and heart that makes Heart HQ a brand that will stand tall among all the others.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ISdJyIN6AW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44874\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDNF080GkR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A name, tagline, brand visual identity, website, signage and countless assets that match up with Heart HQ’s brand promise of delivering world-class cardiac care on the Sunshine Coast.\\n\\nThe quality of the brand assets significantly differentiates Heart HQ from all other competitor practices.\\n\\nCreatively, the brand is modern, refreshing and arguably not what you would expect from an organisation in the medical field – but at the same time, the language is warm, supportive and with just the right amount of authority.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Np5NPasoP9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"##### Suzanne and her team came highly recommended. It was a great journey working with them to develop our new brand and we were very impressed with their ideas, enthusiasm and innovation. We have a new brand, a new identity and the confidence now to deliver on our growth plans. \\n\\n**Dr Peter Larsen**\\n<br>Managing Director – Heart HQ\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3VvPbVRO0Q\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45205\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AUTeHLiAy1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"##### \\\"NWO is part of our success journey.\\\"\\n\\n**Dr Peter Larsen**\\n<br>Managing Director – Heart HQ\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70390,74015,1,'Citipointe Christian College','2021-11-08 04:09:06','2021-11-08 04:09:06','f45f53d9-32f6-4a80-9a79-cba5a2e6e515',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'I can campaign',NULL,NULL,'Our campaign was based around the concept of ‘I can’, which responded to market research with parents and focused on the outcomes for students.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p51LYEpT5O\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47736\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iYNrrlmMZA\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’ve been working with Citipointe Christian College for a number of years, having first helped them define their brand and distinctives, and then campaigned the brand to great success and high enrolments and waiting lists.\\n\\nWe then faced a new challenge: getting parents to commit for the long haul.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Y6fbAAGpQK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47738\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KQMovznY0B\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We conducted in-depth interviews and asked parents: What would win you back? From their answers, we developed fresh new creative and messaging directly linked to parents’ aspirations for their children.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3Nuc4KqR6i\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47741\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UCCnWZFQHi\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The brand is now visually distinguishing from the competition by moving away from the usual depictions of happy children in school uniforms to a stronger conceptual approach that places students within the real-world situations the school is preparing them to reach.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rcnsOQ5GI8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47740\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V3kt5nqhg3\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Results\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This campaign is unlike anything else in the school market. It’s a powerful differentiator that’s continuing high levels of interest in the target market and enrolments and tour attendance are still growing.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jZNg6COExC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47742\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wchbDpZwnc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47739\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70392,74017,1,'My Mental Health','2021-11-08 04:09:43','2021-11-08 04:09:43','6e71bfbc-0783-4522-a58b-74e4ce345335',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Connections to expert support',NULL,NULL,'We collaborated with Brisbane North PHN\'s mental health experts to empower consumers, carers and health practitioners to navigate the mental health sector with clear direction and ease. By understanding the website users on a deeper level, our creatives, strategists and developers delivered a meaningful and effective website.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5pfvkvSNrw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"21979\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-czaT07FwtQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"21999\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70394,74019,1,'Brisbane North PHN NSPT','2021-11-08 04:11:30','2021-11-08 04:11:30','2325c627-8c31-4eb0-b1fd-87e597ec7c52',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'National Suicide Prevention Trial',NULL,NULL,'We were chosen to consult with Brisbane North communities who had been selected for the trial: LGBTIQ communities, Aboriginal and Torres Strait Islander communities, and community organisations working with young to middle-aged men.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yV9Swskqh3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45209\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Bri6BITkLV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The team of Brisbane North PHN is one of the national sites chosen to deliver National Suicide Prevention Trial (NSPT) funding.\\n\\nOur work had two important parts. The first was to engage deeply and sensitively with communities to understand their experiences, successes and reflections during the four years of trial funding and to report on these. The second was to deliver useful materials the service organisations could use to seek further funding and sponsorships as they transitioned from trial funding.\\n\\nTo successfully undertake community engagement, we again partnered with Janine Crawford, a skilled health consultant and Aboriginal and Torres Strait Islander woman. Our work included workshops, face-to-face interviews and a highly successful yarning circle, and these important and sensitive conversations—which included Sad News/Sorry Business—were given the time and space each needed.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2OxHHkid1g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45325\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VcPtAbE6Am\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The finalised report was submitted to NSPT as a qualitative reflection on the remarkable achievements of the trial—including the PHN’s commitment to community-led co-design, and the healing within communities that was begun through the intentionally collaborative process.\\n\\nTo offer creative services that were suited to the context, needs and existing resourcing of the seven service organisations, we offered a menu of items, ranging from fact sheets to marketing consultations. The groups then chose the elements that were of greatest use to them.\\n\\nPart of the unique nature of the Brisbane North PHN NSPT trial was the emphasis on community partnerships and collaboration, and we embodied this in our design approach, too. To enable groups to pitch together or separately for any future suicide prevention funding, we created a single brand style to visually unify any designed material. Each group, then, had its own logo and its own colour palette within that visual style—a brand within a brand. That way, any future funding pitches that relied on our designed material could look as though the groups were unique but still closely aligned.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70396,74021,1,'QMHC','2021-11-08 04:12:09','2021-11-08 04:12:09','f3113497-3a39-464b-a3ce-d953868f7b92',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Stakeholder engagement',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QkuSHpszbt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47656\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-B6PvNvL5Iy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We gained clear lines of sight into the impressions and needs of their stakeholder audience through 26 guided, in-depth phone interviews. Each interview was between 30 and 45 minutes long, and followed an approved guide to elicit data and insights to key questions. Key stakeholders included representatives of vulnerable groups, including remote communities, LGBTIQ+ stakeholder organisations, and Aboriginal and Torres Strait Islander groups.\\n\\nFrom this data, we developed an insights document and then a strategy to enable the Commission’s 20+ staff to better reach stakeholders with timely, needed communication and engagement opportunities.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F39qRl2lIU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47657\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70398,74023,1,'Reasons to Stay','2021-11-08 04:12:53','2021-11-08 04:12:53','bc314b99-84a3-4bfb-b002-af5a3a5218db',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Conversations save lives',NULL,NULL,'Our agency purpose—to make a meaningful difference to people’s lives—rings no truer than this campaign. Conversations can be lifesaving. The Reasons to Stay campaign drives this message to remind people to reach out and find their reasons to keep living.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Wuk6XROt8C\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19060\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vjXnYnypEU\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Suicide takes around eight Australians from us every day and it needs to stop.\\n\\nBrisbane North PHN commissioned us to join the fight against suicide and produce a powerful digital campaign, speaking to people at risk of suicide and to their friends and family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xEmYfpUPYn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"19064\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"19066\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new3\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"19067\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new4\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"19068\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447109\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hlukn3QtpP\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The concept and campaign name of Reasons to Stay emerged from our conversations with people who have lived experience of suicide—both survivors and families of those who had passed away.\\n\\nThis prevention campaign targeted two specific groups: those at risk of suicide themselves and the friends and family around those at risk.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CYFHnSDjBC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19062\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GgXhbYC3Wx\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Open hearts and minds from beginning to end\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Presenting our creative concepts to these groups enabled us to test and hone visual directions and key messages.\\n\\nWe further refined the work and key members of the focus groups reviewed the results and gave their blessing to the final approach that appears in the campaign videos, digital ads and website.\\n\\nWe also worked with other organisations working across niche groups within our target market to ensure we were inclusive and respectful of their individual efforts in this space.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-trgV3eAZYY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"19081\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UvCFl0uQ9c\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our team was grateful to be involved in this important project.\\n\\nThe PHN’s intention—and ours—is to see this campaign spread far beyond the northern boundaries of Brisbane and make a difference to people’s lives everywhere.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lo0qiknCPj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19061\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70402,74027,1,'Rural Aid','2021-11-08 04:14:01','2021-11-08 04:14:01','ffebb5ee-8115-45c2-b246-b63a12d7d94d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Through drought, flood and fire, Rural Aid is there.',NULL,NULL,'Rural Aid is there for local farmers doing it tough, providing water, fodder and financial and counselling help. \n\nProviding emergency support is the priority, but it was time for Rural Aid to shift its focus to building resilience and sustainability in rural communities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eLK3JgwUaW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47719\",\"22211\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QCEdWG6OxJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The nature of the campaign, featuring real farmers telling their story, was insightful for many staff who might not get the chance to speak with or hear from farmers very often.\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-a1ZSpKzNhg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575770982\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4IaqNatl2X\",\"enabled\":false,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The campaign\",\"plainText\":\"Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F9lQRkpJbI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The campaign\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-h8vXLy3MfI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“The generous donations received from our community of supporters as a result from the campaign has had a very positive impact for the beneficiaries of our fundraising—Aussie farmers.”\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V9u5ejPQKv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575783623\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p6CVgVhKEp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Campaign messaging was two-tiered: an EOFY donations appeal and a thank you. Both worked to be targeted at existing donors, or people captured in existing databases or prospecting.\\n\\nTo ensure the greatest value for money for our client, we pooled the majority of our ad spend into digital, working closely with our media partner, Pivotus. We A/B tested the messaging and capture the audience with retargeting strategies.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8P2070zTQ8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"NWO were great to work with and really took an interest in our organisation and what we’re trying to achieve, and this showed through in the quality and the emotion captured in the final production. \\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rhaSMwFESv\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Creative\",\"plainText\":\"We proposed a campaign based on interviews with Australian farmers who had experiences with Rural Aid.\\n\\nIt’s an honest campaign of full of real people, stories and emotions.\\n\\nWith COVID-19 still hanging around, our approach ensured we avoided potential interruptions, travel restrictions and cancellation costs for our client.\\n\\nThe videos are compilations of interviews with various farmers across the spectrum of industries that are framed by a ‘zoom screen’ visual device, which adds layers of authenticity to the personal stories. \\n\\nSimilarly the display banners and static Facebook posts used the zoom imagery and visual devices—all pointing people to the EOFY Rural Aid landing page where viewers could view the full videos and choose to donate.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vJUro6swC6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We proposed a campaign based on interviews with Australian farmers who had experiences with Rural Aid.\\n\\nIt’s an honest campaign of full of real people, stories and emotions.\\n\\nWith COVID-19 still hanging around, our approach ensured we avoided potential interruptions, travel restrictions and cancellation costs for our client.\\n\\nThe videos are compilations of interviews with various farmers across the spectrum of industries that are framed by a ‘zoom screen’ visual device, which adds layers of authenticity to the personal stories. \\n\\nSimilarly the display banners and static Facebook posts used the zoom imagery and visual devices—all pointing people to the EOFY Rural Aid landing page where viewers could view the full videos and choose to donate.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3MV0vWsZV5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"I am very proud to have been a part of this campaign. Even though I was part of the storytelling behind the scenes, I was moved at every stage of the process by how tough these Australians have it on a daily basis, and how candid they were with us about their stories.\",\"plainText\":\"**— Kat Scott, producer**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NURtiGsn81\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":[],\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70404,74029,1,'Rural Aid','2021-11-08 04:14:56','2021-11-08 04:14:56','e566d9a1-a631-40a3-9c9f-9cd24a6490a6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Through drought, flood and fire, Rural Aid is there.',NULL,NULL,'Rural Aid is there for local farmers doing it tough, providing water, fodder and financial and counselling help. \n\nProviding emergency support is the priority, but it was time for Rural Aid to shift its focus to building resilience and sustainability in rural communities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eLK3JgwUaW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47719\",\"22211\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QCEdWG6OxJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The nature of the campaign, featuring real farmers telling their story, was insightful for many staff who might not get the chance to speak with or hear from farmers very often.\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-a1ZSpKzNhg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575770982\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4IaqNatl2X\",\"enabled\":false,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The campaign\",\"plainText\":\"Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F9lQRkpJbI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The campaign\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-h8vXLy3MfI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“The generous donations received from our community of supporters as a result from the campaign has had a very positive impact for the beneficiaries of our fundraising—Aussie farmers.”\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V9u5ejPQKv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575783623\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p6CVgVhKEp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Campaign messaging was two-tiered: an EOFY donations appeal and a thank you. Both worked for existing donors, people in existing databases and prospects.d\\n\\nTo ensure the greatest value for money for our client, we pooled the majority of our ad spend into digital, working closely with our media partner, Pivotus. We A/B tested the messaging and captured the audience with retargeting strategies.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8P2070zTQ8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"NWO were great to work with and really took an interest in our organisation and what we’re trying to achieve, and this showed through in the quality and the emotion captured in the final production. \\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rhaSMwFESv\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Creative\",\"plainText\":\"We proposed a campaign based on interviews with Australian farmers who had experiences with Rural Aid.\\n\\nIt’s an honest campaign of full of real people, stories and emotions.\\n\\nWith COVID-19 still hanging around, our approach ensured we avoided potential interruptions, travel restrictions and cancellation costs for our client.\\n\\nThe videos are compilations of interviews with various farmers across the spectrum of industries that are framed by a ‘zoom screen’ visual device, which adds layers of authenticity to the personal stories. \\n\\nSimilarly the display banners and static Facebook posts used the zoom imagery and visual devices—all pointing people to the EOFY Rural Aid landing page where viewers could view the full videos and choose to donate.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vJUro6swC6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We proposed a campaign based on interviews with Australian farmers who had experiences with Rural Aid.\\n\\nIt’s an honest campaign of full of real people, stories and emotions.\\n\\nWith COVID-19 still hanging around, our approach ensured we avoided potential interruptions, travel restrictions and cancellation costs for our client.\\n\\nThe videos are compilations of interviews with various farmers across the spectrum of industries that are framed by a ‘zoom screen’ visual device, which adds layers of authenticity to the personal stories. \\n\\nSimilarly the display banners and static Facebook posts used the zoom imagery and visual devices—all pointing people to the EOFY Rural Aid landing page where viewers could view the full videos and choose to donate.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3MV0vWsZV5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"I am very proud to have been a part of this campaign. Even though I was part of the storytelling behind the scenes, I was moved at every stage of the process by how tough these Australians have it on a daily basis, and how candid they were with us about their stories.\",\"plainText\":\"**— Kat Scott, producer**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NURtiGsn81\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":[],\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70407,74032,1,'West Moreton Anglican College','2021-11-08 04:17:49','2021-11-08 04:17:49','1236adf4-fb3f-4ff4-a73d-da881c67d30c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The school for (real) life campaign',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kSAkN1lDaq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Like schools everywhere, West Moreton Anglican College needed to change its plans to bring parents onto campus to experience the school because of the coronavirus.\\n\\nThis meant the annual open day was cancelled. But a few months later when restrictions eased, the school had a chance to bring parents back.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fxOewiuxW6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45330\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-c4rLGz6SQd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We developed a 16-week plan that timed out the lead up to the modified open day, and follow-up of leads afterwards. It outlined a WestMAC-specific brand campaign that celebrated the WestMAC way and positioned the school as a unique and desirable offering compared to other schools in the catchment area.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GVAyDnsmRc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45329\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o0LzwcEURr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"At the end of the day, parents just want their kids to be happy, healthy and well.\\n\\nWestMAC is a wonderland for kids complete with an agriculture farm, animals and a garden for digging—because that\'s just what kids like doing. It\'s the school for real life.\\n\\nThis campaign included gorgeous hero photography, strategic messaging and a series of videos where students talk about their WestMAC experience.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-66MSHWAoOc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/470822168?h=a0ce3a6b80&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/470822520?h=90034f124f&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KSqaU5wR9Y\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The campaign resonated with parents in the catchment, and filled the tour. We continued to run the campaign for the rest of the year, encouraging prospective parents to attend a personal tour.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ip4P0zUBCI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45333\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70408,74033,1,'2021-11-09 09:27:12','2021-11-08 23:27:12','2021-11-08 23:27:12','9318620c-b470-40ca-af0f-d4401057d1af',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70409,74034,1,'Andrew','2021-11-09 00:00:56','2023-03-09 04:30:48','d9b45dda-8f32-4682-a8af-f2a05151da1b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Andrew-col-23.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Andrew-col-23.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Andrew-col-23.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Andrew-col-23.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Andrew-col-23.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Andrew-col-23.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Andrew-col-23.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Andrew-col-23.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1280,\"originalImageHeight\":1280,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBIAEgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAMG/8QAHxAAAwACAgIDAAAAAAAAAAAAAQIDERIABSFBBEKB/8QAFgEBAQEAAAAAAAAAAAAAAAAAAgAB/8QAGhEAAwEAAwAAAAAAAAAAAAAAAQIRAAMSIf/aAAwDAQACEQMRAD8At2FXkk1k4R6PrsV2wPfjjYwbVFMzII4nijB2H211z+clNF0whmzvZdnW9xKIQRnTDMRkkg8ZXsPMQ0Od8ftKLU5QGbHwPY414oJiz03f/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#a8a1b4\",\"#292f4b\",\"#54669e\",\"#553a3a\",\"#74524b\"],\"lightness\":44,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70410,74035,1,'Bree','2021-11-09 00:03:18','2023-03-09 04:25:51','a997cdaa-3388-4981-8a87-74f32f3c9d56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Bree-col-23.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Bree-col-23.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Bree-col-23.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Bree-col-23.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Bree-col-23.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Bree-col-23.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Bree-col-23.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Bree-col-23.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1280,\"originalImageHeight\":1280,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBIAEgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAMG/8QAIRAAAgEEAgIDAAAAAAAAAAAAAQIDAAQREgUhIkEUMmH/xAAWAQEBAQAAAAAAAAAAAAAAAAABAgD/xAAaEQADAAMBAAAAAAAAAAAAAAAAAQIDERIh/9oADAMBAAIRAxEAPwCl7PKjxQwMqySE+TDOoH5V3XJUT0xNpKZIhsQXHTY9GjHTpejknl+GWvuWS5vd0UgQnCEH7d90Xumaa5Qzj+YHzFRwGM7eRAxqfVGNOW9jdKkj/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#a09bb3\",\"#1e171b\",\"#673320\",\"#9a5f3e\",\"#ddac98\"],\"lightness\":40,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70412,74037,1,'Bruce','2021-11-09 00:11:20','2023-03-09 04:38:53','10e89186-80ab-42b1-b3ec-56a90709b75b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Bruce-col-23.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Bruce-col-23.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Bruce-col-23.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Bruce-col-23.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Bruce-col-23.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Bruce-col-23.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Bruce-col-23.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Bruce-col-23.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1280,\"originalImageHeight\":1280,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBIAEgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQME/8QAHhAAAgICAwEBAAAAAAAAAAAAAQIDBAARBRIhMWH/xAAXAQEAAwAAAAAAAAAAAAAAAAABAAID/8QAGhEAAwEBAQEAAAAAAAAAAAAAAAECESESQf/aAAwDAQACEQMRAD8Arytw1FhSPYeZ+vYDes1t4iStZqoM8pkRyXVQCrlepYH8wivS6NT5YLyN03bEkCFVWGTSsPuxlLr4CEqPIOnSORVKeAsPCMIvODXXp//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#aca7be\",\"#2b2723\",\"#676250\",\"#6f6f69\",\"#5a5465\"],\"lightness\":42,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70413,74038,1,'Janine','2021-11-09 00:11:47','2021-11-09 00:11:47','ac8c2578-4709-4ecb-92b0-f5576f846e34',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Janine.png\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Janine.png\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Janine.png\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Janine.png\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Janine.png.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Janine.png.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Janine.png.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Janine.png.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1280\",\"originalImageHeight\":\"1280\",\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABgID/8QAJRAAAgECBQMFAAAAAAAAAAAAAQIDAAUEERIhgQYTMRUyYXGR/8QAFQEBAQAAAAAAAAAAAAAAAAAAAgP/xAAYEQADAQEAAAAAAAAAAAAAAAAAARIRYf/aAAwDAQACEQMRAD8AK2G0epNK7EBI9tzkM/n8qLxbRgSGTxq0nI5jil3S9ixVvwcs0jq5lA1Qhd1558Vheun8XcYHkV+2IiWWNl9x+6Guikqen//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c9a797\",\"#0e0a09\",\"#828482\",\"#8c4c2c\",\"#6c748c\"],\"lightness\":42,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70414,74039,1,'Jo','2021-11-09 00:12:44','2023-03-09 04:27:18','6185c2ca-22fd-4076-a7fa-a3954b46b7e6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Jo-col-23.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Jo-col-23.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Jo-col-23.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Jo-col-23.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Jo-col-23.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Jo-col-23.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Jo-col-23.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Jo-col-23.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1280,\"originalImageHeight\":1280,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBIAEgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAQIDBP/EACAQAAICAwABBQAAAAAAAAAAAAECAxEABBIhBRMUQXH/xAAWAQEBAQAAAAAAAAAAAAAAAAABAAL/xAAZEQADAQEBAAAAAAAAAAAAAAABAhEAEiH/2gAMAwEAAhEDEQA/ANO5O0YjVDyXbnrm6zbnkXKimZ4vcVSJX7o+G5qx+ZI3QumXkzCXRl3t06sUqCOIBnJWyTi3vmFMN12gC+pfEMhor4NfdYKORMsabv/Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#9794a8\",\"#473735\",\"#dcced6\",\"#4e4c5c\",\"#44445c\"],\"lightness\":50,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70415,74040,1,'Kat','2021-11-09 00:13:22','2021-11-09 00:13:22','ef65139c-3ac3-4903-80b2-04ca9300abb1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Kat.png\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Kat.png\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Kat.png\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Kat.png\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Kat.png.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Kat.png.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Kat.png.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Kat.png.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1280\",\"originalImageHeight\":\"1280\",\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAwUG/8QAIBAAAgICAgIDAAAAAAAAAAAAAQMCEQQFADEhQQYSof/EABUBAQEAAAAAAAAAAAAAAAAAAAID/8QAGBEAAgMAAAAAAAAAAAAAAAAAABIBESH/2gAMAwEAAhEDEQA/AMpodYnYtaclpWpUQfHsnhbbBViMiUTM1ysC/XL/AMXw8jGhU1ESdMWD39K7/eFv9fkNWIxh1K4X4scN6UWFP//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#b59387\",\"#140f0e\",\"#7c7c74\",\"#874242\",\"#787274\"],\"lightness\":40,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70416,74041,1,'Kate','2021-11-09 00:13:46','2021-11-09 00:13:46','6c564b36-8d7d-44ed-ac5f-b7722b3d64a3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Kate.png\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Kate.png\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Kate.png\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Kate.png\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Kate.png.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Kate.png.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Kate.png.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Kate.png.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1280\",\"originalImageHeight\":\"1280\",\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADASIAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAAMFBv/EAB8QAAEEAgMBAQAAAAAAAAAAAAECAwQRAAUSFEFxgf/EABQBAQAAAAAAAAAAAAAAAAAAAAL/xAAXEQADAQAAAAAAAAAAAAAAAAAAAREh/9oADAMBAAIRAxEAPwDG6qF3Hwk+mh9w2kJMKQppKwviaJAoZXh6vYavqSEtFSnBzFC6vw/mJn6ue87IUuO5Ys8iPBh2iih//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c4b1aa\",\"#140f0b\",\"#604a3f\",\"#8a8684\",\"#807c84\"],\"lightness\":42,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70417,74042,1,'Kimi','2021-11-09 00:14:09','2023-03-09 04:26:52','454fc333-02e0-496e-9146-c35098b15b91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Kimi-col-23.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Kimi-col-23.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Kimi-col-23.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Kimi-col-23.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Kimi-col-23.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Kimi-col-23.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Kimi-col-23.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Kimi-col-23.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1280,\"originalImageHeight\":1280,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBIAEgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAIF/8QAIhAAAgEDBAIDAAAAAAAAAAAAAQIDAAQFERITITFBQmFx/8QAFgEBAQEAAAAAAAAAAAAAAAAAAAID/8QAGxEBAAMAAwEAAAAAAAAAAAAAAQACEQMSMVH/2gAMAwEAAhEDEQA/AHZCR4YBwBeR2CqW8D7rWz1Niprkm2aVomWfaZUO1io0BpW3Y2LGOTKzeRMl1FbhhGsTK7v77OnVTyfJdD1g5MtPbNzJJuV3JZT8uzp+dVlxqOS7g1Gf/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#a5a3be\",\"#1e171c\",\"#663933\",\"#875e51\",\"#e4bcac\"],\"lightness\":42,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70418,74043,1,'Liam','2021-11-09 00:14:39','2023-03-09 04:27:00','f9885900-fe85-4d60-ae48-6270c4ce3f93',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Liam-col-23.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Liam-col-23.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Liam-col-23.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Liam-col-23.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Liam-col-23.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Liam-col-23.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Liam-col-23.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Liam-col-23.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1280,\"originalImageHeight\":1280,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBIAEgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABAb/xAAkEAACAAQEBwAAAAAAAAAAAAABAgADBBEFIVFhBhMUIyQxUv/EABYBAQEBAAAAAAAAAAAAAAAAAAABAv/EABkRAAMBAQEAAAAAAAAAAAAAAAECEQASIf/aAAwDAQACEQMRAD8AVVz+mRD9OFvpG3MFG0gpmWtiMjfeCN0LjryZpOsxtquZy5YCU4bNrXYjWDeiaKYc2TxB5ayinYNlDeiN4iCCasabv//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#a59fb3\",\"#24222d\",\"#61423c\",\"#dea492\",\"#8b5b4f\"],\"lightness\":44,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70419,74044,1,'Margaret','2021-11-09 00:15:47','2023-03-09 04:27:24','22e1bd13-bdf7-4137-84da-47b0a46cf094',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Margaret-col-23.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Margaret-col-23.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Margaret-col-23.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Margaret-col-23.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Margaret-col-23.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Margaret-col-23.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Margaret-col-23.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Margaret-col-23.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1280,\"originalImageHeight\":1280,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBIAEgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABAL/xAAiEAADAAEDAwUAAAAAAAAAAAABAgMRAAQSBRNBITEygcH/xAAWAQEBAQAAAAAAAAAAAAAAAAABAgD/xAAbEQACAwEBAQAAAAAAAAAAAAABEQACEgMhMf/aAAwDAQACEQMRAD8ATvKVmqLHAajceRGQv1q72yHGo0VK2Fa0m6bgDuzbiSvsfIOmttBzWGSoHrz0V9rGAJoaB849BjR0+KFSi4rpUaKta0bJo/IjHx8fmp5leRsX7P/Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#a39fb2\",\"#201918\",\"#5f4036\",\"#765b4d\",\"#ddab95\"],\"lightness\":40,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70420,74045,1,'Bec','2021-11-09 00:16:14','2023-03-09 04:27:51','7a915560-a097-4fb2-99d3-1879d1abf938',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Bec-col-23.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Bec-col-23.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Bec-col-23.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Bec-col-23.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Bec-col-23.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Bec-col-23.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Bec-col-23.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Bec-col-23.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1280,\"originalImageHeight\":1280,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBIAEgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAAMEBf/EAB8QAAICAgIDAQAAAAAAAAAAAAEDAhEABAUSEyFBIv/EABcBAAMBAAAAAAAAAAAAAAAAAAECAwD/xAAZEQADAQEBAAAAAAAAAAAAAAAAAQIREkH/2gAMAwEAAhEDEQA/ADkNqaAlaaDHT6gkWAPpylPlaFLXg/WdKUmqYQWKNEgVYPsGsE10tNSx4T7vGt5N6vCyMIpn+vpx6npFIj00NbiJLfsvk7sW11FUBQxZnkap16f/2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#9b91ab\",\"#1a1317\",\"#e2b1d9\",\"#643f40\",\"#6a3e65\"],\"lightness\":45,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70421,74046,1,'Ryan','2021-11-09 00:16:39','2021-11-09 00:16:39','9e339c0a-ba57-404e-b2df-ecc7f0a37a59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Ryan.png\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Ryan.png\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Ryan.png\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Ryan.png\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Ryan.png.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Ryan.png.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Ryan.png.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Ryan.png.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"1280\",\"originalImageHeight\":\"1280\",\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAMG/8QAIhAAAgEEAQQDAAAAAAAAAAAAAQIEAAMFEkEGERRRIXGB/8QAFQEBAQAAAAAAAAAAAAAAAAAAAQL/xAAXEQEAAwAAAAAAAAAAAAAAAAAAEiFB/9oADAMBAAIRAxEAPwDKdP4xclJuK4LC2u2o5qeZhJCkqtsEKwPwfun4BDi5vkSbhQFdWQej7o2YAlyy1l9wo7AcflGqqL//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#151513\",\"#b69088\",\"#7c877d\",\"#884c50\",\"#7c7c7c\"],\"lightness\":38,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70422,74047,1,'Scott','2021-11-09 00:17:04','2023-03-09 04:27:58','770d9222-c4ac-4f7b-9565-3487cdc0760f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Scott-col-23.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Scott-col-23.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Scott-col-23.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Scott-col-23.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Scott-col-23.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Scott-col-23.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Scott-col-23.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Scott-col-23.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1280,\"originalImageHeight\":1280,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBIAEgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFAABAAAAAAAAAAAAAAAAAAAABP/EAB8QAAICAgIDAQAAAAAAAAAAAAECAxEABAUSE0FhMv/EABcBAAMBAAAAAAAAAAAAAAAAAAECAwD/xAAaEQADAQEBAQAAAAAAAAAAAAAAAQIRAxIh/9oADAMBAAIRAxEAPwBHMbUmsIFRzGJX6s4FkD4Me20vgZWsZqyeWENZPoMRXb7mh+kGljCckp3dJREBTNYer617yj57JJWlQrVjkjhVCpIA/WLyhudH60lWH//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#b0aec3\",\"#453130\",\"#315386\",\"#6d8bbe\",\"#5c5465\"],\"lightness\":47,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70424,74049,1,'Suzanne 2','2021-11-09 00:17:58','2023-03-09 04:27:41','af335adf-80ac-4b43-8704-fdec64ed691d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Suz-col-23.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Suz-col-23.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Suz-col-23.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Suz-col-23.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Suz-col-23.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Suz-col-23.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Suz-col-23.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Suz-col-23.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1280,\"originalImageHeight\":1280,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBIAEgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAQQFBv/EACMQAAICAgECBwAAAAAAAAAAAAEDAhEEBQBBYQYSISIjQnH/xAAXAQEBAQEAAAAAAAAAAAAAAAAAAQID/8QAGhEAAwADAQAAAAAAAAAAAAAAAAECAxESIf/aAAwDAQACEQMRAD8AobXLnhJWFgFjZeUX0FWTzpdcrwsrbGsF5eqUWD5F0JelX35MdOl6W55Zl9rtI7bPnBc1rxcX3Bp+3Q8zkexAdX4lCc6UGRBQ0i51RHf84xrkVXR//9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#211b1d\",\"#c2bcd3\",\"#7e5946\",\"#776e7c\",\"#5e5c74\"],\"lightness\":41,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70425,74050,1,'Tim','2021-11-09 00:18:21','2023-03-09 04:28:12','05b19d47-cb2f-4b2d-9b91-918683aa3fbf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Tim-col-23.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Tim-col-23.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Tim-col-23.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Tim-col-23.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Tim-col-23.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Tim-col-23.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Tim-col-23.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Tim-col-23.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1280,\"originalImageHeight\":1280,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBIAEgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAwQFBv/EACEQAAIBBAICAwAAAAAAAAAAAAEDAgAEERIFQSExUWGB/8QAFgEBAQEAAAAAAAAAAAAAAAAAAQIA/8QAGREAAwEBAQAAAAAAAAAAAAAAAAERAhIh/9oADAMBAAIRAxEAPwAnKPYhKwmek2MEdsZwO6vb5VHKrg5bbFIEztIeNiMZ+62NdKjrPLhmuZ5NsrxlpgRUuUSSPZ7qmr4QnCwm/ELlSNcqbESWz5z0f3IrZzFBbrp//9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#a59fb4\",\"#1e1e2d\",\"#855c4b\",\"#dee0ee\",\"#4a516a\"],\"lightness\":48,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70426,74051,1,NULL,'2021-11-09 00:39:42','2021-11-15 01:17:44','6aaf89f1-2837-4de8-a775-9943818fcfe3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70427,74052,1,'Home','2021-11-09 00:40:15','2021-11-09 00:40:15','6075f717-de82-4285-8ea1-79bd73c9612d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70428,74059,1,'About us','2021-11-09 00:40:45','2021-11-09 00:40:45','9558eb29-7c4c-4a67-83ba-e56ea30e5454',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17910\",\"17881\",\"17848\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70429,74060,1,'Contact ','2021-11-09 00:41:42','2021-11-09 00:41:42','cef2e05e-a3b7-4426-89d6-f3330265825f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dJRNyHHzcn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Contact us\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Like what you see? Get in touch with us—we can’t wait to meet you.\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":\"Contact\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-172EAYLfJn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-JIUNKK7uSu\",\"content\":{\"fields\":{\"freeformForm\":2,\"backgroundColour\":\"bg-black\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70430,74061,1,'2021-11-09 11:00:28','2021-11-09 01:00:28','2021-11-09 01:00:28','699ca14f-e724-4635-92c3-d7a330571ba6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70432,74069,1,'Home','2021-11-09 01:19:35','2021-11-09 01:19:35','df12eb62-c898-40d0-9ee5-91b11d0c0ecb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'New Word Order - Creative agency - Brisbane',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70433,74076,1,'Home','2021-11-09 01:20:06','2021-11-09 01:20:06','1b4d0ef2-d525-4101-ac56-04d396b07fb3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'New Word Order - Creative agency - Brisbane',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70435,74084,1,'2021-11-09 11:27:07','2021-11-09 01:27:07','2021-11-09 01:27:07','4d5fabfc-f7e0-4414-bb73-9660b95a36d7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70436,74085,1,'About us','2021-11-09 01:27:18','2021-11-09 01:27:18','91cfd80f-16cd-4b10-a0cb-3f52a2f627c6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17910\",\"17881\",\"17848\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'About us','We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70438,74087,1,'Contact ','2021-11-09 01:27:34','2021-11-09 01:27:34','cd02e230-c577-4fb3-9e19-5648ca0cde4d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dJRNyHHzcn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Contact us\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Like what you see? Get in touch with us—we can’t wait to meet you.\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":\"Contact\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-172EAYLfJn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-JIUNKK7uSu\",\"content\":{\"fields\":{\"freeformForm\":2,\"backgroundColour\":\"bg-black\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Contact us','Like what you see? Get in touch with us—we can’t wait to meet you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70443,74098,1,'Home','2021-11-09 01:32:15','2021-11-09 01:32:15','72618b00-04a3-44f0-9a15-0b19e56bf4f2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'New Word Order - Creative agency - Brisbane',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70444,74105,1,'Logo black','2021-11-09 01:34:39','2021-11-09 01:34:39','3119abb5-908e-477d-b20c-5b77c80499a3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"300\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_300x152_crop_center-center_line/logo-black.svg\"},\"optimizedWebPImageUrls\":{\"300\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_300x152_crop_center-center_line/logo-black.svg.webp\"},\"variantSourceWidths\":[\"300\"],\"variantHeights\":{\"300\":152},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":\"300\",\"originalImageHeight\":\"152\",\"placeholder\":\"/9j/4AAQSkZJRgABAQAAYABgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAIABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAAEF/8QAIRAAAQMDBAMAAAAAAAAAAAAAAQIDEQAEEgUTFCFRscH/xAAUAQEAAAAAAAAAAAAAAAAAAAAA/8QAFBEBAAAAAAAAAAAAAAAAAAAAAP/aAAwDAQACEQMRAD8A1tdbu1ob521MHDbnyJ+VNHvrWzWtx/MuKBAwE9T36FKUH//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e4e2e3\",\"#242022\",\"#6e6c6d\",\"#8c8c8c\",\"#8c848c\"],\"lightness\":52,\"placeholderWidth\":300,\"placeholderHeight\":152,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70446,74107,1,'These are a few of our favourite brands','2021-11-09 01:39:33','2021-11-09 01:39:33','2c87f38b-02f6-464a-b0cc-2598bfd95819',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4Kng0ZJkmt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"I asked the team at New Word Order to think of a brand to which they are unwaveringly loyal.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Here\'s what they said.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fCc8knIn7z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Andrew\",\"plainText\":\"[**ASICS**](https://www.asics.com/au/en-au/). Since Mum and Dad spoiled me when I was 12, these are the only sports shoes I buy. They last forever and are Australian. Luckily they make specialised hockey shoes as well!\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BP6fkJyA6u\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kimi\",\"plainText\":\"[**Jatz**](https://www.arnotts.com/products/crackers)! The most versatile cracker that suits all and any occasion! You got a dip? Jatz. A soup? Dip a Jatz in. A fancy, artisanal soft cheese? Crack the Jatz out. A simple cheddar cheese? Jatz it. Feeling really hungover and can\'t keep anything down but need to eat something so you can muster the strength to order a burrito on Uber Eats? Jatz it, baby.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Yr3xX8UNUq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Tim\",\"plainText\":\"Super obvious one but [**Apple**](https://www.apple.com/au/). Everything from their product design and UI right through to their bricks and mortar storefront is meant to make you ‘think differently’ as per their brand promise, but at the same time give you a sense of familiarity. I’ve dabbled with more phones and laptops than I care to mention but will always come back to Apple. That said, iTunes sucks!\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WePs4cQeU3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Lynn\",\"plainText\":\"I can be impulsive by nature but the one thing I am never impulsive about is my [**Impulse**](https://www.unilever.com.au/brands/beauty-personal-care/impulse/) Merely Musk deodorant. I have used this deodorant since I can remember because it smells good and stops me smelling bad! I never worry about BO when I have my Impulse on!\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kFDk9QaMtq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Jo\",\"plainText\":\"[**RM Williams**](https://www.rmwilliams.com.au/). I got my first pair of boots on arrival to \'Straya as I’d heard great things and love a good Chelsea boot. After 17 years, I am only on my third pair, which shows you the quality and craftsmanship that goes into the RM brand.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qjkDIEMMe3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kat\",\"plainText\":\"[**The Iconic**](https://www.theiconic.com.au/). Their customer service/shipping options/returns policy is so user friendly and far outshines any competitors. They make the process of purchasing and returning so easy that I’m happy to throw my money at them. I’m sure they would lose money on the shipping/returns too, but make it back with the volume of sales from happy customers like myself.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-nXicTrGS5B\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bruce\",\"plainText\":\"[**The Dirt Company**](https://thedirtcompany.com.au/)\'s laundry detergent. I like the idea that not everything we buy has to \'cost the earth\' and Dirt have not only made a more eco-friendly washing detergent, but you can send their packaging back to them and they will reuse it. Their highly concentrated detergent won\'t harm the environment and the reusable packaging means a whole lot of plastic is not going into landfill or waterways. Another company that shows you can have a successful business while still protecting the planet.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ieCD98S7up\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bec\",\"plainText\":\"I found this tricky as I am a bit of a brand tart, and I have been disappointed by a few brands in the past who have not lived up to my expectation (“Nooo we vehemently don’t and will never test on animals…but we will sell out to the big company who does”) BUT a brand I have stayed loyal to is [**Vegemite**](https://vegemite.com.au/).\\n\\n– I loved it as a kid—I suspect the 50s jingle had more to do with that than the taste. Mum and dad regretted introducing us to that song with our robust young lungs joyfully belting it out over and over again on long car trips.\\n– I loved it as a young adult—that black tar smeared on toast. It was post-party comfort food and it was a cheap meal (with Vitamin B!). It made you feel better, like you could go on.\\n– I loved it as a slightly older adult when living abroad—Vegemite toast was like a hug from home. How happy was I when I realised you could get it everywhere and it still tasted the same, unlike Cadbury chocolate. There\'s that brand disappointment!\\n\\nI don’t know that Vegemite is the healthiest food group or even a brand with the most integrity, but I have an emotional connection to that bold brand of yellow, red and white with its tarry contents. It tastes so good on toast and even gives a stir fry an interesting edge. It’s stayed pretty consistent in a world that has changed so much, and as an Australian living abroad it’s part of your heritage and your identity. What’s even better, the brand has come back home to Australia.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dSCs5J35lI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kerry\",\"plainText\":\"I\'m loyal to the US hair care brand [**DevaCurl**](https://www.devacurl.com/us). It has been the only brand to date that has been able to calm my crazy hair and embrace my God-given curls. Of recent times, DevaCurl have been dragged through the courts as many people have claimed it makes their hair fall out. But I have kept on buying it from the US after 5 years of use and I still have enough hair to go around, so somehow I don\'t think it is a problem for me.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aPLfD479sh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Liam\",\"plainText\":\"I tend to enjoy a little cheating on my normal choices. But one brand I’ve stuck with since my teens is [**Ray-Ban**](https://www.ray-ban.com/australia) sunglasses. I like that their styles never stray too much from the original designs and they don’t follow trends. I’ve been gifted \'luxury fashion\' brand sunglasses before and they are more about getting their fancy name or logo on the product than anything else—the quality is dubious and the style trends come and go. Ray-Ban don’t try to be overly fashionable, they work well and look good. Proud middle-aged man moment for me was after I had bought a new pair of Ray-Bans overseas and in my first week back in Brisbane the cool hipster barista at the coffee shop said to me “Love your sunnies… they’re on point”.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qhin1NvFDx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Ryan\",\"plainText\":\"[**Patagonia**](https://www.patagonia.com.au/). It lasts for ages and they actually fix stuff. I had a pair of hiking pants that got hammered in Nepal and they fixed them for me. They also give 1% of sales back to conservation efforts. Their stuff also just seems to fit me really well.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UgAjx4JylF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Suzanne\",\"plainText\":\"[**Kawai**](https://kawai.com.au/) pianos is mine. I’ve played for 45 years and, no matter where I find a Kawai, the touch and the sound is consistent. The Kawai is smooth and sonorous. Love that it’s been so consistent for so long.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8UXqqjffzF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Scott\",\"plainText\":\"Tim took mine—Apple has been the most consistent brand in my life since we started NWO (and before, too) and crossed over seamlessly into my personal life as well. Their stuff works, lasts, is simple to use and is beautiful to look at, use and hold. But if I have to pick a different one I’d pick [**Nudie Jeans**](https://www.nudiejeans.com/). Like Patagonia they repair for free, they give you money for your old pair and resell it to save waste. And, their jeans just always fit me in a way no other ones ever have.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-v0xY9fvU6u\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kate\",\"plainText\":\"[**IKEA**](https://www.ikea.com/au/en/) is a Swedish wonderland. For me there’s nothing better than a free Saturday afternoon, barrelling down the M1 towards the glorious blue and yellow castle. From beginning to end the experience is flawlessly designed—from the carpark, to the food, to the warehouse, to the satisfaction of sitting on the couch you spent the past hour bolting together. Every aspect of the IKEA brand is designed to hug your mind, body and soul. No brand can wrap you in a cozy $5 throw like IKEA can.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uRfO2vtwj8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Margaret\",\"plainText\":\"[**Haagen Dazs**](https://www.haagen-dazs.com.au/) ice cream. No flavour ever disappoints and that cream base… I had my first HD on Singapore Airlines when I was 17 and I ate four in row. (Tip: ask four different air hostesses.)\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kesJqAugGq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bree\",\"plainText\":\"I regularly drive out of my way to stop at [**7-Eleven**](https://www.7eleven.com.au/) for fuel. I wouldn\'t even consider going anywhere else, and the reason why is so simple: the My 7-Eleven app. The lock-in price feature is a game changer and I get a thrill every time I see the price on the EFTPOS machine and how much lower it is than the price on the pump outside. It almost makes me enjoy buying fuel.\\n\\nThe Krispy Kremes don\'t hurt either.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-K1FhEue9Fp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As you can tell from the kinds of brands they chose, your brand doesn\'t have to be flashy or sexy. It just has to be true to itself and deliver on its promises, consistently and with a bit of personality.\\n\\n\\n*Disclaimer: New Word Order is not sponsored by or partnered with any of the mentioned brands.*\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'These are a few of our favourite brands','I asked the team at New Word Order to think of a brand to which they are unwaveringly loyal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70448,74109,1,'Hear the equality stories from NWO women','2021-11-09 01:49:48','2021-11-09 01:49:48','a733e1e9-f666-4d0e-ad32-952e3abf30cb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Wernf3qqvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"International Women\'s Day 2021\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We can all choose to challenge and call out inequality. We can all choose to seek out and celebrate women\'s achievements. Collectively, we can all help create an inclusive world. \\n\\nFrom challenge comes change, so let\'s all choose to challenge.\\n\\nThe 2021 theme for International Women\'s Day is #choosetochallenge. We asked the women of NWO what this means for them.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dQqtfQZh3I\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17131\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZSm70uSTq5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Jo Penney: We don\'t need titles\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"As a female with short hair, I am often referred to as ‘sir’.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This occurs mostly by flight attendants who take a quick glance and assume, rather than just offering a friendly ‘good morning’ or ‘good evening’ and avoiding their own embarrassment when they realise their mistake.\\n\\nOnce, the same flight attendant who greeted me to the plane was so embarrassed she could barely offer me tea or coffee later in the flight.\\n\\nIt’s silly and avoidable, and I find it quite funny and entertaining to see which way it will go.\\n\\nFor others, though, it can be an awful embarrassment that can easily be avoided by removing titles.\\n\\nSo, this International Women’s Day, I’m choosing to challenge all of us to end their use.\\n\\nI’m a proud female but I don’t feel the need to be referred to as madame, ma’am, mademoiselle, etc. It’s old-fashioned and classist.\\n\\nAnd as a proud LGBTI woman, I am extra aware that titles can isolate and sideline—not encourage and respect—people for whom gender and identity has been hard-won.\\n\\nLet’s talk our walk. Let’s end titles for good.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oVs7jOKhCm\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17127\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-823iS7DNes\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Kat Scott: The courage to listen\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"I’ve always thought the conversation around challenges women face was about finding your voice and speaking up; that strong, independent women needed to find the confidence to make their voices heard.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The older I get and the more the modern world allows us to see through the structures of society, economics and politics, I realise the conversation is really about finding the confidence to listen to those voices.\\n\\nYou see it every day in business, TV, music, media and social situations that when there is a woman who stands up and says how she feels, she is perceived as “too much”.\\n\\nI am guilty at times of not hearing other female voices and, worse than anything, sometimes of not even hearing my own voice.\\n\\nDespite thinking of myself as a very headstrong, intelligent and confident person, I tell myself to “tone it down” because I’m being “too much”.\\n\\nI want to see people rising to the challenge of actively listening to those female voices and perspectives, not because they are female but because they are equal.\\n\\nEvery person should be offered the same platform, the same ears and the same opportunities—if we choose to take them.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YdYo9ey7f6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17124\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jXUudS4IzN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Rebecca Holman: Let\'s keep choosing to challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s to the great women who kicked it all off.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"They challenged previously held societal norms, at great personal and physical cost, to give us the right to vote, the right to marry who we like, the right to choose our own careers, to be independent and to move closer to gender equality.\\n\\nThe spirit of these pioneers lives on, and the hard and uncomfortable work continues in many forms with each of us.\\n\\nAll of us can keep choosing to challenge each other—woman to man, woman to woman, man to man—in our everyday lives.\\n\\nHere’s to the mums, dads and those very special teachers who nurture our kids, lead by example and challenge the next generation to grow into people who treat each other with respect, patience and compassion.\\n\\nLet’s keep championing and supporting each other to achieve true gender equality.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RUzEpjpFMZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17119\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7wTrhTk0Ps\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Kimi Schieren: Deeper than the dollar amount\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Revealing you have a side hustle always brings up questions about success.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"“What kind of a profit are you making?”\\n\\n“Is it worth it?”\\n\\nEspecially if you, like myself, also work a full-time job and the side hustle itself is almost equally as full-time—the questions surrounding the value of your extracurricular will frequently plague you.\\n\\nHolding the worth of something solely on whether or not it’s profitable can be a slippery slope of creating unattainable goals and unrealistic expectations on yourself and your business.\\n\\nWhat I get out of my side hustle both professionally and personally far surpasses any financial goals.\\n\\nIt’s an outlet for my creativity and a way to express myself. Plus, it helps me to be more creative in my day job.\\n\\nThe two jobs feed into each other and without either or both I would struggle to feel like myself.\\n\\nSuccess from my side hustle is measured in the praise of happy customers, the smiles and comments I get from people who pass my stuff in the streets, and the self-satisfaction I get from creating something from an idea in my head to something you can physically wear or hold.\\n\\nSure, getting paid is also great and I dream of the day when it can become my full-time job. But, for now, my success is much deeper than a dollar amount.\\n\\nThis International Women’s Day, I’m choosing to challenge the notion that wealth equals success.\\n\\nLet’s choose to open our mind to what success looks like and celebrate the amazing things we’re doing.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TAZHDkM6ny\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17115\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EVYfpAlzzL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Kate Wood: Because they challenged, I get to choose\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"I’m in the grey area between Gen Y and Z, so I’m a product of the many Gen X women who raised me, inspired me and challenged me.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Gen X women were born in the 70s and 80s when the ideals of having it all—stable marriage, perfect family, lucrative work—came disguised as female empowerment. What crippling expectations.\\n\\nThese women defied mathematics. There are only 24 hours in a day and having it all takes at least 36.\\n\\nThey challenged the gender norms of the time and proved that, in fact, you can have it all.\\n\\nBecause of that, I don’t have to be the perfect mum with the perfect kids. I don’t have to be married to the dreamiest spouse. I don’t have to cook like Nigella or clean like Marie Kondo. I don’t have to climb the corporate ladder and smash through glass ceilings.\\n\\nI certainly don’t need to do all of that at the same time.\\n\\nAnd because I’m lucky enough to work for an incredible Gen X woman, I don’t have to work twice as hard to earn the same as my male colleague.\\n\\nInstead, I get to choose my values and the kind of woman I want to be.\\n\\nTo all you Gen X women who bravely went before: thank you. Because you worked so hard to challenge, I get to choose.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PCfYuBrUwo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17114\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aX0BZHIT5e\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Suzanne Oxford: Let\'s not mistake peace-keeping for peace-making\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"As a person of faith, I’ve always been challenged by a verse that says, “as far as it depends on you, live at peace”. I consider this my mandate.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"But don’t mistake peace-keeping for peace-making.\\n\\nPeace-keeping keeps factions apart with no expectation of resolution. It’s maximum effort expended in a passive, zero sum game. It reinforces apathy, privilege and anger.\\n\\nMe? I’m a peace-maker. The very act of making peace—and making peace, and making peace—is dynamic and potent, shining a light where inequality and injustice rob people of true peace.\\n\\nPeace-making drives me to lean in and bear witness to people’s stories with compassion and empathy.\\n\\nIt compels me to respond with strategies and actions that can create lasting change.\\n\\nIt urges me to have uncomfortable conversations to elicit greater understanding.\\n\\nIt impels me own my blind spots so I can grow in gentleness—and, in turn, create even greater peace.\\n\\nThere’s nothing passive about being a peace-maker, and peace-making never ends.\\n\\nIn fact, as I consider the broken world my children are now entering as young adults, my peace-making is only increasing in volume—as is my understanding that peace is a human right and that, as far as it depends on me, I must give it voice and life.\\n\\nAnd so I do.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OM2HjsMtPT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17108\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Knak12weJl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Bree Leitch: Our voice carries weight, even when it wavers\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"I grew up posting everything on social media, compiling a collage of my perfect life.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Every photo is meticulously chosen out of hundreds taken, every smile critiqued, and every caption drafted and redrafted. Anything less than perfection simply won’t do—I have an audience to please, you see.\\n\\nWomen have fought since the beginning of time to have our voices heard and taken seriously. And now we have an audience, they’re out for blood. It’s the little things—misusing terminology, Facetune gone wrong, dating too many people or not enough—the list goes on. Our audience will fault us for anything in order to discredit us.\\n\\nThe worst part? Often, that audience is me. Sometimes it’s you. It’s all of us women at one point or another, not because we mean to, but because we are trained to. We are taught we must tear other women down in order to lift ourselves up.\\n\\nWhen we let ourselves believe that our own success—or self-security, or popularity, or whatever validation we seek—is dependent on the destruction of other women, we all suffer.\\n\\nWe don’t have to be perfect to be valid. Our voice carries weight, even when it wavers.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Hear the equality stories from NWO women','We can all choose to challenge and call out inequality. We can all choose to seek out and celebrate women\'s achievements. Collectively, we can all help create an inclusive world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70450,74111,1,'Hear the equality stories from NWO women','2021-11-09 01:53:02','2021-11-09 01:53:02','9a97c5fe-4439-40c3-a3fe-bdf7b14effb5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Wernf3qqvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"International Women\'s Day 2021\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We can all choose to challenge and call out inequality. We can all choose to seek out and celebrate women\'s achievements. Collectively, we can all help create an inclusive world. \\n\\nFrom challenge comes change, so let\'s all choose to challenge.\\n\\nThe 2021 theme for International Women\'s Day is #choosetochallenge. We asked the women of NWO what this means for them.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dQqtfQZh3I\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17131\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZSm70uSTq5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Jo Penney: We don\'t need titles\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"As a female with short hair, I am often referred to as ‘sir’.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This occurs mostly by flight attendants who take a quick glance and assume, rather than just offering a friendly ‘good morning’ or ‘good evening’ and avoiding their own embarrassment when they realise their mistake.\\n\\nOnce, the same flight attendant who greeted me to the plane was so embarrassed she could barely offer me tea or coffee later in the flight.\\n\\nIt’s silly and avoidable, and I find it quite funny and entertaining to see which way it will go.\\n\\nFor others, though, it can be an awful embarrassment that can easily be avoided by removing titles.\\n\\nSo, this International Women’s Day, I’m choosing to challenge all of us to end their use.\\n\\nI’m a proud female but I don’t feel the need to be referred to as madame, ma’am, mademoiselle, etc. It’s old-fashioned and classist.\\n\\nAnd as a proud LGBTI woman, I am extra aware that titles can isolate and sideline—not encourage and respect—people for whom gender and identity has been hard-won.\\n\\nLet’s talk our walk. Let’s end titles for good.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oVs7jOKhCm\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17127\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-823iS7DNes\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Kat Scott: The courage to listen\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"I’ve always thought the conversation around challenges women face was about finding your voice and speaking up; that strong, independent women needed to find the confidence to make their voices heard.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The older I get and the more the modern world allows us to see through the structures of society, economics and politics, I realise the conversation is really about finding the confidence to listen to those voices.\\n\\nYou see it every day in business, TV, music, media and social situations that when there is a woman who stands up and says how she feels, she is perceived as “too much”.\\n\\nI am guilty at times of not hearing other female voices and, worse than anything, sometimes of not even hearing my own voice.\\n\\nDespite thinking of myself as a very headstrong, intelligent and confident person, I tell myself to “tone it down” because I’m being “too much”.\\n\\nI want to see people rising to the challenge of actively listening to those female voices and perspectives, not because they are female but because they are equal.\\n\\nEvery person should be offered the same platform, the same ears and the same opportunities—if we choose to take them.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YdYo9ey7f6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17124\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jXUudS4IzN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Rebecca Holman: Let\'s keep choosing to challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s to the great women who kicked it all off.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"They challenged previously held societal norms, at great personal and physical cost, to give us the right to vote, the right to marry who we like, the right to choose our own careers, to be independent and to move closer to gender equality.\\n\\nThe spirit of these pioneers lives on, and the hard and uncomfortable work continues in many forms with each of us.\\n\\nAll of us can keep choosing to challenge each other—woman to man, woman to woman, man to man—in our everyday lives.\\n\\nHere’s to the mums, dads and those very special teachers who nurture our kids, lead by example and challenge the next generation to grow into people who treat each other with respect, patience and compassion.\\n\\nLet’s keep championing and supporting each other to achieve true gender equality.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RUzEpjpFMZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17119\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7wTrhTk0Ps\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Kimi Schieren: Deeper than the dollar amount\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Revealing you have a side hustle always brings up questions about success.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"“What kind of a profit are you making?”\\n\\n“Is it worth it?”\\n\\nEspecially if you, like myself, also work a full-time job and the side hustle itself is almost equally as full-time—the questions surrounding the value of your extracurricular will frequently plague you.\\n\\nHolding the worth of something solely on whether or not it’s profitable can be a slippery slope of creating unattainable goals and unrealistic expectations on yourself and your business.\\n\\nWhat I get out of my side hustle both professionally and personally far surpasses any financial goals.\\n\\nIt’s an outlet for my creativity and a way to express myself. Plus, it helps me to be more creative in my day job.\\n\\nThe two jobs feed into each other and without either or both I would struggle to feel like myself.\\n\\nSuccess from my side hustle is measured in the praise of happy customers, the smiles and comments I get from people who pass my stuff in the streets, and the self-satisfaction I get from creating something from an idea in my head to something you can physically wear or hold.\\n\\nSure, getting paid is also great and I dream of the day when it can become my full-time job. But, for now, my success is much deeper than a dollar amount.\\n\\nThis International Women’s Day, I’m choosing to challenge the notion that wealth equals success.\\n\\nLet’s choose to open our mind to what success looks like and celebrate the amazing things we’re doing.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TAZHDkM6ny\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17115\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EVYfpAlzzL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Kate Wood: Because they challenged, I get to choose\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"I’m in the grey area between Gen Y and Z, so I’m a product of the many Gen X women who raised me, inspired me and challenged me.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Gen X women were born in the 70s and 80s when the ideals of having it all—stable marriage, perfect family, lucrative work—came disguised as female empowerment. What crippling expectations.\\n\\nThese women defied mathematics. There are only 24 hours in a day and having it all takes at least 36.\\n\\nThey challenged the gender norms of the time and proved that, in fact, you can have it all.\\n\\nBecause of that, I don’t have to be the perfect mum with the perfect kids. I don’t have to be married to the dreamiest spouse. I don’t have to cook like Nigella or clean like Marie Kondo. I don’t have to climb the corporate ladder and smash through glass ceilings.\\n\\nI certainly don’t need to do all of that at the same time.\\n\\nAnd because I’m lucky enough to work for an incredible Gen X woman, I don’t have to work twice as hard to earn the same as my male colleague.\\n\\nInstead, I get to choose my values and the kind of woman I want to be.\\n\\nTo all you Gen X women who bravely went before: thank you. Because you worked so hard to challenge, I get to choose.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PCfYuBrUwo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17114\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aX0BZHIT5e\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Suzanne Oxford: Let\'s not mistake peace-keeping for peace-making\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"As a person of faith, I’ve always been challenged by a verse that says, “as far as it depends on you, live at peace”. I consider this my mandate.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"But don’t mistake peace-keeping for peace-making.\\n\\nPeace-keeping keeps factions apart with no expectation of resolution. It’s maximum effort expended in a passive, zero sum game. It reinforces apathy, privilege and anger.\\n\\nMe? I’m a peace-maker. The very act of making peace—and making peace, and making peace—is dynamic and potent, shining a light where inequality and injustice rob people of true peace.\\n\\nPeace-making drives me to lean in and bear witness to people’s stories with compassion and empathy.\\n\\nIt compels me to respond with strategies and actions that can create lasting change.\\n\\nIt urges me to have uncomfortable conversations to elicit greater understanding.\\n\\nIt impels me own my blind spots so I can grow in gentleness—and, in turn, create even greater peace.\\n\\nThere’s nothing passive about being a peace-maker, and peace-making never ends.\\n\\nIn fact, as I consider the broken world my children are now entering as young adults, my peace-making is only increasing in volume—as is my understanding that peace is a human right and that, as far as it depends on me, I must give it voice and life.\\n\\nAnd so I do.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OM2HjsMtPT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17108\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Knak12weJl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Bree Leitch: Our voice carries weight, even when it wavers\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"I grew up posting everything on social media, compiling a collage of my perfect life.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Every photo is meticulously chosen out of hundreds taken, every smile critiqued, and every caption drafted and redrafted. Anything less than perfection simply won’t do—I have an audience to please, you see.\\n\\nWomen have fought since the beginning of time to have our voices heard and taken seriously. And now we have an audience, they’re out for blood. It’s the little things—misusing terminology, Facetune gone wrong, dating too many people or not enough—the list goes on. Our audience will fault us for anything in order to discredit us.\\n\\nThe worst part? Often, that audience is me. Sometimes it’s you. It’s all of us women at one point or another, not because we mean to, but because we are trained to. We are taught we must tear other women down in order to lift ourselves up.\\n\\nWhen we let ourselves believe that our own success—or self-security, or popularity, or whatever validation we seek—is dependent on the destruction of other women, we all suffer.\\n\\nWe don’t have to be perfect to be valid. Our voice carries weight, even when it wavers.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Hear the equality stories from NWO women','We can all choose to challenge and call out inequality. We can all choose to seek out and celebrate women\'s achievements. Collectively, we can all help create an inclusive world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70452,74113,1,'Break away from the same-same with custom illustration','2021-11-09 01:54:49','2021-11-09 01:54:49','a3430925-5703-4553-b73d-771f9021c9b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tiYExhhMPf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"There’s nothing more special than something made just for you.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"You hold it loudly and proudly for all to see—and they notice because there’s nothing else in the world quite like it. And this makes you treasure it that little bit more.\\n\\nThe dream of an illustrator is to have time, budget and ability to craft a bespoke masterpiece for every job that comes across the desk.\\n\\nThat dream doesn’t turn to reality very often. But that doesn’t mean your brand has to revert to using the same old stock illustrations everyone else uses either.\\n\\nThere are so many ways to get over those hurdles when a project doesn’t have time or budget to allow for a custom piece.\\n\\nA lot of the time, stock illustration can be tweaked to give it the edge it needs to stand out from the crowd.\\n\\nChange up the colours, mix up the style and jazz up the faces.\\n\\nSometimes stock forms the base for us to build something fresh. And other times there might already be the perfect stock illustration that tells the right story without much tweaking at all.\\n\\nWhatever the constraints—budget, time, brief—there’s always a way to break free. It just takes some thinking outside of the box.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-amC4hnZM56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"If you’re drowning in a sea of same-same, come chat to us and [we’ll get you out of there in no time](/contact).\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Break away from the same-same with custom illustration','There’s nothing more special than something made just for you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70454,74115,1,'Break away from the same-same with custom illustration','2021-11-09 01:55:40','2021-11-09 01:55:40','27ee269c-bd32-4a01-9d87-49c79377def7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tiYExhhMPf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"There’s nothing more special than something made just for you.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"You hold it loudly and proudly for all to see—and they notice because there’s nothing else in the world quite like it. And this makes you treasure it that little bit more.\\n\\nThe dream of an illustrator is to have time, budget and ability to craft a bespoke masterpiece for every job that comes across the desk.\\n\\nThat dream doesn’t turn to reality very often. But that doesn’t mean your brand has to revert to using the same old stock illustrations everyone else uses either.\\n\\nThere are so many ways to get over those hurdles when a project doesn’t have time or budget to allow for a custom piece.\\n\\nA lot of the time, stock illustration can be tweaked to give it the edge it needs to stand out from the crowd.\\n\\nChange up the colours, mix up the style and jazz up the faces.\\n\\nSometimes stock forms the base for us to build something fresh. And other times there might already be the perfect stock illustration that tells the right story without much tweaking at all.\\n\\nWhatever the constraints—budget, time, brief—there’s always a way to break free. It just takes some thinking outside of the box.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-amC4hnZM56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"If you’re drowning in a sea of same-same, come chat to us and [we’ll get you out of there in no time](/contact).\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Break away from the same-same with custom illustration','There’s nothing more special than something made just for you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70456,74117,1,'Why you need a six-month comms strategy for your website','2021-11-09 01:56:33','2021-11-09 01:56:33','b0719be4-c19b-4629-80b9-c99ce899780e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AgEbVkr4de\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"YOU KNOW THE FEELING: AN AD PROMISE DRAWS YOU IN, YOU CLICK THROUGH TO THE WEBSITE AND YOU’RE IMPRESSED BECAUSE IT LOOKS SUPER SLICK.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Then you actually read it. And now you’re disappointed because it doesn’t actually say anything other than the surface detail of a business.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QesBwreMAq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"These websites are so common they’ve earned the term ‘brochure’ website. They look great, but that’s it.\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-b9aMnjAcJ0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We see it all the time and think it’s such a shame. Why? Because a website can be so. much. more.\\n\\nHow can your website escape the dreaded brochure effect? In short, don’t set and forget.\\n\\nGood websites move, breathe and live—just like your business does.\\n\\nEveryone knows it’s good practice to regularly update your website messaging and functionality. But you need to actually get around to doing it and—more importantly—have a reason for making a change.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3YeCOos4iz\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"So, what’s your strategy?\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V4Ur8T6jd4\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A website communication and engagement strategy has so many benefits. But the biggest one by far is SEO.\\n\\nBy biggest we don’t mean the most confusing or time-consuming. It simply boils down to content. Fresh content tells Google: This is who I am! This is what I do! See me! Hear me!\\n\\nGoogle’s algorithms are super clever because they serve up the sort of content people want. But it means Google can only give people the content they want if it knows about your business and what you’re offering.\\n\\nOf course, there are some technical aspects to consider. But your best SEO strategy is a long-term communications plan.\\n\\nDo you know what the next six months for your website content looks like? What can you offer your customers other than opening hours and where you’re located?\\n\\nBy developing a digital communications strategy, your website gets updated regularly, which helps Google share your message with the right people at the right time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5XBczMM2nF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Potential customers will find you, engage with you and trust you enough to get in touch.\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W1NCV9CxoK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"You have so many options for interesting content. It could be a thought-leadership piece, event, media release, whitepaper, testimonial—the list can go on.\\n\\nWe have a huge amount of communications tools and angles we can develop to bolster your web presence.\\n\\nGoogle also loves a fast, responsive website. Optimising your website by using the latest version of your content management system will ensure your site is running smoothly and as fast as it can.\\n\\nLikewise, this will make your site more secure and help prevent security breaches (particularly important if you use WordPress).\\n\\nWe also offer long-term website maintenance plans. These include detailed server monitoring and ensuring your CMS and plugins are up-to-date.\\n\\nFor more critical sites, we offer zero downtime code-update deployments.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-v9RKLjPOWn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Talk to us about a long-term strategy for your website so it can be more than just another ‘brochure site’.\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Why you need a six-month comms strategy for your website','Everyone knows it’s good practice to regularly update your website messaging and functionality. But you need to actually get around to doing it and—more importantly—have a reason for making a change.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70458,74119,1,'Pretty or powerful? And can you have it all?','2021-11-09 01:57:07','2021-11-09 01:57:07','f9c62fd3-3d96-4ef3-b45a-6c180b275b91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UxDAMYmx0G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Being a commercial creative means someone is hoping, expecting and paying for a result.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"But just because something is creative in its execution doesn’t mean it’s going to be effective in achieving its goal.\\n\\nHere are five pitfalls to avoid when procuring creative services:\\n\\n1. Hiring a single creative, like a designer, to be a whole creative team. Your supplier will end up working in one strength and many weaknesses.\\n2. Procuring from a supplier who can use design software but isn’t a designer. The work will miss the mark despite looking okay.\\n3. Working with a graphic designer who isn’t skilled in the type of design you need (like brand design). You’ll get a pretty logo lacking in brand story and meaning.\\n4. Jumping straight into design without a strategy. You’ll receive design work that’s lovely, even beautiful… but not strategic.\\n5. Failing to define what success looks like. Your supplier’s work will lack purpose. Instead, make sure you have a clear goal that measures the biggest outcome of all: return on investment.\\n\\nSo yes, creative work can be both pretty and powerful. And you can have it all… if you invest in a team of strategically focused creatives.\\n\\nCreative agencies cost more but are teams for a reason. **We\'re much more powerful together than on our own.**\\n\\nJust like a hand of aces versus a single 3.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Pretty or powerful? And can you have it all?','Being a commercial creative means someone is hoping, expecting and paying for a result.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70460,74121,1,'Seven mistakes people make building websites','2021-11-09 01:57:32','2021-11-09 01:57:32','fb1e933c-fd5f-418a-b26d-b188bd44d5d3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-anLTeFZY0U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Now is the moment.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The advertising you’ve done, the marketing budget you’ve spent, the countless planning meetings your team has attended—all that time and money you’ve invested has driven a potential customer to your website.\\n\\nAfter months—maybe years—of effort, your potential customer will make their decision in seconds.\\n\\nThey may love what they see and continue to be interested. Or they may leave, with their memory of you going up in smoke and your investment with it.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EfutEvAS20\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"That’s why it’s so important to build an effective website.\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZPpIywfo5M\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Framing a website to contain everything you need is challenging. Some websites become too word-heavy, while others lack structure and narrative.\\n\\nGetting your website right from the beginning can save you a lot of pain in the long run.\\n\\nHere are our tips for tackling website mistakes.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SUHWHfibhh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"1. Unacknowledged expectations\",\"plainText\":\"What do you expect your website to do for you? You want this investment to count, so be informed, decide what you need and be intentional with your allocated budget.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kEhIZbV4lw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There are only two options—either start with careful planning and consultation and spend a realistic budget, or jump in with assumptions … and experience scope-creep, frustration and the need to pour more money in later. \\n\\nYour time and money (and sanity) are too valuable to waste on option two. So, choose wisely.\\n\\nIt’s also important to understand the purpose of your website. A website for a website’s sake helps no-one. Your business is unique so your website should be, too. \\n\\nMake it crystal clear—state who you are, what you do and what you promise your customers. \\n\\nSet yourself up for success by providing your developer with a clear website purpose, an informed plan and a predetermined budget.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AvlLtsTA5v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"2. A guess is no good\",\"plainText\":\"Analytics, metrics or key performance indicators (KPIs)—they’re all clever ways to study the website user journey.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KbVtpoSNTv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"What do you need your website to achieve? This will depend on what kind of product or service you offer and the kind of experience you want to create for the user. \\n\\nLay out your objectives and match them with KPIs.\\n\\nThere are plenty of ways to get insight into your website. Consider bounce rates, session duration or pages per session metrics. \\n\\nOr you could sharpen your content strategy by watching goal conversion rates of passive to active website users. \\n\\nUnderstanding your metrics and the goals you want to achieve will also help you to understand how your website interacts with its digital ecosystem.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p5FEdYJwJA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"3. It’s not for you\",\"plainText\":\"It might be about you, but the website isn’t for you.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VInDUCQqbf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Optimising your website starts with learning what your users are responding well to. How are they getting to your website? What kind of content are they reading? When do they read it? How long are they staying?\\n\\nBy understanding your metrics you can shape a truly effective website experience for your customers. It’s all in the detail—from content creation to search engine optimisation.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-elwxPOwb2f\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"4. Information overload\",\"plainText\":\"Your website is where your potential customers will go to check your credibility.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-07RQSQ8ts5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Credibility is about trust. One way to build trust is to position yourself and your organisation as experts. However, credibility isn’t just about what you know—it’s about who you are. \\n\\nInclude stories and testimonials about you and your organisation to avoid information overload. \\n\\nThen, potential customers will leave your website satisfied that you can be trusted ... and they\'re one step closer to doing business with you.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4aZLU4d7lj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"5. Losing the user\",\"plainText\":\"Many people complain about feeling lost on websites.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5Up8K6KfhA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The customer journey should be clear. If the information on your website is simple and structured, you can guide visitors on the path you’d like them to take. \\n\\nUse tabs and sub-pages for different categories, and make it logical. For best results, spend time studying user movements and running trials and tests. \\n\\nOver time your predictions will become more accurate as you get to know your audience.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-J6N6kO7pK4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"6. Wasted words\",\"plainText\":\"Capture your customers quickly.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gvCeMnMMmI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There are some hallmarks we use when writing web copy. Here are a few of them:\\n\\n- short, effective sentences (say the same information with less)\\n- sub-headings and headings containing keywords\\n- everyday words the average reader can easily understand (plain English)\\n- direct language\\n- consistent, logical structuring of information.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9cFms9o1W6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"7. Don\'t be unfriendly\",\"plainText\":\"How does your website display on mobile?\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WNBSOqBQRA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The majority of the time, someone will be visiting your website on their phone (68.1% in 2020 to be exact). That means when it comes to your website design, it\'s not enough that your website simply works on mobile. It needs to be designed with mobile in mind **first**.\\n\\nIf your website doesn\'t look amazing and function seamlessly on mobile, your customers won\'t go looking for their nearest desktop computer...  they\'ll look for another website. \\n\\nWhat kind of service do you give your customers in person? Ensure they experience the same quality on your website, and more importantly, on their phone.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Seven mistakes people make building websites','The advertising you’ve done, the marketing budget you’ve spent, the countless planning meetings your team has attended—all that time and money you’ve invested has driven a potential customer to your website.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70462,74123,1,'The building blocks of branding','2021-11-09 01:58:03','2021-11-09 01:58:03','6b7bd68b-c950-477d-a560-51d567f76b29',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UBcW4IgaI5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Through 20 years of branding experience, we’ve come to understand stakeholder engagement is essential for a brand to have cut-through.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’ve engaged with our clients’ stakeholders for many years and in many ways—ranging from formal, formative market research through to in-depth focus groups, workshops, community forums, brand satisfaction surveys and phone interviews.\\n\\nNo matter the method, what really counts is that we capture how people relate to your brand. That relationship leads to relevance and then the ultimate goal: resonance.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qaQGFaRj3d\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Relationship\",\"plainText\":\"Every great brand is built on relationship.\\n\\nWhen you form healthy relationships with stakeholders, you open yourself up to a range of opinions. Generally, feedback gets more constructive as the relationship grows healthier.\\n\\nIf you’re the brand manager, it can feel a bit like tough love at first—but it does get easier.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IDzmWzpUSE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Relevance\",\"plainText\":\"So much more than a logo, brands are heavy with meaning for stakeholders. And so if the environment changes but your brand doesn’t, the meaning is lost.\\n\\nA lot of the stakeholder feedback we hear about brands is that they’re outdated or lack appeal. Without relevance, your stakeholders no longer feel the love.\\n\\nConstantly retune yourself to your stakeholders and you’ll keep fulfilling their needs.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8Wdlr8QGTN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Resonance\",\"plainText\":\"Resonance is where understanding meets impact.\\n\\nA brand rich with resonance is the holy grail of marketing and, true to legend, few reach it.\\n\\nThat’s because resonance means your brand is a perfect fit for your stakeholders’ environment, pain points, wants and emotional connection.\\n\\nResonance engenders attention and respect, and turns want to need.\\n\\nAnd when stakeholders can’t live without your brand? Happy days.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EdELli6glE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The three Rs start here\",\"plainText\":\"Whether you’re looking to name and brand or rename and rebrand, your brand journey starts with understanding your stakeholders.\\n\\nTalk to us about how to take your first steps.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The building blocks of branding','Through 20 years of branding experience, we’ve come to understand stakeholder engagement is essential for a brand to have cut-through.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70464,74125,1,'Want to understand your brand? Ask your stakeholders.','2021-11-09 01:58:38','2021-11-09 01:58:38','8074d142-2d9d-4b7a-b946-2afa6368c800',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pb6yRuUQJr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":[],\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BpDlpLY30k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Whether they are inside, outside, removed or closely involved—stakeholders have the insight businesses need for long-term growth and sustainability.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"If they are a stakeholder, they have a connection with you.\\n\\nAnd like any other relationship, they need to know their connection, time and opinions are valued.\\n\\nIt often takes an open mind to find what works for you and the stakeholder.\\n\\nFinding this place of mutual benefit can lead to business growth and longevity.\\n\\nWe’ve broken down our approach to nurturing stakeholder relationships for meaningful engagement.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-023wqZnDwH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Your stakeholder is anyone who can be impacted by your business.\",\"plainText\":\"Once you really understand this, you’ll start to notice the cycle of impact between the stakeholder and your business. And, this is partly why we begin to engage with stakeholders—to understand how different groups are responding, reacting or behaving.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZC7YPx4oyi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"But who are they, really?\",\"plainText\":\"Now, go deeper to really understand the nuances of your stakeholder groups.\\n\\nYour engagement plan should be detailed enough to allow for different levels of accessibility, and demographic and cultural considerations. The better you nuance, the greater the feeling of respect and care you’ll engender.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4fsgssb3iu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"What do I need to achieve here?\",\"plainText\":\"There are varying degrees of impact across the common types of engagement—inform, consult, involve, collaborate and empower. Every impact is a win for you.\\n\\nBy inviting stakeholders to provide advice and guidance, you are showing interest and genuine regard for their opinions.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-zK1GdW2Vy7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Let’s talk\",\"plainText\":\"A healthy and productive conversation is two-way. We pursue positive and productive conversations with stakeholders because we need to understand stakeholder perspectives, and we need to hear it from them.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wWO0nagqvx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bye for now\",\"plainText\":\"The conversation will close, but the relationship isn’t over. Stakeholders have given their time, effort and reflections. It’s your turn to respond with accuracy, timeliness and balance.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8YdtZLjoMO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The truth is, these conversations take patience, a steadfast commitment to values, sometimes sacrifice, and always an open mind.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"At NWO, we care about stakeholder engagement because we regularly witness the impact it has on the health of businesses and organisations.\\n\\nIs it important to you?\\n\\nTalk to us about stakeholder engagement today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Want to understand your brand? Ask your stakeholders.','Whether they are inside, outside, removed or closely involved—stakeholders have the insight businesses need for long-term growth and sustainability.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70466,74127,1,'Top 20 tips for SEO','2021-11-09 01:59:29','2021-11-09 01:59:29','59324bdb-17e5-47a0-980e-8819ffd86308',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-P9HDvjQfFI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"GOOD SEO STARTS WITH A BIT OF DIY.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Sure, there are loads of experts and agencies out there that specialise in the field, and many of them do a great job.\\n\\nBut there’s actually plenty you can do yourself before you even need to look for an external supplier to help with your SEO.\\n\\nTo get you started on your next SEO DIY project, we’ve put together a top 20 checklist.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"1. Do your research\",\"text\":\"Identify key search terms, words and phrases, and check out competitors’ sites.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"2. Work out where you are now\",\"text\":\"As soon as possible, keep a regular record of where your site currently ranks in search results, using various words, phrases and questions.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"3. Work out where you want to be\",\"text\":\"Define your goals early on so you can measure your progress and adjust your strategy as you go along.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"4. Make your content relevant\",\"text\":\"Search engines provide the most relevant results to a searcher’s query, so write content based on what people might search for.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"5. Improve the quality of your content\",\"text\":\"Publish helpful, useful articles, videos and other types of media that people will want to engage with.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"6. Think about user experience\",\"text\":\"Make sure your site is easy to navigate, with plenty of relevant internal links to keep users on your page for longer.\"}},\"new7\":{\"type\":\"6\",\"fields\":{\"heading\":\"7. Ensure your site is responsive\",\"text\":\"Is your website designed to resize for viewing on desktop, tablet and mobile devices? It should be.\"}},\"new8\":{\"type\":\"6\",\"fields\":{\"heading\":\"8. Include plenty of internal links\",\"text\":\"This helps pushes traffic around your site, building higher ‘trust signals’ for Google, and gives your audience more to read.\"}},\"new9\":{\"type\":\"6\",\"fields\":{\"heading\":\"9. Write meta descriptions\",\"text\":\"This short paragraph of text under your page’s URL in search results can really improve the chance of someone clicking on it.\"}},\"new10\":{\"type\":\"6\",\"fields\":{\"heading\":\"10. Include title tags\",\"text\":\"These few keywords describing the page and your brand name tell visitors and search engines what your site is about in the most succinct way possible.\"}},\"new11\":{\"type\":\"6\",\"fields\":{\"heading\":\"11. Tag your images\",\"text\":\"Search engines cannot ‘see’ images but they can ‘read’, so it’s important to describe any pictures you upload to your site.\"}},\"new12\":{\"type\":\"6\",\"fields\":{\"heading\":\"12. Create evergreen content\",\"text\":\"More thoughtful and practical advice-based articles can create better results over the long term. Top 20 list, anyone?\"}},\"new13\":{\"type\":\"6\",\"fields\":{\"heading\":\"13. Consider your domain name\",\"text\":\"Having a ‘keyword-rich’ domain name can improve ranking but can also lead to closer scrutiny by search engines.\"}},\"new14\":{\"type\":\"6\",\"fields\":{\"heading\":\"14. Think about headlines\",\"text\":\"Make headlines as snappy, attractive and descriptive as possible, and stay away from clickbait.\"}},\"new15\":{\"type\":\"6\",\"fields\":{\"heading\":\"15. Turn on comments\",\"text\":\"This helps generate a community of engaged users and, whatever their opinion of your content, you’ll know it’s being read.\"}},\"new16\":{\"type\":\"6\",\"fields\":{\"heading\":\"16. Go social\",\"text\":\"By using social media channels as a genuine way to interact with customers, you can help generate interest in your brand and drive traffic to your site.\"}},\"new17\":{\"type\":\"6\",\"fields\":{\"heading\":\"17. Watch your on-site advertising\",\"text\":\"Intrusive ads can destroy the pleasure of viewing your content and also slow your site down (not good for SEO).\"}},\"new18\":{\"type\":\"6\",\"fields\":{\"heading\":\"18. Avoid keyword stuffing\",\"text\":\"Some search engines will actually penalise you for obviously overusing certain keywords on your pages.\"}},\"new19\":{\"type\":\"6\",\"fields\":{\"heading\":\"19. Be aware of duplicated content\",\"text\":\"If two sites publish identical content, search engines will only index one of those pages.\"}},\"new20\":{\"type\":\"6\",\"fields\":{\"heading\":\"20. Don’t hide links and text\",\"text\":\"Doing things like hiding white keyword-stuffed text on a white background or hiding a link in a full stop is likely to be punished by search engines.\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Follow these tips and you’ll be well on your way up the rankings in no time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Top 20 tips for SEO','To get you started on your next SEO DIY project, we’ve put together a top 20 checklist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70468,74129,1,'Simplifying the complex: Fifteen years of marketing schools','2021-11-09 01:59:54','2021-11-09 01:59:54','9e3871f9-69ed-4c14-8c7b-2c4804f38019',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WAYo0QEnCs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"After 20 years of marketing—including 15 years working with schools across Queensland and New South Wales—I am steadfast in my belief that there is no marketing challenge as complex as that faced by schools.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"In what other industry would you find thousands of individual stakeholders—students, parents, teachers, alumni and more—all with do-or-die expectations?\\n\\nOr an environment that can, quite honestly, change the trajectory of children’s lives?\\n\\nThen you have the two very distinct markets—internal and external—often with very different needs that need to be met with minimal budgets.\\n\\nThe experience of school changed little for nearly a century but, in the past 20 years, it has evolved in such leaps and bounds that today’s parents struggle to recognise it.\\n\\nPhilosophically, there are few industries I can think of that have such a strong evidence base to guide practice—here I’m thinking of teaching and learning—yet the required outcome is often diametrically opposed to it. \\n\\nIt’s little wonder that I find the business of marketing schools endlessly fascinating.\\n\\nOnly this morning I was in another principal’s office, talking through these very complexities. In our conversation, we touched on what I’ve discovered over the years are three bedrock principles every school needs as their marketing foundation. They’re my way of transforming a little of the complex into the simple.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Esbo1iQq5g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"1. Work out what makes you unique\",\"plainText\":\"Marketing and enrolments teams live and die by their numbers. \\n\\nIt is endlessly tempting, then, to try to go wide in your appeal so that you create the biggest possible net. \\n\\nIn practice, though, it means no-one knows what you stand for. \\n\\nThe better alternative is to embrace what makes you unique and then market that hard. You’ll end up attracting families that are the right fit for you and work hard as your ambassadors. \\n\\nInternally, there’ll be great cohesion, too, because you’ll attract and retain great educators who get what you’re about and support it in their words and actions.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-v1FFRTuEFs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"2. Don’t be afraid to look like you’re unique\",\"plainText\":\"If you’re bored one day in your office, try this game. \\n\\nGet ads from three schools, and then block out their hats and uniforms. Can you still tell them apart? \\n\\nIt astounds me that we continue to use sterile, look-alike images—hey, here’s a girl in a lab coat with a test tube as proof that we promote girls in STEM!—that don’t reflect the day-to-day experience of what it is to learn at your school. \\n\\nCelebrate your uniqueness—and set yourself apart from your competitors—by choosing unique visual styles and photography.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cMg5IvARdG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"3. Now stay unique\",\"plainText\":\"Over time, teachers and leaders of schools get to know each other pretty well. \\n\\nPrincipals, in particular, know other schools like bookies know racehorses. The net result in marketing is that your great idea quickly becomes next year’s norm… and after a few years, what was edgy is simply outdated. \\n\\nWise schools invest in a middle ground here. \\n\\nThey start off strong and then review and refresh their brand every year or two. \\n\\nThat way, subtle tweaks don’t destabilise your internal audience but you stay fresh and relevant externally.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3XrIiJiL9w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Want to know more?\",\"plainText\":\"Suzanne advises schools on sustainable marketing strategy that helps them get the most from their internal resources. To chat, phone 07 3334 8340 or email suzanne@newwordorder.com.au.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simplifying the complex: Fifteen years of marketing schools','After 20 years of marketing—including 15 years working with schools across Queensland and New South Wales—I am steadfast in my belief that there is no marketing challenge as complex as that faced by schools.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70470,74131,1,'The 6 steps of content creation','2021-11-09 02:00:48','2021-11-09 02:00:48','25cddf86-0fea-40e3-a5ec-ded9929ed6c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-92RCseTSp0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"You know what your business is about. You’ve nailed down your story. You’ve worked out who you want to talk to.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Now you need to add some real value.\\n\\nTime-poor organisations need their content to work across different channels online—including websites, e-newsletters, blogs and across social media. One way to add value to your existing, more sales-focused content is through content curation. Content curation means finding useful content online, curating it for your audience and re-telling it in your voice and with your advice.\\n\\n##### **Here’s how to optimise, write and curate content for your target audience.**\\n\\n###### **Defining your goals**\\n\\nEvery good plan starts with defining what it’s trying to achieve. How do you want your content to define your business? What are you offering your target market? Do you want to be a thought leader in your particular area?\\n\\nContent curation is about meeting your customers where they are and offering them something they’re not getting elsewhere. It’s about finding, gathering and sharing information of value with them; positioning your business and brand as an authority both with original content—your sales offering and business learnings—and information you’ve found and shared online. Participating in conversations that are happening about your field leads to more engagement with your target market, the ultimate goal being to give your brand a voice of value that will see your audience come back again and again for your offering.\\n\\n###### **Getting started**\\n\\nIt’s important to remember that well-executed content curation isn’t about regurgitating content that was already published. Instead, it’s your business’ personal re-telling of a story. As Susan Gunelius wrote for Forbes, the human element of content curation is what makes curated content compelling.\\n\\nTherefore, when offering your audience valuable content, remember to tell your story. What are you saying that’s different? What do you know that others might not? Involve your whole team—not just marketing and sales—and that story will evolve to give your business a truly useful and unique voice.\\n\\n###### **Finding content**\\n\\nHere’s where you get amongst it!\\n\\nWant to know where your target market is looking for information online? Go exploring! Ask them! Discover for yourself where the good stories are being shared. Find out what topics matter to your goals and audience, and go after them.\\n\\nIntegrating content curation into your broader marketing strategy is the way to go here—it legitimises the exercise and gets your team thinking about the value of your brand and how they can add to it. The best place to start is probably your social media accounts. Valuable content is being shared every day on platforms like Facebook, Twitter and LinkedIn. There are also Google alerts and news aggregate sites that can be set up with your special business needs in mind.\\n\\n###### **Be authentic to find your voice**\\n\\nThere is nothing like the instant world of social media to add value and timeliness to your content. Social media has changed the term ‘sharing’ forever, and the opportunities for your brand are endless. It’s important to add your own value to social content—as Mark Lerner says, if you just \'retweet\', or share an article without including your own voice in the post, you’ll fail to distinguish yourself from everyone else who shared that content.\\n\\nHow do you find your voice? Authentically, of course! Offer your opinion and add your advice in areas where you are confident. Try to be friendly and informative, and adopt an approachable tone. Not so confident? Ask questions! Get your community talking and they’ll come back to you.\\n\\n###### **Context and thought leadership**\\n\\nGood content curation provides your audience with context and convenience—that means filtering and explaining what you find online, and rewording it in your voice so it’s useful to them. You don’t always need to be selling, but you do always need to be mindful of your brand and of offering real value. Knowing who your market is and writing in your ‘voice’ allows you to, as J-P De Clerck says, inform, educate, entertain and engage target audiences.\\n\\n###### **Where to share**\\n\\nThere are many ways to share curated content, but the best way is in a mix of your existing ‘sales’ content. E-newletters and blogs offer an opportunity to share curated and original content, and social media is the most instant way to add your voice to a new idea, and also probably the first place your audience will find you. They’ll also find your website, so don’t forget about the curated content opportunities there. Always remember that you should be providing useful information, not just repeating content or working on the hard sell.\\n\\nContent curation is convenient, but it’s also an important opportunity to add value, develop a business voice and grow an online community. What do you think about content curation? Has it worked for you? Got any tips? Let us know.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The 6 steps of content creation','You know what your business is about. You’ve nailed down your story. You’ve worked out who you want to talk to.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70472,74133,1,'B2B is dead','2021-11-09 02:01:18','2021-11-09 02:01:18','72204286-24ef-4e1a-8cf3-4bc40de1f274',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-luIsqIjBj1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"As deaths go, it was a quiet one. Few people knew of its demise.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"But there it lay still: the artificial divide between B2B and B2C marketing, gone forever.\\n\\nWhy bother lamenting the dead? Dare I say, it’s good riddance to a dodgy invention.\\n\\nThe idea that marketing business-to-business took entirely different skills and strategies to talking to consumers has its roots back in the early Noughties. The notion, which most marketers sadly still hold, was that because the volume of B2B transactions is so much higher than B2C—if you count every transaction required along a manufacturing supply chain, for example—then B2B branding requirements were stronger, too.\\n\\nConversely, the B2C belief held that the consumers of the world needed entirely different marketing strategies to convince them to open their wallets.\\n\\nTrue, where they differ most is in the justification of purchases. In B2C land, I need to convince myself why I should buy yet another pair of red shoes. (It’s a short discussion.) In B2B, I might be lobbying the board to invest in an expensive new CRM system.\\n\\nBut the truth is both groups share more similarities than differences.\\n\\nYour customers—be they businesses, consumers or both—have similar emotional and logical requirements that must be met. The relationship lifecycle between a purchaser and a brand exists with businesses and consumers alike. Both groups also frequent the same social media spheres, are Google-happy and web-savvy, and require strong brand confidence in order to purchase.\\n\\nThe illusion that you’re selling to a company in B2B should be seen for what it is. In retail or in business marketing, you’re selling to individuals. And each wants to feel that you get them.\\n\\n##### **Long live H2H.**\\n\\nWhich is where yet another acronym is starting to make a play: H2H, or human-to-human marketing.\\n\\nIt espouses the belief that we all, business and retail customers alike, are looking for connection, inclusion and to be understood. If you take that as your starting point—and not your burning need to produce another brochure—then the marketing toolbox available to your business automatically grows.\\n\\nIt means the vast strategies already out there, like relationship marketing and continuous touchpoints, become as relevant to a retail customer as to the business that buys your widgets. And the traditional B2C tools like social media become far more relevant B2B because they help build connections better than a sterile product flyer.\\n\\n##### **Let’s make H2H practical.**\\n\\n**1. Open your horizons**\\n\\nSwitching your mindset to focusing on the individual, human needs of your market means you can open your marketing to all sorts of potential tools. Just because you run a hair salon doesn’t mean you can’t start sending out a monthly email newsletter—if your customers are the kind of people that like to know more about you. And just because you’re an accountant doesn’t mean you can’t lead an industry group on LinkedIn or advertise on Facebook—if that’s where you’ll find the types of sales you want. Think about your customers, and let their needs lead you.\\n\\n**2. Make your customers feel**\\n\\nSales overwhelmingly come from relationships in my business, so meeting my clients’ emotional needs is a no-brainer. If my clients are happy, they’ll stay.\\n\\nBut even if your sales rely heavily on good old-fashioned foot traffic, it’s relationships that will lure them and keep them. So, in every tool you use to get to market, make sure you get the emotional kicker in. Empathise and prove you understand their needs.\\n\\n**3. Ask your employees what they think**\\n\\nIt’s one thing to make marketing decisions from an ivory tower. Chances are it’s your staff who really know how your clients think, or how your customers behave. So get their ideas and integrate it into your marketing. Let them drive your innovation.\\n\\n**4. Finally, listen to your customers**\\n\\nThere is marketing gold in every intentional conversation you have with a customer. Ask the ‘why’ that follows the tough questions: Do you feel safe with my business? Do you like dealing with us? Would you refer us to your friends? The answers will revolutionise how you think about marketing to your customers.\\n\\n---\\n\\n*Written for the February 2014 issue of Inform, the monthly magazine of the Chamber of Commerce and Industry in Queensland.*\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'B2B is dead','As deaths go, it was a quiet one. Few people knew of its demise.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70474,74135,1,'8 important marketing questions for every business','2021-11-09 02:01:53','2021-11-09 02:01:53','626f4e64-2a53-46cd-82e0-a03767b7b0c4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VzKHBkk2Ca\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Marketing communications in business is all about attracting and retaining customers. We do it for dozens of Australian companies every day, and the bigger the company, the tighter the marketing strategy governing their communications—because they know customers are fickle, and competitors are waiting to pounce on any weakness.\\n\\nThe same philosophy of tight strategy and execution should drive your business. Effective marketing communications must be an essential part of your core business strategy to ensure you’re pushing the same, consistent message through every aspect of your organisation.\\n\\nBut it’s not always so easy to go it alone. If you’re in a small business and know you need to step up, here’s a handy checklist of the marketing questions you need to answer to keep your customers in tune with you—and your competitors at bay.\\n\\n##### **Who are my existing customers?**\\n\\nThe best way to sell to your customers is to first understand who they are, why they buy from you, and what value they expect from you. And the best way to learn this? Listen to them. Marketing communication begins with good customer relationships, which are almost like your own form of market research.\\n\\nWhen you talk to your customers, you’ll learn things like your customers’ age, income, education, how often they buy from you, what their buying triggers are and how they’re influenced. This is a valuable step in honing your marketing message, so don’t be tempted to think you already know the information if you’ve been in business for a while. Every customer conversation will add another layer to your understanding.\\n\\n##### **Who are my potential customers?**\\n\\nIt’s just as critical to have a very clear understanding of your desired target market and new customers. Get as detailed as you possibly can. The more specific you are, the better you can develop messages for them.\\n\\n##### **Who are my competitors?**\\n\\nUnderstanding who competes for your customers—and what they’re offering—is vital. Get very familiar with every aspect of your competitors’ businesses—including their reputation, prices and marketing material. This knowledge will help you position your marketing communication relative to how your customers are already being targeted and differentiate yourself in the market.\\n\\n##### **What am I trying to achieve?**\\n\\nUnderstanding why you’re communicating with your customers is essential. Are you purely after quick wins? Or preparing the ground for a new product or stronger relationships? The rationale and potential value for any marketing effort should determine how much money you need to spend, and where it’s best spent.\\n\\n##### **What am I trying to say?**\\n\\nThis is where everything comes together. You must now develop clear, key messages that talk up your product or service, meet the expectations and needs of your new and existing customers, and differentiate yourself from your competition.\\n\\nMake sure you have no more than five key messages—in fact, the fewer the better—and make them specific and meaningful. That’s how you stand out in the crowded market. Ensure your customers are aware of your business and its products or services, and why they should care (e.g. What’s in it for them? And what are the true benefits?). These benefits should be factual and real. It’s important not to overload customers with information, but rather to be clear and articulate.\\n\\nAll of your marketing communications should include a strong call to action: What is it that you want customers to do once they’ve interacted with you? Leave them in no doubt and make it easy for them.\\n\\n##### **What’s the right channel?**\\n\\nThere’s no doubt that it’s a busy marketplace when it comes to finding the perfect place to share your marketing messages. The challenge here is in focusing and narrowing your communication—and finding the right time and place to connect with your customers.\\n\\nMany marketers are now jumping on social media networks, but that might not be where your customers can be found. It’s important that you understand how and when they want to hear from you, and use that information to foster a true customer relationship.\\n\\n##### **Is my strategy integrated?**\\n\\nCommunicating in an integrated way across all channels (such as website, emails and brochures) means your brand will become better known and understood. Integration means that every time your customers hear from you, they get the same feel for who you are. By creating consistent, strong marketing communications, your customers will identify and remember you into the future.\\n\\n##### **Finally: Am I communicating with genuine creativity?**\\n\\nCreativity isn’t about paying your local print shop to pull together a flyer with your logo on it, or using a WordPress template to build your long-overdue website. They might be tactics that you use, but they’re not what creativity is really about.\\n\\nTrue creative thinking pulls together everything you know about your business, your goals and your customers into a single, cohesive package that cuts through, connects and resonates. Creativity distills everything down to the right words, images and design so that your marketing collateral has the right impact. No business can afford to skimp on this stage because getting creativity right means you’ll get the results you’re really after: maximum return on your marketing investment.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'8 important marketing questions for every business','Marketing communications in business is all about attracting and retaining customers. We do it for dozens of Australian companies every day, and the bigger the company, the tighter the marketing strategy governing their communications—because they know customers are fickle, and competitors are waiting to pounce on any weakness.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70476,74137,1,'What the artist breaks','2021-11-09 02:02:27','2021-11-09 02:02:27','fc7d9e42-28c1-4643-b04b-678c3e5f6de7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QjbPRQcxAH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"It’s arguable that copywriting is at the heart of all advertising and marketing today. We remember taglines and recall jingles; and copy is the beginning of most brand stories. But, boy, is it fantastic to look back at a time when it really was all about the words.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Bill Bernbach was the founding creative director of legendary Manhattan ad agency Doyle Dane Bernbach (DDB). He came out with quotes like:\\n\\n“Advertising is fundamentally persuasion and persuasion happens to be not a science, but an art”, and\\n\\n“Word of mouth is the best medium of all”, and\\n\\n“Rules are what the artist breaks; the memorable never emerged from a formula.”\\n\\nThat’s really provocative stuff that makes you nod your head at the truth and simple power of his thinking—and imagine how inspiring but uncompromising a boss he would have been. What an exhilarating time to be writing.\\n\\nBernbach not only had a way with a turn of phrase, but he also really set up the structure of creative teams for marketing and advertising, and was, of course, part of the inspiration for Mad Men. But mostly, he was a writer. And what a writer he was. His firm revolutionised advertising copy and laid out the early foundations for brand storytelling through engaging narrative and brand persona development. We can, and have, all learned from these guys.\\n\\nIn the 1960s, DDB took on Volkswagen as a client and began creating a series of print ads that referred to the VW as a “lemon” and encouraged consumers to “think small”. The copy, by the incomparable Julian Koenig, starts out saying “This Volkswagen missed the boat. The chrome strip on the glove compartment is blemished, and must be replaced.” Not exactly sales speak.\\n\\n##### **It was funny. It was clever. And it was ground-breaking.**\\n\\nFor the rest of the decade, VW kept their unconventional campaign rolling. DDB’s strategy of turning seeming faults into benefits was a huge hit. One ad didn\'t even include a picture of the little lemon: “No point in showing you the 1962 Volkswagen. It still looks the same.”\\n\\nMuch has been written about the ads, and you can take a look at a bunch of them here if you like. It was ranked the best advertising campaign of the twentieth century by Ad Age, and it deserves the title. This sort of brand bravery is rare and may be a little of its time, too. The truth is that the power is all right there, in the copy, which exists to inspire us. Last words to Mr Bernbach himself:\\n\\nYou can say the right thing about a product and nobody will listen. You\'ve got to say it in such a way that people will feel it in their gut. Because if they don\'t feel it, nothing will happen.\\n\\nWhat is your brand really saying?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What the artist breaks','It’s arguable that copywriting is at the heart of all advertising and marketing today. We remember taglines and recall jingles; and copy is the beginning of most brand stories. But, boy, is it fantastic to look back at a time when it really was all about the words.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70478,74139,1,'Righting writing','2021-11-09 02:03:06','2021-11-09 02:03:06','0fdcdd23-5519-4f58-a11d-656970546f22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WiIX62eIQK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uni was when I found my purpose in life. A passionate lecture on the very first day was my ‘eureka!’ moment that then propelled me through a double major in communications, 10 years in a newsroom and countless more in corporate writing.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"But it all could have come tumbling down in the stern and unyielding face of just one lecturer: Ros Petelin.\\n\\nLike most kids who gravitated toward the arts in school, I’d been feted as a bit of a writer. I wrote installments of unreasonably sappy romance novels late at night and distributed copies to peers on the train the next morning. I won an academic scholarship for my writing (although nearly lost it many times for my maths).\\n\\nIt was left to Ros—now an associate professor in the School of English, Media Studies and Art History at UQ, and a well-respected writer in business communication—to tear my self-made kingdom down, word by word, until I could rebuild it on more solid foundations.\\n\\nHere’s what I now know to be true about writing effective business words.\\n\\nThanks, Ros. I hope you’re grading more kindly these days.\\n\\n##### **Trick #1: Talk like your audience**\\n\\nIf you’re writing for your business, forget formal words and don’t allow fear of failure—or grammar—to stop you writing. Instead, a trick I’ve long used in business writing is to hear a typical customer’s voice in my head, and then to write like they talk.\\n\\nLike acting, the craft of writing involves immersing yourself in the character. In this case, the character is your customer—and by sounding like them, you’re more likely to draw them in.\\n\\n##### **Trick #2: WIRMI**\\n\\nI have Ros and her fondness for US author Linda Flowers to thank for WIRMI. The acronym ‘What I Really Mean Is’ is extraordinarily helpful in bringing clarity to business writing, and it’s a tool I still use daily.\\n\\nYou can use WIRMI as a catchphrase at any point of your writing—when you’re trying to work out exactly what you want to say, and when you’ve written something and you need to ensure it says what you want, clearly and well.\\n\\nIf you’re not comfortable with writing—and plenty of people would rather line up for a root canal than write an essay—this is a great way to check you’re on track.\\n\\n##### **Trick #3: So nice you read it thrice**\\n\\nFinally, if you’re satisfied that what you’ve written is the best you can do, read it through once more—and then put it down.\\n\\nAfter a few hours—or a few days, if you have the time—pick it up and critically read it again. Make a few adjustments. Delete a few words. Then hide it again.\\n\\nOn the third go, after another break, pretend you’re the customer and read it aloud to yourself as though you’re seeing it for the first time. If you have no more changes to make to it, it’s good to go. But chances are, you’ll think of a few.\\n\\nWhy at least three reads? Professional writers and editors know better than anyone that great writing comes from multiple drafts, not a single session of inspiration. Taking a break in between drafts—although hard to do in a busy work day—can be the key to achieving great results.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Righting writing','Uni was when I found my purpose in life. A passionate lecture on the very first day was my ‘eureka!’ moment that then propelled me through a double major in communications, 10 years in a newsroom and countless more in corporate writing.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70482,74143,1,'Aseeos','2021-11-09 02:05:30','2021-11-09 02:05:30','391468e3-b992-452e-9d5d-b44bdc604698',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Delivering for disruptors',NULL,NULL,'Aseeos rebranded to transform its 10-year-old installation business into an industry-disrupting model that solves age-old industry problems of supply, quality and budget overruns. We worked closely with the team to take its core brand elements and develop a full range of collateral, including signage, brochures and catalogues, video, marketing, events and website.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bmUfyXmDcz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47997\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fyTxfCvyJr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47773\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WYeceTl1wB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/194746924?h=02b6e594f2&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Aseeos - Delivering for disruptors','Aseeos rebranded to transform its 10-year-old installation business into an industry-disrupting model that solves age-old industry problems of supply, quality and budget overruns. We worked closely with the team to take its core brand elements and develop a full range of collateral, including signage, brochures and catalogues, video, marketing, events and website.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70484,74145,1,'Department of Transport and Main Roads','2021-11-09 02:06:04','2021-11-09 02:06:04','268ac8f1-f076-4dbd-a9ad-e5447fa15fba',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'How Queensland Travels',NULL,NULL,'The Department of Transport and Main Roads has measured how, where and why Queenslanders travel since 1976. How Queensland Travels was the first time all of this research had been revealed together.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xiMuwH0qUn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47768\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UGKKHcWkDX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"We crafted a visual metaphor for this important story by enlarging infographic iconography, making it 3D and placing it into real world situations.\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ykadeGb8YM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/145833141?h=da493c8de8&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wXJAJa8GTY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":null,\"plainText\":\"The result is a metaphor for the role of data in the real world, especially as it relates to transport.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MQiJ46BCqv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47767\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IXjmqTVmWl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":null,\"plainText\":\"Our deliverables included an interactive PDF—written, edited and designed by our team—and the beautiful 3D animated video showing the 3D icons moving in the real world.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Department of Transport and Main Roads - How Queensland Travels','The Department of Transport and Main Roads has measured how, where and why Queenslanders travel since 1976. How Queensland Travels was the first time all of this research had been revealed together.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70486,74147,1,'Pivotus','2021-11-09 02:06:47','2021-11-09 02:06:47','3e9de56f-db0e-45c2-93ce-0150928bd1a5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a pivot?',NULL,NULL,'After rapid growth in recent years, My Media Trading Desk (MMTD) hit the pause button and engaged NWO to ask many of their valued clients: What do you really think of MMTD? Their clients’ generous answers both delighted MMTD and offered a mandate to change and grow. Pivotus is their response.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NhnaCQNxpw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47990\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-B78dz1rmC2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"But what do your clients really think?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"NWO began the rebranding process by surveying MMTD’s clients. Commonly held by all of their clients was great regard for their honesty, their industry knowledge, and their unbreakable commitment to exceptional customer service.\\n\\nClients also said they wanted to get deeper insights, beyond the fast and accurate data and delivery MMTD were already known for.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AlIqZXoFkr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47763\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ulVnymquUW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Why Pivotus?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"MMTD needed a new brand to drive their reputation for quality data, strategic advice and superior customer experiences.\\n\\nThe brand needed to convey a clear promise: we’ll rapidly measure and pivot to maximise your media spend returns.\\n\\nTo pivot is to turn on a point—and there’s no better metaphor for how they pivot digital media to get the best possible results for their clients.\\n\\nPivotus is also a call to action: Pivot your brand with their team—because they are nimble, fast and focused in a rapidly changing market.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MJZcxjyvrL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47761\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-w74pYr8Ehf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Founder and CEO Michael Petersen said the new brand better reflects market expectations of their firm and his team’s commitment to a superior customer experience.\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VLVB6hcgiC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47992\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GXT7RzNKoY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47764\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Pivotus - What\'s a pivot?','After rapid growth in recent years, My Media Trading Desk (MMTD) hit the pause button and engaged NWO to ask many of their valued clients: What do you really think of MMTD? Their clients’ generous answers both delighted MMTD and offered a mandate to change and grow. Pivotus is their response.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70488,74149,1,'Department of Housing and Public Works','2021-11-09 02:07:46','2021-11-09 02:07:46','bff1b902-e09f-40fd-97de-773d2a110d07',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Have your say in a better renting future',NULL,NULL,'With a range of renting reforms not yet law, we created a campaign to drive renters to a survey where they could have their say.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NnAYpM8RPK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47660\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2V7rQTXdap\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"More Queenslanders are renting than ever before.\\n\\nSo the Department of Housing and Public Works wanted to have open and honest conversations with renters, property owners and managers about what matters and what needs to change.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BQeIecGM9t\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47661\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-mjELLOS8zt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The messaging was compelling and obvious to convince the target groups there was value in them participating in the survey. To motivate the audiences, we tapped into key renting issues but kept a warm and positive sentiment.\\n\\nWe developed display ads, videos and static posts to build awareness and capture interest.\\n\\nPlus, we used long-form Facebook posts to convert target group interest and inform them on the details.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CDacbY6rtS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47662\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W1OXhvU4i4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The campaign had a total of 24 posts across two weeks, reaching 1.37 million individual Facebook users, with more than 42,000 engagements.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VN9WYyb9Pi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47663\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Department of Housing and Public Works - Have your say in a better renting future','With a range of renting reforms not yet law, we created a campaign to drive renters to a survey where they could have their say.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70489,74150,1,'2021-11-09 13:57:36','2021-11-09 03:57:36','2021-11-09 03:57:36','b0f66146-17d3-458b-9bf4-7f40ac8b41b2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70492,74153,1,'About us','2021-11-09 05:39:48','2021-11-09 05:39:48','01623edd-4bc6-48e9-ba36-dcb2926bde59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17910\",\"17881\",\"17848\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\",\"17921\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'About us','We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70495,74156,1,'Kerry updated','2021-11-09 06:10:26','2023-03-09 04:26:46','efb16880-18ca-498c-8a56-46c8f6cd6bd7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Kerry-col-23.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Kerry-col-23.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Kerry-col-23.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Kerry-col-23.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Kerry-col-23.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Kerry-col-23.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Kerry-col-23.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Kerry-col-23.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1280,\"originalImageHeight\":1280,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBIAEgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAwIE/8QAIBAAAgICAgIDAAAAAAAAAAAAAQMCBAARBRIhcQYTMf/EABcBAAMBAAAAAAAAAAAAAAAAAAABAgP/xAAaEQADAQEBAQAAAAAAAAAAAAAAAQIRAxIh/9oADAMBAAIRAxEAPwCORtuXYRVrERY07MiN9Rl3XlDlaxePuMnbfUfITmrzGQGuw9YRWhSxmL5AuZvVCgD7IbkSfzWHQUvHo3C1iLTLjWd2s8SAGgPWTHwzfXWf/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#979bae\",\"#201e1d\",\"#5a3b38\",\"#79544b\",\"#e3b4a9\"],\"lightness\":40,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70496,74157,1,'2021-11-09 21:55:32','2021-11-09 11:55:32','2021-11-09 11:55:32','db33d3cb-8c17-4dce-a083-45ff4714dfb7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70497,74158,1,'2021-11-09 22:03:12','2021-11-09 12:03:12','2021-11-09 12:03:12','67facd22-3eac-4ea3-a5a7-532e952e16e4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70498,74159,1,'2021-11-10 04:04:07','2021-11-09 18:04:07','2021-11-09 18:04:07','52fe2fe9-47a9-4ac2-90ee-5b9b927b5e4b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70499,74160,1,'2021-11-10 04:45:31','2021-11-09 18:45:31','2021-11-09 18:45:31','75c407a3-d131-46d6-8d5c-7ad95772a808',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70500,74161,1,'2021-11-10 05:28:44','2021-11-09 19:28:44','2021-11-09 19:28:44','e36c1504-40fc-4a4d-bec2-71333143533b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70501,74162,1,'Update details','2021-11-09 23:38:17','2022-05-17 23:19:22','2f5797de-e72a-4118-b19d-580c88776e10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WQdEvDKsSL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Enter your details\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Enter your details\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PSqM6x8LeL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<!--[if lte IE 8]>\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2-legacy.js\\\"></script>\\n<![endif]-->\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n\\tregion: \\\"na1\\\",\\n\\tportalId: \\\"8394441\\\",\\n\\tformId: \\\"bc6282cb-a942-406c-bc57-b0b253a1cc4d\\\"\\n});\\n</script>\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70502,74163,1,'Update details','2021-11-09 23:38:17','2021-11-09 23:38:17','51fa53a8-e8ec-453b-85d9-398dbbed392f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70504,74165,1,'Update details','2021-11-09 23:43:14','2021-11-09 23:43:14','3aaa4265-8d3d-482b-a7b0-294b2b69ab84',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PSqM6x8LeL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<!--[if lte IE 8]>\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2-legacy.js\\\"></script>\\n<![endif]-->\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n\\tregion: \\\"na1\\\",\\n\\tportalId: \\\"8394441\\\",\\n\\tformId: \\\"bc6282cb-a942-406c-bc57-b0b253a1cc4d\\\"\\n});\\n</script>\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70506,74167,1,'Update details','2021-11-09 23:44:01','2021-11-09 23:44:01','08a3dbbe-4369-4a49-a244-1fb5ffffa2b5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WQdEvDKsSL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Enter your details\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Enter your details\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PSqM6x8LeL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<!--[if lte IE 8]>\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2-legacy.js\\\"></script>\\n<![endif]-->\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n\\tregion: \\\"na1\\\",\\n\\tportalId: \\\"8394441\\\",\\n\\tformId: \\\"bc6282cb-a942-406c-bc57-b0b253a1cc4d\\\"\\n});\\n</script>\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70507,74168,1,'Brisbane North PHN NSPT','2021-11-11 01:05:47','2021-11-11 01:05:48','5366cd34-2f08-4f01-89da-90f791e22e80',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'National Suicide Prevention Trial',NULL,NULL,'We were chosen to consult with Brisbane North communities who had been selected for the trial: LGBTIQ communities, Aboriginal and Torres Strait Islander communities, and community organisations working with young to middle-aged men.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yV9Swskqh3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45209\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Bri6BITkLV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The team of Brisbane North PHN is one of the national sites chosen to deliver National Suicide Prevention Trial (NSPT) funding.\\n\\nOur work had two important parts. The first was to engage deeply and sensitively with communities to understand their experiences, successes and reflections during the four years of trial funding and to report on these. The second was to deliver useful materials the service organisations could use to seek further funding and sponsorships as they transitioned from trial funding.\\n\\nTo successfully undertake community engagement, we again partnered with Janine Crawford, a skilled health consultant and Aboriginal and Torres Strait Islander woman. Our work included workshops, face-to-face interviews and a highly successful yarning circle, and these important and sensitive conversations—which included Sad News/Sorry Business—were given the time and space each needed.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2OxHHkid1g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45325\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VcPtAbE6Am\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The finalised report was submitted to NSPT as a qualitative reflection on the remarkable achievements of the trial—including the PHN’s commitment to community-led co-design, and the healing within communities that was begun through the intentionally collaborative process.\\n\\nTo offer creative services that were suited to the context, needs and existing resourcing of the seven service organisations, we offered a menu of items, ranging from fact sheets to marketing consultations. The groups then chose the elements that were of greatest use to them.\\n\\nPart of the unique nature of the Brisbane North PHN NSPT trial was the emphasis on community partnerships and collaboration, and we embodied this in our design approach, too. To enable groups to pitch together or separately for any future suicide prevention funding, we created a single brand style to visually unify any designed material. Each group, then, had its own logo and its own colour palette within that visual style—a brand within a brand. That way, any future funding pitches that relied on our designed material could look as though the groups were unique but still closely aligned.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70509,74176,1,'Home','2021-11-12 03:23:06','2021-11-12 03:23:06','6ee68de3-0644-416e-9e83-537d79ccbe12',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'New Word Order | Creative and strategy agency | Brisbane','We are a creative agency that specialises in strategy, brand and behaviour change.','strategy, brand, campaign, behaviour change, engagement, content, digital',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70511,74190,1,'Home','2021-11-12 03:23:33','2021-11-12 03:23:33','83840590-f45a-4dea-a0e7-c7623284c415',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'| Creative and strategy agency | Brisbane','We are a creative agency that specialises in strategy, brand and behaviour change.','strategy, brand, campaign, behaviour change, engagement, content, digital',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70513,74204,1,'Home','2021-11-12 03:23:50','2021-11-12 03:23:50','dd5180fc-8d5a-4e76-a1d6-cd0071041119',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | Brisbane','We are a creative agency that specialises in strategy, brand and behaviour change.','strategy, brand, campaign, behaviour change, engagement, content, digital',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70514,74211,1,'Home','2021-11-12 03:24:11','2021-11-12 03:24:11','767ae0c8-aa95-415d-be85-c51731123a45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | Brisbane','We are a creative agency that specialises in strategy, brand and behaviour change.','strategy, brand, campaign, behaviour change, engagement, content, digital',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70516,74219,1,'Contact ','2021-11-12 03:25:50','2021-11-12 03:25:50','abae6c2f-8310-4098-8d57-776cf2c34048',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dJRNyHHzcn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Contact us\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Like what you see? Get in touch with us—we can’t wait to meet you.\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":\"Contact\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-172EAYLfJn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-JIUNKK7uSu\",\"content\":{\"fields\":{\"freeformForm\":2,\"backgroundColour\":\"bg-black\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | Contact us','We are a creative agency that specialises in strategy, brand and behaviour change. Get in touch with us—we can’t wait to meet you.','strategy, brand, campaign, behaviour change, engagement, content, digital',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70518,74221,1,'About us','2021-11-12 03:37:32','2021-11-12 03:37:32','e10022a8-7fef-4cea-8502-bc9aac203867',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17910\",\"17881\",\"17848\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\",\"17921\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | About us','For 20 years we have helped businesses, organisations and governments of all sizes to solve problems, unlock potential and connect with people to inspire action.','strategy, brand, campaign, behaviour change, engagement, digital, video, content',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70520,74223,1,'About us','2021-11-12 03:39:06','2021-11-12 03:39:06','2834fe31-824f-40f7-96ad-a9d8245c10a4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17910\",\"17881\",\"17848\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\",\"17921\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | About us','For 20 years we have helped businesses, organisations and governments to solve problems, unlock potential and connect with people to inspire action.','strategy, brand, campaign, behaviour change, engagement, digital, video, content',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70522,74231,1,'Home','2021-11-12 03:41:07','2021-11-12 03:41:07','fc10d642-44a7-4216-b642-668975c0172e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | Brisbane','It\'s time for change. Proven strategy, fresh creative and powerful execution will change your business.','strategy, brand, campaign, behaviour change, engagement, content, digital',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70524,74245,1,'Home','2021-11-12 03:41:36','2021-11-12 03:41:36','df136277-ee36-4ffb-a4a5-036962986d30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | Brisbane','It\'s time for change. Proven strategy, fresh creative and powerful execution that will change your business.','strategy, brand, campaign, behaviour change, engagement, content, digital',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `content` VALUES (70526,74253,1,'About us','2021-11-15 01:17:23','2021-11-15 01:17:23','4d0ebb94-9115-4c69-bca3-bbbc6972cba5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17910\",\"17881\",\"17848\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\",\"17921\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | About us','For 20 years we have helped businesses, organisations and governments to solve problems, unlock potential and connect with people to inspire action.','strategy, brand, campaign, behaviour change, engagement, digital, video, content',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70527,74254,1,'Update details','2021-11-15 01:17:25','2021-11-15 01:17:25','c8b0616a-a70e-403c-ad6c-493d47955c53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WQdEvDKsSL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Enter your details\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Enter your details\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PSqM6x8LeL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<!--[if lte IE 8]>\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2-legacy.js\\\"></script>\\n<![endif]-->\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n\\tregion: \\\"na1\\\",\\n\\tportalId: \\\"8394441\\\",\\n\\tformId: \\\"bc6282cb-a942-406c-bc57-b0b253a1cc4d\\\"\\n});\\n</script>\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70528,74255,1,'Contact ','2021-11-15 01:17:26','2021-11-15 01:17:26','b72ab4bd-bccb-44b7-aaf8-fbbcf374ff1d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dJRNyHHzcn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Contact us\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Like what you see? Get in touch with us—we can’t wait to meet you.\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":\"Contact\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-172EAYLfJn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-JIUNKK7uSu\",\"content\":{\"fields\":{\"freeformForm\":2,\"backgroundColour\":\"bg-black\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | Contact us','We are a creative agency that specialises in strategy, brand and behaviour change. Get in touch with us—we can’t wait to meet you.','strategy, brand, campaign, behaviour change, engagement, content, digital',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70529,74256,1,'Home','2021-11-15 01:17:28','2021-11-15 01:17:28','c45547d7-3a9f-4ec5-948a-0fb12ffb4341',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | Brisbane','It\'s time for change. Proven strategy, fresh creative and powerful execution that will change your business.','strategy, brand, campaign, behaviour change, engagement, content, digital',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70530,74263,1,'Terms and conditions','2021-11-15 01:17:30','2021-11-15 01:17:30','b9ed9757-3429-4f40-a20a-29d65e9bce22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LU0O2e8wW5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"General terms and conditions\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"##### **About this estimate**\\n\\nThis estimate is valid for a period of 30 days from the date of issue.\\n\\nThe following documents should be read together to understand the scope and price of our quoted services:\\n\\n- our estimate\\n- your brief, if supplied\\n- these General Terms and Conditions\\n- our Digital Terms and Conditions and other subcontractor terms and conditions, if applicable.\\n\\nThis estimate has been provided according to your brief to us. You should assume that unless a service has been explicitly listed in this quote, it is not included in the price.\\n\\nAlterations to this brief or specifications will incur further costs, and we reserve the right to alter this estimate should we believe the changing scope of work falls outside of what was originally quoted.\\n\\nIt is your responsibility as the client to contact your account manager prior to approving the quote if you have queries or require clarification about any items in the quote. It is also your responsibility as the client to ensure this estimate accurately reflects the scope of work you require.\\n\\nBefore we begin work, you must sign your approval of the quote and, if your organisation uses an ordering system, provide an order number or purchase order.\\n\\nYour acceptance of this quote includes full acceptance of the conditions and payment terms listed in this document. Once quotation approval has been provided, these conditions and payment terms are not negotiable.\\n\\n##### **Beginning your project**\\n\\nWe will not schedule or begin work on your project until we receive from you all of the artwork, content and other files required for the project, as well as the signed estimate or a purchase order.\\n\\nFor example, for an annual report, this might include all finalised content, graphs, charts, photos, captions, financial statements and logos. This saves our studio unnecessary downtime and you money.\\n\\nWe will negotiate and document exceptions where required, but please be aware this may affect your costs and timeline.\\n\\nYour NWO account manager may provide you with a checklist to ensure you are aware of all material that you must provide before we begin work on your project.\\n\\n##### **Brief**\\n\\nUsually, projects within NWO are worked on according to a brief developed in consultation between you and us. If you have not supplied a written brief to us, we may ask you to fill out our briefing template before we create an estimate. You need to check the wording of our estimate directly reflects your understanding of the work we’re carrying out for you. If it does not, please tell us and we will not begin working on the project until your concern is answered.\\n\\nChecking, approval and signing-off\\nAs the client, you are responsible for checking your project for any errors and approving the final project. When you advise us that you approve a project, we take this to mean that you have checked it thoroughly for errors and that you are satisfied it has been completed to your satisfaction. For complex or additional jobs, we may ask you to fill in an approval form.\\nAlthough we have procedures and systems in place to ensure the highest quality of our work, checking for errors is ultimately your responsibility. On some projects, we may require you to provide your approval in writing before we finish work on your job or continue to publication or printing.\\n\\n##### **Client-directed alterations**\\n\\nAs much as possible, we try to accommodate client input and alterations within our quotes. However feedback, corrections and alterations to the brief over and above those quoted will be charged as incurred.\\n\\nThis is how we define a single round of changes: We supply the draft product, you email or otherwise detail the changes, and we then include those changes in our final product to you. Please note our preferred way of receiving changes is via a marked-up PDF.\\n\\nChanges beyond this scope will be charged as author’s corrections. Please be aware that, during author’s corrections, all staff involved in the corrections process will incur costs for you. \\n\\nDepending on your project and the corrections required, this may include an account manager, producer, designer, editor, writer and so on.\\n\\nIf there is unused time left over from your estimate, we will use that time to make your alterations to save you money. Once that amount has been exhausted, however, we will begin charging author’s corrections and we will advise you of this by email and then in weekly cost updates.\\n\\nYou can reduce the amount of corrections by:\\n\\n- supplying approved sourced material and instructions prior to NWO commencing work\\n- seeking authority within your organisation to be the ultimate decision-maker for this project\\n- advising the multiple stakeholders within your organisation of the cost of unbudgeted changes\\n- compiling all feedback into a single document for NWO’s use.\\n \\n##### **Deadlines**\\n\\nWe pride ourselves on meeting tight deadlines and have a strong reputation with our clients for fast, reliable work.\\n\\nHowever, if you significantly alter the brief – such as change text or photos that have already been supplied and approved – or other circumstances occur beyond our control, we may advise you of revised timelines.\\n\\n**If timelines are not being kept to on your part and the project is on hold for 90 days or more, we reserve the right to close the project and refund the costs to you of any work not completed. We will always advise you before doing so, and will be happy to pick your project back up when you are ready to move ahead.**\\n\\n##### **Digital projects**\\n\\nAdditional terms and conditions apply for digital projects.\\n\\n##### **Consumables**\\n\\nExpenses are incurred during every project. These may include phone calls, printing, couriers, proofs and materials. Your quote includes an estimate for these expenses, calculated at 3 per cent of your total quoted amount. We will advise you if these expenses will exceed the quoted amount.\\n\\n##### **Payment terms and pre-payments**\\n\\nOur invoices are to be paid within 14 days of the invoice date, with longer payment terms available for negotiation before a job begins.\\n\\n##### **When you’re a new client**\\n\\nIf you’re a new client, we reserve the right to invoice you 30 per cent of the total project fee before beginning work.\\n\\n##### **When you owe us money**\\n\\nIf payment is delayed longer than 30 days, we reserve the right to withhold future and existing work until payment is made.\\n\\n##### **When we’re employing suppliers for you**\\n\\nDepending on the level of costs and complexity associated with your project, we may choose to request a deposit of 30 per cent of the total cost prior to commencing your project. In this case, the remaining 70 per cent of our invoice will be split into milestone-based payments.\\n\\n##### **When our work forms part of a larger project**\\n\\nWe reserve the right to invoice you when our responsibility within a project has been completed—not when your project has been completed in total.\\n\\n##### **When you order our work for your client**\\n\\nIf you have ordered our work on behalf of a third party, our payment terms still apply. Payment is required when our work is complete, not when you receive payment.\\n\\n##### **When you choose to make an advance payment**\\n\\nIf we agree to an advance payment, all work must be completed within that financial year.\\n\\n##### **Late payment**\\n\\nIf you do not pay us by the due date on an invoice, we reserve the right to cease production on any of your projects.\\n\\nWe may also charge a late payment fee:\\n\\n- 30-60 days late: 5%\\n- 60-90 days late: 10%\\n- 120+ days late: 15%\\n\\nWe do not offer payback schemes or loan arrangements.\\n\\n##### **Limitation of liability**\\n\\nBy commissioning our services, you are agreeing that you will not hold New Word Order or its agents or employees liable for any incidental or consequential damages which arise from our failure to perform any aspect of the project in a timely manner, regardless of whether such failure was caused by intentional or negligent acts or omissions of New Word Order or a third party. Furthermore, we disclaim all implied warranties.\\n\\n##### **Photography and images**\\n\\nUnless otherwise specified in this estimate, we will charge you an additional amount if we purchase images from a stock library for your project.\\n\\nPlease note that you are responsible for ensuring all of your supplied images match the specifications we give you for your project. We expect you to comply with all relevant copyright and privacy laws.\\n\\nWe reserve the right to charge additional time to assess your photo files and improve substandard images.\\n\\n##### **Print management and file output**\\n\\nWe have extensive experience in managing print projects. When you choose us to manage your print, you gain access to our experience, established supplier network and exacting quality control standards.\\n\\nFrom time to time, our clients choose to manage print themselves. In these situations, we will include a file output fee to cover the cost of supplying the file, and time taken to liaise with the printer will be charged as project management.\\n\\n##### **Project management**\\n\\nAll projects require project management. This fee covers the non-creative or strategic hours we expect our agency will expend in delivering your project.\\n\\n##### **Publicity**\\n\\nWe may use your name for the purpose of promotional activities involving the works we have carried out for you, unless otherwise specified.\\n\\n##### **Responsibility for errors**\\n\\nWe have in place procedures and systems to ensure each of our finished projects reaches the highest possible standard of quality. However, from time to time, errors can occur. While we will do everything possible to fix the error, you are responsible for checking and approving the finished project and, as such, any costs of repairing the error are your responsibility.\\n\\n##### **Supplying material to us**\\n\\nWe undertake projects in good faith. If the material you supply – such as photography, graphics or text – does not match the expected standard set during our discussions, we reserve the right to charge for the time it will take to improve or alter the material in order to use it.\\n\\nPlease supply all text, graphics and photography in a digital format unless otherwise specified in this estimate or brief.\\n\\n##### **Tenders**\\n\\nFrom time to time, we are engaged to supply services under a preferred supplier or tender arrangement. We reserve the right to withdraw from providing services after or during our appointment if changes to scope or exceptional circumstances make delivery untenable. Any decision will be made in consultation with the client.\\n\\n##### **Warranty of originality**\\n\\nNew Word Order warrants and represents that, to the best of its knowledge, the work assigned hereunder is original and has not been previously published, or that consent to use has been obtained on an unlimited basis; that all work or portions thereof obtained through the undersigned from third parties is original or, if previously published, that consent to use has been obtained on an unlimited basis; that New Word Order has full authority to make this agreement; and that the work prepared by New Word Order does not contain any scandalous, libellous, or unlawful matter. This warranty does not extend to any uses that the client or others may make of our product that may infringe on the rights of others. The client expressly agrees that it will hold New Word Order harmless for all liability caused by the client’s use of our product to extent such use infringes on the rights of others.\\n\\n##### **Writing services**\\n\\nWe have extensive experience in all forms of writing and editing. Based on our experience, we choose not to work with Word files that contain multiple images or tables, as these files easily corrupt during the editing process. We are happy, though, to work with Word files with the images and tables extracted. Redesigning the Word file to include the images and tables at the end of the editing process will incur a separate fee.\\n\\n##### **Your obligation**\\n\\nYou have sole responsibility of ensuring the suitability and availability of any trademark rights, copyrights or other property rights that are intended to vest in the works that we have been commissioned to produce in accordance with your instructions.\\n\\n---\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Digital terms and conditions\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"##### **Overview**\\n\\nUpon project commencement it is expressly understood by New Word Order that the client has agreed to the terms and conditions outlined below.\\n\\n##### **Estimate**\\n\\nThe estimate is valid for a period of 30 days from the date of issue. The estimate has been provided according to an initial client brief. Unless an item has been explicitly listed in this estimate it is not included in the price. Alterations to this brief or specifications will incur further costs. New Word Order reserves the right to alter the estimate should we believe the scope of works falls outside of what was estimated. Please contact the account manager prior to estimate approval should items within the estimate require clarification. All estimates require signed or email approval and order numbers (if an ordering system is in use) prior to commencement of work.\\n\\n##### **Brief / specification / strategy / development planning**\\n\\nAll brief / specification / strategy / development planning documents provided to the client by New Word Order supersede any client brief. The documents are the final brief for the project and will be what New Word Order works from to design and build the project. The client is responsible for ensuring all stakeholders within their organisation and relevant external organisations have read the document/s in full detail. Project design and development will not commence until New Word Order has received sign-off of the documents. Requests not covered within the documents that have been signed off will be treated as alterations to scope and therefore be subject to a costing and timeline review.\\n\\n##### **Timeframes**\\n\\nThe timeline is negotiated at project commencement once the final estimate has been approved. Timelines provided prior to final estimate approval are indicative only and may not form part of the project plan. Deadlines agreed in the timeframe set down at project commencement are subject to change should the client fail to supply requested materials, information and/or access to data, software or other systems according to the agreed schedule. All work will cease and timeframes will be impacted should invoices not be paid within the required period (please see payment notes). New Word Order endeavors to work within timeframes however there are certain factors that are subject to change and are outside our control. As such New Word Order cannot guarantee deadlines will be met.\\n\\n##### **Artwork**\\n\\nArtwork is to be fully approved from all client parties prior to the commencement of further work. Once approved and development commences, artwork alterations will incur further costs. Artwork supplied by the client needs to be to New Word Order specifications. Client must provide a detailed brief including placement and background specifications.\\n\\nOur estimate assumes a standard level of complexity. Upon viewing the artwork, New Word Order reserves the right to put forward an altered estimate should the artwork be not within the budget estimated.\\n\\n##### **Content**\\n\\nWhere this estimate pertains to content entry, time has been allocated for New Word Order to input a set amount of content (as defined by the estimate). Should more time be required, it will be charged at our standard hourly rate. Content cannot be input until the project has been finalised and fully tested by New Word Order. The client timelines should allow content to be uploaded after completion of development and prior to final testing.\\n\\n##### **Supply of material**\\n\\nText, graphics and photography are to be supplied in digital format unless otherwise specified in this estimate. Text is to be fully edited and proofread prior to New Word Order receiving it. All supplied materials must comply with standard copyright requirements. Work will not commence until all supplied materials have been given to New Word Order and they meet the requirements of the New Word Order workflow process. Failure to provide information in a timely manner will result in timelines being pushed out to accommodate.\\n\\n##### **Imagery**\\n\\nUnless otherwise specified in this estimate imagery required for a project that is purchased from a stock library or shot specifically by New Word Order’s professional photographer will be sourced at an additional cost.\\n\\n##### **Corrections, alterations and expenses**\\n\\nExpenses incurred throughout the project including couriers, proofs, and materials are invoiced in addition to the estimated amount. As much as possible we try to accommodate client input and alterations within our estimates. However feedback, corrections and alterations to the brief over and above those estimated will be charged as incurred. The client can reduce the amount of corrections by supplying approved sourced material and instructions prior to New Word Order commencing work.\\n\\n##### **Payment**\\n\\nUnless otherwise specified a deposit of 30% of the total estimate will be paid prior to the commencement of the project. The remaining 70% will be split into milestone based part payments. Each invoice is to be paid within 30 days of the invoice date. In the event of an invoice not being paid within the terms, production will cease on all work for the client. New Word Order reserves the right to invoice projects when our portion of the project has been completed, not once the project has been finalised by the client. In the case of content managed websites this means New Word Order will invoice once we have finalised our portion of the project – not once the website has gone live. New Word Order takes no responsibility for the time it takes for the client to enter content. If the client uses a purchase order number system in order to pay invoices the purchase order number is to be provided upon estimate approval. The project will not commence without a purchase order number. We do not, at any stage, offer payback schemes or loan arrangements. If New Word Order agrees to an advance payment, all work must be completed within that financial year. Your acceptance of this estimate includes full acceptance of the payment terms listed above. Once estimate approval has been provided these payment terms are not negotiable.\\n\\n##### **Project completion**\\n\\nNew Word Order will ensure the project is tested correctly however we do require our clients to fully test and approve their project prior to project completion. Testing is carried out at each stage of development. New Word Order will require proofs to be signed of at each stage of development. Once final approval has been given and the project is finalised, a 14-day period is allocated for final client testing. Once this period ends, alterations/fixes will be charged as incurred.\\n\\n##### **Publicity**\\n\\nNew Word Order may use the client’s name for the purpose of promotional activities involving the works carried out for the client unless otherwise specified.\\n\\n##### **Search engine optimisation**\\n\\nThis estimate does not include SEO (search engine optimisation) unless specified in the estimate.\\n\\n##### **Client’s obligation**\\n\\nThe client acknowledges that it has the sole responsibility of ensuring the suitability and availability of any trademark rights, copyrights or other property rights that are intended to vest in the works which New Word Order has been commissioned to produce in accordance with the client instructions.\\n\\n##### **Warranty of originality**\\n\\nNew Word Order warrants and represents that, to the best of its knowledge, the work assigned hereunder is original and has not been previously published, or that consent to use has been obtained on an unlimited basis; that all work or portions thereof obtained through the undersigned from third parties is original or, if previously published, that consent to use has been obtained on an unlimited basis; that New Word Order has full authority to make this agreement; and that the work prepared by New Word Order does not contain any scandalous, libellous, or unlawful matter. This warranty does not extend to any uses that the client or others may make of New Word Order’s product which may infringe on the rights of others. The client expressly agrees that it will hold New Word Order harmless for all liability caused by the client’s use of New Word Order’s product to extent such use infringes on the rights of others.\\n\\n##### **Limitation of liability**\\n\\nThe client agrees that it shall not hold New Word Order or its agents or employees liable for any incidental or consequential damages which arise from New Word Order failure to perform any aspect of the project in a timely manner, regardless of whether such failure was caused by intentional or negligent acts or omissions of New Word Order or a third party. Furthermore, New Word Order disclaims all implied warranties.\\n\\n##### **Platform and browser compatibility**\\n\\nThe client is responsible to confirm the works produced by New Word Order are to brief and fit for purpose and function on required browsers. As at the time of execution of this estimate New Word Order will test on the following browsers and platforms. New Word Order is not responsible for work to update websites when new browsers are released or does not work on browsers not included in the list provided in the estimate. If Internet Explorer 6, mobile browsers or any browsers not stated in the estimate are required then additional charges will apply unless otherwise stated.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70531,74264,1,'Contact ','2021-11-15 01:17:36','2021-11-15 01:17:36','e8b9b8f6-9f3f-446f-8c59-740940410d97',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dJRNyHHzcn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Contact us\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Like what you see? Get in touch with us—we can’t wait to meet you.\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":\"Contact\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-172EAYLfJn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-JIUNKK7uSu\",\"content\":{\"fields\":{\"freeformForm\":2,\"backgroundColour\":\"bg-black\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | Contact us','We are a creative agency that specialises in strategy, brand and behaviour change. Get in touch with us—we can’t wait to meet you.','strategy, brand, campaign, behaviour change, engagement, content, digital',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70532,74265,1,'Home','2021-11-15 01:17:38','2021-11-15 01:17:38','6d37ddb3-b6a8-417a-9469-5f707822d90f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | Brisbane','It\'s time for change. Proven strategy, fresh creative and powerful execution that will change your business.','strategy, brand, campaign, behaviour change, engagement, content, digital',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70533,74272,1,'Terms and conditions','2021-11-15 01:17:40','2021-11-15 01:17:40','6751140f-417c-4c8b-89fc-3404279c8ffe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LU0O2e8wW5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"General terms and conditions\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"##### **About this estimate**\\n\\nThis estimate is valid for a period of 30 days from the date of issue.\\n\\nThe following documents should be read together to understand the scope and price of our quoted services:\\n\\n- our estimate\\n- your brief, if supplied\\n- these General Terms and Conditions\\n- our Digital Terms and Conditions and other subcontractor terms and conditions, if applicable.\\n\\nThis estimate has been provided according to your brief to us. You should assume that unless a service has been explicitly listed in this quote, it is not included in the price.\\n\\nAlterations to this brief or specifications will incur further costs, and we reserve the right to alter this estimate should we believe the changing scope of work falls outside of what was originally quoted.\\n\\nIt is your responsibility as the client to contact your account manager prior to approving the quote if you have queries or require clarification about any items in the quote. It is also your responsibility as the client to ensure this estimate accurately reflects the scope of work you require.\\n\\nBefore we begin work, you must sign your approval of the quote and, if your organisation uses an ordering system, provide an order number or purchase order.\\n\\nYour acceptance of this quote includes full acceptance of the conditions and payment terms listed in this document. Once quotation approval has been provided, these conditions and payment terms are not negotiable.\\n\\n##### **Beginning your project**\\n\\nWe will not schedule or begin work on your project until we receive from you all of the artwork, content and other files required for the project, as well as the signed estimate or a purchase order.\\n\\nFor example, for an annual report, this might include all finalised content, graphs, charts, photos, captions, financial statements and logos. This saves our studio unnecessary downtime and you money.\\n\\nWe will negotiate and document exceptions where required, but please be aware this may affect your costs and timeline.\\n\\nYour NWO account manager may provide you with a checklist to ensure you are aware of all material that you must provide before we begin work on your project.\\n\\n##### **Brief**\\n\\nUsually, projects within NWO are worked on according to a brief developed in consultation between you and us. If you have not supplied a written brief to us, we may ask you to fill out our briefing template before we create an estimate. You need to check the wording of our estimate directly reflects your understanding of the work we’re carrying out for you. If it does not, please tell us and we will not begin working on the project until your concern is answered.\\n\\nChecking, approval and signing-off\\nAs the client, you are responsible for checking your project for any errors and approving the final project. When you advise us that you approve a project, we take this to mean that you have checked it thoroughly for errors and that you are satisfied it has been completed to your satisfaction. For complex or additional jobs, we may ask you to fill in an approval form.\\nAlthough we have procedures and systems in place to ensure the highest quality of our work, checking for errors is ultimately your responsibility. On some projects, we may require you to provide your approval in writing before we finish work on your job or continue to publication or printing.\\n\\n##### **Client-directed alterations**\\n\\nAs much as possible, we try to accommodate client input and alterations within our quotes. However feedback, corrections and alterations to the brief over and above those quoted will be charged as incurred.\\n\\nThis is how we define a single round of changes: We supply the draft product, you email or otherwise detail the changes, and we then include those changes in our final product to you. Please note our preferred way of receiving changes is via a marked-up PDF.\\n\\nChanges beyond this scope will be charged as author’s corrections. Please be aware that, during author’s corrections, all staff involved in the corrections process will incur costs for you. \\n\\nDepending on your project and the corrections required, this may include an account manager, producer, designer, editor, writer and so on.\\n\\nIf there is unused time left over from your estimate, we will use that time to make your alterations to save you money. Once that amount has been exhausted, however, we will begin charging author’s corrections and we will advise you of this by email and then in weekly cost updates.\\n\\nYou can reduce the amount of corrections by:\\n\\n- supplying approved sourced material and instructions prior to NWO commencing work\\n- seeking authority within your organisation to be the ultimate decision-maker for this project\\n- advising the multiple stakeholders within your organisation of the cost of unbudgeted changes\\n- compiling all feedback into a single document for NWO’s use.\\n \\n##### **Deadlines**\\n\\nWe pride ourselves on meeting tight deadlines and have a strong reputation with our clients for fast, reliable work.\\n\\nHowever, if you significantly alter the brief – such as change text or photos that have already been supplied and approved – or other circumstances occur beyond our control, we may advise you of revised timelines.\\n\\n**If timelines are not being kept to on your part and the project is on hold for 90 days or more, we reserve the right to close the project and refund the costs to you of any work not completed. We will always advise you before doing so, and will be happy to pick your project back up when you are ready to move ahead.**\\n\\n##### **Digital projects**\\n\\nAdditional terms and conditions apply for digital projects.\\n\\n##### **Consumables**\\n\\nExpenses are incurred during every project. These may include phone calls, printing, couriers, proofs and materials. Your quote includes an estimate for these expenses, calculated at 3 per cent of your total quoted amount. We will advise you if these expenses will exceed the quoted amount.\\n\\n##### **Payment terms and pre-payments**\\n\\nOur invoices are to be paid within 14 days of the invoice date, with longer payment terms available for negotiation before a job begins.\\n\\n##### **When you’re a new client**\\n\\nIf you’re a new client, we reserve the right to invoice you 30 per cent of the total project fee before beginning work.\\n\\n##### **When you owe us money**\\n\\nIf payment is delayed longer than 30 days, we reserve the right to withhold future and existing work until payment is made.\\n\\n##### **When we’re employing suppliers for you**\\n\\nDepending on the level of costs and complexity associated with your project, we may choose to request a deposit of 30 per cent of the total cost prior to commencing your project. In this case, the remaining 70 per cent of our invoice will be split into milestone-based payments.\\n\\n##### **When our work forms part of a larger project**\\n\\nWe reserve the right to invoice you when our responsibility within a project has been completed—not when your project has been completed in total.\\n\\n##### **When you order our work for your client**\\n\\nIf you have ordered our work on behalf of a third party, our payment terms still apply. Payment is required when our work is complete, not when you receive payment.\\n\\n##### **When you choose to make an advance payment**\\n\\nIf we agree to an advance payment, all work must be completed within that financial year.\\n\\n##### **Late payment**\\n\\nIf you do not pay us by the due date on an invoice, we reserve the right to cease production on any of your projects.\\n\\nWe may also charge a late payment fee:\\n\\n- 30-60 days late: 5%\\n- 60-90 days late: 10%\\n- 120+ days late: 15%\\n\\nWe do not offer payback schemes or loan arrangements.\\n\\n##### **Limitation of liability**\\n\\nBy commissioning our services, you are agreeing that you will not hold New Word Order or its agents or employees liable for any incidental or consequential damages which arise from our failure to perform any aspect of the project in a timely manner, regardless of whether such failure was caused by intentional or negligent acts or omissions of New Word Order or a third party. Furthermore, we disclaim all implied warranties.\\n\\n##### **Photography and images**\\n\\nUnless otherwise specified in this estimate, we will charge you an additional amount if we purchase images from a stock library for your project.\\n\\nPlease note that you are responsible for ensuring all of your supplied images match the specifications we give you for your project. We expect you to comply with all relevant copyright and privacy laws.\\n\\nWe reserve the right to charge additional time to assess your photo files and improve substandard images.\\n\\n##### **Print management and file output**\\n\\nWe have extensive experience in managing print projects. When you choose us to manage your print, you gain access to our experience, established supplier network and exacting quality control standards.\\n\\nFrom time to time, our clients choose to manage print themselves. In these situations, we will include a file output fee to cover the cost of supplying the file, and time taken to liaise with the printer will be charged as project management.\\n\\n##### **Project management**\\n\\nAll projects require project management. This fee covers the non-creative or strategic hours we expect our agency will expend in delivering your project.\\n\\n##### **Publicity**\\n\\nWe may use your name for the purpose of promotional activities involving the works we have carried out for you, unless otherwise specified.\\n\\n##### **Responsibility for errors**\\n\\nWe have in place procedures and systems to ensure each of our finished projects reaches the highest possible standard of quality. However, from time to time, errors can occur. While we will do everything possible to fix the error, you are responsible for checking and approving the finished project and, as such, any costs of repairing the error are your responsibility.\\n\\n##### **Supplying material to us**\\n\\nWe undertake projects in good faith. If the material you supply – such as photography, graphics or text – does not match the expected standard set during our discussions, we reserve the right to charge for the time it will take to improve or alter the material in order to use it.\\n\\nPlease supply all text, graphics and photography in a digital format unless otherwise specified in this estimate or brief.\\n\\n##### **Tenders**\\n\\nFrom time to time, we are engaged to supply services under a preferred supplier or tender arrangement. We reserve the right to withdraw from providing services after or during our appointment if changes to scope or exceptional circumstances make delivery untenable. Any decision will be made in consultation with the client.\\n\\n##### **Warranty of originality**\\n\\nNew Word Order warrants and represents that, to the best of its knowledge, the work assigned hereunder is original and has not been previously published, or that consent to use has been obtained on an unlimited basis; that all work or portions thereof obtained through the undersigned from third parties is original or, if previously published, that consent to use has been obtained on an unlimited basis; that New Word Order has full authority to make this agreement; and that the work prepared by New Word Order does not contain any scandalous, libellous, or unlawful matter. This warranty does not extend to any uses that the client or others may make of our product that may infringe on the rights of others. The client expressly agrees that it will hold New Word Order harmless for all liability caused by the client’s use of our product to extent such use infringes on the rights of others.\\n\\n##### **Writing services**\\n\\nWe have extensive experience in all forms of writing and editing. Based on our experience, we choose not to work with Word files that contain multiple images or tables, as these files easily corrupt during the editing process. We are happy, though, to work with Word files with the images and tables extracted. Redesigning the Word file to include the images and tables at the end of the editing process will incur a separate fee.\\n\\n##### **Your obligation**\\n\\nYou have sole responsibility of ensuring the suitability and availability of any trademark rights, copyrights or other property rights that are intended to vest in the works that we have been commissioned to produce in accordance with your instructions.\\n\\n---\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Digital terms and conditions\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"##### **Overview**\\n\\nUpon project commencement it is expressly understood by New Word Order that the client has agreed to the terms and conditions outlined below.\\n\\n##### **Estimate**\\n\\nThe estimate is valid for a period of 30 days from the date of issue. The estimate has been provided according to an initial client brief. Unless an item has been explicitly listed in this estimate it is not included in the price. Alterations to this brief or specifications will incur further costs. New Word Order reserves the right to alter the estimate should we believe the scope of works falls outside of what was estimated. Please contact the account manager prior to estimate approval should items within the estimate require clarification. All estimates require signed or email approval and order numbers (if an ordering system is in use) prior to commencement of work.\\n\\n##### **Brief / specification / strategy / development planning**\\n\\nAll brief / specification / strategy / development planning documents provided to the client by New Word Order supersede any client brief. The documents are the final brief for the project and will be what New Word Order works from to design and build the project. The client is responsible for ensuring all stakeholders within their organisation and relevant external organisations have read the document/s in full detail. Project design and development will not commence until New Word Order has received sign-off of the documents. Requests not covered within the documents that have been signed off will be treated as alterations to scope and therefore be subject to a costing and timeline review.\\n\\n##### **Timeframes**\\n\\nThe timeline is negotiated at project commencement once the final estimate has been approved. Timelines provided prior to final estimate approval are indicative only and may not form part of the project plan. Deadlines agreed in the timeframe set down at project commencement are subject to change should the client fail to supply requested materials, information and/or access to data, software or other systems according to the agreed schedule. All work will cease and timeframes will be impacted should invoices not be paid within the required period (please see payment notes). New Word Order endeavors to work within timeframes however there are certain factors that are subject to change and are outside our control. As such New Word Order cannot guarantee deadlines will be met.\\n\\n##### **Artwork**\\n\\nArtwork is to be fully approved from all client parties prior to the commencement of further work. Once approved and development commences, artwork alterations will incur further costs. Artwork supplied by the client needs to be to New Word Order specifications. Client must provide a detailed brief including placement and background specifications.\\n\\nOur estimate assumes a standard level of complexity. Upon viewing the artwork, New Word Order reserves the right to put forward an altered estimate should the artwork be not within the budget estimated.\\n\\n##### **Content**\\n\\nWhere this estimate pertains to content entry, time has been allocated for New Word Order to input a set amount of content (as defined by the estimate). Should more time be required, it will be charged at our standard hourly rate. Content cannot be input until the project has been finalised and fully tested by New Word Order. The client timelines should allow content to be uploaded after completion of development and prior to final testing.\\n\\n##### **Supply of material**\\n\\nText, graphics and photography are to be supplied in digital format unless otherwise specified in this estimate. Text is to be fully edited and proofread prior to New Word Order receiving it. All supplied materials must comply with standard copyright requirements. Work will not commence until all supplied materials have been given to New Word Order and they meet the requirements of the New Word Order workflow process. Failure to provide information in a timely manner will result in timelines being pushed out to accommodate.\\n\\n##### **Imagery**\\n\\nUnless otherwise specified in this estimate imagery required for a project that is purchased from a stock library or shot specifically by New Word Order’s professional photographer will be sourced at an additional cost.\\n\\n##### **Corrections, alterations and expenses**\\n\\nExpenses incurred throughout the project including couriers, proofs, and materials are invoiced in addition to the estimated amount. As much as possible we try to accommodate client input and alterations within our estimates. However feedback, corrections and alterations to the brief over and above those estimated will be charged as incurred. The client can reduce the amount of corrections by supplying approved sourced material and instructions prior to New Word Order commencing work.\\n\\n##### **Payment**\\n\\nUnless otherwise specified a deposit of 30% of the total estimate will be paid prior to the commencement of the project. The remaining 70% will be split into milestone based part payments. Each invoice is to be paid within 30 days of the invoice date. In the event of an invoice not being paid within the terms, production will cease on all work for the client. New Word Order reserves the right to invoice projects when our portion of the project has been completed, not once the project has been finalised by the client. In the case of content managed websites this means New Word Order will invoice once we have finalised our portion of the project – not once the website has gone live. New Word Order takes no responsibility for the time it takes for the client to enter content. If the client uses a purchase order number system in order to pay invoices the purchase order number is to be provided upon estimate approval. The project will not commence without a purchase order number. We do not, at any stage, offer payback schemes or loan arrangements. If New Word Order agrees to an advance payment, all work must be completed within that financial year. Your acceptance of this estimate includes full acceptance of the payment terms listed above. Once estimate approval has been provided these payment terms are not negotiable.\\n\\n##### **Project completion**\\n\\nNew Word Order will ensure the project is tested correctly however we do require our clients to fully test and approve their project prior to project completion. Testing is carried out at each stage of development. New Word Order will require proofs to be signed of at each stage of development. Once final approval has been given and the project is finalised, a 14-day period is allocated for final client testing. Once this period ends, alterations/fixes will be charged as incurred.\\n\\n##### **Publicity**\\n\\nNew Word Order may use the client’s name for the purpose of promotional activities involving the works carried out for the client unless otherwise specified.\\n\\n##### **Search engine optimisation**\\n\\nThis estimate does not include SEO (search engine optimisation) unless specified in the estimate.\\n\\n##### **Client’s obligation**\\n\\nThe client acknowledges that it has the sole responsibility of ensuring the suitability and availability of any trademark rights, copyrights or other property rights that are intended to vest in the works which New Word Order has been commissioned to produce in accordance with the client instructions.\\n\\n##### **Warranty of originality**\\n\\nNew Word Order warrants and represents that, to the best of its knowledge, the work assigned hereunder is original and has not been previously published, or that consent to use has been obtained on an unlimited basis; that all work or portions thereof obtained through the undersigned from third parties is original or, if previously published, that consent to use has been obtained on an unlimited basis; that New Word Order has full authority to make this agreement; and that the work prepared by New Word Order does not contain any scandalous, libellous, or unlawful matter. This warranty does not extend to any uses that the client or others may make of New Word Order’s product which may infringe on the rights of others. The client expressly agrees that it will hold New Word Order harmless for all liability caused by the client’s use of New Word Order’s product to extent such use infringes on the rights of others.\\n\\n##### **Limitation of liability**\\n\\nThe client agrees that it shall not hold New Word Order or its agents or employees liable for any incidental or consequential damages which arise from New Word Order failure to perform any aspect of the project in a timely manner, regardless of whether such failure was caused by intentional or negligent acts or omissions of New Word Order or a third party. Furthermore, New Word Order disclaims all implied warranties.\\n\\n##### **Platform and browser compatibility**\\n\\nThe client is responsible to confirm the works produced by New Word Order are to brief and fit for purpose and function on required browsers. As at the time of execution of this estimate New Word Order will test on the following browsers and platforms. New Word Order is not responsible for work to update websites when new browsers are released or does not work on browsers not included in the list provided in the estimate. If Internet Explorer 6, mobile browsers or any browsers not stated in the estimate are required then additional charges will apply unless otherwise stated.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70534,74273,1,'About us','2021-11-15 01:17:41','2021-11-15 01:17:41','d5c2d547-2b34-4946-b758-4b6c2d79320a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17910\",\"17881\",\"17848\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\",\"17921\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | About us','For 20 years we have helped businesses, organisations and governments to solve problems, unlock potential and connect with people to inspire action.','strategy, brand, campaign, behaviour change, engagement, digital, video, content',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70535,74274,1,'Update details','2021-11-15 01:17:42','2021-11-15 01:17:42','ec3c6e85-d645-4552-bca0-30d9414f0865',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WQdEvDKsSL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Enter your details\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Enter your details\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PSqM6x8LeL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<!--[if lte IE 8]>\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2-legacy.js\\\"></script>\\n<![endif]-->\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n\\tregion: \\\"na1\\\",\\n\\tportalId: \\\"8394441\\\",\\n\\tformId: \\\"bc6282cb-a942-406c-bc57-b0b253a1cc4d\\\"\\n});\\n</script>\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70536,74275,1,'Update details','2021-11-15 01:48:59','2021-11-15 01:48:59','e4320730-3a4e-4952-82b3-f24d024f8bc1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WQdEvDKsSL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Enter your details\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Enter your details\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PSqM6x8LeL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<!--[if lte IE 8]>\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2-legacy.js\\\"></script>\\n<![endif]-->\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n\\tregion: \\\"na1\\\",\\n\\tportalId: \\\"8394441\\\",\\n\\tformId: \\\"bc6282cb-a942-406c-bc57-b0b253a1cc4d\\\"\\n});\\n</script>\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70537,74276,1,'Email sigs','2021-11-15 01:51:50','2022-12-01 07:16:43','4bbe7389-4324-4425-8ce7-7664605510b7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"113\" src=\"{asset:74279:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/email-sig.gif}\" alt=\"New Word Order\" /></a></figure>\n<figure><img width=\"400\" height=\"100\" src=\"{asset:143051:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/nwo-email-christmas-22-3.png}\" alt=\"\" /></figure>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70538,74277,1,'Email sigs','2021-11-15 01:51:50','2021-11-15 01:51:50','1ce08cb2-4c52-4674-a928-92c185b8be1f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70539,74278,1,'Email sigs','2021-11-15 01:52:01','2021-11-15 01:52:01','8bb20c2a-e7fb-42a3-96f9-2e47b225fab6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70540,74279,1,'Email sig','2021-11-15 01:52:56','2021-11-15 01:52:56','6bbf627f-6c26-42a1-a839-b683b317a6c7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":[],\"originalImageWidth\":0,\"originalImageHeight\":0,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":0,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70542,74281,1,'Email sigs','2021-11-15 01:53:35','2021-11-15 01:53:35','15f92704-0e53-44d5-9c94-118f0a3875ca',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<figure><img src=\"{asset:74279:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/email-sig.gif}\" alt=\"Email signatures\" /></figure>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70543,74282,1,'Email sigs','2021-11-15 02:16:09','2021-11-15 02:16:09','73101819-af58-4255-8348-2cc1e5ea7f28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<figure><img src=\"{asset:74279:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/email-sig.gif}\" alt=\"Email signatures\" /></figure>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70545,74284,1,'Email sigs','2021-11-15 02:16:54','2021-11-15 02:16:54','f878b82b-b779-40d3-8ab7-40b55a54c2cc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<figure><img width=\"400\" height=\"113\" src=\"{asset:74279:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/email-sig.gif}\" alt=\"Email signatures\" /></figure>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70547,74286,1,'Privacy policy','2021-11-24 05:25:54','2022-05-17 23:19:12','d579719d-1db3-4177-8c7e-e6c08dce19e5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cswrs0dIt7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Privacy policy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Your privacy is important to us. It is New Word Order’s policy to respect your privacy regarding any information we may collect from you across our website, http://newwordorder.com.au, and other sites we own and operate.\\nWe only ask for personal information when we truly need it to provide a service to you. We collect it by fair and lawful means, with your knowledge and consent. We also let you know why we’re collecting it and how it will be used.\\n\\nWe only retain collected information for as long as necessary to provide you with your requested service. What data we store, we’ll protect within commercially acceptable means to prevent loss and theft, as well as unauthorised access, disclosure, copying, use or modification.\\nWe don’t share any personally identifying information publicly or with third-parties, except when required to by law.\\n\\nOur website may link to external sites that are not operated by us. Please be aware that we have no control over the content and practices of these sites, and cannot accept responsibility or liability for their respective privacy policies.\\n\\nYou are free to refuse our request for your personal information, with the understanding that we may be unable to provide you with some of your desired services.\\n\\nYour continued use of our website will be regarded as acceptance of our practices around privacy and personal information. If you have any questions about how we handle user data and personal information, feel free to contact us.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Privacy policy\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70548,74287,1,'Privacy policy','2021-11-24 05:25:54','2021-11-24 05:25:54','f8c25306-e9ec-4cfc-904f-07ddcef693ca',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70549,74288,1,'Privacy policy','2021-11-24 05:26:17','2021-11-24 05:26:17','46d58124-98b1-42ea-8200-3dc6a11f81c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70550,74289,1,'Privacy policy','2021-11-24 05:28:19','2021-11-24 05:28:19','d364845a-c46f-4a0b-8830-5a236e15cf7b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70552,74291,1,'Privacy policy','2021-11-24 05:29:52','2021-11-24 05:29:52','6c9e1906-34c3-4e54-9d30-6eff6dd8276f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cswrs0dIt7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Your privacy is important to us. It is New Word Order’s policy to respect your privacy regarding any information we may collect from you across our website, http://newwordorder.com.au, and other sites we own and operate.\\nWe only ask for personal information when we truly need it to provide a service to you. We collect it by fair and lawful means, with your knowledge and consent. We also let you know why we’re collecting it and how it will be used.\\n\\nWe only retain collected information for as long as necessary to provide you with your requested service. What data we store, we’ll protect within commercially acceptable means to prevent loss and theft, as well as unauthorised access, disclosure, copying, use or modification.\\nWe don’t share any personally identifying information publicly or with third-parties, except when required to by law.\\n\\nOur website may link to external sites that are not operated by us. Please be aware that we have no control over the content and practices of these sites, and cannot accept responsibility or liability for their respective privacy policies.\\n\\nYou are free to refuse our request for your personal information, with the understanding that we may be unable to provide you with some of your desired services.\\n\\nYour continued use of our website will be regarded as acceptance of our practices around privacy and personal information. If you have any questions about how we handle user data and personal information, feel free to contact us.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Privacy policy\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70554,74293,1,'Privacy policy','2021-11-24 05:30:59','2021-11-24 05:30:59','6e019a2a-22b4-4d13-a504-8b8175132fb1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cswrs0dIt7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Privacy policy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Your privacy is important to us. It is New Word Order’s policy to respect your privacy regarding any information we may collect from you across our website, http://newwordorder.com.au, and other sites we own and operate.\\nWe only ask for personal information when we truly need it to provide a service to you. We collect it by fair and lawful means, with your knowledge and consent. We also let you know why we’re collecting it and how it will be used.\\n\\nWe only retain collected information for as long as necessary to provide you with your requested service. What data we store, we’ll protect within commercially acceptable means to prevent loss and theft, as well as unauthorised access, disclosure, copying, use or modification.\\nWe don’t share any personally identifying information publicly or with third-parties, except when required to by law.\\n\\nOur website may link to external sites that are not operated by us. Please be aware that we have no control over the content and practices of these sites, and cannot accept responsibility or liability for their respective privacy policies.\\n\\nYou are free to refuse our request for your personal information, with the understanding that we may be unable to provide you with some of your desired services.\\n\\nYour continued use of our website will be regarded as acceptance of our practices around privacy and personal information. If you have any questions about how we handle user data and personal information, feel free to contact us.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Privacy policy\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70561,74300,1,'NWO casestudy YCN','2021-11-25 23:54:42','2021-11-25 23:54:42','d387dd5b-c3c3-483e-b5ff-e8f9c4c6227e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":[],\"originalImageWidth\":0,\"originalImageHeight\":0,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":0,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70562,74301,1,'NWO casestudy HEARTHQ','2021-11-25 23:54:56','2021-11-25 23:54:56','bfc482c7-616e-4708-a100-a82f8b58e615',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":[],\"originalImageWidth\":0,\"originalImageHeight\":0,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":0,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(70563,74302,1,'NWO casestudy DFV','2021-11-25 23:55:12','2021-11-25 23:55:12','26884e56-233b-44cf-ae85-a37b557afa4d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":[],\"originalImageWidth\":0,\"originalImageHeight\":0,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":0,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(78555,82294,1,'Terms and conditions','2021-11-30 00:08:02','2021-11-30 00:08:02','97e6d62a-99db-4bd2-90eb-ab75dd72d0d9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LU0O2e8wW5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"General terms and conditions\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"##### **About this estimate**\\n\\nThis estimate is valid for a period of 30 days from the date of issue.\\n\\nThe following documents should be read together to understand the scope and price of our quoted services:\\n\\n- our estimate\\n- your brief, if supplied\\n- these General Terms and Conditions\\n- our Digital Terms and Conditions and other subcontractor terms and conditions, if applicable.\\n\\nThis estimate has been provided according to your brief to us. You should assume that unless a service has been explicitly listed in this quote, it is not included in the price.\\n\\nAlterations to this brief or specifications will incur further costs, and we reserve the right to alter this estimate should we believe the changing scope of work falls outside of what was originally quoted.\\n\\nIt is your responsibility as the client to contact your account manager prior to approving the quote if you have queries or require clarification about any items in the quote. It is also your responsibility as the client to ensure this estimate accurately reflects the scope of work you require.\\n\\nBefore we begin work, you must sign your approval of the quote and, if your organisation uses an ordering system, provide an order number or purchase order.\\n\\nYour acceptance of this quote includes full acceptance of the conditions and payment terms listed in this document. Once quotation approval has been provided, these conditions and payment terms are not negotiable.\\n\\n##### **Beginning your project**\\n\\nWe will not schedule or begin work on your project until we receive from you all of the artwork, content and other files required for the project, as well as the signed estimate or a purchase order.\\n\\nFor example, for an annual report, this might include all finalised content, graphs, charts, photos, captions, financial statements and logos. This saves our studio unnecessary downtime and you money.\\n\\nWe will negotiate and document exceptions where required, but please be aware this may affect your costs and timeline.\\n\\nYour NWO account manager may provide you with a checklist to ensure you are aware of all material that you must provide before we begin work on your project.\\n\\n##### **Brief**\\n\\nUsually, projects within NWO are worked on according to a brief developed in consultation between you and us. If you have not supplied a written brief to us, we may ask you to fill out our briefing template before we create an estimate. You need to check the wording of our estimate directly reflects your understanding of the work we’re carrying out for you. If it does not, please tell us and we will not begin working on the project until your concern is answered.\\n\\nChecking, approval and signing-off\\nAs the client, you are responsible for checking your project for any errors and approving the final project. When you advise us that you approve a project, we take this to mean that you have checked it thoroughly for errors and that you are satisfied it has been completed to your satisfaction. For complex or additional jobs, we may ask you to fill in an approval form.\\nAlthough we have procedures and systems in place to ensure the highest quality of our work, checking for errors is ultimately your responsibility. On some projects, we may require you to provide your approval in writing before we finish work on your job or continue to publication or printing.\\n\\n##### **Client-directed alterations**\\n\\nAs much as possible, we try to accommodate client input and alterations within our quotes. However feedback, corrections and alterations to the brief over and above those quoted will be charged as incurred.\\n\\nThis is how we define a single round of changes: We supply the draft product, you email or otherwise detail the changes, and we then include those changes in our final product to you. Please note our preferred way of receiving changes is via a marked-up PDF.\\n\\nChanges beyond this scope will be charged as author’s corrections. Please be aware that, during author’s corrections, all staff involved in the corrections process will incur costs for you. \\n\\nDepending on your project and the corrections required, this may include an account manager, producer, designer, editor, writer and so on.\\n\\nIf there is unused time left over from your estimate, we will use that time to make your alterations to save you money. Once that amount has been exhausted, however, we will begin charging author’s corrections and we will advise you of this by email and then in weekly cost updates.\\n\\nYou can reduce the amount of corrections by:\\n\\n- supplying approved sourced material and instructions prior to NWO commencing work\\n- seeking authority within your organisation to be the ultimate decision-maker for this project\\n- advising the multiple stakeholders within your organisation of the cost of unbudgeted changes\\n- compiling all feedback into a single document for NWO’s use.\\n \\n##### **Deadlines**\\n\\nWe pride ourselves on meeting tight deadlines and have a strong reputation with our clients for fast, reliable work.\\n\\nHowever, if you significantly alter the brief – such as change text or photos that have already been supplied and approved – or other circumstances occur beyond our control, we may advise you of revised timelines.\\n\\n**If timelines are not being kept to on your part and the project is on hold for 90 days or more, we reserve the right to close the project and refund the costs to you of any work not completed. We will always advise you before doing so, and will be happy to pick your project back up when you are ready to move ahead.**\\n\\n##### **Digital projects**\\n\\nAdditional terms and conditions apply for digital projects.\\n\\n##### **Consumables**\\n\\nExpenses are incurred during every project. These may include phone calls, printing, couriers, proofs and materials. Your quote includes an estimate for these expenses, calculated at 3 per cent of your total quoted amount. We will advise you if these expenses will exceed the quoted amount.\\n\\n##### **Payment terms and pre-payments**\\n\\nOur invoices are to be paid within 14 days of the invoice date, with longer payment terms available for negotiation before a job begins.\\n\\n##### **When you’re a new client**\\n\\nIf you’re a new client, we reserve the right to invoice you 30 per cent of the total project fee before beginning work.\\n\\n##### **When you owe us money**\\n\\nIf payment is delayed longer than 30 days, we reserve the right to withhold future and existing work until payment is made.\\n\\n##### **When we’re employing suppliers for you**\\n\\nDepending on the level of costs and complexity associated with your project, we may choose to request a deposit of 30 per cent of the total cost prior to commencing your project. In this case, the remaining 70 per cent of our invoice will be split into milestone-based payments.\\n\\n##### **When our work forms part of a larger project**\\n\\nWe reserve the right to invoice you when our responsibility within a project has been completed—not when your project has been completed in total.\\n\\n##### **When you order our work for your client**\\n\\nIf you have ordered our work on behalf of a third party, our payment terms still apply. Payment is required when our work is complete, not when you receive payment.\\n\\n##### **When you choose to make an advance payment**\\n\\nIf we agree to an advance payment, all work must be completed within that financial year.\\n\\n##### **Late payment**\\n\\nIf you do not pay us by the due date on an invoice, we reserve the right to cease production on any of your projects.\\n\\nWe may also charge a late payment fee:\\n\\n- 30-60 days late: 5%\\n- 60-90 days late: 10%\\n- 120+ days late: 15%\\n\\nWe do not offer payback schemes or loan arrangements.\\n\\n##### **Limitation of liability**\\n\\nBy commissioning our services, you are agreeing that you will not hold New Word Order or its agents or employees liable for any incidental or consequential damages which arise from our failure to perform any aspect of the project in a timely manner, regardless of whether such failure was caused by intentional or negligent acts or omissions of New Word Order or a third party. Furthermore, we disclaim all implied warranties.\\n\\n##### **Photography and images**\\n\\nUnless otherwise specified in this estimate, we will charge you an additional amount if we purchase images from a stock library for your project.\\n\\nPlease note that you are responsible for ensuring all of your supplied images match the specifications we give you for your project. We expect you to comply with all relevant copyright and privacy laws.\\n\\nWe reserve the right to charge additional time to assess your photo files and improve substandard images.\\n\\n##### **Print management and file output**\\n\\nWe have extensive experience in managing print projects. When you choose us to manage your print, you gain access to our experience, established supplier network and exacting quality control standards.\\n\\nFrom time to time, our clients choose to manage print themselves. In these situations, we will include a file output fee to cover the cost of supplying the file, and time taken to liaise with the printer will be charged as project management.\\n\\n##### **Project management**\\n\\nAll projects require project management. This fee covers the non-creative or strategic hours we expect our agency will expend in delivering your project.\\n\\n##### **Publicity**\\n\\nWe may use your name for the purpose of promotional activities involving the works we have carried out for you, unless otherwise specified.\\n\\n##### **Responsibility for errors**\\n\\nWe have in place procedures and systems to ensure each of our finished projects reaches the highest possible standard of quality. However, from time to time, errors can occur. While we will do everything possible to fix the error, you are responsible for checking and approving the finished project and, as such, any costs of repairing the error are your responsibility.\\n\\n##### **Supplying material to us**\\n\\nWe undertake projects in good faith. If the material you supply – such as photography, graphics or text – does not match the expected standard set during our discussions, we reserve the right to charge for the time it will take to improve or alter the material in order to use it.\\n\\nPlease supply all text, graphics and photography in a digital format unless otherwise specified in this estimate or brief.\\n\\n##### **Tenders**\\n\\nFrom time to time, we are engaged to supply services under a preferred supplier or tender arrangement. We reserve the right to withdraw from providing services after or during our appointment if changes to scope or exceptional circumstances make delivery untenable. Any decision will be made in consultation with the client.\\n\\n##### **Warranty of originality**\\n\\nNew Word Order warrants and represents that, to the best of its knowledge, the work assigned hereunder is original and has not been previously published, or that consent to use has been obtained on an unlimited basis; that all work or portions thereof obtained through the undersigned from third parties is original or, if previously published, that consent to use has been obtained on an unlimited basis; that New Word Order has full authority to make this agreement; and that the work prepared by New Word Order does not contain any scandalous, libellous, or unlawful matter. This warranty does not extend to any uses that the client or others may make of our product that may infringe on the rights of others. The client expressly agrees that it will hold New Word Order harmless for all liability caused by the client’s use of our product to extent such use infringes on the rights of others.\\n\\n##### **Writing services**\\n\\nWe have extensive experience in all forms of writing and editing. Based on our experience, we choose not to work with Word files that contain multiple images or tables, as these files easily corrupt during the editing process. We are happy, though, to work with Word files with the images and tables extracted. Redesigning the Word file to include the images and tables at the end of the editing process will incur a separate fee.\\n\\n##### **Your obligation**\\n\\nYou have sole responsibility of ensuring the suitability and availability of any trademark rights, copyrights or other property rights that are intended to vest in the works that we have been commissioned to produce in accordance with your instructions.\\n\\n---\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Digital terms and conditions\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"##### **Overview**\\n\\nUpon project commencement it is expressly understood by New Word Order that the client has agreed to the terms and conditions outlined below.\\n\\n##### **Estimate**\\n\\nThe estimate is valid for a period of 30 days from the date of issue. The estimate has been provided according to an initial client brief. Unless an item has been explicitly listed in this estimate it is not included in the price. Alterations to this brief or specifications will incur further costs. New Word Order reserves the right to alter the estimate should we believe the scope of works falls outside of what was estimated. Please contact the account manager prior to estimate approval should items within the estimate require clarification. All estimates require signed or email approval and order numbers (if an ordering system is in use) prior to commencement of work.\\n\\n##### **Brief / specification / strategy / development planning**\\n\\nAll brief / specification / strategy / development planning documents provided to the client by New Word Order supersede any client brief. The documents are the final brief for the project and will be what New Word Order works from to design and build the project. The client is responsible for ensuring all stakeholders within their organisation and relevant external organisations have read the document/s in full detail. Project design and development will not commence until New Word Order has received sign-off of the documents. Requests not covered within the documents that have been signed off will be treated as alterations to scope and therefore be subject to a costing and timeline review.\\n\\n##### **Timeframes**\\n\\nThe timeline is negotiated at project commencement once the final estimate has been approved. Timelines provided prior to final estimate approval are indicative only and may not form part of the project plan. Deadlines agreed in the timeframe set down at project commencement are subject to change should the client fail to supply requested materials, information and/or access to data, software or other systems according to the agreed schedule. All work will cease and timeframes will be impacted should invoices not be paid within the required period (please see payment notes). New Word Order endeavors to work within timeframes however there are certain factors that are subject to change and are outside our control. As such New Word Order cannot guarantee deadlines will be met.\\n\\n##### **Artwork**\\n\\nArtwork is to be fully approved from all client parties prior to the commencement of further work. Once approved and development commences, artwork alterations will incur further costs. Artwork supplied by the client needs to be to New Word Order specifications. Client must provide a detailed brief including placement and background specifications.\\n\\nOur estimate assumes a standard level of complexity. Upon viewing the artwork, New Word Order reserves the right to put forward an altered estimate should the artwork be not within the budget estimated.\\n\\n##### **Content**\\n\\nWhere this estimate pertains to content entry, time has been allocated for New Word Order to input a set amount of content (as defined by the estimate). Should more time be required, it will be charged at our standard hourly rate. Content cannot be input until the project has been finalised and fully tested by New Word Order. The client timelines should allow content to be uploaded after completion of development and prior to final testing.\\n\\n##### **Supply of material**\\n\\nText, graphics and photography are to be supplied in digital format unless otherwise specified in this estimate. Text is to be fully edited and proofread prior to New Word Order receiving it. All supplied materials must comply with standard copyright requirements. Work will not commence until all supplied materials have been given to New Word Order and they meet the requirements of the New Word Order workflow process. Failure to provide information in a timely manner will result in timelines being pushed out to accommodate.\\n\\n##### **Imagery**\\n\\nUnless otherwise specified in this estimate imagery required for a project that is purchased from a stock library or shot specifically by New Word Order’s professional photographer will be sourced at an additional cost.\\n\\n##### **Corrections, alterations and expenses**\\n\\nExpenses incurred throughout the project including couriers, proofs, and materials are invoiced in addition to the estimated amount. As much as possible we try to accommodate client input and alterations within our estimates. However feedback, corrections and alterations to the brief over and above those estimated will be charged as incurred. The client can reduce the amount of corrections by supplying approved sourced material and instructions prior to New Word Order commencing work.\\n\\n##### **Payment**\\n\\nUnless otherwise specified a deposit of 30% of the total estimate will be paid prior to the commencement of the project. The remaining 70% will be split into milestone based part payments. Each invoice is to be paid within 30 days of the invoice date. In the event of an invoice not being paid within the terms, production will cease on all work for the client. New Word Order reserves the right to invoice projects when our portion of the project has been completed, not once the project has been finalised by the client. In the case of content managed websites this means New Word Order will invoice once we have finalised our portion of the project – not once the website has gone live. New Word Order takes no responsibility for the time it takes for the client to enter content. If the client uses a purchase order number system in order to pay invoices the purchase order number is to be provided upon estimate approval. The project will not commence without a purchase order number. We do not, at any stage, offer payback schemes or loan arrangements. If New Word Order agrees to an advance payment, all work must be completed within that financial year. Your acceptance of this estimate includes full acceptance of the payment terms listed above. Once estimate approval has been provided these payment terms are not negotiable.\\n\\n##### **Project completion**\\n\\nNew Word Order will ensure the project is tested correctly however we do require our clients to fully test and approve their project prior to project completion. Testing is carried out at each stage of development. New Word Order will require proofs to be signed of at each stage of development. Once final approval has been given and the project is finalised, a 14-day period is allocated for final client testing. Once this period ends, alterations/fixes will be charged as incurred.\\n\\n##### **Publicity**\\n\\nNew Word Order may use the client’s name for the purpose of promotional activities involving the works carried out for the client unless otherwise specified.\\n\\n##### **Search engine optimisation**\\n\\nThis estimate does not include SEO (search engine optimisation) unless specified in the estimate.\\n\\n##### **Client’s obligation**\\n\\nThe client acknowledges that it has the sole responsibility of ensuring the suitability and availability of any trademark rights, copyrights or other property rights that are intended to vest in the works which New Word Order has been commissioned to produce in accordance with the client instructions.\\n\\n##### **Warranty of originality**\\n\\nNew Word Order warrants and represents that, to the best of its knowledge, the work assigned hereunder is original and has not been previously published, or that consent to use has been obtained on an unlimited basis; that all work or portions thereof obtained through the undersigned from third parties is original or, if previously published, that consent to use has been obtained on an unlimited basis; that New Word Order has full authority to make this agreement; and that the work prepared by New Word Order does not contain any scandalous, libellous, or unlawful matter. This warranty does not extend to any uses that the client or others may make of New Word Order’s product which may infringe on the rights of others. The client expressly agrees that it will hold New Word Order harmless for all liability caused by the client’s use of New Word Order’s product to extent such use infringes on the rights of others.\\n\\n##### **Limitation of liability**\\n\\nThe client agrees that it shall not hold New Word Order or its agents or employees liable for any incidental or consequential damages which arise from New Word Order failure to perform any aspect of the project in a timely manner, regardless of whether such failure was caused by intentional or negligent acts or omissions of New Word Order or a third party. Furthermore, New Word Order disclaims all implied warranties.\\n\\n##### **Platform and browser compatibility**\\n\\nThe client is responsible to confirm the works produced by New Word Order are to brief and fit for purpose and function on required browsers. As at the time of execution of this estimate New Word Order will test on the following browsers and platforms. New Word Order is not responsible for work to update websites when new browsers are released or does not work on browsers not included in the list provided in the estimate. If Internet Explorer 6, mobile browsers or any browsers not stated in the estimate are required then additional charges will apply unless otherwise stated.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(78557,82296,1,'Terms and conditions','2021-11-30 00:08:35','2021-11-30 00:08:35','72c2350a-e39d-4828-835b-bc05c61b0272',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LU0O2e8wW5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"General terms and conditions\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"##### **About this estimate**\\n\\nThis estimate is valid for a period of 30 days from the date of issue.\\n\\nThe following documents should be read together to understand the scope and price of our quoted services:\\n\\n- our estimate\\n- your brief, if supplied\\n- these General Terms and Conditions\\n- our Digital Terms and Conditions and other subcontractor terms and conditions, if applicable.\\n\\nThis estimate has been provided according to your brief to us. You should assume that unless a service has been explicitly listed in this quote, it is not included in the price.\\n\\nAlterations to this brief or specifications will incur further costs, and we reserve the right to alter this estimate should we believe the changing scope of work falls outside of what was originally quoted.\\n\\nIt is your responsibility as the client to contact your account manager prior to approving the quote if you have queries or require clarification about any items in the quote. It is also your responsibility as the client to ensure this estimate accurately reflects the scope of work you require.\\n\\nBefore we begin work, you must sign your approval of the quote and, if your organisation uses an ordering system, provide an order number or purchase order.\\n\\nYour acceptance of this quote includes full acceptance of the conditions and payment terms listed in this document. Once quotation approval has been provided, these conditions and payment terms are not negotiable.\\n\\n##### **Beginning your project**\\n\\nWe will not schedule or begin work on your project until we receive from you all of the artwork, content and other files required for the project, as well as the signed estimate or a purchase order.\\n\\nFor example, for an annual report, this might include all finalised content, graphs, charts, photos, captions, financial statements and logos. This saves our studio unnecessary downtime and you money.\\n\\nWe will negotiate and document exceptions where required, but please be aware this may affect your costs and timeline.\\n\\nYour NWO account manager may provide you with a checklist to ensure you are aware of all material that you must provide before we begin work on your project.\\n\\n##### **Brief**\\n\\nUsually, projects within NWO are worked on according to a brief developed in consultation between you and us. If you have not supplied a written brief to us, we may ask you to fill out our briefing template before we create an estimate. You need to check the wording of our estimate directly reflects your understanding of the work we’re carrying out for you. If it does not, please tell us and we will not begin working on the project until your concern is answered.\\n\\nChecking, approval and signing-off\\nAs the client, you are responsible for checking your project for any errors and approving the final project. When you advise us that you approve a project, we take this to mean that you have checked it thoroughly for errors and that you are satisfied it has been completed to your satisfaction. For complex or additional jobs, we may ask you to fill in an approval form.\\nAlthough we have procedures and systems in place to ensure the highest quality of our work, checking for errors is ultimately your responsibility. On some projects, we may require you to provide your approval in writing before we finish work on your job or continue to publication or printing.\\n\\n##### **Client-directed alterations**\\n\\nAs much as possible, we try to accommodate client input and alterations within our quotes. However feedback, corrections and alterations to the brief over and above those quoted will be charged as incurred.\\n\\nThis is how we define a single round of changes: We supply the draft product, you email or otherwise detail the changes, and we then include those changes in our final product to you. Please note our preferred way of receiving changes is via a marked-up PDF.\\n\\nChanges beyond this scope will be charged as author’s corrections. Please be aware that, during author’s corrections, all staff involved in the corrections process will incur costs for you. \\n\\nDepending on your project and the corrections required, this may include an account manager, producer, designer, editor, writer and so on.\\n\\nIf there is unused time left over from your estimate, we will use that time to make your alterations to save you money. Once that amount has been exhausted, however, we will begin charging author’s corrections and we will advise you of this by email and then in weekly cost updates.\\n\\nYou can reduce the amount of corrections by:\\n\\n- supplying approved sourced material and instructions prior to NWO commencing work\\n- seeking authority within your organisation to be the ultimate decision-maker for this project\\n- advising the multiple stakeholders within your organisation of the cost of unbudgeted changes\\n- compiling all feedback into a single document for NWO’s use.\\n \\n##### **Deadlines**\\n\\nWe pride ourselves on meeting tight deadlines and have a strong reputation with our clients for fast, reliable work.\\n\\nHowever, if you significantly alter the brief – such as change text or photos that have already been supplied and approved – or other circumstances occur beyond our control, we may advise you of revised timelines.\\n\\n**If timelines are not being kept to on your part and the project is on hold for 90 days or more, we reserve the right to close the project and refund the costs to you of any work not completed. We will always advise you before doing so, and will be happy to pick your project back up when you are ready to move ahead.**\\n\\n##### **Digital projects**\\n\\nAdditional terms and conditions apply for digital projects.\\n\\n##### **Consumables**\\n\\nExpenses are incurred during every project. These may include phone calls, printing, couriers, proofs and materials. Your quote includes an estimate for these expenses, calculated at 3 per cent of your total quoted amount. We will advise you if these expenses will exceed the quoted amount.\\n\\n##### **Payment terms and pre-payments**\\n\\nOur invoices are to be paid within 14 days of the invoice date, with longer payment terms available for negotiation before a job begins.\\n\\n##### **When you’re a new client**\\n\\nIf you’re a new client, we reserve the right to invoice you 30 per cent of the total project fee before beginning work.\\n\\n##### **When you owe us money**\\n\\nIf payment is delayed longer than 30 days, we reserve the right to withhold future and existing work until payment is made.\\n\\n##### **When we’re employing suppliers for you**\\n\\nDepending on the level of costs and complexity associated with your project, we may choose to request a deposit of 30 per cent of the total cost prior to commencing your project. In this case, the remaining 70 per cent of our invoice will be split into milestone-based payments.\\n\\n##### **When our work forms part of a larger project**\\n\\nWe reserve the right to invoice you when our responsibility within a project has been completed—not when your project has been completed in total.\\n\\n##### **When you order our work for your client**\\n\\nIf you have ordered our work on behalf of a third party, our payment terms still apply. Payment is required when our work is complete, not when you receive payment.\\n\\n##### **When you choose to make an advance payment**\\n\\nIf we agree to an advance payment, all work must be completed within that financial year.\\n\\n##### **Late payment**\\n\\nIf you do not pay us by the due date on an invoice, we reserve the right to cease production on any of your projects.\\n\\nWe may also charge a late payment fee:\\n\\n- 30-60 days late: 5%\\n- 60-90 days late: 10%\\n- 120+ days late: 15%\\n\\nWe do not offer payback schemes or loan arrangements.\\n\\n##### **Limitation of liability**\\n\\nBy commissioning our services, you are agreeing that you will not hold New Word Order or its agents or employees liable for any incidental or consequential damages which arise from our failure to perform any aspect of the project in a timely manner, regardless of whether such failure was caused by intentional or negligent acts or omissions of New Word Order or a third party. Furthermore, we disclaim all implied warranties.\\n\\n##### **Photography and images**\\n\\nUnless otherwise specified in this estimate, we will charge you an additional amount if we purchase images from a stock library for your project.\\n\\nPlease note that you are responsible for ensuring all of your supplied images match the specifications we give you for your project. We expect you to comply with all relevant copyright and privacy laws.\\n\\nWe reserve the right to charge additional time to assess your photo files and improve substandard images.\\n\\n##### **Print management and file output**\\n\\nWe have extensive experience in managing print projects. When you choose us to manage your print, you gain access to our experience, established supplier network and exacting quality control standards.\\n\\nFrom time to time, our clients choose to manage print themselves. In these situations, we will include a file output fee to cover the cost of supplying the file, and time taken to liaise with the printer will be charged as project management.\\n\\n##### **Project management**\\n\\nAll projects require project management. This fee covers the non-creative or strategic hours we expect our agency will expend in delivering your project.\\n\\n##### **Publicity**\\n\\nWe may use your name for the purpose of promotional activities involving the works we have carried out for you, unless otherwise specified.\\n\\n##### **Responsibility for errors**\\n\\nWe have in place procedures and systems to ensure each of our finished projects reaches the highest possible standard of quality. However, from time to time, errors can occur. While we will do everything possible to fix the error, you are responsible for checking and approving the finished project and, as such, any costs of repairing the error are your responsibility.\\n\\n##### **Supplying material to us**\\n\\nWe undertake projects in good faith. If the material you supply – such as photography, graphics or text – does not match the expected standard set during our discussions, we reserve the right to charge for the time it will take to improve or alter the material in order to use it.\\n\\nPlease supply all text, graphics and photography in a digital format unless otherwise specified in this estimate or brief.\\n\\n##### **Tenders**\\n\\nFrom time to time, we are engaged to supply services under a preferred supplier or tender arrangement. We reserve the right to withdraw from providing services after or during our appointment if changes to scope or exceptional circumstances make delivery untenable. Any decision will be made in consultation with the client.\\n\\n##### **Warranty of originality**\\n\\nNew Word Order warrants and represents that, to the best of its knowledge, the work assigned hereunder is original and has not been previously published, or that consent to use has been obtained on an unlimited basis; that all work or portions thereof obtained through the undersigned from third parties is original or, if previously published, that consent to use has been obtained on an unlimited basis; that New Word Order has full authority to make this agreement; and that the work prepared by New Word Order does not contain any scandalous, libellous, or unlawful matter. This warranty does not extend to any uses that the client or others may make of our product that may infringe on the rights of others. The client expressly agrees that it will hold New Word Order harmless for all liability caused by the client’s use of our product to extent such use infringes on the rights of others.\\n\\n##### **Writing services**\\n\\nWe have extensive experience in all forms of writing and editing. Based on our experience, we choose not to work with Word files that contain multiple images or tables, as these files easily corrupt during the editing process. We are happy, though, to work with Word files with the images and tables extracted. Redesigning the Word file to include the images and tables at the end of the editing process will incur a separate fee.\\n\\n##### **Your obligation**\\n\\nYou have sole responsibility of ensuring the suitability and availability of any trademark rights, copyrights or other property rights that are intended to vest in the works that we have been commissioned to produce in accordance with your instructions.\\n\\n---\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Digital terms and conditions\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"##### **Overview**\\n\\nUpon project commencement it is expressly understood by New Word Order that the client has agreed to the terms and conditions outlined below.\\n\\n##### **Estimate**\\n\\nThe estimate is valid for a period of 30 days from the date of issue. The estimate has been provided according to an initial client brief. Unless an item has been explicitly listed in this estimate it is not included in the price. Alterations to this brief or specifications will incur further costs. New Word Order reserves the right to alter the estimate should we believe the scope of works falls outside of what was estimated. Please contact the account manager prior to estimate approval should items within the estimate require clarification. All estimates require signed or email approval and order numbers (if an ordering system is in use) prior to commencement of work.\\n\\n##### **Brief / specification / strategy / development planning**\\n\\nAll brief / specification / strategy / development planning documents provided to the client by New Word Order supersede any client brief. The documents are the final brief for the project and will be what New Word Order works from to design and build the project. The client is responsible for ensuring all stakeholders within their organisation and relevant external organisations have read the document/s in full detail. Project design and development will not commence until New Word Order has received sign-off of the documents. Requests not covered within the documents that have been signed off will be treated as alterations to scope and therefore be subject to a costing and timeline review.\\n\\n##### **Timeframes**\\n\\nThe timeline is negotiated at project commencement once the final estimate has been approved. Timelines provided prior to final estimate approval are indicative only and may not form part of the project plan. Deadlines agreed in the timeframe set down at project commencement are subject to change should the client fail to supply requested materials, information and/or access to data, software or other systems according to the agreed schedule. All work will cease and timeframes will be impacted should invoices not be paid within the required period (please see payment notes). New Word Order endeavors to work within timeframes however there are certain factors that are subject to change and are outside our control. As such New Word Order cannot guarantee deadlines will be met.\\n\\n##### **Artwork**\\n\\nArtwork is to be fully approved from all client parties prior to the commencement of further work. Once approved and development commences, artwork alterations will incur further costs. Artwork supplied by the client needs to be to New Word Order specifications. Client must provide a detailed brief including placement and background specifications.\\n\\nOur estimate assumes a standard level of complexity. Upon viewing the artwork, New Word Order reserves the right to put forward an altered estimate should the artwork be not within the budget estimated.\\n\\n##### **Content**\\n\\nWhere this estimate pertains to content entry, time has been allocated for New Word Order to input a set amount of content (as defined by the estimate). Should more time be required, it will be charged at our standard hourly rate. Content cannot be input until the project has been finalised and fully tested by New Word Order. The client timelines should allow content to be uploaded after completion of development and prior to final testing.\\n\\n##### **Supply of material**\\n\\nText, graphics and photography are to be supplied in digital format unless otherwise specified in this estimate. Text is to be fully edited and proofread prior to New Word Order receiving it. All supplied materials must comply with standard copyright requirements. Work will not commence until all supplied materials have been given to New Word Order and they meet the requirements of the New Word Order workflow process. Failure to provide information in a timely manner will result in timelines being pushed out to accommodate.\\n\\n##### **Imagery**\\n\\nUnless otherwise specified in this estimate imagery required for a project that is purchased from a stock library or shot specifically by New Word Order’s professional photographer will be sourced at an additional cost.\\n\\n##### **Corrections, alterations and expenses**\\n\\nExpenses incurred throughout the project including couriers, proofs, and materials are invoiced in addition to the estimated amount. As much as possible we try to accommodate client input and alterations within our estimates. However feedback, corrections and alterations to the brief over and above those estimated will be charged as incurred. The client can reduce the amount of corrections by supplying approved sourced material and instructions prior to New Word Order commencing work.\\n\\n##### **Payment**\\n\\nUnless otherwise specified a deposit of 30% of the total estimate will be paid prior to the commencement of the project. The remaining 70% will be split into milestone based part payments. Each invoice is to be paid within 30 days of the invoice date. In the event of an invoice not being paid within the terms, production will cease on all work for the client. New Word Order reserves the right to invoice projects when our portion of the project has been completed, not once the project has been finalised by the client. In the case of content managed websites this means New Word Order will invoice once we have finalised our portion of the project – not once the website has gone live. New Word Order takes no responsibility for the time it takes for the client to enter content. If the client uses a purchase order number system in order to pay invoices the purchase order number is to be provided upon estimate approval. The project will not commence without a purchase order number. We do not, at any stage, offer payback schemes or loan arrangements. If New Word Order agrees to an advance payment, all work must be completed within that financial year. Your acceptance of this estimate includes full acceptance of the payment terms listed above. Once estimate approval has been provided these payment terms are not negotiable.\\n\\n##### **Project completion**\\n\\nNew Word Order will ensure the project is tested correctly however we do require our clients to fully test and approve their project prior to project completion. Testing is carried out at each stage of development. New Word Order will require proofs to be signed of at each stage of development. Once final approval has been given and the project is finalised, a 14-day period is allocated for final client testing. Once this period ends, alterations/fixes will be charged as incurred.\\n\\n##### **Publicity**\\n\\nNew Word Order may use the client’s name for the purpose of promotional activities involving the works carried out for the client unless otherwise specified.\\n\\n##### **Search engine optimisation**\\n\\nThis estimate does not include SEO (search engine optimisation) unless specified in the estimate.\\n\\n##### **Client’s obligation**\\n\\nThe client acknowledges that it has the sole responsibility of ensuring the suitability and availability of any trademark rights, copyrights or other property rights that are intended to vest in the works which New Word Order has been commissioned to produce in accordance with the client instructions.\\n\\n##### **Warranty of originality**\\n\\nNew Word Order warrants and represents that, to the best of its knowledge, the work assigned hereunder is original and has not been previously published, or that consent to use has been obtained on an unlimited basis; that all work or portions thereof obtained through the undersigned from third parties is original or, if previously published, that consent to use has been obtained on an unlimited basis; that New Word Order has full authority to make this agreement; and that the work prepared by New Word Order does not contain any scandalous, libellous, or unlawful matter. This warranty does not extend to any uses that the client or others may make of New Word Order’s product which may infringe on the rights of others. The client expressly agrees that it will hold New Word Order harmless for all liability caused by the client’s use of New Word Order’s product to extent such use infringes on the rights of others.\\n\\n##### **Limitation of liability**\\n\\nThe client agrees that it shall not hold New Word Order or its agents or employees liable for any incidental or consequential damages which arise from New Word Order failure to perform any aspect of the project in a timely manner, regardless of whether such failure was caused by intentional or negligent acts or omissions of New Word Order or a third party. Furthermore, New Word Order disclaims all implied warranties.\\n\\n##### **Platform and browser compatibility**\\n\\nThe client is responsible to confirm the works produced by New Word Order are to brief and fit for purpose and function on required browsers. As at the time of execution of this estimate New Word Order will test on the following browsers and platforms. New Word Order is not responsible for work to update websites when new browsers are released or does not work on browsers not included in the list provided in the estimate. If Internet Explorer 6, mobile browsers or any browsers not stated in the estimate are required then additional charges will apply unless otherwise stated.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(81170,84909,1,'Nwo email christmas','2021-12-01 00:22:13','2021-12-01 01:33:12','0b7bc6a3-e24b-4ff5-b429-0c97138b4109',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x384_crop_center-center_82_line/nwo-email-christmas.png\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x320_crop_center-center_82_line/nwo-email-christmas.png\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x256_crop_center-center_82_line/nwo-email-christmas.png\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x192_crop_center-center_82_line/nwo-email-christmas.png\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x160_crop_center-center_82_line/nwo-email-christmas.png\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x384_crop_center-center_82_line/nwo-email-christmas.png.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x320_crop_center-center_82_line/nwo-email-christmas.png.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x256_crop_center-center_82_line/nwo-email-christmas.png.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x192_crop_center-center_82_line/nwo-email-christmas.png.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x160_crop_center-center_82_line/nwo-email-christmas.png.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":384,\"1280\":320,\"1024\":256,\"768\":192,\"640\":160},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":2000,\"originalImageHeight\":500,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAEABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAAUG/8QAHRAAAgICAwEAAAAAAAAAAAAAAQIAEQMEEiFj0f/EABUBAQEAAAAAAAAAAAAAAAAAAAAB/8QAFhEBAQEAAAAAAAAAAAAAAAAAAAEx/9oADAMBAAIRAxEAPwC9r6oyYgzZtiz7N9mgUcVCi6AruIkmEf/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e8c8c3\",\"#141314\",\"#52ce98\",\"#737373\",\"#929292\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(81172,84911,1,'Email sigs','2021-12-01 00:24:30','2021-12-01 00:24:30','eaf721d5-a446-4fc4-8765-754cb4f580d4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<figure><img width=\"400\" height=\"113\" src=\"{asset:74279:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/email-sig.gif}\" alt=\"Email signatures\" /></figure>\n<figure><img width=\"400\" height=\"75\" src=\"{asset:84909:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/nwo-email-christmas.png}\" alt=\"\" /></figure>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(81175,84914,1,'Email sigs','2021-12-01 00:43:31','2021-12-01 00:43:31','2aa431ef-324b-46f7-8b96-278b2a670d3f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<figure><img width=\"400\" height=\"113\" src=\"{asset:74279:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/email-sig.gif}\" alt=\"Email signatures\" /></figure>\n<figure><img width=\"400\" height=\"100\" src=\"{asset:84913:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/nwo-email-christmas-1.png}\" alt=\"\" /></figure>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(81176,84915,1,'Email sigs','2021-12-01 00:46:59','2021-12-01 00:46:59','bfe60a42-3461-4258-bc47-01f6ec0779a5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<figure><img width=\"400\" height=\"113\" src=\"{asset:74279:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/email-sig.gif}\" alt=\"Email signatures\" /></figure>\n<figure><img width=\"400\" height=\"100\" src=\"{asset:84913:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/nwo-email-christmas-1.png}\" alt=\"\" /></figure>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(81178,84917,1,'Email sigs','2021-12-01 00:48:39','2021-12-01 00:48:39','c4630ef3-2ac3-479d-85d5-99855fa45d3f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>\n\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"113\" src=\"{asset:74279:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/email-sig.gif}\" alt=\"Email signatures\" /></a></figure>\n<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p><figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"100\" src=\"{asset:84913:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/nwo-email-christmas-1.png}\" alt=\"\" /></a></figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\">\n</a>\n<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>\n<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(81181,84920,1,'Email sigs','2021-12-01 01:35:03','2021-12-01 01:35:03','59012f03-74f0-4a0b-adda-c3a0b84bebb6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"113\" src=\"{asset:74279:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/email-sig.gif}\" alt=\"Email signatures\" /></a></figure>\n<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"100\" src=\"{asset:84913:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/nwo-email-christmas.png}\" alt=\"\" /></a></figure>\n<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>\n<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>\n<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(81183,84922,1,'Email sigs','2021-12-01 01:40:10','2021-12-01 01:40:10','ed7e2b12-afa2-4cb7-bb0d-2449e6fe6fc3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"113\" src=\"{asset:74279:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/email-sig.gif}\" alt=\"New Word Order\" /></a></figure>\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"100\" src=\"{asset:84909:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/nwo-email-christmas.png}\" alt=\"Merry Christmas\" /></a></figure>\n<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>\n<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(81184,84923,1,'Nwo email christmas 21','2021-12-01 01:44:36','2021-12-01 01:44:36','55cac85f-1357-46a9-a9f8-76cffdc2cd00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x384_crop_center-center_82_line/nwo-email-christmas-21.png\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x320_crop_center-center_82_line/nwo-email-christmas-21.png\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x256_crop_center-center_82_line/nwo-email-christmas-21.png\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x192_crop_center-center_82_line/nwo-email-christmas-21.png\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x160_crop_center-center_82_line/nwo-email-christmas-21.png\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x384_crop_center-center_82_line/nwo-email-christmas-21.png.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x320_crop_center-center_82_line/nwo-email-christmas-21.png.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x256_crop_center-center_82_line/nwo-email-christmas-21.png.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x192_crop_center-center_82_line/nwo-email-christmas-21.png.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x160_crop_center-center_82_line/nwo-email-christmas-21.png.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":384,\"1280\":320,\"1024\":256,\"768\":192,\"640\":160},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":2000,\"originalImageHeight\":500,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAEABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAAUG/8QAHRAAAgICAwEAAAAAAAAAAAAAAQIAEQMEEiFj0f/EABUBAQEAAAAAAAAAAAAAAAAAAAAB/8QAFhEBAQEAAAAAAAAAAAAAAAAAAAEx/9oADAMBAAIRAxEAPwC9r6oyYgzZtiz7N9mgUcVCi6AruIkmEf/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e8c8c3\",\"#141314\",\"#52ce98\",\"#737373\",\"#929292\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(81186,84925,1,'Email sigs','2021-12-01 01:45:31','2021-12-01 01:45:31','55745b44-b3b1-4b31-bad4-1d613e616bd3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"113\" src=\"{asset:74279:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/email-sig.gif}\" alt=\"New Word Order\" /></a></figure>\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"100\" src=\"{asset:84923:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/nwo-email-christmas-21.png}\" alt=\"Merry Christmas\" /></a></figure>\n<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(81187,84926,1,'2021-12-03 14:28:57','2021-12-03 04:28:57','2021-12-03 04:28:57','3d35ea9f-6b96-4ff4-8370-4a3146024b35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(83845,87584,1,'Mock up Gif1','2021-12-09 23:53:35','2021-12-09 23:53:35','3459afea-bf4a-436c-9a35-2b92e9b8d171',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":[],\"originalImageWidth\":0,\"originalImageHeight\":0,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":0,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(83853,87592,1,'NWO Recipe web tiles','2021-12-10 00:24:08','2021-12-10 00:24:08','b254ba01-a460-46a2-a36a-fbfa40bef868',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Recipe_web-tiles.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Recipe_web-tiles.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Recipe_web-tiles.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Recipe_web-tiles.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Recipe_web-tiles.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Recipe_web-tiles.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Recipe_web-tiles.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Recipe_web-tiles.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Recipe_web-tiles.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Recipe_web-tiles.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Recipe_web-tiles.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Recipe_web-tiles.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Recipe_web-tiles.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Recipe_web-tiles.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Recipe_web-tiles.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Recipe_web-tiles.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4167,\"originalImageHeight\":2344,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAgQFBv/EACQQAAEDAgQHAAAAAAAAAAAAAAEAAgMEBREhMTMSMoGCkbHB/8QAFQEBAQAAAAAAAAAAAAAAAAAABAP/xAAdEQACAQUBAQAAAAAAAAAAAAAAAQMCBBESMSFB/9oADAMBAAIRAxEAPwDQXJwhgDInYFx0yz8o01euEhdtGq29l4TqSOtomtjEbWgnl4tUfdp5TEuOFrC4Hf8AdpuntXm+ErTjG5NzuP1DZWnh/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e2d5c5\",\"#cf3d27\",\"#eb7a34\",\"#ec9e62\",\"#2e4d27\"],\"lightness\":61,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(83855,87594,1,'NWO Recipe web tiles','2021-12-10 00:24:44','2021-12-10 00:24:44','76a2afbe-874c-4c30-b2ab-86b5196bec49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Recipe_web-tiles_2021-12-10-002443_mffa.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Recipe_web-tiles_2021-12-10-002443_mffa.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Recipe_web-tiles_2021-12-10-002443_mffa.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Recipe_web-tiles_2021-12-10-002443_mffa.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Recipe_web-tiles_2021-12-10-002443_mffa.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Recipe_web-tiles_2021-12-10-002443_mffa.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Recipe_web-tiles_2021-12-10-002443_mffa.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Recipe_web-tiles_2021-12-10-002443_mffa.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Recipe_web-tiles_2021-12-10-002443_mffa.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Recipe_web-tiles_2021-12-10-002443_mffa.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Recipe_web-tiles_2021-12-10-002443_mffa.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Recipe_web-tiles_2021-12-10-002443_mffa.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Recipe_web-tiles_2021-12-10-002443_mffa.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Recipe_web-tiles_2021-12-10-002443_mffa.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Recipe_web-tiles_2021-12-10-002443_mffa.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Recipe_web-tiles_2021-12-10-002443_mffa.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4167,\"originalImageHeight\":2344,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAgQFBv/EACQQAAEDAgQHAAAAAAAAAAAAAAEAAgMEBREhMTMSMoGCkbHB/8QAFQEBAQAAAAAAAAAAAAAAAAAABAP/xAAdEQACAQUBAQAAAAAAAAAAAAAAAQMCBBESMSFB/9oADAMBAAIRAxEAPwDQXJwhgDInYFx0yz8o01euEhdtGq29l4TqSOtomtjEbWgnl4tUfdp5TEuOFrC4Hf8AdpuntXm+ErTjG5NzuP1DZWnh/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e2d5c5\",\"#cf3d27\",\"#eb7a34\",\"#ec9e62\",\"#2e4d27\"],\"lightness\":61,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(83856,87595,1,'NWO Recipe web tiles2','2021-12-10 00:27:26','2021-12-10 00:27:26','2ce44684-caf8-4e86-ab3e-c5b7e4eacbe1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Recipe_web-tiles2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Recipe_web-tiles2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Recipe_web-tiles2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Recipe_web-tiles2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Recipe_web-tiles2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Recipe_web-tiles2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Recipe_web-tiles2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Recipe_web-tiles2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Recipe_web-tiles2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Recipe_web-tiles2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Recipe_web-tiles2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Recipe_web-tiles2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Recipe_web-tiles2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Recipe_web-tiles2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Recipe_web-tiles2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Recipe_web-tiles2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4167,\"originalImageHeight\":2344,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQIE/8QAJBAAAgECAwkAAAAAAAAAAAAAAQMCAAQSUXIFERQhMjVBYbH/xAAWAQEBAQAAAAAAAAAAAAAAAAABAgD/xAAXEQEBAQEAAAAAAAAAAAAAAAAAAQIy/9oADAMBAAIRAxEAPwDA9xUyVu+M4S5xw+CM6FoLH2q28K+QUwbpAnEJH1lWayk9vdJ01OujnkUO3o0H6aqiP//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#40393a\",\"#caaeac\",\"#aeafb4\",\"#9e7b74\",\"#a09aa5\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(83857,87596,1,'NWO Recipe web tiles3','2021-12-10 00:27:54','2021-12-10 00:27:54','4d64845a-3330-4102-ab98-bd80f95ff90e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Recipe_web-tiles3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Recipe_web-tiles3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Recipe_web-tiles3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Recipe_web-tiles3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Recipe_web-tiles3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Recipe_web-tiles3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Recipe_web-tiles3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Recipe_web-tiles3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Recipe_web-tiles3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Recipe_web-tiles3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Recipe_web-tiles3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Recipe_web-tiles3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Recipe_web-tiles3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Recipe_web-tiles3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Recipe_web-tiles3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Recipe_web-tiles3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4167,\"originalImageHeight\":2344,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABAL/xAAkEAACAAQFBQEAAAAAAAAAAAABAgADESEFEjEzcQRBUXKx0f/EABYBAQEBAAAAAAAAAAAAAAAAAAECBP/EABsRAAICAwEAAAAAAAAAAAAAAAABAjEDBCFR/9oADAMBAAIRAxEAPwCZmKPPZmqjIdVz0C96cnS0YHGT6y1L0NLmomIy5ktkuCjBVIyithe3mNGsmn0mVABtD3f6sEaGViDu9Px+xeC2OWj/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#2f372b\",\"#e0cc60\",\"#8999a9\",\"#9db859\",\"#947b3c\"],\"lightness\":45,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(83858,87597,1,'NWO Recipe web tiles4','2021-12-10 00:28:09','2021-12-10 00:28:09','15ddae08-d298-4393-b2b3-0ba04c6f90e0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Recipe_web-tiles4.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Recipe_web-tiles4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Recipe_web-tiles4.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Recipe_web-tiles4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Recipe_web-tiles4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Recipe_web-tiles4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Recipe_web-tiles4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Recipe_web-tiles4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Recipe_web-tiles4.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Recipe_web-tiles4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Recipe_web-tiles4.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Recipe_web-tiles4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Recipe_web-tiles4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Recipe_web-tiles4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Recipe_web-tiles4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Recipe_web-tiles4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4167,\"originalImageHeight\":2344,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQID/8QAIxAAAQMDAwUBAAAAAAAAAAAAAQIDBAAFESE2QRIxcnSywf/EABYBAQEBAAAAAAAAAAAAAAAAAAIAA//EAB4RAAMAAgEFAAAAAAAAAAAAAAABAhEhMQMyQUJx/9oADAMBAAIRAxEAPwBiRFtyG0QlOJQsKSekKwc8VTCnSKqp7YHIt7guJbYEdaCrA75yQdTnnTii8VljjqNLC4Kv+6WvNr9p+Q+hqzuSP7B+Kyjl/SjsZ//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c4c8ce\",\"#2b2725\",\"#82423e\",\"#a3864e\",\"#78879b\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(83860,87599,1,'NWO Recipe web tiles52','2021-12-10 00:32:53','2021-12-10 00:32:53','9df93569-deac-4787-9a83-a1309f158223',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Recipe_web-tiles52.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Recipe_web-tiles52.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Recipe_web-tiles52.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Recipe_web-tiles52.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Recipe_web-tiles52.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Recipe_web-tiles52.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Recipe_web-tiles52.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Recipe_web-tiles52.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Recipe_web-tiles52.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Recipe_web-tiles52.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Recipe_web-tiles52.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Recipe_web-tiles52.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Recipe_web-tiles52.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Recipe_web-tiles52.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Recipe_web-tiles52.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Recipe_web-tiles52.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4167,\"originalImageHeight\":2344,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQEG/8QAJxAAAQMCAQ0AAAAAAAAAAAAAAQIDEQAEBgUSFCExNDVBcnOxstH/xAAWAQEBAQAAAAAAAAAAAAAAAAACAwT/xAAcEQACAgIDAAAAAAAAAAAAAAAAAgEDBBESMjP/2gAMAwEAAhEDEQA/AGNILFk7CiktwAYnVy+VN50oqk5PEQZ7EjbmUrNF203nFlULKZMA7KNT8tlbqWq1DDN1ut32U+xpP1kGP6KXD3Bb7qHipp0k2ZXop//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c5c6b8\",\"#1c1f1e\",\"#c63924\",\"#c07138\",\"#7b7864\"],\"lightness\":46,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(83862,87601,1,'NWO Recipe web tiles5','2021-12-10 00:35:21','2021-12-10 00:35:21','8c969773-baf2-4593-953c-7c6db8e0291a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Recipe_web-tiles5.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Recipe_web-tiles5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Recipe_web-tiles5.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Recipe_web-tiles5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Recipe_web-tiles5.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Recipe_web-tiles5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Recipe_web-tiles5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Recipe_web-tiles5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Recipe_web-tiles5.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Recipe_web-tiles5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Recipe_web-tiles5.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Recipe_web-tiles5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Recipe_web-tiles5.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Recipe_web-tiles5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Recipe_web-tiles5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Recipe_web-tiles5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4167,\"originalImageHeight\":2344,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQID/8QAIxAAAQMDAwUBAAAAAAAAAAAAAQIDBAAFESE2QRIxcnSywf/EABYBAQEBAAAAAAAAAAAAAAAAAAIAA//EAB4RAAMAAgEFAAAAAAAAAAAAAAABAhEhMQMyQUJx/9oADAMBAAIRAxEAPwBiRFtyG0QlOJQsKSekKwc8VTCnSKqp7YHIt7guJbYEdaCrA75yQdTnnTii8VljjqNLC4Kv+6WvNr9p+Q+hqzuSP7B+Kyjl/SjsZ//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c4c8ce\",\"#2b2725\",\"#82423e\",\"#a3864e\",\"#78879b\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(83863,87602,1,'NWO Recipe web tiles52','2021-12-10 00:35:26','2021-12-10 00:35:26','12b818a6-01b6-4b37-9110-3627b2aa7e14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Recipe_web-tiles52_2021-12-10-003525_aywz.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Recipe_web-tiles52_2021-12-10-003525_aywz.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Recipe_web-tiles52_2021-12-10-003525_aywz.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Recipe_web-tiles52_2021-12-10-003525_aywz.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Recipe_web-tiles52_2021-12-10-003525_aywz.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Recipe_web-tiles52_2021-12-10-003525_aywz.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Recipe_web-tiles52_2021-12-10-003525_aywz.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Recipe_web-tiles52_2021-12-10-003525_aywz.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Recipe_web-tiles52_2021-12-10-003525_aywz.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Recipe_web-tiles52_2021-12-10-003525_aywz.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Recipe_web-tiles52_2021-12-10-003525_aywz.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Recipe_web-tiles52_2021-12-10-003525_aywz.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Recipe_web-tiles52_2021-12-10-003525_aywz.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Recipe_web-tiles52_2021-12-10-003525_aywz.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Recipe_web-tiles52_2021-12-10-003525_aywz.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Recipe_web-tiles52_2021-12-10-003525_aywz.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4167,\"originalImageHeight\":2344,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQEG/8QAJxAAAQMCAQ0AAAAAAAAAAAAAAQIDEQAEBgUSFCExNDVBcnOxstH/xAAWAQEBAQAAAAAAAAAAAAAAAAACAwT/xAAcEQACAgIDAAAAAAAAAAAAAAAAAgEDBBESMjP/2gAMAwEAAhEDEQA/AGNILFk7CiktwAYnVy+VN50oqk5PEQZ7EjbmUrNF203nFlULKZMA7KNT8tlbqWq1DDN1ut32U+xpP1kGP6KXD3Bb7qHipp0k2ZXop//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c5c6b8\",\"#1c1f1e\",\"#c63924\",\"#c07138\",\"#7b7864\"],\"lightness\":46,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(83868,87607,1,'Entries','2021-12-10 01:00:26','2021-12-10 01:00:26','e19a24cf-7677-47c4-a720-db7d4642a595',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":[],\"originalImageWidth\":0,\"originalImageHeight\":0,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":0,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(83869,87608,1,'Christmas 2021','2021-12-10 01:01:56','2021-12-10 03:35:22','36933b7d-df06-4a80-9eac-76c63e76b0af',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Necessities for Christmas festivities',NULL,NULL,'Enjoy the second volume of our cookbook full of delicious food and drinks that have brought our family together for years. We hope the recipes here inspire some new additions to your table.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fPMtIiCCpa\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"87584\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6c1yWqJmnt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87592\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Entrées\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Liam’s** Doyle’s garlic prawns\\n**Bruce’s** ceviche\\n**Kimi’s** crispy oven-baked mushroom\\n**Hazel’s** homemade peanut butter dog treats\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QYWbr4RofK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87595\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Mains\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Scott’s** instant legend beef brisket BBQ\\n**Bec’s** pumpkin and macadamia quinoa healthy yum\\n**Kat’s** roast Australian beef with fresh herb dressing\\n**Tim’s** 24-hour brined pork belly roast\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9TyMiznUfs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87596\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Sides\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Andrew\'s** roasted brussels sprouts with crispy pancetta\\n**Kate\'s** peach, pomegranate and goat cheese salad\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TbkBwFYwQK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87601\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Desserts\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Lynn\'s** chocolate carrot cake\\n**Kerry\'s** chocolate spider\\n**Margaret\'s** white Christmas cake\\n**Suz\'s** Nanna Gilbert\'s overnight plum pudding\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DJniqYj8iB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87599\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Drinks\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Jo\'s** start the day as you mean to go on Bloody Mary\\n**Bree\'s** Gingy\'s martini\\n**Ryan\'s** summer citrus ale\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Necessities for Christmas festivities','Enjoy the second volume of our cookbook full of delicious food and drinks that have brought our family together for years. We hope the recipes here inspire some new additions to your table.',NULL,NULL,NULL,'https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/2021-Necessities-for-Christmas-festivities-Vol2.pdf','Get your copy of Necessities for Christmas festivities.','Download now',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(83870,87609,1,'Christmas 2021','2021-12-10 01:01:56','2021-12-10 01:01:56','684d1c27-04bf-47b5-b5c4-c2bece064279',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Enjoy the second volume of our cookbook full of delicious food and drinks that have brought our family together for years. We hope the recipes here inspire some new additions to your table.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"paragraph\",\"content\":[{\"type\":\"text\",\"text\":\"[{\\\"type\\\":\\\"vizyBlock\\\",\\\"attrs\\\":{\\\"id\\\":\\\"vizy-block-lIkOUJewKo\\\",\\\"enabled\\\":true,\\\"collapsed\\\":false,\\\"values\\\":{\\\"type\\\":\\\"type-xgBpfxj8HD\\\",\\\"content\\\":{\\\"fields\\\":{\\\"images\\\":[\\\"87584\\\"]}}}}},{\\\"type\\\":\\\"vizyBlock\\\",\\\"attrs\\\":{\\\"id\\\":\\\"vizy-block-a3pl2uonZ7\\\",\\\"enabled\\\":true,\\\"collapsed\\\":false,\\\"values\\\":{\\\"type\\\":\\\"type-WIIM7FjPXS\\\",\\\"content\\\":{\\\"fields\\\":{\\\"images\\\":[\\\"87594\\\"],\\\"mediaAlignment\\\":\\\"Left\\\",\\\"textBuilder\\\":{\\\"new1\\\":{\\\"type\\\":\\\"heading\\\",\\\"enabled\\\":true,\\\"collapsed\\\":false,\\\"fields\\\":{\\\"headingText\\\":\\\"Entrées\\\",\\\"headingColour\\\":\\\"text-black\\\",\\\"headingSize\\\":\\\"text-5xl\\\"}},\\\"new2\\\":{\\\"type\\\":\\\"text\\\",\\\"enabled\\\":true,\\\"collapsed\\\":false,\\\"fields\\\":{\\\"text\\\":\\\"**Liam’s** Doyle’s garlic prawns\\\\n**Bruce’s** ceviche\\\\n**Kimi’s** crispy oven-baked mushroom\\\\n**Hazel’s** homemade peanut butter dog treats\\\",\\\"textSize\\\":\\\"text-base\\\",\\\"textColour\\\":\\\"text-black\\\"}}}}}}}},{\\\"type\\\":\\\"vizyBlock\\\",\\\"attrs\\\":{\\\"id\\\":\\\"vizy-block-wUqDsayTfq\\\",\\\"enabled\\\":true,\\\"collapsed\\\":false,\\\"values\\\":{\\\"type\\\":\\\"type-WIIM7FjPXS\\\",\\\"content\\\":{\\\"fields\\\":{\\\"images\\\":[\\\"87595\\\"],\\\"mediaAlignment\\\":\\\"Right\\\",\\\"textBuilder\\\":{\\\"new1\\\":{\\\"type\\\":\\\"heading\\\",\\\"enabled\\\":true,\\\"collapsed\\\":false,\\\"fields\\\":{\\\"headingText\\\":\\\"Mains\\\",\\\"headingColour\\\":\\\"text-black\\\",\\\"headingSize\\\":\\\"text-5xl\\\"}},\\\"new2\\\":{\\\"type\\\":\\\"text\\\",\\\"enabled\\\":true,\\\"collapsed\\\":false,\\\"fields\\\":{\\\"text\\\":\\\"**Scott’s** instant legend beef brisket BBQ\\\\n**Bec’s** pumpkin and macadamia quinoa healthy yum\\\\n**Kat’s** roast Australian beef with fresh herb dressing\\\\n**Tim’s** 24-hour brined pork belly roast\\\",\\\"textSize\\\":\\\"text-base\\\",\\\"textColour\\\":\\\"text-black\\\"}}}}}}}},{\\\"type\\\":\\\"vizyBlock\\\",\\\"attrs\\\":{\\\"id\\\":\\\"vizy-block-INLiZ4MNUt\\\",\\\"enabled\\\":true,\\\"collapsed\\\":false,\\\"values\\\":{\\\"type\\\":\\\"type-WIIM7FjPXS\\\",\\\"content\\\":{\\\"fields\\\":{\\\"images\\\":[\\\"87596\\\"],\\\"mediaAlignment\\\":\\\"Left\\\",\\\"textBuilder\\\":{\\\"new1\\\":{\\\"type\\\":\\\"heading\\\",\\\"enabled\\\":true,\\\"collapsed\\\":false,\\\"fields\\\":{\\\"headingText\\\":\\\"Sides\\\",\\\"headingColour\\\":\\\"text-black\\\",\\\"headingSize\\\":\\\"text-5xl\\\"}},\\\"new2\\\":{\\\"type\\\":\\\"text\\\",\\\"enabled\\\":true,\\\"collapsed\\\":false,\\\"fields\\\":{\\\"text\\\":\\\"**Andrew\'s** roasted brussels sprouts with crispy pancetta\\\\n**Kate\'s** peach, pomegranate and goat cheese salad\\\",\\\"textSize\\\":\\\"text-base\\\",\\\"textColour\\\":\\\"text-black\\\"}}}}}}}},{\\\"type\\\":\\\"vizyBlock\\\",\\\"attrs\\\":{\\\"id\\\":\\\"vizy-block-MLVLEtPjaT\\\",\\\"enabled\\\":true,\\\"collapsed\\\":false,\\\"values\\\":{\\\"type\\\":\\\"type-WIIM7FjPXS\\\",\\\"content\\\":{\\\"fields\\\":{\\\"images\\\":[\\\"87601\\\"],\\\"mediaAlignment\\\":\\\"Right\\\",\\\"textBuilder\\\":{\\\"new1\\\":{\\\"type\\\":\\\"heading\\\",\\\"enabled\\\":true,\\\"collapsed\\\":false,\\\"fields\\\":{\\\"headingText\\\":\\\"Desserts\\\",\\\"headingColour\\\":\\\"text-black\\\",\\\"headingSize\\\":\\\"text-5xl\\\"}},\\\"new2\\\":{\\\"type\\\":\\\"text\\\",\\\"enabled\\\":true,\\\"collapsed\\\":false,\\\"fields\\\":{\\\"text\\\":\\\"**Lynn\'s** chocolate carrot cake\\\\n**Kerry\'s** chocolate spider\\\\n**Margaret\'s** white Christmas cake\\\\n**Suz\'s** Nanna Gilbert\'s overnight plum pudding\\\",\\\"textSize\\\":\\\"text-base\\\",\\\"textColour\\\":\\\"text-black\\\"}}}}}}}},{\\\"type\\\":\\\"vizyBlock\\\",\\\"attrs\\\":{\\\"id\\\":\\\"vizy-block-nmkGPBrKbj\\\",\\\"enabled\\\":true,\\\"collapsed\\\":false,\\\"values\\\":{\\\"type\\\":\\\"type-WIIM7FjPXS\\\",\\\"content\\\":{\\\"fields\\\":{\\\"images\\\":[\\\"87602\\\"],\\\"mediaAlignment\\\":\\\"Left\\\",\\\"textBuilder\\\":{\\\"new1\\\":{\\\"type\\\":\\\"heading\\\",\\\"enabled\\\":true,\\\"collapsed\\\":false,\\\"fields\\\":{\\\"headingText\\\":\\\"Drinks\\\",\\\"headingColour\\\":\\\"text-black\\\",\\\"headingSize\\\":\\\"text-5xl\\\"}},\\\"new2\\\":{\\\"type\\\":\\\"text\\\",\\\"enabled\\\":true,\\\"collapsed\\\":false,\\\"fields\\\":{\\\"text\\\":\\\"**Jo\'s** start the day as you mean to go on Bloody Mary\\\\n**Bree\'s** Gingy\'s martini\\\\n**Ryan\'s** summer citrus ale\\\",\\\"textSize\\\":\\\"text-base\\\",\\\"textColour\\\":\\\"text-black\\\"}}}}}}}}]\"}]}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(83872,87611,1,'Christmas 2021','2021-12-10 01:06:29','2021-12-10 01:06:29','eb72d6f5-3060-4d96-b7d1-a4d73f87e0a9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Enjoy the second volume of our cookbook full of delicious food and drinks that have brought our family together for years. We hope the recipes here inspire some new additions to your table.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fPMtIiCCpa\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"87584\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6c1yWqJmnt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87592\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Entrées\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Liam’s** Doyle’s garlic prawns\\n**Bruce’s** ceviche\\n**Kimi’s** crispy oven-baked mushroom\\n**Hazel’s** homemade peanut butter dog treats\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QYWbr4RofK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87595\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Mains\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Scott’s** instant legend beef brisket BBQ\\n**Bec’s** pumpkin and macadamia quinoa healthy yum\\n**Kat’s** roast Australian beef with fresh herb dressing\\n**Tim’s** 24-hour brined pork belly roast\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9TyMiznUfs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87596\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Sides\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Andrew\'s** roasted brussels sprouts with crispy pancetta\\n**Kate\'s** peach, pomegranate and goat cheese salad\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TbkBwFYwQK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87601\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Desserts\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Lynn\'s** chocolate carrot cake\\n**Kerry\'s** chocolate spider\\n**Margaret\'s** white Christmas cake\\n**Suz\'s** Nanna Gilbert\'s overnight plum pudding\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DJniqYj8iB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87599\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Drinks\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Jo\'s** start the day as you mean to go on Bloody Mary\\n**Bree\'s** Gingy\'s martini\\n**Ryan\'s** summer citrus ale\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(83874,87613,1,'Christmas 2021','2021-12-10 01:13:40','2021-12-10 01:13:40','86d0ffda-3f2c-442c-af29-e0f50d644581',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Necessities for Christmas festivities',NULL,NULL,'Enjoy the second volume of our cookbook full of delicious food and drinks that have brought our family together for years. We hope the recipes here inspire some new additions to your table.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fPMtIiCCpa\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"87584\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6c1yWqJmnt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87592\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Entrées\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Liam’s** Doyle’s garlic prawns\\n**Bruce’s** ceviche\\n**Kimi’s** crispy oven-baked mushroom\\n**Hazel’s** homemade peanut butter dog treats\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QYWbr4RofK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87595\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Mains\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Scott’s** instant legend beef brisket BBQ\\n**Bec’s** pumpkin and macadamia quinoa healthy yum\\n**Kat’s** roast Australian beef with fresh herb dressing\\n**Tim’s** 24-hour brined pork belly roast\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9TyMiznUfs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87596\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Sides\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Andrew\'s** roasted brussels sprouts with crispy pancetta\\n**Kate\'s** peach, pomegranate and goat cheese salad\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TbkBwFYwQK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87601\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Desserts\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Lynn\'s** chocolate carrot cake\\n**Kerry\'s** chocolate spider\\n**Margaret\'s** white Christmas cake\\n**Suz\'s** Nanna Gilbert\'s overnight plum pudding\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DJniqYj8iB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87599\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Drinks\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Jo\'s** start the day as you mean to go on Bloody Mary\\n**Bree\'s** Gingy\'s martini\\n**Ryan\'s** summer citrus ale\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Necessities for Christmas festivities','Enjoy the second volume of our cookbook full of delicious food and drinks that have brought our family together for years. We hope the recipes here inspire some new additions to your table.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(83876,87615,1,'Christmas 2021','2021-12-10 01:32:12','2021-12-10 01:32:12','298817e4-5402-4fb9-80ae-5ecec123a1bf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Necessities for Christmas festivities',NULL,NULL,'Enjoy the second volume of our cookbook full of delicious food and drinks that have brought our family together for years. We hope the recipes here inspire some new additions to your table.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fPMtIiCCpa\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"87584\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6c1yWqJmnt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87592\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Entrées\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Liam’s** Doyle’s garlic prawns\\n**Bruce’s** ceviche\\n**Kimi’s** crispy oven-baked mushroom\\n**Hazel’s** homemade peanut butter dog treats\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QYWbr4RofK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87595\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Mains\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Scott’s** instant legend beef brisket BBQ\\n**Bec’s** pumpkin and macadamia quinoa healthy yum\\n**Kat’s** roast Australian beef with fresh herb dressing\\n**Tim’s** 24-hour brined pork belly roast\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9TyMiznUfs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87596\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Sides\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Andrew\'s** roasted brussels sprouts with crispy pancetta\\n**Kate\'s** peach, pomegranate and goat cheese salad\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TbkBwFYwQK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87601\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Desserts\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Lynn\'s** chocolate carrot cake\\n**Kerry\'s** chocolate spider\\n**Margaret\'s** white Christmas cake\\n**Suz\'s** Nanna Gilbert\'s overnight plum pudding\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DJniqYj8iB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87599\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Drinks\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Jo\'s** start the day as you mean to go on Bloody Mary\\n**Bree\'s** Gingy\'s martini\\n**Ryan\'s** summer citrus ale\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Necessities for Christmas festivities','Enjoy the second volume of our cookbook full of delicious food and drinks that have brought our family together for years. We hope the recipes here inspire some new additions to your table.',NULL,NULL,NULL,'https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/NWO-Recipe_web-tiles52_2021-12-10-003525_aywz.jpg','Curabitur blandit tempus porttitor. Aenean lacinia bibendum nulla sed consectetur. Donec sed odio dui. Sed posuere consectetur est at lobortis. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor.','Download now','Here is a heading',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(83878,87617,1,'Christmas 2021','2021-12-10 01:33:17','2021-12-10 01:33:17','de4b391a-65c6-4619-ae92-e0cba3616376',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Necessities for Christmas festivities',NULL,NULL,'Enjoy the second volume of our cookbook full of delicious food and drinks that have brought our family together for years. We hope the recipes here inspire some new additions to your table.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fPMtIiCCpa\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"87584\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6c1yWqJmnt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87592\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Entrées\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Liam’s** Doyle’s garlic prawns\\n**Bruce’s** ceviche\\n**Kimi’s** crispy oven-baked mushroom\\n**Hazel’s** homemade peanut butter dog treats\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QYWbr4RofK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87595\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Mains\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Scott’s** instant legend beef brisket BBQ\\n**Bec’s** pumpkin and macadamia quinoa healthy yum\\n**Kat’s** roast Australian beef with fresh herb dressing\\n**Tim’s** 24-hour brined pork belly roast\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9TyMiznUfs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87596\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Sides\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Andrew\'s** roasted brussels sprouts with crispy pancetta\\n**Kate\'s** peach, pomegranate and goat cheese salad\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TbkBwFYwQK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87601\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Desserts\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Lynn\'s** chocolate carrot cake\\n**Kerry\'s** chocolate spider\\n**Margaret\'s** white Christmas cake\\n**Suz\'s** Nanna Gilbert\'s overnight plum pudding\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DJniqYj8iB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87599\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Drinks\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Jo\'s** start the day as you mean to go on Bloody Mary\\n**Bree\'s** Gingy\'s martini\\n**Ryan\'s** summer citrus ale\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Necessities for Christmas festivities','Enjoy the second volume of our cookbook full of delicious food and drinks that have brought our family together for years. We hope the recipes here inspire some new additions to your table.',NULL,NULL,NULL,'https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/NWO-Recipe_web-tiles52_2021-12-10-003525_aywz.jpg','Get your copy of Necessities for Christmas festivities.','Download now','Here is a heading',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(83880,87619,1,'Christmas 2021','2021-12-10 01:49:51','2021-12-10 01:49:51','a2464e73-c6c9-4a47-9dcd-f312aef3c49e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Necessities for Christmas festivities',NULL,NULL,'Enjoy the second volume of our cookbook full of delicious food and drinks that have brought our family together for years. We hope the recipes here inspire some new additions to your table.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fPMtIiCCpa\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"87584\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6c1yWqJmnt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87592\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Entrées\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Liam’s** Doyle’s garlic prawns\\n**Bruce’s** ceviche\\n**Kimi’s** crispy oven-baked mushroom\\n**Hazel’s** homemade peanut butter dog treats\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QYWbr4RofK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87595\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Mains\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Scott’s** instant legend beef brisket BBQ\\n**Bec’s** pumpkin and macadamia quinoa healthy yum\\n**Kat’s** roast Australian beef with fresh herb dressing\\n**Tim’s** 24-hour brined pork belly roast\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9TyMiznUfs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87596\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Sides\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Andrew\'s** roasted brussels sprouts with crispy pancetta\\n**Kate\'s** peach, pomegranate and goat cheese salad\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TbkBwFYwQK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87601\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Desserts\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Lynn\'s** chocolate carrot cake\\n**Kerry\'s** chocolate spider\\n**Margaret\'s** white Christmas cake\\n**Suz\'s** Nanna Gilbert\'s overnight plum pudding\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DJniqYj8iB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87599\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Drinks\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Jo\'s** start the day as you mean to go on Bloody Mary\\n**Bree\'s** Gingy\'s martini\\n**Ryan\'s** summer citrus ale\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Necessities for Christmas festivities','Enjoy the second volume of our cookbook full of delicious food and drinks that have brought our family together for years. We hope the recipes here inspire some new additions to your table.',NULL,NULL,NULL,'https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/NWO-Recipe_web-tiles52_2021-12-10-003525_aywz.jpg','Get your copy of Necessities for Christmas festivities.','Download now',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(83883,87622,1,'2021 Necessities for Christmas festivities Vol2','2021-12-10 01:59:14','2022-06-23 03:27:24','562b4b84-0ed6-41ba-9875-0b553646b5f7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":[],\"originalImageWidth\":0,\"originalImageHeight\":0,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":0,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(83884,87623,1,'Christmas 2021','2021-12-10 01:59:34','2021-12-10 01:59:34','33ceea3c-3a5f-465a-891d-6798cee1cc0a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Necessities for Christmas festivities',NULL,NULL,'Enjoy the second volume of our cookbook full of delicious food and drinks that have brought our family together for years. We hope the recipes here inspire some new additions to your table.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fPMtIiCCpa\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"87584\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6c1yWqJmnt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87592\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Entrées\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Liam’s** Doyle’s garlic prawns\\n**Bruce’s** ceviche\\n**Kimi’s** crispy oven-baked mushroom\\n**Hazel’s** homemade peanut butter dog treats\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QYWbr4RofK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87595\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Mains\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Scott’s** instant legend beef brisket BBQ\\n**Bec’s** pumpkin and macadamia quinoa healthy yum\\n**Kat’s** roast Australian beef with fresh herb dressing\\n**Tim’s** 24-hour brined pork belly roast\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9TyMiznUfs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87596\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Sides\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Andrew\'s** roasted brussels sprouts with crispy pancetta\\n**Kate\'s** peach, pomegranate and goat cheese salad\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TbkBwFYwQK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87601\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Desserts\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Lynn\'s** chocolate carrot cake\\n**Kerry\'s** chocolate spider\\n**Margaret\'s** white Christmas cake\\n**Suz\'s** Nanna Gilbert\'s overnight plum pudding\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DJniqYj8iB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87599\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Drinks\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Jo\'s** start the day as you mean to go on Bloody Mary\\n**Bree\'s** Gingy\'s martini\\n**Ryan\'s** summer citrus ale\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Necessities for Christmas festivities','Enjoy the second volume of our cookbook full of delicious food and drinks that have brought our family together for years. We hope the recipes here inspire some new additions to your table.',NULL,NULL,NULL,'https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/2021-Necessities-for-Christmas-festivities-Vol2.pdf','Get your copy of Necessities for Christmas festivities.','Download now',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(83886,87625,1,'Christmas 2021','2021-12-10 03:20:24','2021-12-10 03:20:24','db1e1a18-884a-4b3d-b08c-3820545914f2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Necessities for Christmas festivities',NULL,NULL,'Enjoy the second volume of our cookbook full of delicious food and drinks that have brought our family together for years. We hope the recipes here inspire some new additions to your table.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fPMtIiCCpa\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"87584\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6c1yWqJmnt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87592\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Entrées\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Liam’s** Doyle’s garlic prawns\\n**Bruce’s** ceviche\\n**Kimi’s** crispy oven-baked mushroom\\n**Hazel’s** homemade peanut butter dog treats\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QYWbr4RofK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87595\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Mains\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Scott’s** instant legend beef brisket BBQ\\n**Bec’s** pumpkin and macadamia quinoa healthy yum\\n**Kat’s** roast Australian beef with fresh herb dressing\\n**Tim’s** 24-hour brined pork belly roast\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9TyMiznUfs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87596\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Sides\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Andrew\'s** roasted brussels sprouts with crispy pancetta\\n**Kate\'s** peach, pomegranate and goat cheese salad\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TbkBwFYwQK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87601\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Desserts\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Lynn\'s** chocolate carrot cake\\n**Kerry\'s** chocolate spider\\n**Margaret\'s** white Christmas cake\\n**Suz\'s** Nanna Gilbert\'s overnight plum pudding\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DJniqYj8iB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87599\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Drinks\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Jo\'s** start the day as you mean to go on Bloody Mary\\n**Bree\'s** Gingy\'s martini\\n**Ryan\'s** summer citrus ale\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Necessities for Christmas festivities','Enjoy the second volume of our cookbook full of delicious food and drinks that have brought our family together for years. We hope the recipes here inspire some new additions to your table.',NULL,NULL,NULL,'https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/2021-Necessities-for-Christmas-festivities-Vol2.pdf','Get your copy of Necessities for Christmas festivities.','Download now',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(83888,87627,1,'Christmas 2021','2021-12-10 03:27:21','2021-12-10 03:27:21','83deb0f8-6c92-4ef7-a023-e28017cf1220',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Necessities for Christmas festivities',NULL,NULL,'Enjoy the second volume of our cookbook full of delicious food and drinks that have brought our family together for years. We hope the recipes here inspire some new additions to your table.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fPMtIiCCpa\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"87584\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6c1yWqJmnt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87592\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Entrées\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Liam’s** Doyle’s garlic prawns\\n**Bruce’s** ceviche\\n**Kimi’s** crispy oven-baked mushroom\\n**Hazel’s** homemade peanut butter dog treats\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QYWbr4RofK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87595\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Mains\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Scott’s** instant legend beef brisket BBQ\\n**Bec’s** pumpkin and macadamia quinoa healthy yum\\n**Kat’s** roast Australian beef with fresh herb dressing\\n**Tim’s** 24-hour brined pork belly roast\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9TyMiznUfs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87596\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Sides\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Andrew\'s** roasted brussels sprouts with crispy pancetta\\n**Kate\'s** peach, pomegranate and goat cheese salad\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TbkBwFYwQK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87601\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Desserts\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Lynn\'s** chocolate carrot cake\\n**Kerry\'s** chocolate spider\\n**Margaret\'s** white Christmas cake\\n**Suz\'s** Nanna Gilbert\'s overnight plum pudding\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DJniqYj8iB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87599\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Drinks\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Jo\'s** start the day as you mean to go on Bloody Mary\\n**Bree\'s** Gingy\'s martini\\n**Ryan\'s** summer citrus ale\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Necessities for Christmas festivities','Enjoy the second volume of our cookbook full of delicious food and drinks that have brought our family together for years. We hope the recipes here inspire some new additions to your table.',NULL,NULL,NULL,'https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/2021-Necessities-for-Christmas-festivities-Vol2.pdf','Get your copy of Necessities for Christmas festivities.','Download now',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(83890,87629,1,'Christmas 2021','2021-12-10 03:32:43','2021-12-10 03:32:43','c708b839-f186-48cc-8696-f0eb0816d410',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Necessities for Christmas festivities',NULL,NULL,'Enjoy the second volume of our cookbook full of delicious food and drinks that have brought our family together for years. We hope the recipes here inspire some new additions to your table.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fPMtIiCCpa\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"87584\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6c1yWqJmnt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87592\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Entrées\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Liam’s** Doyle’s garlic prawns\\n**Bruce’s** ceviche\\n**Kimi’s** crispy oven-baked mushroom\\n**Hazel’s** homemade peanut butter dog treats\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QYWbr4RofK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87595\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Mains\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Scott’s** instant legend beef brisket BBQ\\n**Bec’s** pumpkin and macadamia quinoa healthy yum\\n**Kat’s** roast Australian beef with fresh herb dressing\\n**Tim’s** 24-hour brined pork belly roast\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9TyMiznUfs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87596\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Sides\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Andrew\'s** roasted brussels sprouts with crispy pancetta\\n**Kate\'s** peach, pomegranate and goat cheese salad\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TbkBwFYwQK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87601\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Desserts\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Lynn\'s** chocolate carrot cake\\n**Kerry\'s** chocolate spider\\n**Margaret\'s** white Christmas cake\\n**Suz\'s** Nanna Gilbert\'s overnight plum pudding\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DJniqYj8iB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87599\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Drinks\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Jo\'s** start the day as you mean to go on Bloody Mary\\n**Bree\'s** Gingy\'s martini\\n**Ryan\'s** summer citrus ale\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Necessities for Christmas festivities','Enjoy the second volume of our cookbook full of delicious food and drinks that have brought our family together for years. We hope the recipes here inspire some new additions to your table.',NULL,NULL,NULL,'https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/2021-Necessities-for-Christmas-festivities-Vol2.pdf','Get your copy of Necessities for Christmas festivities.','Download now',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(83893,87632,1,'Christmas 2021','2021-12-10 03:35:22','2021-12-10 03:35:22','783c629b-7d8b-48f4-bd4c-a187243b70e3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Necessities for Christmas festivities',NULL,NULL,'Enjoy the second volume of our cookbook full of delicious food and drinks that have brought our family together for years. We hope the recipes here inspire some new additions to your table.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fPMtIiCCpa\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"87584\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6c1yWqJmnt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87592\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Entrées\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Liam’s** Doyle’s garlic prawns\\n**Bruce’s** ceviche\\n**Kimi’s** crispy oven-baked mushroom\\n**Hazel’s** homemade peanut butter dog treats\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QYWbr4RofK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87595\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Mains\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Scott’s** instant legend beef brisket BBQ\\n**Bec’s** pumpkin and macadamia quinoa healthy yum\\n**Kat’s** roast Australian beef with fresh herb dressing\\n**Tim’s** 24-hour brined pork belly roast\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9TyMiznUfs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87596\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Sides\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Andrew\'s** roasted brussels sprouts with crispy pancetta\\n**Kate\'s** peach, pomegranate and goat cheese salad\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TbkBwFYwQK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87601\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Desserts\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Lynn\'s** chocolate carrot cake\\n**Kerry\'s** chocolate spider\\n**Margaret\'s** white Christmas cake\\n**Suz\'s** Nanna Gilbert\'s overnight plum pudding\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DJniqYj8iB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87599\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Drinks\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Jo\'s** start the day as you mean to go on Bloody Mary\\n**Bree\'s** Gingy\'s martini\\n**Ryan\'s** summer citrus ale\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Necessities for Christmas festivities','Enjoy the second volume of our cookbook full of delicious food and drinks that have brought our family together for years. We hope the recipes here inspire some new additions to your table.',NULL,NULL,NULL,'https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/2021-Necessities-for-Christmas-festivities-Vol2.pdf','Get your copy of Necessities for Christmas festivities.','Download now',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(83894,87633,1,'2021-12-13 07:21:50','2021-12-12 21:21:50','2021-12-12 21:21:50','8f7aad15-2f4c-42c8-8bf0-29529147b4ea',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90462,94201,1,'New Word Order','2021-12-21 04:45:32','2021-12-21 06:38:04','b3039b01-6d7d-475a-b0af-9fcd396c9660',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'We\'ve stepped up',NULL,NULL,'We\'re big believers in making our outsides match our insides.\n\nOur clients always hear us telling them that this is the essence of brand integrity (because it is). And like all people who are striving to go from good to great, we\'ve stepped up.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1yQgVqAUBG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Brand\",\"plainText\":\"It\'s the secret to staying true, relevant and compelling.\\nIt\'s how we look, speak, sound, behave and operate.\\nIt\'s in the obvious and the subliminal.\\nIt\'s a beautiful mix of strategy, creativity and understanding.\\nThere\'s an art and science behind capturing it, expressing it and managing it.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8rg678DBxR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94202\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ajkeoG129p\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our new brand\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As part of our regular brand review process, we decided our old identity didn\'t have the strength of character our current brand embodies. A lot has changed in the past few years: our market shifted, and we shifted with it.\\n\\n**We used our proven brand methodology on ourselves.**\\n\\nOur unique methodology is about knowing our context, opinions, pain points and applying insights. Adding to this our business strategy—to which our brand strategy must align—and we\'re dressed and messaged for success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand audit\",\"text\":\"We laid out where our brand is currently and the story that led us here.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Stakeholder consultation\",\"text\":\"We spoke to our stakeholders to understand how they view and interact with our brand, and their perspective on what needed to change.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand comparison analysis\",\"text\":\"We learned where our business sits among others in Brisbane, around Australia and the world.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand story\",\"text\":\"We documented  the story of our brand as a central narrative so anyone within or connected to our business could access one source of truth.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"Visual brand development\",\"text\":\"We created a new logo and other branding elements that tell our story in multiple layers.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand voice and messaging\",\"text\":\"We defined and documented our new way of writing, speaking and the key messages we want to communicate.\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There is power in gathering insights, applying a proven methodology of insights development and planning a strategic way forward. \\n\\nOur brand informs and impacts every aspect of New Word Order, and gives us a clear direction that challenges the usual way of doing things and ensures anyone who comes into contact with our business knows what we offer and how we will solve their problems.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QGxZjexaIq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This process is what we do for our clients every day, what we do for ourselves, and we\'d like to do this for you, too. Start the conversation with us and discover how a fresh brand will breathe new life into your business.\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Talk to us\",\"buttonImage\":[],\"internalLink\":[\"21297\"],\"externalLink\":null,\"buttonStyle\":\"outline\",\"buttonColour\":\"white\"}}},\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gYBgPmudbN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94203\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-diijVzsy4h\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Type\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our new typeface is bolder, stronger, and positively dripping with character. Check out the Ns, Ws and Rs in our font—Neue Machina.\\n\\nThe monospace and geometric type features with deep ink traps in the heavier weights.\\n\\nWe love it because of its versatility: clean and minimalist in the lighter weights, but the heavier weights are bold in more ways than one. \\n\\n- Deep ink traps in heavier weights\\n- Overshot terminals\\n- Rounded corners\\n- Monospace-like features\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MLS2xXnQoC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Words\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We\'re also intent on re-establishing our roots in the power of the written word. A subtle way we\'re doing this is using words over icons. As an example, see how we used the word \'menu\' instead of a hamburger on this website.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-K3KNRmvlzY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Colours\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our brand colours are mostly black and white with pops of red, green and blue. The colours are the basics in the digital environment (RGB). This is our primary palette—we bring strategy and creativity to form something entirely new and entirely what our clients need to solve their problems and unlock their potential.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VDhaVH930A\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Experiences\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The main reason we\'re keeping our brand so pared back is because we want our creative portfolio to sing. Are you loving the immersive full-screen hover state feature as much as we are? We wanted our brand to allow for such experiences as this.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90463,94202,1,'NW Orebrand v03 GIF 16x9 1080','2021-12-21 05:50:22','2021-12-21 05:50:22','608c4afd-1acd-4767-8b96-2db36c5894b7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":[],\"originalImageWidth\":0,\"originalImageHeight\":0,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":0,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90464,94203,1,'21 NWO type 1','2021-12-21 06:37:48','2021-12-21 06:37:48','5bd17812-064c-4d49-bda2-32ca83745f0b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x737_crop_center-center_82_line/21_NWO_type-1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1474_crop_center-center_82_line/21_NWO_type-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x614_crop_center-center_82_line/21_NWO_type-1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1228_crop_center-center_82_line/21_NWO_type-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x491_crop_center-center_82_line/21_NWO_type-1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x983_crop_center-center_82_line/21_NWO_type-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x368_crop_center-center_82_line/21_NWO_type-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x307_crop_center-center_82_line/21_NWO_type-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x737_crop_center-center_82_line/21_NWO_type-1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1474_crop_center-center_82_line/21_NWO_type-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x614_crop_center-center_82_line/21_NWO_type-1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1228_crop_center-center_82_line/21_NWO_type-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x491_crop_center-center_82_line/21_NWO_type-1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x983_crop_center-center_82_line/21_NWO_type-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x368_crop_center-center_82_line/21_NWO_type-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x307_crop_center-center_82_line/21_NWO_type-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":737,\"3072\":1474,\"1280\":614,\"2560\":1228,\"1024\":491,\"2048\":983,\"768\":368,\"640\":307},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":2500,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAHABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAQb/xAAhEAABAgYCAwAAAAAAAAAAAAABAwQAAgURITESFFFxgf/EABQBAQAAAAAAAAAAAAAAAAAAAAD/xAAUEQEAAAAAAAAAAAAAAAAAAAAA/9oADAMBAAIRAxEAPwCKpgaF0O7yKfga+2zANTTbpuSWs4KU2gAce7wH/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#040404\",\"#dcd3d3\",\"#5c4a48\",\"#7c7c7c\",\"#747174\"],\"lightness\":39,\"placeholderWidth\":1536,\"placeholderHeight\":737,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90465,94204,1,'2021-12-21 21:28:31','2021-12-21 11:28:31','2021-12-21 11:28:31','ab8ca425-af17-470c-804f-aa2923489e22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90467,94206,1,'About us','2022-01-06 01:18:14','2022-01-06 01:18:14','02467bf6-9b6a-4ce1-82ec-8db025936ba3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17881\",\"17848\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\",\"17921\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | About us','For 20 years we have helped businesses, organisations and governments to solve problems, unlock potential and connect with people to inspire action.','strategy, brand, campaign, behaviour change, engagement, digital, video, content',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90468,94207,1,'New Word Order','2022-01-06 06:52:11','2022-01-06 06:52:11','7eb0225a-cd08-4ab7-9c0b-e07657e98d85',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'We\'ve stepped up',NULL,NULL,'We\'re big believers in making our outsides match our insides.\n\nOur clients always hear us telling them that this is the essence of brand integrity (because it is). And like all people who are striving to go from good to great, we\'ve stepped up.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1yQgVqAUBG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Brand\",\"plainText\":\"It\'s the secret to staying true, relevant and compelling.\\n\\nIt\'s how we look, speak, sound, behave and operate.\\n\\nIt\'s in the obvious and the subliminal.\\n\\nIt\'s a beautiful mix of strategy, creativity and understanding.\\n\\nThere\'s an art and science behind capturing it, expressing it and managing it.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ajkeoG129p\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our new brand\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As part of our regular brand review process, we decided our old identity didn\'t have the strength of character our current brand embodies. A lot has changed in the past few years: our market shifted, and we shifted with it.\\n\\n**We used our proven brand methodology on ourselves.**\\n\\nOur unique methodology is about knowing our context, opinions, pain points and applying insights. Adding to this our business strategy—to which our brand strategy must align—and we\'re dressed and messaged for success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand audit\",\"text\":\"We laid out where our brand is currently and the story that led us here.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Stakeholder consultation\",\"text\":\"We spoke to our stakeholders to understand how they view and interact with our brand, and their perspective on what needed to change.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand comparison analysis\",\"text\":\"We learned where our business sits among others in Brisbane, around Australia and the world.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand story\",\"text\":\"We documented  the story of our brand as a central narrative so anyone within or connected to our business could access one source of truth.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"Visual brand development\",\"text\":\"We created a new logo and other branding elements that tell our story in multiple layers.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand voice and messaging\",\"text\":\"We defined and documented our new way of writing, speaking and the key messages we want to communicate.\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There is power in gathering insights, applying a proven methodology of insights development and planning a strategic way forward. \\n\\nOur brand informs and impacts every aspect of New Word Order, and gives us a clear direction that challenges the usual way of doing things and ensures anyone who comes into contact with our business knows what we offer and how we will solve their problems.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QGxZjexaIq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This process is what we do for our clients every day, what we do for ourselves, and we\'d like to do this for you, too. Start the conversation with us and discover how a fresh brand will breathe new life into your business.\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Talk to us\",\"buttonImage\":[],\"internalLink\":[\"21297\"],\"externalLink\":null,\"buttonStyle\":\"outline\",\"buttonColour\":\"white\"}}},\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-diijVzsy4h\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Type\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our new typeface is bolder, stronger, and positively dripping with character. Check out the Ns, Ws and Rs in our font—Neue Machina.\\n\\nThe monospace and geometric type features with deep ink traps in the heavier weights.\\n\\nWe love it because of its versatility: clean and minimalist in the lighter weights, but the heavier weights are bold in more ways than one. \\n\\n- Deep ink traps in heavier weights\\n- Overshot terminals\\n- Rounded corners\\n- Monospace-like features\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MLS2xXnQoC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Words\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We\'re also intent on re-establishing our roots in the power of the written word. A subtle way we\'re doing this is using words over icons. As an example, see how we used the word \'menu\' instead of a hamburger.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-K3KNRmvlzY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Colours\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our brand colours are mostly black and white with pops of red, green and blue. The colours are the basics in the digital environment (RGB). This is our primary palette—we bring strategy and creativity to form something entirely new and entirely what our clients need to solve their problems and unlock their potential.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VDhaVH930A\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Experiences\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The main reason we\'re keeping our brand so pared back is because we want our creative portfolio to sing. Are you loving the immersive full-screen hover state feature as much as we are? We wanted our brand to allow for such experiences as this.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90470,94209,1,'NWO Business Card mockup','2022-01-06 23:35:22','2022-01-06 23:35:22','6e4049ff-a270-4b01-a4fd-3305dbba4913',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/NWO-Business-Card-mockup.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/NWO-Business-Card-mockup.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/NWO-Business-Card-mockup.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/NWO-Business-Card-mockup.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/NWO-Business-Card-mockup.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/NWO-Business-Card-mockup.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/NWO-Business-Card-mockup.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/NWO-Business-Card-mockup.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/NWO-Business-Card-mockup.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/NWO-Business-Card-mockup.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/NWO-Business-Card-mockup.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/NWO-Business-Card-mockup.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/NWO-Business-Card-mockup.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/NWO-Business-Card-mockup.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/NWO-Business-Card-mockup.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/NWO-Business-Card-mockup.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"3072\":2048,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2667,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAwEF/8QAIxAAAgEEAQMFAAAAAAAAAAAAAQIDAAQRIQUSIjEyUXGBwf/EABcBAAMBAAAAAAAAAAAAAAAAAAACAwH/xAAdEQACAgIDAQAAAAAAAAAAAAAAAQIRAzITITFR/9oADAMBAAIRAxEAPwAmhbi5FMrNG8x9K7MY99UU5SsjKMrXxGpPBZpaidoAwTJBYdz5+f2ttpUUk0u2FeANybFhk5bz9UmTRipvlii3xL2UXWertzve6HqGf0//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#bec2be\",\"#2f333b\",\"#328776\",\"#6b6741\",\"#7e6c6a\"],\"lightness\":45,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90471,94210,1,'Nwo brand 1','2022-01-07 01:37:54','2022-01-07 01:37:54','9b6685cd-f6ed-43fa-911f-a2caa40df275',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x881_crop_center-center_82_line/nwo-brand-1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1763_crop_center-center_82_line/nwo-brand-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x734_crop_center-center_82_line/nwo-brand-1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1469_crop_center-center_82_line/nwo-brand-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x587_crop_center-center_82_line/nwo-brand-1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1175_crop_center-center_82_line/nwo-brand-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x440_crop_center-center_82_line/nwo-brand-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x367_crop_center-center_82_line/nwo-brand-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x881_crop_center-center_82_line/nwo-brand-1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1763_crop_center-center_82_line/nwo-brand-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x734_crop_center-center_82_line/nwo-brand-1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1469_crop_center-center_82_line/nwo-brand-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x587_crop_center-center_82_line/nwo-brand-1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1175_crop_center-center_82_line/nwo-brand-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x440_crop_center-center_82_line/nwo-brand-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x367_crop_center-center_82_line/nwo-brand-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":881,\"3072\":1763,\"1280\":734,\"2560\":1469,\"1024\":587,\"2048\":1175,\"768\":440,\"640\":367},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2296,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAZABkAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAAIE/8QAIBAAAQMDBQEAAAAAAAAAAAAAAQACEQQUsQUSITOCcf/EABcBAQEBAQAAAAAAAAAAAAAAAAABBAX/xAAdEQABBAIDAAAAAAAAAAAAAAAAAgMxMpGxARES/9oADAMBAAIRAxEAPwDfQRdNlxbwYI+LGiTuvUGoRdv2meBhFyGe/HBNJ3eXYKiZK5XGxV93huAipDdc7P/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#f36454\",\"#f9f2ef\",\"#f09c95\",\"#f4bca4\",\"#ee8c7c\"],\"lightness\":77,\"placeholderWidth\":1536,\"placeholderHeight\":881,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90472,94211,1,'Nwo brand 2','2022-01-07 01:37:58','2022-01-07 01:37:58','7660d6e7-a6a8-49fd-904a-899d112cf99a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x881_crop_center-center_82_line/nwo-brand-2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1763_crop_center-center_82_line/nwo-brand-2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x734_crop_center-center_82_line/nwo-brand-2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1469_crop_center-center_82_line/nwo-brand-2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x587_crop_center-center_82_line/nwo-brand-2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1175_crop_center-center_82_line/nwo-brand-2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x440_crop_center-center_82_line/nwo-brand-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x367_crop_center-center_82_line/nwo-brand-2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x881_crop_center-center_82_line/nwo-brand-2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1763_crop_center-center_82_line/nwo-brand-2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x734_crop_center-center_82_line/nwo-brand-2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1469_crop_center-center_82_line/nwo-brand-2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x587_crop_center-center_82_line/nwo-brand-2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1175_crop_center-center_82_line/nwo-brand-2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x440_crop_center-center_82_line/nwo-brand-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x367_crop_center-center_82_line/nwo-brand-2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":881,\"3072\":1763,\"1280\":734,\"2560\":1469,\"1024\":587,\"2048\":1175,\"768\":440,\"640\":367},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2296,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAZABkAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/wAALCAAJABABAREA/8QAFwAAAwEAAAAAAAAAAAAAAAAAAAEEBv/EACAQAAEEAQQDAAAAAAAAAAAAAAEAAgMEBREkMUFhcdH/2gAIAQEAAD8AxOOZUfZAuvcyPx96TyMVeKxtJWviPGhJI9qRC//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#040404\",\"#cecece\",\"#7c7c7c\",\"#535353\",\"#747474\"],\"lightness\":39,\"placeholderWidth\":1536,\"placeholderHeight\":881,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90473,94212,1,'Nwo brand 3','2022-01-07 01:38:04','2022-01-07 01:38:04','e82cb65c-43e6-49d3-8774-09f8c8bd5b2f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x654_crop_center-center_82_line/nwo-brand-3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1308_crop_center-center_82_line/nwo-brand-3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x545_crop_center-center_82_line/nwo-brand-3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1090_crop_center-center_82_line/nwo-brand-3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x436_crop_center-center_82_line/nwo-brand-3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x872_crop_center-center_82_line/nwo-brand-3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x327_crop_center-center_82_line/nwo-brand-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x272_crop_center-center_82_line/nwo-brand-3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x654_crop_center-center_82_line/nwo-brand-3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1308_crop_center-center_82_line/nwo-brand-3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x545_crop_center-center_82_line/nwo-brand-3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1090_crop_center-center_82_line/nwo-brand-3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x436_crop_center-center_82_line/nwo-brand-3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x872_crop_center-center_82_line/nwo-brand-3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x327_crop_center-center_82_line/nwo-brand-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x272_crop_center-center_82_line/nwo-brand-3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":654,\"3072\":1308,\"1280\":545,\"2560\":1090,\"1024\":436,\"2048\":872,\"768\":327,\"640\":272},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":1704,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAZABkAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAGABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABQb/xAAhEAABAgQHAAAAAAAAAAAAAAABAgMABBEhBRMUIzJhsf/EABYBAQEBAAAAAAAAAAAAAAAAAAQFBv/EAB0RAAICAQUAAAAAAAAAAAAAAAACASFxERIiYaH/2gAMAwEAAhEDEQA/ABUljTEFK86tlVtGi5buiXWhTSOzM4fLjitxl8dEoIPkAe1Zsx6JWpiMH//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#0544cb\",\"#e4f0f5\",\"#6287db\",\"#74a6de\",\"#0a4486\"],\"lightness\":61,\"placeholderWidth\":1536,\"placeholderHeight\":654,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90474,94213,1,'Nwo brand 4','2022-01-07 01:38:08','2022-01-07 01:38:08','518ca213-5407-493b-83dd-34da1f87803f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x654_crop_center-center_82_line/nwo-brand-4.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1308_crop_center-center_82_line/nwo-brand-4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x545_crop_center-center_82_line/nwo-brand-4.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1090_crop_center-center_82_line/nwo-brand-4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x436_crop_center-center_82_line/nwo-brand-4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x872_crop_center-center_82_line/nwo-brand-4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x327_crop_center-center_82_line/nwo-brand-4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x272_crop_center-center_82_line/nwo-brand-4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x654_crop_center-center_82_line/nwo-brand-4.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1308_crop_center-center_82_line/nwo-brand-4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x545_crop_center-center_82_line/nwo-brand-4.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1090_crop_center-center_82_line/nwo-brand-4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x436_crop_center-center_82_line/nwo-brand-4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x872_crop_center-center_82_line/nwo-brand-4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x327_crop_center-center_82_line/nwo-brand-4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x272_crop_center-center_82_line/nwo-brand-4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":654,\"3072\":1308,\"1280\":545,\"2560\":1090,\"1024\":436,\"2048\":872,\"768\":327,\"640\":272},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":1704,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAZABkAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/wAALCAAGABABAREA/8QAFQABAQAAAAAAAAAAAAAAAAAABgf/xAAdEAABBAMBAQAAAAAAAAAAAAABAgMREgATISJx/9oACAEBAAA/AAjZbhIqrZYdnkZdWw7dBsnVQeY7P3P/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c3c3c3\",\"#040404\",\"#5b5b5b\",\"#7c7c7c\",\"#747474\"],\"lightness\":42,\"placeholderWidth\":1536,\"placeholderHeight\":654,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90475,94214,1,'Nwo brand 5','2022-01-07 01:38:18','2022-01-07 01:38:18','86acf16a-f2e4-4e04-8d70-72b004485304',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x654_crop_center-center_82_line/nwo-brand-5.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1308_crop_center-center_82_line/nwo-brand-5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x545_crop_center-center_82_line/nwo-brand-5.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1090_crop_center-center_82_line/nwo-brand-5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x436_crop_center-center_82_line/nwo-brand-5.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x872_crop_center-center_82_line/nwo-brand-5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x327_crop_center-center_82_line/nwo-brand-5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x272_crop_center-center_82_line/nwo-brand-5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x654_crop_center-center_82_line/nwo-brand-5.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1308_crop_center-center_82_line/nwo-brand-5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x545_crop_center-center_82_line/nwo-brand-5.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1090_crop_center-center_82_line/nwo-brand-5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x436_crop_center-center_82_line/nwo-brand-5.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x872_crop_center-center_82_line/nwo-brand-5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x327_crop_center-center_82_line/nwo-brand-5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x272_crop_center-center_82_line/nwo-brand-5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":654,\"3072\":1308,\"1280\":545,\"2560\":1090,\"1024\":436,\"2048\":872,\"768\":327,\"640\":272},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":1704,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAZABkAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAGABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAAT/xAAWEAADAAAAAAAAAAAAAAAAAAAAIWH/xAAWAQEBAQAAAAAAAAAAAAAAAAAABQb/xAAVEQEBAAAAAAAAAAAAAAAAAAAAIf/aAAwDAQACEQMRAD8AoVJzS0VBX//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#fb634c\",\"#f8bca9\",\"#f77c78\",\"#f59382\",\"#f99c99\"],\"lightness\":72,\"placeholderWidth\":1536,\"placeholderHeight\":654,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90476,94215,1,'Nwo brand 6','2022-01-07 01:38:25','2022-01-07 01:38:25','5b1f95c0-0e29-453b-822e-358589a71114',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x881_crop_center-center_82_line/nwo-brand-6.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1763_crop_center-center_82_line/nwo-brand-6.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x734_crop_center-center_82_line/nwo-brand-6.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1469_crop_center-center_82_line/nwo-brand-6.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x587_crop_center-center_82_line/nwo-brand-6.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1175_crop_center-center_82_line/nwo-brand-6.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x440_crop_center-center_82_line/nwo-brand-6.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x367_crop_center-center_82_line/nwo-brand-6.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x881_crop_center-center_82_line/nwo-brand-6.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1763_crop_center-center_82_line/nwo-brand-6.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x734_crop_center-center_82_line/nwo-brand-6.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1469_crop_center-center_82_line/nwo-brand-6.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x587_crop_center-center_82_line/nwo-brand-6.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1175_crop_center-center_82_line/nwo-brand-6.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x440_crop_center-center_82_line/nwo-brand-6.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x367_crop_center-center_82_line/nwo-brand-6.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":881,\"3072\":1763,\"1280\":734,\"2560\":1469,\"1024\":587,\"2048\":1175,\"768\":440,\"640\":367},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2296,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAZABkAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAAME/8QAHBAAAgICAwAAAAAAAAAAAAAAAQIAAxMhI0Fh/8QAFwEAAwEAAAAAAAAAAAAAAAAAAAEDBv/EABkRAQEAAwEAAAAAAAAAAAAAAAEAAgMiIf/aAAwDAQACEQMRAD8A2UCsuMpIXySLJ6zBe5eqK/GwK9bgz2GI8vlOKlIRf//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#04db7b\",\"#d2ece0\",\"#5fdba4\",\"#78f2bc\",\"#38e39c\"],\"lightness\":63,\"placeholderWidth\":1536,\"placeholderHeight\":881,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90477,94216,1,'Nwo brand 7','2022-01-07 01:38:33','2022-01-07 01:38:33','5048a09f-4332-4b41-a713-f689a6bb1101',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x881_crop_center-center_82_line/nwo-brand-7.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1763_crop_center-center_82_line/nwo-brand-7.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x734_crop_center-center_82_line/nwo-brand-7.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1469_crop_center-center_82_line/nwo-brand-7.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x587_crop_center-center_82_line/nwo-brand-7.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1175_crop_center-center_82_line/nwo-brand-7.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x440_crop_center-center_82_line/nwo-brand-7.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x367_crop_center-center_82_line/nwo-brand-7.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x881_crop_center-center_82_line/nwo-brand-7.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1763_crop_center-center_82_line/nwo-brand-7.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x734_crop_center-center_82_line/nwo-brand-7.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1469_crop_center-center_82_line/nwo-brand-7.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x587_crop_center-center_82_line/nwo-brand-7.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1175_crop_center-center_82_line/nwo-brand-7.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x440_crop_center-center_82_line/nwo-brand-7.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x367_crop_center-center_82_line/nwo-brand-7.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":881,\"3072\":1763,\"1280\":734,\"2560\":1469,\"1024\":587,\"2048\":1175,\"768\":440,\"640\":367},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2296,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAZABkAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABAP/xAAmEAACAQIBDQAAAAAAAAAAAAABAgADBQYEERIWIjQ2UXFzkrLB/8QAFwEAAwEAAAAAAAAAAAAAAAAAAgQFA//EACARAAIBBAEFAAAAAAAAAAAAAAABAwIEETIFEzM0cYH/2gAMAwEAAhEDEQA/AEYKC6uZYGA0TUXP4rAr1ZtBnqLAS9U1NJirABX2RzjnGvFb9ES4Td7I2IwXwrcO4PVYnJqy5bd2khc90Xr8Ma43b4R7rzZD/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#f76b58\",\"#070809\",\"#0bd97a\",\"#0648ca\",\"#e4e5e4\"],\"lightness\":43,\"placeholderWidth\":1536,\"placeholderHeight\":881,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90478,94217,1,'New Word Order','2022-01-07 01:43:10','2022-01-07 01:43:10','7c75ffe3-ddaa-4c97-804a-545c90098c30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'We\'ve stepped up',NULL,NULL,'We\'re big believers in making our outsides match our insides.\n\nOur clients always hear us telling them that this is the essence of brand integrity (because it is). And like all people who are striving to go from good to great, we\'ve stepped up.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-14yyQfdrAP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94210\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ajkeoG129p\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our new brand\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As part of our regular brand review process, we decided our old identity didn\'t have the strength of character our current brand embodies. A lot has changed in the past few years: our market shifted, and we shifted with it.\\n\\n**We used our proven brand methodology on ourselves.**\\n\\nOur unique methodology is about knowing our context, opinions, pain points and applying insights. Adding to this our business strategy—to which our brand strategy must align—and we\'re dressed and messaged for success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand audit\",\"text\":\"We laid out where our brand is currently and the story that led us here.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Stakeholder consultation\",\"text\":\"We spoke to our stakeholders to understand how they view and interact with our brand, and their perspective on what needed to change.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand comparison analysis\",\"text\":\"We learned where our business sits among others in Brisbane, around Australia and the world.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand story\",\"text\":\"We documented  the story of our brand as a central narrative so anyone within or connected to our business could access one source of truth.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"Visual brand development\",\"text\":\"We created a new logo and other branding elements that tell our story in multiple layers.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand voice and messaging\",\"text\":\"We defined and documented our new way of writing, speaking and the key messages we want to communicate.\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There is power in gathering insights, applying a proven methodology of insights development and planning a strategic way forward. \\n\\nOur brand informs and impacts every aspect of New Word Order, and gives us a clear direction that challenges the usual way of doing things and ensures anyone who comes into contact with our business knows what we offer and how we will solve their problems.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bEj6Q5npVj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94211\",\"94209\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QGxZjexaIq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This process is what we do for our clients every day, what we do for ourselves, and we\'d like to do this for you, too. Start the conversation with us and discover how a fresh brand will breathe new life into your business.\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Talk to us\",\"buttonImage\":[],\"internalLink\":[\"21297\"],\"externalLink\":null,\"buttonStyle\":\"outline\",\"buttonColour\":\"white\"}}},\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-diijVzsy4h\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Type\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our new typeface is bolder, stronger, and positively dripping with character. Check out the Ns, Ws and Rs in our font—Neue Machina.\\n\\nThe monospace and geometric type features with deep ink traps in the heavier weights.\\n\\nWe love it because of its versatility: clean and minimalist in the lighter weights, but the heavier weights are bold in more ways than one. \\n\\n- Deep ink traps in heavier weights\\n- Overshot terminals\\n- Rounded corners\\n- Monospace-like features\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4bQVkM05o8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94212\",\"94215\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MLS2xXnQoC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Words\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We\'re also intent on re-establishing our roots in the power of the written word. A subtle way we\'re doing this is using words over icons. As an example, see how we used the word \'menu\' instead of a hamburger.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gbJaMB0pnh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94214\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-K3KNRmvlzY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Colours\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our brand colours are mostly black and white with pops of red, green and blue. The colours are the basics in the digital environment (RGB). This is our primary palette—we bring strategy and creativity to form something entirely new and entirely what our clients need to solve their problems and unlock their potential.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-btBIAfxeyp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94216\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VDhaVH930A\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Experiences\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The main reason we\'re keeping our brand so pared back is because we want our creative portfolio to sing. Are you loving the immersive full-screen hover state feature as much as we are? We wanted our brand to allow for such experiences as this.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90481,94220,1,'NWO Case Study mockup','2022-01-07 01:54:50','2022-01-07 01:54:50','0590c294-431b-40c7-a56e-e00b82873182',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x848_crop_center-center_82_line/NWO-CaseStudy-mockup.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1696_crop_center-center_82_line/NWO-CaseStudy-mockup.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x706_crop_center-center_82_line/NWO-CaseStudy-mockup.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1413_crop_center-center_82_line/NWO-CaseStudy-mockup.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x565_crop_center-center_82_line/NWO-CaseStudy-mockup.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1131_crop_center-center_82_line/NWO-CaseStudy-mockup.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x424_crop_center-center_82_line/NWO-CaseStudy-mockup.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x353_crop_center-center_82_line/NWO-CaseStudy-mockup.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x848_crop_center-center_82_line/NWO-CaseStudy-mockup.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1696_crop_center-center_82_line/NWO-CaseStudy-mockup.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x706_crop_center-center_82_line/NWO-CaseStudy-mockup.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1413_crop_center-center_82_line/NWO-CaseStudy-mockup.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x565_crop_center-center_82_line/NWO-CaseStudy-mockup.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1131_crop_center-center_82_line/NWO-CaseStudy-mockup.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x424_crop_center-center_82_line/NWO-CaseStudy-mockup.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x353_crop_center-center_82_line/NWO-CaseStudy-mockup.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":848,\"3072\":1696,\"1280\":706,\"2560\":1413,\"1024\":565,\"2048\":1131,\"768\":424,\"640\":353},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":3375,\"originalImageHeight\":1864,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAIABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABAb/xAAcEAEBAAICAwAAAAAAAAAAAAABAgMRABIEMVH/xAAVAQEBAAAAAAAAAAAAAAAAAAABAv/EABoRAQADAQEBAAAAAAAAAAAAAAEAAiEREjH/2gAMAwEAAhEDEQA/AKDJaYK62ShvbwVDInO7Dz5LlV61AGtUe37yKtl0l2K+c+z/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#c0c0bf\",\"#b16639\",\"#be9d75\",\"#545974\",\"#c4545c\"],\"lightness\":58,\"placeholderWidth\":1536,\"placeholderHeight\":848,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90482,94221,1,'NWO Website mockup','2022-01-07 01:54:57','2022-01-07 01:54:57','12cac46f-e91f-4d24-ada6-da07f0740aa4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/NWO-Website-mockup.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/NWO-Website-mockup.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/NWO-Website-mockup.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/NWO-Website-mockup.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/NWO-Website-mockup.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/NWO-Website-mockup.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/NWO-Website-mockup.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/NWO-Website-mockup.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/NWO-Website-mockup.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/NWO-Website-mockup.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/NWO-Website-mockup.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/NWO-Website-mockup.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/NWO-Website-mockup.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/NWO-Website-mockup.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/NWO-Website-mockup.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/NWO-Website-mockup.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"3072\":2048,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2667,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAUG/8QAHhAAAgEEAwEAAAAAAAAAAAAAAQIRAAMEBRIhUTH/xAAVAQEBAAAAAAAAAAAAAAAAAAAAAf/EABcRAQEBAQAAAAAAAAAAAAAAAAABEUH/2gAMAwEAAhEDEQA/AB5Svc3+ZZEKrNIPvcVZnUtA29k4VxFdp5ryBilzhKs8Q7szgMwP09mis1tyTlspJhegPKg//9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#37393b\",\"#c6c8ca\",\"#95a0a6\",\"#7a8d9e\",\"#7d7f81\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90483,94222,1,'New Word Order','2022-01-07 01:55:42','2022-01-07 01:55:42','0d9eb73c-40c2-433f-a24f-dfcfbdf9de00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'We\'ve stepped up',NULL,NULL,'We\'re big believers in making our outsides match our insides.\n\nOur clients always hear us telling them that this is the essence of brand integrity (because it is). And like all people who are striving to go from good to great, we\'ve stepped up.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-14yyQfdrAP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94210\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ajkeoG129p\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our new brand\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As part of our regular brand review process, we decided our old identity didn\'t have the strength of character our current brand embodies. A lot has changed in the past few years: our market shifted, and we shifted with it.\\n\\n**We used our proven brand methodology on ourselves.**\\n\\nOur unique methodology is about knowing our context, opinions, pain points and applying insights. Adding to this our business strategy—to which our brand strategy must align—and we\'re dressed and messaged for success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand audit\",\"text\":\"We laid out where our brand is currently and the story that led us here.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Stakeholder consultation\",\"text\":\"We spoke to our stakeholders to understand how they view and interact with our brand, and their perspective on what needed to change.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand comparison analysis\",\"text\":\"We learned where our business sits among others in Brisbane, around Australia and the world.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand story\",\"text\":\"We documented  the story of our brand as a central narrative so anyone within or connected to our business could access one source of truth.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"Visual brand development\",\"text\":\"We created a new logo and other branding elements that tell our story in multiple layers.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand voice and messaging\",\"text\":\"We defined and documented our new way of writing, speaking and the key messages we want to communicate.\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There is power in gathering insights, applying a proven methodology of insights development and planning a strategic way forward. \\n\\nOur brand informs and impacts every aspect of New Word Order, and gives us a clear direction that challenges the usual way of doing things and ensures anyone who comes into contact with our business knows what we offer and how we will solve their problems.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bEj6Q5npVj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94211\",\"94209\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QGxZjexaIq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This process is what we do for our clients every day, what we do for ourselves, and we\'d like to do this for you, too. Start the conversation with us and discover how a fresh brand will breathe new life into your business.\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Talk to us\",\"buttonImage\":[],\"internalLink\":[\"21297\"],\"externalLink\":null,\"buttonStyle\":\"outline\",\"buttonColour\":\"white\"}}},\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-diijVzsy4h\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Type\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our new typeface is bolder, stronger, and positively dripping with character. Check out the Ns, Ws and Rs in our font—Neue Machina.\\n\\nThe monospace and geometric type features with deep ink traps in the heavier weights.\\n\\nWe love it because of its versatility: clean and minimalist in the lighter weights, but the heavier weights are bold in more ways than one. \\n\\n- Deep ink traps in heavier weights\\n- Overshot terminals\\n- Rounded corners\\n- Monospace-like features\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4bQVkM05o8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94212\",\"94215\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MLS2xXnQoC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Words\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We\'re also intent on re-establishing our roots in the power of the written word. A subtle way we\'re doing this is using words over icons. As an example, see how we used the word \'menu\' instead of a hamburger.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gbJaMB0pnh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94214\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-K3KNRmvlzY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Colours\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our brand colours are mostly black and white with pops of red, green and blue. The colours are the basics in the digital environment (RGB). This is our primary palette—we bring strategy and creativity to form something entirely new and entirely what our clients need to solve their problems and unlock their potential.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-btBIAfxeyp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94216\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VDhaVH930A\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Experiences\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The main reason we\'re keeping our brand so pared back is because we want our creative portfolio to sing. Are you loving the immersive full-screen hover state feature as much as we are? We wanted our brand to allow for such experiences as this.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BRfSdhrk5C\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94221\",\"94220\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90484,94223,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 02:23:12','2022-01-17 03:55:38','2b899d39-c08c-465d-8cbc-4e2a865b8bda',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90691,94430,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:37:37','2022-01-17 03:37:37','92d836a9-6eca-4fef-9c75-250038aee846',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90692,94431,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:37:58','2022-01-17 03:37:58','88eabbea-0232-4692-9505-c15d033d0466',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90693,94432,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:38:19','2022-01-17 03:38:19','de297560-d2ce-4e19-9952-bb47e46d0654',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90694,94433,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:38:40','2022-01-17 03:38:40','4bec68b5-106c-4873-ac9f-9bcd3626b8e0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90695,94434,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:39:02','2022-01-17 03:39:02','422e1791-f655-4ffc-a572-6a9d4ccb7490',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90696,94435,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:39:23','2022-01-17 03:39:23','730be997-6a56-4f5f-8bf0-f358aeae351e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90697,94436,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:39:44','2022-01-17 03:39:44','620b1f3b-2a5f-4ffd-a3f1-c30e872ed726',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90698,94437,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:40:05','2022-01-17 03:40:05','a5ba0349-d4ab-46e2-8917-989d3d17ec74',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90699,94438,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:41:15','2022-01-17 03:41:15','6ef5bc4a-e774-4d33-b648-3c942b681395',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90700,94439,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:41:28','2022-01-17 03:41:28','d2225d9a-9d4f-4ca0-926b-581b1356bbca',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90701,94440,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:41:49','2022-01-17 03:41:49','5abaaca0-da83-49f3-bab4-14e0ca780841',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90702,94441,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:42:10','2022-01-17 03:42:10','33fff499-64f3-42d7-82c0-07459b246a99',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90703,94442,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:42:32','2022-01-17 03:42:32','1dd3f4a3-145b-4dfa-b401-2fabb2cfd86c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90704,94443,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:42:53','2022-01-17 03:42:53','d11c9340-b8e8-4022-970f-e264c1009b9e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90705,94444,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:43:14','2022-01-17 03:43:14','d157fa5d-ac67-4c0a-b5f0-d624772945ac',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90706,94445,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:43:35','2022-01-17 03:43:35','90164b3c-d9ae-4412-9454-e353eb86d546',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90707,94446,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:43:56','2022-01-17 03:43:56','5bea354e-3b88-41de-9746-d2761c207492',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90708,94447,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:44:17','2022-01-17 03:44:17','fd8ca4c5-1730-4047-aff9-1af6be14d1c6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90709,94448,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:44:39','2022-01-17 03:44:39','19eb89ad-ec09-4c44-92d9-38ffd91a8ecf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90710,94449,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:45:05','2022-01-17 03:45:05','d73c23b4-a336-420d-a5c7-4e8262481981',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90711,94450,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:45:27','2022-01-17 03:45:27','40a8007b-f958-40e8-9eb5-1f3f7356e0a2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90712,94451,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:45:45','2022-01-17 03:45:45','9eb8dc5e-aacd-4a66-b7e4-67099ce68d32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90713,94452,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:46:05','2022-01-17 03:46:05','9d1439c6-486b-4197-a798-7d6a3e9567a8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90714,94453,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:46:26','2022-01-17 03:46:26','213a844f-45b6-44fa-8e50-e40f4a995d55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90715,94454,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:46:47','2022-01-17 03:46:47','60e75c4b-ba12-4ae4-b3ec-ceebebbe5e87',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90716,94455,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:47:09','2022-01-17 03:47:09','9e6e60cc-62dc-4704-9fca-8b5d31336ee9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90717,94456,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:47:30','2022-01-17 03:47:30','e3efaae5-bab8-4784-8ec8-e146699f8d4e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90718,94457,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:47:51','2022-01-17 03:47:51','607718bf-e559-4a41-b35e-a6c48f464d68',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90719,94458,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:48:12','2022-01-17 03:48:12','768208a5-b622-4a5b-a015-177a71f52972',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90720,94459,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:48:33','2022-01-17 03:48:33','4e6ca6e5-9af6-4d5b-821d-d7eb6f6aa134',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90721,94460,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:48:55','2022-01-17 03:48:55','2968908c-191c-4a3b-bc9d-fed73505572b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90722,94461,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:49:16','2022-01-17 03:49:16','5f2111d9-87e7-4d8b-8808-8f327ed2d2dd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90723,94462,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:49:37','2022-01-17 03:49:37','df23679f-c7ee-4261-9b9a-5841cb799b9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90724,94463,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:49:59','2022-01-17 03:49:59','42760063-fc0f-4876-8318-60f73edb9ddd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90725,94464,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:50:20','2022-01-17 03:50:20','fe2eeb76-217d-43d7-9288-350d0449fecc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90726,94465,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:50:41','2022-01-17 03:50:41','5819dff7-ebb6-45fd-9062-e5858aeb3742',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90727,94466,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:51:03','2022-01-17 03:51:03','3d782f12-d744-4328-99df-f2578439137b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90728,94467,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:51:24','2022-01-17 03:51:24','c6a3231e-e104-486e-8d36-41ae913d775c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90729,94468,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:51:45','2022-01-17 03:51:45','dfb7fd4e-66ff-4740-a036-1177451a00f3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90730,94469,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:52:06','2022-01-17 03:52:06','3e542d75-cfab-4557-95fa-504157cab4be',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90731,94470,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:52:27','2022-01-17 03:52:27','ef98dfc4-1610-4f15-98a1-24ee13dffc16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90732,94471,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:52:49','2022-01-17 03:52:49','2fc51102-7236-4ab6-8ee9-cbd702560ad1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90733,94472,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:53:13','2022-01-17 03:53:13','ebc543e9-7efb-4a85-b348-d57ab5b5af3e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90734,94473,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:53:31','2022-01-17 03:53:31','b52141f2-359e-49f6-bdbd-cd2f05c7f836',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90735,94474,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:53:53','2022-01-17 03:53:53','ad950baf-991f-4649-9dd0-0feb634570eb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90736,94475,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:54:14','2022-01-17 03:54:14','58592e8e-d2ef-436f-879e-f472e56755e4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90737,94476,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:54:35','2022-01-17 03:54:35','8d17dad2-b5f1-42c9-bfcf-83064eacdcff',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90738,94477,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:54:56','2022-01-17 03:54:56','2face20c-e5c2-499f-ab8d-7a1b11f2e9b7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90739,94478,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:55:17','2022-01-17 03:55:17','0a029b13-0019-4ce0-aa71-fc873f9db98c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(90740,94479,1,'Bruce Connell - Brand Audit Submission - 17 Jan., 2022','2022-01-17 03:55:38','2022-01-17 03:55:38','88f6a5bf-59ff-426a-bba7-6227c5d4eda8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93520,97259,1,NULL,'2022-01-20 03:43:01','2023-03-09 04:28:33','17d6ca68-fbb2-4681-8ce3-0bfc98a5a621',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Account manager',NULL,NULL,NULL,'#### Artist, mother, video producer, musician, photographer, video editor, Excel whiz and production queen—Marnie can do it all.\n\nEven better, she\'s passionate about everything she does, approaching situations with a positive attitude while assessing and managing priorities to deliver great results—on brief and on deadline. She values creativity and always strives to balance the integrity of the idea with the bottom line. Detail-driven but with an eye for the big picture, Marnie understands the financials and processes behind a successful project. She’s also an expert in photography and video production. But what she really loves is working with people.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.linkedin.com/in/marnievaughn/',NULL,NULL,NULL,NULL,'blue',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93522,97266,1,'Screen Shot 2022 01 20 at 1 48 11 pm','2022-01-20 03:48:42','2023-03-09 04:27:05','625e17d1-9397-44db-866f-584e04568e38',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Marnie-col-23.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Marnie-col-23.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Marnie-col-23.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Marnie-col-23.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Marnie-col-23.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Marnie-col-23.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Marnie-col-23.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Marnie-col-23.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1280,\"originalImageHeight\":1280,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBIAEgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAQIDBP/EAB8QAAICAgMAAwAAAAAAAAAAAAECAxEAEgQFQRMhI//EABcBAAMBAAAAAAAAAAAAAAAAAAABAwL/xAAaEQADAQEBAQAAAAAAAAAAAAAAAQIREiED/9oADAMBAAIRAxEAPwCvaciaD4EgpTK+pYi6GUp4hytYevlmkjkTkj9I2rbWth4awl6tHSxiTyjluYUcIUYG6skA+ZThUifblm2dkSYLGwZSB917WZj5uY9HV7Xh/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#9899b6\",\"#2d2231\",\"#e9c4b1\",\"#5e3a4b\",\"#77534c\"],\"lightness\":48,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93523,97267,1,'About us','2022-01-20 03:49:05','2022-01-20 03:49:05','61954c01-e083-4b69-8afb-9aa82f624ef8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17881\",\"17848\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\",\"17921\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | About us','For 20 years we have helped businesses, organisations and governments to solve problems, unlock potential and connect with people to inspire action.','strategy, brand, campaign, behaviour change, engagement, digital, video, content',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93525,97269,1,'About us','2022-01-20 04:02:30','2022-01-20 04:02:30','6fb36c0a-6e86-4275-9be0-b21bf8011050',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17881\",\"17848\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\",\"17921\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | About us','For 20 years we have helped businesses, organisations and governments to solve problems, unlock potential and connect with people to inspire action.','strategy, brand, campaign, behaviour change, engagement, digital, video, content',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93527,97271,1,'2022-01-24 23:36:48','2022-01-24 13:36:49','2022-01-24 13:36:49','11c01b30-cf0c-4b9a-a175-f2fa103a844f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93528,97272,1,'About us','2022-01-27 07:08:35','2022-01-27 07:08:35','cbb0a97f-3785-4a13-aa03-cb77a1cb50e0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17881\",\"17848\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\",\"17921\",\"97259\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | About us','For 20 years we have helped businesses, organisations and governments to solve problems, unlock potential and connect with people to inspire action.','strategy, brand, campaign, behaviour change, engagement, digital, video, content',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93530,97274,1,'Citipointe Christian College','2022-01-30 04:05:12','2022-01-30 04:05:12','93a58e8c-d56f-49a4-94ed-62a389b885db',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'I can campaign',NULL,NULL,'Our campaign was based around the concept of ‘I can’, which responded to market research with parents and focused on the outcomes for students.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p51LYEpT5O\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47736\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iYNrrlmMZA\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’ve been working with Citipointe Christian College for a number of years, having first helped them define their brand and distinctives, and then campaigned the brand to great success and high enrolments and waiting lists.\\n\\nWe then faced a new challenge: getting parents to commit for the long haul.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Y6fbAAGpQK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47738\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KQMovznY0B\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We conducted in-depth interviews and asked parents: What would win you back? From their answers, we developed fresh new creative and messaging directly linked to parents’ aspirations for their children.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3Nuc4KqR6i\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47741\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UCCnWZFQHi\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The brand is now visually distinguishing from the competition by moving away from the usual depictions of happy children in school uniforms to a stronger conceptual approach that places students within the real-world situations the school is preparing them to reach.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rcnsOQ5GI8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47740\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V3kt5nqhg3\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Results\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This campaign is unlike anything else in the school market. It’s a powerful differentiator that’s continuing high levels of interest in the target market and enrolments and tour attendance are still growing.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jZNg6COExC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47742\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wchbDpZwnc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47739\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93532,97276,1,'New Word Order','2022-02-08 03:26:34','2022-02-08 03:26:36','ee33d849-6485-4d10-bd58-67ca60c9080a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'We\'ve stepped up',NULL,NULL,'We\'re big believers in making our outsides match our insides.\n\nOur clients always hear us telling them that this is the essence of brand integrity (because it is). And like all people who are striving to go from good to great, we\'ve stepped up.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-14yyQfdrAP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94210\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ajkeoG129p\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our new brand\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As part of our regular brand review process, we decided our old identity didn\'t have the strength of character our current brand embodies. A lot has changed in the past few years: our market shifted, and we shifted with it.\\n\\n**We used our proven brand methodology on ourselves.**\\n\\nOur unique methodology is about knowing our context, opinions, pain points and applying insights. Adding to this our business strategy—to which our brand strategy must align—and we\'re dressed and messaged for success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand audit\",\"text\":\"We laid out where our brand is currently and the story that led us here.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Stakeholder consultation\",\"text\":\"We spoke to our stakeholders to understand how they view and interact with our brand, and their perspective on what needed to change.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand comparison analysis\",\"text\":\"We learned where our business sits among others in Brisbane, around Australia and the world.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand story\",\"text\":\"We documented  the story of our brand as a central narrative so anyone within or connected to our business could access one source of truth.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"Visual brand development\",\"text\":\"We created a new logo and other branding elements that tell our story in multiple layers.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand voice and messaging\",\"text\":\"We defined and documented our new way of writing, speaking and the key messages we want to communicate.\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There is power in gathering insights, applying a proven methodology of insights development and planning a strategic way forward. \\n\\nOur brand informs and impacts every aspect of New Word Order, and gives us a clear direction that challenges the usual way of doing things and ensures anyone who comes into contact with our business knows what we offer and how we will solve their problems.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bEj6Q5npVj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94211\",\"94209\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QGxZjexaIq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This process is what we do for our clients every day, what we do for ourselves, and we\'d like to do this for you, too. Start the conversation with us and discover how a fresh brand will breathe new life into your business.\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Talk to us\",\"buttonImage\":[],\"internalLink\":[\"21297\"],\"externalLink\":null,\"buttonStyle\":\"outline\",\"buttonColour\":\"white\"}}},\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-diijVzsy4h\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Type\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our new typeface is bolder, stronger, and positively dripping with character. Check out the Ns, Ws and Rs in our font—Neue Machina.\\n\\nThe monospace and geometric type features with deep ink traps in the heavier weights.\\n\\nWe love it because of its versatility: clean and minimalist in the lighter weights, but the heavier weights are bold in more ways than one. \\n\\n- Deep ink traps in heavier weights\\n- Overshot terminals\\n- Rounded corners\\n- Monospace-like features\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4bQVkM05o8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94212\",\"94215\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MLS2xXnQoC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Words\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We\'re also intent on re-establishing our roots in the power of the written word. A subtle way we\'re doing this is using words over icons. As an example, see how we used the word \'menu\' instead of a hamburger.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gbJaMB0pnh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94214\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-K3KNRmvlzY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Colours\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our brand colours are mostly black and white with pops of red, green and blue. The colours are the basics in the digital environment (RGB). This is our primary palette—we bring strategy and creativity to form something entirely new and entirely what our clients need to solve their problems and unlock their potential.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-btBIAfxeyp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94216\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VDhaVH930A\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Experiences\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The main reason we\'re keeping our brand so pared back is because we want our creative portfolio to sing. Are you loving the immersive full-screen hover state feature as much as we are? We wanted our brand to allow for such experiences as this.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BRfSdhrk5C\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94221\",\"94220\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93534,97278,1,'New Word Order','2022-02-08 03:37:36','2022-02-08 03:37:36','76f156fe-fc15-402e-a211-658e0eeca2b9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'We\'ve stepped up',NULL,NULL,'We\'re big believers in making our outsides match our insides.\n\nOur clients always hear us telling them that this is the essence of brand integrity (because it is). And like all people who are striving to go from good to great, we\'ve stepped up.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1yQgVqAUBG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Brand\",\"plainText\":\"It\'s the secret to staying true, relevant and compelling.\\n\\nIt\'s how we look, speak, sound, behave and operate.\\n\\nIt\'s in the obvious and the subliminal.\\n\\nIt\'s a beautiful mix of strategy, creativity and understanding.\\n\\nThere\'s an art and science behind capturing it, expressing it and managing it.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ajkeoG129p\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our new brand\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As part of our regular brand review process, we decided our old identity didn\'t have the strength of character our current brand embodies. A lot has changed in the past few years: our market shifted, and we shifted with it.\\n\\n**We used our proven brand methodology on ourselves.**\\n\\nOur unique methodology is about knowing our context, opinions, pain points and applying insights. Adding to this our business strategy—to which our brand strategy must align—and we\'re dressed and messaged for success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand audit\",\"text\":\"We laid out where our brand is currently and the story that led us here.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Stakeholder consultation\",\"text\":\"We spoke to our stakeholders to understand how they view and interact with our brand, and their perspective on what needed to change.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand comparison analysis\",\"text\":\"We learned where our business sits among others in Brisbane, around Australia and the world.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand story\",\"text\":\"We documented  the story of our brand as a central narrative so anyone within or connected to our business could access one source of truth.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"Visual brand development\",\"text\":\"We created a new logo and other branding elements that tell our story in multiple layers.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand voice and messaging\",\"text\":\"We defined and documented our new way of writing, speaking and the key messages we want to communicate.\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There is power in gathering insights, applying a proven methodology of insights development and planning a strategic way forward. \\n\\nOur brand informs and impacts every aspect of New Word Order, and gives us a clear direction that challenges the usual way of doing things and ensures anyone who comes into contact with our business knows what we offer and how we will solve their problems.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QGxZjexaIq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This process is what we do for our clients every day, what we do for ourselves, and we\'d like to do this for you, too. Start the conversation with us and discover how a fresh brand will breathe new life into your business.\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Talk to us\",\"buttonImage\":[],\"internalLink\":[\"21297\"],\"externalLink\":null,\"buttonStyle\":\"outline\",\"buttonColour\":\"white\"}}},\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-diijVzsy4h\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Type\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our new typeface is bolder, stronger, and positively dripping with character. Check out the Ns, Ws and Rs in our font—Neue Machina.\\n\\nThe monospace and geometric type features with deep ink traps in the heavier weights.\\n\\nWe love it because of its versatility: clean and minimalist in the lighter weights, but the heavier weights are bold in more ways than one. \\n\\n- Deep ink traps in heavier weights\\n- Overshot terminals\\n- Rounded corners\\n- Monospace-like features\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MLS2xXnQoC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Words\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We\'re also intent on re-establishing our roots in the power of the written word. A subtle way we\'re doing this is using words over icons. As an example, see how we used the word \'menu\' instead of a hamburger on this website.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-K3KNRmvlzY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Colours\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our brand colours are mostly black and white with pops of red, green and blue. The colours are the basics in the digital environment (RGB). This is our primary palette—we bring strategy and creativity to form something entirely new and entirely what our clients need to solve their problems and unlock their potential.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VDhaVH930A\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Experiences\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The main reason we\'re keeping our brand so pared back is because we want our creative portfolio to sing. Are you loving the immersive full-screen hover state feature as much as we are? We wanted our brand to allow for such experiences as this.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93536,97280,1,'New Word Order','2022-02-08 03:38:29','2022-02-08 03:38:29','fa4f3f5f-e207-4171-99a2-94348d7db7d5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'We\'ve stepped up',NULL,NULL,'We\'re big believers in making our outsides match our insides.\n\nOur clients always hear us telling them that this is the essence of brand integrity (because it is). And like all people who are striving to go from good to great, we\'ve stepped up.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1yQgVqAUBG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Brand\",\"plainText\":\"It\'s the secret to staying true, relevant and compelling.\\n\\nIt\'s how we look, speak, sound, behave and operate.\\n\\nIt\'s in the obvious and the subliminal.\\n\\nIt\'s a beautiful mix of strategy, creativity and understanding.\\n\\nThere\'s an art and science behind capturing it, expressing it and managing it.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ajkeoG129p\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our new brand\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As part of our regular brand review process, we decided our old identity didn\'t have the strength of character our current brand embodies. A lot has changed in the past few years: our market shifted, and we shifted with it.\\n\\n**We used our proven brand methodology on ourselves.**\\n\\nOur unique methodology is about knowing our context, opinions, pain points and applying insights. Adding to this our business strategy—to which our brand strategy must align—and we\'re dressed and messaged for success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand audit\",\"text\":\"We laid out where our brand is currently and the story that led us here.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Stakeholder consultation\",\"text\":\"We spoke to our stakeholders to understand how they view and interact with our brand, and their perspective on what needed to change.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand comparison analysis\",\"text\":\"We learned where our business sits among others in Brisbane, around Australia and the world.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand story\",\"text\":\"We documented  the story of our brand as a central narrative so anyone within or connected to our business could access one source of truth.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"Visual brand development\",\"text\":\"We created a new logo and other branding elements that tell our story in multiple layers.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand voice and messaging\",\"text\":\"We defined and documented our new way of writing, speaking and the key messages we want to communicate.\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There is power in gathering insights, applying a proven methodology of insights development and planning a strategic way forward. \\n\\nOur brand informs and impacts every aspect of New Word Order, and gives us a clear direction that challenges the usual way of doing things and ensures anyone who comes into contact with our business knows what we offer and how we will solve their problems.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QGxZjexaIq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This process is what we do for our clients every day, what we do for ourselves, and we\'d like to do this for you, too. Start the conversation with us and discover how a fresh brand will breathe new life into your business.\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Talk to us\",\"buttonImage\":[],\"internalLink\":[\"21297\"],\"externalLink\":null,\"buttonStyle\":\"outline\",\"buttonColour\":\"white\"}}},\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-diijVzsy4h\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Type\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our new typeface is bolder, stronger, and positively dripping with character. Check out the Ns, Ws and Rs in our font—Neue Machina.\\n\\nThe monospace and geometric type features with deep ink traps in the heavier weights.\\n\\nWe love it because of its versatility: clean and minimalist in the lighter weights, but the heavier weights are bold in more ways than one. \\n\\n- Deep ink traps in heavier weights\\n- Overshot terminals\\n- Rounded corners\\n- Monospace-like features\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MLS2xXnQoC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Words\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We\'re also intent on re-establishing our roots in the power of the written word. A subtle way we\'re doing this is using words over icons. As an example, see how we used the word \'menu\' instead of a hamburger on this website.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-K3KNRmvlzY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Colours\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our brand colours are mostly black and white with pops of red, green and blue. The colours are the basics in the digital environment (RGB). This is our primary palette—we bring strategy and creativity to form something entirely new and entirely what our clients need to solve their problems and unlock their potential.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VDhaVH930A\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Experiences\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The main reason we\'re keeping our brand so pared back is because we want our creative portfolio to sing. Are you loving the immersive full-screen hover state feature as much as we are? We wanted our brand to allow for such experiences as this.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'New Word Order','We\'re big believers in making our outsides match our insides.  Our clients always hear us telling them that this is the essence of brand integrity (because it is). And like all people who are striving to go from good to great, we\'ve stepped up.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93539,97283,1,'New Word Order','2022-02-08 03:42:40','2022-02-08 03:42:40','f5e516a3-5f6e-4ce8-aaf9-71235e7585dc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'We\'ve stepped up',NULL,NULL,'We\'re big believers in making our outsides match our insides.\n\nOur clients always hear us telling them that this is the essence of brand integrity (because it is). And like all people who are striving to go from good to great, we\'ve stepped up.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-14yyQfdrAP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94210\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ajkeoG129p\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our new brand\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As part of our regular brand review process, we decided our old identity didn\'t have the strength of character our current brand embodies. A lot has changed in the past few years: our market shifted, and we shifted with it.\\n\\n**We used our proven brand methodology on ourselves.**\\n\\nOur unique methodology is about knowing our context, opinions, pain points and applying insights. Adding to this our business strategy—to which our brand strategy must align—and we\'re dressed and messaged for success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand audit\",\"text\":\"We laid out where our brand is currently and the story that led us here.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Stakeholder consultation\",\"text\":\"We spoke to our stakeholders to understand how they view and interact with our brand, and their perspective on what needed to change.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand comparison analysis\",\"text\":\"We learned where our business sits among others in Brisbane, around Australia and the world.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand story\",\"text\":\"We documented  the story of our brand as a central narrative so anyone within or connected to our business could access one source of truth.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"Visual brand development\",\"text\":\"We created a new logo and other branding elements that tell our story in multiple layers.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand voice and messaging\",\"text\":\"We defined and documented our new way of writing, speaking and the key messages we want to communicate.\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There is power in gathering insights, applying a proven methodology of insights development and planning a strategic way forward. \\n\\nOur brand informs and impacts every aspect of New Word Order, and gives us a clear direction that challenges the usual way of doing things and ensures anyone who comes into contact with our business knows what we offer and how we will solve their problems.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bEj6Q5npVj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94211\",\"94209\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QGxZjexaIq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This process is what we do for our clients every day, what we do for ourselves, and we\'d like to do this for you, too. Start the conversation with us and discover how a fresh brand will breathe new life into your business.\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Talk to us\",\"buttonImage\":[],\"internalLink\":[\"21297\"],\"externalLink\":null,\"buttonStyle\":\"outline\",\"buttonColour\":\"white\"}}},\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-diijVzsy4h\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Type\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our new typeface is bolder, stronger, and positively dripping with character. Check out the Ns, Ws and Rs in our font—Neue Machina.\\n\\nThe monospace and geometric type features with deep ink traps in the heavier weights.\\n\\nWe love it because of its versatility: clean and minimalist in the lighter weights, but the heavier weights are bold in more ways than one. \\n\\n- Deep ink traps in heavier weights\\n- Overshot terminals\\n- Rounded corners\\n- Monospace-like features\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4bQVkM05o8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94212\",\"94215\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MLS2xXnQoC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Words\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We\'re also intent on re-establishing our roots in the power of the written word. A subtle way we\'re doing this is using words over icons. As an example, see how we used the word \'menu\' instead of a hamburger.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gbJaMB0pnh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94214\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-K3KNRmvlzY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Colours\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our brand colours are mostly black and white with pops of red, green and blue. The colours are the basics in the digital environment (RGB). This is our primary palette—we bring strategy and creativity to form something entirely new and entirely what our clients need to solve their problems and unlock their potential.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-btBIAfxeyp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94216\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VDhaVH930A\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Experiences\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The main reason we\'re keeping our brand so pared back is because we want our creative portfolio to sing. Are you loving the immersive full-screen hover state feature as much as we are? We wanted our brand to allow for such experiences as this.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BRfSdhrk5C\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94221\",\"94220\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93540,97284,1,'New Word Order','2022-02-08 03:43:45','2022-02-08 03:43:46','db122124-f398-42af-80c1-5c9182a16627',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'We\'ve stepped up',NULL,NULL,'We\'re big believers in making our outsides match our insides.\n\nOur clients always hear us telling them that this is the essence of brand integrity (because it is). And like all people who are striving to go from good to great, we\'ve stepped up.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-14yyQfdrAP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94210\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ajkeoG129p\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our new brand\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As part of our regular brand review process, we decided our old identity didn\'t have the strength of character our current brand embodies. A lot has changed in the past few years: our market shifted, and we shifted with it.\\n\\n**We used our proven brand methodology on ourselves.**\\n\\nOur unique methodology is about knowing our context, opinions, pain points and applying insights. Adding to this our business strategy—to which our brand strategy must align—and we\'re dressed and messaged for success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand audit\",\"text\":\"We laid out where our brand is currently and the story that led us here.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Stakeholder consultation\",\"text\":\"We spoke to our stakeholders to understand how they view and interact with our brand, and their perspective on what needed to change.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand comparison analysis\",\"text\":\"We learned where our business sits among others in Brisbane, around Australia and the world.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand story\",\"text\":\"We documented  the story of our brand as a central narrative so anyone within or connected to our business could access one source of truth.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"Visual brand development\",\"text\":\"We created a new logo and other branding elements that tell our story in multiple layers.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand voice and messaging\",\"text\":\"We defined and documented our new way of writing, speaking and the key messages we want to communicate.\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There is power in gathering insights, applying a proven methodology of insights development and planning a strategic way forward. \\n\\nOur brand informs and impacts every aspect of New Word Order, and gives us a clear direction that challenges the usual way of doing things and ensures anyone who comes into contact with our business knows what we offer and how we will solve their problems.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bEj6Q5npVj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94211\",\"94209\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QGxZjexaIq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This process is what we do for our clients every day, what we do for ourselves, and we\'d like to do this for you, too. Start the conversation with us and discover how a fresh brand will breathe new life into your business.\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Talk to us\",\"buttonImage\":[],\"internalLink\":[\"21297\"],\"externalLink\":null,\"buttonStyle\":\"outline\",\"buttonColour\":\"white\"}}},\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-diijVzsy4h\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Type\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our new typeface is bolder, stronger, and positively dripping with character. Check out the Ns, Ws and Rs in our font—Neue Machina.\\n\\nThe monospace and geometric type features with deep ink traps in the heavier weights.\\n\\nWe love it because of its versatility: clean and minimalist in the lighter weights, but the heavier weights are bold in more ways than one. \\n\\n- Deep ink traps in heavier weights\\n- Overshot terminals\\n- Rounded corners\\n- Monospace-like features\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4bQVkM05o8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94212\",\"94215\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MLS2xXnQoC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Words\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We\'re also intent on re-establishing our roots in the power of the written word. A subtle way we\'re doing this is using words over icons. As an example, see how we used the word \'menu\' instead of a hamburger.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gbJaMB0pnh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94214\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-K3KNRmvlzY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Colours\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our brand colours are mostly black and white with pops of red, green and blue. The colours are the basics in the digital environment (RGB). This is our primary palette—we bring strategy and creativity to form something entirely new and entirely what our clients need to solve their problems and unlock their potential.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-btBIAfxeyp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94216\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VDhaVH930A\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Experiences\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The main reason we\'re keeping our brand so pared back is because we want our creative portfolio to sing. Are you loving the immersive full-screen hover state feature as much as we are? We wanted our brand to allow for such experiences as this.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BRfSdhrk5C\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94221\",\"94220\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93542,97286,1,'New Word Order','2022-02-08 03:47:18','2022-02-08 03:47:18','f982654a-d6e6-49b6-abbb-59fdf401d47d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'We\'ve stepped up',NULL,NULL,'We\'re big believers in making our outsides match our insides.\n\nOur clients always hear us telling them that this is the essence of brand integrity (because it is). And like all people who are striving to go from good to great, we\'ve stepped up.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-14yyQfdrAP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94210\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ajkeoG129p\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our new brand\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As part of our regular brand review process, we decided our old identity didn\'t have the strength of character our current brand embodies. A lot has changed in the past few years: our market shifted, and we shifted with it.\\n\\n**We used our proven brand methodology on ourselves.**\\n\\nOur unique methodology is about knowing our context, opinions, pain points and applying insights. Adding to this our business strategy—to which our brand strategy must align—and we\'re dressed and messaged for success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand audit\",\"text\":\"We laid out where our brand is currently and the story that led us here.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Stakeholder consultation\",\"text\":\"We spoke to our stakeholders to understand how they view and interact with our brand, and their perspective on what needed to change.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand comparison analysis\",\"text\":\"We learned where our business sits among others in Brisbane, around Australia and the world.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand story\",\"text\":\"We documented  the story of our brand as a central narrative so anyone within or connected to our business could access one source of truth.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"Visual brand development\",\"text\":\"We created a new logo and other branding elements that tell our story in multiple layers.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand voice and messaging\",\"text\":\"We defined and documented our new way of writing, speaking and the key messages we want to communicate.\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There is power in gathering insights, applying a proven methodology of insights development and planning a strategic way forward. \\n\\nOur brand informs and impacts every aspect of New Word Order, and gives us a clear direction that challenges the usual way of doing things and ensures anyone who comes into contact with our business knows what we offer and how we will solve their problems.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bEj6Q5npVj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94211\",\"94209\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QGxZjexaIq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This process is what we do for our clients every day, what we do for ourselves, and we\'d like to do this for you, too. Start the conversation with us and discover how a fresh brand will breathe new life into your business.\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Talk to us\",\"buttonImage\":[],\"internalLink\":[\"21297\"],\"externalLink\":null,\"buttonStyle\":\"outline\",\"buttonColour\":\"white\"}}},\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-diijVzsy4h\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Type\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our new typeface is bolder, stronger, and positively dripping with character. Check out the Ns, Ws and Rs in our font—Neue Machina.\\n\\nThe monospace and geometric type features with deep ink traps in the heavier weights.\\n\\nWe love it because of its versatility: clean and minimalist in the lighter weights, but the heavier weights are bold in more ways than one. \\n\\n- Deep ink traps in heavier weights\\n- Overshot terminals\\n- Rounded corners\\n- Monospace-like features\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4bQVkM05o8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94212\",\"94215\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MLS2xXnQoC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Words\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We\'re also intent on re-establishing our roots in the power of the written word. A subtle way we\'re doing this is using words over icons. As an example, see how we used the word \'menu\' instead of a hamburger.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gbJaMB0pnh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94214\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-K3KNRmvlzY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Colours\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our brand colours are mostly black and white with pops of red, green and blue. The colours are the basics in the digital environment (RGB). This is our primary palette—we bring strategy and creativity to form something entirely new and entirely what our clients need to solve their problems and unlock their potential.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-btBIAfxeyp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94216\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VDhaVH930A\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Experiences\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The main reason we\'re keeping our brand so pared back is because we want our creative portfolio to sing. Are you loving the immersive full-screen hover state feature as much as we are? We wanted our brand to allow for such experiences as this.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BRfSdhrk5C\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94221\",\"94220\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Our new brand','Our clients always hear us telling them that this is the essence of brand integrity (because it is). And like all people who are striving to go from good to great, we\'ve stepped up.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93594,97338,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:11:37','2022-02-08 21:11:37','542b360d-715b-442d-a6c2-8f4235718e86',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93595,97339,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:11:57','2022-02-08 21:11:57','bf74a23a-d98c-4b5b-9cc1-c1f7de57f76b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93596,97340,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:12:17','2022-02-08 21:12:17','6c3d9346-61f8-4f5c-b109-2c71e8f260be',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93597,97341,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:12:37','2022-02-08 21:12:37','84d7d43f-5761-45f7-b915-3fb89b146990',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93598,97342,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:12:57','2022-02-08 21:12:57','b5abbff0-fe1b-45c0-89b2-076a1b08a2c8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93599,97343,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:13:17','2022-02-08 21:13:17','816c33da-cc69-4e60-9068-60d4a5fee7b2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93600,97344,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:13:37','2022-02-08 21:13:37','542e6e71-abbd-4d3c-a712-97d37fbf3e52',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93601,97345,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:13:57','2022-02-08 21:13:57','4f350641-70ca-423f-8280-6338ab39af2c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93602,97346,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:14:17','2022-02-08 21:14:17','9ba45067-8e7e-4deb-9873-024bc355f3cf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93603,97347,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:14:37','2022-02-08 21:14:37','594ba187-140f-43ca-ab57-5720bdc3e1dd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93604,97348,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:14:57','2022-02-08 21:14:57','ada0e06c-0698-49d9-af3d-47a837fd6869',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93605,97349,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:15:17','2022-02-08 21:15:17','6104a717-9461-461a-89f4-4d0a87fd7a42',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93606,97350,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:15:37','2022-02-08 21:15:37','c2a3b6f7-1bad-4422-8ae1-06eec9843046',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93607,97351,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:15:57','2022-02-08 21:15:57','733d4b63-e949-46d6-9339-3a9aa16e1117',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93608,97352,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:16:17','2022-02-08 21:16:17','de96e2fb-aab7-4149-8a57-8ca683445014',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93609,97353,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:16:37','2022-02-08 21:16:37','827fbe89-6d1a-4556-ae14-5ba53cf943b8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93610,97354,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:16:57','2022-02-08 21:16:57','bd3f6271-e553-4410-b8a9-93bfa3a10e77',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93611,97355,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:17:17','2022-02-08 21:17:17','cab672cb-1fab-4f86-933e-b23e832e82f4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93612,97356,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:17:37','2022-02-08 21:17:37','48888be8-5ce6-42f8-9632-155c564c7a91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93613,97357,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:17:57','2022-02-08 21:17:57','e35a2e05-4a50-44ed-9d3d-0a58ab3eb64b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93614,97358,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:18:17','2022-02-08 21:18:17','2d2d6bf2-9997-4c6d-8bc0-95b3ffee1ac9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93615,97359,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:18:38','2022-02-08 21:18:38','e7989f1d-aa49-45a6-a19f-e29d10cd8e78',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93616,97360,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:18:58','2022-02-08 21:18:58','5ba17562-07ce-4580-8b58-07c20fe03023',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93617,97361,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:19:17','2022-02-08 21:19:17','49a2245c-3259-4cb6-92a9-bbb55f659d6c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93618,97362,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:19:38','2022-02-08 21:19:38','01df6367-91f4-44f0-ba59-ab3252652328',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93619,97363,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:19:58','2022-02-08 21:19:58','379f953b-1241-493b-87a5-e3f4000a9b9f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93620,97364,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:20:18','2022-02-08 21:20:18','ae8cb51d-e918-495e-8fd0-b40769afe29b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93621,97365,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:20:38','2022-02-08 21:20:38','ad340bd3-3fd5-437e-8a02-dda111a94952',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93622,97366,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:20:58','2022-02-08 21:20:58','383d3332-962a-443f-99c8-050dc5b0fa1f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93623,97367,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:21:18','2022-02-08 21:21:18','d0cd08dd-2516-48a1-aa7a-970736452e0e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93624,97368,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:21:38','2022-02-08 21:21:38','370aaee8-0078-4012-becf-dd6057d0279e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93625,97369,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:21:58','2022-02-08 21:21:58','53e9bef7-77d4-4344-a6e8-0e170692a881',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93626,97370,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:22:19','2022-02-08 21:22:19','89f5a53b-7297-4249-b450-c10b41394957',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93627,97371,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:22:39','2022-02-08 21:22:39','2d10f10d-e620-43c0-beef-99c0ca4ab70e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93628,97372,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:22:59','2022-02-08 21:22:59','887a7de2-331f-46fb-829c-9d12c48f3648',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93629,97373,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:23:19','2022-02-08 21:23:19','eb6f6276-8b1f-41e2-8547-a60d777fa901',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93630,97374,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:23:39','2022-02-08 21:23:39','60b739b0-9d77-48de-aeb3-32ae462d3177',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93631,97375,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:23:59','2022-02-08 21:23:59','da87f922-929d-41ed-b798-ec621a38f4bb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93632,97376,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:24:19','2022-02-08 21:24:19','3b73d3ed-1d72-43a9-bc25-bb7436589487',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93633,97377,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:24:39','2022-02-08 21:24:39','d45732ea-a485-49d8-90c2-2526ddea4c56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93634,97378,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:24:59','2022-02-08 21:24:59','00166d4c-d1b6-4710-a752-9e61b1e85c09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93635,97379,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:25:19','2022-02-08 21:25:19','e8238e3f-e75b-4170-ad71-92d3e0c92906',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93636,97380,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:25:39','2022-02-08 21:25:39','bd650d4b-82a2-4ac8-ac5b-706a6808b8fb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93637,97381,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:25:59','2022-02-08 21:25:59','a1068a82-5375-4117-a2b2-db6956ec5dbe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93638,97382,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:26:19','2022-02-08 21:26:19','ab59e5f5-233a-47e1-9a5c-0a6839551837',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93639,97383,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:26:39','2022-02-08 21:26:39','786c5aa4-6003-4d50-8da8-3cd2e3d27053',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93640,97384,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:26:59','2022-02-08 21:26:59','e045eb61-415b-429b-bd21-8615d49ffc0f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93641,97385,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 21:27:19','2022-02-08 21:27:19','b21f13fa-4b75-405e-b167-87cf178a09f0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93642,97386,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 22:38:47','2022-02-08 22:38:47','30f50882-aca0-4557-a4f3-deb252e013de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93643,97387,1,'Suzanne Oxford - Brand Audit Submission - 09 Feb., 2022','2022-02-08 23:32:11','2022-02-08 23:32:11','dde9ed5b-671e-48ac-850f-7037bef1dbb0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93644,97388,1,NULL,'2022-02-09 00:56:43','2022-07-27 05:59:31','2951387d-a94c-4305-b2c8-9e5bc79f69c7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'4890000',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(93646,97390,1,'New Word Order','2022-02-09 00:57:55','2022-02-09 00:57:55','72949961-7405-44a9-b8e5-3079b4d640a8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'We\'ve stepped up',NULL,NULL,'We\'re big believers in making our outsides match our insides.\n\nOur clients always hear us telling them that this is the essence of brand integrity (because it is). And like all people who are striving to go from good to great, we\'ve stepped up.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-14yyQfdrAP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94210\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ajkeoG129p\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our new brand\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As part of our regular brand review process, we decided our old identity didn\'t have the strength of character our current brand embodies. A lot has changed in the past few years: our market shifted, and we shifted with it.\\n\\n**We used our proven brand methodology on ourselves.**\\n\\nOur unique methodology is about knowing our context, opinions, pain points and applying insights. Adding to this our business strategy—to which our brand strategy must align—and we\'re dressed and messaged for success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand audit\",\"text\":\"We laid out where our brand is currently and the story that led us here.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Stakeholder consultation\",\"text\":\"We spoke to our stakeholders to understand how they view and interact with our brand, and their perspective on what needed to change.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand comparison analysis\",\"text\":\"We learned where our business sits among others in Brisbane, around Australia and the world.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand story\",\"text\":\"We documented  the story of our brand as a central narrative so anyone within or connected to our business could access one source of truth.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"Visual brand development\",\"text\":\"We created a new logo and other branding elements that tell our story in multiple layers.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand voice and messaging\",\"text\":\"We defined and documented our new way of writing, speaking and the key messages we want to communicate.\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There is power in gathering insights, applying a proven methodology of insights development and planning a strategic way forward. \\n\\nOur brand informs and impacts every aspect of New Word Order, and gives us a clear direction that challenges the usual way of doing things and ensures anyone who comes into contact with our business knows what we offer and how we will solve their problems.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bEj6Q5npVj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94211\",\"94209\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QGxZjexaIq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This process is what we do for our clients every day, what we do for ourselves, and we\'d like to do this for you, too. Start the conversation with us and discover how a fresh brand will breathe new life into your business.\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Talk to us\",\"buttonImage\":[],\"internalLink\":[\"21297\"],\"externalLink\":null,\"buttonStyle\":\"outline\",\"buttonColour\":\"white\"}}},\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-diijVzsy4h\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Type\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our new typeface is bolder, stronger, and positively dripping with character. Check out the Ns, Ws and Rs in our font—Neue Machina.\\n\\nThe monospace and geometric type features with deep ink traps in the heavier weights.\\n\\nWe love it because of its versatility: clean and minimalist in the lighter weights, but the heavier weights are bold in more ways than one. \\n\\n- Deep ink traps in heavier weights\\n- Overshot terminals\\n- Rounded corners\\n- Monospace-like features\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4bQVkM05o8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94212\",\"94215\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MLS2xXnQoC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Words\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We\'re also intent on re-establishing our roots in the power of the written word. A subtle way we\'re doing this is using words over icons. As an example, see how we used the word \'menu\' instead of a hamburger.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gbJaMB0pnh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94214\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-K3KNRmvlzY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Colours\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our brand colours are mostly black and white with pops of red, green and blue. The colours are the basics in the digital environment (RGB). This is our primary palette—we bring strategy and creativity to form something entirely new and entirely what our clients need to solve their problems and unlock their potential.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-btBIAfxeyp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94216\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VDhaVH930A\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Experiences\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The main reason we\'re keeping our brand so pared back is because we want our creative portfolio to sing. Are you loving the immersive full-screen hover state feature as much as we are? We wanted our brand to allow for such experiences as this.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BRfSdhrk5C\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94221\",\"94220\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Our new brand','Our clients always hear us telling them that this is the essence of brand integrity (because it is). And like all people who are striving to go from good to great, we\'ve stepped up.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(95714,99458,1,'6063 QSA Pres 3 1','2022-02-09 02:25:21','2022-02-09 02:25:21','14e7e873-3cf8-404e-9dea-4d2b282df381',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":[],\"originalImageWidth\":0,\"originalImageHeight\":0,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":0,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(96190,99934,1,'About us','2022-02-09 02:35:48','2022-02-09 02:35:48','5c866417-e55d-4977-9b76-f113ee8d294a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17881\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\",\"17921\",\"97259\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | About us','For 20 years we have helped businesses, organisations and governments to solve problems, unlock potential and connect with people to inspire action.','strategy, brand, campaign, behaviour change, engagement, digital, video, content',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(99767,103511,1,'2022-02-09 15:30:08','2022-02-09 05:30:08','2022-02-09 05:30:08','948dc945-cd5e-43ff-aea4-49fa9b9c1bc0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(99768,103512,1,'Ryan Murray - Brand Audit Submission - 10 Feb., 2022','2022-02-09 23:16:11','2022-02-09 23:16:11','f474f4fe-c273-4a6c-9072-4ec8ef093ab3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people','This is some stuff','Cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(99769,103513,1,'Ryan Murray - Brand Audit Submission - 10 Feb., 2022','2022-02-09 23:16:31','2022-02-09 23:16:31','c3f0b0b1-220e-41e0-8dec-b66dbeebfe54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people','This is some stuff','Cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(99770,103514,1,'Ryan Murray - Brand Audit Submission - 10 Feb., 2022','2022-02-09 23:16:51','2022-02-09 23:16:51','6f35992e-fa30-419c-9b68-8fe1fe2d7465',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people','This is some stuff','Cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(99771,103515,1,'Ryan Murray - Brand Audit Submission - 10 Feb., 2022','2022-02-09 23:17:11','2022-02-09 23:17:11','c88cf132-7ea6-463d-a76d-a47c8c96f493',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people','This is some stuff','Cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(99772,103516,1,'Ryan Murray - Brand Audit Submission - 10 Feb., 2022','2022-02-09 23:17:31','2022-02-09 23:17:31','d9c99ccd-aa13-407f-bd31-db39301e049b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people','This is some stuff','Cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(99773,103517,1,'Ryan Murray - Brand Audit Submission - 10 Feb., 2022','2022-02-09 23:17:51','2022-02-09 23:17:51','f243204d-73b7-4e41-90ab-0c1958e1130d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people','This is some stuff','Cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(99774,103518,1,'Ryan Murray - Brand Audit Submission - 10 Feb., 2022','2022-02-09 23:18:11','2022-02-09 23:18:11','858404e3-6fdc-4b10-ba30-d44813a774d4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people','This is some stuff','Cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(99775,103519,1,'Ryan Murray - Brand Audit Submission - 10 Feb., 2022','2022-02-09 23:18:31','2022-02-09 23:18:31','56886631-b23d-40d3-8d91-c1d0ab932e2b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people','This is some stuff','Cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(99776,103520,1,'Ryan Murray - Brand Audit Submission - 10 Feb., 2022','2022-02-09 23:18:52','2022-02-09 23:18:52','817489f4-0438-4909-9594-7ee354bfacbd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people','This is some stuff','Cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(99777,103521,1,'Ryan Murray - Brand Audit Submission - 10 Feb., 2022','2022-02-09 23:19:11','2022-02-09 23:19:11','3b996b0a-fae4-43b9-b654-faa940c6d772',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people','This is some stuff','Cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(99778,103522,1,'Ryan Murray - Brand Audit Submission - 10 Feb., 2022','2022-02-09 23:19:31','2022-02-09 23:19:31','319c4213-721a-4825-a145-bd090e21f95a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people','This is some stuff','Cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(99779,103523,1,'Ryan Murray - Brand Audit Submission - 10 Feb., 2022','2022-02-09 23:19:51','2022-02-09 23:19:51','ebafc22e-0db0-4d0e-b05c-cf50ab84554e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people','This is some stuff','Cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(99780,103524,1,'Ryan Murray - Brand Audit Submission - 10 Feb., 2022','2022-02-09 23:20:11','2022-02-09 23:20:11','9f088919-1629-4787-89b4-7e78430ccfe3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people','This is some stuff','Cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(99781,103525,1,'Ryan Murray - Brand Audit Submission - 10 Feb., 2022','2022-02-09 23:20:45','2022-02-09 23:20:45','0a294810-dc8f-4776-90b8-087fd389aa15',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people','This is some stuff','Cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(99782,103526,1,'Ryan Murray - Brand Audit Submission - 10 Feb., 2022','2022-02-09 23:21:04','2022-02-09 23:21:04','2512edec-6dce-4855-b092-c4c544f06799',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people','This is some stuff','Cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(99783,103527,1,'Ryan Murray - Brand Audit Submission - 10 Feb., 2022','2022-02-09 23:21:24','2022-02-09 23:21:24','a88c815e-ba7c-4cdb-94eb-c600e3d18d2d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people','This is some stuff','Cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(99784,103528,1,'Ryan Murray - Brand Audit Submission - 10 Feb., 2022','2022-02-09 23:21:44','2022-02-09 23:21:44','01f6b9e6-e246-448c-8042-950ff1884685',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people','This is some stuff','Cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(99785,103529,1,'Ryan Murray - Brand Audit Submission - 10 Feb., 2022','2022-02-09 23:22:04','2022-02-09 23:22:04','72c42693-c7bd-4836-b038-be0622ec0638',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people','This is some stuff','Cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(99786,103530,1,'Ryan Murray - Brand Audit Submission - 10 Feb., 2022','2022-02-09 23:22:24','2022-02-09 23:22:24','c490419b-461b-4823-8dbe-b0954cea91ad',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people','This is some stuff','Cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(99787,103531,1,'Ryan Murray - Brand Audit Submission - 10 Feb., 2022','2022-02-09 23:22:44','2022-02-09 23:22:44','97b8d4b9-5f15-4cdd-a7d1-33929e3200ce',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people','This is some stuff','Cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(99788,103532,1,'Ryan Murray - Brand Audit Submission - 10 Feb., 2022','2022-02-09 23:23:05','2022-02-09 23:23:05','548c9991-2f2c-4043-86fd-3068dacadb53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people','This is some stuff','Cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(99789,103533,1,'Ryan Murray - Brand Audit Submission - 10 Feb., 2022','2022-02-09 23:23:25','2022-02-09 23:23:25','7fba1a7d-5436-446c-88dd-79fe3e0e0551',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people','This is some stuff','Cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(99790,103534,1,'Ryan Murray - Brand Audit Submission - 10 Feb., 2022','2022-02-09 23:23:45','2022-02-09 23:23:45','d93d8b4c-6233-4b27-8fa1-f8079d91acb5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people','This is some stuff','Cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(99791,103535,1,'Ryan Murray - Brand Audit Submission - 10 Feb., 2022','2022-02-09 23:24:04','2022-02-09 23:24:04','6f03d05d-0bf0-4977-a9c1-035c70de6438',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people','This is some stuff','Cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(99792,103536,1,'Ryan Murray - Brand Audit Submission - 10 Feb., 2022','2022-02-09 23:24:25','2022-02-09 23:24:25','f734e696-c8d3-45e0-88bb-00544808f8c1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people','This is some stuff','Cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(99793,103537,1,'Ryan Murray - Brand Audit Submission - 10 Feb., 2022','2022-02-09 23:24:44','2022-02-09 23:24:44','a3bda763-6ea5-416f-8eee-84c7d41be865',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people','This is some stuff','Cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(99794,103538,1,'Ryan Murray - Brand Audit Submission - 10 Feb., 2022','2022-02-09 23:25:05','2022-02-09 23:25:05','3ba34d7d-645c-4113-9140-8a6cb7112930',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people','This is some stuff','Cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(99795,103539,1,'Ryan Murray - Brand Audit Submission - 10 Feb., 2022','2022-02-09 23:25:24','2022-02-09 23:25:24','61b558b6-7964-4503-9bc2-a269b8daa9ce',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people','This is some stuff','Cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(99796,103540,1,'Ryan Murray - Brand Audit Submission - 10 Feb., 2022','2022-02-09 23:35:11','2022-02-09 23:35:11','2d2ed970-377d-48c8-8903-33b29c73edba',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people','This is some stuff','Cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(99797,103541,1,'Ryan Murray - Brand Audit Submission - 10 Feb., 2022','2022-02-09 23:35:54','2022-02-09 23:35:54','ff30a84f-c3ff-4a65-933e-e696a86869c7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Test','another test','I have great values','about our culture','This is about my people','This is some stuff','Cool',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(103125,106869,1,'6228 Chevron Roadhouse Concepts 3 CC','2022-02-11 00:38:27','2022-02-11 00:38:27','de780a9e-245c-464f-8ff9-a167e058053e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":[],\"originalImageWidth\":0,\"originalImageHeight\":0,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":0,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(103126,106870,1,'8010 Chevron Coffee Plus Concepts 3 CC','2022-02-11 00:38:32','2022-02-11 00:38:32','08c7bbd6-2ae6-467b-9581-eb9fc6286496',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":[],\"originalImageWidth\":0,\"originalImageHeight\":0,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":0,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(103127,106871,1,'2022-02-11 12:00:18','2022-02-11 02:00:18','2022-02-11 02:00:18','a6ba8d15-2887-43d5-83e9-a4d39b066852',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(103128,106872,1,'2022-02-11 12:33:40','2022-02-11 02:33:40','2022-02-11 02:33:40','538e5e62-e69f-4262-979c-95b919062b4d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(116844,120588,1,'Contact ','2022-02-22 23:50:42','2022-02-22 23:50:42','13ffdace-70de-4438-b78c-4204f1dd93f1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dJRNyHHzcn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Contact us\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Like what you see? Get in touch with us—we can’t wait to meet you.\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":\"Contact\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FZlPQYGhIZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<!--[if lte IE 8]>\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2-legacy.js\\\"></script>\\n<![endif]-->\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n\\tregion: \\\"na1\\\",\\n\\tportalId: \\\"8394441\\\",\\n\\tformId: \\\"74668c3f-aa7f-4ec7-aa81-c8ce26655bfe\\\"\\n});\\n</script>\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | Contact us','We are a creative agency that specialises in strategy, brand and behaviour change. Get in touch with us—we can’t wait to meet you.','strategy, brand, campaign, behaviour change, engagement, content, digital',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(116846,120590,1,'Contact ','2022-02-22 23:52:06','2022-02-22 23:52:06','db9c3745-0f64-4fd5-98cb-07f466304831',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dJRNyHHzcn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Contact us\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Like what you see? Get in touch with us—we can’t wait to meet you.\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":\"Contact\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qvuqlYfIqY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-JIUNKK7uSu\",\"content\":{\"fields\":{\"freeformForm\":2,\"backgroundColour\":\"bg-black\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | Contact us','We are a creative agency that specialises in strategy, brand and behaviour change. Get in touch with us—we can’t wait to meet you.','strategy, brand, campaign, behaviour change, engagement, content, digital',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(116879,120623,1,'Home','2022-02-23 02:56:20','2022-02-23 02:56:20','61b2feda-5052-443a-bd9e-98b4f9f23f1b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | Brisbane','It\'s time for change. Proven strategy, fresh creative and powerful execution that will change your business.','strategy, brand, campaign, behaviour change, engagement, content, digital',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(119728,123478,1,'2022-02-23 13:58:43','2022-02-23 03:58:43','2022-02-23 03:58:43','7689fd43-0eeb-479e-a91c-a28797f009d2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(119730,123480,1,'Contact ','2022-02-23 23:10:01','2022-02-23 23:10:01','67ae2170-62ba-4289-b85c-f52c1f92df7d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dJRNyHHzcn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Contact us\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Like what you see? Get in touch with us—we can’t wait to meet you.\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":\"Contact\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qvuqlYfIqY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-JIUNKK7uSu\",\"content\":{\"fields\":{\"freeformForm\":2,\"backgroundColour\":\"bg-black\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2RtDIpwkus\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<!--[if lte IE 8]>\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2-legacy.js\\\"></script>\\n<![endif]-->\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n\\tregion: \\\"na1\\\",\\n\\tportalId: \\\"8394441\\\",\\n\\tformId: \\\"74668c3f-aa7f-4ec7-aa81-c8ce26655bfe\\\"\\n});\\n</script>\",\"backgroundColour\":\"bg-black\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | Contact us','We are a creative agency that specialises in strategy, brand and behaviour change. Get in touch with us—we can’t wait to meet you.','strategy, brand, campaign, behaviour change, engagement, content, digital',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(119732,123482,1,'Contact ','2022-02-23 23:10:12','2022-02-23 23:10:12','224e3674-93b2-4c37-aaaf-afbc470c0cf6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dJRNyHHzcn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Contact us\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Like what you see? Get in touch with us—we can’t wait to meet you.\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":\"Contact\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2RtDIpwkus\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<!--[if lte IE 8]>\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2-legacy.js\\\"></script>\\n<![endif]-->\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n\\tregion: \\\"na1\\\",\\n\\tportalId: \\\"8394441\\\",\\n\\tformId: \\\"74668c3f-aa7f-4ec7-aa81-c8ce26655bfe\\\"\\n});\\n</script>\",\"backgroundColour\":\"bg-black\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | Contact us','We are a creative agency that specialises in strategy, brand and behaviour change. Get in touch with us—we can’t wait to meet you.','strategy, brand, campaign, behaviour change, engagement, content, digital',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(119734,123484,1,'About us','2022-02-28 04:42:58','2022-02-28 04:42:58','06d5a08d-a2c9-4503-84ff-a7f978473ad6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17881\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\",\"17921\",\"97259\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | About us','For 20 years we have helped businesses, organisations and governments to solve problems, unlock potential and connect with people to inspire action.','strategy, brand, campaign, behaviour change, engagement, digital, video, content',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136213,139963,1,'New T Cs final','2022-03-28 03:20:07','2022-05-17 01:56:28','78e56887-3b30-4ce5-b179-30cd31b35db4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":[],\"originalImageWidth\":0,\"originalImageHeight\":0,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":0,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136217,139967,1,'Queensland Academy of Sport','2022-04-21 04:01:59','2022-08-15 02:54:41','aad98418-1b1f-4eac-b5b8-0f923d589348',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'You for 2032 campaign',NULL,NULL,'What New Word Order and the Queensland Academy of Sport (QAS) have in common is a keen eye for talent.\n\nSo when QAS asked us to help identify and develop young Queensland athletes capable of winning medals for Australia at the 2032 Brisbane Olympic and Paralympic Games, we (high) jumped at the chance.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139975\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YLmNoEn3SV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The QAS talent identification campaign is aimed at Queenslander athletes aged between 13 and 23. It’s the first step in a development journey for an aspiring athlete to becoming an elite, Olympic-level athlete ready to compete on the world stage in their own backyard.\\n\\nOur goal was to build awareness of the campaign and drive as many potential athletes as possible to apply.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0D5dQI141H\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139977\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E7bk6zGGNd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We know the talent identification process for an athlete, and all the development that follows, is an inspiring, aspirational and immensely personal journey, and we wanted the campaign’s language to reflect each of those aspects of the journey.\\nVisually, we recognised that the traditional medal colours wouldn’t necessarily display well and could be limiting, so we chose to update them to create a much brighter, target audience-friendly colour palette.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FITIFbeFNO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139976\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fo1rrBFGWB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"After creating the campaign name, tagline and logo, we reinforced the theme with a digital platform and marketing collateral.\\nWe developed an online application platform designed to appeal to young audiences and our visual identity captures images of some of Queensland’s most well-known Olympic gold medallists.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4tbFuQYNR3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139978\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dHzG1lmF6k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The result is an inspiring campaign of aspirational language and engaging images that sell the dream of representing Australia in the 2032 Olympics.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Queensland Academy of Sport','What New Word Order and the Queensland Academy of Sport (QAS) have in common is a keen eye for talent.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136218,139968,1,'What\'s a No. 3? copy','2022-04-21 04:02:00','2022-04-21 04:02:00','09131529-6560-42bf-bbdb-22ac31023d1f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a No. 3? Anything that shouldn\'t go down the loo.',NULL,NULL,'The playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way. We set out to capture the attention of kids and adults with an innovative and integrated campaign that featured interactive and creative design, animation, illustration, merchandise and video.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YLmNoEn3SV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Water and waste treatment are essential services and flushing the wrong items down the toilet costs Queensland Urban Utilities $200 million every year.\\n\\nUrban Utilities asked us to think of an original, creative campaign idea that would resonate with Queensland families. Our solution was the No. 3 campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FITIFbeFNO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47723\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lKKKRlcirp\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"So, what\'s a No. 3? It\'s anything that shouldn’t go down the loo. Talking about our toilet habits is never comfortable. To navigate our way around the taboo topic, our creative team used humour to influence the bright, quirky look and feel of the entire campaign.\\n\\nThe playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-97JqWmRp6Z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/325104551\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rwksXdZztM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47725\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-szxmUd2L8D\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Result\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The campaign reached 29,790 people in its first month, and we quickly saw signs of behaviour change. \\n\\nAccording to independent market research, 50% of people will no longer flush wet wipes, 48% of people will no longer flush tampons, 47% will no longer flush condoms and 45% will no longer flush cotton buds as a result of seeing this campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xxFbGAqcFU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47726\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2exJaiRsw5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iQhxL9nSze\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\",\"new3\",\"new4\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"61829\"],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/635014768?h=d3d29c9d60&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"GAMETOILET_HD_sound.mp4\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new3\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":[\"61830\"],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/635015208?h=4079228e62&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"VIDEOAD_2_HD_sound\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new4\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/635025685?h=b22d402bd4&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"QUU Ekka footage\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FFU7esnnDy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47727\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QpOS0cp79X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47734\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136220,139970,1,'You for 2032 campaign','2022-04-21 04:09:31','2022-04-21 04:09:31','4e6e6234-9822-4a64-99b9-856d8f020560',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What New Word Order and the Queensland Academy of Sport (QAS) have in common is a keen eye for talent.',NULL,NULL,'So when QAS asked us to help identify and develop young Queensland athletes capable of winning medals for Australia at the 2032 Brisbane Olympic and Paralympic Games, we (high) jumped at the chance.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YLmNoEn3SV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\",\"new3\",\"new4\",\"new5\",\"new6\",\"new7\",\"new8\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The QAS talent identification campaign is aimed at Queenslander athletes aged between 13 and 23. It’s the first step in a development journey for an aspiring athlete to becoming an elite, Olympic-level athlete ready to compete on the world stage in their own backyard.\\n\\nOur goal was to build awareness of the campaign and drive as many potential athletes as possible to apply.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new4\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We know the talent identification process for an athlete, and all the development that follows, is an inspiring, aspirational and immensely personal journey, and we wanted the campaign’s language to reflect each of those aspects of the journey.\\n\\nVisually, we recognised that the traditional medal colours wouldn’t necessarily display well and could be limiting, so we chose to update them to create a much brighter, target audience-friendly colour palette.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new5\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new6\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"After creating the campaign name, tagline and logo, we reinforced the theme with a digital platform and marketing collateral.\\nWe developed an online application platform designed to appeal to young audiences and our visual identity captures images of some of Queensland’s most well-known Olympic gold medallists.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new7\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new8\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The result is an inspiring campaign of aspirational language and engaging images that sell the dream of representing Australia in the 2032 Olympics.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FITIFbeFNO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rwksXdZztM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-szxmUd2L8D\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Result\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The campaign reached 29,790 people in its first month, and we quickly saw signs of behaviour change. \\n\\nAccording to independent market research, 50% of people will no longer flush wet wipes, 48% of people will no longer flush tampons, 47% will no longer flush condoms and 45% will no longer flush cotton buds as a result of seeing this campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xxFbGAqcFU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2exJaiRsw5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FFU7esnnDy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QpOS0cp79X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136222,139972,1,'You for 2032 campaign','2022-04-21 04:16:36','2022-04-21 04:16:36','482583f4-9096-409c-9a1b-7992ee285a83',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What New Word Order and the Queensland Academy of Sport (QAS) have in common is a keen eye for talent.',NULL,NULL,'So when QAS asked us to help identify and develop young Queensland athletes capable of winning medals for Australia at the 2032 Brisbane Olympic and Paralympic Games, we (high) jumped at the chance.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YLmNoEn3SV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The QAS talent identification campaign is aimed at Queenslander athletes aged between 13 and 23. It’s the first step in a development journey for an aspiring athlete to becoming an elite, Olympic-level athlete ready to compete on the world stage in their own backyard.\\n\\nOur goal was to build awareness of the campaign and drive as many potential athletes as possible to apply.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E7bk6zGGNd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We know the talent identification process for an athlete, and all the development that follows, is an inspiring, aspirational and immensely personal journey, and we wanted the campaign’s language to reflect each of those aspects of the journey.\\nVisually, we recognised that the traditional medal colours wouldn’t necessarily display well and could be limiting, so we chose to update them to create a much brighter, target audience-friendly colour palette.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fo1rrBFGWB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"After creating the campaign name, tagline and logo, we reinforced the theme with a digital platform and marketing collateral.\\nWe developed an online application platform designed to appeal to young audiences and our visual identity captures images of some of Queensland’s most well-known Olympic gold medallists.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dHzG1lmF6k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The result is an inspiring campaign of aspirational language and engaging images that sell the dream of representing Australia in the 2032 Olympics.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FITIFbeFNO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":\"\"}}}}},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136223,139973,1,'Heart HQ','2022-04-21 04:17:13','2022-04-21 04:17:15','3d5f55bb-ff9e-4900-94b3-2300c7a9f79f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'World-class medical with heart',NULL,NULL,'Big ambitions need a brand that accurately reflects their vision and mission, and that’s exactly what we sought to deliver for this client. With Heart HQ, and with the enormous amount of collateral that supports it, we’ve well and truly delivered this.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-P3bQXxcsfs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44878\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uicOuPt9of\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Sunshine Coast Heart Specialists was growing and changing. \\n\\nIn six years, the cardiology practice had grown to nearly 50 staff with rooms throughout the coast. Their cardiologists represented all of the possible sub-specialties within their profession. Within weeks, they would move to new purpose-built premises at Sippy Downs. They were about to open their own coronary CT clinic to the public and a heart murmur clinic to support GPs—both nation-leading initiatives.\\n\\nThe directors realised their geography-specific name would limit their ability to keep growing, and so renaming and rebranding was a strong need.\\n\\nTheir growth had also occurred at such a rate that there was strategic work needed to understand their market share and to form a marketing strategy that would offer them opportunities for segmentation. Growth is reliant on satisfied referring GPs and specialists, and so attention could never be removed from this area.\\n\\nFinally, such growth was also outstripping their capacity to fill the need. Cardiology is a highly specialised field within medicine, and to grow sustainably, they needed to attract more associates.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Lgp01pReVY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44873\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aTg3yWEGh3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Objective\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The practice needed a new name and brand assets for the business to accurately convey the mission and vision of the business, and to grow the business’s referrer and patient networks.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gG5PvaSbvX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44864\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oXH0AQY2PC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our brand strategy drew on customer and referrer interviews, competitor insights and employee workshops, which also helped to define the brand values of the business. \\n\\nIt was clear the practice and the individual directors were held in high esteem by their medical colleagues. They introduced surgical procedures to the Sunshine Coast that were, until then, only practised by a few in major cities. They were introducing clinics and services that had not been seen in regional areas in Australia. This gave us the confidence to be able to propose a tagline that truthfully boasted, ‘world-class cardiac care’.\\n\\nThe second part of the tagline reads: ‘…on the Sunshine Coast’. To compensate for the move away from the regionalisation in their original brand name—Sunshine Coast Heart Specialists—we added it to the tagline. The reason for this is that patients along the coast appreciated the practice was the only place where they could receive the full spectrum of care without having to travel to Brisbane.\\n\\nFinally, an important branding insight from our research was that patients were on a health journey—sometimes quite a precarious one—and could be experiencing anxiety. Patients told us they appreciated the kindness each doctor showed to them in their time of need. Simply promoting expertise could come across as cold and would not fairly represent the doctors’ deep commitment to quality care. So the Heart HQ brand connects with patients on a personal level and makes them feel reassured that they matter.\\n\\nIt’s this mix of strategy and heart that makes Heart HQ a brand that will stand tall among all the others.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ISdJyIN6AW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44874\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDNF080GkR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"A name, tagline, brand visual identity, website, signage and countless assets that match up with Heart HQ’s brand promise of delivering world-class cardiac care on the Sunshine Coast.\\n\\nThe quality of the brand assets significantly differentiates Heart HQ from all other competitor practices.\\n\\nCreatively, the brand is modern, refreshing and arguably not what you would expect from an organisation in the medical field – but at the same time, the language is warm, supportive and with just the right amount of authority.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Np5NPasoP9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"##### Suzanne and her team came highly recommended. It was a great journey working with them to develop our new brand and we were very impressed with their ideas, enthusiasm and innovation. We have a new brand, a new identity and the confidence now to deliver on our growth plans. \\n\\n**Dr Peter Larsen**\\n<br>Managing Director – Heart HQ\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3VvPbVRO0Q\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45205\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AUTeHLiAy1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"##### \\\"NWO is part of our success journey.\\\"\\n\\n**Dr Peter Larsen**\\n<br>Managing Director – Heart HQ\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136225,139975,1,'22 QAS Website','2022-04-21 05:48:06','2022-04-21 05:48:06','4c3ca762-79e9-48ba-8d52-b03d89be3197',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x620_crop_center-center_82_line/22_QAS-Website.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1241_crop_center-center_82_line/22_QAS-Website.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x517_crop_center-center_82_line/22_QAS-Website.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1034_crop_center-center_82_line/22_QAS-Website.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x413_crop_center-center_82_line/22_QAS-Website.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x827_crop_center-center_82_line/22_QAS-Website.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x310_crop_center-center_82_line/22_QAS-Website.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x258_crop_center-center_82_line/22_QAS-Website.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x620_crop_center-center_82_line/22_QAS-Website.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1241_crop_center-center_82_line/22_QAS-Website.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x517_crop_center-center_82_line/22_QAS-Website.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1034_crop_center-center_82_line/22_QAS-Website.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x413_crop_center-center_82_line/22_QAS-Website.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x827_crop_center-center_82_line/22_QAS-Website.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x310_crop_center-center_82_line/22_QAS-Website.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x258_crop_center-center_82_line/22_QAS-Website.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":620,\"3072\":1241,\"1280\":517,\"2560\":1034,\"1024\":413,\"2048\":827,\"768\":310,\"640\":258},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":2104,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAGABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAQb/xAAdEAABBAIDAAAAAAAAAAAAAAACAAEDEQQSEyFR/8QAFQEBAQAAAAAAAAAAAAAAAAAAAAH/xAAYEQEBAAMAAAAAAAAAAAAAAAAAEQEhUf/aAAwDAQACEQMRAD8Ai8YgYXaQdmu0Bk8RlUUenftqYs2vX//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#0d0d0d\",\"#d09d67\",\"#1b94b9\",\"#695f5b\",\"#0c688c\"],\"lightness\":33,\"placeholderWidth\":1536,\"placeholderHeight\":620,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136226,139976,1,'22 QAS Website2','2022-04-21 05:48:36','2022-04-21 05:48:36','b91da66c-acdd-4b5a-8ccc-54ded07045f1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x768_crop_center-center_82_line/22_QAS-Website2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1537_crop_center-center_82_line/22_QAS-Website2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x640_crop_center-center_82_line/22_QAS-Website2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1281_crop_center-center_82_line/22_QAS-Website2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x512_crop_center-center_82_line/22_QAS-Website2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1025_crop_center-center_82_line/22_QAS-Website2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x384_crop_center-center_82_line/22_QAS-Website2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x320_crop_center-center_82_line/22_QAS-Website2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x768_crop_center-center_82_line/22_QAS-Website2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1537_crop_center-center_82_line/22_QAS-Website2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x640_crop_center-center_82_line/22_QAS-Website2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1281_crop_center-center_82_line/22_QAS-Website2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x512_crop_center-center_82_line/22_QAS-Website2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1025_crop_center-center_82_line/22_QAS-Website2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x384_crop_center-center_82_line/22_QAS-Website2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x320_crop_center-center_82_line/22_QAS-Website2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"3072\":1537,\"1280\":640,\"2560\":1281,\"1024\":512,\"2048\":1025,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":2607,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAIABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABAX/xAAgEAACAQQBBQAAAAAAAAAAAAABAgMABAYRYQUSEyFR/8QAFQEBAQAAAAAAAAAAAAAAAAAAAAH/xAAZEQEAAgMAAAAAAAAAAAAAAAAAARECIWH/2gAMAwEAAhEDEQA/AK2UoZOniI288o7w58XrWuaAGNFra2ndnnCyDcazNsgj5xUjq5Ven//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#252b2c\",\"#d8d7d6\",\"#bd483f\",\"#848686\",\"#b57155\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136227,139977,1,'22 QAS Website3','2022-04-21 05:48:48','2022-04-21 05:48:48','d7271c11-4f1c-4b7e-852e-2076db6aea45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_QAS-Website3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_QAS-Website3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_QAS-Website3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_QAS-Website3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_QAS-Website3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_QAS-Website3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_QAS-Website3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_QAS-Website3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_QAS-Website3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_QAS-Website3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_QAS-Website3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_QAS-Website3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_QAS-Website3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_QAS-Website3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_QAS-Website3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_QAS-Website3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":768,\"2560\":1536,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":384},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":3125,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFAABAAAAAAAAAAAAAAAAAAAABf/EACMQAAIBAgQHAAAAAAAAAAAAAAEDAgAFBBIhMTQ1QWFxcrH/xAAWAQEBAQAAAAAAAAAAAAAAAAAEAwL/xAAkEQABAgQFBQAAAAAAAAAAAAABAAMCBAUxESEjM3ESFDI0gf/aAAwDAQACEQMRAD8APseFai6hhknRRiBE9TRXGi/D0QXSYh22o5ZNsg8ojLOsEy1zDcdq20/BJaTgxN8kV5gz0ZdayFs0PbOYT9T8qsp5pNV2foSq+Cw3mg1L2TwFSlbB5K//2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#17516d\",\"#f29e1f\",\"#b43222\",\"#76c9dd\",\"#736413\"],\"lightness\":42,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136228,139978,1,'22 QAS Website4','2022-04-21 05:50:21','2022-04-21 05:50:21','5252ef5f-3b58-4b6b-b40e-1c7c3f81683f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_QAS-Website4.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_QAS-Website4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_QAS-Website4.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_QAS-Website4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_QAS-Website4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_QAS-Website4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_QAS-Website4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_QAS-Website4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_QAS-Website4.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_QAS-Website4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_QAS-Website4.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_QAS-Website4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_QAS-Website4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_QAS-Website4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_QAS-Website4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_QAS-Website4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":768,\"2560\":1536,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":384},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":3125,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAwEF/8QAIRAAAgIBAwUBAAAAAAAAAAAAAQIDBQAhc7EEEjEyNUH/xAAWAQEBAQAAAAAAAAAAAAAAAAACAwH/xAAdEQACAQQDAAAAAAAAAAAAAAAAAQIRMjNRExQx/9oADAMBAAIRAxEAPwDXtJ3jswgLdpgYkA+SAcjGvOtDngYNJPJJYIHZiG6cNqf3TKyyMUaddbHtPqpsPwcxXk5WFpPaLZHOJ+mqw//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e2e0e0\",\"#31627b\",\"#a03e21\",\"#c4882a\",\"#87949a\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136229,139979,1,'You for 2032 campaign','2022-04-21 05:52:06','2022-04-21 05:52:06','c80d4fba-409c-4f96-b063-374e14d0548d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What New Word Order and the Queensland Academy of Sport (QAS) have in common is a keen eye for talent.',NULL,NULL,'So when QAS asked us to help identify and develop young Queensland athletes capable of winning medals for Australia at the 2032 Brisbane Olympic and Paralympic Games, we (high) jumped at the chance.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139975\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YLmNoEn3SV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The QAS talent identification campaign is aimed at Queenslander athletes aged between 13 and 23. It’s the first step in a development journey for an aspiring athlete to becoming an elite, Olympic-level athlete ready to compete on the world stage in their own backyard.\\n\\nOur goal was to build awareness of the campaign and drive as many potential athletes as possible to apply.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0D5dQI141H\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139977\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E7bk6zGGNd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We know the talent identification process for an athlete, and all the development that follows, is an inspiring, aspirational and immensely personal journey, and we wanted the campaign’s language to reflect each of those aspects of the journey.\\nVisually, we recognised that the traditional medal colours wouldn’t necessarily display well and could be limiting, so we chose to update them to create a much brighter, target audience-friendly colour palette.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FITIFbeFNO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139976\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fo1rrBFGWB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"After creating the campaign name, tagline and logo, we reinforced the theme with a digital platform and marketing collateral.\\nWe developed an online application platform designed to appeal to young audiences and our visual identity captures images of some of Queensland’s most well-known Olympic gold medallists.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4tbFuQYNR3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139978\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dHzG1lmF6k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The result is an inspiring campaign of aspirational language and engaging images that sell the dream of representing Australia in the 2032 Olympics.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-maQX9wgmtJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"#####We’re thrilled to have had New Word Order alongside us to build the dream for young athletes. \\n\\n**Chloe Lindsay**\\n<br>Principal Project Officer at Queensland Academy of Sport\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136231,139981,1,'You for 2032 campaign','2022-04-21 05:53:07','2022-04-21 05:53:07','298e153d-7f4f-459a-b36b-6ebe09f99b64',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What New Word Order and the Queensland Academy of Sport (QAS) have in common is a keen eye for talent.',NULL,NULL,'So when QAS asked us to help identify and develop young Queensland athletes capable of winning medals for Australia at the 2032 Brisbane Olympic and Paralympic Games, we (high) jumped at the chance.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139975\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YLmNoEn3SV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The QAS talent identification campaign is aimed at Queenslander athletes aged between 13 and 23. It’s the first step in a development journey for an aspiring athlete to becoming an elite, Olympic-level athlete ready to compete on the world stage in their own backyard.\\n\\nOur goal was to build awareness of the campaign and drive as many potential athletes as possible to apply.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0D5dQI141H\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139977\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E7bk6zGGNd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We know the talent identification process for an athlete, and all the development that follows, is an inspiring, aspirational and immensely personal journey, and we wanted the campaign’s language to reflect each of those aspects of the journey.\\nVisually, we recognised that the traditional medal colours wouldn’t necessarily display well and could be limiting, so we chose to update them to create a much brighter, target audience-friendly colour palette.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FITIFbeFNO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139976\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fo1rrBFGWB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"After creating the campaign name, tagline and logo, we reinforced the theme with a digital platform and marketing collateral.\\nWe developed an online application platform designed to appeal to young audiences and our visual identity captures images of some of Queensland’s most well-known Olympic gold medallists.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4tbFuQYNR3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139978\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dHzG1lmF6k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The result is an inspiring campaign of aspirational language and engaging images that sell the dream of representing Australia in the 2032 Olympics.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-maQX9wgmtJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"#####We’re thrilled to have had New Word Order alongside us to build the dream for young athletes. \\n\\n**Chloe Lindsay**\\n<br>Principal Project Officer at Queensland Academy of Sport\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136233,139983,1,'You for 2032 campaign','2022-04-21 05:56:43','2022-04-21 05:56:43','dd5b03fa-a4d4-4223-9262-881f580b3f66',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What New Word Order and the Queensland Academy of Sport (QAS) have in common is a keen eye for talent.',NULL,NULL,'So when QAS asked us to help identify and develop young Queensland athletes capable of winning medals for Australia at the 2032 Brisbane Olympic and Paralympic Games, we (high) jumped at the chance.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139975\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YLmNoEn3SV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The QAS talent identification campaign is aimed at Queenslander athletes aged between 13 and 23. It’s the first step in a development journey for an aspiring athlete to becoming an elite, Olympic-level athlete ready to compete on the world stage in their own backyard.\\n\\nOur goal was to build awareness of the campaign and drive as many potential athletes as possible to apply.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0D5dQI141H\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139977\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E7bk6zGGNd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We know the talent identification process for an athlete, and all the development that follows, is an inspiring, aspirational and immensely personal journey, and we wanted the campaign’s language to reflect each of those aspects of the journey.\\nVisually, we recognised that the traditional medal colours wouldn’t necessarily display well and could be limiting, so we chose to update them to create a much brighter, target audience-friendly colour palette.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FITIFbeFNO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139976\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fo1rrBFGWB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"After creating the campaign name, tagline and logo, we reinforced the theme with a digital platform and marketing collateral.\\nWe developed an online application platform designed to appeal to young audiences and our visual identity captures images of some of Queensland’s most well-known Olympic gold medallists.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4tbFuQYNR3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139978\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dHzG1lmF6k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The result is an inspiring campaign of aspirational language and engaging images that sell the dream of representing Australia in the 2032 Olympics.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-maQX9wgmtJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"#####We’re thrilled to have had New Word Order alongside us to build the dream for young athletes. \\n\\n**Chloe Lindsay**\\n<br>Principal Project Officer at Queensland Academy of Sport\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136235,139985,1,'Queensland Academy of Sport','2022-04-21 05:59:36','2022-04-21 05:59:36','a8e9d872-7285-4dba-8526-54c89ec2d44b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'You for 2032 campaign',NULL,NULL,'What New Word Order and the Queensland Academy of Sport (QAS) have in common is a keen eye for talent.\n\nSo when QAS asked us to help identify and develop young Queensland athletes capable of winning medals for Australia at the 2032 Brisbane Olympic and Paralympic Games, we (high) jumped at the chance.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139975\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YLmNoEn3SV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The QAS talent identification campaign is aimed at Queenslander athletes aged between 13 and 23. It’s the first step in a development journey for an aspiring athlete to becoming an elite, Olympic-level athlete ready to compete on the world stage in their own backyard.\\n\\nOur goal was to build awareness of the campaign and drive as many potential athletes as possible to apply.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0D5dQI141H\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139977\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E7bk6zGGNd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We know the talent identification process for an athlete, and all the development that follows, is an inspiring, aspirational and immensely personal journey, and we wanted the campaign’s language to reflect each of those aspects of the journey.\\nVisually, we recognised that the traditional medal colours wouldn’t necessarily display well and could be limiting, so we chose to update them to create a much brighter, target audience-friendly colour palette.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FITIFbeFNO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139976\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fo1rrBFGWB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"After creating the campaign name, tagline and logo, we reinforced the theme with a digital platform and marketing collateral.\\nWe developed an online application platform designed to appeal to young audiences and our visual identity captures images of some of Queensland’s most well-known Olympic gold medallists.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4tbFuQYNR3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139978\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dHzG1lmF6k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The result is an inspiring campaign of aspirational language and engaging images that sell the dream of representing Australia in the 2032 Olympics.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-maQX9wgmtJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"#####We’re thrilled to have had New Word Order alongside us to build the dream for young athletes. \\n\\n**Chloe Lindsay**\\n<br>Principal Project Officer at Queensland Academy of Sport\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136237,139987,1,'Queensland Academy of Sport','2022-04-21 06:23:49','2022-04-21 06:23:49','90015edd-57d3-4dd5-bede-826c6aab686d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'You for 2032 campaign',NULL,NULL,'What New Word Order and the Queensland Academy of Sport (QAS) have in common is a keen eye for talent.\n\nSo when QAS asked us to help identify and develop young Queensland athletes capable of winning medals for Australia at the 2032 Brisbane Olympic and Paralympic Games, we (high) jumped at the chance.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139975\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YLmNoEn3SV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The QAS talent identification campaign is aimed at Queenslander athletes aged between 13 and 23. It’s the first step in a development journey for an aspiring athlete to becoming an elite, Olympic-level athlete ready to compete on the world stage in their own backyard.\\n\\nOur goal was to build awareness of the campaign and drive as many potential athletes as possible to apply.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0D5dQI141H\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139977\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E7bk6zGGNd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We know the talent identification process for an athlete, and all the development that follows, is an inspiring, aspirational and immensely personal journey, and we wanted the campaign’s language to reflect each of those aspects of the journey.\\nVisually, we recognised that the traditional medal colours wouldn’t necessarily display well and could be limiting, so we chose to update them to create a much brighter, target audience-friendly colour palette.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FITIFbeFNO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139976\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fo1rrBFGWB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"After creating the campaign name, tagline and logo, we reinforced the theme with a digital platform and marketing collateral.\\nWe developed an online application platform designed to appeal to young audiences and our visual identity captures images of some of Queensland’s most well-known Olympic gold medallists.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4tbFuQYNR3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139978\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dHzG1lmF6k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The result is an inspiring campaign of aspirational language and engaging images that sell the dream of representing Australia in the 2032 Olympics.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-maQX9wgmtJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":\"\",\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136239,139989,1,'Queensland Academy of Sport','2022-04-26 01:35:00','2022-04-26 01:35:00','129ba40e-463d-488c-868a-9a8274ce958f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'You for 2032 campaign',NULL,NULL,'What New Word Order and the Queensland Academy of Sport (QAS) have in common is a keen eye for talent.\n\nSo when QAS asked us to help identify and develop young Queensland athletes capable of winning medals for Australia at the 2032 Brisbane Olympic and Paralympic Games, we (high) jumped at the chance.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139975\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YLmNoEn3SV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The QAS talent identification campaign is aimed at Queenslander athletes aged between 13 and 23. It’s the first step in a development journey for an aspiring athlete to becoming an elite, Olympic-level athlete ready to compete on the world stage in their own backyard.\\n\\nOur goal was to build awareness of the campaign and drive as many potential athletes as possible to apply.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0D5dQI141H\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139977\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E7bk6zGGNd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We know the talent identification process for an athlete, and all the development that follows, is an inspiring, aspirational and immensely personal journey, and we wanted the campaign’s language to reflect each of those aspects of the journey.\\nVisually, we recognised that the traditional medal colours wouldn’t necessarily display well and could be limiting, so we chose to update them to create a much brighter, target audience-friendly colour palette.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FITIFbeFNO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139976\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fo1rrBFGWB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"After creating the campaign name, tagline and logo, we reinforced the theme with a digital platform and marketing collateral.\\nWe developed an online application platform designed to appeal to young audiences and our visual identity captures images of some of Queensland’s most well-known Olympic gold medallists.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4tbFuQYNR3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139978\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dHzG1lmF6k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The result is an inspiring campaign of aspirational language and engaging images that sell the dream of representing Australia in the 2032 Olympics.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136240,139990,1,'New T Cs final 1 1','2022-05-04 04:30:54','2022-05-04 04:30:54','954d3ed7-05bf-4c8c-843d-bfe059849004',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":[],\"originalImageWidth\":0,\"originalImageHeight\":0,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":0,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136251,140001,1,'05 Com Sol Project Page 1 12','2022-05-05 07:13:32','2022-06-23 03:26:58','96d7800b-f7db-4eed-a51f-e1a9a4e72dee',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1728_crop_center-center_82_line/05-ComSol-Project-Page_1_12.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1440_crop_center-center_82_line/05-ComSol-Project-Page_1_12.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1152_crop_center-center_82_line/05-ComSol-Project-Page_1_12.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x864_crop_center-center_82_line/05-ComSol-Project-Page_1_12.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x720_crop_center-center_82_line/05-ComSol-Project-Page_1_12.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1728_crop_center-center_82_line/05-ComSol-Project-Page_1_12.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1440_crop_center-center_82_line/05-ComSol-Project-Page_1_12.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1152_crop_center-center_82_line/05-ComSol-Project-Page_1_12.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x864_crop_center-center_82_line/05-ComSol-Project-Page_1_12.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x720_crop_center-center_82_line/05-ComSol-Project-Page_1_12.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1728,\"1280\":1440,\"1024\":1152,\"768\":864,\"640\":720},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":2000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAASABADAREAAhEBAxEB/8QAGAAAAgMAAAAAAAAAAAAAAAAAAAYCAwT/xAAkEAABAwQBAwUAAAAAAAAAAAABAgMEAAUREiEGEzEyQVGRwf/EABUBAQEAAAAAAAAAAAAAAAAAAAMA/8QAGxEAAwADAQEAAAAAAAAAAAAAAAECAxESMSH/2gAMAwEAAhEDEQA/AGi7T3o8kNNq1SEbHHk1IjLZrtIlz0suqUQUk84H5S1j5Ww5vp6Krr3JE/YNqSktlPI98GjXojIdPQ5jVxQ7Ib1RoR6hx9UuSk18YUS0/BpwPihFCoj/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#8e97a1\",\"#396595\",\"#eeeeee\",\"#56575d\",\"#f4bd3d\"],\"lightness\":57,\"placeholderWidth\":1536,\"placeholderHeight\":1728,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136255,140005,1,'05 Com Sol Project Page 1 1','2022-05-05 07:24:58','2022-06-23 03:26:55','da2b6a59-f751-4739-8802-b939f1d5fc1b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/05-ComSol-Project-Page_1_1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/05-ComSol-Project-Page_1_1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/05-ComSol-Project-Page_1_1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/05-ComSol-Project-Page_1_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/05-ComSol-Project-Page_1_1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/05-ComSol-Project-Page_1_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/05-ComSol-Project-Page_1_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/05-ComSol-Project-Page_1_1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/05-ComSol-Project-Page_1_1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/05-ComSol-Project-Page_1_1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/05-ComSol-Project-Page_1_1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/05-ComSol-Project-Page_1_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/05-ComSol-Project-Page_1_1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/05-ComSol-Project-Page_1_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/05-ComSol-Project-Page_1_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/05-ComSol-Project-Page_1_1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAQMFBv/EAB8QAAEDBAMBAAAAAAAAAAAAAAECAwQABSExERJRcv/EABcBAAMBAAAAAAAAAAAAAAAAAAACAwH/xAAaEQEAAgMBAAAAAAAAAAAAAAAAAhIRIUEB/9oADAMBAAIRAxEAPwDSz3LyLgsREcxgB1wnfGd1SNcbL7bg2567uSkiUgBnPbA8olTGmRt1aqZy2tK+jQH/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#486894\",\"#dcdddb\",\"#959ead\",\"#aabeda\",\"#26335a\"],\"lightness\":61,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136259,140009,1,'05 Com Sol Project Page 1 13','2022-05-05 07:25:51','2022-06-23 03:27:03','1b45e974-0814-4407-85bb-3a1201884b40',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1728_crop_center-center_82_line/05-ComSol-Project-Page_1_13.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1440_crop_center-center_82_line/05-ComSol-Project-Page_1_13.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1152_crop_center-center_82_line/05-ComSol-Project-Page_1_13.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x864_crop_center-center_82_line/05-ComSol-Project-Page_1_13.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x720_crop_center-center_82_line/05-ComSol-Project-Page_1_13.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1728_crop_center-center_82_line/05-ComSol-Project-Page_1_13.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1440_crop_center-center_82_line/05-ComSol-Project-Page_1_13.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1152_crop_center-center_82_line/05-ComSol-Project-Page_1_13.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x864_crop_center-center_82_line/05-ComSol-Project-Page_1_13.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x720_crop_center-center_82_line/05-ComSol-Project-Page_1_13.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1728,\"1280\":1440,\"1024\":1152,\"768\":864,\"640\":720},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":2000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAASABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAwQGBf/EACQQAAIBAwMEAwEAAAAAAAAAAAECAwAEEQUSIQYTMVEUInGB/8QAFgEBAQEAAAAAAAAAAAAAAAAAAwIE/8QAHhEBAAIDAAIDAAAAAAAAAAAAAQACESExAyIjMkH/2gAMAwEAAhEDEQA/AE9BtLO7nlN++yFF87sck1s8lk1XsIAMsF1JZ2lncR/BYvA6Z3ZyCcnNRWy6eysfpDdPSRKkzTQrMm4BlZgqgeyT+VHktixuUVzR1NPW4oJNHlkWFYV7f1jVwwGCTkEe6BffIxaHxokj7Xm6jB8Fhke6e/1YdOksdYANg4I47R4/lYq9mu3Gf//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d6b5aa\",\"#283666\",\"#261522\",\"#68a2be\",\"#418cb7\"],\"lightness\":45,\"placeholderWidth\":1536,\"placeholderHeight\":1728,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136263,140013,1,'Chevron','2022-05-05 23:48:29','2022-08-12 03:38:44','ab46d42e-522c-4d4a-ae94-ad37aaa93d4a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed to the roster of agencies for Chevron Downstream Australia as they reignited their Australian operations. We\'re helping them reconnect with their customers, relaunch their Puma retail network under the Caltex brand, and grow their market share in the lubricants B2B market.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gvKwuoJR7j\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547129?h=68b08b3b6f&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Downstream Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian B2B fuels and lubricants division.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z59xrAwLVU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We conducted a competitor analysis to assess competitor brand messaging and positioning, interviews with key Caltex fuels and lubricants distributors in the B2B market, and one-on-one interviews with the general customers.\\nOur insights indicated a need for authentic, ‘real life’ marketing collateral with which the audience can connect. We also gleaned that the messaging needed to be kept simple.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-f5LPArKwgF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689548339?h=5797d76cc7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP9dMqkL3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We made the creative decision to let the products take a backseat and instead shine a light on the customers’ businesses and their distributor relationships.\\nWe worked with a videographer to give the videos a warm and, at times, heartfelt tone. The customers in question are mostly generations-old businesses with a story to tell. So we told some stories.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gLOsbQtiKq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547741?h=7529fef734&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ahQwPi3ZPn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result was 60 video variations in a style you wouldn’t necessarily associate with marketing around fuel and lubricant products—something a little surprising, something that stands out from the crowd.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5dbIBMfjBJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“Our customers are the centre of everything we do, so we’re really proud to have created something that’s authentic to their experiences—their relationships with the distributors, their family values and the inter-generational ties in each of their businesses.\",\"plainText\":\"“We challenged New Word Order with a complex brief of showcasing the product, telling a compelling story about the customer and distributor relationship, and delivering the message that the products customers know and love are back for good. <br> \\n“New Word Order perfectly captured all of those elements in a cohesive video series that authentically connects with the audience.” <br> \\n\\n** — Cris Gillespie, Head of Marketing at Chevron **\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign','Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136264,140014,1,'Chevron','2022-05-05 23:52:17','2022-05-05 23:52:17','04ef377f-0dde-4017-8fa1-15fe0c13ab9e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed as Chevron’s day-to-day Australian agency during an important stage with the company’s Puma network changing brands to Caltex and business goals to grow market share.\nWe’re helping deliver the rollout of their new top-line B2C strategy, as well as strategy and execution for their lubricants B2B business.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" width=\\\"640\\\" height=\\\"360\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe> <p><a href=\\\"https://vimeo.com/689547500\\\">Chevron &ndash; Brand (Extended)</a> from <a href=\\\"https://vimeo.com/newwordorder\\\">New Word Order/New Pictures</a> on <a href=\\\"https://vimeo.com\\\">Vimeo</a>.</p>\"}}}}}}}}},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136266,140016,1,'Chevron','2022-05-06 00:20:33','2022-05-06 00:20:33','855aa85a-e678-43a3-9e21-c88b1c0bb3c4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed as Chevron’s day-to-day Australian agency during an important stage with the company’s Puma network changing brands to Caltex and business goals to grow market share.\nWe’re helping deliver the rollout of their new top-line B2C strategy, as well as strategy and execution for their lubricants B2B business.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" width=\\\"1080\\\" height=\\\"1920\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe> <p><a href=\\\"https://vimeo.com/689547500\\\"></p>\"}}}}}}}}},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136268,140018,1,'Chevron','2022-05-06 00:21:23','2022-05-06 00:21:23','5c656838-fff3-4541-87f3-147afa1257ff',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed as Chevron’s day-to-day Australian agency during an important stage with the company’s Puma network changing brands to Caltex and business goals to grow market share.\nWe’re helping deliver the rollout of their new top-line B2C strategy, as well as strategy and execution for their lubricants B2B business.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian lubricants division.\\n\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" width=\\\"1080\\\" height=\\\"1920\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe> <p><a href=\\\"https://vimeo.com/689547500\\\"></p>\"}}}}}}}}},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136270,140020,1,'Chevron','2022-05-06 00:23:13','2022-05-06 00:23:13','64c7def5-a88d-41e1-90d9-93b4fd3e8082',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed as Chevron’s day-to-day Australian agency during an important stage with the company’s Puma network changing brands to Caltex and business goals to grow market share.\nWe’re helping deliver the rollout of their new top-line B2C strategy, as well as strategy and execution for their lubricants B2B business.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian lubricants division.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689548978?h=3bfa3c0bb4&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136272,140022,1,'Chevron','2022-05-06 00:24:49','2022-05-06 00:24:49','d813a778-95c3-40ae-b585-2902628e917e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed as Chevron’s day-to-day Australian agency during an important stage with the company’s Puma network changing brands to Caltex and business goals to grow market share.\nWe’re helping deliver the rollout of their new top-line B2C strategy, as well as strategy and execution for their lubricants B2B business.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new3\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian lubricants division.\\n\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z59xrAwLVU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We conducted a competitor analysis to assess competitor brand messaging and positioning, interviews with key Chevron distributors in the B2B market and one-on-one interviews with the general customers.\\nOur insights indicated a need for authentic, ‘real life’ marketing collateral with which the audience can connect. We also gleaned that the messaging needed to be kept simple.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136274,140024,1,'Chevron','2022-05-06 00:45:00','2022-05-06 00:45:00','df474866-51ea-4b9d-ac85-25a0ef8fcff9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed as Chevron’s day-to-day Australian agency during an important stage with the company’s Puma network changing brands to Caltex and business goals to grow market share.\nWe’re helping deliver the rollout of their new top-line B2C strategy, as well as strategy and execution for their lubricants B2B business.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian lubricants division.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z59xrAwLVU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We conducted a competitor analysis to assess competitor brand messaging and positioning, interviews with key Chevron distributors in the B2B market and one-on-one interviews with the general customers.\\nOur insights indicated a need for authentic, ‘real life’ marketing collateral with which the audience can connect. We also gleaned that the messaging needed to be kept simple.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-f5LPArKwgF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689548339?h=5797d76cc7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547741?h=7529fef734&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP9dMqkL3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We made the creative decision to let the products take a backseat and instead shine a light on the customers’ businesses and their distributor relationships.\\nWe worked with a videographer to give the videos a warm and, at times, heartfelt tone. The customers in question are mostly generations-old businesses with a story to tell. So we told some stories.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136275,140025,1,'Chevron','2022-05-06 00:45:42','2022-05-06 00:45:42','0fa25c83-1b8b-4954-b8fd-8db2f1b6245f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed as Chevron’s day-to-day Australian agency during an important stage with the company’s Puma network changing brands to Caltex and business goals to grow market share.\nWe’re helping deliver the rollout of their new top-line B2C strategy, as well as strategy and execution for their lubricants B2B business.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian lubricants division.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z59xrAwLVU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We conducted a competitor analysis to assess competitor brand messaging and positioning, interviews with key Chevron distributors in the B2B market and one-on-one interviews with the general customers.\\nOur insights indicated a need for authentic, ‘real life’ marketing collateral with which the audience can connect. We also gleaned that the messaging needed to be kept simple.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-f5LPArKwgF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689548339?h=5797d76cc7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547741?h=7529fef734&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP9dMqkL3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We made the creative decision to let the products take a backseat and instead shine a light on the customers’ businesses and their distributor relationships.\\nWe worked with a videographer to give the videos a warm and, at times, heartfelt tone. The customers in question are mostly generations-old businesses with a story to tell. So we told some stories.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136277,140027,1,'Chevron','2022-05-06 00:46:55','2022-05-06 00:46:55','7c4ad003-2dba-4ad3-8f03-ccd51589d8d8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed as Chevron’s day-to-day Australian agency during an important stage with the company’s Puma network changing brands to Caltex and business goals to grow market share.\nWe’re helping deliver the rollout of their new top-line B2C strategy, as well as strategy and execution for their lubricants B2B business.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian lubricants division.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z59xrAwLVU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We conducted a competitor analysis to assess competitor brand messaging and positioning, interviews with key Chevron distributors in the B2B market and one-on-one interviews with the general customers.\\nOur insights indicated a need for authentic, ‘real life’ marketing collateral with which the audience can connect. We also gleaned that the messaging needed to be kept simple.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-f5LPArKwgF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689548339?h=5797d76cc7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP9dMqkL3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We made the creative decision to let the products take a backseat and instead shine a light on the customers’ businesses and their distributor relationships.\\nWe worked with a videographer to give the videos a warm and, at times, heartfelt tone. The customers in question are mostly generations-old businesses with a story to tell. So we told some stories.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gLOsbQtiKq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ahQwPi3ZPn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new2\",\"new3\"],\"blocks\":{\"new2\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The end result was 60 video variations in a style you wouldn’t necessarily associate with marketing around \",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136279,140029,1,'Chevron','2022-05-06 00:47:13','2022-05-06 00:47:13','2211caa4-01a5-4735-baec-3861eba9715e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed as Chevron’s day-to-day Australian agency during an important stage with the company’s Puma network changing brands to Caltex and business goals to grow market share.\nWe’re helping deliver the rollout of their new top-line B2C strategy, as well as strategy and execution for their lubricants B2B business.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian lubricants division.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z59xrAwLVU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We conducted a competitor analysis to assess competitor brand messaging and positioning, interviews with key Chevron distributors in the B2B market and one-on-one interviews with the general customers.\\nOur insights indicated a need for authentic, ‘real life’ marketing collateral with which the audience can connect. We also gleaned that the messaging needed to be kept simple.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-f5LPArKwgF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689548339?h=5797d76cc7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP9dMqkL3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We made the creative decision to let the products take a backseat and instead shine a light on the customers’ businesses and their distributor relationships.\\nWe worked with a videographer to give the videos a warm and, at times, heartfelt tone. The customers in question are mostly generations-old businesses with a story to tell. So we told some stories.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gLOsbQtiKq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547741?h=7529fef734&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ahQwPi3ZPn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The end result was 60 video variations in a style you wouldn’t necessarily associate with marketing around\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136281,140031,1,'Chevron','2022-05-06 00:48:08','2022-05-06 00:48:08','e1a69d24-85fc-4361-9c25-97133a38ffc8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed as Chevron’s day-to-day Australian agency during an important stage with the company’s Puma network changing brands to Caltex and business goals to grow market share.\nWe’re helping deliver the rollout of their new top-line B2C strategy, as well as strategy and execution for their lubricants B2B business.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian lubricants division.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z59xrAwLVU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We conducted a competitor analysis to assess competitor brand messaging and positioning, interviews with key Chevron distributors in the B2B market and one-on-one interviews with the general customers.\\nOur insights indicated a need for authentic, ‘real life’ marketing collateral with which the audience can connect. We also gleaned that the messaging needed to be kept simple.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-f5LPArKwgF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689548339?h=5797d76cc7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP9dMqkL3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We made the creative decision to let the products take a backseat and instead shine a light on the customers’ businesses and their distributor relationships.\\nWe worked with a videographer to give the videos a warm and, at times, heartfelt tone. The customers in question are mostly generations-old businesses with a story to tell. So we told some stories.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gLOsbQtiKq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547741?h=7529fef734&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ahQwPi3ZPn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The end result was 60 video variations in a style you wouldn’t necessarily associate with marketing around\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CnhrrWXWv8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"“Our customers are the centre of everything we do, so we’re really proud to have created something that’s authentic to their experiences—their relationships with the distributors, their family values and the inter-generational ties in each of their businesses,” he said. \\n“We challenged New Word Order with a complex brief of showcasing the product, telling a compelling story about the customer and distributor relationship, and delivering the message that the products customers know and love are back for good.\\n“New Word Order perfectly captured all of those elements in a cohesive video series that authentically connects with the audience.”\\n— Cris Gillespie, Head of Marketing at Chevron\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136282,140032,1,'Rural Aid','2022-05-06 00:48:46','2022-05-06 00:48:47','577a8aa0-60b8-4d65-a45b-ca83ba5a5c9b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Through drought, flood and fire, Rural Aid is there.',NULL,NULL,'Rural Aid is there for local farmers doing it tough, providing water, fodder and financial and counselling help. \n\nProviding emergency support is the priority, but it was time for Rural Aid to shift its focus to building resilience and sustainability in rural communities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eLK3JgwUaW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47719\",\"22211\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QCEdWG6OxJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The nature of the campaign, featuring real farmers telling their story, was insightful for many staff who might not get the chance to speak with or hear from farmers very often.\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-a1ZSpKzNhg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575770982\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4IaqNatl2X\",\"enabled\":false,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The campaign\",\"plainText\":\"Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F9lQRkpJbI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"The campaign\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-h8vXLy3MfI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“The generous donations received from our community of supporters as a result from the campaign has had a very positive impact for the beneficiaries of our fundraising—Aussie farmers.”\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V9u5ejPQKv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575783623\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p6CVgVhKEp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"Campaign messaging was two-tiered: an EOFY donations appeal and a thank you. Both worked for existing donors, people in existing databases and prospects.d\\n\\nTo ensure the greatest value for money for our client, we pooled the majority of our ad spend into digital, working closely with our media partner, Pivotus. We A/B tested the messaging and captured the audience with retargeting strategies.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8P2070zTQ8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"NWO were great to work with and really took an interest in our organisation and what we’re trying to achieve, and this showed through in the quality and the emotion captured in the final production. \\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rhaSMwFESv\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Creative\",\"plainText\":\"We proposed a campaign based on interviews with Australian farmers who had experiences with Rural Aid.\\n\\nIt’s an honest campaign of full of real people, stories and emotions.\\n\\nWith COVID-19 still hanging around, our approach ensured we avoided potential interruptions, travel restrictions and cancellation costs for our client.\\n\\nThe videos are compilations of interviews with various farmers across the spectrum of industries that are framed by a ‘zoom screen’ visual device, which adds layers of authenticity to the personal stories. \\n\\nSimilarly the display banners and static Facebook posts used the zoom imagery and visual devices—all pointing people to the EOFY Rural Aid landing page where viewers could view the full videos and choose to donate.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vJUro6swC6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We proposed a campaign based on interviews with Australian farmers who had experiences with Rural Aid.\\n\\nIt’s an honest campaign of full of real people, stories and emotions.\\n\\nWith COVID-19 still hanging around, our approach ensured we avoided potential interruptions, travel restrictions and cancellation costs for our client.\\n\\nThe videos are compilations of interviews with various farmers across the spectrum of industries that are framed by a ‘zoom screen’ visual device, which adds layers of authenticity to the personal stories. \\n\\nSimilarly the display banners and static Facebook posts used the zoom imagery and visual devices—all pointing people to the EOFY Rural Aid landing page where viewers could view the full videos and choose to donate.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3MV0vWsZV5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"I am very proud to have been a part of this campaign. Even though I was part of the storytelling behind the scenes, I was moved at every stage of the process by how tough these Australians have it on a daily basis, and how candid they were with us about their stories.\",\"plainText\":\"**— Kat Scott, producer**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NURtiGsn81\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":\"\",\"buttons\":\"\",\"sectionTitle\":\"\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136284,140034,1,'Chevron','2022-05-06 00:49:41','2022-05-06 00:49:41','f8451063-3724-4d76-8d20-0b479301612e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed as Chevron’s day-to-day Australian agency during an important stage with the company’s Puma network changing brands to Caltex and business goals to grow market share.\nWe’re helping deliver the rollout of their new top-line B2C strategy, as well as strategy and execution for their lubricants B2B business.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian lubricants division.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z59xrAwLVU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We conducted a competitor analysis to assess competitor brand messaging and positioning, interviews with key Chevron distributors in the B2B market and one-on-one interviews with the general customers.\\nOur insights indicated a need for authentic, ‘real life’ marketing collateral with which the audience can connect. We also gleaned that the messaging needed to be kept simple.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-f5LPArKwgF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689548339?h=5797d76cc7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP9dMqkL3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We made the creative decision to let the products take a backseat and instead shine a light on the customers’ businesses and their distributor relationships.\\nWe worked with a videographer to give the videos a warm and, at times, heartfelt tone. The customers in question are mostly generations-old businesses with a story to tell. So we told some stories.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gLOsbQtiKq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547741?h=7529fef734&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ahQwPi3ZPn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The end result was 60 video variations in a style you wouldn’t necessarily associate with marketing around\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5dbIBMfjBJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“Our customers are the centre of everything we do, so we’re really proud to have created something that’s authentic to their experiences—their relationships with the distributors, their family values and the inter-generational ties in each of their businesses,” he said.  “We challenged New Word Order with a complex brief of showcasing the product, telling a compelling story about the customer and distributor relationship, and delivering the message that the products customers know and love are back for good. “New Word Order perfectly captured all of those elements in a cohesive video series that authentically connects with the audience.”\",\"plainText\":\"— Cris Gillespie, Head of Marketing at Chevron\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textColour\":\"text-black\"}}}}},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136286,140036,1,'Chevron','2022-05-06 00:50:13','2022-05-06 00:50:13','e31cec5d-2e12-4fb1-a1a6-0745ec39983f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed as Chevron’s day-to-day Australian agency during an important stage with the company’s Puma network changing brands to Caltex and business goals to grow market share.\nWe’re helping deliver the rollout of their new top-line B2C strategy, as well as strategy and execution for their lubricants B2B business.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian lubricants division.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z59xrAwLVU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We conducted a competitor analysis to assess competitor brand messaging and positioning, interviews with key Chevron distributors in the B2B market and one-on-one interviews with the general customers.\\nOur insights indicated a need for authentic, ‘real life’ marketing collateral with which the audience can connect. We also gleaned that the messaging needed to be kept simple.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-f5LPArKwgF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689548339?h=5797d76cc7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP9dMqkL3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We made the creative decision to let the products take a backseat and instead shine a light on the customers’ businesses and their distributor relationships.\\nWe worked with a videographer to give the videos a warm and, at times, heartfelt tone. The customers in question are mostly generations-old businesses with a story to tell. So we told some stories.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gLOsbQtiKq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547741?h=7529fef734&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ahQwPi3ZPn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The end result was 60 video variations in a style you wouldn’t necessarily associate with marketing around\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5dbIBMfjBJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“Our customers are the centre of everything we do, so we’re really proud to have created something that’s authentic to their experiences—their relationships with the distributors, their family values and the inter-generational ties in each of their businesses,” he said.  “We challenged New Word Order with a complex brief of showcasing the product, telling a compelling story about the customer and distributor relationship, and delivering the message that the products customers know and love are back for good. “New Word Order perfectly captured all of those elements in a cohesive video series that authentically connects with the audience.”\",\"plainText\":\"** — Cris Gillespie, Head of Marketing at Chevron **\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textColour\":\"text-black\"}}}}},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136288,140038,1,'Chevron','2022-05-06 00:50:23','2022-05-06 00:50:23','bb65aa99-cd52-4801-855f-adadd45a8338',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed as Chevron’s day-to-day Australian agency during an important stage with the company’s Puma network changing brands to Caltex and business goals to grow market share.\nWe’re helping deliver the rollout of their new top-line B2C strategy, as well as strategy and execution for their lubricants B2B business.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian lubricants division.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z59xrAwLVU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We conducted a competitor analysis to assess competitor brand messaging and positioning, interviews with key Chevron distributors in the B2B market and one-on-one interviews with the general customers.\\nOur insights indicated a need for authentic, ‘real life’ marketing collateral with which the audience can connect. We also gleaned that the messaging needed to be kept simple.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-f5LPArKwgF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689548339?h=5797d76cc7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP9dMqkL3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We made the creative decision to let the products take a backseat and instead shine a light on the customers’ businesses and their distributor relationships.\\nWe worked with a videographer to give the videos a warm and, at times, heartfelt tone. The customers in question are mostly generations-old businesses with a story to tell. So we told some stories.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gLOsbQtiKq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547741?h=7529fef734&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ahQwPi3ZPn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The end result was 60 video variations in a style you wouldn’t necessarily associate with marketing around\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5dbIBMfjBJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“Our customers are the centre of everything we do, so we’re really proud to have created something that’s authentic to their experiences—their relationships with the distributors, their family values and the inter-generational ties in each of their businesses,” he said.  <br> “We challenged New Word Order with a complex brief of showcasing the product, telling a compelling story about the customer and distributor relationship, and delivering the message that the products customers know and love are back for good. “New Word Order perfectly captured all of those elements in a cohesive video series that authentically connects with the audience.”\",\"plainText\":\"** — Cris Gillespie, Head of Marketing at Chevron **\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textColour\":\"text-black\"}}}}},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136290,140040,1,'Chevron','2022-05-06 00:50:54','2022-05-06 00:50:54','d1f971c6-03b8-40a8-96f6-aea8b55fe259',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed as Chevron’s day-to-day Australian agency during an important stage with the company’s Puma network changing brands to Caltex and business goals to grow market share.\nWe’re helping deliver the rollout of their new top-line B2C strategy, as well as strategy and execution for their lubricants B2B business.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian lubricants division.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z59xrAwLVU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We conducted a competitor analysis to assess competitor brand messaging and positioning, interviews with key Chevron distributors in the B2B market and one-on-one interviews with the general customers.\\nOur insights indicated a need for authentic, ‘real life’ marketing collateral with which the audience can connect. We also gleaned that the messaging needed to be kept simple.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-f5LPArKwgF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689548339?h=5797d76cc7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP9dMqkL3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We made the creative decision to let the products take a backseat and instead shine a light on the customers’ businesses and their distributor relationships.\\nWe worked with a videographer to give the videos a warm and, at times, heartfelt tone. The customers in question are mostly generations-old businesses with a story to tell. So we told some stories.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gLOsbQtiKq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547741?h=7529fef734&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ahQwPi3ZPn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The end result was 60 video variations in a style you wouldn’t necessarily associate with marketing around fuel and lubricant products—something a little surprising, something that stands out from the crowd.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5dbIBMfjBJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“Our customers are the centre of everything we do, so we’re really proud to have created something that’s authentic to their experiences—their relationships with the distributors, their family values and the inter-generational ties in each of their businesses,” he said.  <br> “We challenged New Word Order with a complex brief of showcasing the product, telling a compelling story about the customer and distributor relationship, and delivering the message that the products customers know and love are back for good. “New Word Order perfectly captured all of those elements in a cohesive video series that authentically connects with the audience.”\",\"plainText\":\"** — Cris Gillespie, Head of Marketing at Chevron **\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textColour\":\"text-black\"}}}}},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136292,140042,1,'Chevron','2022-05-06 00:51:48','2022-05-06 00:51:48','1cf5a701-681a-4087-9477-8225ed3e8144',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed as Chevron’s day-to-day Australian agency during an important stage with the company’s Puma network changing brands to Caltex and business goals to grow market share.\nWe’re helping deliver the rollout of their new top-line B2C strategy, as well as strategy and execution for their lubricants B2B business.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian lubricants division.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z59xrAwLVU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We conducted a competitor analysis to assess competitor brand messaging and positioning, interviews with key Chevron distributors in the B2B market and one-on-one interviews with the general customers.\\nOur insights indicated a need for authentic, ‘real life’ marketing collateral with which the audience can connect. We also gleaned that the messaging needed to be kept simple.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-f5LPArKwgF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689548339?h=5797d76cc7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP9dMqkL3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We made the creative decision to let the products take a backseat and instead shine a light on the customers’ businesses and their distributor relationships.\\nWe worked with a videographer to give the videos a warm and, at times, heartfelt tone. The customers in question are mostly generations-old businesses with a story to tell. So we told some stories.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gLOsbQtiKq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547741?h=7529fef734&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ahQwPi3ZPn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The end result was 60 video variations in a style you wouldn’t necessarily associate with marketing around fuel and lubricant products—something a little surprising, something that stands out from the crowd.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5dbIBMfjBJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“Our customers are the centre of everything we do, so we’re really proud to have created something that’s authentic to their experiences—their relationships with the distributors, their family values and the inter-generational ties in each of their businesses,” he said.  <br> <br> “We challenged New Word Order with a complex brief of showcasing the product, telling a compelling story about the customer and distributor relationship, and delivering the message that the products customers know and love are back for good. “New Word Order perfectly captured all of those elements in a cohesive video series that authentically connects with the audience.”\",\"plainText\":\"** — Cris Gillespie, Head of Marketing at Chevron **\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textColour\":\"text-black\"}}}}},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136294,140044,1,'Chevron','2022-05-06 00:52:39','2022-05-06 00:52:39','97fca45d-cecc-46ae-88d0-bbb4b7ec21e7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed as Chevron’s day-to-day Australian agency during an important stage with the company’s Puma network changing brands to Caltex and business goals to grow market share.\nWe’re helping deliver the rollout of their new top-line B2C strategy, as well as strategy and execution for their lubricants B2B business.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian lubricants division.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z59xrAwLVU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We conducted a competitor analysis to assess competitor brand messaging and positioning, interviews with key Chevron distributors in the B2B market and one-on-one interviews with the general customers.\\nOur insights indicated a need for authentic, ‘real life’ marketing collateral with which the audience can connect. We also gleaned that the messaging needed to be kept simple.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-f5LPArKwgF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689548339?h=5797d76cc7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP9dMqkL3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We made the creative decision to let the products take a backseat and instead shine a light on the customers’ businesses and their distributor relationships.\\nWe worked with a videographer to give the videos a warm and, at times, heartfelt tone. The customers in question are mostly generations-old businesses with a story to tell. So we told some stories.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gLOsbQtiKq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547741?h=7529fef734&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ahQwPi3ZPn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The end result was 60 video variations in a style you wouldn’t necessarily associate with marketing around fuel and lubricant products—something a little surprising, something that stands out from the crowd.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5dbIBMfjBJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“Our customers are the centre of everything we do, so we’re really proud to have created something that’s authentic to their experiences—their relationships with the distributors, their family values and the inter-generational ties in each of their businesses,” he said. \",\"plainText\":\"“We challenged New Word Order with a complex brief of showcasing the product, telling a compelling story about the customer and distributor relationship, and delivering the message that the products customers know and love are back for good. “New Word Order perfectly captured all of those elements in a cohesive video series that authentically connects with the audience.” <br> <br> \\n\\n** — Cris Gillespie, Head of Marketing at Chevron **\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textColour\":\"text-black\"}}}}},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136295,140045,1,'Chevron','2022-05-06 00:52:56','2022-05-06 00:52:56','7acd2540-856f-4408-99f9-91e59d9e57e8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed as Chevron’s day-to-day Australian agency during an important stage with the company’s Puma network changing brands to Caltex and business goals to grow market share.\nWe’re helping deliver the rollout of their new top-line B2C strategy, as well as strategy and execution for their lubricants B2B business.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian lubricants division.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z59xrAwLVU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We conducted a competitor analysis to assess competitor brand messaging and positioning, interviews with key Chevron distributors in the B2B market and one-on-one interviews with the general customers.\\nOur insights indicated a need for authentic, ‘real life’ marketing collateral with which the audience can connect. We also gleaned that the messaging needed to be kept simple.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-f5LPArKwgF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689548339?h=5797d76cc7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP9dMqkL3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We made the creative decision to let the products take a backseat and instead shine a light on the customers’ businesses and their distributor relationships.\\nWe worked with a videographer to give the videos a warm and, at times, heartfelt tone. The customers in question are mostly generations-old businesses with a story to tell. So we told some stories.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gLOsbQtiKq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547741?h=7529fef734&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ahQwPi3ZPn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The end result was 60 video variations in a style you wouldn’t necessarily associate with marketing around fuel and lubricant products—something a little surprising, something that stands out from the crowd.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5dbIBMfjBJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“Our customers are the centre of everything we do, so we’re really proud to have created something that’s authentic to their experiences—their relationships with the distributors, their family values and the inter-generational ties in each of their businesses,” he said.\",\"plainText\":\"“We challenged New Word Order with a complex brief of showcasing the product, telling a compelling story about the customer and distributor relationship, and delivering the message that the products customers know and love are back for good. “New Word Order perfectly captured all of those elements in a cohesive video series that authentically connects with the audience.” <br> \\n\\n** — Cris Gillespie, Head of Marketing at Chevron **\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textColour\":\"text-black\"}}}}},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136297,140047,1,'Chevron','2022-05-06 00:54:04','2022-05-06 00:54:04','89cf32f5-554e-4276-bbfe-592120cfc9dd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed as Chevron’s day-to-day Australian agency during an important stage with the company’s Puma network changing brands to Caltex and business goals to grow market share.\nWe’re helping deliver the rollout of their new top-line B2C strategy, as well as strategy and execution for their lubricants B2B business.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gvKwuoJR7j\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547129?h=68b08b3b6f&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian lubricants division.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z59xrAwLVU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We conducted a competitor analysis to assess competitor brand messaging and positioning, interviews with key Chevron distributors in the B2B market and one-on-one interviews with the general customers.\\nOur insights indicated a need for authentic, ‘real life’ marketing collateral with which the audience can connect. We also gleaned that the messaging needed to be kept simple.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-f5LPArKwgF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689548339?h=5797d76cc7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP9dMqkL3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We made the creative decision to let the products take a backseat and instead shine a light on the customers’ businesses and their distributor relationships.\\nWe worked with a videographer to give the videos a warm and, at times, heartfelt tone. The customers in question are mostly generations-old businesses with a story to tell. So we told some stories.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gLOsbQtiKq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547741?h=7529fef734&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ahQwPi3ZPn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The end result was 60 video variations in a style you wouldn’t necessarily associate with marketing around fuel and lubricant products—something a little surprising, something that stands out from the crowd.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5dbIBMfjBJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“Our customers are the centre of everything we do, so we’re really proud to have created something that’s authentic to their experiences—their relationships with the distributors, their family values and the inter-generational ties in each of their businesses,” he said.\",\"plainText\":\"“We challenged New Word Order with a complex brief of showcasing the product, telling a compelling story about the customer and distributor relationship, and delivering the message that the products customers know and love are back for good. “New Word Order perfectly captured all of those elements in a cohesive video series that authentically connects with the audience.” <br> \\n\\n** — Cris Gillespie, Head of Marketing at Chevron **\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textColour\":\"text-black\"}}}}},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136299,140049,1,'Chevron','2022-05-06 00:57:20','2022-05-06 00:57:20','4c953c4d-9d8a-42a9-8237-063d963be1ef',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed as Chevron’s day-to-day Australian agency during an important stage with the company’s Puma network changing brands to Caltex and business goals to grow market share.\nWe’re helping deliver the rollout of their new top-line B2C strategy, as well as strategy and execution for their lubricants B2B business.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gvKwuoJR7j\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547129?h=68b08b3b6f&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian lubricants division.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z59xrAwLVU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We conducted a competitor analysis to assess competitor brand messaging and positioning, interviews with key Chevron distributors in the B2B market and one-on-one interviews with the general customers.\\nOur insights indicated a need for authentic, ‘real life’ marketing collateral with which the audience can connect. We also gleaned that the messaging needed to be kept simple.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-f5LPArKwgF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689548339?h=5797d76cc7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP9dMqkL3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We made the creative decision to let the products take a backseat and instead shine a light on the customers’ businesses and their distributor relationships.\\nWe worked with a videographer to give the videos a warm and, at times, heartfelt tone. The customers in question are mostly generations-old businesses with a story to tell. So we told some stories.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gLOsbQtiKq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547741?h=7529fef734&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ahQwPi3ZPn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The end result was 60 video variations in a style you wouldn’t necessarily associate with marketing around fuel and lubricant products—something a little surprising, something that stands out from the crowd.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5dbIBMfjBJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“Our customers are the centre of everything we do, so we’re really proud to have created something that’s authentic to their experiences—their relationships with the distributors, their family values and the inter-generational ties in each of their businesses.\",\"plainText\":\"“We challenged New Word Order with a complex brief of showcasing the product, telling a compelling story about the customer and distributor relationship, and delivering the message that the products customers know and love are back for good. <br> \\n“New Word Order perfectly captured all of those elements in a cohesive video series that authentically connects with the audience.” <br> \\n\\n** — Cris Gillespie, Head of Marketing at Chevron **\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textColour\":\"text-black\"}}}}},{\"type\":\"paragraph\",\"attrs\":{\"textAlign\":\"start\"}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136301,140051,1,'Chevron','2022-05-06 01:07:35','2022-05-06 01:07:35','7f147103-a47e-4aa1-b1fc-5b15aee35c9d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed as Chevron’s day-to-day Australian agency during an important stage with the company’s Puma network changing brands to Caltex and business goals to grow market share.\nWe’re helping deliver the rollout of their new top-line B2C strategy, as well as strategy and execution for their lubricants B2B business.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gvKwuoJR7j\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547129?h=68b08b3b6f&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian lubricants division.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z59xrAwLVU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We conducted a competitor analysis to assess competitor brand messaging and positioning, interviews with key Chevron distributors in the B2B market and one-on-one interviews with the general customers.\\nOur insights indicated a need for authentic, ‘real life’ marketing collateral with which the audience can connect. We also gleaned that the messaging needed to be kept simple.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-f5LPArKwgF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689548339?h=5797d76cc7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP9dMqkL3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We made the creative decision to let the products take a backseat and instead shine a light on the customers’ businesses and their distributor relationships.\\nWe worked with a videographer to give the videos a warm and, at times, heartfelt tone. The customers in question are mostly generations-old businesses with a story to tell. So we told some stories.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gLOsbQtiKq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547741?h=7529fef734&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ahQwPi3ZPn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The end result was 60 video variations in a style you wouldn’t necessarily associate with marketing around fuel and lubricant products—something a little surprising, something that stands out from the crowd.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5dbIBMfjBJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“Our customers are the centre of everything we do, so we’re really proud to have created something that’s authentic to their experiences—their relationships with the distributors, their family values and the inter-generational ties in each of their businesses.\",\"plainText\":\"“We challenged New Word Order with a complex brief of showcasing the product, telling a compelling story about the customer and distributor relationship, and delivering the message that the products customers know and love are back for good. <br> \\n“New Word Order perfectly captured all of those elements in a cohesive video series that authentically connects with the audience.” <br> \\n\\n** — Cris Gillespie, Head of Marketing at Chevron **\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136303,140053,1,'Chevron','2022-05-09 02:55:19','2022-05-09 02:55:19','4f5afc08-6f3a-406f-8a01-71baf88c36c9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed as Chevron’s day-to-day Australian agency during an important stage with the company’s Puma network changing brands to Caltex and business goals to grow market share.\nWe’re helping deliver the rollout of their new top-line B2C strategy, as well as strategy and execution for their lubricants B2B business.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gvKwuoJR7j\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547129?h=68b08b3b6f&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian lubricants division.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z59xrAwLVU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We conducted a competitor analysis to assess competitor brand messaging and positioning, interviews with key Chevron distributors in the B2B market and one-on-one interviews with the general customers.\\nOur insights indicated a need for authentic, ‘real life’ marketing collateral with which the audience can connect. We also gleaned that the messaging needed to be kept simple.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-f5LPArKwgF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689548339?h=5797d76cc7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP9dMqkL3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"We made the creative decision to let the products take a backseat and instead shine a light on the customers’ businesses and their distributor relationships.\\nWe worked with a videographer to give the videos a warm and, at times, heartfelt tone. The customers in question are mostly generations-old businesses with a story to tell. So we told some stories.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gLOsbQtiKq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"sortOrder\":[\"new1\"],\"blocks\":{\"new1\":{\"type\":\"videos\",\"enabled\":\"1\",\"fields\":{\"videoPlaceholderImage\":\"\",\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547741?h=7529fef734&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ahQwPi3ZPn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"sortOrder\":[\"new1\",\"new2\"],\"blocks\":{\"new1\":{\"type\":\"heading\",\"enabled\":\"1\",\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":\"1\",\"fields\":{\"text\":\"The end result was 60 video variations in a style you wouldn’t necessarily associate with marketing around fuel and lubricant products—something a little surprising, something that stands out from the crowd.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}},\"buttons\":\"\",\"sectionTitle\":\"\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5dbIBMfjBJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“Our customers are the centre of everything we do, so we’re really proud to have created something that’s authentic to their experiences—their relationships with the distributors, their family values and the inter-generational ties in each of their businesses.\",\"plainText\":\"“We challenged New Word Order with a complex brief of showcasing the product, telling a compelling story about the customer and distributor relationship, and delivering the message that the products customers know and love are back for good. <br> \\n“New Word Order perfectly captured all of those elements in a cohesive video series that authentically connects with the audience.” <br> \\n\\n** — Cris Gillespie, Head of Marketing at Chevron **\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign','Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136305,140055,1,'Chevron','2022-05-09 03:32:34','2022-05-09 03:32:34','fef38ef2-78b2-4823-b685-2142e6c907e4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed as Chevron\'s go-to Australian agency as they reignited their Australian operations. We\'re helping them reach their business goals, relaunch their Puma retail network under the Caltex brand, and grow their market share in the lubricants B2B market.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gvKwuoJR7j\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547129?h=68b08b3b6f&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian lubricants division.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z59xrAwLVU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We conducted a competitor analysis to assess competitor brand messaging and positioning, interviews with key Chevron distributors in the B2B market and one-on-one interviews with the general customers.\\nOur insights indicated a need for authentic, ‘real life’ marketing collateral with which the audience can connect. We also gleaned that the messaging needed to be kept simple.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-f5LPArKwgF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689548339?h=5797d76cc7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP9dMqkL3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We made the creative decision to let the products take a backseat and instead shine a light on the customers’ businesses and their distributor relationships.\\nWe worked with a videographer to give the videos a warm and, at times, heartfelt tone. The customers in question are mostly generations-old businesses with a story to tell. So we told some stories.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gLOsbQtiKq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547741?h=7529fef734&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ahQwPi3ZPn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result was 60 video variations in a style you wouldn’t necessarily associate with marketing around fuel and lubricant products—something a little surprising, something that stands out from the crowd.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5dbIBMfjBJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“Our customers are the centre of everything we do, so we’re really proud to have created something that’s authentic to their experiences—their relationships with the distributors, their family values and the inter-generational ties in each of their businesses.\",\"plainText\":\"“We challenged New Word Order with a complex brief of showcasing the product, telling a compelling story about the customer and distributor relationship, and delivering the message that the products customers know and love are back for good. <br> \\n“New Word Order perfectly captured all of those elements in a cohesive video series that authentically connects with the audience.” <br> \\n\\n** — Cris Gillespie, Head of Marketing at Chevron **\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign','Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136307,140057,1,'15 DECEMER FARM 20219609 v02','2022-05-09 03:37:59','2022-06-23 03:27:22','0f33fef5-9372-447a-87fe-4bec850e038d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/15DECEMER-FARM-20219609_v02.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2049_crop_center-center_82_line/15DECEMER-FARM-20219609_v02.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/15DECEMER-FARM-20219609_v02.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1707_crop_center-center_82_line/15DECEMER-FARM-20219609_v02.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x683_crop_center-center_82_line/15DECEMER-FARM-20219609_v02.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1366_crop_center-center_82_line/15DECEMER-FARM-20219609_v02.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/15DECEMER-FARM-20219609_v02.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/15DECEMER-FARM-20219609_v02.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/15DECEMER-FARM-20219609_v02.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2049_crop_center-center_82_line/15DECEMER-FARM-20219609_v02.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/15DECEMER-FARM-20219609_v02.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1707_crop_center-center_82_line/15DECEMER-FARM-20219609_v02.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x683_crop_center-center_82_line/15DECEMER-FARM-20219609_v02.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1366_crop_center-center_82_line/15DECEMER-FARM-20219609_v02.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/15DECEMER-FARM-20219609_v02.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/15DECEMER-FARM-20219609_v02.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"3072\":2049,\"1280\":853,\"2560\":1707,\"1024\":683,\"2048\":1366,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":8192,\"originalImageHeight\":5464,\"placeholder\":\"/9j/4AAQSkZJRgABAQEA8ADwAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABAb/xAAhEAACAQMEAwEAAAAAAAAAAAABAgMABBEFEiExBjJB0f/EABYBAQEBAAAAAAAAAAAAAAAAAAIDAf/EABoRAAMBAAMAAAAAAAAAAAAAAAABAhEDEiH/2gAMAwEAAhEDEQA/AKCLX9PukbDBXG3g9EkUFyG9NJHy7VGuY0ghcLEuC4B9m/KrNOlrDmMHcu6Y2sy8fDUZSZahMqKYgSoJx2RRT9E0f//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#1f1d25\",\"#dbe1e1\",\"#5c483d\",\"#997850\",\"#727d85\"],\"lightness\":42,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136308,140058,1,'Chevron','2022-05-09 03:38:16','2022-05-09 03:38:16','5303b7f8-0e76-46d6-b44e-225f89f6ec13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed as Chevron\'s go-to Australian agency as they reignited their Australian operations. We\'re helping them reach their business goals, relaunch their Puma retail network under the Caltex brand, and grow their market share in the lubricants B2B market.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gvKwuoJR7j\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547129?h=68b08b3b6f&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian lubricants division.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z59xrAwLVU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We conducted a competitor analysis to assess competitor brand messaging and positioning, interviews with key Chevron distributors in the B2B market and one-on-one interviews with the general customers.\\nOur insights indicated a need for authentic, ‘real life’ marketing collateral with which the audience can connect. We also gleaned that the messaging needed to be kept simple.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-f5LPArKwgF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689548339?h=5797d76cc7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP9dMqkL3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We made the creative decision to let the products take a backseat and instead shine a light on the customers’ businesses and their distributor relationships.\\nWe worked with a videographer to give the videos a warm and, at times, heartfelt tone. The customers in question are mostly generations-old businesses with a story to tell. So we told some stories.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gLOsbQtiKq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547741?h=7529fef734&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ahQwPi3ZPn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result was 60 video variations in a style you wouldn’t necessarily associate with marketing around fuel and lubricant products—something a little surprising, something that stands out from the crowd.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5dbIBMfjBJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“Our customers are the centre of everything we do, so we’re really proud to have created something that’s authentic to their experiences—their relationships with the distributors, their family values and the inter-generational ties in each of their businesses.\",\"plainText\":\"“We challenged New Word Order with a complex brief of showcasing the product, telling a compelling story about the customer and distributor relationship, and delivering the message that the products customers know and love are back for good. <br> \\n“New Word Order perfectly captured all of those elements in a cohesive video series that authentically connects with the audience.” <br> \\n\\n** — Cris Gillespie, Head of Marketing at Chevron **\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign','Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136310,140060,1,'Burnie Brae','2022-05-09 03:59:14','2022-08-08 06:22:46','4eba3230-d726-4258-aefd-75c6d6340860',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand that empowers rich lives',NULL,NULL,'What’s a Burnie Brae? That’s the question we needed to answer to help the community organisation create some clarity around their brand as they undertook an exciting brand and website refresh project.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZaXkCuEhzq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140080\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked closely with Burnie Brae to understand their issues and what makes them tick. There was a concern Burnie Brae was lacking meaning, awareness and connection for much of the public they serve, alongside a recognition that the brand was simply a bit ‘tired’ and neglected. \\nAs a branding and strategy specialist, we created a process to uncover some of the truths behind the brand to set the groundwork. Our team conducted a series of research and workshops before embarking on brand direction and narrative development projects.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140065\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With the foundations set, our creative team embarked on refreshing Burnie Brae’s visual identity. The creative concept painted a picture of community connection and explored a distinctive direction for the Burnie Brae brand. We adapted the existing logo and brand colours to build a fresh and recognisable feel.\\nWe redesigned and built a new website, improving the information navigation and creating better user journeys.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140069\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140066\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result has seen Burnie Brae take ownership of a revitalised brand identity that has stronger connections to their stakeholders. The stunning new website is simple to use and takes users on a compelling journey through Burnie Brae’s community service offerings.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'A brand that empowers rich lives','What’s a Burnie Brae? That’s the question we needed to answer to help the community organisation create some clarity around their brand as they undertook an exciting brand and website refresh project.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136311,140061,1,'Burnie Brae','2022-05-09 03:59:42','2022-05-09 03:59:42','7b8cc6be-b3a9-41ea-99a6-21f52ba524d5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand that empowers rich lives',NULL,NULL,'What’s a Burnie Brae? That’s the question we needed to answer to help the community organisation create some clarity around their brand as they undertook an exciting brand and website refresh project.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136313,140063,1,'05 Burnie Brae Project Page 1 1','2022-05-09 04:00:52','2022-06-22 07:54:32','e1857a04-58ff-40c0-96d2-4b0855dd93c8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/05-Burnie-Brae-Project-Page_1_1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/05-Burnie-Brae-Project-Page_1_1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/05-Burnie-Brae-Project-Page_1_1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/05-Burnie-Brae-Project-Page_1_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/05-Burnie-Brae-Project-Page_1_1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/05-Burnie-Brae-Project-Page_1_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/05-Burnie-Brae-Project-Page_1_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/05-Burnie-Brae-Project-Page_1_1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/05-Burnie-Brae-Project-Page_1_1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/05-Burnie-Brae-Project-Page_1_1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/05-Burnie-Brae-Project-Page_1_1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/05-Burnie-Brae-Project-Page_1_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/05-Burnie-Brae-Project-Page_1_1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/05-Burnie-Brae-Project-Page_1_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/05-Burnie-Brae-Project-Page_1_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/05-Burnie-Brae-Project-Page_1_1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABQb/xAAdEAACAgIDAQAAAAAAAAAAAAABAgADITIREzFx/8QAFAEBAAAAAAAAAAAAAAAAAAAABP/EABYRAQEBAAAAAAAAAAAAAAAAAAABMf/aAAwDAQACEQMRAD8Aqa91wPRFXAppGuxuxlYMc4PEMZKOr3X6Im4HNLwpr//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#b2e3f8\",\"#397f97\",\"#629bb1\",\"#859fa2\",\"#7c94a4\"],\"lightness\":61,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136314,140064,1,'05 Burnie Brae Project Page 1 12','2022-05-09 04:01:02','2022-06-22 07:54:35','7e0181c7-2a66-467c-9908-086984f389ff',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/05-Burnie-Brae-Project-Page_1_12.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/05-Burnie-Brae-Project-Page_1_12.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/05-Burnie-Brae-Project-Page_1_12.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/05-Burnie-Brae-Project-Page_1_12.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/05-Burnie-Brae-Project-Page_1_12.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/05-Burnie-Brae-Project-Page_1_12.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/05-Burnie-Brae-Project-Page_1_12.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/05-Burnie-Brae-Project-Page_1_12.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/05-Burnie-Brae-Project-Page_1_12.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/05-Burnie-Brae-Project-Page_1_12.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/05-Burnie-Brae-Project-Page_1_12.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/05-Burnie-Brae-Project-Page_1_12.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/05-Burnie-Brae-Project-Page_1_12.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/05-Burnie-Brae-Project-Page_1_12.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/05-Burnie-Brae-Project-Page_1_12.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/05-Burnie-Brae-Project-Page_1_12.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAAIEBv/EACIQAAICAQIHAQAAAAAAAAAAAAECAwQAElERITEyNFJhcf/EABcBAAMBAAAAAAAAAAAAAAAAAAABAwL/xAAcEQACAgIDAAAAAAAAAAAAAAAAEQECEiExMkH/2gAMAwEAAhEDEQA/ANLYsGKJ3EcrEH14Drvk64JLZqcm3oStaNktGy6ACNIZlJPPb5imsRsb8LI/GX8yVuxSOATuGID/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e8dcc2\",\"#404545\",\"#925e3f\",\"#b4956f\",\"#866961\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136315,140065,1,'05 Burnie Brae Project Page 2 1','2022-05-09 04:01:06','2022-06-22 07:54:38','aa9d7ee6-c904-43ab-aae1-80b353ad79bb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1728_crop_center-center_82_line/05-Burnie-Brae-Project-Page_2_1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1440_crop_center-center_82_line/05-Burnie-Brae-Project-Page_2_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1152_crop_center-center_82_line/05-Burnie-Brae-Project-Page_2_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x864_crop_center-center_82_line/05-Burnie-Brae-Project-Page_2_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x720_crop_center-center_82_line/05-Burnie-Brae-Project-Page_2_1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1728_crop_center-center_82_line/05-Burnie-Brae-Project-Page_2_1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1440_crop_center-center_82_line/05-Burnie-Brae-Project-Page_2_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1152_crop_center-center_82_line/05-Burnie-Brae-Project-Page_2_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x864_crop_center-center_82_line/05-Burnie-Brae-Project-Page_2_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x720_crop_center-center_82_line/05-Burnie-Brae-Project-Page_2_1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1728,\"1280\":1440,\"1024\":1152,\"768\":864,\"640\":720},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":2000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAASABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAQMEBv/EACIQAAICAQQBBQAAAAAAAAAAAAECAxEABBITIkEhMTJh8P/EABcBAAMBAAAAAAAAAAAAAAAAAAACAwH/xAAaEQACAwEBAAAAAAAAAAAAAAAAAQIDERMx/9oADAMBAAIRAxEAPwDTpGLHI20H2Hk5WdiiQhU36TvKqvto1dWcmr9eJDOjE3oiVpIdVyN2iI6InyLeb+s2VbbwaNizRbaZ55GknckMbCL6Bf1ZqqQvZlpyxAAwA//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#9ec7d7\",\"#b89762\",\"#e4dfd3\",\"#324245\",\"#664d41\"],\"lightness\":61,\"placeholderWidth\":1536,\"placeholderHeight\":1728,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136316,140066,1,'05 Burnie Brae Project Page 2 12','2022-05-09 04:01:10','2022-06-22 07:54:40','1641c723-80a8-42fa-91da-303f2baf9210',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1728_crop_center-center_82_line/05-Burnie-Brae-Project-Page_2_12.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1440_crop_center-center_82_line/05-Burnie-Brae-Project-Page_2_12.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1152_crop_center-center_82_line/05-Burnie-Brae-Project-Page_2_12.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x864_crop_center-center_82_line/05-Burnie-Brae-Project-Page_2_12.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x720_crop_center-center_82_line/05-Burnie-Brae-Project-Page_2_12.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1728_crop_center-center_82_line/05-Burnie-Brae-Project-Page_2_12.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1440_crop_center-center_82_line/05-Burnie-Brae-Project-Page_2_12.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1152_crop_center-center_82_line/05-Burnie-Brae-Project-Page_2_12.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x864_crop_center-center_82_line/05-Burnie-Brae-Project-Page_2_12.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x720_crop_center-center_82_line/05-Burnie-Brae-Project-Page_2_12.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1728,\"1280\":1440,\"1024\":1152,\"768\":864,\"640\":720},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":2000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAASABADAREAAhEBAxEB/8QAGAAAAgMAAAAAAAAAAAAAAAAAAAMCBAb/xAAjEAABAwQBBAMAAAAAAAAAAAABAgMRAAQTIRIFFDFBIkJh/8QAFgEBAQEAAAAAAAAAAAAAAAAAAAMB/8QAGxEAAgMBAQEAAAAAAAAAAAAAAAECETEhA0H/2gAMAwEAAhEDEQA/ANFfEnGjujbcifkADP5upKvpebawLGRkT3ZugIhRAEedaoxBt6KvVsrfbS+lvghQMuREnWppHroeipWPQ5bt3mBjEkFsKhB9ya2XHRnn1WVOppSpTQUkEZPBFSZeJK2abbuhwbQnf1SB6NFpssP/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#eecec6\",\"#3f3a38\",\"#934d37\",\"#b87152\",\"#b8826f\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":1728,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136317,140067,1,'Burnie Brae','2022-05-09 04:02:49','2022-05-09 04:02:49','330e9eca-82d8-45f8-b525-66a3b1bb67fd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand that empowers rich lives',NULL,NULL,'What’s a Burnie Brae? That’s the question we needed to answer to help the community organisation create some clarity around their brand as they undertook an exciting brand and website refresh project.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FUAZPBAvqH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140063\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked closely with Burnie Brae to understand their issues and what makes them tick. There was a concern Burnie Brae was lacking meaning, awareness and connection for much of the public they serve, alongside a recognition that the brand was simply a bit ‘tired’ and neglected. \\nAs a branding and strategy specialist, New Word Order created a process to uncover some of the truths behind the brand to set the groundwork. Our team conducted a series of research and workshops before embarking on brand direction and narrative development projects.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140064\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140065\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With the foundations set, our creative team set to work on refreshing Burnie Brae’s visual identity. The creative concept painted a picture of community connection and explored a distinctive direction for the Burnie Brae brand. We adapted the existing logo and brand colours to build a fresh and recognisable feel.\\nWe redesigned and built a new website, improving the information navigation and creating better user journeys.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140066\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result has seen Burnie Brae take ownership of a revitalised brand identity that has stronger connections to their stakeholders. The stunning new website is simple to use and takes users on a compelling journey through Burnie Brae’s community service offerings.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136319,140069,1,'05 Burnie Brae Project Page 3 1','2022-05-09 04:38:40','2022-06-23 03:26:46','f80da7e0-0f11-4546-a53d-0ef796e91898',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/05-Burnie-Brae-Project-Page_3_1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/05-Burnie-Brae-Project-Page_3_1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/05-Burnie-Brae-Project-Page_3_1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/05-Burnie-Brae-Project-Page_3_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/05-Burnie-Brae-Project-Page_3_1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/05-Burnie-Brae-Project-Page_3_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/05-Burnie-Brae-Project-Page_3_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/05-Burnie-Brae-Project-Page_3_1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/05-Burnie-Brae-Project-Page_3_1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/05-Burnie-Brae-Project-Page_3_1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/05-Burnie-Brae-Project-Page_3_1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/05-Burnie-Brae-Project-Page_3_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/05-Burnie-Brae-Project-Page_3_1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/05-Burnie-Brae-Project-Page_3_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/05-Burnie-Brae-Project-Page_3_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/05-Burnie-Brae-Project-Page_3_1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAgUG/8QAHhAAAQQCAwEAAAAAAAAAAAAAAQACAwQRIRIiUUL/xAAVAQEBAAAAAAAAAAAAAAAAAAAAAf/EABURAQEAAAAAAAAAAAAAAAAAAAAB/9oADAMBAAIRAxEAPwDX3LM9fbWOkBdgBg2ApSBTtWZ3d4Sztg8vPVYVTKAfSqP/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#dee1e0\",\"#746253\",\"#ab9f93\",\"#648896\",\"#947c7c\"],\"lightness\":62,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136320,140070,1,'Burnie Brae','2022-05-09 04:38:50','2022-05-09 04:38:50','2f89507a-9f32-49e5-a653-d74367fd367b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand that empowers rich lives',NULL,NULL,'What’s a Burnie Brae? That’s the question we needed to answer to help the community organisation create some clarity around their brand as they undertook an exciting brand and website refresh project.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FUAZPBAvqH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked closely with Burnie Brae to understand their issues and what makes them tick. There was a concern Burnie Brae was lacking meaning, awareness and connection for much of the public they serve, alongside a recognition that the brand was simply a bit ‘tired’ and neglected. \\nAs a branding and strategy specialist, New Word Order created a process to uncover some of the truths behind the brand to set the groundwork. Our team conducted a series of research and workshops before embarking on brand direction and narrative development projects.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140069\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140065\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With the foundations set, our creative team set to work on refreshing Burnie Brae’s visual identity. The creative concept painted a picture of community connection and explored a distinctive direction for the Burnie Brae brand. We adapted the existing logo and brand colours to build a fresh and recognisable feel.\\nWe redesigned and built a new website, improving the information navigation and creating better user journeys.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140066\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result has seen Burnie Brae take ownership of a revitalised brand identity that has stronger connections to their stakeholders. The stunning new website is simple to use and takes users on a compelling journey through Burnie Brae’s community service offerings.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136321,140071,1,'Burnie Brae','2022-05-09 04:38:59','2022-05-09 04:38:59','5025ab9e-c07c-429f-9e65-23fd4f371d94',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand that empowers rich lives',NULL,NULL,'What’s a Burnie Brae? That’s the question we needed to answer to help the community organisation create some clarity around their brand as they undertook an exciting brand and website refresh project.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FUAZPBAvqH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked closely with Burnie Brae to understand their issues and what makes them tick. There was a concern Burnie Brae was lacking meaning, awareness and connection for much of the public they serve, alongside a recognition that the brand was simply a bit ‘tired’ and neglected. \\nAs a branding and strategy specialist, New Word Order created a process to uncover some of the truths behind the brand to set the groundwork. Our team conducted a series of research and workshops before embarking on brand direction and narrative development projects.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140069\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140065\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With the foundations set, our creative team set to work on refreshing Burnie Brae’s visual identity. The creative concept painted a picture of community connection and explored a distinctive direction for the Burnie Brae brand. We adapted the existing logo and brand colours to build a fresh and recognisable feel.\\nWe redesigned and built a new website, improving the information navigation and creating better user journeys.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140066\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result has seen Burnie Brae take ownership of a revitalised brand identity that has stronger connections to their stakeholders. The stunning new website is simple to use and takes users on a compelling journey through Burnie Brae’s community service offerings.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136323,140073,1,'Burnie Brae','2022-05-09 04:39:17','2022-05-09 04:39:17','5e0f328f-f566-4da2-bc75-1275d9d9a716',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand that empowers rich lives',NULL,NULL,'What’s a Burnie Brae? That’s the question we needed to answer to help the community organisation create some clarity around their brand as they undertook an exciting brand and website refresh project.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked closely with Burnie Brae to understand their issues and what makes them tick. There was a concern Burnie Brae was lacking meaning, awareness and connection for much of the public they serve, alongside a recognition that the brand was simply a bit ‘tired’ and neglected. \\nAs a branding and strategy specialist, New Word Order created a process to uncover some of the truths behind the brand to set the groundwork. Our team conducted a series of research and workshops before embarking on brand direction and narrative development projects.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140069\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140065\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With the foundations set, our creative team set to work on refreshing Burnie Brae’s visual identity. The creative concept painted a picture of community connection and explored a distinctive direction for the Burnie Brae brand. We adapted the existing logo and brand colours to build a fresh and recognisable feel.\\nWe redesigned and built a new website, improving the information navigation and creating better user journeys.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140066\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result has seen Burnie Brae take ownership of a revitalised brand identity that has stronger connections to their stakeholders. The stunning new website is simple to use and takes users on a compelling journey through Burnie Brae’s community service offerings.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136324,140074,1,'Burnie Brae','2022-05-09 04:39:44','2022-05-09 04:39:44','083b14cf-b638-4854-ae2e-9dd287dcc2f6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand that empowers rich lives',NULL,NULL,'What’s a Burnie Brae? That’s the question we needed to answer to help the community organisation create some clarity around their brand as they undertook an exciting brand and website refresh project.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140069\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked closely with Burnie Brae to understand their issues and what makes them tick. There was a concern Burnie Brae was lacking meaning, awareness and connection for much of the public they serve, alongside a recognition that the brand was simply a bit ‘tired’ and neglected. \\nAs a branding and strategy specialist, New Word Order created a process to uncover some of the truths behind the brand to set the groundwork. Our team conducted a series of research and workshops before embarking on brand direction and narrative development projects.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140065\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With the foundations set, our creative team set to work on refreshing Burnie Brae’s visual identity. The creative concept painted a picture of community connection and explored a distinctive direction for the Burnie Brae brand. We adapted the existing logo and brand colours to build a fresh and recognisable feel.\\nWe redesigned and built a new website, improving the information navigation and creating better user journeys.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140066\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result has seen Burnie Brae take ownership of a revitalised brand identity that has stronger connections to their stakeholders. The stunning new website is simple to use and takes users on a compelling journey through Burnie Brae’s community service offerings.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136326,140076,1,'05 Burnie Brae Project Page 4 1','2022-05-09 04:56:09','2022-06-23 03:26:50','d9978146-a766-4ede-b1da-5a6c17d14c7a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/05-Burnie-Brae-Project-Page_4_1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/05-Burnie-Brae-Project-Page_4_1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/05-Burnie-Brae-Project-Page_4_1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/05-Burnie-Brae-Project-Page_4_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/05-Burnie-Brae-Project-Page_4_1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/05-Burnie-Brae-Project-Page_4_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/05-Burnie-Brae-Project-Page_4_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/05-Burnie-Brae-Project-Page_4_1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/05-Burnie-Brae-Project-Page_4_1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/05-Burnie-Brae-Project-Page_4_1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/05-Burnie-Brae-Project-Page_4_1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/05-Burnie-Brae-Project-Page_4_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/05-Burnie-Brae-Project-Page_4_1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/05-Burnie-Brae-Project-Page_4_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/05-Burnie-Brae-Project-Page_4_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/05-Burnie-Brae-Project-Page_4_1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABQT/xAAjEAACAAUCBwAAAAAAAAAAAAABAgADBAURMXMGEiIyNrHC/8QAFgEBAQEAAAAAAAAAAAAAAAAAAgED/8QAGxEAAgMBAQEAAAAAAAAAAAAAAAECETESMkL/2gAMAwEAAhEDEQA/AH6q/Lb7k1PM6uYKQANBk5MZQyxtKyK75r6l1CvNlplsLpD4p2HtNUFcTeTjYHswY+BfYvWd42R9Qo6R4f/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e8dec8\",\"#374248\",\"#8f6b4a\",\"#809197\",\"#776c6c\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136327,140077,1,'Burnie Brae','2022-05-09 04:56:16','2022-05-09 04:56:16','a7a2c17c-447a-415c-9859-b53a8579ab04',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand that empowers rich lives',NULL,NULL,'What’s a Burnie Brae? That’s the question we needed to answer to help the community organisation create some clarity around their brand as they undertook an exciting brand and website refresh project.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZaXkCuEhzq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140076\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140069\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked closely with Burnie Brae to understand their issues and what makes them tick. There was a concern Burnie Brae was lacking meaning, awareness and connection for much of the public they serve, alongside a recognition that the brand was simply a bit ‘tired’ and neglected. \\nAs a branding and strategy specialist, New Word Order created a process to uncover some of the truths behind the brand to set the groundwork. Our team conducted a series of research and workshops before embarking on brand direction and narrative development projects.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140065\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With the foundations set, our creative team set to work on refreshing Burnie Brae’s visual identity. The creative concept painted a picture of community connection and explored a distinctive direction for the Burnie Brae brand. We adapted the existing logo and brand colours to build a fresh and recognisable feel.\\nWe redesigned and built a new website, improving the information navigation and creating better user journeys.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140066\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result has seen Burnie Brae take ownership of a revitalised brand identity that has stronger connections to their stakeholders. The stunning new website is simple to use and takes users on a compelling journey through Burnie Brae’s community service offerings.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136328,140078,1,'Burnie Brae','2022-05-09 04:56:24','2022-05-09 04:56:24','ee071825-f069-42fc-8cef-fbbd39d06ac7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand that empowers rich lives',NULL,NULL,'What’s a Burnie Brae? That’s the question we needed to answer to help the community organisation create some clarity around their brand as they undertook an exciting brand and website refresh project.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZaXkCuEhzq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140076\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140069\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked closely with Burnie Brae to understand their issues and what makes them tick. There was a concern Burnie Brae was lacking meaning, awareness and connection for much of the public they serve, alongside a recognition that the brand was simply a bit ‘tired’ and neglected. \\nAs a branding and strategy specialist, New Word Order created a process to uncover some of the truths behind the brand to set the groundwork. Our team conducted a series of research and workshops before embarking on brand direction and narrative development projects.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140065\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With the foundations set, our creative team set to work on refreshing Burnie Brae’s visual identity. The creative concept painted a picture of community connection and explored a distinctive direction for the Burnie Brae brand. We adapted the existing logo and brand colours to build a fresh and recognisable feel.\\nWe redesigned and built a new website, improving the information navigation and creating better user journeys.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140066\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result has seen Burnie Brae take ownership of a revitalised brand identity that has stronger connections to their stakeholders. The stunning new website is simple to use and takes users on a compelling journey through Burnie Brae’s community service offerings.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136330,140080,1,'05 Burnie Brae Project Page 4 1','2022-05-09 04:56:45','2022-06-23 03:26:52','3f39d852-65d5-45b6-ae3b-28370d32eae8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/05-Burnie-Brae-Project-Page_4_1_2022-05-09-045644_argl.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/05-Burnie-Brae-Project-Page_4_1_2022-05-09-045644_argl.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/05-Burnie-Brae-Project-Page_4_1_2022-05-09-045644_argl.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/05-Burnie-Brae-Project-Page_4_1_2022-05-09-045644_argl.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/05-Burnie-Brae-Project-Page_4_1_2022-05-09-045644_argl.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/05-Burnie-Brae-Project-Page_4_1_2022-05-09-045644_argl.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/05-Burnie-Brae-Project-Page_4_1_2022-05-09-045644_argl.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/05-Burnie-Brae-Project-Page_4_1_2022-05-09-045644_argl.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/05-Burnie-Brae-Project-Page_4_1_2022-05-09-045644_argl.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/05-Burnie-Brae-Project-Page_4_1_2022-05-09-045644_argl.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/05-Burnie-Brae-Project-Page_4_1_2022-05-09-045644_argl.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/05-Burnie-Brae-Project-Page_4_1_2022-05-09-045644_argl.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/05-Burnie-Brae-Project-Page_4_1_2022-05-09-045644_argl.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/05-Burnie-Brae-Project-Page_4_1_2022-05-09-045644_argl.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/05-Burnie-Brae-Project-Page_4_1_2022-05-09-045644_argl.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/05-Burnie-Brae-Project-Page_4_1_2022-05-09-045644_argl.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABQT/xAAjEAACAAUCBwAAAAAAAAAAAAABAgADBAURMXMGEiIyNrHC/8QAFgEBAQEAAAAAAAAAAAAAAAAAAgED/8QAGxEAAgMBAQEAAAAAAAAAAAAAAAECETESMkL/2gAMAwEAAhEDEQA/AH6q/Lb7k1PM6uYKQANBk5MZQyxtKyK75r6l1CvNlplsLpD4p2HtNUFcTeTjYHswY+BfYvWd42R9Qo6R4f/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#e8dec8\",\"#374248\",\"#8f6b4a\",\"#809197\",\"#776c6c\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136331,140081,1,'Burnie Brae','2022-05-09 04:56:57','2022-05-09 04:56:57','5081762b-d46c-49b3-87ef-a3b85de59329',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand that empowers rich lives',NULL,NULL,'What’s a Burnie Brae? That’s the question we needed to answer to help the community organisation create some clarity around their brand as they undertook an exciting brand and website refresh project.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZaXkCuEhzq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140080\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked closely with Burnie Brae to understand their issues and what makes them tick. There was a concern Burnie Brae was lacking meaning, awareness and connection for much of the public they serve, alongside a recognition that the brand was simply a bit ‘tired’ and neglected. \\nAs a branding and strategy specialist, New Word Order created a process to uncover some of the truths behind the brand to set the groundwork. Our team conducted a series of research and workshops before embarking on brand direction and narrative development projects.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140069\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140065\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With the foundations set, our creative team set to work on refreshing Burnie Brae’s visual identity. The creative concept painted a picture of community connection and explored a distinctive direction for the Burnie Brae brand. We adapted the existing logo and brand colours to build a fresh and recognisable feel.\\nWe redesigned and built a new website, improving the information navigation and creating better user journeys.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140066\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result has seen Burnie Brae take ownership of a revitalised brand identity that has stronger connections to their stakeholders. The stunning new website is simple to use and takes users on a compelling journey through Burnie Brae’s community service offerings.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136332,140082,1,'Burnie Brae','2022-05-09 04:57:07','2022-05-09 04:57:07','fc0e5dfa-db70-47ca-9fd5-4e365c5007bf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand that empowers rich lives',NULL,NULL,'What’s a Burnie Brae? That’s the question we needed to answer to help the community organisation create some clarity around their brand as they undertook an exciting brand and website refresh project.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZaXkCuEhzq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140080\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked closely with Burnie Brae to understand their issues and what makes them tick. There was a concern Burnie Brae was lacking meaning, awareness and connection for much of the public they serve, alongside a recognition that the brand was simply a bit ‘tired’ and neglected. \\nAs a branding and strategy specialist, New Word Order created a process to uncover some of the truths behind the brand to set the groundwork. Our team conducted a series of research and workshops before embarking on brand direction and narrative development projects.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140069\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140065\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With the foundations set, our creative team set to work on refreshing Burnie Brae’s visual identity. The creative concept painted a picture of community connection and explored a distinctive direction for the Burnie Brae brand. We adapted the existing logo and brand colours to build a fresh and recognisable feel.\\nWe redesigned and built a new website, improving the information navigation and creating better user journeys.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140066\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result has seen Burnie Brae take ownership of a revitalised brand identity that has stronger connections to their stakeholders. The stunning new website is simple to use and takes users on a compelling journey through Burnie Brae’s community service offerings.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136333,140083,1,'Burnie Brae','2022-05-09 04:57:42','2022-05-09 04:57:42','80dde1b9-d91f-4411-87c0-d66b2f0ec691',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand that empowers rich lives',NULL,NULL,'What’s a Burnie Brae? That’s the question we needed to answer to help the community organisation create some clarity around their brand as they undertook an exciting brand and website refresh project.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZaXkCuEhzq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140080\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked closely with Burnie Brae to understand their issues and what makes them tick. There was a concern Burnie Brae was lacking meaning, awareness and connection for much of the public they serve, alongside a recognition that the brand was simply a bit ‘tired’ and neglected. \\nAs a branding and strategy specialist, New Word Order created a process to uncover some of the truths behind the brand to set the groundwork. Our team conducted a series of research and workshops before embarking on brand direction and narrative development projects.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140065\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With the foundations set, our creative team set to work on refreshing Burnie Brae’s visual identity. The creative concept painted a picture of community connection and explored a distinctive direction for the Burnie Brae brand. We adapted the existing logo and brand colours to build a fresh and recognisable feel.\\nWe redesigned and built a new website, improving the information navigation and creating better user journeys.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140069\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140066\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result has seen Burnie Brae take ownership of a revitalised brand identity that has stronger connections to their stakeholders. The stunning new website is simple to use and takes users on a compelling journey through Burnie Brae’s community service offerings.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136334,140084,1,'Burnie Brae','2022-05-09 05:41:34','2022-05-09 05:41:34','2132e945-5065-4962-8e7e-a4f1e5e9982e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand that empowers rich lives',NULL,NULL,'What’s a Burnie Brae? That’s the question we needed to answer to help the community organisation create some clarity around their brand as they undertook an exciting brand and website refresh project.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZaXkCuEhzq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140080\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked closely with Burnie Brae to understand their issues and what makes them tick. There was a concern Burnie Brae was lacking meaning, awareness and connection for much of the public they serve, alongside a recognition that the brand was simply a bit ‘tired’ and neglected. \\nAs a branding and strategy specialist, New Word Order created a process to uncover some of the truths behind the brand to set the groundwork. Our team conducted a series of research and workshops before embarking on brand direction and narrative development projects.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140065\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With the foundations set, our creative team set to work on refreshing Burnie Brae’s visual identity. The creative concept painted a picture of community connection and explored a distinctive direction for the Burnie Brae brand. We adapted the existing logo and brand colours to build a fresh and recognisable feel.\\nWe redesigned and built a new website, improving the information navigation and creating better user journeys.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140069\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140066\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result has seen Burnie Brae take ownership of a revitalised brand identity that has stronger connections to their stakeholders. The stunning new website is simple to use and takes users on a compelling journey through Burnie Brae’s community service offerings.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136336,140086,1,'05 Com Sol Project Page 1 12','2022-05-09 05:42:23','2022-06-23 03:27:00','bd290cf2-38c0-476b-91e2-b354614587cf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1728_crop_center-center_82_line/05-ComSol-Project-Page_1_12_2022-05-09-054222_ykhg.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1440_crop_center-center_82_line/05-ComSol-Project-Page_1_12_2022-05-09-054222_ykhg.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1152_crop_center-center_82_line/05-ComSol-Project-Page_1_12_2022-05-09-054222_ykhg.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x864_crop_center-center_82_line/05-ComSol-Project-Page_1_12_2022-05-09-054222_ykhg.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x720_crop_center-center_82_line/05-ComSol-Project-Page_1_12_2022-05-09-054222_ykhg.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1728_crop_center-center_82_line/05-ComSol-Project-Page_1_12_2022-05-09-054222_ykhg.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1440_crop_center-center_82_line/05-ComSol-Project-Page_1_12_2022-05-09-054222_ykhg.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1152_crop_center-center_82_line/05-ComSol-Project-Page_1_12_2022-05-09-054222_ykhg.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x864_crop_center-center_82_line/05-ComSol-Project-Page_1_12_2022-05-09-054222_ykhg.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x720_crop_center-center_82_line/05-ComSol-Project-Page_1_12_2022-05-09-054222_ykhg.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1728,\"1280\":1440,\"1024\":1152,\"768\":864,\"640\":720},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":2000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAASABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAAMGAf/EACIQAAEDAgYDAAAAAAAAAAAAAAECAwQABQYREhMhQSJhwf/EABcBAQADAAAAAAAAAAAAAAAAAAMAAQL/xAAbEQACAgMBAAAAAAAAAAAAAAAAAQIxAxIhEf/aAAwDAQACEQMRAD8Ap7tcXo8ktNq0hKNXA5NWusp0Isl2fmzdl1SiAkq6Hyknj1XpiM9mIuodkzlKS0tKS0UjMd5GjVm3RmHYUxm4bslvSnbIHkPXVLkkmuBwi0ynyoRQqEP/2Q==\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#8e979f\",\"#396191\",\"#e8e8e8\",\"#87784b\",\"#5a5b65\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":1728,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136337,140087,1,'05 Com Sol Project Page 1 1','2022-05-09 05:42:42','2022-06-23 03:27:09','472581d4-8fbf-42e1-bc9f-035740c2585a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/05-ComSol-Project-Page_1_1_2022-05-09-054241_bdwl.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/05-ComSol-Project-Page_1_1_2022-05-09-054241_bdwl.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/05-ComSol-Project-Page_1_1_2022-05-09-054241_bdwl.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/05-ComSol-Project-Page_1_1_2022-05-09-054241_bdwl.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/05-ComSol-Project-Page_1_1_2022-05-09-054241_bdwl.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/05-ComSol-Project-Page_1_1_2022-05-09-054241_bdwl.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/05-ComSol-Project-Page_1_1_2022-05-09-054241_bdwl.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/05-ComSol-Project-Page_1_1_2022-05-09-054241_bdwl.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/05-ComSol-Project-Page_1_1_2022-05-09-054241_bdwl.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/05-ComSol-Project-Page_1_1_2022-05-09-054241_bdwl.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/05-ComSol-Project-Page_1_1_2022-05-09-054241_bdwl.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/05-ComSol-Project-Page_1_1_2022-05-09-054241_bdwl.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/05-ComSol-Project-Page_1_1_2022-05-09-054241_bdwl.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/05-ComSol-Project-Page_1_1_2022-05-09-054241_bdwl.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/05-ComSol-Project-Page_1_1_2022-05-09-054241_bdwl.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/05-ComSol-Project-Page_1_1_2022-05-09-054241_bdwl.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAgMFBv/EACAQAAEDBAIDAAAAAAAAAAAAAAECAwQABREhEjFBUXL/xAAXAQADAQAAAAAAAAAAAAAAAAAAAgMB/8QAGhEBAAIDAQAAAAAAAAAAAAAAAAISESFBAf/aAAwDAQACEQMRAD8A0s9y8i4qERGYwAxoZz57qka42X23BW567uSkiUgBnfLQ9USpjTI26s1M5bXSvo0B/9k=\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#476794\",\"#dcdcdb\",\"#969eab\",\"#94c0d7\",\"#2b3859\"],\"lightness\":61,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136338,140088,1,'05 Com Sol Project Page 1 13','2022-05-09 05:44:06','2022-06-23 03:27:06','eac03892-1b0a-42ab-ab22-94fb4c6b1495',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/05-ComSol-Project-Page_1_13_2022-05-09-054405_ocvc.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/05-ComSol-Project-Page_1_13_2022-05-09-054405_ocvc.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/05-ComSol-Project-Page_1_13_2022-05-09-054405_ocvc.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/05-ComSol-Project-Page_1_13_2022-05-09-054405_ocvc.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/05-ComSol-Project-Page_1_13_2022-05-09-054405_ocvc.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/05-ComSol-Project-Page_1_13_2022-05-09-054405_ocvc.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/05-ComSol-Project-Page_1_13_2022-05-09-054405_ocvc.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/05-ComSol-Project-Page_1_13_2022-05-09-054405_ocvc.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/05-ComSol-Project-Page_1_13_2022-05-09-054405_ocvc.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/05-ComSol-Project-Page_1_13_2022-05-09-054405_ocvc.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/05-ComSol-Project-Page_1_13_2022-05-09-054405_ocvc.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/05-ComSol-Project-Page_1_13_2022-05-09-054405_ocvc.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/05-ComSol-Project-Page_1_13_2022-05-09-054405_ocvc.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/05-ComSol-Project-Page_1_13_2022-05-09-054405_ocvc.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/05-ComSol-Project-Page_1_13_2022-05-09-054405_ocvc.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/05-ComSol-Project-Page_1_13_2022-05-09-054405_ocvc.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQEE/8QAIRAAAQMCBwEAAAAAAAAAAAAAAQACAwU0BBETFjJBcZP/xAAWAQEBAQAAAAAAAAAAAAAAAAADAQD/xAAYEQEAAwEAAAAAAAAAAAAAAAAAAQMhEv/aAAwDAQACEQMRAD8AV3LTSecnzKyhoZtSvsLJHEHEHvrNPkVh3tibcO9QQZIbhvqqP//Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d3d0d3\",\"#2f2c2a\",\"#275383\",\"#8b837e\",\"#70625c\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136342,140092,1,'05 Com Sol Project Page 3 1','2022-05-09 05:47:50','2022-06-23 03:27:12','680857c2-19bb-4209-bc9b-e82bb682a3c9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1728_crop_center-center_82_line/05-ComSol-Project-Page_3_1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1440_crop_center-center_82_line/05-ComSol-Project-Page_3_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1152_crop_center-center_82_line/05-ComSol-Project-Page_3_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x864_crop_center-center_82_line/05-ComSol-Project-Page_3_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x720_crop_center-center_82_line/05-ComSol-Project-Page_3_1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1728_crop_center-center_82_line/05-ComSol-Project-Page_3_1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1440_crop_center-center_82_line/05-ComSol-Project-Page_3_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1152_crop_center-center_82_line/05-ComSol-Project-Page_3_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x864_crop_center-center_82_line/05-ComSol-Project-Page_3_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x720_crop_center-center_82_line/05-ComSol-Project-Page_3_1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1728,\"1280\":1440,\"1024\":1152,\"768\":864,\"640\":720},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":2000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAASABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQQD/8QAIxAAAgICAQIHAAAAAAAAAAAAAQIDBAARIQUxBhMyQVGBkf/EABYBAQEBAAAAAAAAAAAAAAAAAAMAAv/EABoRAAMBAQEBAAAAAAAAAAAAAAABAhEDIRL/2gAMAwEAAhEDEQA/AEPE7yJDXEbspLn0trfGb5pOsZno8nUAxTWFuQ7llAMijXmE+4x6mfl4DNNtFHUL9u3QrtZgKTCQ8KpGhr4weeKtYtpufCOsS9uJnRzp11we+8TpWzksOFleoKV2Mh2xP3gDmhZtdz+5Ef/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d1ccca\",\"#2a4e7a\",\"#2f2c2b\",\"#59aac8\",\"#71aa9c\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":1728,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136343,140093,1,'05 Com Sol Project Page 3 1','2022-05-09 05:49:31','2022-06-23 03:27:16','5d8771d2-5a8f-4dab-a6a6-2eb0bbef4101',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1728_crop_center-center_82_line/05-ComSol-Project-Page_3_1_2022-05-09-054930_lfrr.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1440_crop_center-center_82_line/05-ComSol-Project-Page_3_1_2022-05-09-054930_lfrr.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1152_crop_center-center_82_line/05-ComSol-Project-Page_3_1_2022-05-09-054930_lfrr.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x864_crop_center-center_82_line/05-ComSol-Project-Page_3_1_2022-05-09-054930_lfrr.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x720_crop_center-center_82_line/05-ComSol-Project-Page_3_1_2022-05-09-054930_lfrr.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1728_crop_center-center_82_line/05-ComSol-Project-Page_3_1_2022-05-09-054930_lfrr.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1440_crop_center-center_82_line/05-ComSol-Project-Page_3_1_2022-05-09-054930_lfrr.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1152_crop_center-center_82_line/05-ComSol-Project-Page_3_1_2022-05-09-054930_lfrr.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x864_crop_center-center_82_line/05-ComSol-Project-Page_3_1_2022-05-09-054930_lfrr.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x720_crop_center-center_82_line/05-ComSol-Project-Page_3_1_2022-05-09-054930_lfrr.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1728,\"1280\":1440,\"1024\":1152,\"768\":864,\"640\":720},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":2000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAASABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQQD/8QAIxAAAgICAQIHAAAAAAAAAAAAAQIDBAARIQUxBhMyQVGBkf/EABYBAQEBAAAAAAAAAAAAAAAAAAMAAv/EABoRAAMBAQEBAAAAAAAAAAAAAAABAhEDIRL/2gAMAwEAAhEDEQA/AEPE7yJDXEbspLn0trfGb5pOsZno8nUAxTWFuQ7llAMijXmE+4x6mfl4DNNtFHUL9u3QrtZgKTCQ8KpGhr4weeKtYtpufCOsS9uJnRzp11we+8TpWzksOFleoKV2Mh2xP3gDmhZtdz+5Ef/Z\",\"placeholderSvg\":\"\",\"colorPalette\":[\"#d1ccca\",\"#2a4e7a\",\"#2f2c2b\",\"#59aac8\",\"#71aa9c\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":1728,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136355,140105,1,'Chevron','2022-05-12 03:26:42','2022-05-12 03:26:42','108637fc-dfac-40db-afcb-89a2b4b1a7dd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed as Chevron\'s go-to Australian agency as they reignited their Australian operations. We\'re helping them reach their business goals, relaunch their Puma retail network under the Caltex brand, and grow their market share in the lubricants B2B market.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gvKwuoJR7j\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547129?h=68b08b3b6f&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian lubricants division.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z59xrAwLVU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We conducted a competitor analysis to assess competitor brand messaging and positioning, interviews with key Chevron distributors in the B2B market and one-on-one interviews with the general customers.\\nOur insights indicated a need for authentic, ‘real life’ marketing collateral with which the audience can connect. We also gleaned that the messaging needed to be kept simple.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-f5LPArKwgF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689548339?h=5797d76cc7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP9dMqkL3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We made the creative decision to let the products take a backseat and instead shine a light on the customers’ businesses and their distributor relationships.\\nWe supplemented our inhouse production team with award-winning documentary cinematographer Mark Broadbent and the editing finesse of Anasiou Canaris to give the videos a warm and, at times, heartfelt tone. The customers in question are mostly generations-old businesses with a story to tell. So we told some stories.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gLOsbQtiKq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547741?h=7529fef734&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ahQwPi3ZPn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result was 60 video variations in a style you wouldn’t necessarily associate with marketing around fuel and lubricant products—something a little surprising, something that stands out from the crowd.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5dbIBMfjBJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“Our customers are the centre of everything we do, so we’re really proud to have created something that’s authentic to their experiences—their relationships with the distributors, their family values and the inter-generational ties in each of their businesses.\",\"plainText\":\"“We challenged New Word Order with a complex brief of showcasing the product, telling a compelling story about the customer and distributor relationship, and delivering the message that the products customers know and love are back for good. <br> \\n“New Word Order perfectly captured all of those elements in a cohesive video series that authentically connects with the audience.” <br> \\n\\n** — Cris Gillespie, Head of Marketing at Chevron **\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign','Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136357,140107,1,'Burnie Brae','2022-05-12 06:39:12','2022-05-12 06:39:12','b2255686-3fe6-40be-9dbf-8f619502a0c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand that empowers rich lives',NULL,NULL,'What’s a Burnie Brae? That’s the question we needed to answer to help the community organisation create some clarity around their brand as they undertook an exciting brand and website refresh project.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZaXkCuEhzq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140080\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked closely with Burnie Brae to understand their issues and what makes them tick. There was a concern Burnie Brae was lacking meaning, awareness and connection for much of the public they serve, alongside a recognition that the brand was simply a bit ‘tired’ and neglected. \\nAs a branding and strategy specialist, New Word Order created a process to uncover some of the truths behind the brand to set the groundwork. Our team conducted a series of research and workshops before embarking on brand direction and narrative development projects.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140065\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With the foundations set, our creative team set to work on refreshing Burnie Brae’s visual identity. The creative concept painted a picture of community connection and explored a distinctive direction for the Burnie Brae brand. We adapted the existing logo and brand colours to build a fresh and recognisable feel.\\nWe redesigned and built a new website, improving the information navigation and creating better user journeys.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140069\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140066\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result has seen Burnie Brae take ownership of a revitalised brand identity that has stronger connections to their stakeholders. The stunning new website is simple to use and takes users on a compelling journey through Burnie Brae’s community service offerings.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136359,140109,1,'Chevron','2022-05-12 07:42:41','2022-05-12 07:42:41','80df7bd0-5ba3-415a-b195-5ae8292e7a02',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed as Chevron\'s go-to Australian agency as they reignited their Australian operations. We\'re helping them reach their business goals, relaunch their Puma retail network under the Caltex brand, and grow their market share in the lubricants B2B market.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gvKwuoJR7j\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547129?h=68b08b3b6f&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian lubricants division.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z59xrAwLVU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We conducted a competitor analysis to assess competitor brand messaging and positioning, interviews with key Chevron distributors in the B2B market and one-on-one interviews with the general customers.\\nOur insights indicated a need for authentic, ‘real life’ marketing collateral with which the audience can connect. We also gleaned that the messaging needed to be kept simple.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-f5LPArKwgF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689548339?h=5797d76cc7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP9dMqkL3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We made the creative decision to let the products take a backseat and instead shine a light on the customers’ businesses and their distributor relationships.\\nWe supplemented our inhouse production team with award-winning documentary cinematographer Mark Broadbent and the editing finesse of Anasiou Canaris to give the videos a warm and, at times, heartfelt tone. The customers in question are mostly generations-old businesses with a story to tell. So we told some stories.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gLOsbQtiKq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547741?h=7529fef734&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ahQwPi3ZPn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result was 20 video variations in a style you wouldn’t necessarily associate with marketing around fuel and lubricant products—something a little surprising, something that stands out from the crowd.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5dbIBMfjBJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“Our customers are the centre of everything we do, so we’re really proud to have created something that’s authentic to their experiences—their relationships with the distributors, their family values and the inter-generational ties in each of their businesses.\",\"plainText\":\"“We challenged New Word Order with a complex brief of showcasing the product, telling a compelling story about the customer and distributor relationship, and delivering the message that the products customers know and love are back for good. <br> \\n“New Word Order perfectly captured all of those elements in a cohesive video series that authentically connects with the audience.” <br> \\n\\n** — Cris Gillespie, Head of Marketing at Chevron **\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign','Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136361,140111,1,'Chevron','2022-05-13 00:03:12','2022-05-13 00:03:12','d11bad75-3f16-4707-a7bd-b6ddd513b867',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed as Chevron\'s go-to Australian agency as they reignited their Australian operations. We\'re helping them reach their business goals, relaunch their Puma retail network under the Caltex brand, and grow their market share in the lubricants B2B market.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gvKwuoJR7j\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547129?h=68b08b3b6f&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian lubricants division.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z59xrAwLVU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We conducted a competitor analysis to assess competitor brand messaging and positioning, interviews with key Chevron distributors in the B2B market and one-on-one interviews with the general customers.\\nOur insights indicated a need for authentic, ‘real life’ marketing collateral with which the audience can connect. We also gleaned that the messaging needed to be kept simple.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-f5LPArKwgF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689548339?h=5797d76cc7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP9dMqkL3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We made the creative decision to let the products take a backseat and instead shine a light on the customers’ businesses and their distributor relationships.\\nWe supplemented our inhouse production team with award-winning documentary cinematographer Mark Broadbent and the editing finesse of Anasiou Canaris to give the videos a warm and, at times, heartfelt tone. The customers in question are mostly generations-old businesses with a story to tell. So we told some stories.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gLOsbQtiKq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547741?h=7529fef734&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ahQwPi3ZPn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result was 20 video variations across five content pillars in a style you wouldn’t necessarily associate with marketing around fuel and lubricant products—something a little surprising, something that stands out from the crowd.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5dbIBMfjBJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“Our customers are the centre of everything we do, so we’re really proud to have created something that’s authentic to their experiences—their relationships with the distributors, their family values and the inter-generational ties in each of their businesses.\",\"plainText\":\"“We challenged New Word Order with a complex brief of showcasing the product, telling a compelling story about the customer and distributor relationship, and delivering the message that the products customers know and love are back for good. <br> \\n“New Word Order perfectly captured all of those elements in a cohesive video series that authentically connects with the audience.” <br> \\n\\n** — Cris Gillespie, Head of Marketing at Chevron **\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign','Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136363,140113,1,'Endeavour Foundation','2022-05-16 04:02:10','2022-05-16 04:02:10','eff9485c-b9ee-4e72-b4dd-b7556106d326',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rebranding an icon for a new era',NULL,NULL,'The Endeavour Foundation came to us with a new mandate and a new logo that needed the support of an incredible brand story. We stepped in to capture the essence of authentic customer service: to tell Endeavour’s compelling brand story about the people they serve, and the people who serve.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-i7VSDgqc7V\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45336\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XE9ZIQrYn6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Endeavour delivers essential, personalised and compassionate services to people with intellectual disabilities. When the NDIS was introduced, it was the perfect opportunity for Endeavour to show the world what their services mean to the community it serves.\\n\\nThey asked us to take their new logo and develop a complementary campaign and suite of branding tools to support it. Our goal was to capture the heart of Endeavour Foundation through storytelling and unify the foundation’s people and customers under one powerful vision.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5lKlpPU30x\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45338\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jeFwrbtZMK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45339\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JKRNdGpqnc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We based our campaign strategy on one question: what would make my life better? The question explored Endeavour’s objective to create a brand that could represent their customers and generate greater possibilities for their care. Our creative solution was to make Endeavour customers the heroes.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uYLiG0E4oM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/265285881\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MQfzkp05OB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Endeavour’s new brand video is an expression of their unifying purpose to truly serve and make a meaningful difference in the lives of their customers.\\n\\nThe campaign speaks for and to the extended stakeholder community about the vision, quality and outcomes of Endeavour’s services. It included:\\n* brand story\\n* full visual brand development from a supplied logo\\n* hero photography\\n* brand book\\n* brand video\\n* employer brand and collateral\\n* launch campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QPJ6J6kHcL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45340\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qBnvWlcG0T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Many powerful stories came out of this job, but the most incredible was watching Endeavour customers embrace the opportunity to model for our video and photography crew. Endeavour reported back to us the meaningful moments when their customers saw their photos for the first time.\\n\\nSince the brand and campaign launch in June 2018, Endeavour has boosted their number of leads for their main service areas: accommodation, day services and work placements. With a long-term goal in mind, these results are significantly greater than anticipated, and only a few months since the campaign launch.\\n\\nIn addition, Endeavour reported to us unexpected community engagement at their events—people who have no connection to intellectual disability and have not previously been involved with the foundation. We look forward to following this story and discovering the full impact of our work.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136365,140115,1,'Endeavour Foundation','2022-05-16 04:02:36','2022-05-16 04:02:36','4ca8a354-458a-4c88-9368-ddec5bab1616',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rebranding an icon for a new era',NULL,NULL,'The Endeavour Foundation came to us with a new mandate and a new logo that needed the support of an incredible brand story. We stepped in to capture the essence of authentic customer service: to tell Endeavour’s compelling brand story about the people they serve, and the people who serve.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-i7VSDgqc7V\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45336\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XE9ZIQrYn6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Endeavour delivers essential, personalised and compassionate services to people with intellectual disabilities. When the NDIS was introduced, it was the perfect opportunity for Endeavour to show the world what their services mean to the community it serves.\\n\\nThey asked us to take their new logo and develop a complementary campaign and suite of branding tools to support it. Our goal was to capture the heart of Endeavour Foundation through storytelling and unify the foundation’s people and customers under one powerful vision.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5lKlpPU30x\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45338\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jeFwrbtZMK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45339\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JKRNdGpqnc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We based our campaign strategy on one question: what would make my life better? The question explored Endeavour’s objective to create a brand that could represent their customers and generate greater possibilities for their care. Our creative solution was to make Endeavour customers the heroes.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uYLiG0E4oM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/265285881\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MQfzkp05OB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Endeavour’s new brand video is an expression of their unifying purpose to truly serve and make a meaningful difference in the lives of their customers.\\n\\nThe campaign speaks for and to the extended stakeholder community about the vision, quality and outcomes of Endeavour’s services. It included:\\n+ brand story\\n+ full visual brand development from a supplied logo\\n+ hero photography\\n+ brand book\\n+ brand video\\n+ employer brand and collateral\\n+ launch campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QPJ6J6kHcL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45340\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qBnvWlcG0T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Many powerful stories came out of this job, but the most incredible was watching Endeavour customers embrace the opportunity to model for our video and photography crew. Endeavour reported back to us the meaningful moments when their customers saw their photos for the first time.\\n\\nSince the brand and campaign launch in June 2018, Endeavour has boosted their number of leads for their main service areas: accommodation, day services and work placements. With a long-term goal in mind, these results are significantly greater than anticipated, and only a few months since the campaign launch.\\n\\nIn addition, Endeavour reported to us unexpected community engagement at their events—people who have no connection to intellectual disability and have not previously been involved with the foundation. We look forward to following this story and discovering the full impact of our work.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136367,140117,1,'Endeavour Foundation','2022-05-16 04:03:16','2022-05-16 04:03:16','8881e7b0-f2d8-43e4-97f9-08d250b9d1ed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rebranding an icon for a new era',NULL,NULL,'The Endeavour Foundation came to us with a new mandate and a new logo that needed the support of an incredible brand story. We stepped in to capture the essence of authentic customer service: to tell Endeavour’s compelling brand story about the people they serve, and the people who serve.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-i7VSDgqc7V\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45336\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XE9ZIQrYn6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Endeavour delivers essential, personalised and compassionate services to people with intellectual disabilities. When the NDIS was introduced, it was the perfect opportunity for Endeavour to show the world what their services mean to the community it serves.\\n\\nThey asked us to take their new logo and develop a complementary campaign and suite of branding tools to support it. Our goal was to capture the heart of Endeavour Foundation through storytelling and unify the foundation’s people and customers under one powerful vision.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5lKlpPU30x\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45338\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jeFwrbtZMK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45339\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JKRNdGpqnc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We based our campaign strategy on one question: what would make my life better? The question explored Endeavour’s objective to create a brand that could represent their customers and generate greater possibilities for their care. Our creative solution was to make Endeavour customers the heroes.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uYLiG0E4oM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/265285881\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MQfzkp05OB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Endeavour’s new brand video is an expression of their unifying purpose to truly serve and make a meaningful difference in the lives of their customers.\\n\\nThe campaign speaks for and to the extended stakeholder community about the vision, quality and outcomes of Endeavour’s services. It included:\\n+ brand story\\n+ full visual brand development from a supplied logo\\n+ hero photography\\n+ brand book\\n+ brand video\\n+ employer brand and collateral\\n+ launch campaign.\\n\\n<ul>\\n  <li>First item</li>\\n  <li>Second item</li>\\n  <li>Third item</li>\\n  <li>Fourth item</li>\\n</ul>\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QPJ6J6kHcL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45340\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qBnvWlcG0T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Many powerful stories came out of this job, but the most incredible was watching Endeavour customers embrace the opportunity to model for our video and photography crew. Endeavour reported back to us the meaningful moments when their customers saw their photos for the first time.\\n\\nSince the brand and campaign launch in June 2018, Endeavour has boosted their number of leads for their main service areas: accommodation, day services and work placements. With a long-term goal in mind, these results are significantly greater than anticipated, and only a few months since the campaign launch.\\n\\nIn addition, Endeavour reported to us unexpected community engagement at their events—people who have no connection to intellectual disability and have not previously been involved with the foundation. We look forward to following this story and discovering the full impact of our work.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136369,140119,1,'Endeavour Foundation','2022-05-16 04:04:22','2022-05-16 04:04:22','0d1f46e5-d991-4e06-8ceb-e298ac382764',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rebranding an icon for a new era',NULL,NULL,'The Endeavour Foundation came to us with a new mandate and a new logo that needed the support of an incredible brand story. We stepped in to capture the essence of authentic customer service: to tell Endeavour’s compelling brand story about the people they serve, and the people who serve.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-i7VSDgqc7V\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45336\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XE9ZIQrYn6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Endeavour delivers essential, personalised and compassionate services to people with intellectual disabilities. When the NDIS was introduced, it was the perfect opportunity for Endeavour to show the world what their services mean to the community it serves.\\n\\nThey asked us to take their new logo and develop a complementary campaign and suite of branding tools to support it. Our goal was to capture the heart of Endeavour Foundation through storytelling and unify the foundation’s people and customers under one powerful vision.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5lKlpPU30x\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45338\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jeFwrbtZMK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45339\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JKRNdGpqnc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We based our campaign strategy on one question: what would make my life better? The question explored Endeavour’s objective to create a brand that could represent their customers and generate greater possibilities for their care. Our creative solution was to make Endeavour customers the heroes.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uYLiG0E4oM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/265285881\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MQfzkp05OB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Endeavour’s new brand video is an expression of their unifying purpose to truly serve and make a meaningful difference in the lives of their customers.\\n\\nThe campaign speaks for and to the extended stakeholder community about the vision, quality and outcomes of Endeavour’s services. It included:\\n<ul>\\n  <li>brand story</li>\\n  <li>full visual brand development from a supplied logo</li>\\n  <li>hero photography</li>\\n  <li>brand book</li>\\n  <li>brand video</li>\\n  <li>employer brand and collateral</li>\\n  <li>launch campaign.</li>\\n</ul>\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QPJ6J6kHcL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45340\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qBnvWlcG0T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Many powerful stories came out of this job, but the most incredible was watching Endeavour customers embrace the opportunity to model for our video and photography crew. Endeavour reported back to us the meaningful moments when their customers saw their photos for the first time.\\n\\nSince the brand and campaign launch in June 2018, Endeavour has boosted their number of leads for their main service areas: accommodation, day services and work placements. With a long-term goal in mind, these results are significantly greater than anticipated, and only a few months since the campaign launch.\\n\\nIn addition, Endeavour reported to us unexpected community engagement at their events—people who have no connection to intellectual disability and have not previously been involved with the foundation. We look forward to following this story and discovering the full impact of our work.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136371,140121,1,'Chevron','2022-05-16 04:28:37','2022-05-16 04:28:38','9896f4dc-ef84-41db-b98f-77696cbdd13d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed as Chevron\'s go-to Australian agency as they reignited their Australian operations. We\'re helping them reach their business goals, relaunch their Puma retail network under the Caltex brand, and grow their market share in the lubricants B2B market.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gvKwuoJR7j\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547129?h=68b08b3b6f&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian lubricants division.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z59xrAwLVU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We conducted a competitor analysis to assess competitor brand messaging and positioning, interviews with key Chevron distributors in the B2B market and one-on-one interviews with the general customers.\\nOur insights indicated a need for authentic, ‘real life’ marketing collateral with which the audience can connect. We also gleaned that the messaging needed to be kept simple.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-f5LPArKwgF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689548339?h=5797d76cc7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP9dMqkL3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We made the creative decision to let the products take a backseat and instead shine a light on the customers’ businesses and their distributor relationships.\\nWe supplemented our inhouse production team with award-winning documentary cinematographer Mark Broadbent and the editing finesse of Anasiou Canaris to give the videos a warm and, at times, heartfelt tone. The customers in question are mostly generations-old businesses with a story to tell. So we told some stories.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gLOsbQtiKq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547741?h=7529fef734&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ahQwPi3ZPn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result was 20 video variations across five content pillars in a style you wouldn’t necessarily associate with marketing around fuel and lubricant products—something a little surprising, something that stands out from the crowd.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5dbIBMfjBJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“Our customers are the centre of everything we do, so we’re really proud to have created something that’s authentic to their experiences—their relationships with the distributors, their family values and the inter-generational ties in each of their businesses.\",\"plainText\":\"“We challenged New Word Order with a complex brief of showcasing the product, telling a compelling story about the customer and distributor relationship, and delivering the message that the products customers know and love are back for good. <br> \\n“New Word Order perfectly captured all of those elements in a cohesive video series that authentically connects with the audience.” <br> \\n\\n** — Cris Gillespie, Head of Marketing at Chevron **\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign','Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136373,140123,1,'Burnie Brae','2022-05-17 02:45:06','2022-05-25 22:56:49','da0c06a1-5e0d-4e9d-b16c-3aa25a69c345',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand that empowers rich lives',NULL,NULL,'What’s a Burnie Brae? That’s the question we needed to answer to help the community organisation create some clarity around their brand as they undertook an exciting brand and website refresh project.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZaXkCuEhzq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140080\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked closely with Burnie Brae to understand their issues and what makes them tick. There was a concern Burnie Brae was lacking meaning, awareness and connection for much of the public they serve, alongside a recognition that the brand was simply a bit ‘tired’ and neglected. \\nAs a branding and strategy specialist, New Word Order created a process to uncover some of the truths behind the brand to set the groundwork. Our team conducted a series of research and workshops before embarking on brand direction and narrative development projects.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140065\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With the foundations set, our creative team set to work on refreshing Burnie Brae’s visual identity. The creative concept painted a picture of community connection and explored a distinctive direction for the Burnie Brae brand. We adapted the existing logo and brand colours to build a fresh and recognisable feel.\\nWe redesigned and built a new website, improving the information navigation and creating better user journeys.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140069\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140066\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result has seen Burnie Brae take ownership of a revitalised brand identity that has stronger connections to their stakeholders. The stunning new website is simple to use and takes users on a compelling journey through Burnie Brae’s community service offerings.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136374,140124,1,'Terms and conditions','2022-05-17 03:06:41','2022-05-17 03:06:41','3aa20c45-38dd-494d-8f7b-3405ab0dd554',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LU0O2e8wW5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"General terms and conditions\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"##### **About this estimate**\\n\\nOur estimate is valid for a period of 45 days from the date of issue.\\n\\nThe following documents should be read together to understand the scope and price of our quoted services:\\n\\n- our estimate\\n- your brief, if supplied\\n- these Terms and Conditions\\n\\nThe estimate has been provided according to your brief to us. Any exclusions noted in the estimate should not be taken as exhaustive and you should assume that unless a service has been explicitly listed in the quote, it is not included in the price. \\n\\nAlterations to this brief or specifications will incur further costs, and we reserve the right to alter this estimate should we believe the changing scope of work falls outside of what was originally quoted.\\n\\nIt is your responsibility as the client to contact your account manager prior to approving the quote if you have queries or require clarification about any items in the quote. It is also your responsibility as the client to ensure this estimate accurately reflects the scope of work you require.\\n\\nBefore we begin work, you must sign your approval of the estimate and, if your organisation uses an ordering system, provide an order number or purchase order.\\n\\nYour acceptance of our estimate includes full acceptance of the conditions and payment terms listed in these terms and conditions. Once quotation approval has been provided, these conditions and payment terms are not negotiable.\\n\\nWe use the terms estimate and quote interchangeably and their meaning should be taken as the same: a cost estimate to the value of the work required to achieve your outcomes based on information you have provided us. This estimate may change in response to your project needs and, if it does, a new or additional quote may be required to be approved before work continues.\\n\\n##### **Approval**\\n\\nWe use Docusign for some estimates or, for smaller jobs, require an authorisation signature on a copy of the provided estimate. Your account manager will let you know the required authorisation method. No work can be scheduled until we have a duly authorised estimate through Docusign or your signature on an estimate.\\n\\n##### **Beginning your project**\\n\\nWe will not schedule or begin work on your project until we receive from you all of the artwork, content and other files required for the project, as well as the approved estimate or a purchase order.\\n\\nFor example, for an annual report, this might include all finalised content, graphs, charts, images, captions, financial statements and logos. This saves our studio unnecessary downtime and you money.\\n\\nWe will negotiate and document exceptions where required, but please be aware this may affect your costs and timeline.\\nYour NWO account manager may provide you with a checklist to ensure you are aware of all material that you must provide before we begin work on your project.\\n\\n##### **Brief**\\n\\nUsually, projects within NWO are worked on according to a brief developed in consultation between you and us. If you have not supplied a written brief to us, we may ask you to fill out our briefing template before we create an estimate. You need to check the wording of our estimate directly reflects your understanding of the work we’re carrying out for you. If it does not, please tell us and we will not begin working on the project until your concern is answered.\\n\\n##### **Checking, approval and signing-off**\\n\\nAs the client, you are responsible for checking your project for any errors and approving the final project. When you advise us that you approve a project, we take this to mean that you have checked it thoroughly for errors and that you are satisfied it has been completed to your satisfaction. For complex or additional jobs, we may ask you to fill in an approval form.\\n\\nWe have in place procedures and systems to ensure each of our finished projects reaches the highest possible standard of quality. However, from time to time, errors can occur. While we will do everything possible to fix the error, you are responsible for checking and approving the finished project and, as such, any costs of repairing the error are your responsibility.\\n\\nOn some projects, we may require you to provide your approval in writing before we finish work on your job or continue to publication or printing.\\n\\n##### **Client-directed alterations**\\n\\nAs much as possible, we try to accommodate client input and alterations within our quotes. However feedback, corrections and alterations to the brief over and above those quoted will be charged as incurred. Any requested changes are handled through our change control procedure which is:\\n\\n1. Any request for change must be detailed in writing including a description of the required change, the rationale for the change, and the effect the change will have on the project.\\n2. Your account manager will review the proposed change and determine, in consultation with you, if the change is within existing scope or outside the existing project scope. \\n3. If the change is minor and within the scope of the project briefing and/or budget, your account manager will schedule the change to be made at an appropriate time. \\n4. If the change is outside the scope of the existing project briefing and/or budget, your account manager will review the proposed change. \\n5. Your account manager will supply you with a quotation for the requested changes.\\n6. Work on the changes will be scheduled when we receive written  authorisation from you for the work and the associated charges. \\n7. Charges will be invoiced to you after we have implemented the agreed changes. \\n\\nThis is how we define a single round of changes: We supply the draft product, you email or otherwise detail the changes, and we then include those changes in our final product to you. Please note our preferred way of receiving changes is via a marked-up PDF. Your account manager can help you with this if you are unsure about marking up a PDF.\\n\\nChanges beyond this scope will be charged as author’s corrections. Please be aware that, during author’s corrections, all staff involved in the corrections process will incur costs for you. Depending on your project and the corrections required, this may include an account manager, producer, designer, editor, writer and so on.\\n\\nIf there is unused time left over from your estimate, we will use that time to make your alterations to save you money. Once that amount has been exhausted, however, we will begin charging author’s corrections and we will advise you of this by email and then in weekly cost updates.\\nYou can reduce the amount of corrections by:\\n\\n- supplying approved sourced material and instructions prior to NWO commencing work\\n- seeking authority within your organisation to be the ultimate decision-maker for this project\\n- advising the multiple stakeholders within your organisation of the cost of unbudgeted changes\\n- compiling all feedback into a single document for NWO’s use.\\n \\n##### **Digital projects**\\n\\nThe following terms are specific to digital projects. \\n\\n**Digital content entry**\\n\\nWhere the estimate pertains to content entry for your digital project, time has been allocated for us to input a set amount of content (as defined by the estimate). Should more time be required, it will be charged at our standard hourly rate. Content cannot be input until the project has been finalised and fully tested by NWO. Your timelines should allow content to be uploaded after completion of development and prior to final testing.\\n\\n**Acceptance and completion**\\n\\nWe will conduct testing throughout the project development; however, you are responsible for confirming the works produced by NWO are as per the brief and fit for the purpose and function as contracted. If no acceptance testing is undertaken by you, the product will be deemed accepted when launched or on its first public use. After acceptance, alterations/fixes will be charged as incurred.\\n\\n**Website warranty**\\n\\nWhen not otherwise specified our warranty period covers your website for 30 days from the acceptance date. Any issues in functionality that are brought to our attention during this period will be fixed without charge in a time frame to be negotiated with you. Charges will apply for any fixes outside the warranty period or changes to the website that are outside the scope of the original quotation.\\n\\n**Platform and browser compatibility**\\n\\nUnless otherwise specified, New Word Order will test the following browsers on the version current at the date of our estimate. \\n\\n- Chrome\\n- Edge\\n- Firefox\\n- Safari\\n- Opera\\n\\nNew Word Order is not responsible for work to update websites when new browsers are released after acceptance or if the website does not work on browsers not included in the list provided. Internet Explorer and other deprecated browsers are not tested against and, if required and possible, will incur additional charges\\n\\n**Third-party software**\\n\\nIf third-party software is used in the delivery of your digital product unless otherwise specified the fees for the software are an annual licence fee. You agree to pay ongoing charges to ensure the continued functionality of your product.\\nIf you enter into a maintenance contract with us, on-going software licence fees will be included in the maintenance fees.\\n\\n##### **Deadlines**\\n\\nWe pride ourselves on meeting tight deadlines and have a strong reputation with our clients for fast, reliable work.\\n\\nHowever, if you significantly alter the brief – such as change text or photos that have already been supplied and approved, change website layouts, or increase the volume  to be produced – or other circumstances occur beyond our control, we may advise you of revised timelines.\\n\\nWe understand that circumstances change. We schedule all work into our studios based on delivery requirements. If your delivery requirements change you should inform us immediately.\\n\\nIf you are unable to meet timeframes for providing us information, feedback or content, we may withdraw your job from the studio until you get it to us. If your project has been delayed due to the loss of a scheduling window or the late approval of the estimate or proposal, we will inform you of the revised timeline.\\n\\nIf timelines are not being adhered to on your part and the project is on hold for 90 days or more, we reserve the right to close the project. You will be invoiced for any outstanding costs incurred up to the date of closure. Any overpayments will be refunded. We will always advise you before doing so, and will be happy to pick your project back up when you are ready to move ahead. \\n\\nRestarting a project will incur a re-commencement fee which will be invoiced prior to work starting again.\\n\\n##### **Administration and consumables**\\n\\nExpenses and administrative costs are incurred during every project. These may include phone calls, printing, couriers, proofs, materials, and finance and administrative work to make your project run smoothly.\\n\\nYour quote includes an estimate for these expenses, calculated at 3 per cent of your total quoted amount. We will advise you if these expenses will exceed the quoted amount.\\n\\n##### **Payment terms and pre-payments**\\n\\nOur invoices are to be paid within 14 days of the invoice date, with longer payment terms available for negotiation before a job begins.\\n\\n**When you’re a new client**\\n\\nIf you’re a new client, we reserve the right to invoice you 50 per cent of the total project fee before beginning work, or 100 per cent if the job is under $5000.\\n\\n**When you’re an existing client**\\n\\nIf you’re already a client of ours, we reserve the right to invoice you 30 per cent of the total project fee before beginning work, or 100 per cent if the job is under $5000.\\n\\n**When you owe us money**\\n\\nIf payment is delayed longer than 30 days, we reserve the right to withhold future and existing work until payment is made. See Late Payment below for fees associated with late payments.\\n\\n**When we’re employing suppliers for you**\\n\\nDepending on the level of costs and complexity associated with your project, we may choose to request a deposit of up to 50 per cent of the total cost prior to commencing your project. In this case, the remaining costs will be split into milestone-based payments.\\n\\n**When our work forms part of a larger project**\\n\\nWe reserve the right to invoice you when our responsibility within a project has been completed—not when your project has been completed in total.\\n\\n**When you order our work for your client**\\n\\nIf you have ordered our work on behalf of a third party, our payment terms still apply. Payment is required when our work is complete, not when you receive payment.\\n\\n**When you choose to make an advance payment**\\n\\nIf we agree to an advance payment, all work must be completed within that financial year.\\n\\n**Late payment**\\n\\nIf you do not pay us by the due date on an invoice, we reserve the right to cease production on any of your projects.\\n\\nWe may also charge a late payment fee:\\n\\n- 30-60 days late: 5%\\n- 60-90 days late: 10%\\n- 120+ days late: 15%\\n\\nWe do not offer payback schemes or loan arrangements. \\n\\nWe may engage a third party for debt recovery services of any payments which are more than 45 days overdue. Relevant contact details and information about outstanding payments will be provided to them to enable them to liaise directly with you for debt recovery purposes. \\n\\n##### **Limitation of liability**\\n\\nBy commissioning our services, you are agreeing that you will not hold New Word Order or its agents or employees liable for any incidental or consequential damages which arise from our failure to perform any aspect of the project in a timely manner, regardless of whether such failure was caused by intentional or negligent acts or omissions of New Word Order or a third party. Furthermore, we disclaim all implied warranties.\\n\\n##### **Photography and images**\\n\\nUnless otherwise specified in this estimate, we will charge you an additional amount if we purchase images from a stock library for your project.\\n\\nPlease note that you are responsible for ensuring all of your supplied images match the specifications we give you for your project. We expect you to comply with all relevant copyright and privacy laws and only supply content for which you have full authority to use\\n\\nWe reserve the right to charge additional time to assess your photo files and improve substandard images.\\n\\n##### **Print management and file output**\\n\\nWe have extensive experience in managing print projects. When you choose us to manage your print, you gain access to our experience, established supplier network and exacting quality control standards.\\n\\nFrom time to time, our clients choose to manage print themselves. In these situations, we will include a file output fee to cover the cost of supplying the file, and time taken to liaise with the printer will be charged as project management.\\n\\nWe hold onto current jobs for 6 months. After that time, your files are moved to our archive backup. If you require old files from our archive, a fee will be charged to locate and provide to you.\\n\\n##### **Project management**\\n\\nOur account and project managers make sure your project stays on track. This takes time and considerable effort. Your estimate contains a fee for project/account management that covers the administrative and management hours we expect our agency will expend in delivering your project.\\n\\nThese include project meetings between you and us, scheduling your work in the studios, ensuring projects are delivered on time and on budget, production of audio-visual and print components, and making sure project outcomes are in line with our requirements.\\n\\n##### **Publicity**\\n\\nWe may use your name for the purpose of promotional activities involving the works we have carried out for you, unless otherwise specified.\\n\\nSupplying material to us\\n\\nWe undertake projects in good faith. If the material you supply – such as photography, graphics or text – do not match the expected standard set during our discussions, we reserve the right to charge for the time it will take to improve or alter the material in order to use it.\\n\\nPlease supply all text, graphics and images in a digital format unless otherwise specified in this estimate or brief. Only supply material that you have the legal and ethical right to use.\\n\\n##### **Tenders**\\n\\nFrom time to time, we are engaged to supply services under a preferred supplier or tender arrangement. We reserve the right to withdraw from providing services after or during our appointment if changes to scope or exceptional circumstances make delivery untenable. Any decision will be made in consultation with the client.\\n\\n##### **Warranty of originality**\\n\\nNew Word Order warrants and represents that, to the best of its knowledge, the work assigned hereunder is original and has not been previously published, or that consent to use has been obtained on an unlimited basis; that all work or portions thereof obtained through the undersigned from third parties is original or, if previously published, that consent to use has been obtained on an unlimited basis; that New Word Order has full authority to make this agreement; and that the work prepared by New Word Order does not contain any scandalous, libellous, or unlawful matter. \\n\\nThis warranty does not extend to any uses that the client or others may make of our product that may infringe on the rights of others. The client expressly agrees that it will hold New Word Order harmless for all liability caused by the client’s use of our product to extent such use infringes on the rights of others.\\n\\n##### **Writing services**\\n\\nWe have extensive experience in all forms of writing and editing. Based on our experience, we choose not to work with Word files that contain multiple images or tables, as these files easily corrupt during the editing process. We are happy, though, to work with Word files with the images and tables extracted. Redesigning the Word file to include the images and tables at the end of the editing process will incur a separate fee.\\n\\n##### **Your obligation**\\n\\nYou have sole responsibility of ensuring the suitability and availability of any trademark rights, copyrights or other property rights that are intended to vest in the works that we have been commissioned to produce in accordance with your instructions.\\n\\n##### **Intellectual property**\\n\\nAny research data, concepts, diagrams or illustrations remain the property of New Word Order. Any alternate intellectual property rights contained in the design or materials used in the execution of this project, including artwork and computer-generated instructions and information, remain with New Word Order. \\n\\nYou warrant that you hold all necessary intellectual property rights in any document or material (including, but not limited to, plans and drawings), that are supplied to New Word Order for its provision of goods and services and that there is or will be no infringement of any rights or entitlements held by any third party. \\n\\nYou also indemnify and hold harmless New Word Order for any claims made against it arising from New Word Order’s use of any drawings, design or any other document, material or information provided by you, the client. \\n\\nYou warrant that all designs or instructions to New Word Order will not cause New Word Order to infringe any patent, registered design or trademark in the execution of the client orders.\\n\\n##### **Termination**\\n\\nNew Word Order may refuse to enter into this contract or terminate any existing arrangements, without prejudice, if we find our core values are at odds with yours. Our core values put people at the centre of everything we do. We do not condone discrimination of any kind, nor do we condone violations of human rights. \\n\\nWe also may terminate a contract if invoices are unpaid (see Payment terms and pre-payments) or if you become insolvent.\\n\\n##### **Changes to Terms and Conditions**\\n\\nFrom time-to-time we may make changes to these Terms and Conditions. Any changes, unless otherwise notified, will come into effect on your next project with us.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136375,140125,1,'Privacy policy','2022-05-17 23:19:11','2022-05-17 23:19:11','46302f1c-e258-420a-9717-4f1728b3b09e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cswrs0dIt7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Privacy policy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Your privacy is important to us. It is New Word Order’s policy to respect your privacy regarding any information we may collect from you across our website, http://newwordorder.com.au, and other sites we own and operate.\\nWe only ask for personal information when we truly need it to provide a service to you. We collect it by fair and lawful means, with your knowledge and consent. We also let you know why we’re collecting it and how it will be used.\\n\\nWe only retain collected information for as long as necessary to provide you with your requested service. What data we store, we’ll protect within commercially acceptable means to prevent loss and theft, as well as unauthorised access, disclosure, copying, use or modification.\\nWe don’t share any personally identifying information publicly or with third-parties, except when required to by law.\\n\\nOur website may link to external sites that are not operated by us. Please be aware that we have no control over the content and practices of these sites, and cannot accept responsibility or liability for their respective privacy policies.\\n\\nYou are free to refuse our request for your personal information, with the understanding that we may be unable to provide you with some of your desired services.\\n\\nYour continued use of our website will be regarded as acceptance of our practices around privacy and personal information. If you have any questions about how we handle user data and personal information, feel free to contact us.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Privacy policy\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136376,140126,1,'Privacy policy','2022-05-17 23:19:12','2022-05-17 23:19:12','a634d5e3-1921-42ed-86f4-f224c561932b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cswrs0dIt7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Privacy policy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Your privacy is important to us. It is New Word Order’s policy to respect your privacy regarding any information we may collect from you across our website, http://newwordorder.com.au, and other sites we own and operate.\\nWe only ask for personal information when we truly need it to provide a service to you. We collect it by fair and lawful means, with your knowledge and consent. We also let you know why we’re collecting it and how it will be used.\\n\\nWe only retain collected information for as long as necessary to provide you with your requested service. What data we store, we’ll protect within commercially acceptable means to prevent loss and theft, as well as unauthorised access, disclosure, copying, use or modification.\\nWe don’t share any personally identifying information publicly or with third-parties, except when required to by law.\\n\\nOur website may link to external sites that are not operated by us. Please be aware that we have no control over the content and practices of these sites, and cannot accept responsibility or liability for their respective privacy policies.\\n\\nYou are free to refuse our request for your personal information, with the understanding that we may be unable to provide you with some of your desired services.\\n\\nYour continued use of our website will be regarded as acceptance of our practices around privacy and personal information. If you have any questions about how we handle user data and personal information, feel free to contact us.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Privacy policy\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136377,140127,1,'Contact ','2022-05-17 23:19:13','2022-05-17 23:19:13','be4b2315-068a-429a-8986-a6d3d3b9b602',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dJRNyHHzcn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Contact us\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Like what you see? Get in touch with us—we can’t wait to meet you.\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":\"Contact\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2RtDIpwkus\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<!--[if lte IE 8]>\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2-legacy.js\\\"></script>\\n<![endif]-->\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n\\tregion: \\\"na1\\\",\\n\\tportalId: \\\"8394441\\\",\\n\\tformId: \\\"74668c3f-aa7f-4ec7-aa81-c8ce26655bfe\\\"\\n});\\n</script>\",\"backgroundColour\":\"bg-black\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | Contact us','We are a creative agency that specialises in strategy, brand and behaviour change. Get in touch with us—we can’t wait to meet you.','strategy, brand, campaign, behaviour change, engagement, content, digital',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `content` VALUES (136378,140128,1,'Contact ','2022-05-17 23:19:14','2022-05-17 23:19:14','08801481-5cd0-4159-975a-b7f7302ce84c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dJRNyHHzcn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Contact us\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Like what you see? Get in touch with us—we can’t wait to meet you.\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":\"Contact\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2RtDIpwkus\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<!--[if lte IE 8]>\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2-legacy.js\\\"></script>\\n<![endif]-->\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n\\tregion: \\\"na1\\\",\\n\\tportalId: \\\"8394441\\\",\\n\\tformId: \\\"74668c3f-aa7f-4ec7-aa81-c8ce26655bfe\\\"\\n});\\n</script>\",\"backgroundColour\":\"bg-black\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | Contact us','We are a creative agency that specialises in strategy, brand and behaviour change. Get in touch with us—we can’t wait to meet you.','strategy, brand, campaign, behaviour change, engagement, content, digital',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136379,140129,1,'Home','2022-05-17 23:19:15','2022-05-17 23:19:15','678befaf-90b9-4b5a-a71c-0eb33dfe8296',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | Brisbane','It\'s time for change. Proven strategy, fresh creative and powerful execution that will change your business.','strategy, brand, campaign, behaviour change, engagement, content, digital',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136380,140136,1,'Home','2022-05-17 23:19:16','2022-05-17 23:19:16','4c8e2bc8-1c46-4429-8479-f9072c4f7749',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | Brisbane','It\'s time for change. Proven strategy, fresh creative and powerful execution that will change your business.','strategy, brand, campaign, behaviour change, engagement, content, digital',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136381,140137,1,'Terms and conditions','2022-05-17 23:19:17','2022-05-17 23:19:17','c1f7fa49-fc37-4f27-8997-9be61c41d6b1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LU0O2e8wW5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"General terms and conditions\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"##### **About this estimate**\\n\\nOur estimate is valid for a period of 45 days from the date of issue.\\n\\nThe following documents should be read together to understand the scope and price of our quoted services:\\n\\n- our estimate\\n- your brief, if supplied\\n- these Terms and Conditions\\n\\nThe estimate has been provided according to your brief to us. Any exclusions noted in the estimate should not be taken as exhaustive and you should assume that unless a service has been explicitly listed in the quote, it is not included in the price. \\n\\nAlterations to this brief or specifications will incur further costs, and we reserve the right to alter this estimate should we believe the changing scope of work falls outside of what was originally quoted.\\n\\nIt is your responsibility as the client to contact your account manager prior to approving the quote if you have queries or require clarification about any items in the quote. It is also your responsibility as the client to ensure this estimate accurately reflects the scope of work you require.\\n\\nBefore we begin work, you must sign your approval of the estimate and, if your organisation uses an ordering system, provide an order number or purchase order.\\n\\nYour acceptance of our estimate includes full acceptance of the conditions and payment terms listed in these terms and conditions. Once quotation approval has been provided, these conditions and payment terms are not negotiable.\\n\\nWe use the terms estimate and quote interchangeably and their meaning should be taken as the same: a cost estimate to the value of the work required to achieve your outcomes based on information you have provided us. This estimate may change in response to your project needs and, if it does, a new or additional quote may be required to be approved before work continues.\\n\\n##### **Approval**\\n\\nWe use Docusign for some estimates or, for smaller jobs, require an authorisation signature on a copy of the provided estimate. Your account manager will let you know the required authorisation method. No work can be scheduled until we have a duly authorised estimate through Docusign or your signature on an estimate.\\n\\n##### **Beginning your project**\\n\\nWe will not schedule or begin work on your project until we receive from you all of the artwork, content and other files required for the project, as well as the approved estimate or a purchase order.\\n\\nFor example, for an annual report, this might include all finalised content, graphs, charts, images, captions, financial statements and logos. This saves our studio unnecessary downtime and you money.\\n\\nWe will negotiate and document exceptions where required, but please be aware this may affect your costs and timeline.\\nYour NWO account manager may provide you with a checklist to ensure you are aware of all material that you must provide before we begin work on your project.\\n\\n##### **Brief**\\n\\nUsually, projects within NWO are worked on according to a brief developed in consultation between you and us. If you have not supplied a written brief to us, we may ask you to fill out our briefing template before we create an estimate. You need to check the wording of our estimate directly reflects your understanding of the work we’re carrying out for you. If it does not, please tell us and we will not begin working on the project until your concern is answered.\\n\\n##### **Checking, approval and signing-off**\\n\\nAs the client, you are responsible for checking your project for any errors and approving the final project. When you advise us that you approve a project, we take this to mean that you have checked it thoroughly for errors and that you are satisfied it has been completed to your satisfaction. For complex or additional jobs, we may ask you to fill in an approval form.\\n\\nWe have in place procedures and systems to ensure each of our finished projects reaches the highest possible standard of quality. However, from time to time, errors can occur. While we will do everything possible to fix the error, you are responsible for checking and approving the finished project and, as such, any costs of repairing the error are your responsibility.\\n\\nOn some projects, we may require you to provide your approval in writing before we finish work on your job or continue to publication or printing.\\n\\n##### **Client-directed alterations**\\n\\nAs much as possible, we try to accommodate client input and alterations within our quotes. However feedback, corrections and alterations to the brief over and above those quoted will be charged as incurred. Any requested changes are handled through our change control procedure which is:\\n\\n1. Any request for change must be detailed in writing including a description of the required change, the rationale for the change, and the effect the change will have on the project.\\n2. Your account manager will review the proposed change and determine, in consultation with you, if the change is within existing scope or outside the existing project scope. \\n3. If the change is minor and within the scope of the project briefing and/or budget, your account manager will schedule the change to be made at an appropriate time. \\n4. If the change is outside the scope of the existing project briefing and/or budget, your account manager will review the proposed change. \\n5. Your account manager will supply you with a quotation for the requested changes.\\n6. Work on the changes will be scheduled when we receive written  authorisation from you for the work and the associated charges. \\n7. Charges will be invoiced to you after we have implemented the agreed changes. \\n\\nThis is how we define a single round of changes: We supply the draft product, you email or otherwise detail the changes, and we then include those changes in our final product to you. Please note our preferred way of receiving changes is via a marked-up PDF. Your account manager can help you with this if you are unsure about marking up a PDF.\\n\\nChanges beyond this scope will be charged as author’s corrections. Please be aware that, during author’s corrections, all staff involved in the corrections process will incur costs for you. Depending on your project and the corrections required, this may include an account manager, producer, designer, editor, writer and so on.\\n\\nIf there is unused time left over from your estimate, we will use that time to make your alterations to save you money. Once that amount has been exhausted, however, we will begin charging author’s corrections and we will advise you of this by email and then in weekly cost updates.\\nYou can reduce the amount of corrections by:\\n\\n- supplying approved sourced material and instructions prior to NWO commencing work\\n- seeking authority within your organisation to be the ultimate decision-maker for this project\\n- advising the multiple stakeholders within your organisation of the cost of unbudgeted changes\\n- compiling all feedback into a single document for NWO’s use.\\n \\n##### **Digital projects**\\n\\nThe following terms are specific to digital projects. \\n\\n**Digital content entry**\\n\\nWhere the estimate pertains to content entry for your digital project, time has been allocated for us to input a set amount of content (as defined by the estimate). Should more time be required, it will be charged at our standard hourly rate. Content cannot be input until the project has been finalised and fully tested by NWO. Your timelines should allow content to be uploaded after completion of development and prior to final testing.\\n\\n**Acceptance and completion**\\n\\nWe will conduct testing throughout the project development; however, you are responsible for confirming the works produced by NWO are as per the brief and fit for the purpose and function as contracted. If no acceptance testing is undertaken by you, the product will be deemed accepted when launched or on its first public use. After acceptance, alterations/fixes will be charged as incurred.\\n\\n**Website warranty**\\n\\nWhen not otherwise specified our warranty period covers your website for 30 days from the acceptance date. Any issues in functionality that are brought to our attention during this period will be fixed without charge in a time frame to be negotiated with you. Charges will apply for any fixes outside the warranty period or changes to the website that are outside the scope of the original quotation.\\n\\n**Platform and browser compatibility**\\n\\nUnless otherwise specified, New Word Order will test the following browsers on the version current at the date of our estimate. \\n\\n- Chrome\\n- Edge\\n- Firefox\\n- Safari\\n- Opera\\n\\nNew Word Order is not responsible for work to update websites when new browsers are released after acceptance or if the website does not work on browsers not included in the list provided. Internet Explorer and other deprecated browsers are not tested against and, if required and possible, will incur additional charges\\n\\n**Third-party software**\\n\\nIf third-party software is used in the delivery of your digital product unless otherwise specified the fees for the software are an annual licence fee. You agree to pay ongoing charges to ensure the continued functionality of your product.\\nIf you enter into a maintenance contract with us, on-going software licence fees will be included in the maintenance fees.\\n\\n##### **Deadlines**\\n\\nWe pride ourselves on meeting tight deadlines and have a strong reputation with our clients for fast, reliable work.\\n\\nHowever, if you significantly alter the brief – such as change text or photos that have already been supplied and approved, change website layouts, or increase the volume  to be produced – or other circumstances occur beyond our control, we may advise you of revised timelines.\\n\\nWe understand that circumstances change. We schedule all work into our studios based on delivery requirements. If your delivery requirements change you should inform us immediately.\\n\\nIf you are unable to meet timeframes for providing us information, feedback or content, we may withdraw your job from the studio until you get it to us. If your project has been delayed due to the loss of a scheduling window or the late approval of the estimate or proposal, we will inform you of the revised timeline.\\n\\nIf timelines are not being adhered to on your part and the project is on hold for 90 days or more, we reserve the right to close the project. You will be invoiced for any outstanding costs incurred up to the date of closure. Any overpayments will be refunded. We will always advise you before doing so, and will be happy to pick your project back up when you are ready to move ahead. \\n\\nRestarting a project will incur a re-commencement fee which will be invoiced prior to work starting again.\\n\\n##### **Administration and consumables**\\n\\nExpenses and administrative costs are incurred during every project. These may include phone calls, printing, couriers, proofs, materials, and finance and administrative work to make your project run smoothly.\\n\\nYour quote includes an estimate for these expenses, calculated at 3 per cent of your total quoted amount. We will advise you if these expenses will exceed the quoted amount.\\n\\n##### **Payment terms and pre-payments**\\n\\nOur invoices are to be paid within 14 days of the invoice date, with longer payment terms available for negotiation before a job begins.\\n\\n**When you’re a new client**\\n\\nIf you’re a new client, we reserve the right to invoice you 50 per cent of the total project fee before beginning work, or 100 per cent if the job is under $5000.\\n\\n**When you’re an existing client**\\n\\nIf you’re already a client of ours, we reserve the right to invoice you 30 per cent of the total project fee before beginning work, or 100 per cent if the job is under $5000.\\n\\n**When you owe us money**\\n\\nIf payment is delayed longer than 30 days, we reserve the right to withhold future and existing work until payment is made. See Late Payment below for fees associated with late payments.\\n\\n**When we’re employing suppliers for you**\\n\\nDepending on the level of costs and complexity associated with your project, we may choose to request a deposit of up to 50 per cent of the total cost prior to commencing your project. In this case, the remaining costs will be split into milestone-based payments.\\n\\n**When our work forms part of a larger project**\\n\\nWe reserve the right to invoice you when our responsibility within a project has been completed—not when your project has been completed in total.\\n\\n**When you order our work for your client**\\n\\nIf you have ordered our work on behalf of a third party, our payment terms still apply. Payment is required when our work is complete, not when you receive payment.\\n\\n**When you choose to make an advance payment**\\n\\nIf we agree to an advance payment, all work must be completed within that financial year.\\n\\n**Late payment**\\n\\nIf you do not pay us by the due date on an invoice, we reserve the right to cease production on any of your projects.\\n\\nWe may also charge a late payment fee:\\n\\n- 30-60 days late: 5%\\n- 60-90 days late: 10%\\n- 120+ days late: 15%\\n\\nWe do not offer payback schemes or loan arrangements. \\n\\nWe may engage a third party for debt recovery services of any payments which are more than 45 days overdue. Relevant contact details and information about outstanding payments will be provided to them to enable them to liaise directly with you for debt recovery purposes. \\n\\n##### **Limitation of liability**\\n\\nBy commissioning our services, you are agreeing that you will not hold New Word Order or its agents or employees liable for any incidental or consequential damages which arise from our failure to perform any aspect of the project in a timely manner, regardless of whether such failure was caused by intentional or negligent acts or omissions of New Word Order or a third party. Furthermore, we disclaim all implied warranties.\\n\\n##### **Photography and images**\\n\\nUnless otherwise specified in this estimate, we will charge you an additional amount if we purchase images from a stock library for your project.\\n\\nPlease note that you are responsible for ensuring all of your supplied images match the specifications we give you for your project. We expect you to comply with all relevant copyright and privacy laws and only supply content for which you have full authority to use\\n\\nWe reserve the right to charge additional time to assess your photo files and improve substandard images.\\n\\n##### **Print management and file output**\\n\\nWe have extensive experience in managing print projects. When you choose us to manage your print, you gain access to our experience, established supplier network and exacting quality control standards.\\n\\nFrom time to time, our clients choose to manage print themselves. In these situations, we will include a file output fee to cover the cost of supplying the file, and time taken to liaise with the printer will be charged as project management.\\n\\nWe hold onto current jobs for 6 months. After that time, your files are moved to our archive backup. If you require old files from our archive, a fee will be charged to locate and provide to you.\\n\\n##### **Project management**\\n\\nOur account and project managers make sure your project stays on track. This takes time and considerable effort. Your estimate contains a fee for project/account management that covers the administrative and management hours we expect our agency will expend in delivering your project.\\n\\nThese include project meetings between you and us, scheduling your work in the studios, ensuring projects are delivered on time and on budget, production of audio-visual and print components, and making sure project outcomes are in line with our requirements.\\n\\n##### **Publicity**\\n\\nWe may use your name for the purpose of promotional activities involving the works we have carried out for you, unless otherwise specified.\\n\\nSupplying material to us\\n\\nWe undertake projects in good faith. If the material you supply – such as photography, graphics or text – do not match the expected standard set during our discussions, we reserve the right to charge for the time it will take to improve or alter the material in order to use it.\\n\\nPlease supply all text, graphics and images in a digital format unless otherwise specified in this estimate or brief. Only supply material that you have the legal and ethical right to use.\\n\\n##### **Tenders**\\n\\nFrom time to time, we are engaged to supply services under a preferred supplier or tender arrangement. We reserve the right to withdraw from providing services after or during our appointment if changes to scope or exceptional circumstances make delivery untenable. Any decision will be made in consultation with the client.\\n\\n##### **Warranty of originality**\\n\\nNew Word Order warrants and represents that, to the best of its knowledge, the work assigned hereunder is original and has not been previously published, or that consent to use has been obtained on an unlimited basis; that all work or portions thereof obtained through the undersigned from third parties is original or, if previously published, that consent to use has been obtained on an unlimited basis; that New Word Order has full authority to make this agreement; and that the work prepared by New Word Order does not contain any scandalous, libellous, or unlawful matter. \\n\\nThis warranty does not extend to any uses that the client or others may make of our product that may infringe on the rights of others. The client expressly agrees that it will hold New Word Order harmless for all liability caused by the client’s use of our product to extent such use infringes on the rights of others.\\n\\n##### **Writing services**\\n\\nWe have extensive experience in all forms of writing and editing. Based on our experience, we choose not to work with Word files that contain multiple images or tables, as these files easily corrupt during the editing process. We are happy, though, to work with Word files with the images and tables extracted. Redesigning the Word file to include the images and tables at the end of the editing process will incur a separate fee.\\n\\n##### **Your obligation**\\n\\nYou have sole responsibility of ensuring the suitability and availability of any trademark rights, copyrights or other property rights that are intended to vest in the works that we have been commissioned to produce in accordance with your instructions.\\n\\n##### **Intellectual property**\\n\\nAny research data, concepts, diagrams or illustrations remain the property of New Word Order. Any alternate intellectual property rights contained in the design or materials used in the execution of this project, including artwork and computer-generated instructions and information, remain with New Word Order. \\n\\nYou warrant that you hold all necessary intellectual property rights in any document or material (including, but not limited to, plans and drawings), that are supplied to New Word Order for its provision of goods and services and that there is or will be no infringement of any rights or entitlements held by any third party. \\n\\nYou also indemnify and hold harmless New Word Order for any claims made against it arising from New Word Order’s use of any drawings, design or any other document, material or information provided by you, the client. \\n\\nYou warrant that all designs or instructions to New Word Order will not cause New Word Order to infringe any patent, registered design or trademark in the execution of the client orders.\\n\\n##### **Termination**\\n\\nNew Word Order may refuse to enter into this contract or terminate any existing arrangements, without prejudice, if we find our core values are at odds with yours. Our core values put people at the centre of everything we do. We do not condone discrimination of any kind, nor do we condone violations of human rights. \\n\\nWe also may terminate a contract if invoices are unpaid (see Payment terms and pre-payments) or if you become insolvent.\\n\\n##### **Changes to Terms and Conditions**\\n\\nFrom time-to-time we may make changes to these Terms and Conditions. Any changes, unless otherwise notified, will come into effect on your next project with us.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136382,140138,1,'Terms and conditions','2022-05-17 23:19:18','2022-05-17 23:19:18','699d92ca-ed28-4411-be8e-e94791a55ab0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LU0O2e8wW5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"General terms and conditions\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"##### **About this estimate**\\n\\nOur estimate is valid for a period of 45 days from the date of issue.\\n\\nThe following documents should be read together to understand the scope and price of our quoted services:\\n\\n- our estimate\\n- your brief, if supplied\\n- these Terms and Conditions\\n\\nThe estimate has been provided according to your brief to us. Any exclusions noted in the estimate should not be taken as exhaustive and you should assume that unless a service has been explicitly listed in the quote, it is not included in the price. \\n\\nAlterations to this brief or specifications will incur further costs, and we reserve the right to alter this estimate should we believe the changing scope of work falls outside of what was originally quoted.\\n\\nIt is your responsibility as the client to contact your account manager prior to approving the quote if you have queries or require clarification about any items in the quote. It is also your responsibility as the client to ensure this estimate accurately reflects the scope of work you require.\\n\\nBefore we begin work, you must sign your approval of the estimate and, if your organisation uses an ordering system, provide an order number or purchase order.\\n\\nYour acceptance of our estimate includes full acceptance of the conditions and payment terms listed in these terms and conditions. Once quotation approval has been provided, these conditions and payment terms are not negotiable.\\n\\nWe use the terms estimate and quote interchangeably and their meaning should be taken as the same: a cost estimate to the value of the work required to achieve your outcomes based on information you have provided us. This estimate may change in response to your project needs and, if it does, a new or additional quote may be required to be approved before work continues.\\n\\n##### **Approval**\\n\\nWe use Docusign for some estimates or, for smaller jobs, require an authorisation signature on a copy of the provided estimate. Your account manager will let you know the required authorisation method. No work can be scheduled until we have a duly authorised estimate through Docusign or your signature on an estimate.\\n\\n##### **Beginning your project**\\n\\nWe will not schedule or begin work on your project until we receive from you all of the artwork, content and other files required for the project, as well as the approved estimate or a purchase order.\\n\\nFor example, for an annual report, this might include all finalised content, graphs, charts, images, captions, financial statements and logos. This saves our studio unnecessary downtime and you money.\\n\\nWe will negotiate and document exceptions where required, but please be aware this may affect your costs and timeline.\\nYour NWO account manager may provide you with a checklist to ensure you are aware of all material that you must provide before we begin work on your project.\\n\\n##### **Brief**\\n\\nUsually, projects within NWO are worked on according to a brief developed in consultation between you and us. If you have not supplied a written brief to us, we may ask you to fill out our briefing template before we create an estimate. You need to check the wording of our estimate directly reflects your understanding of the work we’re carrying out for you. If it does not, please tell us and we will not begin working on the project until your concern is answered.\\n\\n##### **Checking, approval and signing-off**\\n\\nAs the client, you are responsible for checking your project for any errors and approving the final project. When you advise us that you approve a project, we take this to mean that you have checked it thoroughly for errors and that you are satisfied it has been completed to your satisfaction. For complex or additional jobs, we may ask you to fill in an approval form.\\n\\nWe have in place procedures and systems to ensure each of our finished projects reaches the highest possible standard of quality. However, from time to time, errors can occur. While we will do everything possible to fix the error, you are responsible for checking and approving the finished project and, as such, any costs of repairing the error are your responsibility.\\n\\nOn some projects, we may require you to provide your approval in writing before we finish work on your job or continue to publication or printing.\\n\\n##### **Client-directed alterations**\\n\\nAs much as possible, we try to accommodate client input and alterations within our quotes. However feedback, corrections and alterations to the brief over and above those quoted will be charged as incurred. Any requested changes are handled through our change control procedure which is:\\n\\n1. Any request for change must be detailed in writing including a description of the required change, the rationale for the change, and the effect the change will have on the project.\\n2. Your account manager will review the proposed change and determine, in consultation with you, if the change is within existing scope or outside the existing project scope. \\n3. If the change is minor and within the scope of the project briefing and/or budget, your account manager will schedule the change to be made at an appropriate time. \\n4. If the change is outside the scope of the existing project briefing and/or budget, your account manager will review the proposed change. \\n5. Your account manager will supply you with a quotation for the requested changes.\\n6. Work on the changes will be scheduled when we receive written  authorisation from you for the work and the associated charges. \\n7. Charges will be invoiced to you after we have implemented the agreed changes. \\n\\nThis is how we define a single round of changes: We supply the draft product, you email or otherwise detail the changes, and we then include those changes in our final product to you. Please note our preferred way of receiving changes is via a marked-up PDF. Your account manager can help you with this if you are unsure about marking up a PDF.\\n\\nChanges beyond this scope will be charged as author’s corrections. Please be aware that, during author’s corrections, all staff involved in the corrections process will incur costs for you. Depending on your project and the corrections required, this may include an account manager, producer, designer, editor, writer and so on.\\n\\nIf there is unused time left over from your estimate, we will use that time to make your alterations to save you money. Once that amount has been exhausted, however, we will begin charging author’s corrections and we will advise you of this by email and then in weekly cost updates.\\nYou can reduce the amount of corrections by:\\n\\n- supplying approved sourced material and instructions prior to NWO commencing work\\n- seeking authority within your organisation to be the ultimate decision-maker for this project\\n- advising the multiple stakeholders within your organisation of the cost of unbudgeted changes\\n- compiling all feedback into a single document for NWO’s use.\\n \\n##### **Digital projects**\\n\\nThe following terms are specific to digital projects. \\n\\n**Digital content entry**\\n\\nWhere the estimate pertains to content entry for your digital project, time has been allocated for us to input a set amount of content (as defined by the estimate). Should more time be required, it will be charged at our standard hourly rate. Content cannot be input until the project has been finalised and fully tested by NWO. Your timelines should allow content to be uploaded after completion of development and prior to final testing.\\n\\n**Acceptance and completion**\\n\\nWe will conduct testing throughout the project development; however, you are responsible for confirming the works produced by NWO are as per the brief and fit for the purpose and function as contracted. If no acceptance testing is undertaken by you, the product will be deemed accepted when launched or on its first public use. After acceptance, alterations/fixes will be charged as incurred.\\n\\n**Website warranty**\\n\\nWhen not otherwise specified our warranty period covers your website for 30 days from the acceptance date. Any issues in functionality that are brought to our attention during this period will be fixed without charge in a time frame to be negotiated with you. Charges will apply for any fixes outside the warranty period or changes to the website that are outside the scope of the original quotation.\\n\\n**Platform and browser compatibility**\\n\\nUnless otherwise specified, New Word Order will test the following browsers on the version current at the date of our estimate. \\n\\n- Chrome\\n- Edge\\n- Firefox\\n- Safari\\n- Opera\\n\\nNew Word Order is not responsible for work to update websites when new browsers are released after acceptance or if the website does not work on browsers not included in the list provided. Internet Explorer and other deprecated browsers are not tested against and, if required and possible, will incur additional charges\\n\\n**Third-party software**\\n\\nIf third-party software is used in the delivery of your digital product unless otherwise specified the fees for the software are an annual licence fee. You agree to pay ongoing charges to ensure the continued functionality of your product.\\nIf you enter into a maintenance contract with us, on-going software licence fees will be included in the maintenance fees.\\n\\n##### **Deadlines**\\n\\nWe pride ourselves on meeting tight deadlines and have a strong reputation with our clients for fast, reliable work.\\n\\nHowever, if you significantly alter the brief – such as change text or photos that have already been supplied and approved, change website layouts, or increase the volume  to be produced – or other circumstances occur beyond our control, we may advise you of revised timelines.\\n\\nWe understand that circumstances change. We schedule all work into our studios based on delivery requirements. If your delivery requirements change you should inform us immediately.\\n\\nIf you are unable to meet timeframes for providing us information, feedback or content, we may withdraw your job from the studio until you get it to us. If your project has been delayed due to the loss of a scheduling window or the late approval of the estimate or proposal, we will inform you of the revised timeline.\\n\\nIf timelines are not being adhered to on your part and the project is on hold for 90 days or more, we reserve the right to close the project. You will be invoiced for any outstanding costs incurred up to the date of closure. Any overpayments will be refunded. We will always advise you before doing so, and will be happy to pick your project back up when you are ready to move ahead. \\n\\nRestarting a project will incur a re-commencement fee which will be invoiced prior to work starting again.\\n\\n##### **Administration and consumables**\\n\\nExpenses and administrative costs are incurred during every project. These may include phone calls, printing, couriers, proofs, materials, and finance and administrative work to make your project run smoothly.\\n\\nYour quote includes an estimate for these expenses, calculated at 3 per cent of your total quoted amount. We will advise you if these expenses will exceed the quoted amount.\\n\\n##### **Payment terms and pre-payments**\\n\\nOur invoices are to be paid within 14 days of the invoice date, with longer payment terms available for negotiation before a job begins.\\n\\n**When you’re a new client**\\n\\nIf you’re a new client, we reserve the right to invoice you 50 per cent of the total project fee before beginning work, or 100 per cent if the job is under $5000.\\n\\n**When you’re an existing client**\\n\\nIf you’re already a client of ours, we reserve the right to invoice you 30 per cent of the total project fee before beginning work, or 100 per cent if the job is under $5000.\\n\\n**When you owe us money**\\n\\nIf payment is delayed longer than 30 days, we reserve the right to withhold future and existing work until payment is made. See Late Payment below for fees associated with late payments.\\n\\n**When we’re employing suppliers for you**\\n\\nDepending on the level of costs and complexity associated with your project, we may choose to request a deposit of up to 50 per cent of the total cost prior to commencing your project. In this case, the remaining costs will be split into milestone-based payments.\\n\\n**When our work forms part of a larger project**\\n\\nWe reserve the right to invoice you when our responsibility within a project has been completed—not when your project has been completed in total.\\n\\n**When you order our work for your client**\\n\\nIf you have ordered our work on behalf of a third party, our payment terms still apply. Payment is required when our work is complete, not when you receive payment.\\n\\n**When you choose to make an advance payment**\\n\\nIf we agree to an advance payment, all work must be completed within that financial year.\\n\\n**Late payment**\\n\\nIf you do not pay us by the due date on an invoice, we reserve the right to cease production on any of your projects.\\n\\nWe may also charge a late payment fee:\\n\\n- 30-60 days late: 5%\\n- 60-90 days late: 10%\\n- 120+ days late: 15%\\n\\nWe do not offer payback schemes or loan arrangements. \\n\\nWe may engage a third party for debt recovery services of any payments which are more than 45 days overdue. Relevant contact details and information about outstanding payments will be provided to them to enable them to liaise directly with you for debt recovery purposes. \\n\\n##### **Limitation of liability**\\n\\nBy commissioning our services, you are agreeing that you will not hold New Word Order or its agents or employees liable for any incidental or consequential damages which arise from our failure to perform any aspect of the project in a timely manner, regardless of whether such failure was caused by intentional or negligent acts or omissions of New Word Order or a third party. Furthermore, we disclaim all implied warranties.\\n\\n##### **Photography and images**\\n\\nUnless otherwise specified in this estimate, we will charge you an additional amount if we purchase images from a stock library for your project.\\n\\nPlease note that you are responsible for ensuring all of your supplied images match the specifications we give you for your project. We expect you to comply with all relevant copyright and privacy laws and only supply content for which you have full authority to use\\n\\nWe reserve the right to charge additional time to assess your photo files and improve substandard images.\\n\\n##### **Print management and file output**\\n\\nWe have extensive experience in managing print projects. When you choose us to manage your print, you gain access to our experience, established supplier network and exacting quality control standards.\\n\\nFrom time to time, our clients choose to manage print themselves. In these situations, we will include a file output fee to cover the cost of supplying the file, and time taken to liaise with the printer will be charged as project management.\\n\\nWe hold onto current jobs for 6 months. After that time, your files are moved to our archive backup. If you require old files from our archive, a fee will be charged to locate and provide to you.\\n\\n##### **Project management**\\n\\nOur account and project managers make sure your project stays on track. This takes time and considerable effort. Your estimate contains a fee for project/account management that covers the administrative and management hours we expect our agency will expend in delivering your project.\\n\\nThese include project meetings between you and us, scheduling your work in the studios, ensuring projects are delivered on time and on budget, production of audio-visual and print components, and making sure project outcomes are in line with our requirements.\\n\\n##### **Publicity**\\n\\nWe may use your name for the purpose of promotional activities involving the works we have carried out for you, unless otherwise specified.\\n\\nSupplying material to us\\n\\nWe undertake projects in good faith. If the material you supply – such as photography, graphics or text – do not match the expected standard set during our discussions, we reserve the right to charge for the time it will take to improve or alter the material in order to use it.\\n\\nPlease supply all text, graphics and images in a digital format unless otherwise specified in this estimate or brief. Only supply material that you have the legal and ethical right to use.\\n\\n##### **Tenders**\\n\\nFrom time to time, we are engaged to supply services under a preferred supplier or tender arrangement. We reserve the right to withdraw from providing services after or during our appointment if changes to scope or exceptional circumstances make delivery untenable. Any decision will be made in consultation with the client.\\n\\n##### **Warranty of originality**\\n\\nNew Word Order warrants and represents that, to the best of its knowledge, the work assigned hereunder is original and has not been previously published, or that consent to use has been obtained on an unlimited basis; that all work or portions thereof obtained through the undersigned from third parties is original or, if previously published, that consent to use has been obtained on an unlimited basis; that New Word Order has full authority to make this agreement; and that the work prepared by New Word Order does not contain any scandalous, libellous, or unlawful matter. \\n\\nThis warranty does not extend to any uses that the client or others may make of our product that may infringe on the rights of others. The client expressly agrees that it will hold New Word Order harmless for all liability caused by the client’s use of our product to extent such use infringes on the rights of others.\\n\\n##### **Writing services**\\n\\nWe have extensive experience in all forms of writing and editing. Based on our experience, we choose not to work with Word files that contain multiple images or tables, as these files easily corrupt during the editing process. We are happy, though, to work with Word files with the images and tables extracted. Redesigning the Word file to include the images and tables at the end of the editing process will incur a separate fee.\\n\\n##### **Your obligation**\\n\\nYou have sole responsibility of ensuring the suitability and availability of any trademark rights, copyrights or other property rights that are intended to vest in the works that we have been commissioned to produce in accordance with your instructions.\\n\\n##### **Intellectual property**\\n\\nAny research data, concepts, diagrams or illustrations remain the property of New Word Order. Any alternate intellectual property rights contained in the design or materials used in the execution of this project, including artwork and computer-generated instructions and information, remain with New Word Order. \\n\\nYou warrant that you hold all necessary intellectual property rights in any document or material (including, but not limited to, plans and drawings), that are supplied to New Word Order for its provision of goods and services and that there is or will be no infringement of any rights or entitlements held by any third party. \\n\\nYou also indemnify and hold harmless New Word Order for any claims made against it arising from New Word Order’s use of any drawings, design or any other document, material or information provided by you, the client. \\n\\nYou warrant that all designs or instructions to New Word Order will not cause New Word Order to infringe any patent, registered design or trademark in the execution of the client orders.\\n\\n##### **Termination**\\n\\nNew Word Order may refuse to enter into this contract or terminate any existing arrangements, without prejudice, if we find our core values are at odds with yours. Our core values put people at the centre of everything we do. We do not condone discrimination of any kind, nor do we condone violations of human rights. \\n\\nWe also may terminate a contract if invoices are unpaid (see Payment terms and pre-payments) or if you become insolvent.\\n\\n##### **Changes to Terms and Conditions**\\n\\nFrom time-to-time we may make changes to these Terms and Conditions. Any changes, unless otherwise notified, will come into effect on your next project with us.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136383,140139,1,'About us','2022-05-17 23:19:19','2022-05-17 23:19:19','9bb6f5f9-d0e9-4ce2-bd64-34173406f2b5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17881\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\",\"17921\",\"97259\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | About us','For 20 years we have helped businesses, organisations and governments to solve problems, unlock potential and connect with people to inspire action.','strategy, brand, campaign, behaviour change, engagement, digital, video, content',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136384,140140,1,'About us','2022-05-17 23:19:20','2022-05-17 23:19:20','49fed17a-619a-41a6-a9dd-725abfd1eaae',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17881\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\",\"17921\",\"97259\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | About us','For 20 years we have helped businesses, organisations and governments to solve problems, unlock potential and connect with people to inspire action.','strategy, brand, campaign, behaviour change, engagement, digital, video, content',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136385,140141,1,'Update details','2022-05-17 23:19:21','2022-05-17 23:19:21','55805af8-8377-47d0-ba7f-b99a86d999d5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WQdEvDKsSL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Enter your details\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Enter your details\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PSqM6x8LeL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<!--[if lte IE 8]>\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2-legacy.js\\\"></script>\\n<![endif]-->\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n\\tregion: \\\"na1\\\",\\n\\tportalId: \\\"8394441\\\",\\n\\tformId: \\\"bc6282cb-a942-406c-bc57-b0b253a1cc4d\\\"\\n});\\n</script>\",\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136386,140142,1,'Update details','2022-05-17 23:19:22','2022-05-17 23:19:22','67313516-8516-444b-a00d-a7b58456f94d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WQdEvDKsSL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Enter your details\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Enter your details\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PSqM6x8LeL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<!--[if lte IE 8]>\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2-legacy.js\\\"></script>\\n<![endif]-->\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n\\tregion: \\\"na1\\\",\\n\\tportalId: \\\"8394441\\\",\\n\\tformId: \\\"bc6282cb-a942-406c-bc57-b0b253a1cc4d\\\"\\n});\\n</script>\",\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136387,140143,1,'Email sigs','2022-05-17 23:19:23','2022-05-17 23:19:23','c17e4565-890d-464b-aa37-b1ad45951f1a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"113\" src=\"{asset:74279:url||email-sig.gif}\" alt=\"New Word Order\" /></a></figure>\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"100\" src=\"{asset:84923:url||nwo-email-christmas-21.png}\" alt=\"Merry Christmas\" /></a></figure>\n<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136388,140144,1,'Email sigs','2022-05-17 23:19:24','2022-05-17 23:19:24','ddb864a0-27ce-475f-8e51-93305c6903f7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"113\" src=\"{asset:74279:url||email-sig.gif}\" alt=\"New Word Order\" /></a></figure>\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"100\" src=\"{asset:84923:url||nwo-email-christmas-21.png}\" alt=\"Merry Christmas\" /></a></figure>\n<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136390,140146,1,'Chevron','2022-05-18 00:47:09','2022-05-18 00:47:09','a6d6a52b-546a-45b0-b6e2-dcfede3a38eb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed as Chevron\'s go-to Australian agency as they reignited their Australian operations. We\'re helping them reach their business goals, relaunch their Puma retail network under the Caltex brand, and grow their market share in the lubricants B2B market.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gvKwuoJR7j\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547129?h=68b08b3b6f&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian lubricants division.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z59xrAwLVU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We conducted a competitor analysis to assess competitor brand messaging and positioning, interviews with key Chevron distributors in the B2B market and one-on-one interviews with the general customers.\\nOur insights indicated a need for authentic, ‘real life’ marketing collateral with which the audience can connect. We also gleaned that the messaging needed to be kept simple.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-f5LPArKwgF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689548339?h=5797d76cc7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP9dMqkL3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We made the creative decision to let the products take a backseat and instead shine a light on the customers’ businesses and their distributor relationships.\\nWe supplemented our inhouse production team with award-winning documentary cinematographer Mark Broadbent and the editing finesse of Anasiou Canaris to give the videos a warm and, at times, heartfelt tone. The customers in question are mostly generations-old businesses with a story to tell. So we told some stories.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gLOsbQtiKq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547741?h=7529fef734&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ahQwPi3ZPn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result was 20 video variations across five content pillars in a style you wouldn’t necessarily associate with marketing around fuel and lubricant products—something a little surprising, something that stands out from the crowd.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5dbIBMfjBJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“Our customers are the centre of everything we do, so we’re really proud to have created something that’s authentic to their experiences—their relationships with the distributors, their family values and the inter-generational ties in each of their businesses.\",\"plainText\":\"“We challenged New Word Order with a complex brief of showcasing the product, telling a compelling story about the customer and distributor relationship, and delivering the message that the products customers know and love are back for good. <br> \\n“New Word Order perfectly captured all of those elements in a cohesive video series that authentically connects with the audience.” <br> \\n\\n** — Cris Gillespie, Head of Marketing at Chevron **\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign','Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136392,140148,1,'Chevron','2022-05-18 00:51:56','2022-05-18 00:51:56','c25c7919-1bd3-4472-bdcf-7144b6bd6e45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed as Chevron\'s go-to Australian agency as they reignited their Australian operations. We\'re helping them reach their business goals, relaunch their Puma retail network under the Caltex brand, and grow their market share in the lubricants B2B market.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gvKwuoJR7j\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547129?h=68b08b3b6f&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian lubricants division.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z59xrAwLVU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We conducted a competitor analysis to assess competitor brand messaging and positioning, interviews with key Chevron distributors in the B2B market and one-on-one interviews with the general customers.\\nOur insights indicated a need for authentic, ‘real life’ marketing collateral with which the audience can connect. We also gleaned that the messaging needed to be kept simple.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-f5LPArKwgF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689548339?h=5797d76cc7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP9dMqkL3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We made the creative decision to let the products take a backseat and instead shine a light on the customers’ businesses and their distributor relationships.\\nWe supplemented our inhouse production team with award-winning documentary cinematographer Mark Broadbent and the editing finesse of Anasiou Canaris to give the videos a warm and, at times, heartfelt tone. The customers in question are mostly generations-old businesses with a story to tell. So we told some stories.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gLOsbQtiKq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547741?h=7529fef734&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ahQwPi3ZPn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result was 20 video variations across five content pillars in a style you wouldn’t necessarily associate with marketing around fuel and lubricant products—something a little surprising, something that stands out from the crowd.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5dbIBMfjBJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“Our customers are the centre of everything we do, so we’re really proud to have created something that’s authentic to their experiences—their relationships with the distributors, their family values and the inter-generational ties in each of their businesses.\",\"plainText\":\"“We challenged New Word Order with a complex brief of showcasing the product, telling a compelling story about the customer and distributor relationship, and delivering the message that the products customers know and love are back for good. <br> \\n“New Word Order perfectly captured all of those elements in a cohesive video series that authentically connects with the audience.” <br> \\n\\n** — Cris Gillespie, Head of Marketing at Chevron **\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign','Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136397,140153,1,'About us','2022-05-30 01:16:35','2022-05-30 01:16:35','3157b347-1727-4e95-9f16-45a7eed5df1f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17881\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\",\"17921\",\"97259\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | About us','For 20 years we have helped businesses, organisations and governments to solve problems, unlock potential and connect with people to inspire action.','strategy, brand, campaign, behaviour change, engagement, digital, video, content',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136401,140157,1,'Hear the equality stories from NWO women','2022-05-30 01:17:28','2022-05-30 01:17:28','2ade9811-dbea-4bcd-81bf-6816d66f5655',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Wernf3qqvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"International Women\'s Day 2021\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We can all choose to challenge and call out inequality. We can all choose to seek out and celebrate women\'s achievements. Collectively, we can all help create an inclusive world. \\n\\nFrom challenge comes change, so let\'s all choose to challenge.\\n\\nThe 2021 theme for International Women\'s Day is #choosetochallenge. We asked the women of NWO what this means for them.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dQqtfQZh3I\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17131\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZSm70uSTq5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Jo Penney: We don\'t need titles\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"As a female with short hair, I am often referred to as ‘sir’.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This occurs mostly by flight attendants who take a quick glance and assume, rather than just offering a friendly ‘good morning’ or ‘good evening’ and avoiding their own embarrassment when they realise their mistake.\\n\\nOnce, the same flight attendant who greeted me to the plane was so embarrassed she could barely offer me tea or coffee later in the flight.\\n\\nIt’s silly and avoidable, and I find it quite funny and entertaining to see which way it will go.\\n\\nFor others, though, it can be an awful embarrassment that can easily be avoided by removing titles.\\n\\nSo, this International Women’s Day, I’m choosing to challenge all of us to end their use.\\n\\nI’m a proud female but I don’t feel the need to be referred to as madame, ma’am, mademoiselle, etc. It’s old-fashioned and classist.\\n\\nAnd as a proud LGBTI woman, I am extra aware that titles can isolate and sideline—not encourage and respect—people for whom gender and identity has been hard-won.\\n\\nLet’s talk our walk. Let’s end titles for good.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oVs7jOKhCm\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17127\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-823iS7DNes\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Kat Scott: The courage to listen\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"I’ve always thought the conversation around challenges women face was about finding your voice and speaking up; that strong, independent women needed to find the confidence to make their voices heard.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The older I get and the more the modern world allows us to see through the structures of society, economics and politics, I realise the conversation is really about finding the confidence to listen to those voices.\\n\\nYou see it every day in business, TV, music, media and social situations that when there is a woman who stands up and says how she feels, she is perceived as “too much”.\\n\\nI am guilty at times of not hearing other female voices and, worse than anything, sometimes of not even hearing my own voice.\\n\\nDespite thinking of myself as a very headstrong, intelligent and confident person, I tell myself to “tone it down” because I’m being “too much”.\\n\\nI want to see people rising to the challenge of actively listening to those female voices and perspectives, not because they are female but because they are equal.\\n\\nEvery person should be offered the same platform, the same ears and the same opportunities—if we choose to take them.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YdYo9ey7f6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17124\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jXUudS4IzN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Rebecca Holman: Let\'s keep choosing to challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s to the great women who kicked it all off.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"They challenged previously held societal norms, at great personal and physical cost, to give us the right to vote, the right to marry who we like, the right to choose our own careers, to be independent and to move closer to gender equality.\\n\\nThe spirit of these pioneers lives on, and the hard and uncomfortable work continues in many forms with each of us.\\n\\nAll of us can keep choosing to challenge each other—woman to man, woman to woman, man to man—in our everyday lives.\\n\\nHere’s to the mums, dads and those very special teachers who nurture our kids, lead by example and challenge the next generation to grow into people who treat each other with respect, patience and compassion.\\n\\nLet’s keep championing and supporting each other to achieve true gender equality.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RUzEpjpFMZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17119\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7wTrhTk0Ps\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Kimi Schieren: Deeper than the dollar amount\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Revealing you have a side hustle always brings up questions about success.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"“What kind of a profit are you making?”\\n\\n“Is it worth it?”\\n\\nEspecially if you, like myself, also work a full-time job and the side hustle itself is almost equally as full-time—the questions surrounding the value of your extracurricular will frequently plague you.\\n\\nHolding the worth of something solely on whether or not it’s profitable can be a slippery slope of creating unattainable goals and unrealistic expectations on yourself and your business.\\n\\nWhat I get out of my side hustle both professionally and personally far surpasses any financial goals.\\n\\nIt’s an outlet for my creativity and a way to express myself. Plus, it helps me to be more creative in my day job.\\n\\nThe two jobs feed into each other and without either or both I would struggle to feel like myself.\\n\\nSuccess from my side hustle is measured in the praise of happy customers, the smiles and comments I get from people who pass my stuff in the streets, and the self-satisfaction I get from creating something from an idea in my head to something you can physically wear or hold.\\n\\nSure, getting paid is also great and I dream of the day when it can become my full-time job. But, for now, my success is much deeper than a dollar amount.\\n\\nThis International Women’s Day, I’m choosing to challenge the notion that wealth equals success.\\n\\nLet’s choose to open our mind to what success looks like and celebrate the amazing things we’re doing.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TAZHDkM6ny\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17115\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EVYfpAlzzL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Kate Wood: Because they challenged, I get to choose\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"I’m in the grey area between Gen Y and Z, so I’m a product of the many Gen X women who raised me, inspired me and challenged me.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Gen X women were born in the 70s and 80s when the ideals of having it all—stable marriage, perfect family, lucrative work—came disguised as female empowerment. What crippling expectations.\\n\\nThese women defied mathematics. There are only 24 hours in a day and having it all takes at least 36.\\n\\nThey challenged the gender norms of the time and proved that, in fact, you can have it all.\\n\\nBecause of that, I don’t have to be the perfect mum with the perfect kids. I don’t have to be married to the dreamiest spouse. I don’t have to cook like Nigella or clean like Marie Kondo. I don’t have to climb the corporate ladder and smash through glass ceilings.\\n\\nI certainly don’t need to do all of that at the same time.\\n\\nAnd because I’m lucky enough to work for an incredible Gen X woman, I don’t have to work twice as hard to earn the same as my male colleague.\\n\\nInstead, I get to choose my values and the kind of woman I want to be.\\n\\nTo all you Gen X women who bravely went before: thank you. Because you worked so hard to challenge, I get to choose.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PCfYuBrUwo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17114\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aX0BZHIT5e\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Suzanne Oxford: Let\'s not mistake peace-keeping for peace-making\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"As a person of faith, I’ve always been challenged by a verse that says, “as far as it depends on you, live at peace”. I consider this my mandate.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"But don’t mistake peace-keeping for peace-making.\\n\\nPeace-keeping keeps factions apart with no expectation of resolution. It’s maximum effort expended in a passive, zero sum game. It reinforces apathy, privilege and anger.\\n\\nMe? I’m a peace-maker. The very act of making peace—and making peace, and making peace—is dynamic and potent, shining a light where inequality and injustice rob people of true peace.\\n\\nPeace-making drives me to lean in and bear witness to people’s stories with compassion and empathy.\\n\\nIt compels me to respond with strategies and actions that can create lasting change.\\n\\nIt urges me to have uncomfortable conversations to elicit greater understanding.\\n\\nIt impels me own my blind spots so I can grow in gentleness—and, in turn, create even greater peace.\\n\\nThere’s nothing passive about being a peace-maker, and peace-making never ends.\\n\\nIn fact, as I consider the broken world my children are now entering as young adults, my peace-making is only increasing in volume—as is my understanding that peace is a human right and that, as far as it depends on me, I must give it voice and life.\\n\\nAnd so I do.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OM2HjsMtPT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17108\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Knak12weJl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Bree Leitch: Our voice carries weight, even when it wavers\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"I grew up posting everything on social media, compiling a collage of my perfect life.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Every photo is meticulously chosen out of hundreds taken, every smile critiqued, and every caption drafted and redrafted. Anything less than perfection simply won’t do—I have an audience to please, you see.\\n\\nWomen have fought since the beginning of time to have our voices heard and taken seriously. And now we have an audience, they’re out for blood. It’s the little things—misusing terminology, Facetune gone wrong, dating too many people or not enough—the list goes on. Our audience will fault us for anything in order to discredit us.\\n\\nThe worst part? Often, that audience is me. Sometimes it’s you. It’s all of us women at one point or another, not because we mean to, but because we are trained to. We are taught we must tear other women down in order to lift ourselves up.\\n\\nWhen we let ourselves believe that our own success—or self-security, or popularity, or whatever validation we seek—is dependent on the destruction of other women, we all suffer.\\n\\nWe don’t have to be perfect to be valid. Our voice carries weight, even when it wavers.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Hear the equality stories from NWO women','We can all choose to challenge and call out inequality. We can all choose to seek out and celebrate women\'s achievements. Collectively, we can all help create an inclusive world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136403,140159,1,'These are a few of our favourite brands','2022-05-30 01:17:47','2022-05-30 01:17:47','239b73f7-c5de-4f0a-b65a-3eb4e6031625',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4Kng0ZJkmt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"I asked the team at New Word Order to think of a brand to which they are unwaveringly loyal.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Here\'s what they said.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fCc8knIn7z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Andrew\",\"plainText\":\"[**ASICS**](https://www.asics.com/au/en-au/). Since Mum and Dad spoiled me when I was 12, these are the only sports shoes I buy. They last forever and are Australian. Luckily they make specialised hockey shoes as well!\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BP6fkJyA6u\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kimi\",\"plainText\":\"[**Jatz**](https://www.arnotts.com/products/crackers)! The most versatile cracker that suits all and any occasion! You got a dip? Jatz. A soup? Dip a Jatz in. A fancy, artisanal soft cheese? Crack the Jatz out. A simple cheddar cheese? Jatz it. Feeling really hungover and can\'t keep anything down but need to eat something so you can muster the strength to order a burrito on Uber Eats? Jatz it, baby.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Yr3xX8UNUq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Tim\",\"plainText\":\"Super obvious one but [**Apple**](https://www.apple.com/au/). Everything from their product design and UI right through to their bricks and mortar storefront is meant to make you ‘think differently’ as per their brand promise, but at the same time give you a sense of familiarity. I’ve dabbled with more phones and laptops than I care to mention but will always come back to Apple. That said, iTunes sucks!\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WePs4cQeU3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Lynn\",\"plainText\":\"I can be impulsive by nature but the one thing I am never impulsive about is my [**Impulse**](https://www.unilever.com.au/brands/beauty-personal-care/impulse/) Merely Musk deodorant. I have used this deodorant since I can remember because it smells good and stops me smelling bad! I never worry about BO when I have my Impulse on!\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kFDk9QaMtq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Jo\",\"plainText\":\"[**RM Williams**](https://www.rmwilliams.com.au/). I got my first pair of boots on arrival to \'Straya as I’d heard great things and love a good Chelsea boot. After 17 years, I am only on my third pair, which shows you the quality and craftsmanship that goes into the RM brand.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qjkDIEMMe3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kat\",\"plainText\":\"[**The Iconic**](https://www.theiconic.com.au/). Their customer service/shipping options/returns policy is so user friendly and far outshines any competitors. They make the process of purchasing and returning so easy that I’m happy to throw my money at them. I’m sure they would lose money on the shipping/returns too, but make it back with the volume of sales from happy customers like myself.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-nXicTrGS5B\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bruce\",\"plainText\":\"[**The Dirt Company**](https://thedirtcompany.com.au/)\'s laundry detergent. I like the idea that not everything we buy has to \'cost the earth\' and Dirt have not only made a more eco-friendly washing detergent, but you can send their packaging back to them and they will reuse it. Their highly concentrated detergent won\'t harm the environment and the reusable packaging means a whole lot of plastic is not going into landfill or waterways. Another company that shows you can have a successful business while still protecting the planet.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ieCD98S7up\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bec\",\"plainText\":\"I found this tricky as I am a bit of a brand tart, and I have been disappointed by a few brands in the past who have not lived up to my expectation (“Nooo we vehemently don’t and will never test on animals…but we will sell out to the big company who does”) BUT a brand I have stayed loyal to is [**Vegemite**](https://vegemite.com.au/).\\n\\n– I loved it as a kid—I suspect the 50s jingle had more to do with that than the taste. Mum and dad regretted introducing us to that song with our robust young lungs joyfully belting it out over and over again on long car trips.\\n– I loved it as a young adult—that black tar smeared on toast. It was post-party comfort food and it was a cheap meal (with Vitamin B!). It made you feel better, like you could go on.\\n– I loved it as a slightly older adult when living abroad—Vegemite toast was like a hug from home. How happy was I when I realised you could get it everywhere and it still tasted the same, unlike Cadbury chocolate. There\'s that brand disappointment!\\n\\nI don’t know that Vegemite is the healthiest food group or even a brand with the most integrity, but I have an emotional connection to that bold brand of yellow, red and white with its tarry contents. It tastes so good on toast and even gives a stir fry an interesting edge. It’s stayed pretty consistent in a world that has changed so much, and as an Australian living abroad it’s part of your heritage and your identity. What’s even better, the brand has come back home to Australia.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dSCs5J35lI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kerry\",\"plainText\":\"I\'m loyal to the US hair care brand [**DevaCurl**](https://www.devacurl.com/us). It has been the only brand to date that has been able to calm my crazy hair and embrace my God-given curls. Of recent times, DevaCurl have been dragged through the courts as many people have claimed it makes their hair fall out. But I have kept on buying it from the US after 5 years of use and I still have enough hair to go around, so somehow I don\'t think it is a problem for me.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aPLfD479sh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Liam\",\"plainText\":\"I tend to enjoy a little cheating on my normal choices. But one brand I’ve stuck with since my teens is [**Ray-Ban**](https://www.ray-ban.com/australia) sunglasses. I like that their styles never stray too much from the original designs and they don’t follow trends. I’ve been gifted \'luxury fashion\' brand sunglasses before and they are more about getting their fancy name or logo on the product than anything else—the quality is dubious and the style trends come and go. Ray-Ban don’t try to be overly fashionable, they work well and look good. Proud middle-aged man moment for me was after I had bought a new pair of Ray-Bans overseas and in my first week back in Brisbane the cool hipster barista at the coffee shop said to me “Love your sunnies… they’re on point”.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qhin1NvFDx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Ryan\",\"plainText\":\"[**Patagonia**](https://www.patagonia.com.au/). It lasts for ages and they actually fix stuff. I had a pair of hiking pants that got hammered in Nepal and they fixed them for me. They also give 1% of sales back to conservation efforts. Their stuff also just seems to fit me really well.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UgAjx4JylF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Suzanne\",\"plainText\":\"[**Kawai**](https://kawai.com.au/) pianos is mine. I’ve played for 45 years and, no matter where I find a Kawai, the touch and the sound is consistent. The Kawai is smooth and sonorous. Love that it’s been so consistent for so long.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8UXqqjffzF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Scott\",\"plainText\":\"Tim took mine—Apple has been the most consistent brand in my life since we started NWO (and before, too) and crossed over seamlessly into my personal life as well. Their stuff works, lasts, is simple to use and is beautiful to look at, use and hold. But if I have to pick a different one I’d pick [**Nudie Jeans**](https://www.nudiejeans.com/). Like Patagonia they repair for free, they give you money for your old pair and resell it to save waste. And, their jeans just always fit me in a way no other ones ever have.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-v0xY9fvU6u\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kate\",\"plainText\":\"[**IKEA**](https://www.ikea.com/au/en/) is a Swedish wonderland. For me there’s nothing better than a free Saturday afternoon, barrelling down the M1 towards the glorious blue and yellow castle. From beginning to end the experience is flawlessly designed—from the carpark, to the food, to the warehouse, to the satisfaction of sitting on the couch you spent the past hour bolting together. Every aspect of the IKEA brand is designed to hug your mind, body and soul. No brand can wrap you in a cozy $5 throw like IKEA can.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uRfO2vtwj8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Margaret\",\"plainText\":\"[**Haagen Dazs**](https://www.haagen-dazs.com.au/) ice cream. No flavour ever disappoints and that cream base… I had my first HD on Singapore Airlines when I was 17 and I ate four in row. (Tip: ask four different air hostesses.)\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kesJqAugGq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bree\",\"plainText\":\"I regularly drive out of my way to stop at [**7-Eleven**](https://www.7eleven.com.au/) for fuel. I wouldn\'t even consider going anywhere else, and the reason why is so simple: the My 7-Eleven app. The lock-in price feature is a game changer and I get a thrill every time I see the price on the EFTPOS machine and how much lower it is than the price on the pump outside. It almost makes me enjoy buying fuel.\\n\\nThe Krispy Kremes don\'t hurt either.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-K1FhEue9Fp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As you can tell from the kinds of brands they chose, your brand doesn\'t have to be flashy or sexy. It just has to be true to itself and deliver on its promises, consistently and with a bit of personality.\\n\\n\\n*Disclaimer: New Word Order is not sponsored by or partnered with any of the mentioned brands.*\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'These are a few of our favourite brands','I asked the team at New Word Order to think of a brand to which they are unwaveringly loyal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136404,140160,1,'Break away from the same-same with custom illustration','2022-05-30 01:18:11','2022-05-30 01:18:11','52c5e5ba-8df0-4c44-ab33-16f0172b73dc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tiYExhhMPf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"There’s nothing more special than something made just for you.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"You hold it loudly and proudly for all to see—and they notice because there’s nothing else in the world quite like it. And this makes you treasure it that little bit more.\\n\\nThe dream of an illustrator is to have time, budget and ability to craft a bespoke masterpiece for every job that comes across the desk.\\n\\nThat dream doesn’t turn to reality very often. But that doesn’t mean your brand has to revert to using the same old stock illustrations everyone else uses either.\\n\\nThere are so many ways to get over those hurdles when a project doesn’t have time or budget to allow for a custom piece.\\n\\nA lot of the time, stock illustration can be tweaked to give it the edge it needs to stand out from the crowd.\\n\\nChange up the colours, mix up the style and jazz up the faces.\\n\\nSometimes stock forms the base for us to build something fresh. And other times there might already be the perfect stock illustration that tells the right story without much tweaking at all.\\n\\nWhatever the constraints—budget, time, brief—there’s always a way to break free. It just takes some thinking outside of the box.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-amC4hnZM56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"If you’re drowning in a sea of same-same, come chat to us and [we’ll get you out of there in no time](/contact).\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Break away from the same-same with custom illustration','There’s nothing more special than something made just for you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136406,140162,1,'Why you need a six-month comms strategy for your website','2022-05-30 01:18:23','2022-05-30 01:18:23','87821227-086d-4b91-8df0-74d21d4af918',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AgEbVkr4de\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"YOU KNOW THE FEELING: AN AD PROMISE DRAWS YOU IN, YOU CLICK THROUGH TO THE WEBSITE AND YOU’RE IMPRESSED BECAUSE IT LOOKS SUPER SLICK.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Then you actually read it. And now you’re disappointed because it doesn’t actually say anything other than the surface detail of a business.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QesBwreMAq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"These websites are so common they’ve earned the term ‘brochure’ website. They look great, but that’s it.\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-b9aMnjAcJ0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We see it all the time and think it’s such a shame. Why? Because a website can be so. much. more.\\n\\nHow can your website escape the dreaded brochure effect? In short, don’t set and forget.\\n\\nGood websites move, breathe and live—just like your business does.\\n\\nEveryone knows it’s good practice to regularly update your website messaging and functionality. But you need to actually get around to doing it and—more importantly—have a reason for making a change.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3YeCOos4iz\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"So, what’s your strategy?\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V4Ur8T6jd4\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A website communication and engagement strategy has so many benefits. But the biggest one by far is SEO.\\n\\nBy biggest we don’t mean the most confusing or time-consuming. It simply boils down to content. Fresh content tells Google: This is who I am! This is what I do! See me! Hear me!\\n\\nGoogle’s algorithms are super clever because they serve up the sort of content people want. But it means Google can only give people the content they want if it knows about your business and what you’re offering.\\n\\nOf course, there are some technical aspects to consider. But your best SEO strategy is a long-term communications plan.\\n\\nDo you know what the next six months for your website content looks like? What can you offer your customers other than opening hours and where you’re located?\\n\\nBy developing a digital communications strategy, your website gets updated regularly, which helps Google share your message with the right people at the right time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5XBczMM2nF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Potential customers will find you, engage with you and trust you enough to get in touch.\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W1NCV9CxoK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"You have so many options for interesting content. It could be a thought-leadership piece, event, media release, whitepaper, testimonial—the list can go on.\\n\\nWe have a huge amount of communications tools and angles we can develop to bolster your web presence.\\n\\nGoogle also loves a fast, responsive website. Optimising your website by using the latest version of your content management system will ensure your site is running smoothly and as fast as it can.\\n\\nLikewise, this will make your site more secure and help prevent security breaches (particularly important if you use WordPress).\\n\\nWe also offer long-term website maintenance plans. These include detailed server monitoring and ensuring your CMS and plugins are up-to-date.\\n\\nFor more critical sites, we offer zero downtime code-update deployments.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-v9RKLjPOWn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Talk to us about a long-term strategy for your website so it can be more than just another ‘brochure site’.\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Why you need a six-month comms strategy for your website','Everyone knows it’s good practice to regularly update your website messaging and functionality. But you need to actually get around to doing it and—more importantly—have a reason for making a change.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136407,140163,1,'Pretty or powerful? And can you have it all?','2022-05-30 01:18:33','2022-05-30 01:18:33','a752363d-2233-4c71-9ed0-665b17247807',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UxDAMYmx0G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Being a commercial creative means someone is hoping, expecting and paying for a result.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"But just because something is creative in its execution doesn’t mean it’s going to be effective in achieving its goal.\\n\\nHere are five pitfalls to avoid when procuring creative services:\\n\\n1. Hiring a single creative, like a designer, to be a whole creative team. Your supplier will end up working in one strength and many weaknesses.\\n2. Procuring from a supplier who can use design software but isn’t a designer. The work will miss the mark despite looking okay.\\n3. Working with a graphic designer who isn’t skilled in the type of design you need (like brand design). You’ll get a pretty logo lacking in brand story and meaning.\\n4. Jumping straight into design without a strategy. You’ll receive design work that’s lovely, even beautiful… but not strategic.\\n5. Failing to define what success looks like. Your supplier’s work will lack purpose. Instead, make sure you have a clear goal that measures the biggest outcome of all: return on investment.\\n\\nSo yes, creative work can be both pretty and powerful. And you can have it all… if you invest in a team of strategically focused creatives.\\n\\nCreative agencies cost more but are teams for a reason. **We\'re much more powerful together than on our own.**\\n\\nJust like a hand of aces versus a single 3.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Pretty or powerful? And can you have it all?','Being a commercial creative means someone is hoping, expecting and paying for a result.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136409,140165,1,'Seven mistakes people make building websites','2022-05-30 01:18:46','2022-05-30 01:18:46','a1b61eb0-6c2b-4900-a083-0f422388564b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-anLTeFZY0U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Now is the moment.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The advertising you’ve done, the marketing budget you’ve spent, the countless planning meetings your team has attended—all that time and money you’ve invested has driven a potential customer to your website.\\n\\nAfter months—maybe years—of effort, your potential customer will make their decision in seconds.\\n\\nThey may love what they see and continue to be interested. Or they may leave, with their memory of you going up in smoke and your investment with it.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EfutEvAS20\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"That’s why it’s so important to build an effective website.\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZPpIywfo5M\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Framing a website to contain everything you need is challenging. Some websites become too word-heavy, while others lack structure and narrative.\\n\\nGetting your website right from the beginning can save you a lot of pain in the long run.\\n\\nHere are our tips for tackling website mistakes.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SUHWHfibhh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"1. Unacknowledged expectations\",\"plainText\":\"What do you expect your website to do for you? You want this investment to count, so be informed, decide what you need and be intentional with your allocated budget.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kEhIZbV4lw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There are only two options—either start with careful planning and consultation and spend a realistic budget, or jump in with assumptions … and experience scope-creep, frustration and the need to pour more money in later. \\n\\nYour time and money (and sanity) are too valuable to waste on option two. So, choose wisely.\\n\\nIt’s also important to understand the purpose of your website. A website for a website’s sake helps no-one. Your business is unique so your website should be, too. \\n\\nMake it crystal clear—state who you are, what you do and what you promise your customers. \\n\\nSet yourself up for success by providing your developer with a clear website purpose, an informed plan and a predetermined budget.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AvlLtsTA5v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"2. A guess is no good\",\"plainText\":\"Analytics, metrics or key performance indicators (KPIs)—they’re all clever ways to study the website user journey.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KbVtpoSNTv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"What do you need your website to achieve? This will depend on what kind of product or service you offer and the kind of experience you want to create for the user. \\n\\nLay out your objectives and match them with KPIs.\\n\\nThere are plenty of ways to get insight into your website. Consider bounce rates, session duration or pages per session metrics. \\n\\nOr you could sharpen your content strategy by watching goal conversion rates of passive to active website users. \\n\\nUnderstanding your metrics and the goals you want to achieve will also help you to understand how your website interacts with its digital ecosystem.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p5FEdYJwJA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"3. It’s not for you\",\"plainText\":\"It might be about you, but the website isn’t for you.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VInDUCQqbf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Optimising your website starts with learning what your users are responding well to. How are they getting to your website? What kind of content are they reading? When do they read it? How long are they staying?\\n\\nBy understanding your metrics you can shape a truly effective website experience for your customers. It’s all in the detail—from content creation to search engine optimisation.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-elwxPOwb2f\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"4. Information overload\",\"plainText\":\"Your website is where your potential customers will go to check your credibility.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-07RQSQ8ts5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Credibility is about trust. One way to build trust is to position yourself and your organisation as experts. However, credibility isn’t just about what you know—it’s about who you are. \\n\\nInclude stories and testimonials about you and your organisation to avoid information overload. \\n\\nThen, potential customers will leave your website satisfied that you can be trusted ... and they\'re one step closer to doing business with you.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4aZLU4d7lj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"5. Losing the user\",\"plainText\":\"Many people complain about feeling lost on websites.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5Up8K6KfhA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The customer journey should be clear. If the information on your website is simple and structured, you can guide visitors on the path you’d like them to take. \\n\\nUse tabs and sub-pages for different categories, and make it logical. For best results, spend time studying user movements and running trials and tests. \\n\\nOver time your predictions will become more accurate as you get to know your audience.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-J6N6kO7pK4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"6. Wasted words\",\"plainText\":\"Capture your customers quickly.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gvCeMnMMmI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There are some hallmarks we use when writing web copy. Here are a few of them:\\n\\n- short, effective sentences (say the same information with less)\\n- sub-headings and headings containing keywords\\n- everyday words the average reader can easily understand (plain English)\\n- direct language\\n- consistent, logical structuring of information.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9cFms9o1W6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"7. Don\'t be unfriendly\",\"plainText\":\"How does your website display on mobile?\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WNBSOqBQRA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The majority of the time, someone will be visiting your website on their phone (68.1% in 2020 to be exact). That means when it comes to your website design, it\'s not enough that your website simply works on mobile. It needs to be designed with mobile in mind **first**.\\n\\nIf your website doesn\'t look amazing and function seamlessly on mobile, your customers won\'t go looking for their nearest desktop computer...  they\'ll look for another website. \\n\\nWhat kind of service do you give your customers in person? Ensure they experience the same quality on your website, and more importantly, on their phone.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Seven mistakes people make building websites','The advertising you’ve done, the marketing budget you’ve spent, the countless planning meetings your team has attended—all that time and money you’ve invested has driven a potential customer to your website.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136410,140166,1,'The building blocks of branding','2022-05-30 01:18:57','2022-05-30 01:18:57','79468b5d-df1a-4188-9cd4-a7290495fb4c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UBcW4IgaI5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Through 20 years of branding experience, we’ve come to understand stakeholder engagement is essential for a brand to have cut-through.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’ve engaged with our clients’ stakeholders for many years and in many ways—ranging from formal, formative market research through to in-depth focus groups, workshops, community forums, brand satisfaction surveys and phone interviews.\\n\\nNo matter the method, what really counts is that we capture how people relate to your brand. That relationship leads to relevance and then the ultimate goal: resonance.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qaQGFaRj3d\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Relationship\",\"plainText\":\"Every great brand is built on relationship.\\n\\nWhen you form healthy relationships with stakeholders, you open yourself up to a range of opinions. Generally, feedback gets more constructive as the relationship grows healthier.\\n\\nIf you’re the brand manager, it can feel a bit like tough love at first—but it does get easier.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IDzmWzpUSE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Relevance\",\"plainText\":\"So much more than a logo, brands are heavy with meaning for stakeholders. And so if the environment changes but your brand doesn’t, the meaning is lost.\\n\\nA lot of the stakeholder feedback we hear about brands is that they’re outdated or lack appeal. Without relevance, your stakeholders no longer feel the love.\\n\\nConstantly retune yourself to your stakeholders and you’ll keep fulfilling their needs.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8Wdlr8QGTN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Resonance\",\"plainText\":\"Resonance is where understanding meets impact.\\n\\nA brand rich with resonance is the holy grail of marketing and, true to legend, few reach it.\\n\\nThat’s because resonance means your brand is a perfect fit for your stakeholders’ environment, pain points, wants and emotional connection.\\n\\nResonance engenders attention and respect, and turns want to need.\\n\\nAnd when stakeholders can’t live without your brand? Happy days.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EdELli6glE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The three Rs start here\",\"plainText\":\"Whether you’re looking to name and brand or rename and rebrand, your brand journey starts with understanding your stakeholders.\\n\\nTalk to us about how to take your first steps.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The building blocks of branding','Through 20 years of branding experience, we’ve come to understand stakeholder engagement is essential for a brand to have cut-through.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136412,140168,1,'Want to understand your brand? Ask your stakeholders.','2022-05-30 01:19:07','2022-05-30 01:19:07','a5fd8f9b-34db-4c9d-923c-ddddd7ec5f11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pb6yRuUQJr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":[],\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BpDlpLY30k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Whether they are inside, outside, removed or closely involved—stakeholders have the insight businesses need for long-term growth and sustainability.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"If they are a stakeholder, they have a connection with you.\\n\\nAnd like any other relationship, they need to know their connection, time and opinions are valued.\\n\\nIt often takes an open mind to find what works for you and the stakeholder.\\n\\nFinding this place of mutual benefit can lead to business growth and longevity.\\n\\nWe’ve broken down our approach to nurturing stakeholder relationships for meaningful engagement.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-023wqZnDwH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Your stakeholder is anyone who can be impacted by your business.\",\"plainText\":\"Once you really understand this, you’ll start to notice the cycle of impact between the stakeholder and your business. And, this is partly why we begin to engage with stakeholders—to understand how different groups are responding, reacting or behaving.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZC7YPx4oyi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"But who are they, really?\",\"plainText\":\"Now, go deeper to really understand the nuances of your stakeholder groups.\\n\\nYour engagement plan should be detailed enough to allow for different levels of accessibility, and demographic and cultural considerations. The better you nuance, the greater the feeling of respect and care you’ll engender.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4fsgssb3iu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"What do I need to achieve here?\",\"plainText\":\"There are varying degrees of impact across the common types of engagement—inform, consult, involve, collaborate and empower. Every impact is a win for you.\\n\\nBy inviting stakeholders to provide advice and guidance, you are showing interest and genuine regard for their opinions.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-zK1GdW2Vy7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Let’s talk\",\"plainText\":\"A healthy and productive conversation is two-way. We pursue positive and productive conversations with stakeholders because we need to understand stakeholder perspectives, and we need to hear it from them.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wWO0nagqvx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bye for now\",\"plainText\":\"The conversation will close, but the relationship isn’t over. Stakeholders have given their time, effort and reflections. It’s your turn to respond with accuracy, timeliness and balance.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8YdtZLjoMO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The truth is, these conversations take patience, a steadfast commitment to values, sometimes sacrifice, and always an open mind.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"At NWO, we care about stakeholder engagement because we regularly witness the impact it has on the health of businesses and organisations.\\n\\nIs it important to you?\\n\\nTalk to us about stakeholder engagement today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Want to understand your brand? Ask your stakeholders.','Whether they are inside, outside, removed or closely involved—stakeholders have the insight businesses need for long-term growth and sustainability.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136413,140169,1,'Simplifying the complex: Fifteen years of marketing schools','2022-05-30 01:19:18','2022-05-30 01:19:18','7782e375-47bf-46dd-9dfe-3184f8ae52a6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WAYo0QEnCs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"After 20 years of marketing—including 15 years working with schools across Queensland and New South Wales—I am steadfast in my belief that there is no marketing challenge as complex as that faced by schools.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"In what other industry would you find thousands of individual stakeholders—students, parents, teachers, alumni and more—all with do-or-die expectations?\\n\\nOr an environment that can, quite honestly, change the trajectory of children’s lives?\\n\\nThen you have the two very distinct markets—internal and external—often with very different needs that need to be met with minimal budgets.\\n\\nThe experience of school changed little for nearly a century but, in the past 20 years, it has evolved in such leaps and bounds that today’s parents struggle to recognise it.\\n\\nPhilosophically, there are few industries I can think of that have such a strong evidence base to guide practice—here I’m thinking of teaching and learning—yet the required outcome is often diametrically opposed to it. \\n\\nIt’s little wonder that I find the business of marketing schools endlessly fascinating.\\n\\nOnly this morning I was in another principal’s office, talking through these very complexities. In our conversation, we touched on what I’ve discovered over the years are three bedrock principles every school needs as their marketing foundation. They’re my way of transforming a little of the complex into the simple.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Esbo1iQq5g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"1. Work out what makes you unique\",\"plainText\":\"Marketing and enrolments teams live and die by their numbers. \\n\\nIt is endlessly tempting, then, to try to go wide in your appeal so that you create the biggest possible net. \\n\\nIn practice, though, it means no-one knows what you stand for. \\n\\nThe better alternative is to embrace what makes you unique and then market that hard. You’ll end up attracting families that are the right fit for you and work hard as your ambassadors. \\n\\nInternally, there’ll be great cohesion, too, because you’ll attract and retain great educators who get what you’re about and support it in their words and actions.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-v1FFRTuEFs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"2. Don’t be afraid to look like you’re unique\",\"plainText\":\"If you’re bored one day in your office, try this game. \\n\\nGet ads from three schools, and then block out their hats and uniforms. Can you still tell them apart? \\n\\nIt astounds me that we continue to use sterile, look-alike images—hey, here’s a girl in a lab coat with a test tube as proof that we promote girls in STEM!—that don’t reflect the day-to-day experience of what it is to learn at your school. \\n\\nCelebrate your uniqueness—and set yourself apart from your competitors—by choosing unique visual styles and photography.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cMg5IvARdG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"3. Now stay unique\",\"plainText\":\"Over time, teachers and leaders of schools get to know each other pretty well. \\n\\nPrincipals, in particular, know other schools like bookies know racehorses. The net result in marketing is that your great idea quickly becomes next year’s norm… and after a few years, what was edgy is simply outdated. \\n\\nWise schools invest in a middle ground here. \\n\\nThey start off strong and then review and refresh their brand every year or two. \\n\\nThat way, subtle tweaks don’t destabilise your internal audience but you stay fresh and relevant externally.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3XrIiJiL9w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Want to know more?\",\"plainText\":\"Suzanne advises schools on sustainable marketing strategy that helps them get the most from their internal resources. To chat, phone 07 3334 8340 or email suzanne@newwordorder.com.au.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simplifying the complex: Fifteen years of marketing schools','After 20 years of marketing—including 15 years working with schools across Queensland and New South Wales—I am steadfast in my belief that there is no marketing challenge as complex as that faced by schools.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136414,140170,1,'The 6 steps of content creation','2022-05-30 01:19:30','2022-05-30 01:19:30','7e0b1a67-6220-4a99-bbf7-75a1996a32b3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-92RCseTSp0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"You know what your business is about. You’ve nailed down your story. You’ve worked out who you want to talk to.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Now you need to add some real value.\\n\\nTime-poor organisations need their content to work across different channels online—including websites, e-newsletters, blogs and across social media. One way to add value to your existing, more sales-focused content is through content curation. Content curation means finding useful content online, curating it for your audience and re-telling it in your voice and with your advice.\\n\\n##### **Here’s how to optimise, write and curate content for your target audience.**\\n\\n###### **Defining your goals**\\n\\nEvery good plan starts with defining what it’s trying to achieve. How do you want your content to define your business? What are you offering your target market? Do you want to be a thought leader in your particular area?\\n\\nContent curation is about meeting your customers where they are and offering them something they’re not getting elsewhere. It’s about finding, gathering and sharing information of value with them; positioning your business and brand as an authority both with original content—your sales offering and business learnings—and information you’ve found and shared online. Participating in conversations that are happening about your field leads to more engagement with your target market, the ultimate goal being to give your brand a voice of value that will see your audience come back again and again for your offering.\\n\\n###### **Getting started**\\n\\nIt’s important to remember that well-executed content curation isn’t about regurgitating content that was already published. Instead, it’s your business’ personal re-telling of a story. As Susan Gunelius wrote for Forbes, the human element of content curation is what makes curated content compelling.\\n\\nTherefore, when offering your audience valuable content, remember to tell your story. What are you saying that’s different? What do you know that others might not? Involve your whole team—not just marketing and sales—and that story will evolve to give your business a truly useful and unique voice.\\n\\n###### **Finding content**\\n\\nHere’s where you get amongst it!\\n\\nWant to know where your target market is looking for information online? Go exploring! Ask them! Discover for yourself where the good stories are being shared. Find out what topics matter to your goals and audience, and go after them.\\n\\nIntegrating content curation into your broader marketing strategy is the way to go here—it legitimises the exercise and gets your team thinking about the value of your brand and how they can add to it. The best place to start is probably your social media accounts. Valuable content is being shared every day on platforms like Facebook, Twitter and LinkedIn. There are also Google alerts and news aggregate sites that can be set up with your special business needs in mind.\\n\\n###### **Be authentic to find your voice**\\n\\nThere is nothing like the instant world of social media to add value and timeliness to your content. Social media has changed the term ‘sharing’ forever, and the opportunities for your brand are endless. It’s important to add your own value to social content—as Mark Lerner says, if you just \'retweet\', or share an article without including your own voice in the post, you’ll fail to distinguish yourself from everyone else who shared that content.\\n\\nHow do you find your voice? Authentically, of course! Offer your opinion and add your advice in areas where you are confident. Try to be friendly and informative, and adopt an approachable tone. Not so confident? Ask questions! Get your community talking and they’ll come back to you.\\n\\n###### **Context and thought leadership**\\n\\nGood content curation provides your audience with context and convenience—that means filtering and explaining what you find online, and rewording it in your voice so it’s useful to them. You don’t always need to be selling, but you do always need to be mindful of your brand and of offering real value. Knowing who your market is and writing in your ‘voice’ allows you to, as J-P De Clerck says, inform, educate, entertain and engage target audiences.\\n\\n###### **Where to share**\\n\\nThere are many ways to share curated content, but the best way is in a mix of your existing ‘sales’ content. E-newletters and blogs offer an opportunity to share curated and original content, and social media is the most instant way to add your voice to a new idea, and also probably the first place your audience will find you. They’ll also find your website, so don’t forget about the curated content opportunities there. Always remember that you should be providing useful information, not just repeating content or working on the hard sell.\\n\\nContent curation is convenient, but it’s also an important opportunity to add value, develop a business voice and grow an online community. What do you think about content curation? Has it worked for you? Got any tips? Let us know.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The 6 steps of content creation','You know what your business is about. You’ve nailed down your story. You’ve worked out who you want to talk to.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136415,140171,1,'B2B is dead','2022-05-30 01:19:40','2022-05-30 01:19:40','28da5695-f2fb-4a93-997a-01fe3edf29cf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-luIsqIjBj1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"As deaths go, it was a quiet one. Few people knew of its demise.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"But there it lay still: the artificial divide between B2B and B2C marketing, gone forever.\\n\\nWhy bother lamenting the dead? Dare I say, it’s good riddance to a dodgy invention.\\n\\nThe idea that marketing business-to-business took entirely different skills and strategies to talking to consumers has its roots back in the early Noughties. The notion, which most marketers sadly still hold, was that because the volume of B2B transactions is so much higher than B2C—if you count every transaction required along a manufacturing supply chain, for example—then B2B branding requirements were stronger, too.\\n\\nConversely, the B2C belief held that the consumers of the world needed entirely different marketing strategies to convince them to open their wallets.\\n\\nTrue, where they differ most is in the justification of purchases. In B2C land, I need to convince myself why I should buy yet another pair of red shoes. (It’s a short discussion.) In B2B, I might be lobbying the board to invest in an expensive new CRM system.\\n\\nBut the truth is both groups share more similarities than differences.\\n\\nYour customers—be they businesses, consumers or both—have similar emotional and logical requirements that must be met. The relationship lifecycle between a purchaser and a brand exists with businesses and consumers alike. Both groups also frequent the same social media spheres, are Google-happy and web-savvy, and require strong brand confidence in order to purchase.\\n\\nThe illusion that you’re selling to a company in B2B should be seen for what it is. In retail or in business marketing, you’re selling to individuals. And each wants to feel that you get them.\\n\\n##### **Long live H2H.**\\n\\nWhich is where yet another acronym is starting to make a play: H2H, or human-to-human marketing.\\n\\nIt espouses the belief that we all, business and retail customers alike, are looking for connection, inclusion and to be understood. If you take that as your starting point—and not your burning need to produce another brochure—then the marketing toolbox available to your business automatically grows.\\n\\nIt means the vast strategies already out there, like relationship marketing and continuous touchpoints, become as relevant to a retail customer as to the business that buys your widgets. And the traditional B2C tools like social media become far more relevant B2B because they help build connections better than a sterile product flyer.\\n\\n##### **Let’s make H2H practical.**\\n\\n**1. Open your horizons**\\n\\nSwitching your mindset to focusing on the individual, human needs of your market means you can open your marketing to all sorts of potential tools. Just because you run a hair salon doesn’t mean you can’t start sending out a monthly email newsletter—if your customers are the kind of people that like to know more about you. And just because you’re an accountant doesn’t mean you can’t lead an industry group on LinkedIn or advertise on Facebook—if that’s where you’ll find the types of sales you want. Think about your customers, and let their needs lead you.\\n\\n**2. Make your customers feel**\\n\\nSales overwhelmingly come from relationships in my business, so meeting my clients’ emotional needs is a no-brainer. If my clients are happy, they’ll stay.\\n\\nBut even if your sales rely heavily on good old-fashioned foot traffic, it’s relationships that will lure them and keep them. So, in every tool you use to get to market, make sure you get the emotional kicker in. Empathise and prove you understand their needs.\\n\\n**3. Ask your employees what they think**\\n\\nIt’s one thing to make marketing decisions from an ivory tower. Chances are it’s your staff who really know how your clients think, or how your customers behave. So get their ideas and integrate it into your marketing. Let them drive your innovation.\\n\\n**4. Finally, listen to your customers**\\n\\nThere is marketing gold in every intentional conversation you have with a customer. Ask the ‘why’ that follows the tough questions: Do you feel safe with my business? Do you like dealing with us? Would you refer us to your friends? The answers will revolutionise how you think about marketing to your customers.\\n\\n---\\n\\n*Written for the February 2014 issue of Inform, the monthly magazine of the Chamber of Commerce and Industry in Queensland.*\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'B2B is dead','As deaths go, it was a quiet one. Few people knew of its demise.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136416,140172,1,'8 important marketing questions for every business','2022-05-30 01:19:53','2022-05-30 01:19:53','8614c0b9-6896-47c2-b148-ae3f5c26d441',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VzKHBkk2Ca\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Marketing communications in business is all about attracting and retaining customers. We do it for dozens of Australian companies every day, and the bigger the company, the tighter the marketing strategy governing their communications—because they know customers are fickle, and competitors are waiting to pounce on any weakness.\\n\\nThe same philosophy of tight strategy and execution should drive your business. Effective marketing communications must be an essential part of your core business strategy to ensure you’re pushing the same, consistent message through every aspect of your organisation.\\n\\nBut it’s not always so easy to go it alone. If you’re in a small business and know you need to step up, here’s a handy checklist of the marketing questions you need to answer to keep your customers in tune with you—and your competitors at bay.\\n\\n##### **Who are my existing customers?**\\n\\nThe best way to sell to your customers is to first understand who they are, why they buy from you, and what value they expect from you. And the best way to learn this? Listen to them. Marketing communication begins with good customer relationships, which are almost like your own form of market research.\\n\\nWhen you talk to your customers, you’ll learn things like your customers’ age, income, education, how often they buy from you, what their buying triggers are and how they’re influenced. This is a valuable step in honing your marketing message, so don’t be tempted to think you already know the information if you’ve been in business for a while. Every customer conversation will add another layer to your understanding.\\n\\n##### **Who are my potential customers?**\\n\\nIt’s just as critical to have a very clear understanding of your desired target market and new customers. Get as detailed as you possibly can. The more specific you are, the better you can develop messages for them.\\n\\n##### **Who are my competitors?**\\n\\nUnderstanding who competes for your customers—and what they’re offering—is vital. Get very familiar with every aspect of your competitors’ businesses—including their reputation, prices and marketing material. This knowledge will help you position your marketing communication relative to how your customers are already being targeted and differentiate yourself in the market.\\n\\n##### **What am I trying to achieve?**\\n\\nUnderstanding why you’re communicating with your customers is essential. Are you purely after quick wins? Or preparing the ground for a new product or stronger relationships? The rationale and potential value for any marketing effort should determine how much money you need to spend, and where it’s best spent.\\n\\n##### **What am I trying to say?**\\n\\nThis is where everything comes together. You must now develop clear, key messages that talk up your product or service, meet the expectations and needs of your new and existing customers, and differentiate yourself from your competition.\\n\\nMake sure you have no more than five key messages—in fact, the fewer the better—and make them specific and meaningful. That’s how you stand out in the crowded market. Ensure your customers are aware of your business and its products or services, and why they should care (e.g. What’s in it for them? And what are the true benefits?). These benefits should be factual and real. It’s important not to overload customers with information, but rather to be clear and articulate.\\n\\nAll of your marketing communications should include a strong call to action: What is it that you want customers to do once they’ve interacted with you? Leave them in no doubt and make it easy for them.\\n\\n##### **What’s the right channel?**\\n\\nThere’s no doubt that it’s a busy marketplace when it comes to finding the perfect place to share your marketing messages. The challenge here is in focusing and narrowing your communication—and finding the right time and place to connect with your customers.\\n\\nMany marketers are now jumping on social media networks, but that might not be where your customers can be found. It’s important that you understand how and when they want to hear from you, and use that information to foster a true customer relationship.\\n\\n##### **Is my strategy integrated?**\\n\\nCommunicating in an integrated way across all channels (such as website, emails and brochures) means your brand will become better known and understood. Integration means that every time your customers hear from you, they get the same feel for who you are. By creating consistent, strong marketing communications, your customers will identify and remember you into the future.\\n\\n##### **Finally: Am I communicating with genuine creativity?**\\n\\nCreativity isn’t about paying your local print shop to pull together a flyer with your logo on it, or using a WordPress template to build your long-overdue website. They might be tactics that you use, but they’re not what creativity is really about.\\n\\nTrue creative thinking pulls together everything you know about your business, your goals and your customers into a single, cohesive package that cuts through, connects and resonates. Creativity distills everything down to the right words, images and design so that your marketing collateral has the right impact. No business can afford to skimp on this stage because getting creativity right means you’ll get the results you’re really after: maximum return on your marketing investment.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'8 important marketing questions for every business','Marketing communications in business is all about attracting and retaining customers. We do it for dozens of Australian companies every day, and the bigger the company, the tighter the marketing strategy governing their communications—because they know customers are fickle, and competitors are waiting to pounce on any weakness.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136417,140173,1,'What the artist breaks','2022-05-30 01:20:04','2022-05-30 01:20:04','c60cf789-425e-4ec0-b0e7-b06689ce51b5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QjbPRQcxAH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"It’s arguable that copywriting is at the heart of all advertising and marketing today. We remember taglines and recall jingles; and copy is the beginning of most brand stories. But, boy, is it fantastic to look back at a time when it really was all about the words.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Bill Bernbach was the founding creative director of legendary Manhattan ad agency Doyle Dane Bernbach (DDB). He came out with quotes like:\\n\\n“Advertising is fundamentally persuasion and persuasion happens to be not a science, but an art”, and\\n\\n“Word of mouth is the best medium of all”, and\\n\\n“Rules are what the artist breaks; the memorable never emerged from a formula.”\\n\\nThat’s really provocative stuff that makes you nod your head at the truth and simple power of his thinking—and imagine how inspiring but uncompromising a boss he would have been. What an exhilarating time to be writing.\\n\\nBernbach not only had a way with a turn of phrase, but he also really set up the structure of creative teams for marketing and advertising, and was, of course, part of the inspiration for Mad Men. But mostly, he was a writer. And what a writer he was. His firm revolutionised advertising copy and laid out the early foundations for brand storytelling through engaging narrative and brand persona development. We can, and have, all learned from these guys.\\n\\nIn the 1960s, DDB took on Volkswagen as a client and began creating a series of print ads that referred to the VW as a “lemon” and encouraged consumers to “think small”. The copy, by the incomparable Julian Koenig, starts out saying “This Volkswagen missed the boat. The chrome strip on the glove compartment is blemished, and must be replaced.” Not exactly sales speak.\\n\\n##### **It was funny. It was clever. And it was ground-breaking.**\\n\\nFor the rest of the decade, VW kept their unconventional campaign rolling. DDB’s strategy of turning seeming faults into benefits was a huge hit. One ad didn\'t even include a picture of the little lemon: “No point in showing you the 1962 Volkswagen. It still looks the same.”\\n\\nMuch has been written about the ads, and you can take a look at a bunch of them here if you like. It was ranked the best advertising campaign of the twentieth century by Ad Age, and it deserves the title. This sort of brand bravery is rare and may be a little of its time, too. The truth is that the power is all right there, in the copy, which exists to inspire us. Last words to Mr Bernbach himself:\\n\\nYou can say the right thing about a product and nobody will listen. You\'ve got to say it in such a way that people will feel it in their gut. Because if they don\'t feel it, nothing will happen.\\n\\nWhat is your brand really saying?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What the artist breaks','It’s arguable that copywriting is at the heart of all advertising and marketing today. We remember taglines and recall jingles; and copy is the beginning of most brand stories. But, boy, is it fantastic to look back at a time when it really was all about the words.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136418,140174,1,'Righting writing','2022-05-30 01:20:14','2022-05-30 01:20:14','5fbf8cc5-ac51-4674-b87b-01faa142f553',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WiIX62eIQK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uni was when I found my purpose in life. A passionate lecture on the very first day was my ‘eureka!’ moment that then propelled me through a double major in communications, 10 years in a newsroom and countless more in corporate writing.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"But it all could have come tumbling down in the stern and unyielding face of just one lecturer: Ros Petelin.\\n\\nLike most kids who gravitated toward the arts in school, I’d been feted as a bit of a writer. I wrote installments of unreasonably sappy romance novels late at night and distributed copies to peers on the train the next morning. I won an academic scholarship for my writing (although nearly lost it many times for my maths).\\n\\nIt was left to Ros—now an associate professor in the School of English, Media Studies and Art History at UQ, and a well-respected writer in business communication—to tear my self-made kingdom down, word by word, until I could rebuild it on more solid foundations.\\n\\nHere’s what I now know to be true about writing effective business words.\\n\\nThanks, Ros. I hope you’re grading more kindly these days.\\n\\n##### **Trick #1: Talk like your audience**\\n\\nIf you’re writing for your business, forget formal words and don’t allow fear of failure—or grammar—to stop you writing. Instead, a trick I’ve long used in business writing is to hear a typical customer’s voice in my head, and then to write like they talk.\\n\\nLike acting, the craft of writing involves immersing yourself in the character. In this case, the character is your customer—and by sounding like them, you’re more likely to draw them in.\\n\\n##### **Trick #2: WIRMI**\\n\\nI have Ros and her fondness for US author Linda Flowers to thank for WIRMI. The acronym ‘What I Really Mean Is’ is extraordinarily helpful in bringing clarity to business writing, and it’s a tool I still use daily.\\n\\nYou can use WIRMI as a catchphrase at any point of your writing—when you’re trying to work out exactly what you want to say, and when you’ve written something and you need to ensure it says what you want, clearly and well.\\n\\nIf you’re not comfortable with writing—and plenty of people would rather line up for a root canal than write an essay—this is a great way to check you’re on track.\\n\\n##### **Trick #3: So nice you read it thrice**\\n\\nFinally, if you’re satisfied that what you’ve written is the best you can do, read it through once more—and then put it down.\\n\\nAfter a few hours—or a few days, if you have the time—pick it up and critically read it again. Make a few adjustments. Delete a few words. Then hide it again.\\n\\nOn the third go, after another break, pretend you’re the customer and read it aloud to yourself as though you’re seeing it for the first time. If you have no more changes to make to it, it’s good to go. But chances are, you’ll think of a few.\\n\\nWhy at least three reads? Professional writers and editors know better than anyone that great writing comes from multiple drafts, not a single session of inspiration. Taking a break in between drafts—although hard to do in a busy work day—can be the key to achieving great results.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Righting writing','Uni was when I found my purpose in life. A passionate lecture on the very first day was my ‘eureka!’ moment that then propelled me through a double major in communications, 10 years in a newsroom and countless more in corporate writing.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136420,140176,1,'Chevron','2022-05-30 01:20:27','2022-05-30 01:20:27','0ec1cadf-4443-4086-bd40-53d17a733504',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed as Chevron\'s go-to Australian agency as they reignited their Australian operations. We\'re helping them reach their business goals, relaunch their Puma retail network under the Caltex brand, and grow their market share in the lubricants B2B market.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gvKwuoJR7j\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547129?h=68b08b3b6f&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian lubricants division.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z59xrAwLVU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We conducted a competitor analysis to assess competitor brand messaging and positioning, interviews with key Chevron distributors in the B2B market and one-on-one interviews with the general customers.\\nOur insights indicated a need for authentic, ‘real life’ marketing collateral with which the audience can connect. We also gleaned that the messaging needed to be kept simple.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-f5LPArKwgF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689548339?h=5797d76cc7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP9dMqkL3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We made the creative decision to let the products take a backseat and instead shine a light on the customers’ businesses and their distributor relationships.\\nWe supplemented our inhouse production team with award-winning documentary cinematographer Mark Broadbent and the editing finesse of Anasiou Canaris to give the videos a warm and, at times, heartfelt tone. The customers in question are mostly generations-old businesses with a story to tell. So we told some stories.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gLOsbQtiKq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547741?h=7529fef734&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ahQwPi3ZPn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result was 20 video variations across five content pillars in a style you wouldn’t necessarily associate with marketing around fuel and lubricant products—something a little surprising, something that stands out from the crowd.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5dbIBMfjBJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“Our customers are the centre of everything we do, so we’re really proud to have created something that’s authentic to their experiences—their relationships with the distributors, their family values and the inter-generational ties in each of their businesses.\",\"plainText\":\"“We challenged New Word Order with a complex brief of showcasing the product, telling a compelling story about the customer and distributor relationship, and delivering the message that the products customers know and love are back for good. <br> \\n“New Word Order perfectly captured all of those elements in a cohesive video series that authentically connects with the audience.” <br> \\n\\n** — Cris Gillespie, Head of Marketing at Chevron **\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign','Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136422,140178,1,'New Word Order','2022-05-30 01:20:35','2022-05-30 01:20:35','9acdaf97-4ef2-4534-8928-c2ae1c2817dd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'We\'ve stepped up',NULL,NULL,'We\'re big believers in making our outsides match our insides.\n\nOur clients always hear us telling them that this is the essence of brand integrity (because it is). And like all people who are striving to go from good to great, we\'ve stepped up.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-14yyQfdrAP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94210\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ajkeoG129p\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our new brand\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As part of our regular brand review process, we decided our old identity didn\'t have the strength of character our current brand embodies. A lot has changed in the past few years: our market shifted, and we shifted with it.\\n\\n**We used our proven brand methodology on ourselves.**\\n\\nOur unique methodology is about knowing our context, opinions, pain points and applying insights. Adding to this our business strategy—to which our brand strategy must align—and we\'re dressed and messaged for success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand audit\",\"text\":\"We laid out where our brand is currently and the story that led us here.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Stakeholder consultation\",\"text\":\"We spoke to our stakeholders to understand how they view and interact with our brand, and their perspective on what needed to change.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand comparison analysis\",\"text\":\"We learned where our business sits among others in Brisbane, around Australia and the world.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand story\",\"text\":\"We documented  the story of our brand as a central narrative so anyone within or connected to our business could access one source of truth.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"Visual brand development\",\"text\":\"We created a new logo and other branding elements that tell our story in multiple layers.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Brand voice and messaging\",\"text\":\"We defined and documented our new way of writing, speaking and the key messages we want to communicate.\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There is power in gathering insights, applying a proven methodology of insights development and planning a strategic way forward. \\n\\nOur brand informs and impacts every aspect of New Word Order, and gives us a clear direction that challenges the usual way of doing things and ensures anyone who comes into contact with our business knows what we offer and how we will solve their problems.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bEj6Q5npVj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94211\",\"94209\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QGxZjexaIq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This process is what we do for our clients every day, what we do for ourselves, and we\'d like to do this for you, too. Start the conversation with us and discover how a fresh brand will breathe new life into your business.\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Talk to us\",\"buttonImage\":[],\"internalLink\":[\"21297\"],\"externalLink\":null,\"buttonStyle\":\"outline\",\"buttonColour\":\"white\"}}},\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-diijVzsy4h\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Type\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our new typeface is bolder, stronger, and positively dripping with character. Check out the Ns, Ws and Rs in our font—Neue Machina.\\n\\nThe monospace and geometric type features with deep ink traps in the heavier weights.\\n\\nWe love it because of its versatility: clean and minimalist in the lighter weights, but the heavier weights are bold in more ways than one. \\n\\n- Deep ink traps in heavier weights\\n- Overshot terminals\\n- Rounded corners\\n- Monospace-like features\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4bQVkM05o8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94212\",\"94215\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MLS2xXnQoC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Words\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We\'re also intent on re-establishing our roots in the power of the written word. A subtle way we\'re doing this is using words over icons. As an example, see how we used the word \'menu\' instead of a hamburger.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gbJaMB0pnh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94214\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-K3KNRmvlzY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Colours\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our brand colours are mostly black and white with pops of red, green and blue. The colours are the basics in the digital environment (RGB). This is our primary palette—we bring strategy and creativity to form something entirely new and entirely what our clients need to solve their problems and unlock their potential.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-btBIAfxeyp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94216\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VDhaVH930A\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Experiences\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The main reason we\'re keeping our brand so pared back is because we want our creative portfolio to sing. Are you loving the immersive full-screen hover state feature as much as we are? We wanted our brand to allow for such experiences as this.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BRfSdhrk5C\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"94221\",\"94220\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Our new brand','Our clients always hear us telling them that this is the essence of brand integrity (because it is). And like all people who are striving to go from good to great, we\'ve stepped up.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136424,140180,1,'Aseeos','2022-05-30 01:21:54','2022-05-30 01:21:54','17a67b50-4297-40d1-b979-2a6ebb8e20ae',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Delivering for disruptors',NULL,NULL,'Aseeos rebranded to transform its 10-year-old installation business into an industry-disrupting model that solves age-old industry problems of supply, quality and budget overruns. We worked closely with the team to take its core brand elements and develop a full range of collateral, including signage, brochures and catalogues, video, marketing, events and website.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bmUfyXmDcz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47997\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fyTxfCvyJr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47773\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WYeceTl1wB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/194746924?h=02b6e594f2&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Aseeos - Delivering for disruptors','Aseeos rebranded to transform its 10-year-old installation business into an industry-disrupting model that solves age-old industry problems of supply, quality and budget overruns. We worked closely with the team to take its core brand elements and develop a full range of collateral, including signage, brochures and catalogues, video, marketing, events and website.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136425,140181,1,'Department of Transport and Main Roads','2022-05-30 01:22:14','2022-05-30 01:22:14','664756fb-1cba-49b7-9a5c-690e3bfa5417',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'How Queensland Travels',NULL,NULL,'The Department of Transport and Main Roads has measured how, where and why Queenslanders travel since 1976. How Queensland Travels was the first time all of this research had been revealed together.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xiMuwH0qUn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47768\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UGKKHcWkDX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"We crafted a visual metaphor for this important story by enlarging infographic iconography, making it 3D and placing it into real world situations.\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ykadeGb8YM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/145833141?h=da493c8de8&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wXJAJa8GTY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":null,\"plainText\":\"The result is a metaphor for the role of data in the real world, especially as it relates to transport.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MQiJ46BCqv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47767\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IXjmqTVmWl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":null,\"plainText\":\"Our deliverables included an interactive PDF—written, edited and designed by our team—and the beautiful 3D animated video showing the 3D icons moving in the real world.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Department of Transport and Main Roads - How Queensland Travels','The Department of Transport and Main Roads has measured how, where and why Queenslanders travel since 1976. How Queensland Travels was the first time all of this research had been revealed together.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136426,140182,1,'Pivotus','2022-05-30 01:22:34','2022-05-30 01:22:34','6a31a3b4-c018-4c8d-abfa-30b2d297362f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a pivot?',NULL,NULL,'After rapid growth in recent years, My Media Trading Desk (MMTD) hit the pause button and engaged NWO to ask many of their valued clients: What do you really think of MMTD? Their clients’ generous answers both delighted MMTD and offered a mandate to change and grow. Pivotus is their response.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NhnaCQNxpw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47990\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-B78dz1rmC2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"But what do your clients really think?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"NWO began the rebranding process by surveying MMTD’s clients. Commonly held by all of their clients was great regard for their honesty, their industry knowledge, and their unbreakable commitment to exceptional customer service.\\n\\nClients also said they wanted to get deeper insights, beyond the fast and accurate data and delivery MMTD were already known for.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AlIqZXoFkr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47763\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ulVnymquUW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Why Pivotus?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"MMTD needed a new brand to drive their reputation for quality data, strategic advice and superior customer experiences.\\n\\nThe brand needed to convey a clear promise: we’ll rapidly measure and pivot to maximise your media spend returns.\\n\\nTo pivot is to turn on a point—and there’s no better metaphor for how they pivot digital media to get the best possible results for their clients.\\n\\nPivotus is also a call to action: Pivot your brand with their team—because they are nimble, fast and focused in a rapidly changing market.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MJZcxjyvrL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47761\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-w74pYr8Ehf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Founder and CEO Michael Petersen said the new brand better reflects market expectations of their firm and his team’s commitment to a superior customer experience.\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VLVB6hcgiC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47992\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GXT7RzNKoY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47764\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Pivotus - What\'s a pivot?','After rapid growth in recent years, My Media Trading Desk (MMTD) hit the pause button and engaged NWO to ask many of their valued clients: What do you really think of MMTD? Their clients’ generous answers both delighted MMTD and offered a mandate to change and grow. Pivotus is their response.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136427,140183,1,'Pivotus','2022-05-30 01:22:36','2022-05-30 01:22:37','5a899bf7-ed4f-443f-9fab-486b80020af1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a pivot?',NULL,NULL,'After rapid growth in recent years, My Media Trading Desk (MMTD) hit the pause button and engaged NWO to ask many of their valued clients: What do you really think of MMTD? Their clients’ generous answers both delighted MMTD and offered a mandate to change and grow. Pivotus is their response.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NhnaCQNxpw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47990\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-B78dz1rmC2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"But what do your clients really think?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"NWO began the rebranding process by surveying MMTD’s clients. Commonly held by all of their clients was great regard for their honesty, their industry knowledge, and their unbreakable commitment to exceptional customer service.\\n\\nClients also said they wanted to get deeper insights, beyond the fast and accurate data and delivery MMTD were already known for.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AlIqZXoFkr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47763\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ulVnymquUW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Why Pivotus?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"MMTD needed a new brand to drive their reputation for quality data, strategic advice and superior customer experiences.\\n\\nThe brand needed to convey a clear promise: we’ll rapidly measure and pivot to maximise your media spend returns.\\n\\nTo pivot is to turn on a point—and there’s no better metaphor for how they pivot digital media to get the best possible results for their clients.\\n\\nPivotus is also a call to action: Pivot your brand with their team—because they are nimble, fast and focused in a rapidly changing market.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MJZcxjyvrL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47761\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-w74pYr8Ehf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Founder and CEO Michael Petersen said the new brand better reflects market expectations of their firm and his team’s commitment to a superior customer experience.\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VLVB6hcgiC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47992\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GXT7RzNKoY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47764\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Pivotus - What\'s a pivot?','After rapid growth in recent years, My Media Trading Desk (MMTD) hit the pause button and engaged NWO to ask many of their valued clients: What do you really think of MMTD? Their clients’ generous answers both delighted MMTD and offered a mandate to change and grow. Pivotus is their response.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136428,140184,1,'Department of Housing and Public Works','2022-05-30 01:22:52','2022-05-30 01:22:52','5c3b6293-c1c2-4453-948a-852a0a7e8155',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Have your say in a better renting future',NULL,NULL,'With a range of renting reforms not yet law, we created a campaign to drive renters to a survey where they could have their say.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NnAYpM8RPK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47660\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2V7rQTXdap\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"More Queenslanders are renting than ever before.\\n\\nSo the Department of Housing and Public Works wanted to have open and honest conversations with renters, property owners and managers about what matters and what needs to change.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BQeIecGM9t\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47661\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-mjELLOS8zt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The messaging was compelling and obvious to convince the target groups there was value in them participating in the survey. To motivate the audiences, we tapped into key renting issues but kept a warm and positive sentiment.\\n\\nWe developed display ads, videos and static posts to build awareness and capture interest.\\n\\nPlus, we used long-form Facebook posts to convert target group interest and inform them on the details.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CDacbY6rtS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47662\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W1OXhvU4i4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The campaign had a total of 24 posts across two weeks, reaching 1.37 million individual Facebook users, with more than 42,000 engagements.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VN9WYyb9Pi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47663\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Department of Housing and Public Works - Have your say in a better renting future','With a range of renting reforms not yet law, we created a campaign to drive renters to a survey where they could have their say.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136429,140185,1,'Brisbane South PHN','2022-05-30 01:23:12','2022-05-30 01:23:12','be441c91-e853-4d36-a1dc-71b5b1ec31a4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Aged Care Navigator',NULL,NULL,'We helped Brisbane South PHN to encourage older people to sign up to My Aged Care, so affordable, practical support is ready for them when they need it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oNzYQDCB0J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47749\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JuROxoLizt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Authentic community engagement\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We ran focus groups with people within the target market—in Redlands and Logan—and learned their perceptions of aged care, the challenges with navigating services and levels of participation in My Aged Care.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gGzYlN4TtN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47750\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VOx7qvXe9V\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We developed a campaign strategy and creative to encourage people in the target groups to attend an information session.\\n\\nA key element to our campaign strategy was targeting the \'influencer\' group: children who often help their elderly parents to find the right support and make decisions. Influencers spend a lot of time using digital media, particularly Facebook, so this formed a large part of the campaign collateral we developed.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3VEF0Vw8lC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47751\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VfrmLMDvpV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47752\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136431,140187,1,'Brisbane South PHN','2022-05-30 01:24:10','2022-05-30 01:24:10','a71d5c9c-186b-49dd-825f-12d82f92f342',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Aged Care Navigator',NULL,NULL,'We helped Brisbane South PHN to encourage older people to sign up to My Aged Care, so affordable, practical support is ready for them when they need it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oNzYQDCB0J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47749\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JuROxoLizt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Authentic community engagement\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We ran focus groups with people within the target market—in Redlands and Logan—and learned their perceptions of aged care, the challenges with navigating services and levels of participation in My Aged Care.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gGzYlN4TtN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47750\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VOx7qvXe9V\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We developed a campaign strategy and creative to encourage people in the target groups to attend an information session.\\n\\nA key element to our campaign strategy was targeting the \'influencer\' group: children who often help their elderly parents to find the right support and make decisions. Influencers spend a lot of time using digital media, particularly Facebook, so this formed a large part of the campaign collateral we developed.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3VEF0Vw8lC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47751\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VfrmLMDvpV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47752\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Brisbane South PHN','We helped Brisbane South PHN to encourage older people to sign up to My Aged Care, so affordable, practical support is ready for them when they need it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136433,140189,1,'Brisbane North PHN website','2022-05-30 01:24:58','2022-05-30 01:24:58','45c2f401-137d-4e46-bc95-52f9e99eff52',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Better access, better health',NULL,NULL,'The PHN’s website is where the ‘better access, better health’ vision comes to life and starts important conversations. This was an opportunity to innovate, collaborate and leverage the PHN\'s work through a powerful digital solution. With a clean design, intuitive user journeys and plain English content, this site is transforming the digital experience for stakeholders within and outside the PHN.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yXpuBl6k0n\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47745\",\"47746\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Brisbane North PHN website','The PHN’s website is where the ‘better access, better health’ vision comes to life and starts important conversations.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136435,140191,1,'Endeavour Foundation','2022-05-30 01:26:47','2022-05-30 01:26:47','2d138969-26f6-4f30-bc80-ae114a5b6abc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rebranding an icon for a new era',NULL,NULL,'The Endeavour Foundation came to us with a new mandate and a new logo that needed the support of an incredible brand story. We stepped in to capture the essence of authentic customer service: to tell Endeavour’s compelling brand story about the people they serve, and the people who serve.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-i7VSDgqc7V\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45336\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XE9ZIQrYn6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Endeavour delivers essential, personalised and compassionate services to people with intellectual disabilities. When the NDIS was introduced, it was the perfect opportunity for Endeavour to show the world what their services mean to the community it serves.\\n\\nThey asked us to take their new logo and develop a complementary campaign and suite of branding tools to support it. Our goal was to capture the heart of Endeavour Foundation through storytelling and unify the foundation’s people and customers under one powerful vision.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5lKlpPU30x\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45338\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jeFwrbtZMK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45339\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JKRNdGpqnc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We based our campaign strategy on one question: what would make my life better? The question explored Endeavour’s objective to create a brand that could represent their customers and generate greater possibilities for their care. Our creative solution was to make Endeavour customers the heroes.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uYLiG0E4oM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/265285881\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MQfzkp05OB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Endeavour’s new brand video is an expression of their unifying purpose to truly serve and make a meaningful difference in the lives of their customers.\\n\\nThe campaign speaks for and to the extended stakeholder community about the vision, quality and outcomes of Endeavour’s services. It included:\\n<ul>\\n  <li>brand story</li>\\n  <li>full visual brand development from a supplied logo</li>\\n  <li>hero photography</li>\\n  <li>brand book</li>\\n  <li>brand video</li>\\n  <li>employer brand and collateral</li>\\n  <li>launch campaign.</li>\\n</ul>\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QPJ6J6kHcL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45340\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qBnvWlcG0T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Many powerful stories came out of this job, but the most incredible was watching Endeavour customers embrace the opportunity to model for our video and photography crew. Endeavour reported back to us the meaningful moments when their customers saw their photos for the first time.\\n\\nSince the brand and campaign launch in June 2018, Endeavour has boosted their number of leads for their main service areas: accommodation, day services and work placements. With a long-term goal in mind, these results are significantly greater than anticipated, and only a few months since the campaign launch.\\n\\nIn addition, Endeavour reported to us unexpected community engagement at their events—people who have no connection to intellectual disability and have not previously been involved with the foundation. We look forward to following this story and discovering the full impact of our work.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Endeavour Foundation','The Endeavour Foundation came to us with a new mandate and a new logo that needed the support of an incredible brand story.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136437,140193,1,'Endeavour Foundation','2022-05-30 01:28:56','2022-05-30 01:28:56','27c39193-d5ee-4c87-9f2c-d29e16a44113',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rebranding an icon for a new era',NULL,NULL,'The Endeavour Foundation came to us with a new mandate and a new logo that needed the support of an incredible brand story. We stepped in to capture the essence of authentic customer service: to tell Endeavour’s compelling brand story about the people they serve, and the people who serve.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-i7VSDgqc7V\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45336\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XE9ZIQrYn6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Endeavour delivers essential, personalised and compassionate services to people with intellectual disabilities. When the NDIS was introduced, it was the perfect opportunity for Endeavour to show the world what their services mean to the community it serves.\\n\\nThey asked us to take their new logo and develop a complementary campaign and suite of branding tools to support it. Our goal was to capture the heart of Endeavour Foundation through storytelling and unify the foundation’s people and customers under one powerful vision.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5lKlpPU30x\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45338\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jeFwrbtZMK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45339\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JKRNdGpqnc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We based our campaign strategy on one question: what would make my life better? The question explored Endeavour’s objective to create a brand that could represent their customers and generate greater possibilities for their care. Our creative solution was to make Endeavour customers the heroes.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uYLiG0E4oM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/265285881\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MQfzkp05OB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Endeavour’s new brand video is an expression of their unifying purpose to truly serve and make a meaningful difference in the lives of their customers.\\n\\nThe campaign speaks for and to the extended stakeholder community about the vision, quality and outcomes of Endeavour’s services. It included:\\n<ul>\\n  <li>brand story</li>\\n  <li>full visual brand development from a supplied logo</li>\\n  <li>hero photography</li>\\n  <li>brand book</li>\\n  <li>brand video</li>\\n  <li>employer brand and collateral</li>\\n  <li>launch campaign.</li>\\n</ul>\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QPJ6J6kHcL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45340\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qBnvWlcG0T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Many powerful stories came out of this job, but the most incredible was watching Endeavour customers embrace the opportunity to model for our video and photography crew. Endeavour reported back to us the meaningful moments when their customers saw their photos for the first time.\\n\\nSince the brand and campaign launch in June 2018, Endeavour has boosted their number of leads for their main service areas: accommodation, day services and work placements. With a long-term goal in mind, these results are significantly greater than anticipated, and only a few months since the campaign launch.\\n\\nIn addition, Endeavour reported to us unexpected community engagement at their events—people who have no connection to intellectual disability and have not previously been involved with the foundation. We look forward to following this story and discovering the full impact of our work.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Endeavour Foundation','The Endeavour Foundation came to us with a new mandate and a new logo that needed the support of an incredible brand story.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136439,140195,1,'West Moreton Anglican College','2022-05-30 01:29:36','2022-05-30 01:29:36','b539e849-96f2-4e4c-a9c6-7a78f4aa1b37',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The school for (real) life campaign',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kSAkN1lDaq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Like schools everywhere, West Moreton Anglican College needed to change its plans to bring parents onto campus to experience the school because of the coronavirus.\\n\\nThis meant the annual open day was cancelled. But a few months later when restrictions eased, the school had a chance to bring parents back.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fxOewiuxW6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45330\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-c4rLGz6SQd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We developed a 16-week plan that timed out the lead up to the modified open day, and follow-up of leads afterwards. It outlined a WestMAC-specific brand campaign that celebrated the WestMAC way and positioned the school as a unique and desirable offering compared to other schools in the catchment area.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GVAyDnsmRc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45329\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o0LzwcEURr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"At the end of the day, parents just want their kids to be happy, healthy and well.\\n\\nWestMAC is a wonderland for kids complete with an agriculture farm, animals and a garden for digging—because that\'s just what kids like doing. It\'s the school for real life.\\n\\nThis campaign included gorgeous hero photography, strategic messaging and a series of videos where students talk about their WestMAC experience.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-66MSHWAoOc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/470822168?h=a0ce3a6b80&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/470822520?h=90034f124f&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KSqaU5wR9Y\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The campaign resonated with parents in the catchment, and filled the tour. We continued to run the campaign for the rest of the year, encouraging prospective parents to attend a personal tour.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ip4P0zUBCI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45333\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'West Moreton Anglican College','The school for (real) life campaign',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136441,140197,1,'Endeavour Foundation','2022-05-30 01:30:24','2022-05-30 01:30:24','a6317588-d8c5-427e-8cd1-5b09871b2b7a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rebranding an icon for a new era',NULL,NULL,'The Endeavour Foundation came to us with a new mandate and a new logo that needed the support of an incredible brand story. We stepped in to capture the essence of authentic customer service: to tell Endeavour’s compelling brand story about the people they serve, and the people who serve.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-i7VSDgqc7V\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45336\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XE9ZIQrYn6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Endeavour delivers essential, personalised and compassionate services to people with intellectual disabilities. When the NDIS was introduced, it was the perfect opportunity for Endeavour to show the world what their services mean to the community it serves.\\n\\nThey asked us to take their new logo and develop a complementary campaign and suite of branding tools to support it. Our goal was to capture the heart of Endeavour Foundation through storytelling and unify the foundation’s people and customers under one powerful vision.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5lKlpPU30x\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45338\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jeFwrbtZMK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45339\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JKRNdGpqnc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We based our campaign strategy on one question: what would make my life better? The question explored Endeavour’s objective to create a brand that could represent their customers and generate greater possibilities for their care. Our creative solution was to make Endeavour customers the heroes.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uYLiG0E4oM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/265285881\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MQfzkp05OB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Endeavour’s new brand video is an expression of their unifying purpose to truly serve and make a meaningful difference in the lives of their customers.\\n\\nThe campaign speaks for and to the extended stakeholder community about the vision, quality and outcomes of Endeavour’s services. It included:\\n<ul>\\n  <li>brand story</li>\\n  <li>full visual brand development from a supplied logo</li>\\n  <li>hero photography</li>\\n  <li>brand book</li>\\n  <li>brand video</li>\\n  <li>employer brand and collateral</li>\\n  <li>launch campaign.</li>\\n</ul>\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QPJ6J6kHcL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45340\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qBnvWlcG0T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Many powerful stories came out of this job, but the most incredible was watching Endeavour customers embrace the opportunity to model for our video and photography crew. Endeavour reported back to us the meaningful moments when their customers saw their photos for the first time.\\n\\nSince the brand and campaign launch in June 2018, Endeavour has boosted their number of leads for their main service areas: accommodation, day services and work placements. With a long-term goal in mind, these results are significantly greater than anticipated, and only a few months since the campaign launch.\\n\\nIn addition, Endeavour reported to us unexpected community engagement at their events—people who have no connection to intellectual disability and have not previously been involved with the foundation. We look forward to following this story and discovering the full impact of our work.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Endeavour Foundation','The Endeavour Foundation came to us with a new mandate and a new logo that needed the support of an incredible brand story.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136443,140199,1,'Heart HQ','2022-05-30 01:31:34','2022-05-30 01:31:34','e554ac78-e210-4ba6-b6ad-85b77e267aa5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'World-class medical with heart',NULL,NULL,'Big ambitions need a brand that accurately reflects their vision and mission, and that’s exactly what we sought to deliver for this client. With Heart HQ, and with the enormous amount of collateral that supports it, we’ve well and truly delivered this.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-P3bQXxcsfs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44878\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uicOuPt9of\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Sunshine Coast Heart Specialists was growing and changing. \\n\\nIn six years, the cardiology practice had grown to nearly 50 staff with rooms throughout the coast. Their cardiologists represented all of the possible sub-specialties within their profession. Within weeks, they would move to new purpose-built premises at Sippy Downs. They were about to open their own coronary CT clinic to the public and a heart murmur clinic to support GPs—both nation-leading initiatives.\\n\\nThe directors realised their geography-specific name would limit their ability to keep growing, and so renaming and rebranding was a strong need.\\n\\nTheir growth had also occurred at such a rate that there was strategic work needed to understand their market share and to form a marketing strategy that would offer them opportunities for segmentation. Growth is reliant on satisfied referring GPs and specialists, and so attention could never be removed from this area.\\n\\nFinally, such growth was also outstripping their capacity to fill the need. Cardiology is a highly specialised field within medicine, and to grow sustainably, they needed to attract more associates.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Lgp01pReVY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44873\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aTg3yWEGh3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Objective\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The practice needed a new name and brand assets for the business to accurately convey the mission and vision of the business, and to grow the business’s referrer and patient networks.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gG5PvaSbvX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44864\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oXH0AQY2PC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our brand strategy drew on customer and referrer interviews, competitor insights and employee workshops, which also helped to define the brand values of the business. \\n\\nIt was clear the practice and the individual directors were held in high esteem by their medical colleagues. They introduced surgical procedures to the Sunshine Coast that were, until then, only practised by a few in major cities. They were introducing clinics and services that had not been seen in regional areas in Australia. This gave us the confidence to be able to propose a tagline that truthfully boasted, ‘world-class cardiac care’.\\n\\nThe second part of the tagline reads: ‘…on the Sunshine Coast’. To compensate for the move away from the regionalisation in their original brand name—Sunshine Coast Heart Specialists—we added it to the tagline. The reason for this is that patients along the coast appreciated the practice was the only place where they could receive the full spectrum of care without having to travel to Brisbane.\\n\\nFinally, an important branding insight from our research was that patients were on a health journey—sometimes quite a precarious one—and could be experiencing anxiety. Patients told us they appreciated the kindness each doctor showed to them in their time of need. Simply promoting expertise could come across as cold and would not fairly represent the doctors’ deep commitment to quality care. So the Heart HQ brand connects with patients on a personal level and makes them feel reassured that they matter.\\n\\nIt’s this mix of strategy and heart that makes Heart HQ a brand that will stand tall among all the others.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ISdJyIN6AW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44874\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDNF080GkR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A name, tagline, brand visual identity, website, signage and countless assets that match up with Heart HQ’s brand promise of delivering world-class cardiac care on the Sunshine Coast.\\n\\nThe quality of the brand assets significantly differentiates Heart HQ from all other competitor practices.\\n\\nCreatively, the brand is modern, refreshing and arguably not what you would expect from an organisation in the medical field – but at the same time, the language is warm, supportive and with just the right amount of authority.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Np5NPasoP9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"##### Suzanne and her team came highly recommended. It was a great journey working with them to develop our new brand and we were very impressed with their ideas, enthusiasm and innovation. We have a new brand, a new identity and the confidence now to deliver on our growth plans. \\n\\n**Dr Peter Larsen**\\n<br>Managing Director – Heart HQ\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3VvPbVRO0Q\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45205\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AUTeHLiAy1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"##### \\\"NWO is part of our success journey.\\\"\\n\\n**Dr Peter Larsen**\\n<br>Managing Director – Heart HQ\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'Heart HQ','Big ambitions need a brand that accurately reflects their vision and mission, and that’s exactly what we sought to deliver for this client.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136445,140201,1,'Coomera Anglican College','2022-05-30 01:32:36','2022-05-30 01:32:36','767cc234-e3eb-4e2e-ab0c-fc51289326fd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Anything is Possible campaign',NULL,NULL,'This campaign is bridging the gap between Coomera Anglican College\'s storied past and bold future. It\'s a powerful positioning piece that\'s standing the college out from the crowd and showcasing it as the school of choice on the northern Gold Coast.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-B24Vguyo08\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30448\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-I4OkseByw6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Storied past, bold future\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Coomera Anglican College is heavily storied. It’s done a lot of work to capture its history and moments. As result, there is a lot of heritage and tradition for a relatively young school (just 25 years).\\n\\nThe college has set a strong future of innovation and entrepreneurship. It has appointed a deputy principal whose whole focus is innovation. It also has an exceptionally future-focused business manager who is sports-obsessed with big dreams.\\n\\nOur work is helping the college bridge the gap from the past to an exciting future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3S8xZRT3yd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30447\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1dcAEtVD40\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Following focus groups, in-depth interviews, a competitor analysis and a brand refresh in 2020, we embarked on developing a new public-facing campaign to help the college continue to position itself as the private school of choice for the rapidly growing northern Gold Coast region.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7mko9XHUCj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47693\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-27uMRCFOVx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"In order to stand out in the crowded private school space, we looked outside of schools for inspiration—drawing from global sports and technology brands.\\n\\nThis campaign steers right away from traditional school advertising: think students standing and smiling in their school uniforms, older and younger students holding hands and walking through manicured school grounds, girls in safety glasses huddled over a beaker and Bunsen burner.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EkVYlvmrxM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30444\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ek8exDfZlT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The result is a powerful cinematic masterpiece: dramatic, inspirational and compelling. The script was drawn from lyrics of the college’s traditional song. Paired with the inspiring footage, the video effectively acknowledges the past while painting a vivid picture of the future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IGcqD2p42y\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30445\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CUjY0m7ysa\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“It was a pleasure working with New Word Order to develop the new creative for our College. They took the time to get to know what makes our college unique, and helped put that into tangible storytelling.”\",\"plainText\":\"— Aimee Barlett, Marketing and Communications Manager at Coomera Anglican College\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Ja5zJfaN0T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30446\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wtyTXQ0yRK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/574221746\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Coomera Anglican College','This campaign is bridging the gap between Coomera Anglican College\'s storied past and bold future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136449,140205,1,'Coomera Anglican College','2022-05-30 01:33:15','2022-05-30 01:33:15','e2409e1f-7cf1-4e5d-8fb3-d3a75786a46e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Anything is Possible campaign',NULL,NULL,'This campaign is bridging the gap between Coomera Anglican College\'s storied past and bold future. It\'s a powerful positioning piece that\'s standing the college out from the crowd and showcasing it as the school of choice on the northern Gold Coast.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-B24Vguyo08\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30448\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-I4OkseByw6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Storied past, bold future\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Coomera Anglican College is heavily storied. It’s done a lot of work to capture its history and moments. As result, there is a lot of heritage and tradition for a relatively young school (just 25 years).\\n\\nThe college has set a strong future of innovation and entrepreneurship. It has appointed a deputy principal whose whole focus is innovation. It also has an exceptionally future-focused business manager who is sports-obsessed with big dreams.\\n\\nOur work is helping the college bridge the gap from the past to an exciting future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3S8xZRT3yd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30447\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1dcAEtVD40\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Following focus groups, in-depth interviews, a competitor analysis and a brand refresh in 2020, we embarked on developing a new public-facing campaign to help the college continue to position itself as the private school of choice for the rapidly growing northern Gold Coast region.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7mko9XHUCj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47693\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-27uMRCFOVx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"In order to stand out in the crowded private school space, we looked outside of schools for inspiration—drawing from global sports and technology brands.\\n\\nThis campaign steers right away from traditional school advertising: think students standing and smiling in their school uniforms, older and younger students holding hands and walking through manicured school grounds, girls in safety glasses huddled over a beaker and Bunsen burner.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EkVYlvmrxM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30444\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ek8exDfZlT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The result is a powerful cinematic masterpiece: dramatic, inspirational and compelling. The script was drawn from lyrics of the college’s traditional song. Paired with the inspiring footage, the video effectively acknowledges the past while painting a vivid picture of the future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IGcqD2p42y\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30445\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CUjY0m7ysa\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“It was a pleasure working with New Word Order to develop the new creative for our College. They took the time to get to know what makes our college unique, and helped put that into tangible storytelling.”\",\"plainText\":\"— Aimee Barlett, Marketing and Communications Manager at Coomera Anglican College\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Ja5zJfaN0T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30446\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wtyTXQ0yRK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/574221746\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Coomera Anglican College','This campaign is bridging the gap between Coomera Anglican College\'s storied past and bold future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136450,140206,1,'Rural Aid','2022-05-30 01:34:00','2022-05-30 01:34:00','0af84709-0372-4eeb-8a80-6c8771b3c680',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Through drought, flood and fire, Rural Aid is there.',NULL,NULL,'Rural Aid is there for local farmers doing it tough, providing water, fodder and financial and counselling help. \n\nProviding emergency support is the priority, but it was time for Rural Aid to shift its focus to building resilience and sustainability in rural communities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eLK3JgwUaW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47719\",\"22211\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QCEdWG6OxJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The nature of the campaign, featuring real farmers telling their story, was insightful for many staff who might not get the chance to speak with or hear from farmers very often.\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-a1ZSpKzNhg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575770982\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4IaqNatl2X\",\"enabled\":false,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The campaign\",\"plainText\":\"Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F9lQRkpJbI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The campaign\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-h8vXLy3MfI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“The generous donations received from our community of supporters as a result from the campaign has had a very positive impact for the beneficiaries of our fundraising—Aussie farmers.”\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V9u5ejPQKv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575783623\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p6CVgVhKEp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Campaign messaging was two-tiered: an EOFY donations appeal and a thank you. Both worked for existing donors, people in existing databases and prospects.d\\n\\nTo ensure the greatest value for money for our client, we pooled the majority of our ad spend into digital, working closely with our media partner, Pivotus. We A/B tested the messaging and captured the audience with retargeting strategies.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8P2070zTQ8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"NWO were great to work with and really took an interest in our organisation and what we’re trying to achieve, and this showed through in the quality and the emotion captured in the final production. \\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rhaSMwFESv\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Creative\",\"plainText\":\"We proposed a campaign based on interviews with Australian farmers who had experiences with Rural Aid.\\n\\nIt’s an honest campaign of full of real people, stories and emotions.\\n\\nWith COVID-19 still hanging around, our approach ensured we avoided potential interruptions, travel restrictions and cancellation costs for our client.\\n\\nThe videos are compilations of interviews with various farmers across the spectrum of industries that are framed by a ‘zoom screen’ visual device, which adds layers of authenticity to the personal stories. \\n\\nSimilarly the display banners and static Facebook posts used the zoom imagery and visual devices—all pointing people to the EOFY Rural Aid landing page where viewers could view the full videos and choose to donate.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vJUro6swC6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We proposed a campaign based on interviews with Australian farmers who had experiences with Rural Aid.\\n\\nIt’s an honest campaign of full of real people, stories and emotions.\\n\\nWith COVID-19 still hanging around, our approach ensured we avoided potential interruptions, travel restrictions and cancellation costs for our client.\\n\\nThe videos are compilations of interviews with various farmers across the spectrum of industries that are framed by a ‘zoom screen’ visual device, which adds layers of authenticity to the personal stories. \\n\\nSimilarly the display banners and static Facebook posts used the zoom imagery and visual devices—all pointing people to the EOFY Rural Aid landing page where viewers could view the full videos and choose to donate.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3MV0vWsZV5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"I am very proud to have been a part of this campaign. Even though I was part of the storytelling behind the scenes, I was moved at every stage of the process by how tough these Australians have it on a daily basis, and how candid they were with us about their stories.\",\"plainText\":\"**— Kat Scott, producer**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NURtiGsn81\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":[],\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'Rural Aid','Through drought, flood and fire, Rural Aid is there.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136452,140208,1,'My Mental Health','2022-05-30 01:34:51','2022-05-30 01:34:51','c0470076-cedb-44f1-b49a-da446e2756b3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Connections to expert support',NULL,NULL,'We collaborated with Brisbane North PHN\'s mental health experts to empower consumers, carers and health practitioners to navigate the mental health sector with clear direction and ease. By understanding the website users on a deeper level, our creatives, strategists and developers delivered a meaningful and effective website.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5pfvkvSNrw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"21979\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-czaT07FwtQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"21999\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'My Mental Health','We collaborated with Brisbane North PHN\'s mental health experts to empower consumers, carers and health practitioners to navigate the mental health sector with clear direction and ease.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136454,140210,1,'Right time, right place','2022-05-30 01:36:15','2022-05-30 01:36:15','293e57f7-0abc-45bb-acea-1b94c72254c8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'So much better than a hospital waiting room',NULL,NULL,'Central Queensland, Wide Bay and Sunshine Coast PHN asked us to refresh its campaign strategy, messaging and creative because people were still going to the emergency department with non-life-threatening sickness or injuries. Our solution was to show the people who live in the region—and holidaymakers—that the emergency department isn\'t the only option.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22010\",\"22012\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22011\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Right time, right place','So much better than a hospital waiting room',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136456,140212,1,'Safe to See your GP','2022-05-30 01:37:10','2022-05-30 01:37:10','14e0da52-7fba-4cec-8b9a-335e4cad20c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'There\'s no reason to put your health on hold',NULL,NULL,'With life beginning to return to normal in Queensland after the height of COVID-19, the Darling Downs and West Moreton  PHN, and Brisbane North PHN wanted to encourage their communities to go back to a normal routine—especially for healthcare.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Lx1YJWY50w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17744\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-emf7fKO95v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Data showed community members were staying at home and not visiting their GP and other health services for regular checkups. \\n\\nTo avoid more serious health and wellbeing problems down the track, the community needed to know it was safe to go back to regular appointments.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bd28dXEaNq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22159\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4a7YEtYm2U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Solution\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We created a fresh campaign called ‘Safe to see your GP’, using friendly animated characters to let people know there is no reason to put their health on hold. \\n\\nThis campaign we developed the campaign strategy, creative, custom illustration, animated video for social media and TV, digital ads, radio ads and landing page.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xsaPgG0g7g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22160\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-S5WWhHCEwb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/440475987\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SJWVzlIztu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We originally developed this campaign for Darling Downs and West Moreton PHN, and Brisbane North PHN requested to run it as well. It\'s a great example of our Primary Health Networks working together to improve the health of all Australians.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MmdBErmbdH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/440475790\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Safe to See your GP','There\'s no reason to put your health on hold',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136458,140214,1,'QMHC','2022-05-30 01:37:38','2022-05-30 01:37:38','a9ec2292-6938-4916-93a6-585b74710677',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Stakeholder engagement',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QkuSHpszbt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47656\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-B6PvNvL5Iy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We gained clear lines of sight into the impressions and needs of their stakeholder audience through 26 guided, in-depth phone interviews. Each interview was between 30 and 45 minutes long, and followed an approved guide to elicit data and insights to key questions. Key stakeholders included representatives of vulnerable groups, including remote communities, LGBTIQ+ stakeholder organisations, and Aboriginal and Torres Strait Islander groups.\\n\\nFrom this data, we developed an insights document and then a strategy to enable the Commission’s 20+ staff to better reach stakeholders with timely, needed communication and engagement opportunities.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F39qRl2lIU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47657\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'QMHC','Stakeholder engagement',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136460,140216,1,'Brisbane North PHN NSPT','2022-05-30 01:38:27','2022-05-30 01:38:27','36bfe1df-b99e-49f7-a75a-12719e9bd106',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'National Suicide Prevention Trial',NULL,NULL,'We were chosen to consult with Brisbane North communities who had been selected for the trial: LGBTIQ communities, Aboriginal and Torres Strait Islander communities, and community organisations working with young to middle-aged men.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yV9Swskqh3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45209\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Bri6BITkLV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The team of Brisbane North PHN is one of the national sites chosen to deliver National Suicide Prevention Trial (NSPT) funding.\\n\\nOur work had two important parts. The first was to engage deeply and sensitively with communities to understand their experiences, successes and reflections during the four years of trial funding and to report on these. The second was to deliver useful materials the service organisations could use to seek further funding and sponsorships as they transitioned from trial funding.\\n\\nTo successfully undertake community engagement, we again partnered with Janine Crawford, a skilled health consultant and Aboriginal and Torres Strait Islander woman. Our work included workshops, face-to-face interviews and a highly successful yarning circle, and these important and sensitive conversations—which included Sad News/Sorry Business—were given the time and space each needed.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2OxHHkid1g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45325\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VcPtAbE6Am\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The finalised report was submitted to NSPT as a qualitative reflection on the remarkable achievements of the trial—including the PHN’s commitment to community-led co-design, and the healing within communities that was begun through the intentionally collaborative process.\\n\\nTo offer creative services that were suited to the context, needs and existing resourcing of the seven service organisations, we offered a menu of items, ranging from fact sheets to marketing consultations. The groups then chose the elements that were of greatest use to them.\\n\\nPart of the unique nature of the Brisbane North PHN NSPT trial was the emphasis on community partnerships and collaboration, and we embodied this in our design approach, too. To enable groups to pitch together or separately for any future suicide prevention funding, we created a single brand style to visually unify any designed material. Each group, then, had its own logo and its own colour palette within that visual style—a brand within a brand. That way, any future funding pitches that relied on our designed material could look as though the groups were unique but still closely aligned.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Brisbane North PHN NSPT','We were chosen to consult with Brisbane North communities who had been selected for the trial: LGBTIQ communities, Aboriginal and Torres Strait Islander communities, and community organisations working with young to middle-aged men.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136462,140218,1,'Tritium','2022-05-30 01:39:39','2022-05-30 01:39:39','a77ca1cf-c156-4b3f-bb85-1b01cf789951',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league. Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GLSN3YDBFD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"73939\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LrG99HVOYN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"61847\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We turned up the voltage on the launch of the new brand with this show-stopping animated brand video.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With an appetite only satisfied by global domination and a powerful vision of energy freedom, Tritium’s journey has only just begun… but they started in the fast lane. We developed a set of foundational branding elements that showcase who Tritium is now and prepares for their exciting future.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZeQWeTuQlo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"73941\",\"73947\",\"73940\",\"73938\",\"73937\",\"73936\",\"73935\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Tritium','Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136464,140220,1,'Medical Mums','2022-05-30 01:40:48','2022-05-30 01:40:48','9c3a3c60-04fe-46e7-a0bf-18f36c38d745',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A long-term approach to behaviour change',NULL,NULL,'For the past six years we have been running behaviour change campaigns to encourage families to vaccinate their children. And in that time, we\'ve seen the positive impact.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ydM19JpsMi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45317\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pqYRaab2Y6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45318\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NUepHwOfhy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"In 2015, market research and immunisation rates across Brisbane North PHN\'s catchment were showing the anti-vax movement was taking hold.\\n\\nWhile parents from lower socio-economic backgrounds were responding to the Australian Government’s ‘no jab, no pay’ rules, those not using daycare—including many from among the wealthier suburbs—were holding their ground.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5st3FTYzr4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45319\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QwUWkeN1w7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We determined from research that parents would respond to their GP’s opinion, and developed a behaviour change campaign to encourage conversations between parents and medical professionals around immunisation and overcome objections to it.\\n\\nWe harnessed the GP/medical voice and added extra credibility by finding medical professionals who were also parents.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MQKB9uw8mS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45323\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PVmUcFRs5l\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Under the heading of Medical Mums, we found two GPs and one Indigenous health nurse to become the faces and voice of the campaign. Each discussed hot topics as well as the benefits of immunisation, drawing on their own beliefs and practices as parents as well as their medical training.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Lt1sEFXPGo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/173565144?h=a059ec04b7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/173565142?h=1a735c3207&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-elDM8mfUVq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"2016\",\"text\":\"Medical Mums was launched during Immunisation Week.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"2017\",\"text\":\"The creative was still fresh and effective for the target group, and we ran the campaign again.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"2018\",\"text\":\"We added Stuart, our honorary Medical Dad.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"2019\",\"text\":\"It was time to mix up the messaging and creative, so we developed a vaccination myth-busting video featuring illustration—a move away from the previous live-action ads.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"2020\",\"text\":\"With COVID-19, there was new vaccination messaging clutter to cut through. We encouraged our market to keep up to date with their routine vaccinations.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"2021\",\"text\":\"Funding was initially approved for five years. But our campaign has been so successful the PHN has been provided with funding for an additional year. We will launch a new iteration in the coming months.\"}}}}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-za95KkkRhY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45322\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9XsuejXAac\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We launched the campaign in Immunisation Week in 2016, and have revised it for relaunch every year since. Results showed immunisation levels increased after the campaign each year, and our has client received extensive positive feedback—including from the Queensland Minister for Health.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Medical Mums','For the past six years we have been running behaviour change campaigns to encourage families to vaccinate their children. And in that time, we\'ve seen the positive impact.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136466,140222,1,'Reasons to Stay','2022-05-30 01:41:22','2022-05-30 01:41:22','30c5e841-a3f0-45da-9dfb-2f18ee068ebb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Conversations save lives',NULL,NULL,'Our agency purpose—to make a meaningful difference to people’s lives—rings no truer than this campaign. Conversations can be lifesaving. The Reasons to Stay campaign drives this message to remind people to reach out and find their reasons to keep living.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Wuk6XROt8C\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19060\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vjXnYnypEU\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Suicide takes around eight Australians from us every day and it needs to stop.\\n\\nBrisbane North PHN commissioned us to join the fight against suicide and produce a powerful digital campaign, speaking to people at risk of suicide and to their friends and family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xEmYfpUPYn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"19064\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"19066\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new3\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"19067\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new4\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"19068\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447109\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hlukn3QtpP\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The concept and campaign name of Reasons to Stay emerged from our conversations with people who have lived experience of suicide—both survivors and families of those who had passed away.\\n\\nThis prevention campaign targeted two specific groups: those at risk of suicide themselves and the friends and family around those at risk.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CYFHnSDjBC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19062\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GgXhbYC3Wx\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Open hearts and minds from beginning to end\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Presenting our creative concepts to these groups enabled us to test and hone visual directions and key messages.\\n\\nWe further refined the work and key members of the focus groups reviewed the results and gave their blessing to the final approach that appears in the campaign videos, digital ads and website.\\n\\nWe also worked with other organisations working across niche groups within our target market to ensure we were inclusive and respectful of their individual efforts in this space.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-trgV3eAZYY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"19081\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UvCFl0uQ9c\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our team was grateful to be involved in this important project.\\n\\nThe PHN’s intention—and ours—is to see this campaign spread far beyond the northern boundaries of Brisbane and make a difference to people’s lives everywhere.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lo0qiknCPj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19061\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'Reasons to Stay','Our agency purpose—to make a meaningful difference to people’s lives—rings no truer than this campaign.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136468,140224,1,'Queensland Academy of Sport','2022-05-30 01:42:16','2022-05-30 01:42:16','9b45ab46-efbb-4cba-942e-c4b1b1b28dca',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'You for 2032 campaign',NULL,NULL,'What New Word Order and the Queensland Academy of Sport (QAS) have in common is a keen eye for talent.\n\nSo when QAS asked us to help identify and develop young Queensland athletes capable of winning medals for Australia at the 2032 Brisbane Olympic and Paralympic Games, we (high) jumped at the chance.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139975\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YLmNoEn3SV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The QAS talent identification campaign is aimed at Queenslander athletes aged between 13 and 23. It’s the first step in a development journey for an aspiring athlete to becoming an elite, Olympic-level athlete ready to compete on the world stage in their own backyard.\\n\\nOur goal was to build awareness of the campaign and drive as many potential athletes as possible to apply.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0D5dQI141H\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139977\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E7bk6zGGNd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We know the talent identification process for an athlete, and all the development that follows, is an inspiring, aspirational and immensely personal journey, and we wanted the campaign’s language to reflect each of those aspects of the journey.\\nVisually, we recognised that the traditional medal colours wouldn’t necessarily display well and could be limiting, so we chose to update them to create a much brighter, target audience-friendly colour palette.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FITIFbeFNO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139976\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fo1rrBFGWB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"After creating the campaign name, tagline and logo, we reinforced the theme with a digital platform and marketing collateral.\\nWe developed an online application platform designed to appeal to young audiences and our visual identity captures images of some of Queensland’s most well-known Olympic gold medallists.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4tbFuQYNR3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139978\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dHzG1lmF6k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The result is an inspiring campaign of aspirational language and engaging images that sell the dream of representing Australia in the 2032 Olympics.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Queensland Academy of Sport','What New Word Order and the Queensland Academy of Sport (QAS) have in common is a keen eye for talent.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136470,140226,1,'What\'s a No. 3?','2022-05-30 01:42:50','2022-05-30 01:42:50','6146a134-d41a-49ce-8cf5-954a0e2b3aaf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a No. 3? Anything that shouldn\'t go down the loo.',NULL,NULL,'The playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way. We set out to capture the attention of kids and adults with an innovative and integrated campaign that featured interactive and creative design, animation, illustration, merchandise and video.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YLmNoEn3SV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Water and waste treatment are essential services and flushing the wrong items down the toilet costs Queensland Urban Utilities $200 million every year.\\n\\nUrban Utilities asked us to think of an original, creative campaign idea that would resonate with Queensland families. Our solution was the No. 3 campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FITIFbeFNO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47723\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lKKKRlcirp\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"So, what\'s a No. 3? It\'s anything that shouldn’t go down the loo. Talking about our toilet habits is never comfortable. To navigate our way around the taboo topic, our creative team used humour to influence the bright, quirky look and feel of the entire campaign.\\n\\nThe playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-97JqWmRp6Z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/325104551\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rwksXdZztM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47725\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-szxmUd2L8D\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Result\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The campaign reached 29,790 people in its first month, and we quickly saw signs of behaviour change. \\n\\nAccording to independent market research, 50% of people will no longer flush wet wipes, 48% of people will no longer flush tampons, 47% will no longer flush condoms and 45% will no longer flush cotton buds as a result of seeing this campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xxFbGAqcFU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47726\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2exJaiRsw5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iQhxL9nSze\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"61829\"],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/635014768?h=d3d29c9d60&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"GAMETOILET_HD_sound.mp4\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"61830\"],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/635015208?h=4079228e62&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"VIDEOAD_2_HD_sound\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new3\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/635025685?h=b22d402bd4&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"QUU Ekka footage\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FFU7esnnDy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47727\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QpOS0cp79X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47734\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'What\'s a No. 3?','We set out to capture the attention of kids and adults with an innovative and integrated campaign that featured interactive and creative design, animation, illustration, merchandise and video.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136474,140230,1,'Domestic and family violence','2022-05-30 01:44:13','2022-05-30 01:44:13','e96988f8-b264-4519-818b-96e04f53e75e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Everyone deserves to feel safe',NULL,NULL,'We developed a powerful campaign—visuals, messaging and animation—to help Queenslanders understand the nature of domestic and family violence and to seek help for themselves or others.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2BMTwZsxt5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16826\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yW5tY9wyAQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"To help slow the spread of COVID-19, Queenslanders are spending more time at home—but home isn’t always a safe place.\\n\\nEveryone deserves to feel safe. Domestic and family violence is never acceptable. Help and support are available.\\n\\nThis is the campaign message the Queensland Government commissioned us to develop as the impact of COVID-19 rippled across our state.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BAdruYcFgJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16838\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CsRNpWzHen\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started the project by researching DFV campaigns in Australia and around the world.\\n\\nOur diverse target market included:\\n\\n1. Adult Queenslanders 18+ who are affected by domestic and family violence\\n\\n- People experiencing domestic and family violence\\n- People who become aware of domestic and family violence occurring\\n\\n2. Young Queenslanders 13-17 years old who may be affected by domestic and family violence in their household.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fOoytqzb18\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16839\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-refpZT5QBU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Messaging\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Rather than describe exactly what DFV might look like, the scripts and campaign advertisements echo the thoughts and feelings of those experiencing or observing DFV.\\n\\nThe copy style is concise, informal and written to an individual. DFV is complex and often hard to identify. We unpacked the different dimensions of DFV and always pointed the reader or viewer to help and support.\\n\\nOur messages were targeted to a diverse Queensland audience. We aimed to capture the human experience and emotions of DFV through the voice and style of the copy.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7Bn5w0QSW7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16840\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JtCJdSgzXY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our creative team completed an environmental scan to develop three design concepts with strategic choices in colours, symbols, typography and iconography.\\n\\nThe icons are simple and symbolic. We were careful to avoid using the human figure or gender-specific shapes to symbolise violent or threatening behaviours.\\n\\nInstead, our goal was to capture the far-reaching effect of domestic violence in the home and family through clean and minimal iconography, colours and shapes.\\n\\nWe used brand colours strategically, ensuring they were striking but not aggressive or alarming. Wherever possible, we avoided dark colours and shadows.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NnJbovUwRk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/572805319?h=8a36b70d04&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/572805011?h=d90ee17ccd&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vsjyJmaOWT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Animation\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"When directing the animation style, we wanted to convey the key messages of the campaign clearly and quickly. The morphing animation style is eye-catching and interesting.\\n\\nThe morphing shapes also efficiently unpack important messages to the viewer, complementing and supporting the messages in the video voiceover.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-asjEpeVorj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/572804196\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0Latj6rdpS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Phase 2\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"After the success of our 2020 launch, we rolled out a new iteration in 2021 that focused more on the non-physical forms of domestic and family violence.\\n\\nThis includes behaviour around controlling or monitoring finances, technology and social interactions.\\n\\nOur goal: to raise awareness and understanding of these forms of abuse, and communicate the seriousness of these behaviours.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aCf57wrIYs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/430227569\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Qes33flGQL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Work of this kind speaks straight to our purpose as an agency: to make a meaningful impact to people’s lives. Our team is proud to have been involved supporting families in our local community.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Domestic and family violence','We developed a powerful campaign—visuals, messaging and animation—to help Queenslanders understand the nature of domestic and family violence and to seek help for themselves or others.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136476,140232,1,'Revelian','2022-05-30 01:45:01','2022-05-30 01:45:01','d83f2950-69f2-483e-81bc-08874929f505',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The big reveal',NULL,NULL,'Revelian is a charismatic player in the field of business talent identification and assessment. We told Revelian’s story by rolling out a suite of new brand tools and using a powerful visual metaphor for the outcomes their customers gain.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wVL1kj40Jr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47639\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3ldwVmO5X2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"A beautiful partnership\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our goal was to position and powerfully differentiate this business from its competitors. The branding achieves this and binds Revelian’s internal team more closely to its purpose and business objectives. In doing so, it ensures current and prospective customers and partners can access, understand—and most importantly—prefer Revelian and its offering.\\n\\nOverall, our rollout for Revelian was staged and achievable, allowing the client to adjust and update their brand over time. This approach remains cost-effective for our client and has allowed us to work with them closely with key stakeholders to ensure we are meeting their needs and creating value for their investment.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-88fP2RTozJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47641\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-l0m2MRWrk9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"A new brand story to tell\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The Revelian brand story centres around the stories of their prospective customers—those who require business talent identification and assessment. Revelian’s narrative guides these customers along a compelling journey. It reads like any good treasure hunt should: the hunter driven by the thrill of next step and the genuine promise of quality and authenticity.\\n\\nThe intrigue and complexity of human behaviour is a fascinating topic that most of us explore throughout our daily life and work. Revelian uncovers the hidden, delves inside and goes beneath the surface to reveal the truth inside people, for businesses and organisations wanting to hire people well, and utilise them well.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3wNj8vd0Xj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/317380021?h=7cf79dbb3e&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-zVMqQZyrh0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"A refreshing approach\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As we refreshed their brand, we wrapped every element in the concept of ‘reveal’. The idea flows consistently throughout every aspect of the Revelian brand: we’ll start on the surface and delve deeper into the intrigue of human behaviour and insights for hiring and people management solutions.\\n\\nWhile the logo remains simple, strong and typographic, the visual elements have starring roles. Using filters, colours, photography and myriad gorgeous design treatments, they show and tell how the company reveals its precious insights.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WxJNoxzJXO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47642\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UCB7SM9ORH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strong, productive relationships\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our successful working relationship with the client has been key to forming the initial strategy for their brand development, website, collateral and exhibition development.\\n\\nOur team of creatives, developers and content specialists have enjoyed walking through this journey with Revelian.\\n\\nThe insights we’ve gained from this partnership have allowed us to produce work that performs to a very high standard within the agreed-upon scope, budget and timeframe.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kBhhzN53nM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47643\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FzPUJWQp19\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"A new front door\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"After refreshing their brand, we began redeveloping the Revelian website. To start with, we created a content strategy based on customer journeys and key messages. \\n\\nOur team of content specialists worked with the client to edit and review web copy for pages on the website. \\n\\nWith copy and wireframes ready and approved for development, our digital team applied the refreshed branding across the website.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Revelian','We told Revelian’s story by rolling out a suite of new brand tools and using a powerful visual metaphor for the outcomes their customers gain.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136477,140233,1,'Chevron','2022-05-31 04:26:01','2022-05-31 04:26:01','7363f3fd-3685-4dd3-97ed-f5bf907c3685',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed as Chevron\'s go-to Australian agency as they reignited their Australian operations. We\'re helping them reach their business goals, relaunch their Puma retail network under the Caltex brand, and grow their market share in the lubricants B2B market.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gvKwuoJR7j\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547129?h=68b08b3b6f&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian lubricants division.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z59xrAwLVU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We conducted a competitor analysis to assess competitor brand messaging and positioning, interviews with key Chevron distributors in the B2B market and one-on-one interviews with the general customers.\\nOur insights indicated a need for authentic, ‘real life’ marketing collateral with which the audience can connect. We also gleaned that the messaging needed to be kept simple.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-f5LPArKwgF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689548339?h=5797d76cc7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP9dMqkL3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We made the creative decision to let the products take a backseat and instead shine a light on the customers’ businesses and their distributor relationships.\\nWe worked with a videographer to give the videos a warm and, at times, heartfelt tone. The customers in question are mostly generations-old businesses with a story to tell. So we told some stories.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gLOsbQtiKq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547741?h=7529fef734&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ahQwPi3ZPn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result was 60 video variations in a style you wouldn’t necessarily associate with marketing around fuel and lubricant products—something a little surprising, something that stands out from the crowd.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5dbIBMfjBJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“Our customers are the centre of everything we do, so we’re really proud to have created something that’s authentic to their experiences—their relationships with the distributors, their family values and the inter-generational ties in each of their businesses.\",\"plainText\":\"“We challenged New Word Order with a complex brief of showcasing the product, telling a compelling story about the customer and distributor relationship, and delivering the message that the products customers know and love are back for good. <br> \\n“New Word Order perfectly captured all of those elements in a cohesive video series that authentically connects with the audience.” <br> \\n\\n** — Cris Gillespie, Head of Marketing at Chevron **\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign','Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136479,140235,1,'Burnie Brae','2022-05-31 06:08:14','2022-05-31 06:08:14','71b1ff9c-3994-4e27-a9ce-13c21b476828',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand that empowers rich lives',NULL,NULL,'What’s a Burnie Brae? That’s the question we needed to answer to help the community organisation create some clarity around their brand as they undertook an exciting brand and website refresh project.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZaXkCuEhzq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140080\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked closely with Burnie Brae to understand their issues and what makes them tick. There was a concern Burnie Brae was lacking meaning, awareness and connection for much of the public they serve, alongside a recognition that the brand was simply a bit ‘tired’ and neglected. \\nAs a branding and strategy specialist, we created a process to uncover some of the truths behind the brand to set the groundwork. Our team conducted a series of research and workshops before embarking on brand direction and narrative development projects.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140065\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With the foundations set, our creative team embarked on refreshing Burnie Brae’s visual identity. The creative concept painted a picture of community connection and explored a distinctive direction for the Burnie Brae brand. We adapted the existing logo and brand colours to build a fresh and recognisable feel.\\nWe redesigned and built a new website, improving the information navigation and creating better user journeys.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140069\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140066\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result has seen Burnie Brae take ownership of a revitalised brand identity that has stronger connections to their stakeholders. The stunning new website is simple to use and takes users on a compelling journey through Burnie Brae’s community service offerings.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136481,140237,1,'Burnie Brae','2022-05-31 06:21:51','2022-05-31 06:21:51','705962d1-f7b7-4ef9-9338-f242d8e9221e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand that empowers rich lives',NULL,NULL,'What’s a Burnie Brae? That’s the question we needed to answer to help the community organisation create some clarity around their brand as they undertook an exciting brand and website refresh project.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZaXkCuEhzq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140080\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked closely with Burnie Brae to understand their issues and what makes them tick. There was a concern Burnie Brae was lacking meaning, awareness and connection for much of the public they serve, alongside a recognition that the brand was simply a bit ‘tired’ and neglected. \\nAs a branding and strategy specialist, we created a process to uncover some of the truths behind the brand to set the groundwork. Our team conducted a series of research and workshops before embarking on brand direction and narrative development projects.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140065\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With the foundations set, our creative team embarked on refreshing Burnie Brae’s visual identity. The creative concept painted a picture of community connection and explored a distinctive direction for the Burnie Brae brand. We adapted the existing logo and brand colours to build a fresh and recognisable feel.\\nWe redesigned and built a new website, improving the information navigation and creating better user journeys.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140069\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140066\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result has seen Burnie Brae take ownership of a revitalised brand identity that has stronger connections to their stakeholders. The stunning new website is simple to use and takes users on a compelling journey through Burnie Brae’s community service offerings.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136489,140245,1,'Burnie Brae','2022-06-02 03:48:39','2022-06-02 03:48:39','863839a7-08b0-4acf-81e6-878dbb53df7a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand that empowers rich lives',NULL,NULL,'What’s a Burnie Brae? That’s the question we needed to answer to help the community organisation create some clarity around their brand as they undertook an exciting brand and website refresh project.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZaXkCuEhzq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140080\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked closely with Burnie Brae to understand their issues and what makes them tick. There was a concern Burnie Brae was lacking meaning, awareness and connection for much of the public they serve, alongside a recognition that the brand was simply a bit ‘tired’ and neglected. \\nAs a branding and strategy specialist, we created a process to uncover some of the truths behind the brand to set the groundwork. Our team conducted a series of research and workshops before embarking on brand direction and narrative development projects.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140065\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With the foundations set, our creative team embarked on refreshing Burnie Brae’s visual identity. The creative concept painted a picture of community connection and explored a distinctive direction for the Burnie Brae brand. We adapted the existing logo and brand colours to build a fresh and recognisable feel.\\nWe redesigned and built a new website, improving the information navigation and creating better user journeys.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140069\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140066\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result has seen Burnie Brae take ownership of a revitalised brand identity that has stronger connections to their stakeholders. The stunning new website is simple to use and takes users on a compelling journey through Burnie Brae’s community service offerings.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136490,140246,1,'Careers','2022-06-05 23:23:59','2022-10-21 04:18:21','7cf9d5cf-5344-4881-a954-b6cee894d173',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NyO0Ik0kgl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Careers\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We are a Brisbane-based agency renowned for our evidence-based, strategic approach to truly wonderful creative work. We are strongly purpose-driven—wholeheartedly committed to making a meaningful difference in the lives of our clients, their customers and the community at large. Our work is rewarding.\\n\\nThe best part of what we do is doing it together. There’s nothing quite like a room full of inspired, inspiring people united by purpose and passion—and we’re thrilled at the idea of you being a part of that.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Careers\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-77zVW8tmJT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Copy Director\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Due to growth, NWO is seeking to appoint a Copy Director. Simply put, the core purpose of your role will be to protect the brand reputation that NWO holds for exceptional strategy and writing. This will be done by undertaking stakeholder engagement, co-developing brand strategies, leading and mentoring your team of writers, a focus on quality assurance of all NWO copy, as well as through your direct engagement with clients. \\n\\nReporting to, and working closely with the CEO, this newly created leadership position will have full custody of the copy team. Leading a team of two plus freelancers, you will have the autonomy to create the team structure, systems, processes and frameworks you feel the team needs to thrive by defining and setting NWO copy standards and developing approaches for all types of NWO writing projects.\\n\\nTo be successful in this role you will have a background in print or online journalism and experience in managing or driving brands. You will have experience as an editor You will have a deep appreciation for brand and campaign management underpinned by quality content across all writing forms, from content design and video through to publications and speechwriting. \\n\\nYour curious nature will see you getting to the heart of people and stories, while your drive and inclusive leadership skills will see you leading your team toward best-in-class performance.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Apply now\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"#applicationForm\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}}},\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GqLHJAoMsp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The Benefits\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This is a rare opportunity to join a fast-growing and supportive agency in a very exciting phase of its evolution. A competitive salary will be negotiated.\\nEveryone at NWO enjoys fantastic benefits – from flexibility to bonuses, professional development and a comprehensive wellbeing program.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Flexibility and additional leave**\\n\\n- Hybrid working environment with genuine flexibility work from home and our office at Greenslopes\\n- One day per semester of paid study leave\\n- Early, late and split day options\\n- Extra day of leave for an extra happy birthday\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Bonus benefits**\\n\\n- $650 a year via AirWallex to spend on you, however you choose ($50 a month–extra $50 in your birthday month)\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new5\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Professional development**\\n\\n- Work with top executives in wide-ranging sectors\\n- Gain deep expertise across all creative fields\\n- Flexible teams means you’ll work on every account\\n- Paid professional membership of your choice\\n- Annual $1000 professional development budget\\n- Learning and development plan for every employee\\n- Study leave for post-graduate study\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new6\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Wellbeing**\\n\\n- Weekly or fortnightly 1-1 with direct manager\\n- Quarterly goal-setting and performance review\\n- Free access to Employee Assistance Program\\n- Intentional Wellbeing at Work program, including massage and yoga\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new7\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Happy Friyay (and every other day)**\\n\\n- Weekly team lunches and drinks\\n- Quarterly team nights out\\n- EOFY and Christmas staff parties\\n- Mid-year and end-of-year all-team days to rest, reflect and plan\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LhE8ewXDdj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\'s next?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"If this role sounds perfect for you, fill in the apply form below, and attach your cover letter and a link to your website or portfolio. \\n\\nWe’re looking forward to saying hello!\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BtRUbwXzyb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-s0nVisNYi6\",\"content\":{\"fields\":{\"spacer\":\"pt-8 md:pt-16 bg-black\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fz4qdj0CRS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<div id=\\\"applicationForm\\\">\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: \\\"na1\\\",\\n    portalId: \\\"8394441\\\",\\n    formId: \\\"54bb36ff-8ada-4b4f-b1f9-73d1c7fc42c6\\\"\\n  });\\n</script>\\n</div>\",\"backgroundColour\":\"bg-black\",\"sectionTitle\":\"Application forms\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Careers at New Word Order','We are a Brisbane-based agency renowned for our evidence-based, strategic approach to truly wonderful creative work','careers design copy digital','New Word Order',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136491,140247,1,'Careers','2022-06-05 23:23:59','2022-06-05 23:23:59','260a86df-f25b-48e7-af45-d7b672c4381f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136492,140248,1,'Careers','2022-06-05 23:24:01','2022-06-05 23:24:01','20236e77-b497-4807-8974-2f33ab06c519',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136493,140249,1,'Careers','2022-06-05 23:24:03','2022-06-05 23:24:03','e67eed50-13e7-4a6a-949c-aed0ad76472b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136494,140250,1,'Careers','2022-06-05 23:24:04','2022-06-05 23:24:04','7f389d3c-749a-40c8-a1db-1e671f64c218',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136496,140252,1,'Careers','2022-06-05 23:35:20','2022-06-05 23:35:20','26627efe-2020-46f7-a376-5511de2eceff',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NyO0Ik0kgl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Careers\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Subheading\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Nullam id dolor id nibh ultricies vehicula ut id elit. Curabitur blandit tempus porttitor. Donec id elit non mi porta gravida at eget metus. Cras justo odio, dapibus ac facilisis in, egestas eget quam.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Careers\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GoUEZyUfSg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-rG4w99hwoM\",\"content\":{\"fields\":{\"accordionContent\":{\"new1\":{\"type\":\"accordionBlock\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"accordionTitle\":\"Front end developer\",\"accordionText\":\"Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Nulla vitae elit libero, a pharetra augue.\\n\\nMaecenas faucibus mollis interdum. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Cras mattis consectetur purus sit amet fermentum. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\",\"buttonText\":\"Apply now\",\"buttonUrl\":\"#applicationForm\"}},\"new2\":{\"type\":\"accordionBlock\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"accordionTitle\":\"Senior designer\",\"accordionText\":\"Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Nulla vitae elit libero, a pharetra augue.\\n\\nMaecenas faucibus mollis interdum. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Cras mattis consectetur purus sit amet fermentum. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\",\"buttonText\":\"Apply now\",\"buttonUrl\":\"#applicationForm\"}}},\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BtRUbwXzyb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-s0nVisNYi6\",\"content\":{\"fields\":{\"spacer\":\"pt-8 md:pt-16 bg-black\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fz4qdj0CRS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<div id=\\\"applicationForm\\\">\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: \\\"na1\\\",\\n    portalId: \\\"8394441\\\",\\n    formId: \\\"54bb36ff-8ada-4b4f-b1f9-73d1c7fc42c6\\\"\\n  });\\n</script>\\n</div>\",\"backgroundColour\":\"bg-black\",\"sectionTitle\":\"Application forms\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136498,140254,1,'Careers','2022-06-05 23:35:51','2022-06-05 23:35:51','720bdc1b-f8c0-42b0-977e-751a913b5de6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NyO0Ik0kgl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Careers\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Subheading\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Nullam id dolor id nibh ultricies vehicula ut id elit. Curabitur blandit tempus porttitor. Donec id elit non mi porta gravida at eget metus. Cras justo odio, dapibus ac facilisis in, egestas eget quam.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Careers\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GoUEZyUfSg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-rG4w99hwoM\",\"content\":{\"fields\":{\"accordionContent\":{\"new1\":{\"type\":\"accordionBlock\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"accordionTitle\":\"Front end developer\",\"accordionText\":\"Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Nulla vitae elit libero, a pharetra augue.\\n\\nMaecenas faucibus mollis interdum. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Cras mattis consectetur purus sit amet fermentum. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\",\"buttonText\":\"Apply now\",\"buttonUrl\":\"#applicationForm\"}},\"new2\":{\"type\":\"accordionBlock\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"accordionTitle\":\"Senior designer\",\"accordionText\":\"Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Nulla vitae elit libero, a pharetra augue.\\n\\nMaecenas faucibus mollis interdum. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Cras mattis consectetur purus sit amet fermentum. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\",\"buttonText\":\"Apply now\",\"buttonUrl\":\"#applicationForm\"}}},\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BtRUbwXzyb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-s0nVisNYi6\",\"content\":{\"fields\":{\"spacer\":\"pt-8 md:pt-16 bg-black\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fz4qdj0CRS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<div id=\\\"applicationForm\\\">\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: \\\"na1\\\",\\n    portalId: \\\"8394441\\\",\\n    formId: \\\"54bb36ff-8ada-4b4f-b1f9-73d1c7fc42c6\\\"\\n  });\\n</script>\\n</div>\",\"backgroundColour\":\"bg-black\",\"sectionTitle\":\"Application forms\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136671,140427,1,'Chevron','2022-06-12 23:56:38','2022-06-12 23:56:38','bbc15c63-d11f-42a0-af26-798bee78a91d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed as Chevron Downstream\'s go-to Australian agency as they reignited their Australian operations. We\'re helping them reach their business goals, relaunch their Puma retail network under the Caltex brand, and grow their market share in the lubricants B2B market.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gvKwuoJR7j\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547129?h=68b08b3b6f&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Downstream Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian B2B fuels and lubricants division.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z59xrAwLVU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We conducted a competitor analysis to assess competitor brand messaging and positioning, interviews with key Caltex fuels and lubricants distributors in the B2B market, and one-on-one interviews with the general customers.\\nOur insights indicated a need for authentic, ‘real life’ marketing collateral with which the audience can connect. We also gleaned that the messaging needed to be kept simple.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-f5LPArKwgF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689548339?h=5797d76cc7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP9dMqkL3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We made the creative decision to let the products take a backseat and instead shine a light on the customers’ businesses and their distributor relationships.\\nWe worked with a videographer to give the videos a warm and, at times, heartfelt tone. The customers in question are mostly generations-old businesses with a story to tell. So we told some stories.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gLOsbQtiKq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547741?h=7529fef734&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ahQwPi3ZPn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result was 60 video variations in a style you wouldn’t necessarily associate with marketing around fuel and lubricant products—something a little surprising, something that stands out from the crowd.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5dbIBMfjBJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“Our customers are the centre of everything we do, so we’re really proud to have created something that’s authentic to their experiences—their relationships with the distributors, their family values and the inter-generational ties in each of their businesses.\",\"plainText\":\"“We challenged New Word Order with a complex brief of showcasing the product, telling a compelling story about the customer and distributor relationship, and delivering the message that the products customers know and love are back for good. <br> \\n“New Word Order perfectly captured all of those elements in a cohesive video series that authentically connects with the audience.” <br> \\n\\n** — Cris Gillespie, Head of Marketing at Chevron **\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign','Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136672,140428,1,'About us','2022-06-14 01:21:10','2022-06-14 03:32:37','54ff5b29-5262-4c3f-87df-ef7727ce49c8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17881\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\",\"17921\",\"97259\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | About us','For 20 years we have helped businesses, organisations and governments to solve problems, unlock potential and connect with people to inspire action.','strategy, brand, campaign, behaviour change, engagement, digital, video, content',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136757,140513,1,NULL,'2022-06-16 23:07:06','2022-08-08 23:41:43','4e38a9f0-5d5d-4877-80cd-e8cb06017d68',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'green',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(136760,140516,1,'Chevron','2022-06-19 22:46:14','2022-06-19 22:46:14','6862f0c8-978c-4c7b-8f08-5be6dfa20608',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed to the roster of agencies for Chevron Downstream Australia as they reignited their Australian operations. We\'re helping them reconnect with their customers, relaunch their Puma retail network under the Caltex brand, and grow their market share in the lubricants B2B market.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gvKwuoJR7j\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547129?h=68b08b3b6f&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Downstream Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian B2B fuels and lubricants division.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z59xrAwLVU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We conducted a competitor analysis to assess competitor brand messaging and positioning, interviews with key Caltex fuels and lubricants distributors in the B2B market, and one-on-one interviews with the general customers.\\nOur insights indicated a need for authentic, ‘real life’ marketing collateral with which the audience can connect. We also gleaned that the messaging needed to be kept simple.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-f5LPArKwgF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689548339?h=5797d76cc7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP9dMqkL3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We made the creative decision to let the products take a backseat and instead shine a light on the customers’ businesses and their distributor relationships.\\nWe worked with a videographer to give the videos a warm and, at times, heartfelt tone. The customers in question are mostly generations-old businesses with a story to tell. So we told some stories.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gLOsbQtiKq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547741?h=7529fef734&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ahQwPi3ZPn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result was 60 video variations in a style you wouldn’t necessarily associate with marketing around fuel and lubricant products—something a little surprising, something that stands out from the crowd.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5dbIBMfjBJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“Our customers are the centre of everything we do, so we’re really proud to have created something that’s authentic to their experiences—their relationships with the distributors, their family values and the inter-generational ties in each of their businesses.\",\"plainText\":\"“We challenged New Word Order with a complex brief of showcasing the product, telling a compelling story about the customer and distributor relationship, and delivering the message that the products customers know and love are back for good. <br> \\n“New Word Order perfectly captured all of those elements in a cohesive video series that authentically connects with the audience.” <br> \\n\\n** — Cris Gillespie, Head of Marketing at Chevron **\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign','Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137031,140787,1,'Tim IMG 1576 EDIT 1280x1280px','2022-06-23 00:35:52','2022-06-23 00:35:52','92ce290a-55e6-491d-9090-0ede8ebd47d0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":[],\"originalImageWidth\":0,\"originalImageHeight\":0,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":0,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137296,141052,1,'All income','2022-06-23 04:12:37','2022-09-14 23:00:11','b853cf0d-9845-470a-801a-ee5019c89894',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":[],\"originalImageWidth\":0,\"originalImageHeight\":0,\"placeholder\":null,\"placeholderSvg\":null,\"colorPalette\":[],\"lightness\":0,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137471,141227,1,'All Income June','2022-06-23 06:15:18','2022-06-23 06:15:18','20711cac-31a8-457b-9835-0f80ad584486',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":[],\"originalImageWidth\":0,\"originalImageHeight\":0,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":0,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137556,141312,1,'Jul 2015','2022-06-23 06:46:21','2022-09-14 23:00:45','43c9799d-8e6e-44c2-8ca8-385e3a1fdb20',NULL,NULL,NULL,NULL,'30641.89','28477.08',NULL,'150200',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'119558.11','93021.03',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137557,141313,1,'Jul 2015','2022-06-23 06:46:21','2022-06-23 06:46:21','94749f31-f8e3-4020-add9-f8caa971ba50',NULL,NULL,NULL,NULL,'30641.89','28477.08',NULL,'150200',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'119558.11','93021.03',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137558,141314,1,'Aug 2015','2022-06-23 06:46:23','2022-09-14 23:00:46','4e5a03f2-f84f-42f4-94ca-82adb787a50f',NULL,NULL,NULL,NULL,'35886.24','29423.7',NULL,'78000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'42113.76','14630.06',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137559,141315,1,'Aug 2015','2022-06-23 06:46:23','2022-06-23 06:46:23','6da7e6f7-9dc5-47f8-8d01-2328064b33a4',NULL,NULL,NULL,NULL,'35886.24','29423.7',NULL,'78000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'42113.76','14630.06',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137560,141316,1,'Sep 2015','2022-06-23 06:46:25','2022-09-14 23:00:47','9291c91c-67b4-4b31-87f0-570bd2fc87a9',NULL,NULL,NULL,NULL,'36038.35','34637.18',NULL,'82000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'45961.65','14234.47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137561,141317,1,'Sep 2015','2022-06-23 06:46:25','2022-06-23 06:46:25','350ca56e-859a-40d3-b61e-167c5e7f6c69',NULL,NULL,NULL,NULL,'36038.35','34637.18',NULL,'82000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'45961.65','14234.47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137562,141318,1,'Oct 2015','2022-06-23 06:46:27','2022-09-14 23:00:48','c4c423e0-7d57-46e0-894f-22d1add8fcb6',NULL,NULL,NULL,NULL,'35224.67','30155.49',NULL,'152000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'116775.33','88559.84',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137563,141319,1,'Oct 2015','2022-06-23 06:46:27','2022-06-23 06:46:27','c2993456-d2d2-47fd-9836-9e1be5ff7d29',NULL,NULL,NULL,NULL,'35224.67','30155.49',NULL,'152000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'116775.33','88559.84',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137564,141320,1,'Nov 2015','2022-06-23 06:46:29','2022-09-14 23:00:49','cdcf5343-83c4-467f-8c1c-1dab2d04c458',NULL,NULL,NULL,NULL,'11985.41','31871.12',NULL,'68000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'56014.59','26483.47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137565,141321,1,'Nov 2015','2022-06-23 06:46:29','2022-06-23 06:46:29','a5f53978-3918-42a7-91a7-19f4765a550f',NULL,NULL,NULL,NULL,'11985.41','31871.12',NULL,'68000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'56014.59','26483.47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137566,141322,1,'Dec 2015','2022-06-23 06:46:30','2022-09-14 23:00:50','15226d49-13c3-46b6-aa4b-ab9076d67c07',NULL,NULL,NULL,NULL,'24924.5','35303.18',NULL,'130000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'105075.5','71312.32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137567,141323,1,'Dec 2015','2022-06-23 06:46:30','2022-06-23 06:46:30','d1d7cadc-c75f-43a6-88c9-5de487506442',NULL,NULL,NULL,NULL,'24924.5','35303.18',NULL,'130000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'105075.5','71312.32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137568,141324,1,'Jan 2016','2022-06-23 06:46:32','2022-09-14 23:00:51','76ba9b5a-5bff-4f76-b251-2fc59370c708',NULL,NULL,NULL,NULL,'19979.44','40921.01',NULL,'114000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'94020.56','55039.55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137569,141325,1,'Jan 2016','2022-06-23 06:46:32','2022-06-23 06:46:32','d5e43003-36fd-455e-aae8-cc8d63f389f3',NULL,NULL,NULL,NULL,'19979.44','40921.01',NULL,'114000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'94020.56','55039.55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137570,141326,1,'Feb 2016','2022-06-23 06:46:33','2022-09-14 23:00:52','82c79d48-ba59-4ef7-b470-e44acbcfd801',NULL,NULL,NULL,NULL,'13536.13','30758.24',NULL,'109000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'95463.87','65725.63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137571,141327,1,'Feb 2016','2022-06-23 06:46:33','2022-06-23 06:46:33','c660bb2e-99c7-4a6d-a6ac-bdb76d14c712',NULL,NULL,NULL,NULL,'13536.13','30758.24',NULL,'109000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'95463.87','65725.63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137572,141328,1,'Mar 2016','2022-06-23 06:46:35','2022-09-14 23:00:53','0decd1d8-eefa-420f-82db-55fd39b99979',NULL,NULL,NULL,NULL,'3737.25','36608.25',NULL,'60000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'56262.75','23567.23',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137573,141329,1,'Mar 2016','2022-06-23 06:46:35','2022-06-23 06:46:35','8e865e5d-5815-4497-bbb7-75a938adbdb7',NULL,NULL,NULL,NULL,'3737.25','36608.25',NULL,'60000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'56262.75','23567.23',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137574,141330,1,'Apr 2016','2022-06-23 06:46:37','2022-09-14 23:00:54','c0724f86-5aaf-4e62-8513-6e5217961b70',NULL,NULL,NULL,NULL,'103905.3','35246.79',NULL,'103000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'-905.3','-34192.09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137575,141331,1,'Apr 2016','2022-06-23 06:46:37','2022-06-23 06:46:37','b44432c0-a559-4c40-b18c-1a31c1334e43',NULL,NULL,NULL,NULL,'103905.3','35246.79',NULL,'103000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'-905.3','-34192.09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137576,141332,1,'May 2016','2022-06-23 06:46:39','2022-09-14 23:00:55','34d1deb4-3bf6-4b48-8f34-268a53d07d44',NULL,NULL,NULL,NULL,'7786.2','32770.75',NULL,'180000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'172213.8','143042.05',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137577,141333,1,'May 2016','2022-06-23 06:46:39','2022-06-23 06:46:39','2952c531-fa93-47d5-ab05-1f5a88f9ef12',NULL,NULL,NULL,NULL,'7786.2','32770.75',NULL,'180000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'172213.8','143042.05',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137578,141334,1,'Jun 2016','2022-06-23 06:46:41','2022-09-14 23:00:56','64e44224-de4a-430b-81fc-9cf0dba66fd8',NULL,NULL,NULL,NULL,'91761.92','492036.64',NULL,'22054',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'-69707.92','-561423.56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137579,141335,1,'Jun 2016','2022-06-23 06:46:41','2022-06-23 06:46:41','b6913f12-60de-48cd-984a-18a573236b8d',NULL,NULL,NULL,NULL,'91761.92','492036.64',NULL,'22054',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'-69707.92','-561423.56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137580,141336,1,'Jul 2016','2022-06-23 06:46:43','2022-09-14 23:00:57','0b6108f5-7722-4095-b9ac-9ad64836fb9b',NULL,NULL,NULL,NULL,'20106.58','37555.65',NULL,'222000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'201893.42','165317.77',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137581,141337,1,'Jul 2016','2022-06-23 06:46:43','2022-06-23 06:46:43','848af27a-e4e8-4d00-b349-2523f1c581be',NULL,NULL,NULL,NULL,'20106.58','37555.65',NULL,'222000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'201893.42','165317.77',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137582,141338,1,'Aug 2016','2022-06-23 06:46:45','2022-09-14 23:00:58','1700e39d-ad0a-45f7-84a3-4bf9268eb41f',NULL,NULL,NULL,NULL,'10553.49','35741.26',NULL,'94000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'83446.51','51625.25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137583,141339,1,'Aug 2016','2022-06-23 06:46:45','2022-06-23 06:46:45','00f5e5dd-7a3f-461b-b41e-ea1f24d0c7d5',NULL,NULL,NULL,NULL,'10553.49','35741.26',NULL,'94000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'83446.51','51625.25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137584,141340,1,'Sep 2016','2022-06-23 06:46:46','2022-09-14 23:00:59','6e2e6089-c271-40aa-ae1c-9cb92fb97bc0',NULL,NULL,NULL,NULL,'29110.49','48752.68',NULL,'117000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'87889.51','41096.83',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137585,141341,1,'Sep 2016','2022-06-23 06:46:46','2022-06-23 06:46:46','c411e52e-b8ac-4ddf-91ed-8b17725ae100',NULL,NULL,NULL,NULL,'29110.49','48752.68',NULL,'117000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'87889.51','41096.83',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137586,141342,1,'Oct 2016','2022-06-23 06:46:48','2022-09-14 23:01:00','419503ea-d660-410b-ac86-962a1750b87a',NULL,NULL,NULL,NULL,'60335.35','33946.87',NULL,'96000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'35664.65','3687.78',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137587,141343,1,'Oct 2016','2022-06-23 06:46:48','2022-06-23 06:46:48','394ae5c5-4ca6-4556-9b72-f589043c9006',NULL,NULL,NULL,NULL,'60335.35','33946.87',NULL,'96000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'35664.65','3687.78',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137588,141344,1,'Nov 2016','2022-06-23 06:46:49','2022-09-14 23:01:01','8b004145-b3d4-409d-b4be-277b513201f4',NULL,NULL,NULL,NULL,'14708.97','34463.56',NULL,'131000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'116291.03','83807.47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137589,141345,1,'Nov 2016','2022-06-23 06:46:49','2022-06-23 06:46:49','e8e39e81-0c8c-4bc2-ae3e-473ac44bfd34',NULL,NULL,NULL,NULL,'14708.97','34463.56',NULL,'131000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'116291.03','83807.47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137590,141346,1,'Dec 2016','2022-06-23 06:46:50','2022-09-14 23:01:02','0f700355-c893-4db2-8cf6-b28d110687f9',NULL,NULL,NULL,NULL,'18062.5','43980.87',NULL,'196000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'177937.5','135936.63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137591,141347,1,'Dec 2016','2022-06-23 06:46:50','2022-06-23 06:46:50','cfe71b58-6228-42d1-b700-c85e68e9cd0b',NULL,NULL,NULL,NULL,'18062.5','43980.87',NULL,'196000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'177937.5','135936.63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137592,141348,1,'Jan 2017','2022-06-23 06:46:52','2022-09-14 23:01:03','d26d258f-a350-4be0-a703-8b111118d840',NULL,NULL,NULL,NULL,'12643.06','34494.35',NULL,'50000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'37356.94','5832.59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137593,141349,1,'Jan 2017','2022-06-23 06:46:52','2022-06-23 06:46:52','9764b3ad-2826-4e33-96f8-f1ef26a97161',NULL,NULL,NULL,NULL,'12643.06','34494.35',NULL,'50000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'37356.94','5832.59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137594,141350,1,'Feb 2017','2022-06-23 06:46:54','2022-09-14 23:01:03','640aa8ff-6644-493e-ae22-8eb5a56ec390',NULL,NULL,NULL,NULL,'16715.3','39918.92',NULL,'72000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'55284.7','16359.28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137595,141351,1,'Feb 2017','2022-06-23 06:46:54','2022-06-23 06:46:54','fd0b2f40-4b1e-402c-bd69-bbd243495bf3',NULL,NULL,NULL,NULL,'16715.3','39918.92',NULL,'72000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'55284.7','16359.28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137596,141352,1,'Mar 2017','2022-06-23 06:46:56','2022-09-14 23:01:04','e8cf4b04-2004-46e0-ade3-a5d6804814f1',NULL,NULL,NULL,NULL,'23188.6','51549.85',NULL,'106000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'82811.4','34244.18',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137597,141353,1,'Mar 2017','2022-06-23 06:46:56','2022-06-23 06:46:56','b79668d8-1332-43b0-9568-3a27102e6da5',NULL,NULL,NULL,NULL,'23188.6','51549.85',NULL,'106000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'82811.4','34244.18',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137598,141354,1,'Apr 2017','2022-06-23 06:46:57','2022-09-14 23:01:06','099498d3-aa2d-4fbd-8f9c-06fdba0cecd9',NULL,NULL,NULL,NULL,'55369.55','66391.21',NULL,'142000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'86630.45','21242.52',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137599,141355,1,'Apr 2017','2022-06-23 06:46:57','2022-06-23 06:46:57','321fbd55-9b65-4580-8e37-c75e5151a4fa',NULL,NULL,NULL,NULL,'55369.55','66391.21',NULL,'142000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'86630.45','21242.52',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137600,141356,1,'May 2017','2022-06-23 06:46:59','2022-09-14 23:01:06','58facfe5-783d-4b05-8241-5e66d2e7f122',NULL,NULL,NULL,NULL,'64800.67','66855.79',NULL,'145000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'80199.33','15336.4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137601,141357,1,'May 2017','2022-06-23 06:46:59','2022-06-23 06:46:59','cb25bc43-96d3-4ccd-8dff-a92407b9b5bb',NULL,NULL,NULL,NULL,'64800.67','66855.79',NULL,'145000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'80199.33','15336.4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137602,141358,1,'Jun 2017','2022-06-23 06:47:01','2022-09-14 23:01:07','78c99756-de26-4ac1-a499-dccdef424e20',NULL,NULL,NULL,NULL,'119825.26','444728.04',NULL,'-12917',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'-132742.26','-574486.7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137603,141359,1,'Jun 2017','2022-06-23 06:47:01','2022-06-23 06:47:01','18f252da-cb58-4b46-a4d4-5006539b8c80',NULL,NULL,NULL,NULL,'119825.26','444728.04',NULL,'-12917',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'-132742.26','-574486.7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137604,141360,1,'Jul 2017','2022-06-23 06:47:02','2022-09-14 23:01:08','5c0e6b7d-22d2-4a53-a58a-890d50cb93ee',NULL,NULL,NULL,NULL,'124656.28','58940.96',NULL,'318001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'193344.72','136396.14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137605,141361,1,'Jul 2017','2022-06-23 06:47:02','2022-06-23 06:47:02','115791b8-9631-4a33-b809-6723a3bb5fd0',NULL,NULL,NULL,NULL,'124656.28','58940.96',NULL,'318001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'193344.72','136396.14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137606,141362,1,'Aug 2017','2022-06-23 06:47:04','2022-09-14 23:01:10','80018b06-3332-4de5-bc61-cee4d4dea19d',NULL,NULL,NULL,NULL,'127811.15','64351.02',NULL,'159000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'31188.85','-31169.38',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137607,141363,1,'Aug 2017','2022-06-23 06:47:04','2022-06-23 06:47:04','ce87a33b-3c8e-4643-8004-691cd942ccc9',NULL,NULL,NULL,NULL,'127811.15','64351.02',NULL,'159000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'31188.85','-31169.38',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137608,141364,1,'Sep 2017','2022-06-23 06:47:06','2022-09-14 23:01:11','e17e0d21-4f10-42cf-a482-fd84f449f4a9',NULL,NULL,NULL,NULL,'52946.03','66806.66',NULL,'173000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'120053.97','56230.11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137609,141365,1,'Sep 2017','2022-06-23 06:47:06','2022-06-23 06:47:06','202e55b3-08be-48e9-a417-c8037b6b4999',NULL,NULL,NULL,NULL,'52946.03','66806.66',NULL,'173000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'120053.97','56230.11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137610,141366,1,'Oct 2017','2022-06-23 06:47:08','2022-09-14 23:01:12','c4f509a3-b1b4-4df2-8404-6218895482f5',NULL,NULL,NULL,NULL,'31122.94','61372.86',NULL,'198000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'166877.06','107496.59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137611,141367,1,'Oct 2017','2022-06-23 06:47:08','2022-06-23 06:47:08','bf02f806-d14a-4250-a4bb-70ef2d62d33c',NULL,NULL,NULL,NULL,'31122.94','61372.86',NULL,'198000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'166877.06','107496.59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137612,141368,1,'Nov 2017','2022-06-23 06:47:10','2022-09-14 23:01:13','baf73485-7e17-4796-9837-2ffe9ed904e6',NULL,NULL,NULL,NULL,'29012.41','62780.09',NULL,'198020.25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'169007.84','108220.56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137613,141369,1,'Nov 2017','2022-06-23 06:47:10','2022-06-23 06:47:10','67494282-5a2c-4bfe-9e23-d00d8a29fac6',NULL,NULL,NULL,NULL,'29012.41','62780.09',NULL,'198020.25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'169007.84','108220.56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137614,141370,1,'Dec 2017','2022-06-23 06:47:12','2022-09-14 23:01:14','1047a860-b558-4b8c-a243-5323d0798ec2',NULL,NULL,NULL,NULL,'34527.87','76058.47',NULL,'199004',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'164476.13','90408.9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137615,141371,1,'Dec 2017','2022-06-23 06:47:12','2022-06-23 06:47:12','8ae52497-fd09-4ee0-a38c-3f08a9e0a72c',NULL,NULL,NULL,NULL,'34527.87','76058.47',NULL,'199004',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'164476.13','90408.9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137616,141372,1,'Jan 2018','2022-06-23 06:47:14','2022-09-14 23:01:15','85e2b7b5-3e88-4547-b00f-009554e51d9f',NULL,NULL,NULL,NULL,'22421.26','71122.45',NULL,'-231482.9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'-253904.16','-322835.92',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137617,141373,1,'Jan 2018','2022-06-23 06:47:14','2022-06-23 06:47:14','c2c903cf-e115-429b-9fbf-926bc0eb632e',NULL,NULL,NULL,NULL,'22421.26','71122.45',NULL,'-231482.9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'-253904.16','-322835.92',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137618,141374,1,'Feb 2018','2022-06-23 06:47:16','2022-09-14 23:01:16','20f08357-6c32-427e-a6ef-1ed609c5efd9',NULL,NULL,NULL,NULL,'71557.92','67519.22',NULL,'153695',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'82137.08','16608.55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137619,141375,1,'Feb 2018','2022-06-23 06:47:16','2022-06-23 06:47:16','0c9ad72b-1652-4072-be0c-4921e9f0ffac',NULL,NULL,NULL,NULL,'71557.92','67519.22',NULL,'153695',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'82137.08','16608.55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137620,141376,1,'Mar 2018','2022-06-23 06:47:18','2022-09-14 23:01:17','f5f93282-df48-4b9d-b13f-8034cf31b598',NULL,NULL,NULL,NULL,'31946.85','77049.2',NULL,'280147',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'248200.15','174530.61',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137621,141377,1,'Mar 2018','2022-06-23 06:47:18','2022-06-23 06:47:18','3a4e27c2-b5d6-47e6-aa50-a9484b15b597',NULL,NULL,NULL,NULL,'31946.85','77049.2',NULL,'280147',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'248200.15','174530.61',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137622,141378,1,'Apr 2018','2022-06-23 06:47:19','2022-09-14 23:01:18','61d48319-ffce-4d7d-afe9-2473a586cd7e',NULL,NULL,NULL,NULL,'35055.04','75495.68',NULL,'151134.82',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'116079.78','41584.8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137623,141379,1,'Apr 2018','2022-06-23 06:47:19','2022-06-23 06:47:19','93af0ead-2fda-466a-a89b-fc2968c12dc8',NULL,NULL,NULL,NULL,'35055.04','75495.68',NULL,'151134.82',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'116079.78','41584.8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137624,141380,1,'May 2018','2022-06-23 06:47:21','2022-09-14 23:01:18','a04f55dc-82a8-4774-9f43-ad7774701b79',NULL,NULL,NULL,NULL,'119729.46','87463.08',NULL,'292540.45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'172810.99','88355.16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137625,141381,1,'May 2018','2022-06-23 06:47:21','2022-06-23 06:47:21','03f1aa2b-79a9-4867-a9e5-2bb972c83a5e',NULL,NULL,NULL,NULL,'119729.46','87463.08',NULL,'292540.45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'172810.99','88355.16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137626,141382,1,'Jun 2018','2022-06-23 06:47:23','2022-09-14 23:01:19','e94b033e-175d-4a96-ac52-3c97c4878767',NULL,NULL,NULL,NULL,'64869.48','694466.09',NULL,'292145.63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'227276.15','-465826.12',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137627,141383,1,'Jun 2018','2022-06-23 06:47:23','2022-06-23 06:47:23','4323196b-9feb-4aec-87b4-f2f67b683acb',NULL,NULL,NULL,NULL,'64869.48','694466.09',NULL,'292145.63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'227276.15','-465826.12',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(137628,141384,1,'Jul 2018','2022-06-23 06:47:25','2022-09-14 23:01:20','0f7e910b-b663-4c68-abbb-06f48d32fcfe',NULL,NULL,NULL,NULL,'74000.72','111887.81',NULL,'147275.18',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'73274.46','-36522.98',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'147697',NULL,NULL,NULL,NULL,NULL,NULL),(137629,141385,1,'Jul 2018','2022-06-23 06:47:25','2022-06-23 06:47:25','c4433272-502c-4056-98c6-33f1d5359ca4',NULL,NULL,NULL,NULL,'74000.72','111887.81',NULL,'147275.18',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'73274.46','-36522.98',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'147697',NULL,NULL,NULL,NULL,NULL,NULL),(137630,141386,1,'Aug 2018','2022-06-23 06:47:26','2022-09-14 23:01:21','de869b94-f035-4a64-aa86-10d18c113569',NULL,NULL,NULL,NULL,'96837.95','124079.08',NULL,'219401.56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'122563.61','-1501.17',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'164435',NULL,NULL,NULL,NULL,NULL,NULL),(137631,141387,1,'Aug 2018','2022-06-23 06:47:26','2022-06-23 06:47:26','0d33d872-7d47-430a-802f-479a5dd0c96b',NULL,NULL,NULL,NULL,'96837.95','124079.08',NULL,'219401.56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'122563.61','-1501.17',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'164435',NULL,NULL,NULL,NULL,NULL,NULL),(137632,141388,1,'Sep 2018','2022-06-23 06:47:28','2022-09-14 23:01:22','22ba7ce4-e4f5-42c0-a660-d375074d4e1e',NULL,NULL,NULL,NULL,'45298.63','113286.62',NULL,'154023.91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'108725.28','-3742.13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'157965',NULL,NULL,NULL,NULL,NULL,NULL),(137633,141389,1,'Sep 2018','2022-06-23 06:47:28','2022-06-23 06:47:28','83f71a87-e7a5-4572-86cd-de32f26539d5',NULL,NULL,NULL,NULL,'45298.63','113286.62',NULL,'154023.91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'108725.28','-3742.13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'157965',NULL,NULL,NULL,NULL,NULL,NULL),(137634,141390,1,'Oct 2018','2022-06-23 06:47:29','2022-09-14 23:01:23','9b45587a-05fc-49fd-8342-93961217f056',NULL,NULL,NULL,NULL,'55556.77','136623.45',NULL,'149903.7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'94346.93','-42251.36',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(137635,141391,1,'Oct 2018','2022-06-23 06:47:29','2022-06-23 06:47:29','38b1f2c3-6d22-4d5e-914b-1ac29876b517',NULL,NULL,NULL,NULL,'55556.77','136623.45',NULL,'149903.7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'94346.93','-42251.36',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(137636,141392,1,'Nov 2018','2022-06-23 06:47:31','2022-09-14 23:01:25','4f4f83c9-4d7d-457a-a040-d522c039aaed',NULL,NULL,NULL,NULL,'54735.28','143555.34',NULL,'176699.55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'121964.27','-21565.49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(137637,141393,1,'Nov 2018','2022-06-23 06:47:31','2022-06-23 06:47:31','94cb73be-ccbe-4c25-b863-174ae00e061b',NULL,NULL,NULL,NULL,'54735.28','143555.34',NULL,'176699.55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'121964.27','-21565.49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(137638,141394,1,'Dec 2018','2022-06-23 06:47:33','2022-09-14 23:01:25','99bd4599-0e8f-4afd-99c7-ee4da859b4df',NULL,NULL,NULL,NULL,'66241.68','148956.68',NULL,'210190.96',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'143949.28','-4989.65',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(137639,141395,1,'Dec 2018','2022-06-23 06:47:33','2022-06-23 06:47:33','8f28fbf6-27b7-4dcb-8be6-228353c403d8',NULL,NULL,NULL,NULL,'66241.68','148956.68',NULL,'210190.96',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'143949.28','-4989.65',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(137640,141396,1,'Jan 2019','2022-06-23 06:47:35','2022-09-14 23:01:26','6686efc8-b280-4fb1-9f9c-1ecd4bce3337',NULL,NULL,NULL,NULL,'4561.82','130051.64',NULL,'99963.35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'95401.53','-34638.1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(137641,141397,1,'Jan 2019','2022-06-23 06:47:35','2022-06-23 06:47:35','e030665b-f213-417e-a910-7cc5239fcb29',NULL,NULL,NULL,NULL,'4561.82','130051.64',NULL,'99963.35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'95401.53','-34638.1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(137642,141398,1,'Feb 2019','2022-06-23 06:47:37','2022-09-14 23:01:27','ad5a3540-7efa-438b-aaef-15278d549676',NULL,NULL,NULL,NULL,'8401.32','112334.34',NULL,'136704.64',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'128303.32','17493.03',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(137643,141399,1,'Feb 2019','2022-06-23 06:47:37','2022-06-23 06:47:37','1f0bd7c8-45a4-4e24-be95-2183e8d6df88',NULL,NULL,NULL,NULL,'8401.32','112334.34',NULL,'136704.64',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'128303.32','17493.03',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(137644,141400,1,'Mar 2019','2022-06-23 06:47:39','2022-09-14 23:01:29','d076c3af-acee-4ca9-9652-0b3473f508bd',NULL,NULL,NULL,NULL,'29877.13','166573.2',NULL,'185860.76',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'155983.63','-7779.11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(137645,141401,1,'Mar 2019','2022-06-23 06:47:39','2022-06-23 06:47:39','f2534d8e-ca35-43b5-813f-fc4d05900be4',NULL,NULL,NULL,NULL,'29877.13','166573.2',NULL,'185860.76',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'155983.63','-7779.11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(137646,141402,1,'Apr 2019','2022-06-23 06:47:41','2022-09-14 23:01:30','034e0c3a-3c3c-4e7a-a617-3ebbd297ef38',NULL,NULL,NULL,NULL,'26063.01','120213.11',NULL,'218229.03',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'192166.02','74192.91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(137647,141403,1,'Apr 2019','2022-06-23 06:47:41','2022-06-23 06:47:41','01c8d4e4-b687-40e8-8c86-32e2d6e972af',NULL,NULL,NULL,NULL,'26063.01','120213.11',NULL,'218229.03',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'192166.02','74192.91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(137648,141404,1,'May 2019','2022-06-23 06:47:42','2022-09-14 23:01:31','37afdd88-bd3f-4d5a-873e-c7b2cbedecde',NULL,NULL,NULL,NULL,'30193.42','148983.16',NULL,'266386.09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'236192.67','88890.38',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(137649,141405,1,'May 2019','2022-06-23 06:47:42','2022-06-23 06:47:42','63822a2b-1143-4eec-826f-e84a38a49a25',NULL,NULL,NULL,NULL,'30193.42','148983.16',NULL,'266386.09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'236192.67','88890.38',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(137650,141406,1,'Jun 2019','2022-06-23 06:47:44','2022-09-14 23:01:32','61a06875-477e-4bf4-847b-af21006589a0',NULL,NULL,NULL,NULL,'73421.4','338495.32',NULL,'380330.27',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'306908.87','-27586.33',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(137651,141407,1,'Jun 2019','2022-06-23 06:47:44','2022-06-23 06:47:44','f637c4bc-8f18-493f-a04f-fd1a178d2e7b',NULL,NULL,NULL,NULL,'73421.4','338495.32',NULL,'380330.27',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'306908.87','-27586.33',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(137652,141408,1,'Jul 2019','2022-06-23 06:47:46','2022-09-14 23:01:33','f219c7c4-13cb-4fb1-8781-f75ef6b2e3d8',NULL,NULL,NULL,NULL,'53253.62','139028.57',NULL,'215952.4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'162698.78','25530.21',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'231029.76',NULL,NULL,NULL,NULL,NULL,NULL),(137653,141409,1,'Jul 2019','2022-06-23 06:47:46','2022-06-23 06:47:46','2e8879b0-f879-4714-9f5a-c1e9e010a26a',NULL,NULL,NULL,NULL,'53253.62','139028.57',NULL,'215952.4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'162698.78','25530.21',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'231029.76',NULL,NULL,NULL,NULL,NULL,NULL),(137654,141410,1,'Aug 2019','2022-06-23 06:47:48','2022-09-14 23:01:34','d7f119f4-6a87-44dc-ae18-59f1ea445ce6',NULL,NULL,NULL,NULL,'131654.45','150318.01',NULL,'190861.91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'59207.46','-88104.61',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'311744.69',NULL,NULL,NULL,NULL,NULL,NULL),(137655,141411,1,'Aug 2019','2022-06-23 06:47:48','2022-06-23 06:47:48','e4709121-9685-466f-b241-794efea99ab7',NULL,NULL,NULL,NULL,'131654.45','150318.01',NULL,'190861.91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'59207.46','-88104.61',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'311744.69',NULL,NULL,NULL,NULL,NULL,NULL),(137656,141412,1,'Sep 2019','2022-06-23 06:47:50','2022-09-14 23:01:35','06f8a63a-5365-4608-85a3-b8ee524e37f3',NULL,NULL,NULL,NULL,'31218.34','116472.95',NULL,'230171.54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'198953.2','84185.79',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'291943.95',NULL,NULL,NULL,NULL,NULL,NULL),(137657,141413,1,'Sep 2019','2022-06-23 06:47:50','2022-06-23 06:47:50','b355f2c9-606a-4de3-b23f-981107a1b93f',NULL,NULL,NULL,NULL,'31218.34','116472.95',NULL,'230171.54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'198953.2','84185.79',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'291943.95',NULL,NULL,NULL,NULL,NULL,NULL),(137658,141414,1,'Oct 2019','2022-06-23 06:47:52','2022-09-14 23:01:36','23050e7e-a7ff-436f-9e68-774c3ca77009',NULL,NULL,NULL,NULL,'108744.79','147427.91',NULL,'124740.95',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'15996.16','-129179.1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'167814.45',NULL,NULL,NULL,NULL,NULL,NULL),(137659,141415,1,'Oct 2019','2022-06-23 06:47:52','2022-06-23 06:47:52','7097590f-43d1-4995-9a8b-b79bc62a247d',NULL,NULL,NULL,NULL,'108744.79','147427.91',NULL,'124740.95',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'15996.16','-129179.1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'167814.45',NULL,NULL,NULL,NULL,NULL,NULL),(137660,141416,1,'Nov 2019','2022-06-23 06:47:54','2022-09-14 23:01:37','96861d0e-a1eb-4a8c-a8b3-da7b219e0573',NULL,NULL,NULL,NULL,'83071.43','152745.93',NULL,'231142.92',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'148071.49','-2413.96',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'220528.67',NULL,NULL,NULL,NULL,NULL,NULL),(137661,141417,1,'Nov 2019','2022-06-23 06:47:54','2022-06-23 06:47:54','af00c634-967d-456d-a65b-76fd8a0b5b86',NULL,NULL,NULL,NULL,'83071.43','152745.93',NULL,'231142.92',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'148071.49','-2413.96',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'220528.67',NULL,NULL,NULL,NULL,NULL,NULL),(137662,141418,1,'Dec 2019','2022-06-23 06:47:56','2022-09-14 23:01:38','86624c45-125a-4c3d-9759-170c83b38761',NULL,NULL,NULL,NULL,'34132.95','121765.4',NULL,'241076.87',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'206943.92','87984.88',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'237009.93',NULL,NULL,NULL,NULL,NULL,NULL),(137663,141419,1,'Dec 2019','2022-06-23 06:47:56','2022-06-23 06:47:56','bac96889-47bb-456a-a9ef-e9d0b0873be8',NULL,NULL,NULL,NULL,'34132.95','121765.4',NULL,'241076.87',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'206943.92','87984.88',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'237009.93',NULL,NULL,NULL,NULL,NULL,NULL),(137664,141420,1,'Jan 2020','2022-06-23 06:47:58','2022-09-14 23:01:38','3dde3598-befa-4189-99c8-7ee08bb4c3e9',NULL,NULL,NULL,NULL,'56300.2','143709.05',NULL,'122894.38',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'66594.18','-74311.62',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'104155.13',NULL,NULL,NULL,NULL,NULL,NULL),(137665,141421,1,'Jan 2020','2022-06-23 06:47:58','2022-06-23 06:47:58','64f1feb6-e282-4fc7-8ab4-dc2173de2351',NULL,NULL,NULL,NULL,'56300.2','143709.05',NULL,'122894.38',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'66594.18','-74311.62',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'104155.13',NULL,NULL,NULL,NULL,NULL,NULL),(137666,141422,1,'Feb 2020','2022-06-23 06:48:00','2022-09-14 23:01:40','59af784c-e93f-4624-89d6-cda7b6851166',NULL,NULL,NULL,NULL,'73879.47','121533.38',NULL,'130982.05',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'57102.58','-61622.81',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'134093.88',NULL,NULL,NULL,NULL,NULL,NULL),(137667,141423,1,'Feb 2020','2022-06-23 06:48:00','2022-06-23 06:48:00','5bcb31d8-a1a8-4acd-8d42-e43229635f23',NULL,NULL,NULL,NULL,'73879.47','121533.38',NULL,'130982.05',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'57102.58','-61622.81',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'134093.88',NULL,NULL,NULL,NULL,NULL,NULL),(137668,141424,1,'Mar 2020','2022-06-23 06:48:01','2022-09-14 23:01:41','bf41d1ca-ceec-4a8b-b1b3-c9fddc078068',NULL,NULL,NULL,NULL,'42035.9','114496.21',NULL,'307411.06',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'265375.16','153683.37',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'190737.43',NULL,NULL,NULL,NULL,NULL,NULL),(137669,141425,1,'Mar 2020','2022-06-23 06:48:01','2022-06-23 06:48:01','826b4641-5f03-45f8-8c66-fcdf6a057b2f',NULL,NULL,NULL,NULL,'42035.9','114496.21',NULL,'307411.06',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'265375.16','153683.37',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'190737.43',NULL,NULL,NULL,NULL,NULL,NULL),(137670,141426,1,'Apr 2020','2022-06-23 06:48:03','2022-09-14 23:01:42','662b9c93-482a-4a12-8dd8-58784b60f115',NULL,NULL,NULL,NULL,'27198.52','132741.81',NULL,'314841.39',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'287642.87','201472.06',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'234783.09',NULL,NULL,NULL,NULL,NULL,NULL),(137671,141427,1,'Apr 2020','2022-06-23 06:48:03','2022-06-23 06:48:03','db3ad3c8-eb7c-49f7-bf7f-a9983752dfae',NULL,NULL,NULL,NULL,'27198.52','132741.81',NULL,'314841.39',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'287642.87','201472.06',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'234783.09',NULL,NULL,NULL,NULL,NULL,NULL),(137672,141428,1,'May 2020','2022-06-23 06:48:05','2022-09-14 23:01:43','6c7931f5-89c2-436d-9716-1fc6a54a546b',NULL,NULL,NULL,NULL,'86514.99','130636.12',NULL,'215415.92',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'128900.93','6187.14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'350163.82',NULL,NULL,NULL,NULL,NULL,NULL),(137673,141429,1,'May 2020','2022-06-23 06:48:05','2022-06-23 06:48:05','a0999bba-15b0-4490-9587-501b60881280',NULL,NULL,NULL,NULL,'86514.99','130636.12',NULL,'215415.92',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'128900.93','6187.14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'350163.82',NULL,NULL,NULL,NULL,NULL,NULL),(137674,141430,1,'Jun 2020','2022-06-23 06:48:07','2022-09-14 23:01:45','7ad733b4-d513-4a4d-af43-7655489660da',NULL,NULL,NULL,NULL,'34119.85','280264.79',NULL,'108052.94',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'73933.09','-203411.35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'389058.54',NULL,NULL,NULL,NULL,NULL,NULL),(137675,141431,1,'Jun 2020','2022-06-23 06:48:07','2022-06-23 06:48:07','096beddd-54ab-45c8-97ea-b44f89cab486',NULL,NULL,NULL,NULL,'34119.85','280264.79',NULL,'108052.94',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'73933.09','-203411.35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'389058.54',NULL,NULL,NULL,NULL,NULL,NULL),(137676,141432,1,'Jul 2020','2022-06-23 06:48:09','2022-09-14 23:01:46','e8eceab5-d716-4b3e-9a14-7788fd187c03',NULL,NULL,NULL,NULL,'85216.7','155638.76',NULL,'237989.14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'152772.44','559.06',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'204227.8112',NULL,NULL,NULL,NULL,NULL,NULL),(137677,141433,1,'Jul 2020','2022-06-23 06:48:09','2022-06-23 06:48:09','bc2d740d-b955-4fe9-93fe-65796e29ed99',NULL,NULL,NULL,NULL,'85216.7','155638.76',NULL,'237989.14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'152772.44','559.06',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'204227.8112',NULL,NULL,NULL,NULL,NULL,NULL),(137678,141434,1,'Aug 2020','2022-06-23 06:48:10','2022-09-14 23:01:47','38928494-b1bb-4d13-8c4c-369c95bd556f',NULL,NULL,NULL,NULL,'93034.44','116200.68',NULL,'203442.81',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'110408.37','21477.59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'177542.8673',NULL,NULL,NULL,NULL,NULL,NULL),(137679,141435,1,'Aug 2020','2022-06-23 06:48:10','2022-06-23 06:48:10','70a1fbcf-07c7-483a-95c4-8cae97911e30',NULL,NULL,NULL,NULL,'93034.44','116200.68',NULL,'203442.81',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'110408.37','21477.59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'177542.8673',NULL,NULL,NULL,NULL,NULL,NULL),(137680,141436,1,'Sep 2020','2022-06-23 06:48:12','2022-09-14 23:01:48','f5f805a2-838b-49c7-93e1-2045e3d1800e',NULL,NULL,NULL,NULL,'54987.82','119322.07',NULL,'197912.27',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'142924.45','38477.37',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'178650.1445',NULL,NULL,NULL,NULL,NULL,NULL),(137681,141437,1,'Sep 2020','2022-06-23 06:48:12','2022-06-23 06:48:12','12c5c5ba-a563-4382-89d8-796044ad0682',NULL,NULL,NULL,NULL,'54987.82','119322.07',NULL,'197912.27',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'142924.45','38477.37',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'178650.1445',NULL,NULL,NULL,NULL,NULL,NULL),(137682,141438,1,'Oct 2020','2022-06-23 06:48:14','2022-09-14 23:01:49','ad337324-891c-4e52-b39a-3462974c0e49',NULL,NULL,NULL,NULL,'82653','154948.66',NULL,'284488.19',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'201835.19','60539.21',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'152083.026',NULL,NULL,NULL,NULL,NULL,NULL),(137683,141439,1,'Oct 2020','2022-06-23 06:48:14','2022-06-23 06:48:14','2cacf069-c29d-45e5-8df3-fe0043a8f3f9',NULL,NULL,NULL,NULL,'82653','154948.66',NULL,'284488.19',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'201835.19','60539.21',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'152083.026',NULL,NULL,NULL,NULL,NULL,NULL),(137684,141440,1,'Nov 2020','2022-06-23 06:48:16','2022-09-14 23:01:49','44e9eca7-115f-4885-99b2-a39a390f1346',NULL,NULL,NULL,NULL,'41268.96','138999.28',NULL,'122433.13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'81164.17','-54446.59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'202028.5307',NULL,NULL,NULL,NULL,NULL,NULL),(137685,141441,1,'Nov 2020','2022-06-23 06:48:16','2022-06-23 06:48:16','b1e96586-0dbc-4f3e-82c8-9f1353068904',NULL,NULL,NULL,NULL,'41268.96','138999.28',NULL,'122433.13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'81164.17','-54446.59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'202028.5307',NULL,NULL,NULL,NULL,NULL,NULL),(137686,141442,1,'Dec 2020','2022-06-23 06:48:18','2022-09-14 23:01:50','874c54c1-2082-43bf-9e49-e2a427787c30',NULL,NULL,NULL,NULL,'43754.18','101087.89',NULL,'214996.8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'171242.62','72403.07',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'228061.0762',NULL,NULL,NULL,NULL,NULL,NULL),(137687,141443,1,'Dec 2020','2022-06-23 06:48:18','2022-06-23 06:48:18','008c358c-a3e8-494b-be8d-caf836b5cfb3',NULL,NULL,NULL,NULL,'43754.18','101087.89',NULL,'214996.8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'171242.62','72403.07',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'228061.0762',NULL,NULL,NULL,NULL,NULL,NULL),(137688,141444,1,'Jan 2021','2022-06-23 06:48:20','2022-09-14 23:01:51','75e8a0b4-20a0-49a4-9bdf-8472343c5041',NULL,NULL,NULL,NULL,'34680.41','127911.34',NULL,'133190.08',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'98509.67','-27157.92',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'126517.9049',NULL,NULL,NULL,NULL,NULL,NULL),(137689,141445,1,'Jan 2021','2022-06-23 06:48:20','2022-06-23 06:48:20','8bb50d34-1e3d-49ff-9ff3-d59fb7d8a141',NULL,NULL,NULL,NULL,'34680.41','127911.34',NULL,'133190.08',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'98509.67','-27157.92',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'126517.9049',NULL,NULL,NULL,NULL,NULL,NULL),(137690,141446,1,'Feb 2021','2022-06-23 06:48:21','2022-09-14 23:01:52','2cb3994a-a4c8-419f-9b39-30f90a81d28d',NULL,NULL,NULL,NULL,'17113.54','124028.06',NULL,'168926.4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'151812.86','30111.29',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'151737.957',NULL,NULL,NULL,NULL,NULL,NULL),(137691,141447,1,'Feb 2021','2022-06-23 06:48:21','2022-06-23 06:48:21','b52a6070-4378-44d6-99ce-d36ef079441d',NULL,NULL,NULL,NULL,'17113.54','124028.06',NULL,'168926.4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'151812.86','30111.29',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'151737.957',NULL,NULL,NULL,NULL,NULL,NULL),(137692,141448,1,'Mar 2021','2022-06-23 06:48:23','2022-09-14 23:01:53','aef70f0b-572c-4587-875c-bd31e2723bd2',NULL,NULL,NULL,NULL,'34577.46','119082.89',NULL,'108568.58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'73991.12','-41720.76',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'202504.339',NULL,NULL,NULL,NULL,NULL,NULL),(137693,141449,1,'Mar 2021','2022-06-23 06:48:23','2022-06-23 06:48:23','159ac2eb-ff92-46ea-9c6d-d629bbae812b',NULL,NULL,NULL,NULL,'34577.46','119082.89',NULL,'108568.58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'73991.12','-41720.76',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'202504.339',NULL,NULL,NULL,NULL,NULL,NULL),(137694,141450,1,'Apr 2021','2022-06-23 06:48:24','2022-09-14 23:01:54','b23a1931-8666-4cf1-ad54-c99055bb0768',NULL,NULL,NULL,NULL,'71194.26','141213.01',NULL,'388991.75',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'317797.49','178836.73',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'253314.9793',NULL,NULL,NULL,NULL,NULL,NULL),(137695,141451,1,'Apr 2021','2022-06-23 06:48:24','2022-06-23 06:48:24','523bbdd7-1be8-468d-974b-543986a20a00',NULL,NULL,NULL,NULL,'71194.26','141213.01',NULL,'388991.75',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'317797.49','178836.73',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'253314.9793',NULL,NULL,NULL,NULL,NULL,NULL),(137696,141452,1,'May 2021','2022-06-23 06:48:26','2022-09-14 23:01:55','e2fe9ed2-e6e3-4970-99c4-6b4e7a877f27',NULL,NULL,NULL,NULL,'86314.7','158006.48',NULL,'126007.5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39692.8','-117182.23',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'304194.8279',NULL,NULL,NULL,NULL,NULL,NULL),(137697,141453,1,'May 2021','2022-06-23 06:48:26','2022-06-23 06:48:26','eb008a1c-5f7f-4eec-8503-eb3b12125e7c',NULL,NULL,NULL,NULL,'86314.7','158006.48',NULL,'126007.5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39692.8','-117182.23',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'304194.8279',NULL,NULL,NULL,NULL,NULL,NULL),(137698,141454,1,'Jun 2021','2022-06-23 06:48:28','2022-09-14 23:01:56','c80eb80c-2a8b-4051-9f75-b716e4dc0b67',NULL,NULL,NULL,NULL,'66581.49','269957.97',NULL,'333581.4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'104507.09','-161896.82',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'354136.5359',NULL,NULL,NULL,NULL,NULL,NULL),(137699,141455,1,'Jun 2021','2022-06-23 06:48:28','2022-06-23 06:48:28','138a874e-a614-4945-8d5b-010b68d471af',NULL,NULL,NULL,NULL,'66581.49','269957.97',NULL,'333581.4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'104507.09','-161896.82',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'354136.5359',NULL,NULL,NULL,NULL,NULL,NULL),(137700,141456,1,'Jul 2021','2022-06-23 06:48:30','2022-09-14 23:01:57','79134d49-9092-4d90-b0db-61e31aefb681',NULL,NULL,NULL,NULL,'92534.16','372266.07',NULL,'253376.78',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'160842.62','-211423.45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'253646.96',NULL,NULL,NULL,NULL,NULL,NULL),(137701,141457,1,'Jul 2021','2022-06-23 06:48:30','2022-06-23 06:48:30','8bd6f22b-012d-470b-a85e-37c803c0f135',NULL,NULL,NULL,NULL,'92534.16','372266.07',NULL,'253376.78',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'160842.62','-211423.45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'253646.96',NULL,NULL,NULL,NULL,NULL,NULL),(137702,141458,1,'Aug 2021','2022-06-23 06:48:31','2022-09-14 23:01:58','552fe28b-4bc8-455f-ac33-08537b115524',NULL,NULL,NULL,NULL,'87619.32','159658.54',NULL,'178768.63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'91149.31','-68507.87',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'302574.55',NULL,NULL,NULL,NULL,NULL,NULL),(137703,141459,1,'Aug 2021','2022-06-23 06:48:31','2022-06-23 06:48:31','70bac897-06d7-4927-936f-8610c5ffb294',NULL,NULL,NULL,NULL,'87619.32','159658.54',NULL,'178768.63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'91149.31','-68507.87',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'302574.55',NULL,NULL,NULL,NULL,NULL,NULL),(137704,141460,1,'Sep 2021','2022-06-23 06:48:33','2022-09-14 23:01:59','a59998a3-243c-402e-8cf6-43a2fec07469',NULL,NULL,NULL,NULL,'144440.96','203439.21',NULL,'334002.05',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'189561.09','-13876.63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'303327.81',NULL,NULL,NULL,NULL,NULL,NULL),(137705,141461,1,'Sep 2021','2022-06-23 06:48:33','2022-06-23 06:48:33','00d8308c-0231-46db-8026-420b9ff60c83',NULL,NULL,NULL,NULL,'144440.96','203439.21',NULL,'334002.05',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'189561.09','-13876.63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'303327.81',NULL,NULL,NULL,NULL,NULL,NULL),(137706,141462,1,'Oct 2021','2022-06-23 06:48:35','2022-09-14 23:02:00','ba8f922a-9a6f-4644-9ebd-33988d250614',NULL,NULL,NULL,NULL,'40066.09','167609.66',NULL,'211688.3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'171622.21','4013.75',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'202041.07',NULL,NULL,NULL,NULL,NULL,NULL),(137707,141463,1,'Oct 2021','2022-06-23 06:48:35','2022-06-23 06:48:35','197870c6-0b21-4e7b-8361-4b48d8add74f',NULL,NULL,NULL,NULL,'40066.09','167609.66',NULL,'211688.3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'171622.21','4013.75',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'202041.07',NULL,NULL,NULL,NULL,NULL,NULL),(137708,141464,1,'Nov 2021','2022-06-23 06:48:37','2022-09-14 23:02:01','975edeac-b7e6-4eec-8c55-bd175e3a27c9',NULL,NULL,NULL,NULL,'102016.09','180473.09',NULL,'318984.43',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'216968.34','36496.1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'202351.45',NULL,NULL,NULL,NULL,NULL,NULL),(137709,141465,1,'Nov 2021','2022-06-23 06:48:37','2022-06-23 06:48:37','1465e7d0-34a9-4beb-8b5c-e6121538af60',NULL,NULL,NULL,NULL,'102016.09','180473.09',NULL,'318984.43',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'216968.34','36496.1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'202351.45',NULL,NULL,NULL,NULL,NULL,NULL),(137710,141466,1,'Dec 2021','2022-06-23 06:48:38','2022-09-14 23:02:02','d6df79d7-c027-4dca-a4b7-577b82ed9457',NULL,NULL,NULL,NULL,'125678.95','178911.53',NULL,'510903.89',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'385224.94','206314.26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'252789.03',NULL,NULL,NULL,NULL,NULL,NULL),(137711,141467,1,'Dec 2021','2022-06-23 06:48:38','2022-06-23 06:48:38','cf4b5795-a3ff-460f-bcde-6b96414266c7',NULL,NULL,NULL,NULL,'125678.95','178911.53',NULL,'510903.89',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'385224.94','206314.26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'252789.03',NULL,NULL,NULL,NULL,NULL,NULL),(137712,141468,1,'Jan 2022','2022-06-23 06:48:39','2022-09-14 23:02:02','65e840ec-42d4-47b1-adea-e91baa1ba1ed',NULL,NULL,NULL,NULL,'69288.44','167700.23',NULL,'89711.83',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'20423.39','-147275.88',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'151493.12',NULL,NULL,NULL,NULL,NULL,NULL),(137713,141469,1,'Jan 2022','2022-06-23 06:48:39','2022-06-23 06:48:39','1314a5f1-df77-4d3b-9060-8c0b10f6b3d0',NULL,NULL,NULL,NULL,'69288.44','167700.23',NULL,'89711.83',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'20423.39','-147275.88',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'151493.12',NULL,NULL,NULL,NULL,NULL,NULL),(137714,141470,1,'Feb 2022','2022-06-23 06:48:41','2022-09-14 23:02:03','cd80e3a6-b889-4c0b-a211-002b0fc1f3eb',NULL,NULL,NULL,NULL,'25256.65','127253.23',NULL,'111139.49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'85882.84','-41369.43',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'151863.49',NULL,NULL,NULL,NULL,NULL,NULL),(137715,141471,1,'Feb 2022','2022-06-23 06:48:41','2022-06-23 06:48:41','41d20f62-7cc5-4bc1-b887-830e51a88fac',NULL,NULL,NULL,NULL,'25256.65','127253.23',NULL,'111139.49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'85882.84','-41369.43',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'151863.49',NULL,NULL,NULL,NULL,NULL,NULL),(137716,141472,1,'Mar 2022','2022-06-23 06:48:43','2022-09-14 23:02:04','44955622-fcc1-4dd2-b668-d0e47a518153',NULL,NULL,NULL,NULL,'121499.88','151184.05',NULL,'360528.63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'239028.75','87845.57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'252449.14',NULL,NULL,NULL,NULL,NULL,NULL),(137717,141473,1,'Mar 2022','2022-06-23 06:48:43','2022-06-23 06:48:43','12e42a48-d170-464c-8595-05805d2d2eb9',NULL,NULL,NULL,NULL,'121499.88','151184.05',NULL,'360528.63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'239028.75','87845.57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'252449.14',NULL,NULL,NULL,NULL,NULL,NULL),(137718,141474,1,'Apr 2022','2022-06-23 06:48:44','2022-09-14 23:02:05','7ab2403d-ef15-4a3c-a8b1-2a8a6c17ca62',NULL,NULL,NULL,NULL,'155220.38','171232.41',NULL,'316516.04',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'161295.66','-9935.79',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'252645.85',NULL,NULL,NULL,NULL,NULL,NULL),(137719,141475,1,'Apr 2022','2022-06-23 06:48:44','2022-06-23 06:48:44','473a0fda-27dc-4ce2-9cf8-63c39a34d18e',NULL,NULL,NULL,NULL,'155220.38','171232.41',NULL,'316516.04',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'161295.66','-9935.79',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'252645.85',NULL,NULL,NULL,NULL,NULL,NULL),(137720,141476,1,'May 2022','2022-06-23 06:48:45','2022-09-14 23:02:06','d1a1de0c-770f-4740-991c-86b209412f0d',NULL,NULL,NULL,NULL,'90871.46','166192.77',NULL,'256968.85',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'166097.39','-94.45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'354281.48',NULL,NULL,NULL,NULL,NULL,NULL),(137721,141477,1,'May 2022','2022-06-23 06:48:45','2022-06-23 06:48:45','e5f00680-8cdc-4932-94db-2f8629735013',NULL,NULL,NULL,NULL,'90871.46','166192.77',NULL,'256968.85',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'166097.39','-94.45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'354281.48',NULL,NULL,NULL,NULL,NULL,NULL),(137722,141478,1,'Jun 2022','2022-06-23 06:48:47','2022-09-14 23:02:06','5019b7a7-81e9-4867-9bf2-ab6c1240badb',NULL,NULL,NULL,NULL,'26987.54','115582.23',NULL,'365537.69',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'338550.15','222968.88',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'354286.06',NULL,NULL,NULL,NULL,NULL,NULL),(137723,141479,1,'Jun 2022','2022-06-23 06:48:47','2022-06-23 06:48:47','8413c73c-11a2-42f0-9177-178d64c7139d',NULL,NULL,NULL,NULL,'26987.54','115582.23',NULL,'365537.69',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'338550.15','222968.88',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'354286.06',NULL,NULL,NULL,NULL,NULL,NULL),(137727,141483,1,'2f07ff125729035 61255095f2446','2022-06-24 01:07:19','2022-06-24 01:07:19','82ee44d5-57e0-483d-bb09-69b5254c7715',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":[],\"originalImageWidth\":0,\"originalImageHeight\":0,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":0,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137728,141484,1,'IMG 1576','2022-06-24 07:15:31','2022-06-24 07:15:31','4c46bd25-bfb1-49ba-a0bb-3a1e154c99c4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":[],\"originalImageWidth\":0,\"originalImageHeight\":0,\"placeholder\":\"\",\"placeholderSvg\":\"\",\"colorPalette\":[],\"lightness\":0,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137730,141486,1,'RetireAustralia','2022-06-28 00:17:02','2022-08-08 06:17:27','5e0ab1e8-d938-4783-8d68-03013209b904',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The joys of a fully invested, long-term relationship',NULL,NULL,'The more time we spend with a client, the more we can understand and help them. That’s certainly been our experience with retirement village operator RetireAustralia, whom we’ve worked with for many years across all kinds of projects and creative challenges.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W1GF1554qH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48554\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-94Wz43ySiO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Work and campaigns\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"After a number of years being part of on a multi-agency roster, New Word Order won a five-way pitch for the entire account. Responsibilities have included the entire portfolio of new and existing communities, brand projects, lead generation campaigns and strategic marketing direction. \\n\\nOur ongoing partnership has resulted in a truly collaborative relationship that continues to grow and evolve. We’ve produced many ground-breaking campaigns along the way, and if work in progress is any indication, the best is most definitely yet to come.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OcIU8HPpVB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48548\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jFWsNXz77v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48556\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-77KaMezwdw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Full-service offering\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy. Copywriting. Video production. Digital. Design. Photography. Research. Branding. Pretty much every tool in the New Word Order kitbag has been utilised by the RetireAustralia marketing team, such has been the breadth and depth of our working partnership. \\n\\nOur full service agency offering creates the perfect platform for strong collaboration as clients such as RetireAustralia have the confidence that integration and campaign execution from strategy can be executed more efficiently.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UAN0zeDxtY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/238021812?h=67c8a18562&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/238030725?h=4b0966592b&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new3\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/238028973?h=8ad9e0fc70&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xxGuN9crsA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Branding\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"New Word Order’s branding expertise has been integral to the partnership with RetireAustralia. We\'ve fully branded and marketed new communities in their growing portfolio, establishing the right brand values and voice for each particular project. \\n\\nThe masterbrand is also being rigorously reviewed to ensure optimal value is being achieved from RetireAustralia name. We’ve helped them grow brand awareness and stake their claim as a people business first, and property business second. In the backdrop of COVID-19, this has been a significant branding challenge that our partnership team continues to work on together.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-79rgfAlU77\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48555\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-neQVTm36wB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48562\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dT6wu1E3Ly\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48564\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BHWYFYJQXk\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48563\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'The joys of a fully invested, long term relationship','The more time we spend with a client, the more we can understand and help them. That’s certainly been our experience with retirement village operator RetireAustralia, whom we’ve worked with for many years across all kinds of projects and creative challenges.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137731,141487,1,'RetireAustralia','2022-06-28 00:17:03','2022-06-28 00:17:03','e06c95af-025a-49f9-a5c1-cd1fab44dfdf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The joys of a fully invested, long term relationship',NULL,NULL,'The more time we spend with a client, the more we can understand and help them. That’s certainly been our experience with retirement village operator RetireAustralia, whom we’ve worked with for many years across all kinds of projects and creative challenges.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W1GF1554qH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48554\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-94Wz43ySiO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Work and campaigns\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"After a number of years being part of on a multi-agency roster, New Word Order won a five-way pitch for the entire account. Responsibilities have included the entire portfolio of new and existing communities, brand projects, lead generation campaigns and strategic marketing direction. \\n\\nOur ongoing partnership has resulted in a truly collaborative relationship that continues to grow and evolve. We’ve produced many ground-breaking campaigns along the way, and if work in progress is any indication, the best is most definitely yet to come.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OcIU8HPpVB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48548\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jFWsNXz77v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48556\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-77KaMezwdw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Full service offering\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy. Copywriting. Video production. Digital. Design. Photography. Research. Branding. Pretty much every tool in the New Word Order kitbag has been utilised by the RetireAustralia marketing team, such has been the breadth and depth of our working partnership. \\n\\nOur full service agency offering creates the perfect platform for strong collaboration as clients such as RetireAustralia have the confidence that integration and campaign execution from strategy can be executed more efficiently.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UAN0zeDxtY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/238021812?h=67c8a18562&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/238030725?h=4b0966592b&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new3\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/238028973?h=8ad9e0fc70&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xxGuN9crsA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Branding\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"New Word Order’s branding expertise has been integral to the partnership with RetireAustralia. We\'ve fully branded and marketed new communities in their growing portfolio, establishing the right brand values and voice for each particular project. \\n\\nThe masterbrand is also being rigorously reviewed to ensure optimal value is being achieved from RetireAustralia name. We’ve helped them grow brand awareness and stake their claim as a people business first, and property business second. In the backdrop of COVID-19, this has been a significant branding challenge that our partnership team continues to work on together.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-79rgfAlU77\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48555\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-neQVTm36wB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48562\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dT6wu1E3Ly\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48564\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BHWYFYJQXk\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48563\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'The joys of a fully invested, long term relationship','The more time we spend with a client, the more we can understand and help them. That’s certainly been our experience with retirement village operator RetireAustralia, whom we’ve worked with for many years across all kinds of projects and creative challenges.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137733,141489,1,'Are customers giving up on your website?','2022-06-28 00:22:49','2022-06-28 00:22:49','0d6ec3c9-fdc1-47cc-845d-771461e7dc0d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gahB36q3Yd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We’ve all been to websites where trying to make a simple purchase can end in frustration with an impossible-to-navigate website, or, worse for the organisation, to us turning to a competitor. Good web design translates to successful conversions, and all of that is dependent on the user experience.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A great new infographic has found that we’ll give a website a minute to display what we’re looking for before we give up. Some types of sites are better than others in delivering what we’re after – especially hotel booking sites.\\n\\nThe two biggest complaints about web sites, according to the research, include that there is ‘too much going on’ and also ‘not enough information’, which we can take to mean that many sites drone on and on… but don’t really say much.\\n\\nUsers also complain – across all age groups and online skills – that text is too small and that navigation is difficult on the sites they give up on. Thirty-five per cent of users fail to complete simple tasks on the average website.\\n\\nLet’s improve those stats, shall we? Here’s a plan.\\n\\n##### **1. Design from the user’s perspective, not your own**\\n\\nWe know your company is the greatest thing since Google and you can’t wait to tell everyone all about where it began, who works there and the details of your offering. But the truth is that a user just wants to get to the point, and their interests should override yours. Usability is key. Show them what they’re looking for, and don’t make them search for it. That doesn’t mean sacrificing look and feel for too much simplicity, it just means focusing the layout and design on the search.\\n\\n##### **2. Create a navigation path**\\n\\nIf the information on your website is simple and structured, you can guide visitors on the path you’d like them to take. Use tabs and sub-pages for different categories, and make it logical.\\n\\n##### **3. Content is everything**\\n\\nContent is the most important element of your site, really – and it needs to fit the logical and structured navigation. You’ll want to include keywords, page titles, meta tags, and headings for search engine optimisation. As we’ve previously discussed in our Writing for (readable) web article, there are some hallmarks we use when writing web copy for our clients:\\n\\n- short, effective sentences (say the same information with less)\\n- sub-headings and headings containing keywords\\n- everyday words the average reader can easily understand (plain English)\\n- informal voice\\n- common language conventions\\n- direct language\\n- active tense\\n- consistent, logical structuring of information.\\n\\n##### **4. Speed it up and make it simple**\\n\\nLet’s face it, we’re a busy bunch, and a reminder of the old days of dial-up – waiting for your site to load – is going to test the patience of even the most loyal visitor. In fact, many visitors will start to abandon a website after just a few seconds of loading time. Most of that time is the result of design decisions, so simplify some of the fancy effects.\\n\\nWe love web design and working with you on the best and most creative way to present your business. Starting with a structure that appeals to your audience, then adding in some clever design and copy, ensures that your site will be a success. Talk to us about it today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137734,141490,1,'Are customers giving up on your website?','2022-06-28 00:23:53','2022-06-28 00:23:53','5f8d5514-ed49-450d-8dfd-887c1c23cbbc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gahB36q3Yd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We’ve all been to websites where trying to make a simple purchase can end in frustration with an impossible-to-navigate website, or, worse for the organisation, to us turning to a competitor. Good web design translates to successful conversions, and all of that is dependent on the user experience.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A great new infographic has found that we’ll give a website a minute to display what we’re looking for before we give up. Some types of sites are better than others in delivering what we’re after – especially hotel booking sites.\\n\\nThe two biggest complaints about web sites, according to the research, include that there is ‘too much going on’ and also ‘not enough information’, which we can take to mean that many sites drone on and on… but don’t really say much.\\n\\nUsers also complain – across all age groups and online skills – that text is too small and that navigation is difficult on the sites they give up on. Thirty-five per cent of users fail to complete simple tasks on the average website.\\n\\nLet’s improve those stats, shall we? Here’s a plan.\\n\\n##### **1. Design from the user’s perspective, not your own**\\n\\nWe know your company is the greatest thing since Google and you can’t wait to tell everyone all about where it began, who works there and the details of your offering. But the truth is that a user just wants to get to the point, and their interests should override yours. Usability is key. Show them what they’re looking for, and don’t make them search for it. That doesn’t mean sacrificing look and feel for too much simplicity, it just means focusing the layout and design on the search.\\n\\n##### **2. Create a navigation path**\\n\\nIf the information on your website is simple and structured, you can guide visitors on the path you’d like them to take. Use tabs and sub-pages for different categories, and make it logical.\\n\\n##### **3. Content is everything**\\n\\nContent is the most important element of your site, really – and it needs to fit the logical and structured navigation. You’ll want to include keywords, page titles, meta tags, and headings for search engine optimisation. As we’ve previously discussed in our Writing for (readable) web article, there are some hallmarks we use when writing web copy for our clients:\\n\\n- short, effective sentences (say the same information with less)\\n- sub-headings and headings containing keywords\\n- everyday words the average reader can easily understand (plain English)\\n- informal voice\\n- common language conventions\\n- direct language\\n- active tense\\n- consistent, logical structuring of information.\\n\\n##### **4. Speed it up and make it simple**\\n\\nLet’s face it, we’re a busy bunch, and a reminder of the old days of dial-up – waiting for your site to load – is going to test the patience of even the most loyal visitor. In fact, many visitors will start to abandon a website after just a few seconds of loading time. Most of that time is the result of design decisions, so simplify some of the fancy effects.\\n\\nWe love web design and working with you on the best and most creative way to present your business. Starting with a structure that appeals to your audience, then adding in some clever design and copy, ensures that your site will be a success. Talk to us about it today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137737,141493,1,'Glengara Care','2022-06-28 00:39:49','2022-08-08 06:16:07','9e4ab797-c0a5-476f-b98e-ca57baa05a95',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?',NULL,NULL,'That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CIgMzACdNE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141522\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"While Glengara Care has been described as the ‘genuine alternative to aged care’, it often isn’t clear what exactly sets the facility apart from residential aged care facilities. The differentiators ultimately come down to the provision of care: Glengara Care offers care that is personal, loving and delivered in a manner that preserves the recipient’s independence.\\n\\nThe ‘Your Care Factor’ campaign was required to generate leads (and sales) while building awareness around Glengara Care, in comparison to some of the well-known aged care alternatives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gEXzZ5VyHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/716600899?h=4efb4f4cd1&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"GlengaraCare TVC\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The core of the campaign was built from the concept of ‘care’. We drew out two meanings from ‘Your Care Factor’—not only the level of care provided by the facility, but also the decision-making factors that each potential buyer personally cares about. The term ‘care factor’ is deeply familiar, perhaps not so much to the 80+ year old resident market, but more so to their children—the key influencers of this campaign.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141505\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141506\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We created three television commercials that pose the question of ‘What is your care factor?’ by contrasting the realities of people struggling physically and emotionally in a home that doesn’t suit their needs against people receiving the unparalleled care offered at Glengara Care.\\n\\nWhile the videos showcase Glengara Care’s differentiated care offering, the advertisements themselves separate Glengara Care from the alternatives. They’re provocative, fresh and engaging.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3yQnxK2ME5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This project certainly wasn’t an easy one. The final product is the result of fierce determination—both from NWO and RetireAustralia—in the face of adversity such as COVID-19 restrictions, risks and vulnerability. The video shoot was rescheduled numerous times and often our careful planning was swapped out for quick thinking and adaptability.\\nThe end result, however, was worth every bit of effort.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?','That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—through television advertising, to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137738,141494,1,'Burnie Brae','2022-06-28 00:39:50','2022-06-28 00:39:50','ee857eac-2b13-4010-9eba-674d2a345b3a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand that empowers rich lives',NULL,NULL,'What’s a Burnie Brae? That’s the question we needed to answer to help the community organisation create some clarity around their brand as they undertook an exciting brand and website refresh project.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZaXkCuEhzq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140080\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked closely with Burnie Brae to understand their issues and what makes them tick. There was a concern Burnie Brae was lacking meaning, awareness and connection for much of the public they serve, alongside a recognition that the brand was simply a bit ‘tired’ and neglected. \\nAs a branding and strategy specialist, we created a process to uncover some of the truths behind the brand to set the groundwork. Our team conducted a series of research and workshops before embarking on brand direction and narrative development projects.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140065\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With the foundations set, our creative team embarked on refreshing Burnie Brae’s visual identity. The creative concept painted a picture of community connection and explored a distinctive direction for the Burnie Brae brand. We adapted the existing logo and brand colours to build a fresh and recognisable feel.\\nWe redesigned and built a new website, improving the information navigation and creating better user journeys.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140069\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140066\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result has seen Burnie Brae take ownership of a revitalised brand identity that has stronger connections to their stakeholders. The stunning new website is simple to use and takes users on a compelling journey through Burnie Brae’s community service offerings.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137740,141496,1,'GlengaraCare','2022-06-28 00:45:37','2022-06-28 00:45:37','b649286e-c122-4ddd-8238-43089eb6108c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?',NULL,NULL,'That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—through television advertising, to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZaXkCuEhzq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140080\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140065\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"While Glengara Care has been described as the ‘genuine alternative to aged care’, it often isn’t clear what exactly sets the facility apart from residential aged care facilities. The differentiators ultimately come down to the provision of care: Glengara Care offers care that is personal, loving and delivered in a manner that preserves the recipient’s independence.\\nThe ‘Your Care Factor’ campaign was required to generate leads (and sales) while building awareness around Glengara Care, in comparison to some of the well-known aged care alternatives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The core of the campaign was built from the concept of ‘care’. We drew out two meanings from ‘Your Care Factor’—not only the level of care provided by the facility, but also the decision-making factors that each potential buyer personally cares about. The term ‘care factor’ is deeply familiar, perhaps not so much to the 80+ year old resident market, but more so to their children—the key influencers and therefore primary target market of this campaign.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140069\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140066\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We created three television commercials that pose the question of ‘What is your care factor?’ by contrasting the realities of people struggling physically and emotionally in a home that doesn’t suit their needs against people receiving the unparalleled care offered at Glengara Care.\\nWhile the videos showcase Glengara Care’s differentiated care offering, the advertisements themselves separate Glengara Care from the alternatives. They’re provocative, fresh and engaging in a way that directly resonates with the target market—both potential residents and their influencers.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3yQnxK2ME5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This project certainly wasn’t an easy one. The final product is the result of fierce determination—both from NWO and RetireAustralia—in the face of adversity, such as COVID-19 restrictions, risks and vulnerability. The video shoot was rescheduled numerous times and often our careful planning was swapped out for quick thinking and adaptability.\\nThe end result, however, was worth every bit of effort.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137744,141500,1,'GlengaraCare','2022-06-28 01:30:24','2022-06-28 01:30:24','09fdc79f-8d44-46cb-a59a-2428a1f5a41f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?',NULL,NULL,'That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—through television advertising, to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gt3o2x0PKt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"https://vimeo.com/716600899\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140065\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"While Glengara Care has been described as the ‘genuine alternative to aged care’, it often isn’t clear what exactly sets the facility apart from residential aged care facilities. The differentiators ultimately come down to the provision of care: Glengara Care offers care that is personal, loving and delivered in a manner that preserves the recipient’s independence.\\nThe ‘Your Care Factor’ campaign was required to generate leads (and sales) while building awareness around Glengara Care, in comparison to some of the well-known aged care alternatives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The core of the campaign was built from the concept of ‘care’. We drew out two meanings from ‘Your Care Factor’—not only the level of care provided by the facility, but also the decision-making factors that each potential buyer personally cares about. The term ‘care factor’ is deeply familiar, perhaps not so much to the 80+ year old resident market, but more so to their children—the key influencers and therefore primary target market of this campaign.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140069\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140066\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We created three television commercials that pose the question of ‘What is your care factor?’ by contrasting the realities of people struggling physically and emotionally in a home that doesn’t suit their needs against people receiving the unparalleled care offered at Glengara Care.\\nWhile the videos showcase Glengara Care’s differentiated care offering, the advertisements themselves separate Glengara Care from the alternatives. They’re provocative, fresh and engaging in a way that directly resonates with the target market—both potential residents and their influencers.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3yQnxK2ME5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This project certainly wasn’t an easy one. The final product is the result of fierce determination—both from NWO and RetireAustralia—in the face of adversity, such as COVID-19 restrictions, risks and vulnerability. The video shoot was rescheduled numerous times and often our careful planning was swapped out for quick thinking and adaptability.\\nThe end result, however, was worth every bit of effort.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137747,141503,1,NULL,'2022-06-28 01:35:34','2022-06-28 01:36:08','8d8849af-4c07-45e1-b86e-c9efbdc81873',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'green',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137748,141504,1,'22 06 Glengara Care Website','2022-06-28 01:37:49','2022-06-28 01:37:49','58771696-8066-4ba8-bc7e-7bed9dc87d43',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1728_crop_center-center_82_line/22_06-GlengaraCare-Website.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1440_crop_center-center_82_line/22_06-GlengaraCare-Website.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1152_crop_center-center_82_line/22_06-GlengaraCare-Website.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x864_crop_center-center_82_line/22_06-GlengaraCare-Website.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x720_crop_center-center_82_line/22_06-GlengaraCare-Website.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1728_crop_center-center_82_line/22_06-GlengaraCare-Website.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1440_crop_center-center_82_line/22_06-GlengaraCare-Website.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1152_crop_center-center_82_line/22_06-GlengaraCare-Website.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x864_crop_center-center_82_line/22_06-GlengaraCare-Website.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x720_crop_center-center_82_line/22_06-GlengaraCare-Website.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1728,\"1280\":1440,\"1024\":1152,\"768\":864,\"640\":720},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":2000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAASABADAREAAhEBAxEB/8QAFgAAAwAAAAAAAAAAAAAAAAAABAUG/8QAIRAAAgEEAgIDAAAAAAAAAAAAAQIRAAMEEhMhMTJhYrH/xAAYAQEBAQEBAAAAAAAAAAAAAAAAAQIDBP/EABcRAQEBAQAAAAAAAAAAAAAAAAABMRH/2gAMAwEAAhEDEQA/AFCOl1lO0nqdT0aooM047YLWzYW2QCEEd9CZp04i8a4lpigJnYgUJBqZeZyFbvqQR4+KjRa/lD9jWkmikY8ZMmdT+VwmvTcf/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#3f373c\",\"#bbbdc4\",\"#7c777e\",\"#998482\",\"#a49797\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":1728,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137749,141505,1,'22 06 Glengara Care Website2','2022-06-28 01:38:02','2022-06-28 01:38:02','15cf7197-4b97-46e0-8e58-8fcca36594ed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x663_crop_center-center_82_line/22_06-GlengaraCare-Website2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1327_crop_center-center_82_line/22_06-GlengaraCare-Website2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x552_crop_center-center_82_line/22_06-GlengaraCare-Website2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1105_crop_center-center_82_line/22_06-GlengaraCare-Website2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x442_crop_center-center_82_line/22_06-GlengaraCare-Website2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x884_crop_center-center_82_line/22_06-GlengaraCare-Website2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x331_crop_center-center_82_line/22_06-GlengaraCare-Website2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x276_crop_center-center_82_line/22_06-GlengaraCare-Website2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x663_crop_center-center_82_line/22_06-GlengaraCare-Website2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1327_crop_center-center_82_line/22_06-GlengaraCare-Website2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x552_crop_center-center_82_line/22_06-GlengaraCare-Website2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1105_crop_center-center_82_line/22_06-GlengaraCare-Website2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x442_crop_center-center_82_line/22_06-GlengaraCare-Website2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x884_crop_center-center_82_line/22_06-GlengaraCare-Website2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x331_crop_center-center_82_line/22_06-GlengaraCare-Website2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x276_crop_center-center_82_line/22_06-GlengaraCare-Website2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":663,\"3072\":1327,\"1280\":552,\"2560\":1105,\"1024\":442,\"2048\":884,\"768\":331,\"640\":276},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAGABADAREAAhEBAxEB/8QAFAABAAAAAAAAAAAAAAAAAAAABf/EAB0QAAEDBQEAAAAAAAAAAAAAAAECAxEABAUSQSH/xAAWAQEBAQAAAAAAAAAAAAAAAAACAQP/xAAYEQEBAQEBAAAAAAAAAAAAAAABABEhAv/aAAwDAQACEQMRAD8AFOUN3snTWYJHJqnZJONvqLQRbw246lKSYAEjvlZHnVNmnNv/2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#483f43\",\"#d6c5b6\",\"#957c68\",\"#9b9db2\",\"#a9aea0\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":663,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137750,141506,1,'22 06 Glengara Care Website3','2022-06-28 01:38:09','2022-06-28 01:38:09','7352d71c-260a-4515-aee5-e6fffff5cc9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1728_crop_center-center_82_line/22_06-GlengaraCare-Website3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1440_crop_center-center_82_line/22_06-GlengaraCare-Website3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1152_crop_center-center_82_line/22_06-GlengaraCare-Website3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x864_crop_center-center_82_line/22_06-GlengaraCare-Website3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x720_crop_center-center_82_line/22_06-GlengaraCare-Website3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1728_crop_center-center_82_line/22_06-GlengaraCare-Website3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1440_crop_center-center_82_line/22_06-GlengaraCare-Website3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1152_crop_center-center_82_line/22_06-GlengaraCare-Website3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x864_crop_center-center_82_line/22_06-GlengaraCare-Website3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x720_crop_center-center_82_line/22_06-GlengaraCare-Website3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1728,\"1280\":1440,\"1024\":1152,\"768\":864,\"640\":720},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":2000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAASABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAUD/8QAIxAAAgEDBAEFAAAAAAAAAAAAAQIDAAQFERMhMUESIlFxgf/EABgBAAMBAQAAAAAAAAAAAAAAAAACBAMB/8QAHBEAAwEBAAMBAAAAAAAAAAAAAAECIREDEkEx/9oADAMBAAIRAxEAPwCjY5OJ7dQ8h8hefvxWDe8H+hYYtnINIl0jDggngjX5FJUP4zvoyZjojM0lt6wjuDtll6/ao6l+oFPdQvGY+/bJKt2jrbBTuEqAOOuae48aS0Fd9YZQFgt3XhtB7h31Wkb1MV5qNJZ5mikDSuRp0WNS2uVhRGyf/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#a99483\",\"#2f2f43\",\"#dedadf\",\"#6e662f\",\"#643a32\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":1728,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137751,141507,1,'GlengaraCare','2022-06-28 01:38:25','2022-06-28 01:38:25','df9d4d82-2f58-4291-aee4-e568e9ceeb74',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?',NULL,NULL,'That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—through television advertising, to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gEXzZ5VyHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/716600899?h=4efb4f4cd1&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"GlengaraCare TVC\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"While Glengara Care has been described as the ‘genuine alternative to aged care’, it often isn’t clear what exactly sets the facility apart from residential aged care facilities. The differentiators ultimately come down to the provision of care: Glengara Care offers care that is personal, loving and delivered in a manner that preserves the recipient’s independence.\\nThe ‘Your Care Factor’ campaign was required to generate leads (and sales) while building awareness around Glengara Care, in comparison to some of the well-known aged care alternatives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The core of the campaign was built from the concept of ‘care’. We drew out two meanings from ‘Your Care Factor’—not only the level of care provided by the facility, but also the decision-making factors that each potential buyer personally cares about. The term ‘care factor’ is deeply familiar, perhaps not so much to the 80+ year old resident market, but more so to their children—the key influencers and therefore primary target market of this campaign.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141505\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141506\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We created three television commercials that pose the question of ‘What is your care factor?’ by contrasting the realities of people struggling physically and emotionally in a home that doesn’t suit their needs against people receiving the unparalleled care offered at Glengara Care.\\nWhile the videos showcase Glengara Care’s differentiated care offering, the advertisements themselves separate Glengara Care from the alternatives. They’re provocative, fresh and engaging in a way that directly resonates with the target market—both potential residents and their influencers.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3yQnxK2ME5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This project certainly wasn’t an easy one. The final product is the result of fierce determination—both from NWO and RetireAustralia—in the face of adversity, such as COVID-19 restrictions, risks and vulnerability. The video shoot was rescheduled numerous times and often our careful planning was swapped out for quick thinking and adaptability.\\nThe end result, however, was worth every bit of effort.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137753,141509,1,'GlengaraCare','2022-06-28 01:38:40','2022-06-28 01:38:40','d92483e9-5c6c-47d1-9fa7-f7d9856572da',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?',NULL,NULL,'That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—through television advertising, to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gEXzZ5VyHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/716600899?h=4efb4f4cd1&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"GlengaraCare TVC\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"While Glengara Care has been described as the ‘genuine alternative to aged care’, it often isn’t clear what exactly sets the facility apart from residential aged care facilities. The differentiators ultimately come down to the provision of care: Glengara Care offers care that is personal, loving and delivered in a manner that preserves the recipient’s independence.\\nThe ‘Your Care Factor’ campaign was required to generate leads (and sales) while building awareness around Glengara Care, in comparison to some of the well-known aged care alternatives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The core of the campaign was built from the concept of ‘care’. We drew out two meanings from ‘Your Care Factor’—not only the level of care provided by the facility, but also the decision-making factors that each potential buyer personally cares about. The term ‘care factor’ is deeply familiar, perhaps not so much to the 80+ year old resident market, but more so to their children—the key influencers and therefore primary target market of this campaign.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141505\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141506\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We created three television commercials that pose the question of ‘What is your care factor?’ by contrasting the realities of people struggling physically and emotionally in a home that doesn’t suit their needs against people receiving the unparalleled care offered at Glengara Care.\\nWhile the videos showcase Glengara Care’s differentiated care offering, the advertisements themselves separate Glengara Care from the alternatives. They’re provocative, fresh and engaging in a way that directly resonates with the target market—both potential residents and their influencers.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3yQnxK2ME5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This project certainly wasn’t an easy one. The final product is the result of fierce determination—both from NWO and RetireAustralia—in the face of adversity, such as COVID-19 restrictions, risks and vulnerability. The video shoot was rescheduled numerous times and often our careful planning was swapped out for quick thinking and adaptability.\\nThe end result, however, was worth every bit of effort.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137755,141511,1,'About us','2022-06-28 01:51:24','2022-06-28 01:51:24','811d6947-5087-4852-a935-d8ac363c1b3c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17881\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\",\"17921\",\"97259\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | About us','For 20 years we have helped businesses, organisations and governments to solve problems, unlock potential and connect with people to inspire action.','strategy, brand, campaign, behaviour change, engagement, digital, video, content',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137756,141512,1,'GlengaraCare','2022-06-28 02:05:47','2022-06-28 02:05:48','5980dcfe-2abc-45f8-8059-4e48b3167b00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?',NULL,NULL,'That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—through television advertising, to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gEXzZ5VyHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/716600899?h=4efb4f4cd1&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"GlengaraCare TVC\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"While Glengara Care has been described as the ‘genuine alternative to aged care’, it often isn’t clear what exactly sets the facility apart from residential aged care facilities. The differentiators ultimately come down to the provision of care: Glengara Care offers care that is personal, loving and delivered in a manner that preserves the recipient’s independence.\\nThe ‘Your Care Factor’ campaign was required to generate leads (and sales) while building awareness around Glengara Care, in comparison to some of the well-known aged care alternatives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The core of the campaign was built from the concept of ‘care’. We drew out two meanings from ‘Your Care Factor’—not only the level of care provided by the facility, but also the decision-making factors that each potential buyer personally cares about. The term ‘care factor’ is deeply familiar, perhaps not so much to the 80+ year old resident market, but more so to their children—the key influencers and therefore primary target market of this campaign.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141505\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141506\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We created three television commercials that pose the question of ‘What is your care factor?’ by contrasting the realities of people struggling physically and emotionally in a home that doesn’t suit their needs against people receiving the unparalleled care offered at Glengara Care.\\nWhile the videos showcase Glengara Care’s differentiated care offering, the advertisements themselves separate Glengara Care from the alternatives. They’re provocative, fresh and engaging in a way that directly resonates with the target market—both potential residents and their influencers.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3yQnxK2ME5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This project certainly wasn’t an easy one. The final product is the result of fierce determination—both from NWO and RetireAustralia—in the face of adversity, such as COVID-19 restrictions, risks and vulnerability. The video shoot was rescheduled numerous times and often our careful planning was swapped out for quick thinking and adaptability.\\nThe end result, however, was worth every bit of effort.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137758,141514,1,'GlengaraCare','2022-06-28 02:09:04','2022-06-28 02:09:04','cbe460fd-699d-4514-9eaf-c47b5c4cdb2b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?',NULL,NULL,'That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—through television advertising, to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gEXzZ5VyHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/716600899?h=4efb4f4cd1&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"GlengaraCare TVC\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"While Glengara Care has been described as the ‘genuine alternative to aged care’, it often isn’t clear what exactly sets the facility apart from residential aged care facilities. The differentiators ultimately come down to the provision of care: Glengara Care offers care that is personal, loving and delivered in a manner that preserves the recipient’s independence.\\nThe ‘Your Care Factor’ campaign was required to generate leads (and sales) while building awareness around Glengara Care, in comparison to some of the well-known aged care alternatives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The core of the campaign was built from the concept of ‘care’. We drew out two meanings from ‘Your Care Factor’—not only the level of care provided by the facility, but also the decision-making factors that each potential buyer personally cares about. The term ‘care factor’ is deeply familiar, perhaps not so much to the 80+ year old resident market, but more so to their children—the key influencers and therefore primary target market of this campaign.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141505\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141506\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We created three television commercials that pose the question of ‘What is your care factor?’ by contrasting the realities of people struggling physically and emotionally in a home that doesn’t suit their needs against people receiving the unparalleled care offered at Glengara Care.\\nWhile the videos showcase Glengara Care’s differentiated care offering, the advertisements themselves separate Glengara Care from the alternatives. They’re provocative, fresh and engaging in a way that directly resonates with the target market—both potential residents and their influencers.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3yQnxK2ME5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This project certainly wasn’t an easy one. The final product is the result of fierce determination—both from NWO and RetireAustralia—in the face of adversity, such as COVID-19 restrictions, risks and vulnerability. The video shoot was rescheduled numerous times and often our careful planning was swapped out for quick thinking and adaptability.\\nThe end result, however, was worth every bit of effort.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137760,141516,1,'Meet Tim 2','2022-06-28 02:41:32','2022-06-28 02:41:32','15575d2f-6a0f-4eca-a59a-462ef6eb20b2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Meet-Tim-2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Meet-Tim-2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Meet-Tim-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Meet-Tim-2.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Meet-Tim-2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Meet-Tim-2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Meet-Tim-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Meet-Tim-2.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1280,\"originalImageHeight\":1280,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAAIFBv/EACQQAAIBAwMDBQAAAAAAAAAAAAECAwAEEQUSQRMhMTJRYeHw/8QAGAEAAgMAAAAAAAAAAAAAAAAAAgMBBAX/xAAbEQACAwEBAQAAAAAAAAAAAAAAAQIDESExIv/aAAwDAQACEQMRAD8Ag9QpdIcqD3xv9JqpBajStlngCUyPLtLMFx8/uKKUMXBVdrbaZpxawW1ij3oEdvH5ByTuJ9/qmxjiEWz+2k9wURxtpc1zp8KBH5ZipHOBQrqekP3h/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#84422a\",\"#ded8c8\",\"#191715\",\"#e26a57\",\"#a0989b\"],\"lightness\":47,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137766,141522,1,'22 06 Glengara Care Website header','2022-06-28 04:51:13','2022-06-28 04:51:13','8b565aab-a6fd-4d4f-a16b-241681bf54d8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x983_crop_center-center_82_line/22_06-GlengaraCare-Website-header.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1966_crop_center-center_82_line/22_06-GlengaraCare-Website-header.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x819_crop_center-center_82_line/22_06-GlengaraCare-Website-header.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1638_crop_center-center_82_line/22_06-GlengaraCare-Website-header.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x655_crop_center-center_82_line/22_06-GlengaraCare-Website-header.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1310_crop_center-center_82_line/22_06-GlengaraCare-Website-header.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x491_crop_center-center_82_line/22_06-GlengaraCare-Website-header.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x409_crop_center-center_82_line/22_06-GlengaraCare-Website-header.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x983_crop_center-center_82_line/22_06-GlengaraCare-Website-header.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1966_crop_center-center_82_line/22_06-GlengaraCare-Website-header.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x819_crop_center-center_82_line/22_06-GlengaraCare-Website-header.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1638_crop_center-center_82_line/22_06-GlengaraCare-Website-header.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x655_crop_center-center_82_line/22_06-GlengaraCare-Website-header.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1310_crop_center-center_82_line/22_06-GlengaraCare-Website-header.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x491_crop_center-center_82_line/22_06-GlengaraCare-Website-header.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x409_crop_center-center_82_line/22_06-GlengaraCare-Website-header.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":983,\"3072\":1966,\"1280\":819,\"2560\":1638,\"1024\":655,\"2048\":1310,\"768\":491,\"640\":409},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":3333,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABgMF/8QAIhAAAgEDBAIDAAAAAAAAAAAAAQIDABExBRITIQQUIkGy/8QAFwEAAwEAAAAAAAAAAAAAAAAAAQIDAP/EABwRAQEBAAEFAAAAAAAAAAAAAAEAAjIDESExQv/aAAwDAQACEQMRAD8ArHqKQcu6MvGGO1vsWIFJkNVdPYtDySksLOg5FVhcXz3S5RfFtCZiaE+hk5b9Ch9MXiSTSPlGFPaljcHFDHIqdT1f/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#bca392\",\"#30303c\",\"#724129\",\"#e3dfdd\",\"#966238\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":983,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137767,141523,1,'GlengaraCare','2022-06-28 04:51:39','2022-06-28 04:51:39','f9d2da46-ffac-4313-9050-041f1c38a66f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?',NULL,NULL,'That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—through television advertising, to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CIgMzACdNE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141522\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"While Glengara Care has been described as the ‘genuine alternative to aged care’, it often isn’t clear what exactly sets the facility apart from residential aged care facilities. The differentiators ultimately come down to the provision of care: Glengara Care offers care that is personal, loving and delivered in a manner that preserves the recipient’s independence.\\nThe ‘Your Care Factor’ campaign was required to generate leads (and sales) while building awareness around Glengara Care, in comparison to some of the well-known aged care alternatives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gEXzZ5VyHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/716600899?h=4efb4f4cd1&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"GlengaraCare TVC\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The core of the campaign was built from the concept of ‘care’. We drew out two meanings from ‘Your Care Factor’—not only the level of care provided by the facility, but also the decision-making factors that each potential buyer personally cares about. The term ‘care factor’ is deeply familiar, perhaps not so much to the 80+ year old resident market, but more so to their children—the key influencers and therefore primary target market of this campaign.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141505\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141506\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We created three television commercials that pose the question of ‘What is your care factor?’ by contrasting the realities of people struggling physically and emotionally in a home that doesn’t suit their needs against people receiving the unparalleled care offered at Glengara Care.\\nWhile the videos showcase Glengara Care’s differentiated care offering, the advertisements themselves separate Glengara Care from the alternatives. They’re provocative, fresh and engaging in a way that directly resonates with the target market—both potential residents and their influencers.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3yQnxK2ME5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This project certainly wasn’t an easy one. The final product is the result of fierce determination—both from NWO and RetireAustralia—in the face of adversity, such as COVID-19 restrictions, risks and vulnerability. The video shoot was rescheduled numerous times and often our careful planning was swapped out for quick thinking and adaptability.\\nThe end result, however, was worth every bit of effort.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137771,141527,1,'Heres Tim','2022-06-29 01:17:09','2022-06-29 01:31:13','9b76c8d8-ffd5-4128-8e67-b97a97d4932d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x768_crop_center-center_82_line/Heres-Tim.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1536_crop_center-center_82_line/Heres-Tim.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x640_crop_center-center_82_line/Heres-Tim.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1280_crop_center-center_82_line/Heres-Tim.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x512_crop_center-center_82_line/Heres-Tim.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1024_crop_center-center_82_line/Heres-Tim.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x384_crop_center-center_82_line/Heres-Tim.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x320_crop_center-center_82_line/Heres-Tim.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x768_crop_center-center_82_line/Heres-Tim.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1536_crop_center-center_82_line/Heres-Tim.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x640_crop_center-center_82_line/Heres-Tim.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1280_crop_center-center_82_line/Heres-Tim.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x512_crop_center-center_82_line/Heres-Tim.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1024_crop_center-center_82_line/Heres-Tim.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x384_crop_center-center_82_line/Heres-Tim.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x320_crop_center-center_82_line/Heres-Tim.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"3072\":1536,\"1280\":640,\"2560\":1280,\"1024\":512,\"2048\":1024,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":3333,\"originalImageHeight\":1667,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAIABADAREAAhEBAxEB/8QAFAABAAAAAAAAAAAAAAAAAAAABP/EACMQAAAFAgYDAAAAAAAAAAAAAAECAwQRABIFExUhIjFRYbH/xAAWAQEBAQAAAAAAAAAAAAAAAAAEAgP/xAAZEQADAQEBAAAAAAAAAAAAAAAAAREDAhL/2gAMAwEAAhEDEQA/AA6a4tuzCgUee8zEeKMuVIM01fpwcV88JigswVUOqr1ER6+Vazqpm9FUj//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#8a4b36\",\"#23272c\",\"#ebddc2\",\"#de7658\",\"#aea4a2\"],\"lightness\":46,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137777,141533,1,'Let us introduce ourselves','2022-06-29 01:35:57','2023-03-31 03:56:54','179197b1-1eb8-4d51-b8a6-d8d10e6ace18',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BzHWrSBA3q\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Bree\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Every office needs that go-to team member who knows how to get things done. Funny thing is, our Gen Z, Taylor-Swift-obsessed, go-to colleague claims she never achieves anything.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hwKmyKwtae\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143135\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FVFWZuA5kZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Why does she say she accomplishes nothing when she appears to be one of the all-time great multi-taskers? \\n\\nWell, she has started a thousand things in her life and never completed any of them. Piano, cello, netball, volleyball, basketball, writing novels, writing poetry, acting, dancing, acrobatics, choir—all have been tried, failed and given up forever.\\n\\nIt’s just as well because, as someone who has more job titles than Scott Morrison in a pandemic, we need her in the office. We’re not sure what’s on her business card but she acts as our junior copywriter, production coordinator, chief proofreader, project manager, office manager and social club vice-president.\\n\\nBree may be our youngest employee but her list of accomplishments belies her years. She’s already watched all 412 episodes of Grey’s Anatomy, which she feels should entitle her to an honorary medical degree. She’s also memorised every single lyric of every Taylor Swift song. That particular obsession runs to attending three of her concerts (and counting) and two tattoos referencing her music (and counting). Oh yes: and she just finished her under-graduate degree in business at QUT.\\n\\nHer cooking skills are non-existent, but luckily Bree lives the inner-city life, so a poke bowl or dumpling shop is never too far away. There’s also the occasional Macca’s feed after hitting the Valley nightclubs—whose menu she can recite by heart, thanks to her teen years spent in the Drive Thru trenches.\\n\\nIf you can’t find her in the office, just follow the sound of someone talking about the latest Netflix series. Then just give her a job to do and watch her get to it … well, straight after she’s finished listening to TayTay’s latest release. The girl has priorities, you know.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CYlWxVLWd4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Liam\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We thought we hired an award-winning advertising copywriter. But we ended up with so much more: a ska band ex-roadie, an optimistic golfer and a brave, crustacean-battling chef. \\n\\nNow that’s value.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wZCcn69t8v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142939\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CCjcrDQfKO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Liam was born and raised in Brisbane but escaped the oppressive heat to live in London and Hong Kong (and then found it again in Guam) for seven years.\\n\\nNow back in his hometown, he carries with him the secrets of a journey well-travelled—from paying his way through uni as a roadie for ska band The Furious Turtles, to winning Australian and international advertising and production copywriting awards throughout his career. \\n\\nWe’re sure we can thank his time on the road—it\'s classified but imaginably riddled with life-altering stories—for the effortless creativity he brings day to day. Second to that, maybe also his time at industry-renowned AWARD School.\\n\\nSpeaking of formative experiences, Liam’s gruff exterior was carefully constructed back in his boarding school days, when he was an easy target as the only soft city kid among a sea of tough country kids. \\n\\nHe quickly discovered that no amount of skiing holidays or golfing hole-in-ones (current tally: zero from 50,000 attempts) could win the respect of teenage bogans. A lesson in humility for Liam, perhaps—we’ve all been there at some point. \\n\\nDespite his otherwise bourgeois-sounding life where the (golfing) green is grassier, Liam actually knows all about the importance of sacrifice. \\n\\nAfter all, he cooks his famous garlic prawns every year for his family Christmas (and last year for the NWO Christmas) despite his drastic, ironic and tragic crustacean allergy. When he defeats the prawns, they defeat him right back.\\n\\nYou can actually cook the dish yourself following his not-so-secret recipe  <a href=\\\"https://newwordorder.com.au/lp/christmas-2021\\\">here.</a> It’s delicious—you can’t take Liam’s word for it, of course, but you can take ours.\\n\\nHe has cooking all locked down, but he’ll be the first to tell you cleaning isn’t his area of expertise. We can’t have everything. No reason to fret, though—isn’t that what kids are for? And he’s got four of them, so he’s very good at delegating.\\n\\nA of couple residents in his household live it lush and chore-free, though: his 50kg Irish Wolfhound, Luna, and his 8kg Cavoodle, Rusty. In fact, they’ve delegated to Liam the chore of walking them every morning. \\n\\nThose gorgeous dogs are part of what we love about Liam, along with his dry sense of humour, his endless creative expertise and his penchant for telling a good story—whether it’s through an ad script, or just a weekend anecdote.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and the Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lwRZRhzi23\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EHGcch1Nd8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141527\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Every office needs that go-to team member who knows how to get things done. Funny thing is, our Gen Z, Taylor-Swift-obsessed, \'go-to colleague\' claims she never gets anything done.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137778,141534,1,'NWO logo','2022-06-29 01:44:43','2022-06-29 01:44:43','00c683ac-6f72-4855-b163-6a29f17a4b15',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/NWO-logo.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/NWO-logo.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/NWO-logo.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/NWO-logo.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/NWO-logo.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/NWO-logo.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/NWO-logo.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/NWO-logo.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/NWO-logo.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/NWO-logo.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1667,\"originalImageHeight\":1667,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABAX/xAAiEAABAwQCAgMAAAAAAAAAAAABAgMEAAUREiExQXEkMpH/xAAWAQEBAQAAAAAAAAAAAAAAAAAEBQL/xAAeEQACAwEBAAMBAAAAAAAAAAABAgADEQQSISJhcf/aAAwDAQACEQMRAD8AhNXNx9S49rilLi8Yc2yB+1u1ndvs2gfkxZTzWr814f6YS8tTNfmvbqb6GoGM+qQ/KErLgwtAStvKLmyxOs6INufuMBwsKja7I5IXk48nxU6ly27LfZSleeRDtMyb7EK5BDST9VhIO3PPXqn2dalCgEg9LNy+XI3dn//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#f96454\",\"#040505\",\"#05da7c\",\"#0645c9\",\"#e8edf2\"],\"lightness\":42,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137779,141535,1,'NWO logo','2022-06-29 01:46:37','2022-06-29 01:46:37','748d1835-f373-4947-bc40-086bac718800',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/NWO-logo_2022-06-29-014636_ronb.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/NWO-logo_2022-06-29-014636_ronb.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/NWO-logo_2022-06-29-014636_ronb.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/NWO-logo_2022-06-29-014636_ronb.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/NWO-logo_2022-06-29-014636_ronb.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/NWO-logo_2022-06-29-014636_ronb.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/NWO-logo_2022-06-29-014636_ronb.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/NWO-logo_2022-06-29-014636_ronb.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/NWO-logo_2022-06-29-014636_ronb.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/NWO-logo_2022-06-29-014636_ronb.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1600,\"originalImageHeight\":1600,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAZABkAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABAX/xAAiEAABAwQCAgMAAAAAAAAAAAABAgMEAAUREiExQXEkMpH/xAAWAQEBAQAAAAAAAAAAAAAAAAAEBQL/xAAeEQACAwEBAAMBAAAAAAAAAAABAgADEQQSISJhcf/aAAwDAQACEQMRAD8AhNXNx5S49rilLi8Yc2yB+1u1ndvs2gfkxZTzWr814f6YS8tTNfmvbqb6Go4z6pD8oSsuDC0BK28oubLE2zog25+4wHCwY2uyOTvk48nxU6ly27LfZSleeRDtMyb7EK3yGkn6rCQdueevVPs61KFAJB6Wbl8uRu7P/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#f9644d\",\"#050505\",\"#06da7d\",\"#0544c8\",\"#eaeff2\"],\"lightness\":42,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137780,141536,1,'Heres Tim','2022-06-29 01:49:10','2022-06-29 01:49:10','72e8fa44-8692-40f6-9bb2-ba08815745b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x768_crop_center-center_82_line/Heres-Tim_2022-06-29-014909_sdpk.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1536_crop_center-center_82_line/Heres-Tim_2022-06-29-014909_sdpk.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x640_crop_center-center_82_line/Heres-Tim_2022-06-29-014909_sdpk.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1280_crop_center-center_82_line/Heres-Tim_2022-06-29-014909_sdpk.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x512_crop_center-center_82_line/Heres-Tim_2022-06-29-014909_sdpk.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1024_crop_center-center_82_line/Heres-Tim_2022-06-29-014909_sdpk.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x384_crop_center-center_82_line/Heres-Tim_2022-06-29-014909_sdpk.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x320_crop_center-center_82_line/Heres-Tim_2022-06-29-014909_sdpk.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x768_crop_center-center_82_line/Heres-Tim_2022-06-29-014909_sdpk.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1536_crop_center-center_82_line/Heres-Tim_2022-06-29-014909_sdpk.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x640_crop_center-center_82_line/Heres-Tim_2022-06-29-014909_sdpk.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1280_crop_center-center_82_line/Heres-Tim_2022-06-29-014909_sdpk.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x512_crop_center-center_82_line/Heres-Tim_2022-06-29-014909_sdpk.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1024_crop_center-center_82_line/Heres-Tim_2022-06-29-014909_sdpk.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x384_crop_center-center_82_line/Heres-Tim_2022-06-29-014909_sdpk.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x320_crop_center-center_82_line/Heres-Tim_2022-06-29-014909_sdpk.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"3072\":1536,\"1280\":640,\"2560\":1280,\"1024\":512,\"2048\":1024,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":3333,\"originalImageHeight\":1667,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAIABADAREAAhEBAxEB/8QAFAABAAAAAAAAAAAAAAAAAAAABP/EACMQAAAFAgYDAAAAAAAAAAAAAAECAwQRABIFExUhIjFRYbH/xAAWAQEBAQAAAAAAAAAAAAAAAAAEAgP/xAAZEQADAQEBAAAAAAAAAAAAAAAAAREDAhL/2gAMAwEAAhEDEQA/AA6a4tuzCgUee8zEeKMuVIM01fpwcV88JigswVUOqr1ER6+Vazqpm9FUj//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#8a4b36\",\"#23272c\",\"#ebddc2\",\"#de7758\",\"#aea4a2\"],\"lightness\":46,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137782,141538,1,'Nwo background','2022-06-29 01:56:06','2022-06-30 05:32:08','f4ed647d-40e1-40ce-b91f-372477e55b57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/nwo-background.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/nwo-background.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/nwo-background.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/nwo-background.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/nwo-background.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/nwo-background.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/nwo-background.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/nwo-background.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/nwo-background.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/nwo-background.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/nwo-background.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/nwo-background.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/nwo-background.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/nwo-background.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/nwo-background.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/nwo-background.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":8000,\"originalImageHeight\":4500,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAwQF/8QAJBAAAQMDAQkAAAAAAAAAAAAAAgEDBAAFERIUITQ2QWFydLH/xAAYAQADAQEAAAAAAAAAAAAAAAACAwUEBv/EACIRAAEDAgYDAAAAAAAAAAAAAAEAAgMEEQUSITEzcRM0Qf/aAAwDAQACEQMRAD8AzLqMp9uRFjNnIYJR0OkY5TqucUJyMIBFilsjmrXNqPguEcTao0dyTFaQwEVIh1YRURN698VSrHROj8Y3QUchjkz320tfVX2ngz8l+VixTmHSrYTwHtC1yufrlSRuuWZ7x7K//9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#f96353\",\"#0543c9\",\"#04d97b\",\"#040404\",\"#f4f7f7\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137791,141547,1,'GlengaraCare','2022-06-29 02:09:39','2022-06-29 02:09:39','0c5fc39f-87ad-4ab7-bbce-d8b27e841a63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?',NULL,NULL,'That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—through television advertising, to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CIgMzACdNE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141522\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"While Glengara Care has been described as the ‘genuine alternative to aged care’, it often isn’t clear what exactly sets the facility apart from residential aged care facilities. The differentiators ultimately come down to the provision of care: Glengara Care offers care that is personal, loving and delivered in a manner that preserves the recipient’s independence.\\nThe ‘Your Care Factor’ campaign was required to generate leads (and sales) while building awareness around Glengara Care, in comparison to some of the well-known aged care alternatives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gEXzZ5VyHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/716600899?h=4efb4f4cd1&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"GlengaraCare TVC\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The core of the campaign was built from the concept of ‘care’. We drew out two meanings from ‘Your Care Factor’—not only the level of care provided by the facility, but also the decision-making factors that each potential buyer personally cares about. The term ‘care factor’ is deeply familiar, perhaps not so much to the 80+ year old resident market, but more so to their children—the key influencers and therefore primary target market of this campaign.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141505\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141506\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We created three television commercials that pose the question of ‘What is your care factor?’ by contrasting the realities of people struggling physically and emotionally in a home that doesn’t suit their needs against people receiving the unparalleled care offered at Glengara Care.\\nWhile the videos showcase Glengara Care’s differentiated care offering, the advertisements themselves separate Glengara Care from the alternatives. They’re provocative, fresh and engaging in a way that directly resonates with the target market—both potential residents and their influencers.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3yQnxK2ME5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This project certainly wasn’t an easy one. The final product is the result of fierce determination—both from NWO and RetireAustralia—in the face of adversity, such as COVID-19 restrictions, risks and vulnerability. The video shoot was rescheduled numerous times and often our careful planning was swapped out for quick thinking and adaptability.\\nThe end result, however, was worth every bit of effort.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137794,141550,1,'GlengaraCare','2022-06-29 02:23:00','2022-06-29 02:23:00','b2641c03-261f-4c26-b962-746b54521d73',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?',NULL,NULL,'That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—through television advertising, to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CIgMzACdNE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141522\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"While Glengara Care has been described as the ‘genuine alternative to aged care’, it often isn’t clear what exactly sets the facility apart from residential aged care facilities. The differentiators ultimately come down to the provision of care: Glengara Care offers care that is personal, loving and delivered in a manner that preserves the recipient’s independence.\\nThe ‘Your Care Factor’ campaign was required to generate leads (and sales) while building awareness around Glengara Care, in comparison to some of the well-known aged care alternatives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gEXzZ5VyHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/716600899?h=4efb4f4cd1&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"GlengaraCare TVC\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The core of the campaign was built from the concept of ‘care’. We drew out two meanings from ‘Your Care Factor’—not only the level of care provided by the facility, but also the decision-making factors that each potential buyer personally cares about. The term ‘care factor’ is deeply familiar, perhaps not so much to the 80+ year old resident market, but more so to their children—the key influencers and therefore primary target market of this campaign.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141505\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141506\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We created three television commercials that pose the question of ‘What is your care factor?’ by contrasting the realities of people struggling physically and emotionally in a home that doesn’t suit their needs against people receiving the unparalleled care offered at Glengara Care.\\nWhile the videos showcase Glengara Care’s differentiated care offering, the advertisements themselves separate Glengara Care from the alternatives. They’re provocative, fresh and engaging in a way that directly resonates with the target market—both potential residents and their influencers.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3yQnxK2ME5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This project certainly wasn’t an easy one. The final product is the result of fierce determination—both from NWO and RetireAustralia—in the face of adversity, such as COVID-19 restrictions, risks and vulnerability. The video shoot was rescheduled numerous times and often our careful planning was swapped out for quick thinking and adaptability.\\nThe end result, however, was worth every bit of effort.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137795,141551,1,'GlengaraCare','2022-06-29 02:23:52','2022-06-29 02:23:52','f711d9ac-408d-4b22-a89a-f5a1f641aa27',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?',NULL,NULL,'That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—through television advertising, to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CIgMzACdNE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141522\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"While Glengara Care has been described as the ‘genuine alternative to aged care’, it often isn’t clear what exactly sets the facility apart from residential aged care facilities. The differentiators ultimately come down to the provision of care: Glengara Care offers care that is personal, loving and delivered in a manner that preserves the recipient’s independence.\\nThe ‘Your Care Factor’ campaign was required to generate leads (and sales) while building awareness around Glengara Care, in comparison to some of the well-known aged care alternatives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gEXzZ5VyHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/716600899?h=4efb4f4cd1&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"GlengaraCare TVC\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The core of the campaign was built from the concept of ‘care’. We drew out two meanings from ‘Your Care Factor’—not only the level of care provided by the facility, but also the decision-making factors that each potential buyer personally cares about. The term ‘care factor’ is deeply familiar, perhaps not so much to the 80+ year old resident market, but more so to their children—the key influencers and therefore primary target market of this campaign.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141505\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141506\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We created three television commercials that pose the question of ‘What is your care factor?’ by contrasting the realities of people struggling physically and emotionally in a home that doesn’t suit their needs against people receiving the unparalleled care offered at Glengara Care.\\nWhile the videos showcase Glengara Care’s differentiated care offering, the advertisements themselves separate Glengara Care from the alternatives. They’re provocative, fresh and engaging in a way that directly resonates with the target market—both potential residents and their influencers.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3yQnxK2ME5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This project certainly wasn’t an easy one. The final product is the result of fierce determination—both from NWO and RetireAustralia—in the face of adversity, such as COVID-19 restrictions, risks and vulnerability. The video shoot was rescheduled numerous times and often our careful planning was swapped out for quick thinking and adaptability.\\nThe end result, however, was worth every bit of effort.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'GlengaraCare',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137797,141553,1,'RetireAustralia','2022-06-29 02:24:04','2022-06-29 02:24:04','2bb2368e-85c6-4668-88b6-91de7ee0dfd7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The joys of a fully invested, long term relationship',NULL,NULL,'The more time we spend with a client, the more we can understand and help them. That’s certainly been our experience with retirement village operator RetireAustralia, whom we’ve worked with for many years across all kinds of projects and creative challenges.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W1GF1554qH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48554\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-94Wz43ySiO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Work and campaigns\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"After a number of years being part of on a multi-agency roster, New Word Order won a five-way pitch for the entire account. Responsibilities have included the entire portfolio of new and existing communities, brand projects, lead generation campaigns and strategic marketing direction. \\n\\nOur ongoing partnership has resulted in a truly collaborative relationship that continues to grow and evolve. We’ve produced many ground-breaking campaigns along the way, and if work in progress is any indication, the best is most definitely yet to come.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OcIU8HPpVB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48548\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jFWsNXz77v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48556\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-77KaMezwdw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Full service offering\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy. Copywriting. Video production. Digital. Design. Photography. Research. Branding. Pretty much every tool in the New Word Order kitbag has been utilised by the RetireAustralia marketing team, such has been the breadth and depth of our working partnership. \\n\\nOur full service agency offering creates the perfect platform for strong collaboration as clients such as RetireAustralia have the confidence that integration and campaign execution from strategy can be executed more efficiently.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UAN0zeDxtY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/238021812?h=67c8a18562&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/238030725?h=4b0966592b&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new3\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/238028973?h=8ad9e0fc70&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xxGuN9crsA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Branding\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"New Word Order’s branding expertise has been integral to the partnership with RetireAustralia. We\'ve fully branded and marketed new communities in their growing portfolio, establishing the right brand values and voice for each particular project. \\n\\nThe masterbrand is also being rigorously reviewed to ensure optimal value is being achieved from RetireAustralia name. We’ve helped them grow brand awareness and stake their claim as a people business first, and property business second. In the backdrop of COVID-19, this has been a significant branding challenge that our partnership team continues to work on together.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-79rgfAlU77\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48555\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-neQVTm36wB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48562\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dT6wu1E3Ly\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48564\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BHWYFYJQXk\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48563\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'The joys of a fully invested, long term relationship','The more time we spend with a client, the more we can understand and help them. That’s certainly been our experience with retirement village operator RetireAustralia, whom we’ve worked with for many years across all kinds of projects and creative challenges.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137798,141554,1,'Burnie Brae','2022-06-29 02:24:20','2022-06-29 02:24:20','55bbd8dc-eec8-42c6-b5cc-3dc88547695f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand that empowers rich lives',NULL,NULL,'What’s a Burnie Brae? That’s the question we needed to answer to help the community organisation create some clarity around their brand as they undertook an exciting brand and website refresh project.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZaXkCuEhzq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140080\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked closely with Burnie Brae to understand their issues and what makes them tick. There was a concern Burnie Brae was lacking meaning, awareness and connection for much of the public they serve, alongside a recognition that the brand was simply a bit ‘tired’ and neglected. \\nAs a branding and strategy specialist, we created a process to uncover some of the truths behind the brand to set the groundwork. Our team conducted a series of research and workshops before embarking on brand direction and narrative development projects.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140065\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With the foundations set, our creative team embarked on refreshing Burnie Brae’s visual identity. The creative concept painted a picture of community connection and explored a distinctive direction for the Burnie Brae brand. We adapted the existing logo and brand colours to build a fresh and recognisable feel.\\nWe redesigned and built a new website, improving the information navigation and creating better user journeys.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140069\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140066\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result has seen Burnie Brae take ownership of a revitalised brand identity that has stronger connections to their stakeholders. The stunning new website is simple to use and takes users on a compelling journey through Burnie Brae’s community service offerings.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'A brand that empowers rich lives','What’s a Burnie Brae? That’s the question we needed to answer to help the community organisation create some clarity around their brand as they undertook an exciting brand and website refresh project.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137800,141556,1,'GlengaraCare','2022-06-29 02:24:35','2022-06-29 02:24:35','3251c7dc-67bc-4beb-a5eb-67eac91b609f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?',NULL,NULL,'That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—through television advertising, to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CIgMzACdNE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141522\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"While Glengara Care has been described as the ‘genuine alternative to aged care’, it often isn’t clear what exactly sets the facility apart from residential aged care facilities. The differentiators ultimately come down to the provision of care: Glengara Care offers care that is personal, loving and delivered in a manner that preserves the recipient’s independence.\\nThe ‘Your Care Factor’ campaign was required to generate leads (and sales) while building awareness around Glengara Care, in comparison to some of the well-known aged care alternatives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gEXzZ5VyHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/716600899?h=4efb4f4cd1&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"GlengaraCare TVC\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The core of the campaign was built from the concept of ‘care’. We drew out two meanings from ‘Your Care Factor’—not only the level of care provided by the facility, but also the decision-making factors that each potential buyer personally cares about. The term ‘care factor’ is deeply familiar, perhaps not so much to the 80+ year old resident market, but more so to their children—the key influencers and therefore primary target market of this campaign.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141505\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141506\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We created three television commercials that pose the question of ‘What is your care factor?’ by contrasting the realities of people struggling physically and emotionally in a home that doesn’t suit their needs against people receiving the unparalleled care offered at Glengara Care.\\nWhile the videos showcase Glengara Care’s differentiated care offering, the advertisements themselves separate Glengara Care from the alternatives. They’re provocative, fresh and engaging in a way that directly resonates with the target market—both potential residents and their influencers.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3yQnxK2ME5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This project certainly wasn’t an easy one. The final product is the result of fierce determination—both from NWO and RetireAustralia—in the face of adversity, such as COVID-19 restrictions, risks and vulnerability. The video shoot was rescheduled numerous times and often our careful planning was swapped out for quick thinking and adaptability.\\nThe end result, however, was worth every bit of effort.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?','That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—through television advertising, to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137802,141558,1,'GlengaraCare','2022-06-29 03:24:16','2022-06-29 03:24:16','661715ed-3d84-4975-b948-0b53c1dd200d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?',NULL,NULL,'That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CIgMzACdNE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141522\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"While Glengara Care has been described as the ‘genuine alternative to aged care’, it often isn’t clear what exactly sets the facility apart from residential aged care facilities. The differentiators ultimately come down to the provision of care: Glengara Care offers care that is personal, loving and delivered in a manner that preserves the recipient’s independence.\\n\\nThe ‘Your Care Factor’ campaign was required to generate leads (and sales) while building awareness around Glengara Care, in comparison to some of the well-known aged care alternatives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gEXzZ5VyHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/716600899?h=4efb4f4cd1&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"GlengaraCare TVC\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The core of the campaign was built from the concept of ‘care’. We drew out two meanings from ‘Your Care Factor’—not only the level of care provided by the facility, but also the decision-making factors that each potential buyer personally cares about. The term ‘care factor’ is deeply familiar, perhaps not so much to the 80+ year old resident market, but more so to their children—the key of this campaign.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141505\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141506\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We created three television commercials that pose the question of ‘What is your care factor?’ by contrasting the realities of people struggling physically and emotionally in a home that doesn’t suit their needs against people receiving the unparalleled care offered at Glengara Care.\\n\\nWhile the videos showcase Glengara Care’s differentiated care offering, the advertisements themselves separate Glengara Care from the alternatives. They’re provocative, fresh and engaging.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3yQnxK2ME5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This project certainly wasn’t an easy one. The final product is the result of fierce determination—both from NWO and RetireAustralia—in the face of adversity such as COVID-19 restrictions, risks and vulnerability. The video shoot was rescheduled numerous times and often our careful planning was swapped out for quick thinking and adaptability.\\nThe end result, however, was worth every bit of effort.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?','That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—through television advertising, to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137804,141560,1,'GlengaraCare','2022-06-29 03:26:33','2022-06-29 03:26:33','b49aed29-b857-4600-b73c-d7a03f9534ed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?',NULL,NULL,'That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CIgMzACdNE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141522\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"While Glengara Care has been described as the ‘genuine alternative to aged care’, it often isn’t clear what exactly sets the facility apart from residential aged care facilities. The differentiators ultimately come down to the provision of care: Glengara Care offers care that is personal, loving and delivered in a manner that preserves the recipient’s independence.\\n\\nThe ‘Your Care Factor’ campaign was required to generate leads (and sales) while building awareness around Glengara Care, in comparison to some of the well-known aged care alternatives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gEXzZ5VyHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/716600899?h=4efb4f4cd1&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"GlengaraCare TVC\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The core of the campaign was built from the concept of ‘care’. We drew out two meanings from ‘Your Care Factor’—not only the level of care provided by the facility, but also the decision-making factors that each potential buyer personally cares about. The term ‘care factor’ is deeply familiar, perhaps not so much to the 80+ year old resident market, but more so to their children—the key of this campaign.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141505\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141506\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We created three television commercials that pose the question of ‘What is your care factor?’ by contrasting the realities of people struggling physically and emotionally in a home that doesn’t suit their needs against people receiving the unparalleled care offered at Glengara Care.\\n\\nWhile the videos showcase Glengara Care’s differentiated care offering, the advertisements themselves separate Glengara Care from the alternatives. They’re provocative, fresh and engaging.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3yQnxK2ME5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This project certainly wasn’t an easy one. The final product is the result of fierce determination—both from NWO and RetireAustralia—in the face of adversity such as COVID-19 restrictions, risks and vulnerability. The video shoot was rescheduled numerous times and often our careful planning was swapped out for quick thinking and adaptability.\\nThe end result, however, was worth every bit of effort.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?','That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—through television advertising, to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137806,141562,1,'GlengaraCare','2022-06-29 03:36:53','2022-06-29 03:36:53','ab91545d-e241-47b7-ae16-f8273bc84f66',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?',NULL,NULL,'That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CIgMzACdNE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141522\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"While Glengara Care has been described as the ‘genuine alternative to aged care’, it often isn’t clear what exactly sets the facility apart from residential aged care facilities. The differentiators ultimately come down to the provision of care: Glengara Care offers care that is personal, loving and delivered in a manner that preserves the recipient’s independence.\\n\\nThe ‘Your Care Factor’ campaign was required to generate leads (and sales) while building awareness around Glengara Care, in comparison to some of the well-known aged care alternatives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gEXzZ5VyHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/716600899?h=4efb4f4cd1&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"GlengaraCare TVC\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The core of the campaign was built from the concept of ‘care’. We drew out two meanings from ‘Your Care Factor’—not only the level of care provided by the facility, but also the decision-making factors that each potential buyer personally cares about. The term ‘care factor’ is deeply familiar, perhaps not so much to the 80+ year old resident market, but more so to their children—the key influencers of this campaign.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141505\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141506\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We created three television commercials that pose the question of ‘What is your care factor?’ by contrasting the realities of people struggling physically and emotionally in a home that doesn’t suit their needs against people receiving the unparalleled care offered at Glengara Care.\\n\\nWhile the videos showcase Glengara Care’s differentiated care offering, the advertisements themselves separate Glengara Care from the alternatives. They’re provocative, fresh and engaging.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3yQnxK2ME5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This project certainly wasn’t an easy one. The final product is the result of fierce determination—both from NWO and RetireAustralia—in the face of adversity such as COVID-19 restrictions, risks and vulnerability. The video shoot was rescheduled numerous times and often our careful planning was swapped out for quick thinking and adaptability.\\nThe end result, however, was worth every bit of effort.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?','That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—through television advertising, to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137811,141567,1,'Glengara Care','2022-06-29 04:05:49','2022-06-29 04:05:49','72c75f35-2aa0-4a1d-8147-6b197d96bb1a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?',NULL,NULL,'That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CIgMzACdNE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141522\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"While Glengara Care has been described as the ‘genuine alternative to aged care’, it often isn’t clear what exactly sets the facility apart from residential aged care facilities. The differentiators ultimately come down to the provision of care: Glengara Care offers care that is personal, loving and delivered in a manner that preserves the recipient’s independence.\\n\\nThe ‘Your Care Factor’ campaign was required to generate leads (and sales) while building awareness around Glengara Care, in comparison to some of the well-known aged care alternatives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gEXzZ5VyHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/716600899?h=4efb4f4cd1&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"GlengaraCare TVC\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The core of the campaign was built from the concept of ‘care’. We drew out two meanings from ‘Your Care Factor’—not only the level of care provided by the facility, but also the decision-making factors that each potential buyer personally cares about. The term ‘care factor’ is deeply familiar, perhaps not so much to the 80+ year old resident market, but more so to their children—the key influencers of this campaign.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141505\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141506\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We created three television commercials that pose the question of ‘What is your care factor?’ by contrasting the realities of people struggling physically and emotionally in a home that doesn’t suit their needs against people receiving the unparalleled care offered at Glengara Care.\\n\\nWhile the videos showcase Glengara Care’s differentiated care offering, the advertisements themselves separate Glengara Care from the alternatives. They’re provocative, fresh and engaging.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3yQnxK2ME5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This project certainly wasn’t an easy one. The final product is the result of fierce determination—both from NWO and RetireAustralia—in the face of adversity such as COVID-19 restrictions, risks and vulnerability. The video shoot was rescheduled numerous times and often our careful planning was swapped out for quick thinking and adaptability.\\nThe end result, however, was worth every bit of effort.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?','That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—through television advertising, to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137813,141569,1,'Glengara Care','2022-06-29 04:06:22','2022-06-29 04:06:22','d4c42c43-e5e3-42f5-acd1-54886a92aad3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?',NULL,NULL,'That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CIgMzACdNE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141522\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"While Glengara Care has been described as the ‘genuine alternative to aged care’, it often isn’t clear what exactly sets the facility apart from residential aged care facilities. The differentiators ultimately come down to the provision of care: Glengara Care offers care that is personal, loving and delivered in a manner that preserves the recipient’s independence.\\n\\nThe ‘Your Care Factor’ campaign was required to generate leads (and sales) while building awareness around Glengara Care, in comparison to some of the well-known aged care alternatives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gEXzZ5VyHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/716600899?h=4efb4f4cd1&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"GlengaraCare TVC\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The core of the campaign was built from the concept of ‘care’. We drew out two meanings from ‘Your Care Factor’—not only the level of care provided by the facility, but also the decision-making factors that each potential buyer personally cares about. The term ‘care factor’ is deeply familiar, perhaps not so much to the 80+ year old resident market, but more so to their children—the key influencers of this campaign.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141505\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141506\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We created three television commercials that pose the question of ‘What is your care factor?’ by contrasting the realities of people struggling physically and emotionally in a home that doesn’t suit their needs against people receiving the unparalleled care offered at Glengara Care.\\n\\nWhile the videos showcase Glengara Care’s differentiated care offering, the advertisements themselves separate Glengara Care from the alternatives. They’re provocative, fresh and engaging.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3yQnxK2ME5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This project certainly wasn’t an easy one. The final product is the result of fierce determination—both from NWO and RetireAustralia—in the face of adversity such as COVID-19 restrictions, risks and vulnerability. The video shoot was rescheduled numerous times and often our careful planning was swapped out for quick thinking and adaptability.\\nThe end result, however, was worth every bit of effort.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?','That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—through television advertising, to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137815,141571,1,'Want to understand your brand? Ask your stakeholders.','2022-06-29 04:08:55','2022-06-29 04:08:55','32077c53-a7b0-45d7-9a4f-bd3944d00852',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pb6yRuUQJr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":[],\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BpDlpLY30k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Whether they are inside, outside, removed or closely involved, stakeholders have the insight businesses need for long-term growth and sustainability.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"If they are a stakeholder, they have a connection with you.\\n\\nAnd like any other relationship, they need to know their connection, time and opinions are valued.\\n\\nIt often takes an open mind to find what works for you and the stakeholder.\\n\\nFinding this place of mutual benefit can lead to business growth and longevity.\\n\\nWe’ve broken down our approach to nurturing stakeholder relationships for meaningful engagement.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-023wqZnDwH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Your stakeholder is anyone who can be impacted by your business.\",\"plainText\":\"Once you really understand this, you’ll start to notice the cycle of impact between the stakeholder and your business. And this is partly why we begin to engage with stakeholders—to understand how different groups are responding, reacting or behaving.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZC7YPx4oyi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"But who are they, really?\",\"plainText\":\"Now, go deeper to really understand the nuances of your stakeholder groups.\\n\\nYour engagement plan should be detailed enough to allow for different levels of accessibility, and demographic and cultural considerations. The better you nuance, the greater the feeling of respect and care you’ll engender.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4fsgssb3iu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"What do I need to achieve here?\",\"plainText\":\"There are varying degrees of impact that stakeholders can have on your organisation across the common types of engagement—inform, consult, involve, collaborate and empower. Every impact is a win for you.\\n\\nBy inviting stakeholders to provide advice and guidance, you are showing interest and genuine regard for their opinions.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-zK1GdW2Vy7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Let’s talk\",\"plainText\":\"A healthy and productive conversation is two-way. We pursue positive and productive conversations with stakeholders because we need to understand stakeholder perspectives, and we need to hear it from them.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wWO0nagqvx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bye for now\",\"plainText\":\"The conversation will close, but the relationship isn’t over. Stakeholders have given their time, effort and reflections. It’s your turn to respond with accuracy, timeliness and balance.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8YdtZLjoMO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The truth is, these conversations take patience, a steadfast commitment to values, sometimes sacrifice, and always an open mind.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"At NWO, we care about stakeholder engagement because we regularly witness the impact it has on the health of businesses and organisations.\\n\\nIs it important to you?\\n\\nTalk to us about stakeholder engagement today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Want to understand your brand? Ask your stakeholders.','Whether they are inside, outside, removed or closely involved—stakeholders have the insight businesses need for long-term growth and sustainability.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137817,141573,1,'Glengara Care','2022-06-29 04:11:15','2022-06-29 04:11:15','50b1dfbf-1941-45cc-a48c-6f52a8dbdce9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?',NULL,NULL,'That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CIgMzACdNE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141522\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"While Glengara Care has been described as the ‘genuine alternative to aged care’, it often isn’t clear what exactly sets the facility apart from residential aged care facilities. The differentiators ultimately come down to the provision of care: Glengara Care offers care that is personal, loving and delivered in a manner that preserves the recipient’s independence.\\n\\nThe ‘Your Care Factor’ campaign was required to generate leads (and sales) while building awareness around Glengara Care, in comparison to some of the well-known aged care alternatives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gEXzZ5VyHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/716600899?h=4efb4f4cd1&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"GlengaraCare TVC\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The core of the campaign was built from the concept of ‘care’. We drew out two meanings from ‘Your Care Factor’—not only the level of care provided by the facility, but also the decision-making factors that each potential buyer personally cares about. The term ‘care factor’ is deeply familiar, perhaps not so much to the 80+ year old resident market, but more so to their children—the key influencers of this campaign.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141505\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141506\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We created three television commercials that pose the question of ‘What is your care factor?’ by contrasting the realities of people struggling physically and emotionally in a home that doesn’t suit their needs against people receiving the unparalleled care offered at Glengara Care.\\n\\nWhile the videos showcase Glengara Care’s differentiated care offering, the advertisements themselves separate Glengara Care from the alternatives. They’re provocative, fresh and engaging.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3yQnxK2ME5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This project certainly wasn’t an easy one. The final product is the result of fierce determination—both from NWO and RetireAustralia—in the face of adversity such as COVID-19 restrictions, risks and vulnerability. The video shoot was rescheduled numerous times and often our careful planning was swapped out for quick thinking and adaptability.\\nThe end result, however, was worth every bit of effort.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?','That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—through television advertising, to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137818,141574,1,'Glengara Care','2022-06-29 06:01:22','2022-06-29 06:01:23','40df521c-544a-4dbe-96f1-5f71c4096d1b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?',NULL,NULL,'That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CIgMzACdNE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141522\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"While Glengara Care has been described as the ‘genuine alternative to aged care’, it often isn’t clear what exactly sets the facility apart from residential aged care facilities. The differentiators ultimately come down to the provision of care: Glengara Care offers care that is personal, loving and delivered in a manner that preserves the recipient’s independence.\\n\\nThe ‘Your Care Factor’ campaign was required to generate leads (and sales) while building awareness around Glengara Care, in comparison to some of the well-known aged care alternatives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gEXzZ5VyHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/716600899?h=4efb4f4cd1&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"GlengaraCare TVC\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The core of the campaign was built from the concept of ‘care’. We drew out two meanings from ‘Your Care Factor’—not only the level of care provided by the facility, but also the decision-making factors that each potential buyer personally cares about. The term ‘care factor’ is deeply familiar, perhaps not so much to the 80+ year old resident market, but more so to their children—the key influencers of this campaign.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141505\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141506\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We created three television commercials that pose the question of ‘What is your care factor?’ by contrasting the realities of people struggling physically and emotionally in a home that doesn’t suit their needs against people receiving the unparalleled care offered at Glengara Care.\\n\\nWhile the videos showcase Glengara Care’s differentiated care offering, the advertisements themselves separate Glengara Care from the alternatives. They’re provocative, fresh and engaging.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3yQnxK2ME5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This project certainly wasn’t an easy one. The final product is the result of fierce determination—both from NWO and RetireAustralia—in the face of adversity such as COVID-19 restrictions, risks and vulnerability. The video shoot was rescheduled numerous times and often our careful planning was swapped out for quick thinking and adaptability.\\nThe end result, however, was worth every bit of effort.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?','That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—through television advertising, to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137820,141576,1,'Want to understand your brand? Ask your stakeholders.','2022-06-30 03:06:09','2022-06-30 03:06:09','8e004c93-c5c2-4eaa-a636-012a5e0ff1e0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pb6yRuUQJr\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":[],\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BpDlpLY30k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Whether they are inside, outside, removed or closely involved, stakeholders have the insight businesses need for long-term growth and sustainability.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"If they are a stakeholder, they have a connection with you.\\n\\nAnd like any other relationship, they need to know their connection, time and opinions are valued.\\n\\nIt often takes an open mind to find what works for you and the stakeholder.\\n\\nFinding this place of mutual benefit can lead to business growth and longevity.\\n\\nWe’ve broken down our approach to nurturing stakeholder relationships for meaningful engagement.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-023wqZnDwH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Your stakeholder is anyone who can be impacted by your business.\",\"plainText\":\"Once you really understand this, you’ll start to notice the cycle of impact between the stakeholder and your business. And this is partly why we begin to engage with stakeholders—to understand how different groups are responding, reacting or behaving.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZC7YPx4oyi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"But who are they, really?\",\"plainText\":\"Now, go deeper to really understand the nuances of your stakeholder groups.\\n\\nYour engagement plan should be detailed enough to allow for different levels of accessibility, and demographic and cultural considerations. The better you nuance, the greater the feeling of respect and care you’ll engender.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4fsgssb3iu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"What do I need to achieve here?\",\"plainText\":\"There are varying degrees of impact that stakeholders can have on your organisation across the common types of engagement—inform, consult, involve, collaborate and empower. Every impact is a win for you.\\n\\nBy inviting stakeholders to provide advice and guidance, you are showing interest and genuine regard for their opinions.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-zK1GdW2Vy7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Let’s talk\",\"plainText\":\"A healthy and productive conversation is two-way. We pursue positive and productive conversations with stakeholders because we need to understand stakeholder perspectives, and we need to hear it from them.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wWO0nagqvx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bye for now\",\"plainText\":\"The conversation will close, but the relationship isn’t over. Stakeholders have given their time, effort and reflections. It’s your turn to respond with accuracy, timeliness and balance.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8YdtZLjoMO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The truth is, these conversations take patience, a steadfast commitment to values, sometimes sacrifice, and always an open mind.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"At NWO, we care about stakeholder engagement because we regularly witness the impact it has on the health of businesses and organisations.\\n\\nIs it important to you?\\n\\nTalk to us about stakeholder engagement today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Want to understand your brand? Ask your stakeholders.','Whether they are inside, outside, removed or closely involved—stakeholders have the insight businesses need for long-term growth and sustainability.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137822,141578,1,'Want to understand your brand? Ask your stakeholders.','2022-06-30 03:06:50','2022-06-30 03:06:50','a99b50ca-94f0-43df-b416-dfd112866e7a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pb6yRuUQJr\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":[],\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BpDlpLY30k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Whether they are inside, outside, removed or closely involved, stakeholders have the insight businesses need for long-term growth and sustainability.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"If they are a stakeholder, they have a connection with you.\\n\\nAnd like any other relationship, they need to know their connection, time and opinions are valued.\\n\\nIt often takes an open mind to find what works for you and the stakeholder.\\n\\nFinding this place of mutual benefit can lead to business growth and longevity.\\n\\nWe’ve broken down our approach to nurturing stakeholder relationships for meaningful engagement.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-023wqZnDwH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Your stakeholder is anyone who can be affected by your business.\",\"plainText\":\"Once you really understand this, you’ll start to notice the cycle of impact between the stakeholder and your business. And this is partly why we begin to engage with stakeholders—to understand how different groups are responding, reacting or behaving.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZC7YPx4oyi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"But who are they, really?\",\"plainText\":\"Now, go deeper to really understand the nuances of your stakeholder groups.\\n\\nYour engagement plan should be detailed enough to allow for different levels of accessibility, and demographic and cultural considerations. The better you nuance, the greater the feeling of respect and care you’ll engender.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4fsgssb3iu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"What do I need to achieve here?\",\"plainText\":\"There are varying degrees of impact that stakeholders can have on your organisation across the common types of engagement—inform, consult, involve, collaborate and empower. Every impact is a win for you.\\n\\nBy inviting stakeholders to provide advice and guidance, you are showing interest and genuine regard for their opinions.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-zK1GdW2Vy7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Let’s talk\",\"plainText\":\"A healthy and productive conversation is two-way. We pursue positive and productive conversations with stakeholders because we need to understand stakeholder perspectives, and we need to hear it from them.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wWO0nagqvx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bye for now\",\"plainText\":\"The conversation will close, but the relationship isn’t over. Stakeholders have given their time, effort and reflections. It’s your turn to respond with accuracy, timeliness and balance.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8YdtZLjoMO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The truth is, these conversations take patience, a steadfast commitment to values, sometimes sacrifice, and always an open mind.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"At NWO, we care about stakeholder engagement because we regularly witness the impact it has on the health of businesses and organisations.\\n\\nIs it important to you?\\n\\nTalk to us about stakeholder engagement today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Want to understand your brand? Ask your stakeholders.','Whether they are inside, outside, removed or closely involved—stakeholders have the insight businesses need for long-term growth and sustainability.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137826,141582,1,'Let us introduce ourselves','2022-06-30 05:31:01','2022-06-30 05:33:23','480d647e-56be-47c6-8fd9-e5f4a84cf7ae',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bpjMTNz5JL\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":null,\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our team is full of vibrant, hard-working people who live very full lives outside the walls of NWO. (Crazy, hey?)\\n\\nIf you have worked with some of the team, you might only know us in full-throttle, foot-on-the-gas-pedal mode.\\n\\nBut at home, there\'s so much more to see.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-caQw6bLp4J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141536\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":null,\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":null,\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Meet NWO','Let us introduce our staff',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137830,141586,1,'My Mental Health','2022-07-04 01:16:48','2022-07-04 01:16:48','e6021b7a-9585-4b86-bc99-e9a7886c7628',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Connections to expert support',NULL,NULL,'We collaborated with Brisbane North PHN\'s mental health experts to empower consumers, carers and health practitioners to navigate the mental health sector with clear direction and ease. By understanding the website users on a deeper level, our creatives, strategists and developers delivered a meaningful and effective website.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5pfvkvSNrw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"21979\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-czaT07FwtQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"21999\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'My Mental Health','We collaborated with Brisbane North PHN\'s mental health experts to empower consumers, carers and health practitioners to navigate the mental health sector with clear direction and ease.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137831,141587,1,'My Mental Health','2022-07-04 01:16:49','2022-07-04 01:16:49','f2b091bd-677c-47fd-a013-0825f785ff91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Connections to expert support',NULL,NULL,'We collaborated with Brisbane North PHN\'s mental health experts to empower consumers, carers and health practitioners to navigate the mental health sector with clear direction and ease. By understanding the website users on a deeper level, our creatives, strategists and developers delivered a meaningful and effective website.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5pfvkvSNrw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"21979\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-czaT07FwtQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"21999\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'My Mental Health','We collaborated with Brisbane North PHN\'s mental health experts to empower consumers, carers and health practitioners to navigate the mental health sector with clear direction and ease.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137833,141589,1,'Brisbane North PHN','2022-07-04 01:22:26','2022-07-04 01:22:26','6914df0e-e206-403f-a5ba-3e237ab21b2c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator',NULL,NULL,'Ageing can be overwhelming, especially with a dementia diagnosis. There are so many big life decisions to make, services to navigate and logistics to plan. Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support. Additionally, it’s a resource that helps healthcare professionals coordinate care for their patients and provide them with quality resources.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cYowRU3xxP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Brisbane North PHN asked us to write, design and develop a navigator website that doubles as a one-stop-shop of resources, information and services that promote healthy ageing in the Brisbane North and Moreton Bay region. The project’s goal was to enable people to more proactively manage their own healthcare, while also equipping healthcare professional and carers with resources to support their care services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5pfvkvSNrw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"21979\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-czaT07FwtQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"21999\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'My Mental Health','We collaborated with Brisbane North PHN\'s mental health experts to empower consumers, carers and health practitioners to navigate the mental health sector with clear direction and ease.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137836,141592,1,'Brisbane North PHN','2022-07-04 01:25:07','2022-07-04 01:25:07','e08310a3-e2bd-42bd-95fc-9c799e0843a0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator',NULL,NULL,'Ageing can be overwhelming, especially with a dementia diagnosis. There are so many big life decisions to make, services to navigate and logistics to plan. Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support. Additionally, it’s a resource that helps healthcare professionals coordinate care for their patients and provide them with quality resources.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cYowRU3xxP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Brisbane North PHN asked us to write, design and develop a navigator website that doubles as a one-stop-shop of resources, information and services that promote healthy ageing in the Brisbane North and Moreton Bay region. The project’s goal was to enable people to more proactively manage their own healthcare, while also equipping healthcare professional and carers with resources to support their care services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VACsyz6zoc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Working closely with the client team and the Council on the Ageing, our strategists conducted a stakeholder consultation process with community members and health professionals. The stakeholders generously shared their expertise and lived experience to help this project reach the community’s specific needs, with a particular focus on: dementia, physical health, mental health, social connection, nutrition and digital skills.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pI57baAPCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Each aspect of the content writing, design and development of the website was informed by insights from the stakeholders, to ensure the project would fulfil community needs. We made sure the site was easy to use by integrating a very simple user interface into the web design and development. User experience and acceptance testing was a key element of ensuring the site would be practical and enjoyable for its audience.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RgOzDzfM2D\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Nothing like this existed before now. This project fulfils community needs around healthy ageing in a way that really excited the stakeholders who were involved in the project. This kind of work aligns perfectly with our purpose at NWO: to make a meaningful difference to people’s lives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'My Mental Health','We collaborated with Brisbane North PHN\'s mental health experts to empower consumers, carers and health practitioners to navigate the mental health sector with clear direction and ease.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137838,141594,1,'YCN Flyer mock 1 1','2022-07-04 01:51:08','2022-07-04 01:51:08','54987b55-b2c6-4ef2-9c46-f24a80f152a6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/YCN_Flyer-mock-1-1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/YCN_Flyer-mock-1-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/YCN_Flyer-mock-1-1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/YCN_Flyer-mock-1-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/YCN_Flyer-mock-1-1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/YCN_Flyer-mock-1-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/YCN_Flyer-mock-1-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/YCN_Flyer-mock-1-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/YCN_Flyer-mock-1-1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/YCN_Flyer-mock-1-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/YCN_Flyer-mock-1-1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/YCN_Flyer-mock-1-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/YCN_Flyer-mock-1-1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/YCN_Flyer-mock-1-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/YCN_Flyer-mock-1-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/YCN_Flyer-mock-1-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"3072\":2048,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4500,\"originalImageHeight\":3000,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAIF/8QAHhAAAgICAgMAAAAAAAAAAAAAAQIAAwQREjETQVH/xAAUAQEAAAAAAAAAAAAAAAAAAAAA/8QAFBEBAAAAAAAAAAAAAAAAAAAAAP/aAAwDAQACEQMRAD8A0ckZBRa8VT5HOuXpR9MfjVWV1Ktr83Hba1uRX2IlIH//2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#c1c0bf\",\"#3a3b59\",\"#7d8192\",\"#646c77\",\"#70766e\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137839,141595,1,'YCN Flyer mock 1 1','2022-07-04 01:53:26','2022-07-04 01:53:26','4c89ed10-73fc-4d1b-983d-e9e6ffeb610d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1038_crop_center-center_82_line/YCN_Flyer-mock-1-1_2022-07-04-015326_ygzd.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2077_crop_center-center_82_line/YCN_Flyer-mock-1-1_2022-07-04-015326_ygzd.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x865_crop_center-center_82_line/YCN_Flyer-mock-1-1_2022-07-04-015326_ygzd.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1731_crop_center-center_82_line/YCN_Flyer-mock-1-1_2022-07-04-015326_ygzd.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x692_crop_center-center_82_line/YCN_Flyer-mock-1-1_2022-07-04-015326_ygzd.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1384_crop_center-center_82_line/YCN_Flyer-mock-1-1_2022-07-04-015326_ygzd.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x519_crop_center-center_82_line/YCN_Flyer-mock-1-1_2022-07-04-015326_ygzd.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x432_crop_center-center_82_line/YCN_Flyer-mock-1-1_2022-07-04-015326_ygzd.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1038_crop_center-center_82_line/YCN_Flyer-mock-1-1_2022-07-04-015326_ygzd.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2077_crop_center-center_82_line/YCN_Flyer-mock-1-1_2022-07-04-015326_ygzd.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x865_crop_center-center_82_line/YCN_Flyer-mock-1-1_2022-07-04-015326_ygzd.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1731_crop_center-center_82_line/YCN_Flyer-mock-1-1_2022-07-04-015326_ygzd.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x692_crop_center-center_82_line/YCN_Flyer-mock-1-1_2022-07-04-015326_ygzd.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1384_crop_center-center_82_line/YCN_Flyer-mock-1-1_2022-07-04-015326_ygzd.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x519_crop_center-center_82_line/YCN_Flyer-mock-1-1_2022-07-04-015326_ygzd.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x432_crop_center-center_82_line/YCN_Flyer-mock-1-1_2022-07-04-015326_ygzd.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1038,\"3072\":2077,\"1280\":865,\"2560\":1731,\"1024\":692,\"2048\":1384,\"768\":519,\"640\":432},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":3994,\"originalImageHeight\":2701,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAIF/8QAGhAAAwADAQAAAAAAAAAAAAAAAQIDAAQxIf/EABQBAQAAAAAAAAAAAAAAAAAAAAD/xAAVEQEBAAAAAAAAAAAAAAAAAAAAEf/aAAwDAQACEQMRAD8AftLsUCR1QQzn2nAozQ1YPGSpShow6x6cmXRiUxR//9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#c1c0bf\",\"#3a3c5a\",\"#7d808e\",\"#636e74\",\"#6f756f\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":1038,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137840,141596,1,'YCN Website mock 1 1','2022-07-04 07:06:19','2022-07-04 07:06:19','06da690a-9b45-43ad-ba82-4dc694bab2bf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/YCN_Website-mock-1-1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/YCN_Website-mock-1-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/YCN_Website-mock-1-1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/YCN_Website-mock-1-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/YCN_Website-mock-1-1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/YCN_Website-mock-1-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/YCN_Website-mock-1-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/YCN_Website-mock-1-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/YCN_Website-mock-1-1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/YCN_Website-mock-1-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/YCN_Website-mock-1-1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/YCN_Website-mock-1-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/YCN_Website-mock-1-1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/YCN_Website-mock-1-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/YCN_Website-mock-1-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/YCN_Website-mock-1-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"3072\":2048,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":6000,\"originalImageHeight\":4000,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQEC/8QAIhAAAQQBAwUBAAAAAAAAAAAAAQIDBBEABRJBISRhcYGx/8QAFAEBAAAAAAAAAAAAAAAAAAAAAv/EABgRAAMBAQAAAAAAAAAAAAAAAAABESFB/9oADAMBAAIRAxEAPwCydOkS5Tm1IcoUt1SgkAnjrha9PeRElBCa22m7Bs3+ec1JJKVkkkl9QN+hijg7Rkcb6r4MMmDT6f/Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#856b63\",\"#262b35\",\"#dfe0db\",\"#d0aa94\",\"#acb3c0\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137841,141597,1,'Brisbane North PHN','2022-07-04 07:06:50','2022-07-04 07:06:50','6aab2376-a86a-4f2d-8b79-c3b7b49770cc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator',NULL,NULL,'Ageing can be overwhelming, especially with a dementia diagnosis. There are so many big life decisions to make, services to navigate and logistics to plan. Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support. Additionally, it’s a resource that helps healthcare professionals coordinate care for their patients and provide them with quality resources.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TBzFA0UCIO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141596\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cYowRU3xxP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Brisbane North PHN asked us to write, design and develop a navigator website that doubles as a one-stop-shop of resources, information and services that promote healthy ageing in the Brisbane North and Moreton Bay region. The project’s goal was to enable people to more proactively manage their own healthcare, while also equipping healthcare professional and carers with resources to support their care services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VACsyz6zoc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Working closely with the client team and the Council on the Ageing, our strategists conducted a stakeholder consultation process with community members and health professionals. The stakeholders generously shared their expertise and lived experience to help this project reach the community’s specific needs, with a particular focus on: dementia, physical health, mental health, social connection, nutrition and digital skills.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KdjGBFCCGl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141595\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pI57baAPCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Each aspect of the content writing, design and development of the website was informed by insights from the stakeholders, to ensure the project would fulfil community needs. We made sure the site was easy to use by integrating a very simple user interface into the web design and development. User experience and acceptance testing was a key element of ensuring the site would be practical and enjoyable for its audience.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RgOzDzfM2D\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Nothing like this existed before now. This project fulfils community needs around healthy ageing in a way that really excited the stakeholders who were involved in the project. This kind of work aligns perfectly with our purpose at NWO: to make a meaningful difference to people’s lives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'My Mental Health','We collaborated with Brisbane North PHN\'s mental health experts to empower consumers, carers and health practitioners to navigate the mental health sector with clear direction and ease.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137843,141599,1,'22 07 YCN Marketing Website','2022-07-04 07:10:43','2022-07-04 07:10:43','db7098e4-af6c-45f9-94cd-dea5d8bb0c2c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1728_crop_center-center_82_line/22_07-YCN-Marketing-Website.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1440_crop_center-center_82_line/22_07-YCN-Marketing-Website.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1152_crop_center-center_82_line/22_07-YCN-Marketing-Website.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x864_crop_center-center_82_line/22_07-YCN-Marketing-Website.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x720_crop_center-center_82_line/22_07-YCN-Marketing-Website.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1728_crop_center-center_82_line/22_07-YCN-Marketing-Website.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1440_crop_center-center_82_line/22_07-YCN-Marketing-Website.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1152_crop_center-center_82_line/22_07-YCN-Marketing-Website.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x864_crop_center-center_82_line/22_07-YCN-Marketing-Website.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x720_crop_center-center_82_line/22_07-YCN-Marketing-Website.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1728,\"1280\":1440,\"1024\":1152,\"768\":864,\"640\":720},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":2000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAASABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAAMFAv/EACQQAAECBQIHAAAAAAAAAAAAAAECAwAEBREhElEiMTJBYYGx/8QAFgEAAwAAAAAAAAAAAAAAAAAAAAEC/8QAGREBAQEBAQEAAAAAAAAAAAAAAAECQREh/9oADAMBAAIRAxEAPwDVVnnUPpYlVkKT1WySdovOe0WqVLE2WSZ0jWTwptkDzE3zglFNpbEq4XSovTCjcuLHzaFdW/EqOL4sSO8KHISnn6hqNTAH/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#c4c6c2\",\"#383b5a\",\"#7d848b\",\"#6c6c77\",\"#72746c\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":1728,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137844,141600,1,'Brisbane North PHN','2022-07-04 07:10:55','2022-07-04 07:10:55','7541a7d2-8e40-4d56-be1e-a3c85c1064f5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator',NULL,NULL,'Ageing can be overwhelming, especially with a dementia diagnosis. There are so many big life decisions to make, services to navigate and logistics to plan. Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support. Additionally, it’s a resource that helps healthcare professionals coordinate care for their patients and provide them with quality resources.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TBzFA0UCIO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141596\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cYowRU3xxP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Brisbane North PHN asked us to write, design and develop a navigator website that doubles as a one-stop-shop of resources, information and services that promote healthy ageing in the Brisbane North and Moreton Bay region. The project’s goal was to enable people to more proactively manage their own healthcare, while also equipping healthcare professional and carers with resources to support their care services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VACsyz6zoc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141599\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Working closely with the client team and the Council on the Ageing, our strategists conducted a stakeholder consultation process with community members and health professionals. The stakeholders generously shared their expertise and lived experience to help this project reach the community’s specific needs, with a particular focus on: dementia, physical health, mental health, social connection, nutrition and digital skills.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pI57baAPCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Each aspect of the content writing, design and development of the website was informed by insights from the stakeholders, to ensure the project would fulfil community needs. We made sure the site was easy to use by integrating a very simple user interface into the web design and development. User experience and acceptance testing was a key element of ensuring the site would be practical and enjoyable for its audience.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RgOzDzfM2D\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Nothing like this existed before now. This project fulfils community needs around healthy ageing in a way that really excited the stakeholders who were involved in the project. This kind of work aligns perfectly with our purpose at NWO: to make a meaningful difference to people’s lives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'My Mental Health','We collaborated with Brisbane North PHN\'s mental health experts to empower consumers, carers and health practitioners to navigate the mental health sector with clear direction and ease.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137846,141602,1,'22 07 YCN Marketing Website','2022-07-04 07:19:02','2022-07-04 07:19:02','f73c8080-da56-4750-b2cb-c56197e2bc2a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1728_crop_center-center_82_line/22_07-YCN-Marketing-Website_2022-07-04-071901_flnv.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1440_crop_center-center_82_line/22_07-YCN-Marketing-Website_2022-07-04-071901_flnv.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1152_crop_center-center_82_line/22_07-YCN-Marketing-Website_2022-07-04-071901_flnv.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x864_crop_center-center_82_line/22_07-YCN-Marketing-Website_2022-07-04-071901_flnv.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x720_crop_center-center_82_line/22_07-YCN-Marketing-Website_2022-07-04-071901_flnv.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1728_crop_center-center_82_line/22_07-YCN-Marketing-Website_2022-07-04-071901_flnv.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1440_crop_center-center_82_line/22_07-YCN-Marketing-Website_2022-07-04-071901_flnv.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1152_crop_center-center_82_line/22_07-YCN-Marketing-Website_2022-07-04-071901_flnv.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x864_crop_center-center_82_line/22_07-YCN-Marketing-Website_2022-07-04-071901_flnv.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x720_crop_center-center_82_line/22_07-YCN-Marketing-Website_2022-07-04-071901_flnv.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1728,\"1280\":1440,\"1024\":1152,\"768\":864,\"640\":720},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":2000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAASABADAREAAhEBAxEB/8QAFwABAAMAAAAAAAAAAAAAAAAABAEFBv/EACMQAAEDAwIHAAAAAAAAAAAAAAIBAwQABRESUQYhIjJBseH/xAAWAQEBAQAAAAAAAAAAAAAAAAABAAL/xAAYEQEBAQEBAAAAAAAAAAAAAAAAARECQf/aAAwDAQACEQMRAD8A0nEN7O2K01GQDfNcqhJnA/a1zzoLs896bG1SmxZez2Ivjei54QXbUI3VyU4JOuuF0kXNBTZNqLbmBaxogtrrNMn6oRNJTUn/2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#ced5cc\",\"#383b5a\",\"#888f96\",\"#6d7182\",\"#757d7a\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":1728,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137847,141603,1,'Brisbane North PHN','2022-07-04 07:19:08','2022-07-04 07:19:08','59fa0c55-06c2-4ce3-8e37-5bf544e95794',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator',NULL,NULL,'Ageing can be overwhelming, especially with a dementia diagnosis. There are so many big life decisions to make, services to navigate and logistics to plan. Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support. Additionally, it’s a resource that helps healthcare professionals coordinate care for their patients and provide them with quality resources.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TBzFA0UCIO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141596\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cYowRU3xxP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Brisbane North PHN asked us to write, design and develop a navigator website that doubles as a one-stop-shop of resources, information and services that promote healthy ageing in the Brisbane North and Moreton Bay region. The project’s goal was to enable people to more proactively manage their own healthcare, while also equipping healthcare professional and carers with resources to support their care services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VACsyz6zoc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141602\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Working closely with the client team and the Council on the Ageing, our strategists conducted a stakeholder consultation process with community members and health professionals. The stakeholders generously shared their expertise and lived experience to help this project reach the community’s specific needs, with a particular focus on: dementia, physical health, mental health, social connection, nutrition and digital skills.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pI57baAPCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Each aspect of the content writing, design and development of the website was informed by insights from the stakeholders, to ensure the project would fulfil community needs. We made sure the site was easy to use by integrating a very simple user interface into the web design and development. User experience and acceptance testing was a key element of ensuring the site would be practical and enjoyable for its audience.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RgOzDzfM2D\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Nothing like this existed before now. This project fulfils community needs around healthy ageing in a way that really excited the stakeholders who were involved in the project. This kind of work aligns perfectly with our purpose at NWO: to make a meaningful difference to people’s lives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'My Mental Health','We collaborated with Brisbane North PHN\'s mental health experts to empower consumers, carers and health practitioners to navigate the mental health sector with clear direction and ease.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137848,141604,1,'Brisbane North PHN','2022-07-04 07:19:20','2022-07-04 07:19:20','0c3984e9-945d-4169-8ff8-61c872d48e33',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator',NULL,NULL,'Ageing can be overwhelming, especially with a dementia diagnosis. There are so many big life decisions to make, services to navigate and logistics to plan. Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support. Additionally, it’s a resource that helps healthcare professionals coordinate care for their patients and provide them with quality resources.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TBzFA0UCIO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141596\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cYowRU3xxP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Brisbane North PHN asked us to write, design and develop a navigator website that doubles as a one-stop-shop of resources, information and services that promote healthy ageing in the Brisbane North and Moreton Bay region. The project’s goal was to enable people to more proactively manage their own healthcare, while also equipping healthcare professional and carers with resources to support their care services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VACsyz6zoc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141602\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Working closely with the client team and the Council on the Ageing, our strategists conducted a stakeholder consultation process with community members and health professionals. The stakeholders generously shared their expertise and lived experience to help this project reach the community’s specific needs, with a particular focus on: dementia, physical health, mental health, social connection, nutrition and digital skills.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pI57baAPCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Each aspect of the content writing, design and development of the website was informed by insights from the stakeholders, to ensure the project would fulfil community needs. We made sure the site was easy to use by integrating a very simple user interface into the web design and development. User experience and acceptance testing was a key element of ensuring the site would be practical and enjoyable for its audience.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RgOzDzfM2D\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Nothing like this existed before now. This project fulfils community needs around healthy ageing in a way that really excited the stakeholders who were involved in the project. This kind of work aligns perfectly with our purpose at NWO: to make a meaningful difference to people’s lives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'My Mental Health','We collaborated with Brisbane North PHN\'s mental health experts to empower consumers, carers and health practitioners to navigate the mental health sector with clear direction and ease.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137850,141606,1,'Brisbane North PHN','2022-07-04 07:31:23','2022-07-04 07:31:23','ea927b8c-81bc-4db3-bc71-cddf42759a31',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator',NULL,NULL,'Ageing can be overwhelming, especially with a dementia diagnosis. There are so many big life decisions to make, services to navigate and logistics to plan. Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support. Additionally, it’s a resource that helps healthcare professionals coordinate care for their patients and provide them with quality resources.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TBzFA0UCIO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141596\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cYowRU3xxP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Brisbane North PHN asked us to write, design and develop a navigator website that doubles as a one-stop-shop of resources, information and services that promote healthy ageing in the Brisbane North and Moreton Bay region. The project’s goal was to enable people to more proactively manage their own healthcare, while also equipping healthcare professional and carers with resources to support their care services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VACsyz6zoc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141602\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Working closely with the client team and the Council on the Ageing, our strategists conducted a stakeholder consultation process with community members and health professionals. The stakeholders generously shared their expertise and lived experience to help this project reach the community’s specific needs, with a particular focus on: dementia, physical health, mental health, social connection, nutrition and digital skills.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pI57baAPCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Each aspect of the content writing, design and development of the website was informed by insights from the stakeholders, to ensure the project would fulfil community needs. We made sure the site was easy to use by integrating a very simple user interface into the web design and development. User experience and acceptance testing was a key element of ensuring the site would be practical and enjoyable for its audience.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RgOzDzfM2D\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Nothing like this existed before now. This project fulfils community needs around healthy ageing in a way that really excited the stakeholders who were involved in the project. This kind of work aligns perfectly with our purpose at NWO: to make a meaningful difference to people’s lives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'My Mental Health','We collaborated with Brisbane North PHN\'s mental health experts to empower consumers, carers and health practitioners to navigate the mental health sector with clear direction and ease.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137851,141607,1,'Are customers giving up on your website?','2022-07-05 05:41:43','2022-07-05 05:41:44','1fffd222-a65a-4a04-adbf-c7eb4bdea3d2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gahB36q3Yd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We’ve all been to websites where trying to make a simple purchase can end in frustration with an impossible-to-navigate website, or, worse for the organisation, to us turning to a competitor. Good web design translates to successful conversions, and all of that is dependent on the user experience.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A great new infographic has found that we’ll give a website a minute to display what we’re looking for before we give up. Some types of sites are better than others in delivering what we’re after – especially hotel booking sites.\\n\\nThe two biggest complaints about web sites, according to the research, include that there is ‘too much going on’ and also ‘not enough information’, which we can take to mean that many sites drone on and on… but don’t really say much.\\n\\nUsers also complain – across all age groups and online skills – that text is too small and that navigation is difficult on the sites they give up on. Thirty-five per cent of users fail to complete simple tasks on the average website.\\n\\nLet’s improve those stats, shall we? Here’s a plan.\\n\\n##### **1. Design from the user’s perspective, not your own**\\n\\nWe know your company is the greatest thing since Google and you can’t wait to tell everyone all about where it began, who works there and the details of your offering. But the truth is that a user just wants to get to the point, and their interests should override yours. Usability is key. Show them what they’re looking for, and don’t make them search for it. That doesn’t mean sacrificing look and feel for too much simplicity, it just means focusing the layout and design on the search.\\n\\n##### **2. Create a navigation path**\\n\\nIf the information on your website is simple and structured, you can guide visitors on the path you’d like them to take. Use tabs and sub-pages for different categories, and make it logical.\\n\\n##### **3. Content is everything**\\n\\nContent is the most important element of your site, really – and it needs to fit the logical and structured navigation. You’ll want to include keywords, page titles, meta tags, and headings for search engine optimisation. As we’ve previously discussed in our Writing for (readable) web article, there are some hallmarks we use when writing web copy for our clients:\\n\\n- short, effective sentences (say the same information with less)\\n- sub-headings and headings containing keywords\\n- everyday words the average reader can easily understand (plain English)\\n- informal voice\\n- common language conventions\\n- direct language\\n- active tense\\n- consistent, logical structuring of information.\\n\\n##### **4. Speed it up and make it simple**\\n\\nLet’s face it, we’re a busy bunch, and a reminder of the old days of dial-up – waiting for your site to load – is going to test the patience of even the most loyal visitor. In fact, many visitors will start to abandon a website after just a few seconds of loading time. Most of that time is the result of design decisions, so simplify some of the fancy effects.\\n\\nWe love web design and working with you on the best and most creative way to present your business. Starting with a structure that appeals to your audience, then adding in some clever design and copy, ensures that your site will be a success. Talk to us about it today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137852,141608,1,'Glengara Care','2022-07-05 05:49:47','2022-07-05 05:49:47','471e484c-c1ab-4d42-9819-e47a2436bbf0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?',NULL,NULL,'That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CIgMzACdNE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141522\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"While Glengara Care has been described as the ‘genuine alternative to aged care’, it often isn’t clear what exactly sets the facility apart from residential aged care facilities. The differentiators ultimately come down to the provision of care: Glengara Care offers care that is personal, loving and delivered in a manner that preserves the recipient’s independence.\\n\\nThe ‘Your Care Factor’ campaign was required to generate leads (and sales) while building awareness around Glengara Care, in comparison to some of the well-known aged care alternatives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gEXzZ5VyHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/716600899?h=4efb4f4cd1&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"GlengaraCare TVC\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The core of the campaign was built from the concept of ‘care’. We drew out two meanings from ‘Your Care Factor’—not only the level of care provided by the facility, but also the decision-making factors that each potential buyer personally cares about. The term ‘care factor’ is deeply familiar, perhaps not so much to the 80+ year old resident market, but more so to their children—the key influencers of this campaign.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141505\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141506\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We created three television commercials that pose the question of ‘What is your care factor?’ by contrasting the realities of people struggling physically and emotionally in a home that doesn’t suit their needs against people receiving the unparalleled care offered at Glengara Care.\\n\\nWhile the videos showcase Glengara Care’s differentiated care offering, the advertisements themselves separate Glengara Care from the alternatives. They’re provocative, fresh and engaging.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3yQnxK2ME5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This project certainly wasn’t an easy one. The final product is the result of fierce determination—both from NWO and RetireAustralia—in the face of adversity such as COVID-19 restrictions, risks and vulnerability. The video shoot was rescheduled numerous times and often our careful planning was swapped out for quick thinking and adaptability.\\nThe end result, however, was worth every bit of effort.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?','That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—through television advertising, to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137854,141610,1,'Glengara Care','2022-07-07 02:07:42','2022-07-07 02:07:42','289c1923-48e2-4a82-8d26-8cca0b75573a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?',NULL,NULL,'That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CIgMzACdNE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141522\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CHALLENGE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"While Glengara Care has been described as the ‘genuine alternative to aged care’, it often isn’t clear what exactly sets the facility apart from residential aged care facilities. The differentiators ultimately come down to the provision of care: Glengara Care offers care that is personal, loving and delivered in a manner that preserves the recipient’s independence.\\n\\nThe ‘Your Care Factor’ campaign was required to generate leads (and sales) while building awareness around Glengara Care, in comparison to some of the well-known aged care alternatives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gEXzZ5VyHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/716600899?h=4efb4f4cd1&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"GlengaraCare TVC\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The core of the campaign was built from the concept of ‘care’. We drew out two meanings from ‘Your Care Factor’—not only the level of care provided by the facility, but also the decision-making factors that each potential buyer personally cares about. The term ‘care factor’ is deeply familiar, perhaps not so much to the 80+ year old resident market, but more so to their children—the key influencers of this campaign.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141505\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141506\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We created three television commercials that pose the question of ‘What is your care factor?’ by contrasting the realities of people struggling physically and emotionally in a home that doesn’t suit their needs against people receiving the unparalleled care offered at Glengara Care.\\n\\nWhile the videos showcase Glengara Care’s differentiated care offering, the advertisements themselves separate Glengara Care from the alternatives. They’re provocative, fresh and engaging.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3yQnxK2ME5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This project certainly wasn’t an easy one. The final product is the result of fierce determination—both from NWO and RetireAustralia—in the face of adversity such as COVID-19 restrictions, risks and vulnerability. The video shoot was rescheduled numerous times and often our careful planning was swapped out for quick thinking and adaptability.\\nThe end result, however, was worth every bit of effort.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?','That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—through television advertising, to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137856,141612,1,'Glengara Care','2022-07-07 02:12:54','2022-07-07 02:12:54','f8ea273f-ce80-424a-a418-8f76cc9efab8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?',NULL,NULL,'That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CIgMzACdNE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141522\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CHALLENGE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"While Glengara Care has been described as the ‘genuine alternative to aged care’, it often isn’t clear what exactly sets the facility apart from residential aged care facilities. The differentiators ultimately come down to the provision of care: Glengara Care offers care that is personal, loving and delivered in a manner that preserves the recipient’s independence.\\n\\nThe ‘Your Care Factor’ campaign was required to generate leads (and sales) while building awareness around Glengara Care, in comparison to some of the well-known aged care alternatives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gEXzZ5VyHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/716600899?h=4efb4f4cd1&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"GlengaraCare TVC\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The core of the campaign was built from the concept of ‘care’. We drew out two meanings from ‘Your Care Factor’—not only the level of care provided by the facility, but also the decision-making factors that each potential buyer personally cares about. The term ‘care factor’ is deeply familiar, perhaps not so much to the 80+ year old resident market, but more so to their children—the key influencers of this campaign.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141505\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141506\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We created three television commercials that pose the question of ‘What is your care factor?’ by contrasting the realities of people struggling physically and emotionally in a home that doesn’t suit their needs against people receiving the unparalleled care offered at Glengara Care.\\n\\nWhile the videos showcase Glengara Care’s differentiated care offering, the advertisements themselves separate Glengara Care from the alternatives. They’re provocative, fresh and engaging.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3yQnxK2ME5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This project certainly wasn’t an easy one. The final product is the result of fierce determination—both from NWO and RetireAustralia—in the face of adversity such as COVID-19 restrictions, risks and vulnerability. The video shoot was rescheduled numerous times and often our careful planning was swapped out for quick thinking and adaptability.\\nThe end result, however, was worth every bit of effort.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?','That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—through television advertising, to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137858,141614,1,'Brisbane North PHN','2022-07-07 02:20:26','2022-07-07 02:20:26','a7a7244e-96d1-43b0-a2b9-d282c5a978af',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator',NULL,NULL,'Ageing can be overwhelming, especially with a dementia diagnosis. There are so many big life decisions to make, services to navigate and logistics to plan. Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support. Additionally, it’s a resource that helps healthcare professionals coordinate care for their patients and provide them with quality resources.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TBzFA0UCIO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141596\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cYowRU3xxP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Brisbane North PHN asked us to write, design and develop a navigator website that doubles as a one-stop-shop of resources, information and services that promote healthy ageing in the Brisbane North and Moreton Bay region. The project’s goal was to enable people to more proactively manage their own healthcare, while also equipping healthcare professional and carers with resources to support their care services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VACsyz6zoc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141602\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Working closely with the client team and the Council on the Ageing, our strategists conducted a stakeholder consultation process with community members and health professionals. The stakeholders generously shared their expertise and lived experience to help this project reach the community’s specific needs, with a particular focus on: dementia, physical health, mental health, social connection, nutrition and digital skills.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pI57baAPCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Each aspect of the content writing, design and development of the website was informed by insights from the stakeholders, to ensure the project would fulfil community needs. We made sure the site was easy to use by integrating a very simple user interface into the web design and development. User experience and acceptance testing was a key element of ensuring the site would be practical and enjoyable for its audience.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RgOzDzfM2D\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Nothing like this existed before now. This project fulfils community needs around healthy ageing in a way that really excited the stakeholders who were involved in the project. This kind of work aligns perfectly with our purpose at NWO: to make a meaningful difference to people’s lives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'My Mental Health','We collaborated with Brisbane North PHN\'s mental health experts to empower consumers, carers and health practitioners to navigate the mental health sector with clear direction and ease.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137860,141616,1,NULL,'2022-07-10 23:07:09','2023-03-09 04:28:28','54857f52-d00e-4ca0-8b05-1321cfd82f9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Chief marketing strategist',NULL,NULL,NULL,'#### Greg’s passion is combining customer-centric brand strategy with commercial acumen to help organisations and teams deliver higher performance.\n\nGreg has had an award-winning, executive-level marketing career of leading and transforming marketing, brand and customer teams—large and small—to deliver exceptional growth in for-profit, not-for-profit, public and private organisations. He’s a strategic thinker who leverages brand and customer insight into pragmatic, commercial execution and KPI accountability. From experience, Greg knows what works for marketing to inspire organisations and people. He says, “Inside every good brand is a great one struggling to get out.”',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.linkedin.com/in/greg-bowell-712a7515/',NULL,NULL,NULL,NULL,'green',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137861,141622,1,'About us','2022-07-10 23:10:01','2022-07-10 23:10:01','43a59b8c-691f-49b2-873e-8eb5cce3212a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17881\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\",\"17921\",\"97259\",\"141616\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | About us','For 20 years we have helped businesses, organisations and governments to solve problems, unlock potential and connect with people to inspire action.','strategy, brand, campaign, behaviour change, engagement, digital, video, content',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137863,141624,1,'About us','2022-07-10 23:11:13','2022-07-10 23:11:13','aa4a41a3-48e8-405e-9185-e8819848ac77',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17881\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\",\"17921\",\"97259\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | About us','For 20 years we have helped businesses, organisations and governments to solve problems, unlock potential and connect with people to inspire action.','strategy, brand, campaign, behaviour change, engagement, digital, video, content',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137864,141625,1,'Are customers giving up on your website?','2022-07-11 01:48:54','2022-07-11 01:48:54','f89e0b98-d8ce-43b1-be86-e90b6f3b398a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gahB36q3Yd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We’ve all been to websites where trying to make a simple purchase can end in frustration with an impossible-to-navigate website, or, worse for the organisation, to us turning to a competitor. Good web design translates to successful conversions, and all of that is dependent on the user experience.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A great new infographic has found that we’ll give a website a minute to display what we’re looking for before we give up. Some types of sites are better than others in delivering what we’re after – especially hotel booking sites.\\n\\nThe two biggest complaints about web sites, according to the research, include that there is ‘too much going on’ and also ‘not enough information’, which we can take to mean that many sites drone on and on… but don’t really say much.\\n\\nUsers also complain – across all age groups and online skills – that text is too small and that navigation is difficult on the sites they give up on. Thirty-five per cent of users fail to complete simple tasks on the average website.\\n\\nLet’s improve those stats, shall we? Here’s a plan.\\n\\n##### **1. Design from the user’s perspective, not your own**\\n\\nWe know your company is the greatest thing since Google and you can’t wait to tell everyone all about where it began, who works there and the details of your offering. But the truth is that a user just wants to get to the point, and their interests should override yours. Usability is key. Show them what they’re looking for, and don’t make them search for it. That doesn’t mean sacrificing look and feel for too much simplicity, it just means focusing the layout and design on the search.\\n\\n##### **2. Create a navigation path**\\n\\nIf the information on your website is simple and structured, you can guide visitors on the path you’d like them to take. Use tabs and sub-pages for different categories, and make it logical.\\n\\n##### **3. Content is everything**\\n\\nContent is the most important element of your site, really – and it needs to fit the logical and structured navigation. You’ll want to include keywords, page titles, meta tags, and headings for search engine optimisation. As we’ve previously discussed in our Writing for (readable) web article, there are some hallmarks we use when writing web copy for our clients:\\n\\n- short, effective sentences (say the same information with less)\\n- sub-headings and headings containing keywords\\n- everyday words the average reader can easily understand (plain English)\\n- informal voice\\n- common language conventions\\n- direct language\\n- active tense\\n- consistent, logical structuring of information.\\n\\n##### **4. Speed it up and make it simple**\\n\\nLet’s face it, we’re a busy bunch, and a reminder of the old days of dial-up – waiting for your site to load – is going to test the patience of even the most loyal visitor. In fact, many visitors will start to abandon a website after just a few seconds of loading time. Most of that time is the result of design decisions, so simplify some of the fancy effects.\\n\\nWe love web design and working with you on the best and most creative way to present your business. Starting with a structure that appeals to your audience, then adding in some clever design and copy, ensures that your site will be a success. Talk to us about it today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137866,141627,1,'Contact ','2022-07-12 00:09:35','2022-07-12 00:09:35','8574fe14-3162-42d5-99f1-9a0a86ad55a6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dJRNyHHzcn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Contact us\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Like what you see? Get in touch with us—we can’t wait to meet you.\",\"textSize\":\"text-xl\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":\"Contact\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2RtDIpwkus\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<!--[if lte IE 8]>\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2-legacy.js\\\"></script>\\n<![endif]-->\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: \\\"na1\\\",\\n    portalId: \\\"8394441\\\",\\n    formId: \\\"74668c3f-aa7f-4ec7-aa81-c8ce26655bfe\\\"\\n});\\n</script>\",\"backgroundColour\":\"bg-black\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | Contact us','We are a creative agency that specialises in strategy, brand and behaviour change. Get in touch with us—we can’t wait to meet you.','strategy, brand, campaign, behaviour change, engagement, content, digital',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137868,141629,1,'Your Care Navigator','2022-07-13 04:32:08','2022-07-13 04:32:08','c4953c1e-02d2-423a-a7c2-4eba541b2a78',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator',NULL,NULL,'Ageing can be overwhelming, especially with a dementia diagnosis. There are so many big life decisions to make, services to navigate and logistics to plan. Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support. Additionally, it’s a resource that helps healthcare professionals coordinate care for their patients and provide them with quality resources.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TBzFA0UCIO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141596\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cYowRU3xxP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Brisbane North PHN asked us to write, design and develop a navigator website that doubles as a one-stop-shop of resources, information and services that promote healthy ageing in the Brisbane North and Moreton Bay region. The project’s goal was to enable people to more proactively manage their own healthcare, while also equipping healthcare professional and carers with resources to support their care services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VACsyz6zoc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141602\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Working closely with the client team and the Council on the Ageing, our strategists conducted a stakeholder consultation process with community members and health professionals. The stakeholders generously shared their expertise and lived experience to help this project reach the community’s specific needs, with a particular focus on: dementia, physical health, mental health, social connection, nutrition and digital skills.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pI57baAPCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Each aspect of the content writing, design and development of the website was informed by insights from the stakeholders, to ensure the project would fulfil community needs. We made sure the site was easy to use by integrating a very simple user interface into the web design and development. User experience and acceptance testing was a key element of ensuring the site would be practical and enjoyable for its audience.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RgOzDzfM2D\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Nothing like this existed before now. This project fulfils community needs around healthy ageing in a way that really excited the stakeholders who were involved in the project. This kind of work aligns perfectly with our purpose at NWO: to make a meaningful difference to people’s lives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'My Mental Health','We collaborated with Brisbane North PHN\'s mental health experts to empower consumers, carers and health practitioners to navigate the mental health sector with clear direction and ease.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137871,141632,1,'Untitled Artwork 7','2022-07-18 03:24:34','2022-07-18 03:24:34','caa79f51-70ae-4e2a-a884-0141694a9cfb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Untitled_Artwork-7.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Untitled_Artwork-7.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Untitled_Artwork-7.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Untitled_Artwork-7.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Untitled_Artwork-7.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Untitled_Artwork-7.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Untitled_Artwork-7.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Untitled_Artwork-7.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1500,\"originalImageHeight\":1500,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADASIAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAQL/xAAZEAEAAwEBAAAAAAAAAAAAAAABAAIhMlH/xAAUAQEAAAAAAAAAAAAAAAAAAAAF/8QAFBEBAAAAAAAAAAAAAAAAAAAAAP/aAAwDAQACEQMRAD8Ai1kcIF/clnTGHH3/2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#e15c3d\",\"#5f1a0b\",\"#90331f\",\"#ac2c14\",\"#ac341c\"],\"lightness\":38,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137872,141633,1,'Are customers giving up on your website?','2022-07-18 03:34:46','2022-07-18 03:34:46','baf4bf4a-3f46-46b3-920c-76e3035a141c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gahB36q3Yd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We’ve all tried to navigate frustrating websites that have ended in annoyance, giving up and even turning to a competitor. Good web design translates to successful conversions, and that all depends on user experience.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Usually, we’re only willing to give a website one minute to display what we’re looking for before we give up. The most common website complaints are that there is ‘too much going on’ and also ‘not enough information’. Translation: many sites drone on and on… but don’t really say much.\\n\\nUsers also complain—across all age groups and digital skill levels—that text is too small and navigation is difficult. Thirty-five per cent of users fail to complete simple tasks on the average website.\\n\\nLet’s improve those stats, shall we?\\n\\n##### **1. Design from the user’s perspective, not your own**\\n\\nWe know your company is the greatest thing since Google and you can’t wait to tell everyone all about where it began, who works there and the details of your offering. But the truth is this: users just want to get to the point, and their interests should override yours. \\nUsability is key. Show them what they’re looking for, and don’t make them search for it.\\n\\n##### **2. Create a navigation path**\\n\\nIf the information on your website is simple and structured, you can guide visitors along the path you’d like them to take—their user journey. Use tabs and sub-pages for different categories and keep it super logical.\\n\\n##### **3. Content is everything**\\n\\nContent is the most important element of your site, really—and it needs to fit the logical and structured navigation. You’ll want to include keywords, page titles, meta tags and headings for search engine optimisation. There are some hallmarks we use when writing web copy for our clients:\\n\\n-\\tKeep it concise\\n-\\tRound out sub-headings and headings with keywords\\n-\\tUse plain English and an informal voice\\n-\\tStick to common language conventions\\n-\\tBe direct and use active tense\\n-\\tStructure your information consistently and logically\\n\\n\\n##### **4. Speed it up and make it simple**\\n\\nLet’s face it. We’re a busy bunch, and a reminder of the old days of dial-up—waiting for your site to load—will test the patience of even the most loyal visitor. In fact, many visitors will abandon a website after just a few seconds of loading time. Longer loading time is usually caused by complicated design, so make smart design decisions.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yv0jHGvjtR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"From site structure to copy, design and development, we’re passionate about finding the best, most creative way to present your business. Talk to us about it today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137874,141635,1,'Are customers giving up on your website?','2022-07-18 04:21:30','2022-07-18 04:21:30','23790454-4af9-4d48-9702-a37c0569296a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gahB36q3Yd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We’ve all tried to navigate frustrating websites that have ended in annoyance, giving up and even turning to a competitor. Good web design translates to successful conversions, and that all depends on user experience.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Usually, we’re only willing to give a website one minute to display what we’re looking for before we give up. The most common website complaints are that there is ‘too much going on’ and also ‘not enough information’. Translation: many sites drone on and on… but don’t really say much.\\n\\nUsers also complain—across all age groups and digital skill levels—that text is too small and navigation is difficult. Thirty-five per cent of users fail to complete simple tasks on the average website.\\n\\nLet’s improve those stats, shall we?\\n\\n##### **1. Design from the user’s perspective, not your own**\\n\\nWe know your company is the greatest thing since Google and you can’t wait to tell everyone all about where it began, who works there and the details of your offering. But the truth is this: users just want to get to the point, and their interests should override yours. \\nUsability is key. Show them what they’re looking for, and don’t make them search for it.\\n\\n##### **2. Create a navigation path**\\n\\nIf the information on your website is simple and structured, you can guide visitors along the path you’d like them to take—their user journey. Use tabs and sub-pages for different categories and keep it super logical.\\n\\n##### **3. Content is everything**\\n\\nContent is the most important element of your site, really—and it needs to fit the logical and structured navigation. You’ll want to include keywords, page titles, meta tags and headings for search engine optimisation. There are some hallmarks we use when writing web copy for our clients:\\n\\n-\\tKeep it concise\\n-\\tRound out sub-headings and headings with keywords\\n-\\tUse plain English and an informal voice\\n-\\tStick to common language conventions\\n-\\tBe direct and use active tense\\n-\\tStructure your information consistently and logically\\n\\n\\n##### **4. Speed it up and make it simple**\\n\\nLet’s face it. We’re a busy bunch, and a reminder of the old days of dial-up—waiting for your site to load—will test the patience of even the most loyal visitor. In fact, many visitors will abandon a website after just a few seconds of loading time. Longer loading time is usually caused by complicated design, so make smart design decisions.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yv0jHGvjtR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**From site structure to copy, design and development, we’re passionate about finding the best, most creative way to present your business. Talk to us about it today.**\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137876,141637,1,'Are customers giving up on your website?','2022-07-18 04:21:58','2022-07-18 04:21:58','c3eaa107-9274-438f-9694-79d4c05a54df',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gahB36q3Yd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We’ve all tried to navigate frustrating websites that have ended in annoyance, giving up and even turning to a competitor. Good web design translates to successful conversions, and that all depends on user experience.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Usually, we’re only willing to give a website one minute to display what we’re looking for before we give up. The most common website complaints are that there is ‘too much going on’ and also ‘not enough information’. Translation: many sites drone on and on… but don’t really say much.\\n\\nUsers also complain—across all age groups and digital skill levels—that text is too small and navigation is difficult. Thirty-five per cent of users fail to complete simple tasks on the average website.\\n\\nLet’s improve those stats, shall we?\\n\\n##### **1. Design from the user’s perspective, not your own**\\n\\nWe know your company is the greatest thing since Google and you can’t wait to tell everyone all about where it began, who works there and the details of your offering. But the truth is this: users just want to get to the point, and their interests should override yours. \\nUsability is key. Show them what they’re looking for, and don’t make them search for it.\\n\\n##### **2. Create a navigation path**\\n\\nIf the information on your website is simple and structured, you can guide visitors along the path you’d like them to take—their user journey. Use tabs and sub-pages for different categories and keep it super logical.\\n\\n##### **3. Content is everything**\\n\\nContent is the most important element of your site, really—and it needs to fit the logical and structured navigation. You’ll want to include keywords, page titles, meta tags and headings for search engine optimisation. There are some hallmarks we use when writing web copy for our clients:\\n\\n-\\tKeep it concise\\n-\\tRound out sub-headings and headings with keywords\\n-\\tUse plain English and an informal voice\\n-\\tStick to common language conventions\\n-\\tBe direct and use active tense\\n-\\tStructure your information consistently and logically\\n\\n\\n##### **4. Speed it up and make it simple**\\n\\nLet’s face it. We’re a busy bunch, and a reminder of the old days of dial-up—waiting for your site to load—will test the patience of even the most loyal visitor. In fact, many visitors will abandon a website after just a few seconds of loading time. Longer loading time is usually caused by complicated design, so make smart design decisions.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yv0jHGvjtR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**From site structure to copy, design and development, we’re passionate about finding the best, most creative way to present your business. Talk to us about it today.**\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137881,141642,1,NULL,'2022-07-20 04:37:24','2023-03-09 04:28:37','91fd8c0c-aa44-4f99-b1ac-f635231b09cd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Account manager (business growth)',NULL,NULL,NULL,'#### William started working with us because he connected with our purpose-driven nature.\n\nHe approaches complex problems with simple solutions and is always excited by the next innovative way to inspire audiences with truly captivating creative. Coming onboard with us from another creative agency, he brings experience operating across many sectors and within both large and small organisations. Will is passionate about digital strategy and seeks to provide honest service within the client experience.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.linkedin.com/in/william-grunwald-5b1191142/',NULL,NULL,NULL,NULL,'green',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137889,141650,1,'22 07 Meet Greg','2022-07-21 23:03:29','2022-07-21 23:03:29','ebc15479-bc7c-4291-9fab-7449ad7b173f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x768_crop_center-center_82_line/22_07-Meet-Greg.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1536_crop_center-center_82_line/22_07-Meet-Greg.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x640_crop_center-center_82_line/22_07-Meet-Greg.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1280_crop_center-center_82_line/22_07-Meet-Greg.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x512_crop_center-center_82_line/22_07-Meet-Greg.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1024_crop_center-center_82_line/22_07-Meet-Greg.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x384_crop_center-center_82_line/22_07-Meet-Greg.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x320_crop_center-center_82_line/22_07-Meet-Greg.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x768_crop_center-center_82_line/22_07-Meet-Greg.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1536_crop_center-center_82_line/22_07-Meet-Greg.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x640_crop_center-center_82_line/22_07-Meet-Greg.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1280_crop_center-center_82_line/22_07-Meet-Greg.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x512_crop_center-center_82_line/22_07-Meet-Greg.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1024_crop_center-center_82_line/22_07-Meet-Greg.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x384_crop_center-center_82_line/22_07-Meet-Greg.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x320_crop_center-center_82_line/22_07-Meet-Greg.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"3072\":1536,\"1280\":640,\"2560\":1280,\"1024\":512,\"2048\":1024,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":2604,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAIABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABAb/xAAfEAACAQQCAwAAAAAAAAAAAAABAwIABAUREiETMVH/xAAVAQEBAAAAAAAAAAAAAAAAAAAEA//EABoRAAIDAQEAAAAAAAAAAAAAAAACAxEhEkH/2gAMAwEAAhEDEQA/ACMii+tZ3KFmLFEGUI97G+6RLMyPXhGKFHS70q5ZBCskGEzKeHjIHoH7qi1ojOT/2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#c5b2ac\",\"#1a4c80\",\"#5c3d35\",\"#5c86ae\",\"#855946\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137899,141660,1,'About us','2022-07-26 00:27:53','2022-07-26 00:27:53','ee054ce1-4f70-4567-aeee-21ad544011df',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17881\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\",\"17921\",\"97259\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | About us','For 20 years we have helped businesses, organisations and governments to solve problems, unlock potential and connect with people to inspire action.','strategy, brand, campaign, behaviour change, engagement, digital, video, content',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137901,141662,1,'Community Solutions','2022-07-26 00:49:16','2022-08-08 06:44:50','b2a3556b-c975-43a1-9cff-7582eda06043',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Connecting the community with solutions',NULL,NULL,'As a community organisation with services in employment, training, apprenticeships, NDIS and more, Community Solutions were struggling to get their brand to cut through. More specifically, branding consistency was an issue. Through a series of workshops, stakeholder engagement and strategy alignment research, we identified some building blocks for success to form the foundations of the campaign development.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-973WjkOkqV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/708008632?h=ea7482f91d&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TE5SrR8ZJY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140086\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CHALLENGE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The brief was relatively simple. Get us known for who we are and what we do. And quickly. With that, we applied our combination of strategic smarts and creative firepower to produce a brand awareness campaign for Community Solutions that delivered on all counts.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7z7VbqMAm5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The critical challenge of addressing the brand awareness and consistency issues was creatively solved by going back to basics—the brand name. We added a series of two-word descriptors to the Community Solutions name and logo. Through graphic design, we made them readable both horizontally and vertically to create multiple meanings and build new stories. \\nThis approach kept the branding front and centre, delivering on the awareness measure while shining a light on the services and outcomes that Community Solutions offers to their stakeholders.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140087\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hUKFvG7e7T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The campaign features a variety of assets, including digital, socials, outdoor, online video and radio. Everything was designed in a template format for multiple executions and future extensions.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-j5ZW2yegIz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140093\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The creative team did a fantastic job listening to the client, understanding their needs and solving it in a really interesting way. We wanted a concept that was like discovering a little nugget of gold. This campaign does exactly that. It looks, sounds and feels just right.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-l4zDr11Y7Z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"##### “New Word Order presented us with a concept that was quite unexpected but answered the brief in a truly compelling and powerful way. We’re excited to see how the campaign engages with people and evolves into the future.”\\n\\n**Rebecca Green**\\n<br>Marketing Advisor, Campaigns – Community Solutions\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Community Solutions','As a community organisation with services in employment, training, apprenticeships, NDIS and more, Community Solutions were struggling to get their brand to cut through.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137902,141663,1,'Community Solutions','2022-07-26 00:49:17','2022-07-26 00:49:17','f9f459c1-6612-4c8c-a69a-c227228b6d64',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Connecting the community with solutions',NULL,NULL,'As a community organisation with services in employment, training, apprenticeships, NDIS and more, Community Solutions were struggling to get their brand to cut through. More specifically, branding consistency was an issue. Through a series of workshops, stakeholder engagement and strategy alignment research, we identified some building blocks for success to form the foundations of the campaign development.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-973WjkOkqV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/708008632?h=ea7482f91d&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TE5SrR8ZJY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140086\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The brief was relatively simple. Get us known for who we are and what we do. And quickly. With that, we applied our combination of strategic smarts and creative firepower to produce a brand awareness campaign for Community Solutions that delivered on all counts.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7z7VbqMAm5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The critical challenge of addressing the brand awareness and consistency issues was creatively solved by going back to basics—the brand name. We added a series of two-word descriptors to the Community Solutions name and logo. Through graphic design, we made them readable both horizontally and vertically to create multiple meanings and build new stories. \\nThis approach kept the branding front and centre, delivering on the awareness measure while shining a light on the services and outcomes that Community Solutions offers to their stakeholders.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140087\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hUKFvG7e7T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The campaign features a variety of assets, including digital, socials, outdoor, online video and radio. Everything was designed in a template format for multiple executions and future extensions.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-j5ZW2yegIz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140093\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The creative team did a fantastic job listening to the client, understanding their needs and solving it in a really interesting way. We wanted a concept that was like discovering a little nugget of gold. This campaign does exactly that. It looks, sounds and feels just right.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-l4zDr11Y7Z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"“New Word Order presented us with a concept that was quite unexpected but answered the brief in a truly compelling and powerful way. We’re excited to see how the campaign engages with people and evolves into the future.”\\n\\n—Rebecca Green, Community Solutions Marketing Advisor – Campaigns\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Community Solutions','As a community organisation with services in employment, training, apprenticeships, NDIS and more, Community Solutions were struggling to get their brand to cut through.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137909,141670,1,'22 07 Ramsay Marketing Project Page 1 1','2022-07-26 01:35:54','2022-07-26 01:35:54','0c0f88a1-df91-42a2-b42c-a3b5110deb2b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAAD/8QAHhAAAgICAgMAAAAAAAAAAAAAAQIAAxEhEnEyUdH/xAAWAQEBAQAAAAAAAAAAAAAAAAAAAQP/xAAYEQEBAQEBAAAAAAAAAAAAAAAAAREhQf/aAAwDAQACEQMRAD8ATY6IhYkn0ANkzOrM3o1VtrApdVwOM5B11Bc8b/YRX+b9mB//2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#8c8e7d\",\"#1c1613\",\"#e0c6b7\",\"#632623\",\"#66503a\"],\"lightness\":41,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137910,141671,1,'22 07 Ramsay Marketing Project Page 1 12','2022-07-26 01:35:57','2022-07-26 01:35:57','7369c743-ebc9-44a4-bbc7-056d20010ca1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAAG/8QAIRAAAQQBAwUAAAAAAAAAAAAAAQACAwQRBRJxEyExNUL/xAAWAQEBAQAAAAAAAAAAAAAAAAABAAL/xAAbEQADAAIDAAAAAAAAAAAAAAAAAQIDESExMv/aAAwDAQACEQMRAD8AaNQiZE95qyt29m7xjKHk4Gce2VCwZawMrnRg5IPSJPlCp6NXKVALXtanKZ8g+zRU/rlRH//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#b8b8b9\",\"#2d2522\",\"#753e34\",\"#896549\",\"#726d6e\"],\"lightness\":43,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137911,141672,1,'22 07 Ramsay Marketing Project Page 1 13','2022-07-26 01:36:02','2022-07-26 01:36:02','0dcc34d5-4ad5-4b2f-80fb-f3ae99188d5a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFAABAAAAAAAAAAAAAAAAAAAABf/EACIQAAIABQMFAAAAAAAAAAAAAAEDAAIEETEFEzI0cXKx8P/EABcBAAMBAAAAAAAAAAAAAAAAAAABAgP/xAAcEQEAAgEFAAAAAAAAAAAAAAAAARECEiExQVH/2gAMAwEAAhEDEQA/AFarVpWLmswLFuX2ImJ9VQar10OqZFrmG2QLAm4xmFHLWsdF3uMfyZ2MNlI1XXyeA9QDt//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#a19289\",\"#27211e\",\"#e3e0dd\",\"#971e29\",\"#654f41\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137919,141680,1,'22 07 Ramsay Marketing Netball 1 1','2022-07-26 01:39:44','2022-07-26 01:39:44','ff0b45a4-651d-401f-92fa-62c8fc0ad00a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":[],\"originalImageWidth\":0,\"originalImageHeight\":0,\"placeholder\":null,\"placeholderSvg\":null,\"colorPalette\":[],\"lightness\":0,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137927,141688,1,'22 07 Ramsay Marketing Project Page 1 1','2022-07-26 01:44:21','2022-07-26 01:44:21','524fdba3-530c-41c8-a3d1-ef6b2c9a9f4e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-014420_awbz.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-014420_awbz.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-014420_awbz.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-014420_awbz.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-014420_awbz.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-014420_awbz.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-014420_awbz.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-014420_awbz.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-014420_awbz.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-014420_awbz.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-014420_awbz.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-014420_awbz.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-014420_awbz.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-014420_awbz.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-014420_awbz.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-014420_awbz.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAAD/8QAHhAAAgICAgMAAAAAAAAAAAAAAQIAAxEhEnEyUdH/xAAWAQEBAQAAAAAAAAAAAAAAAAAAAQP/xAAYEQEBAQEBAAAAAAAAAAAAAAAAAREhQf/aAAwDAQACEQMRAD8ATY6IhYkn0ANkzOrM3o1VtrApdVwOM5B11Bc8b/YRX+b9mB//2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#8c8e7d\",\"#1c1613\",\"#e0c6b7\",\"#632623\",\"#66503a\"],\"lightness\":41,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137932,141693,1,'Are customers giving up on your website?','2022-07-26 04:07:27','2022-07-26 04:07:27','52e36a28-6f6b-4659-889e-e6ee759ad445',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gahB36q3Yd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We’ve all tried to navigate frustrating websites that have ended in annoyance, giving up and even turning to a competitor. Good web design translates to successful conversions, and that all depends on user experience.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Usually, we’re only willing to give a website one minute to display what we’re looking for before we give up. The most common website complaints are that there is ‘too much going on’ and also ‘not enough information’. Translation: many sites drone on and on… but don’t really say much.\\n\\nUsers also complain—across all age groups and digital skill levels—that text is too small and navigation is difficult. Thirty-five per cent of users fail to complete simple tasks on the average website.\\n\\nLet’s improve those stats, shall we?\\n\\n##### **1. Design from the user’s perspective, not your own**\\n\\nWe know your company is the greatest thing since Google and you can’t wait to tell everyone all about where it began, who works there and the details of your offering. But the truth is this: users just want to get to the point, and their interests should override yours. \\nUsability is key. Show them what they’re looking for, and don’t make them search for it.\\n\\n##### **2. Create a navigation path**\\n\\nIf the information on your website is simple and structured, you can guide visitors along the path you’d like them to take—their user journey. Use tabs and sub-pages for different categories and keep it super logical.\\n\\n##### **3. Content is everything**\\n\\nContent is the most important element of your site, really—and it needs to fit the logical and structured navigation. You’ll want to include keywords, page titles, meta tags and headings for search engine optimisation. There are some hallmarks we use when writing web copy for our clients:\\n\\n-\\tKeep it concise\\n-\\tRound out sub-headings and headings with keywords\\n-\\tUse plain English and an informal voice\\n-\\tStick to common language conventions\\n-\\tBe direct and use active tense\\n-\\tStructure your information consistently and logically\\n-\\tSpeak to your audience\\n\\n\\n##### **4. Speed it up and make it simple**\\n\\nLet’s face it. We’re a busy bunch, and a reminder of the old days of dial-up—waiting for your site to load—will test the patience of even the most loyal visitor. In fact, many visitors will abandon a website after just a few seconds of loading time. Longer loading time is usually caused by complicated design, so make smart design decisions.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yv0jHGvjtR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**From site structure to copy, design and development, we’re passionate about finding the best, most creative way to present your business. Talk to us about it today.**\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137937,141698,1,'22 07 Ramsay Marketing Netball 1 2','2022-07-26 05:03:55','2022-07-26 05:03:55','58c77264-20fd-4167-8d30-94f89ea3efa7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":[],\"originalImageWidth\":0,\"originalImageHeight\":0,\"placeholder\":null,\"placeholderSvg\":null,\"colorPalette\":[],\"lightness\":0,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137938,141699,1,'22 07 Ramsay Marketing Netball 1 2','2022-07-26 05:04:22','2022-07-26 05:04:22','c4c919d0-02a8-4cd3-9669-7f98d18d16fd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":[],\"originalImageWidth\":0,\"originalImageHeight\":0,\"placeholder\":null,\"placeholderSvg\":null,\"colorPalette\":[],\"lightness\":0,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137943,141704,1,'22 07 Ramsay Marketing Netball 1 3','2022-07-26 05:08:33','2022-07-26 05:08:33','45486b57-f62b-437b-91aa-707834b80a5b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":[],\"originalImageWidth\":0,\"originalImageHeight\":0,\"placeholder\":null,\"placeholderSvg\":null,\"colorPalette\":[],\"lightness\":0,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137946,141707,1,'22 07 Ramsay Marketing Netball 1 3','2022-07-26 05:22:56','2022-07-26 05:22:56','9b7672c9-b610-48e5-ae3e-be424e28ba49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":[],\"originalImageWidth\":0,\"originalImageHeight\":0,\"placeholder\":null,\"placeholderSvg\":null,\"colorPalette\":[],\"lightness\":0,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137959,141720,1,'22 07 Ramsay Marketing Netball 1 3','2022-07-26 05:27:42','2022-07-26 05:27:42','7ba46ed0-085e-44fa-aa5a-b11c0d433786',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":[],\"originalImageWidth\":0,\"originalImageHeight\":0,\"placeholder\":null,\"placeholderSvg\":null,\"colorPalette\":[],\"lightness\":0,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137964,141725,1,'Ramsay Health Care','2022-07-26 05:29:13','2022-11-16 22:17:08','f6f65188-c567-4274-9537-bf5acf4aa6ee',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Weekend Warrior campaign',NULL,NULL,'We work so hard through the week, we deserve to play hard over the weekend. When we find ourselves reliving our glory days through social sport or using our house reno as a creative and active outlet—sometimes it can be at the risk of our safety. Ramsay Health Care knows accidents happen, and they asked us to help them showcase how their holistic orthopaedic care services get Weekend Warriors back on their feet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141736\",\"141670\",\"141671\",\"141672\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDjAdefp2G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Ramsay Health Care asked us to help develop a campaign to promote their orthopaedic services across their network of hospitals. The campaign served to educate the target market on what makes Ramsay’s orthopaedic offerings special, while also calling them to check whether their health insurance covers Ramsay hospitals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BWwvmn3pwX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141745\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using Ramsay’s target market of orthopaedic patients in their 40s and 50s, we created the ‘weekend warrior’ characters: everyday people who take on their alter ego when the working week is over. The social sports star who pushes themself to go for that bicycle kick or elaborate jump pass. The reno kings and queens who love Bunnings outings and would never pay someone else to do work around the house that they could do themselves.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ynJgqMQCET\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s an ocean of campaigns out there from medical brands that all look the same—clinical and serious. Ramsay stepped outside of the same-same and opted for more lively, exaggerated shots of Weekend Warriors in action, being injured and seeking care from a Ramsay hospital.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141741\",\"141742\",\"141743\",\"141744\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FF7V2IzNlc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With fresh, exciting and relatable action shots complemented by copy that captures the work-hard-play-hard lifestyle, our campaign for Ramsay cut through to the market with personality and an element of surprise.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Ramsay Health Care','Weekend Warrior campaign',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137965,141726,1,'Right time, right place','2022-07-26 05:29:14','2022-07-26 05:29:14','1f9894f3-d31c-41fc-8692-a189960b51ff',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'So much better than a hospital waiting room',NULL,NULL,'Central Queensland, Wide Bay and Sunshine Coast PHN asked us to refresh its campaign strategy, messaging and creative because people were still going to the emergency department with non-life-threatening sickness or injuries. Our solution was to show the people who live in the region—and holidaymakers—that the emergency department isn\'t the only option.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22010\",\"22012\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22011\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Right time, right place','So much better than a hospital waiting room',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137967,141728,1,'Ramsay marketing','2022-07-26 05:31:16','2022-07-26 05:31:16','e7879da9-9d0e-4ac9-b6c1-6cb56fcd6b8f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Weekend Warrior campaign',NULL,NULL,'We work so hard through the week, we deserve to play hard over the weekend. When we find ourselves reliving our glory days through social sport or using our house reno as a creative and active outlet—sometimes it can be at the risk of our safety. Ramsay Health Care knows accidents happen, which is why they’re ready and waiting, with their holistic orthopaedic care services, to help get Weekend Warriors back on their feet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22010\",\"22012\",\"141672\",\"141671\",\"141670\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDjAdefp2G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Ramsay Health Care asked us to help develop a campaign to promote their orthopaedic services across their network of hospitals. The campaign served to educate the target market on what makes Ramsay’s orthopaedic offerings special, while also calling them to check whether their health insurance covers Ramsay hospitals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22011\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Right time, right place','So much better than a hospital waiting room',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137969,141730,1,'Ramsay marketing','2022-07-26 05:31:58','2022-07-26 05:31:58','ead64b18-0ece-4b17-9bb3-84afc50a7458',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Weekend Warrior campaign',NULL,NULL,'We work so hard through the week, we deserve to play hard over the weekend. When we find ourselves reliving our glory days through social sport or using our house reno as a creative and active outlet—sometimes it can be at the risk of our safety. Ramsay Health Care knows accidents happen, which is why they’re ready and waiting, with their holistic orthopaedic care services, to help get Weekend Warriors back on their feet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141670\",\"141671\",\"141672\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDjAdefp2G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Ramsay Health Care asked us to help develop a campaign to promote their orthopaedic services across their network of hospitals. The campaign served to educate the target market on what makes Ramsay’s orthopaedic offerings special, while also calling them to check whether their health insurance covers Ramsay hospitals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22011\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Right time, right place','So much better than a hospital waiting room',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137972,141733,1,'22 07 Meet Greg 2','2022-07-26 05:43:14','2022-07-26 05:43:14','93218fb4-e88c-4b6e-a519-287844999f91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x768_crop_center-center_82_line/22_07-Meet-Greg-2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1536_crop_center-center_82_line/22_07-Meet-Greg-2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x640_crop_center-center_82_line/22_07-Meet-Greg-2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1280_crop_center-center_82_line/22_07-Meet-Greg-2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x512_crop_center-center_82_line/22_07-Meet-Greg-2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1024_crop_center-center_82_line/22_07-Meet-Greg-2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x384_crop_center-center_82_line/22_07-Meet-Greg-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x320_crop_center-center_82_line/22_07-Meet-Greg-2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x768_crop_center-center_82_line/22_07-Meet-Greg-2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1536_crop_center-center_82_line/22_07-Meet-Greg-2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x640_crop_center-center_82_line/22_07-Meet-Greg-2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1280_crop_center-center_82_line/22_07-Meet-Greg-2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x512_crop_center-center_82_line/22_07-Meet-Greg-2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1024_crop_center-center_82_line/22_07-Meet-Greg-2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x384_crop_center-center_82_line/22_07-Meet-Greg-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x320_crop_center-center_82_line/22_07-Meet-Greg-2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"3072\":1536,\"1280\":640,\"2560\":1280,\"1024\":512,\"2048\":1024,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":2604,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAIABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABAb/xAAdEAACAwACAwAAAAAAAAAAAAACAwEEEQAhEhOh/8QAFQEBAQAAAAAAAAAAAAAAAAAABAP/xAAaEQACAwEBAAAAAAAAAAAAAAACEQADQSFC/9oADAMBAAIRAxEAPwAjBReqssoXIsVMSQD3sb3xFtxAayRqpAwb7KUrwLvizCkfH1zG/eG1xHlT/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#c5b7b2\",\"#1c4e81\",\"#704638\",\"#668db1\",\"#605059\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137974,141735,1,'MAR 1585 edit isolated','2022-07-26 05:44:05','2023-03-09 04:26:27','c527c64d-672a-4654-83cf-7c27a393d4d8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Greg-col-23.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Greg-col-23.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Greg-col-23.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Greg-col-23.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Greg-col-23.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Greg-col-23.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Greg-col-23.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Greg-col-23.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1280,\"originalImageHeight\":1280,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBIAEgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAwQF/8QAIRAAAQMDBAMAAAAAAAAAAAAAAQIDEQAEIRIUIjFRUnH/xAAWAQEBAQAAAAAAAAAAAAAAAAABAgP/xAAaEQACAwEBAAAAAAAAAAAAAAABAgAREiED/9oADAMBAAIRAxEAPwBbx/bIbPsqCY6FW5IFiKgE9lTfIHBicEjuhG0IuuTCct99alLaknl9OK0K2KmW6PJotWilNSs6YHfmpRcijKf00bE//9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#9fa2b9\",\"#30373e\",\"#6c4a40\",\"#dcb09e\",\"#594c5c\"],\"lightness\":47,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137975,141736,1,'22 07 Ramsay Marketing Project Page 2 1','2022-07-26 06:52:15','2022-07-26 06:52:15','b8bd3292-57a8-4820-b458-95dd5496ab19',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_2_1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_2_1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_2_1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_2_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_2_1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_2_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_2_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_2_1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_2_1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_2_1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_2_1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_2_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_2_1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_2_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_2_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_2_1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAgT/xAAeEAACAQQDAQAAAAAAAAAAAAABAgADBBEhEhQxQv/EABcBAQEBAQAAAAAAAAAAAAAAAAACAQP/xAAYEQEBAQEBAAAAAAAAAAAAAAAAAQISIf/aAAwDAQACEQMRAD8AvqC0pqVR0Z8aGdGVdxOcej2bXgoNJiSPlTiO424WL5OKjX2B/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#a2aab1\",\"#413a30\",\"#72634d\",\"#74463b\",\"#eaccbb\"],\"lightness\":45,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137976,141737,1,'22 07 Ramsay Marketing Project Page 1 1','2022-07-26 06:56:38','2022-07-26 06:56:38','98f1483e-2862-4d93-8d82-bf9f0c5c14ab',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065637_uxmw.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065637_uxmw.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065637_uxmw.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065637_uxmw.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065637_uxmw.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065637_uxmw.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065637_uxmw.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065637_uxmw.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065637_uxmw.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065637_uxmw.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065637_uxmw.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065637_uxmw.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065637_uxmw.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065637_uxmw.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065637_uxmw.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065637_uxmw.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAwQG/8QAJBAAAgEDAQkBAAAAAAAAAAAAAQIDAAQRBSE0NUFhcXKBscH/xAAVAQEBAAAAAAAAAAAAAAAAAAACAf/EABkRAQACAwAAAAAAAAAAAAAAAAABEQISUf/aAAwDAQACEQMRAD8AsebU7DYyW8jEELg4J9c6N9Ulvq6XFvKs6ojxkDIOA3WlvAxjRtT4hadm+VCZCfeG8D+UEf/Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#c2c3c0\",\"#31372e\",\"#65644a\",\"#565044\",\"#76766a\"],\"lightness\":44,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137977,141738,1,'22 07 Ramsay Marketing Project Page 1 12','2022-07-26 06:56:44','2022-07-26 06:56:44','b1a57ba7-e193-41ac-9f4b-f73a5884af02',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065643_rdgr.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065643_rdgr.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065643_rdgr.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065643_rdgr.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065643_rdgr.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065643_rdgr.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065643_rdgr.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065643_rdgr.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065643_rdgr.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065643_rdgr.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065643_rdgr.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065643_rdgr.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065643_rdgr.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065643_rdgr.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065643_rdgr.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065643_rdgr.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAIF/8QAIxAAAgEDAQkAAAAAAAAAAAAAAgMBAAQSEQUhMTRBQ3GCof/EABYBAQEBAAAAAAAAAAAAAAAAAAEAA//EABoRAQEAAgMAAAAAAAAAAAAAAAABETESIUH/2gAMAwEAAhEDEQA/AM1Oz8XYN1ko6afKxyYQsGlZks1CJ5cRjdMVXHLoSU5/P+sVXZu09i68Uw+P/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#66674a\",\"#cbbeb0\",\"#14212a\",\"#acb485\",\"#2274b8\"],\"lightness\":44,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `content` VALUES (137978,141739,1,'22 07 Ramsay Marketing Project Page 1 13','2022-07-26 06:56:48','2022-07-26 06:56:48','c0c2d9d9-bd01-4284-903f-00558679b726',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065647_gmwa.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065647_gmwa.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065647_gmwa.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065647_gmwa.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065647_gmwa.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065647_gmwa.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065647_gmwa.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065647_gmwa.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065647_gmwa.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065647_gmwa.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065647_gmwa.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065647_gmwa.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065647_gmwa.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065647_gmwa.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065647_gmwa.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065647_gmwa.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQEG/8QAIxAAAgAFAgcAAAAAAAAAAAAAAQIAAwQFEQaBEhQiMzRBc//EABUBAQEAAAAAAAAAAAAAAAAAAAID/8QAGxEAAgMBAQEAAAAAAAAAAAAAAAECAxExITL/2gAMAwEAAhEDEQA/ANFcrpycipbqd0TOQMgeoKevBPxBlku8yupZzOqMZRABBxxDeHOCjgYTcmyVvgXL4wK/pCs4wfS3ambxW/qJU8Z//9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#dfd5cf\",\"#153453\",\"#815341\",\"#a78f79\",\"#9b7a52\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137979,141740,1,'22 07 Ramsay Marketing Project Page 1 14','2022-07-26 06:56:52','2022-07-26 06:56:52','f7a6a98e-a126-437d-b1be-9a94688517f8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_14.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_14.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_14.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_14.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_14.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_14.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_14.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_14.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_14.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_14.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_14.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_14.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_14.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_14.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_14.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_14.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABQL/xAAjEAABBAEBCQAAAAAAAAAAAAABAAIDEQUxBBMhMjRBcXLR/8QAFwEAAwEAAAAAAAAAAAAAAAAAAAIDAf/EABoRAAIDAQEAAAAAAAAAAAAAAAABAhEhEjH/2gAMAwEAAhEDEQA/AH58oGt3ojJ7CuKVNMemgJ+WlbNOyOqeGinHQ1rSOdVG3mlS8snn4pw8GYZi+o2r2CtElI//2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#c8bcb4\",\"#363136\",\"#7c6d69\",\"#7b5c46\",\"#6a4437\"],\"lightness\":46,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137980,141741,1,'22 07 Ramsay Marketing Project Page 1 1','2022-07-26 06:57:24','2022-07-26 06:57:24','e7de7306-fe1a-4e8d-8702-129259a23d4d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065723_icjm.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065723_icjm.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065723_icjm.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065723_icjm.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065723_icjm.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065723_icjm.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065723_icjm.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065723_icjm.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065723_icjm.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065723_icjm.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065723_icjm.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065723_icjm.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065723_icjm.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065723_icjm.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065723_icjm.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_1_2022-07-26-065723_icjm.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAwQG/8QAJBAAAgEDAQkBAAAAAAAAAAAAAQIDAAQRBSE0NUFhcXKBscH/xAAVAQEBAAAAAAAAAAAAAAAAAAACAf/EABkRAQACAwAAAAAAAAAAAAAAAAABEQISUf/aAAwDAQACEQMRAD8AsebU7DYyW8jEELg4J9c6N9Ulvq6XFvKs6ojxkDIOA3WlvAxjRtT4hadm+VCZCfeG8D+UEf/Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#c2c3c0\",\"#31372e\",\"#65644a\",\"#565044\",\"#76766a\"],\"lightness\":44,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137981,141742,1,'22 07 Ramsay Marketing Project Page 1 12','2022-07-26 06:57:28','2022-07-26 06:57:28','4e4eb348-3e41-43e3-b94e-42e1f5a5e0f6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065728_qnal.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065728_qnal.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065728_qnal.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065728_qnal.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065728_qnal.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065728_qnal.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065728_qnal.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065728_qnal.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065728_qnal.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065728_qnal.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065728_qnal.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065728_qnal.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065728_qnal.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065728_qnal.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065728_qnal.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_12_2022-07-26-065728_qnal.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAIF/8QAIxAAAgEDAQkAAAAAAAAAAAAAAgMBAAQSEQUhMTRBQ3GCof/EABYBAQEBAAAAAAAAAAAAAAAAAAEAA//EABoRAQEAAgMAAAAAAAAAAAAAAAABETESIUH/2gAMAwEAAhEDEQA/AM1Oz8XYN1ko6afKxyYQsGlZks1CJ5cRjdMVXHLoSU5/P+sVXZu09i68Uw+P/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#66674a\",\"#cbbeb0\",\"#14212a\",\"#acb485\",\"#2274b8\"],\"lightness\":44,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137982,141743,1,'22 07 Ramsay Marketing Project Page 1 13','2022-07-26 06:57:36','2022-07-26 06:57:36','ed439a46-c0a1-454b-9630-577a772ec309',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065735_rgqd.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065735_rgqd.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065735_rgqd.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065735_rgqd.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065735_rgqd.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065735_rgqd.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065735_rgqd.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065735_rgqd.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065735_rgqd.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065735_rgqd.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065735_rgqd.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065735_rgqd.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065735_rgqd.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065735_rgqd.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065735_rgqd.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_13_2022-07-26-065735_rgqd.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQEG/8QAIxAAAgAFAgcAAAAAAAAAAAAAAQIAAwQFEQaBEhQiMzRBc//EABUBAQEAAAAAAAAAAAAAAAAAAAID/8QAGxEAAgMBAQEAAAAAAAAAAAAAAAECAxExITL/2gAMAwEAAhEDEQA/ANFcrpycipbqd0TOQMgeoKevBPxBlku8yupZzOqMZRABBxxDeHOCjgYTcmyVvgXL4wK/pCs4wfS3ambxW/qJU8Z//9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#dfd5cf\",\"#153453\",\"#815341\",\"#a78f79\",\"#9b7a52\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137983,141744,1,'22 07 Ramsay Marketing Project Page 1 14','2022-07-26 06:57:40','2022-07-26 06:57:40','363b3dd8-2aa2-46ca-9cbb-71df15cdfc30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_14_2022-07-26-065740_ktpl.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_14_2022-07-26-065740_ktpl.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_14_2022-07-26-065740_ktpl.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_14_2022-07-26-065740_ktpl.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_14_2022-07-26-065740_ktpl.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_14_2022-07-26-065740_ktpl.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_14_2022-07-26-065740_ktpl.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_14_2022-07-26-065740_ktpl.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_14_2022-07-26-065740_ktpl.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_14_2022-07-26-065740_ktpl.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_14_2022-07-26-065740_ktpl.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_14_2022-07-26-065740_ktpl.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_14_2022-07-26-065740_ktpl.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_14_2022-07-26-065740_ktpl.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_14_2022-07-26-065740_ktpl.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_1_14_2022-07-26-065740_ktpl.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABQL/xAAjEAABBAEBCQAAAAAAAAAAAAABAAIDEQUxBBMhMjRBcXLR/8QAFwEAAwEAAAAAAAAAAAAAAAAAAAIDAf/EABoRAAIDAQEAAAAAAAAAAAAAAAABAhEhEjH/2gAMAwEAAhEDEQA/AH58oGt3ojJ7CuKVNMemgJ+WlbNOyOqeGinHQ1rSOdVG3mlS8snn4pw8GYZi+o2r2CtElI//2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#c8bcb4\",\"#363136\",\"#7c6d69\",\"#7b5c46\",\"#6a4437\"],\"lightness\":46,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137984,141745,1,'22 07 Ramsay Marketing Project Page 3 1','2022-07-26 07:00:32','2022-07-26 07:00:32','21db4d93-8976-4d24-889f-74716986cdd5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1728_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_3_1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1440_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_3_1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1152_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_3_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x864_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_3_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x720_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_3_1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1728_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_3_1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1440_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_3_1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1152_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_3_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x864_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_3_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x720_crop_center-center_82_line/22_07-Ramsay-Marketing-Project-Page_3_1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1728,\"1280\":1440,\"1024\":1152,\"768\":864,\"640\":720},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":2000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAASABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAgMEBf/EACMQAAICAgECBwAAAAAAAAAAAAECAxEABBIFMRMhIlFxkcH/xAAXAQADAQAAAAAAAAAAAAAAAAAAAQME/8QAHBEAAwEAAwEBAAAAAAAAAAAAAAECEQMhMVES/9oADAMBAAIRAxEAPwCOlSRQ6kg5op50Z4X61/DR6fHrzR+HwKTA2rWfvE/oJrwft6YeMJEoVq9LAA0fc5O+0V4smt8G62gI0HJrPcNf7jjZWaLky6dZhDAxJayT8nIFgdhiI/InuMAP/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#72909f\",\"#d4bebc\",\"#5e181a\",\"#704e3f\",\"#2c5a6e\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":1728,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137985,141746,1,'Ramsay marketing','2022-07-26 07:01:23','2022-07-26 07:01:23','cc1323a0-dff8-461c-9e6e-2339b3a3b283',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Weekend Warrior campaign',NULL,NULL,'We work so hard through the week, we deserve to play hard over the weekend. When we find ourselves reliving our glory days through social sport or using our house reno as a creative and active outlet—sometimes it can be at the risk of our safety. Ramsay Health Care knows accidents happen, which is why they’re ready and waiting, with their holistic orthopaedic care services, to help get Weekend Warriors back on their feet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141736\",\"141670\",\"141671\",\"141672\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDjAdefp2G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Ramsay Health Care asked us to help develop a campaign to promote their orthopaedic services across their network of hospitals. The campaign served to educate the target market on what makes Ramsay’s orthopaedic offerings special, while also calling them to check whether their health insurance covers Ramsay hospitals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141741\",\"141742\",\"141743\",\"141744\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BWwvmn3pwX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141745\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using Ramsay’s target market of orthopaedic patients in their 40s and 50s, we created the ‘weekend warrior’ characters: everyday people who take on their alter ego when the working week is over. The social sports star who pushes themself to go for that bicycle kick or elaborate jump pass. The reno kings and queens who love Bunnings outings and would never pay someone else to do work around the house that they could do themselves.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ynJgqMQCET\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s an ocean of campaigns out there from medical brands that all look the same—clinical and serious. Ramsay stepped outside of the same-same and opted for more lively, exaggerated shots of Weekend Warriors in action, being injured and seeking care from a Ramsay hospital.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FF7V2IzNlc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With fresh, exciting and relatable action shots complemented by copy that captures the work-hard-play-hard lifestyle, our campaign for Ramsay cut through to the market with personality and an element of surprise.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Right time, right place','So much better than a hospital waiting room',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137987,141748,1,'Ramsay marketing','2022-07-26 07:02:27','2022-07-26 07:02:27','9340cba1-e225-4fc9-9ddf-4c9f9ea01796',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Weekend Warrior campaign',NULL,NULL,'We work so hard through the week, we deserve to play hard over the weekend. When we find ourselves reliving our glory days through social sport or using our house reno as a creative and active outlet—sometimes it can be at the risk of our safety. Ramsay Health Care knows accidents happen, which is why they’re ready and waiting, with their holistic orthopaedic care services, to help get Weekend Warriors back on their feet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141736\",\"141670\",\"141671\",\"141672\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDjAdefp2G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Ramsay Health Care asked us to help develop a campaign to promote their orthopaedic services across their network of hospitals. The campaign served to educate the target market on what makes Ramsay’s orthopaedic offerings special, while also calling them to check whether their health insurance covers Ramsay hospitals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BWwvmn3pwX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141745\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using Ramsay’s target market of orthopaedic patients in their 40s and 50s, we created the ‘weekend warrior’ characters: everyday people who take on their alter ego when the working week is over. The social sports star who pushes themself to go for that bicycle kick or elaborate jump pass. The reno kings and queens who love Bunnings outings and would never pay someone else to do work around the house that they could do themselves.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ynJgqMQCET\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s an ocean of campaigns out there from medical brands that all look the same—clinical and serious. Ramsay stepped outside of the same-same and opted for more lively, exaggerated shots of Weekend Warriors in action, being injured and seeking care from a Ramsay hospital.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141741\",\"141742\",\"141743\",\"141744\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FF7V2IzNlc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With fresh, exciting and relatable action shots complemented by copy that captures the work-hard-play-hard lifestyle, our campaign for Ramsay cut through to the market with personality and an element of surprise.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Right time, right place','So much better than a hospital waiting room',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137989,141750,1,'Ramsay marketing','2022-07-26 07:02:55','2022-07-26 07:02:55','62deb2dd-740b-43cc-b29c-30b196058062',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Weekend Warrior campaign',NULL,NULL,'We work so hard through the week, we deserve to play hard over the weekend. When we find ourselves reliving our glory days through social sport or using our house reno as a creative and active outlet—sometimes it can be at the risk of our safety. Ramsay Health Care knows accidents happen, which is why they’re ready and waiting, with their holistic orthopaedic care services, to help get Weekend Warriors back on their feet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141736\",\"141670\",\"141671\",\"141672\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDjAdefp2G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Ramsay Health Care asked us to help develop a campaign to promote their orthopaedic services across their network of hospitals. The campaign served to educate the target market on what makes Ramsay’s orthopaedic offerings special, while also calling them to check whether their health insurance covers Ramsay hospitals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BWwvmn3pwX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141745\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using Ramsay’s target market of orthopaedic patients in their 40s and 50s, we created the ‘weekend warrior’ characters: everyday people who take on their alter ego when the working week is over. The social sports star who pushes themself to go for that bicycle kick or elaborate jump pass. The reno kings and queens who love Bunnings outings and would never pay someone else to do work around the house that they could do themselves.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ynJgqMQCET\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s an ocean of campaigns out there from medical brands that all look the same—clinical and serious. Ramsay stepped outside of the same-same and opted for more lively, exaggerated shots of Weekend Warriors in action, being injured and seeking care from a Ramsay hospital.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141741\",\"141742\",\"141743\",\"141744\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FF7V2IzNlc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With fresh, exciting and relatable action shots complemented by copy that captures the work-hard-play-hard lifestyle, our campaign for Ramsay cut through to the market with personality and an element of surprise.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Right time, right place','So much better than a hospital waiting room',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137991,141752,1,'Ramsay marketing','2022-07-26 07:03:20','2022-07-26 07:03:20','9212931f-f81b-40a3-b319-748fce366398',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Weekend Warrior campaign',NULL,NULL,'We work so hard through the week, we deserve to play hard over the weekend. When we find ourselves reliving our glory days through social sport or using our house reno as a creative and active outlet—sometimes it can be at the risk of our safety. Ramsay Health Care knows accidents happen, which is why they’re ready and waiting, with their holistic orthopaedic care services, to help get Weekend Warriors back on their feet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141736\",\"141670\",\"141671\",\"141672\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDjAdefp2G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Ramsay Health Care asked us to help develop a campaign to promote their orthopaedic services across their network of hospitals. The campaign served to educate the target market on what makes Ramsay’s orthopaedic offerings special, while also calling them to check whether their health insurance covers Ramsay hospitals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BWwvmn3pwX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141745\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using Ramsay’s target market of orthopaedic patients in their 40s and 50s, we created the ‘weekend warrior’ characters: everyday people who take on their alter ego when the working week is over. The social sports star who pushes themself to go for that bicycle kick or elaborate jump pass. The reno kings and queens who love Bunnings outings and would never pay someone else to do work around the house that they could do themselves.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ynJgqMQCET\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s an ocean of campaigns out there from medical brands that all look the same—clinical and serious. Ramsay stepped outside of the same-same and opted for more lively, exaggerated shots of Weekend Warriors in action, being injured and seeking care from a Ramsay hospital.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141741\",\"141742\",\"141743\",\"141744\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FF7V2IzNlc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With fresh, exciting and relatable action shots complemented by copy that captures the work-hard-play-hard lifestyle, our campaign for Ramsay cut through to the market with personality and an element of surprise.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Right time, right place','So much better than a hospital waiting room',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137993,141754,1,'Ramsay marketing','2022-07-26 07:04:20','2022-07-26 07:04:20','1bd36194-a7e5-4cd7-af2c-bbecda4eeaa9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Weekend Warrior campaign',NULL,NULL,'We work so hard through the week, we deserve to play hard over the weekend. When we find ourselves reliving our glory days through social sport or using our house reno as a creative and active outlet—sometimes it can be at the risk of our safety. Ramsay Health Care knows accidents happen, which is why they’re ready and waiting, with their holistic orthopaedic care services, to help get Weekend Warriors back on their feet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141736\",\"141670\",\"141671\",\"141672\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDjAdefp2G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Ramsay Health Care asked us to help develop a campaign to promote their orthopaedic services across their network of hospitals. The campaign served to educate the target market on what makes Ramsay’s orthopaedic offerings special, while also calling them to check whether their health insurance covers Ramsay hospitals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BWwvmn3pwX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141745\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using Ramsay’s target market of orthopaedic patients in their 40s and 50s, we created the ‘weekend warrior’ characters: everyday people who take on their alter ego when the working week is over. The social sports star who pushes themself to go for that bicycle kick or elaborate jump pass. The reno kings and queens who love Bunnings outings and would never pay someone else to do work around the house that they could do themselves.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ynJgqMQCET\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s an ocean of campaigns out there from medical brands that all look the same—clinical and serious. Ramsay stepped outside of the same-same and opted for more lively, exaggerated shots of Weekend Warriors in action, being injured and seeking care from a Ramsay hospital.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141741\",\"141742\",\"141743\",\"141744\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FF7V2IzNlc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With fresh, exciting and relatable action shots complemented by copy that captures the work-hard-play-hard lifestyle, our campaign for Ramsay cut through to the market with personality and an element of surprise.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Right time, right place','So much better than a hospital waiting room',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137995,141756,1,'Ramsay Health Care','2022-07-26 07:05:12','2022-07-26 07:05:12','4eccbf55-1924-4d96-9a5a-7304ed2a2106',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Weekend Warrior campaign',NULL,NULL,'We work so hard through the week, we deserve to play hard over the weekend. When we find ourselves reliving our glory days through social sport or using our house reno as a creative and active outlet—sometimes it can be at the risk of our safety. Ramsay Health Care knows accidents happen, which is why they’re ready and waiting, with their holistic orthopaedic care services, to help get Weekend Warriors back on their feet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141736\",\"141670\",\"141671\",\"141672\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDjAdefp2G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Ramsay Health Care asked us to help develop a campaign to promote their orthopaedic services across their network of hospitals. The campaign served to educate the target market on what makes Ramsay’s orthopaedic offerings special, while also calling them to check whether their health insurance covers Ramsay hospitals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BWwvmn3pwX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141745\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using Ramsay’s target market of orthopaedic patients in their 40s and 50s, we created the ‘weekend warrior’ characters: everyday people who take on their alter ego when the working week is over. The social sports star who pushes themself to go for that bicycle kick or elaborate jump pass. The reno kings and queens who love Bunnings outings and would never pay someone else to do work around the house that they could do themselves.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ynJgqMQCET\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s an ocean of campaigns out there from medical brands that all look the same—clinical and serious. Ramsay stepped outside of the same-same and opted for more lively, exaggerated shots of Weekend Warriors in action, being injured and seeking care from a Ramsay hospital.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141741\",\"141742\",\"141743\",\"141744\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FF7V2IzNlc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With fresh, exciting and relatable action shots complemented by copy that captures the work-hard-play-hard lifestyle, our campaign for Ramsay cut through to the market with personality and an element of surprise.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Right time, right place','So much better than a hospital waiting room',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137997,141758,1,'22 07 Greg EDM 1 1','2022-07-26 07:05:58','2022-07-26 07:05:58','67e8452a-4433-4533-863a-ea6bce265cfc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x511_crop_center-center_82_line/22_07-Greg-EDM_1_1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x383_crop_center-center_82_line/22_07-Greg-EDM_1_1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x319_crop_center-center_82_line/22_07-Greg-EDM_1_1.jpg\"},\"optimizedWebPImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x511_crop_center-center_82_line/22_07-Greg-EDM_1_1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x383_crop_center-center_82_line/22_07-Greg-EDM_1_1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x319_crop_center-center_82_line/22_07-Greg-EDM_1_1.jpg.webp\"},\"variantSourceWidths\":[\"1024\",\"768\",\"640\"],\"variantHeights\":{\"1024\":511,\"768\":383,\"640\":319},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1167,\"originalImageHeight\":583,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAHABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAwT/xAAeEAACAQMFAAAAAAAAAAAAAAABAgMABBEFEyFBgf/EABYBAQEBAAAAAAAAAAAAAAAAAAABA//EABgRAAMBAQAAAAAAAAAAAAAAAAABESEx/9oADAMBAAIRAxEAPwCZ9LSC6AJLqeQSayeMo9uzWmzLOVdYZOhjPlF2oQ//2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#6f6f55\",\"#d2c7c0\",\"#1b2424\",\"#7f97b1\",\"#b3bc90\"],\"lightness\":48,\"placeholderWidth\":1024,\"placeholderHeight\":511,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(137998,141759,1,'Ramsay Health Care','2022-07-26 07:06:10','2022-07-26 07:06:10','d2dc1540-7e6b-4791-8ffd-80f5af8b0641',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Weekend Warrior campaign',NULL,NULL,'We work so hard through the week, we deserve to play hard over the weekend. When we find ourselves reliving our glory days through social sport or using our house reno as a creative and active outlet—sometimes it can be at the risk of our safety. Ramsay Health Care knows accidents happen, which is why they’re ready and waiting, with their holistic orthopaedic care services, to help get Weekend Warriors back on their feet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141736\",\"141670\",\"141671\",\"141672\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDjAdefp2G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Ramsay Health Care asked us to help develop a campaign to promote their orthopaedic services across their network of hospitals. The campaign served to educate the target market on what makes Ramsay’s orthopaedic offerings special, while also calling them to check whether their health insurance covers Ramsay hospitals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BWwvmn3pwX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141745\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using Ramsay’s target market of orthopaedic patients in their 40s and 50s, we created the ‘weekend warrior’ characters: everyday people who take on their alter ego when the working week is over. The social sports star who pushes themself to go for that bicycle kick or elaborate jump pass. The reno kings and queens who love Bunnings outings and would never pay someone else to do work around the house that they could do themselves.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ynJgqMQCET\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s an ocean of campaigns out there from medical brands that all look the same—clinical and serious. Ramsay stepped outside of the same-same and opted for more lively, exaggerated shots of Weekend Warriors in action, being injured and seeking care from a Ramsay hospital.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141741\",\"141742\",\"141743\",\"141744\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FF7V2IzNlc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With fresh, exciting and relatable action shots complemented by copy that captures the work-hard-play-hard lifestyle, our campaign for Ramsay cut through to the market with personality and an element of surprise.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Ramsay Health Care','Weekend Warrior campaign',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138000,141761,1,'Ramsay Health Care','2022-07-26 07:06:26','2022-07-26 07:06:26','bcffe4b7-004d-4d46-b773-7c15a54ae5b5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Weekend Warrior campaign',NULL,NULL,'We work so hard through the week, we deserve to play hard over the weekend. When we find ourselves reliving our glory days through social sport or using our house reno as a creative and active outlet—sometimes it can be at the risk of our safety. Ramsay Health Care knows accidents happen, which is why they’re ready and waiting, with their holistic orthopaedic care services, to help get Weekend Warriors back on their feet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141736\",\"141670\",\"141671\",\"141672\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDjAdefp2G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Ramsay Health Care asked us to help develop a campaign to promote their orthopaedic services across their network of hospitals. The campaign served to educate the target market on what makes Ramsay’s orthopaedic offerings special, while also calling them to check whether their health insurance covers Ramsay hospitals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BWwvmn3pwX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141745\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using Ramsay’s target market of orthopaedic patients in their 40s and 50s, we created the ‘weekend warrior’ characters: everyday people who take on their alter ego when the working week is over. The social sports star who pushes themself to go for that bicycle kick or elaborate jump pass. The reno kings and queens who love Bunnings outings and would never pay someone else to do work around the house that they could do themselves.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ynJgqMQCET\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s an ocean of campaigns out there from medical brands that all look the same—clinical and serious. Ramsay stepped outside of the same-same and opted for more lively, exaggerated shots of Weekend Warriors in action, being injured and seeking care from a Ramsay hospital.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141741\",\"141742\",\"141743\",\"141744\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FF7V2IzNlc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With fresh, exciting and relatable action shots complemented by copy that captures the work-hard-play-hard lifestyle, our campaign for Ramsay cut through to the market with personality and an element of surprise.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Ramsay Health Care','Weekend Warrior campaign',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138002,141763,1,'Ramsay Health Care','2022-07-26 07:06:43','2022-07-26 07:06:43','2d5f1526-a6dc-4627-8671-1c890e17ecd4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Weekend Warrior campaign',NULL,NULL,'We work so hard through the week, we deserve to play hard over the weekend. When we find ourselves reliving our glory days through social sport or using our house reno as a creative and active outlet—sometimes it can be at the risk of our safety. Ramsay Health Care knows accidents happen, which is why they’re ready and waiting, with their holistic orthopaedic care services, to help get Weekend Warriors back on their feet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141736\",\"141670\",\"141671\",\"141672\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDjAdefp2G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Ramsay Health Care asked us to help develop a campaign to promote their orthopaedic services across their network of hospitals. The campaign served to educate the target market on what makes Ramsay’s orthopaedic offerings special, while also calling them to check whether their health insurance covers Ramsay hospitals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BWwvmn3pwX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141745\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using Ramsay’s target market of orthopaedic patients in their 40s and 50s, we created the ‘weekend warrior’ characters: everyday people who take on their alter ego when the working week is over. The social sports star who pushes themself to go for that bicycle kick or elaborate jump pass. The reno kings and queens who love Bunnings outings and would never pay someone else to do work around the house that they could do themselves.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ynJgqMQCET\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s an ocean of campaigns out there from medical brands that all look the same—clinical and serious. Ramsay stepped outside of the same-same and opted for more lively, exaggerated shots of Weekend Warriors in action, being injured and seeking care from a Ramsay hospital.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141741\",\"141742\",\"141743\",\"141744\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FF7V2IzNlc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With fresh, exciting and relatable action shots complemented by copy that captures the work-hard-play-hard lifestyle, our campaign for Ramsay cut through to the market with personality and an element of surprise.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Ramsay Health Care','Weekend Warrior campaign',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138009,141770,1,'Ramsay Health Care','2022-07-27 04:47:14','2022-07-27 04:47:14','e46be161-7167-49f0-8d5b-c43fe0152add',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Weekend Warrior campaign',NULL,NULL,'We work so hard through the week, we deserve to play hard over the weekend. When we find ourselves reliving our glory days through social sport or using our house reno as a creative and active outlet—sometimes it can be at the risk of our safety. Ramsay Health Care knows accidents happen, and they asked us to help them showcase how their holistic orthopaedic care services get Weekend Warriors back on their feet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141736\",\"141670\",\"141671\",\"141672\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDjAdefp2G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Ramsay Health Care asked us to help develop a campaign to promote their orthopaedic services across their network of hospitals. The campaign served to educate the target market on what makes Ramsay’s orthopaedic offerings special, while also calling them to check whether their health insurance covers Ramsay hospitals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BWwvmn3pwX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141745\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using Ramsay’s target market of orthopaedic patients in their 40s and 50s, we created the ‘weekend warrior’ characters: everyday people who take on their alter ego when the working week is over. The social sports star who pushes themself to go for that bicycle kick or elaborate jump pass. The reno kings and queens who love Bunnings outings and would never pay someone else to do work around the house that they could do themselves.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ynJgqMQCET\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s an ocean of campaigns out there from medical brands that all look the same—clinical and serious. Ramsay stepped outside of the same-same and opted for more lively, exaggerated shots of Weekend Warriors in action, being injured and seeking care from a Ramsay hospital.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141741\",\"141742\",\"141743\",\"141744\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FF7V2IzNlc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With fresh, exciting and relatable action shots complemented by copy that captures the work-hard-play-hard lifestyle, our campaign for Ramsay cut through to the market with personality and an element of surprise.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Ramsay Health Care','Weekend Warrior campaign',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138011,141772,1,'Ramsay Health Care','2022-07-27 06:09:37','2022-07-27 06:09:37','7ac0f65d-f096-4ae4-abe4-c31ed4690aa1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Weekend Warrior campaign',NULL,NULL,'We work so hard through the week, we deserve to play hard over the weekend. When we find ourselves reliving our glory days through social sport or using our house reno as a creative and active outlet—sometimes it can be at the risk of our safety. Ramsay Health Care knows accidents happen, and they asked us to help them showcase how their holistic orthopaedic care services get Weekend Warriors back on their feet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141736\",\"141670\",\"141671\",\"141672\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDjAdefp2G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Ramsay Health Care asked us to help develop a campaign to promote their orthopaedic services across their network of hospitals. The campaign served to educate the target market on what makes Ramsay’s orthopaedic offerings special, while also calling them to check whether their health insurance covers Ramsay hospitals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BWwvmn3pwX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141745\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using Ramsay’s target market of orthopaedic patients in their 40s and 50s, we created the ‘weekend warrior’ characters: everyday people who take on their alter ego when the working week is over. The social sports star who pushes themself to go for that bicycle kick or elaborate jump pass. The reno kings and queens who love Bunnings outings and would never pay someone else to do work around the house that they could do themselves.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ynJgqMQCET\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s an ocean of campaigns out there from medical brands that all look the same—clinical and serious. Ramsay stepped outside of the same-same and opted for more lively, exaggerated shots of Weekend Warriors in action, being injured and seeking care from a Ramsay hospital.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141741\",\"141742\",\"141743\",\"141744\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FF7V2IzNlc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With fresh, exciting and relatable action shots complemented by copy that captures the work-hard-play-hard lifestyle, our campaign for Ramsay cut through to the market with personality and an element of surprise.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Ramsay Health Care','Weekend Warrior campaign',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138013,141774,1,'About us','2022-07-27 06:11:16','2022-07-27 06:11:16','39879970-b267-4a94-a29a-6ee4bb63674f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17881\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\",\"17921\",\"97259\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | About us','For 20 years we have helped businesses, organisations and governments to solve problems, unlock potential and connect with people to inspire action.','strategy, brand, campaign, behaviour change, engagement, digital, video, content',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138015,141776,1,'Chevron','2022-07-28 04:11:35','2022-08-25 04:29:25','a1f7509d-67fd-47fb-981d-ffe16d501b0e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed to the roster of agencies for Chevron Downstream Australia as they reignited their Australian operations. We\'re helping them reconnect with their customers, relaunch their Puma retail network under the Caltex brand, and grow their market share in the lubricants B2B market.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gvKwuoJR7j\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547129?h=68b08b3b6f&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Downstream Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian B2B fuels and lubricants division.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z59xrAwLVU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We conducted a competitor analysis to assess competitor brand messaging and positioning, interviews with key Caltex fuels and lubricants distributors in the B2B market, and one-on-one interviews with the general customers.\\nOur insights indicated a need for authentic, ‘real life’ marketing collateral with which the audience can connect. We also gleaned that the messaging needed to be kept simple.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-f5LPArKwgF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689548339?h=5797d76cc7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP9dMqkL3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We made the creative decision to let the products take a backseat and instead shine a light on the customers’ businesses and their distributor relationships.\\nWe worked with a videographer to give the videos a warm and, at times, heartfelt tone. The customers in question are mostly generations-old businesses with a story to tell. So we told some stories.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gLOsbQtiKq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547741?h=7529fef734&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ahQwPi3ZPn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result was 60 video variations in a style you wouldn’t necessarily associate with marketing around fuel and lubricant products—something a little surprising, something that stands out from the crowd.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5dbIBMfjBJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“Our customers are the centre of everything we do, so we’re really proud to have created something that’s authentic to their experiences—their relationships with the distributors, their family values and the inter-generational ties in each of their businesses.\",\"plainText\":\"“We challenged New Word Order with a complex brief of showcasing the product, telling a compelling story about the customer and distributor relationship, and delivering the message that the products customers know and love are back for good. <br> \\n“New Word Order perfectly captured all of those elements in a cohesive video series that authentically connects with the audience.” <br> \\n\\n** — Cris Gillespie, Head of Marketing at Chevron **\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign','Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138016,141777,1,'Ramsay Health Care','2022-07-28 04:14:23','2022-07-28 04:14:23','3408aa7b-c1de-49ab-a150-a33bd81553f9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Weekend Warrior campaign',NULL,NULL,'We work so hard through the week, we deserve to play hard over the weekend. When we find ourselves reliving our glory days through social sport or using our house reno as a creative and active outlet—sometimes it can be at the risk of our safety. Ramsay Health Care knows accidents happen, and they asked us to help them showcase how their holistic orthopaedic care services get Weekend Warriors back on their feet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141736\",\"141670\",\"141671\",\"141672\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDjAdefp2G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Ramsay Health Care asked us to help develop a campaign to promote their orthopaedic services across their network of hospitals. The campaign served to educate the target market on what makes Ramsay’s orthopaedic offerings special, while also calling them to check if their health insurance covers Ramsay hospitals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BWwvmn3pwX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141745\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using Ramsay’s target market of orthopaedic patients in their 40s and 50s, we created the ‘weekend warrior’ characters: everyday people who take on their alter ego when the working week is over. The social sports star who pushes themself to go for that bicycle kick or elaborate jump pass. The reno kings and queens who love Bunnings outings and would never pay someone else to do work around the house that they could do themselves.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ynJgqMQCET\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s an ocean of campaigns out there from medical brands that all look the same—clinical and serious. Ramsay stepped outside of the same-same and opted for more lively, exaggerated shots of Weekend Warriors in action, being injured and seeking care from a Ramsay hospital.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141741\",\"141742\",\"141743\",\"141744\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FF7V2IzNlc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With fresh, exciting and relatable action shots complemented by copy that captures the work-hard-play-hard lifestyle, our campaign for Ramsay cut through to the market with personality and an element of surprise.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Ramsay Health Care','Weekend Warrior campaign',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138017,141778,1,'Ramsay Health Care','2022-07-28 04:20:15','2022-07-28 04:20:15','9b0332f6-990a-4266-a8a7-e0d270b9a93e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Weekend Warrior campaign',NULL,NULL,'We work so hard through the week, we deserve to play hard over the weekend. When we find ourselves reliving our glory days through social sport or using our house reno as a creative and active outlet—sometimes it can be at the risk of our safety. Ramsay Health Care knows accidents happen, and they asked us to help them showcase how their holistic orthopaedic care services get Weekend Warriors back on their feet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141736\",\"141670\",\"141671\",\"141672\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDjAdefp2G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Ramsay Health Care asked us to help develop a campaign to promote their orthopaedic services across their network of hospitals. The campaign served to educate the target market on what makes Ramsay’s orthopaedic offerings special, while also calling them to check if their health insurance covers Ramsay hospitals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BWwvmn3pwX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141745\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using Ramsay’s target market of orthopaedic patients in their 40s and 50s, we created the ‘weekend warrior’ characters: everyday people who take on their alter ego when the working week is over. The social sports star who pushes themself to go for that bicycle kick or elaborate jump pass. The reno kings and queens who love Bunnings outings and would never pay someone else to do work around the house that they could do themselves.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ynJgqMQCET\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s an ocean of campaigns out there from medical brands that all look the same—clinical and serious. Ramsay stepped outside of the same-same and opted for more lively, exaggerated shots of Weekend Warriors in action, being injured and seeking care from a Ramsay hospital.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141741\",\"141742\",\"141743\",\"141744\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FF7V2IzNlc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With fresh, exciting and relatable action shots complemented by copy that captures the work-hard-play-hard lifestyle, our campaign for Ramsay cut through to the market with personality and an element of surprise.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Ramsay Health Care','Weekend Warrior campaign',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138019,141780,1,'About us','2022-07-28 04:26:49','2022-07-28 04:26:49','fafcc02f-a73c-4e63-b635-c80a355dd240',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17881\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\",\"17921\",\"97259\",\"141616\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | About us','For 20 years we have helped businesses, organisations and governments to solve problems, unlock potential and connect with people to inspire action.','strategy, brand, campaign, behaviour change, engagement, digital, video, content',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138023,141784,1,'Ramsay Health Care','2022-07-28 04:50:06','2022-07-28 04:50:06','31f03994-ae90-4fe3-af4a-1f526e5a60a2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Weekend Warrior campaign',NULL,NULL,'We work so hard through the week, we deserve to play hard over the weekend. When we find ourselves reliving our glory days through social sport or using our house reno as a creative and active outlet—sometimes it can be at the risk of our safety. Ramsay Health Care knows accidents happen, and they asked us to help them showcase how their holistic orthopaedic care services get Weekend Warriors back on their feet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141736\",\"141670\",\"141671\",\"141672\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDjAdefp2G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Ramsay Health Care asked us to help develop a campaign to promote their orthopaedic services across their network of hospitals. The campaign served to educate the target market on what makes Ramsay’s orthopaedic offerings special, while also calling them to check if their health insurance covers Ramsay hospitals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BWwvmn3pwX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141745\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using Ramsay’s target market of orthopaedic patients in their 40s and 50s, we created the ‘weekend warrior’ characters: everyday people who take on their alter ego when the working week is over. The social sports star who pushes themself to go for that bicycle kick or elaborate jump pass. The reno kings and queens who love Bunnings outings and would never pay someone else to do work around the house that they could do themselves.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ynJgqMQCET\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s an ocean of campaigns out there from medical brands that all look the same—clinical and serious. Ramsay stepped outside of the same-same and opted for more lively, exaggerated shots of Weekend Warriors in action, being injured and seeking care from a Ramsay hospital.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141741\",\"141742\",\"141743\",\"141744\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FF7V2IzNlc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With fresh, exciting and relatable action shots complemented by copy that captures the work-hard-play-hard lifestyle, our campaign for Ramsay cut through to the market with personality and an element of surprise.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Ramsay Health Care','Weekend Warrior campaign',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138025,141786,1,'Ramsay Health Care','2022-07-28 04:51:51','2022-07-28 04:51:51','ffcc4a22-0d24-471b-b0bf-b665230c02c0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Weekend Warrior campaign',NULL,NULL,'We work so hard through the week, we deserve to play hard over the weekend. When we find ourselves reliving our glory days through social sport or using our house reno as a creative and active outlet—sometimes it can be at the risk of our safety. Ramsay Health Care knows accidents happen, and they asked us to help them showcase how their holistic orthopaedic care services get Weekend Warriors back on their feet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141736\",\"141670\",\"141671\",\"141672\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDjAdefp2G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Ramsay Health Care asked us to help develop a campaign to promote their orthopaedic services across their network of hospitals. The campaign served to educate the target market on what makes Ramsay’s orthopaedic offerings special, while also calling them to check if their health insurance covers Ramsay hospitals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BWwvmn3pwX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141745\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using Ramsay’s target market of orthopaedic patients in their 40s and 50s, we created the ‘weekend warrior’ characters: everyday people who take on their alter ego when the working week is over. The social sports star who pushes themself to go for that bicycle kick or elaborate jump pass. The reno kings and queens who love Bunnings outings and would never pay someone else to do work around the house that they could do themselves.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ynJgqMQCET\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s an ocean of campaigns out there from medical brands that all look the same—clinical and serious. Ramsay stepped outside of the same-same and opted for more lively, exaggerated shots of Weekend Warriors in action, being injured and seeking care from a Ramsay hospital.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141741\",\"141742\",\"141743\",\"141744\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FF7V2IzNlc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With fresh, exciting and relatable action shots complemented by copy that captures the work-hard-play-hard lifestyle, our campaign for Ramsay cut through to the market with personality and an element of surprise.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Ramsay Health Care','Weekend Warrior campaign',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138027,141788,1,'Ramsay Health Care','2022-07-28 04:52:25','2022-07-28 04:52:25','2e47090d-f7a9-4181-8eef-3ea8e911a76a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Weekend Warrior campaign',NULL,NULL,'We work so hard through the week, we deserve to play hard over the weekend. When we find ourselves reliving our glory days through social sport or using our house reno as a creative and active outlet—sometimes it can be at the risk of our safety. Ramsay Health Care knows accidents happen, and they asked us to help them showcase how their holistic orthopaedic care services get Weekend Warriors back on their feet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141736\",\"141670\",\"141671\",\"141672\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDjAdefp2G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Ramsay Health Care asked us to help develop a campaign to promote their orthopaedic services across their network of hospitals. The campaign served to educate the target market on what makes Ramsay’s orthopaedic offerings special, while also calling them to check if their health insurance covers Ramsay hospitals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BWwvmn3pwX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141745\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using Ramsay’s target market of orthopaedic patients in their 40s and 50s, we created the ‘weekend warrior’ characters: everyday people who take on their alter ego when the working week is over. The social sports star who pushes themself to go for that bicycle kick or elaborate jump pass. The reno kings and queens who love Bunnings outings and would never pay someone else to do work around the house that they could do themselves.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ynJgqMQCET\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s an ocean of campaigns out there from medical brands that all look the same—clinical and serious. Ramsay stepped outside of the same-same and opted for more lively, exaggerated shots of Weekend Warriors in action, being injured and seeking care from a Ramsay hospital.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141741\",\"141742\",\"141743\",\"141744\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FF7V2IzNlc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With fresh, exciting and relatable action shots complemented by copy that captures the work-hard-play-hard lifestyle, our campaign for Ramsay cut through to the market with personality and an element of surprise.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Ramsay Health Care','Weekend Warrior campaign',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138029,141790,1,'Ramsay Health Care','2022-07-28 04:52:58','2022-07-28 04:52:58','f09f034a-445b-4ee9-9e03-d346a121f4ae',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Weekend Warrior campaign',NULL,NULL,'We work so hard through the week, we deserve to play hard over the weekend. When we find ourselves reliving our glory days through social sport or using our house reno as a creative and active outlet—sometimes it can be at the risk of our safety. Ramsay Health Care knows accidents happen, and they asked us to help them showcase how their holistic orthopaedic care services get Weekend Warriors back on their feet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141736\",\"141670\",\"141671\",\"141672\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDjAdefp2G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Ramsay Health Care asked us to help develop a campaign to promote their orthopaedic services across their network of hospitals. The campaign served to educate the target market on what makes Ramsay’s orthopaedic offerings special, while also calling them to check if their health insurance covers Ramsay hospitals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BWwvmn3pwX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141745\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using Ramsay’s target market of orthopaedic patients in their 40s and 50s, we created the ‘weekend warrior’ characters: everyday people who take on their alter ego when the working week is over. The social sports star who pushes themself to go for that bicycle kick or elaborate jump pass. The reno kings and queens who love Bunnings outings and would never pay someone else to do work around the house that they could do themselves.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ynJgqMQCET\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s an ocean of campaigns out there from medical brands that all look the same—clinical and serious. Ramsay stepped outside of the same-same and opted for more lively, exaggerated shots of Weekend Warriors in action, being injured and seeking care from a Ramsay hospital.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141741\",\"141742\",\"141743\",\"141744\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FF7V2IzNlc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With fresh, exciting and relatable action shots complemented by copy that captures the work-hard-play-hard lifestyle, our campaign for Ramsay cut through to the market with personality and an element of surprise.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Ramsay Health Care','Weekend Warrior campaign',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138031,141792,1,'Are customers giving up on your website?','2022-07-28 04:53:42','2022-07-28 04:53:42','69e50a08-085f-499f-af9f-ddbbcf882656',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gahB36q3Yd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We’ve all tried to navigate frustrating websites that have ended in annoyance, giving up and even turning to a competitor. Good web design translates to successful conversions, and that all depends on user experience.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Usually, we’re only willing to give a website one minute to display what we’re looking for before we give up. The most common website complaints are that there is ‘too much going on’ and also ‘not enough information’. Translation: many sites drone on and on… but don’t really say much.\\n\\nUsers also complain—across all age groups and digital skill levels—that text is too small and navigation is difficult. Thirty-five per cent of users fail to complete simple tasks on the average website.\\n\\nLet’s improve those stats, shall we?\\n\\n##### **1. Design from the user’s perspective, not your own**\\n\\nWe know your company is the greatest thing since Google and you can’t wait to tell everyone all about where it began, who works there and the details of your offering. But the truth is this: users just want to get to the point, and their interests should override yours. \\nUsability is key. Show them what they’re looking for, and don’t make them search for it.\\n\\n##### **2. Create a navigation path**\\n\\nIf the information on your website is simple and structured, you can guide visitors along the path you’d like them to take—their user journey. Use tabs and sub-pages for different categories and keep it super logical.\\n\\n##### **3. Content is everything**\\n\\nContent is the most important element of your site, really—and it needs to fit the logical and structured navigation. You’ll want to include keywords, page titles, meta tags and headings for search engine optimisation. There are some hallmarks we use when writing web copy for our clients:\\n\\n-\\tKeep it concise\\n-\\tRound out sub-headings and headings with keywords\\n-\\tUse plain English and an informal voice\\n-\\tStick to common language conventions\\n-\\tBe direct and use active tense\\n-\\tStructure your information consistently and logically\\n-\\tSpeak to your audience\\n\\n\\n##### **4. Speed it up and make it simple**\\n\\nLet’s face it. We’re a busy bunch, and a reminder of the old days of dial-up—waiting for your site to load—will test the patience of even the most loyal visitor. In fact, many visitors will abandon a website after just a few seconds of loading time. Longer loading time is usually caused by complicated design, so make smart design decisions.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yv0jHGvjtR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**From site structure to copy, design and development, we’re passionate about finding the best, most creative way to present your business. Talk to us about it today.**\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138033,141794,1,'Are customers giving up on your website?','2022-07-28 05:25:57','2022-07-28 05:25:57','0f1ac5ec-983b-41ba-bc87-670e8c6e0620',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gahB36q3Yd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We’ve all tried to navigate frustrating websites that have ended in annoyance, giving up and even turning to a competitor. Good web design translates to successful conversions, and that all depends on user experience.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Usually, we’re only willing to give a website one minute to display what we’re looking for before we give up. The most common website complaints are that there is ‘too much going on’ and also ‘not enough information’. Translation: many sites drone on and on… but don’t really say much.\\n\\nUsers also complain—across all age groups and digital skill levels—that text is too small and navigation is difficult. Thirty-five per cent of users fail to complete simple tasks on the average website.\\n\\nLet’s improve those stats, shall we?\\n\\n##### **1. Design from the user’s perspective, not your own**\\n\\nWe know your company is the greatest thing since Google and you can’t wait to tell everyone all about where it began, who works there and the details of your offering. But the truth is this: users just want to get to the point, and their interests should override yours. \\nUsability is key. Show them what they’re looking for, and don’t make them search for it.\\n\\n##### **2. Create a navigation path**\\n\\nIf the information on your website is simple and structured, you can guide visitors along the path you’d like them to take—their user journey. Use tabs and sub-pages for different categories and keep it super logical.\\n\\n##### **3. Content is everything**\\n\\nContent is the most important element of your site, really—and it needs to fit the logical and structured navigation. You’ll want to include keywords, page titles, meta tags and headings for search engine optimisation. There are some hallmarks we use when writing web copy for our clients:\\n\\n-\\tKeep it concise.\\n-\\tRound out sub-headings and headings with keywords.\\n-\\tUse plain English and an informal voice.\\n-\\tStick to common language conventions.\\n-\\tBe direct and use active tense.\\n-\\tStructure your information consistently and logically.\\n-\\tSpeak to your audience.\\n\\n\\n##### **4. Speed it up and make it simple**\\n\\nLet’s face it. We’re a busy bunch, and a reminder of the old days of dial-up—waiting for your site to load—will test the patience of even the most loyal visitor. In fact, many visitors will abandon a website after just a few seconds of loading time. Longer loading time is usually caused by complicated design, so make smart design decisions.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yv0jHGvjtR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**From site structure to copy, design and development, we’re passionate about finding the best, most creative way to present your business. Talk to us about it today.**\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138035,141796,1,'Terms and conditions','2022-08-01 06:02:13','2022-08-01 06:02:13','0fb7fb10-10af-4251-8df0-224fdd5ce1cb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LU0O2e8wW5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"General terms and conditions\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"##### **About this estimate**\\n\\nOur estimate is valid for a period of 45 days from the date of issue.\\n\\nThe following documents should be read together to understand the scope and price of our quoted services:\\n\\n- our estimate\\n- your brief, if supplied\\n- these Terms and Conditions\\n\\nThe estimate has been provided according to your brief to us. Any exclusions noted in the estimate should not be taken as exhaustive and you should assume that unless a service has been explicitly listed in the quote, it is not included in the price. \\n\\nAlterations to this brief or specifications will incur further costs, and we reserve the right to alter this estimate should we believe the changing scope of work falls outside of what was originally quoted.\\n\\nIt is your responsibility as the client to contact your account manager prior to approving the quote if you have queries or require clarification about any items in the quote. It is also your responsibility as the client to ensure this estimate accurately reflects the scope of work you require.\\n\\nBefore we begin work, you must sign your approval of the estimate and, if your organisation uses an ordering system, provide an order number or purchase order.\\n\\nYour acceptance of our estimate includes full acceptance of the conditions and payment terms listed in these terms and conditions. Once quotation approval has been provided, these conditions and payment terms are not negotiable.\\n\\nWe use the terms estimate and quote interchangeably and their meaning should be taken as the same: a cost estimate to the value of the work required to achieve your outcomes based on information you have provided us. This estimate may change in response to your project needs and, if it does, a new or additional quote may be required to be approved before work continues.\\n\\n##### **Approval**\\n\\nWe use Docusign for some estimates or, for smaller jobs, require an authorisation signature on a copy of the provided estimate. Your account manager will let you know the required authorisation method. No work can be scheduled until we have a duly authorised estimate through Docusign or your signature on an estimate.\\n\\n##### **Beginning your project**\\n\\nWe will not schedule or begin work on your project until we receive from you all of the artwork, content and other files required for the project, as well as the approved estimate or a purchase order.\\n\\nFor example, for an annual report, this might include all finalised content, graphs, charts, images, captions, financial statements and logos. This saves our studio unnecessary downtime and you money.\\n\\nWe will negotiate and document exceptions where required, but please be aware this may affect your costs and timeline.\\nYour NWO account manager may provide you with a checklist to ensure you are aware of all material that you must provide before we begin work on your project.\\n\\n##### **Brief**\\n\\nUsually, projects within NWO are worked on according to a brief developed in consultation between you and us. If you have not supplied a written brief to us, we may ask you to fill out our briefing template before we create an estimate. You need to check the wording of our estimate directly reflects your understanding of the work we’re carrying out for you. If it does not, please tell us and we will not begin working on the project until your concern is answered.\\n\\n##### **Checking, approval and signing-off**\\n\\nAs the client, you are responsible for checking your project for any errors and approving the final project. When you advise us that you approve a project, we take this to mean that you have checked it thoroughly for errors and that you are satisfied it has been completed to your satisfaction. For complex or additional jobs, we may ask you to fill in an approval form.\\n\\nWe have in place procedures and systems to ensure each of our finished projects reaches the highest possible standard of quality. However, from time to time, errors can occur. While we will do everything possible to fix the error, you are responsible for checking and approving the finished project and, as such, any costs of repairing the error are your responsibility.\\n\\nOn some projects, we may require you to provide your approval in writing before we finish work on your job or continue to publication or printing.\\n\\n##### **Client-directed alterations**\\n\\nAs much as possible, we try to accommodate client input and alterations within our quotes. However feedback, corrections and alterations to the brief over and above those quoted will be charged as incurred. Any requested changes are handled through our change control procedure which is:\\n\\n1. Any request for change must be detailed in writing including a description of the required change, the rationale for the change, and the effect the change will have on the project.\\n2. Your account manager will review the proposed change and determine, in consultation with you, if the change is within existing scope or outside the existing project scope. \\n3. If the change is minor and within the scope of the project briefing and/or budget, your account manager will schedule the change to be made at an appropriate time. \\n4. If the change is outside the scope of the existing project briefing and/or budget, your account manager will review the proposed change. \\n5. Your account manager will supply you with a quotation for the requested changes.\\n6. Work on the changes will be scheduled when we receive written  authorisation from you for the work and the associated charges. \\n7. Charges will be invoiced to you after we have implemented the agreed changes. \\n\\nThis is how we define a single round of changes: We supply the draft product, you email or otherwise detail the changes, and we then include those changes in our final product to you. Please note our preferred way of receiving changes is via a marked-up PDF. Your account manager can help you with this if you are unsure about marking up a PDF.\\n\\nChanges beyond this scope will be charged as author’s corrections. Please be aware that, during author’s corrections, all staff involved in the corrections process will incur costs for you. Depending on your project and the corrections required, this may include an account manager, producer, designer, editor, writer and so on.\\n\\nIf there is unused time left over from your estimate, we will use that time to make your alterations to save you money. Once that amount has been exhausted, however, we will begin charging author’s corrections and we will advise you of this by email and then in weekly cost updates.\\nYou can reduce the amount of corrections by:\\n\\n- supplying approved sourced material and instructions prior to NWO commencing work\\n- seeking authority within your organisation to be the ultimate decision-maker for this project\\n- advising the multiple stakeholders within your organisation of the cost of unbudgeted changes\\n- compiling all feedback into a single document for NWO’s use.\\n \\n##### **Digital projects**\\n\\nThe following terms are specific to digital projects. \\n\\n**Digital content entry**\\n\\nWhere the estimate pertains to content entry for your digital project, time has been allocated for us to input a set amount of content (as defined by the estimate). Should more time be required, it will be charged at our standard hourly rate. Content cannot be input until the project has been finalised and fully tested by NWO. Your timelines should allow content to be uploaded after completion of development and prior to final testing.\\n\\n**Acceptance and completion**\\n\\nWe will conduct testing throughout the project development; however, you are responsible for confirming the works produced by NWO are as per the brief and fit for the purpose and function as contracted. If no acceptance testing is undertaken by you, the product will be deemed accepted when launched or on its first public use. After acceptance, alterations/fixes will be charged as incurred.\\n\\n**Website warranty**\\n\\nWhen not otherwise specified our warranty period covers your website for 30 days from the acceptance date. Any issues in functionality that are brought to our attention during this period will be fixed without charge in a time frame to be negotiated with you. Charges will apply for any fixes outside the warranty period or changes to the website that are outside the scope of the original quotation.\\n\\n**Platform and browser compatibility**\\n\\nUnless otherwise specified, New Word Order will test the following browsers on the version current at the date of our estimate. \\n\\n- Chrome\\n- Edge\\n- Firefox\\n- Safari\\n- Opera\\n\\nNew Word Order is not responsible for work to update websites when new browsers are released after acceptance or if the website does not work on browsers not included in the list provided. Internet Explorer and other deprecated browsers are not tested against and, if required and possible, will incur additional charges\\n\\n**Third-party software**\\n\\nIf third-party software is used in the delivery of your digital product unless otherwise specified the fees for the software are an annual licence fee. You agree to pay ongoing charges to ensure the continued functionality of your product.\\nIf you enter into a maintenance contract with us, on-going software licence fees will be included in the maintenance fees.\\n\\n##### **Deadlines**\\n\\nWe pride ourselves on meeting tight deadlines and have a strong reputation with our clients for fast, reliable work.\\n\\nHowever, if you significantly alter the brief – such as change text or photos that have already been supplied and approved, change website layouts, or increase the volume  to be produced – or other circumstances occur beyond our control, we may advise you of revised timelines.\\n\\nWe understand that circumstances change. We schedule all work into our studios based on delivery requirements. If your delivery requirements change you should inform us immediately.\\n\\nIf you are unable to meet timeframes for providing us information, feedback or content, we may withdraw your job from the studio until you get it to us. If your project has been delayed due to the loss of a scheduling window or the late approval of the estimate or proposal, we will inform you of the revised timeline.\\n\\nIf timelines are not being adhered to on your part and the project is on hold for 90 days or more, we reserve the right to close the project. You will be invoiced for any outstanding costs incurred up to the date of closure. Any overpayments will be refunded. We will always advise you before doing so, and will be happy to pick your project back up when you are ready to move ahead. \\n\\nRestarting a project will incur a re-commencement fee which will be invoiced prior to work starting again.\\n\\n##### **Administration and consumables**\\n\\nExpenses and administrative costs are incurred during every project. These may include phone calls, printing, couriers, proofs, materials, and finance and administrative work to make your project run smoothly.\\n\\nYour quote includes an estimate for these expenses, calculated at 3 per cent of your total quoted amount. We will advise you if these expenses will exceed the quoted amount.\\n\\n##### **Payment terms and pre-payments**\\n\\nOur invoices are to be paid within 14 days of the invoice date, with longer payment terms available for negotiation before a job begins.\\n\\n**When you’re a new client**\\n\\nIf you’re a new client, we reserve the right to invoice you 50 per cent of the total project fee before beginning work, or 100 per cent if the job is under $5000.\\n\\n**When you’re an existing client**\\n\\nIf you’re already a client of ours, we reserve the right to invoice you 30 per cent of the total project fee before beginning work, or 100 per cent if the job is under $5000.\\n\\n**When you owe us money**\\n\\nIf payment is delayed longer than 30 days, we reserve the right to withhold future and existing work until payment is made. See Late Payment below for fees associated with late payments.\\n\\n**When we’re employing suppliers for you**\\n\\nDepending on the level of costs and complexity associated with your project, we may choose to request a deposit of up to 50 per cent of the total cost prior to commencing your project. In this case, the remaining costs will be split into milestone-based payments.\\n\\n**When our work forms part of a larger project**\\n\\nWe reserve the right to invoice you when our responsibility within a project has been completed—not when your project has been completed in total.\\n\\n**When you order our work for your client**\\n\\nIf you have ordered our work on behalf of a third party, our payment terms still apply. Payment is required when our work is complete, not when you receive payment.\\n\\n**When you choose to make an advance payment**\\n\\nIf we agree to an advance payment, all work must be completed within that financial year.\\n\\n**Late payment**\\n\\nIf you do not pay us by the due date on an invoice, we reserve the right to cease production on any of your projects.\\n\\nWe may also charge a late payment fee:\\n\\n- 30-60 days late: 5%\\n- 60-90 days late: 10%\\n- 120+ days late: 15%\\n\\nWe do not offer payback schemes or loan arrangements. \\n\\nWe may engage a third party for debt recovery services of any payments which are more than 45 days overdue. Relevant contact details and information about outstanding payments will be provided to them to enable them to liaise directly with you for debt recovery purposes. \\n\\n##### **Limitation of liability**\\n\\nBy commissioning our services, you are agreeing that you will not hold New Word Order or its agents or employees liable for any incidental or consequential damages which arise from our failure to perform any aspect of the project in a timely manner, regardless of whether such failure was caused by intentional or negligent acts or omissions of New Word Order or a third party. Furthermore, we disclaim all implied warranties.\\n\\n##### **Photography and images**\\n\\nUnless otherwise specified in this estimate, we will charge you an additional amount if we purchase images from a stock library for your project.\\n\\nPlease note that you are responsible for ensuring all of your supplied images match the specifications we give you for your project. We expect you to comply with all relevant copyright and privacy laws and only supply content for which you have full authority to use\\n\\nWe reserve the right to charge additional time to assess your photo files and improve substandard images.\\n\\n##### **Print management and file output**\\n\\nWe have extensive experience in managing print projects. When you choose us to manage your print, you gain access to our experience, established supplier network and exacting quality control standards.\\n\\nFrom time to time, our clients choose to manage print themselves. In these situations, we will include a file output fee to cover the cost of supplying the file, and time taken to liaise with the printer will be charged as project management.\\n\\nWe hold onto current jobs for 6 months. After that time, your files are moved to our archive backup. If you require old files from our archive, a fee will be charged to locate and provide to you.\\n\\n##### **Project management**\\n\\nOur account and project managers make sure your project stays on track. This takes time and considerable effort. Your estimate contains a fee for project/account management that covers the administrative and management hours we expect our agency will expend in delivering your project.\\n\\nThese include project meetings between you and us, scheduling your work in the studios, ensuring projects are delivered on time and on budget, production of audio-visual and print components, and making sure project outcomes are in line with our requirements.\\n\\n##### **Publicity**\\n\\nWe may use your name for the purpose of promotional activities involving the works we have carried out for you, unless otherwise specified.\\n\\n##### **Supplying material to us**\\n\\nWe undertake projects in good faith. If the material you supply – such as photography, graphics or text – do not match the expected standard set during our discussions, we reserve the right to charge for the time it will take to improve or alter the material in order to use it.\\n\\nPlease supply all text, graphics and images in a digital format unless otherwise specified in this estimate or brief. Only supply material that you have the legal and ethical right to use.\\n\\n##### **Tenders**\\n\\nFrom time to time, we are engaged to supply services under a preferred supplier or tender arrangement. We reserve the right to withdraw from providing services after or during our appointment if changes to scope or exceptional circumstances make delivery untenable. Any decision will be made in consultation with the client.\\n\\n##### **Warranty of originality**\\n\\nNew Word Order warrants and represents that, to the best of its knowledge, the work assigned hereunder is original and has not been previously published, or that consent to use has been obtained on an unlimited basis; that all work or portions thereof obtained through the undersigned from third parties is original or, if previously published, that consent to use has been obtained on an unlimited basis; that New Word Order has full authority to make this agreement; and that the work prepared by New Word Order does not contain any scandalous, libellous, or unlawful matter. \\n\\nThis warranty does not extend to any uses that the client or others may make of our product that may infringe on the rights of others. The client expressly agrees that it will hold New Word Order harmless for all liability caused by the client’s use of our product to extent such use infringes on the rights of others.\\n\\n##### **Writing services**\\n\\nWe have extensive experience in all forms of writing and editing. Based on our experience, we choose not to work with Word files that contain multiple images or tables, as these files easily corrupt during the editing process. We are happy, though, to work with Word files with the images and tables extracted. Redesigning the Word file to include the images and tables at the end of the editing process will incur a separate fee.\\n\\n##### **Your obligation**\\n\\nYou have sole responsibility of ensuring the suitability and availability of any trademark rights, copyrights or other property rights that are intended to vest in the works that we have been commissioned to produce in accordance with your instructions.\\n\\n##### **Intellectual property**\\n\\nAny research data, concepts, diagrams or illustrations remain the property of New Word Order. Any alternate intellectual property rights contained in the design or materials used in the execution of this project, including artwork and computer-generated instructions and information, remain with New Word Order. \\n\\nYou warrant that you hold all necessary intellectual property rights in any document or material (including, but not limited to, plans and drawings), that are supplied to New Word Order for its provision of goods and services and that there is or will be no infringement of any rights or entitlements held by any third party. \\n\\nYou also indemnify and hold harmless New Word Order for any claims made against it arising from New Word Order’s use of any drawings, design or any other document, material or information provided by you, the client. \\n\\nYou warrant that all designs or instructions to New Word Order will not cause New Word Order to infringe any patent, registered design or trademark in the execution of the client orders.\\n\\n##### **Termination**\\n\\nNew Word Order may refuse to enter into this contract or terminate any existing arrangements, without prejudice, if we find our core values are at odds with yours. Our core values put people at the centre of everything we do. We do not condone discrimination of any kind, nor do we condone violations of human rights. \\n\\nWe also may terminate a contract if invoices are unpaid (see Payment terms and pre-payments) or if you become insolvent.\\n\\n##### **Changes to Terms and Conditions**\\n\\nFrom time-to-time we may make changes to these Terms and Conditions. Any changes, unless otherwise notified, will come into effect on your next project with us.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138037,141798,1,'Tritium','2022-08-02 00:05:50','2022-08-02 00:05:50','9390f7a5-f1e1-4a46-85a4-c499fd5f8d76',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league. Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GLSN3YDBFD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"73939\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LrG99HVOYN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"61847\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Brand\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tritium is now a global brand—and our work took them to the world stage.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked with Tritium a few years ago to define their brand narrative, design their brand and create logo, visual identity and a range of assets.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZeQWeTuQlo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"73941\",\"73947\",\"73940\",\"73937\",\"73936\",\"73935\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-02qw9cOzxi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"61837\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Brief\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked with Tritium when it was in the midst of hypergrowth and collaborated with their founder and leaders across time zones and continents, as well as their rapidly growing marketing and sales teams, to rebrand the company and its products.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"At the time, Tritium was still wearing the badge designed by their founder years earlier and needed to dress for world domination, which they most certainly now are achieving.\\nThe brand needed to work in all contexts—on rapid chargers, in signage, in extrusion as well as in print, and it needed to be truly global in its appeal. The brand also needed to consider products that were still emerging and not yet defined.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Tritium','Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138039,141800,1,'Tritium','2022-08-02 00:14:10','2022-08-02 00:14:10','ca6feed2-f636-4b32-948b-e5f4ffa9c98a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league. Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GLSN3YDBFD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"73939\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LrG99HVOYN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"61847\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Brand\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tritium is now a global brand—and our work took them to the world stage.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked with Tritium a few years ago to define their brand narrative, design their brand and create logo, visual identity and a range of assets.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZeQWeTuQlo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"73941\",\"73947\",\"73940\",\"73937\",\"73936\",\"73935\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-02qw9cOzxi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"61837\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Brief\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked with Tritium when it was in the midst of hypergrowth and collaborated with their founder and leaders across time zones and continents, as well as their rapidly growing marketing and sales teams, to rebrand the company and its products.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"At the time, Tritium was still wearing the badge designed by their founder years earlier and needed to dress for world domination, which they most certainly now are achieving.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The brand needed to work in all contexts—on rapid chargers, in signage, in extrusion as well as in print, and it needed to be truly global in its appeal. The brand also needed to consider products that were still emerging and not yet defined.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Tritium','Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138041,141802,1,'Tritium 07 1','2022-08-02 00:28:24','2022-08-02 00:28:24','da8277aa-d61c-40a2-8b4b-2bf6d7eb1d22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/Tritium-07-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/Tritium-07-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/Tritium-07-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/Tritium-07-1.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/Tritium-07-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/Tritium-07-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/Tritium-07-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/Tritium-07-1.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":853,\"1024\":682,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1440,\"originalImageHeight\":960,\"placeholder\":\"/9j/4AAQSkZJRgABAQEASABIAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADASIAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAQIDBf/EACAQAAICAQMFAAAAAAAAAAAAAAECAxEABCFREiIxQeH/xAAUAQEAAAAAAAAAAAAAAAAAAAAA/8QAGREAAgMBAAAAAAAAAAAAAAAAAAECElFh/9oADAMBAAIRAxEAPwDLSCSHQrLMHCNVhjV3wOMhqJjNA0ccbs4PaB5+4shLKeok7e8KgCUkbEViywKHT//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#303336\",\"#c5c8c5\",\"#827e76\",\"#74b5c1\",\"#458cae\"],\"lightness\":48,\"placeholderWidth\":1280,\"placeholderHeight\":853,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138042,141803,1,'Tritium 07 2','2022-08-02 00:28:28','2022-08-02 00:28:28','c22923af-9265-49c8-a2dc-53894f6cbaea',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/Tritium-07-2.png\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/Tritium-07-2.png\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/Tritium-07-2.png\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/Tritium-07-2.png\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/Tritium-07-2.png\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/Tritium-07-2.png.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/Tritium-07-2.png.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/Tritium-07-2.png.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/Tritium-07-2.png.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/Tritium-07-2.png.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"1280\":720,\"1024\":576,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1600,\"originalImageHeight\":900,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAUG/8QAIBAAAgIBAwUAAAAAAAAAAAAAAQIEEQADBTQxcnOxwv/EABUBAQEAAAAAAAAAAAAAAAAAAAME/8QAFxEAAwEAAAAAAAAAAAAAAAAAAAECA//aAAwDAQACEQMRAD8ATIlxI2mW19sjBSAaQCxiwkd9EMu3x6q7KjpV5nt34qdi+srpwj4vnHecks6U0f/Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#789ba8\",\"#e0e5df\",\"#14232a\",\"#1d78a1\",\"#485733\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138043,141804,1,'Tritium 07 3','2022-08-02 00:28:33','2022-08-02 00:28:33','86e42944-d61b-4171-b518-c04e87aa73be',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1001_crop_center-center_82_line/Tritium-07-3.png\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x834_crop_center-center_82_line/Tritium-07-3.png\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x667_crop_center-center_82_line/Tritium-07-3.png\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x500_crop_center-center_82_line/Tritium-07-3.png\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x417_crop_center-center_82_line/Tritium-07-3.png\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1001_crop_center-center_82_line/Tritium-07-3.png.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x834_crop_center-center_82_line/Tritium-07-3.png.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x667_crop_center-center_82_line/Tritium-07-3.png.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x500_crop_center-center_82_line/Tritium-07-3.png.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x417_crop_center-center_82_line/Tritium-07-3.png.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1001,\"1280\":834,\"1024\":667,\"768\":500,\"640\":417},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1702,\"originalImageHeight\":1110,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADASIAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAgMEBf/EACIQAAEDAwMFAAAAAAAAAAAAAAECAxEABBIFIVEiMTJCYf/EABUBAQEAAAAAAAAAAAAAAAAAAAME/8QAGBEAAgMAAAAAAAAAAAAAAAAAAhEAASH/2gAMAwEAAhEDEQA/AJLppTd6G8SrxxgiDzPFK1t0utOLDiQ4qGggepnczQL6mCo7mO5rLSSbpQJkRMfaSht7JxN4p//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#415f6c\",\"#c0baa5\",\"#82adc4\",\"#121412\",\"#92b486\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":1001,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138044,141805,1,'Tritium 07 4','2022-08-02 00:28:38','2022-08-02 00:28:38','631de548-bb7f-46e9-a475-0f998915ac2f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x1043_crop_center-center_82_line/Tritium-07-4.png\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x869_crop_center-center_82_line/Tritium-07-4.png\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x1043_crop_center-center_82_line/Tritium-07-4.png.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x869_crop_center-center_82_line/Tritium-07-4.png.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":1043,\"640\":869},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":817,\"originalImageHeight\":1110,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAVABADASIAAhEBAxEB/8QAGAAAAwEBAAAAAAAAAAAAAAAAAAUGAgT/xAAhEAACAQQCAgMAAAAAAAAAAAABAgMABAUREiETMSIycf/EABYBAQEBAAAAAAAAAAAAAAAAAAQBA//EABwRAAMAAQUAAAAAAAAAAAAAAAABAgMEESExMv/aAAwDAQACEQMRAD8AuUdHB4n0dH9qOzEnhyJj4fdmJbdLrPLX11dJFJIFU/LkAeq7LkRmMy8i/i6JLeye6sW4fIbUYlknZIV4x2HmYE9aGq1d3TR45o1UdybJoorJ+hK6P//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#40534c\",\"#eaecde\",\"#31bdcd\",\"#95916e\",\"#89b9a0\"],\"lightness\":54,\"placeholderWidth\":768,\"placeholderHeight\":1043,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138045,141806,1,'Tritium 07 5','2022-08-02 00:28:43','2022-08-02 00:28:43','906ebdac-5298-4760-94a7-2acc2b045151',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x856_crop_center-center_82_line/Tritium-07-5.png\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x685_crop_center-center_82_line/Tritium-07-5.png\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x513_crop_center-center_82_line/Tritium-07-5.png\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x428_crop_center-center_82_line/Tritium-07-5.png\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x856_crop_center-center_82_line/Tritium-07-5.png.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x685_crop_center-center_82_line/Tritium-07-5.png.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x513_crop_center-center_82_line/Tritium-07-5.png.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x428_crop_center-center_82_line/Tritium-07-5.png.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":856,\"1024\":685,\"768\":513,\"640\":428},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1381,\"originalImageHeight\":924,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQED/8QAIhAAAgEEAgEFAAAAAAAAAAAAAQIDAAQFERIhIzFBccHR/8QAFAEBAAAAAAAAAAAAAAAAAAAAAf/EABcRAAMBAAAAAAAAAAAAAAAAAAABESH/2gAMAwEAAhEDEQA/AJJncpZWqo0POTgG8iljvfp91jcZXJNIInu2gd1BGlAI7/KfsSWQljs696OlUM8RYAnk3Z+KVigTaf/Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#bec0c7\",\"#1e2a2c\",\"#4b4536\",\"#637385\",\"#7c6e2a\"],\"lightness\":42,\"placeholderWidth\":1280,\"placeholderHeight\":856,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138046,141807,1,'Tritium','2022-08-02 00:32:40','2022-08-02 00:32:40','b8f432d5-5cb1-4c51-b6ad-4e37ec067a72',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league. Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GLSN3YDBFD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"73939\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LrG99HVOYN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"61847\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Brand\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tritium is now a global brand—and our work took them to the world stage.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked with Tritium a few years ago to define their brand narrative, design their brand and create logo, visual identity and a range of assets.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZeQWeTuQlo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"73941\",\"73940\",\"73937\",\"73936\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-02qw9cOzxi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141804\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Brief\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked with Tritium when it was in the midst of hypergrowth and collaborated with their founder and leaders across time zones and continents, as well as their rapidly growing marketing and sales teams, to rebrand the company and its products.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"At the time, Tritium was still wearing the badge designed by their founder years earlier and needed to dress for world domination, which they most certainly now are achieving. The brand needed to work in all contexts—on rapid chargers, in signage, in extrusion as well as in print, and it needed to be truly global in its appeal. The brand also needed to consider products that were still emerging and not yet defined.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eEjb9cnAXp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141806\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Rationale\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We deeply embedded story in the Tritium brand we developed. The logo is three-sided (for ‘tri’). The blues represent clean power, and each of the three elements of the brand represent battery indicators, from empty to full. Meanwhile, the brand is distinctive yet subtle enough to sit successfully alongside co-branded or white-labelled Tritium products.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8PWapwyQK2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141802\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Outcome\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We successfully positioned Tritium for global expansion. We developed and defined a global Masterbrand with a defined brand narrative and transformational, authentic reflection of their vision. The brand goes from strength to strength and is easily our furthest-reaching and highest impact visual identity, recently listing on the NASDAQ and with none other than POTUS.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Tritium','Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138048,141809,1,'Tritium','2022-08-02 03:43:02','2022-08-02 03:43:02','6ca123b4-cbd9-4110-a78a-adddc45e2fbb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league. Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GLSN3YDBFD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"73939\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LrG99HVOYN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"61847\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Brand\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tritium is now a global brand—and our work took them to the world stage.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked with Tritium a few years ago to define their brand narrative, design their brand and create logo, visual identity and a range of assets.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZeQWeTuQlo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"73941\",\"73940\",\"73937\",\"73936\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-02qw9cOzxi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141804\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Brief\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked with Tritium when it was in the midst of hypergrowth and collaborated with their founder and leaders across time zones and continents, as well as their rapidly growing marketing and sales teams, to rebrand the company and its products.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"At the time, Tritium was still wearing the badge designed by their founder years earlier and needed to dress for world domination, which they most certainly now are achieving. The brand needed to work in all contexts—on rapid chargers, in signage, in extrusion as well as in print, and it needed to be truly global in its appeal. The brand also needed to consider products that were still emerging and not yet defined.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eEjb9cnAXp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141806\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Rationale\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We deeply embedded story in the Tritium brand we developed. The logo is three-sided (for ‘tri’). The blues represent clean power, and each of the three elements of the brand represent battery indicators, from empty to full. Meanwhile, the brand is distinctive yet subtle enough to sit successfully alongside co-branded or white-labelled Tritium products.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8PWapwyQK2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141802\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Outcome\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We successfully positioned Tritium for global expansion. We developed and defined a global Masterbrand with a defined brand narrative and transformational, authentic reflection of their vision. The brand goes from strength to strength and is easily our furthest-reaching and highest impact visual identity, recently listing on the NASDAQ and with none other than POTUS.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Tritium','Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138050,141811,1,'RetireAustralia','2022-08-05 05:36:54','2022-10-09 23:57:05','0e4e3f84-979d-4003-a17c-c30dc0018780',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The joys of a fully invested, long-term relationship',NULL,NULL,'The more time we spend with a client, the more we can understand and help them. That’s certainly been our experience with retirement village operator RetireAustralia, whom we’ve worked with for many years across all kinds of projects and creative challenges.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W1GF1554qH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48554\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-94Wz43ySiO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Work and campaigns\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"After a number of years being part of on a multi-agency roster, New Word Order won a five-way pitch for the entire account. Responsibilities have included the entire portfolio of new and existing communities, brand projects, lead generation campaigns and strategic marketing direction. \\n\\nOur ongoing partnership has resulted in a truly collaborative relationship that continues to grow and evolve. We’ve produced many ground-breaking campaigns along the way, and if work in progress is any indication, the best is most definitely yet to come.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OcIU8HPpVB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48548\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jFWsNXz77v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48556\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-77KaMezwdw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Full service offering\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy. Copywriting. Video production. Digital. Design. Photography. Research. Branding. Pretty much every tool in the New Word Order kitbag has been utilised by the RetireAustralia marketing team, such has been the breadth and depth of our working partnership. \\n\\nOur full service agency offering creates the perfect platform for strong collaboration as clients such as RetireAustralia have the confidence that integration and campaign execution from strategy can be executed more efficiently.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UAN0zeDxtY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/238021812?h=67c8a18562&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/238030725?h=4b0966592b&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new3\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/238028973?h=8ad9e0fc70&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xxGuN9crsA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Branding\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"New Word Order’s branding expertise has been integral to the partnership with RetireAustralia. We\'ve fully branded and marketed new communities in their growing portfolio, establishing the right brand values and voice for each particular project. \\n\\nThe masterbrand is also being rigorously reviewed to ensure optimal value is being achieved from RetireAustralia name. We’ve helped them grow brand awareness and stake their claim as a people business first, and property business second. In the backdrop of COVID-19, this has been a significant branding challenge that our partnership team continues to work on together.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-79rgfAlU77\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48555\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-neQVTm36wB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48562\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dT6wu1E3Ly\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48564\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BHWYFYJQXk\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48563\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'The joys of a fully invested, long term relationship','The more time we spend with a client, the more we can understand and help them. That’s certainly been our experience with retirement village operator RetireAustralia, whom we’ve worked with for many years across all kinds of projects and creative challenges.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138051,141812,1,'Careers','2022-08-05 06:07:11','2022-08-05 06:07:11','ca1668ae-dc76-425d-ad40-1125f8b04cac',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NyO0Ik0kgl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Careers\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We are a Brisbane-based agency renowned for our evidence-based, strategic approach to truly wonderful creative work. We are strongly purpose-driven—wholeheartedly committed to making a meaningful difference in the lives of our clients, their customers and the community at large. Our work is rewarding.\\n\\nThe best part of what we do is doing it together. There’s nothing quite like a room full of inspired, inspiring people united by purpose and passion—and we’re thrilled at the idea of you being a part of that.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Careers\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GoUEZyUfSg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-rG4w99hwoM\",\"content\":{\"fields\":{\"accordionContent\":{\"new1\":{\"type\":\"accordionBlock\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"accordionTitle\":\"Senior designer\",\"accordionText\":\"As our senior brand and campaign designer, you’ll be a part of the end-to-end creative process to create and recommend the best design and visual solutions for each client. \\n\\nYou will assist the Head of Design, and deliver a clear design vision and brand story for all products and services with each client.\\n\\nYou’ll have 8+ years of agency experience, in both branding and campaign. Your portfolio will include examples of brand development, identity and design, in both print and digital, as well as strong retail campaign experience. \\n\\nYou love designing high-end visual work as part of a thriving studio. \\n\\nYou\'re a great communicator and love to get hands-on by getting involved with branding workshops and helping with photo/video shoots. \\n\\nWe love creative side hustles, so if you’ve got one, we’d love to hear about it. \\n\\n\\n**As a creative you’ll bring**\\n<ul>\\n  <li>•  A desire for generating top-quality work grounded with metaphor and hidden meaning and detail, and executed with a distinct passion for your craft</li>\\n  <li>•  Versatility and well-rounded skills to work across many different clients, adapting to varying styles, within timeframes and budgets</li>\\n  <li>•  A hunger to create award-winning work that you can own</li>\\n  <li>•  A relaxed mindset to pitch in with whatever’s required</li>\\n</ul>\\n\\n**As an applicant you’ll bring**\\n<ul>\\n  <li>•  4+ years as a senior designer, 8+ years in the industry</li>\\n  <li>•  An awesome portfolio with variety but also a degree or equivalent qualification</li>\\n  <li>•  Passion for working with and alongside other people, collaborating for creative solutions and outcomes</li>\\n  <li>•  Flexibility and a team-focused attitude</li>\\n  <li>•  High-level attention to detail</li>\\n  <li>•  Amazing understanding of typography and its application</li>\\n  <li>•  Solid suite skills, specifically Adobe and Figma</li>\\n  <li>•  Ability to roll out a brand from go to whoa, including style guide, marketing/social collateral and website</li>\\n  <li>•  Potentially, a second love behind branding – like digital design, UX or animation</li>\\n  <li>•  Keen time management with the ability to meet tight deadlines</li>\\n  <li>•  A commitment for constant progression and desire to go above and beyond</li>\\n  <li>•  A strong understanding of traditional channels, platforms and new technology</li>\\n  <li>•  A high level of energy and enthusiasm along with a lifelong calling for karaoke. (Not 100% necessary. Just 99%.).</li>\\n</ul>\",\"buttonText\":\"Apply now\",\"buttonUrl\":\"#applicationForm\"}}},\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GqLHJAoMsp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The Benefits\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This is a rare opportunity to join a fast-growing and supportive agency in a very exciting phase of its evolution. A competitive salary will be negotiated.\\nEveryone at NWO enjoys fantastic benefits – from flexibility to bonuses, professional development and a comprehensive wellbeing program.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Flexibility and additional leave**\\n\\n- Hybrid working environment with genuine flexibility work from home and our office at Greenslopes\\n- One day per semester of paid study leave\\n- Early, late and split day options\\n- Extra day of leave for an extra happy birthday\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Bonus benefits**\\n\\n- $650 a year via AirWallex to spend on you, however you choose ($50 a month–extra $50 in your birthday month)\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new5\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Professional development**\\n\\n- Work with top executives in wide-ranging sectors\\n- Gain deep expertise across all creative fields\\n- Flexible teams means you’ll work on every account\\n- Paid professional membership of your choice\\n- Annual $1000 professional development budget\\n- Learning and development plan for every employee\\n- Study leave for post-graduate study\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new6\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Wellbeing**\\n\\n- Weekly or fortnightly 1-1 with direct manager\\n- Quarterly goal-setting and performance review\\n- Free access to Employee Assistance Program\\n- Intentional Wellbeing at Work program, including massage and yoga\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new7\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Happy Friyay (and every other day)**\\n\\n- Weekly team lunches and drinks\\n- Quarterly team nights out\\n- EOFY and Christmas staff parties\\n- Mid-year and end-of-year all-team days to rest, reflect and plan\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LhE8ewXDdj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\'s next?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"If this role sounds perfect for you, fill in the apply form below, and attach your cover letter and a link to your website or portfolio. \\n\\nWe’re looking forward to saying hello!\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BtRUbwXzyb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-s0nVisNYi6\",\"content\":{\"fields\":{\"spacer\":\"pt-8 md:pt-16 bg-black\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fz4qdj0CRS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<div id=\\\"applicationForm\\\">\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: \\\"na1\\\",\\n    portalId: \\\"8394441\\\",\\n    formId: \\\"54bb36ff-8ada-4b4f-b1f9-73d1c7fc42c6\\\"\\n  });\\n</script>\\n</div>\",\"backgroundColour\":\"bg-black\",\"sectionTitle\":\"Application forms\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138053,141814,1,'Careers','2022-08-05 06:08:46','2022-08-05 06:08:46','ab8b8e39-042c-4c0d-9ae4-bd7420a7e60e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NyO0Ik0kgl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Careers\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We are a Brisbane-based agency renowned for our evidence-based, strategic approach to truly wonderful creative work. We are strongly purpose-driven—wholeheartedly committed to making a meaningful difference in the lives of our clients, their customers and the community at large. Our work is rewarding.\\n\\nThe best part of what we do is doing it together. There’s nothing quite like a room full of inspired, inspiring people united by purpose and passion—and we’re thrilled at the idea of you being a part of that.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Careers\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GoUEZyUfSg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-rG4w99hwoM\",\"content\":{\"fields\":{\"accordionContent\":{\"new1\":{\"type\":\"accordionBlock\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"accordionTitle\":\"Senior designer\",\"accordionText\":\"As our senior brand and campaign designer, you’ll be a part of the end-to-end creative process to create and recommend the best design and visual solutions for each client. \\n\\nYou will assist the Head of Design, and deliver a clear design vision and brand story for all products and services with each client.\\n\\nYou’ll have 8+ years of agency experience, in both branding and campaign. Your portfolio will include examples of brand development, identity and design, in both print and digital, as well as strong retail campaign experience. \\n\\nYou love designing high-end visual work as part of a thriving studio. \\n\\nYou\'re a great communicator and love to get hands-on by getting involved with branding workshops and helping with photo/video shoots. \\n\\nWe love creative side hustles, so if you’ve got one, we’d love to hear about it. \\n\\n\\n**As a creative you’ll bring**\\n<ul>\\n  <li>•  A desire for generating top-quality work grounded with metaphor and hidden meaning and detail, and executed with a distinct passion for your craft</li>\\n  <li>•  Versatility and well-rounded skills to work across many different clients, adapting to varying styles, within timeframes and budgets</li>\\n  <li>•  A hunger to create award-winning work that you can own</li>\\n  <li>•  A relaxed mindset to pitch in with whatever’s required</li>\\n</ul>\\n\\n**As an applicant you’ll bring**\\n<ul>\\n  <li>•  4+ years as a senior designer, 8+ years in the industry</li>\\n  <li>•  An awesome portfolio with variety but also a degree or equivalent qualification</li>\\n  <li>•  Passion for working with and alongside other people, collaborating for creative solutions and outcomes</li>\\n  <li>•  Flexibility and a team-focused attitude</li>\\n  <li>•  High-level attention to detail</li>\\n  <li>•  Amazing understanding of typography and its application</li>\\n  <li>•  Solid suite skills, specifically Adobe and Figma</li>\\n  <li>•  Ability to roll out a brand from go to whoa, including style guide, marketing/social collateral and website</li>\\n  <li>•  Potentially, a second love behind branding – like digital design, UX or animation</li>\\n  <li>•  Keen time management with the ability to meet tight deadlines</li>\\n  <li>•  A commitment for constant progression and desire to go above and beyond</li>\\n  <li>•  A strong understanding of traditional channels, platforms and new technology</li>\\n  <li>•  A high level of energy and enthusiasm along with a lifelong calling for karaoke. (Not 100% necessary. Just 99%.).</li>\\n</ul>\",\"buttonText\":\"Apply now\",\"buttonUrl\":\"#applicationForm\"}}},\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GqLHJAoMsp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The Benefits\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This is a rare opportunity to join a fast-growing and supportive agency in a very exciting phase of its evolution. A competitive salary will be negotiated.\\nEveryone at NWO enjoys fantastic benefits – from flexibility to bonuses, professional development and a comprehensive wellbeing program.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Flexibility and additional leave**\\n\\n- Hybrid working environment with genuine flexibility work from home and our office at Greenslopes\\n- One day per semester of paid study leave\\n- Early, late and split day options\\n- Extra day of leave for an extra happy birthday\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Bonus benefits**\\n\\n- $650 a year via AirWallex to spend on you, however you choose ($50 a month–extra $50 in your birthday month)\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new5\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Professional development**\\n\\n- Work with top executives in wide-ranging sectors\\n- Gain deep expertise across all creative fields\\n- Flexible teams means you’ll work on every account\\n- Paid professional membership of your choice\\n- Annual $1000 professional development budget\\n- Learning and development plan for every employee\\n- Study leave for post-graduate study\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new6\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Wellbeing**\\n\\n- Weekly or fortnightly 1-1 with direct manager\\n- Quarterly goal-setting and performance review\\n- Free access to Employee Assistance Program\\n- Intentional Wellbeing at Work program, including massage and yoga\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new7\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Happy Friyay (and every other day)**\\n\\n- Weekly team lunches and drinks\\n- Quarterly team nights out\\n- EOFY and Christmas staff parties\\n- Mid-year and end-of-year all-team days to rest, reflect and plan\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LhE8ewXDdj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\'s next?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"If this role sounds perfect for you, fill in the apply form below, and attach your cover letter and a link to your website or portfolio. \\n\\nWe’re looking forward to saying hello!\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BtRUbwXzyb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-s0nVisNYi6\",\"content\":{\"fields\":{\"spacer\":\"pt-8 md:pt-16 bg-black\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fz4qdj0CRS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<div id=\\\"applicationForm\\\">\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: \\\"na1\\\",\\n    portalId: \\\"8394441\\\",\\n    formId: \\\"54bb36ff-8ada-4b4f-b1f9-73d1c7fc42c6\\\"\\n  });\\n</script>\\n</div>\",\"backgroundColour\":\"bg-black\",\"sectionTitle\":\"Application forms\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138055,141816,1,'Careers','2022-08-05 06:09:43','2022-08-05 06:09:43','29ef7fa4-e35d-4452-a933-2ef29faa8aec',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NyO0Ik0kgl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Careers\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We are a Brisbane-based agency renowned for our evidence-based, strategic approach to truly wonderful creative work. We are strongly purpose-driven—wholeheartedly committed to making a meaningful difference in the lives of our clients, their customers and the community at large. Our work is rewarding.\\n\\nThe best part of what we do is doing it together. There’s nothing quite like a room full of inspired, inspiring people united by purpose and passion—and we’re thrilled at the idea of you being a part of that.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Careers\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GoUEZyUfSg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-rG4w99hwoM\",\"content\":{\"fields\":{\"accordionContent\":{\"new1\":{\"type\":\"accordionBlock\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"accordionTitle\":\"Senior designer\",\"accordionText\":\"As our senior brand and campaign designer, you’ll be a part of the end-to-end creative process to create and recommend the best design and visual solutions for each client. \\n\\nYou will assist the Head of Design, and deliver a clear design vision and brand story for all products and services with each client.\\n\\nYou’ll have 8+ years of agency experience, in both branding and campaign. Your portfolio will include examples of brand development, identity and design, in both print and digital, as well as strong retail campaign experience. \\n\\nYou love designing high-end visual work as part of a thriving studio. \\n\\nYou\'re a great communicator and love to get hands-on by getting involved with branding workshops and helping with photo/video shoots. \\n\\nWe love creative side hustles, so if you’ve got one, we’d love to hear about it. \\n\\n\\n**As a creative you’ll bring**\\n<ul>\\n  <li>•  A desire for generating top-quality work grounded with metaphor and hidden meaning and detail, and executed with a distinct passion for your craft</li>\\n  <li>•  Versatility and well-rounded skills to work across many different clients, adapting to varying styles, within timeframes and budgets</li>\\n  <li>•  A hunger to create award-winning work that you can own</li>\\n  <li>•  A relaxed mindset to pitch in with whatever’s required</li>\\n</ul>\\n\\n**As an applicant you’ll bring**\\n<ul>\\n  <li>•  4+ years as a senior designer, 8+ years in the industry</li>\\n  <li>•  An awesome portfolio with variety but also a degree or equivalent qualification</li>\\n  <li>•  Passion for working with and alongside other people, collaborating for creative solutions and outcomes</li>\\n  <li>•  Flexibility and a team-focused attitude</li>\\n  <li>•  High-level attention to detail</li>\\n  <li>•  Amazing understanding of typography and its application</li>\\n  <li>•  Solid suite skills, specifically Adobe and Figma</li>\\n  <li>•  Ability to roll out a brand from go to whoa, including style guide, marketing/social collateral and website</li>\\n  <li>•  Potentially, a second love behind branding – like digital design, UX or animation</li>\\n  <li>•  Keen time management with the ability to meet tight deadlines</li>\\n  <li>•  A commitment for constant progression and desire to go above and beyond</li>\\n  <li>•  A strong understanding of traditional channels, platforms and new technology</li>\\n  <li>•  A high level of energy and enthusiasm along with a lifelong calling for karaoke. (Not 100% necessary. Just 99%.).</li>\\n</ul>\",\"buttonText\":\"Apply now\",\"buttonUrl\":\"#applicationForm\"}}},\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GqLHJAoMsp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The Benefits\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This is a rare opportunity to join a fast-growing and supportive agency in a very exciting phase of its evolution. A competitive salary will be negotiated.\\nEveryone at NWO enjoys fantastic benefits – from flexibility to bonuses, professional development and a comprehensive wellbeing program.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Flexibility and additional leave**\\n\\n- Hybrid working environment with genuine flexibility work from home and our office at Greenslopes\\n- One day per semester of paid study leave\\n- Early, late and split day options\\n- Extra day of leave for an extra happy birthday\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Bonus benefits**\\n\\n- $650 a year via AirWallex to spend on you, however you choose ($50 a month–extra $50 in your birthday month)\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new5\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Professional development**\\n\\n- Work with top executives in wide-ranging sectors\\n- Gain deep expertise across all creative fields\\n- Flexible teams means you’ll work on every account\\n- Paid professional membership of your choice\\n- Annual $1000 professional development budget\\n- Learning and development plan for every employee\\n- Study leave for post-graduate study\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new6\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Wellbeing**\\n\\n- Weekly or fortnightly 1-1 with direct manager\\n- Quarterly goal-setting and performance review\\n- Free access to Employee Assistance Program\\n- Intentional Wellbeing at Work program, including massage and yoga\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new7\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Happy Friyay (and every other day)**\\n\\n- Weekly team lunches and drinks\\n- Quarterly team nights out\\n- EOFY and Christmas staff parties\\n- Mid-year and end-of-year all-team days to rest, reflect and plan\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LhE8ewXDdj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\'s next?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"If this role sounds perfect for you, fill in the apply form below, and attach your cover letter and a link to your website or portfolio. \\n\\nWe’re looking forward to saying hello!\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BtRUbwXzyb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-s0nVisNYi6\",\"content\":{\"fields\":{\"spacer\":\"pt-8 md:pt-16 bg-black\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fz4qdj0CRS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<div id=\\\"applicationForm\\\">\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: \\\"na1\\\",\\n    portalId: \\\"8394441\\\",\\n    formId: \\\"54bb36ff-8ada-4b4f-b1f9-73d1c7fc42c6\\\"\\n  });\\n</script>\\n</div>\",\"backgroundColour\":\"bg-black\",\"sectionTitle\":\"Application forms\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Careers at New Word Order','We are a Brisbane-based agency renowned for our evidence-based, strategic approach to truly wonderful creative work','careers design copy digital','New Word Order',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138057,141818,1,'Terms and conditions','2022-08-08 06:09:46','2022-08-08 06:09:46','67b12063-ddac-4ae4-bef0-f124730fab9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LU0O2e8wW5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"General terms and conditions\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"##### **About this estimate**\\n\\nOur estimate is valid for a period of 45 days from the date of issue.\\n\\nThe following documents should be read together to understand the scope and price of our quoted services:\\n\\n- our estimate\\n- your brief, if supplied\\n- these Terms and Conditions\\n\\nThe estimate has been provided according to your brief to us. Any exclusions noted in the estimate should not be taken as exhaustive and you should assume that unless a service has been explicitly listed in the quote, it is not included in the price. \\n\\nAlterations to this brief or specifications will incur further costs, and we reserve the right to alter this estimate should we believe the changing scope of work falls outside of what was originally quoted.\\n\\nIt is your responsibility as the client to contact your account manager prior to approving the quote if you have queries or require clarification about any items in the quote. It is also your responsibility as the client to ensure this estimate accurately reflects the scope of work you require.\\n\\nBefore we begin work, you must sign your approval of the estimate and, if your organisation uses an ordering system, provide an order number or purchase order.\\n\\nYour acceptance of our estimate includes full acceptance of the conditions and payment terms listed in these terms and conditions. Once quotation approval has been provided, these conditions and payment terms are not negotiable.\\n\\nWe use the terms estimate and quote interchangeably and their meaning should be taken as the same: a cost estimate to the value of the work required to achieve your outcomes based on information you have provided us. This estimate may change in response to your project needs and, if it does, a new or additional quote may be required to be approved before work continues.\\n\\n##### **Approval**\\n\\nWe use Docusign for some estimates or, for smaller jobs, require an authorisation signature on a copy of the provided estimate. Your account manager will let you know the required authorisation method. No work can be scheduled until we have a duly authorised estimate through Docusign or your signature on an estimate.\\n\\n##### **Beginning your project**\\n\\nWe will not schedule or begin work on your project until we receive from you all of the artwork, content and other files required for the project, as well as the approved estimate or a purchase order.\\n\\nFor example, for an annual report, this might include all finalised content, graphs, charts, images, captions, financial statements and logos. This saves our studio unnecessary downtime and you money.\\n\\nWe will negotiate and document exceptions where required, but please be aware this may affect your costs and timeline.\\nYour NWO account manager may provide you with a checklist to ensure you are aware of all material that you must provide before we begin work on your project.\\n\\n##### **Brief**\\n\\nUsually, projects within NWO are worked on according to a brief developed in consultation between you and us. If you have not supplied a written brief to us, we may ask you to fill out our briefing template before we create an estimate. You need to check the wording of our estimate directly reflects your understanding of the work we’re carrying out for you. If it does not, please tell us and we will not begin working on the project until your concern is answered.\\n\\n##### **Checking, approval and signing-off**\\n\\nAs the client, you are responsible for checking your project for any errors and approving the final project. When you advise us that you approve a project, we take this to mean that you have checked it thoroughly for errors and that you are satisfied it has been completed to your satisfaction. For complex or additional jobs, we may ask you to fill in an approval form.\\n\\nWe have in place procedures and systems to ensure each of our finished projects reaches the highest possible standard of quality. However, from time to time, errors can occur. While we will do everything possible to fix the error, you are responsible for checking and approving the finished project and, as such, any costs of repairing the error are your responsibility.\\n\\nOn some projects, we may require you to provide your approval in writing before we finish work on your job or continue to publication or printing.\\n\\n##### **Client-directed alterations**\\n\\nAs much as possible, we try to accommodate client input and alterations within our quotes. However feedback, corrections and alterations to the brief over and above those quoted will be charged as incurred. Any requested changes are handled through our change control procedure which is:\\n\\n1. Any request for change must be detailed in writing including a description of the required change, the rationale for the change, and the effect the change will have on the project.\\n2. Your account manager will review the proposed change and determine, in consultation with you, if the change is within existing scope or outside the existing project scope. \\n3. If the change is minor and within the scope of the project briefing and/or budget, your account manager will schedule the change to be made at an appropriate time. \\n4. If the change is outside the scope of the existing project briefing and/or budget, your account manager will review the proposed change. \\n5. Your account manager will supply you with a quotation for the requested changes.\\n6. Work on the changes will be scheduled when we receive written  authorisation from you for the work and the associated charges. \\n7. Charges will be invoiced to you after we have implemented the agreed changes. \\n\\nThis is how we define a single round of changes: We supply the draft product, you email or otherwise detail the changes, and we then include those changes in our final product to you. Please note our preferred way of receiving changes is via a marked-up PDF. Your account manager can help you with this if you are unsure about marking up a PDF.\\n\\nChanges beyond this scope will be charged as author’s corrections. Please be aware that, during author’s corrections, all staff involved in the corrections process will incur costs for you. Depending on your project and the corrections required, this may include an account manager, producer, designer, editor, writer and so on.\\n\\nIf there is unused time left over from your estimate, we will use that time to make your alterations to save you money. Once that amount has been exhausted, however, we will begin charging author’s corrections and we will advise you of this by email and then in weekly cost updates.\\nYou can reduce the amount of corrections by:\\n\\n- supplying approved sourced material and instructions prior to NWO commencing work\\n- seeking authority within your organisation to be the ultimate decision-maker for this project\\n- advising the multiple stakeholders within your organisation of the cost of unbudgeted changes\\n- compiling all feedback into a single document for NWO’s use.\\n \\n##### **Digital projects**\\n\\nThe following terms are specific to digital projects. \\n\\n**Digital content entry**\\n\\nWhere the estimate pertains to content entry for your digital project, time has been allocated for us to input a set amount of content (as defined by the estimate). Should more time be required, it will be charged at our standard hourly rate. Content cannot be input until the project has been finalised and fully tested by NWO. Your timelines should allow content to be uploaded after completion of development and prior to final testing.\\n\\n**Acceptance and completion**\\n\\nWe will conduct testing throughout the project development; however, you are responsible for confirming the works produced by NWO are as per the brief and fit for the purpose and function as contracted. If no acceptance testing is undertaken by you, the product will be deemed accepted when launched or on its first public use. After acceptance, alterations/fixes will be charged as incurred.\\n\\n**Website warranty**\\n\\nWhen not otherwise specified our warranty period covers your website for 30 days from the acceptance date. Any issues in functionality that are brought to our attention during this period will be fixed without charge in a time frame to be negotiated with you. Charges will apply for any fixes outside the warranty period or changes to the website that are outside the scope of the original quotation.\\n\\n**Platform and browser compatibility**\\n\\nUnless otherwise specified, New Word Order will test the following browsers on the version current at the date of our estimate. \\n\\n- Chrome\\n- Edge\\n- Firefox\\n- Safari\\n- Opera\\n\\nNew Word Order is not responsible for work to update websites when new browsers are released after acceptance or if the website does not work on browsers not included in the list provided. Internet Explorer and other deprecated browsers are not tested against and, if required and possible, will incur additional charges.\\n\\n**Third-party software**\\n\\nIf third-party software is used in the delivery of your digital product unless otherwise specified the fees for the software are an annual licence fee. You agree to pay ongoing charges to ensure the continued functionality of your product.\\nIf you enter into a maintenance contract with us, on-going software licence fees will be included in the maintenance fees.\\n\\n##### **Deadlines**\\n\\nWe pride ourselves on meeting tight deadlines and have a strong reputation with our clients for fast, reliable work.\\n\\nHowever, if you significantly alter the brief – such as change text or photos that have already been supplied and approved, change website layouts, or increase the volume  to be produced – or other circumstances occur beyond our control, we may advise you of revised timelines.\\n\\nWe understand that circumstances change. We schedule all work into our studios based on delivery requirements. If your delivery requirements change you should inform us immediately.\\n\\nIf you are unable to meet timeframes for providing us information, feedback or content, we may withdraw your job from the studio until you get it to us. If your project has been delayed due to the loss of a scheduling window or the late approval of the estimate or proposal, we will inform you of the revised timeline.\\n\\nIf timelines are not being adhered to on your part and the project is on hold for 90 days or more, we reserve the right to close the project. You will be invoiced for any outstanding costs incurred up to the date of closure. Any overpayments will be refunded. We will always advise you before doing so, and will be happy to pick your project back up when you are ready to move ahead. \\n\\nRestarting a project will incur a re-commencement fee which will be invoiced prior to work starting again.\\n\\n##### **Administration and consumables**\\n\\nExpenses and administrative costs are incurred during every project. These may include phone calls, printing, couriers, proofs, materials, and finance and administrative work to make your project run smoothly.\\n\\nYour quote includes an estimate for these expenses, calculated at 3 per cent of your total quoted amount. We will advise you if these expenses will exceed the quoted amount.\\n\\n##### **Payment terms and pre-payments**\\n\\nOur invoices are to be paid within 14 days of the invoice date, with longer payment terms available for negotiation before a job begins.\\n\\n**When you’re a new client**\\n\\nIf you’re a new client, we reserve the right to invoice you 50 per cent of the total project fee before beginning work, or 100 per cent if the job is under $5000.\\n\\n**When you’re an existing client**\\n\\nIf you’re already a client of ours, we reserve the right to invoice you 30 per cent of the total project fee before beginning work, or 100 per cent if the job is under $5000.\\n\\n**When you owe us money**\\n\\nIf payment is delayed longer than 30 days, we reserve the right to withhold future and existing work until payment is made. See Late Payment below for fees associated with late payments.\\n\\n**When we’re employing suppliers for you**\\n\\nDepending on the level of costs and complexity associated with your project, we may choose to request a deposit of up to 50 per cent of the total cost prior to commencing your project. In this case, the remaining costs will be split into milestone-based payments.\\n\\n**When our work forms part of a larger project**\\n\\nWe reserve the right to invoice you when our responsibility within a project has been completed—not when your project has been completed in total.\\n\\n**When you order our work for your client**\\n\\nIf you have ordered our work on behalf of a third party, our payment terms still apply. Payment is required when our work is complete, not when you receive payment.\\n\\n**When you choose to make an advance payment**\\n\\nIf we agree to an advance payment, all work must be completed within that financial year.\\n\\n**Late payment**\\n\\nIf you do not pay us by the due date on an invoice, we reserve the right to cease production on any of your projects.\\n\\nWe may also charge a late payment fee:\\n\\n- 30-60 days late: 5%\\n- 60-90 days late: 10%\\n- 120+ days late: 15%\\n\\nWe do not offer payback schemes or loan arrangements. \\n\\nWe may engage a third party for debt recovery services of any payments which are more than 45 days overdue. Relevant contact details and information about outstanding payments will be provided to them to enable them to liaise directly with you for debt recovery purposes. \\n\\n##### **Limitation of liability**\\n\\nBy commissioning our services, you are agreeing that you will not hold New Word Order or its agents or employees liable for any incidental or consequential damages which arise from our failure to perform any aspect of the project in a timely manner, regardless of whether such failure was caused by intentional or negligent acts or omissions of New Word Order or a third party. Furthermore, we disclaim all implied warranties.\\n\\n##### **Photography and images**\\n\\nUnless otherwise specified in this estimate, we will charge you an additional amount if we purchase images from a stock library for your project.\\n\\nPlease note that you are responsible for ensuring all of your supplied images match the specifications we give you for your project. We expect you to comply with all relevant copyright and privacy laws and only supply content for which you have full authority to use\\n\\nWe reserve the right to charge additional time to assess your photo files and improve substandard images.\\n\\n##### **Print management and file output**\\n\\nWe have extensive experience in managing print projects. When you choose us to manage your print, you gain access to our experience, established supplier network and exacting quality control standards.\\n\\nFrom time to time, our clients choose to manage print themselves. In these situations, we will include a file output fee to cover the cost of supplying the file, and time taken to liaise with the printer will be charged as project management.\\n\\nWe hold onto current jobs for 6 months. After that time, your files are moved to our archive backup. If you require old files from our archive, a fee will be charged to locate and provide to you.\\n\\n##### **Project management**\\n\\nOur account and project managers make sure your project stays on track. This takes time and considerable effort. Your estimate contains a fee for project/account management that covers the administrative and management hours we expect our agency will expend in delivering your project.\\n\\nThese include project meetings between you and us, scheduling your work in the studios, ensuring projects are delivered on time and on budget, production of audio-visual and print components, and making sure project outcomes are in line with our requirements.\\n\\n##### **Publicity**\\n\\nWe may use your name for the purpose of promotional activities involving the works we have carried out for you, unless otherwise specified.\\n\\n##### **Supplying material to us**\\n\\nWe undertake projects in good faith. If the material you supply – such as photography, graphics or text – do not match the expected standard set during our discussions, we reserve the right to charge for the time it will take to improve or alter the material in order to use it.\\n\\nPlease supply all text, graphics and images in a digital format unless otherwise specified in this estimate or brief. Only supply material that you have the legal and ethical right to use.\\n\\n##### **Tenders**\\n\\nFrom time to time, we are engaged to supply services under a preferred supplier or tender arrangement. We reserve the right to withdraw from providing services after or during our appointment if changes to scope or exceptional circumstances make delivery untenable. Any decision will be made in consultation with the client.\\n\\n##### **Warranty of originality**\\n\\nNew Word Order warrants and represents that, to the best of its knowledge, the work assigned hereunder is original and has not been previously published, or that consent to use has been obtained on an unlimited basis; that all work or portions thereof obtained through the undersigned from third parties is original or, if previously published, that consent to use has been obtained on an unlimited basis; that New Word Order has full authority to make this agreement; and that the work prepared by New Word Order does not contain any scandalous, libellous, or unlawful matter. \\n\\nThis warranty does not extend to any uses that the client or others may make of our product that may infringe on the rights of others. The client expressly agrees that it will hold New Word Order harmless for all liability caused by the client’s use of our product to extent such use infringes on the rights of others.\\n\\n##### **Writing services**\\n\\nWe have extensive experience in all forms of writing and editing. Based on our experience, we choose not to work with Word files that contain multiple images or tables, as these files easily corrupt during the editing process. We are happy, though, to work with Word files with the images and tables extracted. Redesigning the Word file to include the images and tables at the end of the editing process will incur a separate fee.\\n\\n##### **Your obligation**\\n\\nYou have sole responsibility of ensuring the suitability and availability of any trademark rights, copyrights or other property rights that are intended to vest in the works that we have been commissioned to produce in accordance with your instructions.\\n\\n##### **Intellectual property**\\n\\nAny research data, concepts, diagrams or illustrations remain the property of New Word Order. Any alternate intellectual property rights contained in the design or materials used in the execution of this project, including artwork and computer-generated instructions and information, remain with New Word Order. \\n\\nYou warrant that you hold all necessary intellectual property rights in any document or material (including, but not limited to, plans and drawings), that are supplied to New Word Order for its provision of goods and services and that there is or will be no infringement of any rights or entitlements held by any third party. \\n\\nYou also indemnify and hold harmless New Word Order for any claims made against it arising from New Word Order’s use of any drawings, design or any other document, material or information provided by you, the client. \\n\\nYou warrant that all designs or instructions to New Word Order will not cause New Word Order to infringe any patent, registered design or trademark in the execution of the client orders.\\n\\n##### **Termination**\\n\\nNew Word Order may refuse to enter into this contract or terminate any existing arrangements, without prejudice, if we find our core values are at odds with yours. Our core values put people at the centre of everything we do. We do not condone discrimination of any kind, nor do we condone violations of human rights. \\n\\nWe also may terminate a contract if invoices are unpaid (see Payment terms and pre-payments) or if you become insolvent.\\n\\n##### **Changes to Terms and Conditions**\\n\\nFrom time-to-time we may make changes to these Terms and Conditions. Any changes, unless otherwise notified, will come into effect on your next project with us.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138059,141820,1,'Burnie Brae','2022-08-08 06:14:50','2022-08-08 06:14:50','4e9dacbe-19aa-465d-98ba-efac41c5cb19',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand that empowers rich lives',NULL,NULL,'What’s a Burnie Brae? That’s the question we needed to answer to help the community organisation create some clarity around their brand as they undertook an exciting brand and website refresh project.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZaXkCuEhzq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140080\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked closely with Burnie Brae to understand their issues and what makes them tick. There was a concern Burnie Brae was lacking meaning, awareness and connection for much of the public they serve, alongside a recognition that the brand was simply a bit ‘tired’ and neglected. \\nAs a branding and strategy specialist, we created a process to uncover some of the truths behind the brand to set the groundwork. Our team conducted a series of research and workshops before embarking on brand direction and narrative development projects.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140065\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With the foundations set, our creative team embarked on refreshing Burnie Brae’s visual identity. The creative concept painted a picture of community connection and explored a distinctive direction for the Burnie Brae brand. We adapted the existing logo and brand colours to build a fresh and recognisable feel.\\nWe redesigned and built a new website, improving the information navigation and creating better user journeys.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140069\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140066\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result has seen Burnie Brae take ownership of a revitalised brand identity that has stronger connections to their stakeholders. The stunning new website is simple to use and takes users on a compelling journey through Burnie Brae’s community service offerings.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'A brand that empowers rich lives','What’s a Burnie Brae? That’s the question we needed to answer to help the community organisation create some clarity around their brand as they undertook an exciting brand and website refresh project.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138060,141821,1,'Glengara Care','2022-08-08 06:16:07','2022-08-08 06:16:07','e836e0ac-f3e5-4653-a6fb-e1ec6dbbf3bb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?',NULL,NULL,'That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CIgMzACdNE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141522\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"While Glengara Care has been described as the ‘genuine alternative to aged care’, it often isn’t clear what exactly sets the facility apart from residential aged care facilities. The differentiators ultimately come down to the provision of care: Glengara Care offers care that is personal, loving and delivered in a manner that preserves the recipient’s independence.\\n\\nThe ‘Your Care Factor’ campaign was required to generate leads (and sales) while building awareness around Glengara Care, in comparison to some of the well-known aged care alternatives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gEXzZ5VyHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/716600899?h=4efb4f4cd1&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"GlengaraCare TVC\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The core of the campaign was built from the concept of ‘care’. We drew out two meanings from ‘Your Care Factor’—not only the level of care provided by the facility, but also the decision-making factors that each potential buyer personally cares about. The term ‘care factor’ is deeply familiar, perhaps not so much to the 80+ year old resident market, but more so to their children—the key influencers of this campaign.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141505\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141506\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We created three television commercials that pose the question of ‘What is your care factor?’ by contrasting the realities of people struggling physically and emotionally in a home that doesn’t suit their needs against people receiving the unparalleled care offered at Glengara Care.\\n\\nWhile the videos showcase Glengara Care’s differentiated care offering, the advertisements themselves separate Glengara Care from the alternatives. They’re provocative, fresh and engaging.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3yQnxK2ME5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This project certainly wasn’t an easy one. The final product is the result of fierce determination—both from NWO and RetireAustralia—in the face of adversity such as COVID-19 restrictions, risks and vulnerability. The video shoot was rescheduled numerous times and often our careful planning was swapped out for quick thinking and adaptability.\\nThe end result, however, was worth every bit of effort.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?','That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—through television advertising, to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138062,141823,1,'RetireAustralia','2022-08-08 06:16:57','2022-08-08 06:16:57','be9e250c-f380-4d24-9aca-0ef6e6a82e12',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The joys of a fully invested, long-term relationship',NULL,NULL,'The more time we spend with a client, the more we can understand and help them. That’s certainly been our experience with retirement village operator RetireAustralia, whom we’ve worked with for many years across all kinds of projects and creative challenges.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W1GF1554qH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48554\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-94Wz43ySiO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Work and campaigns\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"After a number of years being part of on a multi-agency roster, New Word Order won a five-way pitch for the entire account. Responsibilities have included the entire portfolio of new and existing communities, brand projects, lead generation campaigns and strategic marketing direction. \\n\\nOur ongoing partnership has resulted in a truly collaborative relationship that continues to grow and evolve. We’ve produced many ground-breaking campaigns along the way, and if work in progress is any indication, the best is most definitely yet to come.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OcIU8HPpVB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48548\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jFWsNXz77v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48556\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-77KaMezwdw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Full service offering\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy. Copywriting. Video production. Digital. Design. Photography. Research. Branding. Pretty much every tool in the New Word Order kitbag has been utilised by the RetireAustralia marketing team, such has been the breadth and depth of our working partnership. \\n\\nOur full service agency offering creates the perfect platform for strong collaboration as clients such as RetireAustralia have the confidence that integration and campaign execution from strategy can be executed more efficiently.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UAN0zeDxtY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/238021812?h=67c8a18562&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/238030725?h=4b0966592b&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new3\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/238028973?h=8ad9e0fc70&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xxGuN9crsA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Branding\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"New Word Order’s branding expertise has been integral to the partnership with RetireAustralia. We\'ve fully branded and marketed new communities in their growing portfolio, establishing the right brand values and voice for each particular project. \\n\\nThe masterbrand is also being rigorously reviewed to ensure optimal value is being achieved from RetireAustralia name. We’ve helped them grow brand awareness and stake their claim as a people business first, and property business second. In the backdrop of COVID-19, this has been a significant branding challenge that our partnership team continues to work on together.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-79rgfAlU77\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48555\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-neQVTm36wB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48562\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dT6wu1E3Ly\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48564\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BHWYFYJQXk\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48563\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'The joys of a fully invested, long term relationship','The more time we spend with a client, the more we can understand and help them. That’s certainly been our experience with retirement village operator RetireAustralia, whom we’ve worked with for many years across all kinds of projects and creative challenges.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138064,141825,1,'RetireAustralia','2022-08-08 06:17:27','2022-08-08 06:17:27','cec145a0-90cb-4374-a2f4-6ca56970d703',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The joys of a fully invested, long-term relationship',NULL,NULL,'The more time we spend with a client, the more we can understand and help them. That’s certainly been our experience with retirement village operator RetireAustralia, whom we’ve worked with for many years across all kinds of projects and creative challenges.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W1GF1554qH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48554\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-94Wz43ySiO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Work and campaigns\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"After a number of years being part of on a multi-agency roster, New Word Order won a five-way pitch for the entire account. Responsibilities have included the entire portfolio of new and existing communities, brand projects, lead generation campaigns and strategic marketing direction. \\n\\nOur ongoing partnership has resulted in a truly collaborative relationship that continues to grow and evolve. We’ve produced many ground-breaking campaigns along the way, and if work in progress is any indication, the best is most definitely yet to come.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OcIU8HPpVB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48548\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jFWsNXz77v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48556\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-77KaMezwdw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Full-service offering\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy. Copywriting. Video production. Digital. Design. Photography. Research. Branding. Pretty much every tool in the New Word Order kitbag has been utilised by the RetireAustralia marketing team, such has been the breadth and depth of our working partnership. \\n\\nOur full service agency offering creates the perfect platform for strong collaboration as clients such as RetireAustralia have the confidence that integration and campaign execution from strategy can be executed more efficiently.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UAN0zeDxtY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/238021812?h=67c8a18562&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/238030725?h=4b0966592b&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new3\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/238028973?h=8ad9e0fc70&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xxGuN9crsA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Branding\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"New Word Order’s branding expertise has been integral to the partnership with RetireAustralia. We\'ve fully branded and marketed new communities in their growing portfolio, establishing the right brand values and voice for each particular project. \\n\\nThe masterbrand is also being rigorously reviewed to ensure optimal value is being achieved from RetireAustralia name. We’ve helped them grow brand awareness and stake their claim as a people business first, and property business second. In the backdrop of COVID-19, this has been a significant branding challenge that our partnership team continues to work on together.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-79rgfAlU77\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48555\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-neQVTm36wB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48562\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dT6wu1E3Ly\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48564\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BHWYFYJQXk\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"48563\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'The joys of a fully invested, long term relationship','The more time we spend with a client, the more we can understand and help them. That’s certainly been our experience with retirement village operator RetireAustralia, whom we’ve worked with for many years across all kinds of projects and creative challenges.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138066,141827,1,'Burnie Brae','2022-08-08 06:19:28','2022-08-08 06:19:28','8850260d-ceae-42e7-bd38-8f053820c1e7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand that empowers rich lives',NULL,NULL,'What’s a Burnie Brae? That’s the question we needed to answer to help the community organisation create some clarity around their brand as they undertook an exciting brand and website refresh project.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZaXkCuEhzq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140080\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked closely with Burnie Brae to understand their issues and what makes them tick. There was a concern Burnie Brae was lacking meaning, awareness and connection for much of the public they serve, alongside a recognition that the brand was simply a bit ‘tired’ and neglected. \\nAs a branding and strategy specialist, we created a process to uncover some of the truths behind the brand to set the groundwork. Our team conducted a series of research and workshops before embarking on brand direction and narrative development projects.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140065\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With the foundations set, our creative team embarked on refreshing Burnie Brae’s visual identity. The creative concept painted a picture of community connection and explored a distinctive direction for the Burnie Brae brand. We adapted the existing logo and brand colours to build a fresh and recognisable feel.\\nWe redesigned and built a new website, improving the information navigation and creating better user journeys.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140069\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140066\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result has seen Burnie Brae take ownership of a revitalised brand identity that has stronger connections to their stakeholders. The stunning new website is simple to use and takes users on a compelling journey through Burnie Brae’s community service offerings.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'A brand that empowers rich lives','What’s a Burnie Brae? That’s the question we needed to answer to help the community organisation create some clarity around their brand as they undertook an exciting brand and website refresh project.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138068,141829,1,'Department of Housing and Public Works','2022-08-08 06:19:55','2022-08-08 06:19:55','976aecfc-a50d-4690-bbca-f557175ea13a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Have your say in a better renting future',NULL,NULL,'With a range of renting reforms not yet law, we created a campaign to drive renters to a survey where they could have their say.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NnAYpM8RPK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47660\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2V7rQTXdap\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"More Queenslanders are renting than ever before.\\n\\nSo the Department of Housing and Public Works wanted to have open and honest conversations with renters, property owners and managers about what matters and what needs to change.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BQeIecGM9t\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47661\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-mjELLOS8zt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The messaging was compelling and obvious to convince the target groups there was value in them participating in the survey. To motivate the audiences, we tapped into key renting issues but kept a warm and positive sentiment.\\n\\nWe developed display ads, videos and static posts to build awareness and capture interest.\\n\\nPlus, we used long-form Facebook posts to convert target group interest and inform them on the details.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CDacbY6rtS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47662\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W1OXhvU4i4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The campaign had a total of 24 posts across two weeks, reaching 1.37 million individual Facebook users, with more than 42,000 engagements.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VN9WYyb9Pi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47663\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Department of Housing and Public Works - Have your say in a better renting future','With a range of renting reforms not yet law, we created a campaign to drive renters to a survey where they could have their say.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138070,141831,1,'Brisbane South PHN','2022-08-08 06:20:26','2022-08-08 06:20:26','29c6b238-4811-4a99-b5ac-6ee877b5b2af',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Aged Care Navigator',NULL,NULL,'We helped Brisbane South PHN to encourage older people to sign up to My Aged Care, so affordable, practical support is ready for them when they need it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oNzYQDCB0J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47749\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JuROxoLizt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Authentic community engagement\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We ran focus groups with people within the target market—in Redlands and Logan—and learned their perceptions of aged care, the challenges with navigating services and levels of participation in My Aged Care.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gGzYlN4TtN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47750\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VOx7qvXe9V\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We developed a campaign strategy and creative to encourage people in the target groups to attend an information session.\\n\\nA key element to our campaign strategy was targeting the \'influencer\' group: children who often help their elderly parents to find the right support and make decisions. Influencers spend a lot of time using digital media, particularly Facebook, so this formed a large part of the campaign collateral we developed.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3VEF0Vw8lC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47751\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VfrmLMDvpV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47752\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Brisbane South PHN','We helped Brisbane South PHN to encourage older people to sign up to My Aged Care, so affordable, practical support is ready for them when they need it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138072,141833,1,'Burnie Brae','2022-08-08 06:21:21','2022-08-08 06:21:21','c4c4967b-e6dd-4606-9cc9-57e9b80a322b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand that empowers rich lives',NULL,NULL,'What’s a Burnie Brae? That’s the question we needed to answer to help the community organisation create some clarity around their brand as they undertook an exciting brand and website refresh project.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZaXkCuEhzq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140080\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked closely with Burnie Brae to understand their issues and what makes them tick. There was a concern Burnie Brae was lacking meaning, awareness and connection for much of the public they serve, alongside a recognition that the brand was simply a bit ‘tired’ and neglected. \\nAs a branding and strategy specialist, we created a process to uncover some of the truths behind the brand to set the groundwork. Our team conducted a series of research and workshops before embarking on brand direction and narrative development projects.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140065\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With the foundations set, our creative team embarked on refreshing Burnie Brae’s visual identity. The creative concept painted a picture of community connection and explored a distinctive direction for the Burnie Brae brand. We adapted the existing logo and brand colours to build a fresh and recognisable feel.\\nWe redesigned and built a new website, improving the information navigation and creating better user journeys.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140069\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140066\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result has seen Burnie Brae take ownership of a revitalised brand identity that has stronger connections to their stakeholders. The stunning new website is simple to use and takes users on a compelling journey through Burnie Brae’s community service offerings.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'A brand that empowers rich lives','What’s a Burnie Brae? That’s the question we needed to answer to help the community organisation create some clarity around their brand as they undertook an exciting brand and website refresh project.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138074,141835,1,'Pivotus','2022-08-08 06:22:13','2022-08-08 06:22:13','2251c08f-2f1a-4ef1-b859-357c1b453490',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a pivot?',NULL,NULL,'After rapid growth in recent years, My Media Trading Desk (MMTD) hit the pause button and engaged NWO to ask many of their valued clients: What do you really think of MMTD? Their clients’ generous answers both delighted MMTD and offered a mandate to change and grow. Pivotus is their response.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NhnaCQNxpw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47990\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-B78dz1rmC2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"But what do your clients really think?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"NWO began the rebranding process by surveying MMTD’s clients. Commonly held by all of their clients was great regard for their honesty, their industry knowledge, and their unbreakable commitment to exceptional customer service.\\n\\nClients also said they wanted to get deeper insights, beyond the fast and accurate data and delivery MMTD were already known for.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AlIqZXoFkr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47763\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ulVnymquUW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Why Pivotus?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"MMTD needed a new brand to drive their reputation for quality data, strategic advice and superior customer experiences.\\n\\nThe brand needed to convey a clear promise: we’ll rapidly measure and pivot to maximise your media spend returns.\\n\\nTo pivot is to turn on a point—and there’s no better metaphor for how they pivot digital media to get the best possible results for their clients.\\n\\nPivotus is also a call to action: Pivot your brand with their team—because they are nimble, fast and focused in a rapidly changing market.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MJZcxjyvrL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47761\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-w74pYr8Ehf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Founder and CEO Michael Petersen said the new brand better reflects market expectations of their firm and his team’s commitment to a superior customer experience.\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VLVB6hcgiC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47992\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GXT7RzNKoY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47764\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Pivotus - What\'s a pivot?','After rapid growth in recent years, My Media Trading Desk (MMTD) hit the pause button and engaged NWO to ask many of their valued clients: What do you really think of MMTD? Their clients’ generous answers both delighted MMTD and offered a mandate to change and grow. Pivotus is their response.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138076,141837,1,'Burnie Brae','2022-08-08 06:22:47','2022-08-08 06:22:47','d972e2d0-bb4f-46f6-a7b5-efd18086eca0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand that empowers rich lives',NULL,NULL,'What’s a Burnie Brae? That’s the question we needed to answer to help the community organisation create some clarity around their brand as they undertook an exciting brand and website refresh project.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZaXkCuEhzq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140080\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked closely with Burnie Brae to understand their issues and what makes them tick. There was a concern Burnie Brae was lacking meaning, awareness and connection for much of the public they serve, alongside a recognition that the brand was simply a bit ‘tired’ and neglected. \\nAs a branding and strategy specialist, we created a process to uncover some of the truths behind the brand to set the groundwork. Our team conducted a series of research and workshops before embarking on brand direction and narrative development projects.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140065\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With the foundations set, our creative team embarked on refreshing Burnie Brae’s visual identity. The creative concept painted a picture of community connection and explored a distinctive direction for the Burnie Brae brand. We adapted the existing logo and brand colours to build a fresh and recognisable feel.\\nWe redesigned and built a new website, improving the information navigation and creating better user journeys.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140069\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140066\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result has seen Burnie Brae take ownership of a revitalised brand identity that has stronger connections to their stakeholders. The stunning new website is simple to use and takes users on a compelling journey through Burnie Brae’s community service offerings.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'A brand that empowers rich lives','What’s a Burnie Brae? That’s the question we needed to answer to help the community organisation create some clarity around their brand as they undertook an exciting brand and website refresh project.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138078,141839,1,'Endeavour Foundation','2022-08-08 06:23:47','2022-08-08 06:23:47','df5ed330-5017-42ce-9aea-79ec203890a5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Rebranding an icon for a new era',NULL,NULL,'The Endeavour Foundation came to us with a new mandate and a new logo that needed the support of an incredible brand story. We stepped in to capture the essence of authentic customer service: to tell Endeavour’s compelling brand story about the people they serve, and the people who serve.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-i7VSDgqc7V\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45336\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XE9ZIQrYn6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Endeavour delivers essential, personalised and compassionate services to people with intellectual disabilities. When the NDIS was introduced, it was the perfect opportunity for Endeavour to show the world what their services mean to the community it serves.\\n\\nThey asked us to take their new logo and develop a complementary campaign and suite of branding tools to support it. Our goal was to capture the heart of Endeavour Foundation through storytelling and unify the foundation’s people and customers under one powerful vision.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5lKlpPU30x\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45338\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-jeFwrbtZMK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45339\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JKRNdGpqnc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We based our campaign strategy on one question: what would make my life better? The question explored Endeavour’s objective to create a brand that could represent their customers and generate greater possibilities for their care. Our creative solution was to make Endeavour customers the heroes.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uYLiG0E4oM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/265285881\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MQfzkp05OB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Endeavour’s new brand video is an expression of their unifying purpose to truly serve and make a meaningful difference in the lives of their customers.\\n\\nThe campaign speaks for and to the extended stakeholder community about the vision, quality and outcomes of Endeavour’s services. It included:\\n<ul>\\n  <li>brand story</li>\\n  <li>full visual brand development from a supplied logo</li>\\n  <li>hero photography</li>\\n  <li>brand book</li>\\n  <li>brand video</li>\\n  <li>employer brand and collateral</li>\\n  <li>launch campaign.</li>\\n</ul>\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QPJ6J6kHcL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45340\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qBnvWlcG0T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Many powerful stories came out of this job, but the most incredible was watching Endeavour customers embrace the opportunity to model for our video and photography crew. Endeavour reported back to us the meaningful moments when their customers saw their photos for the first time.\\n\\nSince the brand and campaign launch in June 2018, Endeavour has boosted their number of leads for their main service areas: accommodation, day services and work placements. With a long-term goal in mind, these results are significantly greater than anticipated, and only a few months since the campaign launch.\\n\\nIn addition, Endeavour reported to us unexpected community engagement at their events—people who have no connection to intellectual disability and have not previously been involved with the foundation. We look forward to following this story and discovering the full impact of our work.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Endeavour Foundation','The Endeavour Foundation came to us with a new mandate and a new logo that needed the support of an incredible brand story.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138080,141841,1,'West Moreton Anglican College','2022-08-08 06:24:22','2022-08-08 06:24:22','9415c9a0-d1b6-40c4-af7f-a351bb6e322f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The school for (real) life campaign',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kSAkN1lDaq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Like schools everywhere, West Moreton Anglican College needed to change its plans to bring parents onto campus to experience the school because of the coronavirus.\\n\\nThis meant the annual open day was cancelled. But a few months later when restrictions eased, the school had a chance to bring parents back.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fxOewiuxW6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45330\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-c4rLGz6SQd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We developed a 16-week plan that timed out the lead up to the modified open day, and follow-up of leads afterwards. It outlined a WestMAC-specific brand campaign that celebrated the WestMAC way and positioned the school as a unique and desirable offering compared to other schools in the catchment area.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GVAyDnsmRc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45329\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o0LzwcEURr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"At the end of the day, parents just want their kids to be happy, healthy and well.\\n\\nWestMAC is a wonderland for kids complete with an agriculture farm, animals and a garden for digging—because that\'s just what kids like doing. It\'s the school for real life.\\n\\nThis campaign included gorgeous hero photography, strategic messaging and a series of videos where students talk about their WestMAC experience.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-66MSHWAoOc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/470822168?h=a0ce3a6b80&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/470822520?h=90034f124f&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KSqaU5wR9Y\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The campaign resonated with parents in the catchment, and filled the tour. We continued to run the campaign for the rest of the year, encouraging prospective parents to attend a personal tour.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ip4P0zUBCI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45333\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'West Moreton Anglican College','The school for (real) life campaign',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138082,141843,1,'West Moreton Anglican College','2022-08-08 06:26:22','2022-08-08 06:26:22','d7aa9edd-9c26-4096-966f-09c33a3a3943',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The school for (real) life campaign',NULL,NULL,'Like schools everywhere, West Moreton Anglican College needed to change its plans to bring parents onto campus to experience the school because of the coronavirus.\n\nThis meant the annual open day was cancelled. But a few months later when restrictions eased, the school had a chance to bring parents back.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kSAkN1lDaq\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Like schools everywhere, West Moreton Anglican College needed to change its plans to bring parents onto campus to experience the school because of the coronavirus.\\n\\nThis meant the annual open day was cancelled. But a few months later when restrictions eased, the school had a chance to bring parents back.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fxOewiuxW6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45330\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-c4rLGz6SQd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We developed a 16-week plan that timed out the lead up to the modified open day, and follow-up of leads afterwards. It outlined a WestMAC-specific brand campaign that celebrated the WestMAC way and positioned the school as a unique and desirable offering compared to other schools in the catchment area.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GVAyDnsmRc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45329\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o0LzwcEURr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"At the end of the day, parents just want their kids to be happy, healthy and well.\\n\\nWestMAC is a wonderland for kids complete with an agriculture farm, animals and a garden for digging—because that\'s just what kids like doing. It\'s the school for real life.\\n\\nThis campaign included gorgeous hero photography, strategic messaging and a series of videos where students talk about their WestMAC experience.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-66MSHWAoOc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/470822168?h=a0ce3a6b80&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/470822520?h=90034f124f&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KSqaU5wR9Y\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The campaign resonated with parents in the catchment, and filled the tour. We continued to run the campaign for the rest of the year, encouraging prospective parents to attend a personal tour.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ip4P0zUBCI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45333\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'West Moreton Anglican College','The school for (real) life campaign',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138084,141845,1,'Heart HQ','2022-08-08 06:26:59','2022-08-08 06:26:59','d23d2527-6a18-4c26-bfd3-ec6b6a1a9f41',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'World-class medical with heart',NULL,NULL,'Big ambitions need a brand that accurately reflects their vision and mission, and that’s exactly what we sought to deliver for this client. With Heart HQ, and with the enormous amount of collateral that supports it, we’ve well and truly delivered this.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-P3bQXxcsfs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44878\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uicOuPt9of\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Sunshine Coast Heart Specialists was growing and changing. \\n\\nIn six years, the cardiology practice had grown to nearly 50 staff with rooms throughout the coast. Their cardiologists represented all of the possible sub-specialties within their profession. Within weeks, they would move to new purpose-built premises at Sippy Downs. They were about to open their own coronary CT clinic to the public and a heart murmur clinic to support GPs—both nation-leading initiatives.\\n\\nThe directors realised their geography-specific name would limit their ability to keep growing, and so renaming and rebranding was a strong need.\\n\\nTheir growth had also occurred at such a rate that there was strategic work needed to understand their market share and to form a marketing strategy that would offer them opportunities for segmentation. Growth is reliant on satisfied referring GPs and specialists, and so attention could never be removed from this area.\\n\\nFinally, such growth was also outstripping their capacity to fill the need. Cardiology is a highly specialised field within medicine, and to grow sustainably, they needed to attract more associates.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Lgp01pReVY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44873\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aTg3yWEGh3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Objective\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The practice needed a new name and brand assets for the business to accurately convey the mission and vision of the business, and to grow the business’s referrer and patient networks.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gG5PvaSbvX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44864\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oXH0AQY2PC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our brand strategy drew on customer and referrer interviews, competitor insights and employee workshops, which also helped to define the brand values of the business. \\n\\nIt was clear the practice and the individual directors were held in high esteem by their medical colleagues. They introduced surgical procedures to the Sunshine Coast that were, until then, only practised by a few in major cities. They were introducing clinics and services that had not been seen in regional areas in Australia. This gave us the confidence to be able to propose a tagline that truthfully boasted, ‘world-class cardiac care’.\\n\\nThe second part of the tagline reads: ‘…on the Sunshine Coast’. To compensate for the move away from the regionalisation in their original brand name—Sunshine Coast Heart Specialists—we added it to the tagline. The reason for this is that patients along the coast appreciated the practice was the only place where they could receive the full spectrum of care without having to travel to Brisbane.\\n\\nFinally, an important branding insight from our research was that patients were on a health journey—sometimes quite a precarious one—and could be experiencing anxiety. Patients told us they appreciated the kindness each doctor showed to them in their time of need. Simply promoting expertise could come across as cold and would not fairly represent the doctors’ deep commitment to quality care. So the Heart HQ brand connects with patients on a personal level and makes them feel reassured that they matter.\\n\\nIt’s this mix of strategy and heart that makes Heart HQ a brand that will stand tall among all the others.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ISdJyIN6AW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44874\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDNF080GkR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A name, tagline, brand visual identity, website, signage and countless assets that match up with Heart HQ’s brand promise of delivering world-class cardiac care on the Sunshine Coast.\\n\\nThe quality of the brand assets significantly differentiates Heart HQ from all other competitor practices.\\n\\nCreatively, the brand is modern, refreshing and arguably not what you would expect from an organisation in the medical field – but at the same time, the language is warm, supportive and with just the right amount of authority.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Np5NPasoP9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"##### Suzanne and her team came highly recommended. It was a great journey working with them to develop our new brand and we were very impressed with their ideas, enthusiasm and innovation. We have a new brand, a new identity and the confidence now to deliver on our growth plans. \\n\\n**Dr Peter Larsen**\\n<br>Managing Director – Heart HQ\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3VvPbVRO0Q\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45205\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AUTeHLiAy1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"##### \\\"NWO is part of our success journey.\\\"\\n\\n**Dr Peter Larsen**\\n<br>Managing Director – Heart HQ\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'Heart HQ','Big ambitions need a brand that accurately reflects their vision and mission, and that’s exactly what we sought to deliver for this client.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138085,141846,1,'Coomera Anglican College','2022-08-08 06:27:49','2022-08-08 06:27:49','6a318876-f643-4afb-b453-3df72fe4d69b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Anything is possible campaign',NULL,NULL,'This campaign is bridging the gap between Coomera Anglican College\'s storied past and bold future. It\'s a powerful positioning piece that\'s standing the college out from the crowd and showcasing it as the school of choice on the northern Gold Coast.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-B24Vguyo08\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30448\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-I4OkseByw6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Storied past, bold future\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Coomera Anglican College is heavily storied. It’s done a lot of work to capture its history and moments. As result, there is a lot of heritage and tradition for a relatively young school (just 25 years).\\n\\nThe college has set a strong future of innovation and entrepreneurship. It has appointed a deputy principal whose whole focus is innovation. It also has an exceptionally future-focused business manager who is sports-obsessed with big dreams.\\n\\nOur work is helping the college bridge the gap from the past to an exciting future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3S8xZRT3yd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30447\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1dcAEtVD40\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Following focus groups, in-depth interviews, a competitor analysis and a brand refresh in 2020, we embarked on developing a new public-facing campaign to help the college continue to position itself as the private school of choice for the rapidly growing northern Gold Coast region.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7mko9XHUCj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30449\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-27uMRCFOVx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"In order to stand out in the crowded private school space, we looked outside of schools for inspiration—drawing from global sports and technology brands.\\n\\nThis campaign steers right away from traditional school advertising: think students standing and smiling in their school uniforms, older and younger students holding hands and walking through manicured school grounds, girls in safety glasses huddled over a beaker and Bunsen burner.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EkVYlvmrxM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30444\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ek8exDfZlT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The result is a powerful cinematic masterpiece: dramatic, inspirational and compelling. The script was drawn from lyrics of the college’s traditional song. Paired with the inspiring footage, the video effectively acknowledges the past while painting a vivid picture of the future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IGcqD2p42y\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30445\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CUjY0m7ysa\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“It was a pleasure working with New Word Order to develop the new creative for our College. They took the time to get to know what makes our college unique, and helped put that into tangible storytelling.”\",\"plainText\":\"— Aimee Barlett, Marketing and Communications Manager at Coomera Anglican College\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Ja5zJfaN0T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30446\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Coomera Anglican College','This campaign is bridging the gap between Coomera Anglican College\'s storied past and bold future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138087,141848,1,'Rural Aid','2022-08-08 06:28:55','2022-08-08 06:28:55','849fb765-f7fe-40fa-a4b8-ff830b6d41cc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Through drought, flood and fire, Rural Aid is there.',NULL,NULL,'Rural Aid is there for local farmers doing it tough, providing water, fodder and financial and counselling help. \n\nProviding emergency support is the priority, but it was time for Rural Aid to shift its focus to building resilience and sustainability in rural communities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eLK3JgwUaW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47719\",\"22211\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QCEdWG6OxJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"The nature of the campaign, featuring real farmers telling their story, was insightful for many staff who might not get the chance to speak with or hear from farmers very often.\\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-a1ZSpKzNhg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575770982\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4IaqNatl2X\",\"enabled\":false,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The campaign\",\"plainText\":\"Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F9lQRkpJbI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The campaign\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-h8vXLy3MfI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“The generous donations received from our community of supporters as a result from the campaign has had a very positive impact for the beneficiaries of our fundraising—Aussie farmers.”\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V9u5ejPQKv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575783623\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p6CVgVhKEp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Campaign messaging was two-tiered: an EOFY donations appeal and a thank you. Both worked for existing donors, people in existing databases and prospects.d\\n\\nTo ensure the greatest value for money for our client, we pooled the majority of our ad spend into digital, working closely with our media partner, Pivotus. We A/B tested the messaging and captured the audience with retargeting strategies.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8P2070zTQ8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"NWO were great to work with and really took an interest in our organisation and what we’re trying to achieve, and this showed through in the quality and the emotion captured in the final production. \\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rhaSMwFESv\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Creative\",\"plainText\":\"We proposed a campaign based on interviews with Australian farmers who had experiences with Rural Aid.\\n\\nIt’s an honest campaign of full of real people, stories and emotions.\\n\\nWith COVID-19 still hanging around, our approach ensured we avoided potential interruptions, travel restrictions and cancellation costs for our client.\\n\\nThe videos are compilations of interviews with various farmers across the spectrum of industries that are framed by a ‘zoom screen’ visual device, which adds layers of authenticity to the personal stories. \\n\\nSimilarly the display banners and static Facebook posts used the zoom imagery and visual devices—all pointing people to the EOFY Rural Aid landing page where viewers could view the full videos and choose to donate.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vJUro6swC6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We proposed a campaign based on interviews with Australian farmers who had experiences with Rural Aid.\\n\\nIt’s an honest campaign of full of real people, stories and emotions.\\n\\nWith COVID-19 still hanging around, our approach ensured we avoided potential interruptions, travel restrictions and cancellation costs for our client.\\n\\nThe videos are compilations of interviews with various farmers across the spectrum of industries that are framed by a ‘zoom screen’ visual device, which adds layers of authenticity to the personal stories. \\n\\nSimilarly the display banners and static Facebook posts used the zoom imagery and visual devices—all pointing people to the EOFY Rural Aid landing page where viewers could view the full videos and choose to donate.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3MV0vWsZV5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"I am very proud to have been a part of this campaign. Even though I was part of the storytelling behind the scenes, I was moved at every stage of the process by how tough these Australians have it on a daily basis, and how candid they were with us about their stories.\",\"plainText\":\"**— Kat Scott, producer**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NURtiGsn81\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":[],\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'Rural Aid','Through drought, flood and fire, Rural Aid is there.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138089,141850,1,'Rural Aid','2022-08-08 06:29:38','2022-08-08 06:29:38','72cd5d05-de26-4e06-96c0-6939ae4c7a58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Through drought, flood and fire, Rural Aid is there.',NULL,NULL,'Rural Aid is there for local farmers doing it tough, providing water, fodder and financial and counselling help. \n\nProviding emergency support is the priority, but it was time for Rural Aid to shift its focus to building resilience and sustainability in rural communities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eLK3JgwUaW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47719\",\"22211\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QCEdWG6OxJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"The nature of the campaign, featuring real farmers telling their story, was insightful for many staff who might not get the chance to speak with or hear from farmers very often.\\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-a1ZSpKzNhg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575770982\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F9lQRkpJbI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The campaign\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-h8vXLy3MfI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“The generous donations received from our community of supporters as a result from the campaign has had a very positive impact for the beneficiaries of our fundraising—Aussie farmers.”\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V9u5ejPQKv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575783623\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p6CVgVhKEp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Campaign messaging was two-tiered: an EOFY donations appeal and a thank you. Both worked for existing donors, people in existing databases and prospects.d\\n\\nTo ensure the greatest value for money for our client, we pooled the majority of our ad spend into digital, working closely with our media partner, Pivotus. We A/B tested the messaging and captured the audience with retargeting strategies.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8P2070zTQ8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"NWO were great to work with and really took an interest in our organisation and what we’re trying to achieve, and this showed through in the quality and the emotion captured in the final production. \\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rhaSMwFESv\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Creative\",\"plainText\":\"We proposed a campaign based on interviews with Australian farmers who had experiences with Rural Aid.\\n\\nIt’s an honest campaign of full of real people, stories and emotions.\\n\\nWith COVID-19 still hanging around, our approach ensured we avoided potential interruptions, travel restrictions and cancellation costs for our client.\\n\\nThe videos are compilations of interviews with various farmers across the spectrum of industries that are framed by a ‘zoom screen’ visual device, which adds layers of authenticity to the personal stories. \\n\\nSimilarly the display banners and static Facebook posts used the zoom imagery and visual devices—all pointing people to the EOFY Rural Aid landing page where viewers could view the full videos and choose to donate.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vJUro6swC6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We proposed a campaign based on interviews with Australian farmers who had experiences with Rural Aid.\\n\\nIt’s an honest campaign of full of real people, stories and emotions.\\n\\nWith COVID-19 still hanging around, our approach ensured we avoided potential interruptions, travel restrictions and cancellation costs for our client.\\n\\nThe videos are compilations of interviews with various farmers across the spectrum of industries that are framed by a ‘zoom screen’ visual device, which adds layers of authenticity to the personal stories. \\n\\nSimilarly the display banners and static Facebook posts used the zoom imagery and visual devices—all pointing people to the EOFY Rural Aid landing page where viewers could view the full videos and choose to donate.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3MV0vWsZV5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"I am very proud to have been a part of this campaign. Even though I was part of the storytelling behind the scenes, I was moved at every stage of the process by how tough these Australians have it on a daily basis, and how candid they were with us about their stories.\",\"plainText\":\"**— Kat Scott, producer**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NURtiGsn81\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":[],\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'Rural Aid','Through drought, flood and fire, Rural Aid is there.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138091,141852,1,'Rural Aid','2022-08-08 06:30:06','2022-08-08 06:30:06','74e7dbdd-31bb-4693-a0af-9b6e61c39a9e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Through drought, flood and fire, Rural Aid is there.',NULL,NULL,'Rural Aid is there for local farmers doing it tough, providing water, fodder and financial and counselling help. \n\nProviding emergency support is the priority, but it was time for Rural Aid to shift its focus to building resilience and sustainability in rural communities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eLK3JgwUaW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47719\",\"22211\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QCEdWG6OxJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"The nature of the campaign, featuring real farmers telling their story, was insightful for many staff who might not get the chance to speak with or hear from farmers very often.\\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-a1ZSpKzNhg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575770982\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F9lQRkpJbI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The campaign\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-h8vXLy3MfI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“The generous donations received from our community of supporters as a result from the campaign has had a very positive impact for the beneficiaries of our fundraising—Aussie farmers.”\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-V9u5ejPQKv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/575783623\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p6CVgVhKEp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Campaign messaging was two-tiered: an EOFY donations appeal and a thank you. Both worked for existing donors, people in existing databases and prospects.d\\n\\nTo ensure the greatest value for money for our client, we pooled the majority of our ad spend into digital, working closely with our media partner, Pivotus. We A/B tested the messaging and captured the audience with retargeting strategies.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8P2070zTQ8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"NWO were great to work with and really took an interest in our organisation and what we’re trying to achieve, and this showed through in the quality and the emotion captured in the final production. \\\"\",\"plainText\":\"**– Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rhaSMwFESv\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Creative\",\"plainText\":\"We proposed a campaign based on interviews with Australian farmers who had experiences with Rural Aid.\\n\\nIt’s an honest campaign of full of real people, stories and emotions.\\n\\nWith COVID-19 still hanging around, our approach ensured we avoided potential interruptions, travel restrictions and cancellation costs for our client.\\n\\nThe videos are compilations of interviews with various farmers across the spectrum of industries that are framed by a ‘zoom screen’ visual device, which adds layers of authenticity to the personal stories. \\n\\nSimilarly the display banners and static Facebook posts used the zoom imagery and visual devices—all pointing people to the EOFY Rural Aid landing page where viewers could view the full videos and choose to donate.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vJUro6swC6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We proposed a campaign based on interviews with Australian farmers who had experiences with Rural Aid.\\n\\nIt’s an honest campaign of full of real people, stories and emotions.\\n\\nWith COVID-19 still hanging around, our approach ensured we avoided potential interruptions, travel restrictions and cancellation costs for our client.\\n\\nThe videos are compilations of interviews with various farmers across the spectrum of industries that are framed by a ‘zoom screen’ visual device, which adds layers of authenticity to the personal stories. \\n\\nSimilarly the display banners and static Facebook posts used the zoom imagery and visual devices—all pointing people to the EOFY Rural Aid landing page where viewers could view the full videos and choose to donate.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3MV0vWsZV5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"\\\"I am very proud to have been a part of this campaign. Even though I was part of the storytelling behind the scenes, I was moved at every stage of the process by how tough these Australians have it on a daily basis, and how candid they were with us about their stories.\\\"\",\"plainText\":\"**— Kat Scott, producer**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NURtiGsn81\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":[],\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'Rural Aid','Through drought, flood and fire, Rural Aid is there.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138092,141853,1,'Safe to see your GP','2022-08-08 06:30:58','2022-08-08 06:30:58','f5604cf3-b645-42b9-946e-ab3cc628b449',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'There\'s no reason to put your health on hold',NULL,NULL,'With life beginning to return to normal in Queensland after the height of COVID-19, the Darling Downs and West Moreton  PHN, and Brisbane North PHN wanted to encourage their communities to go back to a normal routine—especially for healthcare.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xsaPgG0g7g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22160\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-emf7fKO95v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Data showed community members were staying at home and not visiting their GP and other health services for regular checkups. \\n\\nTo avoid more serious health and wellbeing problems down the track, the community needed to know it was safe to go back to regular appointments.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bd28dXEaNq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"22159\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4a7YEtYm2U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Solution\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We created a fresh campaign called ‘Safe to see your GP’, using friendly animated characters to let people know there is no reason to put their health on hold. \\n\\nThis campaign we developed the campaign strategy, creative, custom illustration, animated video for social media and TV, digital ads, radio ads and landing page.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Lx1YJWY50w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"17744\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SJWVzlIztu\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We originally developed this campaign for Darling Downs and West Moreton PHN, and Brisbane North PHN requested to run it as well. It\'s a great example of our Primary Health Networks working together to improve the health of all Australians.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Safe to See your GP','There\'s no reason to put your health on hold',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138094,141855,1,'Tritium','2022-08-08 06:35:10','2022-08-08 06:35:10','d03fbd0c-3087-4bc1-816d-bf61d95defe9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league. Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GLSN3YDBFD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"73939\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LrG99HVOYN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"61847\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"BRAND\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tritium is now a global brand—and our work took them to the world stage.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked with Tritium a few years ago to define their brand narrative, design their brand and create logo, visual identity and a range of assets.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZeQWeTuQlo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"73941\",\"73940\",\"73937\",\"73936\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-02qw9cOzxi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141804\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"BRIEF\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked with Tritium when it was in the midst of hypergrowth and collaborated with their founder and leaders across time zones and continents, as well as their rapidly growing marketing and sales teams, to rebrand the company and its products.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"At the time, Tritium was still wearing the badge designed by their founder years earlier and needed to dress for world domination, which they most certainly now are achieving. The brand needed to work in all contexts—on rapid chargers, in signage, in extrusion as well as in print, and it needed to be truly global in its appeal. The brand also needed to consider products that were still emerging and not yet defined.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eEjb9cnAXp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141806\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"RATIONALE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We deeply embedded story in the Tritium brand we developed. The logo is three-sided (for ‘tri’). The blues represent clean power, and each of the three elements of the brand represent battery indicators, from empty to full. Meanwhile, the brand is distinctive yet subtle enough to sit successfully alongside co-branded or white-labelled Tritium products.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8PWapwyQK2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141802\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"OUTCOME\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We successfully positioned Tritium for global expansion. We developed and defined a global Masterbrand with a defined brand narrative and transformational, authentic reflection of their vision. The brand goes from strength to strength and is easily our furthest-reaching and highest impact visual identity, recently listing on the NASDAQ and with none other than POTUS.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Tritium','Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138096,141857,1,'Medical Mums','2022-08-08 06:38:54','2022-08-08 06:38:54','7e782440-5ea5-40bd-aa9e-4d8409b08d1e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A long-term approach to behaviour change',NULL,NULL,'For the past six years we have been running behaviour change campaigns to encourage families to vaccinate their children. And in that time, we\'ve seen the positive impact.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ydM19JpsMi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45317\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pqYRaab2Y6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45318\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NUepHwOfhy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"In 2015, market research and immunisation rates across Brisbane North PHN\'s catchment were showing the anti-vax movement was taking hold.\\n\\nWhile parents from lower socio-economic backgrounds were responding to the Australian Government’s ‘no jab, no pay’ rules, those not using daycare—including many from among the wealthier suburbs—were holding their ground.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5st3FTYzr4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45319\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QwUWkeN1w7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We determined from research that parents would respond to their GP’s opinion, and developed a behaviour change campaign to encourage conversations between parents and medical professionals around immunisation and overcome objections to it.\\n\\nWe harnessed the GP/medical voice and added extra credibility by finding medical professionals who were also parents.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MQKB9uw8mS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45323\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PVmUcFRs5l\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Under the heading of Medical Mums, we found two GPs and one Indigenous health nurse to become the faces and voice of the campaign. Each discussed hot topics as well as the benefits of immunisation, drawing on their own beliefs and practices as parents as well as their medical training.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Lt1sEFXPGo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/173565144?h=a059ec04b7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/173565142?h=1a735c3207&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-elDM8mfUVq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"2016\",\"text\":\"Medical Mums was launched during Immunisation Week.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"2017\",\"text\":\"The creative was still fresh and effective for the target group, and we ran the campaign again.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"2018\",\"text\":\"We added Stuart, our honorary Medical Dad.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"2019\",\"text\":\"It was time to mix up the messaging and creative, so we developed a vaccination myth-busting video featuring illustration—a move away from the previous live-action ads.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"2020\",\"text\":\"With COVID-19, there was new vaccination messaging clutter to cut through. We encouraged our market to keep up to date with their routine vaccinations.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"2021\",\"text\":\"Funding was initially approved for five years. But our campaign has been so successful the PHN has been provided with funding for an additional year. We will launch a new iteration in the coming months.\"}}}}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-za95KkkRhY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45322\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9XsuejXAac\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We launched the campaign in Immunisation Week in 2016, and have revised it for relaunch every year since. Results showed immunisation levels increased after the campaign each year, and our has client received extensive positive feedback—including from the Queensland Minister for Health.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Medical Mums','For the past six years we have been running behaviour change campaigns to encourage families to vaccinate their children. And in that time, we\'ve seen the positive impact.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138098,141859,1,'Medical Mums','2022-08-08 06:39:23','2022-08-08 06:39:23','b47752fc-608d-4992-a28e-5350199a26b7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A long-term approach to behaviour change',NULL,NULL,'For the past six years we have been running behaviour change campaigns to encourage families to vaccinate their children. And in that time, we\'ve seen the positive impact.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ydM19JpsMi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45317\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pqYRaab2Y6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45318\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NUepHwOfhy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"In 2015, market research and immunisation rates across Brisbane North PHN\'s catchment were showing the anti-vax movement was taking hold.\\n\\nWhile parents from lower socio-economic backgrounds were responding to the Australian Government’s ‘no jab, no pay’ rules, those not using daycare—including many from among the wealthier suburbs—were holding their ground.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5st3FTYzr4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45319\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QwUWkeN1w7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We determined from research that parents would respond to their GP’s opinion, and developed a behaviour change campaign to encourage conversations between parents and medical professionals around immunisation and overcome objections to it.\\n\\nWe harnessed the GP/medical voice and added extra credibility by finding medical professionals who were also parents.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MQKB9uw8mS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45323\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PVmUcFRs5l\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Under the heading of Medical Mums, we found two GPs and one Indigenous health nurse to become the faces and voice of the campaign. Each discussed hot topics as well as the benefits of immunisation, drawing on their own beliefs and practices as parents as well as their medical training.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Lt1sEFXPGo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/173565144?h=a059ec04b7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/173565142?h=1a735c3207&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-elDM8mfUVq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"2016\",\"text\":\"Medical Mums was launched during Immunisation Week.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"2017\",\"text\":\"The creative was still fresh and effective for the target group, and we ran the campaign again.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"2018\",\"text\":\"We added Stuart, our honorary Medical Dad.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"2019\",\"text\":\"It was time to mix up the messaging and creative, so we developed a vaccination myth-busting video featuring illustration—a move away from the previous live-action ads.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"2020\",\"text\":\"With COVID-19, there was new vaccination messaging clutter to cut through. We encouraged our market to keep up to date with their routine vaccinations.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"2021\",\"text\":\"Funding was initially approved for five years. But our campaign has been so successful the PHN has been provided with funding for an additional year. We will launch a new iteration in the coming months.\"}}}}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-za95KkkRhY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45322\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9XsuejXAac\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We launched the campaign in Immunisation Week in 2016, and have revised it for relaunch every year since. Results showed immunisation levels increased after the campaign each year, and our has client received extensive positive feedback—including from the Queensland Minister for Health.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Medical Mums','For the past six years we have been running behaviour change campaigns to encourage families to vaccinate their children. And in that time, we\'ve seen the positive impact.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138100,141861,1,'Reasons to stay','2022-08-08 06:40:24','2022-08-08 06:40:24','5ccb1b38-118d-49e3-9f3e-78361797e209',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Conversations save lives',NULL,NULL,'Our agency purpose—to make a meaningful difference to people’s lives—rings no truer than this campaign. Conversations can be lifesaving. The Reasons to Stay campaign drives this message to remind people to reach out and find their reasons to keep living.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Wuk6XROt8C\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19060\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vjXnYnypEU\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Suicide takes around eight Australians from us every day and it needs to stop.\\n\\nBrisbane North PHN commissioned us to join the fight against suicide and produce a powerful digital campaign, speaking to people at risk of suicide and to their friends and family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xEmYfpUPYn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"19064\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"19066\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new3\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"19067\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new4\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"19068\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447109\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hlukn3QtpP\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The concept and campaign name of Reasons to Stay emerged from our conversations with people who have lived experience of suicide—both survivors and families of those who had passed away.\\n\\nThis prevention campaign targeted two specific groups: those at risk of suicide themselves and the friends and family around those at risk.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CYFHnSDjBC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19062\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GgXhbYC3Wx\",\"enabled\":true,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Open hearts and minds from beginning to end\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Presenting our creative concepts to these groups enabled us to test and hone visual directions and key messages.\\n\\nWe further refined the work and key members of the focus groups reviewed the results and gave their blessing to the final approach that appears in the campaign videos, digital ads and website.\\n\\nWe also worked with other organisations working across niche groups within our target market to ensure we were inclusive and respectful of their individual efforts in this space.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-trgV3eAZYY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"19081\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UvCFl0uQ9c\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our team was grateful to be involved in this important project.\\n\\nThe PHN’s intention—and ours—is to see this campaign spread far beyond the northern boundaries of Brisbane and make a difference to people’s lives everywhere.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lo0qiknCPj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19061\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'Reasons to Stay','Our agency purpose—to make a meaningful difference to people’s lives—rings no truer than this campaign.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138102,141863,1,'Reasons to stay','2022-08-08 06:41:22','2022-08-08 06:41:22','35620165-144c-49bd-8aa3-57605cb47d5b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Conversations save lives',NULL,NULL,'Our agency purpose—to make a meaningful difference to people’s lives—rings no truer than this campaign. Conversations can be lifesaving. The Reasons to Stay campaign drives this message to remind people to reach out and find their reasons to keep living.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Wuk6XROt8C\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19060\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vjXnYnypEU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Suicide takes around eight Australians from us every day and it needs to stop.\\n\\nBrisbane North PHN commissioned us to join the fight against suicide and produce a powerful digital campaign, speaking to people at risk of suicide and to their friends and family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xEmYfpUPYn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"19064\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"19066\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new3\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"19067\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}},\"new4\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"19068\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447109\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hlukn3QtpP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The concept and campaign name of Reasons to Stay emerged from our conversations with people who have lived experience of suicide—both survivors and families of those who had passed away.\\n\\nThis prevention campaign targeted two specific groups: those at risk of suicide themselves and the friends and family around those at risk.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CYFHnSDjBC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19062\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GgXhbYC3Wx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Open hearts and minds from beginning to end\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Presenting our creative concepts to these groups enabled us to test and hone visual directions and key messages.\\n\\nWe further refined the work and key members of the focus groups reviewed the results and gave their blessing to the final approach that appears in the campaign videos, digital ads and website.\\n\\nWe also worked with other organisations working across niche groups within our target market to ensure we were inclusive and respectful of their individual efforts in this space.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-trgV3eAZYY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"19081\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UvCFl0uQ9c\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our team was grateful to be involved in this important project.\\n\\nThe PHN’s intention—and ours—is to see this campaign spread far beyond the northern boundaries of Brisbane and make a difference to people’s lives everywhere.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lo0qiknCPj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"19061\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'Reasons to Stay','Our agency purpose—to make a meaningful difference to people’s lives—rings no truer than this campaign.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138104,141865,1,'Community Solutions','2022-08-08 06:42:15','2022-08-08 06:42:15','5f03de49-d7eb-456f-8d09-a3ffd9e37b2b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Connecting the community with solutions',NULL,NULL,'As a community organisation with services in employment, training, apprenticeships, NDIS and more, Community Solutions were struggling to get their brand to cut through. More specifically, branding consistency was an issue. Through a series of workshops, stakeholder engagement and strategy alignment research, we identified some building blocks for success to form the foundations of the campaign development.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-973WjkOkqV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/708008632?h=ea7482f91d&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TE5SrR8ZJY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140086\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CHALLENGE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The brief was relatively simple. Get us known for who we are and what we do. And quickly. With that, we applied our combination of strategic smarts and creative firepower to produce a brand awareness campaign for Community Solutions that delivered on all counts.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7z7VbqMAm5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The critical challenge of addressing the brand awareness and consistency issues was creatively solved by going back to basics—the brand name. We added a series of two-word descriptors to the Community Solutions name and logo. Through graphic design, we made them readable both horizontally and vertically to create multiple meanings and build new stories. \\nThis approach kept the branding front and centre, delivering on the awareness measure while shining a light on the services and outcomes that Community Solutions offers to their stakeholders.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140087\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hUKFvG7e7T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The campaign features a variety of assets, including digital, socials, outdoor, online video and radio. Everything was designed in a template format for multiple executions and future extensions.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-j5ZW2yegIz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140093\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The creative team did a fantastic job listening to the client, understanding their needs and solving it in a really interesting way. We wanted a concept that was like discovering a little nugget of gold. This campaign does exactly that. It looks, sounds and feels just right.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-l4zDr11Y7Z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"“New Word Order presented us with a concept that was quite unexpected but answered the brief in a truly compelling and powerful way. We’re excited to see how the campaign engages with people and evolves into the future.”\\n\\n—Rebecca Green, Community Solutions Marketing Advisor – Campaigns\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Community Solutions','As a community organisation with services in employment, training, apprenticeships, NDIS and more, Community Solutions were struggling to get their brand to cut through.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138106,141867,1,'Community Solutions','2022-08-08 06:42:29','2022-08-08 06:42:29','8d3a0369-d00d-4ae4-b6e0-bc9853261a65',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Connecting the community with solutions',NULL,NULL,'As a community organisation with services in employment, training, apprenticeships, NDIS and more, Community Solutions were struggling to get their brand to cut through. More specifically, branding consistency was an issue. Through a series of workshops, stakeholder engagement and strategy alignment research, we identified some building blocks for success to form the foundations of the campaign development.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-973WjkOkqV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/708008632?h=ea7482f91d&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TE5SrR8ZJY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140086\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CHALLENGE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The brief was relatively simple. Get us known for who we are and what we do. And quickly. With that, we applied our combination of strategic smarts and creative firepower to produce a brand awareness campaign for Community Solutions that delivered on all counts.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7z7VbqMAm5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The critical challenge of addressing the brand awareness and consistency issues was creatively solved by going back to basics—the brand name. We added a series of two-word descriptors to the Community Solutions name and logo. Through graphic design, we made them readable both horizontally and vertically to create multiple meanings and build new stories. \\nThis approach kept the branding front and centre, delivering on the awareness measure while shining a light on the services and outcomes that Community Solutions offers to their stakeholders.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140087\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hUKFvG7e7T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The campaign features a variety of assets, including digital, socials, outdoor, online video and radio. Everything was designed in a template format for multiple executions and future extensions.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-j5ZW2yegIz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140093\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The creative team did a fantastic job listening to the client, understanding their needs and solving it in a really interesting way. We wanted a concept that was like discovering a little nugget of gold. This campaign does exactly that. It looks, sounds and feels just right.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-l4zDr11Y7Z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"“New Word Order presented us with a concept that was quite unexpected but answered the brief in a truly compelling and powerful way. We’re excited to see how the campaign engages with people and evolves into the future.”\\n\\n—Rebecca Green, Community Solutions Marketing Advisor – Campaigns\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Community Solutions','As a community organisation with services in employment, training, apprenticeships, NDIS and more, Community Solutions were struggling to get their brand to cut through.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138108,141869,1,'Community Solutions','2022-08-08 06:42:58','2022-08-08 06:42:58','a9159f7b-1fd5-4220-a3e2-a5a8e23e9d44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Connecting the community with solutions',NULL,NULL,'As a community organisation with services in employment, training, apprenticeships, NDIS and more, Community Solutions were struggling to get their brand to cut through. More specifically, branding consistency was an issue. Through a series of workshops, stakeholder engagement and strategy alignment research, we identified some building blocks for success to form the foundations of the campaign development.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-973WjkOkqV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/708008632?h=ea7482f91d&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TE5SrR8ZJY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140086\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CHALLENGE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The brief was relatively simple. Get us known for who we are and what we do. And quickly. With that, we applied our combination of strategic smarts and creative firepower to produce a brand awareness campaign for Community Solutions that delivered on all counts.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7z7VbqMAm5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The critical challenge of addressing the brand awareness and consistency issues was creatively solved by going back to basics—the brand name. We added a series of two-word descriptors to the Community Solutions name and logo. Through graphic design, we made them readable both horizontally and vertically to create multiple meanings and build new stories. \\nThis approach kept the branding front and centre, delivering on the awareness measure while shining a light on the services and outcomes that Community Solutions offers to their stakeholders.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140087\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hUKFvG7e7T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The campaign features a variety of assets, including digital, socials, outdoor, online video and radio. Everything was designed in a template format for multiple executions and future extensions.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-j5ZW2yegIz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140093\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The creative team did a fantastic job listening to the client, understanding their needs and solving it in a really interesting way. We wanted a concept that was like discovering a little nugget of gold. This campaign does exactly that. It looks, sounds and feels just right.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-l4zDr11Y7Z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"“New Word Order presented us with a concept that was quite unexpected but answered the brief in a truly compelling and powerful way. We’re excited to see how the campaign engages with people and evolves into the future.”\\n\\n—Rebecca Green, Community Solutions Marketing Advisor – Campaigns\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Community Solutions','As a community organisation with services in employment, training, apprenticeships, NDIS and more, Community Solutions were struggling to get their brand to cut through.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138111,141872,1,'Community Solutions','2022-08-08 06:44:50','2022-08-08 06:44:50','84fe0b5b-1859-4a88-bb6a-f7088c5626b6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Connecting the community with solutions',NULL,NULL,'As a community organisation with services in employment, training, apprenticeships, NDIS and more, Community Solutions were struggling to get their brand to cut through. More specifically, branding consistency was an issue. Through a series of workshops, stakeholder engagement and strategy alignment research, we identified some building blocks for success to form the foundations of the campaign development.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-973WjkOkqV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/708008632?h=ea7482f91d&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TE5SrR8ZJY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140086\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CHALLENGE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The brief was relatively simple. Get us known for who we are and what we do. And quickly. With that, we applied our combination of strategic smarts and creative firepower to produce a brand awareness campaign for Community Solutions that delivered on all counts.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7z7VbqMAm5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The critical challenge of addressing the brand awareness and consistency issues was creatively solved by going back to basics—the brand name. We added a series of two-word descriptors to the Community Solutions name and logo. Through graphic design, we made them readable both horizontally and vertically to create multiple meanings and build new stories. \\nThis approach kept the branding front and centre, delivering on the awareness measure while shining a light on the services and outcomes that Community Solutions offers to their stakeholders.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140087\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hUKFvG7e7T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The campaign features a variety of assets, including digital, socials, outdoor, online video and radio. Everything was designed in a template format for multiple executions and future extensions.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-j5ZW2yegIz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140093\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The creative team did a fantastic job listening to the client, understanding their needs and solving it in a really interesting way. We wanted a concept that was like discovering a little nugget of gold. This campaign does exactly that. It looks, sounds and feels just right.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-l4zDr11Y7Z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"##### “New Word Order presented us with a concept that was quite unexpected but answered the brief in a truly compelling and powerful way. We’re excited to see how the campaign engages with people and evolves into the future.”\\n\\n**Rebecca Green**\\n<br>Marketing Advisor, Campaigns – Community Solutions\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Community Solutions','As a community organisation with services in employment, training, apprenticeships, NDIS and more, Community Solutions were struggling to get their brand to cut through.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138112,141873,1,'Heart HQ','2022-08-08 06:45:00','2022-08-08 06:45:00','3c13857e-9c05-484e-b167-468f4e8b7edb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'World-class medical with heart',NULL,NULL,'Big ambitions need a brand that accurately reflects their vision and mission, and that’s exactly what we sought to deliver for this client. With Heart HQ, and with the enormous amount of collateral that supports it, we’ve well and truly delivered this.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-P3bQXxcsfs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44878\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uicOuPt9of\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Sunshine Coast Heart Specialists was growing and changing. \\n\\nIn six years, the cardiology practice had grown to nearly 50 staff with rooms throughout the coast. Their cardiologists represented all of the possible sub-specialties within their profession. Within weeks, they would move to new purpose-built premises at Sippy Downs. They were about to open their own coronary CT clinic to the public and a heart murmur clinic to support GPs—both nation-leading initiatives.\\n\\nThe directors realised their geography-specific name would limit their ability to keep growing, and so renaming and rebranding was a strong need.\\n\\nTheir growth had also occurred at such a rate that there was strategic work needed to understand their market share and to form a marketing strategy that would offer them opportunities for segmentation. Growth is reliant on satisfied referring GPs and specialists, and so attention could never be removed from this area.\\n\\nFinally, such growth was also outstripping their capacity to fill the need. Cardiology is a highly specialised field within medicine, and to grow sustainably, they needed to attract more associates.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Lgp01pReVY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44873\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aTg3yWEGh3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Objective\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The practice needed a new name and brand assets for the business to accurately convey the mission and vision of the business, and to grow the business’s referrer and patient networks.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gG5PvaSbvX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44864\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oXH0AQY2PC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our brand strategy drew on customer and referrer interviews, competitor insights and employee workshops, which also helped to define the brand values of the business. \\n\\nIt was clear the practice and the individual directors were held in high esteem by their medical colleagues. They introduced surgical procedures to the Sunshine Coast that were, until then, only practised by a few in major cities. They were introducing clinics and services that had not been seen in regional areas in Australia. This gave us the confidence to be able to propose a tagline that truthfully boasted, ‘world-class cardiac care’.\\n\\nThe second part of the tagline reads: ‘…on the Sunshine Coast’. To compensate for the move away from the regionalisation in their original brand name—Sunshine Coast Heart Specialists—we added it to the tagline. The reason for this is that patients along the coast appreciated the practice was the only place where they could receive the full spectrum of care without having to travel to Brisbane.\\n\\nFinally, an important branding insight from our research was that patients were on a health journey—sometimes quite a precarious one—and could be experiencing anxiety. Patients told us they appreciated the kindness each doctor showed to them in their time of need. Simply promoting expertise could come across as cold and would not fairly represent the doctors’ deep commitment to quality care. So the Heart HQ brand connects with patients on a personal level and makes them feel reassured that they matter.\\n\\nIt’s this mix of strategy and heart that makes Heart HQ a brand that will stand tall among all the others.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ISdJyIN6AW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44874\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDNF080GkR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A name, tagline, brand visual identity, website, signage and countless assets that match up with Heart HQ’s brand promise of delivering world-class cardiac care on the Sunshine Coast.\\n\\nThe quality of the brand assets significantly differentiates Heart HQ from all other competitor practices.\\n\\nCreatively, the brand is modern, refreshing and arguably not what you would expect from an organisation in the medical field – but at the same time, the language is warm, supportive and with just the right amount of authority.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Np5NPasoP9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"##### \\\"Suzanne and her team came highly recommended. It was a great journey working with them to develop our new brand and we were very impressed with their ideas, enthusiasm and innovation. We have a new brand, a new identity and the confidence now to deliver on our growth plans.\\\"\\n\\n**Dr Peter Larsen**\\n<br>Managing Director – Heart HQ\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3VvPbVRO0Q\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45205\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AUTeHLiAy1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"##### \\\"NWO is part of our success journey.\\\"\\n\\n**Dr Peter Larsen**\\n<br>Managing Director – Heart HQ\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'Heart HQ','Big ambitions need a brand that accurately reflects their vision and mission, and that’s exactly what we sought to deliver for this client.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138114,141875,1,'Queensland Academy of Sport','2022-08-08 06:45:37','2022-08-08 06:45:37','53236355-116f-4d71-a869-aeef2ca841b4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'You for 2032 campaign',NULL,NULL,'What New Word Order and the Queensland Academy of Sport (QAS) have in common is a keen eye for talent.\n\nSo when QAS asked us to help identify and develop young Queensland athletes capable of winning medals for Australia at the 2032 Brisbane Olympic and Paralympic Games, we (high) jumped at the chance.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139975\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YLmNoEn3SV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The QAS talent identification campaign is aimed at Queenslander athletes aged between 13 and 23. It’s the first step in a development journey for an aspiring athlete to becoming an elite, Olympic-level athlete ready to compete on the world stage in their own backyard.\\n\\nOur goal was to build awareness of the campaign and drive as many potential athletes as possible to apply.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0D5dQI141H\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139977\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E7bk6zGGNd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We know the talent identification process for an athlete, and all the development that follows, is an inspiring, aspirational and immensely personal journey, and we wanted the campaign’s language to reflect each of those aspects of the journey.\\nVisually, we recognised that the traditional medal colours wouldn’t necessarily display well and could be limiting, so we chose to update them to create a much brighter, target audience-friendly colour palette.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FITIFbeFNO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139976\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fo1rrBFGWB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"After creating the campaign name, tagline and logo, we reinforced the theme with a digital platform and marketing collateral.\\nWe developed an online application platform designed to appeal to young audiences and our visual identity captures images of some of Queensland’s most well-known Olympic gold medallists.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4tbFuQYNR3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139978\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dHzG1lmF6k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The result is an inspiring campaign of aspirational language and engaging images that sell the dream of representing Australia in the 2032 Olympics.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Queensland Academy of Sport','What New Word Order and the Queensland Academy of Sport (QAS) have in common is a keen eye for talent.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138116,141877,1,'Queensland Academy of Sport','2022-08-08 06:46:01','2022-08-08 06:46:01','a8586da9-bd4f-42cc-8ea4-3745470edb63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'You for 2032 campaign',NULL,NULL,'What New Word Order and the Queensland Academy of Sport (QAS) have in common is a keen eye for talent.\n\nSo when QAS asked us to help identify and develop young Queensland athletes capable of winning medals for Australia at the 2032 Brisbane Olympic and Paralympic Games, we (high) jumped at the chance.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139975\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YLmNoEn3SV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The QAS talent identification campaign is aimed at Queenslander athletes aged between 13 and 23. It’s the first step in a development journey for an aspiring athlete to becoming an elite, Olympic-level athlete ready to compete on the world stage in their own backyard.\\n\\nOur goal was to build awareness of the campaign and drive as many potential athletes as possible to apply.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0D5dQI141H\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139977\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E7bk6zGGNd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We know the talent identification process for an athlete, and all the development that follows, is an inspiring, aspirational and immensely personal journey, and we wanted the campaign’s language to reflect each of those aspects of the journey.\\nVisually, we recognised that the traditional medal colours wouldn’t necessarily display well and could be limiting, so we chose to update them to create a much brighter, target audience-friendly colour palette.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FITIFbeFNO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139976\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fo1rrBFGWB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"After creating the campaign name, tagline and logo, we reinforced the theme with a digital platform and marketing collateral.\\nWe developed an online application platform designed to appeal to young audiences and our visual identity captures images of some of Queensland’s most well-known Olympic gold medallists.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4tbFuQYNR3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139978\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dHzG1lmF6k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The result is an inspiring campaign of aspirational language and engaging images that sell the dream of representing Australia in the 2032 Olympics.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Queensland Academy of Sport','What New Word Order and the Queensland Academy of Sport (QAS) have in common is a keen eye for talent.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138118,141879,1,'What\'s a No. 3?','2022-08-08 06:46:50','2022-08-08 06:46:50','f822a868-2e00-4ac9-82c9-42843394e3dc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What\'s a No. 3? Anything that shouldn\'t go down the loo.',NULL,NULL,'The playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way. We set out to capture the attention of kids and adults with an innovative and integrated campaign that featured interactive and creative design, animation, illustration, merchandise and video.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YLmNoEn3SV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Water and waste treatment are essential services and flushing the wrong items down the toilet costs Queensland Urban Utilities $200 million every year.\\n\\nUrban Utilities asked us to think of an original, creative campaign idea that would resonate with Queensland families. Our solution was the No. 3 campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FITIFbeFNO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47723\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lKKKRlcirp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"So, what\'s a No. 3? It\'s anything that shouldn’t go down the loo. Talking about our toilet habits is never comfortable. To navigate our way around the taboo topic, our creative team used humour to influence the bright, quirky look and feel of the entire campaign.\\n\\nThe playful No. 3 concept brings Queenslanders face-to-face with their flushing habits in a fun and relatable way.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-97JqWmRp6Z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/325104551\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rwksXdZztM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47725\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-szxmUd2L8D\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Result\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The campaign reached 29,790 people in its first month, and we quickly saw signs of behaviour change. \\n\\nAccording to independent market research, 50% of people will no longer flush wet wipes, 48% of people will no longer flush tampons, 47% will no longer flush condoms and 45% will no longer flush cotton buds as a result of seeing this campaign.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xxFbGAqcFU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47726\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2exJaiRsw5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iQhxL9nSze\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"61829\"],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/635014768?h=d3d29c9d60&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"GAMETOILET_HD_sound.mp4\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"61830\"],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/635015208?h=4079228e62&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"VIDEOAD_2_HD_sound\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new3\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/635025685?h=b22d402bd4&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"QUU Ekka footage\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FFU7esnnDy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47727\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QpOS0cp79X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47734\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'What\'s a No. 3?','We set out to capture the attention of kids and adults with an innovative and integrated campaign that featured interactive and creative design, animation, illustration, merchandise and video.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138120,141881,1,'Revelian','2022-08-08 06:48:26','2022-08-08 06:48:26','e978688a-847d-4fc7-8238-afb56da99bfd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The big reveal',NULL,NULL,'Revelian is a charismatic player in the field of business talent identification and assessment. We told Revelian’s story by rolling out a suite of new brand tools and using a powerful visual metaphor for the outcomes their customers gain.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wVL1kj40Jr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47639\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3ldwVmO5X2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"A beautiful partnership\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our goal was to position and powerfully differentiate this business from its competitors. The branding achieves this and binds Revelian’s internal team more closely to its purpose and business objectives. In doing so, it ensures current and prospective customers and partners can access, understand—and most importantly—prefer Revelian and its offering.\\n\\nOverall, our rollout for Revelian was staged and achievable, allowing the client to adjust and update their brand over time. This approach remains cost-effective for our client and has allowed us to work with them closely with key stakeholders to ensure we are meeting their needs and creating value for their investment.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-88fP2RTozJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47641\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-l0m2MRWrk9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"A new brand story to tell\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The Revelian brand story centres around the stories of their prospective customers—those who require business talent identification and assessment. Revelian’s narrative guides these customers along a compelling journey. It reads like any good treasure hunt should: the hunter driven by the thrill of next step and the genuine promise of quality and authenticity.\\n\\nThe intrigue and complexity of human behaviour is a fascinating topic that most of us explore throughout our daily life and work. Revelian uncovers the hidden, delves inside and goes beneath the surface to reveal the truth inside people, for businesses and organisations wanting to hire people well, and utilise them well.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3wNj8vd0Xj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/317380021?h=7cf79dbb3e&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-zVMqQZyrh0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"A refreshing approach\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As we refreshed their brand, we wrapped every element in the concept of ‘reveal’. The idea flows consistently throughout every aspect of the Revelian brand: we’ll start on the surface and delve deeper into the intrigue of human behaviour and insights for hiring and people management solutions.\\n\\nWhile the logo remains simple, strong and typographic, the visual elements have starring roles. Using filters, colours, photography and myriad gorgeous design treatments, they show and tell how the company reveals its precious insights.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WxJNoxzJXO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47642\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UCB7SM9ORH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strong, productive relationships\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our successful working relationship with the client has been key to forming the initial strategy for their brand development, website, collateral and exhibition development.\\n\\nOur team of creatives, developers and content specialists have enjoyed walking through this journey with Revelian.\\n\\nThe insights we’ve gained from this partnership have allowed us to produce work that performs to a very high standard within the agreed-upon scope, budget and timeframe.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kBhhzN53nM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47643\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FzPUJWQp19\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"A new front door\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"After refreshing their brand, we began redeveloping the Revelian website. To start with, we created a content strategy based on customer journeys and key messages. \\n\\nOur team of content specialists worked with the client to edit and review web copy for pages on the website. \\n\\nWith copy and wireframes ready and approved for development, our digital team applied the refreshed branding across the website.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Revelian','We told Revelian’s story by rolling out a suite of new brand tools and using a powerful visual metaphor for the outcomes their customers gain.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138122,141883,1,'Domestic and family violence','2022-08-08 06:49:19','2022-08-08 06:49:19','5661c52e-3cbd-47cc-ac4c-2cb089f95c26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Everyone deserves to feel safe',NULL,NULL,'We developed a powerful campaign—visuals, messaging and animation—to help Queenslanders understand the nature of domestic and family violence and to seek help for themselves or others.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2BMTwZsxt5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16826\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yW5tY9wyAQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"To help slow the spread of COVID-19, Queenslanders are spending more time at home—but home isn’t always a safe place.\\n\\nEveryone deserves to feel safe. Domestic and family violence is never acceptable. Help and support are available.\\n\\nThis is the campaign message the Queensland Government commissioned us to develop as the impact of COVID-19 rippled across our state.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BAdruYcFgJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16838\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CsRNpWzHen\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started the project by researching DFV campaigns in Australia and around the world.\\n\\nOur diverse target market included:\\n\\n1. Adult Queenslanders 18+ who are affected by domestic and family violence\\n\\n- People experiencing domestic and family violence\\n- People who become aware of domestic and family violence occurring\\n\\n2. Young Queenslanders 13-17 years old who may be affected by domestic and family violence in their household.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fOoytqzb18\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16839\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-refpZT5QBU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Messaging\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Rather than describe exactly what DFV might look like, the scripts and campaign advertisements echo the thoughts and feelings of those experiencing or observing DFV.\\n\\nThe copy style is concise, informal and written to an individual. DFV is complex and often hard to identify. We unpacked the different dimensions of DFV and always pointed the reader or viewer to help and support.\\n\\nOur messages were targeted to a diverse Queensland audience. We aimed to capture the human experience and emotions of DFV through the voice and style of the copy.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7Bn5w0QSW7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16840\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JtCJdSgzXY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our creative team completed an environmental scan to develop three design concepts with strategic choices in colours, symbols, typography and iconography.\\n\\nThe icons are simple and symbolic. We were careful to avoid using the human figure or gender-specific shapes to symbolise violent or threatening behaviours.\\n\\nInstead, our goal was to capture the far-reaching effect of domestic violence in the home and family through clean and minimal iconography, colours and shapes.\\n\\nWe used brand colours strategically, ensuring they were striking but not aggressive or alarming. Wherever possible, we avoided dark colours and shadows.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NnJbovUwRk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/572805319?h=8a36b70d04&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/572805011?h=d90ee17ccd&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vsjyJmaOWT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Animation\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"When directing the animation style, we wanted to convey the key messages of the campaign clearly and quickly. The morphing animation style is eye-catching and interesting.\\n\\nThe morphing shapes also efficiently unpack important messages to the viewer, complementing and supporting the messages in the video voiceover.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-asjEpeVorj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/572804196\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0Latj6rdpS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Phase 2\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"After the success of our 2020 launch, we rolled out a new iteration in 2021 that focused more on the non-physical forms of domestic and family violence.\\n\\nThis includes behaviour around controlling or monitoring finances, technology and social interactions.\\n\\nOur goal: to raise awareness and understanding of these forms of abuse, and communicate the seriousness of these behaviours.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aCf57wrIYs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/430227569\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Qes33flGQL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Work of this kind speaks straight to our purpose as an agency: to make a meaningful impact to people’s lives. Our team is proud to have been involved supporting families in our local community.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Domestic and family violence','We developed a powerful campaign—visuals, messaging and animation—to help Queenslanders understand the nature of domestic and family violence and to seek help for themselves or others.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138124,141885,1,'Domestic and family violence','2022-08-08 06:49:44','2022-08-08 06:49:44','ca4cf7d6-5dac-4d91-a12c-71462a2c9358',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Everyone deserves to feel safe',NULL,NULL,'We developed a powerful campaign—visuals, messaging and animation—to help Queenslanders understand the nature of domestic and family violence and to seek help for themselves or others.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2BMTwZsxt5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16826\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yW5tY9wyAQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"To help slow the spread of COVID-19, Queenslanders are spending more time at home—but home isn’t always a safe place.\\n\\nEveryone deserves to feel safe. Domestic and family violence is never acceptable. Help and support are available.\\n\\nThis is the campaign message the Queensland Government commissioned us to develop as the impact of COVID-19 rippled across our state.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BAdruYcFgJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16838\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CsRNpWzHen\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started the project by researching DFV campaigns in Australia and around the world.\\n\\nOur diverse target market included:\\n\\n1. Adult Queenslanders 18+ who are affected by domestic and family violence\\n\\n- People experiencing domestic and family violence\\n- People who become aware of domestic and family violence occurring\\n\\n2. Young Queenslanders 13-17 years old who may be affected by domestic and family violence in their household.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fOoytqzb18\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16839\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-refpZT5QBU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Messaging\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Rather than describe exactly what DFV might look like, the scripts and campaign advertisements echo the thoughts and feelings of those experiencing or observing DFV.\\n\\nThe copy style is concise, informal and written to an individual. DFV is complex and often hard to identify. We unpacked the different dimensions of DFV and always pointed the reader or viewer to help and support.\\n\\nOur messages were targeted to a diverse Queensland audience. We aimed to capture the human experience and emotions of DFV through the voice and style of the copy.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7Bn5w0QSW7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16840\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JtCJdSgzXY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our creative team completed an environmental scan to develop three design concepts with strategic choices in colours, symbols, typography and iconography.\\n\\nThe icons are simple and symbolic. We were careful to avoid using the human figure or gender-specific shapes to symbolise violent or threatening behaviours.\\n\\nInstead, our goal was to capture the far-reaching effect of domestic violence in the home and family through clean and minimal iconography, colours and shapes.\\n\\nWe used brand colours strategically, ensuring they were striking but not aggressive or alarming. Wherever possible, we avoided dark colours and shadows.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NnJbovUwRk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/572805319?h=8a36b70d04&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/572805011?h=d90ee17ccd&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vsjyJmaOWT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Animation\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"When directing the animation style, we wanted to convey the key messages of the campaign clearly and quickly. The morphing animation style is eye-catching and interesting.\\n\\nThe morphing shapes also efficiently unpack important messages to the viewer, complementing and supporting the messages in the video voiceover.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-asjEpeVorj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/572804196\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0Latj6rdpS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Phase 2\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"After the success of our 2020 launch, we rolled out a new iteration in 2021 that focused more on the non-physical forms of domestic and family violence.\\n\\nThis includes behaviour around controlling or monitoring finances, technology and social interactions.\\n\\nOur goal: to raise awareness and understanding of these forms of abuse, and communicate the seriousness of these behaviours.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aCf57wrIYs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/430227569\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Qes33flGQL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Work of this kind speaks straight to our purpose as an agency: to make a meaningful impact to people’s lives. Our team is proud to have been involved supporting families in our local community.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Domestic and family violence','We developed a powerful campaign—visuals, messaging and animation—to help Queenslanders understand the nature of domestic and family violence and to seek help for themselves or others.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138126,141887,1,'Domestic and family violence','2022-08-08 06:50:03','2022-08-08 06:50:03','db3b5860-a472-4147-af09-2b9c5c66568f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Everyone deserves to feel safe',NULL,NULL,'We developed a powerful campaign—visuals, messaging and animation—to help Queenslanders understand the nature of domestic and family violence and to seek help for themselves or others.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2BMTwZsxt5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16826\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yW5tY9wyAQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"To help slow the spread of COVID-19, Queenslanders are spending more time at home—but home isn’t always a safe place.\\n\\nEveryone deserves to feel safe. Domestic and family violence is never acceptable. Help and support are available.\\n\\nThis is the campaign message the Queensland Government commissioned us to develop as the impact of COVID-19 rippled across our state.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BAdruYcFgJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16838\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CsRNpWzHen\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started the project by researching DFV campaigns in Australia and around the world.\\n\\nOur diverse target market included:\\n\\n1.Adult Queenslanders 18+ who are affected by domestic and family violence\\n\\n- People experiencing domestic and family violence\\n- People who become aware of domestic and family violence occurring\\n\\n2.Young Queenslanders 13-17 years old who may be affected by domestic and family violence in their household.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fOoytqzb18\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16839\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-refpZT5QBU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Messaging\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Rather than describe exactly what DFV might look like, the scripts and campaign advertisements echo the thoughts and feelings of those experiencing or observing DFV.\\n\\nThe copy style is concise, informal and written to an individual. DFV is complex and often hard to identify. We unpacked the different dimensions of DFV and always pointed the reader or viewer to help and support.\\n\\nOur messages were targeted to a diverse Queensland audience. We aimed to capture the human experience and emotions of DFV through the voice and style of the copy.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7Bn5w0QSW7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16840\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JtCJdSgzXY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our creative team completed an environmental scan to develop three design concepts with strategic choices in colours, symbols, typography and iconography.\\n\\nThe icons are simple and symbolic. We were careful to avoid using the human figure or gender-specific shapes to symbolise violent or threatening behaviours.\\n\\nInstead, our goal was to capture the far-reaching effect of domestic violence in the home and family through clean and minimal iconography, colours and shapes.\\n\\nWe used brand colours strategically, ensuring they were striking but not aggressive or alarming. Wherever possible, we avoided dark colours and shadows.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NnJbovUwRk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/572805319?h=8a36b70d04&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/572805011?h=d90ee17ccd&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vsjyJmaOWT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Animation\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"When directing the animation style, we wanted to convey the key messages of the campaign clearly and quickly. The morphing animation style is eye-catching and interesting.\\n\\nThe morphing shapes also efficiently unpack important messages to the viewer, complementing and supporting the messages in the video voiceover.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-asjEpeVorj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/572804196\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0Latj6rdpS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Phase 2\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"After the success of our 2020 launch, we rolled out a new iteration in 2021 that focused more on the non-physical forms of domestic and family violence.\\n\\nThis includes behaviour around controlling or monitoring finances, technology and social interactions.\\n\\nOur goal: to raise awareness and understanding of these forms of abuse, and communicate the seriousness of these behaviours.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aCf57wrIYs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/430227569\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Qes33flGQL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Work of this kind speaks straight to our purpose as an agency: to make a meaningful impact to people’s lives. Our team is proud to have been involved supporting families in our local community.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Domestic and family violence','We developed a powerful campaign—visuals, messaging and animation—to help Queenslanders understand the nature of domestic and family violence and to seek help for themselves or others.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138128,141889,1,'Domestic and family violence','2022-08-08 06:50:14','2022-08-08 06:50:14','40fd7d49-a325-4ad1-bbac-7a33d8946dbb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Everyone deserves to feel safe',NULL,NULL,'We developed a powerful campaign—visuals, messaging and animation—to help Queenslanders understand the nature of domestic and family violence and to seek help for themselves or others.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2BMTwZsxt5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16826\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yW5tY9wyAQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"To help slow the spread of COVID-19, Queenslanders are spending more time at home—but home isn’t always a safe place.\\n\\nEveryone deserves to feel safe. Domestic and family violence is never acceptable. Help and support are available.\\n\\nThis is the campaign message the Queensland Government commissioned us to develop as the impact of COVID-19 rippled across our state.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BAdruYcFgJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16838\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CsRNpWzHen\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started the project by researching DFV campaigns in Australia and around the world.\\n\\nOur diverse target market included:\\n\\n1. Adult Queenslanders 18+ who are affected by domestic and family violence\\n\\n- People experiencing domestic and family violence\\n- People who become aware of domestic and family violence occurring\\n\\n2. Young Queenslanders 13-17 years old who may be affected by domestic and family violence in their household.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fOoytqzb18\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16839\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-refpZT5QBU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Messaging\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Rather than describe exactly what DFV might look like, the scripts and campaign advertisements echo the thoughts and feelings of those experiencing or observing DFV.\\n\\nThe copy style is concise, informal and written to an individual. DFV is complex and often hard to identify. We unpacked the different dimensions of DFV and always pointed the reader or viewer to help and support.\\n\\nOur messages were targeted to a diverse Queensland audience. We aimed to capture the human experience and emotions of DFV through the voice and style of the copy.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7Bn5w0QSW7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16840\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JtCJdSgzXY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our creative team completed an environmental scan to develop three design concepts with strategic choices in colours, symbols, typography and iconography.\\n\\nThe icons are simple and symbolic. We were careful to avoid using the human figure or gender-specific shapes to symbolise violent or threatening behaviours.\\n\\nInstead, our goal was to capture the far-reaching effect of domestic violence in the home and family through clean and minimal iconography, colours and shapes.\\n\\nWe used brand colours strategically, ensuring they were striking but not aggressive or alarming. Wherever possible, we avoided dark colours and shadows.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NnJbovUwRk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/572805319?h=8a36b70d04&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/572805011?h=d90ee17ccd&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vsjyJmaOWT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Animation\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"When directing the animation style, we wanted to convey the key messages of the campaign clearly and quickly. The morphing animation style is eye-catching and interesting.\\n\\nThe morphing shapes also efficiently unpack important messages to the viewer, complementing and supporting the messages in the video voiceover.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-asjEpeVorj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/572804196\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0Latj6rdpS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Phase 2\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"After the success of our 2020 launch, we rolled out a new iteration in 2021 that focused more on the non-physical forms of domestic and family violence.\\n\\nThis includes behaviour around controlling or monitoring finances, technology and social interactions.\\n\\nOur goal: to raise awareness and understanding of these forms of abuse, and communicate the seriousness of these behaviours.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aCf57wrIYs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/430227569\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Qes33flGQL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Work of this kind speaks straight to our purpose as an agency: to make a meaningful impact to people’s lives. Our team is proud to have been involved supporting families in our local community.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Domestic and family violence','We developed a powerful campaign—visuals, messaging and animation—to help Queenslanders understand the nature of domestic and family violence and to seek help for themselves or others.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138130,141891,1,'Domestic and family violence','2022-08-08 06:51:20','2022-08-08 06:51:20','fde6f5b5-e742-48a8-ad55-645f7adfcf6b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Everyone deserves to feel safe',NULL,NULL,'We developed a powerful campaign—visuals, messaging and animation—to help Queenslanders understand the nature of domestic and family violence and to seek help for themselves or others.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2BMTwZsxt5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16826\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yW5tY9wyAQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"To help slow the spread of COVID-19, Queenslanders are spending more time at home—but home isn’t always a safe place.\\n\\nEveryone deserves to feel safe. Domestic and family violence is never acceptable. Help and support are available.\\n\\nThis is the campaign message the Queensland Government commissioned us to develop as the impact of COVID-19 rippled across our state.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BAdruYcFgJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16838\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CsRNpWzHen\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started the project by researching DFV campaigns in Australia and around the world.\\n\\nOur diverse target market included:\\n\\n1. Adult Queenslanders 18+ who are affected by domestic and family violence\\n\\n- People experiencing domestic and family violence\\n- People who become aware of domestic and family violence occurring\\n\\n2. Young Queenslanders 13-17 years old who may be affected by domestic and family violence in their household.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fOoytqzb18\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16839\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-refpZT5QBU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Messaging\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Rather than describe exactly what DFV might look like, the scripts and campaign advertisements echo the thoughts and feelings of those experiencing or observing DFV.\\n\\nThe copy style is concise, informal and written to an individual. DFV is complex and often hard to identify. We unpacked the different dimensions of DFV and always pointed the reader or viewer to help and support.\\n\\nOur messages were targeted to a diverse Queensland audience. We aimed to capture the human experience and emotions of DFV through the voice and style of the copy.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7Bn5w0QSW7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16840\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JtCJdSgzXY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our creative team completed an environmental scan to develop three design concepts with strategic choices in colours, symbols, typography and iconography.\\n\\nThe icons are simple and symbolic. We were careful to avoid using the human figure or gender-specific shapes to symbolise violent or threatening behaviours.\\n\\nInstead, our goal was to capture the far-reaching effect of domestic violence in the home and family through clean and minimal iconography, colours and shapes.\\n\\nWe used brand colours strategically, ensuring they were striking but not aggressive or alarming. Wherever possible, we avoided dark colours and shadows.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NnJbovUwRk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/572805319?h=8a36b70d04&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/572805011?h=d90ee17ccd&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vsjyJmaOWT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Animation\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"When directing the animation style, we wanted to convey the key messages of the campaign clearly and quickly. The morphing animation style is eye-catching and interesting.\\n\\nThe morphing shapes also efficiently unpack important messages to the viewer, complementing and supporting the messages in the video voiceover.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-asjEpeVorj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/572804196\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0Latj6rdpS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Phase 2\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"After the success of our 2020 launch, we rolled out a new iteration in 2021 that focused more on the non-physical forms of domestic and family violence.\\n\\nThis includes behaviour around controlling or monitoring finances, technology and social interactions.\\n\\nOur goal: to raise awareness and understanding of these forms of abuse, and communicate the seriousness of these behaviours.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aCf57wrIYs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/430227569\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Qes33flGQL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Work of this kind speaks straight to our purpose as an agency: to make a meaningful impact to people’s lives. Our team is proud to have been involved supporting families in our local community.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Domestic and family violence','We developed a powerful campaign—visuals, messaging and animation—to help Queenslanders understand the nature of domestic and family violence and to seek help for themselves or others.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138136,141897,1,'These are a few of our favourite brands','2022-08-08 06:54:40','2022-08-08 06:54:40','af886a88-07cf-4e1f-bf16-73a6059d292e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4Kng0ZJkmt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"I asked the team at New Word Order to think of a brand to which they are unwaveringly loyal.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Here\'s what they said.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fCc8knIn7z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Andrew\",\"plainText\":\"[**ASICS**](https://www.asics.com/au/en-au/). Since Mum and Dad spoiled me when I was 12, these are the only sports shoes I buy. They last forever and are Australian. Luckily they make specialised hockey shoes as well!\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BP6fkJyA6u\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kimi\",\"plainText\":\"[**Jatz**](https://www.arnotts.com/products/crackers)! The most versatile cracker that suits all and any occasion! You got a dip? Jatz. A soup? Dip a Jatz in. A fancy, artisanal soft cheese? Crack the Jatz out. A simple cheddar cheese? Jatz it. Feeling really hungover and can\'t keep anything down but need to eat something so you can muster the strength to order a burrito on Uber Eats? Jatz it, baby.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Yr3xX8UNUq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Tim\",\"plainText\":\"Super obvious one but [**Apple**](https://www.apple.com/au/). Everything from their product design and UI right through to their bricks and mortar storefront is meant to make you ‘think differently’ as per their brand promise, but at the same time give you a sense of familiarity. I’ve dabbled with more phones and laptops than I care to mention but will always come back to Apple. That said, iTunes sucks!\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WePs4cQeU3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Lynn\",\"plainText\":\"I can be impulsive by nature but the one thing I am never impulsive about is my [**Impulse**](https://www.unilever.com.au/brands/beauty-personal-care/impulse/) Merely Musk deodorant. I have used this deodorant since I can remember because it smells good and stops me smelling bad! I never worry about BO when I have my Impulse on!\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kFDk9QaMtq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Jo\",\"plainText\":\"[**RM Williams**](https://www.rmwilliams.com.au/). I got my first pair of boots on arrival to \'Straya as I’d heard great things and love a good Chelsea boot. After 17 years, I am only on my third pair, which shows you the quality and craftsmanship that goes into the RM brand.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qjkDIEMMe3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kat\",\"plainText\":\"[**The Iconic**](https://www.theiconic.com.au/). Their customer service/shipping options/returns policy is so user friendly and far outshines any competitors. They make the process of purchasing and returning so easy that I’m happy to throw my money at them. I’m sure they would lose money on the shipping/returns too, but make it back with the volume of sales from happy customers like myself.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-nXicTrGS5B\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bruce\",\"plainText\":\"[**The Dirt Company**](https://thedirtcompany.com.au/)\'s laundry detergent. I like the idea that not everything we buy has to \'cost the earth\' and Dirt have not only made a more eco-friendly washing detergent, but you can send their packaging back to them and they will reuse it. Their highly concentrated detergent won\'t harm the environment and the reusable packaging means a whole lot of plastic is not going into landfill or waterways. Another company that shows you can have a successful business while still protecting the planet.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ieCD98S7up\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bec\",\"plainText\":\"I found this tricky as I am a bit of a brand tart, and I have been disappointed by a few brands in the past who have not lived up to my expectation (“Nooo we vehemently don’t and will never test on animals…but we will sell out to the big company who does”) BUT a brand I have stayed loyal to is [**Vegemite**](https://vegemite.com.au/).\\n\\n– I loved it as a kid—I suspect the 50s jingle had more to do with that than the taste. Mum and dad regretted introducing us to that song with our robust young lungs joyfully belting it out over and over again on long car trips.\\n– I loved it as a young adult—that black tar smeared on toast. It was post-party comfort food and it was a cheap meal (with Vitamin B!). It made you feel better, like you could go on.\\n– I loved it as a slightly older adult when living abroad—Vegemite toast was like a hug from home. How happy was I when I realised you could get it everywhere and it still tasted the same, unlike Cadbury chocolate. There\'s that brand disappointment!\\n\\nI don’t know that Vegemite is the healthiest food group or even a brand with the most integrity, but I have an emotional connection to that bold brand of yellow, red and white with its tarry contents. It tastes so good on toast and even gives a stir fry an interesting edge. It’s stayed pretty consistent in a world that has changed so much, and as an Australian living abroad it’s part of your heritage and your identity. What’s even better, the brand has come back home to Australia.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dSCs5J35lI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kerry\",\"plainText\":\"I\'m loyal to the US hair care brand [**DevaCurl**](https://www.devacurl.com/us). It has been the only brand to date that has been able to calm my crazy hair and embrace my God-given curls. Of recent times, DevaCurl have been dragged through the courts as many people have claimed it makes their hair fall out. But I have kept on buying it from the US after 5 years of use and I still have enough hair to go around, so somehow I don\'t think it is a problem for me.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aPLfD479sh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Liam\",\"plainText\":\"I tend to enjoy a little cheating on my normal choices. But one brand I’ve stuck with since my teens is [**Ray-Ban**](https://www.ray-ban.com/australia) sunglasses. I like that their styles never stray too much from the original designs and they don’t follow trends. I’ve been gifted \'luxury fashion\' brand sunglasses before and they are more about getting their fancy name or logo on the product than anything else—the quality is dubious and the style trends come and go. Ray-Ban don’t try to be overly fashionable, they work well and look good. Proud middle-aged man moment for me was after I had bought a new pair of Ray-Bans overseas and in my first week back in Brisbane the cool hipster barista at the coffee shop said to me “Love your sunnies… they’re on point”.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qhin1NvFDx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Ryan\",\"plainText\":\"[**Patagonia**](https://www.patagonia.com.au/). It lasts for ages and they actually fix stuff. I had a pair of hiking pants that got hammered in Nepal and they fixed them for me. They also give 1% of sales back to conservation efforts. Their stuff also just seems to fit me really well.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UgAjx4JylF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Suzanne\",\"plainText\":\"[**Kawai**](https://kawai.com.au/) pianos is mine. I’ve played for 45 years and, no matter where I find a Kawai, the touch and the sound is consistent. The Kawai is smooth and sonorous. Love that it’s been so consistent for so long.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8UXqqjffzF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Scott\",\"plainText\":\"Tim took mine—Apple has been the most consistent brand in my life since we started NWO (and before, too) and crossed over seamlessly into my personal life as well. Their stuff works, lasts, is simple to use and is beautiful to look at, use and hold. But if I have to pick a different one I’d pick [**Nudie Jeans**](https://www.nudiejeans.com/). Like Patagonia they repair for free, they give you money for your old pair and resell it to save waste. And, their jeans just always fit me in a way no other ones ever have.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-v0xY9fvU6u\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kate\",\"plainText\":\"[**IKEA**](https://www.ikea.com/au/en/) is a Swedish wonderland. For me there’s nothing better than a free Saturday afternoon, barrelling down the M1 towards the glorious blue and yellow castle. From beginning to end the experience is flawlessly designed—from the carpark, to the food, to the warehouse, to the satisfaction of sitting on the couch you spent the past hour bolting together. Every aspect of the IKEA brand is designed to hug your mind, body and soul. No brand can wrap you in a cozy $5 throw like IKEA can.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uRfO2vtwj8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Margaret\",\"plainText\":\"[**Haagen Dazs**](https://www.haagen-dazs.com.au/) ice cream. No flavour ever disappoints and that cream base… I had my first HD on Singapore Airlines when I was 17 and I ate four in row. (Tip: ask four different air hostesses.)\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kesJqAugGq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bree\",\"plainText\":\"I regularly drive out of my way to stop at [**7-Eleven**](https://www.7eleven.com.au/) for fuel. I wouldn\'t even consider going anywhere else, and the reason why is so simple: the My 7-Eleven app. The lock-in price feature is a game changer and I get a thrill every time I see the price on the EFTPOS machine and how much lower it is than the price on the pump outside. It almost makes me enjoy buying fuel.\\n\\nThe Krispy Kremes don\'t hurt either.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-K1FhEue9Fp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As you can tell from the kinds of brands they chose, your brand doesn\'t have to be flashy or sexy. It just has to be true to itself and deliver on its promises, consistently and with a bit of personality.\\n\\n\\n*Disclaimer: New Word Order is not sponsored by or partnered with any of the mentioned brands.*\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'These are a few of our favourite brands','I asked the team at New Word Order to think of a brand to which they are unwaveringly loyal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138138,141899,1,'These are a few of our favourite brands','2022-08-08 06:55:20','2022-08-08 06:55:20','7fe812d0-87e1-4604-9dd5-54e6788891e6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4Kng0ZJkmt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"I asked the team at New Word Order to think of a brand to which they are unwaveringly loyal.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Here\'s what they said.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fCc8knIn7z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Andrew\",\"plainText\":\"[**ASICS**](https://www.asics.com/au/en-au/). Since Mum and Dad spoiled me when I was 12, these are the only sports shoes I buy. They last forever and are Australian. Luckily they make specialised hockey shoes as well!\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BP6fkJyA6u\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kimi\",\"plainText\":\"[**Jatz**](https://www.arnotts.com/products/crackers)! The most versatile cracker that suits all and any occasion! You got a dip? Jatz. A soup? Dip a Jatz in. A fancy, artisanal soft cheese? Crack the Jatz out. A simple cheddar cheese? Jatz it. Feeling really hungover and can\'t keep anything down but need to eat something so you can muster the strength to order a burrito on Uber Eats? Jatz it, baby.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Yr3xX8UNUq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Tim\",\"plainText\":\"Super obvious one but [**Apple**](https://www.apple.com/au/). Everything from their product design and UI right through to their bricks and mortar storefront is meant to make you ‘think differently’ as per their brand promise, but at the same time give you a sense of familiarity. I’ve dabbled with more phones and laptops than I care to mention but will always come back to Apple. That said, iTunes sucks!\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WePs4cQeU3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Lynn\",\"plainText\":\"I can be impulsive by nature but the one thing I am never impulsive about is my [**Impulse**](https://www.unilever.com.au/brands/beauty-personal-care/impulse/) Merely Musk deodorant. I have used this deodorant since I can remember because it smells good and stops me smelling bad! I never worry about BO when I have my Impulse on!\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kFDk9QaMtq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Jo\",\"plainText\":\"[**RM Williams**](https://www.rmwilliams.com.au/). I got my first pair of boots on arrival to \'Straya as I’d heard great things and love a good Chelsea boot. After 17 years, I am only on my third pair, which shows you the quality and craftsmanship that goes into the RM brand.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qjkDIEMMe3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kat\",\"plainText\":\"[**The Iconic**](https://www.theiconic.com.au/). Their customer service/shipping options/returns policy is so user friendly and far outshines any competitors. They make the process of purchasing and returning so easy that I’m happy to throw my money at them. I’m sure they would lose money on the shipping/returns too, but make it back with the volume of sales from happy customers like myself.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-nXicTrGS5B\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bruce\",\"plainText\":\"[**The Dirt Company**](https://thedirtcompany.com.au/)\'s laundry detergent. I like the idea that not everything we buy has to \'cost the earth\' and Dirt have not only made a more eco-friendly washing detergent, but you can send their packaging back to them and they will reuse it. Their highly concentrated detergent won\'t harm the environment and the reusable packaging means a whole lot of plastic is not going into landfill or waterways. Another company that shows you can have a successful business while still protecting the planet.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ieCD98S7up\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bec\",\"plainText\":\"I found this tricky as I am a bit of a brand tart, and I have been disappointed by a few brands in the past who have not lived up to my expectation (“Nooo we vehemently don’t and will never test on animals…but we will sell out to the big company who does”) BUT a brand I have stayed loyal to is [**Vegemite**](https://vegemite.com.au/).\\n\\n– I loved it as a kid—I suspect the 50s jingle had more to do with that than the taste. Mum and dad regretted introducing us to that song with our robust young lungs joyfully belting it out over and over again on long car trips.\\n– I loved it as a young adult—that black tar smeared on toast. It was post-party comfort food and it was a cheap meal (with Vitamin B!). It made you feel better, like you could go on.\\n– I loved it as a slightly older adult when living abroad—Vegemite toast was like a hug from home. How happy was I when I realised you could get it everywhere and it still tasted the same, unlike Cadbury chocolate. There\'s that brand disappointment!\\n\\nI don’t know that Vegemite is the healthiest food group or even a brand with the most integrity, but I have an emotional connection to that bold brand of yellow, red and white with its tarry contents. It tastes so good on toast and even gives a stir fry an interesting edge. It’s stayed pretty consistent in a world that has changed so much, and as an Australian living abroad it’s part of your heritage and your identity. What’s even better, the brand has come back home to Australia.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dSCs5J35lI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kerry\",\"plainText\":\"I\'m loyal to the US hair care brand [**DevaCurl**](https://www.devacurl.com/us). It has been the only brand to date that has been able to calm my crazy hair and embrace my God-given curls. Of recent times, DevaCurl have been dragged through the courts as many people have claimed it makes their hair fall out. But I have kept on buying it from the US after 5 years of use and I still have enough hair to go around, so somehow I don\'t think it is a problem for me.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aPLfD479sh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Liam\",\"plainText\":\"I tend to enjoy a little cheating on my normal choices. But one brand I’ve stuck with since my teens is [**Ray-Ban**](https://www.ray-ban.com/australia) sunglasses. I like that their styles never stray too much from the original designs and they don’t follow trends. I’ve been gifted \'luxury fashion\' brand sunglasses before and they are more about getting their fancy name or logo on the product than anything else—the quality is dubious and the style trends come and go. Ray-Ban don’t try to be overly fashionable, they work well and look good. Proud middle-aged man moment for me was after I had bought a new pair of Ray-Bans overseas and in my first week back in Brisbane the cool hipster barista at the coffee shop said to me “Love your sunnies… they’re on point”.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qhin1NvFDx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Ryan\",\"plainText\":\"[**Patagonia**](https://www.patagonia.com.au/). It lasts for ages and they actually fix stuff. I had a pair of hiking pants that got hammered in Nepal and they fixed them for me. They also give 1% of sales back to conservation efforts. Their stuff also just seems to fit me really well.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UgAjx4JylF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Suzanne\",\"plainText\":\"[**Kawai**](https://kawai.com.au/) pianos is mine. I’ve played for 45 years and, no matter where I find a Kawai, the touch and the sound is consistent. The Kawai is smooth and sonorous. Love that it’s been so consistent for so long.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8UXqqjffzF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Scott\",\"plainText\":\"Tim took mine—Apple has been the most consistent brand in my life since we started NWO (and before, too) and crossed over seamlessly into my personal life as well. Their stuff works, lasts, is simple to use and is beautiful to look at, use and hold. But if I have to pick a different one I’d pick [**Nudie Jeans**](https://www.nudiejeans.com/). Like Patagonia they repair for free, they give you money for your old pair and resell it to save waste. And, their jeans just always fit me in a way no other ones ever have.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-v0xY9fvU6u\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kate\",\"plainText\":\"[**IKEA**](https://www.ikea.com/au/en/) is a Swedish wonderland. For me there’s nothing better than a free Saturday afternoon, barrelling down the M1 towards the glorious blue and yellow castle. From beginning to end the experience is flawlessly designed—from the carpark, to the food, to the warehouse, to the satisfaction of sitting on the couch you spent the past hour bolting together. Every aspect of the IKEA brand is designed to hug your mind, body and soul. No brand can wrap you in a cozy $5 throw like IKEA can.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uRfO2vtwj8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Margaret\",\"plainText\":\"[**Haagen Dazs**](https://www.haagen-dazs.com.au/) ice cream. No flavour ever disappoints and that cream base… I had my first HD on Singapore Airlines when I was 17 and I ate four in row. (Tip: ask four different air hostesses.)\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kesJqAugGq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bree\",\"plainText\":\"I regularly drive out of my way to stop at [**7-Eleven**](https://www.7eleven.com.au/) for fuel. I wouldn\'t even consider going anywhere else, and the reason why is so simple: the My 7-Eleven app. The lock-in price feature is a game changer and I get a thrill every time I see the price on the EFTPOS machine and how much lower it is than the price on the pump outside. It almost makes me enjoy buying fuel.\\n\\nThe Krispy Kremes don\'t hurt either.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-K1FhEue9Fp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As you can tell from the kinds of brands they chose, your brand doesn\'t have to be flashy or sexy. It just has to be true to itself and deliver on its promises, consistently and with a bit of personality.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z4RAlzvPje\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"*Disclaimer: New Word Order is not sponsored by or partnered with any of the mentioned brands.*\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'These are a few of our favourite brands','I asked the team at New Word Order to think of a brand to which they are unwaveringly loyal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138140,141901,1,'These are a few of our favourite brands','2022-08-08 06:56:04','2022-08-08 06:56:04','f4974f20-3d85-43e1-b4ce-e9330c7349a0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4Kng0ZJkmt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"I asked the team at New Word Order to think of a brand to which they are unwaveringly loyal.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Here\'s what they said.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fCc8knIn7z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Andrew\",\"plainText\":\"[**ASICS**](https://www.asics.com/au/en-au/). Since Mum and Dad spoiled me when I was 12, these are the only sports shoes I buy. They last forever and are Australian. Luckily they make specialised hockey shoes as well!\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BP6fkJyA6u\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kimi\",\"plainText\":\"[**Jatz**](https://www.arnotts.com/products/crackers)! The most versatile cracker that suits all and any occasion! You got a dip? Jatz. A soup? Dip a Jatz in. A fancy, artisanal soft cheese? Crack the Jatz out. A simple cheddar cheese? Jatz it. Feeling really hungover and can\'t keep anything down but need to eat something so you can muster the strength to order a burrito on Uber Eats? Jatz it, baby.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Yr3xX8UNUq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Tim\",\"plainText\":\"Super obvious one but [**Apple**](https://www.apple.com/au/). Everything from their product design and UI right through to their bricks and mortar storefront is meant to make you ‘think differently’ as per their brand promise, but at the same time give you a sense of familiarity. I’ve dabbled with more phones and laptops than I care to mention but will always come back to Apple. That said, iTunes sucks!\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WePs4cQeU3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Lynn\",\"plainText\":\"I can be impulsive by nature but the one thing I am never impulsive about is my [**Impulse**](https://www.unilever.com.au/brands/beauty-personal-care/impulse/) Merely Musk deodorant. I have used this deodorant since I can remember because it smells good and stops me smelling bad! I never worry about BO when I have my Impulse on!\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kFDk9QaMtq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Jo\",\"plainText\":\"[**RM Williams**](https://www.rmwilliams.com.au/). I got my first pair of boots on arrival to \'Straya as I’d heard great things and love a good Chelsea boot. After 17 years, I am only on my third pair, which shows you the quality and craftsmanship that goes into the RM brand.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qjkDIEMMe3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kat\",\"plainText\":\"[**The Iconic**](https://www.theiconic.com.au/). Their customer service/shipping options/returns policy is so user friendly and far outshines any competitors. They make the process of purchasing and returning so easy that I’m happy to throw my money at them. I’m sure they would lose money on the shipping/returns too, but make it back with the volume of sales from happy customers like myself.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-nXicTrGS5B\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bruce\",\"plainText\":\"[**The Dirt Company**](https://thedirtcompany.com.au/)\'s laundry detergent. I like the idea that not everything we buy has to \'cost the earth\' and Dirt have not only made a more eco-friendly washing detergent, but you can send their packaging back to them and they will reuse it. Their highly concentrated detergent won\'t harm the environment and the reusable packaging means a whole lot of plastic is not going into landfill or waterways. Another company that shows you can have a successful business while still protecting the planet.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ieCD98S7up\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bec\",\"plainText\":\"I found this tricky as I am a bit of a brand tart, and I have been disappointed by a few brands in the past who have not lived up to my expectation (“Nooo we vehemently don’t and will never test on animals…but we will sell out to the big company who does”) BUT a brand I have stayed loyal to is [**Vegemite**](https://vegemite.com.au/).\\n\\n– I loved it as a kid—I suspect the 50s jingle had more to do with that than the taste. Mum and dad regretted introducing us to that song with our robust young lungs joyfully belting it out over and over again on long car trips.\\n– I loved it as a young adult—that black tar smeared on toast. It was post-party comfort food and it was a cheap meal (with Vitamin B!). It made you feel better, like you could go on.\\n– I loved it as a slightly older adult when living abroad—Vegemite toast was like a hug from home. How happy was I when I realised you could get it everywhere and it still tasted the same, unlike Cadbury chocolate. There\'s that brand disappointment!\\n\\nI don’t know that Vegemite is the healthiest food group or even a brand with the most integrity, but I have an emotional connection to that bold brand of yellow, red and white with its tarry contents. It tastes so good on toast and even gives a stir fry an interesting edge. It’s stayed pretty consistent in a world that has changed so much, and as an Australian living abroad it’s part of your heritage and your identity. What’s even better, the brand has come back home to Australia.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dSCs5J35lI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kerry\",\"plainText\":\"I\'m loyal to the US hair care brand [**DevaCurl**](https://www.devacurl.com/us). It has been the only brand to date that has been able to calm my crazy hair and embrace my God-given curls. Of recent times, DevaCurl have been dragged through the courts as many people have claimed it makes their hair fall out. But I have kept on buying it from the US after 5 years of use and I still have enough hair to go around, so somehow I don\'t think it is a problem for me.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aPLfD479sh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Liam\",\"plainText\":\"I tend to enjoy a little cheating on my normal choices. But one brand I’ve stuck with since my teens is [**Ray-Ban**](https://www.ray-ban.com/australia) sunglasses. I like that their styles never stray too much from the original designs and they don’t follow trends. I’ve been gifted \'luxury fashion\' brand sunglasses before and they are more about getting their fancy name or logo on the product than anything else—the quality is dubious and the style trends come and go. Ray-Ban don’t try to be overly fashionable, they work well and look good. Proud middle-aged man moment for me was after I had bought a new pair of Ray-Bans overseas and in my first week back in Brisbane the cool hipster barista at the coffee shop said to me “Love your sunnies… they’re on point”.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qhin1NvFDx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Ryan\",\"plainText\":\"[**Patagonia**](https://www.patagonia.com.au/). It lasts for ages and they actually fix stuff. I had a pair of hiking pants that got hammered in Nepal and they fixed them for me. They also give 1% of sales back to conservation efforts. Their stuff also just seems to fit me really well.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UgAjx4JylF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Suzanne\",\"plainText\":\"[**Kawai**](https://kawai.com.au/) pianos is mine. I’ve played for 45 years and, no matter where I find a Kawai, the touch and the sound is consistent. The Kawai is smooth and sonorous. Love that it’s been so consistent for so long.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8UXqqjffzF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Scott\",\"plainText\":\"Tim took mine—Apple has been the most consistent brand in my life since we started NWO (and before, too) and crossed over seamlessly into my personal life as well. Their stuff works, lasts, is simple to use and is beautiful to look at, use and hold. But if I have to pick a different one I’d pick [**Nudie Jeans**](https://www.nudiejeans.com/). Like Patagonia they repair for free, they give you money for your old pair and resell it to save waste. And, their jeans just always fit me in a way no other ones ever have.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-v0xY9fvU6u\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Kate\",\"plainText\":\"[**IKEA**](https://www.ikea.com/au/en/) is a Swedish wonderland. For me there’s nothing better than a free Saturday afternoon, barrelling down the M1 towards the glorious blue and yellow castle. From beginning to end the experience is flawlessly designed—from the carpark, to the food, to the warehouse, to the satisfaction of sitting on the couch you spent the past hour bolting together. Every aspect of the IKEA brand is designed to hug your mind, body and soul. No brand can wrap you in a cozy $5 throw like IKEA can.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uRfO2vtwj8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Margaret\",\"plainText\":\"[**Haagen Dazs**](https://www.haagen-dazs.com.au/) ice cream. No flavour ever disappoints and that cream base… I had my first HD on Singapore Airlines when I was 17 and I ate four in row. (Tip: ask four different air hostesses.)\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kesJqAugGq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Bree\",\"plainText\":\"I regularly drive out of my way to stop at [**7-Eleven**](https://www.7eleven.com.au/) for fuel. I wouldn\'t even consider going anywhere else, and the reason why is so simple: the My 7-Eleven app. The lock-in price feature is a game changer and I get a thrill every time I see the price on the EFTPOS machine and how much lower it is than the price on the pump outside. It almost makes me enjoy buying fuel.\\n\\nThe Krispy Kremes don\'t hurt either.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-K1FhEue9Fp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As you can tell from the kinds of brands they chose, your brand doesn\'t have to be flashy or sexy. It just has to be true to itself and deliver on its promises, consistently and with a bit of personality.\\n\\n*Disclaimer: New Word Order is not sponsored by or partnered with any of the mentioned brands.*\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'These are a few of our favourite brands','I asked the team at New Word Order to think of a brand to which they are unwaveringly loyal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138141,141902,1,'The building blocks of branding','2022-08-08 06:59:41','2022-08-08 06:59:41','df84ec31-b31e-4d13-84c1-82d5aadc3a1f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UBcW4IgaI5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Through 20 years of branding experience, we’ve come to understand stakeholder engagement is essential for a brand to have cut-through.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’ve engaged with our clients’ stakeholders for many years and in many ways—ranging from formal, formative market research through to in-depth focus groups, workshops, community forums, brand satisfaction surveys and phone interviews.\\n\\nNo matter the method, what really counts is that we capture how people relate to your brand. That relationship leads to relevance and then the ultimate goal: resonance.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qaQGFaRj3d\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Relationship\",\"plainText\":\"Every great brand is built on relationship.\\n\\nWhen you form healthy relationships with stakeholders, you open yourself up to a range of opinions. Generally, feedback gets more constructive as the relationship grows healthier.\\n\\nIf you’re the brand manager, it can feel a bit like tough love at first—but it does get easier.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IDzmWzpUSE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Relevance\",\"plainText\":\"So much more than a logo, brands are heavy with meaning for stakeholders. And so if the environment changes but your brand doesn’t, the meaning is lost.\\n\\nA lot of the stakeholder feedback we hear about brands is that they’re outdated or lack appeal. Without relevance, your stakeholders no longer feel the love.\\n\\nConstantly retune yourself to your stakeholders and you’ll keep fulfilling their needs.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8Wdlr8QGTN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Resonance\",\"plainText\":\"Resonance is where understanding meets impact.\\n\\nA brand rich with resonance is the holy grail of marketing and, true to legend, few reach it.\\n\\nThat’s because resonance means your brand is a perfect fit for your stakeholders’ environment, pain points, wants and emotional connection.\\n\\nResonance engenders attention and respect, and turns want to need.\\n\\nAnd when stakeholders can’t live without your brand? Happy days.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EdELli6glE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"The three Rs start here\",\"plainText\":\"Whether you’re looking to name and brand or rename and rebrand, your brand journey starts with understanding your stakeholders.\\n\\nTalk to us about how to take your first steps.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The building blocks of branding','Through 20 years of branding experience, we’ve come to understand stakeholder engagement is essential for a brand to have cut-through.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138143,141904,1,'The 6 steps of content creation','2022-08-08 07:02:05','2022-08-08 07:02:05','46c685ae-7279-4986-8fc5-b6ad18e18939',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-92RCseTSp0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"You know what your business is about. You’ve nailed down your story. You’ve worked out who you want to talk to.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Now you need to add some real value.\\n\\nTime-poor organisations need their content to work across different channels online—including websites, e-newsletters, blogs and across social media. One way to add value to your existing, more sales-focused content is through content curation. Content curation means finding useful content online, curating it for your audience and re-telling it in your voice and with your advice.\\n\\n##### **Here’s how to optimise, write and curate content for your target audience.**\\n\\n###### **Defining your goals**\\n\\nEvery good plan starts with defining what it’s trying to achieve. How do you want your content to define your business? What are you offering your target market? Do you want to be a thought leader in your particular area?\\n\\nContent curation is about meeting your customers where they are and offering them something they’re not getting elsewhere. It’s about finding, gathering and sharing information of value with them; positioning your business and brand as an authority both with original content—your sales offering and business learnings—and information you’ve found and shared online. Participating in conversations that are happening about your field leads to more engagement with your target market, the ultimate goal being to give your brand a voice of value that will see your audience come back again and again for your offering.\\n\\n###### **Getting started**\\n\\nIt’s important to remember that well-executed content curation isn’t about regurgitating content that was already published. Instead, it’s your business’ personal re-telling of a story. As Susan Gunelius wrote for Forbes, the human element of content curation is what makes curated content compelling.\\n\\nTherefore, when offering your audience valuable content, remember to tell your story. What are you saying that’s different? What do you know that others might not? Involve your whole team—not just marketing and sales—and that story will evolve to give your business a truly useful and unique voice.\\n\\n###### **Finding content**\\n\\nHere’s where you get amongst it!\\n\\nWant to know where your target market is looking for information online? Go exploring! Ask them! Discover for yourself where the good stories are being shared. Find out what topics matter to your goals and audience, and go after them.\\n\\nIntegrating content curation into your broader marketing strategy is the way to go here—it legitimises the exercise and gets your team thinking about the value of your brand and how they can add to it. The best place to start is probably your social media accounts. Valuable content is being shared every day on platforms like Facebook, Twitter and LinkedIn. There are also Google alerts and news aggregate sites that can be set up with your special business needs in mind.\\n\\n###### **Be authentic to find your voice**\\n\\nThere is nothing like the instant world of social media to add value and timeliness to your content. Social media has changed the term ‘sharing’ forever, and the opportunities for your brand are endless. It’s important to add your own value to social content—as Mark Lerner says, if you just \'retweet\', or share an article without including your own voice in the post, you’ll fail to distinguish yourself from everyone else who shared that content.\\n\\nHow do you find your voice? Authentically, of course! Offer your opinion and add your advice in areas where you are confident. Try to be friendly and informative, and adopt an approachable tone. Not so confident? Ask questions! Get your community talking and they’ll come back to you.\\n\\n###### **Context and thought leadership**\\n\\nGood content curation provides your audience with context and convenience—that means filtering and explaining what you find online, and rewording it in your voice so it’s useful to them. You don’t always need to be selling, but you do always need to be mindful of your brand and of offering real value. Knowing who your market is and writing in your ‘voice’ allows you to, as J-P De Clerck says, inform, educate, entertain and engage target audiences.\\n\\n###### **Where to share**\\n\\nThere are many ways to share curated content, but the best way is in a mix of your existing ‘sales’ content. E-newletters and blogs offer an opportunity to share curated and original content, and social media is the most instant way to add your voice to a new idea, and also probably the first place your audience will find you. They’ll also find your website, so don’t forget about the curated content opportunities there. Always remember that you should be providing useful information, not just repeating content or working on the hard sell.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-smxImKOfwg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":null,\"plainText\":\"Content curation is convenient, but it’s also an important opportunity to add value, develop a business voice and grow an online community. What do you think about content curation? Has it worked for you? Got any tips? Let us know.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The 6 steps of content creation','You know what your business is about. You’ve nailed down your story. You’ve worked out who you want to talk to.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138145,141906,1,'Are customers giving up on your website?','2022-08-08 07:03:56','2022-08-08 07:03:56','f04c2fa6-fdb3-4ffd-86aa-d0b1b5703f71',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gahB36q3Yd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We’ve all tried to navigate frustrating websites that have ended in annoyance, giving up and even turning to a competitor. Good web design translates to successful conversions, and that all depends on user experience.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Usually, we’re only willing to give a website one minute to display what we’re looking for before we give up. The most common website complaints are that there is ‘too much going on’ and also ‘not enough information’. Translation: many sites drone on and on… but don’t really say much.\\n\\nUsers also complain—across all age groups and digital skill levels—that text is too small and navigation is difficult. Thirty-five per cent of users fail to complete simple tasks on the average website.\\n\\nLet’s improve those stats, shall we?\\n\\n##### **1. Design from the user’s perspective, not your own**\\n\\nWe know your company is the greatest thing since Google and you can’t wait to tell everyone all about where it began, who works there and the details of your offering. But the truth is this: users just want to get to the point, and their interests should override yours. \\nUsability is key. Show them what they’re looking for, and don’t make them search for it.\\n\\n##### **2. Create a navigation path**\\n\\nIf the information on your website is simple and structured, you can guide visitors along the path you’d like them to take—their user journey. Use tabs and sub-pages for different categories and keep it super logical.\\n\\n##### **3. Content is everything**\\n\\nContent is the most important element of your site, really—and it needs to fit the logical and structured navigation. You’ll want to include keywords, page titles, meta tags and headings for search engine optimisation. There are some hallmarks we use when writing web copy for our clients:\\n\\n-\\tKeep it concise.\\n-\\tRound out sub-headings and headings with keywords.\\n-\\tUse plain English and an informal voice.\\n-\\tStick to common language conventions.\\n-\\tBe direct and use active tense.\\n-\\tStructure your information consistently and logically.\\n-\\tSpeak to your audience.\\n\\n\\n##### **4. Speed it up and make it simple**\\n\\nLet’s face it. We’re a busy bunch, and a reminder of the old days of dial-up—waiting for your site to load—will test the patience of even the most loyal visitor. In fact, many visitors will abandon a website after just a few seconds of loading time. Longer loading time is usually caused by complicated design, so make smart design decisions.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP7D0kN7UR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":null,\"plainText\":\"**From site structure to copy, design and development, we’re passionate about finding the best, most creative way to present your business. Talk to us about it today.**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138147,141908,1,'Are customers giving up on your website?','2022-08-08 07:04:07','2022-08-08 07:04:07','fdf2acf8-b241-4481-b3a6-a3523a08186d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gahB36q3Yd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We’ve all tried to navigate frustrating websites that have ended in annoyance, giving up and even turning to a competitor. Good web design translates to successful conversions, and that all depends on user experience.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Usually, we’re only willing to give a website one minute to display what we’re looking for before we give up. The most common website complaints are that there is ‘too much going on’ and also ‘not enough information’. Translation: many sites drone on and on… but don’t really say much.\\n\\nUsers also complain—across all age groups and digital skill levels—that text is too small and navigation is difficult. Thirty-five per cent of users fail to complete simple tasks on the average website.\\n\\nLet’s improve those stats, shall we?\\n\\n##### **1. Design from the user’s perspective, not your own**\\n\\nWe know your company is the greatest thing since Google and you can’t wait to tell everyone all about where it began, who works there and the details of your offering. But the truth is this: users just want to get to the point, and their interests should override yours. \\nUsability is key. Show them what they’re looking for, and don’t make them search for it.\\n\\n##### **2. Create a navigation path**\\n\\nIf the information on your website is simple and structured, you can guide visitors along the path you’d like them to take—their user journey. Use tabs and sub-pages for different categories and keep it super logical.\\n\\n##### **3. Content is everything**\\n\\nContent is the most important element of your site, really—and it needs to fit the logical and structured navigation. You’ll want to include keywords, page titles, meta tags and headings for search engine optimisation. There are some hallmarks we use when writing web copy for our clients:\\n\\n-\\tKeep it concise.\\n-\\tRound out sub-headings and headings with keywords.\\n-\\tUse plain English and an informal voice.\\n-\\tStick to common language conventions.\\n-\\tBe direct and use active tense.\\n-\\tStructure your information consistently and logically.\\n-\\tSpeak to your audience.\\n\\n\\n##### **4. Speed it up and make it simple**\\n\\nLet’s face it. We’re a busy bunch, and a reminder of the old days of dial-up—waiting for your site to load—will test the patience of even the most loyal visitor. In fact, many visitors will abandon a website after just a few seconds of loading time. Longer loading time is usually caused by complicated design, so make smart design decisions.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP7D0kN7UR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":null,\"plainText\":\"**From site structure to copy, design and development, we’re passionate about finding the best, most creative way to present your business. Talk to us about it today.**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138149,141910,1,'What the artist breaks','2022-08-08 07:05:22','2022-08-08 07:05:22','88816ff5-152e-4bc3-81d9-ed586c5af66e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QjbPRQcxAH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"It’s arguable that copywriting is at the heart of all advertising and marketing today. We remember taglines and recall jingles; and copy is the beginning of most brand stories. But, boy, is it fantastic to look back at a time when it really was all about the words.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Bill Bernbach was the founding creative director of legendary Manhattan ad agency Doyle Dane Bernbach (DDB). He came out with quotes like:\\n\\n“Advertising is fundamentally persuasion and persuasion happens to be not a science, but an art”, and\\n\\n“Word of mouth is the best medium of all”, and\\n\\n“Rules are what the artist breaks; the memorable never emerged from a formula.”\\n\\nThat’s really provocative stuff that makes you nod your head at the truth and simple power of his thinking—and imagine how inspiring but uncompromising a boss he would have been. What an exhilarating time to be writing.\\n\\nBernbach not only had a way with a turn of phrase, but he also really set up the structure of creative teams for marketing and advertising, and was, of course, part of the inspiration for Mad Men. But mostly, he was a writer. And what a writer he was. His firm revolutionised advertising copy and laid out the early foundations for brand storytelling through engaging narrative and brand persona development. We can, and have, all learned from these guys.\\n\\nIn the 1960s, DDB took on Volkswagen as a client and began creating a series of print ads that referred to the VW as a “lemon” and encouraged consumers to “think small”. The copy, by the incomparable Julian Koenig, starts out saying “This Volkswagen missed the boat. The chrome strip on the glove compartment is blemished, and must be replaced.” Not exactly sales speak.\\n\\n##### **It was funny. It was clever. And it was ground-breaking.**\\n\\nFor the rest of the decade, VW kept their unconventional campaign rolling. DDB’s strategy of turning seeming faults into benefits was a huge hit. One ad didn\'t even include a picture of the little lemon: “No point in showing you the 1962 Volkswagen. It still looks the same.”\\n\\nMuch has been written about the ads, and you can take a look at a bunch of them here if you like. It was ranked the best advertising campaign of the twentieth century by Ad Age, and it deserves the title. This sort of brand bravery is rare and may be a little of its time, too. The truth is that the power is all right there, in the copy, which exists to inspire us. Last words to Mr Bernbach himself:\\n\\nYou can say the right thing about a product and nobody will listen. You\'ve got to say it in such a way that people will feel it in their gut. Because if they don\'t feel it, nothing will happen.\\n\\nWhat is your brand really saying?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What the artist breaks','It’s arguable that copywriting is at the heart of all advertising and marketing today. We remember taglines and recall jingles; and copy is the beginning of most brand stories. But, boy, is it fantastic to look back at a time when it really was all about the words.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138151,141912,1,'Careers','2022-08-08 07:07:49','2022-08-08 07:07:49','9e0e543a-4ec8-4824-9091-da5e770eb560',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NyO0Ik0kgl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Careers\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We are a Brisbane-based agency renowned for our evidence-based, strategic approach to truly wonderful creative work. We are strongly purpose-driven—wholeheartedly committed to making a meaningful difference in the lives of our clients, their customers and the community at large. Our work is rewarding.\\n\\nThe best part of what we do is doing it together. There’s nothing quite like a room full of inspired, inspiring people united by purpose and passion—and we’re thrilled at the idea of you being a part of that.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Careers\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GoUEZyUfSg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-rG4w99hwoM\",\"content\":{\"fields\":{\"accordionContent\":{\"new1\":{\"type\":\"accordionBlock\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"accordionTitle\":\"Senior designer\",\"accordionText\":\"As our senior brand and campaign designer, you’ll be a part of the end-to-end creative process to create and recommend the best design and visual solutions for each client. \\n\\nYou will assist the Head of Design, and deliver a clear design vision and brand story for all products and services with each client.\\n\\nYou’ll have 8+ years of agency experience, in both branding and campaign. Your portfolio will include examples of brand development, identity and design, in both print and digital, as well as strong retail campaign experience. \\n\\nYou love designing high-end visual work as part of a thriving studio. \\n\\nYou\'re a great communicator and love to get hands-on by getting involved with branding workshops and helping with photo/video shoots. \\n\\nWe love creative side hustles, so if you’ve got one, we’d love to hear about it. \\n\\n\\n**As a creative you’ll bring**\\n<ul>\\n  <li>•  A desire for generating top-quality work grounded with metaphor and hidden meaning and detail, and executed with a distinct passion for your craft</li>\\n  <li>•  Versatility and well-rounded skills to work across many different clients, adapting to varying styles, within timeframes and budgets</li>\\n  <li>•  A hunger to create award-winning work that you can own</li>\\n  <li>•  A relaxed mindset to pitch in with whatever’s required</li>\\n</ul>\\n\\n**As an applicant you’ll bring**\\n<ul>\\n  <li>•  4+ years as a senior designer, 8+ years in the industry</li>\\n  <li>•  An awesome portfolio with variety but also a degree or equivalent qualification</li>\\n  <li>•  Passion for working with and alongside other people, collaborating for creative solutions and outcomes</li>\\n  <li>•  Flexibility and a team-focused attitude</li>\\n  <li>•  High-level attention to detail</li>\\n  <li>•  Amazing understanding of typography and its application</li>\\n  <li>•  Solid suite skills, specifically Adobe and Figma</li>\\n  <li>•  Ability to roll out a brand from go to whoa, including style guide, marketing/social collateral and website</li>\\n  <li>•  Potentially, a second love behind branding – like digital design, UX or animation</li>\\n  <li>•  Keen time management with the ability to meet tight deadlines</li>\\n  <li>•  A commitment for constant progression and desire to go above and beyond</li>\\n  <li>•  A strong understanding of traditional channels, platforms and new technology</li>\\n  <li>•  A high level of energy and enthusiasm along with a lifelong calling for karaoke. (Not 100% necessary. Just 99%.).</li>\\n</ul>\",\"buttonText\":\"Apply now\",\"buttonUrl\":\"#applicationForm\"}}},\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GqLHJAoMsp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The Benefits\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This is a rare opportunity to join a fast-growing and supportive agency in a very exciting phase of its evolution. A competitive salary will be negotiated.\\nEveryone at NWO enjoys fantastic benefits – from flexibility to bonuses, professional development and a comprehensive wellbeing program.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Flexibility and additional leave**\\n\\n- Hybrid working environment with genuine flexibility work from home and our office at Greenslopes\\n- One day per semester of paid study leave\\n- Early, late and split day options\\n- Extra day of leave for an extra happy birthday\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Bonus benefits**\\n\\n- $650 a year via AirWallex to spend on you, however you choose ($50 a month–extra $50 in your birthday month)\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new5\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Professional development**\\n\\n- Work with top executives in wide-ranging sectors\\n- Gain deep expertise across all creative fields\\n- Flexible teams means you’ll work on every account\\n- Paid professional membership of your choice\\n- Annual $1000 professional development budget\\n- Learning and development plan for every employee\\n- Study leave for post-graduate study\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new6\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Wellbeing**\\n\\n- Weekly or fortnightly 1-1 with direct manager\\n- Quarterly goal-setting and performance review\\n- Free access to Employee Assistance Program\\n- Intentional Wellbeing at Work program, including massage and yoga\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new7\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Happy Friyay (and every other day)**\\n\\n- Weekly team lunches and drinks\\n- Quarterly team nights out\\n- EOFY and Christmas staff parties\\n- Mid-year and end-of-year all-team days to rest, reflect and plan\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LhE8ewXDdj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\'s next?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"If this role sounds perfect for you, fill in the apply form below, and attach your cover letter and a link to your website or portfolio. \\n\\nWe’re looking forward to saying hello!\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BtRUbwXzyb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-s0nVisNYi6\",\"content\":{\"fields\":{\"spacer\":\"pt-8 md:pt-16 bg-black\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fz4qdj0CRS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<div id=\\\"applicationForm\\\">\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: \\\"na1\\\",\\n    portalId: \\\"8394441\\\",\\n    formId: \\\"54bb36ff-8ada-4b4f-b1f9-73d1c7fc42c6\\\"\\n  });\\n</script>\\n</div>\",\"backgroundColour\":\"bg-black\",\"sectionTitle\":\"Application forms\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Careers at New Word Order','We are a Brisbane-based agency renowned for our evidence-based, strategic approach to truly wonderful creative work','careers design copy digital','New Word Order',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138152,141913,1,'Careers','2022-08-08 07:07:53','2022-08-08 07:07:53','133e5b0e-7d2f-4255-bf61-e419a7a6770c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NyO0Ik0kgl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Careers\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We are a Brisbane-based agency renowned for our evidence-based, strategic approach to truly wonderful creative work. We are strongly purpose-driven—wholeheartedly committed to making a meaningful difference in the lives of our clients, their customers and the community at large. Our work is rewarding.\\n\\nThe best part of what we do is doing it together. There’s nothing quite like a room full of inspired, inspiring people united by purpose and passion—and we’re thrilled at the idea of you being a part of that.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Careers\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GoUEZyUfSg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-rG4w99hwoM\",\"content\":{\"fields\":{\"accordionContent\":{\"new1\":{\"type\":\"accordionBlock\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"accordionTitle\":\"Senior designer\",\"accordionText\":\"As our senior brand and campaign designer, you’ll be a part of the end-to-end creative process to create and recommend the best design and visual solutions for each client. \\n\\nYou will assist the Head of Design, and deliver a clear design vision and brand story for all products and services with each client.\\n\\nYou’ll have 8+ years of agency experience, in both branding and campaign. Your portfolio will include examples of brand development, identity and design, in both print and digital, as well as strong retail campaign experience. \\n\\nYou love designing high-end visual work as part of a thriving studio. \\n\\nYou\'re a great communicator and love to get hands-on by getting involved with branding workshops and helping with photo/video shoots. \\n\\nWe love creative side hustles, so if you’ve got one, we’d love to hear about it. \\n\\n\\n**As a creative you’ll bring**\\n<ul>\\n  <li>•  A desire for generating top-quality work grounded with metaphor and hidden meaning and detail, and executed with a distinct passion for your craft</li>\\n  <li>•  Versatility and well-rounded skills to work across many different clients, adapting to varying styles, within timeframes and budgets</li>\\n  <li>•  A hunger to create award-winning work that you can own</li>\\n  <li>•  A relaxed mindset to pitch in with whatever’s required</li>\\n</ul>\\n\\n**As an applicant you’ll bring**\\n<ul>\\n  <li>•  4+ years as a senior designer, 8+ years in the industry</li>\\n  <li>•  An awesome portfolio with variety but also a degree or equivalent qualification</li>\\n  <li>•  Passion for working with and alongside other people, collaborating for creative solutions and outcomes</li>\\n  <li>•  Flexibility and a team-focused attitude</li>\\n  <li>•  High-level attention to detail</li>\\n  <li>•  Amazing understanding of typography and its application</li>\\n  <li>•  Solid suite skills, specifically Adobe and Figma</li>\\n  <li>•  Ability to roll out a brand from go to whoa, including style guide, marketing/social collateral and website</li>\\n  <li>•  Potentially, a second love behind branding – like digital design, UX or animation</li>\\n  <li>•  Keen time management with the ability to meet tight deadlines</li>\\n  <li>•  A commitment for constant progression and desire to go above and beyond</li>\\n  <li>•  A strong understanding of traditional channels, platforms and new technology</li>\\n  <li>•  A high level of energy and enthusiasm along with a lifelong calling for karaoke. (Not 100% necessary. Just 99%.).</li>\\n</ul>\",\"buttonText\":\"Apply now\",\"buttonUrl\":\"#applicationForm\"}}},\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GqLHJAoMsp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The Benefits\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This is a rare opportunity to join a fast-growing and supportive agency in a very exciting phase of its evolution. A competitive salary will be negotiated.\\nEveryone at NWO enjoys fantastic benefits – from flexibility to bonuses, professional development and a comprehensive wellbeing program.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Flexibility and additional leave**\\n\\n- Hybrid working environment with genuine flexibility work from home and our office at Greenslopes\\n- One day per semester of paid study leave\\n- Early, late and split day options\\n- Extra day of leave for an extra happy birthday\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Bonus benefits**\\n\\n- $650 a year via AirWallex to spend on you, however you choose ($50 a month–extra $50 in your birthday month)\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new5\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Professional development**\\n\\n- Work with top executives in wide-ranging sectors\\n- Gain deep expertise across all creative fields\\n- Flexible teams means you’ll work on every account\\n- Paid professional membership of your choice\\n- Annual $1000 professional development budget\\n- Learning and development plan for every employee\\n- Study leave for post-graduate study\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new6\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Wellbeing**\\n\\n- Weekly or fortnightly 1-1 with direct manager\\n- Quarterly goal-setting and performance review\\n- Free access to Employee Assistance Program\\n- Intentional Wellbeing at Work program, including massage and yoga\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new7\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Happy Friyay (and every other day)**\\n\\n- Weekly team lunches and drinks\\n- Quarterly team nights out\\n- EOFY and Christmas staff parties\\n- Mid-year and end-of-year all-team days to rest, reflect and plan\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LhE8ewXDdj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\'s next?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"If this role sounds perfect for you, fill in the apply form below, and attach your cover letter and a link to your website or portfolio. \\n\\nWe’re looking forward to saying hello!\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BtRUbwXzyb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-s0nVisNYi6\",\"content\":{\"fields\":{\"spacer\":\"pt-8 md:pt-16 bg-black\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fz4qdj0CRS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<div id=\\\"applicationForm\\\">\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: \\\"na1\\\",\\n    portalId: \\\"8394441\\\",\\n    formId: \\\"54bb36ff-8ada-4b4f-b1f9-73d1c7fc42c6\\\"\\n  });\\n</script>\\n</div>\",\"backgroundColour\":\"bg-black\",\"sectionTitle\":\"Application forms\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Careers at New Word Order','We are a Brisbane-based agency renowned for our evidence-based, strategic approach to truly wonderful creative work','careers design copy digital','New Word Order',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138153,141914,1,'Update details','2022-08-08 07:08:20','2022-11-02 04:07:54','daffaaaa-533f-4093-8f72-661b5ab52fc3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WQdEvDKsSL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Enter your details\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Enter your details\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PSqM6x8LeL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<!--[if lte IE 8]>\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2-legacy.js\\\"></script>\\n<![endif]-->\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n\\tregion: \\\"na1\\\",\\n\\tportalId: \\\"8394441\\\",\\n\\tformId: \\\"bc6282cb-a942-406c-bc57-b0b253a1cc4d\\\"\\n});\\n</script>\",\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138155,141921,1,'QMHC','2022-08-09 00:06:09','2022-08-09 00:06:09','7a8b70bf-f0b0-4aec-9b2f-1eeaea4a0c1e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Stakeholder engagement',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QkuSHpszbt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47656\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-B6PvNvL5Iy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We gained clear lines of sight into the impressions and needs of their stakeholder audience through 26 guided, in-depth phone interviews. Each interview was between 30 and 45 minutes long, and followed an approved guide to elicit data and insights to key questions. Key stakeholders included representatives of vulnerable groups, including remote communities, LGBTIQ+ stakeholder organisations, and Aboriginal and Torres Strait Islander groups.\\n\\nFrom this data, we developed an insights document and then a strategy to enable the Commission’s 20+ staff to better reach stakeholders with timely, needed communication and engagement opportunities.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F39qRl2lIU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47657\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'QMHC','Stakeholder engagement',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138157,141923,1,'Domestic and family violence','2022-08-09 00:07:42','2022-08-09 00:07:42','84221f75-400a-408a-a9c2-b44dca06f5a9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Everyone deserves to feel safe',NULL,NULL,'We developed a powerful campaign—visuals, messaging and animation—to help Queenslanders understand the nature of domestic and family violence and to seek help for themselves or others.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2BMTwZsxt5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16826\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yW5tY9wyAQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"To help slow the spread of COVID-19, Queenslanders are spending more time at home—but home isn’t always a safe place.\\n\\nEveryone deserves to feel safe. Domestic and family violence is never acceptable. Help and support are available.\\n\\nThis is the campaign message the Queensland Government commissioned us to develop as the impact of COVID-19 rippled across our state.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BAdruYcFgJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16838\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CsRNpWzHen\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started the project by researching DFV campaigns in Australia and around the world.\\n\\nOur diverse target market included:\\n- Adult Queenslanders 18+ who are affected by domestic and family violence\\n    - People experiencing domestic and family violence\\n    - People who become aware of domestic and family violence occurring\\n- Young Queenslanders 13-17 years old who may be affected by domestic and family violence in their household.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fOoytqzb18\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16839\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-refpZT5QBU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Messaging\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Rather than describe exactly what DFV might look like, the scripts and campaign advertisements echo the thoughts and feelings of those experiencing or observing DFV.\\n\\nThe copy style is concise, informal and written to an individual. DFV is complex and often hard to identify. We unpacked the different dimensions of DFV and always pointed the reader or viewer to help and support.\\n\\nOur messages were targeted to a diverse Queensland audience. We aimed to capture the human experience and emotions of DFV through the voice and style of the copy.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7Bn5w0QSW7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16840\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JtCJdSgzXY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our creative team completed an environmental scan to develop three design concepts with strategic choices in colours, symbols, typography and iconography.\\n\\nThe icons are simple and symbolic. We were careful to avoid using the human figure or gender-specific shapes to symbolise violent or threatening behaviours.\\n\\nInstead, our goal was to capture the far-reaching effect of domestic violence in the home and family through clean and minimal iconography, colours and shapes.\\n\\nWe used brand colours strategically, ensuring they were striking but not aggressive or alarming. Wherever possible, we avoided dark colours and shadows.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NnJbovUwRk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/572805319?h=8a36b70d04&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/572805011?h=d90ee17ccd&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vsjyJmaOWT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Animation\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"When directing the animation style, we wanted to convey the key messages of the campaign clearly and quickly. The morphing animation style is eye-catching and interesting.\\n\\nThe morphing shapes also efficiently unpack important messages to the viewer, complementing and supporting the messages in the video voiceover.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-asjEpeVorj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/572804196\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0Latj6rdpS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Phase 2\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"After the success of our 2020 launch, we rolled out a new iteration in 2021 that focused more on the non-physical forms of domestic and family violence.\\n\\nThis includes behaviour around controlling or monitoring finances, technology and social interactions.\\n\\nOur goal: to raise awareness and understanding of these forms of abuse, and communicate the seriousness of these behaviours.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aCf57wrIYs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/430227569\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Qes33flGQL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Work of this kind speaks straight to our purpose as an agency: to make a meaningful impact to people’s lives. Our team is proud to have been involved supporting families in our local community.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Domestic and family violence','We developed a powerful campaign—visuals, messaging and animation—to help Queenslanders understand the nature of domestic and family violence and to seek help for themselves or others.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138159,141925,1,'Urban Utilities','2022-08-09 04:18:53','2022-11-16 22:16:58','141eb151-d108-4b46-95b8-f967b1f1a1fb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EKKA activation',NULL,NULL,'Urban Utilities (UU) knows how important water is to our future, so they’re working hard to protect it. They need Queenslanders to care about water security, too. An EKKA display was the perfect way to engage with the community and remind them just how vital water is to their day-to-day life. With brightly coloured videos, graphics and illustrations arranged meticulously in a creative display, we helped UU remind people about their connections with water.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DrXALPWSBT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141998\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DxF20Yq1PE\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:100% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/739527258?h=882d5c0119&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"uu_ekka_-_vertical_screens (Original)\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oonbweG5hq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"UU identified the EKKA as an opportunity to engage, inform and educate their customers to build a deeper understanding of water security, and to set the stage for UU to influence water restrictions down the track.\\nThrough hands-on activities and immersive visual displays, the EKKA was the perfect place to connect with UU’s communities and reassure them that UU is a safe pair of hands that holds and shapes the future of water security.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1kDHeWuzrh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950657?h=2534af59fd&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"AV 1 GRID COMBINE 03 SIDE 01\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KIDD88kVSZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950688?h=d7032fa1fb&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"AV 1 GRID COMBINE 03 SIDE 02\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3OqKknGGDL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Thematically, this activation was centred around each individual’s connection with water. Through making people conscious of water’s impact on their day-to-day life, we helped them discover how essential water security is and appreciate the role UU plays in protecting our water supply—and ultimately, the lifestyles and livelihoods of Queenslanders.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ovoFZRL7or\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141946\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lTaGbDU5Lj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The goal of the EKKA display was three-fold: attract people to the space, engage them to participate and ensure they absorb the key messaging.\\nWe were working with an eight-metre-wide screen, so we determined pretty quickly that one very (very!) landscape video wouldn’t be the best viewing experience. So we did what we do best: We got creative. We fashioned a collage of videos with various illustrated key messages, live action footage and graphic patterns that loop and combine into an engaging, eight-metre video experience.\\nThe audience were able to contribute their personal connection with water through sketches and scribbles on magnetic tiles. Each tile was fixed to the wall to create a crowdsourced water mosaic that grew over the course of the EKKA, telling true stories of water memories and moments.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RfRSpmcchL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950797?h=70d6f4f8b8&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"UU Component video 03\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950835?h=dc404ebf2f&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"UU Component video 04\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JPYArnyhMD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141947\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-J2iJEncoXv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950768?h=bc2c007c2c&badge=0&autopause=0&player_id=0&app_id=58479/embed\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen frameborder=\\\"0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\"></iframe></div>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950743?h=698f98e314&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"UU Component video 01\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ez0JB2esSl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141948\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Bright colours, custom illustration, lots of movement and bold statements—that’s the sweet combination we concocted to communicate some very important key messages to the audience.\\nAnd the icing on top of the strawberry sundae? We just had so much fun coming up with the concept and bringing it to life. The EKKA public holiday didn’t hurt, either.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Urban Utilities EKKA activation','Urban Utilities (UU) knows how important water is to our future, so they’re working hard to protect it. They need Queenslanders to care about water security, too. An EKKA display was the perfect way to engage with the community and remind them just how vital water is to their day-to-day life. With brightly coloured videos, graphics and illustrations arranged meticulously in a creative display, we helped UU remind people about their connections with water.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138161,141927,1,'Chevron','2022-08-12 03:38:44','2022-08-12 03:38:44','47c0684c-b701-4b56-8e37-86d34ffda1a4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed to the roster of agencies for Chevron Downstream Australia as they reignited their Australian operations. We\'re helping them reconnect with their customers, relaunch their Puma retail network under the Caltex brand, and grow their market share in the lubricants B2B market.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gvKwuoJR7j\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547129?h=68b08b3b6f&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Downstream Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian B2B fuels and lubricants division.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z59xrAwLVU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We conducted a competitor analysis to assess competitor brand messaging and positioning, interviews with key Caltex fuels and lubricants distributors in the B2B market, and one-on-one interviews with the general customers.\\nOur insights indicated a need for authentic, ‘real life’ marketing collateral with which the audience can connect. We also gleaned that the messaging needed to be kept simple.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-f5LPArKwgF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689548339?h=5797d76cc7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP9dMqkL3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We made the creative decision to let the products take a backseat and instead shine a light on the customers’ businesses and their distributor relationships.\\nWe worked with a videographer to give the videos a warm and, at times, heartfelt tone. The customers in question are mostly generations-old businesses with a story to tell. So we told some stories.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gLOsbQtiKq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547741?h=7529fef734&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ahQwPi3ZPn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result was 60 video variations in a style you wouldn’t necessarily associate with marketing around fuel and lubricant products—something a little surprising, something that stands out from the crowd.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5dbIBMfjBJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“Our customers are the centre of everything we do, so we’re really proud to have created something that’s authentic to their experiences—their relationships with the distributors, their family values and the inter-generational ties in each of their businesses.\",\"plainText\":\"“We challenged New Word Order with a complex brief of showcasing the product, telling a compelling story about the customer and distributor relationship, and delivering the message that the products customers know and love are back for good. <br> \\n“New Word Order perfectly captured all of those elements in a cohesive video series that authentically connects with the audience.” <br> \\n\\n** — Cris Gillespie, Head of Marketing at Chevron **\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign','Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138163,141929,1,'Aseeos','2022-08-12 03:45:04','2022-08-12 03:45:04','709d5e78-ab30-46f4-a2f4-0cd7a7b31775',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Delivering for disruptors',NULL,NULL,'Aseeos rebranded to transform its 10-year-old installation business into an industry-disrupting model that solves age-old industry problems of supply, quality and budget overruns. We worked closely with the team to take its core brand elements and develop a full range of collateral, including signage, brochures and catalogues, video, marketing, events and website.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bmUfyXmDcz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47997\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fyTxfCvyJr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47773\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WYeceTl1wB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/194746924?h=02b6e594f2&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Aseeos - Delivering for disruptors','Aseeos rebranded to transform its 10-year-old installation business into an industry-disrupting model that solves age-old industry problems of supply, quality and budget overruns. We worked closely with the team to take its core brand elements and develop a full range of collateral, including signage, brochures and catalogues, video, marketing, events and website.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138165,141931,1,'Coomera Anglican College','2022-08-12 03:45:45','2022-08-12 03:45:45','06f674c6-3021-4cfa-9228-2e31b77efd5d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Anything is possible campaign',NULL,NULL,'This campaign is bridging the gap between Coomera Anglican College\'s storied past and bold future. It\'s a powerful positioning piece that\'s standing the college out from the crowd and showcasing it as the school of choice on the northern Gold Coast.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-B24Vguyo08\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30448\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-I4OkseByw6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Storied past, bold future\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Coomera Anglican College is heavily storied. It’s done a lot of work to capture its history and moments. As result, there is a lot of heritage and tradition for a relatively young school (just 25 years).\\n\\nThe college has set a strong future of innovation and entrepreneurship. It has appointed a deputy principal whose whole focus is innovation. It also has an exceptionally future-focused business manager who is sports-obsessed with big dreams.\\n\\nOur work is helping the college bridge the gap from the past to an exciting future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3S8xZRT3yd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30447\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1dcAEtVD40\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Following focus groups, in-depth interviews, a competitor analysis and a brand refresh in 2020, we embarked on developing a new public-facing campaign to help the college continue to position itself as the private school of choice for the rapidly growing northern Gold Coast region.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7mko9XHUCj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30449\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-27uMRCFOVx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"In order to stand out in the crowded private school space, we looked outside of schools for inspiration—drawing from global sports and technology brands.\\n\\nThis campaign steers right away from traditional school advertising: think students standing and smiling in their school uniforms, older and younger students holding hands and walking through manicured school grounds, girls in safety glasses huddled over a beaker and Bunsen burner.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EkVYlvmrxM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30444\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ek8exDfZlT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The result is a powerful cinematic masterpiece: dramatic, inspirational and compelling. The script was drawn from lyrics of the college’s traditional song. Paired with the inspiring footage, the video effectively acknowledges the past while painting a vivid picture of the future.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IGcqD2p42y\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30445\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CUjY0m7ysa\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“It was a pleasure working with New Word Order to develop the new creative for our College. They took the time to get to know what makes our college unique, and helped put that into tangible storytelling.”\",\"plainText\":\"— Aimee Barlett, Marketing and Communications Manager at Coomera Anglican College\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Ja5zJfaN0T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"30446\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Coomera Anglican College','This campaign is bridging the gap between Coomera Anglican College\'s storied past and bold future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138167,141933,1,'Heart HQ','2022-08-12 03:46:35','2022-08-12 03:46:35','3ba8eb01-11e2-4316-9f22-990841ad1160',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'World-class medical with heart',NULL,NULL,'Big ambitions need a brand that accurately reflects their vision and mission, and that’s exactly what we sought to deliver for this client. With Heart HQ, and with the enormous amount of collateral that supports it, we’ve well and truly delivered this.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-P3bQXxcsfs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44878\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uicOuPt9of\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Sunshine Coast Heart Specialists was growing and changing. \\n\\nIn six years, the cardiology practice had grown to nearly 50 staff with rooms throughout the coast. Their cardiologists represented all of the possible sub-specialties within their profession. Within weeks, they would move to new purpose-built premises at Sippy Downs. They were about to open their own coronary CT clinic to the public and a heart murmur clinic to support GPs—both nation-leading initiatives.\\n\\nThe directors realised their geography-specific name would limit their ability to keep growing, and so renaming and rebranding was a strong need.\\n\\nTheir growth had also occurred at such a rate that there was strategic work needed to understand their market share and to form a marketing strategy that would offer them opportunities for segmentation. Growth is reliant on satisfied referring GPs and specialists, and so attention could never be removed from this area.\\n\\nFinally, such growth was also outstripping their capacity to fill the need. Cardiology is a highly specialised field within medicine, and to grow sustainably, they needed to attract more associates.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Lgp01pReVY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44873\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aTg3yWEGh3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Objective\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The practice needed a new name and brand assets for the business to accurately convey the mission and vision of the business, and to grow the business’s referrer and patient networks.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gG5PvaSbvX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44864\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oXH0AQY2PC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our brand strategy drew on customer and referrer interviews, competitor insights and employee workshops, which also helped to define the brand values of the business. \\n\\nIt was clear the practice and the individual directors were held in high esteem by their medical colleagues. They introduced surgical procedures to the Sunshine Coast that were, until then, only practised by a few in major cities. They were introducing clinics and services that had not been seen in regional areas in Australia. This gave us the confidence to be able to propose a tagline that truthfully boasted, ‘world-class cardiac care’.\\n\\nThe second part of the tagline reads: ‘…on the Sunshine Coast’. To compensate for the move away from the regionalisation in their original brand name—Sunshine Coast Heart Specialists—we added it to the tagline. The reason for this is that patients along the coast appreciated the practice was the only place where they could receive the full spectrum of care without having to travel to Brisbane.\\n\\nFinally, an important branding insight from our research was that patients were on a health journey—sometimes quite a precarious one—and could be experiencing anxiety. Patients told us they appreciated the kindness each doctor showed to them in their time of need. Simply promoting expertise could come across as cold and would not fairly represent the doctors’ deep commitment to quality care. So the Heart HQ brand connects with patients on a personal level and makes them feel reassured that they matter.\\n\\nIt’s this mix of strategy and heart that makes Heart HQ a brand that will stand tall among all the others.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ISdJyIN6AW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44874\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDNF080GkR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A name, tagline, brand visual identity, website, signage and countless assets that match up with Heart HQ’s brand promise of delivering world-class cardiac care on the Sunshine Coast.\\n\\nThe quality of the brand assets significantly differentiates Heart HQ from all other competitor practices.\\n\\nCreatively, the brand is modern, refreshing and arguably not what you would expect from an organisation in the medical field – but at the same time, the language is warm, supportive and with just the right amount of authority.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Np5NPasoP9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"##### \\\"Suzanne and her team came highly recommended. It was a great journey working with them to develop our new brand and we were very impressed with their ideas, enthusiasm and innovation. We have a new brand, a new identity and the confidence now to deliver on our growth plans.\\\"\\n\\n**Dr Peter Larsen**\\n<br>Managing Director – Heart HQ\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3VvPbVRO0Q\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45205\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AUTeHLiAy1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"##### \\\"NWO is part of our success journey.\\\"\\n\\n**Dr Peter Larsen**\\n<br>Managing Director – Heart HQ\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'Heart HQ','Big ambitions need a brand that accurately reflects their vision and mission, and that’s exactly what we sought to deliver for this client.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138169,141935,1,'Revelian','2022-08-12 03:46:46','2022-08-12 03:46:46','d87c01fb-5d89-4b7a-8cbe-0e60b7f6ec3c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The big reveal',NULL,NULL,'Revelian is a charismatic player in the field of business talent identification and assessment. We told Revelian’s story by rolling out a suite of new brand tools and using a powerful visual metaphor for the outcomes their customers gain.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wVL1kj40Jr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47639\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3ldwVmO5X2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"A beautiful partnership\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our goal was to position and powerfully differentiate this business from its competitors. The branding achieves this and binds Revelian’s internal team more closely to its purpose and business objectives. In doing so, it ensures current and prospective customers and partners can access, understand—and most importantly—prefer Revelian and its offering.\\n\\nOverall, our rollout for Revelian was staged and achievable, allowing the client to adjust and update their brand over time. This approach remains cost-effective for our client and has allowed us to work with them closely with key stakeholders to ensure we are meeting their needs and creating value for their investment.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-88fP2RTozJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47641\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-l0m2MRWrk9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"A new brand story to tell\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The Revelian brand story centres around the stories of their prospective customers—those who require business talent identification and assessment. Revelian’s narrative guides these customers along a compelling journey. It reads like any good treasure hunt should: the hunter driven by the thrill of next step and the genuine promise of quality and authenticity.\\n\\nThe intrigue and complexity of human behaviour is a fascinating topic that most of us explore throughout our daily life and work. Revelian uncovers the hidden, delves inside and goes beneath the surface to reveal the truth inside people, for businesses and organisations wanting to hire people well, and utilise them well.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3wNj8vd0Xj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/317380021?h=7cf79dbb3e&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-zVMqQZyrh0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"A refreshing approach\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As we refreshed their brand, we wrapped every element in the concept of ‘reveal’. The idea flows consistently throughout every aspect of the Revelian brand: we’ll start on the surface and delve deeper into the intrigue of human behaviour and insights for hiring and people management solutions.\\n\\nWhile the logo remains simple, strong and typographic, the visual elements have starring roles. Using filters, colours, photography and myriad gorgeous design treatments, they show and tell how the company reveals its precious insights.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WxJNoxzJXO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47642\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UCB7SM9ORH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strong, productive relationships\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our successful working relationship with the client has been key to forming the initial strategy for their brand development, website, collateral and exhibition development.\\n\\nOur team of creatives, developers and content specialists have enjoyed walking through this journey with Revelian.\\n\\nThe insights we’ve gained from this partnership have allowed us to produce work that performs to a very high standard within the agreed-upon scope, budget and timeframe.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kBhhzN53nM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47643\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FzPUJWQp19\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"A new front door\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"After refreshing their brand, we began redeveloping the Revelian website. To start with, we created a content strategy based on customer journeys and key messages. \\n\\nOur team of content specialists worked with the client to edit and review web copy for pages on the website. \\n\\nWith copy and wireframes ready and approved for development, our digital team applied the refreshed branding across the website.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Revelian','We told Revelian’s story by rolling out a suite of new brand tools and using a powerful visual metaphor for the outcomes their customers gain.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138171,141937,1,'Tritium','2022-08-12 03:46:53','2022-08-12 03:46:53','4f80e2cf-4f57-43ec-8ed2-fcc5a94bdf7d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand set for the future',NULL,NULL,'As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league. Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GLSN3YDBFD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[\"73939\"],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LrG99HVOYN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"61847\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"BRAND\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tritium is now a global brand—and our work took them to the world stage.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked with Tritium a few years ago to define their brand narrative, design their brand and create logo, visual identity and a range of assets.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZeQWeTuQlo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"73941\",\"73940\",\"73937\",\"73936\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-02qw9cOzxi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141804\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"BRIEF\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked with Tritium when it was in the midst of hypergrowth and collaborated with their founder and leaders across time zones and continents, as well as their rapidly growing marketing and sales teams, to rebrand the company and its products.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"At the time, Tritium was still wearing the badge designed by their founder years earlier and needed to dress for world domination, which they most certainly now are achieving. The brand needed to work in all contexts—on rapid chargers, in signage, in extrusion as well as in print, and it needed to be truly global in its appeal. The brand also needed to consider products that were still emerging and not yet defined.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eEjb9cnAXp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141806\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"RATIONALE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We deeply embedded story in the Tritium brand we developed. The logo is three-sided (for ‘tri’). The blues represent clean power, and each of the three elements of the brand represent battery indicators, from empty to full. Meanwhile, the brand is distinctive yet subtle enough to sit successfully alongside co-branded or white-labelled Tritium products.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8PWapwyQK2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141802\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"OUTCOME\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We successfully positioned Tritium for global expansion. We developed and defined a global Masterbrand with a defined brand narrative and transformational, authentic reflection of their vision. The brand goes from strength to strength and is easily our furthest-reaching and highest impact visual identity, recently listing on the NASDAQ and with none other than POTUS.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Tritium','Tritium commissioned us to update their brand and produce a launch video—to put their internal culture of creativity and innovation on display and share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138172,141938,1,'Domestic and family violence','2022-08-12 03:47:29','2022-08-12 03:47:29','4731316d-db04-4cf4-8a99-a09dc17bdc4c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Everyone deserves to feel safe',NULL,NULL,'We developed a powerful campaign—visuals, messaging and animation—to help Queenslanders understand the nature of domestic and family violence and to seek help for themselves or others.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2BMTwZsxt5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16826\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yW5tY9wyAQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"To help slow the spread of COVID-19, Queenslanders are spending more time at home—but home isn’t always a safe place.\\n\\nEveryone deserves to feel safe. Domestic and family violence is never acceptable. Help and support are available.\\n\\nThis is the campaign message the Queensland Government commissioned us to develop as the impact of COVID-19 rippled across our state.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BAdruYcFgJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16838\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CsRNpWzHen\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started the project by researching DFV campaigns in Australia and around the world.\\n\\nOur diverse target market included:\\n\\n- Adult Queenslanders 18+ who are affected by domestic and family violence\\n    - People experiencing domestic and family violence\\n    - People who become aware of domestic and family violence occurring\\n- Young Queenslanders 13-17 years old who may be affected by domestic and family violence in their household.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fOoytqzb18\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16839\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-refpZT5QBU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Messaging\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Rather than describe exactly what DFV might look like, the scripts and campaign advertisements echo the thoughts and feelings of those experiencing or observing DFV.\\n\\nThe copy style is concise, informal and written to an individual. DFV is complex and often hard to identify. We unpacked the different dimensions of DFV and always pointed the reader or viewer to help and support.\\n\\nOur messages were targeted to a diverse Queensland audience. We aimed to capture the human experience and emotions of DFV through the voice and style of the copy.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7Bn5w0QSW7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16840\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JtCJdSgzXY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our creative team completed an environmental scan to develop three design concepts with strategic choices in colours, symbols, typography and iconography.\\n\\nThe icons are simple and symbolic. We were careful to avoid using the human figure or gender-specific shapes to symbolise violent or threatening behaviours.\\n\\nInstead, our goal was to capture the far-reaching effect of domestic violence in the home and family through clean and minimal iconography, colours and shapes.\\n\\nWe used brand colours strategically, ensuring they were striking but not aggressive or alarming. Wherever possible, we avoided dark colours and shadows.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NnJbovUwRk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/572805319?h=8a36b70d04&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/572805011?h=d90ee17ccd&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vsjyJmaOWT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Animation\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"When directing the animation style, we wanted to convey the key messages of the campaign clearly and quickly. The morphing animation style is eye-catching and interesting.\\n\\nThe morphing shapes also efficiently unpack important messages to the viewer, complementing and supporting the messages in the video voiceover.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-asjEpeVorj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/572804196\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0Latj6rdpS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Phase 2\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"After the success of our 2020 launch, we rolled out a new iteration in 2021 that focused more on the non-physical forms of domestic and family violence.\\n\\nThis includes behaviour around controlling or monitoring finances, technology and social interactions.\\n\\nOur goal: to raise awareness and understanding of these forms of abuse, and communicate the seriousness of these behaviours.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aCf57wrIYs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/430227569\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Qes33flGQL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Work of this kind speaks straight to our purpose as an agency: to make a meaningful impact to people’s lives. Our team is proud to have been involved supporting families in our local community.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Domestic and family violence','We developed a powerful campaign—visuals, messaging and animation—to help Queenslanders understand the nature of domestic and family violence and to seek help for themselves or others.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138174,141940,1,'Your Care Navigator','2022-08-12 03:50:34','2022-08-12 03:50:34','5652bc76-67b4-46ed-9aaf-f3acc3313cb1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator',NULL,NULL,'Ageing can be overwhelming, especially with a dementia diagnosis. There are so many big life decisions to make, services to navigate and logistics to plan. Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support. Additionally, it’s a resource that helps healthcare professionals coordinate care for their patients and provide them with quality resources.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TBzFA0UCIO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141596\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cYowRU3xxP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Brisbane North PHN asked us to write, design and develop a navigator website that doubles as a one-stop-shop of resources, information and services that promote healthy ageing in the Brisbane North and Moreton Bay region. The project’s goal was to enable people to more proactively manage their own healthcare, while also equipping healthcare professional and carers with resources to support their care services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VACsyz6zoc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141602\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Working closely with the client team and the Council on the Ageing, our strategists conducted a stakeholder consultation process with community members and health professionals. The stakeholders generously shared their expertise and lived experience to help this project reach the community’s specific needs, with a particular focus on: dementia, physical health, mental health, social connection, nutrition and digital skills.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pI57baAPCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Each aspect of the content writing, design and development of the website was informed by insights from the stakeholders, to ensure the project would fulfil community needs. We made sure the site was easy to use by integrating a very simple user interface into the web design and development. User experience and acceptance testing was a key element of ensuring the site would be practical and enjoyable for its audience.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RgOzDzfM2D\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Nothing like this existed before now. This project fulfils community needs around healthy ageing in a way that really excited the stakeholders who were involved in the project. This kind of work aligns perfectly with our purpose at NWO: to make a meaningful difference to people’s lives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'My Mental Health','We collaborated with Brisbane North PHN\'s mental health experts to empower consumers, carers and health practitioners to navigate the mental health sector with clear direction and ease.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138176,141942,1,'Your Care Navigator','2022-08-12 03:51:25','2022-08-12 03:51:25','f9cc984e-154e-4510-8453-6dcf52950245',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator',NULL,NULL,'Ageing can be overwhelming, especially with a dementia diagnosis. There are so many big life decisions to make, services to navigate and logistics to plan. Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support. Additionally, it’s a resource that helps healthcare professionals coordinate care for their patients and provide them with quality resources.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TBzFA0UCIO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141596\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cYowRU3xxP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Brisbane North PHN asked us to write, design and develop a navigator website that doubles as a one-stop-shop of resources, information and services that promote healthy ageing in the Brisbane North and Moreton Bay region. The project’s goal was to enable people to more proactively manage their own healthcare, while also equipping healthcare professional and carers with resources to support their care services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VACsyz6zoc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141602\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Working closely with the client team and the Council on the Ageing, our strategists conducted a stakeholder consultation process with community members and health professionals. The stakeholders generously shared their expertise and lived experience to help this project reach the community’s specific needs, with a particular focus on: dementia, physical health, mental health, social connection, nutrition and digital skills.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pI57baAPCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Each aspect of the content writing, design and development of the website was informed by insights from the stakeholders, to ensure the project would fulfil community needs. We made sure the site was easy to use by integrating a very simple user interface into the web design and development. User experience and acceptance testing was a key element of ensuring the site would be practical and enjoyable for its audience.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RgOzDzfM2D\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Nothing like this existed before now. This project fulfils community needs around healthy ageing in a way that really excited the stakeholders who were involved in the project. This kind of work aligns perfectly with our purpose at NWO: to make a meaningful difference to people’s lives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator','Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138178,141944,1,'Queensland Academy of Sport','2022-08-15 02:54:41','2022-08-15 02:54:41','00c2a93a-be4d-4e36-b0fb-5805be93ed2c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'You for 2032 campaign',NULL,NULL,'What New Word Order and the Queensland Academy of Sport (QAS) have in common is a keen eye for talent.\n\nSo when QAS asked us to help identify and develop young Queensland athletes capable of winning medals for Australia at the 2032 Brisbane Olympic and Paralympic Games, we (high) jumped at the chance.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-UMqU1ejtuR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139975\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YLmNoEn3SV\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The QAS talent identification campaign is aimed at Queenslander athletes aged between 13 and 23. It’s the first step in a development journey for an aspiring athlete to becoming an elite, Olympic-level athlete ready to compete on the world stage in their own backyard.\\n\\nOur goal was to build awareness of the campaign and drive as many potential athletes as possible to apply.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0D5dQI141H\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139977\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E7bk6zGGNd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We know the talent identification process for an athlete, and all the development that follows, is an inspiring, aspirational and immensely personal journey, and we wanted the campaign’s language to reflect each of those aspects of the journey.\\nVisually, we recognised that the traditional medal colours wouldn’t necessarily display well and could be limiting, so we chose to update them to create a much brighter, target audience-friendly colour palette.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FITIFbeFNO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139976\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fo1rrBFGWB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"After creating the campaign name, tagline and logo, we reinforced the theme with a digital platform and marketing collateral.\\nWe developed an online application platform designed to appeal to young audiences and our visual identity captures images of some of Queensland’s most well-known Olympic gold medallists.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4tbFuQYNR3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"139978\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dHzG1lmF6k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The result is an inspiring campaign of aspirational language and engaging images that sell the dream of representing Australia in the 2032 Olympics.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Queensland Academy of Sport','What New Word Order and the Queensland Academy of Sport (QAS) have in common is a keen eye for talent.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138179,141945,1,'22 08 Ekka Marketing Website','2022-08-15 05:27:41','2022-08-15 05:27:41','f392f320-8ad7-4f72-9d9a-da94838a384f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_08-Ekka-Marketing-Website.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_08-Ekka-Marketing-Website.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_08-Ekka-Marketing-Website.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_08-Ekka-Marketing-Website.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_08-Ekka-Marketing-Website.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_08-Ekka-Marketing-Website.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_08-Ekka-Marketing-Website.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_08-Ekka-Marketing-Website.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_08-Ekka-Marketing-Website.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_08-Ekka-Marketing-Website.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_08-Ekka-Marketing-Website.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_08-Ekka-Marketing-Website.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_08-Ekka-Marketing-Website.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_08-Ekka-Marketing-Website.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_08-Ekka-Marketing-Website.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_08-Ekka-Marketing-Website.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":768,\"2560\":1536,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":384},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":3125,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABQP/xAAfEAACAgEEAwAAAAAAAAAAAAABAwACEgQFITMREyL/xAAYAQACAwAAAAAAAAAAAAAAAAABBAACA//EAB0RAAICAQUAAAAAAAAAAAAAAAABAhExAwQhMlH/2gAMAwEAAhEDEQA/ACNlUh6TcUIy+Tlzx5EEVUkLa91kJ1fpU+y8bEQNeG8brkvtHTaWj2QtusIOd3GSQzHB/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#141e14\",\"#b1b48c\",\"#1d96af\",\"#556c5c\",\"#2db05f\"],\"lightness\":36,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138180,141946,1,'22 08 Ekka Marketing Website2','2022-08-15 05:30:37','2022-08-15 05:30:37','db7ec49c-77bc-4e24-b929-4b04c3efd95b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_08-Ekka-Marketing-Website2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_08-Ekka-Marketing-Website2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_08-Ekka-Marketing-Website2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_08-Ekka-Marketing-Website2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_08-Ekka-Marketing-Website2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_08-Ekka-Marketing-Website2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_08-Ekka-Marketing-Website2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_08-Ekka-Marketing-Website2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_08-Ekka-Marketing-Website2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_08-Ekka-Marketing-Website2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_08-Ekka-Marketing-Website2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_08-Ekka-Marketing-Website2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_08-Ekka-Marketing-Website2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_08-Ekka-Marketing-Website2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_08-Ekka-Marketing-Website2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_08-Ekka-Marketing-Website2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":768,\"2560\":1536,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":384},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":3125,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQED/8QAJRAAAQMCAwkAAAAAAAAAAAAAAwECEQAEEiE0EzFRYXODkbLC/8QAFwEBAAMAAAAAAAAAAAAAAAAAAwABAv/EABoRAAIDAQEAAAAAAAAAAAAAAAABAiExQYH/2gAMAwEAAhEDEQA/ABDW9yUVupLdDKNmzxRm2Jy386tqg3fRADByYgwDGmHJWIsrPHxW4yQVKmyWeoL1V9aNjwMxaJnb+qi0B76f/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#1f3232\",\"#d0ceca\",\"#55b59d\",\"#4f86b7\",\"#767c73\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138181,141947,1,'22 08 Ekka Marketing Website3','2022-08-15 05:31:37','2022-08-15 05:31:37','b71dda87-36e7-47f1-988a-2aabcac80e64',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_08-Ekka-Marketing-Website3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_08-Ekka-Marketing-Website3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_08-Ekka-Marketing-Website3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_08-Ekka-Marketing-Website3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_08-Ekka-Marketing-Website3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_08-Ekka-Marketing-Website3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_08-Ekka-Marketing-Website3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_08-Ekka-Marketing-Website3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_08-Ekka-Marketing-Website3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_08-Ekka-Marketing-Website3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_08-Ekka-Marketing-Website3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_08-Ekka-Marketing-Website3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_08-Ekka-Marketing-Website3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_08-Ekka-Marketing-Website3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_08-Ekka-Marketing-Website3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_08-Ekka-Marketing-Website3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":768,\"2560\":1536,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":384},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":3125,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQME/8QAIhAAAQMCBgMAAAAAAAAAAAAAAgEDEQAEBRITNWHBQXFy/8QAFgEBAQEAAAAAAAAAAAAAAAAAAgED/8QAHREAAgEEAwAAAAAAAAAAAAAAAAECAxEhMRIzQf/aAAwDAQACEQMRAD8AWxV5jE7NdC7IGiVJNuZ45qN4EsbMWaxNNJp51wbcMxmUyq+ZRUmpJJpGMo8ncPwTbm/nuhLbN6vWi1hvl76Lqn4CJ//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#d2cdcb\",\"#243b2c\",\"#85473f\",\"#938e48\",\"#7b9995\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138182,141948,1,'22 08 Ekka Marketing Website4','2022-08-15 05:32:14','2022-08-15 05:32:14','54246b40-d04b-4fc6-8c77-364c8a89c06a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1843_crop_center-center_82_line/22_08-Ekka-Marketing-Website4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1536_crop_center-center_82_line/22_08-Ekka-Marketing-Website4.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x3072_crop_center-center_82_line/22_08-Ekka-Marketing-Website4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1228_crop_center-center_82_line/22_08-Ekka-Marketing-Website4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2457_crop_center-center_82_line/22_08-Ekka-Marketing-Website4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x921_crop_center-center_82_line/22_08-Ekka-Marketing-Website4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x768_crop_center-center_82_line/22_08-Ekka-Marketing-Website4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1843_crop_center-center_82_line/22_08-Ekka-Marketing-Website4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1536_crop_center-center_82_line/22_08-Ekka-Marketing-Website4.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x3072_crop_center-center_82_line/22_08-Ekka-Marketing-Website4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1228_crop_center-center_82_line/22_08-Ekka-Marketing-Website4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2457_crop_center-center_82_line/22_08-Ekka-Marketing-Website4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x921_crop_center-center_82_line/22_08-Ekka-Marketing-Website4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x768_crop_center-center_82_line/22_08-Ekka-Marketing-Website4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1843,\"1280\":1536,\"2560\":3072,\"1024\":1228,\"2048\":2457,\"768\":921,\"640\":768},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":2604,\"originalImageHeight\":3125,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAATABADAREAAhEBAxEB/8QAFwABAAMAAAAAAAAAAAAAAAAABAIFBv/EAB8QAAIBBAMBAQAAAAAAAAAAAAEDAgAEBRESQVETIf/EABgBAAMBAQAAAAAAAAAAAAAAAAACAwQB/8QAHhEAAgICAgMAAAAAAAAAAAAAAAECEQMhEzEiMlH/2gAMAwEAAhEDEQA/AL7IXuRt7gwkyMfzYEda1WZyadSdEpOS6G43JhkDG6csT66pseS/Zjp/QmUXG6a58GAfIcZRkCCdeVPKrd2K97DYZCW3vBkOQ4k6PtEJckvIWEUmaNlulpJYuMiRo7HVaXFPssQTZWyJ81JjGXooUIraRykf/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#84ac4f\",\"#edf1ee\",\"#2389a9\",\"#d3dd59\",\"#4c5a4a\"],\"lightness\":59,\"placeholderWidth\":1536,\"placeholderHeight\":1843,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138183,141949,1,'Urban Utilities','2022-08-15 05:32:55','2022-08-15 05:32:55','e0d0edd2-8a47-4702-b1ba-88e8989de4c7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EKKA activation',NULL,NULL,'Where would we be without water? \nVery thirsty. Lots of dead plants. No coffee. Empty fishbowls. Wet n’ Wild closed.\nPaints a pretty dire picture.\nUrban Utilities (UU) knows how important water is to our future, so they’re working hard to protect it. They need Queenslanders to care about water security too. An EKKA display was the perfect way to engage with the community and remind them just how vital water is to their day-to-day life. With brightly coloured videos, graphics and illustrations arranged meticulously in a creative display, we helped UU remind people about their connections with water.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DxF20Yq1PE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:150% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/739527258?h=882d5c0119&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"uu_ekka_-_vertical_screens (Original)\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oonbweG5hq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"UU identified the EKKA as an opportunity to engage, inform and educate their customers to build a deeper understanding of water security, and to set the stage for UU to influence water restrictions down the track.\\nThrough hands-on activities and immersive visual displays, the EKKA was the perfect place to connect with UU’s communities and reassure them that UU is a safe pair of hands that holds and shapes the future of water security.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-J2iJEncoXv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:75% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/739539947?h=1627f92466&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"uu_ekka_combined_videos (1080p).mp4\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3OqKknGGDL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Thematically, this activation was centred around each individual’s connection with water. Through making people conscious of water’s impact on their day-to-day life, we helped them discover how essential water security is and appreciate the role UU plays in protecting our water supply—and ultimately, the lifestyles and livelihoods of Queenslanders.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ovoFZRL7or\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141946\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lTaGbDU5Lj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The goal of the EKKA display was three-fold: attract people to the space, engage them to participate and ensure they absorb the key messaging.\\nWe were working with an eight-metre-wide screen, so we determined pretty quickly that one very (very!) landscape video wouldn’t be the best viewing experience. So we did what we do best: We got creative. We fashioned a collage of videos with various illustrated key messages, live action footage and graphic patterns that loop and combine into an engaging, eight-metre video experience.\\nThe audience were able to contribute their personal connect with water through sketches and scribbles on magnetic tiles. Each tile was fixed to the wall to create a crowdsourced water mosaic that grew over the course of the EKKA, telling true stories of water memories and moments.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JPYArnyhMD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141947\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ez0JB2esSl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141948\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Bright colours, custom illustration, lots of movement and bold statements—that’s the sweet combination we concocted to communicate some very important key messages to the audience.\\nAnd the icing on top of the strawberry sundae? We just had so much fun coming up with the concept and bringing it to life. The EKKA public holiday didn’t hurt, either.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138186,141952,1,'Urban Utilities','2022-08-15 05:39:07','2022-08-15 05:39:07','da62c3be-633c-441f-a35c-49c735c114f8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EKKA activation',NULL,NULL,'Where would we be without water? \nVery thirsty. Lots of dead plants. No coffee. Empty fishbowls. Wet n’ Wild closed.\nPaints a pretty dire picture.\nUrban Utilities (UU) knows how important water is to our future, so they’re working hard to protect it. They need Queenslanders to care about water security too. An EKKA display was the perfect way to engage with the community and remind them just how vital water is to their day-to-day life. With brightly coloured videos, graphics and illustrations arranged meticulously in a creative display, we helped UU remind people about their connections with water.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ovoFZRL7or\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141946\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oonbweG5hq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"UU identified the EKKA as an opportunity to engage, inform and educate their customers to build a deeper understanding of water security, and to set the stage for UU to influence water restrictions down the track.\\nThrough hands-on activities and immersive visual displays, the EKKA was the perfect place to connect with UU’s communities and reassure them that UU is a safe pair of hands that holds and shapes the future of water security.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-J2iJEncoXv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:75% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/739539947?h=1627f92466&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"uu_ekka_combined_videos (1080p).mp4\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3OqKknGGDL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Thematically, this activation was centred around each individual’s connection with water. Through making people conscious of water’s impact on their day-to-day life, we helped them discover how essential water security is and appreciate the role UU plays in protecting our water supply—and ultimately, the lifestyles and livelihoods of Queenslanders.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JPYArnyhMD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141947\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lTaGbDU5Lj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The goal of the EKKA display was three-fold: attract people to the space, engage them to participate and ensure they absorb the key messaging.\\nWe were working with an eight-metre-wide screen, so we determined pretty quickly that one very (very!) landscape video wouldn’t be the best viewing experience. So we did what we do best: We got creative. We fashioned a collage of videos with various illustrated key messages, live action footage and graphic patterns that loop and combine into an engaging, eight-metre video experience.\\nThe audience were able to contribute their personal connect with water through sketches and scribbles on magnetic tiles. Each tile was fixed to the wall to create a crowdsourced water mosaic that grew over the course of the EKKA, telling true stories of water memories and moments.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ez0JB2esSl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141948\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Bright colours, custom illustration, lots of movement and bold statements—that’s the sweet combination we concocted to communicate some very important key messages to the audience.\\nAnd the icing on top of the strawberry sundae? We just had so much fun coming up with the concept and bringing it to life. The EKKA public holiday didn’t hurt, either.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138187,141953,1,'Urban Utilities','2022-08-15 05:39:25','2022-08-15 05:39:25','304e49b4-5939-4386-b79f-37e34b51faa4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EKKA activation',NULL,NULL,'Where would we be without water? \nVery thirsty. Lots of dead plants. No coffee. Empty fishbowls. Wet n’ Wild closed.\nPaints a pretty dire picture.\nUrban Utilities (UU) knows how important water is to our future, so they’re working hard to protect it. They need Queenslanders to care about water security too. An EKKA display was the perfect way to engage with the community and remind them just how vital water is to their day-to-day life. With brightly coloured videos, graphics and illustrations arranged meticulously in a creative display, we helped UU remind people about their connections with water.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ovoFZRL7or\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141946\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oonbweG5hq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"UU identified the EKKA as an opportunity to engage, inform and educate their customers to build a deeper understanding of water security, and to set the stage for UU to influence water restrictions down the track.\\nThrough hands-on activities and immersive visual displays, the EKKA was the perfect place to connect with UU’s communities and reassure them that UU is a safe pair of hands that holds and shapes the future of water security.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-J2iJEncoXv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:75% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/739539947?h=1627f92466&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"uu_ekka_combined_videos (1080p).mp4\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3OqKknGGDL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Thematically, this activation was centred around each individual’s connection with water. Through making people conscious of water’s impact on their day-to-day life, we helped them discover how essential water security is and appreciate the role UU plays in protecting our water supply—and ultimately, the lifestyles and livelihoods of Queenslanders.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JPYArnyhMD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141947\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lTaGbDU5Lj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The goal of the EKKA display was three-fold: attract people to the space, engage them to participate and ensure they absorb the key messaging.\\nWe were working with an eight-metre-wide screen, so we determined pretty quickly that one very (very!) landscape video wouldn’t be the best viewing experience. So we did what we do best: We got creative. We fashioned a collage of videos with various illustrated key messages, live action footage and graphic patterns that loop and combine into an engaging, eight-metre video experience.\\nThe audience were able to contribute their personal connect with water through sketches and scribbles on magnetic tiles. Each tile was fixed to the wall to create a crowdsourced water mosaic that grew over the course of the EKKA, telling true stories of water memories and moments.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ez0JB2esSl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141948\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Bright colours, custom illustration, lots of movement and bold statements—that’s the sweet combination we concocted to communicate some very important key messages to the audience.\\nAnd the icing on top of the strawberry sundae? We just had so much fun coming up with the concept and bringing it to life. The EKKA public holiday didn’t hurt, either.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138188,141954,1,'22 07 YCN Marketing Website 1','2022-08-15 05:54:34','2022-08-15 05:54:34','4bd1beb6-b157-4b99-8734-d542c1814bb7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_07-YCN-Marketing-Website-1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_07-YCN-Marketing-Website-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_07-YCN-Marketing-Website-1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_07-YCN-Marketing-Website-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_07-YCN-Marketing-Website-1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_07-YCN-Marketing-Website-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_07-YCN-Marketing-Website-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_07-YCN-Marketing-Website-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_07-YCN-Marketing-Website-1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_07-YCN-Marketing-Website-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_07-YCN-Marketing-Website-1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_07-YCN-Marketing-Website-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_07-YCN-Marketing-Website-1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_07-YCN-Marketing-Website-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_07-YCN-Marketing-Website-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_07-YCN-Marketing-Website-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":768,\"2560\":1536,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":384},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":3125,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAUG/8QAJhAAAQIEAwkAAAAAAAAAAAAAAwIhAAEEBRETMRI0NUFygZGxwf/EABYBAQEBAAAAAAAAAAAAAAAAAAEAAv/EABcRAQEBAQAAAAAAAAAAAAAAAAABETH/2gAMAwEAAhEDEQA/ANZcDV6lFACiSQU5YZmfsT0fk0MwB2xKB1wkKBXIM+M1lUsejvi/iGoS98TL29Qziq1a93D0S+xil//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#e7e9e6\",\"#202743\",\"#555c77\",\"#44546c\",\"#7c7c74\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138189,141955,1,'Your Care Navigator','2022-08-15 05:55:07','2022-08-15 05:55:07','394e4581-e46d-49e0-b399-df4e618181d8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator',NULL,NULL,'Ageing can be overwhelming, especially with a dementia diagnosis. There are so many big life decisions to make, services to navigate and logistics to plan. Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support. Additionally, it’s a resource that helps healthcare professionals coordinate care for their patients and provide them with quality resources.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TBzFA0UCIO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141596\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cYowRU3xxP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Brisbane North PHN asked us to write, design and develop a navigator website that doubles as a one-stop-shop of resources, information and services that promote healthy ageing in the Brisbane North and Moreton Bay region. The project’s goal was to enable people to more proactively manage their own healthcare, while also equipping healthcare professional and carers with resources to support their care services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VACsyz6zoc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141602\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Working closely with the client team and the Council on the Ageing, our strategists conducted a stakeholder consultation process with community members and health professionals. The stakeholders generously shared their expertise and lived experience to help this project reach the community’s specific needs, with a particular focus on: dementia, physical health, mental health, social connection, nutrition and digital skills.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pI57baAPCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Each aspect of the content writing, design and development of the website was informed by insights from the stakeholders, to ensure the project would fulfil community needs. We made sure the site was easy to use by integrating a very simple user interface into the web design and development. User experience and acceptance testing was a key element of ensuring the site would be practical and enjoyable for its audience.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2HLWpztdXM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141954\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-a1JYhUvTa9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Nothing like this existed before now. This project fulfils community needs around healthy ageing in a way that really excited the stakeholders who were involved in the project. This kind of work aligns perfectly with our purpose at NWO: to make a meaningful difference to people’s lives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator','Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138191,141957,1,'Meet William','2022-08-16 04:32:35','2022-08-16 04:32:35','69d4eb9f-13de-4ad9-b6a5-b91f1c5e5e6c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x768_crop_center-center_82_line/Meet-William.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1536_crop_center-center_82_line/Meet-William.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x640_crop_center-center_82_line/Meet-William.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1280_crop_center-center_82_line/Meet-William.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x512_crop_center-center_82_line/Meet-William.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1024_crop_center-center_82_line/Meet-William.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x384_crop_center-center_82_line/Meet-William.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x320_crop_center-center_82_line/Meet-William.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x768_crop_center-center_82_line/Meet-William.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1536_crop_center-center_82_line/Meet-William.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x640_crop_center-center_82_line/Meet-William.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1280_crop_center-center_82_line/Meet-William.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x512_crop_center-center_82_line/Meet-William.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1024_crop_center-center_82_line/Meet-William.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x384_crop_center-center_82_line/Meet-William.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x320_crop_center-center_82_line/Meet-William.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"3072\":1536,\"1280\":640,\"2560\":1280,\"1024\":512,\"2048\":1024,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":3200,\"originalImageHeight\":1600,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAkACQAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAIABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABAb/xAAfEAACAQQCAwAAAAAAAAAAAAABAwIABBESBSFBUcH/xAAWAQEBAQAAAAAAAAAAAAAAAAAEAAH/xAAbEQEAAgIDAAAAAAAAAAAAAAABAAIRIRIxYf/aAAwDAQACEQMRAD8AFb8Q9VlG7OgOQwyBwdT4+1FXuZk4+ynt0oc90GqxGJGvfZ90ltYDcOFVdT//2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#beccdd\",\"#1e3031\",\"#5e4c44\",\"#89715c\",\"#5a94cb\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138192,141958,1,'Let us introduce ourselves','2022-08-16 04:33:47','2022-08-16 04:33:47','01554a72-fa4d-4cdb-be8f-2db8acefa928',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bpjMTNz5JL\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":null,\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our team is full of vibrant, hard-working people who live very full lives outside the walls of NWO. (Crazy, hey?)\\n\\nIf you have worked with some of the team, you might only know us in full-throttle, foot-on-the-gas-pedal mode.\\n\\nBut at home, there\'s so much more to see.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more and merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD meetings.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our business growth. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-caQw6bLp4J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141536\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138194,141960,1,'Let us introduce ourselves','2022-08-16 04:38:12','2022-08-16 04:38:12','44330b65-98a7-40d5-a257-b6e8bb2ce66e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bpjMTNz5JL\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":null,\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our team is full of vibrant, hard-working people who live very full lives outside the walls of NWO. (Crazy, hey?)\\n\\nIf you have worked with some of the team, you might only know us in full-throttle, foot-on-the-gas-pedal mode.\\n\\nBut at home, there\'s so much more to see.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more and merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD meetings.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our business growth. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-caQw6bLp4J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141536\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138195,141961,1,'William','2022-08-16 05:10:35','2022-08-16 05:10:35','7be6c6ec-6f3b-433e-9ef0-177d2f691662',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/William.png\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/William.png\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/William.png\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/William.png\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/William.png\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/William.png.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/William.png.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/William.png.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/William.png.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/William.png.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":2000,\"originalImageHeight\":2000,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAwEG/8QAIRAAAQQCAQUBAAAAAAAAAAAAAgEDBREABBIGFCFBgdH/xAAVAQEBAAAAAAAAAAAAAAAAAAABAv/EABgRAAMBAQAAAAAAAAAAAAAAAAACEhFh/9oADAMBAAIRAxEAPwDKdOx7UjvE08tAIKV1eSfjhjtsQBbEktFqr+Y0EPZbzT7rpACpRcUvxiTYBIbxPMGfBERBU/f5hLUVqz0//9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#131419\",\"#cc9f8c\",\"#884c2c\",\"#767c84\",\"#686c7c\"],\"lightness\":37,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138196,141962,1,'William 2022 08 16 053458 qrxi','2022-08-16 05:34:59','2023-03-09 04:28:22','077d6f06-62a1-4db4-b2fc-dfdc65a0c245',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Will-col-23.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Will-col-23.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Will-col-23.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Will-col-23.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Will-col-23.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Will-col-23.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Will-col-23.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Will-col-23.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1280,\"originalImageHeight\":1280,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBIAEgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAwT/xAAfEAACAgIBBQAAAAAAAAAAAAABAgMRAAQhBRIxUXH/xAAWAQEBAQAAAAAAAAAAAAAAAAAAAQL/xAAZEQADAQEBAAAAAAAAAAAAAAAAAQIREiH/2gAMAwEAAhEDEQA/AE3ZJIhEsbBO9qL1dCr8Zu20vDUrWVQq4QrIQxB4aqsfMRXSFzy8Dm1z1FFhhKgluGI9ZLerBPj0um021gqk2SLOSHysLT6en//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#a69dad\",\"#412a24\",\"#7a5648\",\"#edecf3\",\"#4c5074\"],\"lightness\":49,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138198,141964,1,'About us','2022-08-16 05:37:53','2022-08-16 05:37:53','8473a8e3-2c86-4258-b373-2f2133e55492',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17881\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\",\"17921\",\"97259\",\"141616\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | About us','For 20 years we have helped businesses, organisations and governments to solve problems, unlock potential and connect with people to inspire action.','strategy, brand, campaign, behaviour change, engagement, digital, video, content',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138200,141966,1,'About us','2022-08-16 05:38:24','2022-08-16 05:38:24','983ae66a-be20-422c-b74c-c1fd1184b207',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17881\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\",\"17921\",\"97259\",\"141616\",\"141642\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | About us','For 20 years we have helped businesses, organisations and governments to solve problems, unlock potential and connect with people to inspire action.','strategy, brand, campaign, behaviour change, engagement, digital, video, content',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138202,141968,1,'Seven important marketing questions for every business','2022-08-16 07:22:28','2022-08-16 07:22:28','9c6952a2-ca84-4bdd-97e4-0b5fe39c8bec',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VzKHBkk2Ca\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Marketing communications in business is all about attracting and retaining customers. We do it for dozens of Australian companies every day, and the bigger the company, the tighter the marketing strategy governing their communications—because they know customers are fickle, and competitors are waiting to pounce on any weakness.\\n\\nThe same philosophy of tight strategy and execution should drive your business. Effective marketing communications must be an essential part of your core business strategy to ensure you’re pushing the same, consistent message through every aspect of your organisation.\\n\\nBut it’s not always so easy to go it alone. If you’re in a small business and know you need to step up, here’s a handy checklist of the marketing questions you need to answer to keep your customers in tune with you—and your competitors at bay.\\n\\n##### **Who are my existing customers?**\\n\\nThe best way to sell to your customers is to first understand who they are, why they buy from you, and what value they expect from you. And the best way to learn this? Listen to them. Marketing communication begins with good customer relationships, which are almost like your own form of market research.\\n\\nWhen you talk to your customers, you’ll learn things like your customers’ age, income, education, how often they buy from you, what their buying triggers are and how they’re influenced. This is a valuable step in honing your marketing message, so don’t be tempted to think you already know the information if you’ve been in business for a while. Every customer conversation will add another layer to your understanding.\\n\\n##### **Who are my potential customers?**\\n\\nIt’s just as critical to have a very clear understanding of your desired target market and new customers. Get as detailed as you possibly can. The more specific you are, the better you can develop messages for them.\\n\\n##### **Who are my competitors?**\\n\\nUnderstanding who competes for your customers—and what they’re offering—is vital. Get very familiar with every aspect of your competitors’ businesses—including their reputation, prices and marketing material. This knowledge will help you position your marketing communication relative to how your customers are already being targeted and differentiate yourself in the market.\\n\\n##### **What am I trying to achieve?**\\n\\nUnderstanding why you’re communicating with your customers is essential. Are you purely after quick wins? Or preparing the ground for a new product or stronger relationships? The rationale and potential value for any marketing effort should determine how much money you need to spend, and where it’s best spent.\\n\\n##### **What am I trying to say?**\\n\\nThis is where everything comes together. You must now develop clear, key messages that talk up your product or service, meet the expectations and needs of your new and existing customers, and differentiate yourself from your competition.\\n\\nMake sure you have no more than five key messages—in fact, the fewer the better—and make them specific and meaningful. That’s how you stand out in the crowded market. Ensure your customers are aware of your business and its products or services, and why they should care (e.g. What’s in it for them? And what are the true benefits?). These benefits should be factual and real. It’s important not to overload customers with information, but rather to be clear and articulate.\\n\\nAll of your marketing communications should include a strong call to action: What is it that you want customers to do once they’ve interacted with you? Leave them in no doubt and make it easy for them.\\n\\n##### **What’s the right channel?**\\n\\nThere’s no doubt that it’s a busy marketplace when it comes to finding the perfect place to share your marketing messages. The challenge here is in focusing and narrowing your communication—and finding the right time and place to connect with your customers.\\n\\nMany marketers are now jumping on social media networks, but that might not be where your customers can be found. It’s important that you understand how and when they want to hear from you, and use that information to foster a true customer relationship.\\n\\n##### **Is my strategy integrated?**\\n\\nCommunicating in an integrated way across all channels (such as website, emails and brochures) means your brand will become better known and understood. Integration means that every time your customers hear from you, they get the same feel for who you are. By creating consistent, strong marketing communications, your customers will identify and remember you into the future.\\n\\n##### **Finally: Am I communicating with genuine creativity?**\\n\\nCreativity isn’t about paying your local print shop to pull together a flyer with your logo on it, or using a WordPress template to build your long-overdue website. They might be tactics that you use, but they’re not what creativity is really about.\\n\\nTrue creative thinking pulls together everything you know about your business, your goals and your customers into a single, cohesive package that cuts through, connects and resonates. Creativity distills everything down to the right words, images and design so that your marketing collateral has the right impact. No business can afford to skimp on this stage because getting creativity right means you’ll get the results you’re really after: maximum return on your marketing investment.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'8 important marketing questions for every business','Marketing communications in business is all about attracting and retaining customers. We do it for dozens of Australian companies every day, and the bigger the company, the tighter the marketing strategy governing their communications—because they know customers are fickle, and competitors are waiting to pounce on any weakness.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138204,141970,1,'Seven important marketing questions for every business','2022-08-16 07:22:41','2022-08-16 07:22:41','043a8ee4-147d-45ee-ba71-0a2955b7c098',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VzKHBkk2Ca\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Marketing communications in business is all about attracting and retaining customers. We do it for dozens of Australian companies every day, and the bigger the company, the tighter the marketing strategy governing their communications—because they know customers are fickle, and competitors are waiting to pounce on any weakness.\\n\\nThe same philosophy of tight strategy and execution should drive your business. Effective marketing communications must be an essential part of your core business strategy to ensure you’re pushing the same, consistent message through every aspect of your organisation.\\n\\nBut it’s not always so easy to go it alone. If you’re in a small business and know you need to step up, here’s a handy checklist of the marketing questions you need to answer to keep your customers in tune with you—and your competitors at bay.\\n\\n##### **Who are my existing customers?**\\n\\nThe best way to sell to your customers is to first understand who they are, why they buy from you, and what value they expect from you. And the best way to learn this? Listen to them. Marketing communication begins with good customer relationships, which are almost like your own form of market research.\\n\\nWhen you talk to your customers, you’ll learn things like your customers’ age, income, education, how often they buy from you, what their buying triggers are and how they’re influenced. This is a valuable step in honing your marketing message, so don’t be tempted to think you already know the information if you’ve been in business for a while. Every customer conversation will add another layer to your understanding.\\n\\n##### **Who are my potential customers?**\\n\\nIt’s just as critical to have a very clear understanding of your desired target market and new customers. Get as detailed as you possibly can. The more specific you are, the better you can develop messages for them.\\n\\n##### **Who are my competitors?**\\n\\nUnderstanding who competes for your customers—and what they’re offering—is vital. Get very familiar with every aspect of your competitors’ businesses—including their reputation, prices and marketing material. This knowledge will help you position your marketing communication relative to how your customers are already being targeted and differentiate yourself in the market.\\n\\n##### **What am I trying to achieve?**\\n\\nUnderstanding why you’re communicating with your customers is essential. Are you purely after quick wins? Or preparing the ground for a new product or stronger relationships? The rationale and potential value for any marketing effort should determine how much money you need to spend, and where it’s best spent.\\n\\n##### **What am I trying to say?**\\n\\nThis is where everything comes together. You must now develop clear, key messages that talk up your product or service, meet the expectations and needs of your new and existing customers, and differentiate yourself from your competition.\\n\\nMake sure you have no more than five key messages—in fact, the fewer the better—and make them specific and meaningful. That’s how you stand out in the crowded market. Ensure your customers are aware of your business and its products or services, and why they should care (e.g. What’s in it for them? And what are the true benefits?). These benefits should be factual and real. It’s important not to overload customers with information, but rather to be clear and articulate.\\n\\nAll of your marketing communications should include a strong call to action: What is it that you want customers to do once they’ve interacted with you? Leave them in no doubt and make it easy for them.\\n\\n##### **What’s the right channel?**\\n\\nThere’s no doubt that it’s a busy marketplace when it comes to finding the perfect place to share your marketing messages. The challenge here is in focusing and narrowing your communication—and finding the right time and place to connect with your customers.\\n\\nMany marketers are now jumping on social media networks, but that might not be where your customers can be found. It’s important that you understand how and when they want to hear from you, and use that information to foster a true customer relationship.\\n\\n##### **Is my strategy integrated?**\\n\\nCommunicating in an integrated way across all channels (such as website, emails and brochures) means your brand will become better known and understood. Integration means that every time your customers hear from you, they get the same feel for who you are. By creating consistent, strong marketing communications, your customers will identify and remember you into the future.\\n\\n##### **Finally: Am I communicating with genuine creativity?**\\n\\nCreativity isn’t about paying your local print shop to pull together a flyer with your logo on it, or using a WordPress template to build your long-overdue website. They might be tactics that you use, but they’re not what creativity is really about.\\n\\nTrue creative thinking pulls together everything you know about your business, your goals and your customers into a single, cohesive package that cuts through, connects and resonates. Creativity distills everything down to the right words, images and design so that your marketing collateral has the right impact. No business can afford to skimp on this stage because getting creativity right means you’ll get the results you’re really after: maximum return on your marketing investment.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'8 important marketing questions for every business','Marketing communications in business is all about attracting and retaining customers. We do it for dozens of Australian companies every day, and the bigger the company, the tighter the marketing strategy governing their communications—because they know customers are fickle, and competitors are waiting to pounce on any weakness.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138205,141971,1,'Your Care Navigator','2022-08-16 23:16:52','2022-08-16 23:16:52','40ee5e27-2141-4b12-884f-ce4dc44487e8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator',NULL,NULL,'Ageing can be overwhelming, especially with a dementia diagnosis. There are so many big life decisions to make, services to navigate and logistics to plan. Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support. Additionally, it’s a resource that helps healthcare professionals coordinate care for their patients and provide them with quality resources.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TBzFA0UCIO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141596\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cYowRU3xxP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Brisbane North PHN asked us to write, design and develop a navigator website that doubles as a one-stop-shop of resources, information and services that promote healthy ageing in the Brisbane North and Moreton Bay region. The project’s goal was to enable people to more proactively manage their own healthcare, while also equipping healthcare professional and carers with resources to support their care services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VACsyz6zoc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141602\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Working closely with the client team and the Council on the Ageing, our strategists conducted a stakeholder consultation process with community members and health professionals. The stakeholders generously shared their expertise and lived experience to help this project reach the community’s specific needs, with a particular focus on: dementia, physical health, mental health, social connection, nutrition and digital skills.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pI57baAPCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Each aspect of the content writing, design and development of the website was informed by insights from the stakeholders, to ensure the project would fulfil community needs. We made sure the site was easy to use by integrating a very simple user interface into the web design and development. User experience and acceptance testing was a key element of ensuring the site would be practical and enjoyable for its audience.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RgOzDzfM2D\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Nothing like this existed before now. This project fulfils community needs around healthy ageing in a way that really excited the stakeholders who were involved in the project. This kind of work aligns perfectly with our purpose at NWO: to make a meaningful difference to people’s lives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator','Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138206,141972,1,'Seven important marketing questions for every business','2022-08-17 02:35:27','2022-08-17 02:35:27','2812d6fc-3813-4188-be92-bd71d57db764',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VzKHBkk2Ca\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Marketing communications in business is all about attracting and retaining customers. We do it for dozens of Australian companies every day, and the bigger the company, the tighter the marketing strategy governing their communications—because they know customers are fickle, and competitors are waiting to pounce on any weakness.\\n\\nThe same philosophy of tight strategy and execution should drive your business. Effective marketing communications must be an essential part of your core business strategy to ensure you’re pushing the same, consistent message through every aspect of your organisation.\\n\\nBut it’s not always so easy to go it alone. If you’re in a small business and know you need to step up, here’s a handy checklist of the marketing questions you need to answer to keep your customers in tune with you—and your competitors at bay.\\n\\n##### **Who are my existing customers?**\\n\\nThe best way to sell to your customers is to first understand who they are, why they buy from you, and what value they expect from you. And the best way to learn this? Listen to them. Marketing communication begins with good customer relationships, which are almost like your own form of market research.\\n\\nWhen you talk to your customers, you’ll learn things like your customers’ age, income, education, how often they buy from you, what their buying triggers are and how they’re influenced. This is a valuable step in honing your marketing message, so don’t be tempted to think you already know the information if you’ve been in business for a while. Every customer conversation will add another layer to your understanding.\\n\\n##### **Who are my potential customers?**\\n\\nIt’s just as critical to have a very clear understanding of your desired target market and new customers. Get as detailed as you possibly can. The more specific you are, the better you can develop messages for them.\\n\\n##### **Who are my competitors?**\\n\\nUnderstanding who competes for your customers—and what they’re offering—is vital. Get very familiar with every aspect of your competitors’ businesses—including their reputation, prices and marketing material. This knowledge will help you position your marketing communication relative to how your customers are already being targeted and differentiate yourself in the market.\\n\\n##### **What am I trying to achieve?**\\n\\nUnderstanding why you’re communicating with your customers is essential. Are you purely after quick wins? Or preparing the ground for a new product or stronger relationships? The rationale and potential value for any marketing effort should determine how much money you need to spend, and where it’s best spent.\\n\\n##### **What am I trying to say?**\\n\\nThis is where everything comes together. You must now develop clear, key messages that talk up your product or service, meet the expectations and needs of your new and existing customers, and differentiate yourself from your competition.\\n\\nMake sure you have no more than five key messages—in fact, the fewer the better—and make them specific and meaningful. That’s how you stand out in the crowded market. Ensure your customers are aware of your business and its products or services, and why they should care (e.g. What’s in it for them? And what are the true benefits?). These benefits should be factual and real. It’s important not to overload customers with information, but rather to be clear and articulate.\\n\\nAll of your marketing communications should include a strong call to action: What is it that you want customers to do once they’ve interacted with you? Leave them in no doubt and make it easy for them.\\n\\n##### **What’s the right channel?**\\n\\nThere’s no doubt that it’s a busy marketplace when it comes to finding the perfect place to share your marketing messages. The challenge here is in focusing and narrowing your communication—and finding the right time and place to connect with your customers.\\n\\nMany marketers are now jumping on social media networks, but that might not be where your customers can be found. It’s important that you understand how and when they want to hear from you, and use that information to foster a true customer relationship.\\n\\n##### **Is my strategy integrated?**\\n\\nCommunicating in an integrated way across all channels (such as website, emails and brochures) means your brand will become better known and understood. Integration means that every time your customers hear from you, they get the same feel for who you are. By creating consistent, strong marketing communications, your customers will identify and remember you into the future.\\n\\n##### **Finally: Am I communicating with genuine creativity?**\\n\\nCreativity isn’t about paying your local print shop to pull together a flyer with your logo on it, or using a WordPress template to build your long-overdue website. They might be tactics that you use, but they’re not what creativity is really about.\\n\\nTrue creative thinking pulls together everything you know about your business, your goals and your customers into a single, cohesive package that cuts through, connects and resonates. Creativity distills everything down to the right words, images and design so that your marketing collateral has the right impact. No business can afford to skimp on this stage because getting creativity right means you’ll get the results you’re really after: maximum return on your marketing investment.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'8 important marketing questions for every business','Marketing communications in business is all about attracting and retaining customers. We do it for dozens of Australian companies every day, and the bigger the company, the tighter the marketing strategy governing their communications—because they know customers are fickle, and competitors are waiting to pounce on any weakness.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138208,141974,1,'Your Care Navigator','2022-08-17 02:36:37','2022-08-17 02:36:37','179a4cdf-b488-4bac-938b-58b7831207c0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator',NULL,NULL,'Ageing can be overwhelming, especially with a dementia diagnosis. There are so many big life decisions to make, services to navigate and logistics to plan. Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support. Additionally, it’s a resource that helps healthcare professionals coordinate care for their patients and provide them with quality resources.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TBzFA0UCIO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141596\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cYowRU3xxP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Brisbane North PHN asked us to write, design and develop a navigator website that doubles as a one-stop-shop of resources, information and services that promote healthy ageing in the Brisbane North and Moreton Bay region. The project’s goal was to enable people to more proactively manage their own healthcare, while also equipping healthcare professional and carers with resources to support their care services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VACsyz6zoc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141602\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Working closely with the client team and the Council on the Ageing, our strategists conducted a stakeholder consultation process with community members and health professionals. The stakeholders generously shared their expertise and lived experience to help this project reach the community’s specific needs, with a particular focus on: dementia, physical health, mental health, social connection, nutrition and digital skills.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pI57baAPCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Each aspect of the content writing, design and development of the website was informed by insights from the stakeholders, to ensure the project would fulfil community needs. We made sure the site was easy to use by integrating a very simple user interface into the web design and development. User experience and acceptance testing was a key element of ensuring the site would be practical and enjoyable for its audience.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RgOzDzfM2D\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Nothing like this existed before now. This project fulfils community needs around healthy ageing in a way that really excited the stakeholders who were involved in the project. This kind of work aligns perfectly with our purpose at NWO: to make a meaningful difference to people’s lives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator','Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138209,141975,1,'Urban Utilities','2022-08-17 04:14:48','2022-08-17 04:14:48','86ade21e-54dd-43ba-9c88-c4f935e90bcd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EKKA activation',NULL,NULL,'Where would we be without water? \nVery thirsty. Lots of dead plants. No coffee. Empty fishbowls. Wet n’ Wild closed.\nPaints a pretty dire picture.\nUrban Utilities (UU) knows how important water is to our future, so they’re working hard to protect it. They need Queenslanders to care about water security too. An EKKA display was the perfect way to engage with the community and remind them just how vital water is to their day-to-day life. With brightly coloured videos, graphics and illustrations arranged meticulously in a creative display, we helped UU remind people about their connections with water.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DxF20Yq1PE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:100% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/739527258?h=882d5c0119&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"uu_ekka_-_vertical_screens (Original)\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oonbweG5hq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"UU identified the EKKA as an opportunity to engage, inform and educate their customers to build a deeper understanding of water security, and to set the stage for UU to influence water restrictions down the track.\\nThrough hands-on activities and immersive visual displays, the EKKA was the perfect place to connect with UU’s communities and reassure them that UU is a safe pair of hands that holds and shapes the future of water security.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-J2iJEncoXv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:50% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/739539947?h=1627f92466&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"uu_ekka_combined_videos (1080p).mp4\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3OqKknGGDL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Thematically, this activation was centred around each individual’s connection with water. Through making people conscious of water’s impact on their day-to-day life, we helped them discover how essential water security is and appreciate the role UU plays in protecting our water supply—and ultimately, the lifestyles and livelihoods of Queenslanders.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ovoFZRL7or\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141946\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lTaGbDU5Lj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The goal of the EKKA display was three-fold: attract people to the space, engage them to participate and ensure they absorb the key messaging.\\nWe were working with an eight-metre-wide screen, so we determined pretty quickly that one very (very!) landscape video wouldn’t be the best viewing experience. So we did what we do best: We got creative. We fashioned a collage of videos with various illustrated key messages, live action footage and graphic patterns that loop and combine into an engaging, eight-metre video experience.\\nThe audience were able to contribute their personal connect with water through sketches and scribbles on magnetic tiles. Each tile was fixed to the wall to create a crowdsourced water mosaic that grew over the course of the EKKA, telling true stories of water memories and moments.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JPYArnyhMD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141947\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ez0JB2esSl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141948\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Bright colours, custom illustration, lots of movement and bold statements—that’s the sweet combination we concocted to communicate some very important key messages to the audience.\\nAnd the icing on top of the strawberry sundae? We just had so much fun coming up with the concept and bringing it to life. The EKKA public holiday didn’t hurt, either.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138211,141977,1,'Nwo seven marketing','2022-08-17 04:16:34','2022-08-17 04:16:34','4ae24c61-4811-4597-a7f9-2d6dcd3963c7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/nwo-seven-marketing.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/nwo-seven-marketing.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/nwo-seven-marketing.jpg\"},\"optimizedWebPImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/nwo-seven-marketing.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/nwo-seven-marketing.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/nwo-seven-marketing.jpg.webp\"},\"variantSourceWidths\":[\"1024\",\"768\",\"640\"],\"variantHeights\":{\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1200,\"originalImageHeight\":1200,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAZABkAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAMG/8QAIBAAAgICAgIDAAAAAAAAAAAAAQMCEQQSAAUTQVFhkf/EABYBAQEBAAAAAAAAAAAAAAAAAAIAAf/EABgRAQEBAQEAAAAAAAAAAAAAAAERAAIx/9oADAMBAAIRAxEAPwBXWIw19QibV7MZtR+KviYYB0+aq3p7PKOAzwRMJXDSNbfX5zRDSMJshg5TpZMITeFrEhsDOqHvjZgUyQt6+08qWGAEyYziaNcEmVu//9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#253a48\",\"#d2dedf\",\"#92b8c6\",\"#7f7679\",\"#6b90b2\"],\"lightness\":53,\"placeholderWidth\":1024,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138212,141978,1,'Seven important questions for effective marketing communications','2022-08-17 04:38:29','2022-08-17 04:38:29','8cbee2f9-47df-4540-9997-4bc3efc72939',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VzKHBkk2Ca\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Many companies don’t have the inhouse expertise to create effective marketing communications (marcomms). The most common mistake made when they try to do it themselves is that their marcomms lacks a strategic understanding of the customer and/or isn’t linked to a business plan. \\n\\nWithout the right kind of marcomms expertise, you can push out communication that fails to engage or achieve the desired outcome. At NWO, our experienced professionals can develop customised marcomms strategies and compelling content to position your brand perfectly with the right audience.\\n\\nHere’s a handy checklist of the important questions you need to ask and answer before embarking on any form of marcomms.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-D3xHuihEYY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"1. What does the marketing communication need to deliver?\",\"plainText\":\"Every strategy needs an objective—is it revenue, new customers, enquiries? Set a goal that is measurable and realistic.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-b17TNJpon6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"2. How are we different?\",\"plainText\":\"Think hard about what makes your business unique and differentiates you from your competitors. Then you can market your difference to link to the above objective.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3X5Y4XojVA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"3. Who are our competitors?\",\"plainText\":\"Effective marcomms starts with a robust analysis of your marketplace competitors. Map their strengths against your own unique offering.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2GdMIGFvZu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"4. Who are our customers?\",\"plainText\":\"Most companies think they know their customers but not all go very far beyond the surface. Do you know what they really want? Have you asked them or have you assumed your product or service fits all their needs? How do they buy your products/services? What is their mindset? What problems do they have? These are the types of strategic questions that need to be asked to make your marcomms effective.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rkyMtiHE7W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"5. Are we using the right communication channels?\",\"plainText\":\"The best messages are wasted if your desired audience isn’t seeing them. Use the right channel at the right time to ensure your messaging connects and engages.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JJINcTL6AL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"6. Have we got the message right?\",\"plainText\":\"Anyone business can talk about their product or service, but is that what your customer wants to hear? Acknowledge the problem you are solving for them. Double check the language suits them. Ensure every message reflects your brand position, your personality, your tone of voice and has the creativity to cut through all the clutter.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-neHHV7wwei\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"7. How are we measuring success?\",\"plainText\":\"Define the measures you’re using to link back to your goals. You can’t manage what you can’t measure.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Qwl8bxCyv8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Maximising your investment in marcomms is your ultimate goal and posing these questions before you start work is crucial to achieving long-term success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'8 important marketing questions for every business','Marketing communications in business is all about attracting and retaining customers. We do it for dozens of Australian companies every day, and the bigger the company, the tighter the marketing strategy governing their communications—because they know customers are fickle, and competitors are waiting to pounce on any weakness.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138214,141980,1,'Seven important questions for effective marketing communications','2022-08-17 04:38:56','2022-08-17 04:38:56','8eaeec82-3d0b-42b4-8805-7a5bdfacf0c1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VzKHBkk2Ca\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Many companies don’t have the inhouse expertise to create effective marketing communications (marcomms). The most common mistake made when they try to do it themselves is that their marcomms lacks a strategic understanding of the customer and/or isn’t linked to a business plan. \\n\\nWithout the right kind of marcomms expertise, you can push out communication that fails to engage or achieve the desired outcome. At NWO, our experienced professionals can develop customised marcomms strategies and compelling content to position your brand perfectly with the right audience.\\n\\nHere’s a handy checklist of the important questions you need to ask and answer before embarking on any form of marcomms.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-D3xHuihEYY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"1. What does the marketing communication need to deliver?\",\"plainText\":\"Every strategy needs an objective—is it revenue, new customers, enquiries? Set a goal that is measurable and realistic.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-b17TNJpon6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"2. How are we different?\",\"plainText\":\"Think hard about what makes your business unique and differentiates you from your competitors. Then you can market your difference to link to the above objective.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3X5Y4XojVA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"3. Who are our competitors?\",\"plainText\":\"Effective marcomms starts with a robust analysis of your marketplace competitors. Map their strengths against your own unique offering.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2GdMIGFvZu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"4. Who are our customers?\",\"plainText\":\"Most companies think they know their customers but not all go very far beyond the surface. Do you know what they really want? Have you asked them or have you assumed your product or service fits all their needs? How do they buy your products/services? What is their mindset? What problems do they have? These are the types of strategic questions that need to be asked to make your marcomms effective.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rkyMtiHE7W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"5. Are we using the right communication channels?\",\"plainText\":\"The best messages are wasted if your desired audience isn’t seeing them. Use the right channel at the right time to ensure your messaging connects and engages.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JJINcTL6AL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"6. Have we got the message right?\",\"plainText\":\"Anyone business can talk about their product or service, but is that what your customer wants to hear? Acknowledge the problem you are solving for them. Double check the language suits them. Ensure every message reflects your brand position, your personality, your tone of voice and has the creativity to cut through all the clutter.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-neHHV7wwei\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"7. How are we measuring success?\",\"plainText\":\"Define the measures you’re using to link back to your goals. You can’t manage what you can’t measure.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Qwl8bxCyv8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Maximising your investment in marcomms is your ultimate goal and posing these questions before you start work is crucial to achieving long-term success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Seven important questions for effective marketing communications','Many companies don’t have the inhouse expertise to create effective marketing communications (marcomms). The most common mistake made when they try to do it themselves is that their marcomms lacks a strategic understanding of the customer and/or isn’t linked to a business plan.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138216,141982,1,'Seven important questions for effective marketing communications','2022-08-17 04:54:11','2022-08-17 04:54:11','0a072392-a27c-4a69-98d0-0f6356b4090b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VzKHBkk2Ca\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Many companies don’t have the inhouse expertise to create effective marketing communications (marcomms). The most common mistake made when they try to do it themselves is that their marcomms lacks a strategic understanding of the customer and/or isn’t linked to a business plan.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Without the right kind of marcomms expertise, you can push out communication that fails to engage or achieve the desired outcome. At NWO, our experienced professionals can develop customised marcomms strategies and compelling content to position your brand perfectly with the right audience.\\n\\nHere’s a handy checklist of the important questions you need to ask and answer before embarking on any form of marcomms.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yJWD4Ckdat\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**1. What does the marketing communication need to deliver?**\\n\\nEvery strategy needs an objective—is it revenue, new customers, enquiries? Set a goal that is measurable and realistic.\\n\\n**2. How are we different?**\\n\\nThink hard about what makes your business unique and differentiates you from your competitors. Then you can market your difference to link to the above objective.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-D3xHuihEYY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"1. What does the marketing communication need to deliver?\",\"plainText\":\"Every strategy needs an objective—is it revenue, new customers, enquiries? Set a goal that is measurable and realistic.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-b17TNJpon6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"2. How are we different?\",\"plainText\":\"Think hard about what makes your business unique and differentiates you from your competitors. Then you can market your difference to link to the above objective.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3X5Y4XojVA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"3. Who are our competitors?\",\"plainText\":\"Effective marcomms starts with a robust analysis of your marketplace competitors. Map their strengths against your own unique offering.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2GdMIGFvZu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"4. Who are our customers?\",\"plainText\":\"Most companies think they know their customers but not all go very far beyond the surface. Do you know what they really want? Have you asked them or have you assumed your product or service fits all their needs? How do they buy your products/services? What is their mindset? What problems do they have? These are the types of strategic questions that need to be asked to make your marcomms effective.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rkyMtiHE7W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"5. Are we using the right communication channels?\",\"plainText\":\"The best messages are wasted if your desired audience isn’t seeing them. Use the right channel at the right time to ensure your messaging connects and engages.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JJINcTL6AL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"6. Have we got the message right?\",\"plainText\":\"Anyone business can talk about their product or service, but is that what your customer wants to hear? Acknowledge the problem you are solving for them. Double check the language suits them. Ensure every message reflects your brand position, your personality, your tone of voice and has the creativity to cut through all the clutter.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-neHHV7wwei\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"7. How are we measuring success?\",\"plainText\":\"Define the measures you’re using to link back to your goals. You can’t manage what you can’t measure.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Qwl8bxCyv8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Maximising your investment in marcomms is your ultimate goal and posing these questions before you start work is crucial to achieving long-term success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Seven important questions for effective marketing communications','Many companies don’t have the inhouse expertise to create effective marketing communications (marcomms). The most common mistake made when they try to do it themselves is that their marcomms lacks a strategic understanding of the customer and/or isn’t linked to a business plan.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138218,141984,1,'Seven important questions for effective marketing communications','2022-08-17 04:58:00','2022-08-17 04:58:00','20fa9151-7161-4aca-8796-d908a2bde2c7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VzKHBkk2Ca\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Many companies don’t have the inhouse expertise to create effective marketing communications (marcomms). The most common mistake made when they try to do it themselves is that their marcomms lacks a strategic understanding of the customer and/or isn’t linked to a business plan.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Without the right kind of marcomms expertise, you can push out communication that fails to engage or achieve the desired outcome. At NWO, our experienced professionals can develop customised marcomms strategies and compelling content to position your brand perfectly with the right audience.\\n\\nHere’s a handy checklist of the important questions you need to ask and answer before embarking on any form of marcomms.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yJWD4Ckdat\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**1. What does the marketing communication need to deliver?**\\n\\nEvery strategy needs an objective—is it revenue, new customers, enquiries? Set a goal that is measurable and realistic.\\n\\n**2. How are we different?**\\n\\nThink hard about what makes your business unique and differentiates you from your competitors. Then you can market your difference to link to the above objective.\\n\\n**3. Who are our competitors?**\\n\\nEffective marcomms starts with a robust analysis of your marketplace competitors. Map their strengths against your own unique offering.\\n\\n**4. Who are our customers?**\\n\\nMost companies think they know their customers but not all go very far beyond the surface. Do you know what they really want? Have you asked them or have you assumed your product or service fits all their needs? How do they buy your products/services? What is their mindset? What problems do they have? These are the types of strategic questions that need to be asked to make your marcomms effective.\\n\\n**5. Are we using the right communication channels?**\\n\\nThe best messages are wasted if your desired audience isn’t seeing them. Use the right channel at the right time to ensure your messaging connects and engages.\\n\\n**6. Have we got the message right?**\\n\\nAnyone business can talk about their product or service, but is that what your customer wants to hear? Acknowledge the problem you are solving for them. Double check the language suits them. Ensure every message reflects your brand position, your personality, your tone of voice and has the creativity to cut through all the clutter.\\n\\n**7. How are we measuring success?**\\n\\nDefine the measures you’re using to link back to your goals. You can’t manage what you can’t measure.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Qwl8bxCyv8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Maximising your investment in marcomms is your ultimate goal and posing these questions before you start work is crucial to achieving long-term success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Seven important questions for effective marketing communications','Many companies don’t have the inhouse expertise to create effective marketing communications (marcomms). The most common mistake made when they try to do it themselves is that their marcomms lacks a strategic understanding of the customer and/or isn’t linked to a business plan.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138220,141986,1,'Seven important questions for effective marketing communications','2022-08-17 05:00:36','2022-08-17 05:00:36','f6ec8504-1600-442a-a962-c18a05ccf2f9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VzKHBkk2Ca\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Many companies don’t have the inhouse expertise to create effective marketing communications (marcomms).\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The most common mistake made when they try to do it themselves is that their marcomms lacks a strategic understanding of the customer and/or isn’t linked to a business plan.\\n\\nWithout the right kind of marcomms expertise, you can push out communication that fails to engage or achieve the desired outcome. At NWO, our experienced professionals can develop customised marcomms strategies and compelling content to position your brand perfectly with the right audience.\\n\\nHere’s a handy checklist of the important questions you need to ask and answer before embarking on any form of marcomms.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yJWD4Ckdat\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**1. What does the marketing communication need to deliver?**\\n\\nEvery strategy needs an objective—is it revenue, new customers, enquiries? Set a goal that is measurable and realistic.\\n\\n**2. How are we different?**\\n\\nThink hard about what makes your business unique and differentiates you from your competitors. Then you can market your difference to link to the above objective.\\n\\n**3. Who are our competitors?**\\n\\nEffective marcomms starts with a robust analysis of your marketplace competitors. Map their strengths against your own unique offering.\\n\\n**4. Who are our customers?**\\n\\nMost companies think they know their customers but not all go very far beyond the surface. Do you know what they really want? Have you asked them or have you assumed your product or service fits all their needs? How do they buy your products/services? What is their mindset? What problems do they have? These are the types of strategic questions that need to be asked to make your marcomms effective.\\n\\n**5. Are we using the right communication channels?**\\n\\nThe best messages are wasted if your desired audience isn’t seeing them. Use the right channel at the right time to ensure your messaging connects and engages.\\n\\n**6. Have we got the message right?**\\n\\nAnyone business can talk about their product or service, but is that what your customer wants to hear? Acknowledge the problem you are solving for them. Double check the language suits them. Ensure every message reflects your brand position, your personality, your tone of voice and has the creativity to cut through all the clutter.\\n\\n**7. How are we measuring success?**\\n\\nDefine the measures you’re using to link back to your goals. You can’t manage what you can’t measure.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Qwl8bxCyv8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Maximising your investment in marcomms is your ultimate goal and posing these questions before you start work is crucial to achieving long-term success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Seven important questions for effective marketing communications','Many companies don’t have the inhouse expertise to create effective marketing communications (marcomms). The most common mistake made when they try to do it themselves is that their marcomms lacks a strategic understanding of the customer and/or isn’t linked to a business plan.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138221,141987,1,'Seven important questions for effective marketing communications','2022-08-17 05:10:17','2022-08-17 05:10:17','623d8b6e-4ac0-4814-b76c-bc988939d9da',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VzKHBkk2Ca\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Many companies don’t have the inhouse expertise to create effective marketing communications (marcomms).\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The most common mistake made when they try to do it themselves is that their marcomms lacks a strategic understanding of the customer and/or isn’t linked to a business plan.\\n\\nWithout the right kind of marcomms expertise, you can push out communication that fails to engage or achieve the desired outcome. At NWO, our experienced professionals can develop customised marcomms strategies and compelling content to position your brand perfectly with the right audience.\\n\\nHere’s a handy checklist of the important questions you need to ask and answer before embarking on any form of marcomms.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yJWD4Ckdat\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**1. What does the marketing communication need to deliver?**\\n\\nEvery strategy needs an objective—is it revenue, new customers, enquiries? Set a goal that is measurable and realistic.\\n\\n**2. How are we different?**\\n\\nThink hard about what makes your business unique and differentiates you from your competitors. Then you can market your difference to link to the above objective.\\n\\n**3. Who are our competitors?**\\n\\nEffective marcomms starts with a robust analysis of your marketplace competitors. Map their strengths against your own unique offering.\\n\\n**4. Who are our customers?**\\n\\nMost companies think they know their customers but not all go very far beyond the surface. Do you know what they really want? Have you asked them or have you assumed your product or service fits all their needs? How do they buy your products/services? What is their mindset? What problems do they have? These are the types of strategic questions that need to be asked to make your marcomms effective.\\n\\n**5. Are we using the right communication channels?**\\n\\nThe best messages are wasted if your desired audience isn’t seeing them. Use the right channel at the right time to ensure your messaging connects and engages.\\n\\n**6. Have we got the message right?**\\n\\nAnyone business can talk about their product or service, but is that what your customer wants to hear? Acknowledge the problem you are solving for them. Double check the language suits them. Ensure every message reflects your brand position, your personality, your tone of voice and has the creativity to cut through all the clutter.\\n\\n**7. How are we measuring success?**\\n\\nDefine the measures you’re using to link back to your goals. You can’t manage what you can’t measure.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Qwl8bxCyv8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Maximising your investment in marcomms is your ultimate goal and posing these questions before you start work is crucial to achieving long-term success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Seven important questions for effective marketing communications','Many companies don’t have the inhouse expertise to create effective marketing communications (marcomms). The most common mistake made when they try to do it themselves is that their marcomms lacks a strategic understanding of the customer and/or isn’t linked to a business plan.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138223,141989,1,'Seven important questions for effective marketing communications','2022-08-17 05:10:50','2022-08-17 05:10:50','bf96fca7-9594-45f9-9389-24ad5a66f77e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VzKHBkk2Ca\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Many companies don’t have the inhouse expertise to create effective marketing communications (marcomms).\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The most common mistake made when they try to do it themselves is that their marcomms lacks a strategic understanding of the customer and/or isn’t linked to a business plan.\\n\\nWithout the right kind of marcomms expertise, you can push out communication that fails to engage or achieve the desired outcome. At NWO, our experienced professionals can develop customised marcomms strategies and compelling content to position your brand perfectly with the right audience.\\n\\nHere’s a handy checklist of the important questions you need to ask and answer before embarking on any form of marcomms.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yJWD4Ckdat\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**1. What does the marketing communication need to deliver?**\\n\\nEvery strategy needs an objective—is it revenue, new customers, enquiries? Set a goal that is measurable and realistic.\\n\\n**2. How are we different?**\\n\\nThink hard about what makes your business unique and differentiates you from your competitors. Then you can market your difference to link to the above objective.\\n\\n**3. Who are our competitors?**\\n\\nEffective marcomms starts with a robust analysis of your marketplace competitors. Map their strengths against your own unique offering.\\n\\n**4. Who are our customers?**\\n\\nMost companies think they know their customers but not all go very far beyond the surface. Do you know what they really want? Have you asked them or have you assumed your product or service fits all their needs? How do they buy your products/services? What is their mindset? What problems do they have? These are the types of strategic questions that need to be asked to make your marcomms effective.\\n\\n**5. Are we using the right communication channels?**\\n\\nThe best messages are wasted if your desired audience isn’t seeing them. Use the right channel at the right time to ensure your messaging connects and engages.\\n\\n**6. Have we got the message right?**\\n\\nAnyone business can talk about their product or service, but is that what your customer wants to hear? Acknowledge the problem you are solving for them. Double check the language suits them. Ensure every message reflects your brand position, your personality, your tone of voice and has the creativity to cut through all the clutter.\\n\\n**7. How are we measuring success?**\\n\\nDefine the measures you’re using to link back to your goals. You can’t manage what you can’t measure.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Qwl8bxCyv8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Maximising your investment in marcomms is your ultimate goal and posing these questions before you start work is crucial to achieving long-term success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Seven important questions for effective marketing communications','Many companies don’t have the inhouse expertise to create effective marketing communications (marcomms). The most common mistake made when they try to do it themselves is that their marcomms lacks a strategic understanding of the customer and/or isn’t linked to a business plan.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138225,141991,1,'Are customers giving up on your website?','2022-08-17 05:11:34','2022-08-17 05:11:34','b4b489fa-7cbf-4370-aa41-b9d31ff58b2c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gahB36q3Yd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We’ve all tried to navigate frustrating websites that have ended in annoyance, giving up and even turning to a competitor. Good web design translates to successful conversions, and that all depends on user experience.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Usually, we’re only willing to give a website one minute to display what we’re looking for before we give up. The most common website complaints are that there is ‘too much going on’ and also ‘not enough information’. Translation: many sites drone on and on… but don’t really say much.\\n\\nUsers also complain—across all age groups and digital skill levels—that text is too small and navigation is difficult. Thirty-five per cent of users fail to complete simple tasks on the average website.\\n\\nLet’s improve those stats, shall we?\\n\\n##### **1. Design from the user’s perspective, not your own**\\n\\nWe know your company is the greatest thing since Google and you can’t wait to tell everyone all about where it began, who works there and the details of your offering. But the truth is this: users just want to get to the point, and their interests should override yours. \\nUsability is key. Show them what they’re looking for, and don’t make them search for it.\\n\\n##### **2. Create a navigation path**\\n\\nIf the information on your website is simple and structured, you can guide visitors along the path you’d like them to take—their user journey. Use tabs and sub-pages for different categories and keep it super logical.\\n\\n##### **3. Content is everything**\\n\\nContent is the most important element of your site, really—and it needs to fit the logical and structured navigation. You’ll want to include keywords, page titles, meta tags and headings for search engine optimisation. There are some hallmarks we use when writing web copy for our clients:\\n\\n-\\tKeep it concise.\\n-\\tRound out sub-headings and headings with keywords.\\n-\\tUse plain English and an informal voice.\\n-\\tStick to common language conventions.\\n-\\tBe direct and use active tense.\\n-\\tStructure your information consistently and logically.\\n-\\tSpeak to your audience.\\n\\n\\n##### **4. Speed it up and make it simple**\\n\\nLet’s face it. We’re a busy bunch, and a reminder of the old days of dial-up—waiting for your site to load—will test the patience of even the most loyal visitor. In fact, many visitors will abandon a website after just a few seconds of loading time. Longer loading time is usually caused by complicated design, so make smart design decisions.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP7D0kN7UR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":null,\"plainText\":\"**From site structure to copy, design and development, we’re passionate about finding the best, most creative way to present your business. Talk to us about it today.**\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Are customers giving up on your website?','We’ve all tried to navigate frustrating websites that have ended in annoyance, giving up and even turning to a competitor. Good web design translates to successful conversions, and that all depends on user experience.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138227,141993,1,'Seven important questions for effective marketing communications','2022-08-17 05:12:56','2022-08-17 05:12:56','39920091-03cb-48fc-9006-572db30033b5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VzKHBkk2Ca\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Many companies don’t have the inhouse expertise to create effective marketing communications (marcomms).\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The most common mistake made when they try to do it themselves is that their marcomms lacks a strategic understanding of the customer and/or isn’t linked to a business plan.\\n\\nWithout the right kind of marcomms expertise, you can push out communication that fails to engage or achieve the desired outcome. At NWO, our experienced professionals can develop customised marcomms strategies and compelling content to position your brand perfectly with the right audience.\\n\\nHere’s a handy checklist of the important questions you need to ask and answer before embarking on any form of marcomms.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yJWD4Ckdat\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**1. What does the marketing communication need to deliver?**\\n\\nEvery strategy needs an objective—is it revenue, new customers, enquiries? Set a goal that is measurable and realistic.\\n\\n**2. How are we different?**\\n\\nThink hard about what makes your business unique and differentiates you from your competitors. Then you can market your difference to link to the above objective.\\n\\n**3. Who are our competitors?**\\n\\nEffective marcomms starts with a robust analysis of your marketplace competitors. Map their strengths against your own unique offering.\\n\\n**4. Who are our customers?**\\n\\nMost companies think they know their customers but not all go very far beyond the surface. Do you know what they really want? Have you asked them or have you assumed your product or service fits all their needs? How do they buy your products/services? What is their mindset? What problems do they have? These are the types of strategic questions that need to be asked to make your marcomms effective.\\n\\n**5. Are we using the right communication channels?**\\n\\nThe best messages are wasted if your desired audience isn’t seeing them. Use the right channel at the right time to ensure your messaging connects and engages.\\n\\n**6. Have we got the message right?**\\n\\nAnyone business can talk about their product or service, but is that what your customer wants to hear? Acknowledge the problem you are solving for them. Double check the language suits them. Ensure every message reflects your brand position, your personality, your tone of voice and has the creativity to cut through all the clutter.\\n\\n**7. How are we measuring success?**\\n\\nDefine the measures you’re using to link back to your goals. You can’t manage what you can’t measure.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Qwl8bxCyv8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Maximising your investment in marcomms is your ultimate goal and posing these questions before you start work is crucial to achieving long-term success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Seven important questions for effective marketing communications','Many companies don’t have the inhouse expertise to create effective marketing communications (marcomms). The most common mistake made when they try to do it themselves is that their marcomms lacks a strategic understanding of the customer and/or isn’t linked to a business plan.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138231,141997,1,'Brisbane North PHN website','2022-08-17 22:14:55','2022-08-17 22:14:55','5a7b9b29-f7b8-4b6d-b464-b26485ab5455',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Better access, better health',NULL,NULL,'The PHN’s website is where the ‘better access, better health’ vision comes to life and starts important conversations. This was an opportunity to innovate, collaborate and leverage the PHN\'s work through a powerful digital solution. With a clean design, intuitive user journeys and plain English content, this site is transforming the digital experience for stakeholders within and outside the PHN.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yXpuBl6k0n\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47745\",\"47746\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Brisbane North PHN website','The PHN’s website is where the ‘better access, better health’ vision comes to life and starts important conversations.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138232,141998,1,'22 08 Ekka Marketing Website5','2022-08-18 07:06:05','2022-08-18 07:06:05','4ab40941-4456-416c-9833-db76d36bc2ef',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_08-Ekka-Marketing-Website5.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_08-Ekka-Marketing-Website5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_08-Ekka-Marketing-Website5.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_08-Ekka-Marketing-Website5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_08-Ekka-Marketing-Website5.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_08-Ekka-Marketing-Website5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_08-Ekka-Marketing-Website5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_08-Ekka-Marketing-Website5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_08-Ekka-Marketing-Website5.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_08-Ekka-Marketing-Website5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_08-Ekka-Marketing-Website5.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_08-Ekka-Marketing-Website5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_08-Ekka-Marketing-Website5.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_08-Ekka-Marketing-Website5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_08-Ekka-Marketing-Website5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_08-Ekka-Marketing-Website5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":768,\"2560\":1536,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":384},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":3125,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABQb/xAAjEAABAwMCBwAAAAAAAAAAAAABAAIDBBESITIxM0JxgYKx/8QAGAEAAwEBAAAAAAAAAAAAAAAAAgQFAAP/xAAhEQACAQMDBQAAAAAAAAAAAAAAAgEDBDETMkJBUXGBkf/aAAwDAQACEQMRAD8AYmldDLk+ZoB6bHgpa27TxAeqtPdJNupzLjK3Y7VpvY27K8rr3EXjT3Cdbu9T8S9Pqa94+w2k5HlBOfh0usR4k//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#338684\",\"#d2db78\",\"#232a35\",\"#718f2f\",\"#73dff4\"],\"lightness\":42,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138233,141999,1,'Urban Utilities','2022-08-18 07:06:55','2022-08-18 07:06:55','01122e3e-19c1-4685-9e6e-3296c30479c4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EKKA activation',NULL,NULL,'Where would we be without water? \nVery thirsty. Lots of dead plants. No coffee. Empty fishbowls. Wet n’ Wild closed.\nPaints a pretty dire picture.\nUrban Utilities (UU) knows how important water is to our future, so they’re working hard to protect it. They need Queenslanders to care about water security too. An EKKA display was the perfect way to engage with the community and remind them just how vital water is to their day-to-day life. With brightly coloured videos, graphics and illustrations arranged meticulously in a creative display, we helped UU remind people about their connections with water.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DrXALPWSBT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141998\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DxF20Yq1PE\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:100% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/739527258?h=882d5c0119&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"uu_ekka_-_vertical_screens (Original)\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oonbweG5hq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"UU identified the EKKA as an opportunity to engage, inform and educate their customers to build a deeper understanding of water security, and to set the stage for UU to influence water restrictions down the track.\\nThrough hands-on activities and immersive visual displays, the EKKA was the perfect place to connect with UU’s communities and reassure them that UU is a safe pair of hands that holds and shapes the future of water security.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-J2iJEncoXv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:50% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/739539947?h=1627f92466&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"uu_ekka_combined_videos (1080p).mp4\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3OqKknGGDL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Thematically, this activation was centred around each individual’s connection with water. Through making people conscious of water’s impact on their day-to-day life, we helped them discover how essential water security is and appreciate the role UU plays in protecting our water supply—and ultimately, the lifestyles and livelihoods of Queenslanders.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ovoFZRL7or\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141946\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lTaGbDU5Lj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The goal of the EKKA display was three-fold: attract people to the space, engage them to participate and ensure they absorb the key messaging.\\nWe were working with an eight-metre-wide screen, so we determined pretty quickly that one very (very!) landscape video wouldn’t be the best viewing experience. So we did what we do best: We got creative. We fashioned a collage of videos with various illustrated key messages, live action footage and graphic patterns that loop and combine into an engaging, eight-metre video experience.\\nThe audience were able to contribute their personal connect with water through sketches and scribbles on magnetic tiles. Each tile was fixed to the wall to create a crowdsourced water mosaic that grew over the course of the EKKA, telling true stories of water memories and moments.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JPYArnyhMD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141947\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ez0JB2esSl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141948\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Bright colours, custom illustration, lots of movement and bold statements—that’s the sweet combination we concocted to communicate some very important key messages to the audience.\\nAnd the icing on top of the strawberry sundae? We just had so much fun coming up with the concept and bringing it to life. The EKKA public holiday didn’t hurt, either.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138235,142001,1,'Urban Utilities','2022-08-18 07:07:33','2022-08-18 07:07:33','be5cf646-4be7-434e-a2dd-4e395af58067',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EKKA activation',NULL,NULL,'Where would we be without water? \nVery thirsty. Lots of dead plants. No coffee. Empty fishbowls. Wet n’ Wild closed.\nPaints a pretty dire picture.\nUrban Utilities (UU) knows how important water is to our future, so they’re working hard to protect it. They need Queenslanders to care about water security too. An EKKA display was the perfect way to engage with the community and remind them just how vital water is to their day-to-day life. With brightly coloured videos, graphics and illustrations arranged meticulously in a creative display, we helped UU remind people about their connections with water.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DrXALPWSBT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141998\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DxF20Yq1PE\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:100% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/739527258?h=882d5c0119&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"uu_ekka_-_vertical_screens (Original)\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oonbweG5hq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"UU identified the EKKA as an opportunity to engage, inform and educate their customers to build a deeper understanding of water security, and to set the stage for UU to influence water restrictions down the track.\\nThrough hands-on activities and immersive visual displays, the EKKA was the perfect place to connect with UU’s communities and reassure them that UU is a safe pair of hands that holds and shapes the future of water security.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-J2iJEncoXv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:50% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/739539947?h=1627f92466&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"uu_ekka_combined_videos (1080p).mp4\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3OqKknGGDL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Thematically, this activation was centred around each individual’s connection with water. Through making people conscious of water’s impact on their day-to-day life, we helped them discover how essential water security is and appreciate the role UU plays in protecting our water supply—and ultimately, the lifestyles and livelihoods of Queenslanders.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ovoFZRL7or\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141946\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lTaGbDU5Lj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The goal of the EKKA display was three-fold: attract people to the space, engage them to participate and ensure they absorb the key messaging.\\nWe were working with an eight-metre-wide screen, so we determined pretty quickly that one very (very!) landscape video wouldn’t be the best viewing experience. So we did what we do best: We got creative. We fashioned a collage of videos with various illustrated key messages, live action footage and graphic patterns that loop and combine into an engaging, eight-metre video experience.\\nThe audience were able to contribute their personal connect with water through sketches and scribbles on magnetic tiles. Each tile was fixed to the wall to create a crowdsourced water mosaic that grew over the course of the EKKA, telling true stories of water memories and moments.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JPYArnyhMD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141947\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ez0JB2esSl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141948\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Bright colours, custom illustration, lots of movement and bold statements—that’s the sweet combination we concocted to communicate some very important key messages to the audience.\\nAnd the icing on top of the strawberry sundae? We just had so much fun coming up with the concept and bringing it to life. The EKKA public holiday didn’t hurt, either.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138237,142003,1,'Urban Utilities','2022-08-18 07:09:49','2022-08-18 07:09:49','84aeb94f-ebc5-4669-9b44-462ab31ac999',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EKKA activation',NULL,NULL,'Where would we be without water? \nVery thirsty. Lots of dead plants. No coffee. Empty fishbowls. Wet n’ Wild closed.\nPaints a pretty dire picture.\nUrban Utilities (UU) knows how important water is to our future, so they’re working hard to protect it. They need Queenslanders to care about water security too. An EKKA display was the perfect way to engage with the community and remind them just how vital water is to their day-to-day life. With brightly coloured videos, graphics and illustrations arranged meticulously in a creative display, we helped UU remind people about their connections with water.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DrXALPWSBT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141998\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DxF20Yq1PE\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:100% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/739527258?h=882d5c0119&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"uu_ekka_-_vertical_screens (Original)\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oonbweG5hq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"UU identified the EKKA as an opportunity to engage, inform and educate their customers to build a deeper understanding of water security, and to set the stage for UU to influence water restrictions down the track.\\nThrough hands-on activities and immersive visual displays, the EKKA was the perfect place to connect with UU’s communities and reassure them that UU is a safe pair of hands that holds and shapes the future of water security.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-J2iJEncoXv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:50% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/739539947?h=1627f92466&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"uu_ekka_combined_videos (1080p).mp4\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3OqKknGGDL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Thematically, this activation was centred around each individual’s connection with water. Through making people conscious of water’s impact on their day-to-day life, we helped them discover how essential water security is and appreciate the role UU plays in protecting our water supply—and ultimately, the lifestyles and livelihoods of Queenslanders.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ovoFZRL7or\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141946\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lTaGbDU5Lj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The goal of the EKKA display was three-fold: attract people to the space, engage them to participate and ensure they absorb the key messaging.\\nWe were working with an eight-metre-wide screen, so we determined pretty quickly that one very (very!) landscape video wouldn’t be the best viewing experience. So we did what we do best: We got creative. We fashioned a collage of videos with various illustrated key messages, live action footage and graphic patterns that loop and combine into an engaging, eight-metre video experience.\\nThe audience were able to contribute their personal connect with water through sketches and scribbles on magnetic tiles. Each tile was fixed to the wall to create a crowdsourced water mosaic that grew over the course of the EKKA, telling true stories of water memories and moments.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JPYArnyhMD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141947\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ez0JB2esSl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141948\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Bright colours, custom illustration, lots of movement and bold statements—that’s the sweet combination we concocted to communicate some very important key messages to the audience.\\nAnd the icing on top of the strawberry sundae? We just had so much fun coming up with the concept and bringing it to life. The EKKA public holiday didn’t hurt, either.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138238,142004,1,'Your Care Navigator','2022-08-18 07:10:03','2022-08-18 07:10:03','3cc9abd7-bd73-4409-b003-b1b4d5a785a5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator',NULL,NULL,'Ageing can be overwhelming, especially with a dementia diagnosis. There are so many big life decisions to make, services to navigate and logistics to plan. Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support. Additionally, it’s a resource that helps healthcare professionals coordinate care for their patients and provide them with quality resources.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TBzFA0UCIO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141596\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cYowRU3xxP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Brisbane North PHN asked us to write, design and develop a navigator website that doubles as a one-stop-shop of resources, information and services that promote healthy ageing in the Brisbane North and Moreton Bay region. The project’s goal was to enable people to more proactively manage their own healthcare, while also equipping healthcare professional and carers with resources to support their care services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VACsyz6zoc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141602\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Working closely with the client team and the Council on the Ageing, our strategists conducted a stakeholder consultation process with community members and health professionals. The stakeholders generously shared their expertise and lived experience to help this project reach the community’s specific needs, with a particular focus on: dementia, physical health, mental health, social connection, nutrition and digital skills.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pI57baAPCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Each aspect of the content writing, design and development of the website was informed by insights from the stakeholders, to ensure the project would fulfil community needs. We made sure the site was easy to use by integrating a very simple user interface into the web design and development. User experience and acceptance testing was a key element of ensuring the site would be practical and enjoyable for its audience.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RgOzDzfM2D\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Nothing like this existed before now. This project fulfils community needs around healthy ageing in a way that really excited the stakeholders who were involved in the project. This kind of work aligns perfectly with our purpose at NWO: to make a meaningful difference to people’s lives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator','Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138240,142006,1,'Your Care Navigator','2022-08-18 07:10:20','2022-08-18 07:10:20','38423764-fd8f-43b4-879f-02c1b08d27cc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator',NULL,NULL,'Ageing can be overwhelming, especially with a dementia diagnosis. There are so many big life decisions to make, services to navigate and logistics to plan. Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support. Additionally, it’s a resource that helps healthcare professionals coordinate care for their patients and provide them with quality resources.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TBzFA0UCIO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141596\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cYowRU3xxP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Brisbane North PHN asked us to write, design and develop a navigator website that doubles as a one-stop-shop of resources, information and services that promote healthy ageing in the Brisbane North and Moreton Bay region. The project’s goal was to enable people to more proactively manage their own healthcare, while also equipping healthcare professional and carers with resources to support their care services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VACsyz6zoc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141602\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Working closely with the client team and the Council on the Ageing, our strategists conducted a stakeholder consultation process with community members and health professionals. The stakeholders generously shared their expertise and lived experience to help this project reach the community’s specific needs, with a particular focus on: dementia, physical health, mental health, social connection, nutrition and digital skills.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pI57baAPCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Each aspect of the content writing, design and development of the website was informed by insights from the stakeholders, to ensure the project would fulfil community needs. We made sure the site was easy to use by integrating a very simple user interface into the web design and development. User experience and acceptance testing was a key element of ensuring the site would be practical and enjoyable for its audience.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RgOzDzfM2D\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Nothing like this existed before now. This project fulfils community needs around healthy ageing in a way that really excited the stakeholders who were involved in the project. This kind of work aligns perfectly with our purpose at NWO: to make a meaningful difference to people’s lives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator','Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138242,142008,1,'Your Care Navigator','2022-08-18 07:11:09','2022-08-18 07:11:09','753dcaa3-b206-4c71-9fe9-93631dd3d368',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator',NULL,NULL,'Ageing can be overwhelming, especially with a dementia diagnosis. There are so many big life decisions to make, services to navigate and logistics to plan. Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support. Additionally, it’s a resource that helps healthcare professionals coordinate care for their patients and provide them with quality resources.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TBzFA0UCIO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141596\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cYowRU3xxP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Brisbane North PHN asked us to write, design and develop a navigator website that doubles as a one-stop-shop of resources, information and services that promote healthy ageing in the Brisbane North and Moreton Bay region. The project’s goal was to enable people to more proactively manage their own healthcare, while also equipping healthcare professional and carers with resources to support their care services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VACsyz6zoc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141602\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Working closely with the client team and the Council on the Ageing, our strategists conducted a stakeholder consultation process with community members and health professionals. The stakeholders generously shared their expertise and lived experience to help this project reach the community’s specific needs, with a particular focus on: dementia, physical health, mental health, social connection, nutrition and digital skills.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pI57baAPCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Each aspect of the content writing, design and development of the website was informed by insights from the stakeholders, to ensure the project would fulfil community needs. We made sure the site was easy to use by integrating a very simple user interface into the web design and development. User experience and acceptance testing was a key element of ensuring the site would be practical and enjoyable for its audience.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RgOzDzfM2D\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Nothing like this existed before now. This project fulfils community needs around healthy ageing in a way that really excited the stakeholders who were involved in the project. This kind of work aligns perfectly with our purpose at NWO: to make a meaningful difference to people’s lives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator','Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138243,142009,1,'22 07 YCN Marketing Website 3','2022-08-18 07:17:57','2022-08-18 07:17:57','75e3cfb1-74c5-4d8c-b4ac-714cdb01e19b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/22_07-YCN-Marketing-Website-3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x3072_crop_center-center_82_line/22_07-YCN-Marketing-Website-3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/22_07-YCN-Marketing-Website-3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2560_crop_center-center_82_line/22_07-YCN-Marketing-Website-3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/22_07-YCN-Marketing-Website-3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2048_crop_center-center_82_line/22_07-YCN-Marketing-Website-3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/22_07-YCN-Marketing-Website-3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/22_07-YCN-Marketing-Website-3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/22_07-YCN-Marketing-Website-3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x3072_crop_center-center_82_line/22_07-YCN-Marketing-Website-3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/22_07-YCN-Marketing-Website-3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2560_crop_center-center_82_line/22_07-YCN-Marketing-Website-3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/22_07-YCN-Marketing-Website-3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2048_crop_center-center_82_line/22_07-YCN-Marketing-Website-3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/22_07-YCN-Marketing-Website-3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/22_07-YCN-Marketing-Website-3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"3072\":3072,\"1280\":1280,\"2560\":2560,\"1024\":1024,\"2048\":2048,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":3125,\"originalImageHeight\":3125,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAgMGB//EACMQAAEDAwIHAAAAAAAAAAAAAAECAxEABAUSMQYUFTJCkbH/xAAWAQEBAQAAAAAAAAAAAAAAAAAAAgT/xAAXEQEBAQEAAAAAAAAAAAAAAAAAARIR/9oADAMBAAIRAxEAPwCZDijKdUJO4rSgYaTG5oNKteH8ZaNaEWrawVTLoCj7NZ9Wq4f0fHdvJMQQfAT8pqj/2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#e4e8e2\",\"#272d52\",\"#71788e\",\"#8a90ae\",\"#8c9c8e\"],\"lightness\":58,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138245,142011,1,'22 07 YCN Marketing Website 4','2022-08-18 07:21:04','2022-08-18 07:21:04','caf19ed7-9c1a-42b2-ae0b-45bfb3214d7e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/22_07-YCN-Marketing-Website-4.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/22_07-YCN-Marketing-Website-4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/22_07-YCN-Marketing-Website-4.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/22_07-YCN-Marketing-Website-4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/22_07-YCN-Marketing-Website-4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/22_07-YCN-Marketing-Website-4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/22_07-YCN-Marketing-Website-4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/22_07-YCN-Marketing-Website-4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/22_07-YCN-Marketing-Website-4.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/22_07-YCN-Marketing-Website-4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/22_07-YCN-Marketing-Website-4.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/22_07-YCN-Marketing-Website-4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/22_07-YCN-Marketing-Website-4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/22_07-YCN-Marketing-Website-4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/22_07-YCN-Marketing-Website-4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/22_07-YCN-Marketing-Website-4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"3072\":2048,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2667,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQED/8QAIhABAAEEAQMFAAAAAAAAAAAAAQQAAgMREiFBYSI0cYGx/8QAFgEBAQEAAAAAAAAAAAAAAAAAAgAD/8QAHBEAAgICAwAAAAAAAAAAAAAAAAECESExEjJB/9oADAMBAAIRAxEAPwCSoMiTLyFmO7Mh68igC+XvRhFdmKTxQZdAzWRZPG3QbOqO3f55qbyJVxpbNJCtt6qrnR38FJmaE8ntMR25619FGPons//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#6e5e5b\",\"#d5cec4\",\"#23242b\",\"#afb3a9\",\"#919cb4\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138246,142012,1,'Your Care Navigator','2022-08-18 07:21:46','2022-08-18 07:21:46','5dff28c7-8954-4b0a-a796-5d60805097e5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator',NULL,NULL,'Ageing can be overwhelming, especially with a dementia diagnosis. There are so many big life decisions to make, services to navigate and logistics to plan. Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support. Additionally, it’s a resource that helps healthcare professionals coordinate care for their patients and provide them with quality resources.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TBzFA0UCIO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142011\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cYowRU3xxP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Brisbane North PHN asked us to write, design and develop a navigator website that doubles as a one-stop-shop of resources, information and services that promote healthy ageing in the Brisbane North and Moreton Bay region. The project’s goal was to enable people to more proactively manage their own healthcare, while also equipping healthcare professional and carers with resources to support their care services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VACsyz6zoc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141602\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Working closely with the client team and the Council on the Ageing, our strategists conducted a stakeholder consultation process with community members and health professionals. The stakeholders generously shared their expertise and lived experience to help this project reach the community’s specific needs, with a particular focus on: dementia, physical health, mental health, social connection, nutrition and digital skills.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pI57baAPCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Each aspect of the content writing, design and development of the website was informed by insights from the stakeholders, to ensure the project would fulfil community needs. We made sure the site was easy to use by integrating a very simple user interface into the web design and development. User experience and acceptance testing was a key element of ensuring the site would be practical and enjoyable for its audience.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RgOzDzfM2D\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142009\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Nothing like this existed before now. This project fulfils community needs around healthy ageing in a way that really excited the stakeholders who were involved in the project. This kind of work aligns perfectly with our purpose at NWO: to make a meaningful difference to people’s lives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator','Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138248,142014,1,'22 07 YCN Marketing Website 5','2022-08-18 07:24:47','2022-08-18 07:24:47','604d537d-9f9c-423b-b866-3a7c566613d9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/22_07-YCN-Marketing-Website-5.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x3072_crop_center-center_82_line/22_07-YCN-Marketing-Website-5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/22_07-YCN-Marketing-Website-5.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2560_crop_center-center_82_line/22_07-YCN-Marketing-Website-5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/22_07-YCN-Marketing-Website-5.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2048_crop_center-center_82_line/22_07-YCN-Marketing-Website-5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/22_07-YCN-Marketing-Website-5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/22_07-YCN-Marketing-Website-5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/22_07-YCN-Marketing-Website-5.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x3072_crop_center-center_82_line/22_07-YCN-Marketing-Website-5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/22_07-YCN-Marketing-Website-5.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2560_crop_center-center_82_line/22_07-YCN-Marketing-Website-5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/22_07-YCN-Marketing-Website-5.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2048_crop_center-center_82_line/22_07-YCN-Marketing-Website-5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/22_07-YCN-Marketing-Website-5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/22_07-YCN-Marketing-Website-5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"3072\":3072,\"1280\":1280,\"2560\":2560,\"1024\":1024,\"2048\":2048,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":3125,\"originalImageHeight\":3125,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABgAC/8QAIBABAAECBwEBAAAAAAAAAAAAAQIAEQMEBQYhMdFRYv/EABYBAQEBAAAAAAAAAAAAAAAAAAABA//EABgRAQADAQAAAAAAAAAAAAAAAAABERIT/9oADAMBAAIRAxEAPwBzKK8ClRGI4c7vMy31oAjvPUkEw8rd7vB9rfEJaN76u9YeV4/L7TnBb//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#e9ebe5\",\"#21294f\",\"#6b7c8a\",\"#74748a\",\"#7c8284\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138249,142015,1,'Your Care Navigator','2022-08-18 07:25:17','2022-08-18 07:25:17','34de2893-53bb-4ea8-8929-31ca992e7182',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator',NULL,NULL,'Ageing can be overwhelming, especially with a dementia diagnosis. There are so many big life decisions to make, services to navigate and logistics to plan. Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support. Additionally, it’s a resource that helps healthcare professionals coordinate care for their patients and provide them with quality resources.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TBzFA0UCIO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142011\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cYowRU3xxP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Brisbane North PHN asked us to write, design and develop a navigator website that doubles as a one-stop-shop of resources, information and services that promote healthy ageing in the Brisbane North and Moreton Bay region. The project’s goal was to enable people to more proactively manage their own healthcare, while also equipping healthcare professional and carers with resources to support their care services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VACsyz6zoc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142009\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Working closely with the client team and the Council on the Ageing, our strategists conducted a stakeholder consultation process with community members and health professionals. The stakeholders generously shared their expertise and lived experience to help this project reach the community’s specific needs, with a particular focus on: dementia, physical health, mental health, social connection, nutrition and digital skills.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pI57baAPCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Each aspect of the content writing, design and development of the website was informed by insights from the stakeholders, to ensure the project would fulfil community needs. We made sure the site was easy to use by integrating a very simple user interface into the web design and development. User experience and acceptance testing was a key element of ensuring the site would be practical and enjoyable for its audience.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RgOzDzfM2D\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142014\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Nothing like this existed before now. This project fulfils community needs around healthy ageing in a way that really excited the stakeholders who were involved in the project. This kind of work aligns perfectly with our purpose at NWO: to make a meaningful difference to people’s lives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator','Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138251,142017,1,'Your Care Navigator','2022-08-18 07:27:53','2022-08-18 07:27:53','424b46cc-6225-4e82-9d0f-4a83c176c8e2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator',NULL,NULL,'Ageing can be overwhelming, especially with a dementia diagnosis. There are so many big life decisions to make, services to navigate and logistics to plan. Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support. Additionally, it’s a resource that helps healthcare professionals coordinate care for their patients and provide them with quality resources.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TBzFA0UCIO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142011\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cYowRU3xxP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Brisbane North PHN asked us to write, design and develop a navigator website that doubles as a one-stop-shop of resources, information and services that promote healthy ageing in the Brisbane North and Moreton Bay region. The project’s goal was to enable people to more proactively manage their own healthcare, while also equipping healthcare professional and carers with resources to support their care services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VACsyz6zoc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142009\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Working closely with the client team and the Council on the Ageing, our strategists conducted a stakeholder consultation process with community members and health professionals. The stakeholders generously shared their expertise and lived experience to help this project reach the community’s specific needs, with a particular focus on: dementia, physical health, mental health, social connection, nutrition and digital skills.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pI57baAPCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Each aspect of the content writing, design and development of the website was informed by insights from the stakeholders, to ensure the project would fulfil community needs. We made sure the site was easy to use by integrating a very simple user interface into the web design and development. User experience and acceptance testing was a key element of ensuring the site would be practical and enjoyable for its audience.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RgOzDzfM2D\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142014\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Nothing like this existed before now. This project fulfils community needs around healthy ageing in a way that really excited the stakeholders who were involved in the project. This kind of work aligns perfectly with our purpose at NWO: to make a meaningful difference to people’s lives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator','Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138253,142019,1,'Urban Utilities','2022-08-18 21:47:11','2022-08-18 21:47:11','96e2b7c4-ceb0-421a-b382-becfa5f0fdd7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EKKA activation',NULL,NULL,'Where would we be without water? \nVery thirsty. Lots of dead plants. No coffee. Empty fishbowls. Wet n’ Wild closed.\nPaints a pretty dire picture.\nUrban Utilities (UU) knows how important water is to our future, so they’re working hard to protect it. They need Queenslanders to care about water security too. An EKKA display was the perfect way to engage with the community and remind them just how vital water is to their day-to-day life. With brightly coloured videos, graphics and illustrations arranged meticulously in a creative display, we helped UU remind people about their connections with water.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DrXALPWSBT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141998\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DxF20Yq1PE\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:100% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/739527258?h=882d5c0119&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"uu_ekka_-_vertical_screens (Original)\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oonbweG5hq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"UU identified the EKKA as an opportunity to engage, inform and educate their customers to build a deeper understanding of water security, and to set the stage for UU to influence water restrictions down the track.\\nThrough hands-on activities and immersive visual displays, the EKKA was the perfect place to connect with UU’s communities and reassure them that UU is a safe pair of hands that holds and shapes the future of water security.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-J2iJEncoXv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:50% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/739539947?h=1627f92466&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"uu_ekka_combined_videos (1080p).mp4\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3OqKknGGDL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Thematically, this activation was centred around each individual’s connection with water. Through making people conscious of water’s impact on their day-to-day life, we helped them discover how essential water security is and appreciate the role UU plays in protecting our water supply—and ultimately, the lifestyles and livelihoods of Queenslanders.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ovoFZRL7or\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141946\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lTaGbDU5Lj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The goal of the EKKA display was three-fold: attract people to the space, engage them to participate and ensure they absorb the key messaging.\\nWe were working with an eight-metre-wide screen, so we determined pretty quickly that one very (very!) landscape video wouldn’t be the best viewing experience. So we did what we do best: We got creative. We fashioned a collage of videos with various illustrated key messages, live action footage and graphic patterns that loop and combine into an engaging, eight-metre video experience.\\nThe audience were able to contribute their personal connect with water through sketches and scribbles on magnetic tiles. Each tile was fixed to the wall to create a crowdsourced water mosaic that grew over the course of the EKKA, telling true stories of water memories and moments.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JPYArnyhMD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141947\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ez0JB2esSl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141948\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Bright colours, custom illustration, lots of movement and bold statements—that’s the sweet combination we concocted to communicate some very important key messages to the audience.\\nAnd the icing on top of the strawberry sundae? We just had so much fun coming up with the concept and bringing it to life. The EKKA public holiday didn’t hurt, either.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Urban Utilities EKKA activation','Paints a pretty dire picture. Urban Utilities (UU) knows how important water is to our future, so they’re working hard to protect it. They need Queenslanders to care about water security too. An EKKA display was the perfect way to engage with the community and remind them just how vital water is to their day-to-day life. With brightly coloured videos, graphics and illustrations arranged meticulously in a creative display, we helped UU remind people about their connections with water.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138255,142021,1,'Urban Utilities','2022-08-19 03:55:02','2022-08-19 03:55:02','18334d30-520c-4025-a624-e4e5e428f413',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EKKA activation',NULL,NULL,'Where would we be without water? \nVery thirsty. Lots of dead plants. No coffee. Empty fishbowls. Wet n’ Wild closed.\nPaints a pretty dire picture.\nUrban Utilities (UU) knows how important water is to our future, so they’re working hard to protect it. They need Queenslanders to care about water security too. An EKKA display was the perfect way to engage with the community and remind them just how vital water is to their day-to-day life. With brightly coloured videos, graphics and illustrations arranged meticulously in a creative display, we helped UU remind people about their connections with water.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DrXALPWSBT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141998\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DxF20Yq1PE\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:100% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/739527258?h=882d5c0119&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"uu_ekka_-_vertical_screens (Original)\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oonbweG5hq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"UU identified the EKKA as an opportunity to engage, inform and educate their customers to build a deeper understanding of water security, and to set the stage for UU to influence water restrictions down the track.\\nThrough hands-on activities and immersive visual displays, the EKKA was the perfect place to connect with UU’s communities and reassure them that UU is a safe pair of hands that holds and shapes the future of water security.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-J2iJEncoXv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950657?h=2534af59fd&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"AV 1 GRID COMBINE 03 SIDE 01\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950688?h=d7032fa1fb&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"AV 1 GRID COMBINE 03 SIDE 02\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3OqKknGGDL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Thematically, this activation was centred around each individual’s connection with water. Through making people conscious of water’s impact on their day-to-day life, we helped them discover how essential water security is and appreciate the role UU plays in protecting our water supply—and ultimately, the lifestyles and livelihoods of Queenslanders.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ovoFZRL7or\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141946\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lTaGbDU5Lj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The goal of the EKKA display was three-fold: attract people to the space, engage them to participate and ensure they absorb the key messaging.\\nWe were working with an eight-metre-wide screen, so we determined pretty quickly that one very (very!) landscape video wouldn’t be the best viewing experience. So we did what we do best: We got creative. We fashioned a collage of videos with various illustrated key messages, live action footage and graphic patterns that loop and combine into an engaging, eight-metre video experience.\\nThe audience were able to contribute their personal connect with water through sketches and scribbles on magnetic tiles. Each tile was fixed to the wall to create a crowdsourced water mosaic that grew over the course of the EKKA, telling true stories of water memories and moments.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JPYArnyhMD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141947\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ez0JB2esSl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141948\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Bright colours, custom illustration, lots of movement and bold statements—that’s the sweet combination we concocted to communicate some very important key messages to the audience.\\nAnd the icing on top of the strawberry sundae? We just had so much fun coming up with the concept and bringing it to life. The EKKA public holiday didn’t hurt, either.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Urban Utilities EKKA activation','Paints a pretty dire picture. Urban Utilities (UU) knows how important water is to our future, so they’re working hard to protect it. They need Queenslanders to care about water security too. An EKKA display was the perfect way to engage with the community and remind them just how vital water is to their day-to-day life. With brightly coloured videos, graphics and illustrations arranged meticulously in a creative display, we helped UU remind people about their connections with water.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138257,142023,1,'Urban Utilities','2022-08-19 03:58:24','2022-08-19 03:58:24','a7a9bf0e-763b-46eb-ac83-ec9fe7a75642',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EKKA activation',NULL,NULL,'Where would we be without water? \nVery thirsty. Lots of dead plants. No coffee. Empty fishbowls. Wet n’ Wild closed.\nPaints a pretty dire picture.\nUrban Utilities (UU) knows how important water is to our future, so they’re working hard to protect it. They need Queenslanders to care about water security too. An EKKA display was the perfect way to engage with the community and remind them just how vital water is to their day-to-day life. With brightly coloured videos, graphics and illustrations arranged meticulously in a creative display, we helped UU remind people about their connections with water.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DrXALPWSBT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141998\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DxF20Yq1PE\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:100% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/739527258?h=882d5c0119&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"uu_ekka_-_vertical_screens (Original)\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oonbweG5hq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"UU identified the EKKA as an opportunity to engage, inform and educate their customers to build a deeper understanding of water security, and to set the stage for UU to influence water restrictions down the track.\\nThrough hands-on activities and immersive visual displays, the EKKA was the perfect place to connect with UU’s communities and reassure them that UU is a safe pair of hands that holds and shapes the future of water security.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1kDHeWuzrh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950657?h=2534af59fd&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"AV 1 GRID COMBINE 03 SIDE 01\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KIDD88kVSZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950688?h=d7032fa1fb&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"AV 1 GRID COMBINE 03 SIDE 02\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-J2iJEncoXv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950657?h=2534af59fd&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"AV 1 GRID COMBINE 03 SIDE 01\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950688?h=d7032fa1fb&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"AV 1 GRID COMBINE 03 SIDE 02\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RfRSpmcchL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950797?h=70d6f4f8b8&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"UU Component video 03\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950835?h=dc404ebf2f&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"UU Component video 04\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3OqKknGGDL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Thematically, this activation was centred around each individual’s connection with water. Through making people conscious of water’s impact on their day-to-day life, we helped them discover how essential water security is and appreciate the role UU plays in protecting our water supply—and ultimately, the lifestyles and livelihoods of Queenslanders.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ovoFZRL7or\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141946\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lTaGbDU5Lj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The goal of the EKKA display was three-fold: attract people to the space, engage them to participate and ensure they absorb the key messaging.\\nWe were working with an eight-metre-wide screen, so we determined pretty quickly that one very (very!) landscape video wouldn’t be the best viewing experience. So we did what we do best: We got creative. We fashioned a collage of videos with various illustrated key messages, live action footage and graphic patterns that loop and combine into an engaging, eight-metre video experience.\\nThe audience were able to contribute their personal connect with water through sketches and scribbles on magnetic tiles. Each tile was fixed to the wall to create a crowdsourced water mosaic that grew over the course of the EKKA, telling true stories of water memories and moments.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JPYArnyhMD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141947\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ez0JB2esSl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141948\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Bright colours, custom illustration, lots of movement and bold statements—that’s the sweet combination we concocted to communicate some very important key messages to the audience.\\nAnd the icing on top of the strawberry sundae? We just had so much fun coming up with the concept and bringing it to life. The EKKA public holiday didn’t hurt, either.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Urban Utilities EKKA activation','Paints a pretty dire picture. Urban Utilities (UU) knows how important water is to our future, so they’re working hard to protect it. They need Queenslanders to care about water security too. An EKKA display was the perfect way to engage with the community and remind them just how vital water is to their day-to-day life. With brightly coloured videos, graphics and illustrations arranged meticulously in a creative display, we helped UU remind people about their connections with water.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `content` VALUES (138259,142025,1,'Urban Utilities','2022-08-19 04:01:42','2022-08-19 04:01:42','6a37a882-e550-4837-bed2-e028fcc2ec9c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EKKA activation',NULL,NULL,'Where would we be without water? \nVery thirsty. Lots of dead plants. No coffee. Empty fishbowls. Wet n’ Wild closed.\nPaints a pretty dire picture.\nUrban Utilities (UU) knows how important water is to our future, so they’re working hard to protect it. They need Queenslanders to care about water security too. An EKKA display was the perfect way to engage with the community and remind them just how vital water is to their day-to-day life. With brightly coloured videos, graphics and illustrations arranged meticulously in a creative display, we helped UU remind people about their connections with water.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DrXALPWSBT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141998\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DxF20Yq1PE\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:100% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/739527258?h=882d5c0119&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"uu_ekka_-_vertical_screens (Original)\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oonbweG5hq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"UU identified the EKKA as an opportunity to engage, inform and educate their customers to build a deeper understanding of water security, and to set the stage for UU to influence water restrictions down the track.\\nThrough hands-on activities and immersive visual displays, the EKKA was the perfect place to connect with UU’s communities and reassure them that UU is a safe pair of hands that holds and shapes the future of water security.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1kDHeWuzrh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950657?h=2534af59fd&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"AV 1 GRID COMBINE 03 SIDE 01\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KIDD88kVSZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950688?h=d7032fa1fb&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"AV 1 GRID COMBINE 03 SIDE 02\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3OqKknGGDL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Thematically, this activation was centred around each individual’s connection with water. Through making people conscious of water’s impact on their day-to-day life, we helped them discover how essential water security is and appreciate the role UU plays in protecting our water supply—and ultimately, the lifestyles and livelihoods of Queenslanders.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ovoFZRL7or\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141946\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lTaGbDU5Lj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The goal of the EKKA display was three-fold: attract people to the space, engage them to participate and ensure they absorb the key messaging.\\nWe were working with an eight-metre-wide screen, so we determined pretty quickly that one very (very!) landscape video wouldn’t be the best viewing experience. So we did what we do best: We got creative. We fashioned a collage of videos with various illustrated key messages, live action footage and graphic patterns that loop and combine into an engaging, eight-metre video experience.\\nThe audience were able to contribute their personal connect with water through sketches and scribbles on magnetic tiles. Each tile was fixed to the wall to create a crowdsourced water mosaic that grew over the course of the EKKA, telling true stories of water memories and moments.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RfRSpmcchL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950797?h=70d6f4f8b8&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"UU Component video 03\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950835?h=dc404ebf2f&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"UU Component video 04\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JPYArnyhMD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141947\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-J2iJEncoXv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950768?h=bc2c007c2c&badge=0&autopause=0&player_id=0&app_id=58479/embed\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen frameborder=\\\"0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\"></iframe></div>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950743?h=698f98e314&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"UU Component video 01\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ez0JB2esSl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141948\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Bright colours, custom illustration, lots of movement and bold statements—that’s the sweet combination we concocted to communicate some very important key messages to the audience.\\nAnd the icing on top of the strawberry sundae? We just had so much fun coming up with the concept and bringing it to life. The EKKA public holiday didn’t hurt, either.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Urban Utilities EKKA activation','Paints a pretty dire picture. Urban Utilities (UU) knows how important water is to our future, so they’re working hard to protect it. They need Queenslanders to care about water security too. An EKKA display was the perfect way to engage with the community and remind them just how vital water is to their day-to-day life. With brightly coloured videos, graphics and illustrations arranged meticulously in a creative display, we helped UU remind people about their connections with water.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138263,142029,1,'Seven important questions for effective marketing communications','2022-08-22 06:14:16','2022-08-22 06:14:16','12ebfbee-2776-498e-9c6a-bc254cd8fb7c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VzKHBkk2Ca\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Many companies don’t have the inhouse expertise to create effective marketing communications (marcomms).\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The most common mistake made when they try to do it themselves is that their marcomms lacks a strategic understanding of the customer and/or isn’t linked to a business plan.\\n\\nWithout the right kind of marcomms expertise, you can push out communication that fails to engage or achieve the desired outcome. At NWO, our experienced professionals can develop customised marcomms strategies and compelling content to position your brand perfectly with the right audience.\\n\\nHere’s a handy checklist of the important questions you need to ask and answer before embarking on any form of marcomms.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yJWD4Ckdat\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**1. What does the marketing communication need to deliver?**\\n\\nEvery strategy needs an objective—is it revenue, new customers, enquiries? Set a goal that is measurable and realistic.\\n\\n**2. How are we different?**\\n\\nThink hard about what makes your business unique and differentiates you from your competitors. Then you can market your difference to link to the above objective.\\n\\n**3. Who are our competitors?**\\n\\nEffective marcomms starts with a robust analysis of your marketplace competitors. Map their strengths against your own unique offering.\\n\\n**4. Who are our customers?**\\n\\nMost companies think they know their customers but not all go very far beyond the surface. Do you know what they really want? Have you asked them or have you assumed your product or service fits all their needs? How do they buy your products/services? What is their mindset? What problems do they have? These are the types of strategic questions that need to be asked to make your marcomms effective.\\n\\n**5. Are we using the right communication channels?**\\n\\nThe best messages are wasted if your desired audience isn’t seeing them. Use the right channel at the right time to ensure your messaging connects and engages.\\n\\n**6. Have we got the message right?**\\n\\nAny business can talk about their product or service, but is that what your customer wants to hear? Acknowledge the problem you are solving for them. Double check the language suits them. Ensure every message reflects your brand position, your personality, your tone of voice and has the creativity to cut through all the clutter.\\n\\n**7. How are we measuring success?**\\n\\nDefine the measures you’re using to link back to your goals. You can’t manage what you can’t measure.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Qwl8bxCyv8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Maximising your investment in marcomms is your ultimate goal and posing these questions before you start work is crucial to achieving long-term success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Seven important questions for effective marketing communications','Many companies don’t have the inhouse expertise to create effective marketing communications (marcomms). The most common mistake made when they try to do it themselves is that their marcomms lacks a strategic understanding of the customer and/or isn’t linked to a business plan.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138264,142030,1,'Your Care Navigator','2022-08-22 23:27:44','2022-08-23 06:18:36','ce102173-44cc-4683-b296-f998ccad6b92',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator',NULL,NULL,'Ageing can be overwhelming, especially with a dementia diagnosis. There are so many big life decisions to make, services to navigate and logistics to plan. Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support. Additionally, it’s a resource that helps healthcare professionals coordinate care for their patients and provide them with quality resources.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TBzFA0UCIO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142011\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cYowRU3xxP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Brisbane North PHN asked us to write, design and develop a navigator website that doubles as a one-stop-shop of resources, information and services that promote healthy ageing in the Brisbane North and Moreton Bay region. The project’s goal was to enable people to more proactively manage their own healthcare, while also equipping healthcare professional and carers with resources to support their care services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VACsyz6zoc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142009\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Working closely with the client team and the Council on the Ageing, our strategists conducted a stakeholder consultation process with community members and health professionals. The stakeholders generously shared their expertise and lived experience to help this project reach the community’s specific needs, with a particular focus on: dementia, physical health, mental health, social connection, nutrition and digital skills.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pI57baAPCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Each aspect of the content writing, design and development of the website was informed by insights from the stakeholders, to ensure the project would fulfil community needs. We made sure the site was easy to use by integrating a very simple user interface into the web design and development. User experience and acceptance testing was a key element of ensuring the site would be practical and enjoyable for its audience.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RgOzDzfM2D\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142014\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Nothing like this existed before now. This project fulfils community needs around healthy ageing in a way that really excited the stakeholders who were involved in the project. This kind of work aligns perfectly with our purpose at NWO: to make a meaningful difference to people’s lives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator','Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138267,142033,1,'Brisbane North PHN website','2022-08-24 01:12:15','2022-08-24 01:12:15','33d71a1b-76c1-44db-aa94-d8d9b48769ee',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Better access, better health',NULL,NULL,'The PHN’s website is where the ‘better access, better health’ vision comes to life and starts important conversations. This was an opportunity to innovate, collaborate and leverage the PHN\'s work through a powerful digital solution. With a clean design, intuitive user journeys and plain English content, this site is transforming the digital experience for stakeholders within and outside the PHN.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yXpuBl6k0n\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47745\",\"47746\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fee2W6XmAG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Every conversation matters when it comes to better community access to good health.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Check out the website\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"https://brisbanenorthphn.org.au/\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}}},\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Brisbane North PHN website','The PHN’s website is where the ‘better access, better health’ vision comes to life and starts important conversations.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138268,142034,1,'Brisbane North PHN website','2022-08-24 01:14:05','2022-08-24 01:14:05','811f7ef0-1e30-42dd-9a15-30a4578d4ed9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Better access, better health',NULL,NULL,'The PHN’s website is where the ‘better access, better health’ vision comes to life and starts important conversations. This was an opportunity to innovate, collaborate and leverage the PHN\'s work through a powerful digital solution. With a clean design, intuitive user journeys and plain English content, this site is transforming the digital experience for stakeholders within and outside the PHN.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yXpuBl6k0n\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47745\",\"47746\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fee2W6XmAG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Every conversation matters when it comes to better community access to good health.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Check out the website\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"https://brisbanenorthphn.org.au/\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}}},\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Brisbane North PHN website','The PHN’s website is where the ‘better access, better health’ vision comes to life and starts important conversations.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138269,142035,1,'Brisbane North PHN website','2022-08-24 01:14:57','2022-08-24 01:14:57','8ce6ed67-fdc3-4219-bda8-0e9c3bad9ea5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Better access, better health',NULL,NULL,'The PHN’s website is where the ‘better access, better health’ vision comes to life and starts important conversations. This was an opportunity to innovate, collaborate and leverage the PHN\'s work through a powerful digital solution. With a clean design, intuitive user journeys and plain English content, this site is transforming the digital experience for stakeholders within and outside the PHN.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yXpuBl6k0n\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"47745\",\"47746\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fee2W6XmAG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Every conversation matters when it comes to better community access to good health.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Check out the website\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"https://brisbanenorthphn.org.au/\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}}},\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Brisbane North PHN website','The PHN’s website is where the ‘better access, better health’ vision comes to life and starts important conversations.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138270,142036,1,'Glengara Care','2022-08-24 06:39:06','2022-08-24 06:39:08','1de7c3b4-68e0-4fc9-8152-a9293382eba5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?',NULL,NULL,'That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CIgMzACdNE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141522\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"While Glengara Care has been described as the ‘genuine alternative to aged care’, it often isn’t clear what exactly sets the facility apart from residential aged care facilities. The differentiators ultimately come down to the provision of care: Glengara Care offers care that is personal, loving and delivered in a manner that preserves the recipient’s independence.\\n\\nThe ‘Your Care Factor’ campaign was required to generate leads (and sales) while building awareness around Glengara Care, in comparison to some of the well-known aged care alternatives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gEXzZ5VyHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/716600899?h=4efb4f4cd1&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"GlengaraCare TVC\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The core of the campaign was built from the concept of ‘care’. We drew out two meanings from ‘Your Care Factor’—not only the level of care provided by the facility, but also the decision-making factors that each potential buyer personally cares about. The term ‘care factor’ is deeply familiar, perhaps not so much to the 80+ year old resident market, but more so to their children—the key influencers of this campaign.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141505\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141506\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We created three television commercials that pose the question of ‘What is your care factor?’ by contrasting the realities of people struggling physically and emotionally in a home that doesn’t suit their needs against people receiving the unparalleled care offered at Glengara Care.\\n\\nWhile the videos showcase Glengara Care’s differentiated care offering, the advertisements themselves separate Glengara Care from the alternatives. They’re provocative, fresh and engaging.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3yQnxK2ME5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This project certainly wasn’t an easy one. The final product is the result of fierce determination—both from NWO and RetireAustralia—in the face of adversity such as COVID-19 restrictions, risks and vulnerability. The video shoot was rescheduled numerous times and often our careful planning was swapped out for quick thinking and adaptability.\\nThe end result, however, was worth every bit of effort.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?','That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—through television advertising, to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138271,142037,1,'The School of Distance Education – Charters Towers','2022-08-24 06:52:57','2022-08-24 06:52:57','e19cb148-f6a5-44d2-92db-305f63291be5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The difference a brand can make',NULL,NULL,'This beautiful new brand for SDECT is just one example of how vital visual identity is to telling the true story of any organisation—and how solid marketing strategy, coupled with research, delivers results.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GgxMHLzdFt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Brands should go before you, showcasing a school’s distinctives, paving the way for more positive conversations to come. However, this was not the case at first for the School of Distance Education Charters Towers (SDECT).\\n\\nAs we learned more about the school through in-depth interviews with students, parents and staff, we discovered the school for what it is: contemporary and worthy of its national audience. The school had far surpassed what its brand represented, and it was our job to launch its look into the 21st century.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rq6KvKDblN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We discovered what made SDECT different to other distance education schools: its willingness to accept any child—students who live in isolated locations, have been expelled, live with disabilities or have learning difficulties, or have chronic physical or mental illness. The school\'s level of care, personal attention and customisation sets it apart.\\n\\nThe stories we heard from our research formed the basis of our messaging strategy. We posed this question to prospective families: \'What if an entire school exists only for your child?\' All of our messaging was crafted around this idea.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aqpv5uCKsx\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Brand rollout\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started by replacing the logo, colours and photography to create a fresh, clean and sophisticated look. We developed a range of applications for the new brand across collateral including certificates, banners and signage.\\n\\nWe also developed an informative website separate from the official school website, built for prospective parents. It houses information and stories about learning from home. As part of the website, we developed a range of downloadable fact sheets providing more detail on each topic.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5huCNjtxBM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Campaign\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Once the brand and website were in place, we developed an email campaign to organisations and other schools to build awareness. We sent electronic direct mail to four target groups, each with a clean look and strategic messaging.\\n\\nWe also developed the school’s first-ever social media presence through Facebook. We created content and built an engaged online community within six months, all while we trained and mentored their inhouse communications team to carry the work forward.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lG2tB4Nlor\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"SDECT was not prepared for what came next. Enrolments increased by 255 per cent—from fewer than 900 to 2300—in 2018. And in 2019, we again targeted enrolment growth for SDECT. We also ran a recruitment campaign to meet demand with quality teachers.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138272,142038,1,'West Moreton Anglican College','2022-08-24 07:11:53','2022-08-24 07:11:54','f20ced47-07d3-41b9-b755-eb53ad8eaa78',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The school for (real) life campaign',NULL,NULL,'Like schools everywhere, West Moreton Anglican College needed to change its plans to bring parents onto campus to experience the school because of the coronavirus.\n\nThis meant the annual open day was cancelled. But a few months later when restrictions eased, the school had a chance to bring parents back.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kSAkN1lDaq\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Like schools everywhere, West Moreton Anglican College needed to change its plans to bring parents onto campus to experience the school because of the coronavirus.\\n\\nThis meant the annual open day was cancelled. But a few months later when restrictions eased, the school had a chance to bring parents back.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fxOewiuxW6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45330\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-c4rLGz6SQd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We developed a 16-week plan that timed out the lead up to the modified open day, and follow-up of leads afterwards. It outlined a WestMAC-specific brand campaign that celebrated the WestMAC way and positioned the school as a unique and desirable offering compared to other schools in the catchment area.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GVAyDnsmRc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45329\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o0LzwcEURr\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"At the end of the day, parents just want their kids to be happy, healthy and well.\\n\\nWestMAC is a wonderland for kids complete with an agriculture farm, animals and a garden for digging—because that\'s just what kids like doing. It\'s the school for real life.\\n\\nThis campaign included gorgeous hero photography, strategic messaging and a series of videos where students talk about their WestMAC experience.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-66MSHWAoOc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/470822168?h=a0ce3a6b80&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/470822520?h=90034f124f&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KSqaU5wR9Y\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The campaign resonated with parents in the catchment, and filled the tour. We continued to run the campaign for the rest of the year, encouraging prospective parents to attend a personal tour.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ip4P0zUBCI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45333\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'West Moreton Anglican College','The school for (real) life campaign',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138273,142039,1,NULL,'2022-08-25 00:35:10','2023-03-09 04:28:28','182b2ee2-7391-495a-8aac-20d9e7a72ccb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Director of people and culture',NULL,NULL,NULL,'#### I’m more than NWO’s resident house dog. I’m a muse. And I amuse.\n\nAs director of people and culture, I lead the way in self-care and mindfulness… often sunning my belly in the yard or slipping into deep meditation in the board room. The team is always hounding me about my far-fetched creative practice, but they’re all barking mad. My measures may be unorthodox but I get results (read: fed). The reason I’m here, the reason I care, is this: you have food.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'green',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138274,142041,1,'Let us introduce ourselves','2022-08-25 02:23:49','2022-08-25 02:23:49','f80c687c-6c2f-4a0a-b160-824395b40167',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bpjMTNz5JL\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":null,\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our team is full of vibrant, hard-working people who live very full lives outside the walls of NWO. (Crazy, hey?)\\n\\nIf you have worked with some of the team, you might only know us in full-throttle, foot-on-the-gas-pedal mode.\\n\\nBut at home, there\'s so much more to see.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more and merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD meetings.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our business growth. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-caQw6bLp4J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141536\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138276,142043,1,'Let us introduce ourselves','2022-08-25 02:27:21','2022-08-25 02:27:21','5ad00372-3c71-47cd-b86b-47d60660a2bb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bpjMTNz5JL\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":null,\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our team is full of vibrant, hard-working people who live very full lives outside the walls of NWO. (Crazy, hey?)\\n\\nIf you have worked with some of the team, you might only know us in full-throttle, foot-on-the-gas-pedal mode.\\n\\nBut at home, there\'s so much more to see.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-caQw6bLp4J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141536\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138278,142045,1,'Let us introduce ourselves','2022-08-25 02:27:33','2022-08-25 02:27:33','194ebf19-f86e-41e1-a845-16b424b8cdf4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bpjMTNz5JL\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":null,\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our team is full of vibrant, hard-working people who live very full lives outside the walls of NWO. (Crazy, hey?)\\n\\nIf you have worked with some of the team, you might only know us in full-throttle, foot-on-the-gas-pedal mode.\\n\\nBut at home, there\'s so much more to see.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-caQw6bLp4J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141536\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138280,142047,1,'Let us introduce ourselves','2022-08-25 02:27:45','2022-08-25 02:27:45','4e6bae8e-7672-47de-9206-874f1a69efd5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bpjMTNz5JL\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":null,\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our team is full of vibrant, hard-working people who live very full lives outside the walls of NWO. (Crazy, hey?)\\n\\nIf you have worked with some of the team, you might only know us in full-throttle, foot-on-the-gas-pedal mode.\\n\\nBut at home, there\'s so much more to see.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-caQw6bLp4J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141536\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138283,142050,1,'Urban Utilities','2022-08-25 02:31:17','2022-08-25 02:31:17','8601dce5-4869-4dd0-b219-74d6f3a26c45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EKKA activation',NULL,NULL,'Urban Utilities (UU) knows how important water is to our future, so they’re working hard to protect it. They need Queenslanders to care about water security, too. An EKKA display was the perfect way to engage with the community and remind them just how vital water is to their day-to-day life. With brightly coloured videos, graphics and illustrations arranged meticulously in a creative display, we helped UU remind people about their connections with water.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DrXALPWSBT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141998\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DxF20Yq1PE\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:100% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/739527258?h=882d5c0119&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"uu_ekka_-_vertical_screens (Original)\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oonbweG5hq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"UU identified the EKKA as an opportunity to engage, inform and educate their customers to build a deeper understanding of water security, and to set the stage for UU to influence water restrictions down the track.\\nThrough hands-on activities and immersive visual displays, the EKKA was the perfect place to connect with UU’s communities and reassure them that UU is a safe pair of hands that holds and shapes the future of water security.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1kDHeWuzrh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950657?h=2534af59fd&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"AV 1 GRID COMBINE 03 SIDE 01\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KIDD88kVSZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950688?h=d7032fa1fb&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"AV 1 GRID COMBINE 03 SIDE 02\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3OqKknGGDL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Thematically, this activation was centred around each individual’s connection with water. Through making people conscious of water’s impact on their day-to-day life, we helped them discover how essential water security is and appreciate the role UU plays in protecting our water supply—and, ultimately, the lifestyles and livelihoods of Queenslanders.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ovoFZRL7or\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141946\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lTaGbDU5Lj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The goal of the EKKA display was three-fold: attract people to the space, engage them to participate and ensure they absorb the key messaging.\\nWe were working with an eight-metre-wide screen, so we determined pretty quickly that one very (very!) landscape video wouldn’t be the best viewing experience. So we did what we do best: We got creative. We fashioned a collage of videos with various illustrated key messages, live action footage and graphic patterns that loop and combine into an engaging, eight-metre video experience.\\nThe audience was able to contribute their personal connection with water through sketches and scribbles on magnetic tiles. Each tile was fixed to the wall to create a crowdsourced water mosaic that grew over the course of the EKKA, telling true stories of water memories and moments.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RfRSpmcchL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950797?h=70d6f4f8b8&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"UU Component video 03\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950835?h=dc404ebf2f&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"UU Component video 04\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JPYArnyhMD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141947\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-J2iJEncoXv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950768?h=bc2c007c2c&badge=0&autopause=0&player_id=0&app_id=58479/embed\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen frameborder=\\\"0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\"></iframe></div>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950743?h=698f98e314&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"UU Component video 01\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ez0JB2esSl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141948\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Bright colours, custom illustration, lots of movement and bold statements—that’s the sweet combination we concocted to communicate some very important key messages to the audience.\\nAnd the icing on top of the strawberry sundae? We just had so much fun coming up with the concept and bringing it to life. The EKKA public holiday didn’t hurt, either.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Urban Utilities EKKA activation','Paints a pretty dire picture. Urban Utilities (UU) knows how important water is to our future, so they’re working hard to protect it. They need Queenslanders to care about water security too. An EKKA display was the perfect way to engage with the community and remind them just how vital water is to their day-to-day life. With brightly coloured videos, graphics and illustrations arranged meticulously in a creative display, we helped UU remind people about their connections with water.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138284,142051,1,'Urban Utilities','2022-08-25 02:31:26','2022-08-25 02:31:27','198ca299-d711-415c-af99-4556457378fa',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EKKA activation',NULL,NULL,'Urban Utilities (UU) knows how important water is to our future, so they’re working hard to protect it. They need Queenslanders to care about water security, too. An EKKA display was the perfect way to engage with the community and remind them just how vital water is to their day-to-day life. With brightly coloured videos, graphics and illustrations arranged meticulously in a creative display, we helped UU remind people about their connections with water.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DrXALPWSBT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141998\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DxF20Yq1PE\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:100% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/739527258?h=882d5c0119&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"uu_ekka_-_vertical_screens (Original)\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oonbweG5hq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"UU identified the EKKA as an opportunity to engage, inform and educate their customers to build a deeper understanding of water security, and to set the stage for UU to influence water restrictions down the track.\\nThrough hands-on activities and immersive visual displays, the EKKA was the perfect place to connect with UU’s communities and reassure them that UU is a safe pair of hands that holds and shapes the future of water security.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1kDHeWuzrh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950657?h=2534af59fd&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"AV 1 GRID COMBINE 03 SIDE 01\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KIDD88kVSZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950688?h=d7032fa1fb&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"AV 1 GRID COMBINE 03 SIDE 02\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3OqKknGGDL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Thematically, this activation was centred around each individual’s connection with water. Through making people conscious of water’s impact on their day-to-day life, we helped them discover how essential water security is and appreciate the role UU plays in protecting our water supply—and, ultimately, the lifestyles and livelihoods of Queenslanders.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ovoFZRL7or\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141946\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lTaGbDU5Lj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The goal of the EKKA display was three-fold: attract people to the space, engage them to participate and ensure they absorb the key messaging.\\nWe were working with an eight-metre-wide screen, so we determined pretty quickly that one very (very!) landscape video wouldn’t be the best viewing experience. So we did what we do best: We got creative. We fashioned a collage of videos with various illustrated key messages, live action footage and graphic patterns that loop and combine into an engaging, eight-metre video experience.\\nThe audience was able to contribute their personal connection with water through sketches and scribbles on magnetic tiles. Each tile was fixed to the wall to create a crowdsourced water mosaic that grew over the course of the EKKA, telling true stories of water memories and moments.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RfRSpmcchL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950797?h=70d6f4f8b8&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"UU Component video 03\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950835?h=dc404ebf2f&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"UU Component video 04\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JPYArnyhMD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141947\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-J2iJEncoXv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950768?h=bc2c007c2c&badge=0&autopause=0&player_id=0&app_id=58479/embed\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen frameborder=\\\"0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\"></iframe></div>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950743?h=698f98e314&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"UU Component video 01\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ez0JB2esSl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141948\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Bright colours, custom illustration, lots of movement and bold statements—that’s the sweet combination we concocted to communicate some very important key messages to the audience.\\nAnd the icing on top of the strawberry sundae? We just had so much fun coming up with the concept and bringing it to life. The EKKA public holiday didn’t hurt, either.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Urban Utilities EKKA activation','Paints a pretty dire picture. Urban Utilities (UU) knows how important water is to our future, so they’re working hard to protect it. They need Queenslanders to care about water security too. An EKKA display was the perfect way to engage with the community and remind them just how vital water is to their day-to-day life. With brightly coloured videos, graphics and illustrations arranged meticulously in a creative display, we helped UU remind people about their connections with water.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138286,142053,1,'Your Care Navigator','2022-08-25 02:33:32','2022-08-25 02:33:32','ef6b33a9-2885-4406-8b4d-7e89bb7069e8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator',NULL,NULL,'Ageing can be overwhelming, especially with a dementia diagnosis. There are so many big life decisions to make, services to navigate and logistics to plan. Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support. Additionally, it’s a resource that helps healthcare professionals coordinate care for their patients and provide them with quality resources.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TBzFA0UCIO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142011\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cYowRU3xxP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Brisbane North PHN asked us to write, design and develop a navigator website that doubles as a one-stop-shop of resources, information and services that promote healthy ageing in the Brisbane North and Moreton Bay region. The project’s goal was to enable people to more proactively manage their own healthcare, while also equipping healthcare professionals and carers with resources to support their care services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VACsyz6zoc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142009\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Working closely with the client team and the Council on the Ageing, our strategists conducted a stakeholder consultation process with community members and health professionals. The stakeholders generously shared their expertise and lived experience to help this project reach the community’s specific needs, with a particular focus on dementia, physical health, mental health, social connection, nutrition and digital skills.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pI57baAPCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Each aspect of the content writing, design and development of the website was informed by insights from the stakeholders, to ensure the project would fulfil community needs. We made sure the site was easy to use by integrating a very simple user interface into the web design and development. User experience and acceptance testing was a key element of ensuring the site would be practical and enjoyable for its audience.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RgOzDzfM2D\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142014\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Nothing like this existed before now. This project fulfils community needs around healthy ageing in a way that really excited the stakeholders who were involved in the project. This kind of work aligns perfectly with our purpose at NWO: to make a meaningful difference to people’s lives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator','Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138289,142056,1,'Seven important questions for effective marcomms','2022-08-25 02:41:37','2022-08-25 02:41:37','9215b7d1-98ec-4c37-916a-dd674e6c929a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VzKHBkk2Ca\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Many companies don’t have the inhouse expertise to create effective marketing communications.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The most common mistake made when they try to do it themselves is that their marcomms lacks a strategic understanding of the customer and/or isn’t linked to a business plan.\\n\\nWithout the right kind of marcomms expertise, you can push out communication that fails to engage or achieve the desired outcome. At NWO, our experienced professionals can develop customised marcomms strategies and compelling content to position your brand perfectly with the right audience.\\n\\nHere’s a handy checklist of the important questions you need to ask and answer before embarking on any form of marcomms.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yJWD4Ckdat\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**1. What does the marketing communication need to deliver?**\\n\\nEvery strategy needs an objective—is it revenue, new customers, enquiries? Set a goal that is measurable and realistic.\\n\\n**2. How are we different?**\\n\\nThink hard about what makes your business unique and differentiates you from your competitors. Then you can market your difference to link to your objective.\\n\\n**3. Who are our competitors?**\\n\\nEffective marcomms starts with a robust analysis of your marketplace competitors. Map their strengths against your own unique offering.\\n\\n**4. Who are our customers?**\\n\\nMost companies think they know their customers but not all go very far beyond the surface. Do you know what they really want? Have you asked them or have you assumed your product or service fits all their needs? How do they buy your products/services? What is their mindset? What problems do they have? These are the types of strategic questions that need to be asked (and answered) to make your marcomms effective.\\n\\n**5. Are we using the right communication channels?**\\n\\nThe best messages are wasted if your desired audience isn’t seeing them. Use the right channel at the right time to ensure your messaging connects and engages.\\n\\n**6. Do we have the right message?**\\n\\nAny business can talk about its product or service, but is that what your customer wants to hear? Acknowledge the problem you are solving for them. Double-check the language suits them. Ensure every message reflects your brand position, your personality, your tone of voice and has the creativity to cut through all the clutter.\\n\\n**7. How are we measuring success?**\\n\\nDefine the measures you’re using to link back to your goals. You can’t manage what you can’t measure.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Qwl8bxCyv8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Maximising your investment in marcomms is your ultimate goal and posing these questions before you start work is crucial to achieving long-term success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Seven important questions for effective marketing communications','Many companies don’t have the inhouse expertise to create effective marketing communications (marcomms). The most common mistake made when they try to do it themselves is that their marcomms lacks a strategic understanding of the customer and/or isn’t linked to a business plan.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138290,142057,1,'About us','2022-08-25 03:58:21','2022-08-25 03:58:21','2d742949-ea41-4ffd-8d73-e5e8f1780dc5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17881\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\",\"17921\",\"97259\",\"141616\",\"141642\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | About us','For 20 years we have helped businesses, organisations and governments to solve problems, unlock potential and connect with people to inspire action.','strategy, brand, campaign, behaviour change, engagement, digital, video, content',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138292,142059,1,'Seven important questions for effective marcomms','2022-08-25 04:23:30','2022-08-25 04:23:30','21b76f48-eb42-48c0-84cf-8b8c1570d77c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VzKHBkk2Ca\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Many companies don’t have the inhouse expertise to create effective marketing communications.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The most common mistake made when they try to do it themselves is that their marcomms lacks a strategic understanding of the customer and/or isn’t linked to a business plan.\\n\\nWithout the right kind of marcomms expertise, you can push out communication that fails to engage or achieve the desired outcome. At NWO, our experienced professionals can develop customised marcomms strategies and compelling content to position your brand perfectly with the right audience.\\n\\nHere’s a handy checklist of the important questions you need to ask and answer before embarking on any form of marcomms.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yJWD4Ckdat\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**1. What does the marketing communication need to deliver?**\\n\\nEvery strategy needs an objective—is it revenue, new customers, enquiries? Set a goal that is measurable and realistic.\\n\\n**2. How are we different?**\\n\\nThink hard about what makes your business unique and differentiates you from your competitors. Then you can market your difference to link to your objective.\\n\\n**3. Who are our competitors?**\\n\\nEffective marcomms starts with a robust analysis of your marketplace competitors. Map their strengths against your own unique offering.\\n\\n**4. Who are our customers?**\\n\\nMost companies think they know their customers but not all go very far beyond the surface. Do you know what they really want? Have you asked them or have you assumed your product or service fits all their needs? How do they buy your products/services? What is their mindset? What problems do they have? These are the types of strategic questions that need to be asked (and answered) to make your marcomms effective.\\n\\n**5. Are we using the right communication channels?**\\n\\nThe best messages are wasted if your desired audience isn’t seeing them. Use the right channel at the right time to ensure your messaging connects and engages.\\n\\n**6. Do we have the right message?**\\n\\nAny business can talk about its product or service, but is that what your customer wants to hear? Acknowledge the problem you are solving for them. Double-check the language suits them. Ensure every message reflects your brand position, your personality, your tone of voice and has the creativity to cut through all the clutter.\\n\\n**7. How are we measuring success?**\\n\\nDefine the measures you’re using to link back to your goals. You can’t manage what you can’t measure.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Qwl8bxCyv8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Maximising your investment in marcomms is your ultimate goal and posing these questions before you start work is crucial to achieving long-term success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Seven important questions for effective marketing communications','Many companies don’t have the inhouse expertise to create effective marketing communications (marcomms). The most common mistake made when they try to do it themselves is that their marcomms lacks a strategic understanding of the customer and/or isn’t linked to a business plan.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138294,142061,1,'Your Care Navigator','2022-08-25 04:29:46','2022-08-25 04:29:46','b3860405-f473-411c-8768-e97f81a29606',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator',NULL,NULL,'Ageing can be overwhelming, especially with a dementia diagnosis. There are so many big life decisions to make, services to navigate and logistics to plan. Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support. Additionally, it’s a resource that helps healthcare professionals coordinate care for their patients and provide them with quality resources.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TBzFA0UCIO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142011\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cYowRU3xxP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Brisbane North PHN asked us to write, design and develop a navigator website that doubles as a one-stop-shop of resources, information and services that promote healthy ageing in the Brisbane North and Moreton Bay region. The project’s goal was to enable people to more proactively manage their own healthcare, while also equipping healthcare professionals and carers with resources to support their care services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VACsyz6zoc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142009\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Working closely with the client team and the Council on the Ageing, our strategists conducted a stakeholder consultation process with community members and health professionals. The stakeholders generously shared their expertise and lived experience to help this project reach the community’s specific needs, with a particular focus on dementia, physical health, mental health, social connection, nutrition and digital skills.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pI57baAPCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Each aspect of the content writing, design and development of the website was informed by insights from the stakeholders, to ensure the project would fulfil community needs. We made sure the site was easy to use by integrating a very simple user interface into the web design and development. User experience and acceptance testing was a key element of ensuring the site would be practical and enjoyable for its audience.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RgOzDzfM2D\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142014\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Nothing like this existed before now. This project fulfils community needs around healthy ageing in a way that really excited the stakeholders who were involved in the project. This kind of work aligns perfectly with our purpose at NWO: to make a meaningful difference to people’s lives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator','Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138295,142062,1,'Let us introduce ourselves','2022-08-25 04:31:06','2022-08-25 04:31:06','b3c27641-7ccf-4846-8a52-7c553ed70edf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-caQw6bLp4J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141536\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138297,142064,1,'Seven important questions for effective marcomms','2022-08-25 04:36:54','2022-08-25 04:36:54','bf530e26-579e-405e-9c12-c5dbead48edd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VzKHBkk2Ca\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Many companies don’t have the inhouse expertise to create effective marketing communications.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The most common mistake made when they try to do it themselves is that their marcomms lacks a strategic understanding of the customer and/or isn’t linked to a business plan.\\n\\nWithout the right kind of marcomms expertise, you can push out communication that fails to engage or achieve the desired outcome. At NWO, our experienced professionals can develop customised marcomms strategies and compelling content to position your brand perfectly with the right audience.\\n\\nHere’s a handy checklist of the important questions you need to ask and answer before embarking on any form of marcomms.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yJWD4Ckdat\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**1. What does the marketing communication need to deliver?**\\n\\nEvery strategy needs an objective—is it revenue, new customers, enquiries? Set a goal that is measurable and realistic.\\n\\n**2. How are we different?**\\n\\nThink hard about what makes your business unique and differentiates you from your competitors. Then you can market your difference to link to your objective.\\n\\n**3. Who are our competitors?**\\n\\nEffective marcomms starts with a robust analysis of your marketplace competitors. Map their strengths against your own unique offering.\\n\\n**4. Who are our customers?**\\n\\nMost companies think they know their customers but not all go very far beneath the surface. Do you know what they really want? Have you asked them or have you assumed your product or service fits all their needs? How do they buy your products/services? What is their mindset? What problems do they have? These are the types of strategic questions that need to be asked (and answered) to make your marcomms effective.\\n\\n**5. Are we using the right communication channels?**\\n\\nThe best messages are wasted if your desired audience isn’t seeing them. Use the right channel at the right time to ensure your messaging connects and engages.\\n\\n**6. Do we have the right message?**\\n\\nAny business can talk about its product or service, but is that what your customer wants to hear? Acknowledge the problem you are solving for them. Double-check the language suits them. Ensure every message reflects your brand position, your personality, your tone of voice and has the creativity to cut through all the clutter.\\n\\n**7. How are we measuring success?**\\n\\nDefine the measures you’re using to link back to your goals. You can’t manage what you can’t measure.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Qwl8bxCyv8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Maximising your investment in marcomms is your ultimate goal and posing these questions before you start work is crucial to achieving long-term success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Seven important questions for effective marketing communications','Many companies don’t have the inhouse expertise to create effective marketing communications (marcomms). The most common mistake made when they try to do it themselves is that their marcomms lacks a strategic understanding of the customer and/or isn’t linked to a business plan.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138298,142065,1,'Office of Industrial Relations','2022-08-25 06:03:48','2023-03-30 23:10:32','bb4f69e0-b509-4ecf-b73d-3e628deeb1de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Quad bike safety campaign',NULL,NULL,'Quad bikes are responsible for more deaths in Queensland’s agriculture industry than any other injury mechanism. But quad bikes on their own don’t kill—poor rider behaviour is the real danger.\nOn behalf of the Office of Industrial Relations (OIR), we put our behaviour change expertise and compelling creativity to work, encouraging safer quad bike rider behaviour to significantly reduce quad bikes’ death toll.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JxL4RUaMjM\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<br> The OIR asked us to create a behaviour change campaign that connects with Queenslanders who ride quad bikes. Five key messages were at the core of the campaign: </br>\\n<br> 1.\\tAlways wear a helmet </br>\\n<br>2.\\tKeep kids on kids’ bikes </br>\\n<br>3.\\tDon’t double </br>\\n<br>4.\\tDon’t overload </br>\\n<br>5.\\tGet proper quad bike training </br>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7Uja0C1L9z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Surprised by the fact that quad bikes are the biggest killer in the Queensland agriculture industry, we chose to make this the focus of the campaign. Our messaging asked the audience to consider: What would your family do if you didn’t come home safe?\\nTo cut through to the audience, we turned to our tried-and-true behaviour change methodology. We know behaviour is only the surface evidence of a deeper journey—attitudinal change is the real target, and behaviour change follows if it’s something as simple as wearing a helmet. To unlock attitudinal change, we focused on aligning the campaign with the audience’s core values and beliefs. We just had to understand them and write messaging that connects with who they are.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-99iqBGSZfO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The rollout of the campaign required deft thinking to accommodate the budget and some production parameters, so we worked up solutions that met these requirements while still reaching strong creative standards. Digging deeper strategically, we challenged the illustrative concept the OIR originally briefed, instead conceptualising live action stills underlaying animation, so the audience could see themselves in the video.\\nThe campaign features a series of six videos, radio and press advertisements, posters, DL flyers, and website and digital assets created under a central concept of “Come home safe”.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VQKJ6xIw72\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"In its entirety, the campaign is an emotionally compelling and strategic suite of creative that makes a difference to people’s lives, every time a quad bike rider comes home safe.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Office of Industrial Relations | Quad bike safety campaign','Quad bikes are responsible for more deaths in Queensland’s agriculture industry than any other injury mechanism. But quad bikes on their own don’t kill—poor rider behaviour is the real danger. On behalf of the Office of Industrial Relations (OIR), we put our behaviour change expertise and compelling creativity to work, encouraging safer quad bike rider behaviour to significantly reduce quad bikes’ death toll.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138299,142066,1,'Your Care Navigator','2022-08-25 21:34:36','2022-08-25 21:34:36','2b1c361b-7303-4090-9970-dfdd44b209ab',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator',NULL,NULL,'Ageing can be overwhelming, especially with a dementia diagnosis. There are so many big life decisions to make, services to navigate and logistics to plan. Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support. Additionally, it’s a resource that helps healthcare professionals coordinate care for their patients and provide them with quality resources.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TBzFA0UCIO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142011\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cYowRU3xxP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Brisbane North PHN asked us to write, design and develop a navigator website that doubles as a one-stop-shop of resources, information and services that promote healthy ageing in the Brisbane North and Moreton Bay region. The project’s goal was to enable people to more proactively manage their own healthcare, while also equipping healthcare professional and carers with resources to support their care services.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VACsyz6zoc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142009\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Working closely with the client team and the Council on the Ageing, our strategists conducted a stakeholder consultation process with community members and health professionals. The stakeholders generously shared their expertise and lived experience to help this project reach the community’s specific needs, with a particular focus on: dementia, physical health, mental health, social connection, nutrition and digital skills.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pI57baAPCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Each aspect of the content writing, design and development of the website was informed by insights from the stakeholders, to ensure the project would fulfil community needs. We made sure the site was easy to use by integrating a very simple user interface into the web design and development. User experience and acceptance testing was a key element of ensuring the site would be practical and enjoyable for its audience.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RgOzDzfM2D\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142014\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Nothing like this existed before now. This project fulfils community needs around healthy ageing in a way that really excited the stakeholders who were involved in the project. This kind of work aligns perfectly with our purpose at NWO: to make a meaningful difference to people’s lives.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator','Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138300,142067,1,'Your Care Navigator','2022-08-30 00:13:28','2022-08-30 00:13:28','758a0a28-9826-4bb0-a1bb-69d320838aed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator',NULL,NULL,'Ageing can be overwhelming, especially with a dementia diagnosis. There are so many big life decisions to make, services to navigate and logistics to plan. Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support. Additionally, it’s a resource that helps healthcare professionals coordinate care for their patients and provide them with quality resources.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TBzFA0UCIO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142011\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cYowRU3xxP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Brisbane North PHN asked us to write, design and develop a navigator website that doubles as a one-stop-shop of resources, information and services that promote healthy ageing in the Brisbane North and Moreton Bay region. The project’s goal was to enable people to more proactively manage their own healthcare, while also equipping healthcare professional and carers with resources to support their care services.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VACsyz6zoc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142009\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Working closely with the client team and the Council on the Ageing, our strategists conducted a stakeholder consultation process with community members and health professionals. The stakeholders generously shared their expertise and lived experience to help this project reach the community’s specific needs, with a particular focus on: dementia, physical health, mental health, social connection, nutrition and digital skills.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pI57baAPCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Each aspect of the content writing, design and development of the website was informed by insights from the stakeholders, to ensure the project would fulfil community needs. We made sure the site was easy to use by integrating a very simple user interface into the web design and development. User experience and acceptance testing was a key element of ensuring the site would be practical and enjoyable for its audience.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RgOzDzfM2D\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142014\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Nothing like this existed before now. This project fulfils community needs around healthy ageing in a way that really excited the stakeholders who were involved in the project. This kind of work aligns perfectly with our purpose at NWO: to make a meaningful difference to people’s lives.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator','Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138302,142069,1,'Your Care Navigator','2022-08-30 00:13:40','2022-08-30 00:13:40','54e7516a-645a-4442-a5aa-cd4cd6d66c14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator',NULL,NULL,'Ageing can be overwhelming, especially with a dementia diagnosis. There are so many big life decisions to make, services to navigate and logistics to plan. Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support. Additionally, it’s a resource that helps healthcare professionals coordinate care for their patients and provide them with quality resources.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TBzFA0UCIO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142011\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cYowRU3xxP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Brisbane North PHN asked us to write, design and develop a navigator website that doubles as a one-stop-shop of resources, information and services that promote healthy ageing in the Brisbane North and Moreton Bay region. The project’s goal was to enable people to more proactively manage their own healthcare, while also equipping healthcare professional and carers with resources to support their care services.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VACsyz6zoc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142009\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Working closely with the client team and the Council on the Ageing, our strategists conducted a stakeholder consultation process with community members and health professionals. The stakeholders generously shared their expertise and lived experience to help this project reach the community’s specific needs, with a particular focus on: dementia, physical health, mental health, social connection, nutrition and digital skills.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pI57baAPCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Each aspect of the content writing, design and development of the website was informed by insights from the stakeholders, to ensure the project would fulfil community needs. We made sure the site was easy to use by integrating a very simple user interface into the web design and development. User experience and acceptance testing was a key element of ensuring the site would be practical and enjoyable for its audience.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RgOzDzfM2D\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142014\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Nothing like this existed before now. This project fulfils community needs around healthy ageing in a way that really excited the stakeholders who were involved in the project. This kind of work aligns perfectly with our purpose at NWO: to make a meaningful difference to people’s lives.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator','Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138304,142071,1,'Let us introduce ourselves','2022-09-05 06:28:39','2022-09-05 06:28:39','03b624fe-c5fd-496d-81a9-dd221787f960',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CXP6FGwfrb\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and The Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out). The biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-caQw6bLp4J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141536\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138308,142075,1,'Jul 2015','2022-09-07 07:02:05','2022-09-07 07:02:05','f141cebf-e890-4c4a-936a-af0a18f04cff',NULL,NULL,NULL,NULL,'30641.89','28477.08',NULL,'150200',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'119558.11','93021.03',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138309,142076,1,'Aug 2015','2022-09-07 07:02:06','2022-09-07 07:02:06','286a41b7-4cef-4467-b299-2480cc9956b6',NULL,NULL,NULL,NULL,'35886.24','29423.7',NULL,'78000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'42113.76','14630.06',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138310,142077,1,'Sep 2015','2022-09-07 07:02:07','2022-09-07 07:02:07','e29a976f-856f-4dbd-8518-1bb0a0c9edfd',NULL,NULL,NULL,NULL,'36038.35','34637.18',NULL,'82000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'45961.65','14234.47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138311,142078,1,'Oct 2015','2022-09-07 07:02:08','2022-09-07 07:02:08','6d1dbc5e-095a-42d2-af00-bef58a3aecbc',NULL,NULL,NULL,NULL,'35224.67','30155.49',NULL,'152000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'116775.33','88559.84',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138312,142079,1,'Nov 2015','2022-09-07 07:02:09','2022-09-07 07:02:09','1490f6d8-1bd5-4312-b150-4b389624ab39',NULL,NULL,NULL,NULL,'11985.41','31871.12',NULL,'68000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'56014.59','26483.47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138313,142080,1,'Dec 2015','2022-09-07 07:02:10','2022-09-07 07:02:10','aa6ebe2a-05de-4ce7-b919-6bdf891c2c9d',NULL,NULL,NULL,NULL,'24924.5','35303.18',NULL,'130000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'105075.5','71312.32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138314,142081,1,'Jan 2016','2022-09-07 07:02:11','2022-09-07 07:02:11','ec95ec67-3b65-4d20-abbe-36df672c7af7',NULL,NULL,NULL,NULL,'19979.44','40921.01',NULL,'114000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'94020.56','55039.55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138315,142082,1,'Feb 2016','2022-09-07 07:02:11','2022-09-07 07:02:11','9ea05912-705e-4bb4-aa13-ed3f4cc5a8f9',NULL,NULL,NULL,NULL,'13536.13','30758.24',NULL,'109000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'95463.87','65725.63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138316,142083,1,'Mar 2016','2022-09-07 07:02:12','2022-09-07 07:02:12','bd51ac63-350e-4748-9c35-7fd3e801b425',NULL,NULL,NULL,NULL,'3737.25','36608.25',NULL,'60000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'56262.75','23567.23',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138317,142084,1,'Apr 2016','2022-09-07 07:02:13','2022-09-07 07:02:13','86d6410d-e834-431d-bacc-fb35c4285355',NULL,NULL,NULL,NULL,'103905.3','35246.79',NULL,'103000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'-905.3','-34192.09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138318,142085,1,'May 2016','2022-09-07 07:02:14','2022-09-07 07:02:14','1de58d02-031f-4fc3-bc06-b9f17cdf485d',NULL,NULL,NULL,NULL,'7786.2','32770.75',NULL,'180000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'172213.8','143042.05',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138319,142086,1,'Jun 2016','2022-09-07 07:02:14','2022-09-07 07:02:14','5665fba3-5661-4958-a092-9665515272e9',NULL,NULL,NULL,NULL,'91761.92','492036.64',NULL,'22054',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'-69707.92','-561423.56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138320,142087,1,'Jul 2016','2022-09-07 07:02:15','2022-09-07 07:02:15','ff4dabfc-5047-4416-8e58-6d7b0168e2f2',NULL,NULL,NULL,NULL,'20106.58','37555.65',NULL,'222000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'201893.42','165317.77',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138321,142088,1,'Aug 2016','2022-09-07 07:02:16','2022-09-07 07:02:16','06dd699e-60d1-463a-b521-1e4292daa483',NULL,NULL,NULL,NULL,'10553.49','35741.26',NULL,'94000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'83446.51','51625.25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138322,142089,1,'Sep 2016','2022-09-07 07:02:17','2022-09-07 07:02:17','5198eaeb-8272-4370-8c72-ffea34deb67c',NULL,NULL,NULL,NULL,'29110.49','48752.68',NULL,'117000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'87889.51','41096.83',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138323,142090,1,'Oct 2016','2022-09-07 07:02:17','2022-09-07 07:02:17','96d3c4ab-e7ef-40fb-be44-740489e97683',NULL,NULL,NULL,NULL,'60335.35','33946.87',NULL,'96000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'35664.65','3687.78',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138324,142091,1,'Nov 2016','2022-09-07 07:02:18','2022-09-07 07:02:18','6a0c0f30-caef-42e9-87c1-fc67f6ab13a0',NULL,NULL,NULL,NULL,'14708.97','34463.56',NULL,'131000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'116291.03','83807.47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138325,142092,1,'Dec 2016','2022-09-07 07:02:19','2022-09-07 07:02:19','3ed569a4-3228-43d5-8d97-5dfeb8f246d0',NULL,NULL,NULL,NULL,'18062.5','43980.87',NULL,'196000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'177937.5','135936.63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138326,142093,1,'Jan 2017','2022-09-07 07:02:20','2022-09-07 07:02:20','865dd070-69dc-4f92-927c-e189a9354478',NULL,NULL,NULL,NULL,'12643.06','34494.35',NULL,'50000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'37356.94','5832.59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138327,142094,1,'Feb 2017','2022-09-07 07:02:21','2022-09-07 07:02:21','af2b8286-3851-4898-ac47-83cde4c2bd3b',NULL,NULL,NULL,NULL,'16715.3','39918.92',NULL,'72000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'55284.7','16359.28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138328,142095,1,'Mar 2017','2022-09-07 07:02:22','2022-09-07 07:02:22','c9e048ad-aec0-4eb3-b83b-8676051ab629',NULL,NULL,NULL,NULL,'23188.6','51549.85',NULL,'106000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'82811.4','34244.18',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138329,142096,1,'Apr 2017','2022-09-07 07:02:23','2022-09-07 07:02:23','57b378f1-8cdc-48af-baca-8aeace1f57a9',NULL,NULL,NULL,NULL,'55369.55','66391.21',NULL,'142000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'86630.45','21242.52',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138330,142097,1,'May 2017','2022-09-07 07:02:24','2022-09-07 07:02:24','96bb6b8b-84e4-4bdc-9830-38b2d14bb650',NULL,NULL,NULL,NULL,'64800.67','66855.79',NULL,'145000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'80199.33','15336.4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138331,142098,1,'Jun 2017','2022-09-07 07:02:25','2022-09-07 07:02:25','81c89faa-4be7-4f56-96ea-aed0a3d1591e',NULL,NULL,NULL,NULL,'119825.26','444728.04',NULL,'-12917',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'-132742.26','-574486.7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138332,142099,1,'Jul 2017','2022-09-07 07:02:26','2022-09-07 07:02:26','a36e92ea-cfc1-4ef7-9c3d-b00738802b59',NULL,NULL,NULL,NULL,'124656.28','58940.96',NULL,'318001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'193344.72','136396.14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138333,142100,1,'Aug 2017','2022-09-07 07:02:27','2022-09-07 07:02:27','5389b850-6ef9-44f4-a710-4bf01242ea1f',NULL,NULL,NULL,NULL,'127811.15','64351.02',NULL,'159000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'31188.85','-31169.38',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138334,142101,1,'Sep 2017','2022-09-07 07:02:28','2022-09-07 07:02:28','a62e2852-0332-47b4-b030-98dd0f76a604',NULL,NULL,NULL,NULL,'52946.03','66806.66',NULL,'173000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'120053.97','56230.11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138335,142102,1,'Oct 2017','2022-09-07 07:02:29','2022-09-07 07:02:29','46f698ea-e842-4ede-ac51-d6bb1aafd6aa',NULL,NULL,NULL,NULL,'31122.94','61372.86',NULL,'198000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'166877.06','107496.59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138336,142103,1,'Nov 2017','2022-09-07 07:02:30','2022-09-07 07:02:30','88ed2181-f644-4942-ae7b-9309a25df75d',NULL,NULL,NULL,NULL,'29012.41','62780.09',NULL,'198020.25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'169007.84','108220.56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138337,142104,1,'Dec 2017','2022-09-07 07:02:30','2022-09-07 07:02:30','49159639-357b-4cf9-86c6-6b5775d7dc21',NULL,NULL,NULL,NULL,'34527.87','76058.47',NULL,'199004',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'164476.13','90408.9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138338,142105,1,'Jan 2018','2022-09-07 07:02:31','2022-09-07 07:02:31','9d2073e8-6355-4599-b7bf-a7864f9da812',NULL,NULL,NULL,NULL,'22421.26','71122.45',NULL,'-231482.9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'-253904.16','-322835.92',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138339,142106,1,'Feb 2018','2022-09-07 07:02:32','2022-09-07 07:02:32','03f20727-97f3-487b-8886-9cd59fbfcdac',NULL,NULL,NULL,NULL,'71557.92','67519.22',NULL,'153695',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'82137.08','16608.55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138340,142107,1,'Mar 2018','2022-09-07 07:02:33','2022-09-07 07:02:33','81c7892d-c0c1-456d-864c-11c00bc5ef3a',NULL,NULL,NULL,NULL,'31946.85','77049.2',NULL,'280147',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'248200.15','174530.61',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138341,142108,1,'Apr 2018','2022-09-07 07:02:34','2022-09-07 07:02:34','d998d040-50d3-4c8b-b01a-7c5011efdc92',NULL,NULL,NULL,NULL,'35055.04','75495.68',NULL,'151134.82',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'116079.78','41584.8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138342,142109,1,'May 2018','2022-09-07 07:02:35','2022-09-07 07:02:35','79427b51-be3b-4d3f-8abc-749e8437b269',NULL,NULL,NULL,NULL,'119729.46','87463.08',NULL,'292540.45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'172810.99','88355.16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138343,142110,1,'Jun 2018','2022-09-07 07:02:35','2022-09-07 07:02:35','17108ee2-6c75-4628-9dbc-29b5115cfa40',NULL,NULL,NULL,NULL,'64869.48','694466.09',NULL,'292145.63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'227276.15','-465826.12',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138344,142111,1,'Jul 2018','2022-09-07 07:02:36','2022-09-07 07:02:36','6a61e143-fc0c-48fa-9df8-4258ad026ddb',NULL,NULL,NULL,NULL,'74000.72','111887.81',NULL,'147275.18',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'73274.46','-36522.98',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'147697',NULL,NULL,NULL,NULL,NULL,NULL),(138345,142112,1,'Aug 2018','2022-09-07 07:02:37','2022-09-07 07:02:37','b647af8f-5026-4e77-a09f-37d8e62a3ff6',NULL,NULL,NULL,NULL,'96837.95','124079.08',NULL,'219401.56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'122563.61','-1501.17',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'164435',NULL,NULL,NULL,NULL,NULL,NULL),(138346,142113,1,'Sep 2018','2022-09-07 07:02:38','2022-09-07 07:02:38','a375b59e-1b03-4173-bc35-9f14dd5fbe30',NULL,NULL,NULL,NULL,'45298.63','113286.62',NULL,'154023.91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'108725.28','-3742.13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'157965',NULL,NULL,NULL,NULL,NULL,NULL),(138347,142114,1,'Oct 2018','2022-09-07 07:02:39','2022-09-07 07:02:39','43d8bec7-831e-4349-af6f-3564826ae7ad',NULL,NULL,NULL,NULL,'55556.77','136623.45',NULL,'149903.7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'94346.93','-42251.36',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(138348,142115,1,'Nov 2018','2022-09-07 07:02:40','2022-09-07 07:02:40','a6e36f05-1bfb-49a3-baf9-5b28aa244f1d',NULL,NULL,NULL,NULL,'54735.28','143555.34',NULL,'176699.55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'121964.27','-21565.49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(138349,142116,1,'Dec 2018','2022-09-07 07:02:41','2022-09-07 07:02:41','97088fb6-eeb1-44bf-97db-da7424b2676a',NULL,NULL,NULL,NULL,'66241.68','148956.68',NULL,'210190.96',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'143949.28','-4989.65',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(138350,142117,1,'Jan 2019','2022-09-07 07:02:42','2022-09-07 07:02:42','a15b14db-3ab9-4584-af8b-aedced6a3202',NULL,NULL,NULL,NULL,'4561.82','130051.64',NULL,'99963.35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'95401.53','-34638.1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(138351,142118,1,'Feb 2019','2022-09-07 07:02:43','2022-09-07 07:02:43','7c927de0-0374-4202-b01f-ae7d834a56b4',NULL,NULL,NULL,NULL,'8401.32','112334.34',NULL,'136704.64',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'128303.32','17493.03',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(138352,142119,1,'Mar 2019','2022-09-07 07:02:44','2022-09-07 07:02:44','5621da8f-0190-4c25-ae85-f642fc5734a0',NULL,NULL,NULL,NULL,'29877.13','166573.2',NULL,'185860.76',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'155983.63','-7779.11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(138353,142120,1,'Apr 2019','2022-09-07 07:02:45','2022-09-07 07:02:45','25915eb3-62dc-4c1e-8a7b-58967844e711',NULL,NULL,NULL,NULL,'26063.01','120213.11',NULL,'218229.03',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'192166.02','74192.91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(138354,142121,1,'May 2019','2022-09-07 07:02:46','2022-09-07 07:02:46','dccc1570-6551-4a5b-b919-818a31465110',NULL,NULL,NULL,NULL,'30193.42','148983.16',NULL,'266386.09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'236192.67','88890.38',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(138355,142122,1,'Jun 2019','2022-09-07 07:02:47','2022-09-07 07:02:47','65d279bb-89f6-4370-bc5e-6496ceaf0a70',NULL,NULL,NULL,NULL,'73421.4','338495.32',NULL,'380330.27',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'306908.87','-27586.33',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(138356,142123,1,'Jul 2019','2022-09-07 07:02:48','2022-09-07 07:02:48','781ae3c7-2090-4d7e-9194-34f332dd319f',NULL,NULL,NULL,NULL,'53253.62','139028.57',NULL,'215952.4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'162698.78','25530.21',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'231029.76',NULL,NULL,NULL,NULL,NULL,NULL),(138357,142124,1,'Aug 2019','2022-09-07 07:02:49','2022-09-07 07:02:49','7fafec8a-c13b-4b64-ac7e-a571f78e5b0d',NULL,NULL,NULL,NULL,'131654.45','150318.01',NULL,'190861.91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'59207.46','-88104.61',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'311744.69',NULL,NULL,NULL,NULL,NULL,NULL),(138358,142125,1,'Sep 2019','2022-09-07 07:02:50','2022-09-07 07:02:50','4d9d5b8e-4d3c-48a7-acc2-1f90831a034c',NULL,NULL,NULL,NULL,'31218.34','116472.95',NULL,'230171.54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'198953.2','84185.79',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'291943.95',NULL,NULL,NULL,NULL,NULL,NULL),(138359,142126,1,'Oct 2019','2022-09-07 07:02:51','2022-09-07 07:02:51','781bde21-353f-44cf-94ed-80433921e35a',NULL,NULL,NULL,NULL,'108744.79','147427.91',NULL,'124740.95',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'15996.16','-129179.1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'167814.45',NULL,NULL,NULL,NULL,NULL,NULL),(138360,142127,1,'Nov 2019','2022-09-07 07:02:52','2022-09-07 07:02:52','989219f9-943d-409d-a9e4-24d1e2a06403',NULL,NULL,NULL,NULL,'83071.43','152745.93',NULL,'231142.92',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'148071.49','-2413.96',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'220528.67',NULL,NULL,NULL,NULL,NULL,NULL),(138361,142128,1,'Dec 2019','2022-09-07 07:02:52','2022-09-07 07:02:52','ffcc9ff1-0601-444d-b3be-5ba7a99dc1f8',NULL,NULL,NULL,NULL,'34132.95','121765.4',NULL,'241076.87',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'206943.92','87984.88',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'237009.93',NULL,NULL,NULL,NULL,NULL,NULL),(138362,142129,1,'Jan 2020','2022-09-07 07:02:53','2022-09-07 07:02:53','a46f55d5-a15c-4590-949b-db56ee859ca0',NULL,NULL,NULL,NULL,'56300.2','143709.05',NULL,'122894.38',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'66594.18','-74311.62',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'104155.13',NULL,NULL,NULL,NULL,NULL,NULL),(138363,142130,1,'Feb 2020','2022-09-07 07:02:54','2022-09-07 07:02:54','2e9ffe2d-628d-4eed-a45a-88c1f35a3627',NULL,NULL,NULL,NULL,'73879.47','121533.38',NULL,'130982.05',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'57102.58','-61622.81',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'134093.88',NULL,NULL,NULL,NULL,NULL,NULL),(138364,142131,1,'Mar 2020','2022-09-07 07:02:55','2022-09-07 07:02:55','121560ca-3c61-4cbd-9886-722d03c44775',NULL,NULL,NULL,NULL,'42035.9','114496.21',NULL,'307411.06',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'265375.16','153683.37',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'190737.43',NULL,NULL,NULL,NULL,NULL,NULL),(138365,142132,1,'Apr 2020','2022-09-07 07:02:56','2022-09-07 07:02:56','1eefbd92-a611-436e-b391-6bcc6fed621e',NULL,NULL,NULL,NULL,'27198.52','132741.81',NULL,'314841.39',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'287642.87','201472.06',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'234783.09',NULL,NULL,NULL,NULL,NULL,NULL),(138366,142133,1,'May 2020','2022-09-07 07:02:57','2022-09-07 07:02:57','00fc94c0-6f3f-4cee-ac55-b210a9ca4387',NULL,NULL,NULL,NULL,'86514.99','130636.12',NULL,'215415.92',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'128900.93','6187.14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'350163.82',NULL,NULL,NULL,NULL,NULL,NULL),(138367,142134,1,'Jun 2020','2022-09-07 07:02:58','2022-09-07 07:02:58','4b69176c-2c5b-4b37-be39-adc8ebe3eb51',NULL,NULL,NULL,NULL,'34119.85','280264.79',NULL,'108052.94',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'73933.09','-203411.35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'389058.54',NULL,NULL,NULL,NULL,NULL,NULL),(138368,142135,1,'Jul 2020','2022-09-07 07:02:59','2022-09-07 07:02:59','f5c32d4d-7640-47d6-be90-c9e4847721fa',NULL,NULL,NULL,NULL,'85216.7','155638.76',NULL,'237989.14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'152772.44','559.06',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'204227.8112',NULL,NULL,NULL,NULL,NULL,NULL),(138369,142136,1,'Aug 2020','2022-09-07 07:03:00','2022-09-07 07:03:00','7c5955aa-ad2c-4841-a5f4-12cd7cf54728',NULL,NULL,NULL,NULL,'93034.44','116200.68',NULL,'203442.81',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'110408.37','21477.59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'177542.8673',NULL,NULL,NULL,NULL,NULL,NULL),(138370,142137,1,'Sep 2020','2022-09-07 07:03:01','2022-09-07 07:03:01','cb06ad39-2495-42f1-a411-ed7a0acc83e9',NULL,NULL,NULL,NULL,'54987.82','119322.07',NULL,'197912.27',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'142924.45','38477.37',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'178650.1445',NULL,NULL,NULL,NULL,NULL,NULL),(138371,142138,1,'Oct 2020','2022-09-07 07:03:02','2022-09-07 07:03:02','bb63c96c-2a9a-42c0-a969-a97402766b0e',NULL,NULL,NULL,NULL,'82653','154948.66',NULL,'284488.19',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'201835.19','60539.21',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'152083.026',NULL,NULL,NULL,NULL,NULL,NULL),(138372,142139,1,'Nov 2020','2022-09-07 07:03:03','2022-09-07 07:03:03','07f4b000-9adf-4b5b-8efd-cbe1b8f07ce9',NULL,NULL,NULL,NULL,'41268.96','138999.28',NULL,'122433.13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'81164.17','-54446.59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'202028.5307',NULL,NULL,NULL,NULL,NULL,NULL),(138373,142140,1,'Dec 2020','2022-09-07 07:03:03','2022-09-07 07:03:03','5c92d1ac-ca84-4686-ba5a-82316ebae876',NULL,NULL,NULL,NULL,'43754.18','101087.89',NULL,'214996.8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'171242.62','72403.07',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'228061.0762',NULL,NULL,NULL,NULL,NULL,NULL),(138374,142141,1,'Jan 2021','2022-09-07 07:03:04','2022-09-07 07:03:04','816e8efe-25b6-4750-be0c-ed5cb0100556',NULL,NULL,NULL,NULL,'34680.41','127911.34',NULL,'133190.08',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'98509.67','-27157.92',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'126517.9049',NULL,NULL,NULL,NULL,NULL,NULL),(138375,142142,1,'Feb 2021','2022-09-07 07:03:05','2022-09-07 07:03:05','c57b51b4-05cb-44ea-9b5a-7867cb6c9973',NULL,NULL,NULL,NULL,'17113.54','124028.06',NULL,'168926.4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'151812.86','30111.29',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'151737.957',NULL,NULL,NULL,NULL,NULL,NULL),(138376,142143,1,'Mar 2021','2022-09-07 07:03:06','2022-09-07 07:03:06','b450b8e1-8dbe-4061-807e-0e99860441f5',NULL,NULL,NULL,NULL,'34577.46','119082.89',NULL,'108568.58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'73991.12','-41720.76',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'202504.339',NULL,NULL,NULL,NULL,NULL,NULL),(138377,142144,1,'Apr 2021','2022-09-07 07:03:07','2022-09-07 07:03:07','41ac4fff-2073-4d9d-9925-df947fd01290',NULL,NULL,NULL,NULL,'71194.26','141213.01',NULL,'388991.75',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'317797.49','178836.73',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'253314.9793',NULL,NULL,NULL,NULL,NULL,NULL),(138378,142145,1,'May 2021','2022-09-07 07:03:08','2022-09-07 07:03:08','349ac9aa-6f6c-4e6c-ab3d-6cc64d40cfa5',NULL,NULL,NULL,NULL,'86314.7','158006.48',NULL,'126007.5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39692.8','-117182.23',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'304194.8279',NULL,NULL,NULL,NULL,NULL,NULL),(138379,142146,1,'Jun 2021','2022-09-07 07:03:09','2022-09-07 07:03:09','ffeb1b58-6e9b-4acc-b2a8-a7bd13d3b437',NULL,NULL,NULL,NULL,'66581.49','269957.97',NULL,'333581.4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'104507.09','-161896.82',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'354136.5359',NULL,NULL,NULL,NULL,NULL,NULL),(138380,142147,1,'Jul 2021','2022-09-07 07:03:10','2022-09-07 07:03:10','f93c00f5-4a1c-466e-be4f-b3122c538c79',NULL,NULL,NULL,NULL,'92534.16','372266.07',NULL,'253376.78',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'160842.62','-211423.45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'253646.96',NULL,NULL,NULL,NULL,NULL,NULL),(138381,142148,1,'Aug 2021','2022-09-07 07:03:11','2022-09-07 07:03:11','86eb17ad-43e8-49bb-b63d-4634356eb21a',NULL,NULL,NULL,NULL,'87619.32','159658.54',NULL,'178768.63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'91149.31','-68507.87',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'302574.55',NULL,NULL,NULL,NULL,NULL,NULL),(138382,142149,1,'Sep 2021','2022-09-07 07:03:12','2022-09-07 07:03:12','0e7ce069-82c7-4329-99d0-b79c1109610f',NULL,NULL,NULL,NULL,'144440.96','203439.21',NULL,'334002.05',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'189561.09','-13876.63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'303327.81',NULL,NULL,NULL,NULL,NULL,NULL),(138383,142150,1,'Oct 2021','2022-09-07 07:03:13','2022-09-07 07:03:13','c1f8d31f-4c26-4355-ba34-6dbb62d2ad7d',NULL,NULL,NULL,NULL,'40066.09','167609.66',NULL,'211688.3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'171622.21','4013.75',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'202041.07',NULL,NULL,NULL,NULL,NULL,NULL),(138384,142151,1,'Nov 2021','2022-09-07 07:03:14','2022-09-07 07:03:14','f690773e-740e-4daf-abc3-3a7751ccc33b',NULL,NULL,NULL,NULL,'102016.09','180473.09',NULL,'318984.43',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'216968.34','36496.1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'202351.45',NULL,NULL,NULL,NULL,NULL,NULL),(138385,142152,1,'Dec 2021','2022-09-07 07:03:15','2022-09-07 07:03:15','fb0e228a-b802-48a3-a20d-cdc9cf2a9c83',NULL,NULL,NULL,NULL,'125678.95','178911.53',NULL,'510903.89',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'385224.94','206314.26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'252789.03',NULL,NULL,NULL,NULL,NULL,NULL),(138386,142153,1,'Jan 2022','2022-09-07 07:03:16','2022-09-07 07:03:16','28a808a1-5974-4667-ae2c-2191a2c70294',NULL,NULL,NULL,NULL,'69288.44','167700.23',NULL,'89711.83',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'20423.39','-147275.88',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'151493.12',NULL,NULL,NULL,NULL,NULL,NULL),(138387,142154,1,'Feb 2022','2022-09-07 07:03:17','2022-09-07 07:03:17','febebede-569e-4ceb-98a0-61461a3c95c8',NULL,NULL,NULL,NULL,'25256.65','127253.23',NULL,'111139.49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'85882.84','-41369.43',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'151863.49',NULL,NULL,NULL,NULL,NULL,NULL),(138388,142155,1,'Mar 2022','2022-09-07 07:03:18','2022-09-07 07:03:18','d886ae52-b746-4dfe-9ae6-01888aa0370f',NULL,NULL,NULL,NULL,'121499.88','151184.05',NULL,'360528.63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'239028.75','87845.57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'252449.14',NULL,NULL,NULL,NULL,NULL,NULL),(138389,142156,1,'Apr 2022','2022-09-07 07:03:19','2022-09-07 07:03:19','895f346a-e50d-4066-a5d4-b979fe880858',NULL,NULL,NULL,NULL,'155220.38','171232.41',NULL,'316516.04',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'161295.66','-9935.79',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'252645.85',NULL,NULL,NULL,NULL,NULL,NULL),(138390,142157,1,'May 2022','2022-09-07 07:03:20','2022-09-07 07:03:20','12fa1752-eeaf-4c06-b6fe-1d785705f89f',NULL,NULL,NULL,NULL,'90871.46','166192.77',NULL,'256968.85',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'166097.39','-94.45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'354281.48',NULL,NULL,NULL,NULL,NULL,NULL),(138391,142158,1,'Jun 2022','2022-09-07 07:03:21','2022-09-07 07:03:21','bcd80558-b18e-4312-904e-007256ef7c76',NULL,NULL,NULL,NULL,'26987.54','115582.23',NULL,'365537.69',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'338550.15','222968.88',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'354286.06',NULL,NULL,NULL,NULL,NULL,NULL),(138392,142159,1,'Jul 2015','2022-09-07 07:09:01','2022-09-07 07:09:01','3d4fc75a-cc86-4866-b1d0-5ffd586fe778',NULL,NULL,NULL,NULL,'30641.89','28477.08',NULL,'150200',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'119558.11','93021.03',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138393,142160,1,'Aug 2015','2022-09-07 07:09:02','2022-09-07 07:09:02','6e02c948-8126-4c19-871f-7a7cf1bb9a4e',NULL,NULL,NULL,NULL,'35886.24','29423.7',NULL,'78000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'42113.76','14630.06',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138394,142161,1,'Sep 2015','2022-09-07 07:09:03','2022-09-07 07:09:03','03ebe839-be07-4952-acfc-44f27fdc26dd',NULL,NULL,NULL,NULL,'36038.35','34637.18',NULL,'82000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'45961.65','14234.47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138395,142162,1,'Oct 2015','2022-09-07 07:09:03','2022-09-07 07:09:03','14e0a5e9-50d0-4309-ae2e-3dae89a5552d',NULL,NULL,NULL,NULL,'35224.67','30155.49',NULL,'152000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'116775.33','88559.84',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138396,142163,1,'Nov 2015','2022-09-07 07:09:04','2022-09-07 07:09:04','7484cdb6-3826-4371-81f5-ff6b06d2b026',NULL,NULL,NULL,NULL,'11985.41','31871.12',NULL,'68000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'56014.59','26483.47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138397,142164,1,'Dec 2015','2022-09-07 07:09:05','2022-09-07 07:09:05','5fd38558-b2ff-45d9-8cef-a92496446b4b',NULL,NULL,NULL,NULL,'24924.5','35303.18',NULL,'130000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'105075.5','71312.32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138398,142165,1,'Jan 2016','2022-09-07 07:09:06','2022-09-07 07:09:06','2a28bb59-9fa0-44aa-9965-04082fe911a5',NULL,NULL,NULL,NULL,'19979.44','40921.01',NULL,'114000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'94020.56','55039.55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138399,142166,1,'Feb 2016','2022-09-07 07:09:07','2022-09-07 07:09:07','e665118a-a06c-47a8-9fae-cc0c5bb2b92d',NULL,NULL,NULL,NULL,'13536.13','30758.24',NULL,'109000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'95463.87','65725.63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138400,142167,1,'Mar 2016','2022-09-07 07:09:08','2022-09-07 07:09:08','24ff472f-b53d-4a5f-a167-6e368f7ccc86',NULL,NULL,NULL,NULL,'3737.25','36608.25',NULL,'60000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'56262.75','23567.23',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138401,142168,1,'Apr 2016','2022-09-07 07:09:09','2022-09-07 07:09:09','47a0242a-ddcf-4836-8247-7b2c83b85469',NULL,NULL,NULL,NULL,'103905.3','35246.79',NULL,'103000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'-905.3','-34192.09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138402,142169,1,'May 2016','2022-09-07 07:09:09','2022-09-07 07:09:09','1934acde-f219-4219-b59b-5a09ea829aa4',NULL,NULL,NULL,NULL,'7786.2','32770.75',NULL,'180000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'172213.8','143042.05',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138403,142170,1,'Jun 2016','2022-09-07 07:09:10','2022-09-07 07:09:10','abc34a26-1541-44a8-a8d4-ef5a6f200d88',NULL,NULL,NULL,NULL,'91761.92','492036.64',NULL,'22054',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'-69707.92','-561423.56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138404,142171,1,'Jul 2016','2022-09-07 07:09:11','2022-09-07 07:09:11','833dbf08-291d-4110-808e-fcd125460640',NULL,NULL,NULL,NULL,'20106.58','37555.65',NULL,'222000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'201893.42','165317.77',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138405,142172,1,'Aug 2016','2022-09-07 07:09:12','2022-09-07 07:09:12','b72ea8dc-98cc-4dcd-9f58-f8d608084ee0',NULL,NULL,NULL,NULL,'10553.49','35741.26',NULL,'94000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'83446.51','51625.25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138406,142173,1,'Sep 2016','2022-09-07 07:09:12','2022-09-07 07:09:12','186ce75c-9cb9-4e80-a3c9-0b4223ab8504',NULL,NULL,NULL,NULL,'29110.49','48752.68',NULL,'117000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'87889.51','41096.83',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138407,142174,1,'Oct 2016','2022-09-07 07:09:13','2022-09-07 07:09:13','af197f58-bec9-4ba6-9293-eca04f7d6fed',NULL,NULL,NULL,NULL,'60335.35','33946.87',NULL,'96000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'35664.65','3687.78',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138408,142175,1,'Nov 2016','2022-09-07 07:09:14','2022-09-07 07:09:14','09716919-380f-416e-bd19-9eee5b182557',NULL,NULL,NULL,NULL,'14708.97','34463.56',NULL,'131000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'116291.03','83807.47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138409,142176,1,'Dec 2016','2022-09-07 07:09:15','2022-09-07 07:09:15','5704b5b7-3ccb-45fb-b11d-362ab062a18b',NULL,NULL,NULL,NULL,'18062.5','43980.87',NULL,'196000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'177937.5','135936.63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138410,142177,1,'Jan 2017','2022-09-07 07:09:16','2022-09-07 07:09:16','f8a80f1c-95d4-4d81-b006-ebab167fae7e',NULL,NULL,NULL,NULL,'12643.06','34494.35',NULL,'50000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'37356.94','5832.59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138411,142178,1,'Feb 2017','2022-09-07 07:09:17','2022-09-07 07:09:17','9ca5cd60-b886-44f0-9f61-5e56f1f9970d',NULL,NULL,NULL,NULL,'16715.3','39918.92',NULL,'72000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'55284.7','16359.28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138412,142179,1,'Mar 2017','2022-09-07 07:09:18','2022-09-07 07:09:18','575f3c0f-b1e3-48bf-adcd-cf64f5de6953',NULL,NULL,NULL,NULL,'23188.6','51549.85',NULL,'106000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'82811.4','34244.18',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138413,142180,1,'Apr 2017','2022-09-07 07:09:18','2022-09-07 07:09:18','53ecfc8b-617e-403f-998f-3987ca9d17db',NULL,NULL,NULL,NULL,'55369.55','66391.21',NULL,'142000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'86630.45','21242.52',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138414,142181,1,'May 2017','2022-09-07 07:09:19','2022-09-07 07:09:19','914dd31b-e473-4c33-bf4f-a407ee186135',NULL,NULL,NULL,NULL,'64800.67','66855.79',NULL,'145000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'80199.33','15336.4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138415,142182,1,'Jun 2017','2022-09-07 07:09:20','2022-09-07 07:09:20','6e3bcd01-1f39-40ce-81ff-d284ec64f305',NULL,NULL,NULL,NULL,'119825.26','444728.04',NULL,'-12917',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'-132742.26','-574486.7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138416,142183,1,'Jul 2017','2022-09-07 07:09:21','2022-09-07 07:09:21','634591e4-bc51-4a35-9b66-2e8a56a4b6f5',NULL,NULL,NULL,NULL,'124656.28','58940.96',NULL,'318001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'193344.72','136396.14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138417,142184,1,'Aug 2017','2022-09-07 07:09:22','2022-09-07 07:09:22','887ce5b4-8239-4c40-a40a-9301845e0c16',NULL,NULL,NULL,NULL,'127811.15','64351.02',NULL,'159000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'31188.85','-31169.38',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138418,142185,1,'Sep 2017','2022-09-07 07:09:23','2022-09-07 07:09:23','0a333d4a-6eb8-4694-883e-f4b52d596f15',NULL,NULL,NULL,NULL,'52946.03','66806.66',NULL,'173000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'120053.97','56230.11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138419,142186,1,'Oct 2017','2022-09-07 07:09:24','2022-09-07 07:09:24','913ded7b-377a-4a74-b3d6-22619cce0deb',NULL,NULL,NULL,NULL,'31122.94','61372.86',NULL,'198000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'166877.06','107496.59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138420,142187,1,'Nov 2017','2022-09-07 07:09:24','2022-09-07 07:09:24','99bcab29-9454-4810-a511-595997db8a7e',NULL,NULL,NULL,NULL,'29012.41','62780.09',NULL,'198020.25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'169007.84','108220.56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138421,142188,1,'Dec 2017','2022-09-07 07:09:25','2022-09-07 07:09:25','fb16104f-1eb0-483a-ad18-89629512466a',NULL,NULL,NULL,NULL,'34527.87','76058.47',NULL,'199004',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'164476.13','90408.9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138422,142189,1,'Jan 2018','2022-09-07 07:09:26','2022-09-07 07:09:26','4d2a88c1-ccc6-4412-84e0-6d4fd73e6b80',NULL,NULL,NULL,NULL,'22421.26','71122.45',NULL,'-231482.9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'-253904.16','-322835.92',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138423,142190,1,'Feb 2018','2022-09-07 07:09:27','2022-09-07 07:09:27','145b0fbd-dce6-4d1a-bd62-628b4dd27f12',NULL,NULL,NULL,NULL,'71557.92','67519.22',NULL,'153695',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'82137.08','16608.55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138424,142191,1,'Mar 2018','2022-09-07 07:09:28','2022-09-07 07:09:28','f81bbc77-c4aa-4e7e-bb16-4187e1169e6b',NULL,NULL,NULL,NULL,'31946.85','77049.2',NULL,'280147',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'248200.15','174530.61',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138425,142192,1,'Apr 2018','2022-09-07 07:09:29','2022-09-07 07:09:29','c545fd2c-0a11-415c-93a5-14ecec721f82',NULL,NULL,NULL,NULL,'35055.04','75495.68',NULL,'151134.82',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'116079.78','41584.8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138426,142193,1,'May 2018','2022-09-07 07:09:29','2022-09-07 07:09:29','0cc997e9-c658-4cd5-a75d-a2c86d91f18d',NULL,NULL,NULL,NULL,'119729.46','87463.08',NULL,'292540.45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'172810.99','88355.16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138427,142194,1,'Jun 2018','2022-09-07 07:09:30','2022-09-07 07:09:30','9a460f62-0195-4d7e-a83c-4d498e784872',NULL,NULL,NULL,NULL,'64869.48','694466.09',NULL,'292145.63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'227276.15','-465826.12',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138428,142195,1,'Jul 2018','2022-09-07 07:09:31','2022-09-07 07:09:31','77c25fe5-e027-4109-94dd-ce19019abe54',NULL,NULL,NULL,NULL,'74000.72','111887.81',NULL,'147275.18',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'73274.46','-36522.98',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'147697',NULL,NULL,NULL,NULL,NULL,NULL),(138429,142196,1,'Aug 2018','2022-09-07 07:09:32','2022-09-07 07:09:32','8654c564-e4b9-4013-8dfa-c770c4f06f4f',NULL,NULL,NULL,NULL,'96837.95','124079.08',NULL,'219401.56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'122563.61','-1501.17',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'164435',NULL,NULL,NULL,NULL,NULL,NULL),(138430,142197,1,'Sep 2018','2022-09-07 07:09:33','2022-09-07 07:09:33','f11e8b38-f61c-4bc5-b0f1-a91e4e067415',NULL,NULL,NULL,NULL,'45298.63','113286.62',NULL,'154023.91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'108725.28','-3742.13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'157965',NULL,NULL,NULL,NULL,NULL,NULL),(138431,142198,1,'Oct 2018','2022-09-07 07:09:34','2022-09-07 07:09:34','49eb4046-a5a0-4a18-ba7e-10c9ad2d72bc',NULL,NULL,NULL,NULL,'55556.77','136623.45',NULL,'149903.7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'94346.93','-42251.36',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(138432,142199,1,'Nov 2018','2022-09-07 07:09:35','2022-09-07 07:09:35','33af350f-2166-40d8-9b85-97f0fb601dc0',NULL,NULL,NULL,NULL,'54735.28','143555.34',NULL,'176699.55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'121964.27','-21565.49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(138433,142200,1,'Dec 2018','2022-09-07 07:09:36','2022-09-07 07:09:36','31b12d14-91ce-41ea-b95a-8fd478dac1e5',NULL,NULL,NULL,NULL,'66241.68','148956.68',NULL,'210190.96',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'143949.28','-4989.65',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(138434,142201,1,'Jan 2019','2022-09-07 07:09:36','2022-09-07 07:09:36','06850be8-2670-4ddf-84bc-35138454a2a6',NULL,NULL,NULL,NULL,'4561.82','130051.64',NULL,'99963.35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'95401.53','-34638.1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(138435,142202,1,'Feb 2019','2022-09-07 07:09:37','2022-09-07 07:09:37','5ed06b3a-3abc-44d7-a777-a19e5bc5b8f8',NULL,NULL,NULL,NULL,'8401.32','112334.34',NULL,'136704.64',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'128303.32','17493.03',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(138436,142203,1,'Mar 2019','2022-09-07 07:09:38','2022-09-07 07:09:38','3c3de79f-a8be-410a-9d53-192c098278ec',NULL,NULL,NULL,NULL,'29877.13','166573.2',NULL,'185860.76',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'155983.63','-7779.11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(138437,142204,1,'Apr 2019','2022-09-07 07:09:39','2022-09-07 07:09:39','154833c1-cea1-4d65-9dbb-7a932347d9f8',NULL,NULL,NULL,NULL,'26063.01','120213.11',NULL,'218229.03',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'192166.02','74192.91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(138438,142205,1,'May 2019','2022-09-07 07:09:40','2022-09-07 07:09:40','4f67112f-3f52-4e41-8a60-c032058a7373',NULL,NULL,NULL,NULL,'30193.42','148983.16',NULL,'266386.09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'236192.67','88890.38',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(138439,142206,1,'Jun 2019','2022-09-07 07:09:41','2022-09-07 07:09:41','f6401d71-038f-4e70-8cbd-d2181021dc43',NULL,NULL,NULL,NULL,'73421.4','338495.32',NULL,'380330.27',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'306908.87','-27586.33',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(138440,142207,1,'Jul 2019','2022-09-07 07:09:41','2022-09-07 07:09:41','c4cf52dc-098e-40e8-9b3f-fa1064b0d200',NULL,NULL,NULL,NULL,'53253.62','139028.57',NULL,'215952.4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'162698.78','25530.21',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'231029.76',NULL,NULL,NULL,NULL,NULL,NULL),(138441,142208,1,'Aug 2019','2022-09-07 07:09:42','2022-09-07 07:09:42','366080ee-f293-43b6-981b-8019f72175b1',NULL,NULL,NULL,NULL,'131654.45','150318.01',NULL,'190861.91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'59207.46','-88104.61',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'311744.69',NULL,NULL,NULL,NULL,NULL,NULL),(138442,142209,1,'Sep 2019','2022-09-07 07:09:43','2022-09-07 07:09:43','fcf85598-d6a0-4e74-961c-11aaa771e047',NULL,NULL,NULL,NULL,'31218.34','116472.95',NULL,'230171.54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'198953.2','84185.79',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'291943.95',NULL,NULL,NULL,NULL,NULL,NULL),(138443,142210,1,'Oct 2019','2022-09-07 07:09:44','2022-09-07 07:09:44','aa459899-2e5a-47d3-b543-8d21380ef64a',NULL,NULL,NULL,NULL,'108744.79','147427.91',NULL,'124740.95',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'15996.16','-129179.1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'167814.45',NULL,NULL,NULL,NULL,NULL,NULL),(138444,142211,1,'Nov 2019','2022-09-07 07:09:45','2022-09-07 07:09:45','0b7850e0-4b5f-40df-8f60-699e92a2db6c',NULL,NULL,NULL,NULL,'83071.43','152745.93',NULL,'231142.92',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'148071.49','-2413.96',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'220528.67',NULL,NULL,NULL,NULL,NULL,NULL),(138445,142212,1,'Dec 2019','2022-09-07 07:09:45','2022-09-07 07:09:45','ba925a6a-b317-48da-940d-7d2ee6c473ac',NULL,NULL,NULL,NULL,'34132.95','121765.4',NULL,'241076.87',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'206943.92','87984.88',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'237009.93',NULL,NULL,NULL,NULL,NULL,NULL),(138446,142213,1,'Jan 2020','2022-09-07 07:09:46','2022-09-07 07:09:46','12d70110-17ef-438a-bf48-f1103d1c17f5',NULL,NULL,NULL,NULL,'56300.2','143709.05',NULL,'122894.38',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'66594.18','-74311.62',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'104155.13',NULL,NULL,NULL,NULL,NULL,NULL),(138447,142214,1,'Feb 2020','2022-09-07 07:09:47','2022-09-07 07:09:47','9e0d36be-969d-420e-82b8-b98c49fdfa16',NULL,NULL,NULL,NULL,'73879.47','121533.38',NULL,'130982.05',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'57102.58','-61622.81',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'134093.88',NULL,NULL,NULL,NULL,NULL,NULL),(138448,142215,1,'Mar 2020','2022-09-07 07:09:48','2022-09-07 07:09:48','a3e76026-ebb6-48e7-956b-7c2ab9eb597f',NULL,NULL,NULL,NULL,'42035.9','114496.21',NULL,'307411.06',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'265375.16','153683.37',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'190737.43',NULL,NULL,NULL,NULL,NULL,NULL),(138449,142216,1,'Apr 2020','2022-09-07 07:09:48','2022-09-07 07:09:48','84d30560-58c5-4f51-b781-6f33385d26d7',NULL,NULL,NULL,NULL,'27198.52','132741.81',NULL,'314841.39',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'287642.87','201472.06',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'234783.09',NULL,NULL,NULL,NULL,NULL,NULL),(138450,142217,1,'May 2020','2022-09-07 07:09:49','2022-09-07 07:09:49','fbb8012b-f8ab-4a41-84c7-3b99dd9c2a4a',NULL,NULL,NULL,NULL,'86514.99','130636.12',NULL,'215415.92',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'128900.93','6187.14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'350163.82',NULL,NULL,NULL,NULL,NULL,NULL),(138451,142218,1,'Jun 2020','2022-09-07 07:09:50','2022-09-07 07:09:50','a2c56b08-b21d-48be-b089-0535fa2a0164',NULL,NULL,NULL,NULL,'34119.85','280264.79',NULL,'108052.94',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'73933.09','-203411.35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'389058.54',NULL,NULL,NULL,NULL,NULL,NULL),(138452,142219,1,'Jul 2020','2022-09-07 07:09:51','2022-09-07 07:09:51','29cb7a94-5335-4a4d-9a78-38f9fd4e377a',NULL,NULL,NULL,NULL,'85216.7','155638.76',NULL,'237989.14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'152772.44','559.06',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'204227.8112',NULL,NULL,NULL,NULL,NULL,NULL),(138453,142220,1,'Aug 2020','2022-09-07 07:09:52','2022-09-07 07:09:52','b6cf0679-0b41-47b5-afd3-6f294a510206',NULL,NULL,NULL,NULL,'93034.44','116200.68',NULL,'203442.81',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'110408.37','21477.59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'177542.8673',NULL,NULL,NULL,NULL,NULL,NULL),(138454,142221,1,'Sep 2020','2022-09-07 07:09:53','2022-09-07 07:09:53','ec3d8a0e-fff9-432e-aa4e-d37c56f9248a',NULL,NULL,NULL,NULL,'54987.82','119322.07',NULL,'197912.27',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'142924.45','38477.37',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'178650.1445',NULL,NULL,NULL,NULL,NULL,NULL),(138455,142222,1,'Oct 2020','2022-09-07 07:09:54','2022-09-07 07:09:54','445b8e39-3e7c-4e1c-a977-80c87c9c7ce0',NULL,NULL,NULL,NULL,'82653','154948.66',NULL,'284488.19',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'201835.19','60539.21',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'152083.026',NULL,NULL,NULL,NULL,NULL,NULL),(138456,142223,1,'Nov 2020','2022-09-07 07:09:55','2022-09-07 07:09:55','46c06531-c607-4ca9-a89a-804b8a6a954f',NULL,NULL,NULL,NULL,'41268.96','138999.28',NULL,'122433.13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'81164.17','-54446.59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'202028.5307',NULL,NULL,NULL,NULL,NULL,NULL),(138457,142224,1,'Dec 2020','2022-09-07 07:09:56','2022-09-07 07:09:56','d03e8677-b5fe-4547-b86b-0c905e04a331',NULL,NULL,NULL,NULL,'43754.18','101087.89',NULL,'214996.8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'171242.62','72403.07',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'228061.0762',NULL,NULL,NULL,NULL,NULL,NULL),(138458,142225,1,'Jan 2021','2022-09-07 07:09:57','2022-09-07 07:09:57','dc6d7500-ed70-4c6a-9bb4-af81fa7ef1d1',NULL,NULL,NULL,NULL,'34680.41','127911.34',NULL,'133190.08',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'98509.67','-27157.92',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'126517.9049',NULL,NULL,NULL,NULL,NULL,NULL),(138459,142226,1,'Feb 2021','2022-09-07 07:09:58','2022-09-07 07:09:58','3e260459-d9b6-429b-aba8-329618381cd3',NULL,NULL,NULL,NULL,'17113.54','124028.06',NULL,'168926.4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'151812.86','30111.29',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'151737.957',NULL,NULL,NULL,NULL,NULL,NULL),(138460,142227,1,'Mar 2021','2022-09-07 07:09:59','2022-09-07 07:09:59','4c09fd6d-ff14-4676-bf9d-cd07bad7ae01',NULL,NULL,NULL,NULL,'34577.46','119082.89',NULL,'108568.58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'73991.12','-41720.76',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'202504.339',NULL,NULL,NULL,NULL,NULL,NULL),(138461,142228,1,'Apr 2021','2022-09-07 07:10:00','2022-09-07 07:10:00','8d60a1f2-f567-4bff-9613-8d60757e94cc',NULL,NULL,NULL,NULL,'71194.26','141213.01',NULL,'388991.75',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'317797.49','178836.73',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'253314.9793',NULL,NULL,NULL,NULL,NULL,NULL),(138462,142229,1,'May 2021','2022-09-07 07:10:01','2022-09-07 07:10:01','486b4a56-e771-4679-9784-f9076333ff74',NULL,NULL,NULL,NULL,'86314.7','158006.48',NULL,'126007.5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39692.8','-117182.23',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'304194.8279',NULL,NULL,NULL,NULL,NULL,NULL),(138463,142230,1,'Jun 2021','2022-09-07 07:10:02','2022-09-07 07:10:02','16e2cfc3-8503-4f7c-a9f1-aa8300d07298',NULL,NULL,NULL,NULL,'66581.49','269957.97',NULL,'333581.4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'104507.09','-161896.82',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'354136.5359',NULL,NULL,NULL,NULL,NULL,NULL),(138464,142231,1,'Jul 2021','2022-09-07 07:10:03','2022-09-07 07:10:03','48199207-52ce-4544-99ae-2f56b8028e5d',NULL,NULL,NULL,NULL,'92534.16','372266.07',NULL,'253376.78',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'160842.62','-211423.45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'253646.96',NULL,NULL,NULL,NULL,NULL,NULL),(138465,142232,1,'Aug 2021','2022-09-07 07:10:04','2022-09-07 07:10:04','6acf9719-b95a-40b9-a4cf-b14afe07becc',NULL,NULL,NULL,NULL,'87619.32','159658.54',NULL,'178768.63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'91149.31','-68507.87',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'302574.55',NULL,NULL,NULL,NULL,NULL,NULL),(138466,142233,1,'Sep 2021','2022-09-07 07:10:04','2022-09-07 07:10:04','acc9fc88-84bb-4dc2-b752-94d3423ddb12',NULL,NULL,NULL,NULL,'144440.96','203439.21',NULL,'334002.05',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'189561.09','-13876.63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'303327.81',NULL,NULL,NULL,NULL,NULL,NULL),(138467,142234,1,'Oct 2021','2022-09-07 07:10:05','2022-09-07 07:10:05','76ab9fbb-37ec-4362-9a0d-15d17f3ee743',NULL,NULL,NULL,NULL,'40066.09','167609.66',NULL,'211688.3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'171622.21','4013.75',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'202041.07',NULL,NULL,NULL,NULL,NULL,NULL),(138468,142235,1,'Nov 2021','2022-09-07 07:10:06','2022-09-07 07:10:06','2db29588-bae7-4854-b38f-ac23ffb12afc',NULL,NULL,NULL,NULL,'102016.09','180473.09',NULL,'318984.43',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'216968.34','36496.1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'202351.45',NULL,NULL,NULL,NULL,NULL,NULL),(138469,142236,1,'Dec 2021','2022-09-07 07:10:07','2022-09-07 07:10:07','d549c743-0e54-4f96-8c40-1fa69204d0c8',NULL,NULL,NULL,NULL,'124952.7','179637.78',NULL,'510903.89',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'385951.19','206314.26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'252789.03',NULL,NULL,NULL,NULL,NULL,NULL),(138470,142237,1,'Jan 2022','2022-09-07 07:10:07','2022-09-07 07:10:07','427ea0d2-28cc-4120-8a18-8cbc6e43df6e',NULL,NULL,NULL,NULL,'69288.44','167700.23',NULL,'89711.83',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'20423.39','-147275.88',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'151493.12',NULL,NULL,NULL,NULL,NULL,NULL),(138471,142238,1,'Feb 2022','2022-09-07 07:10:08','2022-09-07 07:10:08','190f1ebe-d30e-41c1-88ad-a5196ca5671a',NULL,NULL,NULL,NULL,'25256.65','127253.23',NULL,'111139.49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'85882.84','-41369.43',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'151863.49',NULL,NULL,NULL,NULL,NULL,NULL),(138472,142239,1,'Mar 2022','2022-09-07 07:10:09','2022-09-07 07:10:09','e28610f0-1c44-4bf6-a30c-4750153ecdee',NULL,NULL,NULL,NULL,'121499.88','151184.05',NULL,'360528.63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'239028.75','87845.57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'252449.14',NULL,NULL,NULL,NULL,NULL,NULL),(138473,142240,1,'Apr 2022','2022-09-07 07:10:10','2022-09-07 07:10:10','4805d0ae-227d-4120-a19e-e74f05cd6254',NULL,NULL,NULL,NULL,'155220.38','171232.41',NULL,'316516.04',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'161295.66','-9935.79',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'252645.85',NULL,NULL,NULL,NULL,NULL,NULL),(138474,142241,1,'May 2022','2022-09-07 07:10:11','2022-09-07 07:10:11','2ac86f3b-75fd-4fff-aff5-04d1b9fbc6af',NULL,NULL,NULL,NULL,'80992.64','157502.37',NULL,'256968.85',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'175976.21','18474.77',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'354281.48',NULL,NULL,NULL,NULL,NULL,NULL),(138475,142242,1,'Jun 2022','2022-09-07 07:10:12','2022-09-07 07:10:12','dab93140-7bef-4ac7-b668-e4010206ae9d',NULL,NULL,NULL,NULL,'1828.24','37039.25',NULL,'64384.99',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'62556.75','25518.46',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'354286.06',NULL,NULL,NULL,NULL,NULL,NULL),(138476,142243,1,'Jul 2022','2022-09-07 07:10:13','2022-09-14 23:02:07','813bdf1c-0f67-49af-992c-b74ef457081a',NULL,NULL,NULL,NULL,'109959.71','140',NULL,'207067.45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'97107.74','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'397171',NULL,NULL,NULL,NULL,NULL,NULL),(138477,142244,1,'Jul 2022','2022-09-07 07:10:13','2022-09-07 07:10:13','2980e08f-eb88-4435-ae8c-b24a694b0a3c',NULL,NULL,NULL,NULL,'109959.71','206026.29',NULL,'207067.45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'97107.74','-108905.27',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'397171',NULL,NULL,NULL,NULL,NULL,NULL),(138478,142245,1,'Aug 2022','2022-09-07 07:10:15','2022-09-14 23:02:08','a288f418-171e-4de0-89a5-58a1ca8bb414',NULL,NULL,NULL,NULL,'97424.95','140',NULL,'389540.24',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'292115.29','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'378091',NULL,NULL,NULL,NULL,NULL,NULL),(138479,142246,1,'Aug 2022','2022-09-07 07:10:15','2022-09-07 07:10:15','c2b36a29-714e-4a66-97df-a116c9bcc212',NULL,NULL,NULL,NULL,'97424.95','175589.03',NULL,'389540.24',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'292115.29','116552.9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'378091',NULL,NULL,NULL,NULL,NULL,NULL),(138480,142247,1,'Sep 2022','2022-09-07 07:10:17','2022-09-14 23:16:36','c29906df-eca0-43c6-aaba-d593f59bb672',NULL,NULL,NULL,NULL,'20896.62','85602.76',NULL,'118615.18',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'97718.56','12,163.18',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'415335',NULL,NULL,NULL,NULL,NULL,NULL),(138481,142248,1,'Sep 2022','2022-09-07 07:10:17','2022-09-07 07:10:17','6c92c501-db6a-4b6d-9894-133c1609ea6b',NULL,NULL,NULL,NULL,'13804.72','47015.29',NULL,'41414.62',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'27609.9','-19358.01',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'415335',NULL,NULL,NULL,NULL,NULL,NULL),(138483,142250,1,NULL,'2022-09-08 06:39:03','2022-09-08 06:44:15','abf4be49-3fad-4ee6-af21-33600f545e88',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'green',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138484,142251,1,'Surf Life Saving Queensland','2022-09-12 03:45:08','2023-03-30 23:09:59','39f51e5a-5ede-429b-bdb8-be8fe10ac26c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let’s be SharkSmart!',NULL,NULL,'There’s no need to be scared of sharks—we just need to be smart.\nAnd learning is what kids do best, so we created an interactive, educational game for Surf Life Saving Queensland to teach primary-school-age kids how they should behave around sharks.\nWe had a whale of a time on this project, so let’s jump right in!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SUpdyGgoHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Surf Life Saving Queensland and the Department of Agriculture and Fisheries are promoting ‘SharkSmart’ messages to primary-school-aged children in a 12-month educational program. They asked us to develop an interactive game that educates kids about sharks and the simple things they can do at the beach to stay safe from shark-related incidents.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PLy32UQvPs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Kids are typically more interested in sharks than afraid of them, so we wanted to nurture that by making the game educational and fun, rather than fear based. Armed with our behaviour change expertise, we empowered them with knowledge about how sharks behave—such as their feeding times, where they live and how they hunt—so the kids can make smart choices. We consulted with primary school teachers to develop the game’s tone and language, ensuring it was as age-appropriate and engaging as possible.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oQ8wJZ93RN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There are so many ways to approach SharkSmart behaviours, so we created not one game, but two mini games with three modes. \\n\\nThe first game—Beach Explorer—is an open-world exploration game, set on a beach. There are items scattered across the beach—like flags, water debris and rips—that prompt questions related to SharkSmart behaviours. If the player answers correctly, they’re rewarded with a beach badge. This game is split into two modes: explorer mode and race mode.\\n\\nThe second game—Which Shark Are You?—asks the players questions about their preferences and human experiences that relate to the behaviours of tiger, bull, white and hammerhead sharks. Based on their responses, each player is assigned one of the four shark types and provided information about that shark. \\nThe whole project is elevated by NWO’s trademark custom illustration and animation—which really brings the beach to life!\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-sfiAs0GFwT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We really blew this brief out of the water: for a limited budget, we built two games from scratch, complete with a catchy custom theme song. \\nProjects like these—fun and engaging but with real purpose—are why we get out of bed every morning. The whole process from conception to delivery was really collaborative with the clients, and that definitely shows in the final product.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Surf Life Saving Queensland | Let\'s be SharkSmart!','There’s no need to be scared of sharks—we just need to be smart. And learning is what kids do best, so we created an interactive, educational game for Surf Life Saving Queensland to teach primary-school-age kids how they should behave around sharks. We had a whale of a time on this project, so let’s jump right in!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138485,142252,1,'22 09 RTA Website global img','2022-09-12 03:51:58','2022-09-12 03:51:58','d8ee830d-fb78-46dd-97ee-50e7783b39d1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_09-RTA-Website-global-img.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_09-RTA-Website-global-img.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_09-RTA-Website-global-img.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_09-RTA-Website-global-img.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_09-RTA-Website-global-img.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_09-RTA-Website-global-img.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_09-RTA-Website-global-img.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_09-RTA-Website-global-img.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_09-RTA-Website-global-img.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_09-RTA-Website-global-img.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_09-RTA-Website-global-img.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_09-RTA-Website-global-img.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_09-RTA-Website-global-img.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_09-RTA-Website-global-img.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_09-RTA-Website-global-img.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_09-RTA-Website-global-img.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":768,\"2560\":1536,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":384},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":3125,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAgQG/8QAIBAAAgICAQUBAAAAAAAAAAAAAQMCEQAEYQUSMzRxcv/EABYBAQEBAAAAAAAAAAAAAAAAAAIBA//EABwRAAIDAQADAAAAAAAAAAAAAAECABExAxIiQf/aAAwDAQACEQMRAD8A0bts672HYbAQIuAo2PpxF1U19lTkzr5DI0yY4LYraZ2wmZVQqXB4woLF3F19TRFQ9Y9R35OOZjDKVeMZRkLbP//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#d7deeb\",\"#2b446c\",\"#e16458\",\"#e08558\",\"#8691aa\"],\"lightness\":61,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138486,142253,1,'Residential Tenancies Authority','2022-09-12 03:52:09','2022-09-12 03:52:09','736ad7a5-5a2b-46a1-aa5f-acad3fe2378d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Illustrating tenancy law changes',NULL,NULL,'We all know tenancy can be complicated, from any side of the relationship. So the Residential Tenancy Authority (RTA) has introduced new laws to give tenants, landlords and property managers more certainty and transparency around their tenancy arrangements. We helped the RTA produce four animated videos to serve as friendly reminders about the law changes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SUpdyGgoHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The RTA needed to inform the public about rental reform changes coming into effect on 1 October 2022. With such a broad audience—renters, landlords and property managers—the RTA needed an explanatory tool that relayed the information in an easily digestible, engaging and inclusive way.\\nA collection of animated explainer videos was determined to be the best communication vehicle for reaching the audiences and providing the information.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PLy32UQvPs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The videos needed a friendly, informative tone that connected with a vast range of people. Aside from separating them by information topics, we also broke the videos down into sections that addressed each of the three key audiences individually—renters, then landlords, then property managers. The audiences were represented by a diverse and inclusive suite of illustrated characters.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oQ8wJZ93RN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Illustration was the real standout for this project. Our illustrative style helped us depict the emotion and shared experience of renting, from all sides of the tenancy relationship. The animation represented various age groups, ethnicities and occupations.\\nThe law changes are explained by friendly, engaging voice-overs that guide the videos.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-sfiAs0GFwT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It was a pleasure to work with the team at RTA to help inform Queenslanders about the upcoming changes to renting laws. They’ve worked hard to make sure renting is fair for all and it was a privilege to be part of bringing this project to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138488,142255,1,'Residential Tenancies Authority','2022-09-12 03:53:08','2022-09-12 03:53:08','ef7d0a06-f782-461f-ba2e-d3f157eb7547',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Illustrating tenancy law changes',NULL,NULL,'We all know tenancy can be complicated, from any side of the relationship. So the Residential Tenancy Authority (RTA) has introduced new laws to give tenants, landlords and property managers more certainty and transparency around their tenancy arrangements. We helped the RTA produce four animated videos to serve as friendly reminders about the law changes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SUpdyGgoHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The RTA needed to inform the public about rental reform changes coming into effect on 1 October 2022. With such a broad audience—renters, landlords and property managers—the RTA needed an explanatory tool that relayed the information in an easily digestible, engaging and inclusive way.\\nA collection of animated explainer videos was determined to be the best communication vehicle for reaching the audiences and providing the information.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PLy32UQvPs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The videos needed a friendly, informative tone that connected with a vast range of people. Aside from separating them by information topics, we also broke the videos down into sections that addressed each of the three key audiences individually—renters, then landlords, then property managers. The audiences were represented by a diverse and inclusive suite of illustrated characters.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oQ8wJZ93RN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Illustration was the real standout for this project. Our illustrative style helped us depict the emotion and shared experience of renting, from all sides of the tenancy relationship. The animation represented various age groups, ethnicities and occupations.\\nThe law changes are explained by friendly, engaging voice-overs that guide the videos.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-sfiAs0GFwT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It was a pleasure to work with the team at RTA to help inform Queenslanders about the upcoming changes to renting laws. They’ve worked hard to make sure renting is fair for all and it was a privilege to be part of bringing this project to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138490,142257,1,'Residential Tenancies Authority','2022-09-12 03:53:27','2022-09-12 03:53:27','59836483-d370-4b5e-bf92-9ebe8a2f7e39',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Illustrating tenancy law changes',NULL,NULL,'We all know tenancy can be complicated, from any side of the relationship. So the Residential Tenancy Authority (RTA) has introduced new laws to give tenants, landlords and property managers more certainty and transparency around their tenancy arrangements. We helped the RTA produce four animated videos to serve as friendly reminders about the law changes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SUpdyGgoHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The RTA needed to inform the public about rental reform changes coming into effect on 1 October 2022. With such a broad audience—renters, landlords and property managers—the RTA needed an explanatory tool that relayed the information in an easily digestible, engaging and inclusive way.\\nA collection of animated explainer videos was determined to be the best communication vehicle for reaching the audiences and providing the information.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PLy32UQvPs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The videos needed a friendly, informative tone that connected with a vast range of people. Aside from separating them by information topics, we also broke the videos down into sections that addressed each of the three key audiences individually—renters, then landlords, then property managers. The audiences were represented by a diverse and inclusive suite of illustrated characters.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oQ8wJZ93RN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Illustration was the real standout for this project. Our illustrative style helped us depict the emotion and shared experience of renting, from all sides of the tenancy relationship. The animation represented various age groups, ethnicities and occupations.\\nThe law changes are explained by friendly, engaging voice-overs that guide the videos.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-sfiAs0GFwT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It was a pleasure to work with the team at RTA to help inform Queenslanders about the upcoming changes to renting laws. They’ve worked hard to make sure renting is fair for all and it was a privilege to be part of bringing this project to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138491,142258,1,'Queensland Hydro','2022-09-12 05:45:12','2023-03-30 23:09:50','c578fdbd-0aea-4a93-80f1-7c9fc25049ae',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Powering Queensland’s future',NULL,NULL,'Queensland has some ambitious goals for a clean energy future: 50 per cent renewable energy by 2030 and zero net emissions by 2050. Pumped hydro is the key to achieving this, and the state government is facilitating pumped hydro through a new subsidiary brand. We helped build the brand for Queensland Hydro on a strategic, evidence-based foundation to set it up for a successful journey of powering Queensland’s future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MJwz0wrwkL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142807\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RCifzof72P\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The Queensland Government needed to establish a subsidiary entity to carry the planning and transmission connection work for potential pumped hydro projects across Queensland. Our creation of the brand for Queensland Hydro involved extensive discovery prior to crafting a brand identity, designing marketing collateral, and copywriting, designing and developing a website.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fdid0P67Ag\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142816\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As we often do, we began this project with a comprehensive discovery phase. This involved a review of Queensland Hydro’s contemporaries and competitive landscape, consultation with a First Nations advisor on theming and language, and stakeholder workshops to clarify the brand personality, purpose and objectives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5o9yXWhZxU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our deliverables included a brand name, logo, visual identity, collateral, key messaging and content for the website. We kept the design fresh and engaging while accommodating the needs of the various stakeholders involved.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvkuSRS5qb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142702\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fjwEEvmBHp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Queensland Hydro will be a vital component in reaching Australia’s aspirational energy goals over the next few decades. Pumped hydro is at the centre of cleaning up Queensland’s energy, and we were delighted to play a role in bringing Queensland Hydro to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2XRuH2soQj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142813\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Queensland Hydro | Powering Queensland\'s future','Queensland has some ambitious goals for a clean energy future: 50 per cent renewable energy by 2030 and zero net emissions by 2050. Pumped hydro is the key to achieving this, and the state government is facilitating pumped hydro through a new subsidiary brand. We helped build the brand for Queensland Hydro on a strategic, evidence-based foundation to set it up for a successful journey of powering Queensland’s future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138492,142259,1,'Queensland Hydro','2022-09-12 05:48:54','2022-09-12 05:48:54','c4732a84-5a5a-4496-85f4-3a38af1f326e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Powering Queensland’s future',NULL,NULL,'Queensland has some ambitious goals for a clean energy future: 50 per cent renewable energy by 2030 and zero-net emissions by 2050. Pumped hydro energy is the key to achieving this, and Powerlink is facilitating pumped hydro through a new subsidiary brand. We helped Powerlink build the brand for Queensland Hydro on a strategic, evidence-based foundation to set it up for a successful journey of powering Queensland’s future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RCifzof72P\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using funding provided by the Queensland Government, Powerlink needed to establish a subsidiary entity to carry the planning and transmission connection work for potential pumped hydro projects across Queensland. Our creation of the brand for Queensland Hydro involved extensive discovery prior to crafting a brand identity, designing marketing collateral, and copywriting, designing and developing a website.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yIixgz6Yip\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As we often do, we began this project with a comprehensive discovery phase. This involved a review of Queensland Hydro’s contemporaries and competitive landscape, consultation with a First Nations advisor on theming and language, and stakeholder workshops to clarify the brand personality, purpose and objectives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5o9yXWhZxU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our deliverables included a brand name, logo, visual identity, collateral, key messaging and content for the website. We kept the design fresh and engaging, while accommodating the needs of the various stakeholders involved.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fjwEEvmBHp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Queensland Hydro will be a vital component in reaching Australia’s aspirational energy goals over the next few decades. Pumped hydro is at the centre of cleaning up Queensland’s energy, and we were delighted to play a role in bringing Queensland Hydro to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138494,142261,1,'Queensland Hydro','2022-09-12 06:03:01','2022-09-12 06:03:01','b11c91da-4b4c-495f-a7b6-a1ac9d58de49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Powering Queensland’s future',NULL,NULL,'Queensland has some ambitious goals for a clean energy future: 50 per cent renewable energy by 2030 and zero-net emissions by 2050. Pumped hydro energy is the key to achieving this, and Powerlink is facilitating pumped hydro through a new subsidiary brand. We helped Powerlink build the brand for Queensland Hydro on a strategic, evidence-based foundation to set it up for a successful journey of powering Queensland’s future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RCifzof72P\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using funding provided by the Queensland Government, Powerlink needed to establish a subsidiary entity to carry the planning and transmission connection work for potential pumped hydro projects across Queensland. Our creation of the brand for Queensland Hydro involved extensive discovery prior to crafting a brand identity, designing marketing collateral, and copywriting, designing and developing a website.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fdid0P67Ag\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As we often do, we began this project with a comprehensive discovery phase. This involved a review of Queensland Hydro’s contemporaries and competitive landscape, consultation with a First Nations advisor on theming and language, and stakeholder workshops to clarify the brand personality, purpose and objectives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5o9yXWhZxU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our deliverables included a brand name, logo, visual identity, collateral, key messaging and content for the website. We kept the design fresh and engaging, while accommodating the needs of the various stakeholders involved.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fjwEEvmBHp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Queensland Hydro will be a vital component in reaching Australia’s aspirational energy goals over the next few decades. Pumped hydro is at the centre of cleaning up Queensland’s energy, and we were delighted to play a role in bringing Queensland Hydro to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138496,142263,1,'Queensland Hydro','2022-09-12 06:03:13','2022-09-12 06:03:13','ea41f6b8-15f7-4bcf-ae14-2c1ac4459b45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Powering Queensland’s future',NULL,NULL,'Queensland has some ambitious goals for a clean energy future: 50 per cent renewable energy by 2030 and zero-net emissions by 2050. Pumped hydro energy is the key to achieving this, and Powerlink is facilitating pumped hydro through a new subsidiary brand. We helped Powerlink build the brand for Queensland Hydro on a strategic, evidence-based foundation to set it up for a successful journey of powering Queensland’s future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RCifzof72P\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using funding provided by the Queensland Government, Powerlink needed to establish a subsidiary entity to carry the planning and transmission connection work for potential pumped hydro projects across Queensland. Our creation of the brand for Queensland Hydro involved extensive discovery prior to crafting a brand identity, designing marketing collateral, and copywriting, designing and developing a website.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fdid0P67Ag\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As we often do, we began this project with a comprehensive discovery phase. This involved a review of Queensland Hydro’s contemporaries and competitive landscape, consultation with a First Nations advisor on theming and language, and stakeholder workshops to clarify the brand personality, purpose and objectives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5o9yXWhZxU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our deliverables included a brand name, logo, visual identity, collateral, key messaging and content for the website. We kept the design fresh and engaging, while accommodating the needs of the various stakeholders involved.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fjwEEvmBHp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Queensland Hydro will be a vital component in reaching Australia’s aspirational energy goals over the next few decades. Pumped hydro is at the centre of cleaning up Queensland’s energy, and we were delighted to play a role in bringing Queensland Hydro to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138498,142265,1,'Residential Tenancies Authority','2022-09-13 04:22:17','2022-09-13 04:22:17','1dd3bc00-dd26-4dcf-945e-80487facf1f3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Illustrating tenancy law changes',NULL,NULL,'We all know tenancy can be complicated, from any side of the relationship. So the Residential Tenancy Authority (RTA) has introduced new laws to give tenants, landlords and property managers more certainty and transparency around their tenancy arrangements. We helped the RTA produce four animated videos to serve as friendly reminders about the law changes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bc8O0czLTg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<iframe src=\\\"https://player.vimeo.com/video/749028657?h=758f0e7169\\\" width=\\\"640\\\" height=\\\"564\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen></iframe>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SUpdyGgoHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The RTA needed to inform the public about rental reform changes coming into effect on 1 October 2022. With such a broad audience—renters, landlords and property managers—the RTA needed an explanatory tool that relayed the information in an easily digestible, engaging and inclusive way.\\nA collection of animated explainer videos was determined to be the best communication vehicle for reaching the audiences and providing the information.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PLy32UQvPs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The videos needed a friendly, informative tone that connected with a vast range of people. Aside from separating them by information topics, we also broke the videos down into sections that addressed each of the three key audiences individually—renters, then landlords, then property managers. The audiences were represented by a diverse and inclusive suite of illustrated characters.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oQ8wJZ93RN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Illustration was the real standout for this project. Our illustrative style helped us depict the emotion and shared experience of renting, from all sides of the tenancy relationship. The animation represented various age groups, ethnicities and occupations.\\nThe law changes are explained by friendly, engaging voice-overs that guide the videos.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-sfiAs0GFwT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It was a pleasure to work with the team at RTA to help inform Queenslanders about the upcoming changes to renting laws. They’ve worked hard to make sure renting is fair for all and it was a privilege to be part of bringing this project to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138500,142267,1,'Residential Tenancies Authority','2022-09-13 04:22:43','2022-09-13 04:22:43','2a00c5ae-6e30-4aad-ac15-25a8652cbad7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Illustrating tenancy law changes',NULL,NULL,'We all know tenancy can be complicated, from any side of the relationship. So the Residential Tenancy Authority (RTA) has introduced new laws to give tenants, landlords and property managers more certainty and transparency around their tenancy arrangements. We helped the RTA produce four animated videos to serve as friendly reminders about the law changes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bc8O0czLTg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<iframe src=\\\"https://player.vimeo.com/video/749028657?h=758f0e7169&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" width=\\\"1920\\\" height=\\\"1080\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen title=\\\"Residential Tenancies Authority - Ending a tenancy\\\"></iframe>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SUpdyGgoHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The RTA needed to inform the public about rental reform changes coming into effect on 1 October 2022. With such a broad audience—renters, landlords and property managers—the RTA needed an explanatory tool that relayed the information in an easily digestible, engaging and inclusive way.\\nA collection of animated explainer videos was determined to be the best communication vehicle for reaching the audiences and providing the information.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PLy32UQvPs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The videos needed a friendly, informative tone that connected with a vast range of people. Aside from separating them by information topics, we also broke the videos down into sections that addressed each of the three key audiences individually—renters, then landlords, then property managers. The audiences were represented by a diverse and inclusive suite of illustrated characters.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oQ8wJZ93RN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Illustration was the real standout for this project. Our illustrative style helped us depict the emotion and shared experience of renting, from all sides of the tenancy relationship. The animation represented various age groups, ethnicities and occupations.\\nThe law changes are explained by friendly, engaging voice-overs that guide the videos.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-sfiAs0GFwT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It was a pleasure to work with the team at RTA to help inform Queenslanders about the upcoming changes to renting laws. They’ve worked hard to make sure renting is fair for all and it was a privilege to be part of bringing this project to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138502,142269,1,'Residential Tenancies Authority','2022-09-13 04:23:05','2022-09-13 04:23:05','e947af61-87e8-4d6d-824f-d01daf2b18c1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Illustrating tenancy law changes',NULL,NULL,'We all know tenancy can be complicated, from any side of the relationship. So the Residential Tenancy Authority (RTA) has introduced new laws to give tenants, landlords and property managers more certainty and transparency around their tenancy arrangements. We helped the RTA produce four animated videos to serve as friendly reminders about the law changes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bc8O0czLTg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028657?h=758f0e7169&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Ending a tenancy\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SUpdyGgoHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The RTA needed to inform the public about rental reform changes coming into effect on 1 October 2022. With such a broad audience—renters, landlords and property managers—the RTA needed an explanatory tool that relayed the information in an easily digestible, engaging and inclusive way.\\nA collection of animated explainer videos was determined to be the best communication vehicle for reaching the audiences and providing the information.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PLy32UQvPs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The videos needed a friendly, informative tone that connected with a vast range of people. Aside from separating them by information topics, we also broke the videos down into sections that addressed each of the three key audiences individually—renters, then landlords, then property managers. The audiences were represented by a diverse and inclusive suite of illustrated characters.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oQ8wJZ93RN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Illustration was the real standout for this project. Our illustrative style helped us depict the emotion and shared experience of renting, from all sides of the tenancy relationship. The animation represented various age groups, ethnicities and occupations.\\nThe law changes are explained by friendly, engaging voice-overs that guide the videos.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-sfiAs0GFwT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It was a pleasure to work with the team at RTA to help inform Queenslanders about the upcoming changes to renting laws. They’ve worked hard to make sure renting is fair for all and it was a privilege to be part of bringing this project to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138504,142271,1,'Residential Tenancies Authority','2022-09-13 04:27:46','2022-09-13 04:27:46','c12cec2b-30d9-441e-83e0-0e06a1df0034',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Illustrating tenancy law changes',NULL,NULL,'We all know tenancy can be complicated, from any side of the relationship. So the Residential Tenancy Authority (RTA) has introduced new laws to give tenants, landlords and property managers more certainty and transparency around their tenancy arrangements. We helped the RTA produce four animated videos to serve as friendly reminders about the law changes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bc8O0czLTg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028657?h=758f0e7169&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Ending a tenancy\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SUpdyGgoHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The RTA needed to inform the public about rental reform changes coming into effect on 1 October 2022. With such a broad audience—renters, landlords and property managers—the RTA needed an explanatory tool that relayed the information in an easily digestible, engaging and inclusive way.\\nA collection of animated explainer videos was determined to be the best communication vehicle for reaching the audiences and providing the information.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-chZ81DIc8w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028691?h=ca954eece2&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Renting with pets\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PLy32UQvPs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The videos needed a friendly, informative tone that connected with a vast range of people. Aside from separating them by information topics, we also broke the videos down into sections that addressed each of the three key audiences individually—renters, then landlords, then property managers. The audiences were represented by a diverse and inclusive suite of illustrated characters.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oGsU7M7NF2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028774?h=8eb9622a43&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Summary\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oQ8wJZ93RN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Illustration was the real standout for this project. Our illustrative style helped us depict the emotion and shared experience of renting, from all sides of the tenancy relationship. The animation represented various age groups, ethnicities and occupations.\\nThe law changes are explained by friendly, engaging voice-overs that guide the videos.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YFRHfSDQGW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":[]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-sfiAs0GFwT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It was a pleasure to work with the team at RTA to help inform Queenslanders about the upcoming changes to renting laws. They’ve worked hard to make sure renting is fair for all and it was a privilege to be part of bringing this project to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138506,142273,1,'Residential Tenancies Authority','2022-09-13 04:29:41','2022-09-13 04:29:41','bbc02d2c-27e2-4daa-b50c-11ca1dabfba3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Illustrating tenancy law changes',NULL,NULL,'We all know tenancy can be complicated, from any side of the relationship. So the Residential Tenancy Authority (RTA) has introduced new laws to give tenants, landlords and property managers more certainty and transparency around their tenancy arrangements. We helped the RTA produce four animated videos to serve as friendly reminders about the law changes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bc8O0czLTg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028657?h=758f0e7169&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Ending a tenancy\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SUpdyGgoHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The RTA needed to inform the public about rental reform changes coming into effect on 1 October 2022. With such a broad audience—renters, landlords and property managers—the RTA needed an explanatory tool that relayed the information in an easily digestible, engaging and inclusive way.\\nA collection of animated explainer videos was determined to be the best communication vehicle for reaching the audiences and providing the information.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-chZ81DIc8w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028691?h=ca954eece2&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Renting with pets\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PLy32UQvPs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The videos needed a friendly, informative tone that connected with a vast range of people. Aside from separating them by information topics, we also broke the videos down into sections that addressed each of the three key audiences individually—renters, then landlords, then property managers. The audiences were represented by a diverse and inclusive suite of illustrated characters.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oGsU7M7NF2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028774?h=8eb9622a43&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Summary\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oQ8wJZ93RN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Illustration was the real standout for this project. Our illustrative style helped us depict the emotion and shared experience of renting, from all sides of the tenancy relationship. The animation represented various age groups, ethnicities and occupations.\\nThe law changes are explained by friendly, engaging voice-overs that guide the videos.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YFRHfSDQGW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<iframe src=\\\"https://player.vimeo.com/video/749028736?h=a48681755c\\\" width=\\\"640\\\" height=\\\"564\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen></iframe>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-sfiAs0GFwT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It was a pleasure to work with the team at RTA to help inform Queenslanders about the upcoming changes to renting laws. They’ve worked hard to make sure renting is fair for all and it was a privilege to be part of bringing this project to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138508,142275,1,'Residential Tenancies Authority','2022-09-13 04:40:08','2022-09-13 04:40:08','bfd27994-41f4-440f-a778-a6f31832484e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Illustrating tenancy law changes',NULL,NULL,'We all know tenancy can be complicated, from any side of the relationship. So the Residential Tenancy Authority (RTA) has introduced new laws to give tenants, landlords and property managers more certainty and transparency around their tenancy arrangements. We helped the RTA produce four animated videos to serve as friendly reminders about the law changes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bc8O0czLTg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028657?h=758f0e7169&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Ending a tenancy\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SUpdyGgoHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The RTA needed to inform the public about rental reform changes coming into effect on 1 October 2022. With such a broad audience—renters, landlords and property managers—the RTA needed an explanatory tool that relayed the information in an easily digestible, engaging and inclusive way.\\nA collection of animated explainer videos was determined to be the best communication vehicle for reaching the audiences and providing the information.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-chZ81DIc8w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028691?h=ca954eece2&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Renting with pets\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PLy32UQvPs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The videos needed a friendly, informative tone that connected with a vast range of people. Aside from separating them by information topics, we also broke the videos down into sections that addressed each of the three key audiences individually—renters, then landlords, then property managers. The audiences were represented by a diverse and inclusive suite of illustrated characters.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oGsU7M7NF2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028774?h=8eb9622a43&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Summary\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oQ8wJZ93RN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Illustration was the real standout for this project. Our illustrative style helped us depict the emotion and shared experience of renting, from all sides of the tenancy relationship. The animation represented various age groups, ethnicities and occupations.\\nThe law changes are explained by friendly, engaging voice-overs that guide the videos.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YFRHfSDQGW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028736?h=a48681755c&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Repair order\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-sfiAs0GFwT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It was a pleasure to work with the team at RTA to help inform Queenslanders about the upcoming changes to renting laws. They’ve worked hard to make sure renting is fair for all and it was a privilege to be part of bringing this project to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138511,142278,1,'Your Care Navigator','2022-09-13 23:01:24','2022-09-13 23:01:24','86a34c93-a9e2-446d-a33e-31ca3247491f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator',NULL,NULL,'Ageing can be overwhelming, especially with a dementia diagnosis. There are so many big life decisions to make, services to navigate and logistics to plan. Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support. Additionally, it’s a resource that helps healthcare professionals coordinate care for their patients and provide them with quality resources.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TBzFA0UCIO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142011\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cYowRU3xxP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Brisbane North PHN asked us to write, design and develop a navigator website that doubles as a one-stop-shop of resources, information and services that promote healthy ageing in the Brisbane North and Moreton Bay region. The project’s goal was to enable people to more proactively manage their own healthcare, while also equipping healthcare professional and carers with resources to support their care services.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VACsyz6zoc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142009\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Working closely with the client team and the Council on the Ageing, our strategists conducted a stakeholder consultation process with community members and health professionals. The stakeholders generously shared their expertise and lived experience to help this project reach the community’s specific needs, with a particular focus on: dementia, physical health, mental health, social connection, nutrition and digital skills.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pI57baAPCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Each aspect of the content writing, design and development of the website was informed by insights from the stakeholders, to ensure the project would fulfil community needs. We made sure the site was easy to use by integrating a very simple user interface into the web design and development. User experience and acceptance testing was a key element of ensuring the site would be practical and enjoyable for its audience.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RgOzDzfM2D\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142014\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Nothing like this existed before now. This project fulfils community needs around healthy ageing in a way that really excited the stakeholders who were involved in the project. This kind of work aligns perfectly with our purpose at NWO: to make a meaningful difference to people’s lives.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5n0D9pdVNS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":[],\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Check out the website\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"https://yourcarenavigator.org.au/\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}}},\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator','Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138513,142280,1,'Your Care Navigator','2022-09-13 23:03:11','2022-09-13 23:03:11','429c4b59-0a8b-4951-b1d8-e956c18489dd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator',NULL,NULL,'Ageing can be overwhelming, especially with a dementia diagnosis. There are so many big life decisions to make, services to navigate and logistics to plan. Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support. Additionally, it’s a resource that helps healthcare professionals coordinate care for their patients and provide them with quality resources.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TBzFA0UCIO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142011\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cYowRU3xxP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Brisbane North PHN asked us to write, design and develop a navigator website that doubles as a one-stop-shop of resources, information and services that promote healthy ageing in the Brisbane North and Moreton Bay region. The project’s goal was to enable people to more proactively manage their own healthcare, while also equipping healthcare professional and carers with resources to support their care services.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VACsyz6zoc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142009\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Working closely with the client team and the Council on the Ageing, our strategists conducted a stakeholder consultation process with community members and health professionals. The stakeholders generously shared their expertise and lived experience to help this project reach the community’s specific needs, with a particular focus on: dementia, physical health, mental health, social connection, nutrition and digital skills.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pI57baAPCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Each aspect of the content writing, design and development of the website was informed by insights from the stakeholders, to ensure the project would fulfil community needs. We made sure the site was easy to use by integrating a very simple user interface into the web design and development. User experience and acceptance testing was a key element of ensuring the site would be practical and enjoyable for its audience.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Check out the website\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"https://yourcarenavigator.org.au/\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}}},\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RgOzDzfM2D\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142014\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Nothing like this existed before now. This project fulfils community needs around healthy ageing in a way that really excited the stakeholders who were involved in the project. This kind of work aligns perfectly with our purpose at NWO: to make a meaningful difference to people’s lives.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator','Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138514,142281,1,NULL,'2022-09-14 06:35:53','2023-03-09 04:39:38','b79fc14b-7768-4027-9069-a1c158187e48',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'green',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138515,142282,1,'Jul 2015','2022-09-14 23:00:45','2022-09-14 23:00:45','405b4894-deae-4309-bb8c-7ab7fd9a458d',NULL,NULL,NULL,NULL,'30641.89','28477.08',NULL,'150200',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'119558.11','93021.03',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138516,142283,1,'Aug 2015','2022-09-14 23:00:46','2022-09-14 23:00:46','034877d4-34d5-4a11-834e-b7bb729d452a',NULL,NULL,NULL,NULL,'35886.24','29423.7',NULL,'78000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'42113.76','14630.06',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138517,142284,1,'Sep 2015','2022-09-14 23:00:47','2022-09-14 23:00:47','9440e357-56f5-49e7-b53a-1b1c4062a422',NULL,NULL,NULL,NULL,'36038.35','34637.18',NULL,'82000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'45961.65','14234.47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138518,142285,1,'Oct 2015','2022-09-14 23:00:48','2022-09-14 23:00:48','39675999-75c0-495b-abc1-09cfc7c09cfb',NULL,NULL,NULL,NULL,'35224.67','30155.49',NULL,'152000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'116775.33','88559.84',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138519,142286,1,'Nov 2015','2022-09-14 23:00:49','2022-09-14 23:00:49','e55f0b23-cffc-4c17-801e-fea4c53e414d',NULL,NULL,NULL,NULL,'11985.41','31871.12',NULL,'68000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'56014.59','26483.47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138520,142287,1,'Dec 2015','2022-09-14 23:00:50','2022-09-14 23:00:50','523f1809-c022-4163-b8b8-f81c3fb37cce',NULL,NULL,NULL,NULL,'24924.5','35303.18',NULL,'130000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'105075.5','71312.32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138521,142288,1,'Jan 2016','2022-09-14 23:00:51','2022-09-14 23:00:51','3d3b08a1-a687-4a0f-8465-a30bbe860c79',NULL,NULL,NULL,NULL,'19979.44','40921.01',NULL,'114000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'94020.56','55039.55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138522,142289,1,'Feb 2016','2022-09-14 23:00:52','2022-09-14 23:00:52','7800fd7a-a75c-48e8-860e-22425acb1edd',NULL,NULL,NULL,NULL,'13536.13','30758.24',NULL,'109000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'95463.87','65725.63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138523,142290,1,'Mar 2016','2022-09-14 23:00:53','2022-09-14 23:00:53','f2b42280-810d-4ea2-bfd0-0d7fb09d5a58',NULL,NULL,NULL,NULL,'3737.25','36608.25',NULL,'60000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'56262.75','23567.23',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138524,142291,1,'Apr 2016','2022-09-14 23:00:54','2022-09-14 23:00:54','70d65132-b73c-468c-9333-b2c44978bda0',NULL,NULL,NULL,NULL,'103905.3','35246.79',NULL,'103000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'-905.3','-34192.09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138525,142292,1,'May 2016','2022-09-14 23:00:55','2022-09-14 23:00:55','573b62a5-c4e1-4646-8b6e-72c62d474edc',NULL,NULL,NULL,NULL,'7786.2','32770.75',NULL,'180000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'172213.8','143042.05',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138526,142293,1,'Jun 2016','2022-09-14 23:00:56','2022-09-14 23:00:56','261b37fa-6f97-4e38-8276-cac9cdb1e26c',NULL,NULL,NULL,NULL,'91761.92','492036.64',NULL,'22054',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'-69707.92','-561423.56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138527,142294,1,'Jul 2016','2022-09-14 23:00:57','2022-09-14 23:00:57','d14eb9c5-3743-40de-b1f4-328b57b70811',NULL,NULL,NULL,NULL,'20106.58','37555.65',NULL,'222000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'201893.42','165317.77',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138528,142295,1,'Aug 2016','2022-09-14 23:00:58','2022-09-14 23:00:58','ce504e9a-1caa-4409-864c-faeca5c1dd4c',NULL,NULL,NULL,NULL,'10553.49','35741.26',NULL,'94000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'83446.51','51625.25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138529,142296,1,'Sep 2016','2022-09-14 23:00:59','2022-09-14 23:00:59','108a23c6-537b-4293-be37-640c44e4c0f4',NULL,NULL,NULL,NULL,'29110.49','48752.68',NULL,'117000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'87889.51','41096.83',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138530,142297,1,'Oct 2016','2022-09-14 23:01:00','2022-09-14 23:01:00','0dd09a11-9359-484e-8ac9-06cbddf80311',NULL,NULL,NULL,NULL,'60335.35','33946.87',NULL,'96000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'35664.65','3687.78',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138531,142298,1,'Nov 2016','2022-09-14 23:01:01','2022-09-14 23:01:01','be91303b-150f-4689-8ca5-ffba79e24c61',NULL,NULL,NULL,NULL,'14708.97','34463.56',NULL,'131000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'116291.03','83807.47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138532,142299,1,'Dec 2016','2022-09-14 23:01:02','2022-09-14 23:01:02','689d9a98-3d31-4d32-badf-0552f7c775e3',NULL,NULL,NULL,NULL,'18062.5','43980.87',NULL,'196000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'177937.5','135936.63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138533,142300,1,'Jan 2017','2022-09-14 23:01:03','2022-09-14 23:01:03','82a85a7c-8e4b-4de0-b25f-d451d0cc020b',NULL,NULL,NULL,NULL,'12643.06','34494.35',NULL,'50000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'37356.94','5832.59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138534,142301,1,'Feb 2017','2022-09-14 23:01:03','2022-09-14 23:01:03','7005e3fb-945c-4d6a-9567-c29e2dc86318',NULL,NULL,NULL,NULL,'16715.3','39918.92',NULL,'72000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'55284.7','16359.28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138535,142302,1,'Mar 2017','2022-09-14 23:01:04','2022-09-14 23:01:04','80fefec2-a90d-4f5f-bf7e-c6c52b5e4b5d',NULL,NULL,NULL,NULL,'23188.6','51549.85',NULL,'106000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'82811.4','34244.18',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138536,142303,1,'Apr 2017','2022-09-14 23:01:06','2022-09-14 23:01:06','4e7e4e6e-3028-4ded-b402-d987cc625743',NULL,NULL,NULL,NULL,'55369.55','66391.21',NULL,'142000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'86630.45','21242.52',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138537,142304,1,'May 2017','2022-09-14 23:01:06','2022-09-14 23:01:06','f5e657ab-d050-49c8-82e1-729992c025a5',NULL,NULL,NULL,NULL,'64800.67','66855.79',NULL,'145000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'80199.33','15336.4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138538,142305,1,'Jun 2017','2022-09-14 23:01:07','2022-09-14 23:01:07','9bc1e217-347b-4c84-a02b-cfbb5c661cd3',NULL,NULL,NULL,NULL,'119825.26','444728.04',NULL,'-12917',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'-132742.26','-574486.7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138539,142306,1,'Jul 2017','2022-09-14 23:01:08','2022-09-14 23:01:08','24df564b-424d-4023-ac83-06e5d1be3613',NULL,NULL,NULL,NULL,'124656.28','58940.96',NULL,'318001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'193344.72','136396.14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138540,142307,1,'Aug 2017','2022-09-14 23:01:10','2022-09-14 23:01:10','0d7651e9-e566-4fc4-827c-df2220a542eb',NULL,NULL,NULL,NULL,'127811.15','64351.02',NULL,'159000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'31188.85','-31169.38',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138541,142308,1,'Sep 2017','2022-09-14 23:01:11','2022-09-14 23:01:11','db7a9fb4-6409-4957-9930-ef201ad66e9d',NULL,NULL,NULL,NULL,'52946.03','66806.66',NULL,'173000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'120053.97','56230.11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138542,142309,1,'Oct 2017','2022-09-14 23:01:12','2022-09-14 23:01:12','61d8e994-d5b3-4961-988d-2f08851c94b1',NULL,NULL,NULL,NULL,'31122.94','61372.86',NULL,'198000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'166877.06','107496.59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138543,142310,1,'Nov 2017','2022-09-14 23:01:13','2022-09-14 23:01:13','d1676cfc-2918-4019-a094-0e401633d2f4',NULL,NULL,NULL,NULL,'29012.41','62780.09',NULL,'198020.25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'169007.84','108220.56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138544,142311,1,'Dec 2017','2022-09-14 23:01:14','2022-09-14 23:01:14','00ce7a0d-fb0b-427b-9d7e-f053913b4575',NULL,NULL,NULL,NULL,'34527.87','76058.47',NULL,'199004',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'164476.13','90408.9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138545,142312,1,'Jan 2018','2022-09-14 23:01:15','2022-09-14 23:01:15','a2399856-a35b-4474-a419-6e656229dd02',NULL,NULL,NULL,NULL,'22421.26','71122.45',NULL,'-231482.9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'-253904.16','-322835.92',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138546,142313,1,'Feb 2018','2022-09-14 23:01:16','2022-09-14 23:01:16','d2104acb-b13f-4b61-a0e6-06c35f4c2623',NULL,NULL,NULL,NULL,'71557.92','67519.22',NULL,'153695',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'82137.08','16608.55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138547,142314,1,'Mar 2018','2022-09-14 23:01:17','2022-09-14 23:01:17','0e090a3f-48e7-4317-af5a-6887b32175c7',NULL,NULL,NULL,NULL,'31946.85','77049.2',NULL,'280147',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'248200.15','174530.61',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138548,142315,1,'Apr 2018','2022-09-14 23:01:18','2022-09-14 23:01:18','fbe111a6-893b-441c-9db4-99c2168642d6',NULL,NULL,NULL,NULL,'35055.04','75495.68',NULL,'151134.82',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'116079.78','41584.8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138549,142316,1,'May 2018','2022-09-14 23:01:18','2022-09-14 23:01:18','67e206ae-5cd1-4a30-b06a-deda18db0e68',NULL,NULL,NULL,NULL,'119729.46','87463.08',NULL,'292540.45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'172810.99','88355.16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138550,142317,1,'Jun 2018','2022-09-14 23:01:19','2022-09-14 23:01:19','3de1e7d1-6c4f-414d-81ae-096701e7d703',NULL,NULL,NULL,NULL,'64869.48','694466.09',NULL,'292145.63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'227276.15','-465826.12',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL),(138551,142318,1,'Jul 2018','2022-09-14 23:01:20','2022-09-14 23:01:20','ad55e596-6899-4486-8e60-18bf26dbfa22',NULL,NULL,NULL,NULL,'74000.72','111887.81',NULL,'147275.18',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'73274.46','-36522.98',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'147697',NULL,NULL,NULL,NULL,NULL,NULL),(138552,142319,1,'Aug 2018','2022-09-14 23:01:21','2022-09-14 23:01:21','1829ad9a-09fb-4d4f-ad98-37d59acc5ef9',NULL,NULL,NULL,NULL,'96837.95','124079.08',NULL,'219401.56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'122563.61','-1501.17',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'164435',NULL,NULL,NULL,NULL,NULL,NULL),(138553,142320,1,'Sep 2018','2022-09-14 23:01:22','2022-09-14 23:01:22','db0127cd-b011-44f0-8185-7f40f82ff934',NULL,NULL,NULL,NULL,'45298.63','113286.62',NULL,'154023.91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'108725.28','-3742.13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'157965',NULL,NULL,NULL,NULL,NULL,NULL),(138554,142321,1,'Oct 2018','2022-09-14 23:01:23','2022-09-14 23:01:23','0087208f-cbf8-47e9-ae36-cc286536ee8c',NULL,NULL,NULL,NULL,'55556.77','136623.45',NULL,'149903.7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'94346.93','-42251.36',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(138555,142322,1,'Nov 2018','2022-09-14 23:01:25','2022-09-14 23:01:25','9878e247-dab5-4d53-b54d-3c62b6448589',NULL,NULL,NULL,NULL,'54735.28','143555.34',NULL,'176699.55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'121964.27','-21565.49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(138556,142323,1,'Dec 2018','2022-09-14 23:01:25','2022-09-14 23:01:25','7049e29e-0914-436c-9297-4382f6513c6d',NULL,NULL,NULL,NULL,'66241.68','148956.68',NULL,'210190.96',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'143949.28','-4989.65',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(138557,142324,1,'Jan 2019','2022-09-14 23:01:26','2022-09-14 23:01:26','d71f32ab-a00e-425f-9a79-95906756afce',NULL,NULL,NULL,NULL,'4561.82','130051.64',NULL,'99963.35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'95401.53','-34638.1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(138558,142325,1,'Feb 2019','2022-09-14 23:01:27','2022-09-14 23:01:27','798d915b-827d-479b-b6e3-2dea4ada0934',NULL,NULL,NULL,NULL,'8401.32','112334.34',NULL,'136704.64',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'128303.32','17493.03',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(138559,142326,1,'Mar 2019','2022-09-14 23:01:29','2022-09-14 23:01:29','292382ea-d90f-49da-a3cf-56c6595eea60',NULL,NULL,NULL,NULL,'29877.13','166573.2',NULL,'185860.76',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'155983.63','-7779.11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(138560,142327,1,'Apr 2019','2022-09-14 23:01:30','2022-09-14 23:01:30','c9bd6961-ce64-4019-b530-a571851a87bf',NULL,NULL,NULL,NULL,'26063.01','120213.11',NULL,'218229.03',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'192166.02','74192.91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(138561,142328,1,'May 2019','2022-09-14 23:01:31','2022-09-14 23:01:31','a42af456-4a80-4f6b-ad44-520dbe4271eb',NULL,NULL,NULL,NULL,'30193.42','148983.16',NULL,'266386.09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'236192.67','88890.38',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(138562,142329,1,'Jun 2019','2022-09-14 23:01:32','2022-09-14 23:01:32','988d375a-6db3-4358-98c7-cb907308cef9',NULL,NULL,NULL,NULL,'73421.4','338495.32',NULL,'380330.27',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'306908.87','-27586.33',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'224400',NULL,NULL,NULL,NULL,NULL,NULL),(138563,142330,1,'Jul 2019','2022-09-14 23:01:33','2022-09-14 23:01:33','34c381ea-4aef-415e-917d-8af1bc8d2dad',NULL,NULL,NULL,NULL,'53253.62','139028.57',NULL,'215952.4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'162698.78','25530.21',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'231029.76',NULL,NULL,NULL,NULL,NULL,NULL),(138564,142331,1,'Aug 2019','2022-09-14 23:01:34','2022-09-14 23:01:34','52ec1960-4725-4927-89a1-128e5cf95d6d',NULL,NULL,NULL,NULL,'131654.45','150318.01',NULL,'190861.91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'59207.46','-88104.61',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'311744.69',NULL,NULL,NULL,NULL,NULL,NULL),(138565,142332,1,'Sep 2019','2022-09-14 23:01:35','2022-09-14 23:01:35','3246add0-9e70-47d0-8cd3-589e6fb22f50',NULL,NULL,NULL,NULL,'31218.34','116472.95',NULL,'230171.54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'198953.2','84185.79',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'291943.95',NULL,NULL,NULL,NULL,NULL,NULL),(138566,142333,1,'Oct 2019','2022-09-14 23:01:36','2022-09-14 23:01:36','c472e482-2575-4e58-9df9-8bebf62e54cd',NULL,NULL,NULL,NULL,'108744.79','147427.91',NULL,'124740.95',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'15996.16','-129179.1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'167814.45',NULL,NULL,NULL,NULL,NULL,NULL),(138567,142334,1,'Nov 2019','2022-09-14 23:01:37','2022-09-14 23:01:37','8e255801-309f-4008-8e48-cb43b88f2b4f',NULL,NULL,NULL,NULL,'83071.43','152745.93',NULL,'231142.92',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'148071.49','-2413.96',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'220528.67',NULL,NULL,NULL,NULL,NULL,NULL),(138568,142335,1,'Dec 2019','2022-09-14 23:01:38','2022-09-14 23:01:38','276fe56a-bba9-46fa-af5c-15c0509e27e1',NULL,NULL,NULL,NULL,'34132.95','121765.4',NULL,'241076.87',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'206943.92','87984.88',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'237009.93',NULL,NULL,NULL,NULL,NULL,NULL),(138569,142336,1,'Jan 2020','2022-09-14 23:01:38','2022-09-14 23:01:38','96d7357e-d184-4284-be69-8c5919819c86',NULL,NULL,NULL,NULL,'56300.2','143709.05',NULL,'122894.38',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'66594.18','-74311.62',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'104155.13',NULL,NULL,NULL,NULL,NULL,NULL),(138570,142337,1,'Feb 2020','2022-09-14 23:01:40','2022-09-14 23:01:40','81aa5b3f-c7c1-4636-80af-d85ba67444cf',NULL,NULL,NULL,NULL,'73879.47','121533.38',NULL,'130982.05',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'57102.58','-61622.81',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'134093.88',NULL,NULL,NULL,NULL,NULL,NULL),(138571,142338,1,'Mar 2020','2022-09-14 23:01:41','2022-09-14 23:01:41','ca4248aa-641b-49e2-af34-6030a85569b5',NULL,NULL,NULL,NULL,'42035.9','114496.21',NULL,'307411.06',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'265375.16','153683.37',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'190737.43',NULL,NULL,NULL,NULL,NULL,NULL),(138572,142339,1,'Apr 2020','2022-09-14 23:01:42','2022-09-14 23:01:42','39cdc13e-696b-49cd-9a05-f5538fc64a07',NULL,NULL,NULL,NULL,'27198.52','132741.81',NULL,'314841.39',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'287642.87','201472.06',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'234783.09',NULL,NULL,NULL,NULL,NULL,NULL),(138573,142340,1,'May 2020','2022-09-14 23:01:43','2022-09-14 23:01:43','6e9bb2f9-812d-402c-9df2-8beb58c19a89',NULL,NULL,NULL,NULL,'86514.99','130636.12',NULL,'215415.92',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'128900.93','6187.14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'350163.82',NULL,NULL,NULL,NULL,NULL,NULL),(138574,142341,1,'Jun 2020','2022-09-14 23:01:45','2022-09-14 23:01:45','d7917689-d73b-4be0-97cf-0efc175d57e2',NULL,NULL,NULL,NULL,'34119.85','280264.79',NULL,'108052.94',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'73933.09','-203411.35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'389058.54',NULL,NULL,NULL,NULL,NULL,NULL),(138575,142342,1,'Jul 2020','2022-09-14 23:01:46','2022-09-14 23:01:46','caf74111-5c1b-4d47-b0e1-4f97b6273c07',NULL,NULL,NULL,NULL,'85216.7','155638.76',NULL,'237989.14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'152772.44','559.06',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'204227.8112',NULL,NULL,NULL,NULL,NULL,NULL),(138576,142343,1,'Aug 2020','2022-09-14 23:01:47','2022-09-14 23:01:47','025d43a5-033f-4738-9854-e33a7cb07267',NULL,NULL,NULL,NULL,'93034.44','116200.68',NULL,'203442.81',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'110408.37','21477.59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'177542.8673',NULL,NULL,NULL,NULL,NULL,NULL),(138577,142344,1,'Sep 2020','2022-09-14 23:01:48','2022-09-14 23:01:48','08ca8475-bcec-4d0b-bd7b-3b8ec97d2331',NULL,NULL,NULL,NULL,'54987.82','119322.07',NULL,'197912.27',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'142924.45','38477.37',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'178650.1445',NULL,NULL,NULL,NULL,NULL,NULL),(138578,142345,1,'Oct 2020','2022-09-14 23:01:49','2022-09-14 23:01:49','f1cb78ba-dfe7-4121-853b-6a92a819521e',NULL,NULL,NULL,NULL,'82653','154948.66',NULL,'284488.19',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'201835.19','60539.21',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'152083.026',NULL,NULL,NULL,NULL,NULL,NULL),(138579,142346,1,'Nov 2020','2022-09-14 23:01:49','2022-09-14 23:01:49','5e6e88a9-399b-46d0-be66-857eea233b22',NULL,NULL,NULL,NULL,'41268.96','138999.28',NULL,'122433.13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'81164.17','-54446.59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'202028.5307',NULL,NULL,NULL,NULL,NULL,NULL),(138580,142347,1,'Dec 2020','2022-09-14 23:01:50','2022-09-14 23:01:50','36545435-2043-4872-ab1c-e19fa29b57ac',NULL,NULL,NULL,NULL,'43754.18','101087.89',NULL,'214996.8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'171242.62','72403.07',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'228061.0762',NULL,NULL,NULL,NULL,NULL,NULL),(138581,142348,1,'Jan 2021','2022-09-14 23:01:51','2022-09-14 23:01:51','4ac4cb7c-d0f7-488f-a195-dba6c01ad843',NULL,NULL,NULL,NULL,'34680.41','127911.34',NULL,'133190.08',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'98509.67','-27157.92',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'126517.9049',NULL,NULL,NULL,NULL,NULL,NULL),(138582,142349,1,'Feb 2021','2022-09-14 23:01:52','2022-09-14 23:01:52','073c399e-4713-4e7e-bf29-7e86fbbc872c',NULL,NULL,NULL,NULL,'17113.54','124028.06',NULL,'168926.4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'151812.86','30111.29',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'151737.957',NULL,NULL,NULL,NULL,NULL,NULL),(138583,142350,1,'Mar 2021','2022-09-14 23:01:53','2022-09-14 23:01:53','4ef1aabc-352b-49d9-baba-65e69f931e53',NULL,NULL,NULL,NULL,'34577.46','119082.89',NULL,'108568.58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'73991.12','-41720.76',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'202504.339',NULL,NULL,NULL,NULL,NULL,NULL),(138584,142351,1,'Apr 2021','2022-09-14 23:01:54','2022-09-14 23:01:54','64e0faef-d9c1-4d0a-a8d7-3c48b0ce0e17',NULL,NULL,NULL,NULL,'71194.26','141213.01',NULL,'388991.75',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'317797.49','178836.73',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'253314.9793',NULL,NULL,NULL,NULL,NULL,NULL),(138585,142352,1,'May 2021','2022-09-14 23:01:55','2022-09-14 23:01:55','c2ae6b9b-40e5-4d31-87ab-8cab85b405f4',NULL,NULL,NULL,NULL,'86314.7','158006.48',NULL,'126007.5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'39692.8','-117182.23',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'304194.8279',NULL,NULL,NULL,NULL,NULL,NULL),(138586,142353,1,'Jun 2021','2022-09-14 23:01:56','2022-09-14 23:01:56','5b729e39-bfda-45bc-98f9-6adc2d3a87e7',NULL,NULL,NULL,NULL,'66581.49','269957.97',NULL,'333581.4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'104507.09','-161896.82',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'354136.5359',NULL,NULL,NULL,NULL,NULL,NULL),(138587,142354,1,'Jul 2021','2022-09-14 23:01:57','2022-09-14 23:01:57','28a82828-7000-4391-867f-8df983ef25ca',NULL,NULL,NULL,NULL,'92534.16','372266.07',NULL,'253376.78',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'160842.62','-211423.45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'253646.96',NULL,NULL,NULL,NULL,NULL,NULL),(138588,142355,1,'Aug 2021','2022-09-14 23:01:58','2022-09-14 23:01:58','8f5d2051-8c1b-46e6-882a-8c865365763a',NULL,NULL,NULL,NULL,'87619.32','159658.54',NULL,'178768.63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'91149.31','-68507.87',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'302574.55',NULL,NULL,NULL,NULL,NULL,NULL),(138589,142356,1,'Sep 2021','2022-09-14 23:01:59','2022-09-14 23:01:59','1f50fd35-ef14-4254-b846-68af5c0af78b',NULL,NULL,NULL,NULL,'144440.96','203439.21',NULL,'334002.05',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'189561.09','-13876.63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'303327.81',NULL,NULL,NULL,NULL,NULL,NULL),(138590,142357,1,'Oct 2021','2022-09-14 23:02:00','2022-09-14 23:02:00','a054e1fd-d15a-4240-b831-405cffc2c885',NULL,NULL,NULL,NULL,'40066.09','167609.66',NULL,'211688.3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'171622.21','4013.75',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'202041.07',NULL,NULL,NULL,NULL,NULL,NULL),(138591,142358,1,'Nov 2021','2022-09-14 23:02:01','2022-09-14 23:02:01','3d5c7322-0c5f-4961-8460-d8200f8ead33',NULL,NULL,NULL,NULL,'102016.09','180473.09',NULL,'318984.43',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'216968.34','36496.1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'202351.45',NULL,NULL,NULL,NULL,NULL,NULL),(138592,142359,1,'Dec 2021','2022-09-14 23:02:02','2022-09-14 23:02:02','d3180342-dbc7-4eff-88a8-9ec0983049d7',NULL,NULL,NULL,NULL,'125678.95','178911.53',NULL,'510903.89',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'385224.94','206314.26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'252789.03',NULL,NULL,NULL,NULL,NULL,NULL),(138593,142360,1,'Jan 2022','2022-09-14 23:02:02','2022-09-14 23:02:02','5477fb72-1c3e-4aaf-81b0-ecf2e5f56844',NULL,NULL,NULL,NULL,'69288.44','167700.23',NULL,'89711.83',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'20423.39','-147275.88',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'151493.12',NULL,NULL,NULL,NULL,NULL,NULL),(138594,142361,1,'Feb 2022','2022-09-14 23:02:03','2022-09-14 23:02:03','85fb042d-e69a-4f04-8990-5fbd5c72d65e',NULL,NULL,NULL,NULL,'25256.65','127253.23',NULL,'111139.49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'85882.84','-41369.43',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'151863.49',NULL,NULL,NULL,NULL,NULL,NULL),(138595,142362,1,'Mar 2022','2022-09-14 23:02:04','2022-09-14 23:02:04','0cac2772-b75e-4639-a681-9d6c3997a29b',NULL,NULL,NULL,NULL,'121499.88','151184.05',NULL,'360528.63',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'239028.75','87845.57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'252449.14',NULL,NULL,NULL,NULL,NULL,NULL),(138596,142363,1,'Apr 2022','2022-09-14 23:02:05','2022-09-14 23:02:05','2de1abaf-dcbd-4786-a354-bb655c7fd6b7',NULL,NULL,NULL,NULL,'155220.38','171232.41',NULL,'316516.04',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'161295.66','-9935.79',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'252645.85',NULL,NULL,NULL,NULL,NULL,NULL),(138597,142364,1,'May 2022','2022-09-14 23:02:06','2022-09-14 23:02:06','94f352ef-9a61-4f7e-9e46-96daa0016b18',NULL,NULL,NULL,NULL,'90871.46','166192.77',NULL,'256968.85',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'166097.39','-94.45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'354281.48',NULL,NULL,NULL,NULL,NULL,NULL),(138598,142365,1,'Jun 2022','2022-09-14 23:02:06','2022-09-14 23:02:06','a3774905-ca30-4e87-8941-b465f9cd02ea',NULL,NULL,NULL,NULL,'26987.54','115582.23',NULL,'365537.69',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'338550.15','222968.88',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'354286.06',NULL,NULL,NULL,NULL,NULL,NULL),(138599,142366,1,'Jul 2022','2022-09-14 23:02:07','2022-09-14 23:02:07','0abf17c0-c60f-4a9c-b36b-0090923a9191',NULL,NULL,NULL,NULL,'109959.71','140',NULL,'207067.45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'97107.74','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'397171',NULL,NULL,NULL,NULL,NULL,NULL),(138600,142367,1,'Aug 2022','2022-09-14 23:02:08','2022-09-14 23:02:08','66cd8c83-23b4-408e-b5ae-fc42a3a3c3b8',NULL,NULL,NULL,NULL,'97424.95','140',NULL,'389540.24',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'292115.29','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'378091',NULL,NULL,NULL,NULL,NULL,NULL),(138601,142368,1,'Sep 2022','2022-09-14 23:02:09','2022-09-14 23:02:09','81807891-7d49-4bd2-922c-fadee9fd5d52',NULL,NULL,NULL,NULL,'20896.62','0',NULL,'118615.18',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'97718.56','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'415335',NULL,NULL,NULL,NULL,NULL,NULL),(138603,142370,1,'Sep 2022','2022-09-14 23:16:07','2022-09-14 23:16:07','779a88e0-39a8-4fb5-bbe7-afc992ba4da5',NULL,NULL,NULL,NULL,'20896.62','85,602.76',NULL,'118615.18',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'97718.56','12,163.18',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'415335',NULL,NULL,NULL,NULL,NULL,NULL),(138605,142372,1,'Sep 2022','2022-09-14 23:16:36','2022-09-14 23:16:36','4eb845bc-eb70-43ad-8bfc-3e6d743eac66',NULL,NULL,NULL,NULL,'20896.62','85602.76',NULL,'118615.18',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'97718.56','12,163.18',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'415335',NULL,NULL,NULL,NULL,NULL,NULL),(138608,142375,1,'Behaviour change: a long haul','2022-09-15 01:40:32','2022-09-15 01:40:32','e3d986b1-828e-4a82-902b-437fe426cbeb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Le3COrDzEZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"When it comes to behaviour change, we know what success—and, let\'s face it, failure—looks like. Our successful work has seen countless Queenslanders quit smoking, [influenced the behaviours of people experiencing and perpetrating domestic and family violence](https://newwordorder.com.au/work/dfv-campaign), shaped attitudes towards the COVID-19 vaccination debate and [encouraged safer transport and travel practice](https://newwordorder.com.au/work/department-of-transport-and-main-roads).\\n\\nThe biggest thing we\'ve learned from behaviour change campaigns is you\'re in it for the long haul. People don\'t change their behaviour overnight—especially behaviour around their big life moments. It happens incrementally and although the process is long, it\'s a rewarding one.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hv7VMw0rfy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"1. Small steps are giant leaps\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pZwTQEcSBv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A good long-term behaviour change campaign is broken down into steps, focusing on the giant leap of that moment in time.\\n\\nWe have been running [**Medical Mums**](https://nwo.staging.nwo.digital/work/medical-mums) as an annual campaign for Brisbane North PHN since 2016. Each year, the focus has shifted slightly, but the core behaviour change message has remained steadfast. \\n\\nWhat began with live-action interviews of GP mums and an Indigenous health nurse grew to include a Medical Dad in the third year, and turned into a refreshingly different illustration with a diverse cast of characters in the fourth, tackling myths and fear tactics head-on. In 2020, our messaging cut through COVID-19 clutter and encouraged parents to continue their children\'s vaccination schedules in spite of hesitancy and uncertainty around the COVID-19 vaccine.\\n\\nEach year moved the conversation along a little further, warranting a slightly different approach each time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PqtgqGncDS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"2. Sustainable, not radical\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0ejVCfsV4W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With behaviour change campaigns, it\'s not our job to move whole populations from 0 to 100. It’s to elicit in people the desire to change sustainably, so they can lead themselves along the stages of change at their own pace.\\n\\nWe use nudge and switch models for our behaviour change campaigns.\\n\\nFirst articulated by Nobel Prize-winning behavioural economist Richard Thaler, a nudge is an environmental modification that encourages people to make good decisions—like the reminder your dentist sends you to schedule a dental check-up. Nudges exponentially increase the likelihood of people making the behaviour change in that instance, but it means they rely on your reminders for any ongoing change.\\n\\nSwitches are simple activities or thought-changers that encourage people to keep going with their determination to change, allowing them to take responsibility for their behaviours.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FhTmqEMBym\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"3. You can\'t celebrate what you don\'t measure\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8YVR38mNDg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Metrics are a vital element of a behaviour change campaign—you have to measure the influence you\'ve had on behaviour to know if your campaign is working. It\'s just as important to track your metrics **before** you start the campaign as it is to track them **after** it\'s complete.\\n\\nYour metrics will depend greatly on the behaviour itself (i.e. if you want people to stop [**flushing junk down the toilet**](https://nwo.staging.nwo.digital/work/no-3-campaign), measure how often toilets get clogged in the community). If you\'re stuck, these are some handy general measurements:\\n\\n- social media analytics (to track engagements)\\n- clicks on your website\\n- purchases of your products and services.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GCMDccwt8o\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"4. Perfection isn\'t the goal\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xi8lQq1xIY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"No matter what product you sell, service you deliver or behaviour you change, your audience is always going to be human beings, which means the result will never be perfection.\\n\\nPerfect, complete and consistent change is rarely achievable. If that\'s your goal, behaviour change campaigns aren\'t going to feel rewarding at all. But every step in the right direction is a win, so keep your goals big but realistic, and give people credit for the things they **do** achieve, instead of focusing on where they fall short. Champion every change, no matter how small.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rb4tt4M5KO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Champion your audience through each small step of the behaviour change process and celebrate your wins, big and small. Learn to appreciate every bit of influence you have over helping people make better choices, and you\'ll find behaviour change campaigns are the most rewarding of all.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Behaviour change: a long haul','When it comes to behaviour change, we know what success—and, let\'s face it, failure—looks like. Our successful work has seen countless Queenslanders quit smoking, [influenced the behaviours of people experiencing and perpetrating domestic and family violence](https://nwo.staging.nwo.digital/work/dfv-campaign), shaped attitudes towards the COVID-19 vaccination debate and [encouraged safer transport and travel practice](https://nwo.staging.nwo.digital/work/department-of-transport-and-main-roads).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138609,142376,1,'Behaviour change: a long haul','2022-09-15 01:40:33','2022-09-15 01:40:33','f7f7c655-7155-42eb-9839-397186ff5122',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Le3COrDzEZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"When it comes to behaviour change, we know what success—and, let\'s face it, failure—looks like. Our successful work has seen countless Queenslanders quit smoking, [influenced the behaviours of people experiencing and perpetrating domestic and family violence](https://newwordorder.com.au/work/dfv-campaign), shaped attitudes towards the COVID-19 vaccination debate and [encouraged safer transport and travel practice](https://newwordorder.com.au/work/department-of-transport-and-main-roads).\\n\\nThe biggest thing we\'ve learned from behaviour change campaigns is you\'re in it for the long haul. People don\'t change their behaviour overnight—especially behaviour around their big life moments. It happens incrementally and although the process is long, it\'s a rewarding one.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hv7VMw0rfy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"1. Small steps are giant leaps\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pZwTQEcSBv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A good long-term behaviour change campaign is broken down into steps, focusing on the giant leap of that moment in time.\\n\\nWe have been running [**Medical Mums**](https://nwo.staging.nwo.digital/work/medical-mums) as an annual campaign for Brisbane North PHN since 2016. Each year, the focus has shifted slightly, but the core behaviour change message has remained steadfast. \\n\\nWhat began with live-action interviews of GP mums and an Indigenous health nurse grew to include a Medical Dad in the third year, and turned into a refreshingly different illustration with a diverse cast of characters in the fourth, tackling myths and fear tactics head-on. In 2020, our messaging cut through COVID-19 clutter and encouraged parents to continue their children\'s vaccination schedules in spite of hesitancy and uncertainty around the COVID-19 vaccine.\\n\\nEach year moved the conversation along a little further, warranting a slightly different approach each time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PqtgqGncDS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"2. Sustainable, not radical\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0ejVCfsV4W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With behaviour change campaigns, it\'s not our job to move whole populations from 0 to 100. It’s to elicit in people the desire to change sustainably, so they can lead themselves along the stages of change at their own pace.\\n\\nWe use nudge and switch models for our behaviour change campaigns.\\n\\nFirst articulated by Nobel Prize-winning behavioural economist Richard Thaler, a nudge is an environmental modification that encourages people to make good decisions—like the reminder your dentist sends you to schedule a dental check-up. Nudges exponentially increase the likelihood of people making the behaviour change in that instance, but it means they rely on your reminders for any ongoing change.\\n\\nSwitches are simple activities or thought-changers that encourage people to keep going with their determination to change, allowing them to take responsibility for their behaviours.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FhTmqEMBym\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"3. You can\'t celebrate what you don\'t measure\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8YVR38mNDg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Metrics are a vital element of a behaviour change campaign—you have to measure the influence you\'ve had on behaviour to know if your campaign is working. It\'s just as important to track your metrics **before** you start the campaign as it is to track them **after** it\'s complete.\\n\\nYour metrics will depend greatly on the behaviour itself (i.e. if you want people to stop [**flushing junk down the toilet**](https://nwo.staging.nwo.digital/work/no-3-campaign), measure how often toilets get clogged in the community). If you\'re stuck, these are some handy general measurements:\\n\\n- social media analytics (to track engagements)\\n- clicks on your website\\n- purchases of your products and services.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GCMDccwt8o\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"4. Perfection isn\'t the goal\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xi8lQq1xIY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"No matter what product you sell, service you deliver or behaviour you change, your audience is always going to be human beings, which means the result will never be perfection.\\n\\nPerfect, complete and consistent change is rarely achievable. If that\'s your goal, behaviour change campaigns aren\'t going to feel rewarding at all. But every step in the right direction is a win, so keep your goals big but realistic, and give people credit for the things they **do** achieve, instead of focusing on where they fall short. Champion every change, no matter how small.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rb4tt4M5KO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Champion your audience through each small step of the behaviour change process and celebrate your wins, big and small. Learn to appreciate every bit of influence you have over helping people make better choices, and you\'ll find behaviour change campaigns are the most rewarding of all.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Behaviour change: a long haul','When it comes to behaviour change, we know what success—and, let\'s face it, failure—looks like. Our successful work has seen countless Queenslanders quit smoking, [influenced the behaviours of people experiencing and perpetrating domestic and family violence](https://nwo.staging.nwo.digital/work/dfv-campaign), shaped attitudes towards the COVID-19 vaccination debate and [encouraged safer transport and travel practice](https://nwo.staging.nwo.digital/work/department-of-transport-and-main-roads).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138610,142377,1,'Behaviour change: a long haul','2022-09-15 01:40:38','2022-09-15 01:40:39','0d717ba1-1699-46f7-9e68-aeb140fab2c8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Le3COrDzEZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"When it comes to behaviour change, we know what success—and, let\'s face it, failure—looks like. Our successful work has seen countless Queenslanders quit smoking, [influenced the behaviours of people experiencing and perpetrating domestic and family violence](https://newwordorder.com.au/work/dfv-campaign), shaped attitudes towards the COVID-19 vaccination debate and [encouraged safer transport and travel practice](https://newwordorder.com.au/work/department-of-transport-and-main-roads).\\n\\nThe biggest thing we\'ve learned from behaviour change campaigns is you\'re in it for the long haul. People don\'t change their behaviour overnight—especially behaviour around their big life moments. It happens incrementally and although the process is long, it\'s a rewarding one.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hv7VMw0rfy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"1. Small steps are giant leaps\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pZwTQEcSBv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A good long-term behaviour change campaign is broken down into steps, focusing on the giant leap of that moment in time.\\n\\nWe have been running [**Medical Mums**](https://nwo.staging.nwo.digital/work/medical-mums) as an annual campaign for Brisbane North PHN since 2016. Each year, the focus has shifted slightly, but the core behaviour change message has remained steadfast. \\n\\nWhat began with live-action interviews of GP mums and an Indigenous health nurse grew to include a Medical Dad in the third year, and turned into a refreshingly different illustration with a diverse cast of characters in the fourth, tackling myths and fear tactics head-on. In 2020, our messaging cut through COVID-19 clutter and encouraged parents to continue their children\'s vaccination schedules in spite of hesitancy and uncertainty around the COVID-19 vaccine.\\n\\nEach year moved the conversation along a little further, warranting a slightly different approach each time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PqtgqGncDS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"2. Sustainable, not radical\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0ejVCfsV4W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With behaviour change campaigns, it\'s not our job to move whole populations from 0 to 100. It’s to elicit in people the desire to change sustainably, so they can lead themselves along the stages of change at their own pace.\\n\\nWe use nudge and switch models for our behaviour change campaigns.\\n\\nFirst articulated by Nobel Prize-winning behavioural economist Richard Thaler, a nudge is an environmental modification that encourages people to make good decisions—like the reminder your dentist sends you to schedule a dental check-up. Nudges exponentially increase the likelihood of people making the behaviour change in that instance, but it means they rely on your reminders for any ongoing change.\\n\\nSwitches are simple activities or thought-changers that encourage people to keep going with their determination to change, allowing them to take responsibility for their behaviours.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FhTmqEMBym\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"3. You can\'t celebrate what you don\'t measure\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8YVR38mNDg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Metrics are a vital element of a behaviour change campaign—you have to measure the influence you\'ve had on behaviour to know if your campaign is working. It\'s just as important to track your metrics **before** you start the campaign as it is to track them **after** it\'s complete.\\n\\nYour metrics will depend greatly on the behaviour itself (i.e. if you want people to stop [**flushing junk down the toilet**](https://nwo.staging.nwo.digital/work/no-3-campaign), measure how often toilets get clogged in the community). If you\'re stuck, these are some handy general measurements:\\n\\n- social media analytics (to track engagements)\\n- clicks on your website\\n- purchases of your products and services.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GCMDccwt8o\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"4. Perfection isn\'t the goal\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xi8lQq1xIY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"No matter what product you sell, service you deliver or behaviour you change, your audience is always going to be human beings, which means the result will never be perfection.\\n\\nPerfect, complete and consistent change is rarely achievable. If that\'s your goal, behaviour change campaigns aren\'t going to feel rewarding at all. But every step in the right direction is a win, so keep your goals big but realistic, and give people credit for the things they **do** achieve, instead of focusing on where they fall short. Champion every change, no matter how small.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rb4tt4M5KO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Champion your audience through each small step of the behaviour change process and celebrate your wins, big and small. Learn to appreciate every bit of influence you have over helping people make better choices, and you\'ll find behaviour change campaigns are the most rewarding of all.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Behaviour change: a long haul','When it comes to behaviour change, we know what success—and, let\'s face it, failure—looks like. Our successful work has seen countless Queenslanders quit smoking, [influenced the behaviours of people experiencing and perpetrating domestic and family violence](https://nwo.staging.nwo.digital/work/dfv-campaign), shaped attitudes towards the COVID-19 vaccination debate and [encouraged safer transport and travel practice](https://nwo.staging.nwo.digital/work/department-of-transport-and-main-roads).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138614,142381,1,'Ramsay carousels','2022-09-15 06:42:47','2022-09-15 06:42:47','0b338a61-aadd-4ce5-a89e-8c1d38414d32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x863_crop_center-center_82_line/Ramsay-carousels.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x719_crop_center-center_82_line/Ramsay-carousels.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x575_crop_center-center_82_line/Ramsay-carousels.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x431_crop_center-center_82_line/Ramsay-carousels.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x359_crop_center-center_82_line/Ramsay-carousels.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x863_crop_center-center_82_line/Ramsay-carousels.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x719_crop_center-center_82_line/Ramsay-carousels.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x575_crop_center-center_82_line/Ramsay-carousels.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x431_crop_center-center_82_line/Ramsay-carousels.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x359_crop_center-center_82_line/Ramsay-carousels.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":863,\"1280\":719,\"1024\":575,\"768\":431,\"640\":359},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":2000,\"originalImageHeight\":1124,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAIABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAQb/xAAeEAEAAgICAwEAAAAAAAAAAAABAgMFEQAEEiFRgf/EABUBAQEAAAAAAAAAAAAAAAAAAAAB/8QAGREAAwEBAQAAAAAAAAAAAAAAAAERAiEi/9oADAMBAAIRAxEAPwCocpfTewn1bpx8kJBs199HLqKQLoXZyytiQx/YsVB1FNb/ADjKpNeT/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#d6d7da\",\"#1f405d\",\"#8b7455\",\"#784a3e\",\"#7287ad\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":863,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138615,142382,1,'Ramsay Health Care','2022-09-15 06:42:56','2022-09-15 06:42:56','85cd1147-6a28-44f5-a237-d370fdf7ad0d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Weekend Warrior campaign',NULL,NULL,'We work so hard through the week, we deserve to play hard over the weekend. When we find ourselves reliving our glory days through social sport or using our house reno as a creative and active outlet—sometimes it can be at the risk of our safety. Ramsay Health Care knows accidents happen, and they asked us to help them showcase how their holistic orthopaedic care services get Weekend Warriors back on their feet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141736\",\"141670\",\"141671\",\"141672\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W9718fXXCv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142381\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDjAdefp2G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Ramsay Health Care asked us to help develop a campaign to promote their orthopaedic services across their network of hospitals. The campaign served to educate the target market on what makes Ramsay’s orthopaedic offerings special, while also calling them to check if their health insurance covers Ramsay hospitals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BWwvmn3pwX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141745\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using Ramsay’s target market of orthopaedic patients in their 40s and 50s, we created the ‘weekend warrior’ characters: everyday people who take on their alter ego when the working week is over. The social sports star who pushes themself to go for that bicycle kick or elaborate jump pass. The reno kings and queens who love Bunnings outings and would never pay someone else to do work around the house that they could do themselves.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ynJgqMQCET\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s an ocean of campaigns out there from medical brands that all look the same—clinical and serious. Ramsay stepped outside of the same-same and opted for more lively, exaggerated shots of Weekend Warriors in action, being injured and seeking care from a Ramsay hospital.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141741\",\"141742\",\"141743\",\"141744\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FF7V2IzNlc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With fresh, exciting and relatable action shots complemented by copy that captures the work-hard-play-hard lifestyle, our campaign for Ramsay cut through to the market with personality and an element of surprise.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Ramsay Health Care','Weekend Warrior campaign',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138617,142384,1,'Ramsay Health Care','2022-09-15 06:44:00','2022-09-15 06:44:00','ba9f38f1-8e2d-4783-b7b2-5f0c4825ef5a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Weekend Warrior campaign',NULL,NULL,'We work so hard through the week, we deserve to play hard over the weekend. When we find ourselves reliving our glory days through social sport or using our house reno as a creative and active outlet—sometimes it can be at the risk of our safety. Ramsay Health Care knows accidents happen, and they asked us to help them showcase how their holistic orthopaedic care services get Weekend Warriors back on their feet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141736\",\"141670\",\"141671\",\"141672\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDjAdefp2G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Ramsay Health Care asked us to help develop a campaign to promote their orthopaedic services across their network of hospitals. The campaign served to educate the target market on what makes Ramsay’s orthopaedic offerings special, while also calling them to check if their health insurance covers Ramsay hospitals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BWwvmn3pwX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141745\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using Ramsay’s target market of orthopaedic patients in their 40s and 50s, we created the ‘weekend warrior’ characters: everyday people who take on their alter ego when the working week is over. The social sports star who pushes themself to go for that bicycle kick or elaborate jump pass. The reno kings and queens who love Bunnings outings and would never pay someone else to do work around the house that they could do themselves.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W9718fXXCv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142381\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ynJgqMQCET\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s an ocean of campaigns out there from medical brands that all look the same—clinical and serious. Ramsay stepped outside of the same-same and opted for more lively, exaggerated shots of Weekend Warriors in action, being injured and seeking care from a Ramsay hospital.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141741\",\"141742\",\"141743\",\"141744\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FF7V2IzNlc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With fresh, exciting and relatable action shots complemented by copy that captures the work-hard-play-hard lifestyle, our campaign for Ramsay cut through to the market with personality and an element of surprise.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Ramsay Health Care','Weekend Warrior campaign',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138619,142386,1,'Ramsay Health Care','2022-09-15 06:50:18','2022-09-15 06:50:18','fa7166c8-68d1-4c0d-b0ab-708fae1d7654',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Weekend Warrior campaign',NULL,NULL,'We work so hard through the week, we deserve to play hard over the weekend. When we find ourselves reliving our glory days through social sport or using our house reno as a creative and active outlet—sometimes it can be at the risk of our safety. Ramsay Health Care knows accidents happen, and they asked us to help them showcase how their holistic orthopaedic care services get Weekend Warriors back on their feet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141736\",\"141670\",\"141671\",\"141672\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDjAdefp2G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Ramsay Health Care asked us to help develop a campaign to promote their orthopaedic services across their network of hospitals. The campaign served to educate the target market on what makes Ramsay’s orthopaedic offerings special, while also calling them to check if their health insurance covers Ramsay hospitals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BWwvmn3pwX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141745\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using Ramsay’s target market of orthopaedic patients in their 40s and 50s, we created the ‘weekend warrior’ characters: everyday people who take on their alter ego when the working week is over. The social sports star who pushes themself to go for that bicycle kick or elaborate jump pass. The reno kings and queens who love Bunnings outings and would never pay someone else to do work around the house that they could do themselves.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W9718fXXCv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142381\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ynJgqMQCET\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s an ocean of campaigns out there from medical brands that all look the same—clinical and serious. Ramsay stepped outside of the same-same and opted for more lively, exaggerated shots of Weekend Warriors in action, being injured and seeking care from a Ramsay hospital.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141741\",\"141742\",\"141743\",\"141744\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FF7V2IzNlc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With fresh, exciting and relatable action shots complemented by copy that captures the work-hard-play-hard lifestyle, our campaign for Ramsay cut through to the market with personality and an element of surprise.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Ramsay Health Care','Weekend Warrior campaign',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138620,142387,1,'The ways brands make or break business outcomes','2022-09-15 23:02:05','2022-09-15 23:02:06','0db9a232-ef89-49f0-b979-04abadb53f4f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Le3COrDzEZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.\\nSo, yes, brand is powerful. But how specifically can your brand make or break your business outcomes?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hv7VMw0rfy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"1. Quality\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pZwTQEcSBv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Quality is a great place to start because everybody values it, even when they are price driven. \\nTo do business with you means your customer is hoping or expecting you’ll live up to a quality expectation, regardless of how much you cost. Your reliability and trustworthiness shine through in the quality of your branding—its professional design, messaging, imagery, and product and service delivery suggest a lot about the quality of your business.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PqtgqGncDS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"2.\\tSubliminal messages\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0ejVCfsV4W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"You may not realise how much your brand says about you. \\nJust like quality, your brand communicates subtle cues on your character, your way of working, and whether you are quirky, fun, classy or expensive. For example, think about how much a restaurant’s brand reputation relies on subtle cues—like the dining room’s ambience, design of the menu or willingness to cater to dietary requirements. Like it or not, customers subliminally build cues into an overall positive or negative perception of your brand. And if your brand is giving off the wrong message, it will damage your business by attracting the wrong people or repelling the right ones.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FhTmqEMBym\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"3.\\tClarity of offering\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8YVR38mNDg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Does your brand say what you do? \\nHow many more customers could quickly understand your offering and start working with you if you made it easier to understand your product or service offering, from even just a name and tagline? \\nAnd when you have sub-brands, good ‘brand architecture’ helps people understand how it all fits together, clears up confusion and makes it easier for customers to find what they want in your offering.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GCMDccwt8o\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"4.\\tYour people\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xi8lQq1xIY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Brand is not just for your customers. \\nYour own people respond, both consciously and subconsciously, in many ways to your brand and draw a lot of meaning, value and purpose from what your brand is about. They can represent and deliver your brand experience. \\nYou can develop an ‘employer brand’, which is usually an extension of the main brand. Shape it to suit your inhouse story, guide your culture and boost engagement, ownership and recruitment in tight labour markets.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-xeCZNZrkH6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"5.\\tMemorability\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rb4tt4M5KO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Your customers might say, “You were wonderful in your presentation, advertising or product delivery—but who are you, again?”\\nBeing remembered by your experience isn’t enough. You need to be found and remembered by name. Whether or not you’re advertising digitally, it’s not actually ‘all about the click’. URLs still get keyed in manually, especially from non-digital advertising or other brand touchpoints, and the right name must be easy to remember and type.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gFVOSUKyy4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"6.\\tDistinctives\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-sIATvwB4A4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"What makes you stand out from the competition? \\nEvery business needs to stand out, even if that manifests differently for each. Looking unique, showing the potential to offer something the others don’t and being the specific solution to a customer’s needs: It all helps to sell the business. And while this sounds more like marketing, brand is key to giving marketing a distinctive story to tell.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZM088N1969\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"7.\\tCompetitor’s advantage\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IztY4AzaqU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Are you using any of the above to give your brand a competitive advantage? \\nIf your competition is doing better at any or all of the above, then you’re giving them the advantage and will lose business to them. Conversely, investing in brand will give you the advantage.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-kSakIkxZkl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Never forget: Even if you don’t see anything wrong with your brand, your staff and customers might have a different perspective. Getting an unfiltered opinion from them could help you make powerful changes to your brand and, in turn, your business.\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textColour\":\"text-white\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Behaviour change: a long haul','When it comes to behaviour change, we know what success—and, let\'s face it, failure—looks like. Our successful work has seen countless Queenslanders quit smoking, [influenced the behaviours of people experiencing and perpetrating domestic and family violence](https://nwo.staging.nwo.digital/work/dfv-campaign), shaped attitudes towards the COVID-19 vaccination debate and [encouraged safer transport and travel practice](https://nwo.staging.nwo.digital/work/department-of-transport-and-main-roads).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138669,142436,1,'I Stock 157531192','2022-09-20 00:51:11','2022-09-20 00:51:11','f9c468af-9cf7-4a70-aa51-0fc9a5710e78',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/iStock-157531192.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/iStock-157531192.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/iStock-157531192.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/iStock-157531192.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/iStock-157531192.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/iStock-157531192.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/iStock-157531192.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/iStock-157531192.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/iStock-157531192.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/iStock-157531192.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/iStock-157531192.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/iStock-157531192.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/iStock-157531192.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/iStock-157531192.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/iStock-157531192.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/iStock-157531192.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"3072\":2048,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5616,\"originalImageHeight\":3744,\"placeholder\":\"/9j/4AAQSkZJRgABAQEA8ADwAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQAC/8QAIRAAAQIGAwEBAAAAAAAAAAAAAQMRAAIEBRMxEiGRQdH/xAAXAQADAQAAAAAAAAAAAAAAAAAAAQQF/8QAGxEAAgMBAQEAAAAAAAAAAAAAAAEDERICBDH/2gAMAwEAAhEDEQA/AEUrkrgSVmlqQFGbkT9I/Yw+o/TbWmXajr4SlxqhXYQnU4sZn5h+mJ35DUfpxenYLqO6aGVwMcoYM+o2GRGN3JYHWOXr2AR//9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#e6a813\",\"#292219\",\"#e1e0d4\",\"#8c5018\",\"#fbde07\"],\"lightness\":44,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138673,142440,1,'I Stock 157531192','2022-09-20 00:52:11','2022-09-20 00:52:11','ae906adc-b283-42bc-9c89-8896217e6258',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/iStock-157531192_2022-09-20-005211_dufd.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/iStock-157531192_2022-09-20-005211_dufd.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/iStock-157531192_2022-09-20-005211_dufd.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/iStock-157531192_2022-09-20-005211_dufd.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/iStock-157531192_2022-09-20-005211_dufd.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/iStock-157531192_2022-09-20-005211_dufd.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/iStock-157531192_2022-09-20-005211_dufd.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/iStock-157531192_2022-09-20-005211_dufd.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/iStock-157531192_2022-09-20-005211_dufd.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/iStock-157531192_2022-09-20-005211_dufd.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/iStock-157531192_2022-09-20-005211_dufd.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/iStock-157531192_2022-09-20-005211_dufd.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/iStock-157531192_2022-09-20-005211_dufd.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/iStock-157531192_2022-09-20-005211_dufd.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/iStock-157531192_2022-09-20-005211_dufd.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/iStock-157531192_2022-09-20-005211_dufd.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"3072\":2048,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5616,\"originalImageHeight\":3744,\"placeholder\":\"/9j/4AAQSkZJRgABAQEA8ADwAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQAC/8QAIRAAAQIGAwEBAAAAAAAAAAAAAQMRAAIEBRMxEiGRQdH/xAAXAQADAQAAAAAAAAAAAAAAAAAAAQQF/8QAGxEAAgMBAQEAAAAAAAAAAAAAAAEDERICBDH/2gAMAwEAAhEDEQA/AEUrkrgSVmlqQFGbkT9I/Yw+o/TbWmXajr4SlxqhXYQnU4sZn5h+mJ35DUfpxenYLqO6aGVwMcoYM+o2GRGN3JYHWOXr2AR//9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#e6a813\",\"#292219\",\"#e1e0d4\",\"#8c5018\",\"#fbde07\"],\"lightness\":44,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138676,142443,1,'I Stock 157531192','2022-09-20 00:53:39','2022-09-20 00:53:39','2b80e7c4-016c-46a0-8fab-1e887762c5f6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/iStock-157531192_2022-09-20-005338_cntb.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/iStock-157531192_2022-09-20-005338_cntb.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/iStock-157531192_2022-09-20-005338_cntb.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/iStock-157531192_2022-09-20-005338_cntb.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/iStock-157531192_2022-09-20-005338_cntb.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/iStock-157531192_2022-09-20-005338_cntb.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/iStock-157531192_2022-09-20-005338_cntb.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/iStock-157531192_2022-09-20-005338_cntb.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/iStock-157531192_2022-09-20-005338_cntb.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/iStock-157531192_2022-09-20-005338_cntb.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/iStock-157531192_2022-09-20-005338_cntb.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/iStock-157531192_2022-09-20-005338_cntb.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/iStock-157531192_2022-09-20-005338_cntb.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/iStock-157531192_2022-09-20-005338_cntb.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/iStock-157531192_2022-09-20-005338_cntb.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/iStock-157531192_2022-09-20-005338_cntb.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"3072\":2048,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5616,\"originalImageHeight\":3744,\"placeholder\":\"/9j/4AAQSkZJRgABAQEA8ADwAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQAC/8QAIRAAAQIGAwEBAAAAAAAAAAAAAQMRAAIEBRMxEiGRQdH/xAAXAQADAQAAAAAAAAAAAAAAAAAAAQQF/8QAGxEAAgMBAQEAAAAAAAAAAAAAAAEDERICBDH/2gAMAwEAAhEDEQA/AEUrkrgSVmlqQFGbkT9I/Yw+o/TbWmXajr4SlxqhXYQnU4sZn5h+mJ35DUfpxenYLqO6aGVwMcoYM+o2GRGN3JYHWOXr2AR//9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#e6a813\",\"#292219\",\"#e1e0d4\",\"#8c5018\",\"#fbde07\"],\"lightness\":44,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138682,142449,1,'I Stock 157531192','2022-09-20 00:55:27','2022-09-20 00:55:27','c28c014d-6ebe-4fc0-9ab9-edd34504c68c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/iStock-157531192_2022-09-20-005526_isig.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/iStock-157531192_2022-09-20-005526_isig.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/iStock-157531192_2022-09-20-005526_isig.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/iStock-157531192_2022-09-20-005526_isig.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/iStock-157531192_2022-09-20-005526_isig.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/iStock-157531192_2022-09-20-005526_isig.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/iStock-157531192_2022-09-20-005526_isig.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/iStock-157531192_2022-09-20-005526_isig.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/iStock-157531192_2022-09-20-005526_isig.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/iStock-157531192_2022-09-20-005526_isig.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/iStock-157531192_2022-09-20-005526_isig.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/iStock-157531192_2022-09-20-005526_isig.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/iStock-157531192_2022-09-20-005526_isig.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/iStock-157531192_2022-09-20-005526_isig.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/iStock-157531192_2022-09-20-005526_isig.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/iStock-157531192_2022-09-20-005526_isig.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"3072\":2048,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5616,\"originalImageHeight\":3744,\"placeholder\":\"/9j/4AAQSkZJRgABAQEA8ADwAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQAC/8QAIRAAAQIGAwEBAAAAAAAAAAAAAQMRAAIEBRMxEiGRQdH/xAAXAQADAQAAAAAAAAAAAAAAAAAAAQQF/8QAGxEAAgMBAQEAAAAAAAAAAAAAAAEDERICBDH/2gAMAwEAAhEDEQA/AEUrkrgSVmlqQFGbkT9I/Yw+o/TbWmXajr4SlxqhXYQnU4sZn5h+mJ35DUfpxenYLqO6aGVwMcoYM+o2GRGN3JYHWOXr2AR//9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#e6a813\",\"#292219\",\"#e1e0d4\",\"#8c5018\",\"#fbde07\"],\"lightness\":44,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138684,142451,1,'I Stock 157531192','2022-09-20 00:55:54','2022-09-20 00:55:54','caee1cc0-6bf5-44fc-8c17-4b9dab9b7b2b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/iStock-157531192_2022-09-20-005553_qwkt.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/iStock-157531192_2022-09-20-005553_qwkt.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/iStock-157531192_2022-09-20-005553_qwkt.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/iStock-157531192_2022-09-20-005553_qwkt.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/iStock-157531192_2022-09-20-005553_qwkt.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/iStock-157531192_2022-09-20-005553_qwkt.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/iStock-157531192_2022-09-20-005553_qwkt.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/iStock-157531192_2022-09-20-005553_qwkt.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/iStock-157531192_2022-09-20-005553_qwkt.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/iStock-157531192_2022-09-20-005553_qwkt.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/iStock-157531192_2022-09-20-005553_qwkt.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/iStock-157531192_2022-09-20-005553_qwkt.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/iStock-157531192_2022-09-20-005553_qwkt.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/iStock-157531192_2022-09-20-005553_qwkt.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/iStock-157531192_2022-09-20-005553_qwkt.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/iStock-157531192_2022-09-20-005553_qwkt.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"3072\":2048,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5616,\"originalImageHeight\":3744,\"placeholder\":\"/9j/4AAQSkZJRgABAQEA8ADwAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQAC/8QAIRAAAQIGAwEBAAAAAAAAAAAAAQMRAAIEBRMxEiGRQdH/xAAXAQADAQAAAAAAAAAAAAAAAAAAAQQF/8QAGxEAAgMBAQEAAAAAAAAAAAAAAAEDERICBDH/2gAMAwEAAhEDEQA/AEUrkrgSVmlqQFGbkT9I/Yw+o/TbWmXajr4SlxqhXYQnU4sZn5h+mJ35DUfpxenYLqO6aGVwMcoYM+o2GRGN3JYHWOXr2AR//9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#e6a813\",\"#292219\",\"#e1e0d4\",\"#8c5018\",\"#fbde07\"],\"lightness\":44,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138742,142509,1,'NWO’s library','2022-09-20 01:49:00','2022-09-20 01:49:00','266d7c05-000a-4659-b94b-040fae0035ef',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h3> Bruce’s pick </h3> <br />\\n<b>Book title: </b> Taste: My Life Through Food<br />\\n<b>Author: </b> Stanley Tucci <br />\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> <br />\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'THE WAYS BRANDS MAKE OR BREAK BUSINESS OUTCOMES','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138744,142511,1,'NWO’s library','2022-09-20 01:49:14','2022-09-20 01:49:14','98b6e9ec-dca1-4d0a-9a5f-bfee8c3df751',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h5> Bruce’s pick </h5> <br />\\n<b>Book title: </b> Taste: My Life Through Food<br />\\n<b>Author: </b> Stanley Tucci <br />\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> <br />\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'THE WAYS BRANDS MAKE OR BREAK BUSINESS OUTCOMES','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138746,142513,1,'NWO’s library','2022-09-20 01:49:24','2022-09-20 01:49:24','ec06a6cd-b56a-44ee-bbb6-563ad8df61b3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h5> Bruce’s pick </h5> \\n<b>Book title: </b> Taste: My Life Through Food<br />\\n<b>Author: </b> Stanley Tucci <br />\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> <br />\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'THE WAYS BRANDS MAKE OR BREAK BUSINESS OUTCOMES','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138748,142515,1,'NWO’s library','2022-09-20 01:49:40','2022-09-20 01:49:40','adb3c409-e182-4807-bcea-c9a841ab098d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<b>Book title: </b> Taste: My Life Through Food<br />\\n<b>Author: </b> Stanley Tucci <br />\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> <br />\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'THE WAYS BRANDS MAKE OR BREAK BUSINESS OUTCOMES','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138750,142517,1,'NWO’s library','2022-09-20 01:51:14','2022-09-20 01:51:14','59c613fd-b4c0-4b8d-8cfc-6319d6d9d9a0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<b>Book title: </b> Taste: My Life Through Food<br />\\n<b>Author: </b> Stanley Tucci <br />\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> <br />\\n\\n<h6> Jo’s pick </h6> \\n<b>Book title: </b> A Little Life<br />\\n<b>Author: </b> Hanya Yanagihara <br />\\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a> <br />\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'THE WAYS BRANDS MAKE OR BREAK BUSINESS OUTCOMES','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138752,142519,1,'NWO’s library','2022-09-20 01:51:52','2022-09-20 01:51:52','5e988365-f4ee-4aa3-9b44-fdf25349ae77',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<br> <b>Book title: </b> Taste: My Life Through Food</br>\\n<br><b>Author: </b> Stanley Tucci </br>\\n<br>Find it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> </br>\\n\\n<h6> Jo’s pick </h6> \\n<b>Book title: </b> A Little Life<br />\\n<b>Author: </b> Hanya Yanagihara <br />\\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a> <br />\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'THE WAYS BRANDS MAKE OR BREAK BUSINESS OUTCOMES','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138754,142521,1,'NWO’s library','2022-09-20 01:52:15','2022-09-20 01:52:15','25fa7f01-9273-452f-9872-47247fa645ff',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n <b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> \\n\\n<h6> Jo’s pick </h6> \\n<b>Book title: </b> A Little Life<br />\\n<b>Author: </b> Hanya Yanagihara <br />\\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a> <br />\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'THE WAYS BRANDS MAKE OR BREAK BUSINESS OUTCOMES','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138756,142523,1,'NWO’s library','2022-09-20 01:52:38','2022-09-20 01:52:38','d2fd7f89-70ed-41f2-a1f4-4d37459f07fd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> \\n\\n<h6> Jo’s pick </h6> \\n<b>Book title: </b> A Little Life\\n<b>Author: </b> Hanya Yanagihara \\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'THE WAYS BRANDS MAKE OR BREAK BUSINESS OUTCOMES','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138758,142525,1,'NWO’s library','2022-09-20 01:52:56','2022-09-20 01:52:56','12cc9bd4-08a5-45de-a3ae-77a3df9424c6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h7> Bruce’s pick </h7> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> \\n\\n<h7> Jo’s pick </h7> \\n<b>Book title: </b> A Little Life\\n<b>Author: </b> Hanya Yanagihara \\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'THE WAYS BRANDS MAKE OR BREAK BUSINESS OUTCOMES','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138760,142527,1,'NWO’s library','2022-09-20 01:53:15','2022-09-20 01:53:15','20ef6635-7f16-44a4-88da-3b9cb6b08111',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h5> Bruce’s pick </h5> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> \\n\\n<h5> Jo’s pick </h5> \\n<b>Book title: </b> A Little Life\\n<b>Author: </b> Hanya Yanagihara \\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'THE WAYS BRANDS MAKE OR BREAK BUSINESS OUTCOMES','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138762,142529,1,'NWO’s library','2022-09-20 01:55:16','2022-09-20 01:55:16','e23a675c-3069-4bbb-b631-01faa309c3a2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h5> Bruce’s pick </h5> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> \\n\\n<h5> Jo’s pick </h5> \\n<b>Book title: </b> A Little Life\\n<b>Author: </b> Hanya Yanagihara \\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a>\\n\\n<h5> Kimi’s pick </h5> \\n<b>Book title: </b> Johnno\\n<b>Author: </b> David Malouf  \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'THE WAYS BRANDS MAKE OR BREAK BUSINESS OUTCOMES','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138764,142531,1,'NWO’s library','2022-09-20 01:55:43','2022-09-20 01:55:43','ac2972c1-a65c-4ce4-886d-90505ab4a1ed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> \\n\\n<h6> Jo’s pick </h6> \\n<b>Book title: </b> A Little Life\\n<b>Author: </b> Hanya Yanagihara \\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a>\\n\\n<h6> Kimi’s pick </h6> \\n<b>Book title: </b> Johnno\\n<b>Author: </b> David Malouf  \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'THE WAYS BRANDS MAKE OR BREAK BUSINESS OUTCOMES','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138766,142533,1,'NWO’s library','2022-09-20 01:58:51','2022-09-20 01:58:51','e07c33a9-556e-4cc0-a03e-4069cdd55f50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> \\n\\n<h6> Jo’s pick </h6> \\n<b>Book title: </b> A Little Life\\n<b>Author: </b> Hanya Yanagihara \\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a>\\n\\n<h6> Kimi’s pick </h6> \\n<b>Book title: </b> Johnno\\n<b>Author: </b> David Malouf  \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> here </a>\\n\\n<h6> Bree’s pick </h6> \\n<b>Book title: </b> Growing up Queer in Australia\\n<b>Author: </b> Benjamin Law  \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> here </a>\\n\\n<h6> Bree’s pick </h6> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'THE WAYS BRANDS MAKE OR BREAK BUSINESS OUTCOMES','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138768,142535,1,'NWO’s library','2022-09-20 01:59:51','2022-09-20 01:59:51','56809349-a444-4ebc-8c01-3a1fd1c26429',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> \\n\\n<h6> Jo’s pick </h6> \\n<b>Book title: </b> A Little Life\\n<b>Author: </b> Hanya Yanagihara \\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a>\\n\\n<h6>  Kimi’s pick </h6> \\n<b>Book title: </b> Johnno\\n<b>Author: </b> David Malouf \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> here </a>\\n\\n<h6> Bree’s pick </h6> \\n<b>Book title: </b> Growing up Queer in Australia\\n<b>Author: </b> Benjamin Law  \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> here </a>\\n\\n<h6> Bree’s pick </h6> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'THE WAYS BRANDS MAKE OR BREAK BUSINESS OUTCOMES','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138770,142537,1,'NWO’s library','2022-09-20 02:00:45','2022-09-20 02:00:45','e0d57fb5-fe86-4b15-948f-0f3915652c2c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> \\n\\n<h6> Jo’s pick </h6> \\n<b>Book title: </b> A Little Life\\n<b>Author: </b> Hanya Yanagihara \\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a>\\n\\n<h6>  Kimi’s pick </h6> \\n<b>Book title: </b> Johnno\\n<b>Author: </b> David Malouf \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> here </a>\\n\\n<h6> Bree’s pick </h6> \\n<b>Book title: </b> Taste: Growing up Queer in Australia\\n<b>Author: </b> Benjamin Law\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'THE WAYS BRANDS MAKE OR BREAK BUSINESS OUTCOMES','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138773,142540,1,'NWO’s library','2022-09-20 02:02:56','2022-09-20 02:02:56','459b7e17-f189-4e97-8ed1-7dff4eaf4d2d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> \\n\\n<h6> Jo’s pick </h6> \\n<b>Book title: </b> A Little Life\\n<b>Author: </b> Hanya Yanagihara \\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a>\\n\\n<h6>  Kimi’s pick </h6> \\n<b>Book title: </b> Johnno\\n<b>Author: </b> David Malouf \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> here </a>\\n\\n<h6> Bree’s pick </h6> \\n<b>Book title: </b> Taste: Growing up Queer in Australia\\n<b>Author: </b> Benjamin Law\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-30JPUv4VRB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142539\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Tim’s pick </h6> \\n<b>Book title: </b> Bullet Train\\n<b>Author: </b> Kotaro Isaka\\nFind it <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'THE WAYS BRANDS MAKE OR BREAK BUSINESS OUTCOMES','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138775,142542,1,'NWO’s library','2022-09-20 02:03:48','2022-09-20 02:03:48','f46a8bd2-0668-47a7-abc9-d364f135f41d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> \\n\\n<h6> Jo’s pick </h6> \\n<b>Book title: </b> A Little Life\\n<b>Author: </b> Hanya Yanagihara \\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a>\\n\\n<h6>  Kimi’s pick </h6> \\n<b>Book title: </b> Johnno\\n<b>Author: </b> David Malouf \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> here </a>\\n\\n<h6> Bree’s pick </h6> \\n<b>Book title: </b> Taste: Growing up Queer in Australia\\n<b>Author: </b> Benjamin Law\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-30JPUv4VRB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142539\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Tim’s pick </h6> \\n<b>Book title: </b> Bullet Train\\n<b>Author: </b> Kotaro Isaka\\nFind it <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> here </a>\\n\\n<h6> Will’s pick </h6> \\n<b>Book title: </b> A Promised Land\\n<b>Author: </b> Barack Obama\\nFind it <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'THE WAYS BRANDS MAKE OR BREAK BUSINESS OUTCOMES','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138777,142544,1,'NWO’s library','2022-09-20 02:06:46','2022-09-20 02:06:46','63628e5f-8dd9-4533-abc1-29eb7c3e4ebd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> \\n\\n<h6> Jo’s pick </h6> \\n<b>Book title: </b> A Little Life\\n<b>Author: </b> Hanya Yanagihara \\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a>\\n\\n<h6>  Kimi’s pick </h6> \\n<b>Book title: </b> Johnno\\n<b>Author: </b> David Malouf \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> here </a>\\n\\n<h6> Bree’s pick </h6> \\n<b>Book title: </b> Taste: Growing up Queer in Australia\\n<b>Author: </b> Benjamin Law\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-30JPUv4VRB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142539\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Tim’s pick </h6> \\n<b>Book title: </b> Bullet Train\\n<b>Author: </b> Kotaro Isaka\\nFind it <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> here </a>\\n\\n<h6> Will’s pick </h6> \\n<b>Book title: </b> A Promised Land\\n<b>Author: </b> Barack Obama\\nFind it <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> here </a>\\n\\n<h6> Bec’s pick </h6> \\n<b>Book title: </b> The Queen of Paris: A Novel of Coco Chanel \\n<b>Author: </b> Pamela Binnings Ewan\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> here </a>\\n\\n<h6> Liam’s pick </h6> \\n<b>Book title: </b> The Life\\n<b>Author: </b> Malcolm Knox\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> here </a>\\n\\n<h6> Marnie’s pick </h6> \\n<b>Book title: </b> Hunt, Gather, Parent\\n<b>Author: </b> Michaeleen Doucleff\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'THE WAYS BRANDS MAKE OR BREAK BUSINESS OUTCOMES','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138779,142546,1,'NWO’s library','2022-09-20 02:06:58','2022-09-20 02:06:58','091d6471-373a-4b51-8f8a-235f777d91f3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> \\n\\n<h6> Jo’s pick </h6> \\n<b>Book title: </b> A Little Life\\n<b>Author: </b> Hanya Yanagihara \\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a>\\n\\n<h6>  Kimi’s pick </h6> \\n<b>Book title: </b> Johnno\\n<b>Author: </b> David Malouf \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> here </a>\\n\\n<h6> Bree’s pick </h6> \\n<b>Book title: </b> Taste: Growing up Queer in Australia\\n<b>Author: </b> Benjamin Law\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-30JPUv4VRB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142539\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Tim’s pick </h6> \\n<b>Book title: </b> Bullet Train\\n<b>Author: </b> Kotaro Isaka\\nFind it <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> here </a>\\n\\n<h6> Will’s pick </h6> \\n<b>Book title: </b> A Promised Land\\n<b>Author: </b> Barack Obama\\nFind it <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> here </a>\\n\\n<h6> Bec’s pick </h6> \\n<b>Book title: </b> The Queen of Paris: A Novel of Coco Chanel \\n<b>Author: </b> Pamela Binnings Ewan\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> here </a>\\n\\n<h6> Liam’s pick </h6> \\n<b>Book title: </b> The Life\\n<b>Author: </b> Malcolm Knox\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> here </a>\\n\\n<h6> Marnie’s pick </h6> \\n<b>Book title: </b> Hunt, Gather, Parent\\n<b>Author: </b> Michaeleen Doucleff\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'THE WAYS BRANDS MAKE OR BREAK BUSINESS OUTCOMES','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138781,142548,1,'NWO’s library','2022-09-20 02:07:21','2022-09-20 02:07:21','1e3f687b-b2cf-45fa-8d68-8668fd6f5b4d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> \\n\\n<h6> Jo’s pick </h6> \\n<b>Book title: </b> A Little Life\\n<b>Author: </b> Hanya Yanagihara \\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a>\\n\\n<h6>  Kimi’s pick </h6> \\n<b>Book title: </b> Johnno\\n<b>Author: </b> David Malouf \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> here </a>\\n\\n<h6> Bree’s pick </h6> \\n<b>Book title: </b> Taste: Growing up Queer in Australia\\n<b>Author: </b> Benjamin Law\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-30JPUv4VRB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142539\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Tim’s pick </h6> \\n<b>Book title: </b> Bullet Train\\n<b>Author: </b> Kotaro Isaka\\nFind it <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> here </a>\\n\\n<h6> Will’s pick </h6> \\n<b>Book title: </b> A Promised Land\\n<b>Author: </b> Barack Obama\\nFind it <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> here </a>\\n\\n<h6> Bec’s pick </h6> \\n<b>Book title: </b> The Queen of Paris: A Novel of Coco Chanel \\n<b>Author: </b> Pamela Binnings Ewan\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> here </a>\\n\\n<h6> Liam’s pick </h6> \\n<b>Book title: </b> The Life\\n<b>Author: </b> Malcolm Knox\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> here </a>\\n\\n<h6> Marnie’s pick </h6> \\n<b>Book title: </b> Hunt, Gather, Parent\\n<b>Author: </b> Michaeleen Doucleff\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'THE WAYS BRANDS MAKE OR BREAK BUSINESS OUTCOMES','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138783,142550,1,'NWO’s library','2022-09-20 02:07:38','2022-09-20 02:07:38','ff3a59a5-387f-42a5-b111-0d39cac9e997',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> \\n\\n<h6> Jo’s pick </h6> \\n<b>Book title: </b> A Little Life\\n<b>Author: </b> Hanya Yanagihara \\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a>\\n\\n<h6>  Kimi’s pick </h6> \\n<b>Book title: </b> Johnno\\n<b>Author: </b> David Malouf \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> here </a>\\n\\n<h6> Bree’s pick </h6> \\n<b>Book title: </b> Taste: Growing up Queer in Australia\\n<b>Author: </b> Benjamin Law\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-30JPUv4VRB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142539\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Tim’s pick </h6> \\n<b>Book title: </b> Bullet Train\\n<b>Author: </b> Kotaro Isaka\\nFind it <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> here </a>\\n\\n<h6> Will’s pick </h6> \\n<b>Book title: </b> A Promised Land\\n<b>Author: </b> Barack Obama\\nFind it <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> here </a>\\n\\n<h6> Bec’s pick </h6> \\n<b>Book title: </b> The Queen of Paris: A Novel of Coco Chanel \\n<b>Author: </b> Pamela Binnings Ewan\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> here </a>\\n\\n<h6> Liam’s pick </h6> \\n<b>Book title: </b> The Life\\n<b>Author: </b> Malcolm Knox\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> here </a>\\n\\n<h6> Marnie’s pick </h6> \\n<b>Book title: </b> Hunt, Gather, Parent\\n<b>Author: </b> Michaeleen Doucleff\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3TxZrn3Uej\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'THE WAYS BRANDS MAKE OR BREAK BUSINESS OUTCOMES','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138785,142552,1,'NWO’s library','2022-09-20 02:59:40','2022-09-20 02:59:40','3b840e1e-1597-4c7e-aefb-7783f0d9e829',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> \\n\\n<h6> Jo’s pick </h6> \\n<b>Book title: </b> A Little Life\\n<b>Author: </b> Hanya Yanagihara \\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a>\\n\\n<h6>  Kimi’s pick </h6> \\n<b>Book title: </b> Johnno\\n<b>Author: </b> David Malouf \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> here </a>\\n\\n<h6> Bree’s pick </h6> \\n<b>Book title: </b> Taste: Growing up Queer in Australia\\n<b>Author: </b> Benjamin Law\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-30JPUv4VRB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142539\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Tim’s pick </h6> \\n<b>Book title: </b> Bullet Train\\n<b>Author: </b> Kotaro Isaka\\nFind it <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> here </a>\\n\\n<h6> Will’s pick </h6> \\n<b>Book title: </b> A Promised Land\\n<b>Author: </b> Barack Obama\\nFind it <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> here </a>\\n\\n<h6> Bec’s pick </h6> \\n<b>Book title: </b> The Queen of Paris: A Novel of Coco Chanel \\n<b>Author: </b> Pamela Binnings Ewan\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> here </a>\\n\\n<h6> Liam’s pick </h6> \\n<b>Book title: </b> The Life\\n<b>Author: </b> Malcolm Knox\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> here </a>\\n\\n<h6> Marnie’s pick </h6> \\n<b>Book title: </b> Hunt, Gather, Parent\\n<b>Author: </b> Michaeleen Doucleff\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3TxZrn3Uej\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NWO’s library','INSERT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138787,142554,1,'NWO’s library','2022-09-20 03:01:15','2022-09-20 03:01:15','fa79b84a-4328-4ea1-acab-2533c709cc16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> \\n\\n<h6> Jo’s pick </h6> \\n<b>Book title: </b> A Little Life\\n<b>Author: </b> Hanya Yanagihara \\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a>\\n\\n<h6>  Kimi’s pick </h6> \\n<b>Book title: </b> Johnno\\n<b>Author: </b> David Malouf \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> here </a>\\n\\n<h6> Bree’s pick </h6> \\n<b>Book title: </b> Taste: Growing up Queer in Australia\\n<b>Author: </b> Benjamin Law\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> here </a>\\n\\n<h6> Suz\' pick </h6> \\n<b>Book title: </b> Thinking, Fast and Slow\\n<b>Author: </b> Daniel Kahneman\\nFind it <a href=\\\"https://www.goodreads.com/book/show/11468377-thinking-fast-and-slow\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-30JPUv4VRB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142539\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Tim’s pick </h6> \\n<b>Book title: </b> Bullet Train\\n<b>Author: </b> Kotaro Isaka\\nFind it <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> here </a>\\n\\n<h6> Will’s pick </h6> \\n<b>Book title: </b> A Promised Land\\n<b>Author: </b> Barack Obama\\nFind it <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> here </a>\\n\\n<h6> Bec’s pick </h6> \\n<b>Book title: </b> The Queen of Paris: A Novel of Coco Chanel \\n<b>Author: </b> Pamela Binnings Ewan\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> here </a>\\n\\n<h6> Liam’s pick </h6> \\n<b>Book title: </b> The Life\\n<b>Author: </b> Malcolm Knox\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> here </a>\\n\\n<h6> Marnie’s pick </h6> \\n<b>Book title: </b> Hunt, Gather, Parent\\n<b>Author: </b> Michaeleen Doucleff\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3TxZrn3Uej\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NWO’s library','INSERT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138788,142555,1,'NWO’s library','2022-09-20 03:09:00','2022-09-20 03:09:00','2e7a0fd8-a65d-42a6-ac30-dc01eaf4d0ce',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> \\n\\n<h6> Jo’s pick </h6> \\n<b>Book title: </b> A Little Life\\n<b>Author: </b> Hanya Yanagihara \\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a>\\n\\n<h6>  Kimi’s pick </h6> \\n<b>Book title: </b> Johnno\\n<b>Author: </b> David Malouf \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> here </a>\\n\\n<h6> Bree’s pick </h6> \\n<b>Book title: </b> Taste: Growing up Queer in Australia\\n<b>Author: </b> Benjamin Law\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-30JPUv4VRB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142539\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Tim’s pick </h6> \\n<b>Book title: </b> Bullet Train\\n<b>Author: </b> Kotaro Isaka\\nFind it <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> here </a>\\n\\n<h6> Will’s pick </h6> \\n<b>Book title: </b> A Promised Land\\n<b>Author: </b> Barack Obama\\nFind it <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> here </a>\\n\\n<h6> Bec’s pick </h6> \\n<b>Book title: </b> The Queen of Paris: A Novel of Coco Chanel \\n<b>Author: </b> Pamela Binnings Ewan\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> here </a>\\n\\n<h6> Liam’s pick </h6> \\n<b>Book title: </b> The Life\\n<b>Author: </b> Malcolm Knox\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> here </a>\\n\\n<h6> Marnie’s pick </h6> \\n<b>Book title: </b> Hunt, Gather, Parent\\n<b>Author: </b> Michaeleen Doucleff\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3TxZrn3Uej\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NWO’s library','INSERT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138789,142556,1,'NWO’s library','2022-09-20 03:10:06','2022-09-20 03:10:06','432c05b8-3460-4770-83b0-d294bb556ca3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> \\n\\n<h6> Jo’s pick </h6> \\n<b>Book title: </b> A Little Life\\n<b>Author: </b> Hanya Yanagihara \\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a>\\n\\n<h6>  Kimi’s pick </h6> \\n<b>Book title: </b> Johnno\\n<b>Author: </b> David Malouf \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> here </a>\\n\\n<h6> Bree’s pick </h6> \\n<b>Book title: </b> Taste: Growing up Queer in Australia\\n<b>Author: </b> Benjamin Law\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-30JPUv4VRB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142539\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Tim’s pick </h6> \\n<b>Book title: </b> Bullet Train\\n<b>Author: </b> Kotaro Isaka\\nFind it <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> here </a>\\n\\n<h6> Will’s pick </h6> \\n<b>Book title: </b> A Promised Land\\n<b>Author: </b> Barack Obama\\nFind it <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> here </a>\\n\\n<h6> Bec’s pick </h6> \\n<b>Book title: </b> The Queen of Paris: A Novel of Coco Chanel \\n<b>Author: </b> Pamela Binnings Ewan\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> here </a>\\n\\n<h6> Liam’s pick </h6> \\n<b>Book title: </b> The Life\\n<b>Author: </b> Malcolm Knox\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> here </a>\\n\\n<h6> Marnie’s pick </h6> \\n<b>Book title: </b> Hunt, Gather, Parent\\n<b>Author: </b> Michaeleen Doucleff\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3TxZrn3Uej\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NWO’s library','INSERT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138790,142557,1,'NWO’s library','2022-09-20 03:10:24','2022-09-20 03:10:24','ccc70dea-dc39-424c-b80a-86a43aef324e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> \\n\\n<h6> Jo’s pick </h6> \\n<b>Book title: </b> A Little Life\\n<b>Author: </b> Hanya Yanagihara \\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a>\\n\\n<h6>  Kimi’s pick </h6> \\n<b>Book title: </b> Johnno\\n<b>Author: </b> David Malouf \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> here </a>\\n\\n<h6> Bree’s pick </h6> \\n<b>Book title: </b> Taste: Growing up Queer in Australia\\n<b>Author: </b> Benjamin Law\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-30JPUv4VRB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142539\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Tim’s pick </h6> \\n<b>Book title: </b> Bullet Train\\n<b>Author: </b> Kotaro Isaka\\nFind it <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> here </a>\\n\\n<h6> Will’s pick </h6> \\n<b>Book title: </b> A Promised Land\\n<b>Author: </b> Barack Obama\\nFind it <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> here </a>\\n\\n<h6> Bec’s pick </h6> \\n<b>Book title: </b> The Queen of Paris: A Novel of Coco Chanel \\n<b>Author: </b> Pamela Binnings Ewan\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> here </a>\\n\\n<h6> Liam’s pick </h6> \\n<b>Book title: </b> The Life\\n<b>Author: </b> Malcolm Knox\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> here </a>\\n\\n<h6> Marnie’s pick </h6> \\n<b>Book title: </b> Hunt, Gather, Parent\\n<b>Author: </b> Michaeleen Doucleff\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3TxZrn3Uej\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NWO’s library','INSERT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138791,142558,1,'NWO’s library','2022-09-20 03:12:51','2022-09-20 03:12:51','e9cd5c1e-9970-47a7-b053-abbb6d24a94d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> \\n\\n<h6> Jo’s pick </h6> \\n<b>Book title: </b> A Little Life\\n<b>Author: </b> Hanya Yanagihara \\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a>\\n\\n<h6>  Kimi’s pick </h6> \\n<b>Book title: </b> Johnno\\n<b>Author: </b> David Malouf \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> here </a>\\n\\n<h6> Bree’s pick </h6> \\n<b>Book title: </b> Taste: Growing up Queer in Australia\\n<b>Author: </b> Benjamin Law\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-30JPUv4VRB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142539\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Tim’s pick </h6> \\n<b>Book title: </b> Bullet Train\\n<b>Author: </b> Kotaro Isaka\\nFind it <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> here </a>\\n\\n<h6> Will’s pick </h6> \\n<b>Book title: </b> A Promised Land\\n<b>Author: </b> Barack Obama\\nFind it <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> here </a>\\n\\n<h6> Bec’s pick </h6> \\n<b>Book title: </b> The Queen of Paris: A Novel of Coco Chanel \\n<b>Author: </b> Pamela Binnings Ewan\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> here </a>\\n\\n<h6> Liam’s pick </h6> \\n<b>Book title: </b> The Life\\n<b>Author: </b> Malcolm Knox\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> here </a>\\n\\n<h6> Marnie’s pick </h6> \\n<b>Book title: </b> Hunt, Gather, Parent\\n<b>Author: </b> Michaeleen Doucleff\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3TxZrn3Uej\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NWO’s library','INSERT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138793,142560,1,'NWO’s library','2022-09-20 03:13:29','2022-09-20 03:13:29','fd7f8623-fe09-4d7d-9a4e-6ba27ef0d3d2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> \\n\\n<h6> Jo’s pick </h6> \\n<b>Book title: </b> A Little Life\\n<b>Author: </b> Hanya Yanagihara \\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a>\\n\\n<h6>  Kimi’s pick </h6> \\n<b>Book title: </b> Johnno\\n<b>Author: </b> David Malouf \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> here </a>\\n\\n<h6> Bree’s pick </h6> \\n<b>Book title: </b> Growing up Queer in Australia\\n<b>Author: </b> Benjamin Law\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-30JPUv4VRB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142539\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Tim’s pick </h6> \\n<b>Book title: </b> Bullet Train\\n<b>Author: </b> Kotaro Isaka\\nFind it <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> here </a>\\n\\n<h6> Will’s pick </h6> \\n<b>Book title: </b> A Promised Land\\n<b>Author: </b> Barack Obama\\nFind it <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> here </a>\\n\\n<h6> Bec’s pick </h6> \\n<b>Book title: </b> The Queen of Paris: A Novel of Coco Chanel \\n<b>Author: </b> Pamela Binnings Ewan\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> here </a>\\n\\n<h6> Liam’s pick </h6> \\n<b>Book title: </b> The Life\\n<b>Author: </b> Malcolm Knox\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> here </a>\\n\\n<h6> Marnie’s pick </h6> \\n<b>Book title: </b> Hunt, Gather, Parent\\n<b>Author: </b> Michaeleen Doucleff\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3TxZrn3Uej\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NWO’s library','INSERT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138797,142564,1,'Untitled Artwork 10','2022-09-20 03:29:37','2022-09-20 03:29:37','a2df460f-09c1-4b1c-969b-59a175dc9bfc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Untitled_Artwork-10.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Untitled_Artwork-10.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Untitled_Artwork-10.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Untitled_Artwork-10.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Untitled_Artwork-10.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Untitled_Artwork-10.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Untitled_Artwork-10.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Untitled_Artwork-10.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1500,\"originalImageHeight\":1500,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADASIAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAAECBf/EABoQAAIDAQEAAAAAAAAAAAAAAAECAAMRITH/xAAVAQEBAAAAAAAAAAAAAAAAAAAEBf/EABURAQEAAAAAAAAAAAAAAAAAAAAh/9oADAMBAAIRAxEAPwDJawAnnka2BjmSWrJ3D7BUYMDvBKNCj//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#3362a0\",\"#102850\",\"#1e4173\",\"#133267\",\"#144885\"],\"lightness\":29,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138799,142566,1,'Untitled Artwork 10','2022-09-20 03:29:48','2022-09-20 03:29:48','c04cdf00-a834-41b3-9428-c9b6b8ac527c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Untitled_Artwork-10_2022-09-20-032947_cwfz.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Untitled_Artwork-10_2022-09-20-032947_cwfz.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Untitled_Artwork-10_2022-09-20-032947_cwfz.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Untitled_Artwork-10_2022-09-20-032947_cwfz.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Untitled_Artwork-10_2022-09-20-032947_cwfz.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Untitled_Artwork-10_2022-09-20-032947_cwfz.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Untitled_Artwork-10_2022-09-20-032947_cwfz.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Untitled_Artwork-10_2022-09-20-032947_cwfz.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1500,\"originalImageHeight\":1500,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADASIAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAAECBf/EABoQAAIDAQEAAAAAAAAAAAAAAAECAAMRITH/xAAVAQEBAAAAAAAAAAAAAAAAAAAEBf/EABURAQEAAAAAAAAAAAAAAAAAAAAh/9oADAMBAAIRAxEAPwDJawAnnka2BjmSWrJ3D7BUYMDvBKNCj//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#3362a0\",\"#102850\",\"#1e4173\",\"#133267\",\"#144885\"],\"lightness\":29,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138800,142567,1,'NWO’s library','2022-09-20 03:33:02','2022-09-20 03:33:02','6716f04a-4956-4ad0-a4b5-768000ce5c34',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> \\n\\n<h6> Jo’s pick </h6> \\n<b>Book title: </b> A Little Life\\n<b>Author: </b> Hanya Yanagihara \\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a>\\n\\n<h6>  Kimi’s pick </h6> \\n<b>Book title: </b> Johnno\\n<b>Author: </b> David Malouf \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> here </a>\\n\\n<h6> Bree’s pick </h6> \\n<b>Book title: </b> Growing up Queer in Australia\\n<b>Author: </b> Benjamin Law\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> here </a>\\n\\n<h6> Suz’s pick </h6> \\n<b>Book title: </b> Thinking, Fast and slow\\n<b>Author: </b> Daniel Kahneman\\nFind it <a href=\\\"https://www.goodreads.com/book/show/11468377-thinking-fast-and-slow\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-30JPUv4VRB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142539\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Tim’s pick </h6> \\n<b>Book title: </b> Bullet Train\\n<b>Author: </b> Kotaro Isaka\\nFind it <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> here </a>\\n\\n<h6> Will’s pick </h6> \\n<b>Book title: </b> A Promised Land\\n<b>Author: </b> Barack Obama\\nFind it <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> here </a>\\n\\n<h6> Bec’s pick </h6> \\n<b>Book title: </b> The Queen of Paris: A Novel of Coco Chanel \\n<b>Author: </b> Pamela Binnings Ewan\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> here </a>\\n\\n<h6> Liam’s pick </h6> \\n<b>Book title: </b> The Life\\n<b>Author: </b> Malcolm Knox\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> here </a>\\n\\n<h6> Marnie’s pick </h6> \\n<b>Book title: </b> Hunt, Gather, Parent\\n<b>Author: </b> Michaeleen Doucleff\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3TxZrn3Uej\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NWO’s library','INSERT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138802,142569,1,'NWO’s library','2022-09-20 03:33:36','2022-09-20 03:33:36','c70f5518-e9a6-45fc-8288-a80742a776ce',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wuqwO2xyh6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> \\n\\n<h6> Jo’s pick </h6> \\n<b>Book title: </b> A Little Life\\n<b>Author: </b> Hanya Yanagihara \\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a>\\n\\n<h6>  Kimi’s pick </h6> \\n<b>Book title: </b> Johnno\\n<b>Author: </b> David Malouf \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> here </a>\\n\\n<h6> Bree’s pick </h6> \\n<b>Book title: </b> Growing up Queer in Australia\\n<b>Author: </b> Benjamin Law\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> here </a>\\n\\n<h6> Suz’s pick </h6> \\n<b>Book title: </b> Thinking, Fast and slow\\n<b>Author: </b> Daniel Kahneman\\nFind it <a href=\\\"https://www.goodreads.com/book/show/11468377-thinking-fast-and-slow\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-30JPUv4VRB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142539\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Tim’s pick </h6> \\n<b>Book title: </b> Bullet Train\\n<b>Author: </b> Kotaro Isaka\\nFind it <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> here </a>\\n\\n<h6> Will’s pick </h6> \\n<b>Book title: </b> A Promised Land\\n<b>Author: </b> Barack Obama\\nFind it <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> here </a>\\n\\n<h6> Bec’s pick </h6> \\n<b>Book title: </b> The Queen of Paris: A Novel of Coco Chanel \\n<b>Author: </b> Pamela Binnings Ewan\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> here </a>\\n\\n<h6> Liam’s pick </h6> \\n<b>Book title: </b> The Life\\n<b>Author: </b> Malcolm Knox\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> here </a>\\n\\n<h6> Marnie’s pick </h6> \\n<b>Book title: </b> Hunt, Gather, Parent\\n<b>Author: </b> Michaeleen Doucleff\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3TxZrn3Uej\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NWO’s library','INSERT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138804,142571,1,'Meet marnie','2022-09-20 04:38:35','2022-09-20 04:38:35','7ddbf971-6e3b-4f69-8be9-55b2f2b2e071',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x768_crop_center-center_82_line/Meet-marnie.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1536_crop_center-center_82_line/Meet-marnie.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x640_crop_center-center_82_line/Meet-marnie.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1280_crop_center-center_82_line/Meet-marnie.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x512_crop_center-center_82_line/Meet-marnie.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1024_crop_center-center_82_line/Meet-marnie.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x384_crop_center-center_82_line/Meet-marnie.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x320_crop_center-center_82_line/Meet-marnie.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x768_crop_center-center_82_line/Meet-marnie.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1536_crop_center-center_82_line/Meet-marnie.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x640_crop_center-center_82_line/Meet-marnie.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1280_crop_center-center_82_line/Meet-marnie.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x512_crop_center-center_82_line/Meet-marnie.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1024_crop_center-center_82_line/Meet-marnie.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x384_crop_center-center_82_line/Meet-marnie.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x320_crop_center-center_82_line/Meet-marnie.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"3072\":1536,\"1280\":640,\"2560\":1280,\"1024\":512,\"2048\":1024,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":3072,\"originalImageHeight\":1536,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAIABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABQb/xAAgEAACAgEDBQAAAAAAAAAAAAACAwEEEQAFMhMhIjFR/8QAFQEBAQAAAAAAAAAAAAAAAAAAAAH/xAAWEQEBAQAAAAAAAAAAAAAAAAAAARH/2gAMAwEAAhEDEQA/ABrm8Lesz6hk5hRkvWI+Y0FYmw4XhWOt5THMeMds6u1H/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#b9bdc0\",\"#181918\",\"#4c4b4a\",\"#6a6e6f\",\"#5f5d5a\"],\"lightness\":41,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138805,142572,1,'Let us introduce ourselves','2022-09-20 04:39:11','2022-09-20 04:39:11','b3f41f56-3ceb-4531-81a5-becc99715a7f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VZ4Kn0jtVJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yxvb056NEZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer, so it’s her we can thank for many of our staff headshots. It’s an equal trade, because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. Their <b> music video for hit single \'Rapp\' </b> is one of our all-time favourites. https://www.youtube.com/watch?v=gc4XErDT84o\\n\\nBut two and a half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight, when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manasalu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Hanson on tour before riding off into the moonlight with Zac. \\n\\nBut the reality was a little less dreamy and a lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business, <b> Bare Pictures </b>. https://www.youtube.com/c/BarePictures/featured\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-caQw6bLp4J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141536\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138807,142574,1,'Let us introduce ourselves','2022-09-20 04:39:22','2022-09-20 04:39:22','dbdf8c15-a2fd-47f3-8a34-8df82e891b65',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VZ4Kn0jtVJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yxvb056NEZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer, so it’s her we can thank for many of our staff headshots. It’s an equal trade, because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. Their <b> music video for hit single \'Rapp\' </b> is one of our all-time favourites. https://www.youtube.com/watch?v=gc4XErDT84o\\n\\nBut two and a half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight, when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manasalu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Hanson on tour before riding off into the moonlight with Zac. \\n\\nBut the reality was a little less dreamy and a lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business, <b> Bare Pictures </b>. https://www.youtube.com/c/BarePictures/featured\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-caQw6bLp4J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141536\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138809,142576,1,'Let us introduce ourselves','2022-09-20 04:39:58','2022-09-20 04:39:58','2c7b380a-b66f-4e35-bb94-850a01a454d2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VZ4Kn0jtVJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yxvb056NEZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer, so it’s her we can thank for many of our staff headshots. It’s an equal trade, because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. Their <b> music video for hit single \'Rapp\' </b> is one of our all-time favourites. https://www.youtube.com/watch?v=gc4XErDT84o\\n\\nBut two and a half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight, when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manasalu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Hanson on tour before riding off into the moonlight with Zac. \\n\\nBut the reality was a little less dreamy and a lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business, <b> Bare Pictures </b>. https://www.youtube.com/c/BarePictures/featured\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-caQw6bLp4J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141536\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138811,142578,1,'Let us introduce ourselves','2022-09-20 04:40:51','2022-09-20 04:40:51','af3aeb5d-a09c-4703-b4ee-64fd3598cec9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VZ4Kn0jtVJ\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yxvb056NEZ\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer, so it’s her we can thank for many of our staff headshots. It’s an equal trade, because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. Their <b> music video for hit single \'Rapp\' </b> is one of our all-time favourites. https://www.youtube.com/watch?v=gc4XErDT84o\\n\\nBut two and a half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight, when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manasalu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Hanson on tour before riding off into the moonlight with Zac. \\n\\nBut the reality was a little less dreamy and a lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business, <b> Bare Pictures </b>. https://www.youtube.com/c/BarePictures/featured\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-caQw6bLp4J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141536\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138812,142579,1,'Let us introduce ourselves','2022-09-20 04:48:05','2022-09-20 04:48:05','d7c42545-5754-477d-b990-83f3285062d9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CXP6FGwfrb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer, so it’s her we can thank for many of our staff headshots. It’s an equal trade, because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two and a half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight, when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manasalu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Hanson on tour before riding off into the moonlight with Zac. \\n\\nBut the reality was a little less dreamy and a lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business, <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-caQw6bLp4J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141536\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138814,142581,1,'Let us introduce ourselves','2022-09-20 04:48:20','2022-09-20 04:48:20','9597f413-b9aa-45a0-9a73-9265befa6990',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CXP6FGwfrb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer, so it’s her we can thank for many of our staff headshots. It’s an equal trade, because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two and a half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight, when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manasalu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Hanson on tour before riding off into the moonlight with Zac. \\n\\nBut the reality was a little less dreamy and a lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business, <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-caQw6bLp4J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141536\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138815,142582,1,'NWO’s library','2022-09-20 05:03:15','2022-09-20 05:03:15','027d534a-96c6-462b-90c3-8aebc7295d90',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> \\n\\n<h6> Jo’s pick </h6> \\n<b>Book title: </b> A Little Life\\n<b>Author: </b> Hanya Yanagihara \\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a>\\n\\n<h6>  Kimi’s pick </h6> \\n<b>Book title: </b> Johnno\\n<b>Author: </b> David Malouf \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> here </a>\\n\\n<h6> Bree’s pick </h6> \\n<b>Book title: </b> Taste: Growing up Queer in Australia\\n<b>Author: </b> Benjamin Law\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-30JPUv4VRB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142539\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Tim’s pick </h6> \\n<b>Book title: </b> Bullet Train\\n<b>Author: </b> Kotaro Isaka\\nFind it <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> here </a>\\n\\n<h6> Will’s pick </h6> \\n<b>Book title: </b> A Promised Land\\n<b>Author: </b> Barack Obama\\nFind it <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> here </a>\\n\\n<h6> Bec’s pick </h6> \\n<b>Book title: </b> The Queen of Paris: A Novel of Coco Chanel \\n<b>Author: </b> Pamela Binnings Ewan\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> here </a>\\n\\n<h6> Liam’s pick </h6> \\n<b>Book title: </b> The Life\\n<b>Author: </b> Malcolm Knox\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> here </a>\\n\\n<h6> Marnie’s pick </h6> \\n<b>Book title: </b> Hunt, Gather, Parent\\n<b>Author: </b> Michaeleen Doucleff\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3TxZrn3Uej\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NWO’s library','INSERT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138817,142584,1,'Let us introduce ourselves','2022-09-20 05:03:44','2022-09-20 05:03:44','abf67c0f-8769-4e85-81b2-c0959e8c8188',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CXP6FGwfrb\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer, so it’s her we can thank for many of our staff headshots. It’s an equal trade, because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two and a half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight, when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manasalu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Hanson on tour before riding off into the moonlight with Zac. \\n\\nBut the reality was a little less dreamy and a lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business, <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-caQw6bLp4J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141536\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138818,142585,1,'Residential Tenancies Authority','2022-09-20 07:28:51','2022-09-20 07:28:51','3d637cce-7e43-40a4-b069-75266a8ab5ee',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Illustrating tenancy law changes',NULL,NULL,'We all know tenancy can be complicated, from any side of the relationship. So the Residential Tenancy Authority (RTA) has introduced new laws to give tenants, landlords and property managers more certainty and transparency around their tenancy arrangements. We helped the RTA produce four animated videos to serve as friendly reminders about the law changes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bc8O0czLTg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028657?h=758f0e7169&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Ending a tenancy\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SUpdyGgoHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The RTA needed to inform the public about rental reform changes coming into effect on 1 October 2022. With such a broad audience—renters, landlords and property managers—the RTA needed an explanatory tool that relayed the information in an easily digestible, engaging and inclusive way.\\nA collection of animated explainer videos was determined to be the best communication vehicle for reaching the audiences and providing the information.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-chZ81DIc8w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028691?h=ca954eece2&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Renting with pets\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PLy32UQvPs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The videos needed a friendly, informative tone that connected with a vast range of people. Aside from separating them by information topics, we also broke the videos down into sections that addressed each of the three key audiences individually—renters, then landlords, then property managers. The audiences were represented by a diverse and inclusive suite of illustrated characters.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oGsU7M7NF2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028774?h=8eb9622a43&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Summary\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oQ8wJZ93RN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Illustration was the real standout for this project. Our illustrative style helped us depict the emotion and shared experience of renting, from all sides of the tenancy relationship. The animation represented various age groups, ethnicities and occupations.\\nThe law changes are explained by friendly, engaging voice-overs that guide the videos.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YFRHfSDQGW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028736?h=a48681755c&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Repair order\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-sfiAs0GFwT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It was a pleasure to work with the team at RTA to help inform Queenslanders about the upcoming changes to renting laws. They’ve worked hard to make sure renting is fair for all and it was a privilege to be part of bringing this project to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138821,142588,1,'NWO’s library','2022-09-20 07:41:05','2022-09-20 07:41:05','a2a7d999-c56d-423a-8865-1c867450cd44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> \\n\\n<h6> Jo’s pick </h6> \\n<b>Book title: </b> A Little Life\\n<b>Author: </b> Hanya Yanagihara \\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a>\\n\\n<h6>  Kimi’s pick </h6> \\n<b>Book title: </b> Johnno\\n<b>Author: </b> David Malouf \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> here </a>\\n\\n<h6> Bree’s pick </h6> \\n<b>Book title: </b> Growing up Queer in Australia\\n<b>Author: </b> Benjamin Law\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-30JPUv4VRB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142539\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Tim’s pick </h6> \\n<b>Book title: </b> Bullet Train\\n<b>Author: </b> Kotaro Isaka\\nFind it <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> here </a>\\n\\n<h6> Will’s pick </h6> \\n<b>Book title: </b> A Promised Land\\n<b>Author: </b> Barack Obama\\nFind it <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> here </a>\\n\\n<h6> Bec’s pick </h6> \\n<b>Book title: </b> The Queen of Paris: A Novel of Coco Chanel \\n<b>Author: </b> Pamela Binnings Ewan\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> here </a>\\n\\n<h6> Liam’s pick </h6> \\n<b>Book title: </b> The Life\\n<b>Author: </b> Malcolm Knox\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3TxZrn3Uej\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8Zua9e4kWu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142587\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Andrew\'s pick </h6> \\n<b>Book title: </b> Boy Swallows Universe\\n<b>Author: </b> Trent Dalton\\nFind it <a href=\\\"https://www.goodreads.com/book/show/37558445-boy-swallows-universe\\\"> here </a>\\n\\n<h6> Suz\' pick </h6> \\n<b>Book title: </b> Thinking, Fast and Slow\\n<b>Author: </b> Daniel Kahneman\\nFind it <a href=\\\"https://www.goodreads.com/book/show/11468377-thinking-fast-and-slow\\\"> here </a>\\n\\n<h6> Marnie’s pick </h6> \\n<b>Book title: </b> Hunt, Gather, Parent\\n<b>Author: </b> Michaeleen Doucleff\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> here </a>\\n\\n<h6> Hazel\'s pick </h6> \\n<b>Book title: </b> Odd Dog Out\\n<b>Author: </b> Rob Bidulph\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/30762074\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NWO’s library','INSERT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138823,142590,1,'NWO’s library','2022-09-20 07:41:50','2022-09-20 07:41:50','839b482c-1673-4b8a-abe4-55044c0827e9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> \\n\\n<h6> Jo’s pick </h6> \\n<b>Book title: </b> A Little Life\\n<b>Author: </b> Hanya Yanagihara \\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a>\\n\\n<h6>  Kimi’s pick </h6> \\n<b>Book title: </b> Johnno\\n<b>Author: </b> David Malouf \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> here </a>\\n\\n<h6> Bree’s pick </h6> \\n<b>Book title: </b> Growing up Queer in Australia\\n<b>Author: </b> Benjamin Law\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-30JPUv4VRB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142539\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Tim’s pick </h6> \\n<b>Book title: </b> Bullet Train\\n<b>Author: </b> Kotaro Isaka\\nFind it <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> here </a>\\n\\n<h6> Will’s pick </h6> \\n<b>Book title: </b> A Promised Land\\n<b>Author: </b> Barack Obama\\nFind it <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> here </a>\\n\\n<h6> Bec’s pick </h6> \\n<b>Book title: </b> The Queen of Paris: A Novel of Coco Chanel \\n<b>Author: </b> Pamela Binnings Ewan\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> here </a>\\n\\n<h6> Liam’s pick </h6> \\n<b>Book title: </b> The Life\\n<b>Author: </b> Malcolm Knox\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3TxZrn3Uej\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8Zua9e4kWu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142587\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Andrew\'s pick </h6> \\n<b>Book title: </b> Boy Swallows Universe\\n<b>Author: </b> Trent Dalton\\nFind it <a href=\\\"https://www.goodreads.com/book/show/37558445-boy-swallows-universe\\\"> here </a>\\n\\n<h6> Suz\' pick </h6> \\n<b>Book title: </b> Thinking, Fast and Slow\\n<b>Author: </b> Daniel Kahneman\\nFind it <a href=\\\"https://www.goodreads.com/book/show/11468377-thinking-fast-and-slow\\\"> here </a>\\n\\n<h6> Marnie’s pick </h6> \\n<b>Book title: </b> Hunt, Gather, Parent\\n<b>Author: </b> Michaeleen Doucleff\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> here </a>\\n\\n<h6> Hazel\'s pick </h6> \\n<b>Book title: </b> Odd Dog Out\\n<b>Author: </b> Rob Bidulph\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/30762074\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tAgWmP7qVi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NWO’s library','INSERT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138825,142592,1,'NWO’s library','2022-09-20 07:42:30','2022-09-20 07:42:30','e157d3c3-c0e3-4484-8412-96ff60276d78',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> \\n\\n<h6> Jo’s pick </h6> \\n<b>Book title: </b> A Little Life\\n<b>Author: </b> Hanya Yanagihara \\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a>\\n\\n<h6>  Kimi’s pick </h6> \\n<b>Book title: </b> Johnno\\n<b>Author: </b> David Malouf \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> here </a>\\n\\n<h6> Bree’s pick </h6> \\n<b>Book title: </b> Growing up Queer in Australia\\n<b>Author: </b> Benjamin Law\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-30JPUv4VRB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142539\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Tim’s pick </h6> \\n<b>Book title: </b> Bullet Train\\n<b>Author: </b> Kotaro Isaka\\nFind it <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> here </a>\\n\\n<h6> Will’s pick </h6> \\n<b>Book title: </b> A Promised Land\\n<b>Author: </b> Barack Obama\\nFind it <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> here </a>\\n\\n<h6> Bec’s pick </h6> \\n<b>Book title: </b> The Queen of Paris: A Novel of Coco Chanel \\n<b>Author: </b> Pamela Binnings Ewan\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> here </a>\\n\\n<h6> Liam’s pick </h6> \\n<b>Book title: </b> The Life\\n<b>Author: </b> Malcolm Knox\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3TxZrn3Uej\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8Zua9e4kWu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142587\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Andrew\'s pick </h6> \\n<b>Book title: </b> Boy Swallows Universe\\n<b>Author: </b> Trent Dalton\\nFind it <a href=\\\"https://www.goodreads.com/book/show/37558445-boy-swallows-universe\\\"> here </a>\\n\\n<h6> Suz\' pick </h6> \\n<b>Book title: </b> Thinking, Fast and Slow\\n<b>Author: </b> Daniel Kahneman\\nFind it <a href=\\\"https://www.goodreads.com/book/show/11468377-thinking-fast-and-slow\\\"> here </a>\\n\\n<h6> Marnie’s pick </h6> \\n<b>Book title: </b> Hunt, Gather, Parent\\n<b>Author: </b> Michaeleen Doucleff\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> here </a>\\n\\n<h6> Hazel\'s pick </h6> \\n<b>Book title: </b> Odd Dog Out\\n<b>Author: </b> Rob Bidulph\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/30762074\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tAgWmP7qVi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NWO’s library','INSERT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138827,142594,1,'NWO’s library','2022-09-20 21:44:14','2022-09-20 21:44:14','e972959e-14f2-400b-948e-bff3d7731b00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> \\n\\n<h6> Jo’s pick </h6> \\n<b>Book title: </b> A Little Life\\n<b>Author: </b> Hanya Yanagihara \\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a>\\n\\n<h6>  Kimi’s pick </h6> \\n<b>Book title: </b> Johnno\\n<b>Author: </b> David Malouf \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> here </a>\\n\\n<h6> Bree’s pick </h6> \\n<b>Book title: </b> Growing up Queer in Australia\\n<b>Author: </b> Benjamin Law\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-30JPUv4VRB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142539\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Tim’s pick </h6> \\n<b>Book title: </b> Bullet Train\\n<b>Author: </b> Kotaro Isaka\\nFind it <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> here </a>\\n\\n<h6> Will’s pick </h6> \\n<b>Book title: </b> A Promised Land\\n<b>Author: </b> Barack Obama\\nFind it <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> here </a>\\n\\n<h6> Bec’s pick </h6> \\n<b>Book title: </b> The Queen of Paris: A Novel of Coco Chanel \\n<b>Author: </b> Pamela Binnings Ewan\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> here </a>\\n\\n<h6> Liam’s pick </h6> \\n<b>Book title: </b> The Life\\n<b>Author: </b> Malcolm Knox\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3TxZrn3Uej\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8Zua9e4kWu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142587\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Andrew\'s pick </h6> \\n<b>Book title: </b> Boy Swallows Universe\\n<b>Author: </b> Trent Dalton\\nFind it <a href=\\\"https://www.goodreads.com/book/show/37558445-boy-swallows-universe\\\"> here </a>\\n\\n<h6> Suz\' pick </h6> \\n<b>Book title: </b> Thinking, Fast and Slow\\n<b>Author: </b> Daniel Kahneman\\nFind it <a href=\\\"https://www.goodreads.com/book/show/11468377-thinking-fast-and-slow\\\"> here </a>\\n\\n<h6> Marnie’s pick </h6> \\n<b>Book title: </b> Hunt, Gather, Parent\\n<b>Author: </b> Michaeleen Doucleff\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> here </a>\\n\\n<h6> Hazel\'s pick </h6> \\n<b>Book title: </b> Odd Dog Out\\n<b>Author: </b> Rob Bidulph\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/30762074\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tAgWmP7qVi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NWO’s library','Taste: My Life Through Food by Stanley Tucci ... A Little Life by Hanya Yanagihara ... Johnno by David Malouf ... Growing up Queer in Australia by Benjamin Law ... Bullet Train by Kotaro Isaka ... A Promised Land by Barack Obama ... The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan ... The Life by Malcolm Knox',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138828,142595,1,'Boy meets universe 1','2022-09-21 00:48:50','2022-09-21 00:48:50','d7a6a0cc-1f4d-42c1-882a-125e3004bf6f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/boy-meets-universe-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/boy-meets-universe-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/boy-meets-universe-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/boy-meets-universe-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/boy-meets-universe-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/boy-meets-universe-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/boy-meets-universe-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/boy-meets-universe-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/boy-meets-universe-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/boy-meets-universe-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1600,\"originalImageHeight\":1600,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAZABkAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQME/8QAIRAAAgICAQQDAAAAAAAAAAAAAQIDBAAREgUTISJBscH/xAAYAQADAQEAAAAAAAAAAAAAAAACAwQBBf/EAB8RAAICAgEFAAAAAAAAAAAAAAECABEDIQQSIjFBUf/aAAwDAQACEQMRAD8AI6HWWspeQgSfIOtfeNFKNzocfCVXqPuKPXLcXWQaJJ9dfmbQJuUDIK1MUM0fMJZdAoOwCQOWIz2RqG5Tx9lbV+Gs0fbIYSeVRBvDx2F7pO7hQAZ//9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#bb3a85\",\"#1a1929\",\"#bf321f\",\"#f2e8ec\",\"#e799cf\"],\"lightness\":45,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138829,142596,1,'Bullet Train Book','2022-09-21 00:48:55','2022-09-21 00:48:55','76d3655e-e16f-4bd0-ac3c-b20cd0729f71',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Bullet-Train-Book.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Bullet-Train-Book.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Bullet-Train-Book.jpg\"},\"optimizedWebPImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Bullet-Train-Book.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Bullet-Train-Book.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Bullet-Train-Book.jpg.webp\"},\"variantSourceWidths\":[\"1024\",\"768\",\"640\"],\"variantHeights\":{\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1260,\"originalImageHeight\":1260,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAgMEBf/EACIQAAICAQMEAwAAAAAAAAAAAAEDAhEEAAUSExQhMUFRof/EABgBAAMBAQAAAAAAAAAAAAAAAAABBAID/8QAHhEAAgEEAwEAAAAAAAAAAAAAAAECERITQQMhIjH/2gAMAwEAAhEDEQA/AMlDpbkwNfmTRIgBa1mhIm/H5rnd9LcLSi47EbhNieXTyHTku7LJE8SCPWi4HwVUmypiWbV2c0wPGeOBO4GQlKzfr51qiJ8kl5eglTdmtyxlqkKxJiESrjUiRVfenRCvk+ls/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#d98285\",\"#151010\",\"#a09e9e\",\"#8a3a3c\",\"#8c8384\"],\"lightness\":45,\"placeholderWidth\":1024,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138831,142598,1,'Stanley tucci','2022-09-21 01:01:33','2022-09-21 01:01:33','df18aa48-9a0f-4ebf-8471-215cf60a2e6b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/stanley-tucci.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/stanley-tucci.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/stanley-tucci.jpg\"},\"optimizedWebPImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/stanley-tucci.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/stanley-tucci.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/stanley-tucci.jpg.webp\"},\"variantSourceWidths\":[\"1024\",\"768\",\"640\"],\"variantHeights\":{\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1200,\"originalImageHeight\":1200,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAwQF/8QAHhAAAgEEAwEAAAAAAAAAAAAAAQIDAAQFERIxUSL/xAAZAQACAwEAAAAAAAAAAAAAAAAAAwECBAX/xAAeEQACAgIDAQEAAAAAAAAAAAABAgADBBESEzIxcf/aAAwDAQACEQMRAD8AqxkMcsMzMFLKVC8gD3v2seOobexOpmWMmuJ1Ey0caWdsyKoLFtkKBU5CgAaErhOzE8jMGyyEkaSRvIum0fpd9UxlKeBE1stu+0/ka/yLyWcKK6Dgx0EHtCA2exCwikjqP2f/2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#d24e28\",\"#ddddde\",\"#3c3b41\",\"#9a999d\",\"#646c6c\"],\"lightness\":55,\"placeholderWidth\":1024,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138833,142600,1,'NWO’s library','2022-09-21 01:02:40','2022-09-21 01:02:40','9341e2a8-0b4e-43ad-9af4-45e4785541d3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142598\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> \\n\\n<h6> Jo’s pick </h6> \\n<b>Book title: </b> A Little Life\\n<b>Author: </b> Hanya Yanagihara \\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a>\\n\\n<h6>  Kimi’s pick </h6> \\n<b>Book title: </b> Johnno\\n<b>Author: </b> David Malouf \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> here </a>\\n\\n<h6> Bree’s pick </h6> \\n<b>Book title: </b> Growing up Queer in Australia\\n<b>Author: </b> Benjamin Law\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-30JPUv4VRB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142596\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Tim’s pick </h6> \\n<b>Book title: </b> Bullet Train\\n<b>Author: </b> Kotaro Isaka\\nFind it <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> here </a>\\n\\n<h6> Will’s pick </h6> \\n<b>Book title: </b> A Promised Land\\n<b>Author: </b> Barack Obama\\nFind it <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> here </a>\\n\\n<h6> Bec’s pick </h6> \\n<b>Book title: </b> The Queen of Paris: A Novel of Coco Chanel \\n<b>Author: </b> Pamela Binnings Ewan\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> here </a>\\n\\n<h6> Liam’s pick </h6> \\n<b>Book title: </b> The Life\\n<b>Author: </b> Malcolm Knox\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3TxZrn3Uej\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8Zua9e4kWu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142595\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Andrew\'s pick </h6> \\n<b>Book title: </b> Boy Swallows Universe\\n<b>Author: </b> Trent Dalton\\nFind it <a href=\\\"https://www.goodreads.com/book/show/37558445-boy-swallows-universe\\\"> here </a>\\n\\n<h6> Suz\' pick </h6> \\n<b>Book title: </b> Thinking, Fast and Slow\\n<b>Author: </b> Daniel Kahneman\\nFind it <a href=\\\"https://www.goodreads.com/book/show/11468377-thinking-fast-and-slow\\\"> here </a>\\n\\n<h6> Marnie’s pick </h6> \\n<b>Book title: </b> Hunt, Gather, Parent\\n<b>Author: </b> Michaeleen Doucleff\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> here </a>\\n\\n<h6> Hazel\'s pick </h6> \\n<b>Book title: </b> Odd Dog Out\\n<b>Author: </b> Rob Bidulph\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/30762074\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tAgWmP7qVi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NWO’s library','Taste: My Life Through Food by Stanley Tucci ... A Little Life by Hanya Yanagihara ... Johnno by David Malouf ... Growing up Queer in Australia by Benjamin Law ... Bullet Train by Kotaro Isaka ... A Promised Land by Barack Obama ... The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan ... The Life by Malcolm Knox',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138835,142602,1,'NWO’s library','2022-09-21 01:03:56','2022-09-21 01:03:56','a36300fa-a588-4f92-8662-2213452d2dbe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142598\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> \\n\\n<h6> Jo’s pick </h6> \\n<b>Book title: </b> A Little Life\\n<b>Author: </b> Hanya Yanagihara \\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a>\\n\\n<h6>  Kimi’s pick </h6> \\n<b>Book title: </b> Johnno\\n<b>Author: </b> David Malouf \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> here </a>\\n\\n<h6> Bree’s pick </h6> \\n<b>Book title: </b> Growing up Queer in Australia\\n<b>Author: </b> Benjamin Law\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-30JPUv4VRB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142596\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Tim’s pick </h6> \\n<b>Book title: </b> Bullet Train\\n<b>Author: </b> Kotaro Isaka\\nFind it <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> here </a>\\n\\n<h6> Will’s pick </h6> \\n<b>Book title: </b> A Promised Land\\n<b>Author: </b> Barack Obama\\nFind it <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> here </a>\\n\\n<h6> Bec’s pick </h6> \\n<b>Book title: </b> The Queen of Paris: A Novel of Coco Chanel \\n<b>Author: </b> Pamela Binnings Ewan\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> here </a>\\n\\n<h6> Liam’s pick </h6> \\n<b>Book title: </b> The Life\\n<b>Author: </b> Malcolm Knox\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3TxZrn3Uej\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8Zua9e4kWu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142595\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Andrew\'s pick </h6> \\n<b>Book title: </b> Boy Swallows Universe\\n<b>Author: </b> Trent Dalton\\nFind it <a href=\\\"https://www.goodreads.com/book/show/37558445-boy-swallows-universe\\\"> here </a>\\n\\n<h6> Suz\' pick </h6> \\n<b>Book title: </b> Thinking, Fast and Slow\\n<b>Author: </b> Daniel Kahneman\\nFind it <a href=\\\"https://www.goodreads.com/book/show/11468377-thinking-fast-and-slow\\\"> here </a>\\n\\n<h6> Marnie’s pick </h6> \\n<b>Book title: </b> Hunt, Gather, Parent\\n<b>Author: </b> Michaeleen Doucleff\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> here </a>\\n\\n<h6> Hazel\'s pick </h6> \\n<b>Book title: </b> Odd Dog Out\\n<b>Author: </b> Rob Bidulph\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/30762074\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tAgWmP7qVi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NWO’s library','Taste: My Life Through Food by Stanley Tucci ... A Little Life by Hanya Yanagihara ... Johnno by David Malouf ... Growing up Queer in Australia by Benjamin Law ... Bullet Train by Kotaro Isaka ... A Promised Land by Barack Obama ... The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan ... The Life by Malcolm Knox',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138836,142603,1,'Residential Tenancies Authority','2022-09-27 05:42:02','2022-09-27 05:42:02','2bee2127-780a-40f8-ad91-a02e2242f7da',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Illustrating tenancy law changes',NULL,NULL,'We all know tenancy can be complicated, from any side of the relationship. So the Residential Tenancy Authority (RTA) has introduced new laws to give tenants, landlords and property managers more certainty and transparency around their tenancy arrangements. We helped the RTA produce four animated videos to serve as friendly reminders about the law changes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bc8O0czLTg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028657?h=758f0e7169&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Ending a tenancy\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SUpdyGgoHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The RTA needed to inform the public about rental reform changes coming into effect on 1 October 2022. With such a broad audience—renters, landlords and property managers—the RTA needed an explanatory tool that relayed the information in an easily digestible, engaging and inclusive way.\\nA collection of animated explainer videos was the obvious choice.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-chZ81DIc8w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028691?h=ca954eece2&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Renting with pets\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PLy32UQvPs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The videos needed a friendly, informative tone that connected with a vast range of people. We broke the videos down into sections that addressed each of the three key audiences individually—renters, then landlords, then property managers. The audiences were represented by a diverse and inclusive suite of illustrated characters.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oGsU7M7NF2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028774?h=8eb9622a43&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Summary\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oQ8wJZ93RN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Illustration was the real standout for this project. Our illustrative style helped us depict the emotion and shared experience of renting from all sides of the tenancy relationship. The animation represented various age groups, ethnicities and occupations.\\nThe law changes are explained by friendly, engaging voiceovers that guide the videos.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YFRHfSDQGW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028736?h=a48681755c&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Repair order\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-sfiAs0GFwT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It was a pleasure to work with the team at RTA to help inform Queenslanders about the new changes to renting laws. The RTA has worked hard to make sure renting is fair for all and it was a joy to be part of bringing this to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138838,142605,1,'Meet Kimi','2022-09-28 04:51:45','2022-09-28 04:51:45','a7596a61-aab7-4a1d-8ab4-ddac21590469',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x768_crop_center-center_82_line/Meet-Kimi.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1536_crop_center-center_82_line/Meet-Kimi.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x640_crop_center-center_82_line/Meet-Kimi.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1280_crop_center-center_82_line/Meet-Kimi.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x512_crop_center-center_82_line/Meet-Kimi.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1024_crop_center-center_82_line/Meet-Kimi.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x384_crop_center-center_82_line/Meet-Kimi.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x320_crop_center-center_82_line/Meet-Kimi.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x768_crop_center-center_82_line/Meet-Kimi.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1536_crop_center-center_82_line/Meet-Kimi.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x640_crop_center-center_82_line/Meet-Kimi.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1280_crop_center-center_82_line/Meet-Kimi.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x512_crop_center-center_82_line/Meet-Kimi.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1024_crop_center-center_82_line/Meet-Kimi.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x384_crop_center-center_82_line/Meet-Kimi.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x320_crop_center-center_82_line/Meet-Kimi.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"3072\":1536,\"1280\":640,\"2560\":1280,\"1024\":512,\"2048\":1024,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":3072,\"originalImageHeight\":1536,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAIABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAgX/xAAdEAACAwACAwAAAAAAAAAAAAABAgMEEQAxEiGR/8QAFgEBAQEAAAAAAAAAAAAAAAAAAwIE/8QAGhEAAgMBAQAAAAAAAAAAAAAAAAECERIhQf/aAAwDAQACEQMRAD8AN6w0t1okeRVKkFcIU+vnM6cqtjxztJEljl2xoJ8Ze965SXBXLyz/2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#7e4b39\",\"#25241a\",\"#ded3c2\",\"#b6a698\",\"#ce8f62\"],\"lightness\":44,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138839,142606,1,'Let us introduce ourselves','2022-09-28 04:54:01','2022-09-28 04:54:01','8c49fc09-0e2d-434a-9871-14de5dd8a1a4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-w9CP1Gx40P\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and The Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CXP6FGwfrb\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-caQw6bLp4J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141536\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138841,142608,1,'Let us introduce ourselves','2022-09-28 05:02:57','2022-09-28 05:02:57','45338c16-62fa-4068-8c38-e1ad0831ac77',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-w9CP1Gx40P\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NZMIACX4C6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and The Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CXP6FGwfrb\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138843,142610,1,'Let us introduce ourselves','2022-09-28 05:04:20','2022-09-28 05:04:20','7b04f0bb-c658-4c10-a85f-de312a99fb3e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5plRbFIWKe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5plRbFIWKe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and The Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138845,142612,1,'Let us introduce ourselves','2022-09-28 05:05:38','2022-09-28 05:05:38','b45b30be-1c0b-4fbf-88e4-4ffa0131210a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and The Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138847,142614,1,'Let us introduce ourselves','2022-09-28 05:06:14','2022-09-28 05:06:14','fc57190f-bd96-46f2-9681-fd77885d40c3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and The Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138849,142616,1,'Let us introduce ourselves','2022-09-28 05:06:28','2022-09-28 05:06:28','b1979764-5cf9-47ca-9235-4e2ecc4009d6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and The Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138862,142629,1,'NWO’s library','2022-09-28 06:41:58','2022-09-28 06:41:58','791aa6be-5ecc-468d-a290-326928fe1be5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142598\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a> \\n\\n<h6> Jo’s pick </h6> \\n<b>Book title: </b> A Little Life\\n<b>Author: </b> Hanya Yanagihara \\nFind it <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> here </a>\\n\\n<h6>  Kimi’s pick </h6> \\n<b>Book title: </b> Johnno\\n<b>Author: </b> David Malouf \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> here </a>\\n\\n<h6> Bree’s pick </h6> \\n<b>Book title: </b> Growing up Queer in Australia\\n<b>Author: </b> Benjamin Law\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-30JPUv4VRB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142596\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Tim’s pick </h6> \\n<b>Book title: </b> Bullet Train\\n<b>Author: </b> Kotaro Isaka\\nFind it <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> here </a>\\n\\n<h6> Will’s pick </h6> \\n<b>Book title: </b> A Promised Land\\n<b>Author: </b> Barack Obama\\nFind it <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> here </a>\\n\\n<h6> Bec’s pick </h6> \\n<b>Book title: </b> The Queen of Paris: A Novel of Coco Chanel \\n<b>Author: </b> Pamela Binnings Ewan\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> here </a>\\n\\n<h6> Liam’s pick </h6> \\n<b>Book title: </b> The Life\\n<b>Author: </b> Malcolm Knox\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3TxZrn3Uej\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8Zua9e4kWu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142595\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Andrew\'s pick </h6> \\n<b>Book title: </b> Boy Swallows Universe\\n<b>Author: </b> Trent Dalton\\nFind it <a href=\\\"https://www.goodreads.com/book/show/37558445-boy-swallows-universe\\\"> here </a>\\n\\n<h6> Suz\' pick </h6> \\n<b>Book title: </b> Thinking, Fast and Slow\\n<b>Author: </b> Daniel Kahneman\\nFind it <a href=\\\"https://www.goodreads.com/book/show/11468377-thinking-fast-and-slow\\\"> here </a>\\n\\n<h6> Marnie’s pick </h6> \\n<b>Book title: </b> Hunt, Gather, Parent\\n<b>Author: </b> Michaeleen Doucleff\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> here </a>\\n\\n<h6> Hazel\'s pick </h6> \\n<b>Book title: </b> Odd Dog Out\\n<b>Author: </b> Rob Bidulph\\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/30762074\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tAgWmP7qVi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NWO’s library','Taste: My Life Through Food by Stanley Tucci ... A Little Life by Hanya Yanagihara ... Johnno by David Malouf ... Growing up Queer in Australia by Benjamin Law ... Bullet Train by Kotaro Isaka ... A Promised Land by Barack Obama ... The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan ... The Life by Malcolm Knox',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138864,142631,1,'Residential Tenancies Authority','2022-09-28 06:45:26','2022-09-28 06:45:26','2175a783-32f4-43c2-91af-2dba6b982641',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Illustrating tenancy law changes',NULL,NULL,'We all know tenancy can be complicated, from any side of the relationship. So the Residential Tenancy Authority (RTA) has introduced new laws to give tenants, landlords and property managers more certainty and transparency around their tenancy arrangements. We helped the RTA produce four animated videos to serve as friendly reminders about the law changes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bc8O0czLTg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028657?h=758f0e7169&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Ending a tenancy\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SUpdyGgoHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The RTA needed to inform the public about rental reform changes coming into effect on 1 October 2022. With such a broad audience—renters, landlords and property managers—the RTA needed an explanatory tool that relayed the information in an easily digestible, engaging and inclusive way.\\nA collection of animated explainer videos was the obvious choice.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-chZ81DIc8w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028691?h=ca954eece2&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Renting with pets\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PLy32UQvPs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The videos needed a friendly, informative tone that connected with a vast range of people. We broke the videos down into sections that addressed each of the three key audiences individually—renters, then landlords, then property managers. The audiences were represented by a diverse and inclusive suite of illustrated characters.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oGsU7M7NF2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028774?h=8eb9622a43&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Summary\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oQ8wJZ93RN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Illustration was the real standout for this project. Our illustrative style helped us depict the emotion and shared experience of renting from all sides of the tenancy relationship. The animation represented various age groups, ethnicities and occupations.\\nThe law changes are explained by friendly, engaging voiceovers that guide the videos.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YFRHfSDQGW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028736?h=a48681755c&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Repair order\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-sfiAs0GFwT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It was a pleasure to work with the team at RTA to help inform Queenslanders about the new changes to renting laws. The RTA has worked hard to make sure renting is fair for all and it was a joy to be part of bringing this to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138866,142633,1,'Let us introduce ourselves','2022-09-28 06:52:52','2022-09-28 06:52:52','76308ee7-b2e8-4e05-a33e-1e2d5ae03b09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and The Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138870,142637,1,'Let us introduce ourselves','2022-09-28 06:54:59','2022-09-28 06:54:59','ee6ddb3b-9b74-4ba9-984d-f8794ed05c1e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and The Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":null,\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138872,142639,1,'Let us introduce ourselves','2022-09-28 06:55:46','2022-09-28 06:55:46','73f2625b-24d0-47f2-a044-5fb0d402c277',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and The Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138874,142641,1,'Residential Tenancies Authority','2022-09-29 00:19:47','2022-09-29 00:19:47','0261fd4c-69a9-44f6-8fcb-b2ddce8084cf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Illustrating tenancy law changes',NULL,NULL,'We all know tenancy can be complicated, from any side of the relationship. So the Residential Tenancies Authority (RTA) has introduced new laws to give tenants, landlords and property managers more certainty and transparency around their tenancy arrangements. We helped the RTA produce four animated videos to serve as friendly reminders about the law changes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bc8O0czLTg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028657?h=758f0e7169&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Ending a tenancy\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SUpdyGgoHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The RTA needed to inform the public about rental reform changes coming into effect on 1 October 2022. With such a broad audience—renters, landlords and property managers—the RTA needed an explanatory tool that relayed the information in an easily digestible, engaging and inclusive way.\\nA collection of animated explainer videos was the obvious choice.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-chZ81DIc8w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028691?h=ca954eece2&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Renting with pets\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PLy32UQvPs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The videos needed a friendly, informative tone that connected with a vast range of people. We broke the videos down into sections that addressed each of the three key audiences individually—renters, then landlords, then property managers. The audiences were represented by a diverse and inclusive suite of illustrated characters.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oGsU7M7NF2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028774?h=8eb9622a43&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Summary\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oQ8wJZ93RN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Illustration was the real standout for this project. Our illustrative style helped us depict the emotion and shared experience of renting from all sides of the tenancy relationship. The animation represented various age groups, ethnicities and occupations.\\nThe law changes are explained by friendly, engaging voiceovers that guide the videos.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YFRHfSDQGW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028736?h=a48681755c&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Repair order\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-sfiAs0GFwT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It was a pleasure to work with the team at RTA to help inform Queenslanders about the new changes to renting laws. The RTA has worked hard to make sure renting is fair for all and it was a joy to be part of bringing this to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138877,142648,1,'NWO 200618 3030 e1551914831676 600x600','2022-09-29 02:19:43','2023-03-09 04:26:36','2c37f87e-568e-4c5b-ba90-683418b4f23e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Hazel-col-23.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Hazel-col-23.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Hazel-col-23.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Hazel-col-23.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Hazel-col-23.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Hazel-col-23.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Hazel-col-23.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Hazel-col-23.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1280,\"originalImageHeight\":1280,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBIAEgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQME/8QAIBAAAgICAgIDAAAAAAAAAAAAAQIDEQQFABIhMQZRYf/EABcBAAMBAAAAAAAAAAAAAAAAAAECAwD/xAAaEQADAQEBAQAAAAAAAAAAAAAAAQIRMQMh/9oADAMBAAIRAxEAPwBHd7BtcIERA0kzUL9AD3ylViNK1kMbZxzd1mKoyAE/vBPon0aozhh+W7DFyMaBo2Ehjks1YI8ffFqpaxBUufrBseTs0kyEgECyT4u+SKdP/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#bebfdc\",\"#503730\",\"#957d7e\",\"#ba8889\",\"#a094a4\"],\"lightness\":56,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138878,142649,1,'About us','2022-09-29 02:22:40','2022-09-29 02:22:40','0a6b228d-c0e7-49de-9685-f372575a41cc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17881\",\"17934\",\"1\",\"17887\",\"21898\",\"30433\",\"17921\",\"97259\",\"141616\",\"141642\",\"142039\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | About us','For 20 years we have helped businesses, organisations and governments to solve problems, unlock potential and connect with people to inspire action.','strategy, brand, campaign, behaviour change, engagement, digital, video, content',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138880,142651,1,'22 09 QLD Hydro Website','2022-10-04 04:48:05','2022-10-04 04:48:05','0225f9a8-4265-472c-84fb-288f8daf29ed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_09-QLD-Hydro-Website.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_09-QLD-Hydro-Website.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_09-QLD-Hydro-Website.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_09-QLD-Hydro-Website.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_09-QLD-Hydro-Website.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_09-QLD-Hydro-Website.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_09-QLD-Hydro-Website.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_09-QLD-Hydro-Website.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_09-QLD-Hydro-Website.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_09-QLD-Hydro-Website.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_09-QLD-Hydro-Website.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_09-QLD-Hydro-Website.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_09-QLD-Hydro-Website.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_09-QLD-Hydro-Website.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_09-QLD-Hydro-Website.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_09-QLD-Hydro-Website.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":768,\"2560\":1536,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":384},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":3125,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABQD/xAAgEAACAgIABwAAAAAAAAAAAAABAgADESEEBRM0YYLB/8QAFgEBAQEAAAAAAAAAAAAAAAAAAwIB/8QAHBEAAwADAAMAAAAAAAAAAAAAAAECAwQyESEx/9oADAMBAAIRAxEAPwBBecUOCmCusEg4AMuMat+gryOfqKu3oWoQVu4d9NkgFfO5VT4MmkwCr7E1+QtjoSo7L2lLph3yj//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#7394a5\",\"#d0d2cd\",\"#2c322e\",\"#226691\",\"#1b3e57\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138881,142652,1,'22 09 QLD Hydro Website2','2022-10-04 04:48:13','2022-10-04 04:48:13','9a245ba5-3221-4006-b680-9d8f2733ab23',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_09-QLD-Hydro-Website2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_09-QLD-Hydro-Website2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_09-QLD-Hydro-Website2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_09-QLD-Hydro-Website2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_09-QLD-Hydro-Website2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_09-QLD-Hydro-Website2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_09-QLD-Hydro-Website2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_09-QLD-Hydro-Website2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_09-QLD-Hydro-Website2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_09-QLD-Hydro-Website2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_09-QLD-Hydro-Website2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_09-QLD-Hydro-Website2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_09-QLD-Hydro-Website2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_09-QLD-Hydro-Website2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_09-QLD-Hydro-Website2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_09-QLD-Hydro-Website2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":768,\"2560\":1536,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":384},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":3125,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABgMF/8QAIhAAAgIBAwQDAAAAAAAAAAAAAQIDBAAFEXESEzPBNHKx/8QAFwEBAQEBAAAAAAAAAAAAAAAAAwQBAv/EABsRAAICAwEAAAAAAAAAAAAAAAABAhEDEjFR/9oADAMBAAIRAxEAPwDbi1utbfZIrdhlG4Xsg/hxVOuKibTbrspPPVBUTTQ1nK79DAqRyMSOVIKWFvxBzQflt9PYwCiIhr+V+B7zDtH/2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#6ecdf4\",\"#365655\",\"#eef7f7\",\"#88a09a\",\"#97afad\"],\"lightness\":61,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138882,142653,1,'22 09 QLD Hydro Website3','2022-10-04 04:48:17','2022-10-04 04:48:17','c932fd57-8730-4b2b-8e69-6240c3385a1b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_09-QLD-Hydro-Website3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_09-QLD-Hydro-Website3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_09-QLD-Hydro-Website3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_09-QLD-Hydro-Website3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_09-QLD-Hydro-Website3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_09-QLD-Hydro-Website3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_09-QLD-Hydro-Website3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_09-QLD-Hydro-Website3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_09-QLD-Hydro-Website3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_09-QLD-Hydro-Website3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_09-QLD-Hydro-Website3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_09-QLD-Hydro-Website3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_09-QLD-Hydro-Website3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_09-QLD-Hydro-Website3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_09-QLD-Hydro-Website3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_09-QLD-Hydro-Website3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":768,\"2560\":1536,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":384},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":3125,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAAEF/8QAGxAAAgIDAQAAAAAAAAAAAAAAAQIAESExQUL/xAAXAQEBAQEAAAAAAAAAAAAAAAAAAQQF/8QAGBEBAQADAAAAAAAAAAAAAAAAAQARMUH/2gAMAwEAAhEDEQA/ANosF2rNZ88m9U1cgx2oorYvPCKMo0SSyRL/2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#6cccf2\",\"#375b58\",\"#e3f6fb\",\"#a1e2f6\",\"#498ca1\"],\"lightness\":63,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138883,142654,1,'22 09 QLD Hydro Website4','2022-10-04 04:48:39','2022-10-04 04:48:39','b3aefd3e-7030-461e-a6ef-6029b5a3222f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1843_crop_center-center_82_line/22_09-QLD-Hydro-Website4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1536_crop_center-center_82_line/22_09-QLD-Hydro-Website4.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x3072_crop_center-center_82_line/22_09-QLD-Hydro-Website4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1228_crop_center-center_82_line/22_09-QLD-Hydro-Website4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2457_crop_center-center_82_line/22_09-QLD-Hydro-Website4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x921_crop_center-center_82_line/22_09-QLD-Hydro-Website4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x768_crop_center-center_82_line/22_09-QLD-Hydro-Website4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1843_crop_center-center_82_line/22_09-QLD-Hydro-Website4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1536_crop_center-center_82_line/22_09-QLD-Hydro-Website4.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x3072_crop_center-center_82_line/22_09-QLD-Hydro-Website4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1228_crop_center-center_82_line/22_09-QLD-Hydro-Website4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2457_crop_center-center_82_line/22_09-QLD-Hydro-Website4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x921_crop_center-center_82_line/22_09-QLD-Hydro-Website4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x768_crop_center-center_82_line/22_09-QLD-Hydro-Website4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1843,\"1280\":1536,\"2560\":3072,\"1024\":1228,\"2048\":2457,\"768\":921,\"640\":768},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":2604,\"originalImageHeight\":3125,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAATABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAQIGBf/EAB8QAAICAgIDAQAAAAAAAAAAAAECAAMFEQRREhMhQv/EABcBAAMBAAAAAAAAAAAAAAAAAAABAgP/xAAZEQEAAwEBAAAAAAAAAAAAAAAAARESIQL/2gAMAwEAAhEDEQA/ALm1uQtg9aK6a+7OjHxM6vg1PaxIsq8R3uJSCpyuVtqZ1yLAj8lgCZVQw16LblsvUAW5zkHpgYHcsmCRgH//2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#345454\",\"#e6eeee\",\"#69c8d2\",\"#7d908e\",\"#64b5a3\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":1843,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138884,142655,1,'Queensland Hydro','2022-10-04 04:48:56','2022-10-04 04:48:56','b0b8deb5-cf2a-4b9a-84fc-fa519301802e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Powering Queensland’s future',NULL,NULL,'Queensland has some ambitious goals for a clean energy future: 50 per cent renewable energy by 2030 and zero-net emissions by 2050. Pumped hydro energy is the key to achieving this, and Powerlink is facilitating pumped hydro through a new subsidiary brand. We helped Powerlink build the brand for Queensland Hydro on a strategic, evidence-based foundation to set it up for a successful journey of powering Queensland’s future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9LoFmPw6gT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-Ax8fnuTi2u\",\"content\":{\"fields\":{\"images\":[\"142653\",\"142652\",\"142651\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RCifzof72P\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using funding provided by the Queensland Government, Powerlink needed to establish a subsidiary entity to carry the planning and transmission connection work for potential pumped hydro projects across Queensland. Our creation of the brand for Queensland Hydro involved extensive discovery prior to crafting a brand identity, designing marketing collateral, and copywriting, designing and developing a website.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fdid0P67Ag\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142654\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As we often do, we began this project with a comprehensive discovery phase. This involved a review of Queensland Hydro’s contemporaries and competitive landscape, consultation with a First Nations advisor on theming and language, and stakeholder workshops to clarify the brand personality, purpose and objectives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5o9yXWhZxU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our deliverables included a brand name, logo, visual identity, collateral, key messaging and content for the website. We kept the design fresh and engaging, while accommodating the needs of the various stakeholders involved.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fjwEEvmBHp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Queensland Hydro will be a vital component in reaching Australia’s aspirational energy goals over the next few decades. Pumped hydro is at the centre of cleaning up Queensland’s energy, and we were delighted to play a role in bringing Queensland Hydro to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138886,142657,1,'Queensland Hydro','2022-10-04 04:50:02','2022-10-04 04:50:02','66589440-31e9-4f1f-be2b-317b9a871438',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Powering Queensland’s future',NULL,NULL,'Queensland has some ambitious goals for a clean energy future: 50 per cent renewable energy by 2030 and zero-net emissions by 2050. Pumped hydro energy is the key to achieving this, and Powerlink is facilitating pumped hydro through a new subsidiary brand. We helped Powerlink build the brand for Queensland Hydro on a strategic, evidence-based foundation to set it up for a successful journey of powering Queensland’s future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MJwz0wrwkL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142653\",\"142652\",\"142651\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RCifzof72P\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using funding provided by the Queensland Government, Powerlink needed to establish a subsidiary entity to carry the planning and transmission connection work for potential pumped hydro projects across Queensland. Our creation of the brand for Queensland Hydro involved extensive discovery prior to crafting a brand identity, designing marketing collateral, and copywriting, designing and developing a website.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fdid0P67Ag\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142654\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As we often do, we began this project with a comprehensive discovery phase. This involved a review of Queensland Hydro’s contemporaries and competitive landscape, consultation with a First Nations advisor on theming and language, and stakeholder workshops to clarify the brand personality, purpose and objectives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5o9yXWhZxU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our deliverables included a brand name, logo, visual identity, collateral, key messaging and content for the website. We kept the design fresh and engaging, while accommodating the needs of the various stakeholders involved.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fjwEEvmBHp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Queensland Hydro will be a vital component in reaching Australia’s aspirational energy goals over the next few decades. Pumped hydro is at the centre of cleaning up Queensland’s energy, and we were delighted to play a role in bringing Queensland Hydro to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138888,142659,1,'22 09 QLD Hydro Website collat','2022-10-04 05:31:18','2022-10-04 06:03:25','eaadd26a-85a6-49f0-b602-c868c0deab29',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_09-QLD-Hydro-Website-collat.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_09-QLD-Hydro-Website-collat.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_09-QLD-Hydro-Website-collat.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_09-QLD-Hydro-Website-collat.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_09-QLD-Hydro-Website-collat.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_09-QLD-Hydro-Website-collat.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_09-QLD-Hydro-Website-collat.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_09-QLD-Hydro-Website-collat.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_09-QLD-Hydro-Website-collat.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_09-QLD-Hydro-Website-collat.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_09-QLD-Hydro-Website-collat.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_09-QLD-Hydro-Website-collat.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_09-QLD-Hydro-Website-collat.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_09-QLD-Hydro-Website-collat.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_09-QLD-Hydro-Website-collat.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_09-QLD-Hydro-Website-collat.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":768,\"2560\":1536,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":384},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":3125,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABgQF/8QAIxAAAgEDAgcBAAAAAAAAAAAAAQMCAAQhBTQREiIxc4Oxwf/EABYBAQEBAAAAAAAAAAAAAAAAAAQBA//EABsRAAICAwEAAAAAAAAAAAAAAAABAhEDEiEx/9oADAMBAAIRAxEAPwC/UZsuSgJfgNPHlkRitZa1wLByT6aibgtkVWzLdhV0yAmcHtnFZ0I2Cydz7x9qoNk9Qh0bf3nl/TUEo//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#246169\",\"#dadbd8\",\"#7bb2c3\",\"#6d6f6b\",\"#656464\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138889,142660,1,'Queensland Hydro','2022-10-04 05:31:40','2022-10-04 05:31:40','4abf74af-2ec9-40c7-a575-fff50765b3a1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Powering Queensland’s future',NULL,NULL,'Queensland has some ambitious goals for a clean energy future: 50 per cent renewable energy by 2030 and zero-net emissions by 2050. Pumped hydro energy is the key to achieving this, and Powerlink is facilitating pumped hydro through a new subsidiary brand. We helped Powerlink build the brand for Queensland Hydro on a strategic, evidence-based foundation to set it up for a successful journey of powering Queensland’s future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MJwz0wrwkL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142653\",\"142652\",\"142651\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RCifzof72P\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using funding provided by the Queensland Government, Powerlink needed to establish a subsidiary entity to carry the planning and transmission connection work for potential pumped hydro projects across Queensland. Our creation of the brand for Queensland Hydro involved extensive discovery prior to crafting a brand identity, designing marketing collateral, and copywriting, designing and developing a website.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fdid0P67Ag\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142654\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As we often do, we began this project with a comprehensive discovery phase. This involved a review of Queensland Hydro’s contemporaries and competitive landscape, consultation with a First Nations advisor on theming and language, and stakeholder workshops to clarify the brand personality, purpose and objectives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvkuSRS5qb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142659\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5o9yXWhZxU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our deliverables included a brand name, logo, visual identity, collateral, key messaging and content for the website. We kept the design fresh and engaging, while accommodating the needs of the various stakeholders involved.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fjwEEvmBHp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Queensland Hydro will be a vital component in reaching Australia’s aspirational energy goals over the next few decades. Pumped hydro is at the centre of cleaning up Queensland’s energy, and we were delighted to play a role in bringing Queensland Hydro to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `content` VALUES (138890,142661,1,'Queensland Hydro','2022-10-04 05:32:00','2022-10-04 05:32:00','0e223439-3295-4d22-ba9a-c7414e2c6617',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Powering Queensland’s future',NULL,NULL,'Queensland has some ambitious goals for a clean energy future: 50 per cent renewable energy by 2030 and zero-net emissions by 2050. Pumped hydro energy is the key to achieving this, and Powerlink is facilitating pumped hydro through a new subsidiary brand. We helped Powerlink build the brand for Queensland Hydro on a strategic, evidence-based foundation to set it up for a successful journey of powering Queensland’s future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MJwz0wrwkL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142653\",\"142652\",\"142651\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RCifzof72P\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using funding provided by the Queensland Government, Powerlink needed to establish a subsidiary entity to carry the planning and transmission connection work for potential pumped hydro projects across Queensland. Our creation of the brand for Queensland Hydro involved extensive discovery prior to crafting a brand identity, designing marketing collateral, and copywriting, designing and developing a website.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fdid0P67Ag\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142654\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As we often do, we began this project with a comprehensive discovery phase. This involved a review of Queensland Hydro’s contemporaries and competitive landscape, consultation with a First Nations advisor on theming and language, and stakeholder workshops to clarify the brand personality, purpose and objectives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5o9yXWhZxU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our deliverables included a brand name, logo, visual identity, collateral, key messaging and content for the website. We kept the design fresh and engaging, while accommodating the needs of the various stakeholders involved.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvkuSRS5qb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142659\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fjwEEvmBHp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Queensland Hydro will be a vital component in reaching Australia’s aspirational energy goals over the next few decades. Pumped hydro is at the centre of cleaning up Queensland’s energy, and we were delighted to play a role in bringing Queensland Hydro to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138894,142665,1,'22 09 QLD Hydro Website collat2','2022-10-04 06:04:02','2022-10-04 06:04:02','b0562928-f752-40cf-9082-3634cf7b08be',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_09-QLD-Hydro-Website-collat2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_09-QLD-Hydro-Website-collat2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_09-QLD-Hydro-Website-collat2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_09-QLD-Hydro-Website-collat2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_09-QLD-Hydro-Website-collat2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_09-QLD-Hydro-Website-collat2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_09-QLD-Hydro-Website-collat2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_09-QLD-Hydro-Website-collat2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_09-QLD-Hydro-Website-collat2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_09-QLD-Hydro-Website-collat2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_09-QLD-Hydro-Website-collat2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_09-QLD-Hydro-Website-collat2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_09-QLD-Hydro-Website-collat2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_09-QLD-Hydro-Website-collat2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_09-QLD-Hydro-Website-collat2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_09-QLD-Hydro-Website-collat2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":768,\"2560\":1536,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":384},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":3125,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABgQF/8QAIxAAAgEDAgcBAAAAAAAAAAAAAQMCAAQhBTQREiIxc4Oxwf/EABYBAQEBAAAAAAAAAAAAAAAAAAQBA//EABsRAAICAwEAAAAAAAAAAAAAAAABAhEDEiEx/9oADAMBAAIRAxEAPwC/UZsuSgJfgNPHlkRitZa1wLByT6aibgtkVWzLdhV0yAmcHtnFZ0I2Cydz7x9qoNk9Qh0bf3nl/TUExP/Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#246169\",\"#dadbd8\",\"#7bb2c3\",\"#6d6f6b\",\"#656464\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138895,142666,1,'Queensland Hydro','2022-10-04 06:04:22','2022-10-04 06:04:22','5d71cc71-294c-453b-81e7-32f3343a0b5c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Powering Queensland’s future',NULL,NULL,'Queensland has some ambitious goals for a clean energy future: 50 per cent renewable energy by 2030 and zero-net emissions by 2050. Pumped hydro energy is the key to achieving this, and Powerlink is facilitating pumped hydro through a new subsidiary brand. We helped Powerlink build the brand for Queensland Hydro on a strategic, evidence-based foundation to set it up for a successful journey of powering Queensland’s future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MJwz0wrwkL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142653\",\"142652\",\"142651\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RCifzof72P\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using funding provided by the Queensland Government, Powerlink needed to establish a subsidiary entity to carry the planning and transmission connection work for potential pumped hydro projects across Queensland. Our creation of the brand for Queensland Hydro involved extensive discovery prior to crafting a brand identity, designing marketing collateral, and copywriting, designing and developing a website.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fdid0P67Ag\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142654\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As we often do, we began this project with a comprehensive discovery phase. This involved a review of Queensland Hydro’s contemporaries and competitive landscape, consultation with a First Nations advisor on theming and language, and stakeholder workshops to clarify the brand personality, purpose and objectives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5o9yXWhZxU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our deliverables included a brand name, logo, visual identity, collateral, key messaging and content for the website. We kept the design fresh and engaging, while accommodating the needs of the various stakeholders involved.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvkuSRS5qb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142665\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fjwEEvmBHp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Queensland Hydro will be a vital component in reaching Australia’s aspirational energy goals over the next few decades. Pumped hydro is at the centre of cleaning up Queensland’s energy, and we were delighted to play a role in bringing Queensland Hydro to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138897,142668,1,'Queensland Hydro','2022-10-04 06:47:09','2022-10-04 06:47:09','57e2e7c6-1c3d-4ea2-9ba7-d93e52a39f5e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Powering Queensland’s future',NULL,NULL,'Queensland has some ambitious goals for a clean energy future: 50 per cent renewable energy by 2030 and zero-net emissions by 2050. Pumped hydro energy is the key to achieving this, and Powerlink is facilitating pumped hydro through a new subsidiary brand. We helped Powerlink build the brand for Queensland Hydro on a strategic, evidence-based foundation to set it up for a successful journey of powering Queensland’s future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MJwz0wrwkL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142653\",\"142652\",\"142651\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RCifzof72P\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using funding provided by the Queensland Government, Powerlink needed to establish a subsidiary entity to carry the planning and transmission connection work for potential pumped hydro projects across Queensland. Our creation of the brand for Queensland Hydro involved extensive discovery prior to crafting a brand identity, designing marketing collateral, and copywriting, designing and developing a website.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fdid0P67Ag\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142654\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As we often do, we began this project with a comprehensive discovery phase. This involved a review of Queensland Hydro’s contemporaries and competitive landscape, consultation with a First Nations advisor on theming and language, and stakeholder workshops to clarify the brand personality, purpose and objectives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5o9yXWhZxU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our deliverables included a brand name, logo, visual identity, collateral, key messaging and content for the website. We kept the design fresh and engaging, while accommodating the needs of the various stakeholders involved.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvkuSRS5qb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142665\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fjwEEvmBHp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Queensland Hydro will be a vital component in reaching Australia’s aspirational energy goals over the next few decades. Pumped hydro is at the centre of cleaning up Queensland’s energy, and we were delighted to play a role in bringing Queensland Hydro to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138898,142669,1,'Queensland Hydro','2022-10-04 07:19:36','2022-10-04 07:19:36','9b1674dc-78f7-4977-9e63-7f8cef50cb1b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Powering Queensland’s future',NULL,NULL,'Queensland has some ambitious goals for a clean energy future: 50 per cent renewable energy by 2030 and zero-net emissions by 2050. Pumped hydro energy is the key to achieving this, and Powerlink is facilitating pumped hydro through a new subsidiary brand. We helped Powerlink build the brand for Queensland Hydro on a strategic, evidence-based foundation to set it up for a successful journey of powering Queensland’s future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MJwz0wrwkL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142653\",\"142652\",\"142651\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RCifzof72P\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using funding provided by the Queensland Government, Powerlink needed to establish a subsidiary entity to carry the planning and transmission connection work for potential pumped hydro projects across Queensland. Our creation of the brand for Queensland Hydro involved extensive discovery prior to crafting a brand identity, designing marketing collateral, and copywriting, designing and developing a website.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fdid0P67Ag\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142654\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As we often do, we began this project with a comprehensive discovery phase. This involved a review of Queensland Hydro’s contemporaries and competitive landscape, consultation with a First Nations advisor on theming and language, and stakeholder workshops to clarify the brand personality, purpose and objectives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5o9yXWhZxU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our deliverables included a brand name, logo, visual identity, collateral, key messaging and content for the website. We kept the design fresh and engaging, while accommodating the needs of the various stakeholders involved.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvkuSRS5qb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142665\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fjwEEvmBHp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Queensland Hydro will be a vital component in reaching Australia’s aspirational energy goals over the next few decades. Pumped hydro is at the centre of cleaning up Queensland’s energy, and we were delighted to play a role in bringing Queensland Hydro to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138899,142670,1,'Queensland Hydro','2022-10-04 07:20:04','2022-10-04 07:20:04','30a6c340-4a5b-4dab-87e4-36d80d0dcf35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Powering Queensland’s future',NULL,NULL,'Queensland has some ambitious goals for a clean energy future: 50 per cent renewable energy by 2030 and zero-net emissions by 2050. Pumped hydro energy is the key to achieving this, and Powerlink is facilitating pumped hydro through a new subsidiary brand. We helped Powerlink build the brand for Queensland Hydro on a strategic, evidence-based foundation to set it up for a successful journey of powering Queensland’s future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MJwz0wrwkL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142653\",\"142652\",\"142651\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RCifzof72P\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using funding provided by the Queensland Government, Powerlink needed to establish a subsidiary entity to carry the planning and transmission connection work for potential pumped hydro projects across Queensland. Our creation of the brand for Queensland Hydro involved extensive discovery prior to crafting a brand identity, designing marketing collateral, and copywriting, designing and developing a website.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fdid0P67Ag\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142654\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As we often do, we began this project with a comprehensive discovery phase. This involved a review of Queensland Hydro’s contemporaries and competitive landscape, consultation with a First Nations advisor on theming and language, and stakeholder workshops to clarify the brand personality, purpose and objectives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5o9yXWhZxU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our deliverables included a brand name, logo, visual identity, collateral, key messaging and content for the website. We kept the design fresh and engaging, while accommodating the needs of the various stakeholders involved.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvkuSRS5qb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142665\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fjwEEvmBHp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Queensland Hydro will be a vital component in reaching Australia’s aspirational energy goals over the next few decades. Pumped hydro is at the centre of cleaning up Queensland’s energy, and we were delighted to play a role in bringing Queensland Hydro to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138901,142672,1,'Break away from the same-same with custom illustration','2022-10-04 21:55:54','2022-10-04 21:55:54','d3c686d6-8926-47f6-8661-e616a0046520',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tiYExhhMPf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"There’s nothing more special than something made just for you.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"You hold it loudly and proudly for all to see—and they notice because there’s nothing else in the world quite like it. And this makes you treasure it that little bit more.\\n\\nThe dream of an illustrator is to have time, budget and ability to craft a bespoke masterpiece for every job that comes across their desk.\\n\\nThat dream doesn’t turn to reality very often. But that doesn’t mean your brand has to revert to using the same old stock illustrations everyone else uses, either.\\n\\nThere are so many ways to get over those hurdles when a project doesn’t have time or budget to allow for a custom piece.\\n\\nA lot of the time, stock illustration can be tweaked to give it the edge it needs to stand out from the crowd.\\n\\nChange up the colours, mix up the style and jazz up the faces.\\n\\nSometimes stock forms the base for us to build something fresh. And other times there might already be the perfect stock illustration that tells the right story without much tweaking at all.\\n\\nWhatever the constraints—budget, time, brief—there’s always a way to break free. It just takes some thinking outside of the box.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-amC4hnZM56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"If you’re drowning in a sea of same-same, come chat to us and [we’ll get you out of there in no time](/contact).\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Break away from the same-same with custom illustration','There’s nothing more special than something made just for you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138903,142674,1,'Untitled Artwork 11','2022-10-04 21:57:16','2022-10-04 21:57:16','d09da504-746b-4922-99cf-406b5c67b7b1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Untitled_Artwork-11.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Untitled_Artwork-11.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Untitled_Artwork-11.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Untitled_Artwork-11.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Untitled_Artwork-11.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Untitled_Artwork-11.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Untitled_Artwork-11.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Untitled_Artwork-11.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1500,\"originalImageHeight\":1500,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAwUG/8QAIRAAAQQCAgIDAAAAAAAAAAAAAQIDBBEAEgUhEzFBYaH/xAAUAQEAAAAAAAAAAAAAAAAAAAAD/8QAGBEBAAMBAAAAAAAAAAAAAAAAEQABQWH/2gAMAwEAAhEDEQA/ANjPkmIlJqyr1ZxIklT7V9bDpQydz0V2SGEoaLivIALTYSPk43AtCPFXs0tte5ve/wA+sItciFHZ/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#f4f0e0\",\"#50588f\",\"#eca940\",\"#a34a63\",\"#ddae96\"],\"lightness\":65,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138904,142675,1,'Break away from the same-same with custom illustration','2022-10-04 21:57:49','2022-10-04 21:57:49','d3713b20-b98c-4de4-9bce-d7e6b9a3aaaf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tiYExhhMPf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"There’s nothing more special than something made just for you.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"You hold it loudly and proudly for all to see—and they notice because there’s nothing else in the world quite like it. And this makes you treasure it that little bit more.\\n\\nThe dream of an illustrator is to have time, budget and ability to craft a bespoke masterpiece for every job that comes across their desk.\\n\\nThat dream doesn’t turn to reality very often. But that doesn’t mean your brand has to revert to using the same old stock illustrations everyone else uses, either.\\n\\nThere are so many ways to get over those hurdles when a project doesn’t have time or budget to allow for a custom piece.\\n\\nA lot of the time, stock illustration can be tweaked to give it the edge it needs to stand out from the crowd.\\n\\nChange up the colours, mix up the style and jazz up the faces.\\n\\nSometimes stock forms the base for us to build something fresh. And other times there might already be the perfect stock illustration that tells the right story without much tweaking at all.\\n\\nWhatever the constraints—budget, time, brief—there’s always a way to break free. It just takes some thinking outside of the box.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-amC4hnZM56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"If you’re drowning in a sea of same-same, come chat to us and [we’ll get you out of there in no time](/contact).\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Break away from the same-same with custom illustration','There’s nothing more special than something made just for you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138905,142676,1,'Residential Tenancies Authority','2022-10-05 03:53:27','2022-11-16 22:16:43','32154c93-c274-44e7-aa4a-efeb61cca325',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Illustrating tenancy law changes',NULL,NULL,'We all know tenancy can be complicated, from any side of the relationship. So the Residential Tenancies Authority (RTA) has introduced new laws to give tenants, landlords and property managers more certainty and transparency around their tenancy arrangements. We helped the RTA produce four animated videos to serve as friendly reminders about the law changes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bc8O0czLTg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028657?h=758f0e7169&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Ending a tenancy\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SUpdyGgoHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The RTA needed to inform the public about rental reform changes coming into effect on 1 October 2022. With such a broad audience—renters, landlords and property managers—the RTA needed an explanatory tool that relayed the information in an easily digestible, engaging and inclusive way.\\nA collection of animated explainer videos was the obvious choice.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-chZ81DIc8w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028691?h=ca954eece2&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Renting with pets\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PLy32UQvPs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The videos needed a friendly, informative tone that connected with a vast range of people. We broke the videos down into sections that addressed each of the three key audiences individually—renters, then landlords, then property managers. The audiences were represented by a diverse and inclusive suite of illustrated characters.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oGsU7M7NF2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028774?h=8eb9622a43&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Summary\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oQ8wJZ93RN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Illustration was the real standout for this project. Our illustrative style helped us depict the emotion and shared experience of renting from all sides of the tenancy relationship. The animation represented various age groups, ethnicities and occupations.\\nThe law changes are explained by friendly, engaging voiceovers that guide the videos.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YFRHfSDQGW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028736?h=a48681755c&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Repair order\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-sfiAs0GFwT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It was a pleasure to work with the team at RTA to help inform Queenslanders about the new changes to renting laws. The RTA has worked hard to make sure renting is fair for all and it was a joy to be part of bringing this to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Residential Tenancies Authority | Illustrating tenancy law changes','We all know tenancy can be complicated, from any side of the relationship. So the Residential Tenancies Authority (RTA) has introduced new laws to give tenants, landlords and property managers more certainty and transparency around their tenancy arrangements. We helped the RTA produce four animated videos to serve as friendly reminders about the law changes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138906,142677,1,'Residential Tenancies Authority','2022-10-05 03:53:28','2022-10-05 03:53:28','4c77ae7a-67df-41ff-b22c-5d66e1484078',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Illustrating tenancy law changes',NULL,NULL,'We all know tenancy can be complicated, from any side of the relationship. So the Residential Tenancies Authority (RTA) has introduced new laws to give tenants, landlords and property managers more certainty and transparency around their tenancy arrangements. We helped the RTA produce four animated videos to serve as friendly reminders about the law changes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bc8O0czLTg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028657?h=758f0e7169&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Ending a tenancy\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SUpdyGgoHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The RTA needed to inform the public about rental reform changes coming into effect on 1 October 2022. With such a broad audience—renters, landlords and property managers—the RTA needed an explanatory tool that relayed the information in an easily digestible, engaging and inclusive way.\\nA collection of animated explainer videos was the obvious choice.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-chZ81DIc8w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028691?h=ca954eece2&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Renting with pets\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PLy32UQvPs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The videos needed a friendly, informative tone that connected with a vast range of people. We broke the videos down into sections that addressed each of the three key audiences individually—renters, then landlords, then property managers. The audiences were represented by a diverse and inclusive suite of illustrated characters.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oGsU7M7NF2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028774?h=8eb9622a43&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Summary\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oQ8wJZ93RN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Illustration was the real standout for this project. Our illustrative style helped us depict the emotion and shared experience of renting from all sides of the tenancy relationship. The animation represented various age groups, ethnicities and occupations.\\nThe law changes are explained by friendly, engaging voiceovers that guide the videos.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YFRHfSDQGW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028736?h=a48681755c&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Repair order\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-sfiAs0GFwT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It was a pleasure to work with the team at RTA to help inform Queenslanders about the new changes to renting laws. The RTA has worked hard to make sure renting is fair for all and it was a joy to be part of bringing this to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138908,142679,1,'Surf Life Saving Queensland','2022-10-05 03:56:33','2022-10-05 03:56:33','63cbc28e-c9f6-468c-b667-ffadb9f2e3bd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let’s be SharkSmart!',NULL,NULL,'There’s no need to be scared of sharks—we just need to be smart.\nAnd learning is what kids do best, so we created an interactive, educational game for Surf Life Saving Queensland to teach primary-school-age kids how they should behave around sharks.\nWe had a whale of a time on this project, so let’s jump right in!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SUpdyGgoHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Surf Life Saving Queensland and the Department of Agriculture and Fisheries are promoting ‘SharkSmart’ messages to primary-school-aged children in a 12-month educational program. They asked us to develop an interactive game that educates kids about sharks and the simple things they can do at the beach to stay safe from shark-related incidents.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PLy32UQvPs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Kids are typically more interested in sharks than afraid of them, so we wanted to nurture that by making the game educational and fun, rather than fear based. Armed with our behaviour change expertise, we empowered them with knowledge about how sharks behave—such as their feeding times, where they live and how they hunt—so the kids can make smart choices. We consulted with primary school teachers to develop the game’s tone and language, ensuring it was as age-appropriate and engaging as possible.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oQ8wJZ93RN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There are so many ways to approach SharkSmart behaviours, so we created not one game, but two mini games with three modes. \\n\\nThe first game—Beach Explorer—is an open-world exploration game, set on a beach. There are items scattered across the beach—like flags, water debris and rips—that prompt questions related to SharkSmart behaviours. If the player answers correctly, they’re rewarded with a beach badge. This game is split into two modes: explorer mode and race mode.\\n\\nThe second game—Which Shark Are You?—asks the players questions about their preferences and human experiences that relate to the behaviours of tiger, bull, white and hammerhead sharks. Based on their responses, each player is assigned one of the four shark types and provided information about that shark. \\nThe whole project is elevated by NWO’s trademark custom illustration and animation—which really brings the beach to life!\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-sfiAs0GFwT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We really blew this brief out of the water: for a limited budget, we built two games from scratch, complete with a catchy custom theme song. \\nProjects like these—fun and engaging but with real purpose—are why we get out of bed every morning. The whole process from conception to delivery was really collaborative with the clients, and that definitely shows in the final product.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138910,142681,1,'Surf Life Saving Queensland','2022-10-05 04:28:42','2022-10-05 04:28:42','37af1017-2295-4d94-a02d-1051d36926ae',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let’s be SharkSmart!',NULL,NULL,'There’s no need to be scared of sharks—we just need to be smart.\nAnd learning is what kids do best, so we created an interactive, educational game for Surf Life Saving Queensland to teach primary-school-age kids how they should behave around sharks.\nWe had a whale of a time on this project, so let’s jump right in!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SUpdyGgoHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Surf Life Saving Queensland and the Department of Agriculture and Fisheries are promoting ‘SharkSmart’ messages to primary-school-aged children in a 12-month educational program. They asked us to develop an interactive game that educates kids about sharks and the simple things they can do at the beach to stay safe from shark-related incidents.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PLy32UQvPs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Kids are typically more interested in sharks than afraid of them, so we wanted to nurture that by making the game educational and fun, rather than fear based. Armed with our behaviour change expertise, we empowered them with knowledge about how sharks behave—such as their feeding times, where they live and how they hunt—so the kids can make smart choices. We consulted with primary school teachers to develop the game’s tone and language, ensuring it was as age-appropriate and engaging as possible.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oQ8wJZ93RN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There are so many ways to approach SharkSmart behaviours, so we created not one game, but two mini games with three modes. \\n\\nThe first game—Beach Explorer—is an open-world exploration game, set on a beach. There are items scattered across the beach—like flags, water debris and rips—that prompt questions related to SharkSmart behaviours. If the player answers correctly, they’re rewarded with a beach badge. This game is split into two modes: explorer mode and race mode.\\n\\nThe second game—Which Shark Are You?—asks the players questions about their preferences and human experiences that relate to the behaviours of tiger, bull, white and hammerhead sharks. Based on their responses, each player is assigned one of the four shark types and provided information about that shark. \\nThe whole project is elevated by NWO’s trademark custom illustration and animation—which really brings the beach to life!\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-sfiAs0GFwT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We really blew this brief out of the water: for a limited budget, we built two games from scratch, complete with a catchy custom theme song. \\nProjects like these—fun and engaging but with real purpose—are why we get out of bed every morning. The whole process from conception to delivery was really collaborative with the clients, and that definitely shows in the final product.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138913,142684,1,'Break away from the same-same with custom illustration','2022-10-09 21:35:20','2022-10-09 21:35:20','48e7e526-039d-4f88-8625-7ced6d7d44ab',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tiYExhhMPf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The most important thing for a brand is to stand out from the competition.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Too often, companies don\'t understand their brand well enough to know its unique personality and look. \\n\\nAs a result, they use stock imagery, and in doing so, immediately dilute the brand and its message. \\n\\nThis is where custom illustration can play a critical role in a brand standing out from the pack.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZOmCf7hZyl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"There’s nothing more special than something made just for you.\",\"plainText\":\"There’s nothing more special than something made just for you.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cezN1PdcHJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"You hold it loudly and proudly for all to see—and they notice because there’s nothing else in the world quite like it. And this makes you treasure it that little bit more.\\n\\nThe dream of an illustrator is to have time, budget and ability to craft a bespoke masterpiece for every job that comes across their desk.\\n\\nThat dream doesn’t turn to reality very often. But that doesn’t mean your brand has to revert to using the same old stock illustrations everyone else uses, either.\\n\\nThere are so many ways to get over those hurdles when a project doesn’t have time or budget to allow for a custom piece.\\n\\nA lot of the time, stock illustration can be tweaked to give it the edge it needs to stand out from the crowd.\\n\\nChange up the colours, mix up the style and jazz up the faces.\\n\\nSometimes stock forms the base for us to build something fresh. And other times there might already be the perfect stock illustration that tells the right story without much tweaking at all.\\n\\nWhatever the constraints—budget, time, brief—there’s always a way to break free. It just takes some thinking outside of the box.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-amC4hnZM56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"If you’re drowning in a sea of same-same, come chat to us and [we\'ll make your brand stand out](/contact).\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Break away from the same-same with custom illustration','There’s nothing more special than something made just for you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138915,142686,1,'Break away from the same-same with custom illustration','2022-10-09 21:35:41','2022-10-09 21:35:41','1471857f-668f-4677-b25f-774867221575',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tiYExhhMPf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The most important thing for a brand is to stand out from the competition.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Too often, companies don\'t understand their brand well enough to know its unique personality and look. \\n\\nAs a result, they use stock imagery, and in doing so, immediately dilute the brand and its message. \\n\\nThis is where custom illustration can play a critical role in a brand standing out from the pack.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZOmCf7hZyl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"There’s nothing more special than something made just for you.\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cezN1PdcHJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"You hold it loudly and proudly for all to see—and they notice because there’s nothing else in the world quite like it. And this makes you treasure it that little bit more.\\n\\nThe dream of an illustrator is to have time, budget and ability to craft a bespoke masterpiece for every job that comes across their desk.\\n\\nThat dream doesn’t turn to reality very often. But that doesn’t mean your brand has to revert to using the same old stock illustrations everyone else uses, either.\\n\\nThere are so many ways to get over those hurdles when a project doesn’t have time or budget to allow for a custom piece.\\n\\nA lot of the time, stock illustration can be tweaked to give it the edge it needs to stand out from the crowd.\\n\\nChange up the colours, mix up the style and jazz up the faces.\\n\\nSometimes stock forms the base for us to build something fresh. And other times there might already be the perfect stock illustration that tells the right story without much tweaking at all.\\n\\nWhatever the constraints—budget, time, brief—there’s always a way to break free. It just takes some thinking outside of the box.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-amC4hnZM56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"If you’re drowning in a sea of same-same, come chat to us and [we\'ll make your brand stand out](/contact).\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Break away from the same-same with custom illustration','There’s nothing more special than something made just for you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138917,142688,1,'Break away from the same-same with custom illustration','2022-10-09 21:35:58','2022-10-09 21:35:58','4a35bb40-cd61-4593-86e0-47b997a6303b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tiYExhhMPf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The most important thing for a brand is to stand out from the competition.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Too often, companies don\'t understand their brand well enough to know its unique personality and look. \\n\\nAs a result, they use stock imagery, and in doing so, immediately dilute the brand and its message. \\n\\nThis is where custom illustration can play a critical role in a brand standing out from the pack.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZOmCf7hZyl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":null,\"plainText\":\"There’s nothing more special than something made just for you.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cezN1PdcHJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"You hold it loudly and proudly for all to see—and they notice because there’s nothing else in the world quite like it. And this makes you treasure it that little bit more.\\n\\nThe dream of an illustrator is to have time, budget and ability to craft a bespoke masterpiece for every job that comes across their desk.\\n\\nThat dream doesn’t turn to reality very often. But that doesn’t mean your brand has to revert to using the same old stock illustrations everyone else uses, either.\\n\\nThere are so many ways to get over those hurdles when a project doesn’t have time or budget to allow for a custom piece.\\n\\nA lot of the time, stock illustration can be tweaked to give it the edge it needs to stand out from the crowd.\\n\\nChange up the colours, mix up the style and jazz up the faces.\\n\\nSometimes stock forms the base for us to build something fresh. And other times there might already be the perfect stock illustration that tells the right story without much tweaking at all.\\n\\nWhatever the constraints—budget, time, brief—there’s always a way to break free. It just takes some thinking outside of the box.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-amC4hnZM56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"If you’re drowning in a sea of same-same, come chat to us and [we\'ll make your brand stand out](/contact).\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Break away from the same-same with custom illustration','There’s nothing more special than something made just for you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138919,142690,1,'Break away from the same-same with custom illustration','2022-10-09 21:36:39','2022-10-09 21:36:39','325e70e8-6c12-41e0-8d96-f5c975a57999',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tiYExhhMPf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The most important thing for a brand is to stand out from the competition.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Too often, companies don\'t understand their brand well enough to know its unique personality and look. \\n\\nAs a result, they use stock imagery, and in doing so, immediately dilute the brand and its message. \\n\\nThis is where custom illustration can play a critical role in making a brand stand out from the pack.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZOmCf7hZyl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":null,\"plainText\":\"There’s nothing more special than something made just for you.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cezN1PdcHJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"You hold it loudly and proudly for all to see—and they notice because there’s nothing else in the world quite like it. And this makes you treasure it that little bit more.\\n\\nThe dream of an illustrator is to have time, budget and ability to craft a bespoke masterpiece for every job that comes across their desk.\\n\\nThat dream doesn’t turn to reality very often. But that doesn’t mean your brand has to revert to using the same old stock illustrations everyone else uses, either.\\n\\nThere are so many ways to get over those hurdles when a project doesn’t have time or budget to allow for a custom piece.\\n\\nA lot of the time, stock illustration can be tweaked to give it the edge it needs to stand out from the crowd.\\n\\nChange up the colours, mix up the style and jazz up the faces.\\n\\nSometimes stock forms the base for us to build something fresh. And other times there might already be the perfect stock illustration that tells the right story without much tweaking at all.\\n\\nWhatever the constraints—budget, time, brief—there’s always a way to break free. It just takes some thinking outside of the box.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-amC4hnZM56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"If you’re drowning in a sea of same-same, come chat to us and [we\'ll make your brand stand out](/contact).\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Break away from the same-same with custom illustration','There’s nothing more special than something made just for you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138921,142692,1,'Break away from the same-same with custom illustration','2022-10-09 21:37:04','2022-10-09 21:37:04','2354be0c-5cce-4752-b7a5-d8e07a18c082',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tiYExhhMPf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The most important thing for a brand is to stand out from the competition.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Too often, companies don\'t understand their brand well enough to know its unique personality and look. \\n\\nAs a result, they use stock imagery, and in doing so, immediately dilute the brand and its message. \\n\\nThis is where custom illustration can play a critical role in making a brand stand out from the pack.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZOmCf7hZyl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":null,\"plainText\":\"There’s nothing more special than something made just for you.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cezN1PdcHJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"You hold it loudly and proudly for all to see—and they notice because there’s nothing else in the world quite like it. And this makes you treasure it that little bit more.\\n\\nThe dream of an illustrator is to have time, budget and ability to craft a bespoke masterpiece for every job that comes across their desk.\\n\\nThat dream doesn’t turn to reality very often. But that doesn’t mean your brand has to revert to using the same old stock illustrations everyone else uses, either.\\n\\nThere are so many ways to get over those hurdles when a project doesn’t have time or budget to allow for a custom piece.\\n\\nA lot of the time, stock illustration can be tweaked to give it the edge it needs to stand out from the crowd.\\n\\nChange up the colours, mix up the style and jazz up the faces.\\n\\nSometimes stock forms the base for us to build something fresh. And other times there might already be the perfect stock illustration that tells the right story without much tweaking at all.\\n\\nWhatever the constraints—budget, time, brief—there’s always a way to break free. It just takes some thinking outside of the box.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-amC4hnZM56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"If you’re drowning in a sea of same-same, come chat to us and [we\'ll make your brand stand out](/contact).\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Break away from the same-same with custom illustration','There’s nothing more special than something made just for you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138923,142694,1,'Break away from the same-same with custom illustration','2022-10-09 21:37:34','2022-10-09 21:37:34','312af9ea-9f01-4b5a-9097-178703de0061',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tiYExhhMPf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The most important thing for a brand is to stand out from the competition.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Too often, companies don\'t understand their brand well enough to know its unique personality and look. \\n\\nAs a result, they use stock imagery, and in doing so, immediately dilute the brand and its message. \\n\\nThis is where custom illustration can play a critical role in making a brand stand out from the pack.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZOmCf7hZyl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":null,\"plainText\":\"There’s nothing more special than something made just for you.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cezN1PdcHJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"You hold it loudly and proudly for all to see—and they notice because there’s nothing else in the world quite like it. And this makes you treasure it that little bit more.\\n\\nThe dream of an illustrator is to have time, budget and ability to craft a bespoke masterpiece for every job that comes across their desk.\\n\\nThat dream doesn’t turn to reality very often. But that doesn’t mean your brand has to revert to using the same old stock illustrations everyone else uses, either.\\n\\nThere are so many ways to get over those hurdles when a project doesn’t have time or budget to allow for a custom piece.\\n\\nA lot of the time, stock illustration can be tweaked to give it the edge it needs to stand out from the crowd.\\n\\nChange up the colours, mix up the style and jazz up the faces.\\n\\nSometimes stock forms the base for us to build something fresh. And other times there might already be the perfect stock illustration that tells the right story without much tweaking at all.\\n\\nWhatever the constraints—budget, time, brief—there’s always a way to break free. It just takes some thinking outside of the box.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-amC4hnZM56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"If you’re drowning in a sea of same-same, come chat to us and [we\'ll make your brand stand out](/contact).\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Break away from the same-same with custom illustration','There’s nothing more special than something made just for you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138925,142696,1,'Break away from the same-same with custom illustration','2022-10-09 21:39:09','2022-10-09 21:39:09','af7c0162-2f62-4949-9e5a-942836daa09c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tiYExhhMPf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The most important thing for a brand is to stand out from the competition.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Too often, companies don\'t understand their brand well enough to know its unique personality and look. \\n\\nAs a result, they use stock imagery, and in doing so, immediately dilute the brand and its message. \\n\\nThis is where custom illustration can play a critical role in making a brand stand out from the pack.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZOmCf7hZyl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"There’s nothing more special than something made just for you.\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cezN1PdcHJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"You hold it loudly and proudly for all to see—and they notice because there’s nothing else in the world quite like it. And this makes you treasure it that little bit more.\\n\\nThe dream of an illustrator is to have time, budget and ability to craft a bespoke masterpiece for every job that comes across their desk.\\n\\nThat dream doesn’t turn to reality very often. But that doesn’t mean your brand has to revert to using the same old stock illustrations everyone else uses, either.\\n\\nThere are so many ways to get over those hurdles when a project doesn’t have time or budget to allow for a custom piece.\\n\\nA lot of the time, stock illustration can be tweaked to give it the edge it needs to stand out from the crowd.\\n\\nChange up the colours, mix up the style and jazz up the faces.\\n\\nSometimes stock forms the base for us to build something fresh. And other times there might already be the perfect stock illustration that tells the right story without much tweaking at all.\\n\\nWhatever the constraints—budget, time, brief—there’s always a way to break free. It just takes some thinking outside of the box.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-amC4hnZM56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"If you’re drowning in a sea of same-same, come chat to us and [we\'ll make your brand stand out](/contact).\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Break away from the same-same with custom illustration','There’s nothing more special than something made just for you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138926,142697,1,'Break away from the same-same with custom illustration','2022-10-09 21:39:43','2022-10-09 21:39:43','593b3de6-b3fa-4588-b2f5-6fcfd7f52f5e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tiYExhhMPf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The most important thing for a brand is to stand out from the competition.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Too often, companies don\'t understand their brand well enough to know its unique personality and look. \\n\\nAs a result, they use stock imagery, and in doing so, immediately dilute the brand and its message. \\n\\nThis is where custom illustration can play a critical role in making a brand stand out from the pack.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZOmCf7hZyl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"There’s nothing more special than something made just for you.\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cezN1PdcHJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"You hold it loudly and proudly for all to see—and they notice because there’s nothing else in the world quite like it. And this makes you treasure it that little bit more.\\n\\nThe dream of an illustrator is to have time, budget and ability to craft a bespoke masterpiece for every job that comes across their desk.\\n\\nThat dream doesn’t turn to reality very often. But that doesn’t mean your brand has to revert to using the same old stock illustrations everyone else uses, either.\\n\\nThere are so many ways to get over those hurdles when a project doesn’t have time or budget to allow for a custom piece.\\n\\nA lot of the time, stock illustration can be tweaked to give it the edge it needs to stand out from the crowd.\\n\\nChange up the colours, mix up the style and jazz up the faces.\\n\\nSometimes stock forms the base for us to build something fresh. And other times there might already be the perfect stock illustration that tells the right story without much tweaking at all.\\n\\nWhatever the constraints—budget, time, brief—there’s always a way to break free. It just takes some thinking outside of the box.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-amC4hnZM56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"If you’re drowning in a sea of same-same, come chat to us and [we\'ll make your brand stand out](/contact).\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Break away from the same-same with custom illustration','There’s nothing more special than something made just for you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138928,142699,1,'Queensland Hydro','2022-10-10 01:16:50','2022-10-10 01:16:50','cac23111-e02a-4535-9d7d-6e7e430852f8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Powering Queensland’s future',NULL,NULL,'Queensland has some ambitious goals for a clean energy future: 50 per cent renewable energy by 2030 and zero-net emissions by 2050. Pumped hydro is the key to achieving this, and the state government is facilitating pumped hydro through a new subsidiary brand. We helped build the brand for Queensland Hydro on a strategic, evidence-based foundation to set it up for a successful journey of powering Queensland’s future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MJwz0wrwkL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142653\",\"142652\",\"142651\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RCifzof72P\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using funding provided by the Queensland Government, Powerlink needed to establish a subsidiary entity to carry the planning and transmission connection work for potential pumped hydro projects across Queensland. Our creation of the brand for Queensland Hydro involved extensive discovery prior to crafting a brand identity, designing marketing collateral, and copywriting, designing and developing a website.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fdid0P67Ag\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142654\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As we often do, we began this project with a comprehensive discovery phase. This involved a review of Queensland Hydro’s contemporaries and competitive landscape, consultation with a First Nations advisor on theming and language, and stakeholder workshops to clarify the brand personality, purpose and objectives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5o9yXWhZxU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our deliverables included a brand name, logo, visual identity, collateral, key messaging and content for the website. We kept the design fresh and engaging, while accommodating the needs of the various stakeholders involved.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvkuSRS5qb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142665\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fjwEEvmBHp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Queensland Hydro will be a vital component in reaching Australia’s aspirational energy goals over the next few decades. Pumped hydro is at the centre of cleaning up Queensland’s energy, and we were delighted to play a role in bringing Queensland Hydro to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138929,142700,1,'Queensland Hydro','2022-10-10 05:42:34','2022-10-10 05:42:34','6e75860b-386a-4450-9c64-0a17762e9d70',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Powering Queensland’s future',NULL,NULL,'Queensland has some ambitious goals for a clean energy future: 50 per cent renewable energy by 2030 and zero-net emissions by 2050. Pumped hydro is the key to achieving this, and the state government is facilitating pumped hydro through a new subsidiary brand. We helped build the brand for Queensland Hydro on a strategic, evidence-based foundation to set it up for a successful journey of powering Queensland’s future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MJwz0wrwkL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142653\",\"142652\",\"142651\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RCifzof72P\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The Queensland Government needed to establish a subsidiary entity to carry the planning and transmission connection work for potential pumped hydro projects across Queensland. Our creation of the brand for Queensland Hydro involved extensive discovery prior to crafting a brand identity, designing marketing collateral, and copywriting, designing and developing a website.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fdid0P67Ag\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142654\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As we often do, we began this project with a comprehensive discovery phase. This involved a review of Queensland Hydro’s contemporaries and competitive landscape, consultation with a First Nations advisor on theming and language, and stakeholder workshops to clarify the brand personality, purpose and objectives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5o9yXWhZxU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our deliverables included a brand name, logo, visual identity, collateral, key messaging and content for the website. We kept the design fresh and engaging, while accommodating the needs of the various stakeholders involved.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvkuSRS5qb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142665\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fjwEEvmBHp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Queensland Hydro will be a vital component in reaching Australia’s aspirational energy goals over the next few decades. Pumped hydro is at the centre of cleaning up Queensland’s energy, and we were delighted to play a role in bringing Queensland Hydro to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138931,142702,1,'22 09 QLD Hydro Website','2022-10-10 05:50:28','2022-10-10 05:50:28','24d57ddd-efae-4ce9-a15d-5378bcda7925',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_09-QLD-Hydro-Website_2022-10-10-055027_yuxp.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_09-QLD-Hydro-Website_2022-10-10-055027_yuxp.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_09-QLD-Hydro-Website_2022-10-10-055027_yuxp.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_09-QLD-Hydro-Website_2022-10-10-055027_yuxp.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_09-QLD-Hydro-Website_2022-10-10-055027_yuxp.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_09-QLD-Hydro-Website_2022-10-10-055027_yuxp.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_09-QLD-Hydro-Website_2022-10-10-055027_yuxp.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_09-QLD-Hydro-Website_2022-10-10-055027_yuxp.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_09-QLD-Hydro-Website_2022-10-10-055027_yuxp.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_09-QLD-Hydro-Website_2022-10-10-055027_yuxp.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_09-QLD-Hydro-Website_2022-10-10-055027_yuxp.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_09-QLD-Hydro-Website_2022-10-10-055027_yuxp.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_09-QLD-Hydro-Website_2022-10-10-055027_yuxp.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_09-QLD-Hydro-Website_2022-10-10-055027_yuxp.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_09-QLD-Hydro-Website_2022-10-10-055027_yuxp.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_09-QLD-Hydro-Website_2022-10-10-055027_yuxp.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":768,\"2560\":1536,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":384},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":3125,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABgQF/8QAIhAAAgEDAwUBAAAAAAAAAAAAAQMCAAQhBTRzERIiMbHB/8QAFgEBAQEAAAAAAAAAAAAAAAAABAED/8QAHBEAAgICAwAAAAAAAAAAAAAAAAECEQMSITFx/9oADAMBAAIRAxEAPwC/UZsuSgJfgNPXtkRitZa1wFg5J0zUTcFsiq2ZbsKvGQEzg+s4rOhGwWTuTzj7VQbJ2vRDou/vOX9NQSj/2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#236169\",\"#dadbd8\",\"#7bb2c3\",\"#6c6f6b\",\"#656464\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138932,142703,1,'Queensland Hydro','2022-10-10 05:51:11','2022-10-10 05:51:11','2a57d140-209f-4177-af15-1236a6a03b5c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Powering Queensland’s future',NULL,NULL,'Queensland has some ambitious goals for a clean energy future: 50 per cent renewable energy by 2030 and zero-net emissions by 2050. Pumped hydro is the key to achieving this, and the state government is facilitating pumped hydro through a new subsidiary brand. We helped build the brand for Queensland Hydro on a strategic, evidence-based foundation to set it up for a successful journey of powering Queensland’s future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MJwz0wrwkL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142653\",\"142652\",\"142651\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RCifzof72P\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The Queensland Government needed to establish a subsidiary entity to carry the planning and transmission connection work for potential pumped hydro projects across Queensland. Our creation of the brand for Queensland Hydro involved extensive discovery prior to crafting a brand identity, designing marketing collateral, and copywriting, designing and developing a website.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fdid0P67Ag\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142654\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As we often do, we began this project with a comprehensive discovery phase. This involved a review of Queensland Hydro’s contemporaries and competitive landscape, consultation with a First Nations advisor on theming and language, and stakeholder workshops to clarify the brand personality, purpose and objectives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5o9yXWhZxU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our deliverables included a brand name, logo, visual identity, collateral, key messaging and content for the website. We kept the design fresh and engaging, while accommodating the needs of the various stakeholders involved.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvkuSRS5qb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142702\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fjwEEvmBHp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Queensland Hydro will be a vital component in reaching Australia’s aspirational energy goals over the next few decades. Pumped hydro is at the centre of cleaning up Queensland’s energy, and we were delighted to play a role in bringing Queensland Hydro to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138934,142705,1,'Queensland Hydro','2022-10-12 06:29:18','2022-10-12 06:29:18','86b1ba8a-7745-48f4-9e2e-f96b92c4cf9d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Powering Queensland’s future',NULL,NULL,'Queensland has some ambitious goals for a clean energy future: 50 per cent renewable energy by 2030 and zero-net emissions by 2050. Pumped hydro is the key to achieving this, and the state government is facilitating pumped hydro through a new subsidiary brand. We helped build the brand for Queensland Hydro on a strategic, evidence-based foundation to set it up for a successful journey of powering Queensland’s future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MJwz0wrwkL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142653\",\"142652\",\"142651\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RCifzof72P\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The Queensland Government needed to establish a subsidiary entity to carry the planning and transmission connection work for potential pumped hydro projects across Queensland. Our creation of the brand for Queensland Hydro involved extensive discovery prior to crafting a brand identity, designing marketing collateral, and copywriting, designing and developing a website.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fdid0P67Ag\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142654\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As we often do, we began this project with a comprehensive discovery phase. This involved a review of Queensland Hydro’s contemporaries and competitive landscape, consultation with a First Nations advisor on theming and language, and stakeholder workshops to clarify the brand personality, purpose and objectives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5o9yXWhZxU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our deliverables included a brand name, logo, visual identity, collateral, key messaging and content for the website. We kept the design fresh and engaging, while accommodating the needs of the various stakeholders involved.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvkuSRS5qb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142702\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fjwEEvmBHp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Queensland Hydro will be a vital component in reaching Australia’s aspirational energy goals over the next few decades. Pumped hydro is at the centre of cleaning up Queensland’s energy, and we were delighted to play a role in bringing Queensland Hydro to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138935,142706,1,'Queensland Hydro','2022-10-12 06:38:26','2022-10-12 06:38:26','32923b6a-66f2-4f07-b936-4f067b8cd020',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Powering Queensland’s future',NULL,NULL,'Queensland has some ambitious goals for a clean energy future: 50 per cent renewable energy by 2030 and zero-net emissions by 2050. Pumped hydro is the key to achieving this, and the state government is facilitating pumped hydro through a new subsidiary brand. We helped build the brand for Queensland Hydro on a strategic, evidence-based foundation to set it up for a successful journey of powering Queensland’s future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RCifzof72P\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using funding provided by the Queensland Government, Powerlink needed to establish a subsidiary entity to carry the planning and transmission connection work for potential pumped hydro projects across Queensland. Our creation of the brand for Queensland Hydro involved extensive discovery prior to crafting a brand identity, designing marketing collateral, and copywriting, designing and developing a website.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fdid0P67Ag\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As we often do, we began this project with a comprehensive discovery phase. This involved a review of Queensland Hydro’s contemporaries and competitive landscape, consultation with a First Nations advisor on theming and language, and stakeholder workshops to clarify the brand personality, purpose and objectives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5o9yXWhZxU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our deliverables included a brand name, logo, visual identity, collateral, key messaging and content for the website. We kept the design fresh and engaging, while accommodating the needs of the various stakeholders involved.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fjwEEvmBHp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Queensland Hydro will be a vital component in reaching Australia’s aspirational energy goals over the next few decades. Pumped hydro is at the centre of cleaning up Queensland’s energy, and we were delighted to play a role in bringing Queensland Hydro to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138936,142707,1,'Queensland Hydro','2022-10-12 06:38:57','2022-10-12 06:38:57','71eab1c7-c202-4cda-8580-81aedad72e48',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Powering Queensland’s future',NULL,NULL,'Queensland has some ambitious goals for a clean energy future: 50 per cent renewable energy by 2030 and zero-net emissions by 2050. Pumped hydro is the key to achieving this, and the state government is facilitating pumped hydro through a new subsidiary brand. We helped build the brand for Queensland Hydro on a strategic, evidence-based foundation to set it up for a successful journey of powering Queensland’s future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MJwz0wrwkL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142653\",\"142652\",\"142651\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RCifzof72P\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The Queensland Government needed to establish a subsidiary entity to carry the planning and transmission connection work for potential pumped hydro projects across Queensland. Our creation of the brand for Queensland Hydro involved extensive discovery prior to crafting a brand identity, designing marketing collateral, and copywriting, designing and developing a website.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fdid0P67Ag\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142654\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As we often do, we began this project with a comprehensive discovery phase. This involved a review of Queensland Hydro’s contemporaries and competitive landscape, consultation with a First Nations advisor on theming and language, and stakeholder workshops to clarify the brand personality, purpose and objectives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5o9yXWhZxU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our deliverables included a brand name, logo, visual identity, collateral, key messaging and content for the website. We kept the design fresh and engaging, while accommodating the needs of the various stakeholders involved.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvkuSRS5qb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142702\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fjwEEvmBHp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Queensland Hydro will be a vital component in reaching Australia’s aspirational energy goals over the next few decades. Pumped hydro is at the centre of cleaning up Queensland’s energy, and we were delighted to play a role in bringing Queensland Hydro to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138937,142708,1,'Queensland Hydro','2022-10-12 06:39:01','2022-10-12 06:39:01','b53eeb52-0947-4a17-acf1-954eb536f8de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Powering Queensland’s future',NULL,NULL,'Queensland has some ambitious goals for a clean energy future: 50 per cent renewable energy by 2030 and zero-net emissions by 2050. Pumped hydro is the key to achieving this, and the state government is facilitating pumped hydro through a new subsidiary brand. We helped build the brand for Queensland Hydro on a strategic, evidence-based foundation to set it up for a successful journey of powering Queensland’s future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MJwz0wrwkL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142653\",\"142652\",\"142651\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RCifzof72P\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The Queensland Government needed to establish a subsidiary entity to carry the planning and transmission connection work for potential pumped hydro projects across Queensland. Our creation of the brand for Queensland Hydro involved extensive discovery prior to crafting a brand identity, designing marketing collateral, and copywriting, designing and developing a website.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fdid0P67Ag\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142654\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As we often do, we began this project with a comprehensive discovery phase. This involved a review of Queensland Hydro’s contemporaries and competitive landscape, consultation with a First Nations advisor on theming and language, and stakeholder workshops to clarify the brand personality, purpose and objectives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5o9yXWhZxU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our deliverables included a brand name, logo, visual identity, collateral, key messaging and content for the website. We kept the design fresh and engaging, while accommodating the needs of the various stakeholders involved.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvkuSRS5qb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142702\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fjwEEvmBHp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Queensland Hydro will be a vital component in reaching Australia’s aspirational energy goals over the next few decades. Pumped hydro is at the centre of cleaning up Queensland’s energy, and we were delighted to play a role in bringing Queensland Hydro to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138939,142710,1,'Queensland Hydro','2022-10-12 06:39:19','2022-10-12 06:39:19','449594bf-0dd6-4b8f-9608-68e07c963649',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Powering Queensland’s future',NULL,NULL,'Queensland has some ambitious goals for a clean energy future: 50 per cent renewable energy by 2030 and zero-net emissions by 2050. Pumped hydro is the key to achieving this, and the state government is facilitating pumped hydro through a new subsidiary brand. We helped build the brand for Queensland Hydro on a strategic, evidence-based foundation to set it up for a successful journey of powering Queensland’s future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MJwz0wrwkL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142653\",\"142652\",\"142651\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RCifzof72P\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The Queensland Government needed to establish a subsidiary entity to carry the planning and transmission connection work for potential pumped hydro projects across Queensland. Our creation of the brand for Queensland Hydro involved extensive discovery prior to crafting a brand identity, designing marketing collateral, and copywriting, designing and developing a website.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fdid0P67Ag\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142654\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As we often do, we began this project with a comprehensive discovery phase. This involved a review of Queensland Hydro’s contemporaries and competitive landscape, consultation with a First Nations advisor on theming and language, and stakeholder workshops to clarify the brand personality, purpose and objectives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5o9yXWhZxU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our deliverables included a brand name, logo, visual identity, collateral, key messaging and content for the website. We kept the design fresh and engaging, while accommodating the needs of the various stakeholders involved.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvkuSRS5qb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142702\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fjwEEvmBHp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Queensland Hydro will be a vital component in reaching Australia’s aspirational energy goals over the next few decades. Pumped hydro is at the centre of cleaning up Queensland’s energy, and we were delighted to play a role in bringing Queensland Hydro to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138940,142711,1,'Careers','2022-10-13 23:32:45','2022-10-13 23:32:45','35ea6869-ec71-4253-9c60-35c85bcf3ed0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NyO0Ik0kgl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Careers\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We are a Brisbane-based agency renowned for our evidence-based, strategic approach to truly wonderful creative work. We are strongly purpose-driven—wholeheartedly committed to making a meaningful difference in the lives of our clients, their customers and the community at large. Our work is rewarding.\\n\\nThe best part of what we do is doing it together. There’s nothing quite like a room full of inspired, inspiring people united by purpose and passion—and we’re thrilled at the idea of you being a part of that.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Careers\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GoUEZyUfSg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-rG4w99hwoM\",\"content\":{\"fields\":{\"accordionContent\":{\"new1\":{\"type\":\"accordionBlock\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"accordionTitle\":\"Senior designer\",\"accordionText\":\"As our senior brand and campaign designer, you’ll be a part of the end-to-end creative process to create and recommend the best design and visual solutions for each client. \\n\\nYou will assist the Head of Design, and deliver a clear design vision and brand story for all products and services with each client.\\n\\nYou’ll have 8+ years of agency experience, in both branding and campaign. Your portfolio will include examples of brand development, identity and design, in both print and digital, as well as strong retail campaign experience. \\n\\nYou love designing high-end visual work as part of a thriving studio. \\n\\nYou\'re a great communicator and love to get hands-on by getting involved with branding workshops and helping with photo/video shoots. \\n\\nWe love creative side hustles, so if you’ve got one, we’d love to hear about it. \\n\\n\\n**As a creative you’ll bring**\\n<ul>\\n  <li>•  A desire for generating top-quality work grounded with metaphor and hidden meaning and detail, and executed with a distinct passion for your craft</li>\\n  <li>•  Versatility and well-rounded skills to work across many different clients, adapting to varying styles, within timeframes and budgets</li>\\n  <li>•  A hunger to create award-winning work that you can own</li>\\n  <li>•  A relaxed mindset to pitch in with whatever’s required</li>\\n</ul>\\n\\n**As an applicant you’ll bring**\\n<ul>\\n  <li>•  4+ years as a senior designer, 8+ years in the industry</li>\\n  <li>•  An awesome portfolio with variety but also a degree or equivalent qualification</li>\\n  <li>•  Passion for working with and alongside other people, collaborating for creative solutions and outcomes</li>\\n  <li>•  Flexibility and a team-focused attitude</li>\\n  <li>•  High-level attention to detail</li>\\n  <li>•  Amazing understanding of typography and its application</li>\\n  <li>•  Solid suite skills, specifically Adobe and Figma</li>\\n  <li>•  Ability to roll out a brand from go to whoa, including style guide, marketing/social collateral and website</li>\\n  <li>•  Potentially, a second love behind branding – like digital design, UX or animation</li>\\n  <li>•  Keen time management with the ability to meet tight deadlines</li>\\n  <li>•  A commitment for constant progression and desire to go above and beyond</li>\\n  <li>•  A strong understanding of traditional channels, platforms and new technology</li>\\n  <li>•  A high level of energy and enthusiasm along with a lifelong calling for karaoke. (Not 100% necessary. Just 99%.).</li>\\n</ul>\",\"buttonText\":\"Apply now\",\"buttonUrl\":\"#applicationForm\"}}},\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GqLHJAoMsp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The Benefits\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This is a rare opportunity to join a fast-growing and supportive agency in a very exciting phase of its evolution. A competitive salary will be negotiated.\\nEveryone at NWO enjoys fantastic benefits – from flexibility to bonuses, professional development and a comprehensive wellbeing program.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Flexibility and additional leave**\\n\\n- Hybrid working environment with genuine flexibility work from home and our office at Greenslopes\\n- One day per semester of paid study leave\\n- Early, late and split day options\\n- Extra day of leave for an extra happy birthday\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Bonus benefits**\\n\\n- $650 a year via AirWallex to spend on you, however you choose ($50 a month–extra $50 in your birthday month)\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new5\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Professional development**\\n\\n- Work with top executives in wide-ranging sectors\\n- Gain deep expertise across all creative fields\\n- Flexible teams means you’ll work on every account\\n- Paid professional membership of your choice\\n- Annual $1000 professional development budget\\n- Learning and development plan for every employee\\n- Study leave for post-graduate study\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new6\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Wellbeing**\\n\\n- Weekly or fortnightly 1-1 with direct manager\\n- Quarterly goal-setting and performance review\\n- Free access to Employee Assistance Program\\n- Intentional Wellbeing at Work program, including massage and yoga\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new7\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Happy Friyay (and every other day)**\\n\\n- Weekly team lunches and drinks\\n- Quarterly team nights out\\n- EOFY and Christmas staff parties\\n- Mid-year and end-of-year all-team days to rest, reflect and plan\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LhE8ewXDdj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\'s next?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"If this role sounds perfect for you, fill in the apply form below, and attach your cover letter and a link to your website or portfolio. \\n\\nWe’re looking forward to saying hello!\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BtRUbwXzyb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-s0nVisNYi6\",\"content\":{\"fields\":{\"spacer\":\"pt-8 md:pt-16 bg-black\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fz4qdj0CRS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<div id=\\\"applicationForm\\\">\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: \\\"na1\\\",\\n    portalId: \\\"8394441\\\",\\n    formId: \\\"54bb36ff-8ada-4b4f-b1f9-73d1c7fc42c6\\\"\\n  });\\n</script>\\n</div>\",\"backgroundColour\":\"bg-black\",\"sectionTitle\":\"Application forms\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Careers at New Word Order','We are a Brisbane-based agency renowned for our evidence-based, strategic approach to truly wonderful creative work','careers design copy digital','New Word Order',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138941,142712,1,'Careers','2022-10-13 23:33:08','2022-10-13 23:33:08','bb496787-c40d-4d15-b36f-81e1ccb430b8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NyO0Ik0kgl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Careers\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We are a Brisbane-based agency renowned for our evidence-based, strategic approach to truly wonderful creative work. We are strongly purpose-driven—wholeheartedly committed to making a meaningful difference in the lives of our clients, their customers and the community at large. Our work is rewarding.\\n\\nThe best part of what we do is doing it together. There’s nothing quite like a room full of inspired, inspiring people united by purpose and passion—and we’re thrilled at the idea of you being a part of that.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Careers\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GoUEZyUfSg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-rG4w99hwoM\",\"content\":{\"fields\":{\"accordionContent\":{\"new1\":{\"type\":\"accordionBlock\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"accordionTitle\":\"Senior designer\",\"accordionText\":\"As our senior brand and campaign designer, you’ll be a part of the end-to-end creative process to create and recommend the best design and visual solutions for each client. \\n\\nYou will assist the Head of Design, and deliver a clear design vision and brand story for all products and services with each client.\\n\\nYou’ll have 8+ years of agency experience, in both branding and campaign. Your portfolio will include examples of brand development, identity and design, in both print and digital, as well as strong retail campaign experience. \\n\\nYou love designing high-end visual work as part of a thriving studio. \\n\\nYou\'re a great communicator and love to get hands-on by getting involved with branding workshops and helping with photo/video shoots. \\n\\nWe love creative side hustles, so if you’ve got one, we’d love to hear about it. \\n\\n\\n**As a creative you’ll bring**\\n<ul>\\n  <li>•  A desire for generating top-quality work grounded with metaphor and hidden meaning and detail, and executed with a distinct passion for your craft</li>\\n  <li>•  Versatility and well-rounded skills to work across many different clients, adapting to varying styles, within timeframes and budgets</li>\\n  <li>•  A hunger to create award-winning work that you can own</li>\\n  <li>•  A relaxed mindset to pitch in with whatever’s required</li>\\n</ul>\\n\\n**As an applicant you’ll bring**\\n<ul>\\n  <li>•  4+ years as a senior designer, 8+ years in the industry</li>\\n  <li>•  An awesome portfolio with variety but also a degree or equivalent qualification</li>\\n  <li>•  Passion for working with and alongside other people, collaborating for creative solutions and outcomes</li>\\n  <li>•  Flexibility and a team-focused attitude</li>\\n  <li>•  High-level attention to detail</li>\\n  <li>•  Amazing understanding of typography and its application</li>\\n  <li>•  Solid suite skills, specifically Adobe and Figma</li>\\n  <li>•  Ability to roll out a brand from go to whoa, including style guide, marketing/social collateral and website</li>\\n  <li>•  Potentially, a second love behind branding – like digital design, UX or animation</li>\\n  <li>•  Keen time management with the ability to meet tight deadlines</li>\\n  <li>•  A commitment for constant progression and desire to go above and beyond</li>\\n  <li>•  A strong understanding of traditional channels, platforms and new technology</li>\\n  <li>•  A high level of energy and enthusiasm along with a lifelong calling for karaoke. (Not 100% necessary. Just 99%.).</li>\\n</ul>\",\"buttonText\":\"Apply now\",\"buttonUrl\":\"#applicationForm\"}}},\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GqLHJAoMsp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The Benefits\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This is a rare opportunity to join a fast-growing and supportive agency in a very exciting phase of its evolution. A competitive salary will be negotiated.\\nEveryone at NWO enjoys fantastic benefits – from flexibility to bonuses, professional development and a comprehensive wellbeing program.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Flexibility and additional leave**\\n\\n- Hybrid working environment with genuine flexibility work from home and our office at Greenslopes\\n- One day per semester of paid study leave\\n- Early, late and split day options\\n- Extra day of leave for an extra happy birthday\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Bonus benefits**\\n\\n- $650 a year via AirWallex to spend on you, however you choose ($50 a month–extra $50 in your birthday month)\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new5\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Professional development**\\n\\n- Work with top executives in wide-ranging sectors\\n- Gain deep expertise across all creative fields\\n- Flexible teams means you’ll work on every account\\n- Paid professional membership of your choice\\n- Annual $1000 professional development budget\\n- Learning and development plan for every employee\\n- Study leave for post-graduate study\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new6\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Wellbeing**\\n\\n- Weekly or fortnightly 1-1 with direct manager\\n- Quarterly goal-setting and performance review\\n- Free access to Employee Assistance Program\\n- Intentional Wellbeing at Work program, including massage and yoga\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new7\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Happy Friyay (and every other day)**\\n\\n- Weekly team lunches and drinks\\n- Quarterly team nights out\\n- EOFY and Christmas staff parties\\n- Mid-year and end-of-year all-team days to rest, reflect and plan\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LhE8ewXDdj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\'s next?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"If this role sounds perfect for you, fill in the apply form below, and attach your cover letter and a link to your website or portfolio. \\n\\nWe’re looking forward to saying hello!\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BtRUbwXzyb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-s0nVisNYi6\",\"content\":{\"fields\":{\"spacer\":\"pt-8 md:pt-16 bg-black\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fz4qdj0CRS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<div id=\\\"applicationForm\\\">\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: \\\"na1\\\",\\n    portalId: \\\"8394441\\\",\\n    formId: \\\"54bb36ff-8ada-4b4f-b1f9-73d1c7fc42c6\\\"\\n  });\\n</script>\\n</div>\",\"backgroundColour\":\"bg-black\",\"sectionTitle\":\"Application forms\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Careers at New Word Order','We are a Brisbane-based agency renowned for our evidence-based, strategic approach to truly wonderful creative work','careers design copy digital','New Word Order',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138943,142714,1,'Careers','2022-10-13 23:34:58','2022-10-13 23:34:58','d9f4a1c2-2872-4080-b730-3174c6fade78',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NyO0Ik0kgl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Careers\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We are a Brisbane-based agency renowned for our evidence-based, strategic approach to truly wonderful creative work. We are strongly purpose-driven—wholeheartedly committed to making a meaningful difference in the lives of our clients, their customers and the community at large. Our work is rewarding.\\n\\nThe best part of what we do is doing it together. There’s nothing quite like a room full of inspired, inspiring people united by purpose and passion—and we’re thrilled at the idea of you being a part of that.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Careers\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GqLHJAoMsp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The Benefits\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This is a rare opportunity to join a fast-growing and supportive agency in a very exciting phase of its evolution. A competitive salary will be negotiated.\\nEveryone at NWO enjoys fantastic benefits – from flexibility to bonuses, professional development and a comprehensive wellbeing program.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Flexibility and additional leave**\\n\\n- Hybrid working environment with genuine flexibility work from home and our office at Greenslopes\\n- One day per semester of paid study leave\\n- Early, late and split day options\\n- Extra day of leave for an extra happy birthday\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Bonus benefits**\\n\\n- $650 a year via AirWallex to spend on you, however you choose ($50 a month–extra $50 in your birthday month)\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new5\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Professional development**\\n\\n- Work with top executives in wide-ranging sectors\\n- Gain deep expertise across all creative fields\\n- Flexible teams means you’ll work on every account\\n- Paid professional membership of your choice\\n- Annual $1000 professional development budget\\n- Learning and development plan for every employee\\n- Study leave for post-graduate study\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new6\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Wellbeing**\\n\\n- Weekly or fortnightly 1-1 with direct manager\\n- Quarterly goal-setting and performance review\\n- Free access to Employee Assistance Program\\n- Intentional Wellbeing at Work program, including massage and yoga\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new7\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Happy Friyay (and every other day)**\\n\\n- Weekly team lunches and drinks\\n- Quarterly team nights out\\n- EOFY and Christmas staff parties\\n- Mid-year and end-of-year all-team days to rest, reflect and plan\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LhE8ewXDdj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\'s next?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"If this role sounds perfect for you, fill in the apply form below, and attach your cover letter and a link to your website or portfolio. \\n\\nWe’re looking forward to saying hello!\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BtRUbwXzyb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-s0nVisNYi6\",\"content\":{\"fields\":{\"spacer\":\"pt-8 md:pt-16 bg-black\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fz4qdj0CRS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<div id=\\\"applicationForm\\\">\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: \\\"na1\\\",\\n    portalId: \\\"8394441\\\",\\n    formId: \\\"54bb36ff-8ada-4b4f-b1f9-73d1c7fc42c6\\\"\\n  });\\n</script>\\n</div>\",\"backgroundColour\":\"bg-black\",\"sectionTitle\":\"Application forms\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Careers at New Word Order','We are a Brisbane-based agency renowned for our evidence-based, strategic approach to truly wonderful creative work','careers design copy digital','New Word Order',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138945,142716,1,NULL,'2022-10-18 00:33:26','2023-03-09 04:28:32','4924d72c-6215-4ba3-9865-9478646359be',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Art director',NULL,NULL,NULL,'#### As our art director, Mike helps articulate and express brands\' purposes and personalities through compelling visuals that provoke a reaction, knowing it\'s these things that connect with customers.\n\nHe has a mix of experience across sectors from food and beverage to gaming, tech, sportswear and fashion. And after years of working with brands like Playstation, McDonald\'s and HP—and time spent both in agency-land and inhouse—Mike brings a 360º view to any client brief. This eclectic mix keeps the pencil sharpened, the MacBook charged and the noggin\' full of creative fuel, ready to share with you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.linkedin.com/in/michaelballantyne/',NULL,NULL,NULL,NULL,'blue',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138946,142717,1,'What a $10,000-per-month ad agency retainer gets you','2022-10-18 00:44:19','2022-10-20 00:46:10','40c601ee-b69b-48c9-97ab-d40d03e5688f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Le3COrDzEZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What a $10,000-per-month ad agency retainer gets you\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Advertising agency and client retainer agreements sometimes get a bad rap. From both sides of the equation, there can be a fear about the ‘value’ factor. Clients might be concerned about outlaying a set amount and not seeing value delivered, while agencies worry about over-servicing, over-delivering and having to absorb costs.  \\n\\nThe truth, as always, lies somewhere in the middle. A good agency retainer agreement that is well-scoped and structured will provide fair value to both parties along with other significant benefits.  \\n\\nHere at New Word Order, we operate on a retainer basis with a number of clients. Not all, as other clients prefer the fee-for-project model. But our experience with retainers has given us a good appreciation of why they work and how to avoid pitfalls.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Let’s look at the benefits of an agency retainer agreement.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new4\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Build long term relationship and trust\",\"text\":\"Supplier relationships built over time offer incredible advantages for your business, and add to your bottom line. When your agency works constantly with you and becomes familiar with your tone, style and business objectives, you’ll see huge efficiencies and autonomy that save you time and money.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Fuller understanding of your brand, business and sector\",\"text\":\"Agencies, on the whole, are very good at diving into your business and learning intimate details about your brand, business operations, objectives and your sector as whole. This is accentuated when there is a retainer in place, as the commitment goes way beyond a specific project needs.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Access to all of the agency’s services\",\"text\":\"When you operate on a project basis, you may only be afforded certain service functions to fulfil that project (e.g. the digital team for a website build). But when you’re working under a retainer arrangement, all of the agency’s services are available to you. This could include strategy, branding, copywriting, design, digital, PR, media, and any other functions or expertise the agency houses.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Your work is prioritised\",\"text\":\"Few agencies are waiting by the phone for the client to ring with a new project so they can leap straight onto it. There are always jobs on the go. But on a retainer, your work is prioritised so quick turnarounds can be achieved if required. Our agreement with retainer clients is that their work happens when it needs to happen, so they jump the queue whenever necessary.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"No surprise costs and lower hourly rates\",\"text\":\"For clients, the assurance of having a set monthly cost is often the determining reason for establishing a retainer with an agency. The no-surprise-invoices guarantee is worth the price of admission. Usually retainers also mean lower hourly rates than the rack rates, as agencies know what income is being delivered and can resource accordingly.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Transparency and reporting\",\"text\":\"A normal part of our retainer agreements is for regular reporting of how hours and services are being spent in any given month, so clients remain fully informed at all times. Never will you get to the end of the month and wonder what the agency has been doing for your investment. Retainer reconciliations are standard practice.\"}},\"new7\":{\"type\":\"6\",\"fields\":{\"heading\":\"Proactive strategic thinking\",\"text\":\"Long-term relationships provide the stability required for agencies to focus more clearly on business outcomes rather than project deliverables. Under a retainer the relationship is more likely to shift from being transactional and project driven to strategic. Rather than just being project-responsive, your agency can adopt a proactive approach to your marketing strategy and cultivate more creative growth opportunities.\"}},\"new8\":{\"type\":\"6\",\"fields\":{\"heading\":\"Holistic business approach\",\"text\":\"It also allows you to use your retained agency across all your needs so they can holistically contribute to the success of your business. This is more efficient than using multiple agencies for different projects as no single agency is then responsible for overall strategy, measurement and achievement of marketing goals.\"}}}}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oPyuRVewRa\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142777\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-m0UjFdziAZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"So what will a $10,000-per-month retainer get you?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Don’t get caught up in the $10,000 figure. Retainer figures are mostly determined by the client’s marketing budget and your needs. So whether you need to halve it, double it, quarter it or triple it—it doesn’t matter. We just want to provide a guide on what you can expect from a $10,000 monthly retainer budget at New Word Order.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Strategy (Strategic direction, research, analysis, advisory and consultation)\",\"text\":\"12 hours a month\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Client Service (Account direction, management, production, coordination)\",\"text\":\"18 hours a month\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Creative Direction\",\"text\":\"4 hours a month\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Copywriting\",\"text\":\"4 hours a month\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"Art Direction\",\"text\":\"6 hours a month\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Graphic Design\",\"text\":\"16 hours a month\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Compare this to the cost of employing a marketing manager and contracting an agency to work on ad-hoc projects and the value is plain to see.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Ioo01jWr8b\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Want to know more? Call us for a confidential chat about retainers or other ways of working with New Word Order.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The ways brands make or break business outcomes','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138947,142718,1,'The ways brands make or break businesses','2022-10-18 00:44:20','2022-10-18 00:44:20','181a9ba0-9576-4e65-8496-08c587492cd2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Le3COrDzEZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.\\nSo, yes, brand is powerful. But how specifically can your brand make or break your business?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"1. Quality\",\"text\":\"Quality is a great place to start because everybody values it, even when they are price driven. \\nTo do business with you means your customer is hoping or expecting you’ll live up to a quality expectation, regardless of how much you cost. Your reliability and trustworthiness shine through in the quality of your branding—its professional design, messaging, imagery, and product and service delivery suggest a lot about the quality of your business.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"2. Subliminal messages\",\"text\":\"You may not realise how much your brand says about you. \\nJust like quality, your brand communicates subtle cues on your character, your way of working, and whether you are quirky, fun, classy or expensive. For example, think about how much a restaurant’s brand reputation relies on subtle cues—like the dining room’s ambiance, menu design or willingness to cater to dietary requirements. Like it or not, customers subliminally build cues into an overall positive or negative perception of your brand. And if your brand is giving off the wrong message, it will damage your business by attracting the wrong people or repelling the right ones.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"3. Clarity of offering\",\"text\":\"Does your brand say what you do? \\nHow many more customers could quickly understand your offering and start working with you if you made it easier to understand your product or service offering, from even just a name and tagline? \\nAnd when you have sub-brands, good ‘brand architecture’ helps people understand how it all fits together, clears up confusion and makes it easier for customers to find what they want in your offering.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"4. Your people\",\"text\":\"Brand is not just for your customers. \\nYour own people respond, both consciously and subconsciously, in many ways to your brand and draw a lot of meaning, value and purpose from what your brand is about. They can represent and deliver your brand experience. \\nYou can develop an ‘employer brand’, which is usually an extension of the main brand. Shape it to suit your inhouse story, guide your culture and boost engagement, ownership and recruitment in tight labour markets.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"5. Memorability\",\"text\":\"How many times have you enjoyed a TV commercial—only to forget what brand was advertising?\\nBringing a brand experience isn’t enough. You need to be found and remembered by name. Whether or not you’re advertising digitally, it’s not actually all about the click. URLs still get keyed in manually, especially from non-digital advertising or other brand touchpoints, and the right name must be easy to remember and type.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"6. Distinctives\",\"text\":\"What makes you stand out from your competition? \\nEvery business needs to stand out, even if that manifests differently for each. Looking unique, showing the potential to offer something the others don’t and being the specific solution to a customer’s needs: It all helps to sell the business. And while this sounds more like marketing, brand is key to giving marketing a distinctive story to tell.\"}},\"new7\":{\"type\":\"6\",\"fields\":{\"heading\":\"7. Competitive advantage\",\"text\":\"Are you using any of the above to give your brand a competitive advantage? \\nIf your competition is doing better at any or all of the above, then you’re giving them the advantage and will lose business to them. Conversely, investing in brand will give you the edge.\"}}}}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Never forget: Even if you don’t see anything wrong with your brand, your staff and customers might have a different perspective. Getting an unfiltered opinion from them could help you make powerful changes to your brand and, in turn, your business.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The ways brands make or break business outcomes','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138951,142722,1,'The ways brands make or break businesses','2022-10-18 00:50:13','2022-10-18 00:50:13','58841f73-82c1-4673-bb4a-3ee9712cfb5a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Le3COrDzEZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.\\nSo, yes, brand is powerful. But how specifically can your brand make or break your business?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"1. Quality\",\"text\":\"Quality is a great place to start because everybody values it, even when they are price driven. \\nTo do business with you means your customer is hoping or expecting you’ll live up to a quality expectation, regardless of how much you cost. Your reliability and trustworthiness shine through in the quality of your branding—its professional design, messaging, imagery, and product and service delivery suggest a lot about the quality of your business.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"2. Subliminal messages\",\"text\":\"You may not realise how much your brand says about you. \\nJust like quality, your brand communicates subtle cues on your character, your way of working, and whether you are quirky, fun, classy or expensive. For example, think about how much a restaurant’s brand reputation relies on subtle cues—like the dining room’s ambiance, menu design or willingness to cater to dietary requirements. Like it or not, customers subliminally build cues into an overall positive or negative perception of your brand. And if your brand is giving off the wrong message, it will damage your business by attracting the wrong people or repelling the right ones.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"3. Clarity of offering\",\"text\":\"Does your brand say what you do? \\nHow many more customers could quickly understand your offering and start working with you if you made it easier to understand your product or service offering, from even just a name and tagline? \\nAnd when you have sub-brands, good ‘brand architecture’ helps people understand how it all fits together, clears up confusion and makes it easier for customers to find what they want in your offering.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"4. Your people\",\"text\":\"Brand is not just for your customers. \\nYour own people respond, both consciously and subconsciously, in many ways to your brand and draw a lot of meaning, value and purpose from what your brand is about. They can represent and deliver your brand experience. \\nYou can develop an ‘employer brand’, which is usually an extension of the main brand. Shape it to suit your inhouse story, guide your culture and boost engagement, ownership and recruitment in tight labour markets.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"5. Memorability\",\"text\":\"How many times have you enjoyed a TV commercial—only to forget what brand was advertising?\\nBringing a brand experience isn’t enough. You need to be found and remembered by name. Whether or not you’re advertising digitally, it’s not actually all about the click. URLs still get keyed in manually, especially from non-digital advertising or other brand touchpoints, and the right name must be easy to remember and type.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"6. Distinctives\",\"text\":\"What makes you stand out from your competition? \\nEvery business needs to stand out, even if that manifests differently for each. Looking unique, showing the potential to offer something the others don’t and being the specific solution to a customer’s needs: It all helps to sell the business. And while this sounds more like marketing, brand is key to giving marketing a distinctive story to tell.\"}},\"new7\":{\"type\":\"6\",\"fields\":{\"heading\":\"7. Competitive advantage\",\"text\":\"Are you using any of the above to give your brand a competitive advantage? \\nIf your competition is doing better at any or all of the above, then you’re giving them the advantage and will lose business to them. Conversely, investing in brand will give you the edge.\"}}}}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Never forget: Even if you don’t see anything wrong with your brand, your staff and customers might have a different perspective. Getting an unfiltered opinion from them could help you make powerful changes to your brand and, in turn, your business.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The ways brands make or break business outcomes','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138952,142723,1,'The ways brands make or break businesses','2022-10-18 00:50:14','2022-10-18 00:50:14','a0a218c1-1b4a-4e38-86ea-ef07436a9620',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Le3COrDzEZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.\\nSo, yes, brand is powerful. But how specifically can your brand make or break your business?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"1. Quality\",\"text\":\"Quality is a great place to start because everybody values it, even when they are price driven. \\nTo do business with you means your customer is hoping or expecting you’ll live up to a quality expectation, regardless of how much you cost. Your reliability and trustworthiness shine through in the quality of your branding—its professional design, messaging, imagery, and product and service delivery suggest a lot about the quality of your business.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"2. Subliminal messages\",\"text\":\"You may not realise how much your brand says about you. \\nJust like quality, your brand communicates subtle cues on your character, your way of working, and whether you are quirky, fun, classy or expensive. For example, think about how much a restaurant’s brand reputation relies on subtle cues—like the dining room’s ambiance, menu design or willingness to cater to dietary requirements. Like it or not, customers subliminally build cues into an overall positive or negative perception of your brand. And if your brand is giving off the wrong message, it will damage your business by attracting the wrong people or repelling the right ones.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"3. Clarity of offering\",\"text\":\"Does your brand say what you do? \\nHow many more customers could quickly understand your offering and start working with you if you made it easier to understand your product or service offering, from even just a name and tagline? \\nAnd when you have sub-brands, good ‘brand architecture’ helps people understand how it all fits together, clears up confusion and makes it easier for customers to find what they want in your offering.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"4. Your people\",\"text\":\"Brand is not just for your customers. \\nYour own people respond, both consciously and subconsciously, in many ways to your brand and draw a lot of meaning, value and purpose from what your brand is about. They can represent and deliver your brand experience. \\nYou can develop an ‘employer brand’, which is usually an extension of the main brand. Shape it to suit your inhouse story, guide your culture and boost engagement, ownership and recruitment in tight labour markets.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"5. Memorability\",\"text\":\"How many times have you enjoyed a TV commercial—only to forget what brand was advertising?\\nBringing a brand experience isn’t enough. You need to be found and remembered by name. Whether or not you’re advertising digitally, it’s not actually all about the click. URLs still get keyed in manually, especially from non-digital advertising or other brand touchpoints, and the right name must be easy to remember and type.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"6. Distinctives\",\"text\":\"What makes you stand out from your competition? \\nEvery business needs to stand out, even if that manifests differently for each. Looking unique, showing the potential to offer something the others don’t and being the specific solution to a customer’s needs: It all helps to sell the business. And while this sounds more like marketing, brand is key to giving marketing a distinctive story to tell.\"}},\"new7\":{\"type\":\"6\",\"fields\":{\"heading\":\"7. Competitive advantage\",\"text\":\"Are you using any of the above to give your brand a competitive advantage? \\nIf your competition is doing better at any or all of the above, then you’re giving them the advantage and will lose business to them. Conversely, investing in brand will give you the edge.\"}}}}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Never forget: Even if you don’t see anything wrong with your brand, your staff and customers might have a different perspective. Getting an unfiltered opinion from them could help you make powerful changes to your brand and, in turn, your business.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The ways brands make or break business outcomes','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138953,142724,1,'What a $10,000-per-month ad agency retainer gets you','2022-10-18 00:50:59','2022-10-18 00:50:59','f12674c0-028d-4e21-99ba-705ad5202064',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Le3COrDzEZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":null,\"backgroundColour\":\"bg-white\",\"textBuilder\":[],\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The ways brands make or break business outcomes','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138955,142726,1,'What a $10,000-per-month ad agency retainer gets you','2022-10-18 00:51:49','2022-10-18 00:51:49','72d634cb-3e1e-406b-b63e-17e5ea907272',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Le3COrDzEZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What a $10,000-per-month ad agency retainer gets you\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Advertising agency and client retainer agreements sometimes get a bad rap. From both sides of the equation, there can be a fear about the ‘value’ factor. Clients might be concerned about outlaying a set amount and not seeing value delivered, while agencies worry about over-servicing, over-delivering and having to absorb costs.  \\n\\nThe truth, as always, lies somewhere in the middle. A good agency retainer agreement that is well-scoped and structured will provide fair value to both parties along with other significant benefits.  \\n\\nHere at New Word Order, we operate on a retainer basis with a number of clients. Not all, as other clients prefer the fee-for-project model. But our experience with retainers has given us a good appreciation of why they work and how to avoid pitfalls. \\n\\nLet’s look at the benefits of an agency retainer agreement.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The ways brands make or break business outcomes','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138957,142728,1,'What a $10,000-per-month ad agency retainer gets you','2022-10-18 00:54:02','2022-10-18 00:54:02','a434b688-cca9-4d66-9d17-53f107669b7a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Le3COrDzEZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What a $10,000-per-month ad agency retainer gets you\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Advertising agency and client retainer agreements sometimes get a bad rap. From both sides of the equation, there can be a fear about the ‘value’ factor. Clients might be concerned about outlaying a set amount and not seeing value delivered, while agencies worry about over-servicing, over-delivering and having to absorb costs.  \\n\\nThe truth, as always, lies somewhere in the middle. A good agency retainer agreement that is well-scoped and structured will provide fair value to both parties along with other significant benefits.  \\n\\nHere at New Word Order, we operate on a retainer basis with a number of clients. Not all, as other clients prefer the fee-for-project model. But our experience with retainers has given us a good appreciation of why they work and how to avoid pitfalls. \\n\\nLet’s look at the benefits of an agency retainer agreement.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Build long term relationship and trust\",\"text\":\"Supplier relationships built over time offer incredible advantages for your business, and add to your bottom line. When your agency works constantly with you and becomes familiar with your tone, style and business objectives, you’ll see huge efficiencies and autonomy that save you time and money.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Fuller understanding of your brand, business and sector\",\"text\":\"Agencies, on the whole, are very good at diving into your business and learning intimate details about your brand, business operations, objectives and your sector as whole. This is accentuated when there is a retainer in place, as the commitment goes way beyond a specific project needs.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Access to all of the agency’s services\",\"text\":\"When you operate on a project basis, you may only be afforded certain service functions to fulfil that project (e.g. the digital team for a website build). But when you’re working under a retainer arrangement, all of the agency’s services are available to you. This could include strategy, branding, copywriting, design, digital, PR, media, and any other functions or expertise the agency houses.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Your work is prioritised\",\"text\":\"Few agencies are waiting by the phone for the client to ring with a new project so they can leap straight onto it. There are always jobs on the go. But on a retainer, your work is prioritised so quick turnarounds can be achieved if required. Our agreement with retainer clients is that their work happens when it needs to happen, so they jump the queue whenever necessary.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"No surprise costs and lower hourly rates\",\"text\":\"For clients, the assurance of having a set monthly cost is often the determining reason for establishing a retainer with an agency. The no-surprise-invoices guarantee is worth the price of admission. Usually retainers also mean lower hourly rates than the rack rates, as agencies know what income is being delivered and can resource accordingly.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Transparency and reporting\",\"text\":\"A normal part of our retainer agreements is for regular reporting of how hours and services are being spent in any given month, so clients remain fully informed at all times. Never will you get to the end of the month and wonder what the agency has been doing for your investment. Retainer reconciliations are standard practice.\"}}}}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The ways brands make or break business outcomes','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138959,142730,1,'What a $10,000-per-month ad agency retainer gets you','2022-10-18 00:57:16','2022-10-18 00:57:16','e9de6037-d952-48bf-b677-ac11595df9f8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Le3COrDzEZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What a $10,000-per-month ad agency retainer gets you\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Advertising agency and client retainer agreements sometimes get a bad rap. From both sides of the equation, there can be a fear about the ‘value’ factor. Clients might be concerned about outlaying a set amount and not seeing value delivered, while agencies worry about over-servicing, over-delivering and having to absorb costs.  \\n\\nThe truth, as always, lies somewhere in the middle. A good agency retainer agreement that is well-scoped and structured will provide fair value to both parties along with other significant benefits.  \\n\\nHere at New Word Order, we operate on a retainer basis with a number of clients. Not all, as other clients prefer the fee-for-project model. But our experience with retainers has given us a good appreciation of why they work and how to avoid pitfalls. \\n\\nLet’s look at the benefits of an agency retainer agreement.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Build long term relationship and trust\",\"text\":\"Supplier relationships built over time offer incredible advantages for your business, and add to your bottom line. When your agency works constantly with you and becomes familiar with your tone, style and business objectives, you’ll see huge efficiencies and autonomy that save you time and money.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Fuller understanding of your brand, business and sector\",\"text\":\"Agencies, on the whole, are very good at diving into your business and learning intimate details about your brand, business operations, objectives and your sector as whole. This is accentuated when there is a retainer in place, as the commitment goes way beyond a specific project needs.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Access to all of the agency’s services\",\"text\":\"When you operate on a project basis, you may only be afforded certain service functions to fulfil that project (e.g. the digital team for a website build). But when you’re working under a retainer arrangement, all of the agency’s services are available to you. This could include strategy, branding, copywriting, design, digital, PR, media, and any other functions or expertise the agency houses.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Your work is prioritised\",\"text\":\"Few agencies are waiting by the phone for the client to ring with a new project so they can leap straight onto it. There are always jobs on the go. But on a retainer, your work is prioritised so quick turnarounds can be achieved if required. Our agreement with retainer clients is that their work happens when it needs to happen, so they jump the queue whenever necessary.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"No surprise costs and lower hourly rates\",\"text\":\"For clients, the assurance of having a set monthly cost is often the determining reason for establishing a retainer with an agency. The no-surprise-invoices guarantee is worth the price of admission. Usually retainers also mean lower hourly rates than the rack rates, as agencies know what income is being delivered and can resource accordingly.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Transparency and reporting\",\"text\":\"A normal part of our retainer agreements is for regular reporting of how hours and services are being spent in any given month, so clients remain fully informed at all times. Never will you get to the end of the month and wonder what the agency has been doing for your investment. Retainer reconciliations are standard practice.\"}}}}},\"new4\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"So what will a $10,000-per-month retainer get you?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new5\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Don’t get caught up in the $10,000 figure. Retainer figures are mostly determined by the client’s marketing budget and your needs. So whether you need to halve it, double it, quarter it or triple it—it doesn’t matter. We just want to provide a guide on what you can expect from a $10,000 monthly retainer budget at New Word Order.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new6\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Strategy\",\"text\":\"12 hours a month\\nStrategic direction, research, analysis, advisory and consultation\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Creative Direction\",\"text\":\"4 hours a month\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Copywriting\",\"text\":\"4 hours a month\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Art Direction\",\"text\":\"6 hours a month\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"Graphic Design\",\"text\":\"16 hours a month\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Client Service\",\"text\":\"18 hours a month\\nAccount direction, management, production, coordination\"}}}}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The ways brands make or break business outcomes','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138961,142732,1,'What a $10,000-per-month ad agency retainer gets you','2022-10-18 00:57:59','2022-10-18 00:57:59','80765ec4-0815-47c5-8c8c-e3fcae69fc6d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Le3COrDzEZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What a $10,000-per-month ad agency retainer gets you\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Advertising agency and client retainer agreements sometimes get a bad rap. From both sides of the equation, there can be a fear about the ‘value’ factor. Clients might be concerned about outlaying a set amount and not seeing value delivered, while agencies worry about over-servicing, over-delivering and having to absorb costs.  \\n\\nThe truth, as always, lies somewhere in the middle. A good agency retainer agreement that is well-scoped and structured will provide fair value to both parties along with other significant benefits.  \\n\\nHere at New Word Order, we operate on a retainer basis with a number of clients. Not all, as other clients prefer the fee-for-project model. But our experience with retainers has given us a good appreciation of why they work and how to avoid pitfalls. \\n\\nLet’s look at the benefits of an agency retainer agreement.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Build long term relationship and trust\",\"text\":\"Supplier relationships built over time offer incredible advantages for your business, and add to your bottom line. When your agency works constantly with you and becomes familiar with your tone, style and business objectives, you’ll see huge efficiencies and autonomy that save you time and money.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Fuller understanding of your brand, business and sector\",\"text\":\"Agencies, on the whole, are very good at diving into your business and learning intimate details about your brand, business operations, objectives and your sector as whole. This is accentuated when there is a retainer in place, as the commitment goes way beyond a specific project needs.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Access to all of the agency’s services\",\"text\":\"When you operate on a project basis, you may only be afforded certain service functions to fulfil that project (e.g. the digital team for a website build). But when you’re working under a retainer arrangement, all of the agency’s services are available to you. This could include strategy, branding, copywriting, design, digital, PR, media, and any other functions or expertise the agency houses.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Your work is prioritised\",\"text\":\"Few agencies are waiting by the phone for the client to ring with a new project so they can leap straight onto it. There are always jobs on the go. But on a retainer, your work is prioritised so quick turnarounds can be achieved if required. Our agreement with retainer clients is that their work happens when it needs to happen, so they jump the queue whenever necessary.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"No surprise costs and lower hourly rates\",\"text\":\"For clients, the assurance of having a set monthly cost is often the determining reason for establishing a retainer with an agency. The no-surprise-invoices guarantee is worth the price of admission. Usually retainers also mean lower hourly rates than the rack rates, as agencies know what income is being delivered and can resource accordingly.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Transparency and reporting\",\"text\":\"A normal part of our retainer agreements is for regular reporting of how hours and services are being spent in any given month, so clients remain fully informed at all times. Never will you get to the end of the month and wonder what the agency has been doing for your investment. Retainer reconciliations are standard practice.\"}}}}},\"new4\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"So what will a $10,000-per-month retainer get you?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new5\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Don’t get caught up in the $10,000 figure. Retainer figures are mostly determined by the client’s marketing budget and your needs. So whether you need to halve it, double it, quarter it or triple it—it doesn’t matter. We just want to provide a guide on what you can expect from a $10,000 monthly retainer budget at New Word Order.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new6\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Strategy\",\"text\":\"12 hours a month\\nStrategic direction, research, analysis, advisory and consultation\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Creative Direction\",\"text\":\"4 hours a month\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Copywriting\",\"text\":\"4 hours a month\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Art Direction\",\"text\":\"6 hours a month\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"Graphic Design\",\"text\":\"16 hours a month\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Client Service\",\"text\":\"18 hours a month\\n<br> Account direction, management, production, coordination\"}}}}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The ways brands make or break business outcomes','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138963,142734,1,'What a $10,000-per-month ad agency retainer gets you','2022-10-18 00:59:35','2022-10-18 00:59:35','796c09c2-86b1-4111-916d-bf5893ee8d77',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Le3COrDzEZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What a $10,000-per-month ad agency retainer gets you\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Advertising agency and client retainer agreements sometimes get a bad rap. From both sides of the equation, there can be a fear about the ‘value’ factor. Clients might be concerned about outlaying a set amount and not seeing value delivered, while agencies worry about over-servicing, over-delivering and having to absorb costs.  \\n\\nThe truth, as always, lies somewhere in the middle. A good agency retainer agreement that is well-scoped and structured will provide fair value to both parties along with other significant benefits.  \\n\\nHere at New Word Order, we operate on a retainer basis with a number of clients. Not all, as other clients prefer the fee-for-project model. But our experience with retainers has given us a good appreciation of why they work and how to avoid pitfalls. \\n\\nLet’s look at the benefits of an agency retainer agreement.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Build long term relationship and trust\",\"text\":\"Supplier relationships built over time offer incredible advantages for your business, and add to your bottom line. When your agency works constantly with you and becomes familiar with your tone, style and business objectives, you’ll see huge efficiencies and autonomy that save you time and money.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Fuller understanding of your brand, business and sector\",\"text\":\"Agencies, on the whole, are very good at diving into your business and learning intimate details about your brand, business operations, objectives and your sector as whole. This is accentuated when there is a retainer in place, as the commitment goes way beyond a specific project needs.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Access to all of the agency’s services\",\"text\":\"When you operate on a project basis, you may only be afforded certain service functions to fulfil that project (e.g. the digital team for a website build). But when you’re working under a retainer arrangement, all of the agency’s services are available to you. This could include strategy, branding, copywriting, design, digital, PR, media, and any other functions or expertise the agency houses.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Your work is prioritised\",\"text\":\"Few agencies are waiting by the phone for the client to ring with a new project so they can leap straight onto it. There are always jobs on the go. But on a retainer, your work is prioritised so quick turnarounds can be achieved if required. Our agreement with retainer clients is that their work happens when it needs to happen, so they jump the queue whenever necessary.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"No surprise costs and lower hourly rates\",\"text\":\"For clients, the assurance of having a set monthly cost is often the determining reason for establishing a retainer with an agency. The no-surprise-invoices guarantee is worth the price of admission. Usually retainers also mean lower hourly rates than the rack rates, as agencies know what income is being delivered and can resource accordingly.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Transparency and reporting\",\"text\":\"A normal part of our retainer agreements is for regular reporting of how hours and services are being spent in any given month, so clients remain fully informed at all times. Never will you get to the end of the month and wonder what the agency has been doing for your investment. Retainer reconciliations are standard practice.\"}}}}},\"new4\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"So what will a $10,000-per-month retainer get you?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new5\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Don’t get caught up in the $10,000 figure. Retainer figures are mostly determined by the client’s marketing budget and your needs. So whether you need to halve it, double it, quarter it or triple it—it doesn’t matter. We just want to provide a guide on what you can expect from a $10,000 monthly retainer budget at New Word Order.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new6\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Strategy (Strategic direction, research, analysis, advisory and consultation)\",\"text\":\"12 hours a month\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Creative Direction\",\"text\":\"4 hours a month\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Copywriting\",\"text\":\"4 hours a month\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Art Direction\",\"text\":\"6 hours a month\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"Graphic Design\",\"text\":\"16 hours a month\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Client Service (Account direction, management, production, coordination)\",\"text\":\"18 hours a month\"}}}}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The ways brands make or break business outcomes','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138965,142736,1,'What a $10,000-per-month ad agency retainer gets you','2022-10-18 01:02:30','2022-10-18 01:02:30','93645e6f-bae8-4fa6-85dd-4e4ff8338f39',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Le3COrDzEZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What a $10,000-per-month ad agency retainer gets you\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Advertising agency and client retainer agreements sometimes get a bad rap. From both sides of the equation, there can be a fear about the ‘value’ factor. Clients might be concerned about outlaying a set amount and not seeing value delivered, while agencies worry about over-servicing, over-delivering and having to absorb costs.  \\n\\nThe truth, as always, lies somewhere in the middle. A good agency retainer agreement that is well-scoped and structured will provide fair value to both parties along with other significant benefits.  \\n\\nHere at New Word Order, we operate on a retainer basis with a number of clients. Not all, as other clients prefer the fee-for-project model. But our experience with retainers has given us a good appreciation of why they work and how to avoid pitfalls. \\n\\nLet’s look at the benefits of an agency retainer agreement.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Build long term relationship and trust\",\"text\":\"Supplier relationships built over time offer incredible advantages for your business, and add to your bottom line. When your agency works constantly with you and becomes familiar with your tone, style and business objectives, you’ll see huge efficiencies and autonomy that save you time and money.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Fuller understanding of your brand, business and sector\",\"text\":\"Agencies, on the whole, are very good at diving into your business and learning intimate details about your brand, business operations, objectives and your sector as whole. This is accentuated when there is a retainer in place, as the commitment goes way beyond a specific project needs.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Access to all of the agency’s services\",\"text\":\"When you operate on a project basis, you may only be afforded certain service functions to fulfil that project (e.g. the digital team for a website build). But when you’re working under a retainer arrangement, all of the agency’s services are available to you. This could include strategy, branding, copywriting, design, digital, PR, media, and any other functions or expertise the agency houses.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Your work is prioritised\",\"text\":\"Few agencies are waiting by the phone for the client to ring with a new project so they can leap straight onto it. There are always jobs on the go. But on a retainer, your work is prioritised so quick turnarounds can be achieved if required. Our agreement with retainer clients is that their work happens when it needs to happen, so they jump the queue whenever necessary.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"No surprise costs and lower hourly rates\",\"text\":\"For clients, the assurance of having a set monthly cost is often the determining reason for establishing a retainer with an agency. The no-surprise-invoices guarantee is worth the price of admission. Usually retainers also mean lower hourly rates than the rack rates, as agencies know what income is being delivered and can resource accordingly.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Transparency and reporting\",\"text\":\"A normal part of our retainer agreements is for regular reporting of how hours and services are being spent in any given month, so clients remain fully informed at all times. Never will you get to the end of the month and wonder what the agency has been doing for your investment. Retainer reconciliations are standard practice.\"}}}}},\"new4\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"So what will a $10,000-per-month retainer get you?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new5\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Don’t get caught up in the $10,000 figure. Retainer figures are mostly determined by the client’s marketing budget and your needs. So whether you need to halve it, double it, quarter it or triple it—it doesn’t matter. We just want to provide a guide on what you can expect from a $10,000 monthly retainer budget at New Word Order.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new6\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Strategy (Strategic direction, research, analysis, advisory and consultation)\",\"text\":\"12 hours a month\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Client Service (Account direction, management, production, coordination)\",\"text\":\"18 hours a month\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Creative Direction\",\"text\":\"4 hours a month\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Copywriting\",\"text\":\"4 hours a month\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"Art Direction\",\"text\":\"6 hours a month\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Graphic Design\",\"text\":\"16 hours a month\"}}}}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The ways brands make or break business outcomes','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138967,142738,1,'What a $10,000-per-month ad agency retainer gets you','2022-10-18 01:06:33','2022-10-18 01:06:33','8ba3536a-d743-4bce-b081-e66fce49a56d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Le3COrDzEZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What a $10,000-per-month ad agency retainer gets you\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Advertising agency and client retainer agreements sometimes get a bad rap. From both sides of the equation, there can be a fear about the ‘value’ factor. Clients might be concerned about outlaying a set amount and not seeing value delivered, while agencies worry about over-servicing, over-delivering and having to absorb costs.  \\n\\nThe truth, as always, lies somewhere in the middle. A good agency retainer agreement that is well-scoped and structured will provide fair value to both parties along with other significant benefits.  \\n\\nHere at New Word Order, we operate on a retainer basis with a number of clients. Not all, as other clients prefer the fee-for-project model. But our experience with retainers has given us a good appreciation of why they work and how to avoid pitfalls. \\n\\nLet’s look at the benefits of an agency retainer agreement.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Build long term relationship and trust\",\"text\":\"Supplier relationships built over time offer incredible advantages for your business, and add to your bottom line. When your agency works constantly with you and becomes familiar with your tone, style and business objectives, you’ll see huge efficiencies and autonomy that save you time and money.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Fuller understanding of your brand, business and sector\",\"text\":\"Agencies, on the whole, are very good at diving into your business and learning intimate details about your brand, business operations, objectives and your sector as whole. This is accentuated when there is a retainer in place, as the commitment goes way beyond a specific project needs.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Access to all of the agency’s services\",\"text\":\"When you operate on a project basis, you may only be afforded certain service functions to fulfil that project (e.g. the digital team for a website build). But when you’re working under a retainer arrangement, all of the agency’s services are available to you. This could include strategy, branding, copywriting, design, digital, PR, media, and any other functions or expertise the agency houses.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Your work is prioritised\",\"text\":\"Few agencies are waiting by the phone for the client to ring with a new project so they can leap straight onto it. There are always jobs on the go. But on a retainer, your work is prioritised so quick turnarounds can be achieved if required. Our agreement with retainer clients is that their work happens when it needs to happen, so they jump the queue whenever necessary.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"No surprise costs and lower hourly rates\",\"text\":\"For clients, the assurance of having a set monthly cost is often the determining reason for establishing a retainer with an agency. The no-surprise-invoices guarantee is worth the price of admission. Usually retainers also mean lower hourly rates than the rack rates, as agencies know what income is being delivered and can resource accordingly.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Transparency and reporting\",\"text\":\"A normal part of our retainer agreements is for regular reporting of how hours and services are being spent in any given month, so clients remain fully informed at all times. Never will you get to the end of the month and wonder what the agency has been doing for your investment. Retainer reconciliations are standard practice.\"}}}}},\"new4\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"So what will a $10,000-per-month retainer get you?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new5\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Don’t get caught up in the $10,000 figure. Retainer figures are mostly determined by the client’s marketing budget and your needs. So whether you need to halve it, double it, quarter it or triple it—it doesn’t matter. We just want to provide a guide on what you can expect from a $10,000 monthly retainer budget at New Word Order.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new6\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Strategy (Strategic direction, research, analysis, advisory and consultation)\",\"text\":\"12 hours a month\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Client Service (Account direction, management, production, coordination)\",\"text\":\"18 hours a month\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Creative Direction\",\"text\":\"4 hours a month\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Copywriting\",\"text\":\"4 hours a month\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"Art Direction\",\"text\":\"6 hours a month\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Graphic Design\",\"text\":\"16 hours a month\"}}}}},\"new7\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Compare this to the cost of employing a marketing manager and contracting an agency to work on ad-hoc projects and the value is plain to see.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-e7upfKVF5J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-Ax8fnuTi2u\",\"content\":{\"fields\":{\"images\":[]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4Ynf540PxJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":null,\"plainText\":\"Want to know more? Call us for a confidential chat about retainers or other ways of working with New Word Order.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The ways brands make or break business outcomes','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138969,142740,1,'What a $10,000-per-month ad agency retainer gets you','2022-10-18 01:09:54','2022-10-18 01:09:54','30e4f48c-cf0a-41e2-a5e0-32d6b20c7d8c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Le3COrDzEZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What a $10,000-per-month ad agency retainer gets you\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Advertising agency and client retainer agreements sometimes get a bad rap. From both sides of the equation, there can be a fear about the ‘value’ factor. Clients might be concerned about outlaying a set amount and not seeing value delivered, while agencies worry about over-servicing, over-delivering and having to absorb costs.  \\n\\nThe truth, as always, lies somewhere in the middle. A good agency retainer agreement that is well-scoped and structured will provide fair value to both parties along with other significant benefits.  \\n\\nHere at New Word Order, we operate on a retainer basis with a number of clients. Not all, as other clients prefer the fee-for-project model. But our experience with retainers has given us a good appreciation of why they work and how to avoid pitfalls. \\n\\nLet’s look at the benefits of an agency retainer agreement.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Build long term relationship and trust\",\"text\":\"Supplier relationships built over time offer incredible advantages for your business, and add to your bottom line. When your agency works constantly with you and becomes familiar with your tone, style and business objectives, you’ll see huge efficiencies and autonomy that save you time and money.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Fuller understanding of your brand, business and sector\",\"text\":\"Agencies, on the whole, are very good at diving into your business and learning intimate details about your brand, business operations, objectives and your sector as whole. This is accentuated when there is a retainer in place, as the commitment goes way beyond a specific project needs.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Access to all of the agency’s services\",\"text\":\"When you operate on a project basis, you may only be afforded certain service functions to fulfil that project (e.g. the digital team for a website build). But when you’re working under a retainer arrangement, all of the agency’s services are available to you. This could include strategy, branding, copywriting, design, digital, PR, media, and any other functions or expertise the agency houses.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Your work is prioritised\",\"text\":\"Few agencies are waiting by the phone for the client to ring with a new project so they can leap straight onto it. There are always jobs on the go. But on a retainer, your work is prioritised so quick turnarounds can be achieved if required. Our agreement with retainer clients is that their work happens when it needs to happen, so they jump the queue whenever necessary.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"No surprise costs and lower hourly rates\",\"text\":\"For clients, the assurance of having a set monthly cost is often the determining reason for establishing a retainer with an agency. The no-surprise-invoices guarantee is worth the price of admission. Usually retainers also mean lower hourly rates than the rack rates, as agencies know what income is being delivered and can resource accordingly.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Transparency and reporting\",\"text\":\"A normal part of our retainer agreements is for regular reporting of how hours and services are being spent in any given month, so clients remain fully informed at all times. Never will you get to the end of the month and wonder what the agency has been doing for your investment. Retainer reconciliations are standard practice.\"}}}}},\"new4\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"So what will a $10,000-per-month retainer get you?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new5\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Don’t get caught up in the $10,000 figure. Retainer figures are mostly determined by the client’s marketing budget and your needs. So whether you need to halve it, double it, quarter it or triple it—it doesn’t matter. We just want to provide a guide on what you can expect from a $10,000 monthly retainer budget at New Word Order.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-e7upfKVF5J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-Ax8fnuTi2u\",\"content\":{\"fields\":{\"images\":[]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-m0UjFdziAZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Strategy (Strategic direction, research, analysis, advisory and consultation)\",\"text\":\"12 hours a month\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Client Service (Account direction, management, production, coordination)\",\"text\":\"18 hours a month\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Creative Direction\",\"text\":\"4 hours a month\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Copywriting\",\"text\":\"4 hours a month\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"Art Direction\",\"text\":\"6 hours a month\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Graphic Design\",\"text\":\"16 hours a month\"}}}}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Compare this to the cost of employing a marketing manager and contracting an agency to work on ad-hoc projects and the value is plain to see.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The ways brands make or break business outcomes','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138971,142742,1,'What a $10,000-per-month ad agency retainer gets you','2022-10-18 01:10:48','2022-10-18 01:10:48','c647f57c-880d-44b5-b843-b2eb185d9f3f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Le3COrDzEZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What a $10,000-per-month ad agency retainer gets you\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Advertising agency and client retainer agreements sometimes get a bad rap. From both sides of the equation, there can be a fear about the ‘value’ factor. Clients might be concerned about outlaying a set amount and not seeing value delivered, while agencies worry about over-servicing, over-delivering and having to absorb costs.  \\n\\nThe truth, as always, lies somewhere in the middle. A good agency retainer agreement that is well-scoped and structured will provide fair value to both parties along with other significant benefits.  \\n\\nHere at New Word Order, we operate on a retainer basis with a number of clients. Not all, as other clients prefer the fee-for-project model. But our experience with retainers has given us a good appreciation of why they work and how to avoid pitfalls. \\n\\nLet’s look at the benefits of an agency retainer agreement.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Build long term relationship and trust\",\"text\":\"Supplier relationships built over time offer incredible advantages for your business, and add to your bottom line. When your agency works constantly with you and becomes familiar with your tone, style and business objectives, you’ll see huge efficiencies and autonomy that save you time and money.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Fuller understanding of your brand, business and sector\",\"text\":\"Agencies, on the whole, are very good at diving into your business and learning intimate details about your brand, business operations, objectives and your sector as whole. This is accentuated when there is a retainer in place, as the commitment goes way beyond a specific project needs.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Access to all of the agency’s services\",\"text\":\"When you operate on a project basis, you may only be afforded certain service functions to fulfil that project (e.g. the digital team for a website build). But when you’re working under a retainer arrangement, all of the agency’s services are available to you. This could include strategy, branding, copywriting, design, digital, PR, media, and any other functions or expertise the agency houses.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Your work is prioritised\",\"text\":\"Few agencies are waiting by the phone for the client to ring with a new project so they can leap straight onto it. There are always jobs on the go. But on a retainer, your work is prioritised so quick turnarounds can be achieved if required. Our agreement with retainer clients is that their work happens when it needs to happen, so they jump the queue whenever necessary.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"No surprise costs and lower hourly rates\",\"text\":\"For clients, the assurance of having a set monthly cost is often the determining reason for establishing a retainer with an agency. The no-surprise-invoices guarantee is worth the price of admission. Usually retainers also mean lower hourly rates than the rack rates, as agencies know what income is being delivered and can resource accordingly.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Transparency and reporting\",\"text\":\"A normal part of our retainer agreements is for regular reporting of how hours and services are being spent in any given month, so clients remain fully informed at all times. Never will you get to the end of the month and wonder what the agency has been doing for your investment. Retainer reconciliations are standard practice.\"}}}}},\"new4\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"So what will a $10,000-per-month retainer get you?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new5\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Don’t get caught up in the $10,000 figure. Retainer figures are mostly determined by the client’s marketing budget and your needs. So whether you need to halve it, double it, quarter it or triple it—it doesn’t matter. We just want to provide a guide on what you can expect from a $10,000 monthly retainer budget at New Word Order.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-e7upfKVF5J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-Ax8fnuTi2u\",\"content\":{\"fields\":{\"images\":[\"142674\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-m0UjFdziAZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Strategy (Strategic direction, research, analysis, advisory and consultation)\",\"text\":\"12 hours a month\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Client Service (Account direction, management, production, coordination)\",\"text\":\"18 hours a month\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Creative Direction\",\"text\":\"4 hours a month\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Copywriting\",\"text\":\"4 hours a month\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"Art Direction\",\"text\":\"6 hours a month\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Graphic Design\",\"text\":\"16 hours a month\"}}}}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Compare this to the cost of employing a marketing manager and contracting an agency to work on ad-hoc projects and the value is plain to see.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Want to know more? Call us for a confidential chat about retainers or other ways of working with New Word Order.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The ways brands make or break business outcomes','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138973,142744,1,'What a $10,000-per-month ad agency retainer gets you','2022-10-18 01:12:29','2022-10-18 01:12:29','6fcefdbf-7320-4ba8-979a-83f7cb3e5f37',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Le3COrDzEZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What a $10,000-per-month ad agency retainer gets you\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Advertising agency and client retainer agreements sometimes get a bad rap. From both sides of the equation, there can be a fear about the ‘value’ factor. Clients might be concerned about outlaying a set amount and not seeing value delivered, while agencies worry about over-servicing, over-delivering and having to absorb costs.  \\n\\nThe truth, as always, lies somewhere in the middle. A good agency retainer agreement that is well-scoped and structured will provide fair value to both parties along with other significant benefits.  \\n\\nHere at New Word Order, we operate on a retainer basis with a number of clients. Not all, as other clients prefer the fee-for-project model. But our experience with retainers has given us a good appreciation of why they work and how to avoid pitfalls.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Let’s look at the benefits of an agency retainer agreement.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new4\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Build long term relationship and trust\",\"text\":\"Supplier relationships built over time offer incredible advantages for your business, and add to your bottom line. When your agency works constantly with you and becomes familiar with your tone, style and business objectives, you’ll see huge efficiencies and autonomy that save you time and money.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Fuller understanding of your brand, business and sector\",\"text\":\"Agencies, on the whole, are very good at diving into your business and learning intimate details about your brand, business operations, objectives and your sector as whole. This is accentuated when there is a retainer in place, as the commitment goes way beyond a specific project needs.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Access to all of the agency’s services\",\"text\":\"When you operate on a project basis, you may only be afforded certain service functions to fulfil that project (e.g. the digital team for a website build). But when you’re working under a retainer arrangement, all of the agency’s services are available to you. This could include strategy, branding, copywriting, design, digital, PR, media, and any other functions or expertise the agency houses.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Your work is prioritised\",\"text\":\"Few agencies are waiting by the phone for the client to ring with a new project so they can leap straight onto it. There are always jobs on the go. But on a retainer, your work is prioritised so quick turnarounds can be achieved if required. Our agreement with retainer clients is that their work happens when it needs to happen, so they jump the queue whenever necessary.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"No surprise costs and lower hourly rates\",\"text\":\"For clients, the assurance of having a set monthly cost is often the determining reason for establishing a retainer with an agency. The no-surprise-invoices guarantee is worth the price of admission. Usually retainers also mean lower hourly rates than the rack rates, as agencies know what income is being delivered and can resource accordingly.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Transparency and reporting\",\"text\":\"A normal part of our retainer agreements is for regular reporting of how hours and services are being spent in any given month, so clients remain fully informed at all times. Never will you get to the end of the month and wonder what the agency has been doing for your investment. Retainer reconciliations are standard practice.\"}}}}},\"new5\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"So what will a $10,000-per-month retainer get you?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new6\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Don’t get caught up in the $10,000 figure. Retainer figures are mostly determined by the client’s marketing budget and your needs. So whether you need to halve it, double it, quarter it or triple it—it doesn’t matter. We just want to provide a guide on what you can expect from a $10,000 monthly retainer budget at New Word Order.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-e7upfKVF5J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-Ax8fnuTi2u\",\"content\":{\"fields\":{\"images\":[\"142674\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-m0UjFdziAZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Strategy (Strategic direction, research, analysis, advisory and consultation)\",\"text\":\"12 hours a month\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Client Service (Account direction, management, production, coordination)\",\"text\":\"18 hours a month\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Creative Direction\",\"text\":\"4 hours a month\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Copywriting\",\"text\":\"4 hours a month\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"Art Direction\",\"text\":\"6 hours a month\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Graphic Design\",\"text\":\"16 hours a month\"}}}}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Compare this to the cost of employing a marketing manager and contracting an agency to work on ad-hoc projects and the value is plain to see.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Want to know more? Call us for a confidential chat about retainers or other ways of working with New Word Order.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The ways brands make or break business outcomes','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138975,142746,1,'What a $10,000-per-month ad agency retainer gets you','2022-10-18 01:14:22','2022-10-18 01:14:22','3014ae13-a390-4e8f-b13a-58b90f0d74c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Le3COrDzEZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What a $10,000-per-month ad agency retainer gets you\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Advertising agency and client retainer agreements sometimes get a bad rap. From both sides of the equation, there can be a fear about the ‘value’ factor. Clients might be concerned about outlaying a set amount and not seeing value delivered, while agencies worry about over-servicing, over-delivering and having to absorb costs.  \\n\\nThe truth, as always, lies somewhere in the middle. A good agency retainer agreement that is well-scoped and structured will provide fair value to both parties along with other significant benefits.  \\n\\nHere at New Word Order, we operate on a retainer basis with a number of clients. Not all, as other clients prefer the fee-for-project model. But our experience with retainers has given us a good appreciation of why they work and how to avoid pitfalls.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Let’s look at the benefits of an agency retainer agreement.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new4\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Build long term relationship and trust\",\"text\":\"Supplier relationships built over time offer incredible advantages for your business, and add to your bottom line. When your agency works constantly with you and becomes familiar with your tone, style and business objectives, you’ll see huge efficiencies and autonomy that save you time and money.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Fuller understanding of your brand, business and sector\",\"text\":\"Agencies, on the whole, are very good at diving into your business and learning intimate details about your brand, business operations, objectives and your sector as whole. This is accentuated when there is a retainer in place, as the commitment goes way beyond a specific project needs.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Access to all of the agency’s services\",\"text\":\"When you operate on a project basis, you may only be afforded certain service functions to fulfil that project (e.g. the digital team for a website build). But when you’re working under a retainer arrangement, all of the agency’s services are available to you. This could include strategy, branding, copywriting, design, digital, PR, media, and any other functions or expertise the agency houses.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Your work is prioritised\",\"text\":\"Few agencies are waiting by the phone for the client to ring with a new project so they can leap straight onto it. There are always jobs on the go. But on a retainer, your work is prioritised so quick turnarounds can be achieved if required. Our agreement with retainer clients is that their work happens when it needs to happen, so they jump the queue whenever necessary.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"No surprise costs and lower hourly rates\",\"text\":\"For clients, the assurance of having a set monthly cost is often the determining reason for establishing a retainer with an agency. The no-surprise-invoices guarantee is worth the price of admission. Usually retainers also mean lower hourly rates than the rack rates, as agencies know what income is being delivered and can resource accordingly.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Transparency and reporting\",\"text\":\"A normal part of our retainer agreements is for regular reporting of how hours and services are being spent in any given month, so clients remain fully informed at all times. Never will you get to the end of the month and wonder what the agency has been doing for your investment. Retainer reconciliations are standard practice.\"}},\"new7\":{\"type\":\"6\",\"fields\":{\"heading\":\"Proactive strategic thinking and holistic approach\",\"text\":\"Long-term relationships provide the stability required for agencies to focus more clearly on business outcomes rather than project deliverables. Under a retainer the relationship is more likely to shift from being transactional and project driven to strategic. Rather than just being project-responsive, your agency can adopt a proactive approach to your marketing strategy and cultivate more creative growth opportunities.\"}},\"new8\":{\"type\":\"6\",\"fields\":{\"heading\":null,\"text\":\"It also allows you to use your retained agency across all your needs so they can holistically contribute to the success of your business. This is more efficient than using multiple agencies for different projects as no single agency is then responsible for overall strategy, measurement and achievement of marketing goals.\"}}}}},\"new5\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"So what will a $10,000-per-month retainer get you?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new6\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Don’t get caught up in the $10,000 figure. Retainer figures are mostly determined by the client’s marketing budget and your needs. So whether you need to halve it, double it, quarter it or triple it—it doesn’t matter. We just want to provide a guide on what you can expect from a $10,000 monthly retainer budget at New Word Order.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-e7upfKVF5J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-Ax8fnuTi2u\",\"content\":{\"fields\":{\"images\":[\"142674\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-m0UjFdziAZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Strategy (Strategic direction, research, analysis, advisory and consultation)\",\"text\":\"12 hours a month\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Client Service (Account direction, management, production, coordination)\",\"text\":\"18 hours a month\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Creative Direction\",\"text\":\"4 hours a month\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Copywriting\",\"text\":\"4 hours a month\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"Art Direction\",\"text\":\"6 hours a month\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Graphic Design\",\"text\":\"16 hours a month\"}}}}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Compare this to the cost of employing a marketing manager and contracting an agency to work on ad-hoc projects and the value is plain to see.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Want to know more? Call us for a confidential chat about retainers or other ways of working with New Word Order.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The ways brands make or break business outcomes','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138977,142748,1,'What a $10,000-per-month ad agency retainer gets you','2022-10-18 01:15:47','2022-10-18 01:15:47','fbf55535-fa17-4cfa-a72d-adf5149320fc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Le3COrDzEZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What a $10,000-per-month ad agency retainer gets you\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Advertising agency and client retainer agreements sometimes get a bad rap. From both sides of the equation, there can be a fear about the ‘value’ factor. Clients might be concerned about outlaying a set amount and not seeing value delivered, while agencies worry about over-servicing, over-delivering and having to absorb costs.  \\n\\nThe truth, as always, lies somewhere in the middle. A good agency retainer agreement that is well-scoped and structured will provide fair value to both parties along with other significant benefits.  \\n\\nHere at New Word Order, we operate on a retainer basis with a number of clients. Not all, as other clients prefer the fee-for-project model. But our experience with retainers has given us a good appreciation of why they work and how to avoid pitfalls.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Let’s look at the benefits of an agency retainer agreement.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new4\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Build long term relationship and trust\",\"text\":\"Supplier relationships built over time offer incredible advantages for your business, and add to your bottom line. When your agency works constantly with you and becomes familiar with your tone, style and business objectives, you’ll see huge efficiencies and autonomy that save you time and money.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Fuller understanding of your brand, business and sector\",\"text\":\"Agencies, on the whole, are very good at diving into your business and learning intimate details about your brand, business operations, objectives and your sector as whole. This is accentuated when there is a retainer in place, as the commitment goes way beyond a specific project needs.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Access to all of the agency’s services\",\"text\":\"When you operate on a project basis, you may only be afforded certain service functions to fulfil that project (e.g. the digital team for a website build). But when you’re working under a retainer arrangement, all of the agency’s services are available to you. This could include strategy, branding, copywriting, design, digital, PR, media, and any other functions or expertise the agency houses.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Your work is prioritised\",\"text\":\"Few agencies are waiting by the phone for the client to ring with a new project so they can leap straight onto it. There are always jobs on the go. But on a retainer, your work is prioritised so quick turnarounds can be achieved if required. Our agreement with retainer clients is that their work happens when it needs to happen, so they jump the queue whenever necessary.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"No surprise costs and lower hourly rates\",\"text\":\"For clients, the assurance of having a set monthly cost is often the determining reason for establishing a retainer with an agency. The no-surprise-invoices guarantee is worth the price of admission. Usually retainers also mean lower hourly rates than the rack rates, as agencies know what income is being delivered and can resource accordingly.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Transparency and reporting\",\"text\":\"A normal part of our retainer agreements is for regular reporting of how hours and services are being spent in any given month, so clients remain fully informed at all times. Never will you get to the end of the month and wonder what the agency has been doing for your investment. Retainer reconciliations are standard practice.\"}},\"new7\":{\"type\":\"6\",\"fields\":{\"heading\":\"Proactive strategic thinking\",\"text\":\"Long-term relationships provide the stability required for agencies to focus more clearly on business outcomes rather than project deliverables. Under a retainer the relationship is more likely to shift from being transactional and project driven to strategic. Rather than just being project-responsive, your agency can adopt a proactive approach to your marketing strategy and cultivate more creative growth opportunities.\"}},\"new8\":{\"type\":\"6\",\"fields\":{\"heading\":\"Holistic business approach\",\"text\":\"It also allows you to use your retained agency across all your needs so they can holistically contribute to the success of your business. This is more efficient than using multiple agencies for different projects as no single agency is then responsible for overall strategy, measurement and achievement of marketing goals.\"}}}}},\"new5\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"So what will a $10,000-per-month retainer get you?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new6\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Don’t get caught up in the $10,000 figure. Retainer figures are mostly determined by the client’s marketing budget and your needs. So whether you need to halve it, double it, quarter it or triple it—it doesn’t matter. We just want to provide a guide on what you can expect from a $10,000 monthly retainer budget at New Word Order.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-e7upfKVF5J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-Ax8fnuTi2u\",\"content\":{\"fields\":{\"images\":[\"142674\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-m0UjFdziAZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Strategy (Strategic direction, research, analysis, advisory and consultation)\",\"text\":\"12 hours a month\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Client Service (Account direction, management, production, coordination)\",\"text\":\"18 hours a month\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Creative Direction\",\"text\":\"4 hours a month\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Copywriting\",\"text\":\"4 hours a month\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"Art Direction\",\"text\":\"6 hours a month\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Graphic Design\",\"text\":\"16 hours a month\"}}}}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Compare this to the cost of employing a marketing manager and contracting an agency to work on ad-hoc projects and the value is plain to see.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Want to know more? Call us for a confidential chat about retainers or other ways of working with New Word Order.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The ways brands make or break business outcomes','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138979,142750,1,'What a $10,000-per-month ad agency retainer gets you','2022-10-18 01:17:28','2022-10-18 01:17:28','e4f35d9a-73de-4df8-a06d-1a0a3b8c1e58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Le3COrDzEZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What a $10,000-per-month ad agency retainer gets you\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Advertising agency and client retainer agreements sometimes get a bad rap. From both sides of the equation, there can be a fear about the ‘value’ factor. Clients might be concerned about outlaying a set amount and not seeing value delivered, while agencies worry about over-servicing, over-delivering and having to absorb costs.  \\n\\nThe truth, as always, lies somewhere in the middle. A good agency retainer agreement that is well-scoped and structured will provide fair value to both parties along with other significant benefits.  \\n\\nHere at New Word Order, we operate on a retainer basis with a number of clients. Not all, as other clients prefer the fee-for-project model. But our experience with retainers has given us a good appreciation of why they work and how to avoid pitfalls.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Let’s look at the benefits of an agency retainer agreement.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new4\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Build long term relationship and trust\",\"text\":\"Supplier relationships built over time offer incredible advantages for your business, and add to your bottom line. When your agency works constantly with you and becomes familiar with your tone, style and business objectives, you’ll see huge efficiencies and autonomy that save you time and money.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Fuller understanding of your brand, business and sector\",\"text\":\"Agencies, on the whole, are very good at diving into your business and learning intimate details about your brand, business operations, objectives and your sector as whole. This is accentuated when there is a retainer in place, as the commitment goes way beyond a specific project needs.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Access to all of the agency’s services\",\"text\":\"When you operate on a project basis, you may only be afforded certain service functions to fulfil that project (e.g. the digital team for a website build). But when you’re working under a retainer arrangement, all of the agency’s services are available to you. This could include strategy, branding, copywriting, design, digital, PR, media, and any other functions or expertise the agency houses.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Your work is prioritised\",\"text\":\"Few agencies are waiting by the phone for the client to ring with a new project so they can leap straight onto it. There are always jobs on the go. But on a retainer, your work is prioritised so quick turnarounds can be achieved if required. Our agreement with retainer clients is that their work happens when it needs to happen, so they jump the queue whenever necessary.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"No surprise costs and lower hourly rates\",\"text\":\"For clients, the assurance of having a set monthly cost is often the determining reason for establishing a retainer with an agency. The no-surprise-invoices guarantee is worth the price of admission. Usually retainers also mean lower hourly rates than the rack rates, as agencies know what income is being delivered and can resource accordingly.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Transparency and reporting\",\"text\":\"A normal part of our retainer agreements is for regular reporting of how hours and services are being spent in any given month, so clients remain fully informed at all times. Never will you get to the end of the month and wonder what the agency has been doing for your investment. Retainer reconciliations are standard practice.\"}},\"new7\":{\"type\":\"6\",\"fields\":{\"heading\":\"Proactive strategic thinking\",\"text\":\"Long-term relationships provide the stability required for agencies to focus more clearly on business outcomes rather than project deliverables. Under a retainer the relationship is more likely to shift from being transactional and project driven to strategic. Rather than just being project-responsive, your agency can adopt a proactive approach to your marketing strategy and cultivate more creative growth opportunities.\"}},\"new8\":{\"type\":\"6\",\"fields\":{\"heading\":\"Holistic business approach\",\"text\":\"It also allows you to use your retained agency across all your needs so they can holistically contribute to the success of your business. This is more efficient than using multiple agencies for different projects as no single agency is then responsible for overall strategy, measurement and achievement of marketing goals.\"}}}}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-e7upfKVF5J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-Ax8fnuTi2u\",\"content\":{\"fields\":{\"images\":[\"142674\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-m0UjFdziAZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"So what will a $10,000-per-month retainer get you?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Don’t get caught up in the $10,000 figure. Retainer figures are mostly determined by the client’s marketing budget and your needs. So whether you need to halve it, double it, quarter it or triple it—it doesn’t matter. We just want to provide a guide on what you can expect from a $10,000 monthly retainer budget at New Word Order.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Strategy (Strategic direction, research, analysis, advisory and consultation)\",\"text\":\"12 hours a month\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Client Service (Account direction, management, production, coordination)\",\"text\":\"18 hours a month\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Creative Direction\",\"text\":\"4 hours a month\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Copywriting\",\"text\":\"4 hours a month\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"Art Direction\",\"text\":\"6 hours a month\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Graphic Design\",\"text\":\"16 hours a month\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Compare this to the cost of employing a marketing manager and contracting an agency to work on ad-hoc projects and the value is plain to see.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new5\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Want to know more? Call us for a confidential chat about retainers or other ways of working with New Word Order.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The ways brands make or break business outcomes','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138980,142751,1,'What a $10,000-per-month ad agency retainer gets you','2022-10-18 01:24:52','2022-10-18 01:25:00','7474ab57-4974-4513-87ab-f465d9b422f6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Le3COrDzEZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What a $10,000-per-month ad agency retainer gets you\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Advertising agency and client retainer agreements sometimes get a bad rap. From both sides of the equation, there can be a fear about the ‘value’ factor. Clients might be concerned about outlaying a set amount and not seeing value delivered, while agencies worry about over-servicing, over-delivering and having to absorb costs.  \\n\\nThe truth, as always, lies somewhere in the middle. A good agency retainer agreement that is well-scoped and structured will provide fair value to both parties along with other significant benefits.  \\n\\nHere at New Word Order, we operate on a retainer basis with a number of clients. Not all, as other clients prefer the fee-for-project model. But our experience with retainers has given us a good appreciation of why they work and how to avoid pitfalls.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Let’s look at the benefits of an agency retainer agreement.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new4\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Build long term relationship and trust\",\"text\":\"Supplier relationships built over time offer incredible advantages for your business, and add to your bottom line. When your agency works constantly with you and becomes familiar with your tone, style and business objectives, you’ll see huge efficiencies and autonomy that save you time and money.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Fuller understanding of your brand, business and sector\",\"text\":\"Agencies, on the whole, are very good at diving into your business and learning intimate details about your brand, business operations, objectives and your sector as whole. This is accentuated when there is a retainer in place, as the commitment goes way beyond a specific project needs.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Access to all of the agency’s services\",\"text\":\"When you operate on a project basis, you may only be afforded certain service functions to fulfil that project (e.g. the digital team for a website build). But when you’re working under a retainer arrangement, all of the agency’s services are available to you. This could include strategy, branding, copywriting, design, digital, PR, media, and any other functions or expertise the agency houses.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Your work is prioritised\",\"text\":\"Few agencies are waiting by the phone for the client to ring with a new project so they can leap straight onto it. There are always jobs on the go. But on a retainer, your work is prioritised so quick turnarounds can be achieved if required. Our agreement with retainer clients is that their work happens when it needs to happen, so they jump the queue whenever necessary.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"No surprise costs and lower hourly rates\",\"text\":\"For clients, the assurance of having a set monthly cost is often the determining reason for establishing a retainer with an agency. The no-surprise-invoices guarantee is worth the price of admission. Usually retainers also mean lower hourly rates than the rack rates, as agencies know what income is being delivered and can resource accordingly.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Transparency and reporting\",\"text\":\"A normal part of our retainer agreements is for regular reporting of how hours and services are being spent in any given month, so clients remain fully informed at all times. Never will you get to the end of the month and wonder what the agency has been doing for your investment. Retainer reconciliations are standard practice.\"}},\"new7\":{\"type\":\"6\",\"fields\":{\"heading\":\"Proactive strategic thinking\",\"text\":\"Long-term relationships provide the stability required for agencies to focus more clearly on business outcomes rather than project deliverables. Under a retainer the relationship is more likely to shift from being transactional and project driven to strategic. Rather than just being project-responsive, your agency can adopt a proactive approach to your marketing strategy and cultivate more creative growth opportunities.\"}},\"new8\":{\"type\":\"6\",\"fields\":{\"heading\":\"Holistic business approach\",\"text\":\"It also allows you to use your retained agency across all your needs so they can holistically contribute to the success of your business. This is more efficient than using multiple agencies for different projects as no single agency is then responsible for overall strategy, measurement and achievement of marketing goals.\"}}}}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-e7upfKVF5J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-Ax8fnuTi2u\",\"content\":{\"fields\":{\"images\":[\"142674\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-m0UjFdziAZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"So what will a $10,000-per-month retainer get you?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Don’t get caught up in the $10,000 figure. Retainer figures are mostly determined by the client’s marketing budget and your needs. So whether you need to halve it, double it, quarter it or triple it—it doesn’t matter. We just want to provide a guide on what you can expect from a $10,000 monthly retainer budget at New Word Order.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Strategy (Strategic direction, research, analysis, advisory and consultation)\",\"text\":\"12 hours a month\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Client Service (Account direction, management, production, coordination)\",\"text\":\"18 hours a month\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Creative Direction\",\"text\":\"4 hours a month\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Copywriting\",\"text\":\"4 hours a month\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"Art Direction\",\"text\":\"6 hours a month\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Graphic Design\",\"text\":\"16 hours a month\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Compare this to the cost of employing a marketing manager and contracting an agency to work on ad-hoc projects and the value is plain to see.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new5\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Want to know more? Call us for a confidential chat about retainers or other ways of working with New Word Order.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The ways brands make or break business outcomes','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138982,142753,1,'What a $10,000-per-month ad agency retainer gets you','2022-10-18 01:26:50','2022-10-18 01:26:50','2f013d30-faaa-4476-b947-c623268d6cf4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Le3COrDzEZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What a $10,000-per-month ad agency retainer gets you\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Advertising agency and client retainer agreements sometimes get a bad rap. From both sides of the equation, there can be a fear about the ‘value’ factor. Clients might be concerned about outlaying a set amount and not seeing value delivered, while agencies worry about over-servicing, over-delivering and having to absorb costs.  \\n\\nThe truth, as always, lies somewhere in the middle. A good agency retainer agreement that is well-scoped and structured will provide fair value to both parties along with other significant benefits.  \\n\\nHere at New Word Order, we operate on a retainer basis with a number of clients. Not all, as other clients prefer the fee-for-project model. But our experience with retainers has given us a good appreciation of why they work and how to avoid pitfalls.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Let’s look at the benefits of an agency retainer agreement.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new4\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Build long term relationship and trust\",\"text\":\"Supplier relationships built over time offer incredible advantages for your business, and add to your bottom line. When your agency works constantly with you and becomes familiar with your tone, style and business objectives, you’ll see huge efficiencies and autonomy that save you time and money.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Fuller understanding of your brand, business and sector\",\"text\":\"Agencies, on the whole, are very good at diving into your business and learning intimate details about your brand, business operations, objectives and your sector as whole. This is accentuated when there is a retainer in place, as the commitment goes way beyond a specific project needs.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Access to all of the agency’s services\",\"text\":\"When you operate on a project basis, you may only be afforded certain service functions to fulfil that project (e.g. the digital team for a website build). But when you’re working under a retainer arrangement, all of the agency’s services are available to you. This could include strategy, branding, copywriting, design, digital, PR, media, and any other functions or expertise the agency houses.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Your work is prioritised\",\"text\":\"Few agencies are waiting by the phone for the client to ring with a new project so they can leap straight onto it. There are always jobs on the go. But on a retainer, your work is prioritised so quick turnarounds can be achieved if required. Our agreement with retainer clients is that their work happens when it needs to happen, so they jump the queue whenever necessary.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"No surprise costs and lower hourly rates\",\"text\":\"For clients, the assurance of having a set monthly cost is often the determining reason for establishing a retainer with an agency. The no-surprise-invoices guarantee is worth the price of admission. Usually retainers also mean lower hourly rates than the rack rates, as agencies know what income is being delivered and can resource accordingly.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Transparency and reporting\",\"text\":\"A normal part of our retainer agreements is for regular reporting of how hours and services are being spent in any given month, so clients remain fully informed at all times. Never will you get to the end of the month and wonder what the agency has been doing for your investment. Retainer reconciliations are standard practice.\"}},\"new7\":{\"type\":\"6\",\"fields\":{\"heading\":\"Proactive strategic thinking\",\"text\":\"Long-term relationships provide the stability required for agencies to focus more clearly on business outcomes rather than project deliverables. Under a retainer the relationship is more likely to shift from being transactional and project driven to strategic. Rather than just being project-responsive, your agency can adopt a proactive approach to your marketing strategy and cultivate more creative growth opportunities.\"}},\"new8\":{\"type\":\"6\",\"fields\":{\"heading\":\"Holistic business approach\",\"text\":\"It also allows you to use your retained agency across all your needs so they can holistically contribute to the success of your business. This is more efficient than using multiple agencies for different projects as no single agency is then responsible for overall strategy, measurement and achievement of marketing goals.\"}}}}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-e7upfKVF5J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-Ax8fnuTi2u\",\"content\":{\"fields\":{\"images\":[\"142674\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-m0UjFdziAZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"So what will a $10,000-per-month retainer get you?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Don’t get caught up in the $10,000 figure. Retainer figures are mostly determined by the client’s marketing budget and your needs. So whether you need to halve it, double it, quarter it or triple it—it doesn’t matter. We just want to provide a guide on what you can expect from a $10,000 monthly retainer budget at New Word Order.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Strategy (Strategic direction, research, analysis, advisory and consultation)\",\"text\":\"12 hours a month\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Client Service (Account direction, management, production, coordination)\",\"text\":\"18 hours a month\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Creative Direction\",\"text\":\"4 hours a month\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Copywriting\",\"text\":\"4 hours a month\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"Art Direction\",\"text\":\"6 hours a month\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Graphic Design\",\"text\":\"16 hours a month\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Compare this to the cost of employing a marketing manager and contracting an agency to work on ad-hoc projects and the value is plain to see.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Ioo01jWr8b\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Want to know more? Call us for a confidential chat about retainers or other ways of working with New Word Order.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The ways brands make or break business outcomes','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138983,142754,1,'What a $10,000-per-month ad agency retainer gets you','2022-10-18 01:27:32','2022-10-18 01:27:34','a6bd33fd-c293-4d9c-8306-1a81c12324e2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Le3COrDzEZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Advertising agency and client retainer agreements sometimes get a bad rap. From both sides of the equation, there can be a fear about the ‘value’ factor. Clients might be concerned about outlaying a set amount and not seeing value delivered, while agencies worry about over-servicing, over-delivering and having to absorb costs.  \\n\\nThe truth, as always, lies somewhere in the middle. A good agency retainer agreement that is well-scoped and structured will provide fair value to both parties along with other significant benefits.  \\n\\nHere at New Word Order, we operate on a retainer basis with a number of clients. Not all, as other clients prefer the fee-for-project model. But our experience with retainers has given us a good appreciation of why they work and how to avoid pitfalls.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Let’s look at the benefits of an agency retainer agreement.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Build long term relationship and trust\",\"text\":\"Supplier relationships built over time offer incredible advantages for your business, and add to your bottom line. When your agency works constantly with you and becomes familiar with your tone, style and business objectives, you’ll see huge efficiencies and autonomy that save you time and money.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Fuller understanding of your brand, business and sector\",\"text\":\"Agencies, on the whole, are very good at diving into your business and learning intimate details about your brand, business operations, objectives and your sector as whole. This is accentuated when there is a retainer in place, as the commitment goes way beyond a specific project needs.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Access to all of the agency’s services\",\"text\":\"When you operate on a project basis, you may only be afforded certain service functions to fulfil that project (e.g. the digital team for a website build). But when you’re working under a retainer arrangement, all of the agency’s services are available to you. This could include strategy, branding, copywriting, design, digital, PR, media, and any other functions or expertise the agency houses.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Your work is prioritised\",\"text\":\"Few agencies are waiting by the phone for the client to ring with a new project so they can leap straight onto it. There are always jobs on the go. But on a retainer, your work is prioritised so quick turnarounds can be achieved if required. Our agreement with retainer clients is that their work happens when it needs to happen, so they jump the queue whenever necessary.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"No surprise costs and lower hourly rates\",\"text\":\"For clients, the assurance of having a set monthly cost is often the determining reason for establishing a retainer with an agency. The no-surprise-invoices guarantee is worth the price of admission. Usually retainers also mean lower hourly rates than the rack rates, as agencies know what income is being delivered and can resource accordingly.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Transparency and reporting\",\"text\":\"A normal part of our retainer agreements is for regular reporting of how hours and services are being spent in any given month, so clients remain fully informed at all times. Never will you get to the end of the month and wonder what the agency has been doing for your investment. Retainer reconciliations are standard practice.\"}},\"new7\":{\"type\":\"6\",\"fields\":{\"heading\":\"Proactive strategic thinking\",\"text\":\"Long-term relationships provide the stability required for agencies to focus more clearly on business outcomes rather than project deliverables. Under a retainer the relationship is more likely to shift from being transactional and project driven to strategic. Rather than just being project-responsive, your agency can adopt a proactive approach to your marketing strategy and cultivate more creative growth opportunities.\"}},\"new8\":{\"type\":\"6\",\"fields\":{\"heading\":\"Holistic business approach\",\"text\":\"It also allows you to use your retained agency across all your needs so they can holistically contribute to the success of your business. This is more efficient than using multiple agencies for different projects as no single agency is then responsible for overall strategy, measurement and achievement of marketing goals.\"}}}}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-e7upfKVF5J\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-Ax8fnuTi2u\",\"content\":{\"fields\":{\"images\":[\"142674\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-m0UjFdziAZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"So what will a $10,000-per-month retainer get you?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Don’t get caught up in the $10,000 figure. Retainer figures are mostly determined by the client’s marketing budget and your needs. So whether you need to halve it, double it, quarter it or triple it—it doesn’t matter. We just want to provide a guide on what you can expect from a $10,000 monthly retainer budget at New Word Order.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Strategy (Strategic direction, research, analysis, advisory and consultation)\",\"text\":\"12 hours a month\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Client Service (Account direction, management, production, coordination)\",\"text\":\"18 hours a month\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Creative Direction\",\"text\":\"4 hours a month\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Copywriting\",\"text\":\"4 hours a month\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"Art Direction\",\"text\":\"6 hours a month\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Graphic Design\",\"text\":\"16 hours a month\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Compare this to the cost of employing a marketing manager and contracting an agency to work on ad-hoc projects and the value is plain to see.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Ioo01jWr8b\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Want to know more? Call us for a confidential chat about retainers or other ways of working with New Word Order.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The ways brands make or break business outcomes','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138984,142755,1,'Domestic and family violence','2022-10-18 04:05:07','2022-10-18 04:05:08','b8598026-c0be-482f-a2ca-0fcb7569a0da',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Everyone deserves to feel safe',NULL,NULL,'We developed a powerful campaign—visuals, messaging and animation—to help Queenslanders understand the nature of domestic and family violence and to seek help for themselves or others.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2BMTwZsxt5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16826\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-yW5tY9wyAQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"To help slow the spread of COVID-19, Queenslanders are spending more time at home—but home isn’t always a safe place.\\n\\nEveryone deserves to feel safe. Domestic and family violence is never acceptable. Help and support are available.\\n\\nThis is the campaign message the Queensland Government commissioned us to develop as the impact of COVID-19 rippled across our state.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BAdruYcFgJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16838\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CsRNpWzHen\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started the project by researching DFV campaigns in Australia and around the world.\\n\\nOur diverse target market included:\\n\\n- Adult Queenslanders 18+ who are affected by domestic and family violence\\n    - People experiencing domestic and family violence\\n    - People who become aware of domestic and family violence occurring\\n- Young Queenslanders 13-17 years old who may be affected by domestic and family violence in their household.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fOoytqzb18\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16839\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-refpZT5QBU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Messaging\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Rather than describe exactly what DFV might look like, the scripts and campaign advertisements echo the thoughts and feelings of those experiencing or observing DFV.\\n\\nThe copy style is concise, informal and written to an individual. DFV is complex and often hard to identify. We unpacked the different dimensions of DFV and always pointed the reader or viewer to help and support.\\n\\nOur messages were targeted to a diverse Queensland audience. We aimed to capture the human experience and emotions of DFV through the voice and style of the copy.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7Bn5w0QSW7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"16840\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JtCJdSgzXY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our creative team completed an environmental scan to develop three design concepts with strategic choices in colours, symbols, typography and iconography.\\n\\nThe icons are simple and symbolic. We were careful to avoid using the human figure or gender-specific shapes to symbolise violent or threatening behaviours.\\n\\nInstead, our goal was to capture the far-reaching effect of domestic violence in the home and family through clean and minimal iconography, colours and shapes.\\n\\nWe used brand colours strategically, ensuring they were striking but not aggressive or alarming. Wherever possible, we avoided dark colours and shadows.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NnJbovUwRk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/572805319?h=8a36b70d04&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/572805011?h=d90ee17ccd&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vsjyJmaOWT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Animation\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"When directing the animation style, we wanted to convey the key messages of the campaign clearly and quickly. The morphing animation style is eye-catching and interesting.\\n\\nThe morphing shapes also efficiently unpack important messages to the viewer, complementing and supporting the messages in the video voiceover.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-asjEpeVorj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/572804196\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-0Latj6rdpS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Phase 2\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"After the success of our 2020 launch, we rolled out a new iteration in 2021 that focused more on the non-physical forms of domestic and family violence.\\n\\nThis includes behaviour around controlling or monitoring finances, technology and social interactions.\\n\\nOur goal: to raise awareness and understanding of these forms of abuse, and communicate the seriousness of these behaviours.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aCf57wrIYs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/430227569\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Qes33flGQL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Work of this kind speaks straight to our purpose as an agency: to make a meaningful impact to people’s lives. Our team is proud to have been involved supporting families in our local community.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Domestic and family violence','We developed a powerful campaign—visuals, messaging and animation—to help Queenslanders understand the nature of domestic and family violence and to seek help for themselves or others.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138985,142756,1,'Medical Mums','2022-10-18 04:05:09','2022-10-18 04:05:10','69e7610d-c656-4548-952d-b18beed79b76',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A long-term approach to behaviour change',NULL,NULL,'For the past six years we have been running behaviour change campaigns to encourage families to vaccinate their children. And in that time, we\'ve seen the positive impact.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ydM19JpsMi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45317\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pqYRaab2Y6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45318\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NUepHwOfhy\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"In 2015, market research and immunisation rates across Brisbane North PHN\'s catchment were showing the anti-vax movement was taking hold.\\n\\nWhile parents from lower socio-economic backgrounds were responding to the Australian Government’s ‘no jab, no pay’ rules, those not using daycare—including many from among the wealthier suburbs—were holding their ground.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5st3FTYzr4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45319\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QwUWkeN1w7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We determined from research that parents would respond to their GP’s opinion, and developed a behaviour change campaign to encourage conversations between parents and medical professionals around immunisation and overcome objections to it.\\n\\nWe harnessed the GP/medical voice and added extra credibility by finding medical professionals who were also parents.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MQKB9uw8mS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45323\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PVmUcFRs5l\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Under the heading of Medical Mums, we found two GPs and one Indigenous health nurse to become the faces and voice of the campaign. Each discussed hot topics as well as the benefits of immunisation, drawing on their own beliefs and practices as parents as well as their medical training.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Lt1sEFXPGo\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/173565144?h=a059ec04b7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/173565142?h=1a735c3207&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-elDM8mfUVq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"2016\",\"text\":\"Medical Mums was launched during Immunisation Week.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"2017\",\"text\":\"The creative was still fresh and effective for the target group, and we ran the campaign again.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"2018\",\"text\":\"We added Stuart, our honorary Medical Dad.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"2019\",\"text\":\"It was time to mix up the messaging and creative, so we developed a vaccination myth-busting video featuring illustration—a move away from the previous live-action ads.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"2020\",\"text\":\"With COVID-19, there was new vaccination messaging clutter to cut through. We encouraged our market to keep up to date with their routine vaccinations.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"2021\",\"text\":\"Funding was initially approved for five years. But our campaign has been so successful the PHN has been provided with funding for an additional year. We will launch a new iteration in the coming months.\"}}}}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-za95KkkRhY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45322\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9XsuejXAac\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We launched the campaign in Immunisation Week in 2016, and have revised it for relaunch every year since. Results showed immunisation levels increased after the campaign each year, and our has client received extensive positive feedback—including from the Queensland Minister for Health.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Medical Mums','For the past six years we have been running behaviour change campaigns to encourage families to vaccinate their children. And in that time, we\'ve seen the positive impact.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138987,142758,1,'Let us introduce ourselves','2022-10-18 22:57:54','2022-10-18 22:57:54','877b9209-0317-4244-8c7f-c2ddcaa3ec72',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and The Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RBGevdv1yT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141527\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138989,142760,1,'NWO’s library','2022-10-18 23:19:48','2022-10-18 23:19:48','f8b3f166-a9cd-4a19-b04b-de4f4cda7fd8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142598\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<b>Book title: </b> Taste: My Life Through Food\\n<b>Author: </b> Stanley Tucci \\nFind it <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8Zua9e4kWu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142595\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### September picks\\n\\n* <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> Taste: My Life Through Food by Stanley Tucci </a> \\n* <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> A Little Life by Hanya Yanagihara </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/37558445-boy-swallows-universe\\\"> Boy Swallows Universe by Trent Dalton </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> Johnno by David Malouf </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> Growing up Queer in Australia by Benjamin Law </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> Bullet Train by Kotaro Isaka </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> A Promised Land by Barack Obama </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> The Life by Malcolm Knox </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/11468377-thinking-fast-and-slow\\\"> Thinking, Fast and Slow by Daniel Kahneman </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> Hunt, Gather, Parent by Michaeleen Doucleff </a> \\n* <a href=\\\"https://www.goodreads.com/en/book/show/30762074\\\"> Odd Dog Out by Rob Bidulph </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tAgWmP7qVi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NWO’s library','Taste: My Life Through Food by Stanley Tucci ... A Little Life by Hanya Yanagihara ... Johnno by David Malouf ... Growing up Queer in Australia by Benjamin Law ... Bullet Train by Kotaro Isaka ... A Promised Land by Barack Obama ... The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan ... The Life by Malcolm Knox',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138991,142762,1,'NWO’s library','2022-10-18 23:24:16','2022-10-18 23:24:16','32607cc9-6639-43fe-9bae-a7a9705a5955',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142598\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<b>Book title: </b> A Night Without Stars\\n<b>Author: </b> Peter F Hamilton \\nFind it <a href=\\\"https://www.goodreads.com/book/show/28439513-a-night-without-stars\\\"> here </a>\\n\\n<h6> Bree\'s pick </h6> \\n<b>Book title: </b> The Seven Husbands of Evelyn Hugo\\n<b>Author: </b> Taylor Jenkins Reid\\nFind it <a href=\\\"https://www.goodreads.com/book/show/32620332-the-seven-husbands-of-evelyn-hugo\\\"> here </a>\\n\\n<h6> Kimi\'s pick </h6> \\n<b>Book title: </b> Losing Face\\n<b>Author: </b> George Haddad\\nFind it <a href=\\\"https://www.goodreads.com/book/show/60752357-losing-face\\\"> here </a>\\n\\n<h6> Jo\'s pick </h6> \\n<b>Book title: </b> The Testaments\\n<b>Author: </b> Margaret Atwood\\nFind it <a href=\\\"https://www.goodreads.com/book/show/42975172-the-testaments\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8Zua9e4kWu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142595\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### September picks\\n\\n* <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> Taste: My Life Through Food by Stanley Tucci </a> \\n* <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> A Little Life by Hanya Yanagihara </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/37558445-boy-swallows-universe\\\"> Boy Swallows Universe by Trent Dalton </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> Johnno by David Malouf </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> Growing up Queer in Australia by Benjamin Law </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> Bullet Train by Kotaro Isaka </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> A Promised Land by Barack Obama </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> The Life by Malcolm Knox </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/11468377-thinking-fast-and-slow\\\"> Thinking, Fast and Slow by Daniel Kahneman </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> Hunt, Gather, Parent by Michaeleen Doucleff </a> \\n* <a href=\\\"https://www.goodreads.com/en/book/show/30762074\\\"> Odd Dog Out by Rob Bidulph </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tAgWmP7qVi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NWO’s library','Taste: My Life Through Food by Stanley Tucci ... A Little Life by Hanya Yanagihara ... Johnno by David Malouf ... Growing up Queer in Australia by Benjamin Law ... Bullet Train by Kotaro Isaka ... A Promised Land by Barack Obama ... The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan ... The Life by Malcolm Knox',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138993,142764,1,'Losing face','2022-10-18 23:37:26','2022-10-18 23:37:26','a191e477-b911-4e6e-8a69-054a35d23501',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/losing-face.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/losing-face.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/losing-face.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/losing-face.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/losing-face.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/losing-face.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/losing-face.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/losing-face.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/losing-face.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/losing-face.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1600,\"originalImageHeight\":1600,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAgQF/8QAIRAAAQMEAgMBAAAAAAAAAAAAAgEDEQAEEiEFkTFBUWH/xAAXAQADAQAAAAAAAAAAAAAAAAABBAUA/8QAGREAAwEBAQAAAAAAAAAAAAAAAQIDABEE/9oADAMBAAIRAxEAPwBXV000aiRnlKJAovuY331UpJsw6BrNKoh4TqBbNBbdJHBA0kc9ZUHmyjpGKVRzxTjattFyyleNoVuOJjryaSm/xJpiFVVOE5X0xd36BtLkXGLoxdB2SDQggqkfa1qKycBw80nV+kb/2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#f47b37\",\"#29221e\",\"#ebe9d9\",\"#b3b0a8\",\"#863106\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138994,142765,1,'NWO’s library','2022-10-18 23:38:11','2022-10-18 23:38:11','bb1f9e71-2a15-45ce-b1df-fb7715aa22f3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142764\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h6> Bruce’s pick </h6> \\n<b>Book title: </b> A Night Without Stars\\n<b>Author: </b> Peter F Hamilton \\nFind it <a href=\\\"https://www.goodreads.com/book/show/28439513-a-night-without-stars\\\"> here </a>\\n\\n<h6> Bree\'s pick </h6> \\n<b>Book title: </b> The Seven Husbands of Evelyn Hugo\\n<b>Author: </b> Taylor Jenkins Reid\\nFind it <a href=\\\"https://www.goodreads.com/book/show/32620332-the-seven-husbands-of-evelyn-hugo\\\"> here </a>\\n\\n<h6> Kimi\'s pick </h6> \\n<b>Book title: </b> Losing Face\\n<b>Author: </b> George Haddad\\nFind it <a href=\\\"https://www.goodreads.com/book/show/60752357-losing-face\\\"> here </a>\\n\\n<h6> Jo\'s pick </h6> \\n<b>Book title: </b> The Testaments\\n<b>Author: </b> Margaret Atwood\\nFind it <a href=\\\"https://www.goodreads.com/book/show/42975172-the-testaments\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8Zua9e4kWu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142595\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### September picks\\n\\n* <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> Taste: My Life Through Food by Stanley Tucci </a> \\n* <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> A Little Life by Hanya Yanagihara </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/37558445-boy-swallows-universe\\\"> Boy Swallows Universe by Trent Dalton </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> Johnno by David Malouf </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> Growing up Queer in Australia by Benjamin Law </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> Bullet Train by Kotaro Isaka </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> A Promised Land by Barack Obama </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> The Life by Malcolm Knox </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/11468377-thinking-fast-and-slow\\\"> Thinking, Fast and Slow by Daniel Kahneman </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> Hunt, Gather, Parent by Michaeleen Doucleff </a> \\n* <a href=\\\"https://www.goodreads.com/en/book/show/30762074\\\"> Odd Dog Out by Rob Bidulph </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tAgWmP7qVi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NWO’s library','Taste: My Life Through Food by Stanley Tucci ... A Little Life by Hanya Yanagihara ... Johnno by David Malouf ... Growing up Queer in Australia by Benjamin Law ... Bullet Train by Kotaro Isaka ... A Promised Land by Barack Obama ... The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan ... The Life by Malcolm Knox',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138996,142767,1,'NWO’s library','2022-10-18 23:39:41','2022-10-18 23:39:41','ba847216-3eb6-4be5-b44c-8006e7b719fd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142764\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### October picks\\n\\n<h6> Bruce’s pick </h6> \\n<b>Book title: </b> A Night Without Stars\\n<b>Author: </b> Peter F Hamilton \\nFind it <a href=\\\"https://www.goodreads.com/book/show/28439513-a-night-without-stars\\\"> here </a>\\n\\n<h6> Bree\'s pick </h6> \\n<b>Book title: </b> The Seven Husbands of Evelyn Hugo\\n<b>Author: </b> Taylor Jenkins Reid\\nFind it <a href=\\\"https://www.goodreads.com/book/show/32620332-the-seven-husbands-of-evelyn-hugo\\\"> here </a>\\n\\n<h6> Kimi\'s pick </h6> \\n<b>Book title: </b> Losing Face\\n<b>Author: </b> George Haddad\\nFind it <a href=\\\"https://www.goodreads.com/book/show/60752357-losing-face\\\"> here </a>\\n\\n<h6> Jo\'s pick </h6> \\n<b>Book title: </b> The Testaments\\n<b>Author: </b> Margaret Atwood\\nFind it <a href=\\\"https://www.goodreads.com/book/show/42975172-the-testaments\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8Zua9e4kWu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142595\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### September picks\\n\\n* <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> Taste: My Life Through Food by Stanley Tucci </a> \\n* <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> A Little Life by Hanya Yanagihara </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/37558445-boy-swallows-universe\\\"> Boy Swallows Universe by Trent Dalton </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> Johnno by David Malouf </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> Growing up Queer in Australia by Benjamin Law </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> Bullet Train by Kotaro Isaka </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> A Promised Land by Barack Obama </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> The Life by Malcolm Knox </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/11468377-thinking-fast-and-slow\\\"> Thinking, Fast and Slow by Daniel Kahneman </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> Hunt, Gather, Parent by Michaeleen Doucleff </a> \\n* <a href=\\\"https://www.goodreads.com/en/book/show/30762074\\\"> Odd Dog Out by Rob Bidulph </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tAgWmP7qVi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NWO’s library','Taste: My Life Through Food by Stanley Tucci ... A Little Life by Hanya Yanagihara ... Johnno by David Malouf ... Growing up Queer in Australia by Benjamin Law ... Bullet Train by Kotaro Isaka ... A Promised Land by Barack Obama ... The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan ... The Life by Malcolm Knox',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(138998,142769,1,'NWO’s library','2022-10-18 23:40:20','2022-10-18 23:40:20','3490c19f-3d8f-42ab-92ca-b2d8cdfef33e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142764\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### October picks\\n\\n<h6> Bruce’s pick </h6> \\n<b>Book title: </b> A Night Without Stars\\n<b>Author: </b> Peter F Hamilton \\nFind it <a href=\\\"https://www.goodreads.com/book/show/28439513-a-night-without-stars\\\"> here </a>\\n\\n<h6> Bree\'s pick </h6> \\n<b>Book title: </b> The Seven Husbands of Evelyn Hugo\\n<b>Author: </b> Taylor Jenkins Reid\\nFind it <a href=\\\"https://www.goodreads.com/book/show/32620332-the-seven-husbands-of-evelyn-hugo\\\"> here </a>\\n\\n<h6> Kimi\'s pick </h6> \\n<b>Book title: </b> Losing Face\\n<b>Author: </b> George Haddad\\nFind it <a href=\\\"https://www.goodreads.com/book/show/60752357-losing-face\\\"> here </a>\\n\\n<h6> Jo\'s pick </h6> \\n<b>Book title: </b> The Testaments\\n<b>Author: </b> Margaret Atwood\\nFind it <a href=\\\"https://www.goodreads.com/book/show/42975172-the-testaments\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8Zua9e4kWu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142595\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### September picks\\n\\n* <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> Taste: My Life Through Food by Stanley Tucci </a> \\n* <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> A Little Life by Hanya Yanagihara </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/37558445-boy-swallows-universe\\\"> Boy Swallows Universe by Trent Dalton </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> Johnno by David Malouf </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> Growing up Queer in Australia by Benjamin Law </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> Bullet Train by Kotaro Isaka </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> A Promised Land by Barack Obama </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> The Life by Malcolm Knox </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/11468377-thinking-fast-and-slow\\\"> Thinking, Fast and Slow by Daniel Kahneman </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> Hunt, Gather, Parent by Michaeleen Doucleff </a> \\n* <a href=\\\"https://www.goodreads.com/en/book/show/30762074\\\"> Odd Dog Out by Rob Bidulph </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tAgWmP7qVi\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NWO’s library','Taste: My Life Through Food by Stanley Tucci ... A Little Life by Hanya Yanagihara ... Johnno by David Malouf ... Growing up Queer in Australia by Benjamin Law ... Bullet Train by Kotaro Isaka ... A Promised Land by Barack Obama ... The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan ... The Life by Malcolm Knox',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139000,142771,1,'NWO’s library','2022-10-19 03:57:14','2022-10-19 03:57:14','689e00d7-af6e-44cb-bb24-4b8b0639f745',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142764\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### October picks\\n\\n<h6> Bruce’s pick </h6> \\n<b>Book title: </b> A Night Without Stars\\n<b>Author: </b> Peter F Hamilton \\nFind it <a href=\\\"https://www.goodreads.com/book/show/28439513-a-night-without-stars\\\"> here </a>\\n\\n<h6> Bree\'s pick </h6> \\n<b>Book title: </b> The Seven Husbands of Evelyn Hugo\\n<b>Author: </b> Taylor Jenkins Reid\\nFind it <a href=\\\"https://www.goodreads.com/book/show/32620332-the-seven-husbands-of-evelyn-hugo\\\"> here </a>\\n\\n<h6> Kimi\'s pick </h6> \\n<b>Book title: </b> Losing Face\\n<b>Author: </b> George Haddad\\nFind it <a href=\\\"https://www.goodreads.com/book/show/60752357-losing-face\\\"> here </a>\\n\\n<h6> Jo\'s pick </h6> \\n<b>Book title: </b> The Testaments\\n<b>Author: </b> Margaret Atwood\\nFind it <a href=\\\"https://www.goodreads.com/book/show/42975172-the-testaments\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8Zua9e4kWu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142595\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### September picks\\n\\n* <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> Taste: My Life Through Food by Stanley Tucci </a> \\n* <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> A Little Life by Hanya Yanagihara </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/37558445-boy-swallows-universe\\\"> Boy Swallows Universe by Trent Dalton </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> Johnno by David Malouf </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> Growing up Queer in Australia by Benjamin Law </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> Bullet Train by Kotaro Isaka </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> A Promised Land by Barack Obama </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> The Life by Malcolm Knox </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/11468377-thinking-fast-and-slow\\\"> Thinking, Fast and Slow by Daniel Kahneman </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> Hunt, Gather, Parent by Michaeleen Doucleff </a> \\n* <a href=\\\"https://www.goodreads.com/en/book/show/30762074\\\"> Odd Dog Out by Rob Bidulph </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tAgWmP7qVi\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NWO’s library','Taste: My Life Through Food by Stanley Tucci ... A Little Life by Hanya Yanagihara ... Johnno by David Malouf ... Growing up Queer in Australia by Benjamin Law ... Bullet Train by Kotaro Isaka ... A Promised Land by Barack Obama ... The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan ... The Life by Malcolm Knox',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139002,142773,1,'Let us introduce ourselves','2022-10-19 03:57:28','2022-10-19 03:57:28','851e0766-bd67-47a8-94bd-24bde2e961cf',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and The Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RBGevdv1yT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141527\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139004,142775,1,'22 10 retainer image 1 1','2022-10-20 00:43:56','2022-10-20 00:43:56','333da602-ea60-471c-a324-bc9071fd272d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/22_10-retainer-image-1-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/22_10-retainer-image-1-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/22_10-retainer-image-1-1.jpg\"},\"optimizedWebPImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/22_10-retainer-image-1-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/22_10-retainer-image-1-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/22_10-retainer-image-1-1.jpg.webp\"},\"variantSourceWidths\":[\"1024\",\"768\",\"640\"],\"variantHeights\":{\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1083,\"originalImageHeight\":1083,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAQAE/8QAGxABAQACAwEAAAAAAAAAAAAAAgEAMREhYXH/xAAWAQEBAQAAAAAAAAAAAAAAAAAAAwb/xAAYEQEBAQEBAAAAAAAAAAAAAAABABECIf/aAAwDAQACEQMRAD8A3pKOya8yNiwMopV8XXzEQzZUVV41iCZACi7vWJ0ieX//2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#04f98b\",\"#0c4e2c\",\"#0c9a56\",\"#057d3a\",\"#04bc5c\"],\"lightness\":33,\"placeholderWidth\":1024,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139005,142776,1,'22 10 retainer image 1 2','2022-10-20 00:44:46','2022-10-20 00:44:46','01e59a06-9508-463d-9f9a-3278ecd42d98',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x767_crop_center-center_82_line/22_10-retainer-image-1-2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x639_crop_center-center_82_line/22_10-retainer-image-1-2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x511_crop_center-center_82_line/22_10-retainer-image-1-2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1023_crop_center-center_82_line/22_10-retainer-image-1-2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x383_crop_center-center_82_line/22_10-retainer-image-1-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x319_crop_center-center_82_line/22_10-retainer-image-1-2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x767_crop_center-center_82_line/22_10-retainer-image-1-2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x639_crop_center-center_82_line/22_10-retainer-image-1-2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x511_crop_center-center_82_line/22_10-retainer-image-1-2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1023_crop_center-center_82_line/22_10-retainer-image-1-2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x383_crop_center-center_82_line/22_10-retainer-image-1-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x319_crop_center-center_82_line/22_10-retainer-image-1-2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":767,\"1280\":639,\"1024\":511,\"2048\":1023,\"768\":383,\"640\":319},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":2167,\"originalImageHeight\":1083,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAHABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAAX/xAAaEAACAgMAAAAAAAAAAAAAAAAAAQIxAyFR/8QAFgEBAQEAAAAAAAAAAAAAAAAAAAMG/8QAFhEBAQEAAAAAAAAAAAAAAAAAAAIx/9oADAMBAAIRAxEAPwCjOrIsTJjbcd9BWv/Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#04fa8b\",\"#0c6436\",\"#09a75d\",\"#088c44\",\"#04c762\"],\"lightness\":36,\"placeholderWidth\":1536,\"placeholderHeight\":767,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139006,142777,1,'22 10 retainer image 1 12','2022-10-20 00:45:41','2022-10-20 00:45:41','1dbc4586-a6ed-489f-8509-70b06ebb7390',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x767_crop_center-center_82_line/22_10-retainer-image-1-12.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x639_crop_center-center_82_line/22_10-retainer-image-1-12.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x511_crop_center-center_82_line/22_10-retainer-image-1-12.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1023_crop_center-center_82_line/22_10-retainer-image-1-12.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x383_crop_center-center_82_line/22_10-retainer-image-1-12.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x319_crop_center-center_82_line/22_10-retainer-image-1-12.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x767_crop_center-center_82_line/22_10-retainer-image-1-12.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x639_crop_center-center_82_line/22_10-retainer-image-1-12.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x511_crop_center-center_82_line/22_10-retainer-image-1-12.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1023_crop_center-center_82_line/22_10-retainer-image-1-12.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x383_crop_center-center_82_line/22_10-retainer-image-1-12.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x319_crop_center-center_82_line/22_10-retainer-image-1-12.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":767,\"1280\":639,\"1024\":511,\"2048\":1023,\"768\":383,\"640\":319},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":2167,\"originalImageHeight\":1083,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAHABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAAP/xAAXEAEBAQEAAAAAAAAAAAAAAAABACEC/8QAFQEBAQAAAAAAAAAAAAAAAAAAAAb/xAAVEQEBAAAAAAAAAAAAAAAAAAAAAf/aAAwDAQACEQMRAD8Aki4RMQ5MhX//2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#04b37b\",\"#0e4a37\",\"#0a7855\",\"#046442\",\"#079063\"],\"lightness\":26,\"placeholderWidth\":1536,\"placeholderHeight\":767,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139007,142778,1,'What a $10,000-per-month ad agency retainer gets you','2022-10-20 00:46:10','2022-10-20 00:46:10','94b293ca-173b-42e8-88ca-b4eb0d8c8f73',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Le3COrDzEZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What a $10,000-per-month ad agency retainer gets you\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Advertising agency and client retainer agreements sometimes get a bad rap. From both sides of the equation, there can be a fear about the ‘value’ factor. Clients might be concerned about outlaying a set amount and not seeing value delivered, while agencies worry about over-servicing, over-delivering and having to absorb costs.  \\n\\nThe truth, as always, lies somewhere in the middle. A good agency retainer agreement that is well-scoped and structured will provide fair value to both parties along with other significant benefits.  \\n\\nHere at New Word Order, we operate on a retainer basis with a number of clients. Not all, as other clients prefer the fee-for-project model. But our experience with retainers has given us a good appreciation of why they work and how to avoid pitfalls.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Let’s look at the benefits of an agency retainer agreement.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new4\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Build long term relationship and trust\",\"text\":\"Supplier relationships built over time offer incredible advantages for your business, and add to your bottom line. When your agency works constantly with you and becomes familiar with your tone, style and business objectives, you’ll see huge efficiencies and autonomy that save you time and money.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Fuller understanding of your brand, business and sector\",\"text\":\"Agencies, on the whole, are very good at diving into your business and learning intimate details about your brand, business operations, objectives and your sector as whole. This is accentuated when there is a retainer in place, as the commitment goes way beyond a specific project needs.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Access to all of the agency’s services\",\"text\":\"When you operate on a project basis, you may only be afforded certain service functions to fulfil that project (e.g. the digital team for a website build). But when you’re working under a retainer arrangement, all of the agency’s services are available to you. This could include strategy, branding, copywriting, design, digital, PR, media, and any other functions or expertise the agency houses.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Your work is prioritised\",\"text\":\"Few agencies are waiting by the phone for the client to ring with a new project so they can leap straight onto it. There are always jobs on the go. But on a retainer, your work is prioritised so quick turnarounds can be achieved if required. Our agreement with retainer clients is that their work happens when it needs to happen, so they jump the queue whenever necessary.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"No surprise costs and lower hourly rates\",\"text\":\"For clients, the assurance of having a set monthly cost is often the determining reason for establishing a retainer with an agency. The no-surprise-invoices guarantee is worth the price of admission. Usually retainers also mean lower hourly rates than the rack rates, as agencies know what income is being delivered and can resource accordingly.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Transparency and reporting\",\"text\":\"A normal part of our retainer agreements is for regular reporting of how hours and services are being spent in any given month, so clients remain fully informed at all times. Never will you get to the end of the month and wonder what the agency has been doing for your investment. Retainer reconciliations are standard practice.\"}},\"new7\":{\"type\":\"6\",\"fields\":{\"heading\":\"Proactive strategic thinking\",\"text\":\"Long-term relationships provide the stability required for agencies to focus more clearly on business outcomes rather than project deliverables. Under a retainer the relationship is more likely to shift from being transactional and project driven to strategic. Rather than just being project-responsive, your agency can adopt a proactive approach to your marketing strategy and cultivate more creative growth opportunities.\"}},\"new8\":{\"type\":\"6\",\"fields\":{\"heading\":\"Holistic business approach\",\"text\":\"It also allows you to use your retained agency across all your needs so they can holistically contribute to the success of your business. This is more efficient than using multiple agencies for different projects as no single agency is then responsible for overall strategy, measurement and achievement of marketing goals.\"}}}}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oPyuRVewRa\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142777\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-m0UjFdziAZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"So what will a $10,000-per-month retainer get you?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Don’t get caught up in the $10,000 figure. Retainer figures are mostly determined by the client’s marketing budget and your needs. So whether you need to halve it, double it, quarter it or triple it—it doesn’t matter. We just want to provide a guide on what you can expect from a $10,000 monthly retainer budget at New Word Order.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Strategy (Strategic direction, research, analysis, advisory and consultation)\",\"text\":\"12 hours a month\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Client Service (Account direction, management, production, coordination)\",\"text\":\"18 hours a month\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Creative Direction\",\"text\":\"4 hours a month\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Copywriting\",\"text\":\"4 hours a month\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"Art Direction\",\"text\":\"6 hours a month\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Graphic Design\",\"text\":\"16 hours a month\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Compare this to the cost of employing a marketing manager and contracting an agency to work on ad-hoc projects and the value is plain to see.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Ioo01jWr8b\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Want to know more? Call us for a confidential chat about retainers or other ways of working with New Word Order.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The ways brands make or break business outcomes','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139008,142779,1,'What a $10,000-per-month ad agency retainer gets you','2022-10-20 00:46:16','2022-10-20 00:50:31','fd78edcf-351b-4530-9a93-694547b9c1c7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Le3COrDzEZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What a $10,000-per-month ad agency retainer gets you\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Advertising agency and client retainer agreements sometimes get a bad rap. From both sides of the equation, there can be a fear about the ‘value’ factor. Clients might be concerned about outlaying a set amount and not seeing value delivered, while agencies worry about over-servicing, over-delivering and having to absorb costs.  \\n\\nThe truth, as always, lies somewhere in the middle. A good agency retainer agreement that is well-scoped and structured will provide fair value to both parties along with other significant benefits.  \\n\\nHere at New Word Order, we operate on a retainer basis with a number of clients. Not all, as other clients prefer the fee-for-project model. But our experience with retainers has given us a good appreciation of why they work and how to avoid pitfalls.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Let’s look at the benefits of an agency retainer agreement.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new4\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Build long term relationship and trust\",\"text\":\"Supplier relationships built over time offer incredible advantages for your business, and add to your bottom line. When your agency works constantly with you and becomes familiar with your tone, style and business objectives, you’ll see huge efficiencies and autonomy that save you time and money.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Fuller understanding of your brand, business and sector\",\"text\":\"Agencies, on the whole, are very good at diving into your business and learning intimate details about your brand, business operations, objectives and your sector as whole. This is accentuated when there is a retainer in place, as the commitment goes way beyond a specific project needs.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Access to all of the agency’s services\",\"text\":\"When you operate on a project basis, you may only be afforded certain service functions to fulfil that project (e.g. the digital team for a website build). But when you’re working under a retainer arrangement, all of the agency’s services are available to you. This could include strategy, branding, copywriting, design, digital, PR, media, and any other functions or expertise the agency houses.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Your work is prioritised\",\"text\":\"Few agencies are waiting by the phone for the client to ring with a new project so they can leap straight onto it. There are always jobs on the go. But on a retainer, your work is prioritised so quick turnarounds can be achieved if required. Our agreement with retainer clients is that their work happens when it needs to happen, so they jump the queue whenever necessary.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"No surprise costs and lower hourly rates\",\"text\":\"For clients, the assurance of having a set monthly cost is often the determining reason for establishing a retainer with an agency. The no-surprise-invoices guarantee is worth the price of admission. Usually retainers also mean lower hourly rates than the rack rates, as agencies know what income is being delivered and can resource accordingly.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Transparency and reporting\",\"text\":\"A normal part of our retainer agreements is for regular reporting of how hours and services are being spent in any given month, so clients remain fully informed at all times. Never will you get to the end of the month and wonder what the agency has been doing for your investment. Retainer reconciliations are standard practice.\"}},\"new7\":{\"type\":\"6\",\"fields\":{\"heading\":\"Proactive strategic thinking\",\"text\":\"Long-term relationships provide the stability required for agencies to focus more clearly on business outcomes rather than project deliverables. Under a retainer the relationship is more likely to shift from being transactional and project driven to strategic. Rather than just being project-responsive, your agency can adopt a proactive approach to your marketing strategy and cultivate more creative growth opportunities.\"}},\"new8\":{\"type\":\"6\",\"fields\":{\"heading\":\"Holistic business approach\",\"text\":\"It also allows you to use your retained agency across all your needs so they can holistically contribute to the success of your business. This is more efficient than using multiple agencies for different projects as no single agency is then responsible for overall strategy, measurement and achievement of marketing goals.\"}}}}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oPyuRVewRa\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142777\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-m0UjFdziAZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"So what will a $10,000-per-month retainer get you?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Don’t get caught up in the $10,000 figure. Retainer figures are mostly determined by the client’s marketing budget and your needs. So whether you need to halve it, double it, quarter it or triple it—it doesn’t matter. We just want to provide a guide on what you can expect from a $10,000 monthly retainer budget at New Word Order.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Strategy (Strategic direction, research, analysis, advisory and consultation)\",\"text\":\"12 hours a month\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Client Service (Account direction, management, production, coordination)\",\"text\":\"18 hours a month\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Creative Direction\",\"text\":\"4 hours a month\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"Copywriting\",\"text\":\"4 hours a month\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"Art Direction\",\"text\":\"6 hours a month\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"Graphic Design\",\"text\":\"16 hours a month\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Compare this to the cost of employing a marketing manager and contracting an agency to work on ad-hoc projects and the value is plain to see.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Ioo01jWr8b\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Want to know more? Call us for a confidential chat about retainers or other ways of working with New Word Order.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The ways brands make or break business outcomes','You probably already know your brand is more than just your logo. It’s how you look and sound, what you say, and how you behave—and it’s the story people hear, or are told, when they interact with any point of your business or organisation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139009,142780,1,'Residential Tenancies Authority','2022-10-20 04:36:59','2022-10-20 04:36:59','c2782746-4873-4cc9-a349-83abdaa3f22b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Illustrating tenancy law changes',NULL,NULL,'We all know tenancy can be complicated, from any side of the relationship. So the Residential Tenancies Authority (RTA) has introduced new laws to give tenants, landlords and property managers more certainty and transparency around their tenancy arrangements. We helped the RTA produce four animated videos to serve as friendly reminders about the law changes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bc8O0czLTg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028657?h=758f0e7169&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Ending a tenancy\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SUpdyGgoHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The RTA needed to inform the public about rental reform changes coming into effect on 1 October 2022. With such a broad audience—renters, landlords and property managers—the RTA needed an explanatory tool that relayed the information in an easily digestible, engaging and inclusive way.\\nA collection of animated explainer videos was the obvious choice.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-chZ81DIc8w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028691?h=ca954eece2&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Renting with pets\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PLy32UQvPs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The videos needed a friendly, informative tone that connected with a vast range of people. We broke the videos down into sections that addressed each of the three key audiences individually—renters, then landlords, then property managers. The audiences were represented by a diverse and inclusive suite of illustrated characters.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oGsU7M7NF2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028774?h=8eb9622a43&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Summary\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oQ8wJZ93RN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Illustration was the real standout for this project. Our illustrative style helped us depict the emotion and shared experience of renting from all sides of the tenancy relationship. The animation represented various age groups, ethnicities and occupations.\\nThe law changes are explained by friendly, engaging voiceovers that guide the videos.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YFRHfSDQGW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028736?h=a48681755c&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Repair order\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-sfiAs0GFwT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It was a pleasure to work with the team at RTA to help inform Queenslanders about the new changes to renting laws. The RTA has worked hard to make sure renting is fair for all and it was a joy to be part of bringing this to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139012,142783,1,'Email sigs','2022-10-21 02:38:41','2022-10-21 02:38:41','d8305a73-1d70-4162-bfaf-537792446680',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"113\" src=\"{asset:74279:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/email-sig.gif}\" alt=\"New Word Order\" /></a></figure>\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"100\" src=\"{asset:84923:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/nwo-email-christmas-21.png}\" alt=\"Merry Christmas\" /></a></figure>\n<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139013,142784,1,'Careers','2022-10-21 03:32:12','2022-10-21 03:32:12','b8268b1c-4130-4e92-81c5-065db24f3edd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NyO0Ik0kgl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Careers\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Subheading\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Nullam id dolor id nibh ultricies vehicula ut id elit. Curabitur blandit tempus porttitor. Donec id elit non mi porta gravida at eget metus. Cras justo odio, dapibus ac facilisis in, egestas eget quam.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Careers\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GoUEZyUfSg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-rG4w99hwoM\",\"content\":{\"fields\":{\"accordionContent\":{\"new1\":{\"type\":\"accordionBlock\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"accordionTitle\":\"Front end developer\",\"accordionText\":\"Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Nulla vitae elit libero, a pharetra augue.\\n\\nMaecenas faucibus mollis interdum. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Cras mattis consectetur purus sit amet fermentum. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\",\"buttonText\":\"Apply now\",\"buttonUrl\":\"#applicationForm\"}},\"new2\":{\"type\":\"accordionBlock\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"accordionTitle\":\"Senior designer\",\"accordionText\":\"Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Nulla vitae elit libero, a pharetra augue.\\n\\nMaecenas faucibus mollis interdum. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Cras mattis consectetur purus sit amet fermentum. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\",\"buttonText\":\"Apply now\",\"buttonUrl\":\"#applicationForm\"}}},\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BtRUbwXzyb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-s0nVisNYi6\",\"content\":{\"fields\":{\"spacer\":\"pt-8 md:pt-16 bg-black\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fz4qdj0CRS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<div id=\\\"applicationForm\\\">\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: \\\"na1\\\",\\n    portalId: \\\"8394441\\\",\\n    formId: \\\"54bb36ff-8ada-4b4f-b1f9-73d1c7fc42c6\\\"\\n  });\\n</script>\\n</div>\",\"backgroundColour\":\"bg-black\",\"sectionTitle\":\"Application forms\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Careers at New Word Order','We are a Brisbane-based agency renowned for our evidence-based, strategic approach to truly wonderful creative work','careers design copy digital','New Word Order',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139015,142786,1,'Careers','2022-10-21 03:47:31','2022-10-21 03:47:31','edd9b48b-6ac8-4cf7-81d6-565dbecaf40e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NyO0Ik0kgl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Careers\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We are a Brisbane-based agency renowned for our evidence-based, strategic approach to truly wonderful creative work. We are strongly purpose-driven—wholeheartedly committed to making a meaningful difference in the lives of our clients, their customers and the community at large. Our work is rewarding.\\n\\nThe best part of what we do is doing it together. There’s nothing quite like a room full of inspired, inspiring people united by purpose and passion—and we’re thrilled at the idea of you being a part of that.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Careers\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GqLHJAoMsp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The Benefits\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This is a rare opportunity to join a fast-growing and supportive agency in a very exciting phase of its evolution. A competitive salary will be negotiated.\\nEveryone at NWO enjoys fantastic benefits – from flexibility to bonuses, professional development and a comprehensive wellbeing program.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Flexibility and additional leave**\\n\\n- Hybrid working environment with genuine flexibility work from home and our office at Greenslopes\\n- One day per semester of paid study leave\\n- Early, late and split day options\\n- Extra day of leave for an extra happy birthday\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Bonus benefits**\\n\\n- $650 a year via AirWallex to spend on you, however you choose ($50 a month–extra $50 in your birthday month)\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new5\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Professional development**\\n\\n- Work with top executives in wide-ranging sectors\\n- Gain deep expertise across all creative fields\\n- Flexible teams means you’ll work on every account\\n- Paid professional membership of your choice\\n- Annual $1000 professional development budget\\n- Learning and development plan for every employee\\n- Study leave for post-graduate study\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new6\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Wellbeing**\\n\\n- Weekly or fortnightly 1-1 with direct manager\\n- Quarterly goal-setting and performance review\\n- Free access to Employee Assistance Program\\n- Intentional Wellbeing at Work program, including massage and yoga\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new7\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Happy Friyay (and every other day)**\\n\\n- Weekly team lunches and drinks\\n- Quarterly team nights out\\n- EOFY and Christmas staff parties\\n- Mid-year and end-of-year all-team days to rest, reflect and plan\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LhE8ewXDdj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\'s next?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"If this role sounds perfect for you, fill in the apply form below, and attach your cover letter and a link to your website or portfolio. \\n\\nWe’re looking forward to saying hello!\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BtRUbwXzyb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-s0nVisNYi6\",\"content\":{\"fields\":{\"spacer\":\"pt-8 md:pt-16 bg-black\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fz4qdj0CRS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<div id=\\\"applicationForm\\\">\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: \\\"na1\\\",\\n    portalId: \\\"8394441\\\",\\n    formId: \\\"54bb36ff-8ada-4b4f-b1f9-73d1c7fc42c6\\\"\\n  });\\n</script>\\n</div>\",\"backgroundColour\":\"bg-black\",\"sectionTitle\":\"Application forms\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Careers at New Word Order','We are a Brisbane-based agency renowned for our evidence-based, strategic approach to truly wonderful creative work','careers design copy digital','New Word Order',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139016,142787,1,'Careers','2022-10-21 03:56:40','2022-10-21 03:56:40','86d3c061-11ca-4740-8fc8-86491217e8c9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NyO0Ik0kgl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Careers\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We are a Brisbane-based agency renowned for our evidence-based, strategic approach to truly wonderful creative work. We are strongly purpose-driven—wholeheartedly committed to making a meaningful difference in the lives of our clients, their customers and the community at large. Our work is rewarding.\\n\\nThe best part of what we do is doing it together. There’s nothing quite like a room full of inspired, inspiring people united by purpose and passion—and we’re thrilled at the idea of you being a part of that.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Careers\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GqLHJAoMsp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The Benefits\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This is a rare opportunity to join a fast-growing and supportive agency in a very exciting phase of its evolution. A competitive salary will be negotiated.\\nEveryone at NWO enjoys fantastic benefits – from flexibility to bonuses, professional development and a comprehensive wellbeing program.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Flexibility and additional leave**\\n\\n- Hybrid working environment with genuine flexibility work from home and our office at Greenslopes\\n- One day per semester of paid study leave\\n- Early, late and split day options\\n- Extra day of leave for an extra happy birthday\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Bonus benefits**\\n\\n- $650 a year via AirWallex to spend on you, however you choose ($50 a month–extra $50 in your birthday month)\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new5\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Professional development**\\n\\n- Work with top executives in wide-ranging sectors\\n- Gain deep expertise across all creative fields\\n- Flexible teams means you’ll work on every account\\n- Paid professional membership of your choice\\n- Annual $1000 professional development budget\\n- Learning and development plan for every employee\\n- Study leave for post-graduate study\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new6\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Wellbeing**\\n\\n- Weekly or fortnightly 1-1 with direct manager\\n- Quarterly goal-setting and performance review\\n- Free access to Employee Assistance Program\\n- Intentional Wellbeing at Work program, including massage and yoga\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new7\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Happy Friyay (and every other day)**\\n\\n- Weekly team lunches and drinks\\n- Quarterly team nights out\\n- EOFY and Christmas staff parties\\n- Mid-year and end-of-year all-team days to rest, reflect and plan\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LhE8ewXDdj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\'s next?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"If this role sounds perfect for you, fill in the apply form below, and attach your cover letter and a link to your website or portfolio. \\n\\nWe’re looking forward to saying hello!\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BtRUbwXzyb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-s0nVisNYi6\",\"content\":{\"fields\":{\"spacer\":\"pt-8 md:pt-16 bg-black\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fz4qdj0CRS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<div id=\\\"applicationForm\\\">\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: \\\"na1\\\",\\n    portalId: \\\"8394441\\\",\\n    formId: \\\"54bb36ff-8ada-4b4f-b1f9-73d1c7fc42c6\\\"\\n  });\\n</script>\\n</div>\",\"backgroundColour\":\"bg-black\",\"sectionTitle\":\"Application forms\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Careers at New Word Order','We are a Brisbane-based agency renowned for our evidence-based, strategic approach to truly wonderful creative work','careers design copy digital','New Word Order',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139017,142788,1,'Careers','2022-10-21 03:56:53','2022-10-21 03:56:53','eb0b16c8-f861-4d6a-bbc8-20ee72eb0c91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NyO0Ik0kgl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Careers\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Subheading\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Nullam id dolor id nibh ultricies vehicula ut id elit. Curabitur blandit tempus porttitor. Donec id elit non mi porta gravida at eget metus. Cras justo odio, dapibus ac facilisis in, egestas eget quam.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Careers\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GoUEZyUfSg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-rG4w99hwoM\",\"content\":{\"fields\":{\"accordionContent\":{\"new1\":{\"type\":\"accordionBlock\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"accordionTitle\":\"Front end developer\",\"accordionText\":\"Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Nulla vitae elit libero, a pharetra augue.\\n\\nMaecenas faucibus mollis interdum. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Cras mattis consectetur purus sit amet fermentum. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\",\"buttonText\":\"Apply now\",\"buttonUrl\":\"#applicationForm\"}},\"new2\":{\"type\":\"accordionBlock\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"accordionTitle\":\"Senior designer\",\"accordionText\":\"Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Nulla vitae elit libero, a pharetra augue.\\n\\nMaecenas faucibus mollis interdum. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Cras mattis consectetur purus sit amet fermentum. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\",\"buttonText\":\"Apply now\",\"buttonUrl\":\"#applicationForm\"}}},\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BtRUbwXzyb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-s0nVisNYi6\",\"content\":{\"fields\":{\"spacer\":\"pt-8 md:pt-16 bg-black\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fz4qdj0CRS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<div id=\\\"applicationForm\\\">\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: \\\"na1\\\",\\n    portalId: \\\"8394441\\\",\\n    formId: \\\"54bb36ff-8ada-4b4f-b1f9-73d1c7fc42c6\\\"\\n  });\\n</script>\\n</div>\",\"backgroundColour\":\"bg-black\",\"sectionTitle\":\"Application forms\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Careers at New Word Order','We are a Brisbane-based agency renowned for our evidence-based, strategic approach to truly wonderful creative work','careers design copy digital','New Word Order',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139018,142789,1,'Careers','2022-10-21 03:57:13','2022-10-21 03:57:14','a6da5379-9e98-437f-91f0-20380710fd7b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NyO0Ik0kgl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Careers\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Subheading\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Nullam id dolor id nibh ultricies vehicula ut id elit. Curabitur blandit tempus porttitor. Donec id elit non mi porta gravida at eget metus. Cras justo odio, dapibus ac facilisis in, egestas eget quam.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Careers\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GoUEZyUfSg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-rG4w99hwoM\",\"content\":{\"fields\":{\"accordionContent\":{\"new1\":{\"type\":\"accordionBlock\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"accordionTitle\":\"Front end developer\",\"accordionText\":\"Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Nulla vitae elit libero, a pharetra augue.\\n\\nMaecenas faucibus mollis interdum. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Cras mattis consectetur purus sit amet fermentum. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\",\"buttonText\":\"Apply now\",\"buttonUrl\":\"#applicationForm\"}},\"new2\":{\"type\":\"accordionBlock\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"accordionTitle\":\"Senior designer\",\"accordionText\":\"Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Nulla vitae elit libero, a pharetra augue.\\n\\nMaecenas faucibus mollis interdum. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Cras mattis consectetur purus sit amet fermentum. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\",\"buttonText\":\"Apply now\",\"buttonUrl\":\"#applicationForm\"}}},\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BtRUbwXzyb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-s0nVisNYi6\",\"content\":{\"fields\":{\"spacer\":\"pt-8 md:pt-16 bg-black\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fz4qdj0CRS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<div id=\\\"applicationForm\\\">\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: \\\"na1\\\",\\n    portalId: \\\"8394441\\\",\\n    formId: \\\"54bb36ff-8ada-4b4f-b1f9-73d1c7fc42c6\\\"\\n  });\\n</script>\\n</div>\",\"backgroundColour\":\"bg-black\",\"sectionTitle\":\"Application forms\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Careers at New Word Order','We are a Brisbane-based agency renowned for our evidence-based, strategic approach to truly wonderful creative work','careers design copy digital','New Word Order',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139019,142790,1,'Careers','2022-10-21 04:05:41','2022-10-21 04:05:41','245a7876-3a06-4b9d-9291-4ae69313a8b7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NyO0Ik0kgl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Careers\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We are a Brisbane-based agency renowned for our evidence-based, strategic approach to truly wonderful creative work. We are strongly purpose-driven—wholeheartedly committed to making a meaningful difference in the lives of our clients, their customers and the community at large. Our work is rewarding.\\n\\nThe best part of what we do is doing it together. There’s nothing quite like a room full of inspired, inspiring people united by purpose and passion—and we’re thrilled at the idea of you being a part of that.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Careers\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GqLHJAoMsp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The Benefits\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This is a rare opportunity to join a fast-growing and supportive agency in a very exciting phase of its evolution. A competitive salary will be negotiated.\\nEveryone at NWO enjoys fantastic benefits – from flexibility to bonuses, professional development and a comprehensive wellbeing program.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Flexibility and additional leave**\\n\\n- Hybrid working environment with genuine flexibility work from home and our office at Greenslopes\\n- One day per semester of paid study leave\\n- Early, late and split day options\\n- Extra day of leave for an extra happy birthday\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Bonus benefits**\\n\\n- $650 a year via AirWallex to spend on you, however you choose ($50 a month–extra $50 in your birthday month)\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new5\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Professional development**\\n\\n- Work with top executives in wide-ranging sectors\\n- Gain deep expertise across all creative fields\\n- Flexible teams means you’ll work on every account\\n- Paid professional membership of your choice\\n- Annual $1000 professional development budget\\n- Learning and development plan for every employee\\n- Study leave for post-graduate study\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new6\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Wellbeing**\\n\\n- Weekly or fortnightly 1-1 with direct manager\\n- Quarterly goal-setting and performance review\\n- Free access to Employee Assistance Program\\n- Intentional Wellbeing at Work program, including massage and yoga\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new7\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Happy Friyay (and every other day)**\\n\\n- Weekly team lunches and drinks\\n- Quarterly team nights out\\n- EOFY and Christmas staff parties\\n- Mid-year and end-of-year all-team days to rest, reflect and plan\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LhE8ewXDdj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\'s next?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"If this role sounds perfect for you, fill in the apply form below, and attach your cover letter and a link to your website or portfolio. \\n\\nWe’re looking forward to saying hello!\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BtRUbwXzyb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-s0nVisNYi6\",\"content\":{\"fields\":{\"spacer\":\"pt-8 md:pt-16 bg-black\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fz4qdj0CRS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<div id=\\\"applicationForm\\\">\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: \\\"na1\\\",\\n    portalId: \\\"8394441\\\",\\n    formId: \\\"54bb36ff-8ada-4b4f-b1f9-73d1c7fc42c6\\\"\\n  });\\n</script>\\n</div>\",\"backgroundColour\":\"bg-black\",\"sectionTitle\":\"Application forms\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Careers at New Word Order','We are a Brisbane-based agency renowned for our evidence-based, strategic approach to truly wonderful creative work','careers design copy digital','New Word Order',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139021,142792,1,'Careers','2022-10-21 04:10:06','2022-10-21 04:10:06','45bf347d-a636-4ba6-a0b3-d5329449645f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NyO0Ik0kgl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Careers\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We are a Brisbane-based agency renowned for our evidence-based, strategic approach to truly wonderful creative work. We are strongly purpose-driven—wholeheartedly committed to making a meaningful difference in the lives of our clients, their customers and the community at large. Our work is rewarding.\\n\\nThe best part of what we do is doing it together. There’s nothing quite like a room full of inspired, inspiring people united by purpose and passion—and we’re thrilled at the idea of you being a part of that.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Careers\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-mQYRXKsM0I\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Copy Director\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Due to growth, NWO is seeking to appoint a Copy Director. Simply put, the core purpose of your role will be to protect the brand reputation that NWO holds for exceptional strategy and writing. This will be done by undertaking stakeholder engagement, co-developing brand strategies, leading and mentoring your team of writers, a focus on quality assurance of all NWO copy, as well as through your direct engagement with clients. \\n\\nReporting to, and working closely with the CEO, this newly created leadership position will have full custody of the copy team. Leading a team of two plus freelancers, you will have the autonomy to create the team structure, systems, processes and frameworks you feel the team needs to thrive by defining and setting NWO copy standards and developing approaches for all types of NWO writing projects.\\n\\nTo be successful in this role you will have a background in print or online journalism and experience in managing or driving brands. You will have experience as an editor You will have a deep appreciation for brand and campaign management underpinned by quality content across all writing forms, from content design and video through to publications and speechwriting. \\n\\nYour curious nature will see you getting to the heart of people and stories, while your drive and inclusive leadership skills will see you leading your team toward best-in-class performance.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GqLHJAoMsp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The Benefits\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This is a rare opportunity to join a fast-growing and supportive agency in a very exciting phase of its evolution. A competitive salary will be negotiated.\\nEveryone at NWO enjoys fantastic benefits – from flexibility to bonuses, professional development and a comprehensive wellbeing program.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Flexibility and additional leave**\\n\\n- Hybrid working environment with genuine flexibility work from home and our office at Greenslopes\\n- One day per semester of paid study leave\\n- Early, late and split day options\\n- Extra day of leave for an extra happy birthday\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Bonus benefits**\\n\\n- $650 a year via AirWallex to spend on you, however you choose ($50 a month–extra $50 in your birthday month)\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new5\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Professional development**\\n\\n- Work with top executives in wide-ranging sectors\\n- Gain deep expertise across all creative fields\\n- Flexible teams means you’ll work on every account\\n- Paid professional membership of your choice\\n- Annual $1000 professional development budget\\n- Learning and development plan for every employee\\n- Study leave for post-graduate study\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new6\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Wellbeing**\\n\\n- Weekly or fortnightly 1-1 with direct manager\\n- Quarterly goal-setting and performance review\\n- Free access to Employee Assistance Program\\n- Intentional Wellbeing at Work program, including massage and yoga\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new7\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Happy Friyay (and every other day)**\\n\\n- Weekly team lunches and drinks\\n- Quarterly team nights out\\n- EOFY and Christmas staff parties\\n- Mid-year and end-of-year all-team days to rest, reflect and plan\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LhE8ewXDdj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\'s next?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"If this role sounds perfect for you, fill in the apply form below, and attach your cover letter and a link to your website or portfolio. \\n\\nWe’re looking forward to saying hello!\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BtRUbwXzyb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-s0nVisNYi6\",\"content\":{\"fields\":{\"spacer\":\"pt-8 md:pt-16 bg-black\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fz4qdj0CRS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<div id=\\\"applicationForm\\\">\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: \\\"na1\\\",\\n    portalId: \\\"8394441\\\",\\n    formId: \\\"54bb36ff-8ada-4b4f-b1f9-73d1c7fc42c6\\\"\\n  });\\n</script>\\n</div>\",\"backgroundColour\":\"bg-black\",\"sectionTitle\":\"Application forms\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Careers at New Word Order','We are a Brisbane-based agency renowned for our evidence-based, strategic approach to truly wonderful creative work','careers design copy digital','New Word Order',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139023,142794,1,'Careers','2022-10-21 04:10:41','2022-10-21 04:10:41','f6155676-1f37-4355-a164-d4d3f3ad1e45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NyO0Ik0kgl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Careers\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We are a Brisbane-based agency renowned for our evidence-based, strategic approach to truly wonderful creative work. We are strongly purpose-driven—wholeheartedly committed to making a meaningful difference in the lives of our clients, their customers and the community at large. Our work is rewarding.\\n\\nThe best part of what we do is doing it together. There’s nothing quite like a room full of inspired, inspiring people united by purpose and passion—and we’re thrilled at the idea of you being a part of that.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Careers\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-mQYRXKsM0I\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Copy Director\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Due to growth, NWO is seeking to appoint a Copy Director. Simply put, the core purpose of your role will be to protect the brand reputation that NWO holds for exceptional strategy and writing. This will be done by undertaking stakeholder engagement, co-developing brand strategies, leading and mentoring your team of writers, a focus on quality assurance of all NWO copy, as well as through your direct engagement with clients. \\n\\nReporting to, and working closely with the CEO, this newly created leadership position will have full custody of the copy team. Leading a team of two plus freelancers, you will have the autonomy to create the team structure, systems, processes and frameworks you feel the team needs to thrive by defining and setting NWO copy standards and developing approaches for all types of NWO writing projects.\\n\\nTo be successful in this role you will have a background in print or online journalism and experience in managing or driving brands. You will have experience as an editor You will have a deep appreciation for brand and campaign management underpinned by quality content across all writing forms, from content design and video through to publications and speechwriting. \\n\\nYour curious nature will see you getting to the heart of people and stories, while your drive and inclusive leadership skills will see you leading your team toward best-in-class performance.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GqLHJAoMsp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The Benefits\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This is a rare opportunity to join a fast-growing and supportive agency in a very exciting phase of its evolution. A competitive salary will be negotiated.\\nEveryone at NWO enjoys fantastic benefits – from flexibility to bonuses, professional development and a comprehensive wellbeing program.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Flexibility and additional leave**\\n\\n- Hybrid working environment with genuine flexibility work from home and our office at Greenslopes\\n- One day per semester of paid study leave\\n- Early, late and split day options\\n- Extra day of leave for an extra happy birthday\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Bonus benefits**\\n\\n- $650 a year via AirWallex to spend on you, however you choose ($50 a month–extra $50 in your birthday month)\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new5\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Professional development**\\n\\n- Work with top executives in wide-ranging sectors\\n- Gain deep expertise across all creative fields\\n- Flexible teams means you’ll work on every account\\n- Paid professional membership of your choice\\n- Annual $1000 professional development budget\\n- Learning and development plan for every employee\\n- Study leave for post-graduate study\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new6\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Wellbeing**\\n\\n- Weekly or fortnightly 1-1 with direct manager\\n- Quarterly goal-setting and performance review\\n- Free access to Employee Assistance Program\\n- Intentional Wellbeing at Work program, including massage and yoga\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new7\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Happy Friyay (and every other day)**\\n\\n- Weekly team lunches and drinks\\n- Quarterly team nights out\\n- EOFY and Christmas staff parties\\n- Mid-year and end-of-year all-team days to rest, reflect and plan\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LhE8ewXDdj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\'s next?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"If this role sounds perfect for you, fill in the apply form below, and attach your cover letter and a link to your website or portfolio. \\n\\nWe’re looking forward to saying hello!\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BtRUbwXzyb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-s0nVisNYi6\",\"content\":{\"fields\":{\"spacer\":\"pt-8 md:pt-16 bg-black\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fz4qdj0CRS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<div id=\\\"applicationForm\\\">\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: \\\"na1\\\",\\n    portalId: \\\"8394441\\\",\\n    formId: \\\"54bb36ff-8ada-4b4f-b1f9-73d1c7fc42c6\\\"\\n  });\\n</script>\\n</div>\",\"backgroundColour\":\"bg-black\",\"sectionTitle\":\"Application forms\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Careers at New Word Order','We are a Brisbane-based agency renowned for our evidence-based, strategic approach to truly wonderful creative work','careers design copy digital','New Word Order',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139025,142796,1,'Careers','2022-10-21 04:18:21','2022-10-21 04:18:21','8b4a4189-d21b-41d4-99a4-489d3e930266',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NyO0Ik0kgl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Careers\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We are a Brisbane-based agency renowned for our evidence-based, strategic approach to truly wonderful creative work. We are strongly purpose-driven—wholeheartedly committed to making a meaningful difference in the lives of our clients, their customers and the community at large. Our work is rewarding.\\n\\nThe best part of what we do is doing it together. There’s nothing quite like a room full of inspired, inspiring people united by purpose and passion—and we’re thrilled at the idea of you being a part of that.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Careers\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-77zVW8tmJT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Copy Director\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Due to growth, NWO is seeking to appoint a Copy Director. Simply put, the core purpose of your role will be to protect the brand reputation that NWO holds for exceptional strategy and writing. This will be done by undertaking stakeholder engagement, co-developing brand strategies, leading and mentoring your team of writers, a focus on quality assurance of all NWO copy, as well as through your direct engagement with clients. \\n\\nReporting to, and working closely with the CEO, this newly created leadership position will have full custody of the copy team. Leading a team of two plus freelancers, you will have the autonomy to create the team structure, systems, processes and frameworks you feel the team needs to thrive by defining and setting NWO copy standards and developing approaches for all types of NWO writing projects.\\n\\nTo be successful in this role you will have a background in print or online journalism and experience in managing or driving brands. You will have experience as an editor You will have a deep appreciation for brand and campaign management underpinned by quality content across all writing forms, from content design and video through to publications and speechwriting. \\n\\nYour curious nature will see you getting to the heart of people and stories, while your drive and inclusive leadership skills will see you leading your team toward best-in-class performance.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Apply now\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"#applicationForm\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}}},\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GqLHJAoMsp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The Benefits\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This is a rare opportunity to join a fast-growing and supportive agency in a very exciting phase of its evolution. A competitive salary will be negotiated.\\nEveryone at NWO enjoys fantastic benefits – from flexibility to bonuses, professional development and a comprehensive wellbeing program.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Flexibility and additional leave**\\n\\n- Hybrid working environment with genuine flexibility work from home and our office at Greenslopes\\n- One day per semester of paid study leave\\n- Early, late and split day options\\n- Extra day of leave for an extra happy birthday\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Bonus benefits**\\n\\n- $650 a year via AirWallex to spend on you, however you choose ($50 a month–extra $50 in your birthday month)\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new5\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Professional development**\\n\\n- Work with top executives in wide-ranging sectors\\n- Gain deep expertise across all creative fields\\n- Flexible teams means you’ll work on every account\\n- Paid professional membership of your choice\\n- Annual $1000 professional development budget\\n- Learning and development plan for every employee\\n- Study leave for post-graduate study\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new6\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Wellbeing**\\n\\n- Weekly or fortnightly 1-1 with direct manager\\n- Quarterly goal-setting and performance review\\n- Free access to Employee Assistance Program\\n- Intentional Wellbeing at Work program, including massage and yoga\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new7\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Happy Friyay (and every other day)**\\n\\n- Weekly team lunches and drinks\\n- Quarterly team nights out\\n- EOFY and Christmas staff parties\\n- Mid-year and end-of-year all-team days to rest, reflect and plan\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LhE8ewXDdj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\'s next?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"If this role sounds perfect for you, fill in the apply form below, and attach your cover letter and a link to your website or portfolio. \\n\\nWe’re looking forward to saying hello!\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BtRUbwXzyb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-s0nVisNYi6\",\"content\":{\"fields\":{\"spacer\":\"pt-8 md:pt-16 bg-black\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fz4qdj0CRS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<div id=\\\"applicationForm\\\">\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: \\\"na1\\\",\\n    portalId: \\\"8394441\\\",\\n    formId: \\\"54bb36ff-8ada-4b4f-b1f9-73d1c7fc42c6\\\"\\n  });\\n</script>\\n</div>\",\"backgroundColour\":\"bg-black\",\"sectionTitle\":\"Application forms\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Careers at New Word Order','We are a Brisbane-based agency renowned for our evidence-based, strategic approach to truly wonderful creative work','careers design copy digital','New Word Order',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139028,142799,1,'Break away from the same-same with custom illustration','2022-10-21 05:20:56','2022-10-21 05:20:56','85194b38-ae11-4fe5-9712-f486ccc20fe9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tiYExhhMPf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The most important thing for a brand is to stand out from the competition.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Too often, companies don\'t understand their brand well enough to know its unique personality and look. \\n\\nAs a result, they use stock imagery, and in doing so, immediately dilute the brand and its message. \\n\\nThis is where custom illustration can play a critical role in making a brand stand out from the pack.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZOmCf7hZyl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"There’s nothing more special than something made just for you.\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cezN1PdcHJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"You hold it loudly and proudly for all to see—and they notice because there’s nothing else in the world quite like it. And this makes you treasure it that little bit more.\\n\\nThe dream of an illustrator is to have time, budget and ability to craft a bespoke masterpiece for every job that comes across their desk.\\n\\nThat dream doesn’t turn to reality very often. But that doesn’t mean your brand has to revert to using the same old stock illustrations everyone else uses, either.\\n\\nThere are so many ways to get over those hurdles when a project doesn’t have time or budget to allow for a custom piece.\\n\\nA lot of the time, stock illustration can be tweaked to give it the edge it needs to stand out from the crowd.\\n\\nChange up the colours, mix up the style and jazz up the faces.\\n\\nSometimes stock forms the base for us to build something fresh. And other times there might already be the perfect stock illustration that tells the right story without much tweaking at all.\\n\\nWhatever the constraints—budget, time, brief—there’s always a way to break free. It just takes some thinking outside of the box.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-amC4hnZM56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"If you’re drowning in a sea of same-same, come chat to us and [we\'ll make your brand stand out](/contact).\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Break away from the same-same with custom illustration','There’s nothing more special than something made just for you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139030,142801,1,'Queensland Aboriginal and Islander Health Council','2022-10-21 06:06:31','2022-11-04 04:01:06','1512b1df-636d-4254-a46b-682a1a9f6d7e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Make the choice campaign',NULL,NULL,'It’s your choice. It’s safe. It’s free. It’s for your community. \nThese are the messages we gave Aboriginal and Torres Strait Islander communities with the MakeTheChoice campaign, encouraging more COVID-19 vaccinations.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cPOlqCaDq6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142802\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NDPW4J31bw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We proudly worked with Queensland Aboriginal and Islander Health Council (QAIHC) to get this campaign and website out in the world in record time.\\n\\nQAIHC is a leadership and policy organisation representing all Aboriginal and Torres Strait Islander Community Controlled Health Organisations (ATSICCHO) in Queensland at both a state and national level.\\n\\nAt the core is QAIHC\'s vision is to eliminate the disparities in health and wellbeing experienced by Aboriginal and Torres Strait Islander peoples in Queensland.\\n\\nThe ‘Make the choice’ COVID-19 vaccine communications campaign was collaboration of QAIHC, Queensland Health, the Institute of Urban Indigenous Health and New Word Order.\\n\\nWe designed and developed a simple website to be a trusted source of information pertaining to the COVID-19 vaccination, specifically geared towards Aboriginal and Torres Strait Islander peoples.\\n\\n[Makethechoice.com.au](https://www.makethechoice.com.au/) is all about promoting self-determination by providing the right information to the right people at the right time. Communities know what is best for them.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JeZiVyMrHY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":null,\"plainText\":\"“New Word Order delivered a beautifully designed, culturally safe and user friendly COVID-19 vaccine website for First Nations people in Queensland.”\\n<b> —\\u0007Gert Geyer, Communications Officer, QAIHC </b>\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139031,142802,1,'21 QAIHC EDM','2022-10-21 06:40:08','2022-10-21 06:40:08','b3c057d5-0705-48a4-a68a-43803b201504',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x798_crop_center-center_82_line/21_QAIHC_EDM.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1597_crop_center-center_82_line/21_QAIHC_EDM.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x665_crop_center-center_82_line/21_QAIHC_EDM.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1331_crop_center-center_82_line/21_QAIHC_EDM.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x532_crop_center-center_82_line/21_QAIHC_EDM.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1064_crop_center-center_82_line/21_QAIHC_EDM.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x399_crop_center-center_82_line/21_QAIHC_EDM.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x332_crop_center-center_82_line/21_QAIHC_EDM.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x798_crop_center-center_82_line/21_QAIHC_EDM.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1597_crop_center-center_82_line/21_QAIHC_EDM.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x665_crop_center-center_82_line/21_QAIHC_EDM.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1331_crop_center-center_82_line/21_QAIHC_EDM.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x532_crop_center-center_82_line/21_QAIHC_EDM.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1064_crop_center-center_82_line/21_QAIHC_EDM.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x399_crop_center-center_82_line/21_QAIHC_EDM.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x332_crop_center-center_82_line/21_QAIHC_EDM.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":798,\"3072\":1597,\"1280\":665,\"2560\":1331,\"1024\":532,\"2048\":1064,\"768\":399,\"640\":332},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":2708,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAIABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABAb/xAAdEAACAwACAwAAAAAAAAAAAAABAgMEEQAhEhOB/8QAFQEBAQAAAAAAAAAAAAAAAAAAAgP/xAAaEQACAwEBAAAAAAAAAAAAAAABAgADETEh/9oADAMBAAIRAxEAPwCgsyiazquqQ9A62P8AOCxbAcHIkZCunsTA9Wt65FlZ20gjy053yqKSMk2YD2f/2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#bfd2de\",\"#0f0f0f\",\"#d59542\",\"#874c35\",\"#71808d\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":798,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139032,142803,1,'Queensland Aboriginal and Islander Health Council','2022-10-21 07:19:36','2022-10-21 07:19:36','e16a751b-d6af-4266-b9a7-d57e3c7031b3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Make the choice campaign',NULL,NULL,'It’s your choice. It’s safe. It’s free. It’s for your community. \nThese are the messages we gave Aboriginal and Torres Strait Islander communities with the MakeTheChoice campaign, encouraging more COVID-19 vaccinations.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cPOlqCaDq6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142802\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NDPW4J31bw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We proudly worked with Queensland Aboriginal and Islander Health Council (QAIHC) to get this campaign and website out in the world in record time.\\n\\nQAIHC is a leadership and policy organisation representing all Aboriginal and Torres Strait Islander Community Controlled Health Organisations (ATSICCHO) in Queensland at both a state and national level.\\n\\nAt the core is QAIHC\'s vision is to eliminate the disparities in health and wellbeing experienced by Aboriginal and Torres Strait Islander peoples in Queensland.\\n\\nThe ‘Make the choice’ COVID-19 vaccine communications campaign was collaboration of QAIHC, Queensland Health, the Institute of Urban Indigenous Health and New Word Order.\\n\\nWe designed and developed a simple website to be a trusted source of information pertaining to the COVID-19 vaccination, specifically geared towards Aboriginal and Torres Strait Islander peoples.\\n\\n[Makethechoice.com.au](https://www.makethechoice.com.au/) is all about promoting self-determination by providing the right information to the right people at the right time. Communities know what is best for them.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JeZiVyMrHY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":null,\"plainText\":\"“New Word Order delivered a beautifully designed, culturally safe and user friendly COVID-19 vaccine website for First Nations people in Queensland.”\\n<b> —\\u0007Gert Geyer, Communications Officer, QAIHC </b>\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139033,142804,1,'Break away from the same-same with custom illustration','2022-10-23 22:57:26','2022-10-23 22:57:26','7a946595-d421-4c1d-bdca-3a40f228f83a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tiYExhhMPf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The most important thing for a brand is to stand out from the competition.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Too often, companies don\'t understand their brand well enough to know its unique personality and look. \\n\\nAs a result, they use stock imagery, and in doing so, immediately dilute the brand and its message. \\n\\nThis is where custom illustration can play a critical role in making a brand stand out from the pack.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZOmCf7hZyl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"There’s nothing more special than something made just for you.\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cezN1PdcHJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"You hold it loudly and proudly for all to see—and people notice because there’s nothing else in the world quite like it. And this makes you treasure it that little bit more.\\n\\nThe dream of an illustrator is to have time, budget and ability to craft a bespoke masterpiece for every job that comes across their desk.\\n\\nThat dream doesn’t turn to reality very often. But that doesn’t mean your brand has to revert to using the same old stock illustrations everyone else uses, either.\\n\\nThere are so many ways to get over those hurdles when a project doesn’t have time or budget to allow for a custom piece.\\n\\nA lot of the time, stock illustration can be tweaked to give it the edge it needs to stand out from the crowd.\\n\\nChange up the colours, mix up the style and jazz up the faces.\\n\\nSometimes stock forms the base for us to build something fresh. And other times there might already be the perfect stock illustration that tells the right story without much tweaking at all.\\n\\nWhatever the constraints—budget, time, brief—there’s always a way to break free. It just takes some thinking outside of the box.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-amC4hnZM56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"If you’re drowning in a sea of same-same, come chat to us and [we\'ll make your brand stand out](/contact).\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Break away from the same-same with custom illustration','There’s nothing more special than something made just for you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139034,142805,1,'Let us introduce ourselves','2022-10-23 23:00:20','2022-10-23 23:00:20','ce87d212-b668-4f29-8ab7-5eb18896c101',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and the Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139036,142807,1,'Qld Hydro website','2022-10-23 23:47:29','2022-10-23 23:47:29','472c56e8-9a60-43ba-8656-a8211992810f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/qld-Hydro_website.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2049_crop_center-center_82_line/qld-Hydro_website.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/qld-Hydro_website.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1707_crop_center-center_82_line/qld-Hydro_website.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x683_crop_center-center_82_line/qld-Hydro_website.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1366_crop_center-center_82_line/qld-Hydro_website.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/qld-Hydro_website.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/qld-Hydro_website.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/qld-Hydro_website.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2049_crop_center-center_82_line/qld-Hydro_website.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/qld-Hydro_website.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1707_crop_center-center_82_line/qld-Hydro_website.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x683_crop_center-center_82_line/qld-Hydro_website.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1366_crop_center-center_82_line/qld-Hydro_website.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/qld-Hydro_website.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/qld-Hydro_website.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"3072\":2049,\"1280\":853,\"2560\":1707,\"1024\":683,\"2048\":1366,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5000,\"originalImageHeight\":3335,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAAF/8QAJBAAAQMDAQkAAAAAAAAAAAAAAQIDBAAFESEGEjEzNUFRYYH/xAAXAQADAQAAAAAAAAAAAAAAAAABAgMA/8QAHBEAAgEFAQAAAAAAAAAAAAAAAAERAiEiMUEy/9oADAMBAAIRAxEAPwBEp6FKcRHuyG0JSlQShsnGc8fOaCdwuykwpLzdr3RFdWttZ5axkAejTOOCpvobaDqTh70ats1Oik62aOo6kunX4KkvRSMT/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#d9ccc4\",\"#2a2e2c\",\"#857e7a\",\"#708faf\",\"#8bacc6\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139037,142808,1,'Queensland Hydro','2022-10-23 23:50:15','2022-10-23 23:50:15','932931d4-f6ba-49fb-a8ef-0a457ce0431f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Powering Queensland’s future',NULL,NULL,'Queensland has some ambitious goals for a clean energy future: 50 per cent renewable energy by 2030 and zero-net emissions by 2050. Pumped hydro is the key to achieving this, and the state government is facilitating pumped hydro through a new subsidiary brand. We helped build the brand for Queensland Hydro on a strategic, evidence-based foundation to set it up for a successful journey of powering Queensland’s future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MJwz0wrwkL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142807\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RCifzof72P\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The Queensland Government needed to establish a subsidiary entity to carry the planning and transmission connection work for potential pumped hydro projects across Queensland. Our creation of the brand for Queensland Hydro involved extensive discovery prior to crafting a brand identity, designing marketing collateral, and copywriting, designing and developing a website.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fdid0P67Ag\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142654\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As we often do, we began this project with a comprehensive discovery phase. This involved a review of Queensland Hydro’s contemporaries and competitive landscape, consultation with a First Nations advisor on theming and language, and stakeholder workshops to clarify the brand personality, purpose and objectives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5o9yXWhZxU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our deliverables included a brand name, logo, visual identity, collateral, key messaging and content for the website. We kept the design fresh and engaging while accommodating the needs of the various stakeholders involved.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvkuSRS5qb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142702\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fjwEEvmBHp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Queensland Hydro will be a vital component in reaching Australia’s aspirational energy goals over the next few decades. Pumped hydro is at the centre of cleaning up Queensland’s energy, and we were delighted to play a role in bringing Queensland Hydro to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139039,142810,1,'22 09 QLD Hydro Website logos','2022-10-23 23:54:54','2022-10-23 23:54:54','338bea2c-f8f1-44d1-8b84-b142e547ea9b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_09-QLD-Hydro-Website-logos.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_09-QLD-Hydro-Website-logos.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_09-QLD-Hydro-Website-logos.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_09-QLD-Hydro-Website-logos.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_09-QLD-Hydro-Website-logos.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_09-QLD-Hydro-Website-logos.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_09-QLD-Hydro-Website-logos.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_09-QLD-Hydro-Website-logos.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_09-QLD-Hydro-Website-logos.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_09-QLD-Hydro-Website-logos.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_09-QLD-Hydro-Website-logos.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_09-QLD-Hydro-Website-logos.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_09-QLD-Hydro-Website-logos.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_09-QLD-Hydro-Website-logos.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_09-QLD-Hydro-Website-logos.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_09-QLD-Hydro-Website-logos.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":768,\"2560\":1536,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":384},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":3125,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAQUG/8QAIRAAAQQBAwUAAAAAAAAAAAAAAQACAwQiBhYyMWGBwdH/xAAWAQEBAQAAAAAAAAAAAAAAAAAAAQP/xAAYEQEBAQEBAAAAAAAAAAAAAAAAARECEv/aAAwDAQACEQMRAD8AvbtpS4xxWQeuLR9Vxne4Bq6kzF8Vgnu0D2mL7jFRcwqyMvPwg//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#345554\",\"#e1ebeb\",\"#6fc8d1\",\"#788e8d\",\"#5ca0ac\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139040,142811,1,'Queensland Hydro','2022-10-23 23:55:08','2022-10-23 23:55:08','0e71f5b5-96d7-4056-8f14-b7e7b11bd15b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Powering Queensland’s future',NULL,NULL,'Queensland has some ambitious goals for a clean energy future: 50 per cent renewable energy by 2030 and zero-net emissions by 2050. Pumped hydro is the key to achieving this, and the state government is facilitating pumped hydro through a new subsidiary brand. We helped build the brand for Queensland Hydro on a strategic, evidence-based foundation to set it up for a successful journey of powering Queensland’s future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MJwz0wrwkL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142807\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RCifzof72P\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The Queensland Government needed to establish a subsidiary entity to carry the planning and transmission connection work for potential pumped hydro projects across Queensland. Our creation of the brand for Queensland Hydro involved extensive discovery prior to crafting a brand identity, designing marketing collateral, and copywriting, designing and developing a website.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fdid0P67Ag\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142810\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As we often do, we began this project with a comprehensive discovery phase. This involved a review of Queensland Hydro’s contemporaries and competitive landscape, consultation with a First Nations advisor on theming and language, and stakeholder workshops to clarify the brand personality, purpose and objectives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5o9yXWhZxU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our deliverables included a brand name, logo, visual identity, collateral, key messaging and content for the website. We kept the design fresh and engaging while accommodating the needs of the various stakeholders involved.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvkuSRS5qb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142702\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fjwEEvmBHp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Queensland Hydro will be a vital component in reaching Australia’s aspirational energy goals over the next few decades. Pumped hydro is at the centre of cleaning up Queensland’s energy, and we were delighted to play a role in bringing Queensland Hydro to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139042,142813,1,'22 09 QLD Hydro Website image','2022-10-23 23:57:51','2022-10-23 23:57:51','42ad0055-575c-4140-a78e-19a42c9de3b6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_09-QLD-Hydro-Website-image.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_09-QLD-Hydro-Website-image.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_09-QLD-Hydro-Website-image.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_09-QLD-Hydro-Website-image.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_09-QLD-Hydro-Website-image.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_09-QLD-Hydro-Website-image.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_09-QLD-Hydro-Website-image.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_09-QLD-Hydro-Website-image.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_09-QLD-Hydro-Website-image.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_09-QLD-Hydro-Website-image.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_09-QLD-Hydro-Website-image.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_09-QLD-Hydro-Website-image.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_09-QLD-Hydro-Website-image.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_09-QLD-Hydro-Website-image.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_09-QLD-Hydro-Website-image.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_09-QLD-Hydro-Website-image.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":768,\"2560\":1536,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":384},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":3125,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABQT/xAAgEAABAwQCAwAAAAAAAAAAAAABAAIDBBESMwUTIXFy/8QAFwEAAwEAAAAAAAAAAAAAAAAAAQMEAv/EABsRAAMAAwEBAAAAAAAAAAAAAAABAgQTMSEy/9oADAMBAAIRAxEAPwA+rpYO04F+DhcZMIsq3lQ36iV4rXyw6ZkEXkOJHyUNsCtdlHJb3egs0MroNNtU1dGTw//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#175675\",\"#bc96a8\",\"#0c200e\",\"#3081d6\",\"#5a959c\"],\"lightness\":38,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139043,142814,1,'Queensland Hydro','2022-10-23 23:58:00','2022-10-23 23:58:00','6660210a-17dc-4851-a67e-8ca06abd239c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Powering Queensland’s future',NULL,NULL,'Queensland has some ambitious goals for a clean energy future: 50 per cent renewable energy by 2030 and zero-net emissions by 2050. Pumped hydro is the key to achieving this, and the state government is facilitating pumped hydro through a new subsidiary brand. We helped build the brand for Queensland Hydro on a strategic, evidence-based foundation to set it up for a successful journey of powering Queensland’s future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MJwz0wrwkL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142807\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RCifzof72P\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The Queensland Government needed to establish a subsidiary entity to carry the planning and transmission connection work for potential pumped hydro projects across Queensland. Our creation of the brand for Queensland Hydro involved extensive discovery prior to crafting a brand identity, designing marketing collateral, and copywriting, designing and developing a website.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fdid0P67Ag\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142810\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As we often do, we began this project with a comprehensive discovery phase. This involved a review of Queensland Hydro’s contemporaries and competitive landscape, consultation with a First Nations advisor on theming and language, and stakeholder workshops to clarify the brand personality, purpose and objectives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5o9yXWhZxU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our deliverables included a brand name, logo, visual identity, collateral, key messaging and content for the website. We kept the design fresh and engaging while accommodating the needs of the various stakeholders involved.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvkuSRS5qb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142702\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fjwEEvmBHp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Queensland Hydro will be a vital component in reaching Australia’s aspirational energy goals over the next few decades. Pumped hydro is at the centre of cleaning up Queensland’s energy, and we were delighted to play a role in bringing Queensland Hydro to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2XRuH2soQj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142813\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139045,142816,1,'22 09 QLD Hydro Website lgoos','2022-10-24 00:00:00','2022-10-24 00:00:00','42b3919c-468e-4a7e-b6de-522801cb3f88',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_09-QLD-Hydro-Website-lgoos.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_09-QLD-Hydro-Website-lgoos.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_09-QLD-Hydro-Website-lgoos.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_09-QLD-Hydro-Website-lgoos.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_09-QLD-Hydro-Website-lgoos.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_09-QLD-Hydro-Website-lgoos.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_09-QLD-Hydro-Website-lgoos.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_09-QLD-Hydro-Website-lgoos.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_09-QLD-Hydro-Website-lgoos.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_09-QLD-Hydro-Website-lgoos.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_09-QLD-Hydro-Website-lgoos.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_09-QLD-Hydro-Website-lgoos.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_09-QLD-Hydro-Website-lgoos.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_09-QLD-Hydro-Website-lgoos.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_09-QLD-Hydro-Website-lgoos.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_09-QLD-Hydro-Website-lgoos.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":768,\"2560\":1536,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":384},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":3125,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAAEFBv/EACEQAAEDAgcBAAAAAAAAAAAAAAEAAgQDMgYRFiEiUdFh/8QAFgEBAQEAAAAAAAAAAAAAAAAAAAED/8QAFxEBAAMAAAAAAAAAAAAAAAAAAAEREv/aAAwDAQACEQMRAD8AvauhVOLKUnP40eq0z3AGL4LNnUpBI7aPUpdwxDLgqyN9xQf/2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#345554\",\"#dfeae9\",\"#6dc5c8\",\"#7e9490\",\"#6eb49e\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139046,142817,1,'Queensland Hydro','2022-10-24 00:00:09','2022-10-24 00:00:09','3d344b9a-25b1-42bc-87df-1b9b38f8c991',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Powering Queensland’s future',NULL,NULL,'Queensland has some ambitious goals for a clean energy future: 50 per cent renewable energy by 2030 and zero-net emissions by 2050. Pumped hydro is the key to achieving this, and the state government is facilitating pumped hydro through a new subsidiary brand. We helped build the brand for Queensland Hydro on a strategic, evidence-based foundation to set it up for a successful journey of powering Queensland’s future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MJwz0wrwkL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142807\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RCifzof72P\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The Queensland Government needed to establish a subsidiary entity to carry the planning and transmission connection work for potential pumped hydro projects across Queensland. Our creation of the brand for Queensland Hydro involved extensive discovery prior to crafting a brand identity, designing marketing collateral, and copywriting, designing and developing a website.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fdid0P67Ag\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142816\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As we often do, we began this project with a comprehensive discovery phase. This involved a review of Queensland Hydro’s contemporaries and competitive landscape, consultation with a First Nations advisor on theming and language, and stakeholder workshops to clarify the brand personality, purpose and objectives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5o9yXWhZxU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our deliverables included a brand name, logo, visual identity, collateral, key messaging and content for the website. We kept the design fresh and engaging while accommodating the needs of the various stakeholders involved.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvkuSRS5qb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142702\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fjwEEvmBHp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Queensland Hydro will be a vital component in reaching Australia’s aspirational energy goals over the next few decades. Pumped hydro is at the centre of cleaning up Queensland’s energy, and we were delighted to play a role in bringing Queensland Hydro to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2XRuH2soQj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142813\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139048,142819,1,'22 08 Ekka Marketing Website2','2022-10-24 00:25:46','2022-10-24 00:25:46','8534b183-aa8a-4512-911b-fd517e767fee',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_08-Ekka-Marketing-Website2_2022-10-24-002545_aogm.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_08-Ekka-Marketing-Website2_2022-10-24-002545_aogm.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_08-Ekka-Marketing-Website2_2022-10-24-002545_aogm.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_08-Ekka-Marketing-Website2_2022-10-24-002545_aogm.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_08-Ekka-Marketing-Website2_2022-10-24-002545_aogm.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_08-Ekka-Marketing-Website2_2022-10-24-002545_aogm.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_08-Ekka-Marketing-Website2_2022-10-24-002545_aogm.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_08-Ekka-Marketing-Website2_2022-10-24-002545_aogm.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_08-Ekka-Marketing-Website2_2022-10-24-002545_aogm.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_08-Ekka-Marketing-Website2_2022-10-24-002545_aogm.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_08-Ekka-Marketing-Website2_2022-10-24-002545_aogm.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_08-Ekka-Marketing-Website2_2022-10-24-002545_aogm.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_08-Ekka-Marketing-Website2_2022-10-24-002545_aogm.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_08-Ekka-Marketing-Website2_2022-10-24-002545_aogm.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_08-Ekka-Marketing-Website2_2022-10-24-002545_aogm.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_08-Ekka-Marketing-Website2_2022-10-24-002545_aogm.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":768,\"2560\":1536,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":384},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":3125,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQED/8QAJRAAAQMCAwkAAAAAAAAAAAAAAwECEQAEEiE0EzFRYXODkbLC/8QAFwEBAAMAAAAAAAAAAAAAAAAAAwABAv/EABoRAAIDAQEAAAAAAAAAAAAAAAABAiExQYH/2gAMAwEAAhEDEQA/ABDW9yUVupLdDKNmzxRm2Jy386tqg3fRADByYgwDGmHJWIsrPHxW4yQVKmyWeoL1V9aNjwMxaJnb+qi0B76f/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#1f3232\",\"#d0ceca\",\"#55b59d\",\"#4f86b7\",\"#767c73\"],\"lightness\":47,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139049,142820,1,'Break away from the same-same with custom illustration','2022-10-24 00:25:59','2022-10-24 00:25:59','ecbc39e4-fbd0-43bf-b53a-33465ca4bf91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tiYExhhMPf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The most important thing for a brand is to stand out from the competition.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Too often, companies don\'t understand their brand well enough to know its unique personality and look. \\n\\nAs a result, they use stock imagery, and in doing so, immediately dilute the brand and its message. \\n\\nThis is where custom illustration can play a critical role in making a brand stand out from the pack.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZOmCf7hZyl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"There’s nothing more special than something made just for you.\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cezN1PdcHJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"You hold it loudly and proudly for all to see—and people notice because there’s nothing else in the world quite like it. And this makes you treasure it that little bit more.\\n\\nThe dream of an illustrator is to have time, budget and ability to craft a bespoke masterpiece for every job that comes across their desk.\\n\\nThat dream doesn’t turn to reality very often. But that doesn’t mean your brand has to revert to using the same old stock illustrations everyone else uses, either.\\n\\nThere are so many ways to get over those hurdles when a project doesn’t have time or budget to allow for a custom piece.\\n\\nA lot of the time, stock illustration can be tweaked to give it the edge it needs to stand out from the crowd.\\n\\nChange up the colours, mix up the style and jazz up the faces.\\n\\nSometimes stock forms the base for us to build something fresh. And other times there might already be the perfect stock illustration that tells the right story without much tweaking at all.\\n\\nWhatever the constraints—budget, time, brief—there’s always a way to break free. It just takes some thinking outside of the box.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-amC4hnZM56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"If you’re drowning in a sea of same-same, come chat to us and [we\'ll make your brand stand out](/contact).\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Break away from the same-same with custom illustration','There’s nothing more special than something made just for you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139050,142821,1,'NWO Customer Charter2022','2022-10-24 00:54:28','2022-10-24 00:54:28','f183b242-5fb2-43e9-bdf3-2687be145b1e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":[],\"originalImageWidth\":0,\"originalImageHeight\":0,\"placeholder\":null,\"placeholderSvg\":null,\"colorPalette\":[],\"lightness\":0,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139052,142823,1,'22 10 custom illo blog 1 1','2022-10-24 01:06:43','2022-10-24 06:44:43','11a1359a-5e70-4423-925d-ca1c368f2582',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/22_10-custom-illo-blog-1-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/22_10-custom-illo-blog-1-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/22_10-custom-illo-blog-1-1.jpg\"},\"optimizedWebPImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/22_10-custom-illo-blog-1-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/22_10-custom-illo-blog-1-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/22_10-custom-illo-blog-1-1.jpg.webp\"},\"variantSourceWidths\":[\"1024\",\"768\",\"640\"],\"variantHeights\":{\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1083,\"originalImageHeight\":1083,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAQIE/8QAHxAAAQQCAgMAAAAAAAAAAAAAAgABAxESQQQxUYGR/8QAGAEAAwEBAAAAAAAAAAAAAAAAAQMGAAL/xAAaEQEAAwEBAQAAAAAAAAAAAAABAAIhEQNR/9oADAMBAAIRAxEAPwAt7qvaoOyV5nYCWn78rDCnyZ5wlIixZ618SrllyO87UDZXHGQZHzvHVo0LDs59GqZP/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#04aafa\",\"#0d2c3e\",\"#0c6a99\",\"#104881\",\"#0c74c0\"],\"lightness\":33,\"placeholderWidth\":1024,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139053,142824,1,'22 10 custom illo blog 1 12','2022-10-24 01:07:00','2022-10-24 01:07:00','f157ca12-ab5f-4135-b2ec-81d60995ee6c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x767_crop_center-center_82_line/22_10-custom-illo-blog-1-12.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x639_crop_center-center_82_line/22_10-custom-illo-blog-1-12.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x511_crop_center-center_82_line/22_10-custom-illo-blog-1-12.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1023_crop_center-center_82_line/22_10-custom-illo-blog-1-12.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x383_crop_center-center_82_line/22_10-custom-illo-blog-1-12.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x319_crop_center-center_82_line/22_10-custom-illo-blog-1-12.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x767_crop_center-center_82_line/22_10-custom-illo-blog-1-12.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x639_crop_center-center_82_line/22_10-custom-illo-blog-1-12.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x511_crop_center-center_82_line/22_10-custom-illo-blog-1-12.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1023_crop_center-center_82_line/22_10-custom-illo-blog-1-12.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x383_crop_center-center_82_line/22_10-custom-illo-blog-1-12.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x319_crop_center-center_82_line/22_10-custom-illo-blog-1-12.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":767,\"1280\":639,\"1024\":511,\"2048\":1023,\"768\":383,\"640\":319},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":2167,\"originalImageHeight\":1083,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAHABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAQL/xAAZEAACAwEAAAAAAAAAAAAAAAABAgADERL/xAAXAQADAQAAAAAAAAAAAAAAAAAAAQUG/8QAGBEAAwEBAAAAAAAAAAAAAAAAAAECERL/2gAMAwEAAhEDEQA/AItcIoJl+nhlonpjW3S7HL1BSxn/2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#04abfa\",\"#0d405c\",\"#0b6a9b\",\"#084a88\",\"#0b73c1\"],\"lightness\":35,\"placeholderWidth\":1536,\"placeholderHeight\":767,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139055,142826,1,'NWO’s library','2022-10-24 01:32:43','2022-10-24 01:32:43','e3a11d9e-af65-4acd-97c4-456893b34860',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142764\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### October picks\\n\\n<h6> Bruce’s pick </h6> \\n<b>Book title: </b> A Night Without Stars\\n<b>Author: </b> Peter F Hamilton \\nFind it <a href=\\\"https://www.goodreads.com/book/show/28439513-a-night-without-stars\\\"> here </a>\\n\\n<h6> Bree\'s pick </h6> \\n<b>Book title: </b> The Seven Husbands of Evelyn Hugo\\n<b>Author: </b> Taylor Jenkins Reid\\nFind it <a href=\\\"https://www.goodreads.com/book/show/32620332-the-seven-husbands-of-evelyn-hugo\\\"> here </a>\\n\\n<h6> Kimi\'s pick </h6> \\n<b>Book title: </b> Losing Face\\n<b>Author: </b> George Haddad\\nFind it <a href=\\\"https://www.goodreads.com/book/show/60752357-losing-face\\\"> here </a>\\n\\n<h6> Jo\'s pick </h6> \\n<b>Book title: </b> The Testaments\\n<b>Author: </b> Margaret Atwood\\nFind it <a href=\\\"https://www.goodreads.com/book/show/42975172-the-testaments\\\"> here </a>\\n\\n<h6> Suz\'s pick </h6> \\n<b>Book title: </b> The Bookseller at the End of the World\\n<b>Author: </b> Ruth Shaw\\nFind it <a href=\\\"https://www.goodreads.com/book/show/60296308-the-bookseller-at-the-end-of-the-world\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8Zua9e4kWu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142595\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### September picks\\n\\n* <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> Taste: My Life Through Food by Stanley Tucci </a> \\n* <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> A Little Life by Hanya Yanagihara </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/37558445-boy-swallows-universe\\\"> Boy Swallows Universe by Trent Dalton </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> Johnno by David Malouf </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> Growing up Queer in Australia by Benjamin Law </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> Bullet Train by Kotaro Isaka </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> A Promised Land by Barack Obama </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> The Life by Malcolm Knox </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/11468377-thinking-fast-and-slow\\\"> Thinking, Fast and Slow by Daniel Kahneman </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> Hunt, Gather, Parent by Michaeleen Doucleff </a> \\n* <a href=\\\"https://www.goodreads.com/en/book/show/30762074\\\"> Odd Dog Out by Rob Bidulph </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tAgWmP7qVi\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NWO’s library','Taste: My Life Through Food by Stanley Tucci ... A Little Life by Hanya Yanagihara ... Johnno by David Malouf ... Growing up Queer in Australia by Benjamin Law ... Bullet Train by Kotaro Isaka ... A Promised Land by Barack Obama ... The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan ... The Life by Malcolm Knox',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139057,142828,1,'NWO’s library','2022-10-24 01:33:05','2022-10-24 01:33:05','1d4905c7-4187-4b77-82c9-20b7f3cd0e40',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142764\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### October picks\\n\\n<h6> Bruce’s pick </h6> \\n<b>Book title: </b> A Night Without Stars\\n<b>Author: </b> Peter F Hamilton \\nFind it <a href=\\\"https://www.goodreads.com/book/show/28439513-a-night-without-stars\\\"> here </a>\\n\\n<h6> Bree\'s pick </h6> \\n<b>Book title: </b> The Seven Husbands of Evelyn Hugo\\n<b>Author: </b> Taylor Jenkins Reid\\nFind it <a href=\\\"https://www.goodreads.com/book/show/32620332-the-seven-husbands-of-evelyn-hugo\\\"> here </a>\\n\\n<h6> Kimi\'s pick </h6> \\n<b>Book title: </b> Losing Face\\n<b>Author: </b> George Haddad\\nFind it <a href=\\\"https://www.goodreads.com/book/show/60752357-losing-face\\\"> here </a>\\n\\n<h6> Jo\'s pick </h6> \\n<b>Book title: </b> The Testaments\\n<b>Author: </b> Margaret Atwood\\nFind it <a href=\\\"https://www.goodreads.com/book/show/42975172-the-testaments\\\"> here </a>\\n\\n<h6> Suz\'s pick </h6> \\n<b>Book title: </b> The Bookseller at the End of the World\\n<b>Author: </b> Ruth Shaw\\nFind it <a href=\\\"https://www.goodreads.com/book/show/60296308-the-bookseller-at-the-end-of-the-world\\\"> here </a>\\n\\n<br> </br>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8Zua9e4kWu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142595\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### September picks\\n\\n* <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> Taste: My Life Through Food by Stanley Tucci </a> \\n* <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> A Little Life by Hanya Yanagihara </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/37558445-boy-swallows-universe\\\"> Boy Swallows Universe by Trent Dalton </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> Johnno by David Malouf </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> Growing up Queer in Australia by Benjamin Law </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> Bullet Train by Kotaro Isaka </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> A Promised Land by Barack Obama </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> The Life by Malcolm Knox </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/11468377-thinking-fast-and-slow\\\"> Thinking, Fast and Slow by Daniel Kahneman </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> Hunt, Gather, Parent by Michaeleen Doucleff </a> \\n* <a href=\\\"https://www.goodreads.com/en/book/show/30762074\\\"> Odd Dog Out by Rob Bidulph </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tAgWmP7qVi\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NWO’s library','Taste: My Life Through Food by Stanley Tucci ... A Little Life by Hanya Yanagihara ... Johnno by David Malouf ... Growing up Queer in Australia by Benjamin Law ... Bullet Train by Kotaro Isaka ... A Promised Land by Barack Obama ... The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan ... The Life by Malcolm Knox',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139059,142830,1,'22 10 custom illo blog square','2022-10-24 06:45:43','2022-10-24 06:45:43','937dffcb-94a4-438b-bb6e-1d1c2e906649',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/22_10-custom-illo-blog-square.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/22_10-custom-illo-blog-square.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/22_10-custom-illo-blog-square.jpg\"},\"optimizedWebPImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/22_10-custom-illo-blog-square.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/22_10-custom-illo-blog-square.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/22_10-custom-illo-blog-square.jpg.webp\"},\"variantSourceWidths\":[\"1024\",\"768\",\"640\"],\"variantHeights\":{\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1083,\"originalImageHeight\":1083,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAQIE/8QAHxAAAQQCAgMAAAAAAAAAAAAAAgABAxESQQQxUYGR/8QAGAEAAwEBAAAAAAAAAAAAAAAAAQMGAAL/xAAaEQEAAwEBAQAAAAAAAAAAAAABAAIhEQNR/9oADAMBAAIRAxEAPwAt7qvaoOyV5nYCWn78rDCnyZ5wlIixZ618SrllyO87UDZXHGQZHzvHVo0LDs59GqZP/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#04aafa\",\"#0d2c3e\",\"#0c6a99\",\"#0d4881\",\"#0d74bd\"],\"lightness\":33,\"placeholderWidth\":1024,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139060,142831,1,'22 10 custom illo blog 1 13 header','2022-10-24 06:46:06','2022-10-24 06:46:06','6bc5ff29-db38-4701-92ee-9fe810c8ada3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x767_crop_center-center_82_line/22_10-custom-illo-blog-1-13-header.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x639_crop_center-center_82_line/22_10-custom-illo-blog-1-13-header.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x511_crop_center-center_82_line/22_10-custom-illo-blog-1-13-header.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1023_crop_center-center_82_line/22_10-custom-illo-blog-1-13-header.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x383_crop_center-center_82_line/22_10-custom-illo-blog-1-13-header.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x319_crop_center-center_82_line/22_10-custom-illo-blog-1-13-header.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x767_crop_center-center_82_line/22_10-custom-illo-blog-1-13-header.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x639_crop_center-center_82_line/22_10-custom-illo-blog-1-13-header.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x511_crop_center-center_82_line/22_10-custom-illo-blog-1-13-header.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1023_crop_center-center_82_line/22_10-custom-illo-blog-1-13-header.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x383_crop_center-center_82_line/22_10-custom-illo-blog-1-13-header.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x319_crop_center-center_82_line/22_10-custom-illo-blog-1-13-header.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":767,\"1280\":639,\"1024\":511,\"2048\":1023,\"768\":383,\"640\":319},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":2167,\"originalImageHeight\":1083,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAHABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAQP/xAAaEAACAwEBAAAAAAAAAAAAAAABEQACAxIT/8QAFgEBAQEAAAAAAAAAAAAAAAAAAAUG/8QAGBEAAwEBAAAAAAAAAAAAAAAAAAECEhH/2gAMAwEAAhEDEQA/AJ7aeYBRMv3WTLxGhxv3UlJFKIfULnLP/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#04aafa\",\"#0d3248\",\"#0b6796\",\"#104982\",\"#1072bc\"],\"lightness\":34,\"placeholderWidth\":1536,\"placeholderHeight\":767,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139061,142832,1,'Break away from the same-same with custom illustration','2022-10-24 06:46:27','2022-10-24 06:46:27','c119d5b2-b646-4e76-9ef6-abd2d873eab8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tiYExhhMPf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The most important thing for a brand is to stand out from the competition.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Too often, companies don\'t understand their brand well enough to know its unique personality and look. \\n\\nAs a result, they use stock imagery, and in doing so, immediately dilute the brand and its message. \\n\\nThis is where custom illustration can play a critical role in making a brand stand out from the pack.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZOmCf7hZyl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"There’s nothing more special than something made just for you.\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cezN1PdcHJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"You hold it loudly and proudly for all to see—and people notice because there’s nothing else in the world quite like it. And this makes you treasure it that little bit more.\\n\\nThe dream of an illustrator is to have time, budget and ability to craft a bespoke masterpiece for every job that comes across their desk.\\n\\nThat dream doesn’t turn to reality very often. But that doesn’t mean your brand has to revert to using the same old stock illustrations everyone else uses, either.\\n\\nThere are so many ways to get over those hurdles when a project doesn’t have time or budget to allow for a custom piece.\\n\\nA lot of the time, stock illustration can be tweaked to give it the edge it needs to stand out from the crowd.\\n\\nChange up the colours, mix up the style and jazz up the faces.\\n\\nSometimes stock forms the base for us to build something fresh. And other times there might already be the perfect stock illustration that tells the right story without much tweaking at all.\\n\\nWhatever the constraints—budget, time, brief—there’s always a way to break free. It just takes some thinking outside of the box.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-amC4hnZM56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"If you’re drowning in a sea of same-same, come chat to us and [we\'ll make your brand stand out](/contact).\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Break away from the same-same with custom illustration','There’s nothing more special than something made just for you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139062,142833,1,'Department of Justice and Attorney-General','2022-10-25 00:12:22','2023-03-30 23:10:06','a131d2aa-19db-47a3-89b6-c74737d76fe0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'New regulatory strategy campaign',NULL,NULL,'The Office of Liquor and Gaming Regulation (OLGR) had done the hard yards of developing, building and creating a new strategy to meet the modern demands of the industry they oversee. But communicating their strategy to a range of diverse industry stakeholders was seen as one of the most critical steps in achieving their strategic goals. They needed clarity, understanding and buy-in. Enter New Word Order.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7SDJ7AE1Hq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"One of the key challenges for OLGR is managing the dual roles of being the industry regulator and minimising harm along with responsibilities for promoting the growth and development of the liquor and gaming industry. From a strategic communication perspective, this added extra complexity to requirements for stakeholder engagement. New Word Order was able to provide insightful analysis to help communicate the strategy in a clearer fashion, connecting organisational objectives with customer benefits.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Pvd7qvkzCt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142834\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-zTtYdXJlj7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The strategy behind the campaign centred on heightening the value of the relationship and partnership between OLGR and their industry stakeholders. Creating a stronger sense of community and collaboration was the platform used to inform and shape the campaign. We worked closely with the client team and industry stakeholders to articulate the goals of linking safe and responsible liquor and gaming environments and minimising harm with a vibrant industry future.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-c7mft0SfI7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142836\",\"142835\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The creative challenge revolved around communicating a long-term governmental strategy while avoiding bureaucratic overreach. Fresh language and design were the tools used to create informational cut-through and connect with the target audiences. Language and copy was simplified and made more direct. A colourful and freeform visual design concept, not traditionally associated with government work, was used to signal a fresh start. This visual approach was dynamically used across video animations, presentation materials, documentation and more.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-raKnAjdncg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142837\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vZY7GyvZuJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Pubs, clubs, and liquor and gaming licensees can be a tough crowd to impress but this campaign has resonated strongly due to its use of simple and clear messaging and innovative visual look. The primary goals of education and information is an ongoing process but the campaign has launched strongly.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Department of Justice and Attorney-General | New regulatory strategy campaign','The Office of Liquor and Gaming Regulation (OLGR) had done the hard yards of developing, building and creating a new strategy to meet the modern demands of the industry they oversee. But communicating their strategy to a range of diverse industry stakeholders was seen as one of the most critical steps in achieving their strategic goals. They needed clarity, understanding and buy-in. Enter New Word Order.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139063,142834,1,'22 10 OLGR website 1 1','2022-10-25 03:00:09','2022-10-25 03:00:09','aa1ad384-5230-4e20-8001-8afe611feb57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_10-OLGR-website_1-1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_10-OLGR-website_1-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_10-OLGR-website_1-1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_10-OLGR-website_1-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_10-OLGR-website_1-1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_10-OLGR-website_1-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_10-OLGR-website_1-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_10-OLGR-website_1-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_10-OLGR-website_1-1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_10-OLGR-website_1-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_10-OLGR-website_1-1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_10-OLGR-website_1-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_10-OLGR-website_1-1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_10-OLGR-website_1-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_10-OLGR-website_1-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_10-OLGR-website_1-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":768,\"2560\":1536,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":384},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":3125,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAwT/xAAiEAACAQMCBwAAAAAAAAAAAAABAgMABCEScgUUMkFDccH/xAAYAQACAwAAAAAAAAAAAAAAAAACAwABBP/EAB0RAAICAQUAAAAAAAAAAAAAAAABAjEDEiFisdH/2gAMAwEAAhEDEQA/AHnTlLUJKoLynUGxgVoT1SsZu2LPbtGbhlhVdYUgMwITtj3S3LkSNkfEOuHaflFjthFNx5Nq0ufnZULP/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#8c65a2\",\"#d9d6d2\",\"#202b49\",\"#bd791d\",\"#d4a673\"],\"lightness\":53,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139064,142835,1,'22 10 OLGR website 1 12','2022-10-25 03:00:30','2022-10-25 03:00:30','e542c047-4194-4968-bc65-210ace96409b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1843_crop_center-center_82_line/22_10-OLGR-website_1-12.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1536_crop_center-center_82_line/22_10-OLGR-website_1-12.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x3072_crop_center-center_82_line/22_10-OLGR-website_1-12.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1228_crop_center-center_82_line/22_10-OLGR-website_1-12.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2457_crop_center-center_82_line/22_10-OLGR-website_1-12.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x921_crop_center-center_82_line/22_10-OLGR-website_1-12.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x768_crop_center-center_82_line/22_10-OLGR-website_1-12.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1843_crop_center-center_82_line/22_10-OLGR-website_1-12.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1536_crop_center-center_82_line/22_10-OLGR-website_1-12.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x3072_crop_center-center_82_line/22_10-OLGR-website_1-12.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1228_crop_center-center_82_line/22_10-OLGR-website_1-12.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2457_crop_center-center_82_line/22_10-OLGR-website_1-12.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x921_crop_center-center_82_line/22_10-OLGR-website_1-12.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x768_crop_center-center_82_line/22_10-OLGR-website_1-12.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1843,\"1280\":1536,\"2560\":3072,\"1024\":1228,\"2048\":2457,\"768\":921,\"640\":768},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":2604,\"originalImageHeight\":3125,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAATABADAREAAhEBAxEB/8QAGAAAAgMAAAAAAAAAAAAAAAAAAAEDBAb/xAAfEAABBQACAwEAAAAAAAAAAAABAAIDBBESMSJBUWH/xAAXAQEBAQEAAAAAAAAAAAAAAAAAAgED/8QAGREAAwEBAQAAAAAAAAAAAAAAAAECMREy/9oADAMBAAIRAxEAPwDEQVZrAeYo3PDBrsG4F2q5n0wpdYFitJXznhB9g6qMa4SVLBr8uMhaT0W9hTUKtNltYO2+I+LJC/cJPz8VElRACA//2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#040424\",\"#c79c82\",\"#617ab2\",\"#4a4770\",\"#7a7c84\"],\"lightness\":38,\"placeholderWidth\":1536,\"placeholderHeight\":1843,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139065,142836,1,'22 10 OLGR website 1 13','2022-10-25 03:00:33','2022-10-25 03:00:33','9aa3bf57-3a48-43b3-be7f-96575dbcc059',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1843_crop_center-center_82_line/22_10-OLGR-website_1-13.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1536_crop_center-center_82_line/22_10-OLGR-website_1-13.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x3072_crop_center-center_82_line/22_10-OLGR-website_1-13.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1228_crop_center-center_82_line/22_10-OLGR-website_1-13.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2457_crop_center-center_82_line/22_10-OLGR-website_1-13.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x921_crop_center-center_82_line/22_10-OLGR-website_1-13.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x768_crop_center-center_82_line/22_10-OLGR-website_1-13.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1843_crop_center-center_82_line/22_10-OLGR-website_1-13.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1536_crop_center-center_82_line/22_10-OLGR-website_1-13.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x3072_crop_center-center_82_line/22_10-OLGR-website_1-13.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1228_crop_center-center_82_line/22_10-OLGR-website_1-13.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2457_crop_center-center_82_line/22_10-OLGR-website_1-13.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x921_crop_center-center_82_line/22_10-OLGR-website_1-13.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x768_crop_center-center_82_line/22_10-OLGR-website_1-13.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1843,\"1280\":1536,\"2560\":3072,\"1024\":1228,\"2048\":2457,\"768\":921,\"640\":768},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":2604,\"originalImageHeight\":3125,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAATABADAREAAhEBAxEB/8QAGQAAAQUAAAAAAAAAAAAAAAAAAAEDBAUG/8QAIRAAAQMEAQUAAAAAAAAAAAAAAQIEEQADEiEFEzFCYWL/xAAXAQEBAQEAAAAAAAAAAAAAAAADAAEC/8QAGxEAAgIDAQAAAAAAAAAAAAAAAAECEhETIXH/2gAMAwEAAhEDEQA/AMTYa3b6ckRExs9zTOSTwSi2I4bLbqxWUk/JmNxXRjQ5Yc9FJAxVJ3JI1WeowlXeQbrYFuLIzPnHuaLXLZbPBLKtSrpgwqI//9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#050524\",\"#cb9c73\",\"#607cb4\",\"#4d4f73\",\"#7c877d\"],\"lightness\":38,\"placeholderWidth\":1536,\"placeholderHeight\":1843,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139066,142837,1,'22 10 OLGR website 1 14','2022-10-25 03:01:24','2022-10-25 03:01:24','53f96874-b296-423d-88ea-bde975a8ba3f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_10-OLGR-website_1-14.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_10-OLGR-website_1-14.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_10-OLGR-website_1-14.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_10-OLGR-website_1-14.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_10-OLGR-website_1-14.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_10-OLGR-website_1-14.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_10-OLGR-website_1-14.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_10-OLGR-website_1-14.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_10-OLGR-website_1-14.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_10-OLGR-website_1-14.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_10-OLGR-website_1-14.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_10-OLGR-website_1-14.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_10-OLGR-website_1-14.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_10-OLGR-website_1-14.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_10-OLGR-website_1-14.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_10-OLGR-website_1-14.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":768,\"2560\":1536,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":384},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":3125,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABgQF/8QAIhAAAQIGAQUAAAAAAAAAAAAAAgEDAAQFESExFDVBcXPB/8QAFgEBAQEAAAAAAAAAAAAAAAAAAQIA/8QAGREAAgMBAAAAAAAAAAAAAAAAAAECESFh/9oADAMBAAIRAxEAPwDYn2Z5qpC6E88DTrgiDaWUdZvjGlhtYas6SVJweRNI08qkRIhDa+UTUTbFJCF/t5hAL0/rs77/AIsEion/2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#dad8d5\",\"#303140\",\"#bb955b\",\"#89888e\",\"#7e6071\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139067,142838,1,'22 10 OLGR website 1 1 global','2022-10-25 03:29:18','2022-10-25 03:29:18','f75b1644-9004-4911-a661-efaea9509471',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_10-OLGR-website_1-1-global.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_10-OLGR-website_1-1-global.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_10-OLGR-website_1-1-global.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_10-OLGR-website_1-1-global.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_10-OLGR-website_1-1-global.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_10-OLGR-website_1-1-global.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_10-OLGR-website_1-1-global.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_10-OLGR-website_1-1-global.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/22_10-OLGR-website_1-1-global.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/22_10-OLGR-website_1-1-global.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x768_crop_center-center_82_line/22_10-OLGR-website_1-1-global.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1536_crop_center-center_82_line/22_10-OLGR-website_1-1-global.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/22_10-OLGR-website_1-1-global.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/22_10-OLGR-website_1-1-global.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/22_10-OLGR-website_1-1-global.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x384_crop_center-center_82_line/22_10-OLGR-website_1-1-global.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":768,\"2560\":1536,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":384},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":3125,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAQMG/8QAHBAAAgICAwAAAAAAAAAAAAAAAQIAEQMEMUGB/8QAFQEBAQAAAAAAAAAAAAAAAAAAAQD/xAAZEQADAQEBAAAAAAAAAAAAAAAAARECMSH/2gAMAwEAAhEDEQA/ANznd1W0B8FwjfBqXQ1spa1YkkdkVcFu6eZwXnylTzJgCxRM/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#f2ac3c\",\"#f0efef\",\"#7185bc\",\"#a985b6\",\"#f8d08d\"],\"lightness\":69,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139068,142839,1,'Department of Justice and Attorney-General','2022-10-25 03:29:29','2022-10-25 03:29:29','7eaf4523-1e8a-41fa-b8e1-4e6efac0e413',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'New regulatory strategy campaign',NULL,NULL,'The Office of Liquor and Gaming Regulation (OLGR) had done the hard yards of developing, building and creating a new strategy to meet the modern demands of the industry they oversee. But communicating their strategy to a range of diverse industry stakeholders was seen as one of the most critical steps in achieving their strategic goals. They needed clarity, understanding and buy-in. Enter New Word Order.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7SDJ7AE1Hq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"One of the key challenges for OLGR is managing the dual roles of being the industry regulator and minimising harm along with responsibilities for promoting the growth and development of the liquor and gaming industry. From a strategic communication perspective, this added extra complexity to requirements for stakeholder engagement. New Word Order was able to provide insightful analysis to help communicate the strategy in a clearer fashion, connecting organisational objectives with customer benefits.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Pvd7qvkzCt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142834\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-zTtYdXJlj7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The strategy behind the campaign centred on heightening the value of the relationship and partnership between OLGR and their industry stakeholders. Creating a stronger sense of community and collaboration was the platform used to inform and shape the campaign. We worked closely with the client team and industry stakeholders to articulate the goals of linking safe and responsible liquor and gaming environments and minimising harm with a vibrant industry future.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-c7mft0SfI7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142836\",\"142835\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The creative challenge revolved around communicating a long-term governmental strategy while avoiding bureaucratic overreach. Fresh language and design were the tools used to create informational cut-through and connect with the target audiences. Language and copy was simplified and made more direct. A colourful and freeform visual design concept, not traditionally associated with government work, was used to signal a fresh start. This visual approach was dynamically used across video animations, presentation materials, documentation and more.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-raKnAjdncg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142837\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vZY7GyvZuJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Pubs, clubs, and liquor and gaming licensees can be a tough crowd to impress but this campaign has resonated strongly due to its use of simple and clear messaging and innovative visual look. The primary goals of education and information is an ongoing process but the campaign has launched strongly.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139069,142840,1,'The Office of Liquor and Gaming Regulation','2022-10-25 03:33:47','2022-11-16 22:45:24','86077237-54c4-4184-8b6e-6611fc7d8f47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'New regulatory strategy campaign',NULL,NULL,'The Office of Liquor and Gaming Regulation (OLGR) had done the hard yards of developing, building and creating a new strategy to meet the modern demands of the industry they oversee. But communicating their strategy to a range of diverse industry stakeholders was seen as one of the most critical steps in achieving their strategic goals. They needed clarity, understanding and buy-in. Enter New Word Order.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7SDJ7AE1Hq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"One of the key challenges for OLGR is managing the dual roles of being the industry regulator and minimising harm along with responsibilities for promoting the growth and development of the liquor and gaming industry. From a strategic communication perspective, this added extra complexity to requirements for stakeholder engagement. New Word Order was able to provide insightful analysis to help communicate the strategy in a clearer fashion, connecting organisational objectives with customer benefits.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Pvd7qvkzCt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142834\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-zTtYdXJlj7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The strategy behind the campaign centred on heightening the value of the relationship and partnership between OLGR and their industry stakeholders. Creating a stronger sense of community and collaboration was the platform used to inform and shape the campaign. We worked closely with the client team and industry stakeholders to articulate the goals of linking safe and responsible liquor and gaming environments and minimising harm with a vibrant industry future.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-c7mft0SfI7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142836\",\"142835\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The creative challenge revolved around communicating a long-term governmental strategy while avoiding bureaucratic overreach. Fresh language and design were the tools used to create informational cut-through and connect with the target audiences. Language and copy was simplified and made more direct. A colourful and freeform visual design concept, not traditionally associated with government work, was used to signal a fresh start. This visual approach was dynamically used across video animations, presentation materials, documentation and more.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-raKnAjdncg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142837\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vZY7GyvZuJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Pubs, clubs, and liquor and gaming licensees can be a tough crowd to impress but this campaign has resonated strongly due to its use of simple and clear messaging and innovative visual look. The primary goals of education and information is an ongoing process but the campaign has launched strongly.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Department of Justice and Attorney-General | New regulatory strategy campaign','The Office of Liquor and Gaming Regulation (OLGR) had done the hard yards of developing, building and creating a new strategy to meet the modern demands of the industry they oversee. But communicating their strategy to a range of diverse industry stakeholders was seen as one of the most critical steps in achieving their strategic goals. They needed clarity, understanding and buy-in. Enter New Word Order.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139070,142841,1,'NWO’s library','2022-10-25 03:43:56','2022-10-25 03:43:56','29a376f5-be2e-429a-9088-9efcca4c69ac',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142764\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### October picks\\n\\n<h6> Bruce’s pick </h6> \\n<b>Book title: </b> A Night Without Stars\\n<b>Author: </b> Peter F Hamilton \\nFind it <a href=\\\"https://www.goodreads.com/book/show/28439513-a-night-without-stars\\\"> here </a>\\n\\n<h6> Bree\'s pick </h6> \\n<b>Book title: </b> The Seven Husbands of Evelyn Hugo\\n<b>Author: </b> Taylor Jenkins Reid\\nFind it <a href=\\\"https://www.goodreads.com/book/show/32620332-the-seven-husbands-of-evelyn-hugo\\\"> here </a>\\n\\n<h6> Kimi\'s pick </h6> \\n<b>Book title: </b> Losing Face\\n<b>Author: </b> George Haddad\\nFind it <a href=\\\"https://www.goodreads.com/book/show/60752357-losing-face\\\"> here </a>\\n\\n<h6> Jo\'s pick </h6> \\n<b>Book title: </b> The Testaments\\n<b>Author: </b> Margaret Atwood\\nFind it <a href=\\\"https://www.goodreads.com/book/show/42975172-the-testaments\\\"> here </a>\\n\\n<h6> Suz\'s pick </h6> \\n<b>Book title: </b> The Bookseller at the End of the World\\n<b>Author: </b> Ruth Shaw\\nFind it <a href=\\\"https://www.goodreads.com/book/show/60296308-the-bookseller-at-the-end-of-the-world\\\"> here </a>\\n\\n<br> </br>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8Zua9e4kWu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142595\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### September picks\\n\\n* <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> Taste: My Life Through Food by Stanley Tucci </a> \\n* <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> A Little Life by Hanya Yanagihara </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/37558445-boy-swallows-universe\\\"> Boy Swallows Universe by Trent Dalton </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> Johnno by David Malouf </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> Growing up Queer in Australia by Benjamin Law </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> Bullet Train by Kotaro Isaka </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> A Promised Land by Barack Obama </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> The Life by Malcolm Knox </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/11468377-thinking-fast-and-slow\\\"> Thinking, Fast and Slow by Daniel Kahneman </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> Hunt, Gather, Parent by Michaeleen Doucleff </a> \\n* <a href=\\\"https://www.goodreads.com/en/book/show/30762074\\\"> Odd Dog Out by Rob Bidulph </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tAgWmP7qVi\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NWO’s library','Taste: My Life Through Food by Stanley Tucci ... A Little Life by Hanya Yanagihara ... Johnno by David Malouf ... Growing up Queer in Australia by Benjamin Law ... Bullet Train by Kotaro Isaka ... A Promised Land by Barack Obama ... The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan ... The Life by Malcolm Knox',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139072,142843,1,'About us','2022-10-25 22:44:17','2022-10-25 22:44:17','3d904e06-0b63-48b8-bef6-a4af2906468e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17881\",\"17934\",\"17887\",\"30433\",\"17921\",\"97259\",\"141616\",\"141642\",\"142039\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | About us','For 20 years we have helped businesses, organisations and governments to solve problems, unlock potential and connect with people to inspire action.','strategy, brand, campaign, behaviour change, engagement, digital, video, content',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139073,142844,1,'Break away from the same-same with custom illustration','2022-10-25 22:47:48','2022-10-25 22:47:48','810dffcd-a10e-4aa2-9433-fe7cd164f120',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tiYExhhMPf\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The most important thing for a brand is to stand out from the competition.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Too often, companies don\'t understand their brand well enough to know its unique personality and look. \\n\\nAs a result, they use stock imagery, and in doing so, immediately dilute the brand and its message. \\n\\nThis is where custom illustration can play a critical role in making a brand stand out from the pack.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZOmCf7hZyl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"There’s nothing more special than something made just for you.\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cezN1PdcHJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"You hold it loudly and proudly for all to see—and people notice because there’s nothing else in the world quite like it. And this makes you treasure it that little bit more.\\n\\nThe dream of an illustrator is to have time, budget and ability to craft a bespoke masterpiece for every job that comes across their desk.\\n\\nThat dream doesn’t turn to reality very often. But that doesn’t mean your brand has to revert to using the same old stock illustrations everyone else uses, either.\\n\\nThere are so many ways to get over those hurdles when a project doesn’t have time or budget to allow for a custom piece.\\n\\nA lot of the time, stock illustration can be tweaked to give it the edge it needs to stand out from the crowd.\\n\\nChange up the colours, mix up the style and jazz up the faces.\\n\\nSometimes stock forms the base for us to build something fresh. And other times there might already be the perfect stock illustration that tells the right story without much tweaking at all.\\n\\nWhatever the constraints—budget, time, brief—there’s always a way to break free. It just takes some thinking outside of the box.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-amC4hnZM56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"If you’re drowning in a sea of same-same, come chat to us and [we\'ll make your brand stand out](/contact).\",\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Break away from the same-same with custom illustration','There’s nothing more special than something made just for you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139075,142846,1,'Let us introduce ourselves','2022-10-25 22:49:49','2022-10-25 22:49:49','1d39f7fa-9702-4e7a-b657-6fad63348f57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and the Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139076,142847,1,'The world of modern marketing','2022-10-26 02:13:04','2023-04-03 01:08:12','f13ab134-8ea0-4076-ad93-4328095bb83e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p80I0czk4W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<b> Being a chief marketing officer (CMO) is a tough gig. We get that.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<b> You have multiple accountabilities staring long and hard at you before you’ve even had your morning coffee. The days of set-and-forget media plans, generous marketing budgets and long lunches with your creative agency peeps are long gone. </b>\\n\\nThe pain points of CMOs are often remarkably similar across different industries and sectors. As an agency who works closely with many CMOs in diverse fields from healthcare to industrial lubricants, we witness first-hand the many modern pressures of commercial marketing. There are strategic plans to deliver, performance metrics to be measured and ROI to be rationalised.\\n\\n<h5> Diamonds form under pressure </h5>\\nSure, you’re in the hot seat but we just applaud the fact you have a seat at the big table. Professional marketers haven’t always been welcome in the C-suite. But in recent times, the importance and relevance of marketing as a function of business success has been elevated. Yes, that does come with an bigger set of expectations and pressures, but that’s why we’re here to help.\\n\\nWhen your standard Tuesday morning involves planning and strategising around things like revenue growth, market share, user experience and brand performance, having an agency that is built for speed and delivery is a distinct advantage. Often our job is to help CMOs turn their board/exec-approved long-term strategies into actionable short-term tactics. \\n\\nAfter all, what’s the point of having marketing ammunition if you don’t have the secret weapon to fire it? \\n\\n<h5> We are your secret weapon </h5>\\n\\nPart of our value to CMOs is bringing a level of experience and skillset that isn’t readily available within your internal team. Or managing projects that just aren’t suitable for your big agency of record. \\n\\nAs pressures and performance metrics come to bear, you want to rely on an agency who can be responsive and proactive as required. People who can turn around projects quickly and efficiently. Marketing specialists who understand how lead generation and revenue growth is a daily challenge, not a one-off campaign. \\n\\nFear not, CMOs. We don’t just feel your pain. We share it. And it makes us all the more committed and determined to find innovative and fit-for-purpose solutions for your business. \\n\\nFind out more about how we add a secret weapon to your agency roster by downloading a short guide <a href=https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/NWO-secret-weapon.pdf>here</a>.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139077,142848,1,'The world of modern marketing','2022-10-26 02:15:52','2022-10-26 02:15:52','f0c3cc9d-9677-4604-95da-01c2b27e63c7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p80I0czk4W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h3> Being a Chief Marketing Officer (CMO) is a tough gig. We get that. You’ve got multiple accountabilities staring long and hard at you before you’ve even had your morning coffee. The days of set-and-forget media plans, generous marketing budgets and long lunches with your creative agency peeps are long gone. </h3>\\n\\nThe pain points of CMOs are often remarkably similar across different industries and sectors. As an agency who works closely with many CMOs in diverse fields from healthcare to industrial lubricants, we witness first-hand the many modern pressures of commercial marketing. There are strategic plans to deliver, performance metrics to be measured and ROI to be rationalised.\\n\\n<h2> Diamonds form under pressure </h2> \\nSure, you’re in the hot seat but we just applaud the fact you’ve got a seat at the big table. Being part of the C-suite is not something professional marketers have always enjoyed. But in recent times, the importance and relevance of marketing as a function of business success has been elevated. Yes, that does come with an elevated set of expectations and pressures, but that’s why we’re here to help.\\n\\nWhen your standard Tuesday morning involves planning and strategising around things like revenue growth, market share, data capture and analysis, customer journey mapping, user experience and brand performance, having an agency that is built for speed and delivery is a distinct advantage. Often our job is to help CMO’s turn their board/exec-approved long-term strategies into actionable short-term tactics. \\n\\nAfter all, what’s the point of having marketing ammunition if you don’t have the secret weapon to fire it off? \\n\\n<h2> We are your secret weapon </h2>\\nPart of our value to CMOs is bringing a level of experience and skillset that that is not always readily available within your internal team. Or managing projects that just aren’t suitable for your big agency of record. \\n\\nAs pressures and performance metrics come to bear, you want to rely on an agency who can be responsive and proactive as required. People who can turn around projects quickly and efficiently. Marketing specialists who understand how lead generation and revenue growth is a daily challenge, not a one-off campaign. \\n\\nFear not CMOs. We don’t just feel your pain. We share it. And it makes us all more committed and determined to find innovative and fit-for-purpose solutions for your business. \\n\\nFind out more about how we add a secret weapon to your agency roster by downloading a short guide here. [LINK TO B-TEAM BROCHURE].\\n\\nOr for a confidential chat, call Suzanne on 0413 875 806.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139079,142850,1,'The world of modern marketing','2022-10-26 02:16:20','2022-10-26 02:16:20','c2e2b492-ff48-4d33-87b5-95927f6d9e25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p80I0czk4W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h4> Being a Chief Marketing Officer (CMO) is a tough gig. We get that. You’ve got multiple accountabilities staring long and hard at you before you’ve even had your morning coffee. The days of set-and-forget media plans, generous marketing budgets and long lunches with your creative agency peeps are long gone. </h4>\\n\\nThe pain points of CMOs are often remarkably similar across different industries and sectors. As an agency who works closely with many CMOs in diverse fields from healthcare to industrial lubricants, we witness first-hand the many modern pressures of commercial marketing. There are strategic plans to deliver, performance metrics to be measured and ROI to be rationalised.\\n\\n<h3> Diamonds form under pressure </h3> \\nSure, you’re in the hot seat but we just applaud the fact you’ve got a seat at the big table. Being part of the C-suite is not something professional marketers have always enjoyed. But in recent times, the importance and relevance of marketing as a function of business success has been elevated. Yes, that does come with an elevated set of expectations and pressures, but that’s why we’re here to help.\\n\\nWhen your standard Tuesday morning involves planning and strategising around things like revenue growth, market share, data capture and analysis, customer journey mapping, user experience and brand performance, having an agency that is built for speed and delivery is a distinct advantage. Often our job is to help CMO’s turn their board/exec-approved long-term strategies into actionable short-term tactics. \\n\\nAfter all, what’s the point of having marketing ammunition if you don’t have the secret weapon to fire it off? \\n\\n<h3> We are your secret weapon </h3>\\nPart of our value to CMOs is bringing a level of experience and skillset that that is not always readily available within your internal team. Or managing projects that just aren’t suitable for your big agency of record. \\n\\nAs pressures and performance metrics come to bear, you want to rely on an agency who can be responsive and proactive as required. People who can turn around projects quickly and efficiently. Marketing specialists who understand how lead generation and revenue growth is a daily challenge, not a one-off campaign. \\n\\nFear not CMOs. We don’t just feel your pain. We share it. And it makes us all more committed and determined to find innovative and fit-for-purpose solutions for your business. \\n\\nFind out more about how we add a secret weapon to your agency roster by downloading a short guide here. [LINK TO B-TEAM BROCHURE].\\n\\nOr for a confidential chat, call Suzanne on 0413 875 806.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139081,142852,1,'The world of modern marketing','2022-10-26 02:16:33','2022-10-26 02:16:33','73708d8e-efca-4482-b718-4a9e1853a799',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p80I0czk4W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h5> Being a Chief Marketing Officer (CMO) is a tough gig. We get that. You’ve got multiple accountabilities staring long and hard at you before you’ve even had your morning coffee. The days of set-and-forget media plans, generous marketing budgets and long lunches with your creative agency peeps are long gone. </h5>\\n\\nThe pain points of CMOs are often remarkably similar across different industries and sectors. As an agency who works closely with many CMOs in diverse fields from healthcare to industrial lubricants, we witness first-hand the many modern pressures of commercial marketing. There are strategic plans to deliver, performance metrics to be measured and ROI to be rationalised.\\n\\n<h3> Diamonds form under pressure </h3> \\nSure, you’re in the hot seat but we just applaud the fact you’ve got a seat at the big table. Being part of the C-suite is not something professional marketers have always enjoyed. But in recent times, the importance and relevance of marketing as a function of business success has been elevated. Yes, that does come with an elevated set of expectations and pressures, but that’s why we’re here to help.\\n\\nWhen your standard Tuesday morning involves planning and strategising around things like revenue growth, market share, data capture and analysis, customer journey mapping, user experience and brand performance, having an agency that is built for speed and delivery is a distinct advantage. Often our job is to help CMO’s turn their board/exec-approved long-term strategies into actionable short-term tactics. \\n\\nAfter all, what’s the point of having marketing ammunition if you don’t have the secret weapon to fire it off? \\n\\n<h3> We are your secret weapon </h3>\\nPart of our value to CMOs is bringing a level of experience and skillset that that is not always readily available within your internal team. Or managing projects that just aren’t suitable for your big agency of record. \\n\\nAs pressures and performance metrics come to bear, you want to rely on an agency who can be responsive and proactive as required. People who can turn around projects quickly and efficiently. Marketing specialists who understand how lead generation and revenue growth is a daily challenge, not a one-off campaign. \\n\\nFear not CMOs. We don’t just feel your pain. We share it. And it makes us all more committed and determined to find innovative and fit-for-purpose solutions for your business. \\n\\nFind out more about how we add a secret weapon to your agency roster by downloading a short guide here. [LINK TO B-TEAM BROCHURE].\\n\\nOr for a confidential chat, call Suzanne on 0413 875 806.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139083,142854,1,'The world of modern marketing','2022-10-26 02:17:36','2022-10-26 02:17:36','8d8118f4-2c88-4b69-9e02-2ee7409c73d6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p80I0czk4W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h5> Being a Chief Marketing Officer (CMO) is a tough gig. We get that. You’ve got multiple accountabilities staring long and hard at you before you’ve even had your morning coffee. The days of set-and-forget media plans, generous marketing budgets and long lunches with your creative agency peeps are long gone. </h5>\\n\\nThe pain points of CMOs are often remarkably similar across different industries and sectors. As an agency who works closely with many CMOs in diverse fields from healthcare to industrial lubricants, we witness first-hand the many modern pressures of commercial marketing. There are strategic plans to deliver, performance metrics to be measured and ROI to be rationalised.\\n\\n<h5> Diamonds form under pressure </h5> \\nSure, you’re in the hot seat but we just applaud the fact you’ve got a seat at the big table. Being part of the C-suite is not something professional marketers have always enjoyed. But in recent times, the importance and relevance of marketing as a function of business success has been elevated. Yes, that does come with an elevated set of expectations and pressures, but that’s why we’re here to help.\\n\\nWhen your standard Tuesday morning involves planning and strategising around things like revenue growth, market share, data capture and analysis, customer journey mapping, user experience and brand performance, having an agency that is built for speed and delivery is a distinct advantage. Often our job is to help CMO’s turn their board/exec-approved long-term strategies into actionable short-term tactics. \\n\\nAfter all, what’s the point of having marketing ammunition if you don’t have the secret weapon to fire it off? \\n\\n<h5> We are your secret weapon </h5>\\nPart of our value to CMOs is bringing a level of experience and skillset that that is not always readily available within your internal team. Or managing projects that just aren’t suitable for your big agency of record. \\n\\nAs pressures and performance metrics come to bear, you want to rely on an agency who can be responsive and proactive as required. People who can turn around projects quickly and efficiently. Marketing specialists who understand how lead generation and revenue growth is a daily challenge, not a one-off campaign. \\n\\nFear not CMOs. We don’t just feel your pain. We share it. And it makes us all more committed and determined to find innovative and fit-for-purpose solutions for your business. \\n\\nFind out more about how we add a secret weapon to your agency roster by downloading a short guide here. [LINK TO B-TEAM BROCHURE].\\n\\nOr for a confidential chat, call Suzanne on 0413 875 806.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139085,142856,1,'The world of modern marketing','2022-10-26 02:18:39','2022-10-26 02:18:39','d9252ff6-a81f-4901-98a5-0d53058c4a68',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p80I0czk4W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<b> Being a Chief Marketing Officer (CMO) is a tough gig. We get that. You’ve got multiple accountabilities staring long and hard at you before you’ve even had your morning coffee. The days of set-and-forget media plans, generous marketing budgets and long lunches with your creative agency peeps are long gone. </b>\\n\\nThe pain points of CMOs are often remarkably similar across different industries and sectors. As an agency who works closely with many CMOs in diverse fields from healthcare to industrial lubricants, we witness first-hand the many modern pressures of commercial marketing. There are strategic plans to deliver, performance metrics to be measured and ROI to be rationalised.\\n\\n<h5> Diamonds form under pressure </h5> \\nSure, you’re in the hot seat but we just applaud the fact you’ve got a seat at the big table. Being part of the C-suite is not something professional marketers have always enjoyed. But in recent times, the importance and relevance of marketing as a function of business success has been elevated. Yes, that does come with an elevated set of expectations and pressures, but that’s why we’re here to help.\\n\\nWhen your standard Tuesday morning involves planning and strategising around things like revenue growth, market share, data capture and analysis, customer journey mapping, user experience and brand performance, having an agency that is built for speed and delivery is a distinct advantage. Often our job is to help CMO’s turn their board/exec-approved long-term strategies into actionable short-term tactics. \\n\\nAfter all, what’s the point of having marketing ammunition if you don’t have the secret weapon to fire it off? \\n\\n<h5> We are your secret weapon </h5>\\nPart of our value to CMOs is bringing a level of experience and skillset that that is not always readily available within your internal team. Or managing projects that just aren’t suitable for your big agency of record. \\n\\nAs pressures and performance metrics come to bear, you want to rely on an agency who can be responsive and proactive as required. People who can turn around projects quickly and efficiently. Marketing specialists who understand how lead generation and revenue growth is a daily challenge, not a one-off campaign. \\n\\nFear not CMOs. We don’t just feel your pain. We share it. And it makes us all more committed and determined to find innovative and fit-for-purpose solutions for your business. \\n\\nFind out more about how we add a secret weapon to your agency roster by downloading a short guide here. [LINK TO B-TEAM BROCHURE].\\n\\nOr for a confidential chat, call Suzanne on 0413 875 806.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139088,142859,1,'Email sigs','2022-10-26 07:04:46','2022-10-26 07:04:46','34df9b67-f908-4b37-88ec-b557d0240cd6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"113\" src=\"{asset:74279:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/email-sig.gif}\" alt=\"New Word Order\" /></a></figure>\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"100\" src=\"{asset:84923:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/nwo-email-christmas-21.png}\" alt=\"Merry Christmas\" /></a></figure>\n<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139090,142861,1,'Email sigs','2022-10-26 07:05:34','2022-10-26 07:05:34','0a776bc4-07cf-42a7-ad98-ee89ed483bc8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"113\" src=\"{asset:74279:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/email-sig.gif}\" alt=\"New Word Order\" /></a></figure>\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"100\" src=\"{asset:84923:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/nwo-email-christmas-21.png}\" alt=\"Merry Christmas\" /></a></figure>\n<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"100\" src=\"{asset:84923:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/nwo-email-christmas-21.png}\" alt=\"Merry Christmas\" /></a></figure>\n<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139092,142863,1,'Email sigs','2022-10-26 07:06:46','2022-10-26 07:06:46','d401a3c3-13bc-4ed4-8bc1-f1199c86a95b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"113\" src=\"{asset:74279:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/email-sig.gif}\" alt=\"New Word Order\" /></a></figure>\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"100\" src=\"{asset:84923:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/nwo-email-christmas-21.png}\" alt=\"Merry Christmas\" /></a></figure>\n<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"100\" src=\"{asset:84923:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/nwo-email-christmas-21.png}\" alt=\"Merry Christmas\" /></a></figure>\n<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139094,142865,1,'Email sigs','2022-10-26 07:07:43','2022-10-26 07:07:43','2e5e5c4c-383a-40ec-b36d-792df7630c1f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"113\" src=\"{asset:74279:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/email-sig.gif}\" alt=\"New Word Order\" /></a></figure>\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"100\" src=\"{asset:84923:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/nwo-email-christmas-21.png}\" alt=\"Merry Christmas\" /></a></figure>\n<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>\n<figure><a href=\"https://newwordorder.com.au\"><img src=\"{asset:142781:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/nwo-email-christmas-22.png}\" alt=\"Merry Christmas\" /></a></figure>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139096,142867,1,'Email sigs','2022-10-26 07:08:25','2022-10-26 07:08:25','029a09e0-fd84-454a-b353-b452846a9488',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"113\" src=\"{asset:74279:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/email-sig.gif}\" alt=\"New Word Order\" /></a></figure>\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"100\" src=\"{asset:142781:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/nwo-email-christmas-22.png}\" alt=\"Merry Christmas\" /></a></figure>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139097,142868,1,'Nwo email christmas 22','2022-10-26 23:41:25','2022-10-26 23:41:25','7311e91f-deab-4268-9fca-ce6792beca46',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x384_crop_center-center_82_line/nwo-email-christmas-22.png\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x320_crop_center-center_82_line/nwo-email-christmas-22.png\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x256_crop_center-center_82_line/nwo-email-christmas-22.png\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x192_crop_center-center_82_line/nwo-email-christmas-22.png\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x160_crop_center-center_82_line/nwo-email-christmas-22.png\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x384_crop_center-center_82_line/nwo-email-christmas-22.png.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x320_crop_center-center_82_line/nwo-email-christmas-22.png.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x256_crop_center-center_82_line/nwo-email-christmas-22.png.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x192_crop_center-center_82_line/nwo-email-christmas-22.png.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x160_crop_center-center_82_line/nwo-email-christmas-22.png.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":384,\"1280\":320,\"1024\":256,\"768\":192,\"640\":160},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":2000,\"originalImageHeight\":500,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAEABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAAUG/8QAGxAAAgIDAQAAAAAAAAAAAAAAAAIBAwQFERL/xAAVAQEBAAAAAAAAAAAAAAAAAAAAAf/EABYRAQEBAAAAAAAAAAAAAAAAAAABMf/aAAwDAQACEQMRAD8Ayu/qTC2TU46KqeFnkrEkkAkwj//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#040404\",\"#daa599\",\"#17d57d\",\"#5c5c5d\",\"#7c7c7c\"],\"lightness\":37,\"placeholderWidth\":1536,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139098,142869,1,'Nwo email christmas 22 1','2022-10-26 23:43:37','2022-10-26 23:43:37','a7c9a383-fb0e-4a5e-a81c-b6f147d9f161',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x384_crop_center-center_82_line/nwo-email-christmas-22-1.png\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x320_crop_center-center_82_line/nwo-email-christmas-22-1.png\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x256_crop_center-center_82_line/nwo-email-christmas-22-1.png\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x192_crop_center-center_82_line/nwo-email-christmas-22-1.png\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x160_crop_center-center_82_line/nwo-email-christmas-22-1.png\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x384_crop_center-center_82_line/nwo-email-christmas-22-1.png.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x320_crop_center-center_82_line/nwo-email-christmas-22-1.png.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x256_crop_center-center_82_line/nwo-email-christmas-22-1.png.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x192_crop_center-center_82_line/nwo-email-christmas-22-1.png.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x160_crop_center-center_82_line/nwo-email-christmas-22-1.png.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":384,\"1280\":320,\"1024\":256,\"768\":192,\"640\":160},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":2000,\"originalImageHeight\":500,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAEABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAAUG/8QAGxAAAgIDAQAAAAAAAAAAAAAAAAIBAwQFERL/xAAVAQEBAAAAAAAAAAAAAAAAAAAAAf/EABYRAQEBAAAAAAAAAAAAAAAAAAABMf/aAAwDAQACEQMRAD8Ayu/qTC2TU46KqeFnkrEkkAkwj//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#040404\",\"#daa599\",\"#17d57d\",\"#5c5c5d\",\"#7c7c7c\"],\"lightness\":37,\"placeholderWidth\":1536,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139100,142871,1,'Email sigs','2022-10-26 23:44:32','2022-10-26 23:44:32','d7675cd6-eb98-45aa-8e64-a49535dda7d1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"113\" src=\"{asset:74279:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/email-sig.gif}\" alt=\"New Word Order\" /></a></figure>\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"100\" src=\"{asset:142869:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/nwo-email-christmas-22-1.png}\" alt=\"Merry Christmas\" /></a></figure>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139102,142873,1,'Queensland Hydro','2022-10-27 04:16:32','2022-10-27 04:16:32','46738610-1729-43d2-9423-494541337fe5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Powering Queensland’s future',NULL,NULL,'Queensland has some ambitious goals for a clean energy future: 50 per cent renewable energy by 2030 and zero net emissions by 2050. Pumped hydro is the key to achieving this, and the state government is facilitating pumped hydro through a new subsidiary brand. We helped build the brand for Queensland Hydro on a strategic, evidence-based foundation to set it up for a successful journey of powering Queensland’s future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MJwz0wrwkL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142807\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RCifzof72P\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The Queensland Government needed to establish a subsidiary entity to carry the planning and transmission connection work for potential pumped hydro projects across Queensland. Our creation of the brand for Queensland Hydro involved extensive discovery prior to crafting a brand identity, designing marketing collateral, and copywriting, designing and developing a website.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fdid0P67Ag\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142816\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As we often do, we began this project with a comprehensive discovery phase. This involved a review of Queensland Hydro’s contemporaries and competitive landscape, consultation with a First Nations advisor on theming and language, and stakeholder workshops to clarify the brand personality, purpose and objectives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5o9yXWhZxU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our deliverables included a brand name, logo, visual identity, collateral, key messaging and content for the website. We kept the design fresh and engaging while accommodating the needs of the various stakeholders involved.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvkuSRS5qb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142702\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fjwEEvmBHp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Queensland Hydro will be a vital component in reaching Australia’s aspirational energy goals over the next few decades. Pumped hydro is at the centre of cleaning up Queensland’s energy, and we were delighted to play a role in bringing Queensland Hydro to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2XRuH2soQj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142813\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139103,142874,1,'Mike','2022-10-28 06:47:54','2023-03-09 04:28:04','aadb93db-a6c2-42a2-a2a3-2501572876ac',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Mike-col-23.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Mike-col-23.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Mike-col-23.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Mike-col-23.jpg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/Mike-col-23.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/Mike-col-23.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/Mike-col-23.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/Mike-col-23.jpg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1280,\"originalImageHeight\":1280,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBIAEgAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAMF/8QAIRAAAgIBBAIDAAAAAAAAAAAAAQIDEQQABRIUEyFBYZH/xAAWAQEBAQAAAAAAAAAAAAAAAAAAAQL/xAAZEQADAQEBAAAAAAAAAAAAAAAAAQIRMUH/2gAMAwEAAhEDEQA/ALbhK8SRKjmPm/FnC2QKJ1u20iytYnHLeKnYsQa5EUTqy9WiljwwNz3B8nL6VCOISANIfZFfOs0/BPRcWd18zpooeENxWS/Z+/3UivBXT//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#a09db3\",\"#262225\",\"#6f5e45\",\"#543c36\",\"#ddb4a8\"],\"lightness\":41,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139104,142875,1,'vitalway','2022-10-31 00:51:19','2023-03-31 03:42:53','22918a83-02c4-4100-bbdd-704a6e4c0175',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The vital way of branding',NULL,NULL,'Aligning a brand’s value is essential to communicating purposeful work. Through customer research, we helped reposition vitalway to leverage its extensive years of combined experience working with disadvantaged young people and their families through value-based learning.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rqi4FVqzfm\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143173\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OSv1zZoTd7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A grassroots program with huge potential to grow significantly, vitalway needed help with maturing their brand identity and better defining their market positioning. While they relied on a strong reputation and substantial impact, their varying services weren’t well understood by their market.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WVYFOcr17s\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gYRjQPXQnd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"143190\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We went straight to the source—their stakeholders. Through interviews, we were able to shape a picture of the wider market. While we were unable to speak directly with vitalway’s at-risk youth participants for privacy reasons, we learned from others who use and refer to vitalway’s program.\\nAlongside our customer insights, we engaged in desktop research to learn about competitors and contemporary services in vitalway’s market space.\\nOur deeper understanding of the perceptions and realities of vitalway’s industry guided us in writing a brand narrative for vitalway that truly reflected their unique positioning.\\nThese insights contributed not only to their brand strategy but also their business strategy—aligning these two pieces to ensure the vitalway brand always works towards the organisation’s business goals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wgVzrD9tCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143174\",\"143181\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MRDlR2NjSv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A powerful purpose requires a visual identity that holds the brand with certainty and conviction. Being mindful of the humans vitalway serves, we developed a visual system that pays respect to the company’s past and paints a clear image of a bright future.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2MPtm7hnSH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143178\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LpUDcdBBO6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"vitalway helps at-risk teenagers to change their futures. Realigning these teenagers with their values and emotions allows them to thrive amidst challenging circumstances, in a way they often don’t believe could be possible.\\nAt New Word Order, our purpose is to make a meaningful difference to people’s lives. This project is yet another example of how we help brands to reach more people with their life-changing services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hsGIG2szE3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143177\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'vitalway | The vital way of branding','Aligning a brand’s value is essential to communicating purposeful work. Through customer research, we helped reposition vitalway to emulate its extensive years of combined experience working with disadvantaged young people and their families through value-based learning.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139105,142876,1,'22 11 modern marketing blog image 1 12','2022-11-03 05:31:49','2022-11-03 05:31:49','f8f60ba8-8c83-4c57-99d3-7e2567d3c1a2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x767_crop_center-center_82_line/22_11-modern-marketing-blog-image-1-12.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x639_crop_center-center_82_line/22_11-modern-marketing-blog-image-1-12.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x511_crop_center-center_82_line/22_11-modern-marketing-blog-image-1-12.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1023_crop_center-center_82_line/22_11-modern-marketing-blog-image-1-12.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x383_crop_center-center_82_line/22_11-modern-marketing-blog-image-1-12.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x319_crop_center-center_82_line/22_11-modern-marketing-blog-image-1-12.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x767_crop_center-center_82_line/22_11-modern-marketing-blog-image-1-12.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x639_crop_center-center_82_line/22_11-modern-marketing-blog-image-1-12.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x511_crop_center-center_82_line/22_11-modern-marketing-blog-image-1-12.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1023_crop_center-center_82_line/22_11-modern-marketing-blog-image-1-12.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x383_crop_center-center_82_line/22_11-modern-marketing-blog-image-1-12.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x319_crop_center-center_82_line/22_11-modern-marketing-blog-image-1-12.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":767,\"1280\":639,\"1024\":511,\"2048\":1023,\"768\":383,\"640\":319},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":2167,\"originalImageHeight\":1083,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAHABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAAL/xAAZEAACAwEAAAAAAAAAAAAAAAACEQABEiH/xAAWAQEBAQAAAAAAAAAAAAAAAAAABQb/xAAWEQEBAQAAAAAAAAAAAAAAAAAAATH/2gAMAwEAAhEDEQA/AJN5tSdGhuAOx7FJj//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#e25b3c\",\"#8d3520\",\"#4c1f0e\",\"#be4624\",\"#bc3424\"],\"lightness\":40,\"placeholderWidth\":1536,\"placeholderHeight\":767,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139106,142877,1,'22 11 modern marketing blog image 1 1','2022-11-03 05:32:02','2022-11-03 05:32:02','77208ba6-057e-431c-9bdf-a1783490e38e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/22_11-modern-marketing-blog-image-1-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/22_11-modern-marketing-blog-image-1-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/22_11-modern-marketing-blog-image-1-1.jpg\"},\"optimizedWebPImageUrls\":{\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/22_11-modern-marketing-blog-image-1-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/22_11-modern-marketing-blog-image-1-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/22_11-modern-marketing-blog-image-1-1.jpg.webp\"},\"variantSourceWidths\":[\"1024\",\"768\",\"640\"],\"variantHeights\":{\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1083,\"originalImageHeight\":1083,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAAEC/8QAGxABAAICAwAAAAAAAAAAAAAAAQACAxEhMUH/xAAXAQEBAQEAAAAAAAAAAAAAAAAAAQUG/8QAGBEBAQEBAQAAAAAAAAAAAAAAAAECESH/2gAMAwEAAhEDEQA/AMZF4B1M6OhpRdo+QRMmMtYt6dcyypc99MVE2r3FMx//2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#e25a3c\",\"#461c10\",\"#8d3827\",\"#b43426\",\"#c1441c\"],\"lightness\":38,\"placeholderWidth\":1024,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139107,142878,1,'The world of modern marketing','2022-11-03 05:32:10','2022-11-03 05:32:10','786daf32-9a4d-4266-8bae-5cbd794d45ff',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p80I0czk4W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<b> Being a Chief Marketing Officer (CMO) is a tough gig. We get that. You’ve got multiple accountabilities staring long and hard at you before you’ve even had your morning coffee. The days of set-and-forget media plans, generous marketing budgets and long lunches with your creative agency peeps are long gone. </b>\\n\\nThe pain points of CMOs are often remarkably similar across different industries and sectors. As an agency who works closely with many CMOs in diverse fields from healthcare to industrial lubricants, we witness first-hand the many modern pressures of commercial marketing. There are strategic plans to deliver, performance metrics to be measured and ROI to be rationalised.\\n\\n<h5> Diamonds form under pressure </h5> \\nSure, you’re in the hot seat but we just applaud the fact you’ve got a seat at the big table. Being part of the C-suite is not something professional marketers have always enjoyed. But in recent times, the importance and relevance of marketing as a function of business success has been elevated. Yes, that does come with an elevated set of expectations and pressures, but that’s why we’re here to help.\\n\\nWhen your standard Tuesday morning involves planning and strategising around things like revenue growth, market share, data capture and analysis, customer journey mapping, user experience and brand performance, having an agency that is built for speed and delivery is a distinct advantage. Often our job is to help CMO’s turn their board/exec-approved long-term strategies into actionable short-term tactics. \\n\\nAfter all, what’s the point of having marketing ammunition if you don’t have the secret weapon to fire it off? \\n\\n<h5> We are your secret weapon </h5>\\nPart of our value to CMOs is bringing a level of experience and skillset that that is not always readily available within your internal team. Or managing projects that just aren’t suitable for your big agency of record. \\n\\nAs pressures and performance metrics come to bear, you want to rely on an agency who can be responsive and proactive as required. People who can turn around projects quickly and efficiently. Marketing specialists who understand how lead generation and revenue growth is a daily challenge, not a one-off campaign. \\n\\nFear not CMOs. We don’t just feel your pain. We share it. And it makes us all more committed and determined to find innovative and fit-for-purpose solutions for your business. \\n\\nFind out more about how we add a secret weapon to your agency roster by downloading a short guide here. [LINK TO B-TEAM BROCHURE].\\n\\nOr for a confidential chat, call Suzanne on 0413 875 806.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139109,142880,1,'The world of modern marketing','2022-11-03 05:32:42','2022-11-03 05:32:42','5f30cc9c-2bbf-4bef-bfa0-ab72faa02005',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p80I0czk4W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<b> Being a Chief Marketing Officer (CMO) is a tough gig. We get that. You’ve got multiple accountabilities staring long and hard at you before you’ve even had your morning coffee. The days of set-and-forget media plans, generous marketing budgets and long lunches with your creative agency peeps are long gone. </b>\\n\\nThe pain points of CMOs are often remarkably similar across different industries and sectors. As an agency who works closely with many CMOs in diverse fields from healthcare to industrial lubricants, we witness first-hand the many modern pressures of commercial marketing. There are strategic plans to deliver, performance metrics to be measured and ROI to be rationalised.\\n\\n<h5> Diamonds form under pressure </h5> \\nSure, you’re in the hot seat but we just applaud the fact you’ve got a seat at the big table. Being part of the C-suite is not something professional marketers have always enjoyed. But in recent times, the importance and relevance of marketing as a function of business success has been elevated. Yes, that does come with an elevated set of expectations and pressures, but that’s why we’re here to help.\\n\\nWhen your standard Tuesday morning involves planning and strategising around things like revenue growth, market share, data capture and analysis, customer journey mapping, user experience and brand performance, having an agency that is built for speed and delivery is a distinct advantage. Often our job is to help CMO’s turn their board/exec-approved long-term strategies into actionable short-term tactics. \\n\\nAfter all, what’s the point of having marketing ammunition if you don’t have the secret weapon to fire it off? \\n\\n<h5> We are your secret weapon </h5>\\nPart of our value to CMOs is bringing a level of experience and skillset that that is not always readily available within your internal team. Or managing projects that just aren’t suitable for your big agency of record. \\n\\nAs pressures and performance metrics come to bear, you want to rely on an agency who can be responsive and proactive as required. People who can turn around projects quickly and efficiently. Marketing specialists who understand how lead generation and revenue growth is a daily challenge, not a one-off campaign. \\n\\nFear not CMOs. We don’t just feel your pain. We share it. And it makes us all more committed and determined to find innovative and fit-for-purpose solutions for your business. \\n\\nFind out more about how we add a secret weapon to your agency roster by downloading a short guide here. [LINK TO B-TEAM BROCHURE].\\n\\nOr for a confidential chat, call Suzanne on 0413 875 806.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139111,142882,1,'The world of modern marketing','2022-11-03 05:33:05','2022-11-03 05:33:05','04b532e0-45f4-4a59-865c-004c0c2ab58d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p80I0czk4W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<b> Being a Chief Marketing Officer (CMO) is a tough gig. We get that. You’ve got multiple accountabilities staring long and hard at you before you’ve even had your morning coffee. The days of set-and-forget media plans, generous marketing budgets and long lunches with your creative agency peeps are long gone. </b>\\n\\nThe pain points of CMOs are often remarkably similar across different industries and sectors. As an agency who works closely with many CMOs in diverse fields from healthcare to industrial lubricants, we witness first-hand the many modern pressures of commercial marketing. There are strategic plans to deliver, performance metrics to be measured and ROI to be rationalised.\\n\\n<h5> Diamonds form under pressure </h5> \\nSure, you’re in the hot seat but we just applaud the fact you’ve got a seat at the big table. Being part of the C-suite is not something professional marketers have always enjoyed. But in recent times, the importance and relevance of marketing as a function of business success has been elevated. Yes, that does come with an elevated set of expectations and pressures, but that’s why we’re here to help.\\n\\nWhen your standard Tuesday morning involves planning and strategising around things like revenue growth, market share, data capture and analysis, customer journey mapping, user experience and brand performance, having an agency that is built for speed and delivery is a distinct advantage. Often our job is to help CMO’s turn their board/exec-approved long-term strategies into actionable short-term tactics. \\n\\nAfter all, what’s the point of having marketing ammunition if you don’t have the secret weapon to fire it off? \\n\\n<h5> We are your secret weapon </h5>\\nPart of our value to CMOs is bringing a level of experience and skillset that that is not always readily available within your internal team. Or managing projects that just aren’t suitable for your big agency of record. \\n\\nAs pressures and performance metrics come to bear, you want to rely on an agency who can be responsive and proactive as required. People who can turn around projects quickly and efficiently. Marketing specialists who understand how lead generation and revenue growth is a daily challenge, not a one-off campaign. \\n\\nFear not CMOs. We don’t just feel your pain. We share it. And it makes us all more committed and determined to find innovative and fit-for-purpose solutions for your business. \\n\\nFind out more about how we add a secret weapon to your agency roster by downloading a short guide here. [LINK TO B-TEAM BROCHURE].\\n\\nOr for a confidential chat, call Suzanne on 0413 875 806.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139112,142883,1,'The world of modern marketing','2022-11-03 05:33:11','2022-11-03 05:33:11','24443de2-d369-4df8-89d9-8bd4d0ae67bb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p80I0czk4W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<b> Being a Chief Marketing Officer (CMO) is a tough gig. We get that. You’ve got multiple accountabilities staring long and hard at you before you’ve even had your morning coffee. The days of set-and-forget media plans, generous marketing budgets and long lunches with your creative agency peeps are long gone. </b>\\n\\nThe pain points of CMOs are often remarkably similar across different industries and sectors. As an agency who works closely with many CMOs in diverse fields from healthcare to industrial lubricants, we witness first-hand the many modern pressures of commercial marketing. There are strategic plans to deliver, performance metrics to be measured and ROI to be rationalised.\\n\\n<h5> Diamonds form under pressure </h5> \\nSure, you’re in the hot seat but we just applaud the fact you’ve got a seat at the big table. Being part of the C-suite is not something professional marketers have always enjoyed. But in recent times, the importance and relevance of marketing as a function of business success has been elevated. Yes, that does come with an elevated set of expectations and pressures, but that’s why we’re here to help.\\n\\nWhen your standard Tuesday morning involves planning and strategising around things like revenue growth, market share, data capture and analysis, customer journey mapping, user experience and brand performance, having an agency that is built for speed and delivery is a distinct advantage. Often our job is to help CMO’s turn their board/exec-approved long-term strategies into actionable short-term tactics. \\n\\nAfter all, what’s the point of having marketing ammunition if you don’t have the secret weapon to fire it off? \\n\\n<h5> We are your secret weapon </h5>\\nPart of our value to CMOs is bringing a level of experience and skillset that that is not always readily available within your internal team. Or managing projects that just aren’t suitable for your big agency of record. \\n\\nAs pressures and performance metrics come to bear, you want to rely on an agency who can be responsive and proactive as required. People who can turn around projects quickly and efficiently. Marketing specialists who understand how lead generation and revenue growth is a daily challenge, not a one-off campaign. \\n\\nFear not CMOs. We don’t just feel your pain. We share it. And it makes us all more committed and determined to find innovative and fit-for-purpose solutions for your business. \\n\\nFind out more about how we add a secret weapon to your agency roster by downloading a short guide here. [LINK TO B-TEAM BROCHURE].\\n\\nOr for a confidential chat, call Suzanne on 0413 875 806.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139115,142886,1,'The world of modern marketing','2022-11-03 05:49:19','2022-11-03 05:49:19','d9ae146d-9623-4605-8279-11addfbd80a9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p80I0czk4W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<b> Being a Chief Marketing Officer (CMO) is a tough gig. We get that. You’ve got multiple accountabilities staring long and hard at you before you’ve even had your morning coffee. The days of set-and-forget media plans, generous marketing budgets and long lunches with your creative agency peeps are long gone. </b>\\n\\nThe pain points of CMOs are often remarkably similar across different industries and sectors. As an agency who works closely with many CMOs in diverse fields from healthcare to industrial lubricants, we witness first-hand the many modern pressures of commercial marketing. There are strategic plans to deliver, performance metrics to be measured and ROI to be rationalised.\\n\\n<h5> Diamonds form under pressure </h5> \\nSure, you’re in the hot seat but we just applaud the fact you’ve got a seat at the big table. Being part of the C-suite is not something professional marketers have always enjoyed. But in recent times, the importance and relevance of marketing as a function of business success has been elevated. Yes, that does come with an elevated set of expectations and pressures, but that’s why we’re here to help.\\n\\nWhen your standard Tuesday morning involves planning and strategising around things like revenue growth, market share, data capture and analysis, customer journey mapping, user experience and brand performance, having an agency that is built for speed and delivery is a distinct advantage. Often our job is to help CMO’s turn their board/exec-approved long-term strategies into actionable short-term tactics. \\n\\nAfter all, what’s the point of having marketing ammunition if you don’t have the secret weapon to fire it off? \\n\\n<h5> We are your secret weapon </h5>\\nPart of our value to CMOs is bringing a level of experience and skillset that that is not always readily available within your internal team. Or managing projects that just aren’t suitable for your big agency of record. \\n\\nAs pressures and performance metrics come to bear, you want to rely on an agency who can be responsive and proactive as required. People who can turn around projects quickly and efficiently. Marketing specialists who understand how lead generation and revenue growth is a daily challenge, not a one-off campaign. \\n\\nFear not CMOs. We don’t just feel your pain. We share it. And it makes us all more committed and determined to find innovative and fit-for-purpose solutions for your business. \\n\\nFind out more about how we add a secret weapon to your agency roster by downloading a short guide <a href=\\\"file:///Volumes/Workbook/Clients/NWO_New%20Word%20Order/NWO%20Jobs%202022/22_09%20B-Team%20player/PDF/22_09%20B-team%20player%201-5.pdf\\\">here</a>. \\n\\nOr for a confidential chat, call Suzanne on 0413 875 806.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139116,142887,1,'NWO secret weapon','2022-11-03 05:51:31','2022-11-03 05:51:31','ec6346ca-dfe8-426a-82e9-29a382cbded0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":[],\"originalImageWidth\":0,\"originalImageHeight\":0,\"placeholder\":null,\"placeholderSvg\":null,\"colorPalette\":[],\"lightness\":0,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139118,142889,1,'The world of modern marketing','2022-11-03 05:52:24','2022-11-03 05:52:24','8dceb67c-548e-415b-a7db-ad66fe439b2a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p80I0czk4W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<b> Being a Chief Marketing Officer (CMO) is a tough gig. We get that. You’ve got multiple accountabilities staring long and hard at you before you’ve even had your morning coffee. The days of set-and-forget media plans, generous marketing budgets and long lunches with your creative agency peeps are long gone. </b>\\n\\nThe pain points of CMOs are often remarkably similar across different industries and sectors. As an agency who works closely with many CMOs in diverse fields from healthcare to industrial lubricants, we witness first-hand the many modern pressures of commercial marketing. There are strategic plans to deliver, performance metrics to be measured and ROI to be rationalised.\\n\\n<h5> Diamonds form under pressure </h5> \\nSure, you’re in the hot seat but we just applaud the fact you’ve got a seat at the big table. Being part of the C-suite is not something professional marketers have always enjoyed. But in recent times, the importance and relevance of marketing as a function of business success has been elevated. Yes, that does come with an elevated set of expectations and pressures, but that’s why we’re here to help.\\n\\nWhen your standard Tuesday morning involves planning and strategising around things like revenue growth, market share, data capture and analysis, customer journey mapping, user experience and brand performance, having an agency that is built for speed and delivery is a distinct advantage. Often our job is to help CMO’s turn their board/exec-approved long-term strategies into actionable short-term tactics. \\n\\nAfter all, what’s the point of having marketing ammunition if you don’t have the secret weapon to fire it off? \\n\\n<h5> We are your secret weapon </h5>\\nPart of our value to CMOs is bringing a level of experience and skillset that that is not always readily available within your internal team. Or managing projects that just aren’t suitable for your big agency of record. \\n\\nAs pressures and performance metrics come to bear, you want to rely on an agency who can be responsive and proactive as required. People who can turn around projects quickly and efficiently. Marketing specialists who understand how lead generation and revenue growth is a daily challenge, not a one-off campaign. \\n\\nFear not CMOs. We don’t just feel your pain. We share it. And it makes us all more committed and determined to find innovative and fit-for-purpose solutions for your business. \\n\\nFind out more about how we add a secret weapon to your agency roster by downloading a short guide <a href=\\\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/NWO-secret-weapon.pdf\\\">here</a>. \\n\\nOr for a confidential chat, call Suzanne on 0413 875 806.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139120,142891,1,'The world of modern marketing','2022-11-03 05:52:48','2022-11-03 05:52:48','500809e4-608b-458d-b795-50fd50a4e5e2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p80I0czk4W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<b> Being a Chief Marketing Officer (CMO) is a tough gig. We get that. You’ve got multiple accountabilities staring long and hard at you before you’ve even had your morning coffee. The days of set-and-forget media plans, generous marketing budgets and long lunches with your creative agency peeps are long gone. </b>\\n\\nThe pain points of CMOs are often remarkably similar across different industries and sectors. As an agency who works closely with many CMOs in diverse fields from healthcare to industrial lubricants, we witness first-hand the many modern pressures of commercial marketing. There are strategic plans to deliver, performance metrics to be measured and ROI to be rationalised.\\n\\n<h5> Diamonds form under pressure </h5> \\nSure, you’re in the hot seat but we just applaud the fact you’ve got a seat at the big table. Being part of the C-suite is not something professional marketers have always enjoyed. But in recent times, the importance and relevance of marketing as a function of business success has been elevated. Yes, that does come with an elevated set of expectations and pressures, but that’s why we’re here to help.\\n\\nWhen your standard Tuesday morning involves planning and strategising around things like revenue growth, market share, data capture and analysis, customer journey mapping, user experience and brand performance, having an agency that is built for speed and delivery is a distinct advantage. Often our job is to help CMO’s turn their board/exec-approved long-term strategies into actionable short-term tactics. \\n\\nAfter all, what’s the point of having marketing ammunition if you don’t have the secret weapon to fire it off? \\n\\n<h5> We are your secret weapon </h5>\\nPart of our value to CMOs is bringing a level of experience and skillset that that is not always readily available within your internal team. Or managing projects that just aren’t suitable for your big agency of record. \\n\\nAs pressures and performance metrics come to bear, you want to rely on an agency who can be responsive and proactive as required. People who can turn around projects quickly and efficiently. Marketing specialists who understand how lead generation and revenue growth is a daily challenge, not a one-off campaign. \\n\\nFear not CMOs. We don’t just feel your pain. We share it. And it makes us all more committed and determined to find innovative and fit-for-purpose solutions for your business. \\n\\nFind out more about how we add a secret weapon to your agency roster by downloading a short guide <a href=\\\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/NWO-secret-weapon.pdf\\\">here</a>. \\n\\nOr for a confidential chat, call Suzanne on 0413 875 806.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139121,142892,1,'The world of modern marketing','2022-11-04 03:52:23','2022-11-04 03:52:23','d6d1b202-f3a3-4194-9f2e-345abbd4bec0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p80I0czk4W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<b> Being a Chief Marketing Officer (CMO) is a tough gig. We get that. You’ve got multiple accountabilities staring long and hard at you before you’ve even had your morning coffee. The days of set-and-forget media plans, generous marketing budgets and long lunches with your creative agency peeps are long gone. </b>\\n\\nThe pain points of CMOs are often remarkably similar across different industries and sectors. As an agency who works closely with many CMOs in diverse fields from healthcare to industrial lubricants, we witness first-hand the many modern pressures of commercial marketing. There are strategic plans to deliver, performance metrics to be measured and ROI to be rationalised.\\n\\n<h5> Diamonds form under pressure </h5> \\nSure, you’re in the hot seat but we just applaud the fact you’ve got a seat at the big table. Being part of the C-suite is not something professional marketers have always enjoyed. But in recent times, the importance and relevance of marketing as a function of business success has been elevated. Yes, that does come with an elevated set of expectations and pressures, but that’s why we’re here to help.\\n\\nWhen your standard Tuesday morning involves planning and strategising around things like revenue growth, market share, data capture and analysis, customer journey mapping, user experience and brand performance, having an agency that is built for speed and delivery is a distinct advantage. Often our job is to help CMO’s turn their board/exec-approved long-term strategies into actionable short-term tactics. \\n\\nAfter all, what’s the point of having marketing ammunition if you don’t have the secret weapon to fire it off? \\n\\n<h5> We are your secret weapon </h5>\\nPart of our value to CMOs is bringing a level of experience and skillset that that is not always readily available within your internal team. Or managing projects that just aren’t suitable for your big agency of record. \\n\\nAs pressures and performance metrics come to bear, you want to rely on an agency who can be responsive and proactive as required. People who can turn around projects quickly and efficiently. Marketing specialists who understand how lead generation and revenue growth is a daily challenge, not a one-off campaign. \\n\\nFear not CMOs. We don’t just feel your pain. We share it. And it makes us all more committed and determined to find innovative and fit-for-purpose solutions for your business. \\n\\nFind out more about how we add a secret weapon to your agency roster by downloading a short guide <a href=\\\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/NWO-secret-weapon.pdf\\\">here</a>. \\n\\nOr for a confidential chat, call Suzanne on 0413 875 806.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139123,142894,1,'The world of modern marketing','2022-11-04 03:53:18','2022-11-04 03:53:18','410edebd-c758-43ab-a731-5dbf8dc6619f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p80I0czk4W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<b> Being a Chief Marketing Officer (CMO) is a tough gig. We get that. You’ve got multiple accountabilities staring long and hard at you before you’ve even had your morning coffee. The days of set-and-forget media plans, generous marketing budgets and long lunches with your creative agency peeps are long gone. </b>\\n\\nThe pain points of CMOs are often remarkably similar across different industries and sectors. As an agency who works closely with many CMOs in diverse fields from healthcare to industrial lubricants, we witness first-hand the many modern pressures of commercial marketing. There are strategic plans to deliver, performance metrics to be measured and ROI to be rationalised.\\n\\n<h5> Diamonds form under pressure </h5> \\nSure, you’re in the hot seat but we just applaud the fact you’ve got a seat at the big table. Being part of the C-suite is not something professional marketers have always enjoyed. But in recent times, the importance and relevance of marketing as a function of business success has been elevated. Yes, that does come with an elevated set of expectations and pressures, but that’s why we’re here to help.\\n\\nWhen your standard Tuesday morning involves planning and strategising around things like revenue growth, market share, data capture and analysis, customer journey mapping, user experience and brand performance, having an agency that is built for speed and delivery is a distinct advantage. Often our job is to help CMO’s turn their board/exec-approved long-term strategies into actionable short-term tactics. \\n\\nAfter all, what’s the point of having marketing ammunition if you don’t have the secret weapon to fire it off? \\n\\n<h5> We are your secret weapon </h5>\\nPart of our value to CMOs is bringing a level of experience and skillset that that is not always readily available within your internal team. Or managing projects that just aren’t suitable for your big agency of record. \\n\\nAs pressures and performance metrics come to bear, you want to rely on an agency who can be responsive and proactive as required. People who can turn around projects quickly and efficiently. Marketing specialists who understand how lead generation and revenue growth is a daily challenge, not a one-off campaign. \\n\\nFear not CMOs. We don’t just feel your pain. We share it. And it makes us all more committed and determined to find innovative and fit-for-purpose solutions for your business. \\n\\nFind out more about how we add a secret weapon to your agency roster by downloading a short guide <a href=\\\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/NWO-secret-weapon.pdf\\\">here</a>. \\n\\nOr for a confidential chat, call Suzanne on 0413 875 806.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139125,142896,1,'Queensland Aboriginal and Islander Health Council','2022-11-04 04:01:06','2022-11-04 04:01:06','eca6281b-0e4e-490d-bb45-d30f90e03522',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Make the choice campaign',NULL,NULL,'It’s your choice. It’s safe. It’s free. It’s for your community. \nThese are the messages we gave Aboriginal and Torres Strait Islander communities with the MakeTheChoice campaign, encouraging more COVID-19 vaccinations.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cPOlqCaDq6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142802\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NDPW4J31bw\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We proudly worked with Queensland Aboriginal and Islander Health Council (QAIHC) to get this campaign and website out in the world in record time.\\n\\nQAIHC is a leadership and policy organisation representing all Aboriginal and Torres Strait Islander Community Controlled Health Organisations (ATSICCHO) in Queensland at both a state and national level.\\n\\nAt the core is QAIHC\'s vision is to eliminate the disparities in health and wellbeing experienced by Aboriginal and Torres Strait Islander peoples in Queensland.\\n\\nThe ‘Make the choice’ COVID-19 vaccine communications campaign was collaboration of QAIHC, Queensland Health, the Institute of Urban Indigenous Health and New Word Order.\\n\\nWe designed and developed a simple website to be a trusted source of information pertaining to the COVID-19 vaccination, specifically geared towards Aboriginal and Torres Strait Islander peoples.\\n\\n[Makethechoice.com.au](https://www.makethechoice.com.au/) is all about promoting self-determination by providing the right information to the right people at the right time. Communities know what is best for them.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JeZiVyMrHY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":null,\"plainText\":\"“New Word Order delivered a beautifully designed, culturally safe and user friendly COVID-19 vaccine website for First Nations people in Queensland.”\\n<b> —\\u0007Gert Geyer, Communications Officer, QAIHC </b>\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139127,142898,1,'The world of modern marketing','2022-11-04 04:05:05','2022-11-04 04:05:05','f36953be-25f1-49b2-b283-8328f106369a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p80I0czk4W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<b> Being a Chief Marketing Officer (CMO) is a tough gig. We get that. You’ve got multiple accountabilities staring long and hard at you before you’ve even had your morning coffee. The days of set-and-forget media plans, generous marketing budgets and long lunches with your creative agency peeps are long gone. </b>\\n\\nThe pain points of CMOs are often remarkably similar across different industries and sectors. As an agency who works closely with many CMOs in diverse fields from healthcare to industrial lubricants, we witness first-hand the many modern pressures of commercial marketing. There are strategic plans to deliver, performance metrics to be measured and ROI to be rationalised.\\n\\n<h5> Diamonds form under pressure </h5> \\nSure, you’re in the hot seat but we just applaud the fact you’ve got a seat at the big table. Being part of the C-suite is not something professional marketers have always enjoyed. But in recent times, the importance and relevance of marketing as a function of business success has been elevated. Yes, that does come with an elevated set of expectations and pressures, but that’s why we’re here to help.\\n\\nWhen your standard Tuesday morning involves planning and strategising around things like revenue growth, market share, data capture and analysis, customer journey mapping, user experience and brand performance, having an agency that is built for speed and delivery is a distinct advantage. Often our job is to help CMO’s turn their board/exec-approved long-term strategies into actionable short-term tactics. \\n\\nAfter all, what’s the point of having marketing ammunition if you don’t have the secret weapon to fire it off? \\n\\n<h5> We are your secret weapon </h5>\\nPart of our value to CMOs is bringing a level of experience and skillset that is not always readily available within your internal team. Or managing projects that just aren’t suitable for your big agency of record. \\n\\nAs pressures and performance metrics come to bear, you want to rely on an agency who can be responsive and proactive as required. People who can turn around projects quickly and efficiently. Marketing specialists who understand how lead generation and revenue growth is a daily challenge, not a one-off campaign. \\n\\nFear not CMOs. We don’t just feel your pain. We share it. And it makes us all more committed and determined to find innovative and fit-for-purpose solutions for your business. \\n\\nFind out more about how we add a secret weapon to your agency roster by downloading a short guide <a href=\\\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/NWO-secret-weapon.pdf\\\">here</a>. \\n\\nOr for a confidential chat, call Suzanne on 0413 875 806.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139128,142899,1,'The world of modern marketing','2022-11-04 04:08:35','2022-11-04 04:08:35','16124abe-7ea6-4ea4-a2e7-27415a275193',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p80I0czk4W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<b> Being a Chief Marketing Officer (CMO) is a tough gig. We get that. You have multiple accountabilities staring long and hard at you before you’ve even had your morning coffee. The days of set-and-forget media plans, generous marketing budgets and long lunches with your creative agency peeps are long gone. </b>\\n\\nThe pain points of CMOs are often remarkably similar across different industries and sectors. As an agency who works closely with many CMOs in diverse fields from healthcare to industrial lubricants, we witness first-hand the many modern pressures of commercial marketing. There are strategic plans to deliver, performance metrics to be measured and ROI to be rationalised.\\n\\n<h5> Diamonds form under pressure </h5>\\nSure, you’re in the hot seat but we just applaud the fact you have a seat at the big table. Professional marketers haven’t always been welcome in the C-suite. But in recent times, the importance and relevance of marketing as a function of business success has been elevated. Yes, that does come with an bigger set of expectations and pressures, but that’s why we’re here to help.\\n\\nWhen your standard Tuesday morning involves planning and strategising around things like revenue growth, market share, user experience and brand performance, having an agency that is built for speed and delivery is a distinct advantage. Often our job is to help CMOs turn their board/exec-approved long-term strategies into actionable short-term tactics. \\n\\nAfter all, what’s the point of having marketing ammunition if you don’t have the secret weapon to fire it? \\n\\n<h5> We are your secret weapon </h5>\\n\\nPart of our value to CMOs is bringing a level of experience and skillset that isn’t readily available within your internal team. Or managing projects that just aren’t suitable for your big agency of record. \\n\\nAs pressures and performance metrics come to bear, you want to rely on an agency who can be responsive and proactive as required. People who can turn around projects quickly and efficiently. Marketing specialists who understand how lead generation and revenue growth is a daily challenge, not a one-off campaign. \\n\\nFear not, CMOs. We don’t just feel your pain. We share it. And it makes us all the more committed and determined to find innovative and fit-for-purpose solutions for your business. \\n\\nFind out more about how we add a secret weapon to your agency roster by downloading a short guide <a href=“https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/NWO-secret-weapon.pdf”>here</a>.\\n\\nOr for a confidential chat, call Suzanne on 0413 875 806.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139129,142900,1,'The world of modern marketing','2022-11-04 04:08:42','2022-11-04 04:08:42','fcd6dbf2-2d2d-4c43-a440-7b952919c3c0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p80I0czk4W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<b> Being a Chief Marketing Officer (CMO) is a tough gig. We get that. You have multiple accountabilities staring long and hard at you before you’ve even had your morning coffee. The days of set-and-forget media plans, generous marketing budgets and long lunches with your creative agency peeps are long gone. </b>\\n\\nThe pain points of CMOs are often remarkably similar across different industries and sectors. As an agency who works closely with many CMOs in diverse fields from healthcare to industrial lubricants, we witness first-hand the many modern pressures of commercial marketing. There are strategic plans to deliver, performance metrics to be measured and ROI to be rationalised.\\n\\n<h5> Diamonds form under pressure </h5>\\nSure, you’re in the hot seat but we just applaud the fact you have a seat at the big table. Professional marketers haven’t always been welcome in the C-suite. But in recent times, the importance and relevance of marketing as a function of business success has been elevated. Yes, that does come with an bigger set of expectations and pressures, but that’s why we’re here to help.\\n\\nWhen your standard Tuesday morning involves planning and strategising around things like revenue growth, market share, user experience and brand performance, having an agency that is built for speed and delivery is a distinct advantage. Often our job is to help CMOs turn their board/exec-approved long-term strategies into actionable short-term tactics. \\n\\nAfter all, what’s the point of having marketing ammunition if you don’t have the secret weapon to fire it? \\n\\n<h5> We are your secret weapon </h5>\\n\\nPart of our value to CMOs is bringing a level of experience and skillset that isn’t readily available within your internal team. Or managing projects that just aren’t suitable for your big agency of record. \\n\\nAs pressures and performance metrics come to bear, you want to rely on an agency who can be responsive and proactive as required. People who can turn around projects quickly and efficiently. Marketing specialists who understand how lead generation and revenue growth is a daily challenge, not a one-off campaign. \\n\\nFear not, CMOs. We don’t just feel your pain. We share it. And it makes us all the more committed and determined to find innovative and fit-for-purpose solutions for your business. \\n\\nFind out more about how we add a secret weapon to your agency roster by downloading a short guide <a href=“https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/NWO-secret-weapon.pdf”>here</a>.\\n\\nOr for a confidential chat, call Suzanne on 0413 875 806.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139130,142901,1,'Funding','2022-11-07 04:09:01','2023-03-30 23:09:41','0bcf7025-9088-49b2-adb6-a01bf67051e6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Branding and awareness campaign',NULL,NULL,'Funding is an online financial services company specialising in the niche area of bridging loans. They came to New Word Order with a two-fold problem. Firstly, the category they operate in (bridging loans) wasn’t entirely understood by their target market and needed further clarification. Secondly, not enough people (or even industry brokers) knew the Funding brand at all and the beneficial products they offered. A cut-through campaign was needed, stat.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ziNtnsznO9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/765527128?h=5517b00b29&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Build a bridge - Funding.com.au TVC 30 second\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Zh7cVNx5Rl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The loan market as a whole is highly competitive and often dominated by rate comparisons and incentive offers. Bridging loans, however, are a slightly different beast. They\'re more about recognising different life circumstances and problem solving. Other short-term bridging loan specialists had emerged and launched strong brand campaigns. Our key challenge was to create a brand that focuses on solutions and creatively positions Funding among its competitor set as a short-term loan company with a difference.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BvMTRKtmI7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"In order to educate the market on when a bridging loan might be required and then provide differentiation for Funding, it became abundantly clear the campaign required a creative and catchy hook to drive interest and memorability. The strategic solution was to centre on a theme of ‘build a bridge’. This theme was seen to be positive and proactive, with language that borrowed from colloquial usage and even had humorous undertones. Strategically, it provided a strong platform and foundation to work on creatively and talk to the target audience in a very authentic way.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dA5dzfYeRH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143003\",\"143000\",\"142996\",\"142994\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvLNQH8ye2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The creative development process, as it always should, started with a strong consideration of the target audience. Knowing that a lot of the target market were parents, we decided to let the innocent wisdom of children shine through by delivering the ‘build a bridge’ solution. Children can turn the complex into simple through thought and action, which is exactly what we showed in this campaign—the drawing of a bridge from one home to another, which created a visual hook. The viewer is drawn in by the surprising nature of the child explaining the product in just a few words, and then left with a smile as she demonstrates it in permanent marker.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fL4MPWaBk1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The first rule of advertising is to get noticed, which this campaign achieves by not looking like a bank or finance ad. The impact of the campaign is created through pure relevancy, showing real family people in real situations. The messaging is loud and clear and helped to educate the market on the nature of short-term bridging loan options and drive traffic to the Funding site.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Funding | Branding and awareness campaign','Funding is an online financial services company specialising in the niche area of bridging loans. They came to New Word Order with a two-fold problem. Firstly, the category they operate in (bridging loans) wasn’t entirely understood by their target market and needed further clarification. Secondly, not enough people (or even industry brokers) knew the Funding brand at all and the beneficial products they offered. A cut-through campaign was needed, stat.','funding, brokers, money, loans, advertising, campaign, tv, video',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139131,142902,1,'Funding','2022-11-07 04:54:31','2022-11-07 04:54:31','181bc07b-62e5-40d7-8f5e-7a8ef19434fd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Branding and awareness campaign',NULL,NULL,'Funding is an online financial services company specialising in the niche area of bridging loans. They came to New Word Order with a two-fold problem. Firstly, the category they operate in (bridging loans) wasn’t entirely understood by their target market and needed further clarification. Secondly, not enough people (or even industry brokers) knew the Funding brand at all and the beneficial products they offered. A cut-through campaign was needed, stat.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Zh7cVNx5Rl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The loan market as a whole is highly competitive and often dominated by rate comparisons and incentive offers. Bridging loans, however, are a slightly different beast in that they are more about recognising different life circumstances and problem solving. Other short-term bridging loan specialists had emerged and launched strong brand campaigns. Therefore, the key challenge was to create a brand that focuses on solutions and creatively positions Funding among its competitor set as a short-term loan company with a difference.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BvMTRKtmI7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"In order to educate the market on when a bridging loan might be required and then provide differentiation for Funding, it became abundantly clear that the campaign required a creative and catchy hook to drive interest and memorability. The strategic solution was to centre on a theme of ‘build a bridge’. This theme was seen to be positive and proactive, with language that borrowed from colloquial usage and even had humorous undertones. Strategically, it provided a strong platform and foundation to work on creatively and talk to the target audience in a very authentic way.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvLNQH8ye2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The creative development process, as it always should, started with a strong consideration of the target audience. Knowing that a lot of the target market were parents, we decided to let the innocent wisdom of children shine through by delivering the ‘build a bridge’ solution. Children can turn the complex into simple through thought and action, which is exactly what we showed in this campaign—the drawing of a bridge from one home to another, which created a visual hook. The viewer is drawn in by the surprising nature of the child explaining the product in just a few words, and then left with a smile as she demonstrates it in permanent marker.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fL4MPWaBk1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The first rule of advertising is to get noticed, which this campaign achieves by not looking like a bank or finance ad. The impact of the campaign is created through pure relevancy, showing real family people in real situations. The messaging is loud and clear and helped to educate the market on the nature of short-term bridging loan options and drive traffic to the Funding site.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139133,142904,1,'Funding','2022-11-07 04:58:19','2022-11-07 04:58:19','dd1e7fbb-b53a-4b98-b625-a7534b69a022',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Branding and awareness campaign',NULL,NULL,'Funding is an online financial services company specialising in the niche area of bridging loans. They came to New Word Order with a two-fold problem. Firstly, the category they operate in (bridging loans) wasn’t entirely understood by their target market and needed further clarification. Secondly, not enough people (or even industry brokers) knew the Funding brand at all and the beneficial products they offered. A cut-through campaign was needed, stat.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ziNtnsznO9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/765527128?h=5517b00b29&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Build a bridge - Funding.com.au TVC 30 second\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Zh7cVNx5Rl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The loan market as a whole is highly competitive and often dominated by rate comparisons and incentive offers. Bridging loans, however, are a slightly different beast in that they are more about recognising different life circumstances and problem solving. Other short-term bridging loan specialists had emerged and launched strong brand campaigns. Therefore, the key challenge was to create a brand that focuses on solutions and creatively positions Funding among its competitor set as a short-term loan company with a difference.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BvMTRKtmI7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"In order to educate the market on when a bridging loan might be required and then provide differentiation for Funding, it became abundantly clear that the campaign required a creative and catchy hook to drive interest and memorability. The strategic solution was to centre on a theme of ‘build a bridge’. This theme was seen to be positive and proactive, with language that borrowed from colloquial usage and even had humorous undertones. Strategically, it provided a strong platform and foundation to work on creatively and talk to the target audience in a very authentic way.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvLNQH8ye2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The creative development process, as it always should, started with a strong consideration of the target audience. Knowing that a lot of the target market were parents, we decided to let the innocent wisdom of children shine through by delivering the ‘build a bridge’ solution. Children can turn the complex into simple through thought and action, which is exactly what we showed in this campaign—the drawing of a bridge from one home to another, which created a visual hook. The viewer is drawn in by the surprising nature of the child explaining the product in just a few words, and then left with a smile as she demonstrates it in permanent marker.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fL4MPWaBk1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The first rule of advertising is to get noticed, which this campaign achieves by not looking like a bank or finance ad. The impact of the campaign is created through pure relevancy, showing real family people in real situations. The messaging is loud and clear and helped to educate the market on the nature of short-term bridging loan options and drive traffic to the Funding site.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139135,142906,1,'Funding','2022-11-07 04:58:50','2022-11-07 04:58:50','46e696d6-1bf8-4a5a-9e8e-f9168917ae5a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Branding and awareness campaign',NULL,NULL,'Funding is an online financial services company specialising in the niche area of bridging loans. They came to New Word Order with a two-fold problem. Firstly, the category they operate in (bridging loans) wasn’t entirely understood by their target market and needed further clarification. Secondly, not enough people (or even industry brokers) knew the Funding brand at all and the beneficial products they offered. A cut-through campaign was needed, stat.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ziNtnsznO9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/765527128?h=5517b00b29&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Build a bridge - Funding.com.au TVC 30 second\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Zh7cVNx5Rl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The loan market as a whole is highly competitive and often dominated by rate comparisons and incentive offers. Bridging loans, however, are a slightly different beast in that they are more about recognising different life circumstances and problem solving. Other short-term bridging loan specialists had emerged and launched strong brand campaigns. Therefore, the key challenge was to create a brand that focuses on solutions and creatively positions Funding among its competitor set as a short-term loan company with a difference.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BvMTRKtmI7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"In order to educate the market on when a bridging loan might be required and then provide differentiation for Funding, it became abundantly clear that the campaign required a creative and catchy hook to drive interest and memorability. The strategic solution was to centre on a theme of ‘build a bridge’. This theme was seen to be positive and proactive, with language that borrowed from colloquial usage and even had humorous undertones. Strategically, it provided a strong platform and foundation to work on creatively and talk to the target audience in a very authentic way.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvLNQH8ye2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The creative development process, as it always should, started with a strong consideration of the target audience. Knowing that a lot of the target market were parents, we decided to let the innocent wisdom of children shine through by delivering the ‘build a bridge’ solution. Children can turn the complex into simple through thought and action, which is exactly what we showed in this campaign—the drawing of a bridge from one home to another, which created a visual hook. The viewer is drawn in by the surprising nature of the child explaining the product in just a few words, and then left with a smile as she demonstrates it in permanent marker.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fL4MPWaBk1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The first rule of advertising is to get noticed, which this campaign achieves by not looking like a bank or finance ad. The impact of the campaign is created through pure relevancy, showing real family people in real situations. The messaging is loud and clear and helped to educate the market on the nature of short-term bridging loan options and drive traffic to the Funding site.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139137,142908,1,'Let us introduce ourselves','2022-11-07 05:01:35','2022-11-07 05:01:35','2bcf19a9-3b03-41a0-a61c-cf4788c930e3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and the Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EHGcch1Nd8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141527\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139139,142910,1,'Let us introduce ourselves','2022-11-07 05:01:52','2022-11-07 05:01:52','3d9f913b-d162-46e0-9ffd-c4703452daf5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and the Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EHGcch1Nd8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141527\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139140,142911,1,'163 A4511','2022-11-07 05:02:56','2022-11-18 05:55:00','a58b3722-daca-4ae6-a1a0-966f2dee5297',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/163A4511.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/163A4511.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/163A4511.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/163A4511.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/163A4511.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/163A4511.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/163A4511.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/163A4511.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/163A4511.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/163A4511.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/163A4511.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/163A4511.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/163A4511.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/163A4511.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/163A4511.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/163A4511.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"3072\":2048,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":6720,\"originalImageHeight\":4480,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAQIEBf/EACIQAAIBBAIBBQAAAAAAAAAAAAECEQADBAUhMRIVNUFhcf/EABcBAAMBAAAAAAAAAAAAAAAAAAECAwT/xAAcEQACAgMBAQAAAAAAAAAAAAAAAQIRAzEyIUH/2gAMAwEAAhEDEQA/ADqGvrlm3fXyZJDMvJPHzQcXtse18NDSuMm+RkGY5QsIMz1UpY6Y92rJ9d71+oSfvqrZOqEjyNrVX1XIXxEAtAjrk1GejQvEf//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#c6b6ac\",\"#492c2d\",\"#8c5e35\",\"#4d5d8f\",\"#856564\"],\"lightness\":46,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139142,142913,1,'Funding','2022-11-07 05:06:23','2022-11-07 05:06:23','5bbc2028-47d0-4ebe-994a-2c21de603e59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Branding and awareness campaign',NULL,NULL,'Funding is an online financial services company specialising in the niche area of bridging loans. They came to New Word Order with a two-fold problem. Firstly, the category they operate in (bridging loans) wasn’t entirely understood by their target market and needed further clarification. Secondly, not enough people (or even industry brokers) knew the Funding brand at all and the beneficial products they offered. A cut-through campaign was needed, stat.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ziNtnsznO9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/765527128?h=5517b00b29&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Build a bridge - Funding.com.au TVC 30 second\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Zh7cVNx5Rl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The loan market as a whole is highly competitive and often dominated by rate comparisons and incentive offers. Bridging loans, however, are a slightly different beast in that they are more about recognising different life circumstances and problem solving. Other short-term bridging loan specialists had emerged and launched strong brand campaigns. Therefore, the key challenge was to create a brand that focuses on solutions and creatively positions Funding among its competitor set as a short-term loan company with a difference.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BvMTRKtmI7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"In order to educate the market on when a bridging loan might be required and then provide differentiation for Funding, it became abundantly clear that the campaign required a creative and catchy hook to drive interest and memorability. The strategic solution was to centre on a theme of ‘build a bridge’. This theme was seen to be positive and proactive, with language that borrowed from colloquial usage and even had humorous undertones. Strategically, it provided a strong platform and foundation to work on creatively and talk to the target audience in a very authentic way.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvLNQH8ye2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The creative development process, as it always should, started with a strong consideration of the target audience. Knowing that a lot of the target market were parents, we decided to let the innocent wisdom of children shine through by delivering the ‘build a bridge’ solution. Children can turn the complex into simple through thought and action, which is exactly what we showed in this campaign—the drawing of a bridge from one home to another, which created a visual hook. The viewer is drawn in by the surprising nature of the child explaining the product in just a few words, and then left with a smile as she demonstrates it in permanent marker.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fL4MPWaBk1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The first rule of advertising is to get noticed, which this campaign achieves by not looking like a bank or finance ad. The impact of the campaign is created through pure relevancy, showing real family people in real situations. The messaging is loud and clear and helped to educate the market on the nature of short-term bridging loan options and drive traffic to the Funding site.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139143,142914,1,'Funding','2022-11-07 05:18:15','2022-11-07 05:18:15','8ea0a09a-151d-40d7-9859-5e8f5537259b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Branding and awareness campaign',NULL,NULL,'Funding is an online financial services company specialising in the niche area of bridging loans. They came to New Word Order with a two-fold problem. Firstly, the category they operate in (bridging loans) wasn’t entirely understood by their target market and needed further clarification. Secondly, not enough people (or even industry brokers) knew the Funding brand at all and the beneficial products they offered. A cut-through campaign was needed, stat.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ziNtnsznO9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/765527128?h=5517b00b29&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Build a bridge - Funding.com.au TVC 30 second\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Zh7cVNx5Rl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The loan market as a whole is highly competitive and often dominated by rate comparisons and incentive offers. Bridging loans, however, are a slightly different beast in that they are more about recognising different life circumstances and problem solving. Other short-term bridging loan specialists had emerged and launched strong brand campaigns. Therefore, the key challenge was to create a brand that focuses on solutions and creatively positions Funding among its competitor set as a short-term loan company with a difference.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BvMTRKtmI7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"In order to educate the market on when a bridging loan might be required and then provide differentiation for Funding, it became abundantly clear that the campaign required a creative and catchy hook to drive interest and memorability. The strategic solution was to centre on a theme of ‘build a bridge’. This theme was seen to be positive and proactive, with language that borrowed from colloquial usage and even had humorous undertones. Strategically, it provided a strong platform and foundation to work on creatively and talk to the target audience in a very authentic way.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvLNQH8ye2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The creative development process, as it always should, started with a strong consideration of the target audience. Knowing that a lot of the target market were parents, we decided to let the innocent wisdom of children shine through by delivering the ‘build a bridge’ solution. Children can turn the complex into simple through thought and action, which is exactly what we showed in this campaign—the drawing of a bridge from one home to another, which created a visual hook. The viewer is drawn in by the surprising nature of the child explaining the product in just a few words, and then left with a smile as she demonstrates it in permanent marker.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fL4MPWaBk1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The first rule of advertising is to get noticed, which this campaign achieves by not looking like a bank or finance ad. The impact of the campaign is created through pure relevancy, showing real family people in real situations. The messaging is loud and clear and helped to educate the market on the nature of short-term bridging loan options and drive traffic to the Funding site.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139145,142916,1,'Let us introduce ourselves','2022-11-07 05:22:37','2022-11-07 05:22:37','40108729-58f1-49ba-bcb6-7dac9d5f9f1a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and the Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lwRZRhzi23\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EHGcch1Nd8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141527\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139146,142917,1,'Let us introduce ourselves','2022-11-07 05:23:32','2022-11-07 05:23:40','14a851aa-785c-4f65-92d3-2d8378d6435a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and the Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lwRZRhzi23\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EHGcch1Nd8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141527\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139148,142919,1,'Let us introduce ourselves','2022-11-07 05:23:50','2022-11-07 05:23:50','9f83b7bc-21af-4c45-8f8b-850c0bfb4792',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and the Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lwRZRhzi23\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EHGcch1Nd8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141527\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139150,142921,1,'Let us introduce ourselves','2022-11-07 05:24:05','2022-11-07 05:24:05','d70977f6-adaf-4f55-8903-ef4014b09f4d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and the Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lwRZRhzi23\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EHGcch1Nd8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141527\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139152,142923,1,'The world of modern marketing','2022-11-08 02:58:40','2022-11-08 02:58:40','001ed68a-008e-4b84-955b-7a14874c1951',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p80I0czk4W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<b> Being a Chief Marketing Officer (CMO) is a tough gig. We get that. You have multiple accountabilities staring long and hard at you before you’ve even had your morning coffee. The days of set-and-forget media plans, generous marketing budgets and long lunches with your creative agency peeps are long gone. </b>\\n\\nThe pain points of CMOs are often remarkably similar across different industries and sectors. As an agency who works closely with many CMOs in diverse fields from healthcare to industrial lubricants, we witness first-hand the many modern pressures of commercial marketing. There are strategic plans to deliver, performance metrics to be measured and ROI to be rationalised.\\n\\n<h5> Diamonds form under pressure </h5>\\nSure, you’re in the hot seat but we just applaud the fact you have a seat at the big table. Professional marketers haven’t always been welcome in the C-suite. But in recent times, the importance and relevance of marketing as a function of business success has been elevated. Yes, that does come with an bigger set of expectations and pressures, but that’s why we’re here to help.\\n\\nWhen your standard Tuesday morning involves planning and strategising around things like revenue growth, market share, user experience and brand performance, having an agency that is built for speed and delivery is a distinct advantage. Often our job is to help CMOs turn their board/exec-approved long-term strategies into actionable short-term tactics. \\n\\nAfter all, what’s the point of having marketing ammunition if you don’t have the secret weapon to fire it? \\n\\n<h5> We are your secret weapon </h5>\\n\\nPart of our value to CMOs is bringing a level of experience and skillset that isn’t readily available within your internal team. Or managing projects that just aren’t suitable for your big agency of record. \\n\\nAs pressures and performance metrics come to bear, you want to rely on an agency who can be responsive and proactive as required. People who can turn around projects quickly and efficiently. Marketing specialists who understand how lead generation and revenue growth is a daily challenge, not a one-off campaign. \\n\\nFear not, CMOs. We don’t just feel your pain. We share it. And it makes us all the more committed and determined to find innovative and fit-for-purpose solutions for your business. \\n\\nFind out more about how we add a secret weapon to your agency roster by downloading a short guide <a href=https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/NWO-secret-weapon.pdf>here</a>.\\n\\nOr for a confidential chat, call Suzanne on 0413 875 806.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139153,142924,1,'Nwo email christmas 22 2','2022-11-09 06:43:54','2022-12-01 07:10:53','fbbd65ad-a285-4934-9cb7-f7cdbbf9de1d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x384_crop_center-center_82_line/nwo-email-christmas-22-2.png\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x320_crop_center-center_82_line/nwo-email-christmas-22-2.png\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x256_crop_center-center_82_line/nwo-email-christmas-22-2.png\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x192_crop_center-center_82_line/nwo-email-christmas-22-2.png\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x160_crop_center-center_82_line/nwo-email-christmas-22-2.png\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x384_crop_center-center_82_line/nwo-email-christmas-22-2.png.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x320_crop_center-center_82_line/nwo-email-christmas-22-2.png.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x256_crop_center-center_82_line/nwo-email-christmas-22-2.png.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x192_crop_center-center_82_line/nwo-email-christmas-22-2.png.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x160_crop_center-center_82_line/nwo-email-christmas-22-2.png.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":384,\"1280\":320,\"1024\":256,\"768\":192,\"640\":160},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":2000,\"originalImageHeight\":500,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAEABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAAUG/8QAHBAAAgIDAQEAAAAAAAAAAAAAAQIAEQMEITPR/8QAFAEBAAAAAAAAAAAAAAAAAAAAAf/EABYRAQEBAAAAAAAAAAAAAAAAAAABMf/aAAwDAQACEQMRAD8Au6uomTEGbLsWeezfZoUUIiqLoCum4iEwR//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#191819\",\"#e1cac5\",\"#48c38b\",\"#fa6254\",\"#848484\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139155,142926,1,'Email sigs','2022-11-09 06:45:17','2022-11-09 06:45:17','a1fd547a-8985-4a4b-a868-a9185ac968af',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"113\" src=\"{asset:74279:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/email-sig.gif}\" alt=\"New Word Order\" /></a></figure>\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"100\" src=\"{asset:142869:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/nwo-email-christmas-22-2.png}\" alt=\"Merry Christmas\" /></a>\n</figure>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139158,142929,1,'Email sigs','2022-11-09 06:47:05','2022-11-09 06:47:05','89abb6d2-da0b-491a-9528-fd495bbe8117',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"113\" src=\"{asset:74279:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/email-sig.gif}\" alt=\"New Word Order\" /></a></figure>\n\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"100\" src=\"{asset:142924:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/nwo-email-christmas-22-2.png}\" alt=\"Merry Christmas\" /></a></figure>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139160,142931,1,'Let us introduce ourselves','2022-11-10 00:21:24','2022-11-10 00:21:24','9b6db07a-22d9-4211-903f-b8f22adaa501',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CYlWxVLWd4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Liam\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We thought we hired an award-winning advertising copywriter. But we ended up with so much more: a ska band ex-roadie, an optimistic golfer and a brave, crustacean-battling chef. Now that’s value.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wZCcn69t8v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CCjcrDQfKO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Liam was born and raised in Brisbane but escaped the oppressive heat to live in London and Hong Kong (and then found it again in Guam) for seven years.\\n\\nNow back in his hometown, he carries with him the secrets of journey well travelled—from paying his way through uni as a roadie for ska band The Furious Turtles, to winning Australian and international advertising and production copywriting awards throughout his career. \\n\\nWe’re sure we can thank his time on the road—classified, but imaginably riddled with life-altering stories—for the effortless creativity we extract out of Liam day to day. Second to that, maybe also his time at industry-renowned AWARD School.\\n\\nSpeaking of formative experiences, Liam’s gruff exterior was carefully constructed back in his boarding school days, when he was an easy target as the only soft city kid among a sea of tough country kids. \\n\\nHe quickly discovered that no amount of skiing holidays or golfing hole-in-ones (current tally: zero from 50,000 attempts) could win the respect of teenage bogans. A lesson in humility for Liam, perhaps—we’ve all been there at some point. \\n\\nDespite his otherwise bourgeois-sounding life where the (golfing) green is grasser, Liam actually knows all about the importance of sacrifice. \\n\\nAfter all, he cooks his famous garlic prawns every year for family Christmas (and last year for NWO Christmas) despite his drastic, ironic and tragic crustacean allergy. When he defeats the prawns, they defeat him right back.\\n\\nYou can actually cook the dish yourself following his not-so-secret recipe  <a href=\\\"https://newwordorder.com.au/lp/christmas-2021\\\">here.</a> It’s delicious—you can’t take Liam’s word for it, of course, but you can take ours.\\n\\nHe has cooking all locked down, but he’ll be the first to tell you cleaning isn’t his area of expertise. We can’t have everything. No reason to fret, though—isn’t that what kids are for? And he’s got four of them, so he’s very good at delegating.\\n\\nA couple residents in his household live it lush and chore-free, though: his 50kg Irish Wolfhound, Luna, and his 8kg Cavoodle, Rusty. In fact, they’ve delegated to Liam the chore of walking them every morning. \\n\\nThose gorgeous dogs are part of what we love about Liam, along with his dry sense of humour, his endless creative expertise and his penchant for telling a good story—whether it’s through an ad script, or just a weekend anecdote.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and the Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lwRZRhzi23\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EHGcch1Nd8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141527\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139162,142933,1,'Let us introduce ourselves','2022-11-10 00:21:46','2022-11-10 00:21:46','1209deb2-01dc-430c-b81c-b5668b9fbad4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CYlWxVLWd4\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Liam\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We thought we hired an award-winning advertising copywriter. But we ended up with so much more: a ska band ex-roadie, an optimistic golfer and a brave, crustacean-battling chef. Now that’s value.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wZCcn69t8v\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CCjcrDQfKO\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Liam was born and raised in Brisbane but escaped the oppressive heat to live in London and Hong Kong (and then found it again in Guam) for seven years.\\n\\nNow back in his hometown, he carries with him the secrets of journey well travelled—from paying his way through uni as a roadie for ska band The Furious Turtles, to winning Australian and international advertising and production copywriting awards throughout his career. \\n\\nWe’re sure we can thank his time on the road—classified, but imaginably riddled with life-altering stories—for the effortless creativity we extract out of Liam day to day. Second to that, maybe also his time at industry-renowned AWARD School.\\n\\nSpeaking of formative experiences, Liam’s gruff exterior was carefully constructed back in his boarding school days, when he was an easy target as the only soft city kid among a sea of tough country kids. \\n\\nHe quickly discovered that no amount of skiing holidays or golfing hole-in-ones (current tally: zero from 50,000 attempts) could win the respect of teenage bogans. A lesson in humility for Liam, perhaps—we’ve all been there at some point. \\n\\nDespite his otherwise bourgeois-sounding life where the (golfing) green is grasser, Liam actually knows all about the importance of sacrifice. \\n\\nAfter all, he cooks his famous garlic prawns every year for family Christmas (and last year for NWO Christmas) despite his drastic, ironic and tragic crustacean allergy. When he defeats the prawns, they defeat him right back.\\n\\nYou can actually cook the dish yourself following his not-so-secret recipe  <a href=\\\"https://newwordorder.com.au/lp/christmas-2021\\\">here.</a> It’s delicious—you can’t take Liam’s word for it, of course, but you can take ours.\\n\\nHe has cooking all locked down, but he’ll be the first to tell you cleaning isn’t his area of expertise. We can’t have everything. No reason to fret, though—isn’t that what kids are for? And he’s got four of them, so he’s very good at delegating.\\n\\nA couple residents in his household live it lush and chore-free, though: his 50kg Irish Wolfhound, Luna, and his 8kg Cavoodle, Rusty. In fact, they’ve delegated to Liam the chore of walking them every morning. \\n\\nThose gorgeous dogs are part of what we love about Liam, along with his dry sense of humour, his endless creative expertise and his penchant for telling a good story—whether it’s through an ad script, or just a weekend anecdote.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and the Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lwRZRhzi23\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EHGcch1Nd8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141527\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139164,142935,1,'22 11 Meet Liam','2022-11-11 00:38:16','2022-11-11 00:38:16','a4aa96b1-fa99-4ea3-ba2c-08e434dc32be',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/22_11-Meet-Liam.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x3072_crop_center-center_82_line/22_11-Meet-Liam.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/22_11-Meet-Liam.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2560_crop_center-center_82_line/22_11-Meet-Liam.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/22_11-Meet-Liam.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2048_crop_center-center_82_line/22_11-Meet-Liam.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/22_11-Meet-Liam.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/22_11-Meet-Liam.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/22_11-Meet-Liam.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x3072_crop_center-center_82_line/22_11-Meet-Liam.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/22_11-Meet-Liam.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2560_crop_center-center_82_line/22_11-Meet-Liam.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/22_11-Meet-Liam.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2048_crop_center-center_82_line/22_11-Meet-Liam.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/22_11-Meet-Liam.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/22_11-Meet-Liam.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"3072\":3072,\"1280\":1280,\"2560\":2560,\"1024\":1024,\"2048\":2048,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":5208,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAgMEBv/EAB8QAAIBBAIDAAAAAAAAAAAAAAEDAgAEESEFEhMxsf/EABcBAAMBAAAAAAAAAAAAAAAAAAABAwT/xAAaEQEAAwADAAAAAAAAAAAAAAABAAIRAyFB/9oADAMBAAIRAxEAPwCZvJELMoxjo6zGs9TuWqnsM3IdLMSuMTvBiPtJMic2ZrkXubdSgx/bxnAwdVp46GSSsXx7WKvVxVPJYeu/W6L1EyAz/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#282724\",\"#c0a983\",\"#867553\",\"#a09767\",\"#948484\"],\"lightness\":41,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139165,142936,1,'Let us introduce ourselves','2022-11-11 00:38:25','2022-11-11 00:38:25','34c2bea9-d77d-4876-997b-66a7c4e3380a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CYlWxVLWd4\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Liam\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We thought we hired an award-winning advertising copywriter. But we ended up with so much more: a ska band ex-roadie, an optimistic golfer and a brave, crustacean-battling chef. Now that’s value.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wZCcn69t8v\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142935\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CCjcrDQfKO\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Liam was born and raised in Brisbane but escaped the oppressive heat to live in London and Hong Kong (and then found it again in Guam) for seven years.\\n\\nNow back in his hometown, he carries with him the secrets of journey well travelled—from paying his way through uni as a roadie for ska band The Furious Turtles, to winning Australian and international advertising and production copywriting awards throughout his career. \\n\\nWe’re sure we can thank his time on the road—classified, but imaginably riddled with life-altering stories—for the effortless creativity we extract out of Liam day to day. Second to that, maybe also his time at industry-renowned AWARD School.\\n\\nSpeaking of formative experiences, Liam’s gruff exterior was carefully constructed back in his boarding school days, when he was an easy target as the only soft city kid among a sea of tough country kids. \\n\\nHe quickly discovered that no amount of skiing holidays or golfing hole-in-ones (current tally: zero from 50,000 attempts) could win the respect of teenage bogans. A lesson in humility for Liam, perhaps—we’ve all been there at some point. \\n\\nDespite his otherwise bourgeois-sounding life where the (golfing) green is grasser, Liam actually knows all about the importance of sacrifice. \\n\\nAfter all, he cooks his famous garlic prawns every year for family Christmas (and last year for NWO Christmas) despite his drastic, ironic and tragic crustacean allergy. When he defeats the prawns, they defeat him right back.\\n\\nYou can actually cook the dish yourself following his not-so-secret recipe  <a href=\\\"https://newwordorder.com.au/lp/christmas-2021\\\">here.</a> It’s delicious—you can’t take Liam’s word for it, of course, but you can take ours.\\n\\nHe has cooking all locked down, but he’ll be the first to tell you cleaning isn’t his area of expertise. We can’t have everything. No reason to fret, though—isn’t that what kids are for? And he’s got four of them, so he’s very good at delegating.\\n\\nA couple residents in his household live it lush and chore-free, though: his 50kg Irish Wolfhound, Luna, and his 8kg Cavoodle, Rusty. In fact, they’ve delegated to Liam the chore of walking them every morning. \\n\\nThose gorgeous dogs are part of what we love about Liam, along with his dry sense of humour, his endless creative expertise and his penchant for telling a good story—whether it’s through an ad script, or just a weekend anecdote.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and the Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lwRZRhzi23\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EHGcch1Nd8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141527\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139168,142939,1,'22 11 Meet Liam 2','2022-11-11 00:41:16','2022-11-11 00:41:16','a6462d0c-f571-4f84-8e42-309eb5055fa4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x768_crop_center-center_82_line/22_11-Meet-Liam-2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1536_crop_center-center_82_line/22_11-Meet-Liam-2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x640_crop_center-center_82_line/22_11-Meet-Liam-2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1280_crop_center-center_82_line/22_11-Meet-Liam-2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x512_crop_center-center_82_line/22_11-Meet-Liam-2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1024_crop_center-center_82_line/22_11-Meet-Liam-2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x384_crop_center-center_82_line/22_11-Meet-Liam-2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x320_crop_center-center_82_line/22_11-Meet-Liam-2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x768_crop_center-center_82_line/22_11-Meet-Liam-2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1536_crop_center-center_82_line/22_11-Meet-Liam-2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x640_crop_center-center_82_line/22_11-Meet-Liam-2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1280_crop_center-center_82_line/22_11-Meet-Liam-2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x512_crop_center-center_82_line/22_11-Meet-Liam-2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1024_crop_center-center_82_line/22_11-Meet-Liam-2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x384_crop_center-center_82_line/22_11-Meet-Liam-2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x320_crop_center-center_82_line/22_11-Meet-Liam-2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"3072\":1536,\"1280\":640,\"2560\":1280,\"1024\":512,\"2048\":1024,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":2604,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAIABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAAX/xAAdEAACAgMAAwAAAAAAAAAAAAABAgQRAAMGIVGB/8QAFgEBAQEAAAAAAAAAAAAAAAAAAAEC/8QAGBEBAAMBAAAAAAAAAAAAAAAAAQACERL/2gAMAwEAAhEDEQA/AKfeTWhaYrJdsWAr5mWvSSlsjg5xna5jspDKVB837wV5YXZ//9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#312f29\",\"#cbb695\",\"#94815b\",\"#a9a57f\",\"#949494\"],\"lightness\":45,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `content` VALUES (139169,142940,1,'Let us introduce ourselves','2022-11-11 00:41:23','2022-11-11 00:41:23','821ef656-ad9e-4421-b92f-ac5993aa3c97',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CYlWxVLWd4\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Liam\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We thought we hired an award-winning advertising copywriter. But we ended up with so much more: a ska band ex-roadie, an optimistic golfer and a brave, crustacean-battling chef. Now that’s value.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wZCcn69t8v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142939\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CCjcrDQfKO\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Liam was born and raised in Brisbane but escaped the oppressive heat to live in London and Hong Kong (and then found it again in Guam) for seven years.\\n\\nNow back in his hometown, he carries with him the secrets of journey well travelled—from paying his way through uni as a roadie for ska band The Furious Turtles, to winning Australian and international advertising and production copywriting awards throughout his career. \\n\\nWe’re sure we can thank his time on the road—classified, but imaginably riddled with life-altering stories—for the effortless creativity we extract out of Liam day to day. Second to that, maybe also his time at industry-renowned AWARD School.\\n\\nSpeaking of formative experiences, Liam’s gruff exterior was carefully constructed back in his boarding school days, when he was an easy target as the only soft city kid among a sea of tough country kids. \\n\\nHe quickly discovered that no amount of skiing holidays or golfing hole-in-ones (current tally: zero from 50,000 attempts) could win the respect of teenage bogans. A lesson in humility for Liam, perhaps—we’ve all been there at some point. \\n\\nDespite his otherwise bourgeois-sounding life where the (golfing) green is grasser, Liam actually knows all about the importance of sacrifice. \\n\\nAfter all, he cooks his famous garlic prawns every year for family Christmas (and last year for NWO Christmas) despite his drastic, ironic and tragic crustacean allergy. When he defeats the prawns, they defeat him right back.\\n\\nYou can actually cook the dish yourself following his not-so-secret recipe  <a href=\\\"https://newwordorder.com.au/lp/christmas-2021\\\">here.</a> It’s delicious—you can’t take Liam’s word for it, of course, but you can take ours.\\n\\nHe has cooking all locked down, but he’ll be the first to tell you cleaning isn’t his area of expertise. We can’t have everything. No reason to fret, though—isn’t that what kids are for? And he’s got four of them, so he’s very good at delegating.\\n\\nA couple residents in his household live it lush and chore-free, though: his 50kg Irish Wolfhound, Luna, and his 8kg Cavoodle, Rusty. In fact, they’ve delegated to Liam the chore of walking them every morning. \\n\\nThose gorgeous dogs are part of what we love about Liam, along with his dry sense of humour, his endless creative expertise and his penchant for telling a good story—whether it’s through an ad script, or just a weekend anecdote.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and the Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lwRZRhzi23\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EHGcch1Nd8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141527\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139171,142942,1,'Let us introduce ourselves','2022-11-11 00:43:21','2022-11-11 00:43:21','66063b0e-d2ef-4442-991f-4d10bcee6d5a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CYlWxVLWd4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Liam\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We thought we hired an award-winning advertising copywriter. But we ended up with so much more: a ska band ex-roadie, an optimistic golfer and a brave, crustacean-battling chef. Now that’s value.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wZCcn69t8v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142939\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CCjcrDQfKO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Liam was born and raised in Brisbane but escaped the oppressive heat to live in London and Hong Kong (and then found it again in Guam) for seven years.\\n\\nNow back in his hometown, he carries with him the secrets of journey well travelled—from paying his way through uni as a roadie for ska band The Furious Turtles, to winning Australian and international advertising and production copywriting awards throughout his career. \\n\\nWe’re sure we can thank his time on the road—classified, but imaginably riddled with life-altering stories—for the effortless creativity we extract out of Liam day to day. Second to that, maybe also his time at industry-renowned AWARD School.\\n\\nSpeaking of formative experiences, Liam’s gruff exterior was carefully constructed back in his boarding school days, when he was an easy target as the only soft city kid among a sea of tough country kids. \\n\\nHe quickly discovered that no amount of skiing holidays or golfing hole-in-ones (current tally: zero from 50,000 attempts) could win the respect of teenage bogans. A lesson in humility for Liam, perhaps—we’ve all been there at some point. \\n\\nDespite his otherwise bourgeois-sounding life where the (golfing) green is grasser, Liam actually knows all about the importance of sacrifice. \\n\\nAfter all, he cooks his famous garlic prawns every year for family Christmas (and last year for NWO Christmas) despite his drastic, ironic and tragic crustacean allergy. When he defeats the prawns, they defeat him right back.\\n\\nYou can actually cook the dish yourself following his not-so-secret recipe  <a href=\\\"https://newwordorder.com.au/lp/christmas-2021\\\">here.</a> It’s delicious—you can’t take Liam’s word for it, of course, but you can take ours.\\n\\nHe has cooking all locked down, but he’ll be the first to tell you cleaning isn’t his area of expertise. We can’t have everything. No reason to fret, though—isn’t that what kids are for? And he’s got four of them, so he’s very good at delegating.\\n\\nA couple residents in his household live it lush and chore-free, though: his 50kg Irish Wolfhound, Luna, and his 8kg Cavoodle, Rusty. In fact, they’ve delegated to Liam the chore of walking them every morning. \\n\\nThose gorgeous dogs are part of what we love about Liam, along with his dry sense of humour, his endless creative expertise and his penchant for telling a good story—whether it’s through an ad script, or just a weekend anecdote.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and the Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lwRZRhzi23\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EHGcch1Nd8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141527\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139173,142944,1,'About us','2022-11-11 01:19:58','2022-11-11 01:19:58','58000aab-4ece-4d35-bd73-1bb716a10e26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17881\",\"17934\",\"17887\",\"30433\",\"17921\",\"97259\",\"141616\",\"141642\",\"142716\",\"142039\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | About us','For 20 years we have helped businesses, organisations and governments to solve problems, unlock potential and connect with people to inspire action.','strategy, brand, campaign, behaviour change, engagement, digital, video, content',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139175,142946,1,'About us','2022-11-11 01:21:36','2022-11-11 01:21:36','50680d27-2441-4eec-b0bd-5543eacdca25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17881\",\"17934\",\"17887\",\"30433\",\"17921\",\"97259\",\"141616\",\"141642\",\"142039\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | About us','For 20 years we have helped businesses, organisations and governments to solve problems, unlock potential and connect with people to inspire action.','strategy, brand, campaign, behaviour change, engagement, digital, video, content',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139178,142954,1,'NWO’s library','2022-11-15 05:38:30','2022-11-15 05:38:30','8481f571-094f-4cd5-a480-f223120bdcc0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142764\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### October picks\\n\\n<h6> Bruce’s pick </h6> \\n<b>Book title: </b> A Night Without Stars\\n<b>Author: </b> Peter F Hamilton \\nFind it <a href=\\\"https://www.goodreads.com/book/show/28439513-a-night-without-stars\\\"> here </a>\\n\\n<h6> Bree\'s pick </h6> \\n<b>Book title: </b> The Seven Husbands of Evelyn Hugo\\n<b>Author: </b> Taylor Jenkins Reid\\nFind it <a href=\\\"https://www.goodreads.com/book/show/32620332-the-seven-husbands-of-evelyn-hugo\\\"> here </a>\\n\\n<h6> Kimi\'s pick </h6> \\n<b>Book title: </b> Losing Face\\n<b>Author: </b> George Haddad\\nFind it <a href=\\\"https://www.goodreads.com/book/show/60752357-losing-face\\\"> here </a>\\n\\n<h6> Jo\'s pick </h6> \\n<b>Book title: </b> The Testaments\\n<b>Author: </b> Margaret Atwood\\nFind it <a href=\\\"https://www.goodreads.com/book/show/42975172-the-testaments\\\"> here </a>\\n\\n<h6> Suz\'s pick </h6> \\n<b>Book title: </b> The Bookseller at the End of the World\\n<b>Author: </b> Ruth Shaw\\nFind it <a href=\\\"https://www.goodreads.com/book/show/60296308-the-bookseller-at-the-end-of-the-world\\\"> here </a>\\n\\n<br> </br>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-07dTHE4QTY\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142764\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### October picks\\n\\n* <a href=\\\"https://www.goodreads.com/book/show/28439513-a-night-without-stars\\\"> A Night Without Stars by Peter F Hamilton </a> \\n* <a href=\\\"https://www.goodreads.com/book/show/32620332-the-seven-husbands-of-evelyn-hugo\\\"> The Seven Husbands of Evelyn Hugo by Taylor Jenkins Reid</a>\\n* <a href=\\\"https://www.goodreads.com/book/show/60752357-losing-face\\\"> Losing Face by George Haddad </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/42975172-the-testaments\\\"> The Testaments by Margaret Atwood </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/60296308-the-bookseller-at-the-end-of-the-world\\\"> The Bookseller at the End of the World by Ruth Shaw </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8Zua9e4kWu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142595\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### September picks\\n\\n* <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> Taste: My Life Through Food by Stanley Tucci </a> \\n* <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> A Little Life by Hanya Yanagihara </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/37558445-boy-swallows-universe\\\"> Boy Swallows Universe by Trent Dalton </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> Johnno by David Malouf </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> Growing up Queer in Australia by Benjamin Law </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> Bullet Train by Kotaro Isaka </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> A Promised Land by Barack Obama </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> The Life by Malcolm Knox </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/11468377-thinking-fast-and-slow\\\"> Thinking, Fast and Slow by Daniel Kahneman </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> Hunt, Gather, Parent by Michaeleen Doucleff </a> \\n* <a href=\\\"https://www.goodreads.com/en/book/show/30762074\\\"> Odd Dog Out by Rob Bidulph </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tAgWmP7qVi\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NWO’s library','Taste: My Life Through Food by Stanley Tucci ... A Little Life by Hanya Yanagihara ... Johnno by David Malouf ... Growing up Queer in Australia by Benjamin Law ... Bullet Train by Kotaro Isaka ... A Promised Land by Barack Obama ... The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan ... The Life by Malcolm Knox',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139181,142957,1,'Funding','2022-11-16 03:44:31','2022-11-16 03:44:31','5ecaa2df-20fb-417b-b80c-a5075b6cca5c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Branding and awareness campaign',NULL,NULL,'Funding is an online financial services company specialising in the niche area of bridging loans. They came to New Word Order with a two-fold problem. Firstly, the category they operate in (bridging loans) wasn’t entirely understood by their target market and needed further clarification. Secondly, not enough people (or even industry brokers) knew the Funding brand at all and the beneficial products they offered. A cut-through campaign was needed, stat.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ziNtnsznO9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/765527128?h=5517b00b29&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Build a bridge - Funding.com.au TVC 30 second\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Zh7cVNx5Rl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The loan market as a whole is highly competitive and often dominated by rate comparisons and incentive offers. Bridging loans, however, are a slightly different beast in that they are more about recognising different life circumstances and problem solving. Other short-term bridging loan specialists had emerged and launched strong brand campaigns. Therefore, the key challenge was to create a brand that focuses on solutions and creatively positions Funding among its competitor set as a short-term loan company with a difference.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BvMTRKtmI7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"In order to educate the market on when a bridging loan might be required and then provide differentiation for Funding, it became abundantly clear that the campaign required a creative and catchy hook to drive interest and memorability. The strategic solution was to centre on a theme of ‘build a bridge’. This theme was seen to be positive and proactive, with language that borrowed from colloquial usage and even had humorous undertones. Strategically, it provided a strong platform and foundation to work on creatively and talk to the target audience in a very authentic way.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvLNQH8ye2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The creative development process, as it always should, started with a strong consideration of the target audience. Knowing that a lot of the target market were parents, we decided to let the innocent wisdom of children shine through by delivering the ‘build a bridge’ solution. Children can turn the complex into simple through thought and action, which is exactly what we showed in this campaign—the drawing of a bridge from one home to another, which created a visual hook. The viewer is drawn in by the surprising nature of the child explaining the product in just a few words, and then left with a smile as she demonstrates it in permanent marker.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fL4MPWaBk1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The first rule of advertising is to get noticed, which this campaign achieves by not looking like a bank or finance ad. The impact of the campaign is created through pure relevancy, showing real family people in real situations. The messaging is loud and clear and helped to educate the market on the nature of short-term bridging loan options and drive traffic to the Funding site.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'funding, brokers, money, loans, advertising, campaign, tv, video',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139182,142958,1,'The world of modern marketing','2022-11-16 03:48:54','2022-11-16 03:48:54','3f33ba06-56c8-49b4-8f5d-fab625ee4f4e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p80I0czk4W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<b> Being a chief marketing (CMO) is a tough gig. We get that. You have multiple accountabilities staring long and hard at you before you’ve even had your morning coffee. The days of set-and-forget media plans, generous marketing budgets and long lunches with your creative agency peeps are long gone. </b>\\n\\nThe pain points of CMOs are often remarkably similar across different industries and sectors. As an agency who works closely with many CMOs in diverse fields from healthcare to industrial lubricants, we witness first-hand the many modern pressures of commercial marketing. There are strategic plans to deliver, performance metrics to be measured and ROI to be rationalised.\\n\\n<h5> Diamonds form under pressure </h5>\\nSure, you’re in the hot seat but we just applaud the fact you have a seat at the big table. Professional marketers haven’t always been welcome in the C-suite. But in recent times, the importance and relevance of marketing as a function of business success has been elevated. Yes, that does come with an bigger set of expectations and pressures, but that’s why we’re here to help.\\n\\nWhen your standard Tuesday morning involves planning and strategising around things like revenue growth, market share, user experience and brand performance, having an agency that is built for speed and delivery is a distinct advantage. Often our job is to help CMOs turn their board/exec-approved long-term strategies into actionable short-term tactics. \\n\\nAfter all, what’s the point of having marketing ammunition if you don’t have the secret weapon to fire it? \\n\\n<h5> We are your secret weapon </h5>\\n\\nPart of our value to CMOs is bringing a level of experience and skillset that isn’t readily available within your internal team. Or managing projects that just aren’t suitable for your big agency of record. \\n\\nAs pressures and performance metrics come to bear, you want to rely on an agency who can be responsive and proactive as required. People who can turn around projects quickly and efficiently. Marketing specialists who understand how lead generation and revenue growth is a daily challenge, not a one-off campaign. \\n\\nFear not, CMOs. We don’t just feel your pain. We share it. And it makes us all the more committed and determined to find innovative and fit-for-purpose solutions for your business. \\n\\nFind out more about how we add a secret weapon to your agency roster by downloading a short guide <a href=https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/NWO-secret-weapon.pdf>here</a>.\\n\\nOr for a confidential chat, call Suzanne on 0413 875 806.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139184,142960,1,'Funding','2022-11-16 22:13:39','2022-11-16 22:13:39','508b8989-7035-4be1-9b74-3a69b3bd2a6f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Branding and awareness campaign',NULL,NULL,'Funding is an online financial services company specialising in the niche area of bridging loans. They came to New Word Order with a two-fold problem. Firstly, the category they operate in (bridging loans) wasn’t entirely understood by their target market and needed further clarification. Secondly, not enough people (or even industry brokers) knew the Funding brand at all and the beneficial products they offered. A cut-through campaign was needed, stat.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ziNtnsznO9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/765527128?h=5517b00b29&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Build a bridge - Funding.com.au TVC 30 second\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Zh7cVNx5Rl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The loan market as a whole is highly competitive and often dominated by rate comparisons and incentive offers. Bridging loans, however, are a slightly different beast in that they are more about recognising different life circumstances and problem solving. Other short-term bridging loan specialists had emerged and launched strong brand campaigns. Therefore, the key challenge was to create a brand that focuses on solutions and creatively positions Funding among its competitor set as a short-term loan company with a difference.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BvMTRKtmI7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"In order to educate the market on when a bridging loan might be required and then provide differentiation for Funding, it became abundantly clear that the campaign required a creative and catchy hook to drive interest and memorability. The strategic solution was to centre on a theme of ‘build a bridge’. This theme was seen to be positive and proactive, with language that borrowed from colloquial usage and even had humorous undertones. Strategically, it provided a strong platform and foundation to work on creatively and talk to the target audience in a very authentic way.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvLNQH8ye2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The creative development process, as it always should, started with a strong consideration of the target audience. Knowing that a lot of the target market were parents, we decided to let the innocent wisdom of children shine through by delivering the ‘build a bridge’ solution. Children can turn the complex into simple through thought and action, which is exactly what we showed in this campaign—the drawing of a bridge from one home to another, which created a visual hook. The viewer is drawn in by the surprising nature of the child explaining the product in just a few words, and then left with a smile as she demonstrates it in permanent marker.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fL4MPWaBk1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The first rule of advertising is to get noticed, which this campaign achieves by not looking like a bank or finance ad. The impact of the campaign is created through pure relevancy, showing real family people in real situations. The messaging is loud and clear and helped to educate the market on the nature of short-term bridging loan options and drive traffic to the Funding site.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'funding, brokers, money, loans, advertising, campaign, tv, video',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139186,142962,1,'Funding','2022-11-16 22:15:23','2022-11-16 22:15:23','2d04b61c-32a2-44a7-83f6-0291e8245145',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Branding and awareness campaign',NULL,NULL,'Funding is an online financial services company specialising in the niche area of bridging loans. They came to New Word Order with a two-fold problem. Firstly, the category they operate in (bridging loans) wasn’t entirely understood by their target market and needed further clarification. Secondly, not enough people (or even industry brokers) knew the Funding brand at all and the beneficial products they offered. A cut-through campaign was needed, stat.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ziNtnsznO9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/765527128?h=5517b00b29&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Build a bridge - Funding.com.au TVC 30 second\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Zh7cVNx5Rl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The loan market as a whole is highly competitive and often dominated by rate comparisons and incentive offers. Bridging loans, however, are a slightly different beast in that they are more about recognising different life circumstances and problem solving. Other short-term bridging loan specialists had emerged and launched strong brand campaigns. Therefore, the key challenge was to create a brand that focuses on solutions and creatively positions Funding among its competitor set as a short-term loan company with a difference.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BvMTRKtmI7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"In order to educate the market on when a bridging loan might be required and then provide differentiation for Funding, it became abundantly clear that the campaign required a creative and catchy hook to drive interest and memorability. The strategic solution was to centre on a theme of ‘build a bridge’. This theme was seen to be positive and proactive, with language that borrowed from colloquial usage and even had humorous undertones. Strategically, it provided a strong platform and foundation to work on creatively and talk to the target audience in a very authentic way.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvLNQH8ye2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The creative development process, as it always should, started with a strong consideration of the target audience. Knowing that a lot of the target market were parents, we decided to let the innocent wisdom of children shine through by delivering the ‘build a bridge’ solution. Children can turn the complex into simple through thought and action, which is exactly what we showed in this campaign—the drawing of a bridge from one home to another, which created a visual hook. The viewer is drawn in by the surprising nature of the child explaining the product in just a few words, and then left with a smile as she demonstrates it in permanent marker.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fL4MPWaBk1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The first rule of advertising is to get noticed, which this campaign achieves by not looking like a bank or finance ad. The impact of the campaign is created through pure relevancy, showing real family people in real situations. The messaging is loud and clear and helped to educate the market on the nature of short-term bridging loan options and drive traffic to the Funding site.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Funding | Branding and awareness campaign','Funding is an online financial services company specialising in the niche area of bridging loans. They came to New Word Order with a two-fold problem. Firstly, the category they operate in (bridging loans) wasn’t entirely understood by their target market and needed further clarification. Secondly, not enough people (or even industry brokers) knew the Funding brand at all and the beneficial products they offered. A cut-through campaign was needed, stat.','funding, brokers, money, loans, advertising, campaign, tv, video',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139188,142964,1,'Queensland Hydro','2022-11-16 22:16:13','2022-11-16 22:16:13','74fa2576-bf06-4d34-9950-47801eb07b19',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Powering Queensland’s future',NULL,NULL,'Queensland has some ambitious goals for a clean energy future: 50 per cent renewable energy by 2030 and zero net emissions by 2050. Pumped hydro is the key to achieving this, and the state government is facilitating pumped hydro through a new subsidiary brand. We helped build the brand for Queensland Hydro on a strategic, evidence-based foundation to set it up for a successful journey of powering Queensland’s future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MJwz0wrwkL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142807\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RCifzof72P\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The Queensland Government needed to establish a subsidiary entity to carry the planning and transmission connection work for potential pumped hydro projects across Queensland. Our creation of the brand for Queensland Hydro involved extensive discovery prior to crafting a brand identity, designing marketing collateral, and copywriting, designing and developing a website.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fdid0P67Ag\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142816\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As we often do, we began this project with a comprehensive discovery phase. This involved a review of Queensland Hydro’s contemporaries and competitive landscape, consultation with a First Nations advisor on theming and language, and stakeholder workshops to clarify the brand personality, purpose and objectives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5o9yXWhZxU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our deliverables included a brand name, logo, visual identity, collateral, key messaging and content for the website. We kept the design fresh and engaging while accommodating the needs of the various stakeholders involved.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvkuSRS5qb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142702\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fjwEEvmBHp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Queensland Hydro will be a vital component in reaching Australia’s aspirational energy goals over the next few decades. Pumped hydro is at the centre of cleaning up Queensland’s energy, and we were delighted to play a role in bringing Queensland Hydro to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2XRuH2soQj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142813\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Queensland Hydro | Powering Queensland\'s future','Queensland has some ambitious goals for a clean energy future: 50 per cent renewable energy by 2030 and zero net emissions by 2050. Pumped hydro is the key to achieving this, and the state government is facilitating pumped hydro through a new subsidiary brand. We helped build the brand for Queensland Hydro on a strategic, evidence-based foundation to set it up for a successful journey of powering Queensland’s future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139190,142966,1,'Residential Tenancies Authority','2022-11-16 22:16:43','2022-11-16 22:16:43','868f5d32-f413-4d83-967b-4a7931d9b8b6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Illustrating tenancy law changes',NULL,NULL,'We all know tenancy can be complicated, from any side of the relationship. So the Residential Tenancies Authority (RTA) has introduced new laws to give tenants, landlords and property managers more certainty and transparency around their tenancy arrangements. We helped the RTA produce four animated videos to serve as friendly reminders about the law changes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bc8O0czLTg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028657?h=758f0e7169&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Ending a tenancy\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SUpdyGgoHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The RTA needed to inform the public about rental reform changes coming into effect on 1 October 2022. With such a broad audience—renters, landlords and property managers—the RTA needed an explanatory tool that relayed the information in an easily digestible, engaging and inclusive way.\\nA collection of animated explainer videos was the obvious choice.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-chZ81DIc8w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028691?h=ca954eece2&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Renting with pets\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PLy32UQvPs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The videos needed a friendly, informative tone that connected with a vast range of people. We broke the videos down into sections that addressed each of the three key audiences individually—renters, then landlords, then property managers. The audiences were represented by a diverse and inclusive suite of illustrated characters.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oGsU7M7NF2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028774?h=8eb9622a43&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Summary\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oQ8wJZ93RN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Illustration was the real standout for this project. Our illustrative style helped us depict the emotion and shared experience of renting from all sides of the tenancy relationship. The animation represented various age groups, ethnicities and occupations.\\nThe law changes are explained by friendly, engaging voiceovers that guide the videos.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YFRHfSDQGW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028736?h=a48681755c&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Repair order\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-sfiAs0GFwT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It was a pleasure to work with the team at RTA to help inform Queenslanders about the new changes to renting laws. The RTA has worked hard to make sure renting is fair for all and it was a joy to be part of bringing this to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Residential Tenancies Authority | Illustrating tenancy law changes','We all know tenancy can be complicated, from any side of the relationship. So the Residential Tenancies Authority (RTA) has introduced new laws to give tenants, landlords and property managers more certainty and transparency around their tenancy arrangements. We helped the RTA produce four animated videos to serve as friendly reminders about the law changes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139191,142967,1,'Urban Utilities','2022-11-16 22:16:59','2022-11-16 22:16:59','320e38ad-c21c-400c-bd1a-0de3705bba87',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EKKA activation',NULL,NULL,'Urban Utilities (UU) knows how important water is to our future, so they’re working hard to protect it. They need Queenslanders to care about water security, too. An EKKA display was the perfect way to engage with the community and remind them just how vital water is to their day-to-day life. With brightly coloured videos, graphics and illustrations arranged meticulously in a creative display, we helped UU remind people about their connections with water.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DrXALPWSBT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141998\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DxF20Yq1PE\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:100% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/739527258?h=882d5c0119&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"uu_ekka_-_vertical_screens (Original)\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oonbweG5hq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"UU identified the EKKA as an opportunity to engage, inform and educate their customers to build a deeper understanding of water security, and to set the stage for UU to influence water restrictions down the track.\\nThrough hands-on activities and immersive visual displays, the EKKA was the perfect place to connect with UU’s communities and reassure them that UU is a safe pair of hands that holds and shapes the future of water security.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1kDHeWuzrh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950657?h=2534af59fd&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"AV 1 GRID COMBINE 03 SIDE 01\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KIDD88kVSZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950688?h=d7032fa1fb&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"AV 1 GRID COMBINE 03 SIDE 02\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3OqKknGGDL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Thematically, this activation was centred around each individual’s connection with water. Through making people conscious of water’s impact on their day-to-day life, we helped them discover how essential water security is and appreciate the role UU plays in protecting our water supply—and ultimately, the lifestyles and livelihoods of Queenslanders.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ovoFZRL7or\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141946\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lTaGbDU5Lj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The goal of the EKKA display was three-fold: attract people to the space, engage them to participate and ensure they absorb the key messaging.\\nWe were working with an eight-metre-wide screen, so we determined pretty quickly that one very (very!) landscape video wouldn’t be the best viewing experience. So we did what we do best: We got creative. We fashioned a collage of videos with various illustrated key messages, live action footage and graphic patterns that loop and combine into an engaging, eight-metre video experience.\\nThe audience were able to contribute their personal connection with water through sketches and scribbles on magnetic tiles. Each tile was fixed to the wall to create a crowdsourced water mosaic that grew over the course of the EKKA, telling true stories of water memories and moments.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RfRSpmcchL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950797?h=70d6f4f8b8&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"UU Component video 03\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950835?h=dc404ebf2f&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"UU Component video 04\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JPYArnyhMD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141947\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-J2iJEncoXv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950768?h=bc2c007c2c&badge=0&autopause=0&player_id=0&app_id=58479/embed\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen frameborder=\\\"0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\"></iframe></div>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950743?h=698f98e314&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"UU Component video 01\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ez0JB2esSl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141948\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Bright colours, custom illustration, lots of movement and bold statements—that’s the sweet combination we concocted to communicate some very important key messages to the audience.\\nAnd the icing on top of the strawberry sundae? We just had so much fun coming up with the concept and bringing it to life. The EKKA public holiday didn’t hurt, either.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Urban Utilities EKKA activation','Urban Utilities (UU) knows how important water is to our future, so they’re working hard to protect it. They need Queenslanders to care about water security, too. An EKKA display was the perfect way to engage with the community and remind them just how vital water is to their day-to-day life. With brightly coloured videos, graphics and illustrations arranged meticulously in a creative display, we helped UU remind people about their connections with water.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139192,142968,1,'Ramsay Health Care','2022-11-16 22:17:08','2022-11-16 22:17:08','0c0cfb01-cab5-4159-8ec4-809cc6581875',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Weekend Warrior campaign',NULL,NULL,'We work so hard through the week, we deserve to play hard over the weekend. When we find ourselves reliving our glory days through social sport or using our house reno as a creative and active outlet—sometimes it can be at the risk of our safety. Ramsay Health Care knows accidents happen, and they asked us to help them showcase how their holistic orthopaedic care services get Weekend Warriors back on their feet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141736\",\"141670\",\"141671\",\"141672\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDjAdefp2G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Ramsay Health Care asked us to help develop a campaign to promote their orthopaedic services across their network of hospitals. The campaign served to educate the target market on what makes Ramsay’s orthopaedic offerings special, while also calling them to check whether their health insurance covers Ramsay hospitals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BWwvmn3pwX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141745\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using Ramsay’s target market of orthopaedic patients in their 40s and 50s, we created the ‘weekend warrior’ characters: everyday people who take on their alter ego when the working week is over. The social sports star who pushes themself to go for that bicycle kick or elaborate jump pass. The reno kings and queens who love Bunnings outings and would never pay someone else to do work around the house that they could do themselves.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ynJgqMQCET\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s an ocean of campaigns out there from medical brands that all look the same—clinical and serious. Ramsay stepped outside of the same-same and opted for more lively, exaggerated shots of Weekend Warriors in action, being injured and seeking care from a Ramsay hospital.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141741\",\"141742\",\"141743\",\"141744\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FF7V2IzNlc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With fresh, exciting and relatable action shots complemented by copy that captures the work-hard-play-hard lifestyle, our campaign for Ramsay cut through to the market with personality and an element of surprise.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Ramsay Health Care','Weekend Warrior campaign',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139194,142970,1,'Surf Life Saving Queensland','2022-11-16 22:17:35','2022-11-16 22:17:35','ff69a459-58bc-40de-ad29-a4f789f2e393',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let’s be SharkSmart!',NULL,NULL,'There’s no need to be scared of sharks—we just need to be smart.\nAnd learning is what kids do best, so we created an interactive, educational game for Surf Life Saving Queensland to teach primary-school-age kids how they should behave around sharks.\nWe had a whale of a time on this project, so let’s jump right in!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SUpdyGgoHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Surf Life Saving Queensland and the Department of Agriculture and Fisheries are promoting ‘SharkSmart’ messages to primary-school-aged children in a 12-month educational program. They asked us to develop an interactive game that educates kids about sharks and the simple things they can do at the beach to stay safe from shark-related incidents.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PLy32UQvPs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Kids are typically more interested in sharks than afraid of them, so we wanted to nurture that by making the game educational and fun, rather than fear based. Armed with our behaviour change expertise, we empowered them with knowledge about how sharks behave—such as their feeding times, where they live and how they hunt—so the kids can make smart choices. We consulted with primary school teachers to develop the game’s tone and language, ensuring it was as age-appropriate and engaging as possible.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oQ8wJZ93RN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There are so many ways to approach SharkSmart behaviours, so we created not one game, but two mini games with three modes. \\n\\nThe first game—Beach Explorer—is an open-world exploration game, set on a beach. There are items scattered across the beach—like flags, water debris and rips—that prompt questions related to SharkSmart behaviours. If the player answers correctly, they’re rewarded with a beach badge. This game is split into two modes: explorer mode and race mode.\\n\\nThe second game—Which Shark Are You?—asks the players questions about their preferences and human experiences that relate to the behaviours of tiger, bull, white and hammerhead sharks. Based on their responses, each player is assigned one of the four shark types and provided information about that shark. \\nThe whole project is elevated by NWO’s trademark custom illustration and animation—which really brings the beach to life!\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-sfiAs0GFwT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We really blew this brief out of the water: for a limited budget, we built two games from scratch, complete with a catchy custom theme song. \\nProjects like these—fun and engaging but with real purpose—are why we get out of bed every morning. The whole process from conception to delivery was really collaborative with the clients, and that definitely shows in the final product.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Surf Life Saving Queensland | Let\'s be SharkSmart!','There’s no need to be scared of sharks—we just need to be smart. And learning is what kids do best, so we created an interactive, educational game for Surf Life Saving Queensland to teach primary-school-age kids how they should behave around sharks. We had a whale of a time on this project, so let’s jump right in!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139196,142972,1,'Department of Justice and Attorney-General','2022-11-16 22:18:05','2022-11-16 22:18:05','a930bac6-3cbe-4704-a3bd-0cbf3390e536',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'New regulatory strategy campaign',NULL,NULL,'The Office of Liquor and Gaming Regulation (OLGR) had done the hard yards of developing, building and creating a new strategy to meet the modern demands of the industry they oversee. But communicating their strategy to a range of diverse industry stakeholders was seen as one of the most critical steps in achieving their strategic goals. They needed clarity, understanding and buy-in. Enter New Word Order.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7SDJ7AE1Hq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"One of the key challenges for OLGR is managing the dual roles of being the industry regulator and minimising harm along with responsibilities for promoting the growth and development of the liquor and gaming industry. From a strategic communication perspective, this added extra complexity to requirements for stakeholder engagement. New Word Order was able to provide insightful analysis to help communicate the strategy in a clearer fashion, connecting organisational objectives with customer benefits.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Pvd7qvkzCt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142834\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-zTtYdXJlj7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The strategy behind the campaign centred on heightening the value of the relationship and partnership between OLGR and their industry stakeholders. Creating a stronger sense of community and collaboration was the platform used to inform and shape the campaign. We worked closely with the client team and industry stakeholders to articulate the goals of linking safe and responsible liquor and gaming environments and minimising harm with a vibrant industry future.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-c7mft0SfI7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142836\",\"142835\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The creative challenge revolved around communicating a long-term governmental strategy while avoiding bureaucratic overreach. Fresh language and design were the tools used to create informational cut-through and connect with the target audiences. Language and copy was simplified and made more direct. A colourful and freeform visual design concept, not traditionally associated with government work, was used to signal a fresh start. This visual approach was dynamically used across video animations, presentation materials, documentation and more.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-raKnAjdncg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142837\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vZY7GyvZuJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Pubs, clubs, and liquor and gaming licensees can be a tough crowd to impress but this campaign has resonated strongly due to its use of simple and clear messaging and innovative visual look. The primary goals of education and information is an ongoing process but the campaign has launched strongly.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Department of Justice and Attorney-General | New regulatory strategy campaign','The Office of Liquor and Gaming Regulation (OLGR) had done the hard yards of developing, building and creating a new strategy to meet the modern demands of the industry they oversee. But communicating their strategy to a range of diverse industry stakeholders was seen as one of the most critical steps in achieving their strategic goals. They needed clarity, understanding and buy-in. Enter New Word Order.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139197,142973,1,'Funding','2022-11-16 22:18:54','2022-11-16 22:18:54','8a9a4642-2937-4a74-a966-d264ad389ebb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Branding and awareness campaign',NULL,NULL,'Funding is an online financial services company specialising in the niche area of bridging loans. They came to New Word Order with a two-fold problem. Firstly, the category they operate in (bridging loans) wasn’t entirely understood by their target market and needed further clarification. Secondly, not enough people (or even industry brokers) knew the Funding brand at all and the beneficial products they offered. A cut-through campaign was needed, stat.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ziNtnsznO9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/765527128?h=5517b00b29&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Build a bridge - Funding.com.au TVC 30 second\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Zh7cVNx5Rl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The loan market as a whole is highly competitive and often dominated by rate comparisons and incentive offers. Bridging loans, however, are a slightly different beast in that they are more about recognising different life circumstances and problem solving. Other short-term bridging loan specialists had emerged and launched strong brand campaigns. Therefore, the key challenge was to create a brand that focuses on solutions and creatively positions Funding among its competitor set as a short-term loan company with a difference.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BvMTRKtmI7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"In order to educate the market on when a bridging loan might be required and then provide differentiation for Funding, it became abundantly clear that the campaign required a creative and catchy hook to drive interest and memorability. The strategic solution was to centre on a theme of ‘build a bridge’. This theme was seen to be positive and proactive, with language that borrowed from colloquial usage and even had humorous undertones. Strategically, it provided a strong platform and foundation to work on creatively and talk to the target audience in a very authentic way.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvLNQH8ye2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The creative development process, as it always should, started with a strong consideration of the target audience. Knowing that a lot of the target market were parents, we decided to let the innocent wisdom of children shine through by delivering the ‘build a bridge’ solution. Children can turn the complex into simple through thought and action, which is exactly what we showed in this campaign—the drawing of a bridge from one home to another, which created a visual hook. The viewer is drawn in by the surprising nature of the child explaining the product in just a few words, and then left with a smile as she demonstrates it in permanent marker.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fL4MPWaBk1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The first rule of advertising is to get noticed, which this campaign achieves by not looking like a bank or finance ad. The impact of the campaign is created through pure relevancy, showing real family people in real situations. The messaging is loud and clear and helped to educate the market on the nature of short-term bridging loan options and drive traffic to the Funding site.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Funding | Branding and awareness campaign','Funding is an online financial services company specialising in the niche area of bridging loans. They came to New Word Order with a two-fold problem. Firstly, the category they operate in (bridging loans) wasn’t entirely understood by their target market and needed further clarification. Secondly, not enough people (or even industry brokers) knew the Funding brand at all and the beneficial products they offered. A cut-through campaign was needed, stat.','funding, brokers, money, loans, advertising, campaign, tv, video',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139198,142974,1,'Let us introduce ourselves','2022-11-16 22:27:09','2022-11-16 22:27:09','8617e838-46ac-4301-b41e-77e056e21377',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CYlWxVLWd4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Liam\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We thought we hired an award-winning advertising copywriter. But we ended up with so much more: a ska band ex-roadie, an optimistic golfer and a brave, crustacean-battling chef. \\n\\nNow that’s value.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wZCcn69t8v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142935\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CCjcrDQfKO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Liam was born and raised in Brisbane but escaped the oppressive heat to live in London and Hong Kong (and then found it again in Guam) for seven years.\\n\\nNow back in his hometown, he carries with him the secrets of journey well travelled—from paying his way through uni as a roadie for ska band The Furious Turtles, to winning Australian and international advertising and production copywriting awards throughout his career. \\n\\nWe’re sure we can thank his time on the road—classified, but imaginably riddled with life-altering stories—for the effortless creativity we extract out of Liam day to day. Second to that, maybe also his time at industry-renowned AWARD School.\\n\\nSpeaking of formative experiences, Liam’s gruff exterior was carefully constructed back in his boarding school days, when he was an easy target as the only soft city kid among a sea of tough country kids. \\n\\nHe quickly discovered that no amount of skiing holidays or golfing hole-in-ones (current tally: zero from 50,000 attempts) could win the respect of teenage bogans. A lesson in humility for Liam, perhaps—we’ve all been there at some point. \\n\\nDespite his otherwise bourgeois-sounding life where the (golfing) green is grasser, Liam actually knows all about the importance of sacrifice. \\n\\nAfter all, he cooks his famous garlic prawns every year for family Christmas (and last year for NWO Christmas) despite his drastic, ironic and tragic crustacean allergy. When he defeats the prawns, they defeat him right back.\\n\\nYou can actually cook the dish yourself following his not-so-secret recipe  <a href=\\\"https://newwordorder.com.au/lp/christmas-2021\\\">here.</a> It’s delicious—you can’t take Liam’s word for it, of course, but you can take ours.\\n\\nHe has cooking all locked down, but he’ll be the first to tell you cleaning isn’t his area of expertise. We can’t have everything. No reason to fret, though—isn’t that what kids are for? And he’s got four of them, so he’s very good at delegating.\\n\\nA couple residents in his household live it lush and chore-free, though: his 50kg Irish Wolfhound, Luna, and his 8kg Cavoodle, Rusty. In fact, they’ve delegated to Liam the chore of walking them every morning. \\n\\nThose gorgeous dogs are part of what we love about Liam, along with his dry sense of humour, his endless creative expertise and his penchant for telling a good story—whether it’s through an ad script, or just a weekend anecdote.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and the Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lwRZRhzi23\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EHGcch1Nd8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141527\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139200,142976,1,'Let us introduce ourselves','2022-11-16 22:27:43','2022-11-16 22:27:43','9ef41c98-2ce3-4b7e-8d43-80602b9253ba',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CYlWxVLWd4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Liam\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We thought we hired an award-winning advertising copywriter. But we ended up with so much more: a ska band ex-roadie, an optimistic golfer and a brave, crustacean-battling chef. \\n\\nNow that’s value.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wZCcn69t8v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142939\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CCjcrDQfKO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Liam was born and raised in Brisbane but escaped the oppressive heat to live in London and Hong Kong (and then found it again in Guam) for seven years.\\n\\nNow back in his hometown, he carries with him the secrets of journey well travelled—from paying his way through uni as a roadie for ska band The Furious Turtles, to winning Australian and international advertising and production copywriting awards throughout his career. \\n\\nWe’re sure we can thank his time on the road—classified, but imaginably riddled with life-altering stories—for the effortless creativity we extract out of Liam day to day. Second to that, maybe also his time at industry-renowned AWARD School.\\n\\nSpeaking of formative experiences, Liam’s gruff exterior was carefully constructed back in his boarding school days, when he was an easy target as the only soft city kid among a sea of tough country kids. \\n\\nHe quickly discovered that no amount of skiing holidays or golfing hole-in-ones (current tally: zero from 50,000 attempts) could win the respect of teenage bogans. A lesson in humility for Liam, perhaps—we’ve all been there at some point. \\n\\nDespite his otherwise bourgeois-sounding life where the (golfing) green is grasser, Liam actually knows all about the importance of sacrifice. \\n\\nAfter all, he cooks his famous garlic prawns every year for family Christmas (and last year for NWO Christmas) despite his drastic, ironic and tragic crustacean allergy. When he defeats the prawns, they defeat him right back.\\n\\nYou can actually cook the dish yourself following his not-so-secret recipe  <a href=\\\"https://newwordorder.com.au/lp/christmas-2021\\\">here.</a> It’s delicious—you can’t take Liam’s word for it, of course, but you can take ours.\\n\\nHe has cooking all locked down, but he’ll be the first to tell you cleaning isn’t his area of expertise. We can’t have everything. No reason to fret, though—isn’t that what kids are for? And he’s got four of them, so he’s very good at delegating.\\n\\nA couple residents in his household live it lush and chore-free, though: his 50kg Irish Wolfhound, Luna, and his 8kg Cavoodle, Rusty. In fact, they’ve delegated to Liam the chore of walking them every morning. \\n\\nThose gorgeous dogs are part of what we love about Liam, along with his dry sense of humour, his endless creative expertise and his penchant for telling a good story—whether it’s through an ad script, or just a weekend anecdote.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and the Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lwRZRhzi23\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EHGcch1Nd8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141527\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139201,142977,1,'Residential Tenancies Authority','2022-11-16 23:52:10','2022-11-17 00:09:19','49222790-493a-4349-8c21-4e36ec5f5006',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Illustrating tenancy law changes',NULL,NULL,'We all know tenancy can be complicated, from any side of the relationship. So the Residential Tenancies Authority (RTA) has introduced new laws to give tenants, landlords and property managers more certainty and transparency around their tenancy arrangements. We helped the RTA produce four animated videos to serve as friendly reminders about the law changes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bc8O0czLTg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028657?h=758f0e7169&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Ending a tenancy\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SUpdyGgoHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The RTA needed to inform the public about rental reform changes coming into effect on 1 October 2022. With such a broad audience—renters, landlords and property managers—the RTA needed an explanatory tool that relayed the information in an easily digestible, engaging and inclusive way.\\nA collection of animated explainer videos was the obvious choice.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-chZ81DIc8w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028691?h=ca954eece2&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Renting with pets\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PLy32UQvPs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The videos needed a friendly, informative tone that connected with a vast range of people. We broke the videos down into sections that addressed each of the three key audiences individually—renters, then landlords, then property managers. The audiences were represented by a diverse and inclusive suite of illustrated characters.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oGsU7M7NF2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028774?h=8eb9622a43&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Summary\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oQ8wJZ93RN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Illustration was the real standout for this project. Our illustrative style helped us depict the emotion and shared experience of renting from all sides of the tenancy relationship. The animation represented various age groups, ethnicities and occupations.\\nThe law changes are explained by friendly, engaging voiceovers that guide the videos.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YFRHfSDQGW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028736?h=a48681755c&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Repair order\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-sfiAs0GFwT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It was a pleasure to work with the team at RTA to help inform Queenslanders about the new changes to renting laws. The RTA has worked hard to make sure renting is fair for all and it was a joy to be part of bringing this to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Residential Tenancies Authority | Illustrating tenancy law changes','We all know tenancy can be complicated, from any side of the relationship. So the Residential Tenancies Authority (RTA) has introduced new laws to give tenants, landlords and property managers more certainty and transparency around their tenancy arrangements. We helped the RTA produce four animated videos to serve as friendly reminders about the law changes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139202,142978,1,'8147 Do E Early childhood services video 2 2 35','2022-11-17 00:06:38','2022-11-17 00:06:38','68f7c01b-2dbd-46a4-bd35-683c64eecc10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/8147_DoE-Early-childhood-services-video-2-2-35.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/8147_DoE-Early-childhood-services-video-2-2-35.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/8147_DoE-Early-childhood-services-video-2-2-35.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/8147_DoE-Early-childhood-services-video-2-2-35.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/8147_DoE-Early-childhood-services-video-2-2-35.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/8147_DoE-Early-childhood-services-video-2-2-35.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/8147_DoE-Early-childhood-services-video-2-2-35.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/8147_DoE-Early-childhood-services-video-2-2-35.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/8147_DoE-Early-childhood-services-video-2-2-35.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/8147_DoE-Early-childhood-services-video-2-2-35.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/8147_DoE-Early-childhood-services-video-2-2-35.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/8147_DoE-Early-childhood-services-video-2-2-35.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/8147_DoE-Early-childhood-services-video-2-2-35.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/8147_DoE-Early-childhood-services-video-2-2-35.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/8147_DoE-Early-childhood-services-video-2-2-35.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/8147_DoE-Early-childhood-services-video-2-2-35.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":8000,\"originalImageHeight\":4501,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAMG/8QAIxAAAgECBAcAAAAAAAAAAAAAAQIDAAUEERJxBhUhMjNRcv/EABcBAAMBAAAAAAAAAAAAAAAAAAABAgT/xAAdEQACAgEFAAAAAAAAAAAAAAAAAQIRAwQSFCEx/9oADAMBAAIRAxEAPwBt04dlw2RwxknzJ0qq9RvTi1dMyY9JGFt9lbFZ0ZH5rE0ZDARq506ve9E9qdovjQl6jVHyjakaAdz74PqpYH//2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#27786a\",\"#dccfb5\",\"#6db4cc\",\"#6a591d\",\"#74ce81\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139203,142979,1,'Department of Education','2022-11-17 00:07:32','2022-11-17 00:07:32','f8761e05-251c-4968-ad98-860f42366428',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Early childhood care service providers application video',NULL,NULL,'Early childhood care is an integral part of our community, but the Department of Education was experiencing issues with the service provider application process. They believed most of the complications came from simple misunderstandings, so they asked us to help them create a simple, engaging animated video to break down the process in easy-to-follow steps.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-It8nqzuyY4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://www.youtube.com/embed/xm1Jq7IsCfk\\\" title=\\\"YouTube video player\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen></iframe>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OSv1zZoTd7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The department’s issues came down to a few common problems that kept occurring during the application process for early childhood care service providers. The pipeline barriers these problems caused became a headache for the department.\\nOur challenge was to make an accessible, easy-to-understand explainer video, which would ensure more applications are completed properly before being submitted.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pkInp3sX8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Once the client identified the core issues and nailed down the correct process, we produced a simple voiceover and animation strategy to concisely and clearly address the problems. \\nIt was important to keep the process really simple while making sure the applications would contain all the required information. Our approach involved balancing authority with friendliness to connect with the audience.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MRDlR2NjSv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using customised stock illustration, we produced a five-minute animated video that combined relatable creativity with clear actions.\\nWe represented our diverse audience with the illustration and voiceover to show the application process, highlight the fields that require more attention and express the specificities that are commonly missed.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LpUDcdBBO6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The video really breaks down a complex process into actionable steps. \\nEarly childhood care is a vital service for many Queensland families and the higher the quality of the care, the better. So it was our pleasure to help make the process just that little bit easier and quicker.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Department of Education | Early childhood care service providers application video','Early childhood care is an integral part of our community, but the Department of Education was experiencing issues with the service provider application process. They believed most of the complications came from simple misunderstandings, so they asked us to help them create a simple, engaging animated video to break down the process in easy-to-follow steps.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139206,142982,1,'Department of Education','2022-11-17 00:10:40','2022-11-17 00:10:40','1f4283e7-a1d8-4c2a-89ef-ca2eb4791dac',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Early childhood care service providers application video',NULL,NULL,'Early childhood care is an integral part of our community, but the Department of Education was experiencing issues with the service provider application process. They believed most of the complications came from simple misunderstandings, so they asked us to help them create a simple, engaging animated video to break down the process in easy-to-follow steps.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-It8nqzuyY4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://www.youtube.com/embed/xm1Jq7IsCfk\\\" title=\\\"YouTube video player\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\\\" allowfullscreen></iframe>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OSv1zZoTd7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The department’s issues came down to a few common problems that kept occurring during the application process for early childhood care service providers. The pipeline barriers these problems caused became a headache for the department.\\nOur challenge was to make an accessible, easy-to-understand explainer video, which would ensure more applications are completed properly before being submitted.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pkInp3sX8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Once the client identified the core issues and nailed down the correct process, we produced a simple voiceover and animation strategy to concisely and clearly address the problems. \\nIt was important to keep the process really simple while making sure the applications would contain all the required information. Our approach involved balancing authority with friendliness to connect with the audience.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MRDlR2NjSv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using customised stock illustration, we produced a five-minute animated video that combined relatable creativity with clear actions.\\nWe represented our diverse audience with the illustration and voiceover to show the application process, highlight the fields that require more attention and express the specificities that are commonly missed.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LpUDcdBBO6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The video really breaks down a complex process into actionable steps. \\nEarly childhood care is a vital service for many Queensland families and the higher the quality of the care, the better. So it was our pleasure to help make the process just that little bit easier and quicker.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Department of Education | Early childhood care service providers application video','Early childhood care is an integral part of our community, but the Department of Education was experiencing issues with the service provider application process. They believed most of the complications came from simple misunderstandings, so they asked us to help them create a simple, engaging animated video to break down the process in easy-to-follow steps.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139208,142984,1,'35510008','2022-11-17 00:13:52','2022-11-17 00:13:52','743d7692-bd02-41d9-ae8b-20c6be29489b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"309\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_309x500_crop_center-center_line/35510008.jpeg\"},\"optimizedWebPImageUrls\":{\"309\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_309x500_crop_center-center_line/35510008.jpeg.webp\"},\"variantSourceWidths\":[309],\"variantHeights\":{\"309\":500},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":309,\"originalImageHeight\":500,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAZABADASIAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAgQFA//EACcQAAIABAQFBQAAAAAAAAAAAAECAAMREgQFBjETITJRcSIzYYGx/8QAFQEBAQAAAAAAAAAAAAAAAAAAAwX/xAAYEQEAAwEAAAAAAAAAAAAAAAABAAIDEf/aAAwDAQACEQMRAD8ASdJVorcDSE8UthsZbWoDz3IMUcOiTp0tXWYRvTvAaolqqy5o67an457Q1kJMxxbCwMpxSO13qUhO8a6hPFkqbqmh+okZL1P4H7FHNPbmeYJeyhnUqcJ//9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#226c6a\",\"#b3bbbc\",\"#08201b\",\"#7ac4be\",\"#6cacbc\"],\"lightness\":42,\"placeholderWidth\":309,\"placeholderHeight\":500,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139209,142985,1,'81 Mj SL Tbrj L','2022-11-17 00:15:33','2022-11-17 00:15:33','23dd4c11-d01a-4735-96e4-45579c593a40',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1940_crop_center-center_82_line/81MjSLTbrjL.jpeg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1552_crop_center-center_82_line/81MjSLTbrjL.jpeg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x1164_crop_center-center_82_line/81MjSLTbrjL.jpeg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x970_crop_center-center_82_line/81MjSLTbrjL.jpeg\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1940_crop_center-center_82_line/81MjSLTbrjL.jpeg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1552_crop_center-center_82_line/81MjSLTbrjL.jpeg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x1164_crop_center-center_82_line/81MjSLTbrjL.jpeg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x970_crop_center-center_82_line/81MjSLTbrjL.jpeg.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1940,\"1024\":1552,\"768\":1164,\"640\":970},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1535,\"originalImageHeight\":2327,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAYABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAUA/8QAIxAAAgIBAwMFAAAAAAAAAAAAAQIDEQAEBRIGIXETMVFhYv/EABYBAQEBAAAAAAAAAAAAAAAAAAMEBf/EABoRAAIDAQEAAAAAAAAAAAAAAAEDAAIREjH/2gAMAwEAAhEDEQA/AFCP1ZabsvuW+BkXWsys8TqRwYi8saJxJZLBbNH9fWReoHVda54iybseMe7SGZM9SAVdH0xO16yMwR8yLsk4PfJUlHJDV128Zs2CRttltRlMn//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#38616e\",\"#c8cb96\",\"#1ba8d0\",\"#5ac2db\",\"#37391f\"],\"lightness\":47,\"placeholderWidth\":1280,\"placeholderHeight\":1940,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139210,142986,1,'NWO’s library','2022-11-17 00:15:43','2022-11-17 00:15:43','1b41f373-ed11-47af-90df-f5729a018e07',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-nAshvWtoXq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142985\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### November picks\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142764\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### October picks\\n\\n<h6> Bruce’s pick </h6> \\n<b>Book title: </b> A Night Without Stars\\n<b>Author: </b> Peter F Hamilton \\nFind it <a href=\\\"https://www.goodreads.com/book/show/28439513-a-night-without-stars\\\"> here </a>\\n\\n<h6> Bree\'s pick </h6> \\n<b>Book title: </b> The Seven Husbands of Evelyn Hugo\\n<b>Author: </b> Taylor Jenkins Reid\\nFind it <a href=\\\"https://www.goodreads.com/book/show/32620332-the-seven-husbands-of-evelyn-hugo\\\"> here </a>\\n\\n<h6> Kimi\'s pick </h6> \\n<b>Book title: </b> Losing Face\\n<b>Author: </b> George Haddad\\nFind it <a href=\\\"https://www.goodreads.com/book/show/60752357-losing-face\\\"> here </a>\\n\\n<h6> Jo\'s pick </h6> \\n<b>Book title: </b> The Testaments\\n<b>Author: </b> Margaret Atwood\\nFind it <a href=\\\"https://www.goodreads.com/book/show/42975172-the-testaments\\\"> here </a>\\n\\n<h6> Suz\'s pick </h6> \\n<b>Book title: </b> The Bookseller at the End of the World\\n<b>Author: </b> Ruth Shaw\\nFind it <a href=\\\"https://www.goodreads.com/book/show/60296308-the-bookseller-at-the-end-of-the-world\\\"> here </a>\\n\\n<br> </br>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-07dTHE4QTY\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142764\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### October picks\\n\\n* <a href=\\\"https://www.goodreads.com/book/show/28439513-a-night-without-stars\\\"> A Night Without Stars by Peter F Hamilton </a> \\n* <a href=\\\"https://www.goodreads.com/book/show/32620332-the-seven-husbands-of-evelyn-hugo\\\"> The Seven Husbands of Evelyn Hugo by Taylor Jenkins Reid</a>\\n* <a href=\\\"https://www.goodreads.com/book/show/60752357-losing-face\\\"> Losing Face by George Haddad </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/42975172-the-testaments\\\"> The Testaments by Margaret Atwood </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/60296308-the-bookseller-at-the-end-of-the-world\\\"> The Bookseller at the End of the World by Ruth Shaw </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8Zua9e4kWu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142595\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### September picks\\n\\n* <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> Taste: My Life Through Food by Stanley Tucci </a> \\n* <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> A Little Life by Hanya Yanagihara </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/37558445-boy-swallows-universe\\\"> Boy Swallows Universe by Trent Dalton </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> Johnno by David Malouf </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> Growing up Queer in Australia by Benjamin Law </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> Bullet Train by Kotaro Isaka </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> A Promised Land by Barack Obama </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> The Life by Malcolm Knox </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/11468377-thinking-fast-and-slow\\\"> Thinking, Fast and Slow by Daniel Kahneman </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> Hunt, Gather, Parent by Michaeleen Doucleff </a> \\n* <a href=\\\"https://www.goodreads.com/en/book/show/30762074\\\"> Odd Dog Out by Rob Bidulph </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tAgWmP7qVi\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NWO’s library','Taste: My Life Through Food by Stanley Tucci ... A Little Life by Hanya Yanagihara ... Johnno by David Malouf ... Growing up Queer in Australia by Benjamin Law ... Bullet Train by Kotaro Isaka ... A Promised Land by Barack Obama ... The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan ... The Life by Malcolm Knox',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139211,142987,1,'NWO’s library','2022-11-17 00:15:49','2022-11-17 00:15:50','8d05cdeb-ae83-47fa-8fd6-4d93bbad357c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-nAshvWtoXq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142985\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### November picks\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142764\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### October picks\\n\\n<h6> Bruce’s pick </h6> \\n<b>Book title: </b> A Night Without Stars\\n<b>Author: </b> Peter F Hamilton \\nFind it <a href=\\\"https://www.goodreads.com/book/show/28439513-a-night-without-stars\\\"> here </a>\\n\\n<h6> Bree\'s pick </h6> \\n<b>Book title: </b> The Seven Husbands of Evelyn Hugo\\n<b>Author: </b> Taylor Jenkins Reid\\nFind it <a href=\\\"https://www.goodreads.com/book/show/32620332-the-seven-husbands-of-evelyn-hugo\\\"> here </a>\\n\\n<h6> Kimi\'s pick </h6> \\n<b>Book title: </b> Losing Face\\n<b>Author: </b> George Haddad\\nFind it <a href=\\\"https://www.goodreads.com/book/show/60752357-losing-face\\\"> here </a>\\n\\n<h6> Jo\'s pick </h6> \\n<b>Book title: </b> The Testaments\\n<b>Author: </b> Margaret Atwood\\nFind it <a href=\\\"https://www.goodreads.com/book/show/42975172-the-testaments\\\"> here </a>\\n\\n<h6> Suz\'s pick </h6> \\n<b>Book title: </b> The Bookseller at the End of the World\\n<b>Author: </b> Ruth Shaw\\nFind it <a href=\\\"https://www.goodreads.com/book/show/60296308-the-bookseller-at-the-end-of-the-world\\\"> here </a>\\n\\n<br> </br>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-07dTHE4QTY\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142764\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### October picks\\n\\n* <a href=\\\"https://www.goodreads.com/book/show/28439513-a-night-without-stars\\\"> A Night Without Stars by Peter F Hamilton </a> \\n* <a href=\\\"https://www.goodreads.com/book/show/32620332-the-seven-husbands-of-evelyn-hugo\\\"> The Seven Husbands of Evelyn Hugo by Taylor Jenkins Reid</a>\\n* <a href=\\\"https://www.goodreads.com/book/show/60752357-losing-face\\\"> Losing Face by George Haddad </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/42975172-the-testaments\\\"> The Testaments by Margaret Atwood </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/60296308-the-bookseller-at-the-end-of-the-world\\\"> The Bookseller at the End of the World by Ruth Shaw </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8Zua9e4kWu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142595\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### September picks\\n\\n* <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> Taste: My Life Through Food by Stanley Tucci </a> \\n* <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> A Little Life by Hanya Yanagihara </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/37558445-boy-swallows-universe\\\"> Boy Swallows Universe by Trent Dalton </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> Johnno by David Malouf </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> Growing up Queer in Australia by Benjamin Law </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> Bullet Train by Kotaro Isaka </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> A Promised Land by Barack Obama </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> The Life by Malcolm Knox </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/11468377-thinking-fast-and-slow\\\"> Thinking, Fast and Slow by Daniel Kahneman </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> Hunt, Gather, Parent by Michaeleen Doucleff </a> \\n* <a href=\\\"https://www.goodreads.com/en/book/show/30762074\\\"> Odd Dog Out by Rob Bidulph </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tAgWmP7qVi\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NWO’s library','Taste: My Life Through Food by Stanley Tucci ... A Little Life by Hanya Yanagihara ... Johnno by David Malouf ... Growing up Queer in Australia by Benjamin Law ... Bullet Train by Kotaro Isaka ... A Promised Land by Barack Obama ... The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan ... The Life by Malcolm Knox',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139213,142989,1,'NWO’s library','2022-11-17 00:21:53','2022-11-17 00:21:53','9f8fbef4-218d-462e-90e2-4d5e81f8cc62',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-nAshvWtoXq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142985\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### November picks\\n\\n<h6> Bec\'s pick </h6> \\n<b>Book title: </b> The Master and Margarita\\n<b>Author: </b> Mikhail Bulgakov\\nFind it <a href=\\\"https://www.goodreads.com/book/show/117833.The_Master_and_Margarita\\\"> here </a>\\n\\n<h6> Bree\'s pick </h6> \\n<b>Book title: </b> This is Going to Hurt\\n<b>Author: </b> Adam Kay\\nFind it <a href=\\\"https://www.goodreads.com/book/show/35510008-this-is-going-to-hurt\\\"> here </a>\\n\\n<h6> Jo\'s pick </h6> \\n<b>Book title: </b> Renegades\\n<b>Author: </b> Barack Obama and Bruce Springsteen\\nFind it <a href=\\\"https://renegadesbook.com/\\\"> here </a>\\n\\n<h6> Suzanne\'s pick </h6> \\n<b>Book title: </b> Windswept and Interesting\\n<b>Author: </b> Billy Connolly\\nFind it <a href=\\\"https://www.audible.com.au/pd/Windswept-Interesting-Audiobook/B08Y98R1JF\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142764\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### October picks\\n\\n* <a href=\\\"https://www.goodreads.com/book/show/28439513-a-night-without-stars\\\"> A Night Without Stars by Peter F Hamilton </a> \\n* <a href=\\\"https://www.goodreads.com/book/show/32620332-the-seven-husbands-of-evelyn-hugo\\\"> The Seven Husbands of Evelyn Hugo by Taylor Jenkins Reid</a>\\n* <a href=\\\"https://www.goodreads.com/book/show/60752357-losing-face\\\"> Losing Face by George Haddad </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/42975172-the-testaments\\\"> The Testaments by Margaret Atwood </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/60296308-the-bookseller-at-the-end-of-the-world\\\"> The Bookseller at the End of the World by Ruth Shaw </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8Zua9e4kWu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142595\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### September picks\\n\\n* <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> Taste: My Life Through Food by Stanley Tucci </a> \\n* <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> A Little Life by Hanya Yanagihara </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/37558445-boy-swallows-universe\\\"> Boy Swallows Universe by Trent Dalton </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> Johnno by David Malouf </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> Growing up Queer in Australia by Benjamin Law </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> Bullet Train by Kotaro Isaka </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> A Promised Land by Barack Obama </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> The Life by Malcolm Knox </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/11468377-thinking-fast-and-slow\\\"> Thinking, Fast and Slow by Daniel Kahneman </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> Hunt, Gather, Parent by Michaeleen Doucleff </a> \\n* <a href=\\\"https://www.goodreads.com/en/book/show/30762074\\\"> Odd Dog Out by Rob Bidulph </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tAgWmP7qVi\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NWO’s library','Taste: My Life Through Food by Stanley Tucci ... A Little Life by Hanya Yanagihara ... Johnno by David Malouf ... Growing up Queer in Australia by Benjamin Law ... Bullet Train by Kotaro Isaka ... A Promised Land by Barack Obama ... The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan ... The Life by Malcolm Knox',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139214,142990,1,'Department of Education','2022-11-17 04:05:50','2022-11-17 04:05:50','545de128-33c9-479e-b270-464b48c144d1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Early childhood care service providers application video',NULL,NULL,'Early childhood care is an integral part of our community, but the Department of Education was experiencing issues with the service provider application process. They believed most of the complications came from simple misunderstandings, so they asked us to help them create a simple, engaging animated video to break down the process in easy-to-follow steps.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-It8nqzuyY4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:75% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/771857698?h=fbf07172e6&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"8147_DoE Early childhood services video 07.mp4\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OSv1zZoTd7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The department’s issues came down to a few common problems that kept occurring during the application process for early childhood care service providers. The pipeline barriers these problems caused became a headache for the department.\\nOur challenge was to make an accessible, easy-to-understand explainer video, which would ensure more applications are completed properly before being submitted.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pkInp3sX8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Once the client identified the core issues and nailed down the correct process, we produced a simple voiceover and animation strategy to concisely and clearly address the problems. \\nIt was important to keep the process really simple while making sure the applications would contain all the required information. Our approach involved balancing authority with friendliness to connect with the audience.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MRDlR2NjSv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using customised stock illustration, we produced a five-minute animated video that combined relatable creativity with clear actions.\\nWe represented our diverse audience with the illustration and voiceover to show the application process, highlight the fields that require more attention and express the specificities that are commonly missed.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LpUDcdBBO6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The video really breaks down a complex process into actionable steps. \\nEarly childhood care is a vital service for many Queensland families and the higher the quality of the care, the better. So it was our pleasure to help make the process just that little bit easier and quicker.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Department of Education | Early childhood care service providers application video','Early childhood care is an integral part of our community, but the Department of Education was experiencing issues with the service provider application process. They believed most of the complications came from simple misunderstandings, so they asked us to help them create a simple, engaging animated video to break down the process in easy-to-follow steps.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139216,142992,1,'Department of Education','2022-11-17 05:54:20','2022-11-17 05:54:20','6d36d1ed-6a75-4c4f-b97f-d2b189a65c29',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Early childhood care service providers application video',NULL,NULL,'Early childhood care is an integral part of our community, but the Department of Education was experiencing issues with the service provider application process. They believed most of the complications came from simple misunderstandings, so they asked us to help them create a simple, engaging animated video to break down the process in easy-to-follow steps.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-It8nqzuyY4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:75% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/771857698?h=fbf07172e6&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"8147_DoE Early childhood services video 07.mp4\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OSv1zZoTd7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The department’s issues came down to a few common problems that kept occurring during the application process for early childhood care service providers. The pipeline barriers these problems caused became a headache for the department.\\nOur challenge was to make an accessible, easy-to-understand explainer video, which would ensure more applications are completed properly before being submitted.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pkInp3sX8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Once the client identified the core issues and nailed down the correct process, we produced a simple voiceover and animation strategy to concisely and clearly address the problems. \\nIt was important to keep the process really simple while making sure the applications would contain all the required information. Our approach involved balancing authority with friendliness to connect with the audience.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MRDlR2NjSv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using customised stock illustration, we produced a five-minute animated video that combined relatable creativity with clear actions.\\nWe represented our diverse audience with the illustration and voiceover to show the application process, highlight the fields that require more attention and express the specificities that are commonly missed.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LpUDcdBBO6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The video really breaks down a complex process into actionable steps. \\nEarly childhood care is a vital service for many Queensland families and the higher the quality of the care, the better. So it was our pleasure to help make the process just that little bit easier and quicker.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Department of Education | Early childhood care service providers application video','Early childhood care is an integral part of our community, but the Department of Education was experiencing issues with the service provider application process. They believed most of the complications came from simple misunderstandings, so they asked us to help them create a simple, engaging animated video to break down the process in easy-to-follow steps.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139218,142994,1,'163 A4323','2022-11-18 05:51:41','2022-11-18 05:51:41','3c175b73-0924-494d-914a-b8bb994e7882',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/163A4323.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/163A4323.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/163A4323.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/163A4323.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/163A4323.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/163A4323.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/163A4323.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/163A4323.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/163A4323.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/163A4323.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/163A4323.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/163A4323.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/163A4323.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/163A4323.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/163A4323.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/163A4323.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"3072\":2048,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":6720,\"originalImageHeight\":4480,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQAE/8QAIBAAAgICAgIDAAAAAAAAAAAAAQMCEQAEBRIhQSIxcf/EABcBAAMBAAAAAAAAAAAAAAAAAAACAwH/xAAbEQACAQUAAAAAAAAAAAAAAAAAARECAxIhMf/aAAwDAQACEQMRAD8AMXBsd8i2CPc3ZoVjYyEkt2w/j4xQHzcuZ8xsk4iNTNDpyY3X7yMvn7N+8eQG+HAjvN6ivB+v0ZKjrK3FpH//2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#463e3d\",\"#b8b8c8\",\"#8c8797\",\"#b38a7a\",\"#a2a4aa\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139219,142995,1,'163 A4413','2022-11-18 05:52:02','2022-11-18 05:52:02','dff41670-0b7e-4f84-8150-24203da0139d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/163A4413.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/163A4413.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/163A4413.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/163A4413.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/163A4413.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/163A4413.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/163A4413.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/163A4413.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/163A4413.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/163A4413.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/163A4413.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/163A4413.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/163A4413.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/163A4413.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/163A4413.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/163A4413.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"3072\":2048,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":6720,\"originalImageHeight\":4480,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAID/8QAIxAAAQMDAwUBAAAAAAAAAAAAAQIDBAARIRMiQQUSMTNhsf/EABcBAAMBAAAAAAAAAAAAAAAAAAECBAP/xAAdEQEBAAIBBQAAAAAAAAAAAAABAAIRAxIhMTJB/9oADAMBAAIRAxEAPwCmUxYMJhekTqAWTbHmx/am4xXa9rVZsVS48R907FDIF8U2JsZtwXSVdFbKjcg4J43Chx+knyydcXoSB3q9Z5+VLgvVHHyX/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#998656\",\"#d4c7cd\",\"#3b211b\",\"#e0d174\",\"#484b6f\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139220,142996,1,'163 A4443','2022-11-18 05:52:14','2022-11-18 05:52:14','9437044c-ba1d-4322-9c29-a063711129d7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/163A4443.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/163A4443.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/163A4443.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/163A4443.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/163A4443.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/163A4443.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/163A4443.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/163A4443.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/163A4443.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/163A4443.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/163A4443.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/163A4443.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/163A4443.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/163A4443.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/163A4443.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/163A4443.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"3072\":2048,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":6720,\"originalImageHeight\":4480,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABQb/xAAeEAACAQUBAQEAAAAAAAAAAAABAwIABBIhMREzQf/EABUBAQEAAAAAAAAAAAAAAAAAAAEC/8QAGREBAQADAQAAAAAAAAAAAAAAAAECITER/9oADAMBAAIRAxEAPwAtSrG4RFeQLIAkY6x7R7pRS1sVvauLkDASHpy7rlRldmJWw+oP7SVmgDyOuxqb1U4//9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#685b54\",\"#cbbba8\",\"#180f0c\",\"#989bb2\",\"#aaac9b\"],\"lightness\":46,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139224,143000,1,'163 A3962','2022-11-18 06:01:53','2022-11-18 06:01:53','a8999a64-dad2-4ed4-9fa6-713739ed796c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/163A3962.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/163A3962.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/163A3962.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/163A3962.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/163A3962.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/163A3962.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/163A3962.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/163A3962.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/163A3962.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/163A3962.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/163A3962.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/163A3962.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/163A3962.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/163A3962.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/163A3962.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/163A3962.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"3072\":2048,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":6720,\"originalImageHeight\":4480,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAgT/xAAmEAABAgQDCQAAAAAAAAAAAAABAgMABREhBAZBEhMUIiQxMnHh/8QAFQEBAQAAAAAAAAAAAAAAAAAAAgP/xAAbEQADAAIDAAAAAAAAAAAAAAAAAQIDMRMhQf/aAAwDAQACEQMRAD8ADjXQIRh3DsFXME966QKxudFlXJsUwa33D4ZNUkoS2lRPiTc1GthDl9EqRNKSS4ATb7F/ArZVmG0xQRYhgEexrEIEz//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#b2a5a7\",\"#2c2a31\",\"#75533b\",\"#595a72\",\"#513331\"],\"lightness\":41,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139225,143001,1,'Funding','2022-11-18 06:02:24','2022-11-18 06:02:24','8fba4e7f-d6be-4b1d-a024-2a1008209ef3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Branding and awareness campaign',NULL,NULL,'Funding is an online financial services company specialising in the niche area of bridging loans. They came to New Word Order with a two-fold problem. Firstly, the category they operate in (bridging loans) wasn’t entirely understood by their target market and needed further clarification. Secondly, not enough people (or even industry brokers) knew the Funding brand at all and the beneficial products they offered. A cut-through campaign was needed, stat.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ziNtnsznO9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/765527128?h=5517b00b29&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Build a bridge - Funding.com.au TVC 30 second\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Zh7cVNx5Rl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The loan market as a whole is highly competitive and often dominated by rate comparisons and incentive offers. Bridging loans, however, are a slightly different beast in that they are more about recognising different life circumstances and problem solving. Other short-term bridging loan specialists had emerged and launched strong brand campaigns. Therefore, the key challenge was to create a brand that focuses on solutions and creatively positions Funding among its competitor set as a short-term loan company with a difference.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BvMTRKtmI7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"In order to educate the market on when a bridging loan might be required and then provide differentiation for Funding, it became abundantly clear that the campaign required a creative and catchy hook to drive interest and memorability. The strategic solution was to centre on a theme of ‘build a bridge’. This theme was seen to be positive and proactive, with language that borrowed from colloquial usage and even had humorous undertones. Strategically, it provided a strong platform and foundation to work on creatively and talk to the target audience in a very authentic way.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dA5dzfYeRH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143000\",\"142996\",\"142995\",\"142994\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvLNQH8ye2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The creative development process, as it always should, started with a strong consideration of the target audience. Knowing that a lot of the target market were parents, we decided to let the innocent wisdom of children shine through by delivering the ‘build a bridge’ solution. Children can turn the complex into simple through thought and action, which is exactly what we showed in this campaign—the drawing of a bridge from one home to another, which created a visual hook. The viewer is drawn in by the surprising nature of the child explaining the product in just a few words, and then left with a smile as she demonstrates it in permanent marker.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fL4MPWaBk1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The first rule of advertising is to get noticed, which this campaign achieves by not looking like a bank or finance ad. The impact of the campaign is created through pure relevancy, showing real family people in real situations. The messaging is loud and clear and helped to educate the market on the nature of short-term bridging loan options and drive traffic to the Funding site.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Funding | Branding and awareness campaign','Funding is an online financial services company specialising in the niche area of bridging loans. They came to New Word Order with a two-fold problem. Firstly, the category they operate in (bridging loans) wasn’t entirely understood by their target market and needed further clarification. Secondly, not enough people (or even industry brokers) knew the Funding brand at all and the beneficial products they offered. A cut-through campaign was needed, stat.','funding, brokers, money, loans, advertising, campaign, tv, video',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139227,143003,1,'163 A4166','2022-11-18 06:03:13','2022-11-18 06:03:13','d33ee1e8-5254-48d0-be77-2572203c3af4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/163A4166.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/163A4166.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/163A4166.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/163A4166.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/163A4166.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/163A4166.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/163A4166.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/163A4166.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/163A4166.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/163A4166.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/163A4166.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1706_crop_center-center_82_line/163A4166.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/163A4166.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/163A4166.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/163A4166.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/163A4166.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"3072\":2048,\"1280\":853,\"2560\":1706,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":6720,\"originalImageHeight\":4480,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAwIE/8QAIhAAAgAFAwUAAAAAAAAAAAAAAQIAAwQFERIhMRMjUWGR/8QAFwEAAwEAAAAAAAAAAAAAAAAAAgMEAf/EABsRAQEAAgMBAAAAAAAAAAAAAAEAAhEDEiIy/9oADAMBAAIRAxEAPwCqsCUx6aq7adpbb4OeYW4Y5DuMW1SKBKe3Cpn6TOPjYD5E2gdlvaRFU3MZUHtnke4vTywk17AFumgDACHiE5BqZx/Rf//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#aa9f87\",\"#35291e\",\"#d5d0d6\",\"#673b2b\",\"#817420\"],\"lightness\":46,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139228,143004,1,'Funding','2022-11-18 06:03:52','2022-11-18 06:03:52','fff9ecc7-ed12-4856-ae52-de79df7cc97c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Branding and awareness campaign',NULL,NULL,'Funding is an online financial services company specialising in the niche area of bridging loans. They came to New Word Order with a two-fold problem. Firstly, the category they operate in (bridging loans) wasn’t entirely understood by their target market and needed further clarification. Secondly, not enough people (or even industry brokers) knew the Funding brand at all and the beneficial products they offered. A cut-through campaign was needed, stat.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ziNtnsznO9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/765527128?h=5517b00b29&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Build a bridge - Funding.com.au TVC 30 second\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Zh7cVNx5Rl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The loan market as a whole is highly competitive and often dominated by rate comparisons and incentive offers. Bridging loans, however, are a slightly different beast in that they are more about recognising different life circumstances and problem solving. Other short-term bridging loan specialists had emerged and launched strong brand campaigns. Therefore, the key challenge was to create a brand that focuses on solutions and creatively positions Funding among its competitor set as a short-term loan company with a difference.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BvMTRKtmI7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"In order to educate the market on when a bridging loan might be required and then provide differentiation for Funding, it became abundantly clear that the campaign required a creative and catchy hook to drive interest and memorability. The strategic solution was to centre on a theme of ‘build a bridge’. This theme was seen to be positive and proactive, with language that borrowed from colloquial usage and even had humorous undertones. Strategically, it provided a strong platform and foundation to work on creatively and talk to the target audience in a very authentic way.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dA5dzfYeRH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143003\",\"143000\",\"142996\",\"142994\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvLNQH8ye2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The creative development process, as it always should, started with a strong consideration of the target audience. Knowing that a lot of the target market were parents, we decided to let the innocent wisdom of children shine through by delivering the ‘build a bridge’ solution. Children can turn the complex into simple through thought and action, which is exactly what we showed in this campaign—the drawing of a bridge from one home to another, which created a visual hook. The viewer is drawn in by the surprising nature of the child explaining the product in just a few words, and then left with a smile as she demonstrates it in permanent marker.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fL4MPWaBk1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The first rule of advertising is to get noticed, which this campaign achieves by not looking like a bank or finance ad. The impact of the campaign is created through pure relevancy, showing real family people in real situations. The messaging is loud and clear and helped to educate the market on the nature of short-term bridging loan options and drive traffic to the Funding site.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Funding | Branding and awareness campaign','Funding is an online financial services company specialising in the niche area of bridging loans. They came to New Word Order with a two-fold problem. Firstly, the category they operate in (bridging loans) wasn’t entirely understood by their target market and needed further clarification. Secondly, not enough people (or even industry brokers) knew the Funding brand at all and the beneficial products they offered. A cut-through campaign was needed, stat.','funding, brokers, money, loans, advertising, campaign, tv, video',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139229,143005,1,'Department of Education','2022-11-18 06:43:09','2022-11-18 06:43:10','a6410de9-a4fb-4015-af01-62b34eced033',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Early childhood care service providers application video',NULL,NULL,'Early childhood care is an integral part of our community, but the Department of Education was experiencing issues with the service provider application process. They believed most of the complications came from simple misunderstandings, so they asked us to help them create a simple, engaging animated video to break down the process in easy-to-follow steps.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-It8nqzuyY4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:75% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/771857698?h=fbf07172e6&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"8147_DoE Early childhood services video 07.mp4\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OSv1zZoTd7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The department’s issues came down to a few common problems that kept occurring during the application process for early childhood care service providers. The pipeline barriers these problems caused became a headache for the department.\\nOur challenge was to make an accessible, easy-to-understand explainer video, which would ensure more applications are completed properly before being submitted.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pkInp3sX8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Once the client identified the core issues and nailed down the correct process, we produced a simple voiceover and animation strategy to concisely and clearly address the problems. \\nIt was important to keep the process really simple while making sure the applications would contain all the required information. Our approach involved balancing authority with friendliness to connect with the audience.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MRDlR2NjSv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using customised stock illustration, we produced a five-minute animated video that combined relatable creativity with clear actions.\\nWe represented our diverse audience with the illustration and voiceover to show the application process, highlight the fields that require more attention and express the specificities that are commonly missed.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LpUDcdBBO6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The video really breaks down a complex process into actionable steps. \\nEarly childhood care is a vital service for many Queensland families and the higher the quality of the care, the better. So it was our pleasure to help make the process just that little bit easier and quicker.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Department of Education | Early childhood care service providers application video','Early childhood care is an integral part of our community, but the Department of Education was experiencing issues with the service provider application process. They believed most of the complications came from simple misunderstandings, so they asked us to help them create a simple, engaging animated video to break down the process in easy-to-follow steps.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139231,143007,1,'Funding','2022-11-22 21:32:43','2022-11-22 21:32:43','9df6f026-ae23-4c0e-8bd7-a8340cae8290',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Branding and awareness campaign',NULL,NULL,'Funding is an online financial services company specialising in the niche area of bridging loans. They came to New Word Order with a two-fold problem. Firstly, the category they operate in (bridging loans) wasn’t entirely understood by their target market and needed further clarification. Secondly, not enough people (or even industry brokers) knew the Funding brand at all and the beneficial products they offered. A cut-through campaign was needed, stat.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ziNtnsznO9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/765527128?h=5517b00b29&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Build a bridge - Funding.com.au TVC 30 second\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Zh7cVNx5Rl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The loan market as a whole is highly competitive and often dominated by rate comparisons and incentive offers. Bridging loans, however, are a slightly different beast. They\'re more about recognising different life circumstances and problem solving. Other short-term bridging loan specialists had emerged and launched strong brand campaigns. Our key challenge was to create a brand that focuses on solutions and creatively positions Funding among its competitor set as a short-term loan company with a difference.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BvMTRKtmI7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"In order to educate the market on when a bridging loan might be required and then provide differentiation for Funding, it became abundantly clear the campaign required a creative and catchy hook to drive interest and memorability. The strategic solution was to centre on a theme of ‘build a bridge’. This theme was seen to be positive and proactive, with language that borrowed from colloquial usage and even had humorous undertones. Strategically, it provided a strong platform and foundation to work on creatively and talk to the target audience in a very authentic way.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dA5dzfYeRH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143003\",\"143000\",\"142996\",\"142994\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvLNQH8ye2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The creative development process, as it always should, started with a strong consideration of the target audience. Knowing that a lot of the target market were parents, we decided to let the innocent wisdom of children shine through by delivering the ‘build a bridge’ solution. Children can turn the complex into simple through thought and action, which is exactly what we showed in this campaign—the drawing of a bridge from one home to another, which created a visual hook. The viewer is drawn in by the surprising nature of the child explaining the product in just a few words, and then left with a smile as she demonstrates it in permanent marker.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fL4MPWaBk1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The first rule of advertising is to get noticed, which this campaign achieves by not looking like a bank or finance ad. The impact of the campaign is created through pure relevancy, showing real family people in real situations. The messaging is loud and clear and helped to educate the market on the nature of short-term bridging loan options and drive traffic to the Funding site.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Funding | Branding and awareness campaign','Funding is an online financial services company specialising in the niche area of bridging loans. They came to New Word Order with a two-fold problem. Firstly, the category they operate in (bridging loans) wasn’t entirely understood by their target market and needed further clarification. Secondly, not enough people (or even industry brokers) knew the Funding brand at all and the beneficial products they offered. A cut-through campaign was needed, stat.','funding, brokers, money, loans, advertising, campaign, tv, video',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139233,143009,1,'Funding','2022-11-22 21:32:49','2022-11-22 21:32:49','1902c58e-18af-494a-8c11-50d0d0de7076',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Branding and awareness campaign',NULL,NULL,'Funding is an online financial services company specialising in the niche area of bridging loans. They came to New Word Order with a two-fold problem. Firstly, the category they operate in (bridging loans) wasn’t entirely understood by their target market and needed further clarification. Secondly, not enough people (or even industry brokers) knew the Funding brand at all and the beneficial products they offered. A cut-through campaign was needed, stat.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ziNtnsznO9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/765527128?h=5517b00b29&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Build a bridge - Funding.com.au TVC 30 second\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Zh7cVNx5Rl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The loan market as a whole is highly competitive and often dominated by rate comparisons and incentive offers. Bridging loans, however, are a slightly different beast. They\'re more about recognising different life circumstances and problem solving. Other short-term bridging loan specialists had emerged and launched strong brand campaigns. Our key challenge was to create a brand that focuses on solutions and creatively positions Funding among its competitor set as a short-term loan company with a difference.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BvMTRKtmI7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"In order to educate the market on when a bridging loan might be required and then provide differentiation for Funding, it became abundantly clear the campaign required a creative and catchy hook to drive interest and memorability. The strategic solution was to centre on a theme of ‘build a bridge’. This theme was seen to be positive and proactive, with language that borrowed from colloquial usage and even had humorous undertones. Strategically, it provided a strong platform and foundation to work on creatively and talk to the target audience in a very authentic way.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dA5dzfYeRH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143003\",\"143000\",\"142996\",\"142994\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvLNQH8ye2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The creative development process, as it always should, started with a strong consideration of the target audience. Knowing that a lot of the target market were parents, we decided to let the innocent wisdom of children shine through by delivering the ‘build a bridge’ solution. Children can turn the complex into simple through thought and action, which is exactly what we showed in this campaign—the drawing of a bridge from one home to another, which created a visual hook. The viewer is drawn in by the surprising nature of the child explaining the product in just a few words, and then left with a smile as she demonstrates it in permanent marker.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fL4MPWaBk1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The first rule of advertising is to get noticed, which this campaign achieves by not looking like a bank or finance ad. The impact of the campaign is created through pure relevancy, showing real family people in real situations. The messaging is loud and clear and helped to educate the market on the nature of short-term bridging loan options and drive traffic to the Funding site.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Funding | Branding and awareness campaign','Funding is an online financial services company specialising in the niche area of bridging loans. They came to New Word Order with a two-fold problem. Firstly, the category they operate in (bridging loans) wasn’t entirely understood by their target market and needed further clarification. Secondly, not enough people (or even industry brokers) knew the Funding brand at all and the beneficial products they offered. A cut-through campaign was needed, stat.','funding, brokers, money, loans, advertising, campaign, tv, video',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139235,143011,1,'Department of Education','2022-11-22 21:37:02','2022-11-22 21:37:02','4cf7c2ee-dcee-466e-8e52-0e485caa8e13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Early childhood care service providers application video',NULL,NULL,'Early childhood care is an integral part of our community but the Department of Education was experiencing issues with the service provider application process. They believed most of the complications came from simple misunderstandings, so they asked us to create a simple, engaging animated video to break down the process in easy-to-follow steps.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-It8nqzuyY4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:75% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/771857698?h=fbf07172e6&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"8147_DoE Early childhood services video 07.mp4\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OSv1zZoTd7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The department’s issues came down to a few common problems that kept occurring during the application process for early childhood care service providers. These pipeline barriers these caused problems and became a headache for the department.\\nOur challenge was to make an accessible, easy-to-understand explainer video that would ensure more applications are completed properly before being submitted.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pkInp3sX8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Once the client identified the core issues and nailed down the correct process, we produced a simple voiceover and animation strategy to address the problems concisely and clearly. \\nIt was important to keep the process really simple while making sure the applications would contain all the required information. Our approach involved balancing authority with friendliness to connect with the audience.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MRDlR2NjSv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using customised stock illustration, we produced a five-minute animated video that combined relatable creativity with clear actions.\\nWe represented our diverse audience with the illustration and voiceover to show the application process, highlight the fields that require more attention and express the specificities that are commonly missed.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LpUDcdBBO6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The video really breaks down a complex process into actionable steps. \\nEarly childhood care is a vital service for many Queensland families—and the higher the quality of the care, the better. So it was our pleasure to help make the process for providers just that little bit easier and quicker.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Department of Education | Early childhood care service providers application video','Early childhood care is an integral part of our community, but the Department of Education was experiencing issues with the service provider application process. They believed most of the complications came from simple misunderstandings, so they asked us to help them create a simple, engaging animated video to break down the process in easy-to-follow steps.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139237,143013,1,'Department of Education','2022-11-22 21:38:15','2022-11-22 21:38:15','ade19d4c-d363-4248-bfb9-fd7513a6a0ac',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Early childhood care service providers application video',NULL,NULL,'Early childhood care is an integral part of our community but the Department of Education was experiencing issues with the service provider application process. They believed most of the complications came from simple misunderstandings, so they asked us to create a simple, engaging animated video to break down the process in easy-to-follow steps.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-It8nqzuyY4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:75% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/771857698?h=fbf07172e6&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"8147_DoE Early childhood services video 07.mp4\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OSv1zZoTd7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The department’s issues came down to a few common problems that kept occurring during the application process for service providers. These pipeline barriers these caused problems and became a headache for the department.\\nOur challenge was to make an accessible, easy-to-understand explainer video that would ensure more applications are completed properly before being submitted.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pkInp3sX8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Once the client identified the core issues and nailed down the correct process, we produced a simple voiceover and animation strategy to address the problems concisely and clearly. \\nIt was important to keep the process really simple while making sure the applications would contain all of the required information. Our approach involved balancing authority with friendliness to connect with the audience.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MRDlR2NjSv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using customised stock illustration, we produced a five-minute animated video that combined relatable creativity with clear actions.\\nWe represented our diverse audience with the illustration and voiceover to show the application process, highlight the fields that require more attention and express the specificities that are commonly missed.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LpUDcdBBO6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The video really breaks down a complex process into actionable steps. \\nEarly childhood care is a vital service for many Queensland families—and the higher the quality of the care, the better. So it was our pleasure to help make the process for providers just that little bit easier and quicker.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Department of Education | Early childhood care service providers application video','Early childhood care is an integral part of our community, but the Department of Education was experiencing issues with the service provider application process. They believed most of the complications came from simple misunderstandings, so they asked us to help them create a simple, engaging animated video to break down the process in easy-to-follow steps.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139239,143015,1,'Let us introduce ourselves','2022-11-22 21:40:46','2022-11-22 21:40:46','14068627-26a2-4564-a115-b1cbd55d2287',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CYlWxVLWd4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Liam\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We thought we hired an award-winning advertising copywriter. But we ended up with so much more: a ska band ex-roadie, an optimistic golfer and a brave, crustacean-battling chef. \\n\\nNow that’s value.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wZCcn69t8v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142939\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CCjcrDQfKO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Liam was born and raised in Brisbane but escaped the oppressive heat to live in London and Hong Kong (and then found it again in Guam) for seven years.\\n\\nNow back in his hometown, he carries with him the secrets of a journey well-travelled—from paying his way through uni as a roadie for ska band The Furious Turtles, to winning Australian and international advertising and production copywriting awards throughout his career. \\n\\nWe’re sure we can thank his time on the road—it\'s classified but imaginably riddled with life-altering stories—for the effortless creativity he brings day to day. Second to that, maybe also his time at industry-renowned AWARD School.\\n\\nSpeaking of formative experiences, Liam’s gruff exterior was carefully constructed back in his boarding school days, when he was an easy target as the only soft city kid among a sea of tough country kids. \\n\\nHe quickly discovered that no amount of skiing holidays or golfing hole-in-ones (current tally: zero from 50,000 attempts) could win the respect of teenage bogans. A lesson in humility for Liam, perhaps—we’ve all been there at some point. \\n\\nDespite his otherwise bourgeois-sounding life where the (golfing) green is grassier, Liam actually knows all about the importance of sacrifice. \\n\\nAfter all, he cooks his famous garlic prawns every year for his family Christmas (and last year for the NWO Christmas) despite his drastic, ironic and tragic crustacean allergy. When he defeats the prawns, they defeat him right back.\\n\\nYou can actually cook the dish yourself following his not-so-secret recipe  <a href=\\\"https://newwordorder.com.au/lp/christmas-2021\\\">here.</a> It’s delicious—you can’t take Liam’s word for it, of course, but you can take ours.\\n\\nHe has cooking all locked down, but he’ll be the first to tell you cleaning isn’t his area of expertise. We can’t have everything. No reason to fret, though—isn’t that what kids are for? And he’s got four of them, so he’s very good at delegating.\\n\\nA of couple residents in his household live it lush and chore-free, though: his 50kg Irish Wolfhound, Luna, and his 8kg Cavoodle, Rusty. In fact, they’ve delegated to Liam the chore of walking them every morning. \\n\\nThose gorgeous dogs are part of what we love about Liam, along with his dry sense of humour, his endless creative expertise and his penchant for telling a good story—whether it’s through an ad script, or just a weekend anecdote.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and the Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lwRZRhzi23\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EHGcch1Nd8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141527\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139241,143017,1,'Heart HQ','2022-11-25 04:38:45','2022-11-25 04:38:47','c7eac900-9a0f-44f1-b860-c47adcd7e5d6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'World-class medical with heart',NULL,NULL,'Big ambitions need a brand that accurately reflects their vision and mission, and that’s exactly what we sought to deliver for this client. With Heart HQ, and with the enormous amount of collateral that supports it, we’ve well and truly delivered this.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-P3bQXxcsfs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44878\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uicOuPt9of\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Sunshine Coast Heart Specialists was growing and changing. \\n\\nIn six years, the cardiology practice had grown to nearly 50 staff with rooms throughout the coast. Their cardiologists represented all of the possible sub-specialties within their profession. Within weeks, they would move to new purpose-built premises at Sippy Downs. They were about to open their own coronary CT clinic to the public and a heart murmur clinic to support GPs—both nation-leading initiatives.\\n\\nThe directors realised their geography-specific name would limit their ability to keep growing, and so renaming and rebranding was a strong need.\\n\\nTheir growth had also occurred at such a rate that there was strategic work needed to understand their market share and to form a marketing strategy that would offer them opportunities for segmentation. Growth is reliant on satisfied referring GPs and specialists, and so attention could never be removed from this area.\\n\\nFinally, such growth was also outstripping their capacity to fill the need. Cardiology is a highly specialised field within medicine, and to grow sustainably, they needed to attract more associates.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Lgp01pReVY\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44873\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-aTg3yWEGh3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Objective\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The practice needed a new name and brand assets for the business to accurately convey the mission and vision of the business, and to grow the business’s referrer and patient networks.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gG5PvaSbvX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44864\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oXH0AQY2PC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our brand strategy drew on customer and referrer interviews, competitor insights and employee workshops, which also helped to define the brand values of the business. \\n\\nIt was clear the practice and the individual directors were held in high esteem by their medical colleagues. They introduced surgical procedures to the Sunshine Coast that were, until then, only practised by a few in major cities. They were introducing clinics and services that had not been seen in regional areas in Australia. This gave us the confidence to be able to propose a tagline that truthfully boasted, ‘world-class cardiac care’.\\n\\nThe second part of the tagline reads: ‘…on the Sunshine Coast’. To compensate for the move away from the regionalisation in their original brand name—Sunshine Coast Heart Specialists—we added it to the tagline. The reason for this is that patients along the coast appreciated the practice was the only place where they could receive the full spectrum of care without having to travel to Brisbane.\\n\\nFinally, an important branding insight from our research was that patients were on a health journey—sometimes quite a precarious one—and could be experiencing anxiety. Patients told us they appreciated the kindness each doctor showed to them in their time of need. Simply promoting expertise could come across as cold and would not fairly represent the doctors’ deep commitment to quality care. So the Heart HQ brand connects with patients on a personal level and makes them feel reassured that they matter.\\n\\nIt’s this mix of strategy and heart that makes Heart HQ a brand that will stand tall among all the others.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ISdJyIN6AW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"44874\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDNF080GkR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A name, tagline, brand visual identity, website, signage and countless assets that match up with Heart HQ’s brand promise of delivering world-class cardiac care on the Sunshine Coast.\\n\\nThe quality of the brand assets significantly differentiates Heart HQ from all other competitor practices.\\n\\nCreatively, the brand is modern, refreshing and arguably not what you would expect from an organisation in the medical field – but at the same time, the language is warm, supportive and with just the right amount of authority.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Np5NPasoP9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"##### \\\"Suzanne and her team came highly recommended. It was a great journey working with them to develop our new brand and we were very impressed with their ideas, enthusiasm and innovation. We have a new brand, a new identity and the confidence now to deliver on our growth plans.\\\"\\n\\n**Dr Peter Larsen**\\n<br>Managing Director – Heart HQ\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3VvPbVRO0Q\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"45205\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AUTeHLiAy1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"##### \\\"NWO is part of our success journey.\\\"\\n\\n**Dr Peter Larsen**\\n<br>Managing Director – Heart HQ\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'Heart HQ','Big ambitions need a brand that accurately reflects their vision and mission, and that’s exactly what we sought to deliver for this client.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139242,143018,1,'Ramsay Health Care','2022-11-25 04:39:02','2022-11-25 04:39:03','080ffa10-a7fa-48a5-9073-a55f47ea630a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Weekend Warrior campaign',NULL,NULL,'We work so hard through the week, we deserve to play hard over the weekend. When we find ourselves reliving our glory days through social sport or using our house reno as a creative and active outlet—sometimes it can be at the risk of our safety. Ramsay Health Care knows accidents happen, and they asked us to help them showcase how their holistic orthopaedic care services get Weekend Warriors back on their feet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141736\",\"141670\",\"141671\",\"141672\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDjAdefp2G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Ramsay Health Care asked us to help develop a campaign to promote their orthopaedic services across their network of hospitals. The campaign served to educate the target market on what makes Ramsay’s orthopaedic offerings special, while also calling them to check whether their health insurance covers Ramsay hospitals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BWwvmn3pwX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141745\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using Ramsay’s target market of orthopaedic patients in their 40s and 50s, we created the ‘weekend warrior’ characters: everyday people who take on their alter ego when the working week is over. The social sports star who pushes themself to go for that bicycle kick or elaborate jump pass. The reno kings and queens who love Bunnings outings and would never pay someone else to do work around the house that they could do themselves.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ynJgqMQCET\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s an ocean of campaigns out there from medical brands that all look the same—clinical and serious. Ramsay stepped outside of the same-same and opted for more lively, exaggerated shots of Weekend Warriors in action, being injured and seeking care from a Ramsay hospital.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141741\",\"141742\",\"141743\",\"141744\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FF7V2IzNlc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With fresh, exciting and relatable action shots complemented by copy that captures the work-hard-play-hard lifestyle, our campaign for Ramsay cut through to the market with personality and an element of surprise.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Ramsay Health Care','Weekend Warrior campaign',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139244,143020,1,'The world of modern marketing','2022-11-25 05:02:43','2022-11-25 05:02:43','0299f53f-ad37-4980-b329-16d164073e47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p80I0czk4W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<b> Being a chief marketing (CMO) is a tough gig. We get that. You have multiple accountabilities staring long and hard at you before you’ve even had your morning coffee. The days of set-and-forget media plans, generous marketing budgets and long lunches with your creative agency peeps are long gone. </b>\\n\\nThe pain points of CMOs are often remarkably similar across different industries and sectors. As an agency who works closely with many CMOs in diverse fields from healthcare to industrial lubricants, we witness first-hand the many modern pressures of commercial marketing. There are strategic plans to deliver, performance metrics to be measured and ROI to be rationalised.\\n\\n<h5> Diamonds form under pressure </h5>\\nSure, you’re in the hot seat but we just applaud the fact you have a seat at the big table. Professional marketers haven’t always been welcome in the C-suite. But in recent times, the importance and relevance of marketing as a function of business success has been elevated. Yes, that does come with an bigger set of expectations and pressures, but that’s why we’re here to help.\\n\\nWhen your standard Tuesday morning involves planning and strategising around things like revenue growth, market share, user experience and brand performance, having an agency that is built for speed and delivery is a distinct advantage. Often our job is to help CMOs turn their board/exec-approved long-term strategies into actionable short-term tactics. \\n\\nAfter all, what’s the point of having marketing ammunition if you don’t have the secret weapon to fire it? \\n\\n<h5> We are your secret weapon </h5>\\n\\nPart of our value to CMOs is bringing a level of experience and skillset that isn’t readily available within your internal team. Or managing projects that just aren’t suitable for your big agency of record. \\n\\nAs pressures and performance metrics come to bear, you want to rely on an agency who can be responsive and proactive as required. People who can turn around projects quickly and efficiently. Marketing specialists who understand how lead generation and revenue growth is a daily challenge, not a one-off campaign. \\n\\nFear not, CMOs. We don’t just feel your pain. We share it. And it makes us all the more committed and determined to find innovative and fit-for-purpose solutions for your business. \\n\\nFind out more about how we add a secret weapon to your agency roster by downloading a short guide <a href=https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/NWO-secret-weapon.pdf>here</a>.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139245,143021,1,'Christmas 2022','2022-11-25 05:10:48','2022-12-01 07:05:22','d3eb2efb-137e-4c73-9d1f-8cd984a34824',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Summer in Oz',NULL,NULL,'2022 has been another wonderful year at NWO, and we want to thank you for being such an integral part of our success. Our wish is that you, your friends and your family enjoy a relaxed and fun summer break before we all embark on the new opportunities that await us in 2023.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OGQIq0BfOU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143032\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9zxejWt8WL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our long hot summers may be our traditional wind-down time, but summer is also a time of cooking, BBQs, eating, drinking and entertaining. Whether you’re feeding the hordes or just looking for some new inspiration, you’ll find it all here in these pages.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This is our third cookbook edition, and this year we’ve slightly diverged from our Christmas theme to reflect all the wonderful tastes of summer. From fresh salads to zesty drinks, there’s sure to be a summertime treat with your name on it...\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PYP7dvJTnA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143033\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'New Word Order. Summer in Oz.','2022 has been another wonderful year at NWO, and we want to thank you for being such an integral part of our success. Our wish is that you, your friends and your family enjoy a relaxed and fun summer break before we all embark on the new opportunities that await us in 2023.',NULL,'New Word Order. Summer in Oz.',NULL,'https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/NWO-Recipe-book-2022.pdf','Our favourite treats for the summer holidays','Download now',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139246,143022,1,'Christmas 2021','2022-11-25 05:13:44','2022-11-25 06:29:05','ff074929-9c5b-4c0e-a95a-76add9ee8541',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Necessities for Christmas festivities',NULL,NULL,'Enjoy the second volume of our cookbook full of delicious food and drinks that have brought our family together for years. We hope the recipes here inspire some new additions to your table.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fPMtIiCCpa\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"87584\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6c1yWqJmnt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87592\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Entrées\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Liam’s** Doyle’s garlic prawns\\n**Bruce’s** ceviche\\n**Kimi’s** crispy oven-baked mushroom\\n**Hazel’s** homemade peanut butter dog treats\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QYWbr4RofK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87595\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Mains\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Scott’s** instant legend beef brisket BBQ\\n**Bec’s** pumpkin and macadamia quinoa healthy yum\\n**Kat’s** roast Australian beef with fresh herb dressing\\n**Tim’s** 24-hour brined pork belly roast\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9TyMiznUfs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87596\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Sides\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Andrew\'s** roasted brussels sprouts with crispy pancetta\\n**Kate\'s** peach, pomegranate and goat cheese salad\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TbkBwFYwQK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87601\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Desserts\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Lynn\'s** chocolate carrot cake\\n**Kerry\'s** chocolate spider\\n**Margaret\'s** white Christmas cake\\n**Suz\'s** Nanna Gilbert\'s overnight plum pudding\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DJniqYj8iB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87599\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Drinks\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Jo\'s** start the day as you mean to go on Bloody Mary\\n**Bree\'s** Gingy\'s martini\\n**Ryan\'s** summer citrus ale\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Necessities for Christmas festivities','Enjoy the second volume of our cookbook full of delicious food and drinks that have brought our family together for years. We hope the recipes here inspire some new additions to your table.',NULL,NULL,NULL,'https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/2021-Necessities-for-Christmas-festivities-Vol2.pdf','Get your copy of Necessities for Christmas festivities.','Download now',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139247,143023,1,'I Stock 1215011930','2022-11-25 05:29:49','2022-11-25 05:33:34','c5f2a81e-f1ac-4c26-af09-3c6c19eb5c1b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/iStock-1215011930.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/iStock-1215011930.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/iStock-1215011930.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1707_crop_center-center_82_line/iStock-1215011930.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/iStock-1215011930.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/iStock-1215011930.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/iStock-1215011930.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/iStock-1215011930.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1024_crop_center-center_82_line/iStock-1215011930.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x2048_crop_center-center_82_line/iStock-1215011930.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x853_crop_center-center_82_line/iStock-1215011930.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1707_crop_center-center_82_line/iStock-1215011930.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x682_crop_center-center_82_line/iStock-1215011930.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1365_crop_center-center_82_line/iStock-1215011930.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x512_crop_center-center_82_line/iStock-1215011930.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x426_crop_center-center_82_line/iStock-1215011930.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1024,\"3072\":2048,\"1280\":853,\"2560\":1707,\"1024\":682,\"2048\":1365,\"768\":512,\"640\":426},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":3864,\"originalImageHeight\":2577,\"placeholder\":\"/9j/4AAQSkZJRgABAQEA8ADwAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAKABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQIE/8QAIhAAAgEDBAIDAAAAAAAAAAAAAQIDABExBAUSISJRYYGx/8QAFgEBAQEAAAAAAAAAAAAAAAAAAAEC/8QAGBEBAQADAAAAAAAAAAAAAAAAAAECIUH/2gAMAwEAAhEDEQA/AIgeLUESaqRmkc2I78V9fVE6X2yFF00sZIDuLd5tkUWbaN2jjHIhFBxe3wKVjIFAx4js5YftI2//2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#8d8d8d\",\"#305041\",\"#e3dee2\",\"#524244\",\"#55603f\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":1024,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139250,143026,1,'Department of Education','2022-11-25 05:54:23','2022-11-25 05:54:23','fb20eac1-9912-405f-82c3-b7923a5d64e8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Early childhood care service providers application video',NULL,NULL,'Early childhood education and care is an integral part of our community but the Department of Education had an opportunity to improve the service provider application process. They believed there was a better way to help applicants navigate the process, so they asked us to create a simple, engaging animated video to break down the submission in easy-to-follow steps.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-It8nqzuyY4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:75% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/771857698?h=fbf07172e6&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"8147_DoE Early childhood services video 07.mp4\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OSv1zZoTd7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The department’s need came down to a few common misunderstandings that kept occurring during the application process for service providers. These pipeline barriers absorbed time and increased administration for the department’s Regulatory Authority. \\nOur challenge was to make an accessible, easy-to-understand explainer video that would ensure more applications are completed properly before being submitted.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pkInp3sX8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Once the client identified the core issues and nailed down the correct process, we produced a simple voiceover and animation strategy to address the problems concisely and clearly. \\nIt was important to keep the process really simple while making sure the applications would contain all of the required information. Our approach involved balancing authority with friendliness to connect with the audience.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MRDlR2NjSv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using customised stock illustration, we produced a five-minute animated video that combined relatable creativity with clear actions.\\nWe represented our diverse audience with the illustration and voiceover to show the application process, highlight the fields that require more attention and express the specificities that are commonly missed.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LpUDcdBBO6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The video really breaks down a complex process into actionable steps.\\nEarly childhood education and care are vital services for many Queensland families—and the higher the quality of the care, the better. So it was our pleasure to help make the process for providers just that little bit easier and quicker.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Department of Education | Early childhood care service providers application video','Early childhood education and care is an integral part of our community but the Department of Education had an opportunity to improve the service provider application process. They believed there was a better way to help applicants navigate the process, so they asked us to create a simple, engaging animated video to break down the submission in easy-to-follow steps.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139252,143028,1,'Simplifying the complex: Fifteen years of marketing schools','2022-11-28 23:23:03','2022-11-28 23:23:03','e01d95a6-e761-4ff1-866b-baa28eb27610',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WAYo0QEnCs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"After 20 years of marketing—including 15 years working with schools across Queensland and New South Wales—I am steadfast in my belief that there is no marketing challenge as complex as that faced by schools.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"In what other industry would you find thousands of individual stakeholders—students, parents, teachers, alumni and more—all with do-or-die expectations?\\n\\nOr an environment that can, quite honestly, change the trajectory of children’s lives?\\n\\nThen you have the two very distinct markets—internal and external—often with very different needs that need to be met with minimal budgets.\\n\\nThe experience of school changed little for nearly a century but, in the past 20 years, it has evolved in such leaps and bounds that today’s parents struggle to recognise it.\\n\\nPhilosophically, there are few industries I can think of that have such a strong evidence base to guide practice—here I’m thinking of teaching and learning—yet the required outcome is often diametrically opposed to it. \\n\\nIt’s little wonder that I find the business of marketing schools endlessly fascinating.\\n\\nOnly this morning I was in another principal’s office, talking through these very complexities. In our conversation, we touched on what I’ve discovered over the years are three bedrock principles every school needs as their marketing foundation. They’re my way of transforming a little of the complex into the simple.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Esbo1iQq5g\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"1. Work out what makes you unique\",\"plainText\":\"Marketing and enrolments teams live and die by their numbers. \\n\\nIt is endlessly tempting, then, to try to go wide in your appeal so that you create the biggest possible net. \\n\\nIn practice, though, it means no-one knows what you stand for. \\n\\nThe better alternative is to embrace what makes you unique and then market that hard. You’ll end up attracting families that are the right fit for you and work hard as your ambassadors. \\n\\nInternally, there’ll be great cohesion, too, because you’ll attract and retain great educators who get what you’re about and support it in their words and actions.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-v1FFRTuEFs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"2. Don’t be afraid to look like you’re unique\",\"plainText\":\"If you’re bored one day in your office, try this game. \\n\\nGet ads from three schools, and then block out their hats and uniforms. Can you still tell them apart? \\n\\nIt astounds me that we continue to use sterile, look-alike images—hey, here’s a girl in a lab coat with a test tube as proof that we promote girls in STEM!—that don’t reflect the day-to-day experience of what it is to learn at your school. \\n\\nCelebrate your uniqueness—and set yourself apart from your competitors—by choosing unique visual styles and photography.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cMg5IvARdG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"3. Now stay unique\",\"plainText\":\"Over time, teachers and leaders of schools get to know each other pretty well. \\n\\nPrincipals, in particular, know other schools like bookies know racehorses. The net result in marketing is that your great idea quickly becomes next year’s norm… and after a few years, what was edgy is simply outdated. \\n\\nWise schools invest in a middle ground here. \\n\\nThey start off strong and then review and refresh their brand every year or two. \\n\\nThat way, subtle tweaks don’t destabilise your internal audience but you stay fresh and relevant externally.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3XrIiJiL9w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Want to know more?\",\"plainText\":\"Suzanne advises schools on sustainable marketing strategy that helps them get the most from their internal resources. To chat, phone <a href=\\\"tel:07 3334 8340\\\">07 3334 8340</a> or email <a href=\\\"mailto:suzanne@newwordorder.com.au\\\">suzanne@newwordorder.com.au.</a>\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simplifying the complex: Fifteen years of marketing schools','After 20 years of marketing—including 15 years working with schools across Queensland and New South Wales—I am steadfast in my belief that there is no marketing challenge as complex as that faced by schools.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139253,143029,1,'NWO Christmas website2','2022-11-29 03:31:52','2022-11-29 03:31:52','f6f688e9-82e7-48bb-8818-c51dc6e97e2f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/NWO-Christmas_website2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/NWO-Christmas_website2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/NWO-Christmas_website2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2048_crop_center-center_82_line/NWO-Christmas_website2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/NWO-Christmas_website2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/NWO-Christmas_website2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/NWO-Christmas_website2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/NWO-Christmas_website2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/NWO-Christmas_website2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2048_crop_center-center_82_line/NWO-Christmas_website2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/NWO-Christmas_website2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/NWO-Christmas_website2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"1024\":1024,\"2048\":2048,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":2250,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABAMF/8QAIBAAAQQBBAMAAAAAAAAAAAAAAQIDBBEABRIhMSIkkf/EABcBAAMBAAAAAAAAAAAAAAAAAAIDBAX/xAAeEQACAgEFAQAAAAAAAAAAAAABAgAhUQMEERIiMf/aAAwDAQACEQMRAD8A1peqLhgBuIuQSLJSQK+nMXbr3EvccXLQZq57XnHXEcu6VRJGGyqrVcFT9xCSN7h9Zwbx2nA0XCL7EcytWIzSoj6Vl2QocdAZYiqSDEuxFT//2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#edb74f\",\"#262418\",\"#f8e4c9\",\"#c86b41\",\"#bf4e31\"],\"lightness\":51,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139255,143031,1,'About us','2022-12-01 04:26:31','2022-12-01 04:26:31','3fe0587a-c9ca-42a5-95df-31a58ba64b8a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17893\",\"17875\",\"17996\",\"17899\",\"17941\",\"17881\",\"17934\",\"17887\",\"30433\",\"17921\",\"97259\",\"141616\",\"141642\",\"142716\",\"142039\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | About us','For 20 years we have helped businesses, organisations and governments to solve problems, unlock potential and connect with people to inspire action.','strategy, brand, campaign, behaviour change, engagement, digital, video, content',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139256,143032,1,'NWO Christmas website wide1','2022-12-01 06:18:48','2022-12-01 06:18:48','25bb34b4-47a9-45f6-aa2f-124eadf2b056',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Christmas_website-wide1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Christmas_website-wide1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Christmas_website-wide1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Christmas_website-wide1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Christmas_website-wide1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Christmas_website-wide1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Christmas_website-wide1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Christmas_website-wide1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Christmas_website-wide1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Christmas_website-wide1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Christmas_website-wide1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Christmas_website-wide1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Christmas_website-wide1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Christmas_website-wide1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Christmas_website-wide1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Christmas_website-wide1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABAX/xAAeEAABAwQDAAAAAAAAAAAAAAABAAIDBBETISIzQf/EABgBAAMBAQAAAAAAAAAAAAAAAAMEBQIG/8QAHBEAAgICAwAAAAAAAAAAAAAAAAIBESExAwRR/9oADAMBAAIRAxEAPwC86Utj4jfpXOq0eFOFuciKTIY7uvs6KNwozSDerwGalTclGn62qr1tQLPs/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#f3b62e\",\"#fae3c2\",\"#fad875\",\"#fbdc5a\",\"#ea8723\"],\"lightness\":69,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139257,143033,1,'NWO Christmas website wide2','2022-12-01 06:18:52','2022-12-01 06:18:52','18f66a89-266a-4302-bc85-8e7917ad19e7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Christmas_website-wide2.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Christmas_website-wide2.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Christmas_website-wide2.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Christmas_website-wide2.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Christmas_website-wide2.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Christmas_website-wide2.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Christmas_website-wide2.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Christmas_website-wide2.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Christmas_website-wide2.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Christmas_website-wide2.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Christmas_website-wide2.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Christmas_website-wide2.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Christmas_website-wide2.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Christmas_website-wide2.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Christmas_website-wide2.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Christmas_website-wide2.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAgMEBv/EACAQAAICAQMFAAAAAAAAAAAAAAEDAhEAEiExNDVhcoH/xAAVAQEBAAAAAAAAAAAAAAAAAAADAf/EACARAAEDAwUBAAAAAAAAAAAAAAEAAgMhMTIFE0FxwYH/2gAMAwEAAhEDEQA/ANXBaEqYFCIgReom783jChQk7tqoVSUxAkSFwlGr43w5WtLgXcWUiDiwho7UE+zH3x5sldKzH1KHRr+4M3ikWTu/V//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#d9eff6\",\"#d94c70\",\"#4ec3e5\",\"#edc654\",\"#81c5e1\"],\"lightness\":70,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139258,143034,1,'NWO Christmas website wide3','2022-12-01 06:18:57','2022-12-01 06:18:57','7ed8c338-7963-441c-9ef6-c8bbeb828326',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Christmas_website-wide3.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Christmas_website-wide3.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Christmas_website-wide3.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Christmas_website-wide3.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Christmas_website-wide3.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Christmas_website-wide3.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Christmas_website-wide3.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Christmas_website-wide3.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Christmas_website-wide3.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Christmas_website-wide3.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Christmas_website-wide3.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Christmas_website-wide3.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Christmas_website-wide3.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Christmas_website-wide3.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Christmas_website-wide3.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Christmas_website-wide3.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFAABAAAAAAAAAAAAAAAAAAAABf/EACIQAAEEAQIHAAAAAAAAAAAAAAEAAgMEESFRBSIzNUFyc//EABcBAAMBAAAAAAAAAAAAAAAAAAIDBAX/xAAeEQACAgICAwAAAAAAAAAAAAAAAgERAyExMgRB8P/aAAwDAQACEQMRAD8AS4pDDcpgXY2mLI5seclZWGZipU0HVaqwoQUoGgV2CNgGm413Vay9bAXHj2Iu7KfoErFzIfl9g6fpQexVC8CH7R96P//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#c9804d\",\"#24271f\",\"#ebddc7\",\"#f5cf67\",\"#a62a27\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139259,143035,1,'NWO Christmas website wide4','2022-12-01 06:19:01','2022-12-01 06:19:01','b882cc57-b1f1-4468-b705-290f6ce5f2c4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Christmas_website-wide4.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Christmas_website-wide4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Christmas_website-wide4.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Christmas_website-wide4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Christmas_website-wide4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Christmas_website-wide4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Christmas_website-wide4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Christmas_website-wide4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Christmas_website-wide4.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Christmas_website-wide4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Christmas_website-wide4.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Christmas_website-wide4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Christmas_website-wide4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Christmas_website-wide4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Christmas_website-wide4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Christmas_website-wide4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAwT/xAAmEAABAgUACwAAAAAAAAAAAAABAgMABBESIQUiMTM0QVFzgrHB/8QAFgEBAQEAAAAAAAAAAAAAAAAAAwIE/8QAGhEBAAMBAQEAAAAAAAAAAAAAAQACAxExMv/aAAwDAQACEQMRAD8ALSbUuzJNtFZWsm6hNxOekEX0eiTa1zrVqsOWD7UuUOtLU3Wp1cbMYHOJuvOMzAdUl53/AID7Dvsvf6jtcEruK9QO3hDz9Z//2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#af7f87\",\"#233029\",\"#c57532\",\"#732d23\",\"#dbddc4\"],\"lightness\":42,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139260,143036,1,'NWO Christmas website wide5','2022-12-01 06:19:05','2022-12-01 06:19:05','f6b66573-7aff-4c34-bd89-a3ff9189d69c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Christmas_website-wide5.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Christmas_website-wide5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Christmas_website-wide5.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Christmas_website-wide5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Christmas_website-wide5.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Christmas_website-wide5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Christmas_website-wide5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Christmas_website-wide5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Christmas_website-wide5.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Christmas_website-wide5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Christmas_website-wide5.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Christmas_website-wide5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Christmas_website-wide5.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Christmas_website-wide5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Christmas_website-wide5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Christmas_website-wide5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAwQF/8QAJRAAAgECAgsAAAAAAAAAAAAAAQMCAAQRchITISIxMzRRcZHB/8QAFgEBAQEAAAAAAAAAAAAAAAAABAMC/8QAHhEAAwACAQUAAAAAAAAAAAAAAAECAzIREjEzYXH/2gAMAwEAAhEDEQA/AHgtKrqDlGJJ3Thww70S/XYbkiGkqCudNl3FsVx1kRsIHn1W8bcojXRT4l8pE1r1q8vypZNGJXkk1V84ZapOgOd39Z//2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#b67d5d\",\"#3a3c29\",\"#d8d0d4\",\"#a6cf7c\",\"#7b2c26\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139261,143037,1,'NWO Christmas website wide6','2022-12-01 06:19:11','2022-12-01 06:19:11','6b7f07c7-8f74-4acd-af3a-2fc675b54333',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Christmas_website-wide6.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Christmas_website-wide6.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Christmas_website-wide6.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Christmas_website-wide6.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Christmas_website-wide6.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Christmas_website-wide6.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Christmas_website-wide6.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Christmas_website-wide6.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Christmas_website-wide6.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Christmas_website-wide6.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Christmas_website-wide6.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Christmas_website-wide6.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Christmas_website-wide6.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Christmas_website-wide6.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Christmas_website-wide6.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Christmas_website-wide6.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAwQF/8QAJBAAAQMDAQkAAAAAAAAAAAAAAQACAwURMRMEEiEzNGFxcsH/xAAXAQEBAQEAAAAAAAAAAAAAAAAEBQID/8QAHhEAAgEDBQAAAAAAAAAAAAAAAAECAxEyBCExQYH/2gAMAwEAAhEDEQA/ANOSpTTR6dhi4LRnguLlLo0opcgbM50jHu0t83GR3wg1Xa7kx1CMXDcuPTN9fiooCwafyXeVJ12Xg2hgf//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#c58841\",\"#413c26\",\"#dcdfd9\",\"#bab29d\",\"#7f432c\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139262,143038,1,'NWO Christmas website wide7','2022-12-01 06:19:18','2022-12-01 06:19:18','18032198-3181-4f62-a03d-5a3c18eca4f8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Christmas_website-wide7.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Christmas_website-wide7.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Christmas_website-wide7.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Christmas_website-wide7.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Christmas_website-wide7.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Christmas_website-wide7.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Christmas_website-wide7.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Christmas_website-wide7.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Christmas_website-wide7.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Christmas_website-wide7.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Christmas_website-wide7.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Christmas_website-wide7.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Christmas_website-wide7.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Christmas_website-wide7.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Christmas_website-wide7.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Christmas_website-wide7.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAwQF/8QAIRAAAgEDAwUAAAAAAAAAAAAAAQIDAAQSIUFRETZyg7H/xAAWAQEBAQAAAAAAAAAAAAAAAAABAwL/xAAbEQACAgMBAAAAAAAAAAAAAAAAAQIREiExQf/aAAwDAQACEQMRAD8A0793kga2eYXE5kyWMDXHXasLJbsqsW+AXEJsYleWBnOAQqik5cDqONaXJ+jGEGqGfuP1H5SuE2W3G3gaQP/Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#d5cdca\",\"#5d2f34\",\"#b87f44\",\"#aa7a7f\",\"#586b7d\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139263,143039,1,'NWO Christmas website wide8','2022-12-01 06:19:23','2022-12-01 06:19:23','f486b808-1b7e-406d-939a-fed1640bcf6d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Christmas_website-wide8.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Christmas_website-wide8.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Christmas_website-wide8.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Christmas_website-wide8.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Christmas_website-wide8.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Christmas_website-wide8.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Christmas_website-wide8.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Christmas_website-wide8.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Christmas_website-wide8.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Christmas_website-wide8.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Christmas_website-wide8.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Christmas_website-wide8.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Christmas_website-wide8.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Christmas_website-wide8.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Christmas_website-wide8.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Christmas_website-wide8.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQQG/8QAJRAAAgAEAwkAAAAAAAAAAAAAAQIAAwQRBRIxBhMkMzRBcYGR/8QAFwEAAwEAAAAAAAAAAAAAAAAAAAIDAf/EABwRAAICAwEBAAAAAAAAAAAAAAABAgMRMTIiQf/aAAwDAQACEQMRAD8AbEypmVbSwnCFswfXMbD53ieXELEnEMxKqeVXbt2RZSgG1jfWJTz82JWvJdR81/MWY09Gb2q6z0sEujK+T//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#b3c3ab\",\"#282818\",\"#868937\",\"#614a2e\",\"#6c765b\"],\"lightness\":41,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139264,143040,1,'NWO Christmas website wide9','2022-12-01 06:19:28','2022-12-01 06:19:28','7e7bf97b-c476-4a78-bb35-f789925b9f64',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Christmas_website-wide9.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Christmas_website-wide9.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Christmas_website-wide9.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Christmas_website-wide9.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Christmas_website-wide9.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Christmas_website-wide9.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Christmas_website-wide9.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Christmas_website-wide9.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x864_crop_center-center_82_line/NWO-Christmas_website-wide9.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1728_crop_center-center_82_line/NWO-Christmas_website-wide9.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x720_crop_center-center_82_line/NWO-Christmas_website-wide9.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1440_crop_center-center_82_line/NWO-Christmas_website-wide9.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x576_crop_center-center_82_line/NWO-Christmas_website-wide9.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1152_crop_center-center_82_line/NWO-Christmas_website-wide9.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x432_crop_center-center_82_line/NWO-Christmas_website-wide9.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x360_crop_center-center_82_line/NWO-Christmas_website-wide9.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":864,\"3072\":1728,\"1280\":720,\"2560\":1440,\"1024\":576,\"2048\":1152,\"768\":432,\"640\":360},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":4000,\"originalImageHeight\":2250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFAABAAAAAAAAAAAAAAAAAAAABf/EACQQAAIBAgQHAQAAAAAAAAAAAAECAwAEETJhcgUSEyExQbGy/8QAFgEBAQEAAAAAAAAAAAAAAAAAAwQC/8QAHREAAgICAwEAAAAAAAAAAAAAAQIAAxFBEiIyIf/aAAwDAQACEQMRAD8ASjRTdOic46QzeAw94dqlbLsTuWJSKqlOc5h0ltbcQv3aVJGYRgIoJwA1OlZBLDrMWpxbt9j82QbD9qncLUCmzQ7D+qBvJit6n//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#d4c6b9\",\"#394a3b\",\"#cd8728\",\"#da2724\",\"#bc8756\"],\"lightness\":52,\"placeholderWidth\":1536,\"placeholderHeight\":864,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139265,143041,1,'NWO Recipe book 2022','2022-12-01 06:57:38','2022-12-01 06:58:11','4f623fa0-eb68-4200-b765-d6abbbb0aa74',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":[],\"optimizedWebPImageUrls\":[],\"variantSourceWidths\":[],\"variantHeights\":[],\"focalPoint\":[],\"originalImageWidth\":0,\"originalImageHeight\":0,\"placeholder\":null,\"placeholderSvg\":null,\"colorPalette\":[],\"lightness\":0,\"placeholderWidth\":0,\"placeholderHeight\":0,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139266,143042,1,'Sun. Sand. Surf. Sustenance.','2022-12-01 06:59:16','2022-12-01 06:59:16','f9265c95-0014-4cad-82e0-dd5a66e12210',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'New Word Order. Summer in Oz.',NULL,NULL,'2022 has been another wonderful year at NWO, and we want to thank you for being such an integral part of our success. Our wish is that you, your friends and your family enjoy a relaxed and fun summer break before we all embark on the new opportunities that await us in 2023.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OGQIq0BfOU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143032\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9zxejWt8WL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our long hot summers may be our traditional wind-down time, but summer is also a time of cooking, BBQs, eating, drinking and entertaining. Whether you’re feeding the hordes or just looking for some new inspiration, you’ll find it all here in these pages.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This is our third cookbook edition, and this year we’ve slightly diverged from our Christmas theme to reflect all the wonderful tastes of summer. From fresh salads to zesty drinks, there’s sure to be a summertime treat with your name on it...\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PYP7dvJTnA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143033\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TXjVGlpeN8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-Ax8fnuTi2u\",\"content\":{\"fields\":{\"images\":[\"143034\",\"143035\",\"143036\",\"143037\",\"143038\",\"143039\",\"143040\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'New Word Order. Summer in Oz.','2022 has been another wonderful year at NWO, and we want to thank you for being such an integral part of our success. Our wish is that you, your friends and your family enjoy a relaxed and fun summer break before we all embark on the new opportunities that await us in 2023.',NULL,'New Word Order. Summer in Oz.',NULL,'https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/NWO-Recipe-book-2022.pdf','Our favourite treats for the summer holidays','Download now',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139268,143044,1,'Sun. Sand. Surf. Sustenance.','2022-12-01 06:59:56','2022-12-01 06:59:56','e54c412f-c9a4-482d-8115-f1b90ae9a27f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'New Word Order. Summer in Oz.',NULL,NULL,'2022 has been another wonderful year at NWO, and we want to thank you for being such an integral part of our success. Our wish is that you, your friends and your family enjoy a relaxed and fun summer break before we all embark on the new opportunities that await us in 2023.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OGQIq0BfOU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143032\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9zxejWt8WL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our long hot summers may be our traditional wind-down time, but summer is also a time of cooking, BBQs, eating, drinking and entertaining. Whether you’re feeding the hordes or just looking for some new inspiration, you’ll find it all here in these pages.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This is our third cookbook edition, and this year we’ve slightly diverged from our Christmas theme to reflect all the wonderful tastes of summer. From fresh salads to zesty drinks, there’s sure to be a summertime treat with your name on it...\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PYP7dvJTnA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143033\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TXjVGlpeN8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-Ax8fnuTi2u\",\"content\":{\"fields\":{\"images\":[\"143034\",\"143035\",\"143036\",\"143037\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'New Word Order. Summer in Oz.','2022 has been another wonderful year at NWO, and we want to thank you for being such an integral part of our success. Our wish is that you, your friends and your family enjoy a relaxed and fun summer break before we all embark on the new opportunities that await us in 2023.',NULL,'New Word Order. Summer in Oz.',NULL,'https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/NWO-Recipe-book-2022.pdf','Our favourite treats for the summer holidays','Download now',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139270,143046,1,'Thank you','2022-12-01 07:04:19','2022-12-01 07:04:19','9cef1cf6-d04c-49fb-b4ea-5116b59e721b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Merry Christmas',NULL,NULL,'2022 has been another wonderful year at NWO, and we want to thank you for being such an integral part of our success. Our wish is that you, your friends and your family enjoy a relaxed and fun summer break before we all embark on the new opportunities that await us in 2023.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OGQIq0BfOU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143032\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9zxejWt8WL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our long hot summers may be our traditional wind-down time, but summer is also a time of cooking, BBQs, eating, drinking and entertaining. Whether you’re feeding the hordes or just looking for some new inspiration, you’ll find it all here in these pages.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This is our third cookbook edition, and this year we’ve slightly diverged from our Christmas theme to reflect all the wonderful tastes of summer. From fresh salads to zesty drinks, there’s sure to be a summertime treat with your name on it...\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PYP7dvJTnA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143033\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'New Word Order. Summer in Oz.','2022 has been another wonderful year at NWO, and we want to thank you for being such an integral part of our success. Our wish is that you, your friends and your family enjoy a relaxed and fun summer break before we all embark on the new opportunities that await us in 2023.',NULL,'New Word Order. Summer in Oz.',NULL,'https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/NWO-Recipe-book-2022.pdf','Our favourite treats for the summer holidays','Download now',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139272,143048,1,'Christmas 2022','2022-12-01 07:05:06','2022-12-01 07:05:06','8ba14609-5dbf-4bc3-ac70-632000c032f7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Summer in Oz',NULL,NULL,'2022 has been another wonderful year at NWO, and we want to thank you for being such an integral part of our success. Our wish is that you, your friends and your family enjoy a relaxed and fun summer break before we all embark on the new opportunities that await us in 2023.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OGQIq0BfOU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143032\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9zxejWt8WL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our long hot summers may be our traditional wind-down time, but summer is also a time of cooking, BBQs, eating, drinking and entertaining. Whether you’re feeding the hordes or just looking for some new inspiration, you’ll find it all here in these pages.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This is our third cookbook edition, and this year we’ve slightly diverged from our Christmas theme to reflect all the wonderful tastes of summer. From fresh salads to zesty drinks, there’s sure to be a summertime treat with your name on it...\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PYP7dvJTnA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143033\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'New Word Order. Summer in Oz.','2022 has been another wonderful year at NWO, and we want to thank you for being such an integral part of our success. Our wish is that you, your friends and your family enjoy a relaxed and fun summer break before we all embark on the new opportunities that await us in 2023.',NULL,'New Word Order. Summer in Oz.',NULL,'https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/NWO-Recipe-book-2022.pdf','Our favourite treats for the summer holidays','Download now',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139274,143050,1,'Christmas 2022','2022-12-01 07:05:22','2022-12-01 07:05:22','b533fd67-973f-4e33-8149-da38fda0647c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Summer in Oz',NULL,NULL,'2022 has been another wonderful year at NWO, and we want to thank you for being such an integral part of our success. Our wish is that you, your friends and your family enjoy a relaxed and fun summer break before we all embark on the new opportunities that await us in 2023.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OGQIq0BfOU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143032\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9zxejWt8WL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our long hot summers may be our traditional wind-down time, but summer is also a time of cooking, BBQs, eating, drinking and entertaining. Whether you’re feeding the hordes or just looking for some new inspiration, you’ll find it all here in these pages.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This is our third cookbook edition, and this year we’ve slightly diverged from our Christmas theme to reflect all the wonderful tastes of summer. From fresh salads to zesty drinks, there’s sure to be a summertime treat with your name on it...\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PYP7dvJTnA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143033\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'New Word Order. Summer in Oz.','2022 has been another wonderful year at NWO, and we want to thank you for being such an integral part of our success. Our wish is that you, your friends and your family enjoy a relaxed and fun summer break before we all embark on the new opportunities that await us in 2023.',NULL,'New Word Order. Summer in Oz.',NULL,'https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/NWO-Recipe-book-2022.pdf','Our favourite treats for the summer holidays','Download now',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139275,143051,1,'Nwo email christmas 22 3','2022-12-01 07:12:41','2022-12-01 07:12:41','9b85f2c6-edd7-469d-864c-42afdc734ca4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x384_crop_center-center_82_line/nwo-email-christmas-22-3.png\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x320_crop_center-center_82_line/nwo-email-christmas-22-3.png\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x256_crop_center-center_82_line/nwo-email-christmas-22-3.png\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x192_crop_center-center_82_line/nwo-email-christmas-22-3.png\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x160_crop_center-center_82_line/nwo-email-christmas-22-3.png\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x384_crop_center-center_82_line/nwo-email-christmas-22-3.png.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x320_crop_center-center_82_line/nwo-email-christmas-22-3.png.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x256_crop_center-center_82_line/nwo-email-christmas-22-3.png.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x192_crop_center-center_82_line/nwo-email-christmas-22-3.png.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x160_crop_center-center_82_line/nwo-email-christmas-22-3.png.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":384,\"1280\":320,\"1024\":256,\"768\":192,\"640\":160},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":2000,\"originalImageHeight\":500,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAEABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAAUG/8QAHBAAAgIDAQEAAAAAAAAAAAAAAQIAEQMEITPR/8QAFAEBAAAAAAAAAAAAAAAAAAAAAf/EABYRAQEBAAAAAAAAAAAAAAAAAAABMf/aAAwDAQACEQMRAD8Au6uomTEGbLsWeezfZoUUIiqLoCum4iEwR//Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#191819\",\"#e1cac5\",\"#48c38b\",\"#fa6254\",\"#848484\"],\"lightness\":48,\"placeholderWidth\":1536,\"placeholderHeight\":384,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139277,143053,1,'Email sigs','2022-12-01 07:14:27','2022-12-01 07:14:27','5f61a194-20d9-486a-b4d3-9139d453904d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"113\" src=\"{asset:74279:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/email-sig.gif}\" alt=\"New Word Order\" /></a></figure>\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"100\" src=\"{asset:142924:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/nwo-email-christmas-22-2.png}\" alt=\"Merry Christmas\" /></a></figure>\n<figure><img width=\"400\" height=\"100\" src=\"{asset:143051:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/nwo-email-christmas-22-3.png}\" alt=\"\" /></figure>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139279,143055,1,'Email sigs','2022-12-01 07:16:43','2022-12-01 07:16:43','1ec2bfa2-f2bf-4ccb-8830-2637808c6e4e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'<p><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>\n<figure><a href=\"https://newwordorder.com.au\" target=\"_blank\" rel=\"noreferrer noopener\"><img width=\"400\" height=\"113\" src=\"{asset:74279:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/email-sig.gif}\" alt=\"New Word Order\" /></a></figure>\n<figure><img width=\"400\" height=\"100\" src=\"{asset:143051:url||https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/nwo-email-christmas-22-3.png}\" alt=\"\" /></figure>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139281,143057,1,'Ramsay Health Care','2022-12-20 00:34:43','2022-12-20 00:34:44','1eee6a5c-5716-4cd6-aa70-c9b7875d5e3a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Weekend Warrior campaign',NULL,NULL,'We work so hard through the week, we deserve to play hard over the weekend. When we find ourselves reliving our glory days through social sport or using our house reno as a creative and active outlet—sometimes it can be at the risk of our safety. Ramsay Health Care knows accidents happen, and they asked us to help them showcase how their holistic orthopaedic care services get Weekend Warriors back on their feet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141736\",\"141670\",\"141671\",\"141672\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDjAdefp2G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Ramsay Health Care asked us to help develop a campaign to promote their orthopaedic services across their network of hospitals. The campaign served to educate the target market on what makes Ramsay’s orthopaedic offerings special, while also calling them to check whether their health insurance covers Ramsay hospitals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BWwvmn3pwX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141745\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using Ramsay’s target market of orthopaedic patients in their 40s and 50s, we created the ‘weekend warrior’ characters: everyday people who take on their alter ego when the working week is over. The social sports star who pushes themself to go for that bicycle kick or elaborate jump pass. The reno kings and queens who love Bunnings outings and would never pay someone else to do work around the house that they could do themselves.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ynJgqMQCET\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s an ocean of campaigns out there from medical brands that all look the same—clinical and serious. Ramsay stepped outside of the same-same and opted for more lively, exaggerated shots of Weekend Warriors in action, being injured and seeking care from a Ramsay hospital.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141741\",\"141742\",\"141743\",\"141744\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FF7V2IzNlc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With fresh, exciting and relatable action shots complemented by copy that captures the work-hard-play-hard lifestyle, our campaign for Ramsay cut through to the market with personality and an element of surprise.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Ramsay Health Care','Weekend Warrior campaign',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139282,143058,1,NULL,'2023-01-09 02:21:56','2023-01-09 02:21:56','ba82dde5-da12-4f3a-86f1-29a74abc98cd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139283,143059,1,NULL,'2023-01-09 02:22:44','2023-01-09 02:22:44','f21fd40c-b3ab-4e71-9bab-d8680294d9c1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139284,143060,1,'What about you?','2023-01-09 02:24:52','2023-01-09 02:40:26','f7f9211e-2228-480e-9947-17bb8bc7c00d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tell us about your 2022 and 2023',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1GwtU6KD4z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/embed/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: \\\"na1\\\",\\n    portalId: \\\"8394441\\\",\\n    formId: \\\"2504f875-a873-46e9-9033-7113d321cfb2\\\"\\n  });\\n</script>\",\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139285,143061,1,'Tell us about your 2022 and 2023','2023-01-09 02:25:41','2023-01-09 02:25:41','1da70543-f1ca-4ee7-b98c-cf2e23cbe9db',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1GwtU6KD4z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/embed/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: \\\"na1\\\",\\n    portalId: \\\"8394441\\\",\\n    formId: \\\"2504f875-a873-46e9-9033-7113d321cfb2\\\"\\n  });\\n</script>\",\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139287,143063,1,'Tell us about your 2022 and 2023','2023-01-09 02:26:02','2023-01-09 02:26:02','2eb8d19e-d100-4eef-ba2c-e7d5b7822ed0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tell us about your 2022 and 2023',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1GwtU6KD4z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/embed/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: \\\"na1\\\",\\n    portalId: \\\"8394441\\\",\\n    formId: \\\"2504f875-a873-46e9-9033-7113d321cfb2\\\"\\n  });\\n</script>\",\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139289,143065,1,'What about you?','2023-01-09 02:27:17','2023-01-09 02:27:17','6e8f2f8b-9159-430a-9e4f-458b3417a9bb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tell us about your 2022 and 2023',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1GwtU6KD4z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/embed/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: \\\"na1\\\",\\n    portalId: \\\"8394441\\\",\\n    formId: \\\"2504f875-a873-46e9-9033-7113d321cfb2\\\"\\n  });\\n</script>\",\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139290,143066,1,'What about you?','2023-01-09 02:28:01','2023-01-09 02:28:03','3ee1aea8-264c-4417-85cc-0b675bd095ce',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tell us about your 2022 and 2023',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1GwtU6KD4z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139291,143067,1,'What about you?','2023-01-09 02:40:26','2023-01-09 02:40:26','463beb20-4903-43b2-a02c-afa201ae1ba1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tell us about your 2022 and 2023',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1GwtU6KD4z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/embed/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: \\\"na1\\\",\\n    portalId: \\\"8394441\\\",\\n    formId: \\\"2504f875-a873-46e9-9033-7113d321cfb2\\\"\\n  });\\n</script>\",\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139292,143068,1,'Update details','2023-01-09 06:57:16','2023-01-09 06:57:17','a258203b-7793-4980-95d4-82d7861a465f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WQdEvDKsSL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Enter your details\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Enter your details\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PSqM6x8LeL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<!--[if lte IE 8]>\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2-legacy.js\\\"></script>\\n<![endif]-->\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n\\tregion: \\\"na1\\\",\\n\\tportalId: \\\"8394441\\\",\\n\\tformId: \\\"bc6282cb-a942-406c-bc57-b0b253a1cc4d\\\"\\n});\\n</script>\",\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139293,143069,1,'Update details copy','2023-01-10 00:12:41','2023-01-10 00:58:08','ad22f2a8-018e-4d3b-9372-ea167a4f5905',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TdCjpdy8fI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Tell us about your 2022 and 2023\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ilTp4MJ19T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/embed/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: \\\"na1\\\",\\n    portalId: \\\"8394441\\\",\\n    formId: \\\"2504f875-a873-46e9-9033-7113d321cfb2\\\"\\n  });\\n</script>\",\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139294,143070,1,'Update details copy','2023-01-10 00:12:41','2023-01-10 00:12:41','1541332e-7188-464d-9358-1615cb8f3e10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139295,143071,1,'Update details copy','2023-01-10 00:12:41','2023-01-10 00:12:41','e4d76836-d159-4c46-8651-2c677d15e882',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139296,143072,1,'Update details copy','2023-01-10 00:13:07','2023-01-10 00:13:07','526f9c3c-d6be-4496-bc2c-b81b721c0f28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139298,143074,1,'Update details copy','2023-01-10 00:14:18','2023-01-10 00:14:18','0c7f16e4-1573-4982-a742-8efb318a6e51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TdCjpdy8fI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Enter your details\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ilTp4MJ19T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"Form code here\",\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139300,143076,1,'Update details copy','2023-01-10 00:57:18','2023-01-10 00:57:18','4714f5ce-023a-4794-8469-5a3e422017b9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TdCjpdy8fI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Tell us about your 2022 and 2023\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ilTp4MJ19T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/embed/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: \\\"na1\\\",\\n    portalId: \\\"8394441\\\",\\n    formId: \\\"2504f875-a873-46e9-9033-7113d321cfb2\\\"\\n  });\\n</script>\",\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139301,143077,1,'Update details copy','2023-01-10 00:58:08','2023-01-10 00:58:08','48a24966-9964-4e61-8055-7f7dc6ba11e9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TdCjpdy8fI\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Tell us about your 2022 and 2023\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ilTp4MJ19T\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/embed/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: \\\"na1\\\",\\n    portalId: \\\"8394441\\\",\\n    formId: \\\"2504f875-a873-46e9-9033-7113d321cfb2\\\"\\n  });\\n</script>\",\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139302,143078,1,NULL,'2023-02-27 01:58:43','2023-02-27 01:58:43','697d8244-1a72-4cb2-a3f2-f244470398da',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139303,143079,1,NULL,'2023-02-27 01:58:53','2023-02-27 01:58:53','7ffd24a1-224f-4880-be30-262dedafb684',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139304,143080,1,'Tell your story','2023-02-27 01:59:10','2023-03-01 03:27:04','22597549-2484-4c91-9974-9321e9b34e4e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Queensland Seniors Strategy',NULL,NULL,'We are collecting the stories of migrants to help form a new Queensland Seniors Strategy. If you have any questions or would like to phone us directly, please phone New Word Order on 07 3334 8340.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RJI91DJMGZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Tell your story\",\"headingColour\":\"text-red\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Please help us to make Queensland better for older migrants\",\"headingColour\":\"text-white\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Migrants have made Queensland a better place to live through their hard work and great ideas.\\n\\nWe are meeting with migrants who are aged 65 and over to hear their life story and to ask their ideas for how Queensland can be even better.\\n\\nWe need just one hour of your time, and can come to you or interview you on the phone.\\n\\nEverything you tell us is strictly confidential. We will not share your private information with the government.\\n\\nPlease note: Our project ends on March 31.\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JmySnQbuwD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-JIUNKK7uSu\",\"content\":{\"fields\":{\"freeformForm\":3,\"backgroundColour\":\"bg-black\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(139305,143081,1,'Tell your story','2023-02-27 02:02:01','2023-02-27 02:02:01','8fd5f66b-ff0f-460d-ba2f-e68dd87e41f0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Queensland Seniors Strategy',NULL,NULL,'Migrants have made Queensland a better place to live through their hard work and great ideas.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RJI91DJMGZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Tell your story\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We are meeting with migrants who are aged 65 and over to hear their life story and to ask their ideas for how Queensland can be even better.\\n\\nWe need just one hour of your time, and can come to you or interview you on the phone.\\n\\nEverything you tell us is strictly confidential. We will not share your private information with the government.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Please help us to make Queensland better for older migrants\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JmySnQbuwD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-JIUNKK7uSu\",\"content\":{\"fields\":{\"freeformForm\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139307,143083,1,'Tell your story','2023-02-27 02:16:38','2023-02-27 02:16:38','b248afb6-1810-43b5-9ef4-06f7ccfc628e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Queensland Seniors Strategy',NULL,NULL,'Migrants have made Queensland a better place to live through their hard work and great ideas.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RJI91DJMGZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Tell your story\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Please help us to make Queensland better for older migrants\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We are meeting with migrants who are aged 65 and over to hear their life story and to ask their ideas for how Queensland can be even better.\\n\\nWe need just one hour of your time, and can come to you or interview you on the phone.\\n\\nEverything you tell us is strictly confidential. We will not share your private information with the government.\\nPlease note: \\n\\n*Our project ends on March 31.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JmySnQbuwD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-JIUNKK7uSu\",\"content\":{\"fields\":{\"freeformForm\":3,\"backgroundColour\":\"bg-black\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139309,143085,1,'Tell your story','2023-02-27 02:29:07','2023-02-27 02:29:07','5f924d41-03ed-453f-9d80-4b5e7bf4c584',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Queensland Seniors Strategy',NULL,NULL,'Migrants have made Queensland a better place to live through their hard work and great ideas.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RJI91DJMGZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Tell your story\",\"headingColour\":\"text-red\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Please help us to make Queensland better for older migrants\",\"headingColour\":\"text-white\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We are meeting with migrants who are aged 65 and over to hear their life story and to ask their ideas for how Queensland can be even better.\\n\\nWe need just one hour of your time, and can come to you or interview you on the phone.\\n\\nEverything you tell us is strictly confidential. We will not share your private information with the government.\\nPlease note: \\n\\n*Our project ends on March 31.\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JmySnQbuwD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-JIUNKK7uSu\",\"content\":{\"fields\":{\"freeformForm\":3,\"backgroundColour\":\"bg-black\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'mailto:suzanne@newwordorder.com.au','Please reach out.','Email us','Any questions?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139311,143087,1,'Tell your story','2023-02-28 07:09:22','2023-02-28 07:09:22','3759c03f-b6bd-44fa-8e9e-f7d2544cd04f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Queensland Seniors Strategy',NULL,NULL,'We are collecting the stories of migrants to help form a new Queensland Seniors Strategy. If you have any questions or would like to phone us directly, please phone New Word Order on 07 3334 8340.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RJI91DJMGZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Tell your story\",\"headingColour\":\"text-red\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Please help us to make Queensland better for older migrants\",\"headingColour\":\"text-white\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Migrants have made Queensland a better place to live through their hard work and great ideas.\\n\\nWe are meeting with migrants who are aged 65 and over to hear their life story and to ask their ideas for how Queensland can be even better.\\n\\nWe need just one hour of your time, and can come to you or interview you on the phone.\\n\\nEverything you tell us is strictly confidential. We will not share your private information with the government.\\n\\nPlease note: Our project ends on March 31.\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JmySnQbuwD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-JIUNKK7uSu\",\"content\":{\"fields\":{\"freeformForm\":3,\"backgroundColour\":\"bg-black\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139313,143089,1,'Tell your story','2023-03-01 01:09:36','2023-03-01 01:09:36','1c5fc51e-3397-42fd-b675-a1e662c874c3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Queensland Seniors Strategy',NULL,NULL,'We are collecting the stories of migrants to help form a new Queensland Seniors Strategy. If you have any questions or would like to phone us directly, please phone New Word Order on 07 3334 8340.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RJI91DJMGZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Tell your story\",\"headingColour\":\"text-red\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Please help us to make Queensland better for older migrants\",\"headingColour\":\"text-white\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Migrants have made Queensland a better place to live through their hard work and great ideas.\\n\\nWe are meeting with migrants who are aged 65 and over to hear their life story and to ask their ideas for how Queensland can be even better.\\n\\nWe need just one hour of your time, and can come to you or interview you on the phone.\\n\\nEverything you tell us is strictly confidential. We will not share your private information with the government.\\n\\nPlease note: Our project ends on March 31.\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JmySnQbuwD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-JIUNKK7uSu\",\"content\":{\"fields\":{\"freeformForm\":3,\"backgroundColour\":\"bg-black\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'http://#','test','test','test',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139315,143091,1,'Tell your story','2023-03-01 01:10:04','2023-03-01 01:10:04','164155ce-eb8b-44cc-92e7-5c3adb560c57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Queensland Seniors Strategy',NULL,NULL,'We are collecting the stories of migrants to help form a new Queensland Seniors Strategy. If you have any questions or would like to phone us directly, please phone New Word Order on 07 3334 8340.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RJI91DJMGZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Tell your story\",\"headingColour\":\"text-red\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Please help us to make Queensland better for older migrants\",\"headingColour\":\"text-white\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Migrants have made Queensland a better place to live through their hard work and great ideas.\\n\\nWe are meeting with migrants who are aged 65 and over to hear their life story and to ask their ideas for how Queensland can be even better.\\n\\nWe need just one hour of your time, and can come to you or interview you on the phone.\\n\\nEverything you tell us is strictly confidential. We will not share your private information with the government.\\n\\nPlease note: Our project ends on March 31.\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JmySnQbuwD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-JIUNKK7uSu\",\"content\":{\"fields\":{\"freeformForm\":3,\"backgroundColour\":\"bg-black\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139317,143093,1,'Tell your story','2023-03-01 02:12:25','2023-03-01 02:12:25','0e261599-0829-40a7-84ae-f390cf6c769c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Queensland Seniors Strategy',NULL,NULL,'We are collecting the stories of migrants to help form a new Queensland Seniors Strategy. If you have any questions or would like to phone us directly, please phone New Word Order on 07 3334 8340.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RJI91DJMGZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Tell your story\",\"headingColour\":\"text-red\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Please help us to make Queensland better for older migrants\",\"headingColour\":\"text-white\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Migrants have made Queensland a better place to live through their hard work and great ideas.\\n\\nWe are meeting with migrants who are aged 65 and over to hear their life story and to ask their ideas for how Queensland can be even better.\\n\\nWe need just one hour of your time, and can come to you or interview you on the phone.\\n\\nEverything you tell us is strictly confidential. We will not share your private information with the government.\\n\\nPlease note: Our project ends on March 31.\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JmySnQbuwD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-JIUNKK7uSu\",\"content\":{\"fields\":{\"freeformForm\":3,\"backgroundColour\":\"bg-black\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(139318,143094,1,'What about you?','2023-03-01 02:21:19','2023-03-01 02:21:20','156c740a-a8a2-4730-8941-f128371e8d80',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tell us about your 2022 and 2023',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1GwtU6KD4z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/embed/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: \\\"na1\\\",\\n    portalId: \\\"8394441\\\",\\n    formId: \\\"2504f875-a873-46e9-9033-7113d321cfb2\\\"\\n  });\\n</script>\",\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(139320,143096,1,'Tell your story','2023-03-01 02:25:58','2023-03-01 02:25:58','cb415ad6-ef56-4106-9c25-630d6c9b1da6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Queensland Seniors Strategy',NULL,NULL,'We are collecting the stories of migrants to help form a new Queensland Seniors Strategy. If you have any questions or would like to phone us directly, please phone New Word Order on 07 3334 8340.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RJI91DJMGZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Tell your story\",\"headingColour\":\"text-red\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Please help us to make Queensland better for older migrants\",\"headingColour\":\"text-white\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Migrants have made Queensland a better place to live through their hard work and great ideas.\\n\\nWe are meeting with migrants who are aged 65 and over to hear their life story and to ask their ideas for how Queensland can be even better.\\n\\nWe need just one hour of your time, and can come to you or interview you on the phone.\\n\\nEverything you tell us is strictly confidential. We will not share your private information with the government.\\n\\nPlease note: Our project ends on March 31.\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JmySnQbuwD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-JIUNKK7uSu\",\"content\":{\"fields\":{\"freeformForm\":3,\"backgroundColour\":\"bg-black\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(139322,143098,1,'Tell your story','2023-03-01 02:26:34','2023-03-01 02:26:34','cf1932df-703c-423c-962a-f4749fa469c5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Queensland Seniors Strategy',NULL,NULL,'We are collecting the stories of migrants to help form a new Queensland Seniors Strategy. If you have any questions or would like to phone us directly, please phone New Word Order on 07 3334 8340.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RJI91DJMGZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Tell your story\",\"headingColour\":\"text-red\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Please help us to make Queensland better for older migrants\",\"headingColour\":\"text-white\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Migrants have made Queensland a better place to live through their hard work and great ideas.\\n\\nWe are meeting with migrants who are aged 65 and over to hear their life story and to ask their ideas for how Queensland can be even better.\\n\\nWe need just one hour of your time, and can come to you or interview you on the phone.\\n\\nEverything you tell us is strictly confidential. We will not share your private information with the government.\\n\\nPlease note: Our project ends on March 31.\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JmySnQbuwD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-JIUNKK7uSu\",\"content\":{\"fields\":{\"freeformForm\":3,\"backgroundColour\":\"bg-black\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(139323,143099,1,'Tell your story','2023-03-01 03:27:04','2023-03-01 03:27:04','9bd0c566-2af8-4e5e-9641-b3160f0cd5fc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Queensland Seniors Strategy',NULL,NULL,'We are collecting the stories of migrants to help form a new Queensland Seniors Strategy. If you have any questions or would like to phone us directly, please phone New Word Order on 07 3334 8340.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RJI91DJMGZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Tell your story\",\"headingColour\":\"text-red\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Please help us to make Queensland better for older migrants\",\"headingColour\":\"text-white\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Migrants have made Queensland a better place to live through their hard work and great ideas.\\n\\nWe are meeting with migrants who are aged 65 and over to hear their life story and to ask their ideas for how Queensland can be even better.\\n\\nWe need just one hour of your time, and can come to you or interview you on the phone.\\n\\nEverything you tell us is strictly confidential. We will not share your private information with the government.\\n\\nPlease note: Our project ends on March 31.\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JmySnQbuwD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-JIUNKK7uSu\",\"content\":{\"fields\":{\"freeformForm\":3,\"backgroundColour\":\"bg-black\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(139324,143100,1,'About Us Image','2023-03-06 01:40:25','2023-03-06 01:40:29','ec71a3c4-f30f-4b99-a7cf-29fce49e422d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/AboutUsImage.png\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/AboutUsImage.png\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/AboutUsImage.png\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/AboutUsImage.png\"},\"optimizedWebPImageUrls\":{\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/AboutUsImage.png.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/AboutUsImage.png.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/AboutUsImage.png.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/AboutUsImage.png.webp\"},\"variantSourceWidths\":[\"1280\",\"1024\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1280\":1280,\"1024\":1024,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1280,\"originalImageHeight\":1280,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADASIAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABAb/xAAgEAADAAEEAgMAAAAAAAAAAAABAgMRAAQFEiExQUKB/8QAFAEBAAAAAAAAAAAAAAAAAAAAAP/EABQRAQAAAAAAAAAAAAAAAAAAAAD/2gAMAwEAAhEDEQA/AF8jWkZySLhHo4XsV7YHsnGnbZHEgKuHYfbr1z+ameV5Wt9wIxVBGdMMxGSSDp225iq2OUBkx8D5Gg//2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#b4b4b4\",\"#2b2b2b\",\"#545454\",\"#5c5c5c\",\"#6c6c6c\"],\"lightness\":42,\"placeholderWidth\":1280,\"placeholderHeight\":1280,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139325,143101,1,'Main Page Image min','2023-03-06 01:45:54','2023-03-06 01:46:12','308f396b-2d89-4f15-af57-06b4b7cb248b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/MainPageImage-min.png\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/MainPageImage-min.png\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2560_crop_center-center_82_line/MainPageImage-min.png\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/MainPageImage-min.png\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2048_crop_center-center_82_line/MainPageImage-min.png\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/MainPageImage-min.png\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/MainPageImage-min.png\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1536_crop_center-center_82_line/MainPageImage-min.png.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1280_crop_center-center_82_line/MainPageImage-min.png.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x2560_crop_center-center_82_line/MainPageImage-min.png.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1024_crop_center-center_82_line/MainPageImage-min.png.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2048_crop_center-center_82_line/MainPageImage-min.png.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/MainPageImage-min.png.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/MainPageImage-min.png.webp\"},\"variantSourceWidths\":[\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1536,\"1280\":1280,\"2560\":2560,\"1024\":1024,\"2048\":2048,\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":3000,\"originalImageHeight\":3000,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADASIAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABAX/xAAdEAACAgMAAwAAAAAAAAAAAAABAgMRAAQxBRMh/8QAFQEBAQAAAAAAAAAAAAAAAAAAAwT/xAAYEQEBAAMAAAAAAAAAAAAAAAABAAIDIf/aAAwDAQACEQMRAD8AnbBEeuSWCk/ATiNco0YC1dcyduMJJoy9rGB2ro4vxYjdj62LBR0isN5V60yG/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#835253\",\"#273d3c\",\"#b85556\",\"#74a39d\",\"#748c94\"],\"lightness\":40,\"placeholderWidth\":1536,\"placeholderHeight\":1536,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139326,143102,1,'2023-03-09 10:16:52','2023-03-09 00:16:52','2023-03-09 00:16:52','ee16f07e-fcce-48f8-a193-e23f1b3783cb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139327,143103,1,'Careers','2023-03-09 03:19:26','2023-03-09 03:29:02','8663e413-960d-445a-9f37-7301d4524461',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-NyO0Ik0kgl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Careers\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We are a Brisbane-based agency renowned for our evidence-based, strategic approach to truly wonderful creative work. We are strongly purpose-driven—wholeheartedly committed to making a meaningful difference in the lives of our clients, their customers and the community at large. Our work is rewarding.\\n\\nThe best part of what we do is doing it together. There’s nothing quite like a room full of inspired, inspiring people united by purpose and passion—and we’re thrilled at the idea of you being a part of that.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Careers\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-77zVW8tmJT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Copy Director\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Due to growth, NWO is seeking to appoint a Copy Director. Simply put, the core purpose of your role will be to protect the brand reputation that NWO holds for exceptional strategy and writing. This will be done by undertaking stakeholder engagement, co-developing brand strategies, leading and mentoring your team of writers, a focus on quality assurance of all NWO copy, as well as through your direct engagement with clients. \\n\\nReporting to, and working closely with the CEO, this newly created leadership position will have full custody of the copy team. Leading a team of two plus freelancers, you will have the autonomy to create the team structure, systems, processes and frameworks you feel the team needs to thrive by defining and setting NWO copy standards and developing approaches for all types of NWO writing projects.\\n\\nTo be successful in this role you will have a background in print or online journalism and experience in managing or driving brands. You will have experience as an editor You will have a deep appreciation for brand and campaign management underpinned by quality content across all writing forms, from content design and video through to publications and speechwriting. \\n\\nYour curious nature will see you getting to the heart of people and stories, while your drive and inclusive leadership skills will see you leading your team toward best-in-class performance.\",\"textSize\":\"text-lg\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Apply now\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"#applicationForm\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}}},\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GqLHJAoMsp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The Benefits\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This is a rare opportunity to join a fast-growing and supportive agency in a very exciting phase of its evolution. A competitive salary will be negotiated.\\nEveryone at NWO enjoys fantastic benefits – from flexibility to bonuses, professional development and a comprehensive wellbeing program.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Flexibility and additional leave**\\n\\n- Hybrid working environment with genuine flexibility work from home and our office at Greenslopes\\n- One day per semester of paid study leave\\n- Early, late and split day options\\n- Extra day of leave for an extra happy birthday\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Bonus benefits**\\n\\n- $650 a year via AirWallex to spend on you, however you choose ($50 a month–extra $50 in your birthday month)\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new5\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Professional development**\\n\\n- Work with top executives in wide-ranging sectors\\n- Gain deep expertise across all creative fields\\n- Flexible teams means you’ll work on every account\\n- Paid professional membership of your choice\\n- Annual $1000 professional development budget\\n- Learning and development plan for every employee\\n- Study leave for post-graduate study\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new6\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Wellbeing**\\n\\n- Weekly or fortnightly 1-1 with direct manager\\n- Quarterly goal-setting and performance review\\n- Free access to Employee Assistance Program\\n- Intentional Wellbeing at Work program, including massage and yoga\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new7\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Happy Friyay (and every other day)**\\n\\n- Weekly team lunches and drinks\\n- Quarterly team nights out\\n- EOFY and Christmas staff parties\\n- Mid-year and end-of-year all-team days to rest, reflect and plan\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LhE8ewXDdj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\'s next?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"If this role sounds perfect for you, fill in the apply form below, and attach your cover letter and a link to your website or portfolio. \\n\\nWe’re looking forward to saying hello!\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BtRUbwXzyb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-s0nVisNYi6\",\"content\":{\"fields\":{\"spacer\":\"pt-8 md:pt-16 bg-black\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fz4qdj0CRS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<div id=\\\"applicationForm\\\">\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: \\\"na1\\\",\\n    portalId: \\\"8394441\\\",\\n    formId: \\\"54bb36ff-8ada-4b4f-b1f9-73d1c7fc42c6\\\"\\n  });\\n</script>\\n</div>\",\"backgroundColour\":\"bg-black\",\"sectionTitle\":\"Application forms\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Careers at New Word Order','We are a Brisbane-based agency renowned for our evidence-based, strategic approach to truly wonderful creative work','careers design copy digital','New Word Order',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139328,143104,1,'Christmas 2022','2023-03-09 03:22:02','2023-03-09 03:31:12','16882145-2ba3-4acc-b8c2-af382fd402dc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Summer in Oz',NULL,NULL,'2022 has been another wonderful year at NWO, and we want to thank you for being such an integral part of our success. Our wish is that you, your friends and your family enjoy a relaxed and fun summer break before we all embark on the new opportunities that await us in 2023.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OGQIq0BfOU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143032\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9zxejWt8WL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our long hot summers may be our traditional wind-down time, but summer is also a time of cooking, BBQs, eating, drinking and entertaining. Whether you’re feeding the hordes or just looking for some new inspiration, you’ll find it all here in these pages.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This is our third cookbook edition, and this year we’ve slightly diverged from our Christmas theme to reflect all the wonderful tastes of summer. From fresh salads to zesty drinks, there’s sure to be a summertime treat with your name on it...\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PYP7dvJTnA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143033\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'New Word Order. Summer in Oz.','2022 has been another wonderful year at NWO, and we want to thank you for being such an integral part of our success. Our wish is that you, your friends and your family enjoy a relaxed and fun summer break before we all embark on the new opportunities that await us in 2023.',NULL,'New Word Order. Summer in Oz.',NULL,'https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/NWO-Recipe-book-2022.pdf','Our favourite treats for the summer holidays','Download now',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(139329,143105,1,'Department of Education','2023-03-09 03:22:09','2023-03-09 03:31:20','c5d3a921-23c4-4c0d-bdcb-33f158dc27be',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Early childhood care service providers application video',NULL,NULL,'Early childhood education and care is an integral part of our community but the Department of Education had an opportunity to improve the service provider application process. They believed there was a better way to help applicants navigate the process, so they asked us to create a simple, engaging animated video to break down the submission in easy-to-follow steps.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-It8nqzuyY4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:75% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/771857698?h=fbf07172e6&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"8147_DoE Early childhood services video 07.mp4\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OSv1zZoTd7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The department’s need came down to a few common misunderstandings that kept occurring during the application process for service providers. These pipeline barriers absorbed time and increased administration for the department’s Regulatory Authority. \\nOur challenge was to make an accessible, easy-to-understand explainer video that would ensure more applications are completed properly before being submitted.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pkInp3sX8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Once the client identified the core issues and nailed down the correct process, we produced a simple voiceover and animation strategy to address the problems concisely and clearly. \\nIt was important to keep the process really simple while making sure the applications would contain all of the required information. Our approach involved balancing authority with friendliness to connect with the audience.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MRDlR2NjSv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using customised stock illustration, we produced a five-minute animated video that combined relatable creativity with clear actions.\\nWe represented our diverse audience with the illustration and voiceover to show the application process, highlight the fields that require more attention and express the specificities that are commonly missed.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LpUDcdBBO6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The video really breaks down a complex process into actionable steps.\\nEarly childhood education and care are vital services for many Queensland families—and the higher the quality of the care, the better. So it was our pleasure to help make the process for providers just that little bit easier and quicker.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Department of Education | Early childhood care service providers application video','Early childhood education and care is an integral part of our community but the Department of Education had an opportunity to improve the service provider application process. They believed there was a better way to help applicants navigate the process, so they asked us to create a simple, engaging animated video to break down the submission in easy-to-follow steps.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139330,143106,1,'Funding','2023-03-09 03:22:20','2023-03-09 03:31:24','5e0c7833-effd-44bc-926e-90fdfd2f547f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Branding and awareness campaign',NULL,NULL,'Funding is an online financial services company specialising in the niche area of bridging loans. They came to New Word Order with a two-fold problem. Firstly, the category they operate in (bridging loans) wasn’t entirely understood by their target market and needed further clarification. Secondly, not enough people (or even industry brokers) knew the Funding brand at all and the beneficial products they offered. A cut-through campaign was needed, stat.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ziNtnsznO9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/765527128?h=5517b00b29&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Build a bridge - Funding.com.au TVC 30 second\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Zh7cVNx5Rl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The loan market as a whole is highly competitive and often dominated by rate comparisons and incentive offers. Bridging loans, however, are a slightly different beast. They\'re more about recognising different life circumstances and problem solving. Other short-term bridging loan specialists had emerged and launched strong brand campaigns. Our key challenge was to create a brand that focuses on solutions and creatively positions Funding among its competitor set as a short-term loan company with a difference.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BvMTRKtmI7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"In order to educate the market on when a bridging loan might be required and then provide differentiation for Funding, it became abundantly clear the campaign required a creative and catchy hook to drive interest and memorability. The strategic solution was to centre on a theme of ‘build a bridge’. This theme was seen to be positive and proactive, with language that borrowed from colloquial usage and even had humorous undertones. Strategically, it provided a strong platform and foundation to work on creatively and talk to the target audience in a very authentic way.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dA5dzfYeRH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143003\",\"143000\",\"142996\",\"142994\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvLNQH8ye2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The creative development process, as it always should, started with a strong consideration of the target audience. Knowing that a lot of the target market were parents, we decided to let the innocent wisdom of children shine through by delivering the ‘build a bridge’ solution. Children can turn the complex into simple through thought and action, which is exactly what we showed in this campaign—the drawing of a bridge from one home to another, which created a visual hook. The viewer is drawn in by the surprising nature of the child explaining the product in just a few words, and then left with a smile as she demonstrates it in permanent marker.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fL4MPWaBk1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The first rule of advertising is to get noticed, which this campaign achieves by not looking like a bank or finance ad. The impact of the campaign is created through pure relevancy, showing real family people in real situations. The messaging is loud and clear and helped to educate the market on the nature of short-term bridging loan options and drive traffic to the Funding site.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Funding | Branding and awareness campaign','Funding is an online financial services company specialising in the niche area of bridging loans. They came to New Word Order with a two-fold problem. Firstly, the category they operate in (bridging loans) wasn’t entirely understood by their target market and needed further clarification. Secondly, not enough people (or even industry brokers) knew the Funding brand at all and the beneficial products they offered. A cut-through campaign was needed, stat.','funding, brokers, money, loans, advertising, campaign, tv, video',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139331,143107,1,'Queensland Hydro','2023-03-09 03:22:33','2023-03-09 03:31:29','ae2c09cb-d5ac-443f-82d3-dc81c4d4a23b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Powering Queensland’s future',NULL,NULL,'Queensland has some ambitious goals for a clean energy future: 50 per cent renewable energy by 2030 and zero net emissions by 2050. Pumped hydro is the key to achieving this, and the state government is facilitating pumped hydro through a new subsidiary brand. We helped build the brand for Queensland Hydro on a strategic, evidence-based foundation to set it up for a successful journey of powering Queensland’s future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MJwz0wrwkL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142807\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RCifzof72P\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The Queensland Government needed to establish a subsidiary entity to carry the planning and transmission connection work for potential pumped hydro projects across Queensland. Our creation of the brand for Queensland Hydro involved extensive discovery prior to crafting a brand identity, designing marketing collateral, and copywriting, designing and developing a website.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fdid0P67Ag\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142816\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As we often do, we began this project with a comprehensive discovery phase. This involved a review of Queensland Hydro’s contemporaries and competitive landscape, consultation with a First Nations advisor on theming and language, and stakeholder workshops to clarify the brand personality, purpose and objectives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5o9yXWhZxU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our deliverables included a brand name, logo, visual identity, collateral, key messaging and content for the website. We kept the design fresh and engaging while accommodating the needs of the various stakeholders involved.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvkuSRS5qb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142702\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fjwEEvmBHp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Queensland Hydro will be a vital component in reaching Australia’s aspirational energy goals over the next few decades. Pumped hydro is at the centre of cleaning up Queensland’s energy, and we were delighted to play a role in bringing Queensland Hydro to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2XRuH2soQj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142813\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Queensland Hydro | Powering Queensland\'s future','Queensland has some ambitious goals for a clean energy future: 50 per cent renewable energy by 2030 and zero net emissions by 2050. Pumped hydro is the key to achieving this, and the state government is facilitating pumped hydro through a new subsidiary brand. We helped build the brand for Queensland Hydro on a strategic, evidence-based foundation to set it up for a successful journey of powering Queensland’s future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139332,143108,1,'NWO’s library','2023-03-09 03:22:48','2023-03-09 03:30:18','0d32fcda-ee2c-4e6d-9a44-9644d57aa50b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-nAshvWtoXq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142985\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### November picks\\n\\n<h6> Bec\'s pick </h6> \\n<b>Book title: </b> The Master and Margarita\\n<b>Author: </b> Mikhail Bulgakov\\nFind it <a href=\\\"https://www.goodreads.com/book/show/117833.The_Master_and_Margarita\\\"> here </a>\\n\\n<h6> Bree\'s pick </h6> \\n<b>Book title: </b> This is Going to Hurt\\n<b>Author: </b> Adam Kay\\nFind it <a href=\\\"https://www.goodreads.com/book/show/35510008-this-is-going-to-hurt\\\"> here </a>\\n\\n<h6> Jo\'s pick </h6> \\n<b>Book title: </b> Renegades\\n<b>Author: </b> Barack Obama and Bruce Springsteen\\nFind it <a href=\\\"https://renegadesbook.com/\\\"> here </a>\\n\\n<h6> Suzanne\'s pick </h6> \\n<b>Book title: </b> Windswept and Interesting\\n<b>Author: </b> Billy Connolly\\nFind it <a href=\\\"https://www.audible.com.au/pd/Windswept-Interesting-Audiobook/B08Y98R1JF\\\"> here </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-GNR5JVAb4U\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142764\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### October picks\\n\\n* <a href=\\\"https://www.goodreads.com/book/show/28439513-a-night-without-stars\\\"> A Night Without Stars by Peter F Hamilton </a> \\n* <a href=\\\"https://www.goodreads.com/book/show/32620332-the-seven-husbands-of-evelyn-hugo\\\"> The Seven Husbands of Evelyn Hugo by Taylor Jenkins Reid</a>\\n* <a href=\\\"https://www.goodreads.com/book/show/60752357-losing-face\\\"> Losing Face by George Haddad </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/42975172-the-testaments\\\"> The Testaments by Margaret Atwood </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/60296308-the-bookseller-at-the-end-of-the-world\\\"> The Bookseller at the End of the World by Ruth Shaw </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JGx0iUtQw0\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-8Zua9e4kWu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142595\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"#### September picks\\n\\n* <a href=\\\"https://www.goodreads.com/en/book/show/55360284-taste\\\"> Taste: My Life Through Food by Stanley Tucci </a> \\n* <a href=\\\"https://www.goodreads.com/book/show/22822858-a-little-life\\\"> A Little Life by Hanya Yanagihara </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/37558445-boy-swallows-universe\\\"> Boy Swallows Universe by Trent Dalton </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/692871\\\"> Johnno by David Malouf </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/44005712-growing-up-queer-in-australia\\\"> Growing up Queer in Australia by Benjamin Law </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/56969543-bullet-train\\\"> Bullet Train by Kotaro Isaka </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/55361205-a-promised-land\\\"> A Promised Land by Barack Obama </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/52905204\\\"> The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/11494870\\\"> The Life by Malcolm Knox </a>\\n* <a href=\\\"https://www.goodreads.com/book/show/11468377-thinking-fast-and-slow\\\"> Thinking, Fast and Slow by Daniel Kahneman </a>\\n* <a href=\\\"https://www.goodreads.com/en/book/show/54304028\\\"> Hunt, Gather, Parent by Michaeleen Doucleff </a> \\n* <a href=\\\"https://www.goodreads.com/en/book/show/30762074\\\"> Odd Dog Out by Rob Bidulph </a>\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tAgWmP7qVi\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":null,\"backgroundColour\":\"bg-white\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NWO’s library','Taste: My Life Through Food by Stanley Tucci ... A Little Life by Hanya Yanagihara ... Johnno by David Malouf ... Growing up Queer in Australia by Benjamin Law ... Bullet Train by Kotaro Isaka ... A Promised Land by Barack Obama ... The Queen of Paris: A Novel of Coco Chanel by Pamela Binnings Ewan ... The Life by Malcolm Knox',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139333,143109,1,'Let us introduce ourselves','2023-03-09 03:30:21','2023-03-09 03:30:21','e9b18873-6cd3-43f5-9b11-db186c997c91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CYlWxVLWd4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Liam\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We thought we hired an award-winning advertising copywriter. But we ended up with so much more: a ska band ex-roadie, an optimistic golfer and a brave, crustacean-battling chef. \\n\\nNow that’s value.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wZCcn69t8v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142939\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CCjcrDQfKO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Liam was born and raised in Brisbane but escaped the oppressive heat to live in London and Hong Kong (and then found it again in Guam) for seven years.\\n\\nNow back in his hometown, he carries with him the secrets of a journey well-travelled—from paying his way through uni as a roadie for ska band The Furious Turtles, to winning Australian and international advertising and production copywriting awards throughout his career. \\n\\nWe’re sure we can thank his time on the road—it\'s classified but imaginably riddled with life-altering stories—for the effortless creativity he brings day to day. Second to that, maybe also his time at industry-renowned AWARD School.\\n\\nSpeaking of formative experiences, Liam’s gruff exterior was carefully constructed back in his boarding school days, when he was an easy target as the only soft city kid among a sea of tough country kids. \\n\\nHe quickly discovered that no amount of skiing holidays or golfing hole-in-ones (current tally: zero from 50,000 attempts) could win the respect of teenage bogans. A lesson in humility for Liam, perhaps—we’ve all been there at some point. \\n\\nDespite his otherwise bourgeois-sounding life where the (golfing) green is grassier, Liam actually knows all about the importance of sacrifice. \\n\\nAfter all, he cooks his famous garlic prawns every year for his family Christmas (and last year for the NWO Christmas) despite his drastic, ironic and tragic crustacean allergy. When he defeats the prawns, they defeat him right back.\\n\\nYou can actually cook the dish yourself following his not-so-secret recipe  <a href=\\\"https://newwordorder.com.au/lp/christmas-2021\\\">here.</a> It’s delicious—you can’t take Liam’s word for it, of course, but you can take ours.\\n\\nHe has cooking all locked down, but he’ll be the first to tell you cleaning isn’t his area of expertise. We can’t have everything. No reason to fret, though—isn’t that what kids are for? And he’s got four of them, so he’s very good at delegating.\\n\\nA of couple residents in his household live it lush and chore-free, though: his 50kg Irish Wolfhound, Luna, and his 8kg Cavoodle, Rusty. In fact, they’ve delegated to Liam the chore of walking them every morning. \\n\\nThose gorgeous dogs are part of what we love about Liam, along with his dry sense of humour, his endless creative expertise and his penchant for telling a good story—whether it’s through an ad script, or just a weekend anecdote.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here’s Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and the Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lwRZRhzi23\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Here\'s Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EHGcch1Nd8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141527\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139334,143110,1,'Christmas 2021','2023-03-09 03:31:15','2023-03-09 03:31:16','e9389701-07dd-4e9e-a723-c319ed06a73e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Necessities for Christmas festivities',NULL,NULL,'Enjoy the second volume of our cookbook full of delicious food and drinks that have brought our family together for years. We hope the recipes here inspire some new additions to your table.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fPMtIiCCpa\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"87584\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6c1yWqJmnt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87592\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Entrées\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Liam’s** Doyle’s garlic prawns\\n**Bruce’s** ceviche\\n**Kimi’s** crispy oven-baked mushroom\\n**Hazel’s** homemade peanut butter dog treats\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-QYWbr4RofK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87595\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Mains\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Scott’s** instant legend beef brisket BBQ\\n**Bec’s** pumpkin and macadamia quinoa healthy yum\\n**Kat’s** roast Australian beef with fresh herb dressing\\n**Tim’s** 24-hour brined pork belly roast\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-9TyMiznUfs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87596\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Sides\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Andrew\'s** roasted brussels sprouts with crispy pancetta\\n**Kate\'s** peach, pomegranate and goat cheese salad\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TbkBwFYwQK\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87601\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Desserts\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Lynn\'s** chocolate carrot cake\\n**Kerry\'s** chocolate spider\\n**Margaret\'s** white Christmas cake\\n**Suz\'s** Nanna Gilbert\'s overnight plum pudding\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DJniqYj8iB\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"87599\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Drinks\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"**Jo\'s** start the day as you mean to go on Bloody Mary\\n**Bree\'s** Gingy\'s martini\\n**Ryan\'s** summer citrus ale\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Necessities for Christmas festivities','Enjoy the second volume of our cookbook full of delicious food and drinks that have brought our family together for years. We hope the recipes here inspire some new additions to your table.',NULL,NULL,NULL,'https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/2021-Necessities-for-Christmas-festivities-Vol2.pdf','Get your copy of Necessities for Christmas festivities.','Download now',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(139335,143111,1,'Residential Tenancies Authority','2023-03-09 03:31:31','2023-03-09 03:31:32','158f33f5-f4d0-48f5-9083-0e541fe93396',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Illustrating tenancy law changes',NULL,NULL,'We all know tenancy can be complicated, from any side of the relationship. So the Residential Tenancies Authority (RTA) has introduced new laws to give tenants, landlords and property managers more certainty and transparency around their tenancy arrangements. We helped the RTA produce four animated videos to serve as friendly reminders about the law changes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-bc8O0czLTg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028657?h=758f0e7169&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Ending a tenancy\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SUpdyGgoHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The RTA needed to inform the public about rental reform changes coming into effect on 1 October 2022. With such a broad audience—renters, landlords and property managers—the RTA needed an explanatory tool that relayed the information in an easily digestible, engaging and inclusive way.\\nA collection of animated explainer videos was the obvious choice.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-chZ81DIc8w\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028691?h=ca954eece2&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Renting with pets\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PLy32UQvPs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The videos needed a friendly, informative tone that connected with a vast range of people. We broke the videos down into sections that addressed each of the three key audiences individually—renters, then landlords, then property managers. The audiences were represented by a diverse and inclusive suite of illustrated characters.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oGsU7M7NF2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028774?h=8eb9622a43&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Summary\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oQ8wJZ93RN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Illustration was the real standout for this project. Our illustrative style helped us depict the emotion and shared experience of renting from all sides of the tenancy relationship. The animation represented various age groups, ethnicities and occupations.\\nThe law changes are explained by friendly, engaging voiceovers that guide the videos.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YFRHfSDQGW\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/749028736?h=a48681755c&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Residential Tenancies Authority - Repair order\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-sfiAs0GFwT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It was a pleasure to work with the team at RTA to help inform Queenslanders about the new changes to renting laws. The RTA has worked hard to make sure renting is fair for all and it was a joy to be part of bringing this to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Residential Tenancies Authority | Illustrating tenancy law changes','We all know tenancy can be complicated, from any side of the relationship. So the Residential Tenancies Authority (RTA) has introduced new laws to give tenants, landlords and property managers more certainty and transparency around their tenancy arrangements. We helped the RTA produce four animated videos to serve as friendly reminders about the law changes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139336,143112,1,'Urban Utilities','2023-03-09 03:31:38','2023-03-09 03:31:39','229c3d9e-4303-4088-8ffb-db7eab126fc9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EKKA activation',NULL,NULL,'Urban Utilities (UU) knows how important water is to our future, so they’re working hard to protect it. They need Queenslanders to care about water security, too. An EKKA display was the perfect way to engage with the community and remind them just how vital water is to their day-to-day life. With brightly coloured videos, graphics and illustrations arranged meticulously in a creative display, we helped UU remind people about their connections with water.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DrXALPWSBT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141998\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-DxF20Yq1PE\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:100% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/739527258?h=882d5c0119&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"uu_ekka_-_vertical_screens (Original)\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oonbweG5hq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"UU identified the EKKA as an opportunity to engage, inform and educate their customers to build a deeper understanding of water security, and to set the stage for UU to influence water restrictions down the track.\\nThrough hands-on activities and immersive visual displays, the EKKA was the perfect place to connect with UU’s communities and reassure them that UU is a safe pair of hands that holds and shapes the future of water security.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-1kDHeWuzrh\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950657?h=2534af59fd&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"AV 1 GRID COMBINE 03 SIDE 01\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KIDD88kVSZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950688?h=d7032fa1fb&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"AV 1 GRID COMBINE 03 SIDE 02\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3OqKknGGDL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Thematically, this activation was centred around each individual’s connection with water. Through making people conscious of water’s impact on their day-to-day life, we helped them discover how essential water security is and appreciate the role UU plays in protecting our water supply—and ultimately, the lifestyles and livelihoods of Queenslanders.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ovoFZRL7or\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141946\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lTaGbDU5Lj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The goal of the EKKA display was three-fold: attract people to the space, engage them to participate and ensure they absorb the key messaging.\\nWe were working with an eight-metre-wide screen, so we determined pretty quickly that one very (very!) landscape video wouldn’t be the best viewing experience. So we did what we do best: We got creative. We fashioned a collage of videos with various illustrated key messages, live action footage and graphic patterns that loop and combine into an engaging, eight-metre video experience.\\nThe audience were able to contribute their personal connection with water through sketches and scribbles on magnetic tiles. Each tile was fixed to the wall to create a crowdsourced water mosaic that grew over the course of the EKKA, telling true stories of water memories and moments.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RfRSpmcchL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950797?h=70d6f4f8b8&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"UU Component video 03\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950835?h=dc404ebf2f&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"UU Component video 04\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JPYArnyhMD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141947\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-J2iJEncoXv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950768?h=bc2c007c2c&badge=0&autopause=0&player_id=0&app_id=58479/embed\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen frameborder=\\\"0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\"></iframe></div>\"}},\"new2\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:66.67% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/740950743?h=698f98e314&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"UU Component video 01\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ez0JB2esSl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141948\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Bright colours, custom illustration, lots of movement and bold statements—that’s the sweet combination we concocted to communicate some very important key messages to the audience.\\nAnd the icing on top of the strawberry sundae? We just had so much fun coming up with the concept and bringing it to life. The EKKA public holiday didn’t hurt, either.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Urban Utilities EKKA activation','Urban Utilities (UU) knows how important water is to our future, so they’re working hard to protect it. They need Queenslanders to care about water security, too. An EKKA display was the perfect way to engage with the community and remind them just how vital water is to their day-to-day life. With brightly coloured videos, graphics and illustrations arranged meticulously in a creative display, we helped UU remind people about their connections with water.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139337,143113,1,'Ramsay Health Care','2023-03-09 03:31:42','2023-03-09 03:31:43','84a5291b-6d7b-4ee5-91e3-4729314cabe5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Weekend Warrior campaign',NULL,NULL,'We work so hard through the week, we deserve to play hard over the weekend. When we find ourselves reliving our glory days through social sport or using our house reno as a creative and active outlet—sometimes it can be at the risk of our safety. Ramsay Health Care knows accidents happen, and they asked us to help them showcase how their holistic orthopaedic care services get Weekend Warriors back on their feet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-iIvAfCTohk\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141736\",\"141670\",\"141671\",\"141672\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-tDjAdefp2G\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Ramsay Health Care asked us to help develop a campaign to promote their orthopaedic services across their network of hospitals. The campaign served to educate the target market on what makes Ramsay’s orthopaedic offerings special, while also calling them to check whether their health insurance covers Ramsay hospitals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BWwvmn3pwX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141745\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using Ramsay’s target market of orthopaedic patients in their 40s and 50s, we created the ‘weekend warrior’ characters: everyday people who take on their alter ego when the working week is over. The social sports star who pushes themself to go for that bicycle kick or elaborate jump pass. The reno kings and queens who love Bunnings outings and would never pay someone else to do work around the house that they could do themselves.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ynJgqMQCET\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s an ocean of campaigns out there from medical brands that all look the same—clinical and serious. Ramsay stepped outside of the same-same and opted for more lively, exaggerated shots of Weekend Warriors in action, being injured and seeking care from a Ramsay hospital.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-eM0TsINord\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141741\",\"141742\",\"141743\",\"141744\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FF7V2IzNlc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With fresh, exciting and relatable action shots complemented by copy that captures the work-hard-play-hard lifestyle, our campaign for Ramsay cut through to the market with personality and an element of surprise.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Ramsay Health Care','Weekend Warrior campaign',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139338,143114,1,'Glengara Care','2023-03-09 03:31:44','2023-03-09 03:31:45','49ad6a74-e929-40c1-a316-2802724c340d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?',NULL,NULL,'That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CIgMzACdNE\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141522\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141504\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"While Glengara Care has been described as the ‘genuine alternative to aged care’, it often isn’t clear what exactly sets the facility apart from residential aged care facilities. The differentiators ultimately come down to the provision of care: Glengara Care offers care that is personal, loving and delivered in a manner that preserves the recipient’s independence.\\n\\nThe ‘Your Care Factor’ campaign was required to generate leads (and sales) while building awareness around Glengara Care, in comparison to some of the well-known aged care alternatives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gEXzZ5VyHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/716600899?h=4efb4f4cd1&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"GlengaraCare TVC\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The core of the campaign was built from the concept of ‘care’. We drew out two meanings from ‘Your Care Factor’—not only the level of care provided by the facility, but also the decision-making factors that each potential buyer personally cares about. The term ‘care factor’ is deeply familiar, perhaps not so much to the 80+ year old resident market, but more so to their children—the key influencers of this campaign.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141505\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"141506\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We created three television commercials that pose the question of ‘What is your care factor?’ by contrasting the realities of people struggling physically and emotionally in a home that doesn’t suit their needs against people receiving the unparalleled care offered at Glengara Care.\\n\\nWhile the videos showcase Glengara Care’s differentiated care offering, the advertisements themselves separate Glengara Care from the alternatives. They’re provocative, fresh and engaging.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3yQnxK2ME5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"This project certainly wasn’t an easy one. The final product is the result of fierce determination—both from NWO and RetireAustralia—in the face of adversity such as COVID-19 restrictions, risks and vulnerability. The video shoot was rescheduled numerous times and often our careful planning was swapped out for quick thinking and adaptability.\\nThe end result, however, was worth every bit of effort.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'What’s your care factor?','That is the question RetireAustralia is posing to potential residents of the Glengara Care facility. They asked us to help them reach both their 80+ audience and the slightly younger influencers—their children—through television advertising, to communicate what sets Glengara Care apart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139339,143115,1,'Your Care Navigator','2023-03-09 03:31:46','2023-03-09 03:31:47','9bbf41b2-3f49-401e-aa35-39dc1ec5b0ae',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator',NULL,NULL,'Ageing can be overwhelming, especially with a dementia diagnosis. There are so many big life decisions to make, services to navigate and logistics to plan. Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support. Additionally, it’s a resource that helps healthcare professionals coordinate care for their patients and provide them with quality resources.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-TBzFA0UCIO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142011\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cYowRU3xxP\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Brisbane North PHN asked us to write, design and develop a navigator website that doubles as a one-stop-shop of resources, information and services that promote healthy ageing in the Brisbane North and Moreton Bay region. The project’s goal was to enable people to more proactively manage their own healthcare, while also equipping healthcare professional and carers with resources to support their care services.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-VACsyz6zoc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142009\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Working closely with the client team and the Council on the Ageing, our strategists conducted a stakeholder consultation process with community members and health professionals. The stakeholders generously shared their expertise and lived experience to help this project reach the community’s specific needs, with a particular focus on: dementia, physical health, mental health, social connection, nutrition and digital skills.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-pI57baAPCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Each aspect of the content writing, design and development of the website was informed by insights from the stakeholders, to ensure the project would fulfil community needs. We made sure the site was easy to use by integrating a very simple user interface into the web design and development. User experience and acceptance testing was a key element of ensuring the site would be practical and enjoyable for its audience.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Check out the website\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"https://yourcarenavigator.org.au/\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}}},\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RgOzDzfM2D\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142014\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Nothing like this existed before now. This project fulfils community needs around healthy ageing in a way that really excited the stakeholders who were involved in the project. This kind of work aligns perfectly with our purpose at NWO: to make a meaningful difference to people’s lives.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Your Care Navigator','Your Care Navigator is a space where older people in the Brisbane North and Moreton Bay region, their loved ones and their carers can find resources, information and support.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139340,143116,1,'Burnie Brae','2023-03-09 03:31:50','2023-03-09 03:31:51','98b11a00-6684-4493-b1b9-1398e38d7511',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'A brand that empowers rich lives',NULL,NULL,'What’s a Burnie Brae? That’s the question we needed to answer to help the community organisation create some clarity around their brand as they undertook an exciting brand and website refresh project.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZaXkCuEhzq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140080\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-uCOwtla2QC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We worked closely with Burnie Brae to understand their issues and what makes them tick. There was a concern Burnie Brae was lacking meaning, awareness and connection for much of the public they serve, alongside a recognition that the brand was simply a bit ‘tired’ and neglected. \\nAs a branding and strategy specialist, we created a process to uncover some of the truths behind the brand to set the groundwork. Our team conducted a series of research and workshops before embarking on brand direction and narrative development projects.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-XZByU19mIe\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140065\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"With the foundations set, our creative team embarked on refreshing Burnie Brae’s visual identity. The creative concept painted a picture of community connection and explored a distinctive direction for the Burnie Brae brand. We adapted the existing logo and brand colours to build a fresh and recognisable feel.\\nWe redesigned and built a new website, improving the information navigation and creating better user journeys.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PJGiDHCA2X\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"140069\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qsqwFJwI56\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"140066\"],\"mediaAlignment\":\"Right\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"IMPACT\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result has seen Burnie Brae take ownership of a revitalised brand identity that has stronger connections to their stakeholders. The stunning new website is simple to use and takes users on a compelling journey through Burnie Brae’s community service offerings.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'A brand that empowers rich lives','What’s a Burnie Brae? That’s the question we needed to answer to help the community organisation create some clarity around their brand as they undertook an exciting brand and website refresh project.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139341,143117,1,'Chevron','2023-03-09 03:31:54','2023-03-09 03:31:54','f68dd370-41d4-49b6-87f7-c7b7cb132052',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign',NULL,NULL,'Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.\nIn 2021, we were appointed to the roster of agencies for Chevron Downstream Australia as they reignited their Australian operations. We\'re helping them reconnect with their customers, relaunch their Puma retail network under the Caltex brand, and grow their market share in the lubricants B2B market.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gvKwuoJR7j\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547129?h=68b08b3b6f&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-3oZ1cTUSaN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements.\\nChevron Downstream Australia appointed New Word Order to help facilitate the process and undertake important marketing work, including taking carriage of promotions of the Australian B2B fuels and lubricants division.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pROQ78QKp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547500?h=2819aba5f3&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Z59xrAwLVU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We conducted a competitor analysis to assess competitor brand messaging and positioning, interviews with key Caltex fuels and lubricants distributors in the B2B market, and one-on-one interviews with the general customers.\\nOur insights indicated a need for authentic, ‘real life’ marketing collateral with which the audience can connect. We also gleaned that the messaging needed to be kept simple.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-f5LPArKwgF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689548339?h=5797d76cc7&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EP9dMqkL3k\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We made the creative decision to let the products take a backseat and instead shine a light on the customers’ businesses and their distributor relationships.\\nWe worked with a videographer to give the videos a warm and, at times, heartfelt tone. The customers in question are mostly generations-old businesses with a story to tell. So we told some stories.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gLOsbQtiKq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/689547741?h=7529fef734&title=0&byline=0&portrait=0\\\" style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ahQwPi3ZPn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The end result was 60 video variations in a style you wouldn’t necessarily associate with marketing around fuel and lubricant products—something a little surprising, something that stands out from the crowd.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5dbIBMfjBJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"“Our customers are the centre of everything we do, so we’re really proud to have created something that’s authentic to their experiences—their relationships with the distributors, their family values and the inter-generational ties in each of their businesses.\",\"plainText\":\"“We challenged New Word Order with a complex brief of showcasing the product, telling a compelling story about the customer and distributor relationship, and delivering the message that the products customers know and love are back for good. <br> \\n“New Word Order perfectly captured all of those elements in a cohesive video series that authentically connects with the audience.” <br> \\n\\n** — Cris Gillespie, Head of Marketing at Chevron **\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Caltex B2B video campaign','Chevron is a brand name known and recognised around the world, along with its community retail brand of Caltex.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139343,143119,1,'2023-03-09 19:15:21','2023-03-09 09:15:21','2023-03-09 09:15:21','a9e22587-f73e-4d80-af07-f810dbe34640',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139344,143120,1,'2023-03-09 21:16:11','2023-03-09 11:16:11','2023-03-09 11:16:11','8c596dad-4452-4aab-8f6a-7fa83294d78f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139345,143121,1,'2023-03-09 21:17:50','2023-03-09 11:17:50','2023-03-09 11:17:50','22298465-4275-4dc8-b7c6-c9473a7ee7b7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139346,143122,1,'2023-03-09 21:19:49','2023-03-09 11:19:49','2023-03-09 11:19:49','bbfdb40b-457a-4f2a-9b50-a1d682d76dff',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139347,143123,1,'2023-03-09 21:21:30','2023-03-09 11:21:30','2023-03-09 11:21:30','94a8adcd-5c75-4fc4-a754-af7d75f4e139',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139348,143124,1,'About us','2023-03-10 00:11:53','2023-03-10 00:11:53','b86e425c-75fd-4f9d-91b7-2d9ce3f91274',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"141616\",\"17934\",\"17921\",\"17899\",\"17875\",\"97259\",\"17996\",\"142716\",\"17881\",\"17887\",\"141642\",\"30433\",\"17941\",\"142039\",\"1\",\"21898\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | About us','For 20 years we have helped businesses, organisations and governments to solve problems, unlock potential and connect with people to inspire action.','strategy, brand, campaign, behaviour change, engagement, digital, video, content',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139350,143126,1,'About us','2023-03-10 00:13:08','2023-03-10 00:13:08','78cf973a-fcde-4e9b-8bf1-549a9da6a54e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"141616\",\"17934\",\"17921\",\"17899\",\"17875\",\"97259\",\"17996\",\"142716\",\"17881\",\"17887\",\"141642\",\"30433\",\"17941\",\"142039\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | About us','For 20 years we have helped businesses, organisations and governments to solve problems, unlock potential and connect with people to inspire action.','strategy, brand, campaign, behaviour change, engagement, digital, video, content',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139351,143127,1,'Tell your story','2023-03-10 00:19:16','2023-03-10 00:19:17','6a86cee7-7c67-40bc-b470-a44d581e4cb5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Queensland Seniors Strategy',NULL,NULL,'We are collecting the stories of migrants to help form a new Queensland Seniors Strategy. If you have any questions or would like to phone us directly, please phone New Word Order on 07 3334 8340.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RJI91DJMGZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Tell your story\",\"headingColour\":\"text-red\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Please help us to make Queensland better for older migrants\",\"headingColour\":\"text-white\",\"headingSize\":\"text-2xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Migrants have made Queensland a better place to live through their hard work and great ideas.\\n\\nWe are meeting with migrants who are aged 65 and over to hear their life story and to ask their ideas for how Queensland can be even better.\\n\\nWe need just one hour of your time, and can come to you or interview you on the phone.\\n\\nEverything you tell us is strictly confidential. We will not share your private information with the government.\\n\\nPlease note: Our project ends on March 31.\",\"textSize\":\"text-base\",\"textColour\":\"text-white\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JmySnQbuwD\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-JIUNKK7uSu\",\"content\":{\"fields\":{\"freeformForm\":3,\"backgroundColour\":\"bg-black\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(139352,143128,1,'About us','2023-03-10 00:39:26','2023-03-10 00:39:27','915d4f18-b6df-4b85-a7d4-5daff8272374',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"141616\",\"17934\",\"17921\",\"17899\",\"17875\",\"97259\",\"17996\",\"142716\",\"17881\",\"17887\",\"141642\",\"30433\",\"17941\",\"142039\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | About us','For 20 years we have helped businesses, organisations and governments to solve problems, unlock potential and connect with people to inspire action.','strategy, brand, campaign, behaviour change, engagement, digital, video, content',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139353,143129,1,'About us','2023-03-10 01:36:37','2023-03-10 01:36:37','66e6a894-14d8-4bbd-801c-dbbb5c0bde97',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-AIq0spRzjX\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-screen\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Uncross your fingers.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Let out that breath you’ve been holding.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We’re a creative agency whose clients sleep at night.\\nThere are no jazz hands, no smoke, no mirrors, no special effects.\\nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Work with us\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"for **us** and for **you**\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/contact\",\"buttonStyle\":\"link\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Who we are\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-F7hmh5FrPz\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"What\\nmakes us \\ndifferent?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE THE AGENCY FOR BIG LIFE MOMENTS.\",\"text\":\"Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE SOLVE OUR CLIENTS’ PROBLEMS.\",\"text\":\"We take a pragmatic, common sense approach to strategic and creative work. Our clients find this refreshing because we understand their context and goals.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR PURPOSE DRIVES EVERY DECISION AND ACTION.\",\"text\":\"Purpose-driven work isn\'t rare anymore. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.\"}},\"new4\":{\"type\":\"6\",\"fields\":{\"heading\":\"OUR CLIENTS HAVE CONFIDENCE AND INFLUENCE.\",\"text\":\"All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.\"}},\"new5\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE’RE A CONTENT-FIRST AGENCY.\",\"text\":\"We began as a strategic communications agency and good-quality words still mean as much to us today as they did on day one.\"}},\"new6\":{\"type\":\"6\",\"fields\":{\"heading\":\"WE LIVE AND BREATHE BRAND.\",\"text\":\"Our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people.\"}}}}}},\"buttons\":[],\"sectionTitle\":\"What makes us different?\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-E3DBF3rnBq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<span class=\\\"text-red\\\">Our purpose</span> is to make a meaningful difference to people\'s lives.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Our purpose\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-YiUNhXSjYt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-ajNEqfqsEA\",\"content\":{\"fields\":{\"sectionTitle\":\"Our people\",\"relatedTeamMembers\":[\"17956\",\"17954\",\"17881\",\"17996\",\"17934\",\"141616\",\"142716\",\"17899\",\"17875\",\"17887\",\"30433\",\"17921\",\"97259\",\"141642\",\"17941\",\"142039\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-qGWY6M4rf5\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-MfLI96vuT8\",\"content\":{\"fields\":{\"sectionTitle\":\"Our partners\",\"heading\":\"Our partners\",\"images\":[\"21920\",\"21919\",\"21918\",\"21916\",\"21917\",\"21915\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-cqMgy44VMA\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy first,\\nthen creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We seek to understand how humans connect, engage, decide and change. Evidence-based strategy is built on unique insights that guide all the work to come. See our proven methodologies for how we make every project a success.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Strategy\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/strategy?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new2\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Brand\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/brand?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new3\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Campaign\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new4\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Behaviour change\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/behaviour-change?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new5\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Engagement\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/engagement?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new6\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Video\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/video?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new7\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Digital\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}},\"new8\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Content\",\"buttonImage\":[],\"internalLink\":[],\"externalLink\":\"/services-categories/campaign?section=work\",\"buttonStyle\":\"linkList\",\"buttonColour\":\"black\"}}},\"sectionTitle\":\"Our strategy\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-o2jFNo2guG\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Didn\'t you mean New World Order?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Nope.\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}},\"new3\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all of the sub-par corporate comms out there.\\n\\nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":\"Our name\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | About us','For 20 years we have helped businesses, organisations and governments to solve problems, unlock potential and connect with people to inspire action.','strategy, brand, campaign, behaviour change, engagement, digital, video, content',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139354,143130,1,'Contact ','2023-03-15 04:25:53','2023-03-15 04:25:53','8944a861-98d7-4efe-b6c2-1f5b76433e20',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dJRNyHHzcn\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-black\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Contact us\",\"headingColour\":\"text-white\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":\"Contact\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2RtDIpwkus\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-GjaQopZ8Ed\",\"content\":{\"fields\":{\"codeOutput\":\"<!--[if lte IE 8]>\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2-legacy.js\\\"></script>\\n<![endif]-->\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"//js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: \\\"na1\\\",\\n    portalId: \\\"8394441\\\",\\n    formId: \\\"74668c3f-aa7f-4ec7-aa81-c8ce26655bfe\\\"\\n});\\n</script>\",\"backgroundColour\":\"bg-black\",\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Creative and strategy agency | Contact us','We are a creative agency that specialises in strategy, brand and behaviour change. Get in touch with us—we can’t wait to meet you.','strategy, brand, campaign, behaviour change, engagement, content, digital',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139355,143131,1,'2023-03-15 16:13:00','2023-03-15 06:13:00','2023-03-15 06:13:00','889ff057-f37a-4c9c-bda4-46aff5dd17ff',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139357,143133,1,'Let us introduce ourselves','2023-03-27 06:15:11','2023-03-27 06:15:11','d619ac21-291f-4c63-b938-fcf5217df23f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BzHWrSBA3q\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Bree\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Every office needs that go-to team member who knows how to get things done. Funny thing is, our Gen Z, Taylor-Swift-obsessed, go-to colleague claims she never gets anything done.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hwKmyKwtae\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FVFWZuA5kZ\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Why does she say she accomplishes nothing when she appears to be one of the all-time great multi-taskers? \\n\\nWell, she has started a thousand things in her life and never completed any of them. Piano, cello, netball, volleyball, basketball, writing novels, writing poetry, acting, dancing, acrobatics, choir—all have been tried, failed and given up forever.\\n\\nIt’s just as well because, as someone who has more job titles than Scott Morrison in a pandemic, we need her in the office. We’re not sure what’s on her business card but she acts as our junior copywriter, production coordinator, chief proofreader, project manager, office manager and social club vice-president.\\n\\nBree may be our youngest employee but her list of accomplishments belies her years. She’s already watched all 412 episodes of Grey’s Anatomy, which she feels should entitle her to an honorary medical degree. She’s also memorised every single lyric of every Taylor Swift song. That particular obsession runs to attending three of her concerts (and counting) and two tattoos referencing her music (and counting).\\n\\nHer cooking skills are non-existent, but luckily Bree lives the inner-city life, so a poke bowl or dumpling shop is never too far away. There’s also the occasional Macca’s feed after hitting the Valley nightclubs—whose menu she can recite by heart, thanks to her teen years spent in the Drive Thru trenches.\\n\\nIf you can’t find her in the office, just follow the sound of someone talking about the latest Netflix series. Then just give her job to do and watch her get to it … well, straight after she’s finished listening to TayTay’s latest release. The girl has priorities, you know.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CYlWxVLWd4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Liam\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We thought we hired an award-winning advertising copywriter. But we ended up with so much more: a ska band ex-roadie, an optimistic golfer and a brave, crustacean-battling chef. \\n\\nNow that’s value.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wZCcn69t8v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142939\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CCjcrDQfKO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Liam was born and raised in Brisbane but escaped the oppressive heat to live in London and Hong Kong (and then found it again in Guam) for seven years.\\n\\nNow back in his hometown, he carries with him the secrets of a journey well-travelled—from paying his way through uni as a roadie for ska band The Furious Turtles, to winning Australian and international advertising and production copywriting awards throughout his career. \\n\\nWe’re sure we can thank his time on the road—it\'s classified but imaginably riddled with life-altering stories—for the effortless creativity he brings day to day. Second to that, maybe also his time at industry-renowned AWARD School.\\n\\nSpeaking of formative experiences, Liam’s gruff exterior was carefully constructed back in his boarding school days, when he was an easy target as the only soft city kid among a sea of tough country kids. \\n\\nHe quickly discovered that no amount of skiing holidays or golfing hole-in-ones (current tally: zero from 50,000 attempts) could win the respect of teenage bogans. A lesson in humility for Liam, perhaps—we’ve all been there at some point. \\n\\nDespite his otherwise bourgeois-sounding life where the (golfing) green is grassier, Liam actually knows all about the importance of sacrifice. \\n\\nAfter all, he cooks his famous garlic prawns every year for his family Christmas (and last year for the NWO Christmas) despite his drastic, ironic and tragic crustacean allergy. When he defeats the prawns, they defeat him right back.\\n\\nYou can actually cook the dish yourself following his not-so-secret recipe  <a href=\\\"https://newwordorder.com.au/lp/christmas-2021\\\">here.</a> It’s delicious—you can’t take Liam’s word for it, of course, but you can take ours.\\n\\nHe has cooking all locked down, but he’ll be the first to tell you cleaning isn’t his area of expertise. We can’t have everything. No reason to fret, though—isn’t that what kids are for? And he’s got four of them, so he’s very good at delegating.\\n\\nA of couple residents in his household live it lush and chore-free, though: his 50kg Irish Wolfhound, Luna, and his 8kg Cavoodle, Rusty. In fact, they’ve delegated to Liam the chore of walking them every morning. \\n\\nThose gorgeous dogs are part of what we love about Liam, along with his dry sense of humour, his endless creative expertise and his penchant for telling a good story—whether it’s through an ad script, or just a weekend anecdote.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and the Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lwRZRhzi23\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EHGcch1Nd8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141527\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139359,143135,1,'Meet bree','2023-03-28 06:35:12','2023-03-28 06:35:12','ed3f3b16-b9d5-4789-bc57-d74d953d06d3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x768_crop_center-center_82_line/Meet-bree.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1536_crop_center-center_82_line/Meet-bree.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x640_crop_center-center_82_line/Meet-bree.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1280_crop_center-center_82_line/Meet-bree.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x512_crop_center-center_82_line/Meet-bree.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1024_crop_center-center_82_line/Meet-bree.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x384_crop_center-center_82_line/Meet-bree.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x320_crop_center-center_82_line/Meet-bree.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x768_crop_center-center_82_line/Meet-bree.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1536_crop_center-center_82_line/Meet-bree.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x640_crop_center-center_82_line/Meet-bree.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1280_crop_center-center_82_line/Meet-bree.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x512_crop_center-center_82_line/Meet-bree.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1024_crop_center-center_82_line/Meet-bree.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x384_crop_center-center_82_line/Meet-bree.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x320_crop_center-center_82_line/Meet-bree.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":768,\"3072\":1536,\"1280\":640,\"2560\":1280,\"1024\":512,\"2048\":1024,\"768\":384,\"640\":320},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":3072,\"originalImageHeight\":1536,\"placeholder\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAIABADAREAAhEBAxEB/8QAFAABAAAAAAAAAAAAAAAAAAAABP/EAB8QAAICAgEFAAAAAAAAAAAAAAECAxEEIQAFBhJisf/EABYBAQEBAAAAAAAAAAAAAAAAAAMBAv/EABgRAQEBAQEAAAAAAAAAAAAAAAECEQAh/9oADAMBAAIRAxEAPwBEmeo7gOKhLER0fXRNfOWpWxO0UEpxcrEMPToWR1Y15Chu6sjXBfHeWdZwczv/2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#c4bbc0\",\"#2c2a2c\",\"#923626\",\"#a4714a\",\"#76716d\"],\"lightness\":46,\"placeholderWidth\":1536,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139360,143136,1,'Let us introduce ourselves','2023-03-28 06:35:26','2023-03-28 06:35:26','c417e668-a400-4396-bf4a-cb8484b4832a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BzHWrSBA3q\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Bree\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Every office needs that go-to team member who knows how to get things done. Funny thing is, our Gen Z, Taylor-Swift-obsessed, go-to colleague claims she never gets anything done.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hwKmyKwtae\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143135\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FVFWZuA5kZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Why does she say she accomplishes nothing when she appears to be one of the all-time great multi-taskers? \\n\\nWell, she has started a thousand things in her life and never completed any of them. Piano, cello, netball, volleyball, basketball, writing novels, writing poetry, acting, dancing, acrobatics, choir—all have been tried, failed and given up forever.\\n\\nIt’s just as well because, as someone who has more job titles than Scott Morrison in a pandemic, we need her in the office. We’re not sure what’s on her business card but she acts as our junior copywriter, production coordinator, chief proofreader, project manager, office manager and social club vice-president.\\n\\nBree may be our youngest employee but her list of accomplishments belies her years. She’s already watched all 412 episodes of Grey’s Anatomy, which she feels should entitle her to an honorary medical degree. She’s also memorised every single lyric of every Taylor Swift song. That particular obsession runs to attending three of her concerts (and counting) and two tattoos referencing her music (and counting).\\n\\nHer cooking skills are non-existent, but luckily Bree lives the inner-city life, so a poke bowl or dumpling shop is never too far away. There’s also the occasional Macca’s feed after hitting the Valley nightclubs—whose menu she can recite by heart, thanks to her teen years spent in the Drive Thru trenches.\\n\\nIf you can’t find her in the office, just follow the sound of someone talking about the latest Netflix series. Then just give her job to do and watch her get to it … well, straight after she’s finished listening to TayTay’s latest release. The girl has priorities, you know.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CYlWxVLWd4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Liam\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We thought we hired an award-winning advertising copywriter. But we ended up with so much more: a ska band ex-roadie, an optimistic golfer and a brave, crustacean-battling chef. \\n\\nNow that’s value.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wZCcn69t8v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142939\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CCjcrDQfKO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Liam was born and raised in Brisbane but escaped the oppressive heat to live in London and Hong Kong (and then found it again in Guam) for seven years.\\n\\nNow back in his hometown, he carries with him the secrets of a journey well-travelled—from paying his way through uni as a roadie for ska band The Furious Turtles, to winning Australian and international advertising and production copywriting awards throughout his career. \\n\\nWe’re sure we can thank his time on the road—it\'s classified but imaginably riddled with life-altering stories—for the effortless creativity he brings day to day. Second to that, maybe also his time at industry-renowned AWARD School.\\n\\nSpeaking of formative experiences, Liam’s gruff exterior was carefully constructed back in his boarding school days, when he was an easy target as the only soft city kid among a sea of tough country kids. \\n\\nHe quickly discovered that no amount of skiing holidays or golfing hole-in-ones (current tally: zero from 50,000 attempts) could win the respect of teenage bogans. A lesson in humility for Liam, perhaps—we’ve all been there at some point. \\n\\nDespite his otherwise bourgeois-sounding life where the (golfing) green is grassier, Liam actually knows all about the importance of sacrifice. \\n\\nAfter all, he cooks his famous garlic prawns every year for his family Christmas (and last year for the NWO Christmas) despite his drastic, ironic and tragic crustacean allergy. When he defeats the prawns, they defeat him right back.\\n\\nYou can actually cook the dish yourself following his not-so-secret recipe  <a href=\\\"https://newwordorder.com.au/lp/christmas-2021\\\">here.</a> It’s delicious—you can’t take Liam’s word for it, of course, but you can take ours.\\n\\nHe has cooking all locked down, but he’ll be the first to tell you cleaning isn’t his area of expertise. We can’t have everything. No reason to fret, though—isn’t that what kids are for? And he’s got four of them, so he’s very good at delegating.\\n\\nA of couple residents in his household live it lush and chore-free, though: his 50kg Irish Wolfhound, Luna, and his 8kg Cavoodle, Rusty. In fact, they’ve delegated to Liam the chore of walking them every morning. \\n\\nThose gorgeous dogs are part of what we love about Liam, along with his dry sense of humour, his endless creative expertise and his penchant for telling a good story—whether it’s through an ad script, or just a weekend anecdote.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and the Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lwRZRhzi23\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EHGcch1Nd8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141527\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139362,143138,1,'Let us introduce ourselves','2023-03-28 06:37:02','2023-03-28 06:37:02','ae79704a-d6d3-452a-9d8a-d777b5ca2dfb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BzHWrSBA3q\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Bree\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Every office needs that go-to team member who knows how to get things done. Funny thing is, our Gen Z, Taylor-Swift-obsessed, go-to colleague claims she never gets anything done.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hwKmyKwtae\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143135\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FVFWZuA5kZ\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Why does she say she accomplishes nothing when she appears to be one of the all-time great multi-taskers? \\n\\nWell, she has started a thousand things in her life and never completed any of them. Piano, cello, netball, volleyball, basketball, writing novels, writing poetry, acting, dancing, acrobatics, choir—all have been tried, failed and given up forever.\\n\\nIt’s just as well because, as someone who has more job titles than Scott Morrison in a pandemic, we need her in the office. We’re not sure what’s on her business card but she acts as our junior copywriter, production coordinator, chief proofreader, project manager, office manager and social club vice-president.\\n\\nBree may be our youngest employee but her list of accomplishments belies her years. She’s already watched all 412 episodes of Grey’s Anatomy, which she feels should entitle her to an honorary medical degree. She’s also memorised every single lyric of every Taylor Swift song. That particular obsession runs to attending three of her concerts (and counting) and two tattoos referencing her music (and counting).\\n\\nHer cooking skills are non-existent, but luckily Bree lives the inner-city life, so a poke bowl or dumpling shop is never too far away. There’s also the occasional Macca’s feed after hitting the Valley nightclubs—whose menu she can recite by heart, thanks to her teen years spent in the Drive Thru trenches.\\n\\nIf you can’t find her in the office, just follow the sound of someone talking about the latest Netflix series. Then just give her job to do and watch her get to it … well, straight after she’s finished listening to TayTay’s latest release. The girl has priorities, you know.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CYlWxVLWd4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Liam\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We thought we hired an award-winning advertising copywriter. But we ended up with so much more: a ska band ex-roadie, an optimistic golfer and a brave, crustacean-battling chef. \\n\\nNow that’s value.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wZCcn69t8v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142939\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CCjcrDQfKO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Liam was born and raised in Brisbane but escaped the oppressive heat to live in London and Hong Kong (and then found it again in Guam) for seven years.\\n\\nNow back in his hometown, he carries with him the secrets of a journey well-travelled—from paying his way through uni as a roadie for ska band The Furious Turtles, to winning Australian and international advertising and production copywriting awards throughout his career. \\n\\nWe’re sure we can thank his time on the road—it\'s classified but imaginably riddled with life-altering stories—for the effortless creativity he brings day to day. Second to that, maybe also his time at industry-renowned AWARD School.\\n\\nSpeaking of formative experiences, Liam’s gruff exterior was carefully constructed back in his boarding school days, when he was an easy target as the only soft city kid among a sea of tough country kids. \\n\\nHe quickly discovered that no amount of skiing holidays or golfing hole-in-ones (current tally: zero from 50,000 attempts) could win the respect of teenage bogans. A lesson in humility for Liam, perhaps—we’ve all been there at some point. \\n\\nDespite his otherwise bourgeois-sounding life where the (golfing) green is grassier, Liam actually knows all about the importance of sacrifice. \\n\\nAfter all, he cooks his famous garlic prawns every year for his family Christmas (and last year for the NWO Christmas) despite his drastic, ironic and tragic crustacean allergy. When he defeats the prawns, they defeat him right back.\\n\\nYou can actually cook the dish yourself following his not-so-secret recipe  <a href=\\\"https://newwordorder.com.au/lp/christmas-2021\\\">here.</a> It’s delicious—you can’t take Liam’s word for it, of course, but you can take ours.\\n\\nHe has cooking all locked down, but he’ll be the first to tell you cleaning isn’t his area of expertise. We can’t have everything. No reason to fret, though—isn’t that what kids are for? And he’s got four of them, so he’s very good at delegating.\\n\\nA of couple residents in his household live it lush and chore-free, though: his 50kg Irish Wolfhound, Luna, and his 8kg Cavoodle, Rusty. In fact, they’ve delegated to Liam the chore of walking them every morning. \\n\\nThose gorgeous dogs are part of what we love about Liam, along with his dry sense of humour, his endless creative expertise and his penchant for telling a good story—whether it’s through an ad script, or just a weekend anecdote.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and the Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lwRZRhzi23\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EHGcch1Nd8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141527\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139363,143139,1,'Emotional connection lies at the heart of every successful brand','2023-03-29 03:42:34','2023-03-31 03:59:36','a0498a67-c948-4637-807e-92a4ff350ed6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W8fJrHtzJR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<b> THE MOST POWERFUL MARKETING HAPPENS WHEN BRANDS BUILD LASTING EMOTIONAL CONNECTIONS WITH THEIR AUDIENCE. <b>\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Often a lack of connection is to blame for marketing and brand under-performance.\\nWhy is that? Well, think of brands like people.\\nSome you associate with on a very shallow level. Some you interact with regularly but don’t really feel a connection. And some, you just really love.\\nLike people, we want to engage with brands that share our values, perspectives and opinions. We become loyal to them when we know they understand us and make us feel good. \\n\\n<h5> But as a brand owner or leader, how do you find these insights and build these emotional connections? </h5>\\nSuccessful brands invest in really understanding their customers.\\nThey undertake fit-for-purpose qualitative research to ask their customers questions and gain their insights into what they are thinking and why they behave the way they do. \\nToo often, this step is overlooked by a lack of understanding or a short-term view of objectives and budget. \\nCustomer insights are the gold nuggets of wisdom that don’t just give rise to effective campaigns—they transform the businesses, too.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #1: Tech company\",\"text\":\"Last year, we undertook 20 in-depth online interviews for a tech company wanting to know how their customers felt about them.\\nThe phone interviews, all following the same discussion guide and conducted across the world, clearly showed that while customers were loyal, they were hungry for greater innovation.\\nThese insights gave the leadership team confidence to fast-track some of their more ambitious projects.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #2: Business management consultancy\",\"text\":\"We recently interviewed 20 potential, current and lapsed customers for a business management consultancy.\\nOur client learned more about the life cycle of their customers’ businesses, and how their needs change at each stage.\\nThe insights from these interviews helped us shape the consultancy’s approach to introducing a new product stream to a wider audience.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #3: Tertiary institution\",\"text\":\"Earlier this year, we undertook 15 in-depth interviews and six focus groups for a tertiary institution, aimed at understanding the emotional drivers for enrolments.\\nEnrolments had been waning slowly for eight years, and key demographics had switched around, too.\\nThrough our insights, we were able to show that, while students were still true believers in the brand, alumni and referrers were noticeably less enthusiastic. This was affecting the quality and number of referrals.\\nThe detail in our insights is fuelling a brand and \\nmarketing strategy aimed at strengthening connections.\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h5> Fit-for-purpose customer research </h5>\\nAt New Word Order, we undertake this step as part of our wider brand development methodology.\\nEvery time, we find research yields valuable input into our clients’ business strategies on top of feeding their brand strategy.\\nOur qualitative research is a formative contribution that tells you how your customers perceive your brand and what they need from you.\\nWe then use quantitative research to test that these views are representative of the wider industry and your customer base.\\nResearch can be expensive but it doesn’t have to be.\\nThere’s an art to asking customers questions. We can find out the true, deep feelings of your customers—ones they’ll never tell you, no matter how close the relationship you share.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IRn8rdVydZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<b> We can help you build deeper emotional connections and loyalty with your customers.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Talk to us today\",\"buttonImage\":[],\"internalLink\":[\"21297\"],\"externalLink\":null,\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}}},\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Emotional connection lies at the heart of every successful brand','The most powerful form of marketing is when brands build lasting emotional connections with their audience.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139364,143140,1,'Emotional connection lies at the heart of your brand','2023-03-29 03:44:42','2023-03-29 03:44:42','02ddeaa0-192a-4a31-9bfe-3189119aab6d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W8fJrHtzJR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"The most powerful form of marketing is when brands build lasting emotional connections with their audience.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Often a lack of connection is to blame for marketing and brand under-performance.\\nWhy is that? Well, think of brands like people.\\nSome you associate with on a very shallow level. Some you interact with regularly but don’t really feel a connection. And some, you just really love.\\nLike people, we want to engage with brands that share our values, perspectives and opinions. We become loyal to them when know they understand us and make us feel good.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":null,\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KF6YNH9e8Z\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"But as a brand owner or leader, how do you find these insights and build these emotional connections?\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Emotional connection lies at the heart of your brand',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139367,143143,1,'Emotional connection lies at the heart of your brand','2023-03-29 03:50:34','2023-03-29 03:50:34','a6b404b2-3146-43f7-acbd-f52b3eb274c7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W8fJrHtzJR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<b> The most powerful form of marketing is when brands build lasting emotional connections with their audience. <b>\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Often a lack of connection is to blame for marketing and brand under-performance.\\nWhy is that? Well, think of brands like people.\\nSome you associate with on a very shallow level. Some you interact with regularly but don’t really feel a connection. And some, you just really love.\\nLike people, we want to engage with brands that share our values, perspectives and opinions. We become loyal to them when know they understand us and make us feel good. \\n\\n<h5> But as a brand owner or leader, how do you find these insights and build these emotional connections? </h5>\\nSuccessful brands invest in really understanding their customers.\\nThey undertake fit-for-purpose qualitative research to ask their customers questions and gain their insights into what they are thinking and why they behave the way they do. \\nToo often, this step is overlooked by a lack of understanding or a short-term view of objectives and budget. \\nCustomer insights are the gold nuggets of wisdom that don’t just give rise to effective campaigns—they transform the businesses, too.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #1: Tech company\",\"text\":\"Last year, we undertook 20 in-depth online interviews for a tech company wanting to know how their customers felt about them.\\nThe phone interviews, all following the same discussion guide and conducted across the world, clearly showed that while customers were loyal, they were hungry for greater innovation.\\nThese insights gave the leadership team confidence to fast-track some of their more ambitious projects.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #2: Business management consultancy\",\"text\":\"A few months ago, we interviewed 20 potential, current and lapsed customers for a business management consultancy.\\nOur client learned more about the life cycle of their customers’ businesses, and how their needs change accordingly.\\nThe insights from these interviews helped us shape the consultancy’s approach for introducing a new product stream to a wider audience.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #3: Tertiary institution\",\"text\":\"Earlier this year, we undertook 20 in-depth interviews and six focus groups for a tertiary institution, aimed at understanding the emotional drivers for enrolments.\\nEnrolments had been waning slowly for eight years, and key demographics had switched around, too.\\nThrough our insights, we were able to show that, while students were still true believers in the brand, alumni and referrers were noticeably less enthusiastic. This was affecting the quality and number of referrals.\\nThe detail in our insights is fuelling a marketing strategy that is aimed at rebuilding strong connections.\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h5> Fit-for-purpose customer research </h5>\\nAt New Word Order, we undertake this step as part of our wider brand development methodology, and we find it yields valuable input into our clients’ business strategies on top of feeding their brand strategy.\\nOur qualitative research is a formative contribution that tells you how your customers perceive your brand and what they need from you.\\nWe use quantitative research to test that these views are representative of the wider industry and your customer base.\\nResearch can be expensive but it doesn’t have to be.\\nThere’s an art to asking customers questions. We can find out the true, deep feelings of your customers—ones they’ll never tell you, no matter how close of a relationship you share.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dftpyXEhRi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":\"Talk to us\",\"plainText\":\"We have the expertise to undertake this process cost effectively, from effective research through to insights and creative execution.\",\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Emotional connection lies at the heart of your brand',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139369,143145,1,'23 03 March emotional connection blog 1 1','2023-03-29 03:53:49','2023-03-29 03:53:49','2eec3beb-dcdc-431c-a5f4-c5a20fd12a6f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/23_03-March-emotional-connection-blog-1-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/23_03-March-emotional-connection-blog-1-1.jpg\"},\"optimizedWebPImageUrls\":{\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x768_crop_center-center_82_line/23_03-March-emotional-connection-blog-1-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x640_crop_center-center_82_line/23_03-March-emotional-connection-blog-1-1.jpg.webp\"},\"variantSourceWidths\":[\"768\",\"640\"],\"variantHeights\":{\"768\":768,\"640\":640},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":1083,\"originalImageHeight\":1083,\"placeholder\":\"/9j/4AAQSkZJRgABAQEAlgCWAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAQABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAQIE/8QAHRABAAICAgMAAAAAAAAAAAAAAQIDABESMSEyQf/EABcBAQADAAAAAAAAAAAAAAAAAAABAwb/xAAYEQADAQEAAAAAAAAAAAAAAAAAAQIRIf/aAAwDAQACEQMRAD8A32WagcPK9ZSYuZ70mm3lXuXY6TBNxj4NUGtY9xPVwKpUtCyLOfEEPrgS0lp//9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#05f98a\",\"#0b3b1f\",\"#0d9c59\",\"#057c3c\",\"#06bc5c\"],\"lightness\":32,\"placeholderWidth\":768,\"placeholderHeight\":768,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139370,143146,1,'Emotional connection lies at the heart of your brand','2023-03-29 03:54:12','2023-03-29 03:54:12','2e95c2f9-57cd-4657-8f85-591048ec4529',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W8fJrHtzJR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<b> The most powerful form of marketing is when brands build lasting emotional connections with their audience. <b>\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Often a lack of connection is to blame for marketing and brand under-performance.\\nWhy is that? Well, think of brands like people.\\nSome you associate with on a very shallow level. Some you interact with regularly but don’t really feel a connection. And some, you just really love.\\nLike people, we want to engage with brands that share our values, perspectives and opinions. We become loyal to them when know they understand us and make us feel good. \\n\\n<h5> But as a brand owner or leader, how do you find these insights and build these emotional connections? </h5>\\nSuccessful brands invest in really understanding their customers.\\nThey undertake fit-for-purpose qualitative research to ask their customers questions and gain their insights into what they are thinking and why they behave the way they do. \\nToo often, this step is overlooked by a lack of understanding or a short-term view of objectives and budget. \\nCustomer insights are the gold nuggets of wisdom that don’t just give rise to effective campaigns—they transform the businesses, too.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #1: Tech company\",\"text\":\"Last year, we undertook 20 in-depth online interviews for a tech company wanting to know how their customers felt about them.\\nThe phone interviews, all following the same discussion guide and conducted across the world, clearly showed that while customers were loyal, they were hungry for greater innovation.\\nThese insights gave the leadership team confidence to fast-track some of their more ambitious projects.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #2: Business management consultancy\",\"text\":\"A few months ago, we interviewed 20 potential, current and lapsed customers for a business management consultancy.\\nOur client learned more about the life cycle of their customers’ businesses, and how their needs change accordingly.\\nThe insights from these interviews helped us shape the consultancy’s approach for introducing a new product stream to a wider audience.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #3: Tertiary institution\",\"text\":\"Earlier this year, we undertook 20 in-depth interviews and six focus groups for a tertiary institution, aimed at understanding the emotional drivers for enrolments.\\nEnrolments had been waning slowly for eight years, and key demographics had switched around, too.\\nThrough our insights, we were able to show that, while students were still true believers in the brand, alumni and referrers were noticeably less enthusiastic. This was affecting the quality and number of referrals.\\nThe detail in our insights is fuelling a marketing strategy that is aimed at rebuilding strong connections.\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h5> Fit-for-purpose customer research </h5>\\nAt New Word Order, we undertake this step as part of our wider brand development methodology, and we find it yields valuable input into our clients’ business strategies on top of feeding their brand strategy.\\nOur qualitative research is a formative contribution that tells you how your customers perceive your brand and what they need from you.\\nWe use quantitative research to test that these views are representative of the wider industry and your customer base.\\nResearch can be expensive but it doesn’t have to be.\\nThere’s an art to asking customers questions. We can find out the true, deep feelings of your customers—ones they’ll never tell you, no matter how close of a relationship you share.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dftpyXEhRi\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-K9ZnVvlNxN\",\"content\":{\"fields\":{\"heading\":null,\"plainText\":null,\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textColour\":\"text-black\"}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IRn8rdVydZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We have the expertise to undertake this process cost effectively, from effective research through to insights and creative execution.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Talk to us today\",\"buttonImage\":[],\"internalLink\":[\"21297\"],\"externalLink\":null,\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}}},\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Emotional connection lies at the heart of your brand',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139372,143148,1,'Emotional connection lies at the heart of your brand','2023-03-29 03:54:44','2023-03-29 03:54:44','880ae1b1-24d4-4f3b-80de-efe60e915485',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W8fJrHtzJR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<b> The most powerful form of marketing is when brands build lasting emotional connections with their audience. <b>\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Often a lack of connection is to blame for marketing and brand under-performance.\\nWhy is that? Well, think of brands like people.\\nSome you associate with on a very shallow level. Some you interact with regularly but don’t really feel a connection. And some, you just really love.\\nLike people, we want to engage with brands that share our values, perspectives and opinions. We become loyal to them when know they understand us and make us feel good. \\n\\n<h5> But as a brand owner or leader, how do you find these insights and build these emotional connections? </h5>\\nSuccessful brands invest in really understanding their customers.\\nThey undertake fit-for-purpose qualitative research to ask their customers questions and gain their insights into what they are thinking and why they behave the way they do. \\nToo often, this step is overlooked by a lack of understanding or a short-term view of objectives and budget. \\nCustomer insights are the gold nuggets of wisdom that don’t just give rise to effective campaigns—they transform the businesses, too.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #1: Tech company\",\"text\":\"Last year, we undertook 20 in-depth online interviews for a tech company wanting to know how their customers felt about them.\\nThe phone interviews, all following the same discussion guide and conducted across the world, clearly showed that while customers were loyal, they were hungry for greater innovation.\\nThese insights gave the leadership team confidence to fast-track some of their more ambitious projects.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #2: Business management consultancy\",\"text\":\"A few months ago, we interviewed 20 potential, current and lapsed customers for a business management consultancy.\\nOur client learned more about the life cycle of their customers’ businesses, and how their needs change accordingly.\\nThe insights from these interviews helped us shape the consultancy’s approach for introducing a new product stream to a wider audience.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #3: Tertiary institution\",\"text\":\"Earlier this year, we undertook 20 in-depth interviews and six focus groups for a tertiary institution, aimed at understanding the emotional drivers for enrolments.\\nEnrolments had been waning slowly for eight years, and key demographics had switched around, too.\\nThrough our insights, we were able to show that, while students were still true believers in the brand, alumni and referrers were noticeably less enthusiastic. This was affecting the quality and number of referrals.\\nThe detail in our insights is fuelling a marketing strategy that is aimed at rebuilding strong connections.\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h5> Fit-for-purpose customer research </h5>\\nAt New Word Order, we undertake this step as part of our wider brand development methodology, and we find it yields valuable input into our clients’ business strategies on top of feeding their brand strategy.\\nOur qualitative research is a formative contribution that tells you how your customers perceive your brand and what they need from you.\\nWe use quantitative research to test that these views are representative of the wider industry and your customer base.\\nResearch can be expensive but it doesn’t have to be.\\nThere’s an art to asking customers questions. We can find out the true, deep feelings of your customers—ones they’ll never tell you, no matter how close of a relationship you share.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IRn8rdVydZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We have the expertise to undertake this process cost effectively, from effective research through to insights and creative execution.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Talk to us today\",\"buttonImage\":[],\"internalLink\":[\"21297\"],\"externalLink\":null,\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}}},\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Emotional connection lies at the heart of your brand',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139374,143150,1,'Emotional connection lies at the heart of your brand','2023-03-29 03:55:34','2023-03-29 03:55:34','9aa3b09a-a394-470e-8be4-5dba12fec8bc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W8fJrHtzJR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<b> The most powerful form of marketing is when brands build lasting emotional connections with their audience. <b>\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Often a lack of connection is to blame for marketing and brand under-performance.\\nWhy is that? Well, think of brands like people.\\nSome you associate with on a very shallow level. Some you interact with regularly but don’t really feel a connection. And some, you just really love.\\nLike people, we want to engage with brands that share our values, perspectives and opinions. We become loyal to them when know they understand us and make us feel good. \\n\\n<h5> But as a brand owner or leader, how do you find these insights and build these emotional connections? </h5>\\nSuccessful brands invest in really understanding their customers.\\nThey undertake fit-for-purpose qualitative research to ask their customers questions and gain their insights into what they are thinking and why they behave the way they do. \\nToo often, this step is overlooked by a lack of understanding or a short-term view of objectives and budget. \\nCustomer insights are the gold nuggets of wisdom that don’t just give rise to effective campaigns—they transform the businesses, too.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #1: Tech company\",\"text\":\"Last year, we undertook 20 in-depth online interviews for a tech company wanting to know how their customers felt about them.\\nThe phone interviews, all following the same discussion guide and conducted across the world, clearly showed that while customers were loyal, they were hungry for greater innovation.\\nThese insights gave the leadership team confidence to fast-track some of their more ambitious projects.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #2: Business management consultancy\",\"text\":\"A few months ago, we interviewed 20 potential, current and lapsed customers for a business management consultancy.\\nOur client learned more about the life cycle of their customers’ businesses, and how their needs change accordingly.\\nThe insights from these interviews helped us shape the consultancy’s approach for introducing a new product stream to a wider audience.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #3: Tertiary institution\",\"text\":\"Earlier this year, we undertook 20 in-depth interviews and six focus groups for a tertiary institution, aimed at understanding the emotional drivers for enrolments.\\nEnrolments had been waning slowly for eight years, and key demographics had switched around, too.\\nThrough our insights, we were able to show that, while students were still true believers in the brand, alumni and referrers were noticeably less enthusiastic. This was affecting the quality and number of referrals.\\nThe detail in our insights is fuelling a marketing strategy that is aimed at rebuilding strong connections.\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h5> Fit-for-purpose customer research </h5>\\nAt New Word Order, we undertake this step as part of our wider brand development methodology, and we find it yields valuable input into our clients’ business strategies on top of feeding their brand strategy.\\nOur qualitative research is a formative contribution that tells you how your customers perceive your brand and what they need from you.\\nWe use quantitative research to test that these views are representative of the wider industry and your customer base.\\nResearch can be expensive but it doesn’t have to be.\\nThere’s an art to asking customers questions. We can find out the true, deep feelings of your customers—ones they’ll never tell you, no matter how close of a relationship you share.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IRn8rdVydZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We have the expertise to undertake this process cost effectively, from effective research through to insights and creative execution.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Talk to us today\",\"buttonImage\":[],\"internalLink\":[\"21297\"],\"externalLink\":null,\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}}},\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Emotional connection lies at the heart of your brand',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139376,143152,1,'Let us introduce ourselves','2023-03-29 21:39:04','2023-03-29 21:39:04','b3a60e58-5295-4d52-808d-cfb89cf38550',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BzHWrSBA3q\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Bree\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Every office needs that go-to team member who knows how to get things done. Funny thing is, our Gen Z, Taylor-Swift-obsessed, \'go-to colleague\' claims she never gets anything done.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hwKmyKwtae\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143135\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FVFWZuA5kZ\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Why does she say she accomplishes nothing when she appears to be one of the all-time great multi-taskers? \\n\\nWell, she has started a thousand things in her life and never completed any of them. Piano, cello, netball, volleyball, basketball, writing novels, writing poetry, acting, dancing, acrobatics, choir—all have been tried, failed and given up forever.\\n\\nIt’s just as well because, as someone who has more job titles than Scott Morrison in a pandemic, we need her in the office. We’re not sure what’s on her business card but she acts as our junior copywriter, production coordinator, chief proofreader, project manager, office manager and social club vice-president.\\n\\nBree may be our youngest employee but her list of accomplishments belies her years. She’s already watched all 412 episodes of Grey’s Anatomy, which she feels should entitle her to an honorary medical degree. She’s also memorised every single lyric of every Taylor Swift song. That particular obsession runs to attending three of her concerts (and counting) and two tattoos referencing her music (and counting).\\n\\nHer cooking skills are non-existent, but luckily Bree lives the inner-city life, so a poke bowl or dumpling shop is never too far away. There’s also the occasional Macca’s feed after hitting the Valley nightclubs—whose menu she can recite by heart, thanks to her teen years spent in the Drive Thru trenches.\\n\\nIf you can’t find her in the office, just follow the sound of someone talking about the latest Netflix series. Then just give her job to do and watch her get to it … well, straight after she’s finished listening to TayTay’s latest release. The girl has priorities, you know.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CYlWxVLWd4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Liam\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We thought we hired an award-winning advertising copywriter. But we ended up with so much more: a ska band ex-roadie, an optimistic golfer and a brave, crustacean-battling chef. \\n\\nNow that’s value.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wZCcn69t8v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142939\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CCjcrDQfKO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Liam was born and raised in Brisbane but escaped the oppressive heat to live in London and Hong Kong (and then found it again in Guam) for seven years.\\n\\nNow back in his hometown, he carries with him the secrets of a journey well-travelled—from paying his way through uni as a roadie for ska band The Furious Turtles, to winning Australian and international advertising and production copywriting awards throughout his career. \\n\\nWe’re sure we can thank his time on the road—it\'s classified but imaginably riddled with life-altering stories—for the effortless creativity he brings day to day. Second to that, maybe also his time at industry-renowned AWARD School.\\n\\nSpeaking of formative experiences, Liam’s gruff exterior was carefully constructed back in his boarding school days, when he was an easy target as the only soft city kid among a sea of tough country kids. \\n\\nHe quickly discovered that no amount of skiing holidays or golfing hole-in-ones (current tally: zero from 50,000 attempts) could win the respect of teenage bogans. A lesson in humility for Liam, perhaps—we’ve all been there at some point. \\n\\nDespite his otherwise bourgeois-sounding life where the (golfing) green is grassier, Liam actually knows all about the importance of sacrifice. \\n\\nAfter all, he cooks his famous garlic prawns every year for his family Christmas (and last year for the NWO Christmas) despite his drastic, ironic and tragic crustacean allergy. When he defeats the prawns, they defeat him right back.\\n\\nYou can actually cook the dish yourself following his not-so-secret recipe  <a href=\\\"https://newwordorder.com.au/lp/christmas-2021\\\">here.</a> It’s delicious—you can’t take Liam’s word for it, of course, but you can take ours.\\n\\nHe has cooking all locked down, but he’ll be the first to tell you cleaning isn’t his area of expertise. We can’t have everything. No reason to fret, though—isn’t that what kids are for? And he’s got four of them, so he’s very good at delegating.\\n\\nA of couple residents in his household live it lush and chore-free, though: his 50kg Irish Wolfhound, Luna, and his 8kg Cavoodle, Rusty. In fact, they’ve delegated to Liam the chore of walking them every morning. \\n\\nThose gorgeous dogs are part of what we love about Liam, along with his dry sense of humour, his endless creative expertise and his penchant for telling a good story—whether it’s through an ad script, or just a weekend anecdote.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and the Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lwRZRhzi23\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EHGcch1Nd8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141527\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Let us introduce ourselves',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139377,143153,1,'Department of Education','2023-03-30 06:24:07','2023-03-30 06:24:07','819ff84e-ace6-4c8a-aba6-d1964b59264b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Early childhood care service providers application video',NULL,NULL,'Early childhood education and care is an integral part of our community but the Department of Education had an opportunity to improve the service provider application process. They believed there was a better way to help applicants navigate the process, so they asked us to create a simple, engaging animated video to break down the submission in easy-to-follow steps.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-It8nqzuyY4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:75% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/771857698?h=fbf07172e6&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"8147_DoE Early childhood services video 07.mp4\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OSv1zZoTd7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The department’s need came down to a few common misunderstandings that kept occurring during the application process for service providers. These pipeline barriers absorbed time and increased administration for the department’s Regulatory Authority. \\nOur challenge was to make an accessible, easy-to-understand explainer video that would ensure more applications are completed properly before being submitted.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pkInp3sX8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Once the client identified the core issues and nailed down the correct process, we produced a simple voiceover and animation strategy to address the problems concisely and clearly. \\nIt was important to keep the process really simple while making sure the applications would contain all of the required information. Our approach involved balancing authority with friendliness to connect with the audience.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MRDlR2NjSv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using customised stock illustration, we produced a five-minute animated video that combined relatable creativity with clear actions.\\nWe represented our diverse audience with the illustration and voiceover to show the application process, highlight the fields that require more attention and express the specificities that are commonly missed.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LpUDcdBBO6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The video really breaks down a complex process into actionable steps.\\nEarly childhood education and care are vital services for many Queensland families—and the higher the quality of the care, the better. So it was our pleasure to help make the process for providers just that little bit easier and quicker.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Department of Education | Early childhood care service providers application video','Early childhood education and care is an integral part of our community but the Department of Education had an opportunity to improve the service provider application process. They believed there was a better way to help applicants navigate the process, so they asked us to create a simple, engaging animated video to break down the submission in easy-to-follow steps.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139378,143154,1,'Department of Education','2023-03-30 06:24:08','2023-03-30 06:24:08','2214e32b-6506-4206-8819-d23e0ceca605',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Early childhood care service providers application video',NULL,NULL,'Early childhood education and care is an integral part of our community but the Department of Education had an opportunity to improve the service provider application process. They believed there was a better way to help applicants navigate the process, so they asked us to create a simple, engaging animated video to break down the submission in easy-to-follow steps.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-It8nqzuyY4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:75% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/771857698?h=fbf07172e6&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"8147_DoE Early childhood services video 07.mp4\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OSv1zZoTd7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The department’s need came down to a few common misunderstandings that kept occurring during the application process for service providers. These pipeline barriers absorbed time and increased administration for the department’s Regulatory Authority. \\nOur challenge was to make an accessible, easy-to-understand explainer video that would ensure more applications are completed properly before being submitted.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pkInp3sX8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Once the client identified the core issues and nailed down the correct process, we produced a simple voiceover and animation strategy to address the problems concisely and clearly. \\nIt was important to keep the process really simple while making sure the applications would contain all of the required information. Our approach involved balancing authority with friendliness to connect with the audience.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MRDlR2NjSv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Using customised stock illustration, we produced a five-minute animated video that combined relatable creativity with clear actions.\\nWe represented our diverse audience with the illustration and voiceover to show the application process, highlight the fields that require more attention and express the specificities that are commonly missed.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LpUDcdBBO6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The video really breaks down a complex process into actionable steps.\\nEarly childhood education and care are vital services for many Queensland families—and the higher the quality of the care, the better. So it was our pleasure to help make the process for providers just that little bit easier and quicker.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Department of Education | Early childhood care service providers application video','Early childhood education and care is an integral part of our community but the Department of Education had an opportunity to improve the service provider application process. They believed there was a better way to help applicants navigate the process, so they asked us to create a simple, engaging animated video to break down the submission in easy-to-follow steps.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139380,143156,1,'vitalway','2023-03-30 06:26:19','2023-03-30 06:26:19','b5bc5323-6a8d-42c1-93d1-0058500f84de',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The vital way of branding',NULL,NULL,'Aligning a brand’s value is essential to communicating purposeful work. Through customer research, we helped reposition vitalway to emulate its extensive years of combined experience working with disadvantaged young people and their families through value-based learning.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OSv1zZoTd7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A grassroots program with huge potential to grow significantly, vitalway needed help with maturing their brand identity and better defining their market positioning. While they relied on a strong reputation and substantial impact, their varying services weren’t well understood by their market.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pkInp3sX8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We went straight to the source—through interviews with vitalway’s key stakeholders, we were able to shape a picture of the wider market. While we were unable to speak directly with vitalway’s at-risk youth participants, we learned from others who use and refer to vitalway’s program.\\nAlongside our customer insights, we engaged in desktop research to learn about competitors and contemporary services in vitalway’s market space.\\nOur deeper understanding of the perceptions and realities of vitalway’s industry guided us in writing a brand narrative for vitalway that truly nailed their unique positioning.\\nThese insights contributed not only to their brand strategy, but also their business strategy—aligning these two pieces to ensure the vitalway brand always works towards the organisation’s business goals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MRDlR2NjSv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A powerful purpose requires a visual identity that holds the brand with certainty and conviction. Being mindful of the humans vitalway serves, we developed a visual system that pays respect to the company’s past and paints a clear image of a bright future.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LpUDcdBBO6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"vitalway is a life changing program for at-risk teenagers. Realigning these teenagers with their values and emotions allows them to thrive amidst challenging circumstances, in a way they often don’t believe could be possible.\\nAt New Word Order, our purpose is to make a meaningful difference to people’s lives, and this project is yet another example of helping brands reach more people in need of their life-changing services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Department of Education | Early childhood care service providers application video','Early childhood education and care is an integral part of our community but the Department of Education had an opportunity to improve the service provider application process. They believed there was a better way to help applicants navigate the process, so they asked us to create a simple, engaging animated video to break down the submission in easy-to-follow steps.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139383,143159,1,'vitalway','2023-03-30 23:05:47','2023-03-30 23:05:47','6c7c3b6c-c97c-4a8b-9e7e-67995ba36418',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The vital way of branding',NULL,NULL,'Aligning a brand’s value is essential to communicating purposeful work. Through customer research, we helped reposition vitalway to emulate its extensive years of combined experience working with disadvantaged young people and their families through value-based learning.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OSv1zZoTd7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A grassroots program with huge potential to grow significantly, vitalway needed help with maturing their brand identity and better defining their market positioning. While they relied on a strong reputation and substantial impact, their varying services weren’t well understood by their market.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pkInp3sX8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We went straight to the source—through interviews with vitalway’s key stakeholders, we were able to shape a picture of the wider market. While we were unable to speak directly with vitalway’s at-risk youth participants, we learned from others who use and refer to vitalway’s program.\\nAlongside our customer insights, we engaged in desktop research to learn about competitors and contemporary services in vitalway’s market space.\\nOur deeper understanding of the perceptions and realities of vitalway’s industry guided us in writing a brand narrative for vitalway that truly nailed their unique positioning.\\nThese insights contributed not only to their brand strategy, but also their business strategy—aligning these two pieces to ensure the vitalway brand always works towards the organisation’s business goals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MRDlR2NjSv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A powerful purpose requires a visual identity that holds the brand with certainty and conviction. Being mindful of the humans vitalway serves, we developed a visual system that pays respect to the company’s past and paints a clear image of a bright future.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LpUDcdBBO6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"vitalway is a life changing program for at-risk teenagers. Realigning these teenagers with their values and emotions allows them to thrive amidst challenging circumstances, in a way they often don’t believe could be possible.\\nAt New Word Order, our purpose is to make a meaningful difference to people’s lives, and this project is yet another example of helping brands reach more people in need of their life-changing services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Department of Education | Early childhood care service providers application video','Early childhood education and care is an integral part of our community but the Department of Education had an opportunity to improve the service provider application process. They believed there was a better way to help applicants navigate the process, so they asked us to create a simple, engaging animated video to break down the submission in easy-to-follow steps.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139385,143161,1,'Emotional connection lies at the heart of your brand','2023-03-30 23:07:15','2023-03-30 23:07:15','7b713c6f-db0d-41ac-80de-c0658fa7b6f1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W8fJrHtzJR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<b> The most powerful form of marketing is when brands build lasting emotional connections with their audience. <b>\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Often a lack of connection is to blame for marketing and brand under-performance.\\nWhy is that? Well, think of brands like people.\\nSome you associate with on a very shallow level. Some you interact with regularly but don’t really feel a connection. And some, you just really love.\\nLike people, we want to engage with brands that share our values, perspectives and opinions. We become loyal to them when know they understand us and make us feel good. \\n\\n<h5> But as a brand owner or leader, how do you find these insights and build these emotional connections? </h5>\\nSuccessful brands invest in really understanding their customers.\\nThey undertake fit-for-purpose qualitative research to ask their customers questions and gain their insights into what they are thinking and why they behave the way they do. \\nToo often, this step is overlooked by a lack of understanding or a short-term view of objectives and budget. \\nCustomer insights are the gold nuggets of wisdom that don’t just give rise to effective campaigns—they transform the businesses, too.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #1: Tech company\",\"text\":\"Last year, we undertook 20 in-depth online interviews for a tech company wanting to know how their customers felt about them.\\nThe phone interviews, all following the same discussion guide and conducted across the world, clearly showed that while customers were loyal, they were hungry for greater innovation.\\nThese insights gave the leadership team confidence to fast-track some of their more ambitious projects.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #2: Business management consultancy\",\"text\":\"A few months ago, we interviewed 20 potential, current and lapsed customers for a business management consultancy.\\nOur client learned more about the life cycle of their customers’ businesses, and how their needs change accordingly.\\nThe insights from these interviews helped us shape the consultancy’s approach for introducing a new product stream to a wider audience.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #3: Tertiary institution\",\"text\":\"Earlier this year, we undertook 20 in-depth interviews and six focus groups for a tertiary institution, aimed at understanding the emotional drivers for enrolments.\\nEnrolments had been waning slowly for eight years, and key demographics had switched around, too.\\nThrough our insights, we were able to show that, while students were still true believers in the brand, alumni and referrers were noticeably less enthusiastic. This was affecting the quality and number of referrals.\\nThe detail in our insights is fuelling a marketing strategy that is aimed at rebuilding strong connections.\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h5> Fit-for-purpose customer research </h5>\\nAt New Word Order, we undertake this step as part of our wider brand development methodology, and we find it yields valuable input into our clients’ business strategies on top of feeding their brand strategy.\\nOur qualitative research is a formative contribution that tells you how your customers perceive your brand and what they need from you.\\nWe use quantitative research to test that these views are representative of the wider industry and your customer base.\\nResearch can be expensive but it doesn’t have to be.\\nThere’s an art to asking customers questions. We can find out the true, deep feelings of your customers—ones they’ll never tell you, no matter how close of a relationship you share.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IRn8rdVydZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We have the expertise to undertake this process cost effectively, from effective research through to insights and creative execution.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Talk to us today\",\"buttonImage\":[],\"internalLink\":[\"21297\"],\"externalLink\":null,\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}}},\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Emotional connection lies at the heart of your brand','The most powerful form of marketing is when brands build lasting emotional connections with their audience.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139386,143162,1,'Let us introduce ourselves','2023-03-30 23:07:38','2023-03-30 23:07:38','093188fc-4f17-4740-a1c9-9e9974a192c8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BzHWrSBA3q\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Bree\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Every office needs that go-to team member who knows how to get things done. Funny thing is, our Gen Z, Taylor-Swift-obsessed, \'go-to colleague\' claims she never gets anything done.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hwKmyKwtae\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143135\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FVFWZuA5kZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Why does she say she accomplishes nothing when she appears to be one of the all-time great multi-taskers? \\n\\nWell, she has started a thousand things in her life and never completed any of them. Piano, cello, netball, volleyball, basketball, writing novels, writing poetry, acting, dancing, acrobatics, choir—all have been tried, failed and given up forever.\\n\\nIt’s just as well because, as someone who has more job titles than Scott Morrison in a pandemic, we need her in the office. We’re not sure what’s on her business card but she acts as our junior copywriter, production coordinator, chief proofreader, project manager, office manager and social club vice-president.\\n\\nBree may be our youngest employee but her list of accomplishments belies her years. She’s already watched all 412 episodes of Grey’s Anatomy, which she feels should entitle her to an honorary medical degree. She’s also memorised every single lyric of every Taylor Swift song. That particular obsession runs to attending three of her concerts (and counting) and two tattoos referencing her music (and counting).\\n\\nHer cooking skills are non-existent, but luckily Bree lives the inner-city life, so a poke bowl or dumpling shop is never too far away. There’s also the occasional Macca’s feed after hitting the Valley nightclubs—whose menu she can recite by heart, thanks to her teen years spent in the Drive Thru trenches.\\n\\nIf you can’t find her in the office, just follow the sound of someone talking about the latest Netflix series. Then just give her job to do and watch her get to it … well, straight after she’s finished listening to TayTay’s latest release. The girl has priorities, you know.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CYlWxVLWd4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Liam\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We thought we hired an award-winning advertising copywriter. But we ended up with so much more: a ska band ex-roadie, an optimistic golfer and a brave, crustacean-battling chef. \\n\\nNow that’s value.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wZCcn69t8v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142939\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CCjcrDQfKO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Liam was born and raised in Brisbane but escaped the oppressive heat to live in London and Hong Kong (and then found it again in Guam) for seven years.\\n\\nNow back in his hometown, he carries with him the secrets of a journey well-travelled—from paying his way through uni as a roadie for ska band The Furious Turtles, to winning Australian and international advertising and production copywriting awards throughout his career. \\n\\nWe’re sure we can thank his time on the road—it\'s classified but imaginably riddled with life-altering stories—for the effortless creativity he brings day to day. Second to that, maybe also his time at industry-renowned AWARD School.\\n\\nSpeaking of formative experiences, Liam’s gruff exterior was carefully constructed back in his boarding school days, when he was an easy target as the only soft city kid among a sea of tough country kids. \\n\\nHe quickly discovered that no amount of skiing holidays or golfing hole-in-ones (current tally: zero from 50,000 attempts) could win the respect of teenage bogans. A lesson in humility for Liam, perhaps—we’ve all been there at some point. \\n\\nDespite his otherwise bourgeois-sounding life where the (golfing) green is grassier, Liam actually knows all about the importance of sacrifice. \\n\\nAfter all, he cooks his famous garlic prawns every year for his family Christmas (and last year for the NWO Christmas) despite his drastic, ironic and tragic crustacean allergy. When he defeats the prawns, they defeat him right back.\\n\\nYou can actually cook the dish yourself following his not-so-secret recipe  <a href=\\\"https://newwordorder.com.au/lp/christmas-2021\\\">here.</a> It’s delicious—you can’t take Liam’s word for it, of course, but you can take ours.\\n\\nHe has cooking all locked down, but he’ll be the first to tell you cleaning isn’t his area of expertise. We can’t have everything. No reason to fret, though—isn’t that what kids are for? And he’s got four of them, so he’s very good at delegating.\\n\\nA of couple residents in his household live it lush and chore-free, though: his 50kg Irish Wolfhound, Luna, and his 8kg Cavoodle, Rusty. In fact, they’ve delegated to Liam the chore of walking them every morning. \\n\\nThose gorgeous dogs are part of what we love about Liam, along with his dry sense of humour, his endless creative expertise and his penchant for telling a good story—whether it’s through an ad script, or just a weekend anecdote.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and the Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lwRZRhzi23\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EHGcch1Nd8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141527\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Every office needs that go-to team member who knows how to get things done. Funny thing is, our Gen Z, Taylor-Swift-obsessed, \'go-to colleague\' claims she never gets anything done.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139388,143164,1,'Let us introduce ourselves','2023-03-30 23:08:01','2023-03-30 23:08:01','7b986d44-bcf0-4bdd-9efb-54cb172053f4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BzHWrSBA3q\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Bree\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Every office needs that go-to team member who knows how to get things done. Funny thing is, our Gen Z, Taylor-Swift-obsessed, \'go-to colleague\' claims she never gets anything done.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hwKmyKwtae\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143135\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FVFWZuA5kZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Why does she say she accomplishes nothing when she appears to be one of the all-time great multi-taskers? \\n\\nWell, she has started a thousand things in her life and never completed any of them. Piano, cello, netball, volleyball, basketball, writing novels, writing poetry, acting, dancing, acrobatics, choir—all have been tried, failed and given up forever.\\n\\nIt’s just as well because, as someone who has more job titles than Scott Morrison in a pandemic, we need her in the office. We’re not sure what’s on her business card but she acts as our junior copywriter, production coordinator, chief proofreader, project manager, office manager and social club vice-president.\\n\\nBree may be our youngest employee but her list of accomplishments belies her years. She’s already watched all 412 episodes of Grey’s Anatomy, which she feels should entitle her to an honorary medical degree. She’s also memorised every single lyric of every Taylor Swift song. That particular obsession runs to attending three of her concerts (and counting) and two tattoos referencing her music (and counting).\\n\\nHer cooking skills are non-existent, but luckily Bree lives the inner-city life, so a poke bowl or dumpling shop is never too far away. There’s also the occasional Macca’s feed after hitting the Valley nightclubs—whose menu she can recite by heart, thanks to her teen years spent in the Drive Thru trenches.\\n\\nIf you can’t find her in the office, just follow the sound of someone talking about the latest Netflix series. Then just give her job to do and watch her get to it … well, straight after she’s finished listening to TayTay’s latest release. The girl has priorities, you know.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CYlWxVLWd4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Liam\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We thought we hired an award-winning advertising copywriter. But we ended up with so much more: a ska band ex-roadie, an optimistic golfer and a brave, crustacean-battling chef. \\n\\nNow that’s value.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wZCcn69t8v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142939\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CCjcrDQfKO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Liam was born and raised in Brisbane but escaped the oppressive heat to live in London and Hong Kong (and then found it again in Guam) for seven years.\\n\\nNow back in his hometown, he carries with him the secrets of a journey well-travelled—from paying his way through uni as a roadie for ska band The Furious Turtles, to winning Australian and international advertising and production copywriting awards throughout his career. \\n\\nWe’re sure we can thank his time on the road—it\'s classified but imaginably riddled with life-altering stories—for the effortless creativity he brings day to day. Second to that, maybe also his time at industry-renowned AWARD School.\\n\\nSpeaking of formative experiences, Liam’s gruff exterior was carefully constructed back in his boarding school days, when he was an easy target as the only soft city kid among a sea of tough country kids. \\n\\nHe quickly discovered that no amount of skiing holidays or golfing hole-in-ones (current tally: zero from 50,000 attempts) could win the respect of teenage bogans. A lesson in humility for Liam, perhaps—we’ve all been there at some point. \\n\\nDespite his otherwise bourgeois-sounding life where the (golfing) green is grassier, Liam actually knows all about the importance of sacrifice. \\n\\nAfter all, he cooks his famous garlic prawns every year for his family Christmas (and last year for the NWO Christmas) despite his drastic, ironic and tragic crustacean allergy. When he defeats the prawns, they defeat him right back.\\n\\nYou can actually cook the dish yourself following his not-so-secret recipe  <a href=\\\"https://newwordorder.com.au/lp/christmas-2021\\\">here.</a> It’s delicious—you can’t take Liam’s word for it, of course, but you can take ours.\\n\\nHe has cooking all locked down, but he’ll be the first to tell you cleaning isn’t his area of expertise. We can’t have everything. No reason to fret, though—isn’t that what kids are for? And he’s got four of them, so he’s very good at delegating.\\n\\nA of couple residents in his household live it lush and chore-free, though: his 50kg Irish Wolfhound, Luna, and his 8kg Cavoodle, Rusty. In fact, they’ve delegated to Liam the chore of walking them every morning. \\n\\nThose gorgeous dogs are part of what we love about Liam, along with his dry sense of humour, his endless creative expertise and his penchant for telling a good story—whether it’s through an ad script, or just a weekend anecdote.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and the Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lwRZRhzi23\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EHGcch1Nd8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141527\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Every office needs that go-to team member who knows how to get things done. Funny thing is, our Gen Z, Taylor-Swift-obsessed, \'go-to colleague\' claims she never gets anything done.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139390,143166,1,'vitalway','2023-03-30 23:09:32','2023-03-30 23:09:32','2ce5d65a-4f6d-4fd3-8d6d-7bdb16fbbd8f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The vital way of branding',NULL,NULL,'Aligning a brand’s value is essential to communicating purposeful work. Through customer research, we helped reposition vitalway to emulate its extensive years of combined experience working with disadvantaged young people and their families through value-based learning.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OSv1zZoTd7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A grassroots program with huge potential to grow significantly, vitalway needed help with maturing their brand identity and better defining their market positioning. While they relied on a strong reputation and substantial impact, their varying services weren’t well understood by their market.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4pkInp3sX8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We went straight to the source—through interviews with vitalway’s key stakeholders, we were able to shape a picture of the wider market. While we were unable to speak directly with vitalway’s at-risk youth participants, we learned from others who use and refer to vitalway’s program.\\nAlongside our customer insights, we engaged in desktop research to learn about competitors and contemporary services in vitalway’s market space.\\nOur deeper understanding of the perceptions and realities of vitalway’s industry guided us in writing a brand narrative for vitalway that truly nailed their unique positioning.\\nThese insights contributed not only to their brand strategy, but also their business strategy—aligning these two pieces to ensure the vitalway brand always works towards the organisation’s business goals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MRDlR2NjSv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A powerful purpose requires a visual identity that holds the brand with certainty and conviction. Being mindful of the humans vitalway serves, we developed a visual system that pays respect to the company’s past and paints a clear image of a bright future.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LpUDcdBBO6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"vitalway is a life changing program for at-risk teenagers. Realigning these teenagers with their values and emotions allows them to thrive amidst challenging circumstances, in a way they often don’t believe could be possible.\\nAt New Word Order, our purpose is to make a meaningful difference to people’s lives, and this project is yet another example of helping brands reach more people in need of their life-changing services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'vitalway | The vital way of branding','Aligning a brand’s value is essential to communicating purposeful work. Through customer research, we helped reposition vitalway to emulate its extensive years of combined experience working with disadvantaged young people and their families through value-based learning.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139391,143167,1,'Funding','2023-03-30 23:09:41','2023-03-30 23:09:41','9cfe82c8-4362-409d-8532-6dcaa2cc746f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Branding and awareness campaign',NULL,NULL,'Funding is an online financial services company specialising in the niche area of bridging loans. They came to New Word Order with a two-fold problem. Firstly, the category they operate in (bridging loans) wasn’t entirely understood by their target market and needed further clarification. Secondly, not enough people (or even industry brokers) knew the Funding brand at all and the beneficial products they offered. A cut-through campaign was needed, stat.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ziNtnsznO9\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-RVIt4Msytq\",\"content\":{\"fields\":{\"videos\":{\"new1\":{\"type\":\"videos\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"videoPlaceholderImage\":[],\"videoCode\":\"<div style=\\\"padding:56.25% 0 0 0;position:relative;\\\"><iframe src=\\\"https://player.vimeo.com/video/765527128?h=5517b00b29&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen; picture-in-picture\\\" allowfullscreen style=\\\"position:absolute;top:0;left:0;width:100%;height:100%;\\\" title=\\\"Build a bridge - Funding.com.au TVC 30 second\\\"></iframe></div><script src=\\\"https://player.vimeo.com/api/player.js\\\"></script>\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Zh7cVNx5Rl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The loan market as a whole is highly competitive and often dominated by rate comparisons and incentive offers. Bridging loans, however, are a slightly different beast. They\'re more about recognising different life circumstances and problem solving. Other short-term bridging loan specialists had emerged and launched strong brand campaigns. Our key challenge was to create a brand that focuses on solutions and creatively positions Funding among its competitor set as a short-term loan company with a difference.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BvMTRKtmI7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"In order to educate the market on when a bridging loan might be required and then provide differentiation for Funding, it became abundantly clear the campaign required a creative and catchy hook to drive interest and memorability. The strategic solution was to centre on a theme of ‘build a bridge’. This theme was seen to be positive and proactive, with language that borrowed from colloquial usage and even had humorous undertones. Strategically, it provided a strong platform and foundation to work on creatively and talk to the target audience in a very authentic way.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-dA5dzfYeRH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143003\",\"143000\",\"142996\",\"142994\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvLNQH8ye2\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The creative development process, as it always should, started with a strong consideration of the target audience. Knowing that a lot of the target market were parents, we decided to let the innocent wisdom of children shine through by delivering the ‘build a bridge’ solution. Children can turn the complex into simple through thought and action, which is exactly what we showed in this campaign—the drawing of a bridge from one home to another, which created a visual hook. The viewer is drawn in by the surprising nature of the child explaining the product in just a few words, and then left with a smile as she demonstrates it in permanent marker.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fL4MPWaBk1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The first rule of advertising is to get noticed, which this campaign achieves by not looking like a bank or finance ad. The impact of the campaign is created through pure relevancy, showing real family people in real situations. The messaging is loud and clear and helped to educate the market on the nature of short-term bridging loan options and drive traffic to the Funding site.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Funding | Branding and awareness campaign','Funding is an online financial services company specialising in the niche area of bridging loans. They came to New Word Order with a two-fold problem. Firstly, the category they operate in (bridging loans) wasn’t entirely understood by their target market and needed further clarification. Secondly, not enough people (or even industry brokers) knew the Funding brand at all and the beneficial products they offered. A cut-through campaign was needed, stat.','funding, brokers, money, loans, advertising, campaign, tv, video',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139392,143168,1,'Queensland Hydro','2023-03-30 23:09:50','2023-03-30 23:09:50','25c8f49c-13e5-448e-82a9-16c171eba8ae',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Powering Queensland’s future',NULL,NULL,'Queensland has some ambitious goals for a clean energy future: 50 per cent renewable energy by 2030 and zero net emissions by 2050. Pumped hydro is the key to achieving this, and the state government is facilitating pumped hydro through a new subsidiary brand. We helped build the brand for Queensland Hydro on a strategic, evidence-based foundation to set it up for a successful journey of powering Queensland’s future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MJwz0wrwkL\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142807\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-RCifzof72P\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The Queensland Government needed to establish a subsidiary entity to carry the planning and transmission connection work for potential pumped hydro projects across Queensland. Our creation of the brand for Queensland Hydro involved extensive discovery prior to crafting a brand identity, designing marketing collateral, and copywriting, designing and developing a website.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Fdid0P67Ag\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142816\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"As we often do, we began this project with a comprehensive discovery phase. This involved a review of Queensland Hydro’s contemporaries and competitive landscape, consultation with a First Nations advisor on theming and language, and stakeholder workshops to clarify the brand personality, purpose and objectives.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-5o9yXWhZxU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Our deliverables included a brand name, logo, visual identity, collateral, key messaging and content for the website. We kept the design fresh and engaging while accommodating the needs of the various stakeholders involved.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-JvkuSRS5qb\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142702\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-fjwEEvmBHp\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Queensland Hydro will be a vital component in reaching Australia’s aspirational energy goals over the next few decades. Pumped hydro is at the centre of cleaning up Queensland’s energy, and we were delighted to play a role in bringing Queensland Hydro to life.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2XRuH2soQj\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142813\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Queensland Hydro | Powering Queensland\'s future','Queensland has some ambitious goals for a clean energy future: 50 per cent renewable energy by 2030 and zero net emissions by 2050. Pumped hydro is the key to achieving this, and the state government is facilitating pumped hydro through a new subsidiary brand. We helped build the brand for Queensland Hydro on a strategic, evidence-based foundation to set it up for a successful journey of powering Queensland’s future.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139393,143169,1,'Surf Life Saving Queensland','2023-03-30 23:09:59','2023-03-30 23:09:59','b040bea9-14af-40cd-8c99-954cf5c53f73',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let’s be SharkSmart!',NULL,NULL,'There’s no need to be scared of sharks—we just need to be smart.\nAnd learning is what kids do best, so we created an interactive, educational game for Surf Life Saving Queensland to teach primary-school-age kids how they should behave around sharks.\nWe had a whale of a time on this project, so let’s jump right in!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SUpdyGgoHc\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Surf Life Saving Queensland and the Department of Agriculture and Fisheries are promoting ‘SharkSmart’ messages to primary-school-aged children in a 12-month educational program. They asked us to develop an interactive game that educates kids about sharks and the simple things they can do at the beach to stay safe from shark-related incidents.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PLy32UQvPs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Kids are typically more interested in sharks than afraid of them, so we wanted to nurture that by making the game educational and fun, rather than fear based. Armed with our behaviour change expertise, we empowered them with knowledge about how sharks behave—such as their feeding times, where they live and how they hunt—so the kids can make smart choices. We consulted with primary school teachers to develop the game’s tone and language, ensuring it was as age-appropriate and engaging as possible.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-oQ8wJZ93RN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There are so many ways to approach SharkSmart behaviours, so we created not one game, but two mini games with three modes. \\n\\nThe first game—Beach Explorer—is an open-world exploration game, set on a beach. There are items scattered across the beach—like flags, water debris and rips—that prompt questions related to SharkSmart behaviours. If the player answers correctly, they’re rewarded with a beach badge. This game is split into two modes: explorer mode and race mode.\\n\\nThe second game—Which Shark Are You?—asks the players questions about their preferences and human experiences that relate to the behaviours of tiger, bull, white and hammerhead sharks. Based on their responses, each player is assigned one of the four shark types and provided information about that shark. \\nThe whole project is elevated by NWO’s trademark custom illustration and animation—which really brings the beach to life!\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-sfiAs0GFwT\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We really blew this brief out of the water: for a limited budget, we built two games from scratch, complete with a catchy custom theme song. \\nProjects like these—fun and engaging but with real purpose—are why we get out of bed every morning. The whole process from conception to delivery was really collaborative with the clients, and that definitely shows in the final product.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Surf Life Saving Queensland | Let\'s be SharkSmart!','There’s no need to be scared of sharks—we just need to be smart. And learning is what kids do best, so we created an interactive, educational game for Surf Life Saving Queensland to teach primary-school-age kids how they should behave around sharks. We had a whale of a time on this project, so let’s jump right in!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139394,143170,1,'Department of Justice and Attorney-General','2023-03-30 23:10:06','2023-03-30 23:10:06','06a6c9da-425b-4e3a-9770-31a72d0b9a96',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'New regulatory strategy campaign',NULL,NULL,'The Office of Liquor and Gaming Regulation (OLGR) had done the hard yards of developing, building and creating a new strategy to meet the modern demands of the industry they oversee. But communicating their strategy to a range of diverse industry stakeholders was seen as one of the most critical steps in achieving their strategic goals. They needed clarity, understanding and buy-in. Enter New Word Order.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7SDJ7AE1Hq\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"One of the key challenges for OLGR is managing the dual roles of being the industry regulator and minimising harm along with responsibilities for promoting the growth and development of the liquor and gaming industry. From a strategic communication perspective, this added extra complexity to requirements for stakeholder engagement. New Word Order was able to provide insightful analysis to help communicate the strategy in a clearer fashion, connecting organisational objectives with customer benefits.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-Pvd7qvkzCt\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142834\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-zTtYdXJlj7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The strategy behind the campaign centred on heightening the value of the relationship and partnership between OLGR and their industry stakeholders. Creating a stronger sense of community and collaboration was the platform used to inform and shape the campaign. We worked closely with the client team and industry stakeholders to articulate the goals of linking safe and responsible liquor and gaming environments and minimising harm with a vibrant industry future.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-c7mft0SfI7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"142836\",\"142835\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"CREATIVE\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"The creative challenge revolved around communicating a long-term governmental strategy while avoiding bureaucratic overreach. Fresh language and design were the tools used to create informational cut-through and connect with the target audiences. Language and copy was simplified and made more direct. A colourful and freeform visual design concept, not traditionally associated with government work, was used to signal a fresh start. This visual approach was dynamically used across video animations, presentation materials, documentation and more.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-raKnAjdncg\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142837\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-vZY7GyvZuJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Pubs, clubs, and liquor and gaming licensees can be a tough crowd to impress but this campaign has resonated strongly due to its use of simple and clear messaging and innovative visual look. The primary goals of education and information is an ongoing process but the campaign has launched strongly.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Department of Justice and Attorney-General | New regulatory strategy campaign','The Office of Liquor and Gaming Regulation (OLGR) had done the hard yards of developing, building and creating a new strategy to meet the modern demands of the industry they oversee. But communicating their strategy to a range of diverse industry stakeholders was seen as one of the most critical steps in achieving their strategic goals. They needed clarity, understanding and buy-in. Enter New Word Order.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139396,143172,1,'23 vital website assets 1 1','2023-03-31 00:57:08','2023-03-31 00:57:08','73e8239f-cc9c-49c8-9c54-1b3e26421d2b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/23_vital-website-assets_1-1.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/23_vital-website-assets_1-1.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/23_vital-website-assets_1-1.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/23_vital-website-assets_1-1.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/23_vital-website-assets_1-1.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/23_vital-website-assets_1-1.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/23_vital-website-assets_1-1.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/23_vital-website-assets_1-1.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/23_vital-website-assets_1-1.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/23_vital-website-assets_1-1.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/23_vital-website-assets_1-1.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/23_vital-website-assets_1-1.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/23_vital-website-assets_1-1.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/23_vital-website-assets_1-1.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/23_vital-website-assets_1-1.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/23_vital-website-assets_1-1.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":10417,\"originalImageHeight\":6250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAgQFBv/EACMQAAEEAAQHAAAAAAAAAAAAAAIAAQMEBRJxcxMhMjQ2QYH/xAAXAQADAQAAAAAAAAAAAAAAAAABAgQD/8QAIBEAAgEDBAMAAAAAAAAAAAAAAQIAAxExBBIhMkFx0f/aAAwDAQACEQMRAD8AqV6U2GxGQMEYRsxETP1v70SuC7Cx4lquu2xHMKHE3t1DC1HwTmbKMjc/ui12C9x4kdaulBgrHMbteOWNt0o7CGjgTPj3lPbZO3dpLqMr7+T/2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#f2d6c8\",\"#1e7b93\",\"#90316e\",\"#ba81a3\",\"#f87351\"],\"lightness\":58,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139397,143173,1,'23 vital website assets 1 1','2023-03-31 00:57:25','2023-03-31 00:57:25','1d38df94-6db9-4143-ba47-04d45130ae1a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/23_vital-website-assets_1-1_2023-03-31-005724_bewu.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/23_vital-website-assets_1-1_2023-03-31-005724_bewu.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/23_vital-website-assets_1-1_2023-03-31-005724_bewu.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/23_vital-website-assets_1-1_2023-03-31-005724_bewu.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/23_vital-website-assets_1-1_2023-03-31-005724_bewu.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/23_vital-website-assets_1-1_2023-03-31-005724_bewu.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/23_vital-website-assets_1-1_2023-03-31-005724_bewu.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/23_vital-website-assets_1-1_2023-03-31-005724_bewu.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/23_vital-website-assets_1-1_2023-03-31-005724_bewu.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/23_vital-website-assets_1-1_2023-03-31-005724_bewu.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/23_vital-website-assets_1-1_2023-03-31-005724_bewu.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/23_vital-website-assets_1-1_2023-03-31-005724_bewu.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/23_vital-website-assets_1-1_2023-03-31-005724_bewu.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/23_vital-website-assets_1-1_2023-03-31-005724_bewu.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/23_vital-website-assets_1-1_2023-03-31-005724_bewu.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/23_vital-website-assets_1-1_2023-03-31-005724_bewu.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":10417,\"originalImageHeight\":6250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAgQFBv/EACMQAAEEAAQHAAAAAAAAAAAAAAIAAQMEBRJxcxMhMjQ2QYH/xAAXAQADAQAAAAAAAAAAAAAAAAABAgQD/8QAIBEAAgEDBAMAAAAAAAAAAAAAAQIAAxExBBIhMkFx0f/aAAwDAQACEQMRAD8AqV6U2GxGQMEYRsxETP1v70SuC7Cx4lquu2xHMKHE3t1DC1HwTmbKMjc/ui12C9x4kdaulBgrHMbteOWNt0o7CGjgTPj3lPbZO3dpLqMr7+T/2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#f2d6c8\",\"#1e7b93\",\"#90316e\",\"#ba81a3\",\"#f87351\"],\"lightness\":58,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139398,143174,1,'23 vital website assets 1 12','2023-03-31 00:57:32','2023-03-31 00:57:32','69c8dbaf-5808-4902-8591-90699539af9d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/23_vital-website-assets_1-12.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/23_vital-website-assets_1-12.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/23_vital-website-assets_1-12.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/23_vital-website-assets_1-12.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/23_vital-website-assets_1-12.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/23_vital-website-assets_1-12.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/23_vital-website-assets_1-12.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/23_vital-website-assets_1-12.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/23_vital-website-assets_1-12.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/23_vital-website-assets_1-12.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/23_vital-website-assets_1-12.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/23_vital-website-assets_1-12.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/23_vital-website-assets_1-12.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/23_vital-website-assets_1-12.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/23_vital-website-assets_1-12.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/23_vital-website-assets_1-12.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":10417,\"originalImageHeight\":6250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAgMEBf/EACAQAAEEAQQDAAAAAAAAAAAAAAEAAgMEBREUMlEhIjP/xAAWAQEBAQAAAAAAAAAAAAAAAAABAAP/xAAZEQEBAAMBAAAAAAAAAAAAAAAAAgERMUH/2gAMAwEAAhEDEQA/ANzJ5CarchZGwujc0kkd9LKeNq3tXRsbgOPt405DRVKd+hH1TIs5nJORPX//2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#ead6c5\",\"#583f37\",\"#ac8a79\",\"#6f6b96\",\"#946a65\"],\"lightness\":57,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139399,143175,1,'23 vital website assets 1 13','2023-03-31 00:57:46','2023-03-31 00:57:46','cb90c791-9479-45d4-a885-fc28d87f2ae7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/23_vital-website-assets_1-13.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/23_vital-website-assets_1-13.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/23_vital-website-assets_1-13.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/23_vital-website-assets_1-13.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/23_vital-website-assets_1-13.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/23_vital-website-assets_1-13.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/23_vital-website-assets_1-13.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/23_vital-website-assets_1-13.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/23_vital-website-assets_1-13.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/23_vital-website-assets_1-13.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/23_vital-website-assets_1-13.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/23_vital-website-assets_1-13.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/23_vital-website-assets_1-13.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/23_vital-website-assets_1-13.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/23_vital-website-assets_1-13.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/23_vital-website-assets_1-13.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":10417,\"originalImageHeight\":6250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAQIDBP/EACEQAAEDAwQDAAAAAAAAAAAAAAMBAgQABRESITFxMjPB/8QAGAEBAAMBAAAAAAAAAAAAAAAABAABAgP/xAAeEQACAgICAwAAAAAAAAAAAAABAwACESEEMiIxQf/aAAwDAQACEQMRAD8AyyHlHILINLc0LX6WhbtlMc57rgqoOBiPde4ufLUESWpJrBsIVWKq41rnalNWsKOhma47L2sMnUS6+9O1+UZHyU/uZW3eQ6jvZiEdRP/Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#e96f56\",\"#262746\",\"#7732ae\",\"#eadbcd\",\"#792981\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139400,143176,1,'23 vital website assets 1 14','2023-03-31 00:57:58','2023-03-31 00:57:58','3f32de10-a07d-4f13-8b04-ab0858452871',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1843_crop_center-center_82_line/23_vital-website-assets_1-14.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x3686_crop_center-center_82_line/23_vital-website-assets_1-14.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1536_crop_center-center_82_line/23_vital-website-assets_1-14.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x3072_crop_center-center_82_line/23_vital-website-assets_1-14.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1228_crop_center-center_82_line/23_vital-website-assets_1-14.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2457_crop_center-center_82_line/23_vital-website-assets_1-14.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x921_crop_center-center_82_line/23_vital-website-assets_1-14.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x768_crop_center-center_82_line/23_vital-website-assets_1-14.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1843_crop_center-center_82_line/23_vital-website-assets_1-14.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x3686_crop_center-center_82_line/23_vital-website-assets_1-14.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1536_crop_center-center_82_line/23_vital-website-assets_1-14.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x3072_crop_center-center_82_line/23_vital-website-assets_1-14.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1228_crop_center-center_82_line/23_vital-website-assets_1-14.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2457_crop_center-center_82_line/23_vital-website-assets_1-14.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x921_crop_center-center_82_line/23_vital-website-assets_1-14.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x768_crop_center-center_82_line/23_vital-website-assets_1-14.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1843,\"3072\":3686,\"1280\":1536,\"2560\":3072,\"1024\":1228,\"2048\":2457,\"768\":921,\"640\":768},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":6250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAATABADAREAAhEBAxEB/8QAFgAAAwAAAAAAAAAAAAAAAAAAAgUH/8QAIhAAAgICAQQDAQAAAAAAAAAAAQIDBAARBRIhQYEGMVFT/8QAFwEAAwEAAAAAAAAAAAAAAAAAAgMEBf/EAB4RAAMBAAICAwAAAAAAAAAAAAABAhEDEwQxITJR/9oADAMBAAIRAxEAPwBnc+UzWJTDxqBF/q42fQyyfHUrbHLj/RDyJuOwktTtNs/ZPYZRxufUoasXoFqs9cJYmrtFHIT0lgdesK2vrL1iofYsr4AnmUoVXvvzgcardYfTEvUyjclBFYoTJMgdegnR/cz4bVJonl4yYec1is//2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#712eae\",\"#edb1b1\",\"#45bfba\",\"#2f5ad2\",\"#b44c64\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":1843,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139401,143177,1,'23 vital website assets 1 15','2023-03-31 00:58:15','2023-03-31 00:58:15','9f4848fa-5162-4946-ac73-10f0fcfc8af3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/23_vital-website-assets_1-15.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/23_vital-website-assets_1-15.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/23_vital-website-assets_1-15.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/23_vital-website-assets_1-15.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/23_vital-website-assets_1-15.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/23_vital-website-assets_1-15.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/23_vital-website-assets_1-15.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/23_vital-website-assets_1-15.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/23_vital-website-assets_1-15.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/23_vital-website-assets_1-15.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/23_vital-website-assets_1-15.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/23_vital-website-assets_1-15.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/23_vital-website-assets_1-15.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/23_vital-website-assets_1-15.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/23_vital-website-assets_1-15.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/23_vital-website-assets_1-15.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":10417,\"originalImageHeight\":6250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFAABAAAAAAAAAAAAAAAAAAAABf/EACQQAAEDAwEJAAAAAAAAAAAAAAMAAQIEBRFxEiEiMTM0UoGx/8QAGAEAAgMAAAAAAAAAAAAAAAAAAwQBAgX/xAAiEQACAQMCBwAAAAAAAAAAAAAAAQIDBCFB8AUiMTI0YaH/2gAMAwEAAhEDEQA/AHS8Y5jkSWPLZ9phYyYUspxk/gYC3uUhqkcmxHc+X5qZXDSUGsBoWkqttySTWg5U9Oej/HQ0Wq9HvRhtr7as1ZDrd6HeH+Lv0f/Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#0ad0bc\",\"#f2dbd2\",\"#4339c3\",\"#96284a\",\"#5b1e3d\"],\"lightness\":54,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139402,143178,1,'23 vital website assets 1 16','2023-03-31 00:58:33','2023-03-31 00:58:33','6a811a62-99db-423c-a1aa-0497a137fa5f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/23_vital-website-assets_1-16.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/23_vital-website-assets_1-16.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/23_vital-website-assets_1-16.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/23_vital-website-assets_1-16.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/23_vital-website-assets_1-16.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/23_vital-website-assets_1-16.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/23_vital-website-assets_1-16.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/23_vital-website-assets_1-16.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/23_vital-website-assets_1-16.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/23_vital-website-assets_1-16.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/23_vital-website-assets_1-16.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/23_vital-website-assets_1-16.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/23_vital-website-assets_1-16.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/23_vital-website-assets_1-16.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/23_vital-website-assets_1-16.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/23_vital-website-assets_1-16.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":10417,\"originalImageHeight\":6250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABgP/xAAgEAABBAIBBQAAAAAAAAAAAAABAAIDBBESITEyM3Fy/8QAFwEAAwEAAAAAAAAAAAAAAAAAAQIDBP/EABoRAQEAAgMAAAAAAAAAAAAAAAEAITEREkH/2gAMAwEAAhEDEQA/AI2LVqDOr3NJk1aNR05WnsOA1Plltcxtij2yXPBxworniEcveKD7VT2Y3IG9lf0VJ3Lf/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#c4b2ce\",\"#38306a\",\"#82454f\",\"#7a6b8c\",\"#886958\"],\"lightness\":50,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139403,143179,1,'vitalway','2023-03-31 01:01:04','2023-03-31 01:01:04','67c685a2-91e0-447c-a680-cc3840803983',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The vital way of branding',NULL,NULL,'Aligning a brand’s value is essential to communicating purposeful work. Through customer research, we helped reposition vitalway to emulate its extensive years of combined experience working with disadvantaged young people and their families through value-based learning.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rqi4FVqzfm\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143173\",\"143178\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OSv1zZoTd7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A grassroots program with huge potential to grow significantly, vitalway needed help with maturing their brand identity and better defining their market positioning. While they relied on a strong reputation and substantial impact, their varying services weren’t well understood by their market.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WVYFOcr17s\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gYRjQPXQnd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"143176\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We went straight to the source—through interviews with vitalway’s key stakeholders, we were able to shape a picture of the wider market. While we were unable to speak directly with vitalway’s at-risk youth participants, we learned from others who use and refer to vitalway’s program.\\nAlongside our customer insights, we engaged in desktop research to learn about competitors and contemporary services in vitalway’s market space.\\nOur deeper understanding of the perceptions and realities of vitalway’s industry guided us in writing a brand narrative for vitalway that truly nailed their unique positioning.\\nThese insights contributed not only to their brand strategy, but also their business strategy—aligning these two pieces to ensure the vitalway brand always works towards the organisation’s business goals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wgVzrD9tCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143174\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MRDlR2NjSv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A powerful purpose requires a visual identity that holds the brand with certainty and conviction. Being mindful of the humans vitalway serves, we developed a visual system that pays respect to the company’s past and paints a clear image of a bright future.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZU9X3eJe45\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143177\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LpUDcdBBO6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"vitalway is a life changing program for at-risk teenagers. Realigning these teenagers with their values and emotions allows them to thrive amidst challenging circumstances, in a way they often don’t believe could be possible.\\nAt New Word Order, our purpose is to make a meaningful difference to people’s lives, and this project is yet another example of helping brands reach more people in need of their life-changing services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2MPtm7hnSH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143178\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'vitalway | The vital way of branding','Aligning a brand’s value is essential to communicating purposeful work. Through customer research, we helped reposition vitalway to emulate its extensive years of combined experience working with disadvantaged young people and their families through value-based learning.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139405,143181,1,'23 vital website assets 1 13','2023-03-31 01:03:20','2023-03-31 01:03:20','b0a14b7b-0cc6-4d60-bad7-bf5d6e1110e4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/23_vital-website-assets_1-13_2023-03-31-010319_jprk.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/23_vital-website-assets_1-13_2023-03-31-010319_jprk.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/23_vital-website-assets_1-13_2023-03-31-010319_jprk.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/23_vital-website-assets_1-13_2023-03-31-010319_jprk.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/23_vital-website-assets_1-13_2023-03-31-010319_jprk.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/23_vital-website-assets_1-13_2023-03-31-010319_jprk.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/23_vital-website-assets_1-13_2023-03-31-010319_jprk.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/23_vital-website-assets_1-13_2023-03-31-010319_jprk.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x921_crop_center-center_82_line/23_vital-website-assets_1-13_2023-03-31-010319_jprk.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x1843_crop_center-center_82_line/23_vital-website-assets_1-13_2023-03-31-010319_jprk.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x767_crop_center-center_82_line/23_vital-website-assets_1-13_2023-03-31-010319_jprk.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x1535_crop_center-center_82_line/23_vital-website-assets_1-13_2023-03-31-010319_jprk.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x614_crop_center-center_82_line/23_vital-website-assets_1-13_2023-03-31-010319_jprk.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x1228_crop_center-center_82_line/23_vital-website-assets_1-13_2023-03-31-010319_jprk.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x460_crop_center-center_82_line/23_vital-website-assets_1-13_2023-03-31-010319_jprk.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x383_crop_center-center_82_line/23_vital-website-assets_1-13_2023-03-31-010319_jprk.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":921,\"3072\":1843,\"1280\":767,\"2560\":1535,\"1024\":614,\"2048\":1228,\"768\":460,\"640\":383},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":10417,\"originalImageHeight\":6250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAAJABADAREAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAQIDBP/EACEQAAEDAwQDAAAAAAAAAAAAAAMBAgQABRESITFxMjPB/8QAGAEBAAMBAAAAAAAAAAAAAAAABAABAgP/xAAeEQACAgICAwAAAAAAAAAAAAABAwACESEEMiIxQf/aAAwDAQACEQMRAD8AyyHlHILINLc0LX6WhbtlMc57rgqoOBiPde4ufLUESWpJrBsIVWKq41rnalNWsKOhma47L2sMnUS6+9O1+UZHyU/uZW3eQ6jvZiEdRP/Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#e96f56\",\"#262746\",\"#7732ae\",\"#eadbcd\",\"#792981\"],\"lightness\":49,\"placeholderWidth\":1536,\"placeholderHeight\":921,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139406,143182,1,'vitalway','2023-03-31 01:04:25','2023-03-31 01:04:25','88e20871-3c66-44e2-a54c-c48142d067fa',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The vital way of branding',NULL,NULL,'Aligning a brand’s value is essential to communicating purposeful work. Through customer research, we helped reposition vitalway to emulate its extensive years of combined experience working with disadvantaged young people and their families through value-based learning.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rqi4FVqzfm\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143173\",\"143178\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OSv1zZoTd7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A grassroots program with huge potential to grow significantly, vitalway needed help with maturing their brand identity and better defining their market positioning. While they relied on a strong reputation and substantial impact, their varying services weren’t well understood by their market.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WVYFOcr17s\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gYRjQPXQnd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"143176\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We went straight to the source—through interviews with vitalway’s key stakeholders, we were able to shape a picture of the wider market. While we were unable to speak directly with vitalway’s at-risk youth participants, we learned from others who use and refer to vitalway’s program.\\nAlongside our customer insights, we engaged in desktop research to learn about competitors and contemporary services in vitalway’s market space.\\nOur deeper understanding of the perceptions and realities of vitalway’s industry guided us in writing a brand narrative for vitalway that truly nailed their unique positioning.\\nThese insights contributed not only to their brand strategy, but also their business strategy—aligning these two pieces to ensure the vitalway brand always works towards the organisation’s business goals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wgVzrD9tCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143174\",\"143181\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MRDlR2NjSv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A powerful purpose requires a visual identity that holds the brand with certainty and conviction. Being mindful of the humans vitalway serves, we developed a visual system that pays respect to the company’s past and paints a clear image of a bright future.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2MPtm7hnSH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143178\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LpUDcdBBO6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"vitalway is a life changing program for at-risk teenagers. Realigning these teenagers with their values and emotions allows them to thrive amidst challenging circumstances, in a way they often don’t believe could be possible.\\nAt New Word Order, our purpose is to make a meaningful difference to people’s lives, and this project is yet another example of helping brands reach more people in need of their life-changing services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hsGIG2szE3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143177\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'vitalway | The vital way of branding','Aligning a brand’s value is essential to communicating purposeful work. Through customer research, we helped reposition vitalway to emulate its extensive years of combined experience working with disadvantaged young people and their families through value-based learning.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139408,143184,1,'23 vital website assets 1 4','2023-03-31 01:05:51','2023-03-31 01:05:51','eb591674-1ae1-4571-b595-65e0436df42c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1843_crop_center-center_82_line/23_vital-website-assets_1-4.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x3686_crop_center-center_82_line/23_vital-website-assets_1-4.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1536_crop_center-center_82_line/23_vital-website-assets_1-4.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x3072_crop_center-center_82_line/23_vital-website-assets_1-4.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1228_crop_center-center_82_line/23_vital-website-assets_1-4.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2457_crop_center-center_82_line/23_vital-website-assets_1-4.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x921_crop_center-center_82_line/23_vital-website-assets_1-4.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x768_crop_center-center_82_line/23_vital-website-assets_1-4.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1843_crop_center-center_82_line/23_vital-website-assets_1-4.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x3686_crop_center-center_82_line/23_vital-website-assets_1-4.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1536_crop_center-center_82_line/23_vital-website-assets_1-4.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x3072_crop_center-center_82_line/23_vital-website-assets_1-4.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1228_crop_center-center_82_line/23_vital-website-assets_1-4.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2457_crop_center-center_82_line/23_vital-website-assets_1-4.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x921_crop_center-center_82_line/23_vital-website-assets_1-4.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x768_crop_center-center_82_line/23_vital-website-assets_1-4.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1843,\"3072\":3686,\"1280\":1536,\"2560\":3072,\"1024\":1228,\"2048\":2457,\"768\":921,\"640\":768},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":6250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAATABADAREAAhEBAxEB/8QAGAAAAgMAAAAAAAAAAAAAAAAAAgcDBQb/xAAkEAACAgECBQUAAAAAAAAAAAABAwIEABESBQYxQVETIVNxgf/EABgBAAMBAQAAAAAAAAAAAAAAAAADBAUC/8QAHhEAAwABBAMAAAAAAAAAAAAAAAECEQMEIjETIVH/2gAMAwEAAhEDEQA/ALK9zU97SnhixEfJPqfodstnbqVmx06f0z191xrdbjZzl1G46j8ymFOOI1JLoKdZ9YQsOrzUthO3Ue2F4fGXli4fkWKIHt9TQDoPOES12dqJl+hlcSQqxQdB0BOOwnQ+czIbVJoml4YsO+axWf/Z\",\"placeholderSvg\":null,\"colorPalette\":[\"#712eae\",\"#ecadad\",\"#44bfb9\",\"#2f5ad2\",\"#ac5068\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":1843,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139409,143185,1,'vitalway','2023-03-31 01:06:07','2023-03-31 01:06:07','a059723d-53c4-4a8e-af40-f98dd7da1e30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The vital way of branding',NULL,NULL,'Aligning a brand’s value is essential to communicating purposeful work. Through customer research, we helped reposition vitalway to emulate its extensive years of combined experience working with disadvantaged young people and their families through value-based learning.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rqi4FVqzfm\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143173\",\"143178\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OSv1zZoTd7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A grassroots program with huge potential to grow significantly, vitalway needed help with maturing their brand identity and better defining their market positioning. While they relied on a strong reputation and substantial impact, their varying services weren’t well understood by their market.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WVYFOcr17s\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gYRjQPXQnd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"143184\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We went straight to the source—through interviews with vitalway’s key stakeholders, we were able to shape a picture of the wider market. While we were unable to speak directly with vitalway’s at-risk youth participants, we learned from others who use and refer to vitalway’s program.\\nAlongside our customer insights, we engaged in desktop research to learn about competitors and contemporary services in vitalway’s market space.\\nOur deeper understanding of the perceptions and realities of vitalway’s industry guided us in writing a brand narrative for vitalway that truly nailed their unique positioning.\\nThese insights contributed not only to their brand strategy, but also their business strategy—aligning these two pieces to ensure the vitalway brand always works towards the organisation’s business goals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wgVzrD9tCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143174\",\"143181\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MRDlR2NjSv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A powerful purpose requires a visual identity that holds the brand with certainty and conviction. Being mindful of the humans vitalway serves, we developed a visual system that pays respect to the company’s past and paints a clear image of a bright future.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2MPtm7hnSH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143178\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LpUDcdBBO6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"vitalway is a life changing program for at-risk teenagers. Realigning these teenagers with their values and emotions allows them to thrive amidst challenging circumstances, in a way they often don’t believe could be possible.\\nAt New Word Order, our purpose is to make a meaningful difference to people’s lives, and this project is yet another example of helping brands reach more people in need of their life-changing services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hsGIG2szE3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143177\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'vitalway | The vital way of branding','Aligning a brand’s value is essential to communicating purposeful work. Through customer research, we helped reposition vitalway to emulate its extensive years of combined experience working with disadvantaged young people and their families through value-based learning.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139411,143187,1,'23 vital website assets 1 5','2023-03-31 01:07:06','2023-03-31 01:07:06','57406a8b-a3f6-4391-94f8-e679505f17b7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1843_crop_center-center_82_line/23_vital-website-assets_1-5.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x3686_crop_center-center_82_line/23_vital-website-assets_1-5.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1536_crop_center-center_82_line/23_vital-website-assets_1-5.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x3072_crop_center-center_82_line/23_vital-website-assets_1-5.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1228_crop_center-center_82_line/23_vital-website-assets_1-5.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2457_crop_center-center_82_line/23_vital-website-assets_1-5.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x921_crop_center-center_82_line/23_vital-website-assets_1-5.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x768_crop_center-center_82_line/23_vital-website-assets_1-5.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1843_crop_center-center_82_line/23_vital-website-assets_1-5.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x3686_crop_center-center_82_line/23_vital-website-assets_1-5.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1536_crop_center-center_82_line/23_vital-website-assets_1-5.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x3072_crop_center-center_82_line/23_vital-website-assets_1-5.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1228_crop_center-center_82_line/23_vital-website-assets_1-5.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2457_crop_center-center_82_line/23_vital-website-assets_1-5.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x921_crop_center-center_82_line/23_vital-website-assets_1-5.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x768_crop_center-center_82_line/23_vital-website-assets_1-5.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1843,\"3072\":3686,\"1280\":1536,\"2560\":3072,\"1024\":1228,\"2048\":2457,\"768\":921,\"640\":768},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":6250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAATABADAREAAhEBAxEB/8QAGAAAAgMAAAAAAAAAAAAAAAAAAwcEBQb/xAAlEAACAgIAAwkAAAAAAAAAAAABAwIEABEFEkEGExQhMUNRUnH/xAAYAQADAQEAAAAAAAAAAAAAAAADBAUBAv/EAB4RAAMAAQQDAAAAAAAAAAAAAAABAhEDISIxBDJR/9oADAMBAAIRAxEAPwCzu9qLFlklcMWIxHuT9T+DHJ8eZWbDTp/TOXX23OPi2znMfY7xqFKXEKkl0ENd1WEXursUtpPLseWZqb8YeQUY1PYjOZ3kt9BnUS0twkwp6GXxJCrFB0HQE48hOj85LhtUmhaXhiw65WGz/9k=\",\"placeholderSvg\":null,\"colorPalette\":[\"#712eae\",\"#ecafb0\",\"#44c0ba\",\"#2f5ad2\",\"#a44c74\"],\"lightness\":55,\"placeholderWidth\":1536,\"placeholderHeight\":1843,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139412,143188,1,'vitalway','2023-03-31 01:07:20','2023-03-31 01:07:20','d98ce529-14d7-4d46-bb64-198af0d45a9e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The vital way of branding',NULL,NULL,'Aligning a brand’s value is essential to communicating purposeful work. Through customer research, we helped reposition vitalway to emulate its extensive years of combined experience working with disadvantaged young people and their families through value-based learning.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rqi4FVqzfm\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143173\",\"143178\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OSv1zZoTd7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A grassroots program with huge potential to grow significantly, vitalway needed help with maturing their brand identity and better defining their market positioning. While they relied on a strong reputation and substantial impact, their varying services weren’t well understood by their market.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WVYFOcr17s\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gYRjQPXQnd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"143187\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We went straight to the source—through interviews with vitalway’s key stakeholders, we were able to shape a picture of the wider market. While we were unable to speak directly with vitalway’s at-risk youth participants, we learned from others who use and refer to vitalway’s program.\\nAlongside our customer insights, we engaged in desktop research to learn about competitors and contemporary services in vitalway’s market space.\\nOur deeper understanding of the perceptions and realities of vitalway’s industry guided us in writing a brand narrative for vitalway that truly nailed their unique positioning.\\nThese insights contributed not only to their brand strategy, but also their business strategy—aligning these two pieces to ensure the vitalway brand always works towards the organisation’s business goals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wgVzrD9tCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143174\",\"143181\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MRDlR2NjSv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A powerful purpose requires a visual identity that holds the brand with certainty and conviction. Being mindful of the humans vitalway serves, we developed a visual system that pays respect to the company’s past and paints a clear image of a bright future.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2MPtm7hnSH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143178\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LpUDcdBBO6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"vitalway is a life changing program for at-risk teenagers. Realigning these teenagers with their values and emotions allows them to thrive amidst challenging circumstances, in a way they often don’t believe could be possible.\\nAt New Word Order, our purpose is to make a meaningful difference to people’s lives, and this project is yet another example of helping brands reach more people in need of their life-changing services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hsGIG2szE3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143177\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'vitalway | The vital way of branding','Aligning a brand’s value is essential to communicating purposeful work. Through customer research, we helped reposition vitalway to emulate its extensive years of combined experience working with disadvantaged young people and their families through value-based learning.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139414,143190,1,'23 vital website assets 1 6','2023-03-31 01:12:41','2023-03-31 01:12:41','21157da3-139a-42cb-89e2-113477eb1290',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"optimizedImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1843_crop_center-center_82_line/23_vital-website-assets_1-6.jpg\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x3686_crop_center-center_82_line/23_vital-website-assets_1-6.jpg\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1536_crop_center-center_82_line/23_vital-website-assets_1-6.jpg\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x3072_crop_center-center_82_line/23_vital-website-assets_1-6.jpg\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1228_crop_center-center_82_line/23_vital-website-assets_1-6.jpg\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2457_crop_center-center_82_line/23_vital-website-assets_1-6.jpg\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x921_crop_center-center_82_line/23_vital-website-assets_1-6.jpg\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x768_crop_center-center_82_line/23_vital-website-assets_1-6.jpg\"},\"optimizedWebPImageUrls\":{\"1536\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1536x1843_crop_center-center_82_line/23_vital-website-assets_1-6.jpg.webp\",\"3072\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_3072x3686_crop_center-center_82_line/23_vital-website-assets_1-6.jpg.webp\",\"1280\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1280x1536_crop_center-center_82_line/23_vital-website-assets_1-6.jpg.webp\",\"2560\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2560x3072_crop_center-center_82_line/23_vital-website-assets_1-6.jpg.webp\",\"1024\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_1024x1228_crop_center-center_82_line/23_vital-website-assets_1-6.jpg.webp\",\"2048\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_2048x2457_crop_center-center_82_line/23_vital-website-assets_1-6.jpg.webp\",\"768\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_768x921_crop_center-center_82_line/23_vital-website-assets_1-6.jpg.webp\",\"640\":\"https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/_640x768_crop_center-center_82_line/23_vital-website-assets_1-6.jpg.webp\"},\"variantSourceWidths\":[\"1536\",\"1536\",\"1280\",\"1280\",\"1024\",\"1024\",\"768\",\"768\",\"640\",\"640\"],\"variantHeights\":{\"1536\":1843,\"3072\":3686,\"1280\":1536,\"2560\":3072,\"1024\":1228,\"2048\":2457,\"768\":921,\"640\":768},\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"originalImageWidth\":5208,\"originalImageHeight\":6250,\"placeholder\":\"/9j/4AAQSkZJRgABAQEBLAEsAAD/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wAARCAATABADAREAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABgQF/8QAJRAAAgEEAQEJAAAAAAAAAAAAAgMBAAQFEUExBhITFFFSYXGB/8QAFwEBAQEBAAAAAAAAAAAAAAAAAwQCBf/EAB0RAAMAAgMBAQAAAAAAAAAAAAABAgMhESIxE1H/2gAMAwEAAhEDEQA/ANO87TvuGGvFqgY5YfWfqOKsnBMrm2NOP9Dl6+7c6fNtMzj3Tuq4UpdRUkvCnIJRYZJ60M76xLUeo/FH3qE+A5c5NUyFzPELfEUkS0tm5hT4O2YyyYGRaduBGUlsp69N/lQ/W+q50TTpgDmugVn/2Q==\",\"placeholderSvg\":null,\"colorPalette\":[\"#712eae\",\"#edb8b9\",\"#43c0b9\",\"#313fcc\",\"#a44c74\"],\"lightness\":56,\"placeholderWidth\":1536,\"placeholderHeight\":1843,\"stickyErrors\":[]}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139415,143191,1,'vitalway','2023-03-31 01:12:51','2023-03-31 01:12:51','ffcdd5d9-73e5-4eb0-bf87-bae1e52ff1bb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The vital way of branding',NULL,NULL,'Aligning a brand’s value is essential to communicating purposeful work. Through customer research, we helped reposition vitalway to emulate its extensive years of combined experience working with disadvantaged young people and their families through value-based learning.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rqi4FVqzfm\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143173\",\"143178\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OSv1zZoTd7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A grassroots program with huge potential to grow significantly, vitalway needed help with maturing their brand identity and better defining their market positioning. While they relied on a strong reputation and substantial impact, their varying services weren’t well understood by their market.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WVYFOcr17s\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gYRjQPXQnd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"143190\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Strategy\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We went straight to the source—through interviews with vitalway’s key stakeholders, we were able to shape a picture of the wider market. While we were unable to speak directly with vitalway’s at-risk youth participants, we learned from others who use and refer to vitalway’s program.\\nAlongside our customer insights, we engaged in desktop research to learn about competitors and contemporary services in vitalway’s market space.\\nOur deeper understanding of the perceptions and realities of vitalway’s industry guided us in writing a brand narrative for vitalway that truly nailed their unique positioning.\\nThese insights contributed not only to their brand strategy, but also their business strategy—aligning these two pieces to ensure the vitalway brand always works towards the organisation’s business goals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wgVzrD9tCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143174\",\"143181\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MRDlR2NjSv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A powerful purpose requires a visual identity that holds the brand with certainty and conviction. Being mindful of the humans vitalway serves, we developed a visual system that pays respect to the company’s past and paints a clear image of a bright future.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2MPtm7hnSH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143178\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LpUDcdBBO6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"vitalway is a life changing program for at-risk teenagers. Realigning these teenagers with their values and emotions allows them to thrive amidst challenging circumstances, in a way they often don’t believe could be possible.\\nAt New Word Order, our purpose is to make a meaningful difference to people’s lives, and this project is yet another example of helping brands reach more people in need of their life-changing services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hsGIG2szE3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143177\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'vitalway | The vital way of branding','Aligning a brand’s value is essential to communicating purposeful work. Through customer research, we helped reposition vitalway to emulate its extensive years of combined experience working with disadvantaged young people and their families through value-based learning.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139417,143193,1,'vitalway','2023-03-31 01:15:50','2023-03-31 01:15:50','d6de024f-9b0f-4511-b1f7-b34ac49900a8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The vital way of branding',NULL,NULL,'Aligning a brand’s value is essential to communicating purposeful work. Through customer research, we helped reposition vitalway to emulate its extensive years of combined experience working with disadvantaged young people and their families through value-based learning.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rqi4FVqzfm\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143173\",\"143178\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OSv1zZoTd7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A grassroots program with huge potential to grow significantly, vitalway needed help with maturing their brand identity and better defining their market positioning. While they relied on a strong reputation and substantial impact, their varying services weren’t well understood by their market.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WVYFOcr17s\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gYRjQPXQnd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"143190\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We went straight to the source—through interviews with vitalway’s key stakeholders, we were able to shape a picture of the wider market. While we were unable to speak directly with vitalway’s at-risk youth participants, we learned from others who use and refer to vitalway’s program.\\nAlongside our customer insights, we engaged in desktop research to learn about competitors and contemporary services in vitalway’s market space.\\nOur deeper understanding of the perceptions and realities of vitalway’s industry guided us in writing a brand narrative for vitalway that truly nailed their unique positioning.\\nThese insights contributed not only to their brand strategy, but also their business strategy—aligning these two pieces to ensure the vitalway brand always works towards the organisation’s business goals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wgVzrD9tCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143174\",\"143181\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MRDlR2NjSv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A powerful purpose requires a visual identity that holds the brand with certainty and conviction. Being mindful of the humans vitalway serves, we developed a visual system that pays respect to the company’s past and paints a clear image of a bright future.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2MPtm7hnSH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143178\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LpUDcdBBO6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"vitalway is a life changing program for at-risk teenagers. Realigning these teenagers with their values and emotions allows them to thrive amidst challenging circumstances, in a way they often don’t believe could be possible.\\nAt New Word Order, our purpose is to make a meaningful difference to people’s lives, and this project is yet another example of helping brands reach more people in need of their life-changing services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hsGIG2szE3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143177\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'vitalway | The vital way of branding','Aligning a brand’s value is essential to communicating purposeful work. Through customer research, we helped reposition vitalway to emulate its extensive years of combined experience working with disadvantaged young people and their families through value-based learning.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139419,143195,1,'vitalway','2023-03-31 01:21:14','2023-03-31 01:21:14','f9f766e2-4eed-4ab2-8874-d4be1e426b68',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The vital way of branding',NULL,NULL,'Aligning a brand’s value is essential to communicating purposeful work. Through customer research, we helped reposition vitalway to emulate its extensive years of combined experience working with disadvantaged young people and their families through value-based learning.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rqi4FVqzfm\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143173\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OSv1zZoTd7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A grassroots program with huge potential to grow significantly, vitalway needed help with maturing their brand identity and better defining their market positioning. While they relied on a strong reputation and substantial impact, their varying services weren’t well understood by their market.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WVYFOcr17s\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gYRjQPXQnd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"143190\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We went straight to the source—through interviews with vitalway’s key stakeholders, we were able to shape a picture of the wider market. While we were unable to speak directly with vitalway’s at-risk youth participants, we learned from others who use and refer to vitalway’s program.\\nAlongside our customer insights, we engaged in desktop research to learn about competitors and contemporary services in vitalway’s market space.\\nOur deeper understanding of the perceptions and realities of vitalway’s industry guided us in writing a brand narrative for vitalway that truly nailed their unique positioning.\\nThese insights contributed not only to their brand strategy, but also their business strategy—aligning these two pieces to ensure the vitalway brand always works towards the organisation’s business goals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wgVzrD9tCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143174\",\"143181\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MRDlR2NjSv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A powerful purpose requires a visual identity that holds the brand with certainty and conviction. Being mindful of the humans vitalway serves, we developed a visual system that pays respect to the company’s past and paints a clear image of a bright future.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2MPtm7hnSH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143178\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LpUDcdBBO6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"vitalway is a life changing program for at-risk teenagers. Realigning these teenagers with their values and emotions allows them to thrive amidst challenging circumstances, in a way they often don’t believe could be possible.\\nAt New Word Order, our purpose is to make a meaningful difference to people’s lives, and this project is yet another example of helping brands reach more people in need of their life-changing services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hsGIG2szE3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143177\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'vitalway | The vital way of branding','Aligning a brand’s value is essential to communicating purposeful work. Through customer research, we helped reposition vitalway to emulate its extensive years of combined experience working with disadvantaged young people and their families through value-based learning.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139421,143197,1,'vitalway','2023-03-31 01:21:57','2023-03-31 01:21:57','cc7566d1-1b31-4777-baae-7acac9c8949b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The vital way of branding',NULL,NULL,'Aligning a brand’s value is essential to communicating purposeful work. Through customer research, we helped reposition vitalway to emulate its extensive years of combined experience working with disadvantaged young people and their families through value-based learning.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rqi4FVqzfm\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143173\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OSv1zZoTd7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A grassroots program with huge potential to grow significantly, vitalway needed help with maturing their brand identity and better defining their market positioning. While they relied on a strong reputation and substantial impact, their varying services weren’t well understood by their market.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WVYFOcr17s\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gYRjQPXQnd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"143190\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We went straight to the source—through interviews with vitalway’s key stakeholders, we were able to shape a picture of the wider market. While we were unable to speak directly with vitalway’s at-risk youth participants, we learned from others who use and refer to vitalway’s program.\\nAlongside our customer insights, we engaged in desktop research to learn about competitors and contemporary services in vitalway’s market space.\\nOur deeper understanding of the perceptions and realities of vitalway’s industry guided us in writing a brand narrative for vitalway that truly nailed their unique positioning.\\nThese insights contributed not only to their brand strategy, but also their business strategy—aligning these two pieces to ensure the vitalway brand always works towards the organisation’s business goals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wgVzrD9tCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143174\",\"143181\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MRDlR2NjSv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A powerful purpose requires a visual identity that holds the brand with certainty and conviction. Being mindful of the humans vitalway serves, we developed a visual system that pays respect to the company’s past and paints a clear image of a bright future.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2MPtm7hnSH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143178\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LpUDcdBBO6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"vitalway is a life changing program for at-risk teenagers. Realigning these teenagers with their values and emotions allows them to thrive amidst challenging circumstances, in a way they often don’t believe could be possible.\\nAt New Word Order, our purpose is to make a meaningful difference to people’s lives, and this project is yet another example of helping brands reach more people in need of their life-changing services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hsGIG2szE3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143177\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'vitalway | The vital way of branding','Aligning a brand’s value is essential to communicating purposeful work. Through customer research, we helped reposition vitalway to emulate its extensive years of combined experience working with disadvantaged young people and their families through value-based learning.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
INSERT INTO `content` VALUES (139423,143199,1,'vitalway','2023-03-31 01:26:04','2023-03-31 01:26:04','4d22244d-757c-4d88-8caf-dbd14d57a201',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The vital way of branding',NULL,NULL,'Aligning a brand’s value is essential to communicating purposeful work. Through customer research, we helped reposition vitalway to emulate its extensive years of combined experience working with disadvantaged young people and their families through value-based learning.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rqi4FVqzfm\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143173\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OSv1zZoTd7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A grassroots program with huge potential to grow significantly, vitalway needed help with maturing their brand identity and better defining their market positioning. While they relied on a strong reputation and substantial impact, their varying services weren’t well understood by their market.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WVYFOcr17s\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gYRjQPXQnd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"143190\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We went straight to the source—through interviews with vitalway’s key stakeholders, we were able to shape a picture of the wider market. While we were unable to speak directly with vitalway’s at-risk youth participants, we learned from others who use and refer to vitalway’s program.\\nAlongside our customer insights, we engaged in desktop research to learn about competitors and contemporary services in vitalway’s market space.\\nOur deeper understanding of the perceptions and realities of vitalway’s industry guided us in writing a brand narrative for vitalway that truly nailed their unique positioning.\\nThese insights contributed not only to their brand strategy, but also their business strategy—aligning these two pieces to ensure the vitalway brand always works towards the organisation’s business goals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wgVzrD9tCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143174\",\"143181\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MRDlR2NjSv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A powerful purpose requires a visual identity that holds the brand with certainty and conviction. Being mindful of the humans vitalway serves, we developed a visual system that pays respect to the company’s past and paints a clear image of a bright future.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2MPtm7hnSH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143178\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LpUDcdBBO6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"vitalway is a life changing program for at-risk teenagers. Realigning these teenagers with their values and emotions allows them to thrive amidst challenging circumstances, in a way they often don’t believe could be possible.\\nAt New Word Order, our purpose is to make a meaningful difference to people’s lives, and this project is yet another example of helping brands reach more people in need of their life-changing services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hsGIG2szE3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143177\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'vitalway | The vital way of branding','Aligning a brand’s value is essential to communicating purposeful work. Through customer research, we helped reposition vitalway to emulate its extensive years of combined experience working with disadvantaged young people and their families through value-based learning.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139425,143201,1,'Emotional connection lies at the heart of your brand','2023-03-31 01:26:43','2023-03-31 01:26:43','d0a07b54-8a10-493f-8977-fdf1d9545e42',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W8fJrHtzJR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<b> The most powerful form of marketing is when brands build lasting emotional connections with their audience. <b>\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Often a lack of connection is to blame for marketing and brand under-performance.\\nWhy is that? Well, think of brands like people.\\nSome you associate with on a very shallow level. Some you interact with regularly but don’t really feel a connection. And some, you just really love.\\nLike people, we want to engage with brands that share our values, perspectives and opinions. We become loyal to them when know they understand us and make us feel good. \\n\\n<h5> But as a brand owner or leader, how do you find these insights and build these emotional connections? </h5>\\nSuccessful brands invest in really understanding their customers.\\nThey undertake fit-for-purpose qualitative research to ask their customers questions and gain their insights into what they are thinking and why they behave the way they do. \\nToo often, this step is overlooked by a lack of understanding or a short-term view of objectives and budget. \\nCustomer insights are the gold nuggets of wisdom that don’t just give rise to effective campaigns—they transform the businesses, too.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #1: Tech company\",\"text\":\"Last year, we undertook 20 in-depth online interviews for a tech company wanting to know how their customers felt about them.\\nThe phone interviews, all following the same discussion guide and conducted across the world, clearly showed that while customers were loyal, they were hungry for greater innovation.\\nThese insights gave the leadership team confidence to fast-track some of their more ambitious projects.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #2: Business management consultancy\",\"text\":\"A few months ago, we interviewed 20 potential, current and lapsed customers for a business management consultancy.\\nOur client learned more about the life cycle of their customers’ businesses, and how their needs change accordingly.\\nThe insights from these interviews helped us shape the consultancy’s approach for introducing a new product stream to a wider audience.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #3: Tertiary institution\",\"text\":\"Earlier this year, we undertook 20 in-depth interviews and six focus groups for a tertiary institution, aimed at understanding the emotional drivers for enrolments.\\nEnrolments had been waning slowly for eight years, and key demographics had switched around, too.\\nThrough our insights, we were able to show that, while students were still true believers in the brand, alumni and referrers were noticeably less enthusiastic. This was affecting the quality and number of referrals.\\nThe detail in our insights is fuelling a marketing strategy that is aimed at rebuilding strong connections.\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h5> Fit-for-purpose customer research </h5>\\nAt New Word Order, we undertake this step as part of our wider brand development methodology, and we find it yields valuable input into our clients’ business strategies on top of feeding their brand strategy.\\nOur qualitative research is a formative contribution that tells you how your customers perceive your brand and what they need from you.\\nWe use quantitative research to test that these views are representative of the wider industry and your customer base.\\nResearch can be expensive but it doesn’t have to be.\\nThere’s an art to asking customers questions. We can find out the true, deep feelings of your customers—ones they’ll never tell you, no matter how close of a relationship you share.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IRn8rdVydZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We have the expertise to undertake this process cost effectively, from effective research through to insights and creative execution.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Talk to us today\",\"buttonImage\":[],\"internalLink\":[\"21297\"],\"externalLink\":null,\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}}},\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Emotional connection lies at the heart of your brand','The most powerful form of marketing is when brands build lasting emotional connections with their audience.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139427,143203,1,'vitalway','2023-03-31 02:13:32','2023-03-31 02:13:32','e6d71925-4570-48c5-9163-7af8867fc004',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The vital way of branding',NULL,NULL,'Aligning a brand’s value is essential to communicating purposeful work. Through customer research, we helped reposition vitalway to emulate its extensive years of combined experience working with disadvantaged young people and their families through value-based learning.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rqi4FVqzfm\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143173\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OSv1zZoTd7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A grassroots program with huge potential to grow significantly, vitalway needed help with maturing their brand identity and better defining their market positioning. While they relied on a strong reputation and substantial impact, their varying services weren’t well understood by their market.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WVYFOcr17s\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gYRjQPXQnd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"143190\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We went straight to the source—through interviews with vitalway’s key stakeholders, we were able to shape a picture of the wider market. While we were unable to speak directly with vitalway’s at-risk youth participants for privacy reasons, we learned from others who use and refer to vitalway’s program.\\nAlongside our customer insights, we engaged in desktop research to learn about competitors and contemporary services in vitalway’s market space.\\nOur deeper understanding of the perceptions and realities of vitalway’s industry guided us in writing a brand narrative for vitalway that truly reflected their unique positioning.\\nThese insights contributed not only to their brand strategy, but also their business strategy—aligning these two pieces to ensure the vitalway brand always works towards the organisation’s business goals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wgVzrD9tCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143174\",\"143181\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MRDlR2NjSv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A powerful purpose requires a visual identity that holds the brand with certainty and conviction. Being mindful of the humans vitalway serves, we developed a visual system that pays respect to the company’s past and paints a clear image of a bright future.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2MPtm7hnSH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143178\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LpUDcdBBO6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"vitalway is a life changing program for at-risk teenagers. Realigning these teenagers with their values and emotions allows them to thrive amidst challenging circumstances, in a way they often don’t believe could be possible.\\nAt New Word Order, our purpose is to make a meaningful difference to people’s lives, and this project is yet another example of helping brands reach more people in need of their life-changing services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hsGIG2szE3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143177\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'vitalway | The vital way of branding','Aligning a brand’s value is essential to communicating purposeful work. Through customer research, we helped reposition vitalway to emulate its extensive years of combined experience working with disadvantaged young people and their families through value-based learning.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139429,143205,1,'Emotional connection lies at the heart of your brand','2023-03-31 02:15:01','2023-03-31 02:15:01','b54ac0be-39af-4b30-b4a6-61aa28378451',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W8fJrHtzJR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<b> The most powerful form of marketing is when brands build lasting emotional connections with their audience. <b>\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Often a lack of connection is to blame for marketing and brand under-performance.\\nWhy is that? Well, think of brands like people.\\nSome you associate with on a very shallow level. Some you interact with regularly but don’t really feel a connection. And some, you just really love.\\nLike people, we want to engage with brands that share our values, perspectives and opinions. We become loyal to them when we know they understand us and make us feel good. \\n\\n<h5> But as a brand owner or leader, how do you find these insights and build these emotional connections? </h5>\\nSuccessful brands invest in really understanding their customers.\\nThey undertake fit-for-purpose qualitative research to ask their customers questions and gain their insights into what they are thinking and why they behave the way they do. \\nToo often, this step is overlooked by a lack of understanding or a short-term view of objectives and budget. \\nCustomer insights are the gold nuggets of wisdom that don’t just give rise to effective campaigns—they transform the businesses, too.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #1: Tech company\",\"text\":\"Last year, we undertook 20 in-depth online interviews for a tech company wanting to know how their customers felt about them.\\nThe phone interviews, all following the same discussion guide and conducted across the world, clearly showed that while customers were loyal, they were hungry for greater innovation.\\nThese insights gave the leadership team confidence to fast-track some of their more ambitious projects.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #2: Business management consultancy\",\"text\":\"A few months ago, we interviewed 20 potential, current and lapsed customers for a business management consultancy.\\nOur client learned more about the life cycle of their customers’ businesses, and how their needs change accordingly.\\nThe insights from these interviews helped us shape the consultancy’s approach for introducing a new product stream to a wider audience.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #3: Tertiary institution\",\"text\":\"Earlier this year, we undertook 20 in-depth interviews and six focus groups for a tertiary institution, aimed at understanding the emotional drivers for enrolments.\\nEnrolments had been waning slowly for eight years, and key demographics had switched around, too.\\nThrough our insights, we were able to show that, while students were still true believers in the brand, alumni and referrers were noticeably less enthusiastic. This was affecting the quality and number of referrals.\\nThe detail in our insights is fuelling a marketing strategy that is aimed at rebuilding strong connections.\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h5> Fit-for-purpose customer research </h5>\\nAt New Word Order, we undertake this step as part of our wider brand development methodology, and we find it yields valuable input into our clients’ business strategies on top of feeding their brand strategy.\\nOur qualitative research is a formative contribution that tells you how your customers perceive your brand and what they need from you.\\nWe use quantitative research to test that these views are representative of the wider industry and your customer base.\\nResearch can be expensive but it doesn’t have to be.\\nThere’s an art to asking customers questions. We can find out the true, deep feelings of your customers—ones they’ll never tell you, no matter how close of a relationship you share.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IRn8rdVydZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-red\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We have the expertise to undertake this process cost effectively, from effective research through to insights and creative execution.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Talk to us today\",\"buttonImage\":[],\"internalLink\":[\"21297\"],\"externalLink\":null,\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}}},\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Emotional connection lies at the heart of your brand','The most powerful form of marketing is when brands build lasting emotional connections with their audience.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139431,143207,1,'Emotional connection lies at the heart of every successful brand','2023-03-31 03:39:21','2023-03-31 03:39:21','2841016b-1283-4e97-982b-22fdd1b6334f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W8fJrHtzJR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<b> The most powerful form of marketing is when brands build lasting emotional connections with their audience. <b>\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Often a lack of connection is to blame for marketing and brand under-performance.\\nWhy is that? Well, think of brands like people.\\nSome you associate with on a very shallow level. Some you interact with regularly but don’t really feel a connection. And some, you just really love.\\nLike people, we want to engage with brands that share our values, perspectives and opinions. We become loyal to them when we know they understand us and make us feel good. \\n\\n<h5> But as a brand owner or leader, how do you find these insights and build these emotional connections? </h5>\\nSuccessful brands invest in really understanding their customers.\\nThey undertake fit-for-purpose qualitative research to ask their customers questions and gain their insights into what they are thinking and why they behave the way they do. \\nToo often, this step is overlooked by a lack of understanding or a short-term view of objectives and budget. \\nCustomer insights are the gold nuggets of wisdom that don’t just give rise to effective campaigns—they transform the businesses, too.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #1: Tech company\",\"text\":\"Last year, we undertook 20 in-depth online interviews for a tech company wanting to know how their customers felt about them.\\nThe phone interviews, all following the same discussion guide and conducted across the world, clearly showed that while customers were loyal, they were hungry for greater innovation.\\nThese insights gave the leadership team confidence to fast-track some of their more ambitious projects.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #2: Business management consultancy\",\"text\":\"We recently interviewed 20 potential, current and lapsed customers for a business management consultancy.\\nOur client learned more about the life cycle of their customers’ businesses, and how their needs change at each stage.\\nThe insights from these interviews helped us shape the consultancy’s approach to introducing a new product stream to a wider audience.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #3: Tertiary institution\",\"text\":\"Earlier this year, we undertook 15 in-depth interviews and six focus groups for a tertiary institution, aimed at understanding the emotional drivers for enrolments.\\nEnrolments had been waning slowly for eight years, and key demographics had switched around, too.\\nThrough our insights, we were able to show that, while students were still true believers in the brand, alumni and referrers were noticeably less enthusiastic. This was affecting the quality and number of referrals.\\nThe detail in our insights is fuelling a brand and \\nmarketing strategy aimed at strengthening connections.\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h5> Fit-for-purpose customer research </h5>\\nAt New Word Order, we undertake this step as part of our wider brand development methodology.\\nEvery time, we find research yields valuable input into our clients’ business strategies on top of feeding their brand strategy.\\nOur qualitative research is a formative contribution that tells you how your customers perceive your brand and what they need from you.\\nWe then use quantitative research to test that these views are representative of the wider industry and your customer base.\\nResearch can be expensive but it doesn’t have to be.\\nThere’s an art to asking customers questions. We can find out the true, deep feelings of your customers—ones they’ll never tell you, no matter how close the relationship you share.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IRn8rdVydZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<b> We have the expertise to undertake this process cost effectively, from effective research through to insights and creative execution. <b/>\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Talk to us today\",\"buttonImage\":[],\"internalLink\":[\"21297\"],\"externalLink\":null,\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}}},\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Emotional connection lies at the heart of every successful brand','The most powerful form of marketing is when brands build lasting emotional connections with their audience.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139433,143209,1,'Emotional connection lies at the heart of every successful brand','2023-03-31 03:40:13','2023-03-31 03:40:13','7b1b2ee0-520f-49c4-853d-4802a77e8f05',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W8fJrHtzJR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<b> The most powerful form of marketing is when brands build lasting emotional connections with their audience. <b>\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Often a lack of connection is to blame for marketing and brand under-performance.\\nWhy is that? Well, think of brands like people.\\nSome you associate with on a very shallow level. Some you interact with regularly but don’t really feel a connection. And some, you just really love.\\nLike people, we want to engage with brands that share our values, perspectives and opinions. We become loyal to them when we know they understand us and make us feel good. \\n\\n<h5> But as a brand owner or leader, how do you find these insights and build these emotional connections? </h5>\\nSuccessful brands invest in really understanding their customers.\\nThey undertake fit-for-purpose qualitative research to ask their customers questions and gain their insights into what they are thinking and why they behave the way they do. \\nToo often, this step is overlooked by a lack of understanding or a short-term view of objectives and budget. \\nCustomer insights are the gold nuggets of wisdom that don’t just give rise to effective campaigns—they transform the businesses, too.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #1: Tech company\",\"text\":\"Last year, we undertook 20 in-depth online interviews for a tech company wanting to know how their customers felt about them.\\nThe phone interviews, all following the same discussion guide and conducted across the world, clearly showed that while customers were loyal, they were hungry for greater innovation.\\nThese insights gave the leadership team confidence to fast-track some of their more ambitious projects.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #2: Business management consultancy\",\"text\":\"We recently interviewed 20 potential, current and lapsed customers for a business management consultancy.\\nOur client learned more about the life cycle of their customers’ businesses, and how their needs change at each stage.\\nThe insights from these interviews helped us shape the consultancy’s approach to introducing a new product stream to a wider audience.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #3: Tertiary institution\",\"text\":\"Earlier this year, we undertook 15 in-depth interviews and six focus groups for a tertiary institution, aimed at understanding the emotional drivers for enrolments.\\nEnrolments had been waning slowly for eight years, and key demographics had switched around, too.\\nThrough our insights, we were able to show that, while students were still true believers in the brand, alumni and referrers were noticeably less enthusiastic. This was affecting the quality and number of referrals.\\nThe detail in our insights is fuelling a brand and \\nmarketing strategy aimed at strengthening connections.\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h5> Fit-for-purpose customer research </h5>\\nAt New Word Order, we undertake this step as part of our wider brand development methodology.\\nEvery time, we find research yields valuable input into our clients’ business strategies on top of feeding their brand strategy.\\nOur qualitative research is a formative contribution that tells you how your customers perceive your brand and what they need from you.\\nWe then use quantitative research to test that these views are representative of the wider industry and your customer base.\\nResearch can be expensive but it doesn’t have to be.\\nThere’s an art to asking customers questions. We can find out the true, deep feelings of your customers—ones they’ll never tell you, no matter how close the relationship you share.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IRn8rdVydZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<b> We have the expertise to undertake this process cost effectively, from effective research through to insights and creative execution.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Talk to us today\",\"buttonImage\":[],\"internalLink\":[\"21297\"],\"externalLink\":null,\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}}},\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Emotional connection lies at the heart of every successful brand','The most powerful form of marketing is when brands build lasting emotional connections with their audience.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139435,143211,1,'Emotional connection lies at the heart of every successful brand','2023-03-31 03:40:31','2023-03-31 03:40:31','b3ac6c89-63ff-40d5-9cf7-9199c45e8746',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W8fJrHtzJR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<b> The most powerful form of marketing is when brands build lasting emotional connections with their audience. <b>\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Often a lack of connection is to blame for marketing and brand under-performance.\\nWhy is that? Well, think of brands like people.\\nSome you associate with on a very shallow level. Some you interact with regularly but don’t really feel a connection. And some, you just really love.\\nLike people, we want to engage with brands that share our values, perspectives and opinions. We become loyal to them when we know they understand us and make us feel good. \\n\\n<h5> But as a brand owner or leader, how do you find these insights and build these emotional connections? </h5>\\nSuccessful brands invest in really understanding their customers.\\nThey undertake fit-for-purpose qualitative research to ask their customers questions and gain their insights into what they are thinking and why they behave the way they do. \\nToo often, this step is overlooked by a lack of understanding or a short-term view of objectives and budget. \\nCustomer insights are the gold nuggets of wisdom that don’t just give rise to effective campaigns—they transform the businesses, too.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #1: Tech company\",\"text\":\"Last year, we undertook 20 in-depth online interviews for a tech company wanting to know how their customers felt about them.\\nThe phone interviews, all following the same discussion guide and conducted across the world, clearly showed that while customers were loyal, they were hungry for greater innovation.\\nThese insights gave the leadership team confidence to fast-track some of their more ambitious projects.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #2: Business management consultancy\",\"text\":\"We recently interviewed 20 potential, current and lapsed customers for a business management consultancy.\\nOur client learned more about the life cycle of their customers’ businesses, and how their needs change at each stage.\\nThe insights from these interviews helped us shape the consultancy’s approach to introducing a new product stream to a wider audience.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #3: Tertiary institution\",\"text\":\"Earlier this year, we undertook 15 in-depth interviews and six focus groups for a tertiary institution, aimed at understanding the emotional drivers for enrolments.\\nEnrolments had been waning slowly for eight years, and key demographics had switched around, too.\\nThrough our insights, we were able to show that, while students were still true believers in the brand, alumni and referrers were noticeably less enthusiastic. This was affecting the quality and number of referrals.\\nThe detail in our insights is fuelling a brand and \\nmarketing strategy aimed at strengthening connections.\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h5> Fit-for-purpose customer research </h5>\\nAt New Word Order, we undertake this step as part of our wider brand development methodology.\\nEvery time, we find research yields valuable input into our clients’ business strategies on top of feeding their brand strategy.\\nOur qualitative research is a formative contribution that tells you how your customers perceive your brand and what they need from you.\\nWe then use quantitative research to test that these views are representative of the wider industry and your customer base.\\nResearch can be expensive but it doesn’t have to be.\\nThere’s an art to asking customers questions. We can find out the true, deep feelings of your customers—ones they’ll never tell you, no matter how close the relationship you share.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IRn8rdVydZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<b> We can help you build deeper emotional connections and loyalty with your customers.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Talk to us today\",\"buttonImage\":[],\"internalLink\":[\"21297\"],\"externalLink\":null,\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}}},\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Emotional connection lies at the heart of every successful brand','The most powerful form of marketing is when brands build lasting emotional connections with their audience.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139437,143213,1,'vitalway','2023-03-31 03:42:53','2023-03-31 03:42:53','a9455128-c1dc-4093-909c-1a0b3c1e1011',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The vital way of branding',NULL,NULL,'Aligning a brand’s value is essential to communicating purposeful work. Through customer research, we helped reposition vitalway to leverage its extensive years of combined experience working with disadvantaged young people and their families through value-based learning.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rqi4FVqzfm\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143173\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-OSv1zZoTd7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Challenge\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A grassroots program with huge potential to grow significantly, vitalway needed help with maturing their brand identity and better defining their market positioning. While they relied on a strong reputation and substantial impact, their varying services weren’t well understood by their market.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-WVYFOcr17s\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gYRjQPXQnd\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-WIIM7FjPXS\",\"content\":{\"fields\":{\"images\":[\"143190\"],\"mediaAlignment\":\"Left\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"STRATEGY\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"We went straight to the source—their stakeholders. Through interviews, we were able to shape a picture of the wider market. While we were unable to speak directly with vitalway’s at-risk youth participants for privacy reasons, we learned from others who use and refer to vitalway’s program.\\nAlongside our customer insights, we engaged in desktop research to learn about competitors and contemporary services in vitalway’s market space.\\nOur deeper understanding of the perceptions and realities of vitalway’s industry guided us in writing a brand narrative for vitalway that truly reflected their unique positioning.\\nThese insights contributed not only to their brand strategy but also their business strategy—aligning these two pieces to ensure the vitalway brand always works towards the organisation’s business goals.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}}}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wgVzrD9tCu\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143174\",\"143181\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-MRDlR2NjSv\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Creative\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"A powerful purpose requires a visual identity that holds the brand with certainty and conviction. Being mindful of the humans vitalway serves, we developed a visual system that pays respect to the company’s past and paints a clear image of a bright future.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-2MPtm7hnSH\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143178\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-LpUDcdBBO6\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Impact\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"vitalway helps at-risk teenagers to change their futures. Realigning these teenagers with their values and emotions allows them to thrive amidst challenging circumstances, in a way they often don’t believe could be possible.\\nAt New Word Order, our purpose is to make a meaningful difference to people’s lives. This project is yet another example of how we help brands to reach more people with their life-changing services.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hsGIG2szE3\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143177\"]}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'vitalway | The vital way of branding','Aligning a brand’s value is essential to communicating purposeful work. Through customer research, we helped reposition vitalway to emulate its extensive years of combined experience working with disadvantaged young people and their families through value-based learning.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139439,143215,1,'Let us introduce ourselves','2023-03-31 03:43:14','2023-03-31 03:43:14','a2e31e1c-cb0d-465b-94f1-32e9e37d5779',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BzHWrSBA3q\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Bree\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Every office needs that go-to team member who knows how to get things done. Funny thing is, our Gen Z, Taylor-Swift-obsessed, \'go-to colleague\' claims she never achieves anything.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hwKmyKwtae\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143135\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FVFWZuA5kZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Why does she say she accomplishes nothing when she appears to be one of the all-time great multi-taskers? \\n\\nWell, she has started a thousand things in her life and never completed any of them. Piano, cello, netball, volleyball, basketball, writing novels, writing poetry, acting, dancing, acrobatics, choir—all have been tried, failed and given up forever.\\n\\nIt’s just as well because, as someone who has more job titles than Scott Morrison in a pandemic, we need her in the office. We’re not sure what’s on her business card but she acts as our junior copywriter, production coordinator, chief proofreader, project manager, office manager and social club vice-president.\\n\\nBree may be our youngest employee but her list of accomplishments belies her years. She’s already watched all 412 episodes of Grey’s Anatomy, which she feels should entitle her to an honorary medical degree. She’s also memorised every single lyric of every Taylor Swift song. That particular obsession runs to attending three of her concerts (and counting) and two tattoos referencing her music (and counting).\\n\\nHer cooking skills are non-existent, but luckily Bree lives the inner-city life, so a poke bowl or dumpling shop is never too far away. There’s also the occasional Macca’s feed after hitting the Valley nightclubs—whose menu she can recite by heart, thanks to her teen years spent in the Drive Thru trenches.\\n\\nIf you can’t find her in the office, just follow the sound of someone talking about the latest Netflix series. Then just give her job to do and watch her get to it … well, straight after she’s finished listening to TayTay’s latest release. The girl has priorities, you know.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CYlWxVLWd4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Liam\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We thought we hired an award-winning advertising copywriter. But we ended up with so much more: a ska band ex-roadie, an optimistic golfer and a brave, crustacean-battling chef. \\n\\nNow that’s value.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wZCcn69t8v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142939\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CCjcrDQfKO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Liam was born and raised in Brisbane but escaped the oppressive heat to live in London and Hong Kong (and then found it again in Guam) for seven years.\\n\\nNow back in his hometown, he carries with him the secrets of a journey well-travelled—from paying his way through uni as a roadie for ska band The Furious Turtles, to winning Australian and international advertising and production copywriting awards throughout his career. \\n\\nWe’re sure we can thank his time on the road—it\'s classified but imaginably riddled with life-altering stories—for the effortless creativity he brings day to day. Second to that, maybe also his time at industry-renowned AWARD School.\\n\\nSpeaking of formative experiences, Liam’s gruff exterior was carefully constructed back in his boarding school days, when he was an easy target as the only soft city kid among a sea of tough country kids. \\n\\nHe quickly discovered that no amount of skiing holidays or golfing hole-in-ones (current tally: zero from 50,000 attempts) could win the respect of teenage bogans. A lesson in humility for Liam, perhaps—we’ve all been there at some point. \\n\\nDespite his otherwise bourgeois-sounding life where the (golfing) green is grassier, Liam actually knows all about the importance of sacrifice. \\n\\nAfter all, he cooks his famous garlic prawns every year for his family Christmas (and last year for the NWO Christmas) despite his drastic, ironic and tragic crustacean allergy. When he defeats the prawns, they defeat him right back.\\n\\nYou can actually cook the dish yourself following his not-so-secret recipe  <a href=\\\"https://newwordorder.com.au/lp/christmas-2021\\\">here.</a> It’s delicious—you can’t take Liam’s word for it, of course, but you can take ours.\\n\\nHe has cooking all locked down, but he’ll be the first to tell you cleaning isn’t his area of expertise. We can’t have everything. No reason to fret, though—isn’t that what kids are for? And he’s got four of them, so he’s very good at delegating.\\n\\nA of couple residents in his household live it lush and chore-free, though: his 50kg Irish Wolfhound, Luna, and his 8kg Cavoodle, Rusty. In fact, they’ve delegated to Liam the chore of walking them every morning. \\n\\nThose gorgeous dogs are part of what we love about Liam, along with his dry sense of humour, his endless creative expertise and his penchant for telling a good story—whether it’s through an ad script, or just a weekend anecdote.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and the Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lwRZRhzi23\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EHGcch1Nd8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141527\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Every office needs that go-to team member who knows how to get things done. Funny thing is, our Gen Z, Taylor-Swift-obsessed, \'go-to colleague\' claims she never gets anything done.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139441,143217,1,'Let us introduce ourselves','2023-03-31 03:44:09','2023-03-31 03:44:09','2f93036d-f86d-4e13-8e1e-5d319b5ffbc6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BzHWrSBA3q\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Bree\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Every office needs that go-to team member who knows how to get things done. Funny thing is, our Gen Z, Taylor-Swift-obsessed, \'go-to colleague\' claims she never achieves anything.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hwKmyKwtae\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143135\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FVFWZuA5kZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Why does she say she accomplishes nothing when she appears to be one of the all-time great multi-taskers? \\n\\nWell, she has started a thousand things in her life and never completed any of them. Piano, cello, netball, volleyball, basketball, writing novels, writing poetry, acting, dancing, acrobatics, choir—all have been tried, failed and given up forever.\\n\\nIt’s just as well because, as someone who has more job titles than Scott Morrison in a pandemic, we need her in the office. We’re not sure what’s on her business card but she acts as our junior copywriter, production coordinator, chief proofreader, project manager, office manager and social club vice-president.\\n\\nBree may be our youngest employee but her list of accomplishments belies her years. She’s already watched all 412 episodes of Grey’s Anatomy, which she feels should entitle her to an honorary medical degree. She’s also memorised every single lyric of every Taylor Swift song. That particular obsession runs to attending three of her concerts (and counting) and two tattoos referencing her music (and counting). Oh yes: and she just finished her under-graduate degree in business at QUT.\\n\\nHer cooking skills are non-existent, but luckily Bree lives the inner-city life, so a poke bowl or dumpling shop is never too far away. There’s also the occasional Macca’s feed after hitting the Valley nightclubs—whose menu she can recite by heart, thanks to her teen years spent in the Drive Thru trenches.\\n\\nIf you can’t find her in the office, just follow the sound of someone talking about the latest Netflix series. Then just give her job to do and watch her get to it … well, straight after she’s finished listening to TayTay’s latest release. The girl has priorities, you know.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CYlWxVLWd4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Liam\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We thought we hired an award-winning advertising copywriter. But we ended up with so much more: a ska band ex-roadie, an optimistic golfer and a brave, crustacean-battling chef. \\n\\nNow that’s value.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wZCcn69t8v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142939\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CCjcrDQfKO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Liam was born and raised in Brisbane but escaped the oppressive heat to live in London and Hong Kong (and then found it again in Guam) for seven years.\\n\\nNow back in his hometown, he carries with him the secrets of a journey well-travelled—from paying his way through uni as a roadie for ska band The Furious Turtles, to winning Australian and international advertising and production copywriting awards throughout his career. \\n\\nWe’re sure we can thank his time on the road—it\'s classified but imaginably riddled with life-altering stories—for the effortless creativity he brings day to day. Second to that, maybe also his time at industry-renowned AWARD School.\\n\\nSpeaking of formative experiences, Liam’s gruff exterior was carefully constructed back in his boarding school days, when he was an easy target as the only soft city kid among a sea of tough country kids. \\n\\nHe quickly discovered that no amount of skiing holidays or golfing hole-in-ones (current tally: zero from 50,000 attempts) could win the respect of teenage bogans. A lesson in humility for Liam, perhaps—we’ve all been there at some point. \\n\\nDespite his otherwise bourgeois-sounding life where the (golfing) green is grassier, Liam actually knows all about the importance of sacrifice. \\n\\nAfter all, he cooks his famous garlic prawns every year for his family Christmas (and last year for the NWO Christmas) despite his drastic, ironic and tragic crustacean allergy. When he defeats the prawns, they defeat him right back.\\n\\nYou can actually cook the dish yourself following his not-so-secret recipe  <a href=\\\"https://newwordorder.com.au/lp/christmas-2021\\\">here.</a> It’s delicious—you can’t take Liam’s word for it, of course, but you can take ours.\\n\\nHe has cooking all locked down, but he’ll be the first to tell you cleaning isn’t his area of expertise. We can’t have everything. No reason to fret, though—isn’t that what kids are for? And he’s got four of them, so he’s very good at delegating.\\n\\nA of couple residents in his household live it lush and chore-free, though: his 50kg Irish Wolfhound, Luna, and his 8kg Cavoodle, Rusty. In fact, they’ve delegated to Liam the chore of walking them every morning. \\n\\nThose gorgeous dogs are part of what we love about Liam, along with his dry sense of humour, his endless creative expertise and his penchant for telling a good story—whether it’s through an ad script, or just a weekend anecdote.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and the Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lwRZRhzi23\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EHGcch1Nd8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141527\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Every office needs that go-to team member who knows how to get things done. Funny thing is, our Gen Z, Taylor-Swift-obsessed, \'go-to colleague\' claims she never gets anything done.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139443,143219,1,'Let us introduce ourselves','2023-03-31 03:56:54','2023-03-31 03:56:54','516ed170-79da-4d6b-867c-c49f201effcb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-BzHWrSBA3q\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Bree\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Every office needs that go-to team member who knows how to get things done. Funny thing is, our Gen Z, Taylor-Swift-obsessed, go-to colleague claims she never achieves anything.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-hwKmyKwtae\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"143135\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-FVFWZuA5kZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Why does she say she accomplishes nothing when she appears to be one of the all-time great multi-taskers? \\n\\nWell, she has started a thousand things in her life and never completed any of them. Piano, cello, netball, volleyball, basketball, writing novels, writing poetry, acting, dancing, acrobatics, choir—all have been tried, failed and given up forever.\\n\\nIt’s just as well because, as someone who has more job titles than Scott Morrison in a pandemic, we need her in the office. We’re not sure what’s on her business card but she acts as our junior copywriter, production coordinator, chief proofreader, project manager, office manager and social club vice-president.\\n\\nBree may be our youngest employee but her list of accomplishments belies her years. She’s already watched all 412 episodes of Grey’s Anatomy, which she feels should entitle her to an honorary medical degree. She’s also memorised every single lyric of every Taylor Swift song. That particular obsession runs to attending three of her concerts (and counting) and two tattoos referencing her music (and counting). Oh yes: and she just finished her under-graduate degree in business at QUT.\\n\\nHer cooking skills are non-existent, but luckily Bree lives the inner-city life, so a poke bowl or dumpling shop is never too far away. There’s also the occasional Macca’s feed after hitting the Valley nightclubs—whose menu she can recite by heart, thanks to her teen years spent in the Drive Thru trenches.\\n\\nIf you can’t find her in the office, just follow the sound of someone talking about the latest Netflix series. Then just give her a job to do and watch her get to it … well, straight after she’s finished listening to TayTay’s latest release. The girl has priorities, you know.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CYlWxVLWd4\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Liam\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We thought we hired an award-winning advertising copywriter. But we ended up with so much more: a ska band ex-roadie, an optimistic golfer and a brave, crustacean-battling chef. \\n\\nNow that’s value.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-wZCcn69t8v\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142939\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CCjcrDQfKO\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Liam was born and raised in Brisbane but escaped the oppressive heat to live in London and Hong Kong (and then found it again in Guam) for seven years.\\n\\nNow back in his hometown, he carries with him the secrets of a journey well-travelled—from paying his way through uni as a roadie for ska band The Furious Turtles, to winning Australian and international advertising and production copywriting awards throughout his career. \\n\\nWe’re sure we can thank his time on the road—it\'s classified but imaginably riddled with life-altering stories—for the effortless creativity he brings day to day. Second to that, maybe also his time at industry-renowned AWARD School.\\n\\nSpeaking of formative experiences, Liam’s gruff exterior was carefully constructed back in his boarding school days, when he was an easy target as the only soft city kid among a sea of tough country kids. \\n\\nHe quickly discovered that no amount of skiing holidays or golfing hole-in-ones (current tally: zero from 50,000 attempts) could win the respect of teenage bogans. A lesson in humility for Liam, perhaps—we’ve all been there at some point. \\n\\nDespite his otherwise bourgeois-sounding life where the (golfing) green is grassier, Liam actually knows all about the importance of sacrifice. \\n\\nAfter all, he cooks his famous garlic prawns every year for his family Christmas (and last year for the NWO Christmas) despite his drastic, ironic and tragic crustacean allergy. When he defeats the prawns, they defeat him right back.\\n\\nYou can actually cook the dish yourself following his not-so-secret recipe  <a href=\\\"https://newwordorder.com.au/lp/christmas-2021\\\">here.</a> It’s delicious—you can’t take Liam’s word for it, of course, but you can take ours.\\n\\nHe has cooking all locked down, but he’ll be the first to tell you cleaning isn’t his area of expertise. We can’t have everything. No reason to fret, though—isn’t that what kids are for? And he’s got four of them, so he’s very good at delegating.\\n\\nA of couple residents in his household live it lush and chore-free, though: his 50kg Irish Wolfhound, Luna, and his 8kg Cavoodle, Rusty. In fact, they’ve delegated to Liam the chore of walking them every morning. \\n\\nThose gorgeous dogs are part of what we love about Liam, along with his dry sense of humour, his endless creative expertise and his penchant for telling a good story—whether it’s through an ad script, or just a weekend anecdote.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-U1MRXZvhEN\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Kimi\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"We love her work because she’s a talented graphic designer and illustrator with a passion for turning ideas into something tangible. But we love Kimi for her budgie stories and dedicated karaoke performances, among other things.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gBybOMCILs\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142605\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-PXAIBWEyX7\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"She makes a splash in the NWO studio, but the real party starts when Kimi gets home. \\n\\nWith a glass of natural wine in hand, she relaxes to the sweet symphony of her sewing machine and the Real Housewives of wherever. She’ll proudly tell you she’s seen every episode.\\n\\nIn her heart, she’s a rich housewife. But in her clever brain, she’s an ambitious, talented entrepreneur.\\n\\nAs a side hustle, she sews and sells custom leather bags, purses and earrings. She stocks them at Forge Forward in Fortitude Valley and the Home of the Arts in the Gold Coast (so go check ‘em out).\\n\\nThe biz was even featured in Frankie Magazine—who absolutely frothed over her two-toned, gold snake tote bag.\\n\\nThe next enterprise ambition on Kimi’s list is a doggy day-care. She lives and breathes for animals of all kinds. \\n\\nShe says could fall in love with an earthworm, although she’d probably feed it to her budgies if they asked her to. Kimi is loyal to Patsy and Tina before anything else. \\n\\nNamed after Patsy Cline and Tina Arena, her babies represent just a smidge of Kimi’s music taste, which she describes as ‘dad music’.\\n\\nTo stick with the household theme, Kimi’s partner Levi decided to pursue a career as a drummer, composer and music mix engineer. Sometimes he sings backup to Kimi’s karaoke rendition of Private Dancer.\\n\\nKimi’s custom illustration is one of the things that make our work really special. She’s an amazing problem solver and collaborator, and her favourite part of the job is illustrating video storyboards that our animators bring to life.\\n\\nRather than ‘designer’, Kimi’s most well-known around the office as ‘Lady President of the Social Committee’. She makes sure we have cake and sparkling wine on birthdays, takeout lunch on Fridays and the trendiest Christmas venue booked by September every year.\\n\\nNWO’s social scene would truly be lost without Kimi.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":false,\"collapsed\":true,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-lwRZRhzi23\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Marnie\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our clients know her as a diligent, go-with-the-flow, uber-competent account manager and producer. But below her calm exterior, she’s actually a wildly creative videography nerd with a teen rap star alter ego.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-CEhp840dGU\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"142571\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-6khVUP6enl\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"There’s so much more to Marnie than just her role at NWO.\\n\\nTo start with, Marnie’s our personal photographer for many of our staff headshots. It’s an equal trade because we let her put her four years of art school to good use—never mind that she already does that with her side hustle photography business.\\n\\nActually, there are many ways art school shaped her into the artist she is today. It taught her that there’s art in absolutely everything. It’s where she discovered wine. And for her Honours project, she explored how the innocence of childlike expression unlocks free creativity—a sentiment that inspired her ‘teenage’ rap band, Origami Girls. <a href=\\\"https://www.youtube.com/watch?v=gc4XErDT84o/\\\">Their music video for hit single \'Rapp\' </a> is one of our all-time favourites.\\n\\nBut two-and-a-half years ago, Alma took over the role of childlike expression—and he’s got it down pat. Marnie says her toddler runs her world and is the centre of her purpose. As far as bosses go, he’s a pretty cute one.\\n\\nIf Alma is Marnie’s boss, Mark is her partner in crime. It was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles. The adventurous pair climbed more than 4km above sea level on Manaslu for Marnie’s 30th—just the next step up from her 18th birthday skydiving trip.\\n\\nOf all the musical talent we have rocking here at NWO, Marnie’s probably takes the cake.\\n\\nIt all started with a pair of drumsticks, dreams of an all-girl band and a healthy crush on Zac Hanson. In high school, Marnie fantasised about opening for Zac on tour before riding off into the moonlight with him. \\n\\nBut the reality was a little less dreamy and a whole lot louder: a decade spent playing for an improvised noise band in warehouses and DIY festivals. And improvised noise was only the beginning of her music career.\\n\\nNow, Marnie’s checked off all the genres: from emo and garage to bubble gum rock. In the spare time she can’t possibly have, she’s captured every era of her music over the past decade through her video production business,\\n <a href=\\\"https://www.youtube.com/c/BarePictures/featured\\\">Bare Pictures.</a>\\n\\nBeyond the creative vision we see in her music videos, Marnie has extensive experience producing TVCs for big biz dogs like the NRL, Samsung and Australian Ballet.\\n\\nMarnie’s blue-sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better—and we just love her for it.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-7N8m1D7qWF\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet William\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our client services team is more the merrier, thanks to our new coffee-obsessed skiing pro with a zest for the Brissy music scene.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-KGxvTnIvrQ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141957\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ABAHjcb3pC\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"It’s clear to us that William was custom-built for his role as account manager (business growth), but there’s a lot more to him than WIP reports and BD timelines.\\n\\nLike his first love: music.\\n\\nFrom building music festival sets for global icons like Justin Bieber and Ariana Grande—good mates of his, apparently—to running his own music biz where he managed local artists, William is what we would call ‘the artsy type’. \\n\\nBut despite his natural talents on guitar and piano, rumour has it he can’t even read sheet music. Didn’t bode well for the paperwork. Maybe that’s why he swapped his Yamaha keyboard for a wireless Apple one.\\n\\nAnd so, music’s loss became advertising’s gain.\\n\\nWilliam’s young looks belie a wealth of industry experience. While he co-ran a creative agency, he stocked his blazer sleeves with some tricks that have majorly delighted us at NWO.\\n\\nIn return for choccy treats during our fortnightly client services meeting, William uses his top-notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects. \\n\\nHe won’t compromise on meeting his clients’ deadlines—the guy is dedicated, what can we say? But we hear he’s actually pretty flexible on the balance beam, thanks to years of gymnastics training.\\n\\nHis impressive sense of balance comes in handy every now and then when he’s across the globe shredding the ski slopes (his happy place, if the cheesy photographed grins are any indication).\\n\\nWhen he started with us, we immediately got him on the tools. And by the tools, we obviously mean the coffee machine. Lately, we’ve been lost without an office barista, so he couldn’t have joined us at a better time.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-rNSYv0d7NJ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Greg\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Our very own Kiwi adrenaline junkie has hit the ground running in his first month on NWO’s payroll.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-SRh6cUsbvS\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141733\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-gsRmaxXL2m\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Strategy and marketing have always come naturally to Greg. He is both fluent in ‘marketing speak’ and impressively able to communicate with non-marketing natives. But there’s much more to uncover beyond his business acumen.\\n\\nGreg’s our resident Kiwi, bringing with him stories of the beautiful Aotearoa landscape and all the silly adrenaline pursuits that come with it—like his (potentially mid-life crisis-inspired) 50th birthday skydiving adventure.\\n\\nThe thrill seeking continued beyond New Zealand. His move to Australia was bracketed by swims with whale sharks in Mexico, shivery fishing in the Arctic Circle and months of backpacking through the Middle East. Although, he hasn’t yet made his way to India, which is rich with his family history—but it’s on the bucket list.\\n\\nGreg’s family is his world. While Greg is a natural leader in the workplace, he’s married to a Leo (his wife Jo), who was destined to wear the proverbial pants in their household. He’s immensely proud of his son, Daniel, who inherited Greg’s football stardom and carries the torch since Greg’s body decided his glory days are long over. Greg is now coach to Daniel, to cope with his retirement from playing football and tennis. His golf glory days are still alive and well.\\n\\nGreg is a fan of many thought-provoking quotes, such as: “hope is not a strategy”, “good is the enemy of great” and “hot chips taste better when they belong to someone else”. His seagull tendencies make lunch with Greg a high-stakes experience.\\n\\nA big believer that humour can lighten even the most challenging of situations, Greg is always earning laughs around the office—making him the perfect new addition to the team.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-4ClCeplnqZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"Meet Tim\",\"headingColour\":\"text-black\",\"headingSize\":\"text-5xl\"}},\"new2\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"By day, he leads and directs our client services team. By night, he’s a trilingual ex-tennis star with a sneaker obsession.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-EHGcch1Nd8\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-xgBpfxj8HD\",\"content\":{\"fields\":{\"images\":[\"141527\"]}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-ZxNqeXL8I1\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Tim joined the NWO team last year and since then we have unearthed a plethora of interesting snippets about the life of Tim. Now it’s time to share that with the outside world.\\n\\nFor example, although born in Brisbane, Tim grew up on the island of Borneo in Malaysia before moving back to Brisbane at age 16 and attending boarding school. Sorry, but all boarding school stories remain classified.\\n\\nWith that cultural background, Tim is fortunate enough to speak three languages—English, Bahasa Melayu and Hakka, a Chinese dialect. Actually, he speaks a few Chinese dialects so calling Tim trilingual might actually be selling him short.\\n\\nWhen he was younger, he was quite the tennis player and travelled extensively around south-east Asia for tournaments. Luckily for Rafa and Roger, he decided to swap the racquet for a MacBook and pursued his career in advertising.\\n\\nRegrets, he’s had a few. Like being a guinea pig in clinical trials in exchange for a few bucks. Or the free tattoo of a hotel safe code he got as a dare. Many expensive laser sessions later, it turns out it wasn’t a ‘free’ tattoo at all. \\n\\nHe has been on road trips around Iceland in winter, adds salt to Coke, is a mad Manchester United fan and a former cover band lead singer. He really rocks it on karaoke nights. \\n\\nDespite all these interesting tidbits, Tim is most well-known for his sneaker collection, admitting to ownership of more than 100 pairs. But we suspect the number is way higher. Rarely a week goes by at NWO HQ without a couple of shoe-box-sized deliveries arriving for Mr Kho. \\n\\nTim is happily married (well, he’s happy at least) and can sniff a good lunch from five desks away. As his clients will attest, Tim is full of energy and curiosity and that makes him a great member of the NWO family.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Let us introduce ourselves','Every office needs that go-to team member who knows how to get things done. Funny thing is, our Gen Z, Taylor-Swift-obsessed, \'go-to colleague\' claims she never gets anything done.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139445,143221,1,'Emotional connection lies at the heart of every successful brand','2023-03-31 03:59:36','2023-03-31 03:59:36','efb801b8-5342-4def-b854-d0d6409dbf6e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-W8fJrHtzJR\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<b> THE MOST POWERFUL MARKETING HAPPENS WHEN BRANDS BUILD LASTING EMOTIONAL CONNECTIONS WITH THEIR AUDIENCE. <b>\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"Often a lack of connection is to blame for marketing and brand under-performance.\\nWhy is that? Well, think of brands like people.\\nSome you associate with on a very shallow level. Some you interact with regularly but don’t really feel a connection. And some, you just really love.\\nLike people, we want to engage with brands that share our values, perspectives and opinions. We become loyal to them when we know they understand us and make us feel good. \\n\\n<h5> But as a brand owner or leader, how do you find these insights and build these emotional connections? </h5>\\nSuccessful brands invest in really understanding their customers.\\nThey undertake fit-for-purpose qualitative research to ask their customers questions and gain their insights into what they are thinking and why they behave the way they do. \\nToo often, this step is overlooked by a lack of understanding or a short-term view of objectives and budget. \\nCustomer insights are the gold nuggets of wisdom that don’t just give rise to effective campaigns—they transform the businesses, too.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}},\"new3\":{\"type\":\"textGrid\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"gridItems\":{\"new1\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #1: Tech company\",\"text\":\"Last year, we undertook 20 in-depth online interviews for a tech company wanting to know how their customers felt about them.\\nThe phone interviews, all following the same discussion guide and conducted across the world, clearly showed that while customers were loyal, they were hungry for greater innovation.\\nThese insights gave the leadership team confidence to fast-track some of their more ambitious projects.\"}},\"new2\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #2: Business management consultancy\",\"text\":\"We recently interviewed 20 potential, current and lapsed customers for a business management consultancy.\\nOur client learned more about the life cycle of their customers’ businesses, and how their needs change at each stage.\\nThe insights from these interviews helped us shape the consultancy’s approach to introducing a new product stream to a wider audience.\"}},\"new3\":{\"type\":\"6\",\"fields\":{\"heading\":\"Case study #3: Tertiary institution\",\"text\":\"Earlier this year, we undertook 15 in-depth interviews and six focus groups for a tertiary institution, aimed at understanding the emotional drivers for enrolments.\\nEnrolments had been waning slowly for eight years, and key demographics had switched around, too.\\nThrough our insights, we were able to show that, while students were still true believers in the brand, alumni and referrers were noticeably less enthusiastic. This was affecting the quality and number of referrals.\\nThe detail in our insights is fuelling a brand and \\nmarketing strategy aimed at strengthening connections.\"}}}}},\"new4\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<h5> Fit-for-purpose customer research </h5>\\nAt New Word Order, we undertake this step as part of our wider brand development methodology.\\nEvery time, we find research yields valuable input into our clients’ business strategies on top of feeding their brand strategy.\\nOur qualitative research is a formative contribution that tells you how your customers perceive your brand and what they need from you.\\nWe then use quantitative research to test that these views are representative of the wider industry and your customer base.\\nResearch can be expensive but it doesn’t have to be.\\nThere’s an art to asking customers questions. We can find out the true, deep feelings of your customers—ones they’ll never tell you, no matter how close the relationship you share.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}},{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-IRn8rdVydZ\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-green\",\"textBuilder\":{\"new1\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<b> We can help you build deeper emotional connections and loyalty with your customers.\",\"textSize\":\"text-xl\",\"textColour\":\"text-black\"}}},\"buttons\":{\"new1\":{\"type\":\"buttons\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"buttonText\":\"Talk to us today\",\"buttonImage\":[],\"internalLink\":[\"21297\"],\"externalLink\":null,\"buttonStyle\":\"outline\",\"buttonColour\":\"black\"}}},\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Emotional connection lies at the heart of every successful brand','The most powerful form of marketing is when brands build lasting emotional connections with their audience.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139446,143222,1,'The world of modern marketing','2023-04-03 01:07:55','2023-04-03 01:07:55','eab23cc3-5857-405c-9da9-2b8a12e252cd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p80I0czk4W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<b> Being a chief marketing (CMO) is a tough gig. We get that.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<b> You have multiple accountabilities staring long and hard at you before you’ve even had your morning coffee. The days of set-and-forget media plans, generous marketing budgets and long lunches with your creative agency peeps are long gone. </b>\\n\\nThe pain points of CMOs are often remarkably similar across different industries and sectors. As an agency who works closely with many CMOs in diverse fields from healthcare to industrial lubricants, we witness first-hand the many modern pressures of commercial marketing. There are strategic plans to deliver, performance metrics to be measured and ROI to be rationalised.\\n\\n<h5> Diamonds form under pressure </h5>\\nSure, you’re in the hot seat but we just applaud the fact you have a seat at the big table. Professional marketers haven’t always been welcome in the C-suite. But in recent times, the importance and relevance of marketing as a function of business success has been elevated. Yes, that does come with an bigger set of expectations and pressures, but that’s why we’re here to help.\\n\\nWhen your standard Tuesday morning involves planning and strategising around things like revenue growth, market share, user experience and brand performance, having an agency that is built for speed and delivery is a distinct advantage. Often our job is to help CMOs turn their board/exec-approved long-term strategies into actionable short-term tactics. \\n\\nAfter all, what’s the point of having marketing ammunition if you don’t have the secret weapon to fire it? \\n\\n<h5> We are your secret weapon </h5>\\n\\nPart of our value to CMOs is bringing a level of experience and skillset that isn’t readily available within your internal team. Or managing projects that just aren’t suitable for your big agency of record. \\n\\nAs pressures and performance metrics come to bear, you want to rely on an agency who can be responsive and proactive as required. People who can turn around projects quickly and efficiently. Marketing specialists who understand how lead generation and revenue growth is a daily challenge, not a one-off campaign. \\n\\nFear not, CMOs. We don’t just feel your pain. We share it. And it makes us all the more committed and determined to find innovative and fit-for-purpose solutions for your business. \\n\\nFind out more about how we add a secret weapon to your agency roster by downloading a short guide <a href=https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/NWO-secret-weapon.pdf>here</a>.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(139448,143224,1,'The world of modern marketing','2023-04-03 01:08:12','2023-04-03 01:08:12','96595b86-e72c-49f8-8922-ad6436bdceaa',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'[{\"type\":\"vizyBlock\",\"attrs\":{\"id\":\"vizy-block-p80I0czk4W\",\"enabled\":true,\"collapsed\":false,\"values\":{\"type\":\"type-0jFlVakMTB\",\"content\":{\"fields\":{\"sectionHeight\":\"h-auto\",\"backgroundColour\":\"bg-white\",\"textBuilder\":{\"new1\":{\"type\":\"heading\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"headingText\":\"<b> Being a chief marketing officer (CMO) is a tough gig. We get that.\",\"headingColour\":\"text-black\",\"headingSize\":\"text-2xl\"}},\"new2\":{\"type\":\"text\",\"enabled\":true,\"collapsed\":false,\"fields\":{\"text\":\"<b> You have multiple accountabilities staring long and hard at you before you’ve even had your morning coffee. The days of set-and-forget media plans, generous marketing budgets and long lunches with your creative agency peeps are long gone. </b>\\n\\nThe pain points of CMOs are often remarkably similar across different industries and sectors. As an agency who works closely with many CMOs in diverse fields from healthcare to industrial lubricants, we witness first-hand the many modern pressures of commercial marketing. There are strategic plans to deliver, performance metrics to be measured and ROI to be rationalised.\\n\\n<h5> Diamonds form under pressure </h5>\\nSure, you’re in the hot seat but we just applaud the fact you have a seat at the big table. Professional marketers haven’t always been welcome in the C-suite. But in recent times, the importance and relevance of marketing as a function of business success has been elevated. Yes, that does come with an bigger set of expectations and pressures, but that’s why we’re here to help.\\n\\nWhen your standard Tuesday morning involves planning and strategising around things like revenue growth, market share, user experience and brand performance, having an agency that is built for speed and delivery is a distinct advantage. Often our job is to help CMOs turn their board/exec-approved long-term strategies into actionable short-term tactics. \\n\\nAfter all, what’s the point of having marketing ammunition if you don’t have the secret weapon to fire it? \\n\\n<h5> We are your secret weapon </h5>\\n\\nPart of our value to CMOs is bringing a level of experience and skillset that isn’t readily available within your internal team. Or managing projects that just aren’t suitable for your big agency of record. \\n\\nAs pressures and performance metrics come to bear, you want to rely on an agency who can be responsive and proactive as required. People who can turn around projects quickly and efficiently. Marketing specialists who understand how lead generation and revenue growth is a daily challenge, not a one-off campaign. \\n\\nFear not, CMOs. We don’t just feel your pain. We share it. And it makes us all the more committed and determined to find innovative and fit-for-purpose solutions for your business. \\n\\nFind out more about how we add a secret weapon to your agency roster by downloading a short guide <a href=https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/NWO-secret-weapon.pdf>here</a>.\",\"textSize\":\"text-base\",\"textColour\":\"text-black\"}}},\"buttons\":[],\"sectionTitle\":null}}}}}]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `content` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `cpnav_layout`
--

LOCK TABLES `cpnav_layout` WRITE;
/*!40000 ALTER TABLE `cpnav_layout` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `cpnav_layout` VALUES (1,'Default',1,NULL,'2020-01-10 07:02:04','2020-01-10 07:02:04','9ba27893-7803-41a0-8b6e-96dd8fe6d026'),(2,'Contributor/Editor Menu',0,'[\"f131f845-b8f2-4843-9800-c6050f47de00\",\"17b37769-108f-4a7c-bc41-7c6b88e6f1ab\"]','2020-01-10 07:02:40','2020-02-27 05:11:31','51e51b08-d4dd-4759-b8c0-9f96c94cae94');
/*!40000 ALTER TABLE `cpnav_layout` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `cpnav_navigation`
--

LOCK TABLES `cpnav_navigation` WRITE;
/*!40000 ALTER TABLE `cpnav_navigation` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `cpnav_navigation` VALUES (15,2,'dashboard','Dashboard','Dashboard',0,0,'dashboard','dashboard','gauge',NULL,'0',0,'2020-01-10 07:02:40','2020-01-10 07:02:49','3f1857b7-abe3-475e-b501-59d8b41de22c'),(16,2,'entries','Entries','Entries',1,1,'entries','entries','section',NULL,'0',0,'2020-01-10 07:02:40','2020-01-10 07:02:40','2bf81369-175f-42d3-a317-422736134ef0'),(103,2,'categories','Categories','Categories',1,3,'categories','categories','categories',NULL,'',0,'2020-02-28 01:59:54','2020-02-28 01:59:54','64ec9961-0698-4025-b7ed-71f4e936db12'),(104,1,'dashboard','Dashboard','Dashboard',1,0,'dashboard','dashboard','gauge',NULL,'',0,'2020-02-28 05:34:49','2020-02-28 05:34:49','8aa98c56-3914-4d43-ae56-f27c62c130f8'),(105,1,'entries','Entries','Entries',1,1,'entries','entries','section',NULL,'',0,'2020-02-28 05:34:49','2020-02-28 05:34:49','aa85c31a-d0f3-453b-a06e-9e5da800d568'),(106,1,'globals','Globals','Globals',1,2,'globals','globals','globe',NULL,'',0,'2020-02-28 05:34:50','2020-02-28 05:34:50','12f7d8e6-332d-422d-ab15-86056417393a'),(107,1,'categories','Categories','Categories',1,3,'categories','categories','categories',NULL,'',0,'2020-02-28 05:34:50','2020-02-28 05:34:50','e8b2c8e5-09f2-4405-85f3-9d83825f5196'),(108,1,'assets','Assets','Assets',1,4,'assets','assets','assets',NULL,'',0,'2020-02-28 05:34:50','2020-02-28 05:34:50','a8bdb093-bd58-4e73-a57a-51417a615f03'),(109,1,'users','Users','Users',1,5,'users','users','users',NULL,'',0,'2020-02-28 05:34:50','2020-02-28 05:34:50','b2e9c313-5908-44bb-bad6-4219f59eb6ee'),(110,1,'freeform','Freeform','Freeform',1,6,'freeform','freeform','/home/forge/default/vendor/solspace/craft-freeform/src/icon-mask.svg',NULL,'',0,'2020-02-28 05:34:50','2020-02-28 05:34:50','fe7c8cfe-bedd-413c-aac0-708c87eec986'),(111,1,'navigation','Navigation','Navigation',1,7,'navigation','navigation','/home/forge/default/vendor/verbb/navigation/src/icon-mask.svg',NULL,'',0,'2020-02-28 05:34:50','2020-02-28 05:34:50','888277f2-870f-497d-bf5e-f13094a83549'),(113,1,'workflow','Workflow','Workflow',1,9,'workflow','workflow','/home/forge/default/vendor/verbb/workflow/src/icon-mask.svg',NULL,'',0,'2020-02-28 05:34:50','2020-02-28 05:34:50','701bb02c-b485-4360-bdb9-eba4880a738b'),(114,1,'graphql','GraphQL','GraphQL',1,10,'graphql','graphql','@app/icons/graphql.svg',NULL,'',0,'2020-02-28 05:34:50','2020-02-28 05:34:50','b41f39f0-871c-481a-bcee-82c5b858857e'),(115,1,'utilities','Utilities','Utilities',1,11,'utilities','utilities','tool',NULL,'',0,'2020-02-28 05:34:50','2020-02-28 05:34:50','23bdf56f-6436-4926-804b-765fd5fa11df'),(116,1,'settings','Settings','Settings',1,12,'settings','settings','settings',NULL,'',0,'2020-02-28 05:34:50','2020-02-28 05:34:50','c4e53d6d-39fc-430c-9ac8-788dbfde2004'),(117,1,'plugin-store','Plugin Store','Plugin Store',1,13,'plugin-store','plugin-store','plugin',NULL,'',0,'2020-02-28 05:34:50','2020-02-28 05:34:50','2d205d0d-0a13-486f-9ccc-4ddf40ed96d4');
/*!40000 ALTER TABLE `cpnav_navigation` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `cpnav_pending_navigations`
--

LOCK TABLES `cpnav_pending_navigations` WRITE;
/*!40000 ALTER TABLE `cpnav_pending_navigations` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `cpnav_pending_navigations` 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 (192,28040,17887,1,'Draft 1','',1,'2022-06-22 23:52:09',1),(196,17690,17887,1,'Draft 1','',1,NULL,1),(197,17680,17887,1,'Draft 1','',1,NULL,1),(290,18176,17887,1,'Draft 1','',1,'2022-08-24 04:25:36',1),(455,17680,17887,1,'Draft 2','',1,NULL,1),(511,18164,17887,1,'Draft 1','',1,NULL,1),(521,74162,1,1,'Draft 1','',1,NULL,1),(568,58762,17934,1,'Draft 3','',1,NULL,1),(577,58762,17887,1,'Draft 4','',1,NULL,1),(582,58762,17875,1,'Draft 5','',1,NULL,1),(640,40504,17934,1,'Draft 1','',1,NULL,1),(665,22210,17934,1,'Draft 2','',1,NULL,1),(700,140013,17887,1,'Draft 2','',1,NULL,1),(702,140060,1,1,'Draft 1','',1,NULL,1),(715,44849,1,1,'Draft 1','',1,NULL,1),(748,20379,1,1,'Draft 3','',1,NULL,1),(771,20379,141503,1,'Draft 4','',1,NULL,1),(772,141493,141503,1,'Draft 2','',1,NULL,1),(798,141493,1,1,'Draft 3','',1,NULL,1),(803,141533,1,1,'Draft 1','',1,'2022-06-30 05:31:34',1),(812,17650,17893,1,'Draft 1','',1,NULL,1),(878,140013,17934,1,'Draft 3','',1,'2022-08-25 04:29:21',1),(893,141486,17934,1,'Draft 1','',1,'2022-10-09 23:57:05',1),(942,140246,17887,1,'Draft 3','',1,NULL,1),(943,74162,17887,1,'Draft 2','',1,NULL,1),(991,18139,17887,0,'Draft 1','',1,NULL,1),(994,141493,17887,1,'Draft 4','',1,NULL,1),(995,40506,17887,1,'Draft 1','',1,NULL,1),(1001,141925,17934,1,'Draft 2','',1,NULL,1),(1008,NULL,17934,0,'First draft','',0,NULL,1),(1033,142375,17934,1,'Draft 1','',1,NULL,1),(1038,48011,142281,1,'Draft 2','',1,NULL,1),(1191,142717,142716,0,'Draft 1','',1,NULL,1),(1193,142717,142716,1,'Draft 2','',1,NULL,1),(1194,16828,17887,1,'Draft 1','',1,NULL,1),(1195,18126,17887,1,'Draft 1','',1,NULL,1),(1205,142717,17934,1,'Draft 3','',1,NULL,1),(1208,140246,17893,1,'Draft 2','',1,NULL,1),(1225,142833,17934,1,'Draft 1','',1,'2022-11-16 22:45:24',1),(1258,141533,17887,0,'Draft 2','',1,NULL,1),(1284,142676,17934,1,'Draft 1','',1,NULL,1),(1288,48011,17934,1,'Draft 3','',1,NULL,1),(1293,142875,17875,1,'Draft 1','',1,NULL,1),(1300,40504,17875,1,'Draft 2','',1,NULL,1),(1301,141725,17875,1,'Draft 1','',1,NULL,1),(1304,87608,17875,1,'Draft 1','',1,NULL,1),(1315,141725,17887,1,'Draft 2','',1,NULL,1),(1316,NULL,17887,0,'First draft',NULL,0,NULL,0),(1317,NULL,17887,0,'First draft',NULL,0,NULL,0),(1321,143060,17887,1,'Draft 1','',1,NULL,1),(1322,74162,140513,0,'Draft 3','',1,NULL,1),(1325,NULL,17875,0,'First draft',NULL,0,NULL,0),(1326,NULL,17875,0,'First draft',NULL,0,NULL,0),(1334,143060,140513,1,'Draft 2','',1,NULL,1),(1337,140246,140513,1,'Draft 4','',1,NULL,1),(1338,143021,140513,1,'Draft 1','',1,NULL,1),(1339,142875,140513,1,'Draft 2','',1,NULL,1),(1340,142901,140513,1,'Draft 1','',1,NULL,1),(1341,142258,140513,1,'Draft 1','',1,NULL,1),(1342,48011,140513,1,'Draft 4','',1,NULL,1),(1343,141533,140513,1,'Draft 3','',1,NULL,1),(1344,87608,140513,1,'Draft 2','',1,NULL,1),(1345,142676,140513,1,'Draft 2','',1,NULL,1),(1346,141925,140513,1,'Draft 3','',1,NULL,1),(1347,141725,140513,1,'Draft 3','',1,NULL,1),(1348,141493,140513,1,'Draft 5','',1,NULL,1),(1349,18139,140513,1,'Draft 2','',1,NULL,1),(1350,140060,140513,1,'Draft 2','',1,NULL,1),(1351,140013,140513,1,'Draft 4','',1,NULL,1),(1354,143080,140513,1,'Draft 1','',1,NULL,1),(1355,20379,140513,1,'Draft 6','',1,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,5,'craft\\elements\\User',1,0,'2021-03-30 06:11:45','2022-10-24 23:08:02',NULL,NULL,'47360316-d116-43eb-a3bf-094cc728787d'),(14833,NULL,NULL,NULL,NULL,'Solspace\\Freeform\\Elements\\Submission',1,0,'2021-04-22 23:29:35','2021-04-22 23:29:35',NULL,NULL,'3d08224d-c8c9-4791-9ed1-3c1f2bb3f70e'),(16571,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2021-05-14 06:43:31','2022-08-12 03:46:46',NULL,NULL,'a5561d72-6685-4d6a-976a-74b27aa94c28'),(16573,16571,NULL,11303,6,'craft\\elements\\Entry',1,0,'2021-05-14 06:43:31','2021-05-14 06:43:31',NULL,NULL,'81511970-04af-4bb1-8887-412d22f14a22'),(16574,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-14 06:43:31','2021-05-14 06:37:03',NULL,NULL,'c58fd29e-d0a6-43cf-bac0-8628502294eb'),(16578,16571,NULL,11304,6,'craft\\elements\\Entry',1,0,'2021-05-17 05:37:57','2021-05-17 05:37:57',NULL,NULL,'1005041d-897c-441d-b2ee-587e7a0ca259'),(16579,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 05:37:57','2021-05-14 06:37:03',NULL,NULL,'34ba6208-240e-422c-8dc6-e9eaa4e4767c'),(16580,16571,NULL,11305,6,'craft\\elements\\Entry',1,0,'2021-05-17 05:38:00','2021-05-17 05:38:00',NULL,NULL,'04536a0b-8f77-41c2-9667-6ae8301f1967'),(16581,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 05:38:01','2021-05-14 06:37:03',NULL,NULL,'9e171509-79d0-486b-a234-90b8625560b7'),(16589,16571,NULL,11306,6,'craft\\elements\\Entry',1,0,'2021-05-17 05:40:22','2021-05-17 05:40:22',NULL,NULL,'9465697a-8521-4dcb-a3a5-3c6bba4bd0f9'),(16590,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 05:40:22','2021-05-17 05:40:12',NULL,NULL,'5111a59a-bf61-4770-b026-2283d0952984'),(16591,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 05:40:22','2021-05-17 05:40:12',NULL,NULL,'33194f25-e379-482e-9782-ebd7eb3d4fc0'),(16592,16571,NULL,11307,6,'craft\\elements\\Entry',1,0,'2021-05-17 05:40:25','2021-05-17 05:40:25',NULL,NULL,'5e998b6a-ac31-447e-8858-7b2df3ac111f'),(16593,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 05:40:26','2021-05-17 05:40:12',NULL,NULL,'b6bc65e8-5ff8-4850-958d-c4f37924e006'),(16594,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 05:40:26','2021-05-17 05:40:12',NULL,NULL,'72615dc8-a52c-45d9-b7e1-afe929092d28'),(16595,16571,NULL,11308,6,'craft\\elements\\Entry',1,0,'2021-05-17 05:41:16','2021-05-17 05:41:16',NULL,NULL,'0cda5bac-8d8d-4f3f-9ba1-92e98d0d8939'),(16596,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 05:41:16','2021-05-17 05:40:12',NULL,NULL,'90b35248-c92c-4dfe-a182-60bd917c69e9'),(16597,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 05:41:16','2021-05-17 05:40:12',NULL,NULL,'7ffa30b8-2a62-4a4b-8c29-4dc53f1090d0'),(16604,16571,NULL,11309,6,'craft\\elements\\Entry',1,0,'2021-05-17 05:42:46','2021-05-17 05:42:46',NULL,NULL,'e50c6a88-f3f6-4534-a9fa-f4bf09891c98'),(16605,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 05:42:46','2021-05-17 05:42:35',NULL,NULL,'84d4d31f-3692-495c-a59f-fad81e7aa853'),(16606,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 05:42:46','2021-05-17 05:40:12',NULL,NULL,'2cf316bb-72a6-48e1-814a-c366aa9f3cc2'),(16607,16571,NULL,11310,6,'craft\\elements\\Entry',1,0,'2021-05-17 05:42:51','2021-05-17 05:42:51',NULL,NULL,'b8e72acc-4d67-4d78-b56c-22c0f1cdd908'),(16608,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 05:42:51','2021-05-17 05:42:35',NULL,NULL,'0241fc75-7e9c-48f8-b0e4-5f5281b10495'),(16609,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 05:42:51','2021-05-17 05:40:12',NULL,NULL,'899c8f7b-20cc-4296-b57a-b77f5f79203b'),(16620,16571,NULL,11311,6,'craft\\elements\\Entry',1,0,'2021-05-17 05:47:14','2021-05-17 05:47:14',NULL,NULL,'447f25b3-4f5c-446a-9df7-6f1c4e8e44dc'),(16621,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 05:47:14','2021-05-17 05:47:04',NULL,NULL,'c4d3efb3-14a4-456e-ae5f-da9707638c0c'),(16622,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 05:47:14','2021-05-17 05:47:04',NULL,NULL,'f4f7e944-7995-452e-8f1f-dab55ddfc9c3'),(16623,NULL,NULL,NULL,8,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 05:47:14','2021-05-17 05:47:04',NULL,NULL,'866278b2-0627-43ca-8e29-a1e2a7969fec'),(16629,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-17 06:01:34','2021-06-09 23:22:03',NULL,NULL,'0d663785-9444-46b4-9d26-dd9466fed18d'),(16630,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-17 06:02:27','2021-06-09 23:22:33',NULL,NULL,'6544c514-abbc-47b6-ad17-01aca7a58da4'),(16638,16571,NULL,11312,6,'craft\\elements\\Entry',1,0,'2021-05-17 06:03:01','2021-05-17 06:03:01',NULL,NULL,'1972bd5f-2265-4c5b-a7bc-dacd43f97ad4'),(16639,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:03:02','2021-05-17 06:02:46',NULL,NULL,'c5cfbe0e-77a5-40a4-ad57-363f9fde45e0'),(16640,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:03:02','2021-05-17 06:02:53',NULL,NULL,'684fffd8-a8ec-429c-bc25-40a9dac17ea6'),(16641,NULL,NULL,NULL,8,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:03:02','2021-05-17 05:47:04',NULL,NULL,'fd21f7b9-d70b-40f4-821f-9469286a0b96'),(16648,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-17 06:05:04','2021-06-09 23:22:52',NULL,NULL,'5f670f8e-c6b6-43e8-bcd1-804f657dbdd4'),(16654,16571,NULL,11313,6,'craft\\elements\\Entry',1,0,'2021-05-17 06:05:33','2021-05-17 06:05:33',NULL,NULL,'8a54d7f7-5ea0-4ede-9c6c-4a315157836d'),(16655,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:05:33','2021-05-17 06:05:09',NULL,NULL,'28e7917d-ec60-4e3e-8890-c7a361b83b52'),(16656,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:05:33','2021-05-17 06:05:09',NULL,NULL,'7dfa5c6b-1ac2-440b-8e74-aa84ec002266'),(16657,NULL,NULL,NULL,8,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:05:33','2021-05-17 06:05:09',NULL,NULL,'b4b65484-3fba-45c9-a7a5-ebe2f422709c'),(16658,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:05:33','2021-05-17 06:05:09',NULL,NULL,'9bd5c921-1319-4fd4-9f8a-a1f9ffcc35a6'),(16665,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-17 06:06:53','2021-06-09 23:22:56',NULL,NULL,'b877c199-e40b-4c02-b6ae-d2b723d41e00'),(16669,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-17 06:08:04','2021-06-09 23:23:00',NULL,NULL,'df6b86dd-2465-466e-a81c-91df8371c106'),(16675,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-17 06:09:35','2021-06-09 23:23:03',NULL,NULL,'9efd2745-a702-4785-94d8-4b661858bcbf'),(16683,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-17 06:10:57','2021-06-09 23:23:06',NULL,NULL,'d7711539-4ffe-4dd2-ad3f-ead424720615'),(16693,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-17 06:12:43','2021-06-09 23:23:09',NULL,NULL,'938cc570-b31d-4909-b132-58e018aabee9'),(16705,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-17 06:13:42','2021-06-09 23:23:10',NULL,NULL,'06b223ae-aabe-401e-9da0-1b4cbed91da2'),(16719,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-17 06:15:30','2021-06-09 23:22:30',NULL,NULL,'0f220289-dbc1-4939-8889-604212f1e079'),(16735,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-17 06:16:38','2021-06-09 23:22:08',NULL,NULL,'c47a1b72-44b7-49e4-8b36-b8756469cb06'),(16744,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:17:10','2021-05-17 06:16:41',NULL,NULL,'14573bd6-f762-4c9b-a657-7ee204bb66ad'),(16745,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:17:10','2021-05-17 06:16:41',NULL,NULL,'a5f13370-24b9-4fa7-8f67-c59fa64338b6'),(16746,NULL,NULL,NULL,8,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:17:10','2021-05-17 06:16:41',NULL,NULL,'b3af8a73-88d5-4c71-90db-4e9a5dc5d0ac'),(16747,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:17:10','2021-05-17 06:16:41',NULL,NULL,'fd46a99a-9d6a-44f9-a6d8-0a8a45408933'),(16748,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:17:10','2021-05-17 06:16:42',NULL,NULL,'add3ec94-c482-4df9-a929-8b35f4f19542'),(16749,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:17:10','2021-05-17 06:16:42',NULL,NULL,'d2fd23cd-a747-4de3-850d-193826a8ee9a'),(16750,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:17:10','2021-05-17 06:16:42',NULL,NULL,'209926f3-2acb-4bfc-8632-10192c9176d7'),(16751,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:17:11','2021-05-17 06:16:42',NULL,NULL,'8ff45371-2b12-4858-9a0f-720d7baca0d7'),(16752,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:17:11','2021-05-17 06:16:42',NULL,NULL,'022e41d2-4491-4018-82eb-88d99a2489ef'),(16753,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:17:11','2021-05-17 06:16:42',NULL,NULL,'ccf9e113-53a8-4a70-92cf-df04a95ae054'),(16754,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:17:11','2021-05-17 06:16:42',NULL,NULL,'3589fe95-7158-4527-970c-6e36fba8a985'),(16755,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:17:11','2021-05-17 06:16:42',NULL,NULL,'78ee8269-7d50-4294-bd29-e349077b8d5f'),(16756,16571,NULL,11314,6,'craft\\elements\\Entry',1,0,'2021-05-17 06:17:10','2021-05-17 06:17:10',NULL,NULL,'cf0704a3-57e8-4464-97cc-7a7e871fb49a'),(16757,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:17:11','2021-05-17 06:16:41',NULL,NULL,'cb84f483-f7a8-4659-a280-521b9f6d73ad'),(16758,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:17:11','2021-05-17 06:16:41',NULL,NULL,'ed072b53-a384-42d5-9c84-2d978c0b9ef1'),(16759,NULL,NULL,NULL,8,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:17:11','2021-05-17 06:16:41',NULL,NULL,'5e2af331-50b5-4341-83ef-bdcfdb261f82'),(16760,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:17:11','2021-05-17 06:16:41',NULL,NULL,'21a8f39d-0831-47df-8c4b-8993fc1fddf5'),(16761,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:17:11','2021-05-17 06:16:42',NULL,NULL,'a28bae16-9f52-4dce-a4c5-f694616b1be7'),(16762,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:17:11','2021-05-17 06:16:42',NULL,NULL,'8f7f862d-dd1a-4a92-bac4-8b1613cd6375'),(16763,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:17:11','2021-05-17 06:16:42',NULL,NULL,'b1d2b2a4-c32a-45f3-986f-a96bfd9dc18c'),(16764,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:17:11','2021-05-17 06:16:42',NULL,NULL,'f6b9514a-3f31-4ff1-b936-9e6b6b6eeca9'),(16765,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:17:12','2021-05-17 06:16:42',NULL,NULL,'890cfc49-724d-4790-be2b-710424a9fb5e'),(16766,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:17:12','2021-05-17 06:16:42',NULL,NULL,'579c0de6-49a4-4c4a-992e-74f4d4d0884a'),(16767,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:17:12','2021-05-17 06:16:42',NULL,NULL,'9142c104-565b-48e2-b0f1-366ff437efef'),(16768,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:17:12','2021-05-17 06:16:42',NULL,NULL,'3e146bdb-1156-4ac1-bfee-8bc2baa164a5'),(16769,16571,NULL,11315,6,'craft\\elements\\Entry',1,0,'2021-05-17 06:49:13','2021-05-17 06:49:13',NULL,NULL,'2cba17d0-bde2-4df3-8df4-261b0bc9e5a1'),(16770,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:49:14','2021-05-17 06:16:41',NULL,NULL,'61539813-2b93-4a55-839a-04d9fee8d360'),(16771,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:49:14','2021-05-17 06:16:41',NULL,NULL,'33e36d37-c992-4689-8f75-e2b3d3dd1fd5'),(16772,NULL,NULL,NULL,8,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:49:14','2021-05-17 06:16:41',NULL,NULL,'95f83eba-c0d9-46f3-aa3a-d1674aa6a960'),(16773,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:49:14','2021-05-17 06:16:41',NULL,NULL,'7b713a4d-3b89-4c10-a503-e8ff36b2b51b'),(16774,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:49:14','2021-05-17 06:16:42',NULL,NULL,'b3b6339b-4eaf-46ab-a986-d85cf69596a7'),(16775,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:49:14','2021-05-17 06:16:42',NULL,NULL,'3c5921de-efaa-466f-8545-37023f21c7d2'),(16776,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:49:14','2021-05-17 06:16:42',NULL,NULL,'5ea2176d-8d58-49b6-b90f-52f38c929773'),(16777,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:49:14','2021-05-17 06:16:42',NULL,NULL,'9f8afbe7-fed7-4429-9e6e-27af8e83773a'),(16778,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:49:14','2021-05-17 06:16:42',NULL,NULL,'6737ab67-f420-42d6-9b7e-b0e6fa200393'),(16779,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:49:14','2021-05-17 06:16:42',NULL,NULL,'6487bc1b-5ef4-43f8-9db2-17947fada671'),(16780,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:49:14','2021-05-17 06:16:42',NULL,NULL,'f91f9a99-581a-4069-a656-e1e66ce14642'),(16781,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:49:14','2021-05-17 06:16:42',NULL,NULL,'2bdf57ba-3665-4365-93a3-e047821a3bb2'),(16782,16571,NULL,11316,6,'craft\\elements\\Entry',1,0,'2021-05-17 06:58:02','2021-05-17 06:58:02',NULL,NULL,'7eb1f024-e279-4077-8def-8ff026168676'),(16783,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:58:03','2021-05-17 06:16:41',NULL,NULL,'05200eb4-b08b-4d2f-85e7-b3fa0475821f'),(16784,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:58:03','2021-05-17 06:16:41',NULL,NULL,'6f470e95-88c9-4d74-bfc9-46520705a1d5'),(16785,NULL,NULL,NULL,8,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:58:03','2021-05-17 06:16:41',NULL,NULL,'9d3201f7-38a0-446c-aa37-e8639ebd7aa2'),(16786,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:58:03','2021-05-17 06:16:41',NULL,NULL,'891f5602-ee11-40da-b633-387938001edd'),(16787,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:58:03','2021-05-17 06:16:42',NULL,NULL,'fbf7d831-e6f5-499c-9532-04d13c582bb3'),(16788,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:58:03','2021-05-17 06:16:42',NULL,NULL,'3ccb58c1-7623-4f4e-a748-483f2cd2332a'),(16789,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:58:03','2021-05-17 06:16:42',NULL,NULL,'d439e129-07e9-415b-b903-d2a82dbadc7e'),(16790,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:58:03','2021-05-17 06:16:42',NULL,NULL,'666b788c-0ad2-4974-97f9-85eee757a54e'),(16791,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:58:03','2021-05-17 06:16:42',NULL,NULL,'722bb01e-c82f-4d96-aff6-9de877bdd6d2'),(16792,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:58:03','2021-05-17 06:16:42',NULL,NULL,'9a9b5225-bacb-46f6-8f81-206cce241e41'),(16793,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:58:03','2021-05-17 06:16:42',NULL,NULL,'22b24e23-a1f9-4412-a946-8762e5b0dfb1'),(16794,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 06:58:03','2021-05-17 06:16:42',NULL,NULL,'e4fad758-95ce-4c06-8d11-66d1e63f9b0a'),(16795,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-05-17 07:01:00','2021-05-17 07:01:00',NULL,NULL,'96e0a4f0-06c1-4274-a613-d354f9483a93'),(16796,16571,NULL,11317,6,'craft\\elements\\Entry',1,0,'2021-05-17 07:01:01','2021-05-17 07:01:01',NULL,NULL,'2769bbf3-7a66-476a-9ef1-a670d073ee11'),(16797,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 07:01:02','2021-05-17 06:16:41',NULL,NULL,'6fc04aea-c128-4252-9fee-06e5586ac635'),(16798,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 07:01:02','2021-05-17 06:16:41',NULL,NULL,'9505329d-c453-4b04-94e0-ed1392185822'),(16799,NULL,NULL,NULL,8,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 07:01:02','2021-05-17 06:16:41',NULL,NULL,'56468b82-3094-4acd-87a7-2d76cde499f1'),(16800,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 07:01:02','2021-05-17 06:16:41',NULL,NULL,'cee8896c-b96f-4ab1-be92-5438d3fda031'),(16801,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 07:01:02','2021-05-17 06:16:42',NULL,NULL,'d9612a4e-2348-4cc8-b0ac-722ef344e464'),(16802,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 07:01:02','2021-05-17 06:16:42',NULL,NULL,'fb40c810-7a75-487c-a298-9d8295138927'),(16803,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 07:01:02','2021-05-17 06:16:42',NULL,NULL,'dd413d14-2a95-46c0-809c-b402d52ebaac'),(16804,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 07:01:02','2021-05-17 06:16:42',NULL,NULL,'b99eb0b8-e3d5-4d9d-baa7-ad38e0521eae'),(16805,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 07:01:02','2021-05-17 06:16:42',NULL,NULL,'b4444a26-f070-4bcf-8b48-db3434286036'),(16806,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 07:01:02','2021-05-17 06:16:42',NULL,NULL,'1e90458b-0e5c-4032-bcc2-cadd9beaceaa'),(16807,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 07:01:02','2021-05-17 06:16:42',NULL,NULL,'9407a966-81f0-4435-9fb2-03159a1a755f'),(16808,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 07:01:02','2021-05-17 06:16:42',NULL,NULL,'ce0147d3-fc54-457f-8751-d316bac00afc'),(16810,16571,NULL,11318,6,'craft\\elements\\Entry',1,0,'2021-05-17 23:37:52','2021-05-17 23:37:52',NULL,NULL,'29b027f4-be2c-44c4-b945-328d3baea990'),(16811,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 23:37:52','2021-05-17 06:16:41',NULL,NULL,'156b404a-c7b2-446b-950a-ebb2f96735db'),(16812,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 23:37:53','2021-05-17 06:16:41',NULL,NULL,'22c879ca-4429-4e3e-b92b-687bd2f04897'),(16813,NULL,NULL,NULL,8,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 23:37:53','2021-05-17 06:16:41',NULL,NULL,'bd2a28b8-095b-4341-97bc-aea4846c531c'),(16814,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 23:37:53','2021-05-17 06:16:41',NULL,NULL,'a7cfebef-7009-44ad-9ca2-53cf4065da2e'),(16815,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 23:37:53','2021-05-17 06:16:42',NULL,NULL,'8639faee-986b-4c4d-82c6-4dccf8e0f397'),(16816,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 23:37:53','2021-05-17 06:16:42',NULL,NULL,'8f180ed5-1a55-4d17-b2e9-eae2f091c7f4'),(16817,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 23:37:53','2021-05-17 06:16:42',NULL,NULL,'0e356c58-018f-4118-a67f-f8b5671df5f8'),(16818,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 23:37:53','2021-05-17 06:16:42',NULL,NULL,'fd5c893e-355d-4ed3-a732-35ea9eb831ab'),(16819,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 23:37:53','2021-05-17 06:16:42',NULL,NULL,'f5c6002f-2a06-4c7e-ab10-e15e0183f6ac'),(16820,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 23:37:53','2021-05-17 06:16:42',NULL,NULL,'73369da1-326a-42b1-b84c-25c19e335472'),(16821,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 23:37:53','2021-05-17 06:16:42',NULL,NULL,'0b67eb90-afe5-4f75-a536-7cd02ffeff20'),(16822,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 23:37:53','2021-05-17 06:16:42',NULL,NULL,'954a0903-913a-4435-b9f3-4859b89e4a4b'),(16824,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-17 23:39:58','2021-06-09 23:22:20',NULL,NULL,'9ec0d5e5-4785-4e21-ac66-88abb1bb96ef'),(16826,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-17 23:40:57','2021-06-09 23:22:17',NULL,NULL,'075c4d89-199a-478a-bb7b-5a1a5f274083'),(16828,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2021-05-17 23:41:01','2022-08-12 03:47:29',NULL,NULL,'655428f4-da8b-439b-ac1f-d5203157102a'),(16830,16828,NULL,11319,6,'craft\\elements\\Entry',1,0,'2021-05-17 23:41:01','2021-05-17 23:41:01',NULL,NULL,'9a7ad1bb-35a8-4be5-8492-57bd3c13731c'),(16831,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 23:41:01','2021-05-17 23:40:59',NULL,NULL,'fdfe1239-fe99-468e-ac9c-357a9a67b05c'),(16832,16828,NULL,11320,6,'craft\\elements\\Entry',1,0,'2021-05-17 23:43:09','2021-05-17 23:43:09',NULL,NULL,'62676c6c-221e-43fa-8f68-bb0b05c779b1'),(16833,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 23:43:09','2021-05-17 23:40:59',NULL,NULL,'5a622c35-e32d-44ea-8b58-5541aaee6941'),(16834,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-05-17 23:43:31','2021-05-17 23:43:31',NULL,NULL,'d174b71d-aaa8-498e-a1ac-4fcb277ccecf'),(16836,16828,NULL,11321,6,'craft\\elements\\Entry',1,0,'2021-05-17 23:43:51','2021-05-17 23:43:51',NULL,NULL,'b4beac5c-906b-496a-ad77-3ee71f560225'),(16837,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 23:43:51','2021-05-17 23:40:59',NULL,NULL,'951878b1-aa5c-44c6-b21d-aa7c8a11635d'),(16838,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-17 23:44:29','2021-06-09 23:22:18',NULL,NULL,'dade1930-55e6-4bc9-9e44-f73ecefc1412'),(16839,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-17 23:44:30','2021-06-09 23:22:19',NULL,NULL,'be9fe83a-3461-435a-98c7-c98c25804da5'),(16840,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-17 23:44:30','2021-06-09 23:22:19',NULL,NULL,'a09569d5-e9b0-4c40-a627-3290614bb629'),(16841,16828,NULL,11322,6,'craft\\elements\\Entry',1,0,'2021-05-17 23:46:42','2021-05-17 23:46:42',NULL,NULL,'8d0f9e00-b171-471f-b65f-6a5f171b8bc6'),(16842,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 23:46:42','2021-05-17 23:46:42',NULL,NULL,'e3804389-b977-4056-ad67-e4aa3e4cd272'),(16844,16828,NULL,11323,6,'craft\\elements\\Entry',1,0,'2021-05-17 23:48:09','2021-05-17 23:48:09',NULL,NULL,'d70967ba-c597-43b2-a1dc-0ad867bbcad6'),(16845,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 23:48:10','2021-05-17 23:48:09',NULL,NULL,'414f412a-cc60-4b31-af4c-b5dd0f642f3c'),(16846,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 23:48:10','2021-05-17 23:48:09',NULL,NULL,'4f56205e-0aaa-447b-83c0-5146da6d39fe'),(16848,16828,NULL,11324,6,'craft\\elements\\Entry',1,0,'2021-05-17 23:51:22','2021-05-17 23:51:22',NULL,NULL,'41172e7f-d37d-48ee-b9b2-b25e389da359'),(16849,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 23:51:22','2021-05-17 23:51:22',NULL,NULL,'5b14bd6d-c063-45b1-9d8b-030f41cf1cf9'),(16850,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 23:51:22','2021-05-17 23:51:22',NULL,NULL,'632b7eb1-0a37-49ea-b81f-6ca6178271dc'),(16852,16828,NULL,11325,6,'craft\\elements\\Entry',1,0,'2021-05-17 23:54:40','2021-05-17 23:54:40',NULL,NULL,'5848136f-d44b-4126-9d8d-0ee7fccbeb4b'),(16853,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 23:54:40','2021-05-17 23:51:22',NULL,NULL,'0b21173c-c616-4c6d-ae01-f12a7520216f'),(16854,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-05-17 23:54:40','2021-05-17 23:51:22',NULL,NULL,'c1be1a49-daf9-4fad-b75d-3d31bf14f1ea'),(16856,16828,NULL,11326,6,'craft\\elements\\Entry',1,0,'2021-05-18 00:01:20','2021-05-18 00:01:20',NULL,NULL,'e9fa7687-db74-4fe0-a587-e402ecb68964'),(16857,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-18 00:01:20','2021-05-17 23:51:22',NULL,NULL,'ed0fb273-47c6-4243-8bf6-57a2477991af'),(16858,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-05-18 00:01:20','2021-05-17 23:51:22',NULL,NULL,'e05c30af-af61-4c18-9919-6174ed91f654'),(16861,16828,NULL,11327,6,'craft\\elements\\Entry',1,0,'2021-05-18 00:07:48','2021-05-18 00:07:48',NULL,NULL,'7770af53-3fa8-4cad-81ac-e6f9fa926202'),(16862,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-05-18 00:07:48','2021-05-17 23:51:22',NULL,NULL,'3a8dfc8e-ab75-4853-8dac-3d74024245c1'),(16863,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-05-18 00:07:48','2021-05-17 23:51:22',NULL,NULL,'042cd1f8-803e-4a34-9a22-ba00cbd4b5a3'),(16866,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:07','2021-05-18 00:31:07',NULL,NULL,'393dd0c0-3ebd-4dcf-937f-4e28dcdb53f1'),(16867,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:08','2021-05-18 00:31:08',NULL,NULL,'64c6d388-4dd6-4a33-bcac-327c6fcd863d'),(16868,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:08','2021-05-18 00:31:08',NULL,NULL,'ccc92f6f-7c00-4851-8c4d-b6c66440615d'),(16869,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:08','2021-05-18 00:31:08',NULL,NULL,'e58be70b-2325-4c3d-84df-cc88581ac2b3'),(16870,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:08','2021-05-18 00:31:08',NULL,NULL,'5c2e9837-7a85-4412-a7d7-2fcd0c5955ff'),(16871,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:08','2021-05-18 00:31:08',NULL,NULL,'be4df3e2-ed47-4864-bc59-faa3f5a46107'),(16872,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:08','2021-05-18 00:31:08',NULL,NULL,'2f842700-0349-45c0-a9d2-b5b7370241ff'),(16875,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:08','2021-05-18 00:31:08',NULL,NULL,'57b4aba0-e97d-4505-8ff6-248b09610016'),(16876,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:08','2021-05-18 00:31:08',NULL,NULL,'480cf810-13ce-4c44-9591-ada556b96ca5'),(16877,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:08','2021-05-18 00:31:08',NULL,NULL,'f30037b2-6375-4b85-b41d-c10cf0ecafed'),(16880,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:09','2021-05-18 00:31:09',NULL,NULL,'bebabc47-b849-45a6-96cf-d19718ed7ab6'),(16881,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:09','2021-05-18 00:31:09',NULL,NULL,'c445c922-8f24-42cf-bd2b-a7716cf88676'),(16882,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:09','2021-05-18 00:31:09',NULL,NULL,'547c036e-2264-4c73-a930-bbb7551e35a1'),(16883,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:09','2021-05-18 00:31:09',NULL,NULL,'1937ae35-4dd4-4e99-943c-60fd46b82398'),(16886,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:09','2021-05-18 00:31:09',NULL,NULL,'b52a8d15-7358-442e-ad19-2940922a1c68'),(16887,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:09','2021-05-18 00:31:09',NULL,NULL,'c5a2b5b8-b967-42b5-9952-6ea6bfbf7306'),(16888,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:09','2021-05-18 00:31:09',NULL,NULL,'0270161d-9807-4bc9-8979-f685290ca559'),(16889,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:09','2021-05-18 00:31:09',NULL,NULL,'0da8a512-444b-413e-a088-7a8dc4d46379'),(16892,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:09','2021-05-18 00:31:09',NULL,NULL,'9e78b626-99f2-4070-9f0e-8822d8d56796'),(16893,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:09','2021-05-18 00:31:09',NULL,NULL,'25e1cd73-cb21-478d-95b2-0acf7360f788'),(16896,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:10','2021-05-18 00:31:10',NULL,NULL,'86bf48bc-b933-4e40-811b-febf2038a981'),(16897,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:10','2021-05-18 00:31:10',NULL,NULL,'c1a942d9-a41f-42f8-93e5-8a6ec52ddcf9'),(16900,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:10','2021-05-18 00:31:10',NULL,NULL,'b7d3477a-4ff7-4147-9e91-63be56a26298'),(16901,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:10','2021-05-18 00:31:10',NULL,NULL,'24aea421-c1d8-4aac-a2f0-7ba40464c795'),(16902,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:10','2021-05-18 00:31:10',NULL,NULL,'bacc8b33-dbb2-456e-a130-dce744bf6013'),(16903,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:10','2021-05-18 00:31:10',NULL,NULL,'ab563f98-391e-46fd-a5a2-138b2ed8047e'),(16904,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:10','2021-05-18 00:31:10',NULL,NULL,'53d5b747-4a75-4ac9-92b4-6529b23a47c1'),(16907,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:10','2021-05-18 00:31:10',NULL,NULL,'6da9f44b-eb08-4e4d-a834-95c245799c45'),(16908,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:10','2021-05-18 00:31:10',NULL,NULL,'2422d7cb-2e1d-4a14-b9e6-e9823c516f86'),(16911,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:11','2021-05-18 00:31:11',NULL,NULL,'d0f47e5e-5b0b-4a86-8984-27ff3ecd88ff'),(16912,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:11','2021-05-18 00:31:11',NULL,NULL,'81bfbfe8-fddc-4e06-a85b-7ab8a2c3b682'),(16915,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:11','2021-05-18 00:31:11',NULL,NULL,'46588dca-3d19-4dc0-b4da-b2a140e8f7c1'),(16918,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:11','2021-05-18 00:31:11',NULL,NULL,'d99e0aae-7c06-4816-932e-648b24aad8b6'),(16919,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:11','2021-05-18 00:31:11',NULL,NULL,'11706f7e-cffb-4a31-8b1b-9849d2aac2a3'),(16920,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:11','2021-05-18 00:31:11',NULL,NULL,'f9c3e5dd-3a54-44e9-9a71-a44b09fff3bc'),(16923,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:11','2021-05-18 00:31:11',NULL,NULL,'d6f20ee2-4f7e-4c41-9352-9ae2993c0d2e'),(16926,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:12','2021-05-18 00:31:12',NULL,NULL,'f7542396-5a97-4d6c-b4eb-be1513f24b3e'),(16927,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:12','2021-05-18 00:31:12',NULL,NULL,'8f7be16a-e762-4e67-9d8d-ad37d3711aaa'),(16930,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:12','2021-05-18 00:31:12',NULL,NULL,'32fdc355-eb81-47c6-a4cd-8661a184563f'),(16931,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:12','2021-05-18 00:31:12',NULL,NULL,'3284e480-8941-4ce8-b494-713889136931'),(16932,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:12','2021-05-18 00:31:12',NULL,NULL,'64e0f094-6631-4303-9d4d-7f35c912a011'),(16933,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:12','2021-05-18 00:31:12',NULL,NULL,'bd589b55-95e2-4cc5-b515-7974da7b2d2c'),(16936,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:12','2021-05-18 00:31:12',NULL,NULL,'b227e248-0042-4874-9be2-a89e73f614d1'),(16937,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:12','2021-05-18 00:31:12',NULL,NULL,'68d44d6b-0a89-48dc-874b-a7ed780a631c'),(16938,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:13','2021-05-18 00:31:13',NULL,NULL,'aa0fcc21-9a7d-4002-adc1-e91c67d19f10'),(16939,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:13','2021-05-18 00:31:13',NULL,NULL,'d498c03b-d23e-45a3-bd60-4736c303c34f'),(16942,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:13','2021-05-18 00:31:13',NULL,NULL,'adcc1867-70c3-4e98-afd8-d887782e2094'),(16947,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:13','2021-05-18 00:31:13',NULL,NULL,'5803fd4d-14d2-406b-9a56-25886d30fa2c'),(16950,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:14','2021-05-18 00:31:14',NULL,NULL,'ec7fd035-43e4-4ddc-b4cd-4ad1a830705d'),(16953,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:14','2021-05-18 00:31:14',NULL,NULL,'4796e32c-0dbb-4e81-9751-e7c4a5109c63'),(16954,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:14','2021-05-18 00:31:14',NULL,NULL,'f5cac71a-f314-41db-a040-8f0521a8c1ce'),(16955,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:14','2021-05-18 00:31:14',NULL,NULL,'847fe52f-80d6-43c3-bc38-615fe2727742'),(16956,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:14','2021-05-18 00:31:14',NULL,NULL,'b1b742d0-be63-4301-a898-6552767dec81'),(16959,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:14','2021-05-18 00:31:14',NULL,NULL,'a1e8c10e-4786-4d9d-995d-de826924ae30'),(16960,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:14','2021-05-18 00:31:14',NULL,NULL,'00e40eb2-0324-4332-a63b-bd3f5ff21996'),(16963,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:15','2021-05-18 00:31:15',NULL,NULL,'97535a58-e923-4875-89b3-502dd39f619c'),(16964,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:15','2021-05-18 00:31:15',NULL,NULL,'f36ddc2f-2192-4f4f-ba42-2d6b1f776311'),(16965,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:15','2021-05-18 00:31:15',NULL,NULL,'776006fa-9bdf-4e54-8b98-88b5a827df6f'),(16966,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:15','2021-05-18 00:31:15',NULL,NULL,'0f79f1b5-b0df-40cd-a1ba-b740d7dde73d'),(16969,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:15','2021-05-18 00:31:15',NULL,NULL,'5e44ec74-1d50-46af-9d24-62e367e7f4f2'),(16970,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:15','2021-05-18 00:31:15',NULL,NULL,'a5f4a09f-c185-4c49-bd40-30f1b2a479c4'),(16971,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:15','2021-05-18 00:31:15',NULL,NULL,'b6a26624-52bd-4c73-8327-cb3ede9f33b0'),(16972,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:15','2021-05-18 00:31:15',NULL,NULL,'092af74c-0030-458d-b041-a00972623a74'),(16973,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:15','2021-05-18 00:31:15',NULL,NULL,'c7229c90-a7ec-453e-a35d-16de4050df76'),(16974,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:15','2021-05-18 00:31:15',NULL,NULL,'f0687bbe-774f-40ad-917b-7573dbd44554'),(16977,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:15','2021-05-18 00:31:15',NULL,NULL,'5e2ef03e-693c-4d2a-b0d7-6dd6ca3da663'),(17008,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 00:31:18','2021-05-18 00:31:18',NULL,NULL,'68c6b964-379e-4e96-b094-12eee157d609'),(17045,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 00:59:39','2021-07-16 03:54:06',NULL,NULL,'0b89a909-9592-4e7b-80aa-351c22b18ff2'),(17046,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 00:59:42','2021-06-09 23:14:37',NULL,NULL,'6cd1ce61-10c9-4131-ade8-3f97ca75082e'),(17047,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 00:59:46','2021-06-09 23:24:54',NULL,NULL,'d03e282d-43e8-49cd-adbe-c12cef88179a'),(17048,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 00:59:49','2021-06-09 23:26:23',NULL,NULL,'23c80b6e-6613-487a-a2e5-4bbe45a9c09f'),(17049,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 00:59:52','2021-06-09 23:26:21',NULL,NULL,'d7a73e4a-c67a-4990-a5d3-0b8ae98c28d6'),(17050,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 00:59:56','2021-06-09 23:18:58',NULL,NULL,'c7069c29-cb18-4af4-bd86-b817ad18db95'),(17051,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 00:59:59','2021-06-09 23:17:41',NULL,NULL,'fd7916b8-aac8-4621-8ad0-90a5dfbefb10'),(17052,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:02','2021-06-21 04:38:09',NULL,NULL,'68fbe9cc-bb42-491b-934d-bfd91e796f86'),(17053,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:05','2021-06-21 04:38:07',NULL,NULL,'67ba3bb0-cafb-4eb8-afa0-81ed65f01757'),(17054,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:07','2021-06-21 04:39:37',NULL,NULL,'7a91c4c3-b9c5-4dd5-bfc7-dc4b3c43b3d1'),(17055,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:11','2021-06-09 23:18:30',NULL,NULL,'8ce2095f-0954-4fbb-ae68-c6a08fd9c1ef'),(17057,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:12','2021-06-09 23:14:04',NULL,NULL,'96e3a054-7ff3-4f98-9136-7c4231fc5c1a'),(17058,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:13','2021-06-09 23:14:14',NULL,NULL,'9538e9f1-0042-4459-9ca9-0cd9c8434bb6'),(17059,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:13','2021-06-09 23:14:04',NULL,NULL,'cf45c836-4465-4a93-8188-16917c0a977a'),(17060,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:14','2021-06-21 04:39:40',NULL,NULL,'effe7304-bd9d-443a-87f3-a1b891645d78'),(17061,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:15','2021-06-09 23:14:05',NULL,NULL,'2a94c474-17ef-4f96-bdbc-ec28b935b6d2'),(17062,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:16','2021-06-21 04:38:54',NULL,NULL,'43fa94cb-5064-4f70-8bdd-b1156eaeb965'),(17063,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:17','2021-06-09 23:14:07',NULL,NULL,'7c27d5ea-22b6-4d22-86b9-ad105f69f275'),(17064,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:17','2021-06-09 23:14:03',NULL,NULL,'250daa2c-5f1c-4b00-8730-61c922901465'),(17065,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:18','2021-06-09 23:14:07',NULL,NULL,'9db6da5b-480b-413a-b5b9-3a9da8370813'),(17066,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:19','2021-06-09 23:14:13',NULL,NULL,'c3a5b399-1113-4fc4-b0c3-0643319f50e1'),(17067,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:20','2021-06-09 23:14:13',NULL,NULL,'7147876b-c4ff-4a15-aad1-b2063db08449'),(17068,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:21','2021-06-09 23:14:14',NULL,NULL,'cef58318-f6a4-4b86-a24c-368ea1183e87'),(17069,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:22','2021-06-09 23:25:49',NULL,NULL,'e7c74a5b-c2d6-4a52-bee2-6b3521cf90cb'),(17070,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:25','2021-06-09 23:25:50',NULL,NULL,'b021aa33-02d1-4f60-8601-b9f18c4d0f45'),(17071,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:26','2021-06-09 23:25:43',NULL,NULL,'037401db-0e3c-401d-8f99-14b2b1fa2c83'),(17072,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:27','2021-06-09 23:25:33',NULL,NULL,'8ffcb008-1479-4c69-911d-315a056bcbd8'),(17073,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:28','2021-06-09 23:19:23',NULL,NULL,'e25c8ce0-6b68-4bb9-8922-597444d53afa'),(17074,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:38','2021-06-09 23:18:21',NULL,NULL,'f3ec3b15-beba-4839-9482-dcfbde17eb0d'),(17075,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:40','2021-06-09 23:18:42',NULL,NULL,'b01c1475-ddb0-4b65-a055-fbce561dba89'),(17076,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:42','2021-06-09 23:19:19',NULL,NULL,'e40d3673-2349-4fd7-b2dd-7ac298cf2074'),(17077,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:44','2021-06-09 23:19:20',NULL,NULL,'9a8b75b8-5ce0-405d-9e7d-18d9642e0354'),(17078,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:46','2021-06-09 23:19:21',NULL,NULL,'de6ae288-2af9-48c3-8941-5b0f1eb6f08c'),(17079,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:48','2021-06-21 04:39:32',NULL,NULL,'b2a416c8-805e-4680-a9d5-f9259a0955f8'),(17080,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:49','2021-06-09 23:25:00',NULL,NULL,'7b652e00-1ed1-4ed1-bde1-b06f5bebd38c'),(17081,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:50','2021-06-09 23:25:03',NULL,NULL,'a2b19f6e-d27d-4755-82c0-1b68835ac15a'),(17082,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:51','2021-06-09 23:25:04',NULL,NULL,'d1bd59d9-4e34-4908-908e-e286bc9fd80e'),(17083,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:51','2021-06-09 23:17:11',NULL,NULL,'0803d079-b426-4b71-ba39-2f0621e4c4c1'),(17084,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:53','2021-06-09 23:17:31',NULL,NULL,'a4fa6ab7-ee64-4f0f-9f2f-a77dd69e7078'),(17085,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:55','2021-06-09 23:17:29',NULL,NULL,'ae6068af-96c2-41db-8d95-b9146a819cb4'),(17086,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:00:58','2021-06-09 23:25:39',NULL,NULL,'cb3ac94e-7bf3-4089-a604-d219a5d23e02'),(17087,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:01:02','2021-06-09 23:25:41',NULL,NULL,'b3362019-3800-49d2-b231-d2303decc92f'),(17088,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:01:06','2021-06-09 23:25:35',NULL,NULL,'c3d5e169-5a19-4d33-9637-86550134443d'),(17089,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:01:10','2021-06-09 23:17:16',NULL,NULL,'8abffe32-6de8-4f15-a9ff-da11b661b529'),(17090,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:01:12','2021-06-09 23:25:07',NULL,NULL,'38918f76-eee6-42d8-b38e-f1d2a2490ce7'),(17092,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:01:33','2021-06-09 23:19:34',NULL,NULL,'a7457108-8e2b-4174-bfb0-3eb2098add01'),(17093,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:01:35','2021-06-09 23:19:35',NULL,NULL,'407ddaf9-ff86-424c-b1e0-db00c16e2706'),(17094,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:01:37','2021-06-09 23:19:36',NULL,NULL,'46ddc9ae-5037-4349-8364-acfda08585b4'),(17095,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:01:39','2021-06-09 23:19:28',NULL,NULL,'1d2a4dc9-47ae-4a25-b65b-3e2c4e553183'),(17096,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:01:41','2021-06-09 23:19:18',NULL,NULL,'be65d756-048a-4ac4-babc-f663fa04c2e2'),(17097,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:01:43','2021-06-09 23:19:00',NULL,NULL,'56f2c3ad-91b1-4895-94a6-73abd4f9ca93'),(17098,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:01:45','2021-06-09 23:19:17',NULL,NULL,'89541207-15d6-4c8e-b53a-ea93e5750f60'),(17099,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:01:47','2021-06-09 23:18:45',NULL,NULL,'3ac9ae55-f03c-4d94-ac5d-e022f3ba112a'),(17100,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:01:50','2021-06-09 23:18:46',NULL,NULL,'cd8da7d1-99f5-4e1b-bc71-5c1a00bd8a34'),(17101,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:01:57','2021-06-09 23:18:48',NULL,NULL,'288ff6fa-088c-4aa4-8e03-a7c700b62d63'),(17102,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:02:16','2021-06-09 23:18:51',NULL,NULL,'cc0ebf8d-5890-4eb6-b7f9-e03d2378102a'),(17103,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:02:25','2021-06-09 23:18:53',NULL,NULL,'ab76c99b-dde2-4804-987e-c27089bf7e4b'),(17104,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:02:40','2021-06-09 23:18:56',NULL,NULL,'aa5ea8bd-0eed-4ac4-aa0d-913f7b7b092a'),(17105,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:02:44','2021-06-21 04:38:32',NULL,NULL,'e8e61808-64ee-4cb1-b90f-f6305241d1d6'),(17106,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:02:48','2021-06-09 23:18:20',NULL,NULL,'154993c8-473d-41c5-acba-7606df9efd26'),(17107,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:02:50','2021-06-09 23:18:09',NULL,NULL,'8a5c2b06-78ea-4634-bd3b-2017d0f45e91'),(17108,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:02:51','2021-06-09 23:20:25',NULL,NULL,'27640ce7-5b28-419e-be2b-02d08dd8ee38'),(17109,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:02:53','2021-06-09 23:18:19',NULL,NULL,'c7d7b36e-d9f8-4ea0-816a-c75f8222bdd4'),(17110,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:02:55','2021-06-09 23:18:01',NULL,NULL,'20457727-ea0e-4467-9c0f-df606a51f5e8'),(17111,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:02:56','2021-06-09 23:18:01',NULL,NULL,'b162a283-a657-4ac9-bff1-db084462bf9b'),(17112,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:02:57','2021-06-09 23:20:34',NULL,NULL,'29032577-4f7e-4a74-9ac1-847552c9dfb6'),(17113,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:00','2021-06-09 23:18:03',NULL,NULL,'e8c0cba7-a856-4611-b2b3-57c671a268f7'),(17114,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:02','2021-06-09 23:20:26',NULL,NULL,'ae231033-36b5-4727-a630-50ca00a630e8'),(17115,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:08','2021-06-09 23:21:31',NULL,NULL,'76a6a6ea-fad8-463a-9e4c-7b7720d85569'),(17116,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:09','2021-06-09 23:23:25',NULL,NULL,'d8547b0a-4654-4a34-b5d3-3f42beda059d'),(17117,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:11','2021-06-09 23:23:30',NULL,NULL,'99fdc63b-7531-498c-a68f-dba57c492155'),(17118,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:13','2021-06-09 23:23:34',NULL,NULL,'36beee47-0998-477d-93e4-58c01b726689'),(17119,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:15','2021-06-09 23:21:32',NULL,NULL,'54a11646-d2cb-4106-bef8-15a507ec39c4'),(17120,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:15','2021-06-09 23:23:35',NULL,NULL,'649e8ec1-81c7-4039-9510-0cbd0f83367c'),(17121,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:17','2021-06-09 23:23:35',NULL,NULL,'c5a04173-b6dd-4234-bc0c-1709131a08ef'),(17122,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:19','2021-06-09 23:23:36',NULL,NULL,'a5cb96dc-4382-44ff-9b7e-7990452663f0'),(17123,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:22','2021-06-09 23:26:19',NULL,NULL,'f32317a5-3a0f-407b-807e-d83b581a2f2a'),(17124,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:24','2021-06-09 23:21:02',NULL,NULL,'6b609486-c926-4554-a52b-02bb811e1fc5'),(17125,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:26','2021-06-09 23:16:41',NULL,NULL,'2cbd7c7c-e210-4b34-8259-ade149afc4ec'),(17126,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:29','2021-06-09 23:16:43',NULL,NULL,'8d1754ed-296f-49ca-b0d9-c83cd1d7188f'),(17127,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:31','2021-06-09 23:21:26',NULL,NULL,'6192a598-b4b2-49cd-b869-d2cfb44953a1'),(17128,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:31','2021-06-09 23:16:43',NULL,NULL,'6f3feec0-b4a0-4ca6-809c-a95d3ab7ce48'),(17129,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:33','2021-06-09 23:16:44',NULL,NULL,'5aa0556c-dda7-47d2-a2e7-bbb257b56e11'),(17130,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:36','2021-06-09 23:16:45',NULL,NULL,'6addbe44-7214-45ee-a2bb-2074da75731a'),(17131,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:37','2021-06-09 23:21:03',NULL,NULL,'04872576-b188-4ccf-a16c-0cba7f4c17c2'),(17132,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:39','2021-06-09 23:16:46',NULL,NULL,'359cd919-d4c5-40a9-ba89-b75c9393ab56'),(17133,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:41','2021-06-09 23:18:24',NULL,NULL,'1580fcdf-fb86-4c92-8a7d-8a369b7eaa79'),(17134,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:42','2021-06-09 23:18:24',NULL,NULL,'8937cbee-071f-42a3-96f3-00ad01a3ba93'),(17135,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:42','2021-06-09 23:18:25',NULL,NULL,'93684905-9d8f-4858-984e-60fae2adbc2d'),(17136,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:42','2021-06-09 23:21:33',NULL,NULL,'b386339d-2d6e-4f9c-b702-657045015fd1'),(17137,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:43','2021-06-09 23:21:33',NULL,NULL,'83226fca-a648-4815-b982-97db51c2b44e'),(17138,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:43','2021-06-09 23:18:25',NULL,NULL,'97648d2d-63f4-4368-b258-b10cb96a9e9a'),(17139,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:44','2021-06-09 23:21:33',NULL,NULL,'bb007c6b-6ad2-4332-bf1c-2d998c021ab6'),(17140,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:44','2021-06-09 23:21:33',NULL,NULL,'cf820e31-2be3-4e06-9a39-e72bc629982f'),(17141,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:44','2021-06-09 23:16:31',NULL,NULL,'4f703125-4ba7-460d-96ab-128318dd7219'),(17142,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:45','2021-06-09 23:21:33',NULL,NULL,'0f6e838b-9b4c-4ffb-871f-4880b3ce66e0'),(17143,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:45','2021-06-09 23:21:30',NULL,NULL,'d06aa812-929c-43d7-a3f2-d8a69ac65d9b'),(17144,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:46','2021-06-09 23:18:16',NULL,NULL,'0c95a950-ad16-47cb-a0f4-cd5434429388'),(17145,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:46','2021-06-09 23:15:42',NULL,NULL,'97d24c85-ec41-4d92-8c18-2642d9dd3188'),(17146,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:48','2021-06-09 23:18:17',NULL,NULL,'36c64f28-e3b7-47e7-bacb-c0040c3d28ab'),(17147,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:49','2021-06-09 23:15:43',NULL,NULL,'75d7dd9a-2e7a-43a6-9022-f481fb4dbd11'),(17148,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:51','2021-06-09 23:17:51',NULL,NULL,'533bab27-5a7e-472a-8f2d-7bee1da0f3e1'),(17149,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:51','2021-06-09 23:18:18',NULL,NULL,'511b1f7c-4835-415a-9a82-3d5d11118d95'),(17150,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:54','2021-06-09 23:18:41',NULL,NULL,'ead7d0e6-fae2-408e-999d-271e444bea4b'),(17151,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:55','2021-06-09 23:25:58',NULL,NULL,'c4494fe3-d866-43e1-ac00-afc43e1f78c3'),(17152,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:57','2021-06-09 23:24:57',NULL,NULL,'abb3a81e-dc75-4332-9e1c-8b9881f6803d'),(17153,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:57','2021-06-09 23:24:58',NULL,NULL,'7adb0c40-87c6-463e-9002-3c5b16ab6d8e'),(17154,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:58','2021-06-09 23:24:58',NULL,NULL,'4ee366b8-18fe-4d86-b58a-b5b83743f8de'),(17155,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:59','2021-06-09 23:24:59',NULL,NULL,'30bda748-1068-46c9-bc53-4a8b51e321e6'),(17156,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:03:59','2021-06-09 23:24:59',NULL,NULL,'754dbc72-c484-4df4-9dd6-c92668c3e555'),(17157,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:00','2021-06-03 05:09:23',NULL,NULL,'6eed989d-5179-41d9-9e4d-8c9907300893'),(17158,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:00','2021-06-09 23:24:56',NULL,NULL,'9d3c6871-0197-40ae-a86c-56719f85b3f2'),(17159,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:01','2021-06-09 23:23:15',NULL,NULL,'547ca26c-50be-4fa7-a60c-b4464ebd692a'),(17160,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:01','2021-06-09 23:23:15',NULL,NULL,'8cbb1a9b-cb7e-4213-97d9-d36e192daed1'),(17161,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:02','2021-06-09 23:23:16',NULL,NULL,'e2f85a3f-5e11-42d3-9074-b6810d82e9fa'),(17162,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:03','2021-06-09 23:23:16',NULL,NULL,'5f69cfb0-b29f-4323-95a8-bc9c9d7500d0'),(17163,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:04','2021-06-09 23:23:17',NULL,NULL,'cc003b33-db34-4674-a13d-cdf52feb787b'),(17164,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:05','2021-06-09 23:23:17',NULL,NULL,'809434fa-78fc-4bf0-ad8f-6d13e500c37c'),(17165,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:06','2021-06-09 23:24:24',NULL,NULL,'0f4c745b-ebc5-41ed-8813-26d10841342c'),(17166,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:07','2021-07-16 03:54:00',NULL,NULL,'7d4a032c-da11-4ecb-b5af-9b0dae9c3c96'),(17167,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:10','2021-06-09 23:25:42',NULL,NULL,'d2da367b-bf10-48dd-aa85-2be9eb09c86e'),(17168,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:11','2021-06-09 23:17:17',NULL,NULL,'1d9e97a5-88ec-4005-ad93-4b58686ba4e5'),(17169,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:14','2021-06-09 23:23:52',NULL,NULL,'4e2d34d8-3f85-47a0-b346-32072f4d3d7a'),(17170,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:15','2021-06-09 23:23:49',NULL,NULL,'aae22c3c-5846-4d4d-b70b-9aac9d4ed805'),(17171,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:16','2021-06-09 23:25:18',NULL,NULL,'c9b03e40-a1bb-49cd-8461-b3065cd90da4'),(17172,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:18','2021-06-09 23:25:23',NULL,NULL,'1fd1c623-fa37-476e-9720-163c91c610d8'),(17173,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:20','2021-06-09 23:25:05',NULL,NULL,'142d9bf5-3ef5-43b0-a3cb-db00d269dbf2'),(17174,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:22','2021-06-09 23:24:56',NULL,NULL,'c10e395c-ef6d-48b4-8d7b-446bd75b5bae'),(17175,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:23','2021-06-09 23:23:21',NULL,NULL,'491b6f44-9bd3-49cd-a773-0b03c71820a2'),(17176,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:24','2021-06-09 23:25:38',NULL,NULL,'8c909bd0-5193-4133-bed0-30db44b0be03'),(17177,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:25','2021-06-09 23:25:38',NULL,NULL,'736c5e6d-665b-4ecf-a676-f0b890a35a82'),(17178,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:26','2021-06-09 23:18:23',NULL,NULL,'d1198f52-28ae-40e8-8850-993561b5a066'),(17179,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:27','2021-06-09 23:25:31',NULL,NULL,'cc06f752-e53f-4383-bd8f-fd51eb3f3bec'),(17180,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:29','2021-06-09 23:25:51',NULL,NULL,'f943c1d6-4fa2-4d7a-9fcd-ffe171c1509d'),(17181,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:30','2021-06-09 23:25:34',NULL,NULL,'3d4b1d9a-f837-4163-997a-e959e59e0039'),(17182,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:32','2021-06-21 04:38:30',NULL,NULL,'e66bdc4f-d0c4-4124-bdd5-7c94d9e7bb6e'),(17183,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:35','2021-06-09 23:21:10',NULL,NULL,'f67c97c3-56b6-4fb6-b0f8-be0793d6df51'),(17184,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:36','2021-06-09 23:21:12',NULL,NULL,'187b23d0-0798-459d-a8c4-607e64234eae'),(17185,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:37','2021-06-09 23:21:12',NULL,NULL,'02f662ad-b370-4a78-af51-560c32a51ccd'),(17186,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:38','2021-06-09 23:21:13',NULL,NULL,'3bbe2a71-a6cd-4277-8707-a1125b9ad5ac'),(17187,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:40','2021-06-09 23:21:13',NULL,NULL,'25314cfe-9520-4699-9a81-55c15cbb51e0'),(17188,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:41','2021-06-09 23:21:14',NULL,NULL,'79ba04a7-9e4f-4509-af32-d61d6897d2b2'),(17189,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:42','2021-06-09 23:21:17',NULL,NULL,'87cfc3fd-f7ba-457c-88ec-4ebd0d3379d0'),(17190,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:45','2021-06-09 23:21:21',NULL,NULL,'2b661add-095c-4283-a661-55dca2c7bb8d'),(17191,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:04:48','2021-06-09 23:23:18',NULL,NULL,'8b6d553b-ed88-4207-a1ec-3f19f6208e6d'),(17192,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:05:19','2021-06-09 23:21:43',NULL,NULL,'5950b0ba-2664-4b5a-92b1-bc356934c19f'),(17193,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:05:21','2021-06-09 23:25:44',NULL,NULL,'f2448984-ecad-4461-a7a4-ff0a1bab53ee'),(17194,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:05:22','2021-06-09 23:25:45',NULL,NULL,'990e2784-9459-4f64-a36d-8b63dff8ec03'),(17195,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:05:23','2021-06-09 23:25:46',NULL,NULL,'ac888dae-5fea-4fe9-b5ed-2315d39a7090'),(17196,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:05:24','2021-06-09 23:25:47',NULL,NULL,'ac249d07-0c9e-49d1-b226-77c106dc2e74'),(17197,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:05:25','2021-06-09 23:25:48',NULL,NULL,'91359196-7e15-4e56-8bae-0cf9ecdba6a8'),(17198,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:05:25','2021-06-09 23:17:31',NULL,NULL,'11c2c6ad-eb23-4bab-a75d-903a508e4c95'),(17199,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:05:26','2021-06-09 23:25:43',NULL,NULL,'c246bddc-af17-4bf1-88c4-8d5cf2744670'),(17200,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:05:27','2021-06-09 23:26:23',NULL,NULL,'93fc3efa-5d4f-4e3d-bb6e-33ded31308b9'),(17201,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:05:28','2021-06-09 23:26:25',NULL,NULL,'315cb429-8a2b-43f3-89cd-45ea910c8561'),(17202,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:05:29','2021-06-03 05:08:19',NULL,NULL,'f6f2212e-a29d-465e-a3a8-a4582b28a64c'),(17203,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:05:29','2021-06-09 23:25:52',NULL,NULL,'871767d3-7e24-4e44-8d29-a2eef186687c'),(17204,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:05:30','2021-06-09 23:25:13',NULL,NULL,'50bd857f-21d0-4b79-b156-b8a9cfec33e1'),(17205,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:05:31','2021-06-09 23:24:25',NULL,NULL,'cc05a73d-ccac-4e56-98e3-40b9b1422c9e'),(17206,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:05:32','2021-06-09 23:25:13',NULL,NULL,'fbecf148-fecd-42e0-8d15-d517b99b2314'),(17207,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:05:33','2021-06-09 23:23:50',NULL,NULL,'edc63459-e1e2-438a-8e37-ab885a3dc364'),(17208,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:05:34','2021-06-09 23:26:00',NULL,NULL,'297d7c86-c75c-4c1c-8a10-84646f9d0a95'),(17209,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:05:36','2021-06-09 23:26:04',NULL,NULL,'03aa8a1c-d838-4ae6-9e65-e0440f4e9f4a'),(17210,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:05:38','2021-06-09 23:26:08',NULL,NULL,'5fd8c7dd-ebf5-4e4d-b385-ba1769e83063'),(17211,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:05:41','2021-06-09 23:26:11',NULL,NULL,'e62b6517-174c-4668-9314-b50b0b323e21'),(17212,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:05:43','2021-06-09 23:25:53',NULL,NULL,'b3bb6566-4bea-48bf-9de1-16f0b9053a70'),(17213,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:05:44','2021-06-09 23:26:14',NULL,NULL,'5468f800-2eba-4b0d-9809-f8a0a91f91a5'),(17215,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:05:48','2021-06-09 23:24:17',NULL,NULL,'334ca235-948d-4c8b-aaae-21a450f050ca'),(17216,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:05:50','2021-06-09 23:24:20',NULL,NULL,'5de24a78-87fc-4c45-8b30-33978b1195b7'),(17217,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:05:53','2021-06-09 23:23:57',NULL,NULL,'08267a9a-f505-4481-84e9-f005ce6d442e'),(17218,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:05:55','2021-06-09 23:23:46',NULL,NULL,'48609b59-490d-4f42-8290-d290b4cdf26d'),(17219,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:05:57','2021-06-09 23:23:31',NULL,NULL,'9b49e617-d630-4501-a283-1957bb6086ea'),(17220,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:05:59','2021-06-09 23:23:43',NULL,NULL,'73d23eaf-a7c9-41e1-bf35-b585b103aabc'),(17221,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:06:01','2021-06-21 04:39:18',NULL,NULL,'f2ebf3d4-e24f-4f13-9c41-2f016801b574'),(17222,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:06:04','2021-06-21 04:39:02',NULL,NULL,'8ac51217-d175-4fd9-aeed-c3b65155cd87'),(17223,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:06:35','2021-06-21 04:39:05',NULL,NULL,'d9a5235d-4dd9-4022-bb6a-956102024c20'),(17224,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:06:38','2021-06-21 04:39:07',NULL,NULL,'7921e777-4fb7-4611-8819-f89892a17457'),(17225,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:06:41','2021-06-21 04:39:10',NULL,NULL,'59838162-142d-4365-a7ba-2f022f112046'),(17226,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:06:45','2021-06-21 04:39:12',NULL,NULL,'c15c2592-48f1-4887-a2e4-f8026047e68d'),(17227,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:07:16','2021-06-21 04:38:55',NULL,NULL,'3768923f-7d0f-4234-97d3-bcb7afbd303f'),(17228,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:07:19','2021-06-21 04:39:15',NULL,NULL,'f40b19b4-d2d7-484a-b51a-c718b2eb5df3'),(17229,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:07:23','2021-06-21 04:39:20',NULL,NULL,'61bb7da3-d12b-4dd6-869b-2b11fc001d91'),(17230,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:07:26','2021-06-21 04:39:35',NULL,NULL,'8ec7c382-db27-4816-aea0-220ae57da840'),(17231,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:07:28','2021-06-21 04:38:57',NULL,NULL,'b9e5623e-f48d-4f8e-9b66-0531c8de7bb7'),(17232,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:07:32','2021-06-21 04:38:59',NULL,NULL,'330a94dd-13f3-4126-8540-dfcbfc423792'),(17233,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:07:35','2021-06-09 23:19:02',NULL,NULL,'396b184f-9f5f-4572-8c97-20f605776b3c'),(17234,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:07:47','2021-06-09 23:19:13',NULL,NULL,'9f72aef4-895c-4cc1-bef9-a5e4f8c432e1'),(17235,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:07:58','2021-06-09 23:19:15',NULL,NULL,'b7e2dfab-ece4-41ac-a67e-a7eafb850d2b'),(17236,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:08:12','2021-06-09 23:18:43',NULL,NULL,'5bc5dbfb-f142-4daa-b424-c3bc8c1eecf6'),(17237,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:08:20','2021-06-09 23:17:56',NULL,NULL,'05aeb863-ad2d-4386-b333-cd3947748f1d'),(17238,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:08:28','2021-06-09 23:17:20',NULL,NULL,'9aa18855-94ad-4a64-a896-01c2cecf021b'),(17239,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:08:35','2021-06-09 23:17:54',NULL,NULL,'441cb992-791b-4f9d-85a5-99243a29082b'),(17240,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:08:44','2021-06-09 23:16:53',NULL,NULL,'e5932b4d-a078-433e-9d81-ee8033bed6b3'),(17241,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:08:53','2021-06-09 23:16:54',NULL,NULL,'51f28d85-ce6c-4932-92fc-72b950e283e6'),(17242,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:09:02','2021-06-09 23:19:07',NULL,NULL,'f965dc08-7b66-4600-bebf-ff34915917c4'),(17243,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:09:23','2021-06-09 23:19:10',NULL,NULL,'e5c64b46-44ff-4167-9d7d-8900ee872503'),(17244,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:09:37','2021-06-09 23:19:25',NULL,NULL,'d2f0c352-1169-4059-922f-7d887cbcc65b'),(17245,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:09:39','2021-06-09 23:19:26',NULL,NULL,'7221016a-7578-40ee-855e-af50f58a15f0'),(17246,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:09:41','2021-06-09 23:19:26',NULL,NULL,'951e4b4d-c2c2-4a89-a33e-d7fb4a2c7b64'),(17247,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:09:44','2021-06-09 23:19:20',NULL,NULL,'4f702758-6053-4ff2-94dc-2d9064442ded'),(17248,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:09:46','2021-06-09 23:19:27',NULL,NULL,'fc409176-d91a-45b2-be58-a7d583f214da'),(17249,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:09:49','2021-06-09 23:19:29',NULL,NULL,'8dcd053e-6e7b-43cf-8aa2-967adfb8f42d'),(17250,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:09:51','2021-06-09 23:19:30',NULL,NULL,'b2bebe46-df70-47ca-aa4e-1fcf57fd3e05'),(17251,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:09:53','2021-06-09 23:19:31',NULL,NULL,'cd2d6a8b-9a44-46fe-8581-ad8c1f472d83'),(17252,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:09:56','2021-06-09 23:19:04',NULL,NULL,'0da33280-9ac8-421a-902e-99879fd457b2'),(17253,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:11:53','2021-06-09 23:14:15',NULL,NULL,'7bba70bc-9901-4cbf-adbc-28aad1089696'),(17254,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:11:55','2021-06-09 23:25:17',NULL,NULL,'189bc44b-dae8-4d9b-bf8c-ba44bd19c43b'),(17255,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:11:58','2021-06-21 04:38:34',NULL,NULL,'5ffb3f11-0141-4739-991a-bfb82706c1fd'),(17256,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:12:00','2021-06-21 04:38:15',NULL,NULL,'e8c81ff7-96e5-4884-83a2-e738aed4a043'),(17257,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:12:03','2021-06-21 04:38:49',NULL,NULL,'83a7ed14-fc0d-4cb5-abc4-10d00aab3956'),(17258,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:12:06','2021-06-09 23:15:47',NULL,NULL,'e60d47db-b25b-4177-8221-d5e1b46ef8eb'),(17259,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:12:08','2021-06-09 23:17:50',NULL,NULL,'85b2b1dc-3ce6-40d2-be00-ee2613a54cd7'),(17260,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:12:10','2021-06-21 04:38:24',NULL,NULL,'56747518-b70e-4af3-84ad-3beaf124b900'),(17261,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:12:13','2021-06-09 23:25:30',NULL,NULL,'c2d7cdf5-095e-47c7-b894-a90254f79072'),(17262,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:12:15','2021-06-09 23:25:37',NULL,NULL,'104a060c-4c8e-4dcd-a7f5-05295fc93ed2'),(17263,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:12:18','2021-06-09 23:17:08',NULL,NULL,'52e3f63f-470c-4421-a1c3-2a2be985e2bf'),(17264,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:12:21','2021-06-09 23:17:44',NULL,NULL,'f0c8bd21-c87d-43fc-b40c-6a6ff59b91fa'),(17265,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:12:24','2021-06-09 23:15:02',NULL,NULL,'9f6b9375-1df9-4778-87e8-2fabb0243bef'),(17266,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:12:47','2021-06-21 04:38:39',NULL,NULL,'499eaedf-2fd3-474f-bc2d-7122ad3e2ffc'),(17267,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:13:05','2021-06-09 23:15:21',NULL,NULL,'3dc8f22b-13c2-4efd-a686-558d46765426'),(17268,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:13:06','2021-06-09 23:15:22',NULL,NULL,'05fe9257-42c4-4695-b707-ddbd0203492b'),(17269,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:13:09','2021-06-09 23:15:23',NULL,NULL,'68a60f50-0497-442d-809e-1263a960a140'),(17270,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:13:19','2021-06-09 23:19:38',NULL,NULL,'33b693d7-57cc-42b1-a050-730f17031749'),(17271,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:13:30','2021-06-09 23:24:38',NULL,NULL,'63abfc1d-7e8d-4de4-9380-a6e48248acab'),(17272,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:13:37','2021-06-09 23:23:22',NULL,NULL,'9509b954-7a26-446b-b46e-cdf9c5acbe1c'),(17273,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:13:48','2021-06-09 23:24:40',NULL,NULL,'38ee2ca9-368f-4f24-8918-6163b535e378'),(17274,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:14:14','2021-06-09 23:24:44',NULL,NULL,'0ed9d90b-22a9-4701-bd37-f6d35c54a606'),(17275,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:14:25','2021-06-09 23:24:46',NULL,NULL,'d11e1865-636a-4c40-bb5a-19b977981637'),(17276,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:14:26','2021-06-09 23:24:47',NULL,NULL,'8102f1d8-e58d-4d1f-b2e9-76d620cd0563'),(17277,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:14:39','2021-06-09 23:15:18',NULL,NULL,'94f25995-8024-4842-8125-f69cfa21d04f'),(17278,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:14:40','2021-06-09 23:15:10',NULL,NULL,'01ccceb5-4277-4cb5-ad85-5978c1502e49'),(17279,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:14:41','2021-06-09 23:15:09',NULL,NULL,'2d8e0ee7-b957-484a-85e4-8f69ffc96774'),(17280,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:14:43','2021-06-09 23:15:04',NULL,NULL,'f1c6c470-02b5-4665-b917-9b6765f4e2ee'),(17281,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:14:53','2021-06-09 23:25:18',NULL,NULL,'5e3cdee1-8636-440d-92ea-3e0efc420a34'),(17282,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:15:03','2021-06-09 23:23:51',NULL,NULL,'6f04e656-82e7-4c6d-a316-6f514e2e77b7'),(17283,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:15:04','2021-06-09 23:15:44',NULL,NULL,'ad7dd5d8-1171-47c4-b07b-f687b381614a'),(17284,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:15:19','2021-07-16 03:54:03',NULL,NULL,'077068d0-ead3-405d-b4d4-fbc5121b6999'),(17285,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:15:29','2021-06-09 23:14:33',NULL,NULL,'0d0af705-98b7-4600-859e-849d8e6572c8'),(17286,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:15:32','2021-06-09 23:17:22',NULL,NULL,'7482ff02-cebf-409d-8516-2143f921dfb5'),(17287,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:15:33','2021-06-09 23:17:37',NULL,NULL,'54a5ce57-205b-4a99-9a50-edeb798cdc00'),(17288,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:15:35','2021-06-09 23:17:25',NULL,NULL,'d98e4c1e-942c-4bd4-be58-bc0d511ca576'),(17289,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:15:37','2021-06-09 23:17:26',NULL,NULL,'cdaedcb9-af1d-4c50-b65d-c69b153bfebb'),(17290,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:15:38','2021-06-09 23:17:26',NULL,NULL,'0b082342-03b2-433e-a174-ef993c7fdc55'),(17291,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:15:40','2021-06-09 23:17:27',NULL,NULL,'dba90723-914c-4822-9b71-575ccfd38c52'),(17292,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:15:44','2021-06-09 23:17:52',NULL,NULL,'893fb6d9-6585-4fb1-942d-b701bdab05e0'),(17293,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:15:46','2021-06-09 23:17:52',NULL,NULL,'a9f680d3-92a3-47bc-9ab2-23a9d1fbf4b0'),(17294,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:15:48','2021-06-09 23:17:53',NULL,NULL,'a2645133-726b-43f5-8e69-1b9e441ba249'),(17295,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:15:50','2021-06-09 23:17:48',NULL,NULL,'7d3739bb-eecd-47d6-aafe-aa6539e1bf87'),(17296,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:15:52','2021-06-09 23:17:38',NULL,NULL,'5e3f0474-2e7a-4850-83bf-d97301ab35fc'),(17297,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:15:54','2021-06-09 23:17:23',NULL,NULL,'7c64e518-fc73-4c08-99bf-0b62d4f59e27'),(17298,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:15:56','2021-06-09 23:17:24',NULL,NULL,'4d918ae5-0c71-4aaa-9da0-e1c3d0ca4d6d'),(17299,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:15:58','2021-06-09 23:17:24',NULL,NULL,'3c28a071-7b99-4132-b734-c61d5da0bf55'),(17300,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:15:59','2021-06-09 23:17:28',NULL,NULL,'5dfcaafc-e074-4661-9bd2-1b66620bb625'),(17301,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:16:00','2021-06-09 23:17:21',NULL,NULL,'b07349aa-abbf-4567-9ce7-81def832de26'),(17302,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:16:02','2021-06-09 23:23:41',NULL,NULL,'2a9e4c16-dd26-4bd0-b1e5-658578a403b7'),(17303,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:16:07','2021-06-09 23:24:03',NULL,NULL,'54358e2d-75e2-46aa-a288-eb4304c4aacd'),(17304,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:16:32','2021-06-09 23:24:06',NULL,NULL,'953ba159-9b6f-4941-aea6-001855ed6e38'),(17305,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:16:54','2021-06-09 23:24:09',NULL,NULL,'056d3029-1e41-4fb2-8712-1f4e87d47fe7'),(17306,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:17:20','2021-06-09 23:24:12',NULL,NULL,'edea410c-dd37-4bbe-8d30-237c1e0ef97d'),(17307,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:17:45','2021-06-09 23:24:14',NULL,NULL,'5b1909c4-5fab-4d0c-a62c-b2c595607ab8'),(17308,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:18:11','2021-06-09 23:24:00',NULL,NULL,'47604f4f-795d-4782-b8cb-d612e981ee84'),(17309,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:18:33','2021-06-09 23:25:01',NULL,NULL,'55cdff5b-781a-4809-9066-de117b23ed67'),(17310,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:18:54','2021-06-09 23:24:52',NULL,NULL,'9769cb50-7357-4ea9-8d90-f8ab6d4dc9be'),(17311,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:19:24','2021-06-09 23:24:35',NULL,NULL,'b00d2cbe-f593-4e8c-a8bf-654deefd34f5'),(17312,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:19:46','2021-06-09 23:24:50',NULL,NULL,'baa37521-acc8-4502-ac7f-d01bd11117b7'),(17313,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:20:10','2021-06-09 23:24:27',NULL,NULL,'956c0902-c6a9-4be1-b229-4c6b08977cd0'),(17314,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:20:30','2021-06-09 23:25:11',NULL,NULL,'af45e142-79d4-4739-84b5-9d06bd6ab89c'),(17315,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:20:54','2021-06-09 23:17:00',NULL,NULL,'e015e429-2e9f-4c90-b5db-fd8370c522f1'),(17316,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:21:14','2021-06-09 23:17:03',NULL,NULL,'e58389c5-bbb7-4b47-9c89-524ba586d781'),(17317,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:21:38','2021-06-09 23:16:50',NULL,NULL,'36c090a7-fc29-4511-afcf-ed2737cd8f65'),(17318,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:21:57','2021-06-09 23:17:06',NULL,NULL,'b7ebca5b-8297-4a06-bc0b-f3050ea163b0'),(17319,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:22:21','2021-06-09 23:17:09',NULL,NULL,'3ea5fce0-73c5-4783-a64f-79a4d61b6e7b'),(17320,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:22:53','2021-06-09 23:16:58',NULL,NULL,'8d04aa3c-2979-40aa-b6d4-af32c0a6bc48'),(17321,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:23:16','2021-06-09 23:21:09',NULL,NULL,'43b19b73-ca0d-4368-8fc4-b455f5e21c50'),(17322,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:23:18','2021-06-09 23:21:40',NULL,NULL,'d4d4f016-9874-4b33-8f9e-3e65323230d6'),(17323,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:23:20','2021-06-09 23:21:09',NULL,NULL,'0d8e61cd-b4bd-40d3-a871-51f8a5851373'),(17324,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:23:22','2021-06-09 23:21:05',NULL,NULL,'326e860f-fb1b-48a2-8bdc-755691e0ec88'),(17325,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:23:24','2021-06-09 23:21:40',NULL,NULL,'f7aeec54-f6ba-40e4-8298-ae41bdca14ca'),(17326,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:23:26','2021-06-09 23:21:24',NULL,NULL,'dd653eb5-f237-44ba-99fd-3d9d109ea446'),(17327,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:23:28','2021-06-09 23:21:11',NULL,NULL,'4ccf9f6c-2507-4f14-993c-c0415f5da1f3'),(17328,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:23:30','2021-06-09 23:21:05',NULL,NULL,'dbf0c9cc-8030-423f-bda7-f6f0e2130ff5'),(17329,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:23:31','2021-06-09 23:21:39',NULL,NULL,'ca37846e-1a3e-4d98-bae2-a8639029e5bb'),(17330,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:23:33','2021-06-09 23:21:37',NULL,NULL,'9b304b04-8ff1-45e6-bf36-0324c8d353dc'),(17331,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:23:35','2021-06-09 23:21:35',NULL,NULL,'16cfdb36-d072-412c-80aa-09837f765eeb'),(17332,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:23:37','2021-06-09 23:21:37',NULL,NULL,'b609b291-6ed0-4a17-b7a6-7d95d30b6b71'),(17333,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:23:39','2021-06-09 23:21:25',NULL,NULL,'3129bf1d-7933-4fc5-9d4c-f3203cb2a8ea'),(17334,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:23:41','2021-06-09 23:14:32',NULL,NULL,'643054db-3f96-4687-9438-b9c0f6cec0c6'),(17335,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:23:44','2021-06-09 23:15:16',NULL,NULL,'0d845702-748e-49b8-95cd-1df5d6fece76'),(17336,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:23:51','2021-06-09 23:14:58',NULL,NULL,'9cb54f85-a563-4145-98fe-44097755a18b'),(17337,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:24:00','2021-06-09 23:14:55',NULL,NULL,'436e1e60-79af-4368-9ddd-db9511071daf'),(17338,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:24:09','2021-06-09 23:25:36',NULL,NULL,'d5516238-fbeb-4583-89fc-ba6f36ff5c89'),(17339,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:24:10','2021-06-09 23:25:16',NULL,NULL,'fc88304b-cdc4-4c3f-b9b1-f2fea890a5db'),(17340,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:24:11','2021-06-09 23:25:30',NULL,NULL,'2db6ba7c-528c-414a-853c-94aafb51cbf0'),(17341,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:24:13','2021-06-09 23:24:24',NULL,NULL,'d946a322-4e6c-4ea6-a8d4-524a35716409'),(17342,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:24:14','2021-06-09 23:25:09',NULL,NULL,'042f284f-6011-4b07-8d4f-1f9148db7e4d'),(17343,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:24:16','2021-06-09 23:15:46',NULL,NULL,'169058b9-45a6-40de-82eb-9cbfc8deae70'),(17344,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:24:17','2021-06-09 23:15:48',NULL,NULL,'626428a0-f480-45c2-912a-bd9fc36fd795'),(17345,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:24:19','2021-06-09 23:15:48',NULL,NULL,'9c676032-1d3e-4e24-abf6-307d8585f57a'),(17346,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:24:20','2021-06-09 23:15:55',NULL,NULL,'c2777e97-7a59-4921-9acd-fa07c4225fb9'),(17347,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:24:22','2021-06-21 04:38:35',NULL,NULL,'acb3a9b9-f865-42f3-8af7-5020fd5fd690'),(17348,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:24:23','2021-06-21 04:38:49',NULL,NULL,'f8b56c84-0581-4456-815a-9e82e20cb5cb'),(17349,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:24:25','2021-06-21 04:38:14',NULL,NULL,'1a857a34-8b16-4fb6-89e3-9f2aa242b10d'),(17350,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:24:26','2021-06-09 23:17:17',NULL,NULL,'d2caeebd-385c-46e4-9f58-96ad25b20c78'),(17351,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:24:28','2021-06-09 23:17:44',NULL,NULL,'cd8da8a4-ab55-4416-959a-863cc2dcc3c9'),(17352,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:24:29','2021-06-09 23:17:50',NULL,NULL,'0c5c0523-a3f1-4e9c-8870-614bb76685c1'),(17353,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:24:31','2021-06-09 23:15:28',NULL,NULL,'512b54de-57d7-4738-b8ce-2559244cc8b5'),(17354,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:24:36','2021-06-09 23:15:33',NULL,NULL,'22f3d489-53da-4bb6-a44c-298076026369'),(17355,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:24:41','2021-06-09 23:17:46',NULL,NULL,'4aaed627-bfe8-49d1-a053-a50b5156d5cc'),(17356,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:24:42','2021-06-09 23:17:45',NULL,NULL,'d6c42063-d890-460b-81fa-a264ec113e23'),(17357,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:24:45','2021-06-09 23:17:40',NULL,NULL,'0e2850ff-cb92-4ec3-88e4-d49981cefd4e'),(17358,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:24:46','2021-06-09 23:17:46',NULL,NULL,'a64d0c42-8304-4360-b0a8-d8bccaab2d74'),(17359,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:24:51','2021-06-09 23:15:11',NULL,NULL,'dbd5d55f-8de5-4647-81c3-a75a6d70dd70'),(17360,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:25:11','2021-06-09 23:14:34',NULL,NULL,'55f9a655-46f4-4ae1-bee4-d4f249312462'),(17361,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:25:19','2021-06-21 04:39:23',NULL,NULL,'e3861c0e-cfee-4bf0-9bd6-e23169284b3e'),(17362,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:25:34','2021-06-09 23:19:37',NULL,NULL,'5be8c6eb-3a9b-4f34-9e13-a0ea41ae7947'),(17363,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:25:35','2021-06-09 23:19:40',NULL,NULL,'eb7bf17a-0d11-44a7-9217-53d5afc9505e'),(17364,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:25:36','2021-06-09 23:18:26',NULL,NULL,'c38eb1d9-31f5-42f2-922f-c64bd348c161'),(17365,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:25:38','2021-06-09 23:16:34',NULL,NULL,'4e6c7ba3-e074-4d4c-ae95-8e8a6f861c78'),(17366,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:25:39','2021-06-09 23:16:33',NULL,NULL,'9c77809c-e122-4bc4-837c-42c1d13afaa8'),(17367,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:25:40','2021-06-09 23:24:37',NULL,NULL,'d482974a-925b-493d-99dc-43a6ab04cbe1'),(17368,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:25:41','2021-06-09 23:21:04',NULL,NULL,'2b59de24-e098-4b03-8e49-b185338140d2'),(17369,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:25:41','2021-06-09 23:25:20',NULL,NULL,'15e564cc-400c-407b-a9db-ced8e9ec10cc'),(17370,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:25:42','2021-06-09 23:26:00',NULL,NULL,'48ddc053-8990-4922-97e2-14f2eb903cb9'),(17371,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:25:43','2021-06-09 23:26:18',NULL,NULL,'2c5738ee-95e8-4c65-9ff0-25a8a62d0291'),(17372,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:25:43','2021-06-09 23:14:38',NULL,NULL,'4d199156-2ff3-474d-bab0-1ef436bb8b53'),(17373,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:25:44','2021-06-21 04:38:04',NULL,NULL,'22d4ae70-2fd4-4fd9-806e-b91e41cf78c9'),(17374,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:25:44','2021-06-21 04:38:12',NULL,NULL,'880b6383-6f58-46ac-a671-f1581e825783'),(17375,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:25:45','2021-06-09 23:15:52',NULL,NULL,'dd903aa0-1ba4-4bbd-bfc9-fc7dc2bed97d'),(17376,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:25:46','2021-06-09 23:18:07',NULL,NULL,'606415f1-21f1-4210-b8c6-703058c4e58a'),(17377,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:25:46','2021-06-09 23:19:22',NULL,NULL,'e744213d-47fb-4f81-9a9e-4674095a16e5'),(17378,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:25:47','2021-06-09 23:19:34',NULL,NULL,'36acfcb5-e626-407a-aa79-b3769841dbfb'),(17379,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:25:47','2021-06-09 23:18:44',NULL,NULL,'187bf065-74df-46b4-b82d-a56a00464572'),(17380,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:25:48','2021-06-09 23:19:01',NULL,NULL,'bd08aa9b-5090-4448-b872-c077a4ae45e0'),(17381,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:25:49','2021-06-09 23:16:56',NULL,NULL,'1c75305c-a455-494b-a540-aa052c24c1f9'),(17382,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:25:49','2021-06-09 23:16:48',NULL,NULL,'06c56fc7-b98e-4ec3-8fc1-9381d4dbf278'),(17383,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:25:50','2021-06-09 23:17:28',NULL,NULL,'70f72add-ce00-4435-bc1e-d62413534da5'),(17384,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:25:50','2021-06-09 23:19:32',NULL,NULL,'b6bb5364-334d-4616-82c5-819511d0c309'),(17385,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:25:55','2021-06-09 23:16:57',NULL,NULL,'172c91ca-48e9-481a-a361-503d586fc832'),(17386,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:25:57','2021-06-09 23:17:33',NULL,NULL,'3dda47f4-b205-47bc-b13e-85fc53132b75'),(17387,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:26:10','2021-06-09 23:17:29',NULL,NULL,'cd18e0d6-ea7e-4eb4-a5cf-4bbaeab5b01b'),(17388,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:26:11','2021-06-09 23:24:27',NULL,NULL,'5db9730d-11e5-4eaf-8777-52abc87eba19'),(17389,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:26:12','2021-06-09 23:24:34',NULL,NULL,'b3048d01-9c03-4d39-a5f8-c101dae6a2e6'),(17390,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:26:14','2021-06-09 23:24:37',NULL,NULL,'05d70721-e47a-4caa-882c-4304144012f8'),(17391,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:26:15','2021-06-09 23:16:49',NULL,NULL,'d8b5d961-0e0a-4516-95e0-67dd92f8f12e'),(17392,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:26:17','2021-06-09 23:16:42',NULL,NULL,'1f07fc09-8457-44c0-936d-825065eb67ea'),(17393,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:26:18','2021-06-09 23:16:48',NULL,NULL,'27e6a905-6df8-45be-890e-6494aedae5b6'),(17394,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:26:19','2021-06-09 23:15:35',NULL,NULL,'cb6e47ab-a7fd-4a4c-b54e-b6f398f0e080'),(17395,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:26:29','2021-06-09 23:14:42',NULL,NULL,'f9b43720-f2b4-495e-a7bc-85209c594313'),(17396,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:26:42','2021-06-09 23:15:30',NULL,NULL,'dc6ae278-fbb8-4ef1-a2a9-b195947638ed'),(17397,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:26:53','2021-06-09 23:15:19',NULL,NULL,'96ecf7c5-4ee5-4a6c-af77-f8362004ae86'),(17398,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:27:06','2021-06-09 23:24:33',NULL,NULL,'6133a520-87c2-4bf3-a73b-e448f4d8299a'),(17399,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:27:08','2021-06-09 23:24:32',NULL,NULL,'ac505689-4a45-4f9b-ae5a-a94e246aa90e'),(17400,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:27:11','2021-06-09 23:24:29',NULL,NULL,'10c78313-a335-4de4-9b3f-1b7cb71975ad'),(17401,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:27:13','2021-06-09 23:24:30',NULL,NULL,'89363d2f-5ffa-4f31-989b-3522cb89153f'),(17402,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:27:16','2021-06-09 23:24:33',NULL,NULL,'732e81f3-32a8-467d-8254-f3cb3c3f8b7e'),(17403,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:27:18','2021-06-09 23:24:31',NULL,NULL,'f6186960-50f4-4ecd-b128-0376ffa11dd2'),(17404,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:27:20','2021-06-21 04:38:45',NULL,NULL,'89886e9f-f462-42ad-b365-594f417b08c6'),(17405,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:27:22','2021-06-21 04:38:13',NULL,NULL,'57f6fda4-4220-4be6-aa8c-44857418996a'),(17406,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:27:24','2021-06-09 23:23:27',NULL,NULL,'bf99f114-0586-45cb-85e5-9633a3cfce8b'),(17407,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:27:28','2021-06-09 23:23:26',NULL,NULL,'d064d38a-c4f7-44d1-a3f3-d5a732cf8952'),(17408,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:27:30','2021-06-09 23:23:25',NULL,NULL,'0762c71d-a117-4c18-948c-ea99a0193406'),(17409,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:27:32','2021-06-09 23:16:35',NULL,NULL,'20f34b6c-e38c-403b-a488-8395dd487304'),(17410,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:27:37','2021-06-09 23:25:32',NULL,NULL,'019c8c57-80b7-4afc-af36-9c99a0b554e0'),(17411,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:27:38','2021-06-09 23:16:50',NULL,NULL,'1e2b9704-24ea-4ccd-a599-e0249bb63e2c'),(17412,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:27:39','2021-06-09 23:17:19',NULL,NULL,'ef52c2c9-b682-48f5-ac2c-3f3dca60ff8f'),(17413,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:27:43','2021-06-09 23:17:39',NULL,NULL,'d1677e2d-f1e1-4b23-9a29-a09ef94a3226'),(17414,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:27:46','2021-06-09 23:17:40',NULL,NULL,'5558d7b6-8097-4239-a7ef-11c6f2ea0d3e'),(17415,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:27:49','2021-06-09 23:23:52',NULL,NULL,'f7e946d2-c300-4f44-80e8-ba4c344c8d28'),(17416,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:27:52','2021-06-09 23:13:46',NULL,NULL,'6c131ead-1db3-4547-a53f-d238d4cd2ac2'),(17417,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:27:57','2021-06-09 23:13:48',NULL,NULL,'fdef745a-cd70-49e8-a74b-28b4ffc86c77'),(17418,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:28:02','2021-06-09 23:13:49',NULL,NULL,'3525f9a1-b8af-47b8-b84a-0b711292efe8'),(17419,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:28:05','2021-06-09 23:13:50',NULL,NULL,'665dc385-6817-49cd-8ce8-33f0f6f4f178'),(17420,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:28:10','2021-06-09 23:25:14',NULL,NULL,'62a9d973-a52e-4807-8892-c20680c788de'),(17421,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:28:14','2021-06-09 23:23:53',NULL,NULL,'b0a0189f-e7c2-47ff-a5aa-3109f397ba9d'),(17422,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:28:16','2021-06-09 23:16:21',NULL,NULL,'c67618ed-5989-4538-91d4-c52d199ec537'),(17423,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:28:19','2021-06-09 23:16:16',NULL,NULL,'dc9246fa-d632-43c3-ad39-b43b3300f2e8'),(17424,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:28:22','2021-06-09 23:16:01',NULL,NULL,'9f3905a9-08fa-4eaf-9dc0-843eecabef12'),(17425,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:28:25','2021-06-09 23:16:17',NULL,NULL,'a8623613-a56b-4c5c-a41f-2639c23ba021'),(17426,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:28:28','2021-06-09 23:15:00',NULL,NULL,'d3225b3b-4af5-40a1-8e9b-17bc6776dc82'),(17427,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:28:31','2021-06-09 23:15:37',NULL,NULL,'4f887b8c-53b8-4ab1-9d10-52c4d5f2a7aa'),(17428,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:28:35','2021-06-09 23:16:10',NULL,NULL,'df61f80b-6ee4-4ba3-9647-3c2aa463d1fb'),(17429,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:28:38','2021-06-09 23:14:46',NULL,NULL,'7065bab6-5132-4d3d-88c5-dca725a39ba8'),(17430,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:28:42','2021-06-09 23:14:51',NULL,NULL,'a872feac-f557-495c-be71-56e89fd4fb93'),(17431,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:28:45','2021-09-27 22:59:35',NULL,NULL,'f69092d0-b243-4e7f-83d1-5014c8e28607'),(17432,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:28:48','2021-06-09 23:16:25',NULL,NULL,'06c3ac64-4b49-4c90-9c7e-bb2e61ec8ff2'),(17433,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:28:52','2021-06-09 23:16:08',NULL,NULL,'701fc6dd-af55-45fa-8348-6eb4aa21d734'),(17434,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:28:55','2021-06-09 23:14:40',NULL,NULL,'594edfbf-c9b2-4eb0-ac79-4151a514da05'),(17435,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:28:58','2021-06-09 23:16:03',NULL,NULL,'ba016ea1-8211-4bf0-8815-f5a840d8f768'),(17436,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:29:01','2021-06-09 23:14:52',NULL,NULL,'5795c941-40a9-4fcd-a936-30fd659b5eea'),(17437,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:29:05','2021-06-09 23:15:50',NULL,NULL,'52637632-a863-448c-a16f-b22e62fbb4f5'),(17438,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:29:08','2021-06-09 23:16:14',NULL,NULL,'da95ab9e-b710-4a94-bcbf-8bd82dda1d4f'),(17439,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:29:11','2021-06-09 23:15:39',NULL,NULL,'f4b34c69-43ed-4885-8783-d90708332f96'),(17440,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:29:15','2021-06-09 23:14:54',NULL,NULL,'0be86d96-c3ae-4f3f-a89f-d6665884ad5b'),(17441,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:29:18','2021-06-09 23:16:04',NULL,NULL,'fbf94c4b-1fc8-4b51-aa9d-a9a7b2307f9f'),(17442,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:29:21','2021-06-09 23:16:11',NULL,NULL,'298cdd15-f7fb-47ee-b5b3-ee428e5f4941'),(17443,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:29:25','2021-06-09 23:14:39',NULL,NULL,'452f2916-4159-4f58-81fc-c68b0f4aa563'),(17444,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:29:29','2021-06-09 23:16:22',NULL,NULL,'20c056ef-dfc5-463e-9eb0-8ecd76105d2f'),(17445,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:29:33','2021-06-09 23:16:00',NULL,NULL,'2257831d-a4fc-48cd-aac3-cea4c2dfd232'),(17446,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:29:41','2021-06-09 23:16:12',NULL,NULL,'31172835-57a2-4e43-b399-1107ef96127a'),(17447,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:29:45','2021-06-09 23:16:27',NULL,NULL,'e67b022b-2a30-418f-9ae4-c75350a4a0b9'),(17448,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:29:48','2021-06-09 23:14:49',NULL,NULL,'08638c5c-ce9b-487f-8448-1e0ead12c2df'),(17449,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:29:54','2021-06-09 23:16:23',NULL,NULL,'66e3302f-9280-41dc-93c9-d4a99cd49440'),(17450,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:29:58','2021-06-09 23:14:45',NULL,NULL,'73c8d0e8-d369-45d0-8793-0808ceb42bf7'),(17451,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:30:03','2021-06-09 23:16:29',NULL,NULL,'2adf338f-8477-4156-baaa-c87956963fcb'),(17452,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:30:07','2021-06-09 23:14:30',NULL,NULL,'e1c05c63-28f2-450c-9205-e4d3d1d9977f'),(17453,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:30:11','2021-06-09 23:16:26',NULL,NULL,'d9acbfb1-47ed-437b-889e-6ba8945eb812'),(17454,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:30:14','2021-06-09 23:16:30',NULL,NULL,'93f76417-ca76-4490-8c05-11f521d8e0ec'),(17455,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:30:17','2021-06-09 23:18:06',NULL,NULL,'4d0740be-d05b-4278-88a0-512dda9f22f7'),(17456,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:30:19','2021-06-09 23:18:06',NULL,NULL,'82789e13-5a50-4097-b863-2c8d853ec4bf'),(17457,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:30:21','2021-06-09 23:23:28',NULL,NULL,'14996d64-3dfa-43d3-8fb7-cba4d6a7319c'),(17458,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:30:23','2021-06-09 23:18:40',NULL,NULL,'ddf347d0-87c7-4097-aaf5-03f08c10e846'),(17459,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:30:25','2021-06-09 23:18:40',NULL,NULL,'8873a3fc-f177-4d57-9cdd-8414e2e52c7c'),(17460,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:30:27','2021-06-09 23:23:54',NULL,NULL,'13b27c9d-da7e-412c-bd3d-32664caca45c'),(17461,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:30:29','2021-06-09 23:23:56',NULL,NULL,'84857d3c-8c46-46c0-8b8b-964868bfdedc'),(17462,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:30:31','2021-06-09 23:23:50',NULL,NULL,'6e47d02b-68f0-467f-8a12-58aa8d69667d'),(17463,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:30:33','2021-06-09 23:23:55',NULL,NULL,'c14e6e34-0e71-4e93-b1af-756f901dac71'),(17464,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:30:35','2021-06-09 23:25:51',NULL,NULL,'50a17fba-9f37-4cc5-95bf-8f31759b8b6b'),(17465,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:30:37','2021-06-03 05:05:34',NULL,NULL,'6db830c7-d39a-4cd7-81ac-0573ed11ce03'),(17466,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:30:39','2021-06-03 05:05:43',NULL,NULL,'22eb1af2-d421-4235-be95-fd1eb40fe83e'),(17467,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:30:43','2021-06-03 05:05:38',NULL,NULL,'d0480992-4aa2-4cd5-afab-a9bfa968e0d3'),(17468,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:30:45','2021-06-03 05:05:15',NULL,NULL,'e29a5f48-8a2e-40a4-8bbc-24173e97f21c'),(17469,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:30:48','2021-06-03 05:05:30',NULL,NULL,'15de111c-1cf7-4894-902a-d4a772b4cdfc'),(17470,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:30:50','2021-06-09 23:25:05',NULL,NULL,'5f0e4729-33f8-4b3a-a4f5-8b95abf8898b'),(17471,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:30:52','2021-06-09 23:25:27',NULL,NULL,'35c0ff37-9e99-4585-9fa2-97e33467fd04'),(17472,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:30:55','2021-06-09 23:25:28',NULL,NULL,'e26cf0ab-2ef3-4fcc-a8da-4641513d6304'),(17473,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:30:58','2021-06-09 23:22:54',NULL,NULL,'68b0e90b-367e-455c-a45c-8f91cd491d29'),(17474,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:31:00','2021-06-09 23:20:39',NULL,NULL,'68c32219-2927-4469-957c-9c932ac693e0'),(17475,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:31:02','2021-06-09 23:21:35',NULL,NULL,'db726097-dc0c-4b52-a8f7-6ca941fa5302'),(17476,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:31:05','2021-06-09 23:17:43',NULL,NULL,'78d08286-5da5-484e-a083-7ab7a7c03f33'),(17477,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:31:08','2021-06-09 23:23:18',NULL,NULL,'b21510a2-964e-42c5-9820-42f8bc0dfc61'),(17478,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:31:11','2021-06-09 23:23:13',NULL,NULL,'6ea5a437-6399-4d82-af9a-7a5ab5e31320'),(17479,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:31:14','2021-06-09 23:22:50',NULL,NULL,'5f79665a-d017-4094-9c8e-28d907f85f3d'),(17480,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:31:17','2021-06-09 23:22:42',NULL,NULL,'30b8bfa0-db7b-4c99-8a5a-31fd3c9436ab'),(17481,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:31:20','2021-06-09 23:14:03',NULL,NULL,'73aedbca-401c-4710-b8aa-7bdfd838e1b5'),(17482,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:31:21','2021-06-09 23:18:27',NULL,NULL,'ea8ec79e-afa6-414a-963b-f9a46ca0c32f'),(17483,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:31:26','2021-06-09 23:18:22',NULL,NULL,'877e9459-afe9-4284-afa0-764c947ce6b2'),(17484,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:31:32','2021-06-09 23:18:29',NULL,NULL,'56a91731-9bca-46bd-8b5d-25c9871609b5'),(17485,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:31:38','2021-06-09 23:18:31',NULL,NULL,'7502c756-4beb-43c4-8d57-2bdc0355d3b6'),(17486,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:31:44','2021-06-09 23:18:32',NULL,NULL,'598278db-4c38-44ff-9e42-c98d7e6ea7eb'),(17487,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:31:49','2021-06-09 23:18:34',NULL,NULL,'cefc3d87-43ad-461e-8fa2-c0dc80ade824'),(17488,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:31:55','2021-06-09 23:18:35',NULL,NULL,'b8986a41-4614-4ff0-8e9b-0a2e204e48e1'),(17489,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:32:00','2021-06-09 23:18:37',NULL,NULL,'892108f2-3e3a-4dd5-973f-9979a7957753'),(17490,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:32:05','2021-06-09 23:18:38',NULL,NULL,'095e1e66-5175-4b21-9aff-898c3d847f23'),(17491,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:32:10','2021-06-09 23:17:59',NULL,NULL,'5edc5356-30e9-4a2a-86e7-91604d1a1169'),(17492,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:32:16','2021-06-09 23:18:08',NULL,NULL,'117f49dd-2e79-40a3-a1b9-75902ef7e4ab'),(17493,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:32:21','2021-06-09 23:18:10',NULL,NULL,'e49144b5-cdbc-4036-9fe0-5618cb20f283'),(17494,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:32:27','2021-06-09 23:18:12',NULL,NULL,'576aed3f-6339-41a5-aa58-682000780a86'),(17495,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:32:34','2021-06-09 23:18:14',NULL,NULL,'69bb12b3-de85-467b-a943-6d8cf7e719b5'),(17496,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:32:40','2021-06-21 04:39:29',NULL,NULL,'c4120ca3-67e7-425e-834c-5255000e4f5b'),(17497,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:32:44','2021-06-09 23:21:36',NULL,NULL,'5596fcd9-bf12-4405-9adb-8ea9cb94ac7e'),(17498,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:32:46','2021-06-09 23:21:38',NULL,NULL,'6cabb5ea-77aa-4db3-94b5-94d793837fed'),(17499,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:32:52','2021-06-09 23:21:08',NULL,NULL,'c08ab913-bef1-44f6-9b97-a65071bade18'),(17500,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:32:54','2021-06-09 23:14:48',NULL,NULL,'7b1cb8e7-5eaa-4e0f-b95d-d415b33d10a3'),(17501,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:32:57','2021-06-09 23:16:07',NULL,NULL,'1a4d03a2-fb39-45a3-ade5-31aba4b35520'),(17502,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:33:01','2021-06-09 23:17:30',NULL,NULL,'483263b7-6a2d-4425-a835-025b8576d0b7'),(17503,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:33:03','2021-06-09 23:23:30',NULL,NULL,'7174f4f9-5fce-40fb-92b5-c5cacc61b903'),(17504,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:33:04','2021-07-16 03:53:58',NULL,NULL,'a6b672c6-c7c8-4be9-90cd-8c41cb5e650c'),(17505,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:33:07','2021-06-21 04:38:04',NULL,NULL,'79a2daf7-789b-4386-9c24-44e70ee85ae0'),(17506,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:33:10','2021-06-09 23:18:05',NULL,NULL,'4258cd28-f426-44dd-9998-45f10dfcbe84'),(17507,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:33:12','2021-06-21 04:38:06',NULL,NULL,'8ee8bf05-5e89-49cb-93f0-52a27943cabe'),(17508,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:33:14','2021-06-21 04:39:33',NULL,NULL,'31fb647e-d94f-47ee-a8fc-3f38c63ace2c'),(17509,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:33:16','2021-07-16 03:53:59',NULL,NULL,'f32bcacb-8028-44a5-b6ea-41a150508eae'),(17510,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:33:17','2021-07-16 03:54:00',NULL,NULL,'4aa9c8e2-3fbf-46ee-8b92-23e2c25312da'),(17511,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:33:18','2021-06-09 23:16:47',NULL,NULL,'cbcb0c3e-1e59-4c52-8a69-bf9ea2bbc4a4'),(17512,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:33:20','2021-06-09 23:14:38',NULL,NULL,'845e5da6-50f3-49cc-bd17-16e78bbd37b6'),(17513,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:33:21','2021-06-09 23:23:29',NULL,NULL,'c147ded5-7ee1-4aff-8f59-e09de593690e'),(17514,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:33:22','2021-06-09 23:23:12',NULL,NULL,'884253ba-5333-427e-a21f-a320c39e70d3'),(17515,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:33:23','2021-06-09 23:25:39',NULL,NULL,'ab8a4900-7c74-442a-81d7-a43c03e9a9dc'),(17516,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:33:24','2021-06-09 23:23:40',NULL,NULL,'5677e4ab-70e0-4354-8649-47c4ca70bd9b'),(17517,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:33:27','2021-07-16 03:54:03',NULL,NULL,'56e937da-62a5-4474-90c0-83b44b43f12d'),(17518,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:33:29','2021-06-09 23:18:15',NULL,NULL,'34809c2d-4ef6-4915-84e0-ef0ae3c63407'),(17519,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:33:31','2021-06-09 23:17:48',NULL,NULL,'a7874978-f2c5-4e44-964c-2dc824c67c01'),(17520,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:33:31','2021-06-03 05:05:49',NULL,NULL,'2452a997-58bc-437c-8f22-27e57d81a339'),(17521,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:33:35','2021-06-03 05:09:40',NULL,NULL,'9ce0966f-b7eb-4d2a-8b3b-27b51d19c5d3'),(17522,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:33:37','2021-06-03 05:09:44',NULL,NULL,'8a385f33-c809-44c2-8318-19ded767ae1b'),(17523,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:33:39','2021-06-03 05:09:48',NULL,NULL,'51c82aca-7219-403f-80e1-07a5a042f8d7'),(17524,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:33:42','2021-06-03 05:09:52',NULL,NULL,'3b8ec30a-dcca-4783-89a0-798ff4fb0343'),(17525,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:33:44','2021-06-09 23:26:17',NULL,NULL,'3dd298f9-e90f-463b-9b42-88275f4850c2'),(17526,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:33:47','2021-06-03 05:09:59',NULL,NULL,'00bf4a0a-19b6-4e21-91f3-fd74fb52dc82'),(17527,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:33:49','2021-06-09 23:25:57',NULL,NULL,'3e78e7df-ae76-4df3-b852-c6ef9200f542'),(17528,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:33:51','2021-06-03 05:05:54',NULL,NULL,'458edd70-6e3d-4b05-9668-665e99fa3c22'),(17529,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:33:54','2021-06-03 05:05:58',NULL,NULL,'f46a4c22-f479-4702-a3f5-94dd73e802a1'),(17530,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:33:57','2021-06-03 05:06:02',NULL,NULL,'e5c1f287-b3f2-4be9-8dfa-abe2e1b107c1'),(17531,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:33:59','2021-06-03 05:06:06',NULL,NULL,'c42a47f0-f4c2-40ab-9831-0c9d7640b6c5'),(17532,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:02','2021-06-03 05:06:10',NULL,NULL,'6d0d8a76-18af-45dd-869c-354435d5a4b9'),(17533,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:04','2021-06-03 05:06:14',NULL,NULL,'8a86c910-887e-4edd-82bb-cb19fa0c7d5b'),(17534,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:08','2021-06-03 05:07:52',NULL,NULL,'69934586-34c8-4d35-91ad-54daab4f85e1'),(17535,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:10','2021-06-03 05:06:28',NULL,NULL,'7dbc15ed-df94-461e-aa38-00fb493c5069'),(17536,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:12','2021-06-03 05:07:56',NULL,NULL,'51aa7028-5045-49ea-8dce-217c1a9b098d'),(17537,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:15','2021-06-09 23:22:46',NULL,NULL,'0ec4ff13-9f3a-4353-a7cd-e42ec2f53676'),(17538,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:17','2021-06-09 23:22:49',NULL,NULL,'5eb34eac-b8fb-498c-895e-cab84307b618'),(17539,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:19','2021-06-09 23:22:35',NULL,NULL,'fac72b81-e62f-4ab1-a63d-426219c430a3'),(17540,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:20','2021-06-09 23:22:36',NULL,NULL,'c2bac402-7710-4448-b895-0df1d97151c6'),(17541,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:22','2021-06-09 23:22:37',NULL,NULL,'abb70fcc-5d6a-453f-b45b-16f71221f98b'),(17542,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:23','2021-06-09 23:22:38',NULL,NULL,'1f5add16-e568-4e6f-90d8-63439be2993e'),(17543,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:26','2021-06-09 23:22:39',NULL,NULL,'893c1646-8c27-4a6f-8ef7-26b0cdd04b26'),(17544,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:29','2021-06-09 23:22:40',NULL,NULL,'618a059f-b797-427d-802d-b3c34ecb4c83'),(17545,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:30','2021-06-09 23:22:41',NULL,NULL,'7cdf0d8e-9379-4460-8600-67b296be9d7b'),(17546,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:32','2021-06-09 23:22:34',NULL,NULL,'8ff4ba00-00f5-4664-b189-502962389355'),(17547,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:34','2021-06-09 23:22:42',NULL,NULL,'21915507-b91b-4863-a1ef-5acad02e2024'),(17548,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:37','2021-06-09 23:22:43',NULL,NULL,'1a48ca1c-a94b-451e-b632-b3433dc75cee'),(17549,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:42','2021-06-09 23:22:44',NULL,NULL,'a3f71de3-cd1e-457b-8491-3e0972bd2616'),(17550,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:44','2021-06-09 23:22:45',NULL,NULL,'b1af5a08-8a61-4690-9be1-aa857329cfcd'),(17551,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:45','2021-06-09 23:20:37',NULL,NULL,'3d08f6ab-561e-4460-9236-952dd78dfe7f'),(17552,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:47','2021-06-09 23:20:36',NULL,NULL,'13fdcb88-7a27-48bd-80c6-ab58fe41679f'),(17553,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:48','2021-06-09 23:20:38',NULL,NULL,'b3830583-ac79-4722-b0bc-8878e555c74e'),(17554,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:49','2021-06-09 23:20:38',NULL,NULL,'6ec51b17-9a41-4a57-972a-4131ad79d00e'),(17555,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:50','2021-06-21 04:39:41',NULL,NULL,'f99eb3b2-ffa6-442a-87b6-32015d8c5031'),(17556,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:51','2021-06-21 04:38:17',NULL,NULL,'a1f715fd-d4a0-4fbb-8bc9-e22e98154fcd'),(17557,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:51','2021-06-21 04:38:12',NULL,NULL,'e76e2667-63a7-417d-9801-dc120a5b9d36'),(17558,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:52','2021-06-21 04:38:02',NULL,NULL,'261832f6-a4d5-47d9-84f1-5110a04577a7'),(17559,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:52','2021-06-21 04:38:13',NULL,NULL,'a706d8f6-0cb0-4250-8bc0-0dae29fb135b'),(17560,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:52','2021-06-21 04:38:13',NULL,NULL,'34558e19-9eae-4ac4-ae7a-88d4e034ffc1'),(17561,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:53','2021-06-21 04:38:54',NULL,NULL,'da148a1a-58f8-4ad0-bc31-0ea1d8d2ee06'),(17562,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:53','2021-06-21 04:38:45',NULL,NULL,'837743da-c54d-4dac-9707-02f63ba15161'),(17563,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:53','2021-06-21 04:38:55',NULL,NULL,'d83ae0e7-b86e-4ca2-9e04-778700840f83'),(17564,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:54','2021-06-21 04:39:40',NULL,NULL,'39e66162-4615-4c8d-b901-cdd21e59183b'),(17565,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:54','2021-06-09 23:12:53',NULL,NULL,'724bc592-bd1b-4114-97ad-6262b73835c4'),(17566,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:54','2021-06-09 23:12:59',NULL,NULL,'a0f145d0-9c3a-45ad-95a4-594f532292e6'),(17567,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:55','2021-06-09 23:14:03',NULL,NULL,'28b98d33-cb36-46ce-a82b-4bb334914e42'),(17568,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:55','2021-06-21 04:39:22',NULL,NULL,'070c22e0-05f5-4b01-8f1c-c0697e23886e'),(17569,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:55','2021-06-21 04:39:22',NULL,NULL,'59007cbd-b258-4f1f-a644-70f3c909b16b'),(17570,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:56','2021-06-21 04:39:23',NULL,NULL,'74cc4c6d-0024-495f-8511-de692fe10bfb'),(17571,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:57','2021-06-09 23:24:57',NULL,NULL,'5d24d33f-35f9-4550-8b65-2f8003a7d5b0'),(17572,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:34:59','2021-06-09 23:17:15',NULL,NULL,'b0649da0-0494-4e1f-8c79-9cfbe9dad7f4'),(17573,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:35:01','2021-06-09 23:17:49',NULL,NULL,'b013dbb4-58bc-4076-b096-baf7666a2ce5'),(17574,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 01:35:04','2021-07-16 03:53:58',NULL,NULL,'e5ac21b8-812b-46f7-805f-1c301d9199bc'),(17593,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:07:19','2021-06-09 23:22:11',NULL,NULL,'bf17af9e-1b7e-4f30-9951-2672572378a7'),(17596,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:13:03','2021-06-09 23:22:12',NULL,NULL,'d5a55fb3-74fa-44db-bd36-f9e2377001e5'),(17597,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:17:29','2021-06-09 23:22:11',NULL,NULL,'d2cbccc6-6c81-4144-b68d-d80ddece56b8'),(17598,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:19:16','2021-06-09 23:22:11',NULL,NULL,'c7c1b54a-d588-4688-9b7b-e11e8bb8d5b5'),(17600,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 03:20:48','2021-05-18 03:20:48',NULL,NULL,'b5ad1fa2-3b13-4dd9-b5ca-f8c8d925902b'),(17601,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 03:20:48','2021-05-18 03:20:48',NULL,NULL,'55883583-e9ce-405b-99ba-8e94499eb546'),(17602,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 03:20:48','2021-05-18 03:20:48',NULL,NULL,'8ed6f6ca-32e0-4710-9c2e-e0d8e1589529'),(17603,NULL,NULL,NULL,12,'craft\\elements\\Entry',0,0,'2021-05-18 03:20:48','2021-07-23 06:19:14',NULL,NULL,'aaab30e5-ef9d-4d71-bda2-5ca18e7ede26'),(17604,17603,NULL,11373,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:48','2021-05-18 03:20:48',NULL,NULL,'b6ecd07f-fa85-49d4-a892-434cf917f897'),(17605,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 03:20:48','2021-05-18 03:20:48',NULL,NULL,'5fb71a69-71f7-4397-82dc-efb7fefd5554'),(17606,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 03:20:48','2021-05-18 03:20:48',NULL,NULL,'782977af-22cd-477f-91f6-7841695d43f0'),(17607,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 03:20:48','2021-05-18 03:20:48',NULL,NULL,'c9fb9526-31b7-4c71-8d4d-1a93680a26c6'),(17608,NULL,NULL,NULL,12,'craft\\elements\\Entry',0,0,'2021-05-18 03:20:48','2021-07-23 06:19:14',NULL,NULL,'a5fd3ff9-829d-4bb0-b709-38c73a069301'),(17609,17608,NULL,11374,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:48','2021-05-18 03:20:48',NULL,NULL,'f27a52af-c2f9-4f6c-894a-75acbb8ae0f1'),(17610,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 03:20:48','2021-05-18 03:20:48',NULL,NULL,'b2e86a70-60b5-479c-8ec0-60f40a7537c4'),(17611,NULL,NULL,NULL,12,'craft\\elements\\Entry',0,0,'2021-05-18 03:20:48','2021-07-23 06:19:14',NULL,NULL,'c9406a1d-3630-42ec-9a84-20557b4425c8'),(17612,17611,NULL,11375,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:48','2021-05-18 03:20:48',NULL,NULL,'894c54bd-12a0-4ad5-881f-35888c47bb4d'),(17613,NULL,NULL,NULL,12,'craft\\elements\\Entry',0,0,'2021-05-18 03:20:48','2021-07-23 06:19:15',NULL,NULL,'35774bed-e113-4589-856a-b166efc591b3'),(17614,17613,NULL,11376,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:48','2021-05-18 03:20:48',NULL,NULL,'7432a596-f501-4c64-96d3-7bcdcbc73b68'),(17615,NULL,NULL,NULL,12,'craft\\elements\\Entry',0,0,'2021-05-18 03:20:49','2021-07-23 06:19:15',NULL,NULL,'1b36c0ee-9a2c-4a62-ac71-57799587b236'),(17616,17615,NULL,11377,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:49','2021-05-18 03:20:49',NULL,NULL,'caf03cf2-baea-4ba1-ad29-ecda3c62b287'),(17617,NULL,NULL,NULL,12,'craft\\elements\\Entry',0,0,'2021-05-18 03:20:49','2021-07-23 06:19:15',NULL,NULL,'41a29631-a967-46e1-92d3-dbddf5c6c2cf'),(17618,17617,NULL,11378,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:49','2021-05-18 03:20:49',NULL,NULL,'c490d9fd-23b8-4183-b2b7-886adcceb9ce'),(17619,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 03:20:49','2021-05-18 03:20:49',NULL,NULL,'5914c019-c4c5-4480-8d42-b79a95a63397'),(17620,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 03:20:49','2021-05-18 03:20:49',NULL,NULL,'894bb53f-c95d-4801-8749-9524905b61f9'),(17621,NULL,NULL,NULL,12,'craft\\elements\\Entry',0,0,'2021-05-18 03:20:49','2021-07-23 06:19:15',NULL,NULL,'4205a7d4-bc5f-4282-8c45-950c83ef9932'),(17622,17621,NULL,11379,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:49','2021-05-18 03:20:49',NULL,NULL,'b37dd024-c01b-444e-99a2-7d1d60c6d6e9'),(17623,NULL,NULL,NULL,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:50','2022-05-30 01:20:14',NULL,NULL,'b2e6549f-12b8-44fa-992b-854e1404cd30'),(17624,17623,NULL,11380,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:50','2021-05-18 03:20:50',NULL,NULL,'d67716ac-34f6-45ae-b3b6-778b62acccc6'),(17625,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 03:20:50','2021-05-18 03:20:50',NULL,NULL,'219c2f6d-0db2-43e3-a4d3-0a73cc2f2b49'),(17626,NULL,NULL,NULL,12,'craft\\elements\\Entry',0,0,'2021-05-18 03:20:50','2021-07-23 06:19:15',NULL,NULL,'61390392-9f01-4410-be97-565bf858d6d3'),(17627,17626,NULL,11381,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:50','2021-05-18 03:20:50',NULL,NULL,'f2f6728c-b4c3-4f21-819b-4edd98092841'),(17628,NULL,NULL,NULL,12,'craft\\elements\\Entry',0,0,'2021-05-18 03:20:50','2021-07-23 06:19:16',NULL,NULL,'46e7a2d1-e0a4-45a0-9e15-ae77260507e8'),(17629,17628,NULL,11382,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:50','2021-05-18 03:20:50',NULL,NULL,'773b67e7-39a2-43ca-a457-d2554f34ac3a'),(17630,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 03:20:50','2021-05-18 03:20:50',NULL,NULL,'e4db31e8-2cd5-4f04-9cf0-640f4644b6b7'),(17631,NULL,NULL,NULL,12,'craft\\elements\\Entry',0,0,'2021-05-18 03:20:51','2021-07-23 06:19:16',NULL,NULL,'0a245b25-71d1-41bd-8069-4ce7bd7335c8'),(17632,17631,NULL,11383,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:51','2021-05-18 03:20:51',NULL,NULL,'e8851fb3-2109-4792-ac5b-8a08c247794c'),(17633,NULL,NULL,NULL,12,'craft\\elements\\Entry',0,0,'2021-05-18 03:20:51','2021-07-23 06:19:16',NULL,NULL,'b7eb0cb5-bf0c-4078-82af-8c024a66b9a8'),(17634,17633,NULL,11384,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:51','2021-05-18 03:20:51',NULL,NULL,'d4e0607e-c4e3-46f6-8268-55b7489a1a4f'),(17635,NULL,NULL,NULL,12,'craft\\elements\\Entry',0,0,'2021-05-18 03:20:51','2021-07-23 06:19:16',NULL,NULL,'436b63bc-2dfb-4100-9180-88349291e927'),(17636,17635,NULL,11385,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:51','2021-05-18 03:20:51',NULL,NULL,'0b41acba-e960-4698-9f28-d68d971d1cde'),(17637,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 03:20:51','2021-05-18 03:20:51',NULL,NULL,'dd71281e-0532-49b4-ac1c-183893773afc'),(17638,NULL,NULL,NULL,12,'craft\\elements\\Entry',0,0,'2021-05-18 03:20:51','2021-07-23 06:19:16',NULL,NULL,'a7ee0c18-1f5b-4347-81ec-7137ae44b3c5'),(17639,17638,NULL,11386,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:51','2021-05-18 03:20:51',NULL,NULL,'ea22f9e5-d051-420b-9e87-9528ed3020db'),(17640,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 03:20:52','2021-05-18 03:20:52',NULL,NULL,'bfa4c8ce-537e-4e23-a268-8d22ecefcfaa'),(17641,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 03:20:52','2021-05-18 03:20:52',NULL,NULL,'95371848-87ee-4e1d-a14d-f4ffed324522'),(17642,NULL,NULL,NULL,12,'craft\\elements\\Entry',0,0,'2021-05-18 03:20:52','2021-07-23 06:19:16',NULL,NULL,'1eab8b1f-d80d-4ee7-8a60-8b952da20259'),(17643,17642,NULL,11387,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:52','2021-05-18 03:20:52',NULL,NULL,'e4e74620-76f3-49f1-9dc9-be20ceedc8c7'),(17644,NULL,NULL,NULL,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:52','2022-08-08 07:05:22',NULL,NULL,'1d6de724-f005-4652-84a6-adf3760b7c39'),(17645,17644,NULL,11388,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:52','2021-05-18 03:20:52',NULL,NULL,'4460bb24-e20a-4ee8-a06d-0d4b748219a2'),(17646,NULL,NULL,NULL,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:52','2022-08-25 04:36:54',NULL,NULL,'d7ef1c6c-f8d1-45d2-a6d1-36f49bf1dd89'),(17647,17646,NULL,11389,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:52','2021-05-18 03:20:52',NULL,NULL,'a0a68f80-31d5-49f9-b20a-aa73e5bccfee'),(17648,NULL,NULL,NULL,12,'craft\\elements\\Entry',0,0,'2021-05-18 03:20:52','2021-07-23 06:19:17',NULL,NULL,'5701cb9e-6fd8-4bd8-a532-3566345b40e8'),(17649,17648,NULL,11390,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:52','2021-05-18 03:20:52',NULL,NULL,'faa660f0-ef97-4fbc-ad47-87cc39b9a250'),(17650,NULL,NULL,NULL,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:53','2022-08-17 05:11:34',NULL,NULL,'67b7024f-79a4-492f-a4c9-c0594d1d87a4'),(17651,17650,NULL,11391,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:53','2021-05-18 03:20:53',NULL,NULL,'2783830e-2e25-4225-95c6-6a6bd67db146'),(17652,NULL,NULL,NULL,12,'craft\\elements\\Entry',0,0,'2021-05-18 03:20:53','2021-07-23 06:19:17',NULL,NULL,'bfbb08df-7618-4fcc-af25-812bbfd08ecf'),(17653,17652,NULL,11392,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:53','2021-05-18 03:20:53',NULL,NULL,'8412ffec-bf97-4641-8a5b-10c3759fe0fc'),(17654,NULL,NULL,NULL,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:53','2022-05-30 01:19:40',NULL,NULL,'333f154e-7972-4015-b517-23425916b616'),(17655,17654,NULL,11393,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:53','2021-05-18 03:20:53',NULL,NULL,'97850e24-9fff-4c81-885c-755ff3ee09f1'),(17656,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 03:20:53','2021-05-18 03:20:53',NULL,NULL,'0d12fa6f-f4b1-4b8c-9e09-32689937ab75'),(17657,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 03:20:53','2021-05-18 03:20:53',NULL,NULL,'2f3dc4b9-cb3d-4b0e-9db8-9190ec042fbf'),(17658,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 03:20:53','2021-05-18 03:20:53',NULL,NULL,'cf6e533d-4f4f-4efb-b1f9-fb13ab867e3e'),(17659,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 03:20:53','2021-05-18 03:20:53',NULL,NULL,'e4f90c00-2c2c-4ad0-b8c3-6ac683eca1cb'),(17660,NULL,NULL,NULL,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:54','2022-08-08 07:02:05',NULL,NULL,'a0449a37-864f-4876-968b-5bf0e21b04f2'),(17661,17660,NULL,11394,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:54','2021-05-18 03:20:54',NULL,NULL,'996326ae-4f90-48b4-b678-65189ba96a62'),(17662,NULL,NULL,NULL,12,'craft\\elements\\Entry',0,0,'2021-05-18 03:20:54','2021-07-23 06:19:18',NULL,NULL,'f8ad792f-72a7-43b2-bd73-71dae7b5a63a'),(17663,17662,NULL,11395,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:54','2021-05-18 03:20:54',NULL,NULL,'7c512b83-f9a2-425f-b13b-85fd55ff5e0c'),(17664,NULL,NULL,NULL,12,'craft\\elements\\Entry',0,0,'2021-05-18 03:20:55','2021-07-23 06:19:18',NULL,NULL,'3c053eb2-0f67-4ac1-b666-cee7bcd9bb28'),(17665,17664,NULL,11396,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:55','2021-05-18 03:20:55',NULL,NULL,'5b511d1c-9266-4051-ac07-f70ff5a6964b'),(17666,NULL,NULL,NULL,12,'craft\\elements\\Entry',0,0,'2021-05-18 03:20:55','2021-07-23 06:19:18',NULL,NULL,'9126b12a-ef47-4ed6-b092-df3e9949bcc8'),(17667,17666,NULL,11397,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:55','2021-05-18 03:20:55',NULL,NULL,'76d6e638-4665-4fbf-8180-d3a8da5e9ff7'),(17668,NULL,NULL,NULL,12,'craft\\elements\\Entry',0,0,'2021-05-18 03:20:55','2021-07-23 06:19:18',NULL,NULL,'dcf187bc-c533-4873-98e1-41e28f397463'),(17669,17668,NULL,11398,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:55','2021-05-18 03:20:55',NULL,NULL,'fd48a631-8dcf-497e-b508-3257dea54e25'),(17670,NULL,NULL,NULL,12,'craft\\elements\\Entry',0,0,'2021-05-18 03:20:56','2021-07-23 06:19:19',NULL,NULL,'ea2dce19-2aaa-4665-9b1d-e1630ecc1ad6'),(17671,17670,NULL,11399,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:56','2021-05-18 03:20:56',NULL,NULL,'e2feb554-3152-44e0-9fed-6299a589471b'),(17672,NULL,NULL,NULL,12,'craft\\elements\\Entry',0,0,'2021-05-18 03:20:56','2021-07-23 06:19:19',NULL,NULL,'a4962dd1-e513-4f46-84d0-f4c003aaef5b'),(17673,17672,NULL,11400,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:56','2021-05-18 03:20:56',NULL,NULL,'c3cf9713-5bbc-4460-ae6b-9543c1001cb6'),(17674,NULL,NULL,NULL,12,'craft\\elements\\Entry',0,0,'2021-05-18 03:20:56','2021-07-23 06:19:19',NULL,NULL,'8dde0d9c-4fbe-4c44-a001-79f7238feb7d'),(17675,17674,NULL,11401,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:56','2021-05-18 03:20:56',NULL,NULL,'d17aff37-479b-4cee-8701-f9f8b65c106e'),(17676,NULL,NULL,NULL,12,'craft\\elements\\Entry',0,0,'2021-05-18 03:20:56','2021-07-23 06:19:19',NULL,NULL,'d6794ec8-56ff-4773-84ef-2ef56911b73b'),(17677,17676,NULL,11402,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:56','2021-05-18 03:20:56',NULL,NULL,'aac3aa85-b5ec-4c3a-969d-f6a310e9a4e7'),(17678,NULL,NULL,NULL,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:56','2022-11-28 23:23:03',NULL,NULL,'cea1afd6-0156-411e-b966-fe4b75ed167a'),(17679,17678,NULL,11403,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:56','2021-05-18 03:20:56',NULL,NULL,'9d8088fe-a65c-4032-8ad9-82c4adfaf187'),(17680,NULL,NULL,NULL,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:57','2021-11-09 01:59:29',NULL,NULL,'669fde6e-ecbc-452f-897f-d02663ca59d6'),(17681,17680,NULL,11404,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:57','2021-05-18 03:20:57',NULL,NULL,'19c4479b-a566-4ac7-858a-e5f85ba46111'),(17682,NULL,NULL,NULL,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:57','2022-06-30 03:06:50',NULL,NULL,'d107a79e-b16f-480d-b0b0-3f1910017c94'),(17683,17682,NULL,11405,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:57','2021-05-18 03:20:57',NULL,NULL,'38532551-4235-47ec-9f16-e55ce7780d4a'),(17684,NULL,NULL,NULL,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:57','2022-08-08 06:59:41',NULL,NULL,'d9b85f79-46f8-4595-9124-cb170a1b9312'),(17685,17684,NULL,11406,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:57','2021-05-18 03:20:57',NULL,NULL,'02f24351-9cd7-4490-954f-6960489db5df'),(17686,NULL,NULL,NULL,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:57','2022-05-30 01:18:46',NULL,NULL,'0c660501-9dd7-4134-a221-cec36baa88e6'),(17687,17686,NULL,11407,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:57','2021-05-18 03:20:57',NULL,NULL,'d5def118-8885-4fa4-aa67-adbfd7185975'),(17688,NULL,NULL,NULL,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:58','2022-05-30 01:18:33',NULL,NULL,'baa3ad7a-8647-4673-a270-26fe9227482e'),(17689,17688,NULL,11408,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:58','2021-05-18 03:20:58',NULL,NULL,'2cf22504-5c11-456d-b779-fd7dc4f7c54d'),(17690,NULL,NULL,NULL,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:58','2022-05-30 01:18:23',NULL,NULL,'fc837075-3e3b-4dea-bf1a-2bb51a9a6cc0'),(17691,17690,NULL,11409,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:58','2021-05-18 03:20:58',NULL,NULL,'8d4b4fd0-4abb-4ac1-b523-cb593e6e9791'),(17692,NULL,NULL,NULL,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:58','2022-10-25 22:47:48',NULL,NULL,'874a5b2c-2594-4d4e-b5e5-3ea764d06c0a'),(17693,17692,NULL,11410,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:20:58','2021-05-18 03:20:58',NULL,NULL,'06b4c43a-9453-4211-9609-df181bd3da4a'),(17694,NULL,NULL,NULL,13,'craft\\elements\\Category',1,0,'2021-05-18 03:20:58','2021-05-18 03:20:58',NULL,NULL,'a60b4f0d-f919-4cf8-8de3-ea6c5415d03e'),(17709,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:21:51','2021-06-09 23:22:11',NULL,NULL,'913b7300-9749-46d5-b599-e2a2f5b85260'),(17711,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:23:02','2021-06-09 23:22:12',NULL,NULL,'3fbe2988-bf10-4d8f-b46e-07f2048cfb67'),(17713,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:24:10','2021-06-09 23:22:12',NULL,NULL,'f30510bf-a8f3-41d9-b61a-b40229a402c7'),(17715,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:25:29','2021-06-09 23:22:11',NULL,NULL,'2eff8ea2-7bea-4b6c-a5b2-2277e690f3f9'),(17716,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:26:02','2021-06-09 23:15:14',NULL,NULL,'1bc51f81-2409-42c1-b0d9-3a2003772481'),(17717,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:26:13','2021-06-09 23:15:07',NULL,NULL,'2ea7100b-5c90-46c2-a40d-d2556917e2bb'),(17718,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:26:28','2021-06-21 04:38:27',NULL,NULL,'2dd4e78b-8f31-4f72-8368-390c9bcafb79'),(17719,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:26:32','2021-06-09 23:21:06',NULL,NULL,'aa0aa322-3b57-4967-8606-460b7ac92025'),(17720,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:26:38','2021-06-09 23:15:26',NULL,NULL,'9cc56173-163d-43a9-a159-eb97a1884de3'),(17721,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:26:44','2021-06-21 04:38:26',NULL,NULL,'5a01d9c1-2a4c-46a2-afdc-97d40437079e'),(17722,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:26:47','2021-06-09 23:15:52',NULL,NULL,'c93fc359-ac38-40b3-b33f-a90ff9f60e3d'),(17723,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:26:51','2021-06-09 23:15:41',NULL,NULL,'3bba9d56-6e62-478d-9236-66aef9af6411'),(17724,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:26:57','2021-06-09 23:15:49',NULL,NULL,'23f16ccb-0c89-465d-bc3e-30bf06dbdca7'),(17725,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:26:59','2021-06-09 23:15:51',NULL,NULL,'63089eef-17fb-4fc7-92e2-f4c31b1b715a'),(17726,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:27:00','2021-06-09 23:14:29',NULL,NULL,'c873d5ac-2b7a-4794-8831-9e626076a0e2'),(17727,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:27:06','2021-06-09 23:15:54',NULL,NULL,'fc92b5d9-a0a7-41f4-a61a-240b0470dbfb'),(17728,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:27:09','2021-06-09 23:17:12',NULL,NULL,'a57c8947-2b25-4baf-bd33-4f93094eb919'),(17729,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:27:12','2021-06-09 23:17:13',NULL,NULL,'a86fe54a-2384-4aa4-8b9b-c01b95e0c7c5'),(17730,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:27:15','2021-06-09 23:23:13',NULL,NULL,'b49e49cc-af3e-4782-bac4-7d45012e728c'),(17731,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:27:15','2021-06-09 23:23:14',NULL,NULL,'32aaf596-3f22-4205-9b05-29ea5ec5c931'),(17732,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:27:16','2021-06-09 23:21:34',NULL,NULL,'2dabc90d-f922-4c3a-a8e3-34d85b3d75bd'),(17733,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:27:17','2021-06-09 23:21:07',NULL,NULL,'7fd6f76a-3143-449c-aeba-d9e1088b76ac'),(17734,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:27:18','2021-06-09 23:21:41',NULL,NULL,'9fa7ab1c-3190-44aa-b5a5-2156769ae89c'),(17735,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:27:21','2021-06-09 23:25:21',NULL,NULL,'61eb52c1-1360-4d25-a91d-54a8a7af0d20'),(17736,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:27:33','2021-06-09 23:25:23',NULL,NULL,'843af797-c47e-430d-9d46-7b5f8684d891'),(17737,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:27:35','2021-06-09 23:16:32',NULL,NULL,'952ce3de-e895-47ef-bc06-0f73363c6d42'),(17738,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:27:39','2021-06-09 23:17:14',NULL,NULL,'4b02f0d2-f125-411c-8ce7-3511595fca37'),(17739,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:27:42','2021-06-09 23:25:22',NULL,NULL,'85b9d9c1-e45c-4d46-b995-7ede4e0fd179'),(17740,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:27:43','2021-06-09 23:25:15',NULL,NULL,'0231cc71-33ae-4a14-943d-b2158578a49a'),(17741,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:27:47','2021-06-09 23:25:25',NULL,NULL,'139e303b-cb77-46eb-8dbc-884e86af39c4'),(17742,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:27:51','2021-06-09 23:25:24',NULL,NULL,'c2018327-8cf3-4234-8d22-dbbce9eaa9a2'),(17743,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:27:55','2021-06-21 04:38:36',NULL,NULL,'1ca403f4-a495-4fee-ab31-ebcdaf43b91c'),(17744,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:27:58','2021-06-09 23:20:42',NULL,NULL,'23cb93df-e45d-468a-8255-38567e78c600'),(17745,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:28:18','2021-06-09 23:20:32',NULL,NULL,'0194496d-874c-40b4-a0c6-a99b44816ac0'),(17746,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:28:34','2021-06-09 23:20:09',NULL,NULL,'ff11eddc-56b5-4669-ad15-eb033b0d1023'),(17747,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:28:58','2021-06-09 23:20:49',NULL,NULL,'e37324e5-68d0-459c-b63c-8d5c5c78ca82'),(17748,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:29:23','2021-06-09 23:20:52',NULL,NULL,'137802ef-1ef9-479f-9520-735fd0ce8ad9'),(17749,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:29:38','2021-06-09 23:22:11',NULL,NULL,'96935ee2-0288-444a-b96a-c35e0a9539bf'),(17750,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:29:50','2021-06-09 23:20:56',NULL,NULL,'4bb5e33f-8459-445c-a47d-66ea235778ab'),(17751,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:30:09','2021-06-09 23:20:59',NULL,NULL,'63d77f6c-10eb-4410-9225-237a528442b8'),(17752,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:30:32','2021-06-09 23:20:14',NULL,NULL,'2f5edb9e-79ff-43a6-b576-4e3edfb40c1f'),(17753,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:30:51','2021-06-09 23:20:17',NULL,NULL,'c6108b76-efd4-49b1-a962-53e623e39ad0'),(17754,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:31:08','2021-06-09 23:20:20',NULL,NULL,'512f27b8-dad0-48df-ad62-fc4145f14e5e'),(17755,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:31:27','2021-06-09 23:20:23',NULL,NULL,'537eabef-0b8b-4457-96e7-ca7ce76cf9a9'),(17756,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:31:44','2021-06-09 23:20:28',NULL,NULL,'aebfcc2b-e637-4819-ac4f-eb4c60d8c3f9'),(17757,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:32:15','2021-06-09 23:19:44',NULL,NULL,'5b31b7e8-c49a-4baa-9419-58854d0c5c4c'),(17758,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:32:52','2021-06-09 23:19:48',NULL,NULL,'9bf65778-9a1f-4201-91e0-a584a58d5043'),(17759,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:33:24','2021-06-09 23:19:51',NULL,NULL,'fa4f6c1a-90f7-405e-a5c7-65a6925a5105'),(17760,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:33:41','2021-06-09 23:19:54',NULL,NULL,'f44c771f-138b-4078-8399-2d6e6941b818'),(17761,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:34:06','2021-06-09 23:19:57',NULL,NULL,'0e00006c-02ba-4558-8187-2ca49ab6fff9'),(17762,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:34:23','2021-06-09 23:20:00',NULL,NULL,'7520cb8d-4a88-488c-817c-b1277e7e3b27'),(17763,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:34:49','2021-06-09 23:20:03',NULL,NULL,'00b1f76a-2361-4637-a889-2ff749c30eae'),(17764,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:35:00','2021-06-09 23:19:41',NULL,NULL,'3f257512-df2e-4248-9f90-189ba931dcb1'),(17765,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:35:15','2021-06-09 23:20:06',NULL,NULL,'5c724e3f-a7cc-4ddf-b7c2-c44bb1dd8a2f'),(17766,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:35:41','2021-06-09 23:20:12',NULL,NULL,'427ca000-5400-49d2-9c73-49a096641b27'),(17767,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:35:54','2021-06-21 04:39:41',NULL,NULL,'d9244e05-808e-4a91-af35-42770ec84b47'),(17770,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:37:29','2021-06-09 23:16:37',NULL,NULL,'ce02e083-4404-479d-992e-2aa9874051fe'),(17771,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:37:32','2021-06-09 23:16:38',NULL,NULL,'7e04d7d7-1960-439e-b4c1-ced51c0115fb'),(17772,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:37:34','2021-06-09 23:16:39',NULL,NULL,'ef3a92ab-9dfb-4042-a110-3aa81001bf07'),(17773,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:37:37','2021-06-09 23:16:40',NULL,NULL,'5a3709ca-d12a-4a3a-9c36-1dbbe1bbe9c3'),(17774,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:37:39','2021-06-09 23:20:45',NULL,NULL,'1433a545-fdba-455e-a857-40f49ce954ae'),(17775,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:37:41','2021-06-09 23:20:46',NULL,NULL,'e15f15b9-902d-411b-812d-1154a89cd259'),(17776,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:37:43','2021-06-09 23:20:47',NULL,NULL,'5f678e42-1cd8-4699-8a15-ffaa85a9c0d0'),(17777,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:37:45','2021-06-09 23:20:47',NULL,NULL,'1e2b7776-28bc-4411-bca0-5fdb8dad42f8'),(17778,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:37:47','2021-06-09 23:20:40',NULL,NULL,'7117a849-20c3-4460-8e51-f7f013ab065b'),(17779,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:37:48','2021-06-09 23:20:40',NULL,NULL,'85c5299f-1af8-4700-ad8c-d65ee645e3f9'),(17780,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:37:50','2021-06-09 23:20:36',NULL,NULL,'4292a3a4-636e-4a4e-b040-f52ed95c7bd9'),(17781,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:37:52','2021-06-09 23:20:41',NULL,NULL,'b7047bd7-6b61-4e71-85c9-fe89c03a3eed'),(17782,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:37:54','2021-06-09 23:23:38',NULL,NULL,'fa79c3b1-7471-4d30-9aeb-fcb7e051822c'),(17784,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:38:21','2021-06-09 23:17:58',NULL,NULL,'1accd489-94c9-47af-8e7c-2dc2c1e8c7e5'),(17785,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:38:31','2021-06-09 23:22:47',NULL,NULL,'6d3e65c5-a513-429a-a6b7-4e07b21e1704'),(17786,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:38:43','2021-06-09 23:22:48',NULL,NULL,'6d688acd-8fd2-4e08-8562-51cff529abee'),(17787,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:38:51','2021-06-09 23:22:48',NULL,NULL,'3eb58c82-fd7b-47c1-a994-0dc87398fd6e'),(17788,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:38:53','2021-06-09 23:22:34',NULL,NULL,'7283bada-4361-4960-a12b-65799da4b35e'),(17789,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:38:55','2021-06-09 23:21:42',NULL,NULL,'9b3331ab-6739-4a6e-863d-dbaf5f3ac08f'),(17790,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:38:57','2021-06-09 23:21:04',NULL,NULL,'7c9107c8-4622-4602-8955-10130a1cb17e'),(17791,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:38:59','2021-06-09 23:22:46',NULL,NULL,'fdccc484-f3a3-4866-9d66-7c27b3ea23bb'),(17792,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:39:01','2021-06-09 23:17:35',NULL,NULL,'674c11b5-9252-43b4-8ddd-9a3d2ecb0e9b'),(17793,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:39:17','2021-06-09 23:25:10',NULL,NULL,'4cca9f66-b887-4520-9a56-50eed3702c05'),(17794,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:39:18','2021-06-09 23:18:59',NULL,NULL,'f77722ce-7c26-4b36-a88a-ece008227b4a'),(17795,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:39:20','2021-06-09 23:23:29',NULL,NULL,'c24ed010-40a9-4bc6-9e5d-99763b266c12'),(17796,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:39:21','2021-06-09 23:19:01',NULL,NULL,'0416d522-eca0-4ef8-ae9c-0e7b942d36e0'),(17797,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:39:22','2021-06-21 04:38:03',NULL,NULL,'3a46b292-45fe-403a-ad1b-a595dbd35f7b'),(17798,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:39:22','2021-06-09 23:16:31',NULL,NULL,'f9b159e1-1872-449c-85b2-fbb085075c48'),(17807,17692,NULL,11425,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:44:18','2021-05-18 03:44:18',NULL,NULL,'4a8e32c2-f544-40b2-be30-3cec6e6deafc'),(17808,17690,NULL,11426,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:45:31','2021-05-18 03:45:31',NULL,NULL,'1ada7769-67a3-41e3-96ef-465273e7b9a9'),(17809,17688,NULL,11427,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:46:06','2021-05-18 03:46:06',NULL,NULL,'ac5e5dff-77c8-48f3-b8b9-e821de02c006'),(17810,17686,NULL,11428,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:46:30','2021-05-18 03:46:30',NULL,NULL,'51153acb-e941-49bc-aebc-a42dddd0562b'),(17811,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:47:57','2021-06-09 23:16:19',NULL,NULL,'9e0679c4-c66a-4a2d-89eb-84a1e48f18dd'),(17812,17684,NULL,11429,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:48:02','2021-05-18 03:48:02',NULL,NULL,'f0577b86-9133-42c5-9a9d-2e601d5d94c1'),(17813,17682,NULL,11430,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:48:36','2021-05-18 03:48:36',NULL,NULL,'c3816a02-8ab3-4f67-943a-cdb03c88dc69'),(17814,17680,NULL,11431,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:49:00','2021-05-18 03:49:00',NULL,NULL,'380dcb3f-8a8e-490e-ab0c-1162c756e2e6'),(17815,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:49:47','2021-06-21 04:38:46',NULL,NULL,'9c85bf03-9a22-4712-ad5a-b6351e6d77ff'),(17816,17678,NULL,11432,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:49:52','2021-05-18 03:49:52',NULL,NULL,'12ba504f-bab7-4f7a-b24a-8e8c15dc5d27'),(17817,17676,NULL,11433,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:50:22','2021-05-18 03:50:22',NULL,NULL,'dff65d1d-2178-4157-9513-070c5e01420d'),(17818,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-05-18 03:51:13','2021-06-21 04:38:10',NULL,NULL,'ffa65f74-c450-44c7-88ce-d461ca1510ba'),(17819,17674,NULL,11434,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:51:16','2021-05-18 03:51:16',NULL,NULL,'6de3aca2-6874-460e-8ce5-d9d2db439f5f'),(17820,17672,NULL,11435,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:52:25','2021-05-18 03:52:25',NULL,NULL,'778fe6ef-f536-47ad-a42c-32c14a751a3b'),(17821,17670,NULL,11436,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:54:13','2021-05-18 03:54:13',NULL,NULL,'1e7a1d3f-72e9-407b-8258-ea1adeacc3db'),(17822,17668,NULL,11437,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:55:28','2021-05-18 03:55:28',NULL,NULL,'3734706e-3fac-4bb9-99bb-069c8afd679f'),(17823,17666,NULL,11438,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:56:17','2021-05-18 03:56:17',NULL,NULL,'952528a6-fcf8-4985-92f6-bcdb51dedaa3'),(17824,17664,NULL,11439,12,'craft\\elements\\Entry',1,0,'2021-05-18 03:56:55','2021-05-18 03:56:55',NULL,NULL,'d323d027-4be6-4676-8aa2-791db62911a9'),(17825,17662,NULL,11440,12,'craft\\elements\\Entry',1,0,'2021-05-18 04:00:05','2021-05-18 04:00:05',NULL,NULL,'855bd912-e1c6-45ac-822a-3d9c9dee5250'),(17826,17660,NULL,11441,12,'craft\\elements\\Entry',1,0,'2021-05-18 04:00:53','2021-05-18 04:00:53',NULL,NULL,'a33ddcf7-4340-401a-866c-21c33ca1c169'),(17827,17654,NULL,11442,12,'craft\\elements\\Entry',1,0,'2021-05-18 04:01:45','2021-05-18 04:01:45',NULL,NULL,'135d4594-21b8-4c2b-97f0-dda1df0406f9'),(17828,17652,NULL,11443,12,'craft\\elements\\Entry',1,0,'2021-05-18 04:02:23','2021-05-18 04:02:23',NULL,NULL,'fe03e017-89da-4e9f-9236-21693bea0774'),(17829,17648,NULL,11444,12,'craft\\elements\\Entry',1,0,'2021-05-18 04:03:05','2021-05-18 04:03:05',NULL,NULL,'b5533b0a-4ffb-416d-8edb-6c9dc9141b3b'),(17830,17650,NULL,11445,12,'craft\\elements\\Entry',1,0,'2021-05-18 04:03:49','2021-05-18 04:03:49',NULL,NULL,'0db45560-6dc1-4485-ab26-aea80870d8e4'),(17831,17646,NULL,11446,12,'craft\\elements\\Entry',1,0,'2021-05-18 04:04:31','2021-05-18 04:04:31',NULL,NULL,'ea074408-f2df-4d12-9c1e-b91e2871e425'),(17832,17644,NULL,11447,12,'craft\\elements\\Entry',1,0,'2021-05-18 04:05:05','2021-05-18 04:05:05',NULL,NULL,'7550d456-bebb-4c5b-a3f4-a1c5c7503e45'),(17833,17635,NULL,11448,12,'craft\\elements\\Entry',1,0,'2021-05-18 04:05:43','2021-05-18 04:05:43',NULL,NULL,'8947da6d-a168-48dc-91e7-1b107aef7fdb'),(17834,17642,NULL,11449,12,'craft\\elements\\Entry',1,0,'2021-05-18 04:06:44','2021-05-18 04:06:44',NULL,NULL,'fa17c189-304d-4ddc-a5c7-4d92fb6f8ae0'),(17835,17638,NULL,11450,12,'craft\\elements\\Entry',1,0,'2021-05-18 04:07:42','2021-05-18 04:07:42',NULL,NULL,'07349a61-e64a-4b3c-8b1b-64480cf71f97'),(17836,17633,NULL,11451,12,'craft\\elements\\Entry',1,0,'2021-05-18 04:08:21','2021-05-18 04:08:21',NULL,NULL,'9ef80628-1914-4cee-86e6-20390e1f3d21'),(17837,17631,NULL,11452,12,'craft\\elements\\Entry',1,0,'2021-05-18 04:08:57','2021-05-18 04:08:57',NULL,NULL,'82b6f0e6-43da-4b32-8d4d-0885b4a71a7e'),(17838,17628,NULL,11453,12,'craft\\elements\\Entry',1,0,'2021-05-18 04:09:35','2021-05-18 04:09:35',NULL,NULL,'2e84aca3-00f1-4132-84b6-94ea4d7a66e1'),(17839,17626,NULL,11454,12,'craft\\elements\\Entry',1,0,'2021-05-18 04:10:15','2021-05-18 04:10:15',NULL,NULL,'5539b200-ddef-4b49-91b3-70cee4af31ec'),(17840,17621,NULL,11455,12,'craft\\elements\\Entry',1,0,'2021-05-18 04:11:10','2021-05-18 04:11:10',NULL,NULL,'ecec8bce-bc05-4b10-9b9b-fe68b6bb7e1f'),(17841,17623,NULL,11456,12,'craft\\elements\\Entry',1,0,'2021-05-18 04:11:52','2021-05-18 04:11:52',NULL,NULL,'8d219766-a0f7-4bea-bc6b-df247505f299'),(17842,17617,NULL,11457,12,'craft\\elements\\Entry',1,0,'2021-05-18 04:12:33','2021-05-18 04:12:33',NULL,NULL,'1356fd67-34c4-4fe1-8a60-02c34c9dadb1'),(17843,17615,NULL,11458,12,'craft\\elements\\Entry',1,0,'2021-05-18 04:13:08','2021-05-18 04:13:08',NULL,NULL,'521faa95-e304-47d5-8e19-e502c011781f'),(17844,17613,NULL,11459,12,'craft\\elements\\Entry',1,0,'2021-05-18 04:13:41','2021-05-18 04:13:41',NULL,NULL,'6f3053f9-d746-43f0-9200-aaeb30500049'),(17845,17611,NULL,11460,12,'craft\\elements\\Entry',1,0,'2021-05-18 04:14:19','2021-05-18 04:14:19',NULL,NULL,'3eeb4e43-d27f-4f68-85af-f61d2ead7fe8'),(17846,17608,NULL,11461,12,'craft\\elements\\Entry',1,0,'2021-05-18 04:14:57','2021-05-18 04:14:57',NULL,NULL,'1b3e567b-6aef-46c7-9fd1-50efc7a52360'),(17847,17603,NULL,11462,12,'craft\\elements\\Entry',1,0,'2021-05-18 04:15:29','2021-05-18 04:15:29',NULL,NULL,'b3c7617a-d62a-4047-9fa3-790a0de3ad33'),(17850,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-05-25 06:14:02','2021-05-25 06:14:02',NULL,NULL,'88ecd744-5960-4613-97e3-b5f322d26c1b'),(17851,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-05-25 06:16:19','2021-05-25 06:16:19',NULL,NULL,'ae152f71-e55a-4383-982b-f727882da4a3'),(17855,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-05-26 01:35:56','2021-05-26 01:35:56',NULL,NULL,'31c4b89d-7abf-4114-9993-aa29924ed2cc'),(17857,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-05-26 01:44:01','2021-05-26 01:44:01',NULL,NULL,'8eefb1e3-6b3a-46cb-8e06-3d8d8aae45bb'),(17862,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-05-26 02:12:21','2021-05-26 02:12:21',NULL,NULL,'5369684e-59f1-4d3a-bba6-ec04ecb1aa3f'),(17864,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-05-26 02:16:07','2021-05-26 02:16:07',NULL,NULL,'2e0cf00a-d533-4ede-a66b-7b61d6d987f0'),(17866,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-05-26 02:17:58','2021-05-26 02:17:58',NULL,NULL,'959a35d0-683c-4968-98fc-7c92cd3c8476'),(17868,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-05-26 03:26:45','2021-05-26 03:26:45',NULL,NULL,'74aed6db-9fd6-4e41-bf03-a26e4e058437'),(17872,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-05-26 03:44:07','2021-05-26 03:44:07',NULL,NULL,'8dbbfc74-af2b-4de3-9fef-31cfbf6a65e7'),(17875,NULL,NULL,NULL,5,'craft\\elements\\User',1,0,'2021-05-31 07:10:29','2023-03-06 02:48:59',NULL,NULL,'023c5060-f280-4c22-89ea-e91ef48e55db'),(17876,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-05-31 07:10:29','2023-03-06 02:48:59',NULL,NULL,'9645f555-0b5f-4026-9ea9-fa5a9bc95013'),(17877,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-05-31 07:10:29','2023-03-06 02:48:59',NULL,NULL,'3966cc99-99f4-4f2a-81dc-c1a5b038b63c'),(17878,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-05-31 07:10:29','2023-03-06 02:48:59',NULL,NULL,'a4f20340-51d2-4816-abd8-4b626b1aa3fc'),(17879,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-05-31 07:10:29','2023-03-06 02:48:59',NULL,NULL,'264889e4-45b1-4e79-811d-633c985afe5d'),(17880,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-05-31 07:10:29','2023-03-06 02:48:59',NULL,NULL,'cd543d41-e41b-4016-95a6-d1f6280d9157'),(17881,NULL,NULL,NULL,5,'craft\\elements\\User',1,0,'2021-05-31 07:14:26','2023-03-09 04:28:33',NULL,NULL,'1ce2e485-5c0b-4802-b70b-4a145a8ebf76'),(17882,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-05-31 07:14:26','2023-03-09 04:28:33',NULL,NULL,'dcf47721-c4f3-431a-9f27-0f0c708282ad'),(17883,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-05-31 07:14:26','2023-03-09 04:28:33',NULL,NULL,'e6481ad4-7d0b-44b4-9b5f-813de1bfeeaa'),(17884,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-05-31 07:14:26','2023-03-09 04:28:33',NULL,NULL,'e9f18cea-2d94-46fb-93ef-3b03c237ef46'),(17885,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-05-31 07:14:26','2023-03-09 04:28:33',NULL,NULL,'b67243ba-4460-4be3-a274-f3183c0b7228'),(17886,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-05-31 07:14:26','2023-03-09 04:28:33',NULL,NULL,'d4314b62-98d1-4184-998e-e96de4094f36'),(17887,NULL,NULL,NULL,5,'craft\\elements\\User',1,0,'2021-05-31 07:17:11','2023-04-06 04:54:21',NULL,NULL,'26114393-5797-4a46-8536-34b901cf4a76'),(17888,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-05-31 07:17:11','2023-04-06 04:54:21',NULL,NULL,'df23071a-16af-4916-a2ed-2f5669266fcf'),(17889,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-05-31 07:17:11','2023-04-06 04:54:21',NULL,NULL,'9bc92647-112a-44e5-8e59-c1b0ebef6a94'),(17890,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-05-31 07:17:11','2023-04-06 04:54:21',NULL,NULL,'d3a47d93-dc96-4843-b558-0415bab4f0bd'),(17891,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-05-31 07:17:11','2023-04-06 04:54:21',NULL,NULL,'528fc4d8-28df-4276-aeec-5ff929bd7d29'),(17892,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-05-31 07:17:11','2023-04-06 04:54:21',NULL,NULL,'b91e4f0e-dfa0-44fc-8cbe-d4524ee21974'),(17893,NULL,NULL,NULL,5,'craft\\elements\\User',1,0,'2021-05-31 07:20:10','2023-03-09 04:39:16',NULL,NULL,'ee5ba63d-8bc6-457e-9c99-7aa9b84f0923'),(17894,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-05-31 07:20:10','2023-03-09 04:39:16',NULL,NULL,'6e33c7cd-6e24-40e0-aa8a-04a83ece16f7'),(17895,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-05-31 07:20:10','2023-03-09 04:39:16',NULL,NULL,'e781b07b-99f0-4870-8bbb-c0fb20c2f779'),(17896,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-05-31 07:20:10','2023-03-09 04:39:16',NULL,NULL,'2224ffb2-5080-4632-ad4c-f1a16b965640'),(17897,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-05-31 07:20:10','2023-03-09 04:39:16',NULL,NULL,'5765348c-3c58-4213-aa60-c3723977f02b'),(17898,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-05-31 07:20:10','2023-03-09 04:39:16',NULL,NULL,'f1ea275f-3204-4b25-8e18-bae0f33b7114'),(17899,NULL,NULL,NULL,5,'craft\\elements\\User',1,0,'2021-06-01 06:34:23','2023-03-09 04:28:28',NULL,NULL,'1176c3b7-e32f-4bdc-a5c0-49240903efad'),(17900,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 06:34:23','2023-03-09 04:28:28',NULL,NULL,'0a4d4f8b-a168-43d4-ba48-12346399532c'),(17901,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 06:34:23','2023-03-09 04:28:28',NULL,NULL,'b1dc4948-6fda-4c75-a7ff-673381801b8b'),(17902,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 06:34:23','2023-03-09 04:28:28',NULL,NULL,'a7e73020-e101-42a3-b0c4-4536ab1328b6'),(17903,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 06:34:23','2023-03-09 04:28:28',NULL,NULL,'e50a9a36-065e-4150-a95e-134bee806a19'),(17904,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 06:34:23','2023-03-09 04:28:28',NULL,NULL,'c2e1de65-1cb9-4d54-863f-f2b168b103a8'),(17905,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 06:40:02','2022-10-24 23:08:02',NULL,NULL,'6a3b5a7d-2a03-4dd7-b3cb-5df503fd6ad2'),(17906,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 06:40:02','2022-10-24 23:08:02',NULL,NULL,'16841c5f-358e-4b7d-89fd-a47f5d7302e8'),(17907,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 06:40:02','2022-10-24 23:08:02',NULL,NULL,'19be7e11-7f41-455b-9439-053752b2f89c'),(17908,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 06:40:02','2022-10-24 23:08:02',NULL,NULL,'5a85f6bb-8112-43de-bee3-28633a835df4'),(17909,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 06:40:02','2022-10-24 23:08:02',NULL,NULL,'525776f7-8eb5-457f-8fac-b811f9c42c30'),(17921,NULL,NULL,NULL,5,'craft\\elements\\User',1,0,'2021-06-01 06:59:14','2023-03-09 04:28:32',NULL,NULL,'4b8b2da4-b605-4126-aba1-6d055e1ec062'),(17922,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 06:59:14','2023-03-09 04:28:32',NULL,NULL,'2f1146b6-0ceb-48b3-bbba-f178c2387533'),(17923,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 06:59:14','2023-03-09 04:28:32',NULL,NULL,'1416d110-df9d-4eb2-944e-ba0032dde707'),(17924,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 06:59:14','2023-03-09 04:28:32',NULL,NULL,'2205c611-3406-4749-a02e-f4729b5ad831'),(17925,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 06:59:14','2023-03-09 04:28:32',NULL,NULL,'c467fbd9-dd5d-4861-92ab-415561f67349'),(17926,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 06:59:14','2023-03-09 04:28:32',NULL,NULL,'965103ec-5887-44b3-a1e9-fe73c552d42f'),(17934,NULL,NULL,NULL,5,'craft\\elements\\User',1,0,'2021-06-01 07:03:46','2023-03-09 04:28:29',NULL,NULL,'66c0df64-eb7b-40a0-bee1-546b827b06f1'),(17935,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 07:03:46','2023-03-09 04:28:29',NULL,NULL,'396813db-e64d-479c-bbd0-15ae70479052'),(17936,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 07:03:46','2023-03-09 04:28:29',NULL,NULL,'f92eaffe-2686-4a45-9b4a-43de1dc2d12a'),(17937,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 07:03:46','2023-03-09 04:28:29',NULL,NULL,'149bc356-d4a3-4682-8b0b-5c009b8e7f9a'),(17938,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 07:03:46','2023-03-09 04:28:29',NULL,NULL,'3d543a2e-80a0-449c-afe4-8cfa9a7275dd'),(17939,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 07:03:46','2023-03-09 04:28:29',NULL,NULL,'2bffa725-0a5b-43aa-b841-34fa38341796'),(17941,NULL,NULL,NULL,5,'craft\\elements\\User',1,0,'2021-06-01 07:07:28','2023-03-09 04:28:33',NULL,NULL,'b3204e53-8a00-4d34-851e-48be768e776e'),(17942,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 07:07:28','2023-03-09 04:28:33',NULL,NULL,'26c28f12-a590-4a85-9863-c164f99fd71b'),(17943,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 07:07:28','2023-03-09 04:28:33',NULL,NULL,'e6182036-49c6-45c0-8126-77d1780ae5ed'),(17944,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 07:07:28','2023-03-09 04:28:33',NULL,NULL,'d48f05d2-c945-45fc-b5f4-06eca048c42d'),(17945,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 07:07:28','2023-03-09 04:28:33',NULL,NULL,'191adcb9-cdc1-4d6b-88fe-5b707806261a'),(17946,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 07:07:28','2023-03-09 04:28:33',NULL,NULL,'6bc6b33d-c404-4363-94bb-c0b42afda01f'),(17954,NULL,NULL,NULL,5,'craft\\elements\\User',1,0,'2021-06-01 07:09:17','2023-03-09 04:28:45',NULL,NULL,'dc044d5e-1601-48b5-858a-5fcc5ed93d6b'),(17956,NULL,NULL,NULL,5,'craft\\elements\\User',1,0,'2021-06-01 07:09:51','2023-03-09 04:28:36',NULL,NULL,'571c3d82-51de-4547-b93c-e5283efdae2d'),(17958,NULL,NULL,NULL,5,'craft\\elements\\User',1,0,'2021-06-01 07:14:11','2021-06-01 07:14:11',NULL,NULL,'59e679af-d31e-48fb-b7c2-b18794546b05'),(17959,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 07:14:11','2021-06-01 07:14:11',NULL,NULL,'285d77fd-02cf-4e25-a3ea-895179754cad'),(17960,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 07:14:11','2021-06-01 07:14:11',NULL,NULL,'41e8a093-6a4f-4492-bc34-c2dcc46f6e73'),(17961,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 07:14:12','2021-06-01 07:14:12',NULL,NULL,'8aee6c5b-6c9c-4d0d-b785-7c8480f486a1'),(17962,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 07:14:12','2021-06-01 07:14:12',NULL,NULL,'4207fd71-26f4-4da4-9afd-fc53aa2153e9'),(17963,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 07:14:12','2021-06-01 07:14:12',NULL,NULL,'02dda0a5-7a4d-4945-bd76-093b502c2040'),(17964,NULL,NULL,NULL,16,'craft\\elements\\Category',1,0,'2021-06-01 07:14:22','2021-06-01 07:14:22',NULL,NULL,'0c174b63-3a07-4f3a-ad4a-a3247baadac2'),(17965,NULL,NULL,NULL,16,'craft\\elements\\Category',1,0,'2021-06-01 07:14:29','2021-06-01 07:14:29',NULL,NULL,'6370ee23-17c6-4597-8476-4e0368f9a8fe'),(17966,NULL,NULL,NULL,16,'craft\\elements\\Category',1,0,'2021-06-01 07:14:34','2021-06-01 07:14:34',NULL,NULL,'f6af9ea1-7e7b-4802-ada0-c4eb1fa92747'),(17967,NULL,NULL,NULL,16,'craft\\elements\\Category',1,0,'2021-06-01 07:14:41','2021-06-01 07:14:41',NULL,NULL,'45e4870f-ef44-4c9c-9b57-b8a9a4b73a02'),(17968,NULL,NULL,NULL,16,'craft\\elements\\Category',1,0,'2021-06-01 07:14:46','2021-06-01 07:14:46',NULL,NULL,'fbc75391-dd3c-4438-ac6b-a6d9381c98ed'),(17969,NULL,NULL,NULL,16,'craft\\elements\\Category',1,0,'2021-06-01 07:14:51','2021-06-01 07:14:51',NULL,NULL,'de0476b0-c0b3-45e5-8a23-3f3d98350e30'),(17970,NULL,NULL,NULL,16,'craft\\elements\\Category',1,0,'2021-06-01 07:14:56','2021-06-01 07:14:56',NULL,NULL,'934439fa-1c1f-47f3-96ed-47f80e27796a'),(17971,NULL,NULL,NULL,16,'craft\\elements\\Category',1,0,'2021-06-01 07:15:01','2021-06-01 07:15:01',NULL,NULL,'811772b1-7a76-4b4a-8c4e-e2045a6455b5'),(17972,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 07:19:49','2023-03-09 04:28:45',NULL,NULL,'7accd90e-b023-4035-97b8-42e57756ffc6'),(17973,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 07:19:49','2023-03-09 04:28:45',NULL,NULL,'73258563-5731-43d1-b467-505cba1ceaee'),(17974,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 07:19:49','2023-03-09 04:28:45',NULL,NULL,'e8438570-185f-421b-bb72-362c0ca1628b'),(17975,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 07:19:49','2023-03-09 04:28:45',NULL,NULL,'9b4d207a-3dc1-4680-8d6c-069000bd45c2'),(17976,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 07:19:49','2023-03-09 04:28:45',NULL,NULL,'9b60360d-b9e6-4499-9ac3-433b2cb021b9'),(17977,16571,NULL,11470,6,'craft\\elements\\Entry',1,0,'2021-06-01 07:20:12','2021-06-01 07:20:12',NULL,NULL,'6f04796b-16a1-4419-9e6e-65c3ce1809b7'),(17978,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 07:20:12','2021-05-17 06:16:41',NULL,NULL,'981c8423-6a4c-4642-aeea-f3cb3b859797'),(17979,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 07:20:12','2021-05-17 06:16:41',NULL,NULL,'360fd6d9-fa8d-447f-bad0-db03aa3f82a8'),(17980,NULL,NULL,NULL,8,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 07:20:12','2021-05-17 06:16:41',NULL,NULL,'60ecb077-06a8-4b0f-9cb7-c01b12ded363'),(17981,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 07:20:12','2021-05-17 06:16:41',NULL,NULL,'4886e691-ed07-4f6b-b131-bdf8aa5079e3'),(17982,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 07:20:12','2021-05-17 06:16:42',NULL,NULL,'62608b45-60b6-4db4-bb45-26dc10bc721f'),(17983,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 07:20:12','2021-05-17 06:16:42',NULL,NULL,'933321d2-324c-4040-8719-d3446f5d7a88'),(17984,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 07:20:12','2021-05-17 06:16:42',NULL,NULL,'cae3bcbb-7c62-481e-9808-bc86db2d6681'),(17985,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 07:20:12','2021-05-17 06:16:42',NULL,NULL,'00f055c8-ab58-464e-80a0-a831a3444246'),(17986,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 07:20:12','2021-05-17 06:16:42',NULL,NULL,'12030164-4630-4605-92a5-463333c295de'),(17987,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 07:20:12','2021-05-17 06:16:42',NULL,NULL,'05328bab-b5c2-4e57-affb-171dfaf428a7'),(17988,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 07:20:12','2021-05-17 06:16:42',NULL,NULL,'8572c31f-b074-4565-bf1d-6c71798b0709'),(17989,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-01 07:20:12','2021-05-17 06:16:42',NULL,NULL,'445af089-e3ba-4bdc-bcba-4f05430b07dc'),(17990,NULL,NULL,NULL,18,'craft\\elements\\GlobalSet',1,0,'2021-06-02 04:09:43','2021-11-15 01:17:36',NULL,NULL,'67a8fc88-4afd-4f2a-a30e-29cf12e725c4'),(17991,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-02 23:41:07','2023-03-09 04:28:36',NULL,NULL,'cc353683-67f7-42d4-b2bd-643c4a54d607'),(17992,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-02 23:41:07','2023-03-09 04:28:36',NULL,NULL,'3dd4bd0b-8d94-4017-968f-ae217bbc3799'),(17993,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-02 23:41:07','2023-03-09 04:28:36',NULL,NULL,'1685a966-bdf4-4340-9bb0-665b960badee'),(17994,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-02 23:41:07','2023-03-09 04:28:36',NULL,NULL,'2d7f1359-6719-4cdf-882a-8a1ed935459b'),(17995,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-02 23:41:07','2023-03-09 04:28:36',NULL,NULL,'7151a4b6-9eb2-482c-b871-ed9d65f37134'),(17996,NULL,NULL,NULL,5,'craft\\elements\\User',1,0,'2021-06-02 23:43:43','2023-03-09 04:28:37',NULL,NULL,'4a11839c-9164-4cc5-88a9-84a0fb47b526'),(17997,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-02 23:43:43','2023-03-09 04:28:37',NULL,NULL,'27b4a539-83db-468c-912e-7241702f2ac8'),(17998,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-02 23:43:43','2023-03-09 04:28:37',NULL,NULL,'57691c83-0010-4fdc-8187-b24cd0a486e1'),(17999,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-02 23:43:43','2023-03-09 04:28:37',NULL,NULL,'fd5749da-1246-4f92-8b34-b08db6757500'),(18000,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-02 23:43:43','2023-03-09 04:28:37',NULL,NULL,'1d60db07-a463-4036-8725-67a51ff93224'),(18001,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-06-02 23:43:43','2023-03-09 04:28:37',NULL,NULL,'ffd8de79-209d-47f8-8015-ccf154822221'),(18003,16828,NULL,11471,6,'craft\\elements\\Entry',1,0,'2021-06-03 05:19:19','2021-06-03 05:19:19',NULL,NULL,'c9f147c2-b48c-487c-b97f-d3287764eff3'),(18004,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 05:19:19','2021-05-17 23:51:22',NULL,NULL,'f67811d2-07a1-41d3-ae40-22420a911a1c'),(18005,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 05:19:19','2021-05-17 23:51:22',NULL,NULL,'db9528b8-d190-4917-b6ca-ed4ae61506e2'),(18021,16828,NULL,11472,6,'craft\\elements\\Entry',1,0,'2021-06-03 05:22:27','2021-06-03 05:22:27',NULL,NULL,'79a8c1d7-b4d7-4960-a9fa-f3e5c0378053'),(18022,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 05:22:27','2021-06-03 05:21:56',NULL,NULL,'d6d1fbf0-cab9-4b50-9260-9c9375472f15'),(18023,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 05:22:27','2021-06-03 05:21:56',NULL,NULL,'6d4de7e3-fede-444f-9ea7-f80a8eb1ce46'),(18024,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 05:22:27','2021-06-03 05:21:56',NULL,NULL,'a9f1e974-05b5-4a21-b1fc-ccf3942bcf27'),(18025,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 05:22:27','2021-06-03 05:21:56',NULL,NULL,'41fdf57e-72e8-48d7-98c6-da21e50a732f'),(18027,16828,NULL,11473,6,'craft\\elements\\Entry',1,0,'2021-06-03 05:27:17','2021-06-03 05:27:17',NULL,NULL,'1a8750e3-9768-4c31-96e1-3413f5e94322'),(18028,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 05:27:17','2021-06-03 05:27:17',NULL,NULL,'b2001114-5838-4d8c-8e55-30b0ca648db2'),(18029,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 05:27:17','2021-06-03 05:27:17',NULL,NULL,'f129677a-c19e-414f-a496-08d384cbc032'),(18030,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 05:27:17','2021-06-03 05:27:17',NULL,NULL,'fe4a8ef8-c65c-49b9-93c8-f8a2449912f0'),(18031,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 05:27:17','2021-06-03 05:27:17',NULL,NULL,'37c2df13-1908-4bc7-ab5f-004bf2521b1d'),(18032,NULL,NULL,NULL,19,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 05:27:18','2021-06-03 05:27:17',NULL,NULL,'c003d5d3-1e64-4eeb-8990-5c31796347f1'),(18033,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 05:55:30','2021-06-03 05:55:30',NULL,NULL,'868167d9-9d3c-4acf-b1ff-8f1599c51708'),(18034,16828,NULL,11474,6,'craft\\elements\\Entry',1,0,'2021-06-03 05:55:32','2021-06-03 05:55:32',NULL,NULL,'9a207745-6a4b-45d7-9d3c-a54bcbe37e27'),(18035,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 05:55:32','2021-06-03 05:27:17',NULL,NULL,'9fa6e3c2-a322-4401-8625-4f00745b68c8'),(18036,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 05:55:32','2021-06-03 05:27:17',NULL,NULL,'fc7bf357-04b6-45b6-996c-17145da8caab'),(18037,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 05:55:32','2021-06-03 05:27:17',NULL,NULL,'32390921-5fa2-4361-8006-b0cf4abd654d'),(18038,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 05:55:32','2021-06-03 05:27:17',NULL,NULL,'c135bc44-57c3-4dde-aa94-ff1fb735b674'),(18039,NULL,NULL,NULL,19,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 05:55:32','2021-06-03 05:27:17',NULL,NULL,'57b08222-dd01-4bb8-816f-f441f91609ec'),(18040,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 05:55:44','2021-06-03 05:55:44',NULL,NULL,'96c29321-e30b-4c7d-add5-6df585ab5285'),(18041,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 05:55:51','2021-06-03 05:55:51',NULL,NULL,'d5c68181-f5ba-466c-b44e-bf97d75a78a0'),(18042,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 05:55:59','2021-06-03 05:55:59',NULL,NULL,'6c235509-88b4-4a76-88a6-b114bad58c00'),(18043,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 05:56:05','2021-06-03 05:56:05',NULL,NULL,'e906b4b1-0232-470b-a579-33829f96ce6a'),(18044,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 05:56:11','2021-06-03 05:56:11',NULL,NULL,'cffdc8b6-b1e8-41b7-8b1e-e6076bc5ea53'),(18045,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 05:56:17','2021-06-03 05:56:17',NULL,NULL,'191fadc8-b9db-40d6-a87c-d85198c44f71'),(18046,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 05:56:23','2021-06-03 05:56:23',NULL,NULL,'666cd85e-204e-4ea3-9279-9bcf84a84190'),(18047,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 05:56:28','2021-06-03 05:56:28',NULL,NULL,'ae47198e-124e-488b-87bb-a2ba35fad509'),(18048,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 05:56:33','2021-06-03 05:56:33',NULL,NULL,'14ab979c-525a-48e1-b804-00071aecb3cb'),(18049,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 05:56:41','2021-06-03 05:56:41',NULL,NULL,'590a137a-ecf8-4582-8fab-8d983a97aa2c'),(18050,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 05:56:48','2021-06-03 05:56:48',NULL,NULL,'1d0667e6-b79e-4ebc-9403-d84d1f1002e1'),(18051,16828,NULL,11475,6,'craft\\elements\\Entry',1,0,'2021-06-03 05:56:53','2021-06-03 05:56:53',NULL,NULL,'21b145c7-e962-4f10-8210-53d4f558d742'),(18052,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 05:56:54','2021-06-03 05:27:17',NULL,NULL,'0577b50a-071f-4059-ad77-440961dab584'),(18053,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 05:56:54','2021-06-03 05:27:17',NULL,NULL,'218cfcd7-4737-46ff-a0e2-c49ac1a197eb'),(18054,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 05:56:54','2021-06-03 05:27:17',NULL,NULL,'18de9921-60e0-490d-921d-7190bd0f1634'),(18055,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 05:56:54','2021-06-03 05:27:17',NULL,NULL,'2f7323e0-d805-4bd4-b1e4-50c3df9b2667'),(18056,NULL,NULL,NULL,19,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 05:56:54','2021-06-03 05:27:17',NULL,NULL,'40375445-e437-434e-90ef-3d23e1374d53'),(18057,NULL,NULL,NULL,17,'craft\\elements\\Category',1,0,'2021-06-03 05:58:40','2021-06-03 05:58:40',NULL,NULL,'e3928d69-a690-4994-a31a-1c54938a6cb3'),(18071,16828,NULL,11476,6,'craft\\elements\\Entry',1,0,'2021-06-03 06:11:00','2021-06-03 06:11:00',NULL,NULL,'f95a8d63-d3b7-4868-ab76-ab5cdff9c5f8'),(18072,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 06:11:01','2021-06-03 06:10:49',NULL,NULL,'af21b2c5-292a-418d-bfce-56f720d10cec'),(18073,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 06:11:01','2021-06-03 06:10:49',NULL,NULL,'e156af59-4ebf-42aa-bdb7-3b14a7e44c9c'),(18074,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 06:11:01','2021-06-03 06:10:49',NULL,NULL,'164b4028-a264-423c-8118-944685fe7be2'),(18075,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 06:11:01','2021-06-03 06:10:49',NULL,NULL,'bf2a2e20-8747-4ab8-9789-56f40b343c85'),(18076,NULL,NULL,NULL,19,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 06:11:01','2021-06-03 06:10:49',NULL,NULL,'78f54799-0261-4135-a53c-8b1023bc6a9e'),(18077,16828,NULL,11477,6,'craft\\elements\\Entry',1,0,'2021-06-03 06:12:30','2021-06-03 06:12:30',NULL,NULL,'eb109b49-88a4-473f-82bb-7816c12c78b5'),(18078,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 06:12:30','2021-06-03 06:10:49',NULL,NULL,'6d7b9fca-d200-4516-bffb-c819d2a7b007'),(18079,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 06:12:30','2021-06-03 06:10:49',NULL,NULL,'b95e8944-35b1-4165-9d08-dd336680dbf0'),(18080,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 06:12:30','2021-06-03 06:10:49',NULL,NULL,'fe9dd7e2-cc25-4bf3-a864-8bbab2d8a228'),(18081,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 06:12:30','2021-06-03 06:10:49',NULL,NULL,'5e2de6f7-3cd5-4001-93b5-926dae75e27d'),(18082,NULL,NULL,NULL,19,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 06:12:30','2021-06-03 06:10:49',NULL,NULL,'67aa12c0-f28e-4754-8a7f-c777960a0f31'),(18097,16828,NULL,11478,6,'craft\\elements\\Entry',1,0,'2021-06-03 06:13:44','2021-06-03 06:13:44',NULL,NULL,'e97256ac-97c1-4c41-9c48-ed2607448c1c'),(18098,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 06:13:45','2021-06-03 06:13:29',NULL,NULL,'4a83e2d4-49bf-4efe-9dd5-be2787b63862'),(18099,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 06:13:45','2021-06-03 06:13:29',NULL,NULL,'15148e99-b23b-4034-942e-45ba203b9b31'),(18100,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 06:13:45','2021-06-03 06:13:29',NULL,NULL,'73d4a9c8-0111-46d0-9a50-d3217939ead9'),(18101,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 06:13:45','2021-06-03 06:13:29',NULL,NULL,'8f6ab7ae-5c2a-4dd9-9c50-77495aa035e4'),(18102,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 06:13:45','2021-06-03 06:13:29',NULL,NULL,'7391d204-c807-461c-9c6d-56e2e4374130'),(18103,NULL,NULL,NULL,19,'craft\\elements\\MatrixBlock',1,0,'2021-06-03 06:13:45','2021-06-03 06:13:29',NULL,NULL,'f824a70f-20e0-4bc5-b32f-83fefa8549c6'),(18104,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 06:15:07','2021-06-03 06:15:07',NULL,NULL,'1f591459-593f-4793-8c4f-18cc0fa2f136'),(18105,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 06:15:25','2021-06-03 06:15:25',NULL,NULL,'1df34f8b-42ab-4a36-a221-96759499765c'),(18106,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 06:15:35','2021-06-03 06:15:35',NULL,NULL,'1a1d005e-0767-43e1-b406-835aeb2c2bbf'),(18107,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 06:15:42','2021-06-03 06:15:42',NULL,NULL,'928f4bc5-7fac-4957-81b4-8f89411ce9e8'),(18108,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 06:15:49','2021-06-03 06:15:49',NULL,NULL,'e1f00f55-cdb3-4d2c-8ccf-c13c4dbe886c'),(18109,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2021-06-03 06:15:55','2022-08-08 06:46:50',NULL,NULL,'43c1f031-2d52-4ea2-a493-dbe00642ac18'),(18110,18109,NULL,11479,6,'craft\\elements\\Entry',1,0,'2021-06-03 06:15:55','2021-06-03 06:15:55',NULL,NULL,'50acf30f-ec4b-4e37-bc41-366267506f6d'),(18112,18109,NULL,11480,6,'craft\\elements\\Entry',1,0,'2021-06-03 06:16:26','2021-06-03 06:16:26',NULL,NULL,'0dcb13c1-863b-45fc-a4b6-30a967b48403'),(18113,18109,NULL,11481,6,'craft\\elements\\Entry',0,0,'2021-06-03 06:16:30','2021-06-03 06:16:30',NULL,NULL,'d8075b76-fcbd-4fc9-9407-1c7c9d352196'),(18114,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 06:16:46','2021-06-03 06:16:46',NULL,NULL,'72fbfde2-00a5-4c10-b263-a3325131d89c'),(18115,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 06:16:54','2021-06-03 06:16:54',NULL,NULL,'f7a59a71-11bd-4b6d-8f0b-8aaa2a0f90b4'),(18116,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 06:17:01','2021-06-03 06:17:01',NULL,NULL,'30819484-1f45-4f80-be2f-3812614d05cc'),(18117,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 06:17:12','2021-06-03 06:17:12',NULL,NULL,'7b278f02-52c6-4b03-94db-9d90f3e83081'),(18118,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 06:17:17','2021-06-03 06:17:17',NULL,NULL,'de717414-3d08-4bb3-92d7-d93c396829d8'),(18119,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 06:17:23','2021-06-03 06:17:23',NULL,NULL,'0c1b0d02-357b-40b0-a93e-816ffc5d252b'),(18120,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 06:17:28','2021-06-03 06:17:28',NULL,NULL,'90fe6b08-58f2-4c47-bc9b-e213e57887a0'),(18121,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 06:17:32','2021-06-03 06:17:32',NULL,NULL,'e221825f-80e6-4ad3-9625-401c439990a7'),(18122,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2021-06-03 06:17:38','2022-08-08 06:41:22',NULL,NULL,'f7b7dfdc-6893-4b8a-9e58-5d0013e574e1'),(18123,18122,NULL,11482,6,'craft\\elements\\Entry',1,0,'2021-06-03 06:17:38','2021-06-03 06:17:38',NULL,NULL,'ebe2a4bc-d8ed-4a3e-a21b-18df68759689'),(18124,18122,NULL,11483,6,'craft\\elements\\Entry',0,0,'2021-06-03 06:17:42','2021-06-03 06:17:42',NULL,NULL,'b8b4ff4e-0341-4a85-9928-f7fad4b23998'),(18125,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 22:50:50','2021-06-03 22:50:50',NULL,NULL,'4a7b40cc-6d39-4038-9e07-33f90facdc44'),(18126,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2021-06-03 22:51:16','2022-08-08 06:39:23',NULL,NULL,'e41e8046-5361-4e5c-b6d9-05f7e58101e3'),(18127,18126,NULL,11484,6,'craft\\elements\\Entry',1,0,'2021-06-03 22:51:16','2021-06-03 22:51:16',NULL,NULL,'e2a4f813-47a2-4d8f-bba2-33c05351b555'),(18128,18126,NULL,11485,6,'craft\\elements\\Entry',0,0,'2021-06-03 22:51:20','2021-06-03 22:51:20',NULL,NULL,'e5252eb6-bc99-4d8d-b652-6419b99902d8'),(18129,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 22:51:45','2021-06-03 22:51:45',NULL,NULL,'f564d116-0834-49a0-8fac-b2e6733fa3a6'),(18130,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 22:51:51','2021-06-03 22:51:51',NULL,NULL,'010cf5d3-9ef1-4a34-9eef-0e69fbeabc1f'),(18131,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 22:51:56','2021-06-03 22:51:56',NULL,NULL,'d7ededa0-8c53-4dc7-a55c-154f2bc9e213'),(18132,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 22:52:04','2021-06-03 22:52:04',NULL,NULL,'bfa45f2e-ec53-4836-aa7b-78b09779f2b9'),(18133,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 22:52:09','2021-06-03 22:52:09',NULL,NULL,'f98c4a8e-8f16-4436-951a-98710db32469'),(18134,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 22:52:41','2021-06-03 22:52:41',NULL,NULL,'dd278041-598c-4d11-b69b-8ff8cf84bf77'),(18135,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 22:52:47','2021-06-03 22:52:47',NULL,NULL,'0089b18d-48df-4c19-a60a-17885e41df28'),(18139,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2021-06-03 23:01:25','2022-09-13 23:03:11',NULL,NULL,'880a7686-03a5-43c1-886b-34572ddcb9ae'),(18140,18139,NULL,11488,6,'craft\\elements\\Entry',1,0,'2021-06-03 23:01:25','2021-06-03 23:01:25',NULL,NULL,'3c0f82a7-c38c-40e7-bffc-232727b35158'),(18141,18139,NULL,11489,6,'craft\\elements\\Entry',0,0,'2021-06-03 23:01:29','2021-06-03 23:01:29',NULL,NULL,'b4e385bc-e481-44f5-888f-9f7ba6d85f0e'),(18142,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2021-06-03 23:02:15','2022-05-30 01:36:15',NULL,NULL,'647191a0-f5f4-45af-8871-6bac2a68175d'),(18143,18142,NULL,11490,6,'craft\\elements\\Entry',1,0,'2021-06-03 23:02:15','2021-06-03 23:02:15',NULL,NULL,'8fba2cd6-4e9f-44e2-8aae-6e34ba6c1d17'),(18144,18142,NULL,11491,6,'craft\\elements\\Entry',0,0,'2021-06-03 23:02:19','2021-06-03 23:02:19',NULL,NULL,'f408e492-bbd3-4990-9cef-7246f8c4765d'),(18145,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 23:02:34','2021-06-03 23:02:34',NULL,NULL,'f4a9c9e9-c85a-480c-bdb2-6d4b1ea694df'),(18149,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 23:03:09','2021-06-03 23:03:09',NULL,NULL,'1182d6f7-7602-4eae-a925-484b5184546d'),(18150,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 23:03:24','2021-06-03 23:03:24',NULL,NULL,'7feaee85-3da3-4091-8958-3736cc0b141e'),(18151,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 23:03:35','2021-06-03 23:03:35',NULL,NULL,'c48fee89-3d9d-4a5a-b9b9-779f0dd04f55'),(18152,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 23:03:40','2021-06-03 23:03:40',NULL,NULL,'4459a96e-eb6e-4d9b-905c-86f5bd808752'),(18153,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 23:03:47','2021-06-03 23:03:47',NULL,NULL,'7577b29b-1fcb-466a-aca2-513b8ffe6a15'),(18154,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 23:03:53','2021-06-03 23:03:53',NULL,NULL,'6c6e38fa-df8a-4c67-97a2-44304ed98785'),(18155,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 23:03:57','2021-06-03 23:03:57',NULL,NULL,'b3509dee-9f71-41b6-b822-f444bb7c81ec'),(18156,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2021-06-03 23:04:04','2022-08-12 03:46:53',NULL,NULL,'15795f29-ffb9-4148-bef9-daa599b1235f'),(18157,18156,NULL,11494,6,'craft\\elements\\Entry',1,0,'2021-06-03 23:04:03','2021-06-03 23:04:03',NULL,NULL,'e98b3674-d2f6-4390-8247-34213b7ba73f'),(18158,18156,NULL,11495,6,'craft\\elements\\Entry',0,0,'2021-06-03 23:04:08','2021-06-03 23:04:08',NULL,NULL,'85db9004-2374-4d61-9bca-c7074d87241f'),(18159,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 23:04:20','2021-06-03 23:04:20',NULL,NULL,'da4e0915-1b7c-40b3-b903-98af74d6cf90'),(18160,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 23:04:30','2021-06-03 23:04:30',NULL,NULL,'229d4894-cc39-49d5-a3bd-302d5ee9ff83'),(18161,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 23:04:32','2021-06-03 23:04:32',NULL,NULL,'7d1199cf-7332-4570-8d73-3b22be260577'),(18162,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 23:04:53','2021-06-03 23:04:53',NULL,NULL,'86d5581c-23e9-4b28-8b01-02e9feb250b1'),(18163,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 23:04:59','2021-06-03 23:04:59',NULL,NULL,'1b107618-dc7d-43ba-96cc-1256da37424f'),(18164,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2021-06-03 23:05:05','2022-05-30 01:38:27',NULL,NULL,'0ee4ad12-5442-4636-b713-ce2586d706e5'),(18165,18164,NULL,11496,6,'craft\\elements\\Entry',1,0,'2021-06-03 23:05:05','2021-06-03 23:05:05',NULL,NULL,'caf71dc8-723f-434f-8262-410bf239f450'),(18166,18164,NULL,11497,6,'craft\\elements\\Entry',0,0,'2021-06-03 23:05:09','2021-06-03 23:05:09',NULL,NULL,'c8f17347-829e-4a33-80a2-45bf94a94a84'),(18167,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 23:05:30','2021-06-03 23:05:30',NULL,NULL,'aff10a27-ff5b-4a8d-aae7-d5ec8c93f7a5'),(18168,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2021-06-03 23:06:10','2022-08-08 06:30:58',NULL,NULL,'2f4a9bc1-d960-4f1f-a304-548154af8c37'),(18169,18168,NULL,11498,6,'craft\\elements\\Entry',1,0,'2021-06-03 23:06:10','2021-06-03 23:06:10',NULL,NULL,'50ecdb45-3e94-4e16-ab35-5c769848555c'),(18170,18168,NULL,11499,6,'craft\\elements\\Entry',0,0,'2021-06-03 23:06:13','2021-06-03 23:06:13',NULL,NULL,'4f6af048-6afd-48c7-813d-ea61110ee4b9'),(18171,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 23:06:32','2021-06-03 23:06:32',NULL,NULL,'3b2e8857-f78b-4e89-a83a-9bf49a3cf986'),(18172,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 23:06:37','2021-06-03 23:06:37',NULL,NULL,'9a4a8c60-d894-46d4-9676-18af68da3774'),(18173,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 23:06:41','2021-06-03 23:06:41',NULL,NULL,'edc6326f-30b4-40a5-b167-cf3a677a6218'),(18174,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 23:06:46','2021-06-03 23:06:46',NULL,NULL,'b36956ef-7d6c-4eb2-83ff-5c9781e26dab'),(18175,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 23:06:52','2021-06-03 23:06:52',NULL,NULL,'44ac4b28-761e-4d91-bb8c-f310194241b0'),(18176,NULL,NULL,NULL,6,'craft\\elements\\Entry',0,0,'2021-06-03 23:07:00','2022-08-09 00:06:09',NULL,NULL,'9f1af0e1-2043-4e1b-bd4c-30352f0f5b46'),(18177,18176,NULL,11500,6,'craft\\elements\\Entry',1,0,'2021-06-03 23:07:00','2021-06-03 23:07:00',NULL,NULL,'f28115e6-780e-49c2-b3f5-f2cb49c5be84'),(18178,18176,NULL,11501,6,'craft\\elements\\Entry',0,0,'2021-06-03 23:07:04','2021-06-03 23:07:04',NULL,NULL,'e9f38898-d89f-4b04-8111-a8878052d66c'),(18179,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 23:07:31','2021-06-03 23:07:31',NULL,NULL,'8759a2ac-2bb0-4f5f-a58b-1b8244c0c9a4'),(18180,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 23:07:47','2021-06-03 23:07:47',NULL,NULL,'fe09d6f3-f74c-4862-bc4c-a9874d916340'),(18181,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 23:08:10','2021-06-03 23:08:10',NULL,NULL,'6c27408a-bee9-44f7-824b-a74cdb6c817f'),(18185,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-06-03 23:08:49','2021-06-03 23:08:49',NULL,NULL,'d677cec6-7199-4cb9-8f24-9c242e4b2538'),(18216,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-09 23:26:18','2021-06-09 23:26:18',NULL,NULL,'ccd822aa-26eb-4514-a21f-275df686d342'),(18338,18109,NULL,11506,6,'craft\\elements\\Entry',1,0,'2021-06-09 23:34:56','2021-06-09 23:34:56',NULL,NULL,'ae0b84a0-05f6-46f2-9805-7ea194e5ad21'),(18339,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:34:56','2021-06-09 23:34:37',NULL,NULL,'e251234c-542f-4f06-9de3-af252ec122b0'),(18340,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:34:56','2021-06-09 23:34:37',NULL,NULL,'9bf2628b-b8da-4cc2-85d3-d3c35c29e4dd'),(18341,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:34:56','2021-06-09 23:34:37',NULL,NULL,'c4e8da72-8fcd-4536-b627-04845da2986e'),(18342,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:34:56','2021-06-09 23:34:37',NULL,NULL,'12db2080-d6a1-456b-a896-ccb4172923d5'),(18343,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:34:56','2021-06-09 23:34:37',NULL,NULL,'1af4c0bc-b81c-4385-be45-f0bcd4de7370'),(18344,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:34:56','2021-06-09 23:34:37',NULL,NULL,'a7e4e16b-fb04-4734-bb40-cf471578cbcb'),(18345,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:34:56','2021-06-09 23:34:37',NULL,NULL,'fb467cc1-1d23-4804-889d-10c035987c63'),(18346,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:34:56','2021-06-09 23:34:37',NULL,NULL,'1b7b86fe-8750-4fdb-9dad-64aa96fb546e'),(18347,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:34:56','2021-06-09 23:34:37',NULL,NULL,'5208cae8-d243-4b5b-8697-931c92e61375'),(18348,18109,NULL,11507,6,'craft\\elements\\Entry',1,0,'2021-06-09 23:35:01','2021-06-09 23:35:01',NULL,NULL,'0972085d-b62e-4584-bb1b-94b1fff85043'),(18349,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:35:01','2021-06-09 23:34:37',NULL,NULL,'56c023e4-d477-4076-bb3d-fa558835529b'),(18350,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:35:01','2021-06-09 23:34:37',NULL,NULL,'29ab561a-7204-4f47-9e31-4cf55b33e910'),(18351,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:35:01','2021-06-09 23:34:37',NULL,NULL,'899cf611-4c83-4ae6-ba13-4f2fb6cd501d'),(18352,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:35:01','2021-06-09 23:34:37',NULL,NULL,'8fc37e65-adb0-4cba-8fee-f2608190e107'),(18353,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:35:01','2021-06-09 23:34:37',NULL,NULL,'d0ac3da4-1671-4cbd-9a40-cecf04e37f9b'),(18354,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:35:01','2021-06-09 23:34:37',NULL,NULL,'c564259e-8204-47d4-b984-d94b4347a23c'),(18355,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:35:01','2021-06-09 23:34:37',NULL,NULL,'c4421116-b157-4c8f-a6bb-fb436883c030'),(18356,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:35:01','2021-06-09 23:34:37',NULL,NULL,'2306d8aa-728f-4d06-950a-c16d6680b99c'),(18357,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:35:01','2021-06-09 23:34:37',NULL,NULL,'33d6f1ae-4853-459a-ad07-51ad591ee441'),(18369,18122,NULL,11508,6,'craft\\elements\\Entry',0,0,'2021-06-09 23:36:04','2021-06-09 23:36:04',NULL,NULL,'b107edc1-b9d6-4b69-8b54-9c22aa1ebab8'),(18370,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:36:05','2021-06-09 23:35:59',NULL,NULL,'efbd215c-84e3-44eb-a495-cd231105f097'),(18371,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:36:05','2021-06-09 23:35:59',NULL,NULL,'b644d86d-7c53-442d-8d8a-ce37ffa3d370'),(18538,18122,NULL,11509,6,'craft\\elements\\Entry',0,0,'2021-06-09 23:44:52','2021-06-09 23:44:52',NULL,NULL,'adcc6f5a-6ce0-4d0e-9d43-5b7662cdab12'),(18539,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:44:53','2021-06-09 23:44:33',NULL,NULL,'d9cab4c8-d0a5-4e7e-ad4c-0abe96f54251'),(18540,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:44:53','2021-06-09 23:44:33',NULL,NULL,'d3d6a226-8f55-4594-b55e-38f352a225cc'),(18541,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:44:53','2021-06-09 23:44:33',NULL,NULL,'2c6b53bc-aa0b-4d48-b66a-a91fd765c0e9'),(18542,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:44:53','2021-06-09 23:44:33',NULL,NULL,'82ab78d8-2b96-403e-87e8-a023c9e83038'),(18543,NULL,NULL,NULL,21,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:44:53','2021-06-09 23:44:33',NULL,NULL,'47896c44-718d-4fa3-9712-bacf57fd85a8'),(18544,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-09 23:44:53','2021-06-09 23:44:33',NULL,NULL,'f2c927d9-9e9a-4d7c-a9c9-3e22dff774f4'),(18545,NULL,NULL,NULL,21,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:44:53','2021-06-09 23:44:33',NULL,NULL,'f7a75d6d-c3a3-41a9-85d4-df699f80e896'),(18546,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-09 23:44:53','2021-06-09 23:44:33',NULL,NULL,'aa1729b1-7848-44a8-a2a4-7148c3d21786'),(18547,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-09 23:44:53','2021-06-09 23:44:33',NULL,NULL,'2c9f682d-5c9a-4113-b11c-a5ba4ed44498'),(18548,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-09 23:44:53','2021-06-09 23:44:33',NULL,NULL,'4757af7c-73c1-4543-895a-ee54d95edccc'),(18549,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-09 23:44:53','2021-06-09 23:44:33',NULL,NULL,'3bffb7e1-f9a3-4c7d-a856-e1f9f1fe910f'),(18550,18122,NULL,11510,6,'craft\\elements\\Entry',1,0,'2021-06-09 23:44:59','2021-06-09 23:44:59',NULL,NULL,'6513591c-0129-410a-bcb0-9bb85bb36f06'),(18551,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:44:59','2021-06-09 23:44:33',NULL,NULL,'abab1c85-952a-4977-8d0b-3067b08a0398'),(18552,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:44:59','2021-06-09 23:44:33',NULL,NULL,'a0fbc690-10b2-4081-bc07-5ddea2471e80'),(18553,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:44:59','2021-06-09 23:44:33',NULL,NULL,'6c4ac9dd-b015-47c6-bfdf-79d692826023'),(18554,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:44:59','2021-06-09 23:44:33',NULL,NULL,'aba6c7d1-2cbe-41a3-97f7-c5910a9b5a37'),(18555,NULL,NULL,NULL,21,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:44:59','2021-06-09 23:44:33',NULL,NULL,'4ebb0fd4-fc26-4992-b115-6f7c90d15366'),(18556,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-09 23:44:59','2021-06-09 23:44:33',NULL,NULL,'5f17c61e-f38d-46f6-a1bb-3332817b78be'),(18557,NULL,NULL,NULL,21,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:44:59','2021-06-09 23:44:33',NULL,NULL,'e37cb271-8814-4b9c-ad40-5caf43937578'),(18558,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-09 23:45:00','2021-06-09 23:44:33',NULL,NULL,'e35fe2ec-fbdf-4401-99af-c0801cc6cb53'),(18559,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-09 23:45:00','2021-06-09 23:44:33',NULL,NULL,'5b19f6e0-217f-4b6c-be5a-98f96da713c0'),(18560,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-09 23:45:00','2021-06-09 23:44:33',NULL,NULL,'24eab3ba-10e3-439b-9bfb-7289a675b436'),(18561,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-09 23:45:00','2021-06-09 23:44:33',NULL,NULL,'c1e0fda8-3d52-400f-8c20-ad3b96736f77'),(18562,18109,NULL,11511,6,'craft\\elements\\Entry',1,0,'2021-06-09 23:45:20','2021-06-09 23:45:20',NULL,NULL,'7c126c6a-1676-4ceb-8374-5eae2427f40e'),(18563,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:45:21','2021-06-09 23:34:37',NULL,NULL,'5255d647-a601-4a81-b2e0-3d606a8ac68f'),(18564,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:45:21','2021-06-09 23:34:37',NULL,NULL,'89d6df58-8289-4a8d-96bf-63d044fc13a1'),(18565,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:45:21','2021-06-09 23:34:37',NULL,NULL,'9379b42b-5378-4ad1-8069-275a7f632a8a'),(18566,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:45:21','2021-06-09 23:34:37',NULL,NULL,'05f920e3-8862-4736-be6b-ba1da188fe32'),(18567,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:45:21','2021-06-09 23:34:37',NULL,NULL,'b8f799c9-590f-4e41-a6b6-4462a0ed91b1'),(18568,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:45:21','2021-06-09 23:34:37',NULL,NULL,'cb2071e7-f0fc-47b9-b430-78877a27e7de'),(18569,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:45:21','2021-06-09 23:34:37',NULL,NULL,'559a8fac-451f-4b91-aca9-08065ab3e5e1'),(18570,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:45:21','2021-06-09 23:34:37',NULL,NULL,'14d388e1-12c9-4e80-84ae-0003735764d9'),(18571,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:45:21','2021-06-09 23:34:37',NULL,NULL,'cc68b0fb-fdfc-452b-8d38-e8a56d342ef1'),(18572,18122,NULL,11512,6,'craft\\elements\\Entry',1,0,'2021-06-09 23:45:54','2021-06-09 23:45:54',NULL,NULL,'2dca188d-5eb6-4e73-bd6c-c6cbb25c88cd'),(18573,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:45:55','2021-06-09 23:44:33',NULL,NULL,'80b409af-f67c-4895-b061-9e7bd483ee31'),(18574,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:45:55','2021-06-09 23:44:33',NULL,NULL,'4e2a2536-cf9e-4a3c-b671-4293ce7817be'),(18575,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:45:55','2021-06-09 23:44:33',NULL,NULL,'1360f895-6b68-43e9-9398-19f47b1467a8'),(18576,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:45:55','2021-06-09 23:44:33',NULL,NULL,'4e449ecb-01a2-4ada-b6d1-11b89744db23'),(18577,NULL,NULL,NULL,21,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:45:55','2021-06-09 23:44:33',NULL,NULL,'d7178468-2de5-4748-93b2-02744a30ef71'),(18578,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-09 23:45:55','2021-06-09 23:44:33',NULL,NULL,'6f109800-5653-4c8d-b7b3-43bcc62c7082'),(18579,NULL,NULL,NULL,21,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:45:55','2021-06-09 23:44:33',NULL,NULL,'a96248b6-61ee-4cec-a762-7ac50d02a0e9'),(18580,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-09 23:45:55','2021-06-09 23:44:33',NULL,NULL,'45435d26-b7de-43d5-9b2f-51a836dd8712'),(18581,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-09 23:45:55','2021-06-09 23:44:33',NULL,NULL,'353d0b75-bfa9-4f7a-891a-269716e222ae'),(18582,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-09 23:45:55','2021-06-09 23:44:33',NULL,NULL,'a053626e-fcd0-42bd-9a5a-95f41a97b66d'),(18583,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-09 23:45:55','2021-06-09 23:44:33',NULL,NULL,'aaa3e1bf-933b-4d66-829b-5bd889b5fdab'),(18584,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-09 23:47:12','2021-06-09 23:47:12',NULL,NULL,'b5ed63d8-c786-40a2-afe6-25706c01f5f4'),(18597,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-09 23:48:48','2021-06-09 23:48:48',NULL,NULL,'97a867b0-4d17-4997-a846-7b43630b9a16'),(18598,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-09 23:48:55','2021-06-09 23:48:55',NULL,NULL,'fd8da362-6319-435f-8c6e-99b9797d0bb2'),(18599,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-09 23:49:02','2021-06-09 23:49:02',NULL,NULL,'08d1aae3-0539-4ffc-973b-dc23ac62689c'),(18626,18126,NULL,11513,6,'craft\\elements\\Entry',0,0,'2021-06-09 23:50:03','2021-06-09 23:50:03',NULL,NULL,'120d5dbc-51a9-4ba9-960a-b8849ec899f0'),(18627,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:50:04','2021-06-09 23:49:40',NULL,NULL,'e3be8962-69bc-4e4d-a7e5-8335e1f7cec4'),(18628,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:50:04','2021-06-09 23:49:40',NULL,NULL,'676a6b11-ac00-4526-930d-6a56a4f3ee25'),(18629,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:50:04','2021-06-09 23:49:40',NULL,NULL,'ec690762-8153-422c-963b-92cf9622210f'),(18630,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:50:04','2021-06-09 23:49:41',NULL,NULL,'37372fdb-3886-4f9c-991b-f8169072849e'),(18631,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:50:04','2021-06-09 23:49:41',NULL,NULL,'f6368e3e-43c4-4051-b525-fa96e2db3c7f'),(18632,18126,NULL,11514,6,'craft\\elements\\Entry',1,0,'2021-06-09 23:50:10','2021-06-09 23:50:10',NULL,NULL,'0ba98e22-e2da-4d8c-ba2a-f4ec58da17ae'),(18633,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:50:10','2021-06-09 23:49:40',NULL,NULL,'95a6ef91-bf4b-40bc-8c40-73f986eef917'),(18634,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:50:10','2021-06-09 23:49:40',NULL,NULL,'b3d8c57c-dde5-41e3-b2ff-21425fab2242'),(18635,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:50:10','2021-06-09 23:49:40',NULL,NULL,'83cbb8e5-f09e-47e2-8621-590ad39f7da3'),(18636,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:50:10','2021-06-09 23:49:41',NULL,NULL,'2afe382c-3510-4772-861f-7ba9b46ec814'),(18637,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-09 23:50:10','2021-06-09 23:49:41',NULL,NULL,'207dfc22-3c3f-4fbb-bb0b-0a8ff1a7b132'),(18638,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 01:39:31','2021-06-10 01:39:31',NULL,NULL,'dc89041d-8f5f-4e95-a5d6-4a0a40a880b0'),(18639,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 01:39:34','2021-06-10 01:39:34',NULL,NULL,'bc89a458-8523-4d85-81d6-096fbad1d2e7'),(18640,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 01:39:35','2021-06-10 01:39:35',NULL,NULL,'710b08bc-2d9a-4454-b290-3f3c51020684'),(18641,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 01:39:37','2021-06-10 01:39:37',NULL,NULL,'bdf88653-aada-4172-b877-06d5179b8de4'),(18642,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 01:39:39','2021-06-10 01:39:39',NULL,NULL,'f76e5c73-64d0-45aa-b5c1-0d7b38e4cb23'),(18643,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 01:39:40','2021-06-10 01:39:40',NULL,NULL,'a6bf76e2-7b27-4c8f-8c4b-31d0e42c4e95'),(18644,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 01:39:41','2021-06-10 01:39:41',NULL,NULL,'478baa2f-5b84-439b-8fec-29798fe73dcd'),(18645,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 01:39:43','2021-06-10 01:39:43',NULL,NULL,'44b00e2d-528a-49d3-b1db-b2bccf63beab'),(18646,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 01:39:44','2021-06-10 01:39:44',NULL,NULL,'9505529c-edb8-407b-b3f4-efc26fb4a468'),(18647,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 01:39:46','2021-06-10 01:39:46',NULL,NULL,'02429cd5-22c7-4dea-81d4-9b4e89d4e427'),(18648,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 01:39:47','2021-06-10 01:39:47',NULL,NULL,'11c64ca7-a23c-4db3-87f3-9c284a7d6dd8'),(18649,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 01:39:49','2021-06-10 01:39:49',NULL,NULL,'0e7f8850-e896-4787-9e44-056d81079db6'),(18650,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 01:39:51','2021-06-10 01:39:51',NULL,NULL,'9a04536d-4a67-4947-ba8e-3e5a53358f0a'),(18651,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 01:39:53','2021-06-10 01:39:53',NULL,NULL,'6d316c8b-2bc6-479c-b1c8-3da01aece396'),(18652,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 01:39:54','2021-06-10 01:39:54',NULL,NULL,'bc49f08c-fb63-4725-8399-f5e8ba901283'),(18653,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 01:41:13','2021-06-10 01:41:13',NULL,NULL,'fc5a18e4-8928-4ba3-b1bc-d4a13b073566'),(19014,18156,NULL,11515,6,'craft\\elements\\Entry',0,0,'2021-06-10 01:54:27','2021-06-10 01:54:27',NULL,NULL,'7df5e6de-66de-4e01-a23c-dff505697eb3'),(19015,NULL,NULL,NULL,21,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:29','2021-06-10 01:54:07',NULL,NULL,'e58ee74a-e14f-44f2-a780-404bbd086dac'),(19016,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-10 01:54:29','2021-06-10 01:54:07',NULL,NULL,'40859f42-3d24-467e-9294-eedcb92c754c'),(19017,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:29','2021-06-10 01:54:07',NULL,NULL,'62c48b89-b481-455b-9bdb-28a294f937c3'),(19018,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:29','2021-06-10 01:54:07',NULL,NULL,'fbddb896-7355-4d03-9d15-de11b8adfc3c'),(19019,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:29','2021-06-10 01:54:07',NULL,NULL,'8f8eacf7-3a45-444b-921e-a3d02656f4ea'),(19020,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:29','2021-06-10 01:54:07',NULL,NULL,'7477aded-5e54-4c54-9d5e-a88113542b25'),(19021,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:29','2021-06-10 01:54:07',NULL,NULL,'a0f9cab6-212c-4918-9bc6-4fbf23c9bc63'),(19022,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:29','2021-06-10 01:54:07',NULL,NULL,'3c83bd2f-2646-459c-9bf3-91bec2cbe34b'),(19023,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:29','2021-06-10 01:54:07',NULL,NULL,'80d02afe-0d56-46d4-b771-564df12e9089'),(19024,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:29','2021-06-10 01:54:07',NULL,NULL,'23b6d4ee-3698-4e48-8e5e-6ddee75dcdca'),(19025,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:29','2021-06-10 01:54:07',NULL,NULL,'4eaeac0f-c8c6-447f-8854-930f8ed6eb67'),(19026,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:29','2021-06-10 01:54:07',NULL,NULL,'d4cb5411-6fb5-4b81-b8f9-a164a82f13fd'),(19027,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:29','2021-06-10 01:54:07',NULL,NULL,'e89284c1-a5e9-4943-b5d9-3636fe004cf8'),(19028,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:29','2021-06-10 01:54:07',NULL,NULL,'b02ff6a6-e066-4f0d-ba8c-f0d34cdadf25'),(19029,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:29','2021-06-10 01:54:07',NULL,NULL,'74ad56ad-4c11-4948-b915-fc76ae65c1f9'),(19030,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:29','2021-06-10 01:54:07',NULL,NULL,'c100216d-d80b-4947-81e2-b7f0cdfc589a'),(19031,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:29','2021-06-10 01:54:07',NULL,NULL,'06ce3cc5-b6f1-408b-8293-1a66d374da50'),(19032,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:29','2021-06-10 01:54:07',NULL,NULL,'405fa313-70ab-4db8-943f-5394f98d2424'),(19033,18156,NULL,11516,6,'craft\\elements\\Entry',1,0,'2021-06-10 01:54:37','2021-06-10 01:54:37',NULL,NULL,'3c21e656-28b5-43dd-a104-33a5957928eb'),(19034,NULL,NULL,NULL,21,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:38','2021-06-10 01:54:07',NULL,NULL,'1df7d42e-0f70-4dfa-bdc7-5a15f1d2223d'),(19035,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-10 01:54:38','2021-06-10 01:54:07',NULL,NULL,'86a11c74-d3c9-47f3-95e4-6271d87a70eb'),(19036,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:38','2021-06-10 01:54:07',NULL,NULL,'2d33c7d5-a423-45c4-a69d-eac572cc4ee6'),(19037,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:38','2021-06-10 01:54:07',NULL,NULL,'44547f03-b3bb-406b-bc36-2dffc01f1d73'),(19038,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:38','2021-06-10 01:54:07',NULL,NULL,'4724fb20-4270-4a07-b992-45505113d508'),(19039,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:38','2021-06-10 01:54:07',NULL,NULL,'5e3f9dbe-1db4-440d-9e80-05852906c228'),(19040,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:38','2021-06-10 01:54:07',NULL,NULL,'8e802bf9-0cec-46b3-adc8-d54cd35f0a9d'),(19041,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:38','2021-06-10 01:54:07',NULL,NULL,'9bedfe26-79bf-492c-9a60-8364529a25f2'),(19042,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:38','2021-06-10 01:54:07',NULL,NULL,'b1fcf471-3897-4124-b4d9-4e262deca889'),(19043,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:38','2021-06-10 01:54:07',NULL,NULL,'f9b0713d-c125-441e-b497-ea8a2907efce'),(19044,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:38','2021-06-10 01:54:07',NULL,NULL,'074b709c-ac32-47e2-8843-597538fc09bb'),(19045,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:38','2021-06-10 01:54:07',NULL,NULL,'3f9c43fb-ba27-42ae-8c04-210c727d393f'),(19046,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:38','2021-06-10 01:54:07',NULL,NULL,'7ca6ca52-e495-418f-a99b-865372b4ac01'),(19047,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:38','2021-06-10 01:54:07',NULL,NULL,'210091ca-b1be-4c3f-a697-4d978747c1e7'),(19048,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:38','2021-06-10 01:54:07',NULL,NULL,'3765a9c6-b933-42aa-9e17-a0a81641a715'),(19049,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:38','2021-06-10 01:54:07',NULL,NULL,'ffdebb4c-9db9-4447-a59c-73d1295d9b15'),(19050,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:38','2021-06-10 01:54:07',NULL,NULL,'26670b30-0f26-4751-be03-407a7a29099e'),(19051,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 01:54:38','2021-06-10 01:54:07',NULL,NULL,'b2b56157-f06d-48c4-aba3-0e34d8bbb7a5'),(19052,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 04:17:10','2021-06-10 04:17:10',NULL,NULL,'a2bbaa2b-3961-4db0-b8d6-36a19a2f3754'),(19053,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 04:17:12','2021-06-10 04:17:12',NULL,NULL,'2191db34-155c-4f64-b246-9da72a17f8ac'),(19054,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 04:17:15','2021-06-10 04:17:15',NULL,NULL,'b1143c53-27ea-4bd0-b8eb-5ed444dbd705'),(19055,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 04:17:17','2021-06-10 04:17:17',NULL,NULL,'453bf630-4f45-41ea-8a7f-43595093423b'),(19056,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 04:17:21','2021-06-10 04:17:21',NULL,NULL,'61f01da2-f552-415d-aabd-add1321652a1'),(19057,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 04:17:24','2021-06-10 04:17:24',NULL,NULL,'8035732f-64c6-4519-93fb-99315ab909fb'),(19058,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 04:17:26','2021-06-10 04:17:26',NULL,NULL,'f6aec73c-9c4a-4190-8b83-4167bc301826'),(19059,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 04:17:30','2021-06-10 04:17:30',NULL,NULL,'c8614a9e-d7ce-47c6-a140-5d5f046e8377'),(19060,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 04:20:00','2021-06-10 04:20:00',NULL,NULL,'1fa1af7e-dc66-4bef-abd8-2e2d28796f88'),(19061,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 04:20:01','2021-06-10 04:20:01',NULL,NULL,'2abd84eb-46c2-4007-be12-14ad542915df'),(19062,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 04:20:03','2021-06-10 04:20:03',NULL,NULL,'26147e04-5cea-4dd3-86c9-5c07172e8856'),(19063,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 04:20:21','2021-06-10 04:20:21',NULL,NULL,'13f77295-c83f-4127-bf4e-62ddeeeb6658'),(19064,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 04:20:48','2021-06-10 04:20:48',NULL,NULL,'3c443ea9-4cd6-4054-9a26-9431a6cee074'),(19065,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 04:21:14','2021-06-10 04:21:14',NULL,NULL,'dc44cf8c-e210-4159-9b9d-3423010b8881'),(19066,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 04:21:42','2021-06-10 04:21:42',NULL,NULL,'4e653042-25ab-43df-86b2-cc6a0e9709f5'),(19067,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 04:22:08','2021-06-10 04:22:08',NULL,NULL,'0bce65e4-18c3-4417-835a-016cb896df1e'),(19068,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 04:22:35','2021-06-10 04:22:35',NULL,NULL,'7185de53-071e-4385-b98f-e09ef25b6f70'),(19081,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-10 04:24:54','2021-06-10 04:24:54',NULL,NULL,'1e5d76b7-5df7-4b78-bd4a-fe20aac152c2'),(19093,18122,NULL,11517,6,'craft\\elements\\Entry',1,0,'2021-06-10 04:26:07','2021-06-10 04:26:07',NULL,NULL,'ffc899c2-b84a-4be6-ba6e-b793bf197e42'),(19094,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 04:26:08','2021-06-10 04:23:40',NULL,NULL,'5f68ef79-0d3d-47f9-97e7-aa89f565fefa'),(19095,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 04:26:08','2021-06-09 23:44:33',NULL,NULL,'051cf592-47e6-4268-954f-a15cd476c9d0'),(19096,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 04:26:08','2021-06-10 04:23:56',NULL,NULL,'6224ff72-2f52-4b52-8999-5378246b8227'),(19097,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 04:26:08','2021-06-10 04:24:04',NULL,NULL,'0f378c60-0b40-4475-bfd9-34c9a8f1c051'),(19098,NULL,NULL,NULL,21,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 04:26:08','2021-06-10 04:25:04',NULL,NULL,'072971ce-47ff-4e9f-bb20-59d72859021c'),(19099,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-10 04:26:08','2021-06-10 04:25:04',NULL,NULL,'0d976f18-e043-4b5c-9f82-02125d0ff2b6'),(19100,NULL,NULL,NULL,21,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 04:26:08','2021-06-10 04:25:54',NULL,NULL,'d7bbe829-a453-4429-ae61-ace73590f2c5'),(19101,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-10 04:26:08','2021-06-10 04:25:23',NULL,NULL,'4034a1d3-310e-4815-b5c8-6353cee6c693'),(19102,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-10 04:26:08','2021-06-10 04:25:35',NULL,NULL,'04164926-abb3-4499-b427-6b005ea69495'),(19103,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-10 04:26:08','2021-06-10 04:25:47',NULL,NULL,'596a2be4-e841-44c7-a08c-bacba5993328'),(19104,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-10 04:26:08','2021-06-10 04:25:54',NULL,NULL,'66beeda6-ca8c-4edf-92ca-d3adcf1ea251'),(19105,18122,NULL,11518,6,'craft\\elements\\Entry',1,0,'2021-06-10 04:26:12','2021-06-10 04:26:12',NULL,NULL,'820693e8-b735-483f-8651-5e60935dae97'),(19106,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 04:26:13','2021-06-10 04:23:40',NULL,NULL,'1c309fd3-00e8-430d-898b-97cbcb97a460'),(19107,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 04:26:13','2021-06-09 23:44:33',NULL,NULL,'d7868df4-3754-4d10-b302-bcc658018672'),(19108,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 04:26:13','2021-06-10 04:23:56',NULL,NULL,'7767959a-266e-4e75-8b54-3bdabb93bea3'),(19109,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 04:26:13','2021-06-10 04:24:04',NULL,NULL,'d1e88b95-1b46-4575-aebb-1b169c889921'),(19110,NULL,NULL,NULL,21,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 04:26:13','2021-06-10 04:25:04',NULL,NULL,'57ce1d18-be09-480c-8caf-e307ea70f625'),(19111,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-10 04:26:13','2021-06-10 04:25:04',NULL,NULL,'9e6a3247-3917-477a-a5be-898b4380595a'),(19112,NULL,NULL,NULL,21,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 04:26:13','2021-06-10 04:25:54',NULL,NULL,'d12183da-3184-4f80-85be-a8d2299f4c8a'),(19113,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-10 04:26:13','2021-06-10 04:25:23',NULL,NULL,'b7df37d1-d784-4c61-8406-c506ffaf832d'),(19114,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-10 04:26:13','2021-06-10 04:25:35',NULL,NULL,'8b24a8d0-cea9-4a1b-a1d6-e856ea8c84c2'),(19115,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-10 04:26:13','2021-06-10 04:25:47',NULL,NULL,'45e4cffb-a95a-4687-acb4-d16c57539991'),(19116,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-10 04:26:13','2021-06-10 04:25:54',NULL,NULL,'83e7cc04-5a6b-423b-baea-e8df93b4ba2d'),(19136,18109,NULL,11519,6,'craft\\elements\\Entry',1,0,'2021-06-10 04:27:36','2021-06-10 04:27:36',NULL,NULL,'fe38dd1c-257d-4f71-a86f-4c9d4a35f83c'),(19137,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 04:27:36','2021-06-10 04:26:41',NULL,NULL,'3cf20089-61aa-457c-a7f5-c9465868f3d3'),(19138,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 04:27:36','2021-06-09 23:34:37',NULL,NULL,'495cc529-8dc5-42eb-9490-c3bb5af6f64a'),(19139,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 04:27:36','2021-06-10 04:26:48',NULL,NULL,'3fed5a18-3f70-4602-b812-863fabc56532'),(19140,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 04:27:37','2021-06-10 04:26:57',NULL,NULL,'73ac9f45-9c1b-478f-8e8a-f604358ec4c9'),(19141,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 04:27:37','2021-06-10 04:27:04',NULL,NULL,'d10438b3-fec7-4183-9b40-320e0ccf7735'),(19142,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 04:27:37','2021-06-10 04:27:10',NULL,NULL,'c9f4faa3-36ac-4fa1-8742-6fc42e04262d'),(19143,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 04:27:37','2021-06-10 04:27:15',NULL,NULL,'1445eb73-c706-4f1b-80df-92aef3cba000'),(19144,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 04:27:37','2021-06-10 04:27:21',NULL,NULL,'6caf9dee-bc84-4f3e-ab37-51f565e668e8'),(19145,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 04:27:37','2021-06-10 04:27:27',NULL,NULL,'e78ce6b3-3a5f-453a-8e68-f09792d7d325'),(19146,18109,NULL,11520,6,'craft\\elements\\Entry',1,0,'2021-06-10 04:27:40','2021-06-10 04:27:40',NULL,NULL,'7680647a-3b21-44ce-9186-ef7d2d5b2095'),(19147,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 04:27:41','2021-06-10 04:26:41',NULL,NULL,'cb762cec-9009-424d-b074-b8fb0b388d4b'),(19148,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 04:27:41','2021-06-09 23:34:37',NULL,NULL,'2115a8ff-1e9d-409b-b1e5-e8e35b714506'),(19149,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 04:27:41','2021-06-10 04:26:48',NULL,NULL,'d3f0e21e-7c3a-4ffd-960f-23066cf5bb3b'),(19150,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 04:27:41','2021-06-10 04:26:57',NULL,NULL,'3c5d429c-acea-4b7f-8a90-030a9bda1b7e'),(19151,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 04:27:41','2021-06-10 04:27:04',NULL,NULL,'2e0218a5-c761-45f8-920e-e36280c6e720'),(19152,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 04:27:41','2021-06-10 04:27:10',NULL,NULL,'ab0b205d-fd00-43a6-a3d8-52b8a766c0c4'),(19153,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 04:27:41','2021-06-10 04:27:15',NULL,NULL,'ca050d27-0c56-459c-ad87-9ce44d5f1643'),(19154,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 04:27:41','2021-06-10 04:27:21',NULL,NULL,'a748ac77-0316-4f3c-acd6-19755b324fe7'),(19155,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-06-10 04:27:41','2021-06-10 04:27:27',NULL,NULL,'fb82edba-37f4-448e-8cfe-92804744a3cf'),(19167,NULL,NULL,NULL,22,'craft\\elements\\Category',1,0,'2021-06-11 00:30:18','2021-06-11 00:30:18',NULL,NULL,'63bc2e5f-41c3-431e-8699-6fc95db78b8f'),(19175,NULL,NULL,NULL,22,'craft\\elements\\Category',1,0,'2021-06-11 01:36:15','2021-06-11 01:36:15',NULL,NULL,'31a1efc4-97ff-4025-bdd3-64b690192f8c'),(19176,NULL,NULL,NULL,5,'craft\\elements\\User',1,0,'2021-06-11 01:36:22','2021-06-11 01:37:34',NULL,NULL,'13c74e03-cfc6-4c44-ad5f-59655386cf7e'),(19177,NULL,NULL,NULL,4,'craft\\elements\\Entry',1,0,'2021-06-11 01:39:49','2021-06-11 01:39:49',NULL,NULL,'ea571266-691e-448d-bdbe-b0310a6d4200'),(19178,19177,NULL,11534,4,'craft\\elements\\Entry',1,0,'2021-06-11 01:39:49','2021-06-11 01:39:49',NULL,NULL,'e40c4dc9-7cdb-499d-904e-fac0cceca55f'),(19179,NULL,NULL,NULL,5,'craft\\elements\\User',1,0,'2021-06-11 01:42:05','2021-06-11 01:42:05',NULL,NULL,'646346d0-7ccf-4807-b934-3d1f07ac328c'),(19181,NULL,NULL,NULL,4,'craft\\elements\\Entry',1,0,'2021-06-11 01:45:58','2021-06-11 01:46:34',NULL,NULL,'b057d81c-2f45-4c6f-a27e-cb895c9ed44e'),(19182,19181,NULL,11535,4,'craft\\elements\\Entry',1,0,'2021-06-11 01:45:58','2021-06-11 01:45:58',NULL,NULL,'db5d0fde-f929-4739-ab80-deccb6d7846c'),(19183,19181,NULL,11536,4,'craft\\elements\\Entry',1,0,'2021-06-11 01:46:01','2021-06-11 01:46:01',NULL,NULL,'b1e117fc-1e6c-4f7f-9c70-dca32bc83b4e'),(19184,19181,NULL,11537,4,'craft\\elements\\Entry',1,0,'2021-06-11 01:46:34','2021-06-11 01:46:34',NULL,NULL,'610d4d10-17c7-4138-8aef-7fad21e048bd'),(19185,NULL,NULL,NULL,5,'craft\\elements\\User',1,0,'2021-06-11 01:47:49','2021-06-11 01:47:49',NULL,NULL,'4b696324-aaa4-40c1-bc90-d4f1e842fc89'),(19188,NULL,NULL,NULL,4,'craft\\elements\\Entry',1,0,'2021-06-11 01:50:23','2021-06-11 01:50:26',NULL,NULL,'2e293e4d-bc3c-42f9-b446-d3dc107ced51'),(19189,19188,NULL,11538,4,'craft\\elements\\Entry',1,0,'2021-06-11 01:50:23','2021-06-11 01:50:23',NULL,NULL,'1b2f2fef-5c9b-4cf1-8cff-884507f619c3'),(19190,19188,NULL,11539,4,'craft\\elements\\Entry',1,0,'2021-06-11 01:50:26','2021-06-11 01:50:26',NULL,NULL,'a180aa1b-2fc3-4dab-abcd-497b71fc1970'),(19191,NULL,NULL,NULL,5,'craft\\elements\\User',1,0,'2021-06-11 04:54:21','2021-06-11 04:54:21',NULL,NULL,'4c7a9592-4e3a-413b-bcb7-d692192766e8'),(19192,NULL,NULL,NULL,4,'craft\\elements\\Entry',1,0,'2021-06-11 04:55:44','2021-06-11 04:57:32',NULL,NULL,'9a1cc03d-a280-4445-8df1-8d13a24ab6fd'),(19193,19192,NULL,11540,4,'craft\\elements\\Entry',1,0,'2021-06-11 04:55:44','2021-06-11 04:55:44',NULL,NULL,'56d3afa3-a935-424d-a4e4-c30efaafe7de'),(19194,19192,NULL,11541,4,'craft\\elements\\Entry',1,0,'2021-06-11 04:57:22','2021-06-11 04:57:22',NULL,NULL,'da3fe15e-93bf-413b-aad6-823b4d6a85f3'),(19195,19192,NULL,11542,4,'craft\\elements\\Entry',1,0,'2021-06-11 04:57:32','2021-06-11 04:57:32',NULL,NULL,'98305e0f-b191-4e11-ab2c-365946d7d2e7'),(19196,NULL,NULL,NULL,22,'craft\\elements\\Category',1,0,'2021-06-13 23:20:52','2021-06-13 23:20:52',NULL,NULL,'c7b615be-bf0d-4d4b-88a3-19f24432dbc3'),(19197,NULL,NULL,NULL,5,'craft\\elements\\User',1,0,'2021-06-13 23:21:06','2021-06-13 23:22:32',NULL,NULL,'299f827e-9ffa-4d60-9f21-5ed0a998a304'),(19200,NULL,NULL,NULL,4,'craft\\elements\\Entry',1,0,'2021-06-13 23:27:28','2021-06-14 00:18:05',NULL,NULL,'284ab247-8f9d-4464-ab8c-5344b2c6f86e'),(19201,19200,NULL,11544,4,'craft\\elements\\Entry',1,0,'2021-06-13 23:27:28','2021-06-13 23:27:28',NULL,NULL,'52825f7c-3af9-487d-992c-336c076ca5f0'),(19202,19200,NULL,11545,4,'craft\\elements\\Entry',1,0,'2021-06-13 23:27:51','2021-06-13 23:27:51',NULL,NULL,'ef3bd1b0-89d1-4660-b760-f9ed0eddbeca'),(19203,19200,NULL,11546,4,'craft\\elements\\Entry',1,0,'2021-06-14 00:13:29','2021-06-14 00:13:29',NULL,NULL,'575726ce-5dcd-478c-af39-a6501e2eb688'),(19204,19200,NULL,11547,4,'craft\\elements\\Entry',1,0,'2021-06-14 00:14:00','2021-06-14 00:14:00',NULL,NULL,'154bd459-952f-4e22-83f3-27fb2d000b02'),(19205,19200,NULL,11548,4,'craft\\elements\\Entry',1,0,'2021-06-14 00:14:10','2021-06-14 00:14:10',NULL,NULL,'0506316c-cd2c-4f72-9def-f4cf18850bd2'),(19206,19200,NULL,11549,4,'craft\\elements\\Entry',1,0,'2021-06-14 00:14:19','2021-06-14 00:14:19',NULL,NULL,'243629e2-2ee7-46f9-8933-660ac806c9d2'),(19207,19200,NULL,11550,4,'craft\\elements\\Entry',1,0,'2021-06-14 00:14:24','2021-06-14 00:14:24',NULL,NULL,'087b9c71-db9b-44c1-91ef-44f8d8bcd74d'),(19208,19200,NULL,11551,4,'craft\\elements\\Entry',1,0,'2021-06-14 00:14:29','2021-06-14 00:14:29',NULL,NULL,'e34e6ec6-f363-406b-9350-7293c4a6c7cb'),(19209,19200,NULL,11552,4,'craft\\elements\\Entry',1,0,'2021-06-14 00:14:33','2021-06-14 00:14:33',NULL,NULL,'de47b226-cffc-43d6-a230-f214471a2dd1'),(19210,19200,NULL,11553,4,'craft\\elements\\Entry',1,0,'2021-06-14 00:14:36','2021-06-14 00:14:36',NULL,NULL,'2973c1c9-fa6e-4dff-8928-7f73aea4b939'),(19211,19200,NULL,11554,4,'craft\\elements\\Entry',1,0,'2021-06-14 00:14:40','2021-06-14 00:14:40',NULL,NULL,'2b3aa8fa-23ab-4fee-b143-a5d8163fc564'),(19212,19200,NULL,11555,4,'craft\\elements\\Entry',1,0,'2021-06-14 00:14:48','2021-06-14 00:14:48',NULL,NULL,'aadcd697-8d7c-45fc-a2fe-f03b60af0c34'),(19213,19200,NULL,11556,4,'craft\\elements\\Entry',1,0,'2021-06-14 00:15:27','2021-06-14 00:15:27',NULL,NULL,'fba7a362-48ab-49c4-8730-ada014efa761'),(19214,19200,NULL,11557,4,'craft\\elements\\Entry',1,0,'2021-06-14 00:15:49','2021-06-14 00:15:49',NULL,NULL,'46627b2d-05f4-4362-be2b-10eade47873e'),(19215,19200,NULL,11558,4,'craft\\elements\\Entry',1,0,'2021-06-14 00:16:01','2021-06-14 00:16:01',NULL,NULL,'a6c53076-0da1-4316-b5db-02398333001d'),(19216,19200,NULL,11559,4,'craft\\elements\\Entry',1,0,'2021-06-14 00:16:22','2021-06-14 00:16:22',NULL,NULL,'dd3ca214-376c-4480-b11a-a9d907130558'),(19217,19200,NULL,11560,4,'craft\\elements\\Entry',1,0,'2021-06-14 00:16:35','2021-06-14 00:16:35',NULL,NULL,'0eeede5f-860e-4721-ad85-4d126c64d2e1'),(19218,19200,NULL,11561,4,'craft\\elements\\Entry',1,0,'2021-06-14 00:16:56','2021-06-14 00:16:56',NULL,NULL,'d67dacf1-45d2-4fdd-8236-2ecb2e8c1b23'),(19219,19200,NULL,11562,4,'craft\\elements\\Entry',1,0,'2021-06-14 00:17:09','2021-06-14 00:17:09',NULL,NULL,'69012dd5-7001-47f9-9e0e-c48f79d79728'),(19220,19200,NULL,11563,4,'craft\\elements\\Entry',1,0,'2021-06-14 00:17:42','2021-06-14 00:17:42',NULL,NULL,'a7e78500-3940-4af5-89f9-04d6b755d398'),(19221,19200,NULL,11564,4,'craft\\elements\\Entry',1,0,'2021-06-14 00:18:05','2021-06-14 00:18:05',NULL,NULL,'232ecdf3-95eb-486e-a77b-595d3baf75ff'),(19222,NULL,NULL,NULL,4,'craft\\elements\\Entry',1,0,'2021-06-15 04:51:48','2021-06-15 23:35:41',NULL,NULL,'17a755db-f823-4fb0-a94e-5b505de28285'),(20145,19222,NULL,12487,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:29:45','2021-06-15 23:29:45',NULL,NULL,'130c2e55-df51-44e0-96b0-00fd66e0be1e'),(20146,19222,NULL,12488,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:29:49','2021-06-15 23:29:49',NULL,NULL,'4ee7fd5a-516d-48a9-a9b6-82945ecead99'),(20147,19222,NULL,12489,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:29:52','2021-06-15 23:29:52',NULL,NULL,'03d0e734-aea1-4631-bee9-ff3a3f2d65f1'),(20148,19222,NULL,12490,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:29:56','2021-06-15 23:29:56',NULL,NULL,'36141bc7-0cd2-4452-a6a5-556e3e6e7439'),(20149,19222,NULL,12491,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:29:58','2021-06-15 23:29:58',NULL,NULL,'d84d7bb2-b557-4509-9534-1a0af950a40d'),(20150,19222,NULL,12492,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:30:20','2021-06-15 23:30:20',NULL,NULL,'898513ea-11d7-4d80-8dba-1faa3e65fb17'),(20151,19222,NULL,12493,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:30:30','2021-06-15 23:30:30',NULL,NULL,'5cb45c7c-6ea1-47ba-8278-1610763125b5'),(20152,19222,NULL,12494,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:30:38','2021-06-15 23:30:38',NULL,NULL,'46cd3196-ed05-44ce-b05e-c9c0423398d4'),(20153,19222,NULL,12495,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:30:43','2021-06-15 23:30:43',NULL,NULL,'f929bce8-d69b-4717-9690-c64126ecbcb3'),(20154,19222,NULL,12496,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:30:48','2021-06-15 23:30:48',NULL,NULL,'db332bfa-2dc2-4322-975a-940bf6092ada'),(20155,19222,NULL,12497,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:30:52','2021-06-15 23:30:52',NULL,NULL,'05bba908-23e9-4768-8d46-f463c41e3204'),(20156,19222,NULL,12498,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:30:55','2021-06-15 23:30:55',NULL,NULL,'d3058773-3703-46db-ba24-099c31c5ef98'),(20157,19222,NULL,12499,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:30:59','2021-06-15 23:30:59',NULL,NULL,'5debf0a0-ec86-48c1-90d2-08952480a009'),(20158,19222,NULL,12500,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:31:01','2021-06-15 23:31:01',NULL,NULL,'ba28eee7-fcad-48fe-8155-c8c6175a10ce'),(20159,19222,NULL,12501,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:31:04','2021-06-15 23:31:04',NULL,NULL,'16e7de60-e60e-4ced-b735-9daecdd73ecf'),(20160,19222,NULL,12502,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:31:07','2021-06-15 23:31:07',NULL,NULL,'3f4a978f-0108-4830-9217-3397acc5ad4a'),(20161,19222,NULL,12503,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:31:09','2021-06-15 23:31:09',NULL,NULL,'7377ae16-f84d-4a9f-a4b4-7bc6b5c9ee69'),(20162,19222,NULL,12504,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:31:11','2021-06-15 23:31:11',NULL,NULL,'36dbd268-f7ba-4d91-9642-415e25e53874'),(20163,19222,NULL,12505,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:31:32','2021-06-15 23:31:32',NULL,NULL,'624ee877-9df7-4e6f-b362-2a8abb37bddc'),(20164,19222,NULL,12506,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:31:43','2021-06-15 23:31:43',NULL,NULL,'1caa7a63-6e88-4243-a6db-39e2f3e46fff'),(20165,19222,NULL,12507,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:31:50','2021-06-15 23:31:50',NULL,NULL,'e61503b5-0db1-4dad-8e00-57b218e3965b'),(20166,19222,NULL,12508,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:32:12','2021-06-15 23:32:12',NULL,NULL,'b7fe2615-ff12-402c-af21-88b428c1db49'),(20167,19222,NULL,12509,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:32:22','2021-06-15 23:32:22',NULL,NULL,'6124a4a9-906a-4836-ac06-9eec0c944eb5'),(20168,19222,NULL,12510,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:32:30','2021-06-15 23:32:30',NULL,NULL,'ffbcf1f3-e84a-45d7-96ce-49c009d43f3b'),(20169,19222,NULL,12511,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:32:35','2021-06-15 23:32:35',NULL,NULL,'a1e0d204-e53f-444c-97cf-6e09385e4472'),(20170,19222,NULL,12512,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:32:40','2021-06-15 23:32:40',NULL,NULL,'fd0046ee-2018-4291-accf-230861d39af2'),(20171,19222,NULL,12513,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:32:44','2021-06-15 23:32:44',NULL,NULL,'ebbb7806-0583-43bb-8ef6-a56aa6e5a664'),(20172,19222,NULL,12514,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:32:47','2021-06-15 23:32:47',NULL,NULL,'03e12211-8bd9-4bc7-bd27-c984d6badf97'),(20173,19222,NULL,12515,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:33:09','2021-06-15 23:33:09',NULL,NULL,'6072c2c4-1a9f-4313-b68a-bdab4ecde3f7'),(20174,19222,NULL,12516,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:33:19','2021-06-15 23:33:19',NULL,NULL,'27b7ca24-4279-4c73-9ccc-b59f7d160cde'),(20175,19222,NULL,12517,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:33:27','2021-06-15 23:33:27',NULL,NULL,'0908ebc2-a5fa-4558-a18e-baec52c1023d'),(20176,19222,NULL,12518,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:33:32','2021-06-15 23:33:32',NULL,NULL,'69a8099d-e8c1-4410-a139-36dbf352142f'),(20177,19222,NULL,12519,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:33:37','2021-06-15 23:33:37',NULL,NULL,'5838cc63-a17b-4ebc-a558-490d80515cd6'),(20178,19222,NULL,12520,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:33:41','2021-06-15 23:33:41',NULL,NULL,'8680b64f-03fd-42ec-9435-56471bb8b502'),(20179,19222,NULL,12521,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:34:02','2021-06-15 23:34:02',NULL,NULL,'c184b27f-23b4-4343-a105-a2a4e0f239d9'),(20180,19222,NULL,12522,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:34:13','2021-06-15 23:34:13',NULL,NULL,'44f8dcc9-477a-4dcb-9019-1c428b0820c6'),(20181,19222,NULL,12523,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:34:20','2021-06-15 23:34:20',NULL,NULL,'76255bb1-f030-4d59-babb-cd6d977afb82'),(20182,19222,NULL,12524,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:34:26','2021-06-15 23:34:26',NULL,NULL,'234e1f8e-8bd1-45b0-b06d-e45ce22b5552'),(20183,19222,NULL,12525,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:34:31','2021-06-15 23:34:31',NULL,NULL,'9af67d6c-7102-4e2c-80dd-e657fd4102f0'),(20184,19222,NULL,12526,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:34:35','2021-06-15 23:34:35',NULL,NULL,'98f243e6-5bf4-4809-a17f-ef5c14174e36'),(20185,19222,NULL,12527,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:34:38','2021-06-15 23:34:38',NULL,NULL,'d655d5b4-7965-4414-beeb-0d2fe1c7f84a'),(20186,19222,NULL,12528,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:34:41','2021-06-15 23:34:41',NULL,NULL,'262d10f9-8f3e-48e8-a3b2-47eff35d86fc'),(20187,19222,NULL,12529,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:34:44','2021-06-15 23:34:44',NULL,NULL,'a56f0764-552f-4e21-a229-c097ad8bab74'),(20188,19222,NULL,12530,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:35:05','2021-06-15 23:35:05',NULL,NULL,'858dfe6e-8aae-459c-8e31-4dbdca21dcfe'),(20189,19222,NULL,12531,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:35:16','2021-06-15 23:35:16',NULL,NULL,'e55e91ac-68aa-4c14-ae35-7ce03dc662a3'),(20190,19222,NULL,12532,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:35:23','2021-06-15 23:35:23',NULL,NULL,'7e272ea6-6cb1-4b8d-a893-24bbeccc5f69'),(20191,19222,NULL,12533,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:35:29','2021-06-15 23:35:29',NULL,NULL,'93d0d4c3-ba6c-4815-9d6b-3c66fa453cd7'),(20192,19222,NULL,12534,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:35:33','2021-06-15 23:35:33',NULL,NULL,'d93b5878-6655-4407-8a14-05eaa9dd837d'),(20193,19222,NULL,12535,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:35:37','2021-06-15 23:35:37',NULL,NULL,'8067f536-6c19-4ca7-8fdb-5b602d9b139f'),(20194,19222,NULL,12536,4,'craft\\elements\\Entry',1,0,'2021-06-15 23:35:41','2021-06-15 23:35:41',NULL,NULL,'2ffcc2a5-3fe4-41c2-95f8-e1e6a49ece7a'),(20195,NULL,NULL,NULL,4,'craft\\elements\\Entry',1,0,'2021-06-16 00:27:52','2022-02-09 23:35:54',NULL,NULL,'efc3ffcc-89ed-4a59-8497-90d0d9f3c0b7'),(20379,NULL,NULL,NULL,23,'craft\\elements\\Entry',1,0,'2021-06-21 04:18:41','2023-03-10 01:36:37',NULL,NULL,'284176a4-324b-4baa-9e32-614811fc318b'),(21052,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:37:18','2021-06-21 04:37:06',NULL,NULL,'76ae797e-c549-4097-8560-f286d7888964'),(21053,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:37:18','2021-06-21 04:37:06',NULL,NULL,'7a35e729-bc05-42a0-8d9b-1fa0b018a24a'),(21054,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:37:18','2021-06-21 04:37:06',NULL,NULL,'1418003c-18fc-43a2-bff2-60d6d762dbaf'),(21055,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:37:18','2021-06-21 04:37:06',NULL,NULL,'3c592b66-4e91-41ad-a585-1a07064a46b9'),(21056,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:37:18','2021-06-21 04:37:06',NULL,NULL,'f95d91fb-fb7e-49ee-949b-14ec3bb48aa7'),(21059,NULL,NULL,NULL,24,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:37:18','2021-06-21 04:37:06',NULL,NULL,'e2d511dc-d6b8-4436-a61f-93c7c5f5a525'),(21061,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:37:19','2021-06-21 04:37:06',NULL,NULL,'26ee3d47-a5f7-4f54-a567-a4d32908e905'),(21062,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:37:19','2021-06-21 04:37:06',NULL,NULL,'ff631fe2-814c-44df-a202-4667b84571da'),(21063,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:37:19','2021-06-21 04:37:06',NULL,NULL,'f2cc7d08-920f-47dd-9240-e59658d450e9'),(21064,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:37:19','2021-06-21 04:37:06',NULL,NULL,'f336fbaa-29d8-4a5d-b870-2b06e70272b6'),(21065,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:37:19','2021-06-21 04:37:06',NULL,NULL,'4e022476-4ca1-4e63-8975-5858fb114675'),(21066,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:37:19','2021-06-21 04:37:06',NULL,NULL,'40ed5ed6-8b44-4067-9049-94481ca768b6'),(21067,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:37:19','2021-06-21 04:37:06',NULL,NULL,'170aaf89-2c07-4794-803c-7a4aaa80efab'),(21068,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:37:19','2021-06-21 04:37:06',NULL,NULL,'e205017f-90e4-477e-b02a-7806ecdd23e5'),(21075,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-21 04:37:48','2021-10-05 07:03:40',NULL,NULL,'bf2b7c80-4ca2-4af4-abf8-42fda4febdb7'),(21076,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-21 04:37:48','2021-10-05 07:04:02',NULL,NULL,'6a51f106-9584-4fbe-a6de-bcd284f4095b'),(21079,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-21 04:37:53','2021-10-05 07:03:19',NULL,NULL,'decd29fd-013e-4f07-ba6d-2e332df77ad3'),(21082,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-21 04:37:57','2021-10-05 07:03:01',NULL,NULL,'85c83344-84ec-498e-8630-0cd8fa995cbc'),(21084,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-21 04:37:58','2021-10-05 07:02:44',NULL,NULL,'ce474335-dc4f-4279-a1fb-7380c24fb868'),(21085,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-06-21 04:38:02','2021-11-09 06:09:05',NULL,NULL,'159f10d8-54a2-454c-af32-7c1db87644fe'),(21090,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:44:59','2021-06-21 04:37:06',NULL,NULL,'910d9506-2c71-4466-862d-34545ce90520'),(21091,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:44:59','2021-06-21 04:37:06',NULL,NULL,'dd28d4b0-8e20-476f-95fd-c64b3245dd6f'),(21092,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:44:59','2021-06-21 04:37:06',NULL,NULL,'2f049df8-b35c-4705-990e-56b5b5bd2f62'),(21093,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:44:59','2021-06-21 04:37:06',NULL,NULL,'4a5a3db3-1a2c-4289-b101-16104bb6d214'),(21094,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:44:59','2021-06-21 04:37:06',NULL,NULL,'ac0e19be-7d2d-4e88-9e08-c78dfdec348a'),(21097,NULL,NULL,NULL,24,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:45:00','2021-06-21 04:37:06',NULL,NULL,'9779220e-87b4-4573-a0ea-b9240ad21049'),(21099,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:45:00','2021-06-21 04:37:06',NULL,NULL,'b810e52d-cc3e-4340-ae66-86616c0a88c6'),(21100,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:45:00','2021-06-21 04:37:06',NULL,NULL,'4ba2e474-26d6-450b-a64e-65c6f5007506'),(21101,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:45:00','2021-06-21 04:37:06',NULL,NULL,'1b6a80ad-7835-4476-bd4d-25f2038ccbbd'),(21102,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:45:00','2021-06-21 04:37:06',NULL,NULL,'58196d43-d123-4378-a6cc-72245e3faad0'),(21103,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:45:00','2021-06-21 04:37:06',NULL,NULL,'5059920f-3c63-4d8e-affc-31e6e3b38efb'),(21104,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:45:00','2021-06-21 04:37:06',NULL,NULL,'5ecff313-feb3-4091-a61a-6531c73951ef'),(21105,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:45:00','2021-06-21 04:37:06',NULL,NULL,'e26cb397-1fa2-4639-9ad5-5cc125744bd1'),(21106,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:45:00','2021-06-21 04:37:06',NULL,NULL,'5183d682-6625-483a-84e3-d5001984ec23'),(21112,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:45:00','2021-06-21 04:37:06',NULL,NULL,'91a5f8d4-2c46-41c8-a9a4-ba3af9e45feb'),(21113,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:45:00','2021-06-21 04:37:06',NULL,NULL,'54caddb5-4e9d-411a-ae88-76a213313408'),(21114,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:45:00','2021-06-21 04:37:06',NULL,NULL,'213e23df-7c5d-4461-a592-17aec958f255'),(21115,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:45:00','2021-06-21 04:37:06',NULL,NULL,'564855ed-b6c4-4575-8bcf-d8c6849b76ab'),(21116,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:45:00','2021-06-21 04:37:06',NULL,NULL,'ffa0d595-d8f5-4e40-a01d-7e9dc51a9341'),(21119,NULL,NULL,NULL,24,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:45:00','2021-06-21 04:37:06',NULL,NULL,'fb4c7d21-642b-46f4-b035-e1448777b287'),(21121,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:45:00','2021-06-21 04:37:06',NULL,NULL,'de030d80-af8f-4035-91c8-94cbf7a9182d'),(21122,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:45:00','2021-06-21 04:37:06',NULL,NULL,'d9ad7ada-987a-4e76-bd92-6a83dc949446'),(21123,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:45:00','2021-06-21 04:37:06',NULL,NULL,'d7c4505f-16c9-42b9-8801-088370e3db66'),(21124,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:45:00','2021-06-21 04:37:06',NULL,NULL,'2843477d-31b3-4e5e-bf19-68134f8fdcc8'),(21125,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:45:00','2021-06-21 04:37:06',NULL,NULL,'9b13e64d-eb56-4ff3-9103-f31aaa6797f3'),(21126,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:45:00','2021-06-21 04:37:06',NULL,NULL,'5d4e49d8-e554-4ee0-9d8d-d3fedd0da47f'),(21127,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:45:00','2021-06-21 04:37:06',NULL,NULL,'dd5094f4-b82f-46f9-a1d5-6153b693ee6f'),(21128,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:45:00','2021-06-21 04:37:06',NULL,NULL,'9444ec75-9182-4d69-ad66-bf379a0f490b'),(21179,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:51:41','2021-06-21 04:37:06',NULL,NULL,'43e29bb6-2280-4388-a1ae-79f508135c77'),(21180,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:51:41','2021-06-21 04:37:06',NULL,NULL,'0149a96a-77dc-4664-9617-e769473925f4'),(21181,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:51:41','2021-06-21 04:37:06',NULL,NULL,'9bf2b9c4-af55-4de0-af66-c012e9415c7b'),(21182,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:51:41','2021-06-21 04:37:06',NULL,NULL,'3475cceb-7e90-4f12-80f9-0075089615ec'),(21183,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:51:41','2021-06-21 04:37:06',NULL,NULL,'8d5733d1-f34e-4ed9-98ed-96c7bed249d1'),(21186,NULL,NULL,NULL,24,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:51:41','2021-06-21 04:37:06',NULL,NULL,'eaab1508-5094-418e-8db2-48b9aca3f5b5'),(21188,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:51:41','2021-06-21 04:37:06',NULL,NULL,'52b88f6f-6477-4067-8818-dcafaf51f622'),(21189,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:51:41','2021-06-21 04:37:06',NULL,NULL,'e5c1b132-9748-498b-9ae9-8fdc49da4b08'),(21190,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:51:41','2021-06-21 04:37:06',NULL,NULL,'3b007744-6b5b-4098-8f33-ab2b224819cb'),(21191,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:51:41','2021-06-21 04:37:06',NULL,NULL,'993e4660-8d9e-4848-8b3f-142bca29c4e0'),(21192,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:51:41','2021-06-21 04:37:06',NULL,NULL,'cb265369-6158-4fd8-a38f-762e900266ff'),(21193,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:51:41','2021-06-21 04:37:06',NULL,NULL,'7d770cbf-69f2-4615-a595-284d92de81be'),(21194,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:51:41','2021-06-21 04:37:06',NULL,NULL,'212f2ea7-bffc-4201-af9f-c3140b305adb'),(21195,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:51:41','2021-06-21 04:37:06',NULL,NULL,'ee07d58e-cc91-4b01-8d3d-2aeb9498c82d'),(21202,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:57:35','2021-06-21 04:37:06',NULL,NULL,'3127b345-d32e-437d-a806-bb654825f552'),(21203,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:57:35','2021-06-21 04:37:06',NULL,NULL,'22c92d8a-7224-47ac-9a20-e991b3de466b'),(21204,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:57:35','2021-06-21 04:37:06',NULL,NULL,'d17aa481-c02b-46ce-960f-8fa80116d2b8'),(21205,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:57:35','2021-06-21 04:37:06',NULL,NULL,'61401ba4-507a-4df2-a0e1-bfa10a1a161e'),(21206,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:57:35','2021-06-21 04:37:06',NULL,NULL,'550fd946-ee0f-490f-9573-40ad3f8e14be'),(21209,NULL,NULL,NULL,24,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:57:35','2021-06-21 04:37:06',NULL,NULL,'493c768c-524b-4621-a7aa-105b6be8f736'),(21211,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:57:35','2021-06-21 04:37:06',NULL,NULL,'51b1a1d1-667d-4465-8f1d-c747d5456387'),(21212,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:57:35','2021-06-21 04:37:06',NULL,NULL,'3503cd26-054c-45d1-9566-dd5fdba629fb'),(21213,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:57:35','2021-06-21 04:37:06',NULL,NULL,'dc7a0900-37eb-4bb2-b8ae-ffd0eb52a3fc'),(21214,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:57:35','2021-06-21 04:37:06',NULL,NULL,'b1c8eec2-b31b-4447-bc44-bd278f71fd3b'),(21215,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:57:35','2021-06-21 04:37:06',NULL,NULL,'31cc2b01-e796-458f-87a7-be2f89241b28'),(21216,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:57:35','2021-06-21 04:37:06',NULL,NULL,'1e5b2fd1-0060-4fc5-a721-8d78491644f4'),(21217,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:57:35','2021-06-21 04:37:06',NULL,NULL,'9b82becd-baac-490c-b7b6-7c51a9b54813'),(21218,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 04:57:35','2021-06-21 04:37:06',NULL,NULL,'1bc439cf-7dc9-4c56-a61d-01d1aefe3459'),(21224,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:06:48','2021-06-21 04:37:06',NULL,NULL,'f6704989-836b-4501-8c05-f53b9b163c6c'),(21225,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:06:48','2021-06-21 04:37:06',NULL,NULL,'60b234f0-fca8-4c1c-afc0-809ff8f8c875'),(21226,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:06:48','2021-06-21 04:37:06',NULL,NULL,'eb71683d-1ec5-4b9a-a54b-bb0a0b0744a5'),(21227,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:06:48','2021-06-21 04:37:06',NULL,NULL,'cfdef1d3-35b3-4009-a4d8-99e05c32903d'),(21228,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:06:48','2021-06-21 04:37:06',NULL,NULL,'e727838f-630b-4214-ba71-dd390aff532a'),(21231,NULL,NULL,NULL,24,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:06:48','2021-06-21 04:37:06',NULL,NULL,'62c91966-1b83-4df3-afd2-06d71b2d436c'),(21245,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:14:24','2021-06-21 04:37:06',NULL,NULL,'fa925cc0-8a4d-40cd-b1e3-a4d0a0541376'),(21246,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:14:24','2021-06-21 04:37:06',NULL,NULL,'da3601f4-34bd-4864-9fd6-09aef15a8e83'),(21247,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:14:24','2021-06-21 04:37:06',NULL,NULL,'c95f2e26-70db-4a63-b8f9-488c96259886'),(21248,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:14:24','2021-06-21 04:37:06',NULL,NULL,'79b83586-f4e5-4813-a0ff-1265453629bb'),(21249,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:14:24','2021-06-21 04:37:06',NULL,NULL,'750962cd-6eff-4d06-8579-2bf061aaf1ba'),(21252,NULL,NULL,NULL,24,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:14:24','2021-06-21 04:37:06',NULL,NULL,'7ac12762-41ec-4401-8cc0-85c75b5938af'),(21254,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:14:24','2021-06-21 05:14:24',NULL,NULL,'bbe9a60a-555f-409e-a09a-defc69d864ee'),(21255,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:14:24','2021-06-21 05:14:24',NULL,NULL,'4a64f89d-1a3b-4028-b4cd-862d4203f038'),(21256,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:14:24','2021-06-21 05:14:24',NULL,NULL,'0fd5d39c-1190-4e5c-8cdd-16f0780ac93f'),(21257,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:14:24','2021-06-21 05:14:24',NULL,NULL,'1b5ea3f4-4f45-4b0c-9620-59949ea69c9c'),(21258,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:14:24','2021-06-21 05:14:24',NULL,NULL,'c0dba4a2-4929-4e21-922d-e2639ab41c33'),(21259,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:14:24','2021-06-21 05:14:24',NULL,NULL,'56f2baa6-6037-4426-a9a0-44bc48666409'),(21260,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:14:24','2021-06-21 05:14:24',NULL,NULL,'c3250f2f-e034-44f5-b760-36622cc4c520'),(21272,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:15:33','2021-06-21 04:37:06',NULL,NULL,'7c334cc3-8c67-4af8-b569-ecc68ce4936a'),(21273,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:15:33','2021-06-21 04:37:06',NULL,NULL,'8222f067-2a27-4e93-a893-d12795b8a329'),(21274,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:15:33','2021-06-21 04:37:06',NULL,NULL,'f526e769-2e14-4acc-81a4-07e953b40488'),(21275,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:15:33','2021-06-21 04:37:06',NULL,NULL,'81172658-ab7c-463b-b610-0164f439c5f9'),(21276,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:15:33','2021-06-21 04:37:06',NULL,NULL,'58b4ef0e-c265-41fe-ad37-6aee4a5787e5'),(21279,NULL,NULL,NULL,24,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:15:33','2021-06-21 04:37:06',NULL,NULL,'c55f106e-222c-435e-9cba-980cbd3f2967'),(21281,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:15:33','2021-06-21 05:14:24',NULL,NULL,'9c0a3b9e-3e1d-4b36-bdb5-4e2316499c09'),(21282,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:15:33','2021-06-21 05:14:24',NULL,NULL,'f2c3ef59-4bd9-4ff7-911b-ae181108fbe0'),(21283,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:15:33','2021-06-21 05:14:24',NULL,NULL,'69f89269-6406-4088-9125-23951ef321fd'),(21284,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:15:33','2021-06-21 05:14:24',NULL,NULL,'11838228-9fc2-411f-870b-e945d3d92b9a'),(21285,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:15:33','2021-06-21 05:14:24',NULL,NULL,'606ead16-b1a8-4fb2-88f2-e1260a59c1fc'),(21286,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:15:33','2021-06-21 05:14:24',NULL,NULL,'52c2f29f-5f5b-466c-a858-761c42c30120'),(21287,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:15:33','2021-06-21 05:14:24',NULL,NULL,'896586d9-3dd5-4e7d-9b24-835fb051a07b'),(21289,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:15:33','2021-06-21 05:15:32',NULL,NULL,'5e18673e-90f8-4e37-9fe4-9120498542b0'),(21290,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:15:33','2021-06-21 05:15:32',NULL,NULL,'0e439c80-9824-4ed8-97b4-ff7cf4df8774'),(21291,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:15:33','2021-06-21 05:15:32',NULL,NULL,'2c1b23ce-041a-4103-be65-d6929479b4a6'),(21292,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:15:33','2021-06-21 05:15:32',NULL,NULL,'1819349d-cf9c-4150-b48c-4b175ab83f6c'),(21293,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:15:33','2021-06-21 05:15:32',NULL,NULL,'8b371884-f8fe-48b6-a216-73b99ceb3a84'),(21294,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-06-21 05:15:33','2021-06-21 05:15:32',NULL,NULL,'a2293eff-8028-419e-a17b-04e39c125a67'),(21296,NULL,NULL,NULL,33,'craft\\elements\\GlobalSet',1,0,'2021-06-21 06:00:18','2023-03-09 04:49:56',NULL,NULL,'5511d39d-a282-4557-8bf2-6a3c6f93bd15'),(21297,NULL,NULL,NULL,34,'craft\\elements\\Entry',1,0,'2021-06-21 06:24:18','2023-03-15 04:25:53',NULL,NULL,'8dc8b526-2286-4045-8fed-509ed4d6109a'),(21298,21297,NULL,12731,34,'craft\\elements\\Entry',1,0,'2021-06-21 06:24:18','2021-06-21 06:24:18',NULL,NULL,'8d3af3db-25e6-458a-8d40-aeaafe4e43b5'),(21299,21297,NULL,12732,34,'craft\\elements\\Entry',1,0,'2021-06-21 06:24:59','2021-06-21 06:24:59',NULL,NULL,'bcbd8721-06dc-4abc-b797-e8ecc5e6a317'),(21308,21297,NULL,12733,34,'craft\\elements\\Entry',1,0,'2021-06-21 06:26:26','2021-06-21 06:26:26',NULL,NULL,'95361d10-fa54-4154-8a7e-01ad0eca1c41'),(21309,NULL,NULL,NULL,25,'craft\\elements\\MatrixBlock',1,0,'2021-06-21 06:26:26','2021-06-21 06:26:17',NULL,NULL,'2e8c3c17-7e2a-4331-8a9e-7b2cb6d76f2b'),(21335,NULL,NULL,NULL,30,'craft\\elements\\MatrixBlock',1,0,'2021-06-21 06:33:44','2021-06-21 06:33:29',NULL,NULL,'23660d5b-8974-4868-b66a-4415c4e13f19'),(21336,21297,NULL,12734,34,'craft\\elements\\Entry',1,0,'2021-06-21 06:33:44','2021-06-21 06:33:44',NULL,NULL,'42bc44df-3cd9-4534-ad6d-b50b671d8598'),(21337,NULL,NULL,NULL,30,'craft\\elements\\MatrixBlock',1,0,'2021-06-21 06:33:45','2021-06-21 06:33:29',NULL,NULL,'b3b43696-9182-4f75-882c-c175c05032ce'),(21338,21297,NULL,12735,34,'craft\\elements\\Entry',1,0,'2021-06-21 06:33:48','2021-06-21 06:33:48',NULL,NULL,'835196f5-aa60-4508-a876-5a8dd575ceeb'),(21339,NULL,NULL,NULL,30,'craft\\elements\\MatrixBlock',1,0,'2021-06-21 06:33:48','2021-06-21 06:33:29',NULL,NULL,'879b2f3c-6174-412a-b3d5-e5d2a2e7c1d6'),(21371,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:11:46','2021-06-21 04:37:06',NULL,NULL,'37d465b9-fe87-40e6-970f-53693ef56827'),(21372,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:11:46','2021-06-21 04:37:06',NULL,NULL,'da4ceaca-427e-47b6-8222-fe41640e26b5'),(21373,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:11:46','2021-06-21 04:37:06',NULL,NULL,'69d9b597-537e-4745-bf2e-ad8e858ba9d4'),(21374,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:11:46','2021-06-21 04:37:06',NULL,NULL,'d0004e4e-b132-4635-9058-7f2d54915c83'),(21375,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:11:46','2021-06-21 04:37:06',NULL,NULL,'d6448276-b126-4f2e-ba8b-ece04f5d19e6'),(21378,NULL,NULL,NULL,24,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:11:46','2021-06-21 04:37:06',NULL,NULL,'9a5329e7-5732-46f4-a6a1-35f118c1b4e0'),(21380,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:11:46','2021-06-21 05:14:24',NULL,NULL,'4017c299-69c6-4312-8a84-b0426e3eca36'),(21381,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:11:46','2021-06-21 05:14:24',NULL,NULL,'17dda0c0-fa65-43d2-8d26-51da01c558d7'),(21382,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:11:47','2021-06-21 05:14:24',NULL,NULL,'d867d1c6-4c63-452e-abc1-71deb8ab8ec4'),(21383,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:11:47','2021-06-21 05:14:24',NULL,NULL,'e27f1e68-58e5-4312-b60d-7841cb5e8a4e'),(21384,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:11:47','2021-06-21 05:14:24',NULL,NULL,'6cdcd2cb-77d7-4c8f-b299-88b4d2e14e4a'),(21385,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:11:47','2021-06-21 05:14:24',NULL,NULL,'23950e9c-4c24-49ce-aa7b-656b9be043d3'),(21386,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:11:47','2021-06-21 05:14:24',NULL,NULL,'a55fcdfb-3400-4739-88e3-7e0d1b699166'),(21388,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:11:47','2021-06-21 05:15:32',NULL,NULL,'4e2046bf-65c4-4bc0-a9f8-1b1e4d388161'),(21389,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:11:47','2021-06-21 05:15:32',NULL,NULL,'233501b3-e4dd-4abe-9a81-a943fa717498'),(21390,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:11:47','2021-06-21 05:15:32',NULL,NULL,'813d99cd-02ba-4fe1-818a-7950c4e5934b'),(21391,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:11:47','2021-06-21 05:15:32',NULL,NULL,'2bcc8cba-ff38-44fb-bd5b-b50f90ced1d6'),(21392,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:11:47','2021-06-21 05:15:32',NULL,NULL,'d010473f-3e2e-4209-adc0-dd8dd48001fe'),(21393,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:11:47','2021-06-21 05:15:32',NULL,NULL,'207076df-dd1a-4ceb-ab7d-21fea090e1b0'),(21398,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:13:42','2021-06-21 04:37:06',NULL,NULL,'c05a62fb-1d9e-4a85-921d-1cdf6d64b1ca'),(21399,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:13:42','2021-06-21 04:37:06',NULL,NULL,'abebff2e-14d0-49a1-a881-f188dc43a8ea'),(21400,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:13:42','2021-06-21 04:37:06',NULL,NULL,'3e26d808-dedb-40ad-aa96-51cdfb6ce722'),(21401,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:13:43','2021-06-21 04:37:06',NULL,NULL,'0e8dc9ff-76da-4f1e-bb19-cd52edb8d6be'),(21402,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:13:43','2021-06-21 04:37:06',NULL,NULL,'1f7655e1-ebfe-4cda-84a1-e9ba18dfe94b'),(21405,NULL,NULL,NULL,24,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:13:43','2021-06-21 04:37:06',NULL,NULL,'2b8a4f73-089a-4d22-bc18-f7434276737e'),(21407,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:13:43','2021-06-21 05:14:24',NULL,NULL,'6c56e751-79de-4503-9f25-04b83f2be903'),(21408,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:13:43','2021-06-21 05:14:24',NULL,NULL,'abc58cfe-7776-47b5-ba93-63920cca0ea4'),(21409,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:13:43','2021-06-21 05:14:24',NULL,NULL,'12f6d4f3-fcbb-4697-94de-43f3649ce73a'),(21410,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:13:43','2021-06-21 05:14:24',NULL,NULL,'f75ab874-82ff-4d81-8b56-260b8e0cf5f0'),(21411,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:13:43','2021-06-21 05:14:24',NULL,NULL,'46dddb7f-2ae4-45a3-95e7-fd295f9c5635'),(21412,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:13:43','2021-06-21 05:14:24',NULL,NULL,'5e6e834c-2d43-46c4-babd-03813dc871e1'),(21413,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:13:43','2021-06-21 05:14:24',NULL,NULL,'803faf8d-5a38-4836-bc65-21e30f4ace8f'),(21415,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:13:43','2021-06-21 05:15:32',NULL,NULL,'2ae5d13b-c0e5-4583-990b-0a7edab1d757'),(21416,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:13:43','2021-06-21 05:15:32',NULL,NULL,'035f0441-d324-4ab4-9c5e-eae9c8e3a7ed'),(21417,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:13:43','2021-06-21 05:15:32',NULL,NULL,'221cfda0-9b2c-445d-b95b-41d8221dbb4a'),(21418,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:13:43','2021-06-21 05:15:32',NULL,NULL,'c477975a-0d42-469b-af29-197318393025'),(21419,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:13:43','2021-06-21 05:15:32',NULL,NULL,'38341d94-057d-41a8-85f1-bad6e527fdbe'),(21420,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:13:43','2021-06-21 05:15:32',NULL,NULL,'26c1612c-c577-4094-9760-d557a0533a06'),(21425,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:15:08','2021-06-21 04:37:06',NULL,NULL,'18570c25-a0f8-4484-8c2f-6d61d7293b90'),(21426,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:15:08','2021-06-21 04:37:06',NULL,NULL,'a0025ae1-09ac-426d-ad1f-a8518685a944'),(21427,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:15:08','2021-06-21 04:37:06',NULL,NULL,'b07aee9b-2716-493d-bb0f-6bfdf11745cb'),(21428,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:15:08','2021-06-21 04:37:06',NULL,NULL,'a5638846-4495-415b-b28b-656683a46af9'),(21429,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:15:08','2021-06-21 04:37:06',NULL,NULL,'a81c79f4-20fe-4b70-b1fb-6f85eee6fe13'),(21432,NULL,NULL,NULL,24,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:15:08','2021-06-21 04:37:06',NULL,NULL,'8be1dfc9-6ca3-4e20-b69c-737c7b0352db'),(21434,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:15:08','2021-06-21 05:14:24',NULL,NULL,'2a34c106-3b4e-4b77-909c-04983a24b565'),(21435,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:15:08','2021-06-21 05:14:24',NULL,NULL,'dd818715-eae6-4f0f-899f-3e44f3dcb881'),(21436,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:15:08','2021-06-21 05:14:24',NULL,NULL,'3f7028b3-b3a0-4bf2-98b2-304273a4b803'),(21437,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:15:08','2021-06-21 05:14:24',NULL,NULL,'c6375ea6-3db4-431e-9ada-cd0969a92446'),(21438,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:15:08','2021-06-21 05:14:24',NULL,NULL,'1a086e1e-f522-4122-a67b-ab2cd5506450'),(21439,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:15:08','2021-06-21 05:14:24',NULL,NULL,'24d0f04f-b32c-4049-a0c9-039d7aca5cb5'),(21440,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:15:08','2021-06-21 05:14:24',NULL,NULL,'00c9ed86-6ae4-42d8-a6c5-8279dfe216bb'),(21442,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:15:08','2021-06-21 05:15:32',NULL,NULL,'e9108ebb-1658-490f-ac2c-2cd54c5fd4b3'),(21443,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:15:08','2021-06-21 05:15:32',NULL,NULL,'9bb8e5ca-3d97-453c-acc1-86e5fe9802bd'),(21444,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:15:08','2021-06-21 05:15:32',NULL,NULL,'3b839592-e494-4725-9804-a880501a7668'),(21445,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:15:08','2021-06-21 05:15:32',NULL,NULL,'bcfe0cfc-40b6-4c37-964e-0346f776a7da'),(21446,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:15:08','2021-06-21 05:15:32',NULL,NULL,'7672b31e-45c7-4179-a4ec-d34500a598d4'),(21447,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:15:08','2021-06-21 05:15:32',NULL,NULL,'9fc18488-86af-424b-ae92-f82cf4417eac'),(21505,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:32:59','2021-06-21 04:37:06',NULL,NULL,'5b15af72-7df1-4b97-9f9c-530d048c774d'),(21506,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:32:59','2021-06-21 04:37:06',NULL,NULL,'17c7c570-f837-4ed9-8b31-b9956c632972'),(21507,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:32:59','2021-06-21 04:37:06',NULL,NULL,'7f002162-28a7-4616-8e1c-6c9e9c5f4e24'),(21508,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:32:59','2021-06-21 04:37:06',NULL,NULL,'fe37c5e6-188c-4ca1-8449-f3102f09e8a8'),(21509,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:32:59','2021-06-21 04:37:06',NULL,NULL,'1003c2a5-a07f-40ec-aa9f-6edcfc34c63e'),(21512,NULL,NULL,NULL,24,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:32:59','2021-06-21 04:37:06',NULL,NULL,'d6b348b3-34c3-47f8-bf96-d0841cb843be'),(21514,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:32:59','2021-06-21 05:14:24',NULL,NULL,'6a8341eb-fa34-4afc-8041-429d28dff886'),(21515,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:32:59','2021-06-21 05:14:24',NULL,NULL,'6bbcd9e8-2ce6-4d79-8366-5a5897e31d5c'),(21516,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:32:59','2021-06-21 05:14:24',NULL,NULL,'59bd563a-d708-4526-b804-5a0d424cb701'),(21517,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:32:59','2021-06-21 05:14:24',NULL,NULL,'d9bd756d-d628-4499-ba20-b04bd5b2bc38'),(21518,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:32:59','2021-06-21 05:14:24',NULL,NULL,'c75196a1-c99d-4cd9-9889-8c58abae23e0'),(21519,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:32:59','2021-06-21 05:14:24',NULL,NULL,'550e8806-8483-44a1-9c31-b32698d45d88'),(21520,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:32:59','2021-06-21 05:14:24',NULL,NULL,'c93af136-3014-444e-85de-bd86b9f74e33'),(21522,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:32:59','2021-06-21 05:15:32',NULL,NULL,'65f93543-9ec6-48bf-81b0-cd075fc0760f'),(21523,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:32:59','2021-06-21 05:15:32',NULL,NULL,'852218ce-6e01-433e-9e7f-c5dede07a026'),(21524,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:32:59','2021-06-21 05:15:32',NULL,NULL,'2436dce4-54e7-471d-9b80-450c8b1a195f'),(21525,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:32:59','2021-06-21 05:15:32',NULL,NULL,'180b0a53-8726-4ae5-a4c7-c09ffc9fda89'),(21526,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:32:59','2021-06-21 05:15:32',NULL,NULL,'cdc72a75-e67a-4c84-95f0-28db3f7953d0'),(21527,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:32:59','2021-06-21 05:15:32',NULL,NULL,'04eac810-68a7-4391-805b-6160359ccf4b'),(21532,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:40:17','2021-06-21 04:37:06',NULL,NULL,'d22f76ff-2d4a-4d46-997a-207095aa1c54'),(21533,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:40:17','2021-06-21 04:37:06',NULL,NULL,'ef2a9252-130a-4075-966a-2c7f409928bc'),(21534,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:40:17','2021-06-21 04:37:06',NULL,NULL,'4abdc669-99c3-4b1d-b339-a74834a6defa'),(21535,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:40:17','2021-06-21 04:37:06',NULL,NULL,'71b4747d-9919-4310-ae6b-8e32823fbbf7'),(21536,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:40:17','2021-06-21 04:37:06',NULL,NULL,'74104fab-a4b5-4476-b521-a51bba0e9193'),(21539,NULL,NULL,NULL,24,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:40:18','2021-06-21 04:37:06',NULL,NULL,'22257788-7c3f-4e3a-8ca4-c55c0b1a968f'),(21541,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:40:18','2021-06-21 05:14:24',NULL,NULL,'8f344e22-642e-4c59-bf9b-f63ebfd6f836'),(21542,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:40:18','2021-06-21 05:14:24',NULL,NULL,'55cd6f62-2f54-497c-bc98-f19700bbcf92'),(21543,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:40:18','2021-06-21 05:14:24',NULL,NULL,'8a8dcca2-edf0-49f8-9b51-bcbebe1f5919'),(21544,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:40:18','2021-06-21 05:14:24',NULL,NULL,'267e42c1-1134-4e75-8b3f-306ce391a9e5'),(21545,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:40:18','2021-06-21 05:14:24',NULL,NULL,'1326fabd-d701-41cd-8162-3f61c26b8204'),(21546,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:40:18','2021-06-21 05:14:24',NULL,NULL,'e0f81156-0da4-4b6c-9879-b7cde89f2771'),(21547,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:40:18','2021-06-21 05:14:24',NULL,NULL,'6e64a6f9-b58f-43ba-89d1-b2268fd83bad'),(21549,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:40:18','2021-06-21 05:15:32',NULL,NULL,'64949a7e-c841-4b99-8f78-07a60e51b2e9'),(21550,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:40:18','2021-06-21 05:15:32',NULL,NULL,'9f3e860e-54e9-4b3c-9601-1addf12f6e27'),(21551,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:40:18','2021-06-21 05:15:32',NULL,NULL,'05b74132-c480-41e0-b796-e4456504aca1'),(21552,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:40:18','2021-06-21 05:15:32',NULL,NULL,'23cc06f4-81b2-45de-a71b-7de6b0fc3fa4'),(21553,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:40:18','2021-06-21 05:15:32',NULL,NULL,'93acaabb-08fd-4c97-9b2d-1c8a4d0d565b'),(21554,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:40:18','2021-06-21 05:15:32',NULL,NULL,'f2cda751-79f9-432c-8c21-bc2a2bfbe7cb'),(21559,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:46:00','2021-06-21 04:37:06',NULL,NULL,'7cacf608-de44-4ea6-b696-8f170c229958'),(21560,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:46:00','2021-06-21 04:37:06',NULL,NULL,'be881749-f5be-4e10-85ac-840f261f813c'),(21561,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:46:00','2021-06-21 04:37:06',NULL,NULL,'ef1032e9-ca86-48f3-b547-009a98f772e4'),(21562,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:46:00','2021-06-21 04:37:06',NULL,NULL,'4f61f950-31a0-4a05-8c8a-73351b1803bd'),(21563,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:46:00','2021-06-21 04:37:06',NULL,NULL,'a0d0a96e-1a54-4194-bacf-fa4729f6fd84'),(21566,NULL,NULL,NULL,24,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:46:00','2021-06-21 04:37:06',NULL,NULL,'f6ff4a71-b773-4aef-8d29-85f78a7948d9'),(21568,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:46:00','2021-06-21 05:14:24',NULL,NULL,'74831168-d718-4ac9-b992-a18eb1ec2530'),(21569,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:46:00','2021-06-21 05:14:24',NULL,NULL,'fe5f0398-e7c6-4b6f-bc1f-ed0bd10097a3'),(21570,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:46:00','2021-06-21 05:14:24',NULL,NULL,'401d214b-deca-45a7-91ee-db253426f968'),(21571,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:46:00','2021-06-21 05:14:24',NULL,NULL,'05dcf8a0-e453-4743-afc4-da43890a766f'),(21572,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:46:00','2021-06-21 05:14:24',NULL,NULL,'ec28becc-e3cb-4593-99c8-a4fadb7fbb79'),(21573,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:46:00','2021-06-21 05:14:24',NULL,NULL,'d1e5599d-cb65-46ba-8b8b-760ca5f2596e'),(21574,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:46:00','2021-06-21 05:14:24',NULL,NULL,'520a4c71-7aad-4478-8311-e5298f622734'),(21576,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:46:00','2021-06-21 05:15:32',NULL,NULL,'d3392d2b-bffe-4ea3-8055-e9ac4fca4933'),(21577,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:46:00','2021-06-21 05:15:32',NULL,NULL,'7c74ef7b-f0d4-4a15-b5e2-413313875964'),(21578,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:46:00','2021-06-21 05:15:32',NULL,NULL,'3b8b0bb0-f744-451b-9bbd-bb22a05318f9'),(21579,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:46:01','2021-06-21 05:15:32',NULL,NULL,'9b2bf23e-4cf9-4cd4-8dfc-a4c6f7d4385b'),(21580,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:46:01','2021-06-21 05:15:32',NULL,NULL,'c7078b34-0e90-4752-9351-fdc5ee72cdcc'),(21581,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:46:01','2021-06-21 05:15:32',NULL,NULL,'06fa38de-c248-472a-9cc0-e49227deec8e'),(21586,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:23','2021-06-21 04:37:06',NULL,NULL,'1316624a-c6b4-4849-abed-4fab1dc2397a'),(21587,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:23','2021-06-21 04:37:06',NULL,NULL,'f43ad5e6-205f-4fa5-b40e-79b4bd3b25b5'),(21588,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:23','2021-06-21 04:37:06',NULL,NULL,'892fd1b0-07e7-4f47-89dd-fd112df0a2da'),(21589,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:23','2021-06-21 04:37:06',NULL,NULL,'7621eda5-1056-4f64-ac3a-a374427d0863'),(21590,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:23','2021-06-21 04:37:06',NULL,NULL,'1d6f5d55-dc38-42fd-9371-1b2fe617d9b6'),(21593,NULL,NULL,NULL,24,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:23','2021-06-21 04:37:06',NULL,NULL,'22b2aafa-3d04-4f6d-b9d4-38f623495db6'),(21595,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:23','2021-06-21 05:14:24',NULL,NULL,'5b5c4b4f-b014-48bb-8303-4a41ded4c138'),(21596,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:23','2021-06-21 05:14:24',NULL,NULL,'f4f3e1a7-1a41-47e6-903b-adb9bd044c27'),(21597,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:23','2021-06-21 05:14:24',NULL,NULL,'4227b9a8-2148-4bce-83be-099ccb5ae8e2'),(21598,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:23','2021-06-21 05:14:24',NULL,NULL,'92ce0383-97de-4440-ac92-d454d30d7398'),(21599,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:23','2021-06-21 05:14:24',NULL,NULL,'9531a36e-83f9-480b-a012-f38ef5445cdf'),(21600,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:23','2021-06-21 05:14:24',NULL,NULL,'47a52726-6c42-40d0-8a0c-6f37f4379372'),(21601,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:23','2021-06-21 05:14:24',NULL,NULL,'dec559a8-2697-4c01-b3b7-b30742204ede'),(21603,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:23','2021-06-21 05:15:32',NULL,NULL,'902162a5-b416-4e52-85e1-506b682cfa17'),(21604,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:24','2021-06-21 05:15:32',NULL,NULL,'c0a0edb7-0e0b-4fd7-82df-7444c68e9ea6'),(21605,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:24','2021-06-21 05:15:32',NULL,NULL,'72c8fdd6-3832-45e1-a822-cbd2541640ed'),(21606,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:24','2021-06-21 05:15:32',NULL,NULL,'f6ef9259-d58e-42ea-80a5-9218a1510585'),(21607,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:24','2021-06-21 05:15:32',NULL,NULL,'4ea9b9ef-7568-4d37-abfd-2a4d97744bc0'),(21608,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:24','2021-06-21 05:15:32',NULL,NULL,'3d6ca04b-f6ab-4298-884c-c5360c559df5'),(21613,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:59','2021-06-21 04:37:06',NULL,NULL,'259dee30-58ef-4172-bcf3-38a40de49fcd'),(21614,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:59','2021-06-21 04:37:06',NULL,NULL,'e68febbe-615a-4be3-8567-28fc3124c151'),(21615,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:59','2021-06-21 04:37:06',NULL,NULL,'ff6afa12-0af9-41e7-aee5-cc28593ed277'),(21616,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:59','2021-06-21 04:37:06',NULL,NULL,'c0a743fc-e8e9-47ef-bac1-7ecd468635ab'),(21617,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:59','2021-06-21 04:37:06',NULL,NULL,'a2446190-73fc-4d48-8c40-49a88e2ddcc6'),(21620,NULL,NULL,NULL,24,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:59','2021-06-21 04:37:06',NULL,NULL,'820529a9-b51f-49c2-bc42-107bb04edc11'),(21622,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:59','2021-06-21 05:14:24',NULL,NULL,'1aebe585-ed19-4b1d-afd4-702931fac2cb'),(21623,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:59','2021-06-21 05:14:24',NULL,NULL,'4463c78a-0c19-45a6-998c-57273ad10ab4'),(21624,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:59','2021-06-21 05:14:24',NULL,NULL,'d100f3ac-1410-4e2e-93a9-fa4adc24ea5b'),(21625,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:59','2021-06-21 05:14:24',NULL,NULL,'b9c8a62f-4d1a-42cd-a63e-c7a25d557005'),(21626,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:59','2021-06-21 05:14:24',NULL,NULL,'75d02c68-4c32-43ad-bfec-29ed4c7bee41'),(21627,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:59','2021-06-21 05:14:24',NULL,NULL,'63511853-18b9-4186-9433-69fdfdbfb3f0'),(21628,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:59','2021-06-21 05:14:24',NULL,NULL,'baa61860-d1da-40e6-b08d-771f13554b5a'),(21630,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:59','2021-06-21 05:15:32',NULL,NULL,'f1567e10-f2ec-4585-867c-970912bfe5b2'),(21631,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:59','2021-06-21 05:15:32',NULL,NULL,'98a19dc0-de16-4d29-98ce-0f544573aac7'),(21632,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:59','2021-06-21 05:15:32',NULL,NULL,'3421e584-a2a1-443e-943f-5646074fcbce'),(21633,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:59','2021-06-21 05:15:32',NULL,NULL,'decdcca6-87e9-4752-a1ea-de9a5c1fbca9'),(21634,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:59','2021-06-21 05:15:32',NULL,NULL,'155adda1-1b13-4486-b336-e94083ed0ab4'),(21635,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:48:59','2021-06-21 05:15:32',NULL,NULL,'a1d43e2f-11b5-4855-b3a5-b5bdd10382d5'),(21640,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:54:37','2021-06-21 04:37:06',NULL,NULL,'9c2fc0e2-45ca-4318-acd2-b6ece490842b'),(21641,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:54:37','2021-06-21 04:37:06',NULL,NULL,'02ef0082-958d-4e58-9540-17e43277f497'),(21642,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:54:37','2021-06-21 04:37:06',NULL,NULL,'248643f5-be07-4b84-937b-5dd762f8d310'),(21643,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:54:37','2021-06-21 04:37:06',NULL,NULL,'eacf1fba-f36d-467c-914f-4c6110fb16cc'),(21644,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:54:37','2021-06-21 04:37:06',NULL,NULL,'73a97fb7-5507-4ba9-b325-22b40a3e56df'),(21647,NULL,NULL,NULL,24,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:54:38','2021-06-21 04:37:06',NULL,NULL,'bd388d72-b299-4754-a00a-44fc2640c3c0'),(21649,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:54:38','2021-06-21 05:14:24',NULL,NULL,'88159047-85eb-40bc-a64c-868c695c08af'),(21650,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:54:38','2021-06-21 05:14:24',NULL,NULL,'970fe5aa-4d41-4697-9d02-e72c72e8aa7c'),(21651,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:54:38','2021-06-21 05:14:24',NULL,NULL,'0454cc3e-5adf-4759-a45c-3d204f2fa216'),(21652,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:54:38','2021-06-21 05:14:24',NULL,NULL,'e3741f17-f73c-4df3-9120-3bb5b922509f'),(21653,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:54:38','2021-06-21 05:14:24',NULL,NULL,'ed7cbaee-3cb8-4803-aa3d-b82a724105f3'),(21654,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:54:38','2021-06-21 05:14:24',NULL,NULL,'72a2c314-e346-4c66-b5b0-547981236498'),(21655,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:54:38','2021-06-21 05:14:24',NULL,NULL,'93c75714-93c6-4b4b-8ac8-00428394378a'),(21657,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:54:38','2021-06-21 05:15:32',NULL,NULL,'ca47fbaf-e3e0-47d9-84b4-d99cbd0e6367'),(21658,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:54:38','2021-06-21 05:15:32',NULL,NULL,'c6d66eb9-d6a1-4bf3-95c7-eb09f42f9f2c'),(21659,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:54:38','2021-06-21 05:15:32',NULL,NULL,'f903bf76-d786-42ae-af37-4bb8107f19d6'),(21660,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:54:38','2021-06-21 05:15:32',NULL,NULL,'9b00a07e-6650-4c8b-a45c-989d00e9f35b'),(21661,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:54:38','2021-06-21 05:15:32',NULL,NULL,'395b9c7a-b344-46ee-9f2c-d8e1c5c131b6'),(21662,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:54:38','2021-06-21 05:15:32',NULL,NULL,'51626365-6d0d-4a5f-a989-a38f9a8c9cfb'),(21667,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:56:17','2021-06-21 04:37:06',NULL,NULL,'a9c9cd84-14e3-4848-a378-009642cbcf5f'),(21668,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:56:18','2021-06-21 04:37:06',NULL,NULL,'b79319c0-4fdd-4be5-8d97-9f6f2a1d469b'),(21669,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:56:18','2021-06-21 04:37:06',NULL,NULL,'a72d6682-51e6-455a-874d-0ee2937f9d4d'),(21670,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:56:18','2021-06-21 04:37:06',NULL,NULL,'731d2a2c-410a-4b65-a78a-69e7572e7d01'),(21671,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:56:18','2021-06-21 04:37:06',NULL,NULL,'6cf5239f-2a28-4399-98ed-715b29c40143'),(21674,NULL,NULL,NULL,24,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:56:18','2021-06-21 04:37:06',NULL,NULL,'34de23e5-b4b3-4f61-a740-59716f790e8d'),(21676,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:56:18','2021-06-21 05:14:24',NULL,NULL,'c8f95297-a737-4655-b1c8-8effde273637'),(21677,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:56:18','2021-06-21 05:14:24',NULL,NULL,'c05d1032-9e58-4a4a-b836-136102e27bd5'),(21678,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:56:18','2021-06-21 05:14:24',NULL,NULL,'2f259200-69d4-43aa-bf31-50d0be1a55ad'),(21679,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:56:18','2021-06-21 05:14:24',NULL,NULL,'20482408-fa0a-40f6-808b-5d0bae81727e'),(21680,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:56:18','2021-06-21 05:14:24',NULL,NULL,'24c97219-030a-4a5c-b2a8-b90fdc943841'),(21681,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:56:18','2021-06-21 05:14:24',NULL,NULL,'892b9545-f7c1-4ce2-906b-fe8dbdd296b9'),(21682,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:56:18','2021-06-21 05:14:24',NULL,NULL,'3c25f6b9-6f1e-4950-bf6e-c78f5ac5a2fd'),(21684,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:56:18','2021-06-21 05:15:32',NULL,NULL,'614ba68a-f071-4978-9b37-5a88a3df0753'),(21685,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:56:18','2021-06-21 05:15:32',NULL,NULL,'1e88c52e-772c-481d-889d-58724af212d8'),(21686,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:56:18','2021-06-21 05:15:32',NULL,NULL,'ca4b7b0c-0aad-4c88-8cc7-a0e5e82999ba'),(21687,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:56:18','2021-06-21 05:15:32',NULL,NULL,'341d6fd3-03cb-4648-8ce5-b6b8bb5477ef'),(21688,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:56:18','2021-06-21 05:15:32',NULL,NULL,'c10893c6-298e-4012-9ca9-d031ba6295be'),(21689,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:56:18','2021-06-21 05:15:32',NULL,NULL,'9001dd71-ad94-4e14-b4e5-a98690c4f94c'),(21694,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:02','2021-06-21 04:37:06',NULL,NULL,'d313ea45-4cf8-414e-bad5-f89c51744c20'),(21695,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:02','2021-06-21 04:37:06',NULL,NULL,'4ad045f7-57e7-4e30-872e-d012692da533'),(21696,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:02','2021-06-21 04:37:06',NULL,NULL,'9fad4bc4-9c4c-4557-88cc-b0eb083f2c10'),(21697,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:02','2021-06-21 04:37:06',NULL,NULL,'5877090a-10bc-4a4c-a505-bab851fda342'),(21698,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:02','2021-06-21 04:37:06',NULL,NULL,'7d8674a0-ca72-4a01-9e52-d1ab2d33bc56'),(21701,NULL,NULL,NULL,24,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:02','2021-06-21 04:37:06',NULL,NULL,'de834c75-bfa4-4b9e-832e-032f6d3100fa'),(21703,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:02','2021-06-21 05:14:24',NULL,NULL,'1ca5477d-0172-45cb-8392-86f9f85e0843'),(21704,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:02','2021-06-21 05:14:24',NULL,NULL,'f5e9681d-4b37-4db5-b2b4-3f0a033fd527'),(21705,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:02','2021-06-21 05:14:24',NULL,NULL,'c9e1a09b-1701-418b-bf4a-681c56cae620'),(21706,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:02','2021-06-21 05:14:24',NULL,NULL,'b00c5d82-98a7-444c-8e3f-a79791a2747c'),(21707,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:02','2021-06-21 05:14:24',NULL,NULL,'a48214c0-3c0f-468a-96bf-923858731110'),(21708,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:02','2021-06-21 05:14:24',NULL,NULL,'911caa6f-ec1b-4a53-8f5e-f1e2f0b449ec'),(21709,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:02','2021-06-21 05:14:24',NULL,NULL,'91e8227d-567b-4894-b9bb-0a81196ba445'),(21711,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:02','2021-06-21 05:15:32',NULL,NULL,'f2fb5429-1c8e-41bf-8f0d-c644a927648f'),(21712,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:02','2021-06-21 05:15:32',NULL,NULL,'8f377fae-de9d-4bc6-8e54-3a50f792a718'),(21713,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:02','2021-06-21 05:15:32',NULL,NULL,'d56ddca0-c056-41f0-a042-bfa905cf4455'),(21714,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:02','2021-06-21 05:15:32',NULL,NULL,'a82b4a34-15c8-4651-9134-719bb1f8ed2d'),(21715,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:02','2021-06-21 05:15:32',NULL,NULL,'2315bd2b-0898-4dde-b8c1-bca80024fb65'),(21716,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:02','2021-06-21 05:15:32',NULL,NULL,'df83f12d-178e-4458-a691-e15e584ec401'),(21721,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:23','2021-06-21 04:37:06',NULL,NULL,'ac67754a-744e-4edd-a255-142125c0bac7'),(21722,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:23','2021-06-21 04:37:06',NULL,NULL,'a09ccf8d-baba-4eaa-8b45-a014d2242de4'),(21723,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:23','2021-06-21 04:37:06',NULL,NULL,'5bbb7153-df4d-4093-8f8e-6f977304b22b'),(21724,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:23','2021-06-21 04:37:06',NULL,NULL,'6c829901-7107-4962-aafd-e458fa7ac3bc'),(21725,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:23','2021-06-21 04:37:06',NULL,NULL,'5e394810-ff9a-4ccd-bec9-68ecdb69fd44'),(21728,NULL,NULL,NULL,24,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:23','2021-06-21 04:37:06',NULL,NULL,'35e60962-5e2d-4a7e-881d-e2011b92eef7'),(21730,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:23','2021-06-21 05:14:24',NULL,NULL,'774448d1-b9ca-4915-b05d-2f137a0ecf78'),(21731,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:23','2021-06-21 05:14:24',NULL,NULL,'2ccca817-7149-411a-9c3a-903dfdbf7d08'),(21732,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:23','2021-06-21 05:14:24',NULL,NULL,'1b653f59-084d-4ede-b2f2-dc786b2c4151'),(21733,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:23','2021-06-21 05:14:24',NULL,NULL,'b8fb995a-3df2-460c-9500-1fcd3d3e7986'),(21734,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:23','2021-06-21 05:14:24',NULL,NULL,'0c34a145-c3ed-4e99-a9e9-548492fccfd6'),(21735,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:23','2021-06-21 05:14:24',NULL,NULL,'6dde2f2e-d632-4196-89b4-2ceadce9c4b1'),(21736,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:23','2021-06-21 05:14:24',NULL,NULL,'ca5b3363-85a4-4864-b64f-607a1674c73b'),(21738,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:23','2021-06-21 05:15:32',NULL,NULL,'96c0d774-55fe-4ca4-91d8-583bd5bb3dbe'),(21739,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:23','2021-06-21 05:15:32',NULL,NULL,'5c703306-9c11-4756-ac4f-a34583239ca7'),(21740,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:23','2021-06-21 05:15:32',NULL,NULL,'7e37bd89-fa07-4c9f-a79a-72d4c8d5de9c'),(21741,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:24','2021-06-21 05:15:32',NULL,NULL,'cb291776-dc31-4d6b-b371-9ad89f067139'),(21742,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:24','2021-06-21 05:15:32',NULL,NULL,'22adbce3-1863-4749-bbcb-f527902ce7ab'),(21743,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-12 23:58:24','2021-06-21 05:15:32',NULL,NULL,'0b5049dd-49d5-463f-a319-7d0e976dca39'),(21772,NULL,NULL,NULL,25,'craft\\elements\\MatrixBlock',1,0,'2021-07-13 00:07:17','2021-06-21 05:06:47',NULL,NULL,'8c5f2c7a-162b-4e46-ad00-725829d9bf71'),(21773,NULL,NULL,NULL,27,'craft\\elements\\MatrixBlock',1,0,'2021-07-13 00:07:17','2021-06-21 05:06:47',NULL,NULL,'696b3ea9-3271-483d-85c8-a568d53081f7'),(21774,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:17','2021-06-21 04:37:06',NULL,NULL,'0ec975e2-1bc5-4378-9992-dcf885fd60ee'),(21775,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:17','2021-06-21 04:37:06',NULL,NULL,'11787898-3cba-4677-950c-1eed851c2c62'),(21776,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:17','2021-06-21 04:37:06',NULL,NULL,'90bb3777-f7a9-4a9a-b02e-3b2262a5f669'),(21777,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:17','2021-06-21 04:37:06',NULL,NULL,'5fa2131d-57cc-48e9-9a4a-f9ffe01392f3'),(21778,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:17','2021-06-21 04:37:06',NULL,NULL,'ac1782f7-2e99-4ba0-91da-b95ace5ca0b3'),(21779,NULL,NULL,NULL,28,'craft\\elements\\MatrixBlock',1,0,'2021-07-13 00:07:17','2021-06-21 05:06:47',NULL,NULL,'b5d171d2-59da-4ff7-8d89-9aa5d4c125b8'),(21780,NULL,NULL,NULL,25,'craft\\elements\\MatrixBlock',1,0,'2021-07-13 00:07:17','2021-06-21 05:06:47',NULL,NULL,'be571b1c-cef2-4be3-97dd-954b7d9a1d93'),(21781,NULL,NULL,NULL,24,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:17','2021-06-21 04:37:06',NULL,NULL,'4428761d-c932-45e4-96eb-d28ec906aa70'),(21782,NULL,NULL,NULL,30,'craft\\elements\\MatrixBlock',1,0,'2021-07-13 00:07:17','2021-06-21 05:14:24',NULL,NULL,'d19dc886-5aff-4e75-841e-1f5f3907acc2'),(21783,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:17','2021-06-21 05:14:24',NULL,NULL,'d7288817-e61c-4727-8803-875356649576'),(21784,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:17','2021-06-21 05:14:24',NULL,NULL,'7441ba6d-8fc9-479c-9531-e09858c38093'),(21785,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:17','2021-06-21 05:14:24',NULL,NULL,'681abaf5-1982-4f26-a4ad-9cd5e7d3ba53'),(21786,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:17','2021-06-21 05:14:24',NULL,NULL,'d66c4f54-659d-43a1-b822-9784d3bc720a'),(21787,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:17','2021-06-21 05:14:24',NULL,NULL,'68b49475-e9e8-4302-9a47-e5c4caf85c72'),(21788,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:17','2021-06-21 05:14:24',NULL,NULL,'5343af2c-c3b1-4a02-a9c5-f0b8baf5e772'),(21789,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:17','2021-06-21 05:14:24',NULL,NULL,'b2a6dce4-8017-4da1-9f07-cceb74545b00'),(21790,NULL,NULL,NULL,32,'craft\\elements\\MatrixBlock',1,0,'2021-07-13 00:07:17','2021-06-21 05:15:32',NULL,NULL,'6318855c-83db-473a-bb1d-02f819f749f1'),(21791,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:17','2021-06-21 05:15:32',NULL,NULL,'329a631f-9e24-4795-bcfc-3b61bf0b6a83'),(21792,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:17','2021-06-21 05:15:32',NULL,NULL,'08cfcb15-96df-4f34-93cf-e97cc94f8d9c'),(21793,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:17','2021-06-21 05:15:32',NULL,NULL,'297209b3-d843-40e5-9c2e-ad08b7103bf5'),(21794,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:17','2021-06-21 05:15:32',NULL,NULL,'53f4cce2-9a0c-4b18-8e39-18a52ad8176c'),(21795,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:17','2021-06-21 05:15:32',NULL,NULL,'79a1c4e1-0942-4235-a5a1-baa8119a7ae1'),(21796,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:17','2021-06-21 05:15:32',NULL,NULL,'8bfc6935-133f-48f3-a4b4-008d9ce695d0'),(21797,NULL,NULL,NULL,25,'craft\\elements\\MatrixBlock',1,0,'2021-07-13 00:07:17','2021-06-21 05:06:47',NULL,NULL,'b895e929-a309-4f51-8e4b-16dbf0ce9854'),(21801,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:19','2021-06-21 04:37:06',NULL,NULL,'be0ef2ed-1f67-444b-870c-59d3c98153d3'),(21802,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:19','2021-06-21 04:37:06',NULL,NULL,'c434376a-3eef-47f4-8f20-8d9f17be1704'),(21803,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:19','2021-06-21 04:37:06',NULL,NULL,'1fc22001-62ec-4780-bb08-cf9905e8fd20'),(21804,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:19','2021-06-21 04:37:06',NULL,NULL,'d68379b3-c3cb-4875-80af-7ddead016010'),(21805,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:19','2021-06-21 04:37:06',NULL,NULL,'d0846de4-2b04-47aa-bd2c-450fa5daf910'),(21808,NULL,NULL,NULL,24,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:19','2021-06-21 04:37:06',NULL,NULL,'16363492-c355-45ff-baa5-99c0dae7d0bf'),(21810,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:19','2021-06-21 05:14:24',NULL,NULL,'abe1528f-fc72-44c5-bc15-85746800b9e2'),(21811,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:19','2021-06-21 05:14:24',NULL,NULL,'b090df11-d330-4aa6-a8e0-a7714c1b663d'),(21812,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:19','2021-06-21 05:14:24',NULL,NULL,'25d65171-e877-4a6c-bb5c-0eed6d75f978'),(21813,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:19','2021-06-21 05:14:24',NULL,NULL,'29c23657-a72d-4573-b08a-464d7fb90cef'),(21814,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:19','2021-06-21 05:14:24',NULL,NULL,'93fccb18-4647-4b7b-b876-e9d2e1f252e1'),(21815,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:19','2021-06-21 05:14:24',NULL,NULL,'a89117ec-ba94-48fd-be84-256a1c23aff1'),(21816,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:19','2021-06-21 05:14:24',NULL,NULL,'05f8107d-cf26-499c-a723-1190922b7c81'),(21818,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:19','2021-06-21 05:15:32',NULL,NULL,'c12b7ee8-b406-46c5-935f-da77c93ca405'),(21819,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:19','2021-06-21 05:15:32',NULL,NULL,'b4dc698c-c779-4050-a33a-760d51d383d0'),(21820,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:19','2021-06-21 05:15:32',NULL,NULL,'882d8410-221f-4d59-81f7-1650b3c99be2'),(21821,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:19','2021-06-21 05:15:32',NULL,NULL,'6948ffdd-1549-44e3-8e0f-6b8bd6011890'),(21822,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:19','2021-06-21 05:15:32',NULL,NULL,'58eb5b27-a44f-43fb-a51f-be300717ec04'),(21823,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:07:19','2021-06-21 05:15:32',NULL,NULL,'951f0e55-a366-4efd-b9b6-b11775f69d83'),(21855,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:12:32','2021-06-21 04:37:06',NULL,NULL,'a52adb5f-3fc4-489e-ab5d-c885d52043ff'),(21856,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:12:32','2021-06-21 04:37:06',NULL,NULL,'72152497-6d09-40b8-915f-560d93a706ab'),(21857,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:12:32','2021-06-21 04:37:06',NULL,NULL,'c3f222e4-df15-4283-802c-36bb6a95e2e3'),(21858,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:12:32','2021-06-21 04:37:06',NULL,NULL,'f83412bc-8d9f-48d6-8ca1-be969351638b'),(21859,NULL,NULL,NULL,26,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:12:32','2021-06-21 04:37:06',NULL,NULL,'4ac50b2e-016a-4167-911b-3b9b4e868935'),(21862,NULL,NULL,NULL,24,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:12:32','2021-06-21 04:37:06',NULL,NULL,'6fd6a207-d309-4aae-8b09-0f273ab8751c'),(21864,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:12:32','2021-06-21 05:14:24',NULL,NULL,'281c54e6-2086-426c-9fc8-c8586d71d3b5'),(21865,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:12:32','2021-06-21 05:14:24',NULL,NULL,'e36287f8-6d63-450d-ae44-1fbc064cdf07'),(21866,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:12:32','2021-06-21 05:14:24',NULL,NULL,'20d69c91-34ea-474c-9725-54930b524b62'),(21867,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:12:32','2021-06-21 05:14:24',NULL,NULL,'0022af9d-6a70-47f1-9ca6-630fd17f2aca'),(21868,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:12:32','2021-06-21 05:14:24',NULL,NULL,'5cd3e6a2-8d1f-4592-91b5-63c4c6a86c4c'),(21869,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:12:32','2021-06-21 05:14:24',NULL,NULL,'bafb9836-a133-48c4-a0e5-a219254ad3ce'),(21870,NULL,NULL,NULL,29,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:12:32','2021-06-21 05:14:24',NULL,NULL,'0d2ce1cf-db21-454d-b381-f41de651144f'),(21872,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:12:32','2021-06-21 05:15:32',NULL,NULL,'424b6801-666a-44f4-88e7-67a6a05cf216'),(21873,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:12:32','2021-06-21 05:15:32',NULL,NULL,'c92404c2-5f6a-4290-9ce9-a46eea257868'),(21874,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:12:32','2021-06-21 05:15:32',NULL,NULL,'5030ed50-9e98-4608-9214-e53a046fb610'),(21875,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:12:32','2021-06-21 05:15:32',NULL,NULL,'2dec2727-ef07-4ce9-ba82-21e174a1033c'),(21876,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:12:32','2021-06-21 05:15:32',NULL,NULL,'fb490eff-85bf-4490-9728-d49acd434865'),(21877,NULL,NULL,NULL,31,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-13 00:12:32','2021-06-21 05:15:32',NULL,NULL,'692c28e4-2341-4773-ac19-972c7da8611b'),(21898,NULL,NULL,NULL,5,'craft\\elements\\User',1,0,'2021-07-14 02:01:23','2022-10-24 23:07:53',NULL,NULL,'62d92d6c-387d-4da5-9015-6e73769e163a'),(21901,21297,NULL,12794,34,'craft\\elements\\Entry',1,0,'2021-07-14 23:06:29','2021-07-14 23:06:29',NULL,NULL,'4859ffb3-d25e-46f2-8f5b-e027f2d140e9'),(21903,21297,NULL,12795,34,'craft\\elements\\Entry',1,0,'2021-07-14 23:07:37','2021-07-14 23:07:37',NULL,NULL,'52af3a2b-17f3-4d0e-8e3b-afec8e3c2d0d'),(21904,21297,NULL,12796,34,'craft\\elements\\Entry',1,0,'2021-07-14 23:07:41','2021-07-14 23:07:41',NULL,NULL,'c91bb5c4-e175-4d19-8444-2c54a5eefcae'),(21905,21297,NULL,12797,34,'craft\\elements\\Entry',1,0,'2021-07-14 23:13:02','2021-07-14 23:13:02',NULL,NULL,'cb9c4cf3-d00d-4762-b14c-50eb4ad647eb'),(21906,21297,NULL,12798,34,'craft\\elements\\Entry',1,0,'2021-07-14 23:16:04','2021-07-14 23:16:04',NULL,NULL,'d2438243-6174-49c7-8309-7bb25fd9490b'),(21907,21297,NULL,12799,34,'craft\\elements\\Entry',1,0,'2021-07-14 23:33:15','2021-07-14 23:33:15',NULL,NULL,'d5d99b93-48b4-4637-bbb1-0f12e4416294'),(21908,20379,NULL,12800,23,'craft\\elements\\Entry',1,0,'2021-07-15 00:09:37','2021-07-15 00:09:37',NULL,NULL,'6f764fbc-e76c-47d4-b46f-4f29e5dc3a51'),(21909,20379,NULL,12801,23,'craft\\elements\\Entry',1,0,'2021-07-15 00:11:33','2021-07-15 00:11:33',NULL,NULL,'ffa8ba50-2e9e-47d1-85a9-8ebdb2d9adf2'),(21910,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-15 01:58:41','2021-11-09 06:09:00',NULL,NULL,'e2726bfd-1f16-45fd-969d-9eca219f96ff'),(21911,20379,NULL,12802,23,'craft\\elements\\Entry',1,0,'2021-07-15 01:58:54','2021-07-15 01:58:54',NULL,NULL,'3b02880d-f9fb-4f29-b6b4-164fe3b503fe'),(21912,20379,NULL,12803,23,'craft\\elements\\Entry',1,0,'2021-07-15 02:11:52','2021-07-15 02:11:52',NULL,NULL,'c5c3010d-bb15-42dc-9c0e-61b0a66d37cd'),(21913,20379,NULL,12804,23,'craft\\elements\\Entry',1,0,'2021-07-15 02:12:22','2021-07-15 02:12:22',NULL,NULL,'aa9c2e62-0609-4059-9115-e5f52f11ae3e'),(21915,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-15 02:28:25','2021-11-09 06:09:09',NULL,NULL,'349039af-49ef-427e-9054-3aa12652ad27'),(21916,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-15 02:28:26','2021-10-05 06:47:50',NULL,NULL,'c22629d6-d380-4dc9-a4de-116e36b356c1'),(21917,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-15 02:28:26','2021-10-05 06:48:11',NULL,NULL,'5b5b3e40-ed1f-433a-a9f7-17118ac55fee'),(21918,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-15 02:28:27','2021-10-05 06:47:29',NULL,NULL,'7beeb453-18c3-4870-91f2-3cdf948b387c'),(21919,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-15 02:28:28','2021-10-05 06:47:12',NULL,NULL,'c51f6440-7c15-4692-b5c3-5b93402376ab'),(21920,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-15 02:28:29','2021-10-05 06:46:52',NULL,NULL,'1d106d19-08ef-4872-abe9-8f647d389e3f'),(21921,20379,NULL,12805,23,'craft\\elements\\Entry',1,0,'2021-07-15 02:29:01','2021-07-15 02:29:01',NULL,NULL,'ff9871bc-5cb4-4613-934e-88a23e9cc5f9'),(21922,21297,NULL,12806,34,'craft\\elements\\Entry',1,0,'2021-07-15 04:55:38','2021-07-15 04:55:38',NULL,NULL,'284ae1fc-ee94-4aa2-8276-2874818638c0'),(21936,16571,NULL,12807,6,'craft\\elements\\Entry',0,0,'2021-07-16 01:16:04','2021-07-16 01:16:05',NULL,NULL,'7b0aaacb-5a5b-444b-8cdc-6b130771c2d3'),(21937,16744,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:16:05','2021-07-16 01:16:05',NULL,NULL,'b5e84eda-ea9f-4b21-8880-95982050430f'),(21938,16745,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:16:05','2021-07-16 01:16:05',NULL,NULL,'f0cd02b4-8871-4b40-871c-d4ef3bb2646e'),(21939,16746,NULL,NULL,8,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:16:05','2021-07-16 01:16:05',NULL,NULL,'806ad436-1da7-471e-bb0e-edbf466ee49e'),(21940,16747,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:16:05','2021-07-16 01:16:05',NULL,NULL,'c8e5cddc-8827-4053-a2f9-c0cbe1f24aa5'),(21941,16748,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:16:05','2021-07-16 01:16:05',NULL,NULL,'1dd0cf82-4703-42a2-977a-335f6ac86851'),(21942,16749,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:16:05','2021-07-16 01:16:05',NULL,NULL,'3672dd5b-e9ee-443e-a7e1-a8a197c38549'),(21943,16750,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:16:05','2021-07-16 01:16:05',NULL,NULL,'a98c8fbe-a8cc-4521-ae10-f14a30d6b58f'),(21944,16751,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:16:05','2021-07-16 01:16:05',NULL,NULL,'1017b2e0-3d6a-437c-93cf-ffb19f18bf4a'),(21945,16752,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:16:05','2021-07-16 01:16:05',NULL,NULL,'6f82b93c-e4f9-48a6-8343-0d01efdbff4b'),(21946,16753,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:16:05','2021-07-16 01:16:05',NULL,NULL,'de9e77f1-10c6-4af0-8281-84ecb00f6a68'),(21947,16754,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:16:05','2021-07-16 01:16:05',NULL,NULL,'88935066-41ea-4468-bf03-6cf6d7136c0d'),(21948,16755,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:16:05','2021-07-16 01:16:05',NULL,NULL,'91104d63-3258-46ae-9e84-599968613bc9'),(21960,16828,NULL,12808,6,'craft\\elements\\Entry',1,0,'2021-07-16 01:17:55','2021-07-16 01:17:55','2021-07-16 01:17:54',NULL,'492183ea-08c0-4874-be7f-8b255a8035f3'),(21961,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:17:55','2021-07-16 01:17:55','2021-07-16 01:17:54',NULL,'85d1d08a-4275-47e8-a3eb-f59e6200f172'),(21962,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:17:55','2021-07-16 01:17:55','2021-07-16 01:17:54',NULL,'7a828281-ee98-423f-9a34-b98d843e1e5b'),(21963,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:17:55','2021-07-16 01:17:55','2021-07-16 01:17:54',NULL,'143f304f-cec7-4b27-a886-264b71c913bf'),(21964,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:17:55','2021-07-16 01:17:55','2021-07-16 01:17:54',NULL,'0edefd4d-ccb9-4879-86e6-32b142eeb7a8'),(21965,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:17:55','2021-07-16 01:17:55','2021-07-16 01:17:54',NULL,'77a73ee4-b34a-4f17-bab9-6f4a0e150ef7'),(21966,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:17:55','2021-07-16 01:17:55',NULL,NULL,'3e12e877-2021-49e8-813a-a66d84de8c5e'),(21973,18126,NULL,12809,6,'craft\\elements\\Entry',1,0,'2021-07-16 01:36:03','2021-07-16 01:36:04','2021-07-16 01:36:03',NULL,'5cc21287-1438-403e-85c3-a9a98dbac7da'),(21974,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:36:04','2021-07-16 01:36:04','2021-07-16 01:36:03',NULL,'0e94e714-de59-4572-a5a6-b0abc00bcab3'),(21975,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:36:04','2021-07-16 01:36:04','2021-07-16 01:36:03',NULL,'4c51e338-8f3d-41c8-b857-d27b39c7bfec'),(21976,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:36:04','2021-07-16 01:36:04','2021-07-16 01:36:03',NULL,'3589fef8-cd5c-43c9-aadd-177d8d3d796f'),(21977,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:36:04','2021-07-16 01:36:04','2021-07-16 01:36:03',NULL,'748b61ed-78c6-4ecd-ad93-1465223b20da'),(21978,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:36:04','2021-07-16 01:36:04','2021-07-16 01:36:03',NULL,'152e50ac-2428-4f3a-970e-483b1233b1ba'),(21979,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-16 01:38:59','2021-07-16 01:38:59',NULL,NULL,'6716fa3f-ccd4-4a20-b659-bdfa5036aa70'),(21999,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-16 01:41:03','2021-07-16 01:41:03',NULL,NULL,'354b808e-6d66-411e-825b-ad8eeaaa6b20'),(22006,18139,NULL,12810,6,'craft\\elements\\Entry',1,0,'2021-07-16 01:41:34','2021-07-16 01:41:34','2021-07-16 01:41:34',NULL,'22cdd30f-77df-4817-bd92-757c56fd43b6'),(22007,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:41:34','2021-07-16 01:41:34',NULL,NULL,'1f7290f9-2c8d-419a-8252-b0b6a26d6969'),(22008,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:41:34','2021-07-16 01:41:34',NULL,NULL,'6b522aec-6272-4012-8448-30c783c64e5b'),(22009,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:41:34','2021-07-16 01:41:34',NULL,NULL,'05628443-2d48-4115-992a-520ce6f7f10a'),(22010,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-16 01:44:56','2021-07-16 01:44:56',NULL,NULL,'94d8f373-ffa0-4efd-b7af-6218f2b7fa10'),(22011,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-16 01:45:03','2021-07-16 01:45:03',NULL,NULL,'391a4744-f9e4-44a5-a3c5-f3905a3dccdb'),(22012,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-16 01:45:11','2021-07-16 01:45:11',NULL,NULL,'dd808135-2b20-4dad-95b3-94aab72bcfc1'),(22041,18142,NULL,12811,6,'craft\\elements\\Entry',1,0,'2021-07-16 01:49:52','2021-07-16 01:49:52','2021-07-16 01:49:52',NULL,'20c9d403-1aa3-4b02-8caa-3bb9c5ec2a33'),(22042,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:49:52','2021-07-16 01:49:52',NULL,NULL,'247f3b32-ccde-46a4-8e48-53e59e6a7b35'),(22043,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:49:52','2021-07-16 01:49:52',NULL,NULL,'c21e60e6-007f-42a3-8310-e9571d236831'),(22044,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:49:52','2021-07-16 01:49:52',NULL,NULL,'df730507-627e-46fe-85b9-d18deb98fbde'),(22045,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:49:52','2021-07-16 01:49:52',NULL,NULL,'2ba4b1ae-7cbd-4217-ba0b-b8547f00fc63'),(22051,18142,NULL,12812,6,'craft\\elements\\Entry',1,0,'2021-07-16 01:50:07','2021-07-16 01:50:07','2021-07-16 01:50:06',NULL,'f8589609-81f7-41ff-992a-ca4ebe9414ac'),(22052,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:50:07','2021-07-16 01:50:07','2021-07-16 01:50:06',NULL,'70cee700-f76a-49bc-9783-d344b208f26b'),(22053,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:50:07','2021-07-16 01:50:07','2021-07-16 01:50:06',NULL,'d2e5fc8b-86b8-4760-be1d-5c36325fd318'),(22054,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:50:07','2021-07-16 01:50:07','2021-07-16 01:50:07',NULL,'66ba8bfb-aa45-401b-8d23-b3ab3d3e03b8'),(22055,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:50:07','2021-07-16 01:50:07','2021-07-16 01:50:07',NULL,'1db9da8d-a32f-4570-86e9-6a01b7c75d49'),(22060,18139,NULL,12813,6,'craft\\elements\\Entry',1,0,'2021-07-16 01:50:19','2021-07-16 01:50:19','2021-07-16 01:50:18',NULL,'6d21a611-1200-41a9-93f3-d397e463da36'),(22061,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:50:19','2021-07-16 01:50:19','2021-07-16 01:50:18',NULL,'bc67542f-82f7-49b8-ad04-b8803215fa41'),(22062,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:50:19','2021-07-16 01:50:19','2021-07-16 01:50:18',NULL,'60b2526f-4d24-48a1-9f85-4c4565b9685f'),(22063,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:50:19','2021-07-16 01:50:19','2021-07-16 01:50:19',NULL,'2334c680-3042-4da8-a40e-abffafa39626'),(22083,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-16 01:56:20','2021-07-16 01:56:20',NULL,NULL,'42cc89c5-cc23-4b7a-af94-d115b35be49a'),(22084,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-16 01:56:21','2021-07-16 01:56:21',NULL,NULL,'d6d00736-aad5-4c99-93b5-8316023afe11'),(22085,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-16 01:56:22','2021-07-16 01:56:22',NULL,NULL,'fce51dad-9081-4627-ae37-39ed6c373347'),(22086,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-16 01:56:24','2021-07-16 01:56:24',NULL,NULL,'4ff5373f-ba70-4c3b-9718-58e9fe7edcf3'),(22087,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-16 01:56:25','2021-07-16 01:56:25',NULL,NULL,'f60c1dbb-f6f3-420b-8a1e-693b46028bed'),(22088,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-16 01:56:27','2021-07-16 01:56:27',NULL,NULL,'fa61dad5-a27f-46fb-9328-2edbcdf6009e'),(22089,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-16 01:56:28','2021-07-16 01:56:28',NULL,NULL,'4acfabf4-12d1-4484-bc1b-dc7a8ddffd97'),(22090,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-16 01:56:29','2021-07-16 01:56:29',NULL,NULL,'87c90fa9-ddcb-4578-8f34-1f5eebdec5f0'),(22091,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-16 01:56:31','2021-07-16 01:56:31',NULL,NULL,'321deae2-4be6-4e4a-ad15-69395931bdb6'),(22092,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-16 01:56:32','2021-07-16 01:56:32',NULL,NULL,'f4d04d7b-a137-468a-9f18-f7169022c648'),(22093,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-16 01:56:35','2021-07-16 01:56:35',NULL,NULL,'946b2246-cf43-449d-826f-a35efc6658c9'),(22094,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-16 01:56:37','2021-07-16 01:56:37',NULL,NULL,'b62b9130-42d8-4644-8858-4b7f2bb99c4c'),(22095,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-16 01:56:38','2021-07-16 01:56:38',NULL,NULL,'7fe81d03-c2cc-4454-a2ce-a4790cc9358a'),(22096,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-16 01:56:39','2021-07-16 01:56:39',NULL,NULL,'e7d19a8a-5d25-404e-888a-81876776949b'),(22097,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-16 01:56:41','2021-07-16 01:56:41',NULL,NULL,'c164f918-da5e-47ba-9a2e-d6e3a986bf46'),(22099,18156,NULL,12814,6,'craft\\elements\\Entry',1,0,'2021-07-16 01:57:56','2021-07-16 01:57:58','2021-07-16 01:57:54',NULL,'c10df3a3-9836-4627-abc0-3db860741a3b'),(22100,NULL,NULL,NULL,21,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:57:58','2021-07-16 01:57:58','2021-07-16 01:57:54',NULL,'cc73ac77-ea73-4189-93ba-6869e64ce656'),(22101,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-16 01:57:58','2021-07-16 01:57:58',NULL,NULL,'64822e04-a64e-4be1-8967-c0b3f60a39ff'),(22102,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:57:58','2021-07-16 01:57:58','2021-07-16 01:57:54',NULL,'a4ff93e4-bb65-465c-9681-1fe3b7ffd62e'),(22103,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:57:58','2021-07-16 01:57:58','2021-07-16 01:57:54',NULL,'987e2f28-3ef8-465a-8d0b-db199becc268'),(22104,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:57:58','2021-07-16 01:57:58','2021-07-16 01:57:54',NULL,'2fafa8a8-a5c1-4a35-8a19-15f0cea2434e'),(22105,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:57:58','2021-07-16 01:57:58','2021-07-16 01:57:54',NULL,'9962d3d0-8228-4526-8dec-d69784dc4399'),(22106,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:57:58','2021-07-16 01:57:58','2021-07-16 01:57:55',NULL,'45c0007c-fc55-4bd0-8415-c4d82588af18'),(22107,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:57:58','2021-07-16 01:57:58','2021-07-16 01:57:55',NULL,'76e885f6-64d3-4608-9dfc-d4b15142c992'),(22108,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:57:58','2021-07-16 01:57:58','2021-07-16 01:57:55',NULL,'1647a9b7-b36b-4837-a2cb-28221a65c247'),(22109,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:57:58','2021-07-16 01:57:58','2021-07-16 01:57:55',NULL,'c1666de8-bcdf-4019-8c4a-d5c54f27372f'),(22110,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:57:58','2021-07-16 01:57:58','2021-07-16 01:57:55',NULL,'9f7dee37-4d5f-4e65-a728-a4cd7a5c4b9c'),(22111,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:57:58','2021-07-16 01:57:58','2021-07-16 01:57:55',NULL,'c30e8119-5d61-4152-b9a4-28832b297c78'),(22112,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:57:58','2021-07-16 01:57:58','2021-07-16 01:57:55',NULL,'84af4108-7919-44a2-ad89-68bcc181842a'),(22113,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:57:58','2021-07-16 01:57:58','2021-07-16 01:57:55',NULL,'648d0063-e6dd-4bb4-8710-6b6ed667b27f'),(22114,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:57:58','2021-07-16 01:57:58','2021-07-16 01:57:55',NULL,'ce176f2d-a277-4f43-9203-e48f0ddb289b'),(22115,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:57:58','2021-07-16 01:57:58','2021-07-16 01:57:55',NULL,'7163f437-3e5d-49c0-b516-13f9564962ab'),(22116,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:57:58','2021-07-16 01:57:58','2021-07-16 01:57:55',NULL,'7573c256-3ff4-4cef-b44b-9a65423e4da2'),(22117,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:57:58','2021-07-16 01:57:58','2021-07-16 01:57:56',NULL,'8037dc91-c05f-4e27-8172-c7b6e6c45eca'),(22139,18156,NULL,12815,6,'craft\\elements\\Entry',1,0,'2021-07-16 01:58:23','2021-07-16 01:58:24','2021-07-16 01:58:20',NULL,'77794dd2-4f86-4f0e-9c9e-c47586232946'),(22140,NULL,NULL,NULL,21,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:58:24','2021-07-16 01:58:24','2021-07-16 01:58:21',NULL,'ee55c1a1-2197-4a66-8a93-0a03cea6851b'),(22141,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-16 01:58:24','2021-07-16 01:58:24',NULL,NULL,'a1c03e66-dfec-4ebf-ba96-36adce12c54d'),(22142,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:58:24','2021-07-16 01:58:24','2021-07-16 01:58:21',NULL,'a5ed5638-7262-4f39-abf0-6122c6c98312'),(22143,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:58:24','2021-07-16 01:58:24','2021-07-16 01:58:21',NULL,'820ff98c-a679-4264-af1c-f4d7bc602742'),(22144,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:58:24','2021-07-16 01:58:24','2021-07-16 01:58:21',NULL,'d7444ba1-9c34-4891-9eea-a9433270898f'),(22145,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:58:24','2021-07-16 01:58:24','2021-07-16 01:58:21',NULL,'0126dc19-bc69-4cfa-b2ea-bc56ea7e9147'),(22146,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:58:24','2021-07-16 01:58:24','2021-07-16 01:58:21',NULL,'fdb4c7ee-8bbc-4280-881a-8a448688a10e'),(22147,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:58:24','2021-07-16 01:58:24','2021-07-16 01:58:21',NULL,'fab47c86-1414-402c-997b-58c8ba6ae0b7'),(22148,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:58:24','2021-07-16 01:58:24','2021-07-16 01:58:21',NULL,'5c61137c-8a71-498c-8efb-40fcd3ab4d93'),(22149,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:58:24','2021-07-16 01:58:24','2021-07-16 01:58:21',NULL,'97bdd284-a903-4f46-9913-ca8f426f794c'),(22150,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:58:24','2021-07-16 01:58:24','2021-07-16 01:58:21',NULL,'2ba59365-d5a0-457e-b515-3de8e656cafc'),(22151,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:58:24','2021-07-16 01:58:24','2021-07-16 01:58:22',NULL,'742c9237-2642-48ca-83d3-5f7ab9f3d2e4'),(22152,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:58:24','2021-07-16 01:58:24','2021-07-16 01:58:22',NULL,'3795da49-c2f9-464a-8fd2-da686ce9ffca'),(22153,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:58:24','2021-07-16 01:58:24','2021-07-16 01:58:22',NULL,'81d773ce-3839-418d-bff9-f8c8b1c1a15a'),(22154,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:58:24','2021-07-16 01:58:24','2021-07-16 01:58:22',NULL,'e757ab13-74fe-409b-a351-a7fbf0102c6d'),(22155,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:58:24','2021-07-16 01:58:24','2021-07-16 01:58:22',NULL,'3dc80d01-e8ee-45c9-8119-f3c60a61d477'),(22156,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:58:24','2021-07-16 01:58:24','2021-07-16 01:58:22',NULL,'3a4e269e-7200-41f4-b102-5f388688170c'),(22157,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 01:58:24','2021-07-16 01:58:24','2021-07-16 01:58:22',NULL,'0673f74a-cdcc-4a09-8702-c09da87e60f0'),(22158,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-16 02:52:07','2021-07-16 02:52:07',NULL,NULL,'4cb51428-03e8-4929-af17-c45df00e9ca0'),(22159,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-16 02:52:12','2021-07-16 02:52:12',NULL,NULL,'efc06f6e-2b0b-4983-98d2-3ab866db7f8b'),(22160,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-16 02:52:18','2021-07-16 02:52:18',NULL,NULL,'cb2e6819-964e-4a1c-a47e-5436d2ed091c'),(22195,18168,NULL,12816,6,'craft\\elements\\Entry',0,0,'2021-07-16 03:07:32','2021-07-16 03:07:32','2021-07-16 03:07:32',NULL,'b88ec445-600d-4471-992d-f7dba02d0e39'),(22196,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 03:07:32','2021-07-16 03:07:32',NULL,NULL,'97a97c98-3dae-4ac8-acb3-00fbbc2aaf9b'),(22197,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 03:07:32','2021-07-16 03:07:32',NULL,NULL,'3ea210e0-225c-4157-af46-40f4f10c752b'),(22198,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 03:07:32','2021-07-16 03:07:32',NULL,NULL,'a2f7a00a-4623-4f92-bfae-d71628038066'),(22199,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 03:07:33','2021-07-16 03:07:33',NULL,NULL,'a94c5474-3e67-4731-b5cd-14fd7017c065'),(22205,18168,NULL,12817,6,'craft\\elements\\Entry',1,0,'2021-07-16 03:10:46','2021-07-16 03:10:46','2021-07-16 03:10:45',NULL,'4c27d7dd-a363-4bcc-a9a3-d6ec52fdc90f'),(22206,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 03:10:46','2021-07-16 03:10:46','2021-07-16 03:10:46',NULL,'47fda8a6-3808-46f3-b652-9658be9b96a9'),(22207,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 03:10:46','2021-07-16 03:10:46','2021-07-16 03:10:46',NULL,'980f3c24-935a-43ca-b977-632321dc9a5a'),(22208,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 03:10:46','2021-07-16 03:10:46','2021-07-16 03:10:46',NULL,'9b3dfe4e-ec63-40a3-9749-fd3d625ba8ea'),(22209,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 03:10:46','2021-07-16 03:10:46','2021-07-16 03:10:46',NULL,'4e4fbe64-d13c-4216-be60-edadee51df28'),(22210,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2021-07-16 03:13:01','2022-08-08 06:30:06',NULL,NULL,'f3ff5f04-8682-43ed-a6fc-c2cc89693655'),(22211,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-16 03:18:45','2021-07-16 03:18:45',NULL,NULL,'64fd023b-b016-499d-bcb7-bbe76bd17676'),(22266,22210,NULL,12818,6,'craft\\elements\\Entry',1,0,'2021-07-16 03:23:11','2021-07-16 03:23:11',NULL,NULL,'8e4236fa-4af7-4846-9ca9-2b07a48aeec2'),(22267,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 03:23:11','2021-07-16 03:23:11',NULL,NULL,'81af4ba3-d88d-4587-ba31-5d5a22694f64'),(22268,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 03:23:11','2021-07-16 03:23:11',NULL,NULL,'659aeb26-6d43-414b-b3ca-2789017eace8'),(22269,NULL,NULL,NULL,21,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 03:23:11','2021-07-16 03:23:11',NULL,NULL,'d00e3f7a-923c-4476-8a2c-ad3af99aba42'),(22270,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-16 03:23:11','2021-07-16 03:23:11',NULL,NULL,'bf17896f-f0f3-4229-982e-b70a15461aff'),(22271,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-16 03:23:11','2021-07-16 03:23:11',NULL,NULL,'7b9e2892-dc7b-4011-9084-2e6a1e73cfe3'),(22279,22210,NULL,12819,6,'craft\\elements\\Entry',1,0,'2021-07-16 03:53:04','2021-07-16 03:53:04','2021-07-16 03:53:03',NULL,'21f54371-bad2-4b7d-965e-deef81e3f10c'),(22280,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 03:53:04','2021-07-16 03:53:04','2021-07-16 03:53:03',NULL,'72c26200-690a-4fdf-a63d-82964df85087'),(22281,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 03:53:04','2021-07-16 03:53:04','2021-07-16 03:53:03',NULL,'d68aee69-7d72-4ded-b3e0-ec1b52cd710d'),(22282,NULL,NULL,NULL,21,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 03:53:04','2021-07-16 03:53:04','2021-07-16 03:53:03',NULL,'3988d4df-abc1-4a82-b361-8b0f6d198826'),(22283,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-16 03:53:04','2021-07-16 03:53:04',NULL,NULL,'3b6f3520-734c-4074-bdad-5578a76d07cb'),(22296,22210,NULL,12820,6,'craft\\elements\\Entry',1,0,'2021-07-16 03:55:47','2021-07-16 03:55:48','2021-07-16 03:55:47',NULL,'c11e9234-8a6e-4a18-aaae-dc20e6d040de'),(22297,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 03:55:48','2021-07-16 03:55:48','2021-07-16 03:55:47',NULL,'098c5fda-018e-4d73-8b3e-dc1bea4ef99b'),(22298,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 03:55:48','2021-07-16 03:55:48','2021-07-16 03:55:47',NULL,'0f9a2425-3a85-4642-8446-502ea9c9b6cc'),(22299,NULL,NULL,NULL,21,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 03:55:48','2021-07-16 03:55:48','2021-07-16 03:55:47',NULL,'fe54e268-334e-4bab-9631-d9332fc439e8'),(22300,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-16 03:55:48','2021-07-16 03:55:48',NULL,NULL,'dfabe5c5-52e1-4565-acee-29f844777641'),(22301,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 03:55:48','2021-07-16 03:55:48',NULL,NULL,'b9565d99-fc1a-455b-9922-937710643dc0'),(22303,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-16 03:57:05','2021-07-16 04:07:22',NULL,NULL,'4e7d5f7a-4c23-4e21-b345-28383c11fe01'),(22311,22210,NULL,12821,6,'craft\\elements\\Entry',1,0,'2021-07-16 03:57:19','2021-07-16 03:57:20','2021-07-16 03:57:19',NULL,'fb62cdde-660f-40a6-b8eb-4204b07ef467'),(22312,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 03:57:20','2021-07-16 03:57:20','2021-07-16 03:57:19',NULL,'fdd63cd6-35d9-4e94-a042-1ac2a58367fe'),(22313,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 03:57:20','2021-07-16 03:57:20','2021-07-16 03:57:19',NULL,'f08e6ec0-5d27-4c5a-9caa-c97437752521'),(22314,NULL,NULL,NULL,21,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 03:57:20','2021-07-16 03:57:20','2021-07-16 03:57:19',NULL,'086e7e59-7dd2-4e58-9056-edb04e5d4ab0'),(22315,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-16 03:57:20','2021-07-16 03:57:20',NULL,NULL,'25f129e4-e3c2-4d51-b981-f11e7b32a71f'),(22316,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 03:57:20','2021-07-16 03:57:20','2021-07-16 03:57:19',NULL,'a0443854-f0b5-4385-96bd-944d6420fa4e'),(22317,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-07-16 04:06:19','2021-07-16 04:06:19',NULL,NULL,'23756d24-3b95-4e69-ad92-336284514beb'),(22326,22210,NULL,12822,6,'craft\\elements\\Entry',1,0,'2021-07-16 04:08:00','2021-07-16 04:08:00','2021-07-16 04:07:59',NULL,'8f1f6b53-c81e-43cf-b679-1c4ac6bdc651'),(22327,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 04:08:00','2021-07-16 04:08:00','2021-07-16 04:07:59',NULL,'7c50ecbb-5dd2-4952-982a-e022a8913bdc'),(22328,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 04:08:00','2021-07-16 04:08:00','2021-07-16 04:07:59',NULL,'bcf6bf1b-aa7f-4470-9d67-8356cba5cb9a'),(22329,NULL,NULL,NULL,21,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 04:08:00','2021-07-16 04:08:00','2021-07-16 04:07:59',NULL,'f08df0bf-e1f4-4b97-8c61-a9f5ba63ec9d'),(22330,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-16 04:08:00','2021-07-16 04:08:00',NULL,NULL,'d3a6d2c1-941a-44ce-873f-68d9648e7cb2'),(22331,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 04:08:01','2021-07-16 04:08:01','2021-07-16 04:08:00',NULL,'aedf4c40-9f4f-4d39-ab38-1c61772dadfe'),(22332,22210,NULL,12823,6,'craft\\elements\\Entry',1,0,'2021-07-16 04:09:55','2021-07-16 04:09:55','2021-07-16 04:07:59',NULL,'18b5667b-e073-4011-aedc-a2b642746b7c'),(22333,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 04:09:55','2021-07-16 04:09:55','2021-07-16 04:07:59',NULL,'d789ef00-317e-4481-a6a5-636e4006db3d'),(22334,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 04:09:55','2021-07-16 04:09:55','2021-07-16 04:07:59',NULL,'1420478f-fb86-468c-b777-913721d92b58'),(22335,NULL,NULL,NULL,21,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 04:09:55','2021-07-16 04:09:55','2021-07-16 04:07:59',NULL,'afe7aad3-3e7b-44ff-b6b4-352e1ae090c3'),(22336,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-16 04:09:55','2021-07-16 04:09:55',NULL,NULL,'1b4e94ee-7766-4af7-9d02-499a510ccf66'),(22337,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 04:09:55','2021-07-16 04:09:55','2021-07-16 04:08:00',NULL,'8ed9dec6-8c57-468c-aa26-15171338497c'),(22375,22210,NULL,12824,6,'craft\\elements\\Entry',1,0,'2021-07-16 04:25:29','2021-07-16 04:25:30','2021-07-16 04:25:29',NULL,'90077f95-67b2-4369-a964-55f07e5e2f15'),(22376,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 04:25:30','2021-07-16 04:25:30','2021-07-16 04:25:29',NULL,'c390d1f8-ca6a-4fc8-8591-ee04fa0fe75c'),(22377,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 04:25:30','2021-07-16 04:25:30','2021-07-16 04:25:29',NULL,'ab61b233-123e-45fc-a57b-a9ebc97e92e8'),(22378,NULL,NULL,NULL,21,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 04:25:30','2021-07-16 04:25:30','2021-07-16 04:25:29',NULL,'9ca39fa3-da2e-4dda-b2c9-851583cdc153'),(22379,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-16 04:25:30','2021-07-16 04:25:30',NULL,NULL,'37b137b0-ed06-4497-b124-8696e0935617'),(22380,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 04:25:30','2021-07-16 04:25:30','2021-07-16 04:25:29',NULL,'a86bd8c9-2cd0-4add-a5f8-0fce997beab1'),(22381,NULL,NULL,NULL,8,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 04:25:30','2021-07-16 04:25:30',NULL,NULL,'62ee5a9c-b139-49f2-bd0e-81b2ad9e8390'),(22382,NULL,NULL,NULL,21,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 04:25:30','2021-07-16 04:25:30',NULL,NULL,'010a57c5-35bc-4227-997f-ce26f8cb0b26'),(22383,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-16 04:25:30','2021-07-16 04:25:30',NULL,NULL,'ce168483-b8e7-437b-b0d5-db2d2abdbaaf'),(22384,NULL,NULL,NULL,8,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 04:25:30','2021-07-16 04:25:30',NULL,NULL,'f430b0cf-53e9-4e3d-9228-8b55f2161381'),(22398,22210,NULL,12825,6,'craft\\elements\\Entry',1,0,'2021-07-16 05:01:45','2021-07-16 05:01:46','2021-07-16 05:01:44',NULL,'8b34c154-0129-4f09-9e42-0b115c2fed9c'),(22399,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 05:01:46','2021-07-16 05:01:46','2021-07-16 05:01:44',NULL,'5e5e2996-096d-4a79-8c83-edc14236a4a0'),(22400,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 05:01:46','2021-07-16 05:01:46','2021-07-16 05:01:44',NULL,'dab76fdc-1a4f-4a86-9a94-854af6abb4e7'),(22401,NULL,NULL,NULL,21,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 05:01:46','2021-07-16 05:01:46','2021-07-16 05:01:44',NULL,'6648570c-dae9-424f-8eff-2fa6cf1e2dcc'),(22402,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-16 05:01:46','2021-07-16 05:01:46',NULL,NULL,'c2a64e98-fc76-4372-b67c-08257f7eb6a2'),(22403,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 05:01:46','2021-07-16 05:01:46','2021-07-16 05:01:45',NULL,'20b3f467-30e7-4454-b9e2-e849649b26f3'),(22404,NULL,NULL,NULL,8,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 05:01:46','2021-07-16 05:01:46','2021-07-16 05:01:45',NULL,'fb8ac917-187e-453f-9462-c8389ac7d8bd'),(22405,NULL,NULL,NULL,21,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 05:01:46','2021-07-16 05:01:46','2021-07-16 05:01:45',NULL,'13a3a835-17a7-47bc-ac35-4b4c616df4a6'),(22406,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-16 05:01:46','2021-07-16 05:01:46',NULL,NULL,'04d4ac2c-9c27-482a-9c2f-c82a863808e0'),(22407,NULL,NULL,NULL,8,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 05:01:46','2021-07-16 05:01:46','2021-07-16 05:01:45',NULL,'8f90f747-ec91-41af-b861-f9ac4ee5a91c'),(22420,22210,NULL,12826,6,'craft\\elements\\Entry',1,0,'2021-07-16 05:27:14','2021-07-16 05:27:15','2021-07-16 05:27:14',NULL,'edfa122b-d417-4a31-8ce4-d986366f70d0'),(22421,NULL,NULL,NULL,9,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 05:27:15','2021-07-16 05:27:15','2021-07-16 05:27:14',NULL,'559d204c-cbd8-4ee2-af83-ddf5b4db5697'),(22422,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 05:27:15','2021-07-16 05:27:15','2021-07-16 05:27:14',NULL,'01826ac2-e266-4203-804a-252e86816611'),(22423,NULL,NULL,NULL,21,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 05:27:15','2021-07-16 05:27:15','2021-07-16 05:27:14',NULL,'fa5b67c1-ca54-4ae2-90c9-39bcbf224ba4'),(22424,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-16 05:27:15','2021-07-16 05:27:15',NULL,NULL,'a5efd3e9-44b8-4e85-9b5f-248f7f0e9362'),(22425,NULL,NULL,NULL,7,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 05:27:15','2021-07-16 05:27:15','2021-07-16 05:27:14',NULL,'6632edd1-66f2-4ad8-b9d4-33fb1a0ba8bc'),(22426,NULL,NULL,NULL,8,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 05:27:15','2021-07-16 05:27:15','2021-07-16 05:27:14',NULL,'eb7672e2-3602-4163-8204-34f902246c10'),(22427,NULL,NULL,NULL,21,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 05:27:15','2021-07-16 05:27:15','2021-07-16 05:27:14',NULL,'d2582220-0ac5-48b3-b2ca-3d3c45c1ddf5'),(22428,NULL,NULL,NULL,20,'verbb\\supertable\\elements\\SuperTableBlockElement',1,0,'2021-07-16 05:27:15','2021-07-16 05:27:15',NULL,NULL,'74f18841-cce6-480e-83d1-1ef99a8a624f'),(22429,NULL,NULL,NULL,8,'craft\\elements\\MatrixBlock',1,0,'2021-07-16 05:27:15','2021-07-16 05:27:15','2021-07-16 05:27:14',NULL,'3013a484-d9e5-4f62-aebe-5ff9eefecd39'),(22440,22210,NULL,12827,6,'craft\\elements\\Entry',1,0,'2021-07-16 05:33:06','2021-07-16 05:33:06','2021-07-16 05:33:06',NULL,'6580f0c8-f339-4734-b3d9-a1b3a74c577a'),(22442,22210,NULL,12828,6,'craft\\elements\\Entry',1,0,'2021-07-16 05:37:58','2021-07-16 05:37:58','2021-07-16 05:33:06',NULL,'7e64affc-2fb8-4e1e-be5c-b603ce901e0e'),(22444,22210,NULL,12829,6,'craft\\elements\\Entry',1,0,'2021-07-16 05:43:18','2021-07-16 05:43:18','2021-07-16 05:43:18',NULL,'79cabad8-794d-46b3-a513-fcfbd8552daa'),(22449,18139,NULL,12830,6,'craft\\elements\\Entry',1,0,'2021-07-16 05:46:02','2021-07-16 05:46:03','2021-07-16 05:46:02',NULL,'31d339c8-66f5-4ad7-8493-ac2e570f6036'),(22455,18142,NULL,12831,6,'craft\\elements\\Entry',1,0,'2021-07-16 05:47:20','2021-07-16 05:47:20','2021-07-16 05:47:20',NULL,'7ee2fc4c-c013-4a61-9000-ceb73e3aa39c'),(22461,18168,NULL,12832,6,'craft\\elements\\Entry',1,0,'2021-07-16 05:49:15','2021-07-16 05:49:15','2021-07-16 05:49:15',NULL,'d5081e24-bd16-42bb-8a7e-fc167f1c5cd2'),(22481,18156,NULL,12833,6,'craft\\elements\\Entry',1,0,'2021-07-16 05:51:53','2021-07-16 05:51:53','2021-07-16 05:51:53',NULL,'2786c802-f28b-4ff4-b6b8-ba9b13aec076'),(22482,18156,NULL,12834,6,'craft\\elements\\Entry',1,0,'2021-07-16 05:52:30','2021-07-16 05:52:30','2021-07-16 05:51:53',NULL,'d5cb3bd5-a742-4ef1-9c07-5284cb605557'),(22489,18126,NULL,12835,6,'craft\\elements\\Entry',1,0,'2021-07-16 05:54:32','2021-07-16 05:54:32','2021-07-16 05:54:32',NULL,'96257a32-f476-4e1c-8388-b746b86b1680'),(22502,18122,NULL,12836,6,'craft\\elements\\Entry',1,0,'2021-07-16 05:59:12','2021-07-16 05:59:13','2021-07-16 05:59:12',NULL,'23d08ada-0d15-42f7-9a3b-099425b3774e'),(22513,18109,NULL,12837,6,'craft\\elements\\Entry',1,0,'2021-07-16 06:00:43','2021-07-16 06:00:44','2021-07-16 06:00:43',NULL,'26594988-eb34-4e8c-bae6-2a662e74ad50'),(22514,18109,NULL,12838,6,'craft\\elements\\Entry',1,0,'2021-07-16 06:01:47','2021-07-16 06:01:47','2021-07-16 06:00:43',NULL,'f844bc2a-db81-4fa7-ac46-87365c306c60'),(22522,16828,NULL,12839,6,'craft\\elements\\Entry',1,0,'2021-07-16 06:04:47','2021-07-16 06:04:47','2021-07-16 06:04:47',NULL,'0f3151fc-d339-4143-bd20-903b3c58b73f'),(22524,16828,NULL,12840,6,'craft\\elements\\Entry',1,0,'2021-07-16 06:05:40','2021-07-16 06:05:41','2021-07-16 06:05:40',NULL,'b219049d-f8ea-4aa8-863b-4be78e6c6817'),(22526,16828,NULL,12841,6,'craft\\elements\\Entry',1,0,'2021-07-16 06:07:33','2021-07-16 06:07:33','2021-07-16 06:07:33',NULL,'9fa77d87-f760-4489-938e-88eedea678a7'),(22528,18122,NULL,12842,6,'craft\\elements\\Entry',1,0,'2021-07-16 06:18:20','2021-07-16 06:18:20','2021-07-16 06:18:20',NULL,'39640287-8203-4193-a36b-28577c76fc02'),(22530,18122,NULL,12843,6,'craft\\elements\\Entry',1,0,'2021-07-16 07:15:34','2021-07-16 07:15:35','2021-07-16 07:15:34',NULL,'b9ce903b-915f-46aa-9685-8bed801cbb9c'),(22532,22210,NULL,12844,6,'craft\\elements\\Entry',1,0,'2021-07-16 07:23:18','2021-07-16 07:23:19','2021-07-16 07:23:18',NULL,'c6192694-0c0a-4812-bbda-5a1976295fde'),(22534,22210,NULL,12845,6,'craft\\elements\\Entry',1,0,'2021-07-16 10:25:14','2021-07-16 10:25:14','2021-07-16 10:25:13',NULL,'cc72cda3-a2fb-4f7c-8c44-ba43f76f506c'),(22535,22210,NULL,12846,6,'craft\\elements\\Entry',1,0,'2021-07-16 10:26:43','2021-07-16 10:26:43','2021-07-16 10:25:13',NULL,'1f093687-d616-468a-bac5-7db6f3c96c69'),(22537,22210,NULL,12847,6,'craft\\elements\\Entry',1,0,'2021-07-16 10:54:01','2021-07-16 10:54:02','2021-07-16 10:54:01',NULL,'f5d00331-ec06-45ff-9713-e56414516d86'),(22539,22210,NULL,12848,6,'craft\\elements\\Entry',1,0,'2021-07-16 11:00:57','2021-07-16 11:00:57','2021-07-16 11:00:57',NULL,'35329a37-47ad-4840-ba23-a089c731c39d'),(22541,22210,NULL,12849,6,'craft\\elements\\Entry',1,0,'2021-07-16 11:10:03','2021-07-16 11:10:03','2021-07-16 11:10:03',NULL,'064d0411-fe3e-4240-ad92-b3b3faa7b56a'),(22542,21297,NULL,12850,34,'craft\\elements\\Entry',1,0,'2021-07-20 03:44:03','2021-07-20 03:44:03',NULL,NULL,'5e3447e2-b410-494e-9281-f593963102c2'),(27808,20195,NULL,17826,4,'craft\\elements\\Entry',1,0,'2021-07-21 00:29:49','2021-07-21 00:29:49',NULL,NULL,'24e4c2e7-b01f-4be5-a45a-094a400484e3'),(27809,20195,NULL,17827,4,'craft\\elements\\Entry',1,0,'2021-07-21 00:49:47','2021-07-21 00:49:47',NULL,NULL,'16ed7345-dc0e-4ce6-9f04-9a3fcd4d08d3'),(27810,20195,NULL,17828,4,'craft\\elements\\Entry',1,0,'2021-07-21 01:09:46','2021-07-21 01:09:46',NULL,NULL,'349d74ca-ba69-4e97-b313-63a80d8c5e1f'),(27811,20195,NULL,17829,4,'craft\\elements\\Entry',1,0,'2021-07-21 01:28:46','2021-07-21 01:28:46',NULL,NULL,'9229febd-f4b3-482a-840f-6c37de0d31b7'),(27812,20195,NULL,17830,4,'craft\\elements\\Entry',1,0,'2021-07-21 01:48:46','2021-07-21 01:48:46',NULL,NULL,'917b679a-09da-45fd-be0e-bc28eb508532'),(27813,20195,NULL,17831,4,'craft\\elements\\Entry',1,0,'2021-07-21 02:08:46','2021-07-21 02:08:46',NULL,NULL,'e70a18ac-17a0-4d75-8e86-7bf9a95ed849'),(27814,20195,NULL,17832,4,'craft\\elements\\Entry',1,0,'2021-07-21 02:28:46','2021-07-21 02:28:46',NULL,NULL,'2089a16c-e65b-48cc-8b7d-fbd0658f645f'),(27815,20195,NULL,17833,4,'craft\\elements\\Entry',1,0,'2021-07-21 02:34:58','2021-07-21 02:34:58',NULL,NULL,'3c0d497a-b97d-4a73-af5e-d88a310d7da2'),(27816,20195,NULL,17834,4,'craft\\elements\\Entry',1,0,'2021-07-21 02:35:28','2021-07-21 02:35:28',NULL,NULL,'f9e04e37-6f91-47fa-889e-1ff958708c3f'),(27817,20195,NULL,17835,4,'craft\\elements\\Entry',1,0,'2021-07-21 02:35:58','2021-07-21 02:35:58',NULL,NULL,'fdebc761-aef6-4b4c-b82f-c333f584dd95'),(27818,20195,NULL,17836,4,'craft\\elements\\Entry',1,0,'2021-07-21 02:36:28','2021-07-21 02:36:28',NULL,NULL,'8affb8a2-10ee-4ab9-b6c6-d6cc08cb597e'),(27819,20195,NULL,17837,4,'craft\\elements\\Entry',1,0,'2021-07-21 02:36:58','2021-07-21 02:36:58',NULL,NULL,'57eb320d-4d44-47b0-b1b7-57124812ae9c'),(27820,20195,NULL,17838,4,'craft\\elements\\Entry',1,0,'2021-07-21 02:37:30','2021-07-21 02:37:30',NULL,NULL,'8e711ec7-2298-4f8a-9ef8-c40973de983b'),(27821,20195,NULL,17839,4,'craft\\elements\\Entry',1,0,'2021-07-21 02:38:00','2021-07-21 02:38:00',NULL,NULL,'427d43f4-81a9-4341-adbc-8a6f7e4013fa'),(27822,20195,NULL,17840,4,'craft\\elements\\Entry',1,0,'2021-07-21 02:38:32','2021-07-21 02:38:32',NULL,NULL,'0d93e0f3-6131-488d-89e3-0c5bb6ec50df'),(27823,20195,NULL,17841,4,'craft\\elements\\Entry',1,0,'2021-07-21 02:39:02','2021-07-21 02:39:02',NULL,NULL,'532d1c68-8ca1-442f-869c-f5ee59011794'),(27824,20195,NULL,17842,4,'craft\\elements\\Entry',1,0,'2021-07-21 02:40:46','2021-07-21 02:40:46',NULL,NULL,'6ecb555c-add6-4696-be28-8b1902f45405'),(27826,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-21 23:27:28','2021-07-21 23:27:28',NULL,NULL,'0c17d990-1440-4b62-a9d0-14283485dca2'),(27827,22210,NULL,17843,6,'craft\\elements\\Entry',1,0,'2021-07-21 23:27:44','2021-07-21 23:27:44',NULL,NULL,'74f1400d-7277-41f3-9aa1-51f1fa1e2e36'),(27854,17692,NULL,17857,12,'craft\\elements\\Entry',1,0,'2021-07-22 05:14:54','2021-07-22 05:14:54',NULL,NULL,'470adf30-6ec6-4636-9f76-6fdc51d2ecd3'),(27856,17690,NULL,17858,12,'craft\\elements\\Entry',1,0,'2021-07-22 05:16:05','2021-07-22 05:16:05',NULL,NULL,'080b72c9-91ac-4ce2-90d7-4593948ce0f1'),(27857,17690,NULL,17859,12,'craft\\elements\\Entry',1,0,'2021-07-22 05:19:49','2021-07-22 05:19:49',NULL,NULL,'5ec8af6f-41a9-4fe9-874a-0a8d08623498'),(27859,17688,NULL,17860,12,'craft\\elements\\Entry',1,0,'2021-07-22 05:20:42','2021-07-22 05:20:42',NULL,NULL,'26ab4cfa-0abe-4d4f-b295-0e911300541f'),(27861,17686,NULL,17861,12,'craft\\elements\\Entry',1,0,'2021-07-22 05:30:30','2021-07-22 05:30:30',NULL,NULL,'de94a213-5b66-4b02-a8c5-504c19a3367f'),(27864,17684,NULL,17862,12,'craft\\elements\\Entry',1,0,'2021-07-22 05:33:33','2021-07-22 05:33:33',NULL,NULL,'7c522384-f82e-466b-a873-92f2e5ee8b8e'),(27866,17682,NULL,17863,12,'craft\\elements\\Entry',1,0,'2021-07-22 05:34:28','2021-07-22 05:34:28',NULL,NULL,'da7e10d6-33b1-4094-97d0-33e3f239c3f0'),(27868,17682,NULL,17864,12,'craft\\elements\\Entry',1,0,'2021-07-22 05:35:48','2021-07-22 05:35:48',NULL,NULL,'92ce521a-13c7-48bc-a22b-47704a80a5ab'),(27870,17680,NULL,17865,12,'craft\\elements\\Entry',1,0,'2021-07-22 05:38:16','2021-07-22 05:38:16',NULL,NULL,'2c66fcdb-9bfd-4634-8264-2aa01176e21b'),(27873,17690,NULL,17866,12,'craft\\elements\\Entry',1,0,'2021-07-22 05:52:23','2021-07-22 05:52:23',NULL,NULL,'a4f484f2-e2ad-41c2-b61d-581422cd640c'),(27874,17686,NULL,17867,12,'craft\\elements\\Entry',1,0,'2021-07-22 05:55:18','2021-07-22 05:55:18',NULL,NULL,'23a9ccf3-1abc-4631-bad6-8b9c284e4605'),(27876,17686,NULL,17868,12,'craft\\elements\\Entry',1,0,'2021-07-22 05:56:43','2021-07-22 05:56:43',NULL,NULL,'08dd3226-7152-4992-8de6-d4482596e84a'),(27878,17684,NULL,17869,12,'craft\\elements\\Entry',1,0,'2021-07-22 05:57:58','2021-07-22 05:57:58',NULL,NULL,'91126c7f-2cc3-42be-9ce0-2c4609c79876'),(27880,17690,NULL,17870,12,'craft\\elements\\Entry',1,0,'2021-07-22 05:59:20','2021-07-22 05:59:20',NULL,NULL,'c7847adb-6d9e-4396-8569-10a21e4a281b'),(27882,17680,NULL,17871,12,'craft\\elements\\Entry',1,0,'2021-07-22 06:04:40','2021-07-22 06:04:40',NULL,NULL,'b2a60767-8f1e-4ff8-8a9c-4d2818db295a'),(27884,17680,NULL,17872,12,'craft\\elements\\Entry',1,0,'2021-07-22 06:05:22','2021-07-22 06:05:23',NULL,NULL,'933d54a5-0fa9-439c-abf2-7a5f3888e1a4'),(27886,17680,NULL,17873,12,'craft\\elements\\Entry',1,0,'2021-07-22 06:07:24','2021-07-22 06:07:24',NULL,NULL,'840b9919-90ba-4837-9062-4d66a358b644'),(27888,17682,NULL,17874,12,'craft\\elements\\Entry',1,0,'2021-07-22 06:08:55','2021-07-22 06:08:55',NULL,NULL,'b875ed4f-9cf8-4869-b13d-f293cfd1dd75'),(27889,17682,NULL,17875,12,'craft\\elements\\Entry',1,0,'2021-07-22 06:09:31','2021-07-22 06:09:31',NULL,NULL,'b618ce6a-897e-40b0-85a5-1ccb622f64c1'),(27894,17680,NULL,17877,12,'craft\\elements\\Entry',1,0,'2021-07-22 06:21:57','2021-07-22 06:21:57',NULL,NULL,'05554556-97c0-442c-a70d-34c71c933ada'),(27896,17688,NULL,17878,12,'craft\\elements\\Entry',1,0,'2021-07-22 09:36:18','2021-07-22 09:36:18',NULL,NULL,'d220871d-a57d-4c37-a049-b1e6415ec25e'),(27898,17686,NULL,17879,12,'craft\\elements\\Entry',1,0,'2021-07-22 09:37:59','2021-07-22 09:37:59',NULL,NULL,'8c02559b-2c6e-46e4-962f-d8b1b798ce6f'),(27900,17684,NULL,17880,12,'craft\\elements\\Entry',1,0,'2021-07-22 09:39:45','2021-07-22 09:39:45',NULL,NULL,'f0bfbdcd-518c-45c5-956d-5232c10f6a70'),(27914,17692,NULL,17887,12,'craft\\elements\\Entry',1,0,'2021-07-22 09:43:45','2021-07-22 09:43:45',NULL,NULL,'c8aad594-0e65-49d6-a661-eef45b62be39'),(27926,17692,NULL,17893,12,'craft\\elements\\Entry',1,0,'2021-07-22 23:34:54','2021-07-22 23:34:54',NULL,NULL,'7ddd8382-153e-4166-8372-9fd4ac033050'),(27928,17690,NULL,17894,12,'craft\\elements\\Entry',1,0,'2021-07-22 23:36:59','2021-07-22 23:36:59',NULL,NULL,'a7026e53-a8c4-4412-a702-23b66d20899a'),(27930,17690,NULL,17895,12,'craft\\elements\\Entry',1,0,'2021-07-22 23:38:56','2021-07-22 23:38:56',NULL,NULL,'7210bd12-8065-43a7-a58e-fc206b3de7c4'),(27948,17692,NULL,17905,12,'craft\\elements\\Entry',1,0,'2021-07-23 00:37:47','2021-07-23 00:37:47',NULL,NULL,'1ea85afc-f523-4d55-98b4-dc25992f6f3d'),(27949,17690,NULL,17906,12,'craft\\elements\\Entry',1,0,'2021-07-23 00:38:08','2021-07-23 00:38:08',NULL,NULL,'df79e045-a3e4-465d-87c7-caa32a20f3d9'),(27951,17688,NULL,17907,12,'craft\\elements\\Entry',1,0,'2021-07-23 00:40:50','2021-07-23 00:40:50',NULL,NULL,'32247b23-3b3a-4666-b767-491d26f2f551'),(27952,17688,NULL,17908,12,'craft\\elements\\Entry',1,0,'2021-07-23 00:42:25','2021-07-23 00:42:25',NULL,NULL,'5ed6df63-d63d-4e86-9287-d5de5a85276b'),(27953,17688,NULL,17909,12,'craft\\elements\\Entry',1,0,'2021-07-23 00:42:43','2021-07-23 00:42:43',NULL,NULL,'47692ded-793a-4acc-b369-72ffb89b9ed1'),(27955,17686,NULL,17910,12,'craft\\elements\\Entry',1,0,'2021-07-23 00:43:48','2021-07-23 00:43:48',NULL,NULL,'c417bd83-473c-48b3-8e25-02d16bcc2205'),(27957,17684,NULL,17911,12,'craft\\elements\\Entry',1,0,'2021-07-23 00:45:38','2021-07-23 00:45:38',NULL,NULL,'48972304-63ea-4eea-a95e-af9e5a2bf6cb'),(27959,17682,NULL,17912,12,'craft\\elements\\Entry',1,0,'2021-07-23 00:47:31','2021-07-23 00:47:31',NULL,NULL,'bc650d21-e357-4a4e-a5e8-27cc6a6fb7d3'),(27961,17680,NULL,17913,12,'craft\\elements\\Entry',1,0,'2021-07-23 00:49:19','2021-07-23 00:49:19',NULL,NULL,'b71b4876-5315-416a-b6c2-77078cc3cc09'),(27963,17678,NULL,17914,12,'craft\\elements\\Entry',1,0,'2021-07-23 00:58:41','2021-07-23 00:58:41',NULL,NULL,'4f8e0166-011c-43d2-adeb-ce8707ef5ed5'),(27965,17676,NULL,17915,12,'craft\\elements\\Entry',1,0,'2021-07-23 01:06:04','2021-07-23 01:06:04',NULL,NULL,'d20edc5e-5317-44fd-a9ea-49cdd0538ec0'),(27967,17674,NULL,17916,12,'craft\\elements\\Entry',1,0,'2021-07-23 01:08:24','2021-07-23 01:08:24',NULL,NULL,'01b3c39c-f912-4df5-9b96-99978f3abd6a'),(27969,17674,NULL,17917,12,'craft\\elements\\Entry',1,0,'2021-07-23 01:10:23','2021-07-23 01:10:23',NULL,NULL,'f0e8c471-a016-4363-a8ec-aa725e59ed67'),(27971,17672,NULL,17918,12,'craft\\elements\\Entry',1,0,'2021-07-23 01:13:29','2021-07-23 01:13:29',NULL,NULL,'4906dc43-1e3c-4242-8c74-e854f700aebe'),(27973,17670,NULL,17919,12,'craft\\elements\\Entry',1,0,'2021-07-23 01:16:03','2021-07-23 01:16:03',NULL,NULL,'e6429a70-1458-45cc-9d66-01ae4f4d4089'),(27975,17668,NULL,17920,12,'craft\\elements\\Entry',1,0,'2021-07-23 01:17:51','2021-07-23 01:17:51',NULL,NULL,'12af3b24-f9ff-4c99-b0c5-8a4c0ff996fb'),(27978,17666,NULL,17921,12,'craft\\elements\\Entry',1,0,'2021-07-23 01:24:26','2021-07-23 01:24:26',NULL,NULL,'32e74f75-1759-4857-a3fe-79babeae8043'),(27980,17666,NULL,17922,12,'craft\\elements\\Entry',1,0,'2021-07-23 01:36:15','2021-07-23 01:36:15',NULL,NULL,'1b4fb49f-7554-48f2-a42f-612adb7a7f84'),(27982,17664,NULL,17923,12,'craft\\elements\\Entry',1,0,'2021-07-23 01:41:34','2021-07-23 01:41:34',NULL,NULL,'284e789b-95ca-418f-b14e-208a58335c7c'),(27984,17662,NULL,17924,12,'craft\\elements\\Entry',1,0,'2021-07-23 01:43:47','2021-07-23 01:43:48',NULL,NULL,'791783bf-b657-443f-a021-561576283ebe'),(27986,17660,NULL,17925,12,'craft\\elements\\Entry',1,0,'2021-07-23 01:47:24','2021-07-23 01:47:24',NULL,NULL,'dbf737d1-f410-45f8-8769-f3bbee881961'),(27988,17654,NULL,17926,12,'craft\\elements\\Entry',1,0,'2021-07-23 01:49:44','2021-07-23 01:49:44',NULL,NULL,'ae67797a-2d96-4b77-a5d1-a0e3b00fbb6a'),(27990,17652,NULL,17927,12,'craft\\elements\\Entry',1,0,'2021-07-23 01:52:04','2021-07-23 01:52:04',NULL,NULL,'b6e62c92-c164-4e7a-9601-e40040f56c58'),(27992,17648,NULL,17928,12,'craft\\elements\\Entry',1,0,'2021-07-23 02:57:11','2021-07-23 02:57:11',NULL,NULL,'b48cbab2-cbe9-4aed-82d9-50431850869a'),(27994,17650,NULL,17929,12,'craft\\elements\\Entry',1,0,'2021-07-23 02:59:41','2021-07-23 02:59:41',NULL,NULL,'59a49241-222b-4fe2-8f9e-36529206bb97'),(27996,17646,NULL,17930,12,'craft\\elements\\Entry',1,0,'2021-07-23 03:01:34','2021-07-23 03:01:34',NULL,NULL,'3caa927a-5c0f-4ce7-a379-60c4ccb1805e'),(27998,17644,NULL,17931,12,'craft\\elements\\Entry',1,0,'2021-07-23 03:04:25','2021-07-23 03:04:26',NULL,NULL,'fc785671-b013-4dfb-8759-669450a9894e'),(28000,17644,NULL,17932,12,'craft\\elements\\Entry',1,0,'2021-07-23 03:06:02','2021-07-23 03:06:02',NULL,NULL,'c3b0a56f-07cc-405d-ac00-cefb64daddeb'),(28002,17635,NULL,17933,12,'craft\\elements\\Entry',1,0,'2021-07-23 03:08:45','2021-07-23 03:08:45',NULL,NULL,'4802c7f4-bcf4-4158-a028-5a8d71932540'),(28004,17642,NULL,17934,12,'craft\\elements\\Entry',1,0,'2021-07-23 03:12:29','2021-07-23 03:12:29',NULL,NULL,'9fe1a6cd-f8d3-44b7-882f-5c3e94b9fddd'),(28006,17638,NULL,17935,12,'craft\\elements\\Entry',1,0,'2021-07-23 03:13:18','2021-07-23 03:13:18',NULL,NULL,'51d0ab08-d175-431d-85e8-13ed4193038e'),(28008,17633,NULL,17936,12,'craft\\elements\\Entry',1,0,'2021-07-23 03:14:00','2021-07-23 03:14:01',NULL,NULL,'87b40f52-1f90-4c35-a3f3-f4a615ed22bb'),(28010,17638,NULL,17937,12,'craft\\elements\\Entry',1,0,'2021-07-23 03:14:11','2021-07-23 03:14:11',NULL,NULL,'f0a3ab83-12ab-4266-a7f1-5c153585a4a5'),(28012,17631,NULL,17938,12,'craft\\elements\\Entry',1,0,'2021-07-23 03:14:59','2021-07-23 03:14:59',NULL,NULL,'eea5eea5-788b-47b9-94e8-8d859e60e9f9'),(28014,17628,NULL,17939,12,'craft\\elements\\Entry',1,0,'2021-07-23 03:19:27','2021-07-23 03:19:27',NULL,NULL,'c42dcadf-3a2d-462b-8c50-eb6617313ab4'),(28016,17626,NULL,17940,12,'craft\\elements\\Entry',1,0,'2021-07-23 03:20:39','2021-07-23 03:20:39',NULL,NULL,'1eb4b759-c4b4-4d28-abfa-734e0422cbf4'),(28018,17621,NULL,17941,12,'craft\\elements\\Entry',1,0,'2021-07-23 03:22:12','2021-07-23 03:22:12',NULL,NULL,'b636a400-aa39-4709-88e4-981300725432'),(28020,17623,NULL,17942,12,'craft\\elements\\Entry',1,0,'2021-07-23 03:26:01','2021-07-23 03:26:01',NULL,NULL,'27662ff8-1717-4bfd-91ae-ca405c53973b'),(28022,17617,NULL,17943,12,'craft\\elements\\Entry',1,0,'2021-07-23 03:26:58','2021-07-23 03:26:58',NULL,NULL,'07511fbb-5530-4691-a996-984db1f61d82'),(28024,17615,NULL,17944,12,'craft\\elements\\Entry',1,0,'2021-07-23 03:27:34','2021-07-23 03:27:34',NULL,NULL,'2fa5eb53-7e17-4a18-be26-1e8eb07e0ce6'),(28026,17613,NULL,17945,12,'craft\\elements\\Entry',1,0,'2021-07-23 03:30:27','2021-07-23 03:30:27',NULL,NULL,'53f1ad8c-81ae-4081-8c05-bb1f53ff244e'),(28028,17611,NULL,17946,12,'craft\\elements\\Entry',1,0,'2021-07-23 03:32:57','2021-07-23 03:32:57',NULL,NULL,'5c1f83b4-27b6-497f-b0bb-acb7e7c294e9'),(28030,17608,NULL,17947,12,'craft\\elements\\Entry',1,0,'2021-07-23 03:34:21','2021-07-23 03:34:21',NULL,NULL,'d543311a-f41e-42b2-9962-39697b173450'),(28032,17603,NULL,17948,12,'craft\\elements\\Entry',1,0,'2021-07-23 03:34:56','2021-07-23 03:34:56',NULL,NULL,'908dfeff-03c6-4e56-8f8e-8b1242b68f3f'),(28040,NULL,NULL,NULL,12,'craft\\elements\\Entry',1,0,'2021-07-23 05:37:29','2022-05-30 01:17:28',NULL,NULL,'a7264c91-bfab-46bc-912b-abd2e14902d8'),(28041,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-23 05:43:24','2021-07-23 05:43:24',NULL,NULL,'1693434c-1474-4ec3-9c4e-e41f9387422f'),(28042,28040,NULL,17952,12,'craft\\elements\\Entry',1,0,'2021-07-23 06:18:47','2021-07-23 06:18:47',NULL,NULL,'d79f02b4-2873-41c3-8f1d-b14505bb5d69'),(28043,17603,NULL,17953,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:14','2021-07-23 06:19:14',NULL,NULL,'0039d720-165f-4863-a3e2-a145f331f941'),(28044,17608,NULL,17954,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:14','2021-07-23 06:19:14',NULL,NULL,'bfdef1e5-9ef8-4b84-836e-20c7db98c0be'),(28045,17611,NULL,17955,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:14','2021-07-23 06:19:14',NULL,NULL,'9b2af1e4-9ab0-42e8-b4e6-cc31baa6a245'),(28046,17613,NULL,17956,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:15','2021-07-23 06:19:15',NULL,NULL,'828b6a80-2712-40f1-85fe-03061c013ad6'),(28047,17615,NULL,17957,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:15','2021-07-23 06:19:15',NULL,NULL,'60d08a33-58c3-4fa8-be3a-167851a2afeb'),(28048,17617,NULL,17958,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:15','2021-07-23 06:19:15',NULL,NULL,'7fa1806b-f4cd-49ae-ad8b-ffd83f6bfe7f'),(28049,17621,NULL,17959,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:15','2021-07-23 06:19:15',NULL,NULL,'fb004fe2-f647-41cf-a7fb-5d61f1e9c60a'),(28050,17623,NULL,17960,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:15','2021-07-23 06:19:15',NULL,NULL,'a6df8629-d9e8-4624-832c-15fc9abd1e10'),(28051,17626,NULL,17961,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:15','2021-07-23 06:19:15',NULL,NULL,'2ccef55a-bd68-4a53-814b-aea217e31877'),(28052,17628,NULL,17962,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:16','2021-07-23 06:19:16',NULL,NULL,'76b8a0fa-a305-46ae-81c1-259c80592eb8'),(28053,17631,NULL,17963,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:16','2021-07-23 06:19:16',NULL,NULL,'f96d9860-cba9-40f7-a33b-5e55909baae1'),(28054,17633,NULL,17964,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:16','2021-07-23 06:19:16',NULL,NULL,'df1760a5-760b-4397-b1f2-b51a6ab3fffe'),(28055,17635,NULL,17965,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:16','2021-07-23 06:19:16',NULL,NULL,'5bc05252-d809-4b2b-869a-fac28ee455a6'),(28056,17638,NULL,17966,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:16','2021-07-23 06:19:16',NULL,NULL,'ebe68f47-91d9-41d6-a6b4-cc5295985b5e'),(28057,17642,NULL,17967,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:16','2021-07-23 06:19:16',NULL,NULL,'654a060d-608f-4000-9f71-cdc7ba021590'),(28058,17644,NULL,17968,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:17','2021-07-23 06:19:17',NULL,NULL,'f78fad81-5c29-4a27-b72c-345593666733'),(28059,17646,NULL,17969,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:17','2021-07-23 06:19:17',NULL,NULL,'7fa894bc-68df-4fd4-9cb2-5d286579a271'),(28060,17648,NULL,17970,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:17','2021-07-23 06:19:17',NULL,NULL,'bcfe1bd2-af5f-41ad-88e5-e91d12e9a0c6'),(28061,17650,NULL,17971,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:17','2021-07-23 06:19:17',NULL,NULL,'0c15669a-233c-499f-b285-235e1c3f5f0b'),(28062,17652,NULL,17972,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:17','2021-07-23 06:19:17',NULL,NULL,'f8cb3492-6024-411b-8f16-947b55883d6a'),(28063,17654,NULL,17973,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:17','2021-07-23 06:19:17',NULL,NULL,'7e39ab6c-1a75-496b-9371-abf57b5dc1a2'),(28064,17660,NULL,17974,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:18','2021-07-23 06:19:18',NULL,NULL,'68707004-61c8-47db-981b-6e5ef81ea4fa'),(28065,17662,NULL,17975,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:18','2021-07-23 06:19:18',NULL,NULL,'54dc4cb7-1809-4875-98a6-3f4133d928a7'),(28066,17664,NULL,17976,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:18','2021-07-23 06:19:18',NULL,NULL,'9cb66af5-74cf-46c9-87e7-a34a0cbfec62'),(28067,17666,NULL,17977,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:18','2021-07-23 06:19:18',NULL,NULL,'45e27a68-7a62-45de-bd0b-3995080de8d0'),(28068,17668,NULL,17978,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:18','2021-07-23 06:19:18',NULL,NULL,'33c7a0b1-8b1c-4c30-8031-0e2b5298da9f'),(28069,17670,NULL,17979,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:19','2021-07-23 06:19:19',NULL,NULL,'9fe75ada-c5f4-456f-ad51-449c06ab453e'),(28070,17672,NULL,17980,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:19','2021-07-23 06:19:19',NULL,NULL,'ff5fdff1-da1f-480d-a73e-6a34d5989ca3'),(28071,17674,NULL,17981,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:19','2021-07-23 06:19:19',NULL,NULL,'e8d784dd-86d8-4a0d-8623-be9fd49a3cbb'),(28072,17676,NULL,17982,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:19','2021-07-23 06:19:19',NULL,NULL,'90b938d4-38c8-4cde-b75b-33d4efbc097a'),(28073,17678,NULL,17983,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:19','2021-07-23 06:19:19',NULL,NULL,'94ce74bf-2a47-42ba-b8ee-762d43cec26e'),(28074,17680,NULL,17984,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:20','2021-07-23 06:19:20',NULL,NULL,'5a0185f1-9b5d-4f01-910a-97015280c29b'),(28075,17682,NULL,17985,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:20','2021-07-23 06:19:20',NULL,NULL,'04f3a8bd-0ae0-4e82-8ca6-3fd92448adb3'),(28076,17684,NULL,17986,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:20','2021-07-23 06:19:20',NULL,NULL,'f35a7781-b0d5-48c0-ba3c-f35a340d13e8'),(28077,17686,NULL,17987,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:20','2021-07-23 06:19:20',NULL,NULL,'b111ac82-4985-4f16-b1e0-1191f203d738'),(28078,17688,NULL,17988,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:20','2021-07-23 06:19:20',NULL,NULL,'0f0a3568-f053-42fe-97d8-1a872e359c76'),(28079,17690,NULL,17989,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:21','2021-07-23 06:19:21',NULL,NULL,'29b0b6b8-b623-47f6-98d1-fdc40d486f55'),(28080,17692,NULL,17990,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:19:21','2021-07-23 06:19:21',NULL,NULL,'3f140fec-31f9-47b5-b078-4e700f9dc9db'),(28082,17692,NULL,17991,12,'craft\\elements\\Entry',1,0,'2021-07-23 06:26:23','2021-07-23 06:26:23',NULL,NULL,'a7d6030d-7926-4ff2-ac09-07ae2bca404d'),(28084,17692,NULL,17992,12,'craft\\elements\\Entry',1,0,'2021-07-23 06:27:18','2021-07-23 06:27:18',NULL,NULL,'57c1c2fa-8bdb-4c68-956e-5c35318729cc'),(28085,17692,NULL,17993,12,'craft\\elements\\Entry',1,0,'2021-07-23 06:28:16','2021-07-23 06:28:16',NULL,NULL,'0065b9df-e4e8-4b7e-b138-5780d8d60fef'),(28087,17688,NULL,17994,12,'craft\\elements\\Entry',1,0,'2021-07-23 06:33:59','2021-07-23 06:33:59',NULL,NULL,'592c5c7a-c56c-4969-9500-8b91e1adfe0d'),(28089,17682,NULL,17995,12,'craft\\elements\\Entry',1,0,'2021-07-23 06:47:17','2021-07-23 06:47:17',NULL,NULL,'a85b3333-cf00-4d2f-9efb-7f5604f4dd24'),(28091,17680,NULL,17996,12,'craft\\elements\\Entry',1,0,'2021-07-23 06:49:43','2021-07-23 06:49:43',NULL,NULL,'206da96d-75da-4acb-9c45-6109b58d0edb'),(28094,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-23 06:54:39','2021-11-09 06:06:58',NULL,NULL,'cf18b058-d64f-4d5b-a71a-3ae7ccf0cf73'),(28095,17684,NULL,17997,12,'craft\\elements\\Entry',1,0,'2021-07-23 06:55:08','2021-07-23 06:55:08',NULL,NULL,'b4cc9695-4d7a-4f83-affc-8f732769052a'),(28097,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-23 06:57:14','2021-11-09 06:09:14',NULL,NULL,'ae92cf43-f3af-4357-9952-6928417c1477'),(28098,17684,NULL,17998,12,'craft\\elements\\Entry',1,0,'2021-07-23 06:57:34','2021-07-23 06:57:34',NULL,NULL,'3dbc717d-cdfe-4931-a409-9bec276b9b3c'),(28099,17680,NULL,17999,12,'craft\\elements\\Entry',0,0,'2021-07-23 06:57:53','2021-07-23 06:57:53',NULL,NULL,'d5405f70-78df-423a-99a0-892438c9e526'),(28101,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-07-23 06:59:36','2021-10-05 06:42:39',NULL,NULL,'0b0bde6d-34f8-407d-9ba8-2b4cbba90f84'),(28102,17678,NULL,18000,12,'craft\\elements\\Entry',1,0,'2021-07-23 07:26:56','2021-07-23 07:26:56',NULL,NULL,'65fdf765-9346-4c83-8402-0615c68c6408'),(30410,20195,NULL,20288,4,'craft\\elements\\Entry',1,0,'2021-07-26 03:59:06','2021-07-26 03:59:06',NULL,NULL,'c2006975-3ce1-4d76-8c2a-0b21ed68c981'),(30411,28040,192,NULL,12,'craft\\elements\\Entry',1,0,'2021-07-30 01:23:04','2022-06-22 23:52:09','2022-06-22 23:52:09',NULL,'3e7b8482-3a43-4bba-a262-06e314eb3b40'),(30413,17688,NULL,20289,12,'craft\\elements\\Entry',1,0,'2021-07-30 01:25:54','2021-07-30 01:25:54',NULL,NULL,'a36f2367-a185-4605-b38c-85006a838493'),(30415,17684,NULL,20290,12,'craft\\elements\\Entry',1,0,'2021-07-30 01:29:29','2021-07-30 01:29:29',NULL,NULL,'cae794f4-ae62-46fe-9ec4-5fb96b8cfdb8'),(30417,17690,NULL,20291,12,'craft\\elements\\Entry',0,0,'2021-07-30 01:43:13','2021-07-30 01:43:13',NULL,NULL,'ed6c532b-35ab-4e06-bb44-503a8c69f267'),(30418,17690,196,NULL,12,'craft\\elements\\Entry',1,0,'2021-07-30 01:43:29','2021-07-30 01:43:29',NULL,NULL,'e98b0212-2aaa-4cdd-b9fa-a26f4603e4d7'),(30419,17680,197,NULL,12,'craft\\elements\\Entry',0,0,'2021-07-30 01:44:03','2021-07-30 01:44:03',NULL,NULL,'8f61dba3-ab89-4fd2-9b97-cc7231ace690'),(30420,17690,NULL,20292,12,'craft\\elements\\Entry',1,0,'2021-07-30 01:44:40','2021-07-30 01:44:40',NULL,NULL,'a1be06b3-f918-49f3-ab69-2047b8a407f6'),(30422,17686,NULL,20293,12,'craft\\elements\\Entry',0,0,'2021-07-30 02:03:24','2021-07-30 02:03:25',NULL,NULL,'9525e94b-0ffb-43f5-aaff-682ff8dcb2fd'),(30423,17686,NULL,20294,12,'craft\\elements\\Entry',1,0,'2021-07-30 02:03:43','2021-07-30 02:03:43',NULL,NULL,'6d0eae30-f411-401b-bfa7-e0d9e11f8d9f'),(30425,20379,NULL,20295,23,'craft\\elements\\Entry',1,0,'2021-08-06 00:26:34','2021-08-06 00:26:34',NULL,NULL,'61064e03-20bb-4b34-bb53-5e45d5de67fc'),(30427,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2021-08-06 06:46:16','2022-08-12 03:45:45',NULL,NULL,'05468d3a-61bc-489b-9aa2-8ddf3a561372'),(30428,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-08-06 06:54:09','2021-08-06 06:54:09',NULL,NULL,'aac38491-ab03-4070-ae0d-82525780ab05'),(30429,30427,NULL,20296,6,'craft\\elements\\Entry',1,0,'2021-08-06 07:05:52','2021-08-06 07:05:52',NULL,NULL,'a6c73dfd-6af5-49e0-a2b8-e12efb77e7fe'),(30431,30427,NULL,20297,6,'craft\\elements\\Entry',1,0,'2021-08-06 07:11:15','2021-08-06 07:11:15',NULL,NULL,'91137c1f-e653-4e6d-9f56-9de165415308'),(30433,NULL,NULL,NULL,5,'craft\\elements\\User',1,0,'2021-08-12 00:15:26','2023-03-09 04:28:32',NULL,NULL,'45fe4dd8-6569-4e7c-b057-7c3b2e99a8a5'),(30434,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-08-12 00:56:33','2021-10-05 06:44:26',NULL,NULL,'058a7f77-d838-4f18-8753-e813fa79e5ec'),(30436,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-08-12 01:35:40','2021-10-05 06:43:58',NULL,NULL,'1a4ced12-a64f-4aad-acc0-fc0f756499dd'),(30438,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-08-12 03:24:12','2021-10-05 06:41:54',NULL,NULL,'c92de968-03ee-4f1b-8fb0-b66a5e9db147'),(30441,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-08-12 03:40:51','2022-06-27 02:56:52',NULL,NULL,'476b7c06-9fcb-486c-b243-076abdffaf96'),(30442,30427,NULL,20299,6,'craft\\elements\\Entry',1,0,'2021-08-12 03:41:27','2021-08-12 03:41:27',NULL,NULL,'76a9984b-2aa8-4b16-9852-5e14d964f467'),(30444,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-08-12 03:43:00','2022-06-27 02:56:34',NULL,NULL,'85db8266-44eb-49c7-ac69-1eb605a5e72f'),(30445,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-08-12 03:43:35','2022-06-27 02:56:48',NULL,NULL,'a54fb7f7-d93a-4e0f-ac69-a9d5caa2cc0b'),(30446,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-08-12 03:44:02','2022-06-27 02:56:40',NULL,NULL,'aef8091e-e06d-4efc-958f-039c97fe98e5'),(30447,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-08-12 03:44:22','2022-06-27 02:56:37',NULL,NULL,'ac1c95d6-18a9-40c7-a95a-bb6586f96360'),(30448,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-08-12 03:44:49','2022-06-27 02:56:45',NULL,NULL,'1798ca41-740c-40fc-b6c1-9bb27f69eb44'),(30449,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-08-12 03:45:20','2022-06-27 02:56:43',NULL,NULL,'d6c4c00a-fd5c-4b94-a27a-2638dccd8dd4'),(30450,30427,NULL,20300,6,'craft\\elements\\Entry',1,0,'2021-08-12 04:01:48','2021-08-12 04:01:48',NULL,NULL,'b913c7d6-5214-4c49-ba0b-bb694a086a68'),(30452,30427,NULL,20301,6,'craft\\elements\\Entry',1,0,'2021-08-12 04:42:20','2021-08-12 04:42:21',NULL,NULL,'53bef8e3-e4f6-4b53-88a9-a8110fd6325b'),(30454,17688,NULL,20302,12,'craft\\elements\\Entry',1,0,'2021-08-13 04:45:47','2021-08-13 04:45:47',NULL,NULL,'4182c366-1e45-4ee3-b587-ffdd56838509'),(30456,17688,NULL,20303,12,'craft\\elements\\Entry',1,0,'2021-08-13 04:46:40','2021-08-13 04:46:40',NULL,NULL,'067c92b3-0847-432e-862f-fcd768962dd6'),(30458,17682,NULL,20304,12,'craft\\elements\\Entry',1,0,'2021-08-13 04:53:52','2021-08-13 04:53:52',NULL,NULL,'bf624b11-152b-41e8-877b-924881c89238'),(30460,17682,NULL,20305,12,'craft\\elements\\Entry',1,0,'2021-08-13 04:54:39','2021-08-13 04:54:39',NULL,NULL,'23e3f4d3-dc9f-4ee9-b3fd-127bd2890c20'),(30462,17678,NULL,20306,12,'craft\\elements\\Entry',1,0,'2021-08-13 04:56:17','2021-08-13 04:56:17',NULL,NULL,'cdb4131a-984b-4d45-b6a4-1175d5bb0849'),(30464,17678,NULL,20307,12,'craft\\elements\\Entry',1,0,'2021-08-13 04:56:59','2021-08-13 04:56:59',NULL,NULL,'bd8f6851-bcea-4f68-9273-207f8e7e1fb1'),(30466,17678,NULL,20308,12,'craft\\elements\\Entry',1,0,'2021-08-13 04:57:52','2021-08-13 04:57:53',NULL,NULL,'adac9780-b04f-4e78-9538-09dc374d5de9'),(30468,17686,NULL,20309,12,'craft\\elements\\Entry',1,0,'2021-08-13 06:46:54','2021-08-13 06:46:55',NULL,NULL,'abdce425-b682-4b63-906d-1e18cbb3fd4c'),(30470,17686,NULL,20310,12,'craft\\elements\\Entry',1,0,'2021-08-13 06:47:41','2021-08-13 06:47:41',NULL,NULL,'5991989a-f46f-4374-90f9-e17ac42a1104'),(38101,30427,NULL,27811,6,'craft\\elements\\Entry',1,0,'2021-08-26 23:19:35','2021-08-26 23:19:35',NULL,NULL,'a237c1e5-1d80-4d9b-a0c5-d22ecf35b8c2'),(38103,18156,NULL,27812,6,'craft\\elements\\Entry',1,0,'2021-08-26 23:20:15','2021-08-26 23:20:15',NULL,NULL,'f5445fe4-bb32-4900-b41f-5358d5f42a25'),(38104,22210,NULL,27813,6,'craft\\elements\\Entry',1,0,'2021-08-26 23:20:47','2021-08-26 23:20:47',NULL,NULL,'d50ca38d-758e-4a84-9d09-34f6e262ad7c'),(38106,18139,NULL,27814,6,'craft\\elements\\Entry',1,0,'2021-08-26 23:21:32','2021-08-26 23:21:32',NULL,NULL,'b33b193a-4ae3-408f-abae-92bd1a713c5f'),(38108,18142,NULL,27815,6,'craft\\elements\\Entry',1,0,'2021-08-26 23:22:04','2021-08-26 23:22:04',NULL,NULL,'1ebc73e0-817c-40a1-a62e-2821399582e1'),(38110,18168,NULL,27816,6,'craft\\elements\\Entry',1,0,'2021-08-26 23:22:51','2021-08-26 23:22:51',NULL,NULL,'2ed6d697-65ab-41ae-afa2-ebc44843a518'),(38112,18156,NULL,27817,6,'craft\\elements\\Entry',1,0,'2021-08-26 23:23:27','2021-08-26 23:23:27',NULL,NULL,'81057391-e7be-439e-ab14-1fbce3adaad7'),(38114,18126,NULL,27818,6,'craft\\elements\\Entry',1,0,'2021-08-26 23:24:04','2021-08-26 23:24:04',NULL,NULL,'da0c7fcc-bd69-4485-ab42-1bd2e5b2dec5'),(38116,18122,NULL,27819,6,'craft\\elements\\Entry',1,0,'2021-08-26 23:24:34','2021-08-26 23:24:34',NULL,NULL,'23397219-14f1-413c-b1aa-b369511c952c'),(38118,18109,NULL,27820,6,'craft\\elements\\Entry',1,0,'2021-08-26 23:25:21','2021-08-26 23:25:22',NULL,NULL,'16f95f96-887b-4111-b9b6-abf823c64a00'),(38120,16828,NULL,27821,6,'craft\\elements\\Entry',1,0,'2021-08-26 23:27:01','2021-08-26 23:27:01',NULL,NULL,'b05d08a9-55ad-481b-98fc-a583bdb48999'),(38121,NULL,NULL,NULL,6,'craft\\elements\\Entry',0,0,'2021-08-26 23:30:56','2022-01-30 04:05:11',NULL,NULL,'d52757eb-da45-4078-a1af-061e946607c2'),(38122,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-08-26 23:32:22','2021-11-09 06:07:29',NULL,NULL,'b013f4ae-460c-4723-b9fa-0da66f3d7031'),(38123,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-08-26 23:33:04','2021-11-09 06:07:58',NULL,NULL,'b5d8eeab-ff26-4679-9ad2-b804878c1755'),(38124,38121,NULL,27822,6,'craft\\elements\\Entry',1,0,'2021-08-26 23:33:16','2021-08-26 23:33:16',NULL,NULL,'31ed3a85-f52b-4209-9c69-ec21e5534a18'),(38125,NULL,NULL,NULL,NULL,'craft\\elements\\Tag',1,0,'2021-08-26 23:34:08','2021-08-26 23:34:08',NULL,NULL,'e067a79e-3592-4c2e-8ef3-9922748c6e65'),(38127,38121,NULL,27823,6,'craft\\elements\\Entry',1,0,'2021-08-26 23:34:11','2021-08-26 23:34:11',NULL,NULL,'521d8c99-585f-48f3-aaf4-86bef2d075a0'),(38129,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-08-26 23:48:08','2021-11-09 06:08:12',NULL,NULL,'1008cf1e-d45b-457a-9688-66fca4166542'),(38130,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-08-26 23:48:41','2021-11-09 06:07:13',NULL,NULL,'25fce6d2-568e-4cd1-a65d-b537f4510486'),(38131,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-08-26 23:49:56','2021-11-09 06:07:43',NULL,NULL,'fb7bfc3a-4481-4a4d-a335-28459a91c933'),(38132,38121,NULL,27824,6,'craft\\elements\\Entry',1,0,'2021-08-26 23:50:11','2021-08-26 23:50:11',NULL,NULL,'227f286b-f411-453c-8e0f-540627b01a15'),(38134,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-08-26 23:58:19','2021-11-09 06:08:37',NULL,NULL,'277645bb-2954-4da5-8fc9-04dbe02f548c'),(38135,38121,NULL,27825,6,'craft\\elements\\Entry',1,0,'2021-08-27 00:05:53','2021-08-27 00:05:53',NULL,NULL,'e96be7a9-5ef1-43d8-85a3-7cf2caba6402'),(38149,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-08-27 05:31:56','2023-03-09 04:28:32',NULL,NULL,'885cf8fa-4db3-416c-a1fd-31b83b1b2343'),(38150,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-08-27 05:31:56','2023-03-09 04:28:32',NULL,NULL,'de4b11c4-82e5-4fb3-b057-dcc72de57b03'),(38151,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-08-27 05:31:56','2023-03-09 04:28:32',NULL,NULL,'c6fc54bd-07d9-462e-a4a6-b9decc9028bf'),(38152,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-08-27 05:31:56','2023-03-09 04:28:32',NULL,NULL,'fdf0983a-ce64-42f1-be00-af816b3c9cc1'),(38153,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2021-08-27 05:31:56','2023-03-09 04:28:32',NULL,NULL,'0dd96d10-4b72-4851-80cf-ecabe30c6923'),(38155,20379,NULL,27832,23,'craft\\elements\\Entry',1,0,'2021-08-27 05:35:28','2021-08-27 05:35:28',NULL,NULL,'f37eb4c6-66d0-4abc-b998-4104591b8612'),(38157,NULL,NULL,NULL,17,'craft\\elements\\Category',1,0,'2021-09-03 00:13:04','2021-09-03 00:13:04',NULL,NULL,'f810ec3e-7eab-4b03-9014-c0d9d619add8'),(38158,NULL,NULL,NULL,17,'craft\\elements\\Category',1,0,'2021-09-03 00:13:46','2021-09-03 00:13:46',NULL,NULL,'dc3717ba-aa4b-4e79-9955-59a9ef1c397c'),(38159,NULL,NULL,NULL,17,'craft\\elements\\Category',1,0,'2021-09-03 00:13:57','2021-09-03 00:13:57',NULL,NULL,'c846404e-14f7-4f1e-a9b9-aed7b3e40d3f'),(38160,NULL,NULL,NULL,17,'craft\\elements\\Category',1,0,'2021-09-03 00:14:07','2021-09-03 00:14:07',NULL,NULL,'03b0ed85-e1b4-4a05-9aa3-cd7003bef0d0'),(38161,NULL,NULL,NULL,17,'craft\\elements\\Category',1,0,'2021-09-03 00:14:36','2021-09-03 00:14:36',NULL,NULL,'46f24505-7970-4579-ba04-cfb010a00338'),(38162,30427,NULL,27833,6,'craft\\elements\\Entry',1,0,'2021-09-03 00:15:59','2021-09-03 00:15:59',NULL,NULL,'99ed7674-27ec-4f7b-bd00-d1f363a06ded'),(38164,22210,NULL,27834,6,'craft\\elements\\Entry',1,0,'2021-09-03 00:43:42','2021-09-03 00:43:42',NULL,NULL,'58e2021d-9165-4e73-924e-8a298c171ca8'),(38166,18139,NULL,27835,6,'craft\\elements\\Entry',1,0,'2021-09-03 00:54:26','2021-09-03 00:54:26',NULL,NULL,'899c4736-5ba9-4b0a-b4b8-84191ab19d6d'),(38167,16828,NULL,27836,6,'craft\\elements\\Entry',0,0,'2021-09-03 01:21:27','2021-09-03 01:21:27',NULL,NULL,'d394abc4-7e0c-449f-9d73-d6ce4ab417ad'),(38168,18109,NULL,27837,6,'craft\\elements\\Entry',0,0,'2021-09-03 01:21:28','2021-09-03 01:21:28',NULL,NULL,'150fd89e-09e0-4108-a30b-0cb2867ba352'),(38169,18122,NULL,27838,6,'craft\\elements\\Entry',0,0,'2021-09-03 01:21:28','2021-09-03 01:21:28',NULL,NULL,'d472c7ff-2155-4c6f-acc9-ff898f027604'),(38170,18126,NULL,27839,6,'craft\\elements\\Entry',0,0,'2021-09-03 01:21:29','2021-09-03 01:21:29',NULL,NULL,'18607b22-6e05-491b-8e05-a3d5250a36af'),(38171,18142,NULL,27840,6,'craft\\elements\\Entry',0,0,'2021-09-03 01:21:29','2021-09-03 01:21:29',NULL,NULL,'6971582b-d7b8-40de-90c2-6485291899f5'),(38172,18156,NULL,27841,6,'craft\\elements\\Entry',0,0,'2021-09-03 01:21:30','2021-09-03 01:21:30',NULL,NULL,'396a9947-4a28-4c0b-9e7e-8f6447f5b17d'),(38173,18168,NULL,27842,6,'craft\\elements\\Entry',0,0,'2021-09-03 01:21:30','2021-09-03 01:21:30',NULL,NULL,'ce9b5bcc-98f1-4d7b-b6cf-3f90f91024da'),(38174,38121,NULL,27843,6,'craft\\elements\\Entry',0,0,'2021-09-03 01:21:30','2021-09-03 01:21:31',NULL,NULL,'b83e9210-1fde-4a19-9b11-d2f7e37f76e1'),(38176,18142,NULL,27844,6,'craft\\elements\\Entry',0,0,'2021-09-03 01:34:27','2021-09-03 01:34:27',NULL,NULL,'71ec764a-3954-4f67-9bf8-a624e7e67c8b'),(38178,18142,NULL,27845,6,'craft\\elements\\Entry',0,0,'2021-09-03 01:35:46','2021-09-03 01:35:46',NULL,NULL,'841bd014-9835-4cbc-91d6-a9bb336e4b6f'),(38179,18142,NULL,27846,6,'craft\\elements\\Entry',1,0,'2021-09-03 01:35:54','2021-09-03 01:35:54',NULL,NULL,'eae3d511-f702-4bd6-8395-b23e88fbed8c'),(38181,18168,NULL,27847,6,'craft\\elements\\Entry',0,0,'2021-09-03 01:52:31','2021-09-03 01:52:31',NULL,NULL,'a96547f3-4ece-4b2b-a860-daf9295380ce'),(38182,18168,NULL,27848,6,'craft\\elements\\Entry',1,0,'2021-09-03 01:52:38','2021-09-03 01:52:38',NULL,NULL,'b3e6047b-44a2-49ed-8d21-9809b21cc537'),(38184,18156,NULL,27849,6,'craft\\elements\\Entry',0,0,'2021-09-03 02:00:34','2021-09-03 02:00:34',NULL,NULL,'ff924cdd-e797-4b25-b1eb-81d8e5ee290e'),(38186,18156,NULL,27850,6,'craft\\elements\\Entry',0,0,'2021-09-03 02:00:54','2021-09-03 02:00:54',NULL,NULL,'6490c316-f2c9-4c61-a456-66899ebdcc94'),(38187,18156,NULL,27851,6,'craft\\elements\\Entry',1,0,'2021-09-03 02:01:00','2021-09-03 02:01:01',NULL,NULL,'d54905dc-5286-4505-adca-2b4316520285'),(38190,18122,NULL,27852,6,'craft\\elements\\Entry',0,0,'2021-09-03 02:08:55','2021-09-03 02:08:55',NULL,NULL,'91d3c8e4-1d4c-4bcc-bd05-a4e0660c40a2'),(38192,18122,NULL,27853,6,'craft\\elements\\Entry',0,0,'2021-09-03 03:29:11','2021-09-03 03:29:11',NULL,NULL,'29226db4-dea2-4759-984b-2f29f8ee012b'),(38193,18122,NULL,27854,6,'craft\\elements\\Entry',1,0,'2021-09-03 03:29:28','2021-09-03 03:29:28',NULL,NULL,'00785bda-4882-414b-a4c8-ff6fb62ce720'),(38195,18109,NULL,27855,6,'craft\\elements\\Entry',0,0,'2021-09-03 04:00:14','2021-09-03 04:00:15',NULL,NULL,'702a1f39-d581-4c61-ba05-828aa5083121'),(38196,18109,NULL,27856,6,'craft\\elements\\Entry',1,0,'2021-09-03 04:00:25','2021-09-03 04:00:26',NULL,NULL,'24a0df5b-7f2f-4a90-a975-2fc628bb7bd3'),(39378,16828,NULL,29023,6,'craft\\elements\\Entry',0,0,'2021-09-03 05:07:10','2021-09-03 05:07:10',NULL,NULL,'8a79924b-d266-4065-a2f8-bc76d4e74594'),(39501,16828,NULL,29133,6,'craft\\elements\\Entry',1,0,'2021-09-03 05:07:32','2021-09-03 05:07:32',NULL,NULL,'5d1ea800-86d9-4d03-956d-1fa4f19cf16d'),(40453,16828,NULL,30076,6,'craft\\elements\\Entry',1,0,'2021-09-03 05:17:17','2021-09-03 05:17:17',NULL,NULL,'7d7453db-f02e-4482-b776-debde708b47b'),(40493,38121,NULL,30096,6,'craft\\elements\\Entry',0,0,'2021-09-03 05:40:34','2021-09-03 05:40:34',NULL,NULL,'a0ad260a-9c65-40c9-a457-62db569a8bb9'),(40494,38121,NULL,30097,6,'craft\\elements\\Entry',1,0,'2021-09-03 05:40:44','2021-09-03 05:40:44',NULL,NULL,'50465620-ae2a-4a53-a0d8-e78a3af0eaba'),(40496,16828,NULL,30098,6,'craft\\elements\\Entry',1,0,'2021-09-03 05:49:34','2021-09-03 05:49:35',NULL,NULL,'158a0b55-c7ad-43c4-b6a8-1be4f80f5d96'),(40498,18164,NULL,30099,6,'craft\\elements\\Entry',0,0,'2021-09-03 05:55:51','2021-09-03 05:55:52',NULL,NULL,'5e3f5754-d2f6-48d0-a9d9-8fcab191d0e0'),(40500,18164,NULL,30100,6,'craft\\elements\\Entry',1,0,'2021-09-03 05:58:48','2021-09-03 05:58:48',NULL,NULL,'736c4b29-c22d-48e8-95b7-af16134f5504'),(40501,18176,290,NULL,6,'craft\\elements\\Entry',0,0,'2021-09-03 06:04:36','2022-08-24 04:25:36','2022-08-24 04:25:36',NULL,'3dfa580d-f886-4869-86f2-c48f3ab94401'),(40502,18176,NULL,30101,6,'craft\\elements\\Entry',1,0,'2021-09-03 06:10:03','2021-09-03 06:10:03',NULL,NULL,'74fe11e5-6660-4f15-9e22-3dfc02542d8b'),(40503,18164,NULL,30102,6,'craft\\elements\\Entry',1,0,'2021-09-03 06:10:44','2021-09-03 06:10:44',NULL,NULL,'430a9ada-d219-43c7-86c6-c263dcdae1f9'),(40504,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2021-09-03 06:26:25','2022-08-12 03:46:35',NULL,NULL,'5b950cb9-f1a0-4b36-b513-9116088ba47c'),(40505,40504,NULL,30103,6,'craft\\elements\\Entry',1,0,'2021-09-03 06:36:49','2021-09-03 06:36:49',NULL,NULL,'0a08f096-580b-4a25-9997-a4be5a19824d'),(40506,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2021-09-03 06:50:20','2022-08-08 06:26:22',NULL,NULL,'a153908f-0e2f-4b8c-a4c3-e8ec83bccd6d'),(40507,40506,NULL,30104,6,'craft\\elements\\Entry',1,0,'2021-09-03 07:15:30','2021-09-03 07:15:30',NULL,NULL,'9f746378-c1ba-4e1b-874c-5507654809c7'),(44834,20379,NULL,34421,23,'craft\\elements\\Entry',1,0,'2021-09-08 04:16:32','2021-09-08 04:16:32',NULL,NULL,'6b2a4c60-ce86-4067-90aa-06544e3aaec4'),(44837,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2021-09-10 01:03:53','2022-08-08 06:23:47',NULL,NULL,'8c618cab-55ab-4d63-95be-0456d40f5ee1'),(44838,44837,NULL,34423,6,'craft\\elements\\Entry',1,0,'2021-09-10 01:16:41','2021-09-10 01:16:41',NULL,NULL,'cf528963-0330-4a76-aec8-261cdeb4df59'),(44840,18164,NULL,34424,6,'craft\\elements\\Entry',1,0,'2021-09-10 01:18:35','2021-09-10 01:18:35',NULL,NULL,'928be870-542f-4db4-bfd3-7790637624f1'),(44841,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2021-09-10 01:18:39','2022-08-24 01:14:57',NULL,NULL,'064726d8-1a07-428d-88a3-1266466677ef'),(44842,44841,NULL,34425,6,'craft\\elements\\Entry',1,0,'2021-09-10 01:21:43','2021-09-10 01:21:43',NULL,NULL,'78639e06-e8ef-4b4b-aad2-3ab98f4877c5'),(44843,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2021-09-10 01:24:02','2022-08-08 06:20:26',NULL,NULL,'599b4241-7e07-4313-a949-c2a9fc041a74'),(44844,44843,NULL,34426,6,'craft\\elements\\Entry',1,0,'2021-09-10 01:28:12','2021-09-10 01:28:12',NULL,NULL,'55e354b1-747a-467c-81cf-4944e97ccd96'),(44845,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2021-09-10 01:29:04','2022-08-08 06:19:55',NULL,NULL,'48029488-d4c0-4ffd-819c-280b6fa6e88d'),(44846,44845,NULL,34427,6,'craft\\elements\\Entry',1,0,'2021-09-10 01:37:29','2021-09-10 01:37:29',NULL,NULL,'3c3f610e-587c-4fc7-8cad-81ec56fce7ab'),(44848,30427,NULL,34428,6,'craft\\elements\\Entry',1,0,'2021-09-10 01:37:37','2021-09-10 01:37:37',NULL,NULL,'36458929-782f-4a59-b9b0-6abb3a1f464d'),(44849,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2021-09-10 01:37:38','2022-08-08 06:22:13',NULL,NULL,'d8abeb14-3cb3-4f55-8dda-0c464c6a8dde'),(44852,18168,NULL,34429,6,'craft\\elements\\Entry',1,0,'2021-09-10 01:41:20','2021-09-10 01:41:20',NULL,NULL,'16461692-2ccc-402f-8f51-97efcdb40f2a'),(44854,18168,NULL,34430,6,'craft\\elements\\Entry',1,0,'2021-09-10 01:43:09','2021-09-10 01:43:09',NULL,NULL,'50bba623-5e02-4154-9aea-2ce123cd0a1d'),(44856,30427,NULL,34431,6,'craft\\elements\\Entry',1,0,'2021-09-10 01:43:47','2021-09-10 01:43:47',NULL,NULL,'3d0bc423-9168-440a-9845-140b36b6e66d'),(44858,30427,NULL,34432,6,'craft\\elements\\Entry',1,0,'2021-09-10 01:45:52','2021-09-10 01:45:52',NULL,NULL,'ee0f4e42-5748-4491-8b39-b138eb82f9b7'),(44859,44849,NULL,34433,6,'craft\\elements\\Entry',1,0,'2021-09-10 01:46:57','2021-09-10 01:46:57',NULL,NULL,'405baa4d-3f09-4607-8166-e5997cbf637f'),(44861,18109,NULL,34434,6,'craft\\elements\\Entry',1,0,'2021-09-10 01:47:53','2021-09-10 01:47:53',NULL,NULL,'c0d48321-4e04-40a1-b469-54212bf18cdf'),(44862,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2021-09-10 01:47:59','2022-05-30 01:22:14',NULL,NULL,'9735d343-4af7-4ae4-9e15-d81292778177'),(44864,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-10 01:49:32','2021-10-05 06:32:59',NULL,NULL,'cf29639f-0931-4b0b-a78b-b1c5aeebe0e3'),(44866,16828,NULL,34435,6,'craft\\elements\\Entry',1,0,'2021-09-10 01:50:38','2021-09-10 01:50:38',NULL,NULL,'358e2525-68f7-4227-9c7e-1b16ff4e19da'),(44867,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-10 01:51:05','2021-10-05 06:32:37',NULL,NULL,'1213870a-0cb1-46a4-aa23-2c738d4a004c'),(44869,44862,NULL,34436,6,'craft\\elements\\Entry',1,0,'2021-09-10 01:52:46','2021-09-10 01:52:46',NULL,NULL,'3deaa9ee-ddc9-4b02-a2f2-1966c9a28c6f'),(44870,16828,NULL,34437,6,'craft\\elements\\Entry',1,0,'2021-09-10 01:53:06','2021-09-10 01:53:06',NULL,NULL,'218fcdd8-aeff-4465-be54-b4cc85732a67'),(44872,40504,NULL,34438,6,'craft\\elements\\Entry',1,0,'2021-09-10 01:54:33','2021-09-10 01:54:33',NULL,NULL,'97a68da9-8128-4448-b7ca-dc3d506bf4cf'),(44873,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-10 01:54:43','2021-10-05 06:32:09',NULL,NULL,'15037627-1b06-4676-80de-b9827c309d0e'),(44874,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-10 01:56:08','2021-10-05 06:31:35',NULL,NULL,'c5e11f6a-9a1c-4da0-9b2b-a872725ab2df'),(44877,44837,NULL,34439,6,'craft\\elements\\Entry',1,0,'2021-09-10 01:57:45','2021-09-10 01:57:45',NULL,NULL,'026c317b-b05e-4188-a54e-68b14410da1e'),(44878,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-10 01:57:57','2021-10-05 06:30:33',NULL,NULL,'4f47f974-29ac-43d9-9011-ef520f54819e'),(44879,NULL,NULL,NULL,50,'craft\\elements\\Entry',1,0,'2021-09-10 01:58:36','2022-05-17 23:19:16',NULL,NULL,'f25824b1-fddb-4e52-903d-e0a7e7867e03'),(44880,44879,NULL,34440,50,'craft\\elements\\Entry',1,0,'2021-09-10 01:58:36','2021-09-10 01:58:36',NULL,NULL,'249d3944-61b1-498c-bbff-0891d7e371b0'),(44881,44879,NULL,34441,50,'craft\\elements\\Entry',1,0,'2021-09-10 02:00:40','2021-09-10 02:00:40',NULL,NULL,'f78aeabc-5ab1-4f42-bcb9-4dfaee7c82b4'),(44967,NULL,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:02:41','2021-11-09 01:32:14',NULL,NULL,'c9962db3-2e63-4819-8abe-9ccdf91f517f'),(44969,NULL,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:02:41','2021-11-09 01:32:15',NULL,NULL,'56a8af8c-38b0-4d9d-b3a8-50e2a307f370'),(44970,NULL,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:02:41','2021-11-09 01:32:15',NULL,NULL,'a711f70f-cb9c-4fad-be80-d8fe183f0adf'),(44971,NULL,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:02:41','2021-11-09 01:32:15',NULL,NULL,'ef164d86-e4a6-4bfa-9a79-816ba8e83266'),(44972,44879,NULL,34442,50,'craft\\elements\\Entry',1,0,'2021-09-10 02:02:41','2021-09-10 02:02:41',NULL,NULL,'7cbe4566-93ec-406a-bfcb-5b151687e71a'),(44973,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:02:41','2021-09-10 02:02:41',NULL,NULL,'e6188a79-4a93-4c07-8ed0-2e667ec9d756'),(44974,NULL,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:02:41','2021-09-10 02:02:41',NULL,NULL,'933b54b3-88fb-4564-b334-2d051cec865b'),(44975,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:02:41','2021-09-10 02:02:41',NULL,NULL,'8dad0f0d-acfb-4195-9761-be4489a8ef0c'),(44976,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:02:41','2021-09-10 02:02:41',NULL,NULL,'ece5c58c-78d0-47b4-bb21-e423807c99e8'),(44977,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:02:41','2021-09-10 02:02:41',NULL,NULL,'d13c8297-cbc8-4825-9eb3-74ad1ca10d90'),(44978,16571,NULL,34443,6,'craft\\elements\\Entry',1,0,'2021-09-10 02:05:36','2021-09-10 02:05:36',NULL,NULL,'e07c39f2-922e-4213-a712-733767068e20'),(44980,16571,NULL,34444,6,'craft\\elements\\Entry',1,0,'2021-09-10 02:05:54','2021-09-10 02:05:54',NULL,NULL,'b5e6a261-30e1-4b22-9f78-c4e8f81bf60a'),(44981,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2021-09-10 02:07:38','2022-08-12 03:45:04',NULL,NULL,'d3787881-d1ba-42bb-ba0b-b14f12343b2c'),(44982,44981,NULL,34445,6,'craft\\elements\\Entry',1,0,'2021-09-10 02:10:02','2021-09-10 02:10:02',NULL,NULL,'96a6882a-0cca-4ed6-97ea-630ea4a234ff'),(44983,NULL,NULL,NULL,6,'craft\\elements\\Entry',0,0,'2021-09-10 02:10:22','2021-10-14 05:45:57',NULL,NULL,'53c2da00-98ca-406c-91d2-546835121e0f'),(44984,44983,NULL,34446,6,'craft\\elements\\Entry',1,0,'2021-09-10 02:13:28','2021-09-10 02:13:28',NULL,NULL,'fd2d5c31-899c-4f05-806b-348dd7d523ba'),(44985,NULL,NULL,NULL,6,'craft\\elements\\Entry',0,0,'2021-09-10 02:13:46','2021-09-27 02:02:40',NULL,NULL,'dc4a137c-f7bf-4611-8aee-ff93ebbbb7e8'),(44986,44985,NULL,34447,6,'craft\\elements\\Entry',1,0,'2021-09-10 02:15:58','2021-09-10 02:15:58',NULL,NULL,'70758e25-9f74-444d-bdac-ae914497c5ea'),(44987,NULL,NULL,NULL,6,'craft\\elements\\Entry',0,0,'2021-09-10 02:18:13','2022-08-24 06:52:57',NULL,NULL,'dfcc5234-cb00-4c88-9e02-d898a8c83c5c'),(44989,40504,NULL,34448,6,'craft\\elements\\Entry',1,0,'2021-09-10 02:22:58','2021-09-10 02:22:58',NULL,NULL,'f13c9d57-cfc5-448a-a7fb-7e0be3a7cae4'),(44996,44879,NULL,34449,50,'craft\\elements\\Entry',1,0,'2021-09-10 02:23:38','2021-09-10 02:23:39',NULL,NULL,'e0ad35bc-c16a-44ad-9ba4-e085b8e451d6'),(44997,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:23:39','2021-09-10 02:23:39',NULL,NULL,'fda97f4e-d786-497c-b78e-10f9f5f65a12'),(44998,NULL,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:23:39','2021-09-10 02:23:39',NULL,NULL,'3bbfe818-4349-4b35-b1e9-768351bc20e3'),(44999,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:23:39','2021-09-10 02:23:39',NULL,NULL,'99cd7a41-4666-4c13-9401-d7838d8fd92e'),(45000,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:23:39','2021-09-10 02:23:39',NULL,NULL,'43165f81-ba4c-42e8-a92f-8247791aa7da'),(45001,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:23:39','2021-09-10 02:23:39',NULL,NULL,'28d3519a-08ac-43d2-a536-6e543bb03fb9'),(45008,44879,NULL,34450,50,'craft\\elements\\Entry',1,0,'2021-09-10 02:25:54','2021-09-10 02:25:54',NULL,NULL,'767cef80-4429-4071-8d76-c41fc92ad72e'),(45009,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:25:54','2021-09-10 02:25:54',NULL,NULL,'9fd1cc9b-db34-47a4-a48e-2e6ceaa4dc3e'),(45010,NULL,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:25:54','2021-09-10 02:25:54',NULL,NULL,'e22bd628-297c-41c3-8836-97dfdab54614'),(45011,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:25:54','2021-09-10 02:25:54',NULL,NULL,'50c13b4e-baf9-4d57-bb57-707521080e3e'),(45012,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:25:54','2021-09-10 02:25:54',NULL,NULL,'4acdd661-4cb2-4248-92b3-63c5d0f841c8'),(45013,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:25:54','2021-09-10 02:25:54',NULL,NULL,'13609f92-9306-4f73-b257-72a06d9d5e81'),(45020,44879,NULL,34451,50,'craft\\elements\\Entry',1,0,'2021-09-10 02:26:16','2021-09-10 02:26:16',NULL,NULL,'3c269ab3-4b7f-4f3a-989e-3998aa5b9c87'),(45021,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:26:16','2021-09-10 02:26:16',NULL,NULL,'6fa7b3d9-ed6b-447f-b686-9414ca32aef7'),(45022,NULL,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:26:16','2021-09-10 02:26:16',NULL,NULL,'bbc30aed-d2a5-4f50-a8be-8570f2db817e'),(45023,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:26:16','2021-09-10 02:26:16',NULL,NULL,'a6c6b028-311b-440e-99f9-bf8281031396'),(45024,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:26:16','2021-09-10 02:26:16',NULL,NULL,'2ad92ba0-8b80-401b-8cdd-5a94c170fdff'),(45025,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:26:16','2021-09-10 02:26:16',NULL,NULL,'1de1eea2-dab0-407b-bb65-de214d2aec8a'),(45032,44879,NULL,34452,50,'craft\\elements\\Entry',1,0,'2021-09-10 02:28:15','2021-09-10 02:28:15',NULL,NULL,'3233f221-9696-4fe6-a893-54aae96bafb3'),(45033,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:28:15','2021-09-10 02:28:15',NULL,NULL,'d84ecfeb-88d0-4253-acaa-a511a299a950'),(45034,NULL,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:28:15','2021-09-10 02:28:15',NULL,NULL,'6a8adf71-8193-4898-8cb0-d02bd804eba3'),(45035,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:28:15','2021-09-10 02:28:15',NULL,NULL,'c8e0d5be-60e3-4d55-823a-29ba3b101b4b'),(45036,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:28:15','2021-09-10 02:28:15',NULL,NULL,'f3c37510-a35e-45c8-b3be-2a9e38333306'),(45037,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:28:15','2021-09-10 02:28:15',NULL,NULL,'5bd65e50-eefc-4d50-9dde-1f0dee38e5d0'),(45044,44879,NULL,34453,50,'craft\\elements\\Entry',1,0,'2021-09-10 02:28:45','2021-09-10 02:28:45',NULL,NULL,'ec619967-112e-4912-87b6-a4ee28f65687'),(45045,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:28:45','2021-09-10 02:28:45',NULL,NULL,'90e1751f-ecd1-43d9-8e7b-c1f0694e5403'),(45046,NULL,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:28:45','2021-09-10 02:28:45',NULL,NULL,'4b1d04cb-6def-4dd5-aae7-9705a825532d'),(45047,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:28:45','2021-09-10 02:28:45',NULL,NULL,'2f0923e7-b593-4344-9115-85f242946716'),(45048,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:28:45','2021-09-10 02:28:45',NULL,NULL,'c6d21d4c-3d8d-4eda-95a6-c271ad7388b9'),(45049,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:28:45','2021-09-10 02:28:45',NULL,NULL,'907e1faa-e316-4635-b4a6-0706946e161b'),(45056,44879,NULL,34454,50,'craft\\elements\\Entry',1,0,'2021-09-10 02:30:52','2021-09-10 02:30:52',NULL,NULL,'095d1f95-a54b-4c0a-bf8f-787785e91902'),(45057,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:30:52','2021-09-10 02:30:52',NULL,NULL,'29e169f1-b888-493f-9436-6bc8c44e4de1'),(45058,NULL,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:30:52','2021-09-10 02:30:52',NULL,NULL,'9ba47249-6c81-4906-96ed-2d9e8d314a89'),(45059,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:30:52','2021-09-10 02:30:52',NULL,NULL,'50ef5cfc-c5d8-4821-9c24-c188c4a940bc'),(45060,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:30:52','2021-09-10 02:30:52',NULL,NULL,'8d1f31f5-292b-4c5b-b866-8a3baca3ab18'),(45061,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:30:52','2021-09-10 02:30:52',NULL,NULL,'a2b12063-0939-4999-bb23-be3e0b398d03'),(45068,44879,NULL,34455,50,'craft\\elements\\Entry',1,0,'2021-09-10 02:31:08','2021-09-10 02:31:08',NULL,NULL,'6dabc662-c1c9-4e8e-acad-1a862b07ae56'),(45069,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:31:08','2021-09-10 02:31:08',NULL,NULL,'a00817d5-b37e-4ff1-9121-221ace0d23c6'),(45070,NULL,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:31:08','2021-09-10 02:31:08',NULL,NULL,'818c1641-45c5-4d5f-ba42-aef1679b62e1'),(45071,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:31:08','2021-09-10 02:31:08',NULL,NULL,'92546e75-aeb3-4578-b704-63250b116cad'),(45072,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:31:08','2021-09-10 02:31:08',NULL,NULL,'af2bb5f9-e886-4888-91c8-0751ec23b76e'),(45073,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:31:08','2021-09-10 02:31:08',NULL,NULL,'59b804b8-891c-4bb0-8e3a-dbdcb4c92f48'),(45080,44879,NULL,34456,50,'craft\\elements\\Entry',1,0,'2021-09-10 02:31:41','2021-09-10 02:31:42',NULL,NULL,'e56b5ef2-1174-42a5-ba5c-c0380fdb3e23'),(45081,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:31:42','2021-09-10 02:31:42',NULL,NULL,'ab0f1e67-d225-4615-9263-a550f92c4086'),(45082,NULL,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:31:42','2021-09-10 02:31:42',NULL,NULL,'2f04808e-35de-4820-9078-a914c4334fac'),(45083,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:31:42','2021-09-10 02:31:42',NULL,NULL,'ea24c2ae-cef5-4555-9acd-5f540acc8129'),(45084,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:31:42','2021-09-10 02:31:42',NULL,NULL,'09c674ce-eafc-4cf9-8404-b66d86b7654f'),(45085,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:31:42','2021-09-10 02:31:42',NULL,NULL,'b92a14d9-024d-4ecb-9a4f-77492422a245'),(45092,44879,NULL,34457,50,'craft\\elements\\Entry',1,0,'2021-09-10 02:32:14','2021-09-10 02:32:15',NULL,NULL,'6e5f9142-832c-4ab6-899b-dd96a7cbfaab'),(45093,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:32:15','2021-09-10 02:32:15',NULL,NULL,'77d4146b-35e4-4697-a836-3a210ee2b656'),(45094,NULL,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:32:15','2021-09-10 02:32:15',NULL,NULL,'c5cc867a-5caf-4b8a-9548-377e454c85d0'),(45095,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:32:15','2021-09-10 02:32:15',NULL,NULL,'49fc48de-9b75-47f3-9f1b-e593fac112a2'),(45096,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:32:15','2021-09-10 02:32:15',NULL,NULL,'000ce56b-1aff-4d96-9156-4007c27556bb'),(45097,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:32:15','2021-09-10 02:32:15',NULL,NULL,'58b086d1-42da-4cb3-86d4-09d5dc1b1df4'),(45104,44879,NULL,34458,50,'craft\\elements\\Entry',1,0,'2021-09-10 02:32:28','2021-09-10 02:32:28',NULL,NULL,'b78d23db-3b2a-4bac-a84f-e1d55893ba21'),(45105,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:32:28','2021-09-10 02:32:28',NULL,NULL,'3a829633-8f7d-4395-9023-c0922822f76a'),(45106,NULL,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:32:28','2021-09-10 02:32:28',NULL,NULL,'7e87bb11-4771-441c-84c9-d6018dddaeb4'),(45107,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:32:28','2021-09-10 02:32:28',NULL,NULL,'8ebe12c2-b521-4c6c-af16-3f233aac8fdc'),(45108,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:32:28','2021-09-10 02:32:28',NULL,NULL,'19b47162-9966-4e35-96d4-b842245652fc'),(45109,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:32:29','2021-09-10 02:32:29',NULL,NULL,'cfb0b91e-174a-429a-a1a7-62b308d3ef2a'),(45116,44879,NULL,34459,50,'craft\\elements\\Entry',1,0,'2021-09-10 02:33:17','2021-09-10 02:33:18',NULL,NULL,'4605c78c-05a9-4397-ad3a-5c4c060ae916'),(45117,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:33:18','2021-09-10 02:33:18',NULL,NULL,'5fcd5cd5-0457-40ce-a51e-08003f8fe727'),(45118,NULL,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:33:18','2021-09-10 02:33:18',NULL,NULL,'3705e3e0-f5ff-4df2-bfa7-c7b4c831c4d2'),(45119,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:33:18','2021-09-10 02:33:18',NULL,NULL,'866905a1-db54-4e9b-b874-a2adaf36724c'),(45120,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:33:18','2021-09-10 02:33:18',NULL,NULL,'b8e45c55-7cb0-48c2-aeb2-5b60cbf1dee3'),(45121,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:33:18','2021-09-10 02:33:18',NULL,NULL,'5fb4e238-3006-4123-bf39-6800cfa87863'),(45128,44879,NULL,34460,50,'craft\\elements\\Entry',1,0,'2021-09-10 02:34:41','2021-09-10 02:34:41',NULL,NULL,'8b13e4c2-1da5-44b9-9758-4914185125cf'),(45129,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:34:41','2021-09-10 02:34:41',NULL,NULL,'eacc332a-0a41-420f-990c-797565647847'),(45130,NULL,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:34:41','2021-09-10 02:34:41',NULL,NULL,'174a6c69-83ae-4f09-b74b-698574f081c5'),(45131,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:34:41','2021-09-10 02:34:41',NULL,NULL,'22561c93-b414-4ea2-bbf4-8db7b068555b'),(45132,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:34:41','2021-09-10 02:34:41',NULL,NULL,'3ac6f519-7f37-43b1-be1b-e882cb9bde1c'),(45133,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:34:41','2021-09-10 02:34:41',NULL,NULL,'07b35543-0d6a-42e3-b788-2a10d888e8c0'),(45140,44879,NULL,34461,50,'craft\\elements\\Entry',1,0,'2021-09-10 02:35:45','2021-09-10 02:35:45',NULL,NULL,'515e24bf-1b4d-4ff4-a8ab-fa1747c82e39'),(45141,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:35:45','2021-09-10 02:35:45',NULL,NULL,'f14366e2-27d8-4ce1-9211-9d1e22573869'),(45142,NULL,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:35:45','2021-09-10 02:35:45',NULL,NULL,'22586337-6429-4f3b-8f9d-c035ab50fa15'),(45143,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:35:45','2021-09-10 02:35:45',NULL,NULL,'fd23cf78-56db-4bb0-856b-a7e30dab4108'),(45144,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:35:45','2021-09-10 02:35:45',NULL,NULL,'f59785ef-0fa1-4044-927a-d3b79c747700'),(45145,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:35:45','2021-09-10 02:35:45',NULL,NULL,'2768d960-c56d-40a4-babc-60539d08f4ef'),(45152,44879,NULL,34462,50,'craft\\elements\\Entry',1,0,'2021-09-10 02:36:18','2021-09-10 02:36:19',NULL,NULL,'99f28e98-64e7-4a1d-962f-87e4b4e458c8'),(45153,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:36:19','2021-09-10 02:36:19',NULL,NULL,'68fe31d9-39d4-4bc2-a60b-cb4a07740750'),(45154,NULL,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:36:19','2021-09-10 02:36:19',NULL,NULL,'ac9b0b3a-6d05-4341-9bc1-ca645fdddd2a'),(45155,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:36:19','2021-09-10 02:36:19',NULL,NULL,'f725c764-cb0c-423f-8175-8efc7db137fc'),(45156,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:36:19','2021-09-10 02:36:19',NULL,NULL,'e5fa5b0e-8ab3-466c-ad80-e0e0b9690cf7'),(45157,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:36:19','2021-09-10 02:36:19',NULL,NULL,'28ef8872-f267-41a2-b343-9097273715a5'),(45164,44879,NULL,34463,50,'craft\\elements\\Entry',1,0,'2021-09-10 02:36:38','2021-09-10 02:36:39',NULL,NULL,'434a8e01-d4f6-4bdc-be09-0d04d98d7309'),(45165,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:36:39','2021-09-10 02:36:39',NULL,NULL,'e6c38ab0-ceed-4a75-9cb9-0aa94f27a0bc'),(45166,NULL,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:36:39','2021-09-10 02:36:39',NULL,NULL,'6035b3bc-544a-42ec-a715-17520a889f99'),(45167,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:36:39','2021-09-10 02:36:39',NULL,NULL,'43578670-a67a-4f0b-b5d0-5e970758438d'),(45168,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:36:39','2021-09-10 02:36:39',NULL,NULL,'90a6f6bd-d405-4bf2-a94f-ef514bedfeb7'),(45169,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 02:36:39','2021-09-10 02:36:39',NULL,NULL,'c5800c2e-7456-46ac-baa6-9c2bc0d2eae4'),(45176,44879,NULL,34464,50,'craft\\elements\\Entry',1,0,'2021-09-10 03:08:20','2021-09-10 03:08:20',NULL,NULL,'dd40254e-215d-4196-b6b6-06c37797e8dc'),(45177,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 03:08:20','2021-09-10 03:08:20',NULL,NULL,'af2e0048-f5c1-4c53-8e3a-479320418fb6'),(45178,NULL,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 03:08:21','2021-09-10 03:08:21',NULL,NULL,'1596f5ca-19ed-436e-926e-629498420aeb'),(45179,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 03:08:21','2021-09-10 03:08:21',NULL,NULL,'ff5a697b-979b-4235-97db-94f41493c2d9'),(45180,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 03:08:21','2021-09-10 03:08:21',NULL,NULL,'74c5e9fd-f53b-4fc1-a1e9-81304b2396a1'),(45181,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 03:08:21','2021-09-10 03:08:21',NULL,NULL,'0e925b95-a00f-4cd1-a467-f5a8883a393d'),(45188,44879,NULL,34465,50,'craft\\elements\\Entry',1,0,'2021-09-10 03:10:52','2021-09-10 03:10:52',NULL,NULL,'e961977b-9f73-452c-8196-5957de30989c'),(45189,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 03:10:52','2021-09-10 03:10:52',NULL,NULL,'79583ccf-235c-4a69-931d-ce4b27915f4d'),(45190,NULL,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 03:10:53','2021-09-10 03:10:53',NULL,NULL,'64f11f4b-61c4-41dd-9a60-087a4932843a'),(45191,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 03:10:53','2021-09-10 03:10:53',NULL,NULL,'e67db075-da6b-40fa-a0d0-41c8131821df'),(45192,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 03:10:53','2021-09-10 03:10:53',NULL,NULL,'18b34a11-9fd1-4cbc-8767-0b01034f1d92'),(45193,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 03:10:53','2021-09-10 03:10:53',NULL,NULL,'5487a8cb-4d0e-4300-a130-d946f75c0f9a'),(45200,44879,NULL,34466,50,'craft\\elements\\Entry',1,0,'2021-09-10 03:11:42','2021-09-10 03:11:43',NULL,NULL,'42da4bc1-8bbf-429e-a96a-bb785b4c9f62'),(45201,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 03:11:43','2021-09-10 03:11:43',NULL,NULL,'4729c88f-2566-40b9-9cd2-7b4b56cffb83'),(45202,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 03:11:43','2021-09-10 03:11:43',NULL,NULL,'13f2cf60-631c-442a-9afa-99ff0ac3d2c4'),(45203,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 03:11:43','2021-09-10 03:11:43',NULL,NULL,'c89d39c0-caab-4d91-b838-9d901225ba78'),(45204,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 03:11:43','2021-09-10 03:11:43',NULL,NULL,'8ebc0259-fc4a-4f13-9c52-e26aa4df4998'),(45205,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-10 03:12:08','2021-10-05 06:29:51',NULL,NULL,'a30af2c7-0a49-40c2-b90e-060c8261f306'),(45207,38121,NULL,34467,6,'craft\\elements\\Entry',1,0,'2021-09-10 03:14:48','2021-09-10 03:14:48',NULL,NULL,'5e450f01-b70b-40ff-b6aa-3279aefaa2ab'),(45209,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-10 03:19:13','2021-10-05 06:29:25',NULL,NULL,'bbaef390-a932-4a8e-acca-e7e254f90814'),(45210,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-10 03:19:25','2021-10-05 06:28:58',NULL,NULL,'eae2003f-98a4-486a-8293-87ad95e34824'),(45211,20195,NULL,34468,4,'craft\\elements\\Entry',1,0,'2021-09-10 03:57:09','2021-09-10 03:57:09',NULL,NULL,'8f4bba8e-cfac-4dcb-b9ed-0731214ae016'),(45212,20195,NULL,34469,4,'craft\\elements\\Entry',1,0,'2021-09-10 03:57:31','2021-09-10 03:57:31',NULL,NULL,'c6c599a2-139a-488b-891c-bf9062ddc662'),(45213,44987,NULL,34470,6,'craft\\elements\\Entry',1,0,'2021-09-10 05:09:45','2021-09-10 05:09:45',NULL,NULL,'15aca9a7-2e3f-404e-a294-efd3004c9059'),(45214,NULL,NULL,NULL,6,'craft\\elements\\Entry',0,0,'2021-09-10 05:19:18','2021-09-27 02:03:03',NULL,NULL,'3d775c8e-68ce-47b0-8042-81929a60b919'),(45215,45214,NULL,34471,6,'craft\\elements\\Entry',1,0,'2021-09-10 05:27:40','2021-09-10 05:27:40',NULL,NULL,'4006f234-2216-4b84-be41-739303b6a0f5'),(45216,NULL,NULL,NULL,6,'craft\\elements\\Entry',0,0,'2021-09-10 05:34:09','2021-09-27 02:36:56',NULL,NULL,'6a16e8b6-ee19-40c6-8eb4-c12ab31cbe29'),(45217,45216,NULL,34472,6,'craft\\elements\\Entry',1,0,'2021-09-10 05:46:16','2021-09-10 05:46:16',NULL,NULL,'bcde2e9a-ec7f-404d-abfd-9c716788075f'),(45218,NULL,NULL,NULL,6,'craft\\elements\\Entry',0,0,'2021-09-10 05:50:12','2021-09-27 02:39:13',NULL,NULL,'8a033ded-0917-4264-8614-f09125ddb7f3'),(45219,45218,NULL,34473,6,'craft\\elements\\Entry',1,0,'2021-09-10 06:01:58','2021-09-10 06:01:58',NULL,NULL,'2ac438d8-d9d3-4882-9156-8a12329cacca'),(45220,NULL,NULL,NULL,6,'craft\\elements\\Entry',0,0,'2021-09-10 06:02:22','2021-09-27 02:02:06',NULL,NULL,'fac0bf79-9647-45fe-b0a9-9d4ea92c4723'),(45221,45220,NULL,34474,6,'craft\\elements\\Entry',1,0,'2021-09-10 06:04:48','2021-09-10 06:04:48',NULL,NULL,'577deef4-b1bb-47b3-ad89-3ac81e43da55'),(45222,NULL,NULL,NULL,6,'craft\\elements\\Entry',0,0,'2021-09-10 06:06:32','2021-10-14 05:48:03',NULL,NULL,'2330edea-9a3f-458c-800b-9400e6779aaf'),(45223,NULL,NULL,NULL,5,'craft\\elements\\User',1,0,'2021-09-10 06:08:06','2021-09-13 04:04:35',NULL,NULL,'30b603fc-808f-438c-8005-2ef4c76ac532'),(45224,NULL,NULL,NULL,22,'craft\\elements\\Category',1,0,'2021-09-10 06:08:44','2021-09-10 06:08:44',NULL,NULL,'77d79da3-e2b2-4d00-85fa-283639163dc2'),(45225,NULL,NULL,NULL,5,'craft\\elements\\User',1,0,'2021-09-10 06:08:52','2021-09-13 04:06:37',NULL,NULL,'73b26f2d-ccc4-49b9-81bf-d01ad65ed819'),(45226,NULL,NULL,NULL,5,'craft\\elements\\User',1,0,'2021-09-10 06:09:41','2021-09-13 04:07:42',NULL,NULL,'58bf7bcb-e3a7-4fa9-b72c-c5828329269f'),(45227,45222,NULL,34475,6,'craft\\elements\\Entry',1,0,'2021-09-10 06:13:14','2021-09-10 06:13:14',NULL,NULL,'1e2af0b3-2e5c-48d9-9599-bef9df066909'),(45229,18126,NULL,34476,6,'craft\\elements\\Entry',0,0,'2021-09-10 07:00:56','2021-09-10 07:00:56',NULL,NULL,'0a543f7a-0ce0-4caf-93c5-45fd1302c91d'),(45230,18126,NULL,34477,6,'craft\\elements\\Entry',1,0,'2021-09-10 07:01:05','2021-09-10 07:01:05',NULL,NULL,'62a8ea16-76a5-4f20-ba4a-e689786c2e6c'),(45232,40504,NULL,34478,6,'craft\\elements\\Entry',1,0,'2021-09-10 07:10:55','2021-09-10 07:10:55',NULL,NULL,'1324c7dc-e28e-4cf9-8247-001336c310b8'),(45234,22210,NULL,34479,6,'craft\\elements\\Entry',1,0,'2021-09-10 07:11:43','2021-09-10 07:11:44',NULL,NULL,'82b02ffe-7954-4f23-95f1-23f955c2cf64'),(45249,NULL,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 07:17:02','2021-11-09 01:32:14',NULL,NULL,'b949a600-cf2c-49ef-8301-4701aa1ed059'),(45250,44879,NULL,34480,50,'craft\\elements\\Entry',1,0,'2021-09-10 07:17:02','2021-09-10 07:17:03',NULL,NULL,'7eaa8da5-32f9-4d9a-a553-4d1afb2c10ce'),(45251,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 07:17:03','2021-09-10 07:17:03',NULL,NULL,'3ba0ecd7-9d6c-45f6-ad95-4f72fb0634e9'),(45252,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 07:17:03','2021-09-10 07:17:03',NULL,NULL,'42e5a5db-df17-4e15-a8ee-ac46645f4a7e'),(45253,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 07:17:03','2021-09-10 07:17:03',NULL,NULL,'31dab83b-6d5a-4698-99e9-900aa373b580'),(45254,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 07:17:03','2021-09-10 07:17:03',NULL,NULL,'71bc48a0-4863-4060-81e8-5db72f3de8c4'),(45255,45249,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 07:17:03','2021-09-10 07:17:03',NULL,NULL,'ca6b6aec-5723-4b0d-a4b1-5728fc083731'),(45262,44879,NULL,34481,50,'craft\\elements\\Entry',1,0,'2021-09-10 07:17:16','2021-09-10 07:17:17',NULL,NULL,'2f1fea94-533c-4357-87b9-dc306672d257'),(45263,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 07:17:17','2021-09-10 07:17:17',NULL,NULL,'59505982-db3b-417a-9c16-4f3fc8198022'),(45264,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 07:17:17','2021-09-10 07:17:17',NULL,NULL,'19f9db22-45dc-454e-a6e0-dc77ed028422'),(45265,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 07:17:17','2021-09-10 07:17:17',NULL,NULL,'1aa2b608-d78e-4784-910c-b1196640acb0'),(45266,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 07:17:17','2021-09-10 07:17:17',NULL,NULL,'00c79821-4ca9-4bc5-a7c5-f77cbb4054ec'),(45267,45249,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 07:17:17','2021-09-10 07:17:17',NULL,NULL,'139b16ea-b45f-43f4-ac30-e7b495eb2c19'),(45274,44879,NULL,34482,50,'craft\\elements\\Entry',1,0,'2021-09-10 07:18:35','2021-09-10 07:18:35',NULL,NULL,'05787540-8712-42fa-9869-03fd4a5a8c0b'),(45275,45249,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 07:18:35','2021-09-10 07:18:35',NULL,NULL,'9c3b4cdb-c8ab-40f6-b3ba-9fb395a13cfe'),(45276,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 07:18:35','2021-09-10 07:18:35',NULL,NULL,'5e6196b2-374f-43f7-9372-c7b01b57693d'),(45277,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 07:18:35','2021-09-10 07:18:35',NULL,NULL,'7b9c6bc7-c2c1-4a62-834e-ceee0e808437'),(45278,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 07:18:35','2021-09-10 07:18:35',NULL,NULL,'5a3410fe-c180-4c02-bc77-ce020032ba23'),(45279,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 07:18:35','2021-09-10 07:18:35',NULL,NULL,'64d0e1aa-4b40-4ed9-bea5-a75e473cf413'),(45286,44879,NULL,34483,50,'craft\\elements\\Entry',1,0,'2021-09-10 07:18:53','2021-09-10 07:18:53',NULL,NULL,'ff977894-b31b-4389-91fb-9d8019a8e339'),(45287,45249,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 07:18:53','2021-09-10 07:18:53',NULL,NULL,'24627b76-89b7-44a0-b442-a4d8dd20f7bb'),(45288,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 07:18:53','2021-09-10 07:18:53',NULL,NULL,'f66d3111-5fdc-4f8c-a5a0-5fec69d2e42c'),(45289,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 07:18:53','2021-09-10 07:18:53',NULL,NULL,'3aafe4d5-1d65-4df5-ae4d-71b34c76d8bc'),(45290,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 07:18:53','2021-09-10 07:18:53',NULL,NULL,'68dba14e-83af-42aa-ab50-9cd8151f9b1a'),(45291,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-10 07:18:53','2021-09-10 07:18:53',NULL,NULL,'09b86077-59f2-448b-a685-02dff8585145'),(45293,20379,NULL,34484,23,'craft\\elements\\Entry',1,0,'2021-09-10 07:19:20','2021-09-10 07:19:20',NULL,NULL,'98ae7394-ca39-4b67-bf0e-06aa1f12931a'),(45295,20379,NULL,34485,23,'craft\\elements\\Entry',1,0,'2021-09-10 07:20:39','2021-09-10 07:20:39',NULL,NULL,'2d2712fc-bdd5-478e-8dce-229fa331ec82'),(45297,20379,NULL,34486,23,'craft\\elements\\Entry',1,0,'2021-09-10 07:22:29','2021-09-10 07:22:30',NULL,NULL,'3d23007d-b83c-4a69-aa23-7b0c8dada37d'),(45298,NULL,NULL,NULL,4,'craft\\elements\\Entry',1,0,'2021-09-13 05:02:27','2022-02-08 23:32:11',NULL,NULL,'c17c3a6a-a57a-418e-b2f3-4a14275de04b'),(45309,44879,NULL,34491,50,'craft\\elements\\Entry',1,0,'2021-09-13 22:24:13','2021-09-13 22:24:13',NULL,NULL,'0d56c061-1be1-4a7e-8df1-bf744f964083'),(45310,45249,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-13 22:24:13','2021-09-13 22:24:13',NULL,NULL,'5a7c82fb-2173-46c4-bc9c-6cfaddfb50c4'),(45311,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-13 22:24:13','2021-09-13 22:24:13',NULL,NULL,'60c649e4-e3f1-4850-a90e-62e8794e67bb'),(45312,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-13 22:24:13','2021-09-13 22:24:13',NULL,NULL,'33702735-0566-48ff-9c8a-918faa3ea5a9'),(45313,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-13 22:24:13','2021-09-13 22:24:13',NULL,NULL,'a626c298-4cdf-4df9-929e-d712deb2fd5b'),(45314,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-09-13 22:24:13','2021-09-13 22:24:13',NULL,NULL,'154b96b0-29c9-4f43-b87c-c801f88dedda'),(45316,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-14 01:19:42','2021-10-05 06:28:28',NULL,NULL,'3d752327-952b-452d-a4c5-6e676ed616f9'),(45317,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-14 01:20:25','2021-10-05 06:28:05',NULL,NULL,'3739064d-f2b3-4a6f-ace6-5f6555c8080a'),(45318,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-14 01:21:11','2021-10-05 06:27:40',NULL,NULL,'5ee19764-9a77-4ee4-91cb-0a0b93c42aa7'),(45319,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-14 01:22:01','2021-10-05 06:27:04',NULL,NULL,'dd408a53-0ae9-484b-9526-4112998c4e12'),(45320,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-14 01:22:14','2021-10-05 06:26:20',NULL,NULL,'7fa57b30-9a7f-4dc9-aa9e-8d9deae4c3cb'),(45321,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-14 01:22:27','2021-10-05 06:25:57',NULL,NULL,'0e6b55b1-80cb-4b43-beeb-789db1f6465e'),(45322,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-14 01:22:57','2021-10-05 06:25:35',NULL,NULL,'ca8b782f-1e1d-4ada-a8e7-fd1c760e0b36'),(45323,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-14 01:24:12','2021-10-05 06:25:12',NULL,NULL,'27018b7f-b6e4-4d65-8908-5fb9c8e8efa6'),(45324,18126,NULL,34492,6,'craft\\elements\\Entry',1,0,'2021-09-14 01:25:33','2021-09-14 01:25:34',NULL,NULL,'d087ca68-3cc2-4f35-9ffa-8af850f56a31'),(45325,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-14 01:27:25','2021-10-05 06:24:11',NULL,NULL,'b5352034-cf9d-4c3c-ab3c-313c16be8e44'),(45326,18164,NULL,34493,6,'craft\\elements\\Entry',1,0,'2021-09-14 01:27:58','2021-09-14 01:27:58',NULL,NULL,'01785f1a-c66d-4be1-b335-09d0fce88994'),(45327,40504,NULL,34494,6,'craft\\elements\\Entry',1,0,'2021-09-14 01:28:52','2021-09-14 01:28:52',NULL,NULL,'b3c450fc-894d-43ec-9fd4-c6d08040a5d2'),(45329,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-14 03:38:32','2021-10-05 06:23:29',NULL,NULL,'82bef664-4a60-41ee-b698-ba36ef93d713'),(45330,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-14 03:40:36','2021-10-05 06:22:20',NULL,NULL,'fad330b5-b2a9-45f9-b2a8-5549f79bf15f'),(45331,40506,NULL,34495,6,'craft\\elements\\Entry',1,0,'2021-09-14 04:03:09','2021-09-14 04:03:09',NULL,NULL,'d112f8d8-bdfb-4809-b839-961935dfd438'),(45333,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-14 04:03:59','2021-10-05 06:22:38',NULL,NULL,'10f63170-0bd4-4ab6-aeec-18b135667deb'),(45334,40506,NULL,34496,6,'craft\\elements\\Entry',1,0,'2021-09-14 04:09:14','2021-09-14 04:09:15',NULL,NULL,'c586e5c9-9b8a-439a-ad6e-8cfa0027d13e'),(45336,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-14 04:15:43','2021-10-05 06:21:36',NULL,NULL,'0445192d-fb87-4408-99ae-7a26e2ee3737'),(45338,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-14 04:16:24','2021-10-05 06:21:08',NULL,NULL,'76c8b44d-6150-4ca1-a4d3-f1a380ab6681'),(45339,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-14 04:17:10','2021-10-05 06:20:27',NULL,NULL,'68b25d8a-d964-4e08-a843-ed9c0c279391'),(45340,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-14 05:34:27','2021-10-05 06:19:52',NULL,NULL,'c2fac9af-5d5b-4283-8ba1-ab78e877d7f9'),(45342,44837,NULL,34499,6,'craft\\elements\\Entry',1,0,'2021-09-14 07:26:29','2021-09-14 07:26:29',NULL,NULL,'537d60f7-b36d-49e7-b0eb-50fc9b8ad424'),(45346,NULL,NULL,NULL,4,'craft\\elements\\Entry',1,0,'2021-09-15 06:39:59','2021-09-28 09:48:01',NULL,NULL,'dd939832-d403-4ac1-b347-f26a3262998f'),(47633,44837,NULL,36740,6,'craft\\elements\\Entry',1,0,'2021-09-16 01:31:06','2021-09-16 01:31:06',NULL,NULL,'5872b35b-54d1-4225-b772-cb7bd4fb2cc5'),(47639,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-16 23:36:05','2021-10-05 06:18:55',NULL,NULL,'1c25155f-a485-4066-871b-d9655316f42f'),(47640,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-16 23:37:03','2021-10-05 06:18:24',NULL,NULL,'af6360d3-11fa-4e4c-9365-c61dde752294'),(47641,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-16 23:43:14','2021-10-05 06:18:00',NULL,NULL,'daaca1c4-adb9-4505-8fbd-55bab2ccae96'),(47642,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-16 23:44:24','2021-10-05 06:17:10',NULL,NULL,'512a6566-7b2a-49b1-9a27-57c6b3414230'),(47643,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-16 23:44:46','2021-10-05 06:16:14',NULL,NULL,'218eb0fd-8196-471e-80b1-50a236458fd3'),(47644,16571,NULL,36745,6,'craft\\elements\\Entry',1,0,'2021-09-16 23:47:18','2021-09-16 23:47:19',NULL,NULL,'a4c9fd86-0252-4cf7-9896-7c78a3a5ce92'),(47646,16571,NULL,36746,6,'craft\\elements\\Entry',1,0,'2021-09-16 23:51:51','2021-09-16 23:51:52',NULL,NULL,'dfac125b-52b5-471d-bc1a-0b3337382383'),(47648,40506,NULL,36747,6,'craft\\elements\\Entry',1,0,'2021-09-17 01:17:19','2021-09-17 01:17:20',NULL,NULL,'229a3c26-e07b-4d22-91a8-3ad6e96a6a75'),(47650,40506,NULL,36748,6,'craft\\elements\\Entry',1,0,'2021-09-17 02:22:50','2021-09-17 02:22:50',NULL,NULL,'48d366dc-b4f0-47b2-9fd7-0b1511d54419'),(47652,18164,NULL,36749,6,'craft\\elements\\Entry',1,0,'2021-09-17 04:07:32','2021-09-17 04:07:32',NULL,NULL,'ba72c219-3e59-46bb-bd40-67dae592d4cb'),(47654,18176,NULL,36750,6,'craft\\elements\\Entry',1,0,'2021-09-17 04:13:34','2021-09-17 04:13:34',NULL,NULL,'16f9bcbd-5dae-4a1b-a053-9922e190daeb'),(47656,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-17 05:37:46','2021-10-05 06:15:31',NULL,NULL,'633f3989-1410-4ef1-8d2c-dac94ff50fd3'),(47657,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-17 05:39:04','2021-10-05 06:14:55',NULL,NULL,'e04b5c85-4bcb-4fd7-83bb-27f6d5465e91'),(47658,18176,NULL,36751,6,'craft\\elements\\Entry',1,0,'2021-09-17 05:39:46','2021-09-17 05:39:46',NULL,NULL,'67eae63b-93e1-4dd2-89ac-3d3c209c2eb7'),(47660,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-17 05:57:43','2022-06-28 01:10:20',NULL,NULL,'e02a5d3f-c3aa-48da-b461-bcbde3ffffdb'),(47661,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-17 05:57:56','2022-06-28 01:10:27',NULL,NULL,'642ac0f9-2e27-453f-92ac-6b44e9ee0283'),(47662,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-17 05:59:15','2021-10-05 06:13:29',NULL,NULL,'b3b0a8dd-1a2d-46c0-ab83-a1d8efd2b56d'),(47663,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-17 06:00:29','2021-10-05 06:13:00',NULL,NULL,'16d08cac-6f6c-4f39-afc7-2ae3039784ea'),(47664,44845,NULL,36752,6,'craft\\elements\\Entry',1,0,'2021-09-17 06:01:05','2021-09-17 06:01:05',NULL,NULL,'e85cf62c-694d-41f3-aa24-3fc12dc629f5'),(47665,40506,NULL,36753,6,'craft\\elements\\Entry',1,0,'2021-09-17 06:01:30','2021-09-17 06:01:30',NULL,NULL,'bdbbbce9-eca3-49a7-8c81-8b64420034c9'),(47667,18126,NULL,36754,6,'craft\\elements\\Entry',1,0,'2021-09-17 06:08:03','2021-09-17 06:08:04',NULL,NULL,'2b1fcd46-94a0-428a-a933-f17cb8efa738'),(47669,16828,NULL,36755,6,'craft\\elements\\Entry',1,0,'2021-09-17 06:11:08','2021-09-17 06:11:09',NULL,NULL,'59b24763-4e48-438c-b63b-dca0b7612fd2'),(47671,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-17 06:24:55','2021-10-05 06:12:21',NULL,NULL,'b3987f3a-83c5-4477-9d95-d84079616ce1'),(47672,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-17 06:24:57','2021-10-05 06:12:00',NULL,NULL,'f345f870-f546-4122-a88f-e584456d8036'),(47673,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-17 06:24:58','2021-10-05 06:11:40',NULL,NULL,'20958d6f-601e-4e40-9f2a-b8cd032edb13'),(47674,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-17 06:25:00','2021-10-05 06:11:14',NULL,NULL,'56a84866-56f5-41b5-91fc-5f53324582d1'),(47675,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-17 06:25:02','2021-10-05 06:10:52',NULL,NULL,'cb937b89-059c-4016-9201-b14afffda2c2'),(47676,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-17 06:25:04','2021-10-05 06:10:25',NULL,NULL,'398cb5de-6275-4ca3-a119-4754fc773078'),(47677,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-17 06:25:08','2021-10-05 06:09:04',NULL,NULL,'d4642db4-344a-40bd-a5dd-93316a090e10'),(47678,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-17 06:25:10','2021-10-05 06:09:16',NULL,NULL,'0bd177f2-b29d-4dba-b6e3-f63a314b1f38'),(47679,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-17 06:25:13','2021-10-05 05:28:07',NULL,NULL,'b2ff9cd8-1da8-4b7e-9cec-628922cd6e4c'),(47680,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-17 06:25:16','2021-10-05 05:27:16',NULL,NULL,'dfbdcbc0-fb6e-4309-8cea-037b2b1ddf2f'),(47681,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-17 06:25:18','2021-10-05 04:30:07',NULL,NULL,'93536672-13b0-42f7-b524-b2d6b5ef58f0'),(47682,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-17 06:25:20','2021-10-05 04:29:33',NULL,NULL,'a9c75887-d504-4242-8ae8-51d517dca9d6'),(47683,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-17 06:25:21','2021-10-05 04:28:44',NULL,NULL,'99e9a9e5-cf22-47e7-93f2-8306edbb2380'),(47684,18156,NULL,36756,6,'craft\\elements\\Entry',1,0,'2021-09-17 06:28:18','2021-09-17 06:28:19',NULL,NULL,'3420db1c-9c81-4a66-b898-f38ecaddd7c0'),(47686,16828,NULL,36757,6,'craft\\elements\\Entry',1,0,'2021-09-17 07:03:48','2021-09-17 07:03:48',NULL,NULL,'f840690e-2d1c-438a-913f-9ee57f10ffc1'),(47687,30427,NULL,36758,6,'craft\\elements\\Entry',1,0,'2021-09-17 07:23:17','2021-09-17 07:23:17',NULL,NULL,'cf169198-67c8-4a5f-b37b-9fd92acd4f78'),(47689,18142,NULL,36759,6,'craft\\elements\\Entry',1,0,'2021-09-17 07:24:50','2021-09-17 07:24:50',NULL,NULL,'86c975be-7062-4621-bba1-70aa3bb7f470'),(47691,18109,NULL,36760,6,'craft\\elements\\Entry',1,0,'2021-09-17 07:36:08','2021-09-17 07:36:08',NULL,NULL,'ae143eee-b65b-455e-9227-e9f1c43f0620'),(47692,45222,NULL,36761,6,'craft\\elements\\Entry',1,0,'2021-09-20 02:12:29','2021-09-20 02:12:29',NULL,NULL,'9eee25f9-9da9-4c03-9cac-efe69fae4c0e'),(47693,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 00:59:04','2022-06-27 02:57:01',NULL,NULL,'f7f64ce1-5e2c-4255-8c31-f9c36d9f8493'),(47695,30427,NULL,36762,6,'craft\\elements\\Entry',1,0,'2021-09-21 01:01:46','2021-09-21 01:01:47',NULL,NULL,'d1afd020-f1c5-4147-bdec-2b5836c02657'),(47697,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 01:43:34','2021-10-19 11:30:30',NULL,NULL,'d48bfc33-1a07-4df8-a7b0-dd7bd0248131'),(47698,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 01:43:51','2021-10-20 03:34:21',NULL,NULL,'296e54cc-4296-45ac-b2c7-c27b183070bb'),(47699,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 01:44:07','2021-10-19 11:26:07',NULL,NULL,'bac50c1a-da84-4511-8f09-0a82420c48ff'),(47700,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 01:44:24','2021-10-20 03:36:12',NULL,NULL,'079d429f-df2f-4192-9a8f-0ed441d394cb'),(47701,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 01:44:47','2021-10-05 04:25:45',NULL,NULL,'8d625f25-740e-4b64-8589-0a79dee55fdc'),(47702,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 01:45:26','2021-10-05 04:25:12',NULL,NULL,'74726111-d5df-4f59-b5b2-9087c96c63d1'),(47703,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 01:47:10','2021-10-05 04:24:22',NULL,NULL,'4f0fe3db-a1c4-468c-939d-557b67174f2b'),(47704,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 03:00:31','2021-10-05 04:23:41',NULL,NULL,'52a114d9-d66f-48f1-96af-756be49b2c2d'),(47705,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 03:00:53','2021-10-05 04:22:59',NULL,NULL,'bb28f97c-9185-4ab3-b61b-4b6e6410f5e7'),(47706,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 03:01:09','2021-10-05 04:26:03',NULL,NULL,'ad2484a1-3b25-46fc-9d42-32cde038a387'),(47707,18156,NULL,36763,6,'craft\\elements\\Entry',1,0,'2021-09-21 03:03:40','2021-09-21 03:03:40',NULL,NULL,'9d05acc5-433b-426b-9554-769110936446'),(47708,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 03:05:55','2021-10-05 01:55:43',NULL,NULL,'cb3abed6-fd00-48d8-9c65-197ce1e6580a'),(47709,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 03:06:10','2021-10-05 01:50:57',NULL,NULL,'0e5fcaea-34b3-47b1-83aa-84e222af6f1b'),(47710,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 03:06:33','2021-10-05 01:50:39',NULL,NULL,'f1a41048-bac2-406a-8525-8c7145185e89'),(47712,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 03:07:07','2021-10-05 01:50:08',NULL,NULL,'16a53b5b-16bc-4b6e-a7b1-3da32af60408'),(47713,18156,NULL,36764,6,'craft\\elements\\Entry',1,0,'2021-09-21 03:07:38','2021-09-21 03:07:39',NULL,NULL,'3cdb266a-102a-42ef-8ccc-3a69baccc9ca'),(47714,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 03:08:47','2021-10-05 01:49:43',NULL,NULL,'3cf2a8f0-26c9-4f8d-a7dc-6022c6ce904d'),(47716,18156,NULL,36765,6,'craft\\elements\\Entry',1,0,'2021-09-21 03:11:03','2021-09-21 03:11:03',NULL,NULL,'7a7d43cd-766b-40b7-9f66-a8657a0bd91b'),(47718,18168,NULL,36766,6,'craft\\elements\\Entry',1,0,'2021-09-21 03:13:10','2021-09-21 03:13:10',NULL,NULL,'92d6975d-050b-4ad9-8e96-c7edf08cfd9f'),(47719,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 03:20:30','2021-10-05 01:49:05',NULL,NULL,'8041af31-2d58-4726-881f-15bd8d9bcd44'),(47721,22210,NULL,36767,6,'craft\\elements\\Entry',1,0,'2021-09-21 03:20:52','2021-09-21 03:20:52',NULL,NULL,'0b6c9ac4-b907-483a-882c-82b5fac3dfc6'),(47723,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 03:39:42','2021-10-05 01:48:48',NULL,NULL,'6b89c4fc-562c-45ed-a760-6ddab11e25c8'),(47724,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 03:39:53','2021-10-05 01:48:21',NULL,NULL,'1e7ea1ad-45ea-43dc-94cf-8bab0726528e'),(47725,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 03:40:28','2021-10-05 01:47:44',NULL,NULL,'2bf0ce25-fabf-4794-9b36-dc318761ab62'),(47726,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 03:44:15','2021-10-05 01:46:51',NULL,NULL,'2f37b707-c7dd-4b38-b718-a263c3d9c8f0'),(47727,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 03:45:07','2021-10-05 01:46:29',NULL,NULL,'ded913f3-b002-4d3d-b334-77d03fd95d69'),(47728,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 03:45:18','2021-10-05 01:45:25',NULL,NULL,'2a75aa40-901f-4486-b334-6c8d4d9a8e77'),(47729,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 03:45:34','2021-10-05 01:43:46',NULL,NULL,'43b0ad27-19ad-4b31-a2c7-c320a483e15b'),(47730,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 03:45:49','2021-10-05 01:43:02',NULL,NULL,'a689d3c4-ea1f-4da9-a97b-39aeb1968e7f'),(47731,18109,NULL,36768,6,'craft\\elements\\Entry',1,0,'2021-09-21 03:51:46','2021-09-21 03:51:47',NULL,NULL,'b557b132-c136-4d21-ab62-8d98aa5f8c15'),(47733,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 03:54:12','2021-10-05 01:42:39',NULL,NULL,'24f6a9cc-3b8f-4480-be96-b0d58c4cbdc0'),(47734,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 03:54:47','2021-10-05 01:22:55',NULL,NULL,'0b4252ce-6a1c-4831-bf47-53d38414f944'),(47735,18109,NULL,36769,6,'craft\\elements\\Entry',1,0,'2021-09-21 03:55:59','2021-09-21 03:56:00',NULL,NULL,'cd6191bb-0472-4cd9-b56c-cd1ce0d33dff'),(47736,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 04:41:57','2022-06-27 02:57:13',NULL,NULL,'a396c5ab-5758-495b-abb5-fc40013f57d6'),(47738,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 04:47:08','2022-06-28 01:09:32',NULL,NULL,'2127df88-9363-4e89-9930-248c202c46d0'),(47739,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 04:48:14','2022-06-28 01:10:11',NULL,NULL,'5ef247bf-019d-49ca-932f-49fc8767fdbb'),(47740,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 04:48:39','2022-06-28 01:09:53',NULL,NULL,'cad884fa-9bd8-4f59-a830-c1a8799a61e9'),(47741,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 04:48:57','2022-06-28 01:09:41',NULL,NULL,'31d95965-c9c8-4dd1-9784-88f89038a53e'),(47742,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 04:49:20','2022-06-28 01:10:04',NULL,NULL,'8d144092-11dd-4496-8883-3c68e8eb6ee1'),(47743,38121,NULL,36770,6,'craft\\elements\\Entry',1,0,'2021-09-21 04:50:15','2021-09-21 04:50:15',NULL,NULL,'2a357c51-07b3-4fc2-bbf0-64ab1c2e6410'),(47745,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 05:08:29','2022-06-27 01:39:48',NULL,NULL,'d21c7b85-0eb5-4525-a2b1-fbd143c8e26b'),(47746,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 05:09:02','2022-06-27 01:39:58',NULL,NULL,'260166b2-6953-4648-9015-81ba2154a6e5'),(47747,44841,NULL,36771,6,'craft\\elements\\Entry',1,0,'2021-09-21 05:10:16','2021-09-21 05:10:16',NULL,NULL,'7404f927-c79e-42cb-b218-2c4bdc9577e5'),(47749,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 05:38:54','2022-06-27 01:40:07',NULL,NULL,'c12b937a-1b95-40ef-9ba8-9dc7f76aac9f'),(47750,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 05:39:22','2022-06-27 01:40:13',NULL,NULL,'39b78334-a766-4728-b0e9-8c785dca1a44'),(47751,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 05:39:41','2022-06-27 01:40:18',NULL,NULL,'a311d23e-9e87-4bd0-91f1-c1f3baf872e9'),(47752,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 05:41:25','2022-06-27 01:40:24',NULL,NULL,'80b69acd-0fd3-4f92-8f22-82c7289c1eaa'),(47753,44843,NULL,36772,6,'craft\\elements\\Entry',1,0,'2021-09-21 05:42:17','2021-09-21 05:42:17',NULL,NULL,'ae2f3e17-533b-4429-97dc-e2db717fa13d'),(47755,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 05:58:46','2021-10-05 01:01:29',NULL,NULL,'097a8b28-4efc-4091-8747-1ebc3f6c751f'),(47756,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 05:59:12','2021-10-05 01:00:53',NULL,NULL,'2213b3f5-453b-4ff0-bae1-1d4c248df2bc'),(47757,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 05:59:27','2021-10-05 01:00:30',NULL,NULL,'e4e46b64-efb8-4dff-aa79-34f5d5ca408a'),(47758,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 05:59:39','2021-10-05 00:59:48',NULL,NULL,'e86a44bf-592a-4454-9998-13a34fef4f58'),(47759,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 06:00:00','2021-10-05 00:59:07',NULL,NULL,'42d41a3b-62b2-4895-87b5-d2de50d5913b'),(47760,44849,NULL,36773,6,'craft\\elements\\Entry',1,0,'2021-09-21 06:01:18','2021-09-21 06:01:18',NULL,NULL,'b60d005b-3254-4a90-80c5-1dcb5451fcad'),(47761,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 06:01:51','2021-10-05 00:58:42',NULL,NULL,'a73dc3e1-5002-43ef-96e7-c9660779cd2d'),(47763,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 06:03:19','2021-10-05 00:59:33',NULL,NULL,'ae11c707-4407-4054-babe-56fa09216483'),(47764,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 06:04:35','2021-10-05 00:57:00',NULL,NULL,'be81dad6-4e60-4615-87a3-ae40c542562d'),(47765,44849,NULL,36774,6,'craft\\elements\\Entry',1,0,'2021-09-21 06:05:29','2021-09-21 06:05:29',NULL,NULL,'ecfeb02b-dcc6-4e7e-8d0d-e536ca491af4'),(47767,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 06:34:51','2021-10-05 00:54:22',NULL,NULL,'53a8e827-ac43-4c99-9179-03e69182d658'),(47768,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 06:35:04','2021-10-05 00:53:32',NULL,NULL,'f5403225-6107-4788-b2c2-0eec218105f3'),(47769,44862,NULL,36775,6,'craft\\elements\\Entry',1,0,'2021-09-21 06:36:26','2021-09-21 06:36:26',NULL,NULL,'38776839-2647-488f-9611-950dbc677dfb'),(47771,44981,NULL,36776,6,'craft\\elements\\Entry',1,0,'2021-09-21 06:39:30','2021-09-21 06:39:30',NULL,NULL,'31c5fc68-41b8-44ee-a110-ad5af343f9da'),(47773,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-21 07:03:08','2022-06-23 03:27:35',NULL,NULL,'5e9edc35-a465-4c31-9d7a-fbee2e43c581'),(47774,44981,NULL,36777,6,'craft\\elements\\Entry',1,0,'2021-09-21 07:06:57','2021-09-21 07:06:57',NULL,NULL,'81434d07-07a8-4388-a2f9-d0a2af01c837'),(47775,44981,NULL,36778,6,'craft\\elements\\Entry',1,0,'2021-09-21 07:07:48','2021-09-21 07:07:48',NULL,NULL,'ea65f6a5-1238-4885-b1bf-afdf99c115c5'),(47776,44841,NULL,36779,6,'craft\\elements\\Entry',1,0,'2021-09-21 07:28:53','2021-09-21 07:28:53',NULL,NULL,'a14c6ab6-a5dc-44cc-9753-70339317e4a1'),(47777,17623,NULL,36780,12,'craft\\elements\\Entry',1,0,'2021-09-22 00:02:04','2021-09-22 00:02:04',NULL,NULL,'efb71ace-662f-4ba5-a660-f34825d1d1c7'),(47778,17644,NULL,36781,12,'craft\\elements\\Entry',1,0,'2021-09-22 00:02:05','2021-09-22 00:02:05',NULL,NULL,'9e8021a0-cd53-45eb-bbe9-6254667a1089'),(47779,17646,NULL,36782,12,'craft\\elements\\Entry',1,0,'2021-09-22 00:02:05','2021-09-22 00:02:05',NULL,NULL,'803d2307-df46-47d9-9ba2-ebae01abbe17'),(47780,17654,NULL,36783,12,'craft\\elements\\Entry',1,0,'2021-09-22 00:02:05','2021-09-22 00:02:05',NULL,NULL,'9127fbf9-a82d-44bc-be5c-12d798eb9724'),(47781,17660,NULL,36784,12,'craft\\elements\\Entry',1,0,'2021-09-22 00:02:05','2021-09-22 00:02:05',NULL,NULL,'d7c61ab9-e89d-4fcf-827c-cdf13a237499'),(47782,17680,NULL,36785,12,'craft\\elements\\Entry',1,0,'2021-09-22 00:02:05','2021-09-22 00:02:06',NULL,NULL,'45a89d90-9c5c-48f2-9736-d279bac6e840'),(47783,17680,NULL,36786,12,'craft\\elements\\Entry',1,0,'2021-09-22 00:02:45','2021-09-22 00:02:45',NULL,NULL,'d4eaddda-3711-482f-9c9e-fde34283c636'),(47785,28040,NULL,36787,12,'craft\\elements\\Entry',1,0,'2021-09-22 00:10:22','2021-09-22 00:10:23',NULL,NULL,'ab98210c-0fd0-432a-ab03-8a82d2da883c'),(47787,17692,NULL,36788,12,'craft\\elements\\Entry',1,0,'2021-09-22 00:11:31','2021-09-22 00:11:31',NULL,NULL,'45f3509d-b7eb-45da-bd0f-d8b5c8d9b449'),(47788,17690,NULL,36789,12,'craft\\elements\\Entry',1,0,'2021-09-22 00:13:55','2021-09-22 00:13:55',NULL,NULL,'09652837-6ddb-437b-bd0d-e290100d6504'),(47789,17688,NULL,36790,12,'craft\\elements\\Entry',1,0,'2021-09-22 00:15:45','2021-09-22 00:15:45',NULL,NULL,'55642bae-58e2-4213-b2da-03d766b54c7a'),(47791,17686,NULL,36791,12,'craft\\elements\\Entry',1,0,'2021-09-22 00:21:51','2021-09-22 00:21:51',NULL,NULL,'62105589-33a4-43c4-8c3e-74aec1a28100'),(47792,17684,NULL,36792,12,'craft\\elements\\Entry',1,0,'2021-09-22 00:23:34','2021-09-22 00:23:34',NULL,NULL,'f525a9c1-356c-4892-ac63-2b5f7a074005'),(47793,17682,NULL,36793,12,'craft\\elements\\Entry',1,0,'2021-09-22 00:25:28','2021-09-22 00:25:28',NULL,NULL,'2bf79ecf-e31f-49b7-b218-b1f5d2329524'),(47795,17680,NULL,36794,12,'craft\\elements\\Entry',1,0,'2021-09-22 00:29:50','2021-09-22 00:29:50',NULL,NULL,'e2806019-dd14-40cc-a144-04c3d33a693e'),(47796,17678,NULL,36795,12,'craft\\elements\\Entry',1,0,'2021-09-22 00:35:00','2021-09-22 00:35:00',NULL,NULL,'4c3c7d21-fc47-48a9-8680-6de8ac15f6be'),(47798,17660,NULL,36796,12,'craft\\elements\\Entry',1,0,'2021-09-22 00:40:43','2021-09-22 00:40:44',NULL,NULL,'fb772df0-201c-4be7-9e92-372639127f88'),(47800,17654,NULL,36797,12,'craft\\elements\\Entry',1,0,'2021-09-22 00:49:41','2021-09-22 00:49:41',NULL,NULL,'a2ba3954-4ad5-493a-9d16-7603ddc64d12'),(47802,17646,NULL,36798,12,'craft\\elements\\Entry',1,0,'2021-09-22 01:04:24','2021-09-22 01:04:24',NULL,NULL,'cfacef39-85b6-44d6-8247-03e3bd71079e'),(47804,17644,NULL,36799,12,'craft\\elements\\Entry',1,0,'2021-09-22 01:47:15','2021-09-22 01:47:15',NULL,NULL,'07244c05-9dc3-4442-936d-bce5e19e27f3'),(47806,17623,NULL,36800,12,'craft\\elements\\Entry',1,0,'2021-09-22 01:51:12','2021-09-22 01:51:12',NULL,NULL,'cddbeaf1-1a22-4bb0-8088-d41d4b40a350'),(47808,17623,NULL,36801,12,'craft\\elements\\Entry',1,0,'2021-09-22 01:51:29','2021-09-22 01:51:29',NULL,NULL,'4a0f1ca7-71c1-41fd-8ac6-0d52f43a0e42'),(47989,18122,NULL,36980,6,'craft\\elements\\Entry',1,0,'2021-09-23 23:14:08','2021-09-23 23:14:08',NULL,NULL,'1c77aaa0-318c-49fd-bb90-8a94c5b6cb26'),(47990,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-24 01:35:37','2021-10-05 00:51:46',NULL,NULL,'b3f2c7cd-9903-421b-aab2-cf916f3d2043'),(47992,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-24 01:35:59','2021-10-05 00:51:21',NULL,NULL,'601d42e2-372e-4614-9b04-60201e3a51db'),(47993,44849,NULL,36981,6,'craft\\elements\\Entry',1,0,'2021-09-24 01:36:46','2021-09-24 01:36:46',NULL,NULL,'2da64582-d7a1-4b19-a60f-8d95e182ca62'),(47995,44862,NULL,36982,6,'craft\\elements\\Entry',1,0,'2021-09-24 01:38:36','2021-09-24 01:38:36',NULL,NULL,'91fc1114-89e9-4b5f-977e-65d587cde351'),(47997,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-24 02:00:16','2022-06-23 03:27:28',NULL,NULL,'7873904c-4c9d-4ed0-ace4-1a80e97ec117'),(47998,44981,NULL,36983,6,'craft\\elements\\Entry',1,0,'2021-09-24 02:01:06','2021-09-24 02:01:06',NULL,NULL,'1b7ef530-f08c-4175-9799-9302236ae948'),(48003,NULL,NULL,NULL,12,'craft\\elements\\Entry',1,0,'2021-09-24 04:59:42','2022-08-08 06:56:04',NULL,NULL,'e09f7e69-e0dc-4070-9df5-c9cce96a95a0'),(48004,48003,NULL,36986,12,'craft\\elements\\Entry',1,0,'2021-09-24 04:59:42','2021-09-24 04:59:42',NULL,NULL,'bfd383ee-d4f0-49d7-9ee5-0b16f1b3cd2e'),(48006,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-24 05:00:40','2021-10-05 00:50:17',NULL,NULL,'a3b9a031-8859-418a-9ae9-04ee28b0e7dc'),(48007,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-24 05:02:07','2021-10-05 00:48:43',NULL,NULL,'5161cd39-8c72-4d1f-95ca-d4998bf3743d'),(48008,48003,NULL,36987,12,'craft\\elements\\Entry',1,0,'2021-09-24 05:09:38','2021-09-24 05:09:38',NULL,NULL,'3ebf4b20-c95c-4e00-9541-c0af51e2b0de'),(48010,48003,NULL,36988,12,'craft\\elements\\Entry',1,0,'2021-09-24 05:39:08','2021-09-24 05:39:08',NULL,NULL,'11b93dee-eab5-4784-9aef-55c1640ee09f'),(48011,NULL,NULL,NULL,12,'craft\\elements\\Entry',1,0,'2021-09-24 05:39:24','2022-11-17 00:21:53',NULL,NULL,'f143cc34-b974-4f7a-ac6f-3768c234e4ab'),(48012,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-24 05:39:47','2021-10-05 00:47:49',NULL,NULL,'ac644769-d8b6-49f5-9544-c7379a55d6ba'),(48016,45222,NULL,36991,6,'craft\\elements\\Entry',1,0,'2021-09-24 07:20:40','2021-09-24 07:20:40',NULL,NULL,'4e8fd192-0ac4-46ee-97f5-4667a101322d'),(48017,NULL,NULL,NULL,4,'craft\\elements\\Entry',1,0,'2021-09-26 23:46:30','2021-09-27 04:07:34',NULL,NULL,'29886113-45c7-4b9b-a5a8-430834dd116b'),(48131,48003,NULL,37100,12,'craft\\elements\\Entry',1,0,'2021-09-27 01:13:47','2021-09-27 01:13:47',NULL,NULL,'e9885810-9c6c-4822-8732-776f3d7e4c27'),(48134,17644,NULL,37103,12,'craft\\elements\\Entry',1,0,'2021-09-27 01:15:26','2021-09-27 01:15:26',NULL,NULL,'a6ab7241-d88b-41d6-9977-95523c25e038'),(48149,45222,NULL,37117,6,'craft\\elements\\Entry',0,0,'2021-09-27 02:01:51','2021-09-27 02:01:51',NULL,NULL,'3182ab65-9d9e-44e4-912f-0486c0acd185'),(48151,45220,NULL,37118,6,'craft\\elements\\Entry',0,0,'2021-09-27 02:02:06','2021-09-27 02:02:07',NULL,NULL,'e1ee9d87-8314-42fc-a6a4-f9ec3b82c28a'),(48153,44985,NULL,37119,6,'craft\\elements\\Entry',0,0,'2021-09-27 02:02:40','2021-09-27 02:02:40',NULL,NULL,'c7c1f3a1-6855-48dd-ac42-938b4960477a'),(48155,44983,NULL,37120,6,'craft\\elements\\Entry',0,0,'2021-09-27 02:02:53','2021-09-27 02:02:53',NULL,NULL,'600f189f-8278-4d7c-8db7-fcce2a50cc25'),(48158,45214,NULL,37122,6,'craft\\elements\\Entry',0,0,'2021-09-27 02:03:03','2021-09-27 02:03:03',NULL,NULL,'151ba2ef-7b9b-45b0-85b1-06648b318b42'),(48160,44987,NULL,37123,6,'craft\\elements\\Entry',0,0,'2021-09-27 02:03:15','2021-09-27 02:03:16',NULL,NULL,'09c46c1e-10a7-490e-a558-51768ebd14d9'),(48161,44862,NULL,37124,6,'craft\\elements\\Entry',1,0,'2021-09-27 02:03:39','2021-09-27 02:03:39',NULL,NULL,'65e96931-c93e-40a5-a798-d8c4d574b40c'),(48162,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-27 02:11:09','2021-10-05 00:47:23',NULL,NULL,'2785a64b-3984-4c28-a5d7-de9d61727e4f'),(48164,18164,NULL,37125,6,'craft\\elements\\Entry',1,0,'2021-09-27 02:11:26','2021-09-27 02:11:26',NULL,NULL,'39b8cc8a-84c4-494c-a24c-8d82a12045c8'),(48165,18164,NULL,37126,6,'craft\\elements\\Entry',1,0,'2021-09-27 02:12:23','2021-09-27 02:12:23',NULL,NULL,'5e1dd8c5-395d-47a0-9ee0-2c24106c98f6'),(48166,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-27 02:19:24','2022-06-23 03:27:39',NULL,NULL,'008f744f-524c-4fdb-a23c-5dc3e262a29c'),(48168,44981,NULL,37127,6,'craft\\elements\\Entry',1,0,'2021-09-27 02:19:38','2021-09-27 02:19:38',NULL,NULL,'42a73ba0-6ef3-4b13-8611-59f2771a3d8d'),(48171,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-27 02:36:14','2022-06-23 03:27:44',NULL,NULL,'f527dd75-ec92-4513-ba59-866e96cf4175'),(48172,44981,NULL,37129,6,'craft\\elements\\Entry',1,0,'2021-09-27 02:36:32','2021-09-27 02:36:32',NULL,NULL,'8a0e3c0e-38ff-41cf-8697-4fea47077ff8'),(48174,45216,NULL,37130,6,'craft\\elements\\Entry',0,0,'2021-09-27 02:36:56','2021-09-27 02:36:57',NULL,NULL,'b70caf17-da2a-4564-9238-e0fdb9530523'),(48176,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-27 02:38:15','2022-06-23 03:27:49',NULL,NULL,'c655acc3-8dc3-486c-bbcf-b29c8a0f2724'),(48177,44981,NULL,37131,6,'craft\\elements\\Entry',1,0,'2021-09-27 02:38:37','2021-09-27 02:38:37',NULL,NULL,'f656d03e-d24d-4fa5-acdc-d8b78c8f7f19'),(48179,45218,NULL,37132,6,'craft\\elements\\Entry',0,0,'2021-09-27 02:39:13','2021-09-27 02:39:13',NULL,NULL,'c2c13781-726f-4154-86b0-7a65ff8ea197'),(48180,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-27 02:41:57','2021-10-05 00:44:47',NULL,NULL,'d46c392e-2311-467a-b943-9272a99c1877'),(48182,44862,NULL,37133,6,'craft\\elements\\Entry',1,0,'2021-09-27 02:42:07','2021-09-27 02:42:07',NULL,NULL,'464cab8b-6ebc-40c0-ad34-eb63fa347e93'),(48184,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-27 02:45:56','2021-10-04 23:57:57',NULL,NULL,'8905f8a4-425f-4e15-9162-35ae929022b2'),(48186,44849,NULL,37135,6,'craft\\elements\\Entry',1,0,'2021-09-27 02:46:51','2021-09-27 02:46:51',NULL,NULL,'8fa8cdf4-bf30-4f44-bf62-401d60241575'),(48189,48017,NULL,37138,4,'craft\\elements\\Entry',1,0,'2021-09-27 02:54:08','2021-09-27 02:54:09',NULL,NULL,'b9d63f81-8ed9-4af8-b315-76d42c568926'),(48191,48017,NULL,37140,4,'craft\\elements\\Entry',1,0,'2021-09-27 02:54:43','2021-09-27 02:54:43',NULL,NULL,'4f1efc11-8b08-48e4-9161-f8b932c367d2'),(48194,48017,NULL,37143,4,'craft\\elements\\Entry',1,0,'2021-09-27 02:55:17','2021-09-27 02:55:17',NULL,NULL,'aa7f1be5-1789-454e-b2c4-7adc5be923b2'),(48197,48017,NULL,37146,4,'craft\\elements\\Entry',1,0,'2021-09-27 02:55:54','2021-09-27 02:55:54',NULL,NULL,'c77e2562-f9dc-4704-8724-f42b2a674317'),(48200,48017,NULL,37149,4,'craft\\elements\\Entry',1,0,'2021-09-27 02:56:29','2021-09-27 02:56:29',NULL,NULL,'f21e52dd-9dd5-4e77-8006-ad12e6da1c22'),(48221,48017,NULL,37170,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:00:11','2021-09-27 03:00:11',NULL,NULL,'95d9e0d9-00bc-4df7-8348-83a228e0b73c'),(48225,48017,NULL,37174,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:00:39','2021-09-27 03:00:39',NULL,NULL,'f11f9e63-0718-4965-bbdb-f4fe09e2bb9a'),(48229,48017,NULL,37178,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:01:09','2021-09-27 03:01:09',NULL,NULL,'4d90aacf-6496-4999-9b7e-378685c7c5ac'),(48233,48017,NULL,37182,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:01:39','2021-09-27 03:01:39',NULL,NULL,'dfacd03c-4632-48c3-8593-41d5632fdbec'),(48238,48017,NULL,37187,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:02:31','2021-09-27 03:02:31',NULL,NULL,'2c720b64-cf59-4a13-8c6a-888c2696537d'),(48241,48017,NULL,37190,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:20:16','2021-09-27 03:20:16',NULL,NULL,'efa613d8-438e-4789-86fa-58b2d4a1ad71'),(48242,48017,NULL,37191,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:20:49','2021-09-27 03:20:49',NULL,NULL,'7cf02913-72a2-418b-b33f-62d7f9fb6830'),(48243,48017,NULL,37192,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:21:12','2021-09-27 03:21:12',NULL,NULL,'ab99b869-e17a-4025-b8e7-0c504b957249'),(48244,48017,NULL,37193,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:21:36','2021-09-27 03:21:36',NULL,NULL,'91ea6911-f04d-4dfc-8709-1153f80b4a2e'),(48245,48017,NULL,37194,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:21:59','2021-09-27 03:21:59',NULL,NULL,'b635e51a-da2a-4c7a-80a8-2969c471bf8f'),(48246,48017,NULL,37195,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:22:33','2021-09-27 03:22:33',NULL,NULL,'79ac7887-6977-445d-b389-efc2fc61f802'),(48247,48017,NULL,37196,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:23:04','2021-09-27 03:23:04',NULL,NULL,'6ca33028-ec5c-431a-b878-6e6a03da7225'),(48248,48017,NULL,37197,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:23:33','2021-09-27 03:23:33',NULL,NULL,'ca16a2ef-fe7f-4b9e-b7a0-ea0f1a60027e'),(48249,48017,NULL,37198,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:24:01','2021-09-27 03:24:01',NULL,NULL,'1695e5bf-ce8f-4845-89e1-3c8ef1da7568'),(48250,48017,NULL,37199,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:24:30','2021-09-27 03:24:30',NULL,NULL,'88fb5234-55c4-4528-9c91-17106350d809'),(48251,48017,NULL,37200,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:24:59','2021-09-27 03:24:59',NULL,NULL,'17e28665-d4d5-4e4e-a1e0-c3e66b93be79'),(48252,48017,NULL,37201,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:26:30','2021-09-27 03:26:30',NULL,NULL,'1c188583-9cf7-4d5d-8ac2-f3dba6715fe9'),(48253,48017,NULL,37202,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:27:00','2021-09-27 03:27:00',NULL,NULL,'f5662711-d661-49c8-add3-05aca0114fc7'),(48255,48017,NULL,37204,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:27:36','2021-09-27 03:27:36',NULL,NULL,'eeb3030e-0cd8-47a0-a363-4917314588bc'),(48256,48017,NULL,37205,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:28:12','2021-09-27 03:28:12',NULL,NULL,'a61af7bf-c770-4e2e-bbab-331377c0a7ff'),(48257,48017,NULL,37206,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:28:49','2021-09-27 03:28:49',NULL,NULL,'4474042e-25fd-4e41-9d40-e5daf2910d3d'),(48258,48017,NULL,37207,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:29:25','2021-09-27 03:29:25',NULL,NULL,'b637a6a1-f2ce-4263-acb0-36be77cad17d'),(48259,48017,NULL,37208,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:30:03','2021-09-27 03:30:03',NULL,NULL,'c8cf58b2-aca8-48be-80fc-84646ab1ac20'),(48260,48017,NULL,37209,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:30:38','2021-09-27 03:30:38',NULL,NULL,'15e76b23-d1d6-44f3-8461-1e71a8805cdf'),(48261,48017,NULL,37210,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:31:13','2021-09-27 03:31:13',NULL,NULL,'c2e1f02b-b5e7-41ec-8948-4f802afabcda'),(48262,NULL,NULL,NULL,52,'craft\\elements\\Entry',1,0,'2021-09-27 03:32:47','2022-08-08 06:09:46',NULL,NULL,'8d76c464-06f6-4fe0-8f31-a33b34d2f03f'),(48263,48262,NULL,37211,52,'craft\\elements\\Entry',1,0,'2021-09-27 03:32:47','2021-09-27 03:32:47',NULL,NULL,'e0d026e1-f00f-4165-9e84-8ce2440506c1'),(48264,48262,NULL,37212,52,'craft\\elements\\Entry',1,0,'2021-09-27 03:34:00','2021-09-27 03:34:00',NULL,NULL,'6da115ec-c1ad-4592-9292-86078b02fbfd'),(48266,48262,NULL,37213,52,'craft\\elements\\Entry',1,0,'2021-09-27 03:36:26','2021-09-27 03:36:26',NULL,NULL,'f4d44290-e2a8-4944-a79e-9e9e2b684d75'),(48267,48262,NULL,37214,52,'craft\\elements\\Entry',1,0,'2021-09-27 03:37:35','2021-09-27 03:37:35',NULL,NULL,'d492e1e9-31ae-407a-9394-f4dbaaf6986d'),(48270,48017,NULL,37216,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:38:18','2021-09-27 03:38:18',NULL,NULL,'f322dae4-c0c9-4047-aa93-e51bd2cf9535'),(48271,48017,NULL,37217,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:38:49','2021-09-27 03:38:49',NULL,NULL,'95b40784-1094-4eac-ab39-5b844cafa7cf'),(48272,48017,NULL,37218,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:39:24','2021-09-27 03:39:24',NULL,NULL,'aacc50bb-9bd3-4f29-8b25-fd2385ab899f'),(48273,48017,NULL,37219,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:40:00','2021-09-27 03:40:00',NULL,NULL,'2a5e3c6e-aff7-4c00-a3ec-475e7ebb2557'),(48274,48017,NULL,37220,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:40:26','2021-09-27 03:40:26',NULL,NULL,'1aa6de2c-66c0-452d-bd05-575d6486bc90'),(48276,48017,NULL,37222,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:41:02','2021-09-27 03:41:02',NULL,NULL,'12654559-a654-4640-a155-d0e970d781d2'),(48279,48017,NULL,37225,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:41:38','2021-09-27 03:41:38',NULL,NULL,'632b27bb-b9f4-49e8-8a1e-92e88cf0847f'),(48281,48017,NULL,37227,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:42:13','2021-09-27 03:42:13',NULL,NULL,'c38176ef-03f6-4d02-8301-0ebeb38036bf'),(48284,48017,NULL,37230,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:42:50','2021-09-27 03:42:50',NULL,NULL,'1170ab1e-804f-4495-af1d-c7e65c70308e'),(48294,48017,NULL,37240,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:46:32','2021-09-27 03:46:32',NULL,NULL,'5f51b35c-2373-4bb3-9150-e69d368c6090'),(48299,48017,NULL,37245,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:53:03','2021-09-27 03:53:03',NULL,NULL,'8cb4805a-193b-48a7-8cb0-18371b676aed'),(48302,48017,NULL,37248,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:53:36','2021-09-27 03:53:37',NULL,NULL,'1c89465e-181a-4dfd-ad69-e90d004ddb96'),(48305,48017,NULL,37251,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:54:13','2021-09-27 03:54:13',NULL,NULL,'3ca22c82-31f3-42d3-bf58-a88db3e8e36b'),(48307,48017,NULL,37253,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:54:42','2021-09-27 03:54:42',NULL,NULL,'ae3285bc-104a-436d-9921-09f0cafb87c6'),(48310,48017,NULL,37256,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:55:16','2021-09-27 03:55:16',NULL,NULL,'5b08a441-aec8-4e27-8fcf-ca1b20ef0ead'),(48312,48017,NULL,37258,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:55:47','2021-09-27 03:55:47',NULL,NULL,'5cca3a93-a2a7-4cac-bdfb-12f6d94d589d'),(48314,48262,NULL,37260,52,'craft\\elements\\Entry',1,0,'2021-09-27 03:56:03','2021-09-27 03:56:03',NULL,NULL,'2742c1d0-b527-4232-ab1b-c32632af5a8a'),(48317,48017,NULL,37262,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:56:20','2021-09-27 03:56:20',NULL,NULL,'005f6707-8414-4e16-a9a8-6780f7d1e7e0'),(48318,48262,NULL,37263,52,'craft\\elements\\Entry',1,0,'2021-09-27 03:56:22','2021-09-27 03:56:22',NULL,NULL,'2e9df4bd-f4f5-464d-9620-d1641bba57a8'),(48322,48017,NULL,37266,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:56:57','2021-09-27 03:56:57',NULL,NULL,'8d0e3e81-10e8-41e9-a709-176fa121f7b0'),(48323,48017,NULL,37267,4,'craft\\elements\\Entry',1,0,'2021-09-27 03:57:31','2021-09-27 03:57:31',NULL,NULL,'c21e51f0-2634-4f66-a582-a8553df6f2d2'),(48324,48262,NULL,37268,52,'craft\\elements\\Entry',1,0,'2021-09-27 03:58:25','2021-09-27 03:58:25',NULL,NULL,'1173965b-4f7e-4499-b1fd-567cac23372f'),(48325,48262,NULL,37269,52,'craft\\elements\\Entry',1,0,'2021-09-27 04:00:34','2021-09-27 04:00:34',NULL,NULL,'ca4e1510-b1a7-40fe-9d64-28310bf61057'),(48333,48017,NULL,37276,4,'craft\\elements\\Entry',1,0,'2021-09-27 04:07:34','2021-09-27 04:07:34',NULL,NULL,'46d22e05-53ee-45ac-810b-8fa9cdbaaff2'),(48338,48262,NULL,37281,52,'craft\\elements\\Entry',1,0,'2021-09-27 04:10:00','2021-09-27 04:10:00',NULL,NULL,'a372a393-9380-40bb-a4b4-441b72be9b8b'),(48358,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-27 06:12:38','2022-06-27 01:40:42',NULL,NULL,'82832b6d-10e8-4ded-8103-d1ab9fe59eda'),(48362,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-27 06:39:41','2022-06-27 01:40:48',NULL,NULL,'de1bd35c-284e-46e8-85c4-d196b863dba1'),(48366,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-27 06:52:42','2022-06-27 02:56:30',NULL,NULL,'2fdef06b-33a8-4baf-a986-ce5a1c7981ae'),(48367,48003,NULL,37304,12,'craft\\elements\\Entry',1,0,'2021-09-27 06:53:04','2021-09-27 06:53:04',NULL,NULL,'3a254a06-c32f-41f2-a051-565920805408'),(48376,17646,NULL,37313,12,'craft\\elements\\Entry',1,0,'2021-09-27 22:51:43','2021-09-27 22:51:43',NULL,NULL,'9dedcb76-4db2-4510-9ded-e9f0032798fc'),(48378,17660,NULL,37314,12,'craft\\elements\\Entry',1,0,'2021-09-27 22:53:36','2021-09-27 22:53:36',NULL,NULL,'94b692da-746e-4351-9632-f8d041d4a997'),(48379,17678,NULL,37315,12,'craft\\elements\\Entry',1,0,'2021-09-27 22:53:57','2021-09-27 22:53:58',NULL,NULL,'636feb08-1d35-4cbb-922a-83a1a84453a2'),(48380,17678,NULL,37316,12,'craft\\elements\\Entry',1,0,'2021-09-27 22:54:36','2021-09-27 22:54:36',NULL,NULL,'af8e50f3-ea04-4096-9317-e5be2e889635'),(48382,17654,NULL,37317,12,'craft\\elements\\Entry',1,0,'2021-09-27 22:55:06','2021-09-27 22:55:06',NULL,NULL,'f1771aea-9e03-4747-bb7c-61bba8491b28'),(48384,17646,NULL,37318,12,'craft\\elements\\Entry',1,0,'2021-09-27 22:55:36','2021-09-27 22:55:36',NULL,NULL,'ebfe6350-d835-4b99-90dc-259b79ba01f5'),(48386,17644,NULL,37319,12,'craft\\elements\\Entry',1,0,'2021-09-27 22:57:34','2021-09-27 22:57:34',NULL,NULL,'e8f69135-6020-469f-a317-5954163210e9'),(48388,48003,NULL,37320,12,'craft\\elements\\Entry',1,0,'2021-09-27 22:57:51','2021-09-27 22:57:51',NULL,NULL,'5fbd3cf3-a770-484f-b918-4a88881957c7'),(48393,28040,NULL,37323,12,'craft\\elements\\Entry',1,0,'2021-09-27 22:58:28','2021-09-27 22:58:28',NULL,NULL,'432e90d0-1e76-432d-b379-196137a6de43'),(48395,48003,NULL,37324,12,'craft\\elements\\Entry',1,0,'2021-09-27 22:58:41','2021-09-27 22:58:42',NULL,NULL,'f189b3d7-8190-43d7-81d0-17cdd5fd5144'),(48396,17692,NULL,37325,12,'craft\\elements\\Entry',1,0,'2021-09-27 22:58:49','2021-09-27 22:58:49',NULL,NULL,'3a0ff2a9-e563-4581-ac20-efacab0a2a81'),(48397,17678,NULL,37326,12,'craft\\elements\\Entry',1,0,'2021-09-27 22:58:58','2021-09-27 22:58:58',NULL,NULL,'62e3f00b-721a-4726-a010-0cf5d796473c'),(48398,17660,NULL,37327,12,'craft\\elements\\Entry',1,0,'2021-09-27 23:00:38','2021-09-27 23:00:38',NULL,NULL,'d416df83-3739-427d-9860-35fb008c4f2b'),(48399,17654,NULL,37328,12,'craft\\elements\\Entry',1,0,'2021-09-27 23:01:03','2021-09-27 23:01:03',NULL,NULL,'9da98a0f-5818-4ec8-a68a-f25ae62cf318'),(48401,17646,NULL,37329,12,'craft\\elements\\Entry',1,0,'2021-09-27 23:01:35','2021-09-27 23:01:35',NULL,NULL,'eb2d975e-c3fb-414a-9d7b-b829342ffdda'),(48403,17660,NULL,37330,12,'craft\\elements\\Entry',1,0,'2021-09-27 23:02:00','2021-09-27 23:02:00',NULL,NULL,'d86cbe4a-3e2e-439e-a981-de2e75476df4'),(48405,17654,NULL,37331,12,'craft\\elements\\Entry',1,0,'2021-09-27 23:02:16','2021-09-27 23:02:16',NULL,NULL,'79965151-d41f-4cf4-aa68-b91aee96b5a1'),(48406,17646,NULL,37332,12,'craft\\elements\\Entry',1,0,'2021-09-27 23:02:26','2021-09-27 23:02:26',NULL,NULL,'d1a37ef7-1343-415f-9cea-b7aad505b550'),(48408,17644,NULL,37333,12,'craft\\elements\\Entry',1,0,'2021-09-27 23:03:06','2021-09-27 23:03:06',NULL,NULL,'4480572d-fb20-4db7-a1c4-05d3b07c378a'),(48410,17623,NULL,37334,12,'craft\\elements\\Entry',1,0,'2021-09-27 23:03:26','2021-09-27 23:03:26',NULL,NULL,'3afa3521-4743-43b9-b80c-93b3efef3a4e'),(48411,17680,455,NULL,12,'craft\\elements\\Entry',1,0,'2021-09-27 23:12:38','2021-09-27 23:14:08',NULL,NULL,'931228e7-6100-425c-838b-acb44d22124d'),(48413,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-27 23:53:29','2021-10-04 23:44:22',NULL,NULL,'f4cb9d8f-79fb-4504-a613-941f5e8909ca'),(48414,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-27 23:53:36','2021-10-04 23:55:12',NULL,NULL,'e5046754-0b99-4c35-92b6-72717bc7f1fe'),(48415,17680,NULL,37335,12,'craft\\elements\\Entry',1,0,'2021-09-28 00:16:18','2021-09-28 00:16:18',NULL,NULL,'82589000-8434-466c-bfbd-dd7918abbf1a'),(48417,NULL,NULL,NULL,4,'craft\\elements\\Entry',1,0,'2021-09-28 01:34:25','2021-09-28 02:00:46',NULL,NULL,'de3c88d9-a051-43ac-85e0-ec765168726e'),(48418,48417,NULL,37337,4,'craft\\elements\\Entry',1,0,'2021-09-28 01:34:25','2021-09-28 01:34:25',NULL,NULL,'7418ca3d-4099-479a-ae6e-169ce1c09835'),(48419,48417,NULL,37338,4,'craft\\elements\\Entry',1,0,'2021-09-28 01:44:19','2021-09-28 01:44:19',NULL,NULL,'087b0843-94dd-47fb-8cd6-c27e7c523027'),(48420,48417,NULL,37339,4,'craft\\elements\\Entry',1,0,'2021-09-28 01:52:10','2021-09-28 01:52:10',NULL,NULL,'f04f2858-9a6f-4466-92e9-332179a9ff5c'),(48421,48417,NULL,37340,4,'craft\\elements\\Entry',1,0,'2021-09-28 01:52:58','2021-09-28 01:52:58',NULL,NULL,'8fa18fa4-88b1-479c-aaeb-bedb3477f16e'),(48422,48417,NULL,37341,4,'craft\\elements\\Entry',1,0,'2021-09-28 01:53:18','2021-09-28 01:53:18',NULL,NULL,'2ffde640-9066-49f8-acb6-a779a2258dc6'),(48423,48417,NULL,37342,4,'craft\\elements\\Entry',1,0,'2021-09-28 01:53:38','2021-09-28 01:53:38',NULL,NULL,'64337beb-cc45-4f1b-ba42-0d751c9341c5'),(48424,48417,NULL,37343,4,'craft\\elements\\Entry',1,0,'2021-09-28 01:53:58','2021-09-28 01:53:58',NULL,NULL,'41903bc3-872b-4621-b65f-e69efcab5007'),(48425,48417,NULL,37344,4,'craft\\elements\\Entry',1,0,'2021-09-28 01:54:18','2021-09-28 01:54:18',NULL,NULL,'ffccb100-6db5-4d5d-84c6-cead1260b55f'),(48426,48417,NULL,37345,4,'craft\\elements\\Entry',1,0,'2021-09-28 01:54:38','2021-09-28 01:54:38',NULL,NULL,'d604e9be-2179-4fe5-a0a0-c953aed6e613'),(48427,48417,NULL,37346,4,'craft\\elements\\Entry',1,0,'2021-09-28 01:55:08','2021-09-28 01:55:08',NULL,NULL,'65708a17-2eb4-49fa-bae3-437c3710504f'),(48428,48417,NULL,37347,4,'craft\\elements\\Entry',1,0,'2021-09-28 01:55:28','2021-09-28 01:55:28',NULL,NULL,'9cedead9-9523-48df-a1f6-3ec9c1cdd599'),(48429,48417,NULL,37348,4,'craft\\elements\\Entry',1,0,'2021-09-28 01:55:48','2021-09-28 01:55:48',NULL,NULL,'9745fac0-9eee-410b-ab78-39d4eb967651'),(48430,48417,NULL,37349,4,'craft\\elements\\Entry',1,0,'2021-09-28 01:56:08','2021-09-28 01:56:08',NULL,NULL,'7e8956da-3a4f-475f-9839-6cce7f99621f'),(48431,48417,NULL,37350,4,'craft\\elements\\Entry',1,0,'2021-09-28 01:56:28','2021-09-28 01:56:28',NULL,NULL,'ac83ba81-1700-41ae-80e3-6b46606d6e6c'),(48432,48417,NULL,37351,4,'craft\\elements\\Entry',1,0,'2021-09-28 01:56:47','2021-09-28 01:56:47',NULL,NULL,'2c8a8385-d654-462e-9706-657ead2fe539'),(48433,48417,NULL,37352,4,'craft\\elements\\Entry',1,0,'2021-09-28 02:00:46','2021-09-28 02:00:46',NULL,NULL,'1bde107c-aeab-4d8a-bab0-ec9deb0257a0'),(48452,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-28 07:11:19','2021-10-04 23:54:49',NULL,NULL,'02272977-be9b-4e01-b3d5-15039acab0ce'),(48454,44845,NULL,37367,6,'craft\\elements\\Entry',1,0,'2021-09-28 07:11:32','2021-09-28 07:11:33',NULL,NULL,'f2d621a1-55bc-46e9-8801-9b88cc1e99ea'),(48474,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-28 07:27:35','2022-06-27 01:40:31',NULL,NULL,'013cb76b-fe96-4389-af0a-f0bab2a4e4a5'),(48475,44843,NULL,37387,6,'craft\\elements\\Entry',1,0,'2021-09-28 07:27:43','2021-09-28 07:27:43',NULL,NULL,'7a1b4c30-7b02-41db-bf6d-f63f6b2a6bea'),(48476,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-28 07:28:37','2022-06-27 01:40:37',NULL,NULL,'7f1fc66a-b1cf-4f47-9465-54806941b160'),(48478,44843,NULL,37388,6,'craft\\elements\\Entry',1,0,'2021-09-28 07:28:52','2021-09-28 07:28:53',NULL,NULL,'460b6e71-299d-4126-94ec-d63de83eebe9'),(48482,45346,NULL,37392,4,'craft\\elements\\Entry',1,0,'2021-09-28 07:51:08','2021-09-28 07:51:08',NULL,NULL,'6f35408a-c657-4e94-abe0-93cf2697d72e'),(48483,45346,NULL,37393,4,'craft\\elements\\Entry',1,0,'2021-09-28 07:51:28','2021-09-28 07:51:28',NULL,NULL,'9fdcd6e1-bcd7-43f9-a287-d9500273f543'),(48484,45346,NULL,37394,4,'craft\\elements\\Entry',1,0,'2021-09-28 07:51:48','2021-09-28 07:51:48',NULL,NULL,'5a9e4471-41e5-462b-9a34-65da33fdd041'),(48485,45346,NULL,37395,4,'craft\\elements\\Entry',1,0,'2021-09-28 07:52:08','2021-09-28 07:52:08',NULL,NULL,'98f67c57-5e25-4a00-9d2f-7aedddcff541'),(48486,45346,NULL,37396,4,'craft\\elements\\Entry',1,0,'2021-09-28 07:52:28','2021-09-28 07:52:28',NULL,NULL,'570ed581-e612-40ab-b60c-c3d5f548599b'),(48487,45346,NULL,37397,4,'craft\\elements\\Entry',1,0,'2021-09-28 07:52:48','2021-09-28 07:52:48',NULL,NULL,'00af723a-2439-4c40-9012-35d80aa148c8'),(48488,45346,NULL,37398,4,'craft\\elements\\Entry',1,0,'2021-09-28 07:53:08','2021-09-28 07:53:08',NULL,NULL,'931e46ab-9d1a-4285-a5c0-73f18a9144ce'),(48489,45346,NULL,37399,4,'craft\\elements\\Entry',1,0,'2021-09-28 07:53:28','2021-09-28 07:53:28',NULL,NULL,'c83e765a-ddea-4b7e-addd-cfaf95dcace2'),(48490,45346,NULL,37400,4,'craft\\elements\\Entry',1,0,'2021-09-28 07:53:48','2021-09-28 07:53:48',NULL,NULL,'322a5fac-730c-4b74-b523-6425b2348856'),(48491,45346,NULL,37401,4,'craft\\elements\\Entry',1,0,'2021-09-28 07:54:08','2021-09-28 07:54:08',NULL,NULL,'c67c87cd-cd42-456d-ac16-57767fd984c4'),(48492,45346,NULL,37402,4,'craft\\elements\\Entry',1,0,'2021-09-28 07:54:28','2021-09-28 07:54:28',NULL,NULL,'b163ec51-0e16-4430-93c6-2e24b59a50aa'),(48493,45346,NULL,37403,4,'craft\\elements\\Entry',1,0,'2021-09-28 07:54:48','2021-09-28 07:54:48',NULL,NULL,'a8cbfd4b-1193-47da-97df-09c5c38d8459'),(48494,45346,NULL,37404,4,'craft\\elements\\Entry',1,0,'2021-09-28 07:55:08','2021-09-28 07:55:08',NULL,NULL,'9ec0dca1-029a-4392-b2cf-4b6d64d82f24'),(48495,45346,NULL,37405,4,'craft\\elements\\Entry',1,0,'2021-09-28 07:55:28','2021-09-28 07:55:28',NULL,NULL,'0495c568-bf0c-4af1-b4fb-61461465fb01'),(48496,45346,NULL,37406,4,'craft\\elements\\Entry',1,0,'2021-09-28 08:14:00','2021-09-28 08:14:00',NULL,NULL,'36e66d5f-d694-4d02-8df5-cc7f27f17b18'),(48497,45346,NULL,37407,4,'craft\\elements\\Entry',1,0,'2021-09-28 08:34:00','2021-09-28 08:34:00',NULL,NULL,'447c6108-d0a9-4de4-890d-96e17adc5dcc'),(48498,45346,NULL,37408,4,'craft\\elements\\Entry',1,0,'2021-09-28 08:54:00','2021-09-28 08:54:00',NULL,NULL,'04e8d530-3110-4f5f-b751-2f7ced2436af'),(48499,45346,NULL,37409,4,'craft\\elements\\Entry',1,0,'2021-09-28 08:55:18','2021-09-28 08:55:18',NULL,NULL,'64cfb536-2cfd-4619-99f7-2a87c4b1a634'),(48500,45346,NULL,37410,4,'craft\\elements\\Entry',1,0,'2021-09-28 08:55:38','2021-09-28 08:55:38',NULL,NULL,'d2c8c901-9a1f-4ec3-8ef6-b51a36e1b82d'),(48501,45346,NULL,37411,4,'craft\\elements\\Entry',1,0,'2021-09-28 08:56:11','2021-09-28 08:56:11',NULL,NULL,'ac74802a-c7d2-484f-838b-7dc7a7cdc773'),(48502,45346,NULL,37412,4,'craft\\elements\\Entry',1,0,'2021-09-28 08:56:31','2021-09-28 08:56:31',NULL,NULL,'6a65eb14-9ccd-4366-ae60-18171f2c072e'),(48503,45346,NULL,37413,4,'craft\\elements\\Entry',1,0,'2021-09-28 08:56:51','2021-09-28 08:56:51',NULL,NULL,'5f487511-fd29-4e3e-a29f-3ba59225013a'),(48504,45346,NULL,37414,4,'craft\\elements\\Entry',1,0,'2021-09-28 08:57:11','2021-09-28 08:57:11',NULL,NULL,'beaaafd1-e950-4075-a44f-f26bfbe0624a'),(48505,45346,NULL,37415,4,'craft\\elements\\Entry',1,0,'2021-09-28 08:57:41','2021-09-28 08:57:41',NULL,NULL,'29ce5103-0dc4-415d-8e2e-0dc7a4b6bd23'),(48506,45346,NULL,37416,4,'craft\\elements\\Entry',1,0,'2021-09-28 08:58:01','2021-09-28 08:58:01',NULL,NULL,'a6b3d36d-2d4f-428b-b416-4ed4e7289139'),(48507,45346,NULL,37417,4,'craft\\elements\\Entry',1,0,'2021-09-28 08:58:21','2021-09-28 08:58:21',NULL,NULL,'31ece8dd-f098-4f97-be45-c1225c045fe3'),(48508,45346,NULL,37418,4,'craft\\elements\\Entry',1,0,'2021-09-28 08:58:41','2021-09-28 08:58:41',NULL,NULL,'fc2b67d7-d459-4339-8f69-259a61cee499'),(48509,45346,NULL,37419,4,'craft\\elements\\Entry',1,0,'2021-09-28 08:59:01','2021-09-28 08:59:01',NULL,NULL,'f306c359-4fbe-41ac-a6de-1fe092d3eb8e'),(48510,45346,NULL,37420,4,'craft\\elements\\Entry',1,0,'2021-09-28 08:59:21','2021-09-28 08:59:21',NULL,NULL,'fc3290ce-7fb7-45b9-ba8e-9c645b925723'),(48511,45346,NULL,37421,4,'craft\\elements\\Entry',1,0,'2021-09-28 08:59:41','2021-09-28 08:59:41',NULL,NULL,'931f5a28-61c5-4f93-ad96-5b16b02145a0'),(48512,45346,NULL,37422,4,'craft\\elements\\Entry',1,0,'2021-09-28 09:00:01','2021-09-28 09:00:01',NULL,NULL,'b67cf1cb-e883-435c-89f7-78136115044b'),(48513,45346,NULL,37423,4,'craft\\elements\\Entry',1,0,'2021-09-28 09:00:21','2021-09-28 09:00:21',NULL,NULL,'d9d98760-8b69-4480-aaea-07e419908914'),(48514,45346,NULL,37424,4,'craft\\elements\\Entry',1,0,'2021-09-28 09:00:41','2021-09-28 09:00:41',NULL,NULL,'77d4bd5d-5b2e-4712-83ec-ad13600f201a'),(48515,45346,NULL,37425,4,'craft\\elements\\Entry',1,0,'2021-09-28 09:01:01','2021-09-28 09:01:01',NULL,NULL,'880e7bcd-8888-468c-b2ad-5a741a655903'),(48516,45346,NULL,37426,4,'craft\\elements\\Entry',1,0,'2021-09-28 09:01:21','2021-09-28 09:01:21',NULL,NULL,'54eed2b2-b692-46a0-a3cc-f65683146ef4'),(48517,45346,NULL,37427,4,'craft\\elements\\Entry',1,0,'2021-09-28 09:09:20','2021-09-28 09:09:20',NULL,NULL,'4a69276d-b39e-4670-8b25-4c8d567db98a'),(48518,45346,NULL,37428,4,'craft\\elements\\Entry',1,0,'2021-09-28 09:09:40','2021-09-28 09:09:40',NULL,NULL,'1dc8fcdb-905f-4723-8061-66f20bf84c36'),(48519,45346,NULL,37429,4,'craft\\elements\\Entry',1,0,'2021-09-28 09:10:00','2021-09-28 09:10:00',NULL,NULL,'b30f5324-63b9-4884-8482-8723368bb422'),(48520,45346,NULL,37430,4,'craft\\elements\\Entry',1,0,'2021-09-28 09:10:20','2021-09-28 09:10:20',NULL,NULL,'3ddd71a6-e542-40dc-8b3f-255a5d4865de'),(48521,45346,NULL,37431,4,'craft\\elements\\Entry',1,0,'2021-09-28 09:10:39','2021-09-28 09:10:39',NULL,NULL,'1311c8f0-ea0e-4503-9bc7-de6f02d52fcb'),(48522,45346,NULL,37432,4,'craft\\elements\\Entry',1,0,'2021-09-28 09:11:00','2021-09-28 09:11:00',NULL,NULL,'dbe60442-5fe4-4309-ae97-f3d29f03c23e'),(48523,45346,NULL,37433,4,'craft\\elements\\Entry',1,0,'2021-09-28 09:11:19','2021-09-28 09:11:19',NULL,NULL,'7f8211b8-ce70-4f60-9655-5947a917e63b'),(48524,45346,NULL,37434,4,'craft\\elements\\Entry',1,0,'2021-09-28 09:11:39','2021-09-28 09:11:40',NULL,NULL,'f5eeee21-98ac-44ab-bc65-41872afefd61'),(48525,45346,NULL,37435,4,'craft\\elements\\Entry',1,0,'2021-09-28 09:12:00','2021-09-28 09:12:00',NULL,NULL,'ccb6e2b2-651f-4eb6-b305-34e2c141699a'),(48526,45346,NULL,37436,4,'craft\\elements\\Entry',1,0,'2021-09-28 09:12:20','2021-09-28 09:12:20',NULL,NULL,'a0be5d78-7ec6-4631-9c40-d0a9d207fa6c'),(48527,45346,NULL,37437,4,'craft\\elements\\Entry',1,0,'2021-09-28 09:12:40','2021-09-28 09:12:40',NULL,NULL,'c9cfadd1-1196-427f-a4f3-768e8f7babc4'),(48528,45346,NULL,37438,4,'craft\\elements\\Entry',1,0,'2021-09-28 09:13:00','2021-09-28 09:13:00',NULL,NULL,'f64d495c-54b6-4207-b9d6-31c2caeafa35'),(48529,45346,NULL,37439,4,'craft\\elements\\Entry',1,0,'2021-09-28 09:13:20','2021-09-28 09:13:20',NULL,NULL,'8d521a52-f0d2-4319-9e70-cb72e90c0a66'),(48530,45346,NULL,37440,4,'craft\\elements\\Entry',1,0,'2021-09-28 09:28:00','2021-09-28 09:28:00',NULL,NULL,'af098ac8-9cdf-4a02-83c7-cdfcb7eb6b87'),(48531,45346,NULL,37441,4,'craft\\elements\\Entry',1,0,'2021-09-28 09:48:01','2021-09-28 09:48:01',NULL,NULL,'6969698c-9640-42fb-b126-2dbf87a21cea'),(48532,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-30 03:36:41','2022-06-23 03:27:53',NULL,NULL,'10b63d79-c2fb-4ff5-8f53-fecb723073ae'),(48534,44841,NULL,37442,6,'craft\\elements\\Entry',1,0,'2021-09-30 03:36:52','2021-09-30 03:36:52',NULL,NULL,'4ec3516d-686a-4fba-bead-dbc36e265893'),(48535,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-30 03:42:58','2021-10-04 23:51:22',NULL,NULL,'7bc84ba8-7cdc-47ba-afc9-14f1f9cf1498'),(48537,44837,NULL,37443,6,'craft\\elements\\Entry',1,0,'2021-09-30 03:43:12','2021-09-30 03:43:13',NULL,NULL,'ecaf6fe6-9d47-4b85-b018-19af67afea15'),(48538,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-30 03:47:19','2021-10-04 23:49:49',NULL,NULL,'5492953f-4558-4311-b9ce-9fb743c02604'),(48540,40506,NULL,37444,6,'craft\\elements\\Entry',1,0,'2021-09-30 03:47:30','2021-09-30 03:47:30',NULL,NULL,'2b4b8fb3-10dc-438e-9a70-aeebb99a90f8'),(48541,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-30 03:51:02','2021-10-04 23:49:11',NULL,NULL,'8eee7497-775a-4839-a328-32026e002529'),(48543,18176,NULL,37445,6,'craft\\elements\\Entry',1,0,'2021-09-30 03:51:18','2021-09-30 03:51:18',NULL,NULL,'f58b398a-538a-445f-86da-b383feb46805'),(48545,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-30 03:53:45','2021-10-04 23:48:27',NULL,NULL,'843a9584-ba7a-466c-9233-d60a560e4bec'),(48546,18156,NULL,37446,6,'craft\\elements\\Entry',1,0,'2021-09-30 03:54:04','2021-09-30 03:54:04',NULL,NULL,'72893172-294b-435f-a3bb-93016251a1ae'),(48548,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-30 05:08:23','2021-10-04 23:48:06',NULL,NULL,'7f3399e2-8744-4541-9153-e858e987e3bf'),(48550,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-30 05:12:10','2021-10-04 23:50:34',NULL,NULL,'dbe36336-addf-459c-af69-200d271e4759'),(48554,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-30 05:57:26','2021-10-04 23:50:03',NULL,NULL,'e7589279-c08d-4385-93db-976977d6420d'),(48555,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-30 05:58:22','2021-10-04 23:46:53',NULL,NULL,'3fe64e19-9400-4b35-85fe-ab579e4a13bd'),(48556,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-30 05:58:34','2021-10-04 23:46:10',NULL,NULL,'20884957-c7de-45e8-9e22-754f2ab5d1e2'),(48557,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-30 05:58:58','2021-10-04 23:46:25',NULL,NULL,'c764cd0e-32dc-4a33-bc58-46917741cd51'),(48558,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-30 05:59:16','2021-10-01 05:23:51',NULL,NULL,'9db0fe8a-4260-4ecd-b93e-f2bc19e6dfb4'),(48559,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-30 05:59:46','2021-10-01 05:23:23',NULL,NULL,'8ff6bc23-4186-44e4-8657-b7e12ad8ac84'),(48562,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-30 06:02:04','2021-10-01 05:22:52',NULL,NULL,'7fe5b5db-df5e-4697-84de-194105ba0a43'),(48563,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-30 06:02:24','2021-10-01 05:22:28',NULL,NULL,'be92e151-64c7-4899-9fba-57d295f005a4'),(48564,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-09-30 06:06:06','2021-10-01 05:21:42',NULL,NULL,'e6a66b29-9086-45b0-8b3d-53316b4bcc54'),(51531,NULL,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-10-01 01:02:35','2021-11-09 01:32:14',NULL,NULL,'c34e8111-7d85-40c5-8811-43f68cd4ca2a'),(51533,44879,NULL,40343,50,'craft\\elements\\Entry',1,0,'2021-10-01 01:02:35','2021-10-01 01:02:35',NULL,NULL,'86294d18-c23a-4a3d-b5b1-f118d6fb4e74'),(51534,45249,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-10-01 01:02:35','2021-10-01 01:02:35',NULL,NULL,'add03124-b303-476d-9f09-039cba9ae5ce'),(51535,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-10-01 01:02:35','2021-10-01 01:02:35',NULL,NULL,'33f9f605-6af9-42bd-9238-b910c8015135'),(51536,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-10-01 01:02:36','2021-10-01 01:02:36',NULL,NULL,'37f7593a-6239-4546-a794-a604fb1665c8'),(51537,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-10-01 01:02:36','2021-10-01 01:02:36',NULL,NULL,'bbb96cf3-5dfa-4255-b807-063f6e11f69b'),(51539,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-10-01 01:02:36','2021-10-01 01:02:36',NULL,NULL,'e4a411d4-c20f-4fdd-b3af-738002379da6'),(51540,51531,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-10-01 01:02:36','2021-10-01 01:02:36',NULL,NULL,'5bc4de44-b6f0-4447-83eb-e0f4292f6b89'),(51670,44879,NULL,40466,50,'craft\\elements\\Entry',1,0,'2021-10-01 01:03:19','2021-10-01 01:03:20',NULL,NULL,'3766943b-7fd4-4abc-9542-7be865c6ba5d'),(51671,45249,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-10-01 01:03:20','2021-10-01 01:03:20',NULL,NULL,'5f061275-355a-44f7-a820-deaf5e9c61fb'),(51672,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-10-01 01:03:20','2021-10-01 01:03:20',NULL,NULL,'e31905be-5945-4027-aec1-d9d1fc6081c2'),(51673,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-10-01 01:03:20','2021-10-01 01:03:20',NULL,NULL,'220a6b1f-6d6e-4b24-b13e-c0b629a15f33'),(51674,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-10-01 01:03:20','2021-10-01 01:03:20',NULL,NULL,'a6c7daa6-0480-4703-9571-0be41384290e'),(51675,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-10-01 01:03:20','2021-10-01 01:03:20',NULL,NULL,'0cc2f25f-c588-46cc-8de1-4f9ac348621b'),(51676,51531,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-10-01 01:03:20','2021-10-01 01:03:20',NULL,NULL,'99f334e1-67b2-4a1d-99ee-2cb370b4865d'),(51872,44879,NULL,40657,50,'craft\\elements\\Entry',1,0,'2021-10-01 01:04:09','2021-10-01 01:04:10',NULL,NULL,'2801fc9e-4039-4f79-a496-8adbf1b29fbe'),(51873,51531,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-10-01 01:04:10','2021-10-01 01:04:10',NULL,NULL,'840699e2-a6cb-4774-be68-b3e7da0eabbf'),(51875,45249,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-10-01 01:04:10','2021-10-01 01:04:10',NULL,NULL,'d8c027db-a732-4093-95e8-309e9285a02c'),(51876,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-10-01 01:04:10','2021-10-01 01:04:10',NULL,NULL,'29d29027-fa05-4c83-92b1-cb9af0459c18'),(51877,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-10-01 01:04:10','2021-10-01 01:04:10',NULL,NULL,'603fc18e-2f22-4112-96d3-33af41545ac5'),(51878,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-10-01 01:04:10','2021-10-01 01:04:10',NULL,NULL,'d565b870-2420-4500-9c17-a82b8f02e747'),(51879,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-10-01 01:04:10','2021-10-01 01:04:10',NULL,NULL,'35ce9a5e-671d-4c47-ac1b-6dff025772a8'),(58762,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2021-10-01 06:45:38','2022-05-30 01:20:35',NULL,NULL,'b12e672d-0451-4285-94df-c0651cbf29ad'),(58763,58762,NULL,47541,6,'craft\\elements\\Entry',0,0,'2021-10-08 02:09:52','2021-10-08 02:09:53',NULL,NULL,'53e25b2f-ab29-41c5-bdf2-1eb2d22b69c9'),(58764,NULL,NULL,NULL,NULL,'Solspace\\Freeform\\Elements\\Submission',1,0,'2021-10-11 00:12:29','2021-10-11 00:12:29',NULL,NULL,'c4d9ae71-67a1-4150-9331-12efcff7888a'),(58769,44983,NULL,47544,6,'craft\\elements\\Entry',0,0,'2021-10-14 05:45:57','2021-10-14 05:45:58',NULL,NULL,'f9dbafe1-96ed-49e7-9821-714b558e2a0f'),(58770,45222,NULL,47545,6,'craft\\elements\\Entry',0,0,'2021-10-14 05:48:03','2021-10-14 05:48:03',NULL,NULL,'3106a715-98e3-4a0e-a1fc-317ee4af50a9'),(61812,20379,NULL,50566,23,'craft\\elements\\Entry',1,0,'2021-10-18 01:25:31','2021-10-18 01:25:31',NULL,NULL,'c1cbd589-854c-43fa-9a44-1ab63d502ed6'),(61814,20379,NULL,50567,23,'craft\\elements\\Entry',1,0,'2021-10-18 01:27:52','2021-10-18 01:27:52',NULL,NULL,'eef5e76e-aef3-4b9b-8376-882425dcdbcd'),(61816,20379,NULL,50568,23,'craft\\elements\\Entry',1,0,'2021-10-18 03:42:08','2021-10-18 03:42:08',NULL,NULL,'2ba7e951-3ba2-45e5-a1d8-aacff5fd6ff1'),(61819,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-10-18 04:17:31','2021-10-18 04:17:31',NULL,NULL,'011c8671-7657-47aa-b506-c04ca98575c0'),(61820,18156,NULL,50569,6,'craft\\elements\\Entry',1,0,'2021-10-18 04:17:46','2021-10-18 04:17:46',NULL,NULL,'99a940ad-6247-4c3c-ab86-12a22d80ec17'),(61822,21297,NULL,50570,34,'craft\\elements\\Entry',1,0,'2021-10-18 04:28:19','2021-10-18 04:28:19',NULL,NULL,'7c0b3b1c-a9aa-43e6-a232-9c85dac79c03'),(61823,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-10-18 04:48:07','2021-10-18 04:48:07',NULL,NULL,'79ab1599-977d-44e6-b9ba-22ee5c4b3dc3'),(61824,18109,NULL,50571,6,'craft\\elements\\Entry',1,0,'2021-10-18 04:50:02','2021-10-18 04:50:02',NULL,NULL,'da054211-4dd0-425b-bee1-f634a3f686c4'),(61826,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-10-18 04:50:54','2021-10-18 04:50:54',NULL,NULL,'490ae39f-82de-4291-95b3-ab60f646c5b7'),(61827,40504,NULL,50572,6,'craft\\elements\\Entry',1,0,'2021-10-18 04:54:05','2021-10-18 04:54:06',NULL,NULL,'872a4e33-d530-40d8-8c34-0315095280ff'),(61829,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-10-18 06:15:01','2021-10-18 06:15:01',NULL,NULL,'427260b3-6e8a-4c26-b824-703f1cd4ee54'),(61830,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-10-18 06:16:57','2021-10-18 06:16:57',NULL,NULL,'a79bec0b-3294-42fd-af86-4bb31a6a25fa'),(61831,18109,NULL,50573,6,'craft\\elements\\Entry',1,0,'2021-10-18 06:20:17','2021-10-18 06:20:17',NULL,NULL,'d9088db1-b09c-4325-81f6-ff0049b600f4'),(61833,38121,NULL,50574,6,'craft\\elements\\Entry',1,0,'2021-10-18 06:53:58','2021-10-18 06:53:58',NULL,NULL,'84914fe7-10bf-420c-8d17-b88bb4f778b7'),(61834,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-10-18 07:12:48','2021-10-18 07:12:48',NULL,NULL,'bd2f301b-5c77-42c6-9674-6ed0fbb6d05e'),(61835,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-10-18 07:12:56','2021-10-18 07:12:56',NULL,NULL,'d225e2ad-6023-496c-9b20-45c01e7e3a32'),(61836,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-10-18 07:12:58','2021-10-18 07:12:58',NULL,NULL,'3e627ccd-b4ad-4169-921d-66eaae44f8a4'),(61837,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-10-18 07:13:01','2021-10-18 07:13:01',NULL,NULL,'5b95ea96-35d6-4e93-9904-c51d1643efd8'),(61838,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-10-18 07:13:05','2021-10-18 07:13:05',NULL,NULL,'baa4bd59-70fe-4f6c-a59d-c6eee8d7a5d3'),(61839,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-10-18 07:13:10','2021-10-18 07:13:10',NULL,NULL,'ad6d8e2e-105b-4fa5-960c-d5680d3a95e1'),(61840,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-10-18 07:13:16','2021-10-18 07:13:16',NULL,NULL,'76944845-fdc9-45b9-bf3b-2839fa301743'),(61841,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-10-18 07:13:19','2021-10-18 07:13:19',NULL,NULL,'7ca558e3-799e-42db-8c26-4584e9ec8b5f'),(61842,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-10-18 07:13:35','2021-10-18 07:13:35',NULL,NULL,'898a7176-cd96-40c1-8d65-f88810a9e543'),(61843,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-10-18 07:13:45','2021-10-18 07:13:45',NULL,NULL,'be820d32-3b5f-467e-84b9-7ae79f436dae'),(61845,18156,NULL,50575,6,'craft\\elements\\Entry',1,0,'2021-10-18 07:16:09','2021-10-18 07:16:09',NULL,NULL,'27081dda-0cf6-4866-974e-1b28e7980727'),(61847,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-10-18 07:23:24','2021-10-18 07:23:24',NULL,NULL,'3bfc882a-c9bb-4ad5-b5e8-b8df0a2df2d0'),(61848,18156,NULL,50576,6,'craft\\elements\\Entry',1,0,'2021-10-18 07:27:33','2021-10-18 07:27:33',NULL,NULL,'dfd13ad3-0c89-4d7a-99da-40c96bf0b307'),(61849,18156,NULL,50577,6,'craft\\elements\\Entry',1,0,'2021-10-18 07:29:57','2021-10-18 07:29:57',NULL,NULL,'bfef1d33-a2a4-4f7e-b33e-6fcf568e7d08'),(61851,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-10-18 07:36:20','2021-10-18 07:36:20',NULL,NULL,'b848b12a-5956-4960-81ba-8da521884f05'),(61852,18156,NULL,50578,6,'craft\\elements\\Entry',1,0,'2021-10-18 07:36:34','2021-10-18 07:36:35',NULL,NULL,'8ca1883e-175f-42af-b766-732584704611'),(73927,18156,NULL,57899,6,'craft\\elements\\Entry',1,0,'2021-10-19 11:27:40','2021-10-19 11:27:41',NULL,NULL,'345d7d56-10d9-4b62-8ab6-8360f6a4afa5'),(73930,18156,NULL,57900,6,'craft\\elements\\Entry',1,0,'2021-10-19 11:31:42','2021-10-19 11:31:42',NULL,NULL,'af282360-26f4-4888-a528-50acbc35f224'),(73935,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-10-20 03:38:16','2021-10-20 03:38:16',NULL,NULL,'2c51486b-f309-492f-b6ef-c95997738d01'),(73936,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-10-20 03:38:58','2021-10-20 03:38:58',NULL,NULL,'816d4543-be79-47b1-a036-8787335fde38'),(73937,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-10-20 03:39:26','2021-10-20 03:39:26',NULL,NULL,'2b1a6e23-1057-4d3e-95af-1fd9207df3c7'),(73938,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-10-20 03:39:49','2021-10-20 03:39:49',NULL,NULL,'dc7d7ad2-c52c-488d-b9b7-b383070b40eb'),(73939,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-10-20 03:40:06','2021-10-20 03:40:06',NULL,NULL,'570258d0-e4af-4ca0-b49e-cee35d5c8b3a'),(73940,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-10-20 03:40:27','2021-10-20 03:40:27',NULL,NULL,'0cc6b164-709f-4c16-a3e7-e0af6a6dabbe'),(73941,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-10-20 03:40:44','2021-10-20 03:40:44',NULL,NULL,'20a48143-4784-4a0d-bebd-5a42cf192d2a'),(73942,18156,NULL,57901,6,'craft\\elements\\Entry',1,0,'2021-10-20 03:48:10','2021-10-20 03:48:10',NULL,NULL,'a3ecbd3c-83fb-410b-ae7c-2ff64179163b'),(73944,18156,NULL,57902,6,'craft\\elements\\Entry',1,0,'2021-10-20 03:49:12','2021-10-20 03:49:12',NULL,NULL,'a07b3bf5-9664-436a-bf69-bf92db83c8f0'),(73946,18156,NULL,57903,6,'craft\\elements\\Entry',1,0,'2021-10-20 03:49:32','2021-10-20 03:49:32',NULL,NULL,'3cc55b6a-acc3-4839-a301-2895c42e27e6'),(73947,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-10-20 04:31:02','2021-10-20 04:31:02',NULL,NULL,'ed2a9068-26da-4292-b205-fd42a1826872'),(73949,18156,NULL,57904,6,'craft\\elements\\Entry',1,0,'2021-10-20 04:31:19','2021-10-20 04:31:19',NULL,NULL,'ca9143da-5d32-4783-900d-f768476b4cdc'),(73951,18156,NULL,57905,6,'craft\\elements\\Entry',1,0,'2021-10-20 04:32:46','2021-10-20 04:32:46',NULL,NULL,'ddb7c754-fb80-4147-8407-aca3975dd2a5'),(73959,44879,NULL,57906,50,'craft\\elements\\Entry',1,0,'2021-11-08 02:53:16','2021-11-08 02:53:17',NULL,NULL,'b6ac5dd2-c8d1-4da9-8f93-f4212dfb4aa6'),(73960,51531,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-08 02:53:17','2021-11-08 02:53:17',NULL,NULL,'8a2fc45d-5b6d-45d5-a50e-90dd781b0a86'),(73961,45249,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-08 02:53:18','2021-11-08 02:53:18',NULL,NULL,'1257ecc1-e760-4831-86e9-fe4b455fbe85'),(73962,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-08 02:53:18','2021-11-08 02:53:18',NULL,NULL,'ed065269-6190-4a0d-82f2-a42847a2e302'),(73963,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-08 02:53:18','2021-11-08 02:53:18',NULL,NULL,'143200b2-f197-41d5-b613-2009f795fc3d'),(73964,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-08 02:53:18','2021-11-08 02:53:18',NULL,NULL,'0ea30639-57fa-4705-be27-577805a5d50f'),(73965,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-08 02:53:18','2021-11-08 02:53:18',NULL,NULL,'7d231362-80c4-47f8-b83c-3978ce21eaab'),(73973,44879,NULL,57907,50,'craft\\elements\\Entry',1,0,'2021-11-08 02:53:33','2021-11-08 02:53:33',NULL,NULL,'22486bd3-45cd-451c-b0af-9a2df903135a'),(73974,51531,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-08 02:53:33','2021-11-08 02:53:33',NULL,NULL,'abd54f13-d915-4aa4-801b-5d935c59e7a3'),(73975,45249,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-08 02:53:34','2021-11-08 02:53:34',NULL,NULL,'1d878a40-e376-42da-a171-fd974e1a3e4d'),(73976,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-08 02:53:34','2021-11-08 02:53:34',NULL,NULL,'b5ffe8a8-ebff-4203-a7bd-aa452efbc9da'),(73977,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-08 02:53:34','2021-11-08 02:53:34',NULL,NULL,'3be18451-d2e1-490d-96b5-5ce5cd1c95ca'),(73978,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-08 02:53:34','2021-11-08 02:53:34',NULL,NULL,'ebe5567d-1a69-4c3a-b615-336849354dc0'),(73979,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-08 02:53:34','2021-11-08 02:53:34',NULL,NULL,'98d3e195-364d-4af3-be63-d664ceba05aa'),(73987,44879,NULL,57908,50,'craft\\elements\\Entry',1,0,'2021-11-08 02:54:16','2021-11-08 02:54:17',NULL,NULL,'2c3282dc-2181-4b53-9c23-ddd48927be43'),(73988,51531,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-08 02:54:17','2021-11-08 02:54:17',NULL,NULL,'981bc80f-5a0d-4665-8c8a-bb1f3612ad0b'),(73989,45249,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-08 02:54:17','2021-11-08 02:54:17',NULL,NULL,'39af7ac9-80e8-4703-8e5c-8872a4de8a1e'),(73990,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-08 02:54:17','2021-11-08 02:54:17',NULL,NULL,'36fa6871-7911-46b2-b5ac-dee5b2c1eb60'),(73991,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-08 02:54:17','2021-11-08 02:54:17',NULL,NULL,'b6810a6b-fc3f-4132-bf23-5cbd17ddb5d6'),(73992,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-08 02:54:17','2021-11-08 02:54:17',NULL,NULL,'2cd5fae6-5680-4446-8a56-268eebfb68fa'),(73993,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-08 02:54:17','2021-11-08 02:54:17',NULL,NULL,'fbd0a2ae-0989-4e71-be2d-fa81b4c8cd23'),(73995,20379,NULL,57909,23,'craft\\elements\\Entry',1,0,'2021-11-08 02:55:48','2021-11-08 02:55:48',NULL,NULL,'13a25364-09d8-477a-85c4-2c70bf579115'),(73997,20379,NULL,57910,23,'craft\\elements\\Entry',1,0,'2021-11-08 02:56:39','2021-11-08 02:56:39',NULL,NULL,'b9a1de64-0a29-4bba-900a-974be6dad492'),(73999,20379,NULL,57911,23,'craft\\elements\\Entry',1,0,'2021-11-08 02:58:16','2021-11-08 02:58:16',NULL,NULL,'e0315b2a-bc68-4d92-815a-c481bd639730'),(74001,30427,NULL,57912,6,'craft\\elements\\Entry',1,0,'2021-11-08 02:58:57','2021-11-08 02:58:58',NULL,NULL,'07321bbe-0dbe-4152-a929-8c04b4193482'),(74003,44862,NULL,57913,6,'craft\\elements\\Entry',1,0,'2021-11-08 02:59:42','2021-11-08 02:59:42',NULL,NULL,'6d3641c8-a896-42a8-99f3-255b650bb867'),(74005,40504,NULL,57914,6,'craft\\elements\\Entry',1,0,'2021-11-08 03:00:33','2021-11-08 03:00:34',NULL,NULL,'908d405e-8426-477d-be24-36045f775a37'),(74007,40504,NULL,57915,6,'craft\\elements\\Entry',1,0,'2021-11-08 03:01:27','2021-11-08 03:01:27',NULL,NULL,'b8f93824-3b5c-4fec-a0bc-12c2f51bbbe1'),(74009,40504,NULL,57916,6,'craft\\elements\\Entry',1,0,'2021-11-08 03:16:15','2021-11-08 03:16:16',NULL,NULL,'e3e1fe7f-27a4-4f3d-8394-8f50c436a13b'),(74011,40504,NULL,57917,6,'craft\\elements\\Entry',1,0,'2021-11-08 04:06:48','2021-11-08 04:06:49',NULL,NULL,'e1546694-21ae-4b1a-96da-1079b3fda096'),(74013,40504,NULL,57918,6,'craft\\elements\\Entry',1,0,'2021-11-08 04:08:24','2021-11-08 04:08:25',NULL,NULL,'47b996aa-16b5-49ba-8a12-6b8f2b3a5a97'),(74015,38121,NULL,57919,6,'craft\\elements\\Entry',1,0,'2021-11-08 04:09:05','2021-11-08 04:09:06',NULL,NULL,'b2dc4692-3247-4af0-be2b-f9e6bd9eac94'),(74017,18139,NULL,57920,6,'craft\\elements\\Entry',1,0,'2021-11-08 04:09:43','2021-11-08 04:09:43',NULL,NULL,'5894a9ea-c9c4-4bc3-a574-ac5252dc11b5'),(74019,18164,NULL,57921,6,'craft\\elements\\Entry',1,0,'2021-11-08 04:11:29','2021-11-08 04:11:30',NULL,NULL,'5e0e1f43-aed0-4ec2-abf5-a099cf09161d'),(74021,18176,NULL,57922,6,'craft\\elements\\Entry',1,0,'2021-11-08 04:12:08','2021-11-08 04:12:09',NULL,NULL,'d1e4beaf-5126-40bb-972d-4995c8df0812'),(74023,18122,NULL,57923,6,'craft\\elements\\Entry',1,0,'2021-11-08 04:12:52','2021-11-08 04:12:53',NULL,NULL,'44ccda8c-a291-4c62-a613-8950e63588b2'),(74027,22210,NULL,57925,6,'craft\\elements\\Entry',1,0,'2021-11-08 04:14:00','2021-11-08 04:14:01',NULL,NULL,'85df56fa-c0ef-4704-a331-e3db10c40cbf'),(74029,22210,NULL,57926,6,'craft\\elements\\Entry',1,0,'2021-11-08 04:14:55','2021-11-08 04:14:55',NULL,NULL,'f8187367-ce5c-4d4b-b50e-814308194717'),(74032,40506,NULL,57927,6,'craft\\elements\\Entry',1,0,'2021-11-08 04:17:49','2021-11-08 04:17:49',NULL,NULL,'ad718a99-aa75-4d0e-89dc-eaca894a4f1e'),(74033,NULL,NULL,NULL,NULL,'Solspace\\Freeform\\Elements\\Submission',1,0,'2021-11-08 23:27:12','2021-11-08 23:27:12',NULL,NULL,'65d41d4a-835e-4233-8457-689d5271ae26'),(74034,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-11-09 00:00:56','2023-03-09 04:30:48',NULL,NULL,'d351c25f-0e58-4a1d-917a-befa8dd83b8a'),(74035,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-11-09 00:03:18','2023-03-09 04:25:51',NULL,NULL,'f586dc3a-2476-4e9d-9c9d-06fa008ffd49'),(74037,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-11-09 00:11:20','2023-03-09 04:38:53',NULL,NULL,'d7fd141d-4362-4bff-916a-5ba1aaef5c4f'),(74038,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-11-09 00:11:47','2021-11-09 00:11:47',NULL,NULL,'537d2838-76da-4c1b-9a45-97e3e97a9d3c'),(74039,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-11-09 00:12:44','2023-03-09 04:27:18',NULL,NULL,'a0c492b4-5273-4f43-b93c-fc64626daf11'),(74040,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-11-09 00:13:22','2021-11-09 00:13:22',NULL,NULL,'c57f3242-7f0f-45df-b453-2717d874a07e'),(74041,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-11-09 00:13:46','2021-11-09 00:13:46',NULL,NULL,'4d3ac446-8802-4f7b-bde8-2fd48a745d11'),(74042,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-11-09 00:14:09','2023-03-09 04:26:52',NULL,NULL,'17196948-9ce6-4fcc-a05e-38c081c278a4'),(74043,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-11-09 00:14:39','2023-03-09 04:27:00',NULL,NULL,'4d576460-77f1-4f0f-aaa9-d3af4671f527'),(74044,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-11-09 00:15:47','2023-03-09 04:27:24',NULL,NULL,'5db7c24f-94ee-43c9-816d-d1bcfbe90519'),(74045,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-11-09 00:16:14','2023-03-09 04:27:51',NULL,NULL,'c1fdc34d-2344-4e20-9035-f7cabe5a0374'),(74046,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-11-09 00:16:39','2021-11-09 00:16:39',NULL,NULL,'78ed4418-1f62-4c3d-b2c9-2869eb24a195'),(74047,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-11-09 00:17:04','2023-03-09 04:27:58',NULL,NULL,'af2c4fc6-dc6c-40a0-8ce8-e50453a504c9'),(74049,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-11-09 00:17:58','2023-03-09 04:27:41',NULL,NULL,'775d7e80-e3f4-4885-93b7-7281798af9dc'),(74050,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-11-09 00:18:21','2023-03-09 04:28:12',NULL,NULL,'86b61b47-dc74-4739-8fe3-b9b632b1593e'),(74051,NULL,NULL,NULL,54,'craft\\elements\\GlobalSet',1,0,'2021-11-09 00:39:42','2021-11-15 01:17:44',NULL,NULL,'afd1eab8-39ff-4942-9c34-eb8f18d0d991'),(74052,44879,NULL,57928,50,'craft\\elements\\Entry',1,0,'2021-11-09 00:40:15','2021-11-09 00:40:15',NULL,NULL,'4c941f53-83b0-4ef4-8dcf-0a2f7b315c7c'),(74053,51531,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-09 00:40:15','2021-11-09 00:40:15',NULL,NULL,'97e37e27-84a6-48f3-833f-0d7c94153420'),(74054,45249,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-09 00:40:16','2021-11-09 00:40:16',NULL,NULL,'bb66f7db-9c03-4bd9-b3ac-80eea98fda1d'),(74055,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-09 00:40:16','2021-11-09 00:40:16',NULL,NULL,'5eb0c79f-bff9-447d-898e-928bb30f0eba'),(74056,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-09 00:40:16','2021-11-09 00:40:16',NULL,NULL,'8481a7b1-370d-493a-8c2b-10cdedca7f40'),(74057,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-09 00:40:16','2021-11-09 00:40:16',NULL,NULL,'8d3a3daf-e7fe-4a44-aba4-b2e032d13fc8'),(74058,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-09 00:40:16','2021-11-09 00:40:16',NULL,NULL,'5e512f64-3a24-4980-9ebd-47ba94597083'),(74059,20379,NULL,57929,23,'craft\\elements\\Entry',1,0,'2021-11-09 00:40:45','2021-11-09 00:40:45',NULL,NULL,'68a1a2d4-4dd3-4ea2-8e41-7d764fe962f9'),(74060,21297,NULL,57930,34,'craft\\elements\\Entry',1,0,'2021-11-09 00:41:42','2021-11-09 00:41:42',NULL,NULL,'61237024-9f20-4842-b9f7-d8add40e5365'),(74061,NULL,NULL,NULL,NULL,'Solspace\\Freeform\\Elements\\Submission',1,0,'2021-11-09 01:00:28','2021-11-09 01:00:28',NULL,NULL,'1f3ef1ee-6d2d-4976-bec6-ed94ff91f1c7'),(74069,44879,NULL,57931,50,'craft\\elements\\Entry',1,0,'2021-11-09 01:19:35','2021-11-09 01:19:35',NULL,NULL,'71ea861a-ea3b-49b5-b8f7-b937a132a195'),(74070,51531,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-09 01:19:36','2021-11-09 01:19:36',NULL,NULL,'174a7240-f8f7-4e2a-89f7-52e9042114bf'),(74071,45249,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-09 01:19:36','2021-11-09 01:19:36',NULL,NULL,'e6a9c2e8-d073-4721-815c-3f1d8fc0bb88'),(74072,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-09 01:19:36','2021-11-09 01:19:36',NULL,NULL,'03d91647-5d98-40cf-83ad-e182897d3526'),(74073,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-09 01:19:36','2021-11-09 01:19:36',NULL,NULL,'2a60c368-fd76-4e11-888c-5ddb1aa6f314'),(74074,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-09 01:19:36','2021-11-09 01:19:36',NULL,NULL,'fc728915-1911-47ed-b44d-36936c28bf3e'),(74075,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-09 01:19:36','2021-11-09 01:19:36',NULL,NULL,'f33a0008-bd82-47e2-83f2-c04283d8b111'),(74076,44879,NULL,57932,50,'craft\\elements\\Entry',1,0,'2021-11-09 01:20:05','2021-11-09 01:20:06',NULL,NULL,'6ab882b0-b33e-4c6d-9099-2aa795c471dd'),(74077,51531,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-09 01:20:07','2021-11-09 01:20:07',NULL,NULL,'546bf9ea-b0a3-4a36-a900-15e43c0b951b'),(74078,45249,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-09 01:20:07','2021-11-09 01:20:07',NULL,NULL,'95775e18-0400-4e75-8496-c9fb19ea1c43'),(74079,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-09 01:20:07','2021-11-09 01:20:07',NULL,NULL,'524ed978-ae9b-4c21-bf26-d9bdb9fcec45'),(74080,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-09 01:20:07','2021-11-09 01:20:07',NULL,NULL,'8548e856-0c09-4127-9357-787eb6402bd4'),(74081,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-09 01:20:07','2021-11-09 01:20:07',NULL,NULL,'a3ba36ee-6017-4755-8554-732d575a293b'),(74082,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-09 01:20:07','2021-11-09 01:20:07',NULL,NULL,'0c967983-4912-4e78-aae3-a76cb2208fdc'),(74084,NULL,NULL,NULL,NULL,'Solspace\\Freeform\\Elements\\Submission',1,0,'2021-11-09 01:27:07','2021-11-09 01:27:07',NULL,NULL,'f5437359-a9ce-41d8-b4c8-f39af990c091'),(74085,20379,NULL,57933,23,'craft\\elements\\Entry',1,0,'2021-11-09 01:27:18','2021-11-09 01:27:18',NULL,NULL,'4a6c0716-13be-49ad-9e80-cd8396c714cd'),(74087,21297,NULL,57934,34,'craft\\elements\\Entry',1,0,'2021-11-09 01:27:34','2021-11-09 01:27:34',NULL,NULL,'b5b8481c-3231-4163-ade4-bd2773bb987f'),(74098,44879,NULL,57936,50,'craft\\elements\\Entry',1,0,'2021-11-09 01:32:14','2021-11-09 01:32:15',NULL,NULL,'5da75f39-c73f-4d04-9ba8-d0fb96d609a0'),(74099,51531,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-09 01:32:16','2021-11-09 01:32:16',NULL,NULL,'24d7a655-3aef-48bd-a89e-a3158a02f5a7'),(74100,45249,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-09 01:32:16','2021-11-09 01:32:16',NULL,NULL,'bbf9b042-7fca-452d-9ab2-49ad83aab7ac'),(74101,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-09 01:32:16','2021-11-09 01:32:16',NULL,NULL,'9153d588-4b73-49c0-ba8f-6f558a744dfb'),(74102,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-09 01:32:16','2021-11-09 01:32:16',NULL,NULL,'b449e9a3-1fe6-4415-8690-e919494f710d'),(74103,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-09 01:32:17','2021-11-09 01:32:17',NULL,NULL,'887b780f-a452-4896-adba-08b4c9c56250'),(74104,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-09 01:32:17','2021-11-09 01:32:17',NULL,NULL,'de7ad7e1-db5a-4994-94b1-2d891f7df67b'),(74105,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-11-09 01:34:39','2021-11-09 01:34:39',NULL,NULL,'8b1e7f5e-2005-489e-bcdb-582a24b9fbaf'),(74107,48003,NULL,57937,12,'craft\\elements\\Entry',1,0,'2021-11-09 01:39:33','2021-11-09 01:39:33',NULL,NULL,'0d02d1b6-6274-4b31-a06b-899befb6acec'),(74109,28040,NULL,57938,12,'craft\\elements\\Entry',1,0,'2021-11-09 01:49:48','2021-11-09 01:49:48',NULL,NULL,'b2200c2b-7073-493b-ac7b-604da0404ac7'),(74111,28040,NULL,57939,12,'craft\\elements\\Entry',1,0,'2021-11-09 01:53:02','2021-11-09 01:53:02',NULL,NULL,'6205fef8-a382-4cd1-86db-9ae60db61f5b'),(74113,17692,NULL,57940,12,'craft\\elements\\Entry',1,0,'2021-11-09 01:54:49','2021-11-09 01:54:49',NULL,NULL,'b46dfa5d-6858-4ced-aabe-9f95f5f2da8f'),(74115,17692,NULL,57941,12,'craft\\elements\\Entry',1,0,'2021-11-09 01:55:40','2021-11-09 01:55:40',NULL,NULL,'04aed781-1cf8-4d94-b61f-dbd679a0cb4b'),(74117,17690,NULL,57942,12,'craft\\elements\\Entry',1,0,'2021-11-09 01:56:33','2021-11-09 01:56:33',NULL,NULL,'0196c362-ace2-41f5-94a6-ebe9fa04f799'),(74119,17688,NULL,57943,12,'craft\\elements\\Entry',1,0,'2021-11-09 01:57:07','2021-11-09 01:57:07',NULL,NULL,'d42ec257-b3c6-4acc-b134-bfa7bda47466'),(74121,17686,NULL,57944,12,'craft\\elements\\Entry',1,0,'2021-11-09 01:57:32','2021-11-09 01:57:32',NULL,NULL,'f933b84d-3cc8-49ca-b582-69f956c9d611'),(74123,17684,NULL,57945,12,'craft\\elements\\Entry',1,0,'2021-11-09 01:58:03','2021-11-09 01:58:03',NULL,NULL,'75f47888-9b24-4e5f-ba29-7546487924e3'),(74125,17682,NULL,57946,12,'craft\\elements\\Entry',1,0,'2021-11-09 01:58:37','2021-11-09 01:58:38',NULL,NULL,'18a0d25c-787c-4229-bcfb-c0ae6d7d7ecd'),(74127,17680,NULL,57947,12,'craft\\elements\\Entry',1,0,'2021-11-09 01:59:29','2021-11-09 01:59:29',NULL,NULL,'ab0a1ecd-5322-4e58-a702-ece8dbc4cd61'),(74129,17678,NULL,57948,12,'craft\\elements\\Entry',1,0,'2021-11-09 01:59:54','2021-11-09 01:59:54',NULL,NULL,'2f06d0b9-202d-4d2b-8257-5bce69943e32'),(74131,17660,NULL,57949,12,'craft\\elements\\Entry',1,0,'2021-11-09 02:00:48','2021-11-09 02:00:48',NULL,NULL,'8888e183-c57d-4e28-8c14-f7151f653a4c'),(74133,17654,NULL,57950,12,'craft\\elements\\Entry',1,0,'2021-11-09 02:01:18','2021-11-09 02:01:18',NULL,NULL,'209de86d-9ad7-4b6a-98c2-4d573dc721ed'),(74135,17646,NULL,57951,12,'craft\\elements\\Entry',1,0,'2021-11-09 02:01:53','2021-11-09 02:01:53',NULL,NULL,'ed9d5e5f-5632-4982-a90b-be6189873baf'),(74137,17644,NULL,57952,12,'craft\\elements\\Entry',1,0,'2021-11-09 02:02:27','2021-11-09 02:02:27',NULL,NULL,'8e4aafdf-519a-4bdc-9932-dddb1fcd585d'),(74139,17623,NULL,57953,12,'craft\\elements\\Entry',1,0,'2021-11-09 02:03:06','2021-11-09 02:03:06',NULL,NULL,'47ff3949-ac56-43f9-9512-c4de3fd1df59'),(74143,44981,NULL,57955,6,'craft\\elements\\Entry',1,0,'2021-11-09 02:05:30','2021-11-09 02:05:30',NULL,NULL,'67c04b99-a698-46a5-b6a4-405c29555c0b'),(74145,44862,NULL,57956,6,'craft\\elements\\Entry',1,0,'2021-11-09 02:06:04','2021-11-09 02:06:04',NULL,NULL,'d60ba35b-ac5d-461a-9dc7-8d9f3804a308'),(74147,44849,NULL,57957,6,'craft\\elements\\Entry',1,0,'2021-11-09 02:06:46','2021-11-09 02:06:47',NULL,NULL,'139cf8e7-1038-4d12-9a54-9606bf7f78ea'),(74149,44845,NULL,57958,6,'craft\\elements\\Entry',1,0,'2021-11-09 02:07:46','2021-11-09 02:07:46',NULL,NULL,'95c9eb5b-b8a3-4160-a83e-40fad995ebf5'),(74150,NULL,NULL,NULL,NULL,'Solspace\\Freeform\\Elements\\Submission',1,0,'2021-11-09 03:57:36','2021-11-09 03:57:36',NULL,NULL,'6ba7c639-cb6a-4d2f-bbdb-a64e6becdacc'),(74153,20379,NULL,57959,23,'craft\\elements\\Entry',1,0,'2021-11-09 05:39:48','2021-11-09 05:39:48',NULL,NULL,'9ca145ec-3b32-4a05-b745-f645c02599df'),(74156,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-11-09 06:10:26','2023-03-09 04:26:46',NULL,NULL,'8ebb5c60-4068-46ae-9b62-6f76d831aa3c'),(74157,NULL,NULL,NULL,NULL,'Solspace\\Freeform\\Elements\\Submission',1,0,'2021-11-09 11:55:32','2021-11-09 11:55:32',NULL,NULL,'59535e57-99b8-48fc-ba17-838dcbf9ec9f'),(74158,NULL,NULL,NULL,NULL,'Solspace\\Freeform\\Elements\\Submission',1,0,'2021-11-09 12:03:12','2021-11-09 12:03:12',NULL,NULL,'805e36dd-5936-4d40-8e92-59a712ef1e3e'),(74159,NULL,NULL,NULL,NULL,'Solspace\\Freeform\\Elements\\Submission',1,0,'2021-11-09 18:04:07','2021-11-09 18:04:07',NULL,NULL,'11e66a1c-d0f7-4a4f-b728-1db195e15627'),(74160,NULL,NULL,NULL,NULL,'Solspace\\Freeform\\Elements\\Submission',1,0,'2021-11-09 18:45:31','2021-11-09 18:45:31',NULL,NULL,'58e66e4d-d5a3-4e14-9c50-a193fb27be45'),(74161,NULL,NULL,NULL,NULL,'Solspace\\Freeform\\Elements\\Submission',1,0,'2021-11-09 19:28:44','2021-11-09 19:28:44',NULL,NULL,'b6ccdbea-d552-40d9-8d98-bd7b473e958c'),(74162,NULL,NULL,NULL,56,'craft\\elements\\Entry',1,0,'2021-11-09 23:38:17','2022-05-17 23:19:22',NULL,NULL,'55453e2b-342a-4a83-b65f-b26dbadbb634'),(74163,74162,NULL,57960,56,'craft\\elements\\Entry',1,0,'2021-11-09 23:38:17','2021-11-09 23:38:17',NULL,NULL,'f18016f3-108e-4782-a0bb-f0ada611187b'),(74165,74162,NULL,57961,56,'craft\\elements\\Entry',1,0,'2021-11-09 23:43:14','2021-11-09 23:43:14',NULL,NULL,'9784dba9-8a33-4ecf-9ce9-43df8f64c0dc'),(74167,74162,NULL,57962,56,'craft\\elements\\Entry',1,0,'2021-11-09 23:44:01','2021-11-09 23:44:01',NULL,NULL,'16df5e2c-4f54-4600-b84c-16109dde17b6'),(74168,18164,511,NULL,6,'craft\\elements\\Entry',1,0,'2021-11-11 01:05:47','2021-11-11 01:05:48',NULL,NULL,'c3aa45a3-3882-4a90-90bc-c0c93cf31c32'),(74176,44879,NULL,57963,50,'craft\\elements\\Entry',1,0,'2021-11-12 03:23:06','2021-11-12 03:23:06',NULL,NULL,'b96ea811-edb0-4a04-859e-f51c16905c22'),(74177,51531,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:23:08','2021-11-12 03:23:08',NULL,NULL,'6d4a4abe-7792-4b31-95ff-26b876a052f1'),(74178,45249,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:23:08','2021-11-12 03:23:08',NULL,NULL,'93b3ec42-77bd-4c97-b517-7d9a8e61fa39'),(74179,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:23:08','2021-11-12 03:23:08',NULL,NULL,'79855f74-838e-4ff0-b5ff-f5912c685f49'),(74180,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:23:08','2021-11-12 03:23:08',NULL,NULL,'4a49cf86-de05-4c42-9b53-a53d6b5bf611'),(74181,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:23:08','2021-11-12 03:23:08',NULL,NULL,'c58ec900-4187-486c-aa0e-f335d8bff612'),(74182,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:23:08','2021-11-12 03:23:08',NULL,NULL,'035a8bde-3483-437b-acbe-db26c416524d'),(74190,44879,NULL,57964,50,'craft\\elements\\Entry',1,0,'2021-11-12 03:23:33','2021-11-12 03:23:33',NULL,NULL,'01ea28cc-0b3a-426b-b4d3-09418dbb9d36'),(74191,51531,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:23:35','2021-11-12 03:23:35',NULL,NULL,'8027e2c8-37fd-48a4-816a-b8dd0059fe41'),(74192,45249,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:23:35','2021-11-12 03:23:35',NULL,NULL,'d671433d-689b-4582-ade6-a9a8ec3c73a6'),(74193,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:23:35','2021-11-12 03:23:35',NULL,NULL,'3af58d76-bec9-4194-9490-4fbb2bd061e4'),(74194,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:23:35','2021-11-12 03:23:35',NULL,NULL,'508e82b3-927f-4b18-98e6-7d451b6bce03'),(74195,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:23:35','2021-11-12 03:23:35',NULL,NULL,'6646dc63-faab-4ece-bfe7-a442a3a31464'),(74196,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:23:35','2021-11-12 03:23:35',NULL,NULL,'2cff7436-d0b1-469c-827c-bcd0f93b4fec'),(74204,44879,NULL,57965,50,'craft\\elements\\Entry',1,0,'2021-11-12 03:23:50','2021-11-12 03:23:50',NULL,NULL,'2f823330-ea1d-4677-92dd-3dfffc4a6c75'),(74205,51531,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:23:52','2021-11-12 03:23:52',NULL,NULL,'7343da78-c3b5-4cc7-8deb-e456c5cf13af'),(74206,45249,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:23:52','2021-11-12 03:23:52',NULL,NULL,'f7c17c7c-482a-4468-8d10-0bc9c9f97dd8'),(74207,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:23:52','2021-11-12 03:23:52',NULL,NULL,'a12131cf-9557-4b7d-874b-f69d370faa00'),(74208,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:23:52','2021-11-12 03:23:52',NULL,NULL,'6657b69e-6184-4b7d-92e0-b6566db0b57b'),(74209,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:23:52','2021-11-12 03:23:52',NULL,NULL,'ce735608-0fe1-4a91-a194-e0310bfb9aeb'),(74210,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:23:52','2021-11-12 03:23:52',NULL,NULL,'4f7b0472-8777-4dd3-9e8b-13ceb55e5981'),(74211,44879,NULL,57966,50,'craft\\elements\\Entry',1,0,'2021-11-12 03:24:11','2021-11-12 03:24:11',NULL,NULL,'8ce16734-29b2-4f48-80ca-800610792c6d'),(74212,51531,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:24:13','2021-11-12 03:24:13',NULL,NULL,'c6eb6e43-74eb-4d5a-a04e-19ec9c1a66ed'),(74213,45249,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:24:13','2021-11-12 03:24:13',NULL,NULL,'42efae03-edec-45cd-88f4-40931fcf3f57'),(74214,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:24:13','2021-11-12 03:24:13',NULL,NULL,'b40f4929-62e9-4625-a763-a4d2242a0c39'),(74215,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:24:13','2021-11-12 03:24:13',NULL,NULL,'30ec94b8-9260-4e79-a608-f319ada6479a'),(74216,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:24:13','2021-11-12 03:24:13',NULL,NULL,'5f24e4d2-5361-4c01-8e70-2fb55ae863d2'),(74217,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:24:13','2021-11-12 03:24:13',NULL,NULL,'4e6cdf1e-67e9-4f42-8e86-0303ac0ede6d'),(74219,21297,NULL,57967,34,'craft\\elements\\Entry',1,0,'2021-11-12 03:25:50','2021-11-12 03:25:50',NULL,NULL,'61c7df78-e4f3-4fd3-8a2a-f0ac235d0b09'),(74221,20379,NULL,57968,23,'craft\\elements\\Entry',1,0,'2021-11-12 03:37:32','2021-11-12 03:37:32',NULL,NULL,'963d86a9-9de6-41b3-9e00-f9e0b3586f69'),(74223,20379,NULL,57969,23,'craft\\elements\\Entry',1,0,'2021-11-12 03:39:06','2021-11-12 03:39:06',NULL,NULL,'4a8f7d55-a6b1-4df0-a69f-044f8bf8897c'),(74231,44879,NULL,57970,50,'craft\\elements\\Entry',1,0,'2021-11-12 03:41:07','2021-11-12 03:41:07',NULL,NULL,'c1b23b4a-7974-458e-b51e-7f623218ac43'),(74232,51531,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:41:09','2021-11-12 03:41:09',NULL,NULL,'10f735d6-637b-4a87-8c54-a073a755f1f4'),(74233,45249,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:41:09','2021-11-12 03:41:09',NULL,NULL,'3ac6f5c8-cad8-4a92-ad59-096b5d520d72'),(74234,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:41:09','2021-11-12 03:41:09',NULL,NULL,'67d2d161-431d-4a29-9714-72914580950d'),(74235,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:41:09','2021-11-12 03:41:09',NULL,NULL,'4735f0d5-f3a5-4f78-a940-29ddef701095'),(74236,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:41:09','2021-11-12 03:41:09',NULL,NULL,'cc753dc7-50d2-4161-b74d-f2c1487fefb1'),(74237,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:41:09','2021-11-12 03:41:09',NULL,NULL,'9dbe1134-aaa0-4f1e-a787-a4677ba1ab94'),(74245,44879,NULL,57971,50,'craft\\elements\\Entry',1,0,'2021-11-12 03:41:36','2021-11-12 03:41:36',NULL,NULL,'cb6e511f-2d3f-4442-89d6-ffc3cdf9a3b8'),(74246,51531,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:41:37','2021-11-12 03:41:37',NULL,NULL,'f5c69a9e-d5a9-4833-a7d1-6c3f51c7ad1b'),(74247,45249,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:41:37','2021-11-12 03:41:37',NULL,NULL,'d5d1458d-9c86-45c1-a888-c167b99d8936'),(74248,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:41:37','2021-11-12 03:41:37',NULL,NULL,'f8630eb5-0b36-4c91-9d0c-14c462a853ae'),(74249,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:41:37','2021-11-12 03:41:37',NULL,NULL,'d16ce69a-febf-493b-adf6-9f7db5349665'),(74250,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:41:38','2021-11-12 03:41:38',NULL,NULL,'440f4a9a-9e42-4908-ab09-cdb99d8a679d'),(74251,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-12 03:41:38','2021-11-12 03:41:38',NULL,NULL,'7aa4b6f9-1d37-46fb-b137-80c297cf2077'),(74253,20379,NULL,57972,23,'craft\\elements\\Entry',1,0,'2021-11-15 01:17:23','2021-11-15 01:17:23',NULL,NULL,'429103d1-6d1a-4b40-8474-649b515fdbda'),(74254,74162,NULL,57973,56,'craft\\elements\\Entry',1,0,'2021-11-15 01:17:25','2021-11-15 01:17:25',NULL,NULL,'37c5f520-13a1-4545-875e-c3fc518f6db1'),(74255,21297,NULL,57974,34,'craft\\elements\\Entry',1,0,'2021-11-15 01:17:26','2021-11-15 01:17:26',NULL,NULL,'8f9625fc-17c6-4b5f-a606-1c605d70d424'),(74256,44879,NULL,57975,50,'craft\\elements\\Entry',1,0,'2021-11-15 01:17:28','2021-11-15 01:17:28',NULL,NULL,'147489ed-725f-474a-b3ac-df722cae0797'),(74257,51531,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-15 01:17:30','2021-11-15 01:17:30',NULL,NULL,'f92b1f45-d4d5-43eb-9660-e4ac2e72f86d'),(74258,45249,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-15 01:17:30','2021-11-15 01:17:30',NULL,NULL,'de7ca3e5-a194-4b25-bd4b-b0933d42e3e1'),(74259,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-15 01:17:30','2021-11-15 01:17:30',NULL,NULL,'9190dcbe-191f-44cc-9447-380256c407f3'),(74260,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-15 01:17:30','2021-11-15 01:17:30',NULL,NULL,'0024029c-a812-412c-a318-e4c5043489c5'),(74261,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-15 01:17:30','2021-11-15 01:17:30',NULL,NULL,'9bfe8895-53f4-45e4-bb07-6eca4f461be1'),(74262,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-15 01:17:30','2021-11-15 01:17:30',NULL,NULL,'10413203-f9a9-43bc-928c-02cbd6fed2a5'),(74263,48262,NULL,57976,52,'craft\\elements\\Entry',1,0,'2021-11-15 01:17:30','2021-11-15 01:17:30',NULL,NULL,'51b3ba58-2de8-4a4e-a0ad-cc139ef6d5b4'),(74264,21297,NULL,57977,34,'craft\\elements\\Entry',1,0,'2021-11-15 01:17:36','2021-11-15 01:17:36',NULL,NULL,'56d3d08c-4362-45e7-ae4b-70cb18a87300'),(74265,44879,NULL,57978,50,'craft\\elements\\Entry',1,0,'2021-11-15 01:17:38','2021-11-15 01:17:38',NULL,NULL,'1b75782d-7fc4-49c0-9a6e-8dcbe363df1c'),(74266,51531,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-15 01:17:39','2021-11-15 01:17:39',NULL,NULL,'601b09ca-27d7-4759-8873-3c505b4fbeb7'),(74267,45249,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-15 01:17:39','2021-11-15 01:17:39',NULL,NULL,'a4db5ddf-f94c-4891-b286-be40b8d6ec3d'),(74268,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-15 01:17:39','2021-11-15 01:17:39',NULL,NULL,'3a645d0f-a02e-44c4-a86f-cfe1f4cff2cd'),(74269,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-15 01:17:39','2021-11-15 01:17:39',NULL,NULL,'556e80cc-8abc-4d94-be25-1569b0f32a8e'),(74270,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-15 01:17:39','2021-11-15 01:17:39',NULL,NULL,'ac1e2472-92fd-422f-b592-c97f1e71d884'),(74271,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-15 01:17:39','2021-11-15 01:17:39',NULL,NULL,'2d68f0ce-a8f6-4707-b17b-aa8e6c1a929d'),(74272,48262,NULL,57979,52,'craft\\elements\\Entry',1,0,'2021-11-15 01:17:40','2021-11-15 01:17:40',NULL,NULL,'900d14ad-5368-4457-b473-bf51de7d19a2'),(74273,20379,NULL,57980,23,'craft\\elements\\Entry',1,0,'2021-11-15 01:17:41','2021-11-15 01:17:41',NULL,NULL,'0c87320a-f6e2-4dc8-9ba7-1e42918b124f'),(74274,74162,NULL,57981,56,'craft\\elements\\Entry',1,0,'2021-11-15 01:17:42','2021-11-15 01:17:42',NULL,NULL,'783fc72e-c417-4746-9151-d53b176ca782'),(74275,74162,521,NULL,56,'craft\\elements\\Entry',1,0,'2021-11-15 01:48:59','2021-11-15 01:48:59',NULL,NULL,'3ec39fa8-7d2c-496d-abb6-d17d51bcff2a'),(74276,NULL,NULL,NULL,60,'craft\\elements\\Entry',1,0,'2021-11-15 01:51:50','2022-12-01 07:16:43',NULL,NULL,'bc3a04b0-afac-43ac-93b9-8a228c25ea6a'),(74277,74276,NULL,57982,60,'craft\\elements\\Entry',1,0,'2021-11-15 01:51:50','2021-11-15 01:51:50',NULL,NULL,'99d58caa-f950-461d-a4ea-0007c2707d88'),(74278,74276,NULL,57983,60,'craft\\elements\\Entry',1,0,'2021-11-15 01:52:01','2021-11-15 01:52:01',NULL,NULL,'6cb89b98-2e11-4f0a-a19a-b714b1e0bf5c'),(74279,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-11-15 01:52:56','2021-11-15 01:52:56',NULL,NULL,'895cb9fd-43f9-4cd8-8aff-b23559a35245'),(74281,74276,NULL,57984,60,'craft\\elements\\Entry',1,0,'2021-11-15 01:53:35','2021-11-15 01:53:35',NULL,NULL,'7088c6da-6181-4885-9ef5-b45af0dd8b22'),(74282,74276,NULL,57985,60,'craft\\elements\\Entry',1,0,'2021-11-15 02:16:09','2021-11-15 02:16:09',NULL,NULL,'a11740fe-a82d-4382-b407-1e54e92f50b4'),(74284,74276,NULL,57986,60,'craft\\elements\\Entry',1,0,'2021-11-15 02:16:54','2021-11-15 02:16:54',NULL,NULL,'b603e311-3d0b-4920-b046-95a0f3fd7753'),(74286,NULL,NULL,NULL,61,'craft\\elements\\Entry',1,0,'2021-11-24 05:25:54','2022-05-17 23:19:12',NULL,NULL,'7d0392eb-88bd-4a36-b32b-c1cc581d1fc1'),(74287,74286,NULL,57987,61,'craft\\elements\\Entry',1,0,'2021-11-24 05:25:54','2021-11-24 05:25:54',NULL,NULL,'37f93f05-99ba-457a-88f6-e3b7cf98ca29'),(74288,74286,NULL,57988,61,'craft\\elements\\Entry',1,0,'2021-11-24 05:26:17','2021-11-24 05:26:17',NULL,NULL,'3e601a21-3528-4736-9a3f-b6a0e5dae061'),(74289,74286,NULL,57989,61,'craft\\elements\\Entry',1,0,'2021-11-24 05:28:19','2021-11-24 05:28:19',NULL,NULL,'5596f393-5a00-44ee-9fa2-b5cce7ff8e66'),(74291,74286,NULL,57990,61,'craft\\elements\\Entry',1,0,'2021-11-24 05:29:52','2021-11-24 05:29:52',NULL,NULL,'875360ed-5c8f-4ce9-9135-d1f3e2bbec8c'),(74293,74286,NULL,57991,61,'craft\\elements\\Entry',1,0,'2021-11-24 05:30:59','2021-11-24 05:30:59',NULL,NULL,'77b921d6-09b5-4d74-b85c-1ccb0e95c4af'),(74300,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-11-25 23:54:42','2021-11-25 23:54:42',NULL,NULL,'09d02854-fed6-4a92-bc26-2d34ff1a5cb8'),(74301,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-11-25 23:54:56','2021-11-25 23:54:56',NULL,NULL,'47942783-0d2b-4458-bf7c-bceaa53b0a41'),(74302,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-11-25 23:55:12','2021-11-25 23:55:12',NULL,NULL,'825ed07d-7b8c-4fff-a12c-7c5e0955f6bd'),(82294,48262,NULL,65826,52,'craft\\elements\\Entry',1,0,'2021-11-30 00:08:02','2021-11-30 00:08:02',NULL,NULL,'88f88115-a9d3-4a57-a9ae-a0c2d8b8ff65'),(82296,48262,NULL,65827,52,'craft\\elements\\Entry',1,0,'2021-11-30 00:08:35','2021-11-30 00:08:35',NULL,NULL,'a23617ae-8df4-462b-8d5d-6bd0091ae6cf'),(84909,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-12-01 00:22:13','2021-12-01 01:33:12',NULL,NULL,'baa0c0e9-219d-40d0-a963-f91fcacd699d'),(84911,74276,NULL,68436,60,'craft\\elements\\Entry',1,0,'2021-12-01 00:24:30','2021-12-01 00:24:30',NULL,NULL,'c5be99c7-2e73-4f16-9d7a-5e90965f70e1'),(84914,74276,NULL,68437,60,'craft\\elements\\Entry',1,0,'2021-12-01 00:43:31','2021-12-01 00:43:31',NULL,NULL,'e9eeef6c-1b85-4746-9aa5-019cdf34f362'),(84915,74276,NULL,68438,60,'craft\\elements\\Entry',1,0,'2021-12-01 00:46:59','2021-12-01 00:46:59',NULL,NULL,'b49e042d-0c5d-45f5-9bc9-c0881daf2bc7'),(84917,74276,NULL,68439,60,'craft\\elements\\Entry',1,0,'2021-12-01 00:48:39','2021-12-01 00:48:39',NULL,NULL,'4eb600a9-dc53-4cca-b443-1f3bd63c641b'),(84920,74276,NULL,68440,60,'craft\\elements\\Entry',1,0,'2021-12-01 01:35:03','2021-12-01 01:35:03',NULL,NULL,'1b1b0abd-e15a-467f-87b6-a28e9500b864'),(84922,74276,NULL,68441,60,'craft\\elements\\Entry',1,0,'2021-12-01 01:40:10','2021-12-01 01:40:10',NULL,NULL,'28ba71c4-9deb-451f-94a5-3473a7e48f9e'),(84923,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-12-01 01:44:36','2021-12-01 01:44:36',NULL,NULL,'3948225f-0b77-419b-8258-2cd43e756ea6'),(84925,74276,NULL,68442,60,'craft\\elements\\Entry',1,0,'2021-12-01 01:45:31','2021-12-01 01:45:31',NULL,NULL,'287e657d-afbc-41c6-b274-63938f4f5559'),(84926,NULL,NULL,NULL,NULL,'Solspace\\Freeform\\Elements\\Submission',1,0,'2021-12-03 04:28:57','2021-12-03 04:28:57',NULL,NULL,'b8c9017b-4c23-4227-9f53-22fd51cf2b9e'),(87584,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-12-09 23:53:35','2021-12-09 23:53:35',NULL,NULL,'b3744e9c-008e-441a-9b5c-cc77f79b6dcc'),(87592,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-12-10 00:24:08','2021-12-10 00:24:08',NULL,NULL,'7b4abe8f-d904-487f-a46c-9cf9829d55f2'),(87594,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-12-10 00:24:44','2021-12-10 00:24:44',NULL,NULL,'5556a3ea-218c-4891-8493-9d6c60471910'),(87595,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-12-10 00:27:26','2021-12-10 00:27:26',NULL,NULL,'0620f970-6502-41ef-bbc7-c4f952f63838'),(87596,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-12-10 00:27:54','2021-12-10 00:27:54',NULL,NULL,'f73379c0-1b96-4bc9-b2dd-86349411b84f'),(87597,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-12-10 00:28:09','2021-12-10 00:28:09',NULL,NULL,'671344c0-5e30-465d-9e5f-a6d951021be6'),(87599,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-12-10 00:32:53','2021-12-10 00:32:53',NULL,NULL,'c80be227-6dae-4be6-9711-b93a38223d73'),(87601,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-12-10 00:35:21','2021-12-10 00:35:21',NULL,NULL,'8d685bd1-04dc-44bd-996f-c2b0845b4e5d'),(87602,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-12-10 00:35:26','2021-12-10 00:35:26',NULL,NULL,'fa88184c-b0ca-48b7-b4da-ec66cbe61310'),(87607,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-12-10 01:00:26','2021-12-10 01:00:26',NULL,NULL,'117963d1-164d-434d-9d25-28e14a144844'),(87608,NULL,NULL,NULL,62,'craft\\elements\\Entry',1,0,'2021-12-10 01:01:56','2021-12-10 03:35:22',NULL,NULL,'8ef1a33a-16ef-45d0-ab65-62b75ecd8b3f'),(87609,87608,NULL,71081,62,'craft\\elements\\Entry',1,0,'2021-12-10 01:01:56','2021-12-10 01:01:56',NULL,NULL,'07e2cc11-e883-44ee-9a61-7ff9699414ee'),(87611,87608,NULL,71082,62,'craft\\elements\\Entry',1,0,'2021-12-10 01:06:29','2021-12-10 01:06:29',NULL,NULL,'54c28521-a67a-4275-90ff-d96eeb70bcc0'),(87613,87608,NULL,71083,62,'craft\\elements\\Entry',1,0,'2021-12-10 01:13:40','2021-12-10 01:13:40',NULL,NULL,'35f3d77e-0bb7-4f74-82fa-f3f8a9ef4059'),(87615,87608,NULL,71084,62,'craft\\elements\\Entry',1,0,'2021-12-10 01:32:12','2021-12-10 01:32:12',NULL,NULL,'ebb3331a-6ab3-4b3b-9b89-bc3c44bb6a87'),(87617,87608,NULL,71085,62,'craft\\elements\\Entry',1,0,'2021-12-10 01:33:17','2021-12-10 01:33:17',NULL,NULL,'1c308ebe-23aa-4b44-98a3-64e7b96a58d8'),(87619,87608,NULL,71086,62,'craft\\elements\\Entry',1,0,'2021-12-10 01:49:51','2021-12-10 01:49:51',NULL,NULL,'7cc3e61d-2800-4cde-ae73-84fbc57ca274'),(87622,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-12-10 01:59:14','2022-06-23 03:27:24',NULL,NULL,'04de8216-d18e-4014-a2f8-5c1f0aa3c97b'),(87623,87608,NULL,71088,62,'craft\\elements\\Entry',1,0,'2021-12-10 01:59:34','2021-12-10 01:59:34',NULL,NULL,'da21e9c1-5e2b-4cea-b8fe-b450ffdfd6b9'),(87625,87608,NULL,71089,62,'craft\\elements\\Entry',1,0,'2021-12-10 03:20:23','2021-12-10 03:20:23',NULL,NULL,'26708bb1-d29f-43fc-9f05-d01de284bfee'),(87627,87608,NULL,71090,62,'craft\\elements\\Entry',1,0,'2021-12-10 03:27:21','2021-12-10 03:27:21',NULL,NULL,'7cb93199-69a5-4eb7-a27a-e208e72c270d'),(87629,87608,NULL,71091,62,'craft\\elements\\Entry',1,0,'2021-12-10 03:32:42','2021-12-10 03:32:43',NULL,NULL,'5ca23891-4231-49a0-93b8-705612a42f41'),(87632,87608,NULL,71092,62,'craft\\elements\\Entry',1,0,'2021-12-10 03:35:22','2021-12-10 03:35:22',NULL,NULL,'1a7da262-4299-4e57-a17e-4a0be13a1912'),(87633,NULL,NULL,NULL,NULL,'Solspace\\Freeform\\Elements\\Submission',1,0,'2021-12-12 21:21:50','2021-12-12 21:21:50',NULL,NULL,'a771cab3-b373-42f6-93ab-ce4e1db0bb8b'),(94201,58762,568,NULL,6,'craft\\elements\\Entry',0,0,'2021-12-21 04:45:32','2021-12-21 06:38:04',NULL,NULL,'49017de8-df42-4a2c-a99a-624619d94635'),(94202,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-12-21 05:50:22','2021-12-21 05:50:22',NULL,NULL,'51ab9057-c98e-400d-9ff4-2d25d5a8da0e'),(94203,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2021-12-21 06:37:48','2021-12-21 06:37:48',NULL,NULL,'12532763-1c52-45a8-a1e4-efc27bdc964a'),(94204,NULL,NULL,NULL,NULL,'Solspace\\Freeform\\Elements\\Submission',1,0,'2021-12-21 11:28:31','2021-12-21 11:28:31',NULL,NULL,'b9609073-393d-4133-8e55-398298152098'),(94206,20379,NULL,77601,23,'craft\\elements\\Entry',1,0,'2022-01-06 01:18:14','2022-01-06 01:18:14',NULL,NULL,'c697b403-f57b-48c6-8c78-70e7f773b87c'),(94207,58762,NULL,77602,6,'craft\\elements\\Entry',0,0,'2022-01-06 06:52:11','2022-01-06 06:52:11',NULL,NULL,'676395a2-07d8-4db4-9837-7a620fad3892'),(94209,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-01-06 23:35:22','2022-01-06 23:35:22',NULL,NULL,'8545c19b-1bd0-4548-b965-f956557eed61'),(94210,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-01-07 01:37:53','2022-01-07 01:37:53',NULL,NULL,'bd98eeb3-e9af-442d-9222-afc8ed06f5d7'),(94211,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-01-07 01:37:58','2022-01-07 01:37:58',NULL,NULL,'6a6dc04a-30ec-46cf-af1a-fa97c549d238'),(94212,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-01-07 01:38:04','2022-01-07 01:38:04',NULL,NULL,'bc94ecd5-4654-4b31-ab68-4971c5cb5e7d'),(94213,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-01-07 01:38:08','2022-01-07 01:38:08',NULL,NULL,'c156a4be-0a28-478d-982e-51eba060e46f'),(94214,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-01-07 01:38:18','2022-01-07 01:38:18',NULL,NULL,'f82553b1-bb47-4e01-a6bd-42adf7887c12'),(94215,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-01-07 01:38:25','2022-01-07 01:38:25',NULL,NULL,'7696c086-d3f1-4459-b17d-e11adf57a5d4'),(94216,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-01-07 01:38:33','2022-01-07 01:38:33',NULL,NULL,'cf12e204-d728-4d92-9d21-5a22048a0130'),(94217,58762,NULL,77603,6,'craft\\elements\\Entry',0,0,'2022-01-07 01:43:10','2022-01-07 01:43:10',NULL,NULL,'0dd6887e-fc34-4d90-b294-fb43eb7060ea'),(94220,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-01-07 01:54:50','2022-01-07 01:54:50',NULL,NULL,'6315bec4-9dde-4932-a8e2-8ed5c8052a64'),(94221,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-01-07 01:54:57','2022-01-07 01:54:57',NULL,NULL,'27120f79-9a3d-4269-ad59-21f53daf9ec8'),(94222,58762,NULL,77604,6,'craft\\elements\\Entry',0,0,'2022-01-07 01:55:42','2022-01-07 01:55:42',NULL,NULL,'a9e6c3c4-d106-4761-846c-da7b765b0d1a'),(94223,NULL,NULL,NULL,4,'craft\\elements\\Entry',1,0,'2022-01-17 02:23:12','2022-01-17 03:55:38',NULL,NULL,'869fb0de-4c00-4d03-a1be-85e3678c2e22'),(94430,94223,NULL,77811,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:37:37','2022-01-17 03:37:37',NULL,NULL,'316fe67d-79fc-43ea-8fa5-2dec5bc2be1d'),(94431,94223,NULL,77812,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:37:58','2022-01-17 03:37:58',NULL,NULL,'28847897-e938-4799-a2fb-13d9ae72aa2b'),(94432,94223,NULL,77813,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:38:19','2022-01-17 03:38:19',NULL,NULL,'3f955312-83e3-4ceb-80b1-313ec0d74112'),(94433,94223,NULL,77814,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:38:40','2022-01-17 03:38:40',NULL,NULL,'ab0d91c3-7cda-4d6b-91c5-3f1f17be0fcb'),(94434,94223,NULL,77815,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:39:02','2022-01-17 03:39:02',NULL,NULL,'71e00f6c-9cfb-4e20-8035-66b918caaa6b'),(94435,94223,NULL,77816,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:39:23','2022-01-17 03:39:23',NULL,NULL,'bdf7b12e-d4bb-43ed-91be-68c8fe454b76'),(94436,94223,NULL,77817,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:39:44','2022-01-17 03:39:44',NULL,NULL,'f8c66f47-2dc9-4b8e-b5b3-a1e5af98f29a'),(94437,94223,NULL,77818,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:40:05','2022-01-17 03:40:05',NULL,NULL,'fbecd962-f2f0-4f17-a1e5-b81d804214d2'),(94438,94223,NULL,77819,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:41:14','2022-01-17 03:41:15',NULL,NULL,'c0838d4e-ddf9-43fd-9954-903014acfb0b'),(94439,94223,NULL,77820,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:41:28','2022-01-17 03:41:28',NULL,NULL,'493afad6-f76f-469e-8eba-9106dc52f563'),(94440,94223,NULL,77821,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:41:49','2022-01-17 03:41:49',NULL,NULL,'3f184db9-aedb-44df-b8fb-7fbd34393bb7'),(94441,94223,NULL,77822,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:42:10','2022-01-17 03:42:10',NULL,NULL,'1cedc614-84f3-43ef-8ff2-2d0241aadb33'),(94442,94223,NULL,77823,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:42:32','2022-01-17 03:42:32',NULL,NULL,'d19c18ee-c1c5-440f-beee-f32bfe424c11'),(94443,94223,NULL,77824,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:42:53','2022-01-17 03:42:53',NULL,NULL,'8614c607-e8c1-4332-b6cc-413c1c64def0'),(94444,94223,NULL,77825,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:43:14','2022-01-17 03:43:14',NULL,NULL,'dd95a2e4-c2ca-4b3f-ae4a-5daea5ccc6a7'),(94445,94223,NULL,77826,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:43:35','2022-01-17 03:43:35',NULL,NULL,'f26ea671-b271-4b6b-97e2-7693d727e2e8'),(94446,94223,NULL,77827,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:43:56','2022-01-17 03:43:56',NULL,NULL,'b963e59a-afe3-4c08-a9e1-077b442106a7'),(94447,94223,NULL,77828,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:44:17','2022-01-17 03:44:17',NULL,NULL,'5377b0c8-4d02-4922-b43d-63ee850fecd6'),(94448,94223,NULL,77829,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:44:39','2022-01-17 03:44:39',NULL,NULL,'6f8bc931-70ac-421c-b1dc-1ef747f05228'),(94449,94223,NULL,77830,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:45:05','2022-01-17 03:45:05',NULL,NULL,'74245cbe-971e-40b1-bcc8-de199aa1d5eb'),(94450,94223,NULL,77831,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:45:27','2022-01-17 03:45:27',NULL,NULL,'dbede4ed-19eb-4e5b-b582-db3fdfd9a838'),(94451,94223,NULL,77832,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:45:45','2022-01-17 03:45:45',NULL,NULL,'291d594f-9165-4d6a-9eb6-be3ee251fb1c'),(94452,94223,NULL,77833,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:46:05','2022-01-17 03:46:05',NULL,NULL,'29755d4f-d37b-4698-be37-b8428c35e446'),(94453,94223,NULL,77834,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:46:26','2022-01-17 03:46:26',NULL,NULL,'4b3e160b-6988-4c39-9bd0-1c2a032509d5'),(94454,94223,NULL,77835,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:46:47','2022-01-17 03:46:47',NULL,NULL,'eb5cecdb-00f7-41bc-b938-b93ae822919d'),(94455,94223,NULL,77836,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:47:09','2022-01-17 03:47:09',NULL,NULL,'0d96a0fb-0930-46db-9e62-b0ef83bb95d6'),(94456,94223,NULL,77837,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:47:30','2022-01-17 03:47:30',NULL,NULL,'fc53f70e-24df-47f6-92f8-6380af9044ad'),(94457,94223,NULL,77838,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:47:51','2022-01-17 03:47:51',NULL,NULL,'75ae73ef-e7f2-4779-8add-04cec86cf87e'),(94458,94223,NULL,77839,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:48:12','2022-01-17 03:48:12',NULL,NULL,'645f38a5-e172-43c9-8bcf-6291edc4918d'),(94459,94223,NULL,77840,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:48:33','2022-01-17 03:48:33',NULL,NULL,'6a27ca8e-64f2-4873-abda-f619648d4b71'),(94460,94223,NULL,77841,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:48:55','2022-01-17 03:48:55',NULL,NULL,'86f0a01a-57a0-4588-abbb-0d9f177f93ec'),(94461,94223,NULL,77842,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:49:16','2022-01-17 03:49:16',NULL,NULL,'4df1dc54-5d79-4bd9-8936-d100d84e1f1b'),(94462,94223,NULL,77843,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:49:37','2022-01-17 03:49:37',NULL,NULL,'c7d1bc92-98a8-419c-9c81-1feb75f24517'),(94463,94223,NULL,77844,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:49:59','2022-01-17 03:49:59',NULL,NULL,'f5267c7e-2866-4f17-96f5-73f0f3743205'),(94464,94223,NULL,77845,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:50:20','2022-01-17 03:50:20',NULL,NULL,'e9cfad02-2cf1-409d-8d37-066c2fcf1183'),(94465,94223,NULL,77846,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:50:41','2022-01-17 03:50:41',NULL,NULL,'ca3010d0-c2cd-47d7-aae9-a3c6f2eb07bb'),(94466,94223,NULL,77847,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:51:03','2022-01-17 03:51:03',NULL,NULL,'956c7b2c-ef77-4f7d-b4d6-a0be8fe6cdce'),(94467,94223,NULL,77848,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:51:24','2022-01-17 03:51:24',NULL,NULL,'51365ae7-8053-4786-b48c-afc37af9de74'),(94468,94223,NULL,77849,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:51:45','2022-01-17 03:51:45',NULL,NULL,'26e0bfb4-73f1-4c6d-bc3d-6c7f9305d9af'),(94469,94223,NULL,77850,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:52:06','2022-01-17 03:52:06',NULL,NULL,'fa850f1d-2de0-4a86-9990-52859b1e910d'),(94470,94223,NULL,77851,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:52:27','2022-01-17 03:52:27',NULL,NULL,'eb16ad7a-2241-4685-b576-d67dd01c35e5'),(94471,94223,NULL,77852,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:52:49','2022-01-17 03:52:49',NULL,NULL,'b593efc9-8a4f-492a-ba07-11a2bf525d35'),(94472,94223,NULL,77853,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:53:13','2022-01-17 03:53:13',NULL,NULL,'17fd8358-3f83-423d-a429-ce2ad76247c2'),(94473,94223,NULL,77854,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:53:31','2022-01-17 03:53:31',NULL,NULL,'b4b0030b-5740-4d8f-86f0-a914cee0128d'),(94474,94223,NULL,77855,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:53:53','2022-01-17 03:53:53',NULL,NULL,'e0c39263-35ac-48df-bfc4-74a20b99fc46'),(94475,94223,NULL,77856,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:54:14','2022-01-17 03:54:14',NULL,NULL,'d932d6f8-3c5f-40e2-a66c-d8471bd6ce60'),(94476,94223,NULL,77857,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:54:35','2022-01-17 03:54:35',NULL,NULL,'3839c39b-e6cc-45e5-80be-7e48cbeef547'),(94477,94223,NULL,77858,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:54:56','2022-01-17 03:54:56',NULL,NULL,'1e5cfebd-825e-4631-8bf6-eaca2a20a192'),(94478,94223,NULL,77859,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:55:17','2022-01-17 03:55:17',NULL,NULL,'f4900f52-4003-42b9-a738-f38a599593b4'),(94479,94223,NULL,77860,4,'craft\\elements\\Entry',1,0,'2022-01-17 03:55:38','2022-01-17 03:55:38',NULL,NULL,'10606c03-f4b8-4b55-bf7a-6701f31051fa'),(97259,NULL,NULL,NULL,5,'craft\\elements\\User',1,0,'2022-01-20 03:43:01','2023-03-09 04:28:33',NULL,NULL,'724bb189-9ca0-4a18-ae90-36830bee3721'),(97260,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2022-01-20 03:43:01','2023-03-09 04:28:33',NULL,NULL,'b2b5e97c-d489-4b2e-8616-c0cc4485db5d'),(97261,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2022-01-20 03:43:01','2023-03-09 04:28:33',NULL,NULL,'e3da328e-babc-437a-a6f1-9dc3998b7cd6'),(97262,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2022-01-20 03:43:02','2023-03-09 04:28:33',NULL,NULL,'dcf00d06-5404-46fc-93ad-51cd8cf4b693'),(97263,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2022-01-20 03:43:02','2023-03-09 04:28:33',NULL,NULL,'603085c0-7b69-4f28-95cc-32ce028be226'),(97264,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2022-01-20 03:43:02','2023-03-09 04:28:33',NULL,NULL,'db0fe8f2-51cb-4a64-9775-21a158cb9091'),(97266,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-01-20 03:48:42','2023-03-09 04:27:05',NULL,NULL,'f8fae409-00f4-4a4e-a477-dc6c32a8c482'),(97267,20379,NULL,80590,23,'craft\\elements\\Entry',1,0,'2022-01-20 03:49:05','2022-01-20 03:49:05',NULL,NULL,'42a66899-ec4b-4c21-a64d-78a3d9d635fd'),(97269,20379,NULL,80591,23,'craft\\elements\\Entry',1,0,'2022-01-20 04:02:30','2022-01-20 04:02:30',NULL,NULL,'02372c1a-03ba-4e02-a84d-8578f23a0ddb'),(97271,NULL,NULL,NULL,NULL,'Solspace\\Freeform\\Elements\\Submission',1,0,'2022-01-24 13:36:48','2022-01-24 13:36:48',NULL,NULL,'40874ea8-f4d4-4702-88d8-bfec8c6773f1'),(97272,20379,NULL,80592,23,'craft\\elements\\Entry',1,0,'2022-01-27 07:08:35','2022-01-27 07:08:35',NULL,NULL,'30363395-10a1-473b-98bb-fe8dd76eda57'),(97274,38121,NULL,80593,6,'craft\\elements\\Entry',0,0,'2022-01-30 04:05:11','2022-01-30 04:05:12',NULL,NULL,'3160c3b2-a4ce-4a67-b7ae-985697563935'),(97276,58762,577,NULL,6,'craft\\elements\\Entry',0,0,'2022-02-08 03:26:34','2022-02-08 03:26:36',NULL,NULL,'d734fe9e-6151-4c86-b648-b283a0402ffc'),(97278,58762,NULL,80595,6,'craft\\elements\\Entry',1,0,'2022-02-08 03:37:36','2022-02-08 03:37:36',NULL,NULL,'fe055144-234c-4013-a339-17357eb5fdad'),(97280,58762,NULL,80596,6,'craft\\elements\\Entry',1,0,'2022-02-08 03:38:29','2022-02-08 03:38:29',NULL,NULL,'58205caf-976f-49f8-8c19-6aaba5918dce'),(97283,58762,NULL,80597,6,'craft\\elements\\Entry',1,0,'2022-02-08 03:42:40','2022-02-08 03:42:40',NULL,NULL,'8e39b296-895e-415d-98f6-89f4d6974bb2'),(97284,58762,582,NULL,6,'craft\\elements\\Entry',1,0,'2022-02-08 03:43:45','2022-02-08 03:43:46',NULL,NULL,'d2c79892-4546-408b-9af6-00136523ebe9'),(97286,58762,NULL,80598,6,'craft\\elements\\Entry',1,0,'2022-02-08 03:47:18','2022-02-08 03:47:18',NULL,NULL,'79b62943-7106-4832-b31a-1e50d902f9fd'),(97338,45298,NULL,80650,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:11:37','2022-02-08 21:11:37',NULL,NULL,'153f514b-adcf-4fc2-bc52-b55cfd4f979e'),(97339,45298,NULL,80651,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:11:57','2022-02-08 21:11:57',NULL,NULL,'51676c89-a58f-47e7-ab61-bd8b3b338a79'),(97340,45298,NULL,80652,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:12:17','2022-02-08 21:12:17',NULL,NULL,'18e6b2f9-11b0-4a14-bc92-593a9b30711b'),(97341,45298,NULL,80653,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:12:37','2022-02-08 21:12:37',NULL,NULL,'ec45d04c-9afa-4f29-8ca6-8fca2c2d3dfc'),(97342,45298,NULL,80654,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:12:57','2022-02-08 21:12:57',NULL,NULL,'dc3fa8b6-521e-4a80-9f0c-2d00831e6bb7'),(97343,45298,NULL,80655,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:13:17','2022-02-08 21:13:17',NULL,NULL,'5310d1a5-587f-43fd-b7e5-d550a216e93d'),(97344,45298,NULL,80656,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:13:37','2022-02-08 21:13:37',NULL,NULL,'a4a58ada-8594-4750-b239-612c0900abe1'),(97345,45298,NULL,80657,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:13:57','2022-02-08 21:13:57',NULL,NULL,'80612671-28e1-4902-aff9-07d1684e1cbc'),(97346,45298,NULL,80658,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:14:17','2022-02-08 21:14:17',NULL,NULL,'0bda8e95-5f1f-42fd-b16a-2e532e35c6b6'),(97347,45298,NULL,80659,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:14:37','2022-02-08 21:14:37',NULL,NULL,'26993d34-236d-4d3a-87fb-77901cc7b519'),(97348,45298,NULL,80660,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:14:57','2022-02-08 21:14:57',NULL,NULL,'19054a62-a0e9-458b-84ff-12bd61717c5a'),(97349,45298,NULL,80661,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:15:17','2022-02-08 21:15:17',NULL,NULL,'82039295-6fc1-448a-a822-2be4904052f5'),(97350,45298,NULL,80662,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:15:37','2022-02-08 21:15:37',NULL,NULL,'194657ab-f8dd-4a84-b114-4b08c344b183'),(97351,45298,NULL,80663,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:15:57','2022-02-08 21:15:57',NULL,NULL,'72fc993a-76bc-421e-8db8-674536a7c772'),(97352,45298,NULL,80664,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:16:17','2022-02-08 21:16:17',NULL,NULL,'894d20b6-7132-459b-809a-fb1f4c5da438'),(97353,45298,NULL,80665,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:16:37','2022-02-08 21:16:37',NULL,NULL,'2dde7f9f-bf11-4b2e-bd8d-a85d987f9ed6'),(97354,45298,NULL,80666,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:16:57','2022-02-08 21:16:57',NULL,NULL,'7aee7fe1-0b76-47fa-abea-97df9ef3c367'),(97355,45298,NULL,80667,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:17:17','2022-02-08 21:17:17',NULL,NULL,'16d133a9-0698-42f7-a5ec-8535e0ee9f5a'),(97356,45298,NULL,80668,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:17:37','2022-02-08 21:17:37',NULL,NULL,'9bcae1f5-3bb4-4013-9555-9385d7678043'),(97357,45298,NULL,80669,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:17:57','2022-02-08 21:17:57',NULL,NULL,'63e5a6bc-3829-41c1-99e6-c7eb2f601797'),(97358,45298,NULL,80670,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:18:17','2022-02-08 21:18:17',NULL,NULL,'efdf00f1-31ef-4b51-a99c-40d1c70d418b'),(97359,45298,NULL,80671,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:18:37','2022-02-08 21:18:38',NULL,NULL,'85fda794-3edd-46d5-a068-f6d3eef952f3'),(97360,45298,NULL,80672,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:18:58','2022-02-08 21:18:58',NULL,NULL,'6885f21f-4e07-4770-834c-67f9954f8f3b'),(97361,45298,NULL,80673,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:19:17','2022-02-08 21:19:17',NULL,NULL,'a98d62a9-4cd8-4b10-8fc3-2d499bcc44c5'),(97362,45298,NULL,80674,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:19:38','2022-02-08 21:19:38',NULL,NULL,'a60ac614-6d4f-4aa0-a587-84fd42348c32'),(97363,45298,NULL,80675,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:19:58','2022-02-08 21:19:58',NULL,NULL,'bd8e090a-ea7b-49d0-b155-ae8a43482eef'),(97364,45298,NULL,80676,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:20:18','2022-02-08 21:20:18',NULL,NULL,'e2608833-3778-462f-bc7b-2187444b1c76'),(97365,45298,NULL,80677,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:20:38','2022-02-08 21:20:38',NULL,NULL,'0a5a46ff-8e79-459f-b25d-3702a19bfed5'),(97366,45298,NULL,80678,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:20:58','2022-02-08 21:20:58',NULL,NULL,'38feb8f4-7fd3-4d32-8e8b-ef8dcf63598b'),(97367,45298,NULL,80679,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:21:18','2022-02-08 21:21:18',NULL,NULL,'f6ac0ed4-cb0c-4b65-8833-8f3bdf5fc461'),(97368,45298,NULL,80680,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:21:38','2022-02-08 21:21:38',NULL,NULL,'fd42e2c2-e7e4-4cd8-9981-ceb2a897ee7f'),(97369,45298,NULL,80681,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:21:58','2022-02-08 21:21:58',NULL,NULL,'067e4988-7564-4fca-9e8c-30b658d5bd79'),(97370,45298,NULL,80682,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:22:19','2022-02-08 21:22:19',NULL,NULL,'4f4c798f-5662-4f32-820b-0d83c5f10b2f'),(97371,45298,NULL,80683,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:22:39','2022-02-08 21:22:39',NULL,NULL,'c20528fe-4bec-4397-b0ea-d06d686bfffe'),(97372,45298,NULL,80684,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:22:59','2022-02-08 21:22:59',NULL,NULL,'61c3997c-37a8-41b5-95bd-6cca3d199b4d'),(97373,45298,NULL,80685,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:23:19','2022-02-08 21:23:19',NULL,NULL,'272cfd33-bea1-4f25-8564-3d748d77650e'),(97374,45298,NULL,80686,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:23:39','2022-02-08 21:23:39',NULL,NULL,'0e60473f-5a4f-4e6e-b90f-54d6624c2f98'),(97375,45298,NULL,80687,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:23:59','2022-02-08 21:23:59',NULL,NULL,'8186df61-a44a-4cff-a602-da4b882ee27d'),(97376,45298,NULL,80688,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:24:19','2022-02-08 21:24:19',NULL,NULL,'2d3833ff-b38e-464e-83ab-6a7161ec699b'),(97377,45298,NULL,80689,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:24:39','2022-02-08 21:24:39',NULL,NULL,'3f3b3425-b1c4-4c90-865d-e98fc835271a'),(97378,45298,NULL,80690,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:24:59','2022-02-08 21:24:59',NULL,NULL,'02f1081a-7acf-41f6-8c49-058d3f775ea6'),(97379,45298,NULL,80691,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:25:19','2022-02-08 21:25:19',NULL,NULL,'a12e4778-b199-4815-b9d1-daf1745f19d3'),(97380,45298,NULL,80692,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:25:39','2022-02-08 21:25:39',NULL,NULL,'b6452603-4bca-4c11-be38-43c045e434cc'),(97381,45298,NULL,80693,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:25:59','2022-02-08 21:25:59',NULL,NULL,'51551798-b3d0-444e-ae40-7f6894d6f76c'),(97382,45298,NULL,80694,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:26:19','2022-02-08 21:26:19',NULL,NULL,'9090d220-1a02-49ad-b735-212d86b91df9'),(97383,45298,NULL,80695,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:26:39','2022-02-08 21:26:39',NULL,NULL,'6ea02b30-40fe-46a0-9c2e-623e1bb6028b'),(97384,45298,NULL,80696,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:26:59','2022-02-08 21:26:59',NULL,NULL,'272b0e87-e04a-4356-8912-8a1fd6790a3b'),(97385,45298,NULL,80697,4,'craft\\elements\\Entry',1,0,'2022-02-08 21:27:19','2022-02-08 21:27:19',NULL,NULL,'24dac7fc-c2a1-4a42-a95f-eb8fa1d5bc33'),(97386,45298,NULL,80698,4,'craft\\elements\\Entry',1,0,'2022-02-08 22:38:47','2022-02-08 22:38:47',NULL,NULL,'828f2f59-f60a-4e04-878b-be8bc1e504ed'),(97387,45298,NULL,80699,4,'craft\\elements\\Entry',1,0,'2022-02-08 23:32:11','2022-02-08 23:32:11',NULL,NULL,'0775c7ec-8542-40b0-a32f-62931fc18d3d'),(97388,NULL,NULL,NULL,63,'craft\\elements\\GlobalSet',1,0,'2022-02-09 00:56:43','2022-07-27 05:59:31',NULL,NULL,'aca77878-4bdc-4c0b-90a5-a7bdc826888c'),(97390,58762,NULL,80700,6,'craft\\elements\\Entry',1,0,'2022-02-09 00:57:55','2022-02-09 00:57:55',NULL,NULL,'6733e9f8-46f2-4de0-a912-fd84f9f8e9da'),(99458,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-02-09 02:25:21','2022-02-09 02:25:21',NULL,NULL,'c4b0a168-5653-452a-af05-951ed5a41818'),(99934,20379,NULL,82215,23,'craft\\elements\\Entry',1,0,'2022-02-09 02:35:48','2022-02-09 02:35:48',NULL,NULL,'be612fa6-ea15-44c0-b9e0-6290118ce79e'),(103511,NULL,NULL,NULL,NULL,'Solspace\\Freeform\\Elements\\Submission',1,0,'2022-02-09 05:30:08','2022-02-09 05:30:08',NULL,NULL,'905b4bb9-3189-444a-b73a-5b08d3d8705c'),(103512,20195,NULL,85732,4,'craft\\elements\\Entry',1,0,'2022-02-09 23:16:11','2022-02-09 23:16:11',NULL,NULL,'8990ec7f-be79-4c85-9b41-f5fdef557339'),(103513,20195,NULL,85733,4,'craft\\elements\\Entry',1,0,'2022-02-09 23:16:31','2022-02-09 23:16:31',NULL,NULL,'5eb9e036-d01d-49fb-a23c-ede6ae723294'),(103514,20195,NULL,85734,4,'craft\\elements\\Entry',1,0,'2022-02-09 23:16:51','2022-02-09 23:16:51',NULL,NULL,'8981c03c-3b45-4a75-8a32-1d33c1db3735'),(103515,20195,NULL,85735,4,'craft\\elements\\Entry',1,0,'2022-02-09 23:17:11','2022-02-09 23:17:11',NULL,NULL,'9ba97fe4-12dc-4c6e-ab2c-b620f53ffd0e'),(103516,20195,NULL,85736,4,'craft\\elements\\Entry',1,0,'2022-02-09 23:17:31','2022-02-09 23:17:31',NULL,NULL,'22d1377e-8863-429a-933f-c6de16ebbf8b'),(103517,20195,NULL,85737,4,'craft\\elements\\Entry',1,0,'2022-02-09 23:17:51','2022-02-09 23:17:51',NULL,NULL,'00cf33a2-684e-41e8-b776-706d3296a637'),(103518,20195,NULL,85738,4,'craft\\elements\\Entry',1,0,'2022-02-09 23:18:11','2022-02-09 23:18:11',NULL,NULL,'4e21d977-bf46-4617-b934-0b15d3f49494'),(103519,20195,NULL,85739,4,'craft\\elements\\Entry',1,0,'2022-02-09 23:18:31','2022-02-09 23:18:31',NULL,NULL,'a4233e27-6919-4d9f-88ce-c44489c1d2fc'),(103520,20195,NULL,85740,4,'craft\\elements\\Entry',1,0,'2022-02-09 23:18:51','2022-02-09 23:18:52',NULL,NULL,'2cc5c254-8933-493b-9bec-1afc940f1f3f'),(103521,20195,NULL,85741,4,'craft\\elements\\Entry',1,0,'2022-02-09 23:19:11','2022-02-09 23:19:11',NULL,NULL,'ec9d3b00-1955-42d5-a670-92ac8d931e97'),(103522,20195,NULL,85742,4,'craft\\elements\\Entry',1,0,'2022-02-09 23:19:31','2022-02-09 23:19:31',NULL,NULL,'4febb1e5-99bf-42c4-bacd-fdffd1ccfdaa'),(103523,20195,NULL,85743,4,'craft\\elements\\Entry',1,0,'2022-02-09 23:19:51','2022-02-09 23:19:51',NULL,NULL,'36af4712-71e3-4eb0-bccd-202beae5b7ee'),(103524,20195,NULL,85744,4,'craft\\elements\\Entry',1,0,'2022-02-09 23:20:11','2022-02-09 23:20:11',NULL,NULL,'f518484b-d494-404c-a0c4-80896eaeaf78'),(103525,20195,NULL,85745,4,'craft\\elements\\Entry',1,0,'2022-02-09 23:20:45','2022-02-09 23:20:45',NULL,NULL,'0046c84d-3a6c-4bea-a420-ac4d1295bf5d'),(103526,20195,NULL,85746,4,'craft\\elements\\Entry',1,0,'2022-02-09 23:21:04','2022-02-09 23:21:04',NULL,NULL,'5b217136-cf28-4bc6-b6ba-40009840aa14'),(103527,20195,NULL,85747,4,'craft\\elements\\Entry',1,0,'2022-02-09 23:21:24','2022-02-09 23:21:24',NULL,NULL,'51ce23d7-7293-4c5a-a9e9-f2c7f46600c7'),(103528,20195,NULL,85748,4,'craft\\elements\\Entry',1,0,'2022-02-09 23:21:44','2022-02-09 23:21:44',NULL,NULL,'8452bd01-c196-4f5b-9c11-3cffe6994462'),(103529,20195,NULL,85749,4,'craft\\elements\\Entry',1,0,'2022-02-09 23:22:04','2022-02-09 23:22:04',NULL,NULL,'4395e974-1262-4f06-9e84-d06f3b93dc14'),(103530,20195,NULL,85750,4,'craft\\elements\\Entry',1,0,'2022-02-09 23:22:24','2022-02-09 23:22:24',NULL,NULL,'879d677d-8402-4ef4-b308-ad3c8d7f7634'),(103531,20195,NULL,85751,4,'craft\\elements\\Entry',1,0,'2022-02-09 23:22:44','2022-02-09 23:22:44',NULL,NULL,'31572779-85d6-4049-9bb9-007f9dc7c1b5'),(103532,20195,NULL,85752,4,'craft\\elements\\Entry',1,0,'2022-02-09 23:23:04','2022-02-09 23:23:05',NULL,NULL,'386a4e40-c20b-41f1-b444-704c136842db'),(103533,20195,NULL,85753,4,'craft\\elements\\Entry',1,0,'2022-02-09 23:23:25','2022-02-09 23:23:25',NULL,NULL,'8c9a1e57-1505-49a4-bb95-9b06470731d3'),(103534,20195,NULL,85754,4,'craft\\elements\\Entry',1,0,'2022-02-09 23:23:45','2022-02-09 23:23:45',NULL,NULL,'8b7f34fb-54d9-4078-aecd-0a863b9c4ad1'),(103535,20195,NULL,85755,4,'craft\\elements\\Entry',1,0,'2022-02-09 23:24:04','2022-02-09 23:24:04',NULL,NULL,'70dedc07-d963-4de5-9750-a71059dc98d2'),(103536,20195,NULL,85756,4,'craft\\elements\\Entry',1,0,'2022-02-09 23:24:25','2022-02-09 23:24:25',NULL,NULL,'e6143138-9992-4708-8490-8649668da13f'),(103537,20195,NULL,85757,4,'craft\\elements\\Entry',1,0,'2022-02-09 23:24:44','2022-02-09 23:24:44',NULL,NULL,'c3283f5b-e497-4831-bd2e-2434ff899d51'),(103538,20195,NULL,85758,4,'craft\\elements\\Entry',1,0,'2022-02-09 23:25:05','2022-02-09 23:25:05',NULL,NULL,'2b3bdf97-a6af-478b-a8bb-c4da7b156803'),(103539,20195,NULL,85759,4,'craft\\elements\\Entry',1,0,'2022-02-09 23:25:24','2022-02-09 23:25:24',NULL,NULL,'2cb93b30-61e4-41eb-bb8e-8f00cd103e3e'),(103540,20195,NULL,85760,4,'craft\\elements\\Entry',1,0,'2022-02-09 23:35:11','2022-02-09 23:35:11',NULL,NULL,'005a0c21-c103-48e0-8cf7-1f57ea0f2141'),(103541,20195,NULL,85761,4,'craft\\elements\\Entry',1,0,'2022-02-09 23:35:54','2022-02-09 23:35:54',NULL,NULL,'4f9ca6c4-7675-4ea2-9611-a992fa6e3ec7'),(106869,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-02-11 00:38:27','2022-02-11 00:38:27',NULL,NULL,'e4069876-067a-4d36-9ac5-f0620fab2718'),(106870,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-02-11 00:38:32','2022-02-11 00:38:32',NULL,NULL,'1f097208-34ed-48ad-b16b-3f3bb6d8682b'),(106871,NULL,NULL,NULL,NULL,'Solspace\\Freeform\\Elements\\Submission',1,0,'2022-02-11 02:00:18','2022-02-11 02:00:18',NULL,NULL,'1fbddccc-49fa-4ac5-8596-c7ed4a8088da'),(106872,NULL,NULL,NULL,NULL,'Solspace\\Freeform\\Elements\\Submission',1,0,'2022-02-11 02:33:40','2022-02-11 02:33:40',NULL,NULL,'5bddd074-ec4c-4e32-9cd6-41e38ccff5a0'),(120588,21297,NULL,102713,34,'craft\\elements\\Entry',1,0,'2022-02-22 23:50:42','2022-02-22 23:50:42',NULL,NULL,'9f1920c1-59c7-4bf6-8d3a-5f0e4b41bf17'),(120590,21297,NULL,102714,34,'craft\\elements\\Entry',1,0,'2022-02-22 23:52:06','2022-02-22 23:52:06',NULL,NULL,'b2314d27-83e9-4822-8d06-1553c339e943'),(120623,44879,NULL,102715,50,'craft\\elements\\Entry',1,0,'2022-02-23 02:56:20','2022-02-23 02:56:20',NULL,NULL,'641c6dea-a1a2-4261-adfc-39aea7bc7a86'),(120624,51531,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2022-02-23 02:56:20','2022-02-23 02:56:20',NULL,NULL,'e6ec58f9-4f2d-4faa-a176-11bbf3cdb015'),(120625,45249,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2022-02-23 02:56:20','2022-02-23 02:56:20',NULL,NULL,'e8698acb-2d57-4f65-a8b7-f3e71ae07b8f'),(120626,44967,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2022-02-23 02:56:20','2022-02-23 02:56:20',NULL,NULL,'8705603a-6906-4f0f-816a-188c7356de01'),(120627,44969,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2022-02-23 02:56:20','2022-02-23 02:56:20',NULL,NULL,'76db8a3d-ab0b-4259-8e53-e4bbf0e28a43'),(120628,44970,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2022-02-23 02:56:20','2022-02-23 02:56:20',NULL,NULL,'68d81d67-3341-42dc-bec9-79c715aab7cb'),(120629,44971,NULL,NULL,51,'craft\\elements\\MatrixBlock',1,0,'2022-02-23 02:56:20','2022-02-23 02:56:20',NULL,NULL,'1aa655c1-3aae-43c0-9726-8667c118a0b3'),(123478,NULL,NULL,NULL,NULL,'Solspace\\Freeform\\Elements\\Submission',1,0,'2022-02-23 03:58:43','2022-02-23 03:58:43',NULL,NULL,'14e72896-a6a8-47e1-805f-0b36e3c68d19'),(123480,21297,NULL,105555,34,'craft\\elements\\Entry',1,0,'2022-02-23 23:10:01','2022-02-23 23:10:01',NULL,NULL,'d842fbfa-fe73-4675-abdc-3a54c2beccb1'),(123482,21297,NULL,105556,34,'craft\\elements\\Entry',1,0,'2022-02-23 23:10:12','2022-02-23 23:10:12',NULL,NULL,'5927e515-4b89-4277-93a8-f3e651127334'),(123484,20379,NULL,105557,23,'craft\\elements\\Entry',1,0,'2022-02-28 04:42:58','2022-02-28 04:42:58',NULL,NULL,'d9926f00-99f9-42ae-ac2a-9ad42d3a5806'),(139963,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-03-28 03:20:07','2022-05-17 01:56:28',NULL,NULL,'058f5fbe-7353-43e4-bc65-0c92cf0dd2b6'),(139967,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2022-04-21 04:01:59','2022-08-15 02:54:41',NULL,NULL,'dfc56ee8-451f-46db-b9dd-573f28f995a6'),(139968,139967,NULL,121917,6,'craft\\elements\\Entry',1,0,'2022-04-21 04:01:59','2022-04-21 04:02:00',NULL,NULL,'c7e2fff6-dc1e-4ba9-9a03-aa5441a0fc81'),(139970,139967,NULL,121918,6,'craft\\elements\\Entry',1,0,'2022-04-21 04:09:31','2022-04-21 04:09:31',NULL,NULL,'b82f5f31-d5fa-45ab-82a7-93399936f025'),(139972,139967,NULL,121919,6,'craft\\elements\\Entry',1,0,'2022-04-21 04:16:36','2022-04-21 04:16:36',NULL,NULL,'d748eaae-4069-482c-8c08-20b42a25f4ec'),(139973,40504,640,NULL,6,'craft\\elements\\Entry',1,0,'2022-04-21 04:17:13','2022-04-21 04:17:15',NULL,NULL,'643c3404-9072-4c65-9770-bfa8aa980ba6'),(139975,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-04-21 05:48:06','2022-04-21 05:48:06',NULL,NULL,'4884f405-fd6a-4b5c-9d43-778ef95015be'),(139976,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-04-21 05:48:36','2022-04-21 05:48:36',NULL,NULL,'e6f5ff72-e696-4bd5-a394-333811124621'),(139977,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-04-21 05:48:48','2022-04-21 05:48:48',NULL,NULL,'d092410f-02ae-446a-8dcb-fb7565170df9'),(139978,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-04-21 05:50:21','2022-04-21 05:50:21',NULL,NULL,'cb3eadaf-3eb7-4ba2-b417-8cb7d0c0cad3'),(139979,139967,NULL,121920,6,'craft\\elements\\Entry',1,0,'2022-04-21 05:52:06','2022-04-21 05:52:06',NULL,NULL,'6fe25a63-307b-4efb-a6b0-468d682b72cb'),(139981,139967,NULL,121921,6,'craft\\elements\\Entry',1,0,'2022-04-21 05:53:06','2022-04-21 05:53:06',NULL,NULL,'5ae36358-a5c4-418c-9dbe-85a891d05580'),(139983,139967,NULL,121922,6,'craft\\elements\\Entry',1,0,'2022-04-21 05:56:43','2022-04-21 05:56:43',NULL,NULL,'31625c8a-e317-46c1-9bf5-35f8cd1f05d3'),(139985,139967,NULL,121923,6,'craft\\elements\\Entry',1,0,'2022-04-21 05:59:35','2022-04-21 05:59:36',NULL,NULL,'c243809c-7ff1-46aa-b7d9-dc67651a02d5'),(139987,139967,NULL,121924,6,'craft\\elements\\Entry',1,0,'2022-04-21 06:23:49','2022-04-21 06:23:49',NULL,NULL,'8b78b40e-69d3-4df7-9922-d76bae3f3fe4'),(139989,139967,NULL,121925,6,'craft\\elements\\Entry',1,0,'2022-04-26 01:34:59','2022-04-26 01:34:59',NULL,NULL,'15e8a62f-eb3f-48ec-80dc-9fc25eb7f709'),(139990,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-05-04 04:30:54','2022-05-04 04:30:54',NULL,NULL,'f3213f5d-22b6-40dc-9e02-40f981fa95fb'),(140001,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-05-05 07:13:32','2022-06-23 03:26:58',NULL,NULL,'68d7ee06-e867-4ce5-82f2-4b739fc3c2e4'),(140005,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-05-05 07:24:58','2022-06-23 03:26:55',NULL,NULL,'c783c682-1104-4fab-8ae0-44b6f110f464'),(140009,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-05-05 07:25:51','2022-06-23 03:27:03',NULL,NULL,'da910fb1-0af2-46c3-a9bc-d25bbf207c27'),(140013,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2022-05-05 23:48:29','2022-08-12 03:38:44',NULL,NULL,'19bad0ae-478d-4329-b0f0-9dee5075322b'),(140014,140013,NULL,121935,6,'craft\\elements\\Entry',1,0,'2022-05-05 23:52:17','2022-05-05 23:52:17',NULL,NULL,'37100dc3-bea2-4010-8e03-602f7b41adcc'),(140016,140013,NULL,121936,6,'craft\\elements\\Entry',1,0,'2022-05-06 00:20:33','2022-05-06 00:20:33',NULL,NULL,'4b29fee1-636a-4023-bb19-56e7f95f76e7'),(140018,140013,NULL,121937,6,'craft\\elements\\Entry',1,0,'2022-05-06 00:21:23','2022-05-06 00:21:23',NULL,NULL,'ec9797f4-1c4b-4a87-bf57-2ea6b8972c30'),(140020,140013,NULL,121938,6,'craft\\elements\\Entry',1,0,'2022-05-06 00:23:13','2022-05-06 00:23:13',NULL,NULL,'6c72f65f-a84f-4bf1-bb54-86e1e963529d'),(140022,140013,NULL,121939,6,'craft\\elements\\Entry',1,0,'2022-05-06 00:24:49','2022-05-06 00:24:49',NULL,NULL,'8360a1e9-bb9c-4858-81d9-706bbcd44f54'),(140024,140013,NULL,121940,6,'craft\\elements\\Entry',1,0,'2022-05-06 00:45:00','2022-05-06 00:45:00',NULL,NULL,'646ff8c4-126d-4164-8c23-4b29208cafa8'),(140025,140013,NULL,121941,6,'craft\\elements\\Entry',1,0,'2022-05-06 00:45:42','2022-05-06 00:45:42',NULL,NULL,'4182e269-fe7b-4a1e-a0b7-be3340ae6c21'),(140027,140013,NULL,121942,6,'craft\\elements\\Entry',1,0,'2022-05-06 00:46:55','2022-05-06 00:46:55',NULL,NULL,'6433146e-7c31-4e8d-9434-410470cfbb69'),(140029,140013,NULL,121943,6,'craft\\elements\\Entry',1,0,'2022-05-06 00:47:13','2022-05-06 00:47:13',NULL,NULL,'5a0f9912-5281-4e60-8b9c-411ad3948080'),(140031,140013,NULL,121944,6,'craft\\elements\\Entry',1,0,'2022-05-06 00:48:08','2022-05-06 00:48:08',NULL,NULL,'6b12e58a-426d-4e99-97c2-b24f74e3faee'),(140032,22210,665,NULL,6,'craft\\elements\\Entry',1,0,'2022-05-06 00:48:46','2022-05-06 00:48:47',NULL,NULL,'62a932ad-b95e-4992-a3fe-b6616933cd19'),(140034,140013,NULL,121945,6,'craft\\elements\\Entry',1,0,'2022-05-06 00:49:41','2022-05-06 00:49:41',NULL,NULL,'bbe25467-3f39-4c2b-99c0-c8d7dcd083b4'),(140036,140013,NULL,121946,6,'craft\\elements\\Entry',1,0,'2022-05-06 00:50:13','2022-05-06 00:50:13',NULL,NULL,'9bea3d4f-3b9b-4178-8b53-42992bd91201'),(140038,140013,NULL,121947,6,'craft\\elements\\Entry',1,0,'2022-05-06 00:50:23','2022-05-06 00:50:23',NULL,NULL,'15d84f35-ee97-4848-8382-18b0c52ebd55'),(140040,140013,NULL,121948,6,'craft\\elements\\Entry',1,0,'2022-05-06 00:50:54','2022-05-06 00:50:54',NULL,NULL,'5a1581a3-ddce-4bbe-80e7-219adf723c6a'),(140042,140013,NULL,121949,6,'craft\\elements\\Entry',1,0,'2022-05-06 00:51:48','2022-05-06 00:51:48',NULL,NULL,'386e0640-ec42-4ed3-b4c3-69469965fd8d'),(140044,140013,NULL,121950,6,'craft\\elements\\Entry',1,0,'2022-05-06 00:52:39','2022-05-06 00:52:39',NULL,NULL,'814ad07e-d1e3-4fba-a57f-833109de2e63'),(140045,140013,NULL,121951,6,'craft\\elements\\Entry',1,0,'2022-05-06 00:52:55','2022-05-06 00:52:56',NULL,NULL,'9a3a9eb2-8c2b-44d7-b0d6-6bc71836c290'),(140047,140013,NULL,121952,6,'craft\\elements\\Entry',1,0,'2022-05-06 00:54:04','2022-05-06 00:54:04',NULL,NULL,'7d04de40-af1f-4b0f-bcb2-5513b365a21b'),(140049,140013,NULL,121953,6,'craft\\elements\\Entry',1,0,'2022-05-06 00:57:20','2022-05-06 00:57:20',NULL,NULL,'34ca3dd6-2706-40b9-bbc0-b95b9e996669'),(140051,140013,NULL,121954,6,'craft\\elements\\Entry',1,0,'2022-05-06 01:07:35','2022-05-06 01:07:35',NULL,NULL,'6cab7521-4228-46ed-961f-b07cfac0b057'),(140053,140013,NULL,121955,6,'craft\\elements\\Entry',1,0,'2022-05-09 02:55:19','2022-05-09 02:55:19',NULL,NULL,'66ee7350-f118-49cc-ad61-b3f58b945c30'),(140055,140013,NULL,121956,6,'craft\\elements\\Entry',1,0,'2022-05-09 03:32:34','2022-05-09 03:32:34',NULL,NULL,'3055eed2-bf63-4ba4-af42-7afbd3a5882d'),(140057,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-05-09 03:37:59','2022-06-23 03:27:22',NULL,NULL,'706caa31-9be3-414d-bb5b-33680750e0f9'),(140058,140013,NULL,121957,6,'craft\\elements\\Entry',1,0,'2022-05-09 03:38:16','2022-05-09 03:38:16',NULL,NULL,'35352c95-6004-4b4d-84c5-90fed7b3166a'),(140060,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2022-05-09 03:59:14','2022-08-08 06:22:46',NULL,NULL,'d0298032-2841-4716-89ef-65b1324bd9bd'),(140061,140060,NULL,121958,6,'craft\\elements\\Entry',1,0,'2022-05-09 03:59:42','2022-05-09 03:59:42',NULL,NULL,'0cd51a8b-83f9-4db0-9165-c3b0ec569cd5'),(140063,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-05-09 04:00:52','2022-06-22 07:54:32',NULL,NULL,'e0e73d87-85f4-416f-8681-21b7598216bd'),(140064,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-05-09 04:01:02','2022-06-22 07:54:35',NULL,NULL,'d64870b9-7938-436d-ab2c-e18fb407890f'),(140065,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-05-09 04:01:06','2022-06-22 07:54:38',NULL,NULL,'6c3f41a3-fecd-48af-9360-3a96f5ab6cbc'),(140066,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-05-09 04:01:10','2022-06-22 07:54:40',NULL,NULL,'dde57475-72c6-44e6-80a5-96895bc0738c'),(140067,140060,NULL,121959,6,'craft\\elements\\Entry',1,0,'2022-05-09 04:02:49','2022-05-09 04:02:49',NULL,NULL,'35f8dc92-5c5b-4fc1-9708-2db6fd78bb3a'),(140069,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-05-09 04:38:40','2022-06-23 03:26:46',NULL,NULL,'7e72a155-1b73-40df-8765-6f6cc892e40c'),(140070,140060,NULL,121960,6,'craft\\elements\\Entry',1,0,'2022-05-09 04:38:50','2022-05-09 04:38:50',NULL,NULL,'a5b6f295-4ea5-47e9-b26d-2d3b2cd9ed68'),(140071,140060,NULL,121961,6,'craft\\elements\\Entry',1,0,'2022-05-09 04:38:59','2022-05-09 04:38:59',NULL,NULL,'f305c873-5ad0-4a15-be3d-cbfd8a6b8dca'),(140073,140060,NULL,121962,6,'craft\\elements\\Entry',1,0,'2022-05-09 04:39:17','2022-05-09 04:39:17',NULL,NULL,'05e3a978-f4ad-41af-93ad-f7adbd4d7f08'),(140074,140060,NULL,121963,6,'craft\\elements\\Entry',1,0,'2022-05-09 04:39:44','2022-05-09 04:39:44',NULL,NULL,'484b73f0-adfe-4b0e-98f5-75357a5e8048'),(140076,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-05-09 04:56:09','2022-06-23 03:26:50',NULL,NULL,'bf73308d-83e2-44c0-9fce-bbd4683b0ea8'),(140077,140060,NULL,121964,6,'craft\\elements\\Entry',1,0,'2022-05-09 04:56:16','2022-05-09 04:56:16',NULL,NULL,'2affc21c-a233-4e42-b855-569c5e30ebd2'),(140078,140060,NULL,121965,6,'craft\\elements\\Entry',1,0,'2022-05-09 04:56:24','2022-05-09 04:56:24',NULL,NULL,'dbe36623-8bc4-4cab-a6b1-f28a4843311c'),(140080,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-05-09 04:56:45','2022-06-23 03:26:52',NULL,NULL,'2fcb6a63-d9e1-4925-b630-efa1ae0cbd1c'),(140081,140060,NULL,121966,6,'craft\\elements\\Entry',1,0,'2022-05-09 04:56:57','2022-05-09 04:56:57',NULL,NULL,'3066434c-52aa-4e8b-ae98-b87cdaa76daa'),(140082,140060,NULL,121967,6,'craft\\elements\\Entry',1,0,'2022-05-09 04:57:07','2022-05-09 04:57:07',NULL,NULL,'0466ae60-b9d4-41f4-82c3-12afc99faa35'),(140083,140060,NULL,121968,6,'craft\\elements\\Entry',1,0,'2022-05-09 04:57:42','2022-05-09 04:57:42',NULL,NULL,'cb6dad7f-49a0-467a-a956-5da4064894ab'),(140084,140060,NULL,121969,6,'craft\\elements\\Entry',1,0,'2022-05-09 05:41:34','2022-05-09 05:41:34',NULL,NULL,'e05a510f-3c4e-4efb-9112-ba4a1e4b8236'),(140086,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-05-09 05:42:23','2022-06-23 03:27:00',NULL,NULL,'c7900aed-213a-4186-abd4-3361d28ccfa3'),(140087,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-05-09 05:42:42','2022-06-23 03:27:09',NULL,NULL,'bbca5814-abcc-45ca-ab6e-94cfca839c3a'),(140088,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-05-09 05:44:06','2022-06-23 03:27:06',NULL,NULL,'982ba35a-4cdc-4239-8ef4-79c640f90a44'),(140092,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-05-09 05:47:50','2022-06-23 03:27:12',NULL,NULL,'86b816a0-c860-45b0-adfc-261574be608a'),(140093,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-05-09 05:49:31','2022-06-23 03:27:16',NULL,NULL,'d823c9c8-856d-44ec-bca0-7e9a6ba59934'),(140105,140013,NULL,121978,6,'craft\\elements\\Entry',1,0,'2022-05-12 03:26:42','2022-05-12 03:26:42',NULL,NULL,'930310d7-c852-43c7-a60e-9f12a62074ad'),(140107,140060,NULL,121979,6,'craft\\elements\\Entry',0,0,'2022-05-12 06:39:12','2022-05-12 06:39:12',NULL,NULL,'c2628f5b-a3aa-482d-a3a0-026f7054c2ad'),(140109,140013,NULL,121980,6,'craft\\elements\\Entry',1,0,'2022-05-12 07:42:41','2022-05-12 07:42:41',NULL,NULL,'fe4df241-0e86-4ff6-9572-07ca50be11a2'),(140111,140013,NULL,121981,6,'craft\\elements\\Entry',1,0,'2022-05-13 00:03:12','2022-05-13 00:03:12',NULL,NULL,'bc177022-1329-44da-a79b-7329a9df6bd0'),(140113,44837,NULL,121982,6,'craft\\elements\\Entry',1,0,'2022-05-16 04:02:10','2022-05-16 04:02:10',NULL,NULL,'b9d618f7-34be-449a-88d3-f8fe18991b63'),(140115,44837,NULL,121983,6,'craft\\elements\\Entry',1,0,'2022-05-16 04:02:36','2022-05-16 04:02:36',NULL,NULL,'b0ee7267-10e6-445c-932a-987a286f15b3'),(140117,44837,NULL,121984,6,'craft\\elements\\Entry',1,0,'2022-05-16 04:03:16','2022-05-16 04:03:16',NULL,NULL,'bd00f0a1-a040-4b31-957e-a0a7c313bdd3'),(140119,44837,NULL,121985,6,'craft\\elements\\Entry',1,0,'2022-05-16 04:04:22','2022-05-16 04:04:22',NULL,NULL,'7bdd98fa-6206-4d29-a6a7-e58f1e638402'),(140121,140013,700,NULL,6,'craft\\elements\\Entry',1,0,'2022-05-16 04:28:37','2022-05-16 04:28:38',NULL,NULL,'5803d361-b59e-4cc9-8d29-be8609263696'),(140123,140060,702,NULL,6,'craft\\elements\\Entry',0,0,'2022-05-17 02:45:06','2022-05-25 22:56:49',NULL,NULL,'f576e218-55fa-4779-927c-02c48474f7d3'),(140124,48262,NULL,121986,52,'craft\\elements\\Entry',1,0,'2022-05-17 03:06:41','2022-05-17 03:06:41',NULL,NULL,'c454edfd-b65c-475c-be70-f7e2c0450c0f'),(140125,74286,NULL,121987,61,'craft\\elements\\Entry',1,0,'2022-05-17 23:19:11','2022-05-17 23:19:11',NULL,NULL,'2dba0a0e-1e87-409c-94f3-b15ff36a9590'),(140126,74286,NULL,121988,61,'craft\\elements\\Entry',1,0,'2022-05-17 23:19:12','2022-05-17 23:19:12',NULL,NULL,'aee4cb39-caa9-4ab3-b887-2f9c8d9c19a1'),(140127,21297,NULL,121989,34,'craft\\elements\\Entry',1,0,'2022-05-17 23:19:13','2022-05-17 23:19:13',NULL,NULL,'0f6b66e5-a85d-4c38-b2c7-7b2e9af912ca'),(140128,21297,NULL,121990,34,'craft\\elements\\Entry',1,0,'2022-05-17 23:19:14','2022-05-17 23:19:14',NULL,NULL,'c3f2bbab-1067-41b1-b6ab-b0103db4eed3'),(140129,44879,NULL,121991,50,'craft\\elements\\Entry',1,0,'2022-05-17 23:19:15','2022-05-17 23:19:15',NULL,NULL,'4f1a1211-10fe-436c-8cab-ab161a457754'),(140130,51531,NULL,121992,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-09 01:32:14','2022-05-17 23:19:16',NULL,NULL,'2a2fab13-413b-403a-b63e-97134c59c81d'),(140131,45249,NULL,121993,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-09 01:32:14','2022-05-17 23:19:16',NULL,NULL,'e9a3aadb-998c-4086-95ee-2eb86db0a684'),(140132,44967,NULL,121994,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-09 01:32:14','2022-05-17 23:19:16',NULL,NULL,'356eb202-915f-4d50-971a-e2bd15196164'),(140133,44969,NULL,121995,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-09 01:32:15','2022-05-17 23:19:16',NULL,NULL,'51e4173c-3a55-4f78-9bc6-a535b5e11bd8'),(140134,44970,NULL,121996,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-09 01:32:15','2022-05-17 23:19:16',NULL,NULL,'82d1038e-7025-470b-ad10-86a4ee949d4a'),(140135,44971,NULL,121997,51,'craft\\elements\\MatrixBlock',1,0,'2021-11-09 01:32:15','2022-05-17 23:19:16',NULL,NULL,'7de6a40d-7315-44ac-a5bc-4edf4ce1e177'),(140136,44879,NULL,121998,50,'craft\\elements\\Entry',1,0,'2022-05-17 23:19:16','2022-05-17 23:19:16',NULL,NULL,'0dd24ad5-b84e-4808-9e92-39ac78e311bf'),(140137,48262,NULL,121999,52,'craft\\elements\\Entry',1,0,'2022-05-17 23:19:17','2022-05-17 23:19:17',NULL,NULL,'59c6e456-734d-407e-868b-0607f6b82999'),(140138,48262,NULL,122000,52,'craft\\elements\\Entry',1,0,'2022-05-17 23:19:18','2022-05-17 23:19:18',NULL,NULL,'a2ed6a55-8312-4d61-a6ce-7fde2393befa'),(140139,20379,NULL,122001,23,'craft\\elements\\Entry',1,0,'2022-05-17 23:19:19','2022-05-17 23:19:19',NULL,NULL,'208ad764-8441-4654-a307-c53cc5caca01'),(140140,20379,NULL,122002,23,'craft\\elements\\Entry',1,0,'2022-05-17 23:19:20','2022-05-17 23:19:20',NULL,NULL,'bdb4a083-169e-44ac-b885-fa34002077dd'),(140141,74162,NULL,122003,56,'craft\\elements\\Entry',1,0,'2022-05-17 23:19:21','2022-05-17 23:19:21',NULL,NULL,'73819198-3393-4f85-87ba-5d07924f77dc'),(140142,74162,NULL,122004,56,'craft\\elements\\Entry',1,0,'2022-05-17 23:19:22','2022-05-17 23:19:22',NULL,NULL,'d554cf3e-4b8f-4959-9c67-935b89c42e6c'),(140143,74276,NULL,122005,60,'craft\\elements\\Entry',1,0,'2022-05-17 23:19:23','2022-05-17 23:19:23',NULL,NULL,'0718a533-2b28-4891-a081-d79f8f975b74'),(140144,74276,NULL,122006,60,'craft\\elements\\Entry',1,0,'2022-05-17 23:19:24','2022-05-17 23:19:24',NULL,NULL,'175c80c1-f8d7-42a9-9dd2-7c5a87c38bb7'),(140146,140013,NULL,122007,6,'craft\\elements\\Entry',0,0,'2022-05-18 00:47:09','2022-05-18 00:47:09',NULL,NULL,'9c242986-1018-4cf5-9fff-502ba05b47da'),(140148,140013,NULL,122008,6,'craft\\elements\\Entry',1,0,'2022-05-18 00:51:56','2022-05-18 00:51:56',NULL,NULL,'eff7766c-333c-47df-ab5a-5b331728bdad'),(140153,20379,NULL,122011,23,'craft\\elements\\Entry',1,0,'2022-05-30 01:16:35','2022-05-30 01:16:35',NULL,NULL,'3192b26e-b47c-434c-bdef-0b605f2de08a'),(140157,28040,NULL,122013,12,'craft\\elements\\Entry',1,0,'2022-05-30 01:17:28','2022-05-30 01:17:28',NULL,NULL,'822d8a81-5c5c-47c9-9f75-3157635c1f9f'),(140159,48003,NULL,122014,12,'craft\\elements\\Entry',1,0,'2022-05-30 01:17:47','2022-05-30 01:17:47',NULL,NULL,'137b742c-7376-48ba-a4b6-a88a89736427'),(140160,17692,NULL,122015,12,'craft\\elements\\Entry',1,0,'2022-05-30 01:18:11','2022-05-30 01:18:11',NULL,NULL,'84614ca4-6ceb-4f93-a35e-ee6178394258'),(140162,17690,NULL,122016,12,'craft\\elements\\Entry',1,0,'2022-05-30 01:18:23','2022-05-30 01:18:23',NULL,NULL,'67ff2818-5bd3-4346-8acd-e8e68a1d9a31'),(140163,17688,NULL,122017,12,'craft\\elements\\Entry',1,0,'2022-05-30 01:18:33','2022-05-30 01:18:33',NULL,NULL,'4bed6a46-95f6-450b-99fd-bab24f16e84e'),(140165,17686,NULL,122018,12,'craft\\elements\\Entry',1,0,'2022-05-30 01:18:46','2022-05-30 01:18:46',NULL,NULL,'0acdfa73-45bd-479b-b513-3863963dbe75'),(140166,17684,NULL,122019,12,'craft\\elements\\Entry',1,0,'2022-05-30 01:18:57','2022-05-30 01:18:57',NULL,NULL,'cf9be5a7-4a37-4525-a607-4017be62633f'),(140168,17682,NULL,122020,12,'craft\\elements\\Entry',1,0,'2022-05-30 01:19:07','2022-05-30 01:19:07',NULL,NULL,'e9fca39b-4be1-40b5-9bcb-b47be94add83'),(140169,17678,NULL,122021,12,'craft\\elements\\Entry',1,0,'2022-05-30 01:19:18','2022-05-30 01:19:18',NULL,NULL,'068b7973-1954-441a-9894-32a2b2bf6efe'),(140170,17660,NULL,122022,12,'craft\\elements\\Entry',1,0,'2022-05-30 01:19:30','2022-05-30 01:19:30',NULL,NULL,'5436b09a-d87d-44d8-9697-2c007d3a3803'),(140171,17654,NULL,122023,12,'craft\\elements\\Entry',1,0,'2022-05-30 01:19:40','2022-05-30 01:19:40',NULL,NULL,'3c196bdf-adb9-449e-85a4-99e4b67060b9'),(140172,17646,NULL,122024,12,'craft\\elements\\Entry',1,0,'2022-05-30 01:19:53','2022-05-30 01:19:53',NULL,NULL,'1daaa206-0ee4-4df4-8665-120eba9d8006'),(140173,17644,NULL,122025,12,'craft\\elements\\Entry',1,0,'2022-05-30 01:20:04','2022-05-30 01:20:04',NULL,NULL,'a680d63a-1362-4376-8339-d36859521182'),(140174,17623,NULL,122026,12,'craft\\elements\\Entry',1,0,'2022-05-30 01:20:14','2022-05-30 01:20:14',NULL,NULL,'f03e61d1-1bf0-4c17-ae9e-d4744c205d39'),(140176,140013,NULL,122027,6,'craft\\elements\\Entry',1,0,'2022-05-30 01:20:27','2022-05-30 01:20:27',NULL,NULL,'9bfbe2cf-d7e4-4c08-8573-39d731072c21'),(140178,58762,NULL,122028,6,'craft\\elements\\Entry',1,0,'2022-05-30 01:20:35','2022-05-30 01:20:35',NULL,NULL,'37cb04a5-0832-4506-803f-8c89b64b09c3'),(140180,44981,NULL,122030,6,'craft\\elements\\Entry',1,0,'2022-05-30 01:21:54','2022-05-30 01:21:54',NULL,NULL,'9a6aa832-1c82-40b7-8ee7-87e48e339201'),(140181,44862,NULL,122031,6,'craft\\elements\\Entry',1,0,'2022-05-30 01:22:14','2022-05-30 01:22:14',NULL,NULL,'f9d5ae5d-c47d-4572-a51e-76a97878afc2'),(140182,44849,NULL,122032,6,'craft\\elements\\Entry',1,0,'2022-05-30 01:22:34','2022-05-30 01:22:34',NULL,NULL,'83d993c5-c3a0-4bbf-91ef-a25bd8108e61'),(140183,44849,715,NULL,6,'craft\\elements\\Entry',1,0,'2022-05-30 01:22:36','2022-05-30 01:22:37',NULL,NULL,'f8d11342-dfde-44e1-beba-3761a54d5056'),(140184,44845,NULL,122033,6,'craft\\elements\\Entry',1,0,'2022-05-30 01:22:52','2022-05-30 01:22:52',NULL,NULL,'8df47885-44da-469c-adc3-54ce549d7a07'),(140185,44843,NULL,122034,6,'craft\\elements\\Entry',1,0,'2022-05-30 01:23:12','2022-05-30 01:23:12',NULL,NULL,'58eeb825-16de-402b-ae0e-4bf2a1b1c0e7'),(140187,44843,NULL,122035,6,'craft\\elements\\Entry',1,0,'2022-05-30 01:24:10','2022-05-30 01:24:10',NULL,NULL,'7b30a718-bd8e-4e79-a4b2-cb994b039ad1'),(140189,44841,NULL,122036,6,'craft\\elements\\Entry',1,0,'2022-05-30 01:24:58','2022-05-30 01:24:58',NULL,NULL,'8cdfdd03-6be8-4b0e-a9ac-5415bb27dfb2'),(140191,44837,NULL,122037,6,'craft\\elements\\Entry',1,0,'2022-05-30 01:26:47','2022-05-30 01:26:47',NULL,NULL,'e928fa47-b10b-45f0-bcb2-7e4716c17a61'),(140193,44837,NULL,122038,6,'craft\\elements\\Entry',1,0,'2022-05-30 01:28:56','2022-05-30 01:28:56',NULL,NULL,'110a7210-269b-422d-ab5c-f20557e4a547'),(140195,40506,NULL,122039,6,'craft\\elements\\Entry',1,0,'2022-05-30 01:29:36','2022-05-30 01:29:36',NULL,NULL,'dcd328cb-b04e-498c-9c6c-3bcc4a3e2e94'),(140197,44837,NULL,122040,6,'craft\\elements\\Entry',1,0,'2022-05-30 01:30:24','2022-05-30 01:30:24',NULL,NULL,'9e3c3c8f-bbf5-4a3d-8899-37f073e67fae'),(140199,40504,NULL,122041,6,'craft\\elements\\Entry',1,0,'2022-05-30 01:31:33','2022-05-30 01:31:34',NULL,NULL,'3306e01e-da50-4045-85e9-b320b702efac'),(140201,30427,NULL,122042,6,'craft\\elements\\Entry',1,0,'2022-05-30 01:32:36','2022-05-30 01:32:36',NULL,NULL,'ae62f2f3-a029-4469-bfc5-e7f3af7986b4'),(140205,30427,NULL,122043,6,'craft\\elements\\Entry',1,0,'2022-05-30 01:33:15','2022-05-30 01:33:15',NULL,NULL,'c57d4821-0778-4a56-b257-4a3c1a6a0c79'),(140206,22210,NULL,122044,6,'craft\\elements\\Entry',1,0,'2022-05-30 01:34:00','2022-05-30 01:34:00',NULL,NULL,'3e01b33e-f50d-46b0-a30e-c575a2cba1d2'),(140208,18139,NULL,122045,6,'craft\\elements\\Entry',1,0,'2022-05-30 01:34:51','2022-05-30 01:34:51',NULL,NULL,'70711792-5b37-43ab-8a54-f39004b736ef'),(140210,18142,NULL,122046,6,'craft\\elements\\Entry',1,0,'2022-05-30 01:36:15','2022-05-30 01:36:15',NULL,NULL,'f93207d4-fde7-4f5d-a0a0-ff7ef90d0d87'),(140212,18168,NULL,122047,6,'craft\\elements\\Entry',1,0,'2022-05-30 01:37:10','2022-05-30 01:37:10',NULL,NULL,'84639182-2e06-4a05-bf53-86f890bc8f9f'),(140214,18176,NULL,122048,6,'craft\\elements\\Entry',1,0,'2022-05-30 01:37:38','2022-05-30 01:37:38',NULL,NULL,'36041c54-2c6a-4f85-a49c-8a2e67d1f2d0'),(140216,18164,NULL,122049,6,'craft\\elements\\Entry',1,0,'2022-05-30 01:38:27','2022-05-30 01:38:27',NULL,NULL,'694d65a4-19b6-4a3c-be86-1871c3e55e20'),(140218,18156,NULL,122050,6,'craft\\elements\\Entry',1,0,'2022-05-30 01:39:39','2022-05-30 01:39:39',NULL,NULL,'d094c1d1-63e4-49b8-9e37-b8086328aad9'),(140220,18126,NULL,122051,6,'craft\\elements\\Entry',1,0,'2022-05-30 01:40:48','2022-05-30 01:40:48',NULL,NULL,'afe858c6-de29-4fb9-b771-de15e30f27e2'),(140222,18122,NULL,122052,6,'craft\\elements\\Entry',1,0,'2022-05-30 01:41:22','2022-05-30 01:41:22',NULL,NULL,'36d61104-804b-4614-ae70-94ef5d4b5a68'),(140224,139967,NULL,122053,6,'craft\\elements\\Entry',1,0,'2022-05-30 01:42:16','2022-05-30 01:42:16',NULL,NULL,'27990dd8-6c2f-4c3a-a299-cdbb1a5f8bfa'),(140226,18109,NULL,122054,6,'craft\\elements\\Entry',1,0,'2022-05-30 01:42:50','2022-05-30 01:42:50',NULL,NULL,'033035d4-dd6c-4ae5-ade8-27d4daff5149'),(140230,16828,NULL,122056,6,'craft\\elements\\Entry',1,0,'2022-05-30 01:44:13','2022-05-30 01:44:13',NULL,NULL,'b1b3dea2-7e59-4386-8a4c-2261b6dd1252'),(140232,16571,NULL,122057,6,'craft\\elements\\Entry',1,0,'2022-05-30 01:45:01','2022-05-30 01:45:01',NULL,NULL,'46fdc6f7-3476-43f5-be22-fab52539ba16'),(140233,140013,NULL,122058,6,'craft\\elements\\Entry',0,0,'2022-05-31 04:26:01','2022-05-31 04:26:01',NULL,NULL,'a144342d-c13d-40bf-8f78-38ccc7809b5c'),(140235,140060,NULL,122059,6,'craft\\elements\\Entry',0,0,'2022-05-31 06:08:14','2022-05-31 06:08:14',NULL,NULL,'4615c3ba-a092-4d5b-ad26-789ae1f716fb'),(140237,140060,NULL,122060,6,'craft\\elements\\Entry',0,0,'2022-05-31 06:21:51','2022-05-31 06:21:51',NULL,NULL,'86cae3d6-1855-4875-bd1f-5d67e941cd75'),(140245,140060,NULL,122063,6,'craft\\elements\\Entry',1,0,'2022-06-02 03:48:39','2022-06-02 03:48:39',NULL,NULL,'1a0fead8-6fd6-4c86-83ef-43128f25ce12'),(140246,NULL,NULL,NULL,68,'craft\\elements\\Entry',1,0,'2022-06-05 23:23:59','2022-10-21 04:18:21',NULL,NULL,'7fa393cb-5265-41d8-b40f-00cbb6e8590c'),(140247,140246,NULL,122064,68,'craft\\elements\\Entry',1,0,'2022-06-05 23:23:59','2022-06-05 23:23:59',NULL,NULL,'2fcab0b1-6b97-4c9f-b12a-0a4ea2deebac'),(140248,140246,NULL,122065,68,'craft\\elements\\Entry',1,0,'2022-06-05 23:24:01','2022-06-05 23:24:01',NULL,NULL,'4b81cb4a-2531-4cb5-83b7-696201900312'),(140249,140246,NULL,122066,68,'craft\\elements\\Entry',1,0,'2022-06-05 23:24:03','2022-06-05 23:24:03',NULL,NULL,'34290fb0-b79c-4d5f-b1eb-4961d070c5e9'),(140250,140246,NULL,122067,68,'craft\\elements\\Entry',1,0,'2022-06-05 23:24:04','2022-06-05 23:24:04',NULL,NULL,'b505d7c4-ab4b-4400-a2db-0a8696e722b1'),(140252,140246,NULL,122068,68,'craft\\elements\\Entry',1,0,'2022-06-05 23:35:20','2022-06-05 23:35:20',NULL,NULL,'28789966-3699-4839-b8b9-387d348da8e0'),(140254,140246,NULL,122069,68,'craft\\elements\\Entry',0,0,'2022-06-05 23:35:51','2022-06-05 23:35:51',NULL,NULL,'61b67eff-7b4d-48ac-981f-5d0284ec33c4'),(140427,140013,NULL,122157,6,'craft\\elements\\Entry',0,0,'2022-06-12 23:56:38','2022-06-12 23:56:38',NULL,NULL,'c0454a57-fddf-41d6-9d7c-506736f5d07e'),(140428,20379,748,NULL,23,'craft\\elements\\Entry',1,0,'2022-06-14 01:21:10','2022-06-14 03:32:36',NULL,NULL,'9a6615f8-4cfc-4fb8-87c5-32fdf11b5874'),(140513,NULL,NULL,NULL,5,'craft\\elements\\User',1,0,'2022-06-16 23:07:06','2022-08-08 23:41:43',NULL,NULL,'4f10d7d4-eb36-4c64-bce5-2919cda8bb58'),(140516,140013,NULL,122242,6,'craft\\elements\\Entry',0,0,'2022-06-19 22:46:14','2022-06-19 22:46:14',NULL,NULL,'ef2abe3f-c2de-44f2-bed3-82cf28175976'),(140787,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-06-23 00:35:52','2022-06-23 00:35:52',NULL,NULL,'f12107ec-e087-4ae3-916e-a3280f8378c4'),(141052,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-06-23 04:12:37','2022-09-14 23:00:11',NULL,NULL,'05ecb7bd-b286-4053-9f42-ce4616db812c'),(141227,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-06-23 06:15:18','2022-06-23 06:15:18',NULL,NULL,'e771b337-0372-409c-a5be-f1a225090dff'),(141312,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:21','2022-09-14 23:00:45',NULL,NULL,'23d228f4-647c-4bbb-85fc-40b8088dda66'),(141313,141312,NULL,122930,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:21','2022-06-23 06:46:21',NULL,NULL,'675a9eb9-96e4-4da4-9cde-cbb09a0ce27d'),(141314,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:23','2022-09-14 23:00:46',NULL,NULL,'986ac39d-0f22-4df2-85c5-d5c9deb7f761'),(141315,141314,NULL,122931,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:23','2022-06-23 06:46:23',NULL,NULL,'ebbefa0c-7e52-4986-9abe-6f8a38f39ae9'),(141316,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:25','2022-09-14 23:00:47',NULL,NULL,'6a6d0128-0784-4545-9232-b04b6ec6a1df'),(141317,141316,NULL,122932,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:25','2022-06-23 06:46:25',NULL,NULL,'3f26d5e2-e889-42ed-8a74-a6d51549bc2a'),(141318,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:27','2022-09-14 23:00:48',NULL,NULL,'8b60c8fd-7a6b-4072-8a38-1c461b2b26ea'),(141319,141318,NULL,122933,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:27','2022-06-23 06:46:27',NULL,NULL,'6b2b6c67-d4ef-40f6-969d-c45d418a952b'),(141320,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:29','2022-09-14 23:00:49',NULL,NULL,'98c7a0b4-5c46-468d-a2ef-635cd903791a'),(141321,141320,NULL,122934,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:29','2022-06-23 06:46:29',NULL,NULL,'1a583007-c46c-4fdd-83c6-f28e485d1741'),(141322,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:30','2022-09-14 23:00:50',NULL,NULL,'6b397178-8e13-469a-8a3f-1e42f78c4f77'),(141323,141322,NULL,122935,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:30','2022-06-23 06:46:30',NULL,NULL,'bebf6a77-9ea5-4d49-9be0-ae2bb23b353b'),(141324,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:32','2022-09-14 23:00:51',NULL,NULL,'c673fc27-dc9f-4b3b-8892-8eaf13fc0837'),(141325,141324,NULL,122936,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:32','2022-06-23 06:46:32',NULL,NULL,'fc3ad968-fd16-4fd7-a42b-5ef29fb5eaa6'),(141326,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:33','2022-09-14 23:00:52',NULL,NULL,'5886edb0-a816-436b-b3a1-7021d3f626ec'),(141327,141326,NULL,122937,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:33','2022-06-23 06:46:33',NULL,NULL,'ed6b835e-8277-4801-a7cd-2bd1f4c15881'),(141328,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:35','2022-09-14 23:00:53',NULL,NULL,'07d1ca03-a74a-4c04-8e47-254fbafdcd8d'),(141329,141328,NULL,122938,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:35','2022-06-23 06:46:35',NULL,NULL,'94adaee1-f1f4-4c06-bbaa-188ba8925278'),(141330,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:37','2022-09-14 23:00:54',NULL,NULL,'48969407-d5e3-4a6c-9508-f89a75082edf'),(141331,141330,NULL,122939,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:37','2022-06-23 06:46:37',NULL,NULL,'da117e8a-2c8f-49d6-8580-840bad57d73b'),(141332,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:39','2022-09-14 23:00:55',NULL,NULL,'3a496eab-b253-42ce-a3ce-7c4f74d9418d'),(141333,141332,NULL,122940,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:39','2022-06-23 06:46:39',NULL,NULL,'f5df1bc7-d8af-408f-ac92-b20c7dd100fa'),(141334,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:41','2022-09-14 23:00:56',NULL,NULL,'3140a8a8-ba6d-4658-8857-71be5f8cfb59'),(141335,141334,NULL,122941,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:41','2022-06-23 06:46:41',NULL,NULL,'d3bf337a-1278-4927-a531-2fc348fa584f'),(141336,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:43','2022-09-14 23:00:57',NULL,NULL,'8ea8412b-a7aa-4ef2-a732-315ec3e4e410'),(141337,141336,NULL,122942,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:43','2022-06-23 06:46:43',NULL,NULL,'3517802f-3d0c-4aea-9d75-b1905d419f12'),(141338,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:45','2022-09-14 23:00:58',NULL,NULL,'663b764a-bcae-451a-9b5b-bef264541023'),(141339,141338,NULL,122943,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:45','2022-06-23 06:46:45',NULL,NULL,'29b95456-c90c-454e-9afe-e9100f9bf0bf'),(141340,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:46','2022-09-14 23:00:59',NULL,NULL,'a8e6a0b5-c55b-4fc1-a7ae-555b247735b0'),(141341,141340,NULL,122944,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:46','2022-06-23 06:46:46',NULL,NULL,'1a5fc69c-6db1-4611-b78f-35f78ce255f8'),(141342,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:48','2022-09-14 23:01:00',NULL,NULL,'0a71d88f-9844-4179-b69d-4af89586ba27'),(141343,141342,NULL,122945,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:48','2022-06-23 06:46:48',NULL,NULL,'b2280f49-3bd8-4fa5-8ff1-cd79fcb90a5d'),(141344,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:49','2022-09-14 23:01:01',NULL,NULL,'4b82da7c-81d4-429a-9f6e-a48a08740430'),(141345,141344,NULL,122946,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:49','2022-06-23 06:46:49',NULL,NULL,'26f2a55c-3b02-412b-854d-bbe071d1b016'),(141346,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:50','2022-09-14 23:01:02',NULL,NULL,'7d053200-7610-4724-9e86-f1c4c67be083'),(141347,141346,NULL,122947,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:50','2022-06-23 06:46:50',NULL,NULL,'3e9d6b24-35f3-4c81-bfe8-4a25d0d293e0'),(141348,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:52','2022-09-14 23:01:03',NULL,NULL,'fd651fc6-6abf-4e06-a810-7f8c2817b9b4'),(141349,141348,NULL,122948,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:52','2022-06-23 06:46:52',NULL,NULL,'a45b74b6-a7e5-4e2a-84e6-963cdc7bc14e'),(141350,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:54','2022-09-14 23:01:03',NULL,NULL,'3c240699-9955-405b-8054-b03b63fffe55'),(141351,141350,NULL,122949,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:54','2022-06-23 06:46:54',NULL,NULL,'6e5acfb9-d053-431d-be79-0598f2933d4f'),(141352,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:56','2022-09-14 23:01:04',NULL,NULL,'186f2f1c-8274-475b-b5bc-490e9a5b81bc'),(141353,141352,NULL,122950,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:56','2022-06-23 06:46:56',NULL,NULL,'9b47266c-71a7-4cd2-b52e-59504af86454'),(141354,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:57','2022-09-14 23:01:06',NULL,NULL,'03620610-ecd3-4b7b-957c-40bf72ca53a8'),(141355,141354,NULL,122951,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:57','2022-06-23 06:46:57',NULL,NULL,'d1e73baa-bc2a-49eb-b0ef-b6d34d19d644'),(141356,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:59','2022-09-14 23:01:06',NULL,NULL,'e7c772f6-3949-40b2-9e04-d9eea25f7daf'),(141357,141356,NULL,122952,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:46:59','2022-06-23 06:46:59',NULL,NULL,'eb8a2d73-622a-49b5-9342-b12131ffee8a'),(141358,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:01','2022-09-14 23:01:07',NULL,NULL,'2e49d127-0fe6-4ffa-82ea-7a8fb1a03f1f'),(141359,141358,NULL,122953,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:01','2022-06-23 06:47:01',NULL,NULL,'adc68428-a935-4d45-ab35-1ef1c7b937ce'),(141360,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:02','2022-09-14 23:01:08',NULL,NULL,'cfe77b02-aed9-4522-a8a2-b7890c68bf36'),(141361,141360,NULL,122954,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:02','2022-06-23 06:47:02',NULL,NULL,'64c0a5af-390d-491b-b4d6-c5ea76c1375f'),(141362,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:04','2022-09-14 23:01:10',NULL,NULL,'8da1a8e0-5127-47b0-8f60-0927fae5d32b'),(141363,141362,NULL,122955,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:04','2022-06-23 06:47:04',NULL,NULL,'9fa6ac8f-c01d-4083-8406-067a7d5f39a9'),(141364,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:06','2022-09-14 23:01:11',NULL,NULL,'46d93b34-a6e9-4e43-b821-ada6993d7ab1'),(141365,141364,NULL,122956,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:06','2022-06-23 06:47:06',NULL,NULL,'162ba1e6-c84e-4950-9382-c4af5f4c86e4'),(141366,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:08','2022-09-14 23:01:12',NULL,NULL,'458311a9-7102-4ab5-ad49-0b9647ad1e5a'),(141367,141366,NULL,122957,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:08','2022-06-23 06:47:08',NULL,NULL,'bfd68bec-bd94-473c-95b6-e5e0475471ce'),(141368,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:10','2022-09-14 23:01:13',NULL,NULL,'fff268e5-df34-494e-9dc9-4c1a5eb48f68'),(141369,141368,NULL,122958,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:10','2022-06-23 06:47:10',NULL,NULL,'8cc3108a-f2af-4d40-aa50-854346d96c13'),(141370,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:12','2022-09-14 23:01:14',NULL,NULL,'0ffc007a-e577-4bdd-881e-6989f8d5cfd2'),(141371,141370,NULL,122959,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:12','2022-06-23 06:47:12',NULL,NULL,'03a71d90-ef5b-4694-8a10-6e0ee0b72017'),(141372,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:14','2022-09-14 23:01:15',NULL,NULL,'4472974d-d3d1-4d1c-83d0-7acb81846113'),(141373,141372,NULL,122960,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:14','2022-06-23 06:47:14',NULL,NULL,'350e3201-59c7-4400-afc2-6fbe2c6d5179'),(141374,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:16','2022-09-14 23:01:16',NULL,NULL,'deaefb65-73e1-486e-822d-bf417a7c4ee1'),(141375,141374,NULL,122961,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:16','2022-06-23 06:47:16',NULL,NULL,'daa7f5d8-6305-483d-826e-2f652720bfa5'),(141376,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:18','2022-09-14 23:01:17',NULL,NULL,'1f8aaa87-e79d-48b9-a268-56c9076d7c51'),(141377,141376,NULL,122962,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:18','2022-06-23 06:47:18',NULL,NULL,'2d7c1946-1ba6-4c4b-a20c-72a0ba3c6fb0'),(141378,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:19','2022-09-14 23:01:18',NULL,NULL,'90b9d352-6ac5-40fb-bc90-7d5f6c42b1e8'),(141379,141378,NULL,122963,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:19','2022-06-23 06:47:19',NULL,NULL,'bd5c9615-c317-49cf-bc7f-9ab98b6020b6'),(141380,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:21','2022-09-14 23:01:18',NULL,NULL,'39ec50d3-057e-474c-be9c-5df5f33e0921'),(141381,141380,NULL,122964,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:21','2022-06-23 06:47:21',NULL,NULL,'a2e514dd-bc18-4f00-a8a9-2f265077f388'),(141382,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:23','2022-09-14 23:01:19',NULL,NULL,'bacbfa14-6564-4b0b-9a35-2bdff93f6c2b'),(141383,141382,NULL,122965,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:23','2022-06-23 06:47:23',NULL,NULL,'683f3970-5057-46d8-8a1c-458c8dc677fc'),(141384,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:25','2022-09-14 23:01:20',NULL,NULL,'87a039b3-9343-4973-b352-aa1c774580e4'),(141385,141384,NULL,122966,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:25','2022-06-23 06:47:25',NULL,NULL,'4af361f7-0c93-4750-bc54-9dbbbcf0a089'),(141386,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:26','2022-09-14 23:01:21',NULL,NULL,'3e7b549e-c807-4125-be7b-9742c0f34c07'),(141387,141386,NULL,122967,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:26','2022-06-23 06:47:26',NULL,NULL,'2b0c42de-29bc-45f3-b9d9-a3ffa036a3dc'),(141388,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:28','2022-09-14 23:01:22',NULL,NULL,'66a74352-a2b1-4e16-9cc3-199a25c9e4fc'),(141389,141388,NULL,122968,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:28','2022-06-23 06:47:28',NULL,NULL,'d04bbf13-362e-446b-9e15-c37a6c661c1c'),(141390,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:29','2022-09-14 23:01:23',NULL,NULL,'82a1851d-04ff-4fa2-92b2-764968256c26'),(141391,141390,NULL,122969,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:29','2022-06-23 06:47:29',NULL,NULL,'22697864-3fc8-4b84-baba-46e324aae749'),(141392,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:31','2022-09-14 23:01:25',NULL,NULL,'c3eba4db-c871-43b8-a231-3af8a4c01ea3'),(141393,141392,NULL,122970,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:31','2022-06-23 06:47:31',NULL,NULL,'bb0215d2-c47b-492d-9596-a384be350544'),(141394,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:33','2022-09-14 23:01:25',NULL,NULL,'ccdb587d-a16f-41ca-a181-de30159ea000'),(141395,141394,NULL,122971,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:33','2022-06-23 06:47:33',NULL,NULL,'b499c6f7-7bf4-4fa4-9527-911d36c1806d'),(141396,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:35','2022-09-14 23:01:26',NULL,NULL,'6927d859-9f0c-43f4-aa9d-d30b2b4befb4'),(141397,141396,NULL,122972,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:35','2022-06-23 06:47:35',NULL,NULL,'a2695eaf-91a8-453d-9a37-2eae0c39c96a'),(141398,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:37','2022-09-14 23:01:27',NULL,NULL,'4ae13819-4633-487c-ad08-5b47eb854205'),(141399,141398,NULL,122973,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:37','2022-06-23 06:47:37',NULL,NULL,'46d4d749-77ab-4afb-bca3-6af2a9dbd3d9'),(141400,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:39','2022-09-14 23:01:29',NULL,NULL,'476762c9-e882-46d0-9041-f8c820e409d2'),(141401,141400,NULL,122974,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:39','2022-06-23 06:47:39',NULL,NULL,'be536def-272f-4498-8de2-5b49f7d77f41'),(141402,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:41','2022-09-14 23:01:30',NULL,NULL,'78363aa3-7196-444b-b16b-751664a814a0'),(141403,141402,NULL,122975,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:41','2022-06-23 06:47:41',NULL,NULL,'4b9d3439-2bc5-4a87-a2b3-e2c5feb0d911'),(141404,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:42','2022-09-14 23:01:31',NULL,NULL,'02f5d742-8629-448b-bcbf-3e93f789129d'),(141405,141404,NULL,122976,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:42','2022-06-23 06:47:42',NULL,NULL,'9f3ad7d9-b6c7-46d5-8f36-d293c05511b1'),(141406,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:44','2022-09-14 23:01:32',NULL,NULL,'a0c4770b-c2b9-4354-b101-9b4d409eed0d'),(141407,141406,NULL,122977,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:44','2022-06-23 06:47:44',NULL,NULL,'19aa1126-0c4c-4482-912a-a56f6e3a29de'),(141408,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:46','2022-09-14 23:01:33',NULL,NULL,'80ec4ef3-d7fb-4499-84b3-b241407e5454'),(141409,141408,NULL,122978,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:46','2022-06-23 06:47:46',NULL,NULL,'7a0c0f7a-0dd1-4e44-995f-d88adbc606cd'),(141410,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:48','2022-09-14 23:01:34',NULL,NULL,'4b2742ec-a77b-4121-ad23-0b5401c4f0d4'),(141411,141410,NULL,122979,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:48','2022-06-23 06:47:48',NULL,NULL,'7411cc26-52af-4eed-bde4-18c568f5be18'),(141412,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:50','2022-09-14 23:01:35',NULL,NULL,'b59db6ce-bd47-43e3-849f-80179a06d0c8'),(141413,141412,NULL,122980,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:50','2022-06-23 06:47:50',NULL,NULL,'21a239ff-0e9d-4515-88b8-cb1c91446cc7'),(141414,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:52','2022-09-14 23:01:36',NULL,NULL,'08191cde-155f-4b00-8ece-306cc6d0ba8b'),(141415,141414,NULL,122981,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:52','2022-06-23 06:47:52',NULL,NULL,'12491423-c8c9-4f37-ba40-48b33ffb56c2'),(141416,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:54','2022-09-14 23:01:37',NULL,NULL,'138a4faf-bf6e-4b31-9398-4f978cb095f2'),(141417,141416,NULL,122982,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:54','2022-06-23 06:47:54',NULL,NULL,'d4186da6-1635-46ae-adca-36a154b4c101'),(141418,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:56','2022-09-14 23:01:38',NULL,NULL,'b5c46078-5b88-4459-aa7e-11793e3a7300'),(141419,141418,NULL,122983,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:56','2022-06-23 06:47:56',NULL,NULL,'1b5e48f4-5a88-4457-9cf1-c57ab6e33e71'),(141420,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:58','2022-09-14 23:01:38',NULL,NULL,'b5339506-cd16-4b01-ba00-cf323b0ff29d'),(141421,141420,NULL,122984,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:47:58','2022-06-23 06:47:58',NULL,NULL,'f3928295-f9bc-402b-b5cd-9893ea1d6c50'),(141422,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:00','2022-09-14 23:01:40',NULL,NULL,'856c515b-1e71-4f8f-ad44-3331fe01f88b'),(141423,141422,NULL,122985,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:00','2022-06-23 06:48:00',NULL,NULL,'bfe77c94-f637-4932-a206-2254e1ce7a00'),(141424,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:01','2022-09-14 23:01:41',NULL,NULL,'6428d7fc-01a1-4bc6-a95b-c7572eb1ca05'),(141425,141424,NULL,122986,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:01','2022-06-23 06:48:01',NULL,NULL,'0b29e55b-62f6-4517-b9a2-3b12d3db2732'),(141426,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:03','2022-09-14 23:01:42',NULL,NULL,'6141b8cd-7915-46b0-a852-5de22b0fd386'),(141427,141426,NULL,122987,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:03','2022-06-23 06:48:03',NULL,NULL,'cb92b678-edf4-4bc6-9e31-83366607c55f'),(141428,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:05','2022-09-14 23:01:43',NULL,NULL,'f056311a-c0ed-4d80-9270-ffec4225b000'),(141429,141428,NULL,122988,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:05','2022-06-23 06:48:05',NULL,NULL,'95cc6ea8-93f8-4aaf-8666-36ae7e3b09c8'),(141430,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:07','2022-09-14 23:01:45',NULL,NULL,'f9f0d13e-bf54-4846-942d-906b7735cb0c'),(141431,141430,NULL,122989,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:07','2022-06-23 06:48:07',NULL,NULL,'facf9325-6710-479c-98b4-1068438237d9'),(141432,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:09','2022-09-14 23:01:46',NULL,NULL,'d860591a-fc04-4077-b48b-e23d6c355782'),(141433,141432,NULL,122990,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:09','2022-06-23 06:48:09',NULL,NULL,'305fadb3-e19e-484a-b57e-75b9bb0d2a6e'),(141434,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:10','2022-09-14 23:01:47',NULL,NULL,'b694f1b4-f149-4d89-b6d2-811add9d34ad'),(141435,141434,NULL,122991,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:10','2022-06-23 06:48:10',NULL,NULL,'cbe17811-e532-4520-9e92-d424c15edc5f'),(141436,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:12','2022-09-14 23:01:48',NULL,NULL,'81cd5bc4-c066-40e2-8d31-5730078c51c2'),(141437,141436,NULL,122992,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:12','2022-06-23 06:48:12',NULL,NULL,'4478dc3d-1dae-4b17-9110-50385fafa20d'),(141438,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:14','2022-09-14 23:01:49',NULL,NULL,'d1d09cdd-2610-4fd7-a061-8bfd14e8c636'),(141439,141438,NULL,122993,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:14','2022-06-23 06:48:14',NULL,NULL,'83986775-f366-40fd-8296-5c3f38f3953b'),(141440,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:16','2022-09-14 23:01:49',NULL,NULL,'0ae2e6dd-2165-45cb-9f2d-ab995311db5a'),(141441,141440,NULL,122994,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:16','2022-06-23 06:48:16',NULL,NULL,'0311478c-cccf-45ed-81e2-214e851c8b0d'),(141442,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:18','2022-09-14 23:01:50',NULL,NULL,'851b612f-50ff-41e3-b270-61f3deabfcbb'),(141443,141442,NULL,122995,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:18','2022-06-23 06:48:18',NULL,NULL,'fef77811-049d-4061-a4c4-d5e3e9e459dc'),(141444,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:20','2022-09-14 23:01:51',NULL,NULL,'64b85adf-29ff-42c8-9b7a-8ef3240c77f1'),(141445,141444,NULL,122996,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:20','2022-06-23 06:48:20',NULL,NULL,'ecd49c5b-4fe8-4099-91e0-8b76f4600164'),(141446,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:21','2022-09-14 23:01:52',NULL,NULL,'95a4d305-a553-4dea-a22e-e75f91e07eea'),(141447,141446,NULL,122997,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:21','2022-06-23 06:48:21',NULL,NULL,'35bdca87-cd22-4cb5-ac49-0921eaa4977e'),(141448,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:23','2022-09-14 23:01:53',NULL,NULL,'5e008696-1ba7-49cb-82f5-eb2a80bb028e'),(141449,141448,NULL,122998,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:23','2022-06-23 06:48:23',NULL,NULL,'f683a08b-0005-4d71-aa71-1cc360053407'),(141450,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:24','2022-09-14 23:01:54',NULL,NULL,'a4f5b169-f270-4f80-8007-bd8a9172bf9a'),(141451,141450,NULL,122999,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:24','2022-06-23 06:48:24',NULL,NULL,'616538ad-edd8-4e0d-a594-81fc645e308f'),(141452,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:26','2022-09-14 23:01:55',NULL,NULL,'7137d818-2dc0-47fb-9199-cf6fc769fb4a'),(141453,141452,NULL,123000,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:26','2022-06-23 06:48:26',NULL,NULL,'78428c90-314b-4371-a59a-e52bfecc27d7'),(141454,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:28','2022-09-14 23:01:56',NULL,NULL,'ff790d10-a7c9-4360-9914-273213f7b7e2'),(141455,141454,NULL,123001,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:28','2022-06-23 06:48:28',NULL,NULL,'ced1b36e-8f60-4fcd-9a70-365ed842e05c'),(141456,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:30','2022-09-14 23:01:57',NULL,NULL,'94b987a5-273f-411d-b167-9500d5e6aca5'),(141457,141456,NULL,123002,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:30','2022-06-23 06:48:30',NULL,NULL,'5a1fa076-0d6c-4353-9f5b-3a39aaae9edc'),(141458,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:31','2022-09-14 23:01:58',NULL,NULL,'4cd3c5e4-f061-41ec-ac88-ac68b2c6e365'),(141459,141458,NULL,123003,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:31','2022-06-23 06:48:31',NULL,NULL,'bd6acb62-23ed-4575-92c9-c82d5e46988d'),(141460,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:33','2022-09-14 23:01:59',NULL,NULL,'58550dc7-4e7c-41e1-a7bc-68b8c4e9ae95'),(141461,141460,NULL,123004,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:33','2022-06-23 06:48:33',NULL,NULL,'4426a385-a519-44b9-9b47-7dfb969e419b'),(141462,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:35','2022-09-14 23:02:00',NULL,NULL,'144e08b7-6b90-4287-8220-8e3d2631122f'),(141463,141462,NULL,123005,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:35','2022-06-23 06:48:35',NULL,NULL,'2a1c0862-5839-4152-9f84-28f06c4cc88e'),(141464,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:37','2022-09-14 23:02:01',NULL,NULL,'866acd02-a1f1-4534-b0a5-ef267ae745bc'),(141465,141464,NULL,123006,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:37','2022-06-23 06:48:37',NULL,NULL,'6537bd44-34b4-4cb6-880a-c4fd0e4e436a'),(141466,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:38','2022-09-14 23:02:02',NULL,NULL,'ae506ba5-3f22-4872-bc5c-af835e6637b5'),(141467,141466,NULL,123007,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:38','2022-06-23 06:48:38',NULL,NULL,'ced80e0b-66fa-4b98-b7fa-b12da77a88b5'),(141468,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:39','2022-09-14 23:02:02',NULL,NULL,'c5234b74-6aa5-48be-8d11-eb50f0e7d326'),(141469,141468,NULL,123008,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:39','2022-06-23 06:48:39',NULL,NULL,'7b0ff6e4-80fb-4ba2-a5bc-7d369886770f'),(141470,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:41','2022-09-14 23:02:03',NULL,NULL,'97e753bc-9e5d-41c0-955a-dc187cd4c761'),(141471,141470,NULL,123009,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:41','2022-06-23 06:48:41',NULL,NULL,'dcfcb10a-a24a-40b6-8a76-530adcd81a02'),(141472,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:43','2022-09-14 23:02:04',NULL,NULL,'d9401735-eb36-4a1c-8603-a15d16bd544b'),(141473,141472,NULL,123010,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:43','2022-06-23 06:48:43',NULL,NULL,'2be2996c-6c2f-4bd3-a249-8ca3a5cde328'),(141474,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:44','2022-09-14 23:02:05',NULL,NULL,'41a926a9-3e40-40ba-8396-9d3e4ba1ff75'),(141475,141474,NULL,123011,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:44','2022-06-23 06:48:44',NULL,NULL,'4596e4d7-0094-46f4-bdbd-9b19b293ce78'),(141476,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:45','2022-09-14 23:02:06',NULL,NULL,'c9db07e5-c343-4e57-a281-a04be07ddd84'),(141477,141476,NULL,123012,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:45','2022-06-23 06:48:45',NULL,NULL,'e562ad3a-2fc5-443f-98b3-7130085c6d6c'),(141478,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:47','2022-09-14 23:02:06',NULL,NULL,'996eceb9-8d65-48e7-8bc6-7922206b24e6'),(141479,141478,NULL,123013,1,'craft\\elements\\Entry',1,0,'2022-06-23 06:48:47','2022-06-23 06:48:47',NULL,NULL,'79cd97c9-0d39-48e1-b9bd-e34b803154c7'),(141483,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-06-24 01:07:19','2022-06-24 01:07:19',NULL,NULL,'795cc958-a0ed-4fa6-ae31-7fc81ee8ea37'),(141484,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-06-24 07:15:31','2022-06-24 07:15:31',NULL,NULL,'0a50cabe-7472-4b20-92e1-50f3e5c790c6'),(141486,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2022-06-28 00:17:02','2022-08-08 06:17:27',NULL,NULL,'c51e6f39-47e3-4a5c-b06a-636c9467d868'),(141487,141486,NULL,123015,6,'craft\\elements\\Entry',1,0,'2022-06-28 00:17:02','2022-06-28 00:17:03',NULL,NULL,'c3a6758b-bbcf-4831-9b3c-015d7fe3b328'),(141489,17650,NULL,123016,12,'craft\\elements\\Entry',0,0,'2022-06-28 00:22:49','2022-06-28 00:22:49',NULL,NULL,'e5385b05-23f4-4fa9-a3ed-aa479a02f5cd'),(141490,17650,NULL,123017,12,'craft\\elements\\Entry',0,0,'2022-06-28 00:23:53','2022-06-28 00:23:53',NULL,NULL,'05fc1cfd-61e0-4345-8da8-c8adc304feef'),(141493,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2022-06-28 00:39:49','2022-08-08 06:16:07',NULL,NULL,'0c41d43f-d5f4-4148-810e-e7b0bc1a6084'),(141494,141493,NULL,123019,6,'craft\\elements\\Entry',1,0,'2022-06-28 00:39:49','2022-06-28 00:39:50',NULL,NULL,'0648f614-a245-46c6-8ed6-9e6a9031a0be'),(141496,141493,NULL,123020,6,'craft\\elements\\Entry',1,0,'2022-06-28 00:45:36','2022-06-28 00:45:37',NULL,NULL,'8b488110-0203-42f5-96aa-0297363c432c'),(141500,141493,NULL,123022,6,'craft\\elements\\Entry',0,0,'2022-06-28 01:30:24','2022-06-28 01:30:24',NULL,NULL,'311676f7-4092-4240-a825-05a3f2280789'),(141503,NULL,NULL,NULL,5,'craft\\elements\\User',1,0,'2022-06-28 01:35:34','2022-06-28 01:36:08',NULL,NULL,'40f8d51f-b3a3-40b1-b0c1-25e0bccff45d'),(141504,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-06-28 01:37:49','2022-06-28 01:37:49',NULL,NULL,'77b4441d-fab7-4205-8e25-29809eb9a2cd'),(141505,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-06-28 01:38:02','2022-06-28 01:38:02',NULL,NULL,'ab2756d1-b389-4f7c-b5fb-b384e9b03b25'),(141506,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-06-28 01:38:09','2022-06-28 01:38:09',NULL,NULL,'6910510b-b932-4440-8840-c2270e9a25e8'),(141507,141493,NULL,123023,6,'craft\\elements\\Entry',0,0,'2022-06-28 01:38:25','2022-06-28 01:38:25',NULL,NULL,'28c4fbb1-39d1-4d0c-af54-4191c498d27c'),(141509,141493,NULL,123024,6,'craft\\elements\\Entry',0,0,'2022-06-28 01:38:40','2022-06-28 01:38:40',NULL,NULL,'b92c8ada-c0ae-49fe-93e9-076940c1b358'),(141511,20379,771,NULL,23,'craft\\elements\\Entry',1,0,'2022-06-28 01:51:24','2022-06-28 01:51:24',NULL,NULL,'46b59c96-260c-4be5-a845-3ee3d20c0f3c'),(141512,141493,772,NULL,6,'craft\\elements\\Entry',0,0,'2022-06-28 02:05:47','2022-06-28 02:05:48',NULL,NULL,'e19f81b4-b935-48f2-aa15-6ef389e1da6b'),(141514,141493,NULL,123025,6,'craft\\elements\\Entry',0,0,'2022-06-28 02:09:04','2022-06-28 02:09:04',NULL,NULL,'3af87366-e4da-4457-836a-57d92151f250'),(141516,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-06-28 02:41:32','2022-06-28 02:41:32',NULL,NULL,'42d96bd8-f834-4499-9770-d01b2f873c8e'),(141522,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-06-28 04:51:13','2022-06-28 04:51:13',NULL,NULL,'2968c721-9233-4b38-beb6-4ae43d9da993'),(141523,141493,NULL,123028,6,'craft\\elements\\Entry',0,0,'2022-06-28 04:51:39','2022-06-28 04:51:39',NULL,NULL,'35b5775b-819f-40b7-a243-18771178e3cd'),(141527,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-06-29 01:17:09','2022-06-29 01:31:13',NULL,NULL,'3d485df6-0238-4aaa-9d96-f73e49ba5439'),(141533,NULL,NULL,NULL,12,'craft\\elements\\Entry',1,0,'2022-06-29 01:35:57','2023-03-31 03:56:54',NULL,NULL,'1e2eafaa-a6d7-494d-8547-0520028137cd'),(141534,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-06-29 01:44:43','2022-06-29 01:44:43',NULL,NULL,'889f2175-7b80-47bb-ac0a-264f7cbc6a90'),(141535,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-06-29 01:46:37','2022-06-29 01:46:37',NULL,NULL,'31c6c9c5-11b9-4485-abbb-f51dd04c64c5'),(141536,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-06-29 01:49:10','2022-06-29 01:49:10',NULL,NULL,'1c92c7b7-9d88-4eda-9b0f-564c0c228519'),(141538,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-06-29 01:56:06','2022-06-30 05:32:08',NULL,NULL,'cd7a990e-a9be-4ae6-b4b3-ca576f8223d8'),(141547,141493,NULL,123036,6,'craft\\elements\\Entry',0,0,'2022-06-29 02:09:39','2022-06-29 02:09:39',NULL,NULL,'dc7aaab9-b0ac-44d9-973e-651eb091706f'),(141550,141493,NULL,123037,6,'craft\\elements\\Entry',1,0,'2022-06-29 02:23:00','2022-06-29 02:23:00',NULL,NULL,'2f9633fa-b9ce-4d15-a9e0-11e25a5f46ca'),(141551,141493,NULL,123038,6,'craft\\elements\\Entry',1,0,'2022-06-29 02:23:52','2022-06-29 02:23:52',NULL,NULL,'1129a75a-51a2-4374-afe0-287f727b0629'),(141553,141486,NULL,123039,6,'craft\\elements\\Entry',1,0,'2022-06-29 02:24:04','2022-06-29 02:24:04',NULL,NULL,'ddf39a52-7a47-430c-8ddb-4cf4fd63c95c'),(141554,140060,NULL,123040,6,'craft\\elements\\Entry',1,0,'2022-06-29 02:24:19','2022-06-29 02:24:20',NULL,NULL,'59bbaaf6-869b-459d-b9c2-a21549ab4da9'),(141556,141493,NULL,123041,6,'craft\\elements\\Entry',1,0,'2022-06-29 02:24:35','2022-06-29 02:24:35',NULL,NULL,'921ce59a-e963-4c09-91e4-e71b462b2bb0'),(141558,141493,NULL,123042,6,'craft\\elements\\Entry',1,0,'2022-06-29 03:24:16','2022-06-29 03:24:16',NULL,NULL,'d6cd8f71-2aa8-4de7-990c-669cefe39b81'),(141560,141493,NULL,123043,6,'craft\\elements\\Entry',1,0,'2022-06-29 03:26:33','2022-06-29 03:26:33',NULL,NULL,'7af29020-7c27-4af0-ab31-c7bcd0e96307'),(141562,141493,NULL,123044,6,'craft\\elements\\Entry',1,0,'2022-06-29 03:36:53','2022-06-29 03:36:53',NULL,NULL,'066389ba-a92c-4011-be28-d740b6633677'),(141567,141493,NULL,123046,6,'craft\\elements\\Entry',1,0,'2022-06-29 04:05:49','2022-06-29 04:05:49',NULL,NULL,'5a2e9073-263f-4948-9a6e-884b5b388a07'),(141569,141493,NULL,123047,6,'craft\\elements\\Entry',1,0,'2022-06-29 04:06:22','2022-06-29 04:06:22',NULL,NULL,'cc063dd1-c762-4757-9425-376ca6101278'),(141571,17682,NULL,123048,12,'craft\\elements\\Entry',1,0,'2022-06-29 04:08:55','2022-06-29 04:08:55',NULL,NULL,'83e543f5-f7e7-4c7c-8ab5-421d22b76397'),(141573,141493,NULL,123049,6,'craft\\elements\\Entry',1,0,'2022-06-29 04:11:15','2022-06-29 04:11:15',NULL,NULL,'1619aa24-618a-4bfc-9976-92c7214d8c9e'),(141574,141493,798,NULL,6,'craft\\elements\\Entry',1,0,'2022-06-29 06:01:22','2022-06-29 06:01:23',NULL,NULL,'6ad8ff66-376b-4b74-bb93-9fba6e3e0480'),(141576,17682,NULL,123050,12,'craft\\elements\\Entry',1,0,'2022-06-30 03:06:09','2022-06-30 03:06:09',NULL,NULL,'9c9f2e62-c112-43a2-96d0-ead2748903ba'),(141578,17682,NULL,123051,12,'craft\\elements\\Entry',1,0,'2022-06-30 03:06:50','2022-06-30 03:06:50',NULL,NULL,'a8360894-026e-4708-bc40-7f6640e12476'),(141582,141533,803,NULL,12,'craft\\elements\\Entry',1,0,'2022-06-30 05:31:01','2022-06-30 05:33:23','2022-06-30 05:31:34',NULL,'f2ea50e6-8351-4901-a4e7-bf5b4c5e0d61'),(141586,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2022-07-04 01:16:48','2022-07-04 01:16:48',NULL,NULL,'af1cd958-dff2-40be-8200-1a58095bc209'),(141587,141586,NULL,123054,6,'craft\\elements\\Entry',1,0,'2022-07-04 01:16:48','2022-07-04 01:16:49',NULL,NULL,'f16f984b-e524-4599-b605-a390583cd2cd'),(141589,18139,NULL,123055,6,'craft\\elements\\Entry',0,0,'2022-07-04 01:22:26','2022-07-04 01:22:26',NULL,NULL,'45852ca3-e9bf-4250-9f54-b78c4eabcae3'),(141592,18139,NULL,123056,6,'craft\\elements\\Entry',0,0,'2022-07-04 01:25:07','2022-07-04 01:25:07',NULL,NULL,'a928400a-3f14-47c0-a009-7a8b77b71a88'),(141594,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-07-04 01:51:08','2022-07-04 01:51:08',NULL,NULL,'1c2270c7-6e02-49e1-b9be-b35ce91096d9'),(141595,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-07-04 01:53:26','2022-07-04 01:53:26',NULL,NULL,'1db64e5a-d1e3-4050-a36e-081bff4be1ba'),(141596,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-07-04 07:06:19','2022-07-04 07:06:19',NULL,NULL,'2e189abb-4ebe-43f0-b140-408f84dd3dcb'),(141597,18139,NULL,123057,6,'craft\\elements\\Entry',0,0,'2022-07-04 07:06:50','2022-07-04 07:06:50',NULL,NULL,'5b83a219-7446-4941-8346-447ff4dab871'),(141599,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-07-04 07:10:43','2022-07-04 07:10:43',NULL,NULL,'21613ac5-5280-4d4e-bd70-dd4e3571cba5'),(141600,18139,NULL,123058,6,'craft\\elements\\Entry',0,0,'2022-07-04 07:10:55','2022-07-04 07:10:55',NULL,NULL,'42cdd1b8-d690-4462-a165-07c45a1fac65'),(141602,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-07-04 07:19:02','2022-07-04 07:19:02',NULL,NULL,'152b2c17-af20-4ddd-83d3-e3180f3bcc32'),(141603,18139,NULL,123059,6,'craft\\elements\\Entry',0,0,'2022-07-04 07:19:08','2022-07-04 07:19:08',NULL,NULL,'22bf6167-efec-4015-92df-a793559910a1'),(141604,18139,NULL,123060,6,'craft\\elements\\Entry',0,0,'2022-07-04 07:19:20','2022-07-04 07:19:20',NULL,NULL,'a260f9fb-06c7-46e6-b584-5c8748215f26'),(141606,18139,NULL,123061,6,'craft\\elements\\Entry',0,0,'2022-07-04 07:31:23','2022-07-04 07:31:23',NULL,NULL,'78a69885-e835-4be7-bdca-0bf89aadb442'),(141607,17650,812,NULL,12,'craft\\elements\\Entry',0,0,'2022-07-05 05:41:43','2022-07-05 05:41:44',NULL,NULL,'05f4636c-9b8e-4801-8f61-9a15564f2eb8'),(141608,141493,NULL,123062,6,'craft\\elements\\Entry',0,0,'2022-07-05 05:49:47','2022-07-05 05:49:47',NULL,NULL,'725d5f33-f8a1-4720-a1b2-899ff659a888'),(141610,141493,NULL,123063,6,'craft\\elements\\Entry',0,0,'2022-07-07 02:07:42','2022-07-07 02:07:42',NULL,NULL,'eb7878fd-ea69-403b-8450-b654aba37ea9'),(141612,141493,NULL,123064,6,'craft\\elements\\Entry',1,0,'2022-07-07 02:12:54','2022-07-07 02:12:54',NULL,NULL,'2eb03bd6-0000-495f-84ad-e09228b9c878'),(141614,18139,NULL,123065,6,'craft\\elements\\Entry',0,0,'2022-07-07 02:20:26','2022-07-07 02:20:26',NULL,NULL,'257e20fe-d688-4c84-8a07-727434f78aea'),(141616,NULL,NULL,NULL,5,'craft\\elements\\User',1,0,'2022-07-10 23:07:09','2023-03-09 04:28:28',NULL,NULL,'64e7b05e-b247-4a58-bf7a-d8762449f96b'),(141617,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2022-07-10 23:07:09','2023-03-09 04:28:28',NULL,NULL,'2db3e5af-588a-4d8e-a956-5ce1eac5c905'),(141618,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2022-07-10 23:07:09','2023-03-09 04:28:28',NULL,NULL,'bf785c61-cae9-452e-b207-15c8b20e6e5a'),(141619,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2022-07-10 23:07:09','2023-03-09 04:28:28',NULL,NULL,'372059af-e048-4253-8da3-071e1d548002'),(141620,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2022-07-10 23:07:09','2023-03-09 04:28:28',NULL,NULL,'e3947752-e5c6-4eb7-88eb-c1a8f55740c6'),(141621,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2022-07-10 23:07:09','2023-03-09 04:28:28',NULL,NULL,'38061c65-cbb6-4c83-b8ec-f224d6ee32fb'),(141622,20379,NULL,123066,23,'craft\\elements\\Entry',1,0,'2022-07-10 23:10:00','2022-07-10 23:10:01',NULL,NULL,'33eb7d73-d8ef-49a4-b7b5-41cc04f94b49'),(141624,20379,NULL,123067,23,'craft\\elements\\Entry',1,0,'2022-07-10 23:11:13','2022-07-10 23:11:13',NULL,NULL,'34f8854c-b7f8-40c3-8ef1-ffaf586461b2'),(141625,17650,NULL,123068,12,'craft\\elements\\Entry',0,0,'2022-07-11 01:48:54','2022-07-11 01:48:54',NULL,NULL,'a1338383-9304-40b4-8a06-50684c2ccfb7'),(141627,21297,NULL,123069,34,'craft\\elements\\Entry',1,0,'2022-07-12 00:09:34','2022-07-12 00:09:35',NULL,NULL,'117bb744-ab62-44cc-8b93-43baf9771061'),(141629,18139,NULL,123070,6,'craft\\elements\\Entry',0,0,'2022-07-13 04:32:08','2022-07-13 04:32:08',NULL,NULL,'f7a500ba-f3dd-4393-a743-f7c5a308e234'),(141632,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-07-18 03:24:34','2022-07-18 03:24:34',NULL,NULL,'c816404b-f4f0-465d-bb82-2424242ff4f5'),(141633,17650,NULL,123071,12,'craft\\elements\\Entry',0,0,'2022-07-18 03:34:46','2022-07-18 03:34:46',NULL,NULL,'814bbd26-b2b1-4fce-87cb-a1821c372de2'),(141635,17650,NULL,123072,12,'craft\\elements\\Entry',0,0,'2022-07-18 04:21:30','2022-07-18 04:21:30',NULL,NULL,'a0d6b612-426a-4ce9-84b4-b94fd07e9012'),(141637,17650,NULL,123073,12,'craft\\elements\\Entry',0,0,'2022-07-18 04:21:58','2022-07-18 04:21:58',NULL,NULL,'353435e3-2c57-4412-bc72-b617f9d8a1a1'),(141642,NULL,NULL,NULL,5,'craft\\elements\\User',1,0,'2022-07-20 04:37:24','2023-03-09 04:28:37',NULL,NULL,'bd546b75-a0ff-4167-97cb-aa1b7f762fa0'),(141650,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-07-21 23:03:29','2022-07-21 23:03:29',NULL,NULL,'e4099d43-7256-43c4-8846-6edcd19490c5'),(141660,20379,NULL,123083,23,'craft\\elements\\Entry',1,0,'2022-07-26 00:27:53','2022-07-26 00:27:53',NULL,NULL,'fe9682b2-5312-49c5-918f-4183cfd91ac1'),(141662,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2022-07-26 00:49:16','2022-08-08 06:44:50',NULL,NULL,'11ceb2b7-9ea8-4178-9f09-7911d9dc1c91'),(141663,141662,NULL,123084,6,'craft\\elements\\Entry',1,0,'2022-07-26 00:49:16','2022-07-26 00:49:17',NULL,NULL,'d7409033-7941-4959-aadd-d584c5488b46'),(141670,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-07-26 01:35:54','2022-07-26 01:35:54',NULL,NULL,'b535b0d3-5062-4321-995f-a5521f983834'),(141671,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-07-26 01:35:57','2022-07-26 01:35:57',NULL,NULL,'6e576aa2-de26-41ae-8ea9-632e4982554e'),(141672,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-07-26 01:36:02','2022-07-26 01:36:02',NULL,NULL,'7a96f2a7-d37d-45e9-8bae-1cd6cd66456e'),(141680,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-07-26 01:39:44','2022-07-26 01:39:44',NULL,NULL,'3579cea6-8cf7-4f53-b11b-2bd8d3404022'),(141688,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-07-26 01:44:21','2022-07-26 01:44:21',NULL,NULL,'caa0d18a-4fa7-420a-a0a2-cb276018e61b'),(141693,17650,NULL,123098,12,'craft\\elements\\Entry',0,0,'2022-07-26 04:07:27','2022-07-26 04:07:27',NULL,NULL,'3490b250-c44e-4ac7-8234-932b95e52a05'),(141698,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-07-26 05:03:55','2022-07-26 05:03:55',NULL,NULL,'6c1208c4-7c1e-48f7-b20b-d3eedc9c139e'),(141699,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-07-26 05:04:22','2022-07-26 05:04:22',NULL,NULL,'d3440403-e359-49f6-b6db-8d4561e83bf5'),(141704,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-07-26 05:08:33','2022-07-26 05:08:33',NULL,NULL,'38a6d759-0423-472b-ba4f-ff3b73c912c9'),(141707,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-07-26 05:22:56','2022-07-26 05:22:56',NULL,NULL,'d0f69a98-a32e-4e01-9759-a5907dfa6bfd'),(141720,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-07-26 05:27:42','2022-07-26 05:27:42',NULL,NULL,'125effc1-c73d-44f1-9843-1a2fb20b7430'),(141725,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2022-07-26 05:29:13','2022-11-16 22:17:08',NULL,NULL,'668612b0-334e-4edf-af0d-04ea41d0324a'),(141726,141725,NULL,123113,6,'craft\\elements\\Entry',1,0,'2022-07-26 05:29:13','2022-07-26 05:29:14',NULL,NULL,'16b7c020-d86a-47bc-a0ce-212e48a331d1'),(141728,141725,NULL,123114,6,'craft\\elements\\Entry',0,0,'2022-07-26 05:31:15','2022-07-26 05:31:16',NULL,NULL,'625cfe7c-75f1-4b6d-a473-553e99729cd2'),(141730,141725,NULL,123115,6,'craft\\elements\\Entry',0,0,'2022-07-26 05:31:58','2022-07-26 05:31:58',NULL,NULL,'445751b4-5669-4a3e-971e-ae0bb2ab8107'),(141733,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-07-26 05:43:14','2022-07-26 05:43:14',NULL,NULL,'66fa1120-76e4-4a58-b956-ea09f0bfe848'),(141735,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-07-26 05:44:05','2023-03-09 04:26:27',NULL,NULL,'a7adbf73-76e9-4991-ac97-b2d613dd0804'),(141736,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-07-26 06:52:15','2022-07-26 06:52:15',NULL,NULL,'7a60f09f-ebb9-4075-8d4c-19929cdf23df'),(141737,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-07-26 06:56:38','2022-07-26 06:56:38',NULL,NULL,'80e6ffad-7516-43b7-b9ca-bd4e687ccbb9'),(141738,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-07-26 06:56:44','2022-07-26 06:56:44',NULL,NULL,'c734bc28-a6be-415b-9498-8575928f6495'),(141739,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-07-26 06:56:48','2022-07-26 06:56:48',NULL,NULL,'ec849544-1284-4182-a5e9-3c9e3410901a'),(141740,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-07-26 06:56:52','2022-07-26 06:56:52',NULL,NULL,'1c0b337e-f4f2-49c0-bcfc-bd388696d0ac'),(141741,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-07-26 06:57:24','2022-07-26 06:57:24',NULL,NULL,'c64a689d-748a-4117-becc-83f7d6bdc688'),(141742,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-07-26 06:57:28','2022-07-26 06:57:28',NULL,NULL,'95994768-aedd-4fed-b6bf-add804e287aa'),(141743,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-07-26 06:57:36','2022-07-26 06:57:36',NULL,NULL,'96d1d834-adfa-47f1-8507-e1c4ca7aef40'),(141744,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-07-26 06:57:40','2022-07-26 06:57:40',NULL,NULL,'7830c143-adca-4c8f-8205-6005a8aebfa4'),(141745,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-07-26 07:00:32','2022-07-26 07:00:32',NULL,NULL,'6d586e7a-7fff-49ec-ae6b-6ad6239f5f70'),(141746,141725,NULL,123117,6,'craft\\elements\\Entry',0,0,'2022-07-26 07:01:22','2022-07-26 07:01:23',NULL,NULL,'dca18a86-576b-4c3e-ac02-e40d5649ac23'),(141748,141725,NULL,123118,6,'craft\\elements\\Entry',0,0,'2022-07-26 07:02:27','2022-07-26 07:02:27',NULL,NULL,'24723021-a0c2-4834-b603-bf9d105af4a5'),(141750,141725,NULL,123119,6,'craft\\elements\\Entry',0,0,'2022-07-26 07:02:55','2022-07-26 07:02:55',NULL,NULL,'2d83d25f-3284-44f6-83a2-e2f38dc23ffc'),(141752,141725,NULL,123120,6,'craft\\elements\\Entry',0,0,'2022-07-26 07:03:20','2022-07-26 07:03:20',NULL,NULL,'337f283a-a639-4b16-8942-c7e7c6b55eca'),(141754,141725,NULL,123121,6,'craft\\elements\\Entry',0,0,'2022-07-26 07:04:20','2022-07-26 07:04:20',NULL,NULL,'b65b9232-6f00-4c9e-a06a-8faedc5ca7c7'),(141756,141725,NULL,123122,6,'craft\\elements\\Entry',0,0,'2022-07-26 07:05:12','2022-07-26 07:05:12',NULL,NULL,'b7fcba1f-a013-4095-9234-aa90f5a52552'),(141758,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-07-26 07:05:58','2022-07-26 07:05:58',NULL,NULL,'7dbbeceb-d43b-4a28-a223-c2497aeb27e5'),(141759,141725,NULL,123123,6,'craft\\elements\\Entry',0,0,'2022-07-26 07:06:10','2022-07-26 07:06:10',NULL,NULL,'4fd983ae-31ab-49e3-849b-77789fe17504'),(141761,141725,NULL,123124,6,'craft\\elements\\Entry',0,0,'2022-07-26 07:06:26','2022-07-26 07:06:26',NULL,NULL,'25959a29-56fc-49f5-bf2a-7079e1b8fac6'),(141763,141725,NULL,123125,6,'craft\\elements\\Entry',0,0,'2022-07-26 07:06:43','2022-07-26 07:06:43',NULL,NULL,'1eb9ad4f-6157-4556-8e2b-35d2a621ee27'),(141770,141725,NULL,123128,6,'craft\\elements\\Entry',0,0,'2022-07-27 04:47:14','2022-07-27 04:47:14',NULL,NULL,'c45e8a49-d9f4-4084-9047-7b56c53b4791'),(141772,141725,NULL,123129,6,'craft\\elements\\Entry',0,0,'2022-07-27 06:09:37','2022-07-27 06:09:37',NULL,NULL,'810051c5-295d-40e4-9643-18d063ccc501'),(141774,20379,NULL,123130,23,'craft\\elements\\Entry',1,0,'2022-07-27 06:11:16','2022-07-27 06:11:16',NULL,NULL,'c9c67e50-580d-4942-81ef-697721278429'),(141776,140013,878,NULL,6,'craft\\elements\\Entry',1,0,'2022-07-28 04:11:35','2022-08-25 04:29:25','2022-08-25 04:29:21',NULL,'3f7eef47-5e48-4367-b386-bd092a446eb2'),(141777,141725,NULL,123131,6,'craft\\elements\\Entry',0,0,'2022-07-28 04:14:23','2022-07-28 04:14:23',NULL,NULL,'7af88e35-80fc-4026-912c-d74911fd5287'),(141778,141725,NULL,123132,6,'craft\\elements\\Entry',0,0,'2022-07-28 04:20:14','2022-07-28 04:20:15',NULL,NULL,'a3cb605a-3a79-4c0f-8468-c4dc38a60d1e'),(141780,20379,NULL,123133,23,'craft\\elements\\Entry',1,0,'2022-07-28 04:26:49','2022-07-28 04:26:49',NULL,NULL,'63aaeaee-8723-4a12-b685-d7e5db850a32'),(141784,141725,NULL,123135,6,'craft\\elements\\Entry',1,0,'2022-07-28 04:50:06','2022-07-28 04:50:06',NULL,NULL,'ba822293-057e-471d-9f29-f6c96ffe5237'),(141786,141725,NULL,123136,6,'craft\\elements\\Entry',1,0,'2022-07-28 04:51:51','2022-07-28 04:51:51',NULL,NULL,'a13e3f73-ec82-4bc1-b9be-59c021ed1f64'),(141788,141725,NULL,123137,6,'craft\\elements\\Entry',1,0,'2022-07-28 04:52:25','2022-07-28 04:52:25',NULL,NULL,'6f8402d8-02ae-4446-a33b-5f5db0dc58e2'),(141790,141725,NULL,123138,6,'craft\\elements\\Entry',1,0,'2022-07-28 04:52:58','2022-07-28 04:52:58',NULL,NULL,'bf975bab-cc69-4d80-8c35-8a49cfb41272'),(141792,17650,NULL,123139,12,'craft\\elements\\Entry',1,0,'2022-07-28 04:53:42','2022-07-28 04:53:42',NULL,NULL,'5f4fd63f-ea7c-4bf2-9a47-dcdcc94557f5'),(141794,17650,NULL,123140,12,'craft\\elements\\Entry',1,0,'2022-07-28 05:25:57','2022-07-28 05:25:57',NULL,NULL,'24cb62e7-40fa-4962-8e24-92a4d39adf63'),(141796,48262,NULL,123141,52,'craft\\elements\\Entry',1,0,'2022-08-01 06:02:13','2022-08-01 06:02:13',NULL,NULL,'cbc88b5f-b2a9-435d-91da-53e31ef3cd74'),(141798,18156,NULL,123142,6,'craft\\elements\\Entry',1,0,'2022-08-02 00:05:50','2022-08-02 00:05:50',NULL,NULL,'7789ccf5-ebab-48c4-8b7e-0d2246282cdc'),(141800,18156,NULL,123143,6,'craft\\elements\\Entry',1,0,'2022-08-02 00:14:10','2022-08-02 00:14:10',NULL,NULL,'c8515f9a-a7a2-4e33-ab26-b6212c01f903'),(141802,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-08-02 00:28:24','2022-08-02 00:28:24',NULL,NULL,'5602af88-8fa3-4394-b8b4-6b8e028732cc'),(141803,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-08-02 00:28:28','2022-08-02 00:28:28',NULL,NULL,'0642b1c6-9cca-4bdd-8276-3653e7cc3322'),(141804,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-08-02 00:28:33','2022-08-02 00:28:33',NULL,NULL,'1960a760-025b-44f1-92a1-03c8fed9b83a'),(141805,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-08-02 00:28:38','2022-08-02 00:28:38',NULL,NULL,'5cc173a9-f63f-4673-ade3-fd59c5a6b37d'),(141806,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-08-02 00:28:43','2022-08-02 00:28:43',NULL,NULL,'416ef702-019d-4e04-b618-0d8e5081a7ff'),(141807,18156,NULL,123144,6,'craft\\elements\\Entry',1,0,'2022-08-02 00:32:40','2022-08-02 00:32:40',NULL,NULL,'7ddb0c34-ac7e-4956-a498-39da41b06abe'),(141809,18156,NULL,123145,6,'craft\\elements\\Entry',1,0,'2022-08-02 03:43:02','2022-08-02 03:43:02',NULL,NULL,'f026a7f2-5d9b-4a7d-8a9b-9de20e87b1fc'),(141811,141486,893,NULL,6,'craft\\elements\\Entry',1,0,'2022-08-05 05:36:54','2022-10-09 23:57:05','2022-10-09 23:57:05',NULL,'57fabde0-e01c-448f-9175-669d96c2a39e'),(141812,140246,NULL,123146,68,'craft\\elements\\Entry',0,0,'2022-08-05 06:07:11','2022-08-05 06:07:11',NULL,NULL,'1c559d86-21dd-4af5-8b97-ad00def6402f'),(141814,140246,NULL,123147,68,'craft\\elements\\Entry',1,0,'2022-08-05 06:08:46','2022-08-05 06:08:46',NULL,NULL,'d4edbdde-7b30-407b-9e12-4ff6ef0fd73f'),(141816,140246,NULL,123148,68,'craft\\elements\\Entry',1,0,'2022-08-05 06:09:43','2022-08-05 06:09:43',NULL,NULL,'a15b1dc8-d9ef-4948-8bcf-46df04611f42'),(141818,48262,NULL,123149,52,'craft\\elements\\Entry',1,0,'2022-08-08 06:09:46','2022-08-08 06:09:46',NULL,NULL,'6b47c52b-e2e4-4d1d-924c-35a345378d11'),(141820,140060,NULL,123150,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:14:50','2022-08-08 06:14:50',NULL,NULL,'a462e37f-30bf-46e5-ac25-31875ec631a5'),(141821,141493,NULL,123151,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:16:07','2022-08-08 06:16:07',NULL,NULL,'d9e7793c-bc0e-415e-b2cc-5996f8a4dfdc'),(141823,141486,NULL,123152,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:16:57','2022-08-08 06:16:57',NULL,NULL,'c1d8c766-91d6-4acd-b84d-18cd5bb1ac9b'),(141825,141486,NULL,123153,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:17:27','2022-08-08 06:17:27',NULL,NULL,'6cd8510a-337c-4760-ad53-24e3b499fc3b'),(141827,140060,NULL,123154,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:19:28','2022-08-08 06:19:28',NULL,NULL,'4fce5f91-2e8f-4d96-a0d0-b9ead81b99ba'),(141829,44845,NULL,123155,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:19:55','2022-08-08 06:19:55',NULL,NULL,'b06027f0-49a0-467b-a838-553367df82e9'),(141831,44843,NULL,123156,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:20:26','2022-08-08 06:20:26',NULL,NULL,'6f7c5f65-be61-4d01-8de9-d264b250ae3b'),(141833,140060,NULL,123157,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:21:21','2022-08-08 06:21:21',NULL,NULL,'5fa81d5b-577f-4f2e-b862-49e9f4e3064e'),(141835,44849,NULL,123158,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:22:13','2022-08-08 06:22:13',NULL,NULL,'69f1f738-945b-4876-bb54-d3b91f43a9f8'),(141837,140060,NULL,123159,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:22:46','2022-08-08 06:22:47',NULL,NULL,'8a424196-e410-4290-b3b3-618a8239f043'),(141839,44837,NULL,123160,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:23:47','2022-08-08 06:23:47',NULL,NULL,'0510b9c5-932b-49a3-bef3-fae4008f30cd'),(141841,40506,NULL,123161,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:24:22','2022-08-08 06:24:22',NULL,NULL,'af8677df-020d-49d0-bf8c-8070e0a4fd9c'),(141843,40506,NULL,123162,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:26:22','2022-08-08 06:26:22',NULL,NULL,'14065b0f-6125-47b3-8bc6-60f370d818fb'),(141845,40504,NULL,123163,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:26:58','2022-08-08 06:26:59',NULL,NULL,'24e15edf-8be6-4ebe-8aff-ca689bf1b6e6'),(141846,30427,NULL,123164,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:27:49','2022-08-08 06:27:49',NULL,NULL,'18aa46a0-ac56-4ff2-9aaa-18f8dab57c8a'),(141848,22210,NULL,123165,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:28:54','2022-08-08 06:28:54',NULL,NULL,'25c56e80-cea3-4735-937a-9d1875a66778'),(141850,22210,NULL,123166,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:29:38','2022-08-08 06:29:38',NULL,NULL,'57ce0e0f-671d-45f5-bdef-24e6e2a0ec91'),(141852,22210,NULL,123167,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:30:06','2022-08-08 06:30:06',NULL,NULL,'808f07dc-6097-405b-b6d3-96d54ccd0099'),(141853,18168,NULL,123168,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:30:58','2022-08-08 06:30:58',NULL,NULL,'d979abfd-f672-44dd-aa7f-e44103b21b1e'),(141855,18156,NULL,123169,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:35:10','2022-08-08 06:35:10',NULL,NULL,'ddea78ad-4499-4f5f-9073-45c30ec0d452'),(141857,18126,NULL,123170,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:38:54','2022-08-08 06:38:54',NULL,NULL,'b69b2953-ba52-4d6a-bc02-78f047226ea1'),(141859,18126,NULL,123171,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:39:23','2022-08-08 06:39:23',NULL,NULL,'5a8f9087-6048-4468-bbc1-775e3a7b4aa1'),(141861,18122,NULL,123172,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:40:23','2022-08-08 06:40:24',NULL,NULL,'f24f8a7c-e4de-4597-b8af-81c7511361f5'),(141863,18122,NULL,123173,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:41:22','2022-08-08 06:41:22',NULL,NULL,'16625453-a653-48ba-8621-cd5de546bf4d'),(141865,141662,NULL,123174,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:42:15','2022-08-08 06:42:15',NULL,NULL,'689bf050-a7e0-422d-8a64-84ca7217302e'),(141867,141662,NULL,123175,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:42:28','2022-08-08 06:42:29',NULL,NULL,'edfd8337-6c56-4bdc-b73e-ab15c904c174'),(141869,141662,NULL,123176,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:42:58','2022-08-08 06:42:58',NULL,NULL,'90fdfae4-d413-47df-b5e1-6545acce9473'),(141872,141662,NULL,123177,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:44:50','2022-08-08 06:44:50',NULL,NULL,'551c3a3d-5f79-4805-bad9-e77b60780a01'),(141873,40504,NULL,123178,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:45:00','2022-08-08 06:45:00',NULL,NULL,'9bd455b5-eed2-41cb-bb81-28bc7884e414'),(141875,139967,NULL,123179,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:45:37','2022-08-08 06:45:37',NULL,NULL,'946f1d8e-dd20-43f7-9723-efa9d87e26f2'),(141877,139967,NULL,123180,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:46:01','2022-08-08 06:46:01',NULL,NULL,'b9902a4c-226e-43a6-9893-a7cfe8b53588'),(141879,18109,NULL,123181,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:46:50','2022-08-08 06:46:50',NULL,NULL,'b08d2fe2-ea88-4ffd-866c-3bd5bfc996f9'),(141881,16571,NULL,123182,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:48:26','2022-08-08 06:48:26',NULL,NULL,'f4a54203-d654-4438-96d1-bb4bd283f7b8'),(141883,16828,NULL,123183,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:49:19','2022-08-08 06:49:19',NULL,NULL,'b81aeab7-af50-4b4d-bddf-46237a99be62'),(141885,16828,NULL,123184,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:49:43','2022-08-08 06:49:44',NULL,NULL,'d7925a4e-b3f1-40e4-827d-eb907ab220e0'),(141887,16828,NULL,123185,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:50:03','2022-08-08 06:50:03',NULL,NULL,'0fed1b71-c4c4-4ab7-b715-98d3864ecdf8'),(141889,16828,NULL,123186,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:50:13','2022-08-08 06:50:13',NULL,NULL,'65818b4c-9642-49aa-9cf5-67d16dd7d106'),(141891,16828,NULL,123187,6,'craft\\elements\\Entry',1,0,'2022-08-08 06:51:20','2022-08-08 06:51:20',NULL,NULL,'e3b044ce-270b-44d2-a065-afadbae46232'),(141897,48003,NULL,123190,12,'craft\\elements\\Entry',1,0,'2022-08-08 06:54:40','2022-08-08 06:54:40',NULL,NULL,'317ee352-1ff5-491a-8862-a958c854e831'),(141899,48003,NULL,123191,12,'craft\\elements\\Entry',1,0,'2022-08-08 06:55:20','2022-08-08 06:55:20',NULL,NULL,'ee85d82b-00d2-4421-9c69-3978eedb4f51'),(141901,48003,NULL,123192,12,'craft\\elements\\Entry',1,0,'2022-08-08 06:56:04','2022-08-08 06:56:04',NULL,NULL,'572a09b1-25b3-4157-92e6-6e0839fa7f0c'),(141902,17684,NULL,123193,12,'craft\\elements\\Entry',1,0,'2022-08-08 06:59:41','2022-08-08 06:59:41',NULL,NULL,'1ceefd87-8028-45aa-adb9-22356055585e'),(141904,17660,NULL,123194,12,'craft\\elements\\Entry',1,0,'2022-08-08 07:02:05','2022-08-08 07:02:05',NULL,NULL,'916a81f5-eec0-4b7e-9474-0136bf5debc8'),(141906,17650,NULL,123195,12,'craft\\elements\\Entry',1,0,'2022-08-08 07:03:56','2022-08-08 07:03:56',NULL,NULL,'e87f5f83-b4a5-42c8-a27a-af9c9d1f8c05'),(141908,17650,NULL,123196,12,'craft\\elements\\Entry',1,0,'2022-08-08 07:04:07','2022-08-08 07:04:07',NULL,NULL,'af410c3f-ec02-419b-aa97-6031016b2cc4'),(141910,17644,NULL,123197,12,'craft\\elements\\Entry',1,0,'2022-08-08 07:05:22','2022-08-08 07:05:22',NULL,NULL,'b078a10c-10fb-485b-8dbc-9bebd4469f7f'),(141912,140246,NULL,123198,68,'craft\\elements\\Entry',1,0,'2022-08-08 07:07:49','2022-08-08 07:07:49',NULL,NULL,'170cfe2e-c968-4caf-83a7-14f5d6cfc668'),(141913,140246,942,NULL,68,'craft\\elements\\Entry',1,0,'2022-08-08 07:07:53','2022-08-08 07:07:53',NULL,NULL,'d7b35cab-c020-4e75-9ff5-fc0c5c415f81'),(141914,74162,943,NULL,56,'craft\\elements\\Entry',1,0,'2022-08-08 07:08:20','2022-11-02 04:07:54',NULL,NULL,'3fed7d29-f9f4-488c-b8de-ec28f66c29c2'),(141915,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2022-08-08 23:41:59','2023-03-09 04:28:37',NULL,NULL,'aafcc407-fdb8-4798-9679-aad842c3d684'),(141916,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2022-08-08 23:41:59','2023-03-09 04:28:37',NULL,NULL,'a0082d95-324f-418a-89da-61270343b6fc'),(141917,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2022-08-08 23:41:59','2023-03-09 04:28:37',NULL,NULL,'73c9f36f-5cb2-4899-a62c-3cf907cdbb8c'),(141918,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2022-08-08 23:41:59','2023-03-09 04:28:37',NULL,NULL,'b39e6906-fcb9-4913-ab80-37e6ed14ba8c'),(141919,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2022-08-08 23:41:59','2023-03-09 04:28:37',NULL,NULL,'5736d9cb-5bc8-4326-b8b0-b9c49ec0f840'),(141921,18176,NULL,123199,6,'craft\\elements\\Entry',0,0,'2022-08-09 00:06:09','2022-08-09 00:06:09',NULL,NULL,'80da68c3-7446-47ff-b2b6-de4e0dfb8114'),(141923,16828,NULL,123200,6,'craft\\elements\\Entry',1,0,'2022-08-09 00:07:42','2022-08-09 00:07:42',NULL,NULL,'7dc3f281-6d62-4c88-988d-ffb713cbbafc'),(141925,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2022-08-09 04:18:53','2022-11-16 22:16:58',NULL,NULL,'8d4d2cf4-0bbd-4826-b1fc-65bc80e996ee'),(141927,140013,NULL,123201,6,'craft\\elements\\Entry',1,0,'2022-08-12 03:38:44','2022-08-12 03:38:44',NULL,NULL,'883dedf6-0172-4d4e-b013-437f3dd99fba'),(141929,44981,NULL,123202,6,'craft\\elements\\Entry',1,0,'2022-08-12 03:45:04','2022-08-12 03:45:04',NULL,NULL,'8514dd63-5f74-40a0-8573-6186c628652b'),(141931,30427,NULL,123203,6,'craft\\elements\\Entry',1,0,'2022-08-12 03:45:45','2022-08-12 03:45:45',NULL,NULL,'65907fe4-29eb-4c54-a354-7c0834bed8c4'),(141933,40504,NULL,123204,6,'craft\\elements\\Entry',1,0,'2022-08-12 03:46:35','2022-08-12 03:46:35',NULL,NULL,'aa1ba5c7-47c4-47d8-a251-67a143f7028f'),(141935,16571,NULL,123205,6,'craft\\elements\\Entry',1,0,'2022-08-12 03:46:46','2022-08-12 03:46:46',NULL,NULL,'b4125b36-edf2-4f5b-9c2c-e2c6307f17bf'),(141937,18156,NULL,123206,6,'craft\\elements\\Entry',1,0,'2022-08-12 03:46:53','2022-08-12 03:46:53',NULL,NULL,'9f1b5be3-0a01-439d-a25f-0932c77fe42e'),(141938,16828,NULL,123207,6,'craft\\elements\\Entry',1,0,'2022-08-12 03:47:29','2022-08-12 03:47:29',NULL,NULL,'57d23f5d-4ef3-44ef-aad2-790b80a7d5e8'),(141940,18139,NULL,123208,6,'craft\\elements\\Entry',0,0,'2022-08-12 03:50:34','2022-08-12 03:50:34',NULL,NULL,'11a11200-8e4e-4a56-9991-5fb536b8a093'),(141942,18139,NULL,123209,6,'craft\\elements\\Entry',0,0,'2022-08-12 03:51:25','2022-08-12 03:51:25',NULL,NULL,'a0ee652f-b977-49cb-8b90-18e2fa825b0c'),(141944,139967,NULL,123210,6,'craft\\elements\\Entry',1,0,'2022-08-15 02:54:41','2022-08-15 02:54:41',NULL,NULL,'b9ace066-a7b1-44b8-a5ff-0254296abf19'),(141945,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-08-15 05:27:41','2022-08-15 05:27:41',NULL,NULL,'89d7461b-2063-4557-8563-7e641210b1ae'),(141946,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-08-15 05:30:37','2022-08-15 05:30:37',NULL,NULL,'ed1ec3df-6722-420b-b211-d2bd4e091a87'),(141947,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-08-15 05:31:37','2022-08-15 05:31:37',NULL,NULL,'e72c6335-e38f-49a5-9f58-ab6372f5ba44'),(141948,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-08-15 05:32:14','2022-08-15 05:32:14',NULL,NULL,'f6a8086b-a2bb-45f0-b6a7-4e84633da98a'),(141949,141925,NULL,123211,6,'craft\\elements\\Entry',0,0,'2022-08-15 05:32:55','2022-08-15 05:32:55',NULL,NULL,'add16803-e401-4d74-abef-87a7f8e47e26'),(141952,141925,NULL,123212,6,'craft\\elements\\Entry',0,0,'2022-08-15 05:39:07','2022-08-15 05:39:07',NULL,NULL,'f36d3210-33de-4a11-89ca-4ff23fcd612d'),(141953,141925,NULL,123213,6,'craft\\elements\\Entry',0,0,'2022-08-15 05:39:25','2022-08-15 05:39:25',NULL,NULL,'a3471145-557b-489c-8c19-9c14c368fc2f'),(141954,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-08-15 05:54:34','2022-08-15 05:54:34',NULL,NULL,'8ac914c3-8502-4b8c-a554-6162e907c7cb'),(141955,18139,NULL,123214,6,'craft\\elements\\Entry',0,0,'2022-08-15 05:55:07','2022-08-15 05:55:07',NULL,NULL,'9e688f0f-3b90-43a7-a998-f6573a9180e0'),(141957,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-08-16 04:32:35','2022-08-16 04:32:35',NULL,NULL,'acdde384-e20c-4424-b4ef-f9f3887fb4f5'),(141958,141533,NULL,123215,12,'craft\\elements\\Entry',1,0,'2022-08-16 04:33:47','2022-08-16 04:33:47',NULL,NULL,'55914182-cc5f-4866-b193-c120899466f9'),(141960,141533,NULL,123216,12,'craft\\elements\\Entry',1,0,'2022-08-16 04:38:12','2022-08-16 04:38:12',NULL,NULL,'96a52123-14be-4d70-8a7a-1146fddf4f11'),(141961,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-08-16 05:10:35','2022-08-16 05:10:35',NULL,NULL,'c879bba3-c200-41be-ab5f-abd5cc1ad29f'),(141962,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-08-16 05:34:59','2023-03-09 04:28:22',NULL,NULL,'0373a690-294b-4529-97aa-1149b3e42df0'),(141964,20379,NULL,123217,23,'craft\\elements\\Entry',1,0,'2022-08-16 05:37:53','2022-08-16 05:37:53',NULL,NULL,'92f0daba-e44f-4435-a705-d527172a9b2a'),(141966,20379,NULL,123218,23,'craft\\elements\\Entry',1,0,'2022-08-16 05:38:24','2022-08-16 05:38:24',NULL,NULL,'f974e7ba-addc-4114-81a5-8740bb4fc40b'),(141968,17646,NULL,123219,12,'craft\\elements\\Entry',1,0,'2022-08-16 07:22:28','2022-08-16 07:22:28',NULL,NULL,'fe8ca39b-4db9-4e06-ab97-0a6d82f2a84a'),(141970,17646,NULL,123220,12,'craft\\elements\\Entry',0,0,'2022-08-16 07:22:40','2022-08-16 07:22:41',NULL,NULL,'dd420789-32ed-4d66-bddc-492014ac31e7'),(141971,18139,NULL,123221,6,'craft\\elements\\Entry',0,0,'2022-08-16 23:16:52','2022-08-16 23:16:52',NULL,NULL,'b119c70d-c6b8-4d3e-9200-7213180d7e09'),(141972,17646,NULL,123222,12,'craft\\elements\\Entry',0,0,'2022-08-17 02:35:27','2022-08-17 02:35:27',NULL,NULL,'30fc5909-7793-41e3-992a-e67f0801afca'),(141974,18139,NULL,123223,6,'craft\\elements\\Entry',0,0,'2022-08-17 02:36:37','2022-08-17 02:36:37',NULL,NULL,'7ba4941b-0518-4272-a956-abe43aecb1fd'),(141975,141925,NULL,123224,6,'craft\\elements\\Entry',0,0,'2022-08-17 04:14:48','2022-08-17 04:14:48',NULL,NULL,'44337b4c-8ee0-4984-b8c4-af1ac03f0afd'),(141977,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-08-17 04:16:34','2022-08-17 04:16:34',NULL,NULL,'98aefd41-109c-4c4e-8651-85e45db70c15'),(141978,17646,NULL,123225,12,'craft\\elements\\Entry',0,0,'2022-08-17 04:38:29','2022-08-17 04:38:29',NULL,NULL,'664fd438-26b9-46bd-afcc-7e90c843d4cb'),(141980,17646,NULL,123226,12,'craft\\elements\\Entry',0,0,'2022-08-17 04:38:56','2022-08-17 04:38:56',NULL,NULL,'b1f562b3-a39a-44a1-beec-b7e56974366a'),(141982,17646,NULL,123227,12,'craft\\elements\\Entry',0,0,'2022-08-17 04:54:11','2022-08-17 04:54:11',NULL,NULL,'f226f05f-3a7c-4197-b333-020a881d7ab1'),(141984,17646,NULL,123228,12,'craft\\elements\\Entry',0,0,'2022-08-17 04:58:00','2022-08-17 04:58:00',NULL,NULL,'9a9a812a-2861-4efd-991a-236a1ed4da4a'),(141986,17646,NULL,123229,12,'craft\\elements\\Entry',0,0,'2022-08-17 05:00:36','2022-08-17 05:00:36',NULL,NULL,'4f28e7d1-f6fc-4bc9-b254-784d233b7903'),(141987,17646,NULL,123230,12,'craft\\elements\\Entry',0,0,'2022-08-17 05:10:17','2022-08-17 05:10:17',NULL,NULL,'60aad388-50ff-4732-b9cb-4439774e6ddf'),(141989,17646,NULL,123231,12,'craft\\elements\\Entry',0,0,'2022-08-17 05:10:50','2022-08-17 05:10:50',NULL,NULL,'1256a19a-f885-4abc-ac92-2e74762e0390'),(141991,17650,NULL,123232,12,'craft\\elements\\Entry',1,0,'2022-08-17 05:11:34','2022-08-17 05:11:34',NULL,NULL,'5312838b-0008-4746-a931-4a83472aabc4'),(141993,17646,NULL,123233,12,'craft\\elements\\Entry',0,0,'2022-08-17 05:12:56','2022-08-17 05:12:56',NULL,NULL,'23ed9cff-c023-4d85-8291-69ec15078738'),(141997,44841,NULL,123234,6,'craft\\elements\\Entry',1,0,'2022-08-17 22:14:55','2022-08-17 22:14:55',NULL,NULL,'b654e795-a050-4af8-af61-7f0350c7ab64'),(141998,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-08-18 07:06:05','2022-08-18 07:06:05',NULL,NULL,'b96baf6b-c768-4aff-b872-22de93a36387'),(141999,141925,NULL,123235,6,'craft\\elements\\Entry',0,0,'2022-08-18 07:06:55','2022-08-18 07:06:55',NULL,NULL,'f2acdd78-14bf-4524-b8b9-74dbc4da9e56'),(142001,141925,NULL,123236,6,'craft\\elements\\Entry',1,0,'2022-08-18 07:07:33','2022-08-18 07:07:33',NULL,NULL,'a806cabb-a6dd-4e0d-835f-63bfc4f3b6a0'),(142003,141925,NULL,123237,6,'craft\\elements\\Entry',1,0,'2022-08-18 07:09:49','2022-08-18 07:09:49',NULL,NULL,'dd6ad8b0-5da9-44f7-bb30-8e9106a6d46c'),(142004,18139,NULL,123238,6,'craft\\elements\\Entry',0,0,'2022-08-18 07:10:03','2022-08-18 07:10:03',NULL,NULL,'c94dc093-fbd1-4247-b690-2a01c8488c8f'),(142006,18139,NULL,123239,6,'craft\\elements\\Entry',1,0,'2022-08-18 07:10:20','2022-08-18 07:10:20',NULL,NULL,'fc4d3392-fd34-4bfb-b1ac-38d4accba3a4'),(142008,18139,NULL,123240,6,'craft\\elements\\Entry',0,0,'2022-08-18 07:11:09','2022-08-18 07:11:09',NULL,NULL,'eabbb7bf-fd7c-4a28-b969-d09589edd13f'),(142009,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-08-18 07:17:57','2022-08-18 07:17:57',NULL,NULL,'be106303-4311-4ef7-81d0-60c515a82099'),(142011,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-08-18 07:21:04','2022-08-18 07:21:04',NULL,NULL,'069695db-af00-45e4-b8f3-92c3b2ab7d0c'),(142012,18139,NULL,123241,6,'craft\\elements\\Entry',0,0,'2022-08-18 07:21:46','2022-08-18 07:21:46',NULL,NULL,'74220674-ca93-49fa-873f-b0eb2d931d52'),(142014,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-08-18 07:24:47','2022-08-18 07:24:47',NULL,NULL,'c289fe7d-2a31-4a84-bae0-0e01bdb8fc44'),(142015,18139,NULL,123242,6,'craft\\elements\\Entry',1,0,'2022-08-18 07:25:17','2022-08-18 07:25:17',NULL,NULL,'a078632e-5d12-481f-a25c-faf37c2393f0'),(142017,18139,NULL,123243,6,'craft\\elements\\Entry',0,0,'2022-08-18 07:27:53','2022-08-18 07:27:53',NULL,NULL,'548db3d7-7eeb-480a-80bd-2922c3058638'),(142019,141925,NULL,123244,6,'craft\\elements\\Entry',1,0,'2022-08-18 21:47:11','2022-08-18 21:47:11',NULL,NULL,'0b88a871-b4ef-4e22-8a8b-441363571d57'),(142021,141925,NULL,123245,6,'craft\\elements\\Entry',1,0,'2022-08-19 03:55:02','2022-08-19 03:55:02',NULL,NULL,'d0cdcf01-4ba9-463a-9d2c-9adaa64f3ccb'),(142023,141925,NULL,123246,6,'craft\\elements\\Entry',1,0,'2022-08-19 03:58:24','2022-08-19 03:58:24',NULL,NULL,'c642d8ee-f2f1-4b5d-8eb9-28d2baa2aaae'),(142025,141925,NULL,123247,6,'craft\\elements\\Entry',1,0,'2022-08-19 04:01:42','2022-08-19 04:01:42',NULL,NULL,'ed0ea73f-a867-4636-b765-740d0b7a1b1c'),(142029,17646,NULL,123248,12,'craft\\elements\\Entry',0,0,'2022-08-22 06:14:16','2022-08-22 06:14:16',NULL,NULL,'7d46b346-b1b3-4bc5-8b83-00b10824cfd9'),(142030,18139,991,NULL,6,'craft\\elements\\Entry',0,0,'2022-08-22 23:27:43','2022-08-23 06:18:36',NULL,NULL,'d001371a-0283-4efc-8ba3-bc75eda34c31'),(142033,44841,NULL,123249,6,'craft\\elements\\Entry',1,0,'2022-08-24 01:12:15','2022-08-24 01:12:15',NULL,NULL,'0fa22bb6-a483-4e04-8a7a-4e627263645f'),(142034,44841,NULL,123250,6,'craft\\elements\\Entry',1,0,'2022-08-24 01:14:05','2022-08-24 01:14:05',NULL,NULL,'a60d3011-e02e-4e06-b1af-c211ab3e8e72'),(142035,44841,NULL,123251,6,'craft\\elements\\Entry',1,0,'2022-08-24 01:14:57','2022-08-24 01:14:57',NULL,NULL,'85f8e13d-3a54-4969-b7f2-65d8aedf04bb'),(142036,141493,994,NULL,6,'craft\\elements\\Entry',1,0,'2022-08-24 06:39:06','2022-08-24 06:39:08',NULL,NULL,'6c8a563e-20f2-416f-8d19-c14bde267abc'),(142037,44987,NULL,123252,6,'craft\\elements\\Entry',0,0,'2022-08-24 06:52:57','2022-08-24 06:52:57',NULL,NULL,'e6389207-0a5d-4e40-9a08-5ee91323cbe4'),(142038,40506,995,NULL,6,'craft\\elements\\Entry',1,0,'2022-08-24 07:11:53','2022-08-24 07:11:54',NULL,NULL,'4d671d7c-3855-4125-afb3-2ade7888668e'),(142039,NULL,NULL,NULL,5,'craft\\elements\\User',1,0,'2022-08-25 00:35:10','2023-03-09 04:28:28',NULL,NULL,'abf25658-1170-4c57-84bb-5346bcae1b89'),(142040,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2022-08-25 01:33:44','2023-03-09 04:28:28',NULL,NULL,'e9a648ea-c14e-4b52-a995-d9698db26c5d'),(142041,141533,NULL,123253,12,'craft\\elements\\Entry',1,0,'2022-08-25 02:23:49','2022-08-25 02:23:49',NULL,NULL,'7d272a2b-63df-43b0-b112-398851f7c0f7'),(142043,141533,NULL,123254,12,'craft\\elements\\Entry',1,0,'2022-08-25 02:27:21','2022-08-25 02:27:21',NULL,NULL,'191be7f2-ffc3-4b53-b6ae-43ed81113729'),(142045,141533,NULL,123255,12,'craft\\elements\\Entry',0,0,'2022-08-25 02:27:33','2022-08-25 02:27:33',NULL,NULL,'b25af919-907d-4a91-b8e7-63b4f8bea731'),(142047,141533,NULL,123256,12,'craft\\elements\\Entry',1,0,'2022-08-25 02:27:44','2022-08-25 02:27:45',NULL,NULL,'1bfa2b0e-af1d-4138-93d8-6c3abb9bc65c'),(142050,141925,NULL,123257,6,'craft\\elements\\Entry',1,0,'2022-08-25 02:31:17','2022-08-25 02:31:17',NULL,NULL,'1cf6deb0-7580-4549-a1bb-c5058e249247'),(142051,141925,1001,NULL,6,'craft\\elements\\Entry',1,0,'2022-08-25 02:31:26','2022-08-25 02:31:27',NULL,NULL,'9cb9a0a1-5e4a-4cbe-a1c8-f85c84ff1905'),(142053,18139,NULL,123258,6,'craft\\elements\\Entry',0,0,'2022-08-25 02:33:32','2022-08-25 02:33:32',NULL,NULL,'2feb6093-3e1e-4467-9ce1-1001defcb9a0'),(142056,17646,NULL,123259,12,'craft\\elements\\Entry',0,0,'2022-08-25 02:41:37','2022-08-25 02:41:37',NULL,NULL,'2883a845-b917-4673-9fdd-cc228141b639'),(142057,20379,NULL,123260,23,'craft\\elements\\Entry',1,0,'2022-08-25 03:58:21','2022-08-25 03:58:21',NULL,NULL,'2f332d5f-5d5f-41aa-8195-6e481ed2e579'),(142059,17646,NULL,123261,12,'craft\\elements\\Entry',1,0,'2022-08-25 04:23:29','2022-08-25 04:23:30',NULL,NULL,'fdce9dc5-1fcb-4de9-9b11-5a1101616e0c'),(142061,18139,NULL,123262,6,'craft\\elements\\Entry',1,0,'2022-08-25 04:29:46','2022-08-25 04:29:46',NULL,NULL,'40dce3f4-7c59-4cd0-a679-fad5ebb0f057'),(142062,141533,NULL,123263,12,'craft\\elements\\Entry',1,0,'2022-08-25 04:31:06','2022-08-25 04:31:06',NULL,NULL,'d144436f-195b-4046-a610-9f273b347fcf'),(142064,17646,NULL,123264,12,'craft\\elements\\Entry',1,0,'2022-08-25 04:36:54','2022-08-25 04:36:54',NULL,NULL,'96183bc4-5062-4d5e-a5e2-a3373ea5c794'),(142065,NULL,1008,NULL,6,'craft\\elements\\Entry',1,0,'2022-08-25 06:03:48','2023-03-30 23:10:32',NULL,NULL,'7c97c2d2-412b-4445-a502-eb72c5ecacca'),(142066,18139,NULL,123265,6,'craft\\elements\\Entry',0,0,'2022-08-25 21:34:36','2022-08-25 21:34:36',NULL,NULL,'bfbcaae1-517b-49b4-945b-2a3a77ca0d95'),(142067,18139,NULL,123266,6,'craft\\elements\\Entry',0,0,'2022-08-30 00:13:28','2022-08-30 00:13:28',NULL,NULL,'cfc80b6c-c517-4922-ba34-e9b602e08b86'),(142069,18139,NULL,123267,6,'craft\\elements\\Entry',1,0,'2022-08-30 00:13:40','2022-08-30 00:13:40',NULL,NULL,'d1f28993-ff5f-4a0f-9334-4128fc0cd964'),(142071,141533,NULL,123268,12,'craft\\elements\\Entry',1,0,'2022-09-05 06:28:39','2022-09-05 06:28:39',NULL,NULL,'5b337fa6-c8e1-4413-b0d9-e79d65953dc6'),(142075,141312,NULL,123269,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:05','2022-09-07 07:02:05',NULL,NULL,'f6ac480b-4c37-4023-b469-c087d146abc4'),(142076,141314,NULL,123270,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:06','2022-09-07 07:02:06',NULL,NULL,'7d916003-a0cf-446f-8a19-f613bf54f29b'),(142077,141316,NULL,123271,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:07','2022-09-07 07:02:07',NULL,NULL,'4a3c120c-4796-4150-9bb0-4a00145b161e'),(142078,141318,NULL,123272,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:08','2022-09-07 07:02:08',NULL,NULL,'2e20db8e-3f87-46f4-819d-8bea96e9cc0e'),(142079,141320,NULL,123273,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:09','2022-09-07 07:02:09',NULL,NULL,'cb6c1c45-52e7-42ce-b0c8-05e1b75cb21e'),(142080,141322,NULL,123274,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:10','2022-09-07 07:02:10',NULL,NULL,'470b2c54-b981-49b3-a912-65ab5ca13af8'),(142081,141324,NULL,123275,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:11','2022-09-07 07:02:11',NULL,NULL,'318082a7-03e7-4e8d-86af-a50fe9822aec'),(142082,141326,NULL,123276,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:11','2022-09-07 07:02:11',NULL,NULL,'50cd1ef1-cd13-4617-bb69-daf97da1f39f'),(142083,141328,NULL,123277,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:12','2022-09-07 07:02:12',NULL,NULL,'819a61c7-c2f4-41d7-af4f-0209858b0463'),(142084,141330,NULL,123278,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:13','2022-09-07 07:02:13',NULL,NULL,'c6569c9e-cdb0-47c8-b2da-0573a5797871'),(142085,141332,NULL,123279,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:14','2022-09-07 07:02:14',NULL,NULL,'1bbfb73d-191f-4cc5-84dd-98640afabe91'),(142086,141334,NULL,123280,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:14','2022-09-07 07:02:14',NULL,NULL,'a8e9305e-9930-46f1-9824-4dbfb86d14b6'),(142087,141336,NULL,123281,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:15','2022-09-07 07:02:15',NULL,NULL,'9f8364a8-ee50-4961-a771-5772f5ab8bb7'),(142088,141338,NULL,123282,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:16','2022-09-07 07:02:16',NULL,NULL,'3091d8ae-5859-4185-b917-e2ad0af659ef'),(142089,141340,NULL,123283,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:17','2022-09-07 07:02:17',NULL,NULL,'9b3d0d09-5d7b-404c-baef-f88c0d35db7a'),(142090,141342,NULL,123284,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:17','2022-09-07 07:02:17',NULL,NULL,'bf6a871f-e6b0-4d7d-b9ec-54a2d8aecc8c'),(142091,141344,NULL,123285,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:18','2022-09-07 07:02:18',NULL,NULL,'796290cd-6e0d-4fa9-91dd-0eece7fa4cfa'),(142092,141346,NULL,123286,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:19','2022-09-07 07:02:19',NULL,NULL,'e92b2a5e-3209-4f08-8392-1dd08702f5dd'),(142093,141348,NULL,123287,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:20','2022-09-07 07:02:20',NULL,NULL,'9dcf45da-914b-4259-b65b-b25935270d40'),(142094,141350,NULL,123288,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:21','2022-09-07 07:02:21',NULL,NULL,'eaf70fc1-0016-4489-8df4-06e74e2d6850'),(142095,141352,NULL,123289,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:22','2022-09-07 07:02:22',NULL,NULL,'59eb4e8c-b5f8-4139-9661-f31dba7ffb9f'),(142096,141354,NULL,123290,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:23','2022-09-07 07:02:23',NULL,NULL,'19f61fbc-bb6f-4c37-a0d3-7194681b9d2d'),(142097,141356,NULL,123291,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:24','2022-09-07 07:02:24',NULL,NULL,'4a037697-ad4a-41f3-9c2b-aa9177654ebd'),(142098,141358,NULL,123292,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:25','2022-09-07 07:02:25',NULL,NULL,'7b1c0842-4457-4bf6-a1d8-6af1a3083762'),(142099,141360,NULL,123293,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:26','2022-09-07 07:02:26',NULL,NULL,'3ca0e28b-d79a-4cb2-a185-206bd295e850'),(142100,141362,NULL,123294,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:27','2022-09-07 07:02:27',NULL,NULL,'aa069d19-c725-4529-9b93-69e17558d4f1'),(142101,141364,NULL,123295,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:28','2022-09-07 07:02:28',NULL,NULL,'c732c529-8969-4da0-9aab-919eea177aa9'),(142102,141366,NULL,123296,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:29','2022-09-07 07:02:29',NULL,NULL,'66fed966-b4b4-4a0f-bd97-4c226a1d3f4c'),(142103,141368,NULL,123297,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:30','2022-09-07 07:02:30',NULL,NULL,'66045665-0d34-4000-b692-c9ad384d1fd4'),(142104,141370,NULL,123298,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:30','2022-09-07 07:02:30',NULL,NULL,'6f56c207-0d2e-4d97-997f-374762ed8a13'),(142105,141372,NULL,123299,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:31','2022-09-07 07:02:31',NULL,NULL,'b28326cb-30d0-45da-bdbd-791f35fe3e74'),(142106,141374,NULL,123300,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:32','2022-09-07 07:02:32',NULL,NULL,'1ee41145-5102-44c0-9d8d-f81a4bd0d95b'),(142107,141376,NULL,123301,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:33','2022-09-07 07:02:33',NULL,NULL,'13b9cf26-63fc-45c2-b0c4-13baf640cc07'),(142108,141378,NULL,123302,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:34','2022-09-07 07:02:34',NULL,NULL,'c9e9be36-d3c8-4d9b-9a00-c423f61340ce'),(142109,141380,NULL,123303,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:35','2022-09-07 07:02:35',NULL,NULL,'49f55d34-f682-41ed-8fa4-5a000d91f87d'),(142110,141382,NULL,123304,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:35','2022-09-07 07:02:35',NULL,NULL,'a5060da8-11b3-44ed-b736-c8f42eedcc17'),(142111,141384,NULL,123305,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:36','2022-09-07 07:02:36',NULL,NULL,'4923eb8c-449c-4734-981f-841d4af4b999'),(142112,141386,NULL,123306,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:37','2022-09-07 07:02:37',NULL,NULL,'8aaf69c2-eed9-4d6c-9919-403d626b8ef9'),(142113,141388,NULL,123307,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:38','2022-09-07 07:02:38',NULL,NULL,'c1aac16f-8b7b-4007-9af2-638ed90dd214'),(142114,141390,NULL,123308,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:39','2022-09-07 07:02:39',NULL,NULL,'84336ea1-b110-4689-a28d-9ec6ea2f5de1'),(142115,141392,NULL,123309,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:40','2022-09-07 07:02:40',NULL,NULL,'299a84c6-a12d-4b68-92e9-4bfb9e8abd9c'),(142116,141394,NULL,123310,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:41','2022-09-07 07:02:41',NULL,NULL,'c5c58a44-3d0f-40b1-8f60-e06a73370c56'),(142117,141396,NULL,123311,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:42','2022-09-07 07:02:42',NULL,NULL,'be20fe5e-c948-40f2-a858-e77cab0405a6'),(142118,141398,NULL,123312,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:43','2022-09-07 07:02:43',NULL,NULL,'1690ed4c-7412-492f-a208-06881129e794'),(142119,141400,NULL,123313,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:44','2022-09-07 07:02:44',NULL,NULL,'3b852c93-1e7d-4943-b9ca-22a049191bd3'),(142120,141402,NULL,123314,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:45','2022-09-07 07:02:45',NULL,NULL,'004219f4-5424-4e42-ad9b-71e20cf8ebac'),(142121,141404,NULL,123315,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:46','2022-09-07 07:02:46',NULL,NULL,'6d66a066-15be-4bb0-94b5-29802ed5e567'),(142122,141406,NULL,123316,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:47','2022-09-07 07:02:47',NULL,NULL,'74fcf7ac-a5ee-4219-bda8-6949f62e9465'),(142123,141408,NULL,123317,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:48','2022-09-07 07:02:48',NULL,NULL,'47b9acbd-a856-46c1-b46d-212787af3991'),(142124,141410,NULL,123318,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:49','2022-09-07 07:02:49',NULL,NULL,'194b7f5d-4bd1-41e2-8953-6b080a358beb'),(142125,141412,NULL,123319,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:50','2022-09-07 07:02:50',NULL,NULL,'e0d3e14c-0a7e-4a62-b457-fbf6816f269a'),(142126,141414,NULL,123320,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:51','2022-09-07 07:02:51',NULL,NULL,'8bfaa3b9-6745-4120-8af9-3095dae68da0'),(142127,141416,NULL,123321,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:52','2022-09-07 07:02:52',NULL,NULL,'68af3fc3-9552-4aaf-bda2-c65e60e19f0a'),(142128,141418,NULL,123322,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:52','2022-09-07 07:02:52',NULL,NULL,'5be822f4-2c6f-403d-b357-6741eac47a5e'),(142129,141420,NULL,123323,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:53','2022-09-07 07:02:53',NULL,NULL,'6734b94e-6a99-4ab7-9385-d8075d1837c2'),(142130,141422,NULL,123324,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:54','2022-09-07 07:02:54',NULL,NULL,'69ff2b7e-b7c0-414d-a917-e9934ade0a94'),(142131,141424,NULL,123325,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:55','2022-09-07 07:02:55',NULL,NULL,'3ed4a3bc-91cb-48d0-a35a-d6fc5c5ad7e3'),(142132,141426,NULL,123326,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:56','2022-09-07 07:02:56',NULL,NULL,'7d425f5f-bb79-4a09-bd38-4f7764b871e5'),(142133,141428,NULL,123327,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:57','2022-09-07 07:02:57',NULL,NULL,'2ea9ce25-ade6-43a3-b2f9-61e5c7ded043'),(142134,141430,NULL,123328,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:58','2022-09-07 07:02:58',NULL,NULL,'1a1cf144-96a0-4a4a-8916-38c4d0433e49'),(142135,141432,NULL,123329,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:02:59','2022-09-07 07:02:59',NULL,NULL,'84ab36c3-d73b-4168-9c8d-bc54847ef61e'),(142136,141434,NULL,123330,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:03:00','2022-09-07 07:03:00',NULL,NULL,'197989e3-9456-453a-8080-aa7ca70a0fbb'),(142137,141436,NULL,123331,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:03:01','2022-09-07 07:03:01',NULL,NULL,'5e1a008c-d5c3-45e2-9a07-a3fa62d3792f'),(142138,141438,NULL,123332,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:03:02','2022-09-07 07:03:02',NULL,NULL,'1455a24d-35c5-4a2f-b0d6-565de4925100'),(142139,141440,NULL,123333,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:03:03','2022-09-07 07:03:03',NULL,NULL,'296ea29b-7992-4b2b-bd29-8e1e924555d0'),(142140,141442,NULL,123334,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:03:03','2022-09-07 07:03:03',NULL,NULL,'473a6b5f-ef3b-4d01-b6fe-5a30e30d8197'),(142141,141444,NULL,123335,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:03:04','2022-09-07 07:03:04',NULL,NULL,'05612282-b154-4965-9c43-bd1c051a8c6d'),(142142,141446,NULL,123336,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:03:05','2022-09-07 07:03:05',NULL,NULL,'df7a0126-9f4e-4241-8b48-e9d959e28cf4'),(142143,141448,NULL,123337,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:03:06','2022-09-07 07:03:06',NULL,NULL,'d3d68839-abb1-47c3-b3bd-8ea09364eaf1'),(142144,141450,NULL,123338,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:03:07','2022-09-07 07:03:07',NULL,NULL,'55c9ace8-48aa-4ca0-b7a1-854857d27382'),(142145,141452,NULL,123339,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:03:08','2022-09-07 07:03:08',NULL,NULL,'c7883837-427b-4ab8-9948-6158274aaca6'),(142146,141454,NULL,123340,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:03:09','2022-09-07 07:03:09',NULL,NULL,'9fab3e05-db68-42e6-a95c-3b204a057153'),(142147,141456,NULL,123341,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:03:10','2022-09-07 07:03:10',NULL,NULL,'3f0f283e-e4bb-4e30-a783-fc4956cce863'),(142148,141458,NULL,123342,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:03:11','2022-09-07 07:03:11',NULL,NULL,'023cd224-abd7-4442-8db7-2d8fe5187e11'),(142149,141460,NULL,123343,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:03:12','2022-09-07 07:03:12',NULL,NULL,'0156ab71-6c95-4d7b-af9b-03f5c581dcc1'),(142150,141462,NULL,123344,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:03:13','2022-09-07 07:03:13',NULL,NULL,'bc4a41c0-651f-484d-8c2d-acfcd6120850'),(142151,141464,NULL,123345,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:03:14','2022-09-07 07:03:14',NULL,NULL,'0483e0ab-4c1d-4de6-8d83-0761484ff08d'),(142152,141466,NULL,123346,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:03:15','2022-09-07 07:03:15',NULL,NULL,'37b24e80-9c2e-4060-b50e-6971d259caf8'),(142153,141468,NULL,123347,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:03:16','2022-09-07 07:03:16',NULL,NULL,'5a3bf2c4-62f6-41ad-80da-8734fb15de9f'),(142154,141470,NULL,123348,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:03:17','2022-09-07 07:03:17',NULL,NULL,'e0b30e12-8c11-43d5-984f-c463a8e5dd4b'),(142155,141472,NULL,123349,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:03:18','2022-09-07 07:03:18',NULL,NULL,'d9a1c0f3-9390-48a0-a421-9065ca009973'),(142156,141474,NULL,123350,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:03:19','2022-09-07 07:03:19',NULL,NULL,'525d0530-9bc9-4f1b-ac9c-fac87654bb2d'),(142157,141476,NULL,123351,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:03:20','2022-09-07 07:03:20',NULL,NULL,'e545ed45-291b-4814-b436-76c4017e3fd5'),(142158,141478,NULL,123352,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:03:21','2022-09-07 07:03:21',NULL,NULL,'cac7355e-6cb3-46b0-908f-e09c27baa0af'),(142159,141312,NULL,123353,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:01','2022-09-07 07:09:01',NULL,NULL,'d2bcec7c-cf86-4158-9b92-6cee1a6b6878'),(142160,141314,NULL,123354,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:02','2022-09-07 07:09:02',NULL,NULL,'a2844175-8856-409e-b088-1c20189e6657'),(142161,141316,NULL,123355,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:03','2022-09-07 07:09:03',NULL,NULL,'c4bf4450-cc8a-4d83-af29-ec0b523809bb'),(142162,141318,NULL,123356,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:03','2022-09-07 07:09:03',NULL,NULL,'15efabf6-e36e-4c37-93ca-6c5e8f60d39a'),(142163,141320,NULL,123357,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:04','2022-09-07 07:09:04',NULL,NULL,'c493ca1b-27e7-42fe-9bd1-7301a1ff131c'),(142164,141322,NULL,123358,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:05','2022-09-07 07:09:05',NULL,NULL,'f1cb6f98-acb0-40f4-86df-486bf3f00b3a'),(142165,141324,NULL,123359,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:06','2022-09-07 07:09:06',NULL,NULL,'eaa8dfee-0ae4-4624-bc83-e0661235d147'),(142166,141326,NULL,123360,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:07','2022-09-07 07:09:07',NULL,NULL,'01bf81ff-9bf2-4952-9c96-866ddf750ae8'),(142167,141328,NULL,123361,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:08','2022-09-07 07:09:08',NULL,NULL,'2067a34e-2c48-4899-9346-80f6360ab665'),(142168,141330,NULL,123362,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:09','2022-09-07 07:09:09',NULL,NULL,'de993f0b-97b0-4461-b3e2-fa914abf863b'),(142169,141332,NULL,123363,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:09','2022-09-07 07:09:09',NULL,NULL,'bf6f2a20-1180-4e72-9401-7f3c938475e4'),(142170,141334,NULL,123364,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:10','2022-09-07 07:09:10',NULL,NULL,'afa508f4-8b83-47c8-8aa4-c6a4b6f436c0'),(142171,141336,NULL,123365,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:11','2022-09-07 07:09:11',NULL,NULL,'de7f1543-1db9-420a-8a08-7dc237e9ed71'),(142172,141338,NULL,123366,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:12','2022-09-07 07:09:12',NULL,NULL,'2e4fea40-66fe-4e24-8327-88d6a0b5952e'),(142173,141340,NULL,123367,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:12','2022-09-07 07:09:12',NULL,NULL,'843c9cdd-a5b7-45b2-8336-940d67e6746b'),(142174,141342,NULL,123368,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:13','2022-09-07 07:09:13',NULL,NULL,'837bbe12-2a88-477b-96be-4ff9e20f4e25'),(142175,141344,NULL,123369,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:14','2022-09-07 07:09:14',NULL,NULL,'6c359b54-aa49-43fe-9f40-ea274a6c255f'),(142176,141346,NULL,123370,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:15','2022-09-07 07:09:15',NULL,NULL,'f2400a7c-e23e-4520-a980-0e0484b63617'),(142177,141348,NULL,123371,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:16','2022-09-07 07:09:16',NULL,NULL,'84461a68-0cb2-473f-ab22-e0626129087e'),(142178,141350,NULL,123372,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:17','2022-09-07 07:09:17',NULL,NULL,'8e210831-4f49-457e-ab14-8b81e509add4'),(142179,141352,NULL,123373,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:18','2022-09-07 07:09:18',NULL,NULL,'6d7cc0af-74a1-4cfa-9ce4-3334998bbd7c'),(142180,141354,NULL,123374,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:18','2022-09-07 07:09:18',NULL,NULL,'dcde380e-49e4-4738-b59a-fe34756905db'),(142181,141356,NULL,123375,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:19','2022-09-07 07:09:19',NULL,NULL,'996f8e65-b60e-4ee4-94a4-8bd9a7e9246a'),(142182,141358,NULL,123376,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:20','2022-09-07 07:09:20',NULL,NULL,'b3f23b47-8534-4090-9d64-035bf609f773'),(142183,141360,NULL,123377,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:21','2022-09-07 07:09:21',NULL,NULL,'23fc25d6-1cc8-44c9-9b0c-00f12184ca13'),(142184,141362,NULL,123378,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:22','2022-09-07 07:09:22',NULL,NULL,'a40ccc2f-4185-455d-bac2-c2393cd147c4'),(142185,141364,NULL,123379,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:23','2022-09-07 07:09:23',NULL,NULL,'9fc73223-f492-49f2-920e-1496c1ad5f50'),(142186,141366,NULL,123380,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:24','2022-09-07 07:09:24',NULL,NULL,'84650c3e-bdf8-49a3-bc9f-4da0aea1754d'),(142187,141368,NULL,123381,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:24','2022-09-07 07:09:24',NULL,NULL,'1845af6e-9196-492b-92cb-783af6a88c4a'),(142188,141370,NULL,123382,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:25','2022-09-07 07:09:25',NULL,NULL,'e4b2d16c-29a6-4f19-85ef-a52ad06d24d6'),(142189,141372,NULL,123383,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:26','2022-09-07 07:09:26',NULL,NULL,'bb09cd2f-3888-424f-ac21-11fa3c2d554a'),(142190,141374,NULL,123384,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:27','2022-09-07 07:09:27',NULL,NULL,'8970271c-a525-4644-a842-00b16a53968d'),(142191,141376,NULL,123385,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:28','2022-09-07 07:09:28',NULL,NULL,'5946356a-a36a-405e-91ac-a0bd04feeab3'),(142192,141378,NULL,123386,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:29','2022-09-07 07:09:29',NULL,NULL,'efbebaf2-b527-4b62-9320-c965d203b209'),(142193,141380,NULL,123387,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:29','2022-09-07 07:09:29',NULL,NULL,'26e4f7a8-7499-43f4-995e-b2b7dd8311e9'),(142194,141382,NULL,123388,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:30','2022-09-07 07:09:30',NULL,NULL,'e47741e1-c4e4-42cd-bda4-f8ed7af6cae2'),(142195,141384,NULL,123389,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:31','2022-09-07 07:09:31',NULL,NULL,'d71d5c0b-84a0-4b38-842e-3b1f4a3c6229'),(142196,141386,NULL,123390,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:32','2022-09-07 07:09:32',NULL,NULL,'c3b2a97a-7fc0-4427-9bb7-c1850128860b'),(142197,141388,NULL,123391,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:33','2022-09-07 07:09:33',NULL,NULL,'bc10e614-ce36-4a2d-b600-476b48e1e663'),(142198,141390,NULL,123392,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:34','2022-09-07 07:09:34',NULL,NULL,'ad836a57-475b-416e-ad7b-3bfe7e84952c'),(142199,141392,NULL,123393,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:35','2022-09-07 07:09:35',NULL,NULL,'df548175-04bf-4237-9328-08aff4505730'),(142200,141394,NULL,123394,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:36','2022-09-07 07:09:36',NULL,NULL,'ed9913d0-ced6-4492-8e03-ae4971b8c1d6'),(142201,141396,NULL,123395,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:36','2022-09-07 07:09:36',NULL,NULL,'5ea7be10-c07a-4716-9878-6458fa716420'),(142202,141398,NULL,123396,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:37','2022-09-07 07:09:37',NULL,NULL,'43fb70b0-bc8e-4ca4-b8c8-b5fe86d02271'),(142203,141400,NULL,123397,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:38','2022-09-07 07:09:38',NULL,NULL,'5e3ed5a2-592c-4f4e-b3f9-8e1121c5f449'),(142204,141402,NULL,123398,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:39','2022-09-07 07:09:39',NULL,NULL,'4caca9ee-33a8-445f-9342-cb47c91be686'),(142205,141404,NULL,123399,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:40','2022-09-07 07:09:40',NULL,NULL,'f754d885-f7ac-40cb-8ea5-01fdb595e634'),(142206,141406,NULL,123400,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:41','2022-09-07 07:09:41',NULL,NULL,'639afe12-2936-40d6-aeb0-ba28696a771a'),(142207,141408,NULL,123401,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:41','2022-09-07 07:09:41',NULL,NULL,'b70a0b4e-1896-4f25-aff3-7b040fce0791'),(142208,141410,NULL,123402,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:42','2022-09-07 07:09:42',NULL,NULL,'543afa06-b3bc-4928-8485-d1a63ea7cb1e'),(142209,141412,NULL,123403,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:43','2022-09-07 07:09:43',NULL,NULL,'8dc05256-f3e9-4b28-8f16-8bd35bd73556'),(142210,141414,NULL,123404,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:44','2022-09-07 07:09:44',NULL,NULL,'2ae907d6-ba1e-4af8-92b4-0b6a59821c02'),(142211,141416,NULL,123405,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:45','2022-09-07 07:09:45',NULL,NULL,'05e9bcdd-8773-4ffe-a51f-779fb4d16506'),(142212,141418,NULL,123406,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:45','2022-09-07 07:09:45',NULL,NULL,'13ea9721-0b19-4ae5-a6ef-984a99b48cf3'),(142213,141420,NULL,123407,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:46','2022-09-07 07:09:46',NULL,NULL,'3cbea59b-f193-495a-b9f9-ae98aed410b7'),(142214,141422,NULL,123408,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:47','2022-09-07 07:09:47',NULL,NULL,'58d92a30-5b19-4c6d-9e18-8220ef554f8c'),(142215,141424,NULL,123409,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:48','2022-09-07 07:09:48',NULL,NULL,'3cff311f-c831-4b3f-a454-f82148c57591'),(142216,141426,NULL,123410,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:48','2022-09-07 07:09:48',NULL,NULL,'9dee0ec8-ccf0-4ae9-b423-7e0d97ce098c'),(142217,141428,NULL,123411,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:49','2022-09-07 07:09:49',NULL,NULL,'3b36c52b-b517-4696-b0e3-3d8dabc9203d'),(142218,141430,NULL,123412,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:50','2022-09-07 07:09:50',NULL,NULL,'79015289-074e-4116-be37-3a9d7db4ce0e'),(142219,141432,NULL,123413,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:51','2022-09-07 07:09:51',NULL,NULL,'16b5fe10-5081-4b87-8a4a-70c2c5bd517c'),(142220,141434,NULL,123414,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:52','2022-09-07 07:09:52',NULL,NULL,'709c6fb6-413f-4b65-8935-e7f10d601d3d'),(142221,141436,NULL,123415,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:53','2022-09-07 07:09:53',NULL,NULL,'35eae675-7555-46fc-beba-c70b56105bd0'),(142222,141438,NULL,123416,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:54','2022-09-07 07:09:54',NULL,NULL,'44f7b8f6-8e87-48ca-a8b5-f7e44104056c'),(142223,141440,NULL,123417,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:55','2022-09-07 07:09:55',NULL,NULL,'a1df4ec2-d5f4-4a9c-96ec-bfaedf68991b'),(142224,141442,NULL,123418,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:56','2022-09-07 07:09:56',NULL,NULL,'55d741a6-b335-4797-9ed5-0407765a05bd'),(142225,141444,NULL,123419,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:57','2022-09-07 07:09:57',NULL,NULL,'dad4cf6e-9df0-4875-acb0-604a28a67a37'),(142226,141446,NULL,123420,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:58','2022-09-07 07:09:58',NULL,NULL,'dce9495b-84b8-410e-85ef-1ca131ddd501'),(142227,141448,NULL,123421,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:09:59','2022-09-07 07:09:59',NULL,NULL,'a7a873a5-9f05-4bb6-a82a-319a0954193e'),(142228,141450,NULL,123422,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:10:00','2022-09-07 07:10:00',NULL,NULL,'e921603a-4684-4158-8935-713636437790'),(142229,141452,NULL,123423,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:10:01','2022-09-07 07:10:01',NULL,NULL,'21573afb-e05b-4792-99dc-0e43913bb4d6'),(142230,141454,NULL,123424,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:10:02','2022-09-07 07:10:02',NULL,NULL,'1932551b-5599-4992-853c-f4718ded167e'),(142231,141456,NULL,123425,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:10:03','2022-09-07 07:10:03',NULL,NULL,'a7cbed45-0482-4076-b1ba-bd85c08656b4'),(142232,141458,NULL,123426,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:10:04','2022-09-07 07:10:04',NULL,NULL,'8da0a0ee-04b0-40c5-8962-f1a971369885'),(142233,141460,NULL,123427,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:10:04','2022-09-07 07:10:04',NULL,NULL,'621c185e-151c-42b0-90f0-e00dd769303a'),(142234,141462,NULL,123428,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:10:05','2022-09-07 07:10:05',NULL,NULL,'9b05e026-37a1-4b47-8232-56d7a538ce5d'),(142235,141464,NULL,123429,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:10:06','2022-09-07 07:10:06',NULL,NULL,'7848c490-2dac-4537-ad70-f4cfe2ebae8c'),(142236,141466,NULL,123430,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:10:07','2022-09-07 07:10:07',NULL,NULL,'cbc4a61b-3d53-4e8d-9862-df23cb2396d2'),(142237,141468,NULL,123431,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:10:07','2022-09-07 07:10:07',NULL,NULL,'e4a2d389-61ae-421f-8184-013e8e3bdca7'),(142238,141470,NULL,123432,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:10:08','2022-09-07 07:10:08',NULL,NULL,'2d8e937a-3050-4926-97e9-4ad378e8eb91'),(142239,141472,NULL,123433,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:10:09','2022-09-07 07:10:09',NULL,NULL,'17950c7a-6ace-42da-b38f-3d5b535ada01'),(142240,141474,NULL,123434,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:10:10','2022-09-07 07:10:10',NULL,NULL,'8d49341e-969c-4854-b332-f339e0542574'),(142241,141476,NULL,123435,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:10:11','2022-09-07 07:10:11',NULL,NULL,'6e00351a-9dcd-4185-a716-cdac7a67dca3'),(142242,141478,NULL,123436,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:10:12','2022-09-07 07:10:12',NULL,NULL,'ab39c4be-d18a-4f33-b6af-d82ae53dfbc9'),(142243,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:10:13','2022-09-14 23:02:07',NULL,NULL,'45345d7c-d172-45fe-aa88-0d88ba973696'),(142244,142243,NULL,123437,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:10:13','2022-09-07 07:10:13',NULL,NULL,'328e6546-6df3-46ef-9a5c-623e81e7f012'),(142245,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:10:15','2022-09-14 23:02:08',NULL,NULL,'5b1271f8-5544-4df0-ac8c-434aa1bc2a9e'),(142246,142245,NULL,123438,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:10:15','2022-09-07 07:10:15',NULL,NULL,'0d0abfe4-71d6-467a-8d8b-540d9ba8d0f6'),(142247,NULL,NULL,NULL,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:10:17','2022-09-14 23:16:36',NULL,NULL,'8572be54-0df1-4fa4-94a5-0b602d0f208f'),(142248,142247,NULL,123439,1,'craft\\elements\\Entry',1,0,'2022-09-07 07:10:17','2022-09-07 07:10:17',NULL,NULL,'2ad47ba1-4482-44c3-980d-c6ca82c93588'),(142250,NULL,NULL,NULL,5,'craft\\elements\\User',1,0,'2022-09-08 06:39:03','2022-09-08 06:44:15',NULL,NULL,'67685eb7-5185-4358-9fd1-9d9fca652ea9'),(142251,NULL,NULL,NULL,6,'craft\\elements\\Entry',0,0,'2022-09-12 03:45:08','2023-03-30 23:09:59',NULL,NULL,'76b3d0ea-291c-4725-bdd9-231c5e4ceb1e'),(142252,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-09-12 03:51:58','2022-09-12 03:51:58',NULL,NULL,'f544bc5c-9d24-4bb1-8491-9352d42bed72'),(142253,142251,NULL,123440,6,'craft\\elements\\Entry',0,0,'2022-09-12 03:52:09','2022-09-12 03:52:09',NULL,NULL,'18790051-12cd-4f65-baa3-39776bd96312'),(142255,142251,NULL,123441,6,'craft\\elements\\Entry',0,0,'2022-09-12 03:53:08','2022-09-12 03:53:08',NULL,NULL,'c78da7eb-2b68-4594-9686-49b2632455cd'),(142257,142251,NULL,123442,6,'craft\\elements\\Entry',0,0,'2022-09-12 03:53:26','2022-09-12 03:53:27',NULL,NULL,'e280b9ad-85b5-41f5-93e8-183c6765d790'),(142258,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2022-09-12 05:45:12','2023-03-30 23:09:50',NULL,NULL,'d8bc0617-c965-46f6-918f-29ba0199c736'),(142259,142258,NULL,123443,6,'craft\\elements\\Entry',0,0,'2022-09-12 05:48:54','2022-09-12 05:48:54',NULL,NULL,'6e0bd3cb-2bef-4950-a0b6-31a99752ead1'),(142261,142258,NULL,123444,6,'craft\\elements\\Entry',0,0,'2022-09-12 06:03:01','2022-09-12 06:03:01',NULL,NULL,'5705f478-6978-4a1d-b5c3-dc505675ce6c'),(142263,142258,NULL,123445,6,'craft\\elements\\Entry',0,0,'2022-09-12 06:03:13','2022-09-12 06:03:13',NULL,NULL,'37ebcdc1-955a-4142-8253-557e7dbe004a'),(142265,142251,NULL,123446,6,'craft\\elements\\Entry',0,0,'2022-09-13 04:22:17','2022-09-13 04:22:17',NULL,NULL,'80d4eff6-df3a-4046-854f-6277dad99334'),(142267,142251,NULL,123447,6,'craft\\elements\\Entry',0,0,'2022-09-13 04:22:43','2022-09-13 04:22:43',NULL,NULL,'4184428f-124c-4376-8139-c50203ca2e59'),(142269,142251,NULL,123448,6,'craft\\elements\\Entry',0,0,'2022-09-13 04:23:05','2022-09-13 04:23:05',NULL,NULL,'3f16308c-8122-4161-81eb-2073f13ca800'),(142271,142251,NULL,123449,6,'craft\\elements\\Entry',0,0,'2022-09-13 04:27:46','2022-09-13 04:27:46',NULL,NULL,'06ba6a82-4604-4c0c-9cc7-1e5cea45b930'),(142273,142251,NULL,123450,6,'craft\\elements\\Entry',0,0,'2022-09-13 04:29:41','2022-09-13 04:29:41',NULL,NULL,'f54358be-9927-46ba-a8ee-3d48a2cbded8'),(142275,142251,NULL,123451,6,'craft\\elements\\Entry',0,0,'2022-09-13 04:40:08','2022-09-13 04:40:08',NULL,NULL,'6b7c7f08-9144-44e9-b13b-8f1861b5dd5e'),(142278,18139,NULL,123452,6,'craft\\elements\\Entry',1,0,'2022-09-13 23:01:24','2022-09-13 23:01:24',NULL,NULL,'741ecabb-c577-45b1-81b1-c2925bd12999'),(142280,18139,NULL,123453,6,'craft\\elements\\Entry',1,0,'2022-09-13 23:03:11','2022-09-13 23:03:11',NULL,NULL,'066f8339-a1d7-41f4-ad2b-5eca7da345f5'),(142281,NULL,NULL,NULL,5,'craft\\elements\\User',1,0,'2022-09-14 06:35:53','2023-03-09 04:39:38',NULL,NULL,'325a4408-2192-4d2b-b1aa-518f6222def8'),(142282,141312,NULL,123454,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:00:45','2022-09-14 23:00:45',NULL,NULL,'f3d4fed9-e612-4bd5-a455-4c4c157d8d2c'),(142283,141314,NULL,123455,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:00:46','2022-09-14 23:00:46',NULL,NULL,'5f9f957a-428e-443c-a8e2-fba134154854'),(142284,141316,NULL,123456,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:00:47','2022-09-14 23:00:47',NULL,NULL,'03bb5693-ef90-49e6-8a71-2202a35103eb'),(142285,141318,NULL,123457,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:00:48','2022-09-14 23:00:48',NULL,NULL,'2a64c591-fd35-4bff-8324-4113d5e6be19'),(142286,141320,NULL,123458,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:00:49','2022-09-14 23:00:49',NULL,NULL,'5a26d2ee-e899-4ede-973d-b09b4821f104'),(142287,141322,NULL,123459,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:00:50','2022-09-14 23:00:50',NULL,NULL,'af40b552-fb28-4738-8266-cac3b5fa56d2'),(142288,141324,NULL,123460,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:00:51','2022-09-14 23:00:51',NULL,NULL,'ecf98752-0fba-4771-b4a3-54d1fa5fbde0'),(142289,141326,NULL,123461,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:00:52','2022-09-14 23:00:52',NULL,NULL,'416b9e7b-4bad-4f1e-944d-1828da7c006b'),(142290,141328,NULL,123462,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:00:53','2022-09-14 23:00:53',NULL,NULL,'529dc095-e9eb-4a5d-b11d-de2043bd16aa'),(142291,141330,NULL,123463,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:00:54','2022-09-14 23:00:54',NULL,NULL,'27bb428b-f6d9-4b81-aa1a-b76badb953a2'),(142292,141332,NULL,123464,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:00:55','2022-09-14 23:00:55',NULL,NULL,'876749d2-a848-4972-b04a-cb7c062b9346'),(142293,141334,NULL,123465,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:00:56','2022-09-14 23:00:56',NULL,NULL,'e83e627a-3baa-4610-ab25-dc541bdf4818'),(142294,141336,NULL,123466,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:00:57','2022-09-14 23:00:57',NULL,NULL,'11cbba0d-8e0c-4a87-b363-2d95a0bcc5d7'),(142295,141338,NULL,123467,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:00:58','2022-09-14 23:00:58',NULL,NULL,'0eb68b10-77f6-4c0a-9c7c-3dc6dd921c14'),(142296,141340,NULL,123468,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:00:59','2022-09-14 23:00:59',NULL,NULL,'2404e0da-9a69-4b86-9379-f1c771ff2fe3'),(142297,141342,NULL,123469,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:00','2022-09-14 23:01:00',NULL,NULL,'7a6cbef0-4741-4a84-89a2-63ab9c1043e4'),(142298,141344,NULL,123470,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:01','2022-09-14 23:01:01',NULL,NULL,'6a5af491-65d7-44db-abe0-da1ddc279b23'),(142299,141346,NULL,123471,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:02','2022-09-14 23:01:02',NULL,NULL,'2dbe41d5-6031-4e2b-8d9a-c75e1fab58c4'),(142300,141348,NULL,123472,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:03','2022-09-14 23:01:03',NULL,NULL,'65296bfd-290a-4945-9e9d-038fcddf7c28'),(142301,141350,NULL,123473,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:03','2022-09-14 23:01:03',NULL,NULL,'d14aef51-868a-4e66-ba3a-8aaeddd5b7ae'),(142302,141352,NULL,123474,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:04','2022-09-14 23:01:04',NULL,NULL,'a0f4f19d-213a-45d2-b00f-f80081269210'),(142303,141354,NULL,123475,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:06','2022-09-14 23:01:06',NULL,NULL,'53610c43-60f6-474a-9f94-c98be3369fc7'),(142304,141356,NULL,123476,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:06','2022-09-14 23:01:06',NULL,NULL,'16139301-7a86-4422-9486-ed661a96671a'),(142305,141358,NULL,123477,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:07','2022-09-14 23:01:07',NULL,NULL,'7d7ec76e-aa5f-46db-8add-784e17aa725f'),(142306,141360,NULL,123478,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:08','2022-09-14 23:01:08',NULL,NULL,'4d1cee2b-e1a3-4af7-af02-b64e311a5842'),(142307,141362,NULL,123479,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:10','2022-09-14 23:01:10',NULL,NULL,'833b08e1-152e-4f0f-873c-69de4c24204b'),(142308,141364,NULL,123480,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:11','2022-09-14 23:01:11',NULL,NULL,'b389ba9c-2a7b-4be9-87bd-42ec693e61b2'),(142309,141366,NULL,123481,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:12','2022-09-14 23:01:12',NULL,NULL,'7b5044c3-94d2-43cd-9058-40a224dff639'),(142310,141368,NULL,123482,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:13','2022-09-14 23:01:13',NULL,NULL,'8933d603-b6dc-4640-ae98-7c8f65e9a1bc'),(142311,141370,NULL,123483,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:14','2022-09-14 23:01:14',NULL,NULL,'e2af12db-5dd2-4bc8-adb6-ac9d89b69a5c'),(142312,141372,NULL,123484,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:15','2022-09-14 23:01:15',NULL,NULL,'e9bc502e-7574-4f3f-b927-afa2b67c9f58'),(142313,141374,NULL,123485,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:16','2022-09-14 23:01:16',NULL,NULL,'7687f241-7b03-4dc5-981f-d112636febfb'),(142314,141376,NULL,123486,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:17','2022-09-14 23:01:17',NULL,NULL,'d9b4303c-9ccc-44c2-b19a-436f91aa6fb8'),(142315,141378,NULL,123487,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:18','2022-09-14 23:01:18',NULL,NULL,'876e1677-fd05-430d-aa48-708077bcec7f'),(142316,141380,NULL,123488,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:18','2022-09-14 23:01:18',NULL,NULL,'79bb6f7c-33ce-43c4-8de2-545438b6045a'),(142317,141382,NULL,123489,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:19','2022-09-14 23:01:19',NULL,NULL,'c9ba947a-0d36-48f2-80aa-2d2f9d5b7a79'),(142318,141384,NULL,123490,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:20','2022-09-14 23:01:20',NULL,NULL,'c3991151-ec10-48bf-86a8-24c608811395'),(142319,141386,NULL,123491,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:21','2022-09-14 23:01:21',NULL,NULL,'24beb969-7f23-424c-ba3a-36f2d98a9cc6'),(142320,141388,NULL,123492,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:22','2022-09-14 23:01:22',NULL,NULL,'217b2f67-749c-407d-92e6-fb7cb4c5c79d'),(142321,141390,NULL,123493,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:23','2022-09-14 23:01:23',NULL,NULL,'30f13028-aa3c-48b7-a65b-e603d33a896b'),(142322,141392,NULL,123494,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:25','2022-09-14 23:01:25',NULL,NULL,'246b8151-cbd2-4041-8f61-00c44644e740'),(142323,141394,NULL,123495,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:25','2022-09-14 23:01:25',NULL,NULL,'4b7e5127-19c5-4c76-bd1a-520f6ed79d41'),(142324,141396,NULL,123496,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:26','2022-09-14 23:01:26',NULL,NULL,'23d62cdb-5db1-4ef8-8994-2e71c9072b72'),(142325,141398,NULL,123497,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:27','2022-09-14 23:01:27',NULL,NULL,'e1ec5810-111a-47f0-8c59-846bbd3fe3ab'),(142326,141400,NULL,123498,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:29','2022-09-14 23:01:29',NULL,NULL,'54abce2a-c868-43be-a5b4-68df0c022e26'),(142327,141402,NULL,123499,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:30','2022-09-14 23:01:30',NULL,NULL,'7b13806c-963a-4229-8f13-c08fae530739'),(142328,141404,NULL,123500,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:31','2022-09-14 23:01:31',NULL,NULL,'ad90815c-fe17-4e64-b373-a7f982a0fb66'),(142329,141406,NULL,123501,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:32','2022-09-14 23:01:32',NULL,NULL,'88370f0a-ede2-4920-b994-73837fefd993'),(142330,141408,NULL,123502,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:33','2022-09-14 23:01:33',NULL,NULL,'ce399dad-b893-4dbf-8179-058c274f2a35'),(142331,141410,NULL,123503,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:34','2022-09-14 23:01:34',NULL,NULL,'7f95dbe2-aa24-4539-b282-05751ccd8c9d'),(142332,141412,NULL,123504,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:35','2022-09-14 23:01:35',NULL,NULL,'d6f8c6ea-70bf-4a73-88a7-a47ac9386cca'),(142333,141414,NULL,123505,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:36','2022-09-14 23:01:36',NULL,NULL,'966dfd41-b3b0-403b-8316-9af3d6a70325'),(142334,141416,NULL,123506,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:37','2022-09-14 23:01:37',NULL,NULL,'ca8ee70a-85c4-4b65-8172-77f7e4130714'),(142335,141418,NULL,123507,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:38','2022-09-14 23:01:38',NULL,NULL,'34ece238-048d-4fa7-82e5-394473051366'),(142336,141420,NULL,123508,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:38','2022-09-14 23:01:38',NULL,NULL,'c2ccde78-2716-4dc5-a53c-9f8958b38bf9'),(142337,141422,NULL,123509,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:40','2022-09-14 23:01:40',NULL,NULL,'74a083d7-8a9f-443e-b549-299863b7ef04'),(142338,141424,NULL,123510,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:41','2022-09-14 23:01:41',NULL,NULL,'983d3bf4-68cf-4b4f-b976-4c14d93c0585'),(142339,141426,NULL,123511,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:42','2022-09-14 23:01:42',NULL,NULL,'3fe6f4f2-4c29-43c3-853f-f0bfa02aec9f'),(142340,141428,NULL,123512,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:43','2022-09-14 23:01:43',NULL,NULL,'d148e21f-f72a-4f08-8b86-d2aa9d69251f'),(142341,141430,NULL,123513,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:45','2022-09-14 23:01:45',NULL,NULL,'3d3cbef1-1503-4e5f-b5e2-cdb9500da8a0'),(142342,141432,NULL,123514,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:46','2022-09-14 23:01:46',NULL,NULL,'5d7b0b96-8cf4-471f-a4d7-6f2b4aafe9a7'),(142343,141434,NULL,123515,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:47','2022-09-14 23:01:47',NULL,NULL,'1fa3b7c2-44d3-4249-ab6d-91448c7dede7'),(142344,141436,NULL,123516,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:48','2022-09-14 23:01:48',NULL,NULL,'a0358d15-52c0-4188-89fa-0a5a425f9cf5'),(142345,141438,NULL,123517,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:49','2022-09-14 23:01:49',NULL,NULL,'5e1803aa-177c-4c43-b4d9-d9e6f61579ac'),(142346,141440,NULL,123518,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:49','2022-09-14 23:01:49',NULL,NULL,'537024ba-1185-438e-a9e1-abdee8d67e5d'),(142347,141442,NULL,123519,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:50','2022-09-14 23:01:50',NULL,NULL,'f9aea648-b455-482c-a8b6-9d103e07407f'),(142348,141444,NULL,123520,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:51','2022-09-14 23:01:51',NULL,NULL,'5ec20cd3-3ea6-441f-9a26-7ea201d10303'),(142349,141446,NULL,123521,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:52','2022-09-14 23:01:52',NULL,NULL,'2357a985-a3bd-404f-b052-312ca110cf42'),(142350,141448,NULL,123522,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:53','2022-09-14 23:01:53',NULL,NULL,'a696584b-df33-4991-9a75-d6b9f7f51cb7'),(142351,141450,NULL,123523,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:54','2022-09-14 23:01:54',NULL,NULL,'0252f885-20cc-4ae7-a416-18537c387443'),(142352,141452,NULL,123524,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:55','2022-09-14 23:01:55',NULL,NULL,'6d4ef36d-1692-4885-beaa-348b7b85898f'),(142353,141454,NULL,123525,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:56','2022-09-14 23:01:56',NULL,NULL,'3417fa4f-c2ce-43fe-b87f-48d8fc1fd5bb'),(142354,141456,NULL,123526,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:57','2022-09-14 23:01:57',NULL,NULL,'3982218f-65af-48f3-8773-77c0962d3991'),(142355,141458,NULL,123527,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:58','2022-09-14 23:01:58',NULL,NULL,'a302e846-a0b1-4e33-b52f-8c4f7a867d4c'),(142356,141460,NULL,123528,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:01:59','2022-09-14 23:01:59',NULL,NULL,'b6025db9-3fa0-47e6-a225-f26cac21eb8c'),(142357,141462,NULL,123529,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:02:00','2022-09-14 23:02:00',NULL,NULL,'a94bcee8-f840-491a-ae6c-61de05a86a2e'),(142358,141464,NULL,123530,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:02:01','2022-09-14 23:02:01',NULL,NULL,'2102007d-a593-4a4f-9ca0-871f97ad9873'),(142359,141466,NULL,123531,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:02:02','2022-09-14 23:02:02',NULL,NULL,'7ed2c7c1-2cc3-43c1-ae4f-9ddba04d85ab'),(142360,141468,NULL,123532,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:02:02','2022-09-14 23:02:02',NULL,NULL,'3f271a1e-b49e-40d5-8c2f-1d5ee61d5da3'),(142361,141470,NULL,123533,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:02:03','2022-09-14 23:02:03',NULL,NULL,'cf371dff-334e-45cb-8292-cd36eaac9e2a'),(142362,141472,NULL,123534,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:02:04','2022-09-14 23:02:04',NULL,NULL,'d9039cd9-354c-4bbd-b079-c4f3dd09033c'),(142363,141474,NULL,123535,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:02:05','2022-09-14 23:02:05',NULL,NULL,'21856939-0060-4f6f-acf9-e32c8a79e262'),(142364,141476,NULL,123536,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:02:06','2022-09-14 23:02:06',NULL,NULL,'524bc66e-15e2-4e3c-b4d4-2cafc430f9af'),(142365,141478,NULL,123537,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:02:06','2022-09-14 23:02:06',NULL,NULL,'f39e38b3-cf38-4f45-90da-0f0161f965b7'),(142366,142243,NULL,123538,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:02:07','2022-09-14 23:02:07',NULL,NULL,'4e22f6de-5db9-4cf2-8bfb-f5c70f7c7335'),(142367,142245,NULL,123539,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:02:08','2022-09-14 23:02:08',NULL,NULL,'40721311-e5f2-4ee2-89a2-828f8d8d80ca'),(142368,142247,NULL,123540,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:02:09','2022-09-14 23:02:09',NULL,NULL,'0f8b6b4f-8730-47a1-a685-23fbb1b9e8a0'),(142370,142247,NULL,123541,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:16:07','2022-09-14 23:16:07',NULL,NULL,'5463c759-fb9a-4f65-aa94-9ddffb569fa0'),(142372,142247,NULL,123542,1,'craft\\elements\\Entry',1,0,'2022-09-14 23:16:36','2022-09-14 23:16:36',NULL,NULL,'047455d1-0ef1-421f-a594-45663a1b452e'),(142375,NULL,NULL,NULL,12,'craft\\elements\\Entry',1,0,'2022-09-15 01:40:32','2022-09-15 01:40:32',NULL,NULL,'8c32016a-b180-4aa1-9242-4ae23e309b5c'),(142376,142375,NULL,123543,12,'craft\\elements\\Entry',1,0,'2022-09-15 01:40:32','2022-09-15 01:40:33',NULL,NULL,'676ee7db-35c7-4845-b9f2-58392cd09efc'),(142377,142375,1033,NULL,12,'craft\\elements\\Entry',1,0,'2022-09-15 01:40:38','2022-09-15 01:40:39',NULL,NULL,'d3ddac26-75ee-4f25-966f-97375d461a12'),(142381,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-09-15 06:42:47','2022-09-15 06:42:47',NULL,NULL,'9813436c-268f-4e5a-9c9f-5df027680da7'),(142382,141725,NULL,123545,6,'craft\\elements\\Entry',1,0,'2022-09-15 06:42:56','2022-09-15 06:42:56',NULL,NULL,'b9e72761-0695-4a97-a166-db2b050d35d1'),(142384,141725,NULL,123546,6,'craft\\elements\\Entry',1,0,'2022-09-15 06:44:00','2022-09-15 06:44:00',NULL,NULL,'ee4c8b62-c3fe-4850-bc4c-023fe3104fc8'),(142386,141725,NULL,123547,6,'craft\\elements\\Entry',1,0,'2022-09-15 06:50:18','2022-09-15 06:50:18',NULL,NULL,'eb16b868-8adb-4abb-a478-aa0aa3a4cc8c'),(142387,48011,1038,NULL,12,'craft\\elements\\Entry',0,0,'2022-09-15 23:02:05','2022-09-15 23:02:06',NULL,NULL,'9a5e9fe6-96e0-4207-bf64-3f38f8a83337'),(142436,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-09-20 00:51:11','2022-09-20 00:51:11',NULL,NULL,'0daa1c9a-8977-47ef-a17f-0b64e4dee479'),(142440,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-09-20 00:52:11','2022-09-20 00:52:11',NULL,NULL,'c03f4682-520c-4d07-bff5-27a91beb4390'),(142443,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-09-20 00:53:39','2022-09-20 00:53:39',NULL,NULL,'f259468c-325c-431e-9cb3-13bf5920209b'),(142449,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-09-20 00:55:27','2022-09-20 00:55:27',NULL,NULL,'9fcfcf4d-021e-49e0-8d5f-24081e7936de'),(142451,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-09-20 00:55:54','2022-09-20 00:55:54',NULL,NULL,'eff98c56-7e0c-452f-ab79-d7d23eed3980'),(142509,48011,NULL,123607,12,'craft\\elements\\Entry',0,0,'2022-09-20 01:49:00','2022-09-20 01:49:00',NULL,NULL,'aac9e665-212f-4810-b09a-b9f51e13e9aa'),(142511,48011,NULL,123608,12,'craft\\elements\\Entry',0,0,'2022-09-20 01:49:14','2022-09-20 01:49:14',NULL,NULL,'1ee37995-aec5-41eb-a3ca-9b174c92ce82'),(142513,48011,NULL,123609,12,'craft\\elements\\Entry',0,0,'2022-09-20 01:49:24','2022-09-20 01:49:24',NULL,NULL,'7eea5812-d35a-4a1f-8d68-d483c26dd3a7'),(142515,48011,NULL,123610,12,'craft\\elements\\Entry',0,0,'2022-09-20 01:49:40','2022-09-20 01:49:40',NULL,NULL,'84cbe390-1674-4bed-87c1-bd627c39b507'),(142517,48011,NULL,123611,12,'craft\\elements\\Entry',0,0,'2022-09-20 01:51:14','2022-09-20 01:51:14',NULL,NULL,'ab558935-20f7-4287-9b34-85f8632095ff'),(142519,48011,NULL,123612,12,'craft\\elements\\Entry',0,0,'2022-09-20 01:51:52','2022-09-20 01:51:52',NULL,NULL,'5841c18b-9176-4708-ad29-6cc20fd95fbf'),(142521,48011,NULL,123613,12,'craft\\elements\\Entry',0,0,'2022-09-20 01:52:15','2022-09-20 01:52:15',NULL,NULL,'51e9364d-e8c8-4674-b747-150d204dd805'),(142523,48011,NULL,123614,12,'craft\\elements\\Entry',0,0,'2022-09-20 01:52:38','2022-09-20 01:52:38',NULL,NULL,'75686407-aaf4-44f7-95d8-4dafcafe0040'),(142525,48011,NULL,123615,12,'craft\\elements\\Entry',0,0,'2022-09-20 01:52:56','2022-09-20 01:52:56',NULL,NULL,'9b931f55-b3e8-461f-885d-3cd8a079a677'),(142527,48011,NULL,123616,12,'craft\\elements\\Entry',0,0,'2022-09-20 01:53:15','2022-09-20 01:53:15',NULL,NULL,'0aa7ad24-07c9-4a51-8118-a0693b8e8ec8'),(142529,48011,NULL,123617,12,'craft\\elements\\Entry',0,0,'2022-09-20 01:55:16','2022-09-20 01:55:16',NULL,NULL,'04ce2f3c-1186-4c74-8b48-f7f1973b2011'),(142531,48011,NULL,123618,12,'craft\\elements\\Entry',0,0,'2022-09-20 01:55:43','2022-09-20 01:55:43',NULL,NULL,'c9aeddf6-896f-4686-8f85-d09d4af8bb49'),(142533,48011,NULL,123619,12,'craft\\elements\\Entry',0,0,'2022-09-20 01:58:51','2022-09-20 01:58:51',NULL,NULL,'4ae1de74-ba48-40c7-b0d2-d2a17b296ff9'),(142535,48011,NULL,123620,12,'craft\\elements\\Entry',0,0,'2022-09-20 01:59:51','2022-09-20 01:59:51',NULL,NULL,'5ace63ac-eac0-474e-87b4-cb600203fa0a'),(142537,48011,NULL,123621,12,'craft\\elements\\Entry',0,0,'2022-09-20 02:00:45','2022-09-20 02:00:45',NULL,NULL,'de2019c6-b2e5-41e9-86eb-023ddb1f9b24'),(142540,48011,NULL,123622,12,'craft\\elements\\Entry',0,0,'2022-09-20 02:02:56','2022-09-20 02:02:56',NULL,NULL,'513da0d3-91e9-4367-85d7-ca3289b10fda'),(142542,48011,NULL,123623,12,'craft\\elements\\Entry',0,0,'2022-09-20 02:03:48','2022-09-20 02:03:48',NULL,NULL,'c6f4b2c2-442f-4a69-a209-028b27241cf3'),(142544,48011,NULL,123624,12,'craft\\elements\\Entry',0,0,'2022-09-20 02:06:45','2022-09-20 02:06:46',NULL,NULL,'2e82c431-f2bd-4e6a-aea3-9f4ad85ac7d8'),(142546,48011,NULL,123625,12,'craft\\elements\\Entry',0,0,'2022-09-20 02:06:58','2022-09-20 02:06:58',NULL,NULL,'be16e320-5573-4336-a94f-6a8f88dd20b1'),(142548,48011,NULL,123626,12,'craft\\elements\\Entry',0,0,'2022-09-20 02:07:21','2022-09-20 02:07:21',NULL,NULL,'3c9237b5-199e-4c57-a315-b12ec6f5778e'),(142550,48011,NULL,123627,12,'craft\\elements\\Entry',0,0,'2022-09-20 02:07:38','2022-09-20 02:07:38',NULL,NULL,'91d5d070-1dc9-4985-8151-3eb9761556ba'),(142552,48011,NULL,123628,12,'craft\\elements\\Entry',0,0,'2022-09-20 02:59:40','2022-09-20 02:59:40',NULL,NULL,'502a9683-3f14-4cf8-9871-c4774fe2e9b6'),(142554,48011,NULL,123629,12,'craft\\elements\\Entry',0,0,'2022-09-20 03:01:14','2022-09-20 03:01:15',NULL,NULL,'6bd4059f-a359-467f-8763-b7e5ccc91ff2'),(142555,48011,NULL,123630,12,'craft\\elements\\Entry',0,0,'2022-09-20 03:09:00','2022-09-20 03:09:00',NULL,NULL,'2e72bb89-d308-476b-bfd4-f8ce8087bd81'),(142556,48011,NULL,123631,12,'craft\\elements\\Entry',0,0,'2022-09-20 03:10:06','2022-09-20 03:10:06',NULL,NULL,'eb74277c-0139-4b4a-906c-a99cd43f53d8'),(142557,48011,NULL,123632,12,'craft\\elements\\Entry',0,0,'2022-09-20 03:10:24','2022-09-20 03:10:24',NULL,NULL,'c292bf90-e825-4aa2-bdcf-d6a0aea4d693'),(142558,48011,NULL,123633,12,'craft\\elements\\Entry',0,0,'2022-09-20 03:12:51','2022-09-20 03:12:51',NULL,NULL,'aa90421a-2afa-4933-9faf-31fc0579a383'),(142560,48011,NULL,123634,12,'craft\\elements\\Entry',0,0,'2022-09-20 03:13:29','2022-09-20 03:13:29',NULL,NULL,'e8c0de5f-ccb2-46db-b3fa-8bb9147abb23'),(142564,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-09-20 03:29:37','2022-09-20 03:29:37',NULL,NULL,'c7d30d4d-f4d8-4c0a-b8c7-0153f977c205'),(142566,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-09-20 03:29:48','2022-09-20 03:29:48',NULL,NULL,'87b40a75-ab41-4fdd-b0fa-67d87a5b6fab'),(142567,48011,NULL,123636,12,'craft\\elements\\Entry',0,0,'2022-09-20 03:33:02','2022-09-20 03:33:02',NULL,NULL,'53dbbc49-d94d-49a1-8b99-24346c8fb7e7'),(142569,48011,NULL,123637,12,'craft\\elements\\Entry',0,0,'2022-09-20 03:33:36','2022-09-20 03:33:36',NULL,NULL,'77c06c3a-9c1d-42b2-a4f2-71248264289c'),(142571,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-09-20 04:38:35','2022-09-20 04:38:35',NULL,NULL,'9dd96f81-86f1-4713-b501-65639693bf26'),(142572,141533,NULL,123638,12,'craft\\elements\\Entry',1,0,'2022-09-20 04:39:11','2022-09-20 04:39:11',NULL,NULL,'740a3935-fe46-45b2-b0ea-bc6381ec1858'),(142574,141533,NULL,123639,12,'craft\\elements\\Entry',1,0,'2022-09-20 04:39:21','2022-09-20 04:39:22',NULL,NULL,'e8ccc13f-c651-47f3-9380-8ac4b6e54368'),(142576,141533,NULL,123640,12,'craft\\elements\\Entry',1,0,'2022-09-20 04:39:58','2022-09-20 04:39:58',NULL,NULL,'cf2dc132-6022-4371-a8f7-8856b2b6ac7d'),(142578,141533,NULL,123641,12,'craft\\elements\\Entry',1,0,'2022-09-20 04:40:51','2022-09-20 04:40:51',NULL,NULL,'ee3e54e2-3dd2-43f8-8590-9bdd0237073a'),(142579,141533,NULL,123642,12,'craft\\elements\\Entry',1,0,'2022-09-20 04:48:05','2022-09-20 04:48:05',NULL,NULL,'9ad72d45-8057-4274-8a71-3e11d413bea0'),(142581,141533,NULL,123643,12,'craft\\elements\\Entry',1,0,'2022-09-20 04:48:20','2022-09-20 04:48:20',NULL,NULL,'49182a53-5d51-445b-bf16-e3320b4a3cab'),(142582,48011,NULL,123644,12,'craft\\elements\\Entry',0,0,'2022-09-20 05:03:15','2022-09-20 05:03:15',NULL,NULL,'c719e0a2-ca7b-49a7-bed1-ab13b7b19ed0'),(142584,141533,NULL,123645,12,'craft\\elements\\Entry',1,0,'2022-09-20 05:03:44','2022-09-20 05:03:44',NULL,NULL,'6ae7e808-dc75-4c40-a1d8-c3054ebb8857'),(142585,142251,NULL,123646,6,'craft\\elements\\Entry',0,0,'2022-09-20 07:28:51','2022-09-20 07:28:51',NULL,NULL,'4834d057-a863-4b83-aadc-ab1ebd8d327a'),(142588,48011,NULL,123647,12,'craft\\elements\\Entry',0,0,'2022-09-20 07:41:05','2022-09-20 07:41:05',NULL,NULL,'7c5e2e07-e976-4d4a-8def-7611dd24d5e2'),(142590,48011,NULL,123648,12,'craft\\elements\\Entry',0,0,'2022-09-20 07:41:50','2022-09-20 07:41:50',NULL,NULL,'6a86c479-6ac5-43b3-8bef-807f1d212f13'),(142592,48011,NULL,123649,12,'craft\\elements\\Entry',0,0,'2022-09-20 07:42:30','2022-09-20 07:42:30',NULL,NULL,'446182ff-6a2f-41e8-a3b9-421b09fe8c75'),(142594,48011,NULL,123650,12,'craft\\elements\\Entry',0,0,'2022-09-20 21:44:14','2022-09-20 21:44:14',NULL,NULL,'d92d68fe-a0b9-400e-bffc-c7360eea0dbd'),(142595,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-09-21 00:48:50','2022-09-21 00:48:50',NULL,NULL,'d53ea776-20e0-4f36-b51f-a560d7a1d8eb'),(142596,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-09-21 00:48:55','2022-09-21 00:48:55',NULL,NULL,'77bd2c6d-1b3d-488e-8b50-f6edee630fdc'),(142598,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-09-21 01:01:33','2022-09-21 01:01:33',NULL,NULL,'9883deac-88db-478a-94e1-1ee70610fe55'),(142600,48011,NULL,123651,12,'craft\\elements\\Entry',0,0,'2022-09-21 01:02:40','2022-09-21 01:02:40',NULL,NULL,'e1ff9984-82e7-41a1-8c00-8fd63e7bbf41'),(142602,48011,NULL,123652,12,'craft\\elements\\Entry',0,0,'2022-09-21 01:03:56','2022-09-21 01:03:56',NULL,NULL,'c63b11e0-437b-42ef-8003-4af4205f011c'),(142603,142251,NULL,123653,6,'craft\\elements\\Entry',0,0,'2022-09-27 05:42:02','2022-09-27 05:42:02',NULL,NULL,'b0db10a7-6905-45ad-ad01-6a494dcdb262'),(142605,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-09-28 04:51:45','2022-09-28 04:51:45',NULL,NULL,'431664c5-ff0f-4b39-b5fd-1caa98d5d541'),(142606,141533,NULL,123654,12,'craft\\elements\\Entry',1,0,'2022-09-28 04:54:01','2022-09-28 04:54:01',NULL,NULL,'9d843c4e-2163-4f4e-bc9f-dfaee08c1b20'),(142608,141533,NULL,123655,12,'craft\\elements\\Entry',1,0,'2022-09-28 05:02:57','2022-09-28 05:02:57',NULL,NULL,'7edfc076-50d6-4058-8c0d-9aa6a37c7c28'),(142610,141533,NULL,123656,12,'craft\\elements\\Entry',1,0,'2022-09-28 05:04:19','2022-09-28 05:04:20',NULL,NULL,'008497c9-9113-4ef5-8a77-8c45d8d6d312'),(142612,141533,NULL,123657,12,'craft\\elements\\Entry',1,0,'2022-09-28 05:05:37','2022-09-28 05:05:38',NULL,NULL,'1dd2aa13-8b46-45da-be7a-ee1225eb6f73'),(142614,141533,NULL,123658,12,'craft\\elements\\Entry',1,0,'2022-09-28 05:06:14','2022-09-28 05:06:14',NULL,NULL,'6f3b9f96-d98f-4b3c-9cfc-ba4175374c84'),(142616,141533,NULL,123659,12,'craft\\elements\\Entry',1,0,'2022-09-28 05:06:27','2022-09-28 05:06:27',NULL,NULL,'bbd989d8-fd55-4ca4-a3c3-647010882f84'),(142629,48011,NULL,123665,12,'craft\\elements\\Entry',1,0,'2022-09-28 06:41:58','2022-09-28 06:41:58',NULL,NULL,'714b479b-640b-4c3a-933d-50f9c25ec171'),(142631,142251,NULL,123666,6,'craft\\elements\\Entry',1,0,'2022-09-28 06:45:26','2022-09-28 06:45:26',NULL,NULL,'b7f1a004-a967-48e7-ae94-b63f2b0be348'),(142633,141533,NULL,123667,12,'craft\\elements\\Entry',1,0,'2022-09-28 06:52:52','2022-09-28 06:52:52',NULL,NULL,'e042f337-12c1-4dd9-af92-6e72eff163be'),(142637,141533,NULL,123669,12,'craft\\elements\\Entry',1,0,'2022-09-28 06:54:58','2022-09-28 06:54:58',NULL,NULL,'b316369f-9ae7-4a66-b7f7-d89a304305a9'),(142639,141533,NULL,123670,12,'craft\\elements\\Entry',1,0,'2022-09-28 06:55:46','2022-09-28 06:55:46',NULL,NULL,'45237b72-1d94-44f1-b3a1-b2bc5f7d6cb8'),(142641,142251,NULL,123671,6,'craft\\elements\\Entry',1,0,'2022-09-29 00:19:47','2022-09-29 00:19:47',NULL,NULL,'bc4be986-343e-496b-af3e-b9477f89ebfd'),(142642,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2022-09-29 01:53:47','2023-03-09 04:28:28',NULL,NULL,'901b26d3-f411-4ee1-acf2-10f18a4c0348'),(142643,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2022-09-29 01:53:47','2023-03-09 04:28:28',NULL,NULL,'eb65b9ba-802b-4799-9697-81a23be7bf08'),(142644,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2022-09-29 01:53:47','2023-03-09 04:28:28',NULL,NULL,'e13ca6fe-7453-4038-8a46-9718e436f405'),(142645,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2022-09-29 01:53:47','2023-03-09 04:28:28',NULL,NULL,'ad3eb4cb-6932-4cb2-9f2a-8555e6980de9'),(142648,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-09-29 02:19:43','2023-03-09 04:26:36',NULL,NULL,'abba574a-c517-439d-97e8-2f763fcee60f'),(142649,20379,NULL,123673,23,'craft\\elements\\Entry',1,0,'2022-09-29 02:22:40','2022-09-29 02:22:40',NULL,NULL,'08ae325d-876c-40d7-8ace-d0f975bb690f'),(142651,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-10-04 04:48:05','2022-10-04 04:48:05',NULL,NULL,'35ccb5ad-b5ee-45c4-b535-6065e1e3d92a'),(142652,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-10-04 04:48:13','2022-10-04 04:48:13',NULL,NULL,'381603fb-af14-4c3e-a65f-90c78e2a64fb'),(142653,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-10-04 04:48:17','2022-10-04 04:48:17',NULL,NULL,'465aad3c-26e2-445e-933d-989c6bfd40ab'),(142654,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-10-04 04:48:39','2022-10-04 04:48:39',NULL,NULL,'3a4094db-8409-40e4-a67f-fa39176e7432'),(142655,142258,NULL,123674,6,'craft\\elements\\Entry',0,0,'2022-10-04 04:48:56','2022-10-04 04:48:56',NULL,NULL,'7f64daa3-903e-448c-8b40-abfb93620b70'),(142657,142258,NULL,123675,6,'craft\\elements\\Entry',0,0,'2022-10-04 04:50:02','2022-10-04 04:50:02',NULL,NULL,'8875e980-b386-4e50-975d-86fa9ce60d81'),(142659,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-10-04 05:31:18','2022-10-04 06:03:25',NULL,NULL,'cb61829d-46e4-43dc-92cc-4bf491318eba'),(142660,142258,NULL,123676,6,'craft\\elements\\Entry',0,0,'2022-10-04 05:31:40','2022-10-04 05:31:40',NULL,NULL,'89e8657f-5093-4d1e-a03d-dee1a25230b8'),(142661,142258,NULL,123677,6,'craft\\elements\\Entry',0,0,'2022-10-04 05:32:00','2022-10-04 05:32:00',NULL,NULL,'1a33c877-9eac-438e-8edf-4b865482c19a'),(142665,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-10-04 06:04:02','2022-10-04 06:04:02',NULL,NULL,'28d02e05-8cbe-4f8e-ac1a-068bfd2c6ad2'),(142666,142258,NULL,123678,6,'craft\\elements\\Entry',0,0,'2022-10-04 06:04:22','2022-10-04 06:04:22',NULL,NULL,'9ed5bce6-422c-4e31-a171-cc5b7978d214'),(142668,142258,NULL,123679,6,'craft\\elements\\Entry',0,0,'2022-10-04 06:47:09','2022-10-04 06:47:09',NULL,NULL,'05ef4db6-e4ad-42ba-864e-342643092ae9'),(142669,142258,NULL,123680,6,'craft\\elements\\Entry',0,0,'2022-10-04 07:19:36','2022-10-04 07:19:36',NULL,NULL,'9d3d430e-0f5d-4b24-b48e-246003eec2c8'),(142670,142258,NULL,123681,6,'craft\\elements\\Entry',0,0,'2022-10-04 07:20:04','2022-10-04 07:20:04',NULL,NULL,'f732bfe9-bc26-45b9-94bc-69444c39960e'),(142672,17692,NULL,123682,12,'craft\\elements\\Entry',1,0,'2022-10-04 21:55:54','2022-10-04 21:55:54',NULL,NULL,'c47c8f64-1fd9-429a-89d5-82daa03a24ca'),(142674,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-10-04 21:57:16','2022-10-04 21:57:16',NULL,NULL,'88fa7e6c-75b0-4c22-af5c-e82b17f9eff9'),(142675,17692,NULL,123683,12,'craft\\elements\\Entry',1,0,'2022-10-04 21:57:49','2022-10-04 21:57:49',NULL,NULL,'4be63366-7c81-4fcf-9382-92de5bf97d0f'),(142676,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2022-10-05 03:53:27','2022-11-16 22:16:43',NULL,NULL,'12dffaa3-c175-4833-a8ba-36c445d24c95'),(142677,142676,NULL,123684,6,'craft\\elements\\Entry',1,0,'2022-10-05 03:53:27','2022-10-05 03:53:28',NULL,NULL,'785112bd-4d5b-4ffa-99df-f96e6379841e'),(142679,142251,NULL,123685,6,'craft\\elements\\Entry',0,0,'2022-10-05 03:56:33','2022-10-05 03:56:33',NULL,NULL,'65bfc70a-464c-4bef-b022-9e5cdf6e3490'),(142681,142251,NULL,123686,6,'craft\\elements\\Entry',0,0,'2022-10-05 04:28:42','2022-10-05 04:28:42',NULL,NULL,'fdf451f9-b895-435a-ac01-54532aa360f0'),(142684,17692,NULL,123687,12,'craft\\elements\\Entry',1,0,'2022-10-09 21:35:20','2022-10-09 21:35:20',NULL,NULL,'8eec2e98-29b8-4527-8685-252a0da919e1'),(142686,17692,NULL,123688,12,'craft\\elements\\Entry',1,0,'2022-10-09 21:35:41','2022-10-09 21:35:41',NULL,NULL,'169a49e9-d9dc-4002-b6f2-99f6e2b896a5'),(142688,17692,NULL,123689,12,'craft\\elements\\Entry',1,0,'2022-10-09 21:35:58','2022-10-09 21:35:58',NULL,NULL,'0868391f-d07b-496c-aef0-07a2873066b4'),(142690,17692,NULL,123690,12,'craft\\elements\\Entry',1,0,'2022-10-09 21:36:39','2022-10-09 21:36:39',NULL,NULL,'ee4828d0-62c8-4a93-a473-67b8192e8119'),(142692,17692,NULL,123691,12,'craft\\elements\\Entry',1,0,'2022-10-09 21:37:04','2022-10-09 21:37:04',NULL,NULL,'9850fd1f-7353-4e9f-a30d-6203a380ccdf'),(142694,17692,NULL,123692,12,'craft\\elements\\Entry',1,0,'2022-10-09 21:37:34','2022-10-09 21:37:34',NULL,NULL,'fd7f1bac-2440-41c2-87f3-8111b0b3501f'),(142696,17692,NULL,123693,12,'craft\\elements\\Entry',1,0,'2022-10-09 21:39:09','2022-10-09 21:39:09',NULL,NULL,'af396858-1dba-49a6-a126-069f36c90cd6'),(142697,17692,NULL,123694,12,'craft\\elements\\Entry',1,0,'2022-10-09 21:39:43','2022-10-09 21:39:43',NULL,NULL,'5d3100ea-e42f-427a-b80e-5de2a343c862'),(142699,142258,NULL,123695,6,'craft\\elements\\Entry',0,0,'2022-10-10 01:16:50','2022-10-10 01:16:50',NULL,NULL,'0cbd65b5-ba31-4071-8770-48242f0f91bc'),(142700,142258,NULL,123696,6,'craft\\elements\\Entry',0,0,'2022-10-10 05:42:34','2022-10-10 05:42:34',NULL,NULL,'22303246-657f-4c0b-9f5b-98c21bfa45c0'),(142702,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-10-10 05:50:28','2022-10-10 05:50:28',NULL,NULL,'5c291425-833b-4240-8ce8-53ec29e3e1f4'),(142703,142258,NULL,123697,6,'craft\\elements\\Entry',0,0,'2022-10-10 05:51:11','2022-10-10 05:51:11',NULL,NULL,'1139d030-b8f6-4243-8a4c-d8b016fa201a'),(142705,142258,NULL,123698,6,'craft\\elements\\Entry',0,0,'2022-10-12 06:29:18','2022-10-12 06:29:18',NULL,NULL,'bb1f4e6b-81a9-4f4e-98e1-2e55b07d1c68'),(142706,142258,NULL,123699,6,'craft\\elements\\Entry',1,0,'2022-10-12 06:38:26','2022-10-12 06:38:26',NULL,NULL,'929c67a5-79ee-436e-9f3f-b7a46f77e30a'),(142707,142258,NULL,123700,6,'craft\\elements\\Entry',0,0,'2022-10-12 06:38:57','2022-10-12 06:38:57',NULL,NULL,'a7f32e70-bdac-4022-85a6-2e0f52934389'),(142708,142258,NULL,123701,6,'craft\\elements\\Entry',0,0,'2022-10-12 06:39:01','2022-10-12 06:39:01',NULL,NULL,'3041832f-5065-40bb-bda4-ff58e6b0489d'),(142710,142258,NULL,123702,6,'craft\\elements\\Entry',1,0,'2022-10-12 06:39:19','2022-10-12 06:39:19',NULL,NULL,'89b7bff0-6999-40ec-9b6a-1c6aa480fd2b'),(142711,140246,NULL,123703,68,'craft\\elements\\Entry',1,0,'2022-10-13 23:32:45','2022-10-13 23:32:45',NULL,NULL,'ead12d2c-18d1-4440-b208-4ed127051392'),(142712,140246,NULL,123704,68,'craft\\elements\\Entry',1,0,'2022-10-13 23:33:08','2022-10-13 23:33:08',NULL,NULL,'a3793c0c-d3c8-450b-a8a2-cfd327ef4897'),(142714,140246,NULL,123705,68,'craft\\elements\\Entry',1,0,'2022-10-13 23:34:58','2022-10-13 23:34:58',NULL,NULL,'5b4e1325-2995-4977-89be-1c573a2cf8a6'),(142716,NULL,NULL,NULL,5,'craft\\elements\\User',1,0,'2022-10-18 00:33:26','2023-03-09 04:28:32',NULL,NULL,'d4e17a48-7642-4320-b3b2-abbd7e61d363'),(142717,NULL,NULL,NULL,12,'craft\\elements\\Entry',0,0,'2022-10-18 00:44:19','2022-10-20 00:46:10',NULL,NULL,'b69ec4c8-34a4-4028-9a60-6b24d03cebe5'),(142718,142717,NULL,123706,12,'craft\\elements\\Entry',1,0,'2022-10-18 00:44:19','2022-10-18 00:44:20',NULL,NULL,'e62930fc-0367-4f36-aa80-83dbcfe0fd32'),(142722,NULL,NULL,NULL,12,'craft\\elements\\Entry',1,0,'2022-10-18 00:50:13','2022-10-18 00:50:13',NULL,NULL,'aaf71e79-3734-4fbb-b238-e6f5d1a57121'),(142723,142722,NULL,123708,12,'craft\\elements\\Entry',1,0,'2022-10-18 00:50:13','2022-10-18 00:50:14',NULL,NULL,'608eff9f-f014-4156-a412-f26b85be1d58'),(142724,142717,NULL,123709,12,'craft\\elements\\Entry',1,0,'2022-10-18 00:50:59','2022-10-18 00:50:59',NULL,NULL,'ad7c2da1-6f70-4d61-be98-9f996d3194d7'),(142726,142717,NULL,123710,12,'craft\\elements\\Entry',1,0,'2022-10-18 00:51:49','2022-10-18 00:51:49',NULL,NULL,'04ffa496-13be-483a-ba84-b3956096f966'),(142728,142717,NULL,123711,12,'craft\\elements\\Entry',1,0,'2022-10-18 00:54:02','2022-10-18 00:54:02',NULL,NULL,'00e0dcae-bfe0-451b-8728-745e2c2a02f2'),(142730,142717,NULL,123712,12,'craft\\elements\\Entry',1,0,'2022-10-18 00:57:16','2022-10-18 00:57:16',NULL,NULL,'3ee5e6cc-e070-4b71-aa98-d6590fb9ab22'),(142732,142717,NULL,123713,12,'craft\\elements\\Entry',1,0,'2022-10-18 00:57:59','2022-10-18 00:57:59',NULL,NULL,'006f8755-ec60-4ad3-83ef-4c231f6592d7'),(142734,142717,NULL,123714,12,'craft\\elements\\Entry',1,0,'2022-10-18 00:59:35','2022-10-18 00:59:35',NULL,NULL,'1505429f-94b6-4679-9584-bdf0793c8f1f'),(142736,142717,NULL,123715,12,'craft\\elements\\Entry',1,0,'2022-10-18 01:02:30','2022-10-18 01:02:30',NULL,NULL,'0b77576b-a10d-4cd6-b86d-a1ff2e8b3e3e'),(142738,142717,NULL,123716,12,'craft\\elements\\Entry',1,0,'2022-10-18 01:06:33','2022-10-18 01:06:33',NULL,NULL,'6c35a037-336b-462d-a3da-c6670a827796'),(142740,142717,NULL,123717,12,'craft\\elements\\Entry',1,0,'2022-10-18 01:09:54','2022-10-18 01:09:54',NULL,NULL,'0ac3db7f-1a3d-4352-9cef-549e4597a843'),(142742,142717,NULL,123718,12,'craft\\elements\\Entry',1,0,'2022-10-18 01:10:48','2022-10-18 01:10:48',NULL,NULL,'58ead932-e603-449e-a099-516f79c5bd67'),(142744,142717,NULL,123719,12,'craft\\elements\\Entry',1,0,'2022-10-18 01:12:29','2022-10-18 01:12:29',NULL,NULL,'11461c4c-d97f-4c6e-9d61-d9f0634bbeed'),(142746,142717,NULL,123720,12,'craft\\elements\\Entry',1,0,'2022-10-18 01:14:22','2022-10-18 01:14:22',NULL,NULL,'73299073-f92c-4a0d-81d0-51d15c93ba28'),(142748,142717,NULL,123721,12,'craft\\elements\\Entry',1,0,'2022-10-18 01:15:47','2022-10-18 01:15:47',NULL,NULL,'469a301b-02fb-4757-8d38-50de62335de1'),(142750,142717,NULL,123722,12,'craft\\elements\\Entry',1,0,'2022-10-18 01:17:28','2022-10-18 01:17:28',NULL,NULL,'3b633b1b-68d5-4fc3-b25a-caa1bd6d49de'),(142751,142717,1191,NULL,12,'craft\\elements\\Entry',1,0,'2022-10-18 01:24:52','2022-10-18 01:25:00',NULL,NULL,'bda76eb9-6096-4b8b-84e5-04ea22381e1d'),(142753,142717,NULL,123723,12,'craft\\elements\\Entry',1,0,'2022-10-18 01:26:50','2022-10-18 01:26:50',NULL,NULL,'0275a22b-8f75-45b8-a287-2e9d2c2ff7a2'),(142754,142717,1193,NULL,12,'craft\\elements\\Entry',1,0,'2022-10-18 01:27:32','2022-10-18 01:27:34',NULL,NULL,'38be0d42-7b72-47dc-85df-6e5073448b74'),(142755,16828,1194,NULL,6,'craft\\elements\\Entry',1,0,'2022-10-18 04:05:07','2022-10-18 04:05:08',NULL,NULL,'ce9451f7-2eef-43c9-9fc7-2556a1c67037'),(142756,18126,1195,NULL,6,'craft\\elements\\Entry',1,0,'2022-10-18 04:05:09','2022-10-18 04:05:10',NULL,NULL,'690ff8ce-03e5-4ace-a598-cd72f8a24baa'),(142758,141533,NULL,123724,12,'craft\\elements\\Entry',1,0,'2022-10-18 22:57:54','2022-10-18 22:57:54',NULL,NULL,'a2e88e51-c187-4a43-9674-d2471d69e3e0'),(142760,48011,NULL,123725,12,'craft\\elements\\Entry',1,0,'2022-10-18 23:19:48','2022-10-18 23:19:48',NULL,NULL,'9a90b2c7-737f-48c2-b9c6-baa00d63c4b6'),(142762,48011,NULL,123726,12,'craft\\elements\\Entry',0,0,'2022-10-18 23:24:16','2022-10-18 23:24:16',NULL,NULL,'beda7a8b-3827-4c7b-83bb-cec60afc48d2'),(142764,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-10-18 23:37:26','2022-10-18 23:37:26',NULL,NULL,'c81f604e-139c-4a93-b3e7-8736d3f5269e'),(142765,48011,NULL,123727,12,'craft\\elements\\Entry',0,0,'2022-10-18 23:38:11','2022-10-18 23:38:11',NULL,NULL,'60f8864e-0bb1-495e-9015-68f6a27a60af'),(142767,48011,NULL,123728,12,'craft\\elements\\Entry',0,0,'2022-10-18 23:39:40','2022-10-18 23:39:41',NULL,NULL,'560487c6-4492-4b79-88c8-b7cc987cd385'),(142769,48011,NULL,123729,12,'craft\\elements\\Entry',0,0,'2022-10-18 23:40:20','2022-10-18 23:40:20',NULL,NULL,'1fd849d5-fd84-463c-a405-aa52cdaff534'),(142771,48011,NULL,123730,12,'craft\\elements\\Entry',1,0,'2022-10-19 03:57:14','2022-10-19 03:57:14',NULL,NULL,'69b3e6b5-1ef8-4658-ade7-4d464eeb81bb'),(142773,141533,NULL,123731,12,'craft\\elements\\Entry',1,0,'2022-10-19 03:57:28','2022-10-19 03:57:28',NULL,NULL,'3e7dae97-4668-4243-be0e-29f1e3f9b165'),(142775,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-10-20 00:43:56','2022-10-20 00:43:56',NULL,NULL,'027f2930-2201-4feb-b6db-506852f89a80'),(142776,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-10-20 00:44:46','2022-10-20 00:44:46',NULL,NULL,'d88e8295-668b-48d6-a6de-e51195dbba64'),(142777,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-10-20 00:45:41','2022-10-20 00:45:41',NULL,NULL,'14cba8c0-272a-430a-a03e-bc5d78bf3f0d'),(142778,142717,NULL,123732,12,'craft\\elements\\Entry',0,0,'2022-10-20 00:46:10','2022-10-20 00:46:10',NULL,NULL,'4e2dea96-e61f-4137-b83d-97bd717eb0b1'),(142779,142717,1205,NULL,12,'craft\\elements\\Entry',0,0,'2022-10-20 00:46:16','2022-10-20 00:50:31',NULL,NULL,'15ef4a54-c797-4e49-9dab-38e57c39a550'),(142780,142676,NULL,123733,6,'craft\\elements\\Entry',1,0,'2022-10-20 04:36:59','2022-10-20 04:36:59',NULL,NULL,'54632701-e6da-4c71-afac-e503921daaf2'),(142783,74276,NULL,123734,60,'craft\\elements\\Entry',1,0,'2022-10-21 02:38:41','2022-10-21 02:38:41',NULL,NULL,'1ccdf76b-4dcb-4899-8938-54c1ab86a4d3'),(142784,140246,NULL,123735,68,'craft\\elements\\Entry',1,0,'2022-10-21 03:32:12','2022-10-21 03:32:12',NULL,NULL,'d878a2a4-cdd2-4e6e-bef0-8585559e374c'),(142786,140246,NULL,123736,68,'craft\\elements\\Entry',1,0,'2022-10-21 03:47:31','2022-10-21 03:47:31',NULL,NULL,'325d8efb-a23c-4581-96f0-23e91e5a8e5c'),(142787,140246,NULL,123737,68,'craft\\elements\\Entry',1,0,'2022-10-21 03:56:40','2022-10-21 03:56:40',NULL,NULL,'44c6b318-d93c-4fb0-aa59-9c1b8d98c15d'),(142788,140246,NULL,123738,68,'craft\\elements\\Entry',1,0,'2022-10-21 03:56:52','2022-10-21 03:56:53',NULL,NULL,'ad165ffb-cace-4495-96c3-7e86bf69d24e'),(142789,140246,1208,NULL,68,'craft\\elements\\Entry',1,0,'2022-10-21 03:57:13','2022-10-21 03:57:14',NULL,NULL,'c57f5912-1656-4524-8224-9886f8d3c033'),(142790,140246,NULL,123739,68,'craft\\elements\\Entry',1,0,'2022-10-21 04:05:41','2022-10-21 04:05:41',NULL,NULL,'941138e5-15cc-45ff-92bd-fee08a5031c1'),(142792,140246,NULL,123740,68,'craft\\elements\\Entry',1,0,'2022-10-21 04:10:06','2022-10-21 04:10:06',NULL,NULL,'e097238f-4996-4000-9b1e-97cce891c13f'),(142794,140246,NULL,123741,68,'craft\\elements\\Entry',1,0,'2022-10-21 04:10:41','2022-10-21 04:10:41',NULL,NULL,'74496bb2-5958-41cc-a584-27c91ea0156c'),(142796,140246,NULL,123742,68,'craft\\elements\\Entry',1,0,'2022-10-21 04:18:21','2022-10-21 04:18:21',NULL,NULL,'0e33d93b-25fd-4920-a7cf-5a93da5e2236'),(142799,17692,NULL,123743,12,'craft\\elements\\Entry',1,0,'2022-10-21 05:20:56','2022-10-21 05:20:56',NULL,NULL,'b26e2fd4-9bca-47f3-a7ce-65bad544caa2'),(142801,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2022-10-21 06:06:31','2022-11-04 04:01:06',NULL,NULL,'87efd429-9685-4232-83cb-aea935066759'),(142802,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-10-21 06:40:08','2022-10-21 06:40:08',NULL,NULL,'c38cf0e3-5c17-47f0-9b3e-006d6669b217'),(142803,142801,NULL,123744,6,'craft\\elements\\Entry',1,0,'2022-10-21 07:19:36','2022-10-21 07:19:36',NULL,NULL,'dc01aaca-80cb-4fcf-8e76-a9ff7ebfe790'),(142804,17692,NULL,123745,12,'craft\\elements\\Entry',1,0,'2022-10-23 22:57:26','2022-10-23 22:57:26',NULL,NULL,'9e4b90e5-da57-42c7-919b-20163b41cc10'),(142805,141533,NULL,123746,12,'craft\\elements\\Entry',1,0,'2022-10-23 23:00:20','2022-10-23 23:00:20',NULL,NULL,'5521ce48-c54c-4571-86c3-b454cc3046e7'),(142807,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-10-23 23:47:29','2022-10-23 23:47:29',NULL,NULL,'a0bf8ff2-3390-4634-ae46-ac580c463f9d'),(142808,142258,NULL,123747,6,'craft\\elements\\Entry',1,0,'2022-10-23 23:50:15','2022-10-23 23:50:15',NULL,NULL,'73112db8-8712-4231-bea5-1688e6d90e03'),(142810,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-10-23 23:54:53','2022-10-23 23:54:53',NULL,NULL,'f86b7763-bf7a-4557-8d8d-22452de43517'),(142811,142258,NULL,123748,6,'craft\\elements\\Entry',1,0,'2022-10-23 23:55:08','2022-10-23 23:55:08',NULL,NULL,'329f617e-0703-4144-b59e-901d604be063'),(142813,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-10-23 23:57:50','2022-10-23 23:57:50',NULL,NULL,'dbba8849-96ee-479a-b8e4-1664b0ebfa34'),(142814,142258,NULL,123749,6,'craft\\elements\\Entry',1,0,'2022-10-23 23:58:00','2022-10-23 23:58:00',NULL,NULL,'874ad190-699c-4c98-8942-284961770edd'),(142816,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-10-24 00:00:00','2022-10-24 00:00:00',NULL,NULL,'e07b3aa8-fe19-4ce5-9fb8-d995bb8635a8'),(142817,142258,NULL,123750,6,'craft\\elements\\Entry',1,0,'2022-10-24 00:00:09','2022-10-24 00:00:09',NULL,NULL,'647529d5-94bd-4674-9bf5-4b6827048f1b'),(142819,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-10-24 00:25:46','2022-10-24 00:25:46',NULL,NULL,'4eff6eb2-40a8-4192-8ad3-4410ec3a035e'),(142820,17692,NULL,123751,12,'craft\\elements\\Entry',1,0,'2022-10-24 00:25:59','2022-10-24 00:25:59',NULL,NULL,'c3b05653-db10-4bef-80e1-40c3a517b382'),(142821,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-10-24 00:54:28','2022-10-24 00:54:28',NULL,NULL,'b5446f95-6c39-41db-8a66-c59d1cda6bdd'),(142823,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-10-24 01:06:43','2022-10-24 06:44:43',NULL,NULL,'2b64d6f0-e794-4d45-8d1e-b053c410dc80'),(142824,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-10-24 01:07:00','2022-10-24 01:07:00',NULL,NULL,'ce90c5be-c933-49df-b5a9-01fbabd24ab2'),(142826,48011,NULL,123752,12,'craft\\elements\\Entry',1,0,'2022-10-24 01:32:43','2022-10-24 01:32:43',NULL,NULL,'2409283b-a499-4f4b-8041-f6d2dad08e6d'),(142828,48011,NULL,123753,12,'craft\\elements\\Entry',1,0,'2022-10-24 01:33:05','2022-10-24 01:33:05',NULL,NULL,'931a9224-aa8b-4fa9-a3b6-055f171408b2'),(142830,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-10-24 06:45:43','2022-10-24 06:45:43',NULL,NULL,'f3866ad8-e0de-4fa0-a509-56749e4c0e3c'),(142831,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-10-24 06:46:06','2022-10-24 06:46:06',NULL,NULL,'57d15d54-3415-47eb-b01e-ba9a07b8f0ca'),(142832,17692,NULL,123754,12,'craft\\elements\\Entry',1,0,'2022-10-24 06:46:27','2022-10-24 06:46:27',NULL,NULL,'b6fa4a60-e267-46a2-8312-bd395ce2179e'),(142833,NULL,NULL,NULL,6,'craft\\elements\\Entry',0,0,'2022-10-25 00:12:22','2023-03-30 23:10:06',NULL,NULL,'c04c0f17-cb6b-44ae-b50e-a7c780f65c66'),(142834,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-10-25 03:00:09','2022-10-25 03:00:09',NULL,NULL,'d0685d9b-09c3-47c4-abb0-a97ae0775d2b'),(142835,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-10-25 03:00:30','2022-10-25 03:00:30',NULL,NULL,'77166eae-4a4a-4c23-b103-7be443834e41'),(142836,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-10-25 03:00:33','2022-10-25 03:00:33',NULL,NULL,'fbdc4b4a-048e-4322-94c5-1cd3f19cb77c'),(142837,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-10-25 03:01:24','2022-10-25 03:01:24',NULL,NULL,'328a623f-c9b6-4c0f-9887-d679fedc3c91'),(142838,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-10-25 03:29:18','2022-10-25 03:29:18',NULL,NULL,'a7e9088c-8f36-4c17-afc4-4e025d698f2c'),(142839,142833,NULL,123755,6,'craft\\elements\\Entry',0,0,'2022-10-25 03:29:29','2022-10-25 03:29:29',NULL,NULL,'e2550806-c352-4f47-939a-72ccd76dd2da'),(142840,142833,1225,NULL,6,'craft\\elements\\Entry',0,0,'2022-10-25 03:33:47','2022-11-16 22:45:24','2022-11-16 22:45:24',NULL,'d60e79a1-13fd-49b8-92b1-6cd24e3d5cec'),(142841,48011,NULL,123756,12,'craft\\elements\\Entry',1,0,'2022-10-25 03:43:56','2022-10-25 03:43:56',NULL,NULL,'b8306f2b-04d6-41ab-961d-4e587d4cde59'),(142843,20379,NULL,123757,23,'craft\\elements\\Entry',1,0,'2022-10-25 22:44:17','2022-10-25 22:44:17',NULL,NULL,'e78ba218-e35d-4751-a3d9-0a8c8c1fa2b4'),(142844,17692,NULL,123758,12,'craft\\elements\\Entry',1,0,'2022-10-25 22:47:48','2022-10-25 22:47:48',NULL,NULL,'60e65ce5-f8a1-4ffd-92b4-a036ef4d0942'),(142846,141533,NULL,123759,12,'craft\\elements\\Entry',1,0,'2022-10-25 22:49:49','2022-10-25 22:49:49',NULL,NULL,'b6dcca27-40c7-4c73-a17c-5aa58d3182f9'),(142847,NULL,NULL,NULL,12,'craft\\elements\\Entry',1,0,'2022-10-26 02:13:04','2023-04-03 01:08:12',NULL,NULL,'b48ffdb5-d266-43f4-8e3f-936aafe11a86'),(142848,142847,NULL,123760,12,'craft\\elements\\Entry',1,0,'2022-10-26 02:15:52','2022-10-26 02:15:52',NULL,NULL,'44a4072c-91c0-49aa-96ad-f8ae754ed20e'),(142850,142847,NULL,123761,12,'craft\\elements\\Entry',1,0,'2022-10-26 02:16:20','2022-10-26 02:16:20',NULL,NULL,'afd41996-09c3-4173-95c3-7ee42d15b153'),(142852,142847,NULL,123762,12,'craft\\elements\\Entry',1,0,'2022-10-26 02:16:33','2022-10-26 02:16:33',NULL,NULL,'16d69ac3-456b-493c-8b7d-2d5dd6c11d3e'),(142854,142847,NULL,123763,12,'craft\\elements\\Entry',1,0,'2022-10-26 02:17:36','2022-10-26 02:17:36',NULL,NULL,'cee61512-e738-4001-b2ef-1303843968ec'),(142856,142847,NULL,123764,12,'craft\\elements\\Entry',1,0,'2022-10-26 02:18:39','2022-10-26 02:18:39',NULL,NULL,'60b15bc6-df40-4cd9-bd79-9667db9ca69c'),(142859,74276,NULL,123765,60,'craft\\elements\\Entry',1,0,'2022-10-26 07:04:46','2022-10-26 07:04:46',NULL,NULL,'75bf1bf4-6ddc-45bd-98e8-7aa5bc33f354'),(142861,74276,NULL,123766,60,'craft\\elements\\Entry',1,0,'2022-10-26 07:05:34','2022-10-26 07:05:34',NULL,NULL,'11fa234d-05dd-4f88-851c-a7a78d9dbe1d'),(142863,74276,NULL,123767,60,'craft\\elements\\Entry',1,0,'2022-10-26 07:06:46','2022-10-26 07:06:46',NULL,NULL,'2ffdcc7c-2bd0-4f03-97a4-c2ba5eb85c60'),(142865,74276,NULL,123768,60,'craft\\elements\\Entry',1,0,'2022-10-26 07:07:43','2022-10-26 07:07:43',NULL,NULL,'ac5bd4fa-e753-4782-bf31-e48ba1966433'),(142867,74276,NULL,123769,60,'craft\\elements\\Entry',1,0,'2022-10-26 07:08:25','2022-10-26 07:08:25',NULL,NULL,'97377dac-413f-4511-bd14-bfcd7d7c1881'),(142868,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-10-26 23:41:25','2022-10-26 23:41:25',NULL,NULL,'8f4c65de-411a-492e-a46b-169b75a19009'),(142869,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-10-26 23:43:37','2022-10-26 23:43:37',NULL,NULL,'0130d4ae-ab38-4b17-b750-dc85f61b8d34'),(142871,74276,NULL,123770,60,'craft\\elements\\Entry',1,0,'2022-10-26 23:44:32','2022-10-26 23:44:32',NULL,NULL,'6d850636-378f-45f1-9e5c-f3427f948c52'),(142873,142258,NULL,123771,6,'craft\\elements\\Entry',1,0,'2022-10-27 04:16:32','2022-10-27 04:16:32',NULL,NULL,'d9a2cf14-260a-4b29-8f00-9f7da7807ec2'),(142874,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-10-28 06:47:54','2023-03-09 04:28:04',NULL,NULL,'08e3d3b6-6b3b-401f-8101-d37fbca25b94'),(142875,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2022-10-31 00:51:19','2023-03-31 03:42:53',NULL,NULL,'64ae6449-823c-434a-b7f0-bdfee514c7f1'),(142876,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-11-03 05:31:49','2022-11-03 05:31:49',NULL,NULL,'2090f07b-07fd-4d42-8721-cde059073075'),(142877,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-11-03 05:32:02','2022-11-03 05:32:02',NULL,NULL,'87d8bfb5-7f1b-4460-adee-e05cdb2cde49'),(142878,142847,NULL,123772,12,'craft\\elements\\Entry',0,0,'2022-11-03 05:32:10','2022-11-03 05:32:10',NULL,NULL,'0265ee1a-4986-4239-9246-03f601351528'),(142880,142847,NULL,123773,12,'craft\\elements\\Entry',0,0,'2022-11-03 05:32:42','2022-11-03 05:32:42',NULL,NULL,'787855d4-16a5-4569-aeec-9819b699f100'),(142882,142847,NULL,123774,12,'craft\\elements\\Entry',0,0,'2022-11-03 05:33:05','2022-11-03 05:33:05',NULL,NULL,'ce56e858-d475-4b84-8a1a-8ee9b39b098b'),(142883,142847,NULL,123775,12,'craft\\elements\\Entry',0,0,'2022-11-03 05:33:11','2022-11-03 05:33:11',NULL,NULL,'4e62f687-216f-448b-b44c-e29a9685f519'),(142886,142847,NULL,123776,12,'craft\\elements\\Entry',0,0,'2022-11-03 05:49:19','2022-11-03 05:49:19',NULL,NULL,'0733b7c1-9b22-49a2-be47-71eb449e6df9'),(142887,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-11-03 05:51:31','2022-11-03 05:51:31',NULL,NULL,'bcfeae9e-9be9-450f-9cc4-e9eb7abfc290'),(142889,142847,NULL,123777,12,'craft\\elements\\Entry',0,0,'2022-11-03 05:52:24','2022-11-03 05:52:24',NULL,NULL,'32ff1f0a-55cf-482b-8ac1-6e22b3e76c25'),(142891,142847,NULL,123778,12,'craft\\elements\\Entry',0,0,'2022-11-03 05:52:48','2022-11-03 05:52:48',NULL,NULL,'bf88ed44-b6ee-42c8-b0b8-cfd50129fd2a'),(142892,142847,NULL,123779,12,'craft\\elements\\Entry',0,0,'2022-11-04 03:52:23','2022-11-04 03:52:23',NULL,NULL,'3166e8e0-b3cc-417f-b908-8420b166cba9'),(142894,142847,NULL,123780,12,'craft\\elements\\Entry',1,0,'2022-11-04 03:53:18','2022-11-04 03:53:18',NULL,NULL,'4e603266-7269-4f93-824e-b99ee6b436a4'),(142896,142801,NULL,123781,6,'craft\\elements\\Entry',1,0,'2022-11-04 04:01:06','2022-11-04 04:01:06',NULL,NULL,'d6161745-6960-4f22-85bf-3ebdf6db9d72'),(142898,142847,NULL,123782,12,'craft\\elements\\Entry',1,0,'2022-11-04 04:05:05','2022-11-04 04:05:05',NULL,NULL,'c40acd8c-7563-441d-83d0-ad6d3172d5d5'),(142899,142847,NULL,123783,12,'craft\\elements\\Entry',1,0,'2022-11-04 04:08:35','2022-11-04 04:08:35',NULL,NULL,'a5e88d13-d63a-4ca8-a57a-5b5958921f49'),(142900,142847,NULL,123784,12,'craft\\elements\\Entry',1,0,'2022-11-04 04:08:42','2022-11-04 04:08:42',NULL,NULL,'60d75954-0c66-458b-8bc3-5d68a9acd9ee'),(142901,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2022-11-07 04:09:01','2023-03-30 23:09:41',NULL,NULL,'c34fae3b-7026-4a5b-9ab6-5cb1dc1e4334'),(142902,142901,NULL,123785,6,'craft\\elements\\Entry',0,0,'2022-11-07 04:54:31','2022-11-07 04:54:31',NULL,NULL,'ef50c03c-f5ba-49ed-ac2b-26de3e631d89'),(142904,142901,NULL,123786,6,'craft\\elements\\Entry',0,0,'2022-11-07 04:58:19','2022-11-07 04:58:19',NULL,NULL,'c48bf006-1d30-4f12-89fb-9f4a7a17c0ca'),(142906,142901,NULL,123787,6,'craft\\elements\\Entry',0,0,'2022-11-07 04:58:50','2022-11-07 04:58:50',NULL,NULL,'d45c6e7a-3e2b-4c79-bd4e-547e86c3318a'),(142908,141533,NULL,123788,12,'craft\\elements\\Entry',1,0,'2022-11-07 05:01:35','2022-11-07 05:01:35',NULL,NULL,'d669cb1f-f285-4f86-887d-490484dca730'),(142910,141533,NULL,123789,12,'craft\\elements\\Entry',1,0,'2022-11-07 05:01:52','2022-11-07 05:01:52',NULL,NULL,'ff8e91ce-2271-42e3-9668-361c278b10a7'),(142911,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-11-07 05:02:56','2022-11-18 05:55:00',NULL,NULL,'fca7b1cf-5365-45e5-b3b7-4d21733b31f9'),(142913,142901,NULL,123790,6,'craft\\elements\\Entry',0,0,'2022-11-07 05:06:23','2022-11-07 05:06:23',NULL,NULL,'42c71ed7-a2ea-486c-9ae5-73140fe163d0'),(142914,142901,NULL,123791,6,'craft\\elements\\Entry',0,0,'2022-11-07 05:18:14','2022-11-07 05:18:14',NULL,NULL,'4c698036-b7ac-4407-a302-2f1f15628e7e'),(142916,141533,NULL,123792,12,'craft\\elements\\Entry',1,0,'2022-11-07 05:22:36','2022-11-07 05:22:36',NULL,NULL,'b4042204-41e8-4c2f-bf1e-669010e66b78'),(142917,141533,1258,NULL,12,'craft\\elements\\Entry',1,0,'2022-11-07 05:23:32','2022-11-07 05:23:40',NULL,NULL,'990bc854-96cc-46fd-9bed-2092de34428b'),(142919,141533,NULL,123793,12,'craft\\elements\\Entry',1,0,'2022-11-07 05:23:50','2022-11-07 05:23:50',NULL,NULL,'4e245196-cd14-4a93-bd75-94fa84444e73'),(142921,141533,NULL,123794,12,'craft\\elements\\Entry',1,0,'2022-11-07 05:24:05','2022-11-07 05:24:05',NULL,NULL,'57983924-5741-465c-88af-f868fa725309'),(142923,142847,NULL,123795,12,'craft\\elements\\Entry',1,0,'2022-11-08 02:58:40','2022-11-08 02:58:40',NULL,NULL,'a0cbd2a7-f145-4417-9db4-0ea0a2185f09'),(142924,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-11-09 06:43:54','2022-12-01 07:10:53',NULL,NULL,'e2eb75d9-b83c-438b-8f95-f51a8ff8e2c3'),(142926,74276,NULL,123796,60,'craft\\elements\\Entry',1,0,'2022-11-09 06:45:17','2022-11-09 06:45:17',NULL,NULL,'f585ffa6-495b-4c14-a586-f6ad933fc4ca'),(142929,74276,NULL,123797,60,'craft\\elements\\Entry',1,0,'2022-11-09 06:47:05','2022-11-09 06:47:05',NULL,NULL,'b0528842-b399-455c-a023-63c0a9a1f581'),(142931,141533,NULL,123798,12,'craft\\elements\\Entry',1,0,'2022-11-10 00:21:24','2022-11-10 00:21:24',NULL,NULL,'f33133f2-28d1-4fd2-b1fb-bd8c5ccda0e3'),(142933,141533,NULL,123799,12,'craft\\elements\\Entry',1,0,'2022-11-10 00:21:46','2022-11-10 00:21:46',NULL,NULL,'fe5cfeeb-ac47-49c5-947f-7f00b99b4fae'),(142935,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-11-11 00:38:16','2022-11-11 00:38:16',NULL,NULL,'a1034647-0767-437e-b5f6-c210725a07de'),(142936,141533,NULL,123800,12,'craft\\elements\\Entry',1,0,'2022-11-11 00:38:25','2022-11-11 00:38:25',NULL,NULL,'e164c054-1a1b-4df1-87d7-b87b57292a26'),(142939,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-11-11 00:41:16','2022-11-11 00:41:16',NULL,NULL,'b14d8763-cdf9-43c7-ad71-8142714d7662'),(142940,141533,NULL,123801,12,'craft\\elements\\Entry',1,0,'2022-11-11 00:41:23','2022-11-11 00:41:23',NULL,NULL,'0d9493a7-5479-4f55-9f79-bf25b45993a8'),(142942,141533,NULL,123802,12,'craft\\elements\\Entry',1,0,'2022-11-11 00:43:21','2022-11-11 00:43:21',NULL,NULL,'53cc4065-bc7c-4d41-a3af-fa7daf6fd537'),(142944,20379,NULL,123803,23,'craft\\elements\\Entry',1,0,'2022-11-11 01:19:58','2022-11-11 01:19:58',NULL,NULL,'f5180f63-07a7-4c84-b6ff-ff1827620b21'),(142946,20379,NULL,123804,23,'craft\\elements\\Entry',1,0,'2022-11-11 01:21:36','2022-11-11 01:21:36',NULL,NULL,'9aeb7457-2a77-4d95-a67f-0999e4c47633'),(142947,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2022-11-14 04:13:39','2023-03-09 04:28:32',NULL,NULL,'90cddda2-1e49-48ec-ae90-c36c1a4e1f87'),(142948,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2022-11-14 04:13:39','2023-03-09 04:28:32',NULL,NULL,'9388a83d-54b8-4b4b-9ce4-3ac4c74479da'),(142949,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2022-11-14 04:13:39','2023-03-09 04:28:32',NULL,NULL,'c0558afb-f604-4dba-869f-5f16a7a6a0a8'),(142950,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2022-11-14 04:13:39','2023-03-09 04:28:32',NULL,NULL,'ef942ac0-c9e5-488f-bf11-0cdff14340b5'),(142951,NULL,NULL,NULL,14,'craft\\elements\\MatrixBlock',1,0,'2022-11-14 04:13:39','2023-03-09 04:28:32',NULL,NULL,'c14c164d-9c24-4b40-b8d6-19b802b9bf1f'),(142954,48011,NULL,123805,12,'craft\\elements\\Entry',1,0,'2022-11-15 05:38:30','2022-11-15 05:38:30',NULL,NULL,'565738d2-149f-470b-af82-fd22e6af15a6'),(142957,142901,NULL,123806,6,'craft\\elements\\Entry',0,0,'2022-11-16 03:44:31','2022-11-16 03:44:31',NULL,NULL,'be0df3e2-b848-4473-b565-19cf103bc22e'),(142958,142847,NULL,123807,12,'craft\\elements\\Entry',1,0,'2022-11-16 03:48:54','2022-11-16 03:48:54',NULL,NULL,'eaf7b12a-8e75-45b0-b5fe-d66bba17617c'),(142960,142901,NULL,123808,6,'craft\\elements\\Entry',1,0,'2022-11-16 22:13:39','2022-11-16 22:13:39',NULL,NULL,'455e487f-9392-45b1-88bf-2a0852022bbd'),(142962,142901,NULL,123809,6,'craft\\elements\\Entry',1,0,'2022-11-16 22:15:23','2022-11-16 22:15:23',NULL,NULL,'7047c3a1-a16b-4f79-9241-0f524c287115'),(142964,142258,NULL,123810,6,'craft\\elements\\Entry',1,0,'2022-11-16 22:16:13','2022-11-16 22:16:13',NULL,NULL,'bb397af0-f65a-4081-8151-b9b68e29ccfe'),(142966,142676,NULL,123811,6,'craft\\elements\\Entry',1,0,'2022-11-16 22:16:43','2022-11-16 22:16:43',NULL,NULL,'c3fd9765-96e2-4c22-97bf-8194286e5c0f'),(142967,141925,NULL,123812,6,'craft\\elements\\Entry',1,0,'2022-11-16 22:16:58','2022-11-16 22:16:59',NULL,NULL,'be597637-3e5e-4d6d-8286-848a52469719'),(142968,141725,NULL,123813,6,'craft\\elements\\Entry',1,0,'2022-11-16 22:17:08','2022-11-16 22:17:08',NULL,NULL,'f36713db-b88a-4840-bc5c-bd6d785ed776'),(142970,142251,NULL,123814,6,'craft\\elements\\Entry',0,0,'2022-11-16 22:17:35','2022-11-16 22:17:35',NULL,NULL,'db850aed-f596-4552-be53-1a5df7349f3f'),(142972,142833,NULL,123815,6,'craft\\elements\\Entry',0,0,'2022-11-16 22:18:05','2022-11-16 22:18:05',NULL,NULL,'c8e44758-1de2-4e78-bf3d-36072ea1a460'),(142973,142901,NULL,123816,6,'craft\\elements\\Entry',1,0,'2022-11-16 22:18:54','2022-11-16 22:18:54',NULL,NULL,'f554d372-b691-47c3-9a79-a7c24bf17941'),(142974,141533,NULL,123817,12,'craft\\elements\\Entry',1,0,'2022-11-16 22:27:09','2022-11-16 22:27:09',NULL,NULL,'ac90aede-7c49-470c-9ebf-0335e3a5a779'),(142976,141533,NULL,123818,12,'craft\\elements\\Entry',1,0,'2022-11-16 22:27:43','2022-11-16 22:27:43',NULL,NULL,'3e79b80e-ecc3-4f74-ad7e-2cca4a6701b9'),(142977,142676,1284,NULL,6,'craft\\elements\\Entry',1,0,'2022-11-16 23:52:10','2022-11-17 00:09:19',NULL,NULL,'d82705ac-0999-4cbd-b7f9-7123135d7a0d'),(142978,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-11-17 00:06:38','2022-11-17 00:06:38',NULL,NULL,'b6cdba12-a3ed-4458-9729-7b6d2ebc139b'),(142979,142875,NULL,123819,6,'craft\\elements\\Entry',1,0,'2022-11-17 00:07:32','2022-11-17 00:07:32',NULL,NULL,'d886a3f2-b164-4ab8-b345-4b567a8d3903'),(142982,142875,NULL,123820,6,'craft\\elements\\Entry',1,0,'2022-11-17 00:10:40','2022-11-17 00:10:40',NULL,NULL,'f43f9a37-3bfd-4b9c-9347-ce71df7e15fc'),(142984,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-11-17 00:13:52','2022-11-17 00:13:52',NULL,NULL,'aff59d7c-48de-494d-8090-8eebda41739c'),(142985,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-11-17 00:15:33','2022-11-17 00:15:33',NULL,NULL,'6d42c569-3e5e-462b-94b9-ee4a92822917'),(142986,48011,NULL,123821,12,'craft\\elements\\Entry',1,0,'2022-11-17 00:15:42','2022-11-17 00:15:43',NULL,NULL,'78315247-ae06-4585-9d43-65fbe34e3c2a'),(142987,48011,1288,NULL,12,'craft\\elements\\Entry',1,0,'2022-11-17 00:15:49','2022-11-17 00:15:50',NULL,NULL,'469f82ee-235c-4def-afbb-050d989fe658'),(142989,48011,NULL,123822,12,'craft\\elements\\Entry',1,0,'2022-11-17 00:21:53','2022-11-17 00:21:53',NULL,NULL,'fa3b8b70-5f44-4b60-961f-5e21fe1c4f93'),(142990,142875,NULL,123823,6,'craft\\elements\\Entry',1,0,'2022-11-17 04:05:50','2022-11-17 04:05:50',NULL,NULL,'a30e5f8d-3786-4f00-81aa-72aab94e7267'),(142992,142875,NULL,123824,6,'craft\\elements\\Entry',1,0,'2022-11-17 05:54:20','2022-11-17 05:54:20',NULL,NULL,'9a8d1f33-2b6d-4aa8-9d7c-3d1344ed0ca5'),(142994,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-11-18 05:51:41','2022-11-18 05:51:41',NULL,NULL,'8f7f648f-57ec-4146-93bb-c1b0ffd56972'),(142995,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-11-18 05:52:02','2022-11-18 05:52:02',NULL,NULL,'a10455c0-b6b4-4783-83a8-309edfe5f5fa'),(142996,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-11-18 05:52:14','2022-11-18 05:52:14',NULL,NULL,'5bf2976e-391b-4433-bcbc-ea1b9c5db3c5'),(143000,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-11-18 06:01:53','2022-11-18 06:01:53',NULL,NULL,'fa8ca1ef-d557-4fbd-855c-25fa019fce4b'),(143001,142901,NULL,123825,6,'craft\\elements\\Entry',1,0,'2022-11-18 06:02:24','2022-11-18 06:02:24',NULL,NULL,'7a0c5b1e-5e26-4159-9c6d-8582ab537ebb'),(143003,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-11-18 06:03:13','2022-11-18 06:03:13',NULL,NULL,'00c7abd8-c211-4a0e-a086-87a9010db1cf'),(143004,142901,NULL,123826,6,'craft\\elements\\Entry',1,0,'2022-11-18 06:03:52','2022-11-18 06:03:52',NULL,NULL,'0de80e0e-636d-4075-b0d2-c7c62c4eb8a1'),(143005,142875,1293,NULL,6,'craft\\elements\\Entry',1,0,'2022-11-18 06:43:09','2022-11-18 06:43:10',NULL,NULL,'6718cf81-da75-4e81-9664-552f84a94c4d'),(143007,142901,NULL,123827,6,'craft\\elements\\Entry',1,0,'2022-11-22 21:32:43','2022-11-22 21:32:43',NULL,NULL,'300ddd56-3f18-499a-b14b-71fba5b182c5'),(143009,142901,NULL,123828,6,'craft\\elements\\Entry',1,0,'2022-11-22 21:32:49','2022-11-22 21:32:49',NULL,NULL,'9f30da60-fe67-466e-9502-80d820b79c5b'),(143011,142875,NULL,123829,6,'craft\\elements\\Entry',1,0,'2022-11-22 21:37:02','2022-11-22 21:37:02',NULL,NULL,'52a88b91-0f51-4662-9936-b751f7a2dae2'),(143013,142875,NULL,123830,6,'craft\\elements\\Entry',1,0,'2022-11-22 21:38:15','2022-11-22 21:38:15',NULL,NULL,'0231786e-855c-4bf8-acfb-54d64b261b77'),(143015,141533,NULL,123831,12,'craft\\elements\\Entry',1,0,'2022-11-22 21:40:46','2022-11-22 21:40:46',NULL,NULL,'ab9c4176-37d3-4758-a7ef-aef47c03de6b'),(143017,40504,1300,NULL,6,'craft\\elements\\Entry',1,0,'2022-11-25 04:38:45','2022-11-25 04:38:47',NULL,NULL,'f35c2a1a-da91-477d-a406-81b600cb6cf8'),(143018,141725,1301,NULL,6,'craft\\elements\\Entry',1,0,'2022-11-25 04:39:02','2022-11-25 04:39:03',NULL,NULL,'b49131af-3015-48fb-8113-ec1206098dfc'),(143020,142847,NULL,123832,12,'craft\\elements\\Entry',1,0,'2022-11-25 05:02:43','2022-11-25 05:02:43',NULL,NULL,'0f5e49ba-a51d-4d9b-9ecd-688905900574'),(143021,NULL,NULL,NULL,62,'craft\\elements\\Entry',1,0,'2022-11-25 05:10:48','2022-12-01 07:05:22',NULL,NULL,'d04804fb-6896-4020-94b1-f2c859347982'),(143022,87608,1304,NULL,62,'craft\\elements\\Entry',1,0,'2022-11-25 05:13:44','2022-11-25 06:29:05',NULL,NULL,'586bd042-a211-4546-9a77-fd064d6ceac5'),(143023,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-11-25 05:29:49','2022-11-25 05:33:34',NULL,NULL,'6fa25b24-b158-438a-8a39-0df9505671ba'),(143026,142875,NULL,123833,6,'craft\\elements\\Entry',1,0,'2022-11-25 05:54:23','2022-11-25 05:54:23',NULL,NULL,'1cbef8f5-3201-480d-b1cc-7aa0480b99a4'),(143028,17678,NULL,123834,12,'craft\\elements\\Entry',1,0,'2022-11-28 23:23:03','2022-11-28 23:23:03',NULL,NULL,'76cc4a63-79e2-49ef-baa8-0dc74726d58a'),(143029,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-11-29 03:31:52','2022-11-29 03:31:52',NULL,NULL,'11008641-2bde-4e18-bae5-b5274ffee67a'),(143031,20379,NULL,123835,23,'craft\\elements\\Entry',1,0,'2022-12-01 04:26:31','2022-12-01 04:26:31',NULL,NULL,'f2c24d94-6f92-4270-82b9-be5f651c67c8'),(143032,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-12-01 06:18:48','2022-12-01 06:18:48',NULL,NULL,'ce043396-0c41-4e14-a030-308cf0a5df9a'),(143033,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-12-01 06:18:52','2022-12-01 06:18:52',NULL,NULL,'4d195ad1-a1ca-4fd4-a2f6-80442688e00f'),(143034,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-12-01 06:18:57','2022-12-01 06:18:57',NULL,NULL,'3f61ea96-b376-43bb-9017-98ac589798ad'),(143035,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-12-01 06:19:01','2022-12-01 06:19:01',NULL,NULL,'f5c1ab83-4cd2-4163-8f6d-664833542b25'),(143036,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-12-01 06:19:05','2022-12-01 06:19:05',NULL,NULL,'7f6b1fec-6474-48d1-86db-1ae9c11bb338'),(143037,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-12-01 06:19:11','2022-12-01 06:19:11',NULL,NULL,'9ee8e640-e02d-4034-939f-2daa176a1fe5'),(143038,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-12-01 06:19:18','2022-12-01 06:19:18',NULL,NULL,'af335b43-2e42-4222-abb6-1bb6c10a28a7'),(143039,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-12-01 06:19:23','2022-12-01 06:19:23',NULL,NULL,'17bff8a4-d6ed-4f11-acf5-c96d3522bca8'),(143040,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-12-01 06:19:28','2022-12-01 06:19:28',NULL,NULL,'ef24dbb3-1b1f-4007-8f6a-52cfe3847b51'),(143041,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-12-01 06:57:38','2022-12-01 06:58:11',NULL,NULL,'e2790f7f-0f90-405b-af73-aeaa065a0a20'),(143042,143021,NULL,123836,62,'craft\\elements\\Entry',1,0,'2022-12-01 06:59:16','2022-12-01 06:59:16',NULL,NULL,'fddc3e59-9c8d-4568-92b8-aca7a657eece'),(143044,143021,NULL,123837,62,'craft\\elements\\Entry',1,0,'2022-12-01 06:59:56','2022-12-01 06:59:56',NULL,NULL,'079b3c06-d284-4440-beb9-8f2177f17be6'),(143046,143021,NULL,123838,62,'craft\\elements\\Entry',1,0,'2022-12-01 07:04:19','2022-12-01 07:04:19',NULL,NULL,'c28d2d84-45e6-4c45-ad68-2326ac40a3d2'),(143048,143021,NULL,123839,62,'craft\\elements\\Entry',1,0,'2022-12-01 07:05:06','2022-12-01 07:05:06',NULL,NULL,'1968907b-148b-4acb-9843-6e0a5f0576ad'),(143050,143021,NULL,123840,62,'craft\\elements\\Entry',1,0,'2022-12-01 07:05:22','2022-12-01 07:05:22',NULL,NULL,'c85d48b4-2454-4f4a-aef7-bd52ae5d9c73'),(143051,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2022-12-01 07:12:41','2022-12-01 07:12:41',NULL,NULL,'1a88d62d-f6e5-4362-8ba0-d84676eaf3b9'),(143053,74276,NULL,123841,60,'craft\\elements\\Entry',1,0,'2022-12-01 07:14:27','2022-12-01 07:14:27',NULL,NULL,'5ca52348-91d8-4878-9b3b-cab900b4c9e8'),(143055,74276,NULL,123842,60,'craft\\elements\\Entry',1,0,'2022-12-01 07:16:43','2022-12-01 07:16:43',NULL,NULL,'7c00a8d6-484e-4b0e-9f57-1bd058bbc0dc'),(143057,141725,1315,NULL,6,'craft\\elements\\Entry',1,0,'2022-12-20 00:34:43','2022-12-20 00:34:44',NULL,NULL,'83ddc881-3de2-4ca4-9a70-9507d16ad287'),(143058,NULL,1316,NULL,62,'craft\\elements\\Entry',1,0,'2023-01-09 02:21:56','2023-01-09 02:21:56',NULL,NULL,'1656eb3f-2fbb-4aa8-bd51-8e0b61b5e4ab'),(143059,NULL,1317,NULL,62,'craft\\elements\\Entry',1,0,'2023-01-09 02:22:44','2023-01-09 02:22:44',NULL,NULL,'ebccce8f-87eb-4e62-b8e0-2fddb4bd6182'),(143060,NULL,NULL,NULL,62,'craft\\elements\\Entry',0,0,'2023-01-09 02:24:52','2023-01-09 02:40:26',NULL,NULL,'a43b94ad-f077-497b-9e61-d3c3538be170'),(143061,143060,NULL,123843,62,'craft\\elements\\Entry',1,0,'2023-01-09 02:25:41','2023-01-09 02:25:41',NULL,NULL,'dbc23d6c-c19a-4344-8e4c-5973df659f91'),(143063,143060,NULL,123844,62,'craft\\elements\\Entry',1,0,'2023-01-09 02:26:02','2023-01-09 02:26:02',NULL,NULL,'1fdd3b1c-cef9-4b67-b9cd-78ca37184bac'),(143065,143060,NULL,123845,62,'craft\\elements\\Entry',1,0,'2023-01-09 02:27:17','2023-01-09 02:27:17',NULL,NULL,'0ede46dc-eb7c-4f18-82dd-260ad93f7dca'),(143066,143060,1321,NULL,62,'craft\\elements\\Entry',1,0,'2023-01-09 02:28:01','2023-01-09 02:28:03',NULL,NULL,'995d40d7-e564-4901-a016-95698fbf355a'),(143067,143060,NULL,123846,62,'craft\\elements\\Entry',0,0,'2023-01-09 02:40:26','2023-01-09 02:40:26',NULL,NULL,'72b9bf7c-ce15-4bcd-b150-080d4e1f8aff'),(143068,74162,1322,NULL,56,'craft\\elements\\Entry',1,0,'2023-01-09 06:57:16','2023-01-09 06:57:17',NULL,NULL,'4585c0db-9b18-4e8f-834d-3b8483caf77e'),(143069,NULL,NULL,NULL,70,'craft\\elements\\Entry',1,0,'2023-01-10 00:12:41','2023-01-10 00:58:08',NULL,NULL,'d9ac8a86-2dda-4125-ac57-0a77458715f7'),(143070,143069,NULL,123847,70,'craft\\elements\\Entry',1,0,'2023-01-10 00:12:41','2023-01-10 00:12:41',NULL,NULL,'c805d0a5-2fbf-4577-ac03-4576b23cddaf'),(143071,143069,NULL,123848,70,'craft\\elements\\Entry',1,0,'2023-01-10 00:12:41','2023-01-10 00:12:41',NULL,NULL,'6dd8ba7d-1558-4e3c-89dd-a2b1f08b9c6c'),(143072,143069,NULL,123849,70,'craft\\elements\\Entry',1,0,'2023-01-10 00:13:07','2023-01-10 00:13:07',NULL,NULL,'b4244ece-d0a5-41ed-a29a-16beb73a9143'),(143074,143069,NULL,123850,70,'craft\\elements\\Entry',1,0,'2023-01-10 00:14:18','2023-01-10 00:14:18',NULL,NULL,'2d1b5830-47d3-47c4-a62f-3c813c57fa61'),(143076,143069,NULL,123851,70,'craft\\elements\\Entry',1,0,'2023-01-10 00:57:18','2023-01-10 00:57:18',NULL,NULL,'51ae5296-a02b-465c-b113-f356a01fe08a'),(143077,143069,NULL,123852,70,'craft\\elements\\Entry',1,0,'2023-01-10 00:58:08','2023-01-10 00:58:08',NULL,NULL,'29675d67-af1e-4e88-a7e4-f9a3aa62c35b'),(143078,NULL,1325,NULL,62,'craft\\elements\\Entry',1,0,'2023-02-27 01:58:43','2023-02-27 01:58:43',NULL,NULL,'db96027c-eef4-4c7f-9647-864df70d11a4'),(143079,NULL,1326,NULL,62,'craft\\elements\\Entry',1,0,'2023-02-27 01:58:53','2023-02-27 01:58:53',NULL,NULL,'edf57ab7-958d-4479-b087-bae4fe2554aa'),(143080,NULL,NULL,NULL,62,'craft\\elements\\Entry',1,0,'2023-02-27 01:59:10','2023-03-01 03:27:04',NULL,NULL,'41936490-2d0a-4367-a08c-8a12fe8752d1'),(143081,143080,NULL,123853,62,'craft\\elements\\Entry',1,0,'2023-02-27 02:02:01','2023-02-27 02:02:01',NULL,NULL,'b782cb80-218a-48c7-bb53-ceeaa33d4c70'),(143083,143080,NULL,123854,62,'craft\\elements\\Entry',1,0,'2023-02-27 02:16:38','2023-02-27 02:16:38',NULL,NULL,'2b5e8ca5-ac34-44b5-a86e-6baf479f103a'),(143085,143080,NULL,123855,62,'craft\\elements\\Entry',1,0,'2023-02-27 02:29:07','2023-02-27 02:29:07',NULL,NULL,'d7a45ef7-6b76-4ac0-b1a1-982a8f6dc741'),(143087,143080,NULL,123856,62,'craft\\elements\\Entry',1,0,'2023-02-28 07:09:22','2023-02-28 07:09:22',NULL,NULL,'af2f39fb-9aa6-40a5-9ae6-7af2b5f90050'),(143089,143080,NULL,123857,62,'craft\\elements\\Entry',1,0,'2023-03-01 01:09:36','2023-03-01 01:09:36',NULL,NULL,'6a952935-a927-4f78-aeed-8cc76420bbc6'),(143091,143080,NULL,123858,62,'craft\\elements\\Entry',1,0,'2023-03-01 01:10:04','2023-03-01 01:10:04',NULL,NULL,'8a9df8a5-26af-4f55-a220-a735f7357d27'),(143093,143080,NULL,123859,62,'craft\\elements\\Entry',1,0,'2023-03-01 02:12:25','2023-03-01 02:12:25',NULL,NULL,'c434b15d-4063-4a15-8916-2caad622ad59'),(143094,143060,1334,NULL,62,'craft\\elements\\Entry',0,0,'2023-03-01 02:21:19','2023-03-01 02:21:20',NULL,NULL,'8a44ac31-467a-4a66-8fe6-62966e77e61d'),(143096,143080,NULL,123860,62,'craft\\elements\\Entry',1,0,'2023-03-01 02:25:58','2023-03-01 02:25:58',NULL,NULL,'8375d74e-b5fe-4e39-a9c9-1dba54268ffa'),(143098,143080,NULL,123861,62,'craft\\elements\\Entry',1,0,'2023-03-01 02:26:34','2023-03-01 02:26:34',NULL,NULL,'714dcfb9-1d35-4a6f-988f-a30840ae572a'),(143099,143080,NULL,123862,62,'craft\\elements\\Entry',1,0,'2023-03-01 03:27:04','2023-03-01 03:27:04',NULL,NULL,'c4030c96-54c8-47c7-acd8-7da099821c45'),(143100,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2023-03-06 01:40:25','2023-03-06 01:40:29',NULL,NULL,'14c9421e-cafa-4892-b831-d7e487a2cdca'),(143101,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2023-03-06 01:45:54','2023-03-06 01:46:12',NULL,NULL,'9c2fe2cf-3881-416e-9320-3b229333b499'),(143102,NULL,NULL,NULL,NULL,'Solspace\\Freeform\\Elements\\Submission',1,0,'2023-03-09 00:16:52','2023-03-09 00:16:52',NULL,NULL,'4a360605-2c5d-4eae-afe8-5ed6164ffaf0'),(143103,140246,1337,NULL,68,'craft\\elements\\Entry',1,0,'2023-03-09 03:19:26','2023-03-09 03:29:02',NULL,NULL,'237c6942-004b-4cc8-878a-98c4bb3f9166'),(143104,143021,1338,NULL,62,'craft\\elements\\Entry',1,0,'2023-03-09 03:22:02','2023-03-09 03:31:12',NULL,NULL,'cfc50083-0696-4fe9-9628-a0798f884d94'),(143105,142875,1339,NULL,6,'craft\\elements\\Entry',1,0,'2023-03-09 03:22:09','2023-03-09 03:31:20',NULL,NULL,'037348c3-ab08-4e71-aef7-65ae8b231711'),(143106,142901,1340,NULL,6,'craft\\elements\\Entry',1,0,'2023-03-09 03:22:20','2023-03-09 03:31:24',NULL,NULL,'dc1e5a03-1985-490a-8cdc-62439247619d'),(143107,142258,1341,NULL,6,'craft\\elements\\Entry',1,0,'2023-03-09 03:22:33','2023-03-09 03:31:29',NULL,NULL,'8ba08be3-6b7b-4a8f-8da5-2d137e8c66c4'),(143108,48011,1342,NULL,12,'craft\\elements\\Entry',1,0,'2023-03-09 03:22:48','2023-03-09 03:30:18',NULL,NULL,'40dbb6be-c730-456b-8727-7aa6d1b820cd'),(143109,141533,1343,NULL,12,'craft\\elements\\Entry',1,0,'2023-03-09 03:30:21','2023-03-09 03:30:21',NULL,NULL,'359c2e65-b83c-4912-8c25-430f8ef3fb6a'),(143110,87608,1344,NULL,62,'craft\\elements\\Entry',1,0,'2023-03-09 03:31:15','2023-03-09 03:31:16',NULL,NULL,'25bdb3ea-578c-4bc6-9ae4-8161f9c72f0a'),(143111,142676,1345,NULL,6,'craft\\elements\\Entry',1,0,'2023-03-09 03:31:31','2023-03-09 03:31:32',NULL,NULL,'438b0d8a-25f2-40bc-99e0-cb0640896a02'),(143112,141925,1346,NULL,6,'craft\\elements\\Entry',1,0,'2023-03-09 03:31:38','2023-03-09 03:31:39',NULL,NULL,'8ed3b8e4-4831-4233-a4e6-4d9d1f8c145e'),(143113,141725,1347,NULL,6,'craft\\elements\\Entry',1,0,'2023-03-09 03:31:42','2023-03-09 03:31:43',NULL,NULL,'06458e6f-f361-4368-9e2b-7b51fbcfe47c'),(143114,141493,1348,NULL,6,'craft\\elements\\Entry',1,0,'2023-03-09 03:31:44','2023-03-09 03:31:45',NULL,NULL,'119388fb-6891-41f4-89ca-ad0d99a7a82d'),(143115,18139,1349,NULL,6,'craft\\elements\\Entry',1,0,'2023-03-09 03:31:46','2023-03-09 03:31:47',NULL,NULL,'7a3bf9f5-a0e4-45c1-8dc1-346a6fe7051b'),(143116,140060,1350,NULL,6,'craft\\elements\\Entry',1,0,'2023-03-09 03:31:50','2023-03-09 03:31:51',NULL,NULL,'2db0e0da-49a9-4f88-9c26-9196d54bf874'),(143117,140013,1351,NULL,6,'craft\\elements\\Entry',1,0,'2023-03-09 03:31:54','2023-03-09 03:31:54',NULL,NULL,'234fd8a3-e0b2-4ac4-8e59-18ae158afc27'),(143119,NULL,NULL,NULL,NULL,'Solspace\\Freeform\\Elements\\Submission',1,0,'2023-03-09 09:15:21','2023-03-09 09:15:21',NULL,NULL,'8b9cfc45-0a83-4cbe-98c7-be64accfc6f5'),(143120,NULL,NULL,NULL,NULL,'Solspace\\Freeform\\Elements\\Submission',1,0,'2023-03-09 11:16:11','2023-03-09 11:16:11',NULL,NULL,'7949eda2-45a2-4572-a5f9-b2ad9fad47a9'),(143121,NULL,NULL,NULL,NULL,'Solspace\\Freeform\\Elements\\Submission',1,0,'2023-03-09 11:17:50','2023-03-09 11:17:50',NULL,NULL,'16e40577-c5ed-413f-a085-75ef12c71d4c'),(143122,NULL,NULL,NULL,NULL,'Solspace\\Freeform\\Elements\\Submission',1,0,'2023-03-09 11:19:49','2023-03-09 11:19:49',NULL,NULL,'ef8dfcae-6d45-4de7-9ab8-ae898ea04995'),(143123,NULL,NULL,NULL,NULL,'Solspace\\Freeform\\Elements\\Submission',1,0,'2023-03-09 11:21:30','2023-03-09 11:21:30',NULL,NULL,'f5326297-70e1-40be-8b47-b2a3cc7edb16'),(143124,20379,NULL,123863,23,'craft\\elements\\Entry',1,0,'2023-03-10 00:11:53','2023-03-10 00:11:53',NULL,NULL,'03ce3809-d110-46d7-8913-51d72eb4e70f'),(143126,20379,NULL,123864,23,'craft\\elements\\Entry',1,0,'2023-03-10 00:13:08','2023-03-10 00:13:08',NULL,NULL,'174cfb49-5537-46fc-a3d3-bbafa00a4f9c'),(143127,143080,1354,NULL,62,'craft\\elements\\Entry',1,0,'2023-03-10 00:19:16','2023-03-10 00:19:17',NULL,NULL,'dd0708f6-1d96-487a-9f10-7acf1acbe6f8'),(143128,20379,1355,NULL,23,'craft\\elements\\Entry',1,0,'2023-03-10 00:39:26','2023-03-10 00:39:27',NULL,NULL,'fecc8e71-fdb7-4c6f-8553-0691bf37c7eb'),(143129,20379,NULL,123865,23,'craft\\elements\\Entry',1,0,'2023-03-10 01:36:37','2023-03-10 01:36:37',NULL,NULL,'d9fd201f-da65-4e21-811e-a9781912ef7e'),(143130,21297,NULL,123866,34,'craft\\elements\\Entry',1,0,'2023-03-15 04:25:53','2023-03-15 04:25:53',NULL,NULL,'26ee1d11-e0f0-45ac-91bc-3d7536caa034'),(143131,NULL,NULL,NULL,NULL,'Solspace\\Freeform\\Elements\\Submission',1,0,'2023-03-15 06:13:00','2023-03-15 06:13:00',NULL,NULL,'67b55774-c16b-4324-9c77-3856902f3d21'),(143133,141533,NULL,123867,12,'craft\\elements\\Entry',1,0,'2023-03-27 06:15:11','2023-03-27 06:15:11',NULL,NULL,'d8ce27e8-f357-4630-a4e8-d9c2b7120bc3'),(143135,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2023-03-28 06:35:12','2023-03-28 06:35:12',NULL,NULL,'a182a96a-d366-49a7-927c-a974644a9c8b'),(143136,141533,NULL,123868,12,'craft\\elements\\Entry',1,0,'2023-03-28 06:35:25','2023-03-28 06:35:25',NULL,NULL,'0c599cdf-f62b-4ce4-91a7-fd8a9c30344e'),(143138,141533,NULL,123869,12,'craft\\elements\\Entry',1,0,'2023-03-28 06:37:02','2023-03-28 06:37:02',NULL,NULL,'f08686c3-3f89-41ff-937d-1c2a41bb1ed3'),(143139,NULL,NULL,NULL,12,'craft\\elements\\Entry',1,0,'2023-03-29 03:42:34','2023-03-31 03:59:36',NULL,NULL,'da685245-0bfe-417c-8988-3b017b71c1a6'),(143140,143139,NULL,123870,12,'craft\\elements\\Entry',0,0,'2023-03-29 03:44:42','2023-03-29 03:44:42',NULL,NULL,'d09126f8-002b-4746-a2ed-99def1ae531f'),(143143,143139,NULL,123871,12,'craft\\elements\\Entry',0,0,'2023-03-29 03:50:34','2023-03-29 03:50:34',NULL,NULL,'12ee9620-64e3-42be-865b-ee17e97d8524'),(143145,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2023-03-29 03:53:49','2023-03-29 03:53:49',NULL,NULL,'bfc9d5b6-9ad8-47cc-8892-933476ada283'),(143146,143139,NULL,123872,12,'craft\\elements\\Entry',0,0,'2023-03-29 03:54:12','2023-03-29 03:54:12',NULL,NULL,'3b7fe160-55e3-45d1-9a58-3c71c0cf65af'),(143148,143139,NULL,123873,12,'craft\\elements\\Entry',0,0,'2023-03-29 03:54:44','2023-03-29 03:54:44',NULL,NULL,'a2be9ffa-dcfb-4a9e-b779-661983075a73'),(143150,143139,NULL,123874,12,'craft\\elements\\Entry',0,0,'2023-03-29 03:55:34','2023-03-29 03:55:34',NULL,NULL,'bc612d8b-0d44-411f-92ad-dd02e1717db9'),(143152,141533,NULL,123875,12,'craft\\elements\\Entry',1,0,'2023-03-29 21:39:04','2023-03-29 21:39:04',NULL,NULL,'acd6ffcd-f5d2-4641-bde7-77513294ae83'),(143153,NULL,NULL,NULL,6,'craft\\elements\\Entry',1,0,'2023-03-30 06:24:07','2023-03-30 06:24:07',NULL,NULL,'8f7aec0d-9158-4ba7-84ca-61392af747da'),(143154,143153,NULL,123876,6,'craft\\elements\\Entry',1,0,'2023-03-30 06:24:07','2023-03-30 06:24:08',NULL,NULL,'8f377279-0dce-4d59-ab70-0b137bfe12df'),(143156,142875,NULL,123877,6,'craft\\elements\\Entry',0,0,'2023-03-30 06:26:19','2023-03-30 06:26:19',NULL,NULL,'a8e80331-91f1-47eb-84ea-d71bfe894c94'),(143159,142875,NULL,123878,6,'craft\\elements\\Entry',0,0,'2023-03-30 23:05:47','2023-03-30 23:05:47',NULL,NULL,'195c7c9c-0634-411a-ab24-d8b4272a3e6d'),(143161,143139,NULL,123879,12,'craft\\elements\\Entry',0,0,'2023-03-30 23:07:15','2023-03-30 23:07:15',NULL,NULL,'66b90393-c2f2-4234-9046-c93fd50e3232'),(143162,141533,NULL,123880,12,'craft\\elements\\Entry',1,0,'2023-03-30 23:07:38','2023-03-30 23:07:38',NULL,NULL,'99fc5ec6-af00-4633-92de-afdd1021ae7a'),(143164,141533,NULL,123881,12,'craft\\elements\\Entry',1,0,'2023-03-30 23:08:01','2023-03-30 23:08:01',NULL,NULL,'e823a7ae-8322-45ea-bb6a-a605aab03e01'),(143166,142875,NULL,123882,6,'craft\\elements\\Entry',0,0,'2023-03-30 23:09:32','2023-03-30 23:09:32',NULL,NULL,'7ff5153c-8026-44dc-b1e2-68444732850e'),(143167,142901,NULL,123883,6,'craft\\elements\\Entry',1,0,'2023-03-30 23:09:41','2023-03-30 23:09:41',NULL,NULL,'d5c3ee07-8e44-461c-98d9-80c84f1bb3c6'),(143168,142258,NULL,123884,6,'craft\\elements\\Entry',1,0,'2023-03-30 23:09:50','2023-03-30 23:09:50',NULL,NULL,'135de0ed-02d6-4e8a-9776-7c3146b570b1'),(143169,142251,NULL,123885,6,'craft\\elements\\Entry',0,0,'2023-03-30 23:09:59','2023-03-30 23:09:59',NULL,NULL,'153791b6-5fa7-46b7-9f53-bf1225bcebed'),(143170,142833,NULL,123886,6,'craft\\elements\\Entry',0,0,'2023-03-30 23:10:06','2023-03-30 23:10:06',NULL,NULL,'f90523d3-29e0-4353-99c8-7f4ca9dfd1d3'),(143172,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2023-03-31 00:57:08','2023-03-31 00:57:08',NULL,NULL,'0cfa3fd9-a1df-4633-84e7-b1bd0431ac1e'),(143173,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2023-03-31 00:57:25','2023-03-31 00:57:25',NULL,NULL,'75540c52-e750-43eb-bca2-82fe45fe5a16'),(143174,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2023-03-31 00:57:32','2023-03-31 00:57:32',NULL,NULL,'5e87ac1c-55da-4c70-99dc-ed53a99ec0c7'),(143175,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2023-03-31 00:57:46','2023-03-31 00:57:46',NULL,NULL,'db9c59c4-cb62-40e0-b5f8-00cb336a9a15'),(143176,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2023-03-31 00:57:58','2023-03-31 00:57:58',NULL,NULL,'7b07fd84-dcfa-47be-81e9-0650649653d7'),(143177,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2023-03-31 00:58:15','2023-03-31 00:58:15',NULL,NULL,'8c5e77a6-921d-45d0-8460-79c2e078809d'),(143178,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2023-03-31 00:58:33','2023-03-31 00:58:33',NULL,NULL,'16b5d835-125c-4652-8323-5148af3d1284'),(143179,142875,NULL,123887,6,'craft\\elements\\Entry',0,0,'2023-03-31 01:01:04','2023-03-31 01:01:04',NULL,NULL,'42463211-89bc-45ab-9729-097b2ba7c268'),(143181,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2023-03-31 01:03:20','2023-03-31 01:03:20',NULL,NULL,'849674a4-a945-42d1-bdbd-83d6920b5e1c'),(143182,142875,NULL,123888,6,'craft\\elements\\Entry',0,0,'2023-03-31 01:04:25','2023-03-31 01:04:25',NULL,NULL,'5ae56043-4db2-4a68-a327-1df01bbdcf0d'),(143184,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2023-03-31 01:05:51','2023-03-31 01:05:51',NULL,NULL,'4f64ad31-fc52-46aa-827f-f265a217070a'),(143185,142875,NULL,123889,6,'craft\\elements\\Entry',0,0,'2023-03-31 01:06:07','2023-03-31 01:06:07',NULL,NULL,'9f0ec99f-e099-4907-9b9f-ce093d347162'),(143187,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2023-03-31 01:07:06','2023-03-31 01:07:06',NULL,NULL,'79d31ea5-a4fc-4525-bd98-5e5cbbfadb95'),(143188,142875,NULL,123890,6,'craft\\elements\\Entry',0,0,'2023-03-31 01:07:20','2023-03-31 01:07:20',NULL,NULL,'393593c7-8683-4ada-8399-7c1f2628162d'),(143190,NULL,NULL,NULL,10,'craft\\elements\\Asset',1,0,'2023-03-31 01:12:41','2023-03-31 01:12:41',NULL,NULL,'608d7a97-856d-47b3-8215-da998669f3e8'),(143191,142875,NULL,123891,6,'craft\\elements\\Entry',0,0,'2023-03-31 01:12:51','2023-03-31 01:12:51',NULL,NULL,'1ed3383d-35bc-4fc0-8787-c701d428c0b3'),(143193,142875,NULL,123892,6,'craft\\elements\\Entry',0,0,'2023-03-31 01:15:50','2023-03-31 01:15:50',NULL,NULL,'a6074258-37f7-41c1-8631-52de3e447ce5'),(143195,142875,NULL,123893,6,'craft\\elements\\Entry',0,0,'2023-03-31 01:21:14','2023-03-31 01:21:14',NULL,NULL,'bb0bc779-02cc-4a5a-9018-243212fe1b3c'),(143197,142875,NULL,123894,6,'craft\\elements\\Entry',0,0,'2023-03-31 01:21:57','2023-03-31 01:21:57',NULL,NULL,'40e5a3e2-4ba0-4978-b7a2-5b4253129ec2'),(143199,142875,NULL,123895,6,'craft\\elements\\Entry',1,0,'2023-03-31 01:26:04','2023-03-31 01:26:04',NULL,NULL,'77c3bc96-2da2-4f2c-a1b7-ffd3424cbcad'),(143201,143139,NULL,123896,12,'craft\\elements\\Entry',1,0,'2023-03-31 01:26:43','2023-03-31 01:26:43',NULL,NULL,'a0cbea4d-5881-4c0a-b84e-8df47d85d9b8'),(143203,142875,NULL,123897,6,'craft\\elements\\Entry',1,0,'2023-03-31 02:13:32','2023-03-31 02:13:32',NULL,NULL,'3028b3e9-dde9-4e44-a535-5e607d44c74f'),(143205,143139,NULL,123898,12,'craft\\elements\\Entry',1,0,'2023-03-31 02:15:00','2023-03-31 02:15:01',NULL,NULL,'ce1012c5-3517-4658-ab5e-ee6486f1515e'),(143207,143139,NULL,123899,12,'craft\\elements\\Entry',1,0,'2023-03-31 03:39:21','2023-03-31 03:39:21',NULL,NULL,'b76dacd6-37a5-41a1-8b30-b1ac28664124'),(143209,143139,NULL,123900,12,'craft\\elements\\Entry',1,0,'2023-03-31 03:40:13','2023-03-31 03:40:13',NULL,NULL,'28eb1efc-5e5a-40de-90a7-7e90f3d91b82'),(143211,143139,NULL,123901,12,'craft\\elements\\Entry',1,0,'2023-03-31 03:40:31','2023-03-31 03:40:31',NULL,NULL,'437d067e-70e8-4659-b428-1cd64830ce9f'),(143213,142875,NULL,123902,6,'craft\\elements\\Entry',1,0,'2023-03-31 03:42:53','2023-03-31 03:42:53',NULL,NULL,'74d285e1-a401-4363-b607-30971c6b2da1'),(143215,141533,NULL,123903,12,'craft\\elements\\Entry',1,0,'2023-03-31 03:43:13','2023-03-31 03:43:14',NULL,NULL,'551d9fb8-c5b5-466f-ba44-2e2adb66a723'),(143217,141533,NULL,123904,12,'craft\\elements\\Entry',1,0,'2023-03-31 03:44:09','2023-03-31 03:44:09',NULL,NULL,'a0b81f2b-94a6-42f3-a32d-7d2cbb8c8aa4'),(143219,141533,NULL,123905,12,'craft\\elements\\Entry',1,0,'2023-03-31 03:56:54','2023-03-31 03:56:54',NULL,NULL,'e88d9bb7-19bd-4f74-8fb4-0e759b16da61'),(143221,143139,NULL,123906,12,'craft\\elements\\Entry',1,0,'2023-03-31 03:59:36','2023-03-31 03:59:36',NULL,NULL,'165a14e1-7b8c-4fd8-90c2-a47e15f052bf'),(143222,142847,NULL,123907,12,'craft\\elements\\Entry',1,0,'2023-04-03 01:07:54','2023-04-03 01:07:55',NULL,NULL,'fb57c594-a6bf-4993-a231-4ec5dc20cab3'),(143224,142847,NULL,123908,12,'craft\\elements\\Entry',1,0,'2023-04-03 01:08:12','2023-04-03 01:08:12',NULL,NULL,'98cfbb66-1568-4e63-9924-e7965ee694ea');
/*!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,'2021-03-30 06:11:45','2021-03-30 06:11:45','765ba8d3-3242-475b-b41c-ec8d4715de6e'),(14833,14833,1,NULL,NULL,1,'2021-04-22 23:29:35','2021-04-22 23:29:35','ec512415-4ba7-44c0-991c-5d5caf5a9888'),(16571,16571,1,'revelian','work/revelian',1,'2021-05-14 06:43:31','2021-09-10 02:05:54','4d5968d7-aaba-4add-bbbf-aa000d3c7df2'),(16573,16573,1,'the-big-reveal','work/the-big-reveal',1,'2021-05-14 06:43:31','2021-05-14 06:43:31','9bdfe98a-dd32-4822-832f-f2d3ced6e57e'),(16574,16574,1,NULL,NULL,1,'2021-05-14 06:43:31','2021-05-14 06:43:31','c833fefa-fb4b-4ee3-a16e-02ec15374dc4'),(16578,16578,1,'the-big-reveal','work/the-big-reveal',1,'2021-05-17 05:37:57','2021-05-17 05:37:57','79882125-94fa-4b20-a463-d4b6853a4407'),(16579,16579,1,NULL,NULL,1,'2021-05-17 05:37:57','2021-05-17 05:37:57','a18fa427-10ec-4d62-9e6a-120b4dfb8bad'),(16580,16580,1,'the-big-reveal','work/the-big-reveal',1,'2021-05-17 05:38:01','2021-05-17 05:38:01','147936fd-dbd9-441c-b398-3b82412b55fe'),(16581,16581,1,NULL,NULL,1,'2021-05-17 05:38:01','2021-05-17 05:38:01','9a02702f-dacb-4acd-921e-565143695f69'),(16589,16589,1,'the-big-reveal','work/the-big-reveal',1,'2021-05-17 05:40:22','2021-05-17 05:40:22','2b194570-9a66-4916-91e0-edd19d6282a5'),(16590,16590,1,NULL,NULL,1,'2021-05-17 05:40:22','2021-05-17 05:40:22','1b486b17-242e-49f2-8293-c1dc54c0594c'),(16591,16591,1,NULL,NULL,1,'2021-05-17 05:40:22','2021-05-17 05:40:22','a54c19ec-408d-4957-97b7-88c6723b778e'),(16592,16592,1,'the-big-reveal','work/the-big-reveal',1,'2021-05-17 05:40:26','2021-05-17 05:40:26','fd82defb-ca9b-44a3-86eb-042f0e9b1d04'),(16593,16593,1,NULL,NULL,1,'2021-05-17 05:40:26','2021-05-17 05:40:26','1041a907-ddbe-4ec8-9d49-425d26df52b9'),(16594,16594,1,NULL,NULL,1,'2021-05-17 05:40:26','2021-05-17 05:40:26','ee4ab063-0149-4423-b288-c534bce56674'),(16595,16595,1,'the-big-reveal','work/the-big-reveal',1,'2021-05-17 05:41:16','2021-05-17 05:41:16','223f9c91-916d-4c57-8ed9-775ed810cbc3'),(16596,16596,1,NULL,NULL,1,'2021-05-17 05:41:16','2021-05-17 05:41:16','9faa5228-0aa1-41c7-9d60-d2628055fe30'),(16597,16597,1,NULL,NULL,1,'2021-05-17 05:41:16','2021-05-17 05:41:16','fa9e04de-5b01-4648-a46e-d46dd96b439d'),(16604,16604,1,'the-big-reveal','work/the-big-reveal',1,'2021-05-17 05:42:46','2021-05-17 05:42:46','d39861d8-e1f7-42b3-a5a9-d2a87cf19db6'),(16605,16605,1,NULL,NULL,1,'2021-05-17 05:42:46','2021-05-17 05:42:46','bc694ed9-9d47-4392-a2f5-fd6dbada01c6'),(16606,16606,1,NULL,NULL,1,'2021-05-17 05:42:46','2021-05-17 05:42:46','541eba0a-926c-4f6c-ad68-7d601e352629'),(16607,16607,1,'the-big-reveal','work/the-big-reveal',1,'2021-05-17 05:42:51','2021-05-17 05:42:51','2c06e951-97de-497e-bcd3-548cb87d9a3a'),(16608,16608,1,NULL,NULL,1,'2021-05-17 05:42:51','2021-05-17 05:42:51','20c827ed-670b-49ce-bc48-09e0266f79b1'),(16609,16609,1,NULL,NULL,1,'2021-05-17 05:42:51','2021-05-17 05:42:51','980c6bf8-3ead-48c8-8fe7-c7e0a06815f3'),(16620,16620,1,'the-big-reveal','work/the-big-reveal',1,'2021-05-17 05:47:14','2021-05-17 05:47:14','1dad7260-22f7-442a-8ac6-5dfb6b78ba00'),(16621,16621,1,NULL,NULL,1,'2021-05-17 05:47:14','2021-05-17 05:47:14','1c827e9b-a9d4-451e-b722-62f942e07477'),(16622,16622,1,NULL,NULL,1,'2021-05-17 05:47:14','2021-05-17 05:47:14','f261e58c-dea0-488b-acf8-27351f26a552'),(16623,16623,1,NULL,NULL,1,'2021-05-17 05:47:14','2021-05-17 05:47:14','f1964f73-48fd-4a5c-8cf4-949538dc092d'),(16629,16629,1,NULL,NULL,1,'2021-05-17 06:01:34','2021-05-17 06:01:34','3088175c-de1a-4b3d-8ae0-7eb3bb962357'),(16630,16630,1,NULL,NULL,1,'2021-05-17 06:02:27','2021-05-17 06:02:27','274c9d91-7e1d-4a2d-bf4d-a68a15478987'),(16638,16638,1,'the-big-reveal','work/the-big-reveal',1,'2021-05-17 06:03:01','2021-05-17 06:03:01','40412e9d-ef3d-476a-9606-0ee74ed78f60'),(16639,16639,1,NULL,NULL,1,'2021-05-17 06:03:02','2021-05-17 06:03:02','791c3206-4080-486b-a34c-d77d9572bfc4'),(16640,16640,1,NULL,NULL,1,'2021-05-17 06:03:02','2021-05-17 06:03:02','1be2b63b-5053-4958-b712-49e9ed0da154'),(16641,16641,1,NULL,NULL,1,'2021-05-17 06:03:02','2021-05-17 06:03:02','e7eb2df5-7cbe-401a-8ac2-143f479c8e02'),(16648,16648,1,NULL,NULL,1,'2021-05-17 06:05:04','2021-05-17 06:05:04','0cfeb7bf-67a5-4247-90d3-024343f5256c'),(16654,16654,1,'the-big-reveal','work/the-big-reveal',1,'2021-05-17 06:05:33','2021-05-17 06:05:33','9ec60f93-751a-4ae2-8ab5-b6464dc36e18'),(16655,16655,1,NULL,NULL,1,'2021-05-17 06:05:33','2021-05-17 06:05:33','b04f6248-6498-4ea5-b2d2-b6a462e31546'),(16656,16656,1,NULL,NULL,1,'2021-05-17 06:05:33','2021-05-17 06:05:33','ef340f63-129d-4497-b4c6-925647cedc26'),(16657,16657,1,NULL,NULL,1,'2021-05-17 06:05:33','2021-05-17 06:05:33','882517ad-f6c7-4f7f-988c-457bcda3f23f'),(16658,16658,1,NULL,NULL,1,'2021-05-17 06:05:33','2021-05-17 06:05:33','48025f8e-85cb-4a40-8a7b-f2f0297aa390'),(16665,16665,1,NULL,NULL,1,'2021-05-17 06:06:53','2021-05-17 06:06:53','0db29bda-86d1-4895-9970-6790738c845d'),(16669,16669,1,NULL,NULL,1,'2021-05-17 06:08:04','2021-05-17 06:08:04','8b2eea99-7753-4774-aba9-c2a7654ce8e8'),(16675,16675,1,NULL,NULL,1,'2021-05-17 06:09:35','2021-05-17 06:09:35','3303ce02-8f5f-44b1-9014-6b182644afcd'),(16683,16683,1,NULL,NULL,1,'2021-05-17 06:10:57','2021-05-17 06:10:57','87c77bcc-620e-425a-8d9d-dbf0e55cb4fb'),(16693,16693,1,NULL,NULL,1,'2021-05-17 06:12:43','2021-05-17 06:12:43','767773c7-7be6-4ab5-b16a-600f2b20d053'),(16705,16705,1,NULL,NULL,1,'2021-05-17 06:13:42','2021-05-17 06:13:42','00ad8ec9-5a67-4123-acbb-9da835a93047'),(16719,16719,1,NULL,NULL,1,'2021-05-17 06:15:30','2021-05-17 06:15:30','29b1499c-d525-449e-b95d-325bc26221f5'),(16735,16735,1,NULL,NULL,1,'2021-05-17 06:16:38','2021-05-17 06:16:38','2f661d93-7978-4ded-bf13-b7298463ca72'),(16744,16744,1,NULL,NULL,1,'2021-05-17 06:17:10','2021-05-17 06:17:10','32aed4d5-a3a3-49d6-9c8e-2fb10669a48e'),(16745,16745,1,NULL,NULL,1,'2021-05-17 06:17:10','2021-05-17 06:17:10','bdae1390-a060-4426-8e40-97715334020a'),(16746,16746,1,NULL,NULL,1,'2021-05-17 06:17:10','2021-05-17 06:17:10','c5fa3547-041b-4012-a531-7bcff8fc479e'),(16747,16747,1,NULL,NULL,1,'2021-05-17 06:17:10','2021-05-17 06:17:10','7b872a9a-8d98-461e-bc54-e2d739ab4d6e'),(16748,16748,1,NULL,NULL,1,'2021-05-17 06:17:10','2021-05-17 06:17:10','108e4641-60fe-434d-9ef3-9e5ff3576027'),(16749,16749,1,NULL,NULL,1,'2021-05-17 06:17:10','2021-05-17 06:17:10','9a506e01-84a4-4a49-aba4-86de965a15b3'),(16750,16750,1,NULL,NULL,1,'2021-05-17 06:17:10','2021-05-17 06:17:10','8f117465-e792-4cc0-9d52-1fc5cd66a0db'),(16751,16751,1,NULL,NULL,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','fbacb536-74a3-4ff0-be20-1fd46a32e5b3'),(16752,16752,1,NULL,NULL,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','6baa9ac6-8d00-4547-bfda-b71b9bfac00e'),(16753,16753,1,NULL,NULL,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','f390de04-93a9-44a0-9d01-822cc3133f78'),(16754,16754,1,NULL,NULL,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','cac01b07-1da3-478e-a4fd-d4f9a9f4c5ed'),(16755,16755,1,NULL,NULL,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','b170a585-bd1a-4dd2-bbd5-a30f49e73fb7'),(16756,16756,1,'the-big-reveal','work/the-big-reveal',1,'2021-05-17 06:17:11','2021-05-17 06:17:11','3f8a784e-fe65-4256-8c54-cd512c2d209b'),(16757,16757,1,NULL,NULL,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','67665a4f-5ffc-41cb-8814-a7c2c281950e'),(16758,16758,1,NULL,NULL,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','a8ad6466-b20d-4a8c-86df-2db45b5eb052'),(16759,16759,1,NULL,NULL,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','f3559a4a-9ebd-4564-ae72-c60b161f54b8'),(16760,16760,1,NULL,NULL,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','e0ab44ef-84ef-4bed-928c-90b0b01c173f'),(16761,16761,1,NULL,NULL,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','1dfb530d-eb66-4210-bb8d-a0199e0b0cb9'),(16762,16762,1,NULL,NULL,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','6e92c9c2-457b-424d-80ea-b8efd6c76b07'),(16763,16763,1,NULL,NULL,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','3f37e147-18c4-41cc-a35c-4355e02d448b'),(16764,16764,1,NULL,NULL,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','70468da3-0a44-465f-9277-dd4572744d68'),(16765,16765,1,NULL,NULL,1,'2021-05-17 06:17:12','2021-05-17 06:17:12','8a1a65ea-5d03-460a-b6fa-0eee7aa55e47'),(16766,16766,1,NULL,NULL,1,'2021-05-17 06:17:12','2021-05-17 06:17:12','bfa6d52e-0576-46fc-8ab1-db9b20479f64'),(16767,16767,1,NULL,NULL,1,'2021-05-17 06:17:12','2021-05-17 06:17:12','4323138c-de76-4953-bca2-c71f2bced7cb'),(16768,16768,1,NULL,NULL,1,'2021-05-17 06:17:12','2021-05-17 06:17:12','42f8b175-e2b0-4d60-a76d-b3f31d005f87'),(16769,16769,1,'the-big-reveal','work/the-big-reveal',1,'2021-05-17 06:49:14','2021-05-17 06:49:14','a20b2a01-f4ca-4042-b8d7-ececf0c503b0'),(16770,16770,1,NULL,NULL,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','a1927779-68a2-4a9a-ba42-b3158aa77c37'),(16771,16771,1,NULL,NULL,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','4a52e057-d272-4ccc-b8d1-b08c80772323'),(16772,16772,1,NULL,NULL,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','d29bf00d-1f3e-417f-9cb5-bdb4bda40890'),(16773,16773,1,NULL,NULL,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','b419d7a3-4419-41c7-9ab2-e791c1db40ad'),(16774,16774,1,NULL,NULL,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','402b4194-e327-4d64-8ad2-446a9110da90'),(16775,16775,1,NULL,NULL,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','3813dc00-9b3d-4401-958e-9f8b74f49599'),(16776,16776,1,NULL,NULL,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','65c5b6ad-452b-4207-b6c3-e5630de11f79'),(16777,16777,1,NULL,NULL,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','5a8fbc9e-d5e7-4a4f-999a-5382946da045'),(16778,16778,1,NULL,NULL,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','43ed0e8a-db5b-475c-b4dd-0d4583427acd'),(16779,16779,1,NULL,NULL,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','949f347c-47f6-4733-86cd-a407a9416136'),(16780,16780,1,NULL,NULL,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','488e63ab-8748-4a6d-a264-0eee86a9a607'),(16781,16781,1,NULL,NULL,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','9fc4b0b8-922b-4112-a1c7-16768c682f40'),(16782,16782,1,'the-big-reveal','work/the-big-reveal',1,'2021-05-17 06:58:03','2021-05-17 06:58:03','dfa96e5a-217e-4717-818b-3ee83db892fa'),(16783,16783,1,NULL,NULL,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','52a68462-7318-4996-8eda-2f23d00b01b2'),(16784,16784,1,NULL,NULL,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','063110ef-fd42-4887-ab3c-50c0913ceca2'),(16785,16785,1,NULL,NULL,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','ba60ae70-9403-4edb-b55c-2d8196bc6078'),(16786,16786,1,NULL,NULL,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','84d4b51b-d3a1-47ee-854d-9a7a4dd5a0f6'),(16787,16787,1,NULL,NULL,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','a1f70c83-6417-42a2-bf4e-cb94d7aef077'),(16788,16788,1,NULL,NULL,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','1bc6ab6a-0e74-420a-a67b-4624452f7f54'),(16789,16789,1,NULL,NULL,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','e9e4ea05-399c-409d-8d99-7e650b63111b'),(16790,16790,1,NULL,NULL,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','598bb967-8fd3-4019-9958-4d491cd28fb2'),(16791,16791,1,NULL,NULL,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','e33bb856-ff44-4c32-8857-c13c420868d9'),(16792,16792,1,NULL,NULL,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','6d176012-15c9-4bb3-b56f-59564eeceb08'),(16793,16793,1,NULL,NULL,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','23418f39-a59d-4d0c-b744-f9220c96ac28'),(16794,16794,1,NULL,NULL,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','2502083e-3d0f-4347-9ea5-42419079f824'),(16795,16795,1,'revelian',NULL,1,'2021-05-17 07:01:00','2021-05-17 07:01:00','6b1eb8ef-e99d-42ca-8097-d7f2940e4386'),(16796,16796,1,'the-big-reveal','work/the-big-reveal',1,'2021-05-17 07:01:02','2021-05-17 07:01:02','517a7067-b523-47c6-8427-e76680218e08'),(16797,16797,1,NULL,NULL,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','cf9ab66c-3f90-4834-adfe-aa4261309b5a'),(16798,16798,1,NULL,NULL,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','b88b8fe7-0f4e-464a-b3fe-f934f0ef7d1e'),(16799,16799,1,NULL,NULL,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','ef963aaa-fe01-4dd0-a2d5-e4cb6b758ceb'),(16800,16800,1,NULL,NULL,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','d50fc16a-f88b-454b-a7f8-debc76d0c74a'),(16801,16801,1,NULL,NULL,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','939c82e3-7dea-4812-86b5-f3ce49870a11'),(16802,16802,1,NULL,NULL,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','5d30a7ca-b403-4464-98c6-d9b4dbd3836a'),(16803,16803,1,NULL,NULL,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','2e215017-03ac-4afa-b2f1-c0c8f28ac32a'),(16804,16804,1,NULL,NULL,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','75e4684e-8110-42a3-bbc1-75a782f80136'),(16805,16805,1,NULL,NULL,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','a58484e2-30a9-494b-a708-611bc10668d5'),(16806,16806,1,NULL,NULL,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','ee93ba95-3c0a-4baa-ad2a-9edabcc738cb'),(16807,16807,1,NULL,NULL,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','38ff0d36-6fb3-4622-8eeb-c7c3225f4374'),(16808,16808,1,NULL,NULL,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','b7f2b3a3-4626-4a88-8750-f9270c19ba1e'),(16810,16810,1,'the-big-reveal','work/the-big-reveal',1,'2021-05-17 23:37:52','2021-05-17 23:37:52','a4bb58dc-4ba3-477c-b7d4-6004e2462595'),(16811,16811,1,NULL,NULL,1,'2021-05-17 23:37:52','2021-05-17 23:37:52','c8dee411-423a-40e1-8202-23058b8c10bb'),(16812,16812,1,NULL,NULL,1,'2021-05-17 23:37:53','2021-05-17 23:37:53','a81eaeac-2a58-4c49-ac0b-6a50e16ee2f1'),(16813,16813,1,NULL,NULL,1,'2021-05-17 23:37:53','2021-05-17 23:37:53','03afc256-d87b-4394-859a-c9d74985e51d'),(16814,16814,1,NULL,NULL,1,'2021-05-17 23:37:53','2021-05-17 23:37:53','daca4b46-ae43-40e2-94bc-ad490602f98f'),(16815,16815,1,NULL,NULL,1,'2021-05-17 23:37:53','2021-05-17 23:37:53','5fd60991-f36b-4784-9491-ae91aa87a3a3'),(16816,16816,1,NULL,NULL,1,'2021-05-17 23:37:53','2021-05-17 23:37:53','c2bed899-9e79-4002-bf6a-0dc39b092f7c'),(16817,16817,1,NULL,NULL,1,'2021-05-17 23:37:53','2021-05-17 23:37:53','28bb6c6c-40a4-471b-a398-f33f4cd9d198'),(16818,16818,1,NULL,NULL,1,'2021-05-17 23:37:53','2021-05-17 23:37:53','94283b85-c074-4340-9128-11d9a1968d1b'),(16819,16819,1,NULL,NULL,1,'2021-05-17 23:37:53','2021-05-17 23:37:53','f4043d8a-74d7-4dec-ab3a-3e375916bf93'),(16820,16820,1,NULL,NULL,1,'2021-05-17 23:37:53','2021-05-17 23:37:53','1c7021fa-acc9-4adf-bc25-b63cec3a203a'),(16821,16821,1,NULL,NULL,1,'2021-05-17 23:37:53','2021-05-17 23:37:53','3aad103f-00d6-46c5-b5c1-1cea5acd674c'),(16822,16822,1,NULL,NULL,1,'2021-05-17 23:37:53','2021-05-17 23:37:53','878109b6-1d73-4b7e-b294-ad8b4f139bbf'),(16824,16824,1,NULL,NULL,1,'2021-05-17 23:39:58','2021-05-17 23:39:58','4bfff1c9-7bee-40ec-9fbf-7453448e74d1'),(16826,16826,1,NULL,NULL,1,'2021-05-17 23:40:57','2021-05-17 23:40:57','a6cdd457-e604-4434-88cf-aa5137b75aab'),(16828,16828,1,'dfv-campaign','work/dfv-campaign',1,'2021-05-17 23:41:01','2021-06-03 06:12:30','285d69bf-c772-484d-a9a9-7e01a0ad0180'),(16830,16830,1,'domestic-and-family-violence-awareness-campaign','work/domestic-and-family-violence-awareness-campaign',1,'2021-05-17 23:41:01','2021-05-17 23:41:01','b58968fc-7507-464a-957e-a71fbc565af0'),(16831,16831,1,NULL,NULL,1,'2021-05-17 23:41:01','2021-05-17 23:41:01','93261f91-ed31-4f6e-89f6-6411d6c1dbf6'),(16832,16832,1,'domestic-and-family-violence-awareness-campaign','work/domestic-and-family-violence-awareness-campaign',1,'2021-05-17 23:43:09','2021-05-17 23:43:09','ae0b56ca-70e8-4954-8f85-c18a481efe53'),(16833,16833,1,NULL,NULL,1,'2021-05-17 23:43:09','2021-05-17 23:43:09','97a021e5-c54b-45c9-899c-9e2c21fd52a6'),(16834,16834,1,'queensland-government',NULL,1,'2021-05-17 23:43:31','2021-05-17 23:43:31','0ade5a37-0866-4964-9ca7-892f4ab0f16b'),(16836,16836,1,'domestic-and-family-violence-awareness-campaign','work/domestic-and-family-violence-awareness-campaign',1,'2021-05-17 23:43:51','2021-05-17 23:43:51','9681ce5a-86f9-4670-a010-58fb73928fbf'),(16837,16837,1,NULL,NULL,1,'2021-05-17 23:43:51','2021-05-17 23:43:51','0083eac9-f2f6-47d2-9543-88af00e5892e'),(16838,16838,1,NULL,NULL,1,'2021-05-17 23:44:29','2021-05-17 23:44:29','958381a5-561d-4857-b530-df0df4b44896'),(16839,16839,1,NULL,NULL,1,'2021-05-17 23:44:30','2021-05-17 23:44:30','1e39a62e-581b-4971-ba36-f7afe067bdcf'),(16840,16840,1,NULL,NULL,1,'2021-05-17 23:44:30','2021-05-17 23:44:30','21050c3d-354c-4af0-ab4e-16d244d38c92'),(16841,16841,1,'domestic-and-family-violence-awareness-campaign','work/domestic-and-family-violence-awareness-campaign',1,'2021-05-17 23:46:42','2021-05-17 23:46:42','5aa5eea2-c6d6-4ff0-bf66-d51948253433'),(16842,16842,1,NULL,NULL,1,'2021-05-17 23:46:42','2021-05-17 23:46:42','e4b362fa-4ffa-4f99-88ad-2731b197474f'),(16844,16844,1,'domestic-and-family-violence-awareness-campaign','work/domestic-and-family-violence-awareness-campaign',1,'2021-05-17 23:48:09','2021-05-17 23:48:09','6401c784-5ded-4539-9135-8f4c0bbd54d7'),(16845,16845,1,NULL,NULL,1,'2021-05-17 23:48:10','2021-05-17 23:48:10','1dbbb714-c769-4966-80cb-d628cfc56090'),(16846,16846,1,NULL,NULL,1,'2021-05-17 23:48:10','2021-05-17 23:48:10','331c9a68-f5a9-47b9-9a56-d0ea3a9d9a74'),(16848,16848,1,'domestic-and-family-violence-awareness-campaign','work/domestic-and-family-violence-awareness-campaign',1,'2021-05-17 23:51:22','2021-05-17 23:51:22','1771736f-f9b3-497a-8d67-444d64be87d5'),(16849,16849,1,NULL,NULL,1,'2021-05-17 23:51:22','2021-05-17 23:51:22','5a3084cf-3176-4fc9-86bb-ddab303d0bea'),(16850,16850,1,NULL,NULL,1,'2021-05-17 23:51:22','2021-05-17 23:51:22','51618471-ad33-48c6-af97-58fbb9dcfb44'),(16852,16852,1,'domestic-and-family-violence-awareness-campaign','work/domestic-and-family-violence-awareness-campaign',1,'2021-05-17 23:54:40','2021-05-17 23:54:40','fa980fc3-5994-4f3b-beca-d78ac7e41125'),(16853,16853,1,NULL,NULL,1,'2021-05-17 23:54:40','2021-05-17 23:54:40','0519fdc4-32dd-45fb-ae9c-9c515a7bd5ea'),(16854,16854,1,NULL,NULL,1,'2021-05-17 23:54:40','2021-05-17 23:54:40','ebe0dc43-65b0-405a-856b-af792e7e8786'),(16856,16856,1,'domestic-and-family-violence-awareness-campaign','work/domestic-and-family-violence-awareness-campaign',1,'2021-05-18 00:01:20','2021-05-18 00:01:20','2fd8f2af-03f2-4beb-924b-4c29aa0a3308'),(16857,16857,1,NULL,NULL,1,'2021-05-18 00:01:20','2021-05-18 00:01:20','df87303c-1149-4ab8-a03e-4037b4fab9e5'),(16858,16858,1,NULL,NULL,1,'2021-05-18 00:01:20','2021-05-18 00:01:20','5cd0039b-bda3-451d-8261-815556dbb38e'),(16861,16861,1,'domestic-and-family-violence-awareness-campaign','work/domestic-and-family-violence-awareness-campaign',1,'2021-05-18 00:07:48','2021-05-18 00:07:48','224b91fd-7a93-4991-b84a-7aa284fa5067'),(16862,16862,1,NULL,NULL,1,'2021-05-18 00:07:48','2021-05-18 00:07:48','0c4c516d-4256-4a4b-8227-2a05fc9f266a'),(16863,16863,1,NULL,NULL,1,'2021-05-18 00:07:48','2021-05-18 00:07:48','a95b38cb-4dfd-4a93-b399-834e0bff19a2'),(16866,16866,1,'b2b','resource-categories/b2b',1,'2021-05-18 00:31:07','2021-05-18 00:31:19','8acce350-43e5-495f-bfb3-3edd132953aa'),(16867,16867,1,'brand','resource-categories/brand',1,'2021-05-18 00:31:08','2021-05-18 00:31:19','9a3dfe3d-7262-4ef1-a454-8556a0a67cf3'),(16868,16868,1,'business-to-business','resource-categories/business-to-business',1,'2021-05-18 00:31:08','2021-05-18 00:31:19','81bd5c2b-3da8-4e4c-ab0e-0c874a63ae2d'),(16869,16869,1,'campaign','resource-categories/campaign',1,'2021-05-18 00:31:08','2021-05-18 00:31:19','24325335-fd24-4a51-a523-871b8fbe5b06'),(16870,16870,1,'marketing','resource-categories/marketing',1,'2021-05-18 00:31:08','2021-05-18 00:31:19','a323dd53-2272-46ac-83f7-4054449b6c5e'),(16871,16871,1,'niche-market','resource-categories/niche-market',1,'2021-05-18 00:31:08','2021-05-18 00:31:19','adb184f1-bf84-4134-87b2-469be6455429'),(16872,16872,1,'vertical-market','resource-categories/vertical-market',1,'2021-05-18 00:31:08','2021-05-18 00:31:19','aedc9e46-ee9f-4a5e-8b83-9a0117e5d705'),(16875,16875,1,'case-study','resource-categories/case-study',1,'2021-05-18 00:31:08','2021-05-18 00:31:19','da61ad69-4e92-41a9-bbe2-bc0e1c4d8992'),(16876,16876,1,'client-focus','resource-categories/client-focus',1,'2021-05-18 00:31:08','2021-05-18 00:31:19','88e2a841-a8eb-4392-90f7-624a4bed1490'),(16877,16877,1,'client-service','resource-categories/client-service',1,'2021-05-18 00:31:08','2021-05-18 00:31:19','a535f522-812a-4ef5-8ead-bfff63cc904d'),(16880,16880,1,'business','resource-categories/business',1,'2021-05-18 00:31:09','2021-05-18 00:31:19','1c562745-a9f0-4b4e-9d52-be9e7a018e84'),(16881,16881,1,'language','resource-categories/language',1,'2021-05-18 00:31:09','2021-05-18 00:31:19','b0237cf8-110a-42a9-ba70-00ccb2e91361'),(16882,16882,1,'logic','resource-categories/logic',1,'2021-05-18 00:31:09','2021-05-18 00:31:19','90f0f180-9e3e-4f39-9479-2fd7c25aa1c8'),(16883,16883,1,'project-management','resource-categories/project-management',1,'2021-05-18 00:31:09','2021-05-18 00:31:19','fa93019a-f1a5-4f0e-bf98-8a159d7e9fce'),(16886,16886,1,'journalism','resource-categories/journalism',1,'2021-05-18 00:31:09','2021-05-18 00:31:19','8ce43e85-64e7-4be5-b0f9-905d9521c9b5'),(16887,16887,1,'media','resource-categories/media',1,'2021-05-18 00:31:09','2021-05-18 00:31:19','cd128754-65b3-41a0-902f-af6159bae971'),(16888,16888,1,'reporting','resource-categories/reporting',1,'2021-05-18 00:31:09','2021-05-18 00:31:19','d51a023b-231d-4306-b8f5-9e9b6557ad2c'),(16889,16889,1,'writing','resource-categories/writing',1,'2021-05-18 00:31:09','2021-05-18 00:31:19','d542526a-fc1a-4c14-ae65-74fce55c3303'),(16892,16892,1,'communication','resource-categories/communication',1,'2021-05-18 00:31:09','2021-05-18 00:31:19','e48726db-3ae1-43df-831c-d3c96a40dbcd'),(16893,16893,1,'jargon','resource-categories/jargon',1,'2021-05-18 00:31:09','2021-05-18 00:31:19','5ad586ba-fd97-46a6-84f3-101cbe8c917a'),(16896,16896,1,'leadership','resource-categories/leadership',1,'2021-05-18 00:31:10','2021-05-18 00:31:19','4ba829bc-a74a-4da5-8dc7-f06e7066c61e'),(16897,16897,1,'management','resource-categories/management',1,'2021-05-18 00:31:10','2021-05-18 00:31:19','852f1211-7d67-4c1e-91ed-0fd5120f1d68'),(16900,16900,1,'gen-y','resource-categories/gen-y',1,'2021-05-18 00:31:10','2021-05-18 00:31:19','d5e48428-ba71-4fad-95d5-3a0eaf6127a9'),(16901,16901,1,'people','resource-categories/people',1,'2021-05-18 00:31:10','2021-05-18 00:31:19','bf7b08aa-d1c0-4a2b-bba8-7475c7c5e2e8'),(16902,16902,1,'social-media','resource-categories/social-media',1,'2021-05-18 00:31:10','2021-05-18 00:31:19','775da871-d2f1-4418-abe0-50b30b272aa3'),(16903,16903,1,'strategy','resource-categories/strategy',1,'2021-05-18 00:31:10','2021-05-18 00:31:19','4bb527d7-3458-45e2-8b57-ad022da37289'),(16904,16904,1,'target-audience','resource-categories/target-audience',1,'2021-05-18 00:31:10','2021-05-18 00:31:19','8d1756a1-4102-4355-b9de-bf7943d0cf08'),(16907,16907,1,'copywriting','resource-categories/copywriting',1,'2021-05-18 00:31:10','2021-05-18 00:31:20','206e04fa-d3e6-4369-92ae-4c1540b46524'),(16908,16908,1,'hero','resource-categories/hero',1,'2021-05-18 00:31:10','2021-05-18 00:31:20','5878e565-aabe-4593-997c-beb2509a14bf'),(16911,16911,1,'content','resource-categories/content',1,'2021-05-18 00:31:11','2021-05-18 00:31:20','4c8a3e9d-3317-46a9-a848-ae351bce3a34'),(16912,16912,1,'content-marketing','resource-categories/content-marketing',1,'2021-05-18 00:31:11','2021-05-18 00:31:20','0a241121-aaf8-48f5-87aa-580f469fc96d'),(16915,16915,1,'collaboration','resource-categories/collaboration',1,'2021-05-18 00:31:11','2021-05-18 00:31:20','966539bc-cc25-4361-9fb1-2ac7a946c6a5'),(16918,16918,1,'creative','resource-categories/creative',1,'2021-05-18 00:31:11','2021-05-18 00:31:20','9dd0d049-ec97-4f9a-b9c7-d6f14e217442'),(16919,16919,1,'creative-agency','resource-categories/creative-agency',1,'2021-05-18 00:31:11','2021-05-18 00:31:20','24b2c18a-0495-4b62-b98b-ef6c7a5c339a'),(16920,16920,1,'human','resource-categories/human',1,'2021-05-18 00:31:11','2021-05-18 00:31:20','bd156252-8598-46d1-bb48-f355c41c8163'),(16923,16923,1,'experience','resource-categories/experience',1,'2021-05-18 00:31:11','2021-05-18 00:31:20','d3f19679-1bbe-4626-9b79-7626c66396ff'),(16926,16926,1,'pitch','resource-categories/pitch',1,'2021-05-18 00:31:12','2021-05-18 00:31:20','ace3b3b1-1ddd-4966-83c9-6d43c9ac92ef'),(16927,16927,1,'tender','resource-categories/tender',1,'2021-05-18 00:31:12','2021-05-18 00:31:20','1fec7aab-fd1b-4593-9d54-30f31d3417ab'),(16930,16930,1,'branding','resource-categories/branding',1,'2021-05-18 00:31:12','2021-05-18 00:31:20','3d05a2d4-862c-4118-a065-8b6d44c02c9d'),(16931,16931,1,'design','resource-categories/design',1,'2021-05-18 00:31:12','2021-05-18 00:31:20','cbd0dab8-aafa-4dd6-a175-b431741481f8'),(16932,16932,1,'photoshoot','resource-categories/photoshoot',1,'2021-05-18 00:31:12','2021-05-18 00:31:20','479ff3e2-94eb-4453-a0a2-31bec5c08c1a'),(16933,16933,1,'stock-photography','resource-categories/stock-photography',1,'2021-05-18 00:31:12','2021-05-18 00:31:20','1a158b67-555d-4596-ba4c-640f8637e0b0'),(16936,16936,1,'best-practice','resource-categories/best-practice',1,'2021-05-18 00:31:12','2021-05-18 00:31:20','08a45c96-7787-4cc7-9348-6deb3ba12f49'),(16937,16937,1,'digital','resource-categories/digital',1,'2021-05-18 00:31:12','2021-05-18 00:31:20','b5131800-9140-4578-9ded-d0f455c2ae6f'),(16938,16938,1,'structure','resource-categories/structure',1,'2021-05-18 00:31:13','2021-05-18 00:31:20','30f92653-8e5a-439b-94ef-ff7d706877b4'),(16939,16939,1,'web-copy','resource-categories/web-copy',1,'2021-05-18 00:31:13','2021-05-18 00:31:20','19653813-16f3-4d39-9ed1-4922df4908f8'),(16942,16942,1,'advertising','resource-categories/advertising',1,'2021-05-18 00:31:13','2021-05-18 00:31:20','b59df8d8-f86c-4c98-9f81-e40837f26388'),(16947,16947,1,'sme','resource-categories/sme',1,'2021-05-18 00:31:13','2021-05-18 00:31:20','b14e7ac0-c528-4f8d-8fa4-2622baa216c3'),(16950,16950,1,'website','resource-categories/website',1,'2021-05-18 00:31:14','2021-05-18 00:31:20','ae56cb8a-69fe-486a-a188-43fce076bbac'),(16953,16953,1,'maccas','resource-categories/maccas',1,'2021-05-18 00:31:14','2021-05-18 00:31:20','73f5a73a-653f-42ac-bb56-1a762db160df'),(16954,16954,1,'mcdonalds','resource-categories/mcdonalds',1,'2021-05-18 00:31:14','2021-05-18 00:31:20','dbcf11eb-e89b-4516-93e6-ffad7617950a'),(16955,16955,1,'tell','resource-categories/tell',1,'2021-05-18 00:31:14','2021-05-18 00:31:20','42e3e021-8ac6-4fd3-9830-74b41a58c893'),(16956,16956,1,'truth','resource-categories/truth',1,'2021-05-18 00:31:14','2021-05-18 00:31:20','b270ef05-6fa6-46b5-97dc-db9cf5ea14f5'),(16959,16959,1,'b2c','resource-categories/b2c',1,'2021-05-18 00:31:14','2021-05-18 00:31:20','2c6af9c8-1a9b-4dcc-87f9-09c586c2b37a'),(16960,16960,1,'h2h','resource-categories/h2h',1,'2021-05-18 00:31:14','2021-05-18 00:31:20','5ff53f65-f45f-4902-96a0-6d74806c51a6'),(16963,16963,1,'aggregated-content','resource-categories/aggregated-content',1,'2021-05-18 00:31:15','2021-05-18 00:31:20','81f0df24-46c2-4bc4-b629-1087c37690d6'),(16964,16964,1,'content-creation','resource-categories/content-creation',1,'2021-05-18 00:31:15','2021-05-18 00:31:21','a02d76a7-31c6-46b8-b750-b795d561cb70'),(16965,16965,1,'content-curation','resource-categories/content-curation',1,'2021-05-18 00:31:15','2021-05-18 00:31:21','a7147b50-aef4-4ef6-8271-3715d5a063c0'),(16966,16966,1,'thought-leadership','resource-categories/thought-leadership',1,'2021-05-18 00:31:15','2021-05-18 00:31:21','9f3f67ba-0169-4d6f-b898-3261adf229cc'),(16969,16969,1,'data','resource-categories/data',1,'2021-05-18 00:31:15','2021-05-18 00:31:21','225dfa49-1e25-46d0-b2a8-076bf6c5da1f'),(16970,16970,1,'engagement','resource-categories/engagement',1,'2021-05-18 00:31:15','2021-05-18 00:31:21','bf7ba4d0-9927-45e9-b21d-91a8b9f6d4c6'),(16971,16971,1,'growth','resource-categories/growth',1,'2021-05-18 00:31:15','2021-05-18 00:31:21','a55f610e-43ec-459b-a455-36a718598701'),(16972,16972,1,'measuring','resource-categories/measuring',1,'2021-05-18 00:31:15','2021-05-18 00:31:21','fdb7fd46-695a-4c58-a852-ec13d1129657'),(16973,16973,1,'roi','resource-categories/roi',1,'2021-05-18 00:31:15','2021-05-18 00:31:21','412d8d02-d24f-4c94-b6d1-f331b45ff7e8'),(16974,16974,1,'sales','resource-categories/sales',1,'2021-05-18 00:31:15','2021-05-18 00:31:21','cd8f2a65-6a26-4da8-99e2-21e58cf88b22'),(16977,16977,1,'video','resource-categories/video',1,'2021-05-18 00:31:15','2021-05-18 00:31:21','934545f0-0320-4f36-9c01-96df9b5bcf36'),(17008,17008,1,'iwd-2021','resource-categories/iwd-2021',1,'2021-05-18 00:31:18','2021-05-18 00:31:21','651c6c8d-29e7-402b-b52a-4e9bc042f005'),(17045,17045,1,NULL,NULL,1,'2021-05-18 00:59:39','2021-05-18 00:59:39','74a50421-ad69-48c3-891b-c9e54f259fa3'),(17046,17046,1,NULL,NULL,1,'2021-05-18 00:59:42','2021-05-18 00:59:42','c591f7db-0599-4369-bd0c-56b76f4aa174'),(17047,17047,1,NULL,NULL,1,'2021-05-18 00:59:46','2021-05-18 00:59:46','34707d6c-5d34-427e-a797-914885288748'),(17048,17048,1,NULL,NULL,1,'2021-05-18 00:59:49','2021-05-18 00:59:49','b3e4fc06-39f7-4376-b5a7-ef4cc95d4d55'),(17049,17049,1,NULL,NULL,1,'2021-05-18 00:59:52','2021-05-18 00:59:52','138a8862-190a-44bc-a403-379ba0c294d4'),(17050,17050,1,NULL,NULL,1,'2021-05-18 00:59:56','2021-05-18 00:59:56','73d31d17-bc29-4df2-90af-129f2230a5ac'),(17051,17051,1,NULL,NULL,1,'2021-05-18 00:59:59','2021-05-18 00:59:59','d14e008a-c327-41d5-9a7c-32e92b1a6118'),(17052,17052,1,NULL,NULL,1,'2021-05-18 01:00:02','2021-05-18 01:00:02','b0649092-0008-4002-bbc0-931a3971a0ca'),(17053,17053,1,NULL,NULL,1,'2021-05-18 01:00:05','2021-05-18 01:00:05','0f5edf13-4c88-4854-8a10-d161f4be0208'),(17054,17054,1,NULL,NULL,1,'2021-05-18 01:00:07','2021-05-18 01:00:07','7988e094-72e8-4b31-82e2-6e1c36844517'),(17055,17055,1,NULL,NULL,1,'2021-05-18 01:00:11','2021-05-18 01:00:11','bc6165ca-7f06-4044-b8f3-eb3d44ead6f9'),(17057,17057,1,NULL,NULL,1,'2021-05-18 01:00:12','2021-05-18 01:00:12','2a1452c2-6c86-4d82-b844-af6bd9527289'),(17058,17058,1,NULL,NULL,1,'2021-05-18 01:00:13','2021-05-18 01:00:13','6c220fd0-5116-4fee-bffa-a31cba3a06b0'),(17059,17059,1,NULL,NULL,1,'2021-05-18 01:00:13','2021-05-18 01:00:13','71e418d5-04f0-4313-83b5-e3178e386737'),(17060,17060,1,NULL,NULL,1,'2021-05-18 01:00:14','2021-05-18 01:00:14','1872d65a-1459-4abb-9576-48f5ff5fa8b6'),(17061,17061,1,NULL,NULL,1,'2021-05-18 01:00:15','2021-05-18 01:00:15','324be733-a0b2-434b-8084-be6265926502'),(17062,17062,1,NULL,NULL,1,'2021-05-18 01:00:16','2021-05-18 01:00:16','43fe7119-d0ec-43bc-bc8c-af402f6652c4'),(17063,17063,1,NULL,NULL,1,'2021-05-18 01:00:17','2021-05-18 01:00:17','aa781c3c-4cf3-4023-865e-0cea61e7337f'),(17064,17064,1,NULL,NULL,1,'2021-05-18 01:00:17','2021-05-18 01:00:17','e3f40a39-c2e3-4da8-ab95-509a3443dd91'),(17065,17065,1,NULL,NULL,1,'2021-05-18 01:00:18','2021-05-18 01:00:18','e119abcd-79e9-44be-8ecd-a6c0026bed46'),(17066,17066,1,NULL,NULL,1,'2021-05-18 01:00:19','2021-05-18 01:00:19','375da445-92ea-431e-b7ef-b12244bb29d7'),(17067,17067,1,NULL,NULL,1,'2021-05-18 01:00:20','2021-05-18 01:00:20','27f3ab62-2380-417a-b1cb-9d4dafccc61e'),(17068,17068,1,NULL,NULL,1,'2021-05-18 01:00:21','2021-05-18 01:00:21','c97bd2b4-deca-4027-9f91-2590237e5034'),(17069,17069,1,NULL,NULL,1,'2021-05-18 01:00:22','2021-05-18 01:00:22','703eb99e-2f27-461e-972e-3d0eb44bdc94'),(17070,17070,1,NULL,NULL,1,'2021-05-18 01:00:25','2021-05-18 01:00:25','5ef6ef06-ca7f-4425-8570-773e55a4c5f5'),(17071,17071,1,NULL,NULL,1,'2021-05-18 01:00:26','2021-05-18 01:00:26','185b3281-a3a9-4c23-aaf8-dce128f66a9e'),(17072,17072,1,NULL,NULL,1,'2021-05-18 01:00:27','2021-05-18 01:00:27','6db09940-3e7b-4c25-82cc-dacca2e97232'),(17073,17073,1,NULL,NULL,1,'2021-05-18 01:00:28','2021-05-18 01:00:28','5b80fc4e-10b0-4f35-a42d-b2ca632eb2cb'),(17074,17074,1,NULL,NULL,1,'2021-05-18 01:00:38','2021-05-18 01:00:38','c8b90f66-d5eb-4ddd-9d4f-39fa937ee920'),(17075,17075,1,NULL,NULL,1,'2021-05-18 01:00:40','2021-05-18 01:00:40','154d89e6-ffd5-4aa3-9a16-b650ebca5766'),(17076,17076,1,NULL,NULL,1,'2021-05-18 01:00:42','2021-05-18 01:00:42','ed88e192-d322-466d-b38a-9b6cdc36149f'),(17077,17077,1,NULL,NULL,1,'2021-05-18 01:00:44','2021-05-18 01:00:44','d56a2cfb-2991-4dfb-926a-4c795b66669c'),(17078,17078,1,NULL,NULL,1,'2021-05-18 01:00:46','2021-05-18 01:00:46','b547ff12-0f79-4274-9dab-2dcd1d5fd958'),(17079,17079,1,NULL,NULL,1,'2021-05-18 01:00:48','2021-05-18 01:00:48','04168029-b115-4101-b82b-ef816ee548e9'),(17080,17080,1,NULL,NULL,1,'2021-05-18 01:00:49','2021-05-18 01:00:49','b85c21d8-dc0b-4a6b-ab5d-57aeb1f92e64'),(17081,17081,1,NULL,NULL,1,'2021-05-18 01:00:50','2021-05-18 01:00:50','3d29e07b-de98-4bf1-853a-29ee5deaa347'),(17082,17082,1,NULL,NULL,1,'2021-05-18 01:00:51','2021-05-18 01:00:51','fd775fa8-246a-4327-8ec7-bde145d147c8'),(17083,17083,1,NULL,NULL,1,'2021-05-18 01:00:51','2021-05-18 01:00:51','d945e9c6-1a52-460a-9055-30b74cdcbc96'),(17084,17084,1,NULL,NULL,1,'2021-05-18 01:00:53','2021-05-18 01:00:53','fc259467-507c-4182-9df5-12363b5af45f'),(17085,17085,1,NULL,NULL,1,'2021-05-18 01:00:55','2021-05-18 01:00:55','f27f2f67-ec28-40e9-bae8-f644a207dac4'),(17086,17086,1,NULL,NULL,1,'2021-05-18 01:00:58','2021-05-18 01:00:58','b56ba90f-4c11-42c7-9e2d-4f0973a94b3c'),(17087,17087,1,NULL,NULL,1,'2021-05-18 01:01:02','2021-05-18 01:01:02','7a6674cb-5c1c-457c-bbf2-adbd90f6d77d'),(17088,17088,1,NULL,NULL,1,'2021-05-18 01:01:06','2021-05-18 01:01:06','e1cabe97-b8c3-42a1-9a3e-f1bc5dad2be4'),(17089,17089,1,NULL,NULL,1,'2021-05-18 01:01:10','2021-05-18 01:01:10','55a2066a-f156-4e26-b068-e0c00a4fe2d7'),(17090,17090,1,NULL,NULL,1,'2021-05-18 01:01:12','2021-05-18 01:01:12','e48e6fbc-2184-4dbd-aed5-09f230415b7b'),(17092,17092,1,NULL,NULL,1,'2021-05-18 01:01:33','2021-05-18 01:01:33','b47edbe2-f98d-45f2-934c-364b95572094'),(17093,17093,1,NULL,NULL,1,'2021-05-18 01:01:35','2021-05-18 01:01:35','412ada86-5007-4243-91d0-09ab92020924'),(17094,17094,1,NULL,NULL,1,'2021-05-18 01:01:37','2021-05-18 01:01:37','c21ad6b9-570c-46a6-b8cb-17b77f6ca198'),(17095,17095,1,NULL,NULL,1,'2021-05-18 01:01:39','2021-05-18 01:01:39','4b0d3e98-fa0e-4e4f-bedb-bc143228a7ff'),(17096,17096,1,NULL,NULL,1,'2021-05-18 01:01:41','2021-05-18 01:01:41','ee21c51f-c91d-47a2-a1aa-e9a7fd8c15be'),(17097,17097,1,NULL,NULL,1,'2021-05-18 01:01:43','2021-05-18 01:01:43','884e99e7-d3e5-4844-9ab2-c83b8860110f'),(17098,17098,1,NULL,NULL,1,'2021-05-18 01:01:45','2021-05-18 01:01:45','5e923d13-7b11-4504-883f-6d93c5d2c6c3'),(17099,17099,1,NULL,NULL,1,'2021-05-18 01:01:47','2021-05-18 01:01:47','8c4278c4-226d-4a40-a1fd-4d1fd54bc68f'),(17100,17100,1,NULL,NULL,1,'2021-05-18 01:01:50','2021-05-18 01:01:50','4d025987-d019-4a41-ad6d-2c56839adab2'),(17101,17101,1,NULL,NULL,1,'2021-05-18 01:01:57','2021-05-18 01:01:57','a04069a8-c236-48b0-879c-4991435d0917'),(17102,17102,1,NULL,NULL,1,'2021-05-18 01:02:16','2021-05-18 01:02:16','57268f8e-b490-4963-ab7e-45f43ee0e925'),(17103,17103,1,NULL,NULL,1,'2021-05-18 01:02:25','2021-05-18 01:02:25','819ec7c8-959b-4ef4-8850-93e1160be555'),(17104,17104,1,NULL,NULL,1,'2021-05-18 01:02:40','2021-05-18 01:02:40','cc13e097-9176-4584-8c5b-4e29a59fb18f'),(17105,17105,1,NULL,NULL,1,'2021-05-18 01:02:44','2021-05-18 01:02:44','66c71122-d251-4805-b1b5-a5f563158cc8'),(17106,17106,1,NULL,NULL,1,'2021-05-18 01:02:48','2021-05-18 01:02:48','decc4970-4027-4819-88ad-d48b01073536'),(17107,17107,1,NULL,NULL,1,'2021-05-18 01:02:50','2021-05-18 01:02:50','fe3b990e-bcd8-43a7-8e70-3e1a19edc8e3'),(17108,17108,1,NULL,NULL,1,'2021-05-18 01:02:51','2021-05-18 01:02:51','53a038e2-3225-482e-83a3-92f85faf18f0'),(17109,17109,1,NULL,NULL,1,'2021-05-18 01:02:53','2021-05-18 01:02:53','3536df62-6446-46ab-8377-74897357437b'),(17110,17110,1,NULL,NULL,1,'2021-05-18 01:02:55','2021-05-18 01:02:55','e4bb71e5-d1e3-48f0-b9fd-ef8e10591184'),(17111,17111,1,NULL,NULL,1,'2021-05-18 01:02:56','2021-05-18 01:02:56','b10aad4b-9c94-47e0-8f28-d5fb5825c954'),(17112,17112,1,NULL,NULL,1,'2021-05-18 01:02:57','2021-05-18 01:02:57','014fc311-a086-4821-817d-6272ec35f307'),(17113,17113,1,NULL,NULL,1,'2021-05-18 01:03:00','2021-05-18 01:03:00','9eb15adb-7a6e-42db-95bc-50aebdd5a1b0'),(17114,17114,1,NULL,NULL,1,'2021-05-18 01:03:02','2021-05-18 01:03:02','48c28265-ca6f-4886-b58d-4f65fff1ba9c'),(17115,17115,1,NULL,NULL,1,'2021-05-18 01:03:08','2021-05-18 01:03:08','5d6574ff-1bbf-4f0d-bb47-2b6d41e2af81'),(17116,17116,1,NULL,NULL,1,'2021-05-18 01:03:09','2021-05-18 01:03:09','3e344443-1c8d-49d3-9c6d-2e2e1a70819c'),(17117,17117,1,NULL,NULL,1,'2021-05-18 01:03:11','2021-05-18 01:03:11','3e3ca71b-c9fd-4a4a-90a0-4d85f8c2933f'),(17118,17118,1,NULL,NULL,1,'2021-05-18 01:03:13','2021-05-18 01:03:13','80cdbdec-9659-48f5-b2f7-204a1b23d341'),(17119,17119,1,NULL,NULL,1,'2021-05-18 01:03:15','2021-05-18 01:03:15','70f3b747-bd96-4682-8ab8-cb0f1c13f6b9'),(17120,17120,1,NULL,NULL,1,'2021-05-18 01:03:15','2021-05-18 01:03:15','a271abe7-c238-4cad-af59-fb1cf5ead4d0'),(17121,17121,1,NULL,NULL,1,'2021-05-18 01:03:17','2021-05-18 01:03:17','d83db868-78f4-4732-89f1-c0475f039210'),(17122,17122,1,NULL,NULL,1,'2021-05-18 01:03:19','2021-05-18 01:03:19','8644e635-bbfb-4e02-a792-28d69fc8caa2'),(17123,17123,1,NULL,NULL,1,'2021-05-18 01:03:22','2021-05-18 01:03:22','a694f59c-e446-4a84-ae0a-72746ef3f9b9'),(17124,17124,1,NULL,NULL,1,'2021-05-18 01:03:24','2021-05-18 01:03:24','30ec062e-b33e-409f-9699-e0d51638ead3'),(17125,17125,1,NULL,NULL,1,'2021-05-18 01:03:26','2021-05-18 01:03:26','89bb9340-5177-4af1-a7b5-00ca76eb2595'),(17126,17126,1,NULL,NULL,1,'2021-05-18 01:03:29','2021-05-18 01:03:29','19c70d1a-d818-403f-ae46-170f17df4c98'),(17127,17127,1,NULL,NULL,1,'2021-05-18 01:03:31','2021-05-18 01:03:31','a3c980e9-9e17-47ad-986a-b6f1e26cf37f'),(17128,17128,1,NULL,NULL,1,'2021-05-18 01:03:31','2021-05-18 01:03:31','8f24c67f-5d04-4917-8756-e55e68e47524'),(17129,17129,1,NULL,NULL,1,'2021-05-18 01:03:33','2021-05-18 01:03:33','a64f872c-d55a-4dc4-beb8-a8a50067958c'),(17130,17130,1,NULL,NULL,1,'2021-05-18 01:03:36','2021-05-18 01:03:36','e65b14f3-b9e3-4475-858b-f48728586f48'),(17131,17131,1,NULL,NULL,1,'2021-05-18 01:03:37','2021-05-18 01:03:37','c5080d9a-d983-4077-a80b-7bc55b37a800'),(17132,17132,1,NULL,NULL,1,'2021-05-18 01:03:39','2021-05-18 01:03:39','fb9cd1c3-5e58-45d0-a8a8-6b4d6c9388f8'),(17133,17133,1,NULL,NULL,1,'2021-05-18 01:03:41','2021-05-18 01:03:41','0562e7d8-8f19-4912-9a84-6e7b1499c98a'),(17134,17134,1,NULL,NULL,1,'2021-05-18 01:03:42','2021-05-18 01:03:42','cfaedfd3-45d6-4ed3-a218-bac9712f1bc7'),(17135,17135,1,NULL,NULL,1,'2021-05-18 01:03:42','2021-05-18 01:03:42','52bb16af-a2aa-48a0-b82c-c59db09fc25b'),(17136,17136,1,NULL,NULL,1,'2021-05-18 01:03:42','2021-05-18 01:03:42','26fe262b-e350-4898-ad5e-d2f1f6035dce'),(17137,17137,1,NULL,NULL,1,'2021-05-18 01:03:43','2021-05-18 01:03:43','5ec671eb-10c7-493f-8284-f8de30391573'),(17138,17138,1,NULL,NULL,1,'2021-05-18 01:03:43','2021-05-18 01:03:43','6058b1b9-d512-4d47-b9d2-fc648c8535f1'),(17139,17139,1,NULL,NULL,1,'2021-05-18 01:03:44','2021-05-18 01:03:44','72279c0c-9e88-4e36-b333-3b2aa711666e'),(17140,17140,1,NULL,NULL,1,'2021-05-18 01:03:44','2021-05-18 01:03:44','1ef300c7-3b5f-4a74-91f3-85c95f6fa5d6'),(17141,17141,1,NULL,NULL,1,'2021-05-18 01:03:44','2021-05-18 01:03:44','a0a8e8a6-0487-4024-98bf-6949cb264dd7'),(17142,17142,1,NULL,NULL,1,'2021-05-18 01:03:45','2021-05-18 01:03:45','8bac5c25-f5e6-4a6a-91bf-85d94e976b54'),(17143,17143,1,NULL,NULL,1,'2021-05-18 01:03:45','2021-05-18 01:03:45','4e0c1aea-1af1-4cbf-a8d4-27160a51942c'),(17144,17144,1,NULL,NULL,1,'2021-05-18 01:03:46','2021-05-18 01:03:46','fba58f35-63f7-424a-a6b3-60eb563bc0d1'),(17145,17145,1,NULL,NULL,1,'2021-05-18 01:03:46','2021-05-18 01:03:46','e1b8af02-d458-4699-b679-ada9b9e2c517'),(17146,17146,1,NULL,NULL,1,'2021-05-18 01:03:48','2021-05-18 01:03:48','ba9d84c5-238f-4b82-91f6-ede9cb834292'),(17147,17147,1,NULL,NULL,1,'2021-05-18 01:03:49','2021-05-18 01:03:49','53f36780-9eb7-413a-8df8-b5686a024428'),(17148,17148,1,NULL,NULL,1,'2021-05-18 01:03:51','2021-05-18 01:03:51','26b68eac-9eed-4a09-a257-b165b3ae15ab'),(17149,17149,1,NULL,NULL,1,'2021-05-18 01:03:51','2021-05-18 01:03:51','ff3d0238-a9a8-49e4-918a-b6060e92e4d2'),(17150,17150,1,NULL,NULL,1,'2021-05-18 01:03:54','2021-05-18 01:03:54','7e380245-56f1-485f-a8f7-f80e0ed5c80f'),(17151,17151,1,NULL,NULL,1,'2021-05-18 01:03:55','2021-05-18 01:03:55','0cebf4c5-ec04-4c53-91ec-9068f817f191'),(17152,17152,1,NULL,NULL,1,'2021-05-18 01:03:57','2021-05-18 01:03:57','8c363d71-2494-4f7f-9ce7-e7c97213d7a5'),(17153,17153,1,NULL,NULL,1,'2021-05-18 01:03:57','2021-05-18 01:03:57','46d13775-2cfa-4f1b-9d1d-ed405c2ae480'),(17154,17154,1,NULL,NULL,1,'2021-05-18 01:03:58','2021-05-18 01:03:58','3f4098f5-a609-4703-a12a-cc51fc3c8a93'),(17155,17155,1,NULL,NULL,1,'2021-05-18 01:03:59','2021-05-18 01:03:59','0fe78c96-1752-4677-a403-c402ef22fd13'),(17156,17156,1,NULL,NULL,1,'2021-05-18 01:03:59','2021-05-18 01:03:59','143ffc5a-a75c-4817-8985-facca4d2f3a8'),(17157,17157,1,NULL,NULL,1,'2021-05-18 01:04:00','2021-05-18 01:04:00','56a567cc-cf5c-4a00-918f-9553f15a9b41'),(17158,17158,1,NULL,NULL,1,'2021-05-18 01:04:00','2021-05-18 01:04:00','daf658f8-add8-4949-a2c1-4fcdd07eeb66'),(17159,17159,1,NULL,NULL,1,'2021-05-18 01:04:01','2021-05-18 01:04:01','42de1c49-501e-4e90-8161-227a236ce50a'),(17160,17160,1,NULL,NULL,1,'2021-05-18 01:04:01','2021-05-18 01:04:01','f7220593-6781-487d-a58c-a7d3eaebe155'),(17161,17161,1,NULL,NULL,1,'2021-05-18 01:04:02','2021-05-18 01:04:02','2cc8833b-d59b-41e3-91ed-802069ad4cba'),(17162,17162,1,NULL,NULL,1,'2021-05-18 01:04:03','2021-05-18 01:04:03','53ac0746-4d3f-4947-8536-8cd1fa6b5e4e'),(17163,17163,1,NULL,NULL,1,'2021-05-18 01:04:04','2021-05-18 01:04:04','73d274ce-7a1e-4186-8869-0fd1d26802c7'),(17164,17164,1,NULL,NULL,1,'2021-05-18 01:04:05','2021-05-18 01:04:05','862a51ed-8769-4023-9df3-55ef2b41f2f5'),(17165,17165,1,NULL,NULL,1,'2021-05-18 01:04:06','2021-05-18 01:04:06','1c1f5864-7757-480a-918c-5217a1558bc7'),(17166,17166,1,NULL,NULL,1,'2021-05-18 01:04:07','2021-05-18 01:04:07','63e62c9a-9419-4a5e-8a0a-8abdae467ba3'),(17167,17167,1,NULL,NULL,1,'2021-05-18 01:04:10','2021-05-18 01:04:10','7ce9d601-508f-4ce6-9d6f-ef308b280155'),(17168,17168,1,NULL,NULL,1,'2021-05-18 01:04:11','2021-05-18 01:04:11','e5677cbe-a5e1-4e41-937d-a955d4c0b3d6'),(17169,17169,1,NULL,NULL,1,'2021-05-18 01:04:14','2021-05-18 01:04:14','4b2a7ed2-c9c6-4ace-bd9b-03fa0c8e28b7'),(17170,17170,1,NULL,NULL,1,'2021-05-18 01:04:15','2021-05-18 01:04:15','b26c77c1-5e87-4830-a31c-4bea02739b37'),(17171,17171,1,NULL,NULL,1,'2021-05-18 01:04:16','2021-05-18 01:04:16','29c57b7d-fedb-490e-a4b6-e874da437dea'),(17172,17172,1,NULL,NULL,1,'2021-05-18 01:04:18','2021-05-18 01:04:18','68c00940-2c36-4b86-9873-4b77ab9b8bb3'),(17173,17173,1,NULL,NULL,1,'2021-05-18 01:04:20','2021-05-18 01:04:20','397f5a68-7f4f-4b98-8871-205d7145f31d'),(17174,17174,1,NULL,NULL,1,'2021-05-18 01:04:22','2021-05-18 01:04:22','95ee273d-811f-49b3-8ee2-eb0fa2b2d65d'),(17175,17175,1,NULL,NULL,1,'2021-05-18 01:04:23','2021-05-18 01:04:23','2480b19e-43a8-4b10-be50-049df833321e'),(17176,17176,1,NULL,NULL,1,'2021-05-18 01:04:24','2021-05-18 01:04:24','3e8aab52-1867-42a6-8484-01247af1f3bc'),(17177,17177,1,NULL,NULL,1,'2021-05-18 01:04:25','2021-05-18 01:04:25','ac0801b1-85d9-4eae-8fd0-e94a7ca26473'),(17178,17178,1,NULL,NULL,1,'2021-05-18 01:04:26','2021-05-18 01:04:26','2a182334-e24a-49f4-824b-d22630eb8e69'),(17179,17179,1,NULL,NULL,1,'2021-05-18 01:04:27','2021-05-18 01:04:27','f7097d99-f438-4021-a83d-24ec75830cb5'),(17180,17180,1,NULL,NULL,1,'2021-05-18 01:04:29','2021-05-18 01:04:29','87b6be78-8d23-4b10-9a14-44df61ba4f7c'),(17181,17181,1,NULL,NULL,1,'2021-05-18 01:04:30','2021-05-18 01:04:30','690e0238-a44f-442d-b781-acff611b49fd'),(17182,17182,1,NULL,NULL,1,'2021-05-18 01:04:32','2021-05-18 01:04:32','b6742312-2fe8-4cec-8074-605d318e306f'),(17183,17183,1,NULL,NULL,1,'2021-05-18 01:04:35','2021-05-18 01:04:35','e342f82e-9474-49d9-a37f-8272a3cca024'),(17184,17184,1,NULL,NULL,1,'2021-05-18 01:04:36','2021-05-18 01:04:36','fe55863b-b6eb-4ce4-adea-ce4faf5bae0d'),(17185,17185,1,NULL,NULL,1,'2021-05-18 01:04:37','2021-05-18 01:04:37','ab509bba-87fa-4617-9146-15c58186edc7'),(17186,17186,1,NULL,NULL,1,'2021-05-18 01:04:38','2021-05-18 01:04:38','b92612dd-3ab1-4cac-9e9a-727038c091e7'),(17187,17187,1,NULL,NULL,1,'2021-05-18 01:04:40','2021-05-18 01:04:40','df0e19df-ac57-4cfb-8809-39e4ed48a984'),(17188,17188,1,NULL,NULL,1,'2021-05-18 01:04:41','2021-05-18 01:04:41','cb978050-16be-4f90-87ce-a1fc34710912'),(17189,17189,1,NULL,NULL,1,'2021-05-18 01:04:42','2021-05-18 01:04:42','f9face6a-fc9f-4b0c-81b9-ab8158c17f57'),(17190,17190,1,NULL,NULL,1,'2021-05-18 01:04:45','2021-05-18 01:04:45','475f23ed-89ad-40da-b7f3-894b630ae3fd'),(17191,17191,1,NULL,NULL,1,'2021-05-18 01:04:48','2021-05-18 01:04:48','4b7eb0ba-04ba-4c2e-8888-d808b6a293fa'),(17192,17192,1,NULL,NULL,1,'2021-05-18 01:05:19','2021-05-18 01:05:19','b06777af-118c-46b0-a68b-ebff8cadf5f8'),(17193,17193,1,NULL,NULL,1,'2021-05-18 01:05:21','2021-05-18 01:05:21','1863580d-0744-413a-a9de-684dae89ac58'),(17194,17194,1,NULL,NULL,1,'2021-05-18 01:05:22','2021-05-18 01:05:22','b8df4aa5-d25c-425e-a196-b141151069bd'),(17195,17195,1,NULL,NULL,1,'2021-05-18 01:05:23','2021-05-18 01:05:23','53104a00-3f66-438e-bcd0-a296549b67b8'),(17196,17196,1,NULL,NULL,1,'2021-05-18 01:05:24','2021-05-18 01:05:24','bcef26ac-fb6c-43da-943b-4fe8903553e8'),(17197,17197,1,NULL,NULL,1,'2021-05-18 01:05:25','2021-05-18 01:05:25','8bcfee97-d2d1-49a7-b647-b334a9a39a1f'),(17198,17198,1,NULL,NULL,1,'2021-05-18 01:05:25','2021-05-18 01:05:25','f1f0b3bb-a23c-4c7f-8d16-4a9b065c0fb4'),(17199,17199,1,NULL,NULL,1,'2021-05-18 01:05:26','2021-05-18 01:05:26','00bcc78f-665b-427b-b569-f801e5811034'),(17200,17200,1,NULL,NULL,1,'2021-05-18 01:05:27','2021-05-18 01:05:27','7aa3bea7-40fc-42ab-ad20-8f905a543d90'),(17201,17201,1,NULL,NULL,1,'2021-05-18 01:05:28','2021-05-18 01:05:28','7f759422-40c8-4a9c-a104-fb5fceaec1e0'),(17202,17202,1,NULL,NULL,1,'2021-05-18 01:05:29','2021-05-18 01:05:29','f8b1cca6-a88e-4fe2-a160-50d0436915d7'),(17203,17203,1,NULL,NULL,1,'2021-05-18 01:05:29','2021-05-18 01:05:29','ca5c0123-0e40-43fb-a45c-d171b5904d28'),(17204,17204,1,NULL,NULL,1,'2021-05-18 01:05:30','2021-05-18 01:05:30','4edc79ce-21d4-42a5-84c2-75255a8be222'),(17205,17205,1,NULL,NULL,1,'2021-05-18 01:05:31','2021-05-18 01:05:31','965ff63f-e7f1-4e2f-9642-e1db3fffda27'),(17206,17206,1,NULL,NULL,1,'2021-05-18 01:05:32','2021-05-18 01:05:32','ce3c6f1e-4f28-40e7-ae60-d0f53bc0e7ef'),(17207,17207,1,NULL,NULL,1,'2021-05-18 01:05:33','2021-05-18 01:05:33','833ebf01-8ac1-4f87-877c-7aec710e58b1'),(17208,17208,1,NULL,NULL,1,'2021-05-18 01:05:34','2021-05-18 01:05:34','8d3ac0fc-a81c-4e57-92ae-55f6df0b08fb'),(17209,17209,1,NULL,NULL,1,'2021-05-18 01:05:36','2021-05-18 01:05:36','43ffadeb-05b8-491b-a4db-99d5df4ffcd4'),(17210,17210,1,NULL,NULL,1,'2021-05-18 01:05:38','2021-05-18 01:05:38','ffaab7eb-c27f-4efb-a9c0-e13bca076911'),(17211,17211,1,NULL,NULL,1,'2021-05-18 01:05:41','2021-05-18 01:05:41','ebdf671d-c507-4deb-8577-6e76cc407474'),(17212,17212,1,NULL,NULL,1,'2021-05-18 01:05:43','2021-05-18 01:05:43','4ab5586a-a8f5-4d6a-802f-c99b0ad720ee'),(17213,17213,1,NULL,NULL,1,'2021-05-18 01:05:44','2021-05-18 01:05:44','a8f4e4d0-4b98-42c6-b84a-c95e1c91d201'),(17215,17215,1,NULL,NULL,1,'2021-05-18 01:05:48','2021-05-18 01:05:48','9ef4430c-21e6-4d61-977e-67aa508daff3'),(17216,17216,1,NULL,NULL,1,'2021-05-18 01:05:50','2021-05-18 01:05:50','052e7985-6bf0-4f37-bac2-9da1b3f6b33c'),(17217,17217,1,NULL,NULL,1,'2021-05-18 01:05:53','2021-05-18 01:05:53','ca2e0a20-20f8-40fc-a54d-26837ac41ab2'),(17218,17218,1,NULL,NULL,1,'2021-05-18 01:05:55','2021-05-18 01:05:55','58c76413-f22f-4ed5-98f7-24578c51c7e2'),(17219,17219,1,NULL,NULL,1,'2021-05-18 01:05:57','2021-05-18 01:05:57','3a53c1df-c69d-47a5-8b48-80cf439fa7b6'),(17220,17220,1,NULL,NULL,1,'2021-05-18 01:05:59','2021-05-18 01:05:59','2c313885-1406-47ea-9fdb-c00c3c535aec'),(17221,17221,1,NULL,NULL,1,'2021-05-18 01:06:01','2021-05-18 01:06:01','5807a9f7-6867-4f92-ab63-76f60cf50223'),(17222,17222,1,NULL,NULL,1,'2021-05-18 01:06:04','2021-05-18 01:06:04','f8347687-e975-4de5-80cf-cf47396ef0d4'),(17223,17223,1,NULL,NULL,1,'2021-05-18 01:06:35','2021-05-18 01:06:35','96545104-0e8b-4e1e-9c23-578828288619'),(17224,17224,1,NULL,NULL,1,'2021-05-18 01:06:38','2021-05-18 01:06:38','7795b210-d04b-4c4d-a4bc-47d27d5c7129'),(17225,17225,1,NULL,NULL,1,'2021-05-18 01:06:41','2021-05-18 01:06:41','46d16790-642d-496d-a099-c9dae8973445'),(17226,17226,1,NULL,NULL,1,'2021-05-18 01:06:45','2021-05-18 01:06:45','847b98eb-0dd2-4564-88a0-f40aadddba05'),(17227,17227,1,NULL,NULL,1,'2021-05-18 01:07:16','2021-05-18 01:07:16','d00f7617-2528-4732-861d-7bc36545d8a8'),(17228,17228,1,NULL,NULL,1,'2021-05-18 01:07:19','2021-05-18 01:07:19','dce1b923-5da8-40f4-8dd0-3901e28be651'),(17229,17229,1,NULL,NULL,1,'2021-05-18 01:07:23','2021-05-18 01:07:23','34f3b788-bf98-4d79-99f0-bf2202bf9e70'),(17230,17230,1,NULL,NULL,1,'2021-05-18 01:07:26','2021-05-18 01:07:26','116b178e-0006-478a-8d9d-8bc83b9d0ce4'),(17231,17231,1,NULL,NULL,1,'2021-05-18 01:07:28','2021-05-18 01:07:28','e8507d5d-6b63-4a43-9086-abd9da311bfd'),(17232,17232,1,NULL,NULL,1,'2021-05-18 01:07:32','2021-05-18 01:07:32','19c16ebb-3da3-4f02-97b8-c49644b38647'),(17233,17233,1,NULL,NULL,1,'2021-05-18 01:07:35','2021-05-18 01:07:35','7010f178-290e-4f78-92b9-6da1bbd35485'),(17234,17234,1,NULL,NULL,1,'2021-05-18 01:07:47','2021-05-18 01:07:47','69c14933-82de-4129-adfb-82dbe0cc85cf'),(17235,17235,1,NULL,NULL,1,'2021-05-18 01:07:58','2021-05-18 01:07:58','9102d28a-05b0-4c05-b24a-1919993c1f48'),(17236,17236,1,NULL,NULL,1,'2021-05-18 01:08:12','2021-05-18 01:08:12','7e6dad46-998f-49e7-ae19-341ab8b9d03a'),(17237,17237,1,NULL,NULL,1,'2021-05-18 01:08:20','2021-05-18 01:08:20','fc850233-901a-4a83-a758-e1299099d390'),(17238,17238,1,NULL,NULL,1,'2021-05-18 01:08:28','2021-05-18 01:08:28','b16778ce-a29d-4662-8a6c-76d3607887cb'),(17239,17239,1,NULL,NULL,1,'2021-05-18 01:08:35','2021-05-18 01:08:35','27f44c48-db5c-4944-810d-863b72a03bef'),(17240,17240,1,NULL,NULL,1,'2021-05-18 01:08:44','2021-05-18 01:08:44','4131e314-be72-43f2-b245-c95804494902'),(17241,17241,1,NULL,NULL,1,'2021-05-18 01:08:53','2021-05-18 01:08:53','af421f6d-4a18-4ab4-868a-c5ac0ad93283'),(17242,17242,1,NULL,NULL,1,'2021-05-18 01:09:02','2021-05-18 01:09:02','765b7e6a-9cf0-4e61-ab3f-d6fb637d0d13'),(17243,17243,1,NULL,NULL,1,'2021-05-18 01:09:23','2021-05-18 01:09:23','7277a71d-4007-46bf-a34b-cbcab69b2f1c'),(17244,17244,1,NULL,NULL,1,'2021-05-18 01:09:37','2021-05-18 01:09:37','93e87cb1-36b0-4b9c-8f3e-7fafe7ec61e7'),(17245,17245,1,NULL,NULL,1,'2021-05-18 01:09:39','2021-05-18 01:09:39','0bd3f1be-75f5-4a57-a36d-48817a9fe32d'),(17246,17246,1,NULL,NULL,1,'2021-05-18 01:09:41','2021-05-18 01:09:41','aa62b584-1c5a-4f3a-af32-fa5ed81f15f3'),(17247,17247,1,NULL,NULL,1,'2021-05-18 01:09:44','2021-05-18 01:09:44','fe120633-1227-4aeb-bbe6-afcc2e39d8c1'),(17248,17248,1,NULL,NULL,1,'2021-05-18 01:09:46','2021-05-18 01:09:46','044b479a-439b-4dd8-922a-1f2b18f01a35'),(17249,17249,1,NULL,NULL,1,'2021-05-18 01:09:49','2021-05-18 01:09:49','92d81754-566d-48ce-88a2-f63fb82bfae0'),(17250,17250,1,NULL,NULL,1,'2021-05-18 01:09:51','2021-05-18 01:09:51','b652bb45-ad1f-46a4-8e8e-d6b9908490ed'),(17251,17251,1,NULL,NULL,1,'2021-05-18 01:09:53','2021-05-18 01:09:53','bdcc5849-727f-4b49-acb2-bb2610bdbc13'),(17252,17252,1,NULL,NULL,1,'2021-05-18 01:09:56','2021-05-18 01:09:56','2657f260-4638-490b-8768-3f525c1b312e'),(17253,17253,1,NULL,NULL,1,'2021-05-18 01:11:53','2021-05-18 01:11:53','6b72c464-47cb-458f-bb7b-c214c1876f0c'),(17254,17254,1,NULL,NULL,1,'2021-05-18 01:11:55','2021-05-18 01:11:55','a17f9ca4-0a01-44e8-889b-90bb20e4ffc5'),(17255,17255,1,NULL,NULL,1,'2021-05-18 01:11:58','2021-05-18 01:11:58','49bb0857-d62e-417a-87cd-44a912045272'),(17256,17256,1,NULL,NULL,1,'2021-05-18 01:12:00','2021-05-18 01:12:00','c4dcc00c-2e0e-4a42-a404-90738cbfa4cf'),(17257,17257,1,NULL,NULL,1,'2021-05-18 01:12:03','2021-05-18 01:12:03','02f87a2e-7727-4775-ba16-6d670e1a1b61'),(17258,17258,1,NULL,NULL,1,'2021-05-18 01:12:06','2021-05-18 01:12:06','bceb2cbd-297c-4ad0-9def-cd6f1e8bf08a'),(17259,17259,1,NULL,NULL,1,'2021-05-18 01:12:08','2021-05-18 01:12:08','f881459c-2723-4ae5-bc9c-00012167e0ad'),(17260,17260,1,NULL,NULL,1,'2021-05-18 01:12:10','2021-05-18 01:12:10','a3033b58-e886-46a4-b7bf-fa80036ea6e9'),(17261,17261,1,NULL,NULL,1,'2021-05-18 01:12:13','2021-05-18 01:12:13','65cc840f-53d0-42e0-9868-ecc99bd8df48'),(17262,17262,1,NULL,NULL,1,'2021-05-18 01:12:15','2021-05-18 01:12:15','c43f816e-709d-459e-b229-4b7d59977d2d'),(17263,17263,1,NULL,NULL,1,'2021-05-18 01:12:18','2021-05-18 01:12:18','32c10ea8-8491-4772-9f66-cbe5ba25a0ec'),(17264,17264,1,NULL,NULL,1,'2021-05-18 01:12:21','2021-05-18 01:12:21','43ab90d5-595e-46b6-a11f-aaf5d2ec7a75'),(17265,17265,1,NULL,NULL,1,'2021-05-18 01:12:24','2021-05-18 01:12:24','c31d3a31-1e18-4265-91b4-f73268ec4e13'),(17266,17266,1,NULL,NULL,1,'2021-05-18 01:12:47','2021-05-18 01:12:47','cebc0fa0-c688-4717-983e-efb2e1d47a99'),(17267,17267,1,NULL,NULL,1,'2021-05-18 01:13:05','2021-05-18 01:13:05','66031aaa-6b3c-40d1-a8a8-cb4b0fd48ce0'),(17268,17268,1,NULL,NULL,1,'2021-05-18 01:13:06','2021-05-18 01:13:06','27838277-1c86-40b1-a306-2cf2d15410a8'),(17269,17269,1,NULL,NULL,1,'2021-05-18 01:13:09','2021-05-18 01:13:09','32082cfe-fec5-47b7-b42c-3bd427e2691e'),(17270,17270,1,NULL,NULL,1,'2021-05-18 01:13:19','2021-05-18 01:13:19','6aa082ff-b8cc-4475-b3d9-294fee19bbf1'),(17271,17271,1,NULL,NULL,1,'2021-05-18 01:13:30','2021-05-18 01:13:30','93f37b27-57dd-48b6-be81-38e14b144322'),(17272,17272,1,NULL,NULL,1,'2021-05-18 01:13:37','2021-05-18 01:13:37','0b74d022-7fff-40bf-a882-74717c035e61'),(17273,17273,1,NULL,NULL,1,'2021-05-18 01:13:48','2021-05-18 01:13:48','43d345f6-241d-4dcb-b58e-bb58e79b54d0'),(17274,17274,1,NULL,NULL,1,'2021-05-18 01:14:14','2021-05-18 01:14:14','42f8aaa7-5f18-4625-bdde-7885758d52ff'),(17275,17275,1,NULL,NULL,1,'2021-05-18 01:14:25','2021-05-18 01:14:25','0b9031a0-8568-4b98-8deb-ae25520d4dbf'),(17276,17276,1,NULL,NULL,1,'2021-05-18 01:14:26','2021-05-18 01:14:26','018c1968-cdf6-49aa-81ea-1fc7166be04e'),(17277,17277,1,NULL,NULL,1,'2021-05-18 01:14:39','2021-05-18 01:14:39','54179b33-9eaf-4d1a-a559-9679727f0fde'),(17278,17278,1,NULL,NULL,1,'2021-05-18 01:14:40','2021-05-18 01:14:40','48ebab29-7e6e-4e82-87dc-bd9fca61b4d5'),(17279,17279,1,NULL,NULL,1,'2021-05-18 01:14:41','2021-05-18 01:14:41','c572c6a8-0cb9-490b-b37f-a1d1e12b9657'),(17280,17280,1,NULL,NULL,1,'2021-05-18 01:14:43','2021-05-18 01:14:43','e854b9d2-b6db-48a8-93e5-ea24208cb177'),(17281,17281,1,NULL,NULL,1,'2021-05-18 01:14:53','2021-05-18 01:14:53','dc203ccb-0a65-4b9f-85d4-cbc063c2cd2a'),(17282,17282,1,NULL,NULL,1,'2021-05-18 01:15:03','2021-05-18 01:15:03','96091888-e655-452f-8275-abfba7ef9109'),(17283,17283,1,NULL,NULL,1,'2021-05-18 01:15:04','2021-05-18 01:15:04','b61869c6-29d3-48e0-ba0a-82b67e1825ce'),(17284,17284,1,NULL,NULL,1,'2021-05-18 01:15:19','2021-05-18 01:15:19','49e52d66-dd78-4c21-9859-4b396a395429'),(17285,17285,1,NULL,NULL,1,'2021-05-18 01:15:29','2021-05-18 01:15:29','cc3a4070-a85e-4f67-92c6-a9b70f639bee'),(17286,17286,1,NULL,NULL,1,'2021-05-18 01:15:32','2021-05-18 01:15:32','706b3e17-a0dc-492e-a93a-0963bcb90e8c'),(17287,17287,1,NULL,NULL,1,'2021-05-18 01:15:33','2021-05-18 01:15:33','83d05090-ea19-4404-b9f7-b1a1ad96befd'),(17288,17288,1,NULL,NULL,1,'2021-05-18 01:15:35','2021-05-18 01:15:35','2b42188e-030e-4671-802d-6da00bf5f7ea'),(17289,17289,1,NULL,NULL,1,'2021-05-18 01:15:37','2021-05-18 01:15:37','d066111c-3435-47a7-a8f5-254b39d9567a'),(17290,17290,1,NULL,NULL,1,'2021-05-18 01:15:38','2021-05-18 01:15:38','3a159f0f-22e9-4b72-ae7c-be325f22e43e'),(17291,17291,1,NULL,NULL,1,'2021-05-18 01:15:40','2021-05-18 01:15:40','100aa15b-aa21-4aaa-b828-6d86fcd1958f'),(17292,17292,1,NULL,NULL,1,'2021-05-18 01:15:44','2021-05-18 01:15:44','d5f62a63-ae6d-4e68-a888-d0056cb3c527'),(17293,17293,1,NULL,NULL,1,'2021-05-18 01:15:46','2021-05-18 01:15:46','e7afcc0a-1305-4f94-8a00-5fbd4947510f'),(17294,17294,1,NULL,NULL,1,'2021-05-18 01:15:48','2021-05-18 01:15:48','9326dc5c-5afc-4cae-9218-fb326d13cffe'),(17295,17295,1,NULL,NULL,1,'2021-05-18 01:15:50','2021-05-18 01:15:50','c8230614-c26f-4397-9cc8-a062326159c8'),(17296,17296,1,NULL,NULL,1,'2021-05-18 01:15:52','2021-05-18 01:15:52','2fb90fba-ceb4-4879-8aa7-f1dc7ba923b4'),(17297,17297,1,NULL,NULL,1,'2021-05-18 01:15:54','2021-05-18 01:15:54','41e16b4b-ce00-4de4-a629-d65c51ed955d'),(17298,17298,1,NULL,NULL,1,'2021-05-18 01:15:56','2021-05-18 01:15:56','a12d6586-2f69-4d84-82c2-a85e8718120c'),(17299,17299,1,NULL,NULL,1,'2021-05-18 01:15:58','2021-05-18 01:15:58','7b30a7f3-ea7d-4fd3-bff0-819a69c7d980'),(17300,17300,1,NULL,NULL,1,'2021-05-18 01:15:59','2021-05-18 01:15:59','dfacb9bb-6db4-4c11-8390-5484bb573f40'),(17301,17301,1,NULL,NULL,1,'2021-05-18 01:16:00','2021-05-18 01:16:00','fcdda309-b52e-4931-9d4d-d0ea0f0da5d6'),(17302,17302,1,NULL,NULL,1,'2021-05-18 01:16:02','2021-05-18 01:16:02','0a82ef8d-cdee-4b4d-96e4-ad24f436853a'),(17303,17303,1,NULL,NULL,1,'2021-05-18 01:16:07','2021-05-18 01:16:07','5a65ad73-97d5-4465-b623-1659cf286e0b'),(17304,17304,1,NULL,NULL,1,'2021-05-18 01:16:32','2021-05-18 01:16:32','e1bad4f2-76d0-47fc-b654-e290727b1cd9'),(17305,17305,1,NULL,NULL,1,'2021-05-18 01:16:54','2021-05-18 01:16:54','9396b0f1-9e81-4b87-aed9-2be7010956d0'),(17306,17306,1,NULL,NULL,1,'2021-05-18 01:17:20','2021-05-18 01:17:20','07915c02-ca5c-41e6-babf-8101b6a6f168'),(17307,17307,1,NULL,NULL,1,'2021-05-18 01:17:45','2021-05-18 01:17:45','8033a5d4-5606-4670-be21-bb45fbd35b3f'),(17308,17308,1,NULL,NULL,1,'2021-05-18 01:18:11','2021-05-18 01:18:11','a056c022-1408-4263-936c-27c403ec6ff0'),(17309,17309,1,NULL,NULL,1,'2021-05-18 01:18:33','2021-05-18 01:18:33','52a0dc16-41b1-4e29-bcee-d3d726bfe3e8'),(17310,17310,1,NULL,NULL,1,'2021-05-18 01:18:54','2021-05-18 01:18:54','a9d8149e-934f-4881-90c1-7de987c0f8a0'),(17311,17311,1,NULL,NULL,1,'2021-05-18 01:19:24','2021-05-18 01:19:24','87a2163b-6b7c-41fe-9f05-fe6e19e7f61c'),(17312,17312,1,NULL,NULL,1,'2021-05-18 01:19:46','2021-05-18 01:19:46','abe205b0-026a-473c-90b1-a01ddf4516d9'),(17313,17313,1,NULL,NULL,1,'2021-05-18 01:20:10','2021-05-18 01:20:10','94355dd2-a0ab-4cb7-95de-bd77dc3c6243'),(17314,17314,1,NULL,NULL,1,'2021-05-18 01:20:30','2021-05-18 01:20:30','e4fcdb09-d448-415a-8993-66a88f131a50'),(17315,17315,1,NULL,NULL,1,'2021-05-18 01:20:54','2021-05-18 01:20:54','e441551c-ab42-4872-b2df-05a01f7f476e'),(17316,17316,1,NULL,NULL,1,'2021-05-18 01:21:14','2021-05-18 01:21:14','baad0f83-bb82-4473-a1f7-963c348c3e49'),(17317,17317,1,NULL,NULL,1,'2021-05-18 01:21:38','2021-05-18 01:21:38','efb689ac-8b86-4d5b-b5fa-7778c39f8be6'),(17318,17318,1,NULL,NULL,1,'2021-05-18 01:21:57','2021-05-18 01:21:57','2c6cc738-6b63-46c7-afc5-c2ae535e95ce'),(17319,17319,1,NULL,NULL,1,'2021-05-18 01:22:21','2021-05-18 01:22:21','ae50cfcd-399f-4f5a-8db1-533efcff6f94'),(17320,17320,1,NULL,NULL,1,'2021-05-18 01:22:53','2021-05-18 01:22:53','1b2672a3-17cd-4ff0-86df-8324256d05fc'),(17321,17321,1,NULL,NULL,1,'2021-05-18 01:23:16','2021-05-18 01:23:16','522dc0b0-2ace-40e6-a49e-aa749c6dda4c'),(17322,17322,1,NULL,NULL,1,'2021-05-18 01:23:18','2021-05-18 01:23:18','59ffa01f-2df3-4324-bb73-7ddd27bc103e'),(17323,17323,1,NULL,NULL,1,'2021-05-18 01:23:20','2021-05-18 01:23:20','2d2a2cc5-f005-44a4-9d9e-c33c530b3557'),(17324,17324,1,NULL,NULL,1,'2021-05-18 01:23:22','2021-05-18 01:23:22','44229b6f-215e-4d53-933a-9dd9a1b24f1d'),(17325,17325,1,NULL,NULL,1,'2021-05-18 01:23:24','2021-05-18 01:23:24','8f060e49-a82e-47f2-9c59-33dd9476240a'),(17326,17326,1,NULL,NULL,1,'2021-05-18 01:23:26','2021-05-18 01:23:26','0f838e90-6e30-4d56-ae9a-854417781d5b'),(17327,17327,1,NULL,NULL,1,'2021-05-18 01:23:28','2021-05-18 01:23:28','7373436a-6efd-4445-adae-f98d5b582777'),(17328,17328,1,NULL,NULL,1,'2021-05-18 01:23:30','2021-05-18 01:23:30','99cee057-0988-4786-9736-bf1095ebb9c8'),(17329,17329,1,NULL,NULL,1,'2021-05-18 01:23:31','2021-05-18 01:23:31','b3c9871d-647c-4f8e-a5e8-a5760a5cbe53'),(17330,17330,1,NULL,NULL,1,'2021-05-18 01:23:33','2021-05-18 01:23:33','879dc9dc-4723-42cd-9c64-999d7b8ee333'),(17331,17331,1,NULL,NULL,1,'2021-05-18 01:23:35','2021-05-18 01:23:35','f3a4488f-9dec-4339-a178-16eadd7dc046'),(17332,17332,1,NULL,NULL,1,'2021-05-18 01:23:37','2021-05-18 01:23:37','b4516ca7-9cc9-47ce-a6f4-88978a2b0766'),(17333,17333,1,NULL,NULL,1,'2021-05-18 01:23:39','2021-05-18 01:23:39','a582dfcf-4b99-4c60-b479-59e94d14fb67'),(17334,17334,1,NULL,NULL,1,'2021-05-18 01:23:41','2021-05-18 01:23:41','17a057ff-78f4-4274-a63b-13607e55cbe9'),(17335,17335,1,NULL,NULL,1,'2021-05-18 01:23:44','2021-05-18 01:23:44','bdf9ffb5-7f91-418b-b397-565ab9851a67'),(17336,17336,1,NULL,NULL,1,'2021-05-18 01:23:51','2021-05-18 01:23:51','0f0eb945-c296-41e0-b185-30e94749d8fe'),(17337,17337,1,NULL,NULL,1,'2021-05-18 01:24:00','2021-05-18 01:24:00','ab0f42ef-eb5c-490e-8e66-054b85e14d52'),(17338,17338,1,NULL,NULL,1,'2021-05-18 01:24:09','2021-05-18 01:24:09','3dcc1ace-8c23-40eb-aec4-94fdf66b72c6'),(17339,17339,1,NULL,NULL,1,'2021-05-18 01:24:10','2021-05-18 01:24:10','13006df2-3658-4cf8-97a8-651766a0cd98'),(17340,17340,1,NULL,NULL,1,'2021-05-18 01:24:11','2021-05-18 01:24:11','9af86b33-7cc1-4d4b-8519-5298591344ba'),(17341,17341,1,NULL,NULL,1,'2021-05-18 01:24:13','2021-05-18 01:24:13','2d6c30d3-18a9-4825-83bd-44c3137b3109'),(17342,17342,1,NULL,NULL,1,'2021-05-18 01:24:14','2021-05-18 01:24:14','53c22639-56fc-4d88-8639-1a42fc1117b6'),(17343,17343,1,NULL,NULL,1,'2021-05-18 01:24:16','2021-05-18 01:24:16','b5b93237-0de0-4b91-81c1-8393d18ed99e'),(17344,17344,1,NULL,NULL,1,'2021-05-18 01:24:17','2021-05-18 01:24:17','b02efde7-51dd-438f-99f0-71bbd4ec9e8a'),(17345,17345,1,NULL,NULL,1,'2021-05-18 01:24:19','2021-05-18 01:24:19','d3c61cab-7a1a-4d7c-92f0-e313ca4d4c03'),(17346,17346,1,NULL,NULL,1,'2021-05-18 01:24:20','2021-05-18 01:24:20','d60a3db3-dde8-4aa0-87b8-230e5efa769d'),(17347,17347,1,NULL,NULL,1,'2021-05-18 01:24:22','2021-05-18 01:24:22','65cbec7b-a6d4-496a-857c-af19b1a4824c'),(17348,17348,1,NULL,NULL,1,'2021-05-18 01:24:23','2021-05-18 01:24:23','4a6e58ca-656d-4cca-a533-9980a7db1ad9'),(17349,17349,1,NULL,NULL,1,'2021-05-18 01:24:25','2021-05-18 01:24:25','3d69faed-4cbd-47cc-bf1b-17eb0c61751b'),(17350,17350,1,NULL,NULL,1,'2021-05-18 01:24:26','2021-05-18 01:24:26','26c036e0-44d3-4eec-a065-ba4933b86185'),(17351,17351,1,NULL,NULL,1,'2021-05-18 01:24:28','2021-05-18 01:24:28','3870d362-0bac-40af-beca-4d80a1f69107'),(17352,17352,1,NULL,NULL,1,'2021-05-18 01:24:29','2021-05-18 01:24:29','a18b66ad-4f0f-4a8a-8aef-73e3cc86c4d7'),(17353,17353,1,NULL,NULL,1,'2021-05-18 01:24:31','2021-05-18 01:24:31','fdb2c423-a0f5-4986-a040-48e53deaa5a0'),(17354,17354,1,NULL,NULL,1,'2021-05-18 01:24:36','2021-05-18 01:24:36','a4ce95a5-a8e4-4c15-9709-d83010f5744e'),(17355,17355,1,NULL,NULL,1,'2021-05-18 01:24:41','2021-05-18 01:24:41','1a1583e4-c578-4f83-ab77-d6736dbf3b71'),(17356,17356,1,NULL,NULL,1,'2021-05-18 01:24:42','2021-05-18 01:24:42','6e1f7882-0bd0-437b-bfdf-1e348b0364b6'),(17357,17357,1,NULL,NULL,1,'2021-05-18 01:24:45','2021-05-18 01:24:45','1e7c5042-9d02-4e19-b996-3b8e03806abe'),(17358,17358,1,NULL,NULL,1,'2021-05-18 01:24:46','2021-05-18 01:24:46','8a19f17b-8df2-4184-a91f-1c4cb66aa6d2'),(17359,17359,1,NULL,NULL,1,'2021-05-18 01:24:51','2021-05-18 01:24:51','6d2c6295-6f28-427a-a0a7-d04c718f1d31'),(17360,17360,1,NULL,NULL,1,'2021-05-18 01:25:11','2021-05-18 01:25:11','fe32d0cc-774f-4608-8911-4d8cf81fc3ec'),(17361,17361,1,NULL,NULL,1,'2021-05-18 01:25:19','2021-05-18 01:25:19','b274321e-2c94-4db2-97f1-eed4fce44947'),(17362,17362,1,NULL,NULL,1,'2021-05-18 01:25:34','2021-05-18 01:25:34','2716bb92-1e66-477b-9383-b85e95c0932c'),(17363,17363,1,NULL,NULL,1,'2021-05-18 01:25:35','2021-05-18 01:25:35','ec9c5d17-0cee-4eff-a57c-7935a9c43818'),(17364,17364,1,NULL,NULL,1,'2021-05-18 01:25:36','2021-05-18 01:25:36','b1b05f9f-e9dc-432c-b631-b2ea36ff300c'),(17365,17365,1,NULL,NULL,1,'2021-05-18 01:25:38','2021-05-18 01:25:38','f52de645-beee-4241-8dc6-c5813543a43a'),(17366,17366,1,NULL,NULL,1,'2021-05-18 01:25:39','2021-05-18 01:25:39','9e32c915-47c4-4bc5-9db2-e4ef71f8c884'),(17367,17367,1,NULL,NULL,1,'2021-05-18 01:25:40','2021-05-18 01:25:40','e06dd42a-dff2-436e-a48b-2c97f5c7f0f3'),(17368,17368,1,NULL,NULL,1,'2021-05-18 01:25:41','2021-05-18 01:25:41','9ae2da8c-7f73-4b9a-a0ab-e4dd60b890a1'),(17369,17369,1,NULL,NULL,1,'2021-05-18 01:25:41','2021-05-18 01:25:41','ff6ab9df-3131-41be-b287-2781b62e5636'),(17370,17370,1,NULL,NULL,1,'2021-05-18 01:25:42','2021-05-18 01:25:42','bb6514eb-e130-412a-afc4-d5ca97922db1'),(17371,17371,1,NULL,NULL,1,'2021-05-18 01:25:43','2021-05-18 01:25:43','ff4234ee-d1d1-400a-a96a-370edc62b9be'),(17372,17372,1,NULL,NULL,1,'2021-05-18 01:25:43','2021-05-18 01:25:43','75c28c3c-3f5f-46b7-bcb9-11c4f1d5289d'),(17373,17373,1,NULL,NULL,1,'2021-05-18 01:25:44','2021-05-18 01:25:44','24c96ea3-43ba-4f8d-8a26-44280c02219b'),(17374,17374,1,NULL,NULL,1,'2021-05-18 01:25:44','2021-05-18 01:25:44','f01259af-5179-4905-ad57-d7e6e2deb24e'),(17375,17375,1,NULL,NULL,1,'2021-05-18 01:25:45','2021-05-18 01:25:45','fdc9486a-744e-4bf1-937f-8269a9503bcc'),(17376,17376,1,NULL,NULL,1,'2021-05-18 01:25:46','2021-05-18 01:25:46','f2281222-4954-485f-a482-15e293f4b86c'),(17377,17377,1,NULL,NULL,1,'2021-05-18 01:25:46','2021-05-18 01:25:46','9c864850-e900-4182-9f39-001e3ad662c8'),(17378,17378,1,NULL,NULL,1,'2021-05-18 01:25:47','2021-05-18 01:25:47','2cbde627-bc67-4943-8c9c-3c88697cf3e8'),(17379,17379,1,NULL,NULL,1,'2021-05-18 01:25:47','2021-05-18 01:25:47','2b2c423a-71b5-44ad-abf2-cff40b00fab6'),(17380,17380,1,NULL,NULL,1,'2021-05-18 01:25:48','2021-05-18 01:25:48','2a2ce5c8-4384-45b0-b98a-889b7e7124a5'),(17381,17381,1,NULL,NULL,1,'2021-05-18 01:25:49','2021-05-18 01:25:49','445b112f-567d-4d88-a1ee-9accef4c18f3'),(17382,17382,1,NULL,NULL,1,'2021-05-18 01:25:49','2021-05-18 01:25:49','3f08b96f-d438-4ee4-ba14-b96be9d085be'),(17383,17383,1,NULL,NULL,1,'2021-05-18 01:25:50','2021-05-18 01:25:50','d99aa85b-dea3-4292-ac51-e7b80b16eefc'),(17384,17384,1,NULL,NULL,1,'2021-05-18 01:25:50','2021-05-18 01:25:50','8c37b3af-c526-4498-8262-c7255997a8ed'),(17385,17385,1,NULL,NULL,1,'2021-05-18 01:25:55','2021-05-18 01:25:55','91d1a89f-9a05-425f-85b8-f9c7dfc096ab'),(17386,17386,1,NULL,NULL,1,'2021-05-18 01:25:57','2021-05-18 01:25:57','6827fbed-689d-468c-9869-7c8562d9b87e'),(17387,17387,1,NULL,NULL,1,'2021-05-18 01:26:10','2021-05-18 01:26:10','86fd642a-e699-421a-9f6b-28c65bb6a769'),(17388,17388,1,NULL,NULL,1,'2021-05-18 01:26:11','2021-05-18 01:26:11','88132356-d080-46df-9802-463638480b4a'),(17389,17389,1,NULL,NULL,1,'2021-05-18 01:26:12','2021-05-18 01:26:12','fb9e5c39-f5d8-46b1-a5f8-d193c219785a'),(17390,17390,1,NULL,NULL,1,'2021-05-18 01:26:14','2021-05-18 01:26:14','edb06b27-cf65-4f8c-b6b6-7acc381888a7'),(17391,17391,1,NULL,NULL,1,'2021-05-18 01:26:15','2021-05-18 01:26:15','a1796d61-6b1a-4776-bc97-36c28a4721b7'),(17392,17392,1,NULL,NULL,1,'2021-05-18 01:26:17','2021-05-18 01:26:17','76f5786e-967f-4c02-ab76-3f163d22b280'),(17393,17393,1,NULL,NULL,1,'2021-05-18 01:26:18','2021-05-18 01:26:18','a2107d2f-aaca-4735-849f-1a74652fe6ee'),(17394,17394,1,NULL,NULL,1,'2021-05-18 01:26:19','2021-05-18 01:26:19','3367298b-e65f-4b49-9959-9bd88970d884'),(17395,17395,1,NULL,NULL,1,'2021-05-18 01:26:29','2021-05-18 01:26:29','81ad6785-9fd3-438d-9c3c-3cf8583612ca'),(17396,17396,1,NULL,NULL,1,'2021-05-18 01:26:42','2021-05-18 01:26:42','6233e510-81d3-4fe4-9f48-830d7f5dc164'),(17397,17397,1,NULL,NULL,1,'2021-05-18 01:26:53','2021-05-18 01:26:53','8a03261d-e5db-442b-be76-1c4ff19034ab'),(17398,17398,1,NULL,NULL,1,'2021-05-18 01:27:06','2021-05-18 01:27:06','1904960c-cc51-44e8-b97e-8a7394557b08'),(17399,17399,1,NULL,NULL,1,'2021-05-18 01:27:08','2021-05-18 01:27:08','95594a5f-ec1b-4c63-a6a8-ecec5591514f'),(17400,17400,1,NULL,NULL,1,'2021-05-18 01:27:11','2021-05-18 01:27:11','17e28f04-b8aa-49d8-a309-59835c85c72b'),(17401,17401,1,NULL,NULL,1,'2021-05-18 01:27:13','2021-05-18 01:27:13','3dc16c72-194f-4f6b-8441-dbb8da07d7f0'),(17402,17402,1,NULL,NULL,1,'2021-05-18 01:27:16','2021-05-18 01:27:16','930d5303-40e0-4a9a-acc6-e38082d5bf8e'),(17403,17403,1,NULL,NULL,1,'2021-05-18 01:27:18','2021-05-18 01:27:18','02f9b1f2-1ade-483b-bc34-ac8550f0dec3'),(17404,17404,1,NULL,NULL,1,'2021-05-18 01:27:20','2021-05-18 01:27:20','b5630d94-9667-4960-80e8-8739aed4b97f'),(17405,17405,1,NULL,NULL,1,'2021-05-18 01:27:22','2021-05-18 01:27:22','fe0d79fd-f240-44b9-8df7-4ab2bb5b2150'),(17406,17406,1,NULL,NULL,1,'2021-05-18 01:27:24','2021-05-18 01:27:24','13634fbf-fffb-4d8e-965d-a97f3117cf56'),(17407,17407,1,NULL,NULL,1,'2021-05-18 01:27:28','2021-05-18 01:27:28','e5d9eb0f-4c8f-4ffe-9f04-d42eb864145b'),(17408,17408,1,NULL,NULL,1,'2021-05-18 01:27:30','2021-05-18 01:27:30','bf05cda1-26b8-4514-9918-025cdc85bd69'),(17409,17409,1,NULL,NULL,1,'2021-05-18 01:27:32','2021-05-18 01:27:32','04fac336-e8b8-4fb1-a3e1-4f7d42a88226'),(17410,17410,1,NULL,NULL,1,'2021-05-18 01:27:37','2021-05-18 01:27:37','a3eafc49-d32c-4913-b7ff-3d12770ac2ab'),(17411,17411,1,NULL,NULL,1,'2021-05-18 01:27:38','2021-05-18 01:27:38','95c6887c-7f3a-402a-8fdf-99527a23975a'),(17412,17412,1,NULL,NULL,1,'2021-05-18 01:27:39','2021-05-18 01:27:39','4b92d6c2-bca2-4faf-9b15-094e0c4ba3ab'),(17413,17413,1,NULL,NULL,1,'2021-05-18 01:27:43','2021-05-18 01:27:43','29df294f-5576-492e-a088-3bf04ff0881f'),(17414,17414,1,NULL,NULL,1,'2021-05-18 01:27:46','2021-05-18 01:27:46','6e99bd15-0be1-48b6-8ae2-d0bb3b2d287d'),(17415,17415,1,NULL,NULL,1,'2021-05-18 01:27:49','2021-05-18 01:27:49','fd2cbba5-4d37-4195-ac44-de0582f3ce05'),(17416,17416,1,NULL,NULL,1,'2021-05-18 01:27:52','2021-05-18 01:27:52','85b24f4d-6a92-4d52-b6bb-2f0e9b604958'),(17417,17417,1,NULL,NULL,1,'2021-05-18 01:27:57','2021-05-18 01:27:57','5b189f5c-457e-450d-ac56-6c21bb753905'),(17418,17418,1,NULL,NULL,1,'2021-05-18 01:28:02','2021-05-18 01:28:02','7e3783f6-9e1a-4d0d-b3b0-dea1e000e173'),(17419,17419,1,NULL,NULL,1,'2021-05-18 01:28:05','2021-05-18 01:28:05','1177e31d-fb90-43d2-930d-7b720a29418d'),(17420,17420,1,NULL,NULL,1,'2021-05-18 01:28:10','2021-05-18 01:28:10','1dcce41b-23aa-45cb-b816-f5558cabe4bd'),(17421,17421,1,NULL,NULL,1,'2021-05-18 01:28:14','2021-05-18 01:28:14','ede55e87-9f64-4cd7-85d2-9180ee9a3110'),(17422,17422,1,NULL,NULL,1,'2021-05-18 01:28:16','2021-05-18 01:28:16','88b1c4ab-3464-4512-8f62-674d86bc7d78'),(17423,17423,1,NULL,NULL,1,'2021-05-18 01:28:19','2021-05-18 01:28:19','95f52329-0033-4fc5-9f95-4187a6fdb1de'),(17424,17424,1,NULL,NULL,1,'2021-05-18 01:28:22','2021-05-18 01:28:22','75603584-b098-4849-9c94-79745312baac'),(17425,17425,1,NULL,NULL,1,'2021-05-18 01:28:25','2021-05-18 01:28:25','f2ce1eb8-72cc-45b4-bf21-947fa8c3d1b4'),(17426,17426,1,NULL,NULL,1,'2021-05-18 01:28:28','2021-05-18 01:28:28','2529bcd3-532b-4975-a441-feea89c2811c'),(17427,17427,1,NULL,NULL,1,'2021-05-18 01:28:31','2021-05-18 01:28:31','66f9a92d-1e52-446a-af9a-948116a376d7'),(17428,17428,1,NULL,NULL,1,'2021-05-18 01:28:35','2021-05-18 01:28:35','fda5f6a4-10ab-4e62-8e71-afffc9b9b9af'),(17429,17429,1,NULL,NULL,1,'2021-05-18 01:28:38','2021-05-18 01:28:38','4dd9bf5a-f081-4b1e-99aa-093a6ce03329'),(17430,17430,1,NULL,NULL,1,'2021-05-18 01:28:42','2021-05-18 01:28:42','5a41ce4e-5e7c-412c-bac1-ee91c82b50c8'),(17431,17431,1,NULL,NULL,1,'2021-05-18 01:28:45','2021-05-18 01:28:45','4d85ca83-e97a-4cdc-ae2c-549c72b95057'),(17432,17432,1,NULL,NULL,1,'2021-05-18 01:28:48','2021-05-18 01:28:48','25cbe647-4ecb-429c-90d9-66c6f94af993'),(17433,17433,1,NULL,NULL,1,'2021-05-18 01:28:52','2021-05-18 01:28:52','7f168825-fd32-46d3-94ae-1bdcd1b88123'),(17434,17434,1,NULL,NULL,1,'2021-05-18 01:28:55','2021-05-18 01:28:55','d7543da0-40ad-487f-8937-c74fc77ff0c8'),(17435,17435,1,NULL,NULL,1,'2021-05-18 01:28:58','2021-05-18 01:28:58','18ebedc1-1672-4e44-8c7c-703c2a3408fc'),(17436,17436,1,NULL,NULL,1,'2021-05-18 01:29:01','2021-05-18 01:29:01','dd3d252f-3b0a-4ac1-90c8-254734342a12'),(17437,17437,1,NULL,NULL,1,'2021-05-18 01:29:05','2021-05-18 01:29:05','6a5a0946-209c-4f64-8bc9-2906a62aa2b6'),(17438,17438,1,NULL,NULL,1,'2021-05-18 01:29:08','2021-05-18 01:29:08','7c543650-07d1-442e-afab-893392569662'),(17439,17439,1,NULL,NULL,1,'2021-05-18 01:29:11','2021-05-18 01:29:11','9cba5ba9-28da-4bcd-bcbe-5a44fa556f09'),(17440,17440,1,NULL,NULL,1,'2021-05-18 01:29:15','2021-05-18 01:29:15','11cc24a9-3e8e-481b-898d-111542de0857'),(17441,17441,1,NULL,NULL,1,'2021-05-18 01:29:18','2021-05-18 01:29:18','3df5d5d9-a2b7-4e33-b43f-01387b134247'),(17442,17442,1,NULL,NULL,1,'2021-05-18 01:29:21','2021-05-18 01:29:21','a2f3ef8b-4a15-43a4-a3c3-bf7e63d920b0'),(17443,17443,1,NULL,NULL,1,'2021-05-18 01:29:25','2021-05-18 01:29:25','53355165-4dbe-4e28-b2d5-9f71a790ecb2'),(17444,17444,1,NULL,NULL,1,'2021-05-18 01:29:29','2021-05-18 01:29:29','bf19cbc4-b8be-4e68-8bc7-9ef4d435e843'),(17445,17445,1,NULL,NULL,1,'2021-05-18 01:29:33','2021-05-18 01:29:33','4e157247-9cba-45da-8b76-28b97c2354c1'),(17446,17446,1,NULL,NULL,1,'2021-05-18 01:29:41','2021-05-18 01:29:41','ebd73f99-fda9-48fe-8248-cb698a167a00'),(17447,17447,1,NULL,NULL,1,'2021-05-18 01:29:45','2021-05-18 01:29:45','174073ab-857d-4242-b1fd-1991ae440922'),(17448,17448,1,NULL,NULL,1,'2021-05-18 01:29:48','2021-05-18 01:29:48','36438996-f796-499d-b201-efc59c5a24da'),(17449,17449,1,NULL,NULL,1,'2021-05-18 01:29:54','2021-05-18 01:29:54','e09a53a2-af7a-43d6-9fae-8ad756fd3030'),(17450,17450,1,NULL,NULL,1,'2021-05-18 01:29:58','2021-05-18 01:29:58','85ee8d90-0754-4128-b4b3-d1c3133e434f'),(17451,17451,1,NULL,NULL,1,'2021-05-18 01:30:03','2021-05-18 01:30:03','59f7429d-d698-4ffc-a612-916b2e90d6c5'),(17452,17452,1,NULL,NULL,1,'2021-05-18 01:30:07','2021-05-18 01:30:07','375ee9bc-a0a3-4f1c-b56b-376999c89b6e'),(17453,17453,1,NULL,NULL,1,'2021-05-18 01:30:11','2021-05-18 01:30:11','432ce102-6c29-40fb-bd4a-d94737469a9a'),(17454,17454,1,NULL,NULL,1,'2021-05-18 01:30:14','2021-05-18 01:30:14','8fdb0555-b432-4619-8a29-cbfa9cc5c341'),(17455,17455,1,NULL,NULL,1,'2021-05-18 01:30:17','2021-05-18 01:30:17','1996ea7b-4a33-4a8a-9940-71c694f18370'),(17456,17456,1,NULL,NULL,1,'2021-05-18 01:30:19','2021-05-18 01:30:19','a6ba7bda-989d-4557-85d3-6df1c5ad02f1'),(17457,17457,1,NULL,NULL,1,'2021-05-18 01:30:21','2021-05-18 01:30:21','ab1f4050-4b07-4eee-a62c-a98513cb8f43'),(17458,17458,1,NULL,NULL,1,'2021-05-18 01:30:23','2021-05-18 01:30:23','cfbe5abd-b4d3-4d92-aac7-41bbc7a2010c'),(17459,17459,1,NULL,NULL,1,'2021-05-18 01:30:25','2021-05-18 01:30:25','1e41897c-ebc5-4803-89a4-12f6f9254c5a'),(17460,17460,1,NULL,NULL,1,'2021-05-18 01:30:27','2021-05-18 01:30:27','e8534f40-86f9-4397-a04f-cd1a57931e0c'),(17461,17461,1,NULL,NULL,1,'2021-05-18 01:30:29','2021-05-18 01:30:29','c8abd983-5196-4c6e-94d2-44998e0bbf03'),(17462,17462,1,NULL,NULL,1,'2021-05-18 01:30:31','2021-05-18 01:30:31','5a4754b6-8a66-4622-9002-7fa5fd10bad4'),(17463,17463,1,NULL,NULL,1,'2021-05-18 01:30:33','2021-05-18 01:30:33','382433d1-a735-4d47-a30d-73227ad15dc6'),(17464,17464,1,NULL,NULL,1,'2021-05-18 01:30:35','2021-05-18 01:30:35','0a3820d2-fabb-4f2b-8088-bfc658ba9d60'),(17465,17465,1,NULL,NULL,1,'2021-05-18 01:30:37','2021-05-18 01:30:37','954ff00a-42dd-4e30-8f4e-bf14503017ff'),(17466,17466,1,NULL,NULL,1,'2021-05-18 01:30:39','2021-05-18 01:30:39','01fe1e2f-f9d2-4db8-a9f8-c9064e390560'),(17467,17467,1,NULL,NULL,1,'2021-05-18 01:30:43','2021-05-18 01:30:43','3dd89fe5-c5ac-4770-b837-5f43d8fda314'),(17468,17468,1,NULL,NULL,1,'2021-05-18 01:30:45','2021-05-18 01:30:45','23c5ea25-fc33-478d-aa08-2b6a4e78686a'),(17469,17469,1,NULL,NULL,1,'2021-05-18 01:30:48','2021-05-18 01:30:48','6f37111e-e49e-4937-8efd-dbc96ba637bd'),(17470,17470,1,NULL,NULL,1,'2021-05-18 01:30:50','2021-05-18 01:30:50','def8b3de-c195-477e-80cf-5277fa0d0174'),(17471,17471,1,NULL,NULL,1,'2021-05-18 01:30:52','2021-05-18 01:30:52','050d89ad-eb4b-40ba-ba2e-17ba54fd2228'),(17472,17472,1,NULL,NULL,1,'2021-05-18 01:30:55','2021-05-18 01:30:55','5cb46167-5417-4d05-99a6-124f7020bbb3'),(17473,17473,1,NULL,NULL,1,'2021-05-18 01:30:58','2021-05-18 01:30:58','b2998a93-0853-46ee-b4a4-082b287a55f9'),(17474,17474,1,NULL,NULL,1,'2021-05-18 01:31:00','2021-05-18 01:31:00','a4e40375-0896-4175-9403-8c88109b49c4'),(17475,17475,1,NULL,NULL,1,'2021-05-18 01:31:02','2021-05-18 01:31:02','3238822a-bf92-4c0c-bc92-05d9a82fc595'),(17476,17476,1,NULL,NULL,1,'2021-05-18 01:31:05','2021-05-18 01:31:05','2efce85e-2d40-43b5-948a-2231758a5684'),(17477,17477,1,NULL,NULL,1,'2021-05-18 01:31:08','2021-05-18 01:31:08','1112a942-975f-4f0a-aa76-b8c31a59f199'),(17478,17478,1,NULL,NULL,1,'2021-05-18 01:31:11','2021-05-18 01:31:11','90c927c2-1b0b-477c-a6b0-c6ae4e06ba84'),(17479,17479,1,NULL,NULL,1,'2021-05-18 01:31:14','2021-05-18 01:31:14','2840b022-eee4-4605-993e-30f25ed4f1bc'),(17480,17480,1,NULL,NULL,1,'2021-05-18 01:31:17','2021-05-18 01:31:17','5c1ffd76-fd3c-4905-8a39-9731bf1a5c26'),(17481,17481,1,NULL,NULL,1,'2021-05-18 01:31:20','2021-05-18 01:31:20','f277f501-8125-4345-989c-56b019220128'),(17482,17482,1,NULL,NULL,1,'2021-05-18 01:31:21','2021-05-18 01:31:21','b32dcfa5-ebd8-4507-888a-2a8daafe6731'),(17483,17483,1,NULL,NULL,1,'2021-05-18 01:31:26','2021-05-18 01:31:26','949ca18a-f276-441f-9b17-d797fa9ef4f8'),(17484,17484,1,NULL,NULL,1,'2021-05-18 01:31:32','2021-05-18 01:31:32','cfdec6ce-a31c-4098-81ff-ce668241c93f'),(17485,17485,1,NULL,NULL,1,'2021-05-18 01:31:38','2021-05-18 01:31:38','16898814-14bf-4ed7-817f-4a8375024033'),(17486,17486,1,NULL,NULL,1,'2021-05-18 01:31:44','2021-05-18 01:31:44','d71c45ec-aedc-41eb-af4c-66d6657538a3'),(17487,17487,1,NULL,NULL,1,'2021-05-18 01:31:49','2021-05-18 01:31:49','b2d7e8d7-b8e2-499f-9fdc-57b04f38e1de'),(17488,17488,1,NULL,NULL,1,'2021-05-18 01:31:55','2021-05-18 01:31:55','631da10c-c823-4453-bb91-3e7e4f06d896'),(17489,17489,1,NULL,NULL,1,'2021-05-18 01:32:00','2021-05-18 01:32:00','26f48490-910b-430c-9597-353b9cbc6efb'),(17490,17490,1,NULL,NULL,1,'2021-05-18 01:32:05','2021-05-18 01:32:05','58cc0e14-51f8-47ab-a5bf-e367466827bc'),(17491,17491,1,NULL,NULL,1,'2021-05-18 01:32:10','2021-05-18 01:32:10','cd6e6ec2-ad82-4f36-ab04-5cccee8e63cd'),(17492,17492,1,NULL,NULL,1,'2021-05-18 01:32:16','2021-05-18 01:32:16','3bbc5da5-4ae6-41fb-8aa4-833052dccde0'),(17493,17493,1,NULL,NULL,1,'2021-05-18 01:32:21','2021-05-18 01:32:21','d6272274-21e3-4734-9501-a28826806781'),(17494,17494,1,NULL,NULL,1,'2021-05-18 01:32:27','2021-05-18 01:32:27','21741e8d-20ac-46ee-9a35-a279999d6342'),(17495,17495,1,NULL,NULL,1,'2021-05-18 01:32:34','2021-05-18 01:32:34','289ff56f-0fc7-4650-aa04-aec868b97f5d'),(17496,17496,1,NULL,NULL,1,'2021-05-18 01:32:40','2021-05-18 01:32:40','8bac851b-0272-41dc-9382-b1765724d65c'),(17497,17497,1,NULL,NULL,1,'2021-05-18 01:32:44','2021-05-18 01:32:44','dc112884-b0e4-4406-b4bf-de30797b2e9b'),(17498,17498,1,NULL,NULL,1,'2021-05-18 01:32:46','2021-05-18 01:32:46','1311b78d-1956-4927-a253-e03270dd5cf2'),(17499,17499,1,NULL,NULL,1,'2021-05-18 01:32:52','2021-05-18 01:32:52','3201178d-835c-4c7d-8326-b5c6c4275352'),(17500,17500,1,NULL,NULL,1,'2021-05-18 01:32:54','2021-05-18 01:32:54','7ddcc330-433d-41cf-9c9b-898210fdd2b2'),(17501,17501,1,NULL,NULL,1,'2021-05-18 01:32:57','2021-05-18 01:32:57','fd16a0ce-9d01-4a05-8c8e-12dc3f2c7963'),(17502,17502,1,NULL,NULL,1,'2021-05-18 01:33:01','2021-05-18 01:33:01','2dc3a7b9-57ca-4801-96c7-bd56fd959a5b'),(17503,17503,1,NULL,NULL,1,'2021-05-18 01:33:03','2021-05-18 01:33:03','b7b6d67f-d195-41cf-9539-7bfa78dde222'),(17504,17504,1,NULL,NULL,1,'2021-05-18 01:33:04','2021-05-18 01:33:04','09f0aee6-3543-4e62-87bf-2186304a3545'),(17505,17505,1,NULL,NULL,1,'2021-05-18 01:33:07','2021-05-18 01:33:07','1d5b9d41-624f-47c1-8b1a-439935a85aa1'),(17506,17506,1,NULL,NULL,1,'2021-05-18 01:33:10','2021-05-18 01:33:10','411847fa-e132-475e-b665-cfc3d6472113'),(17507,17507,1,NULL,NULL,1,'2021-05-18 01:33:12','2021-05-18 01:33:12','d3e31d6f-bf07-4cd6-8d44-2cda8e5f8fcc'),(17508,17508,1,NULL,NULL,1,'2021-05-18 01:33:14','2021-05-18 01:33:14','91340248-8a1b-497f-9c23-8420a81ca213'),(17509,17509,1,NULL,NULL,1,'2021-05-18 01:33:16','2021-05-18 01:33:16','e8e9c946-79fb-4742-9160-879e1a5371b8'),(17510,17510,1,NULL,NULL,1,'2021-05-18 01:33:17','2021-05-18 01:33:17','c4029ef1-721d-488c-99d1-e7d03e34929f'),(17511,17511,1,NULL,NULL,1,'2021-05-18 01:33:18','2021-05-18 01:33:18','6e2a1cff-c65f-4a41-b489-908d5d3203bd'),(17512,17512,1,NULL,NULL,1,'2021-05-18 01:33:20','2021-05-18 01:33:20','6369da61-728f-4ce9-b7fe-e25e60e1e89a'),(17513,17513,1,NULL,NULL,1,'2021-05-18 01:33:21','2021-05-18 01:33:21','3f4d3b27-47e0-406d-ae43-0b1768de60e3'),(17514,17514,1,NULL,NULL,1,'2021-05-18 01:33:22','2021-05-18 01:33:22','f81948c3-e4bc-44f5-8345-b0eb74a9119d'),(17515,17515,1,NULL,NULL,1,'2021-05-18 01:33:23','2021-05-18 01:33:23','f3b7ec06-9092-4666-9d03-ea1a72325123'),(17516,17516,1,NULL,NULL,1,'2021-05-18 01:33:24','2021-05-18 01:33:24','0ff84f35-033a-4887-9894-0fd25700aa97'),(17517,17517,1,NULL,NULL,1,'2021-05-18 01:33:27','2021-05-18 01:33:27','d75b7048-226f-4d5c-87a5-ce3ac25f8ce1'),(17518,17518,1,NULL,NULL,1,'2021-05-18 01:33:29','2021-05-18 01:33:29','3ca469de-0888-4e9b-b32c-b757b7fb6240'),(17519,17519,1,NULL,NULL,1,'2021-05-18 01:33:31','2021-05-18 01:33:31','6193c5b4-f05d-4749-b819-edb0c8100056'),(17520,17520,1,NULL,NULL,1,'2021-05-18 01:33:31','2021-05-18 01:33:31','137d3add-f6ce-47aa-a864-e786e891ee18'),(17521,17521,1,NULL,NULL,1,'2021-05-18 01:33:35','2021-05-18 01:33:35','0476d0eb-4bfa-49a5-a623-5dee72234d9c'),(17522,17522,1,NULL,NULL,1,'2021-05-18 01:33:37','2021-05-18 01:33:37','e90690b4-2ac9-479f-aa43-ec58e8889d9d'),(17523,17523,1,NULL,NULL,1,'2021-05-18 01:33:39','2021-05-18 01:33:39','7f62cde2-4838-40d2-925e-7ac7f935857c'),(17524,17524,1,NULL,NULL,1,'2021-05-18 01:33:42','2021-05-18 01:33:42','73cf4ca0-b518-4924-a94d-d8239550917e'),(17525,17525,1,NULL,NULL,1,'2021-05-18 01:33:44','2021-05-18 01:33:44','76623858-0d39-4524-928b-e9bdef947f65'),(17526,17526,1,NULL,NULL,1,'2021-05-18 01:33:47','2021-05-18 01:33:47','9581b37c-0125-4b89-a033-92242461c525'),(17527,17527,1,NULL,NULL,1,'2021-05-18 01:33:49','2021-05-18 01:33:49','d1506e3d-54c8-4b2b-b6b2-c7cc0f188dc5'),(17528,17528,1,NULL,NULL,1,'2021-05-18 01:33:51','2021-05-18 01:33:51','94c3bb85-2f6a-4488-9a14-4cbb132e5bfc'),(17529,17529,1,NULL,NULL,1,'2021-05-18 01:33:54','2021-05-18 01:33:54','40f84ef5-3d80-4a1b-907e-dbe597570881'),(17530,17530,1,NULL,NULL,1,'2021-05-18 01:33:57','2021-05-18 01:33:57','665013bf-b1f8-430a-9af6-c196e5cc2adf'),(17531,17531,1,NULL,NULL,1,'2021-05-18 01:33:59','2021-05-18 01:33:59','be24a18f-1e2d-48ed-95b0-a0d8a25cf344'),(17532,17532,1,NULL,NULL,1,'2021-05-18 01:34:02','2021-05-18 01:34:02','db090e87-3ea4-4d29-b9f1-6ccac095a356'),(17533,17533,1,NULL,NULL,1,'2021-05-18 01:34:04','2021-05-18 01:34:04','06705842-3c7f-4a75-a085-3735aa36aecd'),(17534,17534,1,NULL,NULL,1,'2021-05-18 01:34:08','2021-05-18 01:34:08','f34485d5-4a4a-4474-86e2-f65c8835f8e8'),(17535,17535,1,NULL,NULL,1,'2021-05-18 01:34:10','2021-05-18 01:34:10','73007291-f2ce-4f7e-8e73-6b63d85b3275'),(17536,17536,1,NULL,NULL,1,'2021-05-18 01:34:12','2021-05-18 01:34:12','b2e7ba06-c75d-477e-b038-933e4bfcd1ff'),(17537,17537,1,NULL,NULL,1,'2021-05-18 01:34:15','2021-05-18 01:34:15','f0c901eb-f422-4776-ad1d-5393b5934ff5'),(17538,17538,1,NULL,NULL,1,'2021-05-18 01:34:17','2021-05-18 01:34:17','2614650f-a53e-4b8d-8789-1cfd5fec265b'),(17539,17539,1,NULL,NULL,1,'2021-05-18 01:34:19','2021-05-18 01:34:19','1f144cff-97a8-4646-9cce-f2c3c0559017'),(17540,17540,1,NULL,NULL,1,'2021-05-18 01:34:20','2021-05-18 01:34:20','ef2a8379-de40-4139-b972-9b816db0b2dc'),(17541,17541,1,NULL,NULL,1,'2021-05-18 01:34:22','2021-05-18 01:34:22','370ba27b-5531-4a71-a1e0-d44c3b7af83e'),(17542,17542,1,NULL,NULL,1,'2021-05-18 01:34:23','2021-05-18 01:34:23','d40697b0-e920-4ee2-9057-5af4ff37afea'),(17543,17543,1,NULL,NULL,1,'2021-05-18 01:34:26','2021-05-18 01:34:26','a396ae44-2d53-4c93-9f9b-62b2c4d6458c'),(17544,17544,1,NULL,NULL,1,'2021-05-18 01:34:29','2021-05-18 01:34:29','07061ff3-b7d3-47bc-a515-f5c388c075b4'),(17545,17545,1,NULL,NULL,1,'2021-05-18 01:34:30','2021-05-18 01:34:30','8ed331b4-94ef-4ce1-9b30-02a67435c979'),(17546,17546,1,NULL,NULL,1,'2021-05-18 01:34:32','2021-05-18 01:34:32','75663a05-776d-4c75-bab8-dc708730fe41'),(17547,17547,1,NULL,NULL,1,'2021-05-18 01:34:34','2021-05-18 01:34:34','48465167-625b-4c9a-a246-8df334222ab7'),(17548,17548,1,NULL,NULL,1,'2021-05-18 01:34:37','2021-05-18 01:34:37','35a2e40a-05e9-4249-93ac-2e8658f9a439'),(17549,17549,1,NULL,NULL,1,'2021-05-18 01:34:42','2021-05-18 01:34:42','1b49c62d-3b5d-4918-91ec-50f0cd3d9816'),(17550,17550,1,NULL,NULL,1,'2021-05-18 01:34:44','2021-05-18 01:34:44','a6a0c90e-5f04-47ef-99a0-f8ee8b01c7bd'),(17551,17551,1,NULL,NULL,1,'2021-05-18 01:34:45','2021-05-18 01:34:45','7cc925a2-a4ed-4bf0-ad81-810d88adb6ff'),(17552,17552,1,NULL,NULL,1,'2021-05-18 01:34:47','2021-05-18 01:34:47','355b968a-a196-4550-9508-7300ad7208a4'),(17553,17553,1,NULL,NULL,1,'2021-05-18 01:34:48','2021-05-18 01:34:48','af38381e-b552-47dd-a7f2-67870127c7e4'),(17554,17554,1,NULL,NULL,1,'2021-05-18 01:34:49','2021-05-18 01:34:49','5c1899d4-d7d8-4186-9d2c-495787b2172b'),(17555,17555,1,NULL,NULL,1,'2021-05-18 01:34:50','2021-05-18 01:34:50','0107eaa0-93f7-47fe-8191-aad9119a79a4'),(17556,17556,1,NULL,NULL,1,'2021-05-18 01:34:51','2021-05-18 01:34:51','430c083d-8786-49b1-ae80-9d1beb359690'),(17557,17557,1,NULL,NULL,1,'2021-05-18 01:34:51','2021-05-18 01:34:51','2de5277e-79f3-4d97-ab53-aca7e0037a16'),(17558,17558,1,NULL,NULL,1,'2021-05-18 01:34:52','2021-05-18 01:34:52','c2a0a24a-b375-4034-a412-a9f70ccdde81'),(17559,17559,1,NULL,NULL,1,'2021-05-18 01:34:52','2021-05-18 01:34:52','9b0c1288-03d2-45dc-9a43-30158809c771'),(17560,17560,1,NULL,NULL,1,'2021-05-18 01:34:52','2021-05-18 01:34:52','dacbe2fe-9920-40aa-aac2-1937472a4086'),(17561,17561,1,NULL,NULL,1,'2021-05-18 01:34:53','2021-05-18 01:34:53','4182edb7-40e8-41ee-9a62-0ea021592ae3'),(17562,17562,1,NULL,NULL,1,'2021-05-18 01:34:53','2021-05-18 01:34:53','d332b070-9047-4dd9-b679-02d106a53f40'),(17563,17563,1,NULL,NULL,1,'2021-05-18 01:34:53','2021-05-18 01:34:53','a105b03c-571c-4236-b13e-cfc8642890a8'),(17564,17564,1,NULL,NULL,1,'2021-05-18 01:34:54','2021-05-18 01:34:54','4d58bffd-06c3-4ba0-9cf3-28c2b42cc94f'),(17565,17565,1,NULL,NULL,1,'2021-05-18 01:34:54','2021-05-18 01:34:54','06a5bb3b-e115-4607-bd57-a6b5c083fbcd'),(17566,17566,1,NULL,NULL,1,'2021-05-18 01:34:54','2021-05-18 01:34:54','d7a4dd3b-1485-443d-bbc8-83b6e902a31c'),(17567,17567,1,NULL,NULL,1,'2021-05-18 01:34:55','2021-05-18 01:34:55','f0367092-6ca1-4868-b28f-fa12809e6560'),(17568,17568,1,NULL,NULL,1,'2021-05-18 01:34:55','2021-05-18 01:34:55','f31d5153-8e9e-402f-8ff1-e914cb08cbf3'),(17569,17569,1,NULL,NULL,1,'2021-05-18 01:34:55','2021-05-18 01:34:55','af60066e-d8e6-4a50-83cb-e5c2946adf28'),(17570,17570,1,NULL,NULL,1,'2021-05-18 01:34:56','2021-05-18 01:34:56','3b7984cb-d3c4-40e6-8555-e9c6f27869ee'),(17571,17571,1,NULL,NULL,1,'2021-05-18 01:34:57','2021-05-18 01:34:57','4c2a5467-3a5a-4251-b133-e7ed01a243ec'),(17572,17572,1,NULL,NULL,1,'2021-05-18 01:34:59','2021-05-18 01:34:59','262ddd42-0ce7-4920-8e22-cbeffe7accac'),(17573,17573,1,NULL,NULL,1,'2021-05-18 01:35:01','2021-05-18 01:35:01','05bf62fe-cc71-4bdb-878f-4512fbb4a0ec'),(17574,17574,1,NULL,NULL,1,'2021-05-18 01:35:04','2021-05-18 01:35:04','58abe0a3-a3c0-475d-bd3d-977bb4416d98'),(17593,17593,1,NULL,NULL,1,'2021-05-18 03:07:19','2021-05-18 03:07:19','bcfab124-7d01-4c14-be31-c5bd8c4762b2'),(17596,17596,1,NULL,NULL,1,'2021-05-18 03:13:03','2021-05-18 03:13:03','2e0b886a-0f75-4526-8af5-0373ba3917f2'),(17597,17597,1,NULL,NULL,1,'2021-05-18 03:17:29','2021-05-18 03:17:29','9a168372-b2dd-4dba-8b45-7ed2d49a0942'),(17598,17598,1,NULL,NULL,1,'2021-05-18 03:19:16','2021-05-18 03:19:16','7be5064c-8766-4e1e-8c22-0ce87f884d7f'),(17600,17600,1,'business-to-business-2','resource-categories/business-to-business-2',1,'2021-05-18 03:20:48','2021-05-18 03:20:59','2006d31d-508d-4ba9-a7f4-2f28ab3df6fd'),(17601,17601,1,'niche-market-2','resource-categories/niche-market-2',1,'2021-05-18 03:20:48','2021-05-18 03:20:59','2b5fc0e7-cf61-4cad-afd0-23d1cd3efba8'),(17602,17602,1,'vertical-market-2','resource-categories/vertical-market-2',1,'2021-05-18 03:20:48','2021-05-18 03:20:59','f1bfdb2f-6608-4bb4-862e-7c44302aa541'),(17603,17603,1,'be-heard-across-vertical-markets-and-sectors','articles/be-heard-across-vertical-markets-and-sectors',1,'2021-05-18 03:20:48','2021-07-23 03:36:53','8689706e-0877-4ef3-bf14-6417bac9868e'),(17604,17604,1,'be-heard-across-vertical-markets-and-sectors','resources/be-heard-across-vertical-markets-and-sectors',1,'2021-05-18 03:20:48','2021-05-18 03:20:48','a8d57f86-5510-482a-bf69-81f2ed9a7bde'),(17605,17605,1,'case-study-2','resource-categories/case-study-2',1,'2021-05-18 03:20:48','2021-05-18 03:20:59','4e960890-7078-43a3-b05d-18937995e323'),(17606,17606,1,'client-focus-2','resource-categories/client-focus-2',1,'2021-05-18 03:20:48','2021-05-18 03:20:59','86acfe69-41fa-436b-b8f9-83b1026dbb60'),(17607,17607,1,'client-service-2','resource-categories/client-service-2',1,'2021-05-18 03:20:48','2021-05-18 03:20:59','ed1e16b5-e8e4-4a44-a6af-8fea74ddef89'),(17608,17608,1,'state-your-clients-case','articles/state-your-clients-case',1,'2021-05-18 03:20:48','2021-07-23 03:36:53','f3c83747-31cb-47ee-af0f-1a71e3755e7b'),(17609,17609,1,'state-your-clients-case','resources/state-your-clients-case',1,'2021-05-18 03:20:48','2021-05-18 03:20:48','47546b2c-633d-423f-8087-ce22dde6c7e3'),(17610,17610,1,'project-management-2','resource-categories/project-management-2',1,'2021-05-18 03:20:48','2021-05-18 03:20:59','6df098f1-425c-43fb-9d0e-7da41c5bad2a'),(17611,17611,1,'common-sense-isnt-common','articles/common-sense-isnt-common',1,'2021-05-18 03:20:48','2021-07-23 03:36:52','6d0ff411-515a-49f2-bf86-5290df72663f'),(17612,17612,1,'common-sense-isnt-common','resources/common-sense-isnt-common',1,'2021-05-18 03:20:48','2021-05-18 03:20:48','f8a9bdf8-a79f-43fd-899d-62d371f12028'),(17613,17613,1,'how-to-read-the-media','articles/how-to-read-the-media',1,'2021-05-18 03:20:48','2021-07-23 03:36:52','a3ff628d-cc7d-4ddb-bf4c-1ef6f4042006'),(17614,17614,1,'how-to-read-the-media','resources/how-to-read-the-media',1,'2021-05-18 03:20:49','2021-05-18 03:20:49','ac92fbe1-ea1b-4d26-82c5-634dfc61f4b6'),(17615,17615,1,'corporatese-to-english','articles/corporatese-to-english',1,'2021-05-18 03:20:49','2021-07-23 03:36:52','f5f911a1-faa9-49e7-a35f-40bce318a682'),(17616,17616,1,'corporatese-to-english','resources/corporatese-to-english',1,'2021-05-18 03:20:49','2021-05-18 03:20:49','e75a6df9-0d91-482b-9a2b-78d69715a18d'),(17617,17617,1,'management-is-more-than-measurement','articles/management-is-more-than-measurement',1,'2021-05-18 03:20:49','2021-07-23 03:36:52','5a89c5e8-637a-4bcd-8cbe-1fd3ee68d569'),(17618,17618,1,'management-is-more-than-measurement','resources/management-is-more-than-measurement',1,'2021-05-18 03:20:49','2021-05-18 03:20:49','0af83cb9-50d6-44b3-85bb-194a7a6a40e2'),(17619,17619,1,'social-media-2','resource-categories/social-media-2',1,'2021-05-18 03:20:49','2021-05-18 03:20:59','17549fe1-e649-4415-b778-eb200f18b177'),(17620,17620,1,'target-audience-2','resource-categories/target-audience-2',1,'2021-05-18 03:20:49','2021-05-18 03:20:59','dcdba1d7-7e92-482a-a935-e80e3b55804c'),(17621,17621,1,'talking-to-the-kids-tips-for-marketing-to-gen-y','articles/talking-to-the-kids-tips-for-marketing-to-gen-y',1,'2021-05-18 03:20:49','2021-07-23 03:36:52','300a16e7-7f0e-4980-878f-ced347d6708a'),(17622,17622,1,'talking-to-the-kids-tips-for-marketing-to-gen-y','resources/talking-to-the-kids-tips-for-marketing-to-gen-y',1,'2021-05-18 03:20:49','2021-05-18 03:20:49','87f8cfde-a172-4bbf-aa3c-ffe6a4d22e75'),(17623,17623,1,'righting-writing','articles/righting-writing',1,'2021-05-18 03:20:50','2021-07-23 03:36:52','25d84b27-d8d2-4643-9179-c36732967349'),(17624,17624,1,'righting-writing','resources/righting-writing',1,'2021-05-18 03:20:50','2021-05-18 03:20:50','39f98f25-1561-484b-9739-38684e78a5a3'),(17625,17625,1,'content-marketing-2','resource-categories/content-marketing-2',1,'2021-05-18 03:20:50','2021-05-18 03:20:59','5004b39a-f297-478f-8dea-408ae976f022'),(17626,17626,1,'the-year-of-content-marketing','articles/the-year-of-content-marketing',1,'2021-05-18 03:20:50','2021-07-23 03:36:52','d8d37577-fcca-4fbb-b9ff-1f2a456fde8c'),(17627,17627,1,'the-year-of-content-marketing','resources/the-year-of-content-marketing',1,'2021-05-18 03:20:50','2021-05-18 03:20:50','fe445024-0c48-4508-9d7b-19c2916f053f'),(17628,17628,1,'learning-to-lead','articles/learning-to-lead',1,'2021-05-18 03:20:50','2021-07-23 03:36:52','e0001f80-a4d6-4d75-82cf-d3a07fa99595'),(17629,17629,1,'learning-to-lead','resources/learning-to-lead',1,'2021-05-18 03:20:50','2021-05-18 03:20:50','8caa455f-b9cb-478a-88ab-b6254075a446'),(17630,17630,1,'creative-agency-2','resource-categories/creative-agency-2',1,'2021-05-18 03:20:50','2021-05-18 03:20:59','08bdda23-5f81-4e4e-843e-5aa7c15a0a6e'),(17631,17631,1,'the-problem-of-creativity','articles/the-problem-of-creativity',1,'2021-05-18 03:20:51','2021-07-23 03:36:52','4a3e1be2-2ee3-4178-bc93-af3c5694c238'),(17632,17632,1,'the-problem-of-creativity','resources/the-problem-of-creativity',1,'2021-05-18 03:20:51','2021-05-18 03:20:51','7cf97bd4-5709-40f5-ba42-0414b429ff78'),(17633,17633,1,'mums-mean-business','articles/mums-mean-business',1,'2021-05-18 03:20:51','2021-07-23 03:36:52','d3bc2d16-db16-49bd-bf78-041a5672e741'),(17634,17634,1,'mums-mean-business','resources/mums-mean-business',1,'2021-05-18 03:20:51','2021-05-18 03:20:51','057e5f0c-bd99-4353-9619-f524fe3972b3'),(17635,17635,1,'the-tender-pitch','articles/the-tender-pitch',1,'2021-05-18 03:20:51','2021-07-23 03:36:51','85d14f90-bc11-4c05-8db2-95d6e7a6bc44'),(17636,17636,1,'the-tender-pitch','resources/the-tender-pitch',1,'2021-05-18 03:20:51','2021-05-18 03:20:51','877d4fd0-846a-4bf3-906b-d9c66f4587b4'),(17637,17637,1,'stock-photography-2','resource-categories/stock-photography-2',1,'2021-05-18 03:20:51','2021-05-18 03:20:59','695871ed-082e-463f-9022-2da6a361edf4'),(17638,17638,1,'photography-and-your-brand','articles/photography-and-your-brand',1,'2021-05-18 03:20:51','2021-07-23 03:36:51','a6a625f5-0092-4464-9fb7-f6d4037d51fb'),(17639,17639,1,'photography-and-your-brand','resources/photography-and-your-brand',1,'2021-05-18 03:20:51','2021-05-18 03:20:51','ae9c1d69-3248-428a-b02b-900ed9b70735'),(17640,17640,1,'best-practice-2','resource-categories/best-practice-2',1,'2021-05-18 03:20:52','2021-05-18 03:20:59','1f1d696c-570c-4c33-85ba-b53a95a648bb'),(17641,17641,1,'web-copy-2','resource-categories/web-copy-2',1,'2021-05-18 03:20:52','2021-05-18 03:20:59','5f75171d-1fd6-4bba-89e1-fc29d1836a4e'),(17642,17642,1,'writing-for-readable-web','articles/writing-for-readable-web',1,'2021-05-18 03:20:52','2021-07-23 03:36:51','4f1fe7fc-c511-4164-a0d9-79fea770480c'),(17643,17643,1,'writing-for-readable-web','resources/writing-for-readable-web',1,'2021-05-18 03:20:52','2021-05-18 03:20:52','a7b5706a-c5e9-49a1-83a2-060c1df2bf92'),(17644,17644,1,'what-the-artist-breaks','articles/what-the-artist-breaks',1,'2021-05-18 03:20:52','2021-07-23 03:36:51','2afb6d5d-c256-45c5-8583-ed97fef993e8'),(17645,17645,1,'what-the-artist-breaks','resources/what-the-artist-breaks',1,'2021-05-18 03:20:52','2021-05-18 03:20:52','b07149a9-8db7-4869-ab70-e4cc53fdd672'),(17646,17646,1,'seven-important-questions-for-effective-marketing-communications','articles/seven-important-questions-for-effective-marketing-communications',1,'2021-05-18 03:20:52','2022-08-17 05:10:50','2b9a9415-bf4a-4c0f-8316-5e829d17f2d2'),(17647,17647,1,'8-important-marketing-questions-for-every-business','resources/8-important-marketing-questions-for-every-business',1,'2021-05-18 03:20:52','2021-05-18 03:20:52','adbbcd6a-40bc-4a9f-9755-a81e2e62d725'),(17648,17648,1,'promises-promises','articles/promises-promises',1,'2021-05-18 03:20:52','2021-07-23 03:36:51','db6448ec-fa07-4e10-a41c-5689e52f6477'),(17649,17649,1,'promises-promises','resources/promises-promises',1,'2021-05-18 03:20:53','2021-05-18 03:20:53','b42445ce-f97c-4eb2-94a2-ae1346a34673'),(17650,17650,1,'are-customers-giving-up-on-your-website','articles/are-customers-giving-up-on-your-website',1,'2021-05-18 03:20:53','2021-07-23 03:36:51','06007ede-4251-48d8-8640-a368d1ba3266'),(17651,17651,1,'are-customers-giving-up-on-your-website','resources/are-customers-giving-up-on-your-website',1,'2021-05-18 03:20:53','2021-05-18 03:20:53','ca1ff0b4-d246-4b8c-8b70-9e73fa4957ac'),(17652,17652,1,'truth-without-fear','articles/truth-without-fear',1,'2021-05-18 03:20:53','2021-07-23 03:36:51','468fa28c-aafb-4427-a8e0-546790a02c45'),(17653,17653,1,'truth-without-fear','resources/truth-without-fear',1,'2021-05-18 03:20:53','2021-05-18 03:20:53','9103c07c-56c9-4e86-a0c1-e6d147450fcb'),(17654,17654,1,'b2b-is-dead','articles/b2b-is-dead',1,'2021-05-18 03:20:53','2021-07-23 03:36:51','1411ec51-a9e7-40e5-88e3-f6f889ce81d4'),(17655,17655,1,'b2b-is-dead','resources/b2b-is-dead',1,'2021-05-18 03:20:53','2021-05-18 03:20:53','30e8fde9-3883-4031-b77b-60a98b7d9020'),(17656,17656,1,'aggregated-content-2','resource-categories/aggregated-content-2',1,'2021-05-18 03:20:53','2021-05-18 03:20:59','36800eba-7127-498a-b4d1-3c6a406bda4b'),(17657,17657,1,'content-creation-2','resource-categories/content-creation-2',1,'2021-05-18 03:20:53','2021-05-18 03:20:59','ac43b50e-7933-49c1-b559-a03882bb6497'),(17658,17658,1,'content-curation-2','resource-categories/content-curation-2',1,'2021-05-18 03:20:53','2021-05-18 03:20:59','09bec926-3350-40bd-b8f8-90a484605b53'),(17659,17659,1,'thought-leadership-2','resource-categories/thought-leadership-2',1,'2021-05-18 03:20:53','2021-05-18 03:21:00','de762aa0-f6e8-4a3e-85b8-eb8286ffe4b5'),(17660,17660,1,'the-6-steps-of-content-creation','articles/the-6-steps-of-content-creation',1,'2021-05-18 03:20:54','2021-07-23 03:36:51','b769bf50-fa33-45ae-aadf-45ec08775ad4'),(17661,17661,1,'the-6-steps-of-content-creation','resources/the-6-steps-of-content-creation',1,'2021-05-18 03:20:54','2021-05-18 03:20:54','42fe6d82-7b61-4115-9621-72bf13b5b245'),(17662,17662,1,'measure-your-marketing-with-meaning','articles/measure-your-marketing-with-meaning',1,'2021-05-18 03:20:54','2021-07-23 03:36:51','83f59efc-2a88-4e75-8955-8f8b61039cd7'),(17663,17663,1,'measure-your-marketing-with-meaning','resources/measure-your-marketing-with-meaning',1,'2021-05-18 03:20:54','2021-05-18 03:20:54','d0d982e7-1c0d-48c1-88dd-2286d5ca0a63'),(17664,17664,1,'making-the-most-of-video','articles/making-the-most-of-video',1,'2021-05-18 03:20:55','2021-07-23 03:36:51','ff6e5a67-99ff-49f5-aff8-f7ab688b56a0'),(17665,17665,1,'making-the-most-of-video','resources/making-the-most-of-video',1,'2021-05-18 03:20:55','2021-05-18 03:20:55','9432238f-dc4e-4d72-9fd1-e83e151493ae'),(17666,17666,1,'looking-beyond-the-banner','articles/looking-beyond-the-banner',1,'2021-05-18 03:20:55','2021-07-23 03:36:50','7375f6b7-3c15-499e-ad62-5c93c4638227'),(17667,17667,1,'looking-beyond-the-banner','resources/looking-beyond-the-banner',1,'2021-05-18 03:20:55','2021-05-18 03:20:55','9bd46d5d-e8db-4a00-99fe-c7b0ce15274b'),(17668,17668,1,'outsourcing-creative-services','articles/outsourcing-creative-services',1,'2021-05-18 03:20:55','2021-07-23 03:36:50','7ff2e234-86f7-49fe-8ff1-d414ef96975b'),(17669,17669,1,'outsourcing-creative-services','resources/outsourcing-creative-services',1,'2021-05-18 03:20:56','2021-05-18 03:20:56','5b5fd855-7f6e-48ab-aa62-dcf6bdadf566'),(17670,17670,1,'overhauling-your-website','articles/overhauling-your-website',1,'2021-05-18 03:20:56','2021-07-23 03:36:50','de3ed5f2-366a-49f8-bf11-7d21cedf75fa'),(17671,17671,1,'overhauling-your-website','resources/overhauling-your-website',1,'2021-05-18 03:20:56','2021-05-18 03:20:56','62328655-003c-4e03-bc98-352557a9909f'),(17672,17672,1,'building-better-brands','articles/building-better-brands',1,'2021-05-18 03:20:56','2021-07-23 03:36:50','d627ae08-4e46-414e-a149-22e25cae633e'),(17673,17673,1,'building-better-brands','resources/building-better-brands',1,'2021-05-18 03:20:56','2021-05-18 03:20:56','12e7e53c-a958-40b2-96ab-c5db3cd753bd'),(17674,17674,1,'getting-the-most-from-motion','articles/getting-the-most-from-motion',1,'2021-05-18 03:20:56','2021-07-23 03:36:50','7c2d3a18-0d86-49ba-986b-259277ab08b0'),(17675,17675,1,'getting-the-most-from-motion','resources/getting-the-most-from-motion',1,'2021-05-18 03:20:56','2021-05-18 03:20:56','fffb63a6-0a1d-4980-9a21-0f84e2198199'),(17676,17676,1,'what-is-marketing-automation','articles/what-is-marketing-automation',1,'2021-05-18 03:20:56','2021-07-23 03:36:50','ed15f2d3-4ce6-4c63-a7f4-708abd15a30d'),(17677,17677,1,'what-is-marketing-automation','resources/what-is-marketing-automation',1,'2021-05-18 03:20:56','2021-05-18 03:20:56','1b3e282e-6184-475c-a345-7592046664ec'),(17678,17678,1,'simplifying-the-complex-fifteen-years-of-marketing-schools','articles/simplifying-the-complex-fifteen-years-of-marketing-schools',1,'2021-05-18 03:20:56','2021-07-23 03:36:50','83f7e6a3-673e-4b6b-a5e4-79951877655a'),(17679,17679,1,'simplifying-the-complex-fifteen-years-of-marketing-schools','resources/simplifying-the-complex-fifteen-years-of-marketing-schools',1,'2021-05-18 03:20:56','2021-05-18 03:20:56','d561801f-3210-469d-832d-3cdaaa38cc13'),(17680,17680,1,'top-20-tips-for-seo','articles/top-20-tips-for-seo',1,'2021-05-18 03:20:57','2021-07-23 03:36:50','bcf8b49b-f9a1-4e94-a4f3-26b0fb097888'),(17681,17681,1,'top-20-tips-for-seo','resources/top-20-tips-for-seo',1,'2021-05-18 03:20:57','2021-05-18 03:20:57','729f106e-2586-4cec-a45a-0b9183b8d215'),(17682,17682,1,'how-to-really-consult-your-stakeholders','articles/how-to-really-consult-your-stakeholders',1,'2021-05-18 03:20:57','2021-07-23 03:36:50','c4f0f090-06f2-42cc-ac1a-44104e24a1e5'),(17683,17683,1,'how-to-really-consult-your-stakeholders','resources/how-to-really-consult-your-stakeholders',1,'2021-05-18 03:20:57','2021-05-18 03:20:57','ecdb15bd-670e-45a7-8686-c83a30f8344a'),(17684,17684,1,'the-building-blocks-of-branding','articles/the-building-blocks-of-branding',1,'2021-05-18 03:20:57','2021-07-23 03:36:50','ad255c4d-4dae-4725-8175-38f97d07b6f8'),(17685,17685,1,'the-building-blocks-of-branding','resources/the-building-blocks-of-branding',1,'2021-05-18 03:20:57','2021-05-18 03:20:57','278d164d-f384-4025-81c2-27184e5c4d6b'),(17686,17686,1,'seven-mistakes-people-make-building-websites','articles/seven-mistakes-people-make-building-websites',1,'2021-05-18 03:20:57','2021-07-23 03:36:50','caa87c1f-46d5-4f06-93fa-3defab379652'),(17687,17687,1,'seven-mistakes-people-make-building-websites','resources/seven-mistakes-people-make-building-websites',1,'2021-05-18 03:20:57','2021-05-18 03:20:57','69b49482-744d-4ad4-8198-30c3705f33b0'),(17688,17688,1,'pretty-or-powerful-and-can-you-have-it-all','articles/pretty-or-powerful-and-can-you-have-it-all',1,'2021-05-18 03:20:58','2021-07-23 03:36:49','c0bce56a-753d-4d85-98fd-7df3e2b4ed0c'),(17689,17689,1,'pretty-or-powerful-and-can-you-have-it-all','resources/pretty-or-powerful-and-can-you-have-it-all',1,'2021-05-18 03:20:58','2021-05-18 03:20:58','688bb885-035e-464b-8189-cab2720a3865'),(17690,17690,1,'why-you-need-a-six-month-comms-strategy-for-your-website','articles/why-you-need-a-six-month-comms-strategy-for-your-website',1,'2021-05-18 03:20:58','2021-07-23 03:36:49','9e84c6f2-eb03-4dd7-a182-4709ed2bfa7d'),(17691,17691,1,'why-you-need-a-six-month-comms-strategy-for-your-website','resources/why-you-need-a-six-month-comms-strategy-for-your-website',1,'2021-05-18 03:20:58','2021-05-18 03:20:58','32ee4e63-77f8-452e-9045-a1595d8d2eef'),(17692,17692,1,'break-away-from-the-same-same-with-custom-illustration','articles/break-away-from-the-same-same-with-custom-illustration',1,'2021-05-18 03:20:58','2021-07-23 03:36:49','b4735021-6825-4352-a65e-125a9d7ad640'),(17693,17693,1,'break-away-from-the-same-same-with-custom-illustration','resources/break-away-from-the-same-same-with-custom-illustration',1,'2021-05-18 03:20:58','2021-05-18 03:20:58','cf684338-2df9-4b8e-b661-c89aa01d0555'),(17694,17694,1,'iwd-2021-2','resource-categories/iwd-2021-2',1,'2021-05-18 03:20:58','2021-05-18 03:21:00','9fe631bd-2a7e-4f2e-993e-99e50193d52a'),(17709,17709,1,NULL,NULL,1,'2021-05-18 03:21:51','2021-05-18 03:21:51','0bad3aab-3db7-4045-b548-ac3f2382f32f'),(17711,17711,1,NULL,NULL,1,'2021-05-18 03:23:02','2021-05-18 03:23:02','41493ca7-288d-4079-8f48-fe550144e75e'),(17713,17713,1,NULL,NULL,1,'2021-05-18 03:24:10','2021-05-18 03:24:10','579cd526-37fd-4987-94b9-056f0afc78ac'),(17715,17715,1,NULL,NULL,1,'2021-05-18 03:25:29','2021-05-18 03:25:29','3a8f56df-c1cf-4030-bfa3-216f970fbc65'),(17716,17716,1,NULL,NULL,1,'2021-05-18 03:26:02','2021-05-18 03:26:02','63474f07-b4dc-409a-97a8-8b56b0e92b2a'),(17717,17717,1,NULL,NULL,1,'2021-05-18 03:26:13','2021-05-18 03:26:13','378a2348-9552-4c4c-9343-ecb45779b6ff'),(17718,17718,1,NULL,NULL,1,'2021-05-18 03:26:28','2021-05-18 03:26:28','8db801a4-94ab-4265-96b2-95f90b8eea6e'),(17719,17719,1,NULL,NULL,1,'2021-05-18 03:26:32','2021-05-18 03:26:32','26f97796-63b0-43ff-9756-c16970ff7825'),(17720,17720,1,NULL,NULL,1,'2021-05-18 03:26:38','2021-05-18 03:26:38','eb295404-932d-4f8b-8f46-6fdf55d42f40'),(17721,17721,1,NULL,NULL,1,'2021-05-18 03:26:44','2021-05-18 03:26:44','79233d4c-4f04-4a5c-b411-1e3b6ba5d999'),(17722,17722,1,NULL,NULL,1,'2021-05-18 03:26:47','2021-05-18 03:26:47','d5f601f4-ff78-43f1-8173-1d5097e94ac5'),(17723,17723,1,NULL,NULL,1,'2021-05-18 03:26:51','2021-05-18 03:26:51','575ea0f7-0f57-4c34-a64d-e67db7d91064'),(17724,17724,1,NULL,NULL,1,'2021-05-18 03:26:57','2021-05-18 03:26:57','ee1bfb3b-ac0c-42a9-9053-39e49c06a476'),(17725,17725,1,NULL,NULL,1,'2021-05-18 03:26:59','2021-05-18 03:26:59','e59ad113-59af-4150-9deb-a5b39e5a7b5e'),(17726,17726,1,NULL,NULL,1,'2021-05-18 03:27:00','2021-05-18 03:27:00','3d7681d1-db4c-463c-9024-2827d51814ee'),(17727,17727,1,NULL,NULL,1,'2021-05-18 03:27:06','2021-05-18 03:27:06','5eff3e6f-2255-43cd-bad8-6a4aea6473b6'),(17728,17728,1,NULL,NULL,1,'2021-05-18 03:27:09','2021-05-18 03:27:09','1942e0ff-7568-4629-9ff2-797688975773'),(17729,17729,1,NULL,NULL,1,'2021-05-18 03:27:12','2021-05-18 03:27:12','ac84e20e-6b40-479e-b0c5-3668281d61ec'),(17730,17730,1,NULL,NULL,1,'2021-05-18 03:27:15','2021-05-18 03:27:15','ab2adb84-4009-4d74-b65c-4d9ddcdf5e34'),(17731,17731,1,NULL,NULL,1,'2021-05-18 03:27:15','2021-05-18 03:27:15','50de6526-9178-4517-a3ef-69a9e80926aa'),(17732,17732,1,NULL,NULL,1,'2021-05-18 03:27:16','2021-05-18 03:27:16','8c7e077b-3e7c-484f-b640-50bc198e53f7'),(17733,17733,1,NULL,NULL,1,'2021-05-18 03:27:17','2021-05-18 03:27:17','a502227d-b001-40e5-98bc-410d4600cd43'),(17734,17734,1,NULL,NULL,1,'2021-05-18 03:27:18','2021-05-18 03:27:18','3f001a47-3c0f-43a3-9629-bf66c5dddea6'),(17735,17735,1,NULL,NULL,1,'2021-05-18 03:27:21','2021-05-18 03:27:21','b8659f27-cdf7-4ea2-aca6-3bde9da624d1'),(17736,17736,1,NULL,NULL,1,'2021-05-18 03:27:33','2021-05-18 03:27:33','e09ab927-ce06-4a0f-876e-e1af84a88e62'),(17737,17737,1,NULL,NULL,1,'2021-05-18 03:27:35','2021-05-18 03:27:35','5210f825-a742-46b9-8048-d62474f060ae'),(17738,17738,1,NULL,NULL,1,'2021-05-18 03:27:39','2021-05-18 03:27:39','60db7b63-fbc0-4962-8e73-f4cb5b469ffe'),(17739,17739,1,NULL,NULL,1,'2021-05-18 03:27:42','2021-05-18 03:27:42','e554fcea-35ef-482a-adfa-ece30b753937'),(17740,17740,1,NULL,NULL,1,'2021-05-18 03:27:43','2021-05-18 03:27:43','ba67f013-bd10-4194-a8df-855a2dc44a65'),(17741,17741,1,NULL,NULL,1,'2021-05-18 03:27:47','2021-05-18 03:27:47','e6d1006d-47bb-4a20-96e5-2d9cdfb62192'),(17742,17742,1,NULL,NULL,1,'2021-05-18 03:27:51','2021-05-18 03:27:51','8685c79c-e022-4a67-a3f2-a144210c5a78'),(17743,17743,1,NULL,NULL,1,'2021-05-18 03:27:55','2021-05-18 03:27:55','4f213e25-8e0f-43c2-8fd4-a63eb7977e61'),(17744,17744,1,NULL,NULL,1,'2021-05-18 03:27:58','2021-05-18 03:27:58','3884fbaf-8143-48f9-906b-97aafb956edc'),(17745,17745,1,NULL,NULL,1,'2021-05-18 03:28:18','2021-05-18 03:28:18','424f1a44-be6c-4637-9083-4318f7d74a02'),(17746,17746,1,NULL,NULL,1,'2021-05-18 03:28:34','2021-05-18 03:28:34','7f796830-63ac-4b73-9bb7-455ed7a9b8b0'),(17747,17747,1,NULL,NULL,1,'2021-05-18 03:28:58','2021-05-18 03:28:58','f0dcafec-588b-4311-b084-f836f9fe9496'),(17748,17748,1,NULL,NULL,1,'2021-05-18 03:29:23','2021-05-18 03:29:23','ddd10d54-ca39-49bd-864e-c41aeda39739'),(17749,17749,1,NULL,NULL,1,'2021-05-18 03:29:38','2021-05-18 03:29:38','686d42fc-1e02-4944-8290-b45455c77bed'),(17750,17750,1,NULL,NULL,1,'2021-05-18 03:29:50','2021-05-18 03:29:50','28e8e48b-5e77-4ac4-873f-de17bb962607'),(17751,17751,1,NULL,NULL,1,'2021-05-18 03:30:09','2021-05-18 03:30:09','7f3510bd-e2df-456c-b784-4317b6eebd57'),(17752,17752,1,NULL,NULL,1,'2021-05-18 03:30:32','2021-05-18 03:30:32','282c0596-5c48-41aa-8b35-608dd09661e0'),(17753,17753,1,NULL,NULL,1,'2021-05-18 03:30:51','2021-05-18 03:30:51','01d896b0-907b-4543-88df-f531286a38c8'),(17754,17754,1,NULL,NULL,1,'2021-05-18 03:31:08','2021-05-18 03:31:08','e28b2dc1-2182-4a81-97a9-5ee3c06188b7'),(17755,17755,1,NULL,NULL,1,'2021-05-18 03:31:27','2021-05-18 03:31:27','848f6030-3a8c-48e4-9517-787fb2a394b4'),(17756,17756,1,NULL,NULL,1,'2021-05-18 03:31:44','2021-05-18 03:31:44','d87920de-065a-49ad-a1c9-95b7ea36b59c'),(17757,17757,1,NULL,NULL,1,'2021-05-18 03:32:15','2021-05-18 03:32:15','88cff77c-468d-4026-907b-01e72bebd117'),(17758,17758,1,NULL,NULL,1,'2021-05-18 03:32:52','2021-05-18 03:32:52','b1f2fc88-9847-4c27-ba57-284468277fad'),(17759,17759,1,NULL,NULL,1,'2021-05-18 03:33:24','2021-05-18 03:33:24','fbf0c317-e5fe-4066-8342-f4aebe0c3d91'),(17760,17760,1,NULL,NULL,1,'2021-05-18 03:33:41','2021-05-18 03:33:41','6d91d6a2-a244-4fbf-a513-cbaf19b72dbf'),(17761,17761,1,NULL,NULL,1,'2021-05-18 03:34:06','2021-05-18 03:34:06','851999e0-8648-4336-808c-bb3e6d060126'),(17762,17762,1,NULL,NULL,1,'2021-05-18 03:34:23','2021-05-18 03:34:23','3cf8e9d1-cfae-4e52-9e3c-cb3f854dccb7'),(17763,17763,1,NULL,NULL,1,'2021-05-18 03:34:49','2021-05-18 03:34:49','9337fa5b-ddcb-460b-812f-10cfa88008f2'),(17764,17764,1,NULL,NULL,1,'2021-05-18 03:35:00','2021-05-18 03:35:00','9dddb7cc-1ea5-4983-8e46-489eb5f0b98b'),(17765,17765,1,NULL,NULL,1,'2021-05-18 03:35:15','2021-05-18 03:35:15','1eb5de54-dc0e-4d71-a457-13569cd8ba5d'),(17766,17766,1,NULL,NULL,1,'2021-05-18 03:35:41','2021-05-18 03:35:41','252157a7-18fc-4f34-a307-d29de00e7230'),(17767,17767,1,NULL,NULL,1,'2021-05-18 03:35:54','2021-05-18 03:35:54','459ae642-11a2-43e0-8c03-338c2e3f3cdd'),(17770,17770,1,NULL,NULL,1,'2021-05-18 03:37:29','2021-05-18 03:37:29','4357284d-84e2-4be1-8c54-b0ccce8f1af2'),(17771,17771,1,NULL,NULL,1,'2021-05-18 03:37:32','2021-05-18 03:37:32','d93bd58f-3d66-48ca-beae-70454d862a20'),(17772,17772,1,NULL,NULL,1,'2021-05-18 03:37:34','2021-05-18 03:37:34','a4c9d841-7176-46ab-acf4-1a06b05d05db'),(17773,17773,1,NULL,NULL,1,'2021-05-18 03:37:37','2021-05-18 03:37:37','d536c80e-f414-4cea-8f69-b4049f1dfaa9'),(17774,17774,1,NULL,NULL,1,'2021-05-18 03:37:39','2021-05-18 03:37:39','0303df3b-5f32-41cd-b9e4-b25c2c00c3a1'),(17775,17775,1,NULL,NULL,1,'2021-05-18 03:37:41','2021-05-18 03:37:41','c8c8b060-e062-4fb3-b29b-983f0a57f2a7'),(17776,17776,1,NULL,NULL,1,'2021-05-18 03:37:43','2021-05-18 03:37:43','912d666a-6968-423a-b544-276e92222f83'),(17777,17777,1,NULL,NULL,1,'2021-05-18 03:37:45','2021-05-18 03:37:45','d90db84f-cf98-4009-b4e7-0e09eba8ed0e'),(17778,17778,1,NULL,NULL,1,'2021-05-18 03:37:47','2021-05-18 03:37:47','136d4f60-7cac-4cf6-a47e-6abeaf08629e'),(17779,17779,1,NULL,NULL,1,'2021-05-18 03:37:48','2021-05-18 03:37:48','f924e139-9129-4805-842b-756476bc6549'),(17780,17780,1,NULL,NULL,1,'2021-05-18 03:37:50','2021-05-18 03:37:50','dc3173ef-7c97-45fd-b075-9d8f9eec99dc'),(17781,17781,1,NULL,NULL,1,'2021-05-18 03:37:52','2021-05-18 03:37:52','ce892b2d-9721-4d8c-876d-c3c017ab1590'),(17782,17782,1,NULL,NULL,1,'2021-05-18 03:37:54','2021-05-18 03:37:54','a42ec88e-4b9d-41fb-a693-288e20ff897e'),(17784,17784,1,NULL,NULL,1,'2021-05-18 03:38:21','2021-05-18 03:38:21','6d762916-722a-489a-87dc-0701ae189a5c'),(17785,17785,1,NULL,NULL,1,'2021-05-18 03:38:31','2021-05-18 03:38:31','656705a9-73ac-4bca-8450-32f3d5dbb937'),(17786,17786,1,NULL,NULL,1,'2021-05-18 03:38:43','2021-05-18 03:38:43','90cf289a-9e04-422b-880c-f02bec2561fb'),(17787,17787,1,NULL,NULL,1,'2021-05-18 03:38:51','2021-05-18 03:38:51','93ad5d54-d83e-4457-8406-ec512da719c9'),(17788,17788,1,NULL,NULL,1,'2021-05-18 03:38:53','2021-05-18 03:38:53','3b77e797-bcd4-42cd-9d6b-2f01b8e46527'),(17789,17789,1,NULL,NULL,1,'2021-05-18 03:38:55','2021-05-18 03:38:55','0653f992-670a-414c-aff8-1f73fee2ed8e'),(17790,17790,1,NULL,NULL,1,'2021-05-18 03:38:57','2021-05-18 03:38:57','0c23b492-3ada-42a7-a6d1-3892610f78d0'),(17791,17791,1,NULL,NULL,1,'2021-05-18 03:38:59','2021-05-18 03:38:59','6805e752-5951-4fae-89ed-7e0348dcfa16'),(17792,17792,1,NULL,NULL,1,'2021-05-18 03:39:01','2021-05-18 03:39:01','d7a31811-11a8-48e2-a53a-6be895b9e8b0'),(17793,17793,1,NULL,NULL,1,'2021-05-18 03:39:17','2021-05-18 03:39:17','cc1b8c5d-11c0-4d06-aabb-7071b5a40c9b'),(17794,17794,1,NULL,NULL,1,'2021-05-18 03:39:18','2021-05-18 03:39:18','5a57608f-3b6c-4258-b5a8-302fb03b64ba'),(17795,17795,1,NULL,NULL,1,'2021-05-18 03:39:20','2021-05-18 03:39:20','accb2140-fbea-458a-acc8-2eef367676db'),(17796,17796,1,NULL,NULL,1,'2021-05-18 03:39:21','2021-05-18 03:39:21','e70409cb-3e1a-4ef9-818b-dfe2af9abff9'),(17797,17797,1,NULL,NULL,1,'2021-05-18 03:39:22','2021-05-18 03:39:22','0b5150d6-02e0-4838-83a7-16a12fff878a'),(17798,17798,1,NULL,NULL,1,'2021-05-18 03:39:22','2021-05-18 03:39:22','a54938c3-bb56-4612-82a1-57752af39fe0'),(17807,17807,1,'break-away-from-the-same-same-with-custom-illustration','resources/break-away-from-the-same-same-with-custom-illustration',1,'2021-05-18 03:44:18','2021-05-18 03:44:18','35c7e4eb-0cc9-46fd-bef9-ab2f634fcf81'),(17808,17808,1,'why-you-need-a-six-month-comms-strategy-for-your-website','resources/why-you-need-a-six-month-comms-strategy-for-your-website',1,'2021-05-18 03:45:31','2021-05-18 03:45:31','5478ee7d-72e9-4749-ba2e-77d16d5737b6'),(17809,17809,1,'pretty-or-powerful-and-can-you-have-it-all','resources/pretty-or-powerful-and-can-you-have-it-all',1,'2021-05-18 03:46:06','2021-05-18 03:46:06','c89501a1-57a8-4042-b1d3-9476ec13c815'),(17810,17810,1,'seven-mistakes-people-make-building-websites','resources/seven-mistakes-people-make-building-websites',1,'2021-05-18 03:46:30','2021-05-18 03:46:30','801a1b48-2f4e-4549-aa9b-0537d5542e03'),(17811,17811,1,NULL,NULL,1,'2021-05-18 03:47:57','2021-05-18 03:47:57','108149ed-d9df-4e84-9098-283cc7ac178b'),(17812,17812,1,'the-building-blocks-of-branding','resources/the-building-blocks-of-branding',1,'2021-05-18 03:48:02','2021-05-18 03:48:02','a05c5e8b-3f6a-4663-b291-2f91f7cfddf6'),(17813,17813,1,'how-to-really-consult-your-stakeholders','resources/how-to-really-consult-your-stakeholders',1,'2021-05-18 03:48:36','2021-05-18 03:48:36','98fcdd12-20ba-4638-839e-be1e02c78437'),(17814,17814,1,'top-20-tips-for-seo','resources/top-20-tips-for-seo',1,'2021-05-18 03:49:00','2021-05-18 03:49:00','ef1962f5-5d61-435d-bb5f-85ab8915ce41'),(17815,17815,1,NULL,NULL,1,'2021-05-18 03:49:47','2021-05-18 03:49:47','98649169-10a8-48dc-8ed5-45dca81d4150'),(17816,17816,1,'simplifying-the-complex-fifteen-years-of-marketing-schools','resources/simplifying-the-complex-fifteen-years-of-marketing-schools',1,'2021-05-18 03:49:52','2021-05-18 03:49:52','751d710b-0290-46fa-a157-ac7f6dd38ddd'),(17817,17817,1,'what-is-marketing-automation','resources/what-is-marketing-automation',1,'2021-05-18 03:50:22','2021-05-18 03:50:22','66c91dfc-2463-4be8-8f17-704fd4337b2a'),(17818,17818,1,NULL,NULL,1,'2021-05-18 03:51:13','2021-05-18 03:51:13','1f7e5af6-a013-467f-976c-db1d57f54949'),(17819,17819,1,'getting-the-most-from-motion','resources/getting-the-most-from-motion',1,'2021-05-18 03:51:16','2021-05-18 03:51:16','7dcd29d5-309b-4749-898e-245da831b6fe'),(17820,17820,1,'building-better-brands','resources/building-better-brands',1,'2021-05-18 03:52:25','2021-05-18 03:52:25','598fd420-b73c-43c8-bc55-6a31c3451e1e'),(17821,17821,1,'overhauling-your-website','resources/overhauling-your-website',1,'2021-05-18 03:54:13','2021-05-18 03:54:13','d636c94c-3407-4bc9-91d7-d886fe19f783'),(17822,17822,1,'outsourcing-creative-services','resources/outsourcing-creative-services',1,'2021-05-18 03:55:28','2021-05-18 03:55:28','9ae50f41-d137-4bb7-8de0-640fe927adcc'),(17823,17823,1,'looking-beyond-the-banner','resources/looking-beyond-the-banner',1,'2021-05-18 03:56:17','2021-05-18 03:56:17','f69a3d6b-ad8e-4432-9cce-716d79098f01'),(17824,17824,1,'making-the-most-of-video','resources/making-the-most-of-video',1,'2021-05-18 03:56:55','2021-05-18 03:56:55','5598aea4-a39c-46f0-afca-a7a37cec6250'),(17825,17825,1,'measure-your-marketing-with-meaning','resources/measure-your-marketing-with-meaning',1,'2021-05-18 04:00:05','2021-05-18 04:00:05','7cbe7935-f63c-487a-80a8-98d0b51a5aa1'),(17826,17826,1,'the-6-steps-of-content-creation','resources/the-6-steps-of-content-creation',1,'2021-05-18 04:00:53','2021-05-18 04:00:53','2010d029-b0a8-441b-8e10-5cef6b9d3c7c'),(17827,17827,1,'b2b-is-dead','resources/b2b-is-dead',1,'2021-05-18 04:01:45','2021-05-18 04:01:45','284c9a79-7e17-42aa-bf27-2b3b7742cba6'),(17828,17828,1,'truth-without-fear','resources/truth-without-fear',1,'2021-05-18 04:02:23','2021-05-18 04:02:23','0aeac2c0-3f6e-4a08-8567-1e61be92c623'),(17829,17829,1,'promises-promises','resources/promises-promises',1,'2021-05-18 04:03:05','2021-05-18 04:03:05','6453197f-de7e-439c-9dba-d1e738c8b6dd'),(17830,17830,1,'are-customers-giving-up-on-your-website','resources/are-customers-giving-up-on-your-website',1,'2021-05-18 04:03:49','2021-05-18 04:03:49','259bc64e-345d-417e-a8e3-5aadca72608c'),(17831,17831,1,'8-important-marketing-questions-for-every-business','resources/8-important-marketing-questions-for-every-business',1,'2021-05-18 04:04:32','2021-05-18 04:04:32','10f58143-1efe-4ca3-8665-fff2b4097876'),(17832,17832,1,'what-the-artist-breaks','resources/what-the-artist-breaks',1,'2021-05-18 04:05:05','2021-05-18 04:05:05','2b068e0a-584e-4b43-b6bb-1b019357c2a4'),(17833,17833,1,'the-tender-pitch','resources/the-tender-pitch',1,'2021-05-18 04:05:43','2021-05-18 04:05:43','6d3c7174-1b3c-472a-bf26-7f20e53b8235'),(17834,17834,1,'writing-for-readable-web','resources/writing-for-readable-web',1,'2021-05-18 04:06:44','2021-05-18 04:06:44','6ade01ad-22e2-49e8-8628-0cc6e7228373'),(17835,17835,1,'photography-and-your-brand','resources/photography-and-your-brand',1,'2021-05-18 04:07:42','2021-05-18 04:07:42','49b4b9e9-ddd3-4c9d-999f-bed2072a29d8'),(17836,17836,1,'mums-mean-business','resources/mums-mean-business',1,'2021-05-18 04:08:21','2021-05-18 04:08:21','02689ea7-3a2d-4783-8d7a-2e1f1a82c0b0'),(17837,17837,1,'the-problem-of-creativity','resources/the-problem-of-creativity',1,'2021-05-18 04:08:57','2021-05-18 04:08:57','d935c086-faed-4ae1-a0c3-1a93f7ee296d'),(17838,17838,1,'learning-to-lead','resources/learning-to-lead',1,'2021-05-18 04:09:35','2021-05-18 04:09:35','9004a4d7-6e4f-4cc1-96be-d79e9a3d2cf7'),(17839,17839,1,'the-year-of-content-marketing','resources/the-year-of-content-marketing',1,'2021-05-18 04:10:15','2021-05-18 04:10:15','747d77ce-a920-49c7-be2c-31ea71684c10'),(17840,17840,1,'talking-to-the-kids-tips-for-marketing-to-gen-y','resources/talking-to-the-kids-tips-for-marketing-to-gen-y',1,'2021-05-18 04:11:10','2021-05-18 04:11:10','e49448d5-021d-49d7-b01a-a7a216426fc9'),(17841,17841,1,'righting-writing','resources/righting-writing',1,'2021-05-18 04:11:52','2021-05-18 04:11:52','daa0bb76-84f9-4524-a7e6-1d41bf213b97'),(17842,17842,1,'management-is-more-than-measurement','resources/management-is-more-than-measurement',1,'2021-05-18 04:12:33','2021-05-18 04:12:33','62e71a0b-c31e-4d6c-9629-7b6f09f6fa7b'),(17843,17843,1,'corporatese-to-english','resources/corporatese-to-english',1,'2021-05-18 04:13:08','2021-05-18 04:13:08','f6e26bcd-f48f-4a1f-8a97-7ecf4b770ad8'),(17844,17844,1,'how-to-read-the-media','resources/how-to-read-the-media',1,'2021-05-18 04:13:41','2021-05-18 04:13:41','be9de3bb-e6f1-42e6-a12e-d57f0dc141bb'),(17845,17845,1,'common-sense-isnt-common','resources/common-sense-isnt-common',1,'2021-05-18 04:14:19','2021-05-18 04:14:19','6b57b69b-e391-4b19-926b-a52c2e77777b'),(17846,17846,1,'state-your-clients-case','resources/state-your-clients-case',1,'2021-05-18 04:14:57','2021-05-18 04:14:57','91812077-4e9b-43cb-b39a-fa5edb77d4da'),(17847,17847,1,'be-heard-across-vertical-markets-and-sectors','resources/be-heard-across-vertical-markets-and-sectors',1,'2021-05-18 04:15:29','2021-05-18 04:15:29','33e82eb4-fc58-4602-9df4-79c5feaa5188'),(17850,17850,1,'family-and-child-connect',NULL,1,'2021-05-25 06:14:02','2021-05-25 06:14:02','9f1de4b4-d117-42f1-8e11-936f4d2b6ab9'),(17851,17851,1,'government',NULL,1,'2021-05-25 06:16:19','2021-05-25 06:16:19','264f48d7-1100-4f04-8fec-05157cec681e'),(17855,17855,1,'urban-utilities',NULL,1,'2021-05-26 01:35:56','2021-05-26 01:35:56','05383644-0151-4545-9d20-b4200e4b41b2'),(17857,17857,1,'brisbane-north-phn',NULL,1,'2021-05-26 01:44:01','2021-05-26 01:44:01','b42b3758-5890-4412-a642-914ce8262b34'),(17862,17862,1,'central-queensland-wide-bay-and-sunshine-coast-phn',NULL,1,'2021-05-26 02:12:21','2021-05-26 02:12:21','023454a3-bd2f-4053-a9d6-16e9ff000529'),(17864,17864,1,'amg-super',NULL,1,'2021-05-26 02:16:07','2021-05-26 02:16:07','8255359f-291b-4c18-96fe-c91c04007ea6'),(17866,17866,1,'mosaic-chartered-accountants',NULL,1,'2021-05-26 02:17:58','2021-05-26 02:17:58','d2c5832e-9ace-4dcc-90e5-8721a53f4b8d'),(17868,17868,1,'tritium',NULL,1,'2021-05-26 03:26:45','2021-05-26 03:26:45','def3d21b-caa8-453f-9ba0-f40d4f55b78d'),(17872,17872,1,'queensland-mental-health-commission',NULL,1,'2021-05-26 03:44:07','2021-05-26 03:44:07','d8279a3d-8d0d-4c13-b645-ceb8d231c06a'),(17875,17875,1,NULL,NULL,1,'2021-05-31 07:10:29','2021-05-31 07:10:29','4265551e-bc1c-4f07-b540-745b268959b7'),(17876,17876,1,NULL,NULL,1,'2021-05-31 07:10:29','2021-05-31 07:10:29','eac0a1f1-7dbb-45ba-8c7b-c367b11e6f6b'),(17877,17877,1,NULL,NULL,1,'2021-05-31 07:10:29','2021-05-31 07:10:29','0c98c426-0b26-428c-aa89-00be5284ac01'),(17878,17878,1,NULL,NULL,1,'2021-05-31 07:10:29','2021-05-31 07:10:29','7fcb7a83-a19b-42bd-a7d5-2d6776462108'),(17879,17879,1,NULL,NULL,1,'2021-05-31 07:10:29','2021-05-31 07:10:29','a047466f-b5da-4930-9669-66185f7c9123'),(17880,17880,1,NULL,NULL,1,'2021-05-31 07:10:29','2021-05-31 07:10:29','978e6591-c679-48da-b621-faef036f9510'),(17881,17881,1,NULL,NULL,1,'2021-05-31 07:14:26','2021-05-31 07:14:26','1adcf99e-50d8-4430-b5e1-c056df290edc'),(17882,17882,1,NULL,NULL,1,'2021-05-31 07:14:26','2021-05-31 07:14:26','72501d44-62fd-4368-82db-26eb57d40637'),(17883,17883,1,NULL,NULL,1,'2021-05-31 07:14:26','2021-05-31 07:14:26','8b40bfca-227a-4294-bd96-27a6745fd94a'),(17884,17884,1,NULL,NULL,1,'2021-05-31 07:14:26','2021-05-31 07:14:26','e36e2882-1f3b-4271-a823-9d4efd3c5389'),(17885,17885,1,NULL,NULL,1,'2021-05-31 07:14:26','2021-05-31 07:14:26','35604477-0c4a-4367-8c38-3be671b8ed27'),(17886,17886,1,NULL,NULL,1,'2021-05-31 07:14:26','2021-05-31 07:14:26','9a19fada-2580-45c6-bd7c-f065aa579a05'),(17887,17887,1,NULL,NULL,1,'2021-05-31 07:17:11','2021-05-31 07:17:11','63ce8cf3-1a2d-467a-b51b-269a3c09fbaa'),(17888,17888,1,NULL,NULL,1,'2021-05-31 07:17:11','2021-05-31 07:17:11','d47b6f56-7b37-4332-95b6-78c1cc5e4e35'),(17889,17889,1,NULL,NULL,1,'2021-05-31 07:17:11','2021-05-31 07:17:11','9a5ba111-c8e7-4ca0-b630-36a67b5f8c86'),(17890,17890,1,NULL,NULL,1,'2021-05-31 07:17:11','2021-05-31 07:17:11','544338f6-6f2d-4e4a-9f17-18b8a6722524'),(17891,17891,1,NULL,NULL,1,'2021-05-31 07:17:11','2021-05-31 07:17:11','d7d41b3c-c6cc-4a80-8baf-ed7485d94eef'),(17892,17892,1,NULL,NULL,1,'2021-05-31 07:17:11','2021-05-31 07:17:11','96cfbe5b-f877-427c-b5ca-20614c938a04'),(17893,17893,1,NULL,NULL,1,'2021-05-31 07:20:10','2021-05-31 07:20:10','3b180dff-c88b-4e41-ac0c-df654e1b0dec'),(17894,17894,1,NULL,NULL,1,'2021-05-31 07:20:10','2021-05-31 07:20:10','fb2b70e1-cd1d-4305-91f0-cdd27e0bf391'),(17895,17895,1,NULL,NULL,1,'2021-05-31 07:20:10','2021-05-31 07:20:10','24fe5cc3-e874-4183-916e-a836b5efd0f2'),(17896,17896,1,NULL,NULL,1,'2021-05-31 07:20:10','2021-05-31 07:20:10','9b44ebea-0948-41d4-a52e-86c42ab3d81f'),(17897,17897,1,NULL,NULL,1,'2021-05-31 07:20:10','2021-05-31 07:20:10','5459bb9c-3f08-423f-96ea-2ec2e8cb931d'),(17898,17898,1,NULL,NULL,1,'2021-05-31 07:20:10','2021-05-31 07:20:10','2a722852-e1bb-40d9-8ab5-f3720903dd3c'),(17899,17899,1,NULL,NULL,1,'2021-06-01 06:34:23','2021-06-01 06:34:23','3e0b0c5d-b25f-4b0c-9773-89be0d067cfc'),(17900,17900,1,NULL,NULL,1,'2021-06-01 06:34:23','2021-06-01 06:34:23','362083b3-5357-4fb2-8ded-e26b273c0c07'),(17901,17901,1,NULL,NULL,1,'2021-06-01 06:34:23','2021-06-01 06:34:23','c891451d-a71c-4ce6-aa1b-48a79e59e03c'),(17902,17902,1,NULL,NULL,1,'2021-06-01 06:34:23','2021-06-01 06:34:23','5fc47750-e899-4722-adac-cd0edb9af27b'),(17903,17903,1,NULL,NULL,1,'2021-06-01 06:34:23','2021-06-01 06:34:23','b46a57b2-b17e-48ab-b901-1a338c36d7d0'),(17904,17904,1,NULL,NULL,1,'2021-06-01 06:34:23','2021-06-01 06:34:23','70305e9f-a6f9-4d42-afa9-3d263274a625'),(17905,17905,1,NULL,NULL,1,'2021-06-01 06:40:02','2021-06-01 06:40:02','86950111-9dc8-4c5a-94fb-da4506d26317'),(17906,17906,1,NULL,NULL,1,'2021-06-01 06:40:02','2021-06-01 06:40:02','bc1b1b4e-eb71-4494-af8a-80132d766c3a'),(17907,17907,1,NULL,NULL,1,'2021-06-01 06:40:02','2021-06-01 06:40:02','cd42254e-c8b0-40e0-ade6-df18b590cc99'),(17908,17908,1,NULL,NULL,1,'2021-06-01 06:40:02','2021-06-01 06:40:02','61bbb4b9-0c3b-4b47-89f7-a671f8c9f61f'),(17909,17909,1,NULL,NULL,1,'2021-06-01 06:40:02','2021-06-01 06:40:02','fbfc7364-2667-4867-9e2b-433062ca2263'),(17921,17921,1,NULL,NULL,1,'2021-06-01 06:59:14','2021-06-01 06:59:14','426760e0-7abb-4641-8875-8378a34e9bf0'),(17922,17922,1,NULL,NULL,1,'2021-06-01 06:59:14','2021-06-01 06:59:14','895c0d1d-bc95-440a-8be9-8e648a44e0aa'),(17923,17923,1,NULL,NULL,1,'2021-06-01 06:59:14','2021-06-01 06:59:14','41fa626a-d647-4639-8e14-f866e3378410'),(17924,17924,1,NULL,NULL,1,'2021-06-01 06:59:14','2021-06-01 06:59:14','f6c139c1-cbe2-4c9d-94be-052e2e6bc29e'),(17925,17925,1,NULL,NULL,1,'2021-06-01 06:59:14','2021-06-01 06:59:14','2a9fa977-fb36-43b3-8d1a-08954d924ea4'),(17926,17926,1,NULL,NULL,1,'2021-06-01 06:59:14','2021-06-01 06:59:14','fe6e99d3-b40d-4aa0-ac5c-0fc5cfa4b155'),(17934,17934,1,NULL,NULL,1,'2021-06-01 07:03:46','2021-06-01 07:03:46','62e20fc5-8d8d-4276-982a-dd6d31e8fbe5'),(17935,17935,1,NULL,NULL,1,'2021-06-01 07:03:46','2021-06-01 07:03:46','d3afaf55-4f21-4f4e-ba85-2d85bbe31116'),(17936,17936,1,NULL,NULL,1,'2021-06-01 07:03:46','2021-06-01 07:03:46','aed2c5c4-e5a9-4851-a802-881573369a6e'),(17937,17937,1,NULL,NULL,1,'2021-06-01 07:03:46','2021-06-01 07:03:46','ca67f189-14ca-4fee-9aad-a7ffb77ddc7a'),(17938,17938,1,NULL,NULL,1,'2021-06-01 07:03:46','2021-06-01 07:03:46','f6e5bd03-15b7-470c-bbd3-11a6319a0535'),(17939,17939,1,NULL,NULL,1,'2021-06-01 07:03:46','2021-06-01 07:03:46','f73e25b3-20b1-4524-8116-2f3e13fe23b4'),(17941,17941,1,NULL,NULL,1,'2021-06-01 07:07:28','2021-06-01 07:07:28','38f75cef-005b-4330-bcf4-4032b64fd8d0'),(17942,17942,1,NULL,NULL,1,'2021-06-01 07:07:28','2021-06-01 07:07:28','7b4143c0-d656-4a0a-859a-d8d229e06878'),(17943,17943,1,NULL,NULL,1,'2021-06-01 07:07:28','2021-06-01 07:07:28','119cbd9d-ed1f-4a9b-a459-c65212f768f4'),(17944,17944,1,NULL,NULL,1,'2021-06-01 07:07:28','2021-06-01 07:07:28','6066a479-1c2b-467a-95df-8667ceb65693'),(17945,17945,1,NULL,NULL,1,'2021-06-01 07:07:28','2021-06-01 07:07:28','87b02f53-bc1c-43dc-bcaa-4d8c69268048'),(17946,17946,1,NULL,NULL,1,'2021-06-01 07:07:28','2021-06-01 07:07:28','13401297-3193-40ac-b267-727b72900ac8'),(17954,17954,1,NULL,NULL,1,'2021-06-01 07:09:17','2021-06-01 07:09:17','832e3df5-0347-483c-b278-a717b9b03bc4'),(17956,17956,1,NULL,NULL,1,'2021-06-01 07:09:51','2021-06-01 07:09:51','cfa14d22-a007-43df-91b5-aa1feadba92a'),(17958,17958,1,NULL,NULL,1,'2021-06-01 07:14:11','2021-06-01 07:14:11','3e6d1adf-7818-48be-bb28-8a98c5bcc24f'),(17959,17959,1,NULL,NULL,1,'2021-06-01 07:14:11','2021-06-01 07:14:11','e68ed725-3842-4b3b-b88e-7c43bb68a4cc'),(17960,17960,1,NULL,NULL,1,'2021-06-01 07:14:11','2021-06-01 07:14:11','55bdd588-4fe8-4551-9768-744dc3f1c4a3'),(17961,17961,1,NULL,NULL,1,'2021-06-01 07:14:12','2021-06-01 07:14:12','a17d58bd-182b-4f84-91c8-c2b79fa79d4c'),(17962,17962,1,NULL,NULL,1,'2021-06-01 07:14:12','2021-06-01 07:14:12','617e797d-cc8f-4812-9de5-f8d3876ca724'),(17963,17963,1,NULL,NULL,1,'2021-06-01 07:14:12','2021-06-01 07:14:12','0e5e378e-9754-4bda-9c20-c34dfbc63821'),(17964,17964,1,'strategy','services-categories/strategy',1,'2021-06-01 07:14:22','2021-06-01 07:14:24','3dc52d47-d334-4dd6-a568-d9851af9b38b'),(17965,17965,1,'brand','services-categories/brand',1,'2021-06-01 07:14:29','2021-06-01 07:14:30','89805abf-a26e-48fd-995c-a8014810467e'),(17966,17966,1,'campaign','services-categories/campaign',1,'2021-06-01 07:14:34','2021-06-01 07:14:35','a898df2c-48ac-41c9-b5ce-7b494ec36e61'),(17967,17967,1,'behaviour-change','services-categories/behaviour-change',1,'2021-06-01 07:14:41','2021-06-01 07:14:42','52fc1121-bef4-4a0c-934f-efa19689319f'),(17968,17968,1,'engagement','services-categories/engagement',1,'2021-06-01 07:14:46','2021-06-01 07:14:48','6d2bbf31-8760-4077-bf29-1f09f9eab3b0'),(17969,17969,1,'video','services-categories/video',1,'2021-06-01 07:14:51','2021-06-01 07:14:52','b3236b96-6e44-4b07-a496-65ea380b538d'),(17970,17970,1,'digital','services-categories/digital',1,'2021-06-01 07:14:56','2021-06-01 07:14:58','8336251a-fa24-4689-a94b-ca13b12ed1cd'),(17971,17971,1,'content','services-categories/content',1,'2021-06-01 07:15:01','2021-06-01 07:15:03','98c5163c-60cd-4069-8ab9-f29989e161eb'),(17972,17972,1,NULL,NULL,1,'2021-06-01 07:19:49','2021-06-01 07:19:49','ba8a199b-ecda-4fea-88d2-daafb2f2afcd'),(17973,17973,1,NULL,NULL,1,'2021-06-01 07:19:49','2021-06-01 07:19:49','5aa30815-68bf-4173-b02d-4c9d44e6f104'),(17974,17974,1,NULL,NULL,1,'2021-06-01 07:19:49','2021-06-01 07:19:49','71ac286a-5fdf-4346-a3ac-4ab8a70b4abc'),(17975,17975,1,NULL,NULL,1,'2021-06-01 07:19:49','2021-06-01 07:19:49','24853c34-e454-4e21-900f-ce2731846a0b'),(17976,17976,1,NULL,NULL,1,'2021-06-01 07:19:49','2021-06-01 07:19:49','7986b285-58f2-4fdb-b383-3a7eaa06deff'),(17977,17977,1,'the-big-reveal','work/the-big-reveal',1,'2021-06-01 07:20:12','2021-06-01 07:20:12','e5d105cf-4b5f-4a94-89b6-1c328416435a'),(17978,17978,1,NULL,NULL,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','9e7d69d2-66c1-48bb-af43-873ba4cfdce1'),(17979,17979,1,NULL,NULL,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','5e0620a0-f422-4697-87d2-c24c842f4b6d'),(17980,17980,1,NULL,NULL,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','e8d6700e-7ba9-43e9-826e-6af09db5e0c5'),(17981,17981,1,NULL,NULL,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','0faae642-12e9-4684-bede-7eb7906dfe51'),(17982,17982,1,NULL,NULL,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','23d4cd55-2fd4-4173-bdc9-f0a670239f6b'),(17983,17983,1,NULL,NULL,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','3b921b27-9f53-402b-9bdc-421ddd40e20d'),(17984,17984,1,NULL,NULL,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','430ca6fb-515f-4357-90d6-cbf26a701a39'),(17985,17985,1,NULL,NULL,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','f1fa4bd8-5a87-4685-af3b-2156d4fab936'),(17986,17986,1,NULL,NULL,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','15b52527-cca4-4b5e-8817-9c5d4070dc39'),(17987,17987,1,NULL,NULL,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','0582cb43-39ee-493b-9342-3d97ed0b854d'),(17988,17988,1,NULL,NULL,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','33ba54f3-5711-44b8-8281-1eacaece3c6f'),(17989,17989,1,NULL,NULL,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','29c65ae5-0d90-4448-b35a-1158159928c4'),(17990,17990,1,NULL,NULL,1,'2021-06-02 04:09:43','2021-06-02 04:09:43','19324817-6f21-4a10-866b-e410e69c34cb'),(17991,17991,1,NULL,NULL,1,'2021-06-02 23:41:07','2021-06-02 23:41:07','1ca27970-2c9e-43c6-8f62-61cd4131cb21'),(17992,17992,1,NULL,NULL,1,'2021-06-02 23:41:07','2021-06-02 23:41:07','ce3cb536-d1e8-4df0-9158-1c15992fdbaa'),(17993,17993,1,NULL,NULL,1,'2021-06-02 23:41:07','2021-06-02 23:41:07','db19f76e-d257-430a-a316-0b90a0209683'),(17994,17994,1,NULL,NULL,1,'2021-06-02 23:41:07','2021-06-02 23:41:07','3d727cae-b167-4a07-b660-cef923e4f2dc'),(17995,17995,1,NULL,NULL,1,'2021-06-02 23:41:07','2021-06-02 23:41:07','506b1904-c7ee-4e8c-96cf-480e09106d9a'),(17996,17996,1,NULL,NULL,1,'2021-06-02 23:43:43','2021-06-02 23:43:43','1aaaaecc-33d0-4636-8d20-c9d26bd4b70e'),(17997,17997,1,NULL,NULL,1,'2021-06-02 23:43:43','2021-06-02 23:43:43','cb5580eb-2af4-4cad-9bc9-9c013045105a'),(17998,17998,1,NULL,NULL,1,'2021-06-02 23:43:43','2021-06-02 23:43:43','a297a8ba-eed0-419f-b61b-9001605ca429'),(17999,17999,1,NULL,NULL,1,'2021-06-02 23:43:43','2021-06-02 23:43:43','d9e8c23c-0646-45c7-b1f0-967554a239dd'),(18000,18000,1,NULL,NULL,1,'2021-06-02 23:43:43','2021-06-02 23:43:43','3d593261-60da-4d4e-a4e4-30889dfdcbc3'),(18001,18001,1,NULL,NULL,1,'2021-06-02 23:43:43','2021-06-02 23:43:43','3d9c6c8f-f067-4557-a5c2-55950e7078df'),(18003,18003,1,'domestic-and-family-violence-awareness-campaign','work/domestic-and-family-violence-awareness-campaign',1,'2021-06-03 05:19:19','2021-06-03 05:19:19','dccbd177-3724-4f57-bc2e-d10a3d4a0a97'),(18004,18004,1,NULL,NULL,1,'2021-06-03 05:19:19','2021-06-03 05:19:19','6cac7f2b-2981-46af-a276-70710e4d712c'),(18005,18005,1,NULL,NULL,1,'2021-06-03 05:19:19','2021-06-03 05:19:19','1b7d1134-3664-4db2-9e65-60f00da5560a'),(18021,18021,1,'domestic-and-family-violence-awareness-campaign','work/domestic-and-family-violence-awareness-campaign',1,'2021-06-03 05:22:27','2021-06-03 05:22:27','73cee8f3-7709-4212-9bc9-c4d18fa55a79'),(18022,18022,1,NULL,NULL,1,'2021-06-03 05:22:27','2021-06-03 05:22:27','01739939-6b3b-4258-ba34-6a58dda475d8'),(18023,18023,1,NULL,NULL,1,'2021-06-03 05:22:27','2021-06-03 05:22:27','fc252295-d571-4482-8e95-2bdb386307fb'),(18024,18024,1,NULL,NULL,1,'2021-06-03 05:22:27','2021-06-03 05:22:27','12f9c2e4-5bd8-42b4-acc8-503ae4cfbbb4'),(18025,18025,1,NULL,NULL,1,'2021-06-03 05:22:27','2021-06-03 05:22:27','38e7d799-914b-4bf8-b6e9-f570e4d34006'),(18027,18027,1,'domestic-and-family-violence-awareness-campaign','work/domestic-and-family-violence-awareness-campaign',1,'2021-06-03 05:27:17','2021-06-03 05:27:17','cf544a55-7444-4d45-bd72-3817c3290b10'),(18028,18028,1,NULL,NULL,1,'2021-06-03 05:27:17','2021-06-03 05:27:17','26b55ac4-b3c5-40f1-88a2-ff0b5f83a2a2'),(18029,18029,1,NULL,NULL,1,'2021-06-03 05:27:17','2021-06-03 05:27:17','9112cd65-8108-4dd9-90e9-6c4e37352dbb'),(18030,18030,1,NULL,NULL,1,'2021-06-03 05:27:17','2021-06-03 05:27:17','c8a97ed7-3ecd-4036-b8ac-04c6f3e7e7d3'),(18031,18031,1,NULL,NULL,1,'2021-06-03 05:27:17','2021-06-03 05:27:17','64be3d48-e931-4cf6-ac70-eb23bfe22303'),(18032,18032,1,NULL,NULL,1,'2021-06-03 05:27:18','2021-06-03 05:27:18','ca7dd871-ed3d-4eae-ac02-ec9bd07d13c1'),(18033,18033,1,'research',NULL,1,'2021-06-03 05:55:30','2021-06-03 05:55:30','568e9c5e-0400-4084-9764-449d89ad4388'),(18034,18034,1,'domestic-and-family-violence-awareness-campaign','work/domestic-and-family-violence-awareness-campaign',1,'2021-06-03 05:55:32','2021-06-03 05:55:32','245ca0b2-a6b3-40b7-89ff-7d95660eabc0'),(18035,18035,1,NULL,NULL,1,'2021-06-03 05:55:32','2021-06-03 05:55:32','0db70a77-9bc1-475b-836e-db8fc87ccae7'),(18036,18036,1,NULL,NULL,1,'2021-06-03 05:55:32','2021-06-03 05:55:32','8c7381dc-d969-478b-a369-56d70c10e3a5'),(18037,18037,1,NULL,NULL,1,'2021-06-03 05:55:32','2021-06-03 05:55:32','07a48f15-a892-4feb-86c7-8a89f09c4703'),(18038,18038,1,NULL,NULL,1,'2021-06-03 05:55:32','2021-06-03 05:55:32','db0bd71b-ca84-42ef-8716-c5e0093cd78b'),(18039,18039,1,NULL,NULL,1,'2021-06-03 05:55:32','2021-06-03 05:55:32','c9a72488-3020-4ded-85e4-8a3e9b3cc68c'),(18040,18040,1,'campaign-strategy',NULL,1,'2021-06-03 05:55:44','2021-06-03 05:55:44','ef361945-3d2f-4b83-8ad6-15c869780ce8'),(18041,18041,1,'concept-development',NULL,1,'2021-06-03 05:55:51','2021-06-03 05:55:51','8e6ea6af-b684-40cd-bb6b-9446d00ec3d7'),(18042,18042,1,'key-messages',NULL,1,'2021-06-03 05:55:59','2021-06-03 05:55:59','8c837f46-9254-496e-9f21-e7b37ec808a4'),(18043,18043,1,'custom-illustration',NULL,1,'2021-06-03 05:56:05','2021-06-03 05:56:05','48b1755c-88bf-4fa0-87f4-1c55437b8d49'),(18044,18044,1,'scriptwriting',NULL,1,'2021-06-03 05:56:11','2021-06-03 05:56:11','d4d3d2b6-d8e4-4e2f-9e4e-55c8cd35c430'),(18045,18045,1,'storyboards',NULL,1,'2021-06-03 05:56:17','2021-06-03 05:56:17','1ed4ceb4-c6e7-4a02-bd86-56927da55bb0'),(18046,18046,1,'animation',NULL,1,'2021-06-03 05:56:23','2021-06-03 05:56:23','8449697a-0d8e-496e-967b-259dcb3c5f9c'),(18047,18047,1,'voice-over-and-sound-design',NULL,1,'2021-06-03 05:56:28','2021-06-03 05:56:28','231b6bb1-2426-4f30-8324-9278758dcfc0'),(18048,18048,1,'social-media-videos',NULL,1,'2021-06-03 05:56:33','2021-06-03 05:56:33','4991bfcb-c6dd-49f7-af3c-45ed6c193e1d'),(18049,18049,1,'radiprogrammatic-adso-ads',NULL,1,'2021-06-03 05:56:41','2021-06-03 05:56:41','62a9f6d6-e9e9-4066-89c7-aac426286c11'),(18050,18050,1,'digital-banners',NULL,1,'2021-06-03 05:56:48','2021-06-03 05:56:48','b8652f54-0fcf-49eb-ab67-4a39876fe5ac'),(18051,18051,1,'domestic-and-family-violence-awareness-campaign','work/domestic-and-family-violence-awareness-campaign',1,'2021-06-03 05:56:53','2021-06-03 05:56:53','5164e606-dd14-49a0-9830-f72efdd948eb'),(18052,18052,1,NULL,NULL,1,'2021-06-03 05:56:54','2021-06-03 05:56:54','73922fe1-c073-4e31-8681-909960ea17cb'),(18053,18053,1,NULL,NULL,1,'2021-06-03 05:56:54','2021-06-03 05:56:54','92954cd7-6610-44cf-bd0e-9661c69fa069'),(18054,18054,1,NULL,NULL,1,'2021-06-03 05:56:54','2021-06-03 05:56:54','6a4c6a4c-e5b4-4a09-9539-0f89a8be9066'),(18055,18055,1,NULL,NULL,1,'2021-06-03 05:56:54','2021-06-03 05:56:54','44d8911c-49f2-4d9c-a8d2-37c18c22f19e'),(18056,18056,1,NULL,NULL,1,'2021-06-03 05:56:54','2021-06-03 05:56:54','1b14717f-3230-49d8-aca4-c85264822d58'),(18057,18057,1,'government','sector-categories/government',1,'2021-06-03 05:58:40','2021-06-03 05:58:41','053d8893-ea88-44fd-9183-1727f189f4ee'),(18071,18071,1,'domestic-and-family-violence-awareness-campaign','work/domestic-and-family-violence-awareness-campaign',1,'2021-06-03 06:11:01','2021-06-03 06:11:01','45ede1c0-c5fd-4a98-b482-e0b5445203ff'),(18072,18072,1,NULL,NULL,1,'2021-06-03 06:11:01','2021-06-03 06:11:01','3a74cc6e-3dda-4722-a86b-fcbd468f6f8e'),(18073,18073,1,NULL,NULL,1,'2021-06-03 06:11:01','2021-06-03 06:11:01','cd16290b-a391-4156-bf0a-c2d0c9377e48'),(18074,18074,1,NULL,NULL,1,'2021-06-03 06:11:01','2021-06-03 06:11:01','9c3e3414-d8ca-4629-b5ba-210342762237'),(18075,18075,1,NULL,NULL,1,'2021-06-03 06:11:01','2021-06-03 06:11:01','7145b66e-4d2a-4b61-8bf7-d2d4efcee2be'),(18076,18076,1,NULL,NULL,1,'2021-06-03 06:11:01','2021-06-03 06:11:01','4ef0e85f-ccfe-4028-87a2-6f90ad989f4e'),(18077,18077,1,'dfv-campaign','work/dfv-campaign',1,'2021-06-03 06:12:30','2021-06-03 06:12:30','6c7f4c0e-f34d-4742-b342-11b165ab7b7c'),(18078,18078,1,NULL,NULL,1,'2021-06-03 06:12:30','2021-06-03 06:12:30','d2da5b05-77cb-4804-9717-4b41602ad379'),(18079,18079,1,NULL,NULL,1,'2021-06-03 06:12:30','2021-06-03 06:12:30','7a4e11ef-c358-4190-be5f-5fc02770d42a'),(18080,18080,1,NULL,NULL,1,'2021-06-03 06:12:30','2021-06-03 06:12:30','67db4b2b-b7b5-4455-b75d-2db40a87fffb'),(18081,18081,1,NULL,NULL,1,'2021-06-03 06:12:30','2021-06-03 06:12:30','0e14ae81-2782-40c6-ac35-83b37769faaf'),(18082,18082,1,NULL,NULL,1,'2021-06-03 06:12:30','2021-06-03 06:12:30','d1443b8d-b35f-4b3a-99f7-040d1d93fe75'),(18097,18097,1,'dfv-campaign','work/dfv-campaign',1,'2021-06-03 06:13:45','2021-06-03 06:13:45','211aa8f4-d724-4fd3-a56a-2a732ed33017'),(18098,18098,1,NULL,NULL,1,'2021-06-03 06:13:45','2021-06-03 06:13:45','961e3fd5-d035-41c9-b98a-fd1609550030'),(18099,18099,1,NULL,NULL,1,'2021-06-03 06:13:45','2021-06-03 06:13:45','227a25e4-7a9e-44db-966a-2b1adaa98cd6'),(18100,18100,1,NULL,NULL,1,'2021-06-03 06:13:45','2021-06-03 06:13:45','5dd1261e-362d-4c05-9cc5-f2dfa6bdf108'),(18101,18101,1,NULL,NULL,1,'2021-06-03 06:13:45','2021-06-03 06:13:45','3de0984e-2d6d-4772-9025-70ff7901ad5a'),(18102,18102,1,NULL,NULL,1,'2021-06-03 06:13:45','2021-06-03 06:13:45','b79ffefd-4366-438d-aca5-bb4eabee9b79'),(18103,18103,1,NULL,NULL,1,'2021-06-03 06:13:45','2021-06-03 06:13:45','5c6d5186-8e2a-472b-bafb-c4b7129475c0'),(18104,18104,1,'copywriting',NULL,1,'2021-06-03 06:15:07','2021-06-03 06:15:07','677c5d2d-516c-4c2b-a8bc-d34be830bde7'),(18105,18105,1,'collateral-design',NULL,1,'2021-06-03 06:15:25','2021-06-03 06:15:25','02538f19-dad5-40a4-958e-453e5f017747'),(18106,18106,1,'merchandise-design',NULL,1,'2021-06-03 06:15:35','2021-06-03 06:15:35','9df1822e-b3df-4933-9bb5-0ff1a8131dce'),(18107,18107,1,'exhibition-design',NULL,1,'2021-06-03 06:15:42','2021-06-03 06:15:42','e7f6f177-4110-4319-aea9-cbdc685f930c'),(18108,18108,1,'game-development',NULL,1,'2021-06-03 06:15:49','2021-06-03 06:15:49','b98b8e0e-379b-494c-a60c-d2be9b010b92'),(18109,18109,1,'no-3-campaign','work/no-3-campaign',1,'2021-06-03 06:15:55','2021-06-03 06:15:55','26493253-6b0e-49e6-8498-2d3f7c433bdc'),(18110,18110,1,'no-3-campaign','work/no-3-campaign',1,'2021-06-03 06:15:55','2021-06-03 06:15:55','3ab8ebac-3bda-487d-a010-08fece265d84'),(18112,18112,1,'no-3-campaign','work/no-3-campaign',1,'2021-06-03 06:16:26','2021-06-03 06:16:26','bd3be644-db0b-44b8-8c9a-15e3bacde839'),(18113,18113,1,'no-3-campaign','work/no-3-campaign',1,'2021-06-03 06:16:30','2021-06-03 06:16:30','ea0c2077-4b58-4453-bd51-6748e1802a1a'),(18114,18114,1,'market-research',NULL,1,'2021-06-03 06:16:46','2021-06-03 06:16:46','5af28ebc-9625-4920-9f51-7bfd42ff815e'),(18115,18115,1,'focus-group-facilitation',NULL,1,'2021-06-03 06:16:54','2021-06-03 06:16:54','f4efa7ef-b3a6-46ff-8cce-eff503017dee'),(18116,18116,1,'insights-development',NULL,1,'2021-06-03 06:17:01','2021-06-03 06:17:01','0ae24d7b-939f-4703-9dca-4bdf94f695a1'),(18117,18117,1,'photography',NULL,1,'2021-06-03 06:17:12','2021-06-03 06:17:12','f90ef05e-fdb8-4b5b-bd1d-eff4b7f046c9'),(18118,18118,1,'video-production',NULL,1,'2021-06-03 06:17:17','2021-06-03 06:17:17','65da1eb8-e8ba-40db-965d-aff8c7b56f5c'),(18119,18119,1,'videos-for-social-media',NULL,1,'2021-06-03 06:17:23','2021-06-03 06:17:23','edee5fba-ce59-4841-9857-2424c1f5bd24'),(18120,18120,1,'digital-ads',NULL,1,'2021-06-03 06:17:28','2021-06-03 06:17:28','c1d4e764-b70a-4808-8f50-39fab12fede6'),(18121,18121,1,'website',NULL,1,'2021-06-03 06:17:32','2021-06-03 06:17:32','a653acd5-88d5-4bb8-a0cd-80e16b9f1868'),(18122,18122,1,'reasons-to-stay','work/reasons-to-stay',1,'2021-06-03 06:17:38','2021-06-03 06:17:38','6822031b-f080-4c60-a0d0-c954d965e8b9'),(18123,18123,1,'reasons-to-stay','work/reasons-to-stay',1,'2021-06-03 06:17:38','2021-06-03 06:17:38','4ff964e6-e09f-4035-96cb-7b0bc2d98b38'),(18124,18124,1,'reasons-to-stay','work/reasons-to-stay',1,'2021-06-03 06:17:42','2021-06-03 06:17:42','e2ad1518-4e9a-4798-b753-d5bde037db52'),(18125,18125,1,'social-media-management',NULL,1,'2021-06-03 22:50:50','2021-06-03 22:50:50','e7946076-4f2a-42ea-ba08-724983ce06a6'),(18126,18126,1,'medical-mums','work/medical-mums',1,'2021-06-03 22:51:16','2021-06-03 22:51:16','2154ef2c-7537-4ae4-99d0-fe8a87e765cb'),(18127,18127,1,'medical-mums','work/medical-mums',1,'2021-06-03 22:51:16','2021-06-03 22:51:16','b876a5c1-fd3d-4775-906a-11a1aa11609e'),(18128,18128,1,'medical-mums','work/medical-mums',1,'2021-06-03 22:51:20','2021-06-03 22:51:20','c6483713-4eb1-4774-9700-d6d8c00f8e2a'),(18129,18129,1,'digital-strategy',NULL,1,'2021-06-03 22:51:45','2021-06-03 22:51:45','dbc11a3c-8f63-455c-a868-0191239914c3'),(18130,18130,1,'website-scoping',NULL,1,'2021-06-03 22:51:51','2021-06-03 22:51:51','73d11b2e-e0f6-42f2-843b-cb996d9ff24e'),(18131,18131,1,'content-design',NULL,1,'2021-06-03 22:51:56','2021-06-03 22:51:56','ed00f230-6b57-4e98-b9cd-e10b4208e413'),(18132,18132,1,'ux-design',NULL,1,'2021-06-03 22:52:04','2021-06-03 22:52:04','385a5374-62da-473d-8325-aa1edd01283f'),(18133,18133,1,'website-development',NULL,1,'2021-06-03 22:52:09','2021-06-03 22:52:09','88c88246-acaf-40b6-ac5c-ff503dfee0fc'),(18134,18134,1,'hosting',NULL,1,'2021-06-03 22:52:41','2021-06-03 22:52:41','5e19e756-ce15-447d-aec6-d7b01e16ae00'),(18135,18135,1,'ongoing-maintenance',NULL,1,'2021-06-03 22:52:47','2021-06-03 22:52:47','ba08aceb-bd63-4893-b728-505ea60fd8ba'),(18139,18139,1,'your-care-navigator','work/your-care-navigator',1,'2021-06-03 23:01:25','2022-07-07 02:20:26','014e32e3-a9de-4e72-9f25-2b33ca0a3271'),(18140,18140,1,'my-mental-health','work/my-mental-health',1,'2021-06-03 23:01:25','2021-06-03 23:01:25','a75055c8-eb52-4023-89dc-a92cacd6493d'),(18141,18141,1,'my-mental-health','work/my-mental-health',1,'2021-06-03 23:01:29','2021-06-03 23:01:29','38f5dbc8-b00c-4394-b446-11f2e5d1b125'),(18142,18142,1,'right-time-right-place','work/right-time-right-place',1,'2021-06-03 23:02:15','2021-06-03 23:02:15','74cea62f-6d55-4b76-8858-6312391c61b8'),(18143,18143,1,'right-time-right-place','work/right-time-right-place',1,'2021-06-03 23:02:15','2021-06-03 23:02:15','5bd160bb-91c4-4171-99cc-d5e54a4e0db1'),(18144,18144,1,'right-time-right-place','work/right-time-right-place',1,'2021-06-03 23:02:19','2021-06-03 23:02:19','fc12e808-c81e-40e7-8407-bf3c094eb80f'),(18145,18145,1,'brand',NULL,1,'2021-06-03 23:02:34','2021-06-03 23:02:34','2caf1898-7a98-42a6-a0db-5e9df70dbd7c'),(18149,18149,1,'brand-strategy',NULL,1,'2021-06-03 23:03:09','2021-06-03 23:03:09','ce6c086b-4495-4741-8dfc-b438857b56cd'),(18150,18150,1,'brand-architecture',NULL,1,'2021-06-03 23:03:24','2021-06-03 23:03:24','d36b445a-6a21-4331-a7cf-440706e3fa21'),(18151,18151,1,'product-branding',NULL,1,'2021-06-03 23:03:35','2021-06-03 23:03:35','c381427f-b22a-4fbf-aacb-8802cfea9589'),(18152,18152,1,'public-relations',NULL,1,'2021-06-03 23:03:40','2021-06-03 23:03:40','2a1354b7-ed20-4cc8-b2ae-6f25e4fada9c'),(18153,18153,1,'brand-book',NULL,1,'2021-06-03 23:03:47','2021-06-03 23:03:47','0fd5a058-fd0e-4387-a9c6-9c73ccc95537'),(18154,18154,1,'3d-animation',NULL,1,'2021-06-03 23:03:53','2021-06-03 23:03:53','8f735f64-cbec-40b3-acff-a7f1540754f3'),(18155,18155,1,'website-design',NULL,1,'2021-06-03 23:03:57','2021-06-03 23:03:57','c778fd93-ed58-4130-ae46-4da552b1071e'),(18156,18156,1,'tritium','work/tritium',1,'2021-06-03 23:04:04','2021-06-03 23:04:04','30496e2e-e7d8-4e24-93c9-7ff08ba820cd'),(18157,18157,1,'tritium','work/tritium',1,'2021-06-03 23:04:04','2021-06-03 23:04:04','dd304e13-1e4f-4bcc-8ed4-abe328c792f1'),(18158,18158,1,'tritium','work/tritium',1,'2021-06-03 23:04:08','2021-06-03 23:04:08','f925dc15-db1d-4e32-995e-5a5aca3c7150'),(18159,18159,1,'engagement-with-aboriginal-and-torres-strait-islander-communities',NULL,1,'2021-06-03 23:04:20','2021-06-03 23:04:20','6ffecd0e-74ee-4cd3-98a5-40c4b8a88d3b'),(18160,18160,1,'engagement-with-members-of-the-lgbtqi-community',NULL,1,'2021-06-03 23:04:30','2021-06-03 23:04:30','e41e9c5b-bc0a-46f1-a0c6-14edb6628da3'),(18161,18161,1,'workshop-facilitation',NULL,1,'2021-06-03 23:04:32','2021-06-03 23:04:32','f0ced0b8-9ac8-4030-a223-84981da6062c'),(18162,18162,1,'report-writing-editing-and-proofreading',NULL,1,'2021-06-03 23:04:53','2021-06-03 23:04:53','e8d779b0-e119-4e96-8f57-356537ad5d48'),(18163,18163,1,'communications-consulting',NULL,1,'2021-06-03 23:04:59','2021-06-03 23:04:59','352be6bd-4eac-42b0-98e7-cfe55baba0ff'),(18164,18164,1,'nspt','work/nspt',1,'2021-06-03 23:05:05','2021-06-03 23:05:05','a72be29e-77f7-4d92-b62e-37d77db0cd5a'),(18165,18165,1,'nspt','work/nspt',1,'2021-06-03 23:05:05','2021-06-03 23:05:05','85a6c036-6c06-47b0-8386-3e7dc2a04e70'),(18166,18166,1,'nspt','work/nspt',1,'2021-06-03 23:05:09','2021-06-03 23:05:09','8efb52a2-0511-41b0-ac12-f0ddf7d46a94'),(18167,18167,1,'campaign-concept',NULL,1,'2021-06-03 23:05:30','2021-06-03 23:05:30','135ba79e-67cb-4300-a029-9a6e4632c183'),(18168,18168,1,'safe-to-see-your-gp','work/safe-to-see-your-gp',1,'2021-06-03 23:06:10','2021-06-03 23:06:10','c994b930-9dbd-4eaa-a942-7f9f9aef0b4f'),(18169,18169,1,'safe-to-see-your-gp','work/safe-to-see-your-gp',1,'2021-06-03 23:06:10','2021-06-03 23:06:10','554a3998-4be2-43f2-8ce0-0bb1d5315da5'),(18170,18170,1,'safe-to-see-your-gp','work/safe-to-see-your-gp',1,'2021-06-03 23:06:13','2021-06-03 23:06:13','a3bb9827-3b47-4eda-bfae-ec4b70904587'),(18171,18171,1,'26-interviews-with-internal-and-external-stakeholders',NULL,1,'2021-06-03 23:06:32','2021-06-03 23:06:32','218cd0d9-070d-49bb-8331-9ff462b43563'),(18172,18172,1,'workshops-with-internal-stakeholders',NULL,1,'2021-06-03 23:06:37','2021-06-03 23:06:37','466b582b-2a6f-47da-9795-872fd2500a97'),(18173,18173,1,'stakeholder-map',NULL,1,'2021-06-03 23:06:41','2021-06-03 23:06:41','ca25ebff-25cb-4433-b2e5-7c575a59db7c'),(18174,18174,1,'community-engagement-strategy',NULL,1,'2021-06-03 23:06:46','2021-06-03 23:06:46','9cd0c2bb-4ebb-4b4e-a714-bd615aff8dad'),(18175,18175,1,'communications-strategy',NULL,1,'2021-06-03 23:06:52','2021-06-03 23:06:52','f719c4fd-b131-4a2a-8f78-fce1158b2303'),(18176,18176,1,'qmhc','work/qmhc',1,'2021-06-03 23:07:00','2021-06-03 23:07:00','ebd99305-ed7d-4120-86bd-d7e9a4fef8e1'),(18177,18177,1,'qmhc','work/qmhc',1,'2021-06-03 23:07:00','2021-06-03 23:07:00','b2ed1464-f84e-4f4e-b045-a1a978a9b184'),(18178,18178,1,'qmhc','work/qmhc',1,'2021-06-03 23:07:04','2021-06-03 23:07:04','5493cae0-eff7-4d6e-853c-c8208e261846'),(18179,18179,1,'training-workshops',NULL,1,'2021-06-03 23:07:31','2021-06-03 23:07:31','37290746-99f6-41ac-9443-291b9f89ff19'),(18180,18180,1,'stakeholder-interviews',NULL,1,'2021-06-03 23:07:47','2021-06-03 23:07:47','7c9bd322-cf40-43f3-ae03-de01fd44f2a4'),(18181,18181,1,'photography-and-video-production-in-rural-areas',NULL,1,'2021-06-03 23:08:10','2021-06-03 23:08:10','b3cedfb2-1ca7-4dac-980c-57246cd6d50d'),(18185,18185,1,'custom-animation',NULL,1,'2021-06-03 23:08:49','2021-06-03 23:08:49','6e73af30-d899-4400-ad92-d8fbfcb75c0c'),(18216,18216,1,NULL,NULL,1,'2021-06-09 23:26:18','2021-06-09 23:26:18','be8657cf-7c1e-447c-b490-83dc2730811d'),(18338,18338,1,'no-3-campaign','work/no-3-campaign',1,'2021-06-09 23:34:56','2021-06-09 23:34:56','61ff4b3f-320d-4dba-9e1c-5f861c77d1fe'),(18339,18339,1,NULL,NULL,1,'2021-06-09 23:34:56','2021-06-09 23:34:56','db805d29-a277-490f-8428-49a5bf85caf5'),(18340,18340,1,NULL,NULL,1,'2021-06-09 23:34:56','2021-06-09 23:34:56','3abaee5c-ba05-4a14-8fc0-492fe5a02852'),(18341,18341,1,NULL,NULL,1,'2021-06-09 23:34:56','2021-06-09 23:34:56','edbfb45e-9f2c-4a7f-b06b-f929c04e73d0'),(18342,18342,1,NULL,NULL,1,'2021-06-09 23:34:56','2021-06-09 23:34:56','532dd580-a7fb-466f-b16b-8f36c1db879c'),(18343,18343,1,NULL,NULL,1,'2021-06-09 23:34:56','2021-06-09 23:34:56','a0725350-8411-43ec-8010-1f669d059019'),(18344,18344,1,NULL,NULL,1,'2021-06-09 23:34:56','2021-06-09 23:34:56','cbdb1feb-c982-4706-9f9d-1c38433ae136'),(18345,18345,1,NULL,NULL,1,'2021-06-09 23:34:56','2021-06-09 23:34:56','e8252077-6147-47cb-8ace-a86a6019f5bc'),(18346,18346,1,NULL,NULL,1,'2021-06-09 23:34:56','2021-06-09 23:34:56','4c40be77-c585-4de2-b943-2795b59105ad'),(18347,18347,1,NULL,NULL,1,'2021-06-09 23:34:56','2021-06-09 23:34:56','e4497e87-ca4b-41a9-9152-add1622bcad2'),(18348,18348,1,'no-3-campaign','work/no-3-campaign',1,'2021-06-09 23:35:01','2021-06-09 23:35:01','086c1a30-285b-47d3-9bc8-1c8b8f22d04b'),(18349,18349,1,NULL,NULL,1,'2021-06-09 23:35:01','2021-06-09 23:35:01','34010bdc-2e8a-4eb8-a6fd-5ca7d0677909'),(18350,18350,1,NULL,NULL,1,'2021-06-09 23:35:01','2021-06-09 23:35:01','27faf3a5-08bc-47cb-a06d-334eae78b719'),(18351,18351,1,NULL,NULL,1,'2021-06-09 23:35:01','2021-06-09 23:35:01','f301116d-5938-46fb-a3a1-6ca2484861fe'),(18352,18352,1,NULL,NULL,1,'2021-06-09 23:35:01','2021-06-09 23:35:01','ca38f6fd-cb3c-4d9e-9e7a-238d9b130ea1'),(18353,18353,1,NULL,NULL,1,'2021-06-09 23:35:01','2021-06-09 23:35:01','167a3d20-cf42-4540-8d2f-595e05da406c'),(18354,18354,1,NULL,NULL,1,'2021-06-09 23:35:01','2021-06-09 23:35:01','1f9ef567-6225-4789-aaad-4a04e6325bf7'),(18355,18355,1,NULL,NULL,1,'2021-06-09 23:35:01','2021-06-09 23:35:01','2b09f2d6-43b3-4edf-921e-3fc93f0e56e9'),(18356,18356,1,NULL,NULL,1,'2021-06-09 23:35:01','2021-06-09 23:35:01','b5eeea62-9264-48b5-88f4-8d5250406f88'),(18357,18357,1,NULL,NULL,1,'2021-06-09 23:35:01','2021-06-09 23:35:01','5ef7ab14-b4a1-41bd-b913-58ef97b5c88b'),(18369,18369,1,'reasons-to-stay','work/reasons-to-stay',1,'2021-06-09 23:36:04','2021-06-09 23:36:04','1a9ab087-3f9e-4883-9c1c-68283d58dc78'),(18370,18370,1,NULL,NULL,1,'2021-06-09 23:36:05','2021-06-09 23:36:05','6bce2fa7-070c-44b1-8272-78b866abaa2f'),(18371,18371,1,NULL,NULL,1,'2021-06-09 23:36:05','2021-06-09 23:36:05','4bc91b1d-45c2-4833-a131-d083c0dc9d6d'),(18538,18538,1,'reasons-to-stay','work/reasons-to-stay',1,'2021-06-09 23:44:53','2021-06-09 23:44:53','e0afa8b2-660a-4546-9e0d-2485bc22e185'),(18539,18539,1,NULL,NULL,1,'2021-06-09 23:44:53','2021-06-09 23:44:53','c6dac71d-166e-4169-89a3-08f67ea79a39'),(18540,18540,1,NULL,NULL,1,'2021-06-09 23:44:53','2021-06-09 23:44:53','505046ab-1177-497a-ae8a-8fe996ad3727'),(18541,18541,1,NULL,NULL,1,'2021-06-09 23:44:53','2021-06-09 23:44:53','0dd8df29-3e0a-4cd5-a616-2ddd97800cd5'),(18542,18542,1,NULL,NULL,1,'2021-06-09 23:44:53','2021-06-09 23:44:53','ca181c55-203f-4e46-ac77-a8a80cad1eda'),(18543,18543,1,NULL,NULL,1,'2021-06-09 23:44:53','2021-06-09 23:44:53','353c7e04-83ae-4288-a018-e06cbd6b5f86'),(18544,18544,1,NULL,NULL,1,'2021-06-09 23:44:53','2021-06-09 23:44:53','294be627-4600-4c88-8a4b-e57f000cb414'),(18545,18545,1,NULL,NULL,1,'2021-06-09 23:44:53','2021-06-09 23:44:53','e1d40807-1f98-4281-9ff9-bf245502954b'),(18546,18546,1,NULL,NULL,1,'2021-06-09 23:44:53','2021-06-09 23:44:53','1f752030-9257-4381-bb89-29b44a120281'),(18547,18547,1,NULL,NULL,1,'2021-06-09 23:44:53','2021-06-09 23:44:53','fc4b1eeb-cb86-4de3-9b63-fdf76f7ad642'),(18548,18548,1,NULL,NULL,1,'2021-06-09 23:44:53','2021-06-09 23:44:53','ab267595-c1f0-4dda-8731-6c59ee5fab5c'),(18549,18549,1,NULL,NULL,1,'2021-06-09 23:44:53','2021-06-09 23:44:53','c0c4dd9a-cee7-4aeb-98c8-11afc1b25b7e'),(18550,18550,1,'reasons-to-stay','work/reasons-to-stay',1,'2021-06-09 23:44:59','2021-06-09 23:44:59','bbb8d491-8ae2-465f-afa4-5f047c161501'),(18551,18551,1,NULL,NULL,1,'2021-06-09 23:44:59','2021-06-09 23:44:59','f49447c8-596f-4891-b015-94c4c1ba9475'),(18552,18552,1,NULL,NULL,1,'2021-06-09 23:44:59','2021-06-09 23:44:59','d951dcd7-a709-421a-aba3-037b918cabb5'),(18553,18553,1,NULL,NULL,1,'2021-06-09 23:44:59','2021-06-09 23:44:59','f95d3861-ad43-4e9d-b179-b6bd3b5a0951'),(18554,18554,1,NULL,NULL,1,'2021-06-09 23:44:59','2021-06-09 23:44:59','373c34d5-3c0c-4f84-b4e2-794105f949da'),(18555,18555,1,NULL,NULL,1,'2021-06-09 23:44:59','2021-06-09 23:44:59','91bee404-07f6-43f8-948d-fe776c5bc4b2'),(18556,18556,1,NULL,NULL,1,'2021-06-09 23:44:59','2021-06-09 23:44:59','07feae1e-0937-4168-bef0-461acec4a05a'),(18557,18557,1,NULL,NULL,1,'2021-06-09 23:44:59','2021-06-09 23:44:59','0777faf3-6fd3-4ae0-a601-5cece12effdd'),(18558,18558,1,NULL,NULL,1,'2021-06-09 23:45:00','2021-06-09 23:45:00','faffd111-7f50-4128-aa17-6976de2f7738'),(18559,18559,1,NULL,NULL,1,'2021-06-09 23:45:00','2021-06-09 23:45:00','08052e9a-617f-417c-b993-7ae238294eb9'),(18560,18560,1,NULL,NULL,1,'2021-06-09 23:45:00','2021-06-09 23:45:00','52dc419f-40f1-48e9-bea7-46a03ef5432a'),(18561,18561,1,NULL,NULL,1,'2021-06-09 23:45:00','2021-06-09 23:45:00','40acaafa-8c12-48c4-b412-bb31f05d1f5e'),(18562,18562,1,'no-3-campaign','work/no-3-campaign',1,'2021-06-09 23:45:20','2021-06-09 23:45:20','d8923ffb-a43d-4690-8aaa-07fd106f2924'),(18563,18563,1,NULL,NULL,1,'2021-06-09 23:45:21','2021-06-09 23:45:21','07f8968b-2828-4769-88bc-bd568b6b0f2f'),(18564,18564,1,NULL,NULL,1,'2021-06-09 23:45:21','2021-06-09 23:45:21','28bc4bee-9085-41ed-9df5-43b141d64e84'),(18565,18565,1,NULL,NULL,1,'2021-06-09 23:45:21','2021-06-09 23:45:21','ef841077-c903-4156-897d-ddfd4bd970fd'),(18566,18566,1,NULL,NULL,1,'2021-06-09 23:45:21','2021-06-09 23:45:21','62d753c9-205f-431f-83bf-94888eb3ab76'),(18567,18567,1,NULL,NULL,1,'2021-06-09 23:45:21','2021-06-09 23:45:21','a20bec93-6227-4e1d-8161-413b4e406282'),(18568,18568,1,NULL,NULL,1,'2021-06-09 23:45:21','2021-06-09 23:45:21','417bfc33-d8a7-4abc-ab8c-765aa5558084'),(18569,18569,1,NULL,NULL,1,'2021-06-09 23:45:21','2021-06-09 23:45:21','70c76a91-440e-48ae-9741-64a88c74815a'),(18570,18570,1,NULL,NULL,1,'2021-06-09 23:45:21','2021-06-09 23:45:21','2b6e1d36-04a6-430c-91d9-5d96ea72ff5f'),(18571,18571,1,NULL,NULL,1,'2021-06-09 23:45:21','2021-06-09 23:45:21','559e74cc-8ff9-4e5d-aef4-dd5e70da3431'),(18572,18572,1,'reasons-to-stay','work/reasons-to-stay',1,'2021-06-09 23:45:55','2021-06-09 23:45:55','3248da73-8caf-409f-878b-46fb04251753'),(18573,18573,1,NULL,NULL,1,'2021-06-09 23:45:55','2021-06-09 23:45:55','d2ea792f-c562-4934-ba30-b497524921e5'),(18574,18574,1,NULL,NULL,1,'2021-06-09 23:45:55','2021-06-09 23:45:55','d84b044a-8e1a-4127-b72f-a8d6ba352d8b'),(18575,18575,1,NULL,NULL,1,'2021-06-09 23:45:55','2021-06-09 23:45:55','7f058db7-7f8d-41b9-913b-cc91f55ab5a5'),(18576,18576,1,NULL,NULL,1,'2021-06-09 23:45:55','2021-06-09 23:45:55','b29e7fed-7e6f-4b07-a1e3-048f89ca4971'),(18577,18577,1,NULL,NULL,1,'2021-06-09 23:45:55','2021-06-09 23:45:55','355160d1-0c19-440f-9663-5564cf33bc2c'),(18578,18578,1,NULL,NULL,1,'2021-06-09 23:45:55','2021-06-09 23:45:55','2554f222-5bc9-46a4-82e4-3ed7842b50fe'),(18579,18579,1,NULL,NULL,1,'2021-06-09 23:45:55','2021-06-09 23:45:55','bb7e160a-1445-4ea4-bd6c-81c690cd1de7'),(18580,18580,1,NULL,NULL,1,'2021-06-09 23:45:55','2021-06-09 23:45:55','e636a931-e3b7-4bd6-b957-1db78a0c657a'),(18581,18581,1,NULL,NULL,1,'2021-06-09 23:45:55','2021-06-09 23:45:55','32cf397d-0f83-4772-b33c-8341152bb2ed'),(18582,18582,1,NULL,NULL,1,'2021-06-09 23:45:55','2021-06-09 23:45:55','61bb70bd-184e-4915-accd-fd917a32c0a7'),(18583,18583,1,NULL,NULL,1,'2021-06-09 23:45:55','2021-06-09 23:45:55','348567c7-27c3-464d-aa23-01ce7122fd7f'),(18584,18584,1,NULL,NULL,1,'2021-06-09 23:47:12','2021-06-09 23:47:12','e3717161-68ab-4fea-b294-1588595147b5'),(18597,18597,1,NULL,NULL,1,'2021-06-09 23:48:48','2021-06-09 23:48:48','c1c7ad96-b0ae-4637-aa18-6120c6aee6cf'),(18598,18598,1,NULL,NULL,1,'2021-06-09 23:48:55','2021-06-09 23:48:55','f4058894-ade3-4ae8-b619-d021b182922e'),(18599,18599,1,NULL,NULL,1,'2021-06-09 23:49:02','2021-06-09 23:49:02','58997cd8-62a2-4a03-bc3e-0b5d64ad29ec'),(18626,18626,1,'medical-mums','work/medical-mums',1,'2021-06-09 23:50:04','2021-06-09 23:50:04','c83bdb2c-1eef-417a-bca6-3dc357c774ec'),(18627,18627,1,NULL,NULL,1,'2021-06-09 23:50:04','2021-06-09 23:50:04','31842422-a807-4ad5-8bf5-a37c3b02e932'),(18628,18628,1,NULL,NULL,1,'2021-06-09 23:50:04','2021-06-09 23:50:04','caff0f07-3607-4137-8945-397d4d73b7e1'),(18629,18629,1,NULL,NULL,1,'2021-06-09 23:50:04','2021-06-09 23:50:04','78cdfa4e-3159-4e94-afd1-b3ddbd18ca01'),(18630,18630,1,NULL,NULL,1,'2021-06-09 23:50:04','2021-06-09 23:50:04','675c2f1b-218c-4bee-b08f-e2faf8defb90'),(18631,18631,1,NULL,NULL,1,'2021-06-09 23:50:04','2021-06-09 23:50:04','b14ab051-4d61-4165-a303-1fef4222d1f1'),(18632,18632,1,'medical-mums','work/medical-mums',1,'2021-06-09 23:50:10','2021-06-09 23:50:10','95ee7f69-18fd-4edb-a34c-a8b5dc008e86'),(18633,18633,1,NULL,NULL,1,'2021-06-09 23:50:10','2021-06-09 23:50:10','e4f575ca-5318-4e2a-b12e-11a1da2a7b51'),(18634,18634,1,NULL,NULL,1,'2021-06-09 23:50:10','2021-06-09 23:50:10','5eabad4a-a641-4663-9f0c-7d488d0bd2d3'),(18635,18635,1,NULL,NULL,1,'2021-06-09 23:50:10','2021-06-09 23:50:10','76a9804c-bfc3-4d93-a7fd-10ee7a544696'),(18636,18636,1,NULL,NULL,1,'2021-06-09 23:50:10','2021-06-09 23:50:10','c33de2f3-5cb5-437d-844d-8d88a98f89e0'),(18637,18637,1,NULL,NULL,1,'2021-06-09 23:50:10','2021-06-09 23:50:10','afe78507-f1a0-4d3d-8b9f-3c51b08f1bd6'),(18638,18638,1,NULL,NULL,1,'2021-06-10 01:39:31','2021-06-10 01:39:31','5db609a2-3310-41f3-aa37-13b1c9b3bfb2'),(18639,18639,1,NULL,NULL,1,'2021-06-10 01:39:34','2021-06-10 01:39:34','f437b9ef-3ad1-4f53-a918-307192e20133'),(18640,18640,1,NULL,NULL,1,'2021-06-10 01:39:35','2021-06-10 01:39:35','5af8b72c-ab76-469e-84d6-2ab06a56cd76'),(18641,18641,1,NULL,NULL,1,'2021-06-10 01:39:37','2021-06-10 01:39:37','8cd355a5-785b-45c4-9484-f09f583cb216'),(18642,18642,1,NULL,NULL,1,'2021-06-10 01:39:39','2021-06-10 01:39:39','d0b7d63a-5528-4cd0-a80d-e1fafccf5dbf'),(18643,18643,1,NULL,NULL,1,'2021-06-10 01:39:40','2021-06-10 01:39:40','ba956839-35cf-4d2c-a38a-7e2d23146c89'),(18644,18644,1,NULL,NULL,1,'2021-06-10 01:39:41','2021-06-10 01:39:41','744e077c-ad19-4eec-bb57-2f1ce67ed395'),(18645,18645,1,NULL,NULL,1,'2021-06-10 01:39:43','2021-06-10 01:39:43','29d89506-c09e-4094-82b2-10c3e711887e'),(18646,18646,1,NULL,NULL,1,'2021-06-10 01:39:44','2021-06-10 01:39:44','c608e057-8e63-4e46-bdce-4a61afc656d5'),(18647,18647,1,NULL,NULL,1,'2021-06-10 01:39:46','2021-06-10 01:39:46','5afeb341-aadb-4883-ad95-4227b6b2df12'),(18648,18648,1,NULL,NULL,1,'2021-06-10 01:39:47','2021-06-10 01:39:47','49c47c8f-3fbf-44d2-ac09-67187f7a6548'),(18649,18649,1,NULL,NULL,1,'2021-06-10 01:39:49','2021-06-10 01:39:49','ccf3348b-c050-4473-a2e5-9ce2057ad959'),(18650,18650,1,NULL,NULL,1,'2021-06-10 01:39:51','2021-06-10 01:39:51','2027bb8d-84bc-4091-90e4-0c8b304a07d0'),(18651,18651,1,NULL,NULL,1,'2021-06-10 01:39:53','2021-06-10 01:39:53','2b7417c0-d181-46aa-9937-a9894463f376'),(18652,18652,1,NULL,NULL,1,'2021-06-10 01:39:54','2021-06-10 01:39:54','3f3fbb46-aaef-4a14-89a3-d78d73d8c097'),(18653,18653,1,NULL,NULL,1,'2021-06-10 01:41:13','2021-06-10 01:41:13','acb0ac74-0513-46de-95ca-aaa0347e0dff'),(19014,19014,1,'tritium','work/tritium',1,'2021-06-10 01:54:28','2021-06-10 01:54:28','c0d416e3-8063-4076-ad46-8ebe03313383'),(19015,19015,1,NULL,NULL,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','47366f9c-0fd0-40b7-9b33-12bd1035d9dc'),(19016,19016,1,NULL,NULL,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','5bb399a4-0f18-4cb9-a4aa-9e9a79cf4fa2'),(19017,19017,1,NULL,NULL,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','85c47b5b-7d33-44ff-b151-4a69f1607c8f'),(19018,19018,1,NULL,NULL,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','2c07a67d-8267-4394-87bd-440396ab5a99'),(19019,19019,1,NULL,NULL,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','4d778499-6dc1-453d-ae05-374b4eb1c209'),(19020,19020,1,NULL,NULL,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','590caaac-010d-4671-b367-dceb4452d915'),(19021,19021,1,NULL,NULL,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','4d387cd0-0b0c-4083-b937-e9766aadee92'),(19022,19022,1,NULL,NULL,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','01dc05c8-91a2-4415-a4e7-ac4bf5df702c'),(19023,19023,1,NULL,NULL,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','72f464bd-3f6f-4893-912d-1dcc9673de78'),(19024,19024,1,NULL,NULL,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','31871768-97c3-4848-8691-38e35accd9fc'),(19025,19025,1,NULL,NULL,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','5188fb9a-fc09-48dc-807d-b8bb0026a538'),(19026,19026,1,NULL,NULL,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','eb0ac2c9-373b-4f20-b6c9-d6d11e914b20'),(19027,19027,1,NULL,NULL,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','4e6d18c3-07ae-4658-9289-77267ec7cdcb'),(19028,19028,1,NULL,NULL,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','9af2b73c-1a95-47da-b76d-d06e69ab3029'),(19029,19029,1,NULL,NULL,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','bd4c15e2-0fc7-4335-9ce9-54f1f5d89ce4'),(19030,19030,1,NULL,NULL,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','95998c82-5715-437f-8f43-00f3055d103d'),(19031,19031,1,NULL,NULL,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','95087f28-1a33-4015-bfe9-c14826be44cd'),(19032,19032,1,NULL,NULL,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','835bd5e8-9403-4aa5-b751-2fb64fe9dfd9'),(19033,19033,1,'tritium','work/tritium',1,'2021-06-10 01:54:38','2021-06-10 01:54:38','025bc8de-126d-4e0f-a4e0-45663726468a'),(19034,19034,1,NULL,NULL,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','3f2ddecf-1d2b-4ffc-a2d8-cc504d046b8b'),(19035,19035,1,NULL,NULL,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','31d54756-ef67-41d1-ace7-0f1310d389c1'),(19036,19036,1,NULL,NULL,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','e3ace586-002b-406f-a041-cca5c753d61c'),(19037,19037,1,NULL,NULL,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','d71580a9-f43f-45f5-b4f3-34e1bfa90d65'),(19038,19038,1,NULL,NULL,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','32c84f45-4c54-4854-b3bc-f73750f348f7'),(19039,19039,1,NULL,NULL,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','ab8a17f1-e8d0-43b1-ab66-adc258b53093'),(19040,19040,1,NULL,NULL,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','b97daa7a-8f41-4a9b-b1f1-86511b83c43a'),(19041,19041,1,NULL,NULL,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','f65f2651-f914-40b7-b850-7c8dc977b162'),(19042,19042,1,NULL,NULL,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','b0babe91-9772-4d91-b0d0-544944e52cc9'),(19043,19043,1,NULL,NULL,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','92add574-f616-409c-9bed-d46008c87f15'),(19044,19044,1,NULL,NULL,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','82df5815-4cc2-4544-8f93-99cb0ed4cd54'),(19045,19045,1,NULL,NULL,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','38372421-a97d-4933-8e58-8e7d72bf3e6b'),(19046,19046,1,NULL,NULL,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','bfcccac0-d25d-4e79-a4f1-72b9c8332b38'),(19047,19047,1,NULL,NULL,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','9556be1f-dbad-4f2d-bd7a-7a53cce7f74c'),(19048,19048,1,NULL,NULL,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','d734d83a-dc63-4c40-be51-a74f34426272'),(19049,19049,1,NULL,NULL,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','8f70dfc0-a240-4157-aaf2-47a2715ae524'),(19050,19050,1,NULL,NULL,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','45e6f025-ce80-4ad6-89c1-44c146adb5ec'),(19051,19051,1,NULL,NULL,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','b49d8658-b199-4222-9663-d30fdb526fce'),(19052,19052,1,NULL,NULL,1,'2021-06-10 04:17:10','2021-06-10 04:17:10','f8cc2f98-adee-4572-be2c-36fa51a33005'),(19053,19053,1,NULL,NULL,1,'2021-06-10 04:17:12','2021-06-10 04:17:12','adbbfae8-02bc-4169-bc8e-082d725b5181'),(19054,19054,1,NULL,NULL,1,'2021-06-10 04:17:15','2021-06-10 04:17:15','b6d449e7-4841-4fca-b918-78f4992d736d'),(19055,19055,1,NULL,NULL,1,'2021-06-10 04:17:17','2021-06-10 04:17:17','51d26672-0633-4ac6-841a-48b8551e636d'),(19056,19056,1,NULL,NULL,1,'2021-06-10 04:17:21','2021-06-10 04:17:21','81637ac8-ba91-4fb5-b232-d66575c1c336'),(19057,19057,1,NULL,NULL,1,'2021-06-10 04:17:24','2021-06-10 04:17:24','06457193-068f-4211-8b30-d7a3a3c08edd'),(19058,19058,1,NULL,NULL,1,'2021-06-10 04:17:26','2021-06-10 04:17:26','ec61e0c9-94b0-44bf-a5a9-2f37f7e5af46'),(19059,19059,1,NULL,NULL,1,'2021-06-10 04:17:30','2021-06-10 04:17:30','a8c026d5-8849-4b8a-a546-997123d3294c'),(19060,19060,1,NULL,NULL,1,'2021-06-10 04:20:00','2021-06-10 04:20:00','cd3577d2-c4dd-445d-9881-e4f58aac59c3'),(19061,19061,1,NULL,NULL,1,'2021-06-10 04:20:01','2021-06-10 04:20:01','3ae177e3-933d-4445-9a84-0f484f66b427'),(19062,19062,1,NULL,NULL,1,'2021-06-10 04:20:03','2021-06-10 04:20:03','899b905f-f996-41e8-bc5d-15f8f141dcf3'),(19063,19063,1,NULL,NULL,1,'2021-06-10 04:20:21','2021-06-10 04:20:21','7b98b14d-83a1-4853-a7ac-a11226bd5192'),(19064,19064,1,NULL,NULL,1,'2021-06-10 04:20:48','2021-06-10 04:20:48','920f0d94-5903-41fc-a6da-0839bb4e9af5'),(19065,19065,1,NULL,NULL,1,'2021-06-10 04:21:14','2021-06-10 04:21:14','80f5d810-278b-4178-b5ea-68d7d32d84c8'),(19066,19066,1,NULL,NULL,1,'2021-06-10 04:21:42','2021-06-10 04:21:42','2c9541ce-9370-44f2-ae15-507f86fbc137'),(19067,19067,1,NULL,NULL,1,'2021-06-10 04:22:08','2021-06-10 04:22:08','2757bc8a-68d8-4b80-88b0-559d3b06047f'),(19068,19068,1,NULL,NULL,1,'2021-06-10 04:22:35','2021-06-10 04:22:35','99df8f31-0b66-462f-90ca-0505d25d76fa'),(19081,19081,1,NULL,NULL,1,'2021-06-10 04:24:54','2021-06-10 04:24:54','d0436d20-80bf-4f4e-9bc7-71027b170121'),(19093,19093,1,'reasons-to-stay','work/reasons-to-stay',1,'2021-06-10 04:26:08','2021-06-10 04:26:08','bdce193e-0a16-4acf-a1f6-dc466e6193bf'),(19094,19094,1,NULL,NULL,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','c3d6404d-e4d7-4520-bc99-6c183d53f0f7'),(19095,19095,1,NULL,NULL,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','99705ee9-0975-4475-a221-2624004a8557'),(19096,19096,1,NULL,NULL,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','4a625e44-a74b-4572-b0ca-970d0ab71859'),(19097,19097,1,NULL,NULL,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','86697efc-d470-4a32-80ec-2baada79ca8f'),(19098,19098,1,NULL,NULL,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','490a998f-abe1-46dc-80e1-b11c89093ef0'),(19099,19099,1,NULL,NULL,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','6b23e62f-2b80-4ee3-ae6c-cbfe01fccc43'),(19100,19100,1,NULL,NULL,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','9f88dad5-3001-41ec-98e6-f17c2fa6c070'),(19101,19101,1,NULL,NULL,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','f9333574-b2d0-4b0e-aa64-8eead8c52130'),(19102,19102,1,NULL,NULL,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','93a53721-35e4-4892-96b9-6753edd91d7c'),(19103,19103,1,NULL,NULL,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','b7f5acc3-3979-4aaa-86cd-3e07a62d5674'),(19104,19104,1,NULL,NULL,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','7d2bab5b-7e6a-472c-9aca-b2d6d7ff1dab'),(19105,19105,1,'reasons-to-stay','work/reasons-to-stay',1,'2021-06-10 04:26:13','2021-06-10 04:26:13','3d88c4cc-a562-4eab-a0c9-00ad602aa50e'),(19106,19106,1,NULL,NULL,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','08b5396e-fbff-4f17-a328-6624eaa0e7d0'),(19107,19107,1,NULL,NULL,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','b9187527-dadb-46db-8e39-35ba1e3704a8'),(19108,19108,1,NULL,NULL,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','f1729bcf-31d9-487c-9b0e-32802bb23fa2'),(19109,19109,1,NULL,NULL,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','4c7b777f-0aa5-4340-9ccf-a021b76c6614'),(19110,19110,1,NULL,NULL,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','755f9dc0-c19a-45e3-ab74-9782075a3670'),(19111,19111,1,NULL,NULL,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','e503147e-cf9e-43d6-9587-4ae86c6509cf'),(19112,19112,1,NULL,NULL,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','c1dcb0a7-41d3-43b3-b19e-d678c0f755b0'),(19113,19113,1,NULL,NULL,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','3d7d6c16-fa10-4513-aef2-5859f2aceb1d'),(19114,19114,1,NULL,NULL,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','f2c4cf56-5d25-4fd3-aad0-f0f48ff375bc'),(19115,19115,1,NULL,NULL,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','03f1ddba-b777-40d5-917b-9d7009b1809a'),(19116,19116,1,NULL,NULL,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','29dd79ed-965b-449c-9339-66d69ec69e74'),(19136,19136,1,'no-3-campaign','work/no-3-campaign',1,'2021-06-10 04:27:36','2021-06-10 04:27:36','c1074de0-78a5-4d83-a8a6-7ac82275e101'),(19137,19137,1,NULL,NULL,1,'2021-06-10 04:27:36','2021-06-10 04:27:36','aa750890-6dc8-412d-a1b0-8813ca6e14b7'),(19138,19138,1,NULL,NULL,1,'2021-06-10 04:27:36','2021-06-10 04:27:36','81e32c1e-1711-473c-8e0c-8a8e000adcf4'),(19139,19139,1,NULL,NULL,1,'2021-06-10 04:27:36','2021-06-10 04:27:36','abe475ce-9862-48ee-b437-7d88142e973d'),(19140,19140,1,NULL,NULL,1,'2021-06-10 04:27:37','2021-06-10 04:27:37','5a32ec73-edb0-4544-99ad-97076291a623'),(19141,19141,1,NULL,NULL,1,'2021-06-10 04:27:37','2021-06-10 04:27:37','7751280b-6521-410c-961d-f796ff901360'),(19142,19142,1,NULL,NULL,1,'2021-06-10 04:27:37','2021-06-10 04:27:37','178caf62-ca9d-4a39-a892-bf13c954cff5'),(19143,19143,1,NULL,NULL,1,'2021-06-10 04:27:37','2021-06-10 04:27:37','b72dbe71-a54a-4e97-96d5-04dce0846a6a'),(19144,19144,1,NULL,NULL,1,'2021-06-10 04:27:37','2021-06-10 04:27:37','32bd00c6-033b-4526-a336-4245325665b0'),(19145,19145,1,NULL,NULL,1,'2021-06-10 04:27:37','2021-06-10 04:27:37','f4cc32f0-c633-4a35-9306-6edd78e569f8'),(19146,19146,1,'no-3-campaign','work/no-3-campaign',1,'2021-06-10 04:27:41','2021-06-10 04:27:41','5f2e38b2-2c5a-4566-99d3-57ab48edfc79'),(19147,19147,1,NULL,NULL,1,'2021-06-10 04:27:41','2021-06-10 04:27:41','5f52acdb-4e37-43d4-a922-c3e8d405cdcd'),(19148,19148,1,NULL,NULL,1,'2021-06-10 04:27:41','2021-06-10 04:27:41','7ebcab66-2cd4-437f-97bf-1b675c9741c9'),(19149,19149,1,NULL,NULL,1,'2021-06-10 04:27:41','2021-06-10 04:27:41','6233dcb5-327e-4b65-b45a-87c4a50176a6'),(19150,19150,1,NULL,NULL,1,'2021-06-10 04:27:41','2021-06-10 04:27:41','211590fd-7419-4534-b4bc-2c0c3f6afc4f'),(19151,19151,1,NULL,NULL,1,'2021-06-10 04:27:41','2021-06-10 04:27:41','769525e0-7a93-4360-9c4e-8644a50ac085'),(19152,19152,1,NULL,NULL,1,'2021-06-10 04:27:41','2021-06-10 04:27:41','48f6e33a-c39f-4429-989f-0bc229ed082f'),(19153,19153,1,NULL,NULL,1,'2021-06-10 04:27:41','2021-06-10 04:27:41','1ab431c9-db2d-4495-afeb-3561149703ab'),(19154,19154,1,NULL,NULL,1,'2021-06-10 04:27:41','2021-06-10 04:27:41','1bff1d6e-10a3-4c93-aa58-68c284c867f7'),(19155,19155,1,NULL,NULL,1,'2021-06-10 04:27:41','2021-06-10 04:27:41','70c728d7-1412-48d9-b77f-709b7fc4b80b'),(19167,19167,1,'new-word-order','brandaudit/company/new-word-order',1,'2021-06-11 00:30:18','2021-06-11 07:05:22','a1a5f09d-3419-4be4-8a38-92750bdc53fe'),(19175,19175,1,'surepipe','brandaudit/company/surepipe',1,'2021-06-11 01:36:15','2021-06-11 07:05:22','d8ce0174-ccc4-49e6-831f-e34d728e9495'),(19176,19176,1,NULL,NULL,1,'2021-06-11 01:36:22','2021-06-11 01:36:22','42d742dc-2e57-4fd9-a753-20959e7ad349'),(19177,19177,1,'stewart-anderson-brand-audit-submission-11-jun-2021','brandaudit/stewart-anderson-brand-audit-submission-11-jun-2021',1,'2021-06-11 01:39:49','2021-06-11 01:39:49','83436831-835e-4eeb-84f1-6fce387dbd94'),(19178,19178,1,'stewart-anderson-brand-audit-submission-11-jun-2021','brandaudit/stewart-anderson-brand-audit-submission-11-jun-2021',1,'2021-06-11 01:39:49','2021-06-11 01:39:49','f71a6017-7ea9-4567-941c-dfcc36697e0c'),(19179,19179,1,NULL,NULL,1,'2021-06-11 01:42:05','2021-06-11 01:42:05','f2728ed1-3b63-4d90-a30c-13fe6625c039'),(19181,19181,1,'franc-pierro-brand-audit-submission-11-jun-2021','brandaudit/franc-pierro-brand-audit-submission-11-jun-2021',1,'2021-06-11 01:45:58','2021-06-11 01:46:34','22d79c5e-8cb8-40f3-b1ec-76bbbb91c867'),(19182,19182,1,'franc-pierro-brand-audit-submission-11-june-2021','brandaudit/franc-pierro-brand-audit-submission-11-june-2021',1,'2021-06-11 01:45:58','2021-06-11 01:45:58','1741e594-9d15-4bcd-b956-149f9c8032d4'),(19183,19183,1,'franc-pierro-brand-audit-submission-11-june-2021','brandaudit/franc-pierro-brand-audit-submission-11-june-2021',1,'2021-06-11 01:46:01','2021-06-11 01:46:01','11d82cb3-6290-4117-8ac0-3a14fd91bdfb'),(19184,19184,1,'franc-pierro-brand-audit-submission-11-jun-2021','brandaudit/franc-pierro-brand-audit-submission-11-jun-2021',1,'2021-06-11 01:46:34','2021-06-11 01:46:34','2a14b061-37e7-496f-89a4-c4481b47c937'),(19185,19185,1,NULL,NULL,1,'2021-06-11 01:47:49','2021-06-11 01:47:49','3ff04c94-51d9-4e3d-aa18-f06c734b995e'),(19188,19188,1,'rachel-shannon-brand-audit-submission-11-jun-2021','brandaudit/rachel-shannon-brand-audit-submission-11-jun-2021',1,'2021-06-11 01:50:23','2021-06-11 01:50:23','42a57b54-d6ce-4d1e-8ccc-5c9d9b1d2017'),(19189,19189,1,'rachel-shannon-brand-audit-submission-11-jun-2021','brandaudit/rachel-shannon-brand-audit-submission-11-jun-2021',1,'2021-06-11 01:50:23','2021-06-11 01:50:23','230d4047-0556-4f01-bdfa-620acf690adb'),(19190,19190,1,'rachel-shannon-brand-audit-submission-11-jun-2021','brandaudit/rachel-shannon-brand-audit-submission-11-jun-2021',1,'2021-06-11 01:50:26','2021-06-11 01:50:26','7c16bb81-1e13-43c9-9a86-8192d7b6c1ad'),(19191,19191,1,NULL,NULL,1,'2021-06-11 04:54:21','2021-06-11 04:54:21','58a7810b-39c9-4a9b-bd5f-887b02214651'),(19192,19192,1,'james-mcilwraith-brand-audit-submission-11-jun-2021','brandaudit/james-mcilwraith-brand-audit-submission-11-jun-2021',1,'2021-06-11 04:55:44','2021-06-11 04:55:44','6791726b-1e9e-459d-907d-634c460fdeac'),(19193,19193,1,'james-mcilwraith-brand-audit-submission-11-jun-2021','brandaudit/james-mcilwraith-brand-audit-submission-11-jun-2021',1,'2021-06-11 04:55:44','2021-06-11 04:55:44','3d079682-8c45-4604-afbd-80c5a26cc1b8'),(19194,19194,1,'james-mcilwraith-brand-audit-submission-11-jun-2021','brandaudit/james-mcilwraith-brand-audit-submission-11-jun-2021',1,'2021-06-11 04:57:22','2021-06-11 04:57:22','411f20c3-049a-4a9a-867a-8c452e0a3e48'),(19195,19195,1,'james-mcilwraith-brand-audit-submission-11-jun-2021','brandaudit/james-mcilwraith-brand-audit-submission-11-jun-2021',1,'2021-06-11 04:57:32','2021-06-11 04:57:32','2db65037-687f-47ce-b0ed-32d1b8aae675'),(19196,19196,1,'some-company','brandaudit/company/some-company',1,'2021-06-13 23:20:52','2021-06-13 23:20:53','062a36f9-7aaf-4627-b1ff-2a33982bd45c'),(19197,19197,1,NULL,NULL,1,'2021-06-13 23:21:06','2021-06-13 23:21:06','05053c5b-bc7c-4d27-9c7a-ce0ca2f29a18'),(19200,19200,1,'some-user-brand-audit-submission-14-jun-2021','brandaudit/some-user-brand-audit-submission-14-jun-2021',1,'2021-06-13 23:27:28','2021-06-13 23:27:28','24fe648b-4080-4f7e-86a4-b7e9fbe42a1f'),(19201,19201,1,'some-user-brand-audit-submission-14-jun-2021','brandaudit/some-user-brand-audit-submission-14-jun-2021',1,'2021-06-13 23:27:28','2021-06-13 23:27:28','abba3c55-ac06-4496-ad0a-b8fcd165603e'),(19202,19202,1,'some-user-brand-audit-submission-14-jun-2021','brandaudit/some-user-brand-audit-submission-14-jun-2021',1,'2021-06-13 23:27:51','2021-06-13 23:27:51','a34ee2ce-90fb-4bab-a441-3d9a7c109145'),(19203,19203,1,'some-user-brand-audit-submission-14-jun-2021','brandaudit/some-user-brand-audit-submission-14-jun-2021',1,'2021-06-14 00:13:29','2021-06-14 00:13:29','70f11652-c9df-4cef-a60e-98377ad511a6'),(19204,19204,1,'some-user-brand-audit-submission-14-jun-2021','brandaudit/some-user-brand-audit-submission-14-jun-2021',1,'2021-06-14 00:14:00','2021-06-14 00:14:00','e3953b8f-fd55-42e6-b668-2bcb79984ab5'),(19205,19205,1,'some-user-brand-audit-submission-14-jun-2021','brandaudit/some-user-brand-audit-submission-14-jun-2021',1,'2021-06-14 00:14:10','2021-06-14 00:14:10','b68ca8d0-81eb-4eba-8876-cf7740da33a5'),(19206,19206,1,'some-user-brand-audit-submission-14-jun-2021','brandaudit/some-user-brand-audit-submission-14-jun-2021',1,'2021-06-14 00:14:19','2021-06-14 00:14:19','6e9f3caa-999d-4b78-9bc2-a893141e42b6'),(19207,19207,1,'some-user-brand-audit-submission-14-jun-2021','brandaudit/some-user-brand-audit-submission-14-jun-2021',1,'2021-06-14 00:14:24','2021-06-14 00:14:24','60477a5c-b5dd-4bb2-8b5e-702ffb13af35'),(19208,19208,1,'some-user-brand-audit-submission-14-jun-2021','brandaudit/some-user-brand-audit-submission-14-jun-2021',1,'2021-06-14 00:14:29','2021-06-14 00:14:29','f6432d60-7d01-4954-90d3-94d608552a76'),(19209,19209,1,'some-user-brand-audit-submission-14-jun-2021','brandaudit/some-user-brand-audit-submission-14-jun-2021',1,'2021-06-14 00:14:33','2021-06-14 00:14:33','c1d6a2ba-0c8c-4b5d-a96a-677276b62733'),(19210,19210,1,'some-user-brand-audit-submission-14-jun-2021','brandaudit/some-user-brand-audit-submission-14-jun-2021',1,'2021-06-14 00:14:36','2021-06-14 00:14:36','40333d14-8710-4fab-a48d-de9860052dc5'),(19211,19211,1,'some-user-brand-audit-submission-14-jun-2021','brandaudit/some-user-brand-audit-submission-14-jun-2021',1,'2021-06-14 00:14:40','2021-06-14 00:14:40','5757b16f-7645-4ff8-a9bb-4ee6f28d82af'),(19212,19212,1,'some-user-brand-audit-submission-14-jun-2021','brandaudit/some-user-brand-audit-submission-14-jun-2021',1,'2021-06-14 00:14:48','2021-06-14 00:14:48','a7a04bf8-99ed-4049-893b-fb65ac14a917'),(19213,19213,1,'some-user-brand-audit-submission-14-jun-2021','brandaudit/some-user-brand-audit-submission-14-jun-2021',1,'2021-06-14 00:15:27','2021-06-14 00:15:27','362fd245-94fc-4747-91e7-3b86dc05b279'),(19214,19214,1,'some-user-brand-audit-submission-14-jun-2021','brandaudit/some-user-brand-audit-submission-14-jun-2021',1,'2021-06-14 00:15:49','2021-06-14 00:15:49','4561cebc-3afd-4a07-afb4-6935a9705810'),(19215,19215,1,'some-user-brand-audit-submission-14-jun-2021','brandaudit/some-user-brand-audit-submission-14-jun-2021',1,'2021-06-14 00:16:01','2021-06-14 00:16:01','6b68ffd0-327e-42a3-9a9e-d4ca6bbf2ac7'),(19216,19216,1,'some-user-brand-audit-submission-14-jun-2021','brandaudit/some-user-brand-audit-submission-14-jun-2021',1,'2021-06-14 00:16:22','2021-06-14 00:16:22','4ebbb31b-df64-4000-ae35-034cea99e2f4'),(19217,19217,1,'some-user-brand-audit-submission-14-jun-2021','brandaudit/some-user-brand-audit-submission-14-jun-2021',1,'2021-06-14 00:16:35','2021-06-14 00:16:35','402dd01a-26d6-434a-99b2-88440d39e772'),(19218,19218,1,'some-user-brand-audit-submission-14-jun-2021','brandaudit/some-user-brand-audit-submission-14-jun-2021',1,'2021-06-14 00:16:57','2021-06-14 00:16:57','eb4402f0-e6d7-4e17-a4bc-c54cd8d193d6'),(19219,19219,1,'some-user-brand-audit-submission-14-jun-2021','brandaudit/some-user-brand-audit-submission-14-jun-2021',1,'2021-06-14 00:17:09','2021-06-14 00:17:09','22dee784-e993-4095-b39c-26570a95e999'),(19220,19220,1,'some-user-brand-audit-submission-14-jun-2021','brandaudit/some-user-brand-audit-submission-14-jun-2021',1,'2021-06-14 00:17:42','2021-06-14 00:17:42','a2ac9fbf-99d2-41b8-9bad-809e93c8a5db'),(19221,19221,1,'some-user-brand-audit-submission-14-jun-2021','brandaudit/some-user-brand-audit-submission-14-jun-2021',1,'2021-06-14 00:18:05','2021-06-14 00:18:05','2c2da1c9-84a9-4f9f-83af-0f7156678245'),(19222,19222,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 04:51:48','2021-06-15 04:51:48','f35a9239-f205-4769-a818-05bf202d6e12'),(20145,20145,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:29:45','2021-06-15 23:29:45','5d84ca7c-278e-4ef3-ad01-1d6b6754d304'),(20146,20146,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:29:49','2021-06-15 23:29:49','4a0655d3-ae3d-437e-bc43-4354791a0505'),(20147,20147,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:29:52','2021-06-15 23:29:52','dceb3b84-d214-488e-ae73-475c951f66c5'),(20148,20148,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:29:56','2021-06-15 23:29:56','432b4b44-7628-4920-b2a9-66b86fbe612c'),(20149,20149,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:29:58','2021-06-15 23:29:58','daedea69-234a-4dee-9981-af2bb608f607'),(20150,20150,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:30:20','2021-06-15 23:30:20','f9f0b326-caf5-4b90-84f1-3c5ab89c82a9'),(20151,20151,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:30:31','2021-06-15 23:30:31','4b87fea6-1eb3-4735-822e-93e7c38ca644'),(20152,20152,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:30:38','2021-06-15 23:30:38','193da9e5-689f-46f8-9d37-390b872c2418'),(20153,20153,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:30:43','2021-06-15 23:30:43','1020849a-65a2-474a-bc33-909a55a932a1'),(20154,20154,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:30:48','2021-06-15 23:30:48','39a86795-c15d-46ed-a089-1cc2fcf51bd3'),(20155,20155,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:30:52','2021-06-15 23:30:52','742edf89-d130-4a3b-9b9b-1272f93c725f'),(20156,20156,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:30:56','2021-06-15 23:30:56','4de589da-55e7-4bea-87f0-189f09727dbb'),(20157,20157,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:30:59','2021-06-15 23:30:59','196da9a1-6017-48bf-88cc-bf8ba9af9458'),(20158,20158,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:31:02','2021-06-15 23:31:02','c00f84af-fc89-40e2-bbef-16c5983f11b2'),(20159,20159,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:31:04','2021-06-15 23:31:04','4e05bcaa-4d23-4d70-8ca7-501351fd98f6'),(20160,20160,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:31:07','2021-06-15 23:31:07','dd757bdb-431c-41cd-a883-bf4b3aae6ece'),(20161,20161,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:31:09','2021-06-15 23:31:09','867a3646-aa30-43ea-836d-ae0c035db388'),(20162,20162,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:31:11','2021-06-15 23:31:11','d27227c3-ba57-49d5-a48a-125bc92524ff'),(20163,20163,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:31:32','2021-06-15 23:31:32','fbe90acb-dadf-45fe-9394-b05199ab8867'),(20164,20164,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:31:43','2021-06-15 23:31:43','d6f4248c-df33-428a-9c35-b528aed7d86d'),(20165,20165,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:31:50','2021-06-15 23:31:50','7895e38e-74c8-4a4e-a122-31b08f34d69e'),(20166,20166,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:32:12','2021-06-15 23:32:12','e5bf7902-f347-4cc0-9647-a020f2ad0149'),(20167,20167,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:32:22','2021-06-15 23:32:22','07a25499-3c57-4f48-8aab-a0418485e94f'),(20168,20168,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:32:30','2021-06-15 23:32:30','2e3c1345-e4e5-4091-bda1-a6c2c67555a5'),(20169,20169,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:32:35','2021-06-15 23:32:35','a8b05462-22fd-45ff-aca9-1cea8d4d1c5c'),(20170,20170,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:32:40','2021-06-15 23:32:40','210f7343-41d5-4ca6-8ec4-aae225552240'),(20171,20171,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:32:44','2021-06-15 23:32:44','13468a23-b73b-4f9d-99aa-4b37d932c9a5'),(20172,20172,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:32:47','2021-06-15 23:32:47','bc90d269-42f7-46a7-ab99-4e8613641685'),(20173,20173,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:33:09','2021-06-15 23:33:09','d8f95574-ba32-4a1a-b4a0-664e56960143'),(20174,20174,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:33:19','2021-06-15 23:33:19','c639cb55-b7f4-4e23-9faf-9b8f6ef3136c'),(20175,20175,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:33:27','2021-06-15 23:33:27','5ee04024-ee7f-4b9d-a462-976c73b5b442'),(20176,20176,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:33:32','2021-06-15 23:33:32','5673f278-f4b1-48a5-b12d-7d18782b1031'),(20177,20177,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:33:37','2021-06-15 23:33:37','0d27fc3b-d5b6-4838-b0a0-893fccfb0b4f'),(20178,20178,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:33:41','2021-06-15 23:33:41','d98c4f0a-6703-4538-bce2-b9fb04c50797'),(20179,20179,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:34:02','2021-06-15 23:34:02','3b78bf47-3324-456b-a48d-166d07c77c48'),(20180,20180,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:34:13','2021-06-15 23:34:13','edbd68e4-edda-4bc0-bd87-dd9446db8186'),(20181,20181,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:34:20','2021-06-15 23:34:20','94abb972-1f04-4765-a1de-acfa72d07134'),(20182,20182,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:34:26','2021-06-15 23:34:26','e48c4d7f-bfaf-4db0-9c20-48a18e26b2f1'),(20183,20183,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:34:31','2021-06-15 23:34:31','6e5bdaf3-e44d-446d-8232-1696e035c5ac'),(20184,20184,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:34:35','2021-06-15 23:34:35','33446289-37ad-4781-bfbb-54abc2e53da7'),(20185,20185,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:34:38','2021-06-15 23:34:38','76a886f1-a2ee-463e-ae44-a456540887b4'),(20186,20186,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:34:41','2021-06-15 23:34:41','04e233c6-5eb8-41d4-badc-10443521c949'),(20187,20187,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:34:44','2021-06-15 23:34:44','343d7a4a-2e12-4f8d-b924-c4911105baf1'),(20188,20188,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:35:05','2021-06-15 23:35:05','548aa939-67ab-43a9-9bd1-f011d93fc611'),(20189,20189,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:35:16','2021-06-15 23:35:16','7446d3b3-2529-41fa-8892-f6bda5e44a1e'),(20190,20190,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:35:23','2021-06-15 23:35:23','5bc7b11e-6e96-4271-9a8a-c094b8be5d5f'),(20191,20191,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:35:29','2021-06-15 23:35:29','bc476a85-c66f-4165-9a7a-937be3e58ab6'),(20192,20192,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:35:33','2021-06-15 23:35:33','97b7836b-d51c-4794-a8cd-95dc6326f29c'),(20193,20193,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:35:37','2021-06-15 23:35:37','dea24ad4-8d0c-4fa0-9e2e-3a1dae4cbaa3'),(20194,20194,1,'andrew-mcguckin-brand-audit-submission-15-jun-2021','brandaudit/andrew-mcguckin-brand-audit-submission-15-jun-2021',1,'2021-06-15 23:35:41','2021-06-15 23:35:41','c3ff360f-8829-4795-af02-ae41f418ed4e'),(20195,20195,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2021-06-16 00:27:52','2021-06-16 00:27:52','b296d805-a3fa-4e07-b952-26d80cd5d35b'),(20379,20379,1,'about-us','about',1,'2021-06-21 04:18:41','2021-06-21 04:44:59','e1a51376-5f13-4672-b460-94e5804ca773'),(21052,21052,1,NULL,NULL,1,'2021-06-21 04:37:18','2021-06-21 04:37:18','2834c563-4570-408e-af54-b2828a7e4c6a'),(21053,21053,1,NULL,NULL,1,'2021-06-21 04:37:18','2021-06-21 04:37:18','7e483864-0b7f-4060-9a5d-16b7cabaa7e6'),(21054,21054,1,NULL,NULL,1,'2021-06-21 04:37:18','2021-06-21 04:37:18','9be5926e-b303-422b-a06f-49b4494444cc'),(21055,21055,1,NULL,NULL,1,'2021-06-21 04:37:18','2021-06-21 04:37:18','2d095d6e-66b3-4da6-860d-e21f533e53d1'),(21056,21056,1,NULL,NULL,1,'2021-06-21 04:37:18','2021-06-21 04:37:18','ab9d03f6-973c-4a9b-8d83-88b33f62223f'),(21059,21059,1,NULL,NULL,1,'2021-06-21 04:37:18','2021-06-21 04:37:18','01a121e9-e451-4ede-9a69-792037df6471'),(21061,21061,1,NULL,NULL,1,'2021-06-21 04:37:19','2021-06-21 04:37:19','061b64bc-d9c8-4a97-8e42-f46e419dde98'),(21062,21062,1,NULL,NULL,1,'2021-06-21 04:37:19','2021-06-21 04:37:19','bb7070f2-d399-4f30-a067-ba6e8c49f4a1'),(21063,21063,1,NULL,NULL,1,'2021-06-21 04:37:19','2021-06-21 04:37:19','053fc181-d2d5-4049-83bf-188f3a19955e'),(21064,21064,1,NULL,NULL,1,'2021-06-21 04:37:19','2021-06-21 04:37:19','f229fe3f-756c-4f69-bb68-bd987255f363'),(21065,21065,1,NULL,NULL,1,'2021-06-21 04:37:19','2021-06-21 04:37:19','8b1065fb-5a79-4e4e-9b6c-9dcce0d414cd'),(21066,21066,1,NULL,NULL,1,'2021-06-21 04:37:19','2021-06-21 04:37:19','d345c481-c770-481c-97e3-84c177a59930'),(21067,21067,1,NULL,NULL,1,'2021-06-21 04:37:19','2021-06-21 04:37:19','a4b4ac0f-3727-4832-bd6d-c8d0d87b19a5'),(21068,21068,1,NULL,NULL,1,'2021-06-21 04:37:19','2021-06-21 04:37:19','aa308be4-2c2f-4135-aa1a-a5010b133488'),(21075,21075,1,NULL,NULL,1,'2021-06-21 04:37:48','2021-06-21 04:37:48','24287de8-3e09-46e2-97e4-4cf24169c220'),(21076,21076,1,NULL,NULL,1,'2021-06-21 04:37:48','2021-06-21 04:37:48','93e9e8c6-e481-4ee1-ae99-a9322947e184'),(21079,21079,1,NULL,NULL,1,'2021-06-21 04:37:53','2021-06-21 04:37:53','8b68c26c-b5c1-4879-9147-59f0c8aa81e9'),(21082,21082,1,NULL,NULL,1,'2021-06-21 04:37:57','2021-06-21 04:37:57','2898d210-c33d-41a4-8caf-03b29a966948'),(21084,21084,1,NULL,NULL,1,'2021-06-21 04:37:58','2021-06-21 04:37:58','a1aea5db-39a7-4c51-a4c4-4dedf3c9ee36'),(21085,21085,1,NULL,NULL,1,'2021-06-21 04:38:02','2021-06-21 04:38:02','5975f2b2-3f0d-45f3-a397-d3517c7b2937'),(21090,21090,1,NULL,NULL,1,'2021-06-21 04:44:59','2021-06-21 04:44:59','eca8976f-d831-443f-ae42-da305bd070a9'),(21091,21091,1,NULL,NULL,1,'2021-06-21 04:44:59','2021-06-21 04:44:59','0bba650f-55b3-4462-8894-8173acce7bb7'),(21092,21092,1,NULL,NULL,1,'2021-06-21 04:44:59','2021-06-21 04:44:59','0fafbd5f-e467-4f77-93b2-0b639f3583fb'),(21093,21093,1,NULL,NULL,1,'2021-06-21 04:44:59','2021-06-21 04:44:59','887af6c7-f78d-464c-9301-c1c6f8f10f7f'),(21094,21094,1,NULL,NULL,1,'2021-06-21 04:44:59','2021-06-21 04:44:59','8f619fba-eee2-4476-9629-69b7b2153250'),(21097,21097,1,NULL,NULL,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','8863863b-0811-4403-bca1-034eaa35736f'),(21099,21099,1,NULL,NULL,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','83173146-0a9f-437e-9a55-f8318c8c160f'),(21100,21100,1,NULL,NULL,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','521f74d5-9e23-4fa3-9730-6ff37d2ca2b5'),(21101,21101,1,NULL,NULL,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','177c3497-10a0-4dc0-a30a-cff08e945344'),(21102,21102,1,NULL,NULL,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','068ae50f-8ed5-4e50-bb32-8fb5fb3fc941'),(21103,21103,1,NULL,NULL,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','6f301cde-cbc7-47f5-8f14-2835c724c8ae'),(21104,21104,1,NULL,NULL,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','fa38e83f-ed19-4227-b4f0-6a17cbcbf137'),(21105,21105,1,NULL,NULL,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','26cad495-0090-45f8-a09c-48fd6e85a97d'),(21106,21106,1,NULL,NULL,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','8c25263e-d5e9-438c-9ee0-6706ad5ef640'),(21112,21112,1,NULL,NULL,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','6d1ba5c3-e059-4946-9404-3eef938fb5e5'),(21113,21113,1,NULL,NULL,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','692745e5-c075-4b38-8f83-a5f28fa958a7'),(21114,21114,1,NULL,NULL,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','aab9cbdd-d463-48fe-81e9-b43094f671b3'),(21115,21115,1,NULL,NULL,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','e847b765-3e6e-4d52-aace-3bcc89e1312b'),(21116,21116,1,NULL,NULL,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','edf5bdf6-de43-4c79-993d-321de8a2b6c2'),(21119,21119,1,NULL,NULL,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','fe626abc-7917-435c-8600-e3fff2b5c3a9'),(21121,21121,1,NULL,NULL,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','3cc81219-6b90-4589-a8e1-ee2bf02c5d98'),(21122,21122,1,NULL,NULL,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','4c1ec4ae-a942-4281-98a5-006dc2a4f0bf'),(21123,21123,1,NULL,NULL,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','2d8a90fa-9e79-4ae4-af73-a2ab23777cd5'),(21124,21124,1,NULL,NULL,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','ee554b62-b19e-4369-9139-e0b3a89ac0c2'),(21125,21125,1,NULL,NULL,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','39a6fea8-0e3a-4d73-94b5-ebcb4a907960'),(21126,21126,1,NULL,NULL,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','3603510f-0d9f-43c3-b8df-57972d9b2559'),(21127,21127,1,NULL,NULL,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','42594ad9-5d50-4b47-be45-d1011762a435'),(21128,21128,1,NULL,NULL,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','2323109c-c14a-4294-9ddc-b545ed80c921'),(21179,21179,1,NULL,NULL,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','84df0271-1478-4fc6-852e-7394c732458b'),(21180,21180,1,NULL,NULL,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','57aab18a-4ef0-4de7-8f8b-e4fe394da0e2'),(21181,21181,1,NULL,NULL,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','f77b2146-3e6c-4e65-bb8a-5b3de54a6299'),(21182,21182,1,NULL,NULL,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','a29dbe85-b7b3-4b4a-bc0a-4b9a5a5e2a64'),(21183,21183,1,NULL,NULL,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','b6214fbb-6fa8-4823-84b6-c7fd852e6f02'),(21186,21186,1,NULL,NULL,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','aecd3246-7f9c-4226-aa2d-0ef365367f34'),(21188,21188,1,NULL,NULL,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','806bb30a-467f-47bd-b744-c8c43ddc3424'),(21189,21189,1,NULL,NULL,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','a50b4aab-4970-4296-bdbe-2ddb7ac01d42'),(21190,21190,1,NULL,NULL,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','4e4f96f9-e265-4f46-93a3-5fd6865052e5'),(21191,21191,1,NULL,NULL,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','ad80ebaf-6f5d-45a6-91ba-844b1175c79a'),(21192,21192,1,NULL,NULL,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','45901be1-79ae-4b42-8afa-52323e4d7f7c'),(21193,21193,1,NULL,NULL,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','81d7740a-18ca-426f-80ae-103f10aa3890'),(21194,21194,1,NULL,NULL,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','83759927-3727-46d5-8e74-197e71e18ce1'),(21195,21195,1,NULL,NULL,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','fc93d7bf-96c5-4e0b-8bdc-0a1a129ca1ab'),(21202,21202,1,NULL,NULL,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','629ebe53-e419-482e-a609-47fc7e2a9c70'),(21203,21203,1,NULL,NULL,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','86572da9-8fff-4a71-a8a7-fad2584c45b8'),(21204,21204,1,NULL,NULL,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','6f83955b-9efd-413e-b48c-50cbde319725'),(21205,21205,1,NULL,NULL,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','efc754a9-ea3c-4726-83c6-e3ba801b17b2'),(21206,21206,1,NULL,NULL,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','f9031c8f-ac20-45c1-a5dc-1135ec456066'),(21209,21209,1,NULL,NULL,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','66b53f46-1c2c-4092-9fb8-dc54e59fcaf9'),(21211,21211,1,NULL,NULL,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','9bec4824-2da1-4baa-9c3d-a4bdcaba25f7'),(21212,21212,1,NULL,NULL,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','60a5109a-0b16-4fc7-8fc8-19326dae3c98'),(21213,21213,1,NULL,NULL,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','8e303675-3d1e-4f47-a195-4522c0cf8a84'),(21214,21214,1,NULL,NULL,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','a90a7f73-4ce2-4c69-a9ee-c1cd7e8efc7c'),(21215,21215,1,NULL,NULL,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','40ed0dd2-ae60-4e36-b8cf-c93bfda248aa'),(21216,21216,1,NULL,NULL,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','6f32d253-7770-4951-aac1-2d93a31fb879'),(21217,21217,1,NULL,NULL,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','3b96026a-ee23-40a2-985b-f3c58f725c7a'),(21218,21218,1,NULL,NULL,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','35e908ec-5dcb-4192-b3d2-13ed46d46762'),(21224,21224,1,NULL,NULL,1,'2021-06-21 05:06:48','2021-06-21 05:06:48','cffc9601-4886-48ee-8e09-a75ba58e67d9'),(21225,21225,1,NULL,NULL,1,'2021-06-21 05:06:48','2021-06-21 05:06:48','fdc5fc74-842b-4785-ba8f-1ecc10737de4'),(21226,21226,1,NULL,NULL,1,'2021-06-21 05:06:48','2021-06-21 05:06:48','48cdb023-db10-4ae2-82b9-a2a16cb82a73'),(21227,21227,1,NULL,NULL,1,'2021-06-21 05:06:48','2021-06-21 05:06:48','4cda5eed-5438-46c7-9e19-fd66a5644e09'),(21228,21228,1,NULL,NULL,1,'2021-06-21 05:06:48','2021-06-21 05:06:48','48f9786c-029a-44f3-bbd6-12d359d2929c'),(21231,21231,1,NULL,NULL,1,'2021-06-21 05:06:48','2021-06-21 05:06:48','54d8efa7-2a05-428c-89a8-2b69b9e7aab1'),(21245,21245,1,NULL,NULL,1,'2021-06-21 05:14:24','2021-06-21 05:14:24','e6f34fc8-9eef-4110-a005-7d70acb3926b'),(21246,21246,1,NULL,NULL,1,'2021-06-21 05:14:24','2021-06-21 05:14:24','35f9cfb9-53d1-4649-af66-260f0121652e'),(21247,21247,1,NULL,NULL,1,'2021-06-21 05:14:24','2021-06-21 05:14:24','3e17a052-88bd-467d-a234-f34b4342a9fb'),(21248,21248,1,NULL,NULL,1,'2021-06-21 05:14:24','2021-06-21 05:14:24','08f3b653-eb53-4556-a2a0-49f46d2bc99a'),(21249,21249,1,NULL,NULL,1,'2021-06-21 05:14:24','2021-06-21 05:14:24','9fb72b81-4e13-44e9-aa86-d575e20265c3'),(21252,21252,1,NULL,NULL,1,'2021-06-21 05:14:24','2021-06-21 05:14:24','7dca1509-e943-4d89-a8a2-a2a026d63b37'),(21254,21254,1,NULL,NULL,1,'2021-06-21 05:14:24','2021-06-21 05:14:24','a31eb0de-0567-4c81-9379-eda62d6eeb7e'),(21255,21255,1,NULL,NULL,1,'2021-06-21 05:14:24','2021-06-21 05:14:24','bbc57719-c059-4728-b4a9-2ad8c16c6450'),(21256,21256,1,NULL,NULL,1,'2021-06-21 05:14:24','2021-06-21 05:14:24','8d644fbd-7572-493c-b27b-67b2974d290b'),(21257,21257,1,NULL,NULL,1,'2021-06-21 05:14:24','2021-06-21 05:14:24','151ba9cb-bce9-49bb-8dfd-21b201c987bb'),(21258,21258,1,NULL,NULL,1,'2021-06-21 05:14:24','2021-06-21 05:14:24','222178ff-08a6-485d-84f5-9a90670186db'),(21259,21259,1,NULL,NULL,1,'2021-06-21 05:14:24','2021-06-21 05:14:24','202cc9b0-9a31-445c-9bc5-13fb6380ea22'),(21260,21260,1,NULL,NULL,1,'2021-06-21 05:14:24','2021-06-21 05:14:24','19341333-88b7-4886-b63d-931d802684cf'),(21272,21272,1,NULL,NULL,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','8c30f87b-925c-42d9-b515-2021ee8c2a4a'),(21273,21273,1,NULL,NULL,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','a4c53c12-3950-461e-b22d-98b1e96b2d73'),(21274,21274,1,NULL,NULL,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','3983f310-49f5-4b64-8d69-d60152c683fc'),(21275,21275,1,NULL,NULL,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','871bbf4c-7620-4e5e-851d-d1f48edf0e09'),(21276,21276,1,NULL,NULL,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','c21cb160-d16d-47e7-bf95-5acd187cbcf0'),(21279,21279,1,NULL,NULL,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','b87c1645-e92e-4473-b8b3-d290177f3392'),(21281,21281,1,NULL,NULL,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','96cec0fe-d16f-4477-acd6-7d2e71065e8c'),(21282,21282,1,NULL,NULL,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','69b41e70-c3ce-42b1-900d-7118b6fd58ac'),(21283,21283,1,NULL,NULL,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','0ff51e09-d6c2-4db6-a519-b4fe56ceb9a0'),(21284,21284,1,NULL,NULL,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','6e20d94a-5aac-4cc4-9202-cf4030c09d51'),(21285,21285,1,NULL,NULL,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','e2af7f63-59c8-49ce-9031-966a4ceffe71'),(21286,21286,1,NULL,NULL,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','c5a64821-c71d-4e53-884d-080b49ee4270'),(21287,21287,1,NULL,NULL,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','f3ccb1d2-f4eb-4e03-8d3a-050d456db71c'),(21289,21289,1,NULL,NULL,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','58842a16-0d54-4d65-b1a2-39495593fb40'),(21290,21290,1,NULL,NULL,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','49699b56-e77b-4f23-9755-912ad492fa89'),(21291,21291,1,NULL,NULL,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','c4eb82bb-ea81-4099-bbf1-78309f0c78cd'),(21292,21292,1,NULL,NULL,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','83c0b709-240c-4a17-939f-bd23eeb53cdc'),(21293,21293,1,NULL,NULL,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','e7ea9fb3-36b5-4a67-8db4-2bc1c3d8ebec'),(21294,21294,1,NULL,NULL,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','5a5c929b-3005-4f50-8174-6fc13b2487ed'),(21296,21296,1,NULL,NULL,1,'2021-06-21 06:00:18','2021-06-21 06:00:18','1c71cb9a-9f06-4e18-af67-901bbf550b67'),(21297,21297,1,'contact','contact',1,'2021-06-21 06:24:18','2021-06-21 06:24:18','f6f9ed3f-e945-446e-95bf-c69c3f9ed84b'),(21298,21298,1,'contact','contact',1,'2021-06-21 06:24:18','2021-06-21 06:24:18','be17a1dd-1e42-4e95-91ff-8949353f77ab'),(21299,21299,1,'contact','contact',1,'2021-06-21 06:24:59','2021-06-21 06:24:59','d1b54448-d869-47db-ba4e-9e5a2e1da955'),(21308,21308,1,'contact','contact',1,'2021-06-21 06:26:26','2021-06-21 06:26:26','7315cbbe-0f44-467d-97d0-0afc58aee99b'),(21309,21309,1,NULL,NULL,1,'2021-06-21 06:26:26','2021-06-21 06:26:26','2bdde64d-6130-46cf-8659-3913ed412f0c'),(21335,21335,1,NULL,NULL,1,'2021-06-21 06:33:44','2021-06-21 06:33:44','878debfd-461e-40c9-b186-47282a80ed19'),(21336,21336,1,'contact','contact',1,'2021-06-21 06:33:45','2021-06-21 06:33:45','0576baed-475b-403e-a75f-2bb51dfcfeac'),(21337,21337,1,NULL,NULL,1,'2021-06-21 06:33:45','2021-06-21 06:33:45','defa8e28-5b92-4b73-9bc0-6f6aba60ffeb'),(21338,21338,1,'contact','contact',1,'2021-06-21 06:33:48','2021-06-21 06:33:48','e08942ef-d3de-4b73-a6a2-06f0cf48f64e'),(21339,21339,1,NULL,NULL,1,'2021-06-21 06:33:48','2021-06-21 06:33:48','44a7e392-c69f-4a06-a6ce-2f23b401452c'),(21371,21371,1,NULL,NULL,1,'2021-07-12 23:11:46','2021-07-12 23:11:46','9269c968-8670-485a-8bd7-3f2c25f6607b'),(21372,21372,1,NULL,NULL,1,'2021-07-12 23:11:46','2021-07-12 23:11:46','1e3e512c-ae18-465b-a4b7-1e29c7b9bc08'),(21373,21373,1,NULL,NULL,1,'2021-07-12 23:11:46','2021-07-12 23:11:46','44bd4e28-0ba0-4d9e-b7bc-b9cd969828c9'),(21374,21374,1,NULL,NULL,1,'2021-07-12 23:11:46','2021-07-12 23:11:46','3fd57b15-e609-4310-9618-f7ce1ca6186a'),(21375,21375,1,NULL,NULL,1,'2021-07-12 23:11:46','2021-07-12 23:11:46','3b0d6f90-91de-4bf8-a16f-e7997738f2c9'),(21378,21378,1,NULL,NULL,1,'2021-07-12 23:11:46','2021-07-12 23:11:46','65bff996-f43d-42f3-9239-d52dff729ac8'),(21380,21380,1,NULL,NULL,1,'2021-07-12 23:11:46','2021-07-12 23:11:46','cc3aa336-95b1-4d91-93f0-e7e22f4f87f0'),(21381,21381,1,NULL,NULL,1,'2021-07-12 23:11:46','2021-07-12 23:11:46','2bf141ed-eadd-4206-bfe6-4fe4ed4bf6eb'),(21382,21382,1,NULL,NULL,1,'2021-07-12 23:11:47','2021-07-12 23:11:47','d50a7450-aab4-441d-8c07-f3b638e652d2'),(21383,21383,1,NULL,NULL,1,'2021-07-12 23:11:47','2021-07-12 23:11:47','f98a7af4-1782-42eb-bbcf-b6355eec22f8'),(21384,21384,1,NULL,NULL,1,'2021-07-12 23:11:47','2021-07-12 23:11:47','70cf15a0-5ca8-41a4-8e90-fad640b66578'),(21385,21385,1,NULL,NULL,1,'2021-07-12 23:11:47','2021-07-12 23:11:47','7a493a0d-b8d9-4048-b831-691f2ea455ed'),(21386,21386,1,NULL,NULL,1,'2021-07-12 23:11:47','2021-07-12 23:11:47','f5fcd4a2-7420-44e6-a1eb-0987f134544d'),(21388,21388,1,NULL,NULL,1,'2021-07-12 23:11:47','2021-07-12 23:11:47','a2e6105c-e762-44ab-b11e-becaecba035c'),(21389,21389,1,NULL,NULL,1,'2021-07-12 23:11:47','2021-07-12 23:11:47','173b2016-6ea6-481f-aa7a-2acbb6229a4d'),(21390,21390,1,NULL,NULL,1,'2021-07-12 23:11:47','2021-07-12 23:11:47','53cb05da-43d3-42a0-a6f8-6cd72980249d'),(21391,21391,1,NULL,NULL,1,'2021-07-12 23:11:47','2021-07-12 23:11:47','dd901704-c939-49ee-88e2-13563c04f9ae'),(21392,21392,1,NULL,NULL,1,'2021-07-12 23:11:47','2021-07-12 23:11:47','2bd7ee01-df0d-4c0d-a906-b7a6764b15e6'),(21393,21393,1,NULL,NULL,1,'2021-07-12 23:11:47','2021-07-12 23:11:47','b113ad39-afc4-44b5-a566-4d4c212beeff'),(21398,21398,1,NULL,NULL,1,'2021-07-12 23:13:42','2021-07-12 23:13:42','38688330-e8df-443b-a630-38ea67113138'),(21399,21399,1,NULL,NULL,1,'2021-07-12 23:13:42','2021-07-12 23:13:42','6f8e9f47-d4be-4c22-8bb7-1a719741ff56'),(21400,21400,1,NULL,NULL,1,'2021-07-12 23:13:42','2021-07-12 23:13:42','39970945-d43e-4d98-bb81-cf651708573a'),(21401,21401,1,NULL,NULL,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','a3facdd3-222d-4978-adf9-83500a80a106'),(21402,21402,1,NULL,NULL,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','e1a67577-342a-4767-b6d0-ef5cf62a8c27'),(21405,21405,1,NULL,NULL,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','efde0b4f-b795-4b48-bfef-62b86b0873e3'),(21407,21407,1,NULL,NULL,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','c25f9002-627a-459f-849c-35745eb1d637'),(21408,21408,1,NULL,NULL,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','39309c55-1119-4244-a380-0451a40f5e24'),(21409,21409,1,NULL,NULL,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','0fa5d5d2-42ba-4bf2-8b68-d33d1a9660e0'),(21410,21410,1,NULL,NULL,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','56124f48-9623-42cf-8b1a-5702694a0f22'),(21411,21411,1,NULL,NULL,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','f36c6f94-3413-43c7-918a-35478d7a7a83'),(21412,21412,1,NULL,NULL,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','2e7a70a9-781d-461c-9c29-775828197e44'),(21413,21413,1,NULL,NULL,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','ef155246-00ff-42dd-9508-f2c56510e89f'),(21415,21415,1,NULL,NULL,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','4ce8bb1b-fd62-4889-af16-06633c0efc59'),(21416,21416,1,NULL,NULL,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','3be5e1e9-a50f-4583-b7aa-f0ef1b3e5419'),(21417,21417,1,NULL,NULL,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','f98619e4-7ca3-496b-80a5-092de504aa5a'),(21418,21418,1,NULL,NULL,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','676a1c81-294d-46ae-b4a4-ef808cfd571c'),(21419,21419,1,NULL,NULL,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','415bf702-c1c8-44f6-96e3-f63659c7fb17'),(21420,21420,1,NULL,NULL,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','8752337d-460f-4767-8444-75468c9397cc'),(21425,21425,1,NULL,NULL,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','186e0d01-1dbf-4344-be3d-846e6cedc4be'),(21426,21426,1,NULL,NULL,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','c02ce597-1424-42b7-96b9-8d500a9e9007'),(21427,21427,1,NULL,NULL,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','8ecef5db-2bf4-44a8-80b5-1beda249399d'),(21428,21428,1,NULL,NULL,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','da5e731c-1a70-43e0-ac3a-2352c35abbed'),(21429,21429,1,NULL,NULL,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','13cb7498-e2ce-4abc-acdf-0f7a0f28d980'),(21432,21432,1,NULL,NULL,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','5715d473-4a37-44f5-8d9b-2126ff41fe61'),(21434,21434,1,NULL,NULL,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','354655b2-8414-46ee-ba47-bb40bb1ba221'),(21435,21435,1,NULL,NULL,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','a2085fa6-ed9f-421c-b010-16e2b8f0c96f'),(21436,21436,1,NULL,NULL,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','93153131-00a2-47c7-b4cf-b54e84ed1ab2'),(21437,21437,1,NULL,NULL,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','b5a9231e-0be1-4e07-9100-43c596748cb4'),(21438,21438,1,NULL,NULL,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','d72dd6a2-5a44-41b7-874b-500ecea5e0fb'),(21439,21439,1,NULL,NULL,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','990f3dc3-674b-4e59-bcb1-10d176745883'),(21440,21440,1,NULL,NULL,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','e81830ca-61d9-4d4b-b7ff-d71f982298ef'),(21442,21442,1,NULL,NULL,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','ce44d09a-8149-4dc5-b766-3b1f217a1683'),(21443,21443,1,NULL,NULL,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','3fb38e64-d140-42c3-9038-7f9508447e9a'),(21444,21444,1,NULL,NULL,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','63b40bc4-3399-4b01-8060-e225570c0ae8'),(21445,21445,1,NULL,NULL,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','03f100b0-80c8-4c95-b529-36e961e878ee'),(21446,21446,1,NULL,NULL,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','f7852eac-452c-42ea-832d-e1fe8a397091'),(21447,21447,1,NULL,NULL,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','6f67ad84-8cef-4243-890d-3a5b4972714b'),(21505,21505,1,NULL,NULL,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','46234eea-d4b3-48fe-bd64-65970e8a11b1'),(21506,21506,1,NULL,NULL,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','b8ffcde8-5f64-4cff-a427-8b7dbb355002'),(21507,21507,1,NULL,NULL,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','ff02facd-4a19-4eea-af33-2f92c502ca40'),(21508,21508,1,NULL,NULL,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','44829180-17f9-401f-a636-fa7fbee16be0'),(21509,21509,1,NULL,NULL,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','0ec9839c-ee1d-4749-9d4b-1625d20b2042'),(21512,21512,1,NULL,NULL,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','2b923719-b38a-4a5f-b848-64149211e8c6'),(21514,21514,1,NULL,NULL,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','96c7df23-f364-42bb-b7e1-fd466b4113ec'),(21515,21515,1,NULL,NULL,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','5d4c07ec-a0e3-4a17-abeb-df479fc71ef6'),(21516,21516,1,NULL,NULL,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','fcdd812c-372b-4dd4-8416-a125c53798d5'),(21517,21517,1,NULL,NULL,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','73d4f0e6-414b-4c2f-9fb9-e3d5250b6f33'),(21518,21518,1,NULL,NULL,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','795fa97e-8d69-4a60-a39f-1f382bc3048a'),(21519,21519,1,NULL,NULL,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','152dfd30-b042-4ae5-ab39-e0ac0081d6b4'),(21520,21520,1,NULL,NULL,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','e37ef3af-2fcf-42bb-9bea-637e19471d48'),(21522,21522,1,NULL,NULL,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','14b209dc-595b-46e2-9dfa-841df78d4f73'),(21523,21523,1,NULL,NULL,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','fa54ee40-1e3a-4450-b892-97aa64b17e07'),(21524,21524,1,NULL,NULL,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','02eccc12-b9de-489c-859d-5a4281c9205d'),(21525,21525,1,NULL,NULL,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','fe6d7006-7ac6-4657-b58c-f620d88ba90b'),(21526,21526,1,NULL,NULL,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','d08a7cfb-faae-40f5-90a2-c0aa38fbea3c'),(21527,21527,1,NULL,NULL,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','7b7eee19-d5ce-4a2e-89e6-07a82888c273'),(21532,21532,1,NULL,NULL,1,'2021-07-12 23:40:17','2021-07-12 23:40:17','366eee71-e1d6-48d5-b60a-aa26f7669b6a'),(21533,21533,1,NULL,NULL,1,'2021-07-12 23:40:17','2021-07-12 23:40:17','f2b929f1-3f5b-4ced-a277-4f8ccc96849f'),(21534,21534,1,NULL,NULL,1,'2021-07-12 23:40:17','2021-07-12 23:40:17','c5d8461e-2ece-4d45-a292-789f6cb730d6'),(21535,21535,1,NULL,NULL,1,'2021-07-12 23:40:17','2021-07-12 23:40:17','1d5e427a-01cd-4077-8e10-71841f0801ab'),(21536,21536,1,NULL,NULL,1,'2021-07-12 23:40:17','2021-07-12 23:40:17','4c2c4923-6bac-4e58-8cdf-c27732d96d27'),(21539,21539,1,NULL,NULL,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','833a6ba3-d3ed-4204-9a43-258bd4b45f1e'),(21541,21541,1,NULL,NULL,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','b1e9cf42-a4e7-4fa5-a5b9-2158df9dbe49'),(21542,21542,1,NULL,NULL,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','4ed79de5-1ac3-4bbf-b413-ff98bafc9a88'),(21543,21543,1,NULL,NULL,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','5aab7026-a1f7-43c5-9ca6-12b05c466377'),(21544,21544,1,NULL,NULL,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','87bd31a6-7c7f-4563-b691-d4465e317b61'),(21545,21545,1,NULL,NULL,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','f36eefb7-2f6f-475d-bbea-8cfb3c60bcd5'),(21546,21546,1,NULL,NULL,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','9f8bb719-cfd3-49c6-83a4-56f4d6cba28f'),(21547,21547,1,NULL,NULL,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','2136ebdc-2760-463b-a0bc-8e0e9b88ab38'),(21549,21549,1,NULL,NULL,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','bd06672c-ed9c-48c2-a22c-047ca2a812f4'),(21550,21550,1,NULL,NULL,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','25048696-64b4-4e91-8026-8a09e2e313bd'),(21551,21551,1,NULL,NULL,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','9e4032c6-7a17-453d-ad91-c79a9c145982'),(21552,21552,1,NULL,NULL,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','41651c42-86db-441d-afba-37d9897b4d1a'),(21553,21553,1,NULL,NULL,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','00063086-c18c-419e-b9fa-53b2efdd4e6e'),(21554,21554,1,NULL,NULL,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','3f02f0fe-812a-4de1-9d31-38678852d25a'),(21559,21559,1,NULL,NULL,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','9b527b4f-878c-4a89-9ce2-ff4776c42f3f'),(21560,21560,1,NULL,NULL,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','3843ad48-4dd6-4355-a4bb-e688e3a2bbb6'),(21561,21561,1,NULL,NULL,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','f3cd9241-ecd7-4758-b7dc-6be28cd7ea47'),(21562,21562,1,NULL,NULL,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','f94dbba6-fbe8-4b2f-bc80-1ceed59625b7'),(21563,21563,1,NULL,NULL,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','1d945acd-6a2e-481e-ab1e-62a230998ee7'),(21566,21566,1,NULL,NULL,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','6faa0cee-256e-43f4-9b8e-c3bb829f9cdb'),(21568,21568,1,NULL,NULL,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','b144f813-b406-4448-9d48-898d5d08b857'),(21569,21569,1,NULL,NULL,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','84637a0c-03bb-475e-bb75-4b0e243c71e4'),(21570,21570,1,NULL,NULL,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','4989ab4a-bf84-4a0f-8e82-c66faee257e9'),(21571,21571,1,NULL,NULL,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','f8137eb0-dbe8-42b3-80b4-268fe5ea32e7'),(21572,21572,1,NULL,NULL,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','20aab40d-4f4e-41d6-81a3-f81f7cd230d7'),(21573,21573,1,NULL,NULL,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','968cfa44-71ea-4f66-b0ab-d5d335f90803'),(21574,21574,1,NULL,NULL,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','5bc7b542-347b-4e48-9eea-5dcf3eec91b7'),(21576,21576,1,NULL,NULL,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','b3bd27b4-3d4c-478f-b541-2fbce75f7484'),(21577,21577,1,NULL,NULL,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','3a76088f-ed94-45e5-a951-cf5a53d4e69b'),(21578,21578,1,NULL,NULL,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','e3683e95-de40-484b-a801-9ffa8ce35855'),(21579,21579,1,NULL,NULL,1,'2021-07-12 23:46:01','2021-07-12 23:46:01','fe8d1142-1ae8-4cfd-b9ca-4959ff7df643'),(21580,21580,1,NULL,NULL,1,'2021-07-12 23:46:01','2021-07-12 23:46:01','e9317118-3614-4718-93d6-3770c95344bc'),(21581,21581,1,NULL,NULL,1,'2021-07-12 23:46:01','2021-07-12 23:46:01','c537ffc7-3dcf-4104-a1f3-41efe8fee800'),(21586,21586,1,NULL,NULL,1,'2021-07-12 23:48:23','2021-07-12 23:48:23','4e9aa04a-a8a9-4f2d-acdb-48db44181da4'),(21587,21587,1,NULL,NULL,1,'2021-07-12 23:48:23','2021-07-12 23:48:23','947e4b36-1917-40eb-91a9-aa847ec8bec3'),(21588,21588,1,NULL,NULL,1,'2021-07-12 23:48:23','2021-07-12 23:48:23','6ee138cc-7179-49b2-9813-30e4b81f9e4e'),(21589,21589,1,NULL,NULL,1,'2021-07-12 23:48:23','2021-07-12 23:48:23','0588a3e7-f6d3-41d1-b5cf-94c4612e63d0'),(21590,21590,1,NULL,NULL,1,'2021-07-12 23:48:23','2021-07-12 23:48:23','acbcc82f-5ac1-42f2-8417-41cf928c6f93'),(21593,21593,1,NULL,NULL,1,'2021-07-12 23:48:23','2021-07-12 23:48:23','16669e86-6195-444b-94d5-8c616f800455'),(21595,21595,1,NULL,NULL,1,'2021-07-12 23:48:23','2021-07-12 23:48:23','27c5ada0-6a43-4169-9caf-87f19fe53fd1'),(21596,21596,1,NULL,NULL,1,'2021-07-12 23:48:23','2021-07-12 23:48:23','0f5405e3-1b53-46b0-b43e-3842fc4efce5'),(21597,21597,1,NULL,NULL,1,'2021-07-12 23:48:23','2021-07-12 23:48:23','3d0e5bc5-afe6-4c4e-b6a5-f8775b0bbb96'),(21598,21598,1,NULL,NULL,1,'2021-07-12 23:48:23','2021-07-12 23:48:23','54f24420-ffc2-48d2-aa47-19a9e8a68934'),(21599,21599,1,NULL,NULL,1,'2021-07-12 23:48:23','2021-07-12 23:48:23','937a332b-f19f-408e-9032-fab2fc1ed4a5'),(21600,21600,1,NULL,NULL,1,'2021-07-12 23:48:23','2021-07-12 23:48:23','a68d44b9-3215-49a6-96c1-3cc9b71dc576'),(21601,21601,1,NULL,NULL,1,'2021-07-12 23:48:23','2021-07-12 23:48:23','293736ee-bef4-4bbd-b349-f98e7c233fc6'),(21603,21603,1,NULL,NULL,1,'2021-07-12 23:48:23','2021-07-12 23:48:23','04635071-80bc-474b-bd34-2aae9ed7cdc7'),(21604,21604,1,NULL,NULL,1,'2021-07-12 23:48:24','2021-07-12 23:48:24','8e69e68a-48fa-451d-a875-eca662f80ca2'),(21605,21605,1,NULL,NULL,1,'2021-07-12 23:48:24','2021-07-12 23:48:24','2c31a4d5-9cdf-4916-be6e-ff5bb8d9ff7a'),(21606,21606,1,NULL,NULL,1,'2021-07-12 23:48:24','2021-07-12 23:48:24','0dcdd223-49ca-4e59-9322-9f06007d858e'),(21607,21607,1,NULL,NULL,1,'2021-07-12 23:48:24','2021-07-12 23:48:24','0e3bbb70-ad09-4d31-ba3f-8aff293b39e6'),(21608,21608,1,NULL,NULL,1,'2021-07-12 23:48:24','2021-07-12 23:48:24','aab3c63d-0ad1-44ac-98fd-952e61fdfb7e'),(21613,21613,1,NULL,NULL,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','50f90b03-922f-4d92-81f3-2941856850db'),(21614,21614,1,NULL,NULL,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','f4db6d06-b9b1-44c7-92f3-11c443736eb1'),(21615,21615,1,NULL,NULL,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','e730d631-ff40-4328-a554-09cd502a2638'),(21616,21616,1,NULL,NULL,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','289222fe-86e5-4658-8e7e-fa683f8a6a5a'),(21617,21617,1,NULL,NULL,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','c9595327-955f-4355-a66e-0db7af232c15'),(21620,21620,1,NULL,NULL,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','c9c855bc-81ad-4691-8d52-26e7be6c75a1'),(21622,21622,1,NULL,NULL,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','02d9cf9f-03f3-4560-b8a4-21ae5bc3ab73'),(21623,21623,1,NULL,NULL,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','e17a52bd-82b0-4375-b775-79df7ef5b635'),(21624,21624,1,NULL,NULL,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','51e141c9-a9df-499b-8764-ec4ad56634b0'),(21625,21625,1,NULL,NULL,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','d0c0fed4-96ae-400e-9cf6-721700364e22'),(21626,21626,1,NULL,NULL,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','7a890afb-6757-428b-acd6-37eff23b9d98'),(21627,21627,1,NULL,NULL,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','ec693a82-45f2-4313-83ec-5acd3ecc62de'),(21628,21628,1,NULL,NULL,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','08704c19-a702-41a1-abab-5f408b8b5c65'),(21630,21630,1,NULL,NULL,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','d1cf1b71-532b-41fd-a14b-7b57b132af64'),(21631,21631,1,NULL,NULL,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','20ddf680-0a74-48ea-9443-4e872c7b3427'),(21632,21632,1,NULL,NULL,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','b99c9b50-d58e-4ce5-b7d2-95dc2fdcd4bb'),(21633,21633,1,NULL,NULL,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','dbc2b244-0634-41d6-9cd5-9f24cb968a2c'),(21634,21634,1,NULL,NULL,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','4803d089-c279-4d1b-8dac-178f0c9dffac'),(21635,21635,1,NULL,NULL,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','29830fa4-a536-45aa-8ad5-e89da3fa9247'),(21640,21640,1,NULL,NULL,1,'2021-07-12 23:54:37','2021-07-12 23:54:37','cd400bbc-0745-4fd1-975e-13a91a186836'),(21641,21641,1,NULL,NULL,1,'2021-07-12 23:54:37','2021-07-12 23:54:37','7ddd16e0-42f2-4c6f-a057-fe4347df8626'),(21642,21642,1,NULL,NULL,1,'2021-07-12 23:54:37','2021-07-12 23:54:37','420f584e-979d-4afd-b344-ea23aa5aca51'),(21643,21643,1,NULL,NULL,1,'2021-07-12 23:54:37','2021-07-12 23:54:37','d7f9ec9e-b3bb-452a-904f-1c06f7927121'),(21644,21644,1,NULL,NULL,1,'2021-07-12 23:54:37','2021-07-12 23:54:37','2354e7ea-e971-420c-b297-85566b51bd3c'),(21647,21647,1,NULL,NULL,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','4d71bf43-1638-4a74-b13a-c12ae4e895e6'),(21649,21649,1,NULL,NULL,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','3ba7296a-822e-4c07-b082-e3c43e754d1c'),(21650,21650,1,NULL,NULL,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','32d5e784-f5d9-4b4c-9102-6c4477eec01d'),(21651,21651,1,NULL,NULL,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','e5c1956b-f3f8-4f81-961b-4aff127d3dc3'),(21652,21652,1,NULL,NULL,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','2eaa3cf3-0c38-45f3-81de-b5228569e4c4'),(21653,21653,1,NULL,NULL,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','b857d69d-f96f-4aa5-9324-26a589891eb5'),(21654,21654,1,NULL,NULL,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','5acdcb7f-5604-407e-befd-8f0297520ca1'),(21655,21655,1,NULL,NULL,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','91becd7d-5550-4d55-85c5-4b3485cf253a'),(21657,21657,1,NULL,NULL,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','dd4108c6-e9d7-4743-b443-6805cba9989e'),(21658,21658,1,NULL,NULL,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','9c748b24-8c02-430a-aa80-deb5a96676be'),(21659,21659,1,NULL,NULL,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','d8f4dd09-4e7f-4144-a7eb-cd6222ffa49e'),(21660,21660,1,NULL,NULL,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','4c854c23-f3a4-4d5a-b86a-01f54a31d4d5'),(21661,21661,1,NULL,NULL,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','3dc8b56d-4305-4300-8f5f-37aebcace85f'),(21662,21662,1,NULL,NULL,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','f92ee5fe-db62-4878-b50c-08d33558fde0'),(21667,21667,1,NULL,NULL,1,'2021-07-12 23:56:17','2021-07-12 23:56:17','7fd38201-0898-4d9f-9468-7d21748aa3a0'),(21668,21668,1,NULL,NULL,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','94f7d161-93ae-48d6-a507-e8815cff9bcc'),(21669,21669,1,NULL,NULL,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','dbe50d48-32c2-4459-82ec-6af8c766e7a7'),(21670,21670,1,NULL,NULL,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','2521402e-0f45-4933-bf31-a7f78f29919c'),(21671,21671,1,NULL,NULL,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','ce670819-956c-4804-b077-c3ef3a714c40'),(21674,21674,1,NULL,NULL,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','9a66d7cd-d062-4427-8996-01c47480a6df'),(21676,21676,1,NULL,NULL,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','e9bcee26-91e3-458b-bcd6-a5c140031fb4'),(21677,21677,1,NULL,NULL,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','fb882d25-a9dc-4f97-af0a-b5df63c8dce1'),(21678,21678,1,NULL,NULL,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','45e59845-a3bd-4798-a8d8-e0ac7a5acc55'),(21679,21679,1,NULL,NULL,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','70ce5909-dd71-4332-946e-69808646c6be'),(21680,21680,1,NULL,NULL,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','30072576-2cd7-49d9-8d9f-1e31cfa06b86'),(21681,21681,1,NULL,NULL,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','98903958-93df-4227-b426-fe0a8a192416'),(21682,21682,1,NULL,NULL,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','5c578285-67f5-415c-aebc-cd0434f214dd'),(21684,21684,1,NULL,NULL,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','5827e08d-90cb-4ce3-bdf6-2206374af147'),(21685,21685,1,NULL,NULL,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','3e843dce-f53a-4afd-9cea-52b2ae147e8b'),(21686,21686,1,NULL,NULL,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','191e04a2-33bc-4fe0-89d6-a39706643986'),(21687,21687,1,NULL,NULL,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','f94ed680-acfb-477b-85d1-ee968a4cab1e'),(21688,21688,1,NULL,NULL,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','a03c1eb3-b272-490d-968a-16bae854bf2f'),(21689,21689,1,NULL,NULL,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','e73ed8fb-767a-49ed-a994-ebb84b4f3687'),(21694,21694,1,NULL,NULL,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','b4efdeed-a7a2-48d6-bf39-32f268b183a7'),(21695,21695,1,NULL,NULL,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','add8dff1-dd6a-48a5-a8a0-95a45af13b11'),(21696,21696,1,NULL,NULL,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','970b6937-40d2-4849-81e9-e0fefa243771'),(21697,21697,1,NULL,NULL,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','09250f20-5b48-41b3-8efa-f433f5fbc6fa'),(21698,21698,1,NULL,NULL,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','aa854b7b-29ee-4ef0-ad1a-efc17c62fcda'),(21701,21701,1,NULL,NULL,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','d88695a3-9943-4720-b9be-ed5faa62fed8'),(21703,21703,1,NULL,NULL,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','b637ec23-77ce-4399-8978-0e8f6edab0ba'),(21704,21704,1,NULL,NULL,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','de7e1cf7-87ec-425f-92a0-3d51b4613f2d'),(21705,21705,1,NULL,NULL,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','435b0876-8341-4ec7-b60f-e9a45390b8f8'),(21706,21706,1,NULL,NULL,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','6803f83d-5d67-419e-b856-e879eb6049e0'),(21707,21707,1,NULL,NULL,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','b7a74744-6f34-4d33-9eef-06c800781cee'),(21708,21708,1,NULL,NULL,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','e9a5a613-e014-41be-b4a9-1a5b8b03321f'),(21709,21709,1,NULL,NULL,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','f3c965f0-3120-42da-8d54-efd9ae32d140'),(21711,21711,1,NULL,NULL,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','9aab0fcb-ccb4-4a8a-b1fb-7f02b9e94238'),(21712,21712,1,NULL,NULL,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','4b523efc-c23c-403b-afc8-27a667bbe62a'),(21713,21713,1,NULL,NULL,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','6c97d11a-5f17-4bb3-ba75-810c84345f5b'),(21714,21714,1,NULL,NULL,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','d1b7f91e-4541-4d59-bf45-ae7a19df2176'),(21715,21715,1,NULL,NULL,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','ea2c1cd2-dd37-4cc1-94b4-1aff54f97256'),(21716,21716,1,NULL,NULL,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','56742edb-99e4-4552-b2f5-fd95be57dc8f'),(21721,21721,1,NULL,NULL,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','14c1e8ec-9631-4a45-8c98-62b0683dcd41'),(21722,21722,1,NULL,NULL,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','768c5e84-be6d-4a23-b769-1f57db9260ed'),(21723,21723,1,NULL,NULL,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','efb81587-e913-43b7-a0e5-fc39f7fc225f'),(21724,21724,1,NULL,NULL,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','46446c86-244f-4d70-ba53-9aebaaefa202'),(21725,21725,1,NULL,NULL,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','fd798e4a-f595-4724-94ea-aac47d5b1c7a'),(21728,21728,1,NULL,NULL,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','b2cff118-2103-40f0-a5e5-919ede90d80b'),(21730,21730,1,NULL,NULL,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','23616c2d-684d-4ccf-a16c-315028fa026b'),(21731,21731,1,NULL,NULL,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','7c0095db-29c9-4b0a-99ff-820fe7827607'),(21732,21732,1,NULL,NULL,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','bf33532a-dd0e-41f2-95af-a0d859b09353'),(21733,21733,1,NULL,NULL,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','5326f588-eafb-4c9a-8ab5-a9f1689697c8'),(21734,21734,1,NULL,NULL,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','4bb31795-fca4-4fac-a27c-07122b6c0250'),(21735,21735,1,NULL,NULL,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','bc306bea-8679-4ffd-8241-8e9f6bd7fa3c'),(21736,21736,1,NULL,NULL,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','ab4fa0c8-9631-4799-b76c-a32bf7383f4c'),(21738,21738,1,NULL,NULL,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','64990c79-d8c0-4a63-a323-e4def58a7035'),(21739,21739,1,NULL,NULL,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','cf650b64-aaa0-45e8-94cd-1a0ad7e453f0'),(21740,21740,1,NULL,NULL,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','34259096-e60f-4211-99dc-d5cfd1b4a1d1'),(21741,21741,1,NULL,NULL,1,'2021-07-12 23:58:24','2021-07-12 23:58:24','316d354a-09d6-42aa-a8f9-9d015f52681e'),(21742,21742,1,NULL,NULL,1,'2021-07-12 23:58:24','2021-07-12 23:58:24','7ad0426f-cc05-4377-9a5b-7fcd662b0488'),(21743,21743,1,NULL,NULL,1,'2021-07-12 23:58:24','2021-07-12 23:58:24','c5011888-e988-44dc-90ca-6dfd85e82289'),(21772,21772,1,NULL,NULL,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','ed817884-b594-4494-a0de-26c1cd11676b'),(21773,21773,1,NULL,NULL,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','568c936c-a2c3-42c8-8b93-c8a1af1975c4'),(21774,21774,1,NULL,NULL,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','9c9aa1ca-46c3-4e16-bbaa-c8fa42c1294a'),(21775,21775,1,NULL,NULL,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','80eabe71-4dad-4c45-8ad9-08b8bbd69211'),(21776,21776,1,NULL,NULL,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','6094a11a-2e42-4c09-9855-ac0a00eb9c5c'),(21777,21777,1,NULL,NULL,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','2a192f98-b5a8-4e75-a571-18c2cea0e445'),(21778,21778,1,NULL,NULL,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','78989d72-3a59-435a-842b-9034346a96c4'),(21779,21779,1,NULL,NULL,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','e583cd65-9b65-4ccc-a67f-da589e454651'),(21780,21780,1,NULL,NULL,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','96a7e08b-590c-4add-8781-fb35f750939c'),(21781,21781,1,NULL,NULL,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','bb86cd9a-3639-461c-8b59-455ad8e58e20'),(21782,21782,1,NULL,NULL,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','c4038b93-fd6b-4efa-b14a-3d972036b294'),(21783,21783,1,NULL,NULL,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','c9ca10cc-aed6-4fea-86ad-85185cf971a3'),(21784,21784,1,NULL,NULL,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','21133476-fe17-4ccb-829c-162dc8af40a9'),(21785,21785,1,NULL,NULL,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','377830af-d032-4c79-8c2d-ffeb435130e3'),(21786,21786,1,NULL,NULL,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','6803e21f-95d6-49f3-b746-eee965f31226'),(21787,21787,1,NULL,NULL,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','e7da6afa-3ffa-4870-a9f6-a3519c57c718'),(21788,21788,1,NULL,NULL,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','bbcc6819-c17f-4acc-8c63-0396092d1d76'),(21789,21789,1,NULL,NULL,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','fefcffb5-050e-4e68-b8d7-b6e31930abca'),(21790,21790,1,NULL,NULL,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','698c566b-bcd5-459f-86db-0ba9241b7173'),(21791,21791,1,NULL,NULL,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','1a01f322-23fb-48a0-ac75-9eadf395ba37'),(21792,21792,1,NULL,NULL,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','3993ab44-97b4-45e5-bb77-743500ca91bf'),(21793,21793,1,NULL,NULL,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','00acc0d1-f517-4d82-a368-9a9a38e78076'),(21794,21794,1,NULL,NULL,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','9927c1b2-c3f9-4af9-8883-b2657c1ba033'),(21795,21795,1,NULL,NULL,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','4168aaa4-cc36-4098-b1a5-537b6fe42c76'),(21796,21796,1,NULL,NULL,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','b71e22d1-9020-420a-a67b-248c79ab35cb'),(21797,21797,1,NULL,NULL,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','7accdad6-7549-4f04-8e6a-40c76f9f1093'),(21801,21801,1,NULL,NULL,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','7652bb42-b6c2-415c-b2b4-ce3e2c6598ef'),(21802,21802,1,NULL,NULL,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','2a4ab5c0-b83c-4e0c-8885-84157a008cb6'),(21803,21803,1,NULL,NULL,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','e3b109e0-af3b-4fc9-a78b-e4eab0eecf08'),(21804,21804,1,NULL,NULL,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','2fcbea05-1769-4178-b0ba-f1161a5e19b7'),(21805,21805,1,NULL,NULL,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','2c16b0ca-e967-42f7-a043-60487987be30'),(21808,21808,1,NULL,NULL,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','e386fb15-4da4-4006-8d4c-c9c23c10a1f5'),(21810,21810,1,NULL,NULL,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','09468fcf-b95d-4e29-98f9-37159bfc2633'),(21811,21811,1,NULL,NULL,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','7884292a-ab1b-4b91-a63a-63047df82615'),(21812,21812,1,NULL,NULL,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','810497b7-90ae-4297-8a7f-61861b72ec38'),(21813,21813,1,NULL,NULL,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','4af841de-47c0-48f5-a917-00786b804df4'),(21814,21814,1,NULL,NULL,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','840ab0e0-7ebd-490b-b87a-00262adc945a'),(21815,21815,1,NULL,NULL,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','51b09ebf-00dc-4f38-a7a0-9f01bb336987'),(21816,21816,1,NULL,NULL,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','a73c5444-e184-4404-83b2-1672d16102c8'),(21818,21818,1,NULL,NULL,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','3daaad2c-59da-4d71-ae74-133ee314a9ad'),(21819,21819,1,NULL,NULL,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','53c27608-987c-4677-9348-a479d8066c14'),(21820,21820,1,NULL,NULL,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','c6a77903-f331-4372-bd95-19fd2233629f'),(21821,21821,1,NULL,NULL,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','906da0a9-154c-4f76-8cc6-0038c4040f02'),(21822,21822,1,NULL,NULL,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','dc4a9244-063c-4e17-866b-bd0aca8badfa'),(21823,21823,1,NULL,NULL,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','823ebbf5-53be-4048-8664-21cf0f9f09d3'),(21855,21855,1,NULL,NULL,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','e60bdc52-facb-43f8-b99a-d902ef1f2cea'),(21856,21856,1,NULL,NULL,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','1d7ca845-b4d9-4fc5-b4b0-fdd482fb8c4f'),(21857,21857,1,NULL,NULL,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','26b7b243-5458-45a5-b117-bfa740aa2a60'),(21858,21858,1,NULL,NULL,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','b0489679-457c-4a98-b5b5-d03ab915f3f0'),(21859,21859,1,NULL,NULL,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','01180ab6-9dfc-4135-ab80-a95607ef18bc'),(21862,21862,1,NULL,NULL,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','6863e728-0bd9-45ca-b0e3-98141aabf189'),(21864,21864,1,NULL,NULL,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','4c25f054-dad2-4ab4-acc1-9b618235f8b7'),(21865,21865,1,NULL,NULL,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','b2fab9fa-bb50-4b99-a5dd-3f324d4f3a8f'),(21866,21866,1,NULL,NULL,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','5cb589c9-1678-4de2-94ae-a564f56198de'),(21867,21867,1,NULL,NULL,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','915bfa88-ed9f-4fc4-bab5-aaa8d6ece8c8'),(21868,21868,1,NULL,NULL,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','54e322af-4397-4c2e-a0f0-913c741fbe3d'),(21869,21869,1,NULL,NULL,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','31280799-4ab9-43bc-91b3-b94b68b0954d'),(21870,21870,1,NULL,NULL,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','28c073f3-91a3-4e9c-8cae-cb5b8afca4f7'),(21872,21872,1,NULL,NULL,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','f9c08edf-fe76-40e7-a04d-60a9666c30d5'),(21873,21873,1,NULL,NULL,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','d1727f4a-9143-4511-a6e0-0b82923a7d23'),(21874,21874,1,NULL,NULL,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','c3fb49f9-bc32-4690-a835-ddbab4b000a0'),(21875,21875,1,NULL,NULL,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','24489e35-7724-4818-b13f-ccb5d74afaba'),(21876,21876,1,NULL,NULL,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','8a9fbd47-ccdc-4de1-b4d4-b24998f8fbf9'),(21877,21877,1,NULL,NULL,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','ff544ad5-b6c9-4d3b-97ca-96d8fa1e1251'),(21898,21898,1,NULL,NULL,1,'2021-07-14 02:01:23','2021-07-14 02:01:23','87d32305-1b13-4691-8750-f9022ca11429'),(21901,21901,1,'contact','contact',1,'2021-07-14 23:06:29','2021-07-14 23:06:29','8f160a37-8c3e-4f50-b2c3-0c42626168c2'),(21903,21903,1,'contact','contact',1,'2021-07-14 23:07:37','2021-07-14 23:07:37','7deb09f6-a532-4ed7-8743-26837fb86144'),(21904,21904,1,'contact','contact',1,'2021-07-14 23:07:41','2021-07-14 23:07:41','2eb925a9-c68b-4d92-8390-4764df95d1ed'),(21905,21905,1,'contact','contact',1,'2021-07-14 23:13:02','2021-07-14 23:13:02','e85ea6cd-d7af-4271-8a05-cef5073f65b0'),(21906,21906,1,'contact','contact',1,'2021-07-14 23:16:04','2021-07-14 23:16:04','9a803b80-43f6-4831-821b-c7e177edede8'),(21907,21907,1,'contact','contact',1,'2021-07-14 23:33:15','2021-07-14 23:33:15','da54e569-b497-4f68-82d7-a2b123dd5336'),(21908,21908,1,'about-us','about',1,'2021-07-15 00:09:37','2021-07-15 00:09:37','a0438204-a851-4e45-a04a-78435f300c7f'),(21909,21909,1,'about-us','about',1,'2021-07-15 00:11:33','2021-07-15 00:11:33','3f0eb447-9afb-42fe-bbc3-968aff7e86a0'),(21910,21910,1,NULL,NULL,1,'2021-07-15 01:58:41','2021-07-15 01:58:41','4dcc61c9-d603-472b-9684-88002308fc92'),(21911,21911,1,'about-us','about',1,'2021-07-15 01:58:54','2021-07-15 01:58:54','2dc20865-f419-49ed-a4f5-93d0c3959920'),(21912,21912,1,'about-us','about',1,'2021-07-15 02:11:52','2021-07-15 02:11:52','b85b4bdb-3622-4362-9e8a-c2498d8a581f'),(21913,21913,1,'about-us','about',1,'2021-07-15 02:12:22','2021-07-15 02:12:22','4439c4d5-c9a3-4aca-99be-409d765421be'),(21915,21915,1,NULL,NULL,1,'2021-07-15 02:28:25','2021-07-15 02:28:25','fc25bc87-b77d-4263-bb76-18122ccbe54e'),(21916,21916,1,NULL,NULL,1,'2021-07-15 02:28:26','2021-07-15 02:28:26','5089be89-8819-42ca-b876-fea91bbf0497'),(21917,21917,1,NULL,NULL,1,'2021-07-15 02:28:26','2021-07-15 02:28:26','0b990d02-5a85-43e8-bf60-aa174f862899'),(21918,21918,1,NULL,NULL,1,'2021-07-15 02:28:27','2021-07-15 02:28:27','4f3ff270-3ebe-447c-ac1f-7d61fdfbf9c8'),(21919,21919,1,NULL,NULL,1,'2021-07-15 02:28:28','2021-07-15 02:28:28','4b5dac66-e68a-480f-a094-e4c3ce838674'),(21920,21920,1,NULL,NULL,1,'2021-07-15 02:28:29','2021-07-15 02:28:29','189414e2-8645-4b13-8fdc-3c57ec344e02'),(21921,21921,1,'about-us','about',1,'2021-07-15 02:29:01','2021-07-15 02:29:01','8d352bc3-251c-48c9-a3d7-82211386ce02'),(21922,21922,1,'contact','contact',1,'2021-07-15 04:55:38','2021-07-15 04:55:38','63097329-9f99-4e62-a46a-83939f465817'),(21936,21936,1,'the-big-reveal','work/the-big-reveal',1,'2021-07-16 01:16:05','2021-07-16 01:16:05','4c9dbacc-2545-4fe0-9fba-7d626ccfb61f'),(21937,21937,1,NULL,NULL,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','7271f864-fb7e-4dc3-aeb8-50477046a6fc'),(21938,21938,1,NULL,NULL,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','09cea7c9-43d2-4d76-bac5-7d4a229e455a'),(21939,21939,1,NULL,NULL,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','23ffc55e-de18-419c-b9f0-93350dd464c8'),(21940,21940,1,NULL,NULL,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','52bafb28-d075-4381-b3cd-c698413059b8'),(21941,21941,1,NULL,NULL,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','26c631db-8a77-4da4-ad72-1f69bf3c11b0'),(21942,21942,1,NULL,NULL,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','c92f4ade-3a85-4982-85a3-68cca20923c0'),(21943,21943,1,NULL,NULL,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','caaaab5f-d3d3-4f4d-832c-499d775e995c'),(21944,21944,1,NULL,NULL,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','2d9fe16f-0b49-4c93-90bb-962d2f0868dc'),(21945,21945,1,NULL,NULL,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','1d2b7c4b-3195-49ed-9e5a-a4fb63dd8157'),(21946,21946,1,NULL,NULL,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','e10b4d6d-9026-49ea-ad60-5edcfde181bd'),(21947,21947,1,NULL,NULL,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','72a62daa-6ce9-40fa-a9d4-b7c1be7425da'),(21948,21948,1,NULL,NULL,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','63618c1b-9f21-4534-b25d-97a665a0cfef'),(21960,21960,1,'dfv-campaign','work/dfv-campaign',1,'2021-07-16 01:17:55','2021-07-16 01:17:55','a9403057-1422-4c02-b430-6d00a4a076e2'),(21961,21961,1,NULL,NULL,1,'2021-07-16 01:17:55','2021-07-16 01:17:55','6b7a918c-90b7-435e-9d4f-64da593be12d'),(21962,21962,1,NULL,NULL,1,'2021-07-16 01:17:55','2021-07-16 01:17:55','88cd05ea-1b15-4fb4-b480-cbec0f7dbc5d'),(21963,21963,1,NULL,NULL,1,'2021-07-16 01:17:55','2021-07-16 01:17:55','14ac2706-cc4f-4c18-a4c5-fe018ca5039e'),(21964,21964,1,NULL,NULL,1,'2021-07-16 01:17:55','2021-07-16 01:17:55','0ee50efa-1b4d-42b0-becd-a1b3bcf5cc6d'),(21965,21965,1,NULL,NULL,1,'2021-07-16 01:17:55','2021-07-16 01:17:55','067fcce1-595b-42f0-96d6-0c102136b857'),(21966,21966,1,NULL,NULL,1,'2021-07-16 01:17:55','2021-07-16 01:17:55','9623c677-06f9-4c8f-a0b2-9f0249321ef5'),(21973,21973,1,'medical-mums','work/medical-mums',1,'2021-07-16 01:36:04','2021-07-16 01:36:04','48e95329-530f-48bf-b097-be9692ae1e73'),(21974,21974,1,NULL,NULL,1,'2021-07-16 01:36:04','2021-07-16 01:36:04','e139c72f-4c61-4375-a07b-875682570577'),(21975,21975,1,NULL,NULL,1,'2021-07-16 01:36:04','2021-07-16 01:36:04','119178fc-743d-4b99-92dc-6864da023015'),(21976,21976,1,NULL,NULL,1,'2021-07-16 01:36:04','2021-07-16 01:36:04','9a7d5e68-900a-49b8-86c2-8eeda7a54fb3'),(21977,21977,1,NULL,NULL,1,'2021-07-16 01:36:04','2021-07-16 01:36:04','8abce0b6-d888-4dbc-86c6-ed0b6d87e91f'),(21978,21978,1,NULL,NULL,1,'2021-07-16 01:36:04','2021-07-16 01:36:04','acbea530-fe26-43d9-8e64-224caa933bcd'),(21979,21979,1,NULL,NULL,1,'2021-07-16 01:38:59','2021-07-16 01:38:59','2ad93a64-b3fb-4238-8aaa-3db43cdc0b26'),(21999,21999,1,NULL,NULL,1,'2021-07-16 01:41:03','2021-07-16 01:41:03','041166a0-da24-430f-b10f-78f6125c444f'),(22006,22006,1,'my-mental-health','work/my-mental-health',1,'2021-07-16 01:41:34','2021-07-16 01:41:34','058dce49-248f-4990-b32b-de0e906000cc'),(22007,22007,1,NULL,NULL,1,'2021-07-16 01:41:34','2021-07-16 01:41:34','73035a7d-eeca-42fb-8cd4-75d24f3dc8e5'),(22008,22008,1,NULL,NULL,1,'2021-07-16 01:41:34','2021-07-16 01:41:34','7f67566c-3297-4e76-9800-0ca39daf3578'),(22009,22009,1,NULL,NULL,1,'2021-07-16 01:41:34','2021-07-16 01:41:34','47fce74c-a073-488e-acdc-9d10b414fce8'),(22010,22010,1,NULL,NULL,1,'2021-07-16 01:44:56','2021-07-16 01:44:56','4660f5b9-0eb4-410a-ac2e-8fb102fb644c'),(22011,22011,1,NULL,NULL,1,'2021-07-16 01:45:03','2021-07-16 01:45:03','2ec606ba-b542-4fe4-ab6e-2dd3e87a5104'),(22012,22012,1,NULL,NULL,1,'2021-07-16 01:45:11','2021-07-16 01:45:11','53ee34ba-acf1-45a7-bc6e-611e08aec193'),(22041,22041,1,'right-time-right-place','work/right-time-right-place',1,'2021-07-16 01:49:52','2021-07-16 01:49:52','a4db066a-519b-47d3-bc42-7a429f8cb812'),(22042,22042,1,NULL,NULL,1,'2021-07-16 01:49:52','2021-07-16 01:49:52','c3ce76cc-db2e-4ef7-b4a1-5bb28a2e9c25'),(22043,22043,1,NULL,NULL,1,'2021-07-16 01:49:52','2021-07-16 01:49:52','53b892b1-db59-4d26-b932-5a2543d77085'),(22044,22044,1,NULL,NULL,1,'2021-07-16 01:49:52','2021-07-16 01:49:52','a93b5300-e6af-466f-924b-13155b43770d'),(22045,22045,1,NULL,NULL,1,'2021-07-16 01:49:52','2021-07-16 01:49:52','5378b537-492f-4203-ab7b-f20e589568f4'),(22051,22051,1,'right-time-right-place','work/right-time-right-place',1,'2021-07-16 01:50:07','2021-07-16 01:50:07','aa406baf-4408-48e6-bf3b-133026894fd1'),(22052,22052,1,NULL,NULL,1,'2021-07-16 01:50:07','2021-07-16 01:50:07','e223c266-cde3-48b3-a8d3-fbe87ec86a1d'),(22053,22053,1,NULL,NULL,1,'2021-07-16 01:50:07','2021-07-16 01:50:07','734f5822-0753-42e7-9f8b-d8a8e62b1fd5'),(22054,22054,1,NULL,NULL,1,'2021-07-16 01:50:07','2021-07-16 01:50:07','5d48aaac-928e-4aca-b612-b96266f95641'),(22055,22055,1,NULL,NULL,1,'2021-07-16 01:50:07','2021-07-16 01:50:07','d14dd392-662c-498e-a13c-ad3b0a949f13'),(22060,22060,1,'my-mental-health','work/my-mental-health',1,'2021-07-16 01:50:19','2021-07-16 01:50:19','b124b8c1-5ea8-4c75-bba8-d377589b303c'),(22061,22061,1,NULL,NULL,1,'2021-07-16 01:50:19','2021-07-16 01:50:19','e9985f08-f48f-463e-bb0d-57a78b6459db'),(22062,22062,1,NULL,NULL,1,'2021-07-16 01:50:19','2021-07-16 01:50:19','98b732d2-09e0-4c69-8520-ad096c915198'),(22063,22063,1,NULL,NULL,1,'2021-07-16 01:50:19','2021-07-16 01:50:19','0c7e9684-6d49-461f-9e78-5317f72e53d0'),(22083,22083,1,NULL,NULL,1,'2021-07-16 01:56:20','2021-07-16 01:56:20','e0eaea94-5702-452e-beab-ac44cb025077'),(22084,22084,1,NULL,NULL,1,'2021-07-16 01:56:21','2021-07-16 01:56:21','5b75f661-f3e0-48d5-92ad-0092c8091c25'),(22085,22085,1,NULL,NULL,1,'2021-07-16 01:56:22','2021-07-16 01:56:22','35531656-c6b9-44f0-8749-a3b130ee2829'),(22086,22086,1,NULL,NULL,1,'2021-07-16 01:56:24','2021-07-16 01:56:24','53a99862-bc29-488f-ad01-99baeb3a8e05'),(22087,22087,1,NULL,NULL,1,'2021-07-16 01:56:25','2021-07-16 01:56:25','901fbbec-d753-46a4-b064-851219a98206'),(22088,22088,1,NULL,NULL,1,'2021-07-16 01:56:27','2021-07-16 01:56:27','e7da4a5f-1606-4173-9cf6-f65eeaad97c8'),(22089,22089,1,NULL,NULL,1,'2021-07-16 01:56:28','2021-07-16 01:56:28','6957dfeb-a5f2-42a4-887e-2d6251147720'),(22090,22090,1,NULL,NULL,1,'2021-07-16 01:56:29','2021-07-16 01:56:29','2749cd85-25ee-4bf3-bece-481567b16e44'),(22091,22091,1,NULL,NULL,1,'2021-07-16 01:56:31','2021-07-16 01:56:31','86f5fe4c-dcb1-4f8d-81ad-13ad4108cd45'),(22092,22092,1,NULL,NULL,1,'2021-07-16 01:56:32','2021-07-16 01:56:32','e3d837aa-ebd6-4b9a-bf28-600e2cc8ff0a'),(22093,22093,1,NULL,NULL,1,'2021-07-16 01:56:35','2021-07-16 01:56:35','09d492d3-a1c6-4d43-88bf-cb7b8dcc3f4b'),(22094,22094,1,NULL,NULL,1,'2021-07-16 01:56:37','2021-07-16 01:56:37','d8b9c1f3-287b-4c01-a88a-8c646918672c'),(22095,22095,1,NULL,NULL,1,'2021-07-16 01:56:38','2021-07-16 01:56:38','13d598c4-d0ac-48f6-881f-e346e0ef84de'),(22096,22096,1,NULL,NULL,1,'2021-07-16 01:56:39','2021-07-16 01:56:39','d9cf88cc-d152-42eb-b422-dcd2367bf577'),(22097,22097,1,NULL,NULL,1,'2021-07-16 01:56:41','2021-07-16 01:56:41','61d8f5b9-27b5-403b-8303-3bfe24cbeccf'),(22099,22099,1,'tritium','work/tritium',1,'2021-07-16 01:57:58','2021-07-16 01:57:58','8b722455-17fa-4a6d-99da-1df5a390ecac'),(22100,22100,1,NULL,NULL,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','8ac9ae66-a24e-4a58-b452-e0f75ce2d330'),(22101,22101,1,NULL,NULL,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','d2cf30a3-07ba-4dfd-8d85-0be09e9fdecb'),(22102,22102,1,NULL,NULL,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','aac5999b-e243-4141-aa9d-84249da2614e'),(22103,22103,1,NULL,NULL,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','72406bbd-56c3-4944-9d48-90b3c3d2ff85'),(22104,22104,1,NULL,NULL,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','bcc22572-0962-45a5-ae3b-b8c01b98e274'),(22105,22105,1,NULL,NULL,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','025c561a-cc2c-4945-805d-c265f70ea76a'),(22106,22106,1,NULL,NULL,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','858d3162-de31-4bf0-bd73-a74b56175e6f'),(22107,22107,1,NULL,NULL,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','107a969f-a9dc-4a56-b37b-eb448780cdb8'),(22108,22108,1,NULL,NULL,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','8139ea48-3b5c-4ebb-a97c-f2cb01d53da1'),(22109,22109,1,NULL,NULL,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','6af1bd45-df18-40c2-9987-abd348d71ba3'),(22110,22110,1,NULL,NULL,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','0c5f7826-2524-42f2-a96f-080d1e734d1f'),(22111,22111,1,NULL,NULL,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','61ec43ba-329d-4029-92ac-87898cbd97d3'),(22112,22112,1,NULL,NULL,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','7822f38c-1dab-4845-b5f6-69e6c28b7cfe'),(22113,22113,1,NULL,NULL,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','a79e8e19-6ca6-4f58-8201-c1b81685b04f'),(22114,22114,1,NULL,NULL,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','cc8296e5-0cc5-4073-84b0-b1ee1b77a023'),(22115,22115,1,NULL,NULL,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','9d6159b9-88de-4e25-b12a-950468dbf9cf'),(22116,22116,1,NULL,NULL,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','28a8ba81-1790-4dd4-9a10-42f34df055d2'),(22117,22117,1,NULL,NULL,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','4735838a-c775-4892-8e2d-6f5acb02a874'),(22139,22139,1,'tritium','work/tritium',1,'2021-07-16 01:58:24','2021-07-16 01:58:24','fac7fc10-b59e-42d3-b8a7-e80851c4558c'),(22140,22140,1,NULL,NULL,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','be6c1260-94ff-4cf9-89e5-8d5787602660'),(22141,22141,1,NULL,NULL,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','d65292c9-1bce-4a54-9821-3793a387d6ec'),(22142,22142,1,NULL,NULL,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','44be2899-1db2-45e5-b743-da75e7834b15'),(22143,22143,1,NULL,NULL,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','ba40ac31-93cd-4ba0-a939-54f75d1eca10'),(22144,22144,1,NULL,NULL,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','035dd20a-7bd7-4d8c-b872-b4edea197ec8'),(22145,22145,1,NULL,NULL,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','55cc9b4b-72c4-485e-bd6b-06acc502d8a7'),(22146,22146,1,NULL,NULL,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','188b5eb2-acdd-4d66-8ad2-3aa8b6046dc1'),(22147,22147,1,NULL,NULL,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','c2aa4f8e-74dd-4c08-a89e-8007023625d0'),(22148,22148,1,NULL,NULL,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','03fac995-2558-4bee-878e-777ce51452ca'),(22149,22149,1,NULL,NULL,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','67dc9d69-65ee-4e94-a067-716e5686fd77'),(22150,22150,1,NULL,NULL,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','bb079240-e808-4a6e-be89-fa3c12a2b42e'),(22151,22151,1,NULL,NULL,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','149f512e-1854-465d-8b80-6b20c79e4cf4'),(22152,22152,1,NULL,NULL,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','09e430b2-0d75-4990-bb7a-8132cbd51e74'),(22153,22153,1,NULL,NULL,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','0a252b23-b207-4ffe-aa36-11b81634e658'),(22154,22154,1,NULL,NULL,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','decc26a2-3772-438e-b228-ead566a2a30f'),(22155,22155,1,NULL,NULL,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','a1946d5f-3f3d-4db6-bb3f-d69a82df1cbd'),(22156,22156,1,NULL,NULL,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','acb313c4-6df3-4843-9e36-96c897aa56f7'),(22157,22157,1,NULL,NULL,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','7ded2fcf-af1a-407c-9e31-a6e510bad317'),(22158,22158,1,NULL,NULL,1,'2021-07-16 02:52:07','2021-07-16 02:52:07','4b7f3245-5131-4f1f-bcc9-bced22a17402'),(22159,22159,1,NULL,NULL,1,'2021-07-16 02:52:12','2021-07-16 02:52:12','05e0ca0e-e9fc-42a8-b23e-57acbe8db6c7'),(22160,22160,1,NULL,NULL,1,'2021-07-16 02:52:18','2021-07-16 02:52:18','0273dfc6-c989-4d45-9017-1e895c23c73c'),(22195,22195,1,'safe-to-see-your-gp','work/safe-to-see-your-gp',1,'2021-07-16 03:07:32','2021-07-16 03:07:32','68ce1cc5-7767-4003-a06a-a918aa2fa7fa'),(22196,22196,1,NULL,NULL,1,'2021-07-16 03:07:32','2021-07-16 03:07:32','49e56f38-e244-45a5-9d4e-560053e33e13'),(22197,22197,1,NULL,NULL,1,'2021-07-16 03:07:32','2021-07-16 03:07:32','52d25ba0-1aee-47cc-ace7-96d8bc8fda15'),(22198,22198,1,NULL,NULL,1,'2021-07-16 03:07:32','2021-07-16 03:07:32','e2701a10-3345-41f6-b275-c2b026efe810'),(22199,22199,1,NULL,NULL,1,'2021-07-16 03:07:33','2021-07-16 03:07:33','70853032-2923-4c10-aafa-91a8c2bc011e'),(22205,22205,1,'safe-to-see-your-gp','work/safe-to-see-your-gp',1,'2021-07-16 03:10:46','2021-07-16 03:10:46','bdae1d85-0873-4d7e-9a12-7b0198b96dff'),(22206,22206,1,NULL,NULL,1,'2021-07-16 03:10:46','2021-07-16 03:10:46','1f1688c1-111e-4dfb-8dc0-d94fcb10f1a3'),(22207,22207,1,NULL,NULL,1,'2021-07-16 03:10:46','2021-07-16 03:10:46','e3326bd4-2776-45c0-92ef-95e1fbe744e2'),(22208,22208,1,NULL,NULL,1,'2021-07-16 03:10:46','2021-07-16 03:10:46','3fd48761-f97a-464c-bf0d-af407fa410f6'),(22209,22209,1,NULL,NULL,1,'2021-07-16 03:10:46','2021-07-16 03:10:46','650697e0-9c05-4e7b-aa13-94bc439c283b'),(22210,22210,1,'rural-aid','work/rural-aid',1,'2021-07-16 03:13:01','2021-07-16 03:13:10','3b26e6f6-63ef-441e-9707-7cd56338a13c'),(22211,22211,1,NULL,NULL,1,'2021-07-16 03:18:45','2021-07-16 03:18:45','b1f01bba-9638-430f-a8b0-fee34dd498c5'),(22266,22266,1,'rural-aid','work/rural-aid',1,'2021-07-16 03:23:11','2021-07-16 03:23:11','c489d683-0808-4802-ab2c-6020e6e6ef9e'),(22267,22267,1,NULL,NULL,1,'2021-07-16 03:23:11','2021-07-16 03:23:11','c1e1350b-2992-4522-8c0c-4d006d8330e6'),(22268,22268,1,NULL,NULL,1,'2021-07-16 03:23:11','2021-07-16 03:23:11','d696932f-7cd1-4ce4-8f57-2a42f7227392'),(22269,22269,1,NULL,NULL,1,'2021-07-16 03:23:11','2021-07-16 03:23:11','11e07e37-ad93-49bc-964f-274efe285f75'),(22270,22270,1,NULL,NULL,1,'2021-07-16 03:23:11','2021-07-16 03:23:11','6fc03340-cad2-4fe7-beff-f97af6637ab3'),(22271,22271,1,NULL,NULL,1,'2021-07-16 03:23:11','2021-07-16 03:23:11','d64700ea-8f3b-4108-a5c4-3150b06edda6'),(22279,22279,1,'rural-aid','work/rural-aid',1,'2021-07-16 03:53:04','2021-07-16 03:53:04','84232116-7f43-4093-8dfe-6996e47160e4'),(22280,22280,1,NULL,NULL,1,'2021-07-16 03:53:04','2021-07-16 03:53:04','4af9ea06-132f-4916-903c-a4b362b98c08'),(22281,22281,1,NULL,NULL,1,'2021-07-16 03:53:04','2021-07-16 03:53:04','bf10d505-f89d-452f-9d29-f0bd0743e3ae'),(22282,22282,1,NULL,NULL,1,'2021-07-16 03:53:04','2021-07-16 03:53:04','9f1501de-29ef-4fe7-8f82-95565f889bec'),(22283,22283,1,NULL,NULL,1,'2021-07-16 03:53:04','2021-07-16 03:53:04','c11221b4-5e48-497e-8b2c-133eb048e983'),(22296,22296,1,'rural-aid','work/rural-aid',1,'2021-07-16 03:55:48','2021-07-16 03:55:48','fe43fced-ada1-4c99-83f6-d17b55102bb7'),(22297,22297,1,NULL,NULL,1,'2021-07-16 03:55:48','2021-07-16 03:55:48','269a8bb5-a01b-4c62-b8a0-e82cb0f6a07b'),(22298,22298,1,NULL,NULL,1,'2021-07-16 03:55:48','2021-07-16 03:55:48','6d4afa0c-bde1-46da-a775-4f84a09980a8'),(22299,22299,1,NULL,NULL,1,'2021-07-16 03:55:48','2021-07-16 03:55:48','b0446f02-7178-476b-a8f4-5b66e333abb6'),(22300,22300,1,NULL,NULL,1,'2021-07-16 03:55:48','2021-07-16 03:55:48','e8ad94d8-1404-4cc0-8857-e8e3419a6362'),(22301,22301,1,NULL,NULL,1,'2021-07-16 03:55:48','2021-07-16 03:55:48','14c4f1d3-78a5-416c-b36e-03c815d17eb1'),(22303,22303,1,NULL,NULL,1,'2021-07-16 03:57:05','2021-07-16 03:57:05','f0f854cf-174f-47ad-ad67-bc8a0b76f02c'),(22311,22311,1,'rural-aid','work/rural-aid',1,'2021-07-16 03:57:20','2021-07-16 03:57:20','b0faa23b-60f6-45c8-972d-215a92fec502'),(22312,22312,1,NULL,NULL,1,'2021-07-16 03:57:20','2021-07-16 03:57:20','428a04a3-0148-49b2-87a0-dfc88749373d'),(22313,22313,1,NULL,NULL,1,'2021-07-16 03:57:20','2021-07-16 03:57:20','fbb6f78a-5045-41b5-b40c-9685bf0925c8'),(22314,22314,1,NULL,NULL,1,'2021-07-16 03:57:20','2021-07-16 03:57:20','8360f955-6c30-404d-bb3b-6cb68490af7c'),(22315,22315,1,NULL,NULL,1,'2021-07-16 03:57:20','2021-07-16 03:57:20','7b56a04c-43dd-4fc3-ad48-5bba055b3f7f'),(22316,22316,1,NULL,NULL,1,'2021-07-16 03:57:20','2021-07-16 03:57:20','b6800ff6-f3c0-4872-b105-5f12a7590ea2'),(22317,22317,1,'rural-aid',NULL,1,'2021-07-16 04:06:19','2021-07-16 04:06:19','e985872e-1251-408d-8d1c-01515fe23263'),(22326,22326,1,'rural-aid','work/rural-aid',1,'2021-07-16 04:08:00','2021-07-16 04:08:00','4eb5e866-e456-41e9-ab7c-3b818356056d'),(22327,22327,1,NULL,NULL,1,'2021-07-16 04:08:00','2021-07-16 04:08:00','5a026acc-887d-4465-82cb-13a12fe5f76d'),(22328,22328,1,NULL,NULL,1,'2021-07-16 04:08:00','2021-07-16 04:08:00','e48f1cfa-ff7f-46cf-a004-2b575d273191'),(22329,22329,1,NULL,NULL,1,'2021-07-16 04:08:00','2021-07-16 04:08:00','51195e7a-f3d5-4a79-b32f-d01d084f6adb'),(22330,22330,1,NULL,NULL,1,'2021-07-16 04:08:00','2021-07-16 04:08:00','541f0fed-3254-4f75-9dba-dd5b2a476677'),(22331,22331,1,NULL,NULL,1,'2021-07-16 04:08:01','2021-07-16 04:08:01','273ac7e4-3ec0-4668-b067-aa8cca70e262'),(22332,22332,1,'rural-aid','work/rural-aid',1,'2021-07-16 04:09:55','2021-07-16 04:09:55','7a3a01c0-0ab2-4569-97c5-399ee5de9d76'),(22333,22333,1,NULL,NULL,1,'2021-07-16 04:09:55','2021-07-16 04:09:55','6a77e521-166a-4059-a3b3-a6e55df05cf8'),(22334,22334,1,NULL,NULL,1,'2021-07-16 04:09:55','2021-07-16 04:09:55','2d724308-50f7-4e36-b4d2-3ba768e14597'),(22335,22335,1,NULL,NULL,1,'2021-07-16 04:09:55','2021-07-16 04:09:55','685790de-5da3-4b29-bfc9-fd610fd9153a'),(22336,22336,1,NULL,NULL,1,'2021-07-16 04:09:55','2021-07-16 04:09:55','3c953a37-5733-4e19-9420-586740988e06'),(22337,22337,1,NULL,NULL,1,'2021-07-16 04:09:55','2021-07-16 04:09:55','97ef9b85-e13d-4042-badd-13e47a860db9'),(22375,22375,1,'rural-aid','work/rural-aid',1,'2021-07-16 04:25:30','2021-07-16 04:25:30','d3b76579-2ce7-43d4-ba2a-426eccabb863'),(22376,22376,1,NULL,NULL,1,'2021-07-16 04:25:30','2021-07-16 04:25:30','88cbb1aa-cf8d-46dc-b751-0a8cc935a058'),(22377,22377,1,NULL,NULL,1,'2021-07-16 04:25:30','2021-07-16 04:25:30','ff1111ba-2f0c-46ee-84c1-3100ea83ac4c'),(22378,22378,1,NULL,NULL,1,'2021-07-16 04:25:30','2021-07-16 04:25:30','cda3318d-04fc-48c8-a406-ed3a4aeaae93'),(22379,22379,1,NULL,NULL,1,'2021-07-16 04:25:30','2021-07-16 04:25:30','42efdb99-95f9-45c2-a777-174658c49135'),(22380,22380,1,NULL,NULL,1,'2021-07-16 04:25:30','2021-07-16 04:25:30','4962a25c-499d-4805-9c85-291eefb46315'),(22381,22381,1,NULL,NULL,1,'2021-07-16 04:25:30','2021-07-16 04:25:30','c42a046f-6958-4503-85ff-076c16920ca8'),(22382,22382,1,NULL,NULL,1,'2021-07-16 04:25:30','2021-07-16 04:25:30','ea84de3e-a3ed-4d78-8192-8f1c98781daf'),(22383,22383,1,NULL,NULL,1,'2021-07-16 04:25:30','2021-07-16 04:25:30','641214af-ef95-4b72-ad65-1e5633d2214b'),(22384,22384,1,NULL,NULL,1,'2021-07-16 04:25:30','2021-07-16 04:25:30','a0444249-f4e6-46ff-9c98-bc719510026d'),(22398,22398,1,'rural-aid','work/rural-aid',1,'2021-07-16 05:01:46','2021-07-16 05:01:46','dde40419-cea1-4c7b-8bfe-97faf6d164af'),(22399,22399,1,NULL,NULL,1,'2021-07-16 05:01:46','2021-07-16 05:01:46','4c2d1199-91f8-4907-a8ac-0c5e8d6e125f'),(22400,22400,1,NULL,NULL,1,'2021-07-16 05:01:46','2021-07-16 05:01:46','d7252238-aa07-454e-ac17-ce4585942d32'),(22401,22401,1,NULL,NULL,1,'2021-07-16 05:01:46','2021-07-16 05:01:46','73ebbade-8c0e-4703-b03f-e529732013ca'),(22402,22402,1,NULL,NULL,1,'2021-07-16 05:01:46','2021-07-16 05:01:46','977c7443-0bc4-4741-88d6-8399420ee8e4'),(22403,22403,1,NULL,NULL,1,'2021-07-16 05:01:46','2021-07-16 05:01:46','6d834ec6-0a32-404f-82f0-6f0fabca0f14'),(22404,22404,1,NULL,NULL,1,'2021-07-16 05:01:46','2021-07-16 05:01:46','a222bbfe-1fad-43e0-ae34-7c514ad4aed4'),(22405,22405,1,NULL,NULL,1,'2021-07-16 05:01:46','2021-07-16 05:01:46','8eccb77e-fc4d-41d2-9f45-2ef1755ef20c'),(22406,22406,1,NULL,NULL,1,'2021-07-16 05:01:46','2021-07-16 05:01:46','e4c8488b-4f1b-419b-ae86-33d7083b2687'),(22407,22407,1,NULL,NULL,1,'2021-07-16 05:01:46','2021-07-16 05:01:46','18da203e-b3c2-47a6-9c02-1ccc51277cfc'),(22420,22420,1,'rural-aid','work/rural-aid',1,'2021-07-16 05:27:15','2021-07-16 05:27:15','5fa3bd11-eb12-4126-bfcf-039fb858e030'),(22421,22421,1,NULL,NULL,1,'2021-07-16 05:27:15','2021-07-16 05:27:15','bc1edd74-3602-460d-ae1c-518aeaf9e63d'),(22422,22422,1,NULL,NULL,1,'2021-07-16 05:27:15','2021-07-16 05:27:15','3e159142-1278-4db9-88e1-9c36d7b9267e'),(22423,22423,1,NULL,NULL,1,'2021-07-16 05:27:15','2021-07-16 05:27:15','204c2b22-3d8e-4151-8397-43937385a8e5'),(22424,22424,1,NULL,NULL,1,'2021-07-16 05:27:15','2021-07-16 05:27:15','88438f2e-b26f-42c3-9fd2-c82908abb8d8'),(22425,22425,1,NULL,NULL,1,'2021-07-16 05:27:15','2021-07-16 05:27:15','da6ada9e-69d7-4adf-84de-c5a867578b3f'),(22426,22426,1,NULL,NULL,1,'2021-07-16 05:27:15','2021-07-16 05:27:15','dc950b7d-a49d-41bf-a573-c22f04d36c7f'),(22427,22427,1,NULL,NULL,1,'2021-07-16 05:27:15','2021-07-16 05:27:15','f3d8a8dc-8c66-4c9d-9cc1-d1df3e339837'),(22428,22428,1,NULL,NULL,1,'2021-07-16 05:27:15','2021-07-16 05:27:15','2462084e-3d10-4975-ab8c-fa98b39593a9'),(22429,22429,1,NULL,NULL,1,'2021-07-16 05:27:15','2021-07-16 05:27:15','0d5dbbe9-ae0a-495d-9d3c-a395e3b986f6'),(22440,22440,1,'rural-aid','work/rural-aid',1,'2021-07-16 05:33:06','2021-07-16 05:33:06','bad3f011-7b42-4917-bf2a-b66ec5378566'),(22442,22442,1,'rural-aid','work/rural-aid',1,'2021-07-16 05:37:58','2021-07-16 05:37:58','3af018b6-550a-45cb-945e-433a3ecf5d34'),(22444,22444,1,'rural-aid','work/rural-aid',1,'2021-07-16 05:43:18','2021-07-16 05:43:18','369dbdbe-5f98-470e-8953-7e6ababc2487'),(22449,22449,1,'my-mental-health','work/my-mental-health',1,'2021-07-16 05:46:03','2021-07-16 05:46:03','af25d0bd-8bca-408c-9b2c-d2c482529ba0'),(22455,22455,1,'right-time-right-place','work/right-time-right-place',1,'2021-07-16 05:47:20','2021-07-16 05:47:20','13990d80-1bc1-4e5a-9f51-9d3020ae0329'),(22461,22461,1,'safe-to-see-your-gp','work/safe-to-see-your-gp',1,'2021-07-16 05:49:15','2021-07-16 05:49:15','5e5544bf-7335-43bf-8cad-84e544d6bd40'),(22481,22481,1,'tritium','work/tritium',1,'2021-07-16 05:51:53','2021-07-16 05:51:53','14ccf146-c0e2-43a2-baa1-5895ab3ca205'),(22482,22482,1,'tritium','work/tritium',1,'2021-07-16 05:52:30','2021-07-16 05:52:30','982779a5-1321-4753-86fd-17d3f69a13e0'),(22489,22489,1,'medical-mums','work/medical-mums',1,'2021-07-16 05:54:32','2021-07-16 05:54:32','277336ed-dbfa-497a-aa4b-c124a1e59317'),(22502,22502,1,'reasons-to-stay','work/reasons-to-stay',1,'2021-07-16 05:59:13','2021-07-16 05:59:13','28d63579-da1a-429e-95e8-76a5672282ef'),(22513,22513,1,'no-3-campaign','work/no-3-campaign',1,'2021-07-16 06:00:44','2021-07-16 06:00:44','b7bda8cd-bf8d-4024-850d-4a467a3c998b'),(22514,22514,1,'no-3-campaign','work/no-3-campaign',1,'2021-07-16 06:01:47','2021-07-16 06:01:47','0338308a-9390-4875-8cab-5f4eb34241a6'),(22522,22522,1,'dfv-campaign','work/dfv-campaign',1,'2021-07-16 06:04:47','2021-07-16 06:04:47','82b80636-4441-4fea-a85d-abc252631433'),(22524,22524,1,'dfv-campaign','work/dfv-campaign',1,'2021-07-16 06:05:41','2021-07-16 06:05:41','9b3d5d54-77f0-46e8-b267-29cea69d18ba'),(22526,22526,1,'dfv-campaign','work/dfv-campaign',1,'2021-07-16 06:07:33','2021-07-16 06:07:33','0e57dff4-560d-4398-be7c-d3919cba5231'),(22528,22528,1,'reasons-to-stay','work/reasons-to-stay',1,'2021-07-16 06:18:20','2021-07-16 06:18:20','d1320cbd-8686-43a2-b809-96f1143a7ec1'),(22530,22530,1,'reasons-to-stay','work/reasons-to-stay',1,'2021-07-16 07:15:35','2021-07-16 07:15:35','da4fe0a7-9e70-4124-a250-9987a984c115'),(22532,22532,1,'rural-aid','work/rural-aid',1,'2021-07-16 07:23:19','2021-07-16 07:23:19','014d1f0c-03cd-4831-9978-e8d70186dd76'),(22534,22534,1,'rural-aid','work/rural-aid',1,'2021-07-16 10:25:14','2021-07-16 10:25:14','35059c3e-ee91-4072-be9a-24992ee69c2d'),(22535,22535,1,'rural-aid','work/rural-aid',1,'2021-07-16 10:26:43','2021-07-16 10:26:43','88d466f8-259b-4c4b-ab56-81630c59d5b9'),(22537,22537,1,'rural-aid','work/rural-aid',1,'2021-07-16 10:54:02','2021-07-16 10:54:02','c4e47111-9b9b-43db-ac5b-6816b4191afd'),(22539,22539,1,'rural-aid','work/rural-aid',1,'2021-07-16 11:00:57','2021-07-16 11:00:57','3d9fe3d5-5c1a-4766-bcca-819f67f2a420'),(22541,22541,1,'rural-aid','work/rural-aid',1,'2021-07-16 11:10:03','2021-07-16 11:10:03','d2ea61f1-92b4-44b8-a7b0-5d77b08bef4d'),(22542,22542,1,'contact','contact',1,'2021-07-20 03:44:03','2021-07-20 03:44:03','5bb167b5-395e-41b3-99b4-087d0518bf34'),(27808,27808,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2021-07-21 00:29:49','2021-07-21 00:29:49','5580c67a-5f64-4fda-adb7-9e588c48fd2c'),(27809,27809,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2021-07-21 00:49:47','2021-07-21 00:49:47','3b2f17a6-36b8-435e-889a-419e9ce84189'),(27810,27810,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2021-07-21 01:09:46','2021-07-21 01:09:46','11147181-4de0-4525-981e-3acd15c064df'),(27811,27811,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2021-07-21 01:28:46','2021-07-21 01:28:46','4a148488-10ea-47c6-92ed-c34abe66b362'),(27812,27812,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2021-07-21 01:48:46','2021-07-21 01:48:46','79428fd9-13e5-4fac-aee3-17800ab1e76a'),(27813,27813,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2021-07-21 02:08:46','2021-07-21 02:08:46','89119731-7c08-4a66-be94-5a506e4094a9'),(27814,27814,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2021-07-21 02:28:46','2021-07-21 02:28:46','cd618ea9-d374-478a-a188-eceef4b2c9ff'),(27815,27815,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2021-07-21 02:34:58','2021-07-21 02:34:58','6fc3dccd-32b0-4c01-9eb0-72e85c995b75'),(27816,27816,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2021-07-21 02:35:28','2021-07-21 02:35:28','7503bd24-559b-48bb-a11c-ebaff35d6dec'),(27817,27817,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2021-07-21 02:35:58','2021-07-21 02:35:58','01f2484c-705c-4e4a-914e-9456170e8f0a'),(27818,27818,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2021-07-21 02:36:28','2021-07-21 02:36:28','b8c12288-464a-45c6-a99b-0efd18ad8b01'),(27819,27819,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2021-07-21 02:36:58','2021-07-21 02:36:58','98ba3236-185f-4d7f-add7-bd74d5f88be5'),(27820,27820,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2021-07-21 02:37:30','2021-07-21 02:37:30','d30ac42c-cacd-4640-babe-cb91512a0319'),(27821,27821,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2021-07-21 02:38:00','2021-07-21 02:38:00','2c4df0b1-a079-41af-98a6-ad5d6f6f9117'),(27822,27822,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2021-07-21 02:38:32','2021-07-21 02:38:32','1068bef2-e7ff-4975-b3f6-3d9955eecfeb'),(27823,27823,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2021-07-21 02:39:02','2021-07-21 02:39:02','b3192ee3-a80f-44e5-a2ba-546ca021fd2a'),(27824,27824,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2021-07-21 02:40:46','2021-07-21 02:40:46','0880caff-0a48-444d-b8ab-2ab34fc8ca48'),(27826,27826,1,NULL,NULL,1,'2021-07-21 23:27:28','2021-07-21 23:27:28','6664c493-d621-444c-a9c2-6a8da6c855df'),(27827,27827,1,'rural-aid','work/rural-aid',1,'2021-07-21 23:27:44','2021-07-21 23:27:44','1896adf6-0147-4e76-9db0-f3c669bf60b9'),(27854,27854,1,'break-away-from-the-same-same-with-custom-illustration','resources/break-away-from-the-same-same-with-custom-illustration',1,'2021-07-22 05:14:54','2021-07-22 05:14:54','3fa45ab9-f6a2-43b2-a6fa-bdfd198b6d57'),(27856,27856,1,'why-you-need-a-six-month-comms-strategy-for-your-website','resources/why-you-need-a-six-month-comms-strategy-for-your-website',1,'2021-07-22 05:16:05','2021-07-22 05:16:05','60224e45-059e-4a05-a430-58767a19f360'),(27857,27857,1,'why-you-need-a-six-month-comms-strategy-for-your-website','resources/why-you-need-a-six-month-comms-strategy-for-your-website',1,'2021-07-22 05:19:49','2021-07-22 05:19:49','7e9547e4-7b7c-4e04-9b11-0c0886b5ae3f'),(27859,27859,1,'pretty-or-powerful-and-can-you-have-it-all','resources/pretty-or-powerful-and-can-you-have-it-all',1,'2021-07-22 05:20:42','2021-07-22 05:20:42','68949496-6872-4ef5-8533-ec038e8d7b70'),(27861,27861,1,'seven-mistakes-people-make-building-websites','resources/seven-mistakes-people-make-building-websites',1,'2021-07-22 05:30:30','2021-07-22 05:30:30','aa4bc749-b1a9-4a76-9221-8073ca004a67'),(27864,27864,1,'the-building-blocks-of-branding','resources/the-building-blocks-of-branding',1,'2021-07-22 05:33:33','2021-07-22 05:33:33','1c0cf379-2b3e-4aea-971c-cb8c81f75cc5'),(27866,27866,1,'how-to-really-consult-your-stakeholders','resources/how-to-really-consult-your-stakeholders',1,'2021-07-22 05:34:28','2021-07-22 05:34:28','739b3836-c520-4f54-9d17-c3c1d622d74a'),(27868,27868,1,'how-to-really-consult-your-stakeholders','resources/how-to-really-consult-your-stakeholders',1,'2021-07-22 05:35:48','2021-07-22 05:35:48','336e3e26-a724-407b-93bc-cb81c60420ba'),(27870,27870,1,'top-20-tips-for-seo','resources/top-20-tips-for-seo',1,'2021-07-22 05:38:16','2021-07-22 05:38:16','f6c45a5a-c591-4ff3-a95e-f8a84a7da566'),(27873,27873,1,'why-you-need-a-six-month-comms-strategy-for-your-website','resources/why-you-need-a-six-month-comms-strategy-for-your-website',1,'2021-07-22 05:52:23','2021-07-22 05:52:23','30176c11-5ca8-433f-bae7-d4fe871915af'),(27874,27874,1,'seven-mistakes-people-make-building-websites','resources/seven-mistakes-people-make-building-websites',1,'2021-07-22 05:55:18','2021-07-22 05:55:18','cdfb6404-76ec-4518-954b-e2abe198aeaa'),(27876,27876,1,'seven-mistakes-people-make-building-websites','resources/seven-mistakes-people-make-building-websites',1,'2021-07-22 05:56:43','2021-07-22 05:56:43','3fb21373-24f7-45ff-b167-38657c8184bc'),(27878,27878,1,'the-building-blocks-of-branding','resources/the-building-blocks-of-branding',1,'2021-07-22 05:57:58','2021-07-22 05:57:58','71a95092-eca9-4338-8e5e-1486f65113ea'),(27880,27880,1,'why-you-need-a-six-month-comms-strategy-for-your-website','resources/why-you-need-a-six-month-comms-strategy-for-your-website',1,'2021-07-22 05:59:20','2021-07-22 05:59:20','fd1f8640-98f9-4ce0-bd3a-8e02329027c6'),(27882,27882,1,'top-20-tips-for-seo','resources/top-20-tips-for-seo',1,'2021-07-22 06:04:40','2021-07-22 06:04:40','e1fe5b09-36fc-44b0-bae3-477e2026d0d7'),(27884,27884,1,'top-20-tips-for-seo','resources/top-20-tips-for-seo',1,'2021-07-22 06:05:23','2021-07-22 06:05:23','842a55fc-f303-4b2a-b9aa-0f2e564e36f5'),(27886,27886,1,'top-20-tips-for-seo','resources/top-20-tips-for-seo',1,'2021-07-22 06:07:24','2021-07-22 06:07:24','24781d60-0ba8-4ede-897d-4ac495529abb'),(27888,27888,1,'how-to-really-consult-your-stakeholders','resources/how-to-really-consult-your-stakeholders',1,'2021-07-22 06:08:55','2021-07-22 06:08:55','c51ee570-48dc-465a-83bc-3f6d3915eb9c'),(27889,27889,1,'how-to-really-consult-your-stakeholders','resources/how-to-really-consult-your-stakeholders',1,'2021-07-22 06:09:31','2021-07-22 06:09:31','89039766-e4fd-403d-9087-f878efb02963'),(27894,27894,1,'top-20-tips-for-seo','resources/top-20-tips-for-seo',1,'2021-07-22 06:21:57','2021-07-22 06:21:57','dc8f3c07-374a-4fc6-8c80-7656f134f78b'),(27896,27896,1,'pretty-or-powerful-and-can-you-have-it-all','resources/pretty-or-powerful-and-can-you-have-it-all',1,'2021-07-22 09:36:18','2021-07-22 09:36:18','761b29c2-dcc5-4417-9a52-d05baf16f57d'),(27898,27898,1,'seven-mistakes-people-make-building-websites','resources/seven-mistakes-people-make-building-websites',1,'2021-07-22 09:37:59','2021-07-22 09:37:59','0dc294c0-25d1-451f-a750-fa105e3ac32b'),(27900,27900,1,'the-building-blocks-of-branding','resources/the-building-blocks-of-branding',1,'2021-07-22 09:39:45','2021-07-22 09:39:45','42bf4d5b-38cd-421a-83fa-4a34098ab6b2'),(27914,27914,1,'break-away-from-the-same-same-with-custom-illustration','resources/break-away-from-the-same-same-with-custom-illustration',1,'2021-07-22 09:43:45','2021-07-22 09:43:45','53150d54-fd89-46b8-bd67-543273be7ef5'),(27926,27926,1,'break-away-from-the-same-same-with-custom-illustration','resources/break-away-from-the-same-same-with-custom-illustration',1,'2021-07-22 23:34:54','2021-07-22 23:34:54','8740452c-c54e-45bc-be6f-fda5bdf82049'),(27928,27928,1,'why-you-need-a-six-month-comms-strategy-for-your-website','resources/why-you-need-a-six-month-comms-strategy-for-your-website',1,'2021-07-22 23:36:59','2021-07-22 23:36:59','99cd0d9f-c329-4000-b1a8-7cb88751f65b'),(27930,27930,1,'why-you-need-a-six-month-comms-strategy-for-your-website','resources/why-you-need-a-six-month-comms-strategy-for-your-website',1,'2021-07-22 23:38:56','2021-07-22 23:38:56','85fe2ea0-229e-4291-be92-dca838fa0fc0'),(27948,27948,1,'break-away-from-the-same-same-with-custom-illustration','resources/break-away-from-the-same-same-with-custom-illustration',1,'2021-07-23 00:37:47','2021-07-23 00:37:47','9f7c6d23-9499-452e-9e36-b7c26c71d5ec'),(27949,27949,1,'why-you-need-a-six-month-comms-strategy-for-your-website','resources/why-you-need-a-six-month-comms-strategy-for-your-website',1,'2021-07-23 00:38:08','2021-07-23 00:38:08','8dc7de8f-ba4e-40d3-af3d-7869fc846799'),(27951,27951,1,'pretty-or-powerful-and-can-you-have-it-all','resources/pretty-or-powerful-and-can-you-have-it-all',1,'2021-07-23 00:40:50','2021-07-23 00:40:50','30dd4378-3a37-4eb2-81f7-b40c9d17af1d'),(27952,27952,1,'pretty-or-powerful-and-can-you-have-it-all','resources/pretty-or-powerful-and-can-you-have-it-all',1,'2021-07-23 00:42:25','2021-07-23 00:42:25','523a7984-246a-44bb-ad86-114123706d71'),(27953,27953,1,'pretty-or-powerful-and-can-you-have-it-all','resources/pretty-or-powerful-and-can-you-have-it-all',1,'2021-07-23 00:42:43','2021-07-23 00:42:43','78361ee0-64b4-4549-9926-7c71168449ce'),(27955,27955,1,'seven-mistakes-people-make-building-websites','resources/seven-mistakes-people-make-building-websites',1,'2021-07-23 00:43:48','2021-07-23 00:43:48','0cd2f3e6-4e6d-4ddb-9475-e9f59114ef2a'),(27957,27957,1,'the-building-blocks-of-branding','resources/the-building-blocks-of-branding',1,'2021-07-23 00:45:38','2021-07-23 00:45:38','63b10b42-ea8b-4452-81e1-1c2de5e92f21'),(27959,27959,1,'how-to-really-consult-your-stakeholders','resources/how-to-really-consult-your-stakeholders',1,'2021-07-23 00:47:31','2021-07-23 00:47:31','51c098fa-1f84-4d41-9746-8634bab23fec'),(27961,27961,1,'top-20-tips-for-seo','resources/top-20-tips-for-seo',1,'2021-07-23 00:49:19','2021-07-23 00:49:19','ba0cc1b9-80ea-4e24-b4a2-893d152ce2f0'),(27963,27963,1,'simplifying-the-complex-fifteen-years-of-marketing-schools','resources/simplifying-the-complex-fifteen-years-of-marketing-schools',1,'2021-07-23 00:58:41','2021-07-23 00:58:41','293a6795-a5f4-42ff-b860-3fe8c8ee48ec'),(27965,27965,1,'what-is-marketing-automation','resources/what-is-marketing-automation',1,'2021-07-23 01:06:04','2021-07-23 01:06:04','f68059e7-0f46-4562-b7f0-7eefa6048d25'),(27967,27967,1,'getting-the-most-from-motion','resources/getting-the-most-from-motion',1,'2021-07-23 01:08:24','2021-07-23 01:08:24','46c0cce1-11f0-4f3d-8077-05fb17d239b2'),(27969,27969,1,'getting-the-most-from-motion','resources/getting-the-most-from-motion',1,'2021-07-23 01:10:23','2021-07-23 01:10:23','7a6bb53e-540c-40ee-a384-ceea6f98191d'),(27971,27971,1,'building-better-brands','resources/building-better-brands',1,'2021-07-23 01:13:29','2021-07-23 01:13:29','2eb1215b-1cd2-43d5-91c0-3bf31590e38a'),(27973,27973,1,'overhauling-your-website','resources/overhauling-your-website',1,'2021-07-23 01:16:03','2021-07-23 01:16:03','34e27ad9-e4a1-4226-a923-3ccfaf3d8d8e'),(27975,27975,1,'outsourcing-creative-services','resources/outsourcing-creative-services',1,'2021-07-23 01:17:51','2021-07-23 01:17:51','537cc73c-c883-49f2-b430-94fe4bda2a08'),(27978,27978,1,'looking-beyond-the-banner','resources/looking-beyond-the-banner',1,'2021-07-23 01:24:26','2021-07-23 01:24:26','b07e9bdc-9d58-4de7-8d30-9df50966034d'),(27980,27980,1,'looking-beyond-the-banner','resources/looking-beyond-the-banner',1,'2021-07-23 01:36:15','2021-07-23 01:36:15','35277643-5294-4079-a8bb-5e4c6944dbb2'),(27982,27982,1,'making-the-most-of-video','resources/making-the-most-of-video',1,'2021-07-23 01:41:34','2021-07-23 01:41:34','7b72f196-063b-4939-8b21-bedeb33ef522'),(27984,27984,1,'measure-your-marketing-with-meaning','resources/measure-your-marketing-with-meaning',1,'2021-07-23 01:43:48','2021-07-23 01:43:48','144b3ff5-507d-4d72-8a16-0e8eb7c8c6a3'),(27986,27986,1,'the-6-steps-of-content-creation','resources/the-6-steps-of-content-creation',1,'2021-07-23 01:47:24','2021-07-23 01:47:24','f43b673f-c970-4582-8266-baec9a4139b6'),(27988,27988,1,'b2b-is-dead','resources/b2b-is-dead',1,'2021-07-23 01:49:44','2021-07-23 01:49:44','eba73714-982f-47cd-8c35-91a68e562080'),(27990,27990,1,'truth-without-fear','resources/truth-without-fear',1,'2021-07-23 01:52:04','2021-07-23 01:52:04','d6a4ad63-8d86-4006-8860-9db00258cfda'),(27992,27992,1,'promises-promises','resources/promises-promises',1,'2021-07-23 02:57:11','2021-07-23 02:57:11','2ecc3a4b-6918-4139-b9a0-c6723cc673a5'),(27994,27994,1,'are-customers-giving-up-on-your-website','resources/are-customers-giving-up-on-your-website',1,'2021-07-23 02:59:41','2021-07-23 02:59:41','0290eb0d-d33a-4667-9a92-a22e6104c191'),(27996,27996,1,'8-important-marketing-questions-for-every-business','resources/8-important-marketing-questions-for-every-business',1,'2021-07-23 03:01:34','2021-07-23 03:01:34','76b713e1-b018-49df-93c3-cfe6d8f7264c'),(27998,27998,1,'what-the-artist-breaks','resources/what-the-artist-breaks',1,'2021-07-23 03:04:26','2021-07-23 03:04:26','b460c2ab-c6ba-47c8-97bb-7574962eeaaa'),(28000,28000,1,'what-the-artist-breaks','resources/what-the-artist-breaks',1,'2021-07-23 03:06:02','2021-07-23 03:06:02','b0d10b51-3f8e-453f-a02c-033173ced96f'),(28002,28002,1,'the-tender-pitch','resources/the-tender-pitch',1,'2021-07-23 03:08:45','2021-07-23 03:08:45','78c134e7-09ee-42d0-9020-1af0ee2b22c1'),(28004,28004,1,'writing-for-readable-web','resources/writing-for-readable-web',1,'2021-07-23 03:12:29','2021-07-23 03:12:29','1cb860b4-f787-42c8-ad9d-b57bf5d83467'),(28006,28006,1,'photography-and-your-brand','resources/photography-and-your-brand',1,'2021-07-23 03:13:18','2021-07-23 03:13:18','ac3ad026-7325-4abb-bff4-24c3fccf8f3f'),(28008,28008,1,'mums-mean-business','resources/mums-mean-business',1,'2021-07-23 03:14:01','2021-07-23 03:14:01','e3d760ed-201f-478c-b620-26eff4f65675'),(28010,28010,1,'photography-and-your-brand','resources/photography-and-your-brand',1,'2021-07-23 03:14:11','2021-07-23 03:14:11','31759efc-8bde-4b03-84f0-4ddd90c6a7da'),(28012,28012,1,'the-problem-of-creativity','resources/the-problem-of-creativity',1,'2021-07-23 03:14:59','2021-07-23 03:14:59','854f0eb1-8076-44d0-93f9-3c1f6f652543'),(28014,28014,1,'learning-to-lead','resources/learning-to-lead',1,'2021-07-23 03:19:27','2021-07-23 03:19:27','2dcd3de7-1117-404e-8735-8d181bbdd3bb'),(28016,28016,1,'the-year-of-content-marketing','resources/the-year-of-content-marketing',1,'2021-07-23 03:20:39','2021-07-23 03:20:39','46611ec8-c297-486c-923f-3a889f5e4539'),(28018,28018,1,'talking-to-the-kids-tips-for-marketing-to-gen-y','resources/talking-to-the-kids-tips-for-marketing-to-gen-y',1,'2021-07-23 03:22:12','2021-07-23 03:22:12','6c8e809c-6750-4500-87b1-aeeac1efa14d'),(28020,28020,1,'righting-writing','resources/righting-writing',1,'2021-07-23 03:26:01','2021-07-23 03:26:01','76615b16-2f6c-47a6-add8-a005f8bfb9c9'),(28022,28022,1,'management-is-more-than-measurement','resources/management-is-more-than-measurement',1,'2021-07-23 03:26:58','2021-07-23 03:26:58','c73e2b6e-095e-47dc-a220-294f27974a52'),(28024,28024,1,'corporatese-to-english','resources/corporatese-to-english',1,'2021-07-23 03:27:34','2021-07-23 03:27:34','ae6d03da-ea68-4372-8f40-059f3e534b06'),(28026,28026,1,'how-to-read-the-media','resources/how-to-read-the-media',1,'2021-07-23 03:30:27','2021-07-23 03:30:27','7cf72bd5-b571-4943-a2e5-d2959bfdf3f6'),(28028,28028,1,'common-sense-isnt-common','resources/common-sense-isnt-common',1,'2021-07-23 03:32:57','2021-07-23 03:32:57','e8a8f9b5-6431-4446-bf01-de2cc44981c0'),(28030,28030,1,'state-your-clients-case','resources/state-your-clients-case',1,'2021-07-23 03:34:21','2021-07-23 03:34:21','8ad02fed-7322-4b5b-8d8f-0097f12d6063'),(28032,28032,1,'be-heard-across-vertical-markets-and-sectors','resources/be-heard-across-vertical-markets-and-sectors',1,'2021-07-23 03:34:56','2021-07-23 03:34:56','17fde6dd-d8a3-4b8e-91b1-0b959ab74684'),(28040,28040,1,'hear-the-equality-stories-from-nwo-women','articles/hear-the-equality-stories-from-nwo-women',1,'2021-07-23 05:37:29','2021-07-23 05:37:50','07e9f3ed-7fa7-4bc8-960f-3ab301e76d02'),(28041,28041,1,NULL,NULL,1,'2021-07-23 05:43:24','2021-07-23 05:43:24','f850a55f-7b3b-4d1e-a4a8-61590876f71d'),(28042,28042,1,'hear-the-equality-stories-from-nwo-women','articles/hear-the-equality-stories-from-nwo-women',1,'2021-07-23 06:18:47','2021-07-23 06:18:47','d57511b2-c077-49ff-9054-c536562bdeaf'),(28043,28043,1,'be-heard-across-vertical-markets-and-sectors','articles/be-heard-across-vertical-markets-and-sectors',1,'2021-07-23 06:19:14','2021-07-23 06:19:14','0719714c-202c-4280-bcb6-7c058d6c834d'),(28044,28044,1,'state-your-clients-case','articles/state-your-clients-case',1,'2021-07-23 06:19:14','2021-07-23 06:19:14','41e3fa92-1b20-401f-89b0-d25d158b350b'),(28045,28045,1,'common-sense-isnt-common','articles/common-sense-isnt-common',1,'2021-07-23 06:19:14','2021-07-23 06:19:14','aeaa3b53-70d4-4215-885c-2e9951c4b191'),(28046,28046,1,'how-to-read-the-media','articles/how-to-read-the-media',1,'2021-07-23 06:19:15','2021-07-23 06:19:15','a0815f1f-4f7b-4276-ae09-4715bfc2c9b7'),(28047,28047,1,'corporatese-to-english','articles/corporatese-to-english',1,'2021-07-23 06:19:15','2021-07-23 06:19:15','f1d26ad6-4003-44e2-b248-ca5966da124e'),(28048,28048,1,'management-is-more-than-measurement','articles/management-is-more-than-measurement',1,'2021-07-23 06:19:15','2021-07-23 06:19:15','dabf71d2-46c1-4b51-b23e-98e0b2970aeb'),(28049,28049,1,'talking-to-the-kids-tips-for-marketing-to-gen-y','articles/talking-to-the-kids-tips-for-marketing-to-gen-y',1,'2021-07-23 06:19:15','2021-07-23 06:19:15','be0ee4de-ec36-4b0b-b5c4-456a4090f77a'),(28050,28050,1,'righting-writing','articles/righting-writing',1,'2021-07-23 06:19:15','2021-07-23 06:19:15','f44f1089-9979-4417-92ff-45bf8517248e'),(28051,28051,1,'the-year-of-content-marketing','articles/the-year-of-content-marketing',1,'2021-07-23 06:19:15','2021-07-23 06:19:15','2c75adf6-dc2c-4005-bb9a-27078a7ab92d'),(28052,28052,1,'learning-to-lead','articles/learning-to-lead',1,'2021-07-23 06:19:16','2021-07-23 06:19:16','6cd9bbea-c42f-4308-80d4-5a48886aca8f'),(28053,28053,1,'the-problem-of-creativity','articles/the-problem-of-creativity',1,'2021-07-23 06:19:16','2021-07-23 06:19:16','f9f59ad7-9cd8-45c6-b97b-2509dea51433'),(28054,28054,1,'mums-mean-business','articles/mums-mean-business',1,'2021-07-23 06:19:16','2021-07-23 06:19:16','f7aacb8a-322d-4645-8991-bf39fafbb39a'),(28055,28055,1,'the-tender-pitch','articles/the-tender-pitch',1,'2021-07-23 06:19:16','2021-07-23 06:19:16','9d5474e6-1949-4ed6-82ee-3adb1c3aa902'),(28056,28056,1,'photography-and-your-brand','articles/photography-and-your-brand',1,'2021-07-23 06:19:16','2021-07-23 06:19:16','0760e078-31da-43ea-b007-7895badee367'),(28057,28057,1,'writing-for-readable-web','articles/writing-for-readable-web',1,'2021-07-23 06:19:16','2021-07-23 06:19:16','3ab25c6b-003b-4ea2-b272-d7eda4cffa74'),(28058,28058,1,'what-the-artist-breaks','articles/what-the-artist-breaks',1,'2021-07-23 06:19:17','2021-07-23 06:19:17','6e032b66-7020-4229-9140-b5a8a8ad7c5d'),(28059,28059,1,'8-important-marketing-questions-for-every-business','articles/8-important-marketing-questions-for-every-business',1,'2021-07-23 06:19:17','2021-07-23 06:19:17','37495f8f-dd27-43c5-b3ea-b19071a6a163'),(28060,28060,1,'promises-promises','articles/promises-promises',1,'2021-07-23 06:19:17','2021-07-23 06:19:17','ad46ebe5-ecff-461e-899d-54fc5b261ae4'),(28061,28061,1,'are-customers-giving-up-on-your-website','articles/are-customers-giving-up-on-your-website',1,'2021-07-23 06:19:17','2021-07-23 06:19:17','b3ae3182-997a-41c8-8728-01eef0871a19'),(28062,28062,1,'truth-without-fear','articles/truth-without-fear',1,'2021-07-23 06:19:17','2021-07-23 06:19:17','c0e0d7c0-c500-4d9e-a7b1-1dfcfd74b60a'),(28063,28063,1,'b2b-is-dead','articles/b2b-is-dead',1,'2021-07-23 06:19:17','2021-07-23 06:19:17','12e36c24-0455-4deb-86ed-0fe11c727bba'),(28064,28064,1,'the-6-steps-of-content-creation','articles/the-6-steps-of-content-creation',1,'2021-07-23 06:19:18','2021-07-23 06:19:18','a3b67b2a-73ab-4e6d-9c85-9ff62ece56f3'),(28065,28065,1,'measure-your-marketing-with-meaning','articles/measure-your-marketing-with-meaning',1,'2021-07-23 06:19:18','2021-07-23 06:19:18','a61114d3-e111-42ba-89b0-f12f92a8ded5'),(28066,28066,1,'making-the-most-of-video','articles/making-the-most-of-video',1,'2021-07-23 06:19:18','2021-07-23 06:19:18','c32895db-4981-4cab-a02a-73cecdf0616e'),(28067,28067,1,'looking-beyond-the-banner','articles/looking-beyond-the-banner',1,'2021-07-23 06:19:18','2021-07-23 06:19:18','680aa88c-1546-4c18-a8b1-e7828043a0ba'),(28068,28068,1,'outsourcing-creative-services','articles/outsourcing-creative-services',1,'2021-07-23 06:19:18','2021-07-23 06:19:18','bf8183ac-5853-466d-a14c-ae827ea9f1f3'),(28069,28069,1,'overhauling-your-website','articles/overhauling-your-website',1,'2021-07-23 06:19:19','2021-07-23 06:19:19','a79a3b18-3ea3-49dc-b6a3-ca6d5d446a39'),(28070,28070,1,'building-better-brands','articles/building-better-brands',1,'2021-07-23 06:19:19','2021-07-23 06:19:19','bb403ee2-2673-4840-9b72-9d7e3c347982'),(28071,28071,1,'getting-the-most-from-motion','articles/getting-the-most-from-motion',1,'2021-07-23 06:19:19','2021-07-23 06:19:19','2c14798b-384d-425c-a017-3944991bdfd7'),(28072,28072,1,'what-is-marketing-automation','articles/what-is-marketing-automation',1,'2021-07-23 06:19:19','2021-07-23 06:19:19','000f6b54-37e8-4910-ae0e-dbdaff0fa652'),(28073,28073,1,'simplifying-the-complex-fifteen-years-of-marketing-schools','articles/simplifying-the-complex-fifteen-years-of-marketing-schools',1,'2021-07-23 06:19:19','2021-07-23 06:19:19','191ccad5-95bd-4ad8-b2fc-a29b3358885c'),(28074,28074,1,'top-20-tips-for-seo','articles/top-20-tips-for-seo',1,'2021-07-23 06:19:20','2021-07-23 06:19:20','c3323497-cf2c-46d8-a9ca-99f3d694c709'),(28075,28075,1,'how-to-really-consult-your-stakeholders','articles/how-to-really-consult-your-stakeholders',1,'2021-07-23 06:19:20','2021-07-23 06:19:20','cb051a9f-ad8c-45a1-bb62-bb6978292576'),(28076,28076,1,'the-building-blocks-of-branding','articles/the-building-blocks-of-branding',1,'2021-07-23 06:19:20','2021-07-23 06:19:20','5b891c1d-5c27-42ca-a09a-c033e196677b'),(28077,28077,1,'seven-mistakes-people-make-building-websites','articles/seven-mistakes-people-make-building-websites',1,'2021-07-23 06:19:20','2021-07-23 06:19:20','46bdedba-e37c-41a4-872a-02b22ac20306'),(28078,28078,1,'pretty-or-powerful-and-can-you-have-it-all','articles/pretty-or-powerful-and-can-you-have-it-all',1,'2021-07-23 06:19:20','2021-07-23 06:19:20','5769cbee-0bb3-4269-be1f-b1a6fb4be729'),(28079,28079,1,'why-you-need-a-six-month-comms-strategy-for-your-website','articles/why-you-need-a-six-month-comms-strategy-for-your-website',1,'2021-07-23 06:19:21','2021-07-23 06:19:21','f1ee776c-2896-4a3e-bdaa-9b0a4fcef671'),(28080,28080,1,'break-away-from-the-same-same-with-custom-illustration','articles/break-away-from-the-same-same-with-custom-illustration',1,'2021-07-23 06:19:21','2021-07-23 06:19:21','66c114dd-0d1c-44ed-8bd5-58fc30d832e1'),(28082,28082,1,'break-away-from-the-same-same-with-custom-illustration','articles/break-away-from-the-same-same-with-custom-illustration',1,'2021-07-23 06:26:23','2021-07-23 06:26:23','95c19e7c-e658-43f7-945d-c00b19e3f32a'),(28084,28084,1,'break-away-from-the-same-same-with-custom-illustration','articles/break-away-from-the-same-same-with-custom-illustration',1,'2021-07-23 06:27:18','2021-07-23 06:27:18','57ade8cd-14dc-4d00-8499-dc0395e31ce8'),(28085,28085,1,'break-away-from-the-same-same-with-custom-illustration','articles/break-away-from-the-same-same-with-custom-illustration',1,'2021-07-23 06:28:16','2021-07-23 06:28:16','2b21e015-6914-4b9a-95e4-386c6d4a690a'),(28087,28087,1,'pretty-or-powerful-and-can-you-have-it-all','articles/pretty-or-powerful-and-can-you-have-it-all',1,'2021-07-23 06:33:59','2021-07-23 06:33:59','3e662917-80e5-4908-b188-6f6bd182ed18'),(28089,28089,1,'how-to-really-consult-your-stakeholders','articles/how-to-really-consult-your-stakeholders',1,'2021-07-23 06:47:17','2021-07-23 06:47:17','c6582c6a-5de7-43e4-ab02-baf5d7b306dd'),(28091,28091,1,'top-20-tips-for-seo','articles/top-20-tips-for-seo',1,'2021-07-23 06:49:43','2021-07-23 06:49:43','f9edae54-560b-4b88-9481-98d777fad9b7'),(28094,28094,1,NULL,NULL,1,'2021-07-23 06:54:39','2021-07-23 06:54:39','52c88792-c2d2-454a-b609-7852391d4c6c'),(28095,28095,1,'the-building-blocks-of-branding','articles/the-building-blocks-of-branding',1,'2021-07-23 06:55:08','2021-07-23 06:55:08','0bbe5f8f-5447-4e98-9c51-82314de4d53e'),(28097,28097,1,NULL,NULL,1,'2021-07-23 06:57:14','2021-07-23 06:57:14','e22ba855-50e4-427b-bb98-dfa7bddb7f8b'),(28098,28098,1,'the-building-blocks-of-branding','articles/the-building-blocks-of-branding',1,'2021-07-23 06:57:34','2021-07-23 06:57:34','1d1f10e9-bd8c-4910-95ce-154eaeb5053d'),(28099,28099,1,'top-20-tips-for-seo','articles/top-20-tips-for-seo',1,'2021-07-23 06:57:53','2021-07-23 06:57:53','fdbf5286-c75a-4804-a841-6970fee9e00a'),(28101,28101,1,NULL,NULL,1,'2021-07-23 06:59:36','2021-07-23 06:59:36','255ddd30-e34b-4524-9475-3d4ecadd5615'),(28102,28102,1,'simplifying-the-complex-fifteen-years-of-marketing-schools','articles/simplifying-the-complex-fifteen-years-of-marketing-schools',1,'2021-07-23 07:26:56','2021-07-23 07:26:56','53497182-b42d-494a-982b-24166d8180dc'),(30410,30410,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2021-07-26 03:59:06','2021-07-26 03:59:06','cdf0bf71-ca8d-40c4-8b9b-094f395a335d'),(30411,30411,1,'hear-the-equality-stories-from-nwo-women','articles/hear-the-equality-stories-from-nwo-women',1,'2021-07-30 01:23:04','2021-07-30 01:23:04','709c2638-6749-41ee-9993-92f5e38ded96'),(30413,30413,1,'pretty-or-powerful-and-can-you-have-it-all','articles/pretty-or-powerful-and-can-you-have-it-all',1,'2021-07-30 01:25:54','2021-07-30 01:25:54','2cc0d9f7-5549-43c7-aaa3-f3330f000c9c'),(30415,30415,1,'the-building-blocks-of-branding','articles/the-building-blocks-of-branding',1,'2021-07-30 01:29:29','2021-07-30 01:29:29','f6033a7c-ace0-412a-94dd-d7e2da36f9aa'),(30417,30417,1,'why-you-need-a-six-month-comms-strategy-for-your-website','articles/why-you-need-a-six-month-comms-strategy-for-your-website',1,'2021-07-30 01:43:13','2021-07-30 01:43:13','11f3582e-d2de-42b9-a985-f9dc4885770b'),(30418,30418,1,'why-you-need-a-six-month-comms-strategy-for-your-website','articles/why-you-need-a-six-month-comms-strategy-for-your-website',1,'2021-07-30 01:43:29','2021-07-30 01:43:29','8977f89d-c2f3-462c-a4e7-f59e420dbd3e'),(30419,30419,1,'top-20-tips-for-seo','articles/top-20-tips-for-seo',1,'2021-07-30 01:44:03','2021-07-30 01:44:03','c20289e3-dbce-45f9-8df6-44ab042ae97a'),(30420,30420,1,'why-you-need-a-six-month-comms-strategy-for-your-website','articles/why-you-need-a-six-month-comms-strategy-for-your-website',1,'2021-07-30 01:44:40','2021-07-30 01:44:40','7a3feb4c-c313-4323-a434-492078fd26c4'),(30422,30422,1,'seven-mistakes-people-make-building-websites','articles/seven-mistakes-people-make-building-websites',1,'2021-07-30 02:03:25','2021-07-30 02:03:25','d2f19d02-6f5d-49cd-b84d-c5de8cb8daea'),(30423,30423,1,'seven-mistakes-people-make-building-websites','articles/seven-mistakes-people-make-building-websites',1,'2021-07-30 02:03:43','2021-07-30 02:03:43','cc57db89-17ee-43c1-8977-f467d5d5b704'),(30425,30425,1,'about-us','about',1,'2021-08-06 00:26:34','2021-08-06 00:26:34','4c393018-e4d7-4ea0-a8ef-65c722630457'),(30427,30427,1,'coomera-anglican-college','work/coomera-anglican-college',1,'2021-08-06 06:46:16','2021-08-06 06:46:40','9fac292b-5548-4da9-bd83-d4f91287b44e'),(30428,30428,1,'coomera-anglican-college',NULL,1,'2021-08-06 06:54:09','2021-08-06 06:54:09','c21b7e07-8882-46e3-966c-ec1bfbf97e84'),(30429,30429,1,'coomera-anglican-college','work/coomera-anglican-college',1,'2021-08-06 07:05:52','2021-08-06 07:05:52','4f401fa2-1c1d-4c75-b507-4e0f87f26237'),(30431,30431,1,'coomera-anglican-college','work/coomera-anglican-college',1,'2021-08-06 07:11:15','2021-08-06 07:11:15','a9c5f4c8-5091-4c39-b33a-c6a1119a0ac7'),(30433,30433,1,NULL,NULL,1,'2021-08-12 00:15:26','2021-08-12 00:15:26','ec2c6170-913d-49ae-8ff4-3a9e28d711d5'),(30434,30434,1,NULL,NULL,1,'2021-08-12 00:56:33','2021-08-12 00:56:33','2ab1908d-7b17-4494-a2b6-cec1e12a8666'),(30436,30436,1,NULL,NULL,1,'2021-08-12 01:35:40','2021-08-12 01:35:40','fdef2f12-2060-4bdc-9607-e13015440c1e'),(30438,30438,1,NULL,NULL,1,'2021-08-12 03:24:12','2021-08-12 03:24:12','83c3c16f-6a7a-47f1-b4a0-e1fd63c7c3bc'),(30441,30441,1,NULL,NULL,1,'2021-08-12 03:40:51','2021-08-12 03:40:51','2379a0d4-ccfd-4fb0-bf1f-751b238875bc'),(30442,30442,1,'coomera-anglican-college','work/coomera-anglican-college',1,'2021-08-12 03:41:27','2021-08-12 03:41:27','ce674c53-ee33-47d6-9dc9-47ec537a50c9'),(30444,30444,1,NULL,NULL,1,'2021-08-12 03:43:00','2021-08-12 03:43:00','924915e8-d232-472e-891d-56d014acac7e'),(30445,30445,1,NULL,NULL,1,'2021-08-12 03:43:35','2021-08-12 03:43:35','ddcd9f37-9c6d-4679-9206-4a27b2be959a'),(30446,30446,1,NULL,NULL,1,'2021-08-12 03:44:02','2021-08-12 03:44:02','870b4de4-ce67-464e-a963-7d84e4593be6'),(30447,30447,1,NULL,NULL,1,'2021-08-12 03:44:22','2021-08-12 03:44:22','3e712f99-ab14-48d9-88f6-085c3d843634'),(30448,30448,1,NULL,NULL,1,'2021-08-12 03:44:49','2021-08-12 03:44:49','e12fdf04-80d6-40bb-a100-90140f3f0f8b'),(30449,30449,1,NULL,NULL,1,'2021-08-12 03:45:20','2021-08-12 03:45:20','d40a3b02-b6d3-46e1-a0d1-1809fd58a022'),(30450,30450,1,'coomera-anglican-college','work/coomera-anglican-college',1,'2021-08-12 04:01:48','2021-08-12 04:01:48','559221cf-177a-4ea3-bbcb-7812fed5c22e'),(30452,30452,1,'coomera-anglican-college','work/coomera-anglican-college',1,'2021-08-12 04:42:21','2021-08-12 04:42:21','a1a5797c-410c-4902-8559-c0315fc6837e'),(30454,30454,1,'pretty-or-powerful-and-can-you-have-it-all','articles/pretty-or-powerful-and-can-you-have-it-all',1,'2021-08-13 04:45:47','2021-08-13 04:45:47','e01c9579-a578-4ef4-b094-253da1b11060'),(30456,30456,1,'pretty-or-powerful-and-can-you-have-it-all','articles/pretty-or-powerful-and-can-you-have-it-all',1,'2021-08-13 04:46:40','2021-08-13 04:46:40','6bebe39c-905a-437e-b5cd-3ac3cc5a94e0'),(30458,30458,1,'how-to-really-consult-your-stakeholders','articles/how-to-really-consult-your-stakeholders',1,'2021-08-13 04:53:52','2021-08-13 04:53:52','5a286603-136d-41ff-93c9-4363c950cd06'),(30460,30460,1,'how-to-really-consult-your-stakeholders','articles/how-to-really-consult-your-stakeholders',1,'2021-08-13 04:54:39','2021-08-13 04:54:39','1b05daab-0b53-467e-8323-194d86d11abc'),(30462,30462,1,'simplifying-the-complex-fifteen-years-of-marketing-schools','articles/simplifying-the-complex-fifteen-years-of-marketing-schools',1,'2021-08-13 04:56:17','2021-08-13 04:56:17','15c47135-2ef8-4cb8-aa40-fc9fc7256254'),(30464,30464,1,'simplifying-the-complex-fifteen-years-of-marketing-schools','articles/simplifying-the-complex-fifteen-years-of-marketing-schools',1,'2021-08-13 04:56:59','2021-08-13 04:56:59','ebed7c82-6197-4d92-836c-0633de2e6f5d'),(30466,30466,1,'simplifying-the-complex-fifteen-years-of-marketing-schools','articles/simplifying-the-complex-fifteen-years-of-marketing-schools',1,'2021-08-13 04:57:53','2021-08-13 04:57:53','3f29d854-574e-4dbf-a4f4-2d1d856b8391'),(30468,30468,1,'seven-mistakes-people-make-building-websites','articles/seven-mistakes-people-make-building-websites',1,'2021-08-13 06:46:55','2021-08-13 06:46:55','14ba7b80-01b7-4f04-aac8-5fe037856b97'),(30470,30470,1,'seven-mistakes-people-make-building-websites','articles/seven-mistakes-people-make-building-websites',1,'2021-08-13 06:47:41','2021-08-13 06:47:41','57699ea1-a470-47f4-b3e6-647f2951453c'),(38101,38101,1,'coomera-anglican-college','work/coomera-anglican-college',1,'2021-08-26 23:19:35','2021-08-26 23:19:35','48d2dd0a-4137-4cc7-b5f6-095ef878c4c4'),(38103,38103,1,'tritium','work/tritium',1,'2021-08-26 23:20:15','2021-08-26 23:20:15','1905d883-1210-4c86-a55d-031312270396'),(38104,38104,1,'rural-aid','work/rural-aid',1,'2021-08-26 23:20:47','2021-08-26 23:20:47','34f24665-0595-4f5b-ab5f-059d0ef3cd3b'),(38106,38106,1,'my-mental-health','work/my-mental-health',1,'2021-08-26 23:21:32','2021-08-26 23:21:32','59899772-9922-40ee-8f73-4021d0408df4'),(38108,38108,1,'right-time-right-place','work/right-time-right-place',1,'2021-08-26 23:22:04','2021-08-26 23:22:04','10615dbb-a7ab-454a-9bb9-873bcc34cc8b'),(38110,38110,1,'safe-to-see-your-gp','work/safe-to-see-your-gp',1,'2021-08-26 23:22:51','2021-08-26 23:22:51','283a4978-2f15-4ac6-8dbc-93ca614e8845'),(38112,38112,1,'tritium','work/tritium',1,'2021-08-26 23:23:27','2021-08-26 23:23:27','56eae428-e913-4e82-a613-2224fa7b48d6'),(38114,38114,1,'medical-mums','work/medical-mums',1,'2021-08-26 23:24:04','2021-08-26 23:24:04','41b9148c-2bf3-4a11-8bd2-f27e224401fa'),(38116,38116,1,'reasons-to-stay','work/reasons-to-stay',1,'2021-08-26 23:24:34','2021-08-26 23:24:34','3cc93ff2-a09c-48da-8f71-545c716c5d3b'),(38118,38118,1,'no-3-campaign','work/no-3-campaign',1,'2021-08-26 23:25:22','2021-08-26 23:25:22','0bfaea9b-cc10-400b-b387-9875b00bb9bc'),(38120,38120,1,'dfv-campaign','work/dfv-campaign',1,'2021-08-26 23:27:01','2021-08-26 23:27:01','5f1c71d8-3817-4134-bdc4-8117139d11f8'),(38121,38121,1,'i-can','work/i-can',1,'2021-08-26 23:30:56','2021-08-26 23:31:04','ad1da47c-cb46-4a91-b011-80f84eec01e1'),(38122,38122,1,NULL,NULL,1,'2021-08-26 23:32:22','2021-08-26 23:32:22','4bdfbdf4-ed72-43af-9752-d4b41229a651'),(38123,38123,1,NULL,NULL,1,'2021-08-26 23:33:04','2021-08-26 23:33:04','38cce388-3a5f-42d6-a639-fb34c3eda361'),(38124,38124,1,'i-can','work/i-can',1,'2021-08-26 23:33:16','2021-08-26 23:33:16','467ecf92-1abe-4ce0-b654-b7fd5c356145'),(38125,38125,1,'citipointe-christian-college',NULL,1,'2021-08-26 23:34:08','2021-08-26 23:34:08','8721a938-368a-4a8f-b343-43416a7f744b'),(38127,38127,1,'i-can','work/i-can',1,'2021-08-26 23:34:11','2021-08-26 23:34:11','866edc49-84ac-4dd7-87af-8774a7cf6f12'),(38129,38129,1,NULL,NULL,1,'2021-08-26 23:48:08','2021-08-26 23:48:08','9a2a193f-c55e-49b6-ae80-bc2ad197759c'),(38130,38130,1,NULL,NULL,1,'2021-08-26 23:48:41','2021-08-26 23:48:41','de600e75-776a-4a2c-8414-39c1c3fb54c2'),(38131,38131,1,NULL,NULL,1,'2021-08-26 23:49:56','2021-08-26 23:49:56','e482a162-b3a7-433c-909d-96d05f23ecec'),(38132,38132,1,'i-can','work/i-can',1,'2021-08-26 23:50:11','2021-08-26 23:50:11','548319ab-fb7a-4991-9c0f-fdc91fc8c023'),(38134,38134,1,NULL,NULL,1,'2021-08-26 23:58:19','2021-08-26 23:58:19','ce295b50-fa5f-4fe5-9d8a-71262ee7de85'),(38135,38135,1,'i-can','work/i-can',1,'2021-08-27 00:05:53','2021-08-27 00:05:53','7816a051-2b53-4394-8d41-b14bdd258d97'),(38149,38149,1,NULL,NULL,1,'2021-08-27 05:31:56','2021-08-27 05:31:56','57b9c491-f40e-4183-b7aa-6fad752db4b1'),(38150,38150,1,NULL,NULL,1,'2021-08-27 05:31:56','2021-08-27 05:31:56','cec36a7b-b426-432c-9382-44a786dba50b'),(38151,38151,1,NULL,NULL,1,'2021-08-27 05:31:56','2021-08-27 05:31:56','cd9d90d3-55bb-4866-aa62-43f9140df6dd'),(38152,38152,1,NULL,NULL,1,'2021-08-27 05:31:56','2021-08-27 05:31:56','655bd753-60dd-4b11-8225-4f4c77969e9b'),(38153,38153,1,NULL,NULL,1,'2021-08-27 05:31:56','2021-08-27 05:31:56','8a25f61a-2520-4ecc-a260-7e2d693d9beb'),(38155,38155,1,'about-us','about',1,'2021-08-27 05:35:28','2021-08-27 05:35:28','10ee15a4-84b5-4806-99fc-a1d5c0d14b1d'),(38157,38157,1,'education','sector-categories/education',1,'2021-09-03 00:13:04','2021-09-03 00:13:05','60ac6368-4c90-45f0-a0b7-b1010680972e'),(38158,38158,1,'professional-services','sector-categories/professional-services',1,'2021-09-03 00:13:46','2021-09-03 00:13:47','ad99fbd9-3496-4f34-b650-e9ddbd350ce8'),(38159,38159,1,'not-for-profit','sector-categories/not-for-profit',1,'2021-09-03 00:13:57','2021-09-03 00:13:58','025a20d3-4a07-493f-a7ce-b35c2bffcc9c'),(38160,38160,1,'health','sector-categories/health',1,'2021-09-03 00:14:07','2021-09-03 00:14:08','cd924dbb-6da9-411e-a234-be2e935e9e04'),(38161,38161,1,'energy-mining-and-technology','sector-categories/energy-mining-and-technology',1,'2021-09-03 00:14:36','2021-09-03 00:14:37','5f4d4f0d-2543-42d5-bbe3-7f2f27bcc034'),(38162,38162,1,'coomera-anglican-college','work/coomera-anglican-college',1,'2021-09-03 00:15:59','2021-09-03 00:15:59','0767ea71-475b-4be3-b42c-455d7ef5b14c'),(38164,38164,1,'rural-aid','work/rural-aid',1,'2021-09-03 00:43:42','2021-09-03 00:43:42','69317b9c-29f6-4418-bd97-ec64c3a8f201'),(38166,38166,1,'my-mental-health','work/my-mental-health',1,'2021-09-03 00:54:26','2021-09-03 00:54:26','97b454ac-6c62-4150-82c5-b8332ac4a5dd'),(38167,38167,1,'dfv-campaign','work/dfv-campaign',1,'2021-09-03 01:21:27','2021-09-03 01:21:27','3e35ba03-2ae7-4e26-941f-054357f9c548'),(38168,38168,1,'no-3-campaign','work/no-3-campaign',1,'2021-09-03 01:21:28','2021-09-03 01:21:28','8545ef84-8297-4997-abc2-edc5c09dd333'),(38169,38169,1,'reasons-to-stay','work/reasons-to-stay',1,'2021-09-03 01:21:28','2021-09-03 01:21:28','9ccf2580-460c-49ea-a8f3-ebf9a260b3d4'),(38170,38170,1,'medical-mums','work/medical-mums',1,'2021-09-03 01:21:29','2021-09-03 01:21:29','d118acd3-3171-49b3-9a08-72f032904424'),(38171,38171,1,'right-time-right-place','work/right-time-right-place',1,'2021-09-03 01:21:29','2021-09-03 01:21:29','a85f93f2-a69f-45f3-af9f-40495b464cc9'),(38172,38172,1,'tritium','work/tritium',1,'2021-09-03 01:21:30','2021-09-03 01:21:30','2b96ba7e-8dcb-419e-955a-ea32ccf1afda'),(38173,38173,1,'safe-to-see-your-gp','work/safe-to-see-your-gp',1,'2021-09-03 01:21:30','2021-09-03 01:21:30','aee63478-2b4b-4e87-b6ab-8fd1f931efc7'),(38174,38174,1,'i-can','work/i-can',1,'2021-09-03 01:21:31','2021-09-03 01:21:31','430a17ae-55b2-4ce2-9c3e-bde2a876c249'),(38176,38176,1,'right-time-right-place','work/right-time-right-place',1,'2021-09-03 01:34:27','2021-09-03 01:34:27','27188742-7f7d-4425-8569-653ee4795194'),(38178,38178,1,'right-time-right-place','work/right-time-right-place',1,'2021-09-03 01:35:46','2021-09-03 01:35:46','e2245188-4fa1-470e-add6-84c1159de6bf'),(38179,38179,1,'right-time-right-place','work/right-time-right-place',1,'2021-09-03 01:35:54','2021-09-03 01:35:54','b80ab3d4-60e2-48c6-bc6e-00df36cc76da'),(38181,38181,1,'safe-to-see-your-gp','work/safe-to-see-your-gp',1,'2021-09-03 01:52:31','2021-09-03 01:52:31','3c444e47-d586-41fb-883f-630175911bac'),(38182,38182,1,'safe-to-see-your-gp','work/safe-to-see-your-gp',1,'2021-09-03 01:52:38','2021-09-03 01:52:38','d69f2c4b-c8ff-44c3-828c-78824f2aa365'),(38184,38184,1,'tritium','work/tritium',1,'2021-09-03 02:00:34','2021-09-03 02:00:34','4f18f1e9-772d-47e9-a4f7-223caa34e9e6'),(38186,38186,1,'tritium','work/tritium',1,'2021-09-03 02:00:54','2021-09-03 02:00:54','cb9ca072-8497-4915-b014-3e08588dfdc9'),(38187,38187,1,'tritium','work/tritium',1,'2021-09-03 02:01:01','2021-09-03 02:01:01','91208cba-968f-41f5-86ac-35d39e4181a0'),(38190,38190,1,'reasons-to-stay','work/reasons-to-stay',1,'2021-09-03 02:08:55','2021-09-03 02:08:55','48ed452a-ac96-4079-a0e9-95e1b881e131'),(38192,38192,1,'reasons-to-stay','work/reasons-to-stay',1,'2021-09-03 03:29:11','2021-09-03 03:29:11','553a76ba-5085-477c-9092-4281343f6755'),(38193,38193,1,'reasons-to-stay','work/reasons-to-stay',1,'2021-09-03 03:29:28','2021-09-03 03:29:28','e0539bfc-1cb8-4744-87b6-99bbecd61489'),(38195,38195,1,'no-3-campaign','work/no-3-campaign',1,'2021-09-03 04:00:15','2021-09-03 04:00:15','fc8188a5-362e-4273-8d14-bda9c50b6891'),(38196,38196,1,'no-3-campaign','work/no-3-campaign',1,'2021-09-03 04:00:26','2021-09-03 04:00:26','f0b3307c-b761-45db-8181-ddee11ae9204'),(39378,39378,1,'dfv-campaign','work/dfv-campaign',1,'2021-09-03 05:07:10','2021-09-03 05:07:10','8ac48531-2dbf-4c99-b874-b253af5978e7'),(39501,39501,1,'dfv-campaign','work/dfv-campaign',1,'2021-09-03 05:07:32','2021-09-03 05:07:32','987f778f-dcb8-4e8a-981b-cc337c9d8445'),(40453,40453,1,'dfv-campaign','work/dfv-campaign',1,'2021-09-03 05:17:17','2021-09-03 05:17:17','a0306826-3742-4696-90a4-ce850ce7f81b'),(40493,40493,1,'i-can','work/i-can',1,'2021-09-03 05:40:34','2021-09-03 05:40:34','f9d26d0e-ccb9-4c48-baa1-45ad9fc487d9'),(40494,40494,1,'i-can','work/i-can',1,'2021-09-03 05:40:44','2021-09-03 05:40:44','4a7f3157-c6b5-4683-b5c7-1ce25f8d709b'),(40496,40496,1,'dfv-campaign','work/dfv-campaign',1,'2021-09-03 05:49:35','2021-09-03 05:49:35','3272d714-5258-42a3-b060-d4e2fc2d4ff2'),(40498,40498,1,'nspt','work/nspt',1,'2021-09-03 05:55:52','2021-09-03 05:55:52','7c74adb7-9866-4c98-9f9a-3086635aefae'),(40500,40500,1,'nspt','work/nspt',1,'2021-09-03 05:58:48','2021-09-03 05:58:48','c38babc6-4392-41f2-bdef-afe3a8547336'),(40501,40501,1,'qmhc','work/qmhc',1,'2021-09-03 06:04:36','2021-09-03 06:04:36','925052ba-c1d1-419c-ad40-5aba756a079a'),(40502,40502,1,'qmhc','work/qmhc',1,'2021-09-03 06:10:03','2021-09-03 06:10:03','05fe86c9-6b04-43f8-bf33-27d4e6c6c049'),(40503,40503,1,'nspt','work/nspt',1,'2021-09-03 06:10:44','2021-09-03 06:10:44','80104b35-0715-430e-933c-9c455081fff2'),(40504,40504,1,'heart-hq','work/heart-hq',1,'2021-09-03 06:26:25','2021-09-03 06:26:32','6fe5ba54-08f3-4b18-9209-b2ffaeb787c5'),(40505,40505,1,'heart-hq','work/heart-hq',1,'2021-09-03 06:36:49','2021-09-03 06:36:49','ce5d0406-ae71-4787-8720-d72adf7e9862'),(40506,40506,1,'west-moreton-anglican-college','work/west-moreton-anglican-college',1,'2021-09-03 06:50:20','2021-09-03 06:51:22','434b4a57-46a7-4fd6-b07b-ac92d7b1264d'),(40507,40507,1,'west-moreton-anglican-college','work/west-moreton-anglican-college',1,'2021-09-03 07:15:30','2021-09-03 07:15:30','d8f9f877-505a-4525-a148-835ac22a8a7c'),(44834,44834,1,'about-us','about',1,'2021-09-08 04:16:32','2021-09-08 04:16:32','721f0e2c-7f94-4e9a-bf45-85fc27db50b7'),(44837,44837,1,'endeavour-foundation','work/endeavour-foundation',1,'2021-09-10 01:03:53','2021-09-10 01:04:00','9d60ac3a-97be-416c-8a04-55f98ef41466'),(44838,44838,1,'endeavour-foundation','work/endeavour-foundation',1,'2021-09-10 01:16:41','2021-09-10 01:16:41','c0767caf-f0eb-49e9-a398-7d7e7bf39f5b'),(44840,44840,1,'nspt','work/nspt',1,'2021-09-10 01:18:35','2021-09-10 01:18:35','f69bd5e7-3af6-4d7e-be6d-7c85b153baec'),(44841,44841,1,'brisbane-north-phn-website','work/brisbane-north-phn-website',1,'2021-09-10 01:18:39','2021-09-10 01:18:48','bedf28a7-dad9-4e60-971b-026db983d861'),(44842,44842,1,'brisbane-north-phn-website','work/brisbane-north-phn-website',1,'2021-09-10 01:21:43','2021-09-10 01:21:43','8a2514d9-f798-4ecf-a033-665937fb77da'),(44843,44843,1,'brisbane-south-phn','work/brisbane-south-phn',1,'2021-09-10 01:24:02','2021-09-10 01:24:09','ed192628-647b-4b6c-9e72-b9b277d3ce0a'),(44844,44844,1,'brisbane-south-phn','work/brisbane-south-phn',1,'2021-09-10 01:28:12','2021-09-10 01:28:12','7447c588-270c-4126-99fa-b59b5c16967a'),(44845,44845,1,'department-of-housing-and-public-works','work/department-of-housing-and-public-works',1,'2021-09-10 01:29:04','2021-09-10 01:29:17','47d0a230-707a-41ae-971b-5c27bbeea783'),(44846,44846,1,'department-of-housing-and-public-works','work/department-of-housing-and-public-works',1,'2021-09-10 01:37:29','2021-09-10 01:37:29','01ae4990-65e8-4e5b-b7f9-6ef01ae025d9'),(44848,44848,1,'coomera-anglican-college','work/coomera-anglican-college',1,'2021-09-10 01:37:37','2021-09-10 01:37:37','3287504c-63ed-4aa0-a962-da18fc9bc881'),(44849,44849,1,'pivotus','work/pivotus',1,'2021-09-10 01:37:38','2021-09-10 01:37:43','36660907-699a-449a-8e39-9693da77ea10'),(44852,44852,1,'safe-to-see-your-gp','work/safe-to-see-your-gp',1,'2021-09-10 01:41:20','2021-09-10 01:41:20','da804399-50a1-4390-a547-0810ba55c8da'),(44854,44854,1,'safe-to-see-your-gp','work/safe-to-see-your-gp',1,'2021-09-10 01:43:09','2021-09-10 01:43:09','4c0d04b4-937c-4403-8877-7624dced1916'),(44856,44856,1,'coomera-anglican-college','work/coomera-anglican-college',1,'2021-09-10 01:43:47','2021-09-10 01:43:47','a1570a98-98fe-4d29-8cd7-3791743d5faf'),(44858,44858,1,'coomera-anglican-college','work/coomera-anglican-college',1,'2021-09-10 01:45:52','2021-09-10 01:45:52','cacd0e1e-8e9a-4ff4-8e81-e673a7d81aa4'),(44859,44859,1,'pivotus','work/pivotus',1,'2021-09-10 01:46:57','2021-09-10 01:46:57','e681ffec-147e-49da-a5b6-7f8aaac10758'),(44861,44861,1,'no-3-campaign','work/no-3-campaign',1,'2021-09-10 01:47:53','2021-09-10 01:47:53','472aee74-53da-4cb4-841a-7ce0ce0ba686'),(44862,44862,1,'department-of-transport-and-main-roads','work/department-of-transport-and-main-roads',1,'2021-09-10 01:47:59','2021-09-10 01:48:11','4a159171-c450-4913-b7a3-c68efa2063af'),(44864,44864,1,NULL,NULL,1,'2021-09-10 01:49:32','2021-09-10 01:49:32','81c8dc06-be4a-4baf-8fa9-d57784256390'),(44866,44866,1,'dfv-campaign','work/dfv-campaign',1,'2021-09-10 01:50:38','2021-09-10 01:50:38','4b1cfb27-4c8d-4dfa-98d3-d0ab957359cb'),(44867,44867,1,NULL,NULL,1,'2021-09-10 01:51:05','2021-09-10 01:51:05','26cf048f-3d84-4e5d-919d-0671a6c64aa3'),(44869,44869,1,'department-of-transport-and-main-roads','work/department-of-transport-and-main-roads',1,'2021-09-10 01:52:46','2021-09-10 01:52:46','f190ddfc-f537-4ecb-adb6-60e0dfd81557'),(44870,44870,1,'dfv-campaign','work/dfv-campaign',1,'2021-09-10 01:53:06','2021-09-10 01:53:06','cb8919f2-12b1-4f70-ad61-3a50ea730bef'),(44872,44872,1,'heart-hq','work/heart-hq',1,'2021-09-10 01:54:33','2021-09-10 01:54:33','35f39e0d-14cd-4ac2-bb0a-683df0ca5abe'),(44873,44873,1,NULL,NULL,1,'2021-09-10 01:54:43','2021-09-10 01:54:43','e82a6ed4-e20e-4ab7-9802-cecb96f13bd0'),(44874,44874,1,NULL,NULL,1,'2021-09-10 01:56:08','2021-09-10 01:56:08','25b174d3-c7b9-4a9d-bad6-57e44591c6ed'),(44877,44877,1,'endeavour-foundation','work/endeavour-foundation',1,'2021-09-10 01:57:45','2021-09-10 01:57:45','11bc38e4-f697-4743-9923-793be9e467e0'),(44878,44878,1,NULL,NULL,1,'2021-09-10 01:57:57','2021-09-10 01:57:57','b38eac2c-a760-4535-9a2e-419769606fa4'),(44879,44879,1,'home','__home__',1,'2021-09-10 01:58:36','2021-09-10 01:58:36','cb4213f9-b469-4367-916b-aaa3014df61b'),(44880,44880,1,'home','__home__',1,'2021-09-10 01:58:36','2021-09-10 01:58:36','9f1b6f2d-9271-4210-9fd7-acf7d9b4ac74'),(44881,44881,1,'home','__home__',1,'2021-09-10 02:00:40','2021-09-10 02:00:40','0d1f9a79-a7c1-4613-a091-7a99f8b919b3'),(44967,44967,1,NULL,NULL,1,'2021-09-10 02:02:41','2021-09-10 02:02:41','5db573d0-53df-4880-9922-a3c9699a9678'),(44969,44969,1,NULL,NULL,1,'2021-09-10 02:02:41','2021-09-10 02:02:41','164a890e-ba08-484a-9db2-500fca5c640a'),(44970,44970,1,NULL,NULL,1,'2021-09-10 02:02:41','2021-09-10 02:02:41','784c6e2d-405a-4ef9-819a-b3ca4010287f'),(44971,44971,1,NULL,NULL,1,'2021-09-10 02:02:41','2021-09-10 02:02:41','07252264-7b82-48ee-a926-7294f81f26cb'),(44972,44972,1,'home','__home__',1,'2021-09-10 02:02:41','2021-09-10 02:02:41','0c7e19c0-608c-4b50-ab96-606fae7a6b23'),(44973,44973,1,NULL,NULL,1,'2021-09-10 02:02:41','2021-09-10 02:02:41','f08cf0b2-3a79-4c45-8331-6def2584c84b'),(44974,44974,1,NULL,NULL,1,'2021-09-10 02:02:41','2021-09-10 02:02:41','6922d057-814e-4671-966c-2e5d68bf1050'),(44975,44975,1,NULL,NULL,1,'2021-09-10 02:02:41','2021-09-10 02:02:41','a98baa2b-31c3-408f-810c-82a7815d683e'),(44976,44976,1,NULL,NULL,1,'2021-09-10 02:02:41','2021-09-10 02:02:41','5dff926b-6a40-49b2-9160-639eb494aa7f'),(44977,44977,1,NULL,NULL,1,'2021-09-10 02:02:41','2021-09-10 02:02:41','bd91b487-d9cd-4b19-8367-fd24093af216'),(44978,44978,1,'the-big-reveal','work/the-big-reveal',1,'2021-09-10 02:05:36','2021-09-10 02:05:36','ba8c0b01-3a3e-4bba-b6df-84f16bac21fd'),(44980,44980,1,'revelian','work/revelian',1,'2021-09-10 02:05:54','2021-09-10 02:05:54','76c931f6-16a1-4a09-a799-df31c3095ac6'),(44981,44981,1,'aseeos','work/aseeos',1,'2021-09-10 02:07:38','2021-09-27 02:36:32','3d773df0-d280-4213-a83e-3d8e204fde01'),(44982,44982,1,'asseos','work/asseos',1,'2021-09-10 02:10:02','2021-09-10 02:10:02','68aa7457-19ff-4d25-aee8-86dcdb844613'),(44983,44983,1,'fopats','work/fopats',1,'2021-09-10 02:10:22','2021-09-10 02:11:42','d2945db2-d2cc-4388-b620-e4ec96155ad4'),(44984,44984,1,'fopats','work/fopats',1,'2021-09-10 02:13:28','2021-09-10 02:13:28','ca862e62-9a16-4e2b-add1-4465ab464553'),(44985,44985,1,'physiotas','work/physiotas',1,'2021-09-10 02:13:46','2021-09-10 02:13:52','05d0d407-3d49-4bb6-938b-ebdb545c7afe'),(44986,44986,1,'physiotas','work/physiotas',1,'2021-09-10 02:15:58','2021-09-10 02:15:58','e2d9d961-d1f2-4ac0-b71c-1f524ca9b4b1'),(44987,44987,1,'the-school-of-distance-education-charters-towers','work/the-school-of-distance-education-charters-towers',1,'2021-09-10 02:18:13','2021-09-10 02:19:54','dfde53c8-a9a9-4308-8b98-1494cf1362d3'),(44989,44989,1,'heart-hq','work/heart-hq',1,'2021-09-10 02:22:58','2021-09-10 02:22:58','ebc87114-8b05-481c-be6a-cfe7d525bcb4'),(44996,44996,1,'home','__home__',1,'2021-09-10 02:23:39','2021-09-10 02:23:39','5a1aaaa7-3a64-4a92-b8df-88763cad1e08'),(44997,44997,1,NULL,NULL,1,'2021-09-10 02:23:39','2021-09-10 02:23:39','4b544e28-b2bf-4e1d-82aa-f3bf46bf6314'),(44998,44998,1,NULL,NULL,1,'2021-09-10 02:23:39','2021-09-10 02:23:39','be617531-29e8-41db-a730-e8dbf2a3fc11'),(44999,44999,1,NULL,NULL,1,'2021-09-10 02:23:39','2021-09-10 02:23:39','7729ac98-5a70-403c-9c9e-870f187af318'),(45000,45000,1,NULL,NULL,1,'2021-09-10 02:23:39','2021-09-10 02:23:39','8535bcfb-ba6a-4449-a991-039bf085d1ed'),(45001,45001,1,NULL,NULL,1,'2021-09-10 02:23:39','2021-09-10 02:23:39','faf5b22f-ac2f-4da3-9d67-3e0342469745'),(45008,45008,1,'home','__home__',1,'2021-09-10 02:25:54','2021-09-10 02:25:54','d3b954f3-ee24-4f00-8e53-88e5503e0cb3'),(45009,45009,1,NULL,NULL,1,'2021-09-10 02:25:54','2021-09-10 02:25:54','3676178a-d585-4b31-95a9-3f3edad58346'),(45010,45010,1,NULL,NULL,1,'2021-09-10 02:25:54','2021-09-10 02:25:54','f37d278c-8269-4d55-bef9-614f97a8897e'),(45011,45011,1,NULL,NULL,1,'2021-09-10 02:25:54','2021-09-10 02:25:54','e25ef11c-65f8-4f1f-8c29-8fb65e6f5685'),(45012,45012,1,NULL,NULL,1,'2021-09-10 02:25:54','2021-09-10 02:25:54','baeb98d9-32a8-48eb-8d21-fdc2a01d6b18'),(45013,45013,1,NULL,NULL,1,'2021-09-10 02:25:54','2021-09-10 02:25:54','ef1e917d-b4d3-49fd-936a-784885a35894'),(45020,45020,1,'home','__home__',1,'2021-09-10 02:26:16','2021-09-10 02:26:16','378f1f9a-6e08-4988-b773-a57eeaa6c25a'),(45021,45021,1,NULL,NULL,1,'2021-09-10 02:26:16','2021-09-10 02:26:16','05c4eba9-476c-4bae-8e20-3a96ca40e8e9'),(45022,45022,1,NULL,NULL,1,'2021-09-10 02:26:16','2021-09-10 02:26:16','ca70cf2b-8f99-4604-92a0-4df8724d5f44'),(45023,45023,1,NULL,NULL,1,'2021-09-10 02:26:16','2021-09-10 02:26:16','aac654a8-395f-4dd8-9e0f-9d067e5bdb45'),(45024,45024,1,NULL,NULL,1,'2021-09-10 02:26:16','2021-09-10 02:26:16','a86f55ce-eb9e-4f6f-94ad-597bb15d2882'),(45025,45025,1,NULL,NULL,1,'2021-09-10 02:26:16','2021-09-10 02:26:16','adab65e4-8d02-46ed-80f8-27080ce698bc'),(45032,45032,1,'home','__home__',1,'2021-09-10 02:28:15','2021-09-10 02:28:15','d5979365-bab8-481a-9044-7602c78351db'),(45033,45033,1,NULL,NULL,1,'2021-09-10 02:28:15','2021-09-10 02:28:15','24840e52-3c84-4cd0-b76e-d039a2e20f57'),(45034,45034,1,NULL,NULL,1,'2021-09-10 02:28:15','2021-09-10 02:28:15','3fbed845-32f7-4146-81b3-d32e034c8663'),(45035,45035,1,NULL,NULL,1,'2021-09-10 02:28:15','2021-09-10 02:28:15','48ec9bc3-1e05-4a60-a21b-5ef7ca5153ef'),(45036,45036,1,NULL,NULL,1,'2021-09-10 02:28:15','2021-09-10 02:28:15','9cbd14f5-b0ae-4870-9f98-3525487cb112'),(45037,45037,1,NULL,NULL,1,'2021-09-10 02:28:15','2021-09-10 02:28:15','e99ab06f-3624-4fde-b47b-6cdbf64214ba'),(45044,45044,1,'home','__home__',1,'2021-09-10 02:28:45','2021-09-10 02:28:45','0ffd8330-d3a2-4383-a9a3-1eba45ce266d'),(45045,45045,1,NULL,NULL,1,'2021-09-10 02:28:45','2021-09-10 02:28:45','b20fc1f2-0717-4aa2-99ab-0106cb6c613e'),(45046,45046,1,NULL,NULL,1,'2021-09-10 02:28:45','2021-09-10 02:28:45','e0acfec7-c7e6-4067-bfab-174020c991a3'),(45047,45047,1,NULL,NULL,1,'2021-09-10 02:28:45','2021-09-10 02:28:45','8f16f3ca-b0ee-493e-9bf7-8c7eb89f3235'),(45048,45048,1,NULL,NULL,1,'2021-09-10 02:28:45','2021-09-10 02:28:45','c8492d0f-007e-4324-9fbb-1c9e78531871'),(45049,45049,1,NULL,NULL,1,'2021-09-10 02:28:45','2021-09-10 02:28:45','a8fe5f20-30a2-4ca4-9bac-817a609f383c'),(45056,45056,1,'home','__home__',1,'2021-09-10 02:30:52','2021-09-10 02:30:52','09925776-959f-431e-8fc2-8a45cea67c6a'),(45057,45057,1,NULL,NULL,1,'2021-09-10 02:30:52','2021-09-10 02:30:52','f824e900-a2f5-4841-ac94-d9211d11eef5'),(45058,45058,1,NULL,NULL,1,'2021-09-10 02:30:52','2021-09-10 02:30:52','814d4a7e-18b8-4808-9bd7-b8e6f85cd248'),(45059,45059,1,NULL,NULL,1,'2021-09-10 02:30:52','2021-09-10 02:30:52','8cb91691-6895-456b-b1d9-dd355e3736f6'),(45060,45060,1,NULL,NULL,1,'2021-09-10 02:30:52','2021-09-10 02:30:52','a3e604e5-79ae-48af-be7d-cf6510d5afd6'),(45061,45061,1,NULL,NULL,1,'2021-09-10 02:30:52','2021-09-10 02:30:52','5ad50a3d-0e6a-405d-8df0-9c88d7841f2e'),(45068,45068,1,'home','__home__',1,'2021-09-10 02:31:08','2021-09-10 02:31:08','820c0e4c-fd77-40e4-86fd-339e493d6899'),(45069,45069,1,NULL,NULL,1,'2021-09-10 02:31:08','2021-09-10 02:31:08','a64f340f-65cb-4653-95a9-2a124835d9d1'),(45070,45070,1,NULL,NULL,1,'2021-09-10 02:31:08','2021-09-10 02:31:08','e7eed3d7-e563-4303-bc5f-bf395ed38eea'),(45071,45071,1,NULL,NULL,1,'2021-09-10 02:31:08','2021-09-10 02:31:08','d19324b5-136b-4109-b9f0-2cdf1ee8ead6'),(45072,45072,1,NULL,NULL,1,'2021-09-10 02:31:08','2021-09-10 02:31:08','e032e984-bbd5-4f9a-a5c6-64fe65990d13'),(45073,45073,1,NULL,NULL,1,'2021-09-10 02:31:08','2021-09-10 02:31:08','17a1edf5-d1e2-4d9c-98a5-c177ff12ab21'),(45080,45080,1,'home','__home__',1,'2021-09-10 02:31:42','2021-09-10 02:31:42','ab16adf3-e2c7-4a93-beed-40b6396f402f'),(45081,45081,1,NULL,NULL,1,'2021-09-10 02:31:42','2021-09-10 02:31:42','0e337e8e-e79e-454b-98ce-904c133f2abc'),(45082,45082,1,NULL,NULL,1,'2021-09-10 02:31:42','2021-09-10 02:31:42','8282827a-2b09-4bf3-869a-9bed7eb18d65'),(45083,45083,1,NULL,NULL,1,'2021-09-10 02:31:42','2021-09-10 02:31:42','1572dbdb-0967-4f61-8499-90bcc8c27aa4'),(45084,45084,1,NULL,NULL,1,'2021-09-10 02:31:42','2021-09-10 02:31:42','0b3e125d-4a93-4c53-a967-71327d173396'),(45085,45085,1,NULL,NULL,1,'2021-09-10 02:31:42','2021-09-10 02:31:42','2872a411-06c7-4102-8920-f446eacc8e6d'),(45092,45092,1,'home','__home__',1,'2021-09-10 02:32:15','2021-09-10 02:32:15','3f45e7cf-1836-4b85-baed-b8e03e535a2d'),(45093,45093,1,NULL,NULL,1,'2021-09-10 02:32:15','2021-09-10 02:32:15','9c7072c8-7b52-4594-83bc-be2ab29607d5'),(45094,45094,1,NULL,NULL,1,'2021-09-10 02:32:15','2021-09-10 02:32:15','2977dc25-6042-48f4-a8dc-f82a9dce0ccc'),(45095,45095,1,NULL,NULL,1,'2021-09-10 02:32:15','2021-09-10 02:32:15','9a910cfb-715b-464d-81e6-bd3bf63e16b6'),(45096,45096,1,NULL,NULL,1,'2021-09-10 02:32:15','2021-09-10 02:32:15','f131a500-86ec-4a95-9ade-9011e9447152'),(45097,45097,1,NULL,NULL,1,'2021-09-10 02:32:15','2021-09-10 02:32:15','1a15f533-0a49-4397-a3ee-7e783799ec04'),(45104,45104,1,'home','__home__',1,'2021-09-10 02:32:28','2021-09-10 02:32:28','57b75593-faa0-4649-8e9d-53d20bf92b9f'),(45105,45105,1,NULL,NULL,1,'2021-09-10 02:32:28','2021-09-10 02:32:28','f4c47b7b-090f-4e61-a9ff-47f299c60844'),(45106,45106,1,NULL,NULL,1,'2021-09-10 02:32:28','2021-09-10 02:32:28','45040644-01c8-4415-8889-6d26182cc8c7'),(45107,45107,1,NULL,NULL,1,'2021-09-10 02:32:28','2021-09-10 02:32:28','84e519c3-2f9b-44dc-a6b2-22b4c07e0c67'),(45108,45108,1,NULL,NULL,1,'2021-09-10 02:32:28','2021-09-10 02:32:28','c6257877-82b1-48a3-adb9-280e5eb29604'),(45109,45109,1,NULL,NULL,1,'2021-09-10 02:32:29','2021-09-10 02:32:29','a238e57f-ac05-47cb-92aa-b1db83a3a737'),(45116,45116,1,'home','__home__',1,'2021-09-10 02:33:18','2021-09-10 02:33:18','f86c304b-d77e-433b-b593-0cf83d65f6fd'),(45117,45117,1,NULL,NULL,1,'2021-09-10 02:33:18','2021-09-10 02:33:18','d714d770-4a0f-40fb-ae3f-e00eb0f81824'),(45118,45118,1,NULL,NULL,1,'2021-09-10 02:33:18','2021-09-10 02:33:18','8c3f7218-aa68-4a77-8af5-d129b0117c5c'),(45119,45119,1,NULL,NULL,1,'2021-09-10 02:33:18','2021-09-10 02:33:18','4fa82ade-a322-4ccb-8a9c-de864fb48c44'),(45120,45120,1,NULL,NULL,1,'2021-09-10 02:33:18','2021-09-10 02:33:18','5e125709-a206-43da-bd0d-aefab7b40ace'),(45121,45121,1,NULL,NULL,1,'2021-09-10 02:33:18','2021-09-10 02:33:18','d5959fd6-5db9-4d40-a57b-1ff2ab7bb5b7'),(45128,45128,1,'home','__home__',1,'2021-09-10 02:34:41','2021-09-10 02:34:41','54402e9d-037d-4b55-87d2-6b5b59a29f31'),(45129,45129,1,NULL,NULL,1,'2021-09-10 02:34:41','2021-09-10 02:34:41','eae0a1ae-49b8-469c-b835-67dc3b983a68'),(45130,45130,1,NULL,NULL,1,'2021-09-10 02:34:41','2021-09-10 02:34:41','9ee0f394-8db6-465f-a83a-d28e63082352'),(45131,45131,1,NULL,NULL,1,'2021-09-10 02:34:41','2021-09-10 02:34:41','987c530e-66d6-4cee-9421-0f020fdbf884'),(45132,45132,1,NULL,NULL,1,'2021-09-10 02:34:41','2021-09-10 02:34:41','8c888c82-b5a2-49f2-b64d-d88b36a5cd7b'),(45133,45133,1,NULL,NULL,1,'2021-09-10 02:34:41','2021-09-10 02:34:41','6adaaaf3-8ba9-4b8b-aa15-916a97e04342'),(45140,45140,1,'home','__home__',1,'2021-09-10 02:35:45','2021-09-10 02:35:45','8b3f761e-9e2a-4ad4-a772-379d931c358e'),(45141,45141,1,NULL,NULL,1,'2021-09-10 02:35:45','2021-09-10 02:35:45','58e06e87-c36a-4f97-a25b-507809cccf0b'),(45142,45142,1,NULL,NULL,1,'2021-09-10 02:35:45','2021-09-10 02:35:45','570055d5-cf5f-478d-9f27-8566780bb76f'),(45143,45143,1,NULL,NULL,1,'2021-09-10 02:35:45','2021-09-10 02:35:45','9d7ad021-1079-44f5-9600-cae575b09967'),(45144,45144,1,NULL,NULL,1,'2021-09-10 02:35:45','2021-09-10 02:35:45','fea6123f-19d0-402f-b444-7363cd2dfbb6'),(45145,45145,1,NULL,NULL,1,'2021-09-10 02:35:45','2021-09-10 02:35:45','92d3c2de-df4e-4986-b446-240b3fd3710a'),(45152,45152,1,'home','__home__',1,'2021-09-10 02:36:19','2021-09-10 02:36:19','2e85f2e9-deb2-4e08-b272-19ffa7dc7753'),(45153,45153,1,NULL,NULL,1,'2021-09-10 02:36:19','2021-09-10 02:36:19','94ac8ef8-0b85-4405-aa7b-955aef4d812e'),(45154,45154,1,NULL,NULL,1,'2021-09-10 02:36:19','2021-09-10 02:36:19','23e37b81-9f23-4b75-9d13-7f50295942e6'),(45155,45155,1,NULL,NULL,1,'2021-09-10 02:36:19','2021-09-10 02:36:19','30cd43fc-3ad7-4a8e-9799-b6398cae2fad'),(45156,45156,1,NULL,NULL,1,'2021-09-10 02:36:19','2021-09-10 02:36:19','1c292c17-511f-4f00-8ffb-5f8d24452fca'),(45157,45157,1,NULL,NULL,1,'2021-09-10 02:36:19','2021-09-10 02:36:19','016ab2d8-1f02-41f3-a30a-f2eb57e1b967'),(45164,45164,1,'home','__home__',1,'2021-09-10 02:36:39','2021-09-10 02:36:39','411dd725-ec35-4d43-b655-85e609164011'),(45165,45165,1,NULL,NULL,1,'2021-09-10 02:36:39','2021-09-10 02:36:39','41f49117-d7c0-4d03-ad4d-d9cb2751908f'),(45166,45166,1,NULL,NULL,1,'2021-09-10 02:36:39','2021-09-10 02:36:39','0c3718ad-8ef1-41b4-aae2-89020736fc93'),(45167,45167,1,NULL,NULL,1,'2021-09-10 02:36:39','2021-09-10 02:36:39','5e5d6bdc-075d-43bb-bf24-3e8cee7d8c97'),(45168,45168,1,NULL,NULL,1,'2021-09-10 02:36:39','2021-09-10 02:36:39','48ac39b5-e56d-4d15-9515-8f8bd491d69c'),(45169,45169,1,NULL,NULL,1,'2021-09-10 02:36:39','2021-09-10 02:36:39','cfbcf99f-2849-43e5-8bcc-cb73343962d5'),(45176,45176,1,'home','__home__',1,'2021-09-10 03:08:20','2021-09-10 03:08:20','0603312a-72fb-4e82-ac50-53499a8ec518'),(45177,45177,1,NULL,NULL,1,'2021-09-10 03:08:20','2021-09-10 03:08:20','76142b47-b313-4e7a-aff8-ba2543e06214'),(45178,45178,1,NULL,NULL,1,'2021-09-10 03:08:21','2021-09-10 03:08:21','59ca93b0-43a9-4b06-a301-c55b100db213'),(45179,45179,1,NULL,NULL,1,'2021-09-10 03:08:21','2021-09-10 03:08:21','d5c2243f-f2bf-4b05-90ab-235d548b92a1'),(45180,45180,1,NULL,NULL,1,'2021-09-10 03:08:21','2021-09-10 03:08:21','65ff1c6a-d7a6-4ace-8075-ff25f33d4c71'),(45181,45181,1,NULL,NULL,1,'2021-09-10 03:08:21','2021-09-10 03:08:21','b0eeedb4-3eba-485a-ba09-039f02ae34ef'),(45188,45188,1,'home','__home__',1,'2021-09-10 03:10:52','2021-09-10 03:10:52','2bc121b1-a226-47b4-9751-50d819df6cd4'),(45189,45189,1,NULL,NULL,1,'2021-09-10 03:10:52','2021-09-10 03:10:52','69b1b356-78c7-4be7-b642-2b0e2498a1a4'),(45190,45190,1,NULL,NULL,1,'2021-09-10 03:10:53','2021-09-10 03:10:53','98481a7e-e92b-4610-8d23-30f1b2829e84'),(45191,45191,1,NULL,NULL,1,'2021-09-10 03:10:53','2021-09-10 03:10:53','d714f6a6-0b21-4ce9-bed5-6cc6a1c6bf45'),(45192,45192,1,NULL,NULL,1,'2021-09-10 03:10:53','2021-09-10 03:10:53','2a01da35-3625-47ac-8922-b1d9fc14eca6'),(45193,45193,1,NULL,NULL,1,'2021-09-10 03:10:53','2021-09-10 03:10:53','74d6cc92-0a41-4072-8800-3c48aa790627'),(45200,45200,1,'home','__home__',1,'2021-09-10 03:11:43','2021-09-10 03:11:43','cfdaff0c-2dde-40bf-a869-caecc58ef103'),(45201,45201,1,NULL,NULL,1,'2021-09-10 03:11:43','2021-09-10 03:11:43','307a29ba-f1cf-49be-a591-6506b8252306'),(45202,45202,1,NULL,NULL,1,'2021-09-10 03:11:43','2021-09-10 03:11:43','70d40744-3f15-4199-acfc-7c9a7b83521e'),(45203,45203,1,NULL,NULL,1,'2021-09-10 03:11:43','2021-09-10 03:11:43','317827e2-8b93-448c-9c6b-e1e486067823'),(45204,45204,1,NULL,NULL,1,'2021-09-10 03:11:43','2021-09-10 03:11:43','eaecfee9-51a9-40a1-9a47-a8380cfacbd6'),(45205,45205,1,NULL,NULL,1,'2021-09-10 03:12:08','2021-09-10 03:12:08','a513949e-cb24-48e7-8dfe-fb0b41c65a37'),(45207,45207,1,'i-can','work/i-can',1,'2021-09-10 03:14:48','2021-09-10 03:14:48','64aade8b-972d-4a3c-8274-5a90e8bd8e94'),(45209,45209,1,NULL,NULL,1,'2021-09-10 03:19:13','2021-09-10 03:19:13','a6ffd877-7afe-4a74-9a37-f573fd7586d3'),(45210,45210,1,NULL,NULL,1,'2021-09-10 03:19:25','2021-09-10 03:19:25','0ae7bde7-9af1-4af0-8e80-4e0a080d6e19'),(45211,45211,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2021-09-10 03:57:09','2021-09-10 03:57:09','19d37436-50e1-4c92-adae-8bfb939366d9'),(45212,45212,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2021-09-10 03:57:31','2021-09-10 03:57:31','978c4f55-e9b9-4ad1-b9cb-81e45f7b34ce'),(45213,45213,1,'the-school-of-distance-education-charters-towers','work/the-school-of-distance-education-charters-towers',1,'2021-09-10 05:09:45','2021-09-10 05:09:45','62b782f3-5a0f-4eaf-b07e-1b4cd2d6cd9a'),(45214,45214,1,'pursuit-minerals','work/pursuit-minerals',1,'2021-09-10 05:19:18','2021-09-10 05:19:27','612d8b77-a99d-4ec9-ad3c-3844c1301491'),(45215,45215,1,'pursuit-minerals','work/pursuit-minerals',1,'2021-09-10 05:27:40','2021-09-10 05:27:40','575ebbc5-a393-4e63-832c-d2b14d1c1f79'),(45216,45216,1,'department-of-recreation-sport-and-arts','work/department-of-recreation-sport-and-arts',1,'2021-09-10 05:34:09','2021-09-10 05:35:39','46117932-7053-4fa9-852a-5d1faf3c8312'),(45217,45217,1,'department-of-recreation-sport-and-arts','work/department-of-recreation-sport-and-arts',1,'2021-09-10 05:46:16','2021-09-10 05:46:16','bf5efd46-0167-4cad-b4ea-df8ef59934a8'),(45218,45218,1,'department-of-housing-and-public-works-2','work/department-of-housing-and-public-works-2',1,'2021-09-10 05:50:12','2021-09-10 05:50:24','015fddaf-3f57-4ef4-bacd-b0f26786be0b'),(45219,45219,1,'department-of-housing-and-public-works-2','work/department-of-housing-and-public-works-2',1,'2021-09-10 06:01:58','2021-09-10 06:01:58','1c070256-1088-43e0-a9da-3ef3204fdddd'),(45220,45220,1,'queensland-state-archives','work/queensland-state-archives',1,'2021-09-10 06:02:22','2021-09-10 06:02:31','566ce1e4-bde8-4338-a54d-548c8855a224'),(45221,45221,1,'queensland-state-archives','work/queensland-state-archives',1,'2021-09-10 06:04:48','2021-09-10 06:04:48','aa16f4f4-6983-4533-871d-6459caa01d06'),(45222,45222,1,'family-and-child-connect','work/family-and-child-connect',1,'2021-09-10 06:06:32','2021-09-10 06:07:17','37346377-5a29-48a1-a2dc-8b101ee9b72d'),(45223,45223,1,NULL,NULL,1,'2021-09-10 06:08:06','2021-09-10 06:08:06','9628f471-1580-49d6-acbd-9a55ca4e4879'),(45224,45224,1,'bloom-asia','brandaudit/company/bloom-asia',1,'2021-09-10 06:08:44','2021-09-10 06:08:45','96fd63d9-e705-4358-952e-06e4fa844396'),(45225,45225,1,NULL,NULL,1,'2021-09-10 06:08:52','2021-09-10 06:08:52','067523fa-506e-4724-ad60-2fb1f4b0debd'),(45226,45226,1,NULL,NULL,1,'2021-09-10 06:09:41','2021-09-10 06:09:41','21ab7c5d-541a-4597-b6fb-d5faab096364'),(45227,45227,1,'family-and-child-connect','work/family-and-child-connect',1,'2021-09-10 06:13:14','2021-09-10 06:13:14','de21de98-451a-4ec3-9943-75975e0e2553'),(45229,45229,1,'medical-mums','work/medical-mums',1,'2021-09-10 07:00:56','2021-09-10 07:00:56','4c338aad-ae68-4fd5-b07d-0fc628110378'),(45230,45230,1,'medical-mums','work/medical-mums',1,'2021-09-10 07:01:05','2021-09-10 07:01:05','e4cf19f4-dacc-4599-93a6-888434a34270'),(45232,45232,1,'heart-hq','work/heart-hq',1,'2021-09-10 07:10:55','2021-09-10 07:10:55','f9079523-2581-4b2f-859d-d6c54f17dbe4'),(45234,45234,1,'rural-aid','work/rural-aid',1,'2021-09-10 07:11:44','2021-09-10 07:11:44','0bd0981f-0120-4297-a14f-934f7ff852a3'),(45249,45249,1,NULL,NULL,1,'2021-09-10 07:17:02','2021-09-10 07:17:02','d9de1626-4d57-4e5f-8f4d-bb253486bcb9'),(45250,45250,1,'home','__home__',1,'2021-09-10 07:17:03','2021-09-10 07:17:03','cac0432d-e235-4857-9246-84c6b1b6dd5f'),(45251,45251,1,NULL,NULL,1,'2021-09-10 07:17:03','2021-09-10 07:17:03','21f89bed-8052-4981-9d68-e51c8ff237b7'),(45252,45252,1,NULL,NULL,1,'2021-09-10 07:17:03','2021-09-10 07:17:03','1ac4afd3-2848-43e8-976a-03df5ec40b1c'),(45253,45253,1,NULL,NULL,1,'2021-09-10 07:17:03','2021-09-10 07:17:03','392442bb-8be1-4651-a2c6-dcc9c72406fa'),(45254,45254,1,NULL,NULL,1,'2021-09-10 07:17:03','2021-09-10 07:17:03','f8a3badc-d91a-472c-b282-4a7fad4bf5aa'),(45255,45255,1,NULL,NULL,1,'2021-09-10 07:17:03','2021-09-10 07:17:03','0b49c33d-84c1-4c54-8c5d-f7422341b357'),(45262,45262,1,'home','__home__',1,'2021-09-10 07:17:17','2021-09-10 07:17:17','bf92f186-3d1e-48bf-9479-5dff8dde1a27'),(45263,45263,1,NULL,NULL,1,'2021-09-10 07:17:17','2021-09-10 07:17:17','eb02f8c4-1210-476f-840c-8259b9481b62'),(45264,45264,1,NULL,NULL,1,'2021-09-10 07:17:17','2021-09-10 07:17:17','3a8204f7-c07b-4f7b-aa6f-f6a25e74113b'),(45265,45265,1,NULL,NULL,1,'2021-09-10 07:17:17','2021-09-10 07:17:17','46c8cfb8-89cd-40ab-861b-db4449c2062e'),(45266,45266,1,NULL,NULL,1,'2021-09-10 07:17:17','2021-09-10 07:17:17','9960e1ae-a832-4baa-8515-acdaa3e273a6'),(45267,45267,1,NULL,NULL,1,'2021-09-10 07:17:17','2021-09-10 07:17:17','d1cc32ee-b37a-4bd2-9afb-fa7873f7e407'),(45274,45274,1,'home','__home__',1,'2021-09-10 07:18:35','2021-09-10 07:18:35','ea68924e-904c-485b-a74a-c8bd37300a7b'),(45275,45275,1,NULL,NULL,1,'2021-09-10 07:18:35','2021-09-10 07:18:35','55458565-21a5-4d63-87d4-c4ee842357f3'),(45276,45276,1,NULL,NULL,1,'2021-09-10 07:18:35','2021-09-10 07:18:35','93282cc5-2ef2-4763-ad81-9932e9eaa06f'),(45277,45277,1,NULL,NULL,1,'2021-09-10 07:18:35','2021-09-10 07:18:35','f6ca71cc-7f88-4b2a-b0d3-a76e22c54f30'),(45278,45278,1,NULL,NULL,1,'2021-09-10 07:18:35','2021-09-10 07:18:35','2a86b291-1a3e-4d0f-b975-4e7de413a4cd'),(45279,45279,1,NULL,NULL,1,'2021-09-10 07:18:35','2021-09-10 07:18:35','072e2417-4fa9-418b-ba32-94fb36ed46bd'),(45286,45286,1,'home','__home__',1,'2021-09-10 07:18:53','2021-09-10 07:18:53','3dc68354-5636-40a0-a0c8-00d2b3b04174'),(45287,45287,1,NULL,NULL,1,'2021-09-10 07:18:53','2021-09-10 07:18:53','120394a6-52bc-46ef-acfb-4c289b241cbb'),(45288,45288,1,NULL,NULL,1,'2021-09-10 07:18:53','2021-09-10 07:18:53','c2d43a4c-84de-46f1-8102-33ceb30f0147'),(45289,45289,1,NULL,NULL,1,'2021-09-10 07:18:53','2021-09-10 07:18:53','f28f1a3c-7a73-4f2e-b6f1-a112d62164e8'),(45290,45290,1,NULL,NULL,1,'2021-09-10 07:18:53','2021-09-10 07:18:53','f4641f16-93fe-464d-b01c-07a6731c2553'),(45291,45291,1,NULL,NULL,1,'2021-09-10 07:18:53','2021-09-10 07:18:53','441eb637-fdda-4e6c-ac40-57ded99c1037'),(45293,45293,1,'about-us','about',1,'2021-09-10 07:19:20','2021-09-10 07:19:20','bf83e50e-1bec-44fb-b631-f1c669f7d31b'),(45295,45295,1,'about-us','about',1,'2021-09-10 07:20:39','2021-09-10 07:20:39','040d848b-0808-4a51-833b-327160548c0b'),(45297,45297,1,'about-us','about',1,'2021-09-10 07:22:30','2021-09-10 07:22:30','a1aa91a1-0f57-404a-b9e7-1261166dcd44'),(45298,45298,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2021-09-13 05:02:27','2021-09-13 05:02:27','2db4ce9c-118f-45e8-8c5d-64f160b0f8ca'),(45309,45309,1,'home','__home__',1,'2021-09-13 22:24:13','2021-09-13 22:24:13','053c420a-a353-4dc1-972d-dfa5fce62f78'),(45310,45310,1,NULL,NULL,1,'2021-09-13 22:24:13','2021-09-13 22:24:13','8aad60dd-5a95-472d-950b-6d2cecb3bd58'),(45311,45311,1,NULL,NULL,1,'2021-09-13 22:24:13','2021-09-13 22:24:13','5002aacd-5c11-4fe0-8b67-a645fd09ebea'),(45312,45312,1,NULL,NULL,1,'2021-09-13 22:24:13','2021-09-13 22:24:13','52b824eb-4573-4ffb-833d-b5fd8b64809e'),(45313,45313,1,NULL,NULL,1,'2021-09-13 22:24:13','2021-09-13 22:24:13','09ffaaee-804e-4a1c-9197-aab418f4e36f'),(45314,45314,1,NULL,NULL,1,'2021-09-13 22:24:13','2021-09-13 22:24:13','a7c6da02-6fb1-46a0-af1e-1ca3941dfc10'),(45316,45316,1,NULL,NULL,1,'2021-09-14 01:19:42','2021-09-14 01:19:42','3e720126-cb5b-48ce-a61d-7672b5b8da3b'),(45317,45317,1,NULL,NULL,1,'2021-09-14 01:20:25','2021-09-14 01:20:25','3c63acf5-80f6-4bd1-bb64-2e95f8e5c6be'),(45318,45318,1,NULL,NULL,1,'2021-09-14 01:21:11','2021-09-14 01:21:11','cf3be153-7393-4ac5-8e86-053d635eb13a'),(45319,45319,1,NULL,NULL,1,'2021-09-14 01:22:01','2021-09-14 01:22:01','f7dbce9d-d277-426a-950a-3257a31ab75d'),(45320,45320,1,NULL,NULL,1,'2021-09-14 01:22:14','2021-09-14 01:22:14','c7a8dbfd-2a95-40bf-adff-91d3cc14874a'),(45321,45321,1,NULL,NULL,1,'2021-09-14 01:22:27','2021-09-14 01:22:27','9f65ce90-1c74-44ae-af8c-bab14caf39e3'),(45322,45322,1,NULL,NULL,1,'2021-09-14 01:22:57','2021-09-14 01:22:57','7adf0a5f-3ef1-41c7-969d-58c33a872930'),(45323,45323,1,NULL,NULL,1,'2021-09-14 01:24:12','2021-09-14 01:24:12','fa1118c8-2ae2-4059-8e09-965f0bcce267'),(45324,45324,1,'medical-mums','work/medical-mums',1,'2021-09-14 01:25:34','2021-09-14 01:25:34','d8f36759-5a14-47fe-bd25-37fe3b6b3b7b'),(45325,45325,1,NULL,NULL,1,'2021-09-14 01:27:25','2021-09-14 01:27:25','61bd3e55-caab-4a75-971a-4beaeb1a9739'),(45326,45326,1,'nspt','work/nspt',1,'2021-09-14 01:27:58','2021-09-14 01:27:58','7d4511c1-3198-4a13-be66-99a9e7fb44aa'),(45327,45327,1,'heart-hq','work/heart-hq',1,'2021-09-14 01:28:52','2021-09-14 01:28:52','047fd366-8587-4202-b0c6-9c8a08740af5'),(45329,45329,1,NULL,NULL,1,'2021-09-14 03:38:32','2021-09-14 03:38:32','3785a925-c839-4167-8e28-8f50e14d0f73'),(45330,45330,1,NULL,NULL,1,'2021-09-14 03:40:36','2021-09-14 03:40:36','c2fbdfae-d159-4916-bad6-f3ca9ea49468'),(45331,45331,1,'west-moreton-anglican-college','work/west-moreton-anglican-college',1,'2021-09-14 04:03:09','2021-09-14 04:03:09','2d2adc76-d4b9-4f6a-afb9-ac279a282aa6'),(45333,45333,1,NULL,NULL,1,'2021-09-14 04:03:59','2021-09-14 04:03:59','8e954847-84c9-411e-8301-2524da8da0da'),(45334,45334,1,'west-moreton-anglican-college','work/west-moreton-anglican-college',1,'2021-09-14 04:09:15','2021-09-14 04:09:15','74c8084e-a94e-4ed9-a0b1-af50f7e4c5e5'),(45336,45336,1,NULL,NULL,1,'2021-09-14 04:15:43','2021-09-14 04:15:43','d2848662-cb28-4cb5-b0b7-c2f851c4e7d5'),(45338,45338,1,NULL,NULL,1,'2021-09-14 04:16:24','2021-09-14 04:16:24','9f9a31b6-c631-4ad5-96ab-d0fd96410211'),(45339,45339,1,NULL,NULL,1,'2021-09-14 04:17:10','2021-09-14 04:17:10','d88331ec-4b55-4cdb-a179-ed18a1b1ce0f'),(45340,45340,1,NULL,NULL,1,'2021-09-14 05:34:27','2021-09-14 05:34:27','f6bb49a7-f34e-43c4-814c-1cce469afdb4'),(45342,45342,1,'endeavour-foundation','work/endeavour-foundation',1,'2021-09-14 07:26:29','2021-09-14 07:26:29','80cb5320-5f2f-4859-88c5-7dcfb1819b5f'),(45346,45346,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-15 06:39:59','2021-09-15 06:39:59','1a1a2d76-f4e2-42fe-82ac-586d8617319a'),(47633,47633,1,'endeavour-foundation','work/endeavour-foundation',1,'2021-09-16 01:31:06','2021-09-16 01:31:06','883f9f23-9698-4182-9c15-4ebf60bacd28'),(47639,47639,1,NULL,NULL,1,'2021-09-16 23:36:05','2021-09-16 23:36:05','a79172ae-708d-44d7-a8ba-333c0833d374'),(47640,47640,1,NULL,NULL,1,'2021-09-16 23:37:03','2021-09-16 23:37:03','13304349-835a-45ad-bfe4-e6c71ce6ebed'),(47641,47641,1,NULL,NULL,1,'2021-09-16 23:43:14','2021-09-16 23:43:14','086502e1-97c1-49f2-84d5-05ce2e5e6337'),(47642,47642,1,NULL,NULL,1,'2021-09-16 23:44:24','2021-09-16 23:44:24','126353c1-c7e2-481e-bdcd-1b603c0f5ef8'),(47643,47643,1,NULL,NULL,1,'2021-09-16 23:44:46','2021-09-16 23:44:46','4797cfdd-beab-4bb9-bbe7-6c7b13f3be7a'),(47644,47644,1,'revelian','work/revelian',1,'2021-09-16 23:47:19','2021-09-16 23:47:19','2a8960ba-2cec-4ded-9485-8d1dbb810c13'),(47646,47646,1,'revelian','work/revelian',1,'2021-09-16 23:51:52','2021-09-16 23:51:52','a88f92c5-30b7-4129-b9e8-9f01aa4740e8'),(47648,47648,1,'west-moreton-anglican-college','work/west-moreton-anglican-college',1,'2021-09-17 01:17:20','2021-09-17 01:17:20','d259f55e-2cc2-4b96-9593-181a077976a8'),(47650,47650,1,'west-moreton-anglican-college','work/west-moreton-anglican-college',1,'2021-09-17 02:22:50','2021-09-17 02:22:50','60bf92d7-b6e8-4b4e-959c-d090aa26067d'),(47652,47652,1,'nspt','work/nspt',1,'2021-09-17 04:07:32','2021-09-17 04:07:32','85313624-ed76-4d1c-b2a0-b05344e8a501'),(47654,47654,1,'qmhc','work/qmhc',1,'2021-09-17 04:13:34','2021-09-17 04:13:34','6ee214d9-7bda-41b6-b513-b4577b51d975'),(47656,47656,1,NULL,NULL,1,'2021-09-17 05:37:46','2021-09-17 05:37:46','c225d2e7-043c-4dcd-b7b0-63a12b80016b'),(47657,47657,1,NULL,NULL,1,'2021-09-17 05:39:04','2021-09-17 05:39:04','c7b18f22-e5af-4c38-a47c-094f493a7e4d'),(47658,47658,1,'qmhc','work/qmhc',1,'2021-09-17 05:39:46','2021-09-17 05:39:46','2eeca6e8-a529-41d3-8bbd-0900ae2c5674'),(47660,47660,1,NULL,NULL,1,'2021-09-17 05:57:43','2021-09-17 05:57:43','245929bc-a077-4609-87c7-2d18e67cfa89'),(47661,47661,1,NULL,NULL,1,'2021-09-17 05:57:56','2021-09-17 05:57:56','18e9e759-0b40-4f21-8077-90f3e1c9cedb'),(47662,47662,1,NULL,NULL,1,'2021-09-17 05:59:15','2021-09-17 05:59:15','684b727d-b2f3-4ffe-b084-df945e249be1'),(47663,47663,1,NULL,NULL,1,'2021-09-17 06:00:29','2021-09-17 06:00:29','02f54d65-6f36-4d05-80b2-fb70939947a1'),(47664,47664,1,'department-of-housing-and-public-works','work/department-of-housing-and-public-works',1,'2021-09-17 06:01:05','2021-09-17 06:01:05','d43047fe-2526-45ed-9c2d-963ea0d3c777'),(47665,47665,1,'west-moreton-anglican-college','work/west-moreton-anglican-college',1,'2021-09-17 06:01:30','2021-09-17 06:01:30','74279846-4e0b-4211-8d55-4436da07c5d7'),(47667,47667,1,'medical-mums','work/medical-mums',1,'2021-09-17 06:08:04','2021-09-17 06:08:04','02b65798-d781-4898-9779-47cada98e97e'),(47669,47669,1,'dfv-campaign','work/dfv-campaign',1,'2021-09-17 06:11:09','2021-09-17 06:11:09','e549a3bb-6dce-4f27-a28b-7817f5e18909'),(47671,47671,1,NULL,NULL,1,'2021-09-17 06:24:55','2021-09-17 06:24:55','544d83fd-cb89-4684-b967-56dda22714bb'),(47672,47672,1,NULL,NULL,1,'2021-09-17 06:24:57','2021-09-17 06:24:57','0c09d10a-d99d-4462-80ee-1e54ee6b2bb6'),(47673,47673,1,NULL,NULL,1,'2021-09-17 06:24:58','2021-09-17 06:24:58','c60f00f2-821f-4568-a3f2-e1ed98d18181'),(47674,47674,1,NULL,NULL,1,'2021-09-17 06:25:00','2021-09-17 06:25:00','63203aac-ce42-432b-a065-049a1d0b9062'),(47675,47675,1,NULL,NULL,1,'2021-09-17 06:25:02','2021-09-17 06:25:02','73bcdf65-2e8d-4a51-b9e2-b5e901be2e0a'),(47676,47676,1,NULL,NULL,1,'2021-09-17 06:25:04','2021-09-17 06:25:04','a85a6cdb-72ea-49ac-91e7-c1483fd849bb'),(47677,47677,1,NULL,NULL,1,'2021-09-17 06:25:08','2021-09-17 06:25:08','f04ca5ba-50f4-49ff-9d47-325d9a9cbd57'),(47678,47678,1,NULL,NULL,1,'2021-09-17 06:25:10','2021-09-17 06:25:10','cd3cc570-3f56-4250-b953-9b8738100607'),(47679,47679,1,NULL,NULL,1,'2021-09-17 06:25:13','2021-09-17 06:25:13','c6acd9de-fa00-40f2-b15a-0042ce93d881'),(47680,47680,1,NULL,NULL,1,'2021-09-17 06:25:16','2021-09-17 06:25:16','51ad9f43-33af-4a11-9b54-0b1921d89506'),(47681,47681,1,NULL,NULL,1,'2021-09-17 06:25:18','2021-09-17 06:25:18','0cb2d2f3-a624-4b31-a014-683929579149'),(47682,47682,1,NULL,NULL,1,'2021-09-17 06:25:20','2021-09-17 06:25:20','615fe1b3-c5e5-413e-a994-bc5a60d355e1'),(47683,47683,1,NULL,NULL,1,'2021-09-17 06:25:21','2021-09-17 06:25:21','c05103b8-c93f-4e2a-9443-03e9ed04ec40'),(47684,47684,1,'tritium','work/tritium',1,'2021-09-17 06:28:19','2021-09-17 06:28:19','630b136b-85a3-4e83-820f-da6d08c5ed93'),(47686,47686,1,'dfv-campaign','work/dfv-campaign',1,'2021-09-17 07:03:48','2021-09-17 07:03:48','c945840f-1b2f-4dda-b8b4-9bcad715268f'),(47687,47687,1,'coomera-anglican-college','work/coomera-anglican-college',1,'2021-09-17 07:23:17','2021-09-17 07:23:17','e6e7e0c4-effc-4a11-b81c-42fa7a4034f0'),(47689,47689,1,'right-time-right-place','work/right-time-right-place',1,'2021-09-17 07:24:50','2021-09-17 07:24:50','9fd5d6d3-d3ad-45c1-be44-bc243ce6e2a6'),(47691,47691,1,'no-3-campaign','work/no-3-campaign',1,'2021-09-17 07:36:08','2021-09-17 07:36:08','9e7f91b9-1cc3-4c92-9fb9-4cec12ff4702'),(47692,47692,1,'family-and-child-connect','work/family-and-child-connect',1,'2021-09-20 02:12:29','2021-09-20 02:12:29','d6811c55-be8e-4d8a-9651-6099db275183'),(47693,47693,1,NULL,NULL,1,'2021-09-21 00:59:04','2021-09-21 00:59:04','698759a4-290e-4040-9009-b0aec27ed31b'),(47695,47695,1,'coomera-anglican-college','work/coomera-anglican-college',1,'2021-09-21 01:01:47','2021-09-21 01:01:47','6ecd9335-b531-43ee-ab2c-e75b56d30057'),(47697,47697,1,NULL,NULL,1,'2021-09-21 01:43:34','2021-09-21 01:43:34','6d642ac3-1777-4b30-92cf-4da15b00c61d'),(47698,47698,1,NULL,NULL,1,'2021-09-21 01:43:51','2021-09-21 01:43:51','6744a2ef-48d2-412b-91a0-218a0a2e6fc9'),(47699,47699,1,NULL,NULL,1,'2021-09-21 01:44:07','2021-09-21 01:44:07','798c3a4c-b675-4f8a-8ed6-65bd3c086368'),(47700,47700,1,NULL,NULL,1,'2021-09-21 01:44:24','2021-09-21 01:44:24','e76d2ae5-a949-4ff8-ae17-923f7e8d895d'),(47701,47701,1,NULL,NULL,1,'2021-09-21 01:44:47','2021-09-21 01:44:47','8b876f2b-d275-41d6-a127-1a02d1ec74b1'),(47702,47702,1,NULL,NULL,1,'2021-09-21 01:45:26','2021-09-21 01:45:26','c6359e7c-c517-48c4-a232-cf8797e29a4e'),(47703,47703,1,NULL,NULL,1,'2021-09-21 01:47:10','2021-09-21 01:47:10','915b5e7a-e2ef-413d-b523-fb5458912839'),(47704,47704,1,NULL,NULL,1,'2021-09-21 03:00:31','2021-09-21 03:00:31','7b6d3195-d58c-4425-927e-203584e98a8d'),(47705,47705,1,NULL,NULL,1,'2021-09-21 03:00:53','2021-09-21 03:00:53','e970fdb6-1018-487c-8c41-2d05b2af9279'),(47706,47706,1,NULL,NULL,1,'2021-09-21 03:01:09','2021-09-21 03:01:09','d61cc0d4-0b6c-4d50-bf4d-9aa7194e5481'),(47707,47707,1,'tritium','work/tritium',1,'2021-09-21 03:03:40','2021-09-21 03:03:40','eca01c0e-0797-4e0a-a0f4-0a7dafd1c2f0'),(47708,47708,1,NULL,NULL,1,'2021-09-21 03:05:55','2021-09-21 03:05:55','887cc5f5-3bc8-429e-a376-473fced560d0'),(47709,47709,1,NULL,NULL,1,'2021-09-21 03:06:10','2021-09-21 03:06:10','5def29bf-af99-4fb8-b756-5bfefd69367a'),(47710,47710,1,NULL,NULL,1,'2021-09-21 03:06:33','2021-09-21 03:06:33','9f55eb06-f1d1-4cf8-b6bd-0d51529c823e'),(47712,47712,1,NULL,NULL,1,'2021-09-21 03:07:07','2021-09-21 03:07:07','a3651b37-15f2-42ea-8333-194c5c851b98'),(47713,47713,1,'tritium','work/tritium',1,'2021-09-21 03:07:39','2021-09-21 03:07:39','bb62da7e-24c2-4957-9b22-770d9ded8c00'),(47714,47714,1,NULL,NULL,1,'2021-09-21 03:08:47','2021-09-21 03:08:47','6ab9a342-8a3d-43ba-8655-8e14cb6a5376'),(47716,47716,1,'tritium','work/tritium',1,'2021-09-21 03:11:03','2021-09-21 03:11:03','0686e2ec-5d73-4c03-98bc-27e49534cb92'),(47718,47718,1,'safe-to-see-your-gp','work/safe-to-see-your-gp',1,'2021-09-21 03:13:10','2021-09-21 03:13:10','b7b0c56b-8ebb-4dde-9465-162eb48ada70'),(47719,47719,1,NULL,NULL,1,'2021-09-21 03:20:30','2021-09-21 03:20:30','2ac7bbec-b28e-4322-bc85-24a6233f7b2b'),(47721,47721,1,'rural-aid','work/rural-aid',1,'2021-09-21 03:20:52','2021-09-21 03:20:52','fd6517c2-f6a5-43e4-91f4-6c227db23bce'),(47723,47723,1,NULL,NULL,1,'2021-09-21 03:39:42','2021-09-21 03:39:42','e6645907-49bb-4b9b-a4dc-0b585b0fbf66'),(47724,47724,1,NULL,NULL,1,'2021-09-21 03:39:53','2021-09-21 03:39:53','9dbc435c-f4d9-47f7-b653-2746a05371d7'),(47725,47725,1,NULL,NULL,1,'2021-09-21 03:40:28','2021-09-21 03:40:28','8ab88b73-2336-423e-ac95-2c0124e86e22'),(47726,47726,1,NULL,NULL,1,'2021-09-21 03:44:15','2021-09-21 03:44:15','66569671-ee06-4680-aa25-bc182445596d'),(47727,47727,1,NULL,NULL,1,'2021-09-21 03:45:07','2021-09-21 03:45:07','d063bcc5-b73f-4399-8db9-49640c3761ca'),(47728,47728,1,NULL,NULL,1,'2021-09-21 03:45:18','2021-09-21 03:45:18','189a46af-cc25-4e03-8ab9-beb5b285a71a'),(47729,47729,1,NULL,NULL,1,'2021-09-21 03:45:34','2021-09-21 03:45:34','07989460-1d60-44a4-8524-494da3f8e286'),(47730,47730,1,NULL,NULL,1,'2021-09-21 03:45:49','2021-09-21 03:45:49','5dd9543c-359f-4211-83b6-1a974327140b'),(47731,47731,1,'no-3-campaign','work/no-3-campaign',1,'2021-09-21 03:51:47','2021-09-21 03:51:47','ce891b1e-1586-4c0a-afbb-77acccb515c4'),(47733,47733,1,NULL,NULL,1,'2021-09-21 03:54:12','2021-09-21 03:54:12','04baa341-5bb0-4bed-bc79-7231ea4ed3b2'),(47734,47734,1,NULL,NULL,1,'2021-09-21 03:54:47','2021-09-21 03:54:47','9f49a9f3-83ec-4b13-b7fc-df0cb7cf28fe'),(47735,47735,1,'no-3-campaign','work/no-3-campaign',1,'2021-09-21 03:56:00','2021-09-21 03:56:00','d0634865-ef3a-468a-9cb5-b69f25ef8fd0'),(47736,47736,1,NULL,NULL,1,'2021-09-21 04:41:57','2021-09-21 04:41:57','84859f53-6be6-4882-b4f8-256c11172972'),(47738,47738,1,NULL,NULL,1,'2021-09-21 04:47:08','2021-09-21 04:47:08','3a7f11d4-96cf-4b54-88e6-6c383a52ff72'),(47739,47739,1,NULL,NULL,1,'2021-09-21 04:48:14','2021-09-21 04:48:14','f2354fdd-9a3e-4478-94c9-0668f745d074'),(47740,47740,1,NULL,NULL,1,'2021-09-21 04:48:39','2021-09-21 04:48:39','7b2326de-07e3-4508-b081-0703c5715fa3'),(47741,47741,1,NULL,NULL,1,'2021-09-21 04:48:57','2021-09-21 04:48:57','9be7bd6f-09bc-4a88-b389-c013b7832ee5'),(47742,47742,1,NULL,NULL,1,'2021-09-21 04:49:20','2021-09-21 04:49:20','e316072c-d246-46fb-a586-9df4738b8a94'),(47743,47743,1,'i-can','work/i-can',1,'2021-09-21 04:50:15','2021-09-21 04:50:15','ffcf1468-e08c-4464-9dfc-840c95740833'),(47745,47745,1,NULL,NULL,1,'2021-09-21 05:08:29','2021-09-21 05:08:29','a98487d9-429a-4a67-b854-4f1f7e834d88'),(47746,47746,1,NULL,NULL,1,'2021-09-21 05:09:02','2021-09-21 05:09:02','7da8fcab-80d9-4518-beb6-df093e078a2a'),(47747,47747,1,'brisbane-north-phn-website','work/brisbane-north-phn-website',1,'2021-09-21 05:10:16','2021-09-21 05:10:16','09572849-a7d0-4866-9fca-3ad92fe782c8'),(47749,47749,1,NULL,NULL,1,'2021-09-21 05:38:54','2021-09-21 05:38:54','4ef44802-8be7-40a3-a253-4c1f2611e690'),(47750,47750,1,NULL,NULL,1,'2021-09-21 05:39:22','2021-09-21 05:39:22','b497990f-ac48-4c7b-b51b-fee26ac4beab'),(47751,47751,1,NULL,NULL,1,'2021-09-21 05:39:41','2021-09-21 05:39:41','89710b3c-bfe8-4416-89c0-00d9a6fe3e41'),(47752,47752,1,NULL,NULL,1,'2021-09-21 05:41:25','2021-09-21 05:41:25','ad657b14-11c2-4f81-9735-543c137dade9'),(47753,47753,1,'brisbane-south-phn','work/brisbane-south-phn',1,'2021-09-21 05:42:17','2021-09-21 05:42:17','31058e3f-2cef-431b-bf8f-40993dd9edc3'),(47755,47755,1,NULL,NULL,1,'2021-09-21 05:58:46','2021-09-21 05:58:46','8031240f-3707-4e91-8325-3cc8e44597b2'),(47756,47756,1,NULL,NULL,1,'2021-09-21 05:59:12','2021-09-21 05:59:12','3d78909a-0309-4fc2-a10c-25e9512167c7'),(47757,47757,1,NULL,NULL,1,'2021-09-21 05:59:27','2021-09-21 05:59:27','e98981b1-0bba-4474-b5a5-0365aef8d572'),(47758,47758,1,NULL,NULL,1,'2021-09-21 05:59:39','2021-09-21 05:59:39','91223332-eb5c-4997-be00-ffcdb0494410'),(47759,47759,1,NULL,NULL,1,'2021-09-21 06:00:00','2021-09-21 06:00:00','26ebaca1-0cd9-499e-b74e-99077f4f3f9e'),(47760,47760,1,'pivotus','work/pivotus',1,'2021-09-21 06:01:18','2021-09-21 06:01:18','9df4c4ea-6d4d-41a9-b199-62114355cf51'),(47761,47761,1,NULL,NULL,1,'2021-09-21 06:01:51','2021-09-21 06:01:51','161ac4fc-9d83-4b60-8b25-9bc69ae421da'),(47763,47763,1,NULL,NULL,1,'2021-09-21 06:03:19','2021-09-21 06:03:19','bca671d7-6a54-4056-b1f1-6716f523ae58'),(47764,47764,1,NULL,NULL,1,'2021-09-21 06:04:35','2021-09-21 06:04:35','16448969-4aa6-42fe-9788-6eee865aff8f'),(47765,47765,1,'pivotus','work/pivotus',1,'2021-09-21 06:05:29','2021-09-21 06:05:29','55ded66e-f64c-4e03-90fe-ce40cc87f5f4'),(47767,47767,1,NULL,NULL,1,'2021-09-21 06:34:51','2021-09-21 06:34:51','3728a3c1-cc44-4962-b875-d02bcc8f57ef'),(47768,47768,1,NULL,NULL,1,'2021-09-21 06:35:04','2021-09-21 06:35:04','c8aecbda-b8f1-4ac7-84bc-4d6bee1b2331'),(47769,47769,1,'department-of-transport-and-main-roads','work/department-of-transport-and-main-roads',1,'2021-09-21 06:36:26','2021-09-21 06:36:26','98bdf815-340e-4ff8-a48f-44cef2c38560'),(47771,47771,1,'asseos','work/asseos',1,'2021-09-21 06:39:30','2021-09-21 06:39:30','f364594c-e0d7-42b9-9da8-cd718e15b858'),(47773,47773,1,NULL,NULL,1,'2021-09-21 07:03:08','2021-09-21 07:03:08','4af21f32-66a5-4797-a95c-ff54b50851cd'),(47774,47774,1,'asseos','work/asseos',1,'2021-09-21 07:06:57','2021-09-21 07:06:57','924d5d2d-6ff5-4a99-9675-12aefcd3ac3b'),(47775,47775,1,'asseos','work/asseos',1,'2021-09-21 07:07:48','2021-09-21 07:07:48','45945d39-7f57-4e23-9726-031e557e91fd'),(47776,47776,1,'brisbane-north-phn-website','work/brisbane-north-phn-website',1,'2021-09-21 07:28:53','2021-09-21 07:28:53','cfa329bc-0298-435b-b345-4c69bca1a32a'),(47777,47777,1,'righting-writing','articles/righting-writing',1,'2021-09-22 00:02:04','2021-09-22 00:02:04','ef1f47a4-25e3-4f3f-bb6e-411ae2c71b27'),(47778,47778,1,'what-the-artist-breaks','articles/what-the-artist-breaks',1,'2021-09-22 00:02:05','2021-09-22 00:02:05','1f81e7b1-4260-4bac-9269-0f8378c850ae'),(47779,47779,1,'8-important-marketing-questions-for-every-business','articles/8-important-marketing-questions-for-every-business',1,'2021-09-22 00:02:05','2021-09-22 00:02:05','55ddbbc1-47f7-4eb4-8b81-53dd8f3080d1'),(47780,47780,1,'b2b-is-dead','articles/b2b-is-dead',1,'2021-09-22 00:02:05','2021-09-22 00:02:05','cfa9ec88-ec69-4fd0-85b8-20e7b8b63fd5'),(47781,47781,1,'the-6-steps-of-content-creation','articles/the-6-steps-of-content-creation',1,'2021-09-22 00:02:05','2021-09-22 00:02:05','2adfa6d3-da22-451f-9e69-fd3990983a58'),(47782,47782,1,'top-20-tips-for-seo','articles/top-20-tips-for-seo',1,'2021-09-22 00:02:06','2021-09-22 00:02:06','a1a76a87-e418-4d58-847b-e2b011883af6'),(47783,47783,1,'top-20-tips-for-seo','articles/top-20-tips-for-seo',1,'2021-09-22 00:02:45','2021-09-22 00:02:45','01fc3955-3f0c-469f-8615-fbf2f59e04fd'),(47785,47785,1,'hear-the-equality-stories-from-nwo-women','articles/hear-the-equality-stories-from-nwo-women',1,'2021-09-22 00:10:23','2021-09-22 00:10:23','22dc893a-9b96-4923-a3b5-029965258592'),(47787,47787,1,'break-away-from-the-same-same-with-custom-illustration','articles/break-away-from-the-same-same-with-custom-illustration',1,'2021-09-22 00:11:31','2021-09-22 00:11:31','f492121c-29fd-4c5f-ba3e-67e0d84419c9'),(47788,47788,1,'why-you-need-a-six-month-comms-strategy-for-your-website','articles/why-you-need-a-six-month-comms-strategy-for-your-website',1,'2021-09-22 00:13:55','2021-09-22 00:13:55','cd843654-c33b-4b8d-90f1-8e67bd06a59f'),(47789,47789,1,'pretty-or-powerful-and-can-you-have-it-all','articles/pretty-or-powerful-and-can-you-have-it-all',1,'2021-09-22 00:15:45','2021-09-22 00:15:45','43c04ab6-7f88-41e7-a533-9f6997a6176f'),(47791,47791,1,'seven-mistakes-people-make-building-websites','articles/seven-mistakes-people-make-building-websites',1,'2021-09-22 00:21:51','2021-09-22 00:21:51','8cfbbffa-252c-424f-bd20-4f8889de692a'),(47792,47792,1,'the-building-blocks-of-branding','articles/the-building-blocks-of-branding',1,'2021-09-22 00:23:34','2021-09-22 00:23:34','f8047ea0-6591-4e6e-aba9-f5aa2861fcb5'),(47793,47793,1,'how-to-really-consult-your-stakeholders','articles/how-to-really-consult-your-stakeholders',1,'2021-09-22 00:25:28','2021-09-22 00:25:28','9e1fda6c-146c-4855-9be5-c9a99e1985fc'),(47795,47795,1,'top-20-tips-for-seo','articles/top-20-tips-for-seo',1,'2021-09-22 00:29:50','2021-09-22 00:29:50','0559b78d-0f19-497c-ad1b-6aca9faf53f8'),(47796,47796,1,'simplifying-the-complex-fifteen-years-of-marketing-schools','articles/simplifying-the-complex-fifteen-years-of-marketing-schools',1,'2021-09-22 00:35:00','2021-09-22 00:35:00','25f833b4-187c-478d-a5be-9c177fa448e7'),(47798,47798,1,'the-6-steps-of-content-creation','articles/the-6-steps-of-content-creation',1,'2021-09-22 00:40:44','2021-09-22 00:40:44','0363764b-887a-4a94-947f-7b2a65f48f17'),(47800,47800,1,'b2b-is-dead','articles/b2b-is-dead',1,'2021-09-22 00:49:41','2021-09-22 00:49:41','6d5b14d8-4f87-4532-82c7-37be18d7eb15'),(47802,47802,1,'8-important-marketing-questions-for-every-business','articles/8-important-marketing-questions-for-every-business',1,'2021-09-22 01:04:24','2021-09-22 01:04:24','73e97883-9cae-4614-9b3d-9313c6ef671f'),(47804,47804,1,'what-the-artist-breaks','articles/what-the-artist-breaks',1,'2021-09-22 01:47:15','2021-09-22 01:47:15','887a421c-4226-4490-8283-f77f87ef3539'),(47806,47806,1,'righting-writing','articles/righting-writing',1,'2021-09-22 01:51:12','2021-09-22 01:51:12','ab53204d-769c-47db-9f97-7f44cd5e3b11'),(47808,47808,1,'righting-writing','articles/righting-writing',1,'2021-09-22 01:51:29','2021-09-22 01:51:29','bfee7a4c-9a99-4fd6-9adf-37b9234e99ca'),(47989,47989,1,'reasons-to-stay','work/reasons-to-stay',1,'2021-09-23 23:14:08','2021-09-23 23:14:08','bae3c60e-6066-4f15-a82a-61b5a60540e1'),(47990,47990,1,NULL,NULL,1,'2021-09-24 01:35:37','2021-09-24 01:35:37','1f0fb9a2-0c6f-4d89-9dd8-2c2bc31feea4'),(47992,47992,1,NULL,NULL,1,'2021-09-24 01:35:59','2021-09-24 01:35:59','4d4bf7d6-fb46-4709-b4ab-7caa1b39ac84'),(47993,47993,1,'pivotus','work/pivotus',1,'2021-09-24 01:36:46','2021-09-24 01:36:46','564bee17-de39-48d4-9cf9-da1474a11dff'),(47995,47995,1,'department-of-transport-and-main-roads','work/department-of-transport-and-main-roads',1,'2021-09-24 01:38:36','2021-09-24 01:38:36','b6bd4dca-59b8-4abf-afd9-ded72ff32f1e'),(47997,47997,1,NULL,NULL,1,'2021-09-24 02:00:16','2021-09-24 02:00:16','3e1a125d-37c4-40ea-ac1e-03532cbe0f0c'),(47998,47998,1,'asseos','work/asseos',1,'2021-09-24 02:01:06','2021-09-24 02:01:06','db03adc1-35b5-43a7-84b8-b9d7a54fe278'),(48003,48003,1,'these-are-a-few-of-our-favourite-brands','articles/these-are-a-few-of-our-favourite-brands',1,'2021-09-24 04:59:42','2021-09-27 01:13:47','1b169f46-ed99-4aa6-9dbf-d007e28e3214'),(48004,48004,1,'hear-the-equality-stories-from-nwo-women-2','articles/hear-the-equality-stories-from-nwo-women-2',1,'2021-09-24 04:59:42','2021-09-24 04:59:42','9cfcc970-c087-42bb-9f61-c3ad327888e6'),(48006,48006,1,NULL,NULL,1,'2021-09-24 05:00:40','2021-09-24 05:00:40','0746f111-8f6f-4219-ad5d-d1e26000e40c'),(48007,48007,1,NULL,NULL,1,'2021-09-24 05:02:07','2021-09-24 05:02:07','1d28eaf1-4c67-4bcd-87ca-bf84c865350a'),(48008,48008,1,'hear-the-equality-stories-from-nwo-women-2','articles/hear-the-equality-stories-from-nwo-women-2',1,'2021-09-24 05:09:38','2021-09-24 05:09:38','54eaa8c8-60b5-4c96-918e-d124120c8d60'),(48010,48010,1,'achieving-brand-loyalty','articles/achieving-brand-loyalty',1,'2021-09-24 05:39:08','2021-09-24 05:39:08','16fd40c7-d05c-45cf-9b17-dfd2d44d6ad6'),(48011,48011,1,'nwos-library','articles/nwos-library',1,'2021-09-24 05:39:24','2022-09-20 03:12:51','ab8333c3-eb0d-4c1f-8157-09bcf1910222'),(48012,48012,1,NULL,NULL,1,'2021-09-24 05:39:47','2021-09-24 05:39:47','d497643a-c7f5-4e31-9218-e8643cf2f711'),(48016,48016,1,'family-and-child-connect','work/family-and-child-connect',1,'2021-09-24 07:20:40','2021-09-24 07:20:40','0f035e62-b1cd-4e6f-b04d-436f657d9267'),(48017,48017,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-26 23:46:30','2021-09-26 23:46:30','edd4a0ae-26f0-4725-b1b5-831b0a09b7dc'),(48131,48131,1,'these-are-a-few-of-our-favourite-brands','articles/these-are-a-few-of-our-favourite-brands',1,'2021-09-27 01:13:47','2021-09-27 01:13:47','e63a7a5d-0bb8-413f-bd82-f3fde5bbb65c'),(48134,48134,1,'what-the-artist-breaks','articles/what-the-artist-breaks',1,'2021-09-27 01:15:26','2021-09-27 01:15:26','171e6312-e027-437d-8e6e-9867d924d658'),(48149,48149,1,'family-and-child-connect','work/family-and-child-connect',1,'2021-09-27 02:01:51','2021-09-27 02:01:51','126d1a37-bb94-4360-bb33-84c9e75ee147'),(48151,48151,1,'queensland-state-archives','work/queensland-state-archives',1,'2021-09-27 02:02:07','2021-09-27 02:02:07','25ac3afa-ad79-473b-8b30-41766f9846e9'),(48153,48153,1,'physiotas','work/physiotas',1,'2021-09-27 02:02:40','2021-09-27 02:02:40','75a7a6a4-5f69-4839-9ef8-35ebb54840bc'),(48155,48155,1,'fopats','work/fopats',1,'2021-09-27 02:02:53','2021-09-27 02:02:53','83b994b4-1ec8-46b8-9570-1c98f31221be'),(48158,48158,1,'pursuit-minerals','work/pursuit-minerals',1,'2021-09-27 02:03:03','2021-09-27 02:03:03','452000ce-a3c2-4f74-a6f1-f65c7680ee65'),(48160,48160,1,'the-school-of-distance-education-charters-towers','work/the-school-of-distance-education-charters-towers',1,'2021-09-27 02:03:16','2021-09-27 02:03:16','17b6d52e-1045-49b1-bdaf-12ff2044f4cd'),(48161,48161,1,'department-of-transport-and-main-roads','work/department-of-transport-and-main-roads',1,'2021-09-27 02:03:39','2021-09-27 02:03:39','a88fd0c4-2aa9-43d7-886a-5dc073dc2f0b'),(48162,48162,1,NULL,NULL,1,'2021-09-27 02:11:09','2021-09-27 02:11:09','bcfcce9b-2c84-4f8d-8102-2b0ad7cb3a1b'),(48164,48164,1,'nspt','work/nspt',1,'2021-09-27 02:11:26','2021-09-27 02:11:26','61f9dfa5-fa1e-4d38-99ac-53d65bc98779'),(48165,48165,1,'nspt','work/nspt',1,'2021-09-27 02:12:23','2021-09-27 02:12:23','dd2abc49-cf72-4f01-b29f-857d4b788ad6'),(48166,48166,1,NULL,NULL,1,'2021-09-27 02:19:24','2021-09-27 02:19:24','6c94f5b2-e33a-4dd4-929e-5c90306a9acc'),(48168,48168,1,'asseos','work/asseos',1,'2021-09-27 02:19:38','2021-09-27 02:19:38','359107bd-bdfe-4d90-886d-c39007d4353f'),(48171,48171,1,NULL,NULL,1,'2021-09-27 02:36:14','2021-09-27 02:36:14','85b9310a-16bc-4f02-a91f-327b11f0f811'),(48172,48172,1,'aseeos','work/aseeos',1,'2021-09-27 02:36:32','2021-09-27 02:36:32','619ba027-d75e-410e-b6e1-2d9ac3ea3780'),(48174,48174,1,'department-of-recreation-sport-and-arts','work/department-of-recreation-sport-and-arts',1,'2021-09-27 02:36:57','2021-09-27 02:36:57','14a495a4-f5cd-4a29-bd82-f86b3db684f5'),(48176,48176,1,NULL,NULL,1,'2021-09-27 02:38:15','2021-09-27 02:38:15','fd5b9b66-4e96-4fe4-a71d-057b62352455'),(48177,48177,1,'aseeos','work/aseeos',1,'2021-09-27 02:38:37','2021-09-27 02:38:37','8f6b907c-be7d-47f2-a41b-b36cf50a0411'),(48179,48179,1,'department-of-housing-and-public-works-2','work/department-of-housing-and-public-works-2',1,'2021-09-27 02:39:13','2021-09-27 02:39:13','b7875f96-9e03-4373-90b1-9a19721fb496'),(48180,48180,1,NULL,NULL,1,'2021-09-27 02:41:57','2021-09-27 02:41:57','02f94b2d-2de7-434f-9a4b-e062deb930db'),(48182,48182,1,'department-of-transport-and-main-roads','work/department-of-transport-and-main-roads',1,'2021-09-27 02:42:07','2021-09-27 02:42:07','56b91660-d133-4350-adde-d48eb6874367'),(48184,48184,1,NULL,NULL,1,'2021-09-27 02:45:56','2021-09-27 02:45:56','7b8c065f-460a-4b91-af3d-7e76b4e93933'),(48186,48186,1,'pivotus','work/pivotus',1,'2021-09-27 02:46:51','2021-09-27 02:46:51','fa213036-1cc7-431c-ba31-7f61604257fb'),(48189,48189,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 02:54:09','2021-09-27 02:54:09','234ed6e5-21c3-4734-a492-e2f9d3be9af7'),(48191,48191,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 02:54:43','2021-09-27 02:54:43','4e36b499-1f18-4a38-8952-35e8bbbb4f5e'),(48194,48194,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 02:55:17','2021-09-27 02:55:17','cb3cd8d5-1864-4cbb-ae22-aa617ef3798a'),(48197,48197,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 02:55:54','2021-09-27 02:55:54','193c0549-137f-4290-9817-628cd606d077'),(48200,48200,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 02:56:29','2021-09-27 02:56:29','61bfe9c3-eaa6-46bc-8bde-13c4468c7c40'),(48221,48221,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:00:11','2021-09-27 03:00:11','90146e57-f6d3-4a9e-8f6a-09a1c7b7f26c'),(48225,48225,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:00:39','2021-09-27 03:00:39','c25f2301-1f35-4081-971c-fa9af9aafd12'),(48229,48229,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:01:09','2021-09-27 03:01:09','e70bfc52-114e-47f1-b29e-d4a476c33e57'),(48233,48233,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:01:39','2021-09-27 03:01:39','2abea4dc-5071-4521-a79d-dea8eced8b3e'),(48238,48238,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:02:31','2021-09-27 03:02:31','643424a1-f923-4e1b-a5fd-d1b78907922d'),(48241,48241,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:20:16','2021-09-27 03:20:16','a2dfe5f2-e89f-4010-a328-101283c61415'),(48242,48242,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:20:49','2021-09-27 03:20:49','837d5d23-cd62-4a5c-9a62-a752f963dff4'),(48243,48243,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:21:12','2021-09-27 03:21:12','5f0b4e31-e8f8-4cd2-a086-432e00412c4d'),(48244,48244,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:21:36','2021-09-27 03:21:36','d6bd3acc-e37c-4450-99ad-56cc71f94f7f'),(48245,48245,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:21:59','2021-09-27 03:21:59','db6937a9-0a77-44d6-9fef-1e9370d13bde'),(48246,48246,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:22:33','2021-09-27 03:22:33','e50a8813-406f-4670-b45c-409817d1d4b9'),(48247,48247,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:23:04','2021-09-27 03:23:04','70e9423f-3d35-41de-9d60-4307020aa992'),(48248,48248,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:23:33','2021-09-27 03:23:33','8f8d541f-30be-4f9a-b266-09592c817f1e'),(48249,48249,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:24:01','2021-09-27 03:24:01','5808a8f5-1def-4fd3-bfb2-129f3a25da63'),(48250,48250,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:24:30','2021-09-27 03:24:30','46cc652d-e340-454a-8b2f-74e1658bff34'),(48251,48251,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:24:59','2021-09-27 03:24:59','459de7b7-63c2-4ac2-bf0b-3a5b785402c3'),(48252,48252,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:26:30','2021-09-27 03:26:30','bd68cb41-4db1-4c11-8652-e1c87ba71e6c'),(48253,48253,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:27:00','2021-09-27 03:27:00','1e59c42d-4625-4ac6-8fe3-44da5eccc53f'),(48255,48255,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:27:36','2021-09-27 03:27:36','defc8c7d-064e-4c98-80d8-cebc96dadeea'),(48256,48256,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:28:12','2021-09-27 03:28:12','0a10c847-0788-41ea-975a-7f18a951153c'),(48257,48257,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:28:49','2021-09-27 03:28:49','425544b1-a072-4cdc-ac7a-2cdc39ae141d'),(48258,48258,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:29:25','2021-09-27 03:29:25','abc4addb-ebda-4240-9f9d-3205acb8c11e'),(48259,48259,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:30:03','2021-09-27 03:30:03','9babcee0-a6f5-4b3a-aa45-5a8fbb753e80'),(48260,48260,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:30:38','2021-09-27 03:30:38','c4461cfa-1695-452a-ac1d-8663c60fe4b7'),(48261,48261,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:31:13','2021-09-27 03:31:13','84ca48a0-4836-4ccf-a72d-38ed705b019f'),(48262,48262,1,'terms-and-conditions','terms-and-conditions',1,'2021-09-27 03:32:47','2021-11-30 00:08:35','406b6e17-b221-431c-bb89-d5f17dc2a8a1'),(48263,48263,1,'terms-and-conditions','terms-and-conditions',1,'2021-09-27 03:32:47','2021-09-27 03:32:47','2de26fdd-a10b-4926-a673-600c94d51521'),(48264,48264,1,'terms-and-conditions','terms-and-conditions',1,'2021-09-27 03:34:00','2021-09-27 03:34:00','e70ee47d-0b05-407a-b5b5-130e14fc0039'),(48266,48266,1,'terms-and-conditions','terms-and-conditions',1,'2021-09-27 03:36:26','2021-09-27 03:36:26','4092dec3-923e-47b9-92f4-cd41642d0f52'),(48267,48267,1,'terms-and-conditions','terms-and-conditions',1,'2021-09-27 03:37:35','2021-09-27 03:37:35','cbf6de1b-9cb3-4db1-9b33-14b0d12f323f'),(48270,48270,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:38:18','2021-09-27 03:38:18','0059bc36-7a74-4857-b898-a004eaa6a6cd'),(48271,48271,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:38:49','2021-09-27 03:38:49','c5e10739-e5bd-4741-8992-3ecc1648037f'),(48272,48272,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:39:24','2021-09-27 03:39:24','e0b613f7-943b-48e1-bf89-1ac3f43cabf5'),(48273,48273,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:40:00','2021-09-27 03:40:00','7fca4934-5fc3-432a-936f-5713edc652cb'),(48274,48274,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:40:26','2021-09-27 03:40:26','a39722ed-8663-4a6f-8053-f82fc117a683'),(48276,48276,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:41:02','2021-09-27 03:41:02','b464e18a-7f4a-41eb-8e3b-d6262c763742'),(48279,48279,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:41:38','2021-09-27 03:41:38','1380805d-d043-4b7b-9e09-2651b1a46b01'),(48281,48281,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:42:13','2021-09-27 03:42:13','36697d8d-6886-4b55-823c-d88667d26cfc'),(48284,48284,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:42:50','2021-09-27 03:42:50','ef131335-a3c2-41a6-be86-0b1b98de337a'),(48294,48294,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:46:32','2021-09-27 03:46:32','f23fcda4-b4d3-4bcb-8b5e-4bcb8d9e2ab9'),(48299,48299,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:53:03','2021-09-27 03:53:03','b9009416-d264-400c-b3d5-13ba2d2107bb'),(48302,48302,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:53:37','2021-09-27 03:53:37','8a6d9107-6e4e-4d93-9698-f12790de3f9e'),(48305,48305,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:54:13','2021-09-27 03:54:13','4d6f8342-4d51-44c4-9a04-4075a396894d'),(48307,48307,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:54:42','2021-09-27 03:54:42','ec5db3b6-157d-44f5-a875-ef268a3e1104'),(48310,48310,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:55:16','2021-09-27 03:55:16','b5763793-70d3-4563-abb8-b10fe38fcf5f'),(48312,48312,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:55:47','2021-09-27 03:55:47','eb5b2adf-cbe8-4e4e-89ab-a9aa1bd60c26'),(48314,48314,1,'terms-and-conditions','terms-and-conditions',1,'2021-09-27 03:56:03','2021-09-27 03:56:03','c14979ee-db81-42e8-939a-5eab53c5cb58'),(48317,48317,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:56:20','2021-09-27 03:56:20','82720100-ec3c-443e-891b-f8ffdb9dfdcb'),(48318,48318,1,'terms-and-conditions','terms-and-conditions',1,'2021-09-27 03:56:22','2021-09-27 03:56:22','f937c79c-89f2-4075-a77e-53721b80fe96'),(48322,48322,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:56:57','2021-09-27 03:56:57','7921f304-9bf5-41bf-b909-9c8736314273'),(48323,48323,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 03:57:31','2021-09-27 03:57:31','1285c7f4-5323-4b27-b082-25a75590fa2d'),(48324,48324,1,'terms-and-conditions','terms-and-conditions',1,'2021-09-27 03:58:25','2021-09-27 03:58:25','94059cee-6326-4bf6-893b-c536517e9854'),(48325,48325,1,'terms-and-conditions','terms-and-conditions',1,'2021-09-27 04:00:34','2021-09-27 04:00:34','e842bc8f-973d-4b81-a523-f95fb32b0a8d'),(48333,48333,1,'dave-saxby-brand-audit-submission-27-sep-2021','brandaudit/dave-saxby-brand-audit-submission-27-sep-2021',1,'2021-09-27 04:07:34','2021-09-27 04:07:34','40b2d925-6fb9-448c-9511-410551d09a77'),(48338,48338,1,'terms-and-conditions','terms-and-conditions',1,'2021-09-27 04:10:00','2021-09-27 04:10:00','926444a0-35ee-4500-a43b-ddcfbf24fd8c'),(48358,48358,1,NULL,NULL,1,'2021-09-27 06:12:38','2021-09-27 06:12:38','cc94eb97-5323-469b-9e16-c725ca82a648'),(48362,48362,1,NULL,NULL,1,'2021-09-27 06:39:41','2021-09-27 06:39:41','40e7ad22-9865-414e-a88c-8298565f7e03'),(48366,48366,1,NULL,NULL,1,'2021-09-27 06:52:42','2021-09-27 06:52:42','8f936345-083e-48b0-a5f1-ea7f54dd9805'),(48367,48367,1,'these-are-a-few-of-our-favourite-brands','articles/these-are-a-few-of-our-favourite-brands',1,'2021-09-27 06:53:04','2021-09-27 06:53:04','2c8387c5-5afa-4055-904e-1cc9253278eb'),(48376,48376,1,'8-important-marketing-questions-for-every-business','articles/8-important-marketing-questions-for-every-business',1,'2021-09-27 22:51:43','2021-09-27 22:51:43','025be76c-bc74-4a17-9f3a-9183da1170a2'),(48378,48378,1,'the-6-steps-of-content-creation','articles/the-6-steps-of-content-creation',1,'2021-09-27 22:53:36','2021-09-27 22:53:36','631fa10d-55c6-431d-8a73-a5c78b761766'),(48379,48379,1,'simplifying-the-complex-fifteen-years-of-marketing-schools','articles/simplifying-the-complex-fifteen-years-of-marketing-schools',1,'2021-09-27 22:53:58','2021-09-27 22:53:58','8e405699-9e3f-4908-83c6-1ad23a4fd898'),(48380,48380,1,'simplifying-the-complex-fifteen-years-of-marketing-schools','articles/simplifying-the-complex-fifteen-years-of-marketing-schools',1,'2021-09-27 22:54:36','2021-09-27 22:54:36','a2f47799-9aa2-49a7-9b02-89a7f9b0478e'),(48382,48382,1,'b2b-is-dead','articles/b2b-is-dead',1,'2021-09-27 22:55:06','2021-09-27 22:55:06','d0a251b9-490f-4256-ad73-7f68f84d482d'),(48384,48384,1,'8-important-marketing-questions-for-every-business','articles/8-important-marketing-questions-for-every-business',1,'2021-09-27 22:55:36','2021-09-27 22:55:36','3beed090-6e61-45ac-8db2-6c4a02d9a97a'),(48386,48386,1,'what-the-artist-breaks','articles/what-the-artist-breaks',1,'2021-09-27 22:57:34','2021-09-27 22:57:34','d3db5556-c386-4ab0-9c90-a433ba9c24ce'),(48388,48388,1,'these-are-a-few-of-our-favourite-brands','articles/these-are-a-few-of-our-favourite-brands',1,'2021-09-27 22:57:51','2021-09-27 22:57:51','5a1937c3-2cee-4f23-945e-6e23ee519010'),(48393,48393,1,'hear-the-equality-stories-from-nwo-women','articles/hear-the-equality-stories-from-nwo-women',1,'2021-09-27 22:58:28','2021-09-27 22:58:28','24ada2b2-bdef-43e3-9658-743096a6f713'),(48395,48395,1,'these-are-a-few-of-our-favourite-brands','articles/these-are-a-few-of-our-favourite-brands',1,'2021-09-27 22:58:42','2021-09-27 22:58:42','936ff5fb-9a80-4fec-963d-f965a5608d6d'),(48396,48396,1,'break-away-from-the-same-same-with-custom-illustration','articles/break-away-from-the-same-same-with-custom-illustration',1,'2021-09-27 22:58:49','2021-09-27 22:58:49','20fdacb7-a84d-49e7-b522-765adc22fb58'),(48397,48397,1,'simplifying-the-complex-fifteen-years-of-marketing-schools','articles/simplifying-the-complex-fifteen-years-of-marketing-schools',1,'2021-09-27 22:58:58','2021-09-27 22:58:58','110c40a7-c056-4440-a1fd-38d12efbe92c'),(48398,48398,1,'the-6-steps-of-content-creation','articles/the-6-steps-of-content-creation',1,'2021-09-27 23:00:38','2021-09-27 23:00:38','33f63990-bdd5-4b46-94be-0f562dd6345d'),(48399,48399,1,'b2b-is-dead','articles/b2b-is-dead',1,'2021-09-27 23:01:03','2021-09-27 23:01:03','12bcdb07-3469-487d-8e40-5fd9ebbe56d0'),(48401,48401,1,'8-important-marketing-questions-for-every-business','articles/8-important-marketing-questions-for-every-business',1,'2021-09-27 23:01:35','2021-09-27 23:01:35','0478a56b-717d-4c53-a4d2-e7511813e386'),(48403,48403,1,'the-6-steps-of-content-creation','articles/the-6-steps-of-content-creation',1,'2021-09-27 23:02:00','2021-09-27 23:02:00','4a6347fa-ad3a-4001-8cb0-8ecdc578f1b5'),(48405,48405,1,'b2b-is-dead','articles/b2b-is-dead',1,'2021-09-27 23:02:16','2021-09-27 23:02:16','2239b7b8-0fa0-4a26-8e4a-c553791f6d89'),(48406,48406,1,'8-important-marketing-questions-for-every-business','articles/8-important-marketing-questions-for-every-business',1,'2021-09-27 23:02:26','2021-09-27 23:02:26','7b6da722-4063-4978-aece-44fa92a0a519'),(48408,48408,1,'what-the-artist-breaks','articles/what-the-artist-breaks',1,'2021-09-27 23:03:06','2021-09-27 23:03:06','7722d5b4-7f18-44a0-a28b-e69fb0098efb'),(48410,48410,1,'righting-writing','articles/righting-writing',1,'2021-09-27 23:03:26','2021-09-27 23:03:26','600f8d64-436f-468c-90a0-fcb04b9060eb'),(48411,48411,1,'top-20-tips-for-seo','articles/top-20-tips-for-seo',1,'2021-09-27 23:12:38','2021-09-27 23:12:38','45b39415-e465-4f06-9419-e763d3310205'),(48413,48413,1,NULL,NULL,1,'2021-09-27 23:53:29','2021-09-27 23:53:29','504ea6ba-2fc8-4771-b2ed-25081aed72c6'),(48414,48414,1,NULL,NULL,1,'2021-09-27 23:53:36','2021-09-27 23:53:36','db97f8bd-44e3-47c2-bbf0-4547ed168ffa'),(48415,48415,1,'top-20-tips-for-seo','articles/top-20-tips-for-seo',1,'2021-09-28 00:16:18','2021-09-28 00:16:18','519bf456-06e1-4b31-b005-650135f43238'),(48417,48417,1,'ruth-larwill-brand-audit-submission-28-sep-2021','brandaudit/ruth-larwill-brand-audit-submission-28-sep-2021',1,'2021-09-28 01:34:25','2021-09-28 01:34:25','23035e7d-424d-4a84-b494-65d0748beff3'),(48418,48418,1,'ruth-larwill-brand-audit-submission-28-sep-2021','brandaudit/ruth-larwill-brand-audit-submission-28-sep-2021',1,'2021-09-28 01:34:25','2021-09-28 01:34:25','4d65084c-5d90-4684-95bf-44386f1efcb9'),(48419,48419,1,'ruth-larwill-brand-audit-submission-28-sep-2021','brandaudit/ruth-larwill-brand-audit-submission-28-sep-2021',1,'2021-09-28 01:44:19','2021-09-28 01:44:19','8ed09adc-39a2-4a58-a9ea-55e59432f853'),(48420,48420,1,'ruth-larwill-brand-audit-submission-28-sep-2021','brandaudit/ruth-larwill-brand-audit-submission-28-sep-2021',1,'2021-09-28 01:52:10','2021-09-28 01:52:10','3b794b9a-f07a-467b-9cfa-6d1ebae36acf'),(48421,48421,1,'ruth-larwill-brand-audit-submission-28-sep-2021','brandaudit/ruth-larwill-brand-audit-submission-28-sep-2021',1,'2021-09-28 01:52:58','2021-09-28 01:52:58','87402a01-b472-47bd-8043-017d258f75e2'),(48422,48422,1,'ruth-larwill-brand-audit-submission-28-sep-2021','brandaudit/ruth-larwill-brand-audit-submission-28-sep-2021',1,'2021-09-28 01:53:18','2021-09-28 01:53:18','4b8aaac7-487a-40e2-9e41-d425c5cddbeb'),(48423,48423,1,'ruth-larwill-brand-audit-submission-28-sep-2021','brandaudit/ruth-larwill-brand-audit-submission-28-sep-2021',1,'2021-09-28 01:53:38','2021-09-28 01:53:38','ebbe70cc-02ea-4510-948a-ccdea9952645'),(48424,48424,1,'ruth-larwill-brand-audit-submission-28-sep-2021','brandaudit/ruth-larwill-brand-audit-submission-28-sep-2021',1,'2021-09-28 01:53:58','2021-09-28 01:53:58','53a3adad-e9c6-4f58-aad4-1952d2af4d2a'),(48425,48425,1,'ruth-larwill-brand-audit-submission-28-sep-2021','brandaudit/ruth-larwill-brand-audit-submission-28-sep-2021',1,'2021-09-28 01:54:18','2021-09-28 01:54:18','bb0f132c-92c2-41dc-ade5-434dc825116c'),(48426,48426,1,'ruth-larwill-brand-audit-submission-28-sep-2021','brandaudit/ruth-larwill-brand-audit-submission-28-sep-2021',1,'2021-09-28 01:54:38','2021-09-28 01:54:38','f316f05b-ca2c-47fe-9439-e99384736704'),(48427,48427,1,'ruth-larwill-brand-audit-submission-28-sep-2021','brandaudit/ruth-larwill-brand-audit-submission-28-sep-2021',1,'2021-09-28 01:55:08','2021-09-28 01:55:08','fdee429e-0f2e-4fa6-a14e-ba6fa53cf588'),(48428,48428,1,'ruth-larwill-brand-audit-submission-28-sep-2021','brandaudit/ruth-larwill-brand-audit-submission-28-sep-2021',1,'2021-09-28 01:55:28','2021-09-28 01:55:28','18b40f2a-ca62-4570-9a44-848f4583d9db'),(48429,48429,1,'ruth-larwill-brand-audit-submission-28-sep-2021','brandaudit/ruth-larwill-brand-audit-submission-28-sep-2021',1,'2021-09-28 01:55:48','2021-09-28 01:55:48','c1045b23-af18-4bc2-b7c1-883be0009eca'),(48430,48430,1,'ruth-larwill-brand-audit-submission-28-sep-2021','brandaudit/ruth-larwill-brand-audit-submission-28-sep-2021',1,'2021-09-28 01:56:08','2021-09-28 01:56:08','0f23a3a8-103e-4429-99db-658c637c7a5f'),(48431,48431,1,'ruth-larwill-brand-audit-submission-28-sep-2021','brandaudit/ruth-larwill-brand-audit-submission-28-sep-2021',1,'2021-09-28 01:56:28','2021-09-28 01:56:28','e62a16b3-f5c4-4c65-9d8e-9a43a55226d8'),(48432,48432,1,'ruth-larwill-brand-audit-submission-28-sep-2021','brandaudit/ruth-larwill-brand-audit-submission-28-sep-2021',1,'2021-09-28 01:56:47','2021-09-28 01:56:47','febfd47e-e062-4458-8226-20b42693df01'),(48433,48433,1,'ruth-larwill-brand-audit-submission-28-sep-2021','brandaudit/ruth-larwill-brand-audit-submission-28-sep-2021',1,'2021-09-28 02:00:46','2021-09-28 02:00:46','1e3a7642-82d9-4244-9e93-64799ffa7793'),(48452,48452,1,NULL,NULL,1,'2021-09-28 07:11:19','2021-09-28 07:11:19','df985d71-9d62-4e34-aa2d-da7c281c82f5'),(48454,48454,1,'department-of-housing-and-public-works','work/department-of-housing-and-public-works',1,'2021-09-28 07:11:33','2021-09-28 07:11:33','d279a53d-c7b8-4631-b934-e3497b61bd21'),(48474,48474,1,NULL,NULL,1,'2021-09-28 07:27:35','2021-09-28 07:27:35','d0e730bc-80fd-4d74-9f43-fbd868221a5e'),(48475,48475,1,'brisbane-south-phn','work/brisbane-south-phn',1,'2021-09-28 07:27:43','2021-09-28 07:27:43','1b9d9dc9-fad1-4ab2-97c2-0de1434d4a87'),(48476,48476,1,NULL,NULL,1,'2021-09-28 07:28:37','2021-09-28 07:28:37','8f4ca8ff-d435-41bc-84ba-7f807eba66ba'),(48478,48478,1,'brisbane-south-phn','work/brisbane-south-phn',1,'2021-09-28 07:28:53','2021-09-28 07:28:53','17255225-aba8-4d00-bf9e-6e443155ed03'),(48482,48482,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 07:51:08','2021-09-28 07:51:08','1cf6c186-fd4d-4c17-a397-38960f22e1c4'),(48483,48483,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 07:51:28','2021-09-28 07:51:28','b5f0e91b-9cd8-4143-ac9e-f3569897b1bd'),(48484,48484,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 07:51:48','2021-09-28 07:51:48','c69bd18a-1369-44dd-b91c-fe9fe1936142'),(48485,48485,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 07:52:08','2021-09-28 07:52:08','86245f81-a7d0-4045-8615-b5bd4cab644c'),(48486,48486,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 07:52:28','2021-09-28 07:52:28','26aab906-10a6-4bb3-abf8-a01922e722e4'),(48487,48487,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 07:52:48','2021-09-28 07:52:48','73e3a2cb-d653-4f6c-b521-14674e35eb2f'),(48488,48488,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 07:53:08','2021-09-28 07:53:08','fd5e928a-aa19-4c30-834b-8c88e702c15a'),(48489,48489,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 07:53:28','2021-09-28 07:53:28','25ddc9f5-7ac5-4ab4-9c4b-236a35ad5927'),(48490,48490,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 07:53:48','2021-09-28 07:53:48','4c1b1e85-9c06-4afe-9522-4d7106dab66f'),(48491,48491,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 07:54:08','2021-09-28 07:54:08','273e8880-313a-491f-800e-1c16e02ca40c'),(48492,48492,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 07:54:28','2021-09-28 07:54:28','1a97280c-a007-454e-bfea-378052a379c8'),(48493,48493,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 07:54:48','2021-09-28 07:54:48','5075d7e5-557d-41a4-8588-776abb03effd'),(48494,48494,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 07:55:08','2021-09-28 07:55:08','b14ae160-a069-4431-a86c-4616df76c9a3'),(48495,48495,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 07:55:28','2021-09-28 07:55:28','88c95830-bef6-4c96-b83a-cd22a499bc01'),(48496,48496,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 08:14:00','2021-09-28 08:14:00','8dd1ae26-df4e-4206-bdf1-b1befa722037'),(48497,48497,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 08:34:00','2021-09-28 08:34:00','7adbfd5b-db03-4ad2-9cc3-825fd75e2c0c'),(48498,48498,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 08:54:00','2021-09-28 08:54:00','483f9758-6b87-41ea-8293-cf7c0bf19f6b'),(48499,48499,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 08:55:18','2021-09-28 08:55:18','f9c560c7-03e9-495d-b951-09c676aabe69'),(48500,48500,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 08:55:38','2021-09-28 08:55:38','e5a71f7d-0da5-4c2b-9fd4-56540d563b68'),(48501,48501,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 08:56:11','2021-09-28 08:56:11','4387eb5b-c667-4c03-9a1a-24ef038c4b35'),(48502,48502,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 08:56:31','2021-09-28 08:56:31','4f9ba260-02be-4cdb-956d-4f50315f720b'),(48503,48503,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 08:56:51','2021-09-28 08:56:51','b737c31b-a452-4dfe-858c-f5a41e2e57dd'),(48504,48504,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 08:57:11','2021-09-28 08:57:11','9bfd5748-c3d7-4749-81a3-f439d27736e7'),(48505,48505,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 08:57:41','2021-09-28 08:57:41','cdfe3865-a72e-4942-bf20-cdf5d9c1353b'),(48506,48506,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 08:58:01','2021-09-28 08:58:01','097cd1ec-ed23-4424-8025-5800e17fe911'),(48507,48507,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 08:58:21','2021-09-28 08:58:21','96b449e7-3935-4aea-845f-a699f9ec534c'),(48508,48508,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 08:58:41','2021-09-28 08:58:41','aa45e837-2de1-4215-98e3-c00e904b3050'),(48509,48509,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 08:59:01','2021-09-28 08:59:01','7a4d573e-be53-4ffc-b982-2e1429acd1be'),(48510,48510,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 08:59:21','2021-09-28 08:59:21','0811d8cf-a3d6-47ae-8f6b-8e7eb1a9abfb'),(48511,48511,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 08:59:41','2021-09-28 08:59:41','3d54ac19-c8ba-4070-a36a-566a99668170'),(48512,48512,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 09:00:01','2021-09-28 09:00:01','f427f181-d05a-480b-972e-463b2499c029'),(48513,48513,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 09:00:21','2021-09-28 09:00:21','f13d8935-da0e-4f54-9bf9-970e608bcad5'),(48514,48514,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 09:00:41','2021-09-28 09:00:41','3d5116f4-cf03-44d8-a95c-b8faf5c42e92'),(48515,48515,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 09:01:01','2021-09-28 09:01:01','f358ae04-8aa7-41ab-a473-42864dba2bdf'),(48516,48516,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 09:01:21','2021-09-28 09:01:21','aea1d6ea-f802-4e20-a04f-7636738256f1'),(48517,48517,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 09:09:20','2021-09-28 09:09:20','359e81bc-a370-41a6-9e27-d32f1cef4e53'),(48518,48518,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 09:09:40','2021-09-28 09:09:40','fc498134-1e99-43d1-9e37-fb12933a681d'),(48519,48519,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 09:10:00','2021-09-28 09:10:00','4b4bf76e-03af-4a06-b7ea-8d7eb0dd27c7'),(48520,48520,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 09:10:20','2021-09-28 09:10:20','5d4f6983-a914-45c5-9a07-c78f4ebae559'),(48521,48521,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 09:10:39','2021-09-28 09:10:39','c2a948f9-5567-412d-bbd2-68f72b055c94'),(48522,48522,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 09:11:00','2021-09-28 09:11:00','bb9484cd-eca3-40f0-90a4-bcd2f91111e1'),(48523,48523,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 09:11:19','2021-09-28 09:11:19','192d850e-bf18-4944-9057-5ffb80747f58'),(48524,48524,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 09:11:40','2021-09-28 09:11:40','50f24fc2-a7b6-4300-b2c8-42bbcb483fd3'),(48525,48525,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 09:12:00','2021-09-28 09:12:00','086321eb-86e4-4542-9346-53b660ac5d30'),(48526,48526,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 09:12:20','2021-09-28 09:12:20','c34fd499-cfbf-4bc5-8fbf-3116e04f12b3'),(48527,48527,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 09:12:40','2021-09-28 09:12:40','3ee2f6f5-bddd-44a2-8c59-18ea3c1492db'),(48528,48528,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 09:13:00','2021-09-28 09:13:00','a36e936e-249a-412e-a955-be27d8157cc3'),(48529,48529,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 09:13:20','2021-09-28 09:13:20','03959335-bbb4-412f-bb75-6fe8d632ddbf'),(48530,48530,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 09:28:00','2021-09-28 09:28:00','d0fa885f-35cc-4d18-90dc-744046591a77'),(48531,48531,1,'emma-hall-brand-audit-submission-15-sep-2021','brandaudit/emma-hall-brand-audit-submission-15-sep-2021',1,'2021-09-28 09:48:01','2021-09-28 09:48:01','dba38876-184d-47af-bd9a-2f978d7f74c1'),(48532,48532,1,NULL,NULL,1,'2021-09-30 03:36:41','2021-09-30 03:36:41','9fe54afc-4cf9-4ce1-bb90-a414a07e7d7d'),(48534,48534,1,'brisbane-north-phn-website','work/brisbane-north-phn-website',1,'2021-09-30 03:36:52','2021-09-30 03:36:52','4e599058-71a2-47cc-83ae-a4bf166ab90a'),(48535,48535,1,NULL,NULL,1,'2021-09-30 03:42:58','2021-09-30 03:42:58','7e552f63-656a-4a94-b5eb-2de09398d2cd'),(48537,48537,1,'endeavour-foundation','work/endeavour-foundation',1,'2021-09-30 03:43:13','2021-09-30 03:43:13','4b7a83ed-de16-4f12-896a-3574b260ff04'),(48538,48538,1,NULL,NULL,1,'2021-09-30 03:47:19','2021-09-30 03:47:19','ef681fa2-fc25-497d-9544-5d542892c706'),(48540,48540,1,'west-moreton-anglican-college','work/west-moreton-anglican-college',1,'2021-09-30 03:47:30','2021-09-30 03:47:30','252819b7-6247-433b-937a-787ea9429764'),(48541,48541,1,NULL,NULL,1,'2021-09-30 03:51:02','2021-09-30 03:51:02','8cfe691a-b362-4c82-b215-fa72adedc5cb'),(48543,48543,1,'qmhc','work/qmhc',1,'2021-09-30 03:51:18','2021-09-30 03:51:18','06f71a55-bc95-459c-9b6e-b4b73d0169dc'),(48545,48545,1,NULL,NULL,1,'2021-09-30 03:53:45','2021-09-30 03:53:45','288eeb80-32b1-40c4-98e8-6f12c1d31a45'),(48546,48546,1,'tritium','work/tritium',1,'2021-09-30 03:54:04','2021-09-30 03:54:04','0b87e04d-6257-4a62-8321-3522916062cd'),(48548,48548,1,NULL,NULL,1,'2021-09-30 05:08:23','2021-09-30 05:08:23','f05e98a1-be5c-4abd-bf62-f76a6afeeff8'),(48550,48550,1,NULL,NULL,1,'2021-09-30 05:12:10','2021-09-30 05:12:10','5404b9f4-3884-4aea-825f-475b311e087a'),(48554,48554,1,NULL,NULL,1,'2021-09-30 05:57:26','2021-09-30 05:57:26','5801c3e3-a997-43e7-bd1b-6bc8edc77479'),(48555,48555,1,NULL,NULL,1,'2021-09-30 05:58:22','2021-09-30 05:58:22','0e032e50-d3c1-44da-a253-e7f991c284b7'),(48556,48556,1,NULL,NULL,1,'2021-09-30 05:58:34','2021-09-30 05:58:34','a4511668-5e63-43cb-a148-65b0e46b41e6'),(48557,48557,1,NULL,NULL,1,'2021-09-30 05:58:58','2021-09-30 05:58:58','dea1d328-ee56-464f-ae80-d4187c00021e'),(48558,48558,1,NULL,NULL,1,'2021-09-30 05:59:16','2021-09-30 05:59:16','4abed8d8-f3c3-41f9-938a-11963d157b32'),(48559,48559,1,NULL,NULL,1,'2021-09-30 05:59:46','2021-09-30 05:59:46','4c08a01d-4ccf-489e-be2e-bc95ee4f221d'),(48562,48562,1,NULL,NULL,1,'2021-09-30 06:02:04','2021-09-30 06:02:04','945efdec-9f48-422d-825f-56073235b3d7'),(48563,48563,1,NULL,NULL,1,'2021-09-30 06:02:24','2021-09-30 06:02:24','6b1f717b-e8c5-4bb9-95b8-803c9f126eb7'),(48564,48564,1,NULL,NULL,1,'2021-09-30 06:06:06','2021-09-30 06:06:06','8c31b91d-22a6-4cd1-b5cc-4f251ac48ace'),(51531,51531,1,NULL,NULL,1,'2021-10-01 01:02:35','2021-10-01 01:02:35','15ecb944-6195-4005-a20d-88aca8d61ae3'),(51533,51533,1,'home','__home__',1,'2021-10-01 01:02:35','2021-10-01 01:02:35','4bcfdaf6-8499-4544-bbcd-f811885faa30'),(51534,51534,1,NULL,NULL,1,'2021-10-01 01:02:35','2021-10-01 01:02:35','8210cbb6-c878-440c-a9eb-bc99b7be3500'),(51535,51535,1,NULL,NULL,1,'2021-10-01 01:02:35','2021-10-01 01:02:35','2a7884da-eea4-4ed5-97e4-ff6ddde82431'),(51536,51536,1,NULL,NULL,1,'2021-10-01 01:02:36','2021-10-01 01:02:36','5c2434e8-c82d-40d9-8c32-8fe50ae6aeb8'),(51537,51537,1,NULL,NULL,1,'2021-10-01 01:02:36','2021-10-01 01:02:36','1109294b-6327-475b-8148-d947ad16683e'),(51539,51539,1,NULL,NULL,1,'2021-10-01 01:02:36','2021-10-01 01:02:36','6fc46110-ef1d-4307-afc0-059013d72663'),(51540,51540,1,NULL,NULL,1,'2021-10-01 01:02:36','2021-10-01 01:02:36','c5e17ffa-5b90-49a1-bebf-d0bc163019f5'),(51669,51670,1,'home','__home__',1,'2021-10-01 01:03:20','2021-10-01 01:03:20','c9fad7a6-5c19-4e8c-ae90-e522cd948360'),(51670,51671,1,NULL,NULL,1,'2021-10-01 01:03:20','2021-10-01 01:03:20','ac7ad8e2-bde0-4826-8d63-9a0720ff65a6'),(51671,51672,1,NULL,NULL,1,'2021-10-01 01:03:20','2021-10-01 01:03:20','5b15234d-329f-4861-8811-7fd8fb7f273e'),(51672,51673,1,NULL,NULL,1,'2021-10-01 01:03:20','2021-10-01 01:03:20','663fcf4b-860f-4173-926b-fc86cdef4c77'),(51673,51674,1,NULL,NULL,1,'2021-10-01 01:03:20','2021-10-01 01:03:20','258e2a22-d9c7-4f78-9404-cbea3ae3a2f8'),(51674,51675,1,NULL,NULL,1,'2021-10-01 01:03:20','2021-10-01 01:03:20','85db6f15-4b3b-4e9a-a31f-ad8b5ba26b15'),(51675,51676,1,NULL,NULL,1,'2021-10-01 01:03:20','2021-10-01 01:03:20','6ded6e50-b0b3-4d40-99fc-2f3369a549f3'),(51872,51872,1,'home','__home__',1,'2021-10-01 01:04:10','2021-10-01 01:04:10','2d9cc38a-b892-49a1-a76a-d2d287d596af'),(51873,51873,1,NULL,NULL,1,'2021-10-01 01:04:10','2021-10-01 01:04:10','a37b0ae9-f865-4bae-9ec8-1c769b52245a'),(51875,51875,1,NULL,NULL,1,'2021-10-01 01:04:10','2021-10-01 01:04:10','76a851ed-a097-4cdd-844b-6e9dee6d037f'),(51876,51876,1,NULL,NULL,1,'2021-10-01 01:04:10','2021-10-01 01:04:10','b56cf1c4-0180-4e60-9eda-2dece51872e9'),(51877,51877,1,NULL,NULL,1,'2021-10-01 01:04:10','2021-10-01 01:04:10','f926d022-afc4-4bb6-97b0-bca8848d4396'),(51878,51878,1,NULL,NULL,1,'2021-10-01 01:04:10','2021-10-01 01:04:10','c4d54724-a5d5-4edb-aa39-9303255f0cae'),(51879,51879,1,NULL,NULL,1,'2021-10-01 01:04:10','2021-10-01 01:04:10','e7272104-6bfb-44d0-8bac-18fb1079e71e'),(58762,58762,1,'new-word-order','work/new-word-order',1,'2021-10-01 06:45:38','2021-10-01 06:45:53','a237757e-170e-46b2-add0-452dab7b7d99'),(58763,58763,1,'new-word-order','work/new-word-order',1,'2021-10-08 02:09:53','2021-10-08 02:09:53','d21ff1e1-36c1-428f-9758-9fbdba43bad6'),(58764,58764,1,NULL,NULL,1,'2021-10-11 00:12:29','2021-10-11 00:12:29','013c6ec7-1c55-4955-a306-cc4a49cdc7a3'),(58769,58769,1,'fopats','work/fopats',1,'2021-10-14 05:45:58','2021-10-14 05:45:58','954bf10e-ce2f-4ffd-b083-45550c04ec57'),(58770,58770,1,'family-and-child-connect','work/family-and-child-connect',1,'2021-10-14 05:48:03','2021-10-14 05:48:03','db681141-7bc4-4c62-a7f6-601cbade7ac6'),(61812,61812,1,'about-us','about',1,'2021-10-18 01:25:31','2021-10-18 01:25:31','b425d931-da78-4819-81de-af1b933ee305'),(61814,61814,1,'about-us','about',1,'2021-10-18 01:27:52','2021-10-18 01:27:52','62bfee7b-83b5-4ab7-87bf-88f7147e914a'),(61816,61816,1,'about-us','about',1,'2021-10-18 03:42:08','2021-10-18 03:42:08','1097a4c7-dabf-468d-8036-bb6812213cea'),(61819,61819,1,NULL,NULL,1,'2021-10-18 04:17:31','2021-10-18 04:17:31','77c38fa5-eef9-44dd-9477-28dcb5c6eeb7'),(61820,61820,1,'tritium','work/tritium',1,'2021-10-18 04:17:46','2021-10-18 04:17:46','fb10667d-39de-4b05-ba61-8b6995ce9272'),(61822,61822,1,'contact','contact',1,'2021-10-18 04:28:19','2021-10-18 04:28:19','78ea0beb-64ad-41b3-bbb4-a8971df957dc'),(61823,61823,1,NULL,NULL,1,'2021-10-18 04:48:07','2021-10-18 04:48:07','eb22f055-888e-4a2c-b79f-9005fff72884'),(61824,61824,1,'no-3-campaign','work/no-3-campaign',1,'2021-10-18 04:50:02','2021-10-18 04:50:02','fe5c1252-6435-4ff0-89bf-1116c2a3adbe'),(61826,61826,1,NULL,NULL,1,'2021-10-18 04:50:54','2021-10-18 04:50:54','f906c8fa-4009-4242-aaeb-fb7b040d110d'),(61827,61827,1,'heart-hq','work/heart-hq',1,'2021-10-18 04:54:06','2021-10-18 04:54:06','b4635b9f-18dd-4b66-9213-316c26bafc06'),(61829,61829,1,NULL,NULL,1,'2021-10-18 06:15:01','2021-10-18 06:15:01','092aeca7-c475-42e0-93c7-821874733c07'),(61830,61830,1,NULL,NULL,1,'2021-10-18 06:16:57','2021-10-18 06:16:57','491e4404-b816-4245-a017-fd12975ec06a'),(61831,61831,1,'no-3-campaign','work/no-3-campaign',1,'2021-10-18 06:20:17','2021-10-18 06:20:17','fd125851-5eb9-4b28-a067-0e2f05012f4c'),(61833,61833,1,'i-can','work/i-can',1,'2021-10-18 06:53:58','2021-10-18 06:53:58','412fa0f4-9ca8-4314-b7f6-e44f802ee56e'),(61834,61834,1,NULL,NULL,1,'2021-10-18 07:12:48','2021-10-18 07:12:48','1ca29db1-f34e-427f-9ddd-f5eba08a6e5f'),(61835,61835,1,NULL,NULL,1,'2021-10-18 07:12:56','2021-10-18 07:12:56','4858dc94-0847-4451-9250-0616b51229c5'),(61836,61836,1,NULL,NULL,1,'2021-10-18 07:12:58','2021-10-18 07:12:58','65c320c8-0a73-4af8-a5c2-dd3ec8b45330'),(61837,61837,1,NULL,NULL,1,'2021-10-18 07:13:01','2021-10-18 07:13:01','4f075831-ee3f-4757-b2c3-3ed606825205'),(61838,61838,1,NULL,NULL,1,'2021-10-18 07:13:05','2021-10-18 07:13:05','dbac2772-b25f-426f-a43e-ad855fc85d5f'),(61839,61839,1,NULL,NULL,1,'2021-10-18 07:13:10','2021-10-18 07:13:10','93f257ea-890e-4ab6-b138-d26b83cbb562'),(61840,61840,1,NULL,NULL,1,'2021-10-18 07:13:16','2021-10-18 07:13:16','8b31780f-8c3c-48c3-80cd-7853e5c07ace'),(61841,61841,1,NULL,NULL,1,'2021-10-18 07:13:19','2021-10-18 07:13:19','73c2bc2d-6483-481c-bb19-08a4f5254c69'),(61842,61842,1,NULL,NULL,1,'2021-10-18 07:13:35','2021-10-18 07:13:35','49c848ee-8a71-42a6-8a54-0aba1164dd2a'),(61843,61843,1,NULL,NULL,1,'2021-10-18 07:13:45','2021-10-18 07:13:45','849a5a82-955c-44ea-b045-33664aaebb02'),(61845,61845,1,'tritium','work/tritium',1,'2021-10-18 07:16:09','2021-10-18 07:16:09','104bb071-1641-4063-aa85-000cf837b035'),(61847,61847,1,NULL,NULL,1,'2021-10-18 07:23:24','2021-10-18 07:23:24','31e6d2a7-0711-4c3b-8000-f149b6599a95'),(61848,61848,1,'tritium','work/tritium',1,'2021-10-18 07:27:33','2021-10-18 07:27:33','1d90a634-2362-430d-8eaf-c9bbbf851a4e'),(61849,61849,1,'tritium','work/tritium',1,'2021-10-18 07:29:57','2021-10-18 07:29:57','e2aa585c-8bab-4f07-a4e3-ee784a21bba9'),(61851,61851,1,NULL,NULL,1,'2021-10-18 07:36:20','2021-10-18 07:36:20','f3f8e5ef-efaf-4cab-a4ba-6c800b15624d'),(61852,61852,1,'tritium','work/tritium',1,'2021-10-18 07:36:35','2021-10-18 07:36:35','c8f592f8-6905-4f49-b62b-2e11f5bfcc9c'),(73927,73927,1,'tritium','work/tritium',1,'2021-10-19 11:27:41','2021-10-19 11:27:41','eaa1d41d-11a8-4de1-ba23-0cb5bd383d7c'),(73930,73930,1,'tritium','work/tritium',1,'2021-10-19 11:31:42','2021-10-19 11:31:42','8c0de417-e422-491e-8f43-ce6f336cdd34'),(73935,73935,1,NULL,NULL,1,'2021-10-20 03:38:16','2021-10-20 03:38:16','db7e5049-ca7f-4299-8ed6-32cba54614b9'),(73936,73936,1,NULL,NULL,1,'2021-10-20 03:38:58','2021-10-20 03:38:58','e6d66872-03c2-4810-9c64-da4958d9190c'),(73937,73937,1,NULL,NULL,1,'2021-10-20 03:39:26','2021-10-20 03:39:26','5dd2a915-603a-4122-a2f4-cb8b26817797'),(73938,73938,1,NULL,NULL,1,'2021-10-20 03:39:49','2021-10-20 03:39:49','27230845-6209-4712-af94-33ce3b919202'),(73939,73939,1,NULL,NULL,1,'2021-10-20 03:40:06','2021-10-20 03:40:06','169beede-9012-4936-ba19-024b0420c12d'),(73940,73940,1,NULL,NULL,1,'2021-10-20 03:40:27','2021-10-20 03:40:27','bc381be2-c2b1-43b7-8259-6dda4a12674c'),(73941,73941,1,NULL,NULL,1,'2021-10-20 03:40:44','2021-10-20 03:40:44','7353de1f-04fa-403c-bf28-4ae5cb93c61e'),(73942,73942,1,'tritium','work/tritium',1,'2021-10-20 03:48:10','2021-10-20 03:48:10','bcc48d06-5a9a-417e-ab42-0402b633f9c6'),(73944,73944,1,'tritium','work/tritium',1,'2021-10-20 03:49:12','2021-10-20 03:49:12','593430dd-05e9-4730-b5fb-852c55df6e22'),(73946,73946,1,'tritium','work/tritium',1,'2021-10-20 03:49:32','2021-10-20 03:49:32','c07fbce4-f644-4acd-89b9-91273843d0b0'),(73947,73947,1,NULL,NULL,1,'2021-10-20 04:31:02','2021-10-20 04:31:02','f4bbb7e1-9300-4f17-a9c9-5407c9bbaeb0'),(73949,73949,1,'tritium','work/tritium',1,'2021-10-20 04:31:19','2021-10-20 04:31:19','e12f517f-3268-4dd5-9178-2340b071e11d'),(73951,73951,1,'tritium','work/tritium',1,'2021-10-20 04:32:46','2021-10-20 04:32:46','199fa8b6-91bb-429f-8d6c-929708305bbd'),(73959,73959,1,'home','__home__',1,'2021-11-08 02:53:17','2021-11-08 02:53:17','0a836701-a8c0-4142-bfa5-3b3aca2ef6e7'),(73960,73960,1,NULL,NULL,1,'2021-11-08 02:53:17','2021-11-08 02:53:17','e01ab6c1-c65b-46a0-9ae5-197bdec48367'),(73961,73961,1,NULL,NULL,1,'2021-11-08 02:53:18','2021-11-08 02:53:18','781ff3a0-9e3a-42cd-9f73-b0cee4c81076'),(73962,73962,1,NULL,NULL,1,'2021-11-08 02:53:18','2021-11-08 02:53:18','d7fe978d-377c-4469-acf7-db4dc6a8af29'),(73963,73963,1,NULL,NULL,1,'2021-11-08 02:53:18','2021-11-08 02:53:18','2fb6a9b6-ca18-422c-898d-f71c758c745b'),(73964,73964,1,NULL,NULL,1,'2021-11-08 02:53:18','2021-11-08 02:53:18','7898c097-15c0-4c59-b464-fe9db968678b'),(73965,73965,1,NULL,NULL,1,'2021-11-08 02:53:18','2021-11-08 02:53:18','5114721c-32d4-4009-9c1b-a82c1a6f01fc'),(73973,73973,1,'home','__home__',1,'2021-11-08 02:53:33','2021-11-08 02:53:33','8e964652-1a7f-4e7c-8c58-560228a79b43'),(73974,73974,1,NULL,NULL,1,'2021-11-08 02:53:33','2021-11-08 02:53:33','b47a8b8e-1b68-465d-a8f1-6c20a287bc57'),(73975,73975,1,NULL,NULL,1,'2021-11-08 02:53:34','2021-11-08 02:53:34','bb7f8b3e-3948-4999-8d97-7916c59d1fb3'),(73976,73976,1,NULL,NULL,1,'2021-11-08 02:53:34','2021-11-08 02:53:34','c808786a-4487-4823-b06c-777c1fa20ded'),(73977,73977,1,NULL,NULL,1,'2021-11-08 02:53:34','2021-11-08 02:53:34','ff2b4d9e-cd45-43e3-866a-61b4765f7fd3'),(73978,73978,1,NULL,NULL,1,'2021-11-08 02:53:34','2021-11-08 02:53:34','e987b4a4-59c4-4c56-9171-e0e315cddb75'),(73979,73979,1,NULL,NULL,1,'2021-11-08 02:53:34','2021-11-08 02:53:34','5264335e-cc3e-4b90-ac82-fa1212d082e2'),(73987,73987,1,'home','__home__',1,'2021-11-08 02:54:17','2021-11-08 02:54:17','cc694c9c-c8e6-4f9c-92c4-d459793209d7'),(73988,73988,1,NULL,NULL,1,'2021-11-08 02:54:17','2021-11-08 02:54:17','d6310163-3248-4ef5-a70b-c70418036947'),(73989,73989,1,NULL,NULL,1,'2021-11-08 02:54:17','2021-11-08 02:54:17','70501fe4-5283-47c8-a9c5-92ffa3f00dbe'),(73990,73990,1,NULL,NULL,1,'2021-11-08 02:54:17','2021-11-08 02:54:17','0fd17f8b-631d-49c6-9d1a-99ede3b9eb82'),(73991,73991,1,NULL,NULL,1,'2021-11-08 02:54:17','2021-11-08 02:54:17','a911d3f3-60b0-4ba8-b8ab-41f6f8d66cb3'),(73992,73992,1,NULL,NULL,1,'2021-11-08 02:54:17','2021-11-08 02:54:17','514b51b0-e08f-48f5-8987-274b6d749fa7'),(73993,73993,1,NULL,NULL,1,'2021-11-08 02:54:17','2021-11-08 02:54:17','0c502a11-7eb7-4424-8c80-c3a9ea522180'),(73995,73995,1,'about-us','about',1,'2021-11-08 02:55:48','2021-11-08 02:55:48','a12839a6-dd16-48d6-93f7-7973fdbbfd43'),(73997,73997,1,'about-us','about',1,'2021-11-08 02:56:39','2021-11-08 02:56:39','e917e129-6bfe-4675-bfff-e45503382113'),(73999,73999,1,'about-us','about',1,'2021-11-08 02:58:16','2021-11-08 02:58:16','8c644e50-e3c6-4e4b-844c-fb6c5864035f'),(74001,74001,1,'coomera-anglican-college','work/coomera-anglican-college',1,'2021-11-08 02:58:58','2021-11-08 02:58:58','3ebf8558-13c3-4dc4-8d40-211e015292a1'),(74003,74003,1,'department-of-transport-and-main-roads','work/department-of-transport-and-main-roads',1,'2021-11-08 02:59:42','2021-11-08 02:59:42','34c925b7-0c57-4380-903c-0c7f9deafe65'),(74005,74005,1,'heart-hq','work/heart-hq',1,'2021-11-08 03:00:34','2021-11-08 03:00:34','93b7664e-43cb-498b-8519-a3ad35d20ba0'),(74007,74007,1,'heart-hq','work/heart-hq',1,'2021-11-08 03:01:27','2021-11-08 03:01:27','0fb124bc-d120-426d-8b19-18c4fc238cea'),(74009,74009,1,'heart-hq','work/heart-hq',1,'2021-11-08 03:16:16','2021-11-08 03:16:16','c80be42f-de48-4428-b937-3e2cb3c2f1d4'),(74011,74011,1,'heart-hq','work/heart-hq',1,'2021-11-08 04:06:49','2021-11-08 04:06:49','969c27bf-b5c0-4bc8-a073-9caf3a3ac2b4'),(74013,74013,1,'heart-hq','work/heart-hq',1,'2021-11-08 04:08:25','2021-11-08 04:08:25','fc2050c1-6ba8-42aa-b5ef-2f299d87ff3f'),(74015,74015,1,'i-can','work/i-can',1,'2021-11-08 04:09:06','2021-11-08 04:09:06','78ffc3ca-b83c-43b9-bf54-40c43b7813b2'),(74017,74017,1,'my-mental-health','work/my-mental-health',1,'2021-11-08 04:09:43','2021-11-08 04:09:43','8f222f52-eef0-414e-a6f2-ac9f862b3246'),(74019,74019,1,'nspt','work/nspt',1,'2021-11-08 04:11:30','2021-11-08 04:11:30','4ee9ab58-5b95-4ada-a771-34b3fb91695f'),(74021,74021,1,'qmhc','work/qmhc',1,'2021-11-08 04:12:09','2021-11-08 04:12:09','17083f4e-2d5c-414f-92e1-07de3498b596'),(74023,74023,1,'reasons-to-stay','work/reasons-to-stay',1,'2021-11-08 04:12:53','2021-11-08 04:12:53','44fe7bd5-44b9-47cc-9fa8-ff56d53fd441'),(74027,74027,1,'rural-aid','work/rural-aid',1,'2021-11-08 04:14:01','2021-11-08 04:14:01','91ec6ccf-d879-444f-a63b-1b7ea047bf0b'),(74029,74029,1,'rural-aid','work/rural-aid',1,'2021-11-08 04:14:55','2021-11-08 04:14:55','e7382c85-cb3d-4b69-894d-69bcc8784229'),(74032,74032,1,'west-moreton-anglican-college','work/west-moreton-anglican-college',1,'2021-11-08 04:17:49','2021-11-08 04:17:49','fbd8829c-3356-488e-9994-42b1d5789b21'),(74033,74033,1,NULL,NULL,1,'2021-11-08 23:27:12','2021-11-08 23:27:12','d0e7a2af-ca22-477a-a1fc-b146d04ea599'),(74034,74034,1,NULL,NULL,1,'2021-11-09 00:00:56','2021-11-09 00:00:56','93a9930e-35bc-4888-90b6-ab0c260d247f'),(74035,74035,1,NULL,NULL,1,'2021-11-09 00:03:18','2021-11-09 00:03:18','2a2c1462-7b8c-4ac1-b6cc-1e650ed7fadd'),(74037,74037,1,NULL,NULL,1,'2021-11-09 00:11:20','2021-11-09 00:11:20','aae441a4-d7d4-49db-8eab-67f0a7229f7f'),(74038,74038,1,NULL,NULL,1,'2021-11-09 00:11:47','2021-11-09 00:11:47','c3d089d5-fc5f-4a08-bbec-f482901f8915'),(74039,74039,1,NULL,NULL,1,'2021-11-09 00:12:44','2021-11-09 00:12:44','f64be128-c348-443c-b92c-e9cdb95da671'),(74040,74040,1,NULL,NULL,1,'2021-11-09 00:13:22','2021-11-09 00:13:22','4f61c021-f6ea-4824-9500-b32aa2ac830a'),(74041,74041,1,NULL,NULL,1,'2021-11-09 00:13:46','2021-11-09 00:13:46','3010c4b2-5a3a-4a74-a7f4-cd6eace26649'),(74042,74042,1,NULL,NULL,1,'2021-11-09 00:14:09','2021-11-09 00:14:09','5a2dab16-8f31-428a-aa2f-2079b53f953a'),(74043,74043,1,NULL,NULL,1,'2021-11-09 00:14:39','2021-11-09 00:14:39','fafd18b6-52ac-41c8-90ec-9bf10f3063b6'),(74044,74044,1,NULL,NULL,1,'2021-11-09 00:15:47','2021-11-09 00:15:47','9ba5ca92-7ff0-44bc-a8dd-e5746bc8cb1f'),(74045,74045,1,NULL,NULL,1,'2021-11-09 00:16:14','2021-11-09 00:16:14','cec6a89b-3b92-48c8-afa7-1b8d09f16863'),(74046,74046,1,NULL,NULL,1,'2021-11-09 00:16:39','2021-11-09 00:16:39','0e58ca21-9c94-4a68-bc7e-acfcc37c0663'),(74047,74047,1,NULL,NULL,1,'2021-11-09 00:17:04','2021-11-09 00:17:04','cd28c4be-f7bd-4114-b01c-bd250355f173'),(74049,74049,1,NULL,NULL,1,'2021-11-09 00:17:58','2021-11-09 00:17:58','5362b071-6425-48fd-9730-fb7e736662b3'),(74050,74050,1,NULL,NULL,1,'2021-11-09 00:18:21','2021-11-09 00:18:21','7eb5f535-59e9-418b-8672-488a86235835'),(74051,74051,1,NULL,NULL,1,'2021-11-09 00:39:42','2021-11-09 00:39:42','bf12b4f1-d778-42ad-b80e-4f38ed7d0cab'),(74052,74052,1,'home','__home__',1,'2021-11-09 00:40:15','2021-11-09 00:40:15','2245d4d0-682b-46c1-a4af-c16b7fc652ab'),(74053,74053,1,NULL,NULL,1,'2021-11-09 00:40:15','2021-11-09 00:40:15','5ffec029-ed1f-4f81-bc98-30362286df25'),(74054,74054,1,NULL,NULL,1,'2021-11-09 00:40:16','2021-11-09 00:40:16','a7d2829d-1b96-4080-a310-4d4f83611a3e'),(74055,74055,1,NULL,NULL,1,'2021-11-09 00:40:16','2021-11-09 00:40:16','b2842107-8208-4ebd-b189-4691f3c1d2a4'),(74056,74056,1,NULL,NULL,1,'2021-11-09 00:40:16','2021-11-09 00:40:16','92c6c139-1bb1-4339-bd29-b53adf17a086'),(74057,74057,1,NULL,NULL,1,'2021-11-09 00:40:16','2021-11-09 00:40:16','59943357-67f3-4381-9d41-fb478f7b24b8'),(74058,74058,1,NULL,NULL,1,'2021-11-09 00:40:16','2021-11-09 00:40:16','75bd0564-df97-45c2-a260-440cbc6b512f'),(74059,74059,1,'about-us','about',1,'2021-11-09 00:40:45','2021-11-09 00:40:45','d26108e8-02c9-4374-a515-13b74140ee2e'),(74060,74060,1,'contact','contact',1,'2021-11-09 00:41:42','2021-11-09 00:41:42','d2201957-526c-43b4-b6be-baa4ff2f801a'),(74061,74061,1,NULL,NULL,1,'2021-11-09 01:00:28','2021-11-09 01:00:28','1099014b-ce8e-47f9-af04-77d158cae7aa'),(74069,74069,1,'home','__home__',1,'2021-11-09 01:19:35','2021-11-09 01:19:35','bb52e708-c74e-4756-92d5-ebb428293e9a'),(74070,74070,1,NULL,NULL,1,'2021-11-09 01:19:36','2021-11-09 01:19:36','587dd28f-36cc-482f-bb54-2bc54cb432ef'),(74071,74071,1,NULL,NULL,1,'2021-11-09 01:19:36','2021-11-09 01:19:36','be277f31-555e-4d14-a18d-8ffd9e433422'),(74072,74072,1,NULL,NULL,1,'2021-11-09 01:19:36','2021-11-09 01:19:36','deebbf3b-2a0f-4c2b-89eb-73c60a80b910'),(74073,74073,1,NULL,NULL,1,'2021-11-09 01:19:36','2021-11-09 01:19:36','2de00364-9bbb-49b1-a138-dc7ad4b7cbe7'),(74074,74074,1,NULL,NULL,1,'2021-11-09 01:19:36','2021-11-09 01:19:36','2a714517-6a10-4f5d-9e0d-884a24d59598'),(74075,74075,1,NULL,NULL,1,'2021-11-09 01:19:36','2021-11-09 01:19:36','7d477707-2617-4e0f-a70a-0b6c08dd038e'),(74076,74076,1,'home','__home__',1,'2021-11-09 01:20:06','2021-11-09 01:20:06','ff31009b-9b0f-4b72-87fc-cb30d524bd36'),(74077,74077,1,NULL,NULL,1,'2021-11-09 01:20:07','2021-11-09 01:20:07','cbd1f597-4a1e-4253-b4f8-31fe51f24bc8'),(74078,74078,1,NULL,NULL,1,'2021-11-09 01:20:07','2021-11-09 01:20:07','e22ad76f-57c2-45a1-9e0e-d39e5bab77cd'),(74079,74079,1,NULL,NULL,1,'2021-11-09 01:20:07','2021-11-09 01:20:07','b64f56ad-b29c-45c6-a10a-73df577545c8'),(74080,74080,1,NULL,NULL,1,'2021-11-09 01:20:07','2021-11-09 01:20:07','058fa285-b116-489b-8e5c-fa9c8f3cda76'),(74081,74081,1,NULL,NULL,1,'2021-11-09 01:20:07','2021-11-09 01:20:07','9a707701-c36b-4a48-8260-4dfe679a3e82'),(74082,74082,1,NULL,NULL,1,'2021-11-09 01:20:07','2021-11-09 01:20:07','dc31d70b-1847-401f-9359-1a14b5a46f59'),(74084,74084,1,NULL,NULL,1,'2021-11-09 01:27:07','2021-11-09 01:27:07','1a9960ff-5164-46ff-a0db-67e49dd1eb92'),(74085,74085,1,'about-us','about',1,'2021-11-09 01:27:18','2021-11-09 01:27:18','aaa3db33-90bc-48f1-9fa5-640ea51760d7'),(74087,74087,1,'contact','contact',1,'2021-11-09 01:27:34','2021-11-09 01:27:34','811cca6c-3283-4724-80ac-4990a2df333f'),(74098,74098,1,'home','__home__',1,'2021-11-09 01:32:15','2021-11-09 01:32:15','323b72ca-434a-4cdb-8e50-383896916f90'),(74099,74099,1,NULL,NULL,1,'2021-11-09 01:32:16','2021-11-09 01:32:16','562183a5-6fa8-40d2-b5de-759c47d50cb8'),(74100,74100,1,NULL,NULL,1,'2021-11-09 01:32:16','2021-11-09 01:32:16','ade3d11f-5f30-4fd2-899e-ebf4eaed45e5'),(74101,74101,1,NULL,NULL,1,'2021-11-09 01:32:16','2021-11-09 01:32:16','bd1bbdc7-c9c0-4f1c-bd42-a7939f61ca7a'),(74102,74102,1,NULL,NULL,1,'2021-11-09 01:32:16','2021-11-09 01:32:16','72a522a3-68d8-4085-bd39-182bdafed98f'),(74103,74103,1,NULL,NULL,1,'2021-11-09 01:32:17','2021-11-09 01:32:17','0f7b7549-0d6a-4718-b764-fec7be09376d'),(74104,74104,1,NULL,NULL,1,'2021-11-09 01:32:17','2021-11-09 01:32:17','cbb11552-45cb-439e-a286-0c087080bf10'),(74105,74105,1,NULL,NULL,1,'2021-11-09 01:34:39','2021-11-09 01:34:39','48814852-81f4-4e9d-9e71-19c5c1c6e2fc'),(74107,74107,1,'these-are-a-few-of-our-favourite-brands','articles/these-are-a-few-of-our-favourite-brands',1,'2021-11-09 01:39:33','2021-11-09 01:39:33','3d0a4aef-3fdd-45a6-a475-4ce0a333bfe4'),(74109,74109,1,'hear-the-equality-stories-from-nwo-women','articles/hear-the-equality-stories-from-nwo-women',1,'2021-11-09 01:49:48','2021-11-09 01:49:48','4e6bc8e2-083e-4d2b-b6a3-3315b3673a9e'),(74111,74111,1,'hear-the-equality-stories-from-nwo-women','articles/hear-the-equality-stories-from-nwo-women',1,'2021-11-09 01:53:02','2021-11-09 01:53:02','4573f6f8-6aa5-4999-a439-b513544f9aac'),(74113,74113,1,'break-away-from-the-same-same-with-custom-illustration','articles/break-away-from-the-same-same-with-custom-illustration',1,'2021-11-09 01:54:49','2021-11-09 01:54:49','2c7ad8cb-12f6-4900-8173-454cf07cb600'),(74115,74115,1,'break-away-from-the-same-same-with-custom-illustration','articles/break-away-from-the-same-same-with-custom-illustration',1,'2021-11-09 01:55:40','2021-11-09 01:55:40','6ccb47df-e322-4920-9866-d83cec254144'),(74117,74117,1,'why-you-need-a-six-month-comms-strategy-for-your-website','articles/why-you-need-a-six-month-comms-strategy-for-your-website',1,'2021-11-09 01:56:33','2021-11-09 01:56:33','72d25781-5cbf-4a91-8203-72dbd2aea9a8'),(74119,74119,1,'pretty-or-powerful-and-can-you-have-it-all','articles/pretty-or-powerful-and-can-you-have-it-all',1,'2021-11-09 01:57:07','2021-11-09 01:57:07','2aac7345-dcc1-4778-a12c-16584eca6d5e'),(74121,74121,1,'seven-mistakes-people-make-building-websites','articles/seven-mistakes-people-make-building-websites',1,'2021-11-09 01:57:32','2021-11-09 01:57:32','016f9f66-f7e4-4a24-ad70-5731cd7b5795'),(74123,74123,1,'the-building-blocks-of-branding','articles/the-building-blocks-of-branding',1,'2021-11-09 01:58:03','2021-11-09 01:58:03','305f60e5-0576-4c9d-9814-27488e384daf'),(74125,74125,1,'how-to-really-consult-your-stakeholders','articles/how-to-really-consult-your-stakeholders',1,'2021-11-09 01:58:38','2021-11-09 01:58:38','56ac937f-6b34-4504-a86f-c217e4ab7a68'),(74127,74127,1,'top-20-tips-for-seo','articles/top-20-tips-for-seo',1,'2021-11-09 01:59:29','2021-11-09 01:59:29','e708cea0-bab8-4813-a8fb-38fb8240e8d1'),(74129,74129,1,'simplifying-the-complex-fifteen-years-of-marketing-schools','articles/simplifying-the-complex-fifteen-years-of-marketing-schools',1,'2021-11-09 01:59:54','2021-11-09 01:59:54','4121c534-ab8b-41c7-b560-de6a9450e786'),(74131,74131,1,'the-6-steps-of-content-creation','articles/the-6-steps-of-content-creation',1,'2021-11-09 02:00:48','2021-11-09 02:00:48','a622c919-692e-4797-a425-3a6136c1546f'),(74133,74133,1,'b2b-is-dead','articles/b2b-is-dead',1,'2021-11-09 02:01:18','2021-11-09 02:01:18','1c855805-9ed2-41de-bb64-09ae3edbcf77'),(74135,74135,1,'8-important-marketing-questions-for-every-business','articles/8-important-marketing-questions-for-every-business',1,'2021-11-09 02:01:53','2021-11-09 02:01:53','e67d71b8-b33d-4ab5-be39-2578e1f016ed'),(74137,74137,1,'what-the-artist-breaks','articles/what-the-artist-breaks',1,'2021-11-09 02:02:27','2021-11-09 02:02:27','8df2ab86-7758-40d4-93a8-df5f4c9ace7d'),(74139,74139,1,'righting-writing','articles/righting-writing',1,'2021-11-09 02:03:06','2021-11-09 02:03:06','a6625915-5494-4bc8-9af8-83ac344725a5'),(74143,74143,1,'aseeos','work/aseeos',1,'2021-11-09 02:05:30','2021-11-09 02:05:30','53712dba-e442-4027-a2c5-b4d10569c1be'),(74145,74145,1,'department-of-transport-and-main-roads','work/department-of-transport-and-main-roads',1,'2021-11-09 02:06:04','2021-11-09 02:06:04','71c3c2c9-ccd6-4438-8188-08d63cd8b854'),(74147,74147,1,'pivotus','work/pivotus',1,'2021-11-09 02:06:47','2021-11-09 02:06:47','65a54434-495f-4321-a625-85eaf3a0d7af'),(74149,74149,1,'department-of-housing-and-public-works','work/department-of-housing-and-public-works',1,'2021-11-09 02:07:46','2021-11-09 02:07:46','f83ff5ff-7c53-4f68-9e3d-fcd8844a30b6'),(74150,74150,1,NULL,NULL,1,'2021-11-09 03:57:36','2021-11-09 03:57:36','e85ab898-22b3-4887-bc49-ec64051b9ab6'),(74153,74153,1,'about-us','about',1,'2021-11-09 05:39:48','2021-11-09 05:39:48','27d26923-1d23-4c4f-b145-06136ad6734a'),(74156,74156,1,NULL,NULL,1,'2021-11-09 06:10:26','2021-11-09 06:10:26','c56be52a-d788-47ff-9d27-a55f8c35ccfa'),(74157,74157,1,NULL,NULL,1,'2021-11-09 11:55:32','2021-11-09 11:55:32','9bb81a3a-7a65-4617-b6d2-f128673a8973'),(74158,74158,1,NULL,NULL,1,'2021-11-09 12:03:12','2021-11-09 12:03:12','06c306db-5068-47ef-a82e-9dca66f07549'),(74159,74159,1,NULL,NULL,1,'2021-11-09 18:04:07','2021-11-09 18:04:07','4598b1c1-6dc2-4220-b7bc-bd695892918a'),(74160,74160,1,NULL,NULL,1,'2021-11-09 18:45:31','2021-11-09 18:45:31','1442008f-14ad-4110-8ecc-79780505ca9b'),(74161,74161,1,NULL,NULL,1,'2021-11-09 19:28:44','2021-11-09 19:28:44','057cb803-b691-434d-a9e2-5ffa4e4c1ce9'),(74162,74162,1,'update-details','update-details',1,'2021-11-09 23:38:17','2021-11-09 23:38:17','9ce574ce-f12d-4274-ac78-f30bb13d2e1b'),(74163,74163,1,'update-details','update-details',1,'2021-11-09 23:38:17','2021-11-09 23:38:17','74338e65-0b77-48fa-9be1-8e1eb115eb8b'),(74165,74165,1,'update-details','update-details',1,'2021-11-09 23:43:14','2021-11-09 23:43:14','3a1dbce1-4ffc-4d28-b4a3-120ddb5372e9'),(74167,74167,1,'update-details','update-details',1,'2021-11-09 23:44:01','2021-11-09 23:44:01','abf02725-ab74-487f-ae22-1a27cf2c1221'),(74168,74168,1,'nspt','work/nspt',1,'2021-11-11 01:05:47','2021-11-11 01:05:47','99482fa8-fdc3-4850-bdfd-77d1bf96ff53'),(74176,74176,1,'home','__home__',1,'2021-11-12 03:23:06','2021-11-12 03:23:06','4e184546-3065-420b-aa9e-7a6176d465d2'),(74177,74177,1,NULL,NULL,1,'2021-11-12 03:23:08','2021-11-12 03:23:08','556765fe-8cab-4785-a296-5bbdee4db3b4'),(74178,74178,1,NULL,NULL,1,'2021-11-12 03:23:08','2021-11-12 03:23:08','9313271a-ce42-4a06-b9d1-b95931952195'),(74179,74179,1,NULL,NULL,1,'2021-11-12 03:23:08','2021-11-12 03:23:08','39027717-70cd-49b2-85c8-4b6ae3f391a4'),(74180,74180,1,NULL,NULL,1,'2021-11-12 03:23:08','2021-11-12 03:23:08','5633656a-b9e3-4822-a95c-c9faa790f4de'),(74181,74181,1,NULL,NULL,1,'2021-11-12 03:23:08','2021-11-12 03:23:08','0bcef6a3-3439-44ad-849d-e524d81feda1'),(74182,74182,1,NULL,NULL,1,'2021-11-12 03:23:08','2021-11-12 03:23:08','2a6909f7-7f57-4188-ab5a-8b4c0387c47b'),(74190,74190,1,'home','__home__',1,'2021-11-12 03:23:33','2021-11-12 03:23:33','52025a0f-3a77-4671-babb-c45dc4e8095f'),(74191,74191,1,NULL,NULL,1,'2021-11-12 03:23:35','2021-11-12 03:23:35','ddb31aee-6326-43b0-8018-11e43cae9714'),(74192,74192,1,NULL,NULL,1,'2021-11-12 03:23:35','2021-11-12 03:23:35','067e1edf-dc78-44d9-bc6a-9b229ce07578'),(74193,74193,1,NULL,NULL,1,'2021-11-12 03:23:35','2021-11-12 03:23:35','20c47e19-916b-43d3-adbf-42d62e74ce79'),(74194,74194,1,NULL,NULL,1,'2021-11-12 03:23:35','2021-11-12 03:23:35','8a5c7a0a-c42a-4fd5-8a49-af6378ee1d2e'),(74195,74195,1,NULL,NULL,1,'2021-11-12 03:23:35','2021-11-12 03:23:35','dc32fee0-1f91-4193-aae8-9419c9965c30'),(74196,74196,1,NULL,NULL,1,'2021-11-12 03:23:35','2021-11-12 03:23:35','90c25a1d-4e0b-42d4-ab4d-f44a2b080ee4'),(74204,74204,1,'home','__home__',1,'2021-11-12 03:23:50','2021-11-12 03:23:50','f750ce42-ab9f-45b4-a9ee-eccbef89d508'),(74205,74205,1,NULL,NULL,1,'2021-11-12 03:23:52','2021-11-12 03:23:52','8164be50-5b77-4a51-a2d2-37c510798a03'),(74206,74206,1,NULL,NULL,1,'2021-11-12 03:23:52','2021-11-12 03:23:52','50f06793-4e16-40f8-a63b-5d4b0509d7ee'),(74207,74207,1,NULL,NULL,1,'2021-11-12 03:23:52','2021-11-12 03:23:52','26070b61-5645-494c-8b25-9ce0fec6db4b'),(74208,74208,1,NULL,NULL,1,'2021-11-12 03:23:52','2021-11-12 03:23:52','b828022e-8f11-41d4-9130-0489bb7e7627'),(74209,74209,1,NULL,NULL,1,'2021-11-12 03:23:52','2021-11-12 03:23:52','28401709-b9f3-4a3d-95ec-4735302ba96c'),(74210,74210,1,NULL,NULL,1,'2021-11-12 03:23:52','2021-11-12 03:23:52','abb5de83-d126-4326-bc4e-d4601e8a496a'),(74211,74211,1,'home','__home__',1,'2021-11-12 03:24:11','2021-11-12 03:24:11','6ed5c1ee-b06e-4170-b898-91d075197957'),(74212,74212,1,NULL,NULL,1,'2021-11-12 03:24:13','2021-11-12 03:24:13','397a5b5e-f7f4-47c7-a42f-3e93090201ab'),(74213,74213,1,NULL,NULL,1,'2021-11-12 03:24:13','2021-11-12 03:24:13','3809fe06-5ea6-49d7-bcb4-dedf899dce9e'),(74214,74214,1,NULL,NULL,1,'2021-11-12 03:24:13','2021-11-12 03:24:13','11458f1d-0d23-40f8-ad31-85a6869dc025'),(74215,74215,1,NULL,NULL,1,'2021-11-12 03:24:13','2021-11-12 03:24:13','157726ea-96fe-4053-9bd0-61b7a75ae22c'),(74216,74216,1,NULL,NULL,1,'2021-11-12 03:24:13','2021-11-12 03:24:13','fdf55dea-f4a7-4686-8160-125301c1b95f'),(74217,74217,1,NULL,NULL,1,'2021-11-12 03:24:13','2021-11-12 03:24:13','85324ef7-5619-439c-b926-87b478797e1a'),(74219,74219,1,'contact','contact',1,'2021-11-12 03:25:50','2021-11-12 03:25:50','cbeecec4-6726-4cdf-a3aa-5d4ab7f7888c'),(74221,74221,1,'about-us','about',1,'2021-11-12 03:37:32','2021-11-12 03:37:32','8a64989c-38f8-4c70-bb49-0aad088d902b'),(74223,74223,1,'about-us','about',1,'2021-11-12 03:39:06','2021-11-12 03:39:06','04b097bf-dc4e-4c0c-923d-98b841baab79'),(74231,74231,1,'home','__home__',1,'2021-11-12 03:41:07','2021-11-12 03:41:07','9c6c6642-b96d-4d3d-af26-61f79fdc9043'),(74232,74232,1,NULL,NULL,1,'2021-11-12 03:41:09','2021-11-12 03:41:09','e61c4697-d92f-49cc-8a1e-d3cea73db63c'),(74233,74233,1,NULL,NULL,1,'2021-11-12 03:41:09','2021-11-12 03:41:09','0e5e3776-eeb7-4164-ac34-dda535cc48e9'),(74234,74234,1,NULL,NULL,1,'2021-11-12 03:41:09','2021-11-12 03:41:09','3f91a66d-85f6-45ee-bfad-1d296050a9b1'),(74235,74235,1,NULL,NULL,1,'2021-11-12 03:41:09','2021-11-12 03:41:09','06764bb8-dc39-4e8a-85ab-5cdc88e563f7'),(74236,74236,1,NULL,NULL,1,'2021-11-12 03:41:09','2021-11-12 03:41:09','47dfe0a6-55f4-4ff8-9681-9712ba9bf78f'),(74237,74237,1,NULL,NULL,1,'2021-11-12 03:41:09','2021-11-12 03:41:09','b952d2e1-5cb1-4fed-b6d8-336650e68f54'),(74245,74245,1,'home','__home__',1,'2021-11-12 03:41:36','2021-11-12 03:41:36','da456c42-b9a7-429f-b8c8-f360da34afdc'),(74246,74246,1,NULL,NULL,1,'2021-11-12 03:41:37','2021-11-12 03:41:37','4f4e3542-c472-4bdd-ae72-ddb0c271ae2c'),(74247,74247,1,NULL,NULL,1,'2021-11-12 03:41:37','2021-11-12 03:41:37','a9d4941f-5102-4912-a0b7-2674d3c29615'),(74248,74248,1,NULL,NULL,1,'2021-11-12 03:41:37','2021-11-12 03:41:37','bf594e42-a881-4ac7-942c-6c88b3669924'),(74249,74249,1,NULL,NULL,1,'2021-11-12 03:41:38','2021-11-12 03:41:38','cc3d40ba-4221-4511-9ff6-e4b5bff62a5c'),(74250,74250,1,NULL,NULL,1,'2021-11-12 03:41:38','2021-11-12 03:41:38','d78d241c-d51a-4ed4-a20b-2cea4cb37138'),(74251,74251,1,NULL,NULL,1,'2021-11-12 03:41:38','2021-11-12 03:41:38','9101e908-5650-43e0-82fc-67af415f0d2f'),(74253,74253,1,'about-us','about',1,'2021-11-15 01:17:23','2021-11-15 01:17:23','bc5419ba-442e-4024-8a77-c8f290425a2e'),(74254,74254,1,'update-details','update-details',1,'2021-11-15 01:17:25','2021-11-15 01:17:25','0be5a992-6bab-449c-baea-a86ec2e5e8d4'),(74255,74255,1,'contact','contact',1,'2021-11-15 01:17:26','2021-11-15 01:17:26','26636b8c-6a1d-407e-8aa7-d8082b4c3251'),(74256,74256,1,'home','__home__',1,'2021-11-15 01:17:28','2021-11-15 01:17:28','67a07aae-95d2-451a-ac78-82b11d5bb5bf'),(74257,74257,1,NULL,NULL,1,'2021-11-15 01:17:30','2021-11-15 01:17:30','80483ee9-01e6-4cba-ae99-9b556c6d4eef'),(74258,74258,1,NULL,NULL,1,'2021-11-15 01:17:30','2021-11-15 01:17:30','b83cbc1f-abc0-467f-aa80-b88e88659adc'),(74259,74259,1,NULL,NULL,1,'2021-11-15 01:17:30','2021-11-15 01:17:30','d8b79ad9-e201-4437-abea-f88a23716798'),(74260,74260,1,NULL,NULL,1,'2021-11-15 01:17:30','2021-11-15 01:17:30','928d5ad0-a0c2-4146-822c-7185dd507fea'),(74261,74261,1,NULL,NULL,1,'2021-11-15 01:17:30','2021-11-15 01:17:30','18444679-7790-41b5-8e62-539c3822c6a0'),(74262,74262,1,NULL,NULL,1,'2021-11-15 01:17:30','2021-11-15 01:17:30','cc385168-d749-48f7-85d2-c0065028e080'),(74263,74263,1,'terms-and-conditions','terms-and-conditions',1,'2021-11-15 01:17:30','2021-11-15 01:17:30','54bbc14e-5ff4-4b3f-8fa4-6ffb6acbfb17'),(74264,74264,1,'contact','contact',1,'2021-11-15 01:17:36','2021-11-15 01:17:36','c2b0b6ec-64ee-4521-94b4-f01a3b76f4b2'),(74265,74265,1,'home','__home__',1,'2021-11-15 01:17:38','2021-11-15 01:17:38','8dc23374-03f5-451f-8ec5-90a8cc590cee'),(74266,74266,1,NULL,NULL,1,'2021-11-15 01:17:39','2021-11-15 01:17:39','6ea83418-cd1c-4ca6-8be1-9ee5bb9139fc'),(74267,74267,1,NULL,NULL,1,'2021-11-15 01:17:39','2021-11-15 01:17:39','6cf25f81-168a-4c5f-a92d-83a9c9b43f7d'),(74268,74268,1,NULL,NULL,1,'2021-11-15 01:17:39','2021-11-15 01:17:39','05d00f70-109d-4fdd-bab9-a87a98deaa98'),(74269,74269,1,NULL,NULL,1,'2021-11-15 01:17:39','2021-11-15 01:17:39','382f95b0-a3fd-49e4-b16a-2a57bd832040'),(74270,74270,1,NULL,NULL,1,'2021-11-15 01:17:39','2021-11-15 01:17:39','30545f92-3087-4864-b169-95c49535f1c4'),(74271,74271,1,NULL,NULL,1,'2021-11-15 01:17:39','2021-11-15 01:17:39','576960f7-5263-4e76-9c09-db29797752e6'),(74272,74272,1,'terms-and-conditions','terms-and-conditions',1,'2021-11-15 01:17:40','2021-11-15 01:17:40','18068aa9-1ca6-442e-934b-824d4345088b'),(74273,74273,1,'about-us','about',1,'2021-11-15 01:17:41','2021-11-15 01:17:41','3dfab1c0-2eef-41e3-80e1-4a15e8f6630b'),(74274,74274,1,'update-details','update-details',1,'2021-11-15 01:17:42','2021-11-15 01:17:42','9f7c0665-5ce3-44cc-b221-aaa8421d0354'),(74275,74275,1,'update-details','update-details',1,'2021-11-15 01:48:59','2021-11-15 01:48:59','c8b800bb-b44c-4ca2-b4cd-7c048df197fb'),(74276,74276,1,'email-sigs','email-sigs',1,'2021-11-15 01:51:50','2021-11-15 01:51:50','bff7cbb1-05cf-476c-a054-7998ef110d9a'),(74277,74277,1,'email-sigs','email-sigs',1,'2021-11-15 01:51:50','2021-11-15 01:51:50','644c7693-5b96-41b9-81bd-70bf3722421f'),(74278,74278,1,'email-sigs','email-sigs',1,'2021-11-15 01:52:01','2021-11-15 01:52:01','2655af4d-ecd6-4921-a29d-885bf9b95941'),(74279,74279,1,NULL,NULL,1,'2021-11-15 01:52:56','2021-11-15 01:52:56','63b9db10-3699-4d41-a4c4-5efbd9c42a31'),(74281,74281,1,'email-sigs','email-sigs',1,'2021-11-15 01:53:35','2021-11-15 01:53:35','51744055-a57e-4794-b236-1840645983dd'),(74282,74282,1,'email-sigs','email-sigs',1,'2021-11-15 02:16:09','2021-11-15 02:16:09','97f99a70-a0e5-4d54-81ec-7e44f3eea5fe'),(74284,74284,1,'email-sigs','email-sigs',1,'2021-11-15 02:16:54','2021-11-15 02:16:54','ca39524d-bd64-4fa5-9556-c82bf3f3bb1a'),(74286,74286,1,'privacy-policy','privacy-policy',1,'2021-11-24 05:25:54','2021-11-24 05:25:54','11ebeff7-e386-4800-a540-f2cf60cd8305'),(74287,74287,1,'privacy-policy','privacy-policy',1,'2021-11-24 05:25:54','2021-11-24 05:25:54','aae25ec1-c7e7-4594-9bf4-878679c1df1e'),(74288,74288,1,'privacy-policy','privacy-policy',1,'2021-11-24 05:26:17','2021-11-24 05:26:17','da51bfc9-7c99-413b-b1e1-a556eaa74e44'),(74289,74289,1,'privacy-policy','privacy-policy',1,'2021-11-24 05:28:19','2021-11-24 05:28:19','d75b841b-cd2c-4ba5-8438-10ce334aa13c'),(74291,74291,1,'privacy-policy','privacy-policy',1,'2021-11-24 05:29:52','2021-11-24 05:29:52','c1a0f921-55f0-47c6-abdc-8858e9ceca6b'),(74293,74293,1,'privacy-policy','privacy-policy',1,'2021-11-24 05:30:59','2021-11-24 05:30:59','59a1ed9b-e8d0-44e0-824d-0a0727d48b55'),(74300,74300,1,NULL,NULL,1,'2021-11-25 23:54:42','2021-11-25 23:54:42','07ccff2d-1a2e-4221-8d4a-acc67be075e6'),(74301,74301,1,NULL,NULL,1,'2021-11-25 23:54:56','2021-11-25 23:54:56','701b015b-91fd-40fc-858e-47712df68b46'),(74302,74302,1,NULL,NULL,1,'2021-11-25 23:55:12','2021-11-25 23:55:12','6cf39741-c1c3-47fe-a4a2-12452fb9a2df'),(82294,82294,1,'tc','terms-and-conditions',1,'2021-11-30 00:08:02','2021-11-30 00:08:02','f3fc329a-90d1-4255-9393-f85dfbcad86b'),(82296,82296,1,'terms-and-conditions','terms-and-conditions',1,'2021-11-30 00:08:35','2021-11-30 00:08:35','ebe544f3-98e7-4c5e-a877-ed01ff06bdef'),(84909,84909,1,NULL,NULL,1,'2021-12-01 00:22:13','2021-12-01 00:22:13','1a1a0591-5265-43dd-8406-5d2c6df01742'),(84911,84911,1,'email-sigs','email-sigs',1,'2021-12-01 00:24:30','2021-12-01 00:24:30','2998bb96-85a1-4077-924c-b6e69d8e2a74'),(84914,84914,1,'email-sigs','email-sigs',1,'2021-12-01 00:43:31','2021-12-01 00:43:31','7ec5a0b3-142b-44f3-8fa9-9c95624cf15e'),(84915,84915,1,'email-sigs','email-sigs',1,'2021-12-01 00:46:59','2021-12-01 00:46:59','6de06d59-2fb5-4ac8-8afc-2cd8e897da0b'),(84917,84917,1,'email-sigs','email-sigs',1,'2021-12-01 00:48:39','2021-12-01 00:48:39','8953900b-a1b5-4c82-b493-e41d0fbf3c4a'),(84920,84920,1,'email-sigs','email-sigs',1,'2021-12-01 01:35:03','2021-12-01 01:35:03','3465db1d-1a28-4019-be2d-03ccb55d7721'),(84922,84922,1,'email-sigs','email-sigs',1,'2021-12-01 01:40:10','2021-12-01 01:40:10','e8001133-dcd7-428f-b1d3-2e60c478f4cf'),(84923,84923,1,NULL,NULL,1,'2021-12-01 01:44:36','2021-12-01 01:44:36','ef45daa4-daad-4ad8-8595-32752dcc044b'),(84925,84925,1,'email-sigs','email-sigs',1,'2021-12-01 01:45:31','2021-12-01 01:45:31','987019c8-ea3f-41fc-94ae-4bdf4d2b6ec0'),(84926,84926,1,NULL,NULL,1,'2021-12-03 04:28:57','2021-12-03 04:28:57','9478c99b-b5e5-4b47-aa35-4964f9d764b1'),(87584,87584,1,NULL,NULL,1,'2021-12-09 23:53:35','2021-12-09 23:53:35','53eca7a3-a80a-465d-a9d4-0b32f02e5a7a'),(87592,87592,1,NULL,NULL,1,'2021-12-10 00:24:08','2021-12-10 00:24:08','51cd2422-2f5f-46ed-951a-f6de2937a775'),(87594,87594,1,NULL,NULL,1,'2021-12-10 00:24:44','2021-12-10 00:24:44','51c88669-3c66-484c-9057-725877b054cb'),(87595,87595,1,NULL,NULL,1,'2021-12-10 00:27:26','2021-12-10 00:27:26','66daeca8-bf7e-4960-9e7a-0f2de92b17e1'),(87596,87596,1,NULL,NULL,1,'2021-12-10 00:27:54','2021-12-10 00:27:54','9f9553bc-57e4-438c-aa97-e6843482ed8a'),(87597,87597,1,NULL,NULL,1,'2021-12-10 00:28:09','2021-12-10 00:28:09','9bb50e5f-f8cf-4500-9451-b00565b80e0c'),(87599,87599,1,NULL,NULL,1,'2021-12-10 00:32:53','2021-12-10 00:32:53','949123ba-8be5-4cd3-bce3-b9e0418dae38'),(87601,87601,1,NULL,NULL,1,'2021-12-10 00:35:21','2021-12-10 00:35:21','100f7835-c73f-4bea-b3f3-4d555c54dc0e'),(87602,87602,1,NULL,NULL,1,'2021-12-10 00:35:26','2021-12-10 00:35:26','75cc9271-7186-4ffe-a42c-a02f98431825'),(87607,87607,1,NULL,NULL,1,'2021-12-10 01:00:26','2021-12-10 01:00:26','224a6c1c-2b59-4b52-a0f3-2b2dfb1a947a'),(87608,87608,1,'christmas-2021','lp/christmas-2021',1,'2021-12-10 01:01:56','2021-12-10 01:01:56','502a90e8-1dac-4bb0-8e5d-89ce2d3189e4'),(87609,87609,1,'christmas-2021','lp/christmas-2021',1,'2021-12-10 01:01:56','2021-12-10 01:01:56','70403bcb-faa1-4000-9b68-67a4b91f0fec'),(87611,87611,1,'christmas-2021','lp/christmas-2021',1,'2021-12-10 01:06:29','2021-12-10 01:06:29','7d1d53fe-fc4e-456f-a927-81ca7eac84bb'),(87613,87613,1,'christmas-2021','lp/christmas-2021',1,'2021-12-10 01:13:40','2021-12-10 01:13:40','9101b617-9824-4977-95bf-003154f6e60d'),(87615,87615,1,'christmas-2021','lp/christmas-2021',1,'2021-12-10 01:32:12','2021-12-10 01:32:12','ba6b0faf-58e5-4b16-9448-880c457ee649'),(87617,87617,1,'christmas-2021','lp/christmas-2021',1,'2021-12-10 01:33:17','2021-12-10 01:33:17','e6070d5d-0c73-44f3-af4e-d02a4fa917da'),(87619,87619,1,'christmas-2021','lp/christmas-2021',1,'2021-12-10 01:49:51','2021-12-10 01:49:51','456695b6-c1d9-45fb-af6a-35c7c359b7ee'),(87622,87622,1,NULL,NULL,1,'2021-12-10 01:59:14','2021-12-10 01:59:14','6996e895-82ff-4182-b653-57a7952875af'),(87623,87623,1,'christmas-2021','lp/christmas-2021',1,'2021-12-10 01:59:34','2021-12-10 01:59:34','00750fa0-1edb-4ea5-87c3-d70a5a0d65e7'),(87625,87625,1,'christmas-2021','lp/christmas-2021',1,'2021-12-10 03:20:23','2021-12-10 03:20:23','ee2b0b42-8a8d-4f7d-ab27-5e47b1d735d1'),(87627,87627,1,'christmas-2021','lp/christmas-2021',1,'2021-12-10 03:27:21','2021-12-10 03:27:21','f50282aa-cbf7-495e-b0b8-dbd3108c6604'),(87629,87629,1,'christmas-2021','lp/christmas-2021',1,'2021-12-10 03:32:43','2021-12-10 03:32:43','b35af5ff-352f-440d-b851-23b3318d6eac'),(87632,87632,1,'christmas-2021','lp/christmas-2021',1,'2021-12-10 03:35:22','2021-12-10 03:35:22','f76cb19e-d960-4e14-a901-bc4854cabcc0'),(87633,87633,1,NULL,NULL,1,'2021-12-12 21:21:50','2021-12-12 21:21:50','47d396fd-3cf8-4400-86e4-4702ba6ad31c'),(94201,94201,1,'new-word-order','work/new-word-order',1,'2021-12-21 04:45:32','2021-12-21 04:45:32','df1765fd-48a5-4d96-b6f5-9363290105e0'),(94202,94202,1,NULL,NULL,1,'2021-12-21 05:50:22','2021-12-21 05:50:22','ea4c6a7c-d44e-45ce-bd3c-f6c72641d2da'),(94203,94203,1,NULL,NULL,1,'2021-12-21 06:37:48','2021-12-21 06:37:48','537e81ed-663a-48f7-89a7-0f8d031c96b8'),(94204,94204,1,NULL,NULL,1,'2021-12-21 11:28:31','2021-12-21 11:28:31','80246333-7a70-470c-ac10-2b70bd77b7e4'),(94206,94206,1,'about-us','about',1,'2022-01-06 01:18:14','2022-01-06 01:18:14','e9cb88a7-2648-4b77-88f5-bcb6f7c12584'),(94207,94207,1,'new-word-order','work/new-word-order',1,'2022-01-06 06:52:11','2022-01-06 06:52:11','21bd5ac5-b32e-4a59-9947-f3fcebbd72f0'),(94209,94209,1,NULL,NULL,1,'2022-01-06 23:35:22','2022-01-06 23:35:22','4b67fd70-175d-468d-8def-58307aa21b09'),(94210,94210,1,NULL,NULL,1,'2022-01-07 01:37:54','2022-01-07 01:37:54','accc0c9d-5068-43a5-8704-a42250f75986'),(94211,94211,1,NULL,NULL,1,'2022-01-07 01:37:58','2022-01-07 01:37:58','3b453a23-11b0-4b8b-a727-c84caeed1632'),(94212,94212,1,NULL,NULL,1,'2022-01-07 01:38:04','2022-01-07 01:38:04','14d35634-9681-4e43-85a9-c2ba79f366bf'),(94213,94213,1,NULL,NULL,1,'2022-01-07 01:38:08','2022-01-07 01:38:08','6105f2e2-a3e0-4bcb-a90f-0162f64f0a12'),(94214,94214,1,NULL,NULL,1,'2022-01-07 01:38:18','2022-01-07 01:38:18','7f7349fa-a543-413b-9468-19e7023cd937'),(94215,94215,1,NULL,NULL,1,'2022-01-07 01:38:25','2022-01-07 01:38:25','924cde8c-074a-4f41-b88b-815d6cd24096'),(94216,94216,1,NULL,NULL,1,'2022-01-07 01:38:33','2022-01-07 01:38:33','f513c5d5-5997-4af1-b502-5746749a80d4'),(94217,94217,1,'new-word-order','work/new-word-order',1,'2022-01-07 01:43:10','2022-01-07 01:43:10','7e6fcf4a-5749-4ea0-9e96-12bd04d05106'),(94220,94220,1,NULL,NULL,1,'2022-01-07 01:54:50','2022-01-07 01:54:50','b35a0d09-8339-44f8-b17a-7eb302703e9b'),(94221,94221,1,NULL,NULL,1,'2022-01-07 01:54:57','2022-01-07 01:54:57','b52adc43-3d7a-488b-8c3a-a16f9c3368af'),(94222,94222,1,'new-word-order','work/new-word-order',1,'2022-01-07 01:55:42','2022-01-07 01:55:42','59f9b52a-2e45-4418-a7c9-ae42bbe73c2e'),(94223,94223,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 02:23:12','2022-01-17 02:23:12','37b857d2-0916-4fca-a1ea-4b657cf9fe8a'),(94430,94430,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:37:37','2022-01-17 03:37:37','9b9dddfe-3324-4ff3-a353-65eadc55ac3b'),(94431,94431,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:37:58','2022-01-17 03:37:58','19a28cc1-8ba7-4852-95b3-e3e43ecc80bc'),(94432,94432,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:38:19','2022-01-17 03:38:19','80a2cd15-249d-4c87-8c8e-b0781c7d811f'),(94433,94433,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:38:40','2022-01-17 03:38:40','a2968cf8-21dd-4035-883f-47f3d35428a5'),(94434,94434,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:39:02','2022-01-17 03:39:02','9aa51694-0c75-41db-9996-4694b379a0a5'),(94435,94435,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:39:23','2022-01-17 03:39:23','f0a1c70f-0cbe-4d4e-a891-3edd074bae9e'),(94436,94436,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:39:44','2022-01-17 03:39:44','1bb244c4-57de-43cd-8fed-3d4e90a34941'),(94437,94437,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:40:05','2022-01-17 03:40:05','947f05d8-ce85-4c95-8f94-52f8cf7f748e'),(94438,94438,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:41:15','2022-01-17 03:41:15','d8b3bfcd-6582-4c77-ad26-e396d0fc4d34'),(94439,94439,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:41:28','2022-01-17 03:41:28','51b1528d-ddbe-401e-9649-e080c77730d6'),(94440,94440,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:41:49','2022-01-17 03:41:49','991b4591-dab6-4fac-a532-5271023fcd45'),(94441,94441,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:42:10','2022-01-17 03:42:10','7fa2886e-ca16-476f-a1c4-c3a7f147b49f'),(94442,94442,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:42:32','2022-01-17 03:42:32','df342c14-92d1-4a69-9a9b-1c415980daa1'),(94443,94443,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:42:53','2022-01-17 03:42:53','de19d9d7-0b63-4d86-ba18-3fbc04046dac'),(94444,94444,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:43:14','2022-01-17 03:43:14','1632dfa4-a82a-4619-ad9f-4e28aa9a8d27'),(94445,94445,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:43:35','2022-01-17 03:43:35','b1d7152d-ed44-45e8-a5b0-c448cb3b8027'),(94446,94446,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:43:56','2022-01-17 03:43:56','226b80ce-15a3-4534-b1b3-ddd327bc59c9'),(94447,94447,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:44:17','2022-01-17 03:44:17','1a49484e-4cf0-447c-a37d-f27325a2b151'),(94448,94448,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:44:39','2022-01-17 03:44:39','51ed686e-b0e9-496a-b67b-c653585b1196'),(94449,94449,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:45:05','2022-01-17 03:45:05','0951d7f4-fcdf-464b-af68-5498a11940c2'),(94450,94450,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:45:27','2022-01-17 03:45:27','9e658fa3-5e8c-4dd7-8ead-64a46fb2cdf9'),(94451,94451,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:45:45','2022-01-17 03:45:45','234dec7d-d74e-4f28-97db-abd4f2987143'),(94452,94452,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:46:05','2022-01-17 03:46:05','d8341b53-0be3-43c3-9f8b-b8740886eea9'),(94453,94453,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:46:26','2022-01-17 03:46:26','dacc95a8-11d6-451b-821b-d47aeea01459'),(94454,94454,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:46:47','2022-01-17 03:46:47','b9ec77de-d5a8-411f-9531-6005490b9b5b'),(94455,94455,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:47:09','2022-01-17 03:47:09','1ca8d5e5-b5c2-4e4c-a2b3-1dd1457a3b43'),(94456,94456,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:47:30','2022-01-17 03:47:30','6d3c8968-2172-4ba5-b5d7-5da6f52edd1a'),(94457,94457,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:47:51','2022-01-17 03:47:51','8c0f6259-bc13-4469-b9b5-2c975d3217e0'),(94458,94458,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:48:12','2022-01-17 03:48:12','8c20132e-ce7d-46f9-9246-d76578be31c6'),(94459,94459,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:48:33','2022-01-17 03:48:33','22ec08a1-da68-42ea-a357-2d5941ce5810'),(94460,94460,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:48:55','2022-01-17 03:48:55','7c0b5202-d5f4-4dcf-901c-3aa31bf2aef7'),(94461,94461,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:49:16','2022-01-17 03:49:16','9317858e-3109-439f-96b8-317913398579'),(94462,94462,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:49:37','2022-01-17 03:49:37','1897d40a-44a1-43d6-87c6-4b63fbbe9309'),(94463,94463,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:49:59','2022-01-17 03:49:59','03ef779d-449f-4bd3-9a0d-a5eddb961fb1'),(94464,94464,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:50:20','2022-01-17 03:50:20','5d45672e-3ccb-4846-935a-3761d9ec94b4'),(94465,94465,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:50:41','2022-01-17 03:50:41','92314b45-60c9-4e7c-9b03-8ec14bb9effc'),(94466,94466,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:51:03','2022-01-17 03:51:03','72328a80-6bc6-4f61-a9eb-f13f3961f24e'),(94467,94467,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:51:24','2022-01-17 03:51:24','7acf58f8-d96a-40a4-8a6d-03d5c73b6faa'),(94468,94468,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:51:45','2022-01-17 03:51:45','95c523b5-3fe2-4ef5-a2d8-a165703b4a94'),(94469,94469,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:52:06','2022-01-17 03:52:06','ac310e0a-36f4-4d28-ad94-17d3ecfcd942'),(94470,94470,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:52:27','2022-01-17 03:52:27','217703ae-35b9-4702-b7bb-eb90f85980fb'),(94471,94471,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:52:49','2022-01-17 03:52:49','6bf5a4a3-bffc-4c9e-b133-d011a4a017e6'),(94472,94472,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:53:13','2022-01-17 03:53:13','3a1ea9b9-01ce-4574-ab69-85744d5004b4'),(94473,94473,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:53:31','2022-01-17 03:53:31','fe49a8dd-7f27-47b3-88ba-250e6ff7bece'),(94474,94474,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:53:53','2022-01-17 03:53:53','71ed14bb-1a3b-43dc-a893-269d104290e6'),(94475,94475,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:54:14','2022-01-17 03:54:14','59d879db-78f6-468e-948e-7222f0464998'),(94476,94476,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:54:35','2022-01-17 03:54:35','2ec17440-1562-49f0-b816-45c5bd5450c2'),(94477,94477,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:54:56','2022-01-17 03:54:56','37742228-17d0-49bf-8f83-45b28738c9c9'),(94478,94478,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:55:17','2022-01-17 03:55:17','ac4726f7-286f-413c-8847-1fe1b4d3e965'),(94479,94479,1,'bruce-connell-brand-audit-submission-17-jan-2022','brandaudit/bruce-connell-brand-audit-submission-17-jan-2022',1,'2022-01-17 03:55:38','2022-01-17 03:55:38','aa8f0a66-9d7a-4b7b-bd15-c7cb953f23e2'),(97259,97259,1,NULL,NULL,1,'2022-01-20 03:43:01','2022-01-20 03:43:01','244e626d-ea03-487c-900c-32fe15746740'),(97260,97260,1,NULL,NULL,1,'2022-01-20 03:43:01','2022-01-20 03:43:01','65748628-265f-4bd3-b65e-06f6214b0d7e'),(97261,97261,1,NULL,NULL,1,'2022-01-20 03:43:01','2022-01-20 03:43:01','1664252b-cddf-4ca8-9416-17cae47761e2'),(97262,97262,1,NULL,NULL,1,'2022-01-20 03:43:02','2022-01-20 03:43:02','b96ce258-ba87-47c4-b54c-d7eab2d83e18'),(97263,97263,1,NULL,NULL,1,'2022-01-20 03:43:02','2022-01-20 03:43:02','dc7863c4-ade2-4a88-bb9f-7d502c2bb5f4'),(97264,97264,1,NULL,NULL,1,'2022-01-20 03:43:02','2022-01-20 03:43:02','4eb8dc75-5ba9-4447-86d2-15f86c88b081'),(97266,97266,1,NULL,NULL,1,'2022-01-20 03:48:42','2022-01-20 03:48:42','7b19dfa0-db69-4d5f-ac6a-22c9e73129c7'),(97267,97267,1,'about-us','about',1,'2022-01-20 03:49:05','2022-01-20 03:49:05','1e683b61-438d-441b-b2b3-17d23d1fa6cb'),(97269,97269,1,'about-us','about',1,'2022-01-20 04:02:30','2022-01-20 04:02:30','d4dff542-84c0-4480-8d3e-29fb1e8be6c2'),(97271,97271,1,NULL,NULL,1,'2022-01-24 13:36:49','2022-01-24 13:36:49','e2037a3c-7426-4061-9b69-d649134321ee'),(97272,97272,1,'about-us','about',1,'2022-01-27 07:08:35','2022-01-27 07:08:35','d743aebe-d789-4c54-ab5a-3cdb4756d543'),(97274,97274,1,'i-can','work/i-can',1,'2022-01-30 04:05:12','2022-01-30 04:05:12','5d42e074-9ae5-4eba-8a17-7a59a0d0e598'),(97276,97276,1,'new-word-order','work/new-word-order',1,'2022-02-08 03:26:34','2022-02-08 03:26:34','30ae05be-1e27-436a-aca1-e2a4d4c9b72c'),(97278,97278,1,'new-word-order','work/new-word-order',1,'2022-02-08 03:37:36','2022-02-08 03:37:36','92b203f3-87ed-439d-a248-73a7e49fb716'),(97280,97280,1,'new-word-order','work/new-word-order',1,'2022-02-08 03:38:29','2022-02-08 03:38:29','a73a9c73-5b55-4cb5-9ece-7330a15246a5'),(97283,97283,1,'new-word-order','work/new-word-order',1,'2022-02-08 03:42:40','2022-02-08 03:42:40','4d37bbc5-43b6-4cc8-8fb8-06163545cc4e'),(97284,97284,1,'new-word-order','work/new-word-order',1,'2022-02-08 03:43:45','2022-02-08 03:43:45','fc286691-a65a-416b-b43d-5ef07336769d'),(97286,97286,1,'new-word-order','work/new-word-order',1,'2022-02-08 03:47:18','2022-02-08 03:47:18','7ef460cf-75b1-4a2e-b6e7-dd4e317e88d7'),(97338,97338,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:11:37','2022-02-08 21:11:37','68d87712-9263-44db-94be-d64f95542134'),(97339,97339,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:11:57','2022-02-08 21:11:57','7b3dfa07-19a5-4ec1-9ff8-01f6f138a639'),(97340,97340,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:12:17','2022-02-08 21:12:17','09de2b9f-fe67-4961-80c5-a7e4ebf816e1'),(97341,97341,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:12:37','2022-02-08 21:12:37','4013f2a9-cb14-4420-b3ac-2e3fa39c749c'),(97342,97342,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:12:57','2022-02-08 21:12:57','b7374bbc-6471-46ad-b3df-37b16115e14d'),(97343,97343,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:13:17','2022-02-08 21:13:17','3f257a40-dc0d-437c-93c8-7b4cfa9bcdd5'),(97344,97344,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:13:37','2022-02-08 21:13:37','e04ac651-c10b-45b5-9f90-0d8e55d8816d'),(97345,97345,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:13:57','2022-02-08 21:13:57','1bb3796c-cdad-4a9b-b1d8-6fa9df46f561'),(97346,97346,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:14:17','2022-02-08 21:14:17','520f2f86-b492-4e50-9a07-f8f997a5fb3f'),(97347,97347,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:14:37','2022-02-08 21:14:37','de940d70-be14-4419-8f21-029489f439ce'),(97348,97348,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:14:57','2022-02-08 21:14:57','3fbb61c1-a857-4401-a1bb-019246882cdf'),(97349,97349,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:15:17','2022-02-08 21:15:17','9e30ef93-e9a1-418a-b187-0c189bc48986'),(97350,97350,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:15:37','2022-02-08 21:15:37','2d993368-ea1d-40d7-b247-dd874e5d0712'),(97351,97351,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:15:57','2022-02-08 21:15:57','746a39a0-fcf5-4663-805d-d426378b7a6b'),(97352,97352,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:16:17','2022-02-08 21:16:17','5298535b-eda4-4fbc-914a-680f9470b65c'),(97353,97353,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:16:37','2022-02-08 21:16:37','941f226a-c8b3-4b8c-ae50-2097eba62b23'),(97354,97354,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:16:57','2022-02-08 21:16:57','e575dc12-68da-4649-91a7-dc9bc8f33bd4'),(97355,97355,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:17:17','2022-02-08 21:17:17','32cf5729-3237-41e7-8d1b-407e1f2f265b'),(97356,97356,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:17:37','2022-02-08 21:17:37','416521b5-4fcc-4ec5-bbdd-5c51c6c6e115'),(97357,97357,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:17:57','2022-02-08 21:17:57','0bb78467-8d4c-4c25-acbb-6137978a5335'),(97358,97358,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:18:17','2022-02-08 21:18:17','6de74fc8-e141-4076-90f2-6caa273b645c'),(97359,97359,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:18:38','2022-02-08 21:18:38','6ff7dbb7-f557-4139-a98f-079fa8bb6005'),(97360,97360,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:18:58','2022-02-08 21:18:58','dda6457d-14d8-41a0-97f4-6e1ba4d50df6'),(97361,97361,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:19:17','2022-02-08 21:19:17','73aa4346-0b9f-4b34-bc51-dbebc05df92a'),(97362,97362,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:19:38','2022-02-08 21:19:38','524a812e-c3e2-400a-8f0d-b5fa13b8ba13'),(97363,97363,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:19:58','2022-02-08 21:19:58','d8868767-639a-411a-aef6-040a7b294a89'),(97364,97364,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:20:18','2022-02-08 21:20:18','3c92f950-9616-4834-86c2-26a359e8e964'),(97365,97365,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:20:38','2022-02-08 21:20:38','2edcb4b5-1e6c-45f5-9d1b-9c3b461108a5'),(97366,97366,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:20:58','2022-02-08 21:20:58','ebfd2d5a-391a-4a75-9379-b8cc3774be16'),(97367,97367,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:21:18','2022-02-08 21:21:18','6b447d90-6eb1-4ee7-a951-71087534a0cc'),(97368,97368,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:21:38','2022-02-08 21:21:38','5aaa28fd-c340-4f15-bd08-88c9c6493dcd'),(97369,97369,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:21:58','2022-02-08 21:21:58','7e3b5445-a935-42e2-9a93-75f00f6f9b19'),(97370,97370,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:22:19','2022-02-08 21:22:19','56d787d8-2ed3-4f62-894a-244b37bed11a'),(97371,97371,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:22:39','2022-02-08 21:22:39','a6124761-4e80-46a3-8930-a41598cc6c6e'),(97372,97372,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:22:59','2022-02-08 21:22:59','5b2c2820-e349-4238-ac42-876a435bd63c'),(97373,97373,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:23:19','2022-02-08 21:23:19','191141ea-a936-4df8-9978-53663434f540'),(97374,97374,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:23:39','2022-02-08 21:23:39','763cc2da-9f6c-49b2-98ae-a9f02089020c'),(97375,97375,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:23:59','2022-02-08 21:23:59','c433f6c7-074e-4edb-88ef-e170d2da36ae'),(97376,97376,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:24:19','2022-02-08 21:24:19','f091f094-aeb5-4ec1-be5f-77ddd4b4d376'),(97377,97377,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:24:39','2022-02-08 21:24:39','e90bb554-4831-4d4e-98fd-516414dc4078'),(97378,97378,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:24:59','2022-02-08 21:24:59','5e4e7eb2-a658-43ea-a3a6-c3825fe225c2'),(97379,97379,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:25:19','2022-02-08 21:25:19','9475609b-87e6-4650-b56b-5e944811d867'),(97380,97380,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:25:39','2022-02-08 21:25:39','69a2225f-b99d-41f4-bf46-9ffb7aa1147b'),(97381,97381,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:25:59','2022-02-08 21:25:59','58e3a5fa-f810-4f6c-86f1-8e05d0394f41'),(97382,97382,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:26:19','2022-02-08 21:26:19','fd41aed6-a9f9-438f-b056-b167e6170ec7'),(97383,97383,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:26:39','2022-02-08 21:26:39','1acbc0c6-41ce-4915-9966-e58755cb1d32'),(97384,97384,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:26:59','2022-02-08 21:26:59','667803cc-fef8-49ef-b3ff-f55370a78c70'),(97385,97385,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 21:27:19','2022-02-08 21:27:19','ca013f38-2997-4049-a3ac-095a892e9132'),(97386,97386,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 22:38:47','2022-02-08 22:38:47','cc2862e3-9917-4a66-9ab0-49b3de7d686e'),(97387,97387,1,'suzanne-oxford-brand-audit-submission-13-sep-2021','brandaudit/suzanne-oxford-brand-audit-submission-13-sep-2021',1,'2022-02-08 23:32:11','2022-02-08 23:32:11','d9d3884b-dd06-43ff-be31-df3d51cd90f0'),(97388,97388,1,NULL,NULL,1,'2022-02-09 00:56:43','2022-02-09 00:56:43','a74ff866-61d4-4cb3-a030-1d96b8ed9a5a'),(97390,97390,1,'new-word-order','work/new-word-order',1,'2022-02-09 00:57:55','2022-02-09 00:57:55','76488b40-6c8b-43d4-9515-7940941a5895'),(99458,99458,1,NULL,NULL,1,'2022-02-09 02:25:21','2022-02-09 02:25:21','1f36e491-508b-47d4-b492-8becb84ab996'),(99934,99934,1,'about-us','about',1,'2022-02-09 02:35:48','2022-02-09 02:35:48','791afce3-2c61-4f08-af9b-3c2c279adcad'),(103511,103511,1,NULL,NULL,1,'2022-02-09 05:30:08','2022-02-09 05:30:08','c3e4c748-9e60-4c82-91ea-5dedf5a4e77e'),(103512,103512,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2022-02-09 23:16:11','2022-02-09 23:16:11','faa314e3-2429-4ade-8b42-990cd977f19b'),(103513,103513,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2022-02-09 23:16:31','2022-02-09 23:16:31','6df470ff-28c2-4f8d-aa36-0aaeedbbd7eb'),(103514,103514,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2022-02-09 23:16:51','2022-02-09 23:16:51','cbdbd408-ab1c-4ff7-b59e-f6640177fa5b'),(103515,103515,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2022-02-09 23:17:11','2022-02-09 23:17:11','70ffc3f4-f1aa-4466-bab6-5646e2f32499'),(103516,103516,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2022-02-09 23:17:31','2022-02-09 23:17:31','241b3d25-d15e-4226-9399-17e26d7323ce'),(103517,103517,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2022-02-09 23:17:51','2022-02-09 23:17:51','54c5b269-4510-4c91-8f87-846fea056448'),(103518,103518,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2022-02-09 23:18:11','2022-02-09 23:18:11','e1c5169c-6fa7-4932-95ca-4c33ef430481'),(103519,103519,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2022-02-09 23:18:31','2022-02-09 23:18:31','7a647d8d-5d9c-4322-9e8e-990132d9ea5a'),(103520,103520,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2022-02-09 23:18:52','2022-02-09 23:18:52','efeaecbf-be7c-4d7e-82bb-28344436d81b'),(103521,103521,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2022-02-09 23:19:11','2022-02-09 23:19:11','f638d6f2-7b59-400b-b8d0-4fc55048ec8e'),(103522,103522,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2022-02-09 23:19:31','2022-02-09 23:19:31','241de5d8-3346-4ad2-94b8-966ca04725cc'),(103523,103523,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2022-02-09 23:19:51','2022-02-09 23:19:51','5ad63581-4a91-4d29-8b58-343c4586244b'),(103524,103524,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2022-02-09 23:20:11','2022-02-09 23:20:11','d6199049-32f7-4fb8-a3b9-5c9795c1f9ba'),(103525,103525,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2022-02-09 23:20:45','2022-02-09 23:20:45','a7b4f01e-be71-43d4-a37d-b09fcf6fd15f'),(103526,103526,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2022-02-09 23:21:04','2022-02-09 23:21:04','3054e600-a257-47d3-99ca-82a8e8ccfa9c'),(103527,103527,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2022-02-09 23:21:24','2022-02-09 23:21:24','3f49e046-8947-42bd-8519-74f6f4b149ee'),(103528,103528,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2022-02-09 23:21:44','2022-02-09 23:21:44','f99cf57b-f7f2-4b71-ac0c-63a463a5b832'),(103529,103529,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2022-02-09 23:22:04','2022-02-09 23:22:04','5755af88-7184-4861-94b1-53becf2bfdc1'),(103530,103530,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2022-02-09 23:22:24','2022-02-09 23:22:24','3f9db87d-2f9f-484b-9b76-f9e02e98a434'),(103531,103531,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2022-02-09 23:22:44','2022-02-09 23:22:44','0dd09a6d-1a0f-46aa-9e5b-3e08843a2d1f'),(103532,103532,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2022-02-09 23:23:05','2022-02-09 23:23:05','28fe86ba-5cc5-4c80-83f9-891d52f11d0f'),(103533,103533,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2022-02-09 23:23:25','2022-02-09 23:23:25','1c3831e7-238e-4bbc-bdf6-8486a186f155'),(103534,103534,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2022-02-09 23:23:45','2022-02-09 23:23:45','18eb108d-1e03-454f-b540-b9775470cc5d'),(103535,103535,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2022-02-09 23:24:04','2022-02-09 23:24:04','8eec5c99-741a-4e82-b2cc-e55cc3ef8781'),(103536,103536,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2022-02-09 23:24:25','2022-02-09 23:24:25','687585a9-55b5-4668-b443-9affc9fa4654'),(103537,103537,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2022-02-09 23:24:44','2022-02-09 23:24:44','92a84ee4-b673-4b91-81a5-164161088cfb'),(103538,103538,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2022-02-09 23:25:05','2022-02-09 23:25:05','046f8bec-3cd1-4c6c-bd80-c14663a50b03'),(103539,103539,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2022-02-09 23:25:24','2022-02-09 23:25:24','c3e016f1-067a-4ea4-8683-c0d431b48dba'),(103540,103540,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2022-02-09 23:35:11','2022-02-09 23:35:11','13593cce-1faa-4a55-a006-dca724c80697'),(103541,103541,1,'ryan-murray-brand-audit-submission-16-jun-2021','brandaudit/ryan-murray-brand-audit-submission-16-jun-2021',1,'2022-02-09 23:35:54','2022-02-09 23:35:54','dadfe271-34b0-4de6-86f7-4c79bd207c78'),(106869,106869,1,NULL,NULL,1,'2022-02-11 00:38:27','2022-02-11 00:38:27','fb7d8cfb-9b95-4c77-bb35-991ec4559b60'),(106870,106870,1,NULL,NULL,1,'2022-02-11 00:38:32','2022-02-11 00:38:32','e40a4c8e-2e17-42cc-baf8-07641d9fb925'),(106871,106871,1,NULL,NULL,1,'2022-02-11 02:00:18','2022-02-11 02:00:18','9d0a6772-5044-4037-a9ee-49fac5fd10af'),(106872,106872,1,NULL,NULL,1,'2022-02-11 02:33:40','2022-02-11 02:33:40','57888527-0973-44d4-9e28-22de3c557478'),(120588,120588,1,'contact','contact',1,'2022-02-22 23:50:42','2022-02-22 23:50:42','96951a79-3d3d-4d9f-91cd-52708e49d483'),(120590,120590,1,'contact','contact',1,'2022-02-22 23:52:06','2022-02-22 23:52:06','36e0351f-649f-4317-b394-0b4c918ec4ce'),(120623,120623,1,'home','__home__',1,'2022-02-23 02:56:20','2022-02-23 02:56:20','5b7ca438-c600-4138-b0e5-5226f72ab873'),(120624,120624,1,NULL,NULL,1,'2022-02-23 02:56:20','2022-02-23 02:56:20','fe80685c-e10e-42ca-bd8c-53159043ab0a'),(120625,120625,1,NULL,NULL,1,'2022-02-23 02:56:20','2022-02-23 02:56:20','2beda820-a07e-44cb-a858-6e7b44c1e30a'),(120626,120626,1,NULL,NULL,1,'2022-02-23 02:56:20','2022-02-23 02:56:20','d70e22bb-f39a-4fc0-b4e6-d5e28ac1930b'),(120627,120627,1,NULL,NULL,1,'2022-02-23 02:56:20','2022-02-23 02:56:20','24156025-4e27-4a9b-ac18-e3f2104932e9'),(120628,120628,1,NULL,NULL,1,'2022-02-23 02:56:20','2022-02-23 02:56:20','f9f0c048-84c8-4e04-a5e9-ec0c08734e68'),(120629,120629,1,NULL,NULL,1,'2022-02-23 02:56:20','2022-02-23 02:56:20','8298581c-e614-4058-9004-379892dfeb68'),(123478,123478,1,NULL,NULL,1,'2022-02-23 03:58:43','2022-02-23 03:58:43','9797a249-0ae7-4412-aeae-deff676a1fb4'),(123480,123480,1,'contact','contact',1,'2022-02-23 23:10:01','2022-02-23 23:10:01','9e65986e-df39-46e4-b225-cfaf479aa414'),(123482,123482,1,'contact','contact',1,'2022-02-23 23:10:12','2022-02-23 23:10:12','4eae1a22-f462-4529-97e3-743f12edef1d'),(123484,123484,1,'about-us','about',1,'2022-02-28 04:42:58','2022-02-28 04:42:58','3746bf2a-d7ec-46cf-af6f-d9ac69e243e9'),(139963,139963,1,NULL,NULL,1,'2022-03-28 03:20:07','2022-03-28 03:20:07','83c82cae-bf97-481e-93e9-2fad59240dc2'),(139967,139967,1,'you-for-2032','work/you-for-2032',1,'2022-04-21 04:01:59','2022-04-21 05:56:43','4227379d-e90d-482e-a6eb-bba4b715a311'),(139968,139968,1,'no-3-campaign-2','work/no-3-campaign-2',1,'2022-04-21 04:02:00','2022-04-21 04:02:00','853f9b3a-5513-406e-9602-c5f22bea7537'),(139970,139970,1,'no-3-campaign-2','work/no-3-campaign-2',1,'2022-04-21 04:09:31','2022-04-21 04:09:31','830ad921-877c-4ec5-a6b1-dca47bb547cd'),(139972,139972,1,'no-3-campaign-2','work/no-3-campaign-2',1,'2022-04-21 04:16:36','2022-04-21 04:16:36','a6b55e97-9cf0-495f-b283-be056aab2cf0'),(139973,139973,1,'heart-hq','work/heart-hq',1,'2022-04-21 04:17:13','2022-04-21 04:17:13','406d91da-9159-4796-a01c-aa82e16e99ad'),(139975,139975,1,NULL,NULL,1,'2022-04-21 05:48:06','2022-04-21 05:48:06','8e3fb9b5-1821-4772-8091-543d0c448c37'),(139976,139976,1,NULL,NULL,1,'2022-04-21 05:48:36','2022-04-21 05:48:36','1fc604ad-ed03-4264-b35a-34012c0628b7'),(139977,139977,1,NULL,NULL,1,'2022-04-21 05:48:48','2022-04-21 05:48:48','75e094b6-94dd-44bb-b367-69a6a36a8eeb'),(139978,139978,1,NULL,NULL,1,'2022-04-21 05:50:21','2022-04-21 05:50:21','2798f959-186d-4073-8459-3f313b999521'),(139979,139979,1,'no-3-campaign-2','work/no-3-campaign-2',1,'2022-04-21 05:52:06','2022-04-21 05:52:06','05043d82-c9d3-4978-b540-dde2a7e2775a'),(139981,139981,1,'your-for-2032','work/your-for-2032',1,'2022-04-21 05:53:06','2022-04-21 05:53:06','5da8f72b-c46a-4c3e-98bd-7fc869e279f3'),(139983,139983,1,'you-for-2032','work/you-for-2032',1,'2022-04-21 05:56:43','2022-04-21 05:56:43','63879e05-7f78-478e-b155-8b5e6110bd5c'),(139985,139985,1,'you-for-2032','work/you-for-2032',1,'2022-04-21 05:59:36','2022-04-21 05:59:36','e719702c-6cd9-4a4b-b1ce-d880584e16e4'),(139987,139987,1,'you-for-2032','work/you-for-2032',1,'2022-04-21 06:23:49','2022-04-21 06:23:49','299125d1-168b-4f9c-b82c-d3e976590733'),(139989,139989,1,'you-for-2032','work/you-for-2032',1,'2022-04-26 01:34:59','2022-04-26 01:34:59','e91da35b-e1ac-4a88-953a-8edca479ad6b'),(139990,139990,1,NULL,NULL,1,'2022-05-04 04:30:54','2022-05-04 04:30:54','8f45d5d7-37f5-467e-bd4a-8343751b2379'),(140001,140001,1,NULL,NULL,1,'2022-05-05 07:13:32','2022-05-05 07:13:32','51343c78-d08b-484a-aace-3d4c19eed24b'),(140005,140005,1,NULL,NULL,1,'2022-05-05 07:24:58','2022-05-05 07:24:58','b6d2b5d4-c25b-49e8-a621-ef55e62cb8d0'),(140009,140009,1,NULL,NULL,1,'2022-05-05 07:25:51','2022-05-05 07:25:51','3e675f33-e285-46c2-8e06-80d81f3e850a'),(140013,140013,1,'chevron','work/chevron',1,'2022-05-05 23:48:29','2022-05-05 23:50:02','63069b40-ec30-4627-84b1-c9249735b0de'),(140014,140014,1,'chevron','work/chevron',1,'2022-05-05 23:52:17','2022-05-05 23:52:17','9fc4755d-d12e-4bcf-9a5a-51d0ec50d6e6'),(140016,140016,1,'chevron','work/chevron',1,'2022-05-06 00:20:33','2022-05-06 00:20:33','f01e0e23-897e-457d-a9d4-6ab9b6c07bce'),(140018,140018,1,'chevron','work/chevron',1,'2022-05-06 00:21:23','2022-05-06 00:21:23','ce70b6c7-1d9f-4e18-bdc7-ae6d502dd6a6'),(140020,140020,1,'chevron','work/chevron',1,'2022-05-06 00:23:13','2022-05-06 00:23:13','cf25c9d6-8175-492c-a6c0-eb4cf674dbc1'),(140022,140022,1,'chevron','work/chevron',1,'2022-05-06 00:24:49','2022-05-06 00:24:49','0af7d450-4ba0-464f-ba03-aa119ab2474f'),(140024,140024,1,'chevron','work/chevron',1,'2022-05-06 00:45:00','2022-05-06 00:45:00','f10d7607-b03a-45d0-8da0-76ccf7defee8'),(140025,140025,1,'chevron','work/chevron',1,'2022-05-06 00:45:42','2022-05-06 00:45:42','e9517574-ca3e-40af-b2d2-83e5a88bce83'),(140027,140027,1,'chevron','work/chevron',1,'2022-05-06 00:46:55','2022-05-06 00:46:55','1e53f8f4-d255-4ac2-b394-5241e947bed8'),(140029,140029,1,'chevron','work/chevron',1,'2022-05-06 00:47:13','2022-05-06 00:47:13','537ab8de-f88d-4785-bb34-51be8ecf20e8'),(140031,140031,1,'chevron','work/chevron',1,'2022-05-06 00:48:08','2022-05-06 00:48:08','9c1ab567-2b3d-45ad-8f5c-8c9bef66141d'),(140032,140032,1,'rural-aid','work/rural-aid',1,'2022-05-06 00:48:46','2022-05-06 00:48:46','9ddd5fe2-1bf6-4725-9992-db8dccf282b2'),(140034,140034,1,'chevron','work/chevron',1,'2022-05-06 00:49:41','2022-05-06 00:49:41','c6de7735-fb69-48af-b646-615561622987'),(140036,140036,1,'chevron','work/chevron',1,'2022-05-06 00:50:13','2022-05-06 00:50:13','6131d20c-8a67-4f46-9603-b47c834817c9'),(140038,140038,1,'chevron','work/chevron',1,'2022-05-06 00:50:23','2022-05-06 00:50:23','ad2eaa48-e9bf-4473-bf3d-97ed0690b57e'),(140040,140040,1,'chevron','work/chevron',1,'2022-05-06 00:50:54','2022-05-06 00:50:54','8f90947b-1e81-41c8-98be-37444237c0f7'),(140042,140042,1,'chevron','work/chevron',1,'2022-05-06 00:51:48','2022-05-06 00:51:48','c4748bce-6c8a-46b1-a0c8-265687531896'),(140044,140044,1,'chevron','work/chevron',1,'2022-05-06 00:52:39','2022-05-06 00:52:39','4d3dc9a1-3672-4984-bac4-678b7ec0ff41'),(140045,140045,1,'chevron','work/chevron',1,'2022-05-06 00:52:56','2022-05-06 00:52:56','e43491f2-5226-4e3b-8ad0-f40535428e5c'),(140047,140047,1,'chevron','work/chevron',1,'2022-05-06 00:54:04','2022-05-06 00:54:04','5b3d1ece-ad3c-466d-94d5-ce9890b66aa8'),(140049,140049,1,'chevron','work/chevron',1,'2022-05-06 00:57:20','2022-05-06 00:57:20','d33848cb-b208-4e35-a87b-ff96bd905cec'),(140051,140051,1,'chevron','work/chevron',1,'2022-05-06 01:07:35','2022-05-06 01:07:35','a1873462-5e34-443c-bb22-30fc7f3a2acd'),(140053,140053,1,'chevron','work/chevron',1,'2022-05-09 02:55:19','2022-05-09 02:55:19','1ea2b402-cb0b-4c39-acd3-46d16f5ad22f'),(140055,140055,1,'chevron','work/chevron',1,'2022-05-09 03:32:34','2022-05-09 03:32:34','fff526e9-dc12-40d5-b951-911caa79129e'),(140057,140057,1,NULL,NULL,1,'2022-05-09 03:37:59','2022-05-09 03:37:59','34c40ad0-8c87-4583-b671-429e072c7f91'),(140058,140058,1,'chevron','work/chevron',1,'2022-05-09 03:38:16','2022-05-09 03:38:16','c5bd0cf0-d428-4904-a791-1376898482d0'),(140060,140060,1,'burnie-brae','work/burnie-brae',1,'2022-05-09 03:59:14','2022-05-09 03:59:31','121a4972-6d6f-4dde-ba7a-6e8e6ba84a0f'),(140061,140061,1,'burnie-brae','work/burnie-brae',1,'2022-05-09 03:59:42','2022-05-09 03:59:42','2ce46a8b-da4a-4e29-84d8-80f03e8d29bb'),(140063,140063,1,NULL,NULL,1,'2022-05-09 04:00:52','2022-05-09 04:00:52','876613cb-9a33-4e7a-afff-28ac348450e7'),(140064,140064,1,NULL,NULL,1,'2022-05-09 04:01:02','2022-05-09 04:01:02','fd303332-5b86-41d8-93f1-100b5da41a52'),(140065,140065,1,NULL,NULL,1,'2022-05-09 04:01:06','2022-05-09 04:01:06','2c3ea081-f9ea-4946-95e6-ce7abf26352f'),(140066,140066,1,NULL,NULL,1,'2022-05-09 04:01:10','2022-05-09 04:01:10','c5581188-139c-4b82-985a-f8980da1bfe2'),(140067,140067,1,'burnie-brae','work/burnie-brae',1,'2022-05-09 04:02:49','2022-05-09 04:02:49','5684942c-6496-4b07-a00c-a3822893a846'),(140069,140069,1,NULL,NULL,1,'2022-05-09 04:38:40','2022-05-09 04:38:40','9ac5db7d-0062-4681-b528-180090346a95'),(140070,140070,1,'burnie-brae','work/burnie-brae',1,'2022-05-09 04:38:50','2022-05-09 04:38:50','f4122363-eff3-4c1f-b67e-87dbf5939503'),(140071,140071,1,'burnie-brae','work/burnie-brae',1,'2022-05-09 04:38:59','2022-05-09 04:38:59','460104b3-9e9b-4ab5-b529-f784ed6acf9b'),(140073,140073,1,'burnie-brae','work/burnie-brae',1,'2022-05-09 04:39:17','2022-05-09 04:39:17','ff876cc4-6ab1-46b5-aee3-c221c2487521'),(140074,140074,1,'burnie-brae','work/burnie-brae',1,'2022-05-09 04:39:44','2022-05-09 04:39:44','3a1c974f-ce71-4595-934c-f3dd3cd9be1c'),(140076,140076,1,NULL,NULL,1,'2022-05-09 04:56:09','2022-05-09 04:56:09','f97acf93-f0f4-4f5c-87d3-e92a23e9361b'),(140077,140077,1,'burnie-brae','work/burnie-brae',1,'2022-05-09 04:56:16','2022-05-09 04:56:16','7c8b3c8d-c463-416f-a055-4d88c80efde8'),(140078,140078,1,'burnie-brae','work/burnie-brae',1,'2022-05-09 04:56:24','2022-05-09 04:56:24','2e35b957-a636-4ba3-a40a-bb028dac8c0a'),(140080,140080,1,NULL,NULL,1,'2022-05-09 04:56:45','2022-05-09 04:56:45','4a2bf422-8ad1-4c93-b853-56a16a0866d1'),(140081,140081,1,'burnie-brae','work/burnie-brae',1,'2022-05-09 04:56:57','2022-05-09 04:56:57','5411ce2f-f684-4bb9-bbf6-f9978585bdd8'),(140082,140082,1,'burnie-brae','work/burnie-brae',1,'2022-05-09 04:57:07','2022-05-09 04:57:07','66891941-233b-4f20-a1ce-992904d6fb8e'),(140083,140083,1,'burnie-brae','work/burnie-brae',1,'2022-05-09 04:57:42','2022-05-09 04:57:42','87979747-caeb-407b-b456-d45bd24546a5'),(140084,140084,1,'burnie-brae','work/burnie-brae',1,'2022-05-09 05:41:34','2022-05-09 05:41:34','3d5c17c1-c0d1-45bf-ad37-4ebd55b91e5f'),(140086,140086,1,NULL,NULL,1,'2022-05-09 05:42:23','2022-05-09 05:42:23','bd1fbded-8d7c-4582-866b-b47c561b83e6'),(140087,140087,1,NULL,NULL,1,'2022-05-09 05:42:42','2022-05-09 05:42:42','da486c9b-af95-4906-8080-f7042549355a'),(140088,140088,1,NULL,NULL,1,'2022-05-09 05:44:06','2022-05-09 05:44:06','f3f51a9b-38f1-4072-8aaa-333fc4acffa5'),(140092,140092,1,NULL,NULL,1,'2022-05-09 05:47:50','2022-05-09 05:47:50','0eed2721-f5b4-4db7-a5ed-3d90a1766898'),(140093,140093,1,NULL,NULL,1,'2022-05-09 05:49:31','2022-05-09 05:49:31','029ebe0f-30fa-4927-b90f-0726fe97daf1'),(140105,140105,1,'chevron','work/chevron',1,'2022-05-12 03:26:42','2022-05-12 03:26:42','c3f27642-c66c-4e74-b64c-c57db5926be4'),(140107,140107,1,'burnie-brae','work/burnie-brae',1,'2022-05-12 06:39:12','2022-05-12 06:39:12','986c9ab9-d879-427d-9efe-f48d05e8de62'),(140109,140109,1,'chevron','work/chevron',1,'2022-05-12 07:42:41','2022-05-12 07:42:41','7d48d93b-8ce7-4e26-8b48-a448334bfb6e'),(140111,140111,1,'chevron','work/chevron',1,'2022-05-13 00:03:12','2022-05-13 00:03:12','6c991a79-931f-480e-8a11-2cec87d1423a'),(140113,140113,1,'endeavour-foundation','work/endeavour-foundation',1,'2022-05-16 04:02:10','2022-05-16 04:02:10','0cbc6066-0634-4925-88c6-4252fe6b7f93'),(140115,140115,1,'endeavour-foundation','work/endeavour-foundation',1,'2022-05-16 04:02:36','2022-05-16 04:02:36','521be77a-6e4e-4ee1-9bb5-f36cac30af80'),(140117,140117,1,'endeavour-foundation','work/endeavour-foundation',1,'2022-05-16 04:03:16','2022-05-16 04:03:16','185f1270-ec0f-4720-81c6-85844175b752'),(140119,140119,1,'endeavour-foundation','work/endeavour-foundation',1,'2022-05-16 04:04:22','2022-05-16 04:04:22','5b070c19-32f8-4f37-ae67-8658e2e6b692'),(140121,140121,1,'chevron','work/chevron',1,'2022-05-16 04:28:37','2022-05-16 04:28:37','a4419690-fa04-42a3-93b7-6a2d3549a00b'),(140123,140123,1,'burnie-brae','work/burnie-brae',1,'2022-05-17 02:45:06','2022-05-17 02:45:06','19ea162c-c8aa-4ab9-a8b7-e9ae45644974'),(140124,140124,1,'terms-and-conditions','terms-and-conditions',1,'2022-05-17 03:06:41','2022-05-17 03:06:41','0b4ec9af-140d-4be7-92cf-653c077c8470'),(140125,140125,1,'privacy-policy','privacy-policy',1,'2022-05-17 23:19:11','2022-05-17 23:19:11','a0fa60ef-d1e0-4f7e-920a-18f8e66d5192'),(140126,140126,1,'privacy-policy','privacy-policy',1,'2022-05-17 23:19:12','2022-05-17 23:19:12','2e6e7f82-e368-49ef-a13d-c33a63f38918'),(140127,140127,1,'contact','contact',1,'2022-05-17 23:19:13','2022-05-17 23:19:13','6f3032fd-f1a7-45e1-9ee1-fa97dfb3f355'),(140128,140128,1,'contact','contact',1,'2022-05-17 23:19:14','2022-05-17 23:19:14','6f660714-0495-4059-bc05-e31bc08810b7'),(140129,140129,1,'home','__home__',1,'2022-05-17 23:19:15','2022-05-17 23:19:15','d3850c0b-e818-4cb6-a3d6-c786ee0f638e'),(140130,140130,1,NULL,NULL,1,'2022-05-17 23:19:16','2022-05-17 23:19:16','434b5df6-571a-4664-921e-3cb69ca6cdd8'),(140131,140131,1,NULL,NULL,1,'2022-05-17 23:19:16','2022-05-17 23:19:16','3422887c-5227-443b-b943-073a4823b8b1'),(140132,140132,1,NULL,NULL,1,'2022-05-17 23:19:16','2022-05-17 23:19:16','e2510e06-ca31-444f-befe-8d197ab5b4b4'),(140133,140133,1,NULL,NULL,1,'2022-05-17 23:19:16','2022-05-17 23:19:16','123d593f-fb72-4b25-9130-ef655a6b92e0'),(140134,140134,1,NULL,NULL,1,'2022-05-17 23:19:16','2022-05-17 23:19:16','1cd2e1e7-5c84-4d70-88bf-2645cf80d35e'),(140135,140135,1,NULL,NULL,1,'2022-05-17 23:19:16','2022-05-17 23:19:16','66990428-8eff-434c-81e4-42561b4ed739'),(140136,140136,1,'home','__home__',1,'2022-05-17 23:19:16','2022-05-17 23:19:16','a8a02593-41ed-49db-a602-ea5f73dd0dd8'),(140137,140137,1,'terms-and-conditions','terms-and-conditions',1,'2022-05-17 23:19:17','2022-05-17 23:19:17','0906517e-e647-4bf1-bdb0-16f29d2565db'),(140138,140138,1,'terms-and-conditions','terms-and-conditions',1,'2022-05-17 23:19:18','2022-05-17 23:19:18','b3c7cb2a-8559-473d-9c23-591ed87c0830'),(140139,140139,1,'about-us','about',1,'2022-05-17 23:19:19','2022-05-17 23:19:19','1bdb580a-7f88-4b34-8ce1-22c225a728ce'),(140140,140140,1,'about-us','about',1,'2022-05-17 23:19:20','2022-05-17 23:19:20','3e68eb43-9542-4a84-895b-342b1da50557'),(140141,140141,1,'update-details','update-details',1,'2022-05-17 23:19:21','2022-05-17 23:19:21','05fde5e1-556c-4768-87a8-df8d08ff925c'),(140142,140142,1,'update-details','update-details',1,'2022-05-17 23:19:22','2022-05-17 23:19:22','ca47aad9-2bae-4aa3-82a9-d336fee5f68b'),(140143,140143,1,'email-sigs','email-sigs',1,'2022-05-17 23:19:23','2022-05-17 23:19:23','a4c70ccf-28a9-4da6-b0a5-0eaa462a86a3'),(140144,140144,1,'email-sigs','email-sigs',1,'2022-05-17 23:19:24','2022-05-17 23:19:24','8458cdd9-2cae-4d1c-8680-b768022190e4'),(140146,140146,1,'chevron','work/chevron',1,'2022-05-18 00:47:09','2022-05-18 00:47:09','3af07b4b-503b-4945-9b32-24ad08047467'),(140148,140148,1,'chevron','work/chevron',1,'2022-05-18 00:51:56','2022-05-18 00:51:56','0d907883-7bed-4ef9-a972-c4570d5e48ca'),(140153,140153,1,'about-us','about',1,'2022-05-30 01:16:35','2022-05-30 01:16:35','a6105089-e087-41d5-95b0-8f234085917d'),(140157,140157,1,'hear-the-equality-stories-from-nwo-women','articles/hear-the-equality-stories-from-nwo-women',1,'2022-05-30 01:17:28','2022-05-30 01:17:28','9ed0119c-8be9-4c6c-b916-d5b55a271cc7'),(140159,140159,1,'these-are-a-few-of-our-favourite-brands','articles/these-are-a-few-of-our-favourite-brands',1,'2022-05-30 01:17:47','2022-05-30 01:17:47','be22ad36-2e65-448c-a232-3440535355cf'),(140160,140160,1,'break-away-from-the-same-same-with-custom-illustration','articles/break-away-from-the-same-same-with-custom-illustration',1,'2022-05-30 01:18:11','2022-05-30 01:18:11','4cb418d5-b1c7-4bd5-8a17-7c2a012ee313'),(140162,140162,1,'why-you-need-a-six-month-comms-strategy-for-your-website','articles/why-you-need-a-six-month-comms-strategy-for-your-website',1,'2022-05-30 01:18:23','2022-05-30 01:18:23','137b23e7-9ea8-4b98-b1dc-25cc99f7cac5'),(140163,140163,1,'pretty-or-powerful-and-can-you-have-it-all','articles/pretty-or-powerful-and-can-you-have-it-all',1,'2022-05-30 01:18:33','2022-05-30 01:18:33','cdd16413-0b69-4548-be15-924deba9fafc'),(140165,140165,1,'seven-mistakes-people-make-building-websites','articles/seven-mistakes-people-make-building-websites',1,'2022-05-30 01:18:46','2022-05-30 01:18:46','270956a8-faec-48d6-b826-8af6a010eccf'),(140166,140166,1,'the-building-blocks-of-branding','articles/the-building-blocks-of-branding',1,'2022-05-30 01:18:57','2022-05-30 01:18:57','3e4fdb43-f9f4-4626-887c-20bbbcdcefda'),(140168,140168,1,'how-to-really-consult-your-stakeholders','articles/how-to-really-consult-your-stakeholders',1,'2022-05-30 01:19:07','2022-05-30 01:19:07','05c6d1e4-692a-4bdb-8756-28f16e154cca'),(140169,140169,1,'simplifying-the-complex-fifteen-years-of-marketing-schools','articles/simplifying-the-complex-fifteen-years-of-marketing-schools',1,'2022-05-30 01:19:18','2022-05-30 01:19:18','a4c487c4-cdf2-4914-9ceb-e942a61baed8'),(140170,140170,1,'the-6-steps-of-content-creation','articles/the-6-steps-of-content-creation',1,'2022-05-30 01:19:30','2022-05-30 01:19:30','3fa51051-a440-49af-801d-a7b22579571e'),(140171,140171,1,'b2b-is-dead','articles/b2b-is-dead',1,'2022-05-30 01:19:40','2022-05-30 01:19:40','c7a0f9f9-f057-4a40-ae42-e8482b04702a'),(140172,140172,1,'8-important-marketing-questions-for-every-business','articles/8-important-marketing-questions-for-every-business',1,'2022-05-30 01:19:53','2022-05-30 01:19:53','19c6e025-0786-4f15-be3a-1e3870643299'),(140173,140173,1,'what-the-artist-breaks','articles/what-the-artist-breaks',1,'2022-05-30 01:20:04','2022-05-30 01:20:04','8d049da8-6aba-45cf-bd23-d3080f3c8bee'),(140174,140174,1,'righting-writing','articles/righting-writing',1,'2022-05-30 01:20:14','2022-05-30 01:20:14','a92cc09a-8c52-4ade-9e21-1a85de1785d5'),(140176,140176,1,'chevron','work/chevron',1,'2022-05-30 01:20:27','2022-05-30 01:20:27','3ab57107-5faa-499a-89e1-d31aaece8439'),(140178,140178,1,'new-word-order','work/new-word-order',1,'2022-05-30 01:20:35','2022-05-30 01:20:35','c997a3b6-f995-4722-b437-6cc812e83b8e'),(140180,140180,1,'aseeos','work/aseeos',1,'2022-05-30 01:21:54','2022-05-30 01:21:54','7a67131d-2e47-4185-a189-fc5ddfd5d3b4'),(140181,140181,1,'department-of-transport-and-main-roads','work/department-of-transport-and-main-roads',1,'2022-05-30 01:22:14','2022-05-30 01:22:14','b662ed41-6f4d-40de-993a-44cee5e3f045'),(140182,140182,1,'pivotus','work/pivotus',1,'2022-05-30 01:22:34','2022-05-30 01:22:34','17487b65-d28a-4349-af2c-a0fb453054ac'),(140183,140183,1,'pivotus','work/pivotus',1,'2022-05-30 01:22:36','2022-05-30 01:22:36','9fb71a90-4e29-4a95-b45a-151c4413d97e'),(140184,140184,1,'department-of-housing-and-public-works','work/department-of-housing-and-public-works',1,'2022-05-30 01:22:52','2022-05-30 01:22:52','5a46d542-b680-4cb4-bb02-913fed9e0ec8'),(140185,140185,1,'brisbane-south-phn','work/brisbane-south-phn',1,'2022-05-30 01:23:12','2022-05-30 01:23:12','bfa6203e-984f-41b5-adf8-fb94994cee7b'),(140187,140187,1,'brisbane-south-phn','work/brisbane-south-phn',1,'2022-05-30 01:24:10','2022-05-30 01:24:10','fded5ce7-d006-413a-bec3-36e8a3ba348a'),(140189,140189,1,'brisbane-north-phn-website','work/brisbane-north-phn-website',1,'2022-05-30 01:24:58','2022-05-30 01:24:58','b0446b45-625b-4059-a8e5-2fef98d01f8d'),(140191,140191,1,'endeavour-foundation','work/endeavour-foundation',1,'2022-05-30 01:26:47','2022-05-30 01:26:47','78ca39f7-b34b-4ed1-8a97-c8f4a1afba27'),(140193,140193,1,'endeavour-foundation','work/endeavour-foundation',1,'2022-05-30 01:28:56','2022-05-30 01:28:56','8b33aa54-763d-4e0e-a47c-f35ee2eee318'),(140195,140195,1,'west-moreton-anglican-college','work/west-moreton-anglican-college',1,'2022-05-30 01:29:36','2022-05-30 01:29:36','caab842d-ceba-487f-998e-1fa55605bb96'),(140197,140197,1,'endeavour-foundation','work/endeavour-foundation',1,'2022-05-30 01:30:24','2022-05-30 01:30:24','aca63e9f-3577-4d72-8bd2-b8b03fd178b2'),(140199,140199,1,'heart-hq','work/heart-hq',1,'2022-05-30 01:31:34','2022-05-30 01:31:34','9e924560-03c7-4eb1-8b66-71bd437c1a6c'),(140201,140201,1,'coomera-anglican-college','work/coomera-anglican-college',1,'2022-05-30 01:32:36','2022-05-30 01:32:36','1c0b6783-3ace-405b-90f1-379bb88c3331'),(140205,140205,1,'coomera-anglican-college','work/coomera-anglican-college',1,'2022-05-30 01:33:15','2022-05-30 01:33:15','59aef32e-1d36-46b2-9161-099b9537f045'),(140206,140206,1,'rural-aid','work/rural-aid',1,'2022-05-30 01:34:00','2022-05-30 01:34:00','898a6850-398d-45ec-9fba-38f86bbda562'),(140208,140208,1,'my-mental-health','work/my-mental-health',1,'2022-05-30 01:34:51','2022-05-30 01:34:51','ea936b62-fcb6-4de3-a868-fa470d4f6ce5'),(140210,140210,1,'right-time-right-place','work/right-time-right-place',1,'2022-05-30 01:36:15','2022-05-30 01:36:15','76b6dde9-d181-423f-a862-ec8019985c6d'),(140212,140212,1,'safe-to-see-your-gp','work/safe-to-see-your-gp',1,'2022-05-30 01:37:10','2022-05-30 01:37:10','9d19a9f4-62eb-4c08-a6ff-4d0f37d75987'),(140214,140214,1,'qmhc','work/qmhc',1,'2022-05-30 01:37:38','2022-05-30 01:37:38','2138c91d-5815-468b-9d6b-98747540ff6c'),(140216,140216,1,'nspt','work/nspt',1,'2022-05-30 01:38:27','2022-05-30 01:38:27','3a03839e-7f4e-4886-b59e-8e024d4fe866'),(140218,140218,1,'tritium','work/tritium',1,'2022-05-30 01:39:39','2022-05-30 01:39:39','4431ed09-abf2-45cd-9901-552d1bffa6f1'),(140220,140220,1,'medical-mums','work/medical-mums',1,'2022-05-30 01:40:48','2022-05-30 01:40:48','f3f2740a-aadf-4d24-886d-314d31873665'),(140222,140222,1,'reasons-to-stay','work/reasons-to-stay',1,'2022-05-30 01:41:22','2022-05-30 01:41:22','e3ffb104-6c84-4740-bfb3-2ad26b0277df'),(140224,140224,1,'you-for-2032','work/you-for-2032',1,'2022-05-30 01:42:16','2022-05-30 01:42:16','ed89be98-16ef-481b-a9af-356f160a6cdd'),(140226,140226,1,'no-3-campaign','work/no-3-campaign',1,'2022-05-30 01:42:50','2022-05-30 01:42:50','13feb59f-4d3e-429e-980c-56ced9d23387'),(140230,140230,1,'dfv-campaign','work/dfv-campaign',1,'2022-05-30 01:44:13','2022-05-30 01:44:13','cef24424-bb18-48da-96b6-46a4b16f1347'),(140232,140232,1,'revelian','work/revelian',1,'2022-05-30 01:45:01','2022-05-30 01:45:01','083485c3-8eb0-48d5-b314-578a0067f7a0'),(140233,140233,1,'chevron','work/chevron',1,'2022-05-31 04:26:01','2022-05-31 04:26:01','66f06f7f-a65d-4452-9a24-6eac6f5ba781'),(140235,140235,1,'burnie-brae','work/burnie-brae',1,'2022-05-31 06:08:14','2022-05-31 06:08:14','7ee7c0ec-2a48-47e4-98ea-e7407dd31525'),(140237,140237,1,'burnie-brae','work/burnie-brae',1,'2022-05-31 06:21:51','2022-05-31 06:21:51','15bfaaac-0dd9-4f2d-8501-ef08ec3ceb40'),(140245,140245,1,'burnie-brae','work/burnie-brae',1,'2022-06-02 03:48:39','2022-06-02 03:48:39','82522ecb-5515-4743-a70f-2e3e6db5fac4'),(140246,140246,1,'careers','careers',1,'2022-06-05 23:23:59','2022-06-05 23:23:59','db9b8ff8-9f74-4901-b7be-ebfc95090a04'),(140247,140247,1,'careers','careers',1,'2022-06-05 23:23:59','2022-06-05 23:23:59','83491a37-4e6b-41cf-9cef-c9c37d232edc'),(140248,140248,1,'careers','careers',1,'2022-06-05 23:24:01','2022-06-05 23:24:01','4607c426-37f7-4fbd-a6c9-fa536831c737'),(140249,140249,1,'careers','careers',1,'2022-06-05 23:24:03','2022-06-05 23:24:03','9891ba8e-7a52-4f76-91d6-5431f030d757'),(140250,140250,1,'careers','careers',1,'2022-06-05 23:24:04','2022-06-05 23:24:04','ae6a32f7-4e81-4a60-a96b-fd901169c867'),(140252,140252,1,'careers','careers',1,'2022-06-05 23:35:20','2022-06-05 23:35:20','0cf88888-0a41-43e1-8111-ba20809cc1f4'),(140254,140254,1,'careers','careers',1,'2022-06-05 23:35:51','2022-06-05 23:35:51','9e2b4ce3-efda-44e4-99d4-9317767b3fbe'),(140427,140427,1,'chevron','work/chevron',1,'2022-06-12 23:56:38','2022-06-12 23:56:38','330b6dff-b7b8-48c4-a3ad-fccbdfb2d1e6'),(140428,140428,1,'about-us','about',1,'2022-06-14 01:21:10','2022-06-14 01:21:10','628d4962-df61-42cf-91ed-2e0275bd7ec0'),(140513,140513,1,NULL,NULL,1,'2022-06-16 23:07:06','2022-06-16 23:07:06','24029ec7-5cc2-4ddd-a124-4c996f2743bb'),(140516,140516,1,'chevron','work/chevron',1,'2022-06-19 22:46:14','2022-06-19 22:46:14','47e5aaae-b95e-43b8-88dd-f263ee5fbf88'),(140787,140787,1,NULL,NULL,1,'2022-06-23 00:35:52','2022-06-23 00:35:52','d3d9e632-b8b1-471a-b64b-5049fdf97dfd'),(141052,141052,1,NULL,NULL,1,'2022-06-23 04:12:37','2022-06-23 04:12:37','500a33d6-bc99-4465-a885-3ffff3950fec'),(141227,141227,1,NULL,NULL,1,'2022-06-23 06:15:18','2022-06-23 06:15:18','e68d9a9b-726c-45bc-8103-71b3252652c9'),(141312,141312,1,'jul-2015','reports/jul-2015',1,'2022-06-23 06:46:21','2022-06-23 06:46:21','3f57a6c1-49fe-48b3-a96e-69c2f097dd70'),(141313,141313,1,'jul-2015','reports/jul-2015',1,'2022-06-23 06:46:21','2022-06-23 06:46:21','9af679ff-fed8-4cb4-8ff8-7e98937c85cb'),(141314,141314,1,'aug-2015','reports/aug-2015',1,'2022-06-23 06:46:23','2022-06-23 06:46:23','b6a99596-f308-4419-901f-9041c5787ae6'),(141315,141315,1,'aug-2015','reports/aug-2015',1,'2022-06-23 06:46:23','2022-06-23 06:46:23','bedb0529-5598-4a8a-8883-d98610633c59'),(141316,141316,1,'sep-2015','reports/sep-2015',1,'2022-06-23 06:46:25','2022-06-23 06:46:25','0669f5c6-49ba-4898-848e-175cf5c80354'),(141317,141317,1,'sep-2015','reports/sep-2015',1,'2022-06-23 06:46:25','2022-06-23 06:46:25','39c85f18-7335-4ec6-8ac3-f884448ce9e4'),(141318,141318,1,'oct-2015','reports/oct-2015',1,'2022-06-23 06:46:27','2022-06-23 06:46:27','66259ed3-feb1-4f86-ab52-da4af0b29c60'),(141319,141319,1,'oct-2015','reports/oct-2015',1,'2022-06-23 06:46:27','2022-06-23 06:46:27','fa0cd8f7-f6f4-4b70-b617-3d2ea5db1c36'),(141320,141320,1,'nov-2015','reports/nov-2015',1,'2022-06-23 06:46:29','2022-06-23 06:46:29','2f1450da-bc89-4236-b993-db5810d537e4'),(141321,141321,1,'nov-2015','reports/nov-2015',1,'2022-06-23 06:46:29','2022-06-23 06:46:29','507219f1-d8cf-4e02-b82d-38ee701eaedd'),(141322,141322,1,'dec-2015','reports/dec-2015',1,'2022-06-23 06:46:30','2022-06-23 06:46:30','cf3c3336-be0f-4008-985d-80bab5d3c348'),(141323,141323,1,'dec-2015','reports/dec-2015',1,'2022-06-23 06:46:30','2022-06-23 06:46:30','77c023cb-d618-4ed3-8447-1ced52e09081'),(141324,141324,1,'jan-2016','reports/jan-2016',1,'2022-06-23 06:46:32','2022-06-23 06:46:32','5804517d-f43a-46e5-bdcd-aab24f494f08'),(141325,141325,1,'jan-2016','reports/jan-2016',1,'2022-06-23 06:46:32','2022-06-23 06:46:32','e87ea136-175f-4fa4-ba38-99b4f45182be'),(141326,141326,1,'feb-2016','reports/feb-2016',1,'2022-06-23 06:46:33','2022-06-23 06:46:33','28a4467f-0020-4944-9aea-08bd87b3f434'),(141327,141327,1,'feb-2016','reports/feb-2016',1,'2022-06-23 06:46:33','2022-06-23 06:46:33','0d5cf717-8a0c-4e47-b31f-a1e7fd20de8b'),(141328,141328,1,'mar-2016','reports/mar-2016',1,'2022-06-23 06:46:35','2022-06-23 06:46:35','5713ba50-0695-40d8-8c43-b9c729d34f6b'),(141329,141329,1,'mar-2016','reports/mar-2016',1,'2022-06-23 06:46:35','2022-06-23 06:46:35','55434884-3e07-492c-94ca-da064afe8443'),(141330,141330,1,'apr-2016','reports/apr-2016',1,'2022-06-23 06:46:37','2022-06-23 06:46:37','b431c576-1e40-4198-b16b-6dd4554d0720'),(141331,141331,1,'apr-2016','reports/apr-2016',1,'2022-06-23 06:46:37','2022-06-23 06:46:37','e453c676-e6c0-45ba-8e4d-df11db614092'),(141332,141332,1,'may-2016','reports/may-2016',1,'2022-06-23 06:46:39','2022-06-23 06:46:39','321bc4f8-7a96-4dc4-8afc-882e1e60d67c'),(141333,141333,1,'may-2016','reports/may-2016',1,'2022-06-23 06:46:39','2022-06-23 06:46:39','663f3c0a-8a76-4ecd-b533-31328b1fea74'),(141334,141334,1,'jun-2016','reports/jun-2016',1,'2022-06-23 06:46:41','2022-06-23 06:46:41','046fb493-e171-4499-a842-4fe876f8c0a0'),(141335,141335,1,'jun-2016','reports/jun-2016',1,'2022-06-23 06:46:41','2022-06-23 06:46:41','28408a70-7c0d-4626-91bf-f638b339c612'),(141336,141336,1,'jul-2016','reports/jul-2016',1,'2022-06-23 06:46:43','2022-06-23 06:46:43','cf957202-fe87-4316-b98c-8c5f003237ad'),(141337,141337,1,'jul-2016','reports/jul-2016',1,'2022-06-23 06:46:43','2022-06-23 06:46:43','c07afb25-83a6-4c65-a281-8324fba0e0d4'),(141338,141338,1,'aug-2016','reports/aug-2016',1,'2022-06-23 06:46:45','2022-06-23 06:46:45','a6c15c27-9ec8-4441-88ed-8028e21fe934'),(141339,141339,1,'aug-2016','reports/aug-2016',1,'2022-06-23 06:46:45','2022-06-23 06:46:45','71295388-44f9-4b16-8cdd-09c109df9c88'),(141340,141340,1,'sep-2016','reports/sep-2016',1,'2022-06-23 06:46:46','2022-06-23 06:46:46','ee875364-737c-4ffb-a355-cebf32c5bac6'),(141341,141341,1,'sep-2016','reports/sep-2016',1,'2022-06-23 06:46:46','2022-06-23 06:46:46','bd9254c7-c2ca-4f73-b66c-d6b3c10413d0'),(141342,141342,1,'oct-2016','reports/oct-2016',1,'2022-06-23 06:46:48','2022-06-23 06:46:48','099a4e54-3143-45fa-bad1-53f270268ce6'),(141343,141343,1,'oct-2016','reports/oct-2016',1,'2022-06-23 06:46:48','2022-06-23 06:46:48','fc23101a-882c-48c9-bd7c-cc34fdc3e8c8'),(141344,141344,1,'nov-2016','reports/nov-2016',1,'2022-06-23 06:46:49','2022-06-23 06:46:49','855e1f4b-e300-4f0e-9f2e-2e4551b859e0'),(141345,141345,1,'nov-2016','reports/nov-2016',1,'2022-06-23 06:46:49','2022-06-23 06:46:49','b4689965-8e7f-4b74-b827-989dbabaef2c'),(141346,141346,1,'dec-2016','reports/dec-2016',1,'2022-06-23 06:46:50','2022-06-23 06:46:50','a3b7ccd5-d27d-41ae-ae19-4d8a7ce93ab7'),(141347,141347,1,'dec-2016','reports/dec-2016',1,'2022-06-23 06:46:50','2022-06-23 06:46:50','bb80e51d-2287-4319-b6d1-d08c7fe39a25'),(141348,141348,1,'jan-2017','reports/jan-2017',1,'2022-06-23 06:46:52','2022-06-23 06:46:52','b3c942b8-466a-4178-89fd-603e1c02a0ba'),(141349,141349,1,'jan-2017','reports/jan-2017',1,'2022-06-23 06:46:52','2022-06-23 06:46:52','969f3ecb-60ff-48e8-9ce5-27059bbbea26'),(141350,141350,1,'feb-2017','reports/feb-2017',1,'2022-06-23 06:46:54','2022-06-23 06:46:54','639f8e35-fbfb-485e-8815-fdaf2bbd1f0a'),(141351,141351,1,'feb-2017','reports/feb-2017',1,'2022-06-23 06:46:54','2022-06-23 06:46:54','61c97ab4-8081-41c9-88a7-efafb73b1931'),(141352,141352,1,'mar-2017','reports/mar-2017',1,'2022-06-23 06:46:56','2022-06-23 06:46:56','e73085ec-ce52-48b1-a629-197362d57a1f'),(141353,141353,1,'mar-2017','reports/mar-2017',1,'2022-06-23 06:46:56','2022-06-23 06:46:56','d5a0549d-6cdc-4ec3-8d9e-6e21f3e31b9d'),(141354,141354,1,'apr-2017','reports/apr-2017',1,'2022-06-23 06:46:57','2022-06-23 06:46:57','6093f318-0d14-4e11-a4bf-97fc2a0bb97d'),(141355,141355,1,'apr-2017','reports/apr-2017',1,'2022-06-23 06:46:57','2022-06-23 06:46:57','54966395-aff1-4fa6-8eb6-0d68666bf35e'),(141356,141356,1,'may-2017','reports/may-2017',1,'2022-06-23 06:46:59','2022-06-23 06:46:59','a9e7dc67-1a86-4d6c-847b-9e79889882bd'),(141357,141357,1,'may-2017','reports/may-2017',1,'2022-06-23 06:46:59','2022-06-23 06:46:59','54c33f15-19db-4717-a82c-ff4ac7a9f7f7'),(141358,141358,1,'jun-2017','reports/jun-2017',1,'2022-06-23 06:47:01','2022-06-23 06:47:01','9fcf022b-9ce8-4149-85d8-d6a2733708bb'),(141359,141359,1,'jun-2017','reports/jun-2017',1,'2022-06-23 06:47:01','2022-06-23 06:47:01','19163e9e-20eb-4fc0-b102-684e26a1aa78'),(141360,141360,1,'jul-2017','reports/jul-2017',1,'2022-06-23 06:47:02','2022-06-23 06:47:02','0cf80e65-3696-4863-ba69-80e81b9d70bc'),(141361,141361,1,'jul-2017','reports/jul-2017',1,'2022-06-23 06:47:02','2022-06-23 06:47:02','c58c64f1-2088-4864-977e-c0c8ad014be0'),(141362,141362,1,'aug-2017','reports/aug-2017',1,'2022-06-23 06:47:04','2022-06-23 06:47:04','12446802-9718-42de-8e02-af107543f312'),(141363,141363,1,'aug-2017','reports/aug-2017',1,'2022-06-23 06:47:04','2022-06-23 06:47:04','70f4f726-f50c-452f-b86d-0f19f4c103c6'),(141364,141364,1,'sep-2017','reports/sep-2017',1,'2022-06-23 06:47:06','2022-06-23 06:47:06','15c646e6-2e00-4762-a1fe-7b0c97c567fc'),(141365,141365,1,'sep-2017','reports/sep-2017',1,'2022-06-23 06:47:06','2022-06-23 06:47:06','a9e82878-52e4-4a95-9239-e49e7588a557'),(141366,141366,1,'oct-2017','reports/oct-2017',1,'2022-06-23 06:47:08','2022-06-23 06:47:08','73730323-e7d8-4ef9-b1e9-04440bbb205a'),(141367,141367,1,'oct-2017','reports/oct-2017',1,'2022-06-23 06:47:08','2022-06-23 06:47:08','da39f721-6cc3-4ea6-93ec-ae1251d2fe98'),(141368,141368,1,'nov-2017','reports/nov-2017',1,'2022-06-23 06:47:10','2022-06-23 06:47:10','029657f6-771b-44bf-a862-0c8ac6e956a1'),(141369,141369,1,'nov-2017','reports/nov-2017',1,'2022-06-23 06:47:10','2022-06-23 06:47:10','33018320-f96f-483f-aa5d-05c8f3cc047e'),(141370,141370,1,'dec-2017','reports/dec-2017',1,'2022-06-23 06:47:12','2022-06-23 06:47:12','e3b7c4d1-dbeb-4efe-9960-2a694936fa9e'),(141371,141371,1,'dec-2017','reports/dec-2017',1,'2022-06-23 06:47:12','2022-06-23 06:47:12','5758ed20-c971-458f-ab87-6721b2a0349b'),(141372,141372,1,'jan-2018','reports/jan-2018',1,'2022-06-23 06:47:14','2022-06-23 06:47:14','684eb7e2-7200-449c-85ca-e539185d706d'),(141373,141373,1,'jan-2018','reports/jan-2018',1,'2022-06-23 06:47:14','2022-06-23 06:47:14','b2fb72fa-25d6-43d7-bf92-ad882684c2e7'),(141374,141374,1,'feb-2018','reports/feb-2018',1,'2022-06-23 06:47:16','2022-06-23 06:47:16','ae7b7887-ddf3-44e9-8e23-2dd13839b566'),(141375,141375,1,'feb-2018','reports/feb-2018',1,'2022-06-23 06:47:16','2022-06-23 06:47:16','09f445ad-bd12-4e5b-9ada-9683132000f2'),(141376,141376,1,'mar-2018','reports/mar-2018',1,'2022-06-23 06:47:18','2022-06-23 06:47:18','615dc562-4f2b-4554-b03b-02f16351c424'),(141377,141377,1,'mar-2018','reports/mar-2018',1,'2022-06-23 06:47:18','2022-06-23 06:47:18','9e79dfcd-7f4e-457e-9c03-6cb1e1897231'),(141378,141378,1,'apr-2018','reports/apr-2018',1,'2022-06-23 06:47:19','2022-06-23 06:47:19','7e11c15d-15be-42b6-b3f6-a03eca0507ef'),(141379,141379,1,'apr-2018','reports/apr-2018',1,'2022-06-23 06:47:19','2022-06-23 06:47:19','8647c3e0-88ac-4e78-a318-1cfdc491eea3'),(141380,141380,1,'may-2018','reports/may-2018',1,'2022-06-23 06:47:21','2022-06-23 06:47:21','e4737898-57c3-404c-9e3d-f5441579c191'),(141381,141381,1,'may-2018','reports/may-2018',1,'2022-06-23 06:47:21','2022-06-23 06:47:21','707918a8-62af-4421-8b4a-654fba371496'),(141382,141382,1,'jun-2018','reports/jun-2018',1,'2022-06-23 06:47:23','2022-06-23 06:47:23','d4796742-18b0-4da0-b6a9-913635261a4c'),(141383,141383,1,'jun-2018','reports/jun-2018',1,'2022-06-23 06:47:23','2022-06-23 06:47:23','a2541356-fc4d-4bf6-968f-ce01f4617385'),(141384,141384,1,'jul-2018','reports/jul-2018',1,'2022-06-23 06:47:25','2022-06-23 06:47:25','97aad276-6d91-496f-9f0a-9adf282f88bf'),(141385,141385,1,'jul-2018','reports/jul-2018',1,'2022-06-23 06:47:25','2022-06-23 06:47:25','77bfd99e-d801-41d1-ab6d-cc2d14c4b0db'),(141386,141386,1,'aug-2018','reports/aug-2018',1,'2022-06-23 06:47:26','2022-06-23 06:47:26','0a9d3ad5-c326-4dda-bc8d-bb05cb782a78'),(141387,141387,1,'aug-2018','reports/aug-2018',1,'2022-06-23 06:47:26','2022-06-23 06:47:26','93c425f1-2115-4876-a93b-c74ab400f17b'),(141388,141388,1,'sep-2018','reports/sep-2018',1,'2022-06-23 06:47:28','2022-06-23 06:47:28','9e4d6e6d-2871-45b3-9007-3000c6f94465'),(141389,141389,1,'sep-2018','reports/sep-2018',1,'2022-06-23 06:47:28','2022-06-23 06:47:28','8f1c3a51-8eca-4f5a-9fed-63660fb71c05'),(141390,141390,1,'oct-2018','reports/oct-2018',1,'2022-06-23 06:47:29','2022-06-23 06:47:29','4cb3bed0-baca-4246-96dc-37c333a4db80'),(141391,141391,1,'oct-2018','reports/oct-2018',1,'2022-06-23 06:47:29','2022-06-23 06:47:29','e5abe1a8-c905-47e1-bc64-f65810f0012d'),(141392,141392,1,'nov-2018','reports/nov-2018',1,'2022-06-23 06:47:31','2022-06-23 06:47:31','4f9bfac0-81cd-47cd-b7ea-00215966f42e'),(141393,141393,1,'nov-2018','reports/nov-2018',1,'2022-06-23 06:47:31','2022-06-23 06:47:31','f6bd6b1d-2d8a-45b6-a0ec-0d1a994dd1b4'),(141394,141394,1,'dec-2018','reports/dec-2018',1,'2022-06-23 06:47:33','2022-06-23 06:47:33','ef29e7e1-b5b3-4401-a63a-f60d31c0746e'),(141395,141395,1,'dec-2018','reports/dec-2018',1,'2022-06-23 06:47:33','2022-06-23 06:47:33','2303637a-7743-4c4d-8c7e-732830a9348f'),(141396,141396,1,'jan-2019','reports/jan-2019',1,'2022-06-23 06:47:35','2022-06-23 06:47:35','c7724b07-faa9-4b85-ba27-a430a6314c52'),(141397,141397,1,'jan-2019','reports/jan-2019',1,'2022-06-23 06:47:35','2022-06-23 06:47:35','57ed9e51-f52c-46b7-8b05-ae9f25e59b07'),(141398,141398,1,'feb-2019','reports/feb-2019',1,'2022-06-23 06:47:37','2022-06-23 06:47:37','047ad777-3a27-4f76-9892-8971013a4737'),(141399,141399,1,'feb-2019','reports/feb-2019',1,'2022-06-23 06:47:37','2022-06-23 06:47:37','225c3972-426e-4cff-bdf4-5f246dc93063'),(141400,141400,1,'mar-2019','reports/mar-2019',1,'2022-06-23 06:47:39','2022-06-23 06:47:39','62e0218c-e619-4708-81a2-063d33d2be00'),(141401,141401,1,'mar-2019','reports/mar-2019',1,'2022-06-23 06:47:39','2022-06-23 06:47:39','b687a096-4fb5-4f24-bb77-954c02c4c2ce'),(141402,141402,1,'apr-2019','reports/apr-2019',1,'2022-06-23 06:47:41','2022-06-23 06:47:41','e65d7e0a-33d4-41c1-88bd-af4911978637'),(141403,141403,1,'apr-2019','reports/apr-2019',1,'2022-06-23 06:47:41','2022-06-23 06:47:41','81c78f93-ee84-4542-8d30-b37266b2341b'),(141404,141404,1,'may-2019','reports/may-2019',1,'2022-06-23 06:47:42','2022-06-23 06:47:42','b9509f3e-b539-4bc7-b68c-4002e26384b0'),(141405,141405,1,'may-2019','reports/may-2019',1,'2022-06-23 06:47:42','2022-06-23 06:47:42','4e891da6-f078-4dc3-9278-cbda1b159c03'),(141406,141406,1,'jun-2019','reports/jun-2019',1,'2022-06-23 06:47:44','2022-06-23 06:47:44','3a7dc4ee-32e4-4d60-935c-0e2ba943d2d2'),(141407,141407,1,'jun-2019','reports/jun-2019',1,'2022-06-23 06:47:44','2022-06-23 06:47:44','91750c89-f606-463d-899c-803c02db0dc1'),(141408,141408,1,'jul-2019','reports/jul-2019',1,'2022-06-23 06:47:46','2022-06-23 06:47:46','2015c5da-b5a2-45db-ad88-e2ada1fadfa7'),(141409,141409,1,'jul-2019','reports/jul-2019',1,'2022-06-23 06:47:46','2022-06-23 06:47:46','650ce9b5-af53-4937-9ac8-ab4d7e15fe43'),(141410,141410,1,'aug-2019','reports/aug-2019',1,'2022-06-23 06:47:48','2022-06-23 06:47:48','d2642977-f988-4cb7-a576-f3c3802f662b'),(141411,141411,1,'aug-2019','reports/aug-2019',1,'2022-06-23 06:47:48','2022-06-23 06:47:48','1e8ddf89-1f06-42f6-a61b-cd4304b81e0f'),(141412,141412,1,'sep-2019','reports/sep-2019',1,'2022-06-23 06:47:50','2022-06-23 06:47:50','3588c81c-62c3-4ea9-9e8e-a2b37662a9cd'),(141413,141413,1,'sep-2019','reports/sep-2019',1,'2022-06-23 06:47:50','2022-06-23 06:47:50','309079c4-aef3-4d5f-9da8-022a59c16947'),(141414,141414,1,'oct-2019','reports/oct-2019',1,'2022-06-23 06:47:52','2022-06-23 06:47:52','c2568dab-0dbe-4028-bcdc-7827eb12108e'),(141415,141415,1,'oct-2019','reports/oct-2019',1,'2022-06-23 06:47:52','2022-06-23 06:47:52','66b4a9c7-7ffd-4b4a-8576-e292591aea7f'),(141416,141416,1,'nov-2019','reports/nov-2019',1,'2022-06-23 06:47:54','2022-06-23 06:47:54','be4194a2-09a5-4c44-a7fc-7c0cc07996fb'),(141417,141417,1,'nov-2019','reports/nov-2019',1,'2022-06-23 06:47:54','2022-06-23 06:47:54','d9217c70-0992-4315-a2cf-84032e8180f7'),(141418,141418,1,'dec-2019','reports/dec-2019',1,'2022-06-23 06:47:56','2022-06-23 06:47:56','94e8c605-c26a-417a-8ef4-5f633435694e'),(141419,141419,1,'dec-2019','reports/dec-2019',1,'2022-06-23 06:47:56','2022-06-23 06:47:56','50be68b5-c9b5-4ce0-ae55-0b5e1cac6b41'),(141420,141420,1,'jan-2020','reports/jan-2020',1,'2022-06-23 06:47:58','2022-06-23 06:47:58','583e3b11-bc1b-4a59-9bdf-b80955d470be'),(141421,141421,1,'jan-2020','reports/jan-2020',1,'2022-06-23 06:47:58','2022-06-23 06:47:58','20007bc3-ee51-4aeb-9e9e-1aaf816667f8'),(141422,141422,1,'feb-2020','reports/feb-2020',1,'2022-06-23 06:48:00','2022-06-23 06:48:00','f95a3e85-9e57-429b-a84a-3edc7d0d687c'),(141423,141423,1,'feb-2020','reports/feb-2020',1,'2022-06-23 06:48:00','2022-06-23 06:48:00','5cb92b19-2e0f-4402-a621-4624e13b7750'),(141424,141424,1,'mar-2020','reports/mar-2020',1,'2022-06-23 06:48:01','2022-06-23 06:48:01','4c54638d-7d12-4727-84d8-230fd41e200f'),(141425,141425,1,'mar-2020','reports/mar-2020',1,'2022-06-23 06:48:01','2022-06-23 06:48:01','ad4e2da7-098a-423e-9bc9-6eaaf2e40165'),(141426,141426,1,'apr-2020','reports/apr-2020',1,'2022-06-23 06:48:03','2022-06-23 06:48:03','74b9ac84-f93b-482f-8bdd-2d2a6647b40e'),(141427,141427,1,'apr-2020','reports/apr-2020',1,'2022-06-23 06:48:03','2022-06-23 06:48:03','e4a33cd5-4336-494f-9d20-2c53f18d19d8'),(141428,141428,1,'may-2020','reports/may-2020',1,'2022-06-23 06:48:05','2022-06-23 06:48:05','ff87341b-35ae-4aa9-bb42-70e22a1cc486'),(141429,141429,1,'may-2020','reports/may-2020',1,'2022-06-23 06:48:05','2022-06-23 06:48:05','a7ad9ac5-a00a-4bd6-a661-10486f9a3584'),(141430,141430,1,'jun-2020','reports/jun-2020',1,'2022-06-23 06:48:07','2022-06-23 06:48:07','b2594306-2e05-467f-bc3e-ba9640ed3ab9'),(141431,141431,1,'jun-2020','reports/jun-2020',1,'2022-06-23 06:48:07','2022-06-23 06:48:07','e1dd2d0c-9a06-4065-9598-142224691dde'),(141432,141432,1,'jul-2020','reports/jul-2020',1,'2022-06-23 06:48:09','2022-06-23 06:48:09','47e8b76a-cbf8-4a2d-91d8-0f69d31ecc7e'),(141433,141433,1,'jul-2020','reports/jul-2020',1,'2022-06-23 06:48:09','2022-06-23 06:48:09','1eafef98-3efe-4aad-8ade-9a6405c7ee7f'),(141434,141434,1,'aug-2020','reports/aug-2020',1,'2022-06-23 06:48:10','2022-06-23 06:48:10','03dae583-e160-47b3-ae1d-56d8f5e5d15f'),(141435,141435,1,'aug-2020','reports/aug-2020',1,'2022-06-23 06:48:10','2022-06-23 06:48:10','1153c177-4b7f-488c-af1c-79d3a2a8c33b'),(141436,141436,1,'sep-2020','reports/sep-2020',1,'2022-06-23 06:48:12','2022-06-23 06:48:12','83ae5055-024c-4a80-85b6-6e460fab0ddd'),(141437,141437,1,'sep-2020','reports/sep-2020',1,'2022-06-23 06:48:12','2022-06-23 06:48:12','fa82ae66-959b-4aac-96f4-97fdd23af124'),(141438,141438,1,'oct-2020','reports/oct-2020',1,'2022-06-23 06:48:14','2022-06-23 06:48:14','eb76e991-8c48-400b-91f6-1db8014ee66c'),(141439,141439,1,'oct-2020','reports/oct-2020',1,'2022-06-23 06:48:14','2022-06-23 06:48:14','5c31c319-5d5a-4de2-8dca-a848e9f91b77'),(141440,141440,1,'nov-2020','reports/nov-2020',1,'2022-06-23 06:48:16','2022-06-23 06:48:16','8d752ab2-dedb-46de-837f-216f353cd99a'),(141441,141441,1,'nov-2020','reports/nov-2020',1,'2022-06-23 06:48:16','2022-06-23 06:48:16','64b940aa-0534-45a4-b6cf-52ae862f2f2d'),(141442,141442,1,'dec-2020','reports/dec-2020',1,'2022-06-23 06:48:18','2022-06-23 06:48:18','d18c4806-d327-4909-a7f5-bf6ea44d901f'),(141443,141443,1,'dec-2020','reports/dec-2020',1,'2022-06-23 06:48:18','2022-06-23 06:48:18','eeff76cc-f9cf-474c-97af-9073d97b0a6d'),(141444,141444,1,'jan-2021','reports/jan-2021',1,'2022-06-23 06:48:20','2022-06-23 06:48:20','80425d87-9ceb-447f-8325-50e9665e8f5a'),(141445,141445,1,'jan-2021','reports/jan-2021',1,'2022-06-23 06:48:20','2022-06-23 06:48:20','9448d53c-ecaa-4056-af09-cecd3ecb6601'),(141446,141446,1,'feb-2021','reports/feb-2021',1,'2022-06-23 06:48:21','2022-06-23 06:48:21','1d761769-46e1-43e5-910a-79a52af816bc'),(141447,141447,1,'feb-2021','reports/feb-2021',1,'2022-06-23 06:48:21','2022-06-23 06:48:21','bfcd96d2-9368-4d86-b970-f284117b0390'),(141448,141448,1,'mar-2021','reports/mar-2021',1,'2022-06-23 06:48:23','2022-06-23 06:48:23','8553a332-57b4-4f8b-9261-14e9a00c5fc2'),(141449,141449,1,'mar-2021','reports/mar-2021',1,'2022-06-23 06:48:23','2022-06-23 06:48:23','3271187e-0d74-4066-8ec9-7c4636cf3c9b'),(141450,141450,1,'apr-2021','reports/apr-2021',1,'2022-06-23 06:48:24','2022-06-23 06:48:24','bb22af47-b0ac-42df-a217-f87c819e88a7'),(141451,141451,1,'apr-2021','reports/apr-2021',1,'2022-06-23 06:48:24','2022-06-23 06:48:24','831b25b4-a693-4114-8206-f24c5656c4c1'),(141452,141452,1,'may-2021','reports/may-2021',1,'2022-06-23 06:48:26','2022-06-23 06:48:26','e6e63b2d-1efa-4ab1-a76b-12a80436b60e'),(141453,141453,1,'may-2021','reports/may-2021',1,'2022-06-23 06:48:26','2022-06-23 06:48:26','bda38d74-b68b-4fae-9df9-d0f15d98664c'),(141454,141454,1,'jun-2021','reports/jun-2021',1,'2022-06-23 06:48:28','2022-06-23 06:48:28','3a2df4c8-ce3a-4010-8179-25f50a994ed7'),(141455,141455,1,'jun-2021','reports/jun-2021',1,'2022-06-23 06:48:28','2022-06-23 06:48:28','addebfec-6c90-4f1a-9d27-1f705c6da7e6'),(141456,141456,1,'jul-2021','reports/jul-2021',1,'2022-06-23 06:48:30','2022-06-23 06:48:30','2ec2c5ce-800c-4258-bbba-6ca2cb33dc2e'),(141457,141457,1,'jul-2021','reports/jul-2021',1,'2022-06-23 06:48:30','2022-06-23 06:48:30','f7a2a9e3-61db-45f6-8eef-79bf0b60289a'),(141458,141458,1,'aug-2021','reports/aug-2021',1,'2022-06-23 06:48:31','2022-06-23 06:48:31','238134c7-bf4c-4497-ac3e-6002793e4c10'),(141459,141459,1,'aug-2021','reports/aug-2021',1,'2022-06-23 06:48:31','2022-06-23 06:48:31','7b422bd9-8e32-438a-a893-ab6f79b368f2'),(141460,141460,1,'sep-2021','reports/sep-2021',1,'2022-06-23 06:48:33','2022-06-23 06:48:33','9835cba1-86b8-495d-b7e2-c6d6de3152b2'),(141461,141461,1,'sep-2021','reports/sep-2021',1,'2022-06-23 06:48:33','2022-06-23 06:48:33','b63e8f55-0bcf-4349-af36-338a367ce3d5'),(141462,141462,1,'oct-2021','reports/oct-2021',1,'2022-06-23 06:48:35','2022-06-23 06:48:35','48e36b05-977e-458f-9d65-201328561fbf'),(141463,141463,1,'oct-2021','reports/oct-2021',1,'2022-06-23 06:48:35','2022-06-23 06:48:35','eafae411-574e-4d38-bdcc-7e4faf0bab5d'),(141464,141464,1,'nov-2021','reports/nov-2021',1,'2022-06-23 06:48:37','2022-06-23 06:48:37','c9821b47-c15f-48b9-a170-1552c4241c60'),(141465,141465,1,'nov-2021','reports/nov-2021',1,'2022-06-23 06:48:37','2022-06-23 06:48:37','cd21448c-b6d8-480a-ba24-c372a6ae0672'),(141466,141466,1,'dec-2021','reports/dec-2021',1,'2022-06-23 06:48:38','2022-06-23 06:48:38','7c3144a7-8708-4347-9a1f-17b33c001970'),(141467,141467,1,'dec-2021','reports/dec-2021',1,'2022-06-23 06:48:38','2022-06-23 06:48:38','b6e9adcb-2eb5-430d-a2a2-190945d5e7a6'),(141468,141468,1,'jan-2022','reports/jan-2022',1,'2022-06-23 06:48:39','2022-06-23 06:48:39','51ba5c39-83e9-4e2e-8fc2-afd0a24e76f7'),(141469,141469,1,'jan-2022','reports/jan-2022',1,'2022-06-23 06:48:39','2022-06-23 06:48:39','65c503ea-6aa5-48e1-b3d5-5d8305e86b87'),(141470,141470,1,'feb-2022','reports/feb-2022',1,'2022-06-23 06:48:41','2022-06-23 06:48:41','4c7cff7b-d49d-4c81-81a6-51ad0c75e91f'),(141471,141471,1,'feb-2022','reports/feb-2022',1,'2022-06-23 06:48:41','2022-06-23 06:48:41','cd5e3940-1a1c-4f4d-a4c2-a1b031745c2e'),(141472,141472,1,'mar-2022','reports/mar-2022',1,'2022-06-23 06:48:43','2022-06-23 06:48:43','237b0691-77d5-4930-bf7d-1769238af342'),(141473,141473,1,'mar-2022','reports/mar-2022',1,'2022-06-23 06:48:43','2022-06-23 06:48:43','6592598a-6793-44d1-ae26-5f548cff7abd'),(141474,141474,1,'apr-2022','reports/apr-2022',1,'2022-06-23 06:48:44','2022-06-23 06:48:44','4a3732a6-732f-4491-af71-0bebf33290a4'),(141475,141475,1,'apr-2022','reports/apr-2022',1,'2022-06-23 06:48:44','2022-06-23 06:48:44','86e23764-620d-4ff4-8693-09db44e72ec9'),(141476,141476,1,'may-2022','reports/may-2022',1,'2022-06-23 06:48:45','2022-06-23 06:48:45','fc4acc08-7509-4651-af72-f44800127713'),(141477,141477,1,'may-2022','reports/may-2022',1,'2022-06-23 06:48:45','2022-06-23 06:48:45','eafac6cb-5900-4857-9f31-8cf02eadf1d9'),(141478,141478,1,'jun-2022','reports/jun-2022',1,'2022-06-23 06:48:47','2022-06-23 06:48:47','a6b5a60e-df1c-400b-8da5-1745a053c7b4'),(141479,141479,1,'jun-2022','reports/jun-2022',1,'2022-06-23 06:48:47','2022-06-23 06:48:47','e4470c90-6b5b-4cf8-847a-936633411956'),(141483,141483,1,NULL,NULL,1,'2022-06-24 01:07:19','2022-06-24 01:07:19','5f1545c2-9802-4946-bdaa-089885cc444d'),(141484,141484,1,NULL,NULL,1,'2022-06-24 07:15:31','2022-06-24 07:15:31','49059fca-e6f0-4618-a7f7-a5288a236a8e'),(141486,141486,1,'retireaustralia-2','work/retireaustralia-2',1,'2022-06-28 00:17:02','2022-06-28 00:17:02','3307bbee-88f7-4408-a9e2-a67b2ff1e0c7'),(141487,141487,1,'retireaustralia-2','work/retireaustralia-2',1,'2022-06-28 00:17:03','2022-06-28 00:17:03','198f3dc8-dc44-46a8-9b40-6fc32f6902a2'),(141489,141489,1,'are-customers-giving-up-on-your-website','articles/are-customers-giving-up-on-your-website',1,'2022-06-28 00:22:49','2022-06-28 00:22:49','b28f11b7-20a9-4cbf-afe9-6c04a0b18ef3'),(141490,141490,1,'are-customers-giving-up-on-your-website','articles/are-customers-giving-up-on-your-website',1,'2022-06-28 00:23:53','2022-06-28 00:23:53','ad5618a7-8a92-4ba6-b08e-c526856d9bc3'),(141493,141493,1,'glengaracare','work/glengaracare',1,'2022-06-28 00:39:49','2022-06-28 01:38:40','acd25264-117f-4983-aac4-b004ac673f65'),(141494,141494,1,'burnie-brae-2','work/burnie-brae-2',1,'2022-06-28 00:39:50','2022-06-28 00:39:50','8f908bd0-a34a-4d9a-865a-d60cb3947a2f'),(141496,141496,1,'burnie-brae-2','work/burnie-brae-2',1,'2022-06-28 00:45:37','2022-06-28 00:45:37','d53d1ada-5666-4ae9-a35f-5ba2841cb53f'),(141500,141500,1,'burnie-brae-2','work/burnie-brae-2',1,'2022-06-28 01:30:24','2022-06-28 01:30:24','c48ece84-e9fa-4665-b76c-0c0fff868247'),(141503,141503,1,NULL,NULL,1,'2022-06-28 01:35:34','2022-06-28 01:35:34','688f711d-1f92-42fb-a32d-969d28c98dd1'),(141504,141504,1,NULL,NULL,1,'2022-06-28 01:37:49','2022-06-28 01:37:49','72668905-1494-40c5-be1c-79caae384995'),(141505,141505,1,NULL,NULL,1,'2022-06-28 01:38:02','2022-06-28 01:38:02','e017728c-7cbf-4d7c-a3ea-71af8a6bb98a'),(141506,141506,1,NULL,NULL,1,'2022-06-28 01:38:09','2022-06-28 01:38:09','1785ced8-4156-49f5-82aa-a8cf15c0402d'),(141507,141507,1,'burnie-brae-2','work/burnie-brae-2',1,'2022-06-28 01:38:25','2022-06-28 01:38:25','a7b4b7a6-4ec5-4f6e-80ff-4cf4e567053c'),(141509,141509,1,'glengaracare','work/glengaracare',1,'2022-06-28 01:38:40','2022-06-28 01:38:40','a767be26-1f08-4ded-a130-519dbb0e9424'),(141511,141511,1,'about-us','about',1,'2022-06-28 01:51:24','2022-06-28 01:51:24','20e5adc2-7965-40cc-b4fe-2712320681ca'),(141512,141512,1,'glengaracare','work/glengaracare',1,'2022-06-28 02:05:47','2022-06-28 02:05:47','23fde3cc-f828-41c9-a408-747ab7aa3dca'),(141514,141514,1,'glengaracare','work/glengaracare',1,'2022-06-28 02:09:04','2022-06-28 02:09:04','01dc41b8-649a-416a-bbe6-e480524a803f'),(141516,141516,1,NULL,NULL,1,'2022-06-28 02:41:32','2022-06-28 02:41:32','c3445b10-72e4-4781-93f5-54c31d76048e'),(141522,141522,1,NULL,NULL,1,'2022-06-28 04:51:13','2022-06-28 04:51:13','937078e2-263a-4c0c-9075-440836dd96b3'),(141523,141523,1,'glengaracare','work/glengaracare',1,'2022-06-28 04:51:39','2022-06-28 04:51:39','8ce03096-a4f5-4d86-84db-7055c2c6f0d5'),(141527,141527,1,NULL,NULL,1,'2022-06-29 01:17:09','2022-06-29 01:17:09','5875769b-9fa8-42e6-a2f5-dec074f3dd64'),(141533,141533,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-06-29 01:35:57','2022-06-29 04:05:43','deeab80d-5362-4d1f-8d96-4cc228112b47'),(141534,141534,1,NULL,NULL,1,'2022-06-29 01:44:43','2022-06-29 01:44:43','1e944f9d-2e52-4f2d-b2a6-5b5ac55b927b'),(141535,141535,1,NULL,NULL,1,'2022-06-29 01:46:37','2022-06-29 01:46:37','dd1a29a1-f79d-4e4f-b7f8-df8b03bdfb82'),(141536,141536,1,NULL,NULL,1,'2022-06-29 01:49:10','2022-06-29 01:49:10','098b8397-b05d-44b6-b340-2b5aacc92e11'),(141538,141538,1,NULL,NULL,1,'2022-06-29 01:56:06','2022-06-29 01:56:06','9ff625b5-1d54-4e62-8fa0-47da246ab20c'),(141547,141547,1,'glengaracare','work/glengaracare',1,'2022-06-29 02:09:39','2022-06-29 02:09:39','d5a5769c-de2f-4deb-9768-b8476ec1419a'),(141550,141550,1,'glengaracare','work/glengaracare',1,'2022-06-29 02:23:00','2022-06-29 02:23:00','7b7905fd-4c85-4a92-86be-3700b4c5e052'),(141551,141551,1,'glengaracare','work/glengaracare',1,'2022-06-29 02:23:52','2022-06-29 02:23:52','ab1e72b6-d66d-4b4f-9c0b-7cc1bf595870'),(141553,141553,1,'retireaustralia-2','work/retireaustralia-2',1,'2022-06-29 02:24:04','2022-06-29 02:24:04','e917adfd-44bd-49ce-b292-70fcc2e76342'),(141554,141554,1,'burnie-brae','work/burnie-brae',1,'2022-06-29 02:24:20','2022-06-29 02:24:20','57db052f-014e-4283-a928-593d2cd33831'),(141556,141556,1,'glengaracare','work/glengaracare',1,'2022-06-29 02:24:35','2022-06-29 02:24:35','1a8dae4e-30b6-45ed-b264-246f9d18a48d'),(141558,141558,1,'glengaracare','work/glengaracare',1,'2022-06-29 03:24:16','2022-06-29 03:24:16','70657f3b-1f22-448a-ad50-e9f8258240bc'),(141560,141560,1,'glengaracare','work/glengaracare',1,'2022-06-29 03:26:33','2022-06-29 03:26:33','785b7c98-fb4b-4c45-87e8-bf16e517c7b9'),(141562,141562,1,'glengaracare','work/glengaracare',1,'2022-06-29 03:36:53','2022-06-29 03:36:53','42024d5f-f939-487c-91cc-99d99c3b48e4'),(141567,141567,1,'glengaracare','work/glengaracare',1,'2022-06-29 04:05:49','2022-06-29 04:05:49','562ca2ca-7fb3-4385-af5c-51f96b933f64'),(141569,141569,1,'glengaracare','work/glengaracare',1,'2022-06-29 04:06:22','2022-06-29 04:06:22','49cf0c88-3e17-45ca-a3dd-ebbd4a9c0f00'),(141571,141571,1,'how-to-really-consult-your-stakeholders','articles/how-to-really-consult-your-stakeholders',1,'2022-06-29 04:08:55','2022-06-29 04:08:55','010d23dd-7613-4022-b58b-2bf92b13a7d4'),(141573,141573,1,'glengaracare','work/glengaracare',1,'2022-06-29 04:11:15','2022-06-29 04:11:15','ccb8917a-9c1e-42f6-98f6-0ed6bde8dcb1'),(141574,141574,1,'glengaracare','work/glengaracare',1,'2022-06-29 06:01:22','2022-06-29 06:01:22','f1deffc9-b7b1-460b-951c-1fa845228fa7'),(141576,141576,1,'how-to-really-consult-your-stakeholders','articles/how-to-really-consult-your-stakeholders',1,'2022-06-30 03:06:09','2022-06-30 03:06:09','234ab672-462b-4b98-9ab3-82e4babc5050'),(141578,141578,1,'how-to-really-consult-your-stakeholders','articles/how-to-really-consult-your-stakeholders',1,'2022-06-30 03:06:50','2022-06-30 03:06:50','d6ceff8c-b5d1-4562-857f-44284df18afe'),(141582,141582,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-06-30 05:31:01','2022-06-30 05:31:01','8444bad0-47a3-4698-800c-0d2331f2c82e'),(141586,141586,1,'my-mental-health-2','work/my-mental-health-2',1,'2022-07-04 01:16:48','2022-07-04 01:16:48','33b38c03-648f-4b6b-be3e-44c780505d0e'),(141587,141587,1,'my-mental-health-2','work/my-mental-health-2',1,'2022-07-04 01:16:49','2022-07-04 01:16:49','f2767d97-4bd7-4be2-b06e-904d83320c65'),(141589,141589,1,'my-mental-health','work/my-mental-health',1,'2022-07-04 01:22:26','2022-07-04 01:22:26','a3070446-aba9-41a2-9f1d-cba122ffaafa'),(141592,141592,1,'my-mental-health','work/my-mental-health',1,'2022-07-04 01:25:07','2022-07-04 01:25:07','2cd5a20f-f2c7-495a-a630-e5d519245997'),(141594,141594,1,NULL,NULL,1,'2022-07-04 01:51:08','2022-07-04 01:51:08','e5668546-09fd-456f-9923-04bb888bb855'),(141595,141595,1,NULL,NULL,1,'2022-07-04 01:53:26','2022-07-04 01:53:26','3f572991-3286-4b6d-82cb-e79cb39001e7'),(141596,141596,1,NULL,NULL,1,'2022-07-04 07:06:19','2022-07-04 07:06:19','deb7027d-144c-4dbe-83a3-44cf07ac0e2b'),(141597,141597,1,'my-mental-health','work/my-mental-health',1,'2022-07-04 07:06:50','2022-07-04 07:06:50','fb9fa617-e758-4961-8636-54c10d7e8cef'),(141599,141599,1,NULL,NULL,1,'2022-07-04 07:10:43','2022-07-04 07:10:43','1050d83f-c691-457e-8c57-854f426b5292'),(141600,141600,1,'my-mental-health','work/my-mental-health',1,'2022-07-04 07:10:55','2022-07-04 07:10:55','3a9f69ad-2031-4223-bc6b-255c7dbffc56'),(141602,141602,1,NULL,NULL,1,'2022-07-04 07:19:02','2022-07-04 07:19:02','e5903268-34b7-434e-bd84-0b2f6d15fa51'),(141603,141603,1,'my-mental-health','work/my-mental-health',1,'2022-07-04 07:19:08','2022-07-04 07:19:08','530efbc3-6ea4-410b-80b0-abac247359bc'),(141604,141604,1,'my-mental-health','work/my-mental-health',1,'2022-07-04 07:19:20','2022-07-04 07:19:20','31a0d44e-54f0-42b0-afb5-33124718daa6'),(141606,141606,1,'my-mental-health','work/my-mental-health',1,'2022-07-04 07:31:23','2022-07-04 07:31:23','2d663132-2886-4afe-ae13-375512a72317'),(141607,141607,1,'are-customers-giving-up-on-your-website','articles/are-customers-giving-up-on-your-website',1,'2022-07-05 05:41:43','2022-07-05 05:41:43','2d045021-d19b-4a30-b283-5921a081f036'),(141608,141608,1,'glengaracare','work/glengaracare',1,'2022-07-05 05:49:47','2022-07-05 05:49:47','7d7ba372-e065-4f5f-8df6-d66daeeb7d4c'),(141610,141610,1,'glengaracare','work/glengaracare',1,'2022-07-07 02:07:42','2022-07-07 02:07:42','6bb1b67d-94bf-4fea-934e-9f4262a98597'),(141612,141612,1,'glengaracare','work/glengaracare',1,'2022-07-07 02:12:54','2022-07-07 02:12:54','97dc38db-4877-4f07-b63a-b88cf13c2c15'),(141614,141614,1,'your-care-navigator','work/your-care-navigator',1,'2022-07-07 02:20:26','2022-07-07 02:20:26','fb3304d7-6308-413c-8bfc-7094d7c49be6'),(141616,141616,1,NULL,NULL,1,'2022-07-10 23:07:09','2022-07-10 23:07:09','4a437577-69c0-4440-9b7f-36e2e9235e25'),(141617,141617,1,NULL,NULL,1,'2022-07-10 23:07:09','2022-07-10 23:07:09','e9f87e94-703a-41e1-8963-72bcf0d2b40b'),(141618,141618,1,NULL,NULL,1,'2022-07-10 23:07:09','2022-07-10 23:07:09','9ebd01c7-c0f7-4fe8-a415-946d3950c8eb'),(141619,141619,1,NULL,NULL,1,'2022-07-10 23:07:09','2022-07-10 23:07:09','42ea11ca-f61d-476e-ac65-77955ecaccfe'),(141620,141620,1,NULL,NULL,1,'2022-07-10 23:07:09','2022-07-10 23:07:09','1b47fd90-e9a4-48be-bd9a-2c1ae2585e20'),(141621,141621,1,NULL,NULL,1,'2022-07-10 23:07:09','2022-07-10 23:07:09','0eea51a5-a422-4518-9300-8d12c68e05a9'),(141622,141622,1,'about-us','about',1,'2022-07-10 23:10:01','2022-07-10 23:10:01','624fd0d3-d4a8-45af-b33f-10eed3dcc481'),(141624,141624,1,'about-us','about',1,'2022-07-10 23:11:13','2022-07-10 23:11:13','26b4373f-fb56-4c7a-a0cf-cf475cd5c5ee'),(141625,141625,1,'are-customers-giving-up-on-your-website','articles/are-customers-giving-up-on-your-website',1,'2022-07-11 01:48:54','2022-07-11 01:48:54','f95422a2-15f4-44c5-8196-132db856e042'),(141627,141627,1,'contact','contact',1,'2022-07-12 00:09:35','2022-07-12 00:09:35','efb6c1c7-56cc-4610-9902-9b27577169d8'),(141629,141629,1,'your-care-navigator','work/your-care-navigator',1,'2022-07-13 04:32:08','2022-07-13 04:32:08','e6dd71e0-144a-4c3e-a098-f53c155891db'),(141632,141632,1,NULL,NULL,1,'2022-07-18 03:24:34','2022-07-18 03:24:34','b6d6edd2-c6fb-4cb3-a6d8-979ab423f41e'),(141633,141633,1,'are-customers-giving-up-on-your-website','articles/are-customers-giving-up-on-your-website',1,'2022-07-18 03:34:46','2022-07-18 03:34:46','ec2c0211-b33b-46eb-9ab9-9ba8bbf629d8'),(141635,141635,1,'are-customers-giving-up-on-your-website','articles/are-customers-giving-up-on-your-website',1,'2022-07-18 04:21:30','2022-07-18 04:21:30','0b6bd177-58eb-463c-8bd0-8564ff81b0f3'),(141637,141637,1,'are-customers-giving-up-on-your-website','articles/are-customers-giving-up-on-your-website',1,'2022-07-18 04:21:58','2022-07-18 04:21:58','d6f10a45-f00e-4383-afb1-acc14e7acf62'),(141642,141642,1,NULL,NULL,1,'2022-07-20 04:37:24','2022-07-20 04:37:24','4ba4cebe-f718-4e47-b34e-4248d4256be0'),(141650,141650,1,NULL,NULL,1,'2022-07-21 23:03:29','2022-07-21 23:03:29','e61c3673-20ed-40ed-9405-56e0f14042a4'),(141660,141660,1,'about-us','about',1,'2022-07-26 00:27:53','2022-07-26 00:27:53','66a658ff-58ba-45dc-b6ef-43717e279f65'),(141662,141662,1,'community-solutions','work/community-solutions',1,'2022-07-26 00:49:16','2022-08-08 06:42:28','06459caf-4960-47b5-b058-30bbd5d3e58e'),(141663,141663,1,'community-solutions-2','work/community-solutions-2',1,'2022-07-26 00:49:17','2022-07-26 00:49:17','94ce8aa0-9c3b-4d03-93f2-2a91e90c4062'),(141670,141670,1,NULL,NULL,1,'2022-07-26 01:35:54','2022-07-26 01:35:54','e5653ed6-976f-413e-8d94-06bf7f46736e'),(141671,141671,1,NULL,NULL,1,'2022-07-26 01:35:57','2022-07-26 01:35:57','3928c470-41f4-4954-b26e-2a707746451f'),(141672,141672,1,NULL,NULL,1,'2022-07-26 01:36:02','2022-07-26 01:36:02','d64767bb-4095-4891-ab22-ddfaeb5931e7'),(141680,141680,1,NULL,NULL,1,'2022-07-26 01:39:44','2022-07-26 01:39:44','39370d7a-9f40-4c3b-8b47-37fcbe37ff1a'),(141688,141688,1,NULL,NULL,1,'2022-07-26 01:44:21','2022-07-26 01:44:21','92579883-c292-4fe1-86fa-0fb049b9fb4c'),(141693,141693,1,'are-customers-giving-up-on-your-website','articles/are-customers-giving-up-on-your-website',1,'2022-07-26 04:07:27','2022-07-26 04:07:27','45e5ea72-e777-421a-ad00-bd050ce5582b'),(141698,141698,1,NULL,NULL,1,'2022-07-26 05:03:55','2022-07-26 05:03:55','80b48e7a-9ef6-4f3e-b5a0-9a2880ba671f'),(141699,141699,1,NULL,NULL,1,'2022-07-26 05:04:22','2022-07-26 05:04:22','92325d7d-8241-416e-bcac-7132af2026f9'),(141704,141704,1,NULL,NULL,1,'2022-07-26 05:08:33','2022-07-26 05:08:33','81abbace-d385-46bc-b161-c2c964cd943f'),(141707,141707,1,NULL,NULL,1,'2022-07-26 05:22:56','2022-07-26 05:22:56','c3c7f937-6a74-4c4c-9bc0-51d0c2d61105'),(141720,141720,1,NULL,NULL,1,'2022-07-26 05:27:42','2022-07-26 05:27:42','079a590b-4d15-4061-b28e-a6b096975e86'),(141725,141725,1,'ramsay-health-care','work/ramsay-health-care',1,'2022-07-26 05:29:13','2022-07-26 07:06:43','6e519d74-ac54-416c-840c-aaddc1b093be'),(141726,141726,1,'right-time-right-place-2','work/right-time-right-place-2',1,'2022-07-26 05:29:14','2022-07-26 05:29:14','68c221dc-92ec-4dae-983a-8460a341f931'),(141728,141728,1,'right-time-right-place-2','work/right-time-right-place-2',1,'2022-07-26 05:31:16','2022-07-26 05:31:16','7a705879-66fb-4834-bc7c-2a2865a2d70d'),(141730,141730,1,'right-time-right-place-2','work/right-time-right-place-2',1,'2022-07-26 05:31:58','2022-07-26 05:31:58','e0d8d62a-9f8d-4562-992e-cea78c567971'),(141733,141733,1,NULL,NULL,1,'2022-07-26 05:43:14','2022-07-26 05:43:14','805447f1-bfc3-4dd1-9762-897b037ff26c'),(141735,141735,1,NULL,NULL,1,'2022-07-26 05:44:05','2022-07-26 05:44:05','1546133d-6d4a-4a88-a22d-2553d83ccbb5'),(141736,141736,1,NULL,NULL,1,'2022-07-26 06:52:15','2022-07-26 06:52:15','bf419341-fb95-4cc8-84bf-079fb39976c0'),(141737,141737,1,NULL,NULL,1,'2022-07-26 06:56:38','2022-07-26 06:56:38','582f3169-1230-481c-a4f2-ed31fd65ad4c'),(141738,141738,1,NULL,NULL,1,'2022-07-26 06:56:44','2022-07-26 06:56:44','2ef5707e-7788-4d3e-a39e-bcf747aaf716'),(141739,141739,1,NULL,NULL,1,'2022-07-26 06:56:48','2022-07-26 06:56:48','74754a0b-b3d5-4e7e-966c-1242a0533e80'),(141740,141740,1,NULL,NULL,1,'2022-07-26 06:56:52','2022-07-26 06:56:52','c4b85cfe-daff-47fb-8562-4eb66f18b148'),(141741,141741,1,NULL,NULL,1,'2022-07-26 06:57:24','2022-07-26 06:57:24','9fa275de-d7f4-4d25-a1f5-12f0f1ccda29'),(141742,141742,1,NULL,NULL,1,'2022-07-26 06:57:28','2022-07-26 06:57:28','0f0ea239-a5c7-4e3a-bb69-03bfb256a73d'),(141743,141743,1,NULL,NULL,1,'2022-07-26 06:57:36','2022-07-26 06:57:36','f79317de-ceee-482e-bca9-c33c878d5f92'),(141744,141744,1,NULL,NULL,1,'2022-07-26 06:57:40','2022-07-26 06:57:40','3ae332e2-48e9-4a40-90f7-16349d818ba5'),(141745,141745,1,NULL,NULL,1,'2022-07-26 07:00:32','2022-07-26 07:00:32','37d58569-d2b1-4e01-96ba-adfdc00c076f'),(141746,141746,1,'right-time-right-place-2','work/right-time-right-place-2',1,'2022-07-26 07:01:23','2022-07-26 07:01:23','49c742e1-9645-4296-b88a-a5d19547333a'),(141748,141748,1,'right-time-right-place-2','work/right-time-right-place-2',1,'2022-07-26 07:02:27','2022-07-26 07:02:27','904305b2-ae49-4b36-9196-d265ed0fe4e7'),(141750,141750,1,'ramsay-marketing-2','work/ramsay-marketing-2',1,'2022-07-26 07:02:55','2022-07-26 07:02:55','46440b41-e204-469c-9ae8-46601d8da08d'),(141752,141752,1,'ramsay-marketing-2','work/ramsay-marketing-2',1,'2022-07-26 07:03:20','2022-07-26 07:03:20','04e3f00e-3a8b-4704-bb02-210300821caa'),(141754,141754,1,'ramsay-marketing-','work/ramsay-marketing-',1,'2022-07-26 07:04:20','2022-07-26 07:04:20','ac7c572b-b8bd-4a70-af14-4003f2a1b438'),(141756,141756,1,'ramsay-marketing-','work/ramsay-marketing-',1,'2022-07-26 07:05:12','2022-07-26 07:05:12','949008c9-f7f3-4295-989b-bce20474e467'),(141758,141758,1,NULL,NULL,1,'2022-07-26 07:05:58','2022-07-26 07:05:58','5812a64d-1a97-4ae1-bc69-cddb65503bc8'),(141759,141759,1,'ramsay-marketing-','work/ramsay-marketing-',1,'2022-07-26 07:06:10','2022-07-26 07:06:10','65c26fdb-4288-4ba9-aa40-c612832ccd66'),(141761,141761,1,'ramsay-marketing','work/ramsay-marketing',1,'2022-07-26 07:06:26','2022-07-26 07:06:26','73411c2e-97ba-48aa-97f2-b1210dff74a6'),(141763,141763,1,'ramsay-health-care','work/ramsay-health-care',1,'2022-07-26 07:06:43','2022-07-26 07:06:43','3d7f9fe4-e440-468b-a4e3-c65d8c3ee411'),(141770,141770,1,'ramsay-health-care','work/ramsay-health-care',1,'2022-07-27 04:47:14','2022-07-27 04:47:14','bc42db47-e682-40b9-940d-868831129e33'),(141772,141772,1,'ramsay-health-care','work/ramsay-health-care',1,'2022-07-27 06:09:37','2022-07-27 06:09:37','83bd202a-618f-4c48-9e6e-1032cbd67268'),(141774,141774,1,'about-us','about',1,'2022-07-27 06:11:16','2022-07-27 06:11:16','020db766-ac29-4b06-9d8b-dcf5337f4c97'),(141776,141776,1,'chevron','work/chevron',1,'2022-07-28 04:11:35','2022-07-28 04:11:35','5f1780bf-06ae-4c14-8ded-79b4970adea5'),(141777,141777,1,'ramsay-health-care','work/ramsay-health-care',1,'2022-07-28 04:14:23','2022-07-28 04:14:23','83c6dad3-4f5d-4975-a775-5120d99f22d8'),(141778,141778,1,'ramsay-health-care','work/ramsay-health-care',1,'2022-07-28 04:20:15','2022-07-28 04:20:15','d944c8ca-e3ff-40f7-9746-8d6b9e5f6759'),(141780,141780,1,'about-us','about',1,'2022-07-28 04:26:49','2022-07-28 04:26:49','ee91311c-04e7-4fee-b539-785ba8968e6f'),(141784,141784,1,'ramsay-health-care','work/ramsay-health-care',1,'2022-07-28 04:50:06','2022-07-28 04:50:06','b47ae9ed-2e73-45f7-8b85-2df5af05c88d'),(141786,141786,1,'ramsay-health-care','work/ramsay-health-care',1,'2022-07-28 04:51:51','2022-07-28 04:51:51','4db05aba-ebba-40ea-8791-7b6283c0f109'),(141788,141788,1,'ramsay-health-care','work/ramsay-health-care',1,'2022-07-28 04:52:25','2022-07-28 04:52:25','1d80244f-7e51-499d-8f9b-d63609ade090'),(141790,141790,1,'ramsay-health-care','work/ramsay-health-care',1,'2022-07-28 04:52:58','2022-07-28 04:52:58','7b650dd1-c0a8-4be5-94ed-2a73026085ff'),(141792,141792,1,'are-customers-giving-up-on-your-website','articles/are-customers-giving-up-on-your-website',1,'2022-07-28 04:53:42','2022-07-28 04:53:42','0f9c3f1a-16e7-4143-b110-01e6afba6ba4'),(141794,141794,1,'are-customers-giving-up-on-your-website','articles/are-customers-giving-up-on-your-website',1,'2022-07-28 05:25:57','2022-07-28 05:25:57','67b0830e-421a-409a-850d-0e2176460353'),(141796,141796,1,'terms-and-conditions','terms-and-conditions',1,'2022-08-01 06:02:13','2022-08-01 06:02:13','b9127525-f1f0-494f-8a2d-c0340a9d7431'),(141798,141798,1,'tritium','work/tritium',1,'2022-08-02 00:05:50','2022-08-02 00:05:50','22a83765-30ea-4d96-b9b9-c0007fc29362'),(141800,141800,1,'tritium','work/tritium',1,'2022-08-02 00:14:10','2022-08-02 00:14:10','0b9e13bc-901d-44d8-9b5e-ed09cb9ecba6'),(141802,141802,1,NULL,NULL,1,'2022-08-02 00:28:24','2022-08-02 00:28:24','1ff78f58-1ba8-42c5-b32d-13e9612b7aa3'),(141803,141803,1,NULL,NULL,1,'2022-08-02 00:28:28','2022-08-02 00:28:28','10e891d2-8c0d-40c5-9f7c-85947a105296'),(141804,141804,1,NULL,NULL,1,'2022-08-02 00:28:33','2022-08-02 00:28:33','b53c785a-90a9-401d-b905-2f4c34dbb185'),(141805,141805,1,NULL,NULL,1,'2022-08-02 00:28:38','2022-08-02 00:28:38','56807d40-f0e9-4605-a2d3-e2af3a4fdb97'),(141806,141806,1,NULL,NULL,1,'2022-08-02 00:28:43','2022-08-02 00:28:43','4173fc44-7d89-42de-85b5-0bcdc334db68'),(141807,141807,1,'tritium','work/tritium',1,'2022-08-02 00:32:40','2022-08-02 00:32:40','085b05f3-dd1d-405f-a8f2-7d2d3ba4cbd1'),(141809,141809,1,'tritium','work/tritium',1,'2022-08-02 03:43:02','2022-08-02 03:43:02','0d1c46f7-0f75-4e0e-9447-615c7362d937'),(141811,141811,1,'retireaustralia-2','work/retireaustralia-2',1,'2022-08-05 05:36:54','2022-08-05 05:36:54','823699e2-1ab4-4587-8676-90ce8d1be0cd'),(141812,141812,1,'careers','careers',1,'2022-08-05 06:07:11','2022-08-05 06:07:11','56803468-cb77-4d55-91fe-9aab04f5a430'),(141814,141814,1,'careers','careers',1,'2022-08-05 06:08:46','2022-08-05 06:08:46','479db282-c6fd-40dd-b43f-0075cb1ec48a'),(141816,141816,1,'careers','careers',1,'2022-08-05 06:09:43','2022-08-05 06:09:43','1ab0384b-bd70-4604-9677-56dcfbb9d12f'),(141818,141818,1,'terms-and-conditions','terms-and-conditions',1,'2022-08-08 06:09:46','2022-08-08 06:09:46','2160406a-8730-4a84-be45-78ee328f2567'),(141820,141820,1,'burnie-brae','work/burnie-brae',1,'2022-08-08 06:14:50','2022-08-08 06:14:50','4fbe6460-3373-4504-9941-a2295ab8462d'),(141821,141821,1,'glengaracare','work/glengaracare',1,'2022-08-08 06:16:07','2022-08-08 06:16:07','b72f5584-81a9-4a8a-bbc6-f7ac827de6f2'),(141823,141823,1,'retireaustralia-2','work/retireaustralia-2',1,'2022-08-08 06:16:57','2022-08-08 06:16:57','101bb113-62f1-4ccc-87a2-fd9156261c44'),(141825,141825,1,'retireaustralia-2','work/retireaustralia-2',1,'2022-08-08 06:17:27','2022-08-08 06:17:27','bbfebdf8-35f9-4a36-b122-58f1f9d34354'),(141827,141827,1,'burnie-brae','work/burnie-brae',1,'2022-08-08 06:19:28','2022-08-08 06:19:28','e637323a-36d9-40fe-9c84-a8ddf83c7995'),(141829,141829,1,'department-of-housing-and-public-works','work/department-of-housing-and-public-works',1,'2022-08-08 06:19:55','2022-08-08 06:19:55','ca38fd44-a391-4325-9437-337d6f1cd714'),(141831,141831,1,'brisbane-south-phn','work/brisbane-south-phn',1,'2022-08-08 06:20:26','2022-08-08 06:20:26','baaef25d-6b32-40a1-90f9-adc7dd734c85'),(141833,141833,1,'burnie-brae','work/burnie-brae',1,'2022-08-08 06:21:21','2022-08-08 06:21:21','e2826802-ec58-46ca-8f67-b13ddc60f2a2'),(141835,141835,1,'pivotus','work/pivotus',1,'2022-08-08 06:22:13','2022-08-08 06:22:13','acf1488e-a794-4c98-acd8-1d6091a04845'),(141837,141837,1,'burnie-brae','work/burnie-brae',1,'2022-08-08 06:22:47','2022-08-08 06:22:47','e0ee0320-6233-429a-b0d6-deaf84718abd'),(141839,141839,1,'endeavour-foundation','work/endeavour-foundation',1,'2022-08-08 06:23:47','2022-08-08 06:23:47','578bd924-c37a-4784-ac26-7c1e33b24ca6'),(141841,141841,1,'west-moreton-anglican-college','work/west-moreton-anglican-college',1,'2022-08-08 06:24:22','2022-08-08 06:24:22','006c872b-a395-4bce-a084-90c4ece8ade7'),(141843,141843,1,'west-moreton-anglican-college','work/west-moreton-anglican-college',1,'2022-08-08 06:26:22','2022-08-08 06:26:22','e7083652-8eb4-48a9-afb1-8915fc67a50f'),(141845,141845,1,'heart-hq','work/heart-hq',1,'2022-08-08 06:26:59','2022-08-08 06:26:59','3512d6cb-c12a-4c7d-bf35-399f33aa0f0b'),(141846,141846,1,'coomera-anglican-college','work/coomera-anglican-college',1,'2022-08-08 06:27:49','2022-08-08 06:27:49','f48ee997-57f7-445e-8a69-7fd5fd974142'),(141848,141848,1,'rural-aid','work/rural-aid',1,'2022-08-08 06:28:54','2022-08-08 06:28:54','f53e134f-aad1-43f4-8845-14310c95f7d1'),(141850,141850,1,'rural-aid','work/rural-aid',1,'2022-08-08 06:29:38','2022-08-08 06:29:38','fd840c5f-8f9f-4499-befc-a9017522ccbb'),(141852,141852,1,'rural-aid','work/rural-aid',1,'2022-08-08 06:30:06','2022-08-08 06:30:06','7c36cf2b-5b37-4d3b-adf7-694d3c88de8d'),(141853,141853,1,'safe-to-see-your-gp','work/safe-to-see-your-gp',1,'2022-08-08 06:30:58','2022-08-08 06:30:58','72c1a616-9438-47eb-acda-68cd3132f8f0'),(141855,141855,1,'tritium','work/tritium',1,'2022-08-08 06:35:10','2022-08-08 06:35:10','25aa501f-0904-4656-9a74-79241ed00fc4'),(141857,141857,1,'medical-mums','work/medical-mums',1,'2022-08-08 06:38:54','2022-08-08 06:38:54','74c20ae9-a8c3-4d35-9be8-8fdfd65985f8'),(141859,141859,1,'medical-mums','work/medical-mums',1,'2022-08-08 06:39:23','2022-08-08 06:39:23','81be504d-259d-4d37-8e58-7cdcc2be0055'),(141861,141861,1,'reasons-to-stay','work/reasons-to-stay',1,'2022-08-08 06:40:24','2022-08-08 06:40:24','e4fcab46-8052-4e26-a4b6-7ef0aba5f2d5'),(141863,141863,1,'reasons-to-stay','work/reasons-to-stay',1,'2022-08-08 06:41:22','2022-08-08 06:41:22','17bd3b14-ef45-4cc8-81fc-3d55abae6054'),(141865,141865,1,'community-solutions-2','work/community-solutions-2',1,'2022-08-08 06:42:15','2022-08-08 06:42:15','0f9eb961-d7a9-4840-a491-7ac7c0a6c401'),(141867,141867,1,'community-solutions','work/community-solutions',1,'2022-08-08 06:42:29','2022-08-08 06:42:29','e4f1f97f-5ebd-4808-aa9c-9801a6534921'),(141869,141869,1,'community-solutions','work/community-solutions',1,'2022-08-08 06:42:58','2022-08-08 06:42:58','9215c4ae-eb66-4c98-87b1-20b0c5ae5886'),(141872,141872,1,'community-solutions','work/community-solutions',1,'2022-08-08 06:44:50','2022-08-08 06:44:50','5eee5054-3ef2-4f3b-9421-3f157e5b7ada'),(141873,141873,1,'heart-hq','work/heart-hq',1,'2022-08-08 06:45:00','2022-08-08 06:45:00','32274a86-6665-4624-a3dd-5b95133ce18c'),(141875,141875,1,'you-for-2032','work/you-for-2032',1,'2022-08-08 06:45:37','2022-08-08 06:45:37','ab2d06a9-319b-421f-b921-90a68723b269'),(141877,141877,1,'you-for-2032','work/you-for-2032',1,'2022-08-08 06:46:01','2022-08-08 06:46:01','40ca4002-e718-489f-811b-f7bb7d87d864'),(141879,141879,1,'no-3-campaign','work/no-3-campaign',1,'2022-08-08 06:46:50','2022-08-08 06:46:50','43b4a516-77cc-4ebd-9f8e-c6f10d602e00'),(141881,141881,1,'revelian','work/revelian',1,'2022-08-08 06:48:26','2022-08-08 06:48:26','0225aac6-1fc5-4b5d-892b-ebfa33bd92ad'),(141883,141883,1,'dfv-campaign','work/dfv-campaign',1,'2022-08-08 06:49:19','2022-08-08 06:49:19','93169f25-8f96-446c-9b87-c48245edc06e'),(141885,141885,1,'dfv-campaign','work/dfv-campaign',1,'2022-08-08 06:49:44','2022-08-08 06:49:44','2b0a3f98-16df-4155-a100-0d9ba7687696'),(141887,141887,1,'dfv-campaign','work/dfv-campaign',1,'2022-08-08 06:50:03','2022-08-08 06:50:03','90284f4a-2127-4638-993b-4d37fa42d658'),(141889,141889,1,'dfv-campaign','work/dfv-campaign',1,'2022-08-08 06:50:13','2022-08-08 06:50:13','1ae09af7-3051-4378-ac39-c8f7a21821b3'),(141891,141891,1,'dfv-campaign','work/dfv-campaign',1,'2022-08-08 06:51:20','2022-08-08 06:51:20','81244515-cd50-42fc-a280-b183b378a181'),(141897,141897,1,'these-are-a-few-of-our-favourite-brands','articles/these-are-a-few-of-our-favourite-brands',1,'2022-08-08 06:54:40','2022-08-08 06:54:40','57a0176d-0afc-4c57-815c-d0e721113157'),(141899,141899,1,'these-are-a-few-of-our-favourite-brands','articles/these-are-a-few-of-our-favourite-brands',1,'2022-08-08 06:55:20','2022-08-08 06:55:20','e0a6437b-75c4-4bd5-b1e9-e2c88dbdaff3'),(141901,141901,1,'these-are-a-few-of-our-favourite-brands','articles/these-are-a-few-of-our-favourite-brands',1,'2022-08-08 06:56:04','2022-08-08 06:56:04','2c3806b7-8a3e-4695-af4d-068e1eb85656'),(141902,141902,1,'the-building-blocks-of-branding','articles/the-building-blocks-of-branding',1,'2022-08-08 06:59:41','2022-08-08 06:59:41','763f2dab-81b4-48b3-b4b0-55ecc0a40b5b'),(141904,141904,1,'the-6-steps-of-content-creation','articles/the-6-steps-of-content-creation',1,'2022-08-08 07:02:05','2022-08-08 07:02:05','f59cabf9-44d2-45c3-a1f1-91d914fb8ac7'),(141906,141906,1,'are-customers-giving-up-on-your-website','articles/are-customers-giving-up-on-your-website',1,'2022-08-08 07:03:56','2022-08-08 07:03:56','a866c87c-3a43-4dae-9505-50c4b8bc0050'),(141908,141908,1,'are-customers-giving-up-on-your-website','articles/are-customers-giving-up-on-your-website',1,'2022-08-08 07:04:07','2022-08-08 07:04:07','8a95f1e4-1467-4e24-98b2-30194c8eec7e'),(141910,141910,1,'what-the-artist-breaks','articles/what-the-artist-breaks',1,'2022-08-08 07:05:22','2022-08-08 07:05:22','c0708d09-6319-4dd2-864a-08995f42449b'),(141912,141912,1,'careers','careers',1,'2022-08-08 07:07:49','2022-08-08 07:07:49','9fd3551b-4028-44a7-8318-3d94aed81d73'),(141913,141913,1,'careers','careers',1,'2022-08-08 07:07:53','2022-08-08 07:07:53','41718e15-ee4c-4082-8428-ee089bccf66a'),(141914,141914,1,'update-details','update-details',1,'2022-08-08 07:08:20','2022-08-08 07:08:20','c0ce7e87-b526-4cf5-b516-8dfc2ed510d9'),(141915,141915,1,NULL,NULL,1,'2022-08-08 23:41:59','2022-08-08 23:41:59','e3dc6abf-1dc8-4ee3-830b-e58bf8ec2eb2'),(141916,141916,1,NULL,NULL,1,'2022-08-08 23:41:59','2022-08-08 23:41:59','dde35704-6490-42b8-87aa-2d06303464b3'),(141917,141917,1,NULL,NULL,1,'2022-08-08 23:41:59','2022-08-08 23:41:59','e8202c0b-2751-4bd7-bff0-2489a8031b9d'),(141918,141918,1,NULL,NULL,1,'2022-08-08 23:41:59','2022-08-08 23:41:59','9fc6116d-42aa-4136-90e6-bf7821775366'),(141919,141919,1,NULL,NULL,1,'2022-08-08 23:41:59','2022-08-08 23:41:59','4b7e5e39-9356-448a-b06d-91e778731bde'),(141921,141921,1,'qmhc','work/qmhc',1,'2022-08-09 00:06:09','2022-08-09 00:06:09','3f53f64b-6751-4da6-bde7-b810dfa6faab'),(141923,141923,1,'dfv-campaign','work/dfv-campaign',1,'2022-08-09 00:07:42','2022-08-09 00:07:42','73defcf2-bc3e-4948-ba7a-e596a000d78b'),(141925,141925,1,'urban-utilities','work/urban-utilities',1,'2022-08-09 04:18:53','2022-08-09 04:19:21','188c0b8d-ad3c-43a5-899a-1369806eb5e4'),(141927,141927,1,'chevron','work/chevron',1,'2022-08-12 03:38:44','2022-08-12 03:38:44','2465c95a-2184-4e8e-bf8e-c2e168624d53'),(141929,141929,1,'aseeos','work/aseeos',1,'2022-08-12 03:45:04','2022-08-12 03:45:04','939bf6fe-b080-44c3-9246-93e911639fa0'),(141931,141931,1,'coomera-anglican-college','work/coomera-anglican-college',1,'2022-08-12 03:45:45','2022-08-12 03:45:45','611e19dd-3096-4e2e-9f37-b885aeade88e'),(141933,141933,1,'heart-hq','work/heart-hq',1,'2022-08-12 03:46:35','2022-08-12 03:46:35','3d41490c-95f2-4204-a0f2-554638907f4f'),(141935,141935,1,'revelian','work/revelian',1,'2022-08-12 03:46:46','2022-08-12 03:46:46','18c86fcb-fdbf-419a-9227-fc2e13be835d'),(141937,141937,1,'tritium','work/tritium',1,'2022-08-12 03:46:53','2022-08-12 03:46:53','cb8698d2-7d96-437f-900f-255d34812dfb'),(141938,141938,1,'dfv-campaign','work/dfv-campaign',1,'2022-08-12 03:47:29','2022-08-12 03:47:29','ad33cc4b-54a3-4620-89c5-63aae87c8512'),(141940,141940,1,'your-care-navigator','work/your-care-navigator',1,'2022-08-12 03:50:34','2022-08-12 03:50:34','09d9a0dc-9a81-49a3-8820-7716064cc958'),(141942,141942,1,'your-care-navigator','work/your-care-navigator',1,'2022-08-12 03:51:25','2022-08-12 03:51:25','8ab41064-2be9-4df5-8d44-ec4bbdadb210'),(141944,141944,1,'you-for-2032','work/you-for-2032',1,'2022-08-15 02:54:41','2022-08-15 02:54:41','97f71f65-08e5-46ac-ba85-7673eae63ebe'),(141945,141945,1,NULL,NULL,1,'2022-08-15 05:27:41','2022-08-15 05:27:41','fd086da1-8aaf-475e-a28d-a57bd63d37ea'),(141946,141946,1,NULL,NULL,1,'2022-08-15 05:30:37','2022-08-15 05:30:37','33d46c6c-eb49-4376-8bac-997c0e6ccab7'),(141947,141947,1,NULL,NULL,1,'2022-08-15 05:31:37','2022-08-15 05:31:37','31ca242f-033c-473d-bfed-0010fbab0143'),(141948,141948,1,NULL,NULL,1,'2022-08-15 05:32:14','2022-08-15 05:32:14','1386c37a-6e45-4fb5-b324-1e8a07173e40'),(141949,141949,1,'urban-utilities','work/urban-utilities',1,'2022-08-15 05:32:55','2022-08-15 05:32:55','32612b28-8b0a-4978-942f-cfbe662a467f'),(141952,141952,1,'urban-utilities','work/urban-utilities',1,'2022-08-15 05:39:07','2022-08-15 05:39:07','b1eaefc2-5fd3-4502-9a39-2b921cebbb9c'),(141953,141953,1,'urban-utilities','work/urban-utilities',1,'2022-08-15 05:39:25','2022-08-15 05:39:25','683f341b-8dd1-4880-99ff-4210875a8663'),(141954,141954,1,NULL,NULL,1,'2022-08-15 05:54:34','2022-08-15 05:54:34','b8c7268f-2bef-46b6-ae9e-03120f7cffb9'),(141955,141955,1,'your-care-navigator','work/your-care-navigator',1,'2022-08-15 05:55:07','2022-08-15 05:55:07','3af1f902-a1bf-411a-9219-68552a41cb67'),(141957,141957,1,NULL,NULL,1,'2022-08-16 04:32:35','2022-08-16 04:32:35','4e3dd25a-cec1-479a-85d4-35699e25996e'),(141958,141958,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-08-16 04:33:47','2022-08-16 04:33:47','57b79c6e-8895-49e2-9bc0-275758d022df'),(141960,141960,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-08-16 04:38:12','2022-08-16 04:38:12','1b71ed98-aadb-4e39-adc7-8241e0d1386c'),(141961,141961,1,NULL,NULL,1,'2022-08-16 05:10:35','2022-08-16 05:10:35','bce6598d-0c7c-4bdf-a457-0c41211f0857'),(141962,141962,1,NULL,NULL,1,'2022-08-16 05:34:59','2022-08-16 05:34:59','5e12627d-f5e0-48cf-8032-8173a085e7aa'),(141964,141964,1,'about-us','about',1,'2022-08-16 05:37:53','2022-08-16 05:37:53','d49951b5-71ee-4448-8937-f52dae102ffb'),(141966,141966,1,'about-us','about',1,'2022-08-16 05:38:24','2022-08-16 05:38:24','33359f35-3995-4712-9bd6-efd9f4aef7b9'),(141968,141968,1,'8-important-marketing-questions-for-every-business','articles/8-important-marketing-questions-for-every-business',1,'2022-08-16 07:22:28','2022-08-16 07:22:28','13dd8f91-c6c3-4032-b027-e0436fd147fa'),(141970,141970,1,'8-important-marketing-questions-for-every-business','articles/8-important-marketing-questions-for-every-business',1,'2022-08-16 07:22:41','2022-08-16 07:22:41','ba3a1858-eae6-4323-87a9-fcdf900fe1bc'),(141971,141971,1,'your-care-navigator','work/your-care-navigator',1,'2022-08-16 23:16:52','2022-08-16 23:16:52','6f996b73-0d4d-4357-8a56-4e3da4cf4aef'),(141972,141972,1,'8-important-marketing-questions-for-every-business','articles/8-important-marketing-questions-for-every-business',1,'2022-08-17 02:35:27','2022-08-17 02:35:27','5aad2615-3cbd-4ed6-ba26-2dcfe52e5cbc'),(141974,141974,1,'your-care-navigator','work/your-care-navigator',1,'2022-08-17 02:36:37','2022-08-17 02:36:37','b6fd47ca-c866-4715-b7b9-86b3159bbad7'),(141975,141975,1,'urban-utilities','work/urban-utilities',1,'2022-08-17 04:14:48','2022-08-17 04:14:48','6d54e09f-18dc-4891-8d99-3e803887ec5c'),(141977,141977,1,NULL,NULL,1,'2022-08-17 04:16:34','2022-08-17 04:16:34','637605f7-6d4c-4838-80f3-0aa8499fe37a'),(141978,141978,1,'8-important-marketing-questions-for-every-business','articles/8-important-marketing-questions-for-every-business',1,'2022-08-17 04:38:29','2022-08-17 04:38:29','afc94b82-3b30-4102-b60a-d2850c5b2187'),(141980,141980,1,'8-important-marketing-questions-for-every-business','articles/8-important-marketing-questions-for-every-business',1,'2022-08-17 04:38:56','2022-08-17 04:38:56','57f47339-3818-4cb8-8b02-70aa5a8395ff'),(141982,141982,1,'8-important-marketing-questions-for-every-business','articles/8-important-marketing-questions-for-every-business',1,'2022-08-17 04:54:11','2022-08-17 04:54:11','235dec15-8f0b-4e57-b8e8-b3d2f77dde8c'),(141984,141984,1,'8-important-marketing-questions-for-every-business','articles/8-important-marketing-questions-for-every-business',1,'2022-08-17 04:58:00','2022-08-17 04:58:00','88044f09-6bc2-4ef1-be9d-d52e402fbc44'),(141986,141986,1,'8-important-marketing-questions-for-every-business','articles/8-important-marketing-questions-for-every-business',1,'2022-08-17 05:00:36','2022-08-17 05:00:36','4b00df2f-86dc-4436-9799-368f7a10f163'),(141987,141987,1,'8-important-marketing-questions-for-every-business','articles/8-important-marketing-questions-for-every-business',1,'2022-08-17 05:10:17','2022-08-17 05:10:17','12b6073f-76cc-4a8e-86cd-50cb0931f4c2'),(141989,141989,1,'seven-important-questions-for-effective-marketing-communications','articles/seven-important-questions-for-effective-marketing-communications',1,'2022-08-17 05:10:50','2022-08-17 05:10:50','feb6ff5a-71ed-44c5-ad54-e5438dab7122'),(141991,141991,1,'are-customers-giving-up-on-your-website','articles/are-customers-giving-up-on-your-website',1,'2022-08-17 05:11:34','2022-08-17 05:11:34','84f376b6-5401-453f-87d2-a893a358cebe'),(141993,141993,1,'seven-important-questions-for-effective-marketing-communications','articles/seven-important-questions-for-effective-marketing-communications',1,'2022-08-17 05:12:56','2022-08-17 05:12:56','cf26edb3-d1bd-4216-bea0-9489d87567d7'),(141997,141997,1,'brisbane-north-phn-website','work/brisbane-north-phn-website',1,'2022-08-17 22:14:55','2022-08-17 22:14:55','2c9ea726-c40f-4efd-8282-cb9e4e7fb3ba'),(141998,141998,1,NULL,NULL,1,'2022-08-18 07:06:05','2022-08-18 07:06:05','a9e487cf-32b0-4fda-9552-fe87cf20939b'),(141999,141999,1,'urban-utilities','work/urban-utilities',1,'2022-08-18 07:06:55','2022-08-18 07:06:55','c47056f0-c26f-4ad4-959a-35f2c57ad312'),(142001,142001,1,'urban-utilities','work/urban-utilities',1,'2022-08-18 07:07:33','2022-08-18 07:07:33','02c40a6b-3d9e-483f-9ccf-645f9d8925a3'),(142003,142003,1,'urban-utilities','work/urban-utilities',1,'2022-08-18 07:09:49','2022-08-18 07:09:49','e5d7025c-a7e5-4d1b-a4f3-c6deb09facee'),(142004,142004,1,'your-care-navigator','work/your-care-navigator',1,'2022-08-18 07:10:03','2022-08-18 07:10:03','08390fd7-1a84-40fa-876d-4a2f84ef4a4f'),(142006,142006,1,'your-care-navigator','work/your-care-navigator',1,'2022-08-18 07:10:20','2022-08-18 07:10:20','d114671e-c121-49cb-9388-234750b66d33'),(142008,142008,1,'your-care-navigator','work/your-care-navigator',1,'2022-08-18 07:11:09','2022-08-18 07:11:09','be7c4724-5f58-487f-aed5-f69fbc708158'),(142009,142009,1,NULL,NULL,1,'2022-08-18 07:17:57','2022-08-18 07:17:57','567f0d13-dca4-4dcc-bd9b-74081cce0c73'),(142011,142011,1,NULL,NULL,1,'2022-08-18 07:21:04','2022-08-18 07:21:04','d0b158c3-1955-48d7-a622-5d04e79ba4e3'),(142012,142012,1,'your-care-navigator','work/your-care-navigator',1,'2022-08-18 07:21:46','2022-08-18 07:21:46','2b4d4dbe-dc97-4be7-9981-733609e96e1a'),(142014,142014,1,NULL,NULL,1,'2022-08-18 07:24:47','2022-08-18 07:24:47','85150fbe-fa47-4213-bdec-b00ae13df9e1'),(142015,142015,1,'your-care-navigator','work/your-care-navigator',1,'2022-08-18 07:25:17','2022-08-18 07:25:17','675dc7f3-5d64-43af-bdf2-e9ec4b4213a3'),(142017,142017,1,'your-care-navigator','work/your-care-navigator',1,'2022-08-18 07:27:53','2022-08-18 07:27:53','bf6ed1b8-bcfd-4480-9c82-6cebe0d0fc3b'),(142019,142019,1,'urban-utilities','work/urban-utilities',1,'2022-08-18 21:47:11','2022-08-18 21:47:11','e9cac9c1-41bd-479e-8f16-a1c7c28e5de4'),(142021,142021,1,'urban-utilities','work/urban-utilities',1,'2022-08-19 03:55:02','2022-08-19 03:55:02','cb0b2baf-d353-4496-a33c-42ba12c7b1f5'),(142023,142023,1,'urban-utilities','work/urban-utilities',1,'2022-08-19 03:58:24','2022-08-19 03:58:24','92cad237-f604-4187-bcc4-c3e6432b3717'),(142025,142025,1,'urban-utilities','work/urban-utilities',1,'2022-08-19 04:01:42','2022-08-19 04:01:42','26ec6688-1e23-497f-866c-51fdae7a0bf8'),(142029,142029,1,'seven-important-questions-for-effective-marketing-communications','articles/seven-important-questions-for-effective-marketing-communications',1,'2022-08-22 06:14:16','2022-08-22 06:14:16','03c02d5b-152b-4f7a-bb7b-a199d1ed0162'),(142030,142030,1,'your-care-navigator','work/your-care-navigator',1,'2022-08-22 23:27:43','2022-08-22 23:27:43','17f83be1-9a88-4a5c-81bb-3e7cd4b37b73'),(142033,142033,1,'brisbane-north-phn-website','work/brisbane-north-phn-website',1,'2022-08-24 01:12:15','2022-08-24 01:12:15','6a1e6c43-c59b-40af-b22f-a1b145c8330e'),(142034,142034,1,'brisbane-north-phn-website','work/brisbane-north-phn-website',1,'2022-08-24 01:14:05','2022-08-24 01:14:05','4e2d6b0b-ee63-44f5-bd83-d9e4aaf163b1'),(142035,142035,1,'brisbane-north-phn-website','work/brisbane-north-phn-website',1,'2022-08-24 01:14:57','2022-08-24 01:14:57','4c5e5388-7a68-4b5b-bb9a-cc1a5470bdf7'),(142036,142036,1,'glengaracare','work/glengaracare',1,'2022-08-24 06:39:06','2022-08-24 06:39:06','5ad3323c-1ad9-4be2-a348-149ec8928555'),(142037,142037,1,'the-school-of-distance-education-charters-towers','work/the-school-of-distance-education-charters-towers',1,'2022-08-24 06:52:57','2022-08-24 06:52:57','a8dae7ff-a877-472f-8978-73216a989247'),(142038,142038,1,'west-moreton-anglican-college','work/west-moreton-anglican-college',1,'2022-08-24 07:11:53','2022-08-24 07:11:53','d9548d92-dcef-48cd-8a5f-0204679efc5d'),(142039,142039,1,NULL,NULL,1,'2022-08-25 00:35:10','2022-08-25 00:35:10','19fa3058-d1cb-40e8-99b0-ef169765ed1c'),(142040,142040,1,NULL,NULL,1,'2022-08-25 01:33:44','2022-08-25 01:33:44','879ed203-4c44-4333-8991-52ee12bee423'),(142041,142041,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-08-25 02:23:49','2022-08-25 02:23:49','755f86fb-b50b-4b68-8ee9-85d30dec448c'),(142043,142043,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-08-25 02:27:21','2022-08-25 02:27:21','9c6d0217-61d4-4ab9-984b-e2d7da6f20b3'),(142045,142045,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-08-25 02:27:33','2022-08-25 02:27:33','4f7de464-bcb3-415e-a39f-6767d0321b86'),(142047,142047,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-08-25 02:27:45','2022-08-25 02:27:45','538a10f9-3523-47a9-8993-b0954d3fe67d'),(142050,142050,1,'urban-utilities','work/urban-utilities',1,'2022-08-25 02:31:17','2022-08-25 02:31:17','586eddbd-5571-4f43-9784-257215abf43e'),(142051,142051,1,'urban-utilities','work/urban-utilities',1,'2022-08-25 02:31:26','2022-08-25 02:31:26','94e9ba38-397d-45e2-993d-4c5fab64f039'),(142053,142053,1,'your-care-navigator','work/your-care-navigator',1,'2022-08-25 02:33:32','2022-08-25 02:33:32','f34667c2-1e4e-4d7d-9e5c-871647ec8fb9'),(142056,142056,1,'seven-important-questions-for-effective-marketing-communications','articles/seven-important-questions-for-effective-marketing-communications',1,'2022-08-25 02:41:37','2022-08-25 02:41:37','a35f7e1b-6659-4022-8f0f-da2a0363479e'),(142057,142057,1,'about-us','about',1,'2022-08-25 03:58:21','2022-08-25 03:58:21','b0d86ab0-d6b5-43b2-99b1-00f7a4bbfca3'),(142059,142059,1,'seven-important-questions-for-effective-marketing-communications','articles/seven-important-questions-for-effective-marketing-communications',1,'2022-08-25 04:23:30','2022-08-25 04:23:30','efd76034-801c-4610-aa22-d50379000721'),(142061,142061,1,'your-care-navigator','work/your-care-navigator',1,'2022-08-25 04:29:46','2022-08-25 04:29:46','341be2a0-1f88-4ef6-9dfc-b0fa87400cb2'),(142062,142062,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-08-25 04:31:06','2022-08-25 04:31:06','22e21445-c789-4742-9c3d-096e62c3b3d4'),(142064,142064,1,'seven-important-questions-for-effective-marketing-communications','articles/seven-important-questions-for-effective-marketing-communications',1,'2022-08-25 04:36:54','2022-08-25 04:36:54','6f2c0d5f-ee64-4c57-9e74-00702559c358'),(142065,142065,1,'office-of-industrial-relations','work/office-of-industrial-relations',1,'2022-08-25 06:03:48','2022-08-25 06:04:35','6878bca1-48ff-4d60-bf02-6c1456903e4b'),(142066,142066,1,'your-care-navigator','work/your-care-navigator',1,'2022-08-25 21:34:36','2022-08-25 21:34:36','91280979-a4b0-4d6e-a0da-92eac7000f9f'),(142067,142067,1,'your-care-navigator','work/your-care-navigator',1,'2022-08-30 00:13:28','2022-08-30 00:13:28','c1ee5a50-3cee-44f1-af2d-26c3466745cf'),(142069,142069,1,'your-care-navigator','work/your-care-navigator',1,'2022-08-30 00:13:40','2022-08-30 00:13:40','c8b698fc-27e0-489a-a215-3e848ab50e26'),(142071,142071,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-09-05 06:28:39','2022-09-05 06:28:39','de02e795-d36c-4528-b443-e8cfbe720942'),(142075,142075,1,'jul-2015','reports/jul-2015',1,'2022-09-07 07:02:05','2022-09-07 07:02:05','5bf2746f-9ae6-46eb-8708-fe142f55bc2f'),(142076,142076,1,'aug-2015','reports/aug-2015',1,'2022-09-07 07:02:06','2022-09-07 07:02:06','4d2ffece-f922-4cb6-86da-9b0667a5c96e'),(142077,142077,1,'sep-2015','reports/sep-2015',1,'2022-09-07 07:02:07','2022-09-07 07:02:07','df367dab-01cf-419c-b07d-42fe30d25d6b'),(142078,142078,1,'oct-2015','reports/oct-2015',1,'2022-09-07 07:02:08','2022-09-07 07:02:08','345eaca5-db8b-4931-af12-183dd4aa7fbc'),(142079,142079,1,'nov-2015','reports/nov-2015',1,'2022-09-07 07:02:09','2022-09-07 07:02:09','2a05809d-2fc6-4ba9-8544-e5551dbdf565'),(142080,142080,1,'dec-2015','reports/dec-2015',1,'2022-09-07 07:02:10','2022-09-07 07:02:10','781c8804-d92b-4ab9-8188-c5adec308799'),(142081,142081,1,'jan-2016','reports/jan-2016',1,'2022-09-07 07:02:11','2022-09-07 07:02:11','08d6cd33-ac83-4927-9462-80410e31f221'),(142082,142082,1,'feb-2016','reports/feb-2016',1,'2022-09-07 07:02:11','2022-09-07 07:02:11','2471e821-3f73-46fd-80fa-fc4aee17a519'),(142083,142083,1,'mar-2016','reports/mar-2016',1,'2022-09-07 07:02:12','2022-09-07 07:02:12','0a27cfe5-cd93-43cc-96d3-0636818718a1'),(142084,142084,1,'apr-2016','reports/apr-2016',1,'2022-09-07 07:02:13','2022-09-07 07:02:13','1f1f647b-4475-4b85-9402-8f359dd2576b'),(142085,142085,1,'may-2016','reports/may-2016',1,'2022-09-07 07:02:14','2022-09-07 07:02:14','a7d6fe36-1526-4839-ad40-d781c74c5f46'),(142086,142086,1,'jun-2016','reports/jun-2016',1,'2022-09-07 07:02:14','2022-09-07 07:02:14','81ee1fc6-2b13-4ad9-a998-fb824de083be'),(142087,142087,1,'jul-2016','reports/jul-2016',1,'2022-09-07 07:02:15','2022-09-07 07:02:15','32018927-a868-48d0-ad72-4d05d0403779'),(142088,142088,1,'aug-2016','reports/aug-2016',1,'2022-09-07 07:02:16','2022-09-07 07:02:16','b78397be-8b13-4651-989d-0d829b55ea0e'),(142089,142089,1,'sep-2016','reports/sep-2016',1,'2022-09-07 07:02:17','2022-09-07 07:02:17','ec62ee7b-a838-4c70-b5c0-926b05420322'),(142090,142090,1,'oct-2016','reports/oct-2016',1,'2022-09-07 07:02:17','2022-09-07 07:02:17','d592ae37-6366-4ed2-b8c4-7dbdef0ad73c'),(142091,142091,1,'nov-2016','reports/nov-2016',1,'2022-09-07 07:02:18','2022-09-07 07:02:18','fbdbcb4d-3b90-43a7-9a53-8738bfd617ef'),(142092,142092,1,'dec-2016','reports/dec-2016',1,'2022-09-07 07:02:19','2022-09-07 07:02:19','34359b17-2d7d-4adb-b3e6-33c8ecec6fbf'),(142093,142093,1,'jan-2017','reports/jan-2017',1,'2022-09-07 07:02:20','2022-09-07 07:02:20','e203d198-3fc9-4285-92d3-5ffed602eb4d'),(142094,142094,1,'feb-2017','reports/feb-2017',1,'2022-09-07 07:02:21','2022-09-07 07:02:21','5fb0ec23-8733-489e-a447-396424941385'),(142095,142095,1,'mar-2017','reports/mar-2017',1,'2022-09-07 07:02:22','2022-09-07 07:02:22','6082e267-becc-4570-9916-a78d7fbe63db'),(142096,142096,1,'apr-2017','reports/apr-2017',1,'2022-09-07 07:02:23','2022-09-07 07:02:23','f0a6bba6-80ca-42fd-af70-e58c50e0454e'),(142097,142097,1,'may-2017','reports/may-2017',1,'2022-09-07 07:02:24','2022-09-07 07:02:24','a36d8f44-9c34-4ec3-ba95-0e015486f060'),(142098,142098,1,'jun-2017','reports/jun-2017',1,'2022-09-07 07:02:25','2022-09-07 07:02:25','d34d5721-0b1e-4eed-8649-1c219cf5bc11'),(142099,142099,1,'jul-2017','reports/jul-2017',1,'2022-09-07 07:02:26','2022-09-07 07:02:26','c7caac86-2cf7-4528-a275-3a83615cd462'),(142100,142100,1,'aug-2017','reports/aug-2017',1,'2022-09-07 07:02:27','2022-09-07 07:02:27','7a546ad0-e550-4895-9d72-191839ca9c6d'),(142101,142101,1,'sep-2017','reports/sep-2017',1,'2022-09-07 07:02:28','2022-09-07 07:02:28','5f1c3009-30af-4dd7-954e-95bb3ed53948'),(142102,142102,1,'oct-2017','reports/oct-2017',1,'2022-09-07 07:02:29','2022-09-07 07:02:29','d703d2ca-bbff-4b96-b9f1-ab433cf12acf'),(142103,142103,1,'nov-2017','reports/nov-2017',1,'2022-09-07 07:02:30','2022-09-07 07:02:30','c511fb3d-0d20-414b-9745-52472f56a9bf'),(142104,142104,1,'dec-2017','reports/dec-2017',1,'2022-09-07 07:02:30','2022-09-07 07:02:30','d93e6fd0-a0fb-4198-a231-d1c66971e0a9'),(142105,142105,1,'jan-2018','reports/jan-2018',1,'2022-09-07 07:02:31','2022-09-07 07:02:31','ab0e387d-cb75-4788-aa28-69f72476e361'),(142106,142106,1,'feb-2018','reports/feb-2018',1,'2022-09-07 07:02:32','2022-09-07 07:02:32','d08f00db-20d7-4e8e-a832-581a2a4cb7e8'),(142107,142107,1,'mar-2018','reports/mar-2018',1,'2022-09-07 07:02:33','2022-09-07 07:02:33','843636ec-b629-4dcf-a8ef-81471252caa4'),(142108,142108,1,'apr-2018','reports/apr-2018',1,'2022-09-07 07:02:34','2022-09-07 07:02:34','5de6ab40-958f-420e-9d3a-e7ef2b7e4ffa'),(142109,142109,1,'may-2018','reports/may-2018',1,'2022-09-07 07:02:35','2022-09-07 07:02:35','4d6719df-d8ed-4a7b-9460-7c3f0a6a6a71'),(142110,142110,1,'jun-2018','reports/jun-2018',1,'2022-09-07 07:02:35','2022-09-07 07:02:35','05e328cd-444f-435d-ba70-c3005546f8ef'),(142111,142111,1,'jul-2018','reports/jul-2018',1,'2022-09-07 07:02:36','2022-09-07 07:02:36','dc4c238b-e992-46f8-a6a7-e3db681b1af2'),(142112,142112,1,'aug-2018','reports/aug-2018',1,'2022-09-07 07:02:37','2022-09-07 07:02:37','8733ebc9-63c6-4a2e-a225-9349ed6e9eca'),(142113,142113,1,'sep-2018','reports/sep-2018',1,'2022-09-07 07:02:38','2022-09-07 07:02:38','cb4bf20b-de22-4ab5-a145-db89ba916169'),(142114,142114,1,'oct-2018','reports/oct-2018',1,'2022-09-07 07:02:39','2022-09-07 07:02:39','6ad039fd-72d8-4e11-901d-c6a1439ee19f'),(142115,142115,1,'nov-2018','reports/nov-2018',1,'2022-09-07 07:02:40','2022-09-07 07:02:40','799f9732-e1c1-4178-b32d-5dc2ff06b804'),(142116,142116,1,'dec-2018','reports/dec-2018',1,'2022-09-07 07:02:41','2022-09-07 07:02:41','1483e758-586c-4633-9c32-a117d32284b6'),(142117,142117,1,'jan-2019','reports/jan-2019',1,'2022-09-07 07:02:42','2022-09-07 07:02:42','d8c44b90-3b77-497f-93c1-877f00f11aaf'),(142118,142118,1,'feb-2019','reports/feb-2019',1,'2022-09-07 07:02:43','2022-09-07 07:02:43','b9988cf1-fd29-4e64-9a80-5475b3a32415'),(142119,142119,1,'mar-2019','reports/mar-2019',1,'2022-09-07 07:02:44','2022-09-07 07:02:44','ab1e1a00-23c3-44f1-81e5-4aa8631f1641'),(142120,142120,1,'apr-2019','reports/apr-2019',1,'2022-09-07 07:02:45','2022-09-07 07:02:45','7f270673-7962-4c64-8499-e20e17f89310'),(142121,142121,1,'may-2019','reports/may-2019',1,'2022-09-07 07:02:46','2022-09-07 07:02:46','fc2d30aa-747e-426a-8a62-b002986f4873'),(142122,142122,1,'jun-2019','reports/jun-2019',1,'2022-09-07 07:02:47','2022-09-07 07:02:47','aa525e22-7e82-4a1c-91ec-e156005ede86'),(142123,142123,1,'jul-2019','reports/jul-2019',1,'2022-09-07 07:02:48','2022-09-07 07:02:48','2318b109-8d9b-4392-ae80-769a8cb89fd0'),(142124,142124,1,'aug-2019','reports/aug-2019',1,'2022-09-07 07:02:49','2022-09-07 07:02:49','fa44ba9a-950f-4ef0-ac24-d205ec617ecd'),(142125,142125,1,'sep-2019','reports/sep-2019',1,'2022-09-07 07:02:50','2022-09-07 07:02:50','d00b11af-a989-46bd-9b5c-887591426454'),(142126,142126,1,'oct-2019','reports/oct-2019',1,'2022-09-07 07:02:51','2022-09-07 07:02:51','3f6ce4db-f670-4f47-a4d0-3eefaad17481'),(142127,142127,1,'nov-2019','reports/nov-2019',1,'2022-09-07 07:02:52','2022-09-07 07:02:52','93ab30da-bb90-4211-880d-898c5d299af2'),(142128,142128,1,'dec-2019','reports/dec-2019',1,'2022-09-07 07:02:52','2022-09-07 07:02:52','6fbd33e4-727b-4419-8f29-2191362b8d05'),(142129,142129,1,'jan-2020','reports/jan-2020',1,'2022-09-07 07:02:53','2022-09-07 07:02:53','527b909d-e724-4b8b-9519-de7612c53e42'),(142130,142130,1,'feb-2020','reports/feb-2020',1,'2022-09-07 07:02:54','2022-09-07 07:02:54','b24b871e-4945-47da-865d-7684f92e9405'),(142131,142131,1,'mar-2020','reports/mar-2020',1,'2022-09-07 07:02:55','2022-09-07 07:02:55','6dc973b5-e734-497c-98d3-50b5cef669d7'),(142132,142132,1,'apr-2020','reports/apr-2020',1,'2022-09-07 07:02:56','2022-09-07 07:02:56','536da651-d866-4129-b0b0-d97e3d7a49c5'),(142133,142133,1,'may-2020','reports/may-2020',1,'2022-09-07 07:02:57','2022-09-07 07:02:57','76dd5bfe-e75e-4db3-8489-869e2373d245'),(142134,142134,1,'jun-2020','reports/jun-2020',1,'2022-09-07 07:02:58','2022-09-07 07:02:58','7506308f-3f92-4cf8-b8c5-5e9fe8a4a19d'),(142135,142135,1,'jul-2020','reports/jul-2020',1,'2022-09-07 07:02:59','2022-09-07 07:02:59','4dc48039-3b66-4408-bb0b-33f2af5fe1ea'),(142136,142136,1,'aug-2020','reports/aug-2020',1,'2022-09-07 07:03:00','2022-09-07 07:03:00','2fdb65a1-6d79-45b2-b759-2d79b6428082'),(142137,142137,1,'sep-2020','reports/sep-2020',1,'2022-09-07 07:03:01','2022-09-07 07:03:01','141e4a70-65cf-42b3-9c5e-ba2233b17355'),(142138,142138,1,'oct-2020','reports/oct-2020',1,'2022-09-07 07:03:02','2022-09-07 07:03:02','f8f068c9-ad2a-4564-9505-5611084afd70'),(142139,142139,1,'nov-2020','reports/nov-2020',1,'2022-09-07 07:03:03','2022-09-07 07:03:03','779c3469-1af4-4971-81f7-b04b2846d347'),(142140,142140,1,'dec-2020','reports/dec-2020',1,'2022-09-07 07:03:03','2022-09-07 07:03:03','93ff1cd7-6c42-40ea-9c25-e1a9b015ec48'),(142141,142141,1,'jan-2021','reports/jan-2021',1,'2022-09-07 07:03:04','2022-09-07 07:03:04','a6416d66-a5a4-49f5-95c9-103d72ddc95e'),(142142,142142,1,'feb-2021','reports/feb-2021',1,'2022-09-07 07:03:05','2022-09-07 07:03:05','884f085b-e389-4cde-9493-697860d3ea44'),(142143,142143,1,'mar-2021','reports/mar-2021',1,'2022-09-07 07:03:06','2022-09-07 07:03:06','39e0c10a-a626-4263-98ee-3c34cb6c7697'),(142144,142144,1,'apr-2021','reports/apr-2021',1,'2022-09-07 07:03:07','2022-09-07 07:03:07','7ec0f306-b4e4-4154-8b71-b93d3f44762c'),(142145,142145,1,'may-2021','reports/may-2021',1,'2022-09-07 07:03:08','2022-09-07 07:03:08','b716cec1-2190-4b77-b0d9-3fab9d47a22f'),(142146,142146,1,'jun-2021','reports/jun-2021',1,'2022-09-07 07:03:09','2022-09-07 07:03:09','25b14b0e-8615-489f-8c04-c0c275b36e76'),(142147,142147,1,'jul-2021','reports/jul-2021',1,'2022-09-07 07:03:10','2022-09-07 07:03:10','88541621-10c6-4e97-a87a-154ee258c714'),(142148,142148,1,'aug-2021','reports/aug-2021',1,'2022-09-07 07:03:11','2022-09-07 07:03:11','490d3250-c3db-4c0d-be30-96a12e42d9f3'),(142149,142149,1,'sep-2021','reports/sep-2021',1,'2022-09-07 07:03:12','2022-09-07 07:03:12','df51414c-57a4-4428-bfe0-6839ca472534'),(142150,142150,1,'oct-2021','reports/oct-2021',1,'2022-09-07 07:03:13','2022-09-07 07:03:13','0f2a9e47-7f9e-4690-a40b-0ccceae1b5c0'),(142151,142151,1,'nov-2021','reports/nov-2021',1,'2022-09-07 07:03:14','2022-09-07 07:03:14','1cab7206-aec6-4534-a2e0-2791b8aa20ef'),(142152,142152,1,'dec-2021','reports/dec-2021',1,'2022-09-07 07:03:15','2022-09-07 07:03:15','7630ff8a-b595-46a5-8eec-1d0666669cf1'),(142153,142153,1,'jan-2022','reports/jan-2022',1,'2022-09-07 07:03:16','2022-09-07 07:03:16','56241002-c10a-41d1-848a-ecff918d1774'),(142154,142154,1,'feb-2022','reports/feb-2022',1,'2022-09-07 07:03:17','2022-09-07 07:03:17','585b9187-5725-48f5-bb09-70c46761b390'),(142155,142155,1,'mar-2022','reports/mar-2022',1,'2022-09-07 07:03:18','2022-09-07 07:03:18','9f3ff34d-aef3-46b4-947f-ad00cf9fd1af'),(142156,142156,1,'apr-2022','reports/apr-2022',1,'2022-09-07 07:03:19','2022-09-07 07:03:19','73542b9e-f1c4-42a5-8280-3b7844090bbb'),(142157,142157,1,'may-2022','reports/may-2022',1,'2022-09-07 07:03:20','2022-09-07 07:03:20','8532fd5c-9cf8-48bb-9e9b-261bbf3e07df'),(142158,142158,1,'jun-2022','reports/jun-2022',1,'2022-09-07 07:03:21','2022-09-07 07:03:21','70888367-d5c5-4f74-96aa-498163d00af7'),(142159,142159,1,'jul-2015','reports/jul-2015',1,'2022-09-07 07:09:01','2022-09-07 07:09:01','42dc7b00-4513-4b22-83db-e22093bf8474'),(142160,142160,1,'aug-2015','reports/aug-2015',1,'2022-09-07 07:09:02','2022-09-07 07:09:02','98458871-8b48-4ce2-98ed-c1892f6c87cc'),(142161,142161,1,'sep-2015','reports/sep-2015',1,'2022-09-07 07:09:03','2022-09-07 07:09:03','74ec01e7-5fc4-404d-b70f-4c4d8eb296ad'),(142162,142162,1,'oct-2015','reports/oct-2015',1,'2022-09-07 07:09:03','2022-09-07 07:09:03','15be0559-795c-48e6-921f-429946b373e2'),(142163,142163,1,'nov-2015','reports/nov-2015',1,'2022-09-07 07:09:04','2022-09-07 07:09:04','2ad5e3a1-a401-43bb-9cfe-8940e1d3df09'),(142164,142164,1,'dec-2015','reports/dec-2015',1,'2022-09-07 07:09:05','2022-09-07 07:09:05','bd9b40ab-9975-48f1-82e2-cef32d42b7b7'),(142165,142165,1,'jan-2016','reports/jan-2016',1,'2022-09-07 07:09:06','2022-09-07 07:09:06','5586f73e-3be9-4f25-b1fa-a5d19d594cff'),(142166,142166,1,'feb-2016','reports/feb-2016',1,'2022-09-07 07:09:07','2022-09-07 07:09:07','c289a860-6513-4f52-b5a1-16105085955e'),(142167,142167,1,'mar-2016','reports/mar-2016',1,'2022-09-07 07:09:08','2022-09-07 07:09:08','c346bf23-c7bc-4ff6-9c01-99fd7f0d1796'),(142168,142168,1,'apr-2016','reports/apr-2016',1,'2022-09-07 07:09:09','2022-09-07 07:09:09','61c5c5bc-492f-4461-9a31-988a44557659'),(142169,142169,1,'may-2016','reports/may-2016',1,'2022-09-07 07:09:09','2022-09-07 07:09:09','c5631832-08e1-45fb-aa79-7c86cf99be34'),(142170,142170,1,'jun-2016','reports/jun-2016',1,'2022-09-07 07:09:10','2022-09-07 07:09:10','39316f2e-a378-4a8d-8678-4eb3cc2a8071'),(142171,142171,1,'jul-2016','reports/jul-2016',1,'2022-09-07 07:09:11','2022-09-07 07:09:11','c941de6c-7efd-42a4-a87c-4def90fd117d'),(142172,142172,1,'aug-2016','reports/aug-2016',1,'2022-09-07 07:09:12','2022-09-07 07:09:12','2c64fb42-439c-4e3b-93eb-0aaf3c316bc0'),(142173,142173,1,'sep-2016','reports/sep-2016',1,'2022-09-07 07:09:12','2022-09-07 07:09:12','39a5629b-3b40-4767-a0e5-d860d4a76a16'),(142174,142174,1,'oct-2016','reports/oct-2016',1,'2022-09-07 07:09:13','2022-09-07 07:09:13','28a30d54-c4c3-4609-b6f5-deba8c7493d6'),(142175,142175,1,'nov-2016','reports/nov-2016',1,'2022-09-07 07:09:14','2022-09-07 07:09:14','395ae881-73a3-424c-9b5b-de0189d57bab'),(142176,142176,1,'dec-2016','reports/dec-2016',1,'2022-09-07 07:09:15','2022-09-07 07:09:15','d53d329f-f12f-4b3e-9fe2-891052066444'),(142177,142177,1,'jan-2017','reports/jan-2017',1,'2022-09-07 07:09:16','2022-09-07 07:09:16','37bdfe53-9920-4ccd-859e-d2546e69c68c'),(142178,142178,1,'feb-2017','reports/feb-2017',1,'2022-09-07 07:09:17','2022-09-07 07:09:17','eb18fa4b-2de6-4b89-8a22-f05ff345fd4e'),(142179,142179,1,'mar-2017','reports/mar-2017',1,'2022-09-07 07:09:18','2022-09-07 07:09:18','755fdac8-a754-4eda-a682-ccd447f1c367'),(142180,142180,1,'apr-2017','reports/apr-2017',1,'2022-09-07 07:09:18','2022-09-07 07:09:18','d09e2d67-ee72-4eb0-b46c-cb7a82db4298'),(142181,142181,1,'may-2017','reports/may-2017',1,'2022-09-07 07:09:19','2022-09-07 07:09:19','f2ee88b9-d3c3-415d-9949-a14108e5516a'),(142182,142182,1,'jun-2017','reports/jun-2017',1,'2022-09-07 07:09:20','2022-09-07 07:09:20','f576babb-8ec1-46e9-846e-3a6e2f0090f7'),(142183,142183,1,'jul-2017','reports/jul-2017',1,'2022-09-07 07:09:21','2022-09-07 07:09:21','42bdbf2a-8228-4515-8dd7-775f01c70f40'),(142184,142184,1,'aug-2017','reports/aug-2017',1,'2022-09-07 07:09:22','2022-09-07 07:09:22','d8d56dff-dc2a-4b94-8811-cf544840330d'),(142185,142185,1,'sep-2017','reports/sep-2017',1,'2022-09-07 07:09:23','2022-09-07 07:09:23','b99660a3-937b-4e96-bc37-fd22df0fe9e5'),(142186,142186,1,'oct-2017','reports/oct-2017',1,'2022-09-07 07:09:24','2022-09-07 07:09:24','8c42dade-f852-49c5-b949-8dfa16e2965e'),(142187,142187,1,'nov-2017','reports/nov-2017',1,'2022-09-07 07:09:24','2022-09-07 07:09:24','1d993b2c-5cd3-40aa-bb3a-413f1ca6887b'),(142188,142188,1,'dec-2017','reports/dec-2017',1,'2022-09-07 07:09:25','2022-09-07 07:09:25','7b61b074-0628-4535-8c49-b780c99f7b4f'),(142189,142189,1,'jan-2018','reports/jan-2018',1,'2022-09-07 07:09:26','2022-09-07 07:09:26','6484530f-6618-4e74-95c6-0a0470a561b4'),(142190,142190,1,'feb-2018','reports/feb-2018',1,'2022-09-07 07:09:27','2022-09-07 07:09:27','00c637b4-6836-444a-b566-c0d8f048107a'),(142191,142191,1,'mar-2018','reports/mar-2018',1,'2022-09-07 07:09:28','2022-09-07 07:09:28','6e038072-e4a3-443b-8434-d923fecd2b7b'),(142192,142192,1,'apr-2018','reports/apr-2018',1,'2022-09-07 07:09:29','2022-09-07 07:09:29','a674fefa-fad6-4947-8b74-a26fe005a58b'),(142193,142193,1,'may-2018','reports/may-2018',1,'2022-09-07 07:09:29','2022-09-07 07:09:29','2353b7c1-dc85-4b5c-9e5c-4709ba729c9d'),(142194,142194,1,'jun-2018','reports/jun-2018',1,'2022-09-07 07:09:30','2022-09-07 07:09:30','d8d605d0-5dee-4b89-9beb-af84bda8b509'),(142195,142195,1,'jul-2018','reports/jul-2018',1,'2022-09-07 07:09:31','2022-09-07 07:09:31','0cc009af-4808-4978-b01b-0123c8540378'),(142196,142196,1,'aug-2018','reports/aug-2018',1,'2022-09-07 07:09:32','2022-09-07 07:09:32','56be2990-aaea-4377-948a-6887749f0417'),(142197,142197,1,'sep-2018','reports/sep-2018',1,'2022-09-07 07:09:33','2022-09-07 07:09:33','0bae11cc-eba3-473d-91bf-89a98bafdf03'),(142198,142198,1,'oct-2018','reports/oct-2018',1,'2022-09-07 07:09:34','2022-09-07 07:09:34','18bd112f-4654-4ee8-8e1c-106d15fdedc5'),(142199,142199,1,'nov-2018','reports/nov-2018',1,'2022-09-07 07:09:35','2022-09-07 07:09:35','a2b1e8c4-7168-434e-bee4-ea0652614eae'),(142200,142200,1,'dec-2018','reports/dec-2018',1,'2022-09-07 07:09:36','2022-09-07 07:09:36','6424a8e5-b5c0-4c4d-b25c-d0ded18f61f9'),(142201,142201,1,'jan-2019','reports/jan-2019',1,'2022-09-07 07:09:36','2022-09-07 07:09:36','91a19d4a-d7aa-45a0-913b-d78643c0b2ee'),(142202,142202,1,'feb-2019','reports/feb-2019',1,'2022-09-07 07:09:37','2022-09-07 07:09:37','8cc84a06-7234-46d9-a4de-cd584748092e'),(142203,142203,1,'mar-2019','reports/mar-2019',1,'2022-09-07 07:09:38','2022-09-07 07:09:38','946ba448-5327-40c2-b96f-30f699fe4bc7'),(142204,142204,1,'apr-2019','reports/apr-2019',1,'2022-09-07 07:09:39','2022-09-07 07:09:39','a4c0d691-0ce9-4992-b4a8-b1932c352661'),(142205,142205,1,'may-2019','reports/may-2019',1,'2022-09-07 07:09:40','2022-09-07 07:09:40','7120cc8d-2e02-42be-bad3-de191b8d939a'),(142206,142206,1,'jun-2019','reports/jun-2019',1,'2022-09-07 07:09:41','2022-09-07 07:09:41','7a55a987-91af-437e-bede-e0a0f86f1d06'),(142207,142207,1,'jul-2019','reports/jul-2019',1,'2022-09-07 07:09:41','2022-09-07 07:09:41','6c3a9189-c08e-4e93-bca1-062368deff51'),(142208,142208,1,'aug-2019','reports/aug-2019',1,'2022-09-07 07:09:42','2022-09-07 07:09:42','ad109eec-e643-43bb-81e7-1bc1e4f73819'),(142209,142209,1,'sep-2019','reports/sep-2019',1,'2022-09-07 07:09:43','2022-09-07 07:09:43','6e5f5dc3-fb9d-4264-a353-3943d9ae55cf'),(142210,142210,1,'oct-2019','reports/oct-2019',1,'2022-09-07 07:09:44','2022-09-07 07:09:44','e126037b-c383-4222-82b8-e3df8f70077d'),(142211,142211,1,'nov-2019','reports/nov-2019',1,'2022-09-07 07:09:45','2022-09-07 07:09:45','d60e5feb-0e9e-44e6-83ce-d84ddc53b910'),(142212,142212,1,'dec-2019','reports/dec-2019',1,'2022-09-07 07:09:45','2022-09-07 07:09:45','637ac1ea-80d6-4ea7-8aa9-0c49f4217a20'),(142213,142213,1,'jan-2020','reports/jan-2020',1,'2022-09-07 07:09:46','2022-09-07 07:09:46','402982a2-f1f2-406c-82dd-94961702b4e4'),(142214,142214,1,'feb-2020','reports/feb-2020',1,'2022-09-07 07:09:47','2022-09-07 07:09:47','fc56d5cc-74d1-4ebb-abf2-783cf3c5c869'),(142215,142215,1,'mar-2020','reports/mar-2020',1,'2022-09-07 07:09:48','2022-09-07 07:09:48','13222507-b146-4ec7-ba8d-8b5d377ca193'),(142216,142216,1,'apr-2020','reports/apr-2020',1,'2022-09-07 07:09:48','2022-09-07 07:09:48','1e5eddfd-4515-46d3-8c4c-b1469aa9d997'),(142217,142217,1,'may-2020','reports/may-2020',1,'2022-09-07 07:09:49','2022-09-07 07:09:49','0482dbd3-f35c-43d7-8fb9-4f5bae79eb36'),(142218,142218,1,'jun-2020','reports/jun-2020',1,'2022-09-07 07:09:50','2022-09-07 07:09:50','d46f6081-fc0c-4b64-b721-0c07083d37df'),(142219,142219,1,'jul-2020','reports/jul-2020',1,'2022-09-07 07:09:51','2022-09-07 07:09:51','1d712c6c-89ce-4ab9-9553-2f4385e23745'),(142220,142220,1,'aug-2020','reports/aug-2020',1,'2022-09-07 07:09:52','2022-09-07 07:09:52','2c52f1e7-bdf0-41c2-9b0b-8846fab00e40'),(142221,142221,1,'sep-2020','reports/sep-2020',1,'2022-09-07 07:09:53','2022-09-07 07:09:53','443ea83a-fc26-4f5b-9068-83f0bdb29bff'),(142222,142222,1,'oct-2020','reports/oct-2020',1,'2022-09-07 07:09:54','2022-09-07 07:09:54','1e3ef1ce-e08a-4f7f-9069-884b91a98762'),(142223,142223,1,'nov-2020','reports/nov-2020',1,'2022-09-07 07:09:55','2022-09-07 07:09:55','f485f561-848a-4c69-9bde-1e345fb697d5'),(142224,142224,1,'dec-2020','reports/dec-2020',1,'2022-09-07 07:09:56','2022-09-07 07:09:56','9e0ffaf4-5dd8-4d70-a118-e86423d251d6'),(142225,142225,1,'jan-2021','reports/jan-2021',1,'2022-09-07 07:09:57','2022-09-07 07:09:57','53f4ae23-c060-4ad7-8c5a-d7fed3de5c01'),(142226,142226,1,'feb-2021','reports/feb-2021',1,'2022-09-07 07:09:58','2022-09-07 07:09:58','f239eb74-f2b7-4b18-b283-f4521144801a'),(142227,142227,1,'mar-2021','reports/mar-2021',1,'2022-09-07 07:09:59','2022-09-07 07:09:59','4d4b2e80-b69d-4974-b1c1-9f1b7dc031bc'),(142228,142228,1,'apr-2021','reports/apr-2021',1,'2022-09-07 07:10:00','2022-09-07 07:10:00','f7476a76-c8a7-4373-b601-63c0205e676c'),(142229,142229,1,'may-2021','reports/may-2021',1,'2022-09-07 07:10:01','2022-09-07 07:10:01','f8291bed-e4c9-4fd4-862e-fd5eaf387438'),(142230,142230,1,'jun-2021','reports/jun-2021',1,'2022-09-07 07:10:02','2022-09-07 07:10:02','6cd900f8-9810-45a6-8290-bfa2bd928324'),(142231,142231,1,'jul-2021','reports/jul-2021',1,'2022-09-07 07:10:03','2022-09-07 07:10:03','08238e8e-5129-4a11-8ba2-1b5b22920928'),(142232,142232,1,'aug-2021','reports/aug-2021',1,'2022-09-07 07:10:04','2022-09-07 07:10:04','4212931b-4917-4a9f-8bca-e74579f79def'),(142233,142233,1,'sep-2021','reports/sep-2021',1,'2022-09-07 07:10:04','2022-09-07 07:10:04','ea4a7333-bf82-45cf-bf39-49e89429517e'),(142234,142234,1,'oct-2021','reports/oct-2021',1,'2022-09-07 07:10:05','2022-09-07 07:10:05','af1c9a2c-bcbb-4ce1-a1fe-952c00e03edc'),(142235,142235,1,'nov-2021','reports/nov-2021',1,'2022-09-07 07:10:06','2022-09-07 07:10:06','5a7b01ac-0520-4188-8595-f74e01ffc37a'),(142236,142236,1,'dec-2021','reports/dec-2021',1,'2022-09-07 07:10:07','2022-09-07 07:10:07','f11f06da-c5f7-440a-adc3-0a91c1d10961'),(142237,142237,1,'jan-2022','reports/jan-2022',1,'2022-09-07 07:10:07','2022-09-07 07:10:07','4e62f601-e81e-43df-bba8-df60a4275a8c'),(142238,142238,1,'feb-2022','reports/feb-2022',1,'2022-09-07 07:10:08','2022-09-07 07:10:08','e8b69f6f-c380-48df-846c-1bc77da265d5'),(142239,142239,1,'mar-2022','reports/mar-2022',1,'2022-09-07 07:10:09','2022-09-07 07:10:09','b4ff4d93-e03f-423e-a2ba-6953a865ce4d'),(142240,142240,1,'apr-2022','reports/apr-2022',1,'2022-09-07 07:10:10','2022-09-07 07:10:10','d2b523fc-8a70-4047-b84e-378cc637a104'),(142241,142241,1,'may-2022','reports/may-2022',1,'2022-09-07 07:10:11','2022-09-07 07:10:11','ab9dc5da-bc52-4639-a4c4-57a5f9d193a0'),(142242,142242,1,'jun-2022','reports/jun-2022',1,'2022-09-07 07:10:12','2022-09-07 07:10:12','066a6a9b-661d-4002-964a-c5505f4e1be9'),(142243,142243,1,'jul-2022','reports/jul-2022',1,'2022-09-07 07:10:13','2022-09-07 07:10:13','196e7f6d-c29d-405b-a237-c98da7789702'),(142244,142244,1,'jul-2022','reports/jul-2022',1,'2022-09-07 07:10:13','2022-09-07 07:10:13','58892d16-d076-479f-b826-983b90889aa1'),(142245,142245,1,'aug-2022','reports/aug-2022',1,'2022-09-07 07:10:15','2022-09-07 07:10:15','2e24c928-0d89-4d82-a9e4-f8ab1d26b27b'),(142246,142246,1,'aug-2022','reports/aug-2022',1,'2022-09-07 07:10:15','2022-09-07 07:10:15','987505b6-2d7c-48bb-913e-2f778a3e0c51'),(142247,142247,1,'sep-2022','reports/sep-2022',1,'2022-09-07 07:10:17','2022-09-07 07:10:17','53ea627b-dc77-4a8e-9b8c-36e6173f3b4b'),(142248,142248,1,'sep-2022','reports/sep-2022',1,'2022-09-07 07:10:17','2022-09-07 07:10:17','11929f04-ea79-41d2-9af3-5f4dbc2c62e9'),(142250,142250,1,NULL,NULL,1,'2022-09-08 06:39:03','2022-09-08 06:39:03','a81089d4-7107-487c-9e6a-4a45e3a254db'),(142251,142251,1,'shark-smart','work/shark-smart',1,'2022-09-12 03:45:08','2022-10-05 03:56:33','3e2fe0ad-5506-4ed1-a209-e26ea90eb28c'),(142252,142252,1,NULL,NULL,1,'2022-09-12 03:51:58','2022-09-12 03:51:58','01f0e237-bdcf-46f9-acd1-1d9bcd384811'),(142253,142253,1,'residential-tenancies-authority','work/residential-tenancies-authority',1,'2022-09-12 03:52:09','2022-09-12 03:52:09','c12dd858-2191-43da-8c9b-d71df0bf1583'),(142255,142255,1,'residential-tenancies-authority','work/residential-tenancies-authority',1,'2022-09-12 03:53:08','2022-09-12 03:53:08','b60c4296-8e3d-4278-9e77-aa360c1d123e'),(142257,142257,1,'residential-tenancies-authority','work/residential-tenancies-authority',1,'2022-09-12 03:53:27','2022-09-12 03:53:27','0720e601-1ae5-4a5d-ade7-6a4c0f90cbb7'),(142258,142258,1,'queensland-hydro','work/queensland-hydro',1,'2022-09-12 05:45:12','2022-09-12 05:46:32','6737c4fc-dbcd-4613-832c-23b0852697a1'),(142259,142259,1,'queensland-hydro','work/queensland-hydro',1,'2022-09-12 05:48:54','2022-09-12 05:48:54','1529dded-d93b-4a1c-ab8f-4cddc7f55423'),(142261,142261,1,'queensland-hydro','work/queensland-hydro',1,'2022-09-12 06:03:01','2022-09-12 06:03:01','980ca501-ce95-4a74-8835-0eaa329838a6'),(142263,142263,1,'queensland-hydro','work/queensland-hydro',1,'2022-09-12 06:03:13','2022-09-12 06:03:13','0975cdb8-912c-47c3-bacd-c69d7244b4f2'),(142265,142265,1,'residential-tenancies-authority','work/residential-tenancies-authority',1,'2022-09-13 04:22:17','2022-09-13 04:22:17','cd6e30c5-d9e0-429a-909c-bffa2c42277a'),(142267,142267,1,'residential-tenancies-authority','work/residential-tenancies-authority',1,'2022-09-13 04:22:43','2022-09-13 04:22:43','2ad4055f-2a24-4492-bd0c-4964c6d1e98a'),(142269,142269,1,'residential-tenancies-authority','work/residential-tenancies-authority',1,'2022-09-13 04:23:05','2022-09-13 04:23:05','cd2265c1-c00c-4b5f-ace6-794aad9b4336'),(142271,142271,1,'residential-tenancies-authority','work/residential-tenancies-authority',1,'2022-09-13 04:27:46','2022-09-13 04:27:46','0b2558ac-7fad-4f22-8d4c-6ab4c3c3587d'),(142273,142273,1,'residential-tenancies-authority','work/residential-tenancies-authority',1,'2022-09-13 04:29:41','2022-09-13 04:29:41','c6f78f7e-251d-49e7-bfa2-af2c31eca74e'),(142275,142275,1,'residential-tenancies-authority','work/residential-tenancies-authority',1,'2022-09-13 04:40:08','2022-09-13 04:40:08','616d28b3-2cda-42f9-ad2d-617da7b9fa0d'),(142278,142278,1,'your-care-navigator','work/your-care-navigator',1,'2022-09-13 23:01:24','2022-09-13 23:01:24','37e59a99-e8d5-4032-b64d-1225441aad5a'),(142280,142280,1,'your-care-navigator','work/your-care-navigator',1,'2022-09-13 23:03:11','2022-09-13 23:03:11','fa3532c5-f9ff-48ad-b7fe-7421e7d1c555'),(142281,142281,1,NULL,NULL,1,'2022-09-14 06:35:53','2022-09-14 06:35:53','e676baa8-af52-49c1-8d31-ab2c91f7d641'),(142282,142282,1,'jul-2015','reports/jul-2015',1,'2022-09-14 23:00:45','2022-09-14 23:00:45','c042c230-11ad-4576-9bcc-5a9cf37b13ce'),(142283,142283,1,'aug-2015','reports/aug-2015',1,'2022-09-14 23:00:46','2022-09-14 23:00:46','bb822a39-628c-4444-a84b-51819700530f'),(142284,142284,1,'sep-2015','reports/sep-2015',1,'2022-09-14 23:00:47','2022-09-14 23:00:47','bfa91fca-4278-4968-a668-4d6cc1a5bad9'),(142285,142285,1,'oct-2015','reports/oct-2015',1,'2022-09-14 23:00:48','2022-09-14 23:00:48','504a0367-a530-43ca-ad80-5d2a2a45f55c'),(142286,142286,1,'nov-2015','reports/nov-2015',1,'2022-09-14 23:00:49','2022-09-14 23:00:49','c2e82ed7-7279-4743-ad01-443497d273e7'),(142287,142287,1,'dec-2015','reports/dec-2015',1,'2022-09-14 23:00:50','2022-09-14 23:00:50','f1fd8afa-83c6-4f3b-bb88-2fd73ba3af1d'),(142288,142288,1,'jan-2016','reports/jan-2016',1,'2022-09-14 23:00:51','2022-09-14 23:00:51','92cc8d1c-b271-464b-9856-333b90eadf74'),(142289,142289,1,'feb-2016','reports/feb-2016',1,'2022-09-14 23:00:52','2022-09-14 23:00:52','9f33b4f7-fefd-408f-a495-f3de9538701f'),(142290,142290,1,'mar-2016','reports/mar-2016',1,'2022-09-14 23:00:53','2022-09-14 23:00:53','56edd023-12a0-4303-8f9f-05d3647bb673'),(142291,142291,1,'apr-2016','reports/apr-2016',1,'2022-09-14 23:00:54','2022-09-14 23:00:54','700946ee-9f17-4441-aad6-95492df4704c'),(142292,142292,1,'may-2016','reports/may-2016',1,'2022-09-14 23:00:55','2022-09-14 23:00:55','0ffec54b-fb2b-4479-89d4-d1fcb2f350cd'),(142293,142293,1,'jun-2016','reports/jun-2016',1,'2022-09-14 23:00:56','2022-09-14 23:00:56','b4573135-428a-48c8-8756-37436b7048f2'),(142294,142294,1,'jul-2016','reports/jul-2016',1,'2022-09-14 23:00:57','2022-09-14 23:00:57','b7ad9f0c-39b1-435c-8721-ff5c3981f264'),(142295,142295,1,'aug-2016','reports/aug-2016',1,'2022-09-14 23:00:58','2022-09-14 23:00:58','9cc882c1-2b3a-4f7b-a454-33928b4e65b3'),(142296,142296,1,'sep-2016','reports/sep-2016',1,'2022-09-14 23:00:59','2022-09-14 23:00:59','96d78689-1e7c-464b-86ae-8c7f87add6ea'),(142297,142297,1,'oct-2016','reports/oct-2016',1,'2022-09-14 23:01:00','2022-09-14 23:01:00','c7e7c36a-bf25-432f-b782-66990714fb73'),(142298,142298,1,'nov-2016','reports/nov-2016',1,'2022-09-14 23:01:01','2022-09-14 23:01:01','bf24d628-dad6-44f5-9ecb-1eac1f14fd39'),(142299,142299,1,'dec-2016','reports/dec-2016',1,'2022-09-14 23:01:02','2022-09-14 23:01:02','0b1781ec-7d4c-43e9-a8eb-8bfdc32006ca'),(142300,142300,1,'jan-2017','reports/jan-2017',1,'2022-09-14 23:01:03','2022-09-14 23:01:03','9a168547-410a-488f-a939-4d7c6a14ac75'),(142301,142301,1,'feb-2017','reports/feb-2017',1,'2022-09-14 23:01:03','2022-09-14 23:01:03','5fc6f2b3-c5ba-4b08-9da9-709a93263246'),(142302,142302,1,'mar-2017','reports/mar-2017',1,'2022-09-14 23:01:04','2022-09-14 23:01:04','2d292005-189e-4ba3-9788-4d97e86b152c'),(142303,142303,1,'apr-2017','reports/apr-2017',1,'2022-09-14 23:01:06','2022-09-14 23:01:06','ac1ebda2-8297-48e0-9556-796be25b9453'),(142304,142304,1,'may-2017','reports/may-2017',1,'2022-09-14 23:01:06','2022-09-14 23:01:06','25613d8e-f587-4f7d-adf5-061ae06bc5cf'),(142305,142305,1,'jun-2017','reports/jun-2017',1,'2022-09-14 23:01:07','2022-09-14 23:01:07','31d4f3a5-dff0-4fec-8744-901ad4ecc294'),(142306,142306,1,'jul-2017','reports/jul-2017',1,'2022-09-14 23:01:08','2022-09-14 23:01:08','72e3ab52-d4c7-4aeb-9c2f-99cdbce2d44f'),(142307,142307,1,'aug-2017','reports/aug-2017',1,'2022-09-14 23:01:10','2022-09-14 23:01:10','010668e9-cb0c-4856-b3cc-3d354e0e76cb'),(142308,142308,1,'sep-2017','reports/sep-2017',1,'2022-09-14 23:01:11','2022-09-14 23:01:11','e71a8eef-0288-45eb-a406-9572aac85b40'),(142309,142309,1,'oct-2017','reports/oct-2017',1,'2022-09-14 23:01:12','2022-09-14 23:01:12','485ea6bf-a697-48ea-8d4a-7427927255b5'),(142310,142310,1,'nov-2017','reports/nov-2017',1,'2022-09-14 23:01:13','2022-09-14 23:01:13','677f7e48-5ac3-452f-b677-80e98091b70d'),(142311,142311,1,'dec-2017','reports/dec-2017',1,'2022-09-14 23:01:14','2022-09-14 23:01:14','42c63f13-ab5e-4ae7-890f-7e041b9dd21e'),(142312,142312,1,'jan-2018','reports/jan-2018',1,'2022-09-14 23:01:15','2022-09-14 23:01:15','b97fbd57-95a0-4621-90ac-9c598e9752b4'),(142313,142313,1,'feb-2018','reports/feb-2018',1,'2022-09-14 23:01:16','2022-09-14 23:01:16','3b181a87-43f8-434d-bf97-6c50923a15a6'),(142314,142314,1,'mar-2018','reports/mar-2018',1,'2022-09-14 23:01:17','2022-09-14 23:01:17','9c7b1330-da87-4f3f-be45-f61ca78aea6a'),(142315,142315,1,'apr-2018','reports/apr-2018',1,'2022-09-14 23:01:18','2022-09-14 23:01:18','145732d3-3a84-4101-ae2a-d99758cee566'),(142316,142316,1,'may-2018','reports/may-2018',1,'2022-09-14 23:01:18','2022-09-14 23:01:18','e56afd97-013f-4512-9137-cebb7b453804'),(142317,142317,1,'jun-2018','reports/jun-2018',1,'2022-09-14 23:01:19','2022-09-14 23:01:19','868d974d-d321-4ca1-b41c-0e88b2f4974c'),(142318,142318,1,'jul-2018','reports/jul-2018',1,'2022-09-14 23:01:20','2022-09-14 23:01:20','91b59582-6ba5-4932-abec-4bfa4bb6ecd8'),(142319,142319,1,'aug-2018','reports/aug-2018',1,'2022-09-14 23:01:21','2022-09-14 23:01:21','6e9910b6-4538-4429-a0df-36d8b1438c95'),(142320,142320,1,'sep-2018','reports/sep-2018',1,'2022-09-14 23:01:22','2022-09-14 23:01:22','992357b7-f3e1-478c-bb43-ca1624d3e7cd'),(142321,142321,1,'oct-2018','reports/oct-2018',1,'2022-09-14 23:01:23','2022-09-14 23:01:23','0c6619c0-25b6-4f0d-a593-4eb96fe0d57e'),(142322,142322,1,'nov-2018','reports/nov-2018',1,'2022-09-14 23:01:25','2022-09-14 23:01:25','a1434b4f-afb7-4f03-bd2c-c74919c3e114'),(142323,142323,1,'dec-2018','reports/dec-2018',1,'2022-09-14 23:01:25','2022-09-14 23:01:25','44945e67-f36d-4765-b6c3-f66308310b43'),(142324,142324,1,'jan-2019','reports/jan-2019',1,'2022-09-14 23:01:26','2022-09-14 23:01:26','562150f8-765e-4ccd-b40e-15b6ea61cdae'),(142325,142325,1,'feb-2019','reports/feb-2019',1,'2022-09-14 23:01:27','2022-09-14 23:01:27','9b7c28f0-511e-4f23-b3c2-0134c4723e41'),(142326,142326,1,'mar-2019','reports/mar-2019',1,'2022-09-14 23:01:29','2022-09-14 23:01:29','272aba0b-3af4-4c74-829b-6278ccd752b7'),(142327,142327,1,'apr-2019','reports/apr-2019',1,'2022-09-14 23:01:30','2022-09-14 23:01:30','4c4766b4-e3ab-4853-8ca7-2f681526e6cb'),(142328,142328,1,'may-2019','reports/may-2019',1,'2022-09-14 23:01:31','2022-09-14 23:01:31','6dc36503-7649-43e3-bf3d-8f4021bae6c0'),(142329,142329,1,'jun-2019','reports/jun-2019',1,'2022-09-14 23:01:32','2022-09-14 23:01:32','a2d135b0-f88e-4fa6-a027-49d506eccd09'),(142330,142330,1,'jul-2019','reports/jul-2019',1,'2022-09-14 23:01:33','2022-09-14 23:01:33','e9a78a72-779d-427f-8f5a-c393dd492ded'),(142331,142331,1,'aug-2019','reports/aug-2019',1,'2022-09-14 23:01:34','2022-09-14 23:01:34','25338705-5e50-43ac-9a45-7c9018d7b323'),(142332,142332,1,'sep-2019','reports/sep-2019',1,'2022-09-14 23:01:35','2022-09-14 23:01:35','e6f37af0-a9d0-4d54-a21f-bdd919450893'),(142333,142333,1,'oct-2019','reports/oct-2019',1,'2022-09-14 23:01:36','2022-09-14 23:01:36','ae47cf9b-d1c6-4161-b9f8-7c580c442171'),(142334,142334,1,'nov-2019','reports/nov-2019',1,'2022-09-14 23:01:37','2022-09-14 23:01:37','ff6f83a3-ee15-4b62-8ff9-965524ba152a'),(142335,142335,1,'dec-2019','reports/dec-2019',1,'2022-09-14 23:01:38','2022-09-14 23:01:38','34dd83ae-e392-424f-ab9e-80e69f8a2dbc'),(142336,142336,1,'jan-2020','reports/jan-2020',1,'2022-09-14 23:01:38','2022-09-14 23:01:38','7d933a87-287f-4862-9c9b-22bd5e2fcfe5'),(142337,142337,1,'feb-2020','reports/feb-2020',1,'2022-09-14 23:01:40','2022-09-14 23:01:40','71eb70e6-ffc7-429c-ae38-35635a6aaab9'),(142338,142338,1,'mar-2020','reports/mar-2020',1,'2022-09-14 23:01:41','2022-09-14 23:01:41','7ffaacbd-f74a-498b-8356-9755f648e328'),(142339,142339,1,'apr-2020','reports/apr-2020',1,'2022-09-14 23:01:42','2022-09-14 23:01:42','a53d5655-497c-4f63-9a4c-6c987f97d807'),(142340,142340,1,'may-2020','reports/may-2020',1,'2022-09-14 23:01:43','2022-09-14 23:01:43','11561d59-b733-45bb-8e04-015abdd0c163'),(142341,142341,1,'jun-2020','reports/jun-2020',1,'2022-09-14 23:01:45','2022-09-14 23:01:45','c18f990d-2143-463d-a4cf-6711264ff511'),(142342,142342,1,'jul-2020','reports/jul-2020',1,'2022-09-14 23:01:46','2022-09-14 23:01:46','ddbc8d20-d5ec-4b54-bd79-8f844fc1f033'),(142343,142343,1,'aug-2020','reports/aug-2020',1,'2022-09-14 23:01:47','2022-09-14 23:01:47','148b429b-a11d-45f2-a9b6-83636d404e66'),(142344,142344,1,'sep-2020','reports/sep-2020',1,'2022-09-14 23:01:48','2022-09-14 23:01:48','b3c768c0-79a9-493f-995b-1c89de79562f'),(142345,142345,1,'oct-2020','reports/oct-2020',1,'2022-09-14 23:01:49','2022-09-14 23:01:49','11bcaf37-0d9f-42e2-ab37-8546f952e799'),(142346,142346,1,'nov-2020','reports/nov-2020',1,'2022-09-14 23:01:49','2022-09-14 23:01:49','30507516-b9ed-470e-af8b-6a99230b3c21'),(142347,142347,1,'dec-2020','reports/dec-2020',1,'2022-09-14 23:01:50','2022-09-14 23:01:50','aef151c8-7101-4d15-aaa3-29de354732d7'),(142348,142348,1,'jan-2021','reports/jan-2021',1,'2022-09-14 23:01:51','2022-09-14 23:01:51','ee46c03a-7311-4822-bb5c-9a4db1b2259b'),(142349,142349,1,'feb-2021','reports/feb-2021',1,'2022-09-14 23:01:52','2022-09-14 23:01:52','128b6404-5c7b-4834-8bb3-542ede05183c'),(142350,142350,1,'mar-2021','reports/mar-2021',1,'2022-09-14 23:01:53','2022-09-14 23:01:53','3977d67f-a86c-43e4-8a3b-4731e8328f61'),(142351,142351,1,'apr-2021','reports/apr-2021',1,'2022-09-14 23:01:54','2022-09-14 23:01:54','27f55d30-bcf0-44ec-b2af-52ad26f5f3c9'),(142352,142352,1,'may-2021','reports/may-2021',1,'2022-09-14 23:01:55','2022-09-14 23:01:55','36236177-41e1-42e5-8942-8fa5247dee11'),(142353,142353,1,'jun-2021','reports/jun-2021',1,'2022-09-14 23:01:56','2022-09-14 23:01:56','6ed8b71f-afd5-46b7-9577-75c6437ad190'),(142354,142354,1,'jul-2021','reports/jul-2021',1,'2022-09-14 23:01:57','2022-09-14 23:01:57','a4c61f6e-fdde-4a7d-bdeb-02cc8007614c'),(142355,142355,1,'aug-2021','reports/aug-2021',1,'2022-09-14 23:01:58','2022-09-14 23:01:58','01cbc19f-1f43-43a6-88dc-e024b208c1d2'),(142356,142356,1,'sep-2021','reports/sep-2021',1,'2022-09-14 23:01:59','2022-09-14 23:01:59','7c0d057a-4dce-4dfb-8b16-2eb6c8fc0330'),(142357,142357,1,'oct-2021','reports/oct-2021',1,'2022-09-14 23:02:00','2022-09-14 23:02:00','a30553e8-882e-422b-947d-cc1b64f6e99c'),(142358,142358,1,'nov-2021','reports/nov-2021',1,'2022-09-14 23:02:01','2022-09-14 23:02:01','8b43bb13-c638-4112-a507-2f4e0a00fa80'),(142359,142359,1,'dec-2021','reports/dec-2021',1,'2022-09-14 23:02:02','2022-09-14 23:02:02','9a1b25c0-ddf7-49a7-a13a-eb6689681d56'),(142360,142360,1,'jan-2022','reports/jan-2022',1,'2022-09-14 23:02:02','2022-09-14 23:02:02','f4dd8045-4107-4b45-b38e-6350f8452d31'),(142361,142361,1,'feb-2022','reports/feb-2022',1,'2022-09-14 23:02:03','2022-09-14 23:02:03','293700cd-4cf0-4c63-a632-48b4f20d7536'),(142362,142362,1,'mar-2022','reports/mar-2022',1,'2022-09-14 23:02:04','2022-09-14 23:02:04','f736694d-cf02-4868-85e2-527e7807d005'),(142363,142363,1,'apr-2022','reports/apr-2022',1,'2022-09-14 23:02:05','2022-09-14 23:02:05','6e2c186b-390d-4c42-bc0e-aeed5fed1a3e'),(142364,142364,1,'may-2022','reports/may-2022',1,'2022-09-14 23:02:06','2022-09-14 23:02:06','c11a8de4-17b9-47c9-a408-5f987365820b'),(142365,142365,1,'jun-2022','reports/jun-2022',1,'2022-09-14 23:02:06','2022-09-14 23:02:06','10db3e4d-12d6-40db-8147-8cc1a9d35cf2'),(142366,142366,1,'jul-2022','reports/jul-2022',1,'2022-09-14 23:02:07','2022-09-14 23:02:07','b29ba62d-63be-47a7-a639-98b25374fb5c'),(142367,142367,1,'aug-2022','reports/aug-2022',1,'2022-09-14 23:02:08','2022-09-14 23:02:08','3241ac55-ddbd-411a-adfb-70de421e54c2'),(142368,142368,1,'sep-2022','reports/sep-2022',1,'2022-09-14 23:02:09','2022-09-14 23:02:09','7922412a-3689-4d96-87f1-5eac8e0d1102'),(142370,142370,1,'sep-2022','reports/sep-2022',1,'2022-09-14 23:16:07','2022-09-14 23:16:07','25be3ce8-83d4-46b6-ae31-b44db4ae0e2d'),(142372,142372,1,'sep-2022','reports/sep-2022',1,'2022-09-14 23:16:36','2022-09-14 23:16:36','168c79e1-63c2-46fb-b2a5-2875575edcfd'),(142375,142375,1,'behaviour-change-a-long-haul-2','articles/behaviour-change-a-long-haul-2',1,'2022-09-15 01:40:32','2022-09-15 01:40:32','def00a84-e1aa-4783-9512-9b3711bd2e68'),(142376,142376,1,'behaviour-change-a-long-haul-2','articles/behaviour-change-a-long-haul-2',1,'2022-09-15 01:40:33','2022-09-15 01:40:33','8744f2e0-09d9-4f56-942c-557e63b25fd6'),(142377,142377,1,'behaviour-change-a-long-haul-2','articles/behaviour-change-a-long-haul-2',1,'2022-09-15 01:40:38','2022-09-15 01:40:38','606cde31-df1b-484c-ace7-14c01c9ced8e'),(142381,142381,1,NULL,NULL,1,'2022-09-15 06:42:47','2022-09-15 06:42:47','098807a8-5931-424a-8dc8-eacd78e1c018'),(142382,142382,1,'ramsay-health-care','work/ramsay-health-care',1,'2022-09-15 06:42:56','2022-09-15 06:42:56','95856472-76d7-4a95-8a13-49cb85ed25c2'),(142384,142384,1,'ramsay-health-care','work/ramsay-health-care',1,'2022-09-15 06:44:00','2022-09-15 06:44:00','d485387e-2693-48cc-ba66-c5f5efb285b7'),(142386,142386,1,'ramsay-health-care','work/ramsay-health-care',1,'2022-09-15 06:50:18','2022-09-15 06:50:18','f464a7f6-e5c4-4f30-a804-2f460680f1d7'),(142387,142387,1,'behaviour-change-a-long-haul','articles/behaviour-change-a-long-haul',1,'2022-09-15 23:02:05','2022-09-15 23:02:05','5b858ae0-5cfd-49df-803f-cf18c584913a'),(142436,142436,1,NULL,NULL,1,'2022-09-20 00:51:11','2022-09-20 00:51:11','80f31b46-f8a5-4f1d-abeb-0194cc7927da'),(142440,142440,1,NULL,NULL,1,'2022-09-20 00:52:11','2022-09-20 00:52:11','8ceb3781-ac4b-4c00-b259-ef9d04994faa'),(142443,142443,1,NULL,NULL,1,'2022-09-20 00:53:39','2022-09-20 00:53:39','ad12fe59-aafd-48a4-8303-b2acbd2647a6'),(142449,142449,1,NULL,NULL,1,'2022-09-20 00:55:27','2022-09-20 00:55:27','80fb6ace-0d16-483d-8215-4ab7b4c98a47'),(142451,142451,1,NULL,NULL,1,'2022-09-20 00:55:54','2022-09-20 00:55:54','3e39dcf2-2cb4-409d-80f8-4f40b746d1fb'),(142509,142509,1,'behaviour-change-a-long-haul','articles/behaviour-change-a-long-haul',1,'2022-09-20 01:49:00','2022-09-20 01:49:00','e40bf405-64d4-4e2a-b9bf-bac73b33d2d8'),(142511,142511,1,'behaviour-change-a-long-haul','articles/behaviour-change-a-long-haul',1,'2022-09-20 01:49:14','2022-09-20 01:49:14','1a5c1e5c-d0a4-4a8f-8845-6b2cb1efa006'),(142513,142513,1,'behaviour-change-a-long-haul','articles/behaviour-change-a-long-haul',1,'2022-09-20 01:49:24','2022-09-20 01:49:24','761fa762-2c62-458d-b286-ab74d44c14e4'),(142515,142515,1,'behaviour-change-a-long-haul','articles/behaviour-change-a-long-haul',1,'2022-09-20 01:49:40','2022-09-20 01:49:40','56881427-0f5b-498e-b965-6db4bd08275b'),(142517,142517,1,'behaviour-change-a-long-haul','articles/behaviour-change-a-long-haul',1,'2022-09-20 01:51:14','2022-09-20 01:51:14','3e466062-cd21-49c6-81e3-0d0a0da3f54e'),(142519,142519,1,'behaviour-change-a-long-haul','articles/behaviour-change-a-long-haul',1,'2022-09-20 01:51:52','2022-09-20 01:51:52','d0d6e54a-b04f-478d-a296-1133f0fa5e01'),(142521,142521,1,'behaviour-change-a-long-haul','articles/behaviour-change-a-long-haul',1,'2022-09-20 01:52:15','2022-09-20 01:52:15','ec95120d-9f9b-463c-8afd-8d5bd9387583'),(142523,142523,1,'behaviour-change-a-long-haul','articles/behaviour-change-a-long-haul',1,'2022-09-20 01:52:38','2022-09-20 01:52:38','219ebf62-9761-49b2-af31-3cfa0c00926b'),(142525,142525,1,'behaviour-change-a-long-haul','articles/behaviour-change-a-long-haul',1,'2022-09-20 01:52:56','2022-09-20 01:52:56','d20aa02c-c990-4b9a-9fb0-fce1e021e58f'),(142527,142527,1,'behaviour-change-a-long-haul','articles/behaviour-change-a-long-haul',1,'2022-09-20 01:53:15','2022-09-20 01:53:15','0a521e52-385e-403d-8599-b37e32b2d069'),(142529,142529,1,'behaviour-change-a-long-haul','articles/behaviour-change-a-long-haul',1,'2022-09-20 01:55:16','2022-09-20 01:55:16','c1996a89-464b-4f8e-a28d-09c91561c267'),(142531,142531,1,'behaviour-change-a-long-haul','articles/behaviour-change-a-long-haul',1,'2022-09-20 01:55:43','2022-09-20 01:55:43','786ed716-79ca-4154-93d9-7d8c079d16e2'),(142533,142533,1,'behaviour-change-a-long-haul','articles/behaviour-change-a-long-haul',1,'2022-09-20 01:58:51','2022-09-20 01:58:51','312deece-095f-44d5-8c5d-59c1a7a2a749'),(142535,142535,1,'behaviour-change-a-long-haul','articles/behaviour-change-a-long-haul',1,'2022-09-20 01:59:51','2022-09-20 01:59:51','646ff84f-760c-4466-9e48-164d89434d2a'),(142537,142537,1,'behaviour-change-a-long-haul','articles/behaviour-change-a-long-haul',1,'2022-09-20 02:00:45','2022-09-20 02:00:45','06434c71-7722-4b27-ab91-306bfc11f04f'),(142540,142540,1,'behaviour-change-a-long-haul','articles/behaviour-change-a-long-haul',1,'2022-09-20 02:02:56','2022-09-20 02:02:56','c5cff972-40fc-4226-9f32-1fe758ee8000'),(142542,142542,1,'behaviour-change-a-long-haul','articles/behaviour-change-a-long-haul',1,'2022-09-20 02:03:48','2022-09-20 02:03:48','1dafd4a7-e768-46de-9dd4-cdaeec416546'),(142544,142544,1,'behaviour-change-a-long-haul','articles/behaviour-change-a-long-haul',1,'2022-09-20 02:06:46','2022-09-20 02:06:46','be9a7313-3d5e-4c2b-b49d-4bec4f690c55'),(142546,142546,1,'behaviour-change-a-long-haul','articles/behaviour-change-a-long-haul',1,'2022-09-20 02:06:58','2022-09-20 02:06:58','f56350e9-a66e-4303-8571-6e113578c279'),(142548,142548,1,'behaviour-change-a-long-haul','articles/behaviour-change-a-long-haul',1,'2022-09-20 02:07:21','2022-09-20 02:07:21','ab2ac102-7059-44eb-8973-368f136aad46'),(142550,142550,1,'behaviour-change-a-long-haul','articles/behaviour-change-a-long-haul',1,'2022-09-20 02:07:38','2022-09-20 02:07:38','d6788f94-92b0-412d-a0e2-9fb1db103805'),(142552,142552,1,'nwos-library','articles/nwos-library',1,'2022-09-20 02:59:40','2022-09-20 02:59:40','94ab7544-040f-48f7-90bd-16d232ca8678'),(142554,142554,1,'nwos-library','articles/nwos-library',1,'2022-09-20 03:01:15','2022-09-20 03:01:15','9b062a48-0286-48fc-89c3-c09f766c2d1b'),(142555,142555,1,'behaviour-change-a-long-haul','articles/behaviour-change-a-long-haul',1,'2022-09-20 03:09:00','2022-09-20 03:09:00','8beae834-518f-48bd-a4ac-6697b5c20092'),(142556,142556,1,'nwos-library','articles/nwos-library',1,'2022-09-20 03:10:06','2022-09-20 03:10:06','5d4cae79-84ec-4300-b003-0740128a38ca'),(142557,142557,1,'behaviour-change-a-long-haul','articles/behaviour-change-a-long-haul',1,'2022-09-20 03:10:24','2022-09-20 03:10:24','5807c292-8482-44d5-bd97-ab59a9bde0ce'),(142558,142558,1,'nwos-library','articles/nwos-library',1,'2022-09-20 03:12:51','2022-09-20 03:12:51','6a42130b-37ab-416d-a193-e5a270486545'),(142560,142560,1,'nwos-library','articles/nwos-library',1,'2022-09-20 03:13:29','2022-09-20 03:13:29','9911c435-a63e-46d5-923b-e08adc88ef4c'),(142564,142564,1,NULL,NULL,1,'2022-09-20 03:29:37','2022-09-20 03:29:37','cffeec6f-55de-43b3-9621-567cbb234aed'),(142566,142566,1,NULL,NULL,1,'2022-09-20 03:29:48','2022-09-20 03:29:48','c8d8f342-f872-4f7f-bfa4-3c1f537bb6fb'),(142567,142567,1,'nwos-library','articles/nwos-library',1,'2022-09-20 03:33:02','2022-09-20 03:33:02','99948932-bc29-40dc-886f-641fc4ccb4ea'),(142569,142569,1,'nwos-library','articles/nwos-library',1,'2022-09-20 03:33:36','2022-09-20 03:33:36','75ab57ea-34b0-4680-bca2-4e3d7531303e'),(142571,142571,1,NULL,NULL,1,'2022-09-20 04:38:35','2022-09-20 04:38:35','147dd1c7-3720-4adb-8774-104d5923e4cf'),(142572,142572,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-09-20 04:39:11','2022-09-20 04:39:11','6610d67a-e62d-4b06-b37f-12c5b7f22eef'),(142574,142574,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-09-20 04:39:22','2022-09-20 04:39:22','10b9d148-57f1-4bde-80c5-9f9908292fdf'),(142576,142576,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-09-20 04:39:58','2022-09-20 04:39:58','90215196-37f9-40a5-94d6-396c750874fb'),(142578,142578,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-09-20 04:40:51','2022-09-20 04:40:51','da1b5d6a-5496-4d36-8793-f0e9589a0058'),(142579,142579,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-09-20 04:48:05','2022-09-20 04:48:05','e040a1b1-3b41-4c15-b6f3-cb9f43a14eab'),(142581,142581,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-09-20 04:48:20','2022-09-20 04:48:20','276df80f-90e2-43a2-8431-1d3965220085'),(142582,142582,1,'nwos-library','articles/nwos-library',1,'2022-09-20 05:03:15','2022-09-20 05:03:15','62bcbf7c-0029-4725-9fd5-119fcf88735c'),(142584,142584,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-09-20 05:03:44','2022-09-20 05:03:44','fcd2fe8e-734f-4129-9ee5-abc704e98219'),(142585,142585,1,'residential-tenancies-authority','work/residential-tenancies-authority',1,'2022-09-20 07:28:51','2022-09-20 07:28:51','1b9734d3-75b1-4b3b-aee1-4adf61a383c5'),(142588,142588,1,'nwos-library','articles/nwos-library',1,'2022-09-20 07:41:05','2022-09-20 07:41:05','52d064ce-adf8-454f-8e42-d30838290a14'),(142590,142590,1,'nwos-library','articles/nwos-library',1,'2022-09-20 07:41:50','2022-09-20 07:41:50','ddc5f336-db69-406f-8b2f-8af5e9377252'),(142592,142592,1,'nwos-library','articles/nwos-library',1,'2022-09-20 07:42:30','2022-09-20 07:42:30','9e7e0065-47a7-4a26-bfb5-ec00e1f4e850'),(142594,142594,1,'nwos-library','articles/nwos-library',1,'2022-09-20 21:44:14','2022-09-20 21:44:14','8e4b4b38-5c1d-47e4-b755-a51c84f74395'),(142595,142595,1,NULL,NULL,1,'2022-09-21 00:48:50','2022-09-21 00:48:50','9e6d5c3e-4cd4-49f8-9367-161cee5ea5be'),(142596,142596,1,NULL,NULL,1,'2022-09-21 00:48:55','2022-09-21 00:48:55','d05d234f-6990-4200-9834-d9617c39f720'),(142598,142598,1,NULL,NULL,1,'2022-09-21 01:01:33','2022-09-21 01:01:33','826b639c-9446-4969-aff4-94c631beba5c'),(142600,142600,1,'nwos-library','articles/nwos-library',1,'2022-09-21 01:02:40','2022-09-21 01:02:40','c2ca360d-cccb-43f4-bc98-328dd6e248b7'),(142602,142602,1,'nwos-library','articles/nwos-library',1,'2022-09-21 01:03:56','2022-09-21 01:03:56','12c8ec6d-6896-4ce7-a41b-82aa1bd54405'),(142603,142603,1,'residential-tenancies-authority','work/residential-tenancies-authority',1,'2022-09-27 05:42:02','2022-09-27 05:42:02','9e77662c-e820-4548-bee9-ce2658764ff7'),(142605,142605,1,NULL,NULL,1,'2022-09-28 04:51:45','2022-09-28 04:51:45','fdc286b0-cdfb-4c21-af7b-eff9862d1684'),(142606,142606,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-09-28 04:54:01','2022-09-28 04:54:01','57ebe990-78ba-4f14-a74c-7da74bf7ca92'),(142608,142608,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-09-28 05:02:57','2022-09-28 05:02:57','120e6c53-db7b-4fd6-9f3d-cf514f470667'),(142610,142610,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-09-28 05:04:20','2022-09-28 05:04:20','302e38e6-a983-44d5-a17d-9f3f3ef080cd'),(142612,142612,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-09-28 05:05:38','2022-09-28 05:05:38','1c9e254e-4ac7-4218-aced-d29bf81d6cb6'),(142614,142614,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-09-28 05:06:14','2022-09-28 05:06:14','c455e551-1538-48c9-9614-e5ed8db5361c'),(142616,142616,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-09-28 05:06:27','2022-09-28 05:06:27','540de8ff-c8e4-455d-8cc3-f0f066e3eb11'),(142629,142629,1,'nwos-library','articles/nwos-library',1,'2022-09-28 06:41:58','2022-09-28 06:41:58','2d71e923-a0c4-41e9-aaf1-e12f7c4d540a'),(142631,142631,1,'residential-tenancies-authority','work/residential-tenancies-authority',1,'2022-09-28 06:45:26','2022-09-28 06:45:26','39703415-2545-4d34-a5a3-9b0333517591'),(142633,142633,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-09-28 06:52:52','2022-09-28 06:52:52','2170b6c6-3018-444e-b746-e0e622d03565'),(142637,142637,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-09-28 06:54:58','2022-09-28 06:54:58','4a65a0f9-60e2-4701-b98d-ae4c1a3e9877'),(142639,142639,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-09-28 06:55:46','2022-09-28 06:55:46','13e7e222-6e5a-4e5b-95fd-322bdb562c6d'),(142641,142641,1,'residential-tenancies-authority','work/residential-tenancies-authority',1,'2022-09-29 00:19:47','2022-09-29 00:19:47','557dbe2a-36f9-48ed-8496-9bdc53d432e8'),(142642,142642,1,NULL,NULL,1,'2022-09-29 01:53:47','2022-09-29 01:53:47','a79cc4e9-31ad-47db-999c-8d5ec59ef38c'),(142643,142643,1,NULL,NULL,1,'2022-09-29 01:53:47','2022-09-29 01:53:47','2d818083-d60c-462d-ac77-48128618fe0a'),(142644,142644,1,NULL,NULL,1,'2022-09-29 01:53:47','2022-09-29 01:53:47','32ec36e1-adff-4600-a7d9-3955b8ff7812'),(142645,142645,1,NULL,NULL,1,'2022-09-29 01:53:47','2022-09-29 01:53:47','8f16ccad-25d9-4252-9b27-f3e4a10083db'),(142648,142648,1,NULL,NULL,1,'2022-09-29 02:19:43','2022-09-29 02:19:43','9188b94e-7a6a-4207-8bf8-d9a589656268'),(142649,142649,1,'about-us','about',1,'2022-09-29 02:22:40','2022-09-29 02:22:40','e492149e-5726-4a2a-b15b-8228ce259feb'),(142651,142651,1,NULL,NULL,1,'2022-10-04 04:48:05','2022-10-04 04:48:05','d9127411-5764-4015-b119-a48b3898e162'),(142652,142652,1,NULL,NULL,1,'2022-10-04 04:48:13','2022-10-04 04:48:13','84c0f8b9-3769-445a-91cb-e87a4157cc50'),(142653,142653,1,NULL,NULL,1,'2022-10-04 04:48:17','2022-10-04 04:48:17','f87d6074-d568-4bf4-ad09-1dcbf18198a3'),(142654,142654,1,NULL,NULL,1,'2022-10-04 04:48:39','2022-10-04 04:48:39','17eb3df0-6491-42cb-9671-d0e6958c68bf'),(142655,142655,1,'queensland-hydro','work/queensland-hydro',1,'2022-10-04 04:48:56','2022-10-04 04:48:56','6dada8af-ae72-4642-9b34-22f4570391f7'),(142657,142657,1,'queensland-hydro','work/queensland-hydro',1,'2022-10-04 04:50:02','2022-10-04 04:50:02','9143c185-7542-4474-91d5-66ccd36bfc52'),(142659,142659,1,NULL,NULL,1,'2022-10-04 05:31:18','2022-10-04 05:31:18','9ace7156-1d5d-420e-a9e8-c11991c42a2b'),(142660,142660,1,'queensland-hydro','work/queensland-hydro',1,'2022-10-04 05:31:40','2022-10-04 05:31:40','b8732ea6-60ab-489c-beaf-699d7b929c80'),(142661,142661,1,'queensland-hydro','work/queensland-hydro',1,'2022-10-04 05:32:00','2022-10-04 05:32:00','5e225649-0112-4a20-9b3a-9180caa6c9c2'),(142665,142665,1,NULL,NULL,1,'2022-10-04 06:04:02','2022-10-04 06:04:02','b2b89b1f-5d7b-464d-8461-911ec89b1a2b'),(142666,142666,1,'queensland-hydro','work/queensland-hydro',1,'2022-10-04 06:04:22','2022-10-04 06:04:22','48cc31f0-3044-470c-a207-acd3e25e59a1'),(142668,142668,1,'queensland-hydro','work/queensland-hydro',1,'2022-10-04 06:47:09','2022-10-04 06:47:09','ba7e241e-40a1-4714-a461-765152104c1a'),(142669,142669,1,'queensland-hydro','work/queensland-hydro',1,'2022-10-04 07:19:36','2022-10-04 07:19:36','2a7c89b6-9731-4aff-a4a8-e7ac555e956d'),(142670,142670,1,'queensland-hydro','work/queensland-hydro',1,'2022-10-04 07:20:04','2022-10-04 07:20:04','52a98123-d2e8-451e-a2bc-a739fc99847c'),(142672,142672,1,'break-away-from-the-same-same-with-custom-illustration','articles/break-away-from-the-same-same-with-custom-illustration',1,'2022-10-04 21:55:54','2022-10-04 21:55:54','c73d8c65-c377-4e96-ad4c-db0c0975762d'),(142674,142674,1,NULL,NULL,1,'2022-10-04 21:57:16','2022-10-04 21:57:16','d6063a81-508a-456d-a1bf-9b5c4d6e0517'),(142675,142675,1,'break-away-from-the-same-same-with-custom-illustration','articles/break-away-from-the-same-same-with-custom-illustration',1,'2022-10-04 21:57:49','2022-10-04 21:57:49','aa512953-160b-4b4b-ad2a-938cbd6eca5b'),(142676,142676,1,'residential-tenancies-authority-2','work/residential-tenancies-authority-2',1,'2022-10-05 03:53:27','2022-10-05 03:53:27','9c5e5cd4-2c31-447c-82ad-bd0e08e309d5'),(142677,142677,1,'residential-tenancies-authority-2','work/residential-tenancies-authority-2',1,'2022-10-05 03:53:28','2022-10-05 03:53:28','6f78eb8f-f30d-4852-830a-c0a6091c0759'),(142679,142679,1,'shark-smart','work/shark-smart',1,'2022-10-05 03:56:33','2022-10-05 03:56:33','49b98510-6d44-472c-92f6-8c51b61ba78a'),(142681,142681,1,'shark-smart','work/shark-smart',1,'2022-10-05 04:28:42','2022-10-05 04:28:42','d6deea79-cab5-46c6-a223-4d0c57659668'),(142684,142684,1,'break-away-from-the-same-same-with-custom-illustration','articles/break-away-from-the-same-same-with-custom-illustration',1,'2022-10-09 21:35:20','2022-10-09 21:35:20','722fd162-d889-4d6d-9b07-6af24bd26ff7'),(142686,142686,1,'break-away-from-the-same-same-with-custom-illustration','articles/break-away-from-the-same-same-with-custom-illustration',1,'2022-10-09 21:35:41','2022-10-09 21:35:41','96ef886f-67e8-4d3f-9862-1e637cd52457'),(142688,142688,1,'break-away-from-the-same-same-with-custom-illustration','articles/break-away-from-the-same-same-with-custom-illustration',1,'2022-10-09 21:35:58','2022-10-09 21:35:58','e70702f4-64ae-4376-8747-714e8159a157'),(142690,142690,1,'break-away-from-the-same-same-with-custom-illustration','articles/break-away-from-the-same-same-with-custom-illustration',1,'2022-10-09 21:36:39','2022-10-09 21:36:39','e5828477-7c2e-4b32-90a7-e054e97ef4aa'),(142692,142692,1,'break-away-from-the-same-same-with-custom-illustration','articles/break-away-from-the-same-same-with-custom-illustration',1,'2022-10-09 21:37:04','2022-10-09 21:37:04','d10ece89-5945-41c2-8fb5-197d3a92f498'),(142694,142694,1,'break-away-from-the-same-same-with-custom-illustration','articles/break-away-from-the-same-same-with-custom-illustration',1,'2022-10-09 21:37:34','2022-10-09 21:37:34','58ed0dd4-9010-4df3-b8ba-ae761d56d71e'),(142696,142696,1,'break-away-from-the-same-same-with-custom-illustration','articles/break-away-from-the-same-same-with-custom-illustration',1,'2022-10-09 21:39:09','2022-10-09 21:39:09','352e9d72-2dae-44b9-81ba-8f961d9d44db'),(142697,142697,1,'break-away-from-the-same-same-with-custom-illustration','articles/break-away-from-the-same-same-with-custom-illustration',1,'2022-10-09 21:39:43','2022-10-09 21:39:43','e030a7c9-8777-43e0-8c3f-873a4f8fad46'),(142699,142699,1,'queensland-hydro','work/queensland-hydro',1,'2022-10-10 01:16:50','2022-10-10 01:16:50','e24a4628-8e8a-4f90-9a9f-2b0b2a5ca8e2'),(142700,142700,1,'queensland-hydro','work/queensland-hydro',1,'2022-10-10 05:42:34','2022-10-10 05:42:34','f7cf72df-df13-415f-9bc8-2106df2f2704'),(142702,142702,1,NULL,NULL,1,'2022-10-10 05:50:28','2022-10-10 05:50:28','fd6a5a3a-d07c-4a4f-936f-f5d7e0a8b71f'),(142703,142703,1,'queensland-hydro','work/queensland-hydro',1,'2022-10-10 05:51:11','2022-10-10 05:51:11','4167449f-48ae-4480-ad3f-e5f62770b8ca'),(142705,142705,1,'queensland-hydro','work/queensland-hydro',1,'2022-10-12 06:29:18','2022-10-12 06:29:18','60905362-9a1b-4681-9128-4b54a166dad5'),(142706,142706,1,'queensland-hydro','work/queensland-hydro',1,'2022-10-12 06:38:26','2022-10-12 06:38:26','bb0365a1-bb99-4c49-82f7-4ff5bbc79af1'),(142707,142707,1,'queensland-hydro','work/queensland-hydro',1,'2022-10-12 06:38:57','2022-10-12 06:38:57','0301df87-eee4-460c-a640-27a65a0c1369'),(142708,142708,1,'queensland-hydro','work/queensland-hydro',1,'2022-10-12 06:39:01','2022-10-12 06:39:01','447b9a8c-67a0-4188-a0e6-8783d394ab0b'),(142710,142710,1,'queensland-hydro','work/queensland-hydro',1,'2022-10-12 06:39:19','2022-10-12 06:39:19','5f78f23f-53a9-4edb-994c-dedd813826b7'),(142711,142711,1,'careers','careers',1,'2022-10-13 23:32:45','2022-10-13 23:32:45','a592aed0-dd36-4290-91ab-88c713b31ad2'),(142712,142712,1,'careers','careers',1,'2022-10-13 23:33:08','2022-10-13 23:33:08','a189e766-83e4-48c6-8ab1-344ca21f176a'),(142714,142714,1,'careers','careers',1,'2022-10-13 23:34:58','2022-10-13 23:34:58','a133dd2b-661b-44fb-85a7-3f8880740003'),(142716,142716,1,NULL,NULL,1,'2022-10-18 00:33:26','2022-10-18 00:33:26','f398eca9-8c3f-4716-b0f3-618edee9772e'),(142717,142717,1,'what-agency-retainer-gets-you','articles/what-agency-retainer-gets-you',1,'2022-10-18 00:44:19','2022-10-18 00:50:59','16513479-5d0c-42f8-9051-31b38f003fba'),(142718,142718,1,'the-ways-brands-make-or-break-business-outcomes-2','articles/the-ways-brands-make-or-break-business-outcomes-2',1,'2022-10-18 00:44:20','2022-10-18 00:44:20','d6ecc26d-47e8-4c4a-9513-a5dc45ba58df'),(142722,142722,1,'the-ways-brands-make-or-break-business-outcomes-2-2','articles/the-ways-brands-make-or-break-business-outcomes-2-2',1,'2022-10-18 00:50:13','2022-10-18 00:50:13','9c804f78-4fd9-449f-80c2-f80f279e726b'),(142723,142723,1,'the-ways-brands-make-or-break-business-outcomes-2-2','articles/the-ways-brands-make-or-break-business-outcomes-2-2',1,'2022-10-18 00:50:14','2022-10-18 00:50:14','bfd81d4c-d51f-4eeb-b8a8-f61fb9d993e3'),(142724,142724,1,'what-agency-retainer-gets-you','articles/what-agency-retainer-gets-you',1,'2022-10-18 00:50:59','2022-10-18 00:50:59','dcff15b5-6d79-49c3-ada4-89f8df0947d6'),(142726,142726,1,'what-agency-retainer-gets-you','articles/what-agency-retainer-gets-you',1,'2022-10-18 00:51:49','2022-10-18 00:51:49','692638ee-8620-4eb0-8686-2b0435b11ab6'),(142728,142728,1,'what-agency-retainer-gets-you','articles/what-agency-retainer-gets-you',1,'2022-10-18 00:54:02','2022-10-18 00:54:02','c6703b1d-dcfd-4193-b924-e78c88653179'),(142730,142730,1,'what-agency-retainer-gets-you','articles/what-agency-retainer-gets-you',1,'2022-10-18 00:57:16','2022-10-18 00:57:16','bb1535e8-ea4a-4556-8a9b-22430c5a036c'),(142732,142732,1,'what-agency-retainer-gets-you','articles/what-agency-retainer-gets-you',1,'2022-10-18 00:57:59','2022-10-18 00:57:59','fc716330-b7d5-4aa4-bda7-1711830addd1'),(142734,142734,1,'what-agency-retainer-gets-you','articles/what-agency-retainer-gets-you',1,'2022-10-18 00:59:35','2022-10-18 00:59:35','5ccc2c0e-b7ce-4e25-ab55-fd1cbed34e3c'),(142736,142736,1,'what-agency-retainer-gets-you','articles/what-agency-retainer-gets-you',1,'2022-10-18 01:02:30','2022-10-18 01:02:30','c10b0726-ad6d-4855-b6f6-ddac41f4eb7f'),(142738,142738,1,'what-agency-retainer-gets-you','articles/what-agency-retainer-gets-you',1,'2022-10-18 01:06:33','2022-10-18 01:06:33','4d0c4503-8942-4808-8da4-21ae0313246d'),(142740,142740,1,'what-agency-retainer-gets-you','articles/what-agency-retainer-gets-you',1,'2022-10-18 01:09:54','2022-10-18 01:09:54','06a75898-2eef-43ee-b452-6a7c827697c7'),(142742,142742,1,'what-agency-retainer-gets-you','articles/what-agency-retainer-gets-you',1,'2022-10-18 01:10:48','2022-10-18 01:10:48','b38aea5c-0c3d-491d-b63a-83ad598694ff'),(142744,142744,1,'what-agency-retainer-gets-you','articles/what-agency-retainer-gets-you',1,'2022-10-18 01:12:29','2022-10-18 01:12:29','e512b871-c5b3-4225-b8e8-a4c52c67c62c'),(142746,142746,1,'what-agency-retainer-gets-you','articles/what-agency-retainer-gets-you',1,'2022-10-18 01:14:22','2022-10-18 01:14:22','04e05913-b143-4157-9e36-bbc2f3b959f0'),(142748,142748,1,'what-agency-retainer-gets-you','articles/what-agency-retainer-gets-you',1,'2022-10-18 01:15:47','2022-10-18 01:15:47','4451572a-b7c0-4515-959c-7fed65689243'),(142750,142750,1,'what-agency-retainer-gets-you','articles/what-agency-retainer-gets-you',1,'2022-10-18 01:17:28','2022-10-18 01:17:28','0935c27f-26ca-4da6-9329-46a4fb645913'),(142751,142751,1,'what-agency-retainer-gets-you','articles/what-agency-retainer-gets-you',1,'2022-10-18 01:24:52','2022-10-18 01:24:52','1e12163a-6030-4557-97e0-c2cb9712602b'),(142753,142753,1,'what-agency-retainer-gets-you','articles/what-agency-retainer-gets-you',1,'2022-10-18 01:26:50','2022-10-18 01:26:50','fdd28d35-c8c2-4aed-b6b6-ac1aeec7ba4d'),(142754,142754,1,'what-agency-retainer-gets-you','articles/what-agency-retainer-gets-you',1,'2022-10-18 01:27:32','2022-10-18 01:27:32','310082ae-0eee-4723-a646-7e08740d0f3d'),(142755,142755,1,'dfv-campaign','work/dfv-campaign',1,'2022-10-18 04:05:07','2022-10-18 04:05:07','ebc3ad1c-3ce6-40ab-9dcc-a002b88c23d6'),(142756,142756,1,'medical-mums','work/medical-mums',1,'2022-10-18 04:05:09','2022-10-18 04:05:09','bc333876-1f6d-4f50-8e52-789be3e8943c'),(142758,142758,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-10-18 22:57:54','2022-10-18 22:57:54','655e7e22-f4d5-4cc4-a411-47b23f54c60a'),(142760,142760,1,'nwos-library','articles/nwos-library',1,'2022-10-18 23:19:48','2022-10-18 23:19:48','77a4388d-7040-484f-9680-1c694e11e99f'),(142762,142762,1,'nwos-library','articles/nwos-library',1,'2022-10-18 23:24:16','2022-10-18 23:24:16','90faf126-6aa9-43d2-84bc-e06293ac5443'),(142764,142764,1,NULL,NULL,1,'2022-10-18 23:37:26','2022-10-18 23:37:26','b3ad8e53-04db-4c39-a1bb-a62ade0d7a50'),(142765,142765,1,'nwos-library','articles/nwos-library',1,'2022-10-18 23:38:11','2022-10-18 23:38:11','ea2511d6-2826-4a07-a841-e1004562a9d7'),(142767,142767,1,'nwos-library','articles/nwos-library',1,'2022-10-18 23:39:41','2022-10-18 23:39:41','b7ce39b2-d72f-43e6-98dc-8f3844cfabcc'),(142769,142769,1,'nwos-library','articles/nwos-library',1,'2022-10-18 23:40:20','2022-10-18 23:40:20','083db6ca-6594-49bd-86ed-43afc2965d9d'),(142771,142771,1,'nwos-library','articles/nwos-library',1,'2022-10-19 03:57:14','2022-10-19 03:57:14','74517226-00eb-4346-b067-546241b72de2'),(142773,142773,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-10-19 03:57:28','2022-10-19 03:57:28','3f356142-0243-45f3-93a0-944b377ddac7'),(142775,142775,1,NULL,NULL,1,'2022-10-20 00:43:56','2022-10-20 00:43:56','8e642656-5683-4901-b1ac-2beb7100a164'),(142776,142776,1,NULL,NULL,1,'2022-10-20 00:44:46','2022-10-20 00:44:46','88fc382d-b054-4b09-b54c-432ed17a401c'),(142777,142777,1,NULL,NULL,1,'2022-10-20 00:45:41','2022-10-20 00:45:41','1321577a-d7f3-474f-b8f9-7522017c7475'),(142778,142778,1,'what-agency-retainer-gets-you','articles/what-agency-retainer-gets-you',1,'2022-10-20 00:46:10','2022-10-20 00:46:10','e0d1cbf0-3fe4-4cae-819a-4bfb5a6af2f2'),(142779,142779,1,'what-agency-retainer-gets-you','articles/what-agency-retainer-gets-you',1,'2022-10-20 00:46:16','2022-10-20 00:46:16','8e68be8b-16ad-4c01-b186-b34eaa996715'),(142780,142780,1,'residential-tenancies-authority-2','work/residential-tenancies-authority-2',1,'2022-10-20 04:36:59','2022-10-20 04:36:59','c39f4026-6d09-4bab-a8f9-a01dcb9d8144'),(142783,142783,1,'email-sigs','email-sigs',1,'2022-10-21 02:38:41','2022-10-21 02:38:41','cd94c5e2-e107-493a-9bcd-84d1d9f069d0'),(142784,142784,1,'careers','careers',1,'2022-10-21 03:32:12','2022-10-21 03:32:12','03092e75-3cd2-44d3-9e22-2598be444861'),(142786,142786,1,'careers','careers',1,'2022-10-21 03:47:31','2022-10-21 03:47:31','95deb1d4-d878-4ec3-a5d0-3b824156a73d'),(142787,142787,1,'careers','careers',1,'2022-10-21 03:56:40','2022-10-21 03:56:40','a5f6b2e7-d524-49fa-8d96-12afa7993ac3'),(142788,142788,1,'careers','careers',1,'2022-10-21 03:56:53','2022-10-21 03:56:53','772fb4d6-75b6-4dfd-8b1d-e4cdf689d5aa'),(142789,142789,1,'careers','careers',1,'2022-10-21 03:57:13','2022-10-21 03:57:13','2bf75766-c986-4cf2-8396-9ef5a3f70ad6'),(142790,142790,1,'careers','careers',1,'2022-10-21 04:05:41','2022-10-21 04:05:41','3172131a-6cde-412e-b8f5-0338f24bff6c'),(142792,142792,1,'careers','careers',1,'2022-10-21 04:10:06','2022-10-21 04:10:06','b1f806b6-e5e4-431e-af50-f9b493ea35ac'),(142794,142794,1,'careers','careers',1,'2022-10-21 04:10:41','2022-10-21 04:10:41','9773a641-79f7-4de8-8d94-6cf3229fb1f3'),(142796,142796,1,'careers','careers',1,'2022-10-21 04:18:21','2022-10-21 04:18:21','caa75d75-cc5d-4c74-a879-2c3e95c03286'),(142799,142799,1,'break-away-from-the-same-same-with-custom-illustration','articles/break-away-from-the-same-same-with-custom-illustration',1,'2022-10-21 05:20:56','2022-10-21 05:20:56','17339e28-cae7-4e55-9c79-e01571a51d03'),(142801,142801,1,'queensland-aboriginal-and-islander-health-council','work/queensland-aboriginal-and-islander-health-council',1,'2022-10-21 06:06:31','2022-10-21 06:11:24','2cdf60cf-e064-4485-8de9-d669853052d1'),(142802,142802,1,NULL,NULL,1,'2022-10-21 06:40:08','2022-10-21 06:40:08','0b93fa1c-f8bd-4539-8d53-2765901fad67'),(142803,142803,1,'queensland-aboriginal-and-islander-health-council','work/queensland-aboriginal-and-islander-health-council',1,'2022-10-21 07:19:36','2022-10-21 07:19:36','be57353f-c23c-43a6-8298-3b91207e0785'),(142804,142804,1,'break-away-from-the-same-same-with-custom-illustration','articles/break-away-from-the-same-same-with-custom-illustration',1,'2022-10-23 22:57:26','2022-10-23 22:57:26','4afa1538-b3ae-4f69-9084-1246e5a1a111'),(142805,142805,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-10-23 23:00:20','2022-10-23 23:00:20','a5878f4e-9c41-4163-9a6a-2802d61e125e'),(142807,142807,1,NULL,NULL,1,'2022-10-23 23:47:29','2022-10-23 23:47:29','99941a90-94af-40df-bd0a-28f3407a3882'),(142808,142808,1,'queensland-hydro','work/queensland-hydro',1,'2022-10-23 23:50:15','2022-10-23 23:50:15','eb9d1e01-0ccf-452f-9b54-0444425c09fa'),(142810,142810,1,NULL,NULL,1,'2022-10-23 23:54:54','2022-10-23 23:54:54','cf395051-a871-4c0c-a9c0-6944155823d2'),(142811,142811,1,'queensland-hydro','work/queensland-hydro',1,'2022-10-23 23:55:08','2022-10-23 23:55:08','5781b3bb-8865-4af1-8c56-fd48272e7c57'),(142813,142813,1,NULL,NULL,1,'2022-10-23 23:57:51','2022-10-23 23:57:51','04822d04-1280-4910-973d-7c2588cbc211'),(142814,142814,1,'queensland-hydro','work/queensland-hydro',1,'2022-10-23 23:58:00','2022-10-23 23:58:00','42df1150-b6ae-449a-8d8a-ada075450b12'),(142816,142816,1,NULL,NULL,1,'2022-10-24 00:00:00','2022-10-24 00:00:00','918f431d-b832-4fec-9444-bf30ff9bfa02'),(142817,142817,1,'queensland-hydro','work/queensland-hydro',1,'2022-10-24 00:00:09','2022-10-24 00:00:09','4dffb508-fb74-4b47-be14-8d06266e8a03'),(142819,142819,1,NULL,NULL,1,'2022-10-24 00:25:46','2022-10-24 00:25:46','17a0ae2f-c5b0-4f75-9543-022b880ed19d'),(142820,142820,1,'break-away-from-the-same-same-with-custom-illustration','articles/break-away-from-the-same-same-with-custom-illustration',1,'2022-10-24 00:25:59','2022-10-24 00:25:59','8c109172-bf3c-40a0-bf9e-2999efd60e0d'),(142821,142821,1,NULL,NULL,1,'2022-10-24 00:54:28','2022-10-24 00:54:28','5d879e44-4c5e-44c9-bbf6-224c38148dc6'),(142823,142823,1,NULL,NULL,1,'2022-10-24 01:06:43','2022-10-24 01:06:43','139c2ffe-0a70-4620-8d0b-d6941a4ad682'),(142824,142824,1,NULL,NULL,1,'2022-10-24 01:07:00','2022-10-24 01:07:00','ef73ac63-9e00-4e16-a50a-756171a7e0a9'),(142826,142826,1,'nwos-library','articles/nwos-library',1,'2022-10-24 01:32:43','2022-10-24 01:32:43','f92edae6-0848-4f4a-98e8-bed27ae332c9'),(142828,142828,1,'nwos-library','articles/nwos-library',1,'2022-10-24 01:33:05','2022-10-24 01:33:05','53323011-2604-42b1-a395-0f29731d6aa9'),(142830,142830,1,NULL,NULL,1,'2022-10-24 06:45:43','2022-10-24 06:45:43','f535d435-7a28-4d99-8982-3629634d29de'),(142831,142831,1,NULL,NULL,1,'2022-10-24 06:46:06','2022-10-24 06:46:06','a6bf6cb8-573d-4aa0-8aac-237c3bb891e3'),(142832,142832,1,'break-away-from-the-same-same-with-custom-illustration','articles/break-away-from-the-same-same-with-custom-illustration',1,'2022-10-24 06:46:27','2022-10-24 06:46:27','896affd7-d5ae-40bf-a4a0-4a7f9fd6e3f9'),(142833,142833,1,'department-of-justice-and-attorney-general','work/department-of-justice-and-attorney-general',1,'2022-10-25 00:12:22','2022-10-25 00:13:15','d472df28-2715-4334-8962-7c8a7c4df17c'),(142834,142834,1,NULL,NULL,1,'2022-10-25 03:00:09','2022-10-25 03:00:09','f3d02de0-ee2f-4456-9086-35323884880a'),(142835,142835,1,NULL,NULL,1,'2022-10-25 03:00:30','2022-10-25 03:00:30','34152c60-312c-4cc8-a4e9-9162c5ecfb1d'),(142836,142836,1,NULL,NULL,1,'2022-10-25 03:00:33','2022-10-25 03:00:33','6b90ce73-8066-4b60-bbf1-dad7d89e6924'),(142837,142837,1,NULL,NULL,1,'2022-10-25 03:01:24','2022-10-25 03:01:24','253eb8ad-fc87-459d-bc57-f32e2fd78fde'),(142838,142838,1,NULL,NULL,1,'2022-10-25 03:29:18','2022-10-25 03:29:18','7a677f44-cab4-4ccc-8ed8-c85585a405cd'),(142839,142839,1,'department-of-justice-and-attorney-general','work/department-of-justice-and-attorney-general',1,'2022-10-25 03:29:29','2022-10-25 03:29:29','91c55053-9f21-49da-a205-fd07e375532c'),(142840,142840,1,'department-of-justice-and-attorney-general','work/department-of-justice-and-attorney-general',1,'2022-10-25 03:33:47','2022-10-25 03:33:47','6d6b5626-7ceb-4bf1-a85c-af6e61e42bf0'),(142841,142841,1,'nwos-library','articles/nwos-library',1,'2022-10-25 03:43:56','2022-10-25 03:43:56','16a65744-66a1-45d3-ba4c-d2c63730b591'),(142843,142843,1,'about-us','about',1,'2022-10-25 22:44:17','2022-10-25 22:44:17','adf4beed-ceac-4f5d-aadd-37e375d0241b'),(142844,142844,1,'break-away-from-the-same-same-with-custom-illustration','articles/break-away-from-the-same-same-with-custom-illustration',1,'2022-10-25 22:47:48','2022-10-25 22:47:48','486d93e3-a65c-44ec-bea5-a4cb54b0491b'),(142846,142846,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-10-25 22:49:49','2022-10-25 22:49:49','204fcda6-6815-4b58-9691-c060b5e71796'),(142847,142847,1,'the-world-of-modern-marketing','articles/the-world-of-modern-marketing',1,'2022-10-26 02:13:04','2022-10-26 02:13:52','db4f5b52-82a1-44bd-a323-f69d7b2181b7'),(142848,142848,1,'the-world-of-modern-marketing','articles/the-world-of-modern-marketing',1,'2022-10-26 02:15:52','2022-10-26 02:15:52','7f5d0e0f-a921-4cd2-ae35-fb24f82aebe9'),(142850,142850,1,'the-world-of-modern-marketing','articles/the-world-of-modern-marketing',1,'2022-10-26 02:16:20','2022-10-26 02:16:20','ddb9801a-11b4-4a6f-bf27-8b129f920007'),(142852,142852,1,'the-world-of-modern-marketing','articles/the-world-of-modern-marketing',1,'2022-10-26 02:16:33','2022-10-26 02:16:33','65e3110c-d061-4f34-b9bb-321c95d57fe9'),(142854,142854,1,'the-world-of-modern-marketing','articles/the-world-of-modern-marketing',1,'2022-10-26 02:17:36','2022-10-26 02:17:36','9f648526-0b6f-4029-b9c1-ea96c81c093a'),(142856,142856,1,'the-world-of-modern-marketing','articles/the-world-of-modern-marketing',1,'2022-10-26 02:18:39','2022-10-26 02:18:39','51177ec5-c0d0-4886-a4ec-9cdc52b4ca79'),(142859,142859,1,'email-sigs','email-sigs',1,'2022-10-26 07:04:46','2022-10-26 07:04:46','93f381a4-7c7c-4d4d-b726-27a13b428933'),(142861,142861,1,'email-sigs','email-sigs',1,'2022-10-26 07:05:34','2022-10-26 07:05:34','fbf6a1eb-9c02-4b03-98b1-a7a003f14394'),(142863,142863,1,'email-sigs','email-sigs',1,'2022-10-26 07:06:46','2022-10-26 07:06:46','54077d58-de47-4e8c-bd9c-f5490a1f0cda'),(142865,142865,1,'email-sigs','email-sigs',1,'2022-10-26 07:07:43','2022-10-26 07:07:43','675f0eca-2320-4151-bebe-74fa1c7f96c7'),(142867,142867,1,'email-sigs','email-sigs',1,'2022-10-26 07:08:25','2022-10-26 07:08:25','225d0319-3fe6-453e-88bf-6f998f93f09b'),(142868,142868,1,NULL,NULL,1,'2022-10-26 23:41:25','2022-10-26 23:41:25','ae3962ee-1ae5-44b9-8517-be2704ee1082'),(142869,142869,1,NULL,NULL,1,'2022-10-26 23:43:37','2022-10-26 23:43:37','cc79b358-4e19-4146-ac0f-fbecfdce2eba'),(142871,142871,1,'email-sigs','email-sigs',1,'2022-10-26 23:44:32','2022-10-26 23:44:32','348299c5-3b53-4ca1-8902-3747123f2bac'),(142873,142873,1,'queensland-hydro','work/queensland-hydro',1,'2022-10-27 04:16:32','2022-10-27 04:16:32','08341fb4-a359-43f3-90dc-f4ce37a74aa6'),(142874,142874,1,NULL,NULL,1,'2022-10-28 06:47:54','2022-10-28 06:47:54','cf61f55c-57cd-4755-9561-ae7261b07ef2'),(142875,142875,1,'vitalway','work/vitalway',1,'2022-10-31 00:51:19','2023-03-30 06:26:19','56144f5e-86c7-451d-939e-8c23968e9d7f'),(142876,142876,1,NULL,NULL,1,'2022-11-03 05:31:49','2022-11-03 05:31:49','b208cbd6-592a-4b81-bd0d-88627422dc19'),(142877,142877,1,NULL,NULL,1,'2022-11-03 05:32:02','2022-11-03 05:32:02','91fd0b78-6326-4a1b-afce-51517979d26b'),(142878,142878,1,'the-world-of-modern-marketing','articles/the-world-of-modern-marketing',1,'2022-11-03 05:32:10','2022-11-03 05:32:10','50cc548b-17a8-44a2-bd7e-b25ea1d02005'),(142880,142880,1,'the-world-of-modern-marketing','articles/the-world-of-modern-marketing',1,'2022-11-03 05:32:42','2022-11-03 05:32:42','d094edd1-f9e4-4180-bc66-1e7356b7f9dd'),(142882,142882,1,'the-world-of-modern-marketing','articles/the-world-of-modern-marketing',1,'2022-11-03 05:33:05','2022-11-03 05:33:05','bb65a230-dc31-45f7-9f24-d97f752f06f5'),(142883,142883,1,'the-world-of-modern-marketing','articles/the-world-of-modern-marketing',1,'2022-11-03 05:33:11','2022-11-03 05:33:11','7bec5e3c-4659-4fb6-be86-c524b7756b1e'),(142886,142886,1,'the-world-of-modern-marketing','articles/the-world-of-modern-marketing',1,'2022-11-03 05:49:19','2022-11-03 05:49:19','cd27d9d5-3750-4901-a298-556faef69c5e'),(142887,142887,1,NULL,NULL,1,'2022-11-03 05:51:31','2022-11-03 05:51:31','02205b7b-c0d0-40a1-9666-48e21fefd485'),(142889,142889,1,'the-world-of-modern-marketing','articles/the-world-of-modern-marketing',1,'2022-11-03 05:52:24','2022-11-03 05:52:24','7dda8b3f-82f9-4a71-9ca4-4ae7af57f163'),(142891,142891,1,'the-world-of-modern-marketing','articles/the-world-of-modern-marketing',1,'2022-11-03 05:52:48','2022-11-03 05:52:48','f5b3fa6b-0ac8-4cde-91e2-c9672f7881ea'),(142892,142892,1,'the-world-of-modern-marketing','articles/the-world-of-modern-marketing',1,'2022-11-04 03:52:23','2022-11-04 03:52:23','fa79e23c-7fec-466b-80e1-2f90ae61b228'),(142894,142894,1,'the-world-of-modern-marketing','articles/the-world-of-modern-marketing',1,'2022-11-04 03:53:18','2022-11-04 03:53:18','0e112434-5d92-40c8-a74e-d94a7ad6d251'),(142896,142896,1,'queensland-aboriginal-and-islander-health-council','work/queensland-aboriginal-and-islander-health-council',1,'2022-11-04 04:01:06','2022-11-04 04:01:06','2b6457d7-4fb9-4ad3-90b7-e683827edf01'),(142898,142898,1,'the-world-of-modern-marketing','articles/the-world-of-modern-marketing',1,'2022-11-04 04:05:05','2022-11-04 04:05:05','44584150-cf3b-4028-a2b2-ca185e787c0b'),(142899,142899,1,'the-world-of-modern-marketing','articles/the-world-of-modern-marketing',1,'2022-11-04 04:08:35','2022-11-04 04:08:35','1cb42c08-aff6-414d-ba05-460d0f4af774'),(142900,142900,1,'the-world-of-modern-marketing','articles/the-world-of-modern-marketing',1,'2022-11-04 04:08:42','2022-11-04 04:08:42','d7d8271e-9a15-4cb1-8f88-0350b910fd8c'),(142901,142901,1,'funding','work/funding',1,'2022-11-07 04:09:01','2022-11-07 04:10:07','2e463413-a2d3-4f4b-a568-6e2311d2ac48'),(142902,142902,1,'funding','work/funding',1,'2022-11-07 04:54:31','2022-11-07 04:54:31','88219b00-691e-481e-b9cd-19c7fa2dd256'),(142904,142904,1,'funding','work/funding',1,'2022-11-07 04:58:19','2022-11-07 04:58:19','c8cb2258-d8a6-4a95-a35d-221b3f970995'),(142906,142906,1,'funding','work/funding',1,'2022-11-07 04:58:50','2022-11-07 04:58:50','cf9c7f72-4746-44c6-91a9-d03453dc38dd'),(142908,142908,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-11-07 05:01:35','2022-11-07 05:01:35','66fcb1e6-028e-4178-b2dd-4e622ea3336e'),(142910,142910,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-11-07 05:01:52','2022-11-07 05:01:52','cc69dc56-61f5-486a-bd9f-431e4a19d864'),(142911,142911,1,NULL,NULL,1,'2022-11-07 05:02:56','2022-11-07 05:02:56','9628906d-0282-4185-bf77-1debc1c16753'),(142913,142913,1,'funding','work/funding',1,'2022-11-07 05:06:23','2022-11-07 05:06:23','a839b1f7-e3ac-4163-89a0-7ca8dbf1e1d2'),(142914,142914,1,'funding','work/funding',1,'2022-11-07 05:18:14','2022-11-07 05:18:14','278cf7d8-018d-462e-a5ca-a34f60d71c63'),(142916,142916,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-11-07 05:22:36','2022-11-07 05:22:36','ab4873a5-66fb-4bee-813e-160d3d17d35e'),(142917,142917,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-11-07 05:23:32','2022-11-07 05:23:32','b4b44a77-a72d-4eae-9969-a147f30fee87'),(142919,142919,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-11-07 05:23:50','2022-11-07 05:23:50','b7c864c5-e9a0-46e9-a662-1c2b32da9d0d'),(142921,142921,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-11-07 05:24:05','2022-11-07 05:24:05','b46dc487-a891-43db-a12c-b95dc219879c'),(142923,142923,1,'the-world-of-modern-marketing','articles/the-world-of-modern-marketing',1,'2022-11-08 02:58:40','2022-11-08 02:58:40','f612f3bd-efd4-4970-ac6e-6d5402c55ca0'),(142924,142924,1,NULL,NULL,1,'2022-11-09 06:43:54','2022-11-09 06:43:54','97924c05-0afd-4be5-a492-e413535792ec'),(142926,142926,1,'email-sigs','email-sigs',1,'2022-11-09 06:45:17','2022-11-09 06:45:17','9ac0c792-f710-43bf-a19a-038104a8d80e'),(142929,142929,1,'email-sigs','email-sigs',1,'2022-11-09 06:47:05','2022-11-09 06:47:05','9a143090-da88-425e-913e-7415270dec2c'),(142931,142931,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-11-10 00:21:24','2022-11-10 00:21:24','f3a9a6e9-c200-4e0b-a874-3d0f3ad0654e'),(142933,142933,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-11-10 00:21:46','2022-11-10 00:21:46','f03a4211-846d-4b2e-b953-041559218461'),(142935,142935,1,NULL,NULL,1,'2022-11-11 00:38:16','2022-11-11 00:38:16','89c35aad-52fa-4644-a76e-f3ce07ed695b'),(142936,142936,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-11-11 00:38:25','2022-11-11 00:38:25','750f3853-485f-4609-8c65-4a94571cb325'),(142939,142939,1,NULL,NULL,1,'2022-11-11 00:41:16','2022-11-11 00:41:16','63a9dbc2-3d69-4606-a8a7-5ad70277a7dc'),(142940,142940,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-11-11 00:41:23','2022-11-11 00:41:23','b08fe522-7ebb-4aa9-b155-42a5c9f72407'),(142942,142942,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-11-11 00:43:21','2022-11-11 00:43:21','72901c9e-d491-4ff0-9c42-9faa8997021a'),(142944,142944,1,'about-us','about',1,'2022-11-11 01:19:58','2022-11-11 01:19:58','15e85c24-a37c-48a2-ac93-1edf8fc8c94e'),(142946,142946,1,'about-us','about',1,'2022-11-11 01:21:36','2022-11-11 01:21:36','8d580f24-ebe9-4d9b-8de3-03f31eba868a'),(142947,142947,1,NULL,NULL,1,'2022-11-14 04:13:39','2022-11-14 04:13:39','104698f6-879f-45ca-a0c3-7303797caa31'),(142948,142948,1,NULL,NULL,1,'2022-11-14 04:13:39','2022-11-14 04:13:39','af375e98-5fc6-4a4c-93c1-a127b3c123b8'),(142949,142949,1,NULL,NULL,1,'2022-11-14 04:13:39','2022-11-14 04:13:39','a9a5ceb3-33a0-41fa-80f7-9732aff40c9b'),(142950,142950,1,NULL,NULL,1,'2022-11-14 04:13:39','2022-11-14 04:13:39','65ff50a5-0b0c-4c4c-b029-8d5597724746'),(142951,142951,1,NULL,NULL,1,'2022-11-14 04:13:39','2022-11-14 04:13:39','edd1ccd6-7192-4d83-9a26-e73e9acaafa2'),(142954,142954,1,'nwos-library','articles/nwos-library',1,'2022-11-15 05:38:30','2022-11-15 05:38:30','d0ff10bb-863e-425e-b33f-2abed7e81dba'),(142957,142957,1,'funding','work/funding',1,'2022-11-16 03:44:31','2022-11-16 03:44:31','3f4c8854-3c3c-4be5-8bc6-17d0495d3049'),(142958,142958,1,'the-world-of-modern-marketing','articles/the-world-of-modern-marketing',1,'2022-11-16 03:48:54','2022-11-16 03:48:54','1cbfb516-647e-4755-87bb-1400802aa870'),(142960,142960,1,'funding','work/funding',1,'2022-11-16 22:13:39','2022-11-16 22:13:39','c700c95b-5331-4796-99eb-b94fabf65ff2'),(142962,142962,1,'funding','work/funding',1,'2022-11-16 22:15:23','2022-11-16 22:15:23','e27e1f0c-7426-4ebd-95ee-4bd05a88d13a'),(142964,142964,1,'queensland-hydro','work/queensland-hydro',1,'2022-11-16 22:16:13','2022-11-16 22:16:13','47fe1b1f-6e23-47b2-bd32-62d6ec2cfdc6'),(142966,142966,1,'residential-tenancies-authority-2','work/residential-tenancies-authority-2',1,'2022-11-16 22:16:43','2022-11-16 22:16:43','f22f361e-9db4-4d8c-8858-95177f8795ea'),(142967,142967,1,'urban-utilities','work/urban-utilities',1,'2022-11-16 22:16:59','2022-11-16 22:16:59','a988c1fb-d4da-4e3d-87c1-ec618e2c04ac'),(142968,142968,1,'ramsay-health-care','work/ramsay-health-care',1,'2022-11-16 22:17:08','2022-11-16 22:17:08','356aa3cc-08fb-4e6d-8c4c-5ba1d67b6d33'),(142970,142970,1,'shark-smart','work/shark-smart',1,'2022-11-16 22:17:35','2022-11-16 22:17:35','204295a5-a40b-4904-9ea7-1d0e4e3a98c8'),(142972,142972,1,'department-of-justice-and-attorney-general','work/department-of-justice-and-attorney-general',1,'2022-11-16 22:18:05','2022-11-16 22:18:05','b454d599-fed6-446c-9486-2a9385c29243'),(142973,142973,1,'funding','work/funding',1,'2022-11-16 22:18:54','2022-11-16 22:18:54','c7b02ba6-308b-4827-a078-2f88c39c09af'),(142974,142974,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-11-16 22:27:09','2022-11-16 22:27:09','c20652f1-fb96-4b00-90b7-0197c3f32213'),(142976,142976,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-11-16 22:27:43','2022-11-16 22:27:43','309c1f92-451e-4030-a5b4-572bd82685db'),(142977,142977,1,'residential-tenancies-authority-2','work/residential-tenancies-authority-2',1,'2022-11-16 23:52:10','2022-11-16 23:52:10','708dc50f-8ff4-4e65-af32-723dab691d3d'),(142978,142978,1,NULL,NULL,1,'2022-11-17 00:06:38','2022-11-17 00:06:38','e1df3338-7d11-4662-98dd-19e7f8b14962'),(142979,142979,1,'department-of-education','work/department-of-education',1,'2022-11-17 00:07:32','2022-11-17 00:07:32','5d2236e9-26b5-4081-9739-23bfc40a14f7'),(142982,142982,1,'department-of-education','work/department-of-education',1,'2022-11-17 00:10:40','2022-11-17 00:10:40','91af5008-745e-4ca3-9909-fab44e9993c6'),(142984,142984,1,NULL,NULL,1,'2022-11-17 00:13:52','2022-11-17 00:13:52','5373c6cb-7446-4b32-b0ee-389c8d903c5e'),(142985,142985,1,NULL,NULL,1,'2022-11-17 00:15:33','2022-11-17 00:15:33','d7350e17-4625-4c79-bd5e-264433566c61'),(142986,142986,1,'nwos-library','articles/nwos-library',1,'2022-11-17 00:15:43','2022-11-17 00:15:43','9a16c9ca-000c-4526-93b8-64943454feef'),(142987,142987,1,'nwos-library','articles/nwos-library',1,'2022-11-17 00:15:49','2022-11-17 00:15:49','d61035a5-1759-473e-8cd7-608f0d260bc8'),(142989,142989,1,'nwos-library','articles/nwos-library',1,'2022-11-17 00:21:53','2022-11-17 00:21:53','fab55a6d-470a-4e59-9cba-184df7addab5'),(142990,142990,1,'department-of-education','work/department-of-education',1,'2022-11-17 04:05:50','2022-11-17 04:05:50','34320e5c-a468-44f8-9527-ccb290f17127'),(142992,142992,1,'department-of-education','work/department-of-education',1,'2022-11-17 05:54:20','2022-11-17 05:54:20','f41eaf43-0181-4c8a-89ba-5823973fd1f4'),(142994,142994,1,NULL,NULL,1,'2022-11-18 05:51:41','2022-11-18 05:51:41','17ac14ec-85a8-47df-aca7-19565500fc91'),(142995,142995,1,NULL,NULL,1,'2022-11-18 05:52:02','2022-11-18 05:52:02','fabe2ab9-2dca-40c3-9f1d-2ab063e05c58'),(142996,142996,1,NULL,NULL,1,'2022-11-18 05:52:14','2022-11-18 05:52:14','fb3c9ea2-911e-4bfc-8a21-1bd54e86893f'),(143000,143000,1,NULL,NULL,1,'2022-11-18 06:01:53','2022-11-18 06:01:53','0acd3bd5-dc6a-49c3-8cfe-5415edcc4ddd'),(143001,143001,1,'funding','work/funding',1,'2022-11-18 06:02:24','2022-11-18 06:02:24','4e191148-5a66-4d69-9df4-82228b8372c8'),(143003,143003,1,NULL,NULL,1,'2022-11-18 06:03:13','2022-11-18 06:03:13','0b98cf35-a3df-43a1-a503-c8a41af92973'),(143004,143004,1,'funding','work/funding',1,'2022-11-18 06:03:52','2022-11-18 06:03:52','f79e090e-c2f3-4516-9512-43ccda560798'),(143005,143005,1,'department-of-education','work/department-of-education',1,'2022-11-18 06:43:09','2022-11-18 06:43:09','1dda7add-e287-4fd1-bd9c-5821a38a80b4'),(143007,143007,1,'funding','work/funding',1,'2022-11-22 21:32:43','2022-11-22 21:32:43','d909c03c-acf1-43a8-ba6e-b05ea3f4a4bf'),(143009,143009,1,'funding','work/funding',1,'2022-11-22 21:32:49','2022-11-22 21:32:49','e7a52c4a-3bfb-4b47-bbce-fe7ff350f7a3'),(143011,143011,1,'department-of-education','work/department-of-education',1,'2022-11-22 21:37:02','2022-11-22 21:37:02','6668cdb7-966a-4680-bc63-8c5b41840a15'),(143013,143013,1,'department-of-education','work/department-of-education',1,'2022-11-22 21:38:15','2022-11-22 21:38:15','edbed7a2-3249-4a5d-8364-bae2f28d2178'),(143015,143015,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2022-11-22 21:40:46','2022-11-22 21:40:46','9d68f54b-e6e0-4ad2-86ef-f6e0ca9991d9'),(143017,143017,1,'heart-hq','work/heart-hq',1,'2022-11-25 04:38:45','2022-11-25 04:38:45','dd31e4c8-69ca-430d-a5e4-a514664dc766'),(143018,143018,1,'ramsay-health-care','work/ramsay-health-care',1,'2022-11-25 04:39:02','2022-11-25 04:39:02','a9e8f819-66e1-4584-90b0-778af3ad6e8c'),(143020,143020,1,'the-world-of-modern-marketing','articles/the-world-of-modern-marketing',1,'2022-11-25 05:02:43','2022-11-25 05:02:43','b4bf0249-70c2-46d8-ab9b-3155c1e84e5c'),(143021,143021,1,'christmas-2022','lp/christmas-2022',1,'2022-11-25 05:10:48','2022-12-01 07:05:22','0616c6ee-6c07-430b-9eca-f95e3a485035'),(143022,143022,1,'christmas-2021','lp/christmas-2021',1,'2022-11-25 05:13:44','2022-11-25 05:13:44','524a2182-5326-4531-908d-5219ad2199ce'),(143023,143023,1,NULL,NULL,1,'2022-11-25 05:29:49','2022-11-25 05:29:49','b528d491-22a3-4fa6-a238-963ce49edb94'),(143026,143026,1,'department-of-education','work/department-of-education',1,'2022-11-25 05:54:23','2022-11-25 05:54:23','4419050d-d8fd-405f-8164-6a1100a0e4b0'),(143028,143028,1,'simplifying-the-complex-fifteen-years-of-marketing-schools','articles/simplifying-the-complex-fifteen-years-of-marketing-schools',1,'2022-11-28 23:23:03','2022-11-28 23:23:03','9d41621c-d199-4e85-aacb-5f7b0ee74079'),(143029,143029,1,NULL,NULL,1,'2022-11-29 03:31:52','2022-11-29 03:31:52','cd4f904e-6767-4ed7-977b-29d0abc8139a'),(143031,143031,1,'about-us','about',1,'2022-12-01 04:26:31','2022-12-01 04:26:31','b44321ad-2267-4cfa-b61c-d6b745f60c27'),(143032,143032,1,NULL,NULL,1,'2022-12-01 06:18:48','2022-12-01 06:18:48','f7519559-0e4a-4299-9896-0b11b7fb0a87'),(143033,143033,1,NULL,NULL,1,'2022-12-01 06:18:52','2022-12-01 06:18:52','8d137fb5-d487-448e-911e-500d25a56b26'),(143034,143034,1,NULL,NULL,1,'2022-12-01 06:18:57','2022-12-01 06:18:57','8923227c-fa20-4656-ae0e-21a3f6904da8'),(143035,143035,1,NULL,NULL,1,'2022-12-01 06:19:01','2022-12-01 06:19:01','a64eeabc-5d53-4901-8932-334a1bbbb4f0'),(143036,143036,1,NULL,NULL,1,'2022-12-01 06:19:05','2022-12-01 06:19:05','710fd9f2-b595-44db-8766-8c70ac1efe84'),(143037,143037,1,NULL,NULL,1,'2022-12-01 06:19:11','2022-12-01 06:19:11','43b03d89-7a7e-49f6-9f61-0cbdee4283df'),(143038,143038,1,NULL,NULL,1,'2022-12-01 06:19:18','2022-12-01 06:19:18','9b48977b-f760-40f0-8da9-72bc9056c9e3'),(143039,143039,1,NULL,NULL,1,'2022-12-01 06:19:23','2022-12-01 06:19:23','1272dc5f-ef96-49bb-bb08-18d2996ac350'),(143040,143040,1,NULL,NULL,1,'2022-12-01 06:19:28','2022-12-01 06:19:28','6d2df0bf-6f98-4baa-9333-d0113538de43'),(143041,143041,1,NULL,NULL,1,'2022-12-01 06:57:38','2022-12-01 06:57:38','d02065ca-4995-4cbe-a872-10adcd8b781e'),(143042,143042,1,'sun-sand-surf-sustenance','lp/sun-sand-surf-sustenance',1,'2022-12-01 06:59:16','2022-12-01 06:59:16','acf3c1e0-f510-4874-9436-c0d1b13e1484'),(143044,143044,1,'sun-sand-surf-sustenance','lp/sun-sand-surf-sustenance',1,'2022-12-01 06:59:56','2022-12-01 06:59:56','24a1955f-a3e6-49d6-b2f1-479d330342fd'),(143046,143046,1,'sun-sand-surf-sustenance','lp/sun-sand-surf-sustenance',1,'2022-12-01 07:04:19','2022-12-01 07:04:19','21dfea4c-197e-45f2-b14d-b597af8f2afc'),(143048,143048,1,'sun-sand-surf-sustenance','lp/sun-sand-surf-sustenance',1,'2022-12-01 07:05:06','2022-12-01 07:05:06','ae44ffeb-2528-4bb0-a225-25a23f38b609'),(143050,143050,1,'christmas-2022','lp/christmas-2022',1,'2022-12-01 07:05:22','2022-12-01 07:05:22','08dfb96f-bc69-481e-9e03-084fcc4fbbec'),(143051,143051,1,NULL,NULL,1,'2022-12-01 07:12:41','2022-12-01 07:12:41','e8a4ed45-6c2b-4256-a8f1-7ebcd99fc221'),(143053,143053,1,'email-sigs','email-sigs',1,'2022-12-01 07:14:27','2022-12-01 07:14:27','228a350c-4284-4600-b14a-d7d816c92c30'),(143055,143055,1,'email-sigs','email-sigs',1,'2022-12-01 07:16:43','2022-12-01 07:16:43','d2cceead-5212-4a9c-9944-4c1292f17c30'),(143057,143057,1,'ramsay-health-care','work/ramsay-health-care',1,'2022-12-20 00:34:43','2022-12-20 00:34:43','8ea005df-119c-4bee-af9d-2f711bee2908'),(143058,143058,1,'__temp_amqptialffayksuhfaqkxylucroptousekbx','lp/__temp_amqptialffayksuhfaqkxylucroptousekbx',1,'2023-01-09 02:21:56','2023-01-09 02:21:56','108d04ce-c3bb-4df3-b104-11be03ddd769'),(143059,143059,1,'__temp_napxbisshhfmsurdpefgqbpnfgwkcqkkuxsq','lp/__temp_napxbisshhfmsurdpefgqbpnfgwkcqkkuxsq',1,'2023-01-09 02:22:44','2023-01-09 02:22:44','aa9f5476-db16-4bd6-af07-3a5f5a253612'),(143060,143060,1,'tell-us-about-your-2022-and-2023','lp/tell-us-about-your-2022-and-2023',1,'2023-01-09 02:24:52','2023-01-09 02:25:39','d2dfae2d-7506-4d9d-b75a-2fd476b26947'),(143061,143061,1,'tell-us-about-your-2022-and-2023','lp/tell-us-about-your-2022-and-2023',1,'2023-01-09 02:25:41','2023-01-09 02:25:41','febe514a-cd86-4b1b-adb4-155dae8c7f51'),(143063,143063,1,'tell-us-about-your-2022-and-2023','lp/tell-us-about-your-2022-and-2023',1,'2023-01-09 02:26:02','2023-01-09 02:26:02','675f7c4b-2ded-4bc3-bca7-d64faa450b2c'),(143065,143065,1,'tell-us-about-your-2022-and-2023','lp/tell-us-about-your-2022-and-2023',1,'2023-01-09 02:27:17','2023-01-09 02:27:17','299249b2-93fc-4593-ac37-a5a771405b7c'),(143066,143066,1,'tell-us-about-your-2022-and-2023','lp/tell-us-about-your-2022-and-2023',1,'2023-01-09 02:28:01','2023-01-09 02:28:01','6abce652-4705-401a-b53b-dff5e8e71695'),(143067,143067,1,'tell-us-about-your-2022-and-2023','lp/tell-us-about-your-2022-and-2023',1,'2023-01-09 02:40:26','2023-01-09 02:40:26','d2750640-9a7e-49f5-b5ff-2e25e113853d'),(143068,143068,1,'update-details','update-details',1,'2023-01-09 06:57:16','2023-01-09 06:57:16','3746d0e3-8eac-4f63-bc15-d629a6b77b1a'),(143069,143069,1,'tell-us-about-your-2022-and-2023','update-details-copy',1,'2023-01-10 00:12:41','2023-01-10 00:57:18','cde20823-4343-4c19-9dc0-3206e1ba29f7'),(143070,143070,1,'update-details-copy','update-details-copy',1,'2023-01-10 00:12:41','2023-01-10 00:12:41','94b6440b-f4a2-494a-835c-cf497fe9c7f6'),(143071,143071,1,'update-details-copy','update-details-copy',1,'2023-01-10 00:12:41','2023-01-10 00:12:41','c22b2b63-3a8f-4a24-8f9b-052d5e5affe8'),(143072,143072,1,'update-details-copy','update-details-copy',1,'2023-01-10 00:13:07','2023-01-10 00:13:07','43d6a6e7-bfd9-4ace-8b07-634704cbf0e7'),(143074,143074,1,'update-details-copy','update-details-copy',1,'2023-01-10 00:14:18','2023-01-10 00:14:18','e7ef081f-54df-4058-b9fb-994457ba296d'),(143076,143076,1,'tell-us-about-your-2022-and-2023','update-details-copy',1,'2023-01-10 00:57:18','2023-01-10 00:57:18','ea0c06fb-60ce-47e9-a33d-7984c904840f'),(143077,143077,1,'tell-us-about-your-2022-and-2023','update-details-copy',1,'2023-01-10 00:58:08','2023-01-10 00:58:08','b0fded25-cbc2-4e10-ac27-ba44576dfb5b'),(143078,143078,1,'__temp_txhziuodueewzyxzfracocfickclxdhlueqx','lp/__temp_txhziuodueewzyxzfracocfickclxdhlueqx',1,'2023-02-27 01:58:43','2023-02-27 01:58:43','2fc92af2-1cf2-4b31-aefb-adaf273d36a4'),(143079,143079,1,'__temp_lsrtplbajriuybbnpchxzyrfnjkhgifneonu','lp/__temp_lsrtplbajriuybbnpchxzyrfnjkhgifneonu',1,'2023-02-27 01:58:53','2023-02-27 01:58:53','15e0a071-7729-411a-97dd-52b293bbc315'),(143080,143080,1,'tell-your-story','lp/tell-your-story',1,'2023-02-27 01:59:10','2023-02-27 01:59:29','9ce6ef64-140c-44c6-b2e0-8c22c8286554'),(143081,143081,1,'tell-your-story','lp/tell-your-story',1,'2023-02-27 02:02:01','2023-02-27 02:02:01','8b044236-df8b-4a7c-8dbc-7388ab3d4974'),(143083,143083,1,'tell-your-story','lp/tell-your-story',1,'2023-02-27 02:16:38','2023-02-27 02:16:38','aac55fe2-4fdf-4241-96d2-ddc0a1653666'),(143085,143085,1,'tell-your-story','lp/tell-your-story',1,'2023-02-27 02:29:07','2023-02-27 02:29:07','0ee94546-9b56-4244-93ef-bb013c963500'),(143087,143087,1,'tell-your-story','lp/tell-your-story',1,'2023-02-28 07:09:22','2023-02-28 07:09:22','cfc274da-69d5-4ea0-9e65-017ce82ef881'),(143089,143089,1,'tell-your-story','lp/tell-your-story',1,'2023-03-01 01:09:36','2023-03-01 01:09:36','ca9b50d4-b864-4159-b58e-8f6746e44759'),(143091,143091,1,'tell-your-story','lp/tell-your-story',1,'2023-03-01 01:10:04','2023-03-01 01:10:04','c3d1e32e-b36f-4907-8b62-c604324a73f7'),(143093,143093,1,'tell-your-story','lp/tell-your-story',1,'2023-03-01 02:12:25','2023-03-01 02:12:25','e2df46f8-534d-4410-ba08-d3ad4c7ae4b8'),(143094,143094,1,'tell-us-about-your-2022-and-2023','lp/tell-us-about-your-2022-and-2023',1,'2023-03-01 02:21:19','2023-03-01 02:21:19','12c4def9-372e-4d5d-9c99-fbb73d9523ae'),(143096,143096,1,'tell-your-story','lp/tell-your-story',1,'2023-03-01 02:25:58','2023-03-01 02:25:58','e2fcb17f-332d-4f82-8505-37cf51971323'),(143098,143098,1,'tell-your-story','lp/tell-your-story',1,'2023-03-01 02:26:34','2023-03-01 02:26:34','34d70a47-8271-499f-8735-d6d67b25af6c'),(143099,143099,1,'tell-your-story','lp/tell-your-story',1,'2023-03-01 03:27:04','2023-03-01 03:27:04','b10b76e5-7dae-4560-855e-70211d5f87f7'),(143100,143100,1,NULL,NULL,1,'2023-03-06 01:40:25','2023-03-06 01:40:25','638e30d2-f72b-4e32-b3ba-68cbdaf3a4ae'),(143101,143101,1,NULL,NULL,1,'2023-03-06 01:45:54','2023-03-06 01:45:54','9c6eb614-5c8d-49dd-a06e-9b2b7c0d6c04'),(143102,143102,1,NULL,NULL,1,'2023-03-09 00:16:52','2023-03-09 00:16:52','35f1264b-1cdf-49fd-bcb0-deffabb24ed3'),(143103,143103,1,'careers','careers',1,'2023-03-09 03:19:26','2023-03-09 03:19:26','7d316add-a51d-4db0-9391-496eef9ff2bd'),(143104,143104,1,'christmas-2022','lp/christmas-2022',1,'2023-03-09 03:22:02','2023-03-09 03:22:02','06f84607-e658-427a-9833-8201d9771f94'),(143105,143105,1,'department-of-education','work/department-of-education',1,'2023-03-09 03:22:09','2023-03-09 03:22:09','fd77cae8-4db3-44af-b162-8539e01b0e7d'),(143106,143106,1,'funding','work/funding',1,'2023-03-09 03:22:20','2023-03-09 03:22:20','ee349da9-d4c9-4ab9-a4d6-e498f6633e5a'),(143107,143107,1,'queensland-hydro','work/queensland-hydro',1,'2023-03-09 03:22:33','2023-03-09 03:22:33','c4a6fa80-0651-4a7d-a08f-bbcb7639211c'),(143108,143108,1,'nwos-library','articles/nwos-library',1,'2023-03-09 03:22:48','2023-03-09 03:22:48','6335f2a7-97fc-460a-a5b1-26bfc0caa592'),(143109,143109,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2023-03-09 03:30:21','2023-03-09 03:30:21','81091fd0-fde2-4f24-8ece-cfef0c7533a0'),(143110,143110,1,'christmas-2021','lp/christmas-2021',1,'2023-03-09 03:31:15','2023-03-09 03:31:15','74effeac-90a0-410d-8c1d-6ffe02de7874'),(143111,143111,1,'residential-tenancies-authority-2','work/residential-tenancies-authority-2',1,'2023-03-09 03:31:31','2023-03-09 03:31:31','920a6e8f-d634-42d4-8ac5-da72f5742756'),(143112,143112,1,'urban-utilities','work/urban-utilities',1,'2023-03-09 03:31:38','2023-03-09 03:31:38','e168934e-dd7c-4cc2-89dd-d5d3f8642e43'),(143113,143113,1,'ramsay-health-care','work/ramsay-health-care',1,'2023-03-09 03:31:42','2023-03-09 03:31:42','5001db24-9123-41d2-b49b-ea33a4e65c9a'),(143114,143114,1,'glengaracare','work/glengaracare',1,'2023-03-09 03:31:44','2023-03-09 03:31:44','3feba4dc-0957-4c0e-be47-6bc4303a448f'),(143115,143115,1,'your-care-navigator','work/your-care-navigator',1,'2023-03-09 03:31:46','2023-03-09 03:31:46','cc14b868-375a-42df-b87b-aa96afadf8d7'),(143116,143116,1,'burnie-brae','work/burnie-brae',1,'2023-03-09 03:31:50','2023-03-09 03:31:50','80b2a43b-947b-42df-841d-16d0e84c4277'),(143117,143117,1,'chevron','work/chevron',1,'2023-03-09 03:31:54','2023-03-09 03:31:54','12e36dfd-6751-44ad-88b5-702c056dc39c'),(143119,143119,1,NULL,NULL,1,'2023-03-09 09:15:21','2023-03-09 09:15:21','ebf823ef-714d-4a11-899a-0ca8bc2935af'),(143120,143120,1,NULL,NULL,1,'2023-03-09 11:16:11','2023-03-09 11:16:11','1cdd5c12-649d-40db-8aca-0308e9ee0144'),(143121,143121,1,NULL,NULL,1,'2023-03-09 11:17:50','2023-03-09 11:17:50','7c987bd0-6ca0-4e9f-85d6-ecd179b5e236'),(143122,143122,1,NULL,NULL,1,'2023-03-09 11:19:49','2023-03-09 11:19:49','b4f6216c-1383-46de-b7d8-0c6ac29d4622'),(143123,143123,1,NULL,NULL,1,'2023-03-09 11:21:30','2023-03-09 11:21:30','1a291a28-9408-46e6-a7e3-0171deeb0d91'),(143124,143124,1,'about-us','about',1,'2023-03-10 00:11:53','2023-03-10 00:11:53','3839b9ad-c0ca-4337-999e-0c99d2df131b'),(143126,143126,1,'about-us','about',1,'2023-03-10 00:13:08','2023-03-10 00:13:08','3569a049-843d-4120-b49b-e2beed187814'),(143127,143127,1,'tell-your-story','lp/tell-your-story',1,'2023-03-10 00:19:16','2023-03-10 00:19:16','44a480a5-126a-497a-9c28-1dafd3149bdf'),(143128,143128,1,'about-us','about',1,'2023-03-10 00:39:26','2023-03-10 00:39:26','27b4fc71-4e99-4dab-82a2-05f8552f9727'),(143129,143129,1,'about-us','about',1,'2023-03-10 01:36:37','2023-03-10 01:36:37','ebdf7cf4-2738-4850-80fc-e11fc8a5daa7'),(143130,143130,1,'contact','contact',1,'2023-03-15 04:25:53','2023-03-15 04:25:53','186d13c8-e849-4d70-a426-9a8a03509bb2'),(143131,143131,1,NULL,NULL,1,'2023-03-15 06:13:00','2023-03-15 06:13:00','e982f9db-11a7-4bee-afc8-64911acec704'),(143133,143133,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2023-03-27 06:15:11','2023-03-27 06:15:11','feed653d-26c7-46ed-accc-b1a7debafa82'),(143135,143135,1,NULL,NULL,1,'2023-03-28 06:35:12','2023-03-28 06:35:12','99369f3e-79e0-4eb1-b33e-5162fbab5fb1'),(143136,143136,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2023-03-28 06:35:25','2023-03-28 06:35:25','f5c0e9a3-f507-407a-8b12-7a93f116eebe'),(143138,143138,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2023-03-28 06:37:02','2023-03-28 06:37:02','dab44a71-60ff-446a-8886-5806bf997cf4'),(143139,143139,1,'emotional-connection-lies-at-the-heart-of-every-successful-brand','articles/emotional-connection-lies-at-the-heart-of-every-successful-brand',1,'2023-03-29 03:42:34','2023-03-31 03:39:21','84cb09c7-a7fc-43e8-8dbb-b814c9dca82b'),(143140,143140,1,'emotional-connection-lies-at-the-heart-of-your-brand','articles/emotional-connection-lies-at-the-heart-of-your-brand',1,'2023-03-29 03:44:42','2023-03-29 03:44:42','47c3e5e6-e728-4634-b6e2-da57f46f296a'),(143143,143143,1,'emotional-connection-lies-at-the-heart-of-your-brand','articles/emotional-connection-lies-at-the-heart-of-your-brand',1,'2023-03-29 03:50:34','2023-03-29 03:50:34','5d62a415-d2a0-460e-bd7a-3297d333b75c'),(143145,143145,1,NULL,NULL,1,'2023-03-29 03:53:49','2023-03-29 03:53:49','150a8167-ca53-4e2c-84ef-fe46e14323b8'),(143146,143146,1,'emotional-connection-lies-at-the-heart-of-your-brand','articles/emotional-connection-lies-at-the-heart-of-your-brand',1,'2023-03-29 03:54:12','2023-03-29 03:54:12','45d95082-2d65-4792-b434-bf8225af972e'),(143148,143148,1,'emotional-connection-lies-at-the-heart-of-your-brand','articles/emotional-connection-lies-at-the-heart-of-your-brand',1,'2023-03-29 03:54:44','2023-03-29 03:54:44','f95f7384-1aeb-4c9b-85c9-49a0924c547c'),(143150,143150,1,'emotional-connection-lies-at-the-heart-of-your-brand','articles/emotional-connection-lies-at-the-heart-of-your-brand',1,'2023-03-29 03:55:34','2023-03-29 03:55:34','c75faee8-0683-46f9-811d-095157c2c3b4'),(143152,143152,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2023-03-29 21:39:04','2023-03-29 21:39:04','a3c41dd6-723b-4b0d-9f31-366a8b9b2958'),(143153,143153,1,'department-of-education-2','work/department-of-education-2',1,'2023-03-30 06:24:07','2023-03-30 06:24:07','55924cf2-5807-4893-9683-17feeb2bde4d'),(143154,143154,1,'department-of-education-2','work/department-of-education-2',1,'2023-03-30 06:24:08','2023-03-30 06:24:08','f84acb65-d141-4751-bcb7-f3ebc078b5cd'),(143156,143156,1,'vitalway','work/vitalway',1,'2023-03-30 06:26:19','2023-03-30 06:26:19','b735aef4-9d86-4ced-aef1-78bc4c129dce'),(143159,143159,1,'vitalway','work/vitalway',1,'2023-03-30 23:05:47','2023-03-30 23:05:47','f6118d64-9c30-4ba4-8a81-3a0ea4e04e2f'),(143161,143161,1,'emotional-connection-lies-at-the-heart-of-your-brand','articles/emotional-connection-lies-at-the-heart-of-your-brand',1,'2023-03-30 23:07:15','2023-03-30 23:07:15','84b8cc98-82fd-4440-ab07-0b0b7dec2cb8'),(143162,143162,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2023-03-30 23:07:38','2023-03-30 23:07:38','643fe11b-ce11-49b3-a35a-fe5b08e457a4'),(143164,143164,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2023-03-30 23:08:01','2023-03-30 23:08:01','360deb90-f56d-4134-91b6-0311e95fef92'),(143166,143166,1,'vitalway','work/vitalway',1,'2023-03-30 23:09:32','2023-03-30 23:09:32','7395eb7c-4e8c-4f2b-9718-a40b4f540fac'),(143167,143167,1,'funding','work/funding',1,'2023-03-30 23:09:41','2023-03-30 23:09:41','1169977f-a035-4345-8ca3-1be3bb4db78d'),(143168,143168,1,'queensland-hydro','work/queensland-hydro',1,'2023-03-30 23:09:50','2023-03-30 23:09:50','48cb246b-d504-44e8-9ff2-9659179c8c07'),(143169,143169,1,'shark-smart','work/shark-smart',1,'2023-03-30 23:09:59','2023-03-30 23:09:59','825a8fc6-626c-4168-8fe9-f50b0210cfc3'),(143170,143170,1,'department-of-justice-and-attorney-general','work/department-of-justice-and-attorney-general',1,'2023-03-30 23:10:06','2023-03-30 23:10:06','b8128fa1-c5f8-45d8-be0e-cf081198da0b'),(143172,143172,1,NULL,NULL,1,'2023-03-31 00:57:08','2023-03-31 00:57:08','1998d968-0df5-412c-a75a-4fcf7655aeed'),(143173,143173,1,NULL,NULL,1,'2023-03-31 00:57:25','2023-03-31 00:57:25','08f610e8-0888-4b41-9657-81ff9a5e7838'),(143174,143174,1,NULL,NULL,1,'2023-03-31 00:57:32','2023-03-31 00:57:32','66ed6004-aa10-4235-8098-58ae82e4759e'),(143175,143175,1,NULL,NULL,1,'2023-03-31 00:57:46','2023-03-31 00:57:46','ab2f8364-5f64-441a-adcf-e53c75c52b32'),(143176,143176,1,NULL,NULL,1,'2023-03-31 00:57:58','2023-03-31 00:57:58','e2997ede-39eb-4644-ac7b-2656eaa0ebc0'),(143177,143177,1,NULL,NULL,1,'2023-03-31 00:58:15','2023-03-31 00:58:15','9bbb6fa5-c573-428b-9850-86c40e1e80f7'),(143178,143178,1,NULL,NULL,1,'2023-03-31 00:58:33','2023-03-31 00:58:33','a817337e-025d-488d-bdc5-9892d4065a04'),(143179,143179,1,'vitalway','work/vitalway',1,'2023-03-31 01:01:04','2023-03-31 01:01:04','8bfca4d8-341a-4a8a-88ee-02a8cc185034'),(143181,143181,1,NULL,NULL,1,'2023-03-31 01:03:20','2023-03-31 01:03:20','6733c6ef-b3dc-4872-9d6d-e9aa5c4f04a3'),(143182,143182,1,'vitalway','work/vitalway',1,'2023-03-31 01:04:25','2023-03-31 01:04:25','66052f38-9cb6-45a5-a7e8-f8be47bdc417'),(143184,143184,1,NULL,NULL,1,'2023-03-31 01:05:51','2023-03-31 01:05:51','760b7d7b-1d6f-4af7-99f9-baec11b90f44'),(143185,143185,1,'vitalway','work/vitalway',1,'2023-03-31 01:06:07','2023-03-31 01:06:07','6937f374-6675-4f36-8900-3faf6ace4406'),(143187,143187,1,NULL,NULL,1,'2023-03-31 01:07:06','2023-03-31 01:07:06','a8a6dd91-a841-40d8-b0f6-e8593b127f39'),(143188,143188,1,'vitalway','work/vitalway',1,'2023-03-31 01:07:20','2023-03-31 01:07:20','3b8809d9-d2db-4fef-b146-0c8c101ef17e'),(143190,143190,1,NULL,NULL,1,'2023-03-31 01:12:41','2023-03-31 01:12:41','4c285750-54ab-4844-b791-ec82ac41599a'),(143191,143191,1,'vitalway','work/vitalway',1,'2023-03-31 01:12:51','2023-03-31 01:12:51','b61f5abf-4a4e-4e86-87f3-3d34095b4f4b'),(143193,143193,1,'vitalway','work/vitalway',1,'2023-03-31 01:15:50','2023-03-31 01:15:50','a7b6eff9-915d-43a1-8cfd-4736854ad1e4'),(143195,143195,1,'vitalway','work/vitalway',1,'2023-03-31 01:21:14','2023-03-31 01:21:14','4401f4bb-bf7e-4680-a6e0-0bce85cc43e8'),(143197,143197,1,'vitalway','work/vitalway',1,'2023-03-31 01:21:57','2023-03-31 01:21:57','d8092661-8358-4ad0-bf81-216244f981a5'),(143199,143199,1,'vitalway','work/vitalway',1,'2023-03-31 01:26:04','2023-03-31 01:26:04','52dc4dea-0741-4b31-81ca-24fca258b2c4'),(143201,143201,1,'emotional-connection-lies-at-the-heart-of-your-brand','articles/emotional-connection-lies-at-the-heart-of-your-brand',1,'2023-03-31 01:26:43','2023-03-31 01:26:43','1b129c9b-7e71-4c97-ab5d-54527a60b2d7'),(143203,143203,1,'vitalway','work/vitalway',1,'2023-03-31 02:13:32','2023-03-31 02:13:32','9c3114bd-b039-4aeb-98d2-194da6afb360'),(143205,143205,1,'emotional-connection-lies-at-the-heart-of-your-brand','articles/emotional-connection-lies-at-the-heart-of-your-brand',1,'2023-03-31 02:15:01','2023-03-31 02:15:01','91c4171b-2a0e-425f-8ffe-f21ad7813c91'),(143207,143207,1,'emotional-connection-lies-at-the-heart-of-every-successful-brand','articles/emotional-connection-lies-at-the-heart-of-every-successful-brand',1,'2023-03-31 03:39:21','2023-03-31 03:39:21','eb4230a2-0bf5-4caf-b8be-b8635589a995'),(143209,143209,1,'emotional-connection-lies-at-the-heart-of-every-successful-brand','articles/emotional-connection-lies-at-the-heart-of-every-successful-brand',1,'2023-03-31 03:40:13','2023-03-31 03:40:13','5b81de32-0eb3-4827-a3ac-c47f688dad5f'),(143211,143211,1,'emotional-connection-lies-at-the-heart-of-every-successful-brand','articles/emotional-connection-lies-at-the-heart-of-every-successful-brand',1,'2023-03-31 03:40:31','2023-03-31 03:40:31','cd723fbd-7806-4b88-987a-7c16ad7bfcb2'),(143213,143213,1,'vitalway','work/vitalway',1,'2023-03-31 03:42:53','2023-03-31 03:42:53','ccb943a2-8d8d-4f0d-b2d9-72fb1b443b6e'),(143215,143215,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2023-03-31 03:43:14','2023-03-31 03:43:14','942bac2f-d09b-4df2-8749-f6e6e0c98296'),(143217,143217,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2023-03-31 03:44:09','2023-03-31 03:44:09','e8e86cba-ba68-4495-b6ee-ea7f72dad387'),(143219,143219,1,'let-us-introduce-ourselves','articles/let-us-introduce-ourselves',1,'2023-03-31 03:56:54','2023-03-31 03:56:54','beddf9f3-5d0c-46e3-ba0d-1b39c6c400b2'),(143221,143221,1,'emotional-connection-lies-at-the-heart-of-every-successful-brand','articles/emotional-connection-lies-at-the-heart-of-every-successful-brand',1,'2023-03-31 03:59:36','2023-03-31 03:59:36','9f521908-46a6-4903-bcd1-bf8576799cff'),(143222,143222,1,'the-world-of-modern-marketing','articles/the-world-of-modern-marketing',1,'2023-04-03 01:07:55','2023-04-03 01:07:55','e0e06c16-54dd-46c9-8a8e-847b84ce8f0c'),(143224,143224,1,'the-world-of-modern-marketing','articles/the-world-of-modern-marketing',1,'2023-04-03 01:08:12','2023-04-03 01:08:12','4867feec-c168-4002-880a-0dd269941ba1');
/*!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 (16571,5,NULL,5,1,'2022-01-21 06:27:00',NULL,NULL,'2021-05-14 06:43:31','2022-08-12 03:46:46'),(16573,5,NULL,5,1,'2021-05-14 06:27:00',NULL,NULL,'2021-05-14 06:43:31','2021-05-14 06:43:31'),(16578,5,NULL,5,1,'2021-05-14 06:27:00',NULL,NULL,'2021-05-17 05:37:57','2021-05-17 05:37:57'),(16580,5,NULL,5,1,'2021-05-14 06:27:00',NULL,NULL,'2021-05-17 05:38:01','2021-05-17 05:38:01'),(16589,5,NULL,5,1,'2021-05-14 06:27:00',NULL,NULL,'2021-05-17 05:40:22','2021-05-17 05:40:22'),(16592,5,NULL,5,1,'2021-05-14 06:27:00',NULL,NULL,'2021-05-17 05:40:26','2021-05-17 05:40:26'),(16595,5,NULL,5,1,'2021-05-14 06:27:00',NULL,NULL,'2021-05-17 05:41:16','2021-05-17 05:41:16'),(16604,5,NULL,5,1,'2021-05-14 06:27:00',NULL,NULL,'2021-05-17 05:42:46','2021-05-17 05:42:46'),(16607,5,NULL,5,1,'2021-05-14 06:27:00',NULL,NULL,'2021-05-17 05:42:51','2021-05-17 05:42:51'),(16620,5,NULL,5,1,'2021-05-14 06:27:00',NULL,NULL,'2021-05-17 05:47:14','2021-05-17 05:47:14'),(16638,5,NULL,5,1,'2021-05-14 06:27:00',NULL,NULL,'2021-05-17 06:03:01','2021-05-17 06:03:01'),(16654,5,NULL,5,1,'2021-05-14 06:27:00',NULL,NULL,'2021-05-17 06:05:33','2021-05-17 06:05:33'),(16756,5,NULL,5,1,'2021-05-14 06:27:00',NULL,NULL,'2021-05-17 06:17:11','2021-05-17 06:17:11'),(16769,5,NULL,5,1,'2021-05-14 06:27:00',NULL,NULL,'2021-05-17 06:49:14','2021-05-17 06:49:14'),(16782,5,NULL,5,1,'2021-05-14 06:27:00',NULL,NULL,'2021-05-17 06:58:03','2021-05-17 06:58:03'),(16796,5,NULL,5,1,'2021-05-14 06:27:00',NULL,NULL,'2021-05-17 07:01:02','2021-05-17 07:01:02'),(16810,5,NULL,5,1,'2021-05-14 06:27:00',NULL,NULL,'2021-05-17 23:37:52','2021-05-17 23:37:52'),(16828,5,NULL,5,1,'2022-01-16 23:38:00',NULL,NULL,'2021-05-17 23:41:01','2022-08-12 03:47:29'),(16830,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2021-05-17 23:41:01','2021-05-17 23:41:01'),(16832,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2021-05-17 23:43:09','2021-05-17 23:43:09'),(16836,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2021-05-17 23:43:51','2021-05-17 23:43:51'),(16841,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2021-05-17 23:46:42','2021-05-17 23:46:42'),(16844,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2021-05-17 23:48:09','2021-05-17 23:48:09'),(16848,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2021-05-17 23:51:22','2021-05-17 23:51:22'),(16852,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2021-05-17 23:54:40','2021-05-17 23:54:40'),(16856,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2021-05-18 00:01:20','2021-05-18 00:01:20'),(16861,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2021-05-18 00:07:48','2021-05-18 00:07:48'),(17603,6,NULL,6,1,'2012-05-23 04:20:00',NULL,NULL,'2021-05-18 03:20:48','2021-05-18 04:15:29'),(17604,6,NULL,6,1,'2012-05-23 04:20:20',NULL,NULL,'2021-05-18 03:20:48','2021-05-18 03:20:48'),(17608,6,NULL,6,1,'2012-08-14 00:42:00',NULL,NULL,'2021-05-18 03:20:48','2021-05-18 04:14:57'),(17609,6,NULL,6,1,'2012-08-14 00:42:09',NULL,NULL,'2021-05-18 03:20:48','2021-05-18 03:20:48'),(17611,6,NULL,6,1,'2012-10-16 01:09:00',NULL,NULL,'2021-05-18 03:20:48','2021-05-18 04:14:19'),(17612,6,NULL,6,1,'2012-10-16 01:09:03',NULL,NULL,'2021-05-18 03:20:48','2021-05-18 03:20:48'),(17613,6,NULL,6,1,'2012-11-07 06:18:00',NULL,NULL,'2021-05-18 03:20:49','2021-05-18 04:13:41'),(17614,6,NULL,6,1,'2012-11-07 06:18:51',NULL,NULL,'2021-05-18 03:20:49','2021-05-18 03:20:49'),(17615,6,NULL,6,1,'2012-11-21 05:25:00',NULL,NULL,'2021-05-18 03:20:49','2021-05-18 04:13:08'),(17616,6,NULL,6,1,'2012-11-21 05:25:03',NULL,NULL,'2021-05-18 03:20:49','2021-05-18 03:20:49'),(17617,6,NULL,6,1,'2012-12-20 05:04:00',NULL,NULL,'2021-05-18 03:20:49','2021-05-18 04:12:33'),(17618,6,NULL,6,1,'2012-12-20 05:04:23',NULL,NULL,'2021-05-18 03:20:49','2021-05-18 03:20:49'),(17621,6,NULL,6,1,'2013-06-04 01:16:00',NULL,NULL,'2021-05-18 03:20:49','2021-05-18 04:11:10'),(17622,6,NULL,6,1,'2013-06-04 01:16:32',NULL,NULL,'2021-05-18 03:20:50','2021-05-18 03:20:50'),(17623,6,NULL,6,17956,'2013-05-21 01:57:00',NULL,NULL,'2021-05-18 03:20:50','2021-09-22 01:51:29'),(17624,6,NULL,6,1,'2013-05-21 01:57:03',NULL,NULL,'2021-05-18 03:20:50','2021-05-18 03:20:50'),(17626,6,NULL,6,1,'2013-06-20 02:51:00',NULL,NULL,'2021-05-18 03:20:50','2021-05-18 04:10:15'),(17627,6,NULL,6,1,'2013-06-20 02:51:40',NULL,NULL,'2021-05-18 03:20:50','2021-05-18 03:20:50'),(17628,6,NULL,6,1,'2013-07-04 02:55:00',NULL,NULL,'2021-05-18 03:20:50','2021-05-18 04:09:35'),(17629,6,NULL,6,1,'2013-07-04 02:55:53',NULL,NULL,'2021-05-18 03:20:50','2021-05-18 03:20:50'),(17631,6,NULL,6,1,'2013-07-23 03:24:00',NULL,NULL,'2021-05-18 03:20:51','2021-05-18 04:08:57'),(17632,6,NULL,6,1,'2013-07-23 03:24:11',NULL,NULL,'2021-05-18 03:20:51','2021-05-18 03:20:51'),(17633,6,NULL,6,1,'2013-08-08 05:42:00',NULL,NULL,'2021-05-18 03:20:51','2021-05-18 04:08:21'),(17634,6,NULL,6,1,'2013-08-08 05:42:12',NULL,NULL,'2021-05-18 03:20:51','2021-05-18 03:20:51'),(17635,6,NULL,6,1,'2013-10-02 03:02:00',NULL,NULL,'2021-05-18 03:20:51','2021-05-18 04:05:43'),(17636,6,NULL,6,1,'2013-10-02 03:02:45',NULL,NULL,'2021-05-18 03:20:51','2021-05-18 03:20:51'),(17638,6,NULL,6,1,'2013-08-20 00:58:00',NULL,NULL,'2021-05-18 03:20:51','2021-05-18 04:07:42'),(17639,6,NULL,6,1,'2013-08-20 00:58:10',NULL,NULL,'2021-05-18 03:20:51','2021-05-18 03:20:51'),(17642,6,NULL,6,1,'2013-09-13 05:06:00',NULL,NULL,'2021-05-18 03:20:52','2021-05-18 04:06:44'),(17643,6,NULL,6,1,'2013-09-13 05:06:47',NULL,NULL,'2021-05-18 03:20:52','2021-05-18 03:20:52'),(17644,6,NULL,6,17954,'2013-10-07 23:24:00',NULL,NULL,'2021-05-18 03:20:52','2022-08-08 07:05:22'),(17645,6,NULL,6,1,'2013-10-07 23:24:24',NULL,NULL,'2021-05-18 03:20:52','2021-05-18 03:20:52'),(17646,6,NULL,6,17941,'2013-11-06 23:54:00',NULL,NULL,'2021-05-18 03:20:52','2022-08-16 07:22:28'),(17647,6,NULL,6,1,'2013-11-06 23:54:30',NULL,NULL,'2021-05-18 03:20:52','2021-05-18 03:20:52'),(17648,6,NULL,6,1,'2013-12-04 01:59:00',NULL,NULL,'2021-05-18 03:20:52','2021-05-18 04:03:05'),(17649,6,NULL,6,1,'2013-12-04 01:59:49',NULL,NULL,'2021-05-18 03:20:53','2021-05-18 03:20:53'),(17650,6,NULL,6,17887,'2013-11-19 02:27:00',NULL,NULL,'2021-05-18 03:20:53','2022-07-18 04:21:58'),(17651,6,NULL,6,1,'2013-11-19 02:27:18',NULL,NULL,'2021-05-18 03:20:53','2021-05-18 03:20:53'),(17652,6,NULL,6,1,'2014-02-17 00:29:00',NULL,NULL,'2021-05-18 03:20:53','2021-05-18 04:02:23'),(17653,6,NULL,6,1,'2014-02-17 00:29:36',NULL,NULL,'2021-05-18 03:20:53','2021-05-18 03:20:53'),(17654,6,NULL,6,17956,'2014-03-04 07:00:00',NULL,NULL,'2021-05-18 03:20:53','2021-09-22 00:49:41'),(17655,6,NULL,6,1,'2014-03-04 07:00:50',NULL,NULL,'2021-05-18 03:20:53','2021-05-18 03:20:53'),(17660,6,NULL,6,1,'2015-03-05 06:45:00',NULL,NULL,'2021-05-18 03:20:54','2021-05-18 04:00:53'),(17661,6,NULL,6,1,'2015-03-05 06:45:10',NULL,NULL,'2021-05-18 03:20:54','2021-05-18 03:20:54'),(17662,6,NULL,6,1,'2015-03-07 02:20:00',NULL,NULL,'2021-05-18 03:20:54','2021-05-18 04:00:05'),(17663,6,NULL,6,1,'2015-03-07 02:20:32',NULL,NULL,'2021-05-18 03:20:54','2021-05-18 03:20:54'),(17664,6,NULL,6,1,'2017-03-16 05:45:00',NULL,NULL,'2021-05-18 03:20:55','2021-05-18 03:56:55'),(17665,6,NULL,6,1,'2017-03-16 05:45:55',NULL,NULL,'2021-05-18 03:20:55','2021-05-18 03:20:55'),(17666,6,NULL,6,1,'2017-03-16 05:47:00',NULL,NULL,'2021-05-18 03:20:55','2021-05-18 03:56:17'),(17667,6,NULL,6,1,'2017-03-16 05:47:16',NULL,NULL,'2021-05-18 03:20:55','2021-05-18 03:20:55'),(17668,6,NULL,6,1,'2017-03-16 05:48:00',NULL,NULL,'2021-05-18 03:20:55','2021-05-18 03:55:28'),(17669,6,NULL,6,1,'2017-03-16 05:48:16',NULL,NULL,'2021-05-18 03:20:56','2021-05-18 03:20:56'),(17670,6,NULL,6,1,'2017-05-10 05:16:00',NULL,NULL,'2021-05-18 03:20:56','2021-05-18 03:54:13'),(17671,6,NULL,6,1,'2017-05-10 05:16:48',NULL,NULL,'2021-05-18 03:20:56','2021-05-18 03:20:56'),(17672,6,NULL,6,1,'2017-05-10 05:18:00',NULL,NULL,'2021-05-18 03:20:56','2021-05-18 03:52:25'),(17673,6,NULL,6,1,'2017-05-10 05:18:04',NULL,NULL,'2021-05-18 03:20:56','2021-05-18 03:20:56'),(17674,6,NULL,6,1,'2017-05-10 05:19:00',NULL,NULL,'2021-05-18 03:20:56','2021-05-18 03:20:56'),(17675,6,NULL,6,1,'2017-05-10 05:19:00',NULL,NULL,'2021-05-18 03:20:56','2021-05-18 03:20:56'),(17676,6,NULL,6,1,'2017-06-15 03:09:00',NULL,NULL,'2021-05-18 03:20:56','2021-05-18 03:50:22'),(17677,6,NULL,6,1,'2017-06-15 03:09:31',NULL,NULL,'2021-05-18 03:20:56','2021-05-18 03:20:56'),(17678,6,NULL,6,17956,'2017-10-06 06:10:00',NULL,NULL,'2021-05-18 03:20:56','2021-07-23 07:26:56'),(17679,6,NULL,6,1,'2017-10-06 06:10:52',NULL,NULL,'2021-05-18 03:20:57','2021-05-18 03:20:57'),(17680,6,NULL,6,1,'2018-03-13 00:54:00',NULL,NULL,'2021-05-18 03:20:57','2021-05-18 03:49:00'),(17681,6,NULL,6,1,'2018-03-13 00:54:12',NULL,NULL,'2021-05-18 03:20:57','2021-05-18 03:20:57'),(17682,6,NULL,6,17956,'2018-04-16 05:39:00',NULL,NULL,'2021-05-18 03:20:57','2021-07-23 06:47:17'),(17683,6,NULL,6,1,'2018-04-16 05:39:16',NULL,NULL,'2021-05-18 03:20:57','2021-05-18 03:20:57'),(17684,6,NULL,6,17954,'2018-04-26 00:39:00',NULL,NULL,'2021-05-18 03:20:57','2021-07-30 01:29:29'),(17685,6,NULL,6,1,'2018-04-26 00:39:41',NULL,NULL,'2021-05-18 03:20:57','2021-05-18 03:20:57'),(17686,6,NULL,6,1,'2018-05-21 07:01:00',NULL,NULL,'2021-05-18 03:20:57','2021-05-18 03:46:30'),(17687,6,NULL,6,1,'2018-05-21 07:01:54',NULL,NULL,'2021-05-18 03:20:57','2021-05-18 03:20:57'),(17688,6,NULL,6,17954,'2018-11-14 08:55:00',NULL,NULL,'2021-05-18 03:20:58','2021-07-23 06:33:59'),(17689,6,NULL,6,1,'2018-11-14 08:55:56',NULL,NULL,'2021-05-18 03:20:58','2021-05-18 03:20:58'),(17690,6,NULL,6,1,'2020-10-22 23:54:00',NULL,NULL,'2021-05-18 03:20:58','2021-05-18 03:45:31'),(17691,6,NULL,6,1,'2020-10-22 23:54:34',NULL,NULL,'2021-05-18 03:20:58','2021-05-18 03:20:58'),(17692,6,NULL,6,17934,'2021-02-15 05:31:00',NULL,NULL,'2021-05-18 03:20:58','2021-07-23 06:26:23'),(17693,6,NULL,6,1,'2021-02-15 05:31:40',NULL,NULL,'2021-05-18 03:20:58','2021-05-18 03:20:58'),(17807,6,NULL,6,1,'2021-02-15 05:31:00',NULL,NULL,'2021-05-18 03:44:18','2021-05-18 03:44:18'),(17808,6,NULL,6,1,'2020-10-22 23:54:00',NULL,NULL,'2021-05-18 03:45:31','2021-05-18 03:45:31'),(17809,6,NULL,6,1,'2018-11-14 08:55:00',NULL,NULL,'2021-05-18 03:46:06','2021-05-18 03:46:06'),(17810,6,NULL,6,1,'2018-05-21 07:01:00',NULL,NULL,'2021-05-18 03:46:30','2021-05-18 03:46:30'),(17812,6,NULL,6,1,'2018-04-26 00:39:00',NULL,NULL,'2021-05-18 03:48:02','2021-05-18 03:48:02'),(17813,6,NULL,6,1,'2018-04-16 05:39:00',NULL,NULL,'2021-05-18 03:48:36','2021-05-18 03:48:36'),(17814,6,NULL,6,1,'2018-03-13 00:54:00',NULL,NULL,'2021-05-18 03:49:00','2021-05-18 03:49:00'),(17816,6,NULL,6,1,'2017-10-06 06:10:00',NULL,NULL,'2021-05-18 03:49:52','2021-05-18 03:49:52'),(17817,6,NULL,6,1,'2017-06-15 03:09:00',NULL,NULL,'2021-05-18 03:50:22','2021-05-18 03:50:22'),(17819,6,NULL,6,1,'2017-05-10 05:19:00',NULL,NULL,'2021-05-18 03:51:16','2021-05-18 03:51:16'),(17820,6,NULL,6,1,'2017-05-10 05:18:00',NULL,NULL,'2021-05-18 03:52:25','2021-05-18 03:52:25'),(17821,6,NULL,6,1,'2017-05-10 05:16:00',NULL,NULL,'2021-05-18 03:54:13','2021-05-18 03:54:13'),(17822,6,NULL,6,1,'2017-03-16 05:48:00',NULL,NULL,'2021-05-18 03:55:28','2021-05-18 03:55:28'),(17823,6,NULL,6,1,'2017-03-16 05:47:00',NULL,NULL,'2021-05-18 03:56:17','2021-05-18 03:56:17'),(17824,6,NULL,6,1,'2017-03-16 05:45:00',NULL,NULL,'2021-05-18 03:56:55','2021-05-18 03:56:55'),(17825,6,NULL,6,1,'2015-03-07 02:20:00',NULL,NULL,'2021-05-18 04:00:05','2021-05-18 04:00:05'),(17826,6,NULL,6,1,'2015-03-05 06:45:00',NULL,NULL,'2021-05-18 04:00:53','2021-05-18 04:00:53'),(17827,6,NULL,6,1,'2014-03-04 07:00:00',NULL,NULL,'2021-05-18 04:01:45','2021-05-18 04:01:45'),(17828,6,NULL,6,1,'2014-02-17 00:29:00',NULL,NULL,'2021-05-18 04:02:23','2021-05-18 04:02:23'),(17829,6,NULL,6,1,'2013-12-04 01:59:00',NULL,NULL,'2021-05-18 04:03:05','2021-05-18 04:03:05'),(17830,6,NULL,6,1,'2013-11-19 02:27:00',NULL,NULL,'2021-05-18 04:03:49','2021-05-18 04:03:49'),(17831,6,NULL,6,1,'2013-11-06 23:54:00',NULL,NULL,'2021-05-18 04:04:32','2021-05-18 04:04:32'),(17832,6,NULL,6,1,'2013-10-07 23:24:00',NULL,NULL,'2021-05-18 04:05:05','2021-05-18 04:05:05'),(17833,6,NULL,6,1,'2013-10-02 03:02:00',NULL,NULL,'2021-05-18 04:05:43','2021-05-18 04:05:43'),(17834,6,NULL,6,1,'2013-09-13 05:06:00',NULL,NULL,'2021-05-18 04:06:44','2021-05-18 04:06:44'),(17835,6,NULL,6,1,'2013-08-20 00:58:00',NULL,NULL,'2021-05-18 04:07:42','2021-05-18 04:07:42'),(17836,6,NULL,6,1,'2013-08-08 05:42:00',NULL,NULL,'2021-05-18 04:08:21','2021-05-18 04:08:21'),(17837,6,NULL,6,1,'2013-07-23 03:24:00',NULL,NULL,'2021-05-18 04:08:57','2021-05-18 04:08:57'),(17838,6,NULL,6,1,'2013-07-04 02:55:00',NULL,NULL,'2021-05-18 04:09:35','2021-05-18 04:09:35'),(17839,6,NULL,6,1,'2013-06-20 02:51:00',NULL,NULL,'2021-05-18 04:10:15','2021-05-18 04:10:15'),(17840,6,NULL,6,1,'2013-06-04 01:16:00',NULL,NULL,'2021-05-18 04:11:10','2021-05-18 04:11:10'),(17841,6,NULL,6,1,'2013-05-21 01:57:00',NULL,NULL,'2021-05-18 04:11:52','2021-05-18 04:11:52'),(17842,6,NULL,6,1,'2012-12-20 05:04:00',NULL,NULL,'2021-05-18 04:12:33','2021-05-18 04:12:33'),(17843,6,NULL,6,1,'2012-11-21 05:25:00',NULL,NULL,'2021-05-18 04:13:08','2021-05-18 04:13:08'),(17844,6,NULL,6,1,'2012-11-07 06:18:00',NULL,NULL,'2021-05-18 04:13:41','2021-05-18 04:13:41'),(17845,6,NULL,6,1,'2012-10-16 01:09:00',NULL,NULL,'2021-05-18 04:14:19','2021-05-18 04:14:19'),(17846,6,NULL,6,1,'2012-08-14 00:42:00',NULL,NULL,'2021-05-18 04:14:57','2021-05-18 04:14:57'),(17847,6,NULL,6,1,'2012-05-23 04:20:00',NULL,NULL,'2021-05-18 04:15:29','2021-05-18 04:15:29'),(17977,5,NULL,5,1,'2021-05-14 06:27:00',NULL,NULL,'2021-06-01 07:20:12','2021-06-01 07:20:12'),(18003,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2021-06-03 05:19:19','2021-06-03 05:19:19'),(18021,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2021-06-03 05:22:27','2021-06-03 05:22:27'),(18027,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2021-06-03 05:27:17','2021-06-03 05:27:17'),(18034,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2021-06-03 05:55:32','2021-06-03 05:55:32'),(18051,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2021-06-03 05:56:53','2021-06-03 05:56:53'),(18071,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2021-06-03 06:11:01','2021-06-03 06:11:01'),(18077,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2021-06-03 06:12:30','2021-06-03 06:12:30'),(18097,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2021-06-03 06:13:45','2021-06-03 06:13:45'),(18109,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2021-06-03 06:15:55','2021-06-03 06:15:55'),(18110,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2021-06-03 06:15:55','2021-06-03 06:15:55'),(18112,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2021-06-03 06:16:26','2021-06-03 06:16:26'),(18113,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2021-06-03 06:16:30','2021-06-03 06:16:30'),(18122,5,NULL,5,17887,'2021-05-26 01:40:00',NULL,NULL,'2021-06-03 06:17:38','2021-06-03 06:17:38'),(18123,5,NULL,5,17887,'2021-05-26 01:40:00',NULL,NULL,'2021-06-03 06:17:38','2021-06-03 06:17:38'),(18124,5,NULL,5,17887,'2021-05-26 01:40:00',NULL,NULL,'2021-06-03 06:17:42','2021-06-03 06:17:42'),(18126,5,NULL,5,17887,'2021-05-26 01:45:00',NULL,NULL,'2021-06-03 22:51:16','2021-06-03 22:51:16'),(18127,5,NULL,5,17887,'2021-05-26 01:45:00',NULL,NULL,'2021-06-03 22:51:16','2021-06-03 22:51:16'),(18128,5,NULL,5,17887,'2021-05-26 01:45:00',NULL,NULL,'2021-06-03 22:51:20','2021-06-03 22:51:20'),(18139,5,NULL,5,17934,'2022-07-04 01:22:00',NULL,NULL,'2021-06-03 23:01:25','2022-07-04 01:22:26'),(18140,5,NULL,5,17887,'2021-05-26 02:03:00',NULL,NULL,'2021-06-03 23:01:25','2021-06-03 23:01:25'),(18141,5,NULL,5,17887,'2021-05-26 02:03:00',NULL,NULL,'2021-06-03 23:01:29','2021-06-03 23:01:29'),(18142,5,NULL,5,17887,'2021-07-15 23:00:00',NULL,NULL,'2021-06-03 23:02:15','2021-07-16 01:50:07'),(18143,5,NULL,5,17887,'2021-05-26 02:08:00',NULL,NULL,'2021-06-03 23:02:15','2021-06-03 23:02:15'),(18144,5,NULL,5,17887,'2021-05-26 02:08:00',NULL,NULL,'2021-06-03 23:02:19','2021-06-03 23:02:19'),(18156,5,NULL,5,17887,'2022-02-01 03:20:00',NULL,NULL,'2021-06-03 23:04:04','2022-08-12 03:46:53'),(18157,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2021-06-03 23:04:04','2021-06-03 23:04:04'),(18158,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2021-06-03 23:04:08','2021-06-03 23:04:08'),(18164,5,NULL,5,17887,'2021-05-26 03:32:00',NULL,NULL,'2021-06-03 23:05:05','2021-06-03 23:05:05'),(18165,5,NULL,5,17887,'2021-05-26 03:32:00',NULL,NULL,'2021-06-03 23:05:05','2021-06-03 23:05:05'),(18166,5,NULL,5,17887,'2021-05-26 03:32:00',NULL,NULL,'2021-06-03 23:05:09','2021-06-03 23:05:09'),(18168,5,NULL,5,17887,'2021-07-15 23:00:00',NULL,NULL,'2021-06-03 23:06:10','2021-07-16 03:10:46'),(18169,5,NULL,5,17887,'2021-05-26 03:37:00',NULL,NULL,'2021-06-03 23:06:10','2021-06-03 23:06:10'),(18170,5,NULL,5,17887,'2021-05-26 03:37:00',NULL,NULL,'2021-06-03 23:06:13','2021-06-03 23:06:13'),(18176,5,NULL,5,17887,'2021-05-26 03:39:00',NULL,NULL,'2021-06-03 23:07:00','2021-06-03 23:07:00'),(18177,5,NULL,5,17887,'2021-05-26 03:39:00',NULL,NULL,'2021-06-03 23:07:00','2021-06-03 23:07:00'),(18178,5,NULL,5,17887,'2021-05-26 03:39:00',NULL,NULL,'2021-06-03 23:07:04','2021-06-03 23:07:04'),(18338,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2021-06-09 23:34:56','2021-06-09 23:34:56'),(18348,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2021-06-09 23:35:01','2021-06-09 23:35:01'),(18369,5,NULL,5,17887,'2021-05-26 01:40:00',NULL,NULL,'2021-06-09 23:36:04','2021-06-09 23:36:04'),(18538,5,NULL,5,17887,'2021-05-26 01:40:00',NULL,NULL,'2021-06-09 23:44:53','2021-06-09 23:44:53'),(18550,5,NULL,5,17887,'2021-05-26 01:40:00',NULL,NULL,'2021-06-09 23:44:59','2021-06-09 23:44:59'),(18562,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2021-06-09 23:45:20','2021-06-09 23:45:20'),(18572,5,NULL,5,17887,'2021-05-26 01:40:00',NULL,NULL,'2021-06-09 23:45:55','2021-06-09 23:45:55'),(18626,5,NULL,5,17887,'2021-05-26 01:45:00',NULL,NULL,'2021-06-09 23:50:04','2021-06-09 23:50:04'),(18632,5,NULL,5,17887,'2021-05-26 01:45:00',NULL,NULL,'2021-06-09 23:50:10','2021-06-09 23:50:10'),(19014,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2021-06-10 01:54:28','2021-06-10 01:54:28'),(19033,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2021-06-10 01:54:38','2021-06-10 01:54:38'),(19093,5,NULL,5,17887,'2021-05-26 01:40:00',NULL,NULL,'2021-06-10 04:26:08','2021-06-10 04:26:08'),(19105,5,NULL,5,17887,'2021-05-26 01:40:00',NULL,NULL,'2021-06-10 04:26:13','2021-06-10 04:26:13'),(19136,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2021-06-10 04:27:36','2021-06-10 04:27:36'),(19146,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2021-06-10 04:27:41','2021-06-10 04:27:41'),(19177,4,NULL,4,19176,'2021-06-11 01:39:00',NULL,NULL,'2021-06-11 01:39:49','2021-06-11 01:39:49'),(19178,4,NULL,4,19176,'2021-06-11 01:39:00',NULL,NULL,'2021-06-11 01:39:49','2021-06-11 01:39:49'),(19181,4,NULL,4,19179,'2021-06-11 01:42:00',NULL,NULL,'2021-06-11 01:45:58','2021-06-11 01:45:58'),(19182,4,NULL,4,19179,'2021-06-11 01:42:00',NULL,NULL,'2021-06-11 01:45:58','2021-06-11 01:45:58'),(19183,4,NULL,4,19179,'2021-06-11 01:42:00',NULL,NULL,'2021-06-11 01:46:01','2021-06-11 01:46:01'),(19184,4,NULL,4,19179,'2021-06-11 01:42:00',NULL,NULL,'2021-06-11 01:46:34','2021-06-11 01:46:34'),(19188,4,NULL,4,19185,'2021-06-11 01:48:00',NULL,NULL,'2021-06-11 01:50:23','2021-06-11 01:50:23'),(19189,4,NULL,4,19185,'2021-06-11 01:48:00',NULL,NULL,'2021-06-11 01:50:23','2021-06-11 01:50:23'),(19190,4,NULL,4,19185,'2021-06-11 01:48:00',NULL,NULL,'2021-06-11 01:50:26','2021-06-11 01:50:26'),(19192,4,NULL,4,19191,'2021-06-11 04:55:00',NULL,NULL,'2021-06-11 04:55:44','2021-06-11 04:55:44'),(19193,4,NULL,4,19191,'2021-06-11 04:55:00',NULL,NULL,'2021-06-11 04:55:44','2021-06-11 04:55:44'),(19194,4,NULL,4,19191,'2021-06-11 04:55:00',NULL,NULL,'2021-06-11 04:57:22','2021-06-11 04:57:22'),(19195,4,NULL,4,19191,'2021-06-11 04:55:00',NULL,NULL,'2021-06-11 04:57:32','2021-06-11 04:57:32'),(19200,4,NULL,4,19197,'2021-06-13 23:27:00',NULL,NULL,'2021-06-13 23:27:28','2021-06-13 23:27:28'),(19201,4,NULL,4,19197,'2021-06-13 23:27:00',NULL,NULL,'2021-06-13 23:27:28','2021-06-13 23:27:28'),(19202,4,NULL,4,19197,'2021-06-13 23:27:00',NULL,NULL,'2021-06-13 23:27:51','2021-06-13 23:27:51'),(19203,4,NULL,4,19197,'2021-06-13 23:27:00',NULL,NULL,'2021-06-14 00:13:29','2021-06-14 00:13:29'),(19204,4,NULL,4,19197,'2021-06-13 23:27:00',NULL,NULL,'2021-06-14 00:14:00','2021-06-14 00:14:00'),(19205,4,NULL,4,19197,'2021-06-13 23:27:00',NULL,NULL,'2021-06-14 00:14:10','2021-06-14 00:14:10'),(19206,4,NULL,4,19197,'2021-06-13 23:27:00',NULL,NULL,'2021-06-14 00:14:19','2021-06-14 00:14:19'),(19207,4,NULL,4,19197,'2021-06-13 23:27:00',NULL,NULL,'2021-06-14 00:14:24','2021-06-14 00:14:24'),(19208,4,NULL,4,19197,'2021-06-13 23:27:00',NULL,NULL,'2021-06-14 00:14:29','2021-06-14 00:14:29'),(19209,4,NULL,4,19197,'2021-06-13 23:27:00',NULL,NULL,'2021-06-14 00:14:33','2021-06-14 00:14:33'),(19210,4,NULL,4,19197,'2021-06-13 23:27:00',NULL,NULL,'2021-06-14 00:14:36','2021-06-14 00:14:36'),(19211,4,NULL,4,19197,'2021-06-13 23:27:00',NULL,NULL,'2021-06-14 00:14:41','2021-06-14 00:14:41'),(19212,4,NULL,4,19197,'2021-06-13 23:27:00',NULL,NULL,'2021-06-14 00:14:48','2021-06-14 00:14:48'),(19213,4,NULL,4,19197,'2021-06-13 23:27:00',NULL,NULL,'2021-06-14 00:15:27','2021-06-14 00:15:27'),(19214,4,NULL,4,19197,'2021-06-13 23:27:00',NULL,NULL,'2021-06-14 00:15:49','2021-06-14 00:15:49'),(19215,4,NULL,4,19197,'2021-06-13 23:27:00',NULL,NULL,'2021-06-14 00:16:01','2021-06-14 00:16:01'),(19216,4,NULL,4,19197,'2021-06-13 23:27:00',NULL,NULL,'2021-06-14 00:16:22','2021-06-14 00:16:22'),(19217,4,NULL,4,19197,'2021-06-13 23:27:00',NULL,NULL,'2021-06-14 00:16:35','2021-06-14 00:16:35'),(19218,4,NULL,4,19197,'2021-06-13 23:27:00',NULL,NULL,'2021-06-14 00:16:57','2021-06-14 00:16:57'),(19219,4,NULL,4,19197,'2021-06-13 23:27:00',NULL,NULL,'2021-06-14 00:17:09','2021-06-14 00:17:09'),(19220,4,NULL,4,19197,'2021-06-13 23:27:00',NULL,NULL,'2021-06-14 00:17:42','2021-06-14 00:17:42'),(19221,4,NULL,4,19197,'2021-06-13 23:27:00',NULL,NULL,'2021-06-14 00:18:05','2021-06-14 00:18:05'),(19222,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 04:51:48','2021-06-15 04:51:48'),(20145,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:29:45','2021-06-15 23:29:45'),(20146,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:29:49','2021-06-15 23:29:49'),(20147,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:29:53','2021-06-15 23:29:53'),(20148,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:29:56','2021-06-15 23:29:56'),(20149,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:29:58','2021-06-15 23:29:58'),(20150,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:30:20','2021-06-15 23:30:20'),(20151,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:30:31','2021-06-15 23:30:31'),(20152,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:30:38','2021-06-15 23:30:38'),(20153,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:30:43','2021-06-15 23:30:43'),(20154,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:30:48','2021-06-15 23:30:48'),(20155,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:30:52','2021-06-15 23:30:52'),(20156,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:30:56','2021-06-15 23:30:56'),(20157,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:30:59','2021-06-15 23:30:59'),(20158,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:31:02','2021-06-15 23:31:02'),(20159,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:31:04','2021-06-15 23:31:04'),(20160,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:31:07','2021-06-15 23:31:07'),(20161,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:31:09','2021-06-15 23:31:09'),(20162,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:31:11','2021-06-15 23:31:11'),(20163,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:31:32','2021-06-15 23:31:32'),(20164,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:31:43','2021-06-15 23:31:43'),(20165,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:31:50','2021-06-15 23:31:50'),(20166,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:32:12','2021-06-15 23:32:12'),(20167,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:32:22','2021-06-15 23:32:22'),(20168,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:32:30','2021-06-15 23:32:30'),(20169,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:32:35','2021-06-15 23:32:35'),(20170,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:32:40','2021-06-15 23:32:40'),(20171,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:32:44','2021-06-15 23:32:44'),(20172,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:32:47','2021-06-15 23:32:47'),(20173,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:33:09','2021-06-15 23:33:09'),(20174,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:33:19','2021-06-15 23:33:19'),(20175,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:33:27','2021-06-15 23:33:27'),(20176,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:33:32','2021-06-15 23:33:32'),(20177,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:33:37','2021-06-15 23:33:37'),(20178,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:33:41','2021-06-15 23:33:41'),(20179,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:34:02','2021-06-15 23:34:02'),(20180,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:34:13','2021-06-15 23:34:13'),(20181,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:34:20','2021-06-15 23:34:20'),(20182,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:34:26','2021-06-15 23:34:26'),(20183,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:34:31','2021-06-15 23:34:31'),(20184,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:34:35','2021-06-15 23:34:35'),(20185,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:34:38','2021-06-15 23:34:38'),(20186,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:34:41','2021-06-15 23:34:41'),(20187,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:34:44','2021-06-15 23:34:44'),(20188,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:35:05','2021-06-15 23:35:05'),(20189,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:35:16','2021-06-15 23:35:16'),(20190,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:35:23','2021-06-15 23:35:23'),(20191,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:35:29','2021-06-15 23:35:29'),(20192,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:35:34','2021-06-15 23:35:34'),(20193,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:35:37','2021-06-15 23:35:37'),(20194,4,NULL,4,17875,'2021-06-15 04:51:00',NULL,NULL,'2021-06-15 23:35:41','2021-06-15 23:35:41'),(20195,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2021-06-16 00:27:52','2021-06-16 00:27:52'),(20379,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2021-06-21 04:18:41','2021-06-21 04:18:41'),(21297,8,NULL,8,NULL,'2021-06-21 06:24:00',NULL,NULL,'2021-06-21 06:24:18','2021-06-21 06:24:18'),(21298,8,NULL,8,NULL,'2021-06-21 06:24:00',NULL,NULL,'2021-06-21 06:24:18','2021-06-21 06:24:18'),(21299,8,NULL,8,NULL,'2021-06-21 06:24:00',NULL,NULL,'2021-06-21 06:24:59','2021-06-21 06:24:59'),(21308,8,NULL,8,NULL,'2021-06-21 06:24:00',NULL,NULL,'2021-06-21 06:26:26','2021-06-21 06:26:26'),(21336,8,NULL,8,NULL,'2021-06-21 06:24:00',NULL,NULL,'2021-06-21 06:33:45','2021-06-21 06:33:45'),(21338,8,NULL,8,NULL,'2021-06-21 06:24:00',NULL,NULL,'2021-06-21 06:33:48','2021-06-21 06:33:48'),(21901,8,NULL,8,NULL,'2021-06-21 06:24:00',NULL,NULL,'2021-07-14 23:06:29','2021-07-14 23:06:29'),(21903,8,NULL,8,NULL,'2021-06-21 06:24:00',NULL,NULL,'2021-07-14 23:07:37','2021-07-14 23:07:37'),(21904,8,NULL,8,NULL,'2021-06-21 06:24:00',NULL,NULL,'2021-07-14 23:07:41','2021-07-14 23:07:41'),(21905,8,NULL,8,NULL,'2021-06-21 06:24:00',NULL,NULL,'2021-07-14 23:13:02','2021-07-14 23:13:02'),(21906,8,NULL,8,NULL,'2021-06-21 06:24:00',NULL,NULL,'2021-07-14 23:16:04','2021-07-14 23:16:04'),(21907,8,NULL,8,NULL,'2021-06-21 06:24:00',NULL,NULL,'2021-07-14 23:33:15','2021-07-14 23:33:15'),(21908,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2021-07-15 00:09:37','2021-07-15 00:09:37'),(21909,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2021-07-15 00:11:33','2021-07-15 00:11:33'),(21911,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2021-07-15 01:58:54','2021-07-15 01:58:54'),(21912,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2021-07-15 02:11:52','2021-07-15 02:11:52'),(21913,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2021-07-15 02:12:22','2021-07-15 02:12:22'),(21921,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2021-07-15 02:29:01','2021-07-15 02:29:01'),(21922,8,NULL,8,NULL,'2021-06-21 06:24:00',NULL,NULL,'2021-07-15 04:55:38','2021-07-15 04:55:38'),(21936,5,NULL,5,1,'2021-05-14 06:27:00',NULL,NULL,'2021-07-16 01:16:05','2021-07-16 01:16:05'),(21960,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2021-07-16 01:17:55','2021-07-16 01:17:55'),(21973,5,NULL,5,17887,'2021-05-26 01:45:00',NULL,NULL,'2021-07-16 01:36:04','2021-07-16 01:36:04'),(22006,5,NULL,5,17887,'2021-07-16 02:03:00',NULL,NULL,'2021-07-16 01:41:34','2021-07-16 01:41:34'),(22041,5,NULL,5,17887,'2021-07-16 02:08:00',NULL,NULL,'2021-07-16 01:49:52','2021-07-16 01:49:52'),(22051,5,NULL,5,17887,'2021-07-15 23:00:00',NULL,NULL,'2021-07-16 01:50:07','2021-07-16 01:50:07'),(22060,5,NULL,5,17887,'2021-07-15 23:00:00',NULL,NULL,'2021-07-16 01:50:19','2021-07-16 01:50:19'),(22099,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2021-07-16 01:57:58','2021-07-16 01:57:58'),(22139,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2021-07-16 01:58:24','2021-07-16 01:58:24'),(22195,5,NULL,5,17887,'2021-05-26 03:37:00',NULL,NULL,'2021-07-16 03:07:32','2021-07-16 03:07:32'),(22205,5,NULL,5,17887,'2021-07-15 23:00:00',NULL,NULL,'2021-07-16 03:10:46','2021-07-16 03:10:46'),(22210,5,NULL,5,1,'2021-07-16 03:13:00',NULL,NULL,'2021-07-16 03:13:01','2021-07-16 03:13:01'),(22266,5,NULL,5,1,'2021-07-16 03:13:00',NULL,NULL,'2021-07-16 03:23:11','2021-07-16 03:23:11'),(22279,5,NULL,5,1,'2021-07-16 03:13:00',NULL,NULL,'2021-07-16 03:53:04','2021-07-16 03:53:04'),(22296,5,NULL,5,1,'2021-07-16 03:13:00',NULL,NULL,'2021-07-16 03:55:48','2021-07-16 03:55:48'),(22311,5,NULL,5,1,'2021-07-16 03:13:00',NULL,NULL,'2021-07-16 03:57:20','2021-07-16 03:57:20'),(22326,5,NULL,5,1,'2021-07-16 03:13:00',NULL,NULL,'2021-07-16 04:08:00','2021-07-16 04:08:00'),(22332,5,NULL,5,1,'2021-07-16 03:13:00',NULL,NULL,'2021-07-16 04:09:55','2021-07-16 04:09:55'),(22375,5,NULL,5,1,'2021-07-16 03:13:00',NULL,NULL,'2021-07-16 04:25:30','2021-07-16 04:25:30'),(22398,5,NULL,5,1,'2021-07-16 03:13:00',NULL,NULL,'2021-07-16 05:01:46','2021-07-16 05:01:46'),(22420,5,NULL,5,1,'2021-07-16 03:13:00',NULL,NULL,'2021-07-16 05:27:15','2021-07-16 05:27:15'),(22440,5,NULL,5,1,'2021-07-16 03:13:00',NULL,NULL,'2021-07-16 05:33:06','2021-07-16 05:33:06'),(22442,5,NULL,5,1,'2021-07-16 03:13:00',NULL,NULL,'2021-07-16 05:37:58','2021-07-16 05:37:58'),(22444,5,NULL,5,1,'2021-07-16 03:13:00',NULL,NULL,'2021-07-16 05:43:18','2021-07-16 05:43:18'),(22449,5,NULL,5,17887,'2021-07-15 23:00:00',NULL,NULL,'2021-07-16 05:46:03','2021-07-16 05:46:03'),(22455,5,NULL,5,17887,'2021-07-15 23:00:00',NULL,NULL,'2021-07-16 05:47:20','2021-07-16 05:47:20'),(22461,5,NULL,5,17887,'2021-07-15 23:00:00',NULL,NULL,'2021-07-16 05:49:16','2021-07-16 05:49:16'),(22481,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2021-07-16 05:51:53','2021-07-16 05:51:53'),(22482,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2021-07-16 05:52:30','2021-07-16 05:52:30'),(22489,5,NULL,5,17887,'2021-05-26 01:45:00',NULL,NULL,'2021-07-16 05:54:32','2021-07-16 05:54:32'),(22502,5,NULL,5,17887,'2021-05-26 01:40:00',NULL,NULL,'2021-07-16 05:59:13','2021-07-16 05:59:13'),(22513,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2021-07-16 06:00:44','2021-07-16 06:00:44'),(22514,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2021-07-16 06:01:47','2021-07-16 06:01:47'),(22522,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2021-07-16 06:04:48','2021-07-16 06:04:48'),(22524,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2021-07-16 06:05:41','2021-07-16 06:05:41'),(22526,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2021-07-16 06:07:33','2021-07-16 06:07:33'),(22528,5,NULL,5,17887,'2021-05-26 01:40:00',NULL,NULL,'2021-07-16 06:18:20','2021-07-16 06:18:20'),(22530,5,NULL,5,17887,'2021-05-26 01:40:00',NULL,NULL,'2021-07-16 07:15:35','2021-07-16 07:15:35'),(22532,5,NULL,5,1,'2021-07-16 03:13:00',NULL,NULL,'2021-07-16 07:23:19','2021-07-16 07:23:19'),(22534,5,NULL,5,1,'2021-07-16 03:13:00',NULL,NULL,'2021-07-16 10:25:14','2021-07-16 10:25:14'),(22535,5,NULL,5,1,'2021-07-16 03:13:00',NULL,NULL,'2021-07-16 10:26:43','2021-07-16 10:26:43'),(22537,5,NULL,5,1,'2021-07-16 03:13:00',NULL,NULL,'2021-07-16 10:54:02','2021-07-16 10:54:02'),(22539,5,NULL,5,1,'2021-07-16 03:13:00',NULL,NULL,'2021-07-16 11:00:57','2021-07-16 11:00:57'),(22541,5,NULL,5,1,'2021-07-16 03:13:00',NULL,NULL,'2021-07-16 11:10:03','2021-07-16 11:10:03'),(22542,8,NULL,8,NULL,'2021-06-21 06:24:00',NULL,NULL,'2021-07-20 03:44:03','2021-07-20 03:44:03'),(27808,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2021-07-21 00:29:49','2021-07-21 00:29:49'),(27809,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2021-07-21 00:49:47','2021-07-21 00:49:47'),(27810,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2021-07-21 01:09:46','2021-07-21 01:09:46'),(27811,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2021-07-21 01:28:46','2021-07-21 01:28:46'),(27812,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2021-07-21 01:48:46','2021-07-21 01:48:46'),(27813,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2021-07-21 02:08:46','2021-07-21 02:08:46'),(27814,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2021-07-21 02:28:46','2021-07-21 02:28:46'),(27815,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2021-07-21 02:34:58','2021-07-21 02:34:58'),(27816,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2021-07-21 02:35:28','2021-07-21 02:35:28'),(27817,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2021-07-21 02:35:58','2021-07-21 02:35:58'),(27818,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2021-07-21 02:36:28','2021-07-21 02:36:28'),(27819,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2021-07-21 02:36:58','2021-07-21 02:36:58'),(27820,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2021-07-21 02:37:30','2021-07-21 02:37:30'),(27821,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2021-07-21 02:38:00','2021-07-21 02:38:00'),(27822,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2021-07-21 02:38:32','2021-07-21 02:38:32'),(27823,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2021-07-21 02:39:02','2021-07-21 02:39:02'),(27824,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2021-07-21 02:40:46','2021-07-21 02:40:46'),(27827,5,NULL,5,1,'2021-07-16 03:13:00',NULL,NULL,'2021-07-21 23:27:44','2021-07-21 23:27:44'),(27854,6,NULL,6,1,'2021-02-15 05:31:00',NULL,NULL,'2021-07-22 05:14:54','2021-07-22 05:14:54'),(27856,6,NULL,6,1,'2020-10-22 23:54:00',NULL,NULL,'2021-07-22 05:16:05','2021-07-22 05:16:05'),(27857,6,NULL,6,1,'2020-10-22 23:54:00',NULL,NULL,'2021-07-22 05:19:49','2021-07-22 05:19:49'),(27859,6,NULL,6,1,'2018-11-14 08:55:00',NULL,NULL,'2021-07-22 05:20:42','2021-07-22 05:20:42'),(27861,6,NULL,6,1,'2018-05-21 07:01:00',NULL,NULL,'2021-07-22 05:30:30','2021-07-22 05:30:30'),(27864,6,NULL,6,1,'2018-04-26 00:39:00',NULL,NULL,'2021-07-22 05:33:33','2021-07-22 05:33:33'),(27866,6,NULL,6,1,'2018-04-16 05:39:00',NULL,NULL,'2021-07-22 05:34:28','2021-07-22 05:34:28'),(27868,6,NULL,6,1,'2018-04-16 05:39:00',NULL,NULL,'2021-07-22 05:35:48','2021-07-22 05:35:48'),(27870,6,NULL,6,1,'2018-03-13 00:54:00',NULL,NULL,'2021-07-22 05:38:16','2021-07-22 05:38:16'),(27873,6,NULL,6,1,'2020-10-22 23:54:00',NULL,NULL,'2021-07-22 05:52:23','2021-07-22 05:52:23'),(27874,6,NULL,6,1,'2018-05-21 07:01:00',NULL,NULL,'2021-07-22 05:55:18','2021-07-22 05:55:18'),(27876,6,NULL,6,1,'2018-05-21 07:01:00',NULL,NULL,'2021-07-22 05:56:43','2021-07-22 05:56:43'),(27878,6,NULL,6,1,'2018-04-26 00:39:00',NULL,NULL,'2021-07-22 05:57:58','2021-07-22 05:57:58'),(27880,6,NULL,6,1,'2020-10-22 23:54:00',NULL,NULL,'2021-07-22 05:59:20','2021-07-22 05:59:20'),(27882,6,NULL,6,1,'2018-03-13 00:54:00',NULL,NULL,'2021-07-22 06:04:40','2021-07-22 06:04:40'),(27884,6,NULL,6,1,'2018-03-13 00:54:00',NULL,NULL,'2021-07-22 06:05:23','2021-07-22 06:05:23'),(27886,6,NULL,6,1,'2018-03-13 00:54:00',NULL,NULL,'2021-07-22 06:07:24','2021-07-22 06:07:24'),(27888,6,NULL,6,1,'2018-04-16 05:39:00',NULL,NULL,'2021-07-22 06:08:55','2021-07-22 06:08:55'),(27889,6,NULL,6,1,'2018-04-16 05:39:00',NULL,NULL,'2021-07-22 06:09:31','2021-07-22 06:09:31'),(27894,6,NULL,6,1,'2018-03-13 00:54:00',NULL,NULL,'2021-07-22 06:21:57','2021-07-22 06:21:57'),(27896,6,NULL,6,1,'2018-11-14 08:55:00',NULL,NULL,'2021-07-22 09:36:18','2021-07-22 09:36:18'),(27898,6,NULL,6,1,'2018-05-21 07:01:00',NULL,NULL,'2021-07-22 09:37:59','2021-07-22 09:37:59'),(27900,6,NULL,6,1,'2018-04-26 00:39:00',NULL,NULL,'2021-07-22 09:39:45','2021-07-22 09:39:45'),(27914,6,NULL,6,1,'2021-02-15 05:31:00',NULL,NULL,'2021-07-22 09:43:45','2021-07-22 09:43:45'),(27926,6,NULL,6,1,'2021-02-15 05:31:00',NULL,NULL,'2021-07-22 23:34:54','2021-07-22 23:34:54'),(27928,6,NULL,6,1,'2020-10-22 23:54:00',NULL,NULL,'2021-07-22 23:36:59','2021-07-22 23:36:59'),(27930,6,NULL,6,1,'2020-10-22 23:54:00',NULL,NULL,'2021-07-22 23:38:56','2021-07-22 23:38:56'),(27948,6,NULL,6,1,'2021-02-15 05:31:00',NULL,NULL,'2021-07-23 00:37:47','2021-07-23 00:37:47'),(27949,6,NULL,6,1,'2020-10-22 23:54:00',NULL,NULL,'2021-07-23 00:38:08','2021-07-23 00:38:08'),(27951,6,NULL,6,1,'2018-11-14 08:55:00',NULL,NULL,'2021-07-23 00:40:50','2021-07-23 00:40:50'),(27952,6,NULL,6,1,'2018-11-14 08:55:00',NULL,NULL,'2021-07-23 00:42:25','2021-07-23 00:42:25'),(27953,6,NULL,6,1,'2018-11-14 08:55:00',NULL,NULL,'2021-07-23 00:42:43','2021-07-23 00:42:43'),(27955,6,NULL,6,1,'2018-05-21 07:01:00',NULL,NULL,'2021-07-23 00:43:48','2021-07-23 00:43:48'),(27957,6,NULL,6,1,'2018-04-26 00:39:00',NULL,NULL,'2021-07-23 00:45:38','2021-07-23 00:45:38'),(27959,6,NULL,6,1,'2018-04-16 05:39:00',NULL,NULL,'2021-07-23 00:47:31','2021-07-23 00:47:31'),(27961,6,NULL,6,1,'2018-03-13 00:54:00',NULL,NULL,'2021-07-23 00:49:19','2021-07-23 00:49:19'),(27963,6,NULL,6,1,'2017-10-06 06:10:00',NULL,NULL,'2021-07-23 00:58:41','2021-07-23 00:58:41'),(27965,6,NULL,6,1,'2017-06-15 03:09:00',NULL,NULL,'2021-07-23 01:06:04','2021-07-23 01:06:04'),(27967,6,NULL,6,1,'2017-05-10 05:19:00',NULL,NULL,'2021-07-23 01:08:24','2021-07-23 01:08:24'),(27969,6,NULL,6,1,'2017-05-10 05:19:00',NULL,NULL,'2021-07-23 01:10:23','2021-07-23 01:10:23'),(27971,6,NULL,6,1,'2017-05-10 05:18:00',NULL,NULL,'2021-07-23 01:13:29','2021-07-23 01:13:29'),(27973,6,NULL,6,1,'2017-05-10 05:16:00',NULL,NULL,'2021-07-23 01:16:03','2021-07-23 01:16:03'),(27975,6,NULL,6,1,'2017-03-16 05:48:00',NULL,NULL,'2021-07-23 01:17:51','2021-07-23 01:17:51'),(27978,6,NULL,6,1,'2017-03-16 05:47:00',NULL,NULL,'2021-07-23 01:24:26','2021-07-23 01:24:26'),(27980,6,NULL,6,1,'2017-03-16 05:47:00',NULL,NULL,'2021-07-23 01:36:15','2021-07-23 01:36:15'),(27982,6,NULL,6,1,'2017-03-16 05:45:00',NULL,NULL,'2021-07-23 01:41:34','2021-07-23 01:41:34'),(27984,6,NULL,6,1,'2015-03-07 02:20:00',NULL,NULL,'2021-07-23 01:43:48','2021-07-23 01:43:48'),(27986,6,NULL,6,1,'2015-03-05 06:45:00',NULL,NULL,'2021-07-23 01:47:24','2021-07-23 01:47:24'),(27988,6,NULL,6,1,'2014-03-04 07:00:00',NULL,NULL,'2021-07-23 01:49:44','2021-07-23 01:49:44'),(27990,6,NULL,6,1,'2014-02-17 00:29:00',NULL,NULL,'2021-07-23 01:52:04','2021-07-23 01:52:04'),(27992,6,NULL,6,1,'2013-12-04 01:59:00',NULL,NULL,'2021-07-23 02:57:11','2021-07-23 02:57:11'),(27994,6,NULL,6,1,'2013-11-19 02:27:00',NULL,NULL,'2021-07-23 02:59:41','2021-07-23 02:59:41'),(27996,6,NULL,6,1,'2013-11-06 23:54:00',NULL,NULL,'2021-07-23 03:01:34','2021-07-23 03:01:34'),(27998,6,NULL,6,1,'2013-10-07 23:24:00',NULL,NULL,'2021-07-23 03:04:26','2021-07-23 03:04:26'),(28000,6,NULL,6,1,'2013-10-07 23:24:00',NULL,NULL,'2021-07-23 03:06:02','2021-07-23 03:06:02'),(28002,6,NULL,6,1,'2013-10-02 03:02:00',NULL,NULL,'2021-07-23 03:08:45','2021-07-23 03:08:45'),(28004,6,NULL,6,1,'2013-09-13 05:06:00',NULL,NULL,'2021-07-23 03:12:29','2021-07-23 03:12:29'),(28006,6,NULL,6,1,'2013-08-20 00:58:00',NULL,NULL,'2021-07-23 03:13:18','2021-07-23 03:13:18'),(28008,6,NULL,6,1,'2013-08-08 05:42:00',NULL,NULL,'2021-07-23 03:14:01','2021-07-23 03:14:01'),(28010,6,NULL,6,1,'2013-08-20 00:58:00',NULL,NULL,'2021-07-23 03:14:11','2021-07-23 03:14:11'),(28012,6,NULL,6,1,'2013-07-23 03:24:00',NULL,NULL,'2021-07-23 03:14:59','2021-07-23 03:14:59'),(28014,6,NULL,6,1,'2013-07-04 02:55:00',NULL,NULL,'2021-07-23 03:19:27','2021-07-23 03:19:27'),(28016,6,NULL,6,1,'2013-06-20 02:51:00',NULL,NULL,'2021-07-23 03:20:39','2021-07-23 03:20:39'),(28018,6,NULL,6,1,'2013-06-04 01:16:00',NULL,NULL,'2021-07-23 03:22:12','2021-07-23 03:22:12'),(28020,6,NULL,6,1,'2013-05-21 01:57:00',NULL,NULL,'2021-07-23 03:26:01','2021-07-23 03:26:01'),(28022,6,NULL,6,1,'2012-12-20 05:04:00',NULL,NULL,'2021-07-23 03:26:58','2021-07-23 03:26:58'),(28024,6,NULL,6,1,'2012-11-21 05:25:00',NULL,NULL,'2021-07-23 03:27:34','2021-07-23 03:27:34'),(28026,6,NULL,6,1,'2012-11-07 06:18:00',NULL,NULL,'2021-07-23 03:30:27','2021-07-23 03:30:27'),(28028,6,NULL,6,1,'2012-10-16 01:09:00',NULL,NULL,'2021-07-23 03:32:57','2021-07-23 03:32:57'),(28030,6,NULL,6,1,'2012-08-14 00:42:00',NULL,NULL,'2021-07-23 03:34:21','2021-07-23 03:34:21'),(28032,6,NULL,6,1,'2012-05-23 04:20:00',NULL,NULL,'2021-07-23 03:34:56','2021-07-23 03:34:56'),(28040,6,NULL,6,17887,'2021-07-23 05:37:00',NULL,NULL,'2021-07-23 05:37:29','2021-07-23 05:37:29'),(28042,6,NULL,6,17887,'2021-07-23 05:37:00',NULL,NULL,'2021-07-23 06:18:47','2021-07-23 06:18:47'),(28043,6,NULL,6,1,'2012-05-23 04:20:00',NULL,NULL,'2021-07-23 06:19:14','2021-07-23 06:19:14'),(28044,6,NULL,6,1,'2012-08-14 00:42:00',NULL,NULL,'2021-07-23 06:19:14','2021-07-23 06:19:14'),(28045,6,NULL,6,1,'2012-10-16 01:09:00',NULL,NULL,'2021-07-23 06:19:14','2021-07-23 06:19:14'),(28046,6,NULL,6,1,'2012-11-07 06:18:00',NULL,NULL,'2021-07-23 06:19:15','2021-07-23 06:19:15'),(28047,6,NULL,6,1,'2012-11-21 05:25:00',NULL,NULL,'2021-07-23 06:19:15','2021-07-23 06:19:15'),(28048,6,NULL,6,1,'2012-12-20 05:04:00',NULL,NULL,'2021-07-23 06:19:15','2021-07-23 06:19:15'),(28049,6,NULL,6,1,'2013-06-04 01:16:00',NULL,NULL,'2021-07-23 06:19:15','2021-07-23 06:19:15'),(28050,6,NULL,6,1,'2013-05-21 01:57:00',NULL,NULL,'2021-07-23 06:19:15','2021-07-23 06:19:15'),(28051,6,NULL,6,1,'2013-06-20 02:51:00',NULL,NULL,'2021-07-23 06:19:15','2021-07-23 06:19:15'),(28052,6,NULL,6,1,'2013-07-04 02:55:00',NULL,NULL,'2021-07-23 06:19:16','2021-07-23 06:19:16'),(28053,6,NULL,6,1,'2013-07-23 03:24:00',NULL,NULL,'2021-07-23 06:19:16','2021-07-23 06:19:16'),(28054,6,NULL,6,1,'2013-08-08 05:42:00',NULL,NULL,'2021-07-23 06:19:16','2021-07-23 06:19:16'),(28055,6,NULL,6,1,'2013-10-02 03:02:00',NULL,NULL,'2021-07-23 06:19:16','2021-07-23 06:19:16'),(28056,6,NULL,6,1,'2013-08-20 00:58:00',NULL,NULL,'2021-07-23 06:19:16','2021-07-23 06:19:16'),(28057,6,NULL,6,1,'2013-09-13 05:06:00',NULL,NULL,'2021-07-23 06:19:16','2021-07-23 06:19:16'),(28058,6,NULL,6,1,'2013-10-07 23:24:00',NULL,NULL,'2021-07-23 06:19:17','2021-07-23 06:19:17'),(28059,6,NULL,6,1,'2013-11-06 23:54:00',NULL,NULL,'2021-07-23 06:19:17','2021-07-23 06:19:17'),(28060,6,NULL,6,1,'2013-12-04 01:59:00',NULL,NULL,'2021-07-23 06:19:17','2021-07-23 06:19:17'),(28061,6,NULL,6,1,'2013-11-19 02:27:00',NULL,NULL,'2021-07-23 06:19:17','2021-07-23 06:19:17'),(28062,6,NULL,6,1,'2014-02-17 00:29:00',NULL,NULL,'2021-07-23 06:19:17','2021-07-23 06:19:17'),(28063,6,NULL,6,1,'2014-03-04 07:00:00',NULL,NULL,'2021-07-23 06:19:17','2021-07-23 06:19:17'),(28064,6,NULL,6,1,'2015-03-05 06:45:00',NULL,NULL,'2021-07-23 06:19:18','2021-07-23 06:19:18'),(28065,6,NULL,6,1,'2015-03-07 02:20:00',NULL,NULL,'2021-07-23 06:19:18','2021-07-23 06:19:18'),(28066,6,NULL,6,1,'2017-03-16 05:45:00',NULL,NULL,'2021-07-23 06:19:18','2021-07-23 06:19:18'),(28067,6,NULL,6,1,'2017-03-16 05:47:00',NULL,NULL,'2021-07-23 06:19:18','2021-07-23 06:19:18'),(28068,6,NULL,6,1,'2017-03-16 05:48:00',NULL,NULL,'2021-07-23 06:19:18','2021-07-23 06:19:18'),(28069,6,NULL,6,1,'2017-05-10 05:16:00',NULL,NULL,'2021-07-23 06:19:19','2021-07-23 06:19:19'),(28070,6,NULL,6,1,'2017-05-10 05:18:00',NULL,NULL,'2021-07-23 06:19:19','2021-07-23 06:19:19'),(28071,6,NULL,6,1,'2017-05-10 05:19:00',NULL,NULL,'2021-07-23 06:19:19','2021-07-23 06:19:19'),(28072,6,NULL,6,1,'2017-06-15 03:09:00',NULL,NULL,'2021-07-23 06:19:19','2021-07-23 06:19:19'),(28073,6,NULL,6,1,'2017-10-06 06:10:00',NULL,NULL,'2021-07-23 06:19:19','2021-07-23 06:19:19'),(28074,6,NULL,6,1,'2018-03-13 00:54:00',NULL,NULL,'2021-07-23 06:19:20','2021-07-23 06:19:20'),(28075,6,NULL,6,1,'2018-04-16 05:39:00',NULL,NULL,'2021-07-23 06:19:20','2021-07-23 06:19:20'),(28076,6,NULL,6,1,'2018-04-26 00:39:00',NULL,NULL,'2021-07-23 06:19:20','2021-07-23 06:19:20'),(28077,6,NULL,6,1,'2018-05-21 07:01:00',NULL,NULL,'2021-07-23 06:19:20','2021-07-23 06:19:20'),(28078,6,NULL,6,1,'2018-11-14 08:55:00',NULL,NULL,'2021-07-23 06:19:20','2021-07-23 06:19:20'),(28079,6,NULL,6,1,'2020-10-22 23:54:00',NULL,NULL,'2021-07-23 06:19:21','2021-07-23 06:19:21'),(28080,6,NULL,6,1,'2021-02-15 05:31:00',NULL,NULL,'2021-07-23 06:19:21','2021-07-23 06:19:21'),(28082,6,NULL,6,17934,'2021-02-15 05:31:00',NULL,NULL,'2021-07-23 06:26:23','2021-07-23 06:26:23'),(28084,6,NULL,6,17934,'2021-02-15 05:31:00',NULL,NULL,'2021-07-23 06:27:18','2021-07-23 06:27:18'),(28085,6,NULL,6,17934,'2021-02-15 05:31:00',NULL,NULL,'2021-07-23 06:28:16','2021-07-23 06:28:16'),(28087,6,NULL,6,17954,'2018-11-14 08:55:00',NULL,NULL,'2021-07-23 06:33:59','2021-07-23 06:33:59'),(28089,6,NULL,6,17956,'2018-04-16 05:39:00',NULL,NULL,'2021-07-23 06:47:17','2021-07-23 06:47:17'),(28091,6,NULL,6,1,'2018-03-13 00:54:00',NULL,NULL,'2021-07-23 06:49:43','2021-07-23 06:49:43'),(28095,6,NULL,6,1,'2018-04-26 00:39:00',NULL,NULL,'2021-07-23 06:55:08','2021-07-23 06:55:08'),(28098,6,NULL,6,1,'2018-04-26 00:39:00',NULL,NULL,'2021-07-23 06:57:34','2021-07-23 06:57:34'),(28099,6,NULL,6,1,'2018-03-13 00:54:00',NULL,NULL,'2021-07-23 06:57:53','2021-07-23 06:57:53'),(28102,6,NULL,6,17956,'2017-10-06 06:10:00',NULL,NULL,'2021-07-23 07:26:56','2021-07-23 07:26:56'),(30410,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2021-07-26 03:59:06','2021-07-26 03:59:06'),(30411,6,NULL,6,17887,'2021-07-23 05:37:00',NULL,NULL,'2021-07-30 01:23:04','2021-07-30 01:23:04'),(30413,6,NULL,6,17954,'2018-11-14 08:55:00',NULL,NULL,'2021-07-30 01:25:54','2021-07-30 01:25:54'),(30415,6,NULL,6,17954,'2018-04-26 00:39:00',NULL,NULL,'2021-07-30 01:29:29','2021-07-30 01:29:29'),(30417,6,NULL,6,1,'2020-10-22 23:54:00',NULL,NULL,'2021-07-30 01:43:13','2021-07-30 01:43:13'),(30418,6,NULL,6,1,'2020-10-22 23:54:00',NULL,NULL,'2021-07-30 01:43:29','2021-07-30 01:43:29'),(30419,6,NULL,6,1,'2018-03-13 00:54:00',NULL,NULL,'2021-07-30 01:44:03','2021-07-30 01:44:03'),(30420,6,NULL,6,1,'2020-10-22 23:54:00',NULL,NULL,'2021-07-30 01:44:40','2021-07-30 01:44:40'),(30422,6,NULL,6,1,'2018-05-21 07:01:00',NULL,NULL,'2021-07-30 02:03:25','2021-07-30 02:03:25'),(30423,6,NULL,6,1,'2018-05-21 07:01:00',NULL,NULL,'2021-07-30 02:03:43','2021-07-30 02:03:43'),(30425,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2021-08-06 00:26:34','2021-08-06 00:26:34'),(30427,5,NULL,5,17887,'2022-01-20 06:46:00',NULL,NULL,'2021-08-06 06:46:16','2022-08-12 03:45:45'),(30429,5,NULL,5,17887,'2021-08-06 06:46:00',NULL,NULL,'2021-08-06 07:05:52','2021-08-06 07:05:52'),(30431,5,NULL,5,17887,'2021-08-06 06:46:00',NULL,NULL,'2021-08-06 07:11:15','2021-08-06 07:11:15'),(30442,5,NULL,5,17887,'2021-08-06 06:46:00',NULL,NULL,'2021-08-12 03:41:27','2021-08-12 03:41:27'),(30450,5,NULL,5,17887,'2021-08-06 06:46:00',NULL,NULL,'2021-08-12 04:01:48','2021-08-12 04:01:48'),(30452,5,NULL,5,17887,'2021-08-06 06:46:00',NULL,NULL,'2021-08-12 04:42:21','2021-08-12 04:42:21'),(30454,6,NULL,6,17954,'2018-11-14 08:55:00',NULL,NULL,'2021-08-13 04:45:47','2021-08-13 04:45:47'),(30456,6,NULL,6,17954,'2018-11-14 08:55:00',NULL,NULL,'2021-08-13 04:46:40','2021-08-13 04:46:40'),(30458,6,NULL,6,17956,'2018-04-16 05:39:00',NULL,NULL,'2021-08-13 04:53:52','2021-08-13 04:53:52'),(30460,6,NULL,6,17956,'2018-04-16 05:39:00',NULL,NULL,'2021-08-13 04:54:39','2021-08-13 04:54:39'),(30462,6,NULL,6,17956,'2017-10-06 06:10:00',NULL,NULL,'2021-08-13 04:56:17','2021-08-13 04:56:17'),(30464,6,NULL,6,17956,'2017-10-06 06:10:00',NULL,NULL,'2021-08-13 04:56:59','2021-08-13 04:56:59'),(30466,6,NULL,6,17956,'2017-10-06 06:10:00',NULL,NULL,'2021-08-13 04:57:53','2021-08-13 04:57:53'),(30468,6,NULL,6,1,'2018-05-21 07:01:00',NULL,NULL,'2021-08-13 06:46:55','2021-08-13 06:46:55'),(30470,6,NULL,6,1,'2018-05-21 07:01:00',NULL,NULL,'2021-08-13 06:47:41','2021-08-13 06:47:41'),(38101,5,NULL,5,17887,'2021-08-06 06:46:00',NULL,NULL,'2021-08-26 23:19:36','2021-08-26 23:19:36'),(38103,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2021-08-26 23:20:15','2021-08-26 23:20:15'),(38104,5,NULL,5,1,'2021-07-16 03:13:00',NULL,NULL,'2021-08-26 23:20:47','2021-08-26 23:20:47'),(38106,5,NULL,5,17887,'2021-07-15 23:00:00',NULL,NULL,'2021-08-26 23:21:32','2021-08-26 23:21:32'),(38108,5,NULL,5,17887,'2021-07-15 23:00:00',NULL,NULL,'2021-08-26 23:22:04','2021-08-26 23:22:04'),(38110,5,NULL,5,17887,'2021-07-15 23:00:00',NULL,NULL,'2021-08-26 23:22:51','2021-08-26 23:22:51'),(38112,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2021-08-26 23:23:27','2021-08-26 23:23:27'),(38114,5,NULL,5,17887,'2021-05-26 01:45:00',NULL,NULL,'2021-08-26 23:24:05','2021-08-26 23:24:05'),(38116,5,NULL,5,17887,'2021-05-26 01:40:00',NULL,NULL,'2021-08-26 23:24:34','2021-08-26 23:24:34'),(38118,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2021-08-26 23:25:22','2021-08-26 23:25:22'),(38120,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2021-08-26 23:27:01','2021-08-26 23:27:01'),(38121,5,NULL,5,1,'2021-08-26 23:30:00',NULL,NULL,'2021-08-26 23:30:56','2021-08-26 23:30:56'),(38124,5,NULL,5,1,'2021-08-26 23:30:00',NULL,NULL,'2021-08-26 23:33:16','2021-08-26 23:33:16'),(38127,5,NULL,5,1,'2021-08-26 23:30:00',NULL,NULL,'2021-08-26 23:34:11','2021-08-26 23:34:11'),(38132,5,NULL,5,1,'2021-08-26 23:30:00',NULL,NULL,'2021-08-26 23:50:11','2021-08-26 23:50:11'),(38135,5,NULL,5,1,'2021-08-26 23:30:00',NULL,NULL,'2021-08-27 00:05:53','2021-08-27 00:05:53'),(38155,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2021-08-27 05:35:28','2021-08-27 05:35:28'),(38162,5,NULL,5,17887,'2021-08-06 06:46:00',NULL,NULL,'2021-09-03 00:15:59','2021-09-03 00:15:59'),(38164,5,NULL,5,1,'2021-07-16 03:13:00',NULL,NULL,'2021-09-03 00:43:42','2021-09-03 00:43:42'),(38166,5,NULL,5,17887,'2021-07-15 23:00:00',NULL,NULL,'2021-09-03 00:54:26','2021-09-03 00:54:26'),(38167,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2021-09-03 01:21:27','2021-09-03 01:21:27'),(38168,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2021-09-03 01:21:28','2021-09-03 01:21:28'),(38169,5,NULL,5,17887,'2021-05-26 01:40:00',NULL,NULL,'2021-09-03 01:21:28','2021-09-03 01:21:28'),(38170,5,NULL,5,17887,'2021-05-26 01:45:00',NULL,NULL,'2021-09-03 01:21:29','2021-09-03 01:21:29'),(38171,5,NULL,5,17887,'2021-07-15 23:00:00',NULL,NULL,'2021-09-03 01:21:29','2021-09-03 01:21:29'),(38172,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2021-09-03 01:21:30','2021-09-03 01:21:30'),(38173,5,NULL,5,17887,'2021-07-15 23:00:00',NULL,NULL,'2021-09-03 01:21:30','2021-09-03 01:21:30'),(38174,5,NULL,5,1,'2021-08-26 23:30:00',NULL,NULL,'2021-09-03 01:21:31','2021-09-03 01:21:31'),(38176,5,NULL,5,17887,'2021-07-15 23:00:00',NULL,NULL,'2021-09-03 01:34:27','2021-09-03 01:34:27'),(38178,5,NULL,5,17887,'2021-07-15 23:00:00',NULL,NULL,'2021-09-03 01:35:46','2021-09-03 01:35:46'),(38179,5,NULL,5,17887,'2021-07-15 23:00:00',NULL,NULL,'2021-09-03 01:35:54','2021-09-03 01:35:54'),(38181,5,NULL,5,17887,'2021-07-15 23:00:00',NULL,NULL,'2021-09-03 01:52:31','2021-09-03 01:52:31'),(38182,5,NULL,5,17887,'2021-07-15 23:00:00',NULL,NULL,'2021-09-03 01:52:38','2021-09-03 01:52:38'),(38184,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2021-09-03 02:00:34','2021-09-03 02:00:34'),(38186,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2021-09-03 02:00:54','2021-09-03 02:00:54'),(38187,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2021-09-03 02:01:01','2021-09-03 02:01:01'),(38190,5,NULL,5,17887,'2021-05-26 01:40:00',NULL,NULL,'2021-09-03 02:08:55','2021-09-03 02:08:55'),(38192,5,NULL,5,17887,'2021-05-26 01:40:00',NULL,NULL,'2021-09-03 03:29:11','2021-09-03 03:29:11'),(38193,5,NULL,5,17887,'2021-05-26 01:40:00',NULL,NULL,'2021-09-03 03:29:28','2021-09-03 03:29:28'),(38195,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2021-09-03 04:00:15','2021-09-03 04:00:15'),(38196,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2021-09-03 04:00:26','2021-09-03 04:00:26'),(39378,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2021-09-03 05:07:10','2021-09-03 05:07:10'),(39501,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2021-09-03 05:07:32','2021-09-03 05:07:32'),(40453,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2021-09-03 05:17:17','2021-09-03 05:17:17'),(40493,5,NULL,5,1,'2021-08-26 23:30:00',NULL,NULL,'2021-09-03 05:40:34','2021-09-03 05:40:34'),(40494,5,NULL,5,1,'2021-08-26 23:30:00',NULL,NULL,'2021-09-03 05:40:44','2021-09-03 05:40:44'),(40496,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2021-09-03 05:49:35','2021-09-03 05:49:35'),(40498,5,NULL,5,17887,'2021-05-26 03:32:00',NULL,NULL,'2021-09-03 05:55:52','2021-09-03 05:55:52'),(40500,5,NULL,5,17887,'2021-05-26 03:32:00',NULL,NULL,'2021-09-03 05:58:48','2021-09-03 05:58:48'),(40501,5,NULL,5,17887,'2021-05-26 03:39:00',NULL,NULL,'2021-09-03 06:04:36','2021-09-03 06:04:36'),(40502,5,NULL,5,17887,'2021-05-26 03:39:00',NULL,NULL,'2021-09-03 06:10:03','2021-09-03 06:10:03'),(40503,5,NULL,5,17887,'2021-05-26 03:32:00',NULL,NULL,'2021-09-03 06:10:44','2021-09-03 06:10:44'),(40504,5,NULL,5,17887,'2022-01-19 06:26:00',NULL,NULL,'2021-09-03 06:26:25','2022-08-12 03:46:35'),(40505,5,NULL,5,17887,'2021-09-03 06:26:00',NULL,NULL,'2021-09-03 06:36:49','2021-09-03 06:36:49'),(40506,5,NULL,5,17887,'2021-09-03 06:50:00',NULL,NULL,'2021-09-03 06:50:20','2021-09-03 06:50:20'),(40507,5,NULL,5,17887,'2021-09-03 06:50:00',NULL,NULL,'2021-09-03 07:15:30','2021-09-03 07:15:30'),(44834,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2021-09-08 04:16:32','2021-09-08 04:16:32'),(44837,5,NULL,5,17887,'2021-09-10 01:03:00',NULL,NULL,'2021-09-10 01:03:53','2021-09-10 01:03:53'),(44838,5,NULL,5,17887,'2021-09-10 01:03:00',NULL,NULL,'2021-09-10 01:16:41','2021-09-10 01:16:41'),(44840,5,NULL,5,17887,'2021-05-26 03:32:00',NULL,NULL,'2021-09-10 01:18:35','2021-09-10 01:18:35'),(44841,5,NULL,5,17887,'2021-09-10 01:18:00',NULL,NULL,'2021-09-10 01:18:39','2021-09-10 01:18:39'),(44842,5,NULL,5,17887,'2021-09-10 01:18:00',NULL,NULL,'2021-09-10 01:21:43','2021-09-10 01:21:43'),(44843,5,NULL,5,17887,'2021-09-10 01:24:00',NULL,NULL,'2021-09-10 01:24:02','2021-09-10 01:24:02'),(44844,5,NULL,5,17887,'2021-09-10 01:24:00',NULL,NULL,'2021-09-10 01:28:12','2021-09-10 01:28:12'),(44845,5,NULL,5,17887,'2021-09-10 01:29:00',NULL,NULL,'2021-09-10 01:29:05','2021-09-10 01:29:05'),(44846,5,NULL,5,17887,'2021-09-10 01:29:00',NULL,NULL,'2021-09-10 01:37:29','2021-09-10 01:37:29'),(44848,5,NULL,5,17887,'2021-08-06 06:46:00',NULL,NULL,'2021-09-10 01:37:37','2021-09-10 01:37:37'),(44849,5,NULL,5,17887,'2021-09-10 01:37:00',NULL,NULL,'2021-09-10 01:37:38','2021-09-10 01:37:38'),(44852,5,NULL,5,17887,'2021-07-15 23:00:00',NULL,NULL,'2021-09-10 01:41:20','2021-09-10 01:41:20'),(44854,5,NULL,5,17887,'2021-07-15 23:00:00',NULL,NULL,'2021-09-10 01:43:09','2021-09-10 01:43:09'),(44856,5,NULL,5,17887,'2021-08-06 06:46:00',NULL,NULL,'2021-09-10 01:43:47','2021-09-10 01:43:47'),(44858,5,NULL,5,17887,'2021-08-06 06:46:00',NULL,NULL,'2021-09-10 01:45:52','2021-09-10 01:45:52'),(44859,5,NULL,5,17887,'2021-09-10 01:37:00',NULL,NULL,'2021-09-10 01:46:57','2021-09-10 01:46:57'),(44861,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2021-09-10 01:47:53','2021-09-10 01:47:53'),(44862,5,NULL,5,17887,'2021-09-10 01:47:00',NULL,NULL,'2021-09-10 01:47:59','2021-09-10 01:47:59'),(44866,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2021-09-10 01:50:38','2021-09-10 01:50:38'),(44869,5,NULL,5,17887,'2021-09-10 01:47:00',NULL,NULL,'2021-09-10 01:52:46','2021-09-10 01:52:46'),(44870,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2021-09-10 01:53:07','2021-09-10 01:53:07'),(44872,5,NULL,5,17887,'2021-09-03 06:26:00',NULL,NULL,'2021-09-10 01:54:33','2021-09-10 01:54:33'),(44877,5,NULL,5,17887,'2021-09-10 01:03:00',NULL,NULL,'2021-09-10 01:57:45','2021-09-10 01:57:45'),(44879,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-09-10 01:58:36','2021-09-10 01:58:36'),(44880,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-09-10 01:58:36','2021-09-10 01:58:36'),(44881,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-09-10 02:00:40','2021-09-10 02:00:40'),(44972,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-09-10 02:02:41','2021-09-10 02:02:41'),(44978,5,NULL,5,1,'2021-05-14 06:27:00',NULL,NULL,'2021-09-10 02:05:36','2021-09-10 02:05:36'),(44980,5,NULL,5,1,'2021-05-14 06:27:00',NULL,NULL,'2021-09-10 02:05:54','2021-09-10 02:05:54'),(44981,5,NULL,5,17887,'2020-11-04 02:07:00',NULL,NULL,'2021-09-10 02:07:38','2022-08-12 03:45:04'),(44982,5,NULL,5,17887,'2021-09-10 02:07:00',NULL,NULL,'2021-09-10 02:10:02','2021-09-10 02:10:02'),(44983,5,NULL,5,17887,'2021-09-10 02:10:00',NULL,NULL,'2021-09-10 02:10:22','2021-09-10 02:10:22'),(44984,5,NULL,5,17887,'2021-09-10 02:10:00',NULL,NULL,'2021-09-10 02:13:28','2021-09-10 02:13:28'),(44985,5,NULL,5,17887,'2021-09-10 02:13:00',NULL,NULL,'2021-09-10 02:13:46','2021-09-10 02:13:46'),(44986,5,NULL,5,17887,'2021-09-10 02:13:00',NULL,NULL,'2021-09-10 02:15:58','2021-09-10 02:15:58'),(44987,5,NULL,5,17887,'2021-09-10 02:18:00',NULL,NULL,'2021-09-10 02:18:13','2021-09-10 02:18:13'),(44989,5,NULL,5,17887,'2021-09-03 06:26:00',NULL,NULL,'2021-09-10 02:22:58','2021-09-10 02:22:58'),(44996,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-09-10 02:23:39','2021-09-10 02:23:39'),(45008,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-09-10 02:25:54','2021-09-10 02:25:54'),(45020,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-09-10 02:26:16','2021-09-10 02:26:16'),(45032,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-09-10 02:28:15','2021-09-10 02:28:15'),(45044,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-09-10 02:28:45','2021-09-10 02:28:45'),(45056,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-09-10 02:30:52','2021-09-10 02:30:52'),(45068,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-09-10 02:31:08','2021-09-10 02:31:08'),(45080,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-09-10 02:31:42','2021-09-10 02:31:42'),(45092,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-09-10 02:32:15','2021-09-10 02:32:15'),(45104,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-09-10 02:32:28','2021-09-10 02:32:28'),(45116,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-09-10 02:33:18','2021-09-10 02:33:18'),(45128,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-09-10 02:34:41','2021-09-10 02:34:41'),(45140,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-09-10 02:35:45','2021-09-10 02:35:45'),(45152,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-09-10 02:36:19','2021-09-10 02:36:19'),(45164,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-09-10 02:36:39','2021-09-10 02:36:39'),(45176,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-09-10 03:08:20','2021-09-10 03:08:20'),(45188,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-09-10 03:10:52','2021-09-10 03:10:52'),(45200,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-09-10 03:11:43','2021-09-10 03:11:43'),(45207,5,NULL,5,1,'2021-08-26 23:30:00',NULL,NULL,'2021-09-10 03:14:48','2021-09-10 03:14:48'),(45211,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2021-09-10 03:57:09','2021-09-10 03:57:09'),(45212,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2021-09-10 03:57:31','2021-09-10 03:57:31'),(45213,5,NULL,5,17887,'2021-09-10 02:18:00',NULL,NULL,'2021-09-10 05:09:45','2021-09-10 05:09:45'),(45214,5,NULL,5,17887,'2021-09-10 05:19:00',NULL,NULL,'2021-09-10 05:19:18','2021-09-10 05:19:18'),(45215,5,NULL,5,17887,'2021-09-10 05:19:00',NULL,NULL,'2021-09-10 05:27:40','2021-09-10 05:27:40'),(45216,5,NULL,5,17887,'2021-09-10 05:34:00',NULL,NULL,'2021-09-10 05:34:09','2021-09-10 05:34:09'),(45217,5,NULL,5,17887,'2021-09-10 05:34:00',NULL,NULL,'2021-09-10 05:46:16','2021-09-10 05:46:16'),(45218,5,NULL,5,17887,'2021-09-10 05:50:00',NULL,NULL,'2021-09-10 05:50:12','2021-09-10 05:50:12'),(45219,5,NULL,5,17887,'2021-09-10 05:50:00',NULL,NULL,'2021-09-10 06:01:58','2021-09-10 06:01:58'),(45220,5,NULL,5,17887,'2021-09-10 06:02:00',NULL,NULL,'2021-09-10 06:02:22','2021-09-10 06:02:22'),(45221,5,NULL,5,17887,'2021-09-10 06:02:00',NULL,NULL,'2021-09-10 06:04:48','2021-09-10 06:04:48'),(45222,5,NULL,5,17887,'2021-09-10 06:06:00',NULL,NULL,'2021-09-10 06:06:32','2021-09-10 06:06:32'),(45227,5,NULL,5,17887,'2021-09-10 06:06:00',NULL,NULL,'2021-09-10 06:13:14','2021-09-10 06:13:14'),(45229,5,NULL,5,17887,'2021-05-26 01:45:00',NULL,NULL,'2021-09-10 07:00:56','2021-09-10 07:00:56'),(45230,5,NULL,5,17887,'2021-05-26 01:45:00',NULL,NULL,'2021-09-10 07:01:05','2021-09-10 07:01:05'),(45232,5,NULL,5,17887,'2021-09-03 06:26:00',NULL,NULL,'2021-09-10 07:10:55','2021-09-10 07:10:55'),(45234,5,NULL,5,1,'2021-07-16 03:13:00',NULL,NULL,'2021-09-10 07:11:44','2021-09-10 07:11:44'),(45250,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-09-10 07:17:03','2021-09-10 07:17:03'),(45262,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-09-10 07:17:17','2021-09-10 07:17:17'),(45274,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-09-10 07:18:35','2021-09-10 07:18:35'),(45286,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-09-10 07:18:53','2021-09-10 07:18:53'),(45293,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2021-09-10 07:19:20','2021-09-10 07:19:20'),(45295,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2021-09-10 07:20:39','2021-09-10 07:20:39'),(45297,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2021-09-10 07:22:30','2021-09-10 07:22:30'),(45298,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2021-09-13 05:02:27','2021-09-13 05:02:27'),(45309,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-09-13 22:24:13','2021-09-13 22:24:13'),(45324,5,NULL,5,17887,'2021-05-26 01:45:00',NULL,NULL,'2021-09-14 01:25:34','2021-09-14 01:25:34'),(45326,5,NULL,5,17887,'2021-05-26 03:32:00',NULL,NULL,'2021-09-14 01:27:58','2021-09-14 01:27:58'),(45327,5,NULL,5,17887,'2021-09-03 06:26:00',NULL,NULL,'2021-09-14 01:28:52','2021-09-14 01:28:52'),(45331,5,NULL,5,17887,'2021-09-03 06:50:00',NULL,NULL,'2021-09-14 04:03:09','2021-09-14 04:03:09'),(45334,5,NULL,5,17887,'2021-09-03 06:50:00',NULL,NULL,'2021-09-14 04:09:15','2021-09-14 04:09:15'),(45342,5,NULL,5,17887,'2021-09-10 01:03:00',NULL,NULL,'2021-09-14 07:26:29','2021-09-14 07:26:29'),(45346,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-15 06:39:59','2021-09-15 06:39:59'),(47633,5,NULL,5,17887,'2021-09-10 01:03:00',NULL,NULL,'2021-09-16 01:31:06','2021-09-16 01:31:06'),(47644,5,NULL,5,1,'2021-05-14 06:27:00',NULL,NULL,'2021-09-16 23:47:19','2021-09-16 23:47:19'),(47646,5,NULL,5,1,'2021-05-14 06:27:00',NULL,NULL,'2021-09-16 23:51:52','2021-09-16 23:51:52'),(47648,5,NULL,5,17887,'2021-09-03 06:50:00',NULL,NULL,'2021-09-17 01:17:20','2021-09-17 01:17:20'),(47650,5,NULL,5,17887,'2021-09-03 06:50:00',NULL,NULL,'2021-09-17 02:22:50','2021-09-17 02:22:50'),(47652,5,NULL,5,17887,'2021-05-26 03:32:00',NULL,NULL,'2021-09-17 04:07:32','2021-09-17 04:07:32'),(47654,5,NULL,5,17887,'2021-05-26 03:39:00',NULL,NULL,'2021-09-17 04:13:34','2021-09-17 04:13:34'),(47658,5,NULL,5,17887,'2021-05-26 03:39:00',NULL,NULL,'2021-09-17 05:39:46','2021-09-17 05:39:46'),(47664,5,NULL,5,17887,'2021-09-10 01:29:00',NULL,NULL,'2021-09-17 06:01:05','2021-09-17 06:01:05'),(47665,5,NULL,5,17887,'2021-09-03 06:50:00',NULL,NULL,'2021-09-17 06:01:30','2021-09-17 06:01:30'),(47667,5,NULL,5,17887,'2021-05-26 01:45:00',NULL,NULL,'2021-09-17 06:08:04','2021-09-17 06:08:04'),(47669,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2021-09-17 06:11:09','2021-09-17 06:11:09'),(47684,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2021-09-17 06:28:19','2021-09-17 06:28:19'),(47686,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2021-09-17 07:03:48','2021-09-17 07:03:48'),(47687,5,NULL,5,17887,'2021-08-06 06:46:00',NULL,NULL,'2021-09-17 07:23:17','2021-09-17 07:23:17'),(47689,5,NULL,5,17887,'2021-07-15 23:00:00',NULL,NULL,'2021-09-17 07:24:50','2021-09-17 07:24:50'),(47691,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2021-09-17 07:36:08','2021-09-17 07:36:08'),(47692,5,NULL,5,17887,'2021-09-10 06:06:00',NULL,NULL,'2021-09-20 02:12:29','2021-09-20 02:12:29'),(47695,5,NULL,5,17887,'2021-08-06 06:46:00',NULL,NULL,'2021-09-21 01:01:47','2021-09-21 01:01:47'),(47707,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2021-09-21 03:03:40','2021-09-21 03:03:40'),(47713,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2021-09-21 03:07:39','2021-09-21 03:07:39'),(47716,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2021-09-21 03:11:03','2021-09-21 03:11:03'),(47718,5,NULL,5,17887,'2021-07-15 23:00:00',NULL,NULL,'2021-09-21 03:13:10','2021-09-21 03:13:10'),(47721,5,NULL,5,1,'2021-07-16 03:13:00',NULL,NULL,'2021-09-21 03:20:52','2021-09-21 03:20:52'),(47731,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2021-09-21 03:51:47','2021-09-21 03:51:47'),(47735,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2021-09-21 03:56:00','2021-09-21 03:56:00'),(47743,5,NULL,5,1,'2021-08-26 23:30:00',NULL,NULL,'2021-09-21 04:50:15','2021-09-21 04:50:15'),(47747,5,NULL,5,17887,'2021-09-10 01:18:00',NULL,NULL,'2021-09-21 05:10:16','2021-09-21 05:10:16'),(47753,5,NULL,5,17887,'2021-09-10 01:24:00',NULL,NULL,'2021-09-21 05:42:17','2021-09-21 05:42:17'),(47760,5,NULL,5,17887,'2021-09-10 01:37:00',NULL,NULL,'2021-09-21 06:01:18','2021-09-21 06:01:18'),(47765,5,NULL,5,17887,'2021-09-10 01:37:00',NULL,NULL,'2021-09-21 06:05:29','2021-09-21 06:05:29'),(47769,5,NULL,5,17887,'2021-09-10 01:47:00',NULL,NULL,'2021-09-21 06:36:26','2021-09-21 06:36:26'),(47771,5,NULL,5,17887,'2021-09-10 02:07:00',NULL,NULL,'2021-09-21 06:39:30','2021-09-21 06:39:30'),(47774,5,NULL,5,17887,'2021-09-10 02:07:00',NULL,NULL,'2021-09-21 07:06:57','2021-09-21 07:06:57'),(47775,5,NULL,5,17887,'2021-09-10 02:07:00',NULL,NULL,'2021-09-21 07:07:48','2021-09-21 07:07:48'),(47776,5,NULL,5,17887,'2021-09-10 01:18:00',NULL,NULL,'2021-09-21 07:28:53','2021-09-21 07:28:53'),(47777,6,NULL,6,1,'2013-05-21 01:57:00',NULL,NULL,'2021-09-22 00:02:04','2021-09-22 00:02:04'),(47778,6,NULL,6,1,'2013-10-07 23:24:00',NULL,NULL,'2021-09-22 00:02:05','2021-09-22 00:02:05'),(47779,6,NULL,6,1,'2013-11-06 23:54:00',NULL,NULL,'2021-09-22 00:02:05','2021-09-22 00:02:05'),(47780,6,NULL,6,1,'2014-03-04 07:00:00',NULL,NULL,'2021-09-22 00:02:05','2021-09-22 00:02:05'),(47781,6,NULL,6,1,'2015-03-05 06:45:00',NULL,NULL,'2021-09-22 00:02:05','2021-09-22 00:02:05'),(47782,6,NULL,6,1,'2018-03-13 00:54:00',NULL,NULL,'2021-09-22 00:02:06','2021-09-22 00:02:06'),(47783,6,NULL,6,1,'2018-03-13 00:54:00',NULL,NULL,'2021-09-22 00:02:45','2021-09-22 00:02:45'),(47785,6,NULL,6,17887,'2021-07-23 05:37:00',NULL,NULL,'2021-09-22 00:10:23','2021-09-22 00:10:23'),(47787,6,NULL,6,17934,'2021-02-15 05:31:00',NULL,NULL,'2021-09-22 00:11:31','2021-09-22 00:11:31'),(47788,6,NULL,6,1,'2020-10-22 23:54:00',NULL,NULL,'2021-09-22 00:13:55','2021-09-22 00:13:55'),(47789,6,NULL,6,17954,'2018-11-14 08:55:00',NULL,NULL,'2021-09-22 00:15:45','2021-09-22 00:15:45'),(47791,6,NULL,6,1,'2018-05-21 07:01:00',NULL,NULL,'2021-09-22 00:21:51','2021-09-22 00:21:51'),(47792,6,NULL,6,17954,'2018-04-26 00:39:00',NULL,NULL,'2021-09-22 00:23:34','2021-09-22 00:23:34'),(47793,6,NULL,6,17956,'2018-04-16 05:39:00',NULL,NULL,'2021-09-22 00:25:28','2021-09-22 00:25:28'),(47795,6,NULL,6,1,'2018-03-13 00:54:00',NULL,NULL,'2021-09-22 00:29:50','2021-09-22 00:29:50'),(47796,6,NULL,6,17956,'2017-10-06 06:10:00',NULL,NULL,'2021-09-22 00:35:00','2021-09-22 00:35:00'),(47798,6,NULL,6,1,'2015-03-05 06:45:00',NULL,NULL,'2021-09-22 00:40:44','2021-09-22 00:40:44'),(47800,6,NULL,6,17956,'2014-03-04 07:00:00',NULL,NULL,'2021-09-22 00:49:41','2021-09-22 00:49:41'),(47802,6,NULL,6,1,'2013-11-06 23:54:00',NULL,NULL,'2021-09-22 01:04:24','2021-09-22 01:04:24'),(47804,6,NULL,6,1,'2013-10-07 23:24:00',NULL,NULL,'2021-09-22 01:47:15','2021-09-22 01:47:15'),(47806,6,NULL,6,1,'2013-05-21 01:57:00',NULL,NULL,'2021-09-22 01:51:12','2021-09-22 01:51:12'),(47808,6,NULL,6,17956,'2013-05-21 01:57:00',NULL,NULL,'2021-09-22 01:51:29','2021-09-22 01:51:29'),(47989,5,NULL,5,17887,'2021-05-26 01:40:00',NULL,NULL,'2021-09-23 23:14:08','2021-09-23 23:14:08'),(47993,5,NULL,5,17887,'2021-09-10 01:37:00',NULL,NULL,'2021-09-24 01:36:46','2021-09-24 01:36:46'),(47995,5,NULL,5,17887,'2021-09-10 01:47:00',NULL,NULL,'2021-09-24 01:38:36','2021-09-24 01:38:36'),(47998,5,NULL,5,17887,'2021-09-10 02:07:00',NULL,NULL,'2021-09-24 02:01:06','2021-09-24 02:01:06'),(48003,6,NULL,6,17887,'2021-07-23 05:37:00',NULL,NULL,'2021-09-24 04:59:42','2021-09-24 05:39:08'),(48004,6,NULL,6,17887,'2021-07-23 05:37:00',NULL,NULL,'2021-09-24 04:59:43','2021-09-24 04:59:43'),(48008,6,NULL,6,17887,'2021-07-23 05:37:00',NULL,NULL,'2021-09-24 05:09:38','2021-09-24 05:09:38'),(48010,6,NULL,6,17887,'2021-07-23 05:37:00',NULL,NULL,'2021-09-24 05:39:08','2021-09-24 05:39:08'),(48011,6,NULL,6,17887,'2022-09-28 05:39:00',NULL,NULL,'2021-09-24 05:39:24','2022-09-28 06:41:58'),(48016,5,NULL,5,17887,'2021-09-10 06:06:00',NULL,NULL,'2021-09-24 07:20:40','2021-09-24 07:20:40'),(48017,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-26 23:46:30','2021-09-26 23:46:30'),(48131,6,NULL,6,17887,'2021-07-23 05:37:00',NULL,NULL,'2021-09-27 01:13:47','2021-09-27 01:13:47'),(48134,6,NULL,6,1,'2013-10-07 23:24:00',NULL,NULL,'2021-09-27 01:15:26','2021-09-27 01:15:26'),(48149,5,NULL,5,17887,'2021-09-10 06:06:00',NULL,NULL,'2021-09-27 02:01:51','2021-09-27 02:01:51'),(48151,5,NULL,5,17887,'2021-09-10 06:02:00',NULL,NULL,'2021-09-27 02:02:07','2021-09-27 02:02:07'),(48153,5,NULL,5,17887,'2021-09-10 02:13:00',NULL,NULL,'2021-09-27 02:02:40','2021-09-27 02:02:40'),(48155,5,NULL,5,17887,'2021-09-10 02:10:00',NULL,NULL,'2021-09-27 02:02:53','2021-09-27 02:02:53'),(48158,5,NULL,5,17887,'2021-09-10 05:19:00',NULL,NULL,'2021-09-27 02:03:03','2021-09-27 02:03:03'),(48160,5,NULL,5,17887,'2021-09-10 02:18:00',NULL,NULL,'2021-09-27 02:03:16','2021-09-27 02:03:16'),(48161,5,NULL,5,17887,'2021-09-10 01:47:00',NULL,NULL,'2021-09-27 02:03:39','2021-09-27 02:03:39'),(48164,5,NULL,5,17887,'2021-05-26 03:32:00',NULL,NULL,'2021-09-27 02:11:26','2021-09-27 02:11:26'),(48165,5,NULL,5,17887,'2021-05-26 03:32:00',NULL,NULL,'2021-09-27 02:12:24','2021-09-27 02:12:24'),(48168,5,NULL,5,17887,'2021-09-10 02:07:00',NULL,NULL,'2021-09-27 02:19:38','2021-09-27 02:19:38'),(48172,5,NULL,5,17887,'2021-09-10 02:07:00',NULL,NULL,'2021-09-27 02:36:32','2021-09-27 02:36:32'),(48174,5,NULL,5,17887,'2021-09-10 05:34:00',NULL,NULL,'2021-09-27 02:36:57','2021-09-27 02:36:57'),(48177,5,NULL,5,17887,'2021-09-10 02:07:00',NULL,NULL,'2021-09-27 02:38:37','2021-09-27 02:38:37'),(48179,5,NULL,5,17887,'2021-09-10 05:50:00',NULL,NULL,'2021-09-27 02:39:13','2021-09-27 02:39:13'),(48182,5,NULL,5,17887,'2021-09-10 01:47:00',NULL,NULL,'2021-09-27 02:42:07','2021-09-27 02:42:07'),(48186,5,NULL,5,17887,'2021-09-10 01:37:00',NULL,NULL,'2021-09-27 02:46:51','2021-09-27 02:46:51'),(48189,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 02:54:09','2021-09-27 02:54:09'),(48191,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 02:54:43','2021-09-27 02:54:43'),(48194,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 02:55:17','2021-09-27 02:55:17'),(48197,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 02:55:54','2021-09-27 02:55:54'),(48200,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 02:56:29','2021-09-27 02:56:29'),(48221,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:00:11','2021-09-27 03:00:11'),(48225,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:00:39','2021-09-27 03:00:39'),(48229,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:01:09','2021-09-27 03:01:09'),(48233,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:01:39','2021-09-27 03:01:39'),(48238,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:02:31','2021-09-27 03:02:31'),(48241,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:20:16','2021-09-27 03:20:16'),(48242,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:20:49','2021-09-27 03:20:49'),(48243,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:21:12','2021-09-27 03:21:12'),(48244,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:21:36','2021-09-27 03:21:36'),(48245,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:21:59','2021-09-27 03:21:59'),(48246,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:22:33','2021-09-27 03:22:33'),(48247,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:23:04','2021-09-27 03:23:04'),(48248,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:23:33','2021-09-27 03:23:33'),(48249,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:24:01','2021-09-27 03:24:01'),(48250,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:24:30','2021-09-27 03:24:30'),(48251,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:24:59','2021-09-27 03:24:59'),(48252,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:26:30','2021-09-27 03:26:30'),(48253,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:27:00','2021-09-27 03:27:00'),(48255,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:27:36','2021-09-27 03:27:36'),(48256,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:28:12','2021-09-27 03:28:12'),(48257,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:28:49','2021-09-27 03:28:49'),(48258,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:29:25','2021-09-27 03:29:25'),(48259,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:30:03','2021-09-27 03:30:03'),(48260,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:30:38','2021-09-27 03:30:38'),(48261,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:31:13','2021-09-27 03:31:13'),(48262,10,NULL,10,NULL,'2021-09-27 03:32:00',NULL,NULL,'2021-09-27 03:32:47','2021-09-27 03:32:47'),(48263,10,NULL,10,NULL,'2021-09-27 03:32:00',NULL,NULL,'2021-09-27 03:32:47','2021-09-27 03:32:47'),(48264,10,NULL,10,NULL,'2021-09-27 03:32:00',NULL,NULL,'2021-09-27 03:34:00','2021-09-27 03:34:00'),(48266,10,NULL,10,NULL,'2021-09-27 03:32:00',NULL,NULL,'2021-09-27 03:36:26','2021-09-27 03:36:26'),(48267,10,NULL,10,NULL,'2021-09-27 03:32:00',NULL,NULL,'2021-09-27 03:37:35','2021-09-27 03:37:35'),(48270,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:38:18','2021-09-27 03:38:18'),(48271,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:38:49','2021-09-27 03:38:49'),(48272,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:39:24','2021-09-27 03:39:24'),(48273,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:40:00','2021-09-27 03:40:00'),(48274,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:40:26','2021-09-27 03:40:26'),(48276,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:41:02','2021-09-27 03:41:02'),(48279,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:41:38','2021-09-27 03:41:38'),(48281,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:42:13','2021-09-27 03:42:13'),(48284,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:42:50','2021-09-27 03:42:50'),(48294,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:46:32','2021-09-27 03:46:32'),(48299,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:53:03','2021-09-27 03:53:03'),(48302,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:53:37','2021-09-27 03:53:37'),(48305,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:54:13','2021-09-27 03:54:13'),(48307,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:54:42','2021-09-27 03:54:42'),(48310,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:55:16','2021-09-27 03:55:16'),(48312,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:55:47','2021-09-27 03:55:47'),(48314,10,NULL,10,NULL,'2021-09-27 03:32:00',NULL,NULL,'2021-09-27 03:56:03','2021-09-27 03:56:03'),(48317,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:56:20','2021-09-27 03:56:20'),(48318,10,NULL,10,NULL,'2021-09-27 03:32:00',NULL,NULL,'2021-09-27 03:56:22','2021-09-27 03:56:22'),(48322,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:56:57','2021-09-27 03:56:57'),(48323,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 03:57:31','2021-09-27 03:57:31'),(48324,10,NULL,10,NULL,'2021-09-27 03:32:00',NULL,NULL,'2021-09-27 03:58:25','2021-09-27 03:58:25'),(48325,10,NULL,10,NULL,'2021-09-27 03:32:00',NULL,NULL,'2021-09-27 04:00:34','2021-09-27 04:00:34'),(48333,4,NULL,4,45223,'2021-09-26 23:46:00',NULL,NULL,'2021-09-27 04:07:34','2021-09-27 04:07:34'),(48338,10,NULL,10,NULL,'2021-09-27 03:32:00',NULL,NULL,'2021-09-27 04:10:00','2021-09-27 04:10:00'),(48367,6,NULL,6,17887,'2021-07-23 05:37:00',NULL,NULL,'2021-09-27 06:53:04','2021-09-27 06:53:04'),(48376,6,NULL,6,1,'2013-11-06 23:54:00',NULL,NULL,'2021-09-27 22:51:43','2021-09-27 22:51:43'),(48378,6,NULL,6,1,'2015-03-05 06:45:00',NULL,NULL,'2021-09-27 22:53:36','2021-09-27 22:53:36'),(48379,6,NULL,6,17956,'2017-10-06 06:10:00',NULL,NULL,'2021-09-27 22:53:58','2021-09-27 22:53:58'),(48380,6,NULL,6,17956,'2017-10-06 06:10:00',NULL,NULL,'2021-09-27 22:54:36','2021-09-27 22:54:36'),(48382,6,NULL,6,17956,'2014-03-04 07:00:00',NULL,NULL,'2021-09-27 22:55:06','2021-09-27 22:55:06'),(48384,6,NULL,6,1,'2013-11-06 23:54:00',NULL,NULL,'2021-09-27 22:55:36','2021-09-27 22:55:36'),(48386,6,NULL,6,1,'2013-10-07 23:24:00',NULL,NULL,'2021-09-27 22:57:34','2021-09-27 22:57:34'),(48388,6,NULL,6,17887,'2021-07-23 05:37:00',NULL,NULL,'2021-09-27 22:57:51','2021-09-27 22:57:51'),(48393,6,NULL,6,17887,'2021-07-23 05:37:00',NULL,NULL,'2021-09-27 22:58:28','2021-09-27 22:58:28'),(48395,6,NULL,6,17887,'2021-07-23 05:37:00',NULL,NULL,'2021-09-27 22:58:42','2021-09-27 22:58:42'),(48396,6,NULL,6,17934,'2021-02-15 05:31:00',NULL,NULL,'2021-09-27 22:58:49','2021-09-27 22:58:49'),(48397,6,NULL,6,17956,'2017-10-06 06:10:00',NULL,NULL,'2021-09-27 22:58:58','2021-09-27 22:58:58'),(48398,6,NULL,6,1,'2015-03-05 06:45:00',NULL,NULL,'2021-09-27 23:00:38','2021-09-27 23:00:38'),(48399,6,NULL,6,17956,'2014-03-04 07:00:00',NULL,NULL,'2021-09-27 23:01:03','2021-09-27 23:01:03'),(48401,6,NULL,6,1,'2013-11-06 23:54:00',NULL,NULL,'2021-09-27 23:01:35','2021-09-27 23:01:35'),(48403,6,NULL,6,1,'2015-03-05 06:45:00',NULL,NULL,'2021-09-27 23:02:00','2021-09-27 23:02:00'),(48405,6,NULL,6,17956,'2014-03-04 07:00:00',NULL,NULL,'2021-09-27 23:02:16','2021-09-27 23:02:16'),(48406,6,NULL,6,1,'2013-11-06 23:54:00',NULL,NULL,'2021-09-27 23:02:26','2021-09-27 23:02:26'),(48408,6,NULL,6,1,'2013-10-07 23:24:00',NULL,NULL,'2021-09-27 23:03:06','2021-09-27 23:03:06'),(48410,6,NULL,6,17956,'2013-05-21 01:57:00',NULL,NULL,'2021-09-27 23:03:26','2021-09-27 23:03:26'),(48411,6,NULL,6,1,'2018-03-13 00:54:00',NULL,NULL,'2021-09-27 23:12:38','2021-09-27 23:12:38'),(48415,6,NULL,6,1,'2018-03-13 00:54:00',NULL,NULL,'2021-09-28 00:16:19','2021-09-28 00:16:19'),(48417,4,NULL,4,45226,'2021-09-28 01:34:00',NULL,NULL,'2021-09-28 01:34:25','2021-09-28 01:34:25'),(48418,4,NULL,4,45226,'2021-09-28 01:34:00',NULL,NULL,'2021-09-28 01:34:25','2021-09-28 01:34:25'),(48419,4,NULL,4,45226,'2021-09-28 01:34:00',NULL,NULL,'2021-09-28 01:44:19','2021-09-28 01:44:19'),(48420,4,NULL,4,45226,'2021-09-28 01:34:00',NULL,NULL,'2021-09-28 01:52:10','2021-09-28 01:52:10'),(48421,4,NULL,4,45226,'2021-09-28 01:34:00',NULL,NULL,'2021-09-28 01:52:58','2021-09-28 01:52:58'),(48422,4,NULL,4,45226,'2021-09-28 01:34:00',NULL,NULL,'2021-09-28 01:53:18','2021-09-28 01:53:18'),(48423,4,NULL,4,45226,'2021-09-28 01:34:00',NULL,NULL,'2021-09-28 01:53:38','2021-09-28 01:53:38'),(48424,4,NULL,4,45226,'2021-09-28 01:34:00',NULL,NULL,'2021-09-28 01:53:58','2021-09-28 01:53:58'),(48425,4,NULL,4,45226,'2021-09-28 01:34:00',NULL,NULL,'2021-09-28 01:54:18','2021-09-28 01:54:18'),(48426,4,NULL,4,45226,'2021-09-28 01:34:00',NULL,NULL,'2021-09-28 01:54:38','2021-09-28 01:54:38'),(48427,4,NULL,4,45226,'2021-09-28 01:34:00',NULL,NULL,'2021-09-28 01:55:08','2021-09-28 01:55:08'),(48428,4,NULL,4,45226,'2021-09-28 01:34:00',NULL,NULL,'2021-09-28 01:55:28','2021-09-28 01:55:28'),(48429,4,NULL,4,45226,'2021-09-28 01:34:00',NULL,NULL,'2021-09-28 01:55:48','2021-09-28 01:55:48'),(48430,4,NULL,4,45226,'2021-09-28 01:34:00',NULL,NULL,'2021-09-28 01:56:08','2021-09-28 01:56:08'),(48431,4,NULL,4,45226,'2021-09-28 01:34:00',NULL,NULL,'2021-09-28 01:56:28','2021-09-28 01:56:28'),(48432,4,NULL,4,45226,'2021-09-28 01:34:00',NULL,NULL,'2021-09-28 01:56:47','2021-09-28 01:56:47'),(48433,4,NULL,4,45226,'2021-09-28 01:34:00',NULL,NULL,'2021-09-28 02:00:46','2021-09-28 02:00:46'),(48454,5,NULL,5,17887,'2021-09-10 01:29:00',NULL,NULL,'2021-09-28 07:11:33','2021-09-28 07:11:33'),(48475,5,NULL,5,17887,'2021-09-10 01:24:00',NULL,NULL,'2021-09-28 07:27:43','2021-09-28 07:27:43'),(48478,5,NULL,5,17887,'2021-09-10 01:24:00',NULL,NULL,'2021-09-28 07:28:53','2021-09-28 07:28:53'),(48482,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 07:51:08','2021-09-28 07:51:08'),(48483,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 07:51:28','2021-09-28 07:51:28'),(48484,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 07:51:48','2021-09-28 07:51:48'),(48485,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 07:52:08','2021-09-28 07:52:08'),(48486,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 07:52:28','2021-09-28 07:52:28'),(48487,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 07:52:48','2021-09-28 07:52:48'),(48488,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 07:53:08','2021-09-28 07:53:08'),(48489,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 07:53:28','2021-09-28 07:53:28'),(48490,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 07:53:48','2021-09-28 07:53:48'),(48491,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 07:54:08','2021-09-28 07:54:08'),(48492,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 07:54:28','2021-09-28 07:54:28'),(48493,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 07:54:48','2021-09-28 07:54:48'),(48494,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 07:55:08','2021-09-28 07:55:08'),(48495,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 07:55:28','2021-09-28 07:55:28'),(48496,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 08:14:00','2021-09-28 08:14:00'),(48497,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 08:34:00','2021-09-28 08:34:00'),(48498,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 08:54:00','2021-09-28 08:54:00'),(48499,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 08:55:18','2021-09-28 08:55:18'),(48500,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 08:55:38','2021-09-28 08:55:38'),(48501,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 08:56:11','2021-09-28 08:56:11'),(48502,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 08:56:31','2021-09-28 08:56:31'),(48503,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 08:56:51','2021-09-28 08:56:51'),(48504,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 08:57:11','2021-09-28 08:57:11'),(48505,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 08:57:41','2021-09-28 08:57:41'),(48506,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 08:58:01','2021-09-28 08:58:01'),(48507,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 08:58:21','2021-09-28 08:58:21'),(48508,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 08:58:41','2021-09-28 08:58:41'),(48509,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 08:59:01','2021-09-28 08:59:01'),(48510,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 08:59:21','2021-09-28 08:59:21'),(48511,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 08:59:41','2021-09-28 08:59:41'),(48512,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 09:00:01','2021-09-28 09:00:01'),(48513,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 09:00:21','2021-09-28 09:00:21'),(48514,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 09:00:41','2021-09-28 09:00:41'),(48515,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 09:01:01','2021-09-28 09:01:01'),(48516,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 09:01:21','2021-09-28 09:01:21'),(48517,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 09:09:20','2021-09-28 09:09:20'),(48518,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 09:09:40','2021-09-28 09:09:40'),(48519,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 09:10:00','2021-09-28 09:10:00'),(48520,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 09:10:20','2021-09-28 09:10:20'),(48521,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 09:10:39','2021-09-28 09:10:39'),(48522,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 09:11:00','2021-09-28 09:11:00'),(48523,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 09:11:20','2021-09-28 09:11:20'),(48524,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 09:11:40','2021-09-28 09:11:40'),(48525,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 09:12:00','2021-09-28 09:12:00'),(48526,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 09:12:20','2021-09-28 09:12:20'),(48527,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 09:12:40','2021-09-28 09:12:40'),(48528,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 09:13:00','2021-09-28 09:13:00'),(48529,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 09:13:20','2021-09-28 09:13:20'),(48530,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 09:28:00','2021-09-28 09:28:00'),(48531,4,NULL,4,45225,'2021-09-15 06:39:00',NULL,NULL,'2021-09-28 09:48:01','2021-09-28 09:48:01'),(48534,5,NULL,5,17887,'2021-09-10 01:18:00',NULL,NULL,'2021-09-30 03:36:52','2021-09-30 03:36:52'),(48537,5,NULL,5,17887,'2021-09-10 01:03:00',NULL,NULL,'2021-09-30 03:43:13','2021-09-30 03:43:13'),(48540,5,NULL,5,17887,'2021-09-03 06:50:00',NULL,NULL,'2021-09-30 03:47:30','2021-09-30 03:47:30'),(48543,5,NULL,5,17887,'2021-05-26 03:39:00',NULL,NULL,'2021-09-30 03:51:18','2021-09-30 03:51:18'),(48546,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2021-09-30 03:54:04','2021-09-30 03:54:04'),(51533,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-10-01 01:02:35','2021-10-01 01:02:35'),(51670,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-10-01 01:03:20','2021-10-01 01:03:20'),(51872,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-10-01 01:04:10','2021-10-01 01:04:10'),(58762,5,NULL,5,17887,'2021-10-01 06:45:00',NULL,NULL,'2021-10-01 06:45:38','2021-10-01 06:45:38'),(58763,5,NULL,5,17887,'2021-10-01 06:45:00',NULL,NULL,'2021-10-08 02:09:53','2021-10-08 02:09:53'),(58769,5,NULL,5,17887,'2021-09-10 02:10:00',NULL,NULL,'2021-10-14 05:45:58','2021-10-14 05:45:58'),(58770,5,NULL,5,17887,'2021-09-10 06:06:00',NULL,NULL,'2021-10-14 05:48:03','2021-10-14 05:48:03'),(61812,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2021-10-18 01:25:31','2021-10-18 01:25:31'),(61814,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2021-10-18 01:27:52','2021-10-18 01:27:52'),(61816,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2021-10-18 03:42:08','2021-10-18 03:42:08'),(61820,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2021-10-18 04:17:46','2021-10-18 04:17:46'),(61822,8,NULL,8,NULL,'2021-06-21 06:24:00',NULL,NULL,'2021-10-18 04:28:19','2021-10-18 04:28:19'),(61824,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2021-10-18 04:50:02','2021-10-18 04:50:02'),(61827,5,NULL,5,17887,'2021-09-03 06:26:00',NULL,NULL,'2021-10-18 04:54:06','2021-10-18 04:54:06'),(61831,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2021-10-18 06:20:17','2021-10-18 06:20:17'),(61833,5,NULL,5,1,'2021-08-26 23:30:00',NULL,NULL,'2021-10-18 06:53:58','2021-10-18 06:53:58'),(61845,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2021-10-18 07:16:09','2021-10-18 07:16:09'),(61848,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2021-10-18 07:27:33','2021-10-18 07:27:33'),(61849,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2021-10-18 07:29:57','2021-10-18 07:29:57'),(61852,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2021-10-18 07:36:35','2021-10-18 07:36:35'),(73927,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2021-10-19 11:27:41','2021-10-19 11:27:41'),(73930,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2021-10-19 11:31:42','2021-10-19 11:31:42'),(73942,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2021-10-20 03:48:10','2021-10-20 03:48:10'),(73944,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2021-10-20 03:49:12','2021-10-20 03:49:12'),(73946,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2021-10-20 03:49:33','2021-10-20 03:49:33'),(73949,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2021-10-20 04:31:19','2021-10-20 04:31:19'),(73951,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2021-10-20 04:32:46','2021-10-20 04:32:46'),(73959,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-11-08 02:53:17','2021-11-08 02:53:17'),(73973,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-11-08 02:53:33','2021-11-08 02:53:33'),(73987,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-11-08 02:54:17','2021-11-08 02:54:17'),(73995,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2021-11-08 02:55:48','2021-11-08 02:55:48'),(73997,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2021-11-08 02:56:39','2021-11-08 02:56:39'),(73999,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2021-11-08 02:58:16','2021-11-08 02:58:16'),(74001,5,NULL,5,17887,'2021-08-06 06:46:00',NULL,NULL,'2021-11-08 02:58:58','2021-11-08 02:58:58'),(74003,5,NULL,5,17887,'2021-09-10 01:47:00',NULL,NULL,'2021-11-08 02:59:42','2021-11-08 02:59:42'),(74005,5,NULL,5,17887,'2021-09-03 06:26:00',NULL,NULL,'2021-11-08 03:00:34','2021-11-08 03:00:34'),(74007,5,NULL,5,17887,'2021-09-03 06:26:00',NULL,NULL,'2021-11-08 03:01:28','2021-11-08 03:01:28'),(74009,5,NULL,5,17887,'2021-09-03 06:26:00',NULL,NULL,'2021-11-08 03:16:16','2021-11-08 03:16:16'),(74011,5,NULL,5,17887,'2021-09-03 06:26:00',NULL,NULL,'2021-11-08 04:06:49','2021-11-08 04:06:49'),(74013,5,NULL,5,17887,'2021-09-03 06:26:00',NULL,NULL,'2021-11-08 04:08:25','2021-11-08 04:08:25'),(74015,5,NULL,5,1,'2021-08-26 23:30:00',NULL,NULL,'2021-11-08 04:09:06','2021-11-08 04:09:06'),(74017,5,NULL,5,17887,'2021-07-15 23:00:00',NULL,NULL,'2021-11-08 04:09:43','2021-11-08 04:09:43'),(74019,5,NULL,5,17887,'2021-05-26 03:32:00',NULL,NULL,'2021-11-08 04:11:30','2021-11-08 04:11:30'),(74021,5,NULL,5,17887,'2021-05-26 03:39:00',NULL,NULL,'2021-11-08 04:12:09','2021-11-08 04:12:09'),(74023,5,NULL,5,17887,'2021-05-26 01:40:00',NULL,NULL,'2021-11-08 04:12:53','2021-11-08 04:12:53'),(74027,5,NULL,5,1,'2021-07-16 03:13:00',NULL,NULL,'2021-11-08 04:14:01','2021-11-08 04:14:01'),(74029,5,NULL,5,1,'2021-07-16 03:13:00',NULL,NULL,'2021-11-08 04:14:56','2021-11-08 04:14:56'),(74032,5,NULL,5,17887,'2021-09-03 06:50:00',NULL,NULL,'2021-11-08 04:17:49','2021-11-08 04:17:49'),(74052,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-11-09 00:40:15','2021-11-09 00:40:15'),(74059,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2021-11-09 00:40:45','2021-11-09 00:40:45'),(74060,8,NULL,8,NULL,'2021-06-21 06:24:00',NULL,NULL,'2021-11-09 00:41:42','2021-11-09 00:41:42'),(74069,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-11-09 01:19:35','2021-11-09 01:19:35'),(74076,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-11-09 01:20:06','2021-11-09 01:20:06'),(74085,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2021-11-09 01:27:18','2021-11-09 01:27:18'),(74087,8,NULL,8,NULL,'2021-06-21 06:24:00',NULL,NULL,'2021-11-09 01:27:34','2021-11-09 01:27:34'),(74098,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-11-09 01:32:15','2021-11-09 01:32:15'),(74107,6,NULL,6,17887,'2021-07-23 05:37:00',NULL,NULL,'2021-11-09 01:39:33','2021-11-09 01:39:33'),(74109,6,NULL,6,17887,'2021-07-23 05:37:00',NULL,NULL,'2021-11-09 01:49:48','2021-11-09 01:49:48'),(74111,6,NULL,6,17887,'2021-07-23 05:37:00',NULL,NULL,'2021-11-09 01:53:02','2021-11-09 01:53:02'),(74113,6,NULL,6,17934,'2021-02-15 05:31:00',NULL,NULL,'2021-11-09 01:54:49','2021-11-09 01:54:49'),(74115,6,NULL,6,17934,'2021-02-15 05:31:00',NULL,NULL,'2021-11-09 01:55:40','2021-11-09 01:55:40'),(74117,6,NULL,6,1,'2020-10-22 23:54:00',NULL,NULL,'2021-11-09 01:56:33','2021-11-09 01:56:33'),(74119,6,NULL,6,17954,'2018-11-14 08:55:00',NULL,NULL,'2021-11-09 01:57:07','2021-11-09 01:57:07'),(74121,6,NULL,6,1,'2018-05-21 07:01:00',NULL,NULL,'2021-11-09 01:57:32','2021-11-09 01:57:32'),(74123,6,NULL,6,17954,'2018-04-26 00:39:00',NULL,NULL,'2021-11-09 01:58:03','2021-11-09 01:58:03'),(74125,6,NULL,6,17956,'2018-04-16 05:39:00',NULL,NULL,'2021-11-09 01:58:38','2021-11-09 01:58:38'),(74127,6,NULL,6,1,'2018-03-13 00:54:00',NULL,NULL,'2021-11-09 01:59:29','2021-11-09 01:59:29'),(74129,6,NULL,6,17956,'2017-10-06 06:10:00',NULL,NULL,'2021-11-09 01:59:54','2021-11-09 01:59:54'),(74131,6,NULL,6,1,'2015-03-05 06:45:00',NULL,NULL,'2021-11-09 02:00:48','2021-11-09 02:00:48'),(74133,6,NULL,6,17956,'2014-03-04 07:00:00',NULL,NULL,'2021-11-09 02:01:18','2021-11-09 02:01:18'),(74135,6,NULL,6,1,'2013-11-06 23:54:00',NULL,NULL,'2021-11-09 02:01:53','2021-11-09 02:01:53'),(74137,6,NULL,6,1,'2013-10-07 23:24:00',NULL,NULL,'2021-11-09 02:02:27','2021-11-09 02:02:27'),(74139,6,NULL,6,17956,'2013-05-21 01:57:00',NULL,NULL,'2021-11-09 02:03:06','2021-11-09 02:03:06'),(74143,5,NULL,5,17887,'2021-09-10 02:07:00',NULL,NULL,'2021-11-09 02:05:30','2021-11-09 02:05:30'),(74145,5,NULL,5,17887,'2021-09-10 01:47:00',NULL,NULL,'2021-11-09 02:06:04','2021-11-09 02:06:04'),(74147,5,NULL,5,17887,'2021-09-10 01:37:00',NULL,NULL,'2021-11-09 02:06:47','2021-11-09 02:06:47'),(74149,5,NULL,5,17887,'2021-09-10 01:29:00',NULL,NULL,'2021-11-09 02:07:46','2021-11-09 02:07:46'),(74153,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2021-11-09 05:39:48','2021-11-09 05:39:48'),(74162,11,NULL,11,NULL,'2021-11-09 23:38:00',NULL,NULL,'2021-11-09 23:38:17','2021-11-09 23:38:17'),(74163,11,NULL,11,NULL,'2021-11-09 23:38:00',NULL,NULL,'2021-11-09 23:38:17','2021-11-09 23:38:17'),(74165,11,NULL,11,NULL,'2021-11-09 23:38:00',NULL,NULL,'2021-11-09 23:43:14','2021-11-09 23:43:14'),(74167,11,NULL,11,NULL,'2021-11-09 23:38:00',NULL,NULL,'2021-11-09 23:44:01','2021-11-09 23:44:01'),(74168,5,NULL,5,17887,'2021-05-26 03:32:00',NULL,NULL,'2021-11-11 01:05:47','2021-11-11 01:05:47'),(74176,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-11-12 03:23:06','2021-11-12 03:23:06'),(74190,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-11-12 03:23:33','2021-11-12 03:23:33'),(74204,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-11-12 03:23:50','2021-11-12 03:23:50'),(74211,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-11-12 03:24:11','2021-11-12 03:24:11'),(74219,8,NULL,8,NULL,'2021-06-21 06:24:00',NULL,NULL,'2021-11-12 03:25:50','2021-11-12 03:25:50'),(74221,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2021-11-12 03:37:32','2021-11-12 03:37:32'),(74223,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2021-11-12 03:39:06','2021-11-12 03:39:06'),(74231,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-11-12 03:41:07','2021-11-12 03:41:07'),(74245,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-11-12 03:41:36','2021-11-12 03:41:36'),(74253,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2021-11-15 01:17:23','2021-11-15 01:17:23'),(74254,11,NULL,11,NULL,'2021-11-09 23:38:00',NULL,NULL,'2021-11-15 01:17:25','2021-11-15 01:17:25'),(74255,8,NULL,8,NULL,'2021-06-21 06:24:00',NULL,NULL,'2021-11-15 01:17:26','2021-11-15 01:17:26'),(74256,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-11-15 01:17:28','2021-11-15 01:17:28'),(74263,10,NULL,10,NULL,'2021-09-27 03:32:00',NULL,NULL,'2021-11-15 01:17:30','2021-11-15 01:17:30'),(74264,8,NULL,8,NULL,'2021-06-21 06:24:00',NULL,NULL,'2021-11-15 01:17:36','2021-11-15 01:17:36'),(74265,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2021-11-15 01:17:38','2021-11-15 01:17:38'),(74272,10,NULL,10,NULL,'2021-09-27 03:32:00',NULL,NULL,'2021-11-15 01:17:40','2021-11-15 01:17:40'),(74273,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2021-11-15 01:17:41','2021-11-15 01:17:41'),(74274,11,NULL,11,NULL,'2021-11-09 23:38:00',NULL,NULL,'2021-11-15 01:17:42','2021-11-15 01:17:42'),(74275,11,NULL,11,NULL,'2021-11-09 23:38:00',NULL,NULL,'2021-11-15 01:48:59','2021-11-15 01:48:59'),(74276,13,NULL,13,NULL,'2021-11-15 01:51:00',NULL,NULL,'2021-11-15 01:51:50','2021-11-15 01:51:50'),(74277,13,NULL,13,NULL,'2021-11-15 01:51:00',NULL,NULL,'2021-11-15 01:51:50','2021-11-15 01:51:50'),(74278,13,NULL,13,NULL,'2021-11-15 01:51:00',NULL,NULL,'2021-11-15 01:52:01','2021-11-15 01:52:01'),(74281,13,NULL,13,NULL,'2021-11-15 01:51:00',NULL,NULL,'2021-11-15 01:53:35','2021-11-15 01:53:35'),(74282,13,NULL,13,NULL,'2021-11-15 01:51:00',NULL,NULL,'2021-11-15 02:16:09','2021-11-15 02:16:09'),(74284,13,NULL,13,NULL,'2021-11-15 01:51:00',NULL,NULL,'2021-11-15 02:16:54','2021-11-15 02:16:54'),(74286,14,NULL,14,NULL,'2021-11-24 05:25:00',NULL,NULL,'2021-11-24 05:25:54','2021-11-24 05:25:54'),(74287,14,NULL,14,NULL,'2021-11-24 05:25:00',NULL,NULL,'2021-11-24 05:25:54','2021-11-24 05:25:54'),(74288,14,NULL,14,NULL,'2021-11-24 05:25:00',NULL,NULL,'2021-11-24 05:26:17','2021-11-24 05:26:17'),(74289,14,NULL,14,NULL,'2021-11-24 05:25:00',NULL,NULL,'2021-11-24 05:28:19','2021-11-24 05:28:19'),(74291,14,NULL,14,NULL,'2021-11-24 05:25:00',NULL,NULL,'2021-11-24 05:29:52','2021-11-24 05:29:52'),(74293,14,NULL,14,NULL,'2021-11-24 05:25:00',NULL,NULL,'2021-11-24 05:30:59','2021-11-24 05:30:59'),(82294,10,NULL,10,NULL,'2021-09-27 03:32:00',NULL,NULL,'2021-11-30 00:08:02','2021-11-30 00:08:02'),(82296,10,NULL,10,NULL,'2021-09-27 03:32:00',NULL,NULL,'2021-11-30 00:08:35','2021-11-30 00:08:35'),(84911,13,NULL,13,NULL,'2021-11-15 01:51:00',NULL,NULL,'2021-12-01 00:24:30','2021-12-01 00:24:30'),(84914,13,NULL,13,NULL,'2021-11-15 01:51:00',NULL,NULL,'2021-12-01 00:43:31','2021-12-01 00:43:31'),(84915,13,NULL,13,NULL,'2021-11-15 01:51:00',NULL,NULL,'2021-12-01 00:46:59','2021-12-01 00:46:59'),(84917,13,NULL,13,NULL,'2021-11-15 01:51:00',NULL,NULL,'2021-12-01 00:48:39','2021-12-01 00:48:39'),(84920,13,NULL,13,NULL,'2021-11-15 01:51:00',NULL,NULL,'2021-12-01 01:35:03','2021-12-01 01:35:03'),(84922,13,NULL,13,NULL,'2021-11-15 01:51:00',NULL,NULL,'2021-12-01 01:40:10','2021-12-01 01:40:10'),(84925,13,NULL,13,NULL,'2021-11-15 01:51:00',NULL,NULL,'2021-12-01 01:45:31','2021-12-01 01:45:31'),(87608,15,NULL,15,1,'2021-12-10 01:01:00',NULL,NULL,'2021-12-10 01:01:56','2021-12-10 01:01:56'),(87609,15,NULL,15,1,'2021-12-10 01:01:00',NULL,NULL,'2021-12-10 01:01:56','2021-12-10 01:01:56'),(87611,15,NULL,15,1,'2021-12-10 01:01:00',NULL,NULL,'2021-12-10 01:06:29','2021-12-10 01:06:29'),(87613,15,NULL,15,1,'2021-12-10 01:01:00',NULL,NULL,'2021-12-10 01:13:40','2021-12-10 01:13:40'),(87615,15,NULL,15,1,'2021-12-10 01:01:00',NULL,NULL,'2021-12-10 01:32:12','2021-12-10 01:32:12'),(87617,15,NULL,15,1,'2021-12-10 01:01:00',NULL,NULL,'2021-12-10 01:33:17','2021-12-10 01:33:17'),(87619,15,NULL,15,1,'2021-12-10 01:01:00',NULL,NULL,'2021-12-10 01:49:51','2021-12-10 01:49:51'),(87623,15,NULL,15,1,'2021-12-10 01:01:00',NULL,NULL,'2021-12-10 01:59:34','2021-12-10 01:59:34'),(87625,15,NULL,15,1,'2021-12-10 01:01:00',NULL,NULL,'2021-12-10 03:20:24','2021-12-10 03:20:24'),(87627,15,NULL,15,1,'2021-12-10 01:01:00',NULL,NULL,'2021-12-10 03:27:21','2021-12-10 03:27:21'),(87629,15,NULL,15,1,'2021-12-10 01:01:00',NULL,NULL,'2021-12-10 03:32:43','2021-12-10 03:32:43'),(87632,15,NULL,15,1,'2021-12-10 01:01:00',NULL,NULL,'2021-12-10 03:35:22','2021-12-10 03:35:22'),(94201,5,NULL,5,17887,'2021-10-01 06:45:00',NULL,NULL,'2021-12-21 04:45:32','2021-12-21 04:45:32'),(94206,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2022-01-06 01:18:14','2022-01-06 01:18:14'),(94207,5,NULL,5,17887,'2021-10-01 06:45:00',NULL,NULL,'2022-01-06 06:52:11','2022-01-06 06:52:11'),(94217,5,NULL,5,17887,'2021-10-01 06:45:00',NULL,NULL,'2022-01-07 01:43:10','2022-01-07 01:43:10'),(94222,5,NULL,5,17887,'2021-10-01 06:45:00',NULL,NULL,'2022-01-07 01:55:42','2022-01-07 01:55:42'),(94223,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 02:23:12','2022-01-17 02:23:12'),(94430,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:37:37','2022-01-17 03:37:37'),(94431,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:37:58','2022-01-17 03:37:58'),(94432,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:38:19','2022-01-17 03:38:19'),(94433,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:38:40','2022-01-17 03:38:40'),(94434,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:39:02','2022-01-17 03:39:02'),(94435,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:39:23','2022-01-17 03:39:23'),(94436,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:39:44','2022-01-17 03:39:44'),(94437,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:40:05','2022-01-17 03:40:05'),(94438,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:41:15','2022-01-17 03:41:15'),(94439,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:41:28','2022-01-17 03:41:28'),(94440,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:41:49','2022-01-17 03:41:49'),(94441,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:42:10','2022-01-17 03:42:10'),(94442,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:42:32','2022-01-17 03:42:32'),(94443,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:42:53','2022-01-17 03:42:53'),(94444,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:43:14','2022-01-17 03:43:14'),(94445,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:43:35','2022-01-17 03:43:35'),(94446,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:43:56','2022-01-17 03:43:56'),(94447,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:44:17','2022-01-17 03:44:17'),(94448,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:44:39','2022-01-17 03:44:39'),(94449,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:45:05','2022-01-17 03:45:05'),(94450,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:45:27','2022-01-17 03:45:27'),(94451,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:45:45','2022-01-17 03:45:45'),(94452,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:46:05','2022-01-17 03:46:05'),(94453,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:46:26','2022-01-17 03:46:26'),(94454,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:46:47','2022-01-17 03:46:47'),(94455,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:47:09','2022-01-17 03:47:09'),(94456,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:47:30','2022-01-17 03:47:30'),(94457,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:47:51','2022-01-17 03:47:51'),(94458,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:48:12','2022-01-17 03:48:12'),(94459,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:48:33','2022-01-17 03:48:33'),(94460,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:48:55','2022-01-17 03:48:55'),(94461,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:49:16','2022-01-17 03:49:16'),(94462,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:49:37','2022-01-17 03:49:37'),(94463,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:49:59','2022-01-17 03:49:59'),(94464,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:50:20','2022-01-17 03:50:20'),(94465,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:50:41','2022-01-17 03:50:41'),(94466,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:51:03','2022-01-17 03:51:03'),(94467,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:51:24','2022-01-17 03:51:24'),(94468,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:51:45','2022-01-17 03:51:45'),(94469,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:52:06','2022-01-17 03:52:06'),(94470,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:52:27','2022-01-17 03:52:27'),(94471,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:52:49','2022-01-17 03:52:49'),(94472,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:53:13','2022-01-17 03:53:13'),(94473,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:53:31','2022-01-17 03:53:31'),(94474,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:53:53','2022-01-17 03:53:53'),(94475,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:54:14','2022-01-17 03:54:14'),(94476,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:54:35','2022-01-17 03:54:35'),(94477,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:54:56','2022-01-17 03:54:56'),(94478,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:55:17','2022-01-17 03:55:17'),(94479,4,NULL,4,17893,'2022-01-17 02:23:00',NULL,NULL,'2022-01-17 03:55:38','2022-01-17 03:55:38'),(97267,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2022-01-20 03:49:05','2022-01-20 03:49:05'),(97269,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2022-01-20 04:02:30','2022-01-20 04:02:30'),(97272,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2022-01-27 07:08:35','2022-01-27 07:08:35'),(97274,5,NULL,5,1,'2021-08-26 23:30:00',NULL,NULL,'2022-01-30 04:05:12','2022-01-30 04:05:12'),(97276,5,NULL,5,17887,'2021-10-01 06:45:00',NULL,NULL,'2022-02-08 03:26:34','2022-02-08 03:26:34'),(97278,5,NULL,5,17887,'2021-10-01 06:45:00',NULL,NULL,'2022-02-08 03:37:36','2022-02-08 03:37:36'),(97280,5,NULL,5,17887,'2021-10-01 06:45:00',NULL,NULL,'2022-02-08 03:38:29','2022-02-08 03:38:29'),(97283,5,NULL,5,17887,'2021-10-01 06:45:00',NULL,NULL,'2022-02-08 03:42:40','2022-02-08 03:42:40'),(97284,5,NULL,5,17887,'2021-10-01 06:45:00',NULL,NULL,'2022-02-08 03:43:45','2022-02-08 03:43:45'),(97286,5,NULL,5,17887,'2021-10-01 06:45:00',NULL,NULL,'2022-02-08 03:47:18','2022-02-08 03:47:18'),(97338,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:11:37','2022-02-08 21:11:37'),(97339,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:11:57','2022-02-08 21:11:57'),(97340,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:12:17','2022-02-08 21:12:17'),(97341,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:12:37','2022-02-08 21:12:37'),(97342,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:12:57','2022-02-08 21:12:57'),(97343,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:13:17','2022-02-08 21:13:17'),(97344,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:13:37','2022-02-08 21:13:37'),(97345,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:13:57','2022-02-08 21:13:57'),(97346,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:14:17','2022-02-08 21:14:17'),(97347,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:14:37','2022-02-08 21:14:37'),(97348,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:14:57','2022-02-08 21:14:57'),(97349,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:15:17','2022-02-08 21:15:17'),(97350,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:15:37','2022-02-08 21:15:37'),(97351,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:15:57','2022-02-08 21:15:57'),(97352,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:16:17','2022-02-08 21:16:17'),(97353,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:16:37','2022-02-08 21:16:37'),(97354,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:16:57','2022-02-08 21:16:57'),(97355,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:17:17','2022-02-08 21:17:17'),(97356,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:17:37','2022-02-08 21:17:37'),(97357,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:17:57','2022-02-08 21:17:57'),(97358,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:18:17','2022-02-08 21:18:17'),(97359,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:18:38','2022-02-08 21:18:38'),(97360,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:18:58','2022-02-08 21:18:58'),(97361,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:19:17','2022-02-08 21:19:17'),(97362,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:19:38','2022-02-08 21:19:38'),(97363,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:19:58','2022-02-08 21:19:58'),(97364,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:20:18','2022-02-08 21:20:18'),(97365,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:20:38','2022-02-08 21:20:38'),(97366,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:20:58','2022-02-08 21:20:58'),(97367,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:21:18','2022-02-08 21:21:18'),(97368,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:21:38','2022-02-08 21:21:38'),(97369,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:21:58','2022-02-08 21:21:58'),(97370,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:22:19','2022-02-08 21:22:19'),(97371,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:22:39','2022-02-08 21:22:39'),(97372,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:22:59','2022-02-08 21:22:59'),(97373,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:23:19','2022-02-08 21:23:19'),(97374,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:23:39','2022-02-08 21:23:39'),(97375,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:23:59','2022-02-08 21:23:59'),(97376,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:24:19','2022-02-08 21:24:19'),(97377,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:24:39','2022-02-08 21:24:39'),(97378,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:24:59','2022-02-08 21:24:59'),(97379,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:25:19','2022-02-08 21:25:19'),(97380,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:25:39','2022-02-08 21:25:39'),(97381,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:25:59','2022-02-08 21:25:59'),(97382,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:26:19','2022-02-08 21:26:19'),(97383,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:26:39','2022-02-08 21:26:39'),(97384,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:26:59','2022-02-08 21:26:59'),(97385,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 21:27:19','2022-02-08 21:27:19'),(97386,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 22:38:47','2022-02-08 22:38:47'),(97387,4,NULL,4,17956,'2021-09-13 05:02:00',NULL,NULL,'2022-02-08 23:32:11','2022-02-08 23:32:11'),(97390,5,NULL,5,17887,'2021-10-01 06:45:00',NULL,NULL,'2022-02-09 00:57:55','2022-02-09 00:57:55'),(99934,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2022-02-09 02:35:48','2022-02-09 02:35:48'),(103512,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2022-02-09 23:16:11','2022-02-09 23:16:11'),(103513,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2022-02-09 23:16:31','2022-02-09 23:16:31'),(103514,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2022-02-09 23:16:51','2022-02-09 23:16:51'),(103515,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2022-02-09 23:17:11','2022-02-09 23:17:11'),(103516,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2022-02-09 23:17:31','2022-02-09 23:17:31'),(103517,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2022-02-09 23:17:51','2022-02-09 23:17:51'),(103518,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2022-02-09 23:18:11','2022-02-09 23:18:11'),(103519,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2022-02-09 23:18:31','2022-02-09 23:18:31'),(103520,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2022-02-09 23:18:52','2022-02-09 23:18:52'),(103521,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2022-02-09 23:19:11','2022-02-09 23:19:11'),(103522,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2022-02-09 23:19:31','2022-02-09 23:19:31'),(103523,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2022-02-09 23:19:51','2022-02-09 23:19:51'),(103524,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2022-02-09 23:20:11','2022-02-09 23:20:11'),(103525,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2022-02-09 23:20:45','2022-02-09 23:20:45'),(103526,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2022-02-09 23:21:04','2022-02-09 23:21:04'),(103527,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2022-02-09 23:21:24','2022-02-09 23:21:24'),(103528,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2022-02-09 23:21:44','2022-02-09 23:21:44'),(103529,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2022-02-09 23:22:04','2022-02-09 23:22:04'),(103530,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2022-02-09 23:22:24','2022-02-09 23:22:24'),(103531,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2022-02-09 23:22:44','2022-02-09 23:22:44'),(103532,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2022-02-09 23:23:05','2022-02-09 23:23:05'),(103533,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2022-02-09 23:23:25','2022-02-09 23:23:25'),(103534,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2022-02-09 23:23:45','2022-02-09 23:23:45'),(103535,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2022-02-09 23:24:04','2022-02-09 23:24:04'),(103536,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2022-02-09 23:24:25','2022-02-09 23:24:25'),(103537,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2022-02-09 23:24:44','2022-02-09 23:24:44'),(103538,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2022-02-09 23:25:05','2022-02-09 23:25:05'),(103539,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2022-02-09 23:25:24','2022-02-09 23:25:24'),(103540,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2022-02-09 23:35:11','2022-02-09 23:35:11'),(103541,4,NULL,4,1,'2021-06-16 00:27:00',NULL,NULL,'2022-02-09 23:35:54','2022-02-09 23:35:54'),(120588,8,NULL,8,NULL,'2021-06-21 06:24:00',NULL,NULL,'2022-02-22 23:50:42','2022-02-22 23:50:42'),(120590,8,NULL,8,NULL,'2021-06-21 06:24:00',NULL,NULL,'2022-02-22 23:52:06','2022-02-22 23:52:06'),(120623,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2022-02-23 02:56:20','2022-02-23 02:56:20'),(123480,8,NULL,8,NULL,'2021-06-21 06:24:00',NULL,NULL,'2022-02-23 23:10:01','2022-02-23 23:10:01'),(123482,8,NULL,8,NULL,'2021-06-21 06:24:00',NULL,NULL,'2022-02-23 23:10:12','2022-02-23 23:10:12'),(123484,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2022-02-28 04:42:58','2022-02-28 04:42:58'),(139967,5,NULL,5,17887,'2022-01-29 01:32:00',NULL,NULL,'2022-04-21 04:01:59','2022-08-15 02:54:41'),(139968,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2022-04-21 04:02:00','2022-04-21 04:02:00'),(139970,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2022-04-21 04:09:31','2022-04-21 04:09:31'),(139972,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2022-04-21 04:16:36','2022-04-21 04:16:36'),(139973,5,NULL,5,17887,'2021-09-03 06:26:00',NULL,NULL,'2022-04-21 04:17:13','2022-04-21 04:17:13'),(139979,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2022-04-21 05:52:06','2022-04-21 05:52:06'),(139981,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2022-04-21 05:53:07','2022-04-21 05:53:07'),(139983,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2022-04-21 05:56:43','2022-04-21 05:56:43'),(139985,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2022-04-21 05:59:36','2022-04-21 05:59:36'),(139987,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2022-04-21 06:23:49','2022-04-21 06:23:49'),(139989,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2022-04-26 01:35:00','2022-04-26 01:35:00'),(140013,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-05-05 23:48:29','2022-05-05 23:48:29'),(140014,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-05-05 23:52:17','2022-05-05 23:52:17'),(140016,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-05-06 00:20:33','2022-05-06 00:20:33'),(140018,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-05-06 00:21:23','2022-05-06 00:21:23'),(140020,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-05-06 00:23:13','2022-05-06 00:23:13'),(140022,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-05-06 00:24:49','2022-05-06 00:24:49'),(140024,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-05-06 00:45:00','2022-05-06 00:45:00'),(140025,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-05-06 00:45:42','2022-05-06 00:45:42'),(140027,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-05-06 00:46:55','2022-05-06 00:46:55'),(140029,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-05-06 00:47:13','2022-05-06 00:47:13'),(140031,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-05-06 00:48:08','2022-05-06 00:48:08'),(140032,5,NULL,5,1,'2021-07-16 03:13:00',NULL,NULL,'2022-05-06 00:48:46','2022-05-06 00:48:46'),(140034,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-05-06 00:49:41','2022-05-06 00:49:41'),(140036,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-05-06 00:50:13','2022-05-06 00:50:13'),(140038,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-05-06 00:50:23','2022-05-06 00:50:23'),(140040,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-05-06 00:50:54','2022-05-06 00:50:54'),(140042,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-05-06 00:51:48','2022-05-06 00:51:48'),(140044,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-05-06 00:52:39','2022-05-06 00:52:39'),(140045,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-05-06 00:52:56','2022-05-06 00:52:56'),(140047,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-05-06 00:54:04','2022-05-06 00:54:04'),(140049,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-05-06 00:57:20','2022-05-06 00:57:20'),(140051,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-05-06 01:07:35','2022-05-06 01:07:35'),(140053,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-05-09 02:55:19','2022-05-09 02:55:19'),(140055,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-05-09 03:32:34','2022-05-09 03:32:34'),(140058,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-05-09 03:38:16','2022-05-09 03:38:16'),(140060,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-05-09 03:59:14','2022-05-09 03:59:14'),(140061,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-05-09 03:59:42','2022-05-09 03:59:42'),(140067,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-05-09 04:02:49','2022-05-09 04:02:49'),(140070,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-05-09 04:38:50','2022-05-09 04:38:50'),(140071,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-05-09 04:38:59','2022-05-09 04:38:59'),(140073,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-05-09 04:39:17','2022-05-09 04:39:17'),(140074,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-05-09 04:39:44','2022-05-09 04:39:44'),(140077,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-05-09 04:56:16','2022-05-09 04:56:16'),(140078,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-05-09 04:56:24','2022-05-09 04:56:24'),(140081,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-05-09 04:56:57','2022-05-09 04:56:57'),(140082,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-05-09 04:57:07','2022-05-09 04:57:07'),(140083,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-05-09 04:57:42','2022-05-09 04:57:42'),(140084,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-05-09 05:41:34','2022-05-09 05:41:34'),(140105,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-05-12 03:26:42','2022-05-12 03:26:42'),(140107,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-05-12 06:39:12','2022-05-12 06:39:12'),(140109,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-05-12 07:42:41','2022-05-12 07:42:41'),(140111,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-05-13 00:03:12','2022-05-13 00:03:12'),(140113,5,NULL,5,17887,'2021-09-10 01:03:00',NULL,NULL,'2022-05-16 04:02:10','2022-05-16 04:02:10'),(140115,5,NULL,5,17887,'2021-09-10 01:03:00',NULL,NULL,'2022-05-16 04:02:36','2022-05-16 04:02:36'),(140117,5,NULL,5,17887,'2021-09-10 01:03:00',NULL,NULL,'2022-05-16 04:03:16','2022-05-16 04:03:16'),(140119,5,NULL,5,17887,'2021-09-10 01:03:00',NULL,NULL,'2022-05-16 04:04:22','2022-05-16 04:04:22'),(140121,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-05-16 04:28:37','2022-05-16 04:28:37'),(140123,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-05-17 02:45:06','2022-05-17 02:45:06'),(140124,10,NULL,10,NULL,'2021-09-27 03:32:00',NULL,NULL,'2022-05-17 03:06:41','2022-05-17 03:06:41'),(140125,14,NULL,14,NULL,'2021-11-24 05:25:00',NULL,NULL,'2022-05-17 23:19:11','2022-05-17 23:19:11'),(140126,14,NULL,14,NULL,'2021-11-24 05:25:00',NULL,NULL,'2022-05-17 23:19:12','2022-05-17 23:19:12'),(140127,8,NULL,8,NULL,'2021-06-21 06:24:00',NULL,NULL,'2022-05-17 23:19:13','2022-05-17 23:19:13'),(140128,8,NULL,8,NULL,'2021-06-21 06:24:00',NULL,NULL,'2022-05-17 23:19:14','2022-05-17 23:19:14'),(140129,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2022-05-17 23:19:15','2022-05-17 23:19:15'),(140136,9,NULL,9,NULL,'2021-09-10 01:58:00',NULL,NULL,'2022-05-17 23:19:16','2022-05-17 23:19:16'),(140137,10,NULL,10,NULL,'2021-09-27 03:32:00',NULL,NULL,'2022-05-17 23:19:17','2022-05-17 23:19:17'),(140138,10,NULL,10,NULL,'2021-09-27 03:32:00',NULL,NULL,'2022-05-17 23:19:18','2022-05-17 23:19:18'),(140139,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2022-05-17 23:19:19','2022-05-17 23:19:19'),(140140,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2022-05-17 23:19:20','2022-05-17 23:19:20'),(140141,11,NULL,11,NULL,'2021-11-09 23:38:00',NULL,NULL,'2022-05-17 23:19:21','2022-05-17 23:19:21'),(140142,11,NULL,11,NULL,'2021-11-09 23:38:00',NULL,NULL,'2022-05-17 23:19:22','2022-05-17 23:19:22'),(140143,13,NULL,13,NULL,'2021-11-15 01:51:00',NULL,NULL,'2022-05-17 23:19:23','2022-05-17 23:19:23'),(140144,13,NULL,13,NULL,'2021-11-15 01:51:00',NULL,NULL,'2022-05-17 23:19:24','2022-05-17 23:19:24'),(140146,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-05-18 00:47:09','2022-05-18 00:47:09'),(140148,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-05-18 00:51:56','2022-05-18 00:51:56'),(140153,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2022-05-30 01:16:35','2022-05-30 01:16:35'),(140157,6,NULL,6,17887,'2021-07-23 05:37:00',NULL,NULL,'2022-05-30 01:17:28','2022-05-30 01:17:28'),(140159,6,NULL,6,17887,'2021-07-23 05:37:00',NULL,NULL,'2022-05-30 01:17:47','2022-05-30 01:17:47'),(140160,6,NULL,6,17934,'2021-02-15 05:31:00',NULL,NULL,'2022-05-30 01:18:11','2022-05-30 01:18:11'),(140162,6,NULL,6,1,'2020-10-22 23:54:00',NULL,NULL,'2022-05-30 01:18:23','2022-05-30 01:18:23'),(140163,6,NULL,6,17954,'2018-11-14 08:55:00',NULL,NULL,'2022-05-30 01:18:33','2022-05-30 01:18:33'),(140165,6,NULL,6,1,'2018-05-21 07:01:00',NULL,NULL,'2022-05-30 01:18:46','2022-05-30 01:18:46'),(140166,6,NULL,6,17954,'2018-04-26 00:39:00',NULL,NULL,'2022-05-30 01:18:57','2022-05-30 01:18:57'),(140168,6,NULL,6,17956,'2018-04-16 05:39:00',NULL,NULL,'2022-05-30 01:19:07','2022-05-30 01:19:07'),(140169,6,NULL,6,17956,'2017-10-06 06:10:00',NULL,NULL,'2022-05-30 01:19:18','2022-05-30 01:19:18'),(140170,6,NULL,6,1,'2015-03-05 06:45:00',NULL,NULL,'2022-05-30 01:19:30','2022-05-30 01:19:30'),(140171,6,NULL,6,17956,'2014-03-04 07:00:00',NULL,NULL,'2022-05-30 01:19:40','2022-05-30 01:19:40'),(140172,6,NULL,6,1,'2013-11-06 23:54:00',NULL,NULL,'2022-05-30 01:19:53','2022-05-30 01:19:53'),(140173,6,NULL,6,1,'2013-10-07 23:24:00',NULL,NULL,'2022-05-30 01:20:04','2022-05-30 01:20:04'),(140174,6,NULL,6,17956,'2013-05-21 01:57:00',NULL,NULL,'2022-05-30 01:20:14','2022-05-30 01:20:14'),(140176,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-05-30 01:20:27','2022-05-30 01:20:27'),(140178,5,NULL,5,17887,'2021-10-01 06:45:00',NULL,NULL,'2022-05-30 01:20:35','2022-05-30 01:20:35'),(140180,5,NULL,5,17887,'2021-09-10 02:07:00',NULL,NULL,'2022-05-30 01:21:54','2022-05-30 01:21:54'),(140181,5,NULL,5,17887,'2021-09-10 01:47:00',NULL,NULL,'2022-05-30 01:22:14','2022-05-30 01:22:14'),(140182,5,NULL,5,17887,'2021-09-10 01:37:00',NULL,NULL,'2022-05-30 01:22:34','2022-05-30 01:22:34'),(140183,5,NULL,5,17887,'2021-09-10 01:37:00',NULL,NULL,'2022-05-30 01:22:36','2022-05-30 01:22:36'),(140184,5,NULL,5,17887,'2021-09-10 01:29:00',NULL,NULL,'2022-05-30 01:22:52','2022-05-30 01:22:52'),(140185,5,NULL,5,17887,'2021-09-10 01:24:00',NULL,NULL,'2022-05-30 01:23:12','2022-05-30 01:23:12'),(140187,5,NULL,5,17887,'2021-09-10 01:24:00',NULL,NULL,'2022-05-30 01:24:10','2022-05-30 01:24:10'),(140189,5,NULL,5,17887,'2021-09-10 01:18:00',NULL,NULL,'2022-05-30 01:24:58','2022-05-30 01:24:58'),(140191,5,NULL,5,17887,'2021-09-10 01:03:00',NULL,NULL,'2022-05-30 01:26:47','2022-05-30 01:26:47'),(140193,5,NULL,5,17887,'2021-09-10 01:03:00',NULL,NULL,'2022-05-30 01:28:56','2022-05-30 01:28:56'),(140195,5,NULL,5,17887,'2021-09-03 06:50:00',NULL,NULL,'2022-05-30 01:29:36','2022-05-30 01:29:36'),(140197,5,NULL,5,17887,'2021-09-10 01:03:00',NULL,NULL,'2022-05-30 01:30:24','2022-05-30 01:30:24'),(140199,5,NULL,5,17887,'2021-09-03 06:26:00',NULL,NULL,'2022-05-30 01:31:34','2022-05-30 01:31:34'),(140201,5,NULL,5,17887,'2021-08-06 06:46:00',NULL,NULL,'2022-05-30 01:32:36','2022-05-30 01:32:36'),(140205,5,NULL,5,17887,'2021-08-06 06:46:00',NULL,NULL,'2022-05-30 01:33:15','2022-05-30 01:33:15'),(140206,5,NULL,5,1,'2021-07-16 03:13:00',NULL,NULL,'2022-05-30 01:34:00','2022-05-30 01:34:00'),(140208,5,NULL,5,17887,'2021-07-15 23:00:00',NULL,NULL,'2022-05-30 01:34:51','2022-05-30 01:34:51'),(140210,5,NULL,5,17887,'2021-07-15 23:00:00',NULL,NULL,'2022-05-30 01:36:15','2022-05-30 01:36:15'),(140212,5,NULL,5,17887,'2021-07-15 23:00:00',NULL,NULL,'2022-05-30 01:37:10','2022-05-30 01:37:10'),(140214,5,NULL,5,17887,'2021-05-26 03:39:00',NULL,NULL,'2022-05-30 01:37:38','2022-05-30 01:37:38'),(140216,5,NULL,5,17887,'2021-05-26 03:32:00',NULL,NULL,'2022-05-30 01:38:27','2022-05-30 01:38:27'),(140218,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2022-05-30 01:39:39','2022-05-30 01:39:39'),(140220,5,NULL,5,17887,'2021-05-26 01:45:00',NULL,NULL,'2022-05-30 01:40:48','2022-05-30 01:40:48'),(140222,5,NULL,5,17887,'2021-05-26 01:40:00',NULL,NULL,'2022-05-30 01:41:22','2022-05-30 01:41:22'),(140224,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2022-05-30 01:42:16','2022-05-30 01:42:16'),(140226,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2022-05-30 01:42:50','2022-05-30 01:42:50'),(140230,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2022-05-30 01:44:13','2022-05-30 01:44:13'),(140232,5,NULL,5,1,'2021-05-14 06:27:00',NULL,NULL,'2022-05-30 01:45:01','2022-05-30 01:45:01'),(140233,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-05-31 04:26:01','2022-05-31 04:26:01'),(140235,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-05-31 06:08:14','2022-05-31 06:08:14'),(140237,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-05-31 06:21:51','2022-05-31 06:21:51'),(140245,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-06-02 03:48:39','2022-06-02 03:48:39'),(140246,17,NULL,17,NULL,'2022-06-05 23:23:00',NULL,NULL,'2022-06-05 23:23:59','2022-06-05 23:23:59'),(140247,17,NULL,17,NULL,'2022-06-05 23:23:00',NULL,NULL,'2022-06-05 23:23:59','2022-06-05 23:23:59'),(140248,17,NULL,17,NULL,'2022-06-05 23:23:00',NULL,NULL,'2022-06-05 23:24:01','2022-06-05 23:24:01'),(140249,17,NULL,17,NULL,'2022-06-05 23:23:00',NULL,NULL,'2022-06-05 23:24:03','2022-06-05 23:24:03'),(140250,17,NULL,17,NULL,'2022-06-05 23:23:00',NULL,NULL,'2022-06-05 23:24:04','2022-06-05 23:24:04'),(140252,17,NULL,17,NULL,'2022-06-05 23:23:00',NULL,NULL,'2022-06-05 23:35:20','2022-06-05 23:35:20'),(140254,17,NULL,17,NULL,'2022-06-05 23:23:00',NULL,NULL,'2022-06-05 23:35:51','2022-06-05 23:35:51'),(140427,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-06-12 23:56:38','2022-06-12 23:56:38'),(140428,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2022-06-14 01:21:10','2022-06-14 01:21:10'),(140516,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-06-19 22:46:14','2022-06-19 22:46:14'),(141312,1,NULL,1,17893,'2015-06-30 14:00:00',NULL,NULL,'2022-06-23 06:46:21','2022-06-23 06:46:21'),(141313,1,NULL,1,17893,'2015-06-30 14:00:00',NULL,NULL,'2022-06-23 06:46:21','2022-06-23 06:46:21'),(141314,1,NULL,1,17893,'2015-07-31 14:00:00',NULL,NULL,'2022-06-23 06:46:23','2022-06-23 06:46:23'),(141315,1,NULL,1,17893,'2015-07-31 14:00:00',NULL,NULL,'2022-06-23 06:46:23','2022-06-23 06:46:23'),(141316,1,NULL,1,17893,'2015-08-31 14:00:00',NULL,NULL,'2022-06-23 06:46:25','2022-06-23 06:46:25'),(141317,1,NULL,1,17893,'2015-08-31 14:00:00',NULL,NULL,'2022-06-23 06:46:25','2022-06-23 06:46:25'),(141318,1,NULL,1,17893,'2015-09-30 14:00:00',NULL,NULL,'2022-06-23 06:46:27','2022-06-23 06:46:27'),(141319,1,NULL,1,17893,'2015-09-30 14:00:00',NULL,NULL,'2022-06-23 06:46:27','2022-06-23 06:46:27'),(141320,1,NULL,1,17893,'2015-10-31 14:00:00',NULL,NULL,'2022-06-23 06:46:29','2022-06-23 06:46:29'),(141321,1,NULL,1,17893,'2015-10-31 14:00:00',NULL,NULL,'2022-06-23 06:46:29','2022-06-23 06:46:29'),(141322,1,NULL,1,17893,'2015-11-30 14:00:00',NULL,NULL,'2022-06-23 06:46:30','2022-06-23 06:46:30'),(141323,1,NULL,1,17893,'2015-11-30 14:00:00',NULL,NULL,'2022-06-23 06:46:30','2022-06-23 06:46:30'),(141324,1,NULL,1,17893,'2015-12-31 14:00:00',NULL,NULL,'2022-06-23 06:46:32','2022-06-23 06:46:32'),(141325,1,NULL,1,17893,'2015-12-31 14:00:00',NULL,NULL,'2022-06-23 06:46:32','2022-06-23 06:46:32'),(141326,1,NULL,1,17893,'2016-01-31 14:00:00',NULL,NULL,'2022-06-23 06:46:33','2022-06-23 06:46:33'),(141327,1,NULL,1,17893,'2016-01-31 14:00:00',NULL,NULL,'2022-06-23 06:46:33','2022-06-23 06:46:33'),(141328,1,NULL,1,17893,'2016-02-29 14:00:00',NULL,NULL,'2022-06-23 06:46:35','2022-06-23 06:46:35'),(141329,1,NULL,1,17893,'2016-02-29 14:00:00',NULL,NULL,'2022-06-23 06:46:35','2022-06-23 06:46:35'),(141330,1,NULL,1,17893,'2016-03-31 14:00:00',NULL,NULL,'2022-06-23 06:46:37','2022-06-23 06:46:37'),(141331,1,NULL,1,17893,'2016-03-31 14:00:00',NULL,NULL,'2022-06-23 06:46:37','2022-06-23 06:46:37'),(141332,1,NULL,1,17893,'2016-04-30 14:00:00',NULL,NULL,'2022-06-23 06:46:39','2022-06-23 06:46:39'),(141333,1,NULL,1,17893,'2016-04-30 14:00:00',NULL,NULL,'2022-06-23 06:46:39','2022-06-23 06:46:39'),(141334,1,NULL,1,17893,'2016-05-31 14:00:00',NULL,NULL,'2022-06-23 06:46:41','2022-06-23 06:46:41'),(141335,1,NULL,1,17893,'2016-05-31 14:00:00',NULL,NULL,'2022-06-23 06:46:41','2022-06-23 06:46:41'),(141336,1,NULL,1,17893,'2016-06-30 14:00:00',NULL,NULL,'2022-06-23 06:46:43','2022-06-23 06:46:43'),(141337,1,NULL,1,17893,'2016-06-30 14:00:00',NULL,NULL,'2022-06-23 06:46:43','2022-06-23 06:46:43'),(141338,1,NULL,1,17893,'2016-07-31 14:00:00',NULL,NULL,'2022-06-23 06:46:45','2022-06-23 06:46:45'),(141339,1,NULL,1,17893,'2016-07-31 14:00:00',NULL,NULL,'2022-06-23 06:46:45','2022-06-23 06:46:45'),(141340,1,NULL,1,17893,'2016-08-31 14:00:00',NULL,NULL,'2022-06-23 06:46:46','2022-06-23 06:46:46'),(141341,1,NULL,1,17893,'2016-08-31 14:00:00',NULL,NULL,'2022-06-23 06:46:46','2022-06-23 06:46:46'),(141342,1,NULL,1,17893,'2016-09-30 14:00:00',NULL,NULL,'2022-06-23 06:46:48','2022-06-23 06:46:48'),(141343,1,NULL,1,17893,'2016-09-30 14:00:00',NULL,NULL,'2022-06-23 06:46:48','2022-06-23 06:46:48'),(141344,1,NULL,1,17893,'2016-10-31 14:00:00',NULL,NULL,'2022-06-23 06:46:49','2022-06-23 06:46:49'),(141345,1,NULL,1,17893,'2016-10-31 14:00:00',NULL,NULL,'2022-06-23 06:46:49','2022-06-23 06:46:49'),(141346,1,NULL,1,17893,'2016-11-30 14:00:00',NULL,NULL,'2022-06-23 06:46:50','2022-06-23 06:46:50'),(141347,1,NULL,1,17893,'2016-11-30 14:00:00',NULL,NULL,'2022-06-23 06:46:50','2022-06-23 06:46:50'),(141348,1,NULL,1,17893,'2016-12-31 14:00:00',NULL,NULL,'2022-06-23 06:46:52','2022-06-23 06:46:52'),(141349,1,NULL,1,17893,'2016-12-31 14:00:00',NULL,NULL,'2022-06-23 06:46:52','2022-06-23 06:46:52'),(141350,1,NULL,1,17893,'2017-01-31 14:00:00',NULL,NULL,'2022-06-23 06:46:54','2022-06-23 06:46:54'),(141351,1,NULL,1,17893,'2017-01-31 14:00:00',NULL,NULL,'2022-06-23 06:46:54','2022-06-23 06:46:54'),(141352,1,NULL,1,17893,'2017-02-28 14:00:00',NULL,NULL,'2022-06-23 06:46:56','2022-06-23 06:46:56'),(141353,1,NULL,1,17893,'2017-02-28 14:00:00',NULL,NULL,'2022-06-23 06:46:56','2022-06-23 06:46:56'),(141354,1,NULL,1,17893,'2017-03-31 14:00:00',NULL,NULL,'2022-06-23 06:46:57','2022-06-23 06:46:57'),(141355,1,NULL,1,17893,'2017-03-31 14:00:00',NULL,NULL,'2022-06-23 06:46:57','2022-06-23 06:46:57'),(141356,1,NULL,1,17893,'2017-04-30 14:00:00',NULL,NULL,'2022-06-23 06:46:59','2022-06-23 06:46:59'),(141357,1,NULL,1,17893,'2017-04-30 14:00:00',NULL,NULL,'2022-06-23 06:46:59','2022-06-23 06:46:59'),(141358,1,NULL,1,17893,'2017-05-31 14:00:00',NULL,NULL,'2022-06-23 06:47:01','2022-06-23 06:47:01'),(141359,1,NULL,1,17893,'2017-05-31 14:00:00',NULL,NULL,'2022-06-23 06:47:01','2022-06-23 06:47:01'),(141360,1,NULL,1,17893,'2017-06-30 14:00:00',NULL,NULL,'2022-06-23 06:47:02','2022-06-23 06:47:02'),(141361,1,NULL,1,17893,'2017-06-30 14:00:00',NULL,NULL,'2022-06-23 06:47:02','2022-06-23 06:47:02'),(141362,1,NULL,1,17893,'2017-07-31 14:00:00',NULL,NULL,'2022-06-23 06:47:04','2022-06-23 06:47:04'),(141363,1,NULL,1,17893,'2017-07-31 14:00:00',NULL,NULL,'2022-06-23 06:47:04','2022-06-23 06:47:04'),(141364,1,NULL,1,17893,'2017-08-31 14:00:00',NULL,NULL,'2022-06-23 06:47:06','2022-06-23 06:47:06'),(141365,1,NULL,1,17893,'2017-08-31 14:00:00',NULL,NULL,'2022-06-23 06:47:06','2022-06-23 06:47:06'),(141366,1,NULL,1,17893,'2017-09-30 14:00:00',NULL,NULL,'2022-06-23 06:47:08','2022-06-23 06:47:08'),(141367,1,NULL,1,17893,'2017-09-30 14:00:00',NULL,NULL,'2022-06-23 06:47:08','2022-06-23 06:47:08'),(141368,1,NULL,1,17893,'2017-10-31 14:00:00',NULL,NULL,'2022-06-23 06:47:10','2022-06-23 06:47:10'),(141369,1,NULL,1,17893,'2017-10-31 14:00:00',NULL,NULL,'2022-06-23 06:47:10','2022-06-23 06:47:10'),(141370,1,NULL,1,17893,'2017-11-30 14:00:00',NULL,NULL,'2022-06-23 06:47:12','2022-06-23 06:47:12'),(141371,1,NULL,1,17893,'2017-11-30 14:00:00',NULL,NULL,'2022-06-23 06:47:12','2022-06-23 06:47:12'),(141372,1,NULL,1,17893,'2017-12-31 14:00:00',NULL,NULL,'2022-06-23 06:47:14','2022-06-23 06:47:14'),(141373,1,NULL,1,17893,'2017-12-31 14:00:00',NULL,NULL,'2022-06-23 06:47:14','2022-06-23 06:47:14'),(141374,1,NULL,1,17893,'2018-01-31 14:00:00',NULL,NULL,'2022-06-23 06:47:16','2022-06-23 06:47:16'),(141375,1,NULL,1,17893,'2018-01-31 14:00:00',NULL,NULL,'2022-06-23 06:47:16','2022-06-23 06:47:16'),(141376,1,NULL,1,17893,'2018-02-28 14:00:00',NULL,NULL,'2022-06-23 06:47:18','2022-06-23 06:47:18'),(141377,1,NULL,1,17893,'2018-02-28 14:00:00',NULL,NULL,'2022-06-23 06:47:18','2022-06-23 06:47:18'),(141378,1,NULL,1,17893,'2018-03-31 14:00:00',NULL,NULL,'2022-06-23 06:47:19','2022-06-23 06:47:19'),(141379,1,NULL,1,17893,'2018-03-31 14:00:00',NULL,NULL,'2022-06-23 06:47:19','2022-06-23 06:47:19'),(141380,1,NULL,1,17893,'2018-04-30 14:00:00',NULL,NULL,'2022-06-23 06:47:21','2022-06-23 06:47:21'),(141381,1,NULL,1,17893,'2018-04-30 14:00:00',NULL,NULL,'2022-06-23 06:47:21','2022-06-23 06:47:21'),(141382,1,NULL,1,17893,'2018-05-31 14:00:00',NULL,NULL,'2022-06-23 06:47:23','2022-06-23 06:47:23'),(141383,1,NULL,1,17893,'2018-05-31 14:00:00',NULL,NULL,'2022-06-23 06:47:23','2022-06-23 06:47:23'),(141384,1,NULL,1,17893,'2018-06-30 14:00:00',NULL,NULL,'2022-06-23 06:47:25','2022-06-23 06:47:25'),(141385,1,NULL,1,17893,'2018-06-30 14:00:00',NULL,NULL,'2022-06-23 06:47:25','2022-06-23 06:47:25'),(141386,1,NULL,1,17893,'2018-07-31 14:00:00',NULL,NULL,'2022-06-23 06:47:26','2022-06-23 06:47:26'),(141387,1,NULL,1,17893,'2018-07-31 14:00:00',NULL,NULL,'2022-06-23 06:47:26','2022-06-23 06:47:26'),(141388,1,NULL,1,17893,'2018-08-31 14:00:00',NULL,NULL,'2022-06-23 06:47:28','2022-06-23 06:47:28'),(141389,1,NULL,1,17893,'2018-08-31 14:00:00',NULL,NULL,'2022-06-23 06:47:28','2022-06-23 06:47:28'),(141390,1,NULL,1,17893,'2018-09-30 14:00:00',NULL,NULL,'2022-06-23 06:47:29','2022-06-23 06:47:29'),(141391,1,NULL,1,17893,'2018-09-30 14:00:00',NULL,NULL,'2022-06-23 06:47:29','2022-06-23 06:47:29'),(141392,1,NULL,1,17893,'2018-10-31 14:00:00',NULL,NULL,'2022-06-23 06:47:31','2022-06-23 06:47:31'),(141393,1,NULL,1,17893,'2018-10-31 14:00:00',NULL,NULL,'2022-06-23 06:47:31','2022-06-23 06:47:31'),(141394,1,NULL,1,17893,'2018-11-30 14:00:00',NULL,NULL,'2022-06-23 06:47:33','2022-06-23 06:47:33'),(141395,1,NULL,1,17893,'2018-11-30 14:00:00',NULL,NULL,'2022-06-23 06:47:33','2022-06-23 06:47:33'),(141396,1,NULL,1,17893,'2018-12-31 14:00:00',NULL,NULL,'2022-06-23 06:47:35','2022-06-23 06:47:35'),(141397,1,NULL,1,17893,'2018-12-31 14:00:00',NULL,NULL,'2022-06-23 06:47:35','2022-06-23 06:47:35'),(141398,1,NULL,1,17893,'2019-01-31 14:00:00',NULL,NULL,'2022-06-23 06:47:37','2022-06-23 06:47:37'),(141399,1,NULL,1,17893,'2019-01-31 14:00:00',NULL,NULL,'2022-06-23 06:47:37','2022-06-23 06:47:37'),(141400,1,NULL,1,17893,'2019-02-28 14:00:00',NULL,NULL,'2022-06-23 06:47:39','2022-06-23 06:47:39'),(141401,1,NULL,1,17893,'2019-02-28 14:00:00',NULL,NULL,'2022-06-23 06:47:39','2022-06-23 06:47:39'),(141402,1,NULL,1,17893,'2019-03-31 14:00:00',NULL,NULL,'2022-06-23 06:47:41','2022-06-23 06:47:41'),(141403,1,NULL,1,17893,'2019-03-31 14:00:00',NULL,NULL,'2022-06-23 06:47:41','2022-06-23 06:47:41'),(141404,1,NULL,1,17893,'2019-04-30 14:00:00',NULL,NULL,'2022-06-23 06:47:42','2022-06-23 06:47:42'),(141405,1,NULL,1,17893,'2019-04-30 14:00:00',NULL,NULL,'2022-06-23 06:47:42','2022-06-23 06:47:42'),(141406,1,NULL,1,17893,'2019-05-31 14:00:00',NULL,NULL,'2022-06-23 06:47:44','2022-06-23 06:47:44'),(141407,1,NULL,1,17893,'2019-05-31 14:00:00',NULL,NULL,'2022-06-23 06:47:44','2022-06-23 06:47:44'),(141408,1,NULL,1,17893,'2019-06-30 14:00:00',NULL,NULL,'2022-06-23 06:47:46','2022-06-23 06:47:46'),(141409,1,NULL,1,17893,'2019-06-30 14:00:00',NULL,NULL,'2022-06-23 06:47:46','2022-06-23 06:47:46'),(141410,1,NULL,1,17893,'2019-07-31 14:00:00',NULL,NULL,'2022-06-23 06:47:48','2022-06-23 06:47:48'),(141411,1,NULL,1,17893,'2019-07-31 14:00:00',NULL,NULL,'2022-06-23 06:47:48','2022-06-23 06:47:48'),(141412,1,NULL,1,17893,'2019-08-31 14:00:00',NULL,NULL,'2022-06-23 06:47:50','2022-06-23 06:47:50'),(141413,1,NULL,1,17893,'2019-08-31 14:00:00',NULL,NULL,'2022-06-23 06:47:50','2022-06-23 06:47:50'),(141414,1,NULL,1,17893,'2019-09-30 14:00:00',NULL,NULL,'2022-06-23 06:47:52','2022-06-23 06:47:52'),(141415,1,NULL,1,17893,'2019-09-30 14:00:00',NULL,NULL,'2022-06-23 06:47:52','2022-06-23 06:47:52'),(141416,1,NULL,1,17893,'2019-10-31 14:00:00',NULL,NULL,'2022-06-23 06:47:54','2022-06-23 06:47:54'),(141417,1,NULL,1,17893,'2019-10-31 14:00:00',NULL,NULL,'2022-06-23 06:47:54','2022-06-23 06:47:54'),(141418,1,NULL,1,17893,'2019-11-30 14:00:00',NULL,NULL,'2022-06-23 06:47:56','2022-06-23 06:47:56'),(141419,1,NULL,1,17893,'2019-11-30 14:00:00',NULL,NULL,'2022-06-23 06:47:56','2022-06-23 06:47:56'),(141420,1,NULL,1,17893,'2019-12-31 14:00:00',NULL,NULL,'2022-06-23 06:47:58','2022-06-23 06:47:58'),(141421,1,NULL,1,17893,'2019-12-31 14:00:00',NULL,NULL,'2022-06-23 06:47:58','2022-06-23 06:47:58'),(141422,1,NULL,1,17893,'2020-01-31 14:00:00',NULL,NULL,'2022-06-23 06:48:00','2022-06-23 06:48:00'),(141423,1,NULL,1,17893,'2020-01-31 14:00:00',NULL,NULL,'2022-06-23 06:48:00','2022-06-23 06:48:00'),(141424,1,NULL,1,17893,'2020-02-29 14:00:00',NULL,NULL,'2022-06-23 06:48:01','2022-06-23 06:48:01'),(141425,1,NULL,1,17893,'2020-02-29 14:00:00',NULL,NULL,'2022-06-23 06:48:01','2022-06-23 06:48:01'),(141426,1,NULL,1,17893,'2020-03-31 14:00:00',NULL,NULL,'2022-06-23 06:48:03','2022-06-23 06:48:03'),(141427,1,NULL,1,17893,'2020-03-31 14:00:00',NULL,NULL,'2022-06-23 06:48:03','2022-06-23 06:48:03'),(141428,1,NULL,1,17893,'2020-04-30 14:00:00',NULL,NULL,'2022-06-23 06:48:05','2022-06-23 06:48:05'),(141429,1,NULL,1,17893,'2020-04-30 14:00:00',NULL,NULL,'2022-06-23 06:48:05','2022-06-23 06:48:05'),(141430,1,NULL,1,17893,'2020-05-31 14:00:00',NULL,NULL,'2022-06-23 06:48:07','2022-06-23 06:48:07'),(141431,1,NULL,1,17893,'2020-05-31 14:00:00',NULL,NULL,'2022-06-23 06:48:07','2022-06-23 06:48:07'),(141432,1,NULL,1,17893,'2020-06-30 14:00:00',NULL,NULL,'2022-06-23 06:48:09','2022-06-23 06:48:09'),(141433,1,NULL,1,17893,'2020-06-30 14:00:00',NULL,NULL,'2022-06-23 06:48:09','2022-06-23 06:48:09'),(141434,1,NULL,1,17893,'2020-07-31 14:00:00',NULL,NULL,'2022-06-23 06:48:10','2022-06-23 06:48:10'),(141435,1,NULL,1,17893,'2020-07-31 14:00:00',NULL,NULL,'2022-06-23 06:48:10','2022-06-23 06:48:10'),(141436,1,NULL,1,17893,'2020-08-31 14:00:00',NULL,NULL,'2022-06-23 06:48:12','2022-06-23 06:48:12'),(141437,1,NULL,1,17893,'2020-08-31 14:00:00',NULL,NULL,'2022-06-23 06:48:12','2022-06-23 06:48:12'),(141438,1,NULL,1,17893,'2020-09-30 14:00:00',NULL,NULL,'2022-06-23 06:48:14','2022-06-23 06:48:14'),(141439,1,NULL,1,17893,'2020-09-30 14:00:00',NULL,NULL,'2022-06-23 06:48:14','2022-06-23 06:48:14'),(141440,1,NULL,1,17893,'2020-10-31 14:00:00',NULL,NULL,'2022-06-23 06:48:16','2022-06-23 06:48:16'),(141441,1,NULL,1,17893,'2020-10-31 14:00:00',NULL,NULL,'2022-06-23 06:48:16','2022-06-23 06:48:16'),(141442,1,NULL,1,17893,'2020-11-30 14:00:00',NULL,NULL,'2022-06-23 06:48:18','2022-06-23 06:48:18'),(141443,1,NULL,1,17893,'2020-11-30 14:00:00',NULL,NULL,'2022-06-23 06:48:18','2022-06-23 06:48:18'),(141444,1,NULL,1,17893,'2020-12-31 14:00:00',NULL,NULL,'2022-06-23 06:48:20','2022-06-23 06:48:20'),(141445,1,NULL,1,17893,'2020-12-31 14:00:00',NULL,NULL,'2022-06-23 06:48:20','2022-06-23 06:48:20'),(141446,1,NULL,1,17893,'2021-01-31 14:00:00',NULL,NULL,'2022-06-23 06:48:21','2022-06-23 06:48:21'),(141447,1,NULL,1,17893,'2021-01-31 14:00:00',NULL,NULL,'2022-06-23 06:48:21','2022-06-23 06:48:21'),(141448,1,NULL,1,17893,'2021-02-28 14:00:00',NULL,NULL,'2022-06-23 06:48:23','2022-06-23 06:48:23'),(141449,1,NULL,1,17893,'2021-02-28 14:00:00',NULL,NULL,'2022-06-23 06:48:23','2022-06-23 06:48:23'),(141450,1,NULL,1,17893,'2021-03-31 14:00:00',NULL,NULL,'2022-06-23 06:48:24','2022-06-23 06:48:24'),(141451,1,NULL,1,17893,'2021-03-31 14:00:00',NULL,NULL,'2022-06-23 06:48:24','2022-06-23 06:48:24'),(141452,1,NULL,1,17893,'2021-04-30 14:00:00',NULL,NULL,'2022-06-23 06:48:26','2022-06-23 06:48:26'),(141453,1,NULL,1,17893,'2021-04-30 14:00:00',NULL,NULL,'2022-06-23 06:48:26','2022-06-23 06:48:26'),(141454,1,NULL,1,17893,'2021-05-31 14:00:00',NULL,NULL,'2022-06-23 06:48:28','2022-06-23 06:48:28'),(141455,1,NULL,1,17893,'2021-05-31 14:00:00',NULL,NULL,'2022-06-23 06:48:28','2022-06-23 06:48:28'),(141456,1,NULL,1,17893,'2021-06-30 14:00:00',NULL,NULL,'2022-06-23 06:48:30','2022-06-23 06:48:30'),(141457,1,NULL,1,17893,'2021-06-30 14:00:00',NULL,NULL,'2022-06-23 06:48:30','2022-06-23 06:48:30'),(141458,1,NULL,1,17893,'2021-07-31 14:00:00',NULL,NULL,'2022-06-23 06:48:31','2022-06-23 06:48:31'),(141459,1,NULL,1,17893,'2021-07-31 14:00:00',NULL,NULL,'2022-06-23 06:48:31','2022-06-23 06:48:31'),(141460,1,NULL,1,17893,'2021-08-31 14:00:00',NULL,NULL,'2022-06-23 06:48:33','2022-06-23 06:48:33'),(141461,1,NULL,1,17893,'2021-08-31 14:00:00',NULL,NULL,'2022-06-23 06:48:33','2022-06-23 06:48:33'),(141462,1,NULL,1,17893,'2021-09-30 14:00:00',NULL,NULL,'2022-06-23 06:48:35','2022-06-23 06:48:35'),(141463,1,NULL,1,17893,'2021-09-30 14:00:00',NULL,NULL,'2022-06-23 06:48:35','2022-06-23 06:48:35'),(141464,1,NULL,1,17893,'2021-10-31 14:00:00',NULL,NULL,'2022-06-23 06:48:37','2022-06-23 06:48:37'),(141465,1,NULL,1,17893,'2021-10-31 14:00:00',NULL,NULL,'2022-06-23 06:48:37','2022-06-23 06:48:37'),(141466,1,NULL,1,17893,'2021-11-30 14:00:00',NULL,NULL,'2022-06-23 06:48:38','2022-06-23 06:48:38'),(141467,1,NULL,1,17893,'2021-11-30 14:00:00',NULL,NULL,'2022-06-23 06:48:38','2022-06-23 06:48:38'),(141468,1,NULL,1,17893,'2021-12-31 14:00:00',NULL,NULL,'2022-06-23 06:48:39','2022-06-23 06:48:39'),(141469,1,NULL,1,17893,'2021-12-31 14:00:00',NULL,NULL,'2022-06-23 06:48:39','2022-06-23 06:48:39'),(141470,1,NULL,1,17893,'2022-01-31 14:00:00',NULL,NULL,'2022-06-23 06:48:41','2022-06-23 06:48:41'),(141471,1,NULL,1,17893,'2022-01-31 14:00:00',NULL,NULL,'2022-06-23 06:48:41','2022-06-23 06:48:41'),(141472,1,NULL,1,17893,'2022-02-28 14:00:00',NULL,NULL,'2022-06-23 06:48:43','2022-06-23 06:48:43'),(141473,1,NULL,1,17893,'2022-02-28 14:00:00',NULL,NULL,'2022-06-23 06:48:43','2022-06-23 06:48:43'),(141474,1,NULL,1,17893,'2022-03-31 14:00:00',NULL,NULL,'2022-06-23 06:48:44','2022-06-23 06:48:44'),(141475,1,NULL,1,17893,'2022-03-31 14:00:00',NULL,NULL,'2022-06-23 06:48:44','2022-06-23 06:48:44'),(141476,1,NULL,1,17893,'2022-04-30 14:00:00',NULL,NULL,'2022-06-23 06:48:45','2022-06-23 06:48:45'),(141477,1,NULL,1,17893,'2022-04-30 14:00:00',NULL,NULL,'2022-06-23 06:48:45','2022-06-23 06:48:45'),(141478,1,NULL,1,17893,'2022-05-31 14:00:00',NULL,NULL,'2022-06-23 06:48:47','2022-06-23 06:48:47'),(141479,1,NULL,1,17893,'2022-05-31 14:00:00',NULL,NULL,'2022-06-23 06:48:47','2022-06-23 06:48:47'),(141486,5,NULL,5,17887,'2021-09-10 06:06:00',NULL,NULL,'2022-06-28 00:17:02','2022-06-28 00:17:02'),(141487,5,NULL,5,17887,'2021-09-10 06:06:00',NULL,NULL,'2022-06-28 00:17:03','2022-06-28 00:17:03'),(141489,6,NULL,6,1,'2013-11-19 02:27:00',NULL,NULL,'2022-06-28 00:22:49','2022-06-28 00:22:49'),(141490,6,NULL,6,1,'2013-11-19 02:27:00',NULL,NULL,'2022-06-28 00:23:53','2022-06-28 00:23:53'),(141493,5,NULL,5,17934,'2022-07-05 05:49:00',NULL,NULL,'2022-06-28 00:39:49','2022-07-05 05:49:47'),(141494,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-06-28 00:39:50','2022-06-28 00:39:50'),(141496,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-06-28 00:45:37','2022-06-28 00:45:37'),(141500,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-06-28 01:30:24','2022-06-28 01:30:24'),(141507,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-06-28 01:38:25','2022-06-28 01:38:25'),(141509,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-06-28 01:38:40','2022-06-28 01:38:40'),(141511,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2022-06-28 01:51:24','2022-06-28 01:51:24'),(141512,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-06-28 02:05:47','2022-06-28 02:05:47'),(141514,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-06-28 02:09:04','2022-06-28 02:09:04'),(141523,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-06-28 04:51:39','2022-06-28 04:51:39'),(141533,6,NULL,6,17941,'2022-06-29 01:50:00',NULL,NULL,'2022-06-29 01:35:57','2023-03-30 23:08:01'),(141547,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-06-29 02:09:39','2022-06-29 02:09:39'),(141550,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-06-29 02:23:00','2022-06-29 02:23:00'),(141551,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-06-29 02:23:52','2022-06-29 02:23:52'),(141553,5,NULL,5,17887,'2021-09-10 06:06:00',NULL,NULL,'2022-06-29 02:24:04','2022-06-29 02:24:04'),(141554,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-06-29 02:24:20','2022-06-29 02:24:20'),(141556,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-06-29 02:24:35','2022-06-29 02:24:35'),(141558,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-06-29 03:24:16','2022-06-29 03:24:16'),(141560,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-06-29 03:26:33','2022-06-29 03:26:33'),(141562,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-06-29 03:36:53','2022-06-29 03:36:53'),(141567,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-06-29 04:05:49','2022-06-29 04:05:49'),(141569,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-06-29 04:06:22','2022-06-29 04:06:22'),(141571,6,NULL,6,17956,'2018-04-16 05:39:00',NULL,NULL,'2022-06-29 04:08:55','2022-06-29 04:08:55'),(141573,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-06-29 04:11:15','2022-06-29 04:11:15'),(141574,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-06-29 06:01:22','2022-06-29 06:01:22'),(141576,6,NULL,6,17956,'2018-04-16 05:39:00',NULL,NULL,'2022-06-30 03:06:09','2022-06-30 03:06:09'),(141578,6,NULL,6,17956,'2018-04-16 05:39:00',NULL,NULL,'2022-06-30 03:06:50','2022-06-30 03:06:50'),(141582,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-06-30 05:31:01','2022-06-30 05:31:01'),(141586,5,NULL,5,17887,'2021-07-15 23:00:00',NULL,NULL,'2022-07-04 01:16:48','2022-07-04 01:16:48'),(141587,5,NULL,5,17887,'2021-07-15 23:00:00',NULL,NULL,'2022-07-04 01:16:49','2022-07-04 01:16:49'),(141589,5,NULL,5,17934,'2022-07-04 01:22:00',NULL,NULL,'2022-07-04 01:22:26','2022-07-04 01:22:26'),(141592,5,NULL,5,17934,'2022-07-04 01:22:00',NULL,NULL,'2022-07-04 01:25:07','2022-07-04 01:25:07'),(141597,5,NULL,5,17934,'2022-07-04 01:22:00',NULL,NULL,'2022-07-04 07:06:50','2022-07-04 07:06:50'),(141600,5,NULL,5,17934,'2022-07-04 01:22:00',NULL,NULL,'2022-07-04 07:10:55','2022-07-04 07:10:55'),(141603,5,NULL,5,17934,'2022-07-04 01:22:00',NULL,NULL,'2022-07-04 07:19:08','2022-07-04 07:19:08'),(141604,5,NULL,5,17934,'2022-07-04 01:22:00',NULL,NULL,'2022-07-04 07:19:20','2022-07-04 07:19:20'),(141606,5,NULL,5,17934,'2022-07-04 01:22:00',NULL,NULL,'2022-07-04 07:31:23','2022-07-04 07:31:23'),(141607,6,NULL,6,1,'2013-11-19 02:27:00',NULL,NULL,'2022-07-05 05:41:43','2022-07-05 05:41:43'),(141608,5,NULL,5,17934,'2022-07-05 05:49:00',NULL,NULL,'2022-07-05 05:49:47','2022-07-05 05:49:47'),(141610,5,NULL,5,17934,'2022-07-05 05:49:00',NULL,NULL,'2022-07-07 02:07:42','2022-07-07 02:07:42'),(141612,5,NULL,5,17934,'2022-07-05 05:49:00',NULL,NULL,'2022-07-07 02:12:54','2022-07-07 02:12:54'),(141614,5,NULL,5,17934,'2022-07-04 01:22:00',NULL,NULL,'2022-07-07 02:20:26','2022-07-07 02:20:26'),(141622,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2022-07-10 23:10:01','2022-07-10 23:10:01'),(141624,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2022-07-10 23:11:13','2022-07-10 23:11:13'),(141625,6,NULL,6,1,'2013-11-19 02:27:00',NULL,NULL,'2022-07-11 01:48:54','2022-07-11 01:48:54'),(141627,8,NULL,8,NULL,'2021-06-21 06:24:00',NULL,NULL,'2022-07-12 00:09:35','2022-07-12 00:09:35'),(141629,5,NULL,5,17934,'2022-07-04 01:22:00',NULL,NULL,'2022-07-13 04:32:08','2022-07-13 04:32:08'),(141633,6,NULL,6,1,'2013-11-19 02:27:00',NULL,NULL,'2022-07-18 03:34:46','2022-07-18 03:34:46'),(141635,6,NULL,6,1,'2013-11-19 02:27:00',NULL,NULL,'2022-07-18 04:21:30','2022-07-18 04:21:30'),(141637,6,NULL,6,17887,'2013-11-19 02:27:00',NULL,NULL,'2022-07-18 04:21:58','2022-07-18 04:21:58'),(141660,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2022-07-26 00:27:53','2022-07-26 00:27:53'),(141662,5,NULL,5,17934,'2021-05-26 01:32:00',NULL,NULL,'2022-07-26 00:49:16','2022-07-26 00:49:16'),(141663,5,NULL,5,17934,'2021-05-26 01:32:00',NULL,NULL,'2022-07-26 00:49:17','2022-07-26 00:49:17'),(141693,6,NULL,6,17887,'2013-11-19 02:27:00',NULL,NULL,'2022-07-26 04:07:27','2022-07-26 04:07:27'),(141725,5,NULL,5,17934,'2022-07-28 02:30:00',NULL,NULL,'2022-07-26 05:29:13','2022-07-28 04:52:58'),(141726,5,NULL,5,17887,'2021-07-15 23:00:00',NULL,NULL,'2022-07-26 05:29:14','2022-07-26 05:29:14'),(141728,5,NULL,5,17887,'2022-07-26 05:31:00',NULL,NULL,'2022-07-26 05:31:16','2022-07-26 05:31:16'),(141730,5,NULL,5,17887,'2022-07-26 05:31:00',NULL,NULL,'2022-07-26 05:31:58','2022-07-26 05:31:58'),(141746,5,NULL,5,17887,'2022-07-27 14:00:00',NULL,NULL,'2022-07-26 07:01:23','2022-07-26 07:01:23'),(141748,5,NULL,5,17887,'2022-07-27 14:00:00',NULL,NULL,'2022-07-26 07:02:27','2022-07-26 07:02:27'),(141750,5,NULL,5,17887,'2022-07-27 14:00:00',NULL,NULL,'2022-07-26 07:02:55','2022-07-26 07:02:55'),(141752,5,NULL,5,17887,'2022-07-27 14:00:00',NULL,NULL,'2022-07-26 07:03:20','2022-07-26 07:03:20'),(141754,5,NULL,5,17934,'2022-07-28 14:00:00',NULL,NULL,'2022-07-26 07:04:20','2022-07-26 07:04:20'),(141756,5,NULL,5,17934,'2022-07-28 14:00:00',NULL,NULL,'2022-07-26 07:05:12','2022-07-26 07:05:12'),(141759,5,NULL,5,17934,'2022-07-28 14:00:00',NULL,NULL,'2022-07-26 07:06:10','2022-07-26 07:06:10'),(141761,5,NULL,5,17934,'2022-07-28 14:00:00',NULL,NULL,'2022-07-26 07:06:26','2022-07-26 07:06:26'),(141763,5,NULL,5,17934,'2022-07-28 14:00:00',NULL,NULL,'2022-07-26 07:06:43','2022-07-26 07:06:43'),(141770,5,NULL,5,17934,'2022-07-28 14:00:00',NULL,NULL,'2022-07-27 04:47:14','2022-07-27 04:47:14'),(141772,5,NULL,5,17934,'2022-07-28 14:00:00',NULL,NULL,'2022-07-27 06:09:37','2022-07-27 06:09:37'),(141774,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2022-07-27 06:11:16','2022-07-27 06:11:16'),(141776,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-07-28 04:11:35','2022-07-28 04:11:35'),(141777,5,NULL,5,17934,'2022-07-28 14:00:00',NULL,NULL,'2022-07-28 04:14:23','2022-07-28 04:14:23'),(141778,5,NULL,5,17934,'2022-07-28 14:00:00',NULL,NULL,'2022-07-28 04:20:15','2022-07-28 04:20:15'),(141780,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2022-07-28 04:26:49','2022-07-28 04:26:49'),(141784,5,NULL,5,17934,'2022-07-28 09:00:00',NULL,NULL,'2022-07-28 04:50:06','2022-07-28 04:50:06'),(141786,5,NULL,5,17934,'2022-07-27 14:00:00',NULL,NULL,'2022-07-28 04:51:51','2022-07-28 04:51:51'),(141788,5,NULL,5,17934,'2022-07-28 05:00:00',NULL,NULL,'2022-07-28 04:52:25','2022-07-28 04:52:25'),(141790,5,NULL,5,17934,'2022-07-28 02:30:00',NULL,NULL,'2022-07-28 04:52:58','2022-07-28 04:52:58'),(141792,6,NULL,6,17887,'2013-11-19 02:27:00',NULL,NULL,'2022-07-28 04:53:42','2022-07-28 04:53:42'),(141794,6,NULL,6,17887,'2013-11-19 02:27:00',NULL,NULL,'2022-07-28 05:25:57','2022-07-28 05:25:57'),(141796,10,NULL,10,NULL,'2021-09-27 03:32:00',NULL,NULL,'2022-08-01 06:02:13','2022-08-01 06:02:13'),(141798,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2022-08-02 00:05:50','2022-08-02 00:05:50'),(141800,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2022-08-02 00:14:10','2022-08-02 00:14:10'),(141807,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2022-08-02 00:32:40','2022-08-02 00:32:40'),(141809,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2022-08-02 03:43:02','2022-08-02 03:43:02'),(141811,5,NULL,5,17887,'2021-09-10 06:06:00',NULL,NULL,'2022-08-05 05:36:54','2022-08-05 05:36:54'),(141812,17,NULL,17,NULL,'2022-06-05 23:23:00',NULL,NULL,'2022-08-05 06:07:11','2022-08-05 06:07:11'),(141814,17,NULL,17,NULL,'2022-06-05 23:23:00',NULL,NULL,'2022-08-05 06:08:46','2022-08-05 06:08:46'),(141816,17,NULL,17,NULL,'2022-06-05 23:23:00',NULL,NULL,'2022-08-05 06:09:43','2022-08-05 06:09:43'),(141818,10,NULL,10,NULL,'2021-09-27 03:32:00',NULL,NULL,'2022-08-08 06:09:46','2022-08-08 06:09:46'),(141820,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-08-08 06:14:50','2022-08-08 06:14:50'),(141821,5,NULL,5,17934,'2022-07-05 05:49:00',NULL,NULL,'2022-08-08 06:16:07','2022-08-08 06:16:07'),(141823,5,NULL,5,17887,'2021-09-10 06:06:00',NULL,NULL,'2022-08-08 06:16:57','2022-08-08 06:16:57'),(141825,5,NULL,5,17887,'2021-09-10 06:06:00',NULL,NULL,'2022-08-08 06:17:27','2022-08-08 06:17:27'),(141827,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-08-08 06:19:28','2022-08-08 06:19:28'),(141829,5,NULL,5,17887,'2021-09-10 01:29:00',NULL,NULL,'2022-08-08 06:19:55','2022-08-08 06:19:55'),(141831,5,NULL,5,17887,'2021-09-10 01:24:00',NULL,NULL,'2022-08-08 06:20:26','2022-08-08 06:20:26'),(141833,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-08-08 06:21:21','2022-08-08 06:21:21'),(141835,5,NULL,5,17887,'2021-09-10 01:37:00',NULL,NULL,'2022-08-08 06:22:13','2022-08-08 06:22:13'),(141837,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2022-08-08 06:22:47','2022-08-08 06:22:47'),(141839,5,NULL,5,17887,'2021-09-10 01:03:00',NULL,NULL,'2022-08-08 06:23:47','2022-08-08 06:23:47'),(141841,5,NULL,5,17887,'2021-09-03 06:50:00',NULL,NULL,'2022-08-08 06:24:22','2022-08-08 06:24:22'),(141843,5,NULL,5,17887,'2021-09-03 06:50:00',NULL,NULL,'2022-08-08 06:26:22','2022-08-08 06:26:22'),(141845,5,NULL,5,17887,'2021-09-03 06:26:00',NULL,NULL,'2022-08-08 06:26:59','2022-08-08 06:26:59'),(141846,5,NULL,5,17887,'2021-08-06 06:46:00',NULL,NULL,'2022-08-08 06:27:49','2022-08-08 06:27:49'),(141848,5,NULL,5,1,'2021-07-16 03:13:00',NULL,NULL,'2022-08-08 06:28:55','2022-08-08 06:28:55'),(141850,5,NULL,5,1,'2021-07-16 03:13:00',NULL,NULL,'2022-08-08 06:29:38','2022-08-08 06:29:38'),(141852,5,NULL,5,1,'2021-07-16 03:13:00',NULL,NULL,'2022-08-08 06:30:06','2022-08-08 06:30:06'),(141853,5,NULL,5,17887,'2021-07-15 23:00:00',NULL,NULL,'2022-08-08 06:30:58','2022-08-08 06:30:58'),(141855,5,NULL,5,17887,'2021-05-26 03:20:00',NULL,NULL,'2022-08-08 06:35:10','2022-08-08 06:35:10'),(141857,5,NULL,5,17887,'2021-05-26 01:45:00',NULL,NULL,'2022-08-08 06:38:54','2022-08-08 06:38:54'),(141859,5,NULL,5,17887,'2021-05-26 01:45:00',NULL,NULL,'2022-08-08 06:39:23','2022-08-08 06:39:23'),(141861,5,NULL,5,17887,'2021-05-26 01:40:00',NULL,NULL,'2022-08-08 06:40:24','2022-08-08 06:40:24'),(141863,5,NULL,5,17887,'2021-05-26 01:40:00',NULL,NULL,'2022-08-08 06:41:22','2022-08-08 06:41:22'),(141865,5,NULL,5,17934,'2021-05-26 01:32:00',NULL,NULL,'2022-08-08 06:42:15','2022-08-08 06:42:15'),(141867,5,NULL,5,17934,'2021-05-26 01:32:00',NULL,NULL,'2022-08-08 06:42:29','2022-08-08 06:42:29'),(141869,5,NULL,5,17934,'2021-05-26 01:32:00',NULL,NULL,'2022-08-08 06:42:58','2022-08-08 06:42:58'),(141872,5,NULL,5,17934,'2021-05-26 01:32:00',NULL,NULL,'2022-08-08 06:44:50','2022-08-08 06:44:50'),(141873,5,NULL,5,17887,'2021-09-03 06:26:00',NULL,NULL,'2022-08-08 06:45:00','2022-08-08 06:45:00'),(141875,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2022-08-08 06:45:37','2022-08-08 06:45:37'),(141877,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2022-08-08 06:46:01','2022-08-08 06:46:01'),(141879,5,NULL,5,17887,'2021-05-26 01:32:00',NULL,NULL,'2022-08-08 06:46:50','2022-08-08 06:46:50'),(141881,5,NULL,5,1,'2021-05-14 06:27:00',NULL,NULL,'2022-08-08 06:48:26','2022-08-08 06:48:26'),(141883,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2022-08-08 06:49:19','2022-08-08 06:49:19'),(141885,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2022-08-08 06:49:44','2022-08-08 06:49:44'),(141887,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2022-08-08 06:50:03','2022-08-08 06:50:03'),(141889,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2022-08-08 06:50:14','2022-08-08 06:50:14'),(141891,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2022-08-08 06:51:20','2022-08-08 06:51:20'),(141897,6,NULL,6,17887,'2021-07-23 05:37:00',NULL,NULL,'2022-08-08 06:54:40','2022-08-08 06:54:40'),(141899,6,NULL,6,17887,'2021-07-23 05:37:00',NULL,NULL,'2022-08-08 06:55:20','2022-08-08 06:55:20'),(141901,6,NULL,6,17887,'2021-07-23 05:37:00',NULL,NULL,'2022-08-08 06:56:04','2022-08-08 06:56:04'),(141902,6,NULL,6,17954,'2018-04-26 00:39:00',NULL,NULL,'2022-08-08 06:59:41','2022-08-08 06:59:41'),(141904,6,NULL,6,1,'2015-03-05 06:45:00',NULL,NULL,'2022-08-08 07:02:05','2022-08-08 07:02:05'),(141906,6,NULL,6,17887,'2013-11-19 02:27:00',NULL,NULL,'2022-08-08 07:03:56','2022-08-08 07:03:56'),(141908,6,NULL,6,17887,'2013-11-19 02:27:00',NULL,NULL,'2022-08-08 07:04:07','2022-08-08 07:04:07'),(141910,6,NULL,6,17954,'2013-10-07 23:24:00',NULL,NULL,'2022-08-08 07:05:22','2022-08-08 07:05:22'),(141912,17,NULL,17,NULL,'2022-06-05 23:23:00',NULL,NULL,'2022-08-08 07:07:49','2022-08-08 07:07:49'),(141913,17,NULL,17,NULL,'2022-06-05 23:23:00',NULL,NULL,'2022-08-08 07:07:53','2022-08-08 07:07:53'),(141914,11,NULL,11,NULL,'2021-11-09 23:38:00',NULL,NULL,'2022-08-08 07:08:20','2022-08-08 07:08:20'),(141921,5,NULL,5,17887,'2021-05-26 03:39:00',NULL,NULL,'2022-08-09 00:06:09','2022-08-09 00:06:09'),(141923,5,NULL,5,1,'2021-05-17 23:38:00',NULL,NULL,'2022-08-09 00:07:42','2022-08-09 00:07:42'),(141925,5,NULL,5,17934,'2022-08-15 05:32:00',NULL,NULL,'2022-08-09 04:18:53','2022-08-15 05:32:55'),(141927,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2022-08-12 03:38:44','2022-08-12 03:38:44'),(141929,5,NULL,5,17887,'2020-11-04 02:07:00',NULL,NULL,'2022-08-12 03:45:04','2022-08-12 03:45:04'),(141931,5,NULL,5,17887,'2022-01-20 06:46:00',NULL,NULL,'2022-08-12 03:45:45','2022-08-12 03:45:45'),(141933,5,NULL,5,17887,'2022-01-19 06:26:00',NULL,NULL,'2022-08-12 03:46:35','2022-08-12 03:46:35'),(141935,5,NULL,5,1,'2022-01-21 06:27:00',NULL,NULL,'2022-08-12 03:46:46','2022-08-12 03:46:46'),(141937,5,NULL,5,17887,'2022-02-01 03:20:00',NULL,NULL,'2022-08-12 03:46:53','2022-08-12 03:46:53'),(141938,5,NULL,5,1,'2022-01-16 23:38:00',NULL,NULL,'2022-08-12 03:47:29','2022-08-12 03:47:29'),(141940,5,NULL,5,17934,'2022-07-04 01:22:00',NULL,NULL,'2022-08-12 03:50:34','2022-08-12 03:50:34'),(141942,5,NULL,5,17934,'2022-07-04 01:22:00',NULL,NULL,'2022-08-12 03:51:25','2022-08-12 03:51:25'),(141944,5,NULL,5,17887,'2022-01-29 01:32:00',NULL,NULL,'2022-08-15 02:54:41','2022-08-15 02:54:41'),(141949,5,NULL,5,17934,'2022-08-15 05:32:00',NULL,NULL,'2022-08-15 05:32:55','2022-08-15 05:32:55'),(141952,5,NULL,5,17934,'2022-08-15 05:32:00',NULL,NULL,'2022-08-15 05:39:07','2022-08-15 05:39:07'),(141953,5,NULL,5,17934,'2022-08-15 05:32:00',NULL,NULL,'2022-08-15 05:39:25','2022-08-15 05:39:25'),(141955,5,NULL,5,17934,'2022-07-04 01:22:00',NULL,NULL,'2022-08-15 05:55:07','2022-08-15 05:55:07'),(141958,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-08-16 04:33:47','2022-08-16 04:33:47'),(141960,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-08-16 04:38:12','2022-08-16 04:38:12'),(141964,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2022-08-16 05:37:53','2022-08-16 05:37:53'),(141966,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2022-08-16 05:38:24','2022-08-16 05:38:24'),(141968,6,NULL,6,17941,'2013-11-06 23:54:00',NULL,NULL,'2022-08-16 07:22:28','2022-08-16 07:22:28'),(141970,6,NULL,6,17941,'2013-11-06 23:54:00',NULL,NULL,'2022-08-16 07:22:41','2022-08-16 07:22:41'),(141971,5,NULL,5,17934,'2022-07-04 01:22:00',NULL,NULL,'2022-08-16 23:16:52','2022-08-16 23:16:52'),(141972,6,NULL,6,17941,'2013-11-06 23:54:00',NULL,NULL,'2022-08-17 02:35:27','2022-08-17 02:35:27'),(141974,5,NULL,5,17934,'2022-07-04 01:22:00',NULL,NULL,'2022-08-17 02:36:37','2022-08-17 02:36:37'),(141975,5,NULL,5,17934,'2022-08-15 05:32:00',NULL,NULL,'2022-08-17 04:14:48','2022-08-17 04:14:48'),(141978,6,NULL,6,17941,'2013-11-06 23:54:00',NULL,NULL,'2022-08-17 04:38:29','2022-08-17 04:38:29'),(141980,6,NULL,6,17941,'2013-11-06 23:54:00',NULL,NULL,'2022-08-17 04:38:56','2022-08-17 04:38:56'),(141982,6,NULL,6,17941,'2013-11-06 23:54:00',NULL,NULL,'2022-08-17 04:54:11','2022-08-17 04:54:11'),(141984,6,NULL,6,17941,'2013-11-06 23:54:00',NULL,NULL,'2022-08-17 04:58:00','2022-08-17 04:58:00'),(141986,6,NULL,6,17941,'2013-11-06 23:54:00',NULL,NULL,'2022-08-17 05:00:36','2022-08-17 05:00:36'),(141987,6,NULL,6,17941,'2013-11-06 23:54:00',NULL,NULL,'2022-08-17 05:10:17','2022-08-17 05:10:17'),(141989,6,NULL,6,17941,'2013-11-06 23:54:00',NULL,NULL,'2022-08-17 05:10:50','2022-08-17 05:10:50'),(141991,6,NULL,6,17887,'2013-11-19 02:27:00',NULL,NULL,'2022-08-17 05:11:34','2022-08-17 05:11:34'),(141993,6,NULL,6,17941,'2013-11-06 23:54:00',NULL,NULL,'2022-08-17 05:12:56','2022-08-17 05:12:56'),(141997,5,NULL,5,17887,'2021-09-10 01:18:00',NULL,NULL,'2022-08-17 22:14:55','2022-08-17 22:14:55'),(141999,5,NULL,5,17934,'2022-08-15 05:32:00',NULL,NULL,'2022-08-18 07:06:55','2022-08-18 07:06:55'),(142001,5,NULL,5,17934,'2022-08-15 05:32:00',NULL,NULL,'2022-08-18 07:07:33','2022-08-18 07:07:33'),(142003,5,NULL,5,17934,'2022-08-15 05:32:00',NULL,NULL,'2022-08-18 07:09:49','2022-08-18 07:09:49'),(142004,5,NULL,5,17934,'2022-07-04 01:22:00',NULL,NULL,'2022-08-18 07:10:03','2022-08-18 07:10:03'),(142006,5,NULL,5,17934,'2022-07-04 01:22:00',NULL,NULL,'2022-08-18 07:10:20','2022-08-18 07:10:20'),(142008,5,NULL,5,17934,'2022-07-04 01:22:00',NULL,NULL,'2022-08-18 07:11:09','2022-08-18 07:11:09'),(142012,5,NULL,5,17934,'2022-07-04 01:22:00',NULL,NULL,'2022-08-18 07:21:46','2022-08-18 07:21:46'),(142015,5,NULL,5,17934,'2022-07-04 01:22:00',NULL,NULL,'2022-08-18 07:25:17','2022-08-18 07:25:17'),(142017,5,NULL,5,17934,'2022-07-04 01:22:00',NULL,NULL,'2022-08-18 07:27:53','2022-08-18 07:27:53'),(142019,5,NULL,5,17934,'2022-08-15 05:32:00',NULL,NULL,'2022-08-18 21:47:11','2022-08-18 21:47:11'),(142021,5,NULL,5,17934,'2022-08-15 05:32:00',NULL,NULL,'2022-08-19 03:55:02','2022-08-19 03:55:02'),(142023,5,NULL,5,17934,'2022-08-15 05:32:00',NULL,NULL,'2022-08-19 03:58:24','2022-08-19 03:58:24'),(142025,5,NULL,5,17934,'2022-08-15 05:32:00',NULL,NULL,'2022-08-19 04:01:42','2022-08-19 04:01:42'),(142029,6,NULL,6,17941,'2013-11-06 23:54:00',NULL,NULL,'2022-08-22 06:14:16','2022-08-22 06:14:16'),(142030,5,NULL,5,17934,'2022-07-04 01:22:00',NULL,NULL,'2022-08-22 23:27:44','2022-08-22 23:27:44'),(142033,5,NULL,5,17887,'2021-09-10 01:18:00',NULL,NULL,'2022-08-24 01:12:15','2022-08-24 01:12:15'),(142034,5,NULL,5,17887,'2021-09-10 01:18:00',NULL,NULL,'2022-08-24 01:14:05','2022-08-24 01:14:05'),(142035,5,NULL,5,17887,'2021-09-10 01:18:00',NULL,NULL,'2022-08-24 01:14:57','2022-08-24 01:14:57'),(142036,5,NULL,5,17934,'2022-07-05 05:49:00',NULL,NULL,'2022-08-24 06:39:06','2022-08-24 06:39:06'),(142037,5,NULL,5,17887,'2021-09-10 02:18:00',NULL,NULL,'2022-08-24 06:52:57','2022-08-24 06:52:57'),(142038,5,NULL,5,17887,'2021-09-03 06:50:00',NULL,NULL,'2022-08-24 07:11:53','2022-08-24 07:11:53'),(142041,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-08-25 02:23:49','2022-08-25 02:23:49'),(142043,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-08-25 02:27:21','2022-08-25 02:27:21'),(142045,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-08-25 02:27:33','2022-08-25 02:27:33'),(142047,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-08-25 02:27:45','2022-08-25 02:27:45'),(142050,5,NULL,5,17934,'2022-08-15 05:32:00',NULL,NULL,'2022-08-25 02:31:17','2022-08-25 02:31:17'),(142051,5,NULL,5,17934,'2022-08-15 05:32:00',NULL,NULL,'2022-08-25 02:31:26','2022-08-25 02:31:26'),(142053,5,NULL,5,17934,'2022-07-04 01:22:00',NULL,NULL,'2022-08-25 02:33:32','2022-08-25 02:33:32'),(142056,6,NULL,6,17941,'2013-11-06 23:54:00',NULL,NULL,'2022-08-25 02:41:37','2022-08-25 02:41:37'),(142057,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2022-08-25 03:58:21','2022-08-25 03:58:21'),(142059,6,NULL,6,17941,'2013-11-06 23:54:00',NULL,NULL,'2022-08-25 04:23:30','2022-08-25 04:23:30'),(142061,5,NULL,5,17934,'2022-07-04 01:22:00',NULL,NULL,'2022-08-25 04:29:46','2022-08-25 04:29:46'),(142062,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-08-25 04:31:06','2022-08-25 04:31:06'),(142064,6,NULL,6,17941,'2013-11-06 23:54:00',NULL,NULL,'2022-08-25 04:36:54','2022-08-25 04:36:54'),(142065,5,NULL,5,17934,NULL,NULL,NULL,'2022-08-25 06:03:48','2022-08-25 06:03:48'),(142066,5,NULL,5,17934,'2022-07-04 01:22:00',NULL,NULL,'2022-08-25 21:34:36','2022-08-25 21:34:36'),(142067,5,NULL,5,17934,'2022-07-04 01:22:00',NULL,NULL,'2022-08-30 00:13:28','2022-08-30 00:13:28'),(142069,5,NULL,5,17934,'2022-07-04 01:22:00',NULL,NULL,'2022-08-30 00:13:40','2022-08-30 00:13:40'),(142071,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-09-05 06:28:39','2022-09-05 06:28:39'),(142075,1,NULL,1,17893,'2015-06-30 14:00:00',NULL,NULL,'2022-09-07 07:02:05','2022-09-07 07:02:05'),(142076,1,NULL,1,17893,'2015-07-31 14:00:00',NULL,NULL,'2022-09-07 07:02:06','2022-09-07 07:02:06'),(142077,1,NULL,1,17893,'2015-08-31 14:00:00',NULL,NULL,'2022-09-07 07:02:07','2022-09-07 07:02:07'),(142078,1,NULL,1,17893,'2015-09-30 14:00:00',NULL,NULL,'2022-09-07 07:02:08','2022-09-07 07:02:08'),(142079,1,NULL,1,17893,'2015-10-31 14:00:00',NULL,NULL,'2022-09-07 07:02:09','2022-09-07 07:02:09'),(142080,1,NULL,1,17893,'2015-11-30 14:00:00',NULL,NULL,'2022-09-07 07:02:10','2022-09-07 07:02:10'),(142081,1,NULL,1,17893,'2015-12-31 14:00:00',NULL,NULL,'2022-09-07 07:02:11','2022-09-07 07:02:11'),(142082,1,NULL,1,17893,'2016-01-31 14:00:00',NULL,NULL,'2022-09-07 07:02:11','2022-09-07 07:02:11'),(142083,1,NULL,1,17893,'2016-02-29 14:00:00',NULL,NULL,'2022-09-07 07:02:12','2022-09-07 07:02:12'),(142084,1,NULL,1,17893,'2016-03-31 14:00:00',NULL,NULL,'2022-09-07 07:02:13','2022-09-07 07:02:13'),(142085,1,NULL,1,17893,'2016-04-30 14:00:00',NULL,NULL,'2022-09-07 07:02:14','2022-09-07 07:02:14'),(142086,1,NULL,1,17893,'2016-05-31 14:00:00',NULL,NULL,'2022-09-07 07:02:14','2022-09-07 07:02:14'),(142087,1,NULL,1,17893,'2016-06-30 14:00:00',NULL,NULL,'2022-09-07 07:02:15','2022-09-07 07:02:15'),(142088,1,NULL,1,17893,'2016-07-31 14:00:00',NULL,NULL,'2022-09-07 07:02:16','2022-09-07 07:02:16'),(142089,1,NULL,1,17893,'2016-08-31 14:00:00',NULL,NULL,'2022-09-07 07:02:17','2022-09-07 07:02:17'),(142090,1,NULL,1,17893,'2016-09-30 14:00:00',NULL,NULL,'2022-09-07 07:02:17','2022-09-07 07:02:17'),(142091,1,NULL,1,17893,'2016-10-31 14:00:00',NULL,NULL,'2022-09-07 07:02:18','2022-09-07 07:02:18'),(142092,1,NULL,1,17893,'2016-11-30 14:00:00',NULL,NULL,'2022-09-07 07:02:19','2022-09-07 07:02:19'),(142093,1,NULL,1,17893,'2016-12-31 14:00:00',NULL,NULL,'2022-09-07 07:02:20','2022-09-07 07:02:20'),(142094,1,NULL,1,17893,'2017-01-31 14:00:00',NULL,NULL,'2022-09-07 07:02:21','2022-09-07 07:02:21'),(142095,1,NULL,1,17893,'2017-02-28 14:00:00',NULL,NULL,'2022-09-07 07:02:22','2022-09-07 07:02:22'),(142096,1,NULL,1,17893,'2017-03-31 14:00:00',NULL,NULL,'2022-09-07 07:02:23','2022-09-07 07:02:23'),(142097,1,NULL,1,17893,'2017-04-30 14:00:00',NULL,NULL,'2022-09-07 07:02:24','2022-09-07 07:02:24'),(142098,1,NULL,1,17893,'2017-05-31 14:00:00',NULL,NULL,'2022-09-07 07:02:25','2022-09-07 07:02:25'),(142099,1,NULL,1,17893,'2017-06-30 14:00:00',NULL,NULL,'2022-09-07 07:02:26','2022-09-07 07:02:26'),(142100,1,NULL,1,17893,'2017-07-31 14:00:00',NULL,NULL,'2022-09-07 07:02:27','2022-09-07 07:02:27'),(142101,1,NULL,1,17893,'2017-08-31 14:00:00',NULL,NULL,'2022-09-07 07:02:28','2022-09-07 07:02:28'),(142102,1,NULL,1,17893,'2017-09-30 14:00:00',NULL,NULL,'2022-09-07 07:02:29','2022-09-07 07:02:29'),(142103,1,NULL,1,17893,'2017-10-31 14:00:00',NULL,NULL,'2022-09-07 07:02:30','2022-09-07 07:02:30'),(142104,1,NULL,1,17893,'2017-11-30 14:00:00',NULL,NULL,'2022-09-07 07:02:30','2022-09-07 07:02:30'),(142105,1,NULL,1,17893,'2017-12-31 14:00:00',NULL,NULL,'2022-09-07 07:02:31','2022-09-07 07:02:31'),(142106,1,NULL,1,17893,'2018-01-31 14:00:00',NULL,NULL,'2022-09-07 07:02:32','2022-09-07 07:02:32'),(142107,1,NULL,1,17893,'2018-02-28 14:00:00',NULL,NULL,'2022-09-07 07:02:33','2022-09-07 07:02:33'),(142108,1,NULL,1,17893,'2018-03-31 14:00:00',NULL,NULL,'2022-09-07 07:02:34','2022-09-07 07:02:34'),(142109,1,NULL,1,17893,'2018-04-30 14:00:00',NULL,NULL,'2022-09-07 07:02:35','2022-09-07 07:02:35'),(142110,1,NULL,1,17893,'2018-05-31 14:00:00',NULL,NULL,'2022-09-07 07:02:35','2022-09-07 07:02:35'),(142111,1,NULL,1,17893,'2018-06-30 14:00:00',NULL,NULL,'2022-09-07 07:02:36','2022-09-07 07:02:36'),(142112,1,NULL,1,17893,'2018-07-31 14:00:00',NULL,NULL,'2022-09-07 07:02:37','2022-09-07 07:02:37'),(142113,1,NULL,1,17893,'2018-08-31 14:00:00',NULL,NULL,'2022-09-07 07:02:38','2022-09-07 07:02:38'),(142114,1,NULL,1,17893,'2018-09-30 14:00:00',NULL,NULL,'2022-09-07 07:02:39','2022-09-07 07:02:39'),(142115,1,NULL,1,17893,'2018-10-31 14:00:00',NULL,NULL,'2022-09-07 07:02:40','2022-09-07 07:02:40'),(142116,1,NULL,1,17893,'2018-11-30 14:00:00',NULL,NULL,'2022-09-07 07:02:41','2022-09-07 07:02:41'),(142117,1,NULL,1,17893,'2018-12-31 14:00:00',NULL,NULL,'2022-09-07 07:02:42','2022-09-07 07:02:42'),(142118,1,NULL,1,17893,'2019-01-31 14:00:00',NULL,NULL,'2022-09-07 07:02:43','2022-09-07 07:02:43'),(142119,1,NULL,1,17893,'2019-02-28 14:00:00',NULL,NULL,'2022-09-07 07:02:44','2022-09-07 07:02:44'),(142120,1,NULL,1,17893,'2019-03-31 14:00:00',NULL,NULL,'2022-09-07 07:02:45','2022-09-07 07:02:45'),(142121,1,NULL,1,17893,'2019-04-30 14:00:00',NULL,NULL,'2022-09-07 07:02:46','2022-09-07 07:02:46'),(142122,1,NULL,1,17893,'2019-05-31 14:00:00',NULL,NULL,'2022-09-07 07:02:47','2022-09-07 07:02:47'),(142123,1,NULL,1,17893,'2019-06-30 14:00:00',NULL,NULL,'2022-09-07 07:02:48','2022-09-07 07:02:48'),(142124,1,NULL,1,17893,'2019-07-31 14:00:00',NULL,NULL,'2022-09-07 07:02:49','2022-09-07 07:02:49'),(142125,1,NULL,1,17893,'2019-08-31 14:00:00',NULL,NULL,'2022-09-07 07:02:50','2022-09-07 07:02:50'),(142126,1,NULL,1,17893,'2019-09-30 14:00:00',NULL,NULL,'2022-09-07 07:02:51','2022-09-07 07:02:51'),(142127,1,NULL,1,17893,'2019-10-31 14:00:00',NULL,NULL,'2022-09-07 07:02:52','2022-09-07 07:02:52'),(142128,1,NULL,1,17893,'2019-11-30 14:00:00',NULL,NULL,'2022-09-07 07:02:52','2022-09-07 07:02:52'),(142129,1,NULL,1,17893,'2019-12-31 14:00:00',NULL,NULL,'2022-09-07 07:02:53','2022-09-07 07:02:53'),(142130,1,NULL,1,17893,'2020-01-31 14:00:00',NULL,NULL,'2022-09-07 07:02:54','2022-09-07 07:02:54'),(142131,1,NULL,1,17893,'2020-02-29 14:00:00',NULL,NULL,'2022-09-07 07:02:55','2022-09-07 07:02:55'),(142132,1,NULL,1,17893,'2020-03-31 14:00:00',NULL,NULL,'2022-09-07 07:02:56','2022-09-07 07:02:56'),(142133,1,NULL,1,17893,'2020-04-30 14:00:00',NULL,NULL,'2022-09-07 07:02:57','2022-09-07 07:02:57'),(142134,1,NULL,1,17893,'2020-05-31 14:00:00',NULL,NULL,'2022-09-07 07:02:58','2022-09-07 07:02:58'),(142135,1,NULL,1,17893,'2020-06-30 14:00:00',NULL,NULL,'2022-09-07 07:02:59','2022-09-07 07:02:59'),(142136,1,NULL,1,17893,'2020-07-31 14:00:00',NULL,NULL,'2022-09-07 07:03:00','2022-09-07 07:03:00'),(142137,1,NULL,1,17893,'2020-08-31 14:00:00',NULL,NULL,'2022-09-07 07:03:01','2022-09-07 07:03:01'),(142138,1,NULL,1,17893,'2020-09-30 14:00:00',NULL,NULL,'2022-09-07 07:03:02','2022-09-07 07:03:02'),(142139,1,NULL,1,17893,'2020-10-31 14:00:00',NULL,NULL,'2022-09-07 07:03:03','2022-09-07 07:03:03'),(142140,1,NULL,1,17893,'2020-11-30 14:00:00',NULL,NULL,'2022-09-07 07:03:03','2022-09-07 07:03:03'),(142141,1,NULL,1,17893,'2020-12-31 14:00:00',NULL,NULL,'2022-09-07 07:03:04','2022-09-07 07:03:04'),(142142,1,NULL,1,17893,'2021-01-31 14:00:00',NULL,NULL,'2022-09-07 07:03:05','2022-09-07 07:03:05'),(142143,1,NULL,1,17893,'2021-02-28 14:00:00',NULL,NULL,'2022-09-07 07:03:06','2022-09-07 07:03:06'),(142144,1,NULL,1,17893,'2021-03-31 14:00:00',NULL,NULL,'2022-09-07 07:03:07','2022-09-07 07:03:07'),(142145,1,NULL,1,17893,'2021-04-30 14:00:00',NULL,NULL,'2022-09-07 07:03:08','2022-09-07 07:03:08'),(142146,1,NULL,1,17893,'2021-05-31 14:00:00',NULL,NULL,'2022-09-07 07:03:09','2022-09-07 07:03:09'),(142147,1,NULL,1,17893,'2021-06-30 14:00:00',NULL,NULL,'2022-09-07 07:03:10','2022-09-07 07:03:10'),(142148,1,NULL,1,17893,'2021-07-31 14:00:00',NULL,NULL,'2022-09-07 07:03:11','2022-09-07 07:03:11'),(142149,1,NULL,1,17893,'2021-08-31 14:00:00',NULL,NULL,'2022-09-07 07:03:12','2022-09-07 07:03:12'),(142150,1,NULL,1,17893,'2021-09-30 14:00:00',NULL,NULL,'2022-09-07 07:03:13','2022-09-07 07:03:13'),(142151,1,NULL,1,17893,'2021-10-31 14:00:00',NULL,NULL,'2022-09-07 07:03:14','2022-09-07 07:03:14'),(142152,1,NULL,1,17893,'2021-11-30 14:00:00',NULL,NULL,'2022-09-07 07:03:15','2022-09-07 07:03:15'),(142153,1,NULL,1,17893,'2021-12-31 14:00:00',NULL,NULL,'2022-09-07 07:03:16','2022-09-07 07:03:16'),(142154,1,NULL,1,17893,'2022-01-31 14:00:00',NULL,NULL,'2022-09-07 07:03:17','2022-09-07 07:03:17'),(142155,1,NULL,1,17893,'2022-02-28 14:00:00',NULL,NULL,'2022-09-07 07:03:18','2022-09-07 07:03:18'),(142156,1,NULL,1,17893,'2022-03-31 14:00:00',NULL,NULL,'2022-09-07 07:03:19','2022-09-07 07:03:19'),(142157,1,NULL,1,17893,'2022-04-30 14:00:00',NULL,NULL,'2022-09-07 07:03:20','2022-09-07 07:03:20'),(142158,1,NULL,1,17893,'2022-05-31 14:00:00',NULL,NULL,'2022-09-07 07:03:21','2022-09-07 07:03:21'),(142159,1,NULL,1,17893,'2015-06-30 14:00:00',NULL,NULL,'2022-09-07 07:09:01','2022-09-07 07:09:01'),(142160,1,NULL,1,17893,'2015-07-31 14:00:00',NULL,NULL,'2022-09-07 07:09:02','2022-09-07 07:09:02'),(142161,1,NULL,1,17893,'2015-08-31 14:00:00',NULL,NULL,'2022-09-07 07:09:03','2022-09-07 07:09:03'),(142162,1,NULL,1,17893,'2015-09-30 14:00:00',NULL,NULL,'2022-09-07 07:09:03','2022-09-07 07:09:03'),(142163,1,NULL,1,17893,'2015-10-31 14:00:00',NULL,NULL,'2022-09-07 07:09:04','2022-09-07 07:09:04'),(142164,1,NULL,1,17893,'2015-11-30 14:00:00',NULL,NULL,'2022-09-07 07:09:05','2022-09-07 07:09:05'),(142165,1,NULL,1,17893,'2015-12-31 14:00:00',NULL,NULL,'2022-09-07 07:09:06','2022-09-07 07:09:06'),(142166,1,NULL,1,17893,'2016-01-31 14:00:00',NULL,NULL,'2022-09-07 07:09:07','2022-09-07 07:09:07'),(142167,1,NULL,1,17893,'2016-02-29 14:00:00',NULL,NULL,'2022-09-07 07:09:08','2022-09-07 07:09:08'),(142168,1,NULL,1,17893,'2016-03-31 14:00:00',NULL,NULL,'2022-09-07 07:09:09','2022-09-07 07:09:09'),(142169,1,NULL,1,17893,'2016-04-30 14:00:00',NULL,NULL,'2022-09-07 07:09:09','2022-09-07 07:09:09'),(142170,1,NULL,1,17893,'2016-05-31 14:00:00',NULL,NULL,'2022-09-07 07:09:10','2022-09-07 07:09:10'),(142171,1,NULL,1,17893,'2016-06-30 14:00:00',NULL,NULL,'2022-09-07 07:09:11','2022-09-07 07:09:11'),(142172,1,NULL,1,17893,'2016-07-31 14:00:00',NULL,NULL,'2022-09-07 07:09:12','2022-09-07 07:09:12'),(142173,1,NULL,1,17893,'2016-08-31 14:00:00',NULL,NULL,'2022-09-07 07:09:12','2022-09-07 07:09:12'),(142174,1,NULL,1,17893,'2016-09-30 14:00:00',NULL,NULL,'2022-09-07 07:09:13','2022-09-07 07:09:13'),(142175,1,NULL,1,17893,'2016-10-31 14:00:00',NULL,NULL,'2022-09-07 07:09:14','2022-09-07 07:09:14'),(142176,1,NULL,1,17893,'2016-11-30 14:00:00',NULL,NULL,'2022-09-07 07:09:15','2022-09-07 07:09:15'),(142177,1,NULL,1,17893,'2016-12-31 14:00:00',NULL,NULL,'2022-09-07 07:09:16','2022-09-07 07:09:16'),(142178,1,NULL,1,17893,'2017-01-31 14:00:00',NULL,NULL,'2022-09-07 07:09:17','2022-09-07 07:09:17'),(142179,1,NULL,1,17893,'2017-02-28 14:00:00',NULL,NULL,'2022-09-07 07:09:18','2022-09-07 07:09:18'),(142180,1,NULL,1,17893,'2017-03-31 14:00:00',NULL,NULL,'2022-09-07 07:09:18','2022-09-07 07:09:18'),(142181,1,NULL,1,17893,'2017-04-30 14:00:00',NULL,NULL,'2022-09-07 07:09:19','2022-09-07 07:09:19'),(142182,1,NULL,1,17893,'2017-05-31 14:00:00',NULL,NULL,'2022-09-07 07:09:20','2022-09-07 07:09:20'),(142183,1,NULL,1,17893,'2017-06-30 14:00:00',NULL,NULL,'2022-09-07 07:09:21','2022-09-07 07:09:21'),(142184,1,NULL,1,17893,'2017-07-31 14:00:00',NULL,NULL,'2022-09-07 07:09:22','2022-09-07 07:09:22'),(142185,1,NULL,1,17893,'2017-08-31 14:00:00',NULL,NULL,'2022-09-07 07:09:23','2022-09-07 07:09:23'),(142186,1,NULL,1,17893,'2017-09-30 14:00:00',NULL,NULL,'2022-09-07 07:09:24','2022-09-07 07:09:24'),(142187,1,NULL,1,17893,'2017-10-31 14:00:00',NULL,NULL,'2022-09-07 07:09:24','2022-09-07 07:09:24'),(142188,1,NULL,1,17893,'2017-11-30 14:00:00',NULL,NULL,'2022-09-07 07:09:25','2022-09-07 07:09:25'),(142189,1,NULL,1,17893,'2017-12-31 14:00:00',NULL,NULL,'2022-09-07 07:09:26','2022-09-07 07:09:26'),(142190,1,NULL,1,17893,'2018-01-31 14:00:00',NULL,NULL,'2022-09-07 07:09:27','2022-09-07 07:09:27'),(142191,1,NULL,1,17893,'2018-02-28 14:00:00',NULL,NULL,'2022-09-07 07:09:28','2022-09-07 07:09:28'),(142192,1,NULL,1,17893,'2018-03-31 14:00:00',NULL,NULL,'2022-09-07 07:09:29','2022-09-07 07:09:29'),(142193,1,NULL,1,17893,'2018-04-30 14:00:00',NULL,NULL,'2022-09-07 07:09:29','2022-09-07 07:09:29'),(142194,1,NULL,1,17893,'2018-05-31 14:00:00',NULL,NULL,'2022-09-07 07:09:30','2022-09-07 07:09:30'),(142195,1,NULL,1,17893,'2018-06-30 14:00:00',NULL,NULL,'2022-09-07 07:09:31','2022-09-07 07:09:31'),(142196,1,NULL,1,17893,'2018-07-31 14:00:00',NULL,NULL,'2022-09-07 07:09:32','2022-09-07 07:09:32'),(142197,1,NULL,1,17893,'2018-08-31 14:00:00',NULL,NULL,'2022-09-07 07:09:33','2022-09-07 07:09:33'),(142198,1,NULL,1,17893,'2018-09-30 14:00:00',NULL,NULL,'2022-09-07 07:09:34','2022-09-07 07:09:34'),(142199,1,NULL,1,17893,'2018-10-31 14:00:00',NULL,NULL,'2022-09-07 07:09:35','2022-09-07 07:09:35'),(142200,1,NULL,1,17893,'2018-11-30 14:00:00',NULL,NULL,'2022-09-07 07:09:36','2022-09-07 07:09:36'),(142201,1,NULL,1,17893,'2018-12-31 14:00:00',NULL,NULL,'2022-09-07 07:09:36','2022-09-07 07:09:36'),(142202,1,NULL,1,17893,'2019-01-31 14:00:00',NULL,NULL,'2022-09-07 07:09:37','2022-09-07 07:09:37'),(142203,1,NULL,1,17893,'2019-02-28 14:00:00',NULL,NULL,'2022-09-07 07:09:38','2022-09-07 07:09:38'),(142204,1,NULL,1,17893,'2019-03-31 14:00:00',NULL,NULL,'2022-09-07 07:09:39','2022-09-07 07:09:39'),(142205,1,NULL,1,17893,'2019-04-30 14:00:00',NULL,NULL,'2022-09-07 07:09:40','2022-09-07 07:09:40'),(142206,1,NULL,1,17893,'2019-05-31 14:00:00',NULL,NULL,'2022-09-07 07:09:41','2022-09-07 07:09:41'),(142207,1,NULL,1,17893,'2019-06-30 14:00:00',NULL,NULL,'2022-09-07 07:09:41','2022-09-07 07:09:41'),(142208,1,NULL,1,17893,'2019-07-31 14:00:00',NULL,NULL,'2022-09-07 07:09:42','2022-09-07 07:09:42'),(142209,1,NULL,1,17893,'2019-08-31 14:00:00',NULL,NULL,'2022-09-07 07:09:43','2022-09-07 07:09:43'),(142210,1,NULL,1,17893,'2019-09-30 14:00:00',NULL,NULL,'2022-09-07 07:09:44','2022-09-07 07:09:44'),(142211,1,NULL,1,17893,'2019-10-31 14:00:00',NULL,NULL,'2022-09-07 07:09:45','2022-09-07 07:09:45'),(142212,1,NULL,1,17893,'2019-11-30 14:00:00',NULL,NULL,'2022-09-07 07:09:45','2022-09-07 07:09:45'),(142213,1,NULL,1,17893,'2019-12-31 14:00:00',NULL,NULL,'2022-09-07 07:09:46','2022-09-07 07:09:46'),(142214,1,NULL,1,17893,'2020-01-31 14:00:00',NULL,NULL,'2022-09-07 07:09:47','2022-09-07 07:09:47'),(142215,1,NULL,1,17893,'2020-02-29 14:00:00',NULL,NULL,'2022-09-07 07:09:48','2022-09-07 07:09:48'),(142216,1,NULL,1,17893,'2020-03-31 14:00:00',NULL,NULL,'2022-09-07 07:09:48','2022-09-07 07:09:48'),(142217,1,NULL,1,17893,'2020-04-30 14:00:00',NULL,NULL,'2022-09-07 07:09:49','2022-09-07 07:09:49'),(142218,1,NULL,1,17893,'2020-05-31 14:00:00',NULL,NULL,'2022-09-07 07:09:50','2022-09-07 07:09:50'),(142219,1,NULL,1,17893,'2020-06-30 14:00:00',NULL,NULL,'2022-09-07 07:09:51','2022-09-07 07:09:51'),(142220,1,NULL,1,17893,'2020-07-31 14:00:00',NULL,NULL,'2022-09-07 07:09:52','2022-09-07 07:09:52'),(142221,1,NULL,1,17893,'2020-08-31 14:00:00',NULL,NULL,'2022-09-07 07:09:53','2022-09-07 07:09:53'),(142222,1,NULL,1,17893,'2020-09-30 14:00:00',NULL,NULL,'2022-09-07 07:09:54','2022-09-07 07:09:54'),(142223,1,NULL,1,17893,'2020-10-31 14:00:00',NULL,NULL,'2022-09-07 07:09:55','2022-09-07 07:09:55'),(142224,1,NULL,1,17893,'2020-11-30 14:00:00',NULL,NULL,'2022-09-07 07:09:56','2022-09-07 07:09:56'),(142225,1,NULL,1,17893,'2020-12-31 14:00:00',NULL,NULL,'2022-09-07 07:09:57','2022-09-07 07:09:57'),(142226,1,NULL,1,17893,'2021-01-31 14:00:00',NULL,NULL,'2022-09-07 07:09:58','2022-09-07 07:09:58'),(142227,1,NULL,1,17893,'2021-02-28 14:00:00',NULL,NULL,'2022-09-07 07:09:59','2022-09-07 07:09:59'),(142228,1,NULL,1,17893,'2021-03-31 14:00:00',NULL,NULL,'2022-09-07 07:10:00','2022-09-07 07:10:00'),(142229,1,NULL,1,17893,'2021-04-30 14:00:00',NULL,NULL,'2022-09-07 07:10:01','2022-09-07 07:10:01'),(142230,1,NULL,1,17893,'2021-05-31 14:00:00',NULL,NULL,'2022-09-07 07:10:02','2022-09-07 07:10:02'),(142231,1,NULL,1,17893,'2021-06-30 14:00:00',NULL,NULL,'2022-09-07 07:10:03','2022-09-07 07:10:03'),(142232,1,NULL,1,17893,'2021-07-31 14:00:00',NULL,NULL,'2022-09-07 07:10:04','2022-09-07 07:10:04'),(142233,1,NULL,1,17893,'2021-08-31 14:00:00',NULL,NULL,'2022-09-07 07:10:04','2022-09-07 07:10:04'),(142234,1,NULL,1,17893,'2021-09-30 14:00:00',NULL,NULL,'2022-09-07 07:10:05','2022-09-07 07:10:05'),(142235,1,NULL,1,17893,'2021-10-31 14:00:00',NULL,NULL,'2022-09-07 07:10:06','2022-09-07 07:10:06'),(142236,1,NULL,1,17893,'2021-11-30 14:00:00',NULL,NULL,'2022-09-07 07:10:07','2022-09-07 07:10:07'),(142237,1,NULL,1,17893,'2021-12-31 14:00:00',NULL,NULL,'2022-09-07 07:10:07','2022-09-07 07:10:07'),(142238,1,NULL,1,17893,'2022-01-31 14:00:00',NULL,NULL,'2022-09-07 07:10:08','2022-09-07 07:10:08'),(142239,1,NULL,1,17893,'2022-02-28 14:00:00',NULL,NULL,'2022-09-07 07:10:09','2022-09-07 07:10:09'),(142240,1,NULL,1,17893,'2022-03-31 14:00:00',NULL,NULL,'2022-09-07 07:10:10','2022-09-07 07:10:10'),(142241,1,NULL,1,17893,'2022-04-30 14:00:00',NULL,NULL,'2022-09-07 07:10:11','2022-09-07 07:10:11'),(142242,1,NULL,1,17893,'2022-05-31 14:00:00',NULL,NULL,'2022-09-07 07:10:12','2022-09-07 07:10:12'),(142243,1,NULL,1,17893,'2022-06-30 14:00:00',NULL,NULL,'2022-09-07 07:10:13','2022-09-07 07:10:13'),(142244,1,NULL,1,17893,'2022-06-30 14:00:00',NULL,NULL,'2022-09-07 07:10:13','2022-09-07 07:10:13'),(142245,1,NULL,1,17893,'2022-07-31 14:00:00',NULL,NULL,'2022-09-07 07:10:15','2022-09-07 07:10:15'),(142246,1,NULL,1,17893,'2022-07-31 14:00:00',NULL,NULL,'2022-09-07 07:10:15','2022-09-07 07:10:15'),(142247,1,NULL,1,17893,'2022-08-31 14:00:00',NULL,NULL,'2022-09-07 07:10:17','2022-09-07 07:10:17'),(142248,1,NULL,1,17893,'2022-08-31 14:00:00',NULL,NULL,'2022-09-07 07:10:17','2022-09-07 07:10:17'),(142251,5,NULL,5,17934,'2023-09-28 03:53:00',NULL,NULL,'2022-09-12 03:45:08','2022-10-05 03:56:33'),(142253,5,NULL,5,17934,'2022-09-12 03:52:00',NULL,NULL,'2022-09-12 03:52:09','2022-09-12 03:52:09'),(142255,5,NULL,5,17934,'2022-09-12 03:53:00',NULL,NULL,'2022-09-12 03:53:08','2022-09-12 03:53:08'),(142257,5,NULL,5,17934,'2023-09-12 03:53:00',NULL,NULL,'2022-09-12 03:53:27','2022-09-12 03:53:27'),(142258,5,NULL,5,17934,'2022-10-12 06:03:00',NULL,NULL,'2022-09-12 05:45:12','2022-10-12 06:39:19'),(142259,5,NULL,5,17934,'2022-09-12 05:48:00',NULL,NULL,'2022-09-12 05:48:54','2022-09-12 05:48:54'),(142261,5,NULL,5,17934,'2022-09-12 06:03:00',NULL,NULL,'2022-09-12 06:03:01','2022-09-12 06:03:01'),(142263,5,NULL,5,17934,'2023-09-12 06:03:00',NULL,NULL,'2022-09-12 06:03:13','2022-09-12 06:03:13'),(142265,5,NULL,5,17934,'2023-09-12 03:53:00',NULL,NULL,'2022-09-13 04:22:17','2022-09-13 04:22:17'),(142267,5,NULL,5,17934,'2023-09-12 03:53:00',NULL,NULL,'2022-09-13 04:22:43','2022-09-13 04:22:43'),(142269,5,NULL,5,17934,'2023-09-12 03:53:00',NULL,NULL,'2022-09-13 04:23:05','2022-09-13 04:23:05'),(142271,5,NULL,5,17934,'2023-09-12 03:53:00',NULL,NULL,'2022-09-13 04:27:46','2022-09-13 04:27:46'),(142273,5,NULL,5,17934,'2023-09-12 03:53:00',NULL,NULL,'2022-09-13 04:29:41','2022-09-13 04:29:41'),(142275,5,NULL,5,17934,'2023-09-12 03:53:00',NULL,NULL,'2022-09-13 04:40:08','2022-09-13 04:40:08'),(142278,5,NULL,5,17934,'2022-07-04 01:22:00',NULL,NULL,'2022-09-13 23:01:24','2022-09-13 23:01:24'),(142280,5,NULL,5,17934,'2022-07-04 01:22:00',NULL,NULL,'2022-09-13 23:03:11','2022-09-13 23:03:11'),(142282,1,NULL,1,17893,'2015-06-30 14:00:00',NULL,NULL,'2022-09-14 23:00:45','2022-09-14 23:00:45'),(142283,1,NULL,1,17893,'2015-07-31 14:00:00',NULL,NULL,'2022-09-14 23:00:46','2022-09-14 23:00:46'),(142284,1,NULL,1,17893,'2015-08-31 14:00:00',NULL,NULL,'2022-09-14 23:00:47','2022-09-14 23:00:47'),(142285,1,NULL,1,17893,'2015-09-30 14:00:00',NULL,NULL,'2022-09-14 23:00:48','2022-09-14 23:00:48'),(142286,1,NULL,1,17893,'2015-10-31 14:00:00',NULL,NULL,'2022-09-14 23:00:49','2022-09-14 23:00:49'),(142287,1,NULL,1,17893,'2015-11-30 14:00:00',NULL,NULL,'2022-09-14 23:00:50','2022-09-14 23:00:50'),(142288,1,NULL,1,17893,'2015-12-31 14:00:00',NULL,NULL,'2022-09-14 23:00:51','2022-09-14 23:00:51'),(142289,1,NULL,1,17893,'2016-01-31 14:00:00',NULL,NULL,'2022-09-14 23:00:52','2022-09-14 23:00:52'),(142290,1,NULL,1,17893,'2016-02-29 14:00:00',NULL,NULL,'2022-09-14 23:00:53','2022-09-14 23:00:53'),(142291,1,NULL,1,17893,'2016-03-31 14:00:00',NULL,NULL,'2022-09-14 23:00:54','2022-09-14 23:00:54'),(142292,1,NULL,1,17893,'2016-04-30 14:00:00',NULL,NULL,'2022-09-14 23:00:55','2022-09-14 23:00:55'),(142293,1,NULL,1,17893,'2016-05-31 14:00:00',NULL,NULL,'2022-09-14 23:00:56','2022-09-14 23:00:56'),(142294,1,NULL,1,17893,'2016-06-30 14:00:00',NULL,NULL,'2022-09-14 23:00:57','2022-09-14 23:00:57'),(142295,1,NULL,1,17893,'2016-07-31 14:00:00',NULL,NULL,'2022-09-14 23:00:58','2022-09-14 23:00:58'),(142296,1,NULL,1,17893,'2016-08-31 14:00:00',NULL,NULL,'2022-09-14 23:00:59','2022-09-14 23:00:59'),(142297,1,NULL,1,17893,'2016-09-30 14:00:00',NULL,NULL,'2022-09-14 23:01:00','2022-09-14 23:01:00'),(142298,1,NULL,1,17893,'2016-10-31 14:00:00',NULL,NULL,'2022-09-14 23:01:01','2022-09-14 23:01:01'),(142299,1,NULL,1,17893,'2016-11-30 14:00:00',NULL,NULL,'2022-09-14 23:01:02','2022-09-14 23:01:02'),(142300,1,NULL,1,17893,'2016-12-31 14:00:00',NULL,NULL,'2022-09-14 23:01:03','2022-09-14 23:01:03'),(142301,1,NULL,1,17893,'2017-01-31 14:00:00',NULL,NULL,'2022-09-14 23:01:03','2022-09-14 23:01:03'),(142302,1,NULL,1,17893,'2017-02-28 14:00:00',NULL,NULL,'2022-09-14 23:01:04','2022-09-14 23:01:04'),(142303,1,NULL,1,17893,'2017-03-31 14:00:00',NULL,NULL,'2022-09-14 23:01:06','2022-09-14 23:01:06'),(142304,1,NULL,1,17893,'2017-04-30 14:00:00',NULL,NULL,'2022-09-14 23:01:06','2022-09-14 23:01:06'),(142305,1,NULL,1,17893,'2017-05-31 14:00:00',NULL,NULL,'2022-09-14 23:01:07','2022-09-14 23:01:07'),(142306,1,NULL,1,17893,'2017-06-30 14:00:00',NULL,NULL,'2022-09-14 23:01:08','2022-09-14 23:01:08'),(142307,1,NULL,1,17893,'2017-07-31 14:00:00',NULL,NULL,'2022-09-14 23:01:10','2022-09-14 23:01:10'),(142308,1,NULL,1,17893,'2017-08-31 14:00:00',NULL,NULL,'2022-09-14 23:01:11','2022-09-14 23:01:11'),(142309,1,NULL,1,17893,'2017-09-30 14:00:00',NULL,NULL,'2022-09-14 23:01:12','2022-09-14 23:01:12'),(142310,1,NULL,1,17893,'2017-10-31 14:00:00',NULL,NULL,'2022-09-14 23:01:13','2022-09-14 23:01:13'),(142311,1,NULL,1,17893,'2017-11-30 14:00:00',NULL,NULL,'2022-09-14 23:01:14','2022-09-14 23:01:14'),(142312,1,NULL,1,17893,'2017-12-31 14:00:00',NULL,NULL,'2022-09-14 23:01:15','2022-09-14 23:01:15'),(142313,1,NULL,1,17893,'2018-01-31 14:00:00',NULL,NULL,'2022-09-14 23:01:16','2022-09-14 23:01:16'),(142314,1,NULL,1,17893,'2018-02-28 14:00:00',NULL,NULL,'2022-09-14 23:01:17','2022-09-14 23:01:17'),(142315,1,NULL,1,17893,'2018-03-31 14:00:00',NULL,NULL,'2022-09-14 23:01:18','2022-09-14 23:01:18'),(142316,1,NULL,1,17893,'2018-04-30 14:00:00',NULL,NULL,'2022-09-14 23:01:18','2022-09-14 23:01:18'),(142317,1,NULL,1,17893,'2018-05-31 14:00:00',NULL,NULL,'2022-09-14 23:01:19','2022-09-14 23:01:19'),(142318,1,NULL,1,17893,'2018-06-30 14:00:00',NULL,NULL,'2022-09-14 23:01:20','2022-09-14 23:01:20'),(142319,1,NULL,1,17893,'2018-07-31 14:00:00',NULL,NULL,'2022-09-14 23:01:21','2022-09-14 23:01:21'),(142320,1,NULL,1,17893,'2018-08-31 14:00:00',NULL,NULL,'2022-09-14 23:01:22','2022-09-14 23:01:22'),(142321,1,NULL,1,17893,'2018-09-30 14:00:00',NULL,NULL,'2022-09-14 23:01:23','2022-09-14 23:01:23'),(142322,1,NULL,1,17893,'2018-10-31 14:00:00',NULL,NULL,'2022-09-14 23:01:25','2022-09-14 23:01:25'),(142323,1,NULL,1,17893,'2018-11-30 14:00:00',NULL,NULL,'2022-09-14 23:01:25','2022-09-14 23:01:25'),(142324,1,NULL,1,17893,'2018-12-31 14:00:00',NULL,NULL,'2022-09-14 23:01:26','2022-09-14 23:01:26'),(142325,1,NULL,1,17893,'2019-01-31 14:00:00',NULL,NULL,'2022-09-14 23:01:27','2022-09-14 23:01:27'),(142326,1,NULL,1,17893,'2019-02-28 14:00:00',NULL,NULL,'2022-09-14 23:01:29','2022-09-14 23:01:29'),(142327,1,NULL,1,17893,'2019-03-31 14:00:00',NULL,NULL,'2022-09-14 23:01:30','2022-09-14 23:01:30'),(142328,1,NULL,1,17893,'2019-04-30 14:00:00',NULL,NULL,'2022-09-14 23:01:31','2022-09-14 23:01:31'),(142329,1,NULL,1,17893,'2019-05-31 14:00:00',NULL,NULL,'2022-09-14 23:01:32','2022-09-14 23:01:32'),(142330,1,NULL,1,17893,'2019-06-30 14:00:00',NULL,NULL,'2022-09-14 23:01:33','2022-09-14 23:01:33'),(142331,1,NULL,1,17893,'2019-07-31 14:00:00',NULL,NULL,'2022-09-14 23:01:34','2022-09-14 23:01:34'),(142332,1,NULL,1,17893,'2019-08-31 14:00:00',NULL,NULL,'2022-09-14 23:01:35','2022-09-14 23:01:35'),(142333,1,NULL,1,17893,'2019-09-30 14:00:00',NULL,NULL,'2022-09-14 23:01:36','2022-09-14 23:01:36'),(142334,1,NULL,1,17893,'2019-10-31 14:00:00',NULL,NULL,'2022-09-14 23:01:37','2022-09-14 23:01:37'),(142335,1,NULL,1,17893,'2019-11-30 14:00:00',NULL,NULL,'2022-09-14 23:01:38','2022-09-14 23:01:38'),(142336,1,NULL,1,17893,'2019-12-31 14:00:00',NULL,NULL,'2022-09-14 23:01:38','2022-09-14 23:01:38'),(142337,1,NULL,1,17893,'2020-01-31 14:00:00',NULL,NULL,'2022-09-14 23:01:40','2022-09-14 23:01:40'),(142338,1,NULL,1,17893,'2020-02-29 14:00:00',NULL,NULL,'2022-09-14 23:01:41','2022-09-14 23:01:41'),(142339,1,NULL,1,17893,'2020-03-31 14:00:00',NULL,NULL,'2022-09-14 23:01:42','2022-09-14 23:01:42'),(142340,1,NULL,1,17893,'2020-04-30 14:00:00',NULL,NULL,'2022-09-14 23:01:43','2022-09-14 23:01:43'),(142341,1,NULL,1,17893,'2020-05-31 14:00:00',NULL,NULL,'2022-09-14 23:01:45','2022-09-14 23:01:45'),(142342,1,NULL,1,17893,'2020-06-30 14:00:00',NULL,NULL,'2022-09-14 23:01:46','2022-09-14 23:01:46'),(142343,1,NULL,1,17893,'2020-07-31 14:00:00',NULL,NULL,'2022-09-14 23:01:47','2022-09-14 23:01:47'),(142344,1,NULL,1,17893,'2020-08-31 14:00:00',NULL,NULL,'2022-09-14 23:01:48','2022-09-14 23:01:48'),(142345,1,NULL,1,17893,'2020-09-30 14:00:00',NULL,NULL,'2022-09-14 23:01:49','2022-09-14 23:01:49'),(142346,1,NULL,1,17893,'2020-10-31 14:00:00',NULL,NULL,'2022-09-14 23:01:49','2022-09-14 23:01:49'),(142347,1,NULL,1,17893,'2020-11-30 14:00:00',NULL,NULL,'2022-09-14 23:01:50','2022-09-14 23:01:50'),(142348,1,NULL,1,17893,'2020-12-31 14:00:00',NULL,NULL,'2022-09-14 23:01:51','2022-09-14 23:01:51'),(142349,1,NULL,1,17893,'2021-01-31 14:00:00',NULL,NULL,'2022-09-14 23:01:52','2022-09-14 23:01:52'),(142350,1,NULL,1,17893,'2021-02-28 14:00:00',NULL,NULL,'2022-09-14 23:01:53','2022-09-14 23:01:53'),(142351,1,NULL,1,17893,'2021-03-31 14:00:00',NULL,NULL,'2022-09-14 23:01:54','2022-09-14 23:01:54'),(142352,1,NULL,1,17893,'2021-04-30 14:00:00',NULL,NULL,'2022-09-14 23:01:55','2022-09-14 23:01:55'),(142353,1,NULL,1,17893,'2021-05-31 14:00:00',NULL,NULL,'2022-09-14 23:01:56','2022-09-14 23:01:56'),(142354,1,NULL,1,17893,'2021-06-30 14:00:00',NULL,NULL,'2022-09-14 23:01:57','2022-09-14 23:01:57'),(142355,1,NULL,1,17893,'2021-07-31 14:00:00',NULL,NULL,'2022-09-14 23:01:58','2022-09-14 23:01:58'),(142356,1,NULL,1,17893,'2021-08-31 14:00:00',NULL,NULL,'2022-09-14 23:01:59','2022-09-14 23:01:59'),(142357,1,NULL,1,17893,'2021-09-30 14:00:00',NULL,NULL,'2022-09-14 23:02:00','2022-09-14 23:02:00'),(142358,1,NULL,1,17893,'2021-10-31 14:00:00',NULL,NULL,'2022-09-14 23:02:01','2022-09-14 23:02:01'),(142359,1,NULL,1,17893,'2021-11-30 14:00:00',NULL,NULL,'2022-09-14 23:02:02','2022-09-14 23:02:02'),(142360,1,NULL,1,17893,'2021-12-31 14:00:00',NULL,NULL,'2022-09-14 23:02:02','2022-09-14 23:02:02'),(142361,1,NULL,1,17893,'2022-01-31 14:00:00',NULL,NULL,'2022-09-14 23:02:03','2022-09-14 23:02:03'),(142362,1,NULL,1,17893,'2022-02-28 14:00:00',NULL,NULL,'2022-09-14 23:02:04','2022-09-14 23:02:04'),(142363,1,NULL,1,17893,'2022-03-31 14:00:00',NULL,NULL,'2022-09-14 23:02:05','2022-09-14 23:02:05'),(142364,1,NULL,1,17893,'2022-04-30 14:00:00',NULL,NULL,'2022-09-14 23:02:06','2022-09-14 23:02:06'),(142365,1,NULL,1,17893,'2022-05-31 14:00:00',NULL,NULL,'2022-09-14 23:02:06','2022-09-14 23:02:06'),(142366,1,NULL,1,17893,'2022-06-30 14:00:00',NULL,NULL,'2022-09-14 23:02:07','2022-09-14 23:02:07'),(142367,1,NULL,1,17893,'2022-07-31 14:00:00',NULL,NULL,'2022-09-14 23:02:08','2022-09-14 23:02:08'),(142368,1,NULL,1,17893,'2022-08-31 14:00:00',NULL,NULL,'2022-09-14 23:02:09','2022-09-14 23:02:09'),(142370,1,NULL,1,17893,'2022-08-31 14:00:00',NULL,NULL,'2022-09-14 23:16:07','2022-09-14 23:16:07'),(142372,1,NULL,1,17893,'2022-08-31 14:00:00',NULL,NULL,'2022-09-14 23:16:36','2022-09-14 23:16:36'),(142375,6,NULL,6,17887,'2021-09-24 05:39:00',NULL,NULL,'2022-09-15 01:40:32','2022-09-15 01:40:32'),(142376,6,NULL,6,17887,'2021-09-24 05:39:00',NULL,NULL,'2022-09-15 01:40:33','2022-09-15 01:40:33'),(142377,6,NULL,6,17887,'2021-09-24 05:39:00',NULL,NULL,'2022-09-15 01:40:38','2022-09-15 01:40:38'),(142382,5,NULL,5,17934,'2022-07-28 02:30:00',NULL,NULL,'2022-09-15 06:42:56','2022-09-15 06:42:56'),(142384,5,NULL,5,17934,'2022-07-28 02:30:00',NULL,NULL,'2022-09-15 06:44:00','2022-09-15 06:44:00'),(142386,5,NULL,5,17934,'2022-07-28 02:30:00',NULL,NULL,'2022-09-15 06:50:18','2022-09-15 06:50:18'),(142387,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-15 23:02:05','2022-09-15 23:02:05'),(142509,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 01:49:00','2022-09-20 01:49:00'),(142511,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 01:49:14','2022-09-20 01:49:14'),(142513,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 01:49:24','2022-09-20 01:49:24'),(142515,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 01:49:40','2022-09-20 01:49:40'),(142517,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 01:51:14','2022-09-20 01:51:14'),(142519,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 01:51:52','2022-09-20 01:51:52'),(142521,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 01:52:15','2022-09-20 01:52:15'),(142523,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 01:52:38','2022-09-20 01:52:38'),(142525,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 01:52:56','2022-09-20 01:52:56'),(142527,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 01:53:15','2022-09-20 01:53:15'),(142529,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 01:55:16','2022-09-20 01:55:16'),(142531,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 01:55:43','2022-09-20 01:55:43'),(142533,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 01:58:51','2022-09-20 01:58:51'),(142535,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 01:59:51','2022-09-20 01:59:51'),(142537,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 02:00:45','2022-09-20 02:00:45'),(142540,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 02:02:56','2022-09-20 02:02:56'),(142542,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 02:03:48','2022-09-20 02:03:48'),(142544,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 02:06:46','2022-09-20 02:06:46'),(142546,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 02:06:58','2022-09-20 02:06:58'),(142548,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 02:07:21','2022-09-20 02:07:21'),(142550,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 02:07:38','2022-09-20 02:07:38'),(142552,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 02:59:40','2022-09-20 02:59:40'),(142554,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 03:01:15','2022-09-20 03:01:15'),(142555,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 03:09:00','2022-09-20 03:09:00'),(142556,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 03:10:06','2022-09-20 03:10:06'),(142557,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 03:10:24','2022-09-20 03:10:24'),(142558,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 03:12:51','2022-09-20 03:12:51'),(142560,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 03:13:29','2022-09-20 03:13:29'),(142567,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 03:33:02','2022-09-20 03:33:02'),(142569,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 03:33:36','2022-09-20 03:33:36'),(142572,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-09-20 04:39:11','2022-09-20 04:39:11'),(142574,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-09-20 04:39:22','2022-09-20 04:39:22'),(142576,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-09-20 04:39:58','2022-09-20 04:39:58'),(142578,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-09-20 04:40:51','2022-09-20 04:40:51'),(142579,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-09-20 04:48:05','2022-09-20 04:48:05'),(142581,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-09-20 04:48:20','2022-09-20 04:48:20'),(142582,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 05:03:15','2022-09-20 05:03:15'),(142584,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-09-20 05:03:44','2022-09-20 05:03:44'),(142585,5,NULL,5,17934,'2023-09-12 03:53:00',NULL,NULL,'2022-09-20 07:28:51','2022-09-20 07:28:51'),(142588,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 07:41:05','2022-09-20 07:41:05'),(142590,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 07:41:50','2022-09-20 07:41:50'),(142592,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 07:42:30','2022-09-20 07:42:30'),(142594,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-20 21:44:14','2022-09-20 21:44:14'),(142600,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-21 01:02:40','2022-09-21 01:02:40'),(142602,6,NULL,6,17887,'2023-09-24 05:39:00',NULL,NULL,'2022-09-21 01:03:56','2022-09-21 01:03:56'),(142603,5,NULL,5,17934,'2023-09-12 03:53:00',NULL,NULL,'2022-09-27 05:42:02','2022-09-27 05:42:02'),(142606,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-09-28 04:54:01','2022-09-28 04:54:01'),(142608,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-09-28 05:02:57','2022-09-28 05:02:57'),(142610,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-09-28 05:04:20','2022-09-28 05:04:20'),(142612,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-09-28 05:05:38','2022-09-28 05:05:38'),(142614,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-09-28 05:06:14','2022-09-28 05:06:14'),(142616,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-09-28 05:06:28','2022-09-28 05:06:28'),(142629,6,NULL,6,17887,'2022-09-28 05:39:00',NULL,NULL,'2022-09-28 06:41:58','2022-09-28 06:41:58'),(142631,5,NULL,5,17934,'2022-09-28 03:53:00',NULL,NULL,'2022-09-28 06:45:26','2022-09-28 06:45:26'),(142633,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-09-28 06:52:52','2022-09-28 06:52:52'),(142637,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-09-28 06:54:59','2022-09-28 06:54:59'),(142639,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-09-28 06:55:46','2022-09-28 06:55:46'),(142641,5,NULL,5,17934,'2022-09-28 03:53:00',NULL,NULL,'2022-09-29 00:19:47','2022-09-29 00:19:47'),(142649,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2022-09-29 02:22:40','2022-09-29 02:22:40'),(142655,5,NULL,5,17934,'2023-09-12 06:03:00',NULL,NULL,'2022-10-04 04:48:56','2022-10-04 04:48:56'),(142657,5,NULL,5,17934,'2023-09-12 06:03:00',NULL,NULL,'2022-10-04 04:50:02','2022-10-04 04:50:02'),(142660,5,NULL,5,17934,'2023-09-12 06:03:00',NULL,NULL,'2022-10-04 05:31:40','2022-10-04 05:31:40'),(142661,5,NULL,5,17934,'2023-09-12 06:03:00',NULL,NULL,'2022-10-04 05:32:00','2022-10-04 05:32:00'),(142666,5,NULL,5,17934,'2023-09-12 06:03:00',NULL,NULL,'2022-10-04 06:04:22','2022-10-04 06:04:22'),(142668,5,NULL,5,17934,'2023-09-12 06:03:00',NULL,NULL,'2022-10-04 06:47:09','2022-10-04 06:47:09'),(142669,5,NULL,5,17934,'2023-09-12 06:03:00',NULL,NULL,'2022-10-04 07:19:36','2022-10-04 07:19:36'),(142670,5,NULL,5,17934,'2023-09-12 06:03:00',NULL,NULL,'2022-10-04 07:20:04','2022-10-04 07:20:04'),(142672,6,NULL,6,17934,'2021-02-15 05:31:00',NULL,NULL,'2022-10-04 21:55:54','2022-10-04 21:55:54'),(142675,6,NULL,6,17934,'2021-02-15 05:31:00',NULL,NULL,'2022-10-04 21:57:49','2022-10-04 21:57:49'),(142676,5,NULL,5,17934,'2022-09-28 03:53:00',NULL,NULL,'2022-10-05 03:53:27','2022-10-05 03:53:27'),(142677,5,NULL,5,17934,'2022-09-28 03:53:00',NULL,NULL,'2022-10-05 03:53:28','2022-10-05 03:53:28'),(142679,5,NULL,5,17934,'2023-09-28 03:53:00',NULL,NULL,'2022-10-05 03:56:33','2022-10-05 03:56:33'),(142681,5,NULL,5,17934,'2023-09-28 03:53:00',NULL,NULL,'2022-10-05 04:28:42','2022-10-05 04:28:42'),(142684,6,NULL,6,17934,'2021-02-15 05:31:00',NULL,NULL,'2022-10-09 21:35:20','2022-10-09 21:35:20'),(142686,6,NULL,6,17934,'2021-02-15 05:31:00',NULL,NULL,'2022-10-09 21:35:41','2022-10-09 21:35:41'),(142688,6,NULL,6,17934,'2021-02-15 05:31:00',NULL,NULL,'2022-10-09 21:35:58','2022-10-09 21:35:58'),(142690,6,NULL,6,17934,'2021-02-15 05:31:00',NULL,NULL,'2022-10-09 21:36:39','2022-10-09 21:36:39'),(142692,6,NULL,6,17934,'2021-02-15 05:31:00',NULL,NULL,'2022-10-09 21:37:04','2022-10-09 21:37:04'),(142694,6,NULL,6,17934,'2021-02-15 05:31:00',NULL,NULL,'2022-10-09 21:37:34','2022-10-09 21:37:34'),(142696,6,NULL,6,17934,'2021-02-15 05:31:00',NULL,NULL,'2022-10-09 21:39:09','2022-10-09 21:39:09'),(142697,6,NULL,6,17934,'2021-02-15 05:31:00',NULL,NULL,'2022-10-09 21:39:43','2022-10-09 21:39:43'),(142699,5,NULL,5,17934,'2023-09-12 06:03:00',NULL,NULL,'2022-10-10 01:16:50','2022-10-10 01:16:50'),(142700,5,NULL,5,17934,'2023-09-12 06:03:00',NULL,NULL,'2022-10-10 05:42:34','2022-10-10 05:42:34'),(142703,5,NULL,5,17934,'2023-09-12 06:03:00',NULL,NULL,'2022-10-10 05:51:11','2022-10-10 05:51:11'),(142705,5,NULL,5,17934,'2023-09-12 06:03:00',NULL,NULL,'2022-10-12 06:29:18','2022-10-12 06:29:18'),(142706,5,NULL,5,17934,'2022-10-12 06:03:00',NULL,NULL,'2022-10-12 06:38:26','2022-10-12 06:38:26'),(142707,5,NULL,5,17934,'2023-09-12 06:03:00',NULL,NULL,'2022-10-12 06:38:57','2022-10-12 06:38:57'),(142708,5,NULL,5,17934,'2023-09-12 06:03:00',NULL,NULL,'2022-10-12 06:39:01','2022-10-12 06:39:01'),(142710,5,NULL,5,17934,'2022-10-12 06:03:00',NULL,NULL,'2022-10-12 06:39:19','2022-10-12 06:39:19'),(142711,17,NULL,17,NULL,'2022-06-05 23:23:00',NULL,NULL,'2022-10-13 23:32:45','2022-10-13 23:32:45'),(142712,17,NULL,17,NULL,'2022-06-05 23:23:00',NULL,NULL,'2022-10-13 23:33:08','2022-10-13 23:33:08'),(142714,17,NULL,17,NULL,'2022-06-05 23:23:00',NULL,NULL,'2022-10-13 23:34:58','2022-10-13 23:34:58'),(142717,6,NULL,6,17941,'2022-10-18 00:50:00',NULL,NULL,'2022-10-18 00:44:19','2022-10-18 00:50:59'),(142718,6,NULL,6,17954,'2022-09-28 05:39:00',NULL,NULL,'2022-10-18 00:44:20','2022-10-18 00:44:20'),(142722,6,NULL,6,17954,'2022-09-28 05:39:00',NULL,NULL,'2022-10-18 00:50:13','2022-10-18 00:50:13'),(142723,6,NULL,6,17954,'2022-09-28 05:39:00',NULL,NULL,'2022-10-18 00:50:14','2022-10-18 00:50:14'),(142724,6,NULL,6,17941,'2022-10-18 00:50:00',NULL,NULL,'2022-10-18 00:50:59','2022-10-18 00:50:59'),(142726,6,NULL,6,17941,'2022-10-18 00:50:00',NULL,NULL,'2022-10-18 00:51:49','2022-10-18 00:51:49'),(142728,6,NULL,6,17941,'2022-10-18 00:50:00',NULL,NULL,'2022-10-18 00:54:02','2022-10-18 00:54:02'),(142730,6,NULL,6,17941,'2022-10-18 00:50:00',NULL,NULL,'2022-10-18 00:57:16','2022-10-18 00:57:16'),(142732,6,NULL,6,17941,'2022-10-18 00:50:00',NULL,NULL,'2022-10-18 00:57:59','2022-10-18 00:57:59'),(142734,6,NULL,6,17941,'2022-10-18 00:50:00',NULL,NULL,'2022-10-18 00:59:35','2022-10-18 00:59:35'),(142736,6,NULL,6,17941,'2022-10-18 00:50:00',NULL,NULL,'2022-10-18 01:02:30','2022-10-18 01:02:30'),(142738,6,NULL,6,17941,'2022-10-18 00:50:00',NULL,NULL,'2022-10-18 01:06:33','2022-10-18 01:06:33'),(142740,6,NULL,6,17941,'2022-10-18 00:50:00',NULL,NULL,'2022-10-18 01:09:54','2022-10-18 01:09:54'),(142742,6,NULL,6,17941,'2022-10-18 00:50:00',NULL,NULL,'2022-10-18 01:10:48','2022-10-18 01:10:48'),(142744,6,NULL,6,17941,'2022-10-18 00:50:00',NULL,NULL,'2022-10-18 01:12:29','2022-10-18 01:12:29'),(142746,6,NULL,6,17941,'2022-10-18 00:50:00',NULL,NULL,'2022-10-18 01:14:22','2022-10-18 01:14:22'),(142748,6,NULL,6,17941,'2022-10-18 00:50:00',NULL,NULL,'2022-10-18 01:15:47','2022-10-18 01:15:47'),(142750,6,NULL,6,17941,'2022-10-18 00:50:00',NULL,NULL,'2022-10-18 01:17:28','2022-10-18 01:17:28'),(142751,6,NULL,6,17941,'2022-10-18 00:50:00',NULL,NULL,'2022-10-18 01:24:52','2022-10-18 01:24:52'),(142753,6,NULL,6,17941,'2022-10-18 00:50:00',NULL,NULL,'2022-10-18 01:26:50','2022-10-18 01:26:50'),(142754,6,NULL,6,17941,'2022-10-18 00:50:00',NULL,NULL,'2022-10-18 01:27:32','2022-10-18 01:27:32'),(142755,5,NULL,5,1,'2022-01-16 23:38:00',NULL,NULL,'2022-10-18 04:05:07','2022-10-18 04:05:07'),(142756,5,NULL,5,17887,'2021-05-26 01:45:00',NULL,NULL,'2022-10-18 04:05:09','2022-10-18 04:05:09'),(142758,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-10-18 22:57:54','2022-10-18 22:57:54'),(142760,6,NULL,6,17887,'2022-09-28 05:39:00',NULL,NULL,'2022-10-18 23:19:48','2022-10-18 23:19:48'),(142762,6,NULL,6,17887,'2022-09-28 05:39:00',NULL,NULL,'2022-10-18 23:24:16','2022-10-18 23:24:16'),(142765,6,NULL,6,17887,'2022-09-28 05:39:00',NULL,NULL,'2022-10-18 23:38:11','2022-10-18 23:38:11'),(142767,6,NULL,6,17887,'2022-09-28 05:39:00',NULL,NULL,'2022-10-18 23:39:41','2022-10-18 23:39:41'),(142769,6,NULL,6,17887,'2022-09-28 05:39:00',NULL,NULL,'2022-10-18 23:40:20','2022-10-18 23:40:20'),(142771,6,NULL,6,17887,'2022-09-28 05:39:00',NULL,NULL,'2022-10-19 03:57:14','2022-10-19 03:57:14'),(142773,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-10-19 03:57:28','2022-10-19 03:57:28'),(142778,6,NULL,6,17941,'2022-10-18 00:50:00',NULL,NULL,'2022-10-20 00:46:10','2022-10-20 00:46:10'),(142779,6,NULL,6,17941,'2022-10-18 00:50:00',NULL,NULL,'2022-10-20 00:46:16','2022-10-20 00:46:16'),(142780,5,NULL,5,17934,'2022-09-28 03:53:00',NULL,NULL,'2022-10-20 04:36:59','2022-10-20 04:36:59'),(142783,13,NULL,13,NULL,'2021-11-15 01:51:00',NULL,NULL,'2022-10-21 02:38:41','2022-10-21 02:38:41'),(142784,17,NULL,17,NULL,'2022-06-05 23:23:00',NULL,NULL,'2022-10-21 03:32:12','2022-10-21 03:32:12'),(142786,17,NULL,17,NULL,'2022-06-05 23:23:00',NULL,NULL,'2022-10-21 03:47:31','2022-10-21 03:47:31'),(142787,17,NULL,17,NULL,'2022-06-05 23:23:00',NULL,NULL,'2022-10-21 03:56:40','2022-10-21 03:56:40'),(142788,17,NULL,17,NULL,'2022-06-05 23:23:00',NULL,NULL,'2022-10-21 03:56:53','2022-10-21 03:56:53'),(142789,17,NULL,17,NULL,'2022-06-05 23:23:00',NULL,NULL,'2022-10-21 03:57:13','2022-10-21 03:57:13'),(142790,17,NULL,17,NULL,'2022-06-05 23:23:00',NULL,NULL,'2022-10-21 04:05:41','2022-10-21 04:05:41'),(142792,17,NULL,17,NULL,'2022-06-05 23:23:00',NULL,NULL,'2022-10-21 04:10:06','2022-10-21 04:10:06'),(142794,17,NULL,17,NULL,'2022-06-05 23:23:00',NULL,NULL,'2022-10-21 04:10:41','2022-10-21 04:10:41'),(142796,17,NULL,17,NULL,'2022-06-05 23:23:00',NULL,NULL,'2022-10-21 04:18:21','2022-10-21 04:18:21'),(142799,6,NULL,6,17934,'2021-02-15 05:31:00',NULL,NULL,'2022-10-21 05:20:56','2022-10-21 05:20:56'),(142801,5,NULL,5,17934,'2021-04-22 06:37:00',NULL,NULL,'2022-10-21 06:06:31','2022-11-04 04:01:06'),(142803,5,NULL,5,17934,'2022-10-28 06:37:00',NULL,NULL,'2022-10-21 07:19:36','2022-10-21 07:19:36'),(142804,6,NULL,6,17934,'2021-02-15 05:31:00',NULL,NULL,'2022-10-23 22:57:26','2022-10-23 22:57:26'),(142805,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-10-23 23:00:20','2022-10-23 23:00:20'),(142808,5,NULL,5,17934,'2022-10-12 06:03:00',NULL,NULL,'2022-10-23 23:50:15','2022-10-23 23:50:15'),(142811,5,NULL,5,17934,'2022-10-12 06:03:00',NULL,NULL,'2022-10-23 23:55:08','2022-10-23 23:55:08'),(142814,5,NULL,5,17934,'2022-10-12 06:03:00',NULL,NULL,'2022-10-23 23:58:00','2022-10-23 23:58:00'),(142817,5,NULL,5,17934,'2022-10-12 06:03:00',NULL,NULL,'2022-10-24 00:00:09','2022-10-24 00:00:09'),(142820,6,NULL,6,17934,'2021-02-15 05:31:00',NULL,NULL,'2022-10-24 00:25:59','2022-10-24 00:25:59'),(142826,6,NULL,6,17887,'2022-09-28 05:39:00',NULL,NULL,'2022-10-24 01:32:43','2022-10-24 01:32:43'),(142828,6,NULL,6,17887,'2022-09-28 05:39:00',NULL,NULL,'2022-10-24 01:33:05','2022-10-24 01:33:05'),(142832,6,NULL,6,17934,'2021-02-15 05:31:00',NULL,NULL,'2022-10-24 06:46:27','2022-10-24 06:46:27'),(142833,5,NULL,5,17934,'2023-10-25 03:23:00',NULL,NULL,'2022-10-25 00:12:22','2022-10-25 03:24:00'),(142839,5,NULL,5,17934,'2023-10-25 03:23:00',NULL,NULL,'2022-10-25 03:29:29','2022-10-25 03:29:29'),(142840,5,NULL,5,17934,'2023-10-25 03:23:00',NULL,NULL,'2022-10-25 03:33:47','2022-10-25 03:33:47'),(142841,6,NULL,6,17887,'2022-09-28 05:39:00',NULL,NULL,'2022-10-25 03:43:56','2022-10-25 03:43:56'),(142843,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2022-10-25 22:44:17','2022-10-25 22:44:17'),(142844,6,NULL,6,17934,'2021-02-15 05:31:00',NULL,NULL,'2022-10-25 22:47:48','2022-10-25 22:47:48'),(142846,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-10-25 22:49:49','2022-10-25 22:49:49'),(142847,6,NULL,6,141616,'2022-11-04 02:15:00',NULL,NULL,'2022-10-26 02:13:04','2022-11-04 03:53:18'),(142848,6,NULL,6,17934,'2022-10-26 02:15:00',NULL,NULL,'2022-10-26 02:15:52','2022-10-26 02:15:52'),(142850,6,NULL,6,17934,'2022-10-26 02:15:00',NULL,NULL,'2022-10-26 02:16:20','2022-10-26 02:16:20'),(142852,6,NULL,6,17934,'2022-10-26 02:15:00',NULL,NULL,'2022-10-26 02:16:33','2022-10-26 02:16:33'),(142854,6,NULL,6,17934,'2022-10-26 02:15:00',NULL,NULL,'2022-10-26 02:17:36','2022-10-26 02:17:36'),(142856,6,NULL,6,17934,'2022-10-26 02:15:00',NULL,NULL,'2022-10-26 02:18:39','2022-10-26 02:18:39'),(142859,13,NULL,13,NULL,'2021-11-15 01:51:00',NULL,NULL,'2022-10-26 07:04:46','2022-10-26 07:04:46'),(142861,13,NULL,13,NULL,'2021-11-15 01:51:00',NULL,NULL,'2022-10-26 07:05:34','2022-10-26 07:05:34'),(142863,13,NULL,13,NULL,'2021-11-15 01:51:00',NULL,NULL,'2022-10-26 07:06:46','2022-10-26 07:06:46'),(142865,13,NULL,13,NULL,'2021-11-15 01:51:00',NULL,NULL,'2022-10-26 07:07:43','2022-10-26 07:07:43'),(142867,13,NULL,13,NULL,'2021-11-15 01:51:00',NULL,NULL,'2022-10-26 07:08:25','2022-10-26 07:08:25'),(142871,13,NULL,13,NULL,'2021-11-15 01:51:00',NULL,NULL,'2022-10-26 23:44:32','2022-10-26 23:44:32'),(142873,5,NULL,5,17934,'2022-10-12 06:03:00',NULL,NULL,'2022-10-27 04:16:32','2022-10-27 04:16:32'),(142875,5,NULL,5,17934,'2023-03-30 06:26:00',NULL,NULL,'2022-10-31 00:51:19','2023-03-30 06:26:19'),(142878,6,NULL,6,17934,'2023-10-26 02:15:00',NULL,NULL,'2022-11-03 05:32:10','2022-11-03 05:32:10'),(142880,6,NULL,6,141616,'2023-10-26 02:15:00',NULL,NULL,'2022-11-03 05:32:42','2022-11-03 05:32:42'),(142882,6,NULL,6,141616,'2023-10-26 02:15:00',NULL,NULL,'2022-11-03 05:33:05','2022-11-03 05:33:05'),(142883,6,NULL,6,141616,'2023-10-26 02:15:00',NULL,NULL,'2022-11-03 05:33:11','2022-11-03 05:33:11'),(142886,6,NULL,6,141616,'2023-10-26 02:15:00',NULL,NULL,'2022-11-03 05:49:19','2022-11-03 05:49:19'),(142889,6,NULL,6,141616,'2023-10-26 02:15:00',NULL,NULL,'2022-11-03 05:52:24','2022-11-03 05:52:24'),(142891,6,NULL,6,141616,'2023-10-26 02:15:00',NULL,NULL,'2022-11-03 05:52:48','2022-11-03 05:52:48'),(142892,6,NULL,6,141616,'2023-10-26 02:15:00',NULL,NULL,'2022-11-04 03:52:23','2022-11-04 03:52:23'),(142894,6,NULL,6,141616,'2022-11-04 02:15:00',NULL,NULL,'2022-11-04 03:53:18','2022-11-04 03:53:18'),(142896,5,NULL,5,17934,'2021-04-22 06:37:00',NULL,NULL,'2022-11-04 04:01:06','2022-11-04 04:01:06'),(142898,6,NULL,6,141616,'2022-11-04 02:15:00',NULL,NULL,'2022-11-04 04:05:05','2022-11-04 04:05:05'),(142899,6,NULL,6,141616,'2022-11-04 02:15:00',NULL,NULL,'2022-11-04 04:08:35','2022-11-04 04:08:35'),(142900,6,NULL,6,141616,'2022-11-04 02:15:00',NULL,NULL,'2022-11-04 04:08:42','2022-11-04 04:08:42'),(142901,5,NULL,5,17934,'2022-11-16 04:11:00',NULL,NULL,'2022-11-07 04:09:01','2022-11-16 22:13:39'),(142902,5,NULL,5,17934,'2023-11-07 04:11:00',NULL,NULL,'2022-11-07 04:54:31','2022-11-07 04:54:31'),(142904,5,NULL,5,17934,'2023-11-07 04:11:00',NULL,NULL,'2022-11-07 04:58:19','2022-11-07 04:58:19'),(142906,5,NULL,5,17934,'2023-11-07 04:11:00',NULL,NULL,'2022-11-07 04:58:50','2022-11-07 04:58:50'),(142908,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-11-07 05:01:35','2022-11-07 05:01:35'),(142910,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-11-07 05:01:52','2022-11-07 05:01:52'),(142913,5,NULL,5,17934,'2023-11-07 04:11:00',NULL,NULL,'2022-11-07 05:06:23','2022-11-07 05:06:23'),(142914,5,NULL,5,17934,'2023-11-07 04:11:00',NULL,NULL,'2022-11-07 05:18:15','2022-11-07 05:18:15'),(142916,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-11-07 05:22:37','2022-11-07 05:22:37'),(142917,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-11-07 05:23:32','2022-11-07 05:23:32'),(142919,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-11-07 05:23:50','2022-11-07 05:23:50'),(142921,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-11-07 05:24:05','2022-11-07 05:24:05'),(142923,6,NULL,6,141616,'2022-11-04 02:15:00',NULL,NULL,'2022-11-08 02:58:40','2022-11-08 02:58:40'),(142926,13,NULL,13,NULL,'2021-11-15 01:51:00',NULL,NULL,'2022-11-09 06:45:17','2022-11-09 06:45:17'),(142929,13,NULL,13,NULL,'2021-11-15 01:51:00',NULL,NULL,'2022-11-09 06:47:05','2022-11-09 06:47:05'),(142931,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-11-10 00:21:24','2022-11-10 00:21:24'),(142933,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-11-10 00:21:46','2022-11-10 00:21:46'),(142936,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-11-11 00:38:25','2022-11-11 00:38:25'),(142940,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-11-11 00:41:23','2022-11-11 00:41:23'),(142942,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-11-11 00:43:21','2022-11-11 00:43:21'),(142944,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2022-11-11 01:19:58','2022-11-11 01:19:58'),(142946,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2022-11-11 01:21:36','2022-11-11 01:21:36'),(142954,6,NULL,6,17887,'2022-09-28 05:39:00',NULL,NULL,'2022-11-15 05:38:30','2022-11-15 05:38:30'),(142957,5,NULL,5,17934,'2023-11-07 04:11:00',NULL,NULL,'2022-11-16 03:44:31','2022-11-16 03:44:31'),(142958,6,NULL,6,141616,'2022-11-04 02:15:00',NULL,NULL,'2022-11-16 03:48:54','2022-11-16 03:48:54'),(142960,5,NULL,5,17934,'2022-11-16 04:11:00',NULL,NULL,'2022-11-16 22:13:39','2022-11-16 22:13:39'),(142962,5,NULL,5,17934,'2022-11-16 04:11:00',NULL,NULL,'2022-11-16 22:15:23','2022-11-16 22:15:23'),(142964,5,NULL,5,17934,'2022-10-12 06:03:00',NULL,NULL,'2022-11-16 22:16:13','2022-11-16 22:16:13'),(142966,5,NULL,5,17934,'2022-09-28 03:53:00',NULL,NULL,'2022-11-16 22:16:43','2022-11-16 22:16:43'),(142967,5,NULL,5,17934,'2022-08-15 05:32:00',NULL,NULL,'2022-11-16 22:16:59','2022-11-16 22:16:59'),(142968,5,NULL,5,17934,'2022-07-28 02:30:00',NULL,NULL,'2022-11-16 22:17:08','2022-11-16 22:17:08'),(142970,5,NULL,5,17934,'2023-09-28 03:53:00',NULL,NULL,'2022-11-16 22:17:35','2022-11-16 22:17:35'),(142972,5,NULL,5,17934,'2023-10-25 03:23:00',NULL,NULL,'2022-11-16 22:18:05','2022-11-16 22:18:05'),(142973,5,NULL,5,17934,'2022-11-16 04:11:00',NULL,NULL,'2022-11-16 22:18:54','2022-11-16 22:18:54'),(142974,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-11-16 22:27:09','2022-11-16 22:27:09'),(142976,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-11-16 22:27:43','2022-11-16 22:27:43'),(142977,5,NULL,5,17934,'2022-09-28 03:53:00',NULL,NULL,'2022-11-16 23:52:10','2022-11-16 23:52:10'),(142979,5,NULL,5,17934,'2023-10-31 00:55:00',NULL,NULL,'2022-11-17 00:07:32','2022-11-17 00:07:32'),(142982,5,NULL,5,17934,'2023-10-31 00:55:00',NULL,NULL,'2022-11-17 00:10:40','2022-11-17 00:10:40'),(142986,6,NULL,6,17887,'2022-09-28 05:39:00',NULL,NULL,'2022-11-17 00:15:43','2022-11-17 00:15:43'),(142987,6,NULL,6,17887,'2022-09-28 05:39:00',NULL,NULL,'2022-11-17 00:15:49','2022-11-17 00:15:49'),(142989,6,NULL,6,17887,'2022-09-28 05:39:00',NULL,NULL,'2022-11-17 00:21:53','2022-11-17 00:21:53'),(142990,5,NULL,5,17934,'2023-10-31 00:55:00',NULL,NULL,'2022-11-17 04:05:50','2022-11-17 04:05:50'),(142992,5,NULL,5,17934,'2022-11-17 00:55:00',NULL,NULL,'2022-11-17 05:54:20','2022-11-17 05:54:20'),(143001,5,NULL,5,17934,'2022-11-16 04:11:00',NULL,NULL,'2022-11-18 06:02:24','2022-11-18 06:02:24'),(143004,5,NULL,5,17934,'2022-11-16 04:11:00',NULL,NULL,'2022-11-18 06:03:52','2022-11-18 06:03:52'),(143005,5,NULL,5,17934,'2022-11-17 00:55:00',NULL,NULL,'2022-11-18 06:43:09','2022-11-18 06:43:09'),(143007,5,NULL,5,17934,'2022-11-16 04:11:00',NULL,NULL,'2022-11-22 21:32:43','2022-11-22 21:32:43'),(143009,5,NULL,5,17934,'2022-11-16 04:11:00',NULL,NULL,'2022-11-22 21:32:49','2022-11-22 21:32:49'),(143011,5,NULL,5,17934,'2022-11-17 00:55:00',NULL,NULL,'2022-11-22 21:37:02','2022-11-22 21:37:02'),(143013,5,NULL,5,17934,'2022-11-17 00:55:00',NULL,NULL,'2022-11-22 21:38:15','2022-11-22 21:38:15'),(143015,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2022-11-22 21:40:46','2022-11-22 21:40:46'),(143017,5,NULL,5,17887,'2022-01-19 06:26:00',NULL,NULL,'2022-11-25 04:38:45','2022-11-25 04:38:45'),(143018,5,NULL,5,17934,'2022-07-28 02:30:00',NULL,NULL,'2022-11-25 04:39:02','2022-11-25 04:39:02'),(143020,6,NULL,6,141616,'2022-11-04 02:15:00',NULL,NULL,'2022-11-25 05:02:43','2022-11-25 05:02:43'),(143021,15,NULL,15,17875,'2022-12-01 06:59:00',NULL,NULL,'2022-11-25 05:10:48','2022-12-01 06:59:16'),(143022,15,NULL,15,1,'2021-12-10 01:01:00',NULL,NULL,'2022-11-25 05:13:44','2022-11-25 05:13:44'),(143026,5,NULL,5,17934,'2022-11-17 00:55:00',NULL,NULL,'2022-11-25 05:54:23','2022-11-25 05:54:23'),(143028,6,NULL,6,17956,'2017-10-06 06:10:00',NULL,NULL,'2022-11-28 23:23:03','2022-11-28 23:23:03'),(143031,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2022-12-01 04:26:31','2022-12-01 04:26:31'),(143042,15,NULL,15,17875,'2022-12-01 06:59:00',NULL,NULL,'2022-12-01 06:59:16','2022-12-01 06:59:16'),(143044,15,NULL,15,17875,'2022-12-01 06:59:00',NULL,NULL,'2022-12-01 06:59:56','2022-12-01 06:59:56'),(143046,15,NULL,15,17875,'2022-12-01 06:59:00',NULL,NULL,'2022-12-01 07:04:19','2022-12-01 07:04:19'),(143048,15,NULL,15,17875,'2022-12-01 06:59:00',NULL,NULL,'2022-12-01 07:05:06','2022-12-01 07:05:06'),(143050,15,NULL,15,17875,'2022-12-01 06:59:00',NULL,NULL,'2022-12-01 07:05:22','2022-12-01 07:05:22'),(143053,13,NULL,13,NULL,'2021-11-15 01:51:00',NULL,NULL,'2022-12-01 07:14:27','2022-12-01 07:14:27'),(143055,13,NULL,13,NULL,'2021-11-15 01:51:00',NULL,NULL,'2022-12-01 07:16:43','2022-12-01 07:16:43'),(143057,5,NULL,5,17934,'2022-07-28 02:30:00',NULL,NULL,'2022-12-20 00:34:43','2022-12-20 00:34:43'),(143058,15,NULL,15,17887,'2023-01-09 02:21:56',NULL,NULL,'2023-01-09 02:21:56','2023-01-09 02:21:56'),(143059,15,NULL,15,17887,'2023-01-09 02:22:44',NULL,NULL,'2023-01-09 02:22:44','2023-01-09 02:22:44'),(143060,15,NULL,15,17887,'2023-01-09 02:25:00',NULL,NULL,'2023-01-09 02:24:52','2023-01-09 02:25:41'),(143061,15,NULL,15,17887,'2023-01-09 02:25:00',NULL,NULL,'2023-01-09 02:25:41','2023-01-09 02:25:41'),(143063,15,NULL,15,17887,'2023-01-09 02:25:00',NULL,NULL,'2023-01-09 02:26:02','2023-01-09 02:26:02'),(143065,15,NULL,15,17887,'2023-01-09 02:25:00',NULL,NULL,'2023-01-09 02:27:17','2023-01-09 02:27:17'),(143066,15,NULL,15,17887,'2023-01-09 02:25:00',NULL,NULL,'2023-01-09 02:28:01','2023-01-09 02:28:01'),(143067,15,NULL,15,17887,'2023-01-09 02:25:00',NULL,NULL,'2023-01-09 02:40:26','2023-01-09 02:40:26'),(143068,11,NULL,11,NULL,'2021-11-09 23:38:00',NULL,NULL,'2023-01-09 06:57:16','2023-01-09 06:57:16'),(143069,18,NULL,18,NULL,'2023-01-10 00:12:00',NULL,NULL,'2023-01-10 00:12:41','2023-01-10 00:12:41'),(143070,18,NULL,18,NULL,'2023-01-10 00:12:00',NULL,NULL,'2023-01-10 00:12:41','2023-01-10 00:12:41'),(143071,18,NULL,18,NULL,'2023-01-10 00:12:00',NULL,NULL,'2023-01-10 00:12:41','2023-01-10 00:12:41'),(143072,18,NULL,18,NULL,'2023-01-10 00:12:00',NULL,NULL,'2023-01-10 00:13:07','2023-01-10 00:13:07'),(143074,18,NULL,18,NULL,'2023-01-10 00:12:00',NULL,NULL,'2023-01-10 00:14:18','2023-01-10 00:14:18'),(143076,18,NULL,18,NULL,'2023-01-10 00:12:00',NULL,NULL,'2023-01-10 00:57:18','2023-01-10 00:57:18'),(143077,18,NULL,18,NULL,'2023-01-10 00:12:00',NULL,NULL,'2023-01-10 00:58:08','2023-01-10 00:58:08'),(143078,15,NULL,15,17875,'2023-02-27 01:58:43',NULL,NULL,'2023-02-27 01:58:43','2023-02-27 01:58:43'),(143079,15,NULL,15,17875,'2023-02-27 01:58:53',NULL,NULL,'2023-02-27 01:58:53','2023-02-27 01:58:53'),(143080,15,NULL,15,17875,'2023-02-27 02:02:00',NULL,NULL,'2023-02-27 01:59:10','2023-02-27 02:02:01'),(143081,15,NULL,15,17875,'2023-02-27 02:02:00',NULL,NULL,'2023-02-27 02:02:01','2023-02-27 02:02:01'),(143083,15,NULL,15,17875,'2023-02-27 02:02:00',NULL,NULL,'2023-02-27 02:16:38','2023-02-27 02:16:38'),(143085,15,NULL,15,17875,'2023-02-27 02:02:00',NULL,NULL,'2023-02-27 02:29:07','2023-02-27 02:29:07'),(143087,15,NULL,15,17875,'2023-02-27 02:02:00',NULL,NULL,'2023-02-28 07:09:22','2023-02-28 07:09:22'),(143089,15,NULL,15,17875,'2023-02-27 02:02:00',NULL,NULL,'2023-03-01 01:09:36','2023-03-01 01:09:36'),(143091,15,NULL,15,17875,'2023-02-27 02:02:00',NULL,NULL,'2023-03-01 01:10:04','2023-03-01 01:10:04'),(143093,15,NULL,15,17875,'2023-02-27 02:02:00',NULL,NULL,'2023-03-01 02:12:25','2023-03-01 02:12:25'),(143094,15,NULL,15,17887,'2023-01-09 02:25:00',NULL,NULL,'2023-03-01 02:21:19','2023-03-01 02:21:19'),(143096,15,NULL,15,17875,'2023-02-27 02:02:00',NULL,NULL,'2023-03-01 02:25:58','2023-03-01 02:25:58'),(143098,15,NULL,15,17875,'2023-02-27 02:02:00',NULL,NULL,'2023-03-01 02:26:34','2023-03-01 02:26:34'),(143099,15,NULL,15,17875,'2023-02-27 02:02:00',NULL,NULL,'2023-03-01 03:27:04','2023-03-01 03:27:04'),(143103,17,NULL,17,NULL,'2022-06-05 23:23:00',NULL,NULL,'2023-03-09 03:19:26','2023-03-09 03:19:26'),(143104,15,NULL,15,17875,'2022-12-01 06:59:00',NULL,NULL,'2023-03-09 03:22:02','2023-03-09 03:22:02'),(143105,5,NULL,5,17934,'2022-11-17 00:55:00',NULL,NULL,'2023-03-09 03:22:09','2023-03-09 03:22:09'),(143106,5,NULL,5,17934,'2022-11-16 04:11:00',NULL,NULL,'2023-03-09 03:22:20','2023-03-09 03:22:20'),(143107,5,NULL,5,17934,'2022-10-12 06:03:00',NULL,NULL,'2023-03-09 03:22:33','2023-03-09 03:22:33'),(143108,6,NULL,6,17887,'2022-09-28 05:39:00',NULL,NULL,'2023-03-09 03:22:48','2023-03-09 03:22:48'),(143109,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2023-03-09 03:30:21','2023-03-09 03:30:21'),(143110,15,NULL,15,1,'2021-12-10 01:01:00',NULL,NULL,'2023-03-09 03:31:15','2023-03-09 03:31:15'),(143111,5,NULL,5,17934,'2022-09-28 03:53:00',NULL,NULL,'2023-03-09 03:31:31','2023-03-09 03:31:31'),(143112,5,NULL,5,17934,'2022-08-15 05:32:00',NULL,NULL,'2023-03-09 03:31:38','2023-03-09 03:31:38'),(143113,5,NULL,5,17934,'2022-07-28 02:30:00',NULL,NULL,'2023-03-09 03:31:42','2023-03-09 03:31:42'),(143114,5,NULL,5,17934,'2022-07-05 05:49:00',NULL,NULL,'2023-03-09 03:31:44','2023-03-09 03:31:44'),(143115,5,NULL,5,17934,'2022-07-04 01:22:00',NULL,NULL,'2023-03-09 03:31:46','2023-03-09 03:31:46'),(143116,5,NULL,5,17934,'2022-05-09 03:59:00',NULL,NULL,'2023-03-09 03:31:50','2023-03-09 03:31:50'),(143117,5,NULL,5,17934,'2022-05-05 23:48:00',NULL,NULL,'2023-03-09 03:31:54','2023-03-09 03:31:54'),(143124,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2023-03-10 00:11:53','2023-03-10 00:11:53'),(143126,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2023-03-10 00:13:08','2023-03-10 00:13:08'),(143127,15,NULL,15,17875,'2023-02-27 02:02:00',NULL,NULL,'2023-03-10 00:19:16','2023-03-10 00:19:16'),(143128,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2023-03-10 00:39:26','2023-03-10 00:39:26'),(143129,7,NULL,7,NULL,'2021-06-21 04:18:00',NULL,NULL,'2023-03-10 01:36:37','2023-03-10 01:36:37'),(143130,8,NULL,8,NULL,'2021-06-21 06:24:00',NULL,NULL,'2023-03-15 04:25:53','2023-03-15 04:25:53'),(143133,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2023-03-27 06:15:11','2023-03-27 06:15:11'),(143136,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2023-03-28 06:35:26','2023-03-28 06:35:26'),(143138,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2023-03-28 06:37:02','2023-03-28 06:37:02'),(143139,6,NULL,6,141616,'2023-03-29 03:44:00',NULL,NULL,'2023-03-29 03:42:34','2023-03-29 03:44:42'),(143140,6,NULL,6,141616,'2023-03-29 03:44:00',NULL,NULL,'2023-03-29 03:44:42','2023-03-29 03:44:42'),(143143,6,NULL,6,141616,'2023-03-29 03:44:00',NULL,NULL,'2023-03-29 03:50:34','2023-03-29 03:50:34'),(143146,6,NULL,6,141616,'2023-03-29 03:44:00',NULL,NULL,'2023-03-29 03:54:12','2023-03-29 03:54:12'),(143148,6,NULL,6,141616,'2023-03-29 03:44:00',NULL,NULL,'2023-03-29 03:54:44','2023-03-29 03:54:44'),(143150,6,NULL,6,141616,'2023-03-29 03:44:00',NULL,NULL,'2023-03-29 03:55:34','2023-03-29 03:55:34'),(143152,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2023-03-29 21:39:04','2023-03-29 21:39:04'),(143153,5,NULL,5,17934,'2022-11-17 00:55:00',NULL,NULL,'2023-03-30 06:24:07','2023-03-30 06:24:07'),(143154,5,NULL,5,17934,'2022-11-17 00:55:00',NULL,NULL,'2023-03-30 06:24:08','2023-03-30 06:24:08'),(143156,5,NULL,5,17934,'2023-03-30 06:26:00',NULL,NULL,'2023-03-30 06:26:19','2023-03-30 06:26:19'),(143159,5,NULL,5,17934,'2023-03-30 06:26:00',NULL,NULL,'2023-03-30 23:05:47','2023-03-30 23:05:47'),(143161,6,NULL,6,141616,'2023-03-29 03:44:00',NULL,NULL,'2023-03-30 23:07:15','2023-03-30 23:07:15'),(143162,6,NULL,6,17887,'2022-06-29 01:50:00',NULL,NULL,'2023-03-30 23:07:38','2023-03-30 23:07:38'),(143164,6,NULL,6,17941,'2022-06-29 01:50:00',NULL,NULL,'2023-03-30 23:08:01','2023-03-30 23:08:01'),(143166,5,NULL,5,17934,'2023-03-30 06:26:00',NULL,NULL,'2023-03-30 23:09:32','2023-03-30 23:09:32'),(143167,5,NULL,5,17934,'2022-11-16 04:11:00',NULL,NULL,'2023-03-30 23:09:41','2023-03-30 23:09:41'),(143168,5,NULL,5,17934,'2022-10-12 06:03:00',NULL,NULL,'2023-03-30 23:09:50','2023-03-30 23:09:50'),(143169,5,NULL,5,17934,'2023-09-28 03:53:00',NULL,NULL,'2023-03-30 23:09:59','2023-03-30 23:09:59'),(143170,5,NULL,5,17934,'2023-10-25 03:23:00',NULL,NULL,'2023-03-30 23:10:06','2023-03-30 23:10:06'),(143179,5,NULL,5,17934,'2023-03-30 06:26:00',NULL,NULL,'2023-03-31 01:01:04','2023-03-31 01:01:04'),(143182,5,NULL,5,17934,'2023-03-30 06:26:00',NULL,NULL,'2023-03-31 01:04:25','2023-03-31 01:04:25'),(143185,5,NULL,5,17934,'2023-03-30 06:26:00',NULL,NULL,'2023-03-31 01:06:07','2023-03-31 01:06:07'),(143188,5,NULL,5,17934,'2023-03-30 06:26:00',NULL,NULL,'2023-03-31 01:07:20','2023-03-31 01:07:20'),(143191,5,NULL,5,17934,'2023-03-30 06:26:00',NULL,NULL,'2023-03-31 01:12:51','2023-03-31 01:12:51'),(143193,5,NULL,5,17934,'2023-03-30 06:26:00',NULL,NULL,'2023-03-31 01:15:50','2023-03-31 01:15:50'),(143195,5,NULL,5,17934,'2023-03-30 06:26:00',NULL,NULL,'2023-03-31 01:21:14','2023-03-31 01:21:14'),(143197,5,NULL,5,17934,'2023-03-30 06:26:00',NULL,NULL,'2023-03-31 01:21:57','2023-03-31 01:21:57'),(143199,5,NULL,5,17934,'2023-03-30 06:26:00',NULL,NULL,'2023-03-31 01:26:04','2023-03-31 01:26:04'),(143201,6,NULL,6,141616,'2023-03-29 03:44:00',NULL,NULL,'2023-03-31 01:26:43','2023-03-31 01:26:43'),(143203,5,NULL,5,17934,'2023-03-30 06:26:00',NULL,NULL,'2023-03-31 02:13:32','2023-03-31 02:13:32'),(143205,6,NULL,6,141616,'2023-03-29 03:44:00',NULL,NULL,'2023-03-31 02:15:01','2023-03-31 02:15:01'),(143207,6,NULL,6,141616,'2023-03-29 03:44:00',NULL,NULL,'2023-03-31 03:39:21','2023-03-31 03:39:21'),(143209,6,NULL,6,141616,'2023-03-29 03:44:00',NULL,NULL,'2023-03-31 03:40:13','2023-03-31 03:40:13'),(143211,6,NULL,6,141616,'2023-03-29 03:44:00',NULL,NULL,'2023-03-31 03:40:31','2023-03-31 03:40:31'),(143213,5,NULL,5,17934,'2023-03-30 06:26:00',NULL,NULL,'2023-03-31 03:42:53','2023-03-31 03:42:53'),(143215,6,NULL,6,17941,'2022-06-29 01:50:00',NULL,NULL,'2023-03-31 03:43:14','2023-03-31 03:43:14'),(143217,6,NULL,6,17941,'2022-06-29 01:50:00',NULL,NULL,'2023-03-31 03:44:09','2023-03-31 03:44:09'),(143219,6,NULL,6,17941,'2022-06-29 01:50:00',NULL,NULL,'2023-03-31 03:56:54','2023-03-31 03:56:54'),(143221,6,NULL,6,141616,'2023-03-29 03:44:00',NULL,NULL,'2023-03-31 03:59:36','2023-03-31 03:59:36'),(143222,6,NULL,6,141616,'2022-11-04 02:15:00',NULL,NULL,'2023-04-03 01:07:55','2023-04-03 01:07:55'),(143224,6,NULL,6,141616,'2022-11-04 02:15:00',NULL,NULL,'2023-04-03 01:08:12','2023-04-03 01:08:12');
/*!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,1,'Reports','reports',1,'site',NULL,NULL,1,'2021-04-07 05:26:54','2021-04-07 05:26:54',NULL,'3a9b9e18-307c-4141-9d5d-6ffb8ff7be74'),(4,4,4,'Audits','audits',1,'site',NULL,NULL,1,'2021-04-20 00:52:32','2021-04-20 00:52:32',NULL,'ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66'),(5,5,6,'Work','work',1,'site',NULL,NULL,1,'2021-05-14 05:59:09','2021-05-14 05:59:09',NULL,'afa15877-78bf-4b63-8526-70c324e0886b'),(6,6,12,'Articles','articles',1,'site',NULL,NULL,1,'2021-05-18 00:26:09','2021-07-23 03:35:58',NULL,'2d747d18-dd10-42b6-9af7-e2a166985c9f'),(7,7,23,'About us','aboutUs',0,'site',NULL,'{section.name|raw}',1,'2021-06-21 04:18:40','2021-06-21 04:18:40',NULL,'086a93c7-a41d-43b4-a54f-921ef87da6ae'),(8,8,34,'Contact ','contact',0,'site',NULL,'{section.name|raw}',1,'2021-06-21 06:24:18','2021-06-21 06:24:18',NULL,'87388b9a-25e4-4627-bf28-0312074ff5bd'),(9,9,50,'Home','home',0,'site',NULL,'{section.name|raw}',1,'2021-09-10 01:58:36','2021-09-10 01:58:36',NULL,'b78190de-5858-4b45-b26f-5df67ce780f9'),(10,10,52,'Terms and conditions','termsAndConditions',0,'site',NULL,'{section.name|raw}',1,'2021-09-27 03:32:47','2021-09-27 03:32:47',NULL,'96713950-85e1-4428-8c0f-a77811771d67'),(11,11,56,'Update details','updateDetails',0,'site',NULL,'{section.name|raw}',1,'2021-11-09 23:38:17','2021-11-09 23:38:17',NULL,'35beece6-b6ea-44b2-adc6-bce32c1165de'),(13,13,60,'Email sigs','emailSigs',0,'site',NULL,'{section.name|raw}',1,'2021-11-15 01:51:50','2021-11-15 01:51:50',NULL,'d1f7515c-43ef-4878-b92c-f8e25e4e21d2'),(14,14,61,'Privacy policy','privacyPolicy',0,'site',NULL,'{section.name|raw}',1,'2021-11-24 05:25:54','2021-11-24 05:25:54',NULL,'699dc9e3-e9f1-413a-9e92-bcb8082671ef'),(15,15,62,'Default','default',1,'site',NULL,NULL,1,'2021-12-10 01:00:02','2021-12-10 01:00:02',NULL,'c1be37f3-ce5d-480f-9bcc-84281061c574'),(17,17,68,'Careers','careers',0,'site',NULL,'{section.name|raw}',1,'2022-06-05 23:22:35','2022-06-05 23:22:35',NULL,'7581d339-bf7d-428c-86b0-bdd628dfef2e'),(18,18,70,'Update details copy','updateDetailsCopy',0,'site',NULL,'{section.name|raw}',1,'2023-01-10 00:12:41','2023-01-10 00:12:41',NULL,'b8b68166-cefa-4d7e-9ec0-9ed4e7246d28');
/*!40000 ALTER TABLE `entrytypes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `feedme_feeds`
--

LOCK TABLES `feedme_feeds` WRITE;
/*!40000 ALTER TABLE `feedme_feeds` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `feedme_feeds` VALUES (20,'All income ','https://nwo.nyc3.cdn.digitaloceanspaces.com/nwo/uploads/feeds/All-income.csv','csv',NULL,'craft\\elements\\Entry','{\"craft\\\\elements\\\\Asset\":\"\",\"craft\\\\elements\\\\Category\":\"\",\"craft\\\\elements\\\\Entry\":{\"section\":\"1\",\"entryType\":\"1\"},\"craft\\\\elements\\\\Tag\":\"\",\"craft\\\\elements\\\\GlobalSet\":{\"globalSet\":\"\"}}',NULL,1,0,'[\"add\",\"update\"]',1,NULL,'{\"title\":{\"attribute\":\"true\",\"node\":\"Date\",\"default\":\"\"},\"slug\":{\"attribute\":\"true\",\"node\":\"noimport\",\"default\":\"\"},\"postDate\":{\"attribute\":\"true\",\"node\":\"Date\",\"options\":{\"match\":\"auto\"},\"default\":{\"date\":\"\",\"timezone\":\"Australia/Brisbane\",\"time\":\"\"}},\"expiryDate\":{\"attribute\":\"true\",\"node\":\"noimport\",\"options\":{\"match\":\"auto\"},\"default\":{\"date\":\"\",\"timezone\":\"Australia/Brisbane\",\"time\":\"\"}},\"enabled\":{\"attribute\":\"true\",\"node\":\"noimport\",\"default\":\"\"},\"authorId\":{\"attribute\":\"true\",\"node\":\"noimport\",\"options\":{\"match\":\"email\"},\"default\":\"\"},\"id\":{\"attribute\":\"true\",\"node\":\"noimport\",\"default\":\"\"},\"totalTradingIncome\":{\"field\":\"craft\\\\fields\\\\PlainText\",\"node\":\"Total income\",\"default\":\"\"},\"totalCostOfSales\":{\"field\":\"craft\\\\fields\\\\PlainText\",\"node\":\"Total cost of sales\",\"default\":\"\"},\"totalOperatingExpenses\":{\"field\":\"craft\\\\fields\\\\PlainText\",\"node\":\"Total operating expenses\",\"default\":\"\"},\"grossProfit\":{\"field\":\"craft\\\\fields\\\\PlainText\",\"node\":\"Gross profit\",\"default\":\"\"},\"netProfit\":{\"field\":\"craft\\\\fields\\\\PlainText\",\"node\":\"Net profit\",\"default\":\"\"},\"monthlyBudget\":{\"field\":\"craft\\\\fields\\\\PlainText\",\"node\":\"Monthly budget\",\"default\":\"\"}}','{\"title\":\"1\",\"slug\":\"\",\"enabled\":\"\",\"id\":\"\",\"totalTradingIncome\":\"\",\"totalCostOfSales\":\"\",\"totalOperatingExpenses\":\"\",\"grossProfit\":\"\",\"netProfit\":\"\",\"monthlyBudget\":\"\"}','sjzqalzblo',1,'2022-06-08 23:32:17','2022-09-14 23:00:38','43c225e5-5aa6-4eaf-a2e5-793ea3bd8f55');
/*!40000 ALTER TABLE `feedme_feeds` 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','2021-03-30 06:11:45','2021-03-30 06:11:45',NULL,'c38e2159-46dc-46e1-bc98-42bfb5da312f'),(3,'Reports','2021-04-07 05:27:49','2021-04-07 05:27:49',NULL,'581f3b95-4fdd-4b29-a806-753edb34ee8c'),(4,'Jobs','2021-04-16 01:23:40','2021-04-16 01:23:40',NULL,'80fbe8fd-2c62-448d-ad9f-7a54ff848431'),(5,'Quotes','2021-04-16 05:21:34','2021-04-16 05:21:34',NULL,'84d29012-402c-44d3-8599-938ab66e3b97'),(6,'Audits','2021-04-20 00:52:43','2021-04-20 00:52:43',NULL,'949c24d0-491b-49e0-8802-dfed8158b301'),(7,'Users','2021-04-20 01:18:52','2021-04-20 01:18:52',NULL,'2b60406c-5779-47b4-bfe7-7fbc8096df95'),(8,'Work','2021-05-14 06:10:59','2021-05-14 06:10:59',NULL,'f43e2891-333d-49b3-a9db-3e8569344d15'),(9,'Vizy Fields','2021-07-12 06:49:00','2021-07-12 06:49:00',NULL,'a93becfb-6496-4b2f-93d5-cf2691ada3d7'),(10,'Home fields','2021-09-10 01:58:51','2021-09-10 01:58:51',NULL,'9c07c80e-a4f6-4e46-a7c2-e7d5839f2aea'),(11,'SEO','2021-11-09 00:38:04','2021-11-09 00:38:04',NULL,'a401651e-3e05-4a6d-adf0-8019688b630a'),(12,'CTA Fields','2021-12-10 01:31:21','2021-12-10 01:31:21',NULL,'d73b1e0a-7e53-4ebb-b0e7-af18eb450e07'),(13,'Dashboard','2022-02-09 00:56:42','2022-02-09 00:56:42',NULL,'4065deaf-bfe6-4913-8ecf-ce7325eb4452'),(14,'Invoices','2022-02-09 00:56:42','2022-02-09 00:56:42',NULL,'34d088ed-ef16-496c-9634-85e5d8581aa0');
/*!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 (1477,18,596,67,0,0,'2021-11-15 01:17:36','2021-11-15 01:17:36','28b7a043-fbc4-456c-bde3-b08dec72b887'),(1528,40,605,168,0,0,'2021-11-15 01:17:38','2021-11-15 01:17:38','dbe8d237-2125-4f9c-9e02-b247fe823765'),(1529,40,605,167,0,1,'2021-11-15 01:17:38','2021-11-15 01:17:38','ae00860a-ff02-4047-8cbe-867accb862fd'),(1568,24,613,125,0,0,'2021-11-15 01:17:44','2021-11-15 01:17:44','7fee2813-13b6-4e4e-b9a2-776b32042438'),(1569,24,613,127,0,1,'2021-11-15 01:17:44','2021-11-15 01:17:44','f3046cef-fc93-4cf2-8268-5e379fb92078'),(1570,24,613,126,0,2,'2021-11-15 01:17:44','2021-11-15 01:17:44','098b04e2-4d42-4908-ad20-2d9984fe9631'),(1580,54,616,195,0,0,'2021-11-15 01:17:44','2021-11-15 01:17:44','32baeca4-115f-4385-9131-e458ec7e5e0f'),(1581,54,616,196,0,1,'2021-11-15 01:17:44','2021-11-15 01:17:44','ffca5831-21a9-46d3-bad6-4e456dc393b2'),(1582,54,616,197,0,2,'2021-11-15 01:17:44','2021-11-15 01:17:44','d6ca5cb5-e4b6-4d4c-8d0e-d7a1491ec605'),(1583,54,616,198,0,3,'2021-11-15 01:17:44','2021-11-15 01:17:44','b71fa9cb-d07a-4dfc-bc5f-a1a63442c472'),(1584,54,616,199,0,4,'2021-11-15 01:17:44','2021-11-15 01:17:44','b7fe9deb-4ceb-4abc-a62f-9e44eeac55d2'),(1585,31,617,141,0,0,'2021-11-15 01:17:44','2021-11-15 01:17:44','6d80e09c-ef2e-424e-9eb1-7ca05756edd2'),(1586,31,617,140,0,1,'2021-11-15 01:17:44','2021-11-15 01:17:44','4925978d-ca8b-48d0-8d9e-bf596aa4f01a'),(1587,33,618,79,0,0,'2021-11-15 01:17:44','2021-11-15 01:17:44','d2eff45d-c948-4ed5-bf46-10fedbfe0874'),(1588,20,623,93,0,0,'2021-11-15 01:17:47','2021-11-15 01:17:47','57329c9e-12be-449d-b424-99df7715123d'),(1589,20,623,92,0,1,'2021-11-15 01:17:47','2021-11-15 01:17:47','d47f38d0-cfb4-45b9-8897-929df843dee1'),(1631,45,644,179,0,0,'2021-11-15 01:17:50','2021-11-15 01:17:50','64099795-45a3-469a-97d2-11fe45ef70e0'),(1632,45,644,178,0,1,'2021-11-15 01:17:50','2021-11-15 01:17:50','b65dce38-fdba-48bd-904a-35515241bad4'),(1633,9,645,64,0,0,'2021-11-15 01:17:50','2021-11-15 01:17:50','62924742-52aa-4b2d-8bf6-137e67e5ddf6'),(1636,28,648,145,0,0,'2021-11-15 01:17:51','2021-11-15 01:17:51','0624a79f-ffc1-48ef-b547-27037b43e457'),(1637,28,648,132,0,1,'2021-11-15 01:17:51','2021-11-15 01:17:51','8e396f4a-d974-4e45-bdd1-175af2facd5a'),(1642,26,650,130,0,0,'2021-11-15 01:17:51','2021-11-15 01:17:51','02e2081f-2fd3-453c-aac2-411580978380'),(1643,26,650,129,0,1,'2021-11-15 01:17:51','2021-11-15 01:17:51','c7c77562-59e9-478d-a17a-6648eda21db5'),(1644,14,651,82,0,0,'2021-11-15 01:17:51','2021-11-15 01:17:51','0fe73321-b9bf-48e0-9a4e-65de1d529175'),(1645,14,651,83,0,1,'2021-11-15 01:17:51','2021-11-15 01:17:51','11d715af-b750-4085-a136-883a7cecf6c8'),(1649,51,653,190,0,0,'2021-11-15 01:17:52','2021-11-15 01:17:52','38af65ee-98c7-4a20-b6dd-24790941d469'),(1650,51,653,189,0,1,'2021-11-15 01:17:52','2021-11-15 01:17:52','08183148-a07b-49aa-bb3c-7ba2a3ea420a'),(1651,51,653,191,0,2,'2021-11-15 01:17:52','2021-11-15 01:17:52','2c1777b8-4df9-42d3-8f9b-357f50705759'),(1659,29,656,135,0,0,'2021-11-15 01:17:52','2021-11-15 01:17:52','ff59ea28-44a6-4299-9776-c860f6e61f63'),(1660,29,656,136,0,1,'2021-11-15 01:17:52','2021-11-15 01:17:52','de2f2627-1262-4bdd-a03e-690de42134ec'),(1661,29,656,134,0,2,'2021-11-15 01:17:52','2021-11-15 01:17:52','08e26f6e-cc45-46dd-bbc6-b4b5235badfe'),(1721,63,678,205,0,0,'2022-02-09 00:56:45','2022-02-09 00:56:45','fb898ea2-0988-407e-a235-d87e6507c46a'),(1961,6,796,182,0,1,'2022-05-17 23:19:11','2022-05-17 23:19:11','8bf2f1ee-4682-4737-9080-ac8ee20e10df'),(1962,6,796,74,0,2,'2022-05-17 23:19:11','2022-05-17 23:19:11','17dc92db-a6cf-4d12-8ba0-a6e4b620247d'),(1963,6,796,78,0,4,'2022-05-17 23:19:11','2022-05-17 23:19:11','60b38f95-9bdd-42dd-ad8b-6ba394b86837'),(1964,6,796,79,0,6,'2022-05-17 23:19:11','2022-05-17 23:19:11','502faa86-a353-4a02-9db2-a09ec4130f88'),(1965,6,796,69,1,8,'2022-05-17 23:19:11','2022-05-17 23:19:11','0e4b36cd-5f36-49e4-8df4-c7801d66b0db'),(1966,6,796,85,0,9,'2022-05-17 23:19:11','2022-05-17 23:19:11','0ab5540f-5601-4c3e-ab84-603b3eb180c5'),(1967,6,796,84,0,10,'2022-05-17 23:19:11','2022-05-17 23:19:11','3ab392b1-19e9-43d4-99a4-3dd4ecef1d28'),(1968,6,796,164,0,12,'2022-05-17 23:19:11','2022-05-17 23:19:11','703fab55-9183-49ef-9689-5bcd9babf6eb'),(1969,6,797,195,0,0,'2022-05-17 23:19:11','2022-05-17 23:19:11','4855d45b-8358-4659-88cf-55e20c335a84'),(1970,6,797,196,0,1,'2022-05-17 23:19:11','2022-05-17 23:19:11','a133f9a7-15c2-406c-a045-81f8ba8ed2e5'),(1971,6,797,197,0,2,'2022-05-17 23:19:11','2022-05-17 23:19:11','6cdb895d-6ae6-43df-b4f7-b94604325f02'),(1972,6,797,198,0,3,'2022-05-17 23:19:11','2022-05-17 23:19:11','3b45819d-f944-4232-b9a0-6e48fc06b603'),(1973,6,797,199,0,4,'2022-05-17 23:19:11','2022-05-17 23:19:11','599dc769-35c8-4b22-983c-88f710bf14bc'),(1977,61,801,164,0,1,'2022-05-17 23:19:12','2022-05-17 23:19:12','3dd49a06-ff55-41e2-babb-4756db13c013'),(2004,1,805,8,0,2,'2022-05-17 23:19:13','2022-05-17 23:19:13','142e23d7-64b9-432b-99ce-9592045c8040'),(2005,1,805,10,0,4,'2022-05-17 23:19:13','2022-05-17 23:19:13','e1f7fce4-49c1-4717-b2ec-6f164ed93367'),(2006,1,805,11,0,5,'2022-05-17 23:19:13','2022-05-17 23:19:13','b459ed39-dee2-4f38-8fc2-c833ed1b5e15'),(2007,1,805,57,0,7,'2022-05-17 23:19:13','2022-05-17 23:19:13','0ca541be-e7fb-4567-a773-166c1a900b6a'),(2008,1,805,58,0,8,'2022-05-17 23:19:13','2022-05-17 23:19:13','f3506f4e-cf4e-4b89-b4b2-5e52333c5171'),(2009,1,805,207,0,10,'2022-05-17 23:19:13','2022-05-17 23:19:13','bd4f847d-a811-41ad-bcb3-f168e77caca8'),(2053,12,814,184,0,1,'2022-05-17 23:19:13','2022-05-17 23:19:13','b2590197-a49d-4971-85ca-5ef55db1feb6'),(2054,12,814,69,0,2,'2022-05-17 23:19:13','2022-05-17 23:19:13','746c7bea-6205-4d91-8dda-9861e42fb5f5'),(2055,12,814,85,0,3,'2022-05-17 23:19:13','2022-05-17 23:19:13','4500ce4b-0e8c-42d8-98fc-19ead5e95fae'),(2056,12,814,164,0,4,'2022-05-17 23:19:13','2022-05-17 23:19:13','4ceb9ab6-b156-4f8f-ba38-9ccaf8d2f44e'),(2057,12,815,195,0,0,'2022-05-17 23:19:13','2022-05-17 23:19:13','488d80a2-8b98-4492-9c18-319950ea0eea'),(2058,12,815,196,0,1,'2022-05-17 23:19:13','2022-05-17 23:19:13','e27b210e-b339-4703-84f1-7a5c6707d9bb'),(2059,12,815,197,0,2,'2022-05-17 23:19:13','2022-05-17 23:19:13','b1db96bb-59cb-4413-85e6-8038c49892bb'),(2060,12,815,198,0,3,'2022-05-17 23:19:13','2022-05-17 23:19:13','f7117e58-e9ba-4c75-ae58-7c580c11f46f'),(2061,12,815,199,0,4,'2022-05-17 23:19:13','2022-05-17 23:19:13','57a8ce1e-7742-4d48-aeb6-64e500f8f565'),(2068,34,818,164,0,1,'2022-05-17 23:19:14','2022-05-17 23:19:14','eeb6b927-1639-456f-aa24-2a8ba7392338'),(2069,34,819,195,0,0,'2022-05-17 23:19:14','2022-05-17 23:19:14','179353b8-016e-497c-9b11-230a3bfd49f8'),(2070,34,819,196,0,1,'2022-05-17 23:19:14','2022-05-17 23:19:14','20ee2c0e-4603-4d3a-9709-c81f18cb17e6'),(2071,34,819,197,0,2,'2022-05-17 23:19:14','2022-05-17 23:19:14','bdc0a9ca-123b-45e5-8eb5-032df3df1c34'),(2072,34,819,198,0,3,'2022-05-17 23:19:14','2022-05-17 23:19:14','72c7db67-1413-4afa-9d5e-c97e0cf1afb1'),(2073,34,819,199,0,4,'2022-05-17 23:19:14','2022-05-17 23:19:14','4d665c06-5953-4c91-b938-b181a2817669'),(2080,50,822,188,0,1,'2022-05-17 23:19:16','2022-05-17 23:19:16','327716bf-e699-43c9-a20d-ae9b8bf79844'),(2081,50,823,195,0,0,'2022-05-17 23:19:16','2022-05-17 23:19:16','5785947b-e23d-4478-beba-10cff67195d2'),(2082,50,823,196,0,1,'2022-05-17 23:19:16','2022-05-17 23:19:16','4e5da416-21a9-4728-9571-3b9d7b0601ea'),(2083,50,823,197,0,2,'2022-05-17 23:19:16','2022-05-17 23:19:16','3c4eff43-3203-4640-8438-68e1d6547b95'),(2084,50,823,198,0,3,'2022-05-17 23:19:16','2022-05-17 23:19:16','02d3a062-4968-4cff-9b24-1f62d0c41030'),(2085,50,823,199,0,4,'2022-05-17 23:19:16','2022-05-17 23:19:16','ad665d0b-c47f-40c7-a252-9fb1ace1d5f2'),(2087,52,825,164,0,1,'2022-05-17 23:19:18','2022-05-17 23:19:18','fdcc85ff-f87b-4813-8d0f-5300112c5489'),(2094,23,828,164,0,1,'2022-05-17 23:19:20','2022-05-17 23:19:20','98d6de0a-38aa-418d-87dc-99fb051b1e12'),(2095,23,829,195,0,0,'2022-05-17 23:19:20','2022-05-17 23:19:20','39f2fbcc-9be0-452b-bd05-ff663320c8fc'),(2096,23,829,196,0,1,'2022-05-17 23:19:20','2022-05-17 23:19:20','a8e7a868-0909-4f35-8d8d-6ca4a21421cf'),(2097,23,829,197,0,2,'2022-05-17 23:19:20','2022-05-17 23:19:20','c1fa3fe3-3888-4877-a979-7b4d9a29829d'),(2098,23,829,198,0,3,'2022-05-17 23:19:20','2022-05-17 23:19:20','0eb1f3a7-659b-4bef-829f-b39e6ab7d4da'),(2099,23,829,199,0,4,'2022-05-17 23:19:20','2022-05-17 23:19:20','f86927f1-6228-4cfb-94e2-50de86b69d03'),(2101,56,831,164,0,1,'2022-05-17 23:19:22','2022-05-17 23:19:22','aebb67b4-7ca8-42cd-8d2a-01268cb83d30'),(2103,60,833,72,0,1,'2022-05-17 23:19:24','2022-05-17 23:19:24','e4f57b2b-888f-420b-96df-c9f01053cd97'),(2128,4,835,94,0,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','5671e96c-39d4-4e93-b81c-ebce4e7b863d'),(2129,4,835,95,0,3,'2022-05-17 23:19:25','2022-05-17 23:19:25','516118fd-2caa-4af2-835f-212c547234d7'),(2130,4,835,96,0,4,'2022-05-17 23:19:25','2022-05-17 23:19:25','e062fb5e-e602-4090-894d-8840448efc51'),(2131,4,835,97,0,5,'2022-05-17 23:19:25','2022-05-17 23:19:25','fa5784ad-8b07-4ffc-87df-af8d3cf72b36'),(2132,4,835,98,0,6,'2022-05-17 23:19:25','2022-05-17 23:19:25','559ee94c-ef8a-4eae-a706-9163b16a1dcb'),(2133,4,835,99,0,7,'2022-05-17 23:19:25','2022-05-17 23:19:25','35a6ac10-a3e6-4beb-a13e-a408c53a7c09'),(2134,4,835,100,0,9,'2022-05-17 23:19:25','2022-05-17 23:19:25','e80b42ba-eb53-4632-8249-3126f6d77b75'),(2135,4,835,101,0,10,'2022-05-17 23:19:25','2022-05-17 23:19:25','6165c3f4-f495-4906-8f85-4a242dd1783b'),(2136,4,835,102,0,11,'2022-05-17 23:19:25','2022-05-17 23:19:25','f3c2ad92-4d8e-4101-8524-e655a6d0fde3'),(2137,4,835,103,0,12,'2022-05-17 23:19:25','2022-05-17 23:19:25','9883fc27-94c8-4b08-b117-b87158963fae'),(2138,4,835,104,0,13,'2022-05-17 23:19:25','2022-05-17 23:19:25','b81beaa5-505b-4e33-9f06-8834fec29076'),(2139,4,835,105,0,14,'2022-05-17 23:19:25','2022-05-17 23:19:25','e045f597-dd18-4201-92d9-83f8f76ec778'),(2140,4,835,106,0,15,'2022-05-17 23:19:25','2022-05-17 23:19:25','2cbda6af-27fd-4161-9e47-f329678895ba'),(2141,4,835,107,0,16,'2022-05-17 23:19:25','2022-05-17 23:19:25','d29d6089-b522-4a6b-a58c-e2d9a318ea6f'),(2142,4,835,108,0,17,'2022-05-17 23:19:25','2022-05-17 23:19:25','b0ff72db-0d75-4350-8409-2a0ba11d64ba'),(2143,4,835,109,0,18,'2022-05-17 23:19:25','2022-05-17 23:19:25','6f284a55-623c-48b8-9fe3-465b83b8e79b'),(2144,4,835,110,0,19,'2022-05-17 23:19:25','2022-05-17 23:19:25','b6c8ab23-accd-4a29-98c5-7d7b21d7a7be'),(2145,4,835,112,0,20,'2022-05-17 23:19:25','2022-05-17 23:19:25','3c5fbbe6-4038-43b4-a70e-63cc74f08933'),(2146,4,835,113,0,21,'2022-05-17 23:19:25','2022-05-17 23:19:25','d9667505-4c21-40be-849f-25a48d76f831'),(2147,4,835,114,0,22,'2022-05-17 23:19:25','2022-05-17 23:19:25','19d4fdfc-b9f7-47ed-81ff-e5b4b942ef32'),(2148,4,835,115,0,24,'2022-05-17 23:19:25','2022-05-17 23:19:25','68b6b98d-5a02-4eb2-919b-c7a15eefa452'),(2149,4,835,116,0,25,'2022-05-17 23:19:25','2022-05-17 23:19:25','1e4fd030-aa2c-4ecb-b99c-43e3f112a0a7'),(2150,4,835,117,0,26,'2022-05-17 23:19:25','2022-05-17 23:19:25','4d836872-ff3b-4985-9a42-20be636636f6'),(2151,4,835,118,0,28,'2022-05-17 23:19:25','2022-05-17 23:19:25','beacffd2-be3c-4d7b-b03e-71ec9c46f606'),(2167,10,839,68,0,1,'2022-05-17 23:19:25','2022-05-17 23:19:25','00cfdfdd-783f-4305-a3a4-30228b7fcc44'),(2458,69,997,216,0,0,'2022-06-05 23:24:03','2022-06-05 23:24:03','0f89fb03-6016-40fc-b47c-ac4e9dc6675b'),(2459,69,997,217,0,1,'2022-06-05 23:24:03','2022-06-05 23:24:03','1c3aa85c-40ba-486d-952f-c1182e02b47d'),(2460,69,997,214,0,2,'2022-06-05 23:24:03','2022-06-05 23:24:03','70555d3e-0c8a-4845-b72f-02c4b716685f'),(2461,69,997,215,0,3,'2022-06-05 23:24:03','2022-06-05 23:24:03','7db16140-a8e1-416d-9752-d7d9803a4af2'),(2468,68,1000,164,0,1,'2022-06-05 23:24:04','2022-06-05 23:24:04','5e72a790-70e9-4218-9d5c-a6e11d151b12'),(2469,68,1001,195,0,0,'2022-06-05 23:24:04','2022-06-05 23:24:04','149eccd3-a706-47fe-83b0-d21f611fe3af'),(2470,68,1001,196,0,1,'2022-06-05 23:24:04','2022-06-05 23:24:04','28163e3b-cc84-4669-80d8-12f97ec57936'),(2471,68,1001,197,0,2,'2022-06-05 23:24:04','2022-06-05 23:24:04','23e065c5-4f33-4562-9dd7-fce92f3181b7'),(2472,68,1001,198,0,3,'2022-06-05 23:24:04','2022-06-05 23:24:04','9b3e1f0b-12d9-4ddd-a39c-f965ba4ca6c0'),(2473,68,1001,199,0,4,'2022-06-05 23:24:04','2022-06-05 23:24:04','24dd7159-78f6-4438-a646-9d8cee9b641f'),(2509,38,1023,157,0,0,'2022-06-22 03:02:01','2022-06-22 03:02:01','bf1652b5-54e8-4160-a120-1aee8de9106a'),(2510,38,1023,151,0,1,'2022-06-22 03:02:01','2022-06-22 03:02:01','b039c345-b068-4cfb-a833-d1a83301e7fb'),(2511,38,1023,152,0,2,'2022-06-22 03:02:01','2022-06-22 03:02:01','d79eed40-985a-405b-8592-af2d2aad1bb1'),(2512,38,1023,158,0,3,'2022-06-22 03:02:01','2022-06-22 03:02:01','c3490e26-bda9-4de1-b57f-1642b19cc619'),(2513,38,1024,171,0,0,'2022-06-22 03:02:01','2022-06-22 03:02:01','fd5a3e14-a841-4c75-b221-6d18d1a51060'),(2514,39,1025,171,0,0,'2022-06-22 03:02:01','2022-06-22 03:02:01','cd1f29a5-847f-4b1d-b0b2-29a3dae5fe40'),(2515,39,1026,79,0,0,'2022-06-22 03:02:01','2022-06-22 03:02:01','e0df0428-ac26-4888-9180-558077974acc'),(2516,42,1027,171,0,0,'2022-06-22 03:02:01','2022-06-22 03:02:01','00a2103e-b4e1-45b6-b1be-705e0ea133c8'),(2517,42,1028,170,0,0,'2022-06-22 03:02:01','2022-06-22 03:02:01','d438a0a6-ff1f-4bfa-9123-a59135c66224'),(2518,42,1028,169,0,1,'2022-06-22 03:02:01','2022-06-22 03:02:01','76e1a0cb-2866-416d-abd0-eaafe704e801'),(2519,43,1029,173,0,0,'2022-06-22 03:02:01','2022-06-22 03:02:01','771d1546-c961-4492-8831-b3dfc8d58066'),(2520,43,1029,151,0,1,'2022-06-22 03:02:01','2022-06-22 03:02:01','ca2836b7-78d2-4a0a-8fc3-9e33d7361f05'),(2521,43,1030,171,0,0,'2022-06-22 03:02:01','2022-06-22 03:02:01','488eb561-1130-40a0-998f-447e9433eff9'),(2522,47,1031,170,0,0,'2022-06-22 03:02:01','2022-06-22 03:02:01','8616e805-75d3-4f50-8092-fcc39dd61aff'),(2523,47,1031,180,0,1,'2022-06-22 03:02:01','2022-06-22 03:02:01','6e22c3a6-fe3c-49af-b025-76dbd4cb33e3'),(2524,47,1031,157,0,2,'2022-06-22 03:02:01','2022-06-22 03:02:01','6f9562c6-e12a-4db3-9a1c-fa87e6297438'),(2525,47,1031,151,0,3,'2022-06-22 03:02:01','2022-06-22 03:02:01','01f56c3c-0c78-44da-8674-07ec2f655f99'),(2526,47,1031,181,0,4,'2022-06-22 03:02:01','2022-06-22 03:02:01','298ef6e5-0d6f-40b3-831a-26ed5f1f1814'),(2527,49,1032,151,0,0,'2022-06-22 03:02:01','2022-06-22 03:02:01','f56bd22d-437b-40ed-aa33-57b0fa489a44'),(2528,49,1032,157,0,1,'2022-06-22 03:02:01','2022-06-22 03:02:01','d9fa2163-ac72-4bfe-93fa-3e09408fea7a'),(2529,49,1032,180,0,2,'2022-06-22 03:02:01','2022-06-22 03:02:01','52b4d3c9-36ed-41cd-bbf8-f41e288b9f22'),(2530,49,1033,171,0,0,'2022-06-22 03:02:01','2022-06-22 03:02:01','e830948e-64a9-4ae4-a8e7-75d02bb65c53'),(2531,44,1034,169,0,0,'2022-06-22 03:02:01','2022-06-22 03:02:01','6cf6ad49-243f-4456-bf91-6a909c08b56d'),(2532,46,1035,177,0,0,'2022-06-22 03:02:01','2022-06-22 03:02:01','2d67f568-eceb-44ad-9dc5-4eac5c091700'),(2533,53,1036,169,0,0,'2022-06-22 03:02:01','2022-06-22 03:02:01','54496a8d-f8c0-4939-875b-dafa1217334e'),(2534,53,1036,192,0,1,'2022-06-22 03:02:01','2022-06-22 03:02:01','ce89344e-df58-4964-a692-4e5ea1c22853'),(2535,53,1036,152,0,2,'2022-06-22 03:02:01','2022-06-22 03:02:01','7e284b5a-55c6-4b70-b329-9ef935733791'),(2536,55,1037,200,0,0,'2022-06-22 03:02:01','2022-06-22 03:02:01','efcd2487-208d-49ba-90ea-1a71954d4c21'),(2537,55,1037,151,0,1,'2022-06-22 03:02:01','2022-06-22 03:02:01','775e5830-473e-42f3-8170-ad0994a2724d'),(2538,55,1038,171,0,0,'2022-06-22 03:02:01','2022-06-22 03:02:01','87c1520a-f46c-4a61-a612-8975ebfefdf7'),(2539,65,1039,169,0,0,'2022-06-22 03:02:01','2022-06-22 03:02:01','53d39022-39a9-4045-bdb7-c91292e766d2'),(2540,66,1040,212,0,0,'2022-06-22 03:02:01','2022-06-22 03:02:01','a699b2cc-9887-481e-bb03-f689d02df1f0'),(2541,66,1041,171,0,0,'2022-06-22 03:02:01','2022-06-22 03:02:01','98f6223f-4ef1-44bc-966d-bce79772bd4b'),(2542,67,1042,213,0,0,'2022-06-22 03:02:01','2022-06-22 03:02:01','1d86d7e3-0eb7-47b4-bb9f-0c7bd5f19a8a'),(2543,67,1043,171,0,0,'2022-06-22 03:02:01','2022-06-22 03:02:01','1def6377-0092-4a23-9b3a-06ac9e7f2a27'),(2545,21,1045,91,0,0,'2022-06-22 03:02:01','2022-06-22 03:02:01','9cdd70ae-4950-4faa-8a0d-2154ab755132'),(2547,41,1047,166,0,0,'2022-06-22 03:02:01','2022-06-22 03:02:01','fb6814d0-6c19-419c-9272-643eaa51be35'),(2551,32,1049,147,0,0,'2022-06-22 03:02:02','2022-06-22 03:02:02','d0e0685d-5726-43d0-8fe7-324832ecbb2d'),(2552,32,1049,142,0,1,'2022-06-22 03:02:02','2022-06-22 03:02:02','50730b0e-79b9-4339-9646-ec2796cee664'),(2553,32,1049,139,0,2,'2022-06-22 03:02:02','2022-06-22 03:02:02','5d12d4b8-8d43-4e11-bb6a-da6902a468b0'),(2558,25,1051,143,0,0,'2022-06-22 03:02:02','2022-06-22 03:02:02','a848022b-3cd1-4bfc-b892-707f563d4a5c'),(2559,25,1051,123,0,1,'2022-06-22 03:02:02','2022-06-22 03:02:02','fdd68619-b264-49ce-8ca2-dbe85dcf2735'),(2560,25,1051,122,0,2,'2022-06-22 03:02:02','2022-06-22 03:02:02','6ea0a0ee-9632-41d0-b4db-403458653d11'),(2561,25,1051,124,0,3,'2022-06-22 03:02:02','2022-06-22 03:02:02','cff090c4-9446-4272-be5f-696c1f6f1392'),(2566,30,1053,146,0,0,'2022-06-22 03:02:02','2022-06-22 03:02:02','f61f9602-e49d-4841-9e49-e09d6094b2ab'),(2567,30,1053,137,0,1,'2022-06-22 03:02:02','2022-06-22 03:02:02','c38c6730-5cbe-431e-a069-7c1a6fe9ca5a'),(2568,30,1053,138,0,2,'2022-06-22 03:02:02','2022-06-22 03:02:02','0f83bcb7-a7c5-4b4e-a89c-8c217a592041'),(2569,30,1053,133,0,3,'2022-06-22 03:02:02','2022-06-22 03:02:02','c3383a8d-7f12-4649-b5ad-3a79bc1311a3'),(2573,27,1055,144,0,0,'2022-06-22 03:02:02','2022-06-22 03:02:02','a2192b0d-ad40-4c77-8a5b-89a6c76f0cab'),(2574,27,1055,131,0,1,'2022-06-22 03:02:02','2022-06-22 03:02:02','ea64f66b-38a4-450a-9622-00317c0ee5ce'),(2575,27,1055,128,0,2,'2022-06-22 03:02:02','2022-06-22 03:02:02','e6858c90-6f01-4046-939c-9299eff5de5a'),(2582,37,1057,159,0,0,'2022-06-22 03:02:03','2022-06-22 03:02:03','0eeb7515-56b1-4c8f-940c-9d2dc79232e1'),(2583,37,1057,174,0,1,'2022-06-22 03:02:03','2022-06-22 03:02:03','15798a52-dc4d-42bd-9501-6f601928245c'),(2584,37,1057,160,0,2,'2022-06-22 03:02:03','2022-06-22 03:02:03','169b59ea-1fd5-4b8e-a3fa-105127605cdd'),(2585,37,1057,161,0,3,'2022-06-22 03:02:03','2022-06-22 03:02:03','57a34d18-f145-48db-84d3-93d349af4f20'),(2586,37,1057,162,0,4,'2022-06-22 03:02:03','2022-06-22 03:02:03','9cd8bb1a-b73d-4ad9-9c5d-fed44cfa1f98'),(2587,37,1057,163,0,5,'2022-06-22 03:02:03','2022-06-22 03:02:03','559e964b-8058-45a7-9c4e-1c6e52d0b4d5'),(2591,8,1059,62,0,0,'2022-06-22 03:02:03','2022-06-22 03:02:03','f67adf28-d781-426b-8d53-fc1813127743'),(2592,8,1059,63,0,1,'2022-06-22 03:02:03','2022-06-22 03:02:03','2de28861-973d-4551-8c62-5f6e61e21c86'),(2593,8,1059,175,0,2,'2022-06-22 03:02:03','2022-06-22 03:02:03','a4ceec38-d80c-478b-bbd9-e49a1d64fca1'),(2597,35,1061,154,0,0,'2022-06-22 03:02:03','2022-06-22 03:02:03','42a2926b-16b4-46a0-accf-df88128fcfe7'),(2598,35,1061,153,0,1,'2022-06-22 03:02:03','2022-06-22 03:02:03','3f818aa4-d4f3-4435-95aa-5d07216ae60f'),(2599,35,1061,185,0,2,'2022-06-22 03:02:03','2022-06-22 03:02:03','4628857d-29d4-4143-9f99-0b3d7cf10012'),(2603,7,1063,60,0,0,'2022-06-22 03:02:03','2022-06-22 03:02:03','3ce45412-16bd-4389-a105-b335aa2de5dc'),(2604,7,1063,61,0,1,'2022-06-22 03:02:03','2022-06-22 03:02:03','c9b6d0a4-5e2c-46e1-b587-16637daa9d8c'),(2605,7,1063,176,0,2,'2022-06-22 03:02:03','2022-06-22 03:02:03','e8e1a71b-1c40-49e3-a100-56ff549729b1'),(2609,36,1065,156,0,0,'2022-06-22 03:02:03','2022-06-22 03:02:03','569fd97a-6963-45fb-b321-a849e4c64e7d'),(2610,36,1065,155,0,1,'2022-06-22 03:02:03','2022-06-22 03:02:03','a12e22e0-7810-48a4-aea1-5f23df0d0f50'),(2611,36,1065,165,0,2,'2022-06-22 03:02:03','2022-06-22 03:02:03','35672152-2681-4aff-9f5a-97f61ef87384'),(2616,19,1067,86,0,0,'2022-06-22 03:02:03','2022-06-22 03:02:03','42b27d69-6ec2-46a5-a43a-780cd0e74d50'),(2617,19,1067,87,0,1,'2022-06-22 03:02:03','2022-06-22 03:02:03','01e23b0a-f93f-4adb-824f-186b114282cc'),(2618,19,1067,88,0,2,'2022-06-22 03:02:03','2022-06-22 03:02:03','60e6a83e-b038-4e63-aa28-8d5a0bb5e95c'),(2619,19,1067,89,0,3,'2022-06-22 03:02:03','2022-06-22 03:02:03','b5dac7ce-9e7d-41e0-a414-70e20e283408'),(2620,70,1069,164,0,1,'2023-01-10 00:13:07','2023-01-10 00:13:07','46c4cb40-d6fb-457a-adc4-2038c6a43775'),(2621,62,1070,74,0,1,'2023-03-01 02:12:09','2023-03-01 02:12:09','504ada8d-bc8a-48a2-aa42-a8d5461dc6e4'),(2622,62,1070,78,0,2,'2023-03-01 02:12:09','2023-03-01 02:12:09','879917c9-c0e5-431c-a692-38fca06904b6'),(2623,62,1070,164,0,3,'2023-03-01 02:12:09','2023-03-01 02:12:09','c22f0048-53f2-4cb8-a09a-fe3a4392f657'),(2624,62,1070,218,0,5,'2023-03-01 02:12:09','2023-03-01 02:12:09','d8961023-e63e-424d-9d12-1a27076dc83b'),(2625,62,1070,204,0,6,'2023-03-01 02:12:09','2023-03-01 02:12:09','b8f249c8-29c8-48e2-8b62-dbb7c4752a07'),(2626,62,1070,202,0,7,'2023-03-01 02:12:09','2023-03-01 02:12:09','9ef8be61-8cde-4d15-b5a2-6e213447ddfb'),(2627,62,1070,203,0,8,'2023-03-01 02:12:09','2023-03-01 02:12:09','d4369301-ad76-4b6b-a7bc-087177ae7197'),(2628,62,1070,201,0,9,'2023-03-01 02:12:09','2023-03-01 02:12:09','3f29a42d-1237-469d-bc65-d17e1d0bbfb5'),(2629,62,1071,195,0,0,'2023-03-01 02:12:09','2023-03-01 02:12:09','b6ff8776-b34b-4a58-b7b3-af604fe8c01a'),(2630,62,1071,196,0,1,'2023-03-01 02:12:09','2023-03-01 02:12:09','2e179a8a-7478-478e-a6b5-6583c6c3654c'),(2631,62,1071,197,0,2,'2023-03-01 02:12:09','2023-03-01 02:12:09','ec4ef794-8560-4c6b-b1d5-61fe6893d6e0'),(2632,62,1071,198,0,3,'2023-03-01 02:12:09','2023-03-01 02:12:09','0ebe39fa-77af-4e93-b62f-07e85fb8949f'),(2633,62,1071,199,0,4,'2023-03-01 02:12:09','2023-03-01 02:12:09','f886bc42-bacc-4738-a7f9-868de1d9832b'),(2642,5,1073,219,0,0,'2023-03-06 01:35:27','2023-03-06 01:35:27','3055c283-df8b-4ec9-bb4d-6346dfa8e023'),(2643,5,1073,220,0,1,'2023-03-06 01:35:27','2023-03-06 01:35:27','d2a12eb9-0b38-4256-bf96-76a727e30d7d'),(2644,5,1073,75,0,2,'2023-03-06 01:35:27','2023-03-06 01:35:27','cfaa3b7a-7549-426c-99d9-cdee6ae8eecd'),(2645,5,1073,172,0,3,'2023-03-06 01:35:27','2023-03-06 01:35:27','00f5cf7f-cf01-4dbb-9d34-2a99aea726da'),(2646,5,1073,183,0,4,'2023-03-06 01:35:27','2023-03-06 01:35:27','75aa8cae-ab98-46e6-a31e-3408f752e664'),(2647,5,1073,81,0,5,'2023-03-06 01:35:27','2023-03-06 01:35:27','90be834a-3dbc-4b03-9f03-8ad17ef76d9a'),(2648,5,1073,76,0,6,'2023-03-06 01:35:27','2023-03-06 01:35:27','c63443ef-1dd2-4cc2-99c9-34d608077beb'),(2649,5,1073,120,0,7,'2023-03-06 01:35:27','2023-03-06 01:35:27','48734903-7b56-40d1-a7a5-4f6b793af6c3');
/*!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 (1,'craft\\elements\\Entry','2021-04-07 05:26:54','2021-04-07 05:26:54',NULL,'b19a91cd-ce57-4057-845a-8c7b151b4b6a'),(4,'craft\\elements\\Entry','2021-04-20 00:52:32','2021-04-20 00:52:32',NULL,'1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0'),(5,'craft\\elements\\User','2021-04-20 01:20:38','2023-03-06 01:35:27',NULL,'906efdea-c886-4f79-9de2-58bc2b8efd35'),(6,'craft\\elements\\Entry','2021-05-14 05:59:09','2021-05-14 05:59:09',NULL,'ef2f1140-3917-4ae9-9989-7fab13f0b27f'),(7,'craft\\elements\\MatrixBlock','2021-05-14 06:12:30','2021-05-14 06:12:30',NULL,'75904a8b-e1fc-4225-ae1d-f221ad640d73'),(8,'craft\\elements\\MatrixBlock','2021-05-14 06:12:30','2021-05-14 06:12:30',NULL,'606d748d-1242-42ca-846e-81c011c679fb'),(9,'craft\\elements\\MatrixBlock','2021-05-14 06:19:00','2021-05-14 06:19:00',NULL,'ff81a284-a773-478c-aa87-248acb3bbcaa'),(10,'craft\\elements\\Asset','2021-05-14 06:20:53','2021-05-14 06:20:53',NULL,'d736ab1c-0bca-4562-b114-e7fe95fd7a24'),(12,'craft\\elements\\Entry','2021-05-18 00:26:09','2021-05-18 00:26:09',NULL,'02df1f40-681b-4c8f-b2e3-6b2488894ac7'),(13,'craft\\elements\\Category','2021-05-18 00:28:05','2021-05-18 00:28:05',NULL,'5f49eefa-5e21-4a15-87ab-f8889789afc9'),(14,'craft\\elements\\MatrixBlock','2021-05-25 05:48:21','2021-05-25 05:48:21',NULL,'4295a878-33a4-4058-b3f3-0bd927c8478c'),(16,'craft\\elements\\Category','2021-05-25 06:32:21','2021-05-25 06:32:21',NULL,'8a588cb8-740e-4f52-9ee2-705bc248b8aa'),(17,'craft\\elements\\Category','2021-05-25 06:32:34','2021-05-25 06:32:34',NULL,'4573ae3b-6537-4229-8e3b-f45437c0b61b'),(18,'craft\\elements\\GlobalSet','2021-06-02 04:09:43','2021-06-02 04:09:43',NULL,'7a57034c-f60a-481f-8eb4-0581f32545ca'),(19,'craft\\elements\\MatrixBlock','2021-06-03 05:26:29','2021-06-03 05:26:29',NULL,'9c62d064-fdfb-4185-8bc9-2eb773403e1d'),(20,'verbb\\supertable\\elements\\SuperTableBlockElement','2021-06-09 23:37:45','2021-06-09 23:37:45',NULL,'de4f903e-de01-4744-a300-e2219ac56f0c'),(21,'craft\\elements\\MatrixBlock','2021-06-09 23:37:45','2021-06-09 23:37:45',NULL,'f8508a1d-ee00-469d-8130-ea5f5b7dbb83'),(22,'craft\\elements\\Category','2021-06-11 00:30:06','2021-06-11 00:30:06',NULL,'4831aee9-ccbb-4e5f-bc26-5bcd5b950f16'),(23,'craft\\elements\\Entry','2021-06-21 04:18:40','2021-06-21 04:18:40',NULL,'7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1'),(24,'verbb\\supertable\\elements\\SuperTableBlockElement','2021-06-21 04:26:33','2021-06-21 04:26:33',NULL,'ae6c76d5-988f-42a9-a782-4760e93187fa'),(25,'craft\\elements\\MatrixBlock','2021-06-21 04:26:33','2021-06-21 04:26:33',NULL,'d9c5ea31-02de-40ba-94fe-5d02bed27d76'),(26,'verbb\\supertable\\elements\\SuperTableBlockElement','2021-06-21 04:26:33','2021-06-21 04:26:33',NULL,'d1275cec-0d01-49a6-b412-91a4cee1f73f'),(27,'craft\\elements\\MatrixBlock','2021-06-21 04:26:33','2021-06-21 04:26:33',NULL,'94789ff5-2af5-43d7-9582-d04b51a7b9cb'),(28,'craft\\elements\\MatrixBlock','2021-06-21 04:26:33','2021-06-21 04:26:33',NULL,'86f6c809-4b0f-46b9-ab12-c340bd3391d2'),(29,'verbb\\supertable\\elements\\SuperTableBlockElement','2021-06-21 04:26:34','2021-06-21 04:26:34',NULL,'12ac6e15-9137-4891-9d97-d205269a802a'),(30,'craft\\elements\\MatrixBlock','2021-06-21 04:26:34','2021-06-21 04:26:34',NULL,'91369206-e180-4343-bf58-e09a4ab3cf33'),(31,'verbb\\supertable\\elements\\SuperTableBlockElement','2021-06-21 04:26:34','2021-06-21 04:26:34',NULL,'958e4a82-6b87-432e-8653-3294477af38b'),(32,'craft\\elements\\MatrixBlock','2021-06-21 04:26:34','2021-06-21 04:26:34',NULL,'dcae440e-4f30-46b8-aa61-2fd248287e32'),(33,'craft\\elements\\GlobalSet','2021-06-21 06:00:18','2021-06-21 06:00:18',NULL,'39c50d88-fa96-4798-8740-eaf4c783b643'),(34,'craft\\elements\\Entry','2021-06-21 06:24:18','2021-06-21 06:24:18',NULL,'1f90b522-820f-4e71-8aa3-a9c5b48d7326'),(35,'craft\\elements\\MatrixBlock','2021-07-12 06:54:08','2021-07-12 06:54:08',NULL,'ce277dc9-46da-461f-9b05-e2ee8f78e6c1'),(36,'craft\\elements\\MatrixBlock','2021-07-12 06:56:38','2021-07-12 06:56:38',NULL,'c63307f7-50bc-411a-91ca-6eb85cfffc1e'),(37,'craft\\elements\\MatrixBlock','2021-07-12 23:06:24','2021-07-12 23:06:24',NULL,'b1a873a0-d2b0-4853-9426-ac51535f08cb'),(38,'verbb\\vizy\\models\\BlockType','2021-07-12 23:09:16','2021-07-12 23:09:16',NULL,'ba014523-5ac5-4c8d-b146-013bb53bcdf0'),(39,'verbb\\vizy\\models\\BlockType','2021-07-12 23:11:20','2021-07-12 23:11:20',NULL,'12e55a1e-108b-4ad5-98cf-e23f3e9b5852'),(40,'verbb\\supertable\\elements\\SuperTableBlockElement','2021-07-13 00:27:14','2021-07-13 00:27:14',NULL,'aad614a3-dd82-4760-980b-6507e557ef1f'),(41,'craft\\elements\\MatrixBlock','2021-07-13 00:27:14','2021-07-13 00:27:14',NULL,'60d88983-e650-4c59-a67e-c24e2b1dd65f'),(42,'verbb\\vizy\\models\\BlockType','2021-07-14 01:05:08','2021-07-14 01:05:08',NULL,'2da7908c-edff-430a-8a23-96f17ebb813c'),(43,'verbb\\vizy\\models\\BlockType','2021-07-14 23:12:13','2021-07-14 23:12:13',NULL,'2dff07d9-38f4-464b-a02a-e87706db0292'),(44,'verbb\\vizy\\models\\BlockType','2021-07-16 04:35:50','2021-07-22 23:22:25',NULL,'ad819334-922d-4539-8259-5a79df116e87'),(45,'craft\\elements\\MatrixBlock','2021-07-16 04:37:13','2021-07-16 04:37:13',NULL,'d414fc10-d6a1-452f-af4c-687a53c4b0ef'),(46,'verbb\\vizy\\models\\BlockType','2021-07-16 04:37:33','2021-07-22 23:22:25',NULL,'a4ed14d4-fcf4-46c9-bf15-afc06ffcbc87'),(47,'verbb\\vizy\\models\\BlockType','2021-07-16 05:07:02','2021-07-16 05:07:02',NULL,'647d6fba-67d9-478e-8e66-548e237fe9c0'),(49,'verbb\\vizy\\models\\BlockType','2021-07-22 05:54:07','2021-07-22 05:54:07',NULL,'80d0e735-9c05-45a6-ba97-02bcae2dfcb2'),(50,'craft\\elements\\Entry','2021-09-10 01:58:36','2021-09-10 01:58:36',NULL,'56de0a70-8a67-46b1-9171-7d0615fe69da'),(51,'craft\\elements\\MatrixBlock','2021-09-10 02:00:16','2021-09-10 02:00:16',NULL,'a5ca87d8-ab9a-4950-8d3e-b6e32434fb96'),(52,'craft\\elements\\Entry','2021-09-27 03:32:47','2021-09-27 03:32:47',NULL,'070325fc-9637-4278-adad-f41de72595ea'),(53,'verbb\\vizy\\models\\BlockType','2021-09-28 05:44:02','2021-09-28 05:44:02',NULL,'f286c5ff-7a88-456a-80ff-5bf83a4e40d0'),(54,'craft\\elements\\GlobalSet','2021-11-09 00:39:42','2021-11-09 00:39:42',NULL,'bf2560d2-6a11-4dc8-8f67-ed5b66b19d56'),(55,'verbb\\vizy\\models\\BlockType','2021-11-09 23:38:15','2021-11-09 23:38:15',NULL,'64cf1b94-24dd-474c-9d4c-a1eecd1ee6d9'),(56,'craft\\elements\\Entry','2021-11-09 23:38:17','2021-11-09 23:38:17',NULL,'7112d78b-ff1d-408f-b89a-eb8299dae02a'),(58,'craft\\elements\\Tag','2021-11-15 01:17:35','2021-11-15 01:17:35',NULL,'71638eed-7bdf-49a1-a531-423218098a2c'),(59,'craft\\elements\\Tag','2021-11-15 01:17:35','2021-11-15 01:17:35',NULL,'ef3eff9c-8dda-46c3-869b-d9db1c276057'),(60,'craft\\elements\\Entry','2021-11-15 01:51:50','2021-11-15 01:51:50',NULL,'0405c97e-1fda-456e-9a6e-e62a118681ee'),(61,'craft\\elements\\Entry','2021-11-24 05:25:54','2021-11-24 05:25:54',NULL,'7baa16b6-afc3-4b8b-a487-de5f8c336eb8'),(62,'craft\\elements\\Entry','2021-12-10 01:00:02','2021-12-10 01:00:02',NULL,'22ad5874-a33e-42f4-a3b2-862bcb6c8b37'),(63,'craft\\elements\\GlobalSet','2022-02-09 00:56:43','2022-02-09 00:56:43',NULL,'af40bbbf-f576-46b6-99c7-c6b43ef1fe58'),(65,'verbb\\vizy\\models\\BlockType','2022-05-17 23:19:10','2022-05-17 23:19:10',NULL,'b757e220-fb65-4fce-a081-c93399bbb0a7'),(66,'verbb\\vizy\\models\\BlockType','2022-06-05 23:22:33','2022-06-05 23:22:33',NULL,'934829d8-9be9-45dc-a404-630590254f82'),(67,'verbb\\vizy\\models\\BlockType','2022-06-05 23:22:33','2022-06-05 23:22:33',NULL,'68882123-3c38-402c-b566-bb6545c825ad'),(68,'craft\\elements\\Entry','2022-06-05 23:22:35','2022-06-05 23:22:35',NULL,'6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6'),(69,'craft\\elements\\MatrixBlock','2022-06-05 23:23:58','2022-06-05 23:23:58',NULL,'c69dcfaf-9963-446c-a9ce-b765c044cd38'),(70,'craft\\elements\\Entry','2023-01-10 00:12:41','2023-01-10 00:12:41',NULL,'8edb0572-e47c-44eb-91a8-a07556cf389c');
/*!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 (596,18,'CONTENT',NULL,'[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"fieldUid\":\"4233d145-1d79-49a5-931e-effdeec7d786\",\"uid\":\"1c9fc545-f3ac-424b-aafd-e6eca3a94557\"}]',1,'2021-11-15 01:17:36','2022-05-17 23:18:52','8172e069-c838-47c9-8f3b-d2c22037c152'),(605,40,'Content',NULL,'[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"fieldUid\":\"f9da4ffb-4690-4f0b-8f08-456b5e29ffc9\",\"uid\":\"bf41120a-c4e3-4994-935d-0a9cc0d15734\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"fieldUid\":\"5307644b-cc96-4639-8586-e174e883f664\",\"uid\":\"194c094c-03a6-4c0a-8c20-7c0b08ee9534\"}]',1,'2021-11-15 01:17:38','2022-05-17 23:18:52','5a7dd817-41b0-4038-9a32-d9a64a101f9b'),(613,24,'Content',NULL,'[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"fieldUid\":\"78dae584-8470-46cf-9d9d-81753f0c8a47\",\"uid\":\"ac521028-9555-4a29-8a85-7c70d8d055f6\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"fieldUid\":\"f362a4cd-9c43-453d-84e5-dc8d9efa0b9f\",\"uid\":\"11841360-a180-4396-8d46-14142b826655\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"fieldUid\":\"a51c75e9-07f7-42af-b360-cf8e55df3da3\",\"uid\":\"290dd1c1-9424-4191-8ce3-7a7f27bd91e1\"}]',1,'2021-11-15 01:17:44','2022-05-17 23:18:52','52b45e7d-029f-4057-9f8d-5e3fc51d116a'),(616,54,'SEO',NULL,'[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"fieldUid\":\"d4f97e13-677b-40d7-a802-929455984b64\",\"uid\":\"76db587c-f823-4062-95eb-df1322cfe1e3\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"fieldUid\":\"687c0549-de46-424f-8727-7b5546c11752\",\"uid\":\"0df93343-351f-45ce-9eec-b710ddb7547b\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"fieldUid\":\"543fd936-b820-4ae9-93f7-e0577abe2fab\",\"uid\":\"0ce743e1-a87c-4da1-96d7-031315deb0ec\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"fieldUid\":\"24041ec2-da5f-4ff4-82b3-6aba2005647a\",\"uid\":\"28abd8f4-1cb1-4747-9ae6-a4cadc954c52\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"fieldUid\":\"42f55576-0f06-49ff-bc18-627c979de526\",\"uid\":\"27e917e1-b6e2-464f-b6de-f0ba43cf4e6b\"}]',1,'2021-11-15 01:17:44','2022-05-17 23:18:52','fef69850-fcb9-4863-a902-facd36b74ca1'),(617,31,'Content',NULL,'[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"fieldUid\":\"77c63b72-1a12-4ae0-8e77-1c8281529861\",\"uid\":\"35a5f006-6800-423e-8771-d220b578a963\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"fieldUid\":\"0b0d85f7-4358-42e8-9beb-96291582f0ef\",\"uid\":\"c47af631-f6e4-4c4a-a659-a410db39d431\"}]',1,'2021-11-15 01:17:44','2022-05-17 23:18:52','60a1521c-8c69-4f1e-a5f0-b89d4d9d2e56'),(618,33,'Related people',NULL,'[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"fieldUid\":\"ac330e35-980d-4c71-9fd8-4c4edd58140b\",\"uid\":\"f53d6c07-8f5b-47eb-bd8e-02072ecd1c02\"}]',1,'2021-11-15 01:17:44','2022-05-17 23:18:52','b87691f0-5cca-4da9-a576-97bfb938fcc1'),(619,22,'Content',NULL,'[{\"type\":\"craft\\\\fieldlayoutelements\\\\TitleField\",\"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\":\"fb81f72d-a732-4177-8c2b-7f9c5c1db811\"}]',1,'2021-11-15 01:17:45','2022-05-17 23:18:52','3dbb5b9a-6447-4234-b179-7b6b044d9712'),(620,16,'Content',NULL,'[{\"type\":\"craft\\\\fieldlayoutelements\\\\TitleField\",\"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\":\"fce9bb07-09cb-45bf-90c7-d9dd6e3689bb\"}]',1,'2021-11-15 01:17:45','2022-05-17 23:18:52','fe84b239-e6ea-432e-93cb-207c3dfbec17'),(621,13,'Content',NULL,'[{\"type\":\"craft\\\\fieldlayoutelements\\\\TitleField\",\"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\":\"7df7a92d-ad7c-4290-8d8f-bb06c7f4558d\"}]',1,'2021-11-15 01:17:45','2022-05-17 23:18:52','3d35868a-f031-4a23-a764-3b54cf2336ee'),(622,59,'Content',NULL,'[{\"type\":\"craft\\\\fieldlayoutelements\\\\TitleField\",\"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\":\"09913927-bfa6-4cf1-b1a9-41f2620b462b\"}]',1,'2021-11-15 01:17:46','2022-05-17 23:18:52','3a991f56-ead9-4009-afcf-e42bd22a7d05'),(623,20,'Content',NULL,'[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"fieldUid\":\"9d14a3af-2493-422b-8fc8-60b496e17204\",\"uid\":\"a79e283a-98d6-419e-801c-673de00b00cb\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"fieldUid\":\"9d09a28d-571e-4cd9-a199-2d3342cf815a\",\"uid\":\"74ac65a9-ffc8-4879-8e6b-b9f154d0f8e4\"}]',1,'2021-11-15 01:17:47','2022-05-17 23:18:52','e5419e87-a4b2-4518-a6bc-fecd06c9685d'),(625,58,'Content',NULL,'[{\"type\":\"craft\\\\fieldlayoutelements\\\\TitleField\",\"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\":\"39641470-c4ff-4602-af4d-721b99144c15\"}]',1,'2021-11-15 01:17:47','2022-05-17 23:18:52','ef05f4b6-9129-4ce9-9216-eb21e030b158'),(644,45,'Content',NULL,'[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"fieldUid\":\"e04edda4-4166-46d2-891a-1de94a6efe73\",\"uid\":\"30ec84a8-d44b-4c8c-a3b6-c4a6ba7342db\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"fieldUid\":\"c617866b-d457-4084-ad7d-07b1ee8fca3e\",\"uid\":\"f541da7d-10df-4320-afee-a314718b7d31\"}]',1,'2021-11-15 01:17:50','2022-05-17 23:18:52','8404f68f-fbb8-420c-8018-e502ad19f6a7'),(645,9,'Content',NULL,'[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"fieldUid\":\"4c837697-9892-435a-bb35-4cf13274c77e\",\"uid\":\"8d6c80ec-4fed-40d5-a562-5aab536cd485\"}]',1,'2021-11-15 01:17:50','2022-05-17 23:18:52','39d7025e-e29f-4b00-af5f-04d64b68f7dc'),(648,28,'Content',NULL,'[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"fieldUid\":\"76c09769-e160-4cff-b43f-81533d470637\",\"uid\":\"67484aa6-2fd4-425e-8c43-2345640fe5ce\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"fieldUid\":\"b76e39f4-0e1a-4d62-8e53-12e86f7e7705\",\"uid\":\"f65b6347-01ad-4d9c-89be-2153c3f3d92f\"}]',1,'2021-11-15 01:17:51','2022-05-17 23:18:52','f831bca1-fba7-4983-ac4b-7717b3a4ca5f'),(650,26,'Content',NULL,'[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"fieldUid\":\"c0dca123-dde4-44c4-ab97-10e1ebe80aee\",\"uid\":\"94293643-8bd6-4f83-bd07-edd0fd6bccf2\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"fieldUid\":\"217aa381-87e0-4450-aff2-a051ada343b6\",\"uid\":\"02614a86-8069-444a-a3c7-d8cf3ee80111\"}]',1,'2021-11-15 01:17:51','2022-05-17 23:18:52','5070743c-298e-43f5-8fb5-c8c537c7d514'),(651,14,'Content',NULL,'[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"fieldUid\":\"73446925-4ff5-472c-a475-71d853f84501\",\"uid\":\"87a3c929-6395-4c14-b0f6-a848e66957d3\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"fieldUid\":\"a7b7b38d-f6b5-4bee-9df7-164e3e5516d9\",\"uid\":\"55b475f3-8f35-4232-89bb-2e20685dc45b\"}]',1,'2021-11-15 01:17:51','2022-05-17 23:18:52','ea5825f7-acec-443a-b753-a3509b82c141'),(653,51,'Content',NULL,'[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"fieldUid\":\"2f7ba8f5-ccf1-403a-af0a-faa7fd49b841\",\"uid\":\"3d632c37-4b8d-4d3c-ab3a-cbc16d273508\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"fieldUid\":\"2d326ffa-82ec-4671-87b5-b5c79c1ae26b\",\"uid\":\"3b14054a-80c0-49ba-94b3-8cd46931dd25\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"fieldUid\":\"c2767866-99f0-4732-a314-d9167998c803\",\"uid\":\"eb4740d6-ba44-4c7c-bf71-7f196cb9aa56\"}]',1,'2021-11-15 01:17:52','2022-05-17 23:18:52','1152206d-1cc2-4959-92b2-239c9cd4d6f4'),(656,29,'Content',NULL,'[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"fieldUid\":\"24127c19-929c-4799-a4fc-addd0c9b8839\",\"uid\":\"76ded960-4d53-4012-8e39-91c090d45591\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"fieldUid\":\"b341277d-8bc1-411b-a87f-845f206f54b8\",\"uid\":\"362969af-b17e-4045-9b18-1f93c212d673\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"fieldUid\":\"0598f256-b692-400e-ab10-a3abbe55e729\",\"uid\":\"58838390-257d-40d0-82e2-5e389cf19cb0\"}]',1,'2021-11-15 01:17:52','2022-05-17 23:18:52','be222881-ba11-4223-ae78-94aac63bbc18'),(659,17,'Content',NULL,'[{\"type\":\"craft\\\\fieldlayoutelements\\\\TitleField\",\"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\":\"10af7f3b-f38e-4cee-954d-1867b9ac40ab\"}]',1,'2021-11-15 01:17:53','2022-05-17 23:18:52','8a43c7d3-86aa-47d8-b53d-2c8f96ebcc67'),(678,63,'CONTENT',NULL,'[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"fieldUid\":\"90cf930b-ef6f-426e-8c28-8187ff63ab71\",\"uid\":\"bfab1046-1381-4ed8-8dd2-2b36bf64364c\"}]',1,'2022-02-09 00:56:45','2022-05-17 23:18:52','d445dc33-686a-4014-989c-bc250ce6b9a8'),(796,6,'Content','[]','[{\"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\":75,\"uid\":\"43262f10-b000-4ccd-8a6c-f650f02c83c6\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":25,\"uid\":\"0cf871d9-74b1-41ca-87c0-807c93b46709\",\"fieldUid\":\"4772b900-f086-421b-9298-9380f296a971\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"947913ca-064b-4543-bb39-7b29a8d4a8a3\",\"fieldUid\":\"872244dc-f181-4b82-8df8-20a59d62654c\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\HorizontalRule\",\"uid\":\"c1560e28-511f-4f9b-a919-f8c619f38be5\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"cf37f2c3-d28d-4223-b989-8e3c0fbeb645\",\"fieldUid\":\"79eb82a7-865b-4011-9a91-56b285226a2d\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\HorizontalRule\",\"uid\":\"49d10b02-65dd-4840-a945-a04fc90c4581\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"97d18182-3e34-4a26-a78b-567db5d57504\",\"fieldUid\":\"ac330e35-980d-4c71-9fd8-4c4edd58140b\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\HorizontalRule\",\"uid\":\"bcff48d1-64e3-432c-8de6-6d9b81e29cce\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":true,\"width\":100,\"uid\":\"ce7738ca-afed-4ed2-aa46-dbe182351071\",\"fieldUid\":\"ac4071b5-babb-4fdc-b080-3c0d83e33548\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":25,\"uid\":\"32c078b3-01c0-482e-a4cd-5da0f1355758\",\"fieldUid\":\"5df89179-62c7-4128-ba15-c49e9690a573\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":25,\"uid\":\"0490f151-0eff-4a53-a8cd-dc91757c75e3\",\"fieldUid\":\"5f5f0671-b681-4818-942e-b5b46842906c\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\HorizontalRule\",\"uid\":\"74ac3255-e80a-4e4e-a60f-75b65f08602c\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"33cbde52-57c4-4dea-a723-f2d6d8cebc29\",\"fieldUid\":\"a5a982f3-8c85-4f6a-bc53-40ca9d61afbf\"}]',1,'2022-05-17 23:19:11','2022-05-17 23:19:11','6e7078c8-c0cc-4c77-8c17-5da4dafeac41'),(797,6,'SEO','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"63ab5c8d-c978-4260-b636-9af4ca7a1520\",\"fieldUid\":\"d4f97e13-677b-40d7-a802-929455984b64\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"686fd255-fbe9-4ac3-9cf1-d9378dd7985d\",\"fieldUid\":\"687c0549-de46-424f-8727-7b5546c11752\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"fa86f2cf-606a-4c19-8138-7221096d37b5\",\"fieldUid\":\"543fd936-b820-4ae9-93f7-e0577abe2fab\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"76aca29d-1226-4b72-a5db-7bb469c98004\",\"fieldUid\":\"24041ec2-da5f-4ff4-82b3-6aba2005647a\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"d33d50dc-3e57-4b80-ae76-888d7f709287\",\"fieldUid\":\"42f55576-0f06-49ff-bc18-627c979de526\"}]',2,'2022-05-17 23:19:11','2022-05-17 23:19:11','a4aaca3d-3200-4470-a7b2-573b96975cbb'),(801,61,'Content','[]','[{\"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\":\"e825f751-b856-4065-831b-4d4570cc64c7\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"bcdc0c15-c730-47ee-9f44-dd454863d9b7\",\"fieldUid\":\"a5a982f3-8c85-4f6a-bc53-40ca9d61afbf\"}]',1,'2022-05-17 23:19:12','2022-05-17 23:19:12','3e79b160-5454-47ef-9727-3f55044b2e77'),(805,1,'Content','[]','[{\"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\":\"da181247-07be-4e8d-a84e-f841d50e2596\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\Heading\",\"heading\":\"Income\",\"uid\":\"b9a8636d-4ff3-4d13-a7dc-10ef911c8228\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"049e8c80-e6a3-42d6-a399-6b38921abbd0\",\"fieldUid\":\"a28227a7-60b7-44a9-8bb3-cd123f79875e\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\Heading\",\"heading\":\"Expenses\",\"uid\":\"c3a08567-6c8b-4cb1-9c32-91a251f838da\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":50,\"uid\":\"3479f5b4-2ce8-4abf-a21b-a09000b2af98\",\"fieldUid\":\"f68e0fd0-2ad7-4416-b9d1-ae48f49e33d8\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":50,\"uid\":\"a7f09b3a-2446-4f78-8298-7f2eecaea388\",\"fieldUid\":\"e68f08fa-4e2a-4590-8cc5-07f7fa015bfb\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\Heading\",\"heading\":\"Totals\",\"uid\":\"c65b4ba8-3029-4ec2-91ce-234d1139e495\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"b34da5f7-99cf-41dd-b62d-c0e064f27ae2\",\"fieldUid\":\"fcfcedf6-24b6-4050-a9ca-21e4d7b5a8f4\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"11d17213-b811-4f90-b5d1-952b3e06ace0\",\"fieldUid\":\"23642e4f-de6f-4254-877c-4007ee2aec3f\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\Heading\",\"heading\":\"Monthly budget\",\"uid\":\"3a1b0256-a4a4-4604-8d96-14312a7f1428\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"4c0b2ef9-3574-4b9d-b1c1-ec5ad3a438e8\",\"fieldUid\":\"805eaf66-af57-453c-a73e-c4db8393b9eb\"}]',1,'2022-05-17 23:19:13','2022-05-17 23:19:13','2c333608-4bfc-4f3f-adc3-bed3e2a67185'),(814,12,'Content','[]','[{\"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\":\"40e03864-7567-48e2-bb78-444b292a652a\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"5e4bf6ac-fea6-4267-af0d-701be6411b63\",\"fieldUid\":\"0a95ad86-a2ee-4a11-9a13-65c1f09f0df5\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":\"Header image\",\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"e93c41f1-1870-488c-9f69-4da07c454373\",\"fieldUid\":\"ac4071b5-babb-4fdc-b080-3c0d83e33548\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"356e5374-5314-4909-b01f-51dd8ff83d84\",\"fieldUid\":\"5df89179-62c7-4128-ba15-c49e9690a573\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"28a4f487-afeb-4e4c-9847-f5d4601fdd8e\",\"fieldUid\":\"a5a982f3-8c85-4f6a-bc53-40ca9d61afbf\"}]',1,'2022-05-17 23:19:13','2022-05-17 23:19:13','3117cefb-ae5d-4113-8e5e-ec39f96efdd3'),(815,12,'SEO','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"661023e3-e233-455e-9d6d-c313f41129b6\",\"fieldUid\":\"d4f97e13-677b-40d7-a802-929455984b64\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"5a567148-46b3-4d08-b1a3-bb7d45180eb4\",\"fieldUid\":\"687c0549-de46-424f-8727-7b5546c11752\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"e49bc544-19ae-4a0f-a234-2f82c609309f\",\"fieldUid\":\"543fd936-b820-4ae9-93f7-e0577abe2fab\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"d4ec269a-c37f-42d1-b0af-f8616c582a41\",\"fieldUid\":\"24041ec2-da5f-4ff4-82b3-6aba2005647a\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"e2ab5dc6-1af9-45cf-917f-1bb9d748d507\",\"fieldUid\":\"42f55576-0f06-49ff-bc18-627c979de526\"}]',2,'2022-05-17 23:19:13','2022-05-17 23:19:13','4cdab18c-69a8-4078-9467-caa9434d29a4'),(818,34,'Content','[]','[{\"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\":\"cb185eef-0734-41f7-ae0c-dcff427c6603\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"f04c416a-0688-4edc-b89f-564e3f202b6e\",\"fieldUid\":\"a5a982f3-8c85-4f6a-bc53-40ca9d61afbf\"}]',1,'2022-05-17 23:19:14','2022-05-17 23:19:14','713489c2-fd7d-4c8b-90e6-e88304a7da36'),(819,34,'SEO','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"aac626e0-7e7d-4b99-88aa-76285fa0ddcc\",\"fieldUid\":\"d4f97e13-677b-40d7-a802-929455984b64\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"5b31ed50-075b-4058-af53-be247e945c9c\",\"fieldUid\":\"687c0549-de46-424f-8727-7b5546c11752\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"4c1e5b3f-874a-4bbd-8bb3-5afb34582fc1\",\"fieldUid\":\"543fd936-b820-4ae9-93f7-e0577abe2fab\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"ba18fe0d-8c77-430c-9d7c-dbef5bd4a6a5\",\"fieldUid\":\"24041ec2-da5f-4ff4-82b3-6aba2005647a\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"6e1ffa12-404c-429a-ad06-e8a7cfe9dc69\",\"fieldUid\":\"42f55576-0f06-49ff-bc18-627c979de526\"}]',2,'2022-05-17 23:19:14','2022-05-17 23:19:14','bd1d17ff-d3b3-4256-9c29-a6a3c5a5b22a'),(822,50,'Content','[]','[{\"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\":\"5aea4b38-ed00-4209-a6ef-3a35df2a5d14\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"acc1b1f9-d4c1-4142-b217-aa6eff38ee3f\",\"fieldUid\":\"d49f872f-4325-4ed2-b381-4eb04d0a576b\"}]',1,'2022-05-17 23:19:16','2022-05-17 23:19:16','500f97e5-4b15-433e-9376-1a1299deea45'),(823,50,'SEO','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"2615b46e-e5fa-4e50-b236-afcb5b7e99ab\",\"fieldUid\":\"d4f97e13-677b-40d7-a802-929455984b64\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"6b7dcf8d-d6fa-400b-835d-8cf6f3c54036\",\"fieldUid\":\"687c0549-de46-424f-8727-7b5546c11752\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"317a5128-924d-4b1f-a66d-d952e435a262\",\"fieldUid\":\"543fd936-b820-4ae9-93f7-e0577abe2fab\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"b479e42a-a015-42af-9e37-22b4316ce5c2\",\"fieldUid\":\"24041ec2-da5f-4ff4-82b3-6aba2005647a\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"334a6e43-8ff5-4983-aa95-e1878ca87b1e\",\"fieldUid\":\"42f55576-0f06-49ff-bc18-627c979de526\"}]',2,'2022-05-17 23:19:16','2022-05-17 23:19:16','e04bec22-5a69-41a1-8edf-89643a0bfc61'),(825,52,'Content','[]','[{\"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\":\"d48a5cc3-a381-40cd-bfd4-c172904f0e00\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"fcad0913-54d9-47b8-9d41-9eb16f2cc99f\",\"fieldUid\":\"a5a982f3-8c85-4f6a-bc53-40ca9d61afbf\"}]',1,'2022-05-17 23:19:18','2022-05-17 23:19:18','68897e2e-9abb-432a-85f0-4fec285530be'),(828,23,'Content','[]','[{\"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\":\"a88dad54-6a8f-4895-b71d-0fda205de7c6\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"8962c156-7f6e-417d-9dc0-eaa3c550fccc\",\"fieldUid\":\"a5a982f3-8c85-4f6a-bc53-40ca9d61afbf\"}]',1,'2022-05-17 23:19:20','2022-05-17 23:19:20','19a4dee9-4186-4031-a5b4-0da3be060ec5'),(829,23,'SEO','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"0b143a25-aa85-469a-b9ba-d0cc73831fe9\",\"fieldUid\":\"d4f97e13-677b-40d7-a802-929455984b64\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"ef0a857c-ebe9-4b78-a7e1-66a7d52fc128\",\"fieldUid\":\"687c0549-de46-424f-8727-7b5546c11752\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"fdf250fd-6a3e-480a-978a-f512a681cdfb\",\"fieldUid\":\"543fd936-b820-4ae9-93f7-e0577abe2fab\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"bb397163-1565-4d82-bdb0-bc918af8e20a\",\"fieldUid\":\"24041ec2-da5f-4ff4-82b3-6aba2005647a\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"4c0397a3-0265-4ad3-ac56-f82ee17d142a\",\"fieldUid\":\"42f55576-0f06-49ff-bc18-627c979de526\"}]',2,'2022-05-17 23:19:20','2022-05-17 23:19:20','b2acd4eb-5722-46a8-80b1-7c32629fff25'),(831,56,'Content','[]','[{\"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\":\"b7c7e07b-82f4-48bc-9fe5-ffc4b455bcb7\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"6cfc8582-3549-4d76-9dc9-2c9f81ac92ef\",\"fieldUid\":\"a5a982f3-8c85-4f6a-bc53-40ca9d61afbf\"}]',1,'2022-05-17 23:19:22','2022-05-17 23:19:22','2ff58842-9c0c-400a-82fe-2b8ce66fd116'),(833,60,'Content','[]','[{\"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\":\"1ebf8467-0979-4e0b-9598-11ce0ce60c29\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"69232461-74d6-47ba-a80c-82786fad54d3\",\"fieldUid\":\"f4eb2f46-8e77-46c1-97fe-2bdcdeb4c582\"}]',1,'2022-05-17 23:19:24','2022-05-17 23:19:24','5838cedc-57f0-4fbc-9a54-0cfa2b70dc00'),(835,4,'Content','[]','[{\"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\":\"6eb5bd1e-288f-4006-88fb-0f069ca09101\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\Heading\",\"heading\":\"Part A\",\"uid\":\"d0ed5d81-4bd9-4c72-9d32-ccbf3d134f50\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"60b3b193-f63f-4cd7-887f-766719ceb373\",\"fieldUid\":\"a52e3a14-549c-4d8d-ac07-344f3ef99152\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"871cb6eb-c47b-459e-ba85-f033c17105c8\",\"fieldUid\":\"22448697-4341-4b80-bda7-9fc403a0f86a\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"19b87859-0d4d-4b95-8fc0-a26bdc5db385\",\"fieldUid\":\"c4eb0e22-1cb4-48bf-93e9-2bc22719bd40\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"73709845-53f9-474c-b8ca-5130d4a1da08\",\"fieldUid\":\"093b401e-620c-46a6-9868-44c5c118b7fc\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"baa40a1b-93f5-494b-85f6-220b8bac9b07\",\"fieldUid\":\"cafab2ca-5789-4f06-ad5d-6078f78fb5d9\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"b5b84dcf-710f-47fe-959a-9d5533261f88\",\"fieldUid\":\"d6df2896-4499-43ee-97c1-0ff16e3072d0\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\Heading\",\"heading\":\"Part B\",\"uid\":\"8c1e2254-5d82-40b9-9011-000d8e6b2728\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"efff6962-0b72-4f08-b9d4-d0cb6859cdcd\",\"fieldUid\":\"58300ceb-06bc-4d88-bb83-e9e90cbda3cd\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"f0843872-7b5b-4b44-a5fe-6eb873aeab3f\",\"fieldUid\":\"184a3cee-6b8f-43b2-a1c2-15e0920bc40a\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"c466aeea-1761-4c15-9eb9-023b05c63236\",\"fieldUid\":\"38b64a4b-dfbd-4f5b-a1a7-a5e1d5dc6d5c\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"7a38f508-211d-4cd6-8268-68a3f4236388\",\"fieldUid\":\"4c3b5ed6-52bc-439a-8a01-77b49f19abc9\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"1d0fb73c-2224-4bb2-a244-004dbbbca485\",\"fieldUid\":\"6e255f23-a127-4ba3-aada-80c15787c41c\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"438f3d43-0ce1-4ca1-9092-7d5d2f3c9795\",\"fieldUid\":\"c4967892-52de-4701-96d6-2c2a06e6d47c\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"306b7e9f-8770-471d-9622-9d49a40c48e9\",\"fieldUid\":\"2b13a963-ee44-4811-817d-abb9e3a5833b\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"24287565-ae40-44dd-9f13-e16e0e9920f9\",\"fieldUid\":\"d545dd13-412a-49ee-9c3e-e4f359054850\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"e73ece0e-9cc5-4de9-bfc7-46fb3c2df272\",\"fieldUid\":\"e752f760-0ca6-48e7-8efc-0453ac18ced7\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"3ee55ea5-f059-4767-8226-34ea07343f4f\",\"fieldUid\":\"f1e93f83-edeb-49fc-be13-10e88d0e52e1\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"c18179ff-4f17-46de-a5c1-d911c7204000\",\"fieldUid\":\"31c9c26c-caa5-4dbe-8878-310224cc8712\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"a209e61b-c331-459b-9ba2-09d1b945f527\",\"fieldUid\":\"40e3cd37-08cd-446a-9032-b0b3087d2fb9\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"4dcff386-b4f9-47a5-b122-c4d9c0b60215\",\"fieldUid\":\"d18bb60b-1374-45fc-9f7a-8836cba975c2\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"8647ddb4-ea93-48b3-aeb7-aae7ed29a039\",\"fieldUid\":\"166692c6-ff38-4a39-9b37-b3b39ccbb191\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\Heading\",\"heading\":\"Part C\",\"uid\":\"fbee1354-6709-49b1-b13e-c6069feefade\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"0f7596bb-72f1-48db-bd7c-f4da3cdc5708\",\"fieldUid\":\"a1f430b2-c028-4c12-9f6b-e150f70c1180\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"e621019a-482b-49bc-b6e1-eb0941e39e08\",\"fieldUid\":\"0e8e2297-d68a-468e-b544-879164ce3c80\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"16cf1c03-25f2-427a-9dee-55aef7cd9ae0\",\"fieldUid\":\"13610740-a1b4-444d-9e45-5610874d09cf\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\Heading\",\"heading\":\"Part D\",\"uid\":\"155a4fe5-5027-4dc9-ab3b-092e9a8473d3\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"b8d68716-474d-4f34-a3bf-497d09632e39\",\"fieldUid\":\"d7979c8a-d87b-409d-8c05-fa64e62b86b1\"}]',1,'2022-05-17 23:19:25','2022-05-17 23:19:25','05d86234-b74e-4e97-b67d-11a78be96605'),(839,10,'Content','[]','[{\"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\":\"55961bc7-fca4-4793-93c3-a9c94b2d2b7b\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"4ef8325b-e8ed-4b7b-ba12-93f1605ae4d7\",\"fieldUid\":\"befeea26-c25e-40e1-83f3-10a26b46af54\"}]',1,'2022-05-17 23:19:25','2022-05-17 23:19:25','0d27ada4-2245-46a1-bbcf-a9751ebda04e'),(997,69,'Content','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"e761755d-3ee2-4e9c-81d5-b1170df46ae9\",\"fieldUid\":\"a2b9e04a-db16-44c3-95a7-6a037f194622\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"7db7427a-cea6-41b8-ae69-ff9b7e138d0f\",\"fieldUid\":\"a2199a45-7aa1-467d-a19c-76a79bb943a2\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":50,\"uid\":\"20869919-55e9-4be2-8ca4-06f68f2392fd\",\"fieldUid\":\"4ecf14fc-9c8a-4f62-b669-927408ddea33\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":50,\"uid\":\"222a7090-97fe-4459-bb20-483b62a31e19\",\"fieldUid\":\"45f624eb-f394-4fb8-a0f1-1bf9e8ebcc1e\"}]',1,'2022-06-05 23:24:03','2022-06-05 23:24:03','d755c55b-3340-44b3-b4df-4bc56258b45a'),(1000,68,'Content','[]','[{\"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\":\"5add5b7d-6be5-4657-ab62-ddbf75e38444\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"b015293c-2953-4188-8a74-8849ec97d3c4\",\"fieldUid\":\"a5a982f3-8c85-4f6a-bc53-40ca9d61afbf\"}]',1,'2022-06-05 23:24:04','2022-06-05 23:24:04','1217954c-e2d0-45b6-ace8-d62b7c7c302c'),(1001,68,'SEO','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"5aee1241-9687-4281-810c-8f2a08aa9e5a\",\"fieldUid\":\"d4f97e13-677b-40d7-a802-929455984b64\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"65eda6a6-eeaa-4dc2-bf39-73ff956bc98e\",\"fieldUid\":\"687c0549-de46-424f-8727-7b5546c11752\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"2326774e-445b-4189-9627-9eae4e36d9a1\",\"fieldUid\":\"543fd936-b820-4ae9-93f7-e0577abe2fab\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"bf045135-9e68-46b8-aeb8-eabf8b514f9f\",\"fieldUid\":\"24041ec2-da5f-4ff4-82b3-6aba2005647a\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"66bad9f0-e426-4c0f-9c84-2e7616a73926\",\"fieldUid\":\"42f55576-0f06-49ff-bc18-627c979de526\"}]',2,'2022-06-05 23:24:04','2022-06-05 23:24:04','7cf570a1-7c32-4840-8515-f729df899106'),(1023,38,'CONTENT','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":50,\"uid\":\"bd8f8a30-4df6-4eca-a77b-1c89b8013751\",\"fieldUid\":\"92c09e52-b844-43db-a6b2-fd92e20638b7\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":50,\"uid\":\"796c653d-b744-417a-befa-0a0dd58ea492\",\"fieldUid\":\"53022aef-ff21-4e7f-970a-cb210544fb32\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"4005e54b-d2eb-4034-8ec9-2b1454fb347f\",\"fieldUid\":\"da858be0-dc01-44ea-9fc5-f9c6848cc9af\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"a40df637-319b-46d1-9085-2d23844fb9b0\",\"fieldUid\":\"2718313e-9a95-48a0-b8f2-d08ccd8f2323\"}]',1,'2022-06-22 03:02:01','2022-06-22 03:02:01','960037f1-53d7-4d93-8fe1-8f7cac0fab0e'),(1024,38,'METADATA','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"7326f992-2435-4f32-b304-a5a83ffec845\",\"fieldUid\":\"c9806c08-39e9-4277-ba95-708404c27b4c\"}]',2,'2022-06-22 03:02:01','2022-06-22 03:02:01','3787aef1-2764-4db0-bf77-e0388557f8cc'),(1025,39,'METADATA','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"660e536a-3b1f-453d-94b0-bef94094990f\",\"fieldUid\":\"c9806c08-39e9-4277-ba95-708404c27b4c\"}]',1,'2022-06-22 03:02:01','2022-06-22 03:02:01','a83d977c-818d-4e5a-a984-30e743493485'),(1026,39,'CONTENT','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"1d0aa5b1-9982-42da-8584-b7916952ba7a\",\"fieldUid\":\"ac330e35-980d-4c71-9fd8-4c4edd58140b\"}]',2,'2022-06-22 03:02:01','2022-06-22 03:02:01','fe74f651-35b6-4615-bc75-39f27c084123'),(1027,42,'METADATA','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"12461671-fa05-4363-a92b-603a12a50aa6\",\"fieldUid\":\"c9806c08-39e9-4277-ba95-708404c27b4c\"}]',1,'2022-06-22 03:02:01','2022-06-22 03:02:01','76b3409e-ff7a-48a2-b65d-0192d0ac0022'),(1028,42,'CONTENT','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"f85b2904-0c18-420d-9d78-9beb068063ed\",\"fieldUid\":\"747348e3-38bd-461d-b1ff-416c6764f72e\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"c165bb0f-0dd7-48f2-a146-76ba27a6eab6\",\"fieldUid\":\"b2e01efa-50e7-49b4-8c2c-33ec9581cb1b\"}]',2,'2022-06-22 03:02:01','2022-06-22 03:02:01','ebedcc73-9303-469f-916c-7018d638c8bd'),(1029,43,'CONTENT','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"0defd852-19f0-41e4-b1b2-02207878d0c6\",\"fieldUid\":\"aa219c56-4619-45c0-ace9-c07d18e43d2f\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"41df6e67-8837-4115-9e65-7841f595348d\",\"fieldUid\":\"53022aef-ff21-4e7f-970a-cb210544fb32\"}]',1,'2022-06-22 03:02:01','2022-06-22 03:02:01','3c545868-c5a0-4663-a367-3ee771c1beff'),(1030,43,'METADATA','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"acd77784-24db-49dc-8b54-8751642aabfb\",\"fieldUid\":\"c9806c08-39e9-4277-ba95-708404c27b4c\"}]',2,'2022-06-22 03:02:01','2022-06-22 03:02:01','671b6b72-98a2-4279-8f67-3834717a3621'),(1031,47,'CONTENT','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"09dfbb09-6f4a-419d-9958-2f6317359057\",\"fieldUid\":\"747348e3-38bd-461d-b1ff-416c6764f72e\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"f15e7fbb-e9df-49ee-b05e-0a71b99c9f00\",\"fieldUid\":\"e6a934e5-14f7-4866-82bb-e3c114038533\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":50,\"uid\":\"f7d93f83-5082-46ea-b2ad-ad38764ce473\",\"fieldUid\":\"92c09e52-b844-43db-a6b2-fd92e20638b7\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":25,\"uid\":\"62f55f02-1c7e-4709-91d2-e49d5bbd8fa2\",\"fieldUid\":\"53022aef-ff21-4e7f-970a-cb210544fb32\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":25,\"uid\":\"3588a012-60f9-482d-b9bf-4c654fc536f2\",\"fieldUid\":\"fe3d3e20-0b76-438f-af52-0b90f4cf6099\"}]',1,'2022-06-22 03:02:01','2022-06-22 03:02:01','36da9804-42f4-401e-a80e-4e6fe5b3f593'),(1032,49,'CONTENT','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":50,\"uid\":\"b03cc690-016c-48d8-8058-77f925c5846a\",\"fieldUid\":\"53022aef-ff21-4e7f-970a-cb210544fb32\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":50,\"uid\":\"12849553-6ed0-4869-ba00-c2ee16ecd39a\",\"fieldUid\":\"92c09e52-b844-43db-a6b2-fd92e20638b7\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"685f87a1-b8bd-4a95-9a1b-be5e4500af14\",\"fieldUid\":\"e6a934e5-14f7-4866-82bb-e3c114038533\"}]',1,'2022-06-22 03:02:01','2022-06-22 03:02:01','674a2b8b-13e0-4907-9c4a-e0fa252d5bf7'),(1033,49,'METADATA','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"5169c9b4-0f8c-4c82-b2f8-79f0ceae3366\",\"fieldUid\":\"c9806c08-39e9-4277-ba95-708404c27b4c\"}]',2,'2022-06-22 03:02:01','2022-06-22 03:02:01','37fa2be2-782f-493b-ab8a-e2c580f00d20'),(1034,44,'CONTENT','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"5158a62d-11b7-41f7-8982-90fb4e2237bb\",\"fieldUid\":\"b2e01efa-50e7-49b4-8c2c-33ec9581cb1b\"}]',1,'2022-06-22 03:02:01','2022-06-22 03:02:01','352c432b-ec78-435f-94a0-65b85acc64f0'),(1035,46,'CONTENT','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"75b70dbc-e054-4cb0-9ebf-6fbe4c03c1e4\",\"fieldUid\":\"39b06f94-8ee0-4222-8a17-b527852aec1b\"}]',1,'2022-06-22 03:02:01','2022-06-22 03:02:01','131507f7-43f7-41a4-aa68-ffb5872cd249'),(1036,53,'CONTENT','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":50,\"uid\":\"a8c541a4-1dbe-4739-a5b5-2dc0e0ae44b5\",\"fieldUid\":\"b2e01efa-50e7-49b4-8c2c-33ec9581cb1b\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":50,\"uid\":\"a869e072-817a-4904-826f-22e67a4f9b79\",\"fieldUid\":\"cf34f699-cd72-4f21-8dc0-13f2a6d993ef\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"cbe8afec-4712-4d23-8bd4-861bae0a7cb5\",\"fieldUid\":\"da858be0-dc01-44ea-9fc5-f9c6848cc9af\"}]',1,'2022-06-22 03:02:01','2022-06-22 03:02:01','1a25437f-8981-4c4d-bc8a-0a7884597e7b'),(1037,55,'CONTENT','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"dccaa976-cd06-4657-8d16-59805c50e452\",\"fieldUid\":\"67b36868-9b9f-4ac0-b5d2-6585f5876af2\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"d438a09d-c82a-4a4d-9780-54ec03487399\",\"fieldUid\":\"53022aef-ff21-4e7f-970a-cb210544fb32\"}]',1,'2022-06-22 03:02:01','2022-06-22 03:02:01','1c998b8d-7958-40f8-bcbd-99006934f28c'),(1038,55,'METADATA','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"8865a755-f236-4f2a-a8e9-709e36a4a664\",\"fieldUid\":\"c9806c08-39e9-4277-ba95-708404c27b4c\"}]',2,'2022-06-22 03:02:01','2022-06-22 03:02:01','f3d135a3-ffac-49b2-8239-33234d9d6e19'),(1039,65,'CONTENT','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"cd43546e-aa2e-4e9b-9014-381c97b38878\",\"fieldUid\":\"b2e01efa-50e7-49b4-8c2c-33ec9581cb1b\"}]',1,'2022-06-22 03:02:01','2022-06-22 03:02:01','15731807-e2e5-4084-b271-5654beb01f89'),(1040,66,'CONTENT','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"f92a35f8-e430-4610-b08e-9e779fc40e28\",\"fieldUid\":\"13c5a484-996f-4429-a612-5b251409ca6f\"}]',1,'2022-06-22 03:02:01','2022-06-22 03:02:01','bba08531-fc60-4299-a42d-18d4e4f5c552'),(1041,66,'METADATA','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"82883027-96e3-4c44-ac8c-99c786f69954\",\"fieldUid\":\"c9806c08-39e9-4277-ba95-708404c27b4c\"}]',2,'2022-06-22 03:02:01','2022-06-22 03:02:01','3eeaca9e-9a96-4118-ae62-fcc4497cfafe'),(1042,67,'CONTENT','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"2e953b06-eedb-4c9d-ba1e-70a991c5527f\",\"fieldUid\":\"a172791e-53b7-44eb-b87b-ab304cd1588f\"}]',1,'2022-06-22 03:02:01','2022-06-22 03:02:01','9f67686c-99dd-4a2b-afe8-d50826464aaa'),(1043,67,'METADATA','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"a0c88134-9454-48a2-8a72-7e7755c4b2aa\",\"fieldUid\":\"c9806c08-39e9-4277-ba95-708404c27b4c\"}]',2,'2022-06-22 03:02:01','2022-06-22 03:02:01','c559034d-47a3-4e44-81f3-a365e32ae0f3'),(1045,21,'Content','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"0a8be32a-da27-4c00-928a-88cda5fd268d\",\"fieldUid\":\"9ee799af-6ab1-42fb-94b3-a70acd370f9b\"}]',1,'2022-06-22 03:02:01','2022-06-22 03:02:01','ea44bac6-a0a7-445a-953b-a7a60f1ff7d6'),(1047,41,'Content','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"af9df922-bb06-48c9-8fa6-bb0bf3efcce6\",\"fieldUid\":\"38bbf5f7-e29c-40bd-b218-155ad667ea9a\"}]',1,'2022-06-22 03:02:01','2022-06-22 03:02:01','c82c9e53-5bc6-4b7d-a836-942d38418248'),(1049,32,'Content','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"61d64296-468e-4057-9bd3-b56f39766e3d\",\"fieldUid\":\"27dedcaa-afc3-459d-83c3-18e8f90465d8\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"d878387e-541f-421b-98a6-31e5c7fd33de\",\"fieldUid\":\"3989c2aa-8903-4a90-be5a-7ce7a8bd8113\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"7cdd7480-6059-4b03-93ab-11e8bd8872d7\",\"fieldUid\":\"8fbcbc2d-119a-412d-97e8-fec9e88d9418\"}]',1,'2022-06-22 03:02:02','2022-06-22 03:02:02','428a231e-7e69-4edf-8727-b640d5d0833d'),(1051,25,'Content','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"de970071-6cfa-46c4-a28b-546aeb960b45\",\"fieldUid\":\"bef58c8d-9ae2-4638-b1b8-52a74de9326d\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"a8256a8f-20ba-46a4-a7a7-5df7f8a6ab51\",\"fieldUid\":\"197aad2d-e3a7-4594-82e2-5f317df1786e\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"76df1363-ece3-48da-8180-effebf12664e\",\"fieldUid\":\"5c172524-13c3-43d8-a0c0-45c25cf3fede\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"f905771b-d510-427c-8e07-09f449407125\",\"fieldUid\":\"ef1558a2-4bac-4ea9-8c1e-3d4a432d72db\"}]',1,'2022-06-22 03:02:02','2022-06-22 03:02:02','c876d418-f069-49e4-ba46-87ba1f16b69a'),(1053,30,'Content','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"3d98d4bb-9b71-4a6f-8a22-7eca9203a6ac\",\"fieldUid\":\"179540f3-7f8c-4c10-bb48-99fead63ee70\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"e15d66e1-f95f-4f11-8333-7bd0275f7d50\",\"fieldUid\":\"5085f403-52b3-4b38-b10c-4bff77776af1\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"73ae725f-3e18-4e89-8b2f-8bed18dba4f5\",\"fieldUid\":\"23152e7a-37c2-41e9-9df3-9892c2a4a2f6\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"12f2a1c4-6573-4e27-a1f2-cd9b4149312c\",\"fieldUid\":\"40ca8672-9409-48d1-b0f8-0a728dcd8497\"}]',1,'2022-06-22 03:02:02','2022-06-22 03:02:02','e5c335d1-b32f-4db5-9867-fd09a3f0d7b3'),(1055,27,'Content','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"be7e61b7-7337-4bf9-8c3d-ed5bcd228cf8\",\"fieldUid\":\"770f3d77-08c1-4282-b12a-3c697292efa9\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"8977dc88-5577-4b65-ab50-2b7130a2d241\",\"fieldUid\":\"220d8796-98ec-428f-aa21-9f7faca714c1\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"6734b8bd-cb65-44bb-8737-c9565d0663b5\",\"fieldUid\":\"2dd50c30-6391-406d-b248-13583fb7cf85\"}]',1,'2022-06-22 03:02:02','2022-06-22 03:02:02','1d890d0b-d87d-4494-857d-995de3505419'),(1057,37,'Content','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"c06ee9af-d11f-4e99-b822-07ca2fb66cec\",\"fieldUid\":\"8adf4bb2-35da-47dc-b397-78ad436fafaf\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"385502cf-1a39-46e5-85c8-e9ddf5e6f706\",\"fieldUid\":\"5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"6d76f3f7-c09d-4b1b-8874-d2e53562cd1c\",\"fieldUid\":\"85f5f339-ed01-43a1-94b9-771aee87b786\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"218d6fd2-29e2-4393-87b3-42746f08339d\",\"fieldUid\":\"69757833-f906-4261-bc37-340e59416a60\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"211a8c3c-ff98-43c6-b829-b97e2bd0da6e\",\"fieldUid\":\"82986907-d153-492e-b87b-4c7898ad9a45\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"06ad6ddf-90ed-406d-ab94-1a15d38ffbeb\",\"fieldUid\":\"f78040ea-09e5-4ebd-b1e2-e08df257a5da\"}]',1,'2022-06-22 03:02:03','2022-06-22 03:02:03','e093adb5-dc38-45de-9847-d2574df595a8'),(1059,8,'Content','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"dd428c2e-8617-4f32-af18-133eb09a2947\",\"fieldUid\":\"6c8a7226-ca63-4b58-afac-82141c809448\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"4bf548f7-2e66-480c-a9a2-7cb916c7c3fa\",\"fieldUid\":\"370b7c67-675e-4aa3-b3a6-5d1700429c35\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"a55c0b99-9954-412d-8f51-5141cd2a6096\",\"fieldUid\":\"8df2b5cb-f0f5-47a2-b2b1-c77cbf1b2979\"}]',1,'2022-06-22 03:02:03','2022-06-22 03:02:03','6159bf87-a863-4dd9-8809-ce05b8a6917b'),(1061,35,'Content','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"9e38055e-52a5-4886-ae80-e63697d74a37\",\"fieldUid\":\"c6376f0f-5d56-4141-9432-c72576928262\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"133545d1-14b4-4c95-abdb-294a950b37f4\",\"fieldUid\":\"3628cf27-3ad7-4e27-9726-9a2cd25bef29\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"88de3b43-f582-418f-888d-d5ca243f09f0\",\"fieldUid\":\"f88d9485-eb10-492f-bce3-4fa0d28804b3\"}]',1,'2022-06-22 03:02:03','2022-06-22 03:02:03','ca45210a-e860-44bc-8522-ec570b2da5b3'),(1063,7,'Content','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"556164d6-4577-4d97-863b-4362dc4bd8f2\",\"fieldUid\":\"5e95989b-6f85-4379-aa15-ef9aa773b105\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"fbf7836a-be6d-4380-9d85-91b5503487d9\",\"fieldUid\":\"ab0f389a-49ce-49a1-8ac5-e9b5a6d5f550\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"74f9af28-799f-47c4-8446-88949736d241\",\"fieldUid\":\"dd7b1a59-c33e-465d-aa9a-46634169f8d6\"}]',1,'2022-06-22 03:02:03','2022-06-22 03:02:03','59f594b3-0732-4f28-b978-74b990c9e452'),(1065,36,'Content','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"86ea7f24-4890-4adc-8495-c128a6d0e9fa\",\"fieldUid\":\"674ed020-679c-47d4-b702-aa9f9d0810dd\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":50,\"uid\":\"2dcf06b9-743b-42fa-a901-99ced285321b\",\"fieldUid\":\"668a3788-1102-4bcf-9687-ca83a0a95500\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":50,\"uid\":\"f79811e9-0918-4904-9d42-9d6660e8e7e3\",\"fieldUid\":\"dbbe7fd3-520b-4886-b77f-e0a7904f9c8d\"}]',1,'2022-06-22 03:02:03','2022-06-22 03:02:03','db15f528-7fa4-45c7-95c7-28714f4f8e1e'),(1067,19,'Content','[]','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"c585d7d5-8bde-4da6-8df0-cb5a9ac5fb4b\",\"fieldUid\":\"3c4c718b-a839-4321-9287-6fa138fa90e9\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"5d047641-0308-4a4a-a9be-83f01f9cff57\",\"fieldUid\":\"527a67b5-8e0e-46fc-8f16-537cebae9312\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"b9d77d16-d6d3-499a-b5e4-75c097cd3610\",\"fieldUid\":\"d1b968be-6a38-4c3d-bc2e-67168feefab3\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"7be8aa63-da34-44b4-accd-ac9d21ff71ed\",\"fieldUid\":\"f2facc33-1ac4-4d0e-b0ea-3995063e5892\"}]',1,'2022-06-22 03:02:03','2022-06-22 03:02:03','0992fb51-ed93-4c3b-835e-b32f9682b3b0'),(1069,70,'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\":\"3f2a8f95-dbf0-46aa-bd49-e99794d16c0b\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"e20411fa-c304-48ec-9f8b-9d34466491da\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"a5a982f3-8c85-4f6a-bc53-40ca9d61afbf\"}]',1,'2023-01-10 00:13:07','2023-01-10 00:13:07','417b5119-a59a-49a9-bc19-c4817f238337'),(1070,62,'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\":\"19e09451-f040-4cc0-a31f-ee4f500aa3cb\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"7763acbe-bb3f-45f1-b4c3-d24547dccfb2\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"872244dc-f181-4b82-8df8-20a59d62654c\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"a6ef0b84-4f7d-4124-b5f4-ca79c3b1960f\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"79eb82a7-865b-4011-9a91-56b285226a2d\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"40874984-2cbb-49ff-82ef-dd93506c25e2\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"a5a982f3-8c85-4f6a-bc53-40ca9d61afbf\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\HorizontalRule\",\"uid\":\"7f00ce49-5128-4ea5-bd41-5ad7598b116c\",\"userCondition\":null,\"elementCondition\":null},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"84ffb62b-802b-4304-a335-23f391e51725\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"e7ac7afe-110f-424b-8df7-cf443f223406\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"a5a2c2dd-d95a-43ce-b404-1875e381d6de\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"862d1737-5597-46a1-b258-ff7ce4042cd3\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"c473c061-be87-4d51-835e-e927bf3f9c3e\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"3c72aff9-f829-44b4-9d47-b4c571d6607e\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"f1958c10-d282-4299-a37f-5b01144d3cc7\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"0b66a65f-3e3d-40b8-b271-c462745f3c3f\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"b8856e98-02bb-437a-b45b-82f5c542663d\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"6566ff95-a04d-47e8-b107-3d2222680acf\"}]',1,'2023-03-01 02:12:09','2023-03-01 02:12:09','1e4686ee-3714-4a7c-a876-b4bdb70e4dd9'),(1071,62,'SEO','{\"userCondition\":null,\"elementCondition\":null}','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"004603a7-5e3a-4d94-b264-e9057e463295\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"d4f97e13-677b-40d7-a802-929455984b64\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"ed640a4f-9533-43e1-b2c9-346b2d9c2862\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"687c0549-de46-424f-8727-7b5546c11752\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"46c8d853-5b5f-48ad-aeb8-7e92d5afc124\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"543fd936-b820-4ae9-93f7-e0577abe2fab\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"1efaf851-411f-48b0-a037-946386ba6921\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"24041ec2-da5f-4ff4-82b3-6aba2005647a\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"cd9f717f-092c-4911-8b78-217b75854da2\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"42f55576-0f06-49ff-bc18-627c979de526\"}]',2,'2023-03-01 02:12:09','2023-03-01 02:12:09','2f7ecb02-22e0-46aa-9087-5fa98482fdbb'),(1073,5,'User fields','{\"userCondition\":null,\"elementCondition\":null}','[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"290738d2-df66-4ba3-ae5a-dbb16ceefe57\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"241ab405-efc4-472d-a5a8-f23edb2ad1da\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"9aebbd09-5e96-49b4-ba66-2ffab8ee1d66\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"819e9bb3-711d-4ca1-aa03-f00b24f3b68a\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"b9fa7052-3ed3-4922-b8e4-ea6396e5328a\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"dee3103c-72a1-4431-9401-9980ed81d1cd\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"a8c3868b-5011-4b19-becc-3c7383a17e0c\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"1dfaede0-905a-4132-a18f-104b40af2718\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"f94172f8-7a12-4f86-a95d-098b27eb3b22\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"626f21db-f3f8-49c9-a099-c2416899ef4c\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"01c44199-6134-46ea-be73-c86c14d970c8\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"b7459780-8fb3-442d-a23b-15dd5d93cdeb\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"2affa06c-5f85-43fc-8a8c-4c4850a5cc3d\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"aa7cd983-d717-4e90-bce8-4fafcb0c37aa\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"label\":null,\"instructions\":null,\"tip\":null,\"warning\":null,\"required\":false,\"width\":100,\"uid\":\"8cabc050-546b-4322-9714-f0e9a933eec0\",\"userCondition\":null,\"elementCondition\":null,\"fieldUid\":\"40ae3e60-3464-41d0-bb64-32671fc7f5e9\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\HorizontalRule\",\"uid\":\"289347e5-b348-447b-8042-7e6fccfa1ad7\",\"userCondition\":null,\"elementCondition\":null}]',1,'2023-03-06 01:35:27','2023-03-06 01:35:27','5e3dd4ac-b623-456e-af23-bb89d4ce8d2e');
/*!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 (8,3,'Total income','totalTradingIncome','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-04-08 01:27:25','2021-07-20 23:27:21','a28227a7-60b7-44a9-8bb3-cd123f79875e'),(9,3,'Total other income','totalOtherIncome','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-04-08 01:27:36','2021-04-08 02:54:39','8d0c05a9-7304-4d7d-8254-106c8e855268'),(10,3,'Total cost of sales','totalCostOfSales','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-04-08 01:27:47','2021-04-08 02:54:23','f68e0fd0-2ad7-4416-b9d1-ae48f49e33d8'),(11,3,'Total operating expenses','totalOperatingExpenses','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-04-08 01:28:00','2021-04-08 02:54:30','e68f08fa-4e2a-4590-8cc5-07f7fa015bfb'),(12,3,'Miscellaneous income','miscellaneousIncome','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-04-08 03:37:43','2021-04-08 03:37:43','60ebe24e-8f1d-4a91-8758-cb4c9260c9ea'),(13,3,'Transfer funds from NWO','transferFundsFromNwo','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-04-08 03:37:57','2021-04-08 03:37:57','7be6fff5-de42-48e7-8e63-20dcdf66967e'),(14,3,'Interest income','interestIncome','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-04-08 03:38:21','2021-04-08 03:38:21','0900cdc7-fd64-4e21-add2-512c734998de'),(15,3,'Ryder St - Rental income','ryderStRentalIncome','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-04-08 03:38:29','2021-04-08 03:38:29','8901092b-9bbb-4611-8248-b4256a21515b'),(16,3,'Client - media service fees (commission)','clientMediaServiceFeesCommission','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-04-08 03:38:56','2021-04-08 03:38:56','1691aec8-4743-44f9-a98b-885fa512cd5d'),(17,3,'Management fee','managementFee','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-04-08 03:39:06','2021-04-08 03:39:06','35aed318-770b-43fa-962d-b399cb414533'),(18,3,'ATO Cash Flow Boost','atoCashFlowBoost','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-04-08 03:39:39','2021-04-08 03:39:39','e6b4c3f6-bdd0-48df-834f-892582227089'),(19,4,'Client Name','clientName','global',NULL,'',1,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-04-16 01:24:03','2021-04-16 01:43:31','b77c813f-b3a9-44ef-b3ba-0536e7b07c31'),(20,4,'Client ID (Workbook)','clientIdWorkbook','global',NULL,'',0,'none',NULL,'craft\\fields\\Number','{\"decimals\":0,\"defaultValue\":null,\"max\":null,\"min\":\"0\",\"prefix\":null,\"previewCurrency\":\"\",\"previewFormat\":\"none\",\"size\":null,\"suffix\":null}','2021-04-16 01:24:42','2021-04-16 01:24:42','ea79d3f5-08a1-4d12-a91d-4ada485b36ac'),(21,4,'Job start date','jobStartDate','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-04-16 01:25:12','2021-04-16 01:25:12','251bd910-0905-4b47-a898-34ed6e7d587a'),(22,4,'Job end date','jobEndDate','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-04-16 01:25:21','2021-04-16 01:25:21','e0bfd99a-993b-47d0-963d-ef7c179942bc'),(23,4,'Department','department','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-04-16 01:25:40','2021-04-16 01:25:40','259b13de-40f8-49c1-8e5f-0fedf2ddefe3'),(24,4,'Job status id','jobStatusId','global',NULL,'',1,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-04-16 01:25:51','2021-10-01 06:19:21','184f942b-fb9d-48cd-baaa-612f5e9a18c0'),(25,5,'Quote status','quoteStatus','global',NULL,'',1,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-04-16 05:21:53','2021-08-24 23:22:23','0bbcc717-57ca-4d29-b399-c400de0b3c74'),(26,5,'Quoted amount','quotedAmount','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-04-16 05:22:11','2021-04-16 05:22:11','f665cbb7-c2d1-48a1-a4e7-059b51337b56'),(28,4,'Quotes','quotes','global',NULL,'',0,'site',NULL,'craft\\fields\\Entries','{\"allowSelfRelations\":false,\"limit\":\"\",\"localizeRelations\":false,\"selectionLabel\":\"\",\"showSiteMenu\":true,\"source\":null,\"sources\":[\"section:459600f7-51dd-44b9-8000-48e7b8fbc7af\"],\"targetSiteId\":null,\"validateRelatedElements\":false,\"viewMode\":null}','2021-04-16 05:24:22','2022-05-09 03:30:34','ed801c91-9db1-4e25-8880-7452aec486df'),(29,4,'Job ID (Workbook)','jobIdWorkbook','global',NULL,'',1,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-04-16 05:41:21','2021-04-16 06:32:31','bd8711eb-5703-444d-a375-6c42404136d8'),(30,5,'Job price id','jobPriceId','global',NULL,'',1,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-04-16 06:44:20','2021-09-06 04:14:30','6408d08c-b0b4-4b5b-823f-c0e500745591'),(57,3,'Gross profit','grossProfit','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-04-21 04:19:19','2021-04-21 04:19:19','fcfcedf6-24b6-4050-a9ca-21e4d7b5a8f4'),(58,3,'Net profit','netProfit','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-04-21 04:19:31','2021-04-21 04:19:31','23642e4f-de6f-4254-877c-4007ee2aec3f'),(59,8,'Layout builder','layoutBuilder','global',NULL,'',0,'site',NULL,'craft\\fields\\Matrix','{\"contentTable\":\"{{%matrixcontent_layoutbuilder}}\",\"maxBlocks\":\"\",\"minBlocks\":\"\",\"propagationKeyFormat\":null,\"propagationMethod\":\"all\"}','2021-05-14 06:12:30','2021-07-16 04:26:49','ffe371e5-6f1c-4f7e-8c29-3b53a7b68c9c'),(60,NULL,'Heading','heading','matrixBlockType:1730f29f-dfa8-4229-867a-844a7a23c120',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-05-14 06:12:30','2021-05-14 06:12:30','5e95989b-6f85-4379-aa15-ef9aa773b105'),(61,NULL,'Text','text','matrixBlockType:1730f29f-dfa8-4229-867a-844a7a23c120',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-05-14 06:12:30','2021-05-14 06:12:30','ab0f389a-49ce-49a1-8ac5-e9b5a6d5f550'),(62,NULL,'Heading','heading','matrixBlockType:6bf3dbc1-ec4b-4a10-896f-37727eed41d0',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-05-14 06:12:30','2021-05-14 06:12:30','6c8a7226-ca63-4b58-afac-82141c809448'),(63,NULL,'Text','text','matrixBlockType:6bf3dbc1-ec4b-4a10-896f-37727eed41d0',NULL,'',0,'none',NULL,'craft\\redactor\\Field','{\"availableTransforms\":\"*\",\"availableVolumes\":\"*\",\"cleanupHtml\":true,\"columnType\":\"text\",\"configSelectionMode\":\"choose\",\"defaultTransform\":\"\",\"manualConfig\":\"\",\"purifierConfig\":\"\",\"purifyHtml\":\"1\",\"redactorConfig\":\"\",\"removeEmptyTags\":\"1\",\"removeInlineStyles\":\"1\",\"removeNbsp\":\"1\",\"showHtmlButtonForNonAdmins\":\"\",\"showUnpermittedFiles\":false,\"showUnpermittedVolumes\":false,\"uiMode\":\"enlarged\"}','2021-05-14 06:12:30','2021-05-14 06:16:15','370b7c67-675e-4aa3-b3a6-5d1700429c35'),(64,NULL,'Image','image','matrixBlockType:6c95d4e7-93ce-402c-a1b9-684e2bf42065',NULL,'',0,'site',NULL,'craft\\fields\\Assets','{\"allowSelfRelations\":false,\"allowUploads\":true,\"allowedKinds\":null,\"defaultUploadLocationSource\":\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\",\"defaultUploadLocationSubpath\":\"\",\"limit\":\"1\",\"localizeRelations\":false,\"previewMode\":\"full\",\"restrictFiles\":\"\",\"selectionLabel\":\"Add an image\",\"showSiteMenu\":true,\"showUnpermittedFiles\":false,\"showUnpermittedVolumes\":false,\"singleUploadLocationSource\":\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\",\"singleUploadLocationSubpath\":\"\",\"source\":null,\"sources\":\"*\",\"targetSiteId\":null,\"useSingleFolder\":false,\"validateRelatedElements\":false,\"viewMode\":\"list\"}','2021-05-14 06:19:00','2021-05-14 06:27:49','4c837697-9892-435a-bb35-4cf13274c77e'),(67,8,'Introduction','introduction','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-05-14 06:33:42','2021-05-14 06:33:42','4233d145-1d79-49a5-931e-effdeec7d786'),(68,1,'Optimised image','optimisedImage','global',NULL,'',0,'none',NULL,'nystudio107\\imageoptimize\\fields\\OptimizedImages','{\"displayDominantColorPalette\":\"1\",\"displayLazyLoadPlaceholderImages\":\"1\",\"displayOptimizedImageVariants\":\"1\",\"fieldVolumeSettings\":{\"upload\":\"*\"},\"ignoreFilesOfType\":[\"image/gif\"],\"variants\":[{\"width\":\"1536\",\"useAspectRatio\":\"\",\"aspectRatioX\":\"16\",\"aspectRatioY\":\"9\",\"retinaSizes\":[\"1\",\"2\"],\"quality\":\"82\",\"format\":\"\"},{\"width\":\"1280\",\"useAspectRatio\":\"\",\"aspectRatioX\":\"16\",\"aspectRatioY\":\"9\",\"retinaSizes\":[\"1\",\"2\"],\"quality\":\"82\",\"format\":\"\"},{\"width\":\"1024\",\"useAspectRatio\":\"\",\"aspectRatioX\":\"16\",\"aspectRatioY\":\"9\",\"retinaSizes\":[\"1\",\"2\"],\"quality\":\"82\",\"format\":\"\"},{\"width\":\"768\",\"useAspectRatio\":\"\",\"aspectRatioX\":\"4\",\"aspectRatioY\":\"3\",\"retinaSizes\":[\"1\",\"2\"],\"quality\":\"82\",\"format\":\"\"},{\"width\":\"640\",\"useAspectRatio\":\"\",\"aspectRatioX\":\"4\",\"aspectRatioY\":\"3\",\"retinaSizes\":[\"1\",\"2\"],\"quality\":\"82\",\"format\":\"\"}]}','2021-05-14 06:37:47','2021-11-08 23:44:41','befeea26-c25e-40e1-83f3-10a26b46af54'),(69,1,'Global image','globalImage','global',NULL,'This is the image that is used throughout the website for SEO and other sections of the site',0,'site',NULL,'craft\\fields\\Assets','{\"allowSelfRelations\":false,\"allowUploads\":true,\"allowedKinds\":[\"image\"],\"defaultUploadLocationSource\":\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\",\"defaultUploadLocationSubpath\":\"\",\"limit\":\"1\",\"localizeRelations\":false,\"previewMode\":\"full\",\"restrictFiles\":\"1\",\"selectionLabel\":\"\",\"showSiteMenu\":false,\"showUnpermittedFiles\":false,\"showUnpermittedVolumes\":false,\"singleUploadLocationSource\":\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\",\"singleUploadLocationSubpath\":\"\",\"source\":null,\"sources\":\"*\",\"targetSiteId\":null,\"useSingleFolder\":false,\"validateRelatedElements\":false,\"viewMode\":\"list\"}','2021-05-17 06:57:21','2021-05-17 06:57:21','ac4071b5-babb-4fdc-b080-3c0d83e33548'),(70,1,'Client tags','clientTags','global',NULL,'',0,'site',NULL,'craft\\fields\\Tags','{\"allowLimit\":false,\"allowMultipleSources\":false,\"allowSelfRelations\":false,\"limit\":null,\"localizeRelations\":false,\"selectionLabel\":\"Add a client tag\",\"showSiteMenu\":false,\"source\":\"taggroup:f9f7ea29-3116-431c-b030-ca588113a389\",\"sources\":\"*\",\"targetSiteId\":null,\"validateRelatedElements\":false,\"viewMode\":null}','2021-05-17 06:58:50','2021-05-17 06:58:50','b290a2bb-e7c0-444e-a198-911268436c94'),(72,1,'Rich text','richText','global',NULL,'',0,'none',NULL,'craft\\redactor\\Field','{\"availableTransforms\":\"*\",\"availableVolumes\":\"*\",\"cleanupHtml\":true,\"columnType\":\"text\",\"configSelectionMode\":\"choose\",\"defaultTransform\":\"\",\"manualConfig\":\"\",\"purifierConfig\":\"\",\"purifyHtml\":\"1\",\"redactorConfig\":\"\",\"removeEmptyTags\":\"1\",\"removeInlineStyles\":\"1\",\"removeNbsp\":\"1\",\"showHtmlButtonForNonAdmins\":\"\",\"showUnpermittedFiles\":false,\"showUnpermittedVolumes\":false,\"uiMode\":\"enlarged\"}','2021-05-18 00:26:54','2021-05-18 00:26:54','f4eb2f46-8e77-46c1-97fe-2bdcdeb4c582'),(73,1,'Resource categories','resourceCategories','global',NULL,'',0,'site',NULL,'craft\\fields\\Categories','{\"allowLimit\":false,\"allowMultipleSources\":false,\"allowSelfRelations\":false,\"branchLimit\":\"\",\"limit\":null,\"localizeRelations\":false,\"selectionLabel\":\"\",\"showSiteMenu\":false,\"source\":\"group:1bc6714f-5786-433d-b7dd-879fbc8767b7\",\"sources\":\"*\",\"targetSiteId\":null,\"validateRelatedElements\":false,\"viewMode\":null}','2021-05-18 00:28:38','2021-05-18 00:28:38','4dbe6d3b-ba49-4a8d-a5c3-e83eebb3c207'),(74,8,'Headline','headline','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-05-25 05:48:16','2021-05-25 05:48:16','872244dc-f181-4b82-8df8-20a59d62654c'),(75,7,'Position','position','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-05-25 05:48:17','2021-05-25 05:48:17','dee3103c-72a1-4431-9401-9980ed81d1cd'),(76,7,'Questions','questions','global',NULL,'',0,'site',NULL,'craft\\fields\\Matrix','{\"contentTable\":\"{{%matrixcontent_questions}}\",\"maxBlocks\":\"\",\"minBlocks\":\"\",\"propagationKeyFormat\":null,\"propagationMethod\":\"all\"}','2021-05-25 05:48:17','2021-11-15 01:17:22','aa7cd983-d717-4e90-bce8-4fafcb0c37aa'),(77,8,'Deliverables','deliverables','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-05-25 05:48:18','2021-05-25 05:48:18','623b5dfa-9faa-4bff-8ba4-05003825dff6'),(78,8,'Story','story','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-05-25 05:48:19','2021-05-25 05:48:19','79eb82a7-865b-4011-9a91-56b285226a2d'),(79,8,'Related team members','relatedTeamMembers','global',NULL,'',0,'site',NULL,'craft\\fields\\Users','{\"allowSelfRelations\":false,\"limit\":\"\",\"localizeRelations\":false,\"selectionLabel\":\"Add a team member\",\"showSiteMenu\":true,\"source\":null,\"sources\":[\"admins\",\"group:23b92378-5094-4e5b-9831-346803f914f0\"],\"targetSiteId\":null,\"validateRelatedElements\":false,\"viewMode\":null}','2021-05-25 05:48:19','2021-06-01 07:16:10','ac330e35-980d-4c71-9fd8-4c4edd58140b'),(80,8,'Challenge','challenge','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-05-25 05:48:20','2021-05-25 05:48:20','2b0da6af-b729-4f32-8f99-6eb8dddc7424'),(81,7,'Biography','biography','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-05-25 05:48:21','2021-05-25 05:48:21','b7459780-8fb3-442d-a23b-15dd5d93cdeb'),(82,NULL,'Question','question','matrixBlockType:e4d4d511-380f-4c4a-b432-9296ba9d0bb2',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-05-25 05:48:21','2021-05-25 05:48:21','73446925-4ff5-472c-a475-71d853f84501'),(83,NULL,'Answer','answer','matrixBlockType:e4d4d511-380f-4c4a-b432-9296ba9d0bb2',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-05-25 05:48:21','2021-05-25 05:48:21','a7b7b38d-f6b5-4bee-9df7-164e3e5516d9'),(84,1,'Sector categories','sectorCategories','global',NULL,'',0,'site',NULL,'craft\\fields\\Categories','{\"allowLimit\":false,\"allowMultipleSources\":false,\"allowSelfRelations\":false,\"branchLimit\":\"\",\"limit\":null,\"localizeRelations\":false,\"selectionLabel\":\"Add a sector\",\"showSiteMenu\":false,\"source\":\"group:73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba\",\"sources\":\"*\",\"targetSiteId\":null,\"validateRelatedElements\":false,\"viewMode\":null}','2021-05-25 06:33:44','2021-05-25 06:33:44','5f5f0671-b681-4818-942e-b5b46842906c'),(85,1,'Service categories','serviceCategories','global',NULL,'',0,'site',NULL,'craft\\fields\\Categories','{\"allowLimit\":false,\"allowMultipleSources\":false,\"allowSelfRelations\":false,\"branchLimit\":\"\",\"limit\":null,\"localizeRelations\":false,\"selectionLabel\":\"\",\"showSiteMenu\":false,\"source\":\"group:cfd21061-ac1a-4fa4-adba-02a314e45cb2\",\"sources\":\"*\",\"targetSiteId\":null,\"validateRelatedElements\":false,\"viewMode\":null}','2021-05-25 06:34:28','2021-05-25 06:34:28','5df89179-62c7-4128-ba15-c49e9690a573'),(86,NULL,'Image','image','matrixBlockType:3a7a615c-5c19-4d35-bc53-13c7cfa59291',NULL,'',0,'site',NULL,'craft\\fields\\Assets','{\"allowSelfRelations\":false,\"allowUploads\":true,\"allowedKinds\":[\"image\"],\"defaultUploadLocationSource\":\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\",\"defaultUploadLocationSubpath\":\"\",\"limit\":\"1\",\"localizeRelations\":false,\"previewMode\":\"full\",\"restrictFiles\":\"1\",\"selectionLabel\":\"Add an image\",\"showSiteMenu\":true,\"showUnpermittedFiles\":false,\"showUnpermittedVolumes\":false,\"singleUploadLocationSource\":\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\",\"singleUploadLocationSubpath\":\"\",\"source\":null,\"sources\":\"*\",\"targetSiteId\":null,\"useSingleFolder\":false,\"validateRelatedElements\":false,\"viewMode\":\"large\"}','2021-06-03 05:26:28','2021-06-09 23:37:45','3c4c718b-a839-4321-9287-6fa138fa90e9'),(87,NULL,'Heading','heading','matrixBlockType:3a7a615c-5c19-4d35-bc53-13c7cfa59291',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-03 05:26:28','2021-06-03 05:26:28','527a67b5-8e0e-46fc-8f16-537cebae9312'),(88,NULL,'Text','text','matrixBlockType:3a7a615c-5c19-4d35-bc53-13c7cfa59291',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-03 05:26:29','2021-06-03 05:26:29','d1b968be-6a38-4c3d-bc2e-67168feefab3'),(89,NULL,'Image alignment','imageAlignment','matrixBlockType:3a7a615c-5c19-4d35-bc53-13c7cfa59291',NULL,'',0,'none',NULL,'craft\\fields\\Dropdown','{\"optgroups\":true,\"options\":[{\"label\":\"Left\",\"value\":\"left\",\"default\":\"\"},{\"label\":\"Right\",\"value\":\"right\",\"default\":\"\"}]}','2021-06-03 05:26:29','2021-06-03 05:26:29','f2facc33-1ac4-4d0e-b0ea-3995063e5892'),(90,8,'Deliverable tags','deliverableTags','global',NULL,'',0,'site',NULL,'craft\\fields\\Tags','{\"allowLimit\":false,\"allowMultipleSources\":false,\"allowSelfRelations\":false,\"limit\":null,\"localizeRelations\":false,\"selectionLabel\":\"\",\"showSiteMenu\":false,\"source\":\"taggroup:b4ffdba8-651f-4b6a-930e-be68fb926f28\",\"sources\":\"*\",\"targetSiteId\":null,\"validateRelatedElements\":false,\"viewMode\":null}','2021-06-03 05:54:21','2021-06-03 05:54:21','9256a612-e8fd-49c9-b167-0766caa328ae'),(91,NULL,'Videos','videos','matrixBlockType:7b0e68fa-80c5-4fc1-9936-d797141eb9df',NULL,'',0,'site',NULL,'verbb\\supertable\\fields\\SuperTableField','{\"columns\":{\"9d14a3af-2493-422b-8fc8-60b496e17204\":{\"width\":\"\"},\"9d09a28d-571e-4cd9-a199-2d3342cf815a\":{\"width\":\"\"}},\"contentTable\":\"{{%stc_7_videos_1}}\",\"fieldLayout\":\"row\",\"maxRows\":\"\",\"minRows\":\"\",\"placeholderKey\":null,\"propagationMethod\":\"all\",\"selectionLabel\":\"\",\"staticField\":\"\"}','2021-06-09 23:37:45','2021-07-16 04:26:49','9ee799af-6ab1-42fb-94b3-a70acd370f9b'),(92,NULL,'Video code','videoCode','superTableBlockType:a682c5d8-5ed9-44ea-be04-ed916c59d271',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-09 23:37:45','2021-06-09 23:37:45','9d09a28d-571e-4cd9-a199-2d3342cf815a'),(93,NULL,'Video placeholder image','videoPlaceholderImage','superTableBlockType:a682c5d8-5ed9-44ea-be04-ed916c59d271',NULL,'',0,'site',NULL,'craft\\fields\\Assets','{\"allowSelfRelations\":false,\"allowUploads\":true,\"allowedKinds\":null,\"defaultUploadLocationSource\":\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\",\"defaultUploadLocationSubpath\":\"\",\"limit\":\"1\",\"localizeRelations\":false,\"previewMode\":\"full\",\"restrictFiles\":\"\",\"selectionLabel\":\"Add a placeholder image\",\"showSiteMenu\":true,\"showUnpermittedFiles\":false,\"showUnpermittedVolumes\":false,\"singleUploadLocationSource\":\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\",\"singleUploadLocationSubpath\":\"\",\"source\":null,\"sources\":\"*\",\"targetSiteId\":null,\"useSingleFolder\":false,\"validateRelatedElements\":false,\"viewMode\":\"list\"}','2021-06-09 23:37:45','2021-07-16 04:26:50','9d14a3af-2493-422b-8fc8-60b496e17204'),(94,6,'Purpose â Why does your brand exist?','purposeWhyDoesYourBrandExist','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-10 05:53:42','2022-05-25 01:22:41','a52e3a14-549c-4d8d-ac07-344f3ef99152'),(95,6,'Customers â Who does your brand exist to serve?','customersWhoDoesYourBrandExistToServe','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-10 05:53:52','2022-05-25 01:22:41','22448697-4341-4b80-bda7-9fc403a0f86a'),(96,6,'Values â What do you stand for and how do you operate?','valuesWhatDoYouStandForAndHowDoYouOperate','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-10 05:54:03','2022-05-25 01:22:42','c4eb0e22-1cb4-48bf-93e9-2bc22719bd40'),(97,6,'Culture â How do you and your people think and behave at work?','cultureHowDoYouAndYourPeopleThinkAndBehaveAtWork','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-10 05:54:14','2022-05-25 01:22:41','093b401e-620c-46a6-9868-44c5c118b7fc'),(98,6,'Your people:','yourPeople','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-10 05:54:27','2021-06-10 05:54:34','cafab2ca-5789-4f06-ad5d-6078f78fb5d9'),(99,6,'Your customers:','yourCustomers','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-10 05:54:43','2021-06-10 05:55:04','d6df2896-4499-43ee-97c1-0ff16e3072d0'),(100,6,'Your brand is:','yourBrandIs','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-10 05:54:57','2021-06-10 05:54:57','58300ceb-06bc-4d88-bb83-e9e90cbda3cd'),(101,6,'Your brand stands for:','yourBrandStandsFor','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-10 05:55:20','2021-06-10 05:55:20','184a3cee-6b8f-43b2-a1c2-15e0920bc40a'),(102,6,'Our past:','ourPast','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-10 05:55:28','2021-06-10 05:55:28','38b64a4b-dfbd-4f5b-a1a7-a5e1d5dc6d5c'),(103,6,'Our future:','ourFuture','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-10 05:55:44','2021-06-10 05:55:44','4c3b5ed6-52bc-439a-8a01-77b49f19abc9'),(104,6,'Our current brands and their place in the overall architecture:','ourCurrentBrandsAndTheirPlaceInTheOverallArchitecture','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-10 05:55:55','2021-06-10 05:55:55','6e255f23-a127-4ba3-aada-80c15787c41c'),(105,6,'Voice â What does your brand sound like','voiceWhatDoesYourBrandSoundLike','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-10 05:56:15','2022-05-25 01:22:41','c4967892-52de-4701-96d6-2c2a06e6d47c'),(106,6,'Markets we compete in:','marketsWeCompeteIn','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-10 05:56:41','2021-06-10 05:56:41','2b13a963-ee44-4811-817d-abb9e3a5833b'),(107,6,'Competitors:','competitors','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-10 05:56:52','2021-06-10 05:56:52','d545dd13-412a-49ee-9c3e-e4f359054850'),(108,6,'Contemporaries - organisations similar to us or that we admire:','contemporariesOrganisationsSimilarToUsOrThatWeAdmire','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-10 05:57:01','2021-06-11 00:14:09','e752f760-0ca6-48e7-8efc-0453ac18ced7'),(109,6,'Customers (and their wants/needs) include:','customersAndTheirWantsNeedsInclude','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-10 05:57:23','2021-06-10 05:57:23','f1e93f83-edeb-49fc-be13-10e88d0e52e1'),(110,6,'Our visual branding needs to:','ourVisualBrandingNeedsTo','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-10 05:57:39','2021-06-10 05:57:39','31c9c26c-caa5-4dbe-8878-310224cc8712'),(111,6,'Tools â What collateral, tools and applications do you have/need?','toolsWhatCollateralToolsAndApplicationsDoYouHaveNeed','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-10 06:00:08','2022-05-25 01:22:41','848da9c8-54d6-4536-ba5a-d88c4e8f06f2'),(112,6,'Existing materials include:','existingMaterialsInclude','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-10 06:00:18','2021-06-10 06:00:18','40e3cd37-08cd-446a-9032-b0b3087d2fb9'),(113,6,'New needs include:','newNeedsInclude','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-10 06:00:28','2021-06-10 06:00:28','d18bb60b-1374-45fc-9f7a-8836cba975c2'),(114,6,'Campaigns â What campaigns will tell your story and call people to action','whatCampaignsWillTellYourStory','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-10 06:01:00','2022-05-25 01:22:41','166692c6-ff38-4a39-9b37-b3b39ccbb191'),(115,6,'Promise â What can/should/do customers expect from you?','promiseWhatCanShouldDoCustomersExpectFromYou','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-10 06:01:12','2022-05-25 01:22:41','a1f430b2-c028-4c12-9f6b-e150f70c1180'),(116,6,'Opportunities â What can your brand achieve for your business/organisation?','whatCanYourBrandAchieveForYourOrganisation','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-10 06:01:45','2022-05-25 01:22:42','0e8e2297-d68a-468e-b544-879164ce3c80'),(117,6,'Outcomes â What needs to be done as a result of this audit?','whatNeedsToBeDone','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-10 06:02:14','2022-05-25 01:22:41','13610740-a1b4-444d-9e45-5610874d09cf'),(118,6,'Budgets â If youâre completing this form outside of a commissioned project, and budgets and pricing are in your remit, what have you got allocated towards this work, roughly or specifically?','budgets','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-10 06:02:39','2022-05-25 01:22:42','d7979c8a-d87b-409d-8c05-fa64e62b86b1'),(119,6,'Related user','relatedUser','global',NULL,'',0,'site',NULL,'craft\\fields\\Users','{\"allowSelfRelations\":false,\"limit\":\"1\",\"localizeRelations\":false,\"selectionLabel\":\"Add a user\",\"showSiteMenu\":false,\"source\":null,\"sources\":\"*\",\"targetSiteId\":null,\"validateRelatedElements\":false,\"viewMode\":null}','2021-06-10 23:05:15','2021-06-10 23:05:15','fd75f783-02b6-45db-b73f-348fd6a59016'),(120,7,'Company','company','global',NULL,'',0,'site',NULL,'craft\\fields\\Categories','{\"allowLimit\":false,\"allowMultipleSources\":false,\"allowSelfRelations\":false,\"branchLimit\":\"1\",\"limit\":null,\"localizeRelations\":false,\"selectionLabel\":\"Add a company\",\"showSiteMenu\":false,\"source\":\"group:069a7d0a-be68-4833-9385-e2804d215d07\",\"sources\":\"*\",\"targetSiteId\":null,\"validateRelatedElements\":false,\"viewMode\":null}','2021-06-11 00:31:06','2021-06-11 00:31:06','40ae3e60-3464-41d0-bb64-32671fc7f5e9'),(121,1,'Content builder','contentBuilder','global',NULL,'',0,'site',NULL,'craft\\fields\\Matrix','{\"contentTable\":\"{{%matrixcontent_contentbuilder}}\",\"maxBlocks\":\"\",\"minBlocks\":\"\",\"propagationKeyFormat\":null,\"propagationMethod\":\"all\"}','2021-06-21 04:26:32','2021-11-15 01:17:21','d3a8c8b6-f737-460c-81dc-9818db4a2627'),(122,NULL,'Text','text','matrixBlockType:2cd59aa2-1868-419f-8385-f7dfbb2a9e0b',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-21 04:26:32','2021-06-21 04:26:32','5c172524-13c3-43d8-a0c0-45c25cf3fede'),(123,NULL,'Heading','heading','matrixBlockType:2cd59aa2-1868-419f-8385-f7dfbb2a9e0b',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-21 04:26:32','2021-06-21 04:26:32','197aad2d-e3a7-4594-82e2-5f317df1786e'),(124,NULL,'Links','links','matrixBlockType:2cd59aa2-1868-419f-8385-f7dfbb2a9e0b',NULL,'',0,'site',NULL,'verbb\\supertable\\fields\\SuperTableField','{\"columns\":{\"78dae584-8470-46cf-9d9d-81753f0c8a47\":{\"width\":\"\"},\"f362a4cd-9c43-453d-84e5-dc8d9efa0b9f\":{\"width\":\"\"},\"a51c75e9-07f7-42af-b360-cf8e55df3da3\":{\"width\":\"\"}},\"contentTable\":\"{{%stc_8_links}}\",\"fieldLayout\":\"table\",\"maxRows\":\"\",\"minRows\":\"\",\"placeholderKey\":null,\"propagationMethod\":\"all\",\"selectionLabel\":\"\",\"staticField\":\"\"}','2021-06-21 04:26:32','2021-06-21 05:05:49','ef1558a2-4bac-4ea9-8c1e-3d4a432d72db'),(125,NULL,'Link text','linkText','superTableBlockType:22a36585-ad97-42d7-a505-6b6569ec8558',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-21 04:26:33','2021-06-21 04:26:33','78dae584-8470-46cf-9d9d-81753f0c8a47'),(126,NULL,'External link','externalLink','superTableBlockType:22a36585-ad97-42d7-a505-6b6569ec8558',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-21 04:26:33','2021-06-21 04:26:33','a51c75e9-07f7-42af-b360-cf8e55df3da3'),(127,NULL,'Internal link','internalLink','superTableBlockType:22a36585-ad97-42d7-a505-6b6569ec8558',NULL,'',0,'site',NULL,'craft\\fields\\Entries','{\"allowSelfRelations\":false,\"limit\":\"1\",\"localizeRelations\":false,\"selectionLabel\":\"Add a link\",\"showSiteMenu\":true,\"source\":null,\"sources\":\"*\",\"targetSiteId\":null,\"validateRelatedElements\":false,\"viewMode\":null}','2021-06-21 04:26:33','2021-06-21 05:05:50','f362a4cd-9c43-453d-84e5-dc8d9efa0b9f'),(128,NULL,'Grid items','gridItems','matrixBlockType:07b5b98c-b69c-4c6a-96c2-3812d50793da',NULL,'',0,'site',NULL,'verbb\\supertable\\fields\\SuperTableField','{\"columns\":{\"c0dca123-dde4-44c4-ab97-10e1ebe80aee\":{\"width\":\"\"},\"217aa381-87e0-4450-aff2-a051ada343b6\":{\"width\":\"\"}},\"contentTable\":\"{{%stc_9_griditems}}\",\"fieldLayout\":\"row\",\"maxRows\":\"\",\"minRows\":\"\",\"placeholderKey\":null,\"propagationMethod\":\"all\",\"selectionLabel\":\"\",\"staticField\":\"\"}','2021-06-21 04:26:33','2021-06-21 05:05:50','2dd50c30-6391-406d-b248-13583fb7cf85'),(129,NULL,'Text','text','superTableBlockType:cabf6e30-d8bb-4032-9f16-4e631d02d93c',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-21 04:26:33','2021-06-21 04:26:33','217aa381-87e0-4450-aff2-a051ada343b6'),(130,NULL,'Heading','heading','superTableBlockType:cabf6e30-d8bb-4032-9f16-4e631d02d93c',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-21 04:26:33','2021-06-21 04:26:33','c0dca123-dde4-44c4-ab97-10e1ebe80aee'),(131,NULL,'Heading','heading','matrixBlockType:07b5b98c-b69c-4c6a-96c2-3812d50793da',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-21 04:26:33','2021-06-21 04:26:33','220d8796-98ec-428f-aa21-9f7faca714c1'),(132,NULL,'Related people','relatedPeople','matrixBlockType:a717fd1e-e201-40af-a6ad-93f6c3492eac',NULL,'',0,'site',NULL,'craft\\fields\\Users','{\"allowSelfRelations\":false,\"limit\":\"\",\"localizeRelations\":false,\"selectionLabel\":\"Add a user\",\"showSiteMenu\":true,\"source\":null,\"sources\":[\"group:23b92378-5094-4e5b-9831-346803f914f0\"],\"targetSiteId\":null,\"validateRelatedElements\":false,\"viewMode\":null}','2021-06-21 04:26:33','2021-06-21 05:05:51','b76e39f4-0e1a-4d62-8e53-12e86f7e7705'),(133,NULL,'Links','links','matrixBlockType:41b88cf5-a28a-4471-8fe0-f33496141d18',NULL,'',0,'site',NULL,'verbb\\supertable\\fields\\SuperTableField','{\"columns\":{\"24127c19-929c-4799-a4fc-addd0c9b8839\":{\"width\":\"\"},\"b341277d-8bc1-411b-a87f-845f206f54b8\":{\"width\":\"\"},\"0598f256-b692-400e-ab10-a3abbe55e729\":{\"width\":\"\"}},\"contentTable\":\"{{%stc_11_links}}\",\"fieldLayout\":\"table\",\"maxRows\":\"\",\"minRows\":\"\",\"placeholderKey\":null,\"propagationMethod\":\"all\",\"selectionLabel\":\"\",\"staticField\":\"\"}','2021-06-21 04:26:33','2021-06-21 05:05:51','40ca8672-9409-48d1-b0f8-0a728dcd8497'),(134,NULL,'External link','externalLink','superTableBlockType:e14f1850-2264-4e3b-85fc-f0fc7ad7b17b',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-21 04:26:33','2021-06-21 04:26:33','0598f256-b692-400e-ab10-a3abbe55e729'),(135,NULL,'Link text','linkText','superTableBlockType:e14f1850-2264-4e3b-85fc-f0fc7ad7b17b',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-21 04:26:33','2021-06-21 04:26:33','24127c19-929c-4799-a4fc-addd0c9b8839'),(136,NULL,'Internal link','internalLink','superTableBlockType:e14f1850-2264-4e3b-85fc-f0fc7ad7b17b',NULL,'',0,'site',NULL,'craft\\fields\\Entries','{\"allowSelfRelations\":false,\"limit\":\"1\",\"localizeRelations\":false,\"selectionLabel\":\"Add a link\",\"showSiteMenu\":true,\"source\":null,\"sources\":\"*\",\"targetSiteId\":null,\"validateRelatedElements\":false,\"viewMode\":null}','2021-06-21 04:26:34','2021-06-21 05:05:51','b341277d-8bc1-411b-a87f-845f206f54b8'),(137,NULL,'Heading','heading','matrixBlockType:41b88cf5-a28a-4471-8fe0-f33496141d18',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-21 04:26:34','2021-06-21 04:26:34','5085f403-52b3-4b38-b10c-4bff77776af1'),(138,NULL,'Text','text','matrixBlockType:41b88cf5-a28a-4471-8fe0-f33496141d18',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-21 04:26:34','2021-06-21 04:26:34','23152e7a-37c2-41e9-9df3-9892c2a4a2f6'),(139,NULL,'Logos','logos','matrixBlockType:9c8e3dce-6c96-444a-adc7-7a811e3e2422',NULL,'',0,'site',NULL,'verbb\\supertable\\fields\\SuperTableField','{\"columns\":{\"77c63b72-1a12-4ae0-8e77-1c8281529861\":{\"width\":\"\"},\"0b0d85f7-4358-42e8-9beb-96291582f0ef\":{\"width\":\"\"}},\"contentTable\":\"{{%stc_12_logos}}\",\"fieldLayout\":\"table\",\"maxRows\":\"\",\"minRows\":\"\",\"placeholderKey\":null,\"propagationMethod\":\"all\",\"selectionLabel\":\"\",\"staticField\":\"\"}','2021-06-21 04:26:34','2021-06-21 05:05:52','8fbcbc2d-119a-412d-97e8-fec9e88d9418'),(140,NULL,'Link','logoLink','superTableBlockType:3b5acc45-812e-43a1-8f5c-67a64af02e02',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-21 04:26:34','2021-06-21 04:26:34','0b0d85f7-4358-42e8-9beb-96291582f0ef'),(141,NULL,'Logo','logo','superTableBlockType:3b5acc45-812e-43a1-8f5c-67a64af02e02',NULL,'',0,'site',NULL,'craft\\fields\\Assets','{\"allowSelfRelations\":false,\"allowUploads\":true,\"allowedKinds\":[\"image\"],\"defaultUploadLocationSource\":\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\",\"defaultUploadLocationSubpath\":\"\",\"limit\":\"1\",\"localizeRelations\":false,\"previewMode\":\"full\",\"restrictFiles\":\"1\",\"selectionLabel\":\"Add a logo\",\"showSiteMenu\":true,\"showUnpermittedFiles\":false,\"showUnpermittedVolumes\":false,\"singleUploadLocationSource\":\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\",\"singleUploadLocationSubpath\":\"\",\"source\":null,\"sources\":\"*\",\"targetSiteId\":null,\"useSingleFolder\":false,\"validateRelatedElements\":false,\"viewMode\":\"list\"}','2021-06-21 04:26:34','2021-06-21 05:05:52','77c63b72-1a12-4ae0-8e77-1c8281529861'),(142,NULL,'Heading','heading','matrixBlockType:9c8e3dce-6c96-444a-adc7-7a811e3e2422',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-21 04:26:34','2021-06-21 04:26:34','3989c2aa-8903-4a90-be5a-7ce7a8bd8113'),(143,NULL,'Section Heading','sectionHeading','matrixBlockType:2cd59aa2-1868-419f-8385-f7dfbb2a9e0b',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-21 05:05:49','2021-06-21 05:05:49','bef58c8d-9ae2-4638-b1b8-52a74de9326d'),(144,NULL,'Section heading','sectionHeading','matrixBlockType:07b5b98c-b69c-4c6a-96c2-3812d50793da',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-21 05:05:51','2021-06-21 05:05:51','770f3d77-08c1-4282-b12a-3c697292efa9'),(145,NULL,'Section heading','sectionHeading','matrixBlockType:a717fd1e-e201-40af-a6ad-93f6c3492eac',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-21 05:05:51','2021-06-21 05:05:51','76c09769-e160-4cff-b43f-81533d470637'),(146,NULL,'Section heading','sectionHeading','matrixBlockType:41b88cf5-a28a-4471-8fe0-f33496141d18',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-21 05:05:52','2021-06-21 05:05:52','179540f3-7f8c-4c10-bb48-99fead63ee70'),(147,NULL,'Section heading','sectionHeading','matrixBlockType:9c8e3dce-6c96-444a-adc7-7a811e3e2422',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-06-21 05:05:52','2021-06-21 05:05:52','27dedcaa-afc3-459d-83c3-18e8f90465d8'),(151,9,'Background colour','backgroundColour','global',NULL,'',0,'none',NULL,'craft\\fields\\Dropdown','{\"optgroups\":true,\"options\":[{\"label\":\"White\",\"value\":\"bg-white\",\"default\":\"1\"},{\"label\":\"Red\",\"value\":\"bg-red\",\"default\":\"\"},{\"label\":\"Black\",\"value\":\"bg-black\",\"default\":\"\"},{\"label\":\"Green\",\"value\":\"bg-green\",\"default\":\"\"}]}','2021-07-12 06:50:48','2021-07-12 06:50:48','53022aef-ff21-4e7f-970a-cb210544fb32'),(152,9,'Text builder','textBuilder','global',NULL,'',0,'site',NULL,'craft\\fields\\Matrix','{\"contentTable\":\"{{%matrixcontent_textbuilder}}\",\"maxBlocks\":\"\",\"minBlocks\":\"\",\"propagationKeyFormat\":null,\"propagationMethod\":\"all\"}','2021-07-12 06:54:07','2021-07-22 23:26:48','da858be0-dc01-44ea-9fc5-f9c6848cc9af'),(153,NULL,'Heading colour','headingColour','matrixBlockType:6b5a81ec-42b1-4118-9fa5-8b6360723b30',NULL,'',0,'none',NULL,'craft\\fields\\Dropdown','{\"optgroups\":true,\"options\":[{\"label\":\"Black\",\"value\":\"text-black\",\"default\":\"1\"},{\"label\":\"Red\",\"value\":\"text-red\",\"default\":\"\"},{\"label\":\"White\",\"value\":\"text-white\",\"default\":\"\"}]}','2021-07-12 06:54:08','2021-07-12 06:54:08','3628cf27-3ad7-4e27-9726-9a2cd25bef29'),(154,NULL,'Heading text','headingText','matrixBlockType:6b5a81ec-42b1-4118-9fa5-8b6360723b30',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"1\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-07-12 06:54:08','2021-07-13 00:08:19','c6376f0f-5d56-4141-9432-c72576928262'),(155,NULL,'Text size','textSize','matrixBlockType:f5d467dc-d887-430b-ac23-9ab8f97a2321',NULL,'',0,'none',NULL,'craft\\fields\\Dropdown','{\"optgroups\":true,\"options\":[{\"label\":\"Small\",\"value\":\"text-sm\",\"default\":\"\"},{\"label\":\"Normal\",\"value\":\"text-base\",\"default\":\"1\"},{\"label\":\"Large\",\"value\":\"text-lg\",\"default\":\"\"},{\"label\":\"Extra large\",\"value\":\"text-xl\",\"default\":\"\"}]}','2021-07-12 06:56:38','2021-07-12 06:56:38','668a3788-1102-4bcf-9687-ca83a0a95500'),(156,NULL,'Text','text','matrixBlockType:f5d467dc-d887-430b-ac23-9ab8f97a2321',NULL,'This field uses markdown. You can see a markdown cheat sheet https://www.markdownguide.org/basic-syntax/. Markdown seems hard at first, but it is the cleanest way to offer flexibility to manage text fields that need some styling.',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-07-12 06:56:38','2021-07-22 23:43:57','674ed020-679c-47d4-b702-aa9f9d0810dd'),(157,9,'Section height','sectionHeight','global',NULL,'',0,'none',NULL,'craft\\fields\\Dropdown','{\"optgroups\":true,\"options\":[{\"label\":\"Auto\",\"value\":\"h-auto\",\"default\":\"\"},{\"label\":\"Screen\",\"value\":\"h-screen\",\"default\":\"\"}]}','2021-07-12 06:57:24','2021-07-12 06:57:24','92c09e52-b844-43db-a6b2-fd92e20638b7'),(158,9,'Buttons','buttons','global',NULL,'',0,'site',NULL,'craft\\fields\\Matrix','{\"contentTable\":\"{{%matrixcontent_buttons_1}}\",\"maxBlocks\":\"\",\"minBlocks\":\"\",\"propagationKeyFormat\":null,\"propagationMethod\":\"all\"}','2021-07-12 23:06:23','2021-11-15 01:17:20','2718313e-9a95-48a0-b8f2-d08ccd8f2323'),(159,NULL,'Button text','buttonText','matrixBlockType:a0c5cc5d-7235-4c9b-804b-23a836279f84',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-07-12 23:06:23','2021-07-12 23:06:23','8adf4bb2-35da-47dc-b397-78ad436fafaf'),(160,NULL,'Internal link','internalLink','matrixBlockType:a0c5cc5d-7235-4c9b-804b-23a836279f84',NULL,'',0,'site',NULL,'craft\\fields\\Entries','{\"allowSelfRelations\":false,\"limit\":\"1\",\"localizeRelations\":false,\"selectionLabel\":\"Create a link to an entry\",\"showSiteMenu\":true,\"source\":null,\"sources\":[\"section:a649cddf-ac92-414a-8d24-cff4dcfeb45e\",\"singles\",\"section:6683638f-50e1-4d95-9996-a6e6b3aabff9\"],\"targetSiteId\":null,\"validateRelatedElements\":false,\"viewMode\":null}','2021-07-12 23:06:23','2021-07-15 00:10:33','85f5f339-ed01-43a1-94b9-771aee87b786'),(161,NULL,'External link','externalLink','matrixBlockType:a0c5cc5d-7235-4c9b-804b-23a836279f84',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-07-12 23:06:23','2021-07-12 23:06:23','69757833-f906-4261-bc37-340e59416a60'),(162,NULL,'Button style','buttonStyle','matrixBlockType:a0c5cc5d-7235-4c9b-804b-23a836279f84',NULL,'',0,'none',NULL,'craft\\fields\\Dropdown','{\"optgroups\":true,\"options\":[{\"label\":\"Outline\",\"value\":\"outline\",\"default\":\"1\"},{\"label\":\"Link\",\"value\":\"link\",\"default\":\"\"},{\"label\":\"Link list\",\"value\":\"linkList\",\"default\":\"\"}]}','2021-07-12 23:06:24','2021-07-15 00:07:41','82986907-d153-492e-b87b-4c7898ad9a45'),(163,NULL,'Button colour','buttonColour','matrixBlockType:a0c5cc5d-7235-4c9b-804b-23a836279f84',NULL,'',0,'none',NULL,'craft\\fields\\Dropdown','{\"optgroups\":true,\"options\":[{\"label\":\"Black\",\"value\":\"black\",\"default\":\"1\"},{\"label\":\"Red\",\"value\":\"red\",\"default\":\"\"},{\"label\":\"White\",\"value\":\"white\",\"default\":\"\"},{\"label\":\"Green\",\"value\":\"green\",\"default\":\"\"}]}','2021-07-12 23:06:24','2021-07-12 23:06:24','f78040ea-09e5-4ebd-b1e2-e08df257a5da'),(164,9,'Flexible layout','flexibleLayout','global',NULL,NULL,1,'none',NULL,'verbb\\vizy\\fields\\VizyField','{\"availableTransforms\":\"*\",\"availableVolumes\":\"*\",\"columnType\":\"text\",\"configSelectionMode\":\"choose\",\"defaultTransform\":\"\",\"fieldData\":[{\"id\":\"group-up8Yi44dOW\",\"name\":\"Content sections\",\"blockTypes\":[{\"id\":\"type-0jFlVakMTB\",\"name\":\"Text section builder\",\"handle\":\"textSection\",\"icon\":{\"label\":\"Pen Square\",\"value\":\"pen-square-solid\"},\"template\":\"_vizypartials/_textSection.twig\",\"enabled\":true,\"layoutUid\":\"ba014523-5ac5-4c8d-b146-013bb53bcdf0\",\"layoutConfig\":{\"tabs\":[{\"name\":\"CONTENT\",\"uid\":\"960037f1-53d7-4d93-8fe1-8f7cac0fab0e\",\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":50,\"uid\":\"bd8f8a30-4df6-4eca-a77b-1c89b8013751\",\"fieldUid\":\"92c09e52-b844-43db-a6b2-fd92e20638b7\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":50,\"uid\":\"796c653d-b744-417a-befa-0a0dd58ea492\",\"fieldUid\":\"53022aef-ff21-4e7f-970a-cb210544fb32\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":100,\"uid\":\"4005e54b-d2eb-4034-8ec9-2b1454fb347f\",\"fieldUid\":\"da858be0-dc01-44ea-9fc5-f9c6848cc9af\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":100,\"uid\":\"a40df637-319b-46d1-9085-2d23844fb9b0\",\"fieldUid\":\"2718313e-9a95-48a0-b8f2-d08ccd8f2323\"}]},{\"name\":\"METADATA\",\"uid\":\"3787aef1-2764-4db0-bf77-e0388557f8cc\",\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":100,\"uid\":\"7326f992-2435-4f32-b304-a5a83ffec845\",\"fieldUid\":\"c9806c08-39e9-4277-ba95-708404c27b4c\"}]}]}},{\"id\":\"type-ajNEqfqsEA\",\"name\":\"People grid\",\"handle\":\"peopleGrid\",\"icon\":{\"label\":\"User\",\"value\":\"user-solid\"},\"template\":\"_vizypartials/_userGrid\",\"enabled\":true,\"layoutUid\":\"12e55a1e-108b-4ad5-98cf-e23f3e9b5852\",\"layoutConfig\":{\"tabs\":[{\"name\":\"METADATA\",\"uid\":\"a83d977c-818d-4e5a-a984-30e743493485\",\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":100,\"uid\":\"660e536a-3b1f-453d-94b0-bef94094990f\",\"fieldUid\":\"c9806c08-39e9-4277-ba95-708404c27b4c\"}]},{\"name\":\"CONTENT\",\"uid\":\"fe74f651-35b6-4615-bc75-39f27c084123\",\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":100,\"uid\":\"1d0aa5b1-9982-42da-8584-b7916952ba7a\",\"fieldUid\":\"ac330e35-980d-4c71-9fd8-4c4edd58140b\"}]}]}},{\"id\":\"type-MfLI96vuT8\",\"name\":\"Logo cloud\",\"handle\":\"logoCloud\",\"icon\":{\"label\":\"Büromöbel-Experte GmbH & Co. KG.\",\"value\":\"buromobelexperte-brands\"},\"template\":\"_vizypartials/_logoCloud\",\"enabled\":true,\"layoutUid\":\"2da7908c-edff-430a-8a23-96f17ebb813c\",\"layoutConfig\":{\"tabs\":[{\"name\":\"METADATA\",\"uid\":\"76b3409e-ff7a-48a2-b65d-0192d0ac0022\",\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":100,\"uid\":\"12461671-fa05-4363-a92b-603a12a50aa6\",\"fieldUid\":\"c9806c08-39e9-4277-ba95-708404c27b4c\"}]},{\"name\":\"CONTENT\",\"uid\":\"ebedcc73-9303-469f-916c-7018d638c8bd\",\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":100,\"uid\":\"f85b2904-0c18-420d-9d78-9beb068063ed\",\"fieldUid\":\"747348e3-38bd-461d-b1ff-416c6764f72e\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":100,\"uid\":\"c165bb0f-0dd7-48f2-a146-76ba27a6eab6\",\"fieldUid\":\"b2e01efa-50e7-49b4-8c2c-33ec9581cb1b\"}]}]}},{\"id\":\"type-JIUNKK7uSu\",\"name\":\"Form\",\"handle\":\"form\",\"icon\":{\"label\":\"Envelope Open-text\",\"value\":\"envelope-open-text-solid\"},\"template\":\"_vizypartials/_freeformForm\",\"enabled\":true,\"layoutUid\":\"2dff07d9-38f4-464b-a02a-e87706db0292\",\"layoutConfig\":{\"tabs\":[{\"name\":\"CONTENT\",\"uid\":\"3c545868-c5a0-4663-a367-3ee771c1beff\",\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":100,\"uid\":\"0defd852-19f0-41e4-b1b2-02207878d0c6\",\"fieldUid\":\"aa219c56-4619-45c0-ace9-c07d18e43d2f\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":100,\"uid\":\"41df6e67-8837-4115-9e65-7841f595348d\",\"fieldUid\":\"53022aef-ff21-4e7f-970a-cb210544fb32\"}]},{\"name\":\"METADATA\",\"uid\":\"671b6b72-98a2-4279-8f67-3834717a3621\",\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":100,\"uid\":\"acd77784-24db-49dc-8b54-8751642aabfb\",\"fieldUid\":\"c9806c08-39e9-4277-ba95-708404c27b4c\"}]}]}},{\"id\":\"type-K9ZnVvlNxN\",\"name\":\"Callout\",\"handle\":\"callout\",\"icon\":{\"label\":\"quote-right\",\"value\":\"quote-right-solid\"},\"template\":\"_vizypartials/_callout\",\"enabled\":true,\"layoutUid\":\"647d6fba-67d9-478e-8e66-548e237fe9c0\",\"layoutConfig\":{\"tabs\":[{\"name\":\"CONTENT\",\"uid\":\"36da9804-42f4-401e-a80e-4e6fe5b3f593\",\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":100,\"uid\":\"09dfbb09-6f4a-419d-9958-2f6317359057\",\"fieldUid\":\"747348e3-38bd-461d-b1ff-416c6764f72e\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":100,\"uid\":\"f15e7fbb-e9df-49ee-b05e-0a71b99c9f00\",\"fieldUid\":\"e6a934e5-14f7-4866-82bb-e3c114038533\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":50,\"uid\":\"f7d93f83-5082-46ea-b2ad-ad38764ce473\",\"fieldUid\":\"92c09e52-b844-43db-a6b2-fd92e20638b7\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":25,\"uid\":\"62f55f02-1c7e-4709-91d2-e49d5bbd8fa2\",\"fieldUid\":\"53022aef-ff21-4e7f-970a-cb210544fb32\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":25,\"uid\":\"3588a012-60f9-482d-b9bf-4c654fc536f2\",\"fieldUid\":\"fe3d3e20-0b76-438f-af52-0b90f4cf6099\"}]}]}},{\"id\":\"type-zgzhmh66J7\",\"name\":\"Markdown\",\"handle\":\"markdown\",\"icon\":{\"label\":\"Markdown\",\"value\":\"markdown-brands\"},\"template\":\"_vizypartials/_richText\",\"enabled\":true,\"layoutUid\":\"80d0e735-9c05-45a6-ba97-02bcae2dfcb2\",\"layoutConfig\":{\"tabs\":[{\"name\":\"CONTENT\",\"uid\":\"674a2b8b-13e0-4907-9c4a-e0fa252d5bf7\",\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":50,\"uid\":\"b03cc690-016c-48d8-8058-77f925c5846a\",\"fieldUid\":\"53022aef-ff21-4e7f-970a-cb210544fb32\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":50,\"uid\":\"12849553-6ed0-4869-ba00-c2ee16ecd39a\",\"fieldUid\":\"92c09e52-b844-43db-a6b2-fd92e20638b7\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":100,\"uid\":\"685f87a1-b8bd-4a95-9a1b-be5e4500af14\",\"fieldUid\":\"e6a934e5-14f7-4866-82bb-e3c114038533\"}]},{\"name\":\"METADATA\",\"uid\":\"37fa2be2-782f-493b-ab8a-e2c580f00d20\",\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":100,\"uid\":\"5169c9b4-0f8c-4c82-b2f8-79f0ceae3366\",\"fieldUid\":\"c9806c08-39e9-4277-ba95-708404c27b4c\"}]}]}},{\"id\":\"type-xgBpfxj8HD\",\"name\":\"Full width image\",\"handle\":\"fullWidthImage\",\"icon\":{\"label\":\"Image\",\"value\":\"image-solid\"},\"template\":\"_vizypartials/_fullWidthImage\",\"enabled\":true,\"layoutUid\":\"ad819334-922d-4539-8259-5a79df116e87\",\"layoutConfig\":{\"tabs\":[{\"name\":\"CONTENT\",\"uid\":\"352c432b-ec78-435f-94a0-65b85acc64f0\",\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":100,\"uid\":\"5158a62d-11b7-41f7-8982-90fb4e2237bb\",\"fieldUid\":\"b2e01efa-50e7-49b4-8c2c-33ec9581cb1b\"}]}]}},{\"id\":\"type-RVIt4Msytq\",\"name\":\"Video grid\",\"handle\":\"videoGrid\",\"icon\":{\"label\":\"Photo Video\",\"value\":\"photo-video-solid\"},\"template\":\"_vizypartials/_videoGrid\",\"enabled\":true,\"layoutUid\":\"a4ed14d4-fcf4-46c9-bf15-afc06ffcbc87\",\"layoutConfig\":{\"tabs\":[{\"name\":\"CONTENT\",\"uid\":\"131507f7-43f7-41a4-aa68-ffb5872cd249\",\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":100,\"uid\":\"75b70dbc-e054-4cb0-9ebf-6fbe4c03c1e4\",\"fieldUid\":\"39b06f94-8ee0-4222-8a17-b527852aec1b\"}]}]}},{\"id\":\"type-WIIM7FjPXS\",\"name\":\"Text and media\",\"handle\":\"textAndMedia\",\"icon\":{\"label\":\"Photo Video\",\"value\":\"photo-video-solid\"},\"template\":\"_vizypartials/_textAndMedia\",\"enabled\":true,\"layoutUid\":\"f286c5ff-7a88-456a-80ff-5bf83a4e40d0\",\"layoutConfig\":{\"tabs\":[{\"name\":\"CONTENT\",\"uid\":\"1a25437f-8981-4c4d-bc8a-0a7884597e7b\",\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":50,\"uid\":\"a8c541a4-1dbe-4739-a5b5-2dc0e0ae44b5\",\"fieldUid\":\"b2e01efa-50e7-49b4-8c2c-33ec9581cb1b\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":50,\"uid\":\"a869e072-817a-4904-826f-22e67a4f9b79\",\"fieldUid\":\"cf34f699-cd72-4f21-8dc0-13f2a6d993ef\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":100,\"uid\":\"cbe8afec-4712-4d23-8bd4-861bae0a7cb5\",\"fieldUid\":\"da858be0-dc01-44ea-9fc5-f9c6848cc9af\"}]}]}},{\"id\":\"type-GjaQopZ8Ed\",\"name\":\"Code block\",\"handle\":\"codeBlock\",\"icon\":{\"label\":\"Laptop Code\",\"value\":\"laptop-code-solid\"},\"template\":\"_vizypartials/_codeBlock\",\"enabled\":true,\"layoutUid\":\"64cf1b94-24dd-474c-9d4c-a1eecd1ee6d9\",\"layoutConfig\":{\"tabs\":[{\"name\":\"CONTENT\",\"uid\":\"1c998b8d-7958-40f8-bcbd-99006934f28c\",\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":100,\"uid\":\"dccaa976-cd06-4657-8d16-59805c50e452\",\"fieldUid\":\"67b36868-9b9f-4ac0-b5d2-6585f5876af2\"},{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":100,\"uid\":\"d438a09d-c82a-4a4d-9780-54ec03487399\",\"fieldUid\":\"53022aef-ff21-4e7f-970a-cb210544fb32\"}]},{\"name\":\"METADATA\",\"uid\":\"f3d135a3-ffac-49b2-8239-33234d9d6e19\",\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":100,\"uid\":\"8865a755-f236-4f2a-a8e9-709e36a4a664\",\"fieldUid\":\"c9806c08-39e9-4277-ba95-708404c27b4c\"}]}]}},{\"id\":\"type-Ax8fnuTi2u\",\"name\":\"Image slideshow\",\"handle\":\"imageSlideshow\",\"icon\":{\"label\":\"Images\",\"value\":\"images-solid\"},\"template\":\"_vizypartials/_imageSlideshow.twig\",\"enabled\":true,\"layoutUid\":\"b757e220-fb65-4fce-a081-c93399bbb0a7\",\"layoutConfig\":{\"tabs\":[{\"name\":\"CONTENT\",\"uid\":\"15731807-e2e5-4084-b271-5654beb01f89\",\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":100,\"uid\":\"cd43546e-aa2e-4e9b-9014-381c97b38878\",\"fieldUid\":\"b2e01efa-50e7-49b4-8c2c-33ec9581cb1b\"}]}]}},{\"id\":\"type-s0nVisNYi6\",\"name\":\"Spacer\",\"handle\":\"spacer\",\"icon\":{\"label\":\"Alternate Arrows Vertical\",\"value\":\"arrows-alt-v-solid\"},\"template\":\"_vizypartials/_spacer.twig\",\"enabled\":true,\"layoutUid\":\"934829d8-9be9-45dc-a404-630590254f82\",\"layoutConfig\":{\"tabs\":[{\"name\":\"CONTENT\",\"uid\":\"bba08531-fc60-4299-a42d-18d4e4f5c552\",\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":100,\"uid\":\"f92a35f8-e430-4610-b08e-9e779fc40e28\",\"fieldUid\":\"13c5a484-996f-4429-a612-5b251409ca6f\"}]},{\"name\":\"METADATA\",\"uid\":\"3eeaca9e-9a96-4118-ae62-fcc4497cfafe\",\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":100,\"uid\":\"82883027-96e3-4c44-ac8c-99c786f69954\",\"fieldUid\":\"c9806c08-39e9-4277-ba95-708404c27b4c\"}]}]}},{\"id\":\"type-rG4w99hwoM\",\"name\":\"Accordion content\",\"handle\":\"accordionContent\",\"icon\":{\"label\":\"Bars\",\"value\":\"bars-solid\"},\"template\":\"_vizypartials/_accordionContent.twig\",\"enabled\":true,\"layoutUid\":\"68882123-3c38-402c-b566-bb6545c825ad\",\"layoutConfig\":{\"tabs\":[{\"name\":\"CONTENT\",\"uid\":\"9f67686c-99dd-4a2b-afe8-d50826464aaa\",\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":100,\"uid\":\"2e953b06-eedb-4c9d-ba1e-70a991c5527f\",\"fieldUid\":\"a172791e-53b7-44eb-b87b-ab304cd1588f\"}]},{\"name\":\"METADATA\",\"uid\":\"c559034d-47a3-4e44-81f3-a365e32ae0f3\",\"elements\":[{\"type\":\"craft\\\\fieldlayoutelements\\\\CustomField\",\"required\":false,\"width\":100,\"uid\":\"a0c88134-9454-48a2-8a72-7e7755c4b2aa\",\"fieldUid\":\"c9806c08-39e9-4277-ba95-708404c27b4c\"}]}]}}]}],\"manualConfig\":\"\",\"showUnpermittedFiles\":false,\"showUnpermittedVolumes\":false,\"trimEmptyParagraphs\":true,\"vizyConfig\":\"\"}','2021-07-12 23:09:16','2022-06-05 23:22:33','a5a982f3-8c85-4f6a-bc53-40ca9d61afbf'),(165,NULL,'Text colour','textColour','matrixBlockType:f5d467dc-d887-430b-ac23-9ab8f97a2321',NULL,'',0,'none',NULL,'craft\\fields\\Dropdown','{\"optgroups\":true,\"options\":[{\"label\":\"Black\",\"value\":\"text-black\",\"default\":\"1\"},{\"label\":\"White\",\"value\":\"text-white\",\"default\":\"\"},{\"label\":\"Red\",\"value\":\"text-red\",\"default\":\"\"},{\"label\":\"Green\",\"value\":\"text-green\",\"default\":\"\"}]}','2021-07-12 23:14:46','2021-07-12 23:14:46','dbbe7fd3-520b-4886-b77f-e0a7904f9c8d'),(166,NULL,'Grid items','gridItems','matrixBlockType:63e3d1ea-0cba-42ce-934a-2f0c718081e5',NULL,'',0,'site',NULL,'verbb\\supertable\\fields\\SuperTableField','{\"columns\":{\"f9da4ffb-4690-4f0b-8f08-456b5e29ffc9\":{\"width\":\"\"},\"5307644b-cc96-4639-8586-e174e883f664\":{\"width\":\"\"}},\"contentTable\":\"{{%stc_16_griditems}}\",\"fieldLayout\":\"table\",\"maxRows\":\"\",\"minRows\":\"\",\"placeholderKey\":null,\"propagationMethod\":\"all\",\"selectionLabel\":\"\",\"staticField\":\"\"}','2021-07-13 00:27:13','2021-07-14 01:42:34','38bbf5f7-e29c-40bd-b218-155ad667ea9a'),(167,NULL,'Text','text','superTableBlockType:0ff78a3e-28e9-41dd-b794-188081cdccf7',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-07-13 00:27:13','2021-07-13 00:27:13','5307644b-cc96-4639-8586-e174e883f664'),(168,NULL,'Heading','heading','superTableBlockType:0ff78a3e-28e9-41dd-b794-188081cdccf7',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-07-13 00:27:14','2021-07-13 00:27:14','f9da4ffb-4690-4f0b-8f08-456b5e29ffc9'),(169,1,'Images','images','global',NULL,'',0,'site',NULL,'craft\\fields\\Assets','{\"allowSelfRelations\":false,\"allowUploads\":true,\"allowedKinds\":[\"image\"],\"defaultUploadLocationSource\":\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\",\"defaultUploadLocationSubpath\":\"\",\"limit\":\"\",\"localizeRelations\":false,\"previewMode\":\"full\",\"restrictFiles\":\"1\",\"selectionLabel\":\"Add an image\",\"showSiteMenu\":false,\"showUnpermittedFiles\":false,\"showUnpermittedVolumes\":false,\"singleUploadLocationSource\":\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\",\"singleUploadLocationSubpath\":\"\",\"source\":null,\"sources\":\"*\",\"targetSiteId\":null,\"useSingleFolder\":false,\"validateRelatedElements\":false,\"viewMode\":\"list\"}','2021-07-14 01:04:34','2021-07-14 01:04:34','b2e01efa-50e7-49b4-8c2c-33ec9581cb1b'),(170,1,'Heading','heading','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-07-14 01:06:12','2021-07-14 01:06:12','747348e3-38bd-461d-b1ff-416c6764f72e'),(171,9,'Section title','sectionTitle','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-07-14 01:20:44','2021-07-14 01:20:44','c9806c08-39e9-4277-ba95-708404c27b4c'),(172,7,'LinkedIn','linkedin','global',NULL,'',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-07-14 02:41:28','2021-07-14 02:41:28','1dfaede0-905a-4132-a18f-104b40af2718'),(173,1,'Freeform Form','freeformForm','global',NULL,'',0,'none',NULL,'Solspace\\Freeform\\FieldTypes\\FormFieldType',NULL,'2021-07-14 23:11:07','2021-07-14 23:11:07','aa219c56-4619-45c0-ace9-c07d18e43d2f'),(174,NULL,'Button image','buttonImage','matrixBlockType:a0c5cc5d-7235-4c9b-804b-23a836279f84',NULL,'If you want to use an image instead of text for the button, upload it here',0,'site',NULL,'craft\\fields\\Assets','{\"allowSelfRelations\":false,\"allowUploads\":true,\"allowedKinds\":[\"image\"],\"defaultUploadLocationSource\":\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\",\"defaultUploadLocationSubpath\":\"\",\"limit\":\"1\",\"localizeRelations\":false,\"previewMode\":\"full\",\"restrictFiles\":\"1\",\"selectionLabel\":\"Add button image\",\"showSiteMenu\":false,\"showUnpermittedFiles\":false,\"showUnpermittedVolumes\":false,\"singleUploadLocationSource\":\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\",\"singleUploadLocationSubpath\":\"\",\"source\":null,\"sources\":\"*\",\"targetSiteId\":null,\"useSingleFolder\":false,\"validateRelatedElements\":false,\"viewMode\":\"list\"}','2021-07-15 01:57:26','2021-07-15 01:57:26','5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3'),(175,NULL,'Height','height','matrixBlockType:6bf3dbc1-ec4b-4a10-896f-37727eed41d0',NULL,'',0,'none',NULL,'craft\\fields\\Dropdown','{\"optgroups\":true,\"options\":[{\"label\":\"Screen\",\"value\":\"h-screen\",\"default\":\"1\"},{\"label\":\"Auto\",\"value\":\"h-auto\",\"default\":\"\"}]}','2021-07-16 04:26:49','2021-07-16 04:27:41','8df2b5cb-f0f5-47a2-b2b1-c77cbf1b2979'),(176,NULL,'Height','height','matrixBlockType:1730f29f-dfa8-4229-867a-844a7a23c120','gjpgbrsz','',0,'none',NULL,'craft\\fields\\Dropdown','{\"optgroups\":true,\"options\":[{\"label\":\"Screen\",\"value\":\"h-screen\",\"default\":\"1\"},{\"label\":\"Auto\",\"value\":\"h-auto\",\"default\":\"\"}]}','2021-07-16 04:27:40','2021-07-16 04:27:40','dd7b1a59-c33e-465d-aa9a-46634169f8d6'),(177,9,'Videos','videos','global',NULL,'',0,'site',NULL,'craft\\fields\\Matrix','{\"contentTable\":\"{{%matrixcontent_videos}}\",\"maxBlocks\":\"\",\"minBlocks\":\"\",\"propagationKeyFormat\":null,\"propagationMethod\":\"all\"}','2021-07-16 04:37:13','2021-07-16 04:37:13','39b06f94-8ee0-4222-8a17-b527852aec1b'),(178,NULL,'Video code','videoCode','matrixBlockType:85ab7ac3-f71c-43d5-9d93-0c661816749f','ohcnrvnx','',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-07-16 04:37:13','2021-07-16 04:37:13','c617866b-d457-4084-ad7d-07b1ee8fca3e'),(179,NULL,'Video placeholder image','videoPlaceholderImage','matrixBlockType:85ab7ac3-f71c-43d5-9d93-0c661816749f',NULL,'',0,'site',NULL,'craft\\fields\\Assets','{\"allowSelfRelations\":false,\"allowUploads\":true,\"allowedKinds\":[\"image\"],\"defaultUploadLocationSource\":\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\",\"defaultUploadLocationSubpath\":\"\",\"limit\":\"1\",\"localizeRelations\":false,\"previewMode\":\"full\",\"restrictFiles\":\"1\",\"selectionLabel\":\"\",\"showSiteMenu\":false,\"showUnpermittedFiles\":false,\"showUnpermittedVolumes\":false,\"singleUploadLocationSource\":\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\",\"singleUploadLocationSubpath\":\"\",\"source\":null,\"sources\":\"*\",\"targetSiteId\":null,\"useSingleFolder\":false,\"validateRelatedElements\":false,\"viewMode\":\"list\"}','2021-07-16 04:37:13','2021-07-16 04:37:13','e04edda4-4166-46d2-891a-1de94a6efe73'),(180,1,'Plain text','plainText','global','mmqrahtq','',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-07-16 05:07:19','2021-07-16 05:07:30','e6a934e5-14f7-4866-82bb-e3c114038533'),(181,1,'Text colour','textColour','global','mwnqrgtq','',0,'none',NULL,'craft\\fields\\Dropdown','{\"optgroups\":true,\"options\":[{\"label\":\"Black\",\"value\":\"text-black\",\"default\":\"1\"},{\"label\":\"White\",\"value\":\"text-white\",\"default\":\"\"},{\"label\":\"Red\",\"value\":\"text-red\",\"default\":\"\"},{\"label\":\"Green\",\"value\":\"text-green\",\"default\":\"\"}]}','2021-07-16 05:09:01','2021-07-16 05:09:01','fe3d3e20-0b76-438f-af52-0b90f4cf6099'),(182,8,'Featured work','featuredWork','global','rctoxzik','',0,'none',NULL,'craft\\fields\\Lightswitch','{\"default\":false,\"offLabel\":null,\"onLabel\":null}','2021-07-16 06:17:31','2021-07-16 06:17:31','4772b900-f086-421b-9298-9380f296a971'),(183,7,'Highlight colour','highlightColour','global','piacylig','',0,'none',NULL,'craft\\fields\\Dropdown','{\"optgroups\":true,\"options\":[{\"label\":\"Green\",\"value\":\"green\",\"default\":\"1\"},{\"label\":\"Red\",\"value\":\"red\",\"default\":\"\"},{\"label\":\"Blue\",\"value\":\"blue\",\"default\":\"\"}]}','2021-07-22 04:34:58','2021-07-26 03:20:26','626f21db-f3f8-49c9-a099-c2416899ef4c'),(184,1,'BG Feature hover image','bgFeatureHoverImage','global',NULL,'',0,'site',NULL,'craft\\fields\\Assets','{\"allowSelfRelations\":false,\"allowUploads\":true,\"allowedKinds\":[\"image\"],\"defaultUploadLocationSource\":\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\",\"defaultUploadLocationSubpath\":\"\",\"limit\":\"1\",\"localizeRelations\":false,\"previewMode\":\"full\",\"restrictFiles\":\"1\",\"selectionLabel\":\"Add a feature bg image\",\"showSiteMenu\":false,\"showUnpermittedFiles\":false,\"showUnpermittedVolumes\":false,\"singleUploadLocationSource\":\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\",\"singleUploadLocationSubpath\":\"\",\"source\":null,\"sources\":\"*\",\"targetSiteId\":null,\"useSingleFolder\":false,\"validateRelatedElements\":false,\"viewMode\":\"list\"}','2021-07-22 04:42:54','2021-07-22 04:42:54','0a95ad86-a2ee-4a11-9a13-65c1f09f0df5'),(185,NULL,'Heading size','headingSize','matrixBlockType:6b5a81ec-42b1-4118-9fa5-8b6360723b30',NULL,'',0,'none',NULL,'craft\\fields\\Dropdown','{\"optgroups\":true,\"options\":[{\"label\":\"Headline\",\"value\":\"text-5xl\",\"default\":\"1\"},{\"label\":\"Subheading\",\"value\":\"text-2xl\",\"default\":\"\"}]}','2021-07-22 23:26:48','2021-07-22 23:28:03','f88d9485-eb10-492f-bce3-4fa0d28804b3'),(186,5,'Quote probability','quoteProbability','global','srzybvbu','',1,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-08-25 23:17:31','2021-08-26 00:53:35','ca583aae-f20e-44f7-889c-684e700e84f4'),(187,5,'Quote finalised date','quoteFinalisedDate','global','fmfbjwsp','',1,'none',NULL,'craft\\fields\\Date','{\"max\":null,\"min\":null,\"minuteIncrement\":\"30\",\"showDate\":true,\"showTime\":false,\"showTimeZone\":false}','2021-08-26 00:53:13','2021-08-26 00:53:26','2e37c678-c8e7-4c06-9e32-bdebf9bc20dd'),(188,10,'Homepage slideshow','homepageSlideshow','global',NULL,'',0,'site',NULL,'craft\\fields\\Matrix','{\"contentTable\":\"{{%matrixcontent_homepageslideshow}}\",\"maxBlocks\":\"\",\"minBlocks\":\"\",\"propagationKeyFormat\":null,\"propagationMethod\":\"all\"}','2021-09-10 02:00:16','2021-09-10 02:00:16','d49f872f-4325-4ed2-b381-4eb04d0a576b'),(189,NULL,'Less text','lessText','matrixBlockType:e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6',NULL,'',0,'none',NULL,'craft\\redactor\\Field','{\"availableTransforms\":\"*\",\"availableVolumes\":\"*\",\"cleanupHtml\":true,\"columnType\":\"text\",\"configSelectionMode\":\"choose\",\"defaultTransform\":\"\",\"manualConfig\":\"\",\"purifierConfig\":\"\",\"purifyHtml\":\"1\",\"redactorConfig\":\"\",\"removeEmptyTags\":\"1\",\"removeInlineStyles\":\"\",\"removeNbsp\":\"1\",\"showHtmlButtonForNonAdmins\":\"\",\"showUnpermittedFiles\":false,\"showUnpermittedVolumes\":false,\"uiMode\":\"enlarged\"}','2021-09-10 02:00:16','2021-09-10 07:18:01','2d326ffa-82ec-4671-87b5-b5c79c1ae26b'),(190,NULL,'More text','moreText','matrixBlockType:e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6',NULL,'',0,'none',NULL,'craft\\redactor\\Field','{\"availableTransforms\":\"*\",\"availableVolumes\":\"*\",\"cleanupHtml\":true,\"columnType\":\"text\",\"configSelectionMode\":\"choose\",\"defaultTransform\":\"\",\"manualConfig\":\"\",\"purifierConfig\":\"\",\"purifyHtml\":\"1\",\"redactorConfig\":\"\",\"removeEmptyTags\":\"1\",\"removeInlineStyles\":\"\",\"removeNbsp\":\"1\",\"showHtmlButtonForNonAdmins\":\"\",\"showUnpermittedFiles\":false,\"showUnpermittedVolumes\":false,\"uiMode\":\"enlarged\"}','2021-09-10 02:00:16','2021-09-10 07:18:01','2f7ba8f5-ccf1-403a-af0a-faa7fd49b841'),(191,NULL,'Related project','relatedProject','matrixBlockType:e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6',NULL,'',0,'site',NULL,'craft\\fields\\Entries','{\"allowSelfRelations\":false,\"limit\":\"1\",\"localizeRelations\":false,\"selectionLabel\":\"Relate a project\",\"showSiteMenu\":true,\"source\":null,\"sources\":[\"section:6683638f-50e1-4d95-9996-a6e6b3aabff9\"],\"targetSiteId\":null,\"validateRelatedElements\":false,\"viewMode\":null}','2021-09-10 02:00:16','2021-09-10 02:22:35','c2767866-99f0-4732-a314-d9167998c803'),(192,9,'Media alignment','mediaAlignment','global','ofeozuyc','',0,'none',NULL,'craft\\fields\\Dropdown','{\"optgroups\":true,\"options\":[{\"label\":\"left\",\"value\":\"Left\",\"default\":\"\"},{\"label\":\"right\",\"value\":\"Right\",\"default\":\"\"}]}','2021-09-28 05:44:59','2021-09-28 05:44:59','cf34f699-cd72-4f21-8dc0-13f2a6d993ef'),(193,5,'Job','job','global',NULL,'',0,'none',NULL,'Page8\\ManyToMany\\fields\\ManyToManyField','{\"singleField\":\"193\",\"source\":{\"value\":\"2\",\"type\":\"section\"}}','2021-10-01 00:52:42','2022-05-09 03:30:34','75d393b8-1fa4-4ab6-9034-a9e3ffd1944e'),(194,5,'Quote ID (Workbook)','quoteIdWorkbook','global','bjyckywk','',1,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-10-19 05:57:11','2022-05-09 03:30:34','84123ace-0f1d-44e9-98cb-e3477880bdf2'),(195,11,'SEO Title','seoTitle','global','ltukvako','',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-11-09 00:38:18','2021-11-09 00:38:18','d4f97e13-677b-40d7-a802-929455984b64'),(196,11,'SEO Description','seoDescription','global','iqinnjkp','',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-11-09 00:38:28','2021-11-09 00:38:28','687c0549-de46-424f-8727-7b5546c11752'),(197,11,'SEO Keywords','seoKeywords','global','ywurqquw','',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-11-09 00:38:35','2021-11-09 00:38:35','543fd936-b820-4ae9-93f7-e0577abe2fab'),(198,11,'SEO Image','seoImage','global','ddonlfex','',0,'site',NULL,'craft\\fields\\Assets','{\"allowSelfRelations\":false,\"allowUploads\":true,\"allowedKinds\":[\"image\"],\"defaultUploadLocationSource\":\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\",\"defaultUploadLocationSubpath\":\"\",\"limit\":\"1\",\"localizeRelations\":false,\"previewMode\":\"full\",\"restrictFiles\":\"1\",\"selectionLabel\":\"\",\"showSiteMenu\":true,\"showUnpermittedFiles\":false,\"showUnpermittedVolumes\":false,\"singleUploadLocationSource\":\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\",\"singleUploadLocationSubpath\":\"\",\"source\":null,\"sources\":[\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"],\"targetSiteId\":null,\"useSingleFolder\":false,\"validateRelatedElements\":false,\"viewMode\":\"list\"}','2021-11-09 00:38:43','2021-11-09 00:39:11','24041ec2-da5f-4ff4-82b3-6aba2005647a'),(199,11,'SEO Image description','seoImageDescription','global','leeelags','',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-11-09 00:38:52','2021-11-09 00:38:52','42f55576-0f06-49ff-bc18-627c979de526'),(200,9,'Code output','codeOutput','global','wpcbzido','',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-11-09 23:38:15','2021-11-09 23:38:15','67b36868-9b9f-4ac0-b5d2-6585f5876af2'),(201,12,'Callout button URL','calloutButtonUrl','global','tkecsjfi','',0,'none',NULL,'craft\\fields\\Url','{\"maxLength\":\"255\",\"placeholder\":null,\"types\":[\"url\",\"tel\",\"email\"]}','2021-12-10 01:31:21','2021-12-10 01:31:21','6566ff95-a04d-47e8-b107-3d2222680acf'),(202,12,'Callout text','calloutText','global','krjdawju','',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"1\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-12-10 01:31:21','2021-12-10 01:31:21','3c72aff9-f829-44b4-9d47-b4c571d6607e'),(203,12,'Callout button text','calloutButtonText','global','rmxaccom','',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-12-10 01:31:21','2021-12-10 01:31:21','0b66a65f-3e3d-40b8-b271-c462745f3c3f'),(204,12,'Callout heading','calloutHeading','global','tcitknuf','',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2021-12-10 01:31:22','2021-12-10 01:31:22','862d1737-5597-46a1-b258-ff7ce4042cd3'),(205,13,'Annual revenue target','annualRevenueTarget','global','oqogbzio','',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2022-02-09 00:56:42','2022-02-09 00:56:42','90cf930b-ef6f-426e-8c28-8187ff63ab71'),(206,4,'Invoices','invoices','global',NULL,'',0,'site',NULL,'craft\\fields\\Entries','{\"allowSelfRelations\":false,\"limit\":\"\",\"localizeRelations\":false,\"selectionLabel\":\"\",\"showSiteMenu\":false,\"source\":null,\"sources\":[\"section:8c3cdb18-3061-4d32-8f77-f0250c021ce9\"],\"targetSiteId\":null,\"validateRelatedElements\":false,\"viewMode\":null}','2022-02-09 00:56:42','2022-02-09 00:56:42','2a1ced72-67ce-4040-840f-35e2320e6440'),(207,3,'Monthly budget','monthlyBudget','global','yjuoknoj','',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2022-02-09 00:56:42','2022-02-09 00:56:42','805eaf66-af57-453c-a73e-c4db8393b9eb'),(208,14,'Invoice total','invoiceTotal','global','xomkrqll','',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2022-02-09 00:56:42','2022-02-09 00:56:42','415f2296-3b63-48a1-b5a2-8eb1154b94dd'),(209,14,'Invoice status','invoiceStatus','global','dlunslbe','',1,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2022-02-09 00:56:42','2022-02-09 00:56:42','b0db5971-ba40-4f4c-852e-0e19540f2f4e'),(210,14,'Invoice headline','invoiceHeadline','global','qocjnghn','',0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2022-02-09 00:56:42','2022-02-09 00:56:42','a8f8633d-52f9-4c47-b299-0eb6625cf341'),(211,14,'Invoice ID (Workbook)','invoiceIdWorkbook','global','eyolpzxf','',1,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":\"\",\"columnType\":null,\"initialRows\":\"4\",\"multiline\":\"\",\"placeholder\":null,\"uiMode\":\"normal\"}','2022-02-09 00:56:42','2022-05-09 03:30:34','38294ab1-63f4-4f92-a2b3-a2b21100f2d6'),(212,9,'Spacer','spacer','global','qxsclyly',NULL,0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":false,\"columnType\":null,\"initialRows\":4,\"multiline\":false,\"placeholder\":null,\"uiMode\":\"normal\"}','2022-06-05 23:22:33','2022-06-05 23:22:33','13c5a484-996f-4429-a612-5b251409ca6f'),(213,9,'Accordion content','accordionContent','global',NULL,NULL,0,'site',NULL,'craft\\fields\\Matrix','{\"contentTable\":\"{{%matrixcontent_accordioncontent}}\",\"maxBlocks\":null,\"minBlocks\":null,\"propagationKeyFormat\":null,\"propagationMethod\":\"all\"}','2022-06-05 23:22:33','2022-06-05 23:22:33','a172791e-53b7-44eb-b87b-ab304cd1588f'),(214,NULL,'Button text','buttonText','matrixBlockType:43d21cba-9078-4e32-9e49-fa0d66991417','wwfbjvap',NULL,0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":false,\"columnType\":null,\"initialRows\":4,\"multiline\":false,\"placeholder\":null,\"uiMode\":\"normal\"}','2022-06-05 23:23:58','2022-06-05 23:23:58','4ecf14fc-9c8a-4f62-b669-927408ddea33'),(215,NULL,'Button URL','buttonUrl','matrixBlockType:43d21cba-9078-4e32-9e49-fa0d66991417','zbzseplm',NULL,0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":false,\"columnType\":null,\"initialRows\":4,\"multiline\":false,\"placeholder\":null,\"uiMode\":\"normal\"}','2022-06-05 23:23:58','2022-06-05 23:23:58','45f624eb-f394-4fb8-a0f1-1bf9e8ebcc1e'),(216,NULL,'Title','accordionTitle','matrixBlockType:43d21cba-9078-4e32-9e49-fa0d66991417','incqkijn',NULL,0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":false,\"columnType\":null,\"initialRows\":4,\"multiline\":false,\"placeholder\":null,\"uiMode\":\"normal\"}','2022-06-05 23:23:58','2022-06-05 23:23:58','a2b9e04a-db16-44c3-95a7-6a037f194622'),(217,NULL,'Text','accordionText','matrixBlockType:43d21cba-9078-4e32-9e49-fa0d66991417','eroezkpc',NULL,0,'none',NULL,'craft\\fields\\PlainText','{\"byteLimit\":null,\"charLimit\":null,\"code\":false,\"columnType\":null,\"initialRows\":4,\"multiline\":true,\"placeholder\":null,\"uiMode\":\"normal\"}','2022-06-05 23:23:58','2022-06-05 23:23:58','a2199a45-7aa1-467d-a19c-76a79bb943a2'),(218,12,'Show CTA','showCta','global','kossowoo',NULL,0,'none',NULL,'craft\\fields\\Lightswitch','{\"default\":true,\"offLabel\":null,\"onLabel\":null}','2023-03-01 02:10:38','2023-03-01 02:10:38','e7ac7afe-110f-424b-8df7-cf443f223406'),(219,7,'About Us Image','aboutUsImage','global',NULL,NULL,0,'site',NULL,'craft\\fields\\Assets','{\"allowSelfRelations\":false,\"allowSubfolders\":false,\"allowUploads\":true,\"allowedKinds\":null,\"defaultUploadLocationSource\":\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\",\"defaultUploadLocationSubpath\":null,\"localizeRelations\":false,\"maxRelations\":1,\"minRelations\":null,\"previewMode\":\"full\",\"restrictFiles\":false,\"restrictLocation\":false,\"restrictedDefaultUploadSubpath\":null,\"restrictedLocationSource\":\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\",\"restrictedLocationSubpath\":null,\"selectionCondition\":{\"elementType\":\"craft\\\\elements\\\\Asset\",\"fieldContext\":\"global\",\"class\":\"craft\\\\elements\\\\conditions\\\\assets\\\\AssetCondition\"},\"selectionLabel\":null,\"showSiteMenu\":true,\"showUnpermittedFiles\":false,\"showUnpermittedVolumes\":false,\"source\":null,\"sources\":\"*\",\"targetSiteId\":null,\"validateRelatedElements\":false,\"viewMode\":\"list\"}','2023-03-06 01:30:55','2023-03-06 01:44:14','241ab405-efc4-472d-a5a8-f23edb2ad1da'),(220,7,'Main Page Image','mainPageImage','global',NULL,NULL,0,'site',NULL,'craft\\fields\\Assets','{\"allowSelfRelations\":false,\"allowSubfolders\":false,\"allowUploads\":true,\"allowedKinds\":null,\"defaultUploadLocationSource\":\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\",\"defaultUploadLocationSubpath\":null,\"localizeRelations\":false,\"maxRelations\":1,\"minRelations\":null,\"previewMode\":\"full\",\"restrictFiles\":false,\"restrictLocation\":false,\"restrictedDefaultUploadSubpath\":null,\"restrictedLocationSource\":\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\",\"restrictedLocationSubpath\":null,\"selectionCondition\":{\"elementType\":\"craft\\\\elements\\\\Asset\",\"fieldContext\":\"global\",\"class\":\"craft\\\\elements\\\\conditions\\\\assets\\\\AssetCondition\"},\"selectionLabel\":null,\"showSiteMenu\":true,\"showUnpermittedFiles\":false,\"showUnpermittedVolumes\":false,\"source\":null,\"sources\":\"*\",\"targetSiteId\":null,\"validateRelatedElements\":false,\"viewMode\":\"list\"}','2023-03-06 01:31:10','2023-03-06 01:44:18','819e9bb3-711d-4ca1-aa03-f00b24f3b68a');
/*!40000 ALTER TABLE `fields` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `freeform_crm_fields`
--

LOCK TABLES `freeform_crm_fields` WRITE;
/*!40000 ALTER TABLE `freeform_crm_fields` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `freeform_crm_fields` VALUES (1,1,'Original Source Type (Deal)','deal___hs_analytics_source','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','49fd2cc0-a658-4c85-b4b4-9d2a8d3f1f92'),(2,1,'Deal probability (Deal)','deal___hs_deal_stage_probability','numeric',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','d49f0c49-4d06-40ae-a68c-5101c09b20ca'),(3,1,'Forecast probability (Deal)','deal___hs_forecast_probability','numeric',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','2b246ba5-8ed0-46d1-8ddb-30bd57a6c223'),(4,1,'Forecast category (Deal)','deal___hs_manual_forecast_category','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','09899017-941e-497d-833c-83c0ce660401'),(5,1,'Next step (Deal)','deal___hs_next_step','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','7f2c54a3-1d70-4708-aaf6-2406eb0a0a91'),(6,1,'Priority (Deal)','deal___hs_priority','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','af329629-2ef6-4220-80cc-b326ea2b16dc'),(7,1,'Deal Name (Deal)','deal___dealname','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','0de18605-1ce5-4ecb-bd3b-d7625d27d849'),(8,1,'Amount (Deal)','deal___amount','numeric',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','42c59fe5-4f0b-4106-a334-dd2293b501bf'),(9,1,'Deal Stage (Deal)','deal___dealstage','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','51697ad8-4d82-4b28-b33a-cefee0b4c761'),(10,1,'Pipeline (Deal)','deal___pipeline','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','385d36c2-c146-40ef-a0f8-e8121e10e816'),(11,1,'Close Date (Deal)','deal___closedate','microtime',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','f8c28fb7-6fb8-4c12-8293-91fecc37eb1d'),(12,1,'Create Date (Deal)','deal___createdate','microtime',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','7950b658-e8da-416e-9ee8-1c68a3db4a4c'),(13,1,'Deal owner (Deal)','deal___hubspot_owner_id','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','3625e8e4-8522-429b-b997-b5970c4e8685'),(14,1,'Deal Type (Deal)','deal___dealtype','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','52d0bf44-518f-4300-a350-9bec1f2740d6'),(15,1,'Deal Description (Deal)','deal___description','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','46a82615-b8c9-486c-87c9-4b35c49bd9b3'),(16,1,'Closed Lost Reason (Deal)','deal___closed_lost_reason','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','b7678b08-b705-4773-b41b-18c6f8d7ee3f'),(17,1,'Closed Won Reason (Deal)','deal___closed_won_reason','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','184f4b66-097c-426d-8a81-8deb965532c7'),(18,1,'Are your details up to date (Contact)','contact___are_your_details_up_to_date','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','39410d30-a1d3-4994-be9a-29816eab5903'),(19,1,'Company size (Contact)','contact___company_size','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','3f935cf7-a533-40e1-98cb-00c4050d02e6'),(20,1,'Date of birth (Contact)','contact___date_of_birth','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','ef3f78a6-ac86-4631-bb80-2efb06bd408e'),(21,1,'Degree (Contact)','contact___degree','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','c4d1fce7-8284-4a59-a2b9-170561b6815b'),(22,1,'Field of study (Contact)','contact___field_of_study','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','9575c501-879d-48cc-a34d-48ac829af6a2'),(23,1,'Gender (Contact)','contact___gender','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','4f05a27f-4fa1-4c1d-aa5e-e6449b78209f'),(24,1,'Government department (Contact)','contact___government_department','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','7bc99b45-67f5-4e7f-ae17-eec14f164c97'),(25,1,'Graduation date (Contact)','contact___graduation_date','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','43e67548-60bf-49de-981f-94413885853a'),(26,1,'Hard Bounced Email Address (Contact)','contact___hard_bounced_email_address','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','132f7220-ef4a-49c4-8a7a-d6416d3823aa'),(27,1,'Buying Role (Contact)','contact___hs_buying_role','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','c175e04f-8256-45fb-98da-6fe9ab324970'),(28,1,'Membership Notes (Contact)','contact___hs_content_membership_notes','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','ed5a142d-8d7e-4505-873c-f0648be5f7e5'),(29,1,'Status (Contact)','contact___hs_content_membership_status','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','6cebdb91-30a2-4639-bf00-312e0fde998f'),(30,1,'Email address quarantine reason (Contact)','contact___hs_email_customer_quarantined_reason','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','078fd210-879c-4fad-948d-86543a2eec0c'),(31,1,'Facebook click id (Contact)','contact___hs_facebook_click_id','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','ca4e1e82-43fb-4b0d-83a6-9901d05e072e'),(32,1,'Google ad click id (Contact)','contact___hs_google_click_id','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','2eba414b-dd1f-49e9-9f3d-0755a109cabb'),(33,1,'Lead Status (Contact)','contact___hs_lead_status','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','c6f7512e-c05b-4a42-84ca-8c032910477a'),(34,1,'Legal basis for processing contact\'s data (Contact)','contact___hs_legal_basis','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','a81ad1e5-5c76-400c-a286-b6d22eeb3fcf'),(35,1,'Time between contact creation and deal close (Contact)','contact___hs_time_between_contact_creation_and_deal_close','numeric',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','da3543ad-0738-4961-8e54-3048c251b569'),(36,1,'Time between contact creation and deal creation (Contact)','contact___hs_time_between_contact_creation_and_deal_creation','numeric',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','4207a69c-ce73-417a-a19b-ab8fbf500277'),(37,1,'Time to move from lead to customer (Contact)','contact___hs_time_to_move_from_lead_to_customer','numeric',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','49a1d80e-5161-4b1e-852f-af8745d9f46b'),(38,1,'Time to move from marketing qualified lead to customer (Contact)','contact___hs_time_to_move_from_marketingqualifiedlead_to_customer','numeric',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','f001570d-a5d8-4272-bdee-effe45693d11'),(39,1,'Time to move from opportunity to customer (Contact)','contact___hs_time_to_move_from_opportunity_to_customer','numeric',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','e977720a-a6e6-4669-87e8-f43f4afcbaa3'),(40,1,'Time to move from sales qualified lead to customer (Contact)','contact___hs_time_to_move_from_salesqualifiedlead_to_customer','numeric',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','5582fd51-29d6-4118-9813-e8d3102887d6'),(41,1,'Time to move from subscriber to customer (Contact)','contact___hs_time_to_move_from_subscriber_to_customer','numeric',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','adf1c3e6-2bdd-4a5a-8092-7d243ed31548'),(42,1,'Time Zone (Contact)','contact___hs_timezone','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','2a99b621-b2e3-4304-a262-063bf38cdcab'),(43,1,'Is Unsubscribed (Contact)','contact___is_unsubscribed','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','7b052668-51b6-4fc3-b3fc-fa62f8ba46ed'),(44,1,'Job function (Contact)','contact___job_function','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','9f8fa98d-9d2f-4dbd-bcdf-f672a72f3455'),(45,1,'Marital Status (Contact)','contact___marital_status','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','359091a4-681d-4fcd-a25c-3331fbd8da45'),(46,1,'Military status (Contact)','contact___military_status','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','171a2422-337a-4151-a766-ea30c919967f'),(47,1,'Ready for a proposal (Contact)','contact___ready_for_a_proposal','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','47e29e7b-9f0e-43ef-a69e-40942a68e26b'),(48,1,'Relationship Status (Contact)','contact___relationship_status','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','469eedab-2899-41fd-8bd7-8549a5469920'),(49,1,'School (Contact)','contact___school','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','df6cc866-3d05-4bc5-9643-d382acfebcb0'),(50,1,'Seniority (Contact)','contact___seniority','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','cfd5eb77-63f7-4acb-9861-9b1be08ca427'),(51,1,'Start date (Contact)','contact___start_date','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','774cb26c-cb41-44d6-8030-0f7b3620995a'),(52,1,'Tell us a bit about your brand (Contact)','contact___tell_us_a_bit_about_your_brand','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','f1ead2ab-8292-41b0-9b0d-4ab0a2189972'),(53,1,'WB Resource Business Id (Contact)','contact___wb_resource_business_id','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','9086e37b-967e-4107-a772-6eaa78c6fe7b'),(54,1,'WB resource type id (Contact)','contact___wb_resource_type_id','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','4d507bda-2847-4d3c-9a4f-d522db8ba29b'),(55,1,'Work email (Contact)','contact___work_email','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','125a301e-1de8-4e56-87bf-ba86a95f2b95'),(56,1,'First Name (Contact)','contact___firstname','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','ef1e4893-aef1-41de-82a8-32f42cbaf21c'),(57,1,'Twitter Username (Contact)','contact___twitterhandle','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','5cb3508e-ae77-4e48-a43c-f3ed2084584e'),(58,1,'Last Name (Contact)','contact___lastname','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','0b70c1c7-8d80-4302-af20-080544e583b5'),(59,1,'Registration Action (Contact)','contact___partner_registration_action','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','c3847fbd-7c95-48f7-9ad0-671d1e140d37'),(60,1,'Salutation (Contact)','contact___salutation','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','2108f92f-e786-4f5e-ac90-30349c630515'),(61,1,'Email (Contact)','contact___email','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','8e39ba62-23d2-405a-8ae4-f1e4e0944b2a'),(62,1,'Persona (Contact)','contact___hs_persona','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','4664123f-e1c2-429f-8888-e07b310e9c8d'),(63,1,'Mobile Phone Number (Contact)','contact___mobilephone','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','4a040ab3-10d8-481a-924a-c11c24440d7a'),(64,1,'Phone Number (Contact)','contact___phone','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','ac7ec8cf-b86d-4fec-9ad2-dc9a3a7fc6fe'),(65,1,'Fax Number (Contact)','contact___fax','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','cdc676d1-a8f0-4921-a38a-8362884acc10'),(66,1,'Street Address (Contact)','contact___address','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','f59de610-2a50-43c5-a6c0-e0022ab7aa33'),(67,1,'Contact owner (Contact)','contact___hubspot_owner_id','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','7ccbd4c9-a399-4eaa-aa5c-32734acdd763'),(68,1,'City (Contact)','contact___city','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','9799cc0c-2c42-442d-ac53-29aeb6b74953'),(69,1,'State/Region (Contact)','contact___state','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','4df3cff3-e7e8-4756-b331-b836f39ceaca'),(70,1,'Original Source (Contact)','contact___hs_analytics_source','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','b4ed07b1-ace8-4264-bef3-4bcbf853654b'),(71,1,'Latest Source (Contact)','contact___hs_latest_source','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','0150f92b-d296-4dda-9ac2-591edc2702af'),(72,1,'Postal Code (Contact)','contact___zip','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','0351ce5f-1ee7-47cf-af25-cbacbc5773f7'),(73,1,'Country/Region (Contact)','contact___country','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','70c3e698-d364-4a8a-9c53-2c38ce11ab00'),(74,1,'Preferred language (Contact)','contact___hs_language','string',0,'2021-12-09 23:57:07','2021-12-09 23:57:07','a9fed566-dcf7-46b1-aa17-d13e31f3bbea'),(75,1,'Job Title (Contact)','contact___jobtitle','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','3ca04bd2-9329-4481-8a7d-9debf97818f7'),(76,1,'Message (Contact)','contact___message','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','127010b1-c99a-48ce-a4c0-2c6cb8e13341'),(77,1,'Close Date (Contact)','contact___closedate','microtime',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','d18d6382-e784-4408-8a93-4512839e4a60'),(78,1,'Lifecycle Stage (Contact)','contact___lifecyclestage','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','9db7a631-2754-495f-bd3b-54c8a3241399'),(79,1,'Company Name (Contact)','contact___company','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','19e21052-b42b-4183-97e7-52dcc85abb05'),(80,1,'Website URL (Contact)','contact___website','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','7e5760cf-a272-4393-85b2-f99149efd80b'),(81,1,'Number of Employees (Contact)','contact___numemployees','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','201871f3-9c38-42a4-a596-49959a730fc1'),(82,1,'Annual Revenue (Contact)','contact___annualrevenue','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','7ae84c02-ecb4-4907-aa63-c0480e5cbd70'),(83,1,'Industry (Contact)','contact___industry','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','91bdcfbf-f793-4819-85a0-1e7e2f030d2c'),(84,1,'About Us (Company)','company___about_us','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','9625987e-ded7-4f0e-be2b-3e725ce833ce'),(85,1,'Facebook Fans (Company)','company___facebookfans','numeric',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','6daf45b2-99f3-49af-a3e2-39c3758eeb4a'),(86,1,'Year Founded (Company)','company___founded_year','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','7d6d8a47-b73d-4282-b22a-2c6f82eaed6b'),(87,1,'Original Source Type (Company)','company___hs_analytics_source','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','ff1de1f6-adde-4985-84e5-b71a565c3fee'),(88,1,'Ideal Customer Profile Tier (Company)','company___hs_ideal_customer_profile','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','0b3bf139-8b84-427a-b880-bd858eba2810'),(89,1,'Target Account (Company)','company___hs_is_target_account','boolean',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','ada89dd8-5ec6-4931-8852-dfc3f2468701'),(90,1,'Is Public (Company)','company___is_public','boolean',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','b36b72c8-6813-4e22-8217-c97b35301be5'),(91,1,'Time Zone (Company)','company___timezone','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','10547398-d715-463d-b8f7-01a8076da343'),(92,1,'Total Money Raised (Company)','company___total_money_raised','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','c525d5c7-708c-45eb-ac9a-e1dc954491bd'),(93,1,'Company name (Company)','company___name','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','b5d3cf71-74d6-452c-983a-1b49843ea742'),(94,1,'Twitter Handle (Company)','company___twitterhandle','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','70230118-1c05-4ac4-a7cd-c9845bd94cb0'),(95,1,'Phone Number (Company)','company___phone','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','83755cb2-8e11-40dd-bb0e-24fb6901cd8e'),(96,1,'Twitter Bio (Company)','company___twitterbio','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','9f78d982-7793-4e40-bf22-17de8d6a65f5'),(97,1,'Twitter Followers (Company)','company___twitterfollowers','numeric',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','6c1456bf-77e9-4881-8fb7-ecb766600538'),(98,1,'Street Address (Company)','company___address','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','6cc93ec5-8257-4055-9286-16f1510e68f0'),(99,1,'Street Address 2 (Company)','company___address2','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','95bffe90-da3b-4212-90d3-64cbf8f18d91'),(100,1,'Facebook Company Page (Company)','company___facebook_company_page','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','007f309a-17a1-4382-835e-78120bc09273'),(101,1,'City (Company)','company___city','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','98519abd-a446-4664-8e27-63857fe66e24'),(102,1,'LinkedIn Company Page (Company)','company___linkedin_company_page','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','b96ad013-62a8-4ce6-a528-4c6f9aeac4d3'),(103,1,'LinkedIn Bio (Company)','company___linkedinbio','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','1db6085b-c7cb-416f-bbe5-22982f70d57e'),(104,1,'State/Region (Company)','company___state','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','f02b7120-5433-4455-800d-a873fee78047'),(105,1,'Google Plus Page (Company)','company___googleplus_page','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','a0ab5fc4-f112-4ea9-9528-8ceb34cd249a'),(106,1,'Company owner (Company)','company___hubspot_owner_id','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','bbd929d5-b08f-452c-8ed4-c2cb405ef7d2'),(107,1,'Postal Code (Company)','company___zip','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','ee06ae50-5bc7-4e87-a52d-2e114135aeb2'),(108,1,'Country/Region (Company)','company___country','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','ea25ecc7-e727-40db-bcc3-644c0dedf9e3'),(109,1,'Website URL (Company)','company___website','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','c99e338b-f8e5-4fac-a047-c13fcee8d81b'),(110,1,'Company Domain Name (Company)','company___domain','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','a618be5e-5699-4c0a-86bc-4bc6ea177b23'),(111,1,'Number of Employees (Company)','company___numberofemployees','numeric',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','4ce6895b-7266-4337-95cd-fe0ccab78412'),(112,1,'Industry (Company)','company___industry','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','93c51b83-3609-456a-a7ef-4eff5843906c'),(113,1,'Annual Revenue (Company)','company___annualrevenue','numeric',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','723df70b-2af1-4832-9c4d-af770ffe1ca3'),(114,1,'Lifecycle Stage (Company)','company___lifecyclestage','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','8e4af079-d880-45ad-8616-0efc8ec8bc0e'),(115,1,'Lead Status (Company)','company___hs_lead_status','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','01d1e52c-af51-41cf-8c42-2f9586502827'),(116,1,'Type (Company)','company___type','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','ab227c67-8250-4778-a0bc-ed26f2b4d1d7'),(117,1,'Description (Company)','company___description','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','4437cc54-1df9-4ee0-aa8d-4ca76eb7c6af'),(118,1,'Close Date (Company)','company___closedate','microtime',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','5ad4eaf8-d3cc-4858-affc-a2dcbaed2bbb'),(119,1,'Web Technologies (Company)','company___web_technologies','string',0,'2021-12-09 23:57:08','2021-12-09 23:57:08','a030a55e-a6c8-4a9e-bc6c-aea1c041586b');
/*!40000 ALTER TABLE `freeform_crm_fields` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `freeform_export_notifications`
--

LOCK TABLES `freeform_export_notifications` WRITE;
/*!40000 ALTER TABLE `freeform_export_notifications` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `freeform_export_notifications` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `freeform_export_profiles`
--

LOCK TABLES `freeform_export_profiles` WRITE;
/*!40000 ALTER TABLE `freeform_export_profiles` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `freeform_export_profiles` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `freeform_export_settings`
--

LOCK TABLES `freeform_export_settings` WRITE;
/*!40000 ALTER TABLE `freeform_export_settings` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `freeform_export_settings` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `freeform_feed_messages`
--

LOCK TABLES `freeform_feed_messages` WRITE;
/*!40000 ALTER TABLE `freeform_feed_messages` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `freeform_feed_messages` VALUES (1,1,'Added the ability to edit other Craft Elements, including special support for Craft Users (Pro).','[]','new',1,'2021-04-20 13:00:00','2021-04-22 02:50:25','2021-12-09 23:54:08','9679a6cf-d368-482f-b2ef-577a46d7cee5'),(2,1,'Added the ability to map to Calendar Events with the Element Connections feature (Pro).','[]','new',1,'2021-04-20 13:00:00','2021-04-22 02:50:25','2021-12-09 23:54:08','ab48ac5c-35ef-43f6-8254-bf2d98209cbc'),(3,1,'Added a full-screen HTML & Twig and Rich Text editor inside the form builder.','[]','new',1,'2021-04-20 13:00:00','2021-04-22 02:50:25','2021-12-09 23:54:08','adeed11c-4531-47dd-b8be-3585aeb46006'),(4,1,'Added the ability to update file-based email notification templates directly inside the CP (optional). Included a migration tool for migrating from Database to File-based email notifications.','[]','new',1,'2021-04-20 13:00:00','2021-04-22 02:50:25','2021-12-09 23:54:08','cba3df22-306a-4913-8266-327ecf9480e8'),(5,1,'Added support for searching by submissions\' field values in the CP Submissions index.','[]','new',1,'2021-04-20 13:00:00','2021-04-22 02:50:25','2021-12-09 23:54:08','9bc1d711-7ab3-45d3-93b9-9d96543e82e0'),(6,1,'Added more granular submission viewing and management permissions. You can now set read-only permissions in addition to management permissions.','[]','new',1,'2021-04-20 13:00:00','2021-04-22 02:50:25','2021-12-09 23:54:08','ac8d7584-a6da-40d4-8515-853357d8fcd0'),(7,1,'Added a setting that allows you to optionally restrict the Forms element field type to only show forms which the user has manage permissions for.','[]','new',1,'2021-04-20 13:00:00','2021-04-22 02:50:25','2021-12-09 23:54:08','a3fa1b97-3174-49b6-8471-4f5d4c57bcf7'),(8,1,'Added ability to load reCAPTCHA scripts (and checkbox field if using v2 Checkbox) only once the site visitor interacts with the form.','[]','new',1,'2021-04-20 13:00:00','2021-04-22 02:50:25','2021-12-09 23:54:08','7e70c1a4-a818-4e77-a8b9-5dfa80b437e2'),(9,1,'Added export profile developer events, allowing the addition of custom exporters.','[]','new',1,'2021-04-20 13:00:00','2021-04-22 02:50:25','2021-12-09 23:54:08','de96a401-5cbc-436d-9fe7-0a64c849c460'),(10,1,'Various improvements to Freeform\'s JS, including optimization to no longer include excess polyfills, no longer fetching field-specific scripts if the fields aren\'t present in the form, loading the JS as a separate \'freeform/plugin.js\' file path, and \'freeform.loadFreeformPlugin()\' to load the JS manually in your template.','[]','new',1,'2021-04-20 13:00:00','2021-04-22 02:50:25','2021-12-09 23:54:08','956b3447-a4ac-456c-8dd3-f38c822913b4'),(11,2,'Freeform 3.11+ introduced changes to how its front-end scripts are inserted into pages (as static URLs). If you have server rules applied to JS and CSS files, you may run into issues. If this is the case, please upgrade to Freeform 3.11.2 immediately, and then switch the behavior back to previous approaches (\'As Files\' introduced in 3.10 or \'Inline\' as it worked previously before 3.10+). This is a new \'Freeform Script Insert Type\' setting available in the General Settings of Freeform 3.11.2 or with Project Config as `scriptInsertType: files`.','[]','warning',1,'2021-04-28 13:00:00','2021-04-28 20:42:32','2021-12-09 23:54:03','84c92b42-c849-43b7-b27f-74828460e765'),(12,5,'The Freeform 3.12 beta is now underway! New features include a new Drag & Drop File Upload field type, improved form processing, self-diagnostics page and many other additions, improvements and fixes! If you\'d like to be a part of the 3.12 beta, please visit the following page for instructions and more details: https://docs.solspace.com/craft/freeform/v3/setup/betas.html','[]','info',1,'2021-09-02 13:03:00','2021-09-02 23:47:16','2021-12-09 23:54:03','19c8c3df-d382-4ded-aa0d-c82cbd1f5733'),(13,6,'Check out the Freeform 3.12 beta! It includes a new SAVE & CONTINUE LATER feature that allows your users to save their form progress and come back at a later time to complete the form! Also included is a new PREMIUM FILE UPLOAD field type that shows file thumbnails and upload progress, as well as memory of the uploaded file(s) if there\'s an error on submit or editing an existing submission, etc. If you\'d like to be a part of the 3.12 beta, please visit the following page for instructions and more details: https://docs.solspace.com/craft/freeform/v3/setup/betas.html','[]','info',1,'2021-11-05 13:00:00','2021-11-07 11:59:04','2021-12-09 23:54:03','3f9710a0-1af5-463d-88f6-3b98693e8bc6'),(14,7,'Freeform 3.12 is now available! It includes a wide range of new features and significant improvements to performance and reliability. Introducing the new SAVE & CONTINUE LATER feature that allows your users to save their form progress and come back at a later time to complete the form! Also included is the ability to limit how many submissions a form can have and a new PREMIUM FILE UPLOAD field type that shows file thumbnails and upload progress, as well as memory of the uploaded file(s) if there\'s an error on submit or editing an existing submission, etc.','[]','info',1,'2021-11-14 14:00:00','2021-11-15 04:29:48','2021-12-09 23:54:03','6aea38ed-4438-41ca-8c77-b5a11ecf39ac'),(15,12,'If you are using single checkbox fields with any of your multi-page forms, there may be a problem. In Freeform 3.12.0-3.12.7, multi-page forms that contain checkboxes will always save to the database as checked, even if they were not checked by the submitter. Please update to Freeform 3.12.8+ as soon as possible.','[\"forms.multiPage == true\"]','warning',1,'2021-12-02 14:00:00','2021-12-03 01:49:26','2021-12-09 23:54:03','d6efd546-db59-48f2-9ed9-5f4c763f1266'),(16,13,'Would you be willing to take a few minutes to complete a survey about your experience with Freeform? We value your feedback and you will also be entered into a draw to win a $100* Amazon gift card! It should only take a couple of minutes and you can remain anonymous if you like. Visit the following link to complete: https://solspace.typeform.com/to/ajYYOwK2\n  *For those participants outside the USA, we can provide an Amazon gift card suitable for your country of residence.','[]','info',0,'2022-01-20 14:00:00','2022-01-20 22:02:10','2022-01-20 22:02:10','29bc99a7-655d-43bf-8fa5-877b122dc392'),(17,14,'Freeform 3.13 is now available! Exciting new features include handling Success Behavior of forms directly inside the form builder, the ability to set Close Dates on forms, restrict forms to logged-in users only (and other combinations), storing of author IDs of logged-in users that submit forms (and accessing that author data throughout the control panel and front end), and the addition of the Surveys & Polls form type! For more information, visit: https://docs.solspace.com/freeform/news','[]','info',0,'2022-02-28 14:00:00','2022-02-28 18:05:16','2022-02-28 18:05:16','81dcdc77-22cf-4200-991e-ba0348c701e5'),(18,18,'It appears that your site is using an older HubSpot CRM integration. HubSpot recently announced that they have switched from API Key authentication to Private Apps. Any existing integration must be switched before November 30, 2022. This change will break existing integrations and requires an update to Freeform to fix the connection. Please update Freeform to 4.0.1 or greater and follow the special instructions here: https://docs.solspace.com/freeform/hubspot-update','[\"\\\"Solspace\\\\\\\\Freeform\\\\\\\\Integrations\\\\\\\\CRM\\\\\\\\HubSpot\\\" in general.crm\"]','critical',0,'2022-09-01 13:00:00','2022-09-01 22:04:14','2022-09-01 22:04:14','e3188000-717f-4256-a7a3-b7789e278ba4'),(19,20,'In Craft 4.3.2+, the links to view and edit individual submissions in the control panel have disappeared. To resolve this issue, please update to Freeform 4.0.8+.','[\"system.craftVersion matches \'/^4\\\\.3(\\\\..*)?/\'\"]','critical',0,'2022-11-21 13:00:00','2022-11-21 20:38:15','2022-11-21 20:38:15','a88c7cec-fe02-43ca-b4fb-8f68b1bbb651');
/*!40000 ALTER TABLE `freeform_feed_messages` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `freeform_feeds`
--

LOCK TABLES `freeform_feeds` WRITE;
/*!40000 ALTER TABLE `freeform_feeds` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `freeform_feeds` VALUES (1,'77b09f1c-f154-4511-806f-823859ade875','3.11.0','3.99.999','2021-04-20 13:00:00','2021-04-22 02:50:24','2021-04-22 02:50:24','92a6a1c3-2f95-4891-ab58-b0ddfbfa63f7'),(2,'845bd916-c335-4d28-a447-285a2cdf646f','3.11.0','3.11.1','2021-04-28 13:00:00','2021-04-28 20:42:32','2021-04-28 20:42:32','27a94bff-a846-4a58-aa06-a1b641e5d217'),(3,'4db9825a-9de7-424c-9650-a10a4fa6bd1d','3.11.4','3.11.4','2021-05-12 13:00:00','2021-05-14 07:03:58','2021-05-14 07:03:58','d8839388-7466-4f75-863b-40dc8dc89d02'),(4,'5fa56fd2-66d5-4690-a338-1e2ed6828089','3.0.0','3.99.999','2021-07-28 20:00:00','2021-07-29 02:04:36','2021-07-29 02:04:36','a9735ae1-be5e-4865-9f74-bdbfcb886a5a'),(5,'03c27c55-1086-4ef4-bbdd-c6bdb9bb81f8','3.9.0','3.11.999','2021-09-02 13:03:00','2021-09-02 23:47:16','2021-09-02 23:47:16','a1099055-0b1b-4c77-abe9-62b21d8b5163'),(6,'cb4c53e0-5985-48d6-bb00-93b684e671b6','3.9.0','3.11.999','2021-11-05 13:00:00','2021-11-07 11:59:03','2021-11-07 11:59:03','cf2a066c-fa0f-4b06-9607-6a8bf6d2aa16'),(7,'e39c5581-e190-4b33-92f2-9905b53633c9','3.9.0','3.11.999','2021-11-14 14:00:00','2021-11-15 04:29:47','2021-11-15 04:29:47','b8298542-3dd5-407f-93a7-ca0c7cd64175'),(8,'30253a59-3776-4317-9867-5330f81db943','3.12.0','3.12.2','2021-11-17 14:00:00','2021-11-22 06:55:15','2021-11-22 06:55:15','bd4e5e80-3ed2-4c8a-ab72-c391162bef6a'),(9,'f423ac03-b1bf-4887-81eb-aee9b4354bbf','3.12.0','3.12.1','2021-11-15 14:00:00','2021-11-22 06:55:15','2021-11-22 06:55:15','86f0b110-d23a-44f5-a818-6086a3c4092e'),(10,'15f71ba5-c7ce-4b81-9d8e-d440c79cec7f','3.12.0','3.12.5','2021-11-23 14:00:00','2021-11-24 05:24:55','2021-11-24 05:24:55','a317dd1c-c959-47a4-9fa3-03c1cb60c7ea'),(11,'83bee860-73d6-4212-bf07-ee446dbfa245','3.12.0','3.12.5','2021-11-23 14:00:00','2021-11-24 05:24:56','2021-11-24 05:24:56','ea2c87cf-9752-49e5-995d-a8e6e2d8b7ec'),(12,'58735cf1-110d-40c7-ab14-98ded011a209','3.12.0','3.12.7','2021-12-02 14:00:00','2021-12-03 01:49:26','2021-12-03 01:49:26','6a073029-8dfd-4725-bc9a-858de53aae7a'),(13,'056e7564-9a99-4f48-b60f-40bf3c38c223','3.0.0','3.99.999','2022-01-20 14:00:00','2022-01-20 22:02:10','2022-01-20 22:02:10','919eb870-1426-4543-ad26-5ba8aada0049'),(14,'12d780fc-3732-4425-a3be-6598c98a6d2f','3.9.0','3.12.999','2022-02-28 14:00:00','2022-02-28 18:05:16','2022-02-28 18:05:16','a10c3ebf-71e3-43ad-b7c9-12d26da0e9c6'),(15,'25effcd9-bb83-480d-8c43-2a810163dff0','3.0.0','3.13.3','2022-03-05 14:00:00','2022-03-05 23:16:15','2022-03-05 23:16:15','4aa41ac8-5e03-4049-ba1d-ea825ef5f098'),(16,'1d8d4ddc-3691-43b3-b471-2ba038bcaf77','3.13.0','3.13.2','2022-03-03 14:00:00','2022-03-10 03:23:15','2022-03-10 03:23:15','e027f873-88d2-4924-a07d-eb7383454c77'),(17,'0013c979-5491-4625-a94b-47c9b5b94e86','3.13.0','3.13.0','2022-02-28 15:00:00','2022-03-10 03:23:15','2022-03-10 03:23:15','f2265cdd-5959-40fe-9289-81cc44c2940f'),(18,'06c52295-d785-4871-85ce-313a188f74ca','4.0.0-beta.1','4.99.999','2022-09-01 13:00:00','2022-09-01 22:04:14','2022-09-01 22:04:14','195addf2-0394-46d1-a070-ecdffd019211'),(19,'317c748f-464f-4e00-b0da-324a65fd98ea','3.0.0','3.99.999','2022-09-01 13:00:00','2022-09-01 22:04:14','2022-09-01 22:04:14','4121c00a-b1fa-4e7a-acd2-a86a264fbe01'),(20,'12594fb0-abb3-4a06-af1e-7909b487dd2e','4.0.0','4.0.7','2022-11-21 13:00:00','2022-11-21 20:38:15','2022-11-21 20:38:15','fa3fa82c-507b-4809-a741-1e36cb6dfb5b');
/*!40000 ALTER TABLE `freeform_feeds` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `freeform_fields`
--

LOCK TABLES `freeform_fields` WRITE;
/*!40000 ALTER TABLE `freeform_fields` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `freeform_fields` VALUES (1,'text','firstName','First Name',0,NULL,NULL,'2021-04-20 06:16:32','2021-04-20 06:16:32','ae8f94ad-a96a-4338-81ca-f751caff8808'),(2,'text','lastName','Last Name',0,NULL,NULL,'2021-04-20 06:16:32','2021-04-20 06:16:32','50f3ce7e-b683-4e0c-a2a2-fc3d2c2219cc'),(3,'email','email','Email',0,NULL,NULL,'2021-04-20 06:16:32','2021-04-20 06:16:32','8a2164b4-304b-41ca-bcf8-389fb8d9bea5'),(4,'text','website','Website',0,NULL,NULL,'2021-04-20 06:16:33','2021-04-20 06:16:33','7c30da81-a253-4cd7-9e78-827ab74dc897'),(5,'text','cellPhone','Cell Phone',0,NULL,NULL,'2021-04-20 06:16:33','2021-04-20 06:16:33','5fe3b40f-4a1c-4a99-a5e6-0bf062886ae8'),(6,'text','homePhone','Home Phone',0,NULL,NULL,'2021-04-20 06:16:33','2021-04-20 06:16:33','80e7790a-6eca-4b51-bb5b-39c0f2a5ac27'),(7,'text','companyName','Company Name',0,NULL,NULL,'2021-04-20 06:16:34','2021-04-20 06:16:34','2ddd7f1a-7ef4-4245-a174-a4b028efb321'),(8,'textarea','address','Address',0,NULL,'{\"rows\":2}','2021-04-20 06:16:34','2021-04-20 06:16:34','63902044-c81d-4d7c-845a-7f64a18f3a6a'),(9,'text','city','City',0,NULL,NULL,'2021-04-20 06:16:34','2021-04-20 06:16:34','61696805-1a9b-440a-8b1b-6344e86d495b'),(10,'select','state','State',0,NULL,'{\"options\":[{\"value\":\"\",\"label\":\"Select a State\"},{\"value\":\"AL\",\"label\":\"Alabama\"},{\"value\":\"AK\",\"label\":\"Alaska\"},{\"value\":\"AZ\",\"label\":\"Arizona\"},{\"value\":\"AR\",\"label\":\"Arkansas\"},{\"value\":\"CA\",\"label\":\"California\"},{\"value\":\"CO\",\"label\":\"Colorado\"},{\"value\":\"CT\",\"label\":\"Connecticut\"},{\"value\":\"DE\",\"label\":\"Delaware\"},{\"value\":\"DC\",\"label\":\"District of Columbia\"},{\"value\":\"FL\",\"label\":\"Florida\"},{\"value\":\"GA\",\"label\":\"Georgia\"},{\"value\":\"HI\",\"label\":\"Hawaii\"},{\"value\":\"ID\",\"label\":\"Idaho\"},{\"value\":\"IL\",\"label\":\"Illinois\"},{\"value\":\"IN\",\"label\":\"Indiana\"},{\"value\":\"IA\",\"label\":\"Iowa\"},{\"value\":\"KS\",\"label\":\"Kansas\"},{\"value\":\"KY\",\"label\":\"Kentucky\"},{\"value\":\"LA\",\"label\":\"Louisiana\"},{\"value\":\"ME\",\"label\":\"Maine\"},{\"value\":\"MD\",\"label\":\"Maryland\"},{\"value\":\"MA\",\"label\":\"Massachusetts\"},{\"value\":\"MI\",\"label\":\"Michigan\"},{\"value\":\"MN\",\"label\":\"Minnesota\"},{\"value\":\"MS\",\"label\":\"Mississippi\"},{\"value\":\"MO\",\"label\":\"Missouri\"},{\"value\":\"MT\",\"label\":\"Montana\"},{\"value\":\"NE\",\"label\":\"Nebraska\"},{\"value\":\"NV\",\"label\":\"Nevada\"},{\"value\":\"NH\",\"label\":\"New Hampshire\"},{\"value\":\"NJ\",\"label\":\"New Jersey\"},{\"value\":\"NM\",\"label\":\"New Mexico\"},{\"value\":\"NY\",\"label\":\"New York\"},{\"value\":\"NC\",\"label\":\"North Carolina\"},{\"value\":\"ND\",\"label\":\"North Dakota\"},{\"value\":\"OH\",\"label\":\"Ohio\"},{\"value\":\"OK\",\"label\":\"Oklahoma\"},{\"value\":\"OR\",\"label\":\"Oregon\"},{\"value\":\"PA\",\"label\":\"Pennsylvania\"},{\"value\":\"RI\",\"label\":\"Rhode Island\"},{\"value\":\"SC\",\"label\":\"South Carolina\"},{\"value\":\"SD\",\"label\":\"South Dakota\"},{\"value\":\"TN\",\"label\":\"Tennessee\"},{\"value\":\"TX\",\"label\":\"Texas\"},{\"value\":\"UT\",\"label\":\"Utah\"},{\"value\":\"VT\",\"label\":\"Vermont\"},{\"value\":\"VA\",\"label\":\"Virginia\"},{\"value\":\"WA\",\"label\":\"Washington\"},{\"value\":\"WV\",\"label\":\"West Virginia\"},{\"value\":\"WI\",\"label\":\"Wisconsin\"},{\"value\":\"WY\",\"label\":\"Wyoming\"}]}','2021-04-20 06:16:34','2021-04-20 06:16:34','6359e98c-3d31-4a8a-9c11-0b5e4086b887'),(11,'text','zipCode','Zip Code',0,NULL,NULL,'2021-04-20 06:16:34','2021-04-20 06:16:34','473c8e7c-da8f-4cd1-aa9d-27edf2328af1'),(12,'textarea','message','Message',0,NULL,'{\"rows\":5}','2021-04-20 06:16:35','2021-04-20 06:16:35','10869010-ca74-4514-b097-aa19dfd692f7'),(13,'number','number','Number',0,NULL,NULL,'2021-04-20 06:16:35','2021-04-20 06:16:35','14499186-6583-4bfd-84c4-5d771826ecda'),(14,'cc_details','payment','',0,NULL,NULL,'2021-04-20 06:16:35','2021-04-20 06:16:35','c835a586-7cf3-47c7-86e4-9786ad89fdbc'),(15,'hidden','userId','User id',0,NULL,NULL,'2021-04-20 06:17:44','2021-04-20 06:17:44','25d1cd1f-cc24-4361-b7a4-53b631271fec'),(16,'hidden','userFirstName','User first Name',0,NULL,NULL,'2021-04-20 06:24:44','2021-04-20 06:24:44','5c56567a-2bdd-4220-ae79-0c485872a009'),(17,'hidden','userFullName','User full name',0,NULL,NULL,'2021-04-20 06:25:35','2021-04-20 06:25:35','16607033-9ea6-471c-b07b-1a7dbed663dd'),(18,'textarea','whoDoesYourBrandExistToServe','Customers—Who does your brand exist to serve?',0,NULL,NULL,'2021-04-20 06:29:59','2021-04-20 06:29:59','83ad2160-e8c5-49c1-901d-09d26073cf87'),(19,'textarea','valuesWhatDoYouStandForAndHowDoYouOperate','Values—What do you stand for and how do you operate?',0,NULL,NULL,'2021-04-22 09:54:48','2021-04-22 09:54:48','b6fbce2b-ce23-4cf3-bd8c-85f9802c30e9'),(20,'textarea','cultureHowDoYouAndYourPeopleThinkAndBehaveAtWork','Culture—How do you and your people think and behave at work?',0,NULL,NULL,'2021-04-22 09:55:16','2021-04-22 09:55:16','f69ef577-7b17-4e3e-822a-2bedee7dc3da'),(21,'textarea','engagementHowDoYourPeopleAndCustomersInteractWithYourBrand','Engagement—How do your people and customers interact with your brand?',0,NULL,NULL,'2021-04-22 09:55:35','2021-04-22 09:55:35','d868582d-928b-454c-9f08-0266bc5e3021'),(22,'textarea','yourPeople','Your people',0,NULL,NULL,'2021-04-22 09:56:39','2021-04-22 09:56:39','ae63a7e4-73ab-42f2-bc2d-6f23208e55bf'),(23,'textarea','yourCustomers','Your customers',0,NULL,NULL,'2021-04-22 09:57:03','2021-04-22 09:57:03','9090d232-1ccb-4aaf-a8a8-6320022978f8'),(24,'textarea','yourBrandIs','Your brand is:',0,NULL,NULL,'2021-04-22 09:58:00','2021-04-22 09:58:00','50fb6101-8950-4ddc-9aad-b955568034c8'),(25,'textarea','yourBrandStandsFor','Your brand stands for:',0,NULL,NULL,'2021-04-22 09:58:25','2021-04-22 09:58:25','1b534515-3412-4656-8a03-efbefaf7e375'),(26,'textarea','ourPast','Our past:',0,NULL,NULL,'2021-04-22 09:58:47','2021-04-22 09:58:47','b8420214-5cb0-428d-9766-4dcb752695e9'),(27,'textarea','ourFuture','Our future:',0,NULL,NULL,'2021-04-22 09:59:06','2021-04-22 09:59:06','61acb20e-432e-4281-88f8-f82b7657bf8d'),(28,'textarea','ourCurrentBrandsAndTheirPlaceInTheOverallArchitecture','Our current brands and their place in the overall architecture:',0,NULL,NULL,'2021-04-22 09:59:30','2021-04-22 09:59:30','e8f9f6b6-18ba-4ef7-80fa-19f7a9b972c4'),(29,'textarea','voiceWhatDoesYourBrandSoundLikehowItSpeaksAndHowItCommunicatesTheStoryAndPersonalityAndHowDoesThisNeedToEvolve','Voice—What does your brand sound like (how it speaks and how it communicates the story and personality) and how does this need to evolve?',0,NULL,NULL,'2021-04-22 09:59:50','2021-04-22 09:59:50','1145b2b2-e66b-4f99-8574-a10986e0ee6f'),(30,'textarea','marketsWeCompeteIn','Markets we compete in:',0,NULL,NULL,'2021-04-22 10:00:58','2021-04-22 10:00:58','1ec254dd-b170-4be3-a5ac-a869c091afdf'),(31,'textarea','competitors','Competitors:',0,NULL,NULL,'2021-04-22 10:01:46','2021-04-22 10:01:46','ff9b4abe-fb5d-4436-8d85-4454d5bd9eb5'),(32,'textarea','organisationsSimilarToUsOrThatWeAdmire','Organisations similar to us or that we admire:',0,NULL,NULL,'2021-04-22 10:02:09','2021-04-22 10:02:09','5541a71f-7803-434a-8e16-bc21dd6556d7'),(33,'textarea','customersandTheirWantsneedsInclude','Customers (and their wants/needs) include:',0,NULL,NULL,'2021-04-22 10:02:32','2021-04-22 10:02:32','49d25596-9248-437d-a1dd-5981e3f8ec36'),(34,'textarea','ourVisualBrandingNeedsTo','Our visual branding needs to:',0,NULL,NULL,'2021-04-22 10:03:07','2021-04-22 10:03:07','dcd6a0a2-8773-45ea-b24d-36eec8c1498c'),(35,'textarea','existingMaterialsInclude','Existing materials include:',0,NULL,NULL,'2021-04-22 10:03:50','2021-04-22 10:03:50','6c6de198-7514-435d-853c-77037c5201e0'),(36,'textarea','newNeedsInclude','New needs include:',0,NULL,NULL,'2021-04-22 10:04:12','2021-04-22 10:04:12','97e6e9f3-ac92-46f4-8db2-2b571783b637'),(37,'textarea','campaignsWhatCampaignsWillTellYourStoryAndCallPeopleToActionusingYourBrandVoiceToTellYourBrandStoryAndEngageCustomers','Campaigns—What campaigns will tell your story and call people to action (using your brand voice to tell your brand story and engage customers)?',0,NULL,NULL,'2021-04-22 10:04:36','2021-04-22 10:04:36','4736e967-0b54-4796-ac86-f17229427d5b'),(38,'textarea','promiseWhatCanshoulddoCustomersExpectFromYou','Promise—What can/should/do customers expect from you?',0,NULL,NULL,'2021-04-22 10:05:15','2021-04-22 10:05:15','5e036a65-7707-4bda-abab-5284a65c43f4'),(39,'textarea','opportunitiesWhatCanYourBrandAchieveForYourBusinessorganisation','Opportunities—What can your brand achieve for your business/organisation?',0,NULL,NULL,'2021-04-22 10:05:40','2021-04-22 10:05:40','63f9fd09-1e79-40e9-81c8-258aea314848'),(40,'textarea','outcomesWhatNeedsToBeDoneAsAResultOfThisAudit','Outcomes—What needs to be done as a result of this audit? ',0,NULL,NULL,'2021-04-22 10:06:04','2021-04-22 10:06:04','68bcdfbe-6975-47bc-a033-3c7a15d9912d'),(41,'phone','phone','Phone',0,NULL,NULL,'2021-07-14 23:09:27','2021-07-14 23:09:27','f381318d-37eb-486a-9477-ab0b252966a3'),(42,'datetime','dateOfBirth','Date of birth',0,NULL,NULL,'2023-02-27 02:03:51','2023-02-27 02:03:51','cd56e2ba-4fe6-40c7-8c61-2f070f4a8c85');
/*!40000 ALTER TABLE `freeform_fields` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `freeform_forms`
--

LOCK TABLES `freeform_forms` WRITE;
/*!40000 ALTER TABLE `freeform_forms` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `freeform_forms` VALUES (1,'Brand audit','brandAudit',0,'{{ userFullName }} - Brand Audit','','{\"composer\":{\"layout\":[[{\"id\":\"2XDJldG8x\",\"columns\":[\"Bb10jE4K3\"]},{\"id\":\"1BP5lGD7P\",\"columns\":[\"DBk0Xw4YJ\"]},{\"id\":\"w6WgdALVj\",\"columns\":[\"xDgkXQmbo\"]},{\"id\":\"r2yMpYVkp\",\"columns\":[\"QBOZ7q06y\"]},{\"id\":\"Oprpv8KRE\",\"columns\":[\"yRQR32yP3\"]}],[{\"id\":\"8PWPg3qo5\",\"columns\":[\"gGp461ZwQ\"]},{\"id\":\"r2y2E8O83\",\"columns\":[\"kjqjXdrmb\"]}],[{\"id\":\"67B7gO2dm\",\"columns\":[\"5z6qMKmaK\"]},{\"id\":\"nJNJbmOp3\",\"columns\":[\"YaRavlEKL\"]}],[{\"id\":\"Qmqmz5bMP\",\"columns\":[\"v4EpK2m7L\"]},{\"id\":\"lMqM6XjqR\",\"columns\":[\"MG2GvR9Wq\"]}],[{\"id\":\"1BPBgyrgg\",\"columns\":[\"nJNJbAmO9\"]},{\"id\":\"lMqM6NJkE\",\"columns\":[\"xAVq2Jqwl\"]},{\"id\":\"EVmVxXro6\",\"columns\":[\"AV7mw5qzR\"]},{\"id\":\"r2y2E81Qb\",\"columns\":[\"3qEqg2gxY\"]}],[{\"id\":\"AEyEvOnrN\",\"columns\":[\"w6W6OpkYr\"]},{\"id\":\"yRQR3ajGr\",\"columns\":[\"3lj89Lqwr\"]},{\"id\":\"vNgN9ad5L\",\"columns\":[\"O578Djpkr\"]},{\"id\":\"RDbDvml6w\",\"columns\":[\"nROml4mJr\"]},{\"id\":\"Oprpvd5RK\",\"columns\":[\"ZgVm3N8YR\"]},{\"id\":\"1BPBgnjry\",\"columns\":[\"Na7pgLqBA\"]},{\"id\":\"K9l9v78wq\",\"columns\":[\"3qEqg2pVa\"]}],[{\"id\":\"yRQR3VNb5\",\"columns\":[\"KWApzwq3o\"]},{\"id\":\"kjqjXdaMg\",\"columns\":[\"pblbMRXjM\"]}],[{\"id\":\"8PWPgdNO3\",\"columns\":[\"nJNJb1kXd\"]},{\"id\":\"kjqjXVEqz\",\"columns\":[\"XgZpQypNV\"]},{\"id\":\"1BPBgAvrQ\",\"columns\":[\"7kRqYDpYN\"]},{\"id\":\"N3m3KgoDk\",\"columns\":[\"MR0qxE8jD\"]},{\"id\":\"lMqM6Vn77\",\"columns\":[\"Nx5mA1mZ3\"]},{\"id\":\"YaRavmRx5\",\"columns\":[\"kjqjX9R7j\"]}],[{\"id\":\"xDgDGjDqA\",\"columns\":[\"RDbDvWwpA\"]},{\"id\":\"LOmOvkmOo\",\"columns\":[\"OEKm4epd3\"]},{\"id\":\"VO9Ovd691\",\"columns\":[\"RDbDv7RpM\"]}],[{\"id\":\"QmqmzQkNP\",\"columns\":[\"kjqjXYaRx\"]},{\"id\":\"Gg8gvwQMm\",\"columns\":[\"aJV86omgX\"]},{\"id\":\"OprpvYajL\",\"columns\":[\"O12qd58wo\"]},{\"id\":\"jJPJd9bBz\",\"columns\":[\"GeLqGD8vy\"]},{\"id\":\"WGoGvXnox\",\"columns\":[\"lMqM6O2ox\"]}],[{\"id\":\"Xo2oaXq6j\",\"columns\":[\"nJNJbXR8D\"]},{\"id\":\"z6p6kXWYL\",\"columns\":[\"eWDqn9p23\"]},{\"id\":\"8PWPgm2DW\",\"columns\":[\"y538BN8O6\"]},{\"id\":\"3qEqgPjQa\",\"columns\":[\"R3Gmj7pMv\"]},{\"id\":\"YaRav6mam\",\"columns\":[\"Blymk2OYQ\"]}]],\"properties\":{\"page0\":{\"type\":\"page\",\"label\":\"Purpose\"},\"form\":{\"type\":\"form\",\"name\":\"Brand audit\",\"handle\":\"brandAudit\",\"color\":\"#34605b\",\"submissionTitleFormat\":\"{{ userFullName }} - Brand Audit\",\"description\":\"\",\"formTemplate\":\"tailwind-1.twig\",\"returnUrl\":\"\",\"storeData\":true,\"defaultStatus\":2,\"ajaxEnabled\":true,\"tagAttributes\":[{\"attribute\":\"class\",\"value\":\"brandaudit-form\"}]},\"validation\":{\"type\":\"validation\",\"validationType\":\"submit\",\"successMessage\":\"\",\"errorMessage\":\"\",\"showSpinner\":true,\"showLoadingText\":true},\"integration\":{\"type\":\"integration\",\"integrationId\":0,\"mapping\":[]},\"connections\":{\"type\":\"connections\",\"list\":[{\"type\":\"entries\",\"section\":\"4\",\"entryType\":\"4\",\"mapping\":{\"title\":\"userFullName\",\"whatCampaignsWillTellYourStory\":\"campaignsWhatCampaignsWillTellYourStoryAndCallPeopleToActionusingYourBrandVoiceToTellYourBrandStoryAndEngageCustomers\",\"competitors\":\"competitors\",\"cultureHowDoYouAndYourPeopleThinkAndBehaveAtWork\":\"cultureHowDoYouAndYourPeopleThinkAndBehaveAtWork\",\"customersAndTheirWantsNeedsInclude\":\"customersandTheirWantsneedsInclude\",\"customersWhoDoesYourBrandExistToServe\":\"whoDoesYourBrandExistToServe\",\"existingMaterialsInclude\":\"existingMaterialsInclude\",\"howDoYourPeopleInteractWithYourBrandYourCustomers\":\"yourCustomers\",\"howDoPeopleInteractWithYourBrandYourPeople\":\"yourPeople\",\"marketsWeCompeteIn\":\"marketsWeCompeteIn\",\"newNeedsInclude\":\"newNeedsInclude\",\"whatCanYourBrandAchieve\":\"opportunitiesWhatCanYourBrandAchieveForYourBusinessorganisation\",\"organisationsSimilarToUsOrThatWeAdmire\":\"organisationsSimilarToUsOrThatWeAdmire\",\"ourCurrentBrandsAndTheirPlaceInTheOverallArchitecture\":\"ourCurrentBrandsAndTheirPlaceInTheOverallArchitecture\",\"ourFuture\":\"ourFuture\",\"ourPast\":\"ourPast\",\"ourVisualBrandingNeedsTo\":\"ourVisualBrandingNeedsTo\",\"outcomesWhatNeedsToBeDoneAsAResultOfThisAudit\":\"outcomesWhatNeedsToBeDoneAsAResultOfThisAudit\",\"promiseWhatCanShouldDoCustomersExpectFromYou\":\"promiseWhatCanshoulddoCustomersExpectFromYou\",\"purposeWhyDoesYourBrandExist\":\"whyDoesYourBrandExist\",\"relatedUser\":\"userId\",\"valuesWhatDoYouStandForAndHowDoYouOperate\":\"valuesWhatDoYouStandForAndHowDoYouOperate\",\"whatDoesYourBrandSoundLike\":\"voiceWhatDoesYourBrandSoundLikehowItSpeaksAndHowItCommunicatesTheStoryAndPersonalityAndHowDoesThisNeedToEvolve\",\"yourBrandIs\":\"yourBrandIs\",\"yourBrandStandsFor\":\"yourBrandStandsFor\"}}]},\"rules\":{\"type\":\"rules\",\"list\":[]},\"admin_notifications\":{\"type\":\"admin_notifications\",\"notificationId\":0,\"recipients\":\"\"},\"payment\":{\"type\":\"payment\",\"integrationId\":0,\"mapping\":[]},\"Bb10jE4K3\":{\"hash\":\"Bb10jE4K3\",\"id\":15,\"type\":\"hidden\",\"handle\":\"userId\",\"label\":\"User id\",\"required\":false,\"value\":\"\",\"placeholder\":\"\"},\"QBOZ7q06y\":{\"hash\":\"QBOZ7q06y\",\"id\":12,\"type\":\"textarea\",\"handle\":\"whyDoesYourBrandExist\",\"label\":\"Purpose\\u2014Why does your brand exist?\",\"required\":false,\"instructions\":\"\",\"value\":\"\",\"placeholder\":\"\",\"rows\":5,\"inputAttributes\":[{\"attribute\":\"class\",\"value\":\"p-2\"}]},\"xDgkXQmbo\":{\"type\":\"rich_text\",\"label\":\"Rich Text\",\"value\":\"<p><strong style=\\\"color: windowtext;\\\">Part brief, part audit, this questionnaire helps us understand where your brand is and where it needs to go \\u2013 please include any notes on tasks\\/services you believe are needed to help answer these questions through our work with you.<\\/strong><\\/p><p><span style=\\\"color: windowtext;\\\">Please take some time to provide notes and thoughts in any form that suits you, for any or all of the questions below.<\\/span><\\/p><p><span style=\\\"color: windowtext;\\\">We will use these answers to establish our baseline understanding of the existing brand\\u2014its potential and its story\\u2014and we\\u2019ll consider these answers as we plan the approach, or workshop if this precedes one.<\\/span><\\/p><p><span style=\\\"color: windowtext;\\\">Answers do not need to be exhaustive or all-inclusive. The answer starters are there to assist you, but these are optional. Defer answers to others where necessary.<\\/span><\\/p><h3><strong style=\\\"color: windowtext;\\\">Part A<\\/strong><\\/h3>\"},\"Blymk2OYQ\":{\"type\":\"submit\",\"label\":\"Submit\",\"labelNext\":\"Submit\",\"labelPrev\":\"Previous\",\"disablePrev\":false,\"position\":\"left\",\"inputAttributes\":[{\"attribute\":\"class\",\"value\":\"p-2 bg-red text-white\"}]},\"DBk0Xw4YJ\":{\"hash\":\"DBk0Xw4YJ\",\"id\":17,\"type\":\"hidden\",\"handle\":\"userFullName\",\"label\":\"User full name\",\"required\":false,\"value\":\"\",\"placeholder\":\"\"},\"gGp461ZwQ\":{\"hash\":\"gGp461ZwQ\",\"id\":18,\"type\":\"textarea\",\"handle\":\"whoDoesYourBrandExistToServe\",\"label\":\"Customers\\u2014Who does your brand exist to serve?\",\"required\":false,\"instructions\":\"\",\"value\":\"\",\"placeholder\":\"\",\"rows\":4,\"inputAttributes\":[{\"attribute\":\"class\",\"value\":\"p-2\"}]},\"5z6qMKmaK\":{\"hash\":\"5z6qMKmaK\",\"id\":19,\"type\":\"textarea\",\"handle\":\"valuesWhatDoYouStandForAndHowDoYouOperate\",\"label\":\"Values\\u2014What do you stand for and how do you operate?\",\"required\":false,\"instructions\":\"\",\"value\":\"\",\"placeholder\":\"\",\"rows\":4},\"v4EpK2m7L\":{\"hash\":\"v4EpK2m7L\",\"id\":20,\"type\":\"textarea\",\"handle\":\"cultureHowDoYouAndYourPeopleThinkAndBehaveAtWork\",\"label\":\"Culture\\u2014How do you and your people think and behave at work?\",\"required\":false,\"instructions\":\"\",\"value\":\"\",\"placeholder\":\"\",\"rows\":4},\"nJNJbAmO9\":{\"type\":\"rich_text\",\"label\":\"Rich Text\",\"value\":\"<p><strong style=\\\"color: windowtext;\\\">Engagement<\\/strong><span style=\\\"color: windowtext;\\\">\\u2014<\\/span><em style=\\\"color: windowtext;\\\">How do your people and customers interact with your brand?<\\/em><\\/p>\"},\"xAVq2Jqwl\":{\"hash\":\"xAVq2Jqwl\",\"id\":22,\"type\":\"textarea\",\"handle\":\"yourPeople\",\"label\":\"Your people\",\"required\":false,\"instructions\":\"\",\"value\":\"\",\"placeholder\":\"\",\"rows\":4},\"AV7mw5qzR\":{\"hash\":\"AV7mw5qzR\",\"id\":23,\"type\":\"textarea\",\"handle\":\"yourCustomers\",\"label\":\"Your customers\",\"required\":false,\"instructions\":\"\",\"value\":\"\",\"placeholder\":\"\",\"rows\":4},\"w6W6OpkYr\":{\"type\":\"rich_text\",\"label\":\"Rich Text\",\"value\":\"<h3><strong>Part B<\\/strong><\\/h3><p><strong style=\\\"color: windowtext;\\\">Story<\\/strong><span style=\\\"color: windowtext;\\\">\\u2014<\\/span><em style=\\\"color: windowtext;\\\">Describe who you are and what you stand for, where you\\u2019ve been and where you are going, (including future scenarios to prepare for, organisational structure and sub-brands\\u2014their role and existing identity).<\\/em><\\/p>\"},\"3lj89Lqwr\":{\"hash\":\"3lj89Lqwr\",\"id\":24,\"type\":\"textarea\",\"handle\":\"yourBrandIs\",\"label\":\"Your brand is:\",\"required\":false,\"instructions\":\"\",\"value\":\"\",\"placeholder\":\"\",\"rows\":4},\"O578Djpkr\":{\"hash\":\"O578Djpkr\",\"id\":25,\"type\":\"textarea\",\"handle\":\"yourBrandStandsFor\",\"label\":\"Your brand stands for:\",\"required\":false,\"instructions\":\"\",\"value\":\"\",\"placeholder\":\"\",\"rows\":4},\"nROml4mJr\":{\"hash\":\"nROml4mJr\",\"id\":26,\"type\":\"textarea\",\"handle\":\"ourPast\",\"label\":\"Our past:\",\"required\":false,\"instructions\":\"\",\"value\":\"\",\"placeholder\":\"\",\"rows\":4},\"ZgVm3N8YR\":{\"hash\":\"ZgVm3N8YR\",\"id\":27,\"type\":\"textarea\",\"handle\":\"ourFuture\",\"label\":\"Our future:\",\"required\":false,\"instructions\":\"\",\"value\":\"\",\"placeholder\":\"\",\"rows\":4},\"Na7pgLqBA\":{\"hash\":\"Na7pgLqBA\",\"id\":28,\"type\":\"textarea\",\"handle\":\"ourCurrentBrandsAndTheirPlaceInTheOverallArchitecture\",\"label\":\"Our current brands and their place in the overall architecture:\",\"required\":false,\"instructions\":\"\",\"value\":\"\",\"placeholder\":\"\",\"rows\":4},\"KWApzwq3o\":{\"hash\":\"KWApzwq3o\",\"id\":29,\"type\":\"textarea\",\"handle\":\"voiceWhatDoesYourBrandSoundLikehowItSpeaksAndHowItCommunicatesTheStoryAndPersonalityAndHowDoesThisNeedToEvolve\",\"label\":\"Voice\\u2014What does your brand sound like (how it speaks and how it communicates the story and personality) and how does this need to evolve?\",\"required\":false,\"instructions\":\"\",\"value\":\"\",\"placeholder\":\"\",\"rows\":4},\"nJNJb1kXd\":{\"type\":\"rich_text\",\"label\":\"Rich Text\",\"value\":\"<p><strong style=\\\"color: windowtext;\\\">Context<\\/strong><span style=\\\"color: windowtext;\\\">\\u2014<\\/span><em style=\\\"color: windowtext;\\\">Where does your brand appear and compete, who are you are up against, which organisations inspire you, who are your customers, where are they, and what do they need and want?<\\/em><\\/p>\"},\"XgZpQypNV\":{\"hash\":\"XgZpQypNV\",\"id\":30,\"type\":\"textarea\",\"handle\":\"marketsWeCompeteIn\",\"label\":\"Markets we compete in:\",\"required\":false,\"instructions\":\"\",\"value\":\"\",\"placeholder\":\"\",\"rows\":4},\"7kRqYDpYN\":{\"hash\":\"7kRqYDpYN\",\"id\":31,\"type\":\"textarea\",\"handle\":\"competitors\",\"label\":\"Competitors:\",\"required\":false,\"instructions\":\"\",\"value\":\"\",\"placeholder\":\"\",\"rows\":4},\"MR0qxE8jD\":{\"hash\":\"MR0qxE8jD\",\"id\":32,\"type\":\"textarea\",\"handle\":\"organisationsSimilarToUsOrThatWeAdmire\",\"label\":\"Organisations similar to us or that we admire:\",\"required\":false,\"instructions\":\"\",\"value\":\"\",\"placeholder\":\"\",\"rows\":4},\"Nx5mA1mZ3\":{\"hash\":\"Nx5mA1mZ3\",\"id\":33,\"type\":\"textarea\",\"handle\":\"customersandTheirWantsneedsInclude\",\"label\":\"Customers (and their wants\\/needs) include:\",\"required\":false,\"instructions\":\"\",\"value\":\"\",\"placeholder\":\"\",\"rows\":4},\"RDbDvWwpA\":{\"type\":\"rich_text\",\"label\":\"Rich Text\",\"value\":\"<p><strong style=\\\"color: windowtext;\\\">Visuals<\\/strong><span style=\\\"color: windowtext;\\\">\\u2014<\\/span><em style=\\\"color: windowtext;\\\">What is the status of your logo and visual identity, visual branding and where does it appear?<\\/em><\\/p>\"},\"OEKm4epd3\":{\"hash\":\"OEKm4epd3\",\"id\":34,\"type\":\"textarea\",\"handle\":\"ourVisualBrandingNeedsTo\",\"label\":\"Our visual branding needs to:\",\"required\":false,\"instructions\":\"\",\"value\":\"\",\"placeholder\":\"\",\"rows\":4},\"kjqjXYaRx\":{\"type\":\"rich_text\",\"label\":\"Rich Text\",\"value\":\"<p><strong style=\\\"color: windowtext;\\\">Tools<\\/strong><span style=\\\"color: windowtext;\\\">\\u2014<\\/span><em style=\\\"color: windowtext;\\\">What collateral, tools and applications do you have\\/need?<\\/em><\\/p>\"},\"aJV86omgX\":{\"hash\":\"aJV86omgX\",\"id\":35,\"type\":\"textarea\",\"handle\":\"existingMaterialsInclude\",\"label\":\"Existing materials include:\",\"required\":false,\"instructions\":\"\",\"value\":\"\",\"placeholder\":\"\",\"rows\":4},\"O12qd58wo\":{\"hash\":\"O12qd58wo\",\"id\":36,\"type\":\"textarea\",\"handle\":\"newNeedsInclude\",\"label\":\"New needs include:\",\"required\":false,\"instructions\":\"\",\"value\":\"\",\"placeholder\":\"\",\"rows\":4},\"GeLqGD8vy\":{\"hash\":\"GeLqGD8vy\",\"id\":37,\"type\":\"textarea\",\"handle\":\"campaignsWhatCampaignsWillTellYourStoryAndCallPeopleToActionusingYourBrandVoiceToTellYourBrandStoryAndEngageCustomers\",\"label\":\"Campaigns\\u2014What campaigns will tell your story and call people to action (using your brand voice to tell your brand story and engage customers)?\",\"required\":false,\"instructions\":\"\",\"value\":\"\",\"placeholder\":\"\",\"rows\":4},\"nJNJbXR8D\":{\"type\":\"rich_text\",\"label\":\"Rich Text\",\"value\":\"<h3><strong>Part C<\\/strong><\\/h3>\"},\"eWDqn9p23\":{\"hash\":\"eWDqn9p23\",\"id\":38,\"type\":\"textarea\",\"handle\":\"promiseWhatCanshoulddoCustomersExpectFromYou\",\"label\":\"Promise\\u2014What can\\/should\\/do customers expect from you?\",\"required\":false,\"instructions\":\"\",\"value\":\"\",\"placeholder\":\"\",\"rows\":4},\"y538BN8O6\":{\"hash\":\"y538BN8O6\",\"id\":39,\"type\":\"textarea\",\"handle\":\"opportunitiesWhatCanYourBrandAchieveForYourBusinessorganisation\",\"label\":\"Opportunities\\u2014What can your brand achieve for your business\\/organisation?\",\"required\":false,\"instructions\":\"\",\"value\":\"\",\"placeholder\":\"\",\"rows\":4},\"R3Gmj7pMv\":{\"hash\":\"R3Gmj7pMv\",\"id\":40,\"type\":\"textarea\",\"handle\":\"outcomesWhatNeedsToBeDoneAsAResultOfThisAudit\",\"label\":\"Outcomes\\u2014What needs to be done as a result of this audit? \",\"required\":false,\"instructions\":\"\",\"value\":\"\",\"placeholder\":\"\",\"rows\":4},\"page1\":{\"type\":\"page\",\"label\":\"Customers\"},\"page2\":{\"type\":\"page\",\"label\":\"Values\"},\"page3\":{\"type\":\"page\",\"label\":\"Culture\"},\"page4\":{\"type\":\"page\",\"label\":\"Engagement\"},\"page5\":{\"type\":\"page\",\"label\":\"Story\"},\"page6\":{\"type\":\"page\",\"label\":\"Voice\"},\"page7\":{\"type\":\"page\",\"label\":\"Context\"},\"page8\":{\"type\":\"page\",\"label\":\"Visuals\"},\"page9\":{\"type\":\"page\",\"label\":\"Tools\"},\"page10\":{\"type\":\"page\",\"label\":\"Outcomes\"},\"yRQR32yP3\":{\"type\":\"submit\",\"label\":\"Submit\",\"labelNext\":\"Next\",\"labelPrev\":\"Previous\",\"disablePrev\":false,\"position\":\"left\",\"inputAttributes\":[{\"attribute\":\"class\",\"value\":\"p-2 bg-red text-white\"}]},\"kjqjXdrmb\":{\"type\":\"submit\",\"label\":\"Submit\",\"labelNext\":\"Next\",\"labelPrev\":\"Previous\",\"disablePrev\":false,\"position\":\"left\",\"inputAttributes\":[{\"attribute\":\"class\",\"value\":\"p-2 bg-red text-white\"}]},\"YaRavlEKL\":{\"type\":\"submit\",\"label\":\"Submit\",\"labelNext\":\"Next\",\"labelPrev\":\"Previous\",\"disablePrev\":false,\"position\":\"left\",\"inputAttributes\":[{\"attribute\":\"class\",\"value\":\"p-2 bg-red text-white\"}]},\"MG2GvR9Wq\":{\"type\":\"submit\",\"label\":\"Submit\",\"labelNext\":\"Next\",\"labelPrev\":\"Previous\",\"disablePrev\":false,\"position\":\"left\",\"inputAttributes\":[{\"attribute\":\"class\",\"value\":\"p-2 bg-red text-white\"}]},\"3qEqg2gxY\":{\"type\":\"submit\",\"label\":\"Submit\",\"labelNext\":\"Next\",\"labelPrev\":\"Previous\",\"disablePrev\":false,\"position\":\"left\",\"inputAttributes\":[{\"attribute\":\"class\",\"value\":\"p-2 bg-red text-white\"}]},\"3qEqg2pVa\":{\"type\":\"submit\",\"label\":\"Submit\",\"labelNext\":\"Next\",\"labelPrev\":\"Previous\",\"disablePrev\":false,\"position\":\"left\",\"inputAttributes\":[{\"attribute\":\"class\",\"value\":\"p-2 bg-red text-white\"}]},\"pblbMRXjM\":{\"type\":\"submit\",\"label\":\"Submit\",\"labelNext\":\"Next\",\"labelPrev\":\"Previous\",\"disablePrev\":false,\"position\":\"left\",\"inputAttributes\":[{\"attribute\":\"class\",\"value\":\"p-2 bg-red text-white\"}]},\"kjqjX9R7j\":{\"type\":\"submit\",\"label\":\"Submit\",\"labelNext\":\"Next\",\"labelPrev\":\"Previous\",\"disablePrev\":false,\"position\":\"left\",\"inputAttributes\":[{\"attribute\":\"class\",\"value\":\"p-2 bg-red text-white\"}]},\"RDbDv7RpM\":{\"type\":\"submit\",\"label\":\"Submit\",\"labelNext\":\"Next\",\"labelPrev\":\"Previous\",\"disablePrev\":false,\"position\":\"left\",\"inputAttributes\":[{\"attribute\":\"class\",\"value\":\"p-2 bg-red text-white\"}]},\"lMqM6O2ox\":{\"type\":\"submit\",\"label\":\"Submit\",\"labelNext\":\"Next\",\"labelPrev\":\"Previous\",\"disablePrev\":false,\"position\":\"left\",\"inputAttributes\":[{\"attribute\":\"class\",\"value\":\"p-2 bg-red text-white\"}]}}},\"context\":{\"page\":0,\"hash\":\"yRQR32yP3\"}}','',2,NULL,'#34605b',NULL,NULL,'','',1,0,'','','2021-04-20 06:19:55','2022-05-17 23:18:52','967bbb18-c690-4f33-9072-40cbf72c930b','Solspace\\Freeform\\Form\\Types\\Regular',NULL),(2,'Contact us','contactUs',0,'{{ dateCreated|date(\"Y-m-d H:i:s\") }}','','{\"composer\":{\"layout\":[[{\"id\":\"3q7qJ3E3O\",\"columns\":[\"OZRqWl84e\",\"V0xmXo83X\"]},{\"id\":\"DbqbNGLlj\",\"columns\":[\"v6a8JQqMy\"]},{\"id\":\"r2M2xoWv2\",\"columns\":[\"ROMpZNpbe\"]},{\"id\":\"3q7qJ3wGw\",\"columns\":[\"NwV8e2mjz\"]},{\"id\":\"55P52WxAK\",\"columns\":[\"P525LjbQ8\"]}]],\"properties\":{\"page0\":{\"type\":\"page\",\"label\":\"Page 1\"},\"form\":{\"type\":\"form\",\"name\":\"Contact us\",\"handle\":\"contactUs\",\"color\":\"#a8737d\",\"submissionTitleFormat\":\"{{ dateCreated|date(\\\"Y-m-d H:i:s\\\") }}\",\"description\":\"\",\"formTemplate\":\"tailwind.twig\",\"returnUrl\":\"\",\"storeData\":true,\"defaultStatus\":2,\"ajaxEnabled\":true},\"validation\":{\"type\":\"validation\",\"validationType\":\"submit\",\"successMessage\":\"\",\"errorMessage\":\"\"},\"integration\":{\"type\":\"integration\",\"integrationId\":1,\"mapping\":{\"deal___hs_analytics_source\":\"email\",\"contact___firstname\":\"firstName\",\"contact___lastname\":\"lastName\",\"contact___email\":\"email\",\"contact___mobilephone\":\"phone\",\"contact___message\":\"message\"}},\"connections\":{\"type\":\"connections\",\"list\":null},\"rules\":{\"type\":\"rules\",\"list\":[]},\"admin_notifications\":{\"type\":\"admin_notifications\",\"notificationId\":1,\"recipients\":\"info@newwordorder.com.au\"},\"payment\":{\"type\":\"payment\",\"integrationId\":0,\"mapping\":[]},\"OZRqWl84e\":{\"hash\":\"OZRqWl84e\",\"id\":1,\"type\":\"text\",\"handle\":\"firstName\",\"label\":\"First Name\",\"required\":true,\"instructions\":\"\",\"value\":\"\",\"placeholder\":\"First name\"},\"V0xmXo83X\":{\"hash\":\"V0xmXo83X\",\"id\":2,\"type\":\"text\",\"handle\":\"lastName\",\"label\":\"Last Name\",\"required\":false,\"instructions\":\"\",\"value\":\"\",\"placeholder\":\"Last name\"},\"v6a8JQqMy\":{\"hash\":\"v6a8JQqMy\",\"id\":3,\"type\":\"email\",\"handle\":\"email\",\"label\":\"Email\",\"required\":true,\"instructions\":\"\",\"notificationId\":0,\"values\":[],\"placeholder\":\"Email\"},\"ROMpZNpbe\":{\"hash\":\"ROMpZNpbe\",\"id\":41,\"type\":\"phone\",\"handle\":\"phone\",\"label\":\"Phone\",\"required\":false,\"instructions\":\"\",\"value\":\"\",\"placeholder\":\"Phone\",\"pattern\":\"\"},\"NwV8e2mjz\":{\"hash\":\"NwV8e2mjz\",\"id\":12,\"type\":\"textarea\",\"handle\":\"message\",\"label\":\"Message\",\"required\":true,\"instructions\":\"\",\"value\":\"\",\"placeholder\":\"Message\",\"rows\":4},\"P525LjbQ8\":{\"type\":\"submit\",\"label\":\"Submit\",\"labelNext\":\"Submit\",\"labelPrev\":\"Previous\",\"disablePrev\":false,\"position\":\"left\"}}},\"context\":{\"page\":0,\"hash\":\"form\"}}','',2,NULL,'#a8737d',NULL,NULL,'','',2,0,'','','2021-07-14 23:10:26','2023-03-01 02:34:20','109ac57b-da4a-43c6-8203-0abf85cb753e','Solspace\\Freeform\\Form\\Types\\Regular','{}'),(3,'CALD','cald',0,'{{ dateCreated|date(\"Y-m-d H:i:s\") }}','','{\"composer\":{\"layout\":[[{\"id\":\"MGAzMRzVr\",\"columns\":[\"OZRqWl84e\",\"V0xmXo83X\"]},{\"id\":\"oy52JkaDx\",\"columns\":[\"oQkpy0mEe\",\"O96m1ymza\"]},{\"id\":\"z6Qond3YM\",\"columns\":[\"v6a8JQqMy\",\"dkVpbNpMQ\"]},{\"id\":\"8P5yDd9W6\",\"columns\":[\"dqKLdg31M\"]}]],\"properties\":{\"page0\":{\"type\":\"page\",\"label\":\"Page 1\"},\"form\":{\"type\":\"form\",\"name\":\"CALD\",\"formType\":\"Solspace\\\\Freeform\\\\Form\\\\Types\\\\Regular\",\"handle\":\"cald\",\"color\":\"#2ffb5c\",\"submissionTitleFormat\":\"{{ dateCreated|date(\\\"Y-m-d H:i:s\\\") }}\",\"description\":\"\",\"formTemplate\":\"tailwind.twig\",\"returnUrl\":\"\",\"storeData\":true,\"ajaxEnabled\":true,\"defaultStatus\":2},\"validation\":{\"type\":\"validation\",\"validationType\":\"submit\",\"successMessage\":\"Your form has been successfully submitted. We\'ll be in touch shortly.\",\"errorMessage\":\"Sorry, there was an error submitting the form. Please try again.\",\"showSpinner\":true},\"integration\":{\"type\":\"integration\",\"integrationId\":0,\"mapping\":[]},\"connections\":{\"type\":\"connections\",\"list\":null},\"rules\":{\"type\":\"rules\",\"list\":[]},\"admin_notifications\":{\"type\":\"admin_notifications\",\"notificationId\":1,\"recipients\":\"suzanne@newwordorder.com.au\"},\"payment\":{\"type\":\"payment\",\"integrationId\":0,\"mapping\":[]},\"v6a8JQqMy\":{\"id\":3,\"hash\":\"v6a8JQqMy\",\"type\":\"email\",\"handle\":\"email\",\"label\":\"Email\",\"required\":false,\"instructions\":\"\",\"notificationId\":0,\"values\":[],\"placeholder\":\"\"},\"OZRqWl84e\":{\"id\":1,\"hash\":\"OZRqWl84e\",\"type\":\"text\",\"handle\":\"firstName\",\"label\":\"First Name\",\"required\":true,\"instructions\":\"\",\"value\":\"\",\"placeholder\":\"\"},\"V0xmXo83X\":{\"id\":2,\"hash\":\"V0xmXo83X\",\"type\":\"text\",\"handle\":\"lastName\",\"label\":\"Last Name\",\"required\":true,\"instructions\":\"\",\"value\":\"\",\"placeholder\":\"\"},\"oQkpy0mEe\":{\"hash\":\"oQkpy0mEe\",\"id\":42,\"type\":\"datetime\",\"handle\":\"yearofbirth\",\"label\":\"Year of birth\",\"required\":true,\"instructions\":\"\",\"value\":\"\",\"placeholder\":\"\",\"initialValue\":\"\",\"dateTimeType\":\"date\",\"generatePlaceholder\":true,\"dateOrder\":\"dmy\",\"date4DigitYear\":true,\"dateLeadingZero\":true,\"dateSeparator\":\"\\/\",\"clock24h\":false,\"clockSeparator\":\":\",\"clockAMPMSeparate\":true,\"useDatepicker\":true,\"minDate\":\"\",\"maxDate\":\"\",\"locale\":\"\"},\"dkVpbNpMQ\":{\"hash\":\"dkVpbNpMQ\",\"id\":5,\"type\":\"text\",\"handle\":\"mobile\",\"label\":\"Mobile number\",\"required\":true,\"instructions\":\"\",\"value\":\"\",\"placeholder\":\"\"},\"O96m1ymza\":{\"hash\":\"O96m1ymza\",\"id\":9,\"type\":\"text\",\"handle\":\"country-birth\",\"label\":\"Country of birth\",\"required\":true,\"instructions\":\"\",\"value\":\"\",\"placeholder\":\"\"},\"dqKLdg31M\":{\"type\":\"submit\",\"label\":\"Submit\",\"labelNext\":\"Submit\",\"labelPrev\":\"Previous\",\"disablePrev\":false,\"position\":\"left\"}}},\"context\":{\"page\":0,\"hash\":\"oQkpy0mEe\"}}','',2,NULL,'#2ffb5c',NULL,NULL,'','',3,0,'','','2023-02-27 02:02:24','2023-03-01 02:59:30','3e878cad-2315-4adf-8e23-faf3dbc67d43','Solspace\\Freeform\\Form\\Types\\Regular','{\"successBehaviour\":\"reload\"}');
/*!40000 ALTER TABLE `freeform_forms` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `freeform_integrations`
--

LOCK TABLES `freeform_integrations` WRITE;
/*!40000 ALTER TABLE `freeform_integrations` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `freeform_integrations` VALUES (1,'Hubspot CRM','hubspotCrm','crm','Solspace\\Freeform\\Integrations\\CRM\\HubSpot\\HubSpotV1','pat-na1-ec6655ba-687e-42e4-b714-3a7da4e98e84','{\"api_key\":\"$HS_KEY\",\"ip_field\":\"\",\"append_contact_data\":\"\",\"append_company_data\":\"\"}',0,'2022-10-05 03:25:02','2021-12-09 23:56:37','2022-10-05 03:25:02','4073dc0e-2ad3-43c5-b682-5ac35509b0dd');
/*!40000 ALTER TABLE `freeform_integrations` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `freeform_integrations_queue`
--

LOCK TABLES `freeform_integrations_queue` WRITE;
/*!40000 ALTER TABLE `freeform_integrations_queue` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `freeform_integrations_queue` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `freeform_lock`
--

LOCK TABLES `freeform_lock` WRITE;
/*!40000 ALTER TABLE `freeform_lock` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `freeform_lock` VALUES (33651,'save-and-continue-cleanup','2023-04-04 02:28:11','2023-04-04 02:28:11','a2267321-41dc-4b47-9e26-b668ce7aa3c5'),(33652,'freeform-purge-cache-key','2023-04-04 02:42:11','2023-04-04 02:42:11','0a26ddfe-4e01-4a7b-9cfe-0139efeb2861'),(33653,'save-and-continue-cleanup','2023-04-04 03:28:11','2023-04-04 03:28:11','71a95a87-cbc1-412c-8624-318d4215a516'),(33654,'freeform-purge-cache-key','2023-04-04 03:43:11','2023-04-04 03:43:11','0113e446-25da-44cd-87f0-825b1a8920d3'),(33655,'freeform-feed-cache-key','2023-04-04 03:46:11','2023-04-04 03:46:11','85506237-5301-47fe-8657-8efe36ccb760'),(33656,'save-and-continue-cleanup','2023-04-04 04:28:33','2023-04-04 04:28:33','b6509f2b-aeb5-474c-8dc2-406531f056f9'),(33657,'freeform-digest-cache-key','2023-04-04 04:29:12','2023-04-04 04:29:12','387293d6-7795-4b52-bb93-70d740cc1404'),(33658,'export-notifications','2023-04-04 04:29:12','2023-04-04 04:29:12','d02c5db1-868b-498f-8841-950357b79cb1'),(33659,'freeform-purge-cache-key','2023-04-04 04:43:12','2023-04-04 04:43:12','bfdcded6-b6f6-481d-9eab-984165553279'),(33660,'save-and-continue-cleanup','2023-04-04 05:29:11','2023-04-04 05:29:11','568b87a0-5a5a-4193-b8bf-7bccb69cbdcb'),(33661,'freeform-purge-cache-key','2023-04-04 05:43:12','2023-04-04 05:43:12','4f8d9232-df69-4ab4-97ff-37069a81072c'),(33662,'save-and-continue-cleanup','2023-04-04 06:29:13','2023-04-04 06:29:13','4e8d8221-7e36-42e9-bd5c-c3f162a09ef8'),(33663,'freeform-purge-cache-key','2023-04-04 06:44:12','2023-04-04 06:44:12','6fe486c5-82f8-480c-9bec-e438ead1d3ff'),(33664,'save-and-continue-cleanup','2023-04-04 07:30:11','2023-04-04 07:30:11','d38c68c9-b4d3-4be3-958e-1b58b2c9ca05'),(33665,'freeform-digest-cache-key','2023-04-04 07:30:11','2023-04-04 07:30:11','c80b8893-f6c9-4c4a-8b4a-540e01544ef5'),(33666,'export-notifications','2023-04-04 07:30:11','2023-04-04 07:30:11','d6c33341-cb3a-4ab1-8a9c-0af165969380'),(33667,'freeform-purge-cache-key','2023-04-04 07:44:19','2023-04-04 07:44:19','493ee979-76a2-4b9d-aa18-c21c53b57ffb'),(33668,'save-and-continue-cleanup','2023-04-04 08:30:13','2023-04-04 08:30:13','48bee594-af87-47f3-a405-a68cb1485fdf'),(33669,'freeform-purge-cache-key','2023-04-04 08:45:12','2023-04-04 08:45:12','b25493d3-db54-43fd-a75f-468b05592139'),(33670,'freeform-feed-cache-key','2023-04-04 08:46:11','2023-04-04 08:46:11','4bbad78a-61b5-44c1-9567-3398f74dbf8c'),(33671,'save-and-continue-cleanup','2023-04-04 09:31:12','2023-04-04 09:31:12','7c0c45d6-f050-4d05-9b37-f7fb9f70e88c'),(33672,'freeform-purge-cache-key','2023-04-04 09:45:12','2023-04-04 09:45:12','38d0e5d1-2c26-4c6e-b1ec-817febb2e384'),(33673,'freeform-digest-cache-key','2023-04-04 10:30:13','2023-04-04 10:30:13','82423b25-31c1-4dfb-9e44-d4bf506c3de2'),(33674,'export-notifications','2023-04-04 10:30:13','2023-04-04 10:30:13','a86a3f58-6af9-410a-9f67-0901bd1226b1'),(33675,'save-and-continue-cleanup','2023-04-04 10:31:12','2023-04-04 10:31:12','c52bcc08-c3fc-4a71-9603-b5c973b9199f'),(33676,'freeform-purge-cache-key','2023-04-04 10:45:12','2023-04-04 10:45:12','f36df2a4-9de7-4edc-a421-6b3482644129'),(33677,'save-and-continue-cleanup','2023-04-04 11:31:12','2023-04-04 11:31:12','f58e91c8-2ec4-4555-b854-17b3d87423cc'),(33678,'freeform-purge-cache-key','2023-04-04 11:46:12','2023-04-04 11:46:12','f8639923-e9b6-4377-ab0d-b14c5c340c64'),(33679,'save-and-continue-cleanup','2023-04-04 12:31:13','2023-04-04 12:31:13','72fcad3f-c9a4-4f7b-b622-652cbb29f3df'),(33680,'freeform-purge-cache-key','2023-04-04 12:47:11','2023-04-04 12:47:11','d2d4b233-5cd0-48ff-973a-5f480d063c17'),(33681,'freeform-digest-cache-key','2023-04-04 13:31:11','2023-04-04 13:31:11','77a0e30c-8d97-4c03-a09e-130d46b8288e'),(33682,'export-notifications','2023-04-04 13:31:11','2023-04-04 13:31:11','26f3b73b-71c7-4ed0-8a2f-4c9ae538af28'),(33683,'save-and-continue-cleanup','2023-04-04 13:32:13','2023-04-04 13:32:13','03dae948-9a45-49ab-a268-5a8473aa7ffd'),(33684,'freeform-feed-cache-key','2023-04-04 13:46:11','2023-04-04 13:46:11','05338ade-9116-45ac-8c0a-dd15ce4c2138'),(33685,'freeform-purge-cache-key','2023-04-04 13:47:12','2023-04-04 13:47:12','5266345b-81f4-4992-a1f1-07cfae565bd2'),(33686,'save-and-continue-cleanup','2023-04-04 14:33:11','2023-04-04 14:33:11','eae7d3a7-50e1-4ba1-b538-51ea2442c674'),(33687,'freeform-purge-cache-key','2023-04-04 14:47:44','2023-04-04 14:47:44','b0718741-3244-4c96-9619-38c24d0845ea'),(33688,'save-and-continue-cleanup','2023-04-04 15:33:12','2023-04-04 15:33:12','969ea512-3127-4ffa-8819-22bef69626a5'),(33689,'freeform-purge-cache-key','2023-04-04 15:48:11','2023-04-04 15:48:11','417e8ddc-3635-4ac6-a25e-21a5d8de36f0'),(33690,'freeform-digest-cache-key','2023-04-04 16:31:12','2023-04-04 16:31:12','2eabbdfb-f40c-486b-934c-fc8a33b711bd'),(33691,'export-notifications','2023-04-04 16:31:12','2023-04-04 16:31:12','bea9ece3-bba6-4ac4-a2ad-93bf88d41e49'),(33692,'save-and-continue-cleanup','2023-04-04 16:34:11','2023-04-04 16:34:11','fb83dfd3-c232-4217-90c6-664a32c7037d'),(33693,'freeform-purge-cache-key','2023-04-04 16:48:11','2023-04-04 16:48:11','3fcbe932-0caa-47ba-ad48-6d4eb8b04422'),(33694,'save-and-continue-cleanup','2023-04-04 17:34:11','2023-04-04 17:34:11','5de9e4c1-b341-49f9-85fb-00dccb623a16'),(33695,'freeform-purge-cache-key','2023-04-04 17:48:11','2023-04-04 17:48:11','923158c5-82cc-4c86-a68f-5620f38c5a7f'),(33696,'save-and-continue-cleanup','2023-04-04 18:34:11','2023-04-04 18:34:11','6ba163fe-a961-4f9c-ba6f-d03072ecfb47'),(33697,'freeform-feed-cache-key','2023-04-04 18:47:11','2023-04-04 18:47:11','0c33fdc9-e3fe-48ac-bcc2-15753c38c70a'),(33698,'freeform-purge-cache-key','2023-04-04 18:48:30','2023-04-04 18:48:30','caec508e-620e-4324-8087-b2851f75cd61'),(33699,'freeform-digest-cache-key','2023-04-04 19:32:13','2023-04-04 19:32:13','ca3a29da-884a-4cd0-ae23-dbb4d8fea1ee'),(33700,'export-notifications','2023-04-04 19:32:13','2023-04-04 19:32:13','0fb131af-e0eb-44bd-8bdc-1d98f6b27160'),(33701,'save-and-continue-cleanup','2023-04-04 19:34:12','2023-04-04 19:34:12','d82abbc3-2de9-4723-be22-c1ab749ebdb2'),(33702,'freeform-purge-cache-key','2023-04-04 19:48:36','2023-04-04 19:48:36','81175133-f0d9-4853-a694-b9d4b78fbb3f'),(33703,'save-and-continue-cleanup','2023-04-04 20:35:11','2023-04-04 20:35:11','92cec0d0-a100-4747-8011-d41f5c82396e'),(33704,'freeform-purge-cache-key','2023-04-04 20:49:12','2023-04-04 20:49:12','564cce84-6133-43ed-93d3-e94e260881a2'),(33705,'save-and-continue-cleanup','2023-04-04 21:35:11','2023-04-04 21:35:11','901feb89-06ec-409a-a10a-e239477ae90b'),(33706,'freeform-purge-cache-key','2023-04-04 21:49:12','2023-04-04 21:49:12','6b22ced8-3e47-4789-bcf6-2ba30552aa6e'),(33707,'freeform-digest-cache-key','2023-04-04 22:32:13','2023-04-04 22:32:13','4d851737-3843-4367-b91a-b199b28fcff5'),(33708,'export-notifications','2023-04-04 22:32:13','2023-04-04 22:32:13','972e2384-3a61-4326-a024-6d55c35740a7'),(33709,'save-and-continue-cleanup','2023-04-04 22:35:12','2023-04-04 22:35:12','81bb9196-a5ea-4011-a015-0a7a29b2ce76'),(33710,'freeform-purge-cache-key','2023-04-04 22:50:11','2023-04-04 22:50:11','8dc43670-5eb6-4f29-a5d6-99cd1d39c85d'),(33711,'save-and-continue-cleanup','2023-04-04 23:35:34','2023-04-04 23:35:34','192e265c-7cbe-4e99-b3b6-057589b121e5'),(33712,'freeform-feed-cache-key','2023-04-04 23:48:11','2023-04-04 23:48:11','e1e9339a-f84d-4dd1-a722-e927f77f50d7'),(33713,'freeform-purge-cache-key','2023-04-04 23:50:12','2023-04-04 23:50:12','ea1882f9-45d1-4b84-8aed-1e6aa0f0e5c6'),(33714,'save-and-continue-cleanup','2023-04-05 00:35:42','2023-04-05 00:35:42','883d8ec9-9222-40c5-b23f-a2edd49d2e15'),(33715,'freeform-purge-cache-key','2023-04-05 00:51:10','2023-04-05 00:51:10','f5e6a22c-74dc-4047-9d88-c93cb21edfd0'),(33716,'freeform-digest-cache-key','2023-04-05 01:32:13','2023-04-05 01:32:13','0b6abb01-0d50-48cd-ab4a-ecf62b0a3e97'),(33717,'export-notifications','2023-04-05 01:32:13','2023-04-05 01:32:13','84a3b8cb-a115-4067-9a25-ddf9f5ba1322'),(33718,'save-and-continue-cleanup','2023-04-05 01:36:11','2023-04-05 01:36:11','778ae857-edd2-4087-b6c4-343359eeabb7'),(33719,'freeform-purge-cache-key','2023-04-05 01:51:12','2023-04-05 01:51:12','888ca2db-d602-4dec-9fa3-3e6243e75237'),(33720,'save-and-continue-cleanup','2023-04-05 02:36:11','2023-04-05 02:36:11','7339cf83-8bae-445e-bafa-ce1e708eb458'),(33721,'freeform-purge-cache-key','2023-04-05 02:51:41','2023-04-05 02:51:41','3945d09f-cc2f-47d0-9f21-01ed4187152d'),(33722,'save-and-continue-cleanup','2023-04-05 03:36:11','2023-04-05 03:36:11','4b4b2579-7bd1-4f0b-ba29-71c573025167'),(33723,'freeform-purge-cache-key','2023-04-05 03:51:45','2023-04-05 03:51:45','267f336a-b76d-4c7a-8f8f-a94536ed60dc'),(33724,'freeform-digest-cache-key','2023-04-05 04:32:14','2023-04-05 04:32:14','e8aa6eb4-1a13-4c6f-894a-50fcdfc7a5a2'),(33725,'export-notifications','2023-04-05 04:32:14','2023-04-05 04:32:14','b7d48f2e-2111-48d7-a27a-7bf35aa939d0'),(33726,'save-and-continue-cleanup','2023-04-05 04:36:55','2023-04-05 04:36:55','70b44b52-b935-4bfe-9289-d932a991b225'),(33727,'freeform-feed-cache-key','2023-04-05 04:48:11','2023-04-05 04:48:11','27e0e142-fdf6-4f0b-9234-69827a9e9da6'),(33728,'freeform-purge-cache-key','2023-04-05 04:52:10','2023-04-05 04:52:10','1648a606-f7a6-45af-9fad-9b0d863781a6'),(33729,'save-and-continue-cleanup','2023-04-05 05:37:11','2023-04-05 05:37:11','cfc8ca89-8f1a-48da-af5c-44f71b9419a4'),(33730,'freeform-purge-cache-key','2023-04-05 05:52:11','2023-04-05 05:52:11','216dbdf3-c376-4fb2-89c2-49e1eacf0323'),(33731,'save-and-continue-cleanup','2023-04-05 06:37:11','2023-04-05 06:37:11','da628736-3922-434f-9c0b-cd0c09e5c181'),(33732,'freeform-purge-cache-key','2023-04-05 06:53:10','2023-04-05 06:53:10','bd349a5e-ae45-47ad-9122-06bdf09eed87'),(33733,'freeform-digest-cache-key','2023-04-05 07:32:33','2023-04-05 07:32:33','7ef6e30a-bac6-4380-a574-968c329ac8e1'),(33734,'export-notifications','2023-04-05 07:32:33','2023-04-05 07:32:33','48ecd3f8-c892-4c11-8c08-066abbb5c66b'),(33735,'save-and-continue-cleanup','2023-04-05 07:38:12','2023-04-05 07:38:12','507e2b06-570b-4b05-94ce-ce5abce1ee41'),(33736,'freeform-purge-cache-key','2023-04-05 07:53:10','2023-04-05 07:53:10','e583699a-2c6c-4c5a-896b-c5f43486d97f'),(33737,'save-and-continue-cleanup','2023-04-05 08:39:07','2023-04-05 08:39:07','e5501ad2-50ff-4f6b-b036-304c9c3d9844'),(33738,'freeform-purge-cache-key','2023-04-05 08:53:12','2023-04-05 08:53:12','64d4f260-a304-4b43-9b89-391efadbd6f7'),(33739,'save-and-continue-cleanup','2023-04-05 09:39:10','2023-04-05 09:39:10','63d8026f-fbd9-4213-afd2-ef8cd0cb16e7'),(33740,'freeform-feed-cache-key','2023-04-05 09:48:13','2023-04-05 09:48:13','7d9013f5-7618-44cd-aba9-aa841534853d'),(33741,'freeform-purge-cache-key','2023-04-05 09:54:12','2023-04-05 09:54:12','b4dc1437-01ae-48f2-a3bf-a2fb796671ff'),(33742,'freeform-digest-cache-key','2023-04-05 10:33:13','2023-04-05 10:33:13','ec06dd01-9e8b-4d63-91fe-d8c697f5fb3c'),(33743,'export-notifications','2023-04-05 10:33:13','2023-04-05 10:33:13','5d7ab22b-c3e6-4ee8-a2c1-ac4450fd893c'),(33744,'save-and-continue-cleanup','2023-04-05 10:39:13','2023-04-05 10:39:13','28a2b96f-c01d-4def-bff7-f5172c04362b'),(33745,'freeform-purge-cache-key','2023-04-05 10:55:12','2023-04-05 10:55:12','7e5dd251-7d41-4e92-bd0a-b624d3942256'),(33746,'save-and-continue-cleanup','2023-04-05 11:40:11','2023-04-05 11:40:11','47d76845-f19b-40c6-a5d6-a2869c8a003e'),(33747,'freeform-purge-cache-key','2023-04-05 11:55:12','2023-04-05 11:55:12','c4972e8b-bb30-4bcf-b79b-6f58c0c59db7'),(33748,'save-and-continue-cleanup','2023-04-05 12:40:11','2023-04-05 12:40:11','8480b0c8-5679-43a9-ab9a-9202c789da0c'),(33749,'freeform-purge-cache-key','2023-04-05 12:56:10','2023-04-05 12:56:10','fa8535db-8988-4b50-98aa-61f4d78c725e'),(33750,'freeform-digest-cache-key','2023-04-05 13:34:10','2023-04-05 13:34:10','af11934e-b7cb-45a5-a40a-5f512164d5e3'),(33751,'export-notifications','2023-04-05 13:34:10','2023-04-05 13:34:10','e60a569b-73ff-494e-b3c9-023ce8fe348f'),(33752,'save-and-continue-cleanup','2023-04-05 13:40:13','2023-04-05 13:40:13','e0c258ea-09a0-4327-9945-6246f6d365c1'),(33753,'freeform-purge-cache-key','2023-04-05 13:56:11','2023-04-05 13:56:11','51559c67-8de6-4dd7-bf6a-eb18e4ee18c2'),(33754,'save-and-continue-cleanup','2023-04-05 14:41:11','2023-04-05 14:41:11','0649cb24-542e-4ff5-827a-a7e9df72452e'),(33755,'freeform-feed-cache-key','2023-04-05 14:49:10','2023-04-05 14:49:10','2e80943f-6b84-488e-b67d-620de76d9418'),(33756,'freeform-purge-cache-key','2023-04-05 14:56:11','2023-04-05 14:56:11','fc6d7070-c63b-4c09-96c8-1257be410c51'),(33757,'save-and-continue-cleanup','2023-04-05 15:41:12','2023-04-05 15:41:12','119f3192-0adf-493f-b29a-69d0a0c3e154'),(33758,'freeform-purge-cache-key','2023-04-05 15:56:11','2023-04-05 15:56:11','11b8c7da-f2bd-428c-a666-c27c30e22d8f'),(33759,'freeform-digest-cache-key','2023-04-05 16:34:11','2023-04-05 16:34:11','a5d38ffc-a792-4d40-bea4-160ef6ea0970'),(33760,'export-notifications','2023-04-05 16:34:11','2023-04-05 16:34:11','dda035e8-1fe7-4746-8c7b-594b65f34b72'),(33761,'save-and-continue-cleanup','2023-04-05 16:42:10','2023-04-05 16:42:10','f0cbcb51-2600-4953-aa3c-fb9cfe7e05c7'),(33762,'freeform-purge-cache-key','2023-04-05 16:56:11','2023-04-05 16:56:11','9d406167-3b65-473f-8bbe-e5cccd51e10f'),(33763,'save-and-continue-cleanup','2023-04-05 17:42:12','2023-04-05 17:42:12','171b6de5-00b1-4549-a4e0-a8380874e177'),(33764,'freeform-purge-cache-key','2023-04-05 17:57:10','2023-04-05 17:57:10','6982c551-1317-490b-a602-b4d9a97505af'),(33765,'save-and-continue-cleanup','2023-04-05 18:42:13','2023-04-05 18:42:13','e9c756b5-51f1-4f2f-8887-2befd8b0e9eb'),(33766,'freeform-purge-cache-key','2023-04-05 18:57:12','2023-04-05 18:57:12','dc0dc66b-d6de-449b-a019-6c1ece74b777'),(33767,'freeform-digest-cache-key','2023-04-05 19:34:11','2023-04-05 19:34:11','35bbc5b2-2c89-4aaa-af29-25d2096c83d3'),(33768,'export-notifications','2023-04-05 19:34:11','2023-04-05 19:34:11','4c33a7e2-2e14-4041-94b0-e8c2e569bfc8'),(33769,'save-and-continue-cleanup','2023-04-05 19:43:10','2023-04-05 19:43:10','9d3c3b28-cf19-4ce6-b6b4-09a7ca29eb94'),(33770,'freeform-feed-cache-key','2023-04-05 19:49:10','2023-04-05 19:49:10','b95dc54c-b701-4ace-a28b-fd451b9866b7'),(33771,'freeform-purge-cache-key','2023-04-05 19:58:11','2023-04-05 19:58:11','bc56cc64-de59-42a6-80fa-cc3dea892d56'),(33772,'save-and-continue-cleanup','2023-04-05 20:43:12','2023-04-05 20:43:12','87317399-9070-42cb-a687-670c6af720c6'),(33773,'freeform-purge-cache-key','2023-04-05 20:58:11','2023-04-05 20:58:11','76926d5d-5644-4b11-b319-220d2a7c0584'),(33774,'save-and-continue-cleanup','2023-04-05 21:44:11','2023-04-05 21:44:11','df487775-df16-4b1d-b48c-a308327c67ac'),(33775,'freeform-purge-cache-key','2023-04-05 21:59:10','2023-04-05 21:59:10','3cc097e0-3186-44a4-ab72-71405972c375'),(33776,'freeform-digest-cache-key','2023-04-05 22:34:11','2023-04-05 22:34:11','5a7669a5-0d43-450e-ba57-4bdba880b54e'),(33777,'export-notifications','2023-04-05 22:34:11','2023-04-05 22:34:11','3798709a-ceb1-4fc1-8a91-278d28f7c35e'),(33778,'save-and-continue-cleanup','2023-04-05 22:44:11','2023-04-05 22:44:11','49f40904-c796-4747-8463-0524ce598217'),(33779,'freeform-purge-cache-key','2023-04-05 22:59:13','2023-04-05 22:59:13','f18ec531-5575-4936-b477-77b69856c2e6'),(33780,'save-and-continue-cleanup','2023-04-05 23:44:12','2023-04-05 23:44:12','dbe501a5-1bcf-4863-9d6f-e61e310b08b6'),(33781,'freeform-purge-cache-key','2023-04-06 00:00:11','2023-04-06 00:00:11','7f22d84b-6302-4c68-bf0c-759e3433e491'),(33782,'save-and-continue-cleanup','2023-04-06 00:44:23','2023-04-06 00:44:23','bbfa5348-e07a-4fbb-9f3d-af2a323a611c'),(33783,'freeform-feed-cache-key','2023-04-06 00:49:11','2023-04-06 00:49:11','51991e76-8b26-4eec-a2f2-a62725baaaa6'),(33784,'freeform-purge-cache-key','2023-04-06 01:01:11','2023-04-06 01:01:11','2425848a-7e3c-4f50-ba85-893718f617e4'),(33785,'freeform-digest-cache-key','2023-04-06 01:34:11','2023-04-06 01:34:11','9d985c00-c6d0-448d-923d-426607428158'),(33786,'export-notifications','2023-04-06 01:34:11','2023-04-06 01:34:11','996e62a6-b85e-4392-9732-0b62789ace9e'),(33787,'save-and-continue-cleanup','2023-04-06 01:45:11','2023-04-06 01:45:11','14247c02-dec9-446b-a062-774ce1effebd'),(33788,'freeform-purge-cache-key','2023-04-06 02:01:11','2023-04-06 02:01:11','0bdd7edb-6b87-4596-9b6b-d2f8b95c33f5'),(33789,'save-and-continue-cleanup','2023-04-06 02:45:11','2023-04-06 02:45:11','be0fdb0e-742d-42a3-a520-d68ce25184a0'),(33790,'freeform-purge-cache-key','2023-04-06 03:01:11','2023-04-06 03:01:11','ea9cf19e-5bee-4dfd-a3db-d4e604cf398c'),(33791,'save-and-continue-cleanup','2023-04-06 03:46:12','2023-04-06 03:46:12','d5faaf3f-6cd4-4a39-933b-a653ad0cba9c'),(33792,'freeform-purge-cache-key','2023-04-06 04:01:11','2023-04-06 04:01:11','6d8c5b6b-2a4c-47bf-bb62-3bb8c2ac3af4'),(33793,'freeform-digest-cache-key','2023-04-06 04:34:12','2023-04-06 04:34:12','ac3ef525-bef7-4280-8cc3-98e86389e7cb'),(33794,'export-notifications','2023-04-06 04:34:12','2023-04-06 04:34:12','93efccdf-e206-47b6-aada-1c1bab0b504d'),(33795,'save-and-continue-cleanup','2023-04-06 04:46:12','2023-04-06 04:46:12','6c6f6d61-2b9b-4dfe-9db9-e5c5660d4152'),(33796,'freeform-purge-cache-key','2023-04-06 05:01:11','2023-04-06 05:01:11','bd95ecb5-f54e-4277-b0ff-584ee60ebc43'),(33797,'save-and-continue-cleanup','2023-04-06 05:47:03','2023-04-06 05:47:03','80eff6bf-197c-470d-8e4c-e8bc787689a8'),(33798,'freeform-feed-cache-key','2023-04-06 05:49:11','2023-04-06 05:49:11','1c389d9b-b331-4e10-ad0c-31eb24d474c0'),(33799,'freeform-purge-cache-key','2023-04-06 06:01:11','2023-04-06 06:01:11','ea997267-4568-453c-83f5-261639c16ee4'),(33800,'save-and-continue-cleanup','2023-04-06 06:47:12','2023-04-06 06:47:12','d6c0d8a8-f178-4e8e-900d-ff46361d5e77'),(33801,'freeform-purge-cache-key','2023-04-06 07:01:13','2023-04-06 07:01:13','2c6f1aaf-8b45-46f9-a33a-1bd067566157'),(33802,'freeform-digest-cache-key','2023-04-06 07:34:13','2023-04-06 07:34:13','242edc18-cb5f-4d17-95c2-a1bfa1952d04'),(33803,'export-notifications','2023-04-06 07:34:13','2023-04-06 07:34:13','aca817eb-e70f-44c6-8954-21989724c55b'),(33804,'save-and-continue-cleanup','2023-04-06 07:47:19','2023-04-06 07:47:19','799fb723-1713-491d-b9f4-1029186a074a'),(33805,'freeform-purge-cache-key','2023-04-06 08:02:11','2023-04-06 08:02:11','cbd0f99c-fd68-43e5-822f-3d301e587316'),(33806,'save-and-continue-cleanup','2023-04-06 08:48:12','2023-04-06 08:48:12','1d1208ae-9334-44f1-a497-fae6cbdce1af'),(33807,'freeform-purge-cache-key','2023-04-06 09:02:12','2023-04-06 09:02:12','7b6e8bd3-a8fa-4a9e-91c6-936e5832bbf8'),(33808,'save-and-continue-cleanup','2023-04-06 09:49:13','2023-04-06 09:49:13','f7e77926-31e0-4fae-8b94-190ba91e6be3'),(33809,'freeform-purge-cache-key','2023-04-06 10:03:11','2023-04-06 10:03:11','ec7f9461-8015-4fc8-b2b3-fc1fb1cce5ff'),(33810,'freeform-digest-cache-key','2023-04-06 10:34:30','2023-04-06 10:34:30','1860d9d2-493a-4941-ab2e-9daa44834de0'),(33811,'export-notifications','2023-04-06 10:34:30','2023-04-06 10:34:30','a11de59d-c8fe-4893-8134-ba5c88ee36f8'),(33812,'save-and-continue-cleanup','2023-04-06 10:49:13','2023-04-06 10:49:13','44b46bd1-86c1-4984-848d-e9e136edba4a'),(33813,'freeform-feed-cache-key','2023-04-06 10:49:13','2023-04-06 10:49:13','19b6776e-fcb7-49b5-a5af-d0c055579766'),(33814,'freeform-purge-cache-key','2023-04-06 11:03:11','2023-04-06 11:03:11','89ab86f6-d1cf-4468-a530-ba9384d47029'),(33815,'save-and-continue-cleanup','2023-04-06 11:49:25','2023-04-06 11:49:25','751b36fe-f847-4502-a695-5d6903cd34eb'),(33816,'freeform-purge-cache-key','2023-04-06 12:03:12','2023-04-06 12:03:12','ece8ee3d-a731-49fe-9b0d-62758509a1f6'),(33817,'save-and-continue-cleanup','2023-04-06 12:50:12','2023-04-06 12:50:12','c658cd63-f7c9-42f6-9df4-7459c76bbe94'),(33818,'freeform-purge-cache-key','2023-04-06 13:03:13','2023-04-06 13:03:13','a562eef9-f203-43cc-bcdf-848af6e4aa41'),(33819,'freeform-digest-cache-key','2023-04-06 13:35:11','2023-04-06 13:35:11','322d0b3b-62ce-4147-ac0a-ef6193a3947f'),(33820,'export-notifications','2023-04-06 13:35:11','2023-04-06 13:35:11','d18f5769-10d0-416c-a29a-8f0abeb7ef70'),(33821,'save-and-continue-cleanup','2023-04-06 13:51:10','2023-04-06 13:51:10','f0ae901d-038e-453b-8045-fdfa94d0c0e3'),(33822,'freeform-purge-cache-key','2023-04-06 14:04:12','2023-04-06 14:04:12','04ae733e-7bd0-43cc-8874-cae4ba7d654a'),(33823,'save-and-continue-cleanup','2023-04-06 14:51:11','2023-04-06 14:51:11','c6bb7124-8162-4910-ac1f-d910d63ea081'),(33824,'freeform-purge-cache-key','2023-04-06 15:04:24','2023-04-06 15:04:24','8f9883e5-f1b2-4b8d-8426-6dc8cbe92117'),(33825,'freeform-feed-cache-key','2023-04-06 15:49:25','2023-04-06 15:49:25','f0cfe2dd-e52d-466e-955f-dabe7fec8188'),(33826,'save-and-continue-cleanup','2023-04-06 15:51:11','2023-04-06 15:51:11','198ede7b-4224-4692-a9da-9bb936d5cbfa'),(33827,'freeform-purge-cache-key','2023-04-06 16:05:13','2023-04-06 16:05:13','f2f638bf-3793-42ff-afa9-e232016ba1bc'),(33828,'freeform-digest-cache-key','2023-04-06 16:35:11','2023-04-06 16:35:11','a1c257ad-5dad-4d56-9bde-13067e75dee8'),(33829,'export-notifications','2023-04-06 16:35:11','2023-04-06 16:35:11','ea788b53-caa9-4e29-b488-0090bdf006fb'),(33830,'save-and-continue-cleanup','2023-04-06 16:51:12','2023-04-06 16:51:12','37efa73d-116f-4bab-8f6a-baae5656088b'),(33831,'freeform-purge-cache-key','2023-04-06 17:06:12','2023-04-06 17:06:12','45927419-4b85-4d47-b3b1-5ef61a614f8a'),(33832,'save-and-continue-cleanup','2023-04-06 17:52:11','2023-04-06 17:52:11','e64e073c-09c6-4a37-ac8b-ec4b7445b856'),(33833,'freeform-purge-cache-key','2023-04-06 18:07:12','2023-04-06 18:07:12','e7138f5a-0e91-428b-a426-ded0d9179d3b'),(33834,'save-and-continue-cleanup','2023-04-06 18:52:12','2023-04-06 18:52:12','d63933b6-fa25-47f9-9804-275a35f75bf4'),(33835,'freeform-purge-cache-key','2023-04-06 19:07:12','2023-04-06 19:07:12','e65b994f-bcf8-4308-ac1b-139d4a805c21'),(33836,'freeform-digest-cache-key','2023-04-06 19:35:13','2023-04-06 19:35:13','a0933fa0-f6c9-436b-a4c1-d9890a50eb08'),(33837,'export-notifications','2023-04-06 19:35:13','2023-04-06 19:35:13','c1145a36-b5c1-415d-9ac3-91bda7f7831c'),(33838,'save-and-continue-cleanup','2023-04-06 19:52:13','2023-04-06 19:52:13','f89c1bb7-d06a-4789-a215-adf806a6eac2'),(33839,'freeform-purge-cache-key','2023-04-06 20:07:13','2023-04-06 20:07:13','872c296a-42ee-4d8e-bfa3-e0005453edc8'),(33840,'freeform-feed-cache-key','2023-04-06 20:50:12','2023-04-06 20:50:12','9d59bb17-aa43-4038-bbbe-2b937ca8afc1'),(33841,'save-and-continue-cleanup','2023-04-06 20:53:10','2023-04-06 20:53:10','248bc8b7-f6ac-443a-84a1-6b0e1facacea'),(33842,'freeform-purge-cache-key','2023-04-06 21:08:13','2023-04-06 21:08:13','615e45a3-e88e-4a9b-91ca-50bfc38d20a5'),(33843,'save-and-continue-cleanup','2023-04-06 21:53:11','2023-04-06 21:53:11','fba54e18-d5a7-42a4-9178-c3cbdb245f6f'),(33844,'freeform-purge-cache-key','2023-04-06 22:09:12','2023-04-06 22:09:12','e0e26c28-0076-48dd-841e-424c3e0462fd'),(33845,'freeform-digest-cache-key','2023-04-06 22:36:10','2023-04-06 22:36:10','ca92f3b1-64e4-408d-a475-ae7c84309931'),(33846,'export-notifications','2023-04-06 22:36:10','2023-04-06 22:36:10','3a1f12e0-be82-44b0-b711-55c797da0267'),(33847,'save-and-continue-cleanup','2023-04-06 22:53:11','2023-04-06 22:53:11','d9ae5801-ddf9-4b87-afdd-f0641ba94f23'),(33848,'freeform-purge-cache-key','2023-04-06 23:09:12','2023-04-06 23:09:12','4699d2f7-7d41-4f29-8896-aa0fb197e0d9'),(33849,'save-and-continue-cleanup','2023-04-06 23:53:11','2023-04-06 23:53:11','64f604a2-b4fb-455c-bab6-119d1efc0236'),(33850,'freeform-purge-cache-key','2023-04-07 00:09:13','2023-04-07 00:09:13','e79f83f1-b474-42be-ba5d-cb1900447c4c'),(33851,'save-and-continue-cleanup','2023-04-07 00:53:11','2023-04-07 00:53:11','bef1a4fa-342d-4526-8c19-0fbb7595a14e'),(33852,'freeform-purge-cache-key','2023-04-07 01:10:12','2023-04-07 01:10:12','dc38db82-88b1-471d-a96a-82f4186542c2'),(33853,'freeform-digest-cache-key','2023-04-07 01:36:11','2023-04-07 01:36:11','c0fc01dd-a42b-40d7-ad60-90aed407c61a'),(33854,'export-notifications','2023-04-07 01:36:11','2023-04-07 01:36:11','6d172de8-90cc-400c-97a8-47f6773ef81f'),(33855,'freeform-feed-cache-key','2023-04-07 01:51:10','2023-04-07 01:51:10','02020c4b-6f44-458b-9747-952e3efbe9b0'),(33856,'save-and-continue-cleanup','2023-04-07 01:53:14','2023-04-07 01:53:14','7e0f210d-72e0-4878-a1da-6ff03d6459d0'),(33857,'freeform-purge-cache-key','2023-04-07 02:10:12','2023-04-07 02:10:12','254c0f65-95ca-484b-85b7-ee9f80bee978'),(33858,'save-and-continue-cleanup','2023-04-07 02:54:11','2023-04-07 02:54:11','d51d3e73-ec20-4ca5-bf12-0e7c0e7b3d11'),(33859,'freeform-purge-cache-key','2023-04-07 03:10:12','2023-04-07 03:10:12','eb577741-7312-4eaf-af0f-8a529cd645db'),(33860,'save-and-continue-cleanup','2023-04-07 03:55:12','2023-04-07 03:55:12','58b9bcfb-a6bd-4ef2-821a-514f5864c875'),(33861,'freeform-purge-cache-key','2023-04-07 04:10:12','2023-04-07 04:10:12','9b59932b-c5c8-495a-9a21-539da3bfe8fc'),(33862,'freeform-digest-cache-key','2023-04-07 04:36:11','2023-04-07 04:36:11','80796822-6653-47d0-9e70-5dd464b33069'),(33863,'export-notifications','2023-04-07 04:36:11','2023-04-07 04:36:11','017d3564-8934-4bb8-a815-aa45021160a4'),(33864,'save-and-continue-cleanup','2023-04-07 04:55:12','2023-04-07 04:55:12','8d9d77d1-18a4-44ac-8ceb-1c35cb27274b'),(33865,'freeform-purge-cache-key','2023-04-07 05:10:14','2023-04-07 05:10:14','ed3b6341-f7d4-43fc-9b80-9d60ae7abc9e'),(33866,'save-and-continue-cleanup','2023-04-07 05:55:12','2023-04-07 05:55:12','397c9e71-6493-4e3c-a2c6-f01342eed182'),(33867,'freeform-purge-cache-key','2023-04-07 06:10:30','2023-04-07 06:10:30','eefde57d-4ea8-4291-8961-57525166d9bb'),(33868,'freeform-feed-cache-key','2023-04-07 06:51:33','2023-04-07 06:51:33','14679567-41b4-4c98-8b06-1e6c7dc76009'),(33869,'save-and-continue-cleanup','2023-04-07 06:55:31','2023-04-07 06:55:31','321fdf68-7fc4-4d98-8945-09e637458688'),(33870,'freeform-purge-cache-key','2023-04-07 07:10:59','2023-04-07 07:10:59','50e03055-a5e4-4bb3-83c7-9529f87c8e17'),(33871,'freeform-digest-cache-key','2023-04-07 07:36:11','2023-04-07 07:36:11','676b7691-f621-47ff-8eae-7c1ff8bf5661'),(33872,'export-notifications','2023-04-07 07:36:11','2023-04-07 07:36:11','7ccb418d-6743-4150-b332-4c39aa7caae8'),(33873,'save-and-continue-cleanup','2023-04-07 07:56:10','2023-04-07 07:56:10','33b196c0-3dc3-4030-a9c6-2c44ba10f332'),(33874,'freeform-purge-cache-key','2023-04-07 08:11:12','2023-04-07 08:11:12','c51b4936-829d-4a96-a07d-50e30279c95f'),(33875,'save-and-continue-cleanup','2023-04-07 08:56:10','2023-04-07 08:56:10','ee2ea096-f5bf-49bd-9870-85fa51917f73'),(33876,'freeform-purge-cache-key','2023-04-07 09:11:18','2023-04-07 09:11:18','e6f68d65-fa48-4a46-81c7-9b4a1d00bd4e'),(33877,'save-and-continue-cleanup','2023-04-07 09:56:12','2023-04-07 09:56:12','fffe6379-90b7-4dec-b2a7-1434790e77a5'),(33878,'freeform-purge-cache-key','2023-04-07 10:12:14','2023-04-07 10:12:14','9790575b-e1d3-41c9-a51b-daa9c73b8d00'),(33879,'freeform-digest-cache-key','2023-04-07 10:36:13','2023-04-07 10:36:13','4d4eb39f-3b07-4d7d-8ae9-074a98a04cc8'),(33880,'export-notifications','2023-04-07 10:36:13','2023-04-07 10:36:13','ec72c30e-213d-45bb-abf2-8ca990bf401c'),(33881,'save-and-continue-cleanup','2023-04-07 10:57:13','2023-04-07 10:57:13','2d291f3d-bfaf-40cf-b1da-9ccb084a82a6'),(33882,'freeform-purge-cache-key','2023-04-07 11:13:13','2023-04-07 11:13:13','4f013b28-6842-4ebe-aa9c-9f5330cec160'),(33883,'freeform-feed-cache-key','2023-04-07 11:52:30','2023-04-07 11:52:30','543e602f-86d7-4a02-87a6-d1635047084e'),(33884,'save-and-continue-cleanup','2023-04-07 12:00:14','2023-04-07 12:00:14','a9fe9321-21b6-4e9a-a6ea-65879f073e08'),(33885,'freeform-purge-cache-key','2023-04-07 12:14:11','2023-04-07 12:14:11','8bac4a21-e31d-4d72-951a-fb0e9468d8d8'),(33886,'save-and-continue-cleanup','2023-04-07 13:01:11','2023-04-07 13:01:11','e268593c-2762-420f-9a5f-8c90bf830e1a'),(33887,'freeform-purge-cache-key','2023-04-07 13:14:11','2023-04-07 13:14:11','145c5fc1-fa44-41e3-8b0a-22fdd726cd9b'),(33888,'freeform-digest-cache-key','2023-04-07 13:37:09','2023-04-07 13:37:09','6a499458-e3db-41ef-92ff-21cbaf334298'),(33889,'export-notifications','2023-04-07 13:37:09','2023-04-07 13:37:09','8d7217ae-110c-4e25-a8c6-7108e7dadad3'),(33890,'save-and-continue-cleanup','2023-04-07 14:01:11','2023-04-07 14:01:11','fd59e720-b292-4b74-b43d-08ab99c29948'),(33891,'freeform-purge-cache-key','2023-04-07 14:14:11','2023-04-07 14:14:11','c7b470f0-278d-4091-8a18-20f18b6b3ca9'),(33892,'save-and-continue-cleanup','2023-04-07 15:01:11','2023-04-07 15:01:11','0a240b1b-7302-4998-9136-ca52138317d5'),(33893,'freeform-purge-cache-key','2023-04-07 15:15:11','2023-04-07 15:15:11','44592926-7411-4404-8845-7d80d8917442'),(33894,'save-and-continue-cleanup','2023-04-07 16:01:11','2023-04-07 16:01:11','95bea55d-0c5d-4e23-9cb8-06b4920d5853'),(33895,'freeform-purge-cache-key','2023-04-07 16:15:11','2023-04-07 16:15:11','4435d051-b280-48d0-b43e-af5351f7a331'),(33896,'freeform-digest-cache-key','2023-04-07 16:37:10','2023-04-07 16:37:10','89d8ce06-9ddf-4641-9fd7-705d98eda364'),(33897,'export-notifications','2023-04-07 16:37:10','2023-04-07 16:37:10','4729e01d-8035-4f5e-a2e1-d340c140b08b'),(33898,'freeform-feed-cache-key','2023-04-07 16:53:11','2023-04-07 16:53:11','9449b695-a0d9-4145-bfeb-39bdf58c4226'),(33899,'save-and-continue-cleanup','2023-04-07 17:01:11','2023-04-07 17:01:11','a47c68b1-8043-4710-9494-76c7f4ec5d30'),(33900,'freeform-purge-cache-key','2023-04-07 17:15:12','2023-04-07 17:15:12','18e82642-dab2-49be-b8fa-7fe0838e0c14'),(33901,'save-and-continue-cleanup','2023-04-07 18:02:12','2023-04-07 18:02:12','1b263b89-4323-437e-99c2-82263af33223'),(33902,'freeform-purge-cache-key','2023-04-07 18:15:12','2023-04-07 18:15:12','f4b6d220-5fa4-46ca-a791-a9a11a8f75b9'),(33903,'save-and-continue-cleanup','2023-04-07 19:02:12','2023-04-07 19:02:12','bc386346-d267-4b61-be13-02e140763b48'),(33904,'freeform-purge-cache-key','2023-04-07 19:16:11','2023-04-07 19:16:11','bfa5f7fc-475b-4777-9221-b7af1f616638'),(33905,'freeform-digest-cache-key','2023-04-07 19:37:10','2023-04-07 19:37:10','b71f439c-69e3-4526-924d-26969f778c3d'),(33906,'export-notifications','2023-04-07 19:37:10','2023-04-07 19:37:10','f50173ce-e1d5-46c6-b191-01fc1cc70d4d'),(33907,'save-and-continue-cleanup','2023-04-07 20:02:12','2023-04-07 20:02:12','54d5df26-feaf-4359-97c5-7ae4dd81d8ea'),(33908,'freeform-purge-cache-key','2023-04-07 20:16:11','2023-04-07 20:16:11','ed227bae-5256-4e17-88d5-40c28779a688'),(33909,'save-and-continue-cleanup','2023-04-07 21:02:13','2023-04-07 21:02:13','acd61dfd-3f13-470b-a9d7-86bf06280f99'),(33910,'freeform-purge-cache-key','2023-04-07 21:16:12','2023-04-07 21:16:12','5f92e315-ed0f-49c4-a82f-1a7fdbade8ce'),(33911,'freeform-feed-cache-key','2023-04-07 21:54:11','2023-04-07 21:54:11','929d8659-0f4f-40ff-93eb-547c71eee828'),(33912,'save-and-continue-cleanup','2023-04-07 22:03:11','2023-04-07 22:03:11','236c8380-8273-4616-95bf-7992bcd35716'),(33913,'freeform-purge-cache-key','2023-04-07 22:16:13','2023-04-07 22:16:13','08c69da1-bce6-4f8a-8e46-c133dcad4802'),(33914,'freeform-digest-cache-key','2023-04-07 22:37:12','2023-04-07 22:37:12','3067f753-d703-45ad-86e8-47916dcc014e'),(33915,'export-notifications','2023-04-07 22:37:12','2023-04-07 22:37:12','70f1746f-7dce-4986-86d5-1ce83f17c635'),(33916,'save-and-continue-cleanup','2023-04-07 23:03:11','2023-04-07 23:03:11','b4e4c964-2d23-4524-9d32-59eddef142b1'),(33917,'freeform-purge-cache-key','2023-04-07 23:17:12','2023-04-07 23:17:12','1cb571f4-d982-4136-a231-ca4889a93cdf'),(33918,'save-and-continue-cleanup','2023-04-08 00:03:12','2023-04-08 00:03:12','0d5cb849-3423-4509-8093-40457e04a06f'),(33919,'freeform-purge-cache-key','2023-04-08 00:18:12','2023-04-08 00:18:12','ae036ff6-68b5-4a7e-a756-5892eaba56fc'),(33920,'save-and-continue-cleanup','2023-04-08 01:04:13','2023-04-08 01:04:13','108a0e6a-db6e-412f-9986-a15e0cd091b2'),(33921,'freeform-purge-cache-key','2023-04-08 01:19:13','2023-04-08 01:19:13','5fe9f3c8-6f2c-422a-bbb2-e46f89f8ec91'),(33922,'freeform-digest-cache-key','2023-04-08 01:38:11','2023-04-08 01:38:11','6ce59482-c418-4c8f-84f4-6bc28def777b'),(33923,'export-notifications','2023-04-08 01:38:11','2023-04-08 01:38:11','e2232e03-c27e-4e1b-8e9a-30edb5951c87'),(33924,'save-and-continue-cleanup','2023-04-08 02:05:13','2023-04-08 02:05:13','cb7b4702-fe1e-4f1e-91c3-a564bccef71e'),(33925,'freeform-purge-cache-key','2023-04-08 02:20:11','2023-04-08 02:20:11','7817ca9c-107c-4ecd-899b-a89461a64972'),(33926,'freeform-feed-cache-key','2023-04-08 02:55:11','2023-04-08 02:55:11','cb37738a-e206-49ec-81a3-2e808c5c13e4'),(33927,'save-and-continue-cleanup','2023-04-08 03:05:13','2023-04-08 03:05:13','75bc820d-d594-4f41-9c0b-fd797b40e7fa'),(33928,'freeform-purge-cache-key','2023-04-08 03:20:11','2023-04-08 03:20:11','49177d73-8a42-42a5-904d-2d0fc1996c7d'),(33929,'save-and-continue-cleanup','2023-04-08 04:05:13','2023-04-08 04:05:13','28194352-242b-4440-9e58-2b824d7c311a'),(33930,'freeform-purge-cache-key','2023-04-08 04:20:11','2023-04-08 04:20:11','6d80d68f-4148-45e0-81f9-5ccdf7ce6153'),(33931,'freeform-digest-cache-key','2023-04-08 04:38:12','2023-04-08 04:38:12','bc6c3d55-d821-4d2a-b6a6-c3b58067e059'),(33932,'export-notifications','2023-04-08 04:38:12','2023-04-08 04:38:12','781d0629-5998-48de-aad0-7d963d5df45b'),(33933,'save-and-continue-cleanup','2023-04-08 05:05:15','2023-04-08 05:05:15','b152bc66-b13a-4d7d-9f34-5e07f9d5e212'),(33934,'freeform-purge-cache-key','2023-04-08 05:21:11','2023-04-08 05:21:11','43f13c53-81e1-43aa-8783-4a49a6037795'),(33935,'save-and-continue-cleanup','2023-04-08 06:05:37','2023-04-08 06:05:37','feaa91fb-ca2f-49a5-ad80-b69d6fac8dad'),(33936,'freeform-purge-cache-key','2023-04-08 06:21:13','2023-04-08 06:21:13','8b65799f-689e-4522-8860-4d9c55ba1fa6'),(33937,'save-and-continue-cleanup','2023-04-08 07:06:12','2023-04-08 07:06:12','af309485-6b50-47ce-8297-11444eb95bdf'),(33938,'freeform-purge-cache-key','2023-04-08 07:22:11','2023-04-08 07:22:11','287c761a-fb19-47c2-8934-70ef1492ae78'),(33939,'freeform-digest-cache-key','2023-04-08 07:38:12','2023-04-08 07:38:12','e31ae139-1f66-45aa-8304-2c1b06966837'),(33940,'export-notifications','2023-04-08 07:38:12','2023-04-08 07:38:12','de9e5ea1-ed62-4cca-b041-7706f20e74cf'),(33941,'freeform-feed-cache-key','2023-04-08 07:55:11','2023-04-08 07:55:11','4d90a97d-b04e-430c-a69c-6e6ee4bdb08a'),(33942,'save-and-continue-cleanup','2023-04-08 08:07:12','2023-04-08 08:07:12','2404f759-5b45-4fdb-ab4c-0d564f876723'),(33943,'freeform-purge-cache-key','2023-04-08 08:22:11','2023-04-08 08:22:11','c54a2e8e-7d7a-4ab6-b353-1013a4b344de'),(33944,'save-and-continue-cleanup','2023-04-08 09:07:40','2023-04-08 09:07:40','cdd9ff72-61fa-463f-bd57-6ada3d645b18'),(33945,'freeform-purge-cache-key','2023-04-08 09:22:11','2023-04-08 09:22:11','84fef7cd-d4cd-457a-944b-07ea1c7890cf'),(33946,'save-and-continue-cleanup','2023-04-08 10:08:14','2023-04-08 10:08:14','d75b94c3-db9b-453e-b306-455b0226a6c3'),(33947,'freeform-purge-cache-key','2023-04-08 10:22:14','2023-04-08 10:22:14','bb47b407-b7a3-458b-b3b8-cce15c15a1cf'),(33948,'freeform-digest-cache-key','2023-04-08 10:38:18','2023-04-08 10:38:18','437db7fd-757b-4edc-8b85-f14503a5a3f8'),(33949,'export-notifications','2023-04-08 10:38:18','2023-04-08 10:38:18','c15b1960-d131-43e9-b32a-cd7db69ecc4a'),(33950,'save-and-continue-cleanup','2023-04-08 11:08:17','2023-04-08 11:08:17','a3e377b9-d908-4c4a-89b5-62ade1884af0'),(33951,'freeform-purge-cache-key','2023-04-08 11:22:17','2023-04-08 11:22:17','49a384a2-e160-4896-b23f-28d39d336b06'),(33952,'save-and-continue-cleanup','2023-04-08 12:09:12','2023-04-08 12:09:12','e0587876-1434-4dc3-b956-b930ca10aa2e'),(33953,'freeform-purge-cache-key','2023-04-08 12:23:05','2023-04-08 12:23:05','3d803e88-b8e0-4753-ac35-c800b738624a'),(33954,'freeform-feed-cache-key','2023-04-08 12:55:12','2023-04-08 12:55:12','8d4fcb82-40ae-46e8-8632-efdecfa4873d'),(33955,'save-and-continue-cleanup','2023-04-08 13:09:12','2023-04-08 13:09:12','f660f3b5-366d-475c-825c-924d0fa4c3cd'),(33956,'freeform-purge-cache-key','2023-04-08 13:23:11','2023-04-08 13:23:11','4890e9fa-4ec2-4b3f-9c32-9514478d8852'),(33957,'freeform-digest-cache-key','2023-04-08 13:39:11','2023-04-08 13:39:11','6935fa54-cd39-4f4b-ab7a-9c7e15ab6b0c'),(33958,'export-notifications','2023-04-08 13:39:11','2023-04-08 13:39:11','b9ee3d30-2d4d-49f6-a186-954c7f994222'),(33959,'save-and-continue-cleanup','2023-04-08 14:10:12','2023-04-08 14:10:12','fa18804d-eea0-46c3-8935-b3d06931535f'),(33960,'freeform-purge-cache-key','2023-04-08 14:23:12','2023-04-08 14:23:12','959d6232-62bc-4d96-95ad-2ea96be564dd'),(33961,'save-and-continue-cleanup','2023-04-08 15:10:12','2023-04-08 15:10:12','304dd9b0-38a9-4a86-b657-eb637378e288'),(33962,'freeform-purge-cache-key','2023-04-08 15:24:11','2023-04-08 15:24:11','64a77832-0910-490c-ac34-633df1851624'),(33963,'save-and-continue-cleanup','2023-04-08 16:10:12','2023-04-08 16:10:12','f3baad7a-3245-45de-85d4-2b9a9013435b'),(33964,'freeform-purge-cache-key','2023-04-08 16:24:11','2023-04-08 16:24:11','f6e81667-d104-48c4-b455-a5fb4d48838f'),(33965,'freeform-digest-cache-key','2023-04-08 16:39:12','2023-04-08 16:39:12','bce83bb7-3c99-475c-9488-67bc91b8887b'),(33966,'export-notifications','2023-04-08 16:39:12','2023-04-08 16:39:12','111485a4-5eb3-4f04-aab3-720d4e610b6f'),(33967,'save-and-continue-cleanup','2023-04-08 17:11:11','2023-04-08 17:11:11','5c8c7a3f-6d11-4c51-b8ee-ecb4fd137c0c'),(33968,'freeform-purge-cache-key','2023-04-08 17:24:11','2023-04-08 17:24:11','aae0740d-7d08-4756-b1b2-ba236f9c5fa1'),(33969,'freeform-feed-cache-key','2023-04-08 17:55:13','2023-04-08 17:55:13','6f46b00a-4088-45fb-97c9-d9c5b9312936'),(33970,'save-and-continue-cleanup','2023-04-08 18:11:12','2023-04-08 18:11:12','99a8da66-7afc-4e83-924c-9bda9857a90c'),(33971,'freeform-purge-cache-key','2023-04-08 18:24:12','2023-04-08 18:24:12','b3662180-eeed-46a8-9854-1a83a4fc3b69'),(33972,'save-and-continue-cleanup','2023-04-08 19:11:12','2023-04-08 19:11:12','1631f09f-4fa1-474c-ad56-fc85dd21a1d5'),(33973,'freeform-purge-cache-key','2023-04-08 19:25:12','2023-04-08 19:25:12','9557722a-5c80-4e67-9da8-98b4941feea4'),(33974,'freeform-digest-cache-key','2023-04-08 19:40:11','2023-04-08 19:40:11','2fad4b0c-7ff6-4a02-9dd3-8503db29f189'),(33975,'export-notifications','2023-04-08 19:40:11','2023-04-08 19:40:11','a6d45ba0-5ec7-460e-b089-a98bf59d017e'),(33976,'save-and-continue-cleanup','2023-04-08 20:11:12','2023-04-08 20:11:12','1112a047-d6cd-450b-bca9-2420f00886e3'),(33977,'freeform-purge-cache-key','2023-04-08 20:26:11','2023-04-08 20:26:11','20165aef-62ff-4355-b1ad-2c6624fb9f97'),(33978,'save-and-continue-cleanup','2023-04-08 21:12:12','2023-04-08 21:12:12','70c12812-aabc-4dee-bdc0-675e71a5aa89'),(33979,'freeform-purge-cache-key','2023-04-08 21:27:13','2023-04-08 21:27:13','3351353b-461b-4819-969d-63bd49671a31'),(33980,'save-and-continue-cleanup','2023-04-08 22:13:11','2023-04-08 22:13:11','dffbbfb8-8e5c-47dc-82e7-cf4dd2aa860a'),(33981,'freeform-purge-cache-key','2023-04-08 22:27:15','2023-04-08 22:27:15','7a2c9ac0-d198-4564-8121-721323746ba4'),(33982,'freeform-digest-cache-key','2023-04-08 22:40:11','2023-04-08 22:40:11','f255d358-8448-4cab-b8f3-b8071726d7bc'),(33983,'export-notifications','2023-04-08 22:40:11','2023-04-08 22:40:11','eb59cdc1-6df2-4ca7-92b2-aec6b1809056'),(33984,'freeform-feed-cache-key','2023-04-08 22:56:11','2023-04-08 22:56:11','7460c2d6-8e1b-470e-a9e6-6b8f370c8ba9'),(33985,'save-and-continue-cleanup','2023-04-08 23:13:11','2023-04-08 23:13:11','be61109c-e44b-4d64-819a-07f4bf290b3e'),(33986,'freeform-purge-cache-key','2023-04-08 23:28:12','2023-04-08 23:28:12','5635a9bf-c010-4305-bc9b-20e828b75f38'),(33987,'save-and-continue-cleanup','2023-04-09 00:14:10','2023-04-09 00:14:10','2c905c5c-5d65-47fc-b431-8756be4f20e2'),(33988,'freeform-purge-cache-key','2023-04-09 00:29:12','2023-04-09 00:29:12','5511fc20-cc4e-4009-91a1-74ea204333d6'),(33989,'save-and-continue-cleanup','2023-04-09 01:14:11','2023-04-09 01:14:11','39d00e3f-ef13-469b-895b-27a4fcff7da7'),(33990,'freeform-purge-cache-key','2023-04-09 01:30:11','2023-04-09 01:30:11','b2b78dfd-87d1-4b9f-bdc9-b2adabb143cf'),(33991,'freeform-digest-cache-key','2023-04-09 01:40:12','2023-04-09 01:40:12','dfb608fd-40bc-41aa-8fda-ca53a47b0806'),(33992,'export-notifications','2023-04-09 01:40:12','2023-04-09 01:40:12','6a33a75a-e77e-459e-a54c-680babd7c7b4'),(33993,'save-and-continue-cleanup','2023-04-09 02:14:11','2023-04-09 02:14:11','e0fbcc4d-90ff-4f8f-b0ea-14f862253435'),(33994,'freeform-purge-cache-key','2023-04-09 02:30:11','2023-04-09 02:30:11','338144f8-4ee7-4d86-bb2f-fc90187578e5'),(33995,'save-and-continue-cleanup','2023-04-09 03:14:11','2023-04-09 03:14:11','2492a6b5-4915-4c4c-9154-954878a579c2'),(33996,'freeform-purge-cache-key','2023-04-09 03:30:14','2023-04-09 03:30:14','f987bb55-cb48-49b0-96fd-d1e626ab30cb'),(33997,'freeform-feed-cache-key','2023-04-09 03:57:11','2023-04-09 03:57:11','d8681bf1-f6ba-45b3-8d0d-4c5825cf1b26'),(33998,'save-and-continue-cleanup','2023-04-09 04:14:11','2023-04-09 04:14:11','94f5b654-31b1-426b-995b-3a1fcf07cc3f'),(33999,'freeform-purge-cache-key','2023-04-09 04:30:35','2023-04-09 04:30:35','8f4a0829-6b24-4492-bdbe-df037e61523b'),(34000,'freeform-digest-cache-key','2023-04-09 04:40:13','2023-04-09 04:40:13','93cd6583-af86-498f-9cb8-3a8d854e4d99'),(34001,'export-notifications','2023-04-09 04:40:13','2023-04-09 04:40:13','b11c7d69-2cd6-4a43-89fb-094683197e38'),(34002,'save-and-continue-cleanup','2023-04-09 05:14:11','2023-04-09 05:14:11','29dd5ea0-3336-44fa-81a7-3761b981b137'),(34003,'freeform-purge-cache-key','2023-04-09 05:31:11','2023-04-09 05:31:11','49dfeea1-6a27-43e3-9e74-a403ca0d64c5'),(34004,'save-and-continue-cleanup','2023-04-09 06:14:12','2023-04-09 06:14:12','244eb236-c9b1-464d-a47b-ca92df947120'),(34005,'freeform-purge-cache-key','2023-04-09 06:32:13','2023-04-09 06:32:13','0f6adeae-862f-423a-9ffc-c5c87fcf51c1'),(34006,'save-and-continue-cleanup','2023-04-09 07:14:12','2023-04-09 07:14:12','a6617e0f-a5d9-4cbc-84a3-94f71b4bb1ca'),(34007,'freeform-purge-cache-key','2023-04-09 07:32:13','2023-04-09 07:32:13','b60dfbb6-ff90-4eaf-8c1c-1d17161b5cf9'),(34008,'freeform-digest-cache-key','2023-04-09 07:41:12','2023-04-09 07:41:12','970397b5-c7f0-4b15-973c-7fd6bfda59e9'),(34009,'export-notifications','2023-04-09 07:41:12','2023-04-09 07:41:12','619b431c-f317-46a2-8ed3-dc96278dab71'),(34010,'save-and-continue-cleanup','2023-04-09 08:14:13','2023-04-09 08:14:13','43190078-c869-4651-a318-0106ea3b89b4'),(34011,'freeform-purge-cache-key','2023-04-09 08:32:13','2023-04-09 08:32:13','39a217ec-909f-45e8-ada9-1a933459386f'),(34012,'freeform-feed-cache-key','2023-04-09 08:57:11','2023-04-09 08:57:11','523d460d-3097-414a-8301-5b5da63d215d'),(34013,'save-and-continue-cleanup','2023-04-09 09:14:18','2023-04-09 09:14:18','1e4ea141-60b6-4d61-b130-21351e5e7886'),(34014,'freeform-purge-cache-key','2023-04-09 09:32:13','2023-04-09 09:32:13','e1ae6def-785a-40d3-8da5-a80fc015531f'),(34015,'save-and-continue-cleanup','2023-04-09 10:15:12','2023-04-09 10:15:12','7a333aa7-ce38-4c24-ab9b-365fb33de3fb'),(34016,'freeform-purge-cache-key','2023-04-09 10:33:12','2023-04-09 10:33:12','f8cb2e75-25d3-40f4-b3d3-9fb6908756d3'),(34017,'freeform-digest-cache-key','2023-04-09 10:42:11','2023-04-09 10:42:11','c95aacd4-1099-413a-8ddb-a4285fc79c06'),(34018,'export-notifications','2023-04-09 10:42:11','2023-04-09 10:42:11','509e94df-ce25-4af2-a719-24207965a0bd'),(34019,'save-and-continue-cleanup','2023-04-09 11:15:34','2023-04-09 11:15:34','9c9e81c3-54ad-4be8-bf54-454c82d04ae1'),(34020,'freeform-purge-cache-key','2023-04-09 11:34:10','2023-04-09 11:34:10','2257967e-d0d2-4212-8b1a-c38f3084f49a'),(34021,'save-and-continue-cleanup','2023-04-09 12:16:10','2023-04-09 12:16:10','f398a551-a1df-4b52-989c-9464f5e6701b'),(34022,'freeform-purge-cache-key','2023-04-09 12:34:12','2023-04-09 12:34:12','b03590e4-66de-4cdb-a6f4-f5be5441a2d0'),(34023,'save-and-continue-cleanup','2023-04-09 13:16:12','2023-04-09 13:16:12','032c6210-a817-4aaa-a0ac-13a65d13bd17'),(34024,'freeform-purge-cache-key','2023-04-09 13:34:33','2023-04-09 13:34:33','7a39d655-b846-4e66-a0c7-bf149127ce69'),(34025,'freeform-digest-cache-key','2023-04-09 13:42:11','2023-04-09 13:42:11','4eb7b065-4cf0-4b87-afd8-8012c88396c0'),(34026,'export-notifications','2023-04-09 13:42:11','2023-04-09 13:42:11','09f2900e-5e02-4a32-8536-9a2e13199c47'),(34027,'freeform-feed-cache-key','2023-04-09 13:57:11','2023-04-09 13:57:11','53027f78-268c-471e-a7d3-2ba5a04c63b3'),(34028,'save-and-continue-cleanup','2023-04-09 14:16:13','2023-04-09 14:16:13','40ac7f4f-5a8b-44ec-85f8-94df32b13f30'),(34029,'freeform-purge-cache-key','2023-04-09 14:35:11','2023-04-09 14:35:11','a1b4e149-44fe-44bb-ab19-bd40283b299e'),(34030,'save-and-continue-cleanup','2023-04-09 15:17:10','2023-04-09 15:17:10','98204d2f-a614-47a0-ab0b-672939182a2e'),(34031,'freeform-purge-cache-key','2023-04-09 15:36:10','2023-04-09 15:36:10','7a1f9c17-2784-4105-95aa-d9478b52685a'),(34032,'save-and-continue-cleanup','2023-04-09 16:17:16','2023-04-09 16:17:16','c9038b29-2619-4637-a5b5-8bd369bb0d0e'),(34033,'freeform-purge-cache-key','2023-04-09 16:36:11','2023-04-09 16:36:11','fb7dae2a-f7a9-407d-b392-3b1c526c9e2a'),(34034,'freeform-digest-cache-key','2023-04-09 16:42:13','2023-04-09 16:42:13','01d79523-d243-426c-ad6e-65fcbb386d03'),(34035,'export-notifications','2023-04-09 16:42:13','2023-04-09 16:42:13','0b04c163-6a17-4e6d-888c-654e60ae9f6f'),(34036,'save-and-continue-cleanup','2023-04-09 17:18:12','2023-04-09 17:18:12','a6c04c57-184e-41c5-b7ef-e7b19cebe0a6'),(34037,'freeform-purge-cache-key','2023-04-09 17:37:11','2023-04-09 17:37:11','040bc8b2-3746-4901-875d-fb7ec8a54948'),(34038,'save-and-continue-cleanup','2023-04-09 18:18:12','2023-04-09 18:18:12','1c59f0a5-a2ab-4635-93fa-40bbde25c502'),(34039,'freeform-purge-cache-key','2023-04-09 18:37:11','2023-04-09 18:37:11','be5b91af-7ac7-4470-9339-fa0b46471c1d'),(34040,'freeform-feed-cache-key','2023-04-09 18:57:11','2023-04-09 18:57:11','a084e0c5-44e5-475a-8541-c2f4bbf291eb'),(34041,'save-and-continue-cleanup','2023-04-09 19:18:13','2023-04-09 19:18:13','0e1e4ae3-f19a-476d-9288-dbc0be5dc533'),(34042,'freeform-purge-cache-key','2023-04-09 19:37:11','2023-04-09 19:37:11','d5f4b63c-9259-4219-b420-4cc0f8c75bc9'),(34043,'freeform-digest-cache-key','2023-04-09 19:43:11','2023-04-09 19:43:11','4f02a087-c5bb-4470-9b08-2b4afba7d9f3'),(34044,'export-notifications','2023-04-09 19:43:11','2023-04-09 19:43:11','cc4006e1-1b64-4ff0-b7db-f82e236bbf7d'),(34045,'save-and-continue-cleanup','2023-04-09 20:18:13','2023-04-09 20:18:13','8f1885d7-b680-43d9-b531-9721abe89d59'),(34046,'freeform-purge-cache-key','2023-04-09 20:37:11','2023-04-09 20:37:11','8af1539d-27f2-4e26-8a49-062c05cd9ca6'),(34047,'save-and-continue-cleanup','2023-04-09 21:18:25','2023-04-09 21:18:25','25f49906-6e65-4640-b229-d7d41ea5d0a6'),(34048,'freeform-purge-cache-key','2023-04-09 21:37:11','2023-04-09 21:37:11','557d6ba7-b46a-4ca7-b052-1b069f305c31'),(34049,'save-and-continue-cleanup','2023-04-09 22:18:32','2023-04-09 22:18:32','ab254551-acb1-4dae-a1d4-798348e7e8ce'),(34050,'freeform-purge-cache-key','2023-04-09 22:37:11','2023-04-09 22:37:11','ec3414dd-7cb9-4142-af69-2e081c619c9e'),(34051,'freeform-digest-cache-key','2023-04-09 22:43:11','2023-04-09 22:43:11','ab27f1a3-3ae8-40e4-8f17-12e83f2b3c09'),(34052,'export-notifications','2023-04-09 22:43:11','2023-04-09 22:43:11','063aece3-58f7-49c8-998b-c80ad701e76a'),(34053,'save-and-continue-cleanup','2023-04-09 23:19:12','2023-04-09 23:19:12','b7ef4ce7-4f9c-4092-8100-9386fc0387e2'),(34054,'freeform-purge-cache-key','2023-04-09 23:37:27','2023-04-09 23:37:27','bbfea26e-eac5-409e-aca2-647ee81548c4'),(34055,'freeform-feed-cache-key','2023-04-09 23:58:11','2023-04-09 23:58:11','6d776ce8-91ec-4c5a-8b09-206bd9a6b8a8'),(34056,'save-and-continue-cleanup','2023-04-10 00:20:13','2023-04-10 00:20:13','0c3eb20d-f030-430f-ac6b-59ec39427433'),(34057,'freeform-purge-cache-key','2023-04-10 00:37:36','2023-04-10 00:37:36','811396f3-b63d-4ccf-9a6f-41006188ea21'),(34058,'save-and-continue-cleanup','2023-04-10 01:21:10','2023-04-10 01:21:10','acde8d8a-6e35-405c-868b-b2a55d743b4b'),(34059,'freeform-purge-cache-key','2023-04-10 01:38:07','2023-04-10 01:38:07','a3254ee0-1f2d-4847-bdc1-eb896432c663'),(34060,'freeform-digest-cache-key','2023-04-10 01:43:11','2023-04-10 01:43:11','95ea58c4-61f4-4a9a-a00c-ae2883a97958'),(34061,'export-notifications','2023-04-10 01:43:11','2023-04-10 01:43:11','262a698e-e955-44fb-afb4-cd923240ef6c'),(34062,'save-and-continue-cleanup','2023-04-10 02:21:11','2023-04-10 02:21:11','244837ec-0434-42b1-862d-fb2baad479bd'),(34063,'freeform-purge-cache-key','2023-04-10 02:38:12','2023-04-10 02:38:12','21933fc5-f744-459c-959e-a17832f685df'),(34064,'save-and-continue-cleanup','2023-04-10 03:21:11','2023-04-10 03:21:11','e1efd7e1-8b73-48e3-90f1-c9e722a368ba'),(34065,'freeform-purge-cache-key','2023-04-10 03:38:12','2023-04-10 03:38:12','0e31666d-646e-4791-91c2-2f01c9060aee'),(34066,'save-and-continue-cleanup','2023-04-10 04:21:11','2023-04-10 04:21:11','1fea965e-ab04-4eb2-a036-b6e5ef88bcff'),(34067,'freeform-purge-cache-key','2023-04-10 04:39:11','2023-04-10 04:39:11','705a5653-8aeb-4b52-96b0-8400fb671d98'),(34068,'freeform-digest-cache-key','2023-04-10 04:44:11','2023-04-10 04:44:11','68ae82f4-59f7-4a6c-96b8-6bcf97276b58'),(34069,'export-notifications','2023-04-10 04:44:11','2023-04-10 04:44:11','d95b0eb2-41fc-46c6-8903-47ba5fa38962'),(34070,'freeform-feed-cache-key','2023-04-10 04:58:15','2023-04-10 04:58:15','9fe8e74f-4b89-4393-9cb6-a2d784f5d100'),(34071,'save-and-continue-cleanup','2023-04-10 05:22:11','2023-04-10 05:22:11','b6345805-1da9-4eee-ae00-dae57e63758f'),(34072,'freeform-purge-cache-key','2023-04-10 05:39:11','2023-04-10 05:39:11','e4c81836-110b-4f1d-988b-29951f417c65'),(34073,'save-and-continue-cleanup','2023-04-10 06:22:12','2023-04-10 06:22:12','5f1d36af-56fc-4e66-889a-32419437cadb'),(34074,'freeform-purge-cache-key','2023-04-10 06:39:11','2023-04-10 06:39:11','cbddbc6f-1bc4-43b4-a1f4-a44de5bd54ad'),(34075,'save-and-continue-cleanup','2023-04-10 07:23:10','2023-04-10 07:23:10','51fbf435-ab08-48b8-be9f-765d67f71e8a'),(34076,'freeform-purge-cache-key','2023-04-10 07:40:13','2023-04-10 07:40:13','d18d8b54-e30d-491d-9627-ae4a3a201842'),(34077,'freeform-digest-cache-key','2023-04-10 07:44:11','2023-04-10 07:44:11','89fd850a-68eb-46ae-a815-15040548232b'),(34078,'export-notifications','2023-04-10 07:44:11','2023-04-10 07:44:11','ca149992-9762-4b5b-accf-a45576f06064'),(34079,'save-and-continue-cleanup','2023-04-10 08:23:11','2023-04-10 08:23:11','c7bac6ad-312b-4ed8-976b-ec334a52da14'),(34080,'freeform-purge-cache-key','2023-04-10 08:41:12','2023-04-10 08:41:12','48aee468-551f-43be-ba6b-bd7fd8e75533'),(34081,'save-and-continue-cleanup','2023-04-10 09:23:13','2023-04-10 09:23:13','407ce9d7-9777-4df3-9a33-f2dcc884ada3'),(34082,'freeform-purge-cache-key','2023-04-10 09:41:44','2023-04-10 09:41:44','b0f2e79a-a0e7-458c-b24f-9b4fadf68191'),(34083,'freeform-feed-cache-key','2023-04-10 09:59:11','2023-04-10 09:59:11','dd023d9f-d84f-4190-aef5-757b70a728ca'),(34084,'save-and-continue-cleanup','2023-04-10 10:23:13','2023-04-10 10:23:13','4e24645e-b806-40e0-88b6-529b0f4b0fbe'),(34085,'freeform-purge-cache-key','2023-04-10 10:41:51','2023-04-10 10:41:51','cd693023-5408-40e0-9d23-ca4bfb75231d'),(34086,'freeform-digest-cache-key','2023-04-10 10:44:12','2023-04-10 10:44:12','3190ec32-969a-4065-a391-50f76f29e1f1'),(34087,'export-notifications','2023-04-10 10:44:12','2023-04-10 10:44:12','63852959-363f-4ac9-aaa6-65a9e8967b3a'),(34088,'save-and-continue-cleanup','2023-04-10 11:24:04','2023-04-10 11:24:04','720b9f74-2516-4fde-a7c9-01abb5afeb1c'),(34089,'freeform-purge-cache-key','2023-04-10 11:42:11','2023-04-10 11:42:11','7bdb6d5b-8150-461c-978e-1e5c1ecf7283'),(34090,'save-and-continue-cleanup','2023-04-10 12:24:11','2023-04-10 12:24:11','f65bd439-9ce3-447d-a0d9-5d28dde3d2ad'),(34091,'freeform-purge-cache-key','2023-04-10 12:42:11','2023-04-10 12:42:11','3a493df6-df1c-47cd-90c9-9a4eaf45aeb8'),(34092,'save-and-continue-cleanup','2023-04-10 13:24:11','2023-04-10 13:24:11','f9b9c3eb-89b0-49bd-9a91-ae5c32b2ea3f'),(34093,'freeform-purge-cache-key','2023-04-10 13:42:11','2023-04-10 13:42:11','071985b2-910f-4914-9355-8232d3fb062c'),(34094,'freeform-digest-cache-key','2023-04-10 13:45:10','2023-04-10 13:45:10','d58e2f2a-086e-4f86-8ac8-6c9f5187e444'),(34095,'export-notifications','2023-04-10 13:45:10','2023-04-10 13:45:10','cf41a976-bb9b-453b-afe8-46de4b8e6757'),(34096,'save-and-continue-cleanup','2023-04-10 14:24:41','2023-04-10 14:24:41','ec3ccd25-56c7-4ad0-990e-4c4e310b9177'),(34097,'freeform-purge-cache-key','2023-04-10 14:42:12','2023-04-10 14:42:12','3ce97731-0431-4057-bf89-a8eda85379cc'),(34098,'freeform-feed-cache-key','2023-04-10 15:00:10','2023-04-10 15:00:10','9f9cbf82-bc36-4432-8ea3-b926765b34aa'),(34099,'save-and-continue-cleanup','2023-04-10 15:25:11','2023-04-10 15:25:11','b7148b43-0556-4c78-abab-c72136d3a0b8'),(34100,'freeform-purge-cache-key','2023-04-10 15:43:03','2023-04-10 15:43:03','175a8065-5199-4360-9d5a-7ec376d69700'),(34101,'save-and-continue-cleanup','2023-04-10 16:25:12','2023-04-10 16:25:12','a04ae6b4-8e1c-4e39-bfbb-c99d4c07fbd4'),(34102,'freeform-purge-cache-key','2023-04-10 16:43:12','2023-04-10 16:43:12','c9ecc9bc-b8fb-40fd-b6ad-e1fb598b37ae'),(34103,'freeform-digest-cache-key','2023-04-10 16:45:11','2023-04-10 16:45:11','9e8ef8a8-a886-42b3-8e9f-4bf98d32f244'),(34104,'export-notifications','2023-04-10 16:45:11','2023-04-10 16:45:11','751c5d9c-f7c2-41e9-9518-245a34ac0d1d'),(34105,'save-and-continue-cleanup','2023-04-10 17:25:12','2023-04-10 17:25:12','7145b7ab-d39c-401f-8184-c72350cde39a'),(34106,'freeform-purge-cache-key','2023-04-10 17:44:11','2023-04-10 17:44:11','1330e6e5-cac1-464b-bc2f-9b80f365f682'),(34107,'save-and-continue-cleanup','2023-04-10 18:25:44','2023-04-10 18:25:44','98fb3da7-7086-4041-b404-66b58f351ef6'),(34108,'freeform-purge-cache-key','2023-04-10 18:44:11','2023-04-10 18:44:11','f35a0417-eb7d-4ddd-bd55-04187db7db44'),(34109,'save-and-continue-cleanup','2023-04-10 19:26:11','2023-04-10 19:26:11','a549d36b-639a-45f7-bcdd-4494d04dbce0'),(34110,'freeform-purge-cache-key','2023-04-10 19:44:12','2023-04-10 19:44:12','2f4af38b-c06f-4f66-945f-9c289b762b04'),(34111,'freeform-digest-cache-key','2023-04-10 19:45:13','2023-04-10 19:45:13','f71392eb-9bc9-4ea3-b423-3857420bea49'),(34112,'export-notifications','2023-04-10 19:45:13','2023-04-10 19:45:13','eaa15c84-d738-40a2-8128-e3009dce444c'),(34113,'freeform-feed-cache-key','2023-04-10 20:00:11','2023-04-10 20:00:11','180555c4-91ec-4a43-9d16-b87689ddf0a5'),(34114,'save-and-continue-cleanup','2023-04-10 20:27:11','2023-04-10 20:27:11','11dbbdc4-5483-4f94-905c-ae2183611101'),(34115,'freeform-purge-cache-key','2023-04-10 20:45:12','2023-04-10 20:45:12','d9600299-e1f6-4af4-90eb-463feb079266'),(34116,'save-and-continue-cleanup','2023-04-10 21:27:11','2023-04-10 21:27:11','44235faf-4601-4b1a-b4b3-c7d1f38cb465'),(34117,'freeform-purge-cache-key','2023-04-10 21:45:12','2023-04-10 21:45:12','294657ad-cd1f-4664-899f-46b447689d4a'),(34118,'save-and-continue-cleanup','2023-04-10 22:27:11','2023-04-10 22:27:11','8e0e8490-74bb-4731-adca-a0fbfd405a83'),(34119,'freeform-purge-cache-key','2023-04-10 22:45:12','2023-04-10 22:45:12','0b93b428-db12-495f-8a7a-08f2b2f10563'),(34120,'freeform-digest-cache-key','2023-04-10 22:46:11','2023-04-10 22:46:11','d6dabf85-998f-49b6-bd48-512e4b583cc2'),(34121,'export-notifications','2023-04-10 22:46:11','2023-04-10 22:46:11','cf32a7d1-fdec-449a-8630-85f2d9975b81'),(34122,'save-and-continue-cleanup','2023-04-10 23:27:11','2023-04-10 23:27:11','593ce309-f534-4718-a93f-68eb177738e0'),(34123,'freeform-purge-cache-key','2023-04-10 23:45:37','2023-04-10 23:45:37','4d1fce45-d3a2-4e3a-aa40-61d42cded948'),(34124,'save-and-continue-cleanup','2023-04-11 00:28:10','2023-04-11 00:28:10','2179ffc5-282a-43c3-9f17-d1f705fca7f9'),(34125,'freeform-purge-cache-key','2023-04-11 00:46:12','2023-04-11 00:46:12','ac934f21-98f1-4eea-ac2b-e6c27d016eb2'),(34126,'freeform-feed-cache-key','2023-04-11 01:00:12','2023-04-11 01:00:12','217e00f3-0375-4170-b3bb-33e9af6e1223'),(34127,'save-and-continue-cleanup','2023-04-11 01:28:11','2023-04-11 01:28:11','bf417afb-8c05-49c6-9e45-0055dbf06b14'),(34128,'freeform-digest-cache-key','2023-04-11 01:46:12','2023-04-11 01:46:12','56d4dde8-01a7-4dda-98cc-cd5497486e5b'),(34129,'export-notifications','2023-04-11 01:46:12','2023-04-11 01:46:12','ea535c5d-88a2-43cd-b195-bd4a4543ee56'),(34130,'freeform-purge-cache-key','2023-04-11 01:47:11','2023-04-11 01:47:11','128c3304-d469-4069-a6b1-cc26560325b6');
/*!40000 ALTER TABLE `freeform_lock` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `freeform_mailing_list_fields`
--

LOCK TABLES `freeform_mailing_list_fields` WRITE;
/*!40000 ALTER TABLE `freeform_mailing_list_fields` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `freeform_mailing_list_fields` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `freeform_mailing_lists`
--

LOCK TABLES `freeform_mailing_lists` WRITE;
/*!40000 ALTER TABLE `freeform_mailing_lists` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `freeform_mailing_lists` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `freeform_notification_log`
--

LOCK TABLES `freeform_notification_log` WRITE;
/*!40000 ALTER TABLE `freeform_notification_log` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `freeform_notification_log` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `freeform_notifications`
--

LOCK TABLES `freeform_notifications` WRITE;
/*!40000 ALTER TABLE `freeform_notifications` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `freeform_notifications` VALUES (1,'Contact us','contactUs','New submission on your {{ form.name }} form',NULL,'NWO Starter','digital@newwordorder.com.au',NULL,NULL,NULL,NULL,'<p>Submitted on: {{ dateCreated|date(\'l, F j, Y \\\\a\\\\t g:ia\') }}</p>\n<ul>\n{% for field in allFields %}\n    <li>{{ field.label }}: {{ field.valueAsString }}</li>\n{% endfor %}\n</ul>','Submitted on: {{ dateCreated|date(\'l, F j, Y \\\\a\\\\t g:ia\') }}\n\n{% for field in allFields %}\n - {{ field.label }}: {{ field.valueAsString }}\n{% endfor %}',1,1,NULL,NULL,'2021-11-09 01:04:41','2021-11-09 01:04:41','6ed5157b-4a0d-4020-a260-edc458a8967f');
/*!40000 ALTER TABLE `freeform_notifications` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `freeform_payment_gateway_fields`
--

LOCK TABLES `freeform_payment_gateway_fields` WRITE;
/*!40000 ALTER TABLE `freeform_payment_gateway_fields` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `freeform_payment_gateway_fields` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `freeform_payments_payments`
--

LOCK TABLES `freeform_payments_payments` WRITE;
/*!40000 ALTER TABLE `freeform_payments_payments` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `freeform_payments_payments` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `freeform_payments_subscription_plans`
--

LOCK TABLES `freeform_payments_subscription_plans` WRITE;
/*!40000 ALTER TABLE `freeform_payments_subscription_plans` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `freeform_payments_subscription_plans` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `freeform_payments_subscriptions`
--

LOCK TABLES `freeform_payments_subscriptions` WRITE;
/*!40000 ALTER TABLE `freeform_payments_subscriptions` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `freeform_payments_subscriptions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `freeform_saved_forms`
--

LOCK TABLES `freeform_saved_forms` WRITE;
/*!40000 ALTER TABLE `freeform_saved_forms` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `freeform_saved_forms` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `freeform_session_context`
--

LOCK TABLES `freeform_session_context` WRITE;
/*!40000 ALTER TABLE `freeform_session_context` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `freeform_session_context` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `freeform_spam_reason`
--

LOCK TABLES `freeform_spam_reason` WRITE;
/*!40000 ALTER TABLE `freeform_spam_reason` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `freeform_spam_reason` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `freeform_statuses`
--

LOCK TABLES `freeform_statuses` WRITE;
/*!40000 ALTER TABLE `freeform_statuses` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `freeform_statuses` VALUES (1,'Pending','pending','light',NULL,1,'2021-04-20 06:16:35','2021-04-20 06:16:35','381dcb54-cb8e-40c1-882f-5a9b00b41e4f'),(2,'Open','open','green',1,2,'2021-04-20 06:16:35','2021-04-20 06:16:35','e2ea4180-ea1d-47fb-824a-d7495d8089fc'),(3,'Closed','closed','grey',NULL,3,'2021-04-20 06:16:35','2021-04-20 06:16:35','f11e8ec0-205a-414a-bf87-eaca18168cc2');
/*!40000 ALTER TABLE `freeform_statuses` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `freeform_submission_notes`
--

LOCK TABLES `freeform_submission_notes` WRITE;
/*!40000 ALTER TABLE `freeform_submission_notes` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `freeform_submission_notes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `freeform_submissions`
--

LOCK TABLES `freeform_submissions` WRITE;
/*!40000 ALTER TABLE `freeform_submissions` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `freeform_submissions` VALUES (14833,4,2,1,'TDHMfslNorPumhxPa99JhpH9SODuB25J4i2F4vO8v8sEWi9TQgDUFt4Kqlc5FZFSuNEfWiGMky4cgyGpaca2Nq7xWao2xf0ee38t','192.168.10.1',0,'2021-04-22 23:29:35','2021-04-22 23:29:35','7f2cf348-a9de-4900-8f5b-ba7db3bb75e5',NULL),(58764,5,2,2,'CPrIoI3DdSEr281k0TW3Fd9GYBX5YAZBjzySqTC6rk41RxcTfn2OVzY3sYVRZi8eCmzK5vIgeMyfGhVq2oxUOgY1pcgPYCPzBVIB','1.146.5.7',0,'2021-10-11 00:12:29','2022-05-17 23:18:52','e383bbee-42fe-4548-b25f-9ac236072938',NULL),(74033,6,2,2,'AkTCYogRoMgKUBBxjHINocEcJl3uC0ApMtJxyx3BikIL4pmeXW7W69eXB7HVMeRDkQl2GTFWVCAhDgNGIQm1E6Q9FJxDrqx5Amq0','198.23.173.250',0,'2021-11-08 23:27:12','2022-05-17 23:18:52','f5e6dcb1-f0fc-4923-a9d2-928f9ffbf89c',NULL),(74061,7,2,2,'Tz2salhszMxqvv3o7SQI6SBxJXG61IH2nqZsrHYRwF6T9p5lclnGRHIl8UCSWcFUbyxLfSEiavAroMtouL4xccjHMBeMcit5Fmm7','120.88.115.2',0,'2021-11-09 01:00:28','2022-05-17 23:18:52','e2694988-809e-4ded-aaf6-cf89e90b3a5a',NULL),(74084,8,2,2,'yK3tGEZNVUu5C5iuaLwZNTkaT5WKHUOfPo5zxF0y23jtxGZoi1AIP9EY2OzFpyXybutYBZQnGlPKshCxKRz4eDuNNqxO4XaSD2bX','114.104.129.8',0,'2021-11-09 01:27:07','2022-05-17 23:18:52','6e32dbbe-041e-4830-987d-a913323639cc',NULL),(74150,9,2,2,'SsVGO5FnqffIbyLsiko8U1k9VIx8sujzsobQ7Nna7ozs6l2YtHMvbG8Ak5eApUGv4YGMIrqs7X8YIqcQRd0yh0ryGq3vSWUysfHe','120.88.115.2',0,'2021-11-09 03:57:36','2022-05-17 23:18:52','56c2ec55-b69a-4c9c-bef2-4344d5b880a5',NULL),(74157,10,2,2,'8yPdAVln84QtrqGwbzT1Jj9cqj9qVtjN8lkDRbf3w16uLbBLnMz4qEYMOkSpXGJ4LEOTbVGOBjXtb01EltGRquEOjhq9tRVXgISR','117.28.219.124',0,'2021-11-09 11:55:32','2022-05-17 23:18:52','5a3ff347-e570-47ca-b772-f4b82a6cc509',NULL),(74158,11,2,2,'9dloER9oNp0CvxDk5aCjV8eNATduBkjoMxeMJ2asqxh018hBhQ5g10Q6HEmQqMQTnlUP3mzWxJG71IoPWXXxn0cguOz9BBk9OSOr','117.93.32.208',0,'2021-11-09 12:03:12','2022-05-17 23:18:52','d5c3738c-a03a-497d-a7f3-ecca754b1d9d',NULL),(74159,12,2,2,'99H6XXoYb4Qy5iegnnKwlu9U6elorMImHEQ0b4Ws0ST2vMtvBug85diFabjmQcsIItoWSKMoYrT6dkBll5Nh2QlzQx72qIEpqpKv','188.130.210.16',0,'2021-11-09 18:04:07','2022-05-17 23:18:52','680388fe-b12c-4d59-9ffa-73a6fb6e4440',NULL),(74160,13,2,2,'S3kaqNGUfqwswT6kXXAQE1LuIvinx6wn0jFzAe3QBGPNDTL6Hqu3ahSXEa6lu2lNqxmSKK5QNRFqjU6gmoqHamle9EG73cfbCXed','45.136.231.164',0,'2021-11-09 18:45:31','2022-05-17 23:18:52','3b631e3a-dcf8-4a81-b8e1-33e5f4cc99ff',NULL),(74161,14,2,2,'9VJVemZLWefk7xTPpDHKip5AFEIIxIGTZcPSRkQaxa7xHexqffX48GY3YCBGcjYA2Nbs0DMuU8PMw6FdGYFfnpHWQ0a9Dc4j6bGI','117.69.130.130',0,'2021-11-09 19:28:44','2022-05-17 23:18:52','39117c75-099c-4eae-a5fd-f832063c9ce9',NULL),(84926,15,2,2,'Rgrd4LYUF3nvccMroQOPyz6CzmX3rtbS9UnOp6ESKbSp7OV6Yhv7b3CYR2qjFu5L51SQQOVzM63hgDmkk58nsa68ng9d8pYlgk6y','120.88.115.2',0,'2021-12-03 04:28:57','2022-05-17 23:18:52','dc853029-834a-44d7-b15e-22fcba0d9694',NULL),(87633,16,2,2,'f6nLCjdbU0cQkSd2CELc3hiFg5rPEYUmPMezn9hQJbV0lXGfzFWhm8wDTjWMhK3fWeoBC3m067WEiZ7MUDvmrVZHiJ9oo3Z8bpyg','105.112.25.252',0,'2021-12-12 21:21:50','2022-05-17 23:18:52','25ff3b95-ee62-484c-807b-c17c81a1c71b',NULL),(94204,17,2,2,'vhwduhBG7WpCf9gmnnAVcvrzurrre8XWRtNfmT1uEgY5IFjgonACT4mwkeJ6J6G8MLJiIKm8Q3S8ThiuhTDTmEVfvJBx0ceTzJnN','197.210.54.226',0,'2021-12-21 11:28:31','2022-05-17 23:18:52','5490c8ba-0ec1-43ce-a6ca-bd3204f413c0',NULL),(97271,18,2,2,'hv0Yn4dUsf3r1adAZABSM1WdOoFAQzj15ZJVedqbWdb7zy7KoXBWkG6rJCK8xZvjz2pK4T4kFPOUZoxeOQ4A83uyDs6ToTIHwvuL','152.166.152.202',0,'2022-01-24 13:36:49','2022-05-17 23:18:52','38c6659f-f62b-48ad-80f7-70359b049af5',NULL),(103511,19,2,2,'tvUig3pfHL6HjXjS1J5o1pluEWd24qtfS0sV9jN77Hw8cKVlxVxZTvASTQYHPGxs6XT4sx1ch5E1VBcIXjn8VIaZMQFH6zZepVjF','119.160.56.123',0,'2022-02-09 05:30:08','2022-05-17 23:18:52','5dfcb139-97a0-464d-b27e-2a073e083fad',NULL),(106871,20,2,2,'8IcLmnFfvk9plfKNY8J0AkpMICG1WGGgsfYS5t2YqGSvfNkNyLxr34ldo2ZQuWo2uK632OCAhjGEwMviyBc6sJOAotiZQf32VtBt','49.184.185.170',0,'2022-02-11 02:00:18','2022-05-17 23:18:52','415c1b68-5107-4da3-9745-ad087bdd99c1',NULL),(106872,21,2,2,'KCYKHaGhOohoz0DvwHuhJP5pXxDmNkQcS9EoXFgyeW1vz8SwRayqvzwcspsQYocmFwdNTDSZ3EfBgtlCvAv8kDXzalSE4Yj7fNpi','131.242.135.248',0,'2022-02-11 02:33:40','2022-05-17 23:18:52','0865d85a-6f08-4dbf-bbda-61e1215122cb',NULL),(123478,22,2,2,'VQhIrCb5mS3WjqRuSkzeoV3qoUCIgZRNVHd5SuLbkJJTLJVI4gtzwhy5YOtCs218KxLx1OoWoZANDkdIGoe8Ay9dbkT2cisGMgE9','120.88.115.2',0,'2022-02-23 03:58:43','2022-05-17 23:18:52','14a2006e-95f1-4a96-8cef-0bf7ef485393',NULL),(143102,23,2,3,'YWrgJO2fUziPKfCp9LAPL9Q7IrKcq9PdFmAgh7O9ndugXys7CuuH3pZRq8l75tn2w79oNOolzUg1YiVoLUrvysbtUGBJU8XRy4vP','197.211.52.66',0,'2023-03-09 00:16:52','2023-03-09 00:16:52','5a9e6040-30d1-4104-a219-94ea4909516d',NULL),(143119,24,2,3,'qb8I9JbDqxcRJGpzRCpU8o1Il2NPCjBJRuWVith1RBKmRvVw5gT4U5uHMGkXlC1HMtceStf1TQneGYf2WgFSW6XGdeGP9LxkSk0A','105.113.17.147',0,'2023-03-09 09:15:21','2023-03-09 09:15:21','74efe5c7-be6c-452e-9ebd-515e0671b408',NULL),(143120,25,2,3,'eyTjfaB8zjrSoks7X3G33dO8iw3kImSBWm4sSc2Pfg0Ylb375cjOlxwBGbgk9HmPRkvT8IfPrKlVFWYqQL7MzLbxOhPOcMVxDh3P','65.49.68.194',0,'2023-03-09 11:16:11','2023-03-09 11:16:11','50757055-1adf-4cc1-86aa-b9783850e742',NULL),(143121,26,2,3,'6jurOJD5o7TkGDFs1BPiamtywsnVXBLqfQeMrVvSMj47REXnJj5duypqGhO5f9X9ZxTNyvNTqFi2mFlKbt5IjXWpEydlbax5yNJv','65.49.68.194',0,'2023-03-09 11:17:50','2023-03-09 11:17:50','03ed5fb8-8527-4979-9291-1498f6a11764',NULL),(143122,27,2,3,'s1igJADBUbVamyqkgxms0Djn83LXorI3RsiRkzFgeRkNfbs65M1zesGPyyhMT8wheVOH0V13zOqjhk2Hg8NJPQAPn38FWR4oiyL8','65.49.68.194',0,'2023-03-09 11:19:49','2023-03-09 11:19:49','75f8508b-92ca-4477-8c83-a073b9a109f8',NULL),(143123,28,2,3,'9Y72ZzdaMVWvCOZ8xxz57qyACuNBDeq9aCRz92OmluJtK91rTyL81fDhQxnleOqYN8ZyXqkr2nRXJIxBgq15RfD2nP6GzrhaEGFR','65.49.68.194',0,'2023-03-09 11:21:30','2023-03-09 11:21:30','26c9db54-7ac9-4067-8035-9e618b485560',NULL),(143131,29,2,3,'yk1rTz8xc8oVptXNS9cWaG7hovFvnheuu8whi2dOJnSOVchXQCZpDrifaFuJc21R5GoKIfAGrcLBIFcOZAReZ0L0zrPtCNZjlajv','101.183.144.241',0,'2023-03-15 06:13:00','2023-03-15 06:13:00','4d191b17-efc2-40c0-ae63-7acf1effde8a',NULL);
/*!40000 ALTER TABLE `freeform_submissions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `freeform_submissions_brand_audit_1`
--

LOCK TABLES `freeform_submissions_brand_audit_1` WRITE;
/*!40000 ALTER TABLE `freeform_submissions_brand_audit_1` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `freeform_submissions_brand_audit_1` VALUES (14833,'12940','There is a requirement in Australia for a business like us to exist. To stock, supply and service the (hell out of) many companies that need our product(s) in Australia. If we didn’t exist, someone else will do it or our customers will have to take on that responsibility which is not normally in their scope.   ','James McIlwraith','Anyone that wants to buy mild carbon steel pipe. From a one off cash sale person looking to make a smoker/BBQ to a multimillion dollar run Building Contractor. 90% of our business are return customers. ','A family owned and run business, 3rd generation. Who are here to exist for a long time not a short time. Our relationships with our customers are key and we plan to grow with them not sting them. Our easy to deal with approach helps give our edge against our competitors. Along with quick responses and quick managerial decisions. \r\nInternally, we are strong believers in a solid work life balance. Our environment is one of family. Hence the high number of long term staff members. \r\n','We try to keep it warm, fun, family orientated professional, and goal driven. It stems from the senior management down to everyone. Me personally, I like to help my staff with career and personal (if asked) development/progression. ','On our site. Face to face in our yard or office. ','Face to face, phone, email. We try and entertain our big clients on a regular basis. ','Surepipe NSW. A leader in steel pipe storing and distribution. ','The best service and knowledge in providing any steel pipe requirement. ','NSW started in a small yard in Wollongong and has now become a leader in supplying Steel pipes into the NSW market. With added value in processing to the pipes if required. ','To continue growing the business in all markets and to be the only brand all our customers think of when they require steel pipe. ','','','Civil Piling. Marine Piling. Tunnel Boring. Screw piling. Structural applications - Fabrications. Pipelines. Drilling.  ','Steelpipes. Van Leeuwen. Atlas. Gordon Adams. Surplus dealers. Steel Traders/Project teams. Bendworx. ABFI','We admire none really. You can say we like the larger family run businesses like Southern steel Group (Steelpipes) because they were once small as well. ','Reliable supply. Easy to deal with. Straight forward answers. No ones perfect, so when there is a problem they want a supplier to face it not run away from it. Quick responses. A supplier that knows the product/technical data. ','At the for-front of people’s minds when they have a steel pipe requirement/thought/understanding/question. ','Brochures, writing tools, writing pads, drinking travel mug. Hats. T-shirts. Stubby coolers. Website. ','Pens. Calculators. Rulers. USB. Standard mugs. Stickers. Manufacturing Specifications summary sheets/quick referencing. ','Not too sure. We do not sell into retail, so TV or radio ads are not too affective. Most of our customers are repeat business. i.e. once a year to once a week. Our competitors can sell the exact same product (we buy from the same manufacturers). \r\n\r\nMaybe a campaign into the designers/engineers and decision makers on who uses or products. Which is hard because that is very broad.','Straight Answers. Quick responses. Knowledge on what you are talking about. Friendliness. Partnering on projects. ','More exposure to other jobs and people looking for Steel pipes. When people think of steel pipe they think of Surepipe NSW and their staff first before anyone else. ','A marketing strategy that everyone in the organization understands and can follow so we achieve the same goal. More business! Maybe sales and customer service training for front line staff that haven’t been with the company too long.');
/*!40000 ALTER TABLE `freeform_submissions_brand_audit_1` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `freeform_submissions_cald_3`
--

LOCK TABLES `freeform_submissions_cald_3` WRITE;
/*!40000 ALTER TABLE `freeform_submissions_cald_3` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `freeform_submissions_cald_3` VALUES (143102,'zackj9808@gmail.com','Jack','Zack','10/04/1956','2059091444','USA'),(143119,'mackphilips42@gmail.com','Mack','Philips','18/02/1996','+1446789900','Usa'),(143120,'berrycox3@gmail.com','Berry','Cox','06/03/1996','416-548-4111','United kingdom '),(143121,'benzjason99@gmail.com','Jason ','Benz','15/05/1997','+1 410-770-5095','USA'),(143122,'traciebush6@gmail.com','Tracie ','Bush','22/06/2023','+44 7466 586436','United States of America '),(143123,'traciebush6@gmail.com','Tracie ','Bush','15/10/1997','410-370-5097','USA'),(143131,'dangelvenise@yahoo.com','Venise Audrey','Dangel','20/01/2002','0497068981','Philippines');
/*!40000 ALTER TABLE `freeform_submissions_cald_3` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `freeform_submissions_contact_us_2`
--

LOCK TABLES `freeform_submissions_contact_us_2` WRITE;
/*!40000 ALTER TABLE `freeform_submissions_contact_us_2` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `freeform_submissions_contact_us_2` VALUES (58764,'Bruce ','Connell','bruce@newwordorder.com.au','0404972319','Testing iOS form. \r\n\r\nMulti line. '),(74033,'Mario','Ferguson','webmasterdesigners4u@gmail.com','(709) 707-2898','Hello there,\r\n\r\nI am a social media marketer that helps companies to generate more sales using facebook and other social media platforms.  I have been at this for a long time, so I know the tricks of the trade and can generally help any company to increase sales.  I provide great service, but my prices are still affordable.  \r\n\r\nI\'m reaching out because I want to see if you\'re interested in boosting your sales via marketing on facebook and other platforms.  Please let me know if you\'re interested and I can give you some information about what I do, how I do it, and what it costs.  \r\n\r\nI would love the opportunity to work with you, so please let me know if you\'re interested.  \r\n  \n\n- Mario Ferguson'),(74061,'Bryan','SWOL','completeswolness@gmail.com','80087355','testing TESTing are you testing for peptides? if so, don\'t call me'),(74084,'Backlitdnm','Backlitdnm','reedslaker@gmail.com','89031234567','ancient and medieval Latin,'),(74150,'Ryan','Murray','ryanmurrayemail@gmail.com','0422483994','Test'),(74157,'Mojavekoh','Mojavekoh','vtetreau@hotmail.com','89031234567','number of surviving European'),(74158,'Terra','Michealson','terra@myloginsecurity.com','06-84753307','Invite You to Test Hosting Service\r\n\r\nHi,\r\n \r\nI\'m Terra from the American Hosting Association.\r\n\r\nI’m reaching out to you because we are looking for bloggers/site owners like you to test the Bluehost hosting service.  \r\n\r\nBluehost is an excellent hosting service recommended by WordPress.org\r\n\r\nFr.ee WordPress Migration|30-Day Hosting Money-back Guarantee\r\n\r\nYou can visit https://www.myloginsecurity.com/hosting/ if you are interested.\r\n\r\nThank you for your time,\r\n\r\nTerra Michealson\r\n\r\n^^^^^^^^\r\nUnsubscribe: https://www.myloginsecurity.com/unsubscribe\r\n'),(74159,'One1winSpind','One1winSpindDG','salmrjrobysg1u9xf2roy@gmail.com','83951553876','A tolerable sports play provides long-distance gains, not second gains. There are tons of tips on the internet on how to bet on sports. It is unoppressive to wake up b stand up c mount jumbled in them. Our top of the most beneficent sports betting resolution cure you sort absent from the offers of the bookmakers. \r\n \r\nThis article is politesse of <a href=https://1win-one.in>1win bet apk</a> Betting Academy. On sports betting, take tests, earn familiarity and form the leaderboard. Outrun the editor-in-chief! \r\n \r\nHow to shape a good hazard \r\nBefore compiling a list of outdo sports bets, we thinks fitting describe the plain criteria recompense high-quality betting. \r\n \r\nPecuniary discipline \r\n \r\nMaking a material chance means not losing money. The area of the risk must not outrun the allowable losses. It is tucker if the first wager is made in a proof, practical mode. \r\n \r\nThere are bookmakers who turn a loosen punt as a bonus. Choose a fiscal management game if you proceed to stake on an persistent basis. \r\n \r\nApprehension of the show off \r\n \r\nYou ought to cause a profoundly facts of the rules, the specifics of tournaments, the characteristics of teams, athletes. Most players elect the most popular sports appropriate for betting: football, basketball, hockey, tennis. \r\n \r\nPre-match dissection and crucial approximate \r\n \r\nJudge from the many sports betting strategies that are favourable for the sake you. At the verbatim at the same time without delay, there is no be in want of to impetuously heed abstract schemes that are effective just on paper. Supplement them with your erudition, abduct into account your own pre-match analysis an eye to each event. \r\n \r\nAllowable odds \r\n \r\nThis is a biased factor. There are players looking for value - odds overrated by the bookmaker. Others pick averages of 1.80-2.10. \r\n \r\nThe main muff that a beginner should circumvent is betting on coarse quotes around 1.10-1.30. \r\n \r\nRemember the opener idea of haughtiness betting: it is elevate surpass to shake off a strictly adjusted venture than to win a casual one. \r\n \r\nWhere to risk on sports \r\nUnvaried when playing with a plus at a gap, this does not backing that you at one\'s desire make your money. It is leading not to transfer your money to scammers. Total the bookmaker companies that furnish betting on matches, you have occasion for to choose a honourable office. Indistinct on the following criteria: \r\n \r\nthe task works legally on the sector of Russia - this guarantees the payment of your funds; \r\nThe <a href=https://1win-one.in>onewin</a> true website offers high-quality functionality - a large shopping list, wanton Charged, video broadcasts, a at the ready versatile application, and so on; \r\nmiddle-of-the-road bookmaker brink providing weighty odds. Your results at a distance depend on it; \r\nreviews of material customers and rating of bookmakers.'),(74160,'Jesus','Harwood','do-not-reply@gmail.com','079 0542 9194','Hi, We are providing very cost effective and results driven Google ranking services.\r\n\r\n We can assist you in getting on the first page of Google in 3 to 5 months and our SEO campaign starts at $150.\r\n\r\n If you\'re looking to avail this kind of service, or to outsource the work of your clients, please send a quick email to us.\r\n\r\nReply \" Interrested \" to below address\r\nmiyuru@swissedv.lk\r\n\r\n'),(74161,'Focusmue','Focusmue','mwhite@mchsi.com','89031234567','term manuscript (late lat.manuscriptum,'),(84926,'Ryan','Murray','ryan@newwordorder.com.au','0422483994','Just testing out the HS code integration.'),(87633,'Gerson','Monday','gersonmonday5@gmail.com','08156797950','Please change my life :pray::pray:\r\nThank you.'),(94204,'Kelechi','Okafor','kelechikalu326@gmail.com','08069415051','I just want to know the process to over come poverty,  I mean what to do?'),(97271,'Joseph','Hernández','josephmiguel000@gmail.com','8299191329','Me encanta el proyecto '),(103511,'Adeel','Farooq','getcrmconsultants@gmail.com','+1 (408) 909-4295','Hello there ,\r\n\r\nHope you are doing well. I just wanted to write a quick note to you and explore if there is an opportunity to collaborate. We are based in Pakistan & would love to collaborate in any project you might need some support, we also offer white labeling service.\r\n\r\nWe specialize in these services:\r\n\r\n:white_check_mark:    Automation Integration.\r\n:white_check_mark:   CRM Management/consultation (Infusionsoft/Keap, Hubspot, Kartra, Zoho, Activecampaign, GHL), etc.\r\n:white_check_mark:   CRM Migration (Infusionsoft/Keap, Hubspot, Kartra, Zoho, Activecampaign, GHL), etc.\r\n:white_check_mark:   Webinars (Webinar Jam, EverWebinar/EverGreen Webinar, GotoWebinar) etc\r\n:white_check_mark:   Wordpress Website Development\r\n:white_check_mark:    Landing Page Builder (Clickfunnels, Lead Pages) etc\r\n:white_check_mark:    Facebook Marketing\r\n:white_check_mark:  Admin Support (Excel related tasks, PDF To Excel or PDF To Word) etc\r\n:white_check_mark:   Website Data Scraping\r\n\r\nLet me know if you come across any project where we can work together. Looking forward to doing business with you. Thank You!\r\n\r\nRegards,\r\nAdeel  Farooq\r\nCRM & Automation Integrations Consultant\r\nPhone & Whats app: +1(408) 909-4295\r\nGet CRM Consultant\r\nhttps://www.getcrmconsultant.com\r\n'),(106871,'Sam ','Pearce','sampearce.mua@gmail.com','0403331305','Hey guys!\r\n\r\nJust want to touch base and say Hello! My name is Sam and I am a freelance Makeup Artist /Producer in QLD. Would love to work with you guys at New Word Order and jump on board if you ever need!\r\n\r\nwww.sampearce.com.au – my work (My CV in About Me section) \r\n\r\nAlso, if you ever need any Art Department across the board for campaigns or productions I co-run The One Stop Art Shop - www.theonestopartshop.com.au. Would love to help with crewing for any upcoming jobs. \r\n\r\nHave a great afternoon! \r\nThanks!'),(106872,'Colette','Landolt','colette.landolt@justice.qld.gov.au','0409 448 657','Hi\r\nI\'m contacting you from the QLD Office of Liquor and Gaming Regulation (part of the Dept of Justice). We have a strategy document that we would like designed and we were hoping we could meet up with you and have a chat about it.  Any chance you\'d be available on Thursday next week? Give me a call and we\'ll see what we can tee up. Thanks '),(123478,'Ryan','Murray','ryanmurrayemail@gmail.com','0422483994','test');
/*!40000 ALTER TABLE `freeform_submissions_contact_us_2` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `freeform_unfinalized_files`
--

LOCK TABLES `freeform_unfinalized_files` WRITE;
/*!40000 ALTER TABLE `freeform_unfinalized_files` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `freeform_unfinalized_files` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `freeform_webhooks`
--

LOCK TABLES `freeform_webhooks` WRITE;
/*!40000 ALTER TABLE `freeform_webhooks` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `freeform_webhooks` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `freeform_webhooks_form_relations`
--

LOCK TABLES `freeform_webhooks_form_relations` WRITE;
/*!40000 ALTER TABLE `freeform_webhooks_form_relations` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `freeform_webhooks_form_relations` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `globalsets`
--

LOCK TABLES `globalsets` WRITE;
/*!40000 ALTER TABLE `globalsets` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `globalsets` VALUES (17990,'Work page','workPage',18,3,'2021-06-02 04:09:43','2021-07-16 00:37:08','67a8fc88-4afd-4f2a-a30e-29cf12e725c4'),(21296,'People Navigation','peopleNavigation',33,2,'2021-06-21 06:00:18','2021-07-16 00:37:08','5511d39d-a282-4557-8bf2-6a3c6f93bd15'),(74051,'SEO Global','seoGlobal',54,4,'2021-11-09 00:39:43','2021-11-09 00:39:43','afd1eab8-39ff-4942-9c34-eb8f18d0d991'),(97388,'Dashboard Globals','dashboardGlobals',63,5,'2022-02-09 00:56:43','2022-02-09 00:56:43','aca77878-4bdc-4c0b-90a5-a7bdc826888c');
/*!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;
INSERT INTO `gqlschemas` VALUES (1,'Public Schema','[]',1,'2021-07-12 06:47:03','2021-07-12 06:47:03','fc33a64a-8bcf-4c5c-889a-426c4fa84f92');
/*!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;
INSERT INTO `gqltokens` VALUES (1,'Public Token','__PUBLIC__',1,NULL,NULL,1,'2021-07-12 06:47:04','2021-07-12 06:47:04','85ad3d55-5b2c-484c-b908-03d96f752ae6');
/*!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.6.1','4.4.0.4',1,'vztbvffotmlf','3@ouvoqaymax','2021-03-30 06:11:45','2023-04-11 02:08:08','325c5c4e-c5a8-4b66-9028-fc926b05018a');
/*!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;
INSERT INTO `matrixblocks` VALUES (16574,16573,59,3,NULL,'2021-05-14 06:43:31','2021-05-14 06:43:31'),(16579,16578,59,3,NULL,'2021-05-17 05:37:57','2021-05-17 05:37:57'),(16581,16580,59,3,NULL,'2021-05-17 05:38:01','2021-05-17 05:38:01'),(16590,16589,59,3,NULL,'2021-05-17 05:40:22','2021-05-17 05:40:22'),(16591,16589,59,3,NULL,'2021-05-17 05:40:22','2021-05-17 05:40:22'),(16593,16592,59,3,NULL,'2021-05-17 05:40:26','2021-05-17 05:40:26'),(16594,16592,59,3,NULL,'2021-05-17 05:40:26','2021-05-17 05:40:26'),(16596,16595,59,3,NULL,'2021-05-17 05:41:16','2021-05-17 05:41:16'),(16597,16595,59,3,NULL,'2021-05-17 05:41:16','2021-05-17 05:41:16'),(16605,16604,59,3,NULL,'2021-05-17 05:42:46','2021-05-17 05:42:46'),(16606,16604,59,3,NULL,'2021-05-17 05:42:46','2021-05-17 05:42:46'),(16608,16607,59,3,NULL,'2021-05-17 05:42:51','2021-05-17 05:42:51'),(16609,16607,59,3,NULL,'2021-05-17 05:42:51','2021-05-17 05:42:51'),(16621,16620,59,3,NULL,'2021-05-17 05:47:14','2021-05-17 05:47:14'),(16622,16620,59,3,NULL,'2021-05-17 05:47:14','2021-05-17 05:47:14'),(16623,16620,59,2,NULL,'2021-05-17 05:47:14','2021-05-17 05:47:14'),(16639,16638,59,3,NULL,'2021-05-17 06:03:02','2021-05-17 06:03:02'),(16640,16638,59,3,NULL,'2021-05-17 06:03:02','2021-05-17 06:03:02'),(16641,16638,59,2,NULL,'2021-05-17 06:03:02','2021-05-17 06:03:02'),(16655,16654,59,3,NULL,'2021-05-17 06:05:33','2021-05-17 06:05:33'),(16656,16654,59,3,NULL,'2021-05-17 06:05:33','2021-05-17 06:05:33'),(16657,16654,59,2,NULL,'2021-05-17 06:05:33','2021-05-17 06:05:33'),(16658,16654,59,3,NULL,'2021-05-17 06:05:33','2021-05-17 06:05:33'),(16744,16571,59,3,NULL,'2021-05-17 06:17:10','2021-05-17 06:17:10'),(16745,16571,59,3,NULL,'2021-05-17 06:17:10','2021-05-17 06:17:10'),(16746,16571,59,2,NULL,'2021-05-17 06:17:10','2021-05-17 06:17:10'),(16747,16571,59,3,NULL,'2021-05-17 06:17:10','2021-05-17 06:17:10'),(16748,16571,59,3,NULL,'2021-05-17 06:17:10','2021-05-17 06:17:10'),(16749,16571,59,3,NULL,'2021-05-17 06:17:10','2021-05-17 06:17:10'),(16750,16571,59,3,NULL,'2021-05-17 06:17:10','2021-05-17 06:17:10'),(16751,16571,59,3,NULL,'2021-05-17 06:17:11','2021-05-17 06:17:11'),(16752,16571,59,3,NULL,'2021-05-17 06:17:11','2021-05-17 06:17:11'),(16753,16571,59,3,NULL,'2021-05-17 06:17:11','2021-05-17 06:17:11'),(16754,16571,59,3,NULL,'2021-05-17 06:17:11','2021-05-17 06:17:11'),(16755,16571,59,3,NULL,'2021-05-17 06:17:11','2021-05-17 06:17:11'),(16757,16756,59,3,NULL,'2021-05-17 06:17:11','2021-05-17 06:17:11'),(16758,16756,59,3,NULL,'2021-05-17 06:17:11','2021-05-17 06:17:11'),(16759,16756,59,2,NULL,'2021-05-17 06:17:11','2021-05-17 06:17:11'),(16760,16756,59,3,NULL,'2021-05-17 06:17:11','2021-05-17 06:17:11'),(16761,16756,59,3,NULL,'2021-05-17 06:17:11','2021-05-17 06:17:11'),(16762,16756,59,3,NULL,'2021-05-17 06:17:11','2021-05-17 06:17:11'),(16763,16756,59,3,NULL,'2021-05-17 06:17:11','2021-05-17 06:17:11'),(16764,16756,59,3,NULL,'2021-05-17 06:17:11','2021-05-17 06:17:11'),(16765,16756,59,3,NULL,'2021-05-17 06:17:12','2021-05-17 06:17:12'),(16766,16756,59,3,NULL,'2021-05-17 06:17:12','2021-05-17 06:17:12'),(16767,16756,59,3,NULL,'2021-05-17 06:17:12','2021-05-17 06:17:12'),(16768,16756,59,3,NULL,'2021-05-17 06:17:12','2021-05-17 06:17:12'),(16770,16769,59,3,NULL,'2021-05-17 06:49:14','2021-05-17 06:49:14'),(16771,16769,59,3,NULL,'2021-05-17 06:49:14','2021-05-17 06:49:14'),(16772,16769,59,2,NULL,'2021-05-17 06:49:14','2021-05-17 06:49:14'),(16773,16769,59,3,NULL,'2021-05-17 06:49:14','2021-05-17 06:49:14'),(16774,16769,59,3,NULL,'2021-05-17 06:49:14','2021-05-17 06:49:14'),(16775,16769,59,3,NULL,'2021-05-17 06:49:14','2021-05-17 06:49:14'),(16776,16769,59,3,NULL,'2021-05-17 06:49:14','2021-05-17 06:49:14'),(16777,16769,59,3,NULL,'2021-05-17 06:49:14','2021-05-17 06:49:14'),(16778,16769,59,3,NULL,'2021-05-17 06:49:14','2021-05-17 06:49:14'),(16779,16769,59,3,NULL,'2021-05-17 06:49:14','2021-05-17 06:49:14'),(16780,16769,59,3,NULL,'2021-05-17 06:49:14','2021-05-17 06:49:14'),(16781,16769,59,3,NULL,'2021-05-17 06:49:14','2021-05-17 06:49:14'),(16783,16782,59,3,NULL,'2021-05-17 06:58:03','2021-05-17 06:58:03'),(16784,16782,59,3,NULL,'2021-05-17 06:58:03','2021-05-17 06:58:03'),(16785,16782,59,2,NULL,'2021-05-17 06:58:03','2021-05-17 06:58:03'),(16786,16782,59,3,NULL,'2021-05-17 06:58:03','2021-05-17 06:58:03'),(16787,16782,59,3,NULL,'2021-05-17 06:58:03','2021-05-17 06:58:03'),(16788,16782,59,3,NULL,'2021-05-17 06:58:03','2021-05-17 06:58:03'),(16789,16782,59,3,NULL,'2021-05-17 06:58:03','2021-05-17 06:58:03'),(16790,16782,59,3,NULL,'2021-05-17 06:58:03','2021-05-17 06:58:03'),(16791,16782,59,3,NULL,'2021-05-17 06:58:03','2021-05-17 06:58:03'),(16792,16782,59,3,NULL,'2021-05-17 06:58:03','2021-05-17 06:58:03'),(16793,16782,59,3,NULL,'2021-05-17 06:58:03','2021-05-17 06:58:03'),(16794,16782,59,3,NULL,'2021-05-17 06:58:03','2021-05-17 06:58:03'),(16797,16796,59,3,NULL,'2021-05-17 07:01:02','2021-05-17 07:01:02'),(16798,16796,59,3,NULL,'2021-05-17 07:01:02','2021-05-17 07:01:02'),(16799,16796,59,2,NULL,'2021-05-17 07:01:02','2021-05-17 07:01:02'),(16800,16796,59,3,NULL,'2021-05-17 07:01:02','2021-05-17 07:01:02'),(16801,16796,59,3,NULL,'2021-05-17 07:01:02','2021-05-17 07:01:02'),(16802,16796,59,3,NULL,'2021-05-17 07:01:02','2021-05-17 07:01:02'),(16803,16796,59,3,NULL,'2021-05-17 07:01:02','2021-05-17 07:01:02'),(16804,16796,59,3,NULL,'2021-05-17 07:01:02','2021-05-17 07:01:02'),(16805,16796,59,3,NULL,'2021-05-17 07:01:02','2021-05-17 07:01:02'),(16806,16796,59,3,NULL,'2021-05-17 07:01:02','2021-05-17 07:01:02'),(16807,16796,59,3,NULL,'2021-05-17 07:01:02','2021-05-17 07:01:02'),(16808,16796,59,3,NULL,'2021-05-17 07:01:02','2021-05-17 07:01:02'),(16811,16810,59,3,NULL,'2021-05-17 23:37:52','2021-05-17 23:37:52'),(16812,16810,59,3,NULL,'2021-05-17 23:37:53','2021-05-17 23:37:53'),(16813,16810,59,2,NULL,'2021-05-17 23:37:53','2021-05-17 23:37:53'),(16814,16810,59,3,NULL,'2021-05-17 23:37:53','2021-05-17 23:37:53'),(16815,16810,59,3,NULL,'2021-05-17 23:37:53','2021-05-17 23:37:53'),(16816,16810,59,3,NULL,'2021-05-17 23:37:53','2021-05-17 23:37:53'),(16817,16810,59,3,NULL,'2021-05-17 23:37:53','2021-05-17 23:37:53'),(16818,16810,59,3,NULL,'2021-05-17 23:37:53','2021-05-17 23:37:53'),(16819,16810,59,3,NULL,'2021-05-17 23:37:53','2021-05-17 23:37:53'),(16820,16810,59,3,NULL,'2021-05-17 23:37:53','2021-05-17 23:37:53'),(16821,16810,59,3,NULL,'2021-05-17 23:37:53','2021-05-17 23:37:53'),(16822,16810,59,3,NULL,'2021-05-17 23:37:53','2021-05-17 23:37:53'),(16831,16830,59,3,NULL,'2021-05-17 23:41:01','2021-05-17 23:41:01'),(16833,16832,59,3,NULL,'2021-05-17 23:43:09','2021-05-17 23:43:09'),(16837,16836,59,3,NULL,'2021-05-17 23:43:51','2021-05-17 23:43:51'),(16842,16841,59,3,NULL,'2021-05-17 23:46:42','2021-05-17 23:46:42'),(16845,16844,59,3,NULL,'2021-05-17 23:48:10','2021-05-17 23:48:10'),(16846,16844,59,1,NULL,'2021-05-17 23:48:10','2021-05-17 23:48:10'),(16849,16848,59,3,NULL,'2021-05-17 23:51:22','2021-05-17 23:51:22'),(16850,16848,59,1,NULL,'2021-05-17 23:51:22','2021-05-17 23:51:22'),(16853,16852,59,3,NULL,'2021-05-17 23:54:40','2021-05-17 23:54:40'),(16854,16852,59,1,NULL,'2021-05-17 23:54:40','2021-05-17 23:54:40'),(16857,16856,59,3,NULL,'2021-05-18 00:01:20','2021-05-18 00:01:20'),(16858,16856,59,1,NULL,'2021-05-18 00:01:20','2021-05-18 00:01:20'),(16862,16861,59,3,NULL,'2021-05-18 00:07:48','2021-05-18 00:07:48'),(16863,16861,59,1,NULL,'2021-05-18 00:07:48','2021-05-18 00:07:48'),(17876,17875,76,5,NULL,'2021-05-31 07:10:29','2021-05-31 07:10:29'),(17877,17875,76,5,NULL,'2021-05-31 07:10:29','2021-05-31 07:10:29'),(17878,17875,76,5,NULL,'2021-05-31 07:10:29','2021-05-31 07:10:29'),(17879,17875,76,5,NULL,'2021-05-31 07:10:29','2021-05-31 07:10:29'),(17880,17875,76,5,NULL,'2021-05-31 07:10:29','2021-05-31 07:10:29'),(17882,17881,76,5,NULL,'2021-05-31 07:14:26','2021-05-31 07:14:26'),(17883,17881,76,5,NULL,'2021-05-31 07:14:26','2021-05-31 07:14:26'),(17884,17881,76,5,NULL,'2021-05-31 07:14:26','2021-05-31 07:14:26'),(17885,17881,76,5,NULL,'2021-05-31 07:14:26','2021-05-31 07:14:26'),(17886,17881,76,5,NULL,'2021-05-31 07:14:26','2021-05-31 07:14:26'),(17888,17887,76,5,NULL,'2021-05-31 07:17:11','2021-05-31 07:17:11'),(17889,17887,76,5,NULL,'2021-05-31 07:17:11','2021-05-31 07:17:11'),(17890,17887,76,5,NULL,'2021-05-31 07:17:11','2021-05-31 07:17:11'),(17891,17887,76,5,NULL,'2021-05-31 07:17:11','2021-05-31 07:17:11'),(17892,17887,76,5,NULL,'2021-05-31 07:17:11','2021-05-31 07:17:11'),(17894,17893,76,5,NULL,'2021-05-31 07:20:10','2021-05-31 07:20:10'),(17895,17893,76,5,NULL,'2021-05-31 07:20:10','2021-05-31 07:20:10'),(17896,17893,76,5,NULL,'2021-05-31 07:20:10','2021-05-31 07:20:10'),(17897,17893,76,5,NULL,'2021-05-31 07:20:10','2021-05-31 07:20:10'),(17898,17893,76,5,NULL,'2021-05-31 07:20:10','2021-05-31 07:20:10'),(17900,17899,76,5,NULL,'2021-06-01 06:34:23','2021-06-01 06:34:23'),(17901,17899,76,5,NULL,'2021-06-01 06:34:23','2021-06-01 06:34:23'),(17902,17899,76,5,NULL,'2021-06-01 06:34:23','2021-06-01 06:34:23'),(17903,17899,76,5,NULL,'2021-06-01 06:34:23','2021-06-01 06:34:23'),(17904,17899,76,5,NULL,'2021-06-01 06:34:23','2021-06-01 06:34:23'),(17905,1,76,5,NULL,'2021-06-01 06:40:02','2021-06-01 06:40:02'),(17906,1,76,5,NULL,'2021-06-01 06:40:02','2021-06-01 06:40:02'),(17907,1,76,5,NULL,'2021-06-01 06:40:02','2021-06-01 06:40:02'),(17908,1,76,5,NULL,'2021-06-01 06:40:02','2021-06-01 06:40:02'),(17909,1,76,5,NULL,'2021-06-01 06:40:02','2021-06-01 06:40:02'),(17922,17921,76,5,NULL,'2021-06-01 06:59:14','2021-06-01 06:59:14'),(17923,17921,76,5,NULL,'2021-06-01 06:59:14','2021-06-01 06:59:14'),(17924,17921,76,5,NULL,'2021-06-01 06:59:14','2021-06-01 06:59:14'),(17925,17921,76,5,NULL,'2021-06-01 06:59:14','2021-06-01 06:59:14'),(17926,17921,76,5,NULL,'2021-06-01 06:59:14','2021-06-01 06:59:14'),(17935,17934,76,5,NULL,'2021-06-01 07:03:46','2021-06-01 07:03:46'),(17936,17934,76,5,NULL,'2021-06-01 07:03:46','2021-06-01 07:03:46'),(17937,17934,76,5,NULL,'2021-06-01 07:03:46','2021-06-01 07:03:46'),(17938,17934,76,5,NULL,'2021-06-01 07:03:46','2021-06-01 07:03:46'),(17939,17934,76,5,NULL,'2021-06-01 07:03:46','2021-06-01 07:03:46'),(17942,17941,76,5,NULL,'2021-06-01 07:07:28','2021-06-01 07:07:28'),(17943,17941,76,5,NULL,'2021-06-01 07:07:28','2021-06-01 07:07:28'),(17944,17941,76,5,NULL,'2021-06-01 07:07:28','2021-06-01 07:07:28'),(17945,17941,76,5,NULL,'2021-06-01 07:07:28','2021-06-01 07:07:28'),(17946,17941,76,5,NULL,'2021-06-01 07:07:28','2021-06-01 07:07:28'),(17959,17958,76,5,NULL,'2021-06-01 07:14:11','2021-06-01 07:14:11'),(17960,17958,76,5,NULL,'2021-06-01 07:14:12','2021-06-01 07:14:12'),(17961,17958,76,5,NULL,'2021-06-01 07:14:12','2021-06-01 07:14:12'),(17962,17958,76,5,NULL,'2021-06-01 07:14:12','2021-06-01 07:14:12'),(17963,17958,76,5,NULL,'2021-06-01 07:14:12','2021-06-01 07:14:12'),(17972,17954,76,5,NULL,'2021-06-01 07:19:49','2021-06-01 07:19:49'),(17973,17954,76,5,NULL,'2021-06-01 07:19:49','2021-06-01 07:19:49'),(17974,17954,76,5,NULL,'2021-06-01 07:19:49','2021-06-01 07:19:49'),(17975,17954,76,5,NULL,'2021-06-01 07:19:49','2021-06-01 07:19:49'),(17976,17954,76,5,NULL,'2021-06-01 07:19:49','2021-06-01 07:19:49'),(17978,17977,59,3,NULL,'2021-06-01 07:20:12','2021-06-01 07:20:12'),(17979,17977,59,3,NULL,'2021-06-01 07:20:12','2021-06-01 07:20:12'),(17980,17977,59,2,NULL,'2021-06-01 07:20:12','2021-06-01 07:20:12'),(17981,17977,59,3,NULL,'2021-06-01 07:20:12','2021-06-01 07:20:12'),(17982,17977,59,3,NULL,'2021-06-01 07:20:12','2021-06-01 07:20:12'),(17983,17977,59,3,NULL,'2021-06-01 07:20:12','2021-06-01 07:20:12'),(17984,17977,59,3,NULL,'2021-06-01 07:20:12','2021-06-01 07:20:12'),(17985,17977,59,3,NULL,'2021-06-01 07:20:12','2021-06-01 07:20:12'),(17986,17977,59,3,NULL,'2021-06-01 07:20:12','2021-06-01 07:20:12'),(17987,17977,59,3,NULL,'2021-06-01 07:20:12','2021-06-01 07:20:12'),(17988,17977,59,3,NULL,'2021-06-01 07:20:12','2021-06-01 07:20:12'),(17989,17977,59,3,NULL,'2021-06-01 07:20:12','2021-06-01 07:20:12'),(17991,17956,76,5,NULL,'2021-06-02 23:41:07','2021-06-02 23:41:07'),(17992,17956,76,5,NULL,'2021-06-02 23:41:07','2021-06-02 23:41:07'),(17993,17956,76,5,NULL,'2021-06-02 23:41:07','2021-06-02 23:41:07'),(17994,17956,76,5,NULL,'2021-06-02 23:41:07','2021-06-02 23:41:07'),(17995,17956,76,5,NULL,'2021-06-02 23:41:07','2021-06-02 23:41:07'),(17997,17996,76,5,NULL,'2021-06-02 23:43:43','2021-06-02 23:43:43'),(17998,17996,76,5,NULL,'2021-06-02 23:43:43','2021-06-02 23:43:43'),(17999,17996,76,5,NULL,'2021-06-02 23:43:43','2021-06-02 23:43:43'),(18000,17996,76,5,NULL,'2021-06-02 23:43:43','2021-06-02 23:43:43'),(18001,17996,76,5,NULL,'2021-06-02 23:43:43','2021-06-02 23:43:43'),(18004,18003,59,3,NULL,'2021-06-03 05:19:19','2021-06-03 05:19:19'),(18005,18003,59,1,NULL,'2021-06-03 05:19:19','2021-06-03 05:19:19'),(18022,18021,59,3,NULL,'2021-06-03 05:22:27','2021-06-03 05:22:27'),(18023,18021,59,1,NULL,'2021-06-03 05:22:27','2021-06-03 05:22:27'),(18024,18021,59,3,NULL,'2021-06-03 05:22:27','2021-06-03 05:22:27'),(18025,18021,59,3,NULL,'2021-06-03 05:22:27','2021-06-03 05:22:27'),(18028,18027,59,3,NULL,'2021-06-03 05:27:17','2021-06-03 05:27:17'),(18029,18027,59,1,NULL,'2021-06-03 05:27:17','2021-06-03 05:27:17'),(18030,18027,59,3,NULL,'2021-06-03 05:27:17','2021-06-03 05:27:17'),(18031,18027,59,3,NULL,'2021-06-03 05:27:17','2021-06-03 05:27:17'),(18032,18027,59,6,NULL,'2021-06-03 05:27:18','2021-06-03 05:27:18'),(18035,18034,59,3,NULL,'2021-06-03 05:55:32','2021-06-03 05:55:32'),(18036,18034,59,1,NULL,'2021-06-03 05:55:32','2021-06-03 05:55:32'),(18037,18034,59,3,NULL,'2021-06-03 05:55:32','2021-06-03 05:55:32'),(18038,18034,59,3,NULL,'2021-06-03 05:55:32','2021-06-03 05:55:32'),(18039,18034,59,6,NULL,'2021-06-03 05:55:32','2021-06-03 05:55:32'),(18052,18051,59,3,NULL,'2021-06-03 05:56:54','2021-06-03 05:56:54'),(18053,18051,59,1,NULL,'2021-06-03 05:56:54','2021-06-03 05:56:54'),(18054,18051,59,3,NULL,'2021-06-03 05:56:54','2021-06-03 05:56:54'),(18055,18051,59,3,NULL,'2021-06-03 05:56:54','2021-06-03 05:56:54'),(18056,18051,59,6,NULL,'2021-06-03 05:56:54','2021-06-03 05:56:54'),(18072,18071,59,3,NULL,'2021-06-03 06:11:01','2021-06-03 06:11:01'),(18073,18071,59,1,NULL,'2021-06-03 06:11:01','2021-06-03 06:11:01'),(18074,18071,59,3,NULL,'2021-06-03 06:11:01','2021-06-03 06:11:01'),(18075,18071,59,3,NULL,'2021-06-03 06:11:01','2021-06-03 06:11:01'),(18076,18071,59,6,NULL,'2021-06-03 06:11:01','2021-06-03 06:11:01'),(18078,18077,59,3,NULL,'2021-06-03 06:12:30','2021-06-03 06:12:30'),(18079,18077,59,1,NULL,'2021-06-03 06:12:30','2021-06-03 06:12:30'),(18080,18077,59,3,NULL,'2021-06-03 06:12:30','2021-06-03 06:12:30'),(18081,18077,59,3,NULL,'2021-06-03 06:12:30','2021-06-03 06:12:30'),(18082,18077,59,6,NULL,'2021-06-03 06:12:30','2021-06-03 06:12:30'),(18098,18097,59,3,NULL,'2021-06-03 06:13:45','2021-06-03 06:13:45'),(18099,18097,59,3,NULL,'2021-06-03 06:13:45','2021-06-03 06:13:45'),(18100,18097,59,1,NULL,'2021-06-03 06:13:45','2021-06-03 06:13:45'),(18101,18097,59,3,NULL,'2021-06-03 06:13:45','2021-06-03 06:13:45'),(18102,18097,59,3,NULL,'2021-06-03 06:13:45','2021-06-03 06:13:45'),(18103,18097,59,6,NULL,'2021-06-03 06:13:45','2021-06-03 06:13:45'),(18339,18338,59,3,NULL,'2021-06-09 23:34:56','2021-06-09 23:34:56'),(18340,18338,59,1,NULL,'2021-06-09 23:34:56','2021-06-09 23:34:56'),(18341,18338,59,3,NULL,'2021-06-09 23:34:56','2021-06-09 23:34:56'),(18342,18338,59,3,NULL,'2021-06-09 23:34:56','2021-06-09 23:34:56'),(18343,18338,59,3,NULL,'2021-06-09 23:34:56','2021-06-09 23:34:56'),(18344,18338,59,3,NULL,'2021-06-09 23:34:56','2021-06-09 23:34:56'),(18345,18338,59,3,NULL,'2021-06-09 23:34:56','2021-06-09 23:34:56'),(18346,18338,59,3,NULL,'2021-06-09 23:34:56','2021-06-09 23:34:56'),(18347,18338,59,3,NULL,'2021-06-09 23:34:56','2021-06-09 23:34:56'),(18349,18348,59,3,NULL,'2021-06-09 23:35:01','2021-06-09 23:35:01'),(18350,18348,59,1,NULL,'2021-06-09 23:35:01','2021-06-09 23:35:01'),(18351,18348,59,3,NULL,'2021-06-09 23:35:01','2021-06-09 23:35:01'),(18352,18348,59,3,NULL,'2021-06-09 23:35:01','2021-06-09 23:35:01'),(18353,18348,59,3,NULL,'2021-06-09 23:35:01','2021-06-09 23:35:01'),(18354,18348,59,3,NULL,'2021-06-09 23:35:01','2021-06-09 23:35:01'),(18355,18348,59,3,NULL,'2021-06-09 23:35:01','2021-06-09 23:35:01'),(18356,18348,59,3,NULL,'2021-06-09 23:35:01','2021-06-09 23:35:01'),(18357,18348,59,3,NULL,'2021-06-09 23:35:01','2021-06-09 23:35:01'),(18370,18369,59,3,NULL,'2021-06-09 23:36:05','2021-06-09 23:36:05'),(18371,18369,59,1,NULL,'2021-06-09 23:36:05','2021-06-09 23:36:05'),(18539,18538,59,3,NULL,'2021-06-09 23:44:53','2021-06-09 23:44:53'),(18540,18538,59,1,NULL,'2021-06-09 23:44:53','2021-06-09 23:44:53'),(18541,18538,59,3,NULL,'2021-06-09 23:44:53','2021-06-09 23:44:53'),(18542,18538,59,3,NULL,'2021-06-09 23:44:53','2021-06-09 23:44:53'),(18543,18538,59,7,NULL,'2021-06-09 23:44:53','2021-06-09 23:44:53'),(18545,18538,59,7,NULL,'2021-06-09 23:44:53','2021-06-09 23:44:53'),(18551,18550,59,3,NULL,'2021-06-09 23:44:59','2021-06-09 23:44:59'),(18552,18550,59,1,NULL,'2021-06-09 23:44:59','2021-06-09 23:44:59'),(18553,18550,59,3,NULL,'2021-06-09 23:44:59','2021-06-09 23:44:59'),(18554,18550,59,3,NULL,'2021-06-09 23:44:59','2021-06-09 23:44:59'),(18555,18550,59,7,NULL,'2021-06-09 23:44:59','2021-06-09 23:44:59'),(18557,18550,59,7,NULL,'2021-06-09 23:45:00','2021-06-09 23:45:00'),(18563,18562,59,3,NULL,'2021-06-09 23:45:21','2021-06-09 23:45:21'),(18564,18562,59,1,NULL,'2021-06-09 23:45:21','2021-06-09 23:45:21'),(18565,18562,59,3,NULL,'2021-06-09 23:45:21','2021-06-09 23:45:21'),(18566,18562,59,3,NULL,'2021-06-09 23:45:21','2021-06-09 23:45:21'),(18567,18562,59,3,NULL,'2021-06-09 23:45:21','2021-06-09 23:45:21'),(18568,18562,59,3,NULL,'2021-06-09 23:45:21','2021-06-09 23:45:21'),(18569,18562,59,3,NULL,'2021-06-09 23:45:21','2021-06-09 23:45:21'),(18570,18562,59,3,NULL,'2021-06-09 23:45:21','2021-06-09 23:45:21'),(18571,18562,59,3,NULL,'2021-06-09 23:45:21','2021-06-09 23:45:21'),(18573,18572,59,3,NULL,'2021-06-09 23:45:55','2021-06-09 23:45:55'),(18574,18572,59,1,NULL,'2021-06-09 23:45:55','2021-06-09 23:45:55'),(18575,18572,59,3,NULL,'2021-06-09 23:45:55','2021-06-09 23:45:55'),(18576,18572,59,3,NULL,'2021-06-09 23:45:55','2021-06-09 23:45:55'),(18577,18572,59,7,NULL,'2021-06-09 23:45:55','2021-06-09 23:45:55'),(18579,18572,59,7,NULL,'2021-06-09 23:45:55','2021-06-09 23:45:55'),(18627,18626,59,3,NULL,'2021-06-09 23:50:04','2021-06-09 23:50:04'),(18628,18626,59,1,NULL,'2021-06-09 23:50:04','2021-06-09 23:50:04'),(18629,18626,59,3,NULL,'2021-06-09 23:50:04','2021-06-09 23:50:04'),(18630,18626,59,3,NULL,'2021-06-09 23:50:04','2021-06-09 23:50:04'),(18631,18626,59,3,NULL,'2021-06-09 23:50:04','2021-06-09 23:50:04'),(18633,18632,59,3,NULL,'2021-06-09 23:50:10','2021-06-09 23:50:10'),(18634,18632,59,1,NULL,'2021-06-09 23:50:10','2021-06-09 23:50:10'),(18635,18632,59,3,NULL,'2021-06-09 23:50:10','2021-06-09 23:50:10'),(18636,18632,59,3,NULL,'2021-06-09 23:50:10','2021-06-09 23:50:10'),(18637,18632,59,3,NULL,'2021-06-09 23:50:10','2021-06-09 23:50:10'),(19015,19014,59,7,NULL,'2021-06-10 01:54:29','2021-06-10 01:54:29'),(19017,19014,59,1,NULL,'2021-06-10 01:54:29','2021-06-10 01:54:29'),(19018,19014,59,3,NULL,'2021-06-10 01:54:29','2021-06-10 01:54:29'),(19019,19014,59,3,NULL,'2021-06-10 01:54:29','2021-06-10 01:54:29'),(19020,19014,59,3,NULL,'2021-06-10 01:54:29','2021-06-10 01:54:29'),(19021,19014,59,3,NULL,'2021-06-10 01:54:29','2021-06-10 01:54:29'),(19022,19014,59,3,NULL,'2021-06-10 01:54:29','2021-06-10 01:54:29'),(19023,19014,59,3,NULL,'2021-06-10 01:54:29','2021-06-10 01:54:29'),(19024,19014,59,3,NULL,'2021-06-10 01:54:29','2021-06-10 01:54:29'),(19025,19014,59,3,NULL,'2021-06-10 01:54:29','2021-06-10 01:54:29'),(19026,19014,59,3,NULL,'2021-06-10 01:54:29','2021-06-10 01:54:29'),(19027,19014,59,3,NULL,'2021-06-10 01:54:29','2021-06-10 01:54:29'),(19028,19014,59,3,NULL,'2021-06-10 01:54:29','2021-06-10 01:54:29'),(19029,19014,59,3,NULL,'2021-06-10 01:54:29','2021-06-10 01:54:29'),(19030,19014,59,3,NULL,'2021-06-10 01:54:29','2021-06-10 01:54:29'),(19031,19014,59,3,NULL,'2021-06-10 01:54:29','2021-06-10 01:54:29'),(19032,19014,59,3,NULL,'2021-06-10 01:54:29','2021-06-10 01:54:29'),(19034,19033,59,7,NULL,'2021-06-10 01:54:38','2021-06-10 01:54:38'),(19036,19033,59,1,NULL,'2021-06-10 01:54:38','2021-06-10 01:54:38'),(19037,19033,59,3,NULL,'2021-06-10 01:54:38','2021-06-10 01:54:38'),(19038,19033,59,3,NULL,'2021-06-10 01:54:38','2021-06-10 01:54:38'),(19039,19033,59,3,NULL,'2021-06-10 01:54:38','2021-06-10 01:54:38'),(19040,19033,59,3,NULL,'2021-06-10 01:54:38','2021-06-10 01:54:38'),(19041,19033,59,3,NULL,'2021-06-10 01:54:38','2021-06-10 01:54:38'),(19042,19033,59,3,NULL,'2021-06-10 01:54:38','2021-06-10 01:54:38'),(19043,19033,59,3,NULL,'2021-06-10 01:54:38','2021-06-10 01:54:38'),(19044,19033,59,3,NULL,'2021-06-10 01:54:38','2021-06-10 01:54:38'),(19045,19033,59,3,NULL,'2021-06-10 01:54:38','2021-06-10 01:54:38'),(19046,19033,59,3,NULL,'2021-06-10 01:54:38','2021-06-10 01:54:38'),(19047,19033,59,3,NULL,'2021-06-10 01:54:38','2021-06-10 01:54:38'),(19048,19033,59,3,NULL,'2021-06-10 01:54:38','2021-06-10 01:54:38'),(19049,19033,59,3,NULL,'2021-06-10 01:54:38','2021-06-10 01:54:38'),(19050,19033,59,3,NULL,'2021-06-10 01:54:38','2021-06-10 01:54:38'),(19051,19033,59,3,NULL,'2021-06-10 01:54:38','2021-06-10 01:54:38'),(19094,19093,59,3,NULL,'2021-06-10 04:26:08','2021-06-10 04:26:08'),(19095,19093,59,1,NULL,'2021-06-10 04:26:08','2021-06-10 04:26:08'),(19096,19093,59,3,NULL,'2021-06-10 04:26:08','2021-06-10 04:26:08'),(19097,19093,59,3,NULL,'2021-06-10 04:26:08','2021-06-10 04:26:08'),(19098,19093,59,7,NULL,'2021-06-10 04:26:08','2021-06-10 04:26:08'),(19100,19093,59,7,NULL,'2021-06-10 04:26:08','2021-06-10 04:26:08'),(19106,19105,59,3,NULL,'2021-06-10 04:26:13','2021-06-10 04:26:13'),(19107,19105,59,1,NULL,'2021-06-10 04:26:13','2021-06-10 04:26:13'),(19108,19105,59,3,NULL,'2021-06-10 04:26:13','2021-06-10 04:26:13'),(19109,19105,59,3,NULL,'2021-06-10 04:26:13','2021-06-10 04:26:13'),(19110,19105,59,7,NULL,'2021-06-10 04:26:13','2021-06-10 04:26:13'),(19112,19105,59,7,NULL,'2021-06-10 04:26:13','2021-06-10 04:26:13'),(19137,19136,59,3,NULL,'2021-06-10 04:27:36','2021-06-10 04:27:36'),(19138,19136,59,1,NULL,'2021-06-10 04:27:36','2021-06-10 04:27:36'),(19139,19136,59,3,NULL,'2021-06-10 04:27:36','2021-06-10 04:27:36'),(19140,19136,59,3,NULL,'2021-06-10 04:27:37','2021-06-10 04:27:37'),(19141,19136,59,3,NULL,'2021-06-10 04:27:37','2021-06-10 04:27:37'),(19142,19136,59,3,NULL,'2021-06-10 04:27:37','2021-06-10 04:27:37'),(19143,19136,59,3,NULL,'2021-06-10 04:27:37','2021-06-10 04:27:37'),(19144,19136,59,3,NULL,'2021-06-10 04:27:37','2021-06-10 04:27:37'),(19145,19136,59,3,NULL,'2021-06-10 04:27:37','2021-06-10 04:27:37'),(19147,19146,59,3,NULL,'2021-06-10 04:27:41','2021-06-10 04:27:41'),(19148,19146,59,1,NULL,'2021-06-10 04:27:41','2021-06-10 04:27:41'),(19149,19146,59,3,NULL,'2021-06-10 04:27:41','2021-06-10 04:27:41'),(19150,19146,59,3,NULL,'2021-06-10 04:27:41','2021-06-10 04:27:41'),(19151,19146,59,3,NULL,'2021-06-10 04:27:41','2021-06-10 04:27:41'),(19152,19146,59,3,NULL,'2021-06-10 04:27:41','2021-06-10 04:27:41'),(19153,19146,59,3,NULL,'2021-06-10 04:27:41','2021-06-10 04:27:41'),(19154,19146,59,3,NULL,'2021-06-10 04:27:41','2021-06-10 04:27:41'),(19155,19146,59,3,NULL,'2021-06-10 04:27:41','2021-06-10 04:27:41'),(21309,21308,121,8,NULL,'2021-06-21 06:26:26','2021-06-21 06:26:26'),(21335,21297,121,11,NULL,'2021-06-21 06:33:44','2021-06-21 06:33:44'),(21337,21336,121,11,NULL,'2021-06-21 06:33:45','2021-06-21 06:33:45'),(21339,21338,121,11,NULL,'2021-06-21 06:33:48','2021-06-21 06:33:48'),(21772,20379,121,8,NULL,'2021-07-13 00:07:17','2021-07-13 00:07:17'),(21773,20379,121,9,NULL,'2021-07-13 00:07:17','2021-07-13 00:07:17'),(21779,20379,121,10,NULL,'2021-07-13 00:07:17','2021-07-13 00:07:17'),(21780,20379,121,8,NULL,'2021-07-13 00:07:17','2021-07-13 00:07:17'),(21782,20379,121,11,NULL,'2021-07-13 00:07:17','2021-07-13 00:07:17'),(21790,20379,121,12,NULL,'2021-07-13 00:07:17','2021-07-13 00:07:17'),(21797,20379,121,8,NULL,'2021-07-13 00:07:17','2021-07-13 00:07:17'),(21937,21936,59,3,NULL,'2021-07-16 01:16:05','2021-07-16 01:16:05'),(21938,21936,59,3,NULL,'2021-07-16 01:16:05','2021-07-16 01:16:05'),(21939,21936,59,2,NULL,'2021-07-16 01:16:05','2021-07-16 01:16:05'),(21940,21936,59,3,NULL,'2021-07-16 01:16:05','2021-07-16 01:16:05'),(21941,21936,59,3,NULL,'2021-07-16 01:16:05','2021-07-16 01:16:05'),(21942,21936,59,3,NULL,'2021-07-16 01:16:05','2021-07-16 01:16:05'),(21943,21936,59,3,NULL,'2021-07-16 01:16:05','2021-07-16 01:16:05'),(21944,21936,59,3,NULL,'2021-07-16 01:16:05','2021-07-16 01:16:05'),(21945,21936,59,3,NULL,'2021-07-16 01:16:05','2021-07-16 01:16:05'),(21946,21936,59,3,NULL,'2021-07-16 01:16:05','2021-07-16 01:16:05'),(21947,21936,59,3,NULL,'2021-07-16 01:16:05','2021-07-16 01:16:05'),(21948,21936,59,3,NULL,'2021-07-16 01:16:05','2021-07-16 01:16:05'),(21961,21960,59,3,NULL,'2021-07-16 01:17:55','2021-07-16 01:17:55'),(21962,21960,59,3,NULL,'2021-07-16 01:17:55','2021-07-16 01:17:55'),(21963,21960,59,1,NULL,'2021-07-16 01:17:55','2021-07-16 01:17:55'),(21964,21960,59,3,NULL,'2021-07-16 01:17:55','2021-07-16 01:17:55'),(21965,21960,59,3,NULL,'2021-07-16 01:17:55','2021-07-16 01:17:55'),(21966,21960,59,3,NULL,'2021-07-16 01:17:55','2021-07-16 01:17:55'),(21974,21973,59,3,NULL,'2021-07-16 01:36:04','2021-07-16 01:36:04'),(21975,21973,59,1,NULL,'2021-07-16 01:36:04','2021-07-16 01:36:04'),(21976,21973,59,3,NULL,'2021-07-16 01:36:04','2021-07-16 01:36:04'),(21977,21973,59,3,NULL,'2021-07-16 01:36:04','2021-07-16 01:36:04'),(21978,21973,59,3,NULL,'2021-07-16 01:36:04','2021-07-16 01:36:04'),(22007,22006,59,3,NULL,'2021-07-16 01:41:34','2021-07-16 01:41:34'),(22008,22006,59,1,NULL,'2021-07-16 01:41:34','2021-07-16 01:41:34'),(22009,22006,59,3,NULL,'2021-07-16 01:41:34','2021-07-16 01:41:34'),(22042,22041,59,3,NULL,'2021-07-16 01:49:52','2021-07-16 01:49:52'),(22043,22041,59,1,NULL,'2021-07-16 01:49:52','2021-07-16 01:49:52'),(22044,22041,59,3,NULL,'2021-07-16 01:49:52','2021-07-16 01:49:52'),(22045,22041,59,3,NULL,'2021-07-16 01:49:52','2021-07-16 01:49:52'),(22052,22051,59,3,NULL,'2021-07-16 01:50:07','2021-07-16 01:50:07'),(22053,22051,59,1,NULL,'2021-07-16 01:50:07','2021-07-16 01:50:07'),(22054,22051,59,3,NULL,'2021-07-16 01:50:07','2021-07-16 01:50:07'),(22055,22051,59,3,NULL,'2021-07-16 01:50:07','2021-07-16 01:50:07'),(22061,22060,59,3,NULL,'2021-07-16 01:50:19','2021-07-16 01:50:19'),(22062,22060,59,1,NULL,'2021-07-16 01:50:19','2021-07-16 01:50:19'),(22063,22060,59,3,NULL,'2021-07-16 01:50:19','2021-07-16 01:50:19'),(22100,22099,59,7,NULL,'2021-07-16 01:57:58','2021-07-16 01:57:58'),(22102,22099,59,1,NULL,'2021-07-16 01:57:58','2021-07-16 01:57:58'),(22103,22099,59,3,NULL,'2021-07-16 01:57:58','2021-07-16 01:57:58'),(22104,22099,59,3,NULL,'2021-07-16 01:57:58','2021-07-16 01:57:58'),(22105,22099,59,3,NULL,'2021-07-16 01:57:58','2021-07-16 01:57:58'),(22106,22099,59,3,NULL,'2021-07-16 01:57:58','2021-07-16 01:57:58'),(22107,22099,59,3,NULL,'2021-07-16 01:57:58','2021-07-16 01:57:58'),(22108,22099,59,3,NULL,'2021-07-16 01:57:58','2021-07-16 01:57:58'),(22109,22099,59,3,NULL,'2021-07-16 01:57:58','2021-07-16 01:57:58'),(22110,22099,59,3,NULL,'2021-07-16 01:57:58','2021-07-16 01:57:58'),(22111,22099,59,3,NULL,'2021-07-16 01:57:58','2021-07-16 01:57:58'),(22112,22099,59,3,NULL,'2021-07-16 01:57:58','2021-07-16 01:57:58'),(22113,22099,59,3,NULL,'2021-07-16 01:57:58','2021-07-16 01:57:58'),(22114,22099,59,3,NULL,'2021-07-16 01:57:58','2021-07-16 01:57:58'),(22115,22099,59,3,NULL,'2021-07-16 01:57:58','2021-07-16 01:57:58'),(22116,22099,59,3,NULL,'2021-07-16 01:57:58','2021-07-16 01:57:58'),(22117,22099,59,3,NULL,'2021-07-16 01:57:58','2021-07-16 01:57:58'),(22140,22139,59,7,NULL,'2021-07-16 01:58:24','2021-07-16 01:58:24'),(22142,22139,59,1,NULL,'2021-07-16 01:58:24','2021-07-16 01:58:24'),(22143,22139,59,3,NULL,'2021-07-16 01:58:24','2021-07-16 01:58:24'),(22144,22139,59,3,NULL,'2021-07-16 01:58:24','2021-07-16 01:58:24'),(22145,22139,59,3,NULL,'2021-07-16 01:58:24','2021-07-16 01:58:24'),(22146,22139,59,3,NULL,'2021-07-16 01:58:24','2021-07-16 01:58:24'),(22147,22139,59,3,NULL,'2021-07-16 01:58:24','2021-07-16 01:58:24'),(22148,22139,59,3,NULL,'2021-07-16 01:58:24','2021-07-16 01:58:24'),(22149,22139,59,3,NULL,'2021-07-16 01:58:24','2021-07-16 01:58:24'),(22150,22139,59,3,NULL,'2021-07-16 01:58:24','2021-07-16 01:58:24'),(22151,22139,59,3,NULL,'2021-07-16 01:58:24','2021-07-16 01:58:24'),(22152,22139,59,3,NULL,'2021-07-16 01:58:24','2021-07-16 01:58:24'),(22153,22139,59,3,NULL,'2021-07-16 01:58:24','2021-07-16 01:58:24'),(22154,22139,59,3,NULL,'2021-07-16 01:58:24','2021-07-16 01:58:24'),(22155,22139,59,3,NULL,'2021-07-16 01:58:24','2021-07-16 01:58:24'),(22156,22139,59,3,NULL,'2021-07-16 01:58:24','2021-07-16 01:58:24'),(22157,22139,59,3,NULL,'2021-07-16 01:58:24','2021-07-16 01:58:24'),(22196,22195,59,3,NULL,'2021-07-16 03:07:32','2021-07-16 03:07:32'),(22197,22195,59,1,NULL,'2021-07-16 03:07:32','2021-07-16 03:07:32'),(22198,22195,59,3,NULL,'2021-07-16 03:07:33','2021-07-16 03:07:33'),(22199,22195,59,3,NULL,'2021-07-16 03:07:33','2021-07-16 03:07:33'),(22206,22205,59,3,NULL,'2021-07-16 03:10:46','2021-07-16 03:10:46'),(22207,22205,59,1,NULL,'2021-07-16 03:10:46','2021-07-16 03:10:46'),(22208,22205,59,3,NULL,'2021-07-16 03:10:46','2021-07-16 03:10:46'),(22209,22205,59,3,NULL,'2021-07-16 03:10:46','2021-07-16 03:10:46'),(22267,22266,59,3,NULL,'2021-07-16 03:23:11','2021-07-16 03:23:11'),(22268,22266,59,1,NULL,'2021-07-16 03:23:11','2021-07-16 03:23:11'),(22269,22266,59,7,NULL,'2021-07-16 03:23:11','2021-07-16 03:23:11'),(22280,22279,59,3,NULL,'2021-07-16 03:53:04','2021-07-16 03:53:04'),(22281,22279,59,1,NULL,'2021-07-16 03:53:04','2021-07-16 03:53:04'),(22282,22279,59,7,NULL,'2021-07-16 03:53:04','2021-07-16 03:53:04'),(22297,22296,59,3,NULL,'2021-07-16 03:55:48','2021-07-16 03:55:48'),(22298,22296,59,1,NULL,'2021-07-16 03:55:48','2021-07-16 03:55:48'),(22299,22296,59,7,NULL,'2021-07-16 03:55:48','2021-07-16 03:55:48'),(22301,22296,59,1,NULL,'2021-07-16 03:55:48','2021-07-16 03:55:48'),(22312,22311,59,3,NULL,'2021-07-16 03:57:20','2021-07-16 03:57:20'),(22313,22311,59,1,NULL,'2021-07-16 03:57:20','2021-07-16 03:57:20'),(22314,22311,59,7,NULL,'2021-07-16 03:57:20','2021-07-16 03:57:20'),(22316,22311,59,1,NULL,'2021-07-16 03:57:20','2021-07-16 03:57:20'),(22327,22326,59,3,NULL,'2021-07-16 04:08:00','2021-07-16 04:08:00'),(22328,22326,59,1,NULL,'2021-07-16 04:08:00','2021-07-16 04:08:00'),(22329,22326,59,7,NULL,'2021-07-16 04:08:00','2021-07-16 04:08:00'),(22331,22326,59,1,NULL,'2021-07-16 04:08:01','2021-07-16 04:08:01'),(22333,22332,59,3,NULL,'2021-07-16 04:09:55','2021-07-16 04:09:55'),(22334,22332,59,1,NULL,'2021-07-16 04:09:55','2021-07-16 04:09:55'),(22335,22332,59,7,NULL,'2021-07-16 04:09:55','2021-07-16 04:09:55'),(22337,22332,59,1,NULL,'2021-07-16 04:09:55','2021-07-16 04:09:55'),(22376,22375,59,3,NULL,'2021-07-16 04:25:30','2021-07-16 04:25:30'),(22377,22375,59,1,NULL,'2021-07-16 04:25:30','2021-07-16 04:25:30'),(22378,22375,59,7,NULL,'2021-07-16 04:25:30','2021-07-16 04:25:30'),(22380,22375,59,1,NULL,'2021-07-16 04:25:30','2021-07-16 04:25:30'),(22381,22375,59,2,NULL,'2021-07-16 04:25:30','2021-07-16 04:25:30'),(22382,22375,59,7,NULL,'2021-07-16 04:25:30','2021-07-16 04:25:30'),(22384,22375,59,2,NULL,'2021-07-16 04:25:30','2021-07-16 04:25:30'),(22399,22398,59,3,NULL,'2021-07-16 05:01:46','2021-07-16 05:01:46'),(22400,22398,59,1,NULL,'2021-07-16 05:01:46','2021-07-16 05:01:46'),(22401,22398,59,7,NULL,'2021-07-16 05:01:46','2021-07-16 05:01:46'),(22403,22398,59,1,NULL,'2021-07-16 05:01:46','2021-07-16 05:01:46'),(22404,22398,59,2,NULL,'2021-07-16 05:01:46','2021-07-16 05:01:46'),(22405,22398,59,7,NULL,'2021-07-16 05:01:46','2021-07-16 05:01:46'),(22407,22398,59,2,NULL,'2021-07-16 05:01:46','2021-07-16 05:01:46'),(22421,22420,59,3,NULL,'2021-07-16 05:27:15','2021-07-16 05:27:15'),(22422,22420,59,1,NULL,'2021-07-16 05:27:15','2021-07-16 05:27:15'),(22423,22420,59,7,NULL,'2021-07-16 05:27:15','2021-07-16 05:27:15'),(22425,22420,59,1,NULL,'2021-07-16 05:27:15','2021-07-16 05:27:15'),(22426,22420,59,2,NULL,'2021-07-16 05:27:15','2021-07-16 05:27:15'),(22427,22420,59,7,NULL,'2021-07-16 05:27:15','2021-07-16 05:27:15'),(22429,22420,59,2,NULL,'2021-07-16 05:27:15','2021-07-16 05:27:15'),(38149,30433,76,5,NULL,'2021-08-27 05:31:56','2021-08-27 05:31:56'),(38150,30433,76,5,NULL,'2021-08-27 05:31:56','2021-08-27 05:31:56'),(38151,30433,76,5,NULL,'2021-08-27 05:31:56','2021-08-27 05:31:56'),(38152,30433,76,5,NULL,'2021-08-27 05:31:56','2021-08-27 05:31:56'),(38153,30433,76,5,NULL,'2021-08-27 05:31:56','2021-08-27 05:31:56'),(44967,44879,188,18,NULL,'2021-09-10 02:02:41','2021-10-01 01:04:09'),(44969,44879,188,18,NULL,'2021-09-10 02:02:41','2021-10-01 01:04:09'),(44970,44879,188,18,NULL,'2021-09-10 02:02:41','2021-10-01 01:04:09'),(44971,44879,188,18,NULL,'2021-09-10 02:02:41','2021-10-01 01:04:10'),(44973,44972,188,18,NULL,'2021-09-10 02:02:41','2021-09-10 02:02:41'),(44974,44972,188,18,NULL,'2021-09-10 02:02:41','2021-09-10 02:02:41'),(44975,44972,188,18,NULL,'2021-09-10 02:02:41','2021-09-10 02:02:41'),(44976,44972,188,18,NULL,'2021-09-10 02:02:41','2021-09-10 02:02:41'),(44977,44972,188,18,NULL,'2021-09-10 02:02:41','2021-09-10 02:02:41'),(44997,44996,188,18,NULL,'2021-09-10 02:23:39','2021-09-10 02:23:39'),(44998,44996,188,18,NULL,'2021-09-10 02:23:39','2021-09-10 02:23:39'),(44999,44996,188,18,NULL,'2021-09-10 02:23:39','2021-09-10 02:23:39'),(45000,44996,188,18,NULL,'2021-09-10 02:23:39','2021-09-10 02:23:39'),(45001,44996,188,18,NULL,'2021-09-10 02:23:39','2021-09-10 02:23:39'),(45009,45008,188,18,NULL,'2021-09-10 02:25:54','2021-09-10 02:25:54'),(45010,45008,188,18,NULL,'2021-09-10 02:25:54','2021-09-10 02:25:54'),(45011,45008,188,18,NULL,'2021-09-10 02:25:54','2021-09-10 02:25:54'),(45012,45008,188,18,NULL,'2021-09-10 02:25:54','2021-09-10 02:25:54'),(45013,45008,188,18,NULL,'2021-09-10 02:25:54','2021-09-10 02:25:54'),(45021,45020,188,18,NULL,'2021-09-10 02:26:16','2021-09-10 02:26:16'),(45022,45020,188,18,NULL,'2021-09-10 02:26:16','2021-09-10 02:26:16'),(45023,45020,188,18,NULL,'2021-09-10 02:26:16','2021-09-10 02:26:16'),(45024,45020,188,18,NULL,'2021-09-10 02:26:16','2021-09-10 02:26:16'),(45025,45020,188,18,NULL,'2021-09-10 02:26:16','2021-09-10 02:26:16'),(45033,45032,188,18,NULL,'2021-09-10 02:28:15','2021-09-10 02:28:15'),(45034,45032,188,18,NULL,'2021-09-10 02:28:15','2021-09-10 02:28:15'),(45035,45032,188,18,NULL,'2021-09-10 02:28:15','2021-09-10 02:28:15'),(45036,45032,188,18,NULL,'2021-09-10 02:28:15','2021-09-10 02:28:15'),(45037,45032,188,18,NULL,'2021-09-10 02:28:15','2021-09-10 02:28:15'),(45045,45044,188,18,NULL,'2021-09-10 02:28:45','2021-09-10 02:28:45'),(45046,45044,188,18,NULL,'2021-09-10 02:28:45','2021-09-10 02:28:45'),(45047,45044,188,18,NULL,'2021-09-10 02:28:45','2021-09-10 02:28:45'),(45048,45044,188,18,NULL,'2021-09-10 02:28:45','2021-09-10 02:28:45'),(45049,45044,188,18,NULL,'2021-09-10 02:28:45','2021-09-10 02:28:45'),(45057,45056,188,18,NULL,'2021-09-10 02:30:52','2021-09-10 02:30:52'),(45058,45056,188,18,NULL,'2021-09-10 02:30:52','2021-09-10 02:30:52'),(45059,45056,188,18,NULL,'2021-09-10 02:30:52','2021-09-10 02:30:52'),(45060,45056,188,18,NULL,'2021-09-10 02:30:52','2021-09-10 02:30:52'),(45061,45056,188,18,NULL,'2021-09-10 02:30:52','2021-09-10 02:30:52'),(45069,45068,188,18,NULL,'2021-09-10 02:31:08','2021-09-10 02:31:08'),(45070,45068,188,18,NULL,'2021-09-10 02:31:08','2021-09-10 02:31:08'),(45071,45068,188,18,NULL,'2021-09-10 02:31:08','2021-09-10 02:31:08'),(45072,45068,188,18,NULL,'2021-09-10 02:31:08','2021-09-10 02:31:08'),(45073,45068,188,18,NULL,'2021-09-10 02:31:08','2021-09-10 02:31:08'),(45081,45080,188,18,NULL,'2021-09-10 02:31:42','2021-09-10 02:31:42'),(45082,45080,188,18,NULL,'2021-09-10 02:31:42','2021-09-10 02:31:42'),(45083,45080,188,18,NULL,'2021-09-10 02:31:42','2021-09-10 02:31:42'),(45084,45080,188,18,NULL,'2021-09-10 02:31:42','2021-09-10 02:31:42'),(45085,45080,188,18,NULL,'2021-09-10 02:31:42','2021-09-10 02:31:42'),(45093,45092,188,18,NULL,'2021-09-10 02:32:15','2021-09-10 02:32:15'),(45094,45092,188,18,NULL,'2021-09-10 02:32:15','2021-09-10 02:32:15'),(45095,45092,188,18,NULL,'2021-09-10 02:32:15','2021-09-10 02:32:15'),(45096,45092,188,18,NULL,'2021-09-10 02:32:15','2021-09-10 02:32:15'),(45097,45092,188,18,NULL,'2021-09-10 02:32:15','2021-09-10 02:32:15'),(45105,45104,188,18,NULL,'2021-09-10 02:32:28','2021-09-10 02:32:28'),(45106,45104,188,18,NULL,'2021-09-10 02:32:28','2021-09-10 02:32:28'),(45107,45104,188,18,NULL,'2021-09-10 02:32:28','2021-09-10 02:32:28'),(45108,45104,188,18,NULL,'2021-09-10 02:32:28','2021-09-10 02:32:28'),(45109,45104,188,18,NULL,'2021-09-10 02:32:29','2021-09-10 02:32:29'),(45117,45116,188,18,NULL,'2021-09-10 02:33:18','2021-09-10 02:33:18'),(45118,45116,188,18,NULL,'2021-09-10 02:33:18','2021-09-10 02:33:18'),(45119,45116,188,18,NULL,'2021-09-10 02:33:18','2021-09-10 02:33:18'),(45120,45116,188,18,NULL,'2021-09-10 02:33:18','2021-09-10 02:33:18'),(45121,45116,188,18,NULL,'2021-09-10 02:33:18','2021-09-10 02:33:18'),(45129,45128,188,18,NULL,'2021-09-10 02:34:41','2021-09-10 02:34:41'),(45130,45128,188,18,NULL,'2021-09-10 02:34:41','2021-09-10 02:34:41'),(45131,45128,188,18,NULL,'2021-09-10 02:34:41','2021-09-10 02:34:41'),(45132,45128,188,18,NULL,'2021-09-10 02:34:41','2021-09-10 02:34:41'),(45133,45128,188,18,NULL,'2021-09-10 02:34:41','2021-09-10 02:34:41'),(45141,45140,188,18,NULL,'2021-09-10 02:35:45','2021-09-10 02:35:45'),(45142,45140,188,18,NULL,'2021-09-10 02:35:45','2021-09-10 02:35:45'),(45143,45140,188,18,NULL,'2021-09-10 02:35:45','2021-09-10 02:35:45'),(45144,45140,188,18,NULL,'2021-09-10 02:35:45','2021-09-10 02:35:45'),(45145,45140,188,18,NULL,'2021-09-10 02:35:45','2021-09-10 02:35:45'),(45153,45152,188,18,NULL,'2021-09-10 02:36:19','2021-09-10 02:36:19'),(45154,45152,188,18,NULL,'2021-09-10 02:36:19','2021-09-10 02:36:19'),(45155,45152,188,18,NULL,'2021-09-10 02:36:19','2021-09-10 02:36:19'),(45156,45152,188,18,NULL,'2021-09-10 02:36:19','2021-09-10 02:36:19'),(45157,45152,188,18,NULL,'2021-09-10 02:36:19','2021-09-10 02:36:19'),(45165,45164,188,18,NULL,'2021-09-10 02:36:39','2021-09-10 02:36:39'),(45166,45164,188,18,NULL,'2021-09-10 02:36:39','2021-09-10 02:36:39'),(45167,45164,188,18,NULL,'2021-09-10 02:36:39','2021-09-10 02:36:39'),(45168,45164,188,18,NULL,'2021-09-10 02:36:39','2021-09-10 02:36:39'),(45169,45164,188,18,NULL,'2021-09-10 02:36:39','2021-09-10 02:36:39'),(45177,45176,188,18,NULL,'2021-09-10 03:08:20','2021-09-10 03:08:20'),(45178,45176,188,18,NULL,'2021-09-10 03:08:21','2021-09-10 03:08:21'),(45179,45176,188,18,NULL,'2021-09-10 03:08:21','2021-09-10 03:08:21'),(45180,45176,188,18,NULL,'2021-09-10 03:08:21','2021-09-10 03:08:21'),(45181,45176,188,18,NULL,'2021-09-10 03:08:21','2021-09-10 03:08:21'),(45189,45188,188,18,NULL,'2021-09-10 03:10:52','2021-09-10 03:10:52'),(45190,45188,188,18,NULL,'2021-09-10 03:10:53','2021-09-10 03:10:53'),(45191,45188,188,18,NULL,'2021-09-10 03:10:53','2021-09-10 03:10:53'),(45192,45188,188,18,NULL,'2021-09-10 03:10:53','2021-09-10 03:10:53'),(45193,45188,188,18,NULL,'2021-09-10 03:10:53','2021-09-10 03:10:53'),(45201,45200,188,18,NULL,'2021-09-10 03:11:43','2021-09-10 03:11:43'),(45202,45200,188,18,NULL,'2021-09-10 03:11:43','2021-09-10 03:11:43'),(45203,45200,188,18,NULL,'2021-09-10 03:11:43','2021-09-10 03:11:43'),(45204,45200,188,18,NULL,'2021-09-10 03:11:43','2021-09-10 03:11:43'),(45249,44879,188,18,NULL,'2021-09-10 07:17:02','2021-10-01 01:04:09'),(45251,45250,188,18,NULL,'2021-09-10 07:17:03','2021-09-10 07:17:03'),(45252,45250,188,18,NULL,'2021-09-10 07:17:03','2021-09-10 07:17:03'),(45253,45250,188,18,NULL,'2021-09-10 07:17:03','2021-09-10 07:17:03'),(45254,45250,188,18,NULL,'2021-09-10 07:17:03','2021-09-10 07:17:03'),(45255,45250,188,18,NULL,'2021-09-10 07:17:03','2021-09-10 07:17:03'),(45263,45262,188,18,NULL,'2021-09-10 07:17:17','2021-09-10 07:17:17'),(45264,45262,188,18,NULL,'2021-09-10 07:17:17','2021-09-10 07:17:17'),(45265,45262,188,18,NULL,'2021-09-10 07:17:17','2021-09-10 07:17:17'),(45266,45262,188,18,NULL,'2021-09-10 07:17:17','2021-09-10 07:17:17'),(45267,45262,188,18,NULL,'2021-09-10 07:17:17','2021-09-10 07:17:17'),(45275,45274,188,18,NULL,'2021-09-10 07:18:35','2021-09-10 07:18:35'),(45276,45274,188,18,NULL,'2021-09-10 07:18:35','2021-09-10 07:18:35'),(45277,45274,188,18,NULL,'2021-09-10 07:18:35','2021-09-10 07:18:35'),(45278,45274,188,18,NULL,'2021-09-10 07:18:35','2021-09-10 07:18:35'),(45279,45274,188,18,NULL,'2021-09-10 07:18:36','2021-09-10 07:18:36'),(45287,45286,188,18,NULL,'2021-09-10 07:18:53','2021-09-10 07:18:53'),(45288,45286,188,18,NULL,'2021-09-10 07:18:53','2021-09-10 07:18:53'),(45289,45286,188,18,NULL,'2021-09-10 07:18:53','2021-09-10 07:18:53'),(45290,45286,188,18,NULL,'2021-09-10 07:18:53','2021-09-10 07:18:53'),(45291,45286,188,18,NULL,'2021-09-10 07:18:53','2021-09-10 07:18:53'),(45310,45309,188,18,NULL,'2021-09-13 22:24:13','2021-09-13 22:24:13'),(45311,45309,188,18,NULL,'2021-09-13 22:24:13','2021-09-13 22:24:13'),(45312,45309,188,18,NULL,'2021-09-13 22:24:13','2021-09-13 22:24:13'),(45313,45309,188,18,NULL,'2021-09-13 22:24:13','2021-09-13 22:24:13'),(45314,45309,188,18,NULL,'2021-09-13 22:24:14','2021-09-13 22:24:14'),(51531,44879,188,18,NULL,'2021-10-01 01:02:35','2021-10-01 01:04:09'),(51534,51533,188,18,NULL,'2021-10-01 01:02:35','2021-10-01 01:02:35'),(51535,51533,188,18,NULL,'2021-10-01 01:02:36','2021-10-01 01:02:36'),(51536,51533,188,18,NULL,'2021-10-01 01:02:36','2021-10-01 01:02:36'),(51537,51533,188,18,NULL,'2021-10-01 01:02:36','2021-10-01 01:02:36'),(51539,51533,188,18,NULL,'2021-10-01 01:02:36','2021-10-01 01:02:36'),(51540,51533,188,18,NULL,'2021-10-01 01:02:36','2021-10-01 01:02:36'),(51671,51670,188,18,NULL,'2021-10-01 01:03:20','2021-10-01 01:03:20'),(51672,51670,188,18,NULL,'2021-10-01 01:03:20','2021-10-01 01:03:20'),(51673,51670,188,18,NULL,'2021-10-01 01:03:20','2021-10-01 01:03:20'),(51674,51670,188,18,NULL,'2021-10-01 01:03:20','2021-10-01 01:03:20'),(51675,51670,188,18,NULL,'2021-10-01 01:03:20','2021-10-01 01:03:20'),(51676,51670,188,18,NULL,'2021-10-01 01:03:20','2021-10-01 01:03:20'),(51873,51872,188,18,NULL,'2021-10-01 01:04:10','2021-10-01 01:04:10'),(51875,51872,188,18,NULL,'2021-10-01 01:04:10','2021-10-01 01:04:10'),(51876,51872,188,18,NULL,'2021-10-01 01:04:10','2021-10-01 01:04:10'),(51877,51872,188,18,NULL,'2021-10-01 01:04:10','2021-10-01 01:04:10'),(51878,51872,188,18,NULL,'2021-10-01 01:04:10','2021-10-01 01:04:10'),(51879,51872,188,18,NULL,'2021-10-01 01:04:10','2021-10-01 01:04:10'),(73960,73959,188,18,NULL,'2021-11-08 02:53:17','2021-11-08 02:53:17'),(73961,73959,188,18,NULL,'2021-11-08 02:53:18','2021-11-08 02:53:18'),(73962,73959,188,18,NULL,'2021-11-08 02:53:18','2021-11-08 02:53:18'),(73963,73959,188,18,NULL,'2021-11-08 02:53:18','2021-11-08 02:53:18'),(73964,73959,188,18,NULL,'2021-11-08 02:53:18','2021-11-08 02:53:18'),(73965,73959,188,18,NULL,'2021-11-08 02:53:18','2021-11-08 02:53:18'),(73974,73973,188,18,NULL,'2021-11-08 02:53:33','2021-11-08 02:53:33'),(73975,73973,188,18,NULL,'2021-11-08 02:53:34','2021-11-08 02:53:34'),(73976,73973,188,18,NULL,'2021-11-08 02:53:34','2021-11-08 02:53:34'),(73977,73973,188,18,NULL,'2021-11-08 02:53:34','2021-11-08 02:53:34'),(73978,73973,188,18,NULL,'2021-11-08 02:53:34','2021-11-08 02:53:34'),(73979,73973,188,18,NULL,'2021-11-08 02:53:34','2021-11-08 02:53:34'),(73988,73987,188,18,NULL,'2021-11-08 02:54:17','2021-11-08 02:54:17'),(73989,73987,188,18,NULL,'2021-11-08 02:54:17','2021-11-08 02:54:17'),(73990,73987,188,18,NULL,'2021-11-08 02:54:17','2021-11-08 02:54:17'),(73991,73987,188,18,NULL,'2021-11-08 02:54:17','2021-11-08 02:54:17'),(73992,73987,188,18,NULL,'2021-11-08 02:54:17','2021-11-08 02:54:17'),(73993,73987,188,18,NULL,'2021-11-08 02:54:17','2021-11-08 02:54:17'),(74053,74052,188,18,NULL,'2021-11-09 00:40:15','2021-11-09 00:40:15'),(74054,74052,188,18,NULL,'2021-11-09 00:40:16','2021-11-09 00:40:16'),(74055,74052,188,18,NULL,'2021-11-09 00:40:16','2021-11-09 00:40:16'),(74056,74052,188,18,NULL,'2021-11-09 00:40:16','2021-11-09 00:40:16'),(74057,74052,188,18,NULL,'2021-11-09 00:40:16','2021-11-09 00:40:16'),(74058,74052,188,18,NULL,'2021-11-09 00:40:16','2021-11-09 00:40:16'),(74070,74069,188,18,NULL,'2021-11-09 01:19:36','2021-11-09 01:19:36'),(74071,74069,188,18,NULL,'2021-11-09 01:19:36','2021-11-09 01:19:36'),(74072,74069,188,18,NULL,'2021-11-09 01:19:36','2021-11-09 01:19:36'),(74073,74069,188,18,NULL,'2021-11-09 01:19:36','2021-11-09 01:19:36'),(74074,74069,188,18,NULL,'2021-11-09 01:19:36','2021-11-09 01:19:36'),(74075,74069,188,18,NULL,'2021-11-09 01:19:36','2021-11-09 01:19:36'),(74077,74076,188,18,NULL,'2021-11-09 01:20:07','2021-11-09 01:20:07'),(74078,74076,188,18,NULL,'2021-11-09 01:20:07','2021-11-09 01:20:07'),(74079,74076,188,18,NULL,'2021-11-09 01:20:07','2021-11-09 01:20:07'),(74080,74076,188,18,NULL,'2021-11-09 01:20:07','2021-11-09 01:20:07'),(74081,74076,188,18,NULL,'2021-11-09 01:20:07','2021-11-09 01:20:07'),(74082,74076,188,18,NULL,'2021-11-09 01:20:07','2021-11-09 01:20:07'),(74099,74098,188,18,NULL,'2021-11-09 01:32:16','2021-11-09 01:32:16'),(74100,74098,188,18,NULL,'2021-11-09 01:32:16','2021-11-09 01:32:16'),(74101,74098,188,18,NULL,'2021-11-09 01:32:16','2021-11-09 01:32:16'),(74102,74098,188,18,NULL,'2021-11-09 01:32:16','2021-11-09 01:32:16'),(74103,74098,188,18,NULL,'2021-11-09 01:32:17','2021-11-09 01:32:17'),(74104,74098,188,18,NULL,'2021-11-09 01:32:17','2021-11-09 01:32:17'),(74177,74176,188,18,NULL,'2021-11-12 03:23:08','2021-11-12 03:23:08'),(74178,74176,188,18,NULL,'2021-11-12 03:23:08','2021-11-12 03:23:08'),(74179,74176,188,18,NULL,'2021-11-12 03:23:08','2021-11-12 03:23:08'),(74180,74176,188,18,NULL,'2021-11-12 03:23:08','2021-11-12 03:23:08'),(74181,74176,188,18,NULL,'2021-11-12 03:23:08','2021-11-12 03:23:08'),(74182,74176,188,18,NULL,'2021-11-12 03:23:08','2021-11-12 03:23:08'),(74191,74190,188,18,NULL,'2021-11-12 03:23:35','2021-11-12 03:23:35'),(74192,74190,188,18,NULL,'2021-11-12 03:23:35','2021-11-12 03:23:35'),(74193,74190,188,18,NULL,'2021-11-12 03:23:35','2021-11-12 03:23:35'),(74194,74190,188,18,NULL,'2021-11-12 03:23:35','2021-11-12 03:23:35'),(74195,74190,188,18,NULL,'2021-11-12 03:23:35','2021-11-12 03:23:35'),(74196,74190,188,18,NULL,'2021-11-12 03:23:35','2021-11-12 03:23:35'),(74205,74204,188,18,NULL,'2021-11-12 03:23:52','2021-11-12 03:23:52'),(74206,74204,188,18,NULL,'2021-11-12 03:23:52','2021-11-12 03:23:52'),(74207,74204,188,18,NULL,'2021-11-12 03:23:52','2021-11-12 03:23:52'),(74208,74204,188,18,NULL,'2021-11-12 03:23:52','2021-11-12 03:23:52'),(74209,74204,188,18,NULL,'2021-11-12 03:23:52','2021-11-12 03:23:52'),(74210,74204,188,18,NULL,'2021-11-12 03:23:52','2021-11-12 03:23:52'),(74212,74211,188,18,NULL,'2021-11-12 03:24:13','2021-11-12 03:24:13'),(74213,74211,188,18,NULL,'2021-11-12 03:24:13','2021-11-12 03:24:13'),(74214,74211,188,18,NULL,'2021-11-12 03:24:13','2021-11-12 03:24:13'),(74215,74211,188,18,NULL,'2021-11-12 03:24:13','2021-11-12 03:24:13'),(74216,74211,188,18,NULL,'2021-11-12 03:24:13','2021-11-12 03:24:13'),(74217,74211,188,18,NULL,'2021-11-12 03:24:13','2021-11-12 03:24:13'),(74232,74231,188,18,NULL,'2021-11-12 03:41:09','2021-11-12 03:41:09'),(74233,74231,188,18,NULL,'2021-11-12 03:41:09','2021-11-12 03:41:09'),(74234,74231,188,18,NULL,'2021-11-12 03:41:09','2021-11-12 03:41:09'),(74235,74231,188,18,NULL,'2021-11-12 03:41:09','2021-11-12 03:41:09'),(74236,74231,188,18,NULL,'2021-11-12 03:41:09','2021-11-12 03:41:09'),(74237,74231,188,18,NULL,'2021-11-12 03:41:09','2021-11-12 03:41:09'),(74246,74245,188,18,NULL,'2021-11-12 03:41:37','2021-11-12 03:41:37'),(74247,74245,188,18,NULL,'2021-11-12 03:41:37','2021-11-12 03:41:37'),(74248,74245,188,18,NULL,'2021-11-12 03:41:37','2021-11-12 03:41:37'),(74249,74245,188,18,NULL,'2021-11-12 03:41:38','2021-11-12 03:41:38'),(74250,74245,188,18,NULL,'2021-11-12 03:41:38','2021-11-12 03:41:38'),(74251,74245,188,18,NULL,'2021-11-12 03:41:38','2021-11-12 03:41:38'),(74257,74256,188,18,NULL,'2021-11-15 01:17:30','2021-11-15 01:17:30'),(74258,74256,188,18,NULL,'2021-11-15 01:17:30','2021-11-15 01:17:30'),(74259,74256,188,18,NULL,'2021-11-15 01:17:30','2021-11-15 01:17:30'),(74260,74256,188,18,NULL,'2021-11-15 01:17:30','2021-11-15 01:17:30'),(74261,74256,188,18,NULL,'2021-11-15 01:17:30','2021-11-15 01:17:30'),(74262,74256,188,18,NULL,'2021-11-15 01:17:30','2021-11-15 01:17:30'),(74266,74265,188,18,NULL,'2021-11-15 01:17:39','2021-11-15 01:17:39'),(74267,74265,188,18,NULL,'2021-11-15 01:17:39','2021-11-15 01:17:39'),(74268,74265,188,18,NULL,'2021-11-15 01:17:39','2021-11-15 01:17:39'),(74269,74265,188,18,NULL,'2021-11-15 01:17:39','2021-11-15 01:17:39'),(74270,74265,188,18,NULL,'2021-11-15 01:17:39','2021-11-15 01:17:39'),(74271,74265,188,18,NULL,'2021-11-15 01:17:39','2021-11-15 01:17:39'),(97260,97259,76,5,NULL,'2022-01-20 03:43:01','2022-01-20 03:43:01'),(97261,97259,76,5,NULL,'2022-01-20 03:43:01','2022-01-20 03:43:01'),(97262,97259,76,5,NULL,'2022-01-20 03:43:02','2022-01-20 03:43:02'),(97263,97259,76,5,NULL,'2022-01-20 03:43:02','2022-01-20 03:43:02'),(97264,97259,76,5,NULL,'2022-01-20 03:43:02','2022-01-20 03:43:02'),(120624,120623,188,18,NULL,'2022-02-23 02:56:20','2022-02-23 02:56:20'),(120625,120623,188,18,NULL,'2022-02-23 02:56:20','2022-02-23 02:56:20'),(120626,120623,188,18,NULL,'2022-02-23 02:56:20','2022-02-23 02:56:20'),(120627,120623,188,18,NULL,'2022-02-23 02:56:20','2022-02-23 02:56:20'),(120628,120623,188,18,NULL,'2022-02-23 02:56:20','2022-02-23 02:56:20'),(120629,120623,188,18,NULL,'2022-02-23 02:56:20','2022-02-23 02:56:20'),(140130,140129,188,18,NULL,'2022-05-17 23:19:16','2022-05-17 23:19:16'),(140131,140129,188,18,NULL,'2022-05-17 23:19:16','2022-05-17 23:19:16'),(140132,140129,188,18,NULL,'2022-05-17 23:19:16','2022-05-17 23:19:16'),(140133,140129,188,18,NULL,'2022-05-17 23:19:16','2022-05-17 23:19:16'),(140134,140129,188,18,NULL,'2022-05-17 23:19:16','2022-05-17 23:19:16'),(140135,140129,188,18,NULL,'2022-05-17 23:19:16','2022-05-17 23:19:16'),(141617,141616,76,5,NULL,'2022-07-10 23:07:09','2022-07-10 23:07:09'),(141618,141616,76,5,NULL,'2022-07-10 23:07:09','2022-07-10 23:07:09'),(141619,141616,76,5,NULL,'2022-07-10 23:07:09','2022-07-10 23:07:09'),(141620,141616,76,5,NULL,'2022-07-10 23:07:09','2022-07-10 23:07:09'),(141621,141616,76,5,NULL,'2022-07-10 23:07:09','2022-07-10 23:07:09'),(141915,141642,76,5,NULL,'2022-08-08 23:41:59','2022-08-08 23:41:59'),(141916,141642,76,5,NULL,'2022-08-08 23:41:59','2022-08-08 23:41:59'),(141917,141642,76,5,NULL,'2022-08-08 23:41:59','2022-08-08 23:41:59'),(141918,141642,76,5,NULL,'2022-08-08 23:41:59','2022-08-08 23:41:59'),(141919,141642,76,5,NULL,'2022-08-08 23:41:59','2022-08-08 23:41:59'),(142040,142039,76,5,NULL,'2022-08-25 01:33:44','2022-08-25 01:33:44'),(142642,142039,76,5,NULL,'2022-09-29 01:53:47','2022-09-29 01:53:47'),(142643,142039,76,5,NULL,'2022-09-29 01:53:47','2022-09-29 01:53:47'),(142644,142039,76,5,NULL,'2022-09-29 01:53:47','2022-09-29 01:53:47'),(142645,142039,76,5,NULL,'2022-09-29 01:53:47','2022-09-29 01:53:47'),(142947,142716,76,5,NULL,'2022-11-14 04:13:39','2022-11-14 04:13:39'),(142948,142716,76,5,NULL,'2022-11-14 04:13:39','2022-11-14 04:13:39'),(142949,142716,76,5,NULL,'2022-11-14 04:13:39','2022-11-14 04:13:39'),(142950,142716,76,5,NULL,'2022-11-14 04:13:39','2022-11-14 04:13:39'),(142951,142716,76,5,NULL,'2022-11-14 04:13:39','2022-11-14 04:13:39');
/*!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;
INSERT INTO `matrixblocks_owners` VALUES (16574,16573,1),(16579,16578,1),(16581,16580,1),(16590,16589,1),(16591,16589,2),(16593,16592,1),(16594,16592,2),(16596,16595,1),(16597,16595,2),(16605,16604,1),(16606,16604,2),(16608,16607,1),(16609,16607,2),(16621,16620,1),(16622,16620,2),(16623,16620,3),(16639,16638,1),(16640,16638,2),(16641,16638,3),(16655,16654,1),(16656,16654,2),(16657,16654,3),(16658,16654,4),(16744,16571,1),(16745,16571,2),(16746,16571,3),(16747,16571,4),(16748,16571,5),(16749,16571,6),(16750,16571,7),(16751,16571,8),(16752,16571,9),(16753,16571,10),(16754,16571,11),(16755,16571,12),(16757,16756,1),(16758,16756,2),(16759,16756,3),(16760,16756,4),(16761,16756,5),(16762,16756,6),(16763,16756,7),(16764,16756,8),(16765,16756,9),(16766,16756,10),(16767,16756,11),(16768,16756,12),(16770,16769,1),(16771,16769,2),(16772,16769,3),(16773,16769,4),(16774,16769,5),(16775,16769,6),(16776,16769,7),(16777,16769,8),(16778,16769,9),(16779,16769,10),(16780,16769,11),(16781,16769,12),(16783,16782,1),(16784,16782,2),(16785,16782,3),(16786,16782,4),(16787,16782,5),(16788,16782,6),(16789,16782,7),(16790,16782,8),(16791,16782,9),(16792,16782,10),(16793,16782,11),(16794,16782,12),(16797,16796,1),(16798,16796,2),(16799,16796,3),(16800,16796,4),(16801,16796,5),(16802,16796,6),(16803,16796,7),(16804,16796,8),(16805,16796,9),(16806,16796,10),(16807,16796,11),(16808,16796,12),(16811,16810,1),(16812,16810,2),(16813,16810,3),(16814,16810,4),(16815,16810,5),(16816,16810,6),(16817,16810,7),(16818,16810,8),(16819,16810,9),(16820,16810,10),(16821,16810,11),(16822,16810,12),(16831,16830,1),(16833,16832,1),(16837,16836,1),(16842,16841,1),(16845,16844,1),(16846,16844,2),(16849,16848,1),(16850,16848,2),(16853,16852,1),(16854,16852,2),(16857,16856,1),(16858,16856,2),(16862,16861,1),(16863,16861,2),(17876,17875,1),(17877,17875,2),(17878,17875,3),(17879,17875,4),(17880,17875,5),(17882,17881,1),(17883,17881,2),(17884,17881,3),(17885,17881,4),(17886,17881,5),(17888,17887,2),(17889,17887,1),(17890,17887,3),(17891,17887,4),(17892,17887,5),(17894,17893,1),(17895,17893,2),(17896,17893,3),(17897,17893,4),(17898,17893,5),(17900,17899,1),(17901,17899,2),(17902,17899,3),(17903,17899,4),(17904,17899,5),(17905,1,1),(17906,1,2),(17907,1,3),(17908,1,4),(17909,1,5),(17922,17921,1),(17923,17921,2),(17924,17921,3),(17925,17921,4),(17926,17921,5),(17935,17934,1),(17936,17934,2),(17937,17934,3),(17938,17934,4),(17939,17934,5),(17942,17941,1),(17943,17941,2),(17944,17941,3),(17945,17941,4),(17946,17941,5),(17959,17958,1),(17960,17958,2),(17961,17958,3),(17962,17958,4),(17963,17958,5),(17972,17954,1),(17973,17954,2),(17974,17954,3),(17975,17954,4),(17976,17954,5),(17978,17977,1),(17979,17977,2),(17980,17977,3),(17981,17977,4),(17982,17977,5),(17983,17977,6),(17984,17977,7),(17985,17977,8),(17986,17977,9),(17987,17977,10),(17988,17977,11),(17989,17977,12),(17991,17956,1),(17992,17956,2),(17993,17956,3),(17994,17956,4),(17995,17956,5),(17997,17996,1),(17998,17996,2),(17999,17996,3),(18000,17996,4),(18001,17996,5),(18004,18003,1),(18005,18003,2),(18022,18021,1),(18023,18021,2),(18024,18021,3),(18025,18021,4),(18028,18027,1),(18029,18027,2),(18030,18027,3),(18031,18027,4),(18032,18027,5),(18035,18034,1),(18036,18034,2),(18037,18034,3),(18038,18034,4),(18039,18034,5),(18052,18051,1),(18053,18051,2),(18054,18051,3),(18055,18051,4),(18056,18051,5),(18072,18071,1),(18073,18071,2),(18074,18071,3),(18075,18071,4),(18076,18071,5),(18078,18077,1),(18079,18077,2),(18080,18077,3),(18081,18077,4),(18082,18077,5),(18098,18097,1),(18099,18097,2),(18100,18097,3),(18101,18097,4),(18102,18097,5),(18103,18097,6),(18339,18338,1),(18340,18338,2),(18341,18338,3),(18342,18338,4),(18343,18338,5),(18344,18338,6),(18345,18338,7),(18346,18338,8),(18347,18338,9),(18349,18348,1),(18350,18348,2),(18351,18348,3),(18352,18348,4),(18353,18348,5),(18354,18348,6),(18355,18348,7),(18356,18348,8),(18357,18348,9),(18370,18369,1),(18371,18369,2),(18539,18538,1),(18540,18538,2),(18541,18538,3),(18542,18538,4),(18543,18538,5),(18545,18538,6),(18551,18550,1),(18552,18550,2),(18553,18550,3),(18554,18550,4),(18555,18550,5),(18557,18550,6),(18563,18562,1),(18564,18562,2),(18565,18562,3),(18566,18562,4),(18567,18562,5),(18568,18562,6),(18569,18562,7),(18570,18562,8),(18571,18562,9),(18573,18572,1),(18574,18572,2),(18575,18572,3),(18576,18572,4),(18577,18572,5),(18579,18572,6),(18627,18626,1),(18628,18626,2),(18629,18626,3),(18630,18626,4),(18631,18626,5),(18633,18632,1),(18634,18632,2),(18635,18632,3),(18636,18632,4),(18637,18632,5),(19015,19014,1),(19017,19014,2),(19018,19014,3),(19019,19014,4),(19020,19014,5),(19021,19014,6),(19022,19014,7),(19023,19014,8),(19024,19014,9),(19025,19014,10),(19026,19014,11),(19027,19014,12),(19028,19014,13),(19029,19014,14),(19030,19014,15),(19031,19014,16),(19032,19014,17),(19034,19033,1),(19036,19033,2),(19037,19033,3),(19038,19033,4),(19039,19033,5),(19040,19033,6),(19041,19033,7),(19042,19033,8),(19043,19033,9),(19044,19033,10),(19045,19033,11),(19046,19033,12),(19047,19033,13),(19048,19033,14),(19049,19033,15),(19050,19033,16),(19051,19033,17),(19094,19093,1),(19095,19093,2),(19096,19093,3),(19097,19093,4),(19098,19093,5),(19100,19093,6),(19106,19105,1),(19107,19105,2),(19108,19105,3),(19109,19105,4),(19110,19105,5),(19112,19105,6),(19137,19136,1),(19138,19136,2),(19139,19136,3),(19140,19136,4),(19141,19136,5),(19142,19136,6),(19143,19136,7),(19144,19136,8),(19145,19136,9),(19147,19146,1),(19148,19146,2),(19149,19146,3),(19150,19146,4),(19151,19146,5),(19152,19146,6),(19153,19146,7),(19154,19146,8),(19155,19146,9),(21309,21308,1),(21335,21297,1),(21337,21336,1),(21339,21338,1),(21772,20379,1),(21773,20379,2),(21779,20379,3),(21780,20379,4),(21782,20379,5),(21790,20379,6),(21797,20379,7),(21937,21936,1),(21938,21936,2),(21939,21936,3),(21940,21936,4),(21941,21936,5),(21942,21936,6),(21943,21936,7),(21944,21936,8),(21945,21936,9),(21946,21936,10),(21947,21936,11),(21948,21936,12),(21961,21960,1),(21962,21960,2),(21963,21960,3),(21964,21960,4),(21965,21960,5),(21966,21960,6),(21974,21973,1),(21975,21973,2),(21976,21973,3),(21977,21973,4),(21978,21973,5),(22007,22006,1),(22008,22006,2),(22009,22006,3),(22042,22041,1),(22043,22041,2),(22044,22041,3),(22045,22041,4),(22052,22051,1),(22053,22051,2),(22054,22051,3),(22055,22051,4),(22061,22060,1),(22062,22060,2),(22063,22060,3),(22100,22099,1),(22102,22099,2),(22103,22099,3),(22104,22099,4),(22105,22099,5),(22106,22099,6),(22107,22099,7),(22108,22099,8),(22109,22099,9),(22110,22099,10),(22111,22099,11),(22112,22099,12),(22113,22099,13),(22114,22099,14),(22115,22099,15),(22116,22099,16),(22117,22099,17),(22140,22139,1),(22142,22139,2),(22143,22139,3),(22144,22139,4),(22145,22139,5),(22146,22139,6),(22147,22139,7),(22148,22139,8),(22149,22139,9),(22150,22139,10),(22151,22139,11),(22152,22139,12),(22153,22139,13),(22154,22139,14),(22155,22139,15),(22156,22139,16),(22157,22139,17),(22196,22195,1),(22197,22195,2),(22198,22195,3),(22199,22195,4),(22206,22205,1),(22207,22205,2),(22208,22205,3),(22209,22205,4),(22267,22266,1),(22268,22266,2),(22269,22266,3),(22280,22279,1),(22281,22279,2),(22282,22279,3),(22297,22296,1),(22298,22296,2),(22299,22296,3),(22301,22296,4),(22312,22311,1),(22313,22311,2),(22314,22311,3),(22316,22311,4),(22327,22326,1),(22328,22326,2),(22329,22326,3),(22331,22326,4),(22333,22332,1),(22334,22332,2),(22335,22332,3),(22337,22332,4),(22376,22375,1),(22377,22375,2),(22378,22375,3),(22380,22375,4),(22381,22375,5),(22382,22375,6),(22384,22375,7),(22399,22398,1),(22400,22398,2),(22401,22398,3),(22403,22398,4),(22404,22398,5),(22405,22398,6),(22407,22398,7),(22421,22420,1),(22422,22420,2),(22423,22420,3),(22425,22420,4),(22426,22420,5),(22427,22420,6),(22429,22420,7),(38149,30433,1),(38150,30433,2),(38151,30433,3),(38152,30433,4),(38153,30433,5),(44967,44879,3),(44969,44879,4),(44970,44879,5),(44971,44879,6),(44973,44972,1),(44974,44972,2),(44975,44972,3),(44976,44972,4),(44977,44972,5),(44997,44996,1),(44998,44996,2),(44999,44996,3),(45000,44996,4),(45001,44996,5),(45009,45008,1),(45010,45008,2),(45011,45008,3),(45012,45008,4),(45013,45008,5),(45021,45020,1),(45022,45020,2),(45023,45020,3),(45024,45020,4),(45025,45020,5),(45033,45032,1),(45034,45032,2),(45035,45032,3),(45036,45032,4),(45037,45032,5),(45045,45044,1),(45046,45044,2),(45047,45044,3),(45048,45044,4),(45049,45044,5),(45057,45056,1),(45058,45056,2),(45059,45056,3),(45060,45056,4),(45061,45056,5),(45069,45068,1),(45070,45068,2),(45071,45068,3),(45072,45068,4),(45073,45068,5),(45081,45080,1),(45082,45080,2),(45083,45080,3),(45084,45080,4),(45085,45080,5),(45093,45092,1),(45094,45092,2),(45095,45092,3),(45096,45092,4),(45097,45092,5),(45105,45104,1),(45106,45104,2),(45107,45104,3),(45108,45104,4),(45109,45104,5),(45117,45116,1),(45118,45116,2),(45119,45116,3),(45120,45116,4),(45121,45116,5),(45129,45128,1),(45130,45128,2),(45131,45128,3),(45132,45128,4),(45133,45128,5),(45141,45140,1),(45142,45140,2),(45143,45140,3),(45144,45140,4),(45145,45140,5),(45153,45152,1),(45154,45152,2),(45155,45152,3),(45156,45152,4),(45157,45152,5),(45165,45164,1),(45166,45164,2),(45167,45164,3),(45168,45164,4),(45169,45164,5),(45177,45176,1),(45178,45176,2),(45179,45176,3),(45180,45176,4),(45181,45176,5),(45189,45188,1),(45190,45188,2),(45191,45188,3),(45192,45188,4),(45193,45188,5),(45201,45200,1),(45202,45200,2),(45203,45200,3),(45204,45200,4),(45249,44879,2),(45251,45250,1),(45252,45250,2),(45253,45250,3),(45254,45250,4),(45255,45250,5),(45263,45262,1),(45264,45262,2),(45265,45262,3),(45266,45262,4),(45267,45262,5),(45275,45274,1),(45276,45274,2),(45277,45274,3),(45278,45274,4),(45279,45274,5),(45287,45286,1),(45288,45286,2),(45289,45286,3),(45290,45286,4),(45291,45286,5),(45310,45309,1),(45311,45309,2),(45312,45309,3),(45313,45309,4),(45314,45309,5),(51531,44879,1),(51534,51533,1),(51535,51533,2),(51536,51533,3),(51537,51533,4),(51539,51533,5),(51540,51533,6),(51671,51670,1),(51672,51670,2),(51673,51670,3),(51674,51670,4),(51675,51670,5),(51676,51670,6),(51873,51872,1),(51875,51872,2),(51876,51872,3),(51877,51872,4),(51878,51872,5),(51879,51872,6),(73960,73959,1),(73961,73959,2),(73962,73959,3),(73963,73959,4),(73964,73959,5),(73965,73959,6),(73974,73973,1),(73975,73973,2),(73976,73973,3),(73977,73973,4),(73978,73973,5),(73979,73973,6),(73988,73987,1),(73989,73987,2),(73990,73987,3),(73991,73987,4),(73992,73987,5),(73993,73987,6),(74053,74052,1),(74054,74052,2),(74055,74052,3),(74056,74052,4),(74057,74052,5),(74058,74052,6),(74070,74069,1),(74071,74069,2),(74072,74069,3),(74073,74069,4),(74074,74069,5),(74075,74069,6),(74077,74076,1),(74078,74076,2),(74079,74076,3),(74080,74076,4),(74081,74076,5),(74082,74076,6),(74099,74098,1),(74100,74098,2),(74101,74098,3),(74102,74098,4),(74103,74098,5),(74104,74098,6),(74177,74176,1),(74178,74176,2),(74179,74176,3),(74180,74176,4),(74181,74176,5),(74182,74176,6),(74191,74190,1),(74192,74190,2),(74193,74190,3),(74194,74190,4),(74195,74190,5),(74196,74190,6),(74205,74204,1),(74206,74204,2),(74207,74204,3),(74208,74204,4),(74209,74204,5),(74210,74204,6),(74212,74211,1),(74213,74211,2),(74214,74211,3),(74215,74211,4),(74216,74211,5),(74217,74211,6),(74232,74231,1),(74233,74231,2),(74234,74231,3),(74235,74231,4),(74236,74231,5),(74237,74231,6),(74246,74245,1),(74247,74245,2),(74248,74245,3),(74249,74245,4),(74250,74245,5),(74251,74245,6),(74257,74256,1),(74258,74256,2),(74259,74256,3),(74260,74256,4),(74261,74256,5),(74262,74256,6),(74266,74265,1),(74267,74265,2),(74268,74265,3),(74269,74265,4),(74270,74265,5),(74271,74265,6),(97260,97259,3),(97261,97259,2),(97262,97259,1),(97263,97259,5),(97264,97259,4),(120624,120623,1),(120625,120623,2),(120626,120623,3),(120627,120623,4),(120628,120623,5),(120629,120623,6),(140130,140129,1),(140130,140136,1),(140131,140129,2),(140131,140136,2),(140132,140129,3),(140132,140136,3),(140133,140129,4),(140133,140136,4),(140134,140129,5),(140134,140136,5),(140135,140129,6),(140135,140136,6),(141617,141616,1),(141618,141616,2),(141619,141616,3),(141620,141616,4),(141621,141616,5),(141915,141642,1),(141916,141642,2),(141917,141642,3),(141918,141642,4),(141919,141642,5),(142040,142039,1),(142642,142039,2),(142643,142039,3),(142644,142039,4),(142645,142039,5),(142947,142716,1),(142948,142716,2),(142949,142716,3),(142950,142716,4),(142951,142716,5);
/*!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;
INSERT INTO `matrixblocktypes` VALUES (1,59,7,'Lead text','leadText',1,'2021-05-14 06:12:30','2021-05-14 06:12:30','1730f29f-dfa8-4229-867a-844a7a23c120'),(2,59,8,'Heading and text','headingAndText',2,'2021-05-14 06:12:30','2021-05-14 06:12:30','6bf3dbc1-ec4b-4a10-896f-37727eed41d0'),(3,59,9,'Full width image','fullWidthImage',3,'2021-05-14 06:19:00','2021-05-14 06:19:00','6c95d4e7-93ce-402c-a1b9-684e2bf42065'),(5,76,14,'Question','question',1,'2021-05-25 05:48:21','2021-05-25 05:48:21','e4d4d511-380f-4c4a-b432-9296ba9d0bb2'),(6,59,19,'Image and text','imageAndText',4,'2021-06-03 05:26:29','2021-06-09 23:37:45','3a7a615c-5c19-4d35-bc53-13c7cfa59291'),(7,59,21,'Video grid','videoGrid',5,'2021-06-09 23:37:45','2021-06-09 23:37:45','7b0e68fa-80c5-4fc1-9936-d797141eb9df'),(8,121,25,'Full width heading and text','fullWidthHeadingAndText',1,'2021-06-21 04:26:33','2021-06-21 04:26:33','2cd59aa2-1868-419f-8385-f7dfbb2a9e0b'),(9,121,27,'Red background grid list','redBackgroundGridList',2,'2021-06-21 04:26:33','2021-06-21 04:26:33','07b5b98c-b69c-4c6a-96c2-3812d50793da'),(10,121,28,'People grid','peopleGrid',3,'2021-06-21 04:26:33','2021-06-21 04:26:33','a717fd1e-e201-40af-a6ad-93f6c3492eac'),(11,121,30,'Heading left text right','headingLeftTextRight',4,'2021-06-21 04:26:34','2021-06-21 04:26:34','41b88cf5-a28a-4471-8fe0-f33496141d18'),(12,121,32,'Logo cloud','logoCloud',5,'2021-06-21 04:26:34','2021-06-21 04:26:34','9c8e3dce-6c96-444a-adc7-7a811e3e2422'),(13,152,35,'Heading','heading',1,'2021-07-12 06:54:08','2021-07-12 06:54:08','6b5a81ec-42b1-4118-9fa5-8b6360723b30'),(14,152,36,'Text','text',2,'2021-07-12 06:56:38','2021-07-12 06:56:38','f5d467dc-d887-430b-ac23-9ab8f97a2321'),(15,158,37,'Buttons','buttons',1,'2021-07-12 23:06:24','2021-07-12 23:06:24','a0c5cc5d-7235-4c9b-804b-23a836279f84'),(16,152,41,'Text grid','textGrid',3,'2021-07-13 00:27:14','2021-07-13 00:27:14','63e3d1ea-0cba-42ce-934a-2f0c718081e5'),(17,177,45,'Videos','videos',1,'2021-07-16 04:37:13','2021-07-16 04:37:13','85ab7ac3-f71c-43d5-9d93-0c661816749f'),(18,188,51,'Homepage slideshow','homepageSlideshow',1,'2021-09-10 02:00:16','2021-09-10 02:00:16','e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6'),(19,213,69,'Accordion block','accordionBlock',1,'2022-06-05 23:23:58','2022-06-05 23:23:58','43d21cba-9078-4e32-9e49-fa0d66991417');
/*!40000 ALTER TABLE `matrixblocktypes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `matrixcontent_accordioncontent`
--

LOCK TABLES `matrixcontent_accordioncontent` WRITE;
/*!40000 ALTER TABLE `matrixcontent_accordioncontent` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `matrixcontent_accordioncontent` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `matrixcontent_bodycodes`
--

LOCK TABLES `matrixcontent_bodycodes` WRITE;
/*!40000 ALTER TABLE `matrixcontent_bodycodes` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `matrixcontent_bodycodes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `matrixcontent_buttons`
--

LOCK TABLES `matrixcontent_buttons` WRITE;
/*!40000 ALTER TABLE `matrixcontent_buttons` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `matrixcontent_buttons` VALUES (1896,18030,1,'2020-03-03 04:28:43','2020-03-03 04:28:43','08f15c3b-1b90-4019-aa03-bf2579cf7593','Watch videos','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/diseases-infection/immunisation/service-providers/instructional-videos-australian-immunisation-register',0,'solid'),(1897,18032,1,'2020-03-03 04:28:43','2020-03-03 04:28:43','e7d4cde3-2167-4339-89f0-121fea7c09f1','Watch videos','https://metronorth.health.qld.gov.au/hospitals-services/public-health-unit',1,'solid'),(1898,18035,1,'2020-03-03 04:28:43','2020-03-03 04:28:43','edb22c33-3b4b-4ce8-880f-4cf8efeea2fc','View the website','http://www.medicalmums.com.au/',0,'solid'),(1899,18053,1,'2020-03-03 04:29:04','2020-03-03 04:29:04','0e5e8547-67ad-44cf-b894-1924ccf63df2','Watch videos','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/diseases-infection/immunisation/service-providers/instructional-videos-australian-immunisation-register',0,'solid'),(1900,18055,1,'2020-03-03 04:29:04','2020-03-03 04:29:04','5d626058-a929-4436-8dd7-a95699d65d6e','Watch videos','https://metronorth.health.qld.gov.au/hospitals-services/public-health-unit',1,'solid'),(2090,20146,1,'2020-03-06 01:12:10','2020-03-06 01:12:10','a7281d95-1476-4aaf-b096-16c895701de4','Contact Us','',0,'solid'),(2095,20188,1,'2020-03-06 01:14:57','2020-03-06 01:14:57','0fe11d04-8e46-4a66-ba79-5cb4d6d6f9d9','Email us','',0,'solid'),(2194,21920,1,'2020-04-24 01:27:37','2020-04-24 01:27:37','47146ef5-be30-42c0-970f-a33dcdf1aaa5','Events','',0,'link'),(2195,21921,1,'2020-04-24 01:27:37','2020-04-24 01:27:37','59c81b9d-1b35-4ff0-8bd3-7c9b1ec8803b','News','',0,'link'),(2196,21922,1,'2020-04-24 01:27:37','2020-04-24 01:27:37','15569943-80eb-4a4f-84fb-2b2606c9fc26','Resources','',0,'link'),(2199,21999,1,'2020-04-24 05:45:41','2020-04-24 05:45:41','cd27b062-109e-439d-a80b-eb8216c8c5cd','Learn more','https://metronorth.health.qld.gov.au/about-us/publications/brisbane-north-phn-mnhhs',1,'solid'),(2250,22196,1,'2020-04-24 06:17:38','2020-04-24 06:18:24','9ea8450a-aa8f-4227-96c6-8e46fb2e7485','View the joint protocol','https://metronorth.health.qld.gov.au/about-us/publications/brisbane-north-phn-mnhhs',1,'solid'),(2271,22444,1,'2020-04-28 00:22:23','2020-04-28 00:22:23','0c4c39da-f745-4072-9ed4-c8f16bada8a0','News','',0,'link'),(2273,22449,1,'2020-04-28 00:22:23','2020-04-28 00:22:23','ead6e2c5-fa79-449c-ad2f-321609c94891','Contribute an event','',0,'solid'),(2274,22455,1,'2020-04-28 00:23:29','2020-04-28 00:23:29','7e0f74cf-f5c3-414a-b45c-d56a5eb827f9','Events','',0,'link'),(2277,22461,1,'2020-04-28 00:23:29','2020-04-28 00:23:29','01911368-5def-45ba-974a-ac000298204a','Contribute an event','',0,'solid'),(2290,22513,1,'2020-04-28 02:53:03','2020-04-28 02:53:03','f155642e-03f5-4dc9-b608-edcd917e3d66','Factsheet','',0,'solid'),(2868,27886,1,'2020-05-12 00:15:04','2020-05-12 00:15:04','8bd7a8bf-1394-4ab3-adb2-2ae7931d1d19','Email','mailto:healthpathways@brisbanenorthphn.org.au',1,'solid'),(2881,27988,1,'2020-05-12 02:46:14','2020-05-12 02:46:14','04bec4ce-1928-4eec-ae01-4b9e865f4304','Best practice','',0,'link'),(2883,27990,1,'2020-05-12 02:46:14','2020-05-12 02:46:14','73178ef7-eb68-4363-b319-35719cdba0c1','Zed Med','',0,'link'),(5603,44983,1,'2020-05-22 05:25:50','2020-05-22 05:25:50','47a21e46-5b7e-4706-9a82-1743dc3d0cb3','More information','https://metronorth.health.qld.gov.au/wp-content/uploads/2017/11/CPI-FAQ-V2.pdf',1,'solid'),(5604,44985,1,'2020-05-22 05:25:50','2020-05-22 05:25:50','66511316-0b2f-4c4e-91d6-a97e3b513855','Download','https://metronorth.health.qld.gov.au/wp-content/uploads/2017/11/CPI-FAQ-V2.pdf',1,'solid'),(5611,44996,1,'2020-05-22 05:25:50','2020-05-22 05:25:50','4067f649-e644-43eb-a045-35a717053162','MD','',1,'outline'),(5612,44997,1,'2020-05-22 05:25:50','2020-05-22 05:25:50','7d23b273-23da-4866-a7c0-089c2aec5e33','Best Practice','',1,'outline'),(5613,44998,1,'2020-05-22 05:25:50','2020-05-22 05:25:50','f5e2115d-4230-4ba9-a3ce-db234ee2b115','PractiX','',1,'outline'),(5614,44999,1,'2020-05-22 05:25:50','2020-05-22 05:25:50','4aa3b6c5-f0a2-41a1-91b1-df34f0bc000e','ZedMed','',0,'outline'),(5615,45000,1,'2020-05-22 05:25:50','2020-05-22 05:25:50','fd3b5a58-385f-4bcf-a6c2-2f4b45470eaf','TPCH specialists','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',0,'outline'),(5621,45008,1,'2020-05-22 05:25:50','2020-05-22 05:25:50','c08e89c9-d8bf-4b1d-b654-3b7e4608aba0','MD','',1,'outline'),(5622,45009,1,'2020-05-22 05:25:50','2020-05-22 05:25:50','72ff071c-4db2-4109-99ed-5bb03697f40b','Best Practice','',1,'outline'),(5623,45010,1,'2020-05-22 05:25:50','2020-05-22 05:25:50','dbcd59c0-6686-4e2e-9007-32f6cea087ee','PractiX','',1,'outline'),(5624,45011,1,'2020-05-22 05:25:50','2020-05-22 05:25:50','c7c87cf3-dd7b-484b-bb1f-53660f57c80b','ZedMed','',1,'outline'),(5625,45012,1,'2020-05-22 05:25:50','2020-05-22 05:25:50','d11d28c2-542e-46fb-a8d8-cabe27126539','CH specialists','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'outline'),(5626,45023,1,'2020-05-22 05:25:50','2020-05-22 05:25:50','2422e5a4-e8b8-41d4-80fb-f99a11ca6993','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/My-Health-for-Life-MD-V2-0.rtf?mtime=20200520120811&focal=none',1,'link'),(5627,45024,1,'2020-05-22 05:25:50','2020-05-22 05:25:50','4720a879-1942-4064-82eb-0e23787954ad','BP','https://d1jydvs1x4rbvt.cloudfront.net/downloads/My-Health-For-Life-BP-V2-0.rtf?mtime=20200520120841&focal=none',1,'link'),(5628,45025,1,'2020-05-22 05:25:50','2020-05-22 05:25:50','86b29ebf-6f00-4730-a2eb-d0ec1b6a9e50','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/My-Health-For-Life-ZM-V2-0.rtf?mtime=20200520120901&focal=none',1,'link'),(5648,45094,1,'2020-05-22 05:51:41','2020-05-22 05:51:41','4d2af4fd-e075-4edf-bdc2-737689b5c56e','Importing instructions','',1,'solid'),(5649,45096,1,'2020-05-22 05:51:41','2020-05-22 05:51:41','cd26735c-b60e-4ed4-9350-f920e6c8ccfc','MD','',1,'outline'),(5650,45097,1,'2020-05-22 05:51:41','2020-05-22 05:51:41','d5f33039-0adb-404d-a017-dcc00ff67eeb','Best Practice','',1,'outline'),(5656,45104,1,'2020-05-22 05:51:41','2020-05-22 05:51:41','b023b164-fe94-4e06-b5fb-ffb196a769f1','PractiX','',1,'outline'),(5657,45105,1,'2020-05-22 05:51:41','2020-05-22 05:51:41','9305cd32-e137-420c-8712-b681d1835fea','ZedMed','',0,'outline'),(5658,45106,1,'2020-05-22 05:51:41','2020-05-22 05:51:41','9d27cc64-6536-495d-8d3a-dfc87b479ac9','Specialists','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',0,'outline'),(5659,45108,1,'2020-05-22 05:51:41','2020-05-22 05:51:41','852b54e9-70b9-439b-bd43-5d355c40b563','MD','',1,'outline'),(5660,45109,1,'2020-05-22 05:51:41','2020-05-22 05:51:41','fe2800c2-f7bb-445b-b46d-e4dbbdda586b','Best Practice','',1,'outline'),(5666,45116,1,'2020-05-22 05:51:41','2020-05-22 05:51:41','aeff3e56-26e0-4642-8923-b21acf2cee22','PractiX','',1,'outline'),(5667,45117,1,'2020-05-22 05:51:41','2020-05-22 05:51:41','89982468-9b9a-4797-a249-70e402e73fdf','ZedMed','',1,'outline'),(5668,45118,1,'2020-05-22 05:51:41','2020-05-22 05:51:41','c2e25314-86eb-4e51-9f1d-19319e5a1f59','Specialists','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'outline'),(5669,45120,1,'2020-05-22 05:51:42','2020-05-22 05:51:42','d32a243b-09ad-433f-9cda-5aa406bccb4e','MD','',1,'outline'),(5670,45121,1,'2020-05-22 05:51:42','2020-05-22 05:51:42','d6c69dc8-1306-43df-aa02-d80304da596a','Best Practice','',1,'outline'),(5676,45128,1,'2020-05-22 05:51:42','2020-05-22 05:51:42','32c2c195-57bb-4ecb-a058-beb646ceab18','PractiX','',1,'outline'),(5677,45129,1,'2020-05-22 05:51:42','2020-05-22 05:51:42','f247a6e4-14e6-4939-b545-b0454c882e43','ZedMed','',1,'outline'),(5678,45130,1,'2020-05-22 05:51:42','2020-05-22 05:51:42','b1562988-3787-430b-8eb1-d33d80649c10','Specialists','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'outline'),(5679,45132,1,'2020-05-22 05:51:42','2020-05-22 05:51:42','ddff0cad-953d-4ba4-b3b9-13553ea67c4d','MD','',1,'outline'),(5680,45133,1,'2020-05-22 05:51:42','2020-05-22 05:51:42','c62446ee-f0ec-4da1-9643-46029606b972','Best Practice','',1,'outline'),(5691,45164,1,'2020-05-22 05:53:39','2020-05-22 05:53:39','c4271046-cd96-414a-be60-6065f8310f46','Importing instructions','',1,'outline'),(5692,45166,1,'2020-05-22 05:53:39','2020-05-22 05:53:39','1b25b3ae-f183-4663-bda6-f255e94a6abd','MD','',1,'outline'),(5693,45167,1,'2020-05-22 05:53:39','2020-05-22 05:53:39','b1c537ed-33d8-4691-954c-17db30519be7','Best Practice','',1,'outline'),(5694,45168,1,'2020-05-22 05:53:39','2020-05-22 05:53:39','dba5a153-67bb-4072-bc3c-4bda666ccfb0','PractiX','',1,'outline'),(5695,45169,1,'2020-05-22 05:53:39','2020-05-22 05:53:39','32d55508-f560-47c7-b41f-842f9b0f2d7d','ZedMed','',1,'outline'),(5701,45176,1,'2020-05-22 05:53:39','2020-05-22 05:53:39','5ee47ab0-00d0-4a2f-8c7d-c65037752bf0','Specialists','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',0,'outline'),(5702,45178,1,'2020-05-22 05:53:39','2020-05-22 05:53:39','ba23dc70-94a1-4af2-b75b-752615fac069','MD','',1,'outline'),(5703,45179,1,'2020-05-22 05:53:39','2020-05-22 05:53:39','fb4cedb0-e5b2-41d5-b083-01bd6122b872','Best Practice','',1,'outline'),(5704,45180,1,'2020-05-22 05:53:39','2020-05-22 05:53:39','1e73d833-39ba-4ec4-a68e-e1c1e757243f','PractiX','',1,'outline'),(5705,45181,1,'2020-05-22 05:53:39','2020-05-22 05:53:39','e2b6de01-948d-422a-8b3b-111c547c5f90','ZedMed','',1,'outline'),(5711,45188,1,'2020-05-22 05:53:39','2020-05-22 05:53:39','6d05f50b-9b5c-4093-9e5c-fbc2c3e14893','Specialists','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'outline'),(5712,45190,1,'2020-05-22 05:53:39','2020-05-22 05:53:39','38271b40-7e0f-47ad-89af-dd1b70826967','MD','',1,'outline'),(5713,45191,1,'2020-05-22 05:53:39','2020-05-22 05:53:39','ffdc1314-2228-425e-8753-c213d46d079d','Best Practice','',1,'outline'),(5714,45192,1,'2020-05-22 05:53:39','2020-05-22 05:53:39','9e0e55df-886d-448a-b75d-fa4497bc895f','PractiX','',1,'outline'),(5715,45193,1,'2020-05-22 05:53:39','2020-05-22 05:53:39','5666dbf3-1ee7-4558-9d64-d68c4cc69c6d','ZedMed','',1,'outline'),(5721,45200,1,'2020-05-22 05:53:39','2020-05-22 05:53:39','0c995536-495f-4906-96d9-2a8d46d53879','Specialists','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'outline'),(5722,45202,1,'2020-05-22 05:53:39','2020-05-22 05:53:39','cb80fdb3-b96b-4deb-a015-77a7ef9593bd','MD','',1,'outline'),(5723,45203,1,'2020-05-22 05:53:39','2020-05-22 05:53:39','f2851d95-19d3-4e9e-8707-4ffdfd31319e','Best Practice','',1,'outline'),(5724,45204,1,'2020-05-22 05:53:39','2020-05-22 05:53:39','b0298586-7a95-49dc-9559-b8e38a6afb32','PractiX','',1,'outline'),(5725,45205,1,'2020-05-22 05:53:39','2020-05-22 05:53:39','177c2571-ee2a-4ce1-941b-0753b3d752ad','ZedMed','',1,'outline'),(5727,45217,1,'2020-05-22 05:53:39','2020-05-22 05:53:39','55452c1b-a12e-475b-81da-350a008462a7','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/My-Health-for-Life-MD-V2-0.rtf?mtime=20200520120811&focal=none',1,'link'),(5728,45218,1,'2020-05-22 05:53:39','2020-05-22 05:53:39','50011e22-8b97-4613-aae1-1d7e00a4f534','BP','https://d1jydvs1x4rbvt.cloudfront.net/downloads/My-Health-For-Life-BP-V2-0.rtf?mtime=20200520120841&focal=none',1,'link'),(5729,45219,1,'2020-05-22 05:53:39','2020-05-22 05:53:39','f13c5b59-7043-4161-9a08-538f39657ecb','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/My-Health-For-Life-ZM-V2-0.rtf?mtime=20200520120901&focal=none',1,'link'),(5730,45220,1,'2020-05-22 05:53:39','2020-05-22 05:53:39','b628b7c6-e5c8-44f7-bf4d-b5e58662f872','PDF','https://d1jydvs1x4rbvt.cloudfront.net/downloads/GP-referral-form-template_19122017_fillable_1.pdf?mtime=20200520120924&focal=none',1,'link'),(5731,45221,1,'2020-05-22 05:53:39','2020-05-22 05:53:39','35e4f651-a9f5-4842-a09e-327fbaf53a11','FAQ','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MH4L_medical_practitioner_FAQs_FINAL.pdf?mtime=20200520120915&focal=none',1,'link'),(5734,45262,1,'2020-05-22 06:02:42','2020-05-22 06:02:42','cb13556f-a2ac-425e-b24c-f04089dee6f5','Read more','https://www.iuih.org.au/Services/Clinical-Service-Delivery#socialhealth',1,'solid'),(6740,48177,1,'2020-05-26 03:58:31','2020-05-26 03:58:31','ea34448b-890a-43e5-af3d-dee0738618d1','Learn more','http://redcliffeyouthspace.org/',1,'solid'),(6741,48180,1,'2020-05-26 03:58:31','2020-05-26 03:58:31','0f12ffdf-34e7-46eb-9f17-1aba7581ad12','Learn more','https://www.childrens.health.qld.gov.au/chq/our-services/mental-health-services/',1,'solid'),(13156,74101,1,'2020-06-12 04:07:11','2020-06-12 04:07:11','ae22b0cc-da2e-4c0f-91e8-3c59729b51b8','Contribute','',1,'solid'),(13201,74246,1,'2020-06-12 04:09:22','2020-06-12 04:09:22','6c14ebfc-a6a9-4b99-9297-0b8098f080c8','Team Care Coordination patient information','https://d1jydvs1x4rbvt.cloudfront.net/downloads/TCC-Patient-Information-Flyer-DL-6pp-WEB.pdf?mtime=20200612135603&focal=none',1,'link'),(13202,74247,1,'2020-06-12 04:09:22','2020-06-12 04:09:22','edc5a1b3-93ae-4ffc-a0b4-bca3785a2de7','Team Care Coordination GP information','https://d1jydvs1x4rbvt.cloudfront.net/downloads/GP-Information-A4-Booklet.pdf?mtime=20200612135757&focal=none',0,'link'),(13207,74289,1,'2020-06-12 04:21:02','2020-06-12 04:21:02','cca9e78f-9d04-4141-a723-f9c7cb276562','Contribute','',1,'solid'),(16348,87584,1,'2020-06-17 05:37:33','2020-06-17 05:37:33','560b4d9c-01bc-4ca5-975e-5d251d32d903','Refugee Health Connect contact list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/Refugee-Health-Contact-List-SE-QLD-Oct-2018.pdf?mtime=20200617145502&focal=none',1,'outline'),(17848,94214,1,'2020-06-26 04:48:39','2020-06-26 04:48:39','df614fbb-1e1a-47cf-9b10-9b410521f59f','Contact us to find out more','',1,'solid'),(17849,94217,1,'2020-06-26 04:48:39','2020-06-26 04:48:39','7cf0eef2-a636-4256-8e98-ed3466bd1423','Read our RAP','https://d1jydvs1x4rbvt.cloudfront.net/downloads/RAP_Brisbane-North-PHN-Reflect-RAP-2019-2020_for-final-endorsement_WEB.pdf?mtime=20200302134200&focal=none',1,'solid'),(17879,94442,1,'2020-06-29 04:30:02','2020-06-29 04:30:02','e40aa44b-8def-4aed-8341-93228f53ddc7','More information','',1,'solid'),(17880,94448,1,'2020-06-29 04:30:02','2020-06-29 04:30:02','5d075467-e62a-4d36-88f9-52b929d8a0c7','Stepped care fact sheet','https://d1jydvs1x4rbvt.cloudfront.net/downloads/WEB_MHAOD_stepped-care-factsheet.pdf?mtime=20200303105138&focal=none',1,'link'),(17881,94451,1,'2020-06-29 04:30:02','2020-06-29 04:30:02','da4dcd5e-3b2c-4734-8c1f-5637fd8dc385','Read Recovery','',1,'link'),(17882,94452,1,'2020-06-29 04:30:02','2020-06-29 04:30:02','6f14064f-3a3c-47ef-8c32-d62b7e4feb84','Subscribe to Recovery','',1,'link'),(24537,118984,1,'2020-10-26 05:37:55','2020-10-26 05:37:55','991b9ed3-8748-4470-bdc9-b5d2d704c8d0','Read more','',0,'outline'),(31281,140016,1,'2021-03-12 06:35:56','2021-03-12 06:35:56','67314b61-ba66-409e-bc51-b0b58e2f798f','Vaccine management protocol - Metro North HHS','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/VMP-2021-MNPHU_20210305.docx?mtime=20210311152159&focal=none',1,'link'),(31283,140018,1,'2021-03-12 06:35:56','2021-03-12 06:35:56','699baee0-9e58-4b3e-9301-da6d1b783814','Vaccine management protocol template – Metro North Public Health Unit','http://www.brisbanenorthphn.org.au/content/Document/Templates/Vaccine%20Management%20Protocol%207_2019%20MNPHU(1).docx',1,'link'),(31285,140022,1,'2021-03-12 06:35:56','2021-03-12 06:35:56','f76e54a8-e094-49db-82a3-a830057e832e','The Australian Immunisation Register for health professionals – Services Australia','https://www.servicesaustralia.gov.au/organisations/health-professionals/services/medicare/australian-immunisation-register-health-professionals',1,'link'),(31287,140038,1,'2021-03-12 06:35:57','2021-03-12 06:35:57','5a88b6ec-5957-4a3a-b8f3-83aee20fa108','Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/diseases-infection/immunisation/contacts-resources',1,'link'),(31289,140044,1,'2021-03-12 06:35:57','2021-03-12 06:35:57','1a995059-1cb2-4461-b4d1-dd39468c01b0','Download the fact sheet','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/19_5069-PHN-Adult-Immunisation-factsheet_FINAL_WEB.pdf?mtime=20200429084539&focal=none',1,'link'),(31290,140047,1,'2021-03-12 06:35:57','2021-03-12 06:35:57','76d34911-0e26-4423-a747-561599733706','Visit website','http://www.medicalmums.com.au/',1,'solid'),(31291,140055,1,'2021-03-12 06:35:58','2021-03-12 06:35:58','2626d074-f90f-4f31-9373-eb66cddfdb81','Vaccine management protocol - Metro North HHS','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/VMP-2021-MNPHU_20210305.docx?mtime=20210311152159&focal=none',1,'link'),(31293,140057,1,'2021-03-12 06:35:58','2021-03-12 06:35:58','cc48105c-0797-4b5e-ae6a-0482ac123849','Vaccine management protocol template – Metro North Public Health Unit','http://www.brisbanenorthphn.org.au/content/Document/Templates/Vaccine%20Management%20Protocol%207_2019%20MNPHU(1).docx',1,'link'),(31294,140060,1,'2021-03-12 06:35:58','2021-03-12 06:35:58','bb34b9ba-ecb0-44be-b5ce-595cb7491f38','Immunisation records and data explained - Department of Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/diseases-infection/immunisation/service-providers/instructional-videos-australian-immunisation-register',1,'link'),(31295,140061,1,'2021-03-12 06:35:58','2021-03-12 06:35:58','699c12c5-1302-4b52-95bc-1fb34120e8eb','The Australian Immunisation Register for health professionals – Services Australia','https://www.servicesaustralia.gov.au/organisations/health-professionals/services/medicare/australian-immunisation-register-health-professionals',1,'link'),(31296,140076,1,'2021-03-12 06:35:58','2021-03-12 06:35:58','f1d124cb-be3b-488f-92fd-40926d32a5ec','Metro North Public Health Unit','https://metronorth.health.qld.gov.au/hospitals-services/public-health-unit/cdc/immunisation',1,'link'),(31297,140077,1,'2021-03-12 06:35:58','2021-03-12 06:35:58','f091e552-40e7-41f1-8068-b05097385251','Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/diseases-infection/immunisation/contacts-resources',1,'link'),(31298,140082,1,'2021-03-12 06:35:58','2021-03-12 06:35:58','4b00e133-bcd5-4bf8-b5be-4396fd270a1f','Download the poster','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/19_5069-PHN-Adult-Immunisation-poster_FINAL_WEB.pdf?mtime=20200429084542&focal=none',1,'link'),(31299,140083,1,'2021-03-12 06:35:58','2021-03-12 06:35:58','9fee4c05-d43a-4cbe-80c6-f493105aed66','Download the fact sheet','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/19_5069-PHN-Adult-Immunisation-factsheet_FINAL_WEB.pdf?mtime=20200429084539&focal=none',1,'link'),(31300,140086,1,'2021-03-12 06:35:59','2021-03-12 06:35:59','47060516-e103-49c8-9a5e-9e14414b693e','Visit website','http://www.medicalmums.com.au/',1,'solid'),(31306,140115,1,'2021-03-12 06:36:06','2021-03-12 06:36:06','6cfb2b7d-d987-4cfb-ac6a-da60793318c6','Metro North Public Health Unit','https://metronorth.health.qld.gov.au/hospitals-services/public-health-unit/cdc/immunisation',1,'link'),(31308,140121,1,'2021-03-12 06:36:06','2021-03-12 06:36:06','1074ada9-3dd1-4fe8-94f0-3d7e7c5d014b','Download the poster','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/19_5069-PHN-Adult-Immunisation-poster_FINAL_WEB.pdf?mtime=20200429084542&focal=none',1,'link'),(31310,140125,1,'2021-03-12 06:36:06','2021-03-12 06:36:06','3083736c-ea0a-4117-b2ca-f169eb197062','Visit website','http://www.medicalmums.com.au/',1,'solid'),(31325,140159,1,'2021-03-12 06:39:46','2021-03-12 06:39:46','329af6ee-9f5e-497e-b70a-ad79d4bc72f8','Phase 1b vaccine rollout FAQs','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/COVID-19-Vaccine-FAQ_Brisbane-North-PHN.docx?mtime=20210312163228&focal=none',1,'solid'),(31326,140160,1,'2021-03-12 06:39:46','2021-03-12 06:39:46','6240aa90-0537-4ba0-9500-9ac0c028495b','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(31328,140162,1,'2021-03-12 06:39:46','2021-03-12 06:39:46','6f998c47-6b63-44ee-8bc6-3925971b0367','Vaccine rollout Phase 1b FAQs',NULL,1,'solid'),(31329,140165,1,'2021-03-12 06:39:46','2021-03-12 06:39:46','0c7076bc-a60f-4eaf-a54e-b020101a983d','Read the latest health alerts',NULL,1,'solid'),(31330,140168,1,'2021-03-12 06:39:46','2021-03-12 06:39:46','360b2b40-7312-4ef5-a7b3-3cda58264722','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(31331,140170,1,'2021-03-12 06:39:46','2021-03-12 06:39:46','03d59c53-df81-47a1-960f-2de5511fa1e6','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(31332,140173,1,'2021-03-12 06:39:46','2021-03-12 06:39:46','33593caa-dcd1-4ed9-b3d5-9a13b7f6edb5','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(31335,140180,1,'2021-03-12 06:39:46','2021-03-12 06:39:46','78b8ab88-b979-4e00-8cf3-53b4fd36ed58','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(31336,140183,1,'2021-03-12 06:39:46','2021-03-12 06:39:46','810b0bf4-8e80-46a8-ba90-d810f1a329c5','Subscribe to updates',NULL,1,'solid'),(31337,140185,1,'2021-03-12 06:39:46','2021-03-12 06:39:46','b6744063-c9d8-4efd-95b9-ae6777355e22','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(31340,140191,1,'2021-03-12 06:44:50','2021-03-12 06:44:50','90f2e132-9a06-4930-87f8-74388daf7586','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(31342,140193,1,'2021-03-12 06:44:50','2021-03-12 06:44:50','4f168915-c3dc-4cc5-b453-2da6a391d70a','Vaccine rollout Phase 1b FAQs',NULL,1,'solid'),(31344,140199,1,'2021-03-12 06:44:50','2021-03-12 06:44:50','31e09472-37ff-48ea-a34c-b5a47dfdf425','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(31345,140201,1,'2021-03-12 06:44:50','2021-03-12 06:44:50','a71962b8-746f-4aaa-89e6-1a0594de265d','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(31347,140206,1,'2021-03-12 06:44:50','2021-03-12 06:44:50','eaa1efcc-8caa-47e8-b4ed-6505e88b8897','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(31348,140208,1,'2021-03-12 06:44:50','2021-03-12 06:44:50','d20106fd-9622-4c73-9dd4-25bf1c68e6b3','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(31350,140214,1,'2021-03-12 06:44:50','2021-03-12 06:44:50','f23dc35e-f4bf-4303-9cec-3b318b16b330','Subscribe to updates',NULL,1,'solid'),(31351,140216,1,'2021-03-12 06:44:50','2021-03-12 06:44:50','0fee4523-5bca-4643-80a6-41624c828d0e','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(31690,141314,1,'2021-03-16 02:53:05','2021-03-16 02:53:05','7723b809-062c-4d87-b3f7-4eb0ce7272e0','Browse local positions vacant',NULL,0,'solid'),(31696,141358,1,'2021-03-16 05:21:50','2021-03-16 05:21:50','65144f1e-834c-4266-bbb0-e73b7688569e','General Practitioner Liaison Officer – Health Systems Improvement & Caboolture Hospital','https://brisbanenorthphn.org.au/jobs/general-practitioner-liaison-officer-health-systems-improvement-caboolture-hospital',1,'solid'),(31697,141361,1,'2021-03-16 05:21:50','2021-03-16 05:21:50','ea2f74c3-946b-4935-8477-3b0ce3dc6f04','Browse local positions vacant',NULL,0,'solid'),(31698,141367,1,'2021-03-16 05:22:42','2021-03-16 05:22:42','29c6388f-3011-4b5b-9ad9-ddf3c0b35715','General Practitioner Liaison Officer – Health Systems Improvement & Caboolture Hospital','https://brisbanenorthphn.org.au/jobs/general-practitioner-liaison-officer-health-systems-improvement-caboolture-hospital',1,'solid'),(31699,141370,1,'2021-03-16 05:22:42','2021-03-16 05:22:42','4e93094b-5867-446e-95ff-e299f41a4e1e','Browse local positions vacant',NULL,0,'solid'),(32113,142294,1,'2021-03-16 05:44:22','2021-03-16 05:44:22','f4b16f17-bf8f-4d74-88ec-04c376f1cbf7','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(32114,142295,1,'2021-03-16 05:44:22','2021-03-16 05:44:22','fd821040-5f90-45ac-bc39-8f86175ce98d','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(32115,142297,1,'2021-03-16 05:44:22','2021-03-16 05:44:22','21f1fd8c-2529-492a-8ce9-1d4ece4c9a8b','Download our FAQs for participating phase 1b practices','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/COVID-19-Vaccine-FAQ_Brisbane-North-PHN.docx?mtime=20210312163228&focal=none',1,'solid'),(32116,142298,1,'2021-03-16 05:44:22','2021-03-16 05:44:22','714b55bd-6457-4b05-b7f6-a224754a8a5f','Download our FAQs for non-participating phase 1b practices','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/COVID-19-Vaccine-FAQ_Brisbane-North-PHN_non-participating-practices.pdf?mtime=20210315142631&focal=none',1,'solid'),(32117,142301,1,'2021-03-16 05:44:22','2021-03-16 05:44:22','130f0879-8e49-452a-9cae-9faab2bb04f6','Read the latest health alerts',NULL,1,'solid'),(32118,142304,1,'2021-03-16 05:44:22','2021-03-16 05:44:22','60504d8c-0a46-4d02-9584-10d3e5601025','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(32119,142306,1,'2021-03-16 05:44:22','2021-03-16 05:44:22','88af7ad5-e6b2-475a-8b48-3f531e6ec8b0','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(32120,142309,1,'2021-03-16 05:44:22','2021-03-16 05:44:22','97ef3f6d-810d-4ed4-afac-b872a4742932','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(32121,142311,1,'2021-03-16 05:44:22','2021-03-16 05:44:22','01bc84c2-1131-4826-aa19-69d14e7dcc57','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(32122,142313,1,'2021-03-16 05:44:22','2021-03-16 05:44:22','d467d131-d240-41fe-b25a-4de0eb9628e9','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(32123,142316,1,'2021-03-16 05:44:22','2021-03-16 05:44:22','cfd7d8e8-8617-4787-be48-8936ef79e927','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(32124,142319,1,'2021-03-16 05:44:22','2021-03-16 05:44:22','c63c90fe-6a8a-49f6-9db6-93b64d0bffd0','Subscribe to updates',NULL,1,'solid'),(32125,142321,1,'2021-03-16 05:44:22','2021-03-16 05:44:22','c1587c1b-d44e-4ea9-b61d-391d8ce78e00','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(32126,142322,1,'2021-03-16 05:44:22','2021-03-16 05:44:22','e89297bc-5bee-4429-a871-5ffb4d4fff5e','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(32127,142326,1,'2021-03-16 05:44:26','2021-03-16 05:44:26','6ee233f6-d418-49c5-8f9e-03cffa5e6f37','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(32128,142327,1,'2021-03-16 05:44:26','2021-03-16 05:44:26','6eb69d6b-b1de-47bf-add0-ac4c31d77594','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(32129,142329,1,'2021-03-16 05:44:26','2021-03-16 05:44:26','474cb645-553c-4b60-afff-efb79aae5648','Download our FAQs for participating phase 1b practices','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/COVID-19-Vaccine-FAQ_Brisbane-North-PHN.docx?mtime=20210312163228&focal=none',1,'solid'),(32130,142330,1,'2021-03-16 05:44:26','2021-03-16 05:44:26','63811f8d-81b0-40ba-b091-caba2b1abb76','Download our FAQs for non-participating phase 1b practices','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/COVID-19-Vaccine-FAQ_Brisbane-North-PHN_non-participating-practices.pdf?mtime=20210315142631&focal=none',1,'solid'),(32131,142333,1,'2021-03-16 05:44:26','2021-03-16 05:44:26','3492d79b-6f14-4b05-95b7-eab8b67c3a09','Read the latest health alerts',NULL,1,'solid'),(32132,142336,1,'2021-03-16 05:44:26','2021-03-16 05:44:26','4a94bfb3-d570-43c4-877a-88b8a198209e','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(32133,142338,1,'2021-03-16 05:44:26','2021-03-16 05:44:26','d917b588-59a5-41cf-b304-3e1272e652bf','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(32134,142341,1,'2021-03-16 05:44:26','2021-03-16 05:44:26','3fdedc18-723f-467b-b7d2-5490b3a16d2d','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(32135,142343,1,'2021-03-16 05:44:26','2021-03-16 05:44:26','b4b61d93-3f48-422b-b36b-40993db9b268','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(32136,142345,1,'2021-03-16 05:44:26','2021-03-16 05:44:26','e3f44fe4-47dc-457b-a9f8-5e5579f200f6','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(32137,142348,1,'2021-03-16 05:44:26','2021-03-16 05:44:26','fcc656db-c1c2-4775-b598-76aec333f9cd','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(32138,142351,1,'2021-03-16 05:44:26','2021-03-16 05:44:26','8409a35f-da75-4e99-a659-501e084b11e8','Subscribe to updates',NULL,1,'solid'),(32139,142353,1,'2021-03-16 05:44:26','2021-03-16 05:44:26','8592d826-67a0-4240-bec9-e14029ad023e','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(32140,142354,1,'2021-03-16 05:44:26','2021-03-16 05:44:26','d5e33e1c-9645-47f3-8d01-990f8708091e','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(32224,142511,1,'2021-03-16 22:37:26','2021-03-16 22:37:26','e0ccc479-4b50-4d6c-a8f5-5f51a1bf991d','Vaccine eligibility checker','https://covid-vaccine.healthdirect.gov.au/eligibility',1,'solid'),(32226,142517,1,'2021-03-16 22:37:26','2021-03-16 22:37:26','4310b01f-3e34-40ff-bef7-76920b7e0a65','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(32228,142521,1,'2021-03-16 22:37:26','2021-03-16 22:37:26','9d54efb9-03c9-4612-b0ea-e6d20212687a','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(32230,142523,1,'2021-03-16 22:37:26','2021-03-16 22:37:26','40d7289d-e543-491e-b57c-7ded2fb06bbc','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(32233,142531,1,'2021-03-16 22:37:26','2021-03-16 22:37:26','67c5fe26-0672-4305-b2a4-8967c210b1e6','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(32235,142552,1,'2021-03-17 00:14:41','2021-03-17 00:14:41','c29afb23-23ff-4e62-93fb-2cdd410fa9a3','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(32237,142555,1,'2021-03-17 00:14:41','2021-03-17 00:14:41','033bb96b-505a-4dee-9c8a-7fd358f61ad6','Download our FAQs for participating phase 1b practices','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/COVID-19-Vaccine-FAQ_Brisbane-North-PHN.docx?mtime=20210312163228&focal=none',1,'solid'),(32238,142556,1,'2021-03-17 00:14:41','2021-03-17 00:14:41','fcc24fbb-4cb9-44b3-a80c-c302669e12a1','Download our FAQs for non-participating phase 1b practices','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/COVID-19-Vaccine-FAQ_Brisbane-North-PHN_non-participating-practices.pdf?mtime=20210315142631&focal=none',1,'solid'),(32241,142564,1,'2021-03-17 00:14:41','2021-03-17 00:14:41','d2193fc1-ccfa-43c9-beda-87125b162654','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(32242,142567,1,'2021-03-17 00:14:41','2021-03-17 00:14:41','75d3d96a-44e1-4e5e-9f5c-28950d0bcfde','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(32243,142569,1,'2021-03-17 00:14:41','2021-03-17 00:14:41','ef470fa5-288b-45ac-a039-c1ebe393d131','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(32244,142571,1,'2021-03-17 00:14:41','2021-03-17 00:14:41','6603a2ec-e974-404e-b5b2-2e34372b7508','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(32245,142574,1,'2021-03-17 00:14:41','2021-03-17 00:14:41','ad64b0fb-1e33-4cad-98ab-dbec74eedc02','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(32247,142579,1,'2021-03-17 00:14:41','2021-03-17 00:14:41','acdd716d-1fee-4b4f-b8a4-9de154bc1c7d','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(32278,142648,1,'2021-03-17 00:23:11','2021-03-17 00:23:11','00b7ce3e-59b8-43ab-a66f-3bde501e8861','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(32280,142651,1,'2021-03-17 00:23:11','2021-03-17 00:23:11','c4263cb0-4f52-4ca5-a1e4-bde233b082cb','Download our FAQs for non-participating phase 1b practices','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/COVID-19-Vaccine-FAQ_Brisbane-North-PHN_non-participating-practices.pdf?mtime=20210315142631&focal=none',1,'solid'),(32281,142654,1,'2021-03-17 00:23:11','2021-03-17 00:23:11','620e799b-1f3b-46aa-b350-e9b35b0899cf','Read the latest health alerts',NULL,1,'solid'),(32282,142657,1,'2021-03-17 00:23:11','2021-03-17 00:23:11','0ef3de38-9fad-427e-bd2f-1781e5ffdcb5','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(32283,142659,1,'2021-03-17 00:23:11','2021-03-17 00:23:11','1154b713-eee4-42b1-99cb-4ede69156ca8','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(32286,142666,1,'2021-03-17 00:23:11','2021-03-17 00:23:11','b6416a00-57b3-4d28-b5f8-5db7cea27bfa','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(32287,142669,1,'2021-03-17 00:23:11','2021-03-17 00:23:11','9fb28013-dad4-4404-92d8-0e6dffb6c98e','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(32288,142672,1,'2021-03-17 00:23:11','2021-03-17 00:23:11','340cd980-55e0-4ffc-81f0-564005aa86d1','Subscribe to updates',NULL,1,'solid'),(32289,142674,1,'2021-03-17 00:23:11','2021-03-17 00:23:11','aadbc3c6-b43e-4a19-bc68-697393d90807','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(32290,142675,1,'2021-03-17 00:23:11','2021-03-17 00:23:11','cad11780-a842-45dc-a5a6-5fab1433700c','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(32291,142679,1,'2021-03-17 00:48:03','2021-03-17 00:48:03','322aeb89-3865-440c-811c-c4ac9eeb51e6','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(32295,142686,1,'2021-03-17 00:48:03','2021-03-17 00:48:03','94e29516-657e-465e-b719-ce0a3e79a3da','Read the latest health alerts',NULL,1,'solid'),(32298,142694,1,'2021-03-17 00:48:03','2021-03-17 00:48:03','0dd085fb-68f2-47f6-957e-50535bb1b512','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(32299,142696,1,'2021-03-17 00:48:03','2021-03-17 00:48:03','ad488954-6a02-4321-bf9b-5515eb61a422','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(32303,142706,1,'2021-03-17 00:48:03','2021-03-17 00:48:03','f651b82e-161c-4de3-98ea-4a6e6f9fa858','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(32304,142707,1,'2021-03-17 00:48:03','2021-03-17 00:48:03','d9f85232-1b20-47c7-a4ab-d981b2959feb','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(32385,142923,1,'2021-03-17 03:03:13','2021-03-17 03:03:13','e84a038d-a1ce-4757-9d59-b3fafb70aa35','For RACFs',NULL,1,'outline'),(32386,142924,1,'2021-03-17 03:03:13','2021-03-17 03:03:13','31f8ff69-c02d-4a99-b334-bc1786f14086','For community',NULL,1,'outline'),(32390,142933,1,'2021-03-17 03:03:13','2021-03-17 03:03:13','21b050fe-9e5f-4a81-8d83-22f429647413','1 March','https://icampaign.brightlabs.com.au/v/9655/1735665136/email.html?k=W4xOP02DyXw184GaxNI6k7EVQ0egPoLmOBx9MgO143c',1,'solid'),(32392,142935,1,'2021-03-17 03:03:13','2021-03-17 03:03:13','ccaefa26-1735-4934-a65b-126003699270','16 Feb','https://icampaign.brightlabs.com.au/em/message/email/view.php?id=1530234&a=9655&k=GD2emXHkRKAzQIJ0fJHGwEIFIeE2dz_ZwHX44DMI5rE',0,'solid'),(32393,142936,1,'2021-03-17 03:03:13','2021-03-17 03:03:13','45992126-4c62-436e-adc4-3c83dc995d41','1 Feb','https://icampaign.brightlabs.com.au/v/9655/1735651905/email.html?k=xTKPedZf_tzusLKj4h0yTxaX4y8YRk-ekPmKiwMTh58',1,'solid'),(32395,142939,1,'2021-03-17 03:03:13','2021-03-17 03:03:13','1576d2a1-759a-4f17-bb81-b328372a4c75','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(32396,142940,1,'2021-03-17 03:03:13','2021-03-17 03:03:13','85dabbaf-06ea-41f3-9884-63483d18a572','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(32398,142944,1,'2021-03-17 03:03:13','2021-03-17 03:03:13','b5c0a348-ffe3-4dcf-88a3-d74dd3fd681f','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(32402,142957,1,'2021-03-17 03:03:57','2021-03-17 03:03:57','6e48eb63-8042-4942-a861-e7c06ed70fe6','For RACFs',NULL,1,'outline'),(32403,142958,1,'2021-03-17 03:03:57','2021-03-17 03:03:57','1b5f87b8-bcf2-4e3a-880f-ceb5baaf61cd','For community',NULL,1,'outline'),(32405,142964,1,'2021-03-17 03:03:57','2021-03-17 03:03:57','f7b16a4a-a0f8-4436-b49b-055ab5109e54','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(32406,142966,1,'2021-03-17 03:03:57','2021-03-17 03:03:57','6e8efd38-66df-4b26-b21c-4c7a2408f354','15 March','https://icampaign.brightlabs.com.au/v/9655/1735670870/email.html?k=v6G-8gVJ_rvtwoUd2fpEBZ1ZIi86nI02To7omwA0FiU',1,'solid'),(32407,142967,1,'2021-03-17 03:03:57','2021-03-17 03:03:57','0dcb8487-242f-4a9c-af0e-f8844a5e4b33','1 March','https://icampaign.brightlabs.com.au/v/9655/1735665136/email.html?k=W4xOP02DyXw184GaxNI6k7EVQ0egPoLmOBx9MgO143c',1,'solid'),(32408,142968,1,'2021-03-17 03:03:57','2021-03-17 03:03:57','81351f82-6d82-445d-8535-77c9e8a66c6c','23 Feb','https://icampaign.brightlabs.com.au/v/9655/1735663126/email.html?k=onC8sbtofWx9q330xxdb_nSrHla73svE28AQrrximRk',1,'solid'),(32410,142970,1,'2021-03-17 03:03:57','2021-03-17 03:03:57','5c16688d-aace-477a-bfa6-87023b08747e','1 Feb','https://icampaign.brightlabs.com.au/v/9655/1735651905/email.html?k=xTKPedZf_tzusLKj4h0yTxaX4y8YRk-ekPmKiwMTh58',1,'solid'),(32411,142972,1,'2021-03-17 03:03:57','2021-03-17 03:03:57','fd7c725e-61dc-4854-9b0e-549386c921ab','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(32412,142973,1,'2021-03-17 03:03:57','2021-03-17 03:03:57','7468ce55-4aac-47bc-86b0-fa9ffdfaae41','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(32413,142974,1,'2021-03-17 03:03:57','2021-03-17 03:03:57','f895adfd-c07d-4003-ac42-4bf03f309070','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(32414,142977,1,'2021-03-17 03:03:57','2021-03-17 03:03:57','40ed76f6-d4c0-4593-8cae-feda139139db','Department of Health','https://www.health.gov.au/',1,'outline'),(32415,142978,1,'2021-03-17 03:03:57','2021-03-17 03:03:57','f5e7ced6-4e54-4410-b609-711e48cdafbe','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(32416,142979,1,'2021-03-17 03:03:57','2021-03-17 03:03:57','9488a496-4690-4ab9-bff2-f575f07790b6','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(32453,143059,1,'2021-03-17 03:18:02','2021-03-17 03:18:02','3f829fce-e2b7-4fc7-a495-3298962f7e09','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(32454,143060,1,'2021-03-17 03:18:02','2021-03-17 03:18:02','552abc37-ae54-4890-a792-f28f66b1bf7e','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(32455,143061,1,'2021-03-17 03:18:02','2021-03-17 03:18:02','a087e6d0-de71-4cf2-bfb5-82b43d68741a','Book an appointment (for 1a eligibility)','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/book',1,'solid'),(32457,143065,1,'2021-03-17 03:18:02','2021-03-17 03:18:02','a064f287-43b9-4b74-aab3-8900cf707bd2','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(32458,143066,1,'2021-03-17 03:18:02','2021-03-17 03:18:02','85641f32-1b47-4545-ba9e-08c4aef61bcb','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(32459,143067,1,'2021-03-17 03:18:02','2021-03-17 03:18:02','a68cfb9d-7c6b-4269-9798-2b86e4bf61c8','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(32460,143070,1,'2021-03-17 03:18:02','2021-03-17 03:18:02','df78d3e7-3755-4392-8f8e-bd70b21cc05f','Vaccine eligibility checker','https://covid-vaccine.healthdirect.gov.au/eligibility',1,'solid'),(32461,143071,1,'2021-03-17 03:18:02','2021-03-17 03:18:02','e02c53f1-e1aa-4ff1-a1ad-0b9f1f3ac634','Vaccine service finder','https://covid-vaccine.healthdirect.gov.au/booking/?sid=ca72fa643907520b5ea1d669c7db91a41aa988b6',1,'solid'),(32462,143076,1,'2021-03-17 03:18:02','2021-03-17 03:18:02','4c304f9b-8d60-4332-b591-9b99dd008461','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(32463,143079,1,'2021-03-17 03:18:02','2021-03-17 03:18:02','25821204-7f69-49f8-8fda-8477871dc1a2','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(32464,143080,1,'2021-03-17 03:18:02','2021-03-17 03:18:02','da6e5c2c-4adf-4402-ad44-be242222eb1e','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(32465,143081,1,'2021-03-17 03:18:02','2021-03-17 03:18:02','b7ec0488-f426-4a33-ae52-e9e3b66044b7','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(32467,143083,1,'2021-03-17 03:18:02','2021-03-17 03:18:02','aee13b26-7a8f-4c80-9cbc-c96e6f3b0602','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(32468,143089,1,'2021-03-17 03:18:02','2021-03-17 03:18:02','839f8886-b4ed-4a5d-b681-6e5d2719b024','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(32470,143091,1,'2021-03-17 03:18:02','2021-03-17 03:18:02','f01a11c6-dab1-465e-b33f-3230ff4be391','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(32471,143096,1,'2021-03-17 03:18:08','2021-03-17 03:18:08','2f80e5a0-9d54-4269-a865-63d86a210c29','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(32473,143098,1,'2021-03-17 03:18:08','2021-03-17 03:18:08','d648d7bd-8549-48f1-a0f8-6963e3a87833','Book an appointment (for 1a eligibility)','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/book',1,'solid'),(32474,143101,1,'2021-03-17 03:18:08','2021-03-17 03:18:08','7d4341a8-5f17-4ca1-8275-46261a0979f3','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(32475,143102,1,'2021-03-17 03:18:08','2021-03-17 03:18:08','fb4c06d0-a1f6-4c07-9285-9a636d6eab0d','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(32476,143103,1,'2021-03-17 03:18:08','2021-03-17 03:18:08','4dc1a0b8-22bd-4665-ae30-2cd159f35bec','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(32477,143104,1,'2021-03-17 03:18:08','2021-03-17 03:18:08','3eb32779-cd0a-41e5-8ea1-2da2e46a0181','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(32478,143107,1,'2021-03-17 03:18:08','2021-03-17 03:18:08','82da0d78-1722-49c7-8b3d-a2fcbc10c3f9','Vaccine eligibility checker','https://covid-vaccine.healthdirect.gov.au/eligibility',1,'solid'),(32479,143108,1,'2021-03-17 03:18:08','2021-03-17 03:18:08','a47fead4-b16e-4ea0-b4ac-48ff5df9b36b','Vaccine service finder','https://covid-vaccine.healthdirect.gov.au/booking/?sid=ca72fa643907520b5ea1d669c7db91a41aa988b6',1,'solid'),(32480,143113,1,'2021-03-17 03:18:08','2021-03-17 03:18:08','3eee25b5-d606-4234-ac86-b4fde9a4193f','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(32481,143116,1,'2021-03-17 03:18:08','2021-03-17 03:18:08','0e0e4c8d-bf71-4b19-bc67-e38244fa2e2c','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(32482,143117,1,'2021-03-17 03:18:08','2021-03-17 03:18:08','9f3df850-83ec-4be2-a7a6-ead2e5bf1cac','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(32484,143119,1,'2021-03-17 03:18:08','2021-03-17 03:18:08','af2b4823-0035-46fe-8d16-7efe933e7b7e','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(32485,143120,1,'2021-03-17 03:18:08','2021-03-17 03:18:08','e8dbccd1-e288-45c6-beea-9b7d3c1447ec','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(32486,143126,1,'2021-03-17 03:18:08','2021-03-17 03:18:08','73f39938-a8ea-4166-9c40-b8451c617da5','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(32487,143127,1,'2021-03-17 03:18:08','2021-03-17 03:18:08','6b0c6541-0d3f-440c-8051-afb5645fdcb1','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(32488,143128,1,'2021-03-17 03:18:08','2021-03-17 03:18:08','6d4e8ce8-49a7-4304-9004-9f54faf9bfe9','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(32492,143244,1,'2021-03-18 00:13:45','2021-03-18 00:13:45','46eb6211-065c-4c5a-9855-5ec6faaf4e06','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(32493,143245,1,'2021-03-18 00:13:45','2021-03-18 00:13:45','5a34e58e-a397-48ed-b28e-bb16fb8406cc','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(32494,143247,1,'2021-03-18 00:13:45','2021-03-18 00:13:45','fa661b47-d384-43e2-9bed-ed16ef92b142','Download our FAQs for participating phase 1b practices','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/COVID-19-Vaccine-FAQ_Brisbane-North-PHN.docx?mtime=20210312163228&focal=none',1,'solid'),(32495,143248,1,'2021-03-18 00:13:45','2021-03-18 00:13:45','f7064f75-9839-4e92-8668-7d30f2b9862f','Download our FAQs for non-participating phase 1b practices','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/COVID-19-Vaccine-FAQ_Brisbane-North-PHN_non-participating-practices.pdf?mtime=20210315142631&focal=none',1,'solid'),(32496,143251,1,'2021-03-18 00:13:45','2021-03-18 00:13:45','e3a5adbf-326b-4b14-bd14-15f0d5cae89a','Read the latest health alerts',NULL,1,'solid'),(32497,143254,1,'2021-03-18 00:13:45','2021-03-18 00:13:45','fc897420-f843-43a4-bac4-87356c74e7c7','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(32498,143256,1,'2021-03-18 00:13:45','2021-03-18 00:13:45','e788179a-f1d4-478d-8822-fe646e9b7902','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(32499,143259,1,'2021-03-18 00:13:45','2021-03-18 00:13:45','784117a1-eb96-49cd-b173-16fe797e85b7','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(32500,143261,1,'2021-03-18 00:13:45','2021-03-18 00:13:45','be009b32-b2a0-4696-b3c0-0ebc2e4523bb','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(32501,143263,1,'2021-03-18 00:13:45','2021-03-18 00:13:45','e4d30971-5751-4f85-82bc-a7cc18ef3797','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(32502,143266,1,'2021-03-18 00:13:45','2021-03-18 00:13:45','42afae6e-5af0-456f-87ff-d57888f0cd87','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(32503,143269,1,'2021-03-18 00:13:45','2021-03-18 00:13:45','fb7e4776-13ed-4cd1-9fa4-187d83f97bb5','Subscribe to updates',NULL,1,'solid'),(32504,143271,1,'2021-03-18 00:13:45','2021-03-18 00:13:45','9f090b4a-e324-4ec0-838d-1da99e27752a','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(32505,143272,1,'2021-03-18 00:13:45','2021-03-18 00:13:45','75d2821f-a294-4c25-879f-5342ddfb500f','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(32506,143276,1,'2021-03-18 00:15:01','2021-03-18 00:15:01','186e0464-5b39-42b2-9ba7-cddada7b8ddf','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(32507,143277,1,'2021-03-18 00:15:01','2021-03-18 00:15:01','8c770651-1b7c-47fb-9680-c17a2b191b8a','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(32508,143279,1,'2021-03-18 00:15:01','2021-03-18 00:15:01','73427e76-4392-40bc-98a6-6e1bce1d6150','Download our FAQs for participating phase 1b practices','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/COVID-19-Vaccine-FAQ_Brisbane-North-PHN.docx?mtime=20210312163228&focal=none',1,'solid'),(32509,143280,1,'2021-03-18 00:15:01','2021-03-18 00:15:01','6f24a9b0-4096-4e13-afb1-c1409604c722','Download our FAQs for non-participating phase 1b practices','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/COVID-19-Vaccine-FAQ_Brisbane-North-PHN_non-participating-practices.pdf?mtime=20210315142631&focal=none',1,'solid'),(32510,143283,1,'2021-03-18 00:15:01','2021-03-18 00:15:01','423e8ac1-97f7-426e-81a3-e4f8f0820568','Read the latest health alerts',NULL,1,'solid'),(32511,143286,1,'2021-03-18 00:15:01','2021-03-18 00:15:01','c86cd3f1-03c6-4368-95d2-7a86edb1adc8','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(32512,143288,1,'2021-03-18 00:15:02','2021-03-18 00:15:02','0a573d07-f41e-4d99-ba03-308a03b27aa9','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(32513,143291,1,'2021-03-18 00:15:02','2021-03-18 00:15:02','1c79a134-b6a9-4124-9807-66b70c925c97','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(32514,143293,1,'2021-03-18 00:15:02','2021-03-18 00:15:02','0874607e-5cea-4d18-ba0a-1c8fe60b59a0','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(32515,143295,1,'2021-03-18 00:15:02','2021-03-18 00:15:02','c3bfdf05-d869-4836-b5d3-b91cfc78c9ef','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(32516,143298,1,'2021-03-18 00:15:02','2021-03-18 00:15:02','1ad24ba4-d237-428e-bfaa-61f1f4b334c1','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(32517,143301,1,'2021-03-18 00:15:02','2021-03-18 00:15:02','5095db5a-fb1a-489a-92c0-364e529323f4','Subscribe to updates',NULL,1,'solid'),(32518,143303,1,'2021-03-18 00:15:02','2021-03-18 00:15:02','5cb75e5c-8f8b-4608-99c9-f8e1fc7f7ffb','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(32519,143304,1,'2021-03-18 00:15:02','2021-03-18 00:15:02','5a88b6e7-7ad7-4254-baf2-1f7d59b017c3','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(32520,143308,1,'2021-03-18 00:25:09','2021-03-18 00:25:09','48e4be94-e0ef-4443-a9ba-120b06b6304a','More information','http://health.gov.au/covid19-vaccines',1,'solid'),(32521,143310,1,'2021-03-18 00:25:10','2021-03-18 00:25:10','1c66e9a6-66f6-4381-b807-59becc6ce89b','Frequently Asked Questions','https://www.health.gov.au/resources/publications/covid-19-vaccination-frequently-asked-questions-for-the-covid-19-vaccines-in-residential-aged-care',1,'link'),(32522,143311,1,'2021-03-18 00:25:10','2021-03-18 00:25:10','76db5eb1-eb59-4363-a17c-1bf26cd62fca','Information for workers in RACFs','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-and-workers-about-covid-19-vaccines',1,'link'),(32523,143312,1,'2021-03-18 00:25:10','2021-03-18 00:25:10','643f65f9-b688-4e30-9978-1ae5ac1a8d3b','Information for residents in RACFs','https://bit.ly/3b8gYHc',1,'link'),(32524,143313,1,'2021-03-18 00:25:10','2021-03-18 00:25:10','aa02f2e6-2e8a-4604-859b-5dc8acfb6236','Poster for display within RACFs','https://www.health.gov.au/sites/default/files/documents/2021/02/covid-19-vaccination-covid-19-vaccines-for-residential-aged-care-facilities-poster-covid-19-vaccine-covid-19-vaccines-for-residential-aged-care-facilities-poster_0.pdf',1,'link'),(32525,143315,1,'2021-03-18 00:25:10','2021-03-18 00:25:10','8f4b9419-95c8-49f1-a193-bf7e158b2608','Aged care vaccine readiness toolkit','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-aged-care-readiness-toolkit',1,'link'),(32526,143316,1,'2021-03-18 00:25:10','2021-03-18 00:25:10','24c408ae-3687-4ebf-94a1-d249f2600f7e','Consent form for COVID-19 vaccination','https://www.health.gov.au/resources/publications/covid-19-vaccination-consent-form-for-covid-19-vaccination?utm_source=GP+List+DD+and+WM_Current&utm_campaign=adb48e0824-EMAIL_CAMPAIGN_2018_07_27_02_23_COPY_01&utm_medium=email&utm_term=0_4698ba36cb-adb48e0',1,'link'),(32527,143317,1,'2021-03-18 00:25:10','2021-03-18 00:25:10','10db4868-8e52-46e8-bbee-c5ce79483e4f','Department of Health information and resources','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-for-aged-care-providers-and-workers',1,'link'),(32528,143319,1,'2021-03-18 00:25:10','2021-03-18 00:25:10','d26665f7-64f9-4eaf-8252-11975b07f880','ATAGI: Advice on the relative timing of administering influenza and COVID-19 vaccines in 2021','https://www.health.gov.au/resources/publications/covid-19-vaccination-atagi-advice-on-influenza-and-covid-19-vaccines',1,'outline'),(32529,143320,1,'2021-03-18 00:25:10','2021-03-18 00:25:10','9fe21b48-6e48-46af-8616-df4f5d97be6b','AHPPC: Statement on COVID-19 and influenza vaccination requirements for aged care workers','https://www.health.gov.au/news/australian-health-protection-principal-committee-ahppc-statement-on-covid-19-and-influenza-vaccination-requirements-for-aged-care-workers',1,'outline'),(32530,143322,1,'2021-03-18 00:25:10','2021-03-18 00:25:10','723c5cb9-3f3c-4904-958b-c86fd8d06af0','Part 1: Preparing for the vaccine rollout in Brisbane North RACFs','https://www.youtube.com/watch?v=3BNaB811O_k',1,'solid'),(32531,143323,1,'2021-03-18 00:25:10','2021-03-18 00:25:10','02aba925-bc97-474b-a93a-775dd1528656','Part 2: Preparing for the vaccine rollout in Brisbane North RACFs','https://youtu.be/AATe_vJ3c3w',1,'solid'),(32532,143328,1,'2021-03-18 00:25:10','2021-03-18 00:25:10','20765357-8b2b-4c47-80ad-28e438c88e0e','Aged care resources on the DoH website','https://www.health.gov.au/resources/collections/coronavirus-covid-19-resources-for-health-professionals-including-aged-care-providers-pathology-providers-and-health-care-managers#health-and-aged-care-workers',1,'link'),(32533,143329,1,'2021-03-18 00:25:10','2021-03-18 00:25:10','fd74147e-1e7b-41bf-98a8-3206e15e60f6','Subscribe to aged care sector announcements','https://www.health.gov.au/using-our-websites/subscriptions/subscribe-to-aged-care-sector-announcements-and-newsletters',1,'link'),(32534,143330,1,'2021-03-18 00:25:10','2021-03-18 00:25:10','57d06cc4-6f13-49e3-bc74-d57006077ab4','Leading Age Services Australia','https://lasa.asn.au/covid-19',1,'link'),(32535,143331,1,'2021-03-18 00:25:10','2021-03-18 00:25:10','2cf24b58-86e9-46ac-b9c7-425c11b5561e','Aged and Community Services Australia','https://www.acsa.asn.au/Home/Aged-Care-Emergency-Planning/Coronavirus',1,'link'),(32670,143539,1,'2021-03-18 00:34:22','2021-03-18 00:34:22','bf76a03b-2478-4282-9cc7-7c526a0779fd','For GPs',NULL,1,'link'),(32671,143540,1,'2021-03-18 00:34:22','2021-03-18 00:34:22','fc86e1fa-09c7-4ed5-bfd1-9bea13a04158','For RACFs',NULL,1,'link'),(32672,143541,1,'2021-03-18 00:34:22','2021-03-18 00:34:22','7286ec9d-8095-4e91-afa5-a014bacc87bb','For community',NULL,1,'link'),(32673,143546,1,'2021-03-18 00:34:22','2021-03-18 00:34:22','abfee5ae-cfe7-4c84-94c8-af193c3fe1ae','Learn more','https://anytimehealthadvice.org.au/',1,'link'),(32674,143547,1,'2021-03-18 00:34:22','2021-03-18 00:34:22','90074e97-877f-4743-9d4b-de8b3e9e5a2a','Visit the symptom checker','https://www.healthdirect.gov.au/symptom-checker/tool',1,'link'),(32675,143548,1,'2021-03-18 00:34:22','2021-03-18 00:34:22','f7854127-a38c-48ca-bda7-7fe56c3b16ba','Order a fridge magnet','https://anytimehealthadvice.org.au/#free-magnet',1,'link'),(32676,143559,1,'2021-03-18 00:34:34','2021-03-18 00:34:34','c903d229-befb-49d0-a817-9e7c27c2b187','For GPs',NULL,1,'link'),(32677,143560,1,'2021-03-18 00:34:34','2021-03-18 00:34:34','991d745c-c1d5-4969-be69-9dbaa98d49fe','For RACFs',NULL,1,'link'),(32678,143561,1,'2021-03-18 00:34:34','2021-03-18 00:34:34','f7341179-1fb8-44dc-ab73-3c92eb9d8c86','For community',NULL,1,'link'),(32679,143566,1,'2021-03-18 00:34:35','2021-03-18 00:34:35','ed5c4d25-1517-4688-bb36-fb287af39144','Learn more','https://anytimehealthadvice.org.au/',1,'link'),(32680,143567,1,'2021-03-18 00:34:35','2021-03-18 00:34:35','2fa526ad-50a3-468a-8c9f-98119503599f','Visit the symptom checker','https://www.healthdirect.gov.au/symptom-checker/tool',1,'link'),(32681,143568,1,'2021-03-18 00:34:35','2021-03-18 00:34:35','1959b50a-f193-4846-aa61-f01dfffaadd9','Order a fridge magnet','https://anytimehealthadvice.org.au/#free-magnet',1,'link'),(32728,143662,1,'2021-03-18 00:46:31','2021-03-18 00:46:31','7b779bb4-f403-4d7d-bb0a-1edab2cda8fe','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(32729,143663,1,'2021-03-18 00:46:31','2021-03-18 00:46:31','b79736d2-7f31-4715-957c-92e6261cb19b','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(32730,143664,1,'2021-03-18 00:46:31','2021-03-18 00:46:31','18fb2c12-841c-405f-8276-2d488d6b8d9e','Book an appointment (for 1a eligibility)','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/book',1,'solid'),(32731,143667,1,'2021-03-18 00:46:31','2021-03-18 00:46:31','efcf01a2-81ef-41e5-952c-7fc2e2289950','Vaccine eligibility checker','https://covid-vaccine.healthdirect.gov.au/eligibility',1,'solid'),(32732,143668,1,'2021-03-18 00:46:31','2021-03-18 00:46:31','a22f1005-0c02-43bd-b8fe-9937ae886411','Vaccine service finder','https://covid-vaccine.healthdirect.gov.au/booking/?sid=ca72fa643907520b5ea1d669c7db91a41aa988b6',1,'solid'),(32733,143669,1,'2021-03-18 00:46:31','2021-03-18 00:46:31','0abf7fb0-235d-414e-9207-d5ec7f23ce58','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(32734,143672,1,'2021-03-18 00:46:31','2021-03-18 00:46:31','1e7c9b91-a977-445a-9083-96c4c05d4670','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(32735,143673,1,'2021-03-18 00:46:31','2021-03-18 00:46:31','766a2dfd-23fd-4c26-9d3a-0e674290a4de','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(32736,143674,1,'2021-03-18 00:46:31','2021-03-18 00:46:31','237d5b91-adea-4920-bd88-9dbab120d563','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(32737,143675,1,'2021-03-18 00:46:31','2021-03-18 00:46:31','3d482c4b-6ef2-4c90-baad-c1ff8ea451ab','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(32738,143680,1,'2021-03-18 00:46:31','2021-03-18 00:46:31','32b46128-7aed-4d2a-89a8-23947dddffcd','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(32739,143683,1,'2021-03-18 00:46:31','2021-03-18 00:46:31','b608fa8f-72d9-4b9c-b725-5e84ad05d3df','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(32740,143684,1,'2021-03-18 00:46:31','2021-03-18 00:46:31','3f740d83-8173-4361-a39d-540e294f6721','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(32741,143685,1,'2021-03-18 00:46:31','2021-03-18 00:46:31','51969b85-d3ac-4eaf-8e6f-4f796d702495','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(32742,143686,1,'2021-03-18 00:46:31','2021-03-18 00:46:31','d45b1189-c6d9-41f2-9ab3-3b8cfef6803e','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(32743,143687,1,'2021-03-18 00:46:31','2021-03-18 00:46:31','a0585ff2-1bb7-4f4c-9eea-f0175eba0fd2','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(32744,143693,1,'2021-03-18 00:46:31','2021-03-18 00:46:31','389a32c6-854c-4e67-a455-6cb484c2a573','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(32745,143694,1,'2021-03-18 00:46:31','2021-03-18 00:46:31','01ec01a0-b9be-4e35-9b02-f568bd46ed17','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(32746,143695,1,'2021-03-18 00:46:31','2021-03-18 00:46:31','6d7a0087-2a7a-458d-aa73-bfbe4c5d4e25','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(32861,143924,1,'2021-03-18 01:50:29','2021-03-18 01:50:29','db547def-b4eb-4d46-babb-47453c20b0c4','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(32862,143925,1,'2021-03-18 01:50:29','2021-03-18 01:50:29','9da78123-6f17-4c32-a9fb-f694015df605','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(32863,143926,1,'2021-03-18 01:50:29','2021-03-18 01:50:29','b24be6e0-e271-4db2-a5a6-8537b9d0bb5e','Book an appointment (for 1a eligibility)','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/book',1,'solid'),(32864,143929,1,'2021-03-18 01:50:29','2021-03-18 01:50:29','a4f683eb-747d-4889-905c-b95951ba4bfb','Vaccine eligibility checker','https://covid-vaccine.healthdirect.gov.au/eligibility',1,'solid'),(32865,143930,1,'2021-03-18 01:50:29','2021-03-18 01:50:29','05de2095-bd5c-4521-b67e-dd1a32d48ab6','Vaccine service finder','https://covid-vaccine.healthdirect.gov.au/booking/?sid=ca72fa643907520b5ea1d669c7db91a41aa988b6',1,'solid'),(32866,143931,1,'2021-03-18 01:50:29','2021-03-18 01:50:29','981f34ec-dbb0-424c-b549-130a08f6211b','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(32867,143934,1,'2021-03-18 01:50:29','2021-03-18 01:50:29','4b7cfb27-07ce-40d2-bb7d-09cdc6f07964','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(32868,143935,1,'2021-03-18 01:50:29','2021-03-18 01:50:29','ef61975c-6313-40a0-a244-9fee8a2827c7','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(32869,143936,1,'2021-03-18 01:50:29','2021-03-18 01:50:29','ecf628cb-e2c1-44fe-9839-4bf73b90e761','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(32870,143937,1,'2021-03-18 01:50:29','2021-03-18 01:50:29','b5adf350-d679-4d90-afa6-b057d275c01c','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(32871,143942,1,'2021-03-18 01:50:29','2021-03-18 01:50:29','b3933f17-33ba-42e8-bb17-a6403d2c8ef1','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(32872,143945,1,'2021-03-18 01:50:29','2021-03-18 01:50:29','ae375d2b-c242-4bdc-9756-9a22cfb8a0a6','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(32873,143946,1,'2021-03-18 01:50:29','2021-03-18 01:50:29','73b750bd-988a-4f82-bb3f-daf1349249ed','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(32874,143947,1,'2021-03-18 01:50:29','2021-03-18 01:50:29','d592fe8d-5159-4792-9eda-05aaa9bc5a56','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(32875,143948,1,'2021-03-18 01:50:29','2021-03-18 01:50:29','11b46fbc-b776-450d-97dc-fb048c56fcf5','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(32876,143949,1,'2021-03-18 01:50:29','2021-03-18 01:50:29','a938a64e-9b8e-44fa-ab88-d90422c65a3a','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(32877,143955,1,'2021-03-18 01:50:29','2021-03-18 01:50:29','4a4579a4-3b8c-4fb6-89be-85f7926042bb','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(32878,143956,1,'2021-03-18 01:50:29','2021-03-18 01:50:29','c8b47f4d-ef6f-4050-812d-9721a5aa11e6','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(32879,143957,1,'2021-03-18 01:50:29','2021-03-18 01:50:29','f68dfb66-010c-4e3e-9778-bdbd6baf8cfb','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(32880,143962,1,'2021-03-18 01:50:35','2021-03-18 01:50:35','22295307-89c9-4637-ab47-fd8890ee3027','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(32881,143963,1,'2021-03-18 01:50:35','2021-03-18 01:50:35','2f642043-adf8-4cf1-8c3c-c47de63743b3','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(32882,143964,1,'2021-03-18 01:50:35','2021-03-18 01:50:35','7b1b7443-b077-4b23-adb9-3eab2026ad50','Book an appointment (for 1a eligibility)','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/book',1,'solid'),(32883,143967,1,'2021-03-18 01:50:35','2021-03-18 01:50:35','c01838d4-6f78-4cf6-ba17-625489c73600','Vaccine eligibility checker','https://covid-vaccine.healthdirect.gov.au/eligibility',1,'solid'),(32884,143968,1,'2021-03-18 01:50:35','2021-03-18 01:50:35','897eedae-542f-456e-b852-0a2d2e0042a6','Vaccine service finder','https://covid-vaccine.healthdirect.gov.au/booking/?sid=ca72fa643907520b5ea1d669c7db91a41aa988b6',1,'solid'),(32885,143969,1,'2021-03-18 01:50:35','2021-03-18 01:50:35','0ed52d58-b573-4124-be0b-af456a37168f','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(32886,143972,1,'2021-03-18 01:50:35','2021-03-18 01:50:35','fa141576-aab5-4476-b0a4-664a4ca6d493','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(32887,143973,1,'2021-03-18 01:50:35','2021-03-18 01:50:35','04c473e0-9df9-49b2-8530-2e42941b7568','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(32888,143974,1,'2021-03-18 01:50:35','2021-03-18 01:50:35','18427115-40e9-4e37-b4cd-1af29e683b32','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(32889,143975,1,'2021-03-18 01:50:35','2021-03-18 01:50:35','abfa7dc1-76c4-48c7-a69d-e72db2228afa','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(32890,143980,1,'2021-03-18 01:50:35','2021-03-18 01:50:35','4b416035-4342-4367-a3fb-502c533578d4','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(32891,143983,1,'2021-03-18 01:50:35','2021-03-18 01:50:35','c9c81d2f-0b28-4b26-92ba-5ec639e92896','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(32892,143984,1,'2021-03-18 01:50:35','2021-03-18 01:50:35','2ee50069-bd3d-4342-a5b3-792c0bb636de','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(32893,143985,1,'2021-03-18 01:50:35','2021-03-18 01:50:35','54bc1fc7-33a4-4484-8b16-4f0f378a916f','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(32894,143986,1,'2021-03-18 01:50:35','2021-03-18 01:50:35','1160660d-a8e6-485c-84a9-4648d7b5fa35','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(32895,143987,1,'2021-03-18 01:50:35','2021-03-18 01:50:35','75260a07-a3b7-4bef-8746-91f14b1725d4','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(32896,143993,1,'2021-03-18 01:50:35','2021-03-18 01:50:35','80eb2b95-1c82-45a3-87c4-8650e8bc2f27','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(32897,143994,1,'2021-03-18 01:50:35','2021-03-18 01:50:35','7d5619a3-bdca-44b3-b0b0-ed4b4d8c08ed','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(32898,143995,1,'2021-03-18 01:50:35','2021-03-18 01:50:35','0b15e5f8-c222-48eb-a437-48156f371908','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(32904,144116,1,'2021-03-22 01:47:48','2021-03-22 01:47:48','e4e64fe8-7c4c-4375-80c5-7015074e0a24','More information',NULL,1,'solid'),(32905,144122,1,'2021-03-22 01:47:48','2021-03-22 01:47:48','8f966185-138d-4807-a3de-e791cf12739f','Stepped care fact sheet','https://d1jydvs1x4rbvt.cloudfront.net/downloads/WEB_MHAOD_stepped-care-factsheet.pdf?mtime=20200303105138&focal=none',1,'link'),(32906,144124,1,'2021-03-22 01:47:48','2021-03-22 01:47:48','1614e890-40fa-438f-880e-2dfbc7f64ed5','Download','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/National-MH-IAR-Guidance-17Dec2019_V1.03-Accessible.pdf?mtime=20200707192013&focal=none',1,'link'),(32907,144127,1,'2021-03-22 01:47:48','2021-03-22 01:47:48','250431d4-9974-4d0c-b004-c47a64955e57','Read Recovery',NULL,1,'link'),(32908,144128,1,'2021-03-22 01:47:48','2021-03-22 01:47:48','756287be-832e-41c9-be46-284557d6d89b','Subscribe to Recovery',NULL,1,'link'),(32909,144134,1,'2021-03-22 01:47:49','2021-03-22 01:47:49','7959683e-6c81-49b9-a457-75921030715d','More information',NULL,1,'solid'),(32910,144140,1,'2021-03-22 01:47:49','2021-03-22 01:47:49','5442e77c-08ef-4651-bf79-56382af9d295','Stepped care fact sheet','https://d1jydvs1x4rbvt.cloudfront.net/downloads/WEB_MHAOD_stepped-care-factsheet.pdf?mtime=20200303105138&focal=none',1,'link'),(32911,144142,1,'2021-03-22 01:47:49','2021-03-22 01:47:49','1cead824-5837-4ebd-87d8-0a7ba84be232','Download','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/National-MH-IAR-Guidance-17Dec2019_V1.03-Accessible.pdf?mtime=20200707192013&focal=none',1,'link'),(32912,144145,1,'2021-03-22 01:47:49','2021-03-22 01:47:49','f874fb0a-3796-4f0d-ad39-97537b4301dc','Read Recovery',NULL,1,'link'),(32913,144146,1,'2021-03-22 01:47:49','2021-03-22 01:47:49','b9c4b8dd-07e0-4815-b618-1520a485c073','Subscribe to Recovery',NULL,1,'link'),(32914,144152,1,'2021-03-22 01:47:55','2021-03-22 01:47:55','67e1a3cb-e519-4212-bdf6-716d7a6ce6c1','More information',NULL,1,'solid'),(32915,144158,1,'2021-03-22 01:47:55','2021-03-22 01:47:55','6a0541fd-f6af-4563-8972-3f3b43d71be7','Stepped care fact sheet','https://d1jydvs1x4rbvt.cloudfront.net/downloads/WEB_MHAOD_stepped-care-factsheet.pdf?mtime=20200303105138&focal=none',1,'link'),(32916,144160,1,'2021-03-22 01:47:56','2021-03-22 01:47:56','8401f5f8-c1f6-4633-979f-ccd8f9d052b3','Download','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/National-MH-IAR-Guidance-17Dec2019_V1.03-Accessible.pdf?mtime=20200707192013&focal=none',1,'link'),(32917,144163,1,'2021-03-22 01:47:56','2021-03-22 01:47:56','4a217617-919f-4ec6-a4e4-20aa13793fc1','Read Recovery',NULL,1,'link'),(32918,144164,1,'2021-03-22 01:47:56','2021-03-22 01:47:56','9fc6ab89-d900-44f4-b2b9-67457217d3c7','Subscribe to Recovery',NULL,1,'link'),(32921,144199,1,'2021-03-22 02:17:21','2021-03-22 02:17:21','d653b0a2-9ea0-433d-87aa-18a6c8b74602','Visit the website','https://mymentalhealth.org.au/',1,'solid'),(32922,144211,1,'2021-03-22 02:17:26','2021-03-22 02:17:26','150936e7-c041-4bbd-9f62-6b3a1cc979ee','Visit the website','https://mymentalhealth.org.au/',1,'solid'),(32923,144254,1,'2021-03-22 06:21:39','2021-03-22 06:21:39','7c7831b3-8349-4720-ba5e-16981a4e90f9','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(32924,144255,1,'2021-03-22 06:21:39','2021-03-22 06:21:39','a1e98e6e-922e-4795-9ceb-1f3ddafd58aa','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(32925,144257,1,'2021-03-22 06:21:39','2021-03-22 06:21:39','7435ea43-a7c3-44ab-9d44-faf7231d20e7','Download our FAQs for participating phase 1b practices','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/COVID-19-Vaccine-FAQ_Brisbane-North-PHN.docx?mtime=20210312163228&focal=none',1,'solid'),(32926,144258,1,'2021-03-22 06:21:39','2021-03-22 06:21:39','879d2389-6b6a-45fe-84ee-886a040560ae','Download our FAQs for non-participating phase 1b practices','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/COVID-19-Vaccine-FAQ_Brisbane-North-PHN_non-participating-practices.pdf?mtime=20210315142631&focal=none',1,'solid'),(32927,144261,1,'2021-03-22 06:21:39','2021-03-22 06:21:39','118d1714-c29e-410c-827b-0463f6862099','Read the latest health alerts',NULL,1,'solid'),(32928,144264,1,'2021-03-22 06:21:39','2021-03-22 06:21:39','86e55694-49e4-40c2-b10c-118b66659e94','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(32929,144266,1,'2021-03-22 06:21:39','2021-03-22 06:21:39','f6116091-c558-4493-8c16-e30e0efde9fa','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(32930,144269,1,'2021-03-22 06:21:39','2021-03-22 06:21:39','8750db9e-9d2e-4d6b-8df1-188917630064','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(32931,144271,1,'2021-03-22 06:21:39','2021-03-22 06:21:39','8efb5bbe-90b1-492a-9831-7d1bad2b922b','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(32932,144273,1,'2021-03-22 06:21:39','2021-03-22 06:21:39','0d2613a1-123c-4659-bcd1-981a6d385047','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(32933,144276,1,'2021-03-22 06:21:40','2021-03-22 06:21:40','cb4d7889-f551-407c-a3c5-10b32f866e5d','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(32934,144279,1,'2021-03-22 06:21:40','2021-03-22 06:21:40','fc68d3d8-b9c7-4a31-8826-25edf4b83936','Subscribe to updates',NULL,1,'solid'),(32935,144281,1,'2021-03-22 06:21:40','2021-03-22 06:21:40','6a3b7a3d-bd70-4386-996d-4e7e41a89de7','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(32936,144282,1,'2021-03-22 06:21:40','2021-03-22 06:21:40','0a36d8d8-9715-49a3-b7a7-48a9e961a947','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(32937,144428,1,'2021-03-23 23:34:25','2021-03-23 23:34:25','8bf11112-03f3-42e1-96d9-2b1f6da5f3a2','More information',NULL,1,'solid'),(32938,144434,1,'2021-03-23 23:34:25','2021-03-23 23:34:25','4da9d013-4b05-4171-95dd-84178ddad773','Stepped care fact sheet','https://d1jydvs1x4rbvt.cloudfront.net/downloads/WEB_MHAOD_stepped-care-factsheet.pdf?mtime=20200303105138&focal=none',1,'link'),(32939,144436,1,'2021-03-23 23:34:25','2021-03-23 23:34:25','0473ae4d-f9db-48a4-8bca-71a78be73134','Download','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/National-MH-IAR-Guidance-17Dec2019_V1.03-Accessible.pdf?mtime=20200707192013&focal=none',1,'link'),(32940,144439,1,'2021-03-23 23:34:25','2021-03-23 23:34:25','9b03a470-52bf-4412-bad4-81a342c76870','Read Recovery',NULL,1,'link'),(32941,144440,1,'2021-03-23 23:34:25','2021-03-23 23:34:25','1f002e6e-8b35-47eb-b554-ccdb4e73f881','Subscribe to Recovery',NULL,1,'link'),(32946,144461,1,'2021-03-24 00:49:51','2021-03-24 00:49:51','6de7d8d2-865d-4b44-b91c-66e208c47708','Read the plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_MNHHS_Planning_for_Wellness_Regional_Plan_Sep2018_FINAL_WEB1.pdf?mtime=20200228162752&focal=none',1,'solid'),(32947,144462,1,'2021-03-24 00:49:51','2021-03-24 00:49:51','22bfa773-acee-466c-8dff-652232d3e18f','Visit the website','https://planningforwellbeing.org.au/',0,'solid'),(32950,144474,1,'2021-03-24 00:55:34','2021-03-24 00:55:34','d0c7e44d-e00f-4d11-a748-6a9328bdeb37','Read the plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_MNHHS_Planning_for_Wellness_Regional_Plan_Sep2018_FINAL_WEB1.pdf?mtime=20200228162752&focal=none',1,'solid'),(32951,144475,1,'2021-03-24 00:55:34','2021-03-24 00:55:34','b7fff530-c817-471a-81b7-b5a0c7854ed6','Visit the website','https://planningforwellbeing.org.au/',0,'solid'),(32952,144481,1,'2021-03-24 00:55:34','2021-03-24 00:55:34','1c47431a-e614-498d-870a-724b3c1223fd','Read the plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_MNHHS_Planning_for_Wellness_Regional_Plan_Sep2018_FINAL_WEB1.pdf?mtime=20200228162752&focal=none',1,'solid'),(32953,144482,1,'2021-03-24 00:55:34','2021-03-24 00:55:34','e24966e1-0b6c-473e-b90e-aa0c03b6b8fa','Visit the website','https://planningforwellbeing.org.au/',0,'solid'),(32954,144488,1,'2021-03-24 00:58:48','2021-03-24 00:58:48','12fba2d6-aadb-40b5-b77c-8715a093b948','Read the plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_MNHHS_Planning_for_Wellness_Regional_Plan_Sep2018_FINAL_WEB1.pdf?mtime=20200228162752&focal=none',1,'solid'),(32955,144489,1,'2021-03-24 00:58:48','2021-03-24 00:58:48','4aa89a1b-92d7-41af-a8ca-da693b8beae7','Visit the website','https://planningforwellbeing.org.au/',0,'solid'),(33001,144930,1,'2021-03-24 05:59:36','2021-03-24 05:59:36','d14d794e-201b-4ce3-b6b1-efc0d67045ac','COVID-19 vaccine information for GPs',NULL,1,'solid'),(33002,144931,1,'2021-03-24 05:59:36','2021-03-24 05:59:36','554801b8-5989-42e2-9485-afb2b062ac20','COVID-19 vaccine information for RACFs',NULL,1,'solid'),(33003,144932,1,'2021-03-24 05:59:36','2021-03-24 05:59:36','88bfc3b3-039e-4b13-84b7-edfe33188e69','COVID-19 vaccine information for community',NULL,1,'solid'),(33004,144937,1,'2021-03-24 05:59:36','2021-03-24 05:59:36','0c04691e-5bc5-45a5-8ebd-bbe4257c9251','COVID-19 vaccine information for GPs',NULL,1,'solid'),(33005,144938,1,'2021-03-24 05:59:36','2021-03-24 05:59:36','b20edcbb-7bc5-4586-99f0-96efbafaa22d','COVID-19 vaccine information for RACFs',NULL,1,'solid'),(33006,144939,1,'2021-03-24 05:59:36','2021-03-24 05:59:36','469d51a9-8619-4440-a89c-a8fcf64fe529','COVID-19 vaccine information for community',NULL,1,'solid'),(33007,144944,1,'2021-03-24 05:59:39','2021-03-24 05:59:39','7f23445a-9393-4345-b382-66a3b59f1eed','COVID-19 vaccine information for GPs',NULL,1,'solid'),(33008,144945,1,'2021-03-24 05:59:39','2021-03-24 05:59:39','7a8eabaa-891d-452b-a2fc-dfba2cb4c82b','COVID-19 vaccine information for RACFs',NULL,1,'solid'),(33009,144946,1,'2021-03-24 05:59:39','2021-03-24 05:59:39','e2dcf53a-0c35-40ab-ab4f-d5a8eb9875bf','COVID-19 vaccine information for community',NULL,1,'solid'),(33011,145003,1,'2021-03-25 05:20:30','2021-03-25 05:20:30','bbccfca6-89b8-405b-a5fc-52a52c84d4dc','Visit the website','https://mymentalhealth.org.au/',1,'solid'),(33012,145015,1,'2021-03-25 05:20:31','2021-03-25 05:20:31','9eebd6f0-ab86-4412-91b3-4f02ec5623dd','Visit the website','https://mymentalhealth.org.au/',1,'solid'),(33013,145027,1,'2021-03-25 05:20:35','2021-03-25 05:20:35','d2227bf8-21d0-46f1-a89c-cf0b8c688744','Visit the website','https://mymentalhealth.org.au/',1,'solid'),(33014,145051,1,'2021-03-26 00:22:30','2021-03-26 00:22:30','e39d6b2d-d839-4f58-b3b0-80ab6f72eaee','Learn more','http://redcliffeyouthspace.org/',1,'link'),(33015,145054,1,'2021-03-26 00:22:30','2021-03-26 00:22:30','b2828e5f-e793-46ec-8846-18e413be3ead','Contact Act for Kids','https://www.actforkids.com.au/contact-us/',1,'solid'),(33016,145057,1,'2021-03-26 00:22:30','2021-03-26 00:22:30','c190fa75-20b9-417f-94a6-079619c2c511','Learn more','https://www.childrens.health.qld.gov.au/chq/our-services/mental-health-services/',1,'solid'),(33017,145058,1,'2021-03-26 00:22:30','2021-03-26 00:22:30','d084e6ab-4f3f-412d-99bf-ec11fc071b59','Find your local CYMHS','https://www.childrens.health.qld.gov.au/chq/our-services/mental-health-services/find-your-local-cymhs/',1,'solid'),(33018,145064,1,'2021-03-26 00:24:08','2021-03-26 00:24:08','5f06b811-309e-4403-8456-37907b2ee2cc','Learn more','http://redcliffeyouthspace.org/',1,'link'),(33019,145067,1,'2021-03-26 00:24:08','2021-03-26 00:24:08','e520fa97-ab58-4e4c-a8f6-4b471d5f6216','Contact Act for Kids','https://www.actforkids.com.au/contact-us/',1,'solid'),(33020,145070,1,'2021-03-26 00:24:08','2021-03-26 00:24:08','f2761b11-ce66-4cb1-a3f0-b9e82a4ecd5b','Learn more','https://www.childrens.health.qld.gov.au/chq/our-services/mental-health-services/',1,'solid'),(33021,145071,1,'2021-03-26 00:24:08','2021-03-26 00:24:08','aadf9401-229a-44da-ad80-de90c2e86f66','Find your local CYMHS','https://www.childrens.health.qld.gov.au/chq/our-services/mental-health-services/find-your-local-cymhs/',1,'solid'),(33029,145103,1,'2021-03-26 00:46:15','2021-03-26 00:46:15','f8f60abb-ba76-410c-baf7-62d142c6579d','General Practitioner Liaison Officer – Health Systems Improvement & Caboolture Hospital','https://brisbanenorthphn.org.au/jobs/general-practitioner-liaison-officer-health-systems-improvement-caboolture-hospital',1,'solid'),(33030,145104,1,'2021-03-26 00:46:15','2021-03-26 00:46:15','606077c1-f597-41fa-b870-120c7159d361','Mental Health Program Development Officer','https://brisbanenorthphn.org.au/jobs/mental-health-program-development-officer',1,'solid'),(33031,145107,1,'2021-03-26 00:46:15','2021-03-26 00:46:15','5fdbc8b1-d9f8-438c-8d60-426b870f0826','Browse local positions vacant',NULL,0,'solid'),(33032,145113,1,'2021-03-26 00:46:23','2021-03-26 00:46:23','0f47dc3d-662c-4d78-a7e3-4eed82fd6e7f','General Practitioner Liaison Officer – Health Systems Improvement & Caboolture Hospital','https://brisbanenorthphn.org.au/jobs/general-practitioner-liaison-officer-health-systems-improvement-caboolture-hospital',1,'solid'),(33033,145114,1,'2021-03-26 00:46:23','2021-03-26 00:46:23','073165b5-80d9-452d-9113-db81d615c49c','Mental Health Program Development Officer','https://brisbanenorthphn.org.au/jobs/mental-health-program-development-officer',1,'solid'),(33034,145117,1,'2021-03-26 00:46:23','2021-03-26 00:46:23','98c54197-d0f9-429f-a3a1-441328f54cc4','Browse local positions vacant',NULL,0,'solid'),(33040,145148,1,'2021-03-26 01:10:07','2021-03-26 01:10:07','937fc986-2c4e-4c81-b31c-07aa2c8f13c3','Desktop guide to frequently used MBS item numbers','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Desktop-guide-to-frequently-used-MBS-item-numbers-for-General-Practice_V3_210304.docx?mtime=20210308152710&focal=none',1,'solid'),(33041,145150,1,'2021-03-26 01:10:07','2021-03-26 01:10:07','fe6d37dd-deda-482b-98bb-96fa64522f2e','GP induction checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/FIN_New-Practitioner-Induction-Kit-2020_200114-1.docx',1,'solid'),(33042,145151,1,'2021-03-26 01:10:07','2021-03-26 01:10:07','dcd3bed7-24c5-4001-b8bd-61f36ee4171a','Practice manager induction checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/FIN_Practice-Manager-Induction-Checklist-and-Record-HP_200114.docx?mtime=20201118082616&focal=none',1,'solid'),(33043,145152,1,'2021-03-26 01:10:07','2021-03-26 01:10:07','f1b61c3c-df96-46e7-a6d2-540524d5003e','Practice nurse induction checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/Nurse-Induction-Checklist-and-Record-HP.docx',1,'solid'),(33044,145155,1,'2021-03-26 01:10:07','2021-03-26 01:10:07','a365c4dd-e757-4668-87f4-466a0b920813','Get support',NULL,0,'solid'),(33045,145163,1,'2021-03-26 01:10:08','2021-03-26 01:10:08','8aa30d6c-07dc-4391-a735-ac41528da0de','Desktop guide to frequently used MBS item numbers','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Desktop-guide-to-frequently-used-MBS-item-numbers-for-General-Practice_V3_210304.docx?mtime=20210308152710&focal=none',1,'solid'),(33046,145165,1,'2021-03-26 01:10:08','2021-03-26 01:10:08','82cc60c7-6884-443e-b601-4a767855afd5','GP induction checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/FIN_New-Practitioner-Induction-Kit-2020_200114-1.docx',1,'solid'),(33047,145166,1,'2021-03-26 01:10:08','2021-03-26 01:10:08','348f7fd5-0490-4685-bdc6-744bb94013ba','Practice manager induction checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/FIN_Practice-Manager-Induction-Checklist-and-Record-HP_200114.docx?mtime=20201118082616&focal=none',1,'solid'),(33048,145167,1,'2021-03-26 01:10:08','2021-03-26 01:10:08','7cbf48bb-5ad4-418d-9f1b-270fefaf6e43','Practice nurse induction checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/Nurse-Induction-Checklist-and-Record-HP.docx',1,'solid'),(33049,145170,1,'2021-03-26 01:10:08','2021-03-26 01:10:08','34d68fcd-04e5-497b-95bd-8564da0b57be','Get support',NULL,0,'solid'),(33050,145178,1,'2021-03-26 01:10:13','2021-03-26 01:10:13','6cd7061f-0fd1-40dc-94fa-dc6e7357269a','Desktop guide to frequently used MBS item numbers','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Desktop-guide-to-frequently-used-MBS-item-numbers-for-General-Practice_V3_210304.docx?mtime=20210308152710&focal=none',1,'solid'),(33051,145180,1,'2021-03-26 01:10:13','2021-03-26 01:10:13','98f4548e-419b-4ca0-bb0b-6cadbff09363','GP induction checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/FIN_New-Practitioner-Induction-Kit-2020_200114-1.docx',1,'solid'),(33052,145181,1,'2021-03-26 01:10:13','2021-03-26 01:10:13','b87cb5bf-cc6d-48c6-8bb0-fa38082275a9','Practice manager induction checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/FIN_Practice-Manager-Induction-Checklist-and-Record-HP_200114.docx?mtime=20201118082616&focal=none',1,'solid'),(33053,145182,1,'2021-03-26 01:10:13','2021-03-26 01:10:13','76139754-22b4-486a-822d-0f1d2be8bfd2','Practice nurse induction checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/Nurse-Induction-Checklist-and-Record-HP.docx',1,'solid'),(33054,145185,1,'2021-03-26 01:10:13','2021-03-26 01:10:13','14ccecb0-5d6e-435c-afd1-4d963ec357cd','Get support',NULL,0,'solid'),(33059,145199,1,'2021-03-26 01:58:00','2021-03-26 01:58:00','52d05c85-84b5-425d-8b1a-7cfdceeb82cc','More information on the EOI','https://www.ppaonline.com.au/covidvaccine-eoi',1,'solid'),(33060,145202,1,'2021-03-26 01:58:00','2021-03-26 01:58:00','15c88cc5-25aa-4c85-9a66-9160ca5027fc','More information','http://www.mbsonline.gov.au/internet/mbsonline/publishing.nsf/Content/factsheet-current',1,'solid'),(33061,145205,1,'2021-03-26 01:58:00','2021-03-26 01:58:00','3a8ee9f3-0835-49c3-ac69-4f619b7d0df8','Download','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-Financial-support-measures-for-service-providers.pdf?mtime=20200526145136&focal=none',1,'solid'),(33062,145209,1,'2021-03-26 01:58:00','2021-03-26 01:58:00','7ba080c3-b9f8-4985-b311-c95fd690883f','More information on the EOI','https://www.ppaonline.com.au/covidvaccine-eoi',1,'solid'),(33063,145212,1,'2021-03-26 01:58:00','2021-03-26 01:58:00','6cb0cc4e-a12e-4fc8-a2c4-c619df174e06','More information','http://www.mbsonline.gov.au/internet/mbsonline/publishing.nsf/Content/factsheet-current',1,'solid'),(33064,145215,1,'2021-03-26 01:58:00','2021-03-26 01:58:00','62ccf6a0-6c3d-4e6e-af4f-2893fccdffa0','Download','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-Financial-support-measures-for-service-providers.pdf?mtime=20200526145136&focal=none',1,'solid'),(33065,145219,1,'2021-03-26 01:58:09','2021-03-26 01:58:09','6f67b361-1db0-49fb-91ba-c5013d911f56','More information on the EOI','https://www.ppaonline.com.au/covidvaccine-eoi',1,'solid'),(33066,145222,1,'2021-03-26 01:58:09','2021-03-26 01:58:09','ceada5a5-4e72-4b96-917e-0ba1c6881256','More information','http://www.mbsonline.gov.au/internet/mbsonline/publishing.nsf/Content/factsheet-current',1,'solid'),(33067,145225,1,'2021-03-26 01:58:09','2021-03-26 01:58:09','84edf5db-0164-4d51-951e-2083e46683d7','Download','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-Financial-support-measures-for-service-providers.pdf?mtime=20200526145136&focal=none',1,'solid'),(33105,145303,1,'2021-03-26 01:59:47','2021-03-26 01:59:47','91034a9e-c7da-4d4a-b342-db6561d6d864','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(33106,145304,1,'2021-03-26 01:59:47','2021-03-26 01:59:47','9d9d5471-1062-4de2-8d5f-563716e25819','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(33107,145307,1,'2021-03-26 01:59:47','2021-03-26 01:59:47','e0469313-8dbe-4b4f-802b-45f4b5a1f7eb','Vaccine eligibility checker','https://covid-vaccine.healthdirect.gov.au/eligibility',1,'solid'),(33108,145308,1,'2021-03-26 01:59:47','2021-03-26 01:59:47','f8a85c3f-7777-4652-b9ff-aa57d3cebe65','Vaccine service finder','https://covid-vaccine.healthdirect.gov.au/booking/?sid=ca72fa643907520b5ea1d669c7db91a41aa988b6',1,'solid'),(33109,145309,1,'2021-03-26 01:59:47','2021-03-26 01:59:47','d909c818-f480-4ae8-9860-f90a169161a5','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(33110,145312,1,'2021-03-26 01:59:47','2021-03-26 01:59:47','4000228a-1fa8-40bd-8a76-e04fd045213e','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(33111,145313,1,'2021-03-26 01:59:47','2021-03-26 01:59:47','a332c23b-cfe4-4ad9-bf88-9d40023f88e2','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(33112,145314,1,'2021-03-26 01:59:47','2021-03-26 01:59:47','adeb5812-5790-4432-bcc0-5e77561c8589','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(33113,145315,1,'2021-03-26 01:59:47','2021-03-26 01:59:47','1f6594ad-e35b-4db0-b43b-c8f64295c98d','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(33114,145320,1,'2021-03-26 01:59:47','2021-03-26 01:59:47','b9130a0d-5c27-4579-9417-e8d535f1e720','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(33115,145323,1,'2021-03-26 01:59:47','2021-03-26 01:59:47','cf95a422-dd76-4034-b422-a021683e1566','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(33116,145324,1,'2021-03-26 01:59:47','2021-03-26 01:59:47','3fff192d-2b03-4cec-805b-a42e0c05ae1f','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(33117,145325,1,'2021-03-26 01:59:47','2021-03-26 01:59:47','df373f52-159c-442f-8302-322c0def184c','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(33118,145326,1,'2021-03-26 01:59:47','2021-03-26 01:59:47','ae0d1708-d8c6-48a5-a792-06a0ca837e01','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(33119,145327,1,'2021-03-26 01:59:47','2021-03-26 01:59:47','211ab34b-7469-470a-baa2-6a84793fb8c3','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(33120,145333,1,'2021-03-26 01:59:47','2021-03-26 01:59:47','4b8a24fb-d00c-45a3-80b8-4d803e357ac1','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(33121,145334,1,'2021-03-26 01:59:47','2021-03-26 01:59:47','f41ba2aa-aa2b-420a-a0a1-e3157f561b49','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(33122,145335,1,'2021-03-26 01:59:47','2021-03-26 01:59:47','46a354f3-38d2-4919-9c5b-34ef617f39c2','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(33123,145340,1,'2021-03-26 01:59:53','2021-03-26 01:59:53','6c4123c6-1698-4e49-9523-be91931afb62','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(33124,145341,1,'2021-03-26 01:59:53','2021-03-26 01:59:53','14c5d7d9-133d-45aa-b8fb-59f19e9b4204','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(33125,145344,1,'2021-03-26 01:59:54','2021-03-26 01:59:54','43f2d595-a4b0-49a2-b9ea-c0704208ed4c','Vaccine eligibility checker','https://covid-vaccine.healthdirect.gov.au/eligibility',1,'solid'),(33126,145345,1,'2021-03-26 01:59:54','2021-03-26 01:59:54','aa4bf56d-30cf-4bb1-968d-d95d6784f9ac','Vaccine service finder','https://covid-vaccine.healthdirect.gov.au/booking/?sid=ca72fa643907520b5ea1d669c7db91a41aa988b6',1,'solid'),(33127,145346,1,'2021-03-26 01:59:54','2021-03-26 01:59:54','6cffb2df-47e4-41f2-9e88-892d81df6fc9','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(33128,145349,1,'2021-03-26 01:59:54','2021-03-26 01:59:54','9ba80429-bc56-41b5-8cf7-fabb6d5b7528','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(33129,145350,1,'2021-03-26 01:59:54','2021-03-26 01:59:54','997d716b-d6aa-4be8-ab58-7ca988b3f69e','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(33130,145351,1,'2021-03-26 01:59:54','2021-03-26 01:59:54','9408677b-e68d-4d88-9da9-dbcd0fbfda12','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(33131,145352,1,'2021-03-26 01:59:54','2021-03-26 01:59:54','aa170b41-3a8b-42b9-add2-c89fdbe500c2','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(33132,145357,1,'2021-03-26 01:59:54','2021-03-26 01:59:54','842304a1-98d4-463e-ad05-da709e38baa6','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(33133,145360,1,'2021-03-26 01:59:54','2021-03-26 01:59:54','0710d4f8-44e2-47c1-966a-c440e7b6810d','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(33134,145361,1,'2021-03-26 01:59:54','2021-03-26 01:59:54','53223864-b77e-4251-a90d-f3b8d2467aa5','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(33135,145362,1,'2021-03-26 01:59:54','2021-03-26 01:59:54','5b4c027d-5f85-46a7-aeb3-d05f8819bb0e','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(33136,145363,1,'2021-03-26 01:59:54','2021-03-26 01:59:54','a124c152-3d76-4129-85b1-2562cb7e282f','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(33137,145364,1,'2021-03-26 01:59:54','2021-03-26 01:59:54','f546f0c4-3d3a-4293-8399-083c80dfe2e1','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(33138,145370,1,'2021-03-26 01:59:54','2021-03-26 01:59:54','df42d812-04f5-4a34-b51f-cdd57c370833','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(33139,145371,1,'2021-03-26 01:59:54','2021-03-26 01:59:54','eb77e553-6e99-460c-9da1-d4ee017ddfd1','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(33140,145372,1,'2021-03-26 01:59:54','2021-03-26 01:59:54','227a2166-7de4-4232-b0ff-671036edb409','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(33175,145444,1,'2021-03-26 02:03:58','2021-03-26 02:03:58','a3507af5-b8a9-411d-8ecc-10c7b5fe39ee','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(33176,145448,1,'2021-03-26 02:03:58','2021-03-26 02:03:58','24d0c495-25b0-46a8-a76f-8e4824646e4e','For GPs',NULL,1,'outline'),(33177,145449,1,'2021-03-26 02:03:58','2021-03-26 02:03:58','7e78273e-0d53-4533-adb3-8367a4f1aa0e','For RACFs',NULL,1,'outline'),(33178,145450,1,'2021-03-26 02:03:58','2021-03-26 02:03:58','a4a1ebc8-c9ee-4d9c-810d-0b18e3a80f00','For community',NULL,1,'outline'),(33179,145453,1,'2021-03-26 02:03:58','2021-03-26 02:03:58','c3ff0d1d-0711-422f-87a3-61d4c726467d','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(33180,145456,1,'2021-03-26 02:03:58','2021-03-26 02:03:58','66fb3a0c-7bac-4e4d-b7b6-0e27005d9bf9','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(33181,145458,1,'2021-03-26 02:03:59','2021-03-26 02:03:59','1cd8fb20-4799-4bb3-a90d-b310217c26bf','15 March','https://icampaign.brightlabs.com.au/v/9655/1735670870/email.html?k=v6G-8gVJ_rvtwoUd2fpEBZ1ZIi86nI02To7omwA0FiU',1,'solid'),(33182,145459,1,'2021-03-26 02:03:59','2021-03-26 02:03:59','3208e9f4-5745-4e03-8cc8-1cbbf3f9b6e7','1 March','https://icampaign.brightlabs.com.au/v/9655/1735665136/email.html?k=W4xOP02DyXw184GaxNI6k7EVQ0egPoLmOBx9MgO143c',1,'solid'),(33183,145460,1,'2021-03-26 02:03:59','2021-03-26 02:03:59','10e11ca7-8158-4101-8a09-c6b3bab4b738','23 Feb','https://icampaign.brightlabs.com.au/v/9655/1735663126/email.html?k=onC8sbtofWx9q330xxdb_nSrHla73svE28AQrrximRk',1,'solid'),(33184,145461,1,'2021-03-26 02:03:59','2021-03-26 02:03:59','7b9ea234-f369-47e9-a293-faa7d3886d6a','16 Feb','https://icampaign.brightlabs.com.au/em/message/email/view.php?id=1530234&a=9655&k=GD2emXHkRKAzQIJ0fJHGwEIFIeE2dz_ZwHX44DMI5rE',0,'solid'),(33185,145462,1,'2021-03-26 02:03:59','2021-03-26 02:03:59','09d2fa8d-2a60-4078-80b8-37d242252036','1 Feb','https://icampaign.brightlabs.com.au/v/9655/1735651905/email.html?k=xTKPedZf_tzusLKj4h0yTxaX4y8YRk-ekPmKiwMTh58',1,'solid'),(33186,145464,1,'2021-03-26 02:03:59','2021-03-26 02:03:59','c6cad540-a7df-461f-a8b0-56ee77af4f0a','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(33187,145465,1,'2021-03-26 02:03:59','2021-03-26 02:03:59','bf347266-7fe4-487e-9860-7d2d7952f94f','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(33188,145466,1,'2021-03-26 02:03:59','2021-03-26 02:03:59','8b4d98e0-65b3-4a96-a848-8586d9f3e229','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(33189,145469,1,'2021-03-26 02:03:59','2021-03-26 02:03:59','9f71762b-cb5d-4cfd-aabd-f2e289eb45e9','Department of Health','https://www.health.gov.au/',1,'outline'),(33190,145470,1,'2021-03-26 02:03:59','2021-03-26 02:03:59','ffb7a37d-074d-4ac6-afc1-d4700e66f30f','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(33191,145471,1,'2021-03-26 02:03:59','2021-03-26 02:03:59','d840b326-d177-4a8e-9a10-98e1450bdc6d','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(33193,145479,1,'2021-03-26 02:24:40','2021-03-26 02:24:40','db3a15e4-bf44-4833-beda-5737e5050057','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(33194,145483,1,'2021-03-26 02:24:40','2021-03-26 02:24:40','8b81cfae-fca1-4ee6-a838-f11eb0fceb8d','For GPs',NULL,1,'outline'),(33195,145484,1,'2021-03-26 02:24:40','2021-03-26 02:24:40','0018c2dd-3200-4123-a1d1-92f06a16937a','For RACFs',NULL,1,'outline'),(33196,145485,1,'2021-03-26 02:24:40','2021-03-26 02:24:40','475467ce-dbf9-49aa-85ed-5c10ed76cdfe','For community',NULL,1,'outline'),(33197,145488,1,'2021-03-26 02:24:40','2021-03-26 02:24:40','d696bc4c-9564-4769-ab31-41e6e2031f2d','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(33198,145491,1,'2021-03-26 02:24:40','2021-03-26 02:24:40','b53e86b5-91a7-4f5a-b5d8-3b8b975577fe','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(33199,145493,1,'2021-03-26 02:24:40','2021-03-26 02:24:40','9c3044e9-3bd4-4699-b8f6-2a198656304c','26 March','https://icampaign.brightlabs.com.au/v/9655/1735678955/email.html?k=57opiRFaAREADub622I5WpeNkkc0nnbNUuEGg54uUKo',1,'solid'),(33200,145494,1,'2021-03-26 02:24:40','2021-03-26 02:24:40','cf743eff-55ea-4202-aced-e414705ef285','15 March','https://icampaign.brightlabs.com.au/v/9655/1735670870/email.html?k=v6G-8gVJ_rvtwoUd2fpEBZ1ZIi86nI02To7omwA0FiU',1,'solid'),(33201,145495,1,'2021-03-26 02:24:40','2021-03-26 02:24:40','c98321e6-c418-43fb-852e-6b506b2e878d','1 March','https://icampaign.brightlabs.com.au/v/9655/1735665136/email.html?k=W4xOP02DyXw184GaxNI6k7EVQ0egPoLmOBx9MgO143c',1,'solid'),(33202,145496,1,'2021-03-26 02:24:40','2021-03-26 02:24:40','39eb96dc-bb7b-4950-89a9-cdaa6fb4b131','23 Feb','https://icampaign.brightlabs.com.au/v/9655/1735663126/email.html?k=onC8sbtofWx9q330xxdb_nSrHla73svE28AQrrximRk',1,'solid'),(33203,145497,1,'2021-03-26 02:24:40','2021-03-26 02:24:40','4557b72b-3750-48fc-9540-f971702ec05b','16 Feb','https://icampaign.brightlabs.com.au/em/message/email/view.php?id=1530234&a=9655&k=GD2emXHkRKAzQIJ0fJHGwEIFIeE2dz_ZwHX44DMI5rE',0,'solid'),(33204,145498,1,'2021-03-26 02:24:40','2021-03-26 02:24:40','1cff36ea-29ae-44df-86d5-02aac9f266dc','1 Feb','https://icampaign.brightlabs.com.au/v/9655/1735651905/email.html?k=xTKPedZf_tzusLKj4h0yTxaX4y8YRk-ekPmKiwMTh58',1,'solid'),(33205,145500,1,'2021-03-26 02:24:40','2021-03-26 02:24:40','1381dbfb-b001-4895-aed9-808ab608fd31','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(33206,145501,1,'2021-03-26 02:24:40','2021-03-26 02:24:40','c7400673-49b7-4494-9260-1a2f40ab7dd2','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(33207,145502,1,'2021-03-26 02:24:40','2021-03-26 02:24:40','f1b71bbc-5835-4dd7-aa54-d0601619d7fa','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(33208,145505,1,'2021-03-26 02:24:40','2021-03-26 02:24:40','639fb9db-f93a-4283-a0a1-1fa551578c42','Department of Health','https://www.health.gov.au/',1,'outline'),(33209,145506,1,'2021-03-26 02:24:40','2021-03-26 02:24:40','335ad362-50f9-414f-ba8e-0825d1a97c26','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(33210,145507,1,'2021-03-26 02:24:40','2021-03-26 02:24:40','fe1e3e3a-2204-4a2a-9a6d-349746bfd7ec','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(33211,145518,1,'2021-03-26 03:13:59','2021-03-26 03:13:59','a39db9e4-5f48-440e-8373-fdf5e898942b','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(33212,145522,1,'2021-03-26 03:13:59','2021-03-26 03:13:59','ac2d035a-867f-4a28-b7b6-9a9273a3a19e','For GPs',NULL,1,'outline'),(33213,145523,1,'2021-03-26 03:13:59','2021-03-26 03:13:59','70b70720-7436-4f9f-9d6d-9a51da8bc4d5','For RACFs',NULL,1,'outline'),(33214,145524,1,'2021-03-26 03:13:59','2021-03-26 03:13:59','1a7f6b36-509b-4801-aa42-aa143e7fe72f','For community',NULL,1,'outline'),(33215,145527,1,'2021-03-26 03:13:59','2021-03-26 03:13:59','33e13f6a-414c-4f26-83ed-d08de304537a','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(33216,145530,1,'2021-03-26 03:13:59','2021-03-26 03:13:59','f38ac969-0fdb-42fa-b22d-875bcc2b8ac9','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(33217,145532,1,'2021-03-26 03:13:59','2021-03-26 03:13:59','d927ab3d-2f96-41cb-a168-866d0434dfd7','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(33218,145533,1,'2021-03-26 03:13:59','2021-03-26 03:13:59','0b33d6e2-c28b-41c5-b1f1-5d5de22df86d','15 March','https://icampaign.brightlabs.com.au/v/9655/1735670870/email.html?k=v6G-8gVJ_rvtwoUd2fpEBZ1ZIi86nI02To7omwA0FiU',1,'solid'),(33219,145534,1,'2021-03-26 03:13:59','2021-03-26 03:13:59','01744de6-c78a-4ae4-a259-96453c8bef27','1 March','https://icampaign.brightlabs.com.au/v/9655/1735665136/email.html?k=W4xOP02DyXw184GaxNI6k7EVQ0egPoLmOBx9MgO143c',1,'solid'),(33220,145535,1,'2021-03-26 03:13:59','2021-03-26 03:13:59','4be459c5-9bac-4c70-9900-b7d3010b2b9b','23 Feb','https://icampaign.brightlabs.com.au/v/9655/1735663126/email.html?k=onC8sbtofWx9q330xxdb_nSrHla73svE28AQrrximRk',1,'solid'),(33221,145536,1,'2021-03-26 03:13:59','2021-03-26 03:13:59','a16c6d31-5b7a-494a-b866-44cc7b863f24','16 Feb','https://icampaign.brightlabs.com.au/em/message/email/view.php?id=1530234&a=9655&k=GD2emXHkRKAzQIJ0fJHGwEIFIeE2dz_ZwHX44DMI5rE',0,'solid'),(33222,145537,1,'2021-03-26 03:13:59','2021-03-26 03:13:59','4e259522-24a2-4bc9-b8ff-50e440ea9966','1 Feb','https://icampaign.brightlabs.com.au/v/9655/1735651905/email.html?k=xTKPedZf_tzusLKj4h0yTxaX4y8YRk-ekPmKiwMTh58',1,'solid'),(33223,145539,1,'2021-03-26 03:13:59','2021-03-26 03:13:59','89995d13-5911-41fa-94dd-1e3d98fb7327','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(33224,145540,1,'2021-03-26 03:13:59','2021-03-26 03:13:59','41168b99-aa32-4c16-b5da-59c6704658e0','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(33225,145541,1,'2021-03-26 03:13:59','2021-03-26 03:13:59','f90d9a8f-1089-48d5-94f0-bd26e22139d1','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(33226,145544,1,'2021-03-26 03:13:59','2021-03-26 03:13:59','efc33ada-d596-4a51-90b4-d171a75c39cf','Department of Health','https://www.health.gov.au/',1,'outline'),(33227,145545,1,'2021-03-26 03:13:59','2021-03-26 03:13:59','7c3416d2-3449-4ff8-b8c4-169073050a89','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(33228,145546,1,'2021-03-26 03:13:59','2021-03-26 03:13:59','36925844-ff3d-4ff6-b181-7105af11beb5','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(33278,145732,1,'2021-03-26 05:41:24','2021-03-26 05:41:24','331b4f5b-40cd-42f2-a2d4-838366fc0c4b','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(33279,145733,1,'2021-03-26 05:41:24','2021-03-26 05:41:24','5708e30e-a3fc-484f-9559-2a4b68c7d634','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(33280,145735,1,'2021-03-26 05:41:24','2021-03-26 05:41:24','f2287e0e-a049-4a0b-be7d-03df38e6baf7','Download our FAQs for participating phase 1b practices','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/COVID-19-Vaccine-FAQ_Brisbane-North-PHN.docx?mtime=20210312163228&focal=none',1,'solid'),(33281,145736,1,'2021-03-26 05:41:24','2021-03-26 05:41:24','3338f7d2-80a2-4488-9df8-fea21ee87fa1','Download our FAQs for non-participating phase 1b practices','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/COVID-19-Vaccine-FAQ_Brisbane-North-PHN_non-participating-practices.pdf?mtime=20210315142631&focal=none',1,'solid'),(33282,145739,1,'2021-03-26 05:41:24','2021-03-26 05:41:24','b4e740d5-44e7-430c-8218-b6c004f1ca6b','Read the latest health alerts',NULL,1,'solid'),(33283,145742,1,'2021-03-26 05:41:24','2021-03-26 05:41:24','39724939-1a18-4716-a22d-19ea85fc134e','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(33284,145744,1,'2021-03-26 05:41:24','2021-03-26 05:41:24','29dd1958-3de2-46c3-8b16-798e8d202ba1','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(33285,145747,1,'2021-03-26 05:41:24','2021-03-26 05:41:24','b63c53e0-aaca-46f6-9d03-c19cfb172f12','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(33286,145749,1,'2021-03-26 05:41:24','2021-03-26 05:41:24','22770f31-c47d-40ed-9372-cbf20c276ba3','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(33287,145751,1,'2021-03-26 05:41:24','2021-03-26 05:41:24','88d99193-1285-4838-8019-cb54ef2c575d','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(33288,145754,1,'2021-03-26 05:41:24','2021-03-26 05:41:24','1a734180-b785-4fcf-8537-6a7d7bbaad95','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(33289,145757,1,'2021-03-26 05:41:24','2021-03-26 05:41:24','b02ade3e-675b-4355-a3da-ead06b2726ea','Subscribe to updates',NULL,1,'solid'),(33290,145759,1,'2021-03-26 05:41:24','2021-03-26 05:41:24','06dc51e1-7bf6-4101-b530-fc9475147c2f','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(33291,145760,1,'2021-03-26 05:41:24','2021-03-26 05:41:24','2c71e917-8860-41de-8191-702f78ffe687','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(33312,146306,1,'2021-03-26 06:10:14','2021-03-26 06:10:14','10b4f0e6-2bb6-4281-8251-c417f150da2f','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(33313,146307,1,'2021-03-26 06:10:14','2021-03-26 06:10:14','c6582aac-1f87-4386-95a6-47fc08b51a2c','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(33314,146310,1,'2021-03-26 06:10:14','2021-03-26 06:10:14','3aa22305-c547-473d-9c6a-9ef27838213a','Phase 1B rollout FAQs',NULL,1,'solid'),(33315,146313,1,'2021-03-26 06:10:14','2021-03-26 06:10:14','4a265b4c-b763-49b3-b089-1ec25c718c24','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(33316,146316,1,'2021-03-26 06:10:14','2021-03-26 06:10:14','ee291ed7-6474-4eeb-889f-e677123fadf0','Read the latest health alerts',NULL,1,'solid'),(33317,146319,1,'2021-03-26 06:10:14','2021-03-26 06:10:14','a4b22d62-75c6-4d14-bafa-0dfe3c7ff77c','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(33318,146321,1,'2021-03-26 06:10:14','2021-03-26 06:10:14','466c8da2-8d54-44e0-9985-bb3135e84c07','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(33319,146324,1,'2021-03-26 06:10:14','2021-03-26 06:10:14','91e00bc7-ce2b-4368-a2ae-63f8bf664c45','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(33320,146326,1,'2021-03-26 06:10:14','2021-03-26 06:10:14','33315039-0bf8-46c5-8232-5e3363254f39','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(33321,146328,1,'2021-03-26 06:10:14','2021-03-26 06:10:14','5f9dfee6-a96d-4f49-9fbe-b396678b0a98','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(33322,146331,1,'2021-03-26 06:10:14','2021-03-26 06:10:14','4101337a-488a-4ca1-aee6-e73e7434f5ce','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(33323,146334,1,'2021-03-26 06:10:14','2021-03-26 06:10:14','1790cc90-98ca-4840-88b9-7caaa7d2c8ac','Subscribe to updates',NULL,1,'solid'),(33324,146336,1,'2021-03-26 06:10:14','2021-03-26 06:10:14','e813c90d-c08f-4c8f-ac38-d9eaa5102e51','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(33325,146337,1,'2021-03-26 06:10:14','2021-03-26 06:10:14','e91d29f9-ab51-4744-9e49-d3573a7a4b20','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(33332,146401,1,'2021-03-26 06:16:06','2021-03-26 06:16:06','3b4e02f3-ba6c-4d78-b0dd-26b8541cda75','Read the plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_MNHHS_Planning_for_Wellness_Regional_Plan_Sep2018_FINAL_WEB1.pdf?mtime=20200228162752&focal=none',1,'solid'),(33333,146402,1,'2021-03-26 06:16:06','2021-03-26 06:16:06','f5942e66-cf6c-4805-b94f-2607962f4e5f','Visit the website','https://planningforwellbeing.org.au/',0,'solid'),(33340,146425,1,'2021-03-26 06:16:43','2021-03-26 06:16:43','291862df-e5e7-4e11-89d5-efae89181adf','For GPs',NULL,1,'link'),(33341,146426,1,'2021-03-26 06:16:43','2021-03-26 06:16:43','9ceaca2a-416a-432e-a12b-3c6a8d953054','For RACFs',NULL,1,'link'),(33342,146427,1,'2021-03-26 06:16:43','2021-03-26 06:16:43','b0b6e710-63d5-4e3a-b19c-e027e68543d9','For community',NULL,1,'link'),(33343,146432,1,'2021-03-26 06:16:43','2021-03-26 06:16:43','d272eaaf-2115-4e8e-beff-8015cda162aa','Learn more','https://anytimehealthadvice.org.au/',1,'link'),(33344,146433,1,'2021-03-26 06:16:43','2021-03-26 06:16:43','cf7130d5-edc0-4031-ab39-0d82b618df23','Visit the symptom checker','https://www.healthdirect.gov.au/symptom-checker/tool',1,'link'),(33345,146434,1,'2021-03-26 06:16:44','2021-03-26 06:16:44','a73ba755-90c2-453f-a744-920a090fc0c5','Order a fridge magnet','https://anytimehealthadvice.org.au/#free-magnet',1,'link'),(33346,146445,1,'2021-03-26 06:16:48','2021-03-26 06:16:48','c05eb384-16e3-4fef-ba57-313a0d5885e9','For GPs',NULL,1,'link'),(33347,146446,1,'2021-03-26 06:16:48','2021-03-26 06:16:48','dc4da439-1fd1-4aaf-8c56-0e6921a447a9','For RACFs',NULL,1,'link'),(33348,146447,1,'2021-03-26 06:16:48','2021-03-26 06:16:48','2e9e3fd6-99cc-4ae1-949a-82e9179d0f58','For community',NULL,1,'link'),(33349,146452,1,'2021-03-26 06:16:48','2021-03-26 06:16:48','86f8c91e-9100-4ddf-9e67-10ff0db47ee4','Learn more','https://anytimehealthadvice.org.au/',1,'link'),(33350,146453,1,'2021-03-26 06:16:48','2021-03-26 06:16:48','bdbf5c93-7b75-45cb-a63a-1a449c16320f','Visit the symptom checker','https://www.healthdirect.gov.au/symptom-checker/tool',1,'link'),(33351,146454,1,'2021-03-26 06:16:48','2021-03-26 06:16:48','8a43bcb7-a6bb-4f4d-95c2-2e99e7cf19b1','Order a fridge magnet','https://anytimehealthadvice.org.au/#free-magnet',1,'link'),(33352,146465,1,'2021-03-26 06:19:29','2021-03-26 06:19:29','c4ebc07e-d9c2-4743-b373-1cbdb4b6b013','For GPs',NULL,1,'link'),(33353,146466,1,'2021-03-26 06:19:29','2021-03-26 06:19:29','d266c11a-88be-42cf-bbea-2ed63f9581c6','For RACFs',NULL,1,'link'),(33354,146467,1,'2021-03-26 06:19:29','2021-03-26 06:19:29','d52d3406-7e12-443e-ad36-3904cbe349d9','For community',NULL,1,'link'),(33355,146472,1,'2021-03-26 06:19:29','2021-03-26 06:19:29','7d67b167-5d1e-42b4-8d9b-296d1c8f02c2','Learn more','https://anytimehealthadvice.org.au/',1,'link'),(33356,146473,1,'2021-03-26 06:19:29','2021-03-26 06:19:29','143b162b-5784-4b27-98c8-f01ff2ace689','Visit the symptom checker','https://www.healthdirect.gov.au/symptom-checker/tool',1,'link'),(33357,146474,1,'2021-03-26 06:19:29','2021-03-26 06:19:29','57a257f6-1af4-4e14-b8b0-cc543fdbf37a','Order a fridge magnet','https://anytimehealthadvice.org.au/#free-magnet',1,'link'),(33370,146524,1,'2021-03-26 06:20:27','2021-03-26 06:20:27','cea56231-471c-4035-8011-8a452cec629e','For GPs',NULL,1,'link'),(33371,146525,1,'2021-03-26 06:20:27','2021-03-26 06:20:27','dae55b56-27ec-49e1-8f1c-6c2652c54613','For RACFs',NULL,1,'link'),(33372,146526,1,'2021-03-26 06:20:27','2021-03-26 06:20:27','a12f7716-9086-4adc-9835-1555a1b71aa3','For community',NULL,1,'link'),(33373,146531,1,'2021-03-26 06:20:27','2021-03-26 06:20:27','b5ab6ccc-2372-41c3-9d07-8a886cf43ebd','Learn more','https://anytimehealthadvice.org.au/',1,'link'),(33374,146532,1,'2021-03-26 06:20:27','2021-03-26 06:20:27','089cd150-4843-480e-89d7-25732c11ff44','Visit the symptom checker','https://www.healthdirect.gov.au/symptom-checker/tool',1,'link'),(33375,146533,1,'2021-03-26 06:20:27','2021-03-26 06:20:27','e70268b2-083f-4904-83ba-d848c2405cb3','Order a fridge magnet','https://anytimehealthadvice.org.au/#free-magnet',1,'link'),(33380,146567,1,'2021-03-26 06:30:49','2021-03-26 06:30:49','1a37d930-f2ad-46b2-9533-559e7466eae3','Health alerts in community languages','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/support-and-resources/translated-resources#translated',1,'solid'),(33381,146568,1,'2021-03-26 06:30:49','2021-03-26 06:30:49','6f9b0036-d1f1-46b5-9774-1549fcf924d3','Health alerts from 2020',NULL,1,'solid'),(33382,146579,1,'2021-03-26 06:31:16','2021-03-26 06:31:16','9ac3c7c9-ae92-4f5d-b54c-eb10bd2e3cc8','Health alerts in community languages','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/support-and-resources/translated-resources#translated',1,'solid'),(33383,146580,1,'2021-03-26 06:31:16','2021-03-26 06:31:16','2f624cae-0932-4384-bb78-9fbdb735a52c','Health alerts from 2020',NULL,1,'solid'),(33384,146593,1,'2021-03-29 00:32:24','2021-03-29 00:32:24','e8493d91-6137-43a8-b2e0-93919e85668e','Health alerts in community languages','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/support-and-resources/translated-resources#translated',1,'solid'),(33385,146594,1,'2021-03-29 00:32:24','2021-03-29 00:32:24','b87fdafa-baee-4807-a477-32a9f1117f14','Health alerts from 2020',NULL,1,'solid'),(33386,146608,1,'2021-03-29 00:47:21','2021-03-29 00:47:21','21e55723-9bd5-4513-80e9-03256b6408fe','Read the plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_MNHHS_Planning_for_Wellness_Regional_Plan_Sep2018_FINAL_WEB1.pdf?mtime=20200228162752&focal=none',1,'solid'),(33387,146609,1,'2021-03-29 00:47:21','2021-03-29 00:47:21','2fe1c2a8-a117-43f3-b29a-f88bdd2742ba','Visit the website','https://planningforwellbeing.org.au/',0,'solid'),(33394,146632,1,'2021-03-29 00:47:47','2021-03-29 00:47:47','a1f43fd3-165d-4092-883f-07272114bd07','For GPs',NULL,1,'link'),(33395,146633,1,'2021-03-29 00:47:47','2021-03-29 00:47:47','2c3161cd-1736-41ae-90ae-651389063b09','For RACFs',NULL,1,'link'),(33396,146634,1,'2021-03-29 00:47:47','2021-03-29 00:47:47','702df5d1-b699-43f8-8506-554f60ae85d5','For community',NULL,1,'link'),(33397,146639,1,'2021-03-29 00:47:47','2021-03-29 00:47:47','95b9b77e-767b-4968-875e-87960fe522e9','Learn more','https://anytimehealthadvice.org.au/',1,'link'),(33398,146640,1,'2021-03-29 00:47:47','2021-03-29 00:47:47','58fcacf8-0158-498c-a7eb-b80b11e1d8cd','Visit the symptom checker','https://www.healthdirect.gov.au/symptom-checker/tool',1,'link'),(33399,146641,1,'2021-03-29 00:47:47','2021-03-29 00:47:47','a885d887-b74a-411e-a258-218711508dd1','Order a fridge magnet','https://anytimehealthadvice.org.au/#free-magnet',1,'link'),(33400,146652,1,'2021-03-29 00:47:48','2021-03-29 00:47:48','3b544c37-cf55-48fa-9c42-dba58be3010c','For GPs',NULL,1,'link'),(33401,146653,1,'2021-03-29 00:47:48','2021-03-29 00:47:48','f30236e1-2303-4345-a982-4f416bb6d4d4','For RACFs',NULL,1,'link'),(33402,146654,1,'2021-03-29 00:47:48','2021-03-29 00:47:48','97934417-e49e-49ab-a81a-ca07a43a4cfb','For community',NULL,1,'link'),(33403,146659,1,'2021-03-29 00:47:48','2021-03-29 00:47:48','b74b4ad5-03f8-4453-a80e-3d4f9721d668','Learn more','https://anytimehealthadvice.org.au/',1,'link'),(33404,146660,1,'2021-03-29 00:47:48','2021-03-29 00:47:48','0fae7685-6ab2-43d8-96ed-c45e314a52fa','Visit the symptom checker','https://www.healthdirect.gov.au/symptom-checker/tool',1,'link'),(33405,146661,1,'2021-03-29 00:47:48','2021-03-29 00:47:48','80306f64-b912-4c6f-a776-08be48335d17','Order a fridge magnet','https://anytimehealthadvice.org.au/#free-magnet',1,'link'),(33434,146741,1,'2021-03-29 00:50:04','2021-03-29 00:50:04','e7d35adb-31dc-4fc6-8fc6-ccdbf5232a9b','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(33435,146742,1,'2021-03-29 00:50:04','2021-03-29 00:50:04','0140731a-5204-4412-bc62-cea0b21db263','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(33436,146745,1,'2021-03-29 00:50:04','2021-03-29 00:50:04','3946d520-580e-4b33-9106-788a8e6d8f95','Phase 1B rollout FAQs',NULL,1,'solid'),(33437,146748,1,'2021-03-29 00:50:04','2021-03-29 00:50:04','ea18d68f-a493-4ef7-a4a4-817dfce2f1ab','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(33438,146751,1,'2021-03-29 00:50:04','2021-03-29 00:50:04','25966535-58bd-4f73-b5f4-df0ade4b6c7a','Read the latest health alerts',NULL,1,'solid'),(33439,146754,1,'2021-03-29 00:50:04','2021-03-29 00:50:04','3d3a7168-56e6-4b8d-a758-766d21bdfcef','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(33440,146756,1,'2021-03-29 00:50:04','2021-03-29 00:50:04','2340a4a5-2a24-458e-bb5f-0eccef9ca63a','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(33441,146759,1,'2021-03-29 00:50:04','2021-03-29 00:50:04','e98542c7-4224-4cb2-92d2-63f37724976b','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(33442,146761,1,'2021-03-29 00:50:04','2021-03-29 00:50:04','5917593c-4b5a-4824-a3e6-cc65a40cfda4','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(33443,146763,1,'2021-03-29 00:50:04','2021-03-29 00:50:04','1c0e9374-a48f-41de-b4e0-0958a488b128','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(33444,146766,1,'2021-03-29 00:50:04','2021-03-29 00:50:04','63827f63-5c98-4e70-969e-8c7246f12526','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(33445,146769,1,'2021-03-29 00:50:04','2021-03-29 00:50:04','d78e4b1a-923f-41fc-bdb0-7c3bd6e0f05b','Subscribe to updates',NULL,1,'solid'),(33446,146771,1,'2021-03-29 00:50:04','2021-03-29 00:50:04','7a85fe66-ec45-483b-9402-9feae2bfa81a','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(33447,146772,1,'2021-03-29 00:50:04','2021-03-29 00:50:04','f993fa55-cfb8-486e-b2bf-b3cec65d7230','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(33448,146776,1,'2021-03-29 01:18:17','2021-03-29 01:18:17','13434985-074a-4a4f-b56d-da92b6decafd','For GPs',NULL,1,'link'),(33449,146777,1,'2021-03-29 01:18:17','2021-03-29 01:18:17','b9fb2a17-4a8d-4362-bad5-b380b1de7450','For RACFs',NULL,1,'link'),(33450,146778,1,'2021-03-29 01:18:17','2021-03-29 01:18:17','0b973fc7-90e1-434c-a305-4408245cd61a','For community',NULL,1,'link'),(33451,146783,1,'2021-03-29 01:18:17','2021-03-29 01:18:17','23594958-35f2-4d3a-8482-d76943cd34c8','Learn more','https://anytimehealthadvice.org.au/',1,'link'),(33452,146784,1,'2021-03-29 01:18:17','2021-03-29 01:18:17','a305c746-8106-4d86-bacc-3da7853295ca','Visit the symptom checker','https://www.healthdirect.gov.au/symptom-checker/tool',1,'link'),(33453,146785,1,'2021-03-29 01:18:17','2021-03-29 01:18:17','9d07634f-642b-450c-9353-874469604b44','Order a fridge magnet','https://anytimehealthadvice.org.au/#free-magnet',1,'link'),(33462,146815,1,'2021-03-29 01:56:57','2021-03-29 01:56:57','19e2c46e-8542-4870-96bc-e830d271b3d1','Meet our GPLOs','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/GPLO-Info-Sheet_210329_WEB.pdf?mtime=20210329115434&focal=none',1,'solid'),(33463,146825,1,'2021-03-29 01:56:58','2021-03-29 01:56:58','3441e53e-0239-4d34-b3e2-0dc6dd2a287a','Meet our GPLOs','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/GPLO-Info-Sheet_210329_WEB.pdf?mtime=20210329115434&focal=none',1,'solid'),(33464,146835,1,'2021-03-29 01:57:03','2021-03-29 01:57:03','0a00068f-8104-443c-b066-0d3cf0b332bb','Meet our GPLOs','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/GPLO-Info-Sheet_210329_WEB.pdf?mtime=20210329115434&focal=none',1,'solid'),(33465,146843,1,'2021-03-29 02:50:37','2021-03-29 02:50:37','310f9c08-2426-428e-bbed-c0b695a6e28f','For GPs',NULL,1,'link'),(33466,146844,1,'2021-03-29 02:50:37','2021-03-29 02:50:37','08155aef-bc52-410b-8793-25723d27866f','For RACFs',NULL,1,'link'),(33467,146845,1,'2021-03-29 02:50:37','2021-03-29 02:50:37','9baab9b6-b590-4074-b972-63db9c083ec0','For community',NULL,1,'link'),(33468,146850,1,'2021-03-29 02:50:37','2021-03-29 02:50:37','529676cf-7d12-472a-ad20-c8500821cacd','Learn more','https://anytimehealthadvice.org.au/',1,'link'),(33469,146851,1,'2021-03-29 02:50:37','2021-03-29 02:50:37','f80f84b2-13e9-4eab-84db-893730830183','Visit the symptom checker','https://www.healthdirect.gov.au/symptom-checker/tool',1,'link'),(33470,146852,1,'2021-03-29 02:50:37','2021-03-29 02:50:37','44af31e4-77fc-45e1-9955-e49c836f64ea','Order a fridge magnet','https://anytimehealthadvice.org.au/#free-magnet',1,'link'),(33478,146885,1,'2021-03-29 03:00:48','2021-03-29 03:00:48','b8a455f6-f697-4b12-ae93-00df7ccee8b3','Team Care Coordination patient information','https://d1jydvs1x4rbvt.cloudfront.net/downloads/TCC-Patient-Information-Flyer-DL-6pp-WEB.pdf?mtime=20200612135603&focal=none',1,'link'),(33479,146886,1,'2021-03-29 03:00:48','2021-03-29 03:00:48','0459c98d-6f46-4cf4-a0ed-1f89f3b9bc53','Team Care Coordination GP referrer poster','https://d1jydvs1x4rbvt.cloudfront.net/downloads/DRA_TCC-GP-Referrer-Poster-A5-2019.pdf?mtime=20200615142756&focal=none',1,'link'),(33480,146890,1,'2021-03-29 03:00:48','2021-03-29 03:00:48','63274cb4-a95b-426c-8ad9-ada549b6878b','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Team-Care-Coordination-eReferral-MD-22_08_17.rtf?mtime=20200522120944&focal=none',1,'link'),(33481,146891,1,'2021-03-29 03:00:48','2021-03-29 03:00:48','b628c5da-9f40-4d39-9cea-1f3da7019b0a','Best practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Team-Care-Coordination-eReferral-BP-22_08_17.rtf?mtime=20200522120929&focal=none',1,'link'),(33482,146892,1,'2021-03-29 03:00:48','2021-03-29 03:00:48','a01b4b8c-aebf-4265-b51a-3227bc823c21','Practix','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Teamcare-Referral-PractiX-130604.doc?mtime=20200522121007&focal=none',1,'link'),(33483,146893,1,'2021-03-29 03:00:48','2021-03-29 03:00:48','7a953991-69a5-4b28-a4c5-2c8f899c8aba','Zed Med','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Teamcare-Referral-ZM-130604.rtf?mtime=20200522121014&focal=none',1,'link'),(33484,146900,1,'2021-03-29 03:00:48','2021-03-29 03:00:48','6d7cf8bf-a1da-4694-8d28-6f870be2ed28','Learn more','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Service-Navigator-DL-WEB.pdf?mtime=20200519151456&focal=none',1,'link'),(33485,146906,1,'2021-03-29 03:00:49','2021-03-29 03:00:49','01b9e958-2758-47c2-b1e1-f0f1b24318a6','Team Care Coordination patient information','https://d1jydvs1x4rbvt.cloudfront.net/downloads/TCC-Patient-Information-Flyer-DL-6pp-WEB.pdf?mtime=20200612135603&focal=none',1,'link'),(33486,146907,1,'2021-03-29 03:00:49','2021-03-29 03:00:49','1cb6e1f9-ffc1-4207-8327-6b1ba0b8a5b8','Team Care Coordination GP referrer poster','https://d1jydvs1x4rbvt.cloudfront.net/downloads/DRA_TCC-GP-Referrer-Poster-A5-2019.pdf?mtime=20200615142756&focal=none',1,'link'),(33487,146911,1,'2021-03-29 03:00:49','2021-03-29 03:00:49','d673c6a0-68be-479e-adf9-a0a2517ff277','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Team-Care-Coordination-eReferral-MD-22_08_17.rtf?mtime=20200522120944&focal=none',1,'link'),(33488,146912,1,'2021-03-29 03:00:49','2021-03-29 03:00:49','31d770ee-cec1-4503-8d75-4d7c61fe2e3f','Best practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Team-Care-Coordination-eReferral-BP-22_08_17.rtf?mtime=20200522120929&focal=none',1,'link'),(33489,146913,1,'2021-03-29 03:00:49','2021-03-29 03:00:49','b92bf0a9-afd2-4ba4-8e69-40da48131ec3','Practix','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Teamcare-Referral-PractiX-130604.doc?mtime=20200522121007&focal=none',1,'link'),(33490,146914,1,'2021-03-29 03:00:49','2021-03-29 03:00:49','fdbe3292-ce0e-4b6e-9d66-8cdbb961bea4','Zed Med','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Teamcare-Referral-ZM-130604.rtf?mtime=20200522121014&focal=none',1,'link'),(33491,146921,1,'2021-03-29 03:00:49','2021-03-29 03:00:49','6c068552-618a-435d-a3d0-9964c1694d41','Learn more','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Service-Navigator-DL-WEB.pdf?mtime=20200519151456&focal=none',1,'link'),(33492,146927,1,'2021-03-29 03:00:55','2021-03-29 03:00:55','106fed6f-0bd2-415c-80cc-a900233df09b','Team Care Coordination patient information','https://d1jydvs1x4rbvt.cloudfront.net/downloads/TCC-Patient-Information-Flyer-DL-6pp-WEB.pdf?mtime=20200612135603&focal=none',1,'link'),(33493,146928,1,'2021-03-29 03:00:55','2021-03-29 03:00:55','0e53355d-4855-43b7-bf9a-121227505145','Team Care Coordination GP referrer poster','https://d1jydvs1x4rbvt.cloudfront.net/downloads/DRA_TCC-GP-Referrer-Poster-A5-2019.pdf?mtime=20200615142756&focal=none',1,'link'),(33494,146932,1,'2021-03-29 03:00:55','2021-03-29 03:00:55','182dd19f-d866-48bb-9c11-97179b3ae424','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Team-Care-Coordination-eReferral-MD-22_08_17.rtf?mtime=20200522120944&focal=none',1,'link'),(33495,146933,1,'2021-03-29 03:00:55','2021-03-29 03:00:55','5b8e1d35-6154-4ae8-a155-6c6f7dce2486','Best practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Team-Care-Coordination-eReferral-BP-22_08_17.rtf?mtime=20200522120929&focal=none',1,'link'),(33496,146934,1,'2021-03-29 03:00:55','2021-03-29 03:00:55','91161923-53e0-4b07-861f-00d246ab8221','Practix','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Teamcare-Referral-PractiX-130604.doc?mtime=20200522121007&focal=none',1,'link'),(33497,146935,1,'2021-03-29 03:00:55','2021-03-29 03:00:55','0f3a75f9-b6b2-400d-9433-68ac84732af4','Zed Med','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Teamcare-Referral-ZM-130604.rtf?mtime=20200522121014&focal=none',1,'link'),(33498,146942,1,'2021-03-29 03:00:55','2021-03-29 03:00:55','6409a6ae-afca-4d1e-b7ec-137b1411fb04','Learn more','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Service-Navigator-DL-WEB.pdf?mtime=20200519151456&focal=none',1,'link'),(33500,146971,1,'2021-03-29 06:14:52','2021-03-29 06:14:52','016f8374-ecce-426e-8311-b4d9423ab6ed','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(33501,146975,1,'2021-03-29 06:14:52','2021-03-29 06:14:52','69f6871a-1595-4567-8f53-b94d8cca6a7c','For GPs',NULL,1,'outline'),(33502,146976,1,'2021-03-29 06:14:52','2021-03-29 06:14:52','2787570b-296d-4d85-8196-13f6e5e0cafb','For RACFs',NULL,1,'outline'),(33503,146977,1,'2021-03-29 06:14:52','2021-03-29 06:14:52','43231066-e824-4194-90f3-272ee7c046dc','For community',NULL,1,'outline'),(33504,146980,1,'2021-03-29 06:14:52','2021-03-29 06:14:52','75c498c4-cae4-491a-af31-41234c7aa591','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(33505,146983,1,'2021-03-29 06:14:52','2021-03-29 06:14:52','7d991938-1fd9-4e9e-b080-66179dc027cc','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(33506,146985,1,'2021-03-29 06:14:52','2021-03-29 06:14:52','3e6b85f6-d11b-40cf-86cd-0dbf958ef16e','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(33507,146986,1,'2021-03-29 06:14:52','2021-03-29 06:14:52','64112d3d-c784-4b3b-9fdb-157a36daf1c6','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(33508,146987,1,'2021-03-29 06:14:52','2021-03-29 06:14:52','4f910b75-1b62-4551-91b0-7d437421eaae','15 March','https://icampaign.brightlabs.com.au/v/9655/1735670870/email.html?k=v6G-8gVJ_rvtwoUd2fpEBZ1ZIi86nI02To7omwA0FiU',1,'solid'),(33509,146988,1,'2021-03-29 06:14:52','2021-03-29 06:14:52','c3942f8a-0af3-4088-8d63-04c916c12f96','1 March','https://icampaign.brightlabs.com.au/v/9655/1735665136/email.html?k=W4xOP02DyXw184GaxNI6k7EVQ0egPoLmOBx9MgO143c',1,'solid'),(33510,146989,1,'2021-03-29 06:14:52','2021-03-29 06:14:52','17a2fd07-fe73-445f-968d-819c85113338','23 Feb','https://icampaign.brightlabs.com.au/v/9655/1735663126/email.html?k=onC8sbtofWx9q330xxdb_nSrHla73svE28AQrrximRk',1,'solid'),(33511,146990,1,'2021-03-29 06:14:52','2021-03-29 06:14:52','48e9fb32-ec65-4586-b7ba-fb3c12da0c57','16 Feb','https://icampaign.brightlabs.com.au/em/message/email/view.php?id=1530234&a=9655&k=GD2emXHkRKAzQIJ0fJHGwEIFIeE2dz_ZwHX44DMI5rE',0,'solid'),(33512,146991,1,'2021-03-29 06:14:52','2021-03-29 06:14:52','409e6e07-e15b-4ef5-9fc2-80a34d6d08c3','1 Feb','https://icampaign.brightlabs.com.au/v/9655/1735651905/email.html?k=xTKPedZf_tzusLKj4h0yTxaX4y8YRk-ekPmKiwMTh58',1,'solid'),(33513,146993,1,'2021-03-29 06:14:52','2021-03-29 06:14:52','259e0472-1704-4a20-aa8d-194154a7fa3b','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(33514,146994,1,'2021-03-29 06:14:52','2021-03-29 06:14:52','e5084eb6-43e0-4958-9d06-c40b62dc84a0','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(33515,146995,1,'2021-03-29 06:14:52','2021-03-29 06:14:52','348d6fb9-3673-4f83-a5e9-44ff9135a450','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(33516,146998,1,'2021-03-29 06:14:52','2021-03-29 06:14:52','5f585d69-cedb-4c5b-b698-9a2ef9981b49','Department of Health','https://www.health.gov.au/',1,'outline'),(33517,146999,1,'2021-03-29 06:14:52','2021-03-29 06:14:52','86feff62-5215-4ccc-bddd-58d89001dd23','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(33518,147000,1,'2021-03-29 06:14:52','2021-03-29 06:14:52','08c62cab-4762-4fa1-a659-684aba669922','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(33519,147007,1,'2021-03-29 06:42:46','2021-03-29 06:42:46','997e4061-f420-40ea-85a3-e5fd37723477','Health alerts in community languages','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/support-and-resources/translated-resources#translated',1,'solid'),(33520,147008,1,'2021-03-29 06:42:46','2021-03-29 06:42:46','b2a4a4b1-2da0-4e1d-aebe-9bb5062e490c','Health alerts from 2020',NULL,1,'solid'),(33521,147037,1,'2021-03-29 22:43:23','2021-03-29 22:43:23','369568aa-2e26-40d5-82db-68d3d917ebf3','Health alerts in community languages','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/support-and-resources/translated-resources#translated',1,'solid'),(33522,147038,1,'2021-03-29 22:43:23','2021-03-29 22:43:23','6e8dcb78-efc1-4dd8-9bb2-95958d5c6035','Health alerts from 2020',NULL,1,'solid'),(33523,147091,1,'2021-03-30 22:50:31','2021-03-30 22:50:31','926d9669-78a2-4a8d-a624-d7ba189cfdf2','Health alerts in community languages','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/support-and-resources/translated-resources#translated',1,'solid'),(33524,147092,1,'2021-03-30 22:50:31','2021-03-30 22:50:31','50985fff-697e-499e-8989-20e039f21394','Health alerts from 2020',NULL,1,'solid'),(34152,148308,1,'2021-03-31 06:16:59','2021-03-31 06:16:59','d52bb4ce-ca74-48cb-b9a5-6cb59bd37c46','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(34153,148312,1,'2021-03-31 06:16:59','2021-03-31 06:16:59','4bd87a6f-50ca-4924-a5b1-4643da7bbb58','For GPs',NULL,1,'outline'),(34154,148313,1,'2021-03-31 06:16:59','2021-03-31 06:16:59','e08dd8ac-600d-4c8a-a537-e152143fe423','For RACFs',NULL,1,'outline'),(34155,148314,1,'2021-03-31 06:16:59','2021-03-31 06:16:59','0dbb7e5c-0951-4a90-a602-f07cdae976fe','For community',NULL,1,'outline'),(34156,148317,1,'2021-03-31 06:16:59','2021-03-31 06:16:59','e4dcee8b-2f39-42c5-9b35-d89c3dab0283','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(34157,148320,1,'2021-03-31 06:16:59','2021-03-31 06:16:59','e9e260ae-222d-46ab-8164-0f067a027528','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(34158,148322,1,'2021-03-31 06:16:59','2021-03-31 06:16:59','68ee4168-2311-4726-9979-c8f44aec59b8','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(34159,148323,1,'2021-03-31 06:16:59','2021-03-31 06:16:59','265eb4aa-cf58-403d-a2fb-3cc270b0542d','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(34160,148324,1,'2021-03-31 06:16:59','2021-03-31 06:16:59','7e6d5af8-b74f-4857-989e-d964ce28f377','15 March','https://icampaign.brightlabs.com.au/v/9655/1735670870/email.html?k=v6G-8gVJ_rvtwoUd2fpEBZ1ZIi86nI02To7omwA0FiU',1,'solid'),(34161,148325,1,'2021-03-31 06:16:59','2021-03-31 06:16:59','06971104-3688-43d8-9db0-653a0f098898','1 March','https://icampaign.brightlabs.com.au/v/9655/1735665136/email.html?k=W4xOP02DyXw184GaxNI6k7EVQ0egPoLmOBx9MgO143c',1,'solid'),(34162,148326,1,'2021-03-31 06:16:59','2021-03-31 06:16:59','874d71a8-32a4-44d2-886f-a12c2c461840','23 Feb','https://icampaign.brightlabs.com.au/v/9655/1735663126/email.html?k=onC8sbtofWx9q330xxdb_nSrHla73svE28AQrrximRk',1,'solid'),(34163,148327,1,'2021-03-31 06:16:59','2021-03-31 06:16:59','0c815252-67a8-40e2-8c8c-505a46c5cb87','16 Feb','https://icampaign.brightlabs.com.au/em/message/email/view.php?id=1530234&a=9655&k=GD2emXHkRKAzQIJ0fJHGwEIFIeE2dz_ZwHX44DMI5rE',0,'solid'),(34164,148328,1,'2021-03-31 06:16:59','2021-03-31 06:16:59','53824736-e00f-4615-9daa-65e0149dd42b','1 Feb','https://icampaign.brightlabs.com.au/v/9655/1735651905/email.html?k=xTKPedZf_tzusLKj4h0yTxaX4y8YRk-ekPmKiwMTh58',1,'solid'),(34165,148330,1,'2021-03-31 06:16:59','2021-03-31 06:16:59','abf83fe4-bac9-47b1-b066-060a389a6e8c','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(34166,148331,1,'2021-03-31 06:16:59','2021-03-31 06:16:59','6839c0d0-bbe7-4c0c-8f51-255cedb72c2a','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(34167,148332,1,'2021-03-31 06:16:59','2021-03-31 06:16:59','9bdaf40a-0395-4e70-bded-b9720b7115d8','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(34168,148335,1,'2021-03-31 06:16:59','2021-03-31 06:16:59','fc96cf04-28e8-433c-a2c9-0ef556f27059','Department of Health','https://www.health.gov.au/',1,'outline'),(34169,148336,1,'2021-03-31 06:16:59','2021-03-31 06:16:59','01d9b227-7de9-4b04-9758-249434f5d695','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(34170,148337,1,'2021-03-31 06:16:59','2021-03-31 06:16:59','3ad12be1-3db9-45bc-9f61-faa81f4dcec2','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(34171,148347,1,'2021-03-31 06:18:20','2021-03-31 06:18:20','1a99499e-e3ea-425e-833c-89091f5c9053','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(34172,148351,1,'2021-03-31 06:18:20','2021-03-31 06:18:20','02d1cd5d-1c4e-4652-b735-a6392579e30e','For GPs',NULL,1,'outline'),(34173,148352,1,'2021-03-31 06:18:20','2021-03-31 06:18:20','06693cf8-071b-4634-9be1-c0e6a8abd9ea','For RACFs',NULL,1,'outline'),(34174,148353,1,'2021-03-31 06:18:20','2021-03-31 06:18:20','d02183a5-d317-47f3-9583-c0ed4367d05d','For community',NULL,1,'outline'),(34175,148356,1,'2021-03-31 06:18:20','2021-03-31 06:18:20','cdbe2479-f19c-4381-b327-482f25272062','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(34176,148359,1,'2021-03-31 06:18:20','2021-03-31 06:18:20','b3345f2a-cb54-4bac-bd8b-4a779202c02b','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(34177,148361,1,'2021-03-31 06:18:20','2021-03-31 06:18:20','28b04c3e-850f-47c9-ac44-acab3f62e1f2','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(34178,148362,1,'2021-03-31 06:18:20','2021-03-31 06:18:20','25ba7a43-73e8-41da-a64a-153b1e748be6','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(34179,148363,1,'2021-03-31 06:18:20','2021-03-31 06:18:20','3b6dff3a-24a7-4197-8265-0d65b4701472','15 March','https://icampaign.brightlabs.com.au/v/9655/1735670870/email.html?k=v6G-8gVJ_rvtwoUd2fpEBZ1ZIi86nI02To7omwA0FiU',1,'solid'),(34180,148364,1,'2021-03-31 06:18:20','2021-03-31 06:18:20','a67e543f-b33b-423f-ade1-14a12f395c5c','1 March','https://icampaign.brightlabs.com.au/v/9655/1735665136/email.html?k=W4xOP02DyXw184GaxNI6k7EVQ0egPoLmOBx9MgO143c',1,'solid'),(34181,148365,1,'2021-03-31 06:18:20','2021-03-31 06:18:20','1c439ad4-f5df-4d58-b04c-3e04d3f2512f','23 Feb','https://icampaign.brightlabs.com.au/v/9655/1735663126/email.html?k=onC8sbtofWx9q330xxdb_nSrHla73svE28AQrrximRk',1,'solid'),(34182,148366,1,'2021-03-31 06:18:20','2021-03-31 06:18:20','621f6e5b-84ae-4530-b61b-58249871607c','16 Feb','https://icampaign.brightlabs.com.au/em/message/email/view.php?id=1530234&a=9655&k=GD2emXHkRKAzQIJ0fJHGwEIFIeE2dz_ZwHX44DMI5rE',0,'solid'),(34183,148367,1,'2021-03-31 06:18:20','2021-03-31 06:18:20','69b2d678-6f80-49b0-9836-a298d259bf24','1 Feb','https://icampaign.brightlabs.com.au/v/9655/1735651905/email.html?k=xTKPedZf_tzusLKj4h0yTxaX4y8YRk-ekPmKiwMTh58',1,'solid'),(34184,148369,1,'2021-03-31 06:18:20','2021-03-31 06:18:20','f5ac5077-27c1-415e-ad56-5aefa7361381','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(34185,148370,1,'2021-03-31 06:18:20','2021-03-31 06:18:20','0683acc1-f818-4913-b9d8-e7e396b37f42','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(34186,148371,1,'2021-03-31 06:18:20','2021-03-31 06:18:20','4d58e191-1808-4f3e-9b92-3b1f39868148','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(34187,148374,1,'2021-03-31 06:18:20','2021-03-31 06:18:20','bbe7a897-2e04-40a9-83b4-c6b2ddab71e2','Department of Health','https://www.health.gov.au/',1,'outline'),(34188,148375,1,'2021-03-31 06:18:20','2021-03-31 06:18:20','b7526e6c-edf9-4835-92ff-68810087e31e','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(34189,148376,1,'2021-03-31 06:18:20','2021-03-31 06:18:20','8bbcce1a-8c46-4e67-91ff-a9d70fba3663','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(34266,148524,1,'2021-03-31 06:26:36','2021-03-31 06:26:36','95f42b68-f2cc-404a-a819-d902566f1323','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(34267,148528,1,'2021-03-31 06:26:36','2021-03-31 06:26:36','f2268a0b-50a7-4ec7-81d5-a90d34776ad5','For GPs',NULL,1,'outline'),(34268,148529,1,'2021-03-31 06:26:36','2021-03-31 06:26:36','ae5a5808-f212-4fde-9864-33f3a6c99b05','For RACFs',NULL,1,'outline'),(34269,148530,1,'2021-03-31 06:26:36','2021-03-31 06:26:36','0c3ae69d-9f18-4a08-9b86-ab01f03da0f5','For community',NULL,1,'outline'),(34270,148533,1,'2021-03-31 06:26:36','2021-03-31 06:26:36','1bc666e6-1820-4f38-ac57-2cc7b4d82f81','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(34271,148536,1,'2021-03-31 06:26:36','2021-03-31 06:26:36','139c4761-3d6f-4673-aed8-bfb0f5078c8b','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(34272,148538,1,'2021-03-31 06:26:36','2021-03-31 06:26:36','2df8423d-1e8c-441b-9cae-c529a29a4464','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(34273,148539,1,'2021-03-31 06:26:36','2021-03-31 06:26:36','2e6ec1d9-feef-4383-8458-5f47dbe24474','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(34274,148540,1,'2021-03-31 06:26:36','2021-03-31 06:26:36','a8b4c6b1-dd67-44de-8afa-1297bd72f3c7','15 March','https://icampaign.brightlabs.com.au/v/9655/1735670870/email.html?k=v6G-8gVJ_rvtwoUd2fpEBZ1ZIi86nI02To7omwA0FiU',1,'solid'),(34275,148541,1,'2021-03-31 06:26:36','2021-03-31 06:26:36','fbd60913-fa73-40bf-981b-bba482160b36','1 March','https://icampaign.brightlabs.com.au/v/9655/1735665136/email.html?k=W4xOP02DyXw184GaxNI6k7EVQ0egPoLmOBx9MgO143c',1,'solid'),(34276,148542,1,'2021-03-31 06:26:36','2021-03-31 06:26:36','042dd12e-d83d-4ca0-a9cf-67906163cb15','23 Feb','https://icampaign.brightlabs.com.au/v/9655/1735663126/email.html?k=onC8sbtofWx9q330xxdb_nSrHla73svE28AQrrximRk',1,'solid'),(34277,148543,1,'2021-03-31 06:26:36','2021-03-31 06:26:36','8ae0a25f-73dc-4dc6-8eff-f00d776e4941','16 Feb','https://icampaign.brightlabs.com.au/em/message/email/view.php?id=1530234&a=9655&k=GD2emXHkRKAzQIJ0fJHGwEIFIeE2dz_ZwHX44DMI5rE',0,'solid'),(34278,148544,1,'2021-03-31 06:26:36','2021-03-31 06:26:36','ed8b2817-adf5-45e4-bf3a-1b0ffa74da91','1 Feb','https://icampaign.brightlabs.com.au/v/9655/1735651905/email.html?k=xTKPedZf_tzusLKj4h0yTxaX4y8YRk-ekPmKiwMTh58',1,'solid'),(34279,148546,1,'2021-03-31 06:26:36','2021-03-31 06:26:36','114bcc8d-fdf1-40a1-bc01-095146f20c72','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(34280,148547,1,'2021-03-31 06:26:36','2021-03-31 06:26:36','8a6c39a4-7b60-4798-b763-9256485f2333','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(34281,148548,1,'2021-03-31 06:26:36','2021-03-31 06:26:36','dc5c2d82-b12d-4951-ba30-ae430a117229','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(34282,148551,1,'2021-03-31 06:26:36','2021-03-31 06:26:36','32bb1208-3395-4e7d-811c-827c59f2dfd0','Department of Health','https://www.health.gov.au/',1,'outline'),(34283,148552,1,'2021-03-31 06:26:36','2021-03-31 06:26:36','de53cf4b-b1cb-4770-b9db-0cd32ba8e168','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(34284,148553,1,'2021-03-31 06:26:36','2021-03-31 06:26:36','9e78b4f7-3125-44ec-8af4-9e62673d178e','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(34307,148726,1,'2021-03-31 23:29:32','2021-04-06 07:05:21','5b43903e-63fc-480c-b394-36840283f762','Health alerts in community languages','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/support-and-resources/translated-resources#translated',1,'solid'),(34308,148727,1,'2021-03-31 23:29:32','2021-04-06 07:05:21','b4c90023-47ff-4017-ad5d-69e613450408','Health alerts from 2020',NULL,1,'solid'),(34309,148738,1,'2021-03-31 23:29:33','2021-03-31 23:29:33','ad4697c1-98c7-4ebc-8ecc-5437366f0b60','Health alerts in community languages','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/support-and-resources/translated-resources#translated',1,'solid'),(34310,148739,1,'2021-03-31 23:29:33','2021-03-31 23:29:33','71f766c2-bb34-4c23-b6d7-269d00edbf98','Health alerts from 2020',NULL,1,'solid'),(34311,148750,1,'2021-03-31 23:29:38','2021-03-31 23:29:38','9383c4c6-6a88-4597-a268-bd9446364ac2','Health alerts in community languages','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/support-and-resources/translated-resources#translated',1,'solid'),(34312,148751,1,'2021-03-31 23:29:38','2021-03-31 23:29:38','6a85df7a-26d2-49ac-b357-e34bfd3b9ec7','Health alerts from 2020',NULL,1,'solid'),(34313,148994,1,'2021-04-05 23:31:09','2021-04-05 23:31:09','f5678c7e-7d9a-40e3-bac5-6297aa6204d5','Browse local positions vacant',NULL,0,'solid'),(34356,149141,1,'2021-04-06 02:15:06','2021-04-06 02:15:06','4c6dc3a0-ef32-4a8f-839f-577cac87e2f9','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(34357,149142,1,'2021-04-06 02:15:06','2021-04-06 02:15:06','f85bfd15-f0c1-4f9d-82a3-3c2df153446b','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(34358,149145,1,'2021-04-06 02:15:06','2021-04-06 02:15:06','3c0c8e52-ea14-4efd-b52f-bd0775bc8cee','Vaccine eligibility checker','https://covid-vaccine.healthdirect.gov.au/eligibility',1,'solid'),(34359,149146,1,'2021-04-06 02:15:06','2021-04-06 02:15:06','0d637ae1-fe7e-4e31-a70f-3fa3a2ac2f81','Vaccine service finder','https://covid-vaccine.healthdirect.gov.au/booking/?sid=ca72fa643907520b5ea1d669c7db91a41aa988b6',1,'solid'),(34360,149147,1,'2021-04-06 02:15:06','2021-04-06 02:15:06','92a758f4-8915-42f1-9c29-87cc11e8988f','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(34361,149150,1,'2021-04-06 02:15:06','2021-04-06 02:15:06','34459229-ea3f-4370-8e19-407c80d35fcb','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(34362,149151,1,'2021-04-06 02:15:06','2021-04-06 02:15:06','b4e7fdaf-73cc-46cc-893e-a5fdca6b549a','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(34363,149152,1,'2021-04-06 02:15:06','2021-04-06 02:15:06','e77a05a4-862c-4c35-b6bd-edc1a8508bf3','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(34364,149153,1,'2021-04-06 02:15:06','2021-04-06 02:15:06','ecf37016-8836-40f0-ae6b-b6d3c96967b6','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(34365,149156,1,'2021-04-06 02:15:06','2021-04-06 02:15:06','2ded6169-0866-43a3-a505-dd2a383a21e5','Read the statement','https://www.health.gov.au/news/atagi-statement-consumers-specific-clotting-condition-after-covid-19-vaccination',1,'solid'),(34366,149161,1,'2021-04-06 02:15:06','2021-04-06 02:15:06','a3946b7f-1503-4961-9e5f-f774f614b573','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(34367,149164,1,'2021-04-06 02:15:06','2021-04-06 02:15:06','993add46-7a6c-4070-89ff-1288905e0bd6','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(34368,149165,1,'2021-04-06 02:15:06','2021-04-06 02:15:06','b85005df-b3b0-4a7f-81db-0b50951c550a','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(34369,149166,1,'2021-04-06 02:15:06','2021-04-06 02:15:06','e541a46a-fbe4-4579-a499-74b979d38917','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(34370,149167,1,'2021-04-06 02:15:06','2021-04-06 02:15:06','01698b92-3e1c-4317-99fc-5a6cc0d8b899','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(34371,149168,1,'2021-04-06 02:15:06','2021-04-06 02:15:06','c2caa6d7-8f7c-4259-bfc2-21b5d9568966','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(34372,149174,1,'2021-04-06 02:15:06','2021-04-06 02:15:06','6fe6eb40-1609-4e18-83ed-d6a051ecdd48','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(34373,149175,1,'2021-04-06 02:15:06','2021-04-06 02:15:06','1a7f3fc9-912e-4f92-8c32-488c915defc3','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(34374,149176,1,'2021-04-06 02:15:06','2021-04-06 02:15:06','409aa2fe-23cc-41b0-81d8-18875e52dea1','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(34375,149181,1,'2021-04-06 02:15:14','2021-04-06 02:15:14','18fe1033-5a94-4f75-aadb-2310004169a1','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(34376,149182,1,'2021-04-06 02:15:14','2021-04-06 02:15:14','64ec3cda-b4cb-4c36-902d-0bab7af7e7d7','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(34377,149185,1,'2021-04-06 02:15:14','2021-04-06 02:15:14','30c09ee4-3b6d-4c88-8089-b268c42f8229','Vaccine eligibility checker','https://covid-vaccine.healthdirect.gov.au/eligibility',1,'solid'),(34378,149186,1,'2021-04-06 02:15:14','2021-04-06 02:15:14','e90cddfb-0e92-4cd6-91d9-ebd82efe7f32','Vaccine service finder','https://covid-vaccine.healthdirect.gov.au/booking/?sid=ca72fa643907520b5ea1d669c7db91a41aa988b6',1,'solid'),(34379,149187,1,'2021-04-06 02:15:14','2021-04-06 02:15:14','2d9d90c9-e742-48d6-a9e6-15026be34353','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(34380,149190,1,'2021-04-06 02:15:14','2021-04-06 02:15:14','2776f315-2cbd-4c08-9b2c-d75878ed4726','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(34381,149191,1,'2021-04-06 02:15:14','2021-04-06 02:15:14','1ad58867-bbf0-4a78-a6a0-5a281e1111dd','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(34382,149192,1,'2021-04-06 02:15:14','2021-04-06 02:15:14','ab74441e-cb2c-4d3f-a182-6e82f33d6756','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(34383,149193,1,'2021-04-06 02:15:14','2021-04-06 02:15:14','9281c46f-62ab-4e17-b463-20e5d29b7c61','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(34384,149196,1,'2021-04-06 02:15:14','2021-04-06 02:15:14','d33f5b98-72ed-4331-9a39-3ae2769da770','Read the statement','https://www.health.gov.au/news/atagi-statement-consumers-specific-clotting-condition-after-covid-19-vaccination',1,'solid'),(34385,149201,1,'2021-04-06 02:15:14','2021-04-06 02:15:14','d92ed29f-5034-4e57-acd4-7efbb402d172','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(34386,149204,1,'2021-04-06 02:15:14','2021-04-06 02:15:14','328afc77-b011-4e3a-a4db-f959cb78f53c','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(34387,149205,1,'2021-04-06 02:15:14','2021-04-06 02:15:14','bad03ae8-c67e-4aef-84e1-25920793ef9a','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(34388,149206,1,'2021-04-06 02:15:14','2021-04-06 02:15:14','cec97992-32f2-4455-8415-90d941b95955','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(34389,149207,1,'2021-04-06 02:15:14','2021-04-06 02:15:14','7c08db66-b61f-4b16-bdb3-909aeb2285e0','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(34390,149208,1,'2021-04-06 02:15:14','2021-04-06 02:15:14','c5213565-a1b9-4444-864a-456934f794bf','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(34391,149214,1,'2021-04-06 02:15:14','2021-04-06 02:15:14','53aed2b1-8ffe-4ae7-a7ca-894b37ebc7eb','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(34392,149215,1,'2021-04-06 02:15:14','2021-04-06 02:15:14','27bfc66c-e00d-47bc-bbae-e3f6f732049b','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(34393,149216,1,'2021-04-06 02:15:14','2021-04-06 02:15:14','64fd36d7-0ac4-4c60-9dff-5a35301d9c54','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(34399,149274,1,'2021-04-06 02:51:38','2021-04-06 02:51:38','08436bdf-e906-4448-a50e-b2946e18dea6','Development Project Lead | Care Coordination','https://brisbanenorthphn.org.au/jobs/development-project-lead-care-coordination',1,'solid'),(34400,149277,1,'2021-04-06 02:51:38','2021-04-06 02:51:38','c176c57e-77c2-487e-84c7-ff43e57935b6','Browse local positions vacant',NULL,0,'solid'),(34401,149283,1,'2021-04-06 03:28:57','2021-04-06 03:28:57','4a1919a8-3749-460a-9b1e-dda95f5bb210','Development Project Lead | Care Coordination','https://brisbanenorthphn.org.au/jobs/development-project-lead-care-coordination',1,'solid'),(34402,149286,1,'2021-04-06 03:28:57','2021-04-06 03:28:57','85c8ecbd-b779-4e6f-9deb-a5e00eea4752','Browse local positions vacant',NULL,0,'solid'),(34403,149292,1,'2021-04-06 03:30:23','2021-04-06 03:30:23','ba46eedb-9894-47b9-8221-b21b8648c88d','Development Project Lead | Care Coordination','https://brisbanenorthphn.org.au/jobs/development-project-lead-care-coordination',1,'solid'),(34404,149295,1,'2021-04-06 03:30:23','2021-04-06 03:30:23','cd3de314-0e3a-4812-8dea-ae815e183480','Browse local positions vacant',NULL,0,'solid'),(34405,149301,1,'2021-04-06 03:40:00','2021-04-06 03:40:00','4be205da-5049-4581-b152-893732c237a7','Development Project Lead | Care Coordination','https://brisbanenorthphn.org.au/jobs/development-project-lead-care-coordination',1,'solid'),(34406,149304,1,'2021-04-06 03:40:00','2021-04-06 03:40:00','ab47f7a9-a88a-48eb-b0ef-19fae9bcf47e','Browse local positions vacant',NULL,0,'solid'),(34407,149327,1,'2021-04-06 07:05:21','2021-04-06 07:05:21','d9b93f53-bf62-496d-a7c3-4113fec02d4b','Health alerts in community languages','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/support-and-resources/translated-resources#translated',1,'solid'),(34408,149328,1,'2021-04-06 07:05:21','2021-04-06 07:05:21','7823483d-b611-4b2b-a76d-a132a055ba62','Health alerts from 2020',NULL,1,'solid'),(34409,149361,1,'2021-04-07 01:18:01','2021-04-07 01:18:01','d07ea1bd-30d3-4640-af24-2e9b1cd6cff1','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(34410,149365,1,'2021-04-07 01:18:02','2021-04-07 01:18:02','8c748730-69a9-471f-ae3f-3acc538cefa0','For GPs',NULL,1,'outline'),(34411,149366,1,'2021-04-07 01:18:02','2021-04-07 01:18:02','4621b5b3-99b1-4f07-8b62-fa764f0d42f2','For RACFs',NULL,1,'outline'),(34412,149367,1,'2021-04-07 01:18:02','2021-04-07 01:18:02','78208cb3-a048-444a-ac00-405301cf24cb','For community',NULL,1,'outline'),(34413,149370,1,'2021-04-07 01:18:02','2021-04-07 01:18:02','b6c57b23-1aaf-4a34-bde5-b7f260160dc7','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(34414,149373,1,'2021-04-07 01:18:02','2021-04-07 01:18:02','f8db4851-bd01-47e8-92db-9431f3fb761f','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(34415,149375,1,'2021-04-07 01:18:02','2021-04-07 01:18:02','62f4be84-83bf-4802-ae0f-cc4f29858615','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(34416,149376,1,'2021-04-07 01:18:02','2021-04-07 01:18:02','e0ee0e4e-9fc1-4190-9a97-a3c96c714fe8','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(34417,149377,1,'2021-04-07 01:18:02','2021-04-07 01:18:02','6a248723-5075-4508-b415-368836a7edb9','15 March','https://icampaign.brightlabs.com.au/v/9655/1735670870/email.html?k=v6G-8gVJ_rvtwoUd2fpEBZ1ZIi86nI02To7omwA0FiU',1,'solid'),(34418,149378,1,'2021-04-07 01:18:02','2021-04-07 01:18:02','f3247279-e5e6-455a-a0c5-0e6f9e7a0702','1 March','https://icampaign.brightlabs.com.au/v/9655/1735665136/email.html?k=W4xOP02DyXw184GaxNI6k7EVQ0egPoLmOBx9MgO143c',1,'solid'),(34419,149379,1,'2021-04-07 01:18:02','2021-04-07 01:18:02','d6d7d6cc-baad-497f-9cda-ddfc2f08adb0','23 Feb','https://icampaign.brightlabs.com.au/v/9655/1735663126/email.html?k=onC8sbtofWx9q330xxdb_nSrHla73svE28AQrrximRk',1,'solid'),(34420,149380,1,'2021-04-07 01:18:02','2021-04-07 01:18:02','d21a041c-dc57-47de-ab93-7808813d994b','16 Feb','https://icampaign.brightlabs.com.au/em/message/email/view.php?id=1530234&a=9655&k=GD2emXHkRKAzQIJ0fJHGwEIFIeE2dz_ZwHX44DMI5rE',0,'solid'),(34421,149381,1,'2021-04-07 01:18:02','2021-04-07 01:18:02','aee38b6f-4162-4ff6-a536-c7d6b806e2fd','1 Feb','https://icampaign.brightlabs.com.au/v/9655/1735651905/email.html?k=xTKPedZf_tzusLKj4h0yTxaX4y8YRk-ekPmKiwMTh58',1,'solid'),(34422,149383,1,'2021-04-07 01:18:02','2021-04-07 01:18:02','3a636e91-b969-4af2-97c9-7bd6d847d869','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(34423,149384,1,'2021-04-07 01:18:02','2021-04-07 01:18:02','b2d47024-e04e-4471-8043-4e2992f803ea','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(34424,149385,1,'2021-04-07 01:18:02','2021-04-07 01:18:02','35f83223-f06a-4217-8f90-0e3830868d5a','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(34425,149388,1,'2021-04-07 01:18:02','2021-04-07 01:18:02','e7559796-8c4d-4cb5-8a51-5613dcc2eb19','Department of Health','https://www.health.gov.au/',1,'outline'),(34426,149389,1,'2021-04-07 01:18:02','2021-04-07 01:18:02','3def2d24-f649-42e2-805c-639c32e13e57','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(34427,149390,1,'2021-04-07 01:18:02','2021-04-07 01:18:02','9300724f-e9b9-47b0-b709-20a39035bf49','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(34466,149468,1,'2021-04-07 01:20:13','2021-04-07 01:20:13','ba5f9b62-2fc5-4ad9-a0f3-1735b5dd1993','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(34467,149472,1,'2021-04-07 01:20:13','2021-04-07 01:20:13','02cbbb3f-59a1-4507-9059-60c561bcfd31','For GPs',NULL,1,'outline'),(34468,149473,1,'2021-04-07 01:20:13','2021-04-07 01:20:13','13bde424-cfbd-4509-9b3e-39ce9b282b6f','For RACFs',NULL,1,'outline'),(34469,149474,1,'2021-04-07 01:20:13','2021-04-07 01:20:13','0d9c48e6-f2b0-4b71-bf8b-88b2bfa12d2e','For community',NULL,1,'outline'),(34470,149477,1,'2021-04-07 01:20:13','2021-04-07 01:20:13','40c9deca-b5f5-4c47-b53d-017b9bcc0ca7','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(34471,149480,1,'2021-04-07 01:20:13','2021-04-07 01:20:13','7fe94db0-4efe-49b1-9885-775c1a6a815d','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(34472,149482,1,'2021-04-07 01:20:13','2021-04-07 01:20:13','7c6fc5ab-eca7-4074-8c51-67c26f634259','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(34473,149483,1,'2021-04-07 01:20:13','2021-04-07 01:20:13','3cb96739-5122-4c0a-80d8-abf96da82948','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(34474,149484,1,'2021-04-07 01:20:13','2021-04-07 01:20:13','12e262f4-a13d-4ac4-be8c-767a8a676354','15 March','https://icampaign.brightlabs.com.au/v/9655/1735670870/email.html?k=v6G-8gVJ_rvtwoUd2fpEBZ1ZIi86nI02To7omwA0FiU',1,'solid'),(34475,149485,1,'2021-04-07 01:20:13','2021-04-07 01:20:13','153fa7e8-2cda-484a-8104-ccde33e1d444','1 March','https://icampaign.brightlabs.com.au/v/9655/1735665136/email.html?k=W4xOP02DyXw184GaxNI6k7EVQ0egPoLmOBx9MgO143c',1,'solid'),(34476,149486,1,'2021-04-07 01:20:13','2021-04-07 01:20:13','79a568f2-71dd-4910-aa8a-bc8e389c8de5','23 Feb','https://icampaign.brightlabs.com.au/v/9655/1735663126/email.html?k=onC8sbtofWx9q330xxdb_nSrHla73svE28AQrrximRk',1,'solid'),(34477,149487,1,'2021-04-07 01:20:13','2021-04-07 01:20:13','e6a75a64-a6ae-41ff-a687-98c5ba958e67','16 Feb','https://icampaign.brightlabs.com.au/em/message/email/view.php?id=1530234&a=9655&k=GD2emXHkRKAzQIJ0fJHGwEIFIeE2dz_ZwHX44DMI5rE',0,'solid'),(34478,149488,1,'2021-04-07 01:20:13','2021-04-07 01:20:13','bbedc48a-6362-4a99-96ff-81a187926113','1 Feb','https://icampaign.brightlabs.com.au/v/9655/1735651905/email.html?k=xTKPedZf_tzusLKj4h0yTxaX4y8YRk-ekPmKiwMTh58',1,'solid'),(34479,149490,1,'2021-04-07 01:20:13','2021-04-07 01:20:13','5e721d6c-ca6d-4435-9cfe-f9b558d44523','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(34480,149491,1,'2021-04-07 01:20:13','2021-04-07 01:20:13','a1f081c4-0f8d-438d-8c49-4830611cb784','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(34481,149492,1,'2021-04-07 01:20:13','2021-04-07 01:20:13','ad196ef7-decd-400f-8d0b-10936bade1c7','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(34482,149495,1,'2021-04-07 01:20:13','2021-04-07 01:20:13','6f4a00b2-5025-431f-a35e-24771751051b','Department of Health','https://www.health.gov.au/',1,'outline'),(34483,149496,1,'2021-04-07 01:20:13','2021-04-07 01:20:13','b1bf6a53-c0b3-407d-a418-8ccf27344f2d','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(34484,149497,1,'2021-04-07 01:20:13','2021-04-07 01:20:13','5175d1f6-d095-4f5b-8cb6-eb10a9c1ed37','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(34485,149504,1,'2021-04-07 01:20:18','2021-04-07 01:20:18','06a58e0d-a1a4-44fc-8251-b5e875e83a0b','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(34486,149508,1,'2021-04-07 01:20:18','2021-04-07 01:20:18','47f4f19b-f9b0-4917-9386-851e6c0eb7af','For GPs',NULL,1,'outline'),(34487,149509,1,'2021-04-07 01:20:18','2021-04-07 01:20:18','0c031dc4-b6a6-4542-85a7-056765ec1925','For RACFs',NULL,1,'outline'),(34488,149510,1,'2021-04-07 01:20:18','2021-04-07 01:20:18','f592f82a-513d-4f0d-b517-59b38e27bf3e','For community',NULL,1,'outline'),(34489,149513,1,'2021-04-07 01:20:18','2021-04-07 01:20:18','294cdc1b-351a-4b11-9455-5efa04ceade4','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(34490,149516,1,'2021-04-07 01:20:18','2021-04-07 01:20:18','e1724223-e8a9-4c90-a2f0-661e02921205','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(34491,149518,1,'2021-04-07 01:20:18','2021-04-07 01:20:18','967f6b5e-56ff-42fc-85db-9f251bd1fa38','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(34492,149519,1,'2021-04-07 01:20:18','2021-04-07 01:20:18','e123a3cd-a428-4dfb-8834-583391bf7db3','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(34493,149520,1,'2021-04-07 01:20:18','2021-04-07 01:20:18','2056eea3-8290-4b1b-a7c1-c6865a67ca2a','15 March','https://icampaign.brightlabs.com.au/v/9655/1735670870/email.html?k=v6G-8gVJ_rvtwoUd2fpEBZ1ZIi86nI02To7omwA0FiU',1,'solid'),(34494,149521,1,'2021-04-07 01:20:18','2021-04-07 01:20:18','199e4ceb-cdf6-42c3-8a54-be136af40424','1 March','https://icampaign.brightlabs.com.au/v/9655/1735665136/email.html?k=W4xOP02DyXw184GaxNI6k7EVQ0egPoLmOBx9MgO143c',1,'solid'),(34495,149522,1,'2021-04-07 01:20:18','2021-04-07 01:20:18','d6214642-633e-490f-bb8d-3af1f31e6ae3','23 Feb','https://icampaign.brightlabs.com.au/v/9655/1735663126/email.html?k=onC8sbtofWx9q330xxdb_nSrHla73svE28AQrrximRk',1,'solid'),(34496,149523,1,'2021-04-07 01:20:18','2021-04-07 01:20:18','eb60bc0a-be16-4107-bdb0-a7ec909423f3','16 Feb','https://icampaign.brightlabs.com.au/em/message/email/view.php?id=1530234&a=9655&k=GD2emXHkRKAzQIJ0fJHGwEIFIeE2dz_ZwHX44DMI5rE',0,'solid'),(34497,149524,1,'2021-04-07 01:20:18','2021-04-07 01:20:18','13091d71-4f2a-429e-9c8f-b4db16d29b5b','1 Feb','https://icampaign.brightlabs.com.au/v/9655/1735651905/email.html?k=xTKPedZf_tzusLKj4h0yTxaX4y8YRk-ekPmKiwMTh58',1,'solid'),(34498,149526,1,'2021-04-07 01:20:18','2021-04-07 01:20:18','e93b2176-0feb-488a-a1b1-27a3e8a6ff9e','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(34499,149527,1,'2021-04-07 01:20:18','2021-04-07 01:20:18','16a5c698-f9d5-4f6b-9f40-8a51a9431537','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(34500,149528,1,'2021-04-07 01:20:18','2021-04-07 01:20:18','8d9a53c7-2478-4c55-8731-24d5bc1d52dc','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(34501,149531,1,'2021-04-07 01:20:19','2021-04-07 01:20:19','849d3f77-c36c-4b1e-a926-4af005cd40b3','Department of Health','https://www.health.gov.au/',1,'outline'),(34502,149532,1,'2021-04-07 01:20:19','2021-04-07 01:20:19','ca69c64d-6d30-485e-a350-e56aad1e85b0','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(34503,149533,1,'2021-04-07 01:20:19','2021-04-07 01:20:19','b9cb6a84-2021-4cbb-8008-273afe4830a2','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(34592,149708,1,'2021-04-07 01:29:56','2021-04-07 01:29:56','8861af66-6501-4b10-b809-38736718691d','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(34593,149712,1,'2021-04-07 01:29:56','2021-04-07 01:29:56','62846bfd-0cc4-44cf-8539-f92351256da1','For GPs',NULL,1,'outline'),(34594,149713,1,'2021-04-07 01:29:56','2021-04-07 01:29:56','86390ff2-7929-499c-b295-56a4764c9848','For RACFs',NULL,1,'outline'),(34595,149714,1,'2021-04-07 01:29:56','2021-04-07 01:29:56','02eb3060-b675-46cc-9679-db75b919fac5','For community',NULL,1,'outline'),(34596,149717,1,'2021-04-07 01:29:56','2021-04-07 01:29:56','5bc4def5-d31e-47fe-b7b2-8cda1211d576','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(34597,149720,1,'2021-04-07 01:29:57','2021-04-07 01:29:57','ae2fcfbd-804e-449a-96dd-7d9fa399eb9c','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(34598,149722,1,'2021-04-07 01:29:57','2021-04-23 22:47:55','a9abfd2f-0d82-4f70-aef9-c4c28c805b89','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(34599,149723,1,'2021-04-07 01:29:57','2021-04-23 22:47:55','507dde3d-befd-4327-be7b-02bcf809bdeb','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(34600,149724,1,'2021-04-07 01:29:57','2021-04-23 22:47:55','0289e76c-5cf5-4fd3-9d0b-86ef8f992d9e','15 March','https://icampaign.brightlabs.com.au/v/9655/1735670870/email.html?k=v6G-8gVJ_rvtwoUd2fpEBZ1ZIi86nI02To7omwA0FiU',1,'solid'),(34601,149725,1,'2021-04-07 01:29:57','2021-04-23 22:47:55','dc6136e1-1694-4c01-96db-36ed82c0803d','1 March','https://icampaign.brightlabs.com.au/v/9655/1735665136/email.html?k=W4xOP02DyXw184GaxNI6k7EVQ0egPoLmOBx9MgO143c',1,'solid'),(34602,149727,1,'2021-04-07 01:29:57','2021-04-07 01:29:57','c7d9b41f-ab6f-41c1-bb55-bda6469f157f','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(34603,149728,1,'2021-04-07 01:29:57','2021-04-07 01:29:57','c9324500-45d7-40a0-92ce-f6ecfd4eef59','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(34604,149729,1,'2021-04-07 01:29:57','2021-04-07 01:29:57','d566273a-dd96-4f5b-a1bc-8288f9cb34fe','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(34605,149732,1,'2021-04-07 01:29:57','2021-04-07 01:29:57','04c4988c-1343-4b6f-813a-f158eea256c4','Department of Health','https://www.health.gov.au/',1,'outline'),(34606,149733,1,'2021-04-07 01:29:57','2021-04-07 01:29:57','8c9688eb-3715-4825-9c66-b8578cd854d4','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(34607,149734,1,'2021-04-07 01:29:57','2021-04-07 01:29:57','4b416503-83d1-4048-9942-243b0ea5bb1f','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(34608,149741,1,'2021-04-07 01:29:58','2021-04-07 01:29:58','8fd84139-5efe-45d4-90bf-f03295dd01d1','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(34609,149745,1,'2021-04-07 01:29:58','2021-04-07 01:29:58','85359f87-3c9c-4dd5-8169-59fd289b67a5','For GPs',NULL,1,'outline'),(34610,149746,1,'2021-04-07 01:29:58','2021-04-07 01:29:58','ab191caa-a784-4bec-8675-6738e516e886','For RACFs',NULL,1,'outline'),(34611,149747,1,'2021-04-07 01:29:58','2021-04-07 01:29:58','39cb8152-9590-416a-832d-66905c92e3d8','For community',NULL,1,'outline'),(34612,149750,1,'2021-04-07 01:29:58','2021-04-07 01:29:58','864b3377-8695-4336-a092-a881e60f36f7','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(34613,149753,1,'2021-04-07 01:29:58','2021-04-07 01:29:58','fe394c79-d3e3-4eda-8cec-f788de5b2791','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(34614,149755,1,'2021-04-07 01:29:58','2021-04-07 01:29:58','4e4cbdb6-f9dd-41bc-85ab-da9c961b6287','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(34615,149756,1,'2021-04-07 01:29:58','2021-04-07 01:29:58','6cf72327-bf6a-4471-b3f0-9ac731b56920','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(34616,149757,1,'2021-04-07 01:29:58','2021-04-07 01:29:58','f9013157-5efc-4721-a6ac-520f99b27109','15 March','https://icampaign.brightlabs.com.au/v/9655/1735670870/email.html?k=v6G-8gVJ_rvtwoUd2fpEBZ1ZIi86nI02To7omwA0FiU',1,'solid'),(34617,149758,1,'2021-04-07 01:29:58','2021-04-07 01:29:58','79b101c9-9a49-486d-a842-80d9277e23ee','1 March','https://icampaign.brightlabs.com.au/v/9655/1735665136/email.html?k=W4xOP02DyXw184GaxNI6k7EVQ0egPoLmOBx9MgO143c',1,'solid'),(34618,149760,1,'2021-04-07 01:29:58','2021-04-07 01:29:58','bc5e88b1-f0f7-4514-bc70-e115ddd8593a','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(34619,149761,1,'2021-04-07 01:29:58','2021-04-07 01:29:58','6ead88c5-cb12-4b1d-9f45-14bbc4b6a638','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(34620,149762,1,'2021-04-07 01:29:58','2021-04-07 01:29:58','13c7cc3d-c046-47e9-8729-ea96f01f37ef','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(34621,149765,1,'2021-04-07 01:29:58','2021-04-07 01:29:58','eabaa9ea-43af-48a2-aa41-822c69f320d0','Department of Health','https://www.health.gov.au/',1,'outline'),(34622,149766,1,'2021-04-07 01:29:58','2021-04-07 01:29:58','c353d413-625c-4f19-8efb-382329868fd6','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(34623,149767,1,'2021-04-07 01:29:58','2021-04-07 01:29:58','82e96c9e-e30e-4b4b-812b-2e5c08e0b05a','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(34624,149774,1,'2021-04-07 01:30:03','2021-04-07 01:30:03','55a3467f-6be6-448b-a89b-0137964f2c1e','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(34625,149778,1,'2021-04-07 01:30:03','2021-04-07 01:30:03','e3d1bf48-6487-4690-9728-acbdf47ef2c4','For GPs',NULL,1,'outline'),(34626,149779,1,'2021-04-07 01:30:03','2021-04-07 01:30:03','62c7663d-a1fa-4007-a5aa-f923f25193dd','For RACFs',NULL,1,'outline'),(34627,149780,1,'2021-04-07 01:30:03','2021-04-07 01:30:03','abeb0796-4559-431e-8429-6d36db1c26a2','For community',NULL,1,'outline'),(34628,149783,1,'2021-04-07 01:30:03','2021-04-07 01:30:03','0fddc8c7-a181-4bf7-9a2c-6e189a172dc4','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(34629,149786,1,'2021-04-07 01:30:03','2021-04-07 01:30:03','7c3cb1af-cf8b-4d6e-895d-19f186e26108','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(34630,149788,1,'2021-04-07 01:30:04','2021-04-07 01:30:04','4cf2b405-3065-4c07-aae8-78b478b65153','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(34631,149789,1,'2021-04-07 01:30:04','2021-04-07 01:30:04','4fe9826f-8f5f-41c4-bb74-15b72c36b183','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(34632,149790,1,'2021-04-07 01:30:04','2021-04-07 01:30:04','13930a42-598b-4ab1-af99-2ddedd868a9d','15 March','https://icampaign.brightlabs.com.au/v/9655/1735670870/email.html?k=v6G-8gVJ_rvtwoUd2fpEBZ1ZIi86nI02To7omwA0FiU',1,'solid'),(34633,149791,1,'2021-04-07 01:30:04','2021-04-07 01:30:04','e4ace33d-547c-4da3-b2c9-1cee9b1aa385','1 March','https://icampaign.brightlabs.com.au/v/9655/1735665136/email.html?k=W4xOP02DyXw184GaxNI6k7EVQ0egPoLmOBx9MgO143c',1,'solid'),(34634,149793,1,'2021-04-07 01:30:04','2021-04-07 01:30:04','d6fcdb96-df9c-4997-95ca-018765411564','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(34635,149794,1,'2021-04-07 01:30:04','2021-04-07 01:30:04','8f5b0c12-680d-4aca-8afb-807c0581f7ce','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(34636,149795,1,'2021-04-07 01:30:04','2021-04-07 01:30:04','d12d2f05-1fc4-45b8-811b-ea5ba681b3de','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(34637,149798,1,'2021-04-07 01:30:04','2021-04-07 01:30:04','7074cc9e-f1ff-477c-b885-8e7c39e43bdb','Department of Health','https://www.health.gov.au/',1,'outline'),(34638,149799,1,'2021-04-07 01:30:04','2021-04-07 01:30:04','75083675-3a95-4f89-b298-d161ef589eee','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(34639,149800,1,'2021-04-07 01:30:04','2021-04-07 01:30:04','578bbf87-1d5d-4db1-bce5-17b7f8a8f4b6','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(34699,150036,1,'2021-04-07 02:11:45','2021-04-07 02:11:45','dd347655-debd-4fe4-aa00-f8a1568c2d6a','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(34700,150037,1,'2021-04-07 02:11:45','2021-04-07 02:11:45','4d7dfbae-cb30-4019-8171-0c12302d0f3a','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(34701,150038,1,'2021-04-07 02:11:45','2021-04-07 02:11:45','b7722033-3c83-4abc-bdb6-ec96f9b94bf9','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(34702,150041,1,'2021-04-07 02:11:45','2021-04-07 02:11:45','37639b75-df5c-4efb-850e-211c4c7054a7','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(34703,150042,1,'2021-04-07 02:11:45','2021-04-07 02:11:45','86920f46-9a73-4f2e-9f54-7737704affde','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(34704,150043,1,'2021-04-07 02:11:45','2021-04-07 02:11:45','bc446f52-898a-4728-84a7-8ff5ef36e29e','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(34705,150044,1,'2021-04-07 02:11:45','2021-04-07 02:11:45','b192d091-280c-4948-9504-1138e15e452d','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(34706,150047,1,'2021-04-07 02:11:46','2021-04-07 02:11:46','e91969d5-833e-4dc9-a27e-de28dc2b4e4c','TGA statement','https://www.health.gov.au/news/joint-statement-on-astrazeneca-covid-19-vaccine',0,'solid'),(34707,150048,1,'2021-04-07 02:11:46','2021-04-07 02:11:46','587345eb-02d0-457b-a6b1-e86f6541cd4f','ATAGI statement','https://www.health.gov.au/news/atagi-statement-consumers-specific-clotting-condition-after-covid-19-vaccination',1,'solid'),(34708,150055,1,'2021-04-07 02:11:46','2021-04-07 02:11:46','962330fb-0cbc-4ab3-b250-3f4366cf8c4c','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(34709,150058,1,'2021-04-07 02:11:46','2021-04-07 02:11:46','d65e9a57-e20e-4fd1-8595-8a41d94fe29a','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(34710,150059,1,'2021-04-07 02:11:46','2021-04-07 02:11:46','1c4f1c04-ebb4-46e4-9839-03aed13baa62','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(34711,150060,1,'2021-04-07 02:11:46','2021-04-07 02:11:46','fc9233f1-081c-4d6f-8dc0-f537be75a75d','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(34712,150061,1,'2021-04-07 02:11:46','2021-04-07 02:11:46','d3fd76e5-f8dc-4988-991e-0bff132963d6','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(34713,150062,1,'2021-04-07 02:11:46','2021-04-07 02:11:46','64fb7733-803e-41d0-b7db-294858b8fed9','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(34714,150068,1,'2021-04-07 02:11:46','2021-04-07 02:11:46','fe8494af-4f33-4fec-89c3-a498d2796069','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(34715,150069,1,'2021-04-07 02:11:46','2021-04-07 02:11:46','990db56f-4e9d-4c82-9e5e-a8d5bdc8f719','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(34716,150070,1,'2021-04-07 02:11:46','2021-04-07 02:11:46','43ab6a9d-a040-4811-952f-b03a43659911','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(34717,150075,1,'2021-04-07 02:12:44','2021-04-07 02:12:44','07667ee3-9415-40e1-b2ce-961f367845e7','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(34718,150076,1,'2021-04-07 02:12:44','2021-04-07 02:12:44','b10052c4-388b-4a53-8f49-a047890edfb8','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(34719,150077,1,'2021-04-07 02:12:44','2021-04-07 02:12:44','8d1e5ed7-25d7-4ee5-a3b0-130ec6ae4ead','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(34720,150080,1,'2021-04-07 02:12:44','2021-04-07 02:12:44','20f34ad1-ec9a-4a96-95f5-7edd861b41f1','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(34721,150081,1,'2021-04-07 02:12:44','2021-04-07 02:12:44','d29b7401-18ab-4238-aa00-64da227132e5','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(34722,150082,1,'2021-04-07 02:12:44','2021-04-07 02:12:44','5ad22db6-b312-4193-b71a-df08831278e8','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(34723,150083,1,'2021-04-07 02:12:44','2021-04-07 02:12:44','efa5b5b9-a57d-4f55-aeee-b88731e29fb7','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(34724,150086,1,'2021-04-07 02:12:44','2021-04-07 02:12:44','914834b5-f73f-49aa-8ab1-c5da226f0ebd','TGA statement','https://www.health.gov.au/news/joint-statement-on-astrazeneca-covid-19-vaccine',0,'solid'),(34725,150087,1,'2021-04-07 02:12:44','2021-04-07 02:12:44','bc9880d8-6d3e-4118-a3b8-2d701790b4f7','ATAGI statement','https://www.health.gov.au/news/atagi-statement-consumers-specific-clotting-condition-after-covid-19-vaccination',1,'solid'),(34726,150094,1,'2021-04-07 02:12:45','2021-04-07 02:12:45','f467c6ef-b1ac-4646-b3b0-728fbcec717f','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(34727,150097,1,'2021-04-07 02:12:45','2021-04-07 02:12:45','54125887-b075-4f80-b9b5-b0933e3d528b','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(34728,150098,1,'2021-04-07 02:12:45','2021-04-07 02:12:45','0716b633-01d0-43ab-846b-66b155f1ae9b','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(34729,150099,1,'2021-04-07 02:12:45','2021-04-07 02:12:45','7b92433f-6f9f-4a53-b5b7-fb7c19f9c7b8','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(34730,150100,1,'2021-04-07 02:12:45','2021-04-07 02:12:45','72b560b7-ffd4-49e1-95fe-953c3ba1013a','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(34731,150101,1,'2021-04-07 02:12:45','2021-04-07 02:12:45','ccc851f8-6694-4cce-8b93-f01d638b5acb','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(34732,150107,1,'2021-04-07 02:12:45','2021-04-07 02:12:45','7885e61e-5cdb-4838-9091-ae5007dc504e','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(34733,150108,1,'2021-04-07 02:12:45','2021-04-07 02:12:45','40d83b15-b984-47f1-b96f-cc46e5f8d25d','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(34734,150109,1,'2021-04-07 02:12:45','2021-04-07 02:12:45','cdd84221-1b15-418c-b389-f7b05a7538a1','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(34735,150114,1,'2021-04-07 02:14:19','2021-04-07 02:14:19','9aabbf62-4c85-40e1-926e-e1e95b768b74','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(34736,150115,1,'2021-04-07 02:14:19','2021-04-07 02:14:19','28865ba3-ad27-4c2a-b929-398dd52b8d1c','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(34737,150116,1,'2021-04-07 02:14:19','2021-04-07 02:14:19','e206f1d8-3cec-4a96-a1f3-7a2142939fff','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(34738,150119,1,'2021-04-07 02:14:19','2021-04-07 02:14:19','2c0596de-4bc1-41df-a89c-b052760a3b8f','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(34739,150120,1,'2021-04-07 02:14:19','2021-04-07 02:14:19','f8a1b880-ab61-436f-8609-7f19e0825dfc','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(34740,150121,1,'2021-04-07 02:14:19','2021-04-07 02:14:19','fc4b7d3e-9314-4259-9eb7-83a488830646','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(34741,150122,1,'2021-04-07 02:14:19','2021-04-07 02:14:19','d1ff9327-517e-4f7c-a67c-2d8c5368b33a','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(34742,150125,1,'2021-04-07 02:14:19','2021-04-07 02:14:19','59956668-a58f-46aa-87fe-3e2c4b77306f','TGA statement','https://www.health.gov.au/news/joint-statement-on-astrazeneca-covid-19-vaccine',0,'solid'),(34743,150126,1,'2021-04-07 02:14:19','2021-04-07 02:14:19','8dbb622d-18b2-4f5a-b4ee-f9293874d221','ATAGI statement','https://www.health.gov.au/news/atagi-statement-consumers-specific-clotting-condition-after-covid-19-vaccination',1,'solid'),(34744,150133,1,'2021-04-07 02:14:19','2021-04-07 02:14:19','1ec28bd8-6862-4f5a-8c80-4a18b7fe5134','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(34745,150136,1,'2021-04-07 02:14:20','2021-04-07 02:14:20','8665c0a6-89df-424a-b3bd-d0a931afe7e4','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(34746,150137,1,'2021-04-07 02:14:20','2021-04-07 02:14:20','927bf1b2-4ba3-45d6-b6c4-2bdd6c590ea6','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(34747,150138,1,'2021-04-07 02:14:20','2021-04-07 02:14:20','056d3b1d-ec46-45cf-8e69-bf5ffb909297','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(34748,150139,1,'2021-04-07 02:14:20','2021-04-07 02:14:20','7dfb0fa8-69e8-4467-a737-3c97766a456a','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(34749,150140,1,'2021-04-07 02:14:20','2021-04-07 02:14:20','7576b785-86b8-4661-8307-e284b76e9c59','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(34750,150146,1,'2021-04-07 02:14:20','2021-04-07 02:14:20','7de0ce2c-fbce-4e47-bfa1-768561d7b4fe','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(34751,150147,1,'2021-04-07 02:14:20','2021-04-07 02:14:20','e7846990-7330-416a-b119-ef1ed08687dd','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(34752,150148,1,'2021-04-07 02:14:20','2021-04-07 02:14:20','59fd9f9c-7482-40c0-8db9-86120c7063cb','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(34753,150209,1,'2021-04-08 05:53:19','2021-04-08 05:53:19','262b7e34-d5e4-4483-86cb-821ffc7b85dd','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Ref-v6_2-MD1-2.rtf?mtime=20200521160730&focal=none',1,'outline'),(34754,150210,1,'2021-04-08 05:53:19','2021-04-08 05:53:19','a14451d8-803a-4daf-a69b-858ba6af36a0','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Ref-BP-v6_22-1.rtf?mtime=20200521160947&focal=none',1,'outline'),(34755,150211,1,'2021-04-08 05:53:19','2021-04-08 05:53:19','2c42400f-4367-4a09-bbc8-a9e88aff6769','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Referral-PractiX-v4_9-2.doc?mtime=20200521161148&focal=none',1,'outline'),(34756,150212,1,'2021-04-08 05:53:19','2021-04-08 05:53:19','0e48d49e-b6f9-4bc9-82f8-389ed685e500','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Ref-v6_2-ZM1-3.rtf?mtime=20200521161318&focal=none',1,'outline'),(34757,150214,1,'2021-04-08 05:53:19','2021-04-08 05:53:19','dfcfb1bc-b727-443b-8239-65e27a3cc308','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Ref-v6_2-MD1-1.rtf?mtime=20200522123723&focal=none',1,'outline'),(34758,150215,1,'2021-04-08 05:53:19','2021-04-08 05:53:19','7279d2a9-55ff-4b50-9b93-2d659fc902ad','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Ref-BP-v6_21-1.rtf?mtime=20200522123854&focal=none',1,'outline'),(34759,150216,1,'2021-04-08 05:53:19','2021-04-08 05:53:19','36963566-c194-4c5c-9bf6-eb8fdca745fc','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-PCH-PractiX-v4_12-1.doc?mtime=20200522124052&focal=none',1,'outline'),(34760,150217,1,'2021-04-08 05:53:19','2021-04-08 05:53:19','7c0e3084-6704-4ef0-a80e-7a049419bca0','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Ref-v6_2-ZM-1.rtf?mtime=20200522124257&focal=none',0,'outline'),(34761,150219,1,'2021-04-08 05:53:19','2021-04-08 05:53:19','b7d8a89e-e4b4-45bf-a2df-1f48f8a4361c','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Hosp-Ref-v6_2-MD1-1.rtf?mtime=20200522125506&focal=none',1,'outline'),(34762,150220,1,'2021-04-08 05:53:19','2021-04-08 05:53:19','77a8f655-bafe-44cb-8909-e35447ecf5e0','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Ref-BP-v6_21-1.rtf?mtime=20200522125735&focal=none',1,'outline'),(34763,150221,1,'2021-04-08 05:53:19','2021-04-08 05:53:19','112f8aee-fdf2-4130-8ca6-402265e6ecef','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-PractiX-v4_12-1.doc?mtime=20200522125843&focal=none',1,'outline'),(34764,150222,1,'2021-04-08 05:53:19','2021-04-08 05:53:19','7c5574e6-25a8-4a36-a83a-9f6ac0ca1e5c','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522130025&focal=none',1,'outline'),(34765,150224,1,'2021-04-08 05:53:19','2021-04-08 05:53:19','2b7fd29a-846b-41c5-a756-61ccbb5fdd3e','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Hosp-Ref-v6_2-MD1-1.rtf?mtime=20200522151932&focal=none',1,'outline'),(34766,150225,1,'2021-04-08 05:53:19','2021-04-08 05:53:19','756ece89-259d-4a9c-a485-0384d2cd4c1d','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Ref-BP-v6_21-1.rtf?mtime=20200522152119&focal=none',1,'outline'),(34767,150226,1,'2021-04-08 05:53:19','2021-04-08 05:53:19','eb0bb5ae-a122-4807-a380-8751607c5c20','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Cab-Referral-PractiX-v4_12-1.doc?mtime=20200522152242&focal=none',1,'outline'),(34768,150227,1,'2021-04-08 05:53:19','2021-04-08 05:53:19','86f98dc8-888a-4950-92bd-c45b3303ad04','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522152403&focal=none',1,'outline'),(34769,150229,1,'2021-04-08 05:53:19','2021-04-08 05:53:19','83856ffe-97c5-466b-8522-33db372d0714','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Ref-v6_2-MD-1.rtf?mtime=20200522152838&focal=none',1,'outline'),(34770,150230,1,'2021-04-08 05:53:19','2021-04-08 05:53:19','20ba238e-2f8d-40de-b6b3-fb96936a593c','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Palliative-Ref-BP-v6_2-2.rtf?mtime=20200522152943&focal=none',1,'outline'),(34771,150231,1,'2021-04-08 05:53:19','2021-04-08 05:53:19','b276baaf-1295-400f-a2b9-8a285c08cc40','PractiX',NULL,1,'outline'),(34772,150232,1,'2021-04-08 05:53:19','2021-04-08 05:53:19','e5de2e78-9d97-4b01-8b5b-9fef74709331','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Ref-v6.2-ZM.rtf?mtime=20200522153215&focal=none',1,'outline'),(34773,150234,1,'2021-04-08 05:53:19','2021-04-08 05:53:19','0d688997-cb49-4e86-b59d-7dc37973fa54','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Ref-v6_2-MD-1.rtf?mtime=20200522153709&focal=none',1,'outline'),(34774,150235,1,'2021-04-08 05:53:19','2021-04-08 05:53:19','78a19cd1-37b5-45ed-b55b-28ab5ac2ef23','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Ref-BP-v6_2-1.rtf?mtime=20200522153837&focal=none',1,'outline'),(34775,150236,1,'2021-04-08 05:53:19','2021-04-08 05:53:19','e26581a2-1f55-498e-a806-ae9f5f2a628b','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-PractiX-v4_12-1.doc?mtime=20200522153957&focal=none',1,'outline'),(34776,150237,1,'2021-04-08 05:53:20','2021-04-08 05:53:20','774ffa68-bc9e-48c2-b0da-d94ec7298a43','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Ref-v6_2-ZM-1.rtf?mtime=20200522154107&focal=none',1,'outline'),(34777,150239,1,'2021-04-08 05:53:20','2021-04-08 05:53:20','e96b967e-40ab-4144-b52a-4c10bc40c71e','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Ref-v6_2-MD-1.rtf?mtime=20200522154623&focal=none',1,'outline'),(34778,150240,1,'2021-04-08 05:53:20','2021-04-08 05:53:20','40cbaed5-ecc6-42df-8752-f22bbb63fc27','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatrics-Ref-BP-v6_2-1.rtf?mtime=20200522154740&focal=none',1,'outline'),(34779,150241,1,'2021-04-08 05:53:20','2021-04-08 05:53:20','88673396-5a0d-4f46-9b80-4a42368b4637','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-PractiX-v4_12-1.doc?mtime=20200522154912&focal=none',1,'outline'),(34780,150242,1,'2021-04-08 05:53:20','2021-04-08 05:53:20','df1eb9b8-7d1a-4ef7-a3cd-3836e7fb80ad','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Ref-v6_2-ZM-1.rtf?mtime=20200522155024&focal=none',1,'outline'),(34781,150244,1,'2021-04-08 05:53:20','2021-04-08 05:53:20','54a8629f-16ba-4d3e-9524-f49b26a126be','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-COHD-ref-v6.2-MD-2.rtf?mtime=20200713141836&focal=none',1,'outline'),(34782,150245,1,'2021-04-08 05:53:20','2021-04-08 05:53:20','bca8955f-b468-481a-b4c3-54ea5a020e80','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-COHD-Ref-BP-v6.2.rtf?mtime=20200713142005&focal=none',1,'outline'),(34783,150246,1,'2021-04-08 05:53:20','2021-04-08 05:53:20','e2a11c39-0976-4ed4-9d09-758668ca9ac2','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Community-and-Oral-Health-Directorate-Ref-v6.2-ZM.rtf?mtime=20200807161125&focal=none',1,'outline'),(34784,150249,1,'2021-04-08 05:53:20','2021-04-08 05:53:20','b549856a-9270-4477-983f-ab783b0e8436','Service information','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient',1,'solid'),(34785,150250,1,'2021-04-08 05:53:20','2021-04-08 05:53:20','b41f168d-5760-4296-9208-0ce755f26913','Find a specialist','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'solid'),(34786,150252,1,'2021-04-08 05:53:20','2021-04-08 05:53:20','fa75a69f-79d5-4ab9-9355-0fde8f873c8c','Download the FAQs','https://metronorth.health.qld.gov.au/wp-content/uploads/2017/11/CPI-FAQ-V2.pdf',1,'solid'),(34791,150293,1,'2021-04-08 23:06:33','2021-04-08 23:06:33','aa172b07-ede7-4f1f-a665-58c50faa9552','Development Project Lead | Care Coordination','https://brisbanenorthphn.org.au/jobs/development-project-lead-care-coordination',1,'solid'),(34792,150294,1,'2021-04-08 23:06:33','2021-04-08 23:06:33','fba2b9ad-30c6-434f-90c6-a165287a51c2','Allied Health Coordinator (part-time)','https://brisbanenorthphn.org.au/jobs/allied-health-coordinator-part-time',1,'solid'),(34793,150297,1,'2021-04-08 23:06:33','2021-04-08 23:06:33','8d9a95ae-b57a-4c91-b384-34c398f4d9e7','Browse local positions vacant',NULL,0,'solid'),(34794,150303,1,'2021-04-08 23:06:33','2021-04-08 23:06:33','3ce7d968-90ec-453e-b393-764ebadfde43','Development Project Lead | Care Coordination','https://brisbanenorthphn.org.au/jobs/development-project-lead-care-coordination',1,'solid'),(34795,150304,1,'2021-04-08 23:06:33','2021-04-08 23:06:33','f85fdff2-6c01-484f-81ed-98b069f86b07','Allied Health Coordinator (part-time)','https://brisbanenorthphn.org.au/jobs/allied-health-coordinator-part-time',1,'solid'),(34796,150307,1,'2021-04-08 23:06:33','2021-04-08 23:06:33','aa5d4f10-aeff-4257-9cda-c4dcfe04823b','Browse local positions vacant',NULL,0,'solid'),(34797,150335,1,'2021-04-09 07:08:44','2021-04-23 22:47:55','7edfccab-f4d5-4ae8-889b-5ae106ee4990','9 April','https://icampaign.brightlabs.com.au/v/9655/1735686917/email.html?k=wWvhac5K_2ThrjHnqFX8KD-Iowxb8LaMjuY8biU2nQw',1,'solid'),(34798,150339,1,'2021-04-09 07:08:44','2021-04-09 07:08:44','f749ead1-7479-4555-9110-8f19946ce29d','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(34799,150343,1,'2021-04-09 07:08:44','2021-04-09 07:08:44','8c799614-7bf9-4c23-9131-dd3a4b51028e','For GPs',NULL,1,'outline'),(34800,150344,1,'2021-04-09 07:08:44','2021-04-09 07:08:44','3225c3dd-a91e-437f-aa0a-818f74aac0a4','For RACFs',NULL,1,'outline'),(34801,150345,1,'2021-04-09 07:08:44','2021-04-09 07:08:44','3f32b8c5-4ac6-4ad2-964f-86969d938040','For community',NULL,1,'outline'),(34802,150348,1,'2021-04-09 07:08:44','2021-04-09 07:08:44','8121f68f-b3bb-4614-8de3-8da0ce748a6e','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(34803,150351,1,'2021-04-09 07:08:44','2021-04-09 07:08:44','b143618e-8ce4-47e4-be86-63a4b4725315','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(34804,150353,1,'2021-04-09 07:08:44','2021-04-09 07:08:44','3152befc-f51e-484b-9aa2-e0645e45b0b2','9 April','https://icampaign.brightlabs.com.au/v/9655/1735686917/email.html?k=wWvhac5K_2ThrjHnqFX8KD-Iowxb8LaMjuY8biU2nQw',1,'solid'),(34805,150354,1,'2021-04-09 07:08:44','2021-04-09 07:08:44','0234100d-993b-4821-ba81-b82313564f6c','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(34806,150355,1,'2021-04-09 07:08:44','2021-04-09 07:08:44','813ca411-964b-4dec-8d20-589f95f0b8cf','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(34807,150356,1,'2021-04-09 07:08:44','2021-04-09 07:08:44','b454aee7-4239-43ef-b018-83838ac2cd85','15 March','https://icampaign.brightlabs.com.au/v/9655/1735670870/email.html?k=v6G-8gVJ_rvtwoUd2fpEBZ1ZIi86nI02To7omwA0FiU',1,'solid'),(34808,150357,1,'2021-04-09 07:08:44','2021-04-09 07:08:44','d5abb617-e10e-40d4-9bc4-0dc816c6dab3','1 March','https://icampaign.brightlabs.com.au/v/9655/1735665136/email.html?k=W4xOP02DyXw184GaxNI6k7EVQ0egPoLmOBx9MgO143c',1,'solid'),(34809,150359,1,'2021-04-09 07:08:44','2021-04-09 07:08:44','2db6b6a2-4b59-4e7f-98b5-236dd9eff7b2','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(34810,150360,1,'2021-04-09 07:08:44','2021-04-09 07:08:44','3e7549e4-23ea-4150-bd11-0a7387ea7c50','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(34811,150361,1,'2021-04-09 07:08:44','2021-04-09 07:08:44','6fcc872b-f24c-4556-b63b-6433931fd607','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(34812,150364,1,'2021-04-09 07:08:44','2021-04-09 07:08:44','a569e483-a1fe-4501-9f20-1d855dd34f21','Department of Health','https://www.health.gov.au/',1,'outline'),(34813,150365,1,'2021-04-09 07:08:44','2021-04-09 07:08:44','b91805c8-c6dc-4995-b1aa-679f18747599','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(34814,150366,1,'2021-04-09 07:08:44','2021-04-09 07:08:44','d427ebb1-142a-4a9d-b3ba-5e9296ab5673','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(34815,150375,1,'2021-04-11 04:21:22','2021-04-23 22:47:55','e6d096b0-89ff-45c1-9728-b104745e6459','11 April','https://icampaign.brightlabs.com.au/v/9655/1735688107/email.html?k=0zbLWXL9p5GnYnEkBtLJQ-6_Jeo-PoOc5e4Ixb3AOe0',1,'solid'),(34816,150379,1,'2021-04-11 04:21:22','2021-04-11 04:21:22','9ece944c-8f92-4ba3-ab01-81fcaa06b1cd','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(34817,150383,1,'2021-04-11 04:21:22','2021-04-11 04:21:22','970f2d90-0ef9-4f18-8f9a-71abd1916963','For GPs',NULL,1,'outline'),(34818,150384,1,'2021-04-11 04:21:22','2021-04-11 04:21:22','2aaab7f6-3ec6-46b9-a7d1-c58057947924','For RACFs',NULL,1,'outline'),(34819,150385,1,'2021-04-11 04:21:22','2021-04-11 04:21:22','b2e05065-eb05-44a0-8423-5a86c6d2ef77','For community',NULL,1,'outline'),(34820,150388,1,'2021-04-11 04:21:22','2021-04-11 04:21:22','c2976b01-b0c4-4200-a812-a7b0b4b4a01e','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(34821,150391,1,'2021-04-11 04:21:22','2021-04-11 04:21:22','9a0f7e23-bfd0-490a-bbac-27ad2ace0f6a','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(34822,150393,1,'2021-04-11 04:21:22','2021-04-11 04:21:22','fdacc42f-5ed0-4bd8-8b19-920a864783df','11 April','https://icampaign.brightlabs.com.au/v/9655/1735688107/email.html?k=0zbLWXL9p5GnYnEkBtLJQ-6_Jeo-PoOc5e4Ixb3AOe0',1,'solid'),(34823,150394,1,'2021-04-11 04:21:22','2021-04-11 04:21:22','9e372c36-4710-449c-81af-75d496785092','9 April','https://icampaign.brightlabs.com.au/v/9655/1735686917/email.html?k=wWvhac5K_2ThrjHnqFX8KD-Iowxb8LaMjuY8biU2nQw',1,'solid'),(34824,150395,1,'2021-04-11 04:21:22','2021-04-11 04:21:22','ba50fd86-6c8d-478b-8f97-347c6a2e66fd','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(34825,150396,1,'2021-04-11 04:21:23','2021-04-11 04:21:23','b88f0369-19b5-4414-a53a-03b85e437148','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(34826,150397,1,'2021-04-11 04:21:23','2021-04-11 04:21:23','edda763c-bdeb-482e-8590-4b92f42ced49','15 March','https://icampaign.brightlabs.com.au/v/9655/1735670870/email.html?k=v6G-8gVJ_rvtwoUd2fpEBZ1ZIi86nI02To7omwA0FiU',1,'solid'),(34827,150398,1,'2021-04-11 04:21:23','2021-04-11 04:21:23','c63e8c2e-5120-4cd4-8d9d-f534524c9f25','1 March','https://icampaign.brightlabs.com.au/v/9655/1735665136/email.html?k=W4xOP02DyXw184GaxNI6k7EVQ0egPoLmOBx9MgO143c',1,'solid'),(34828,150400,1,'2021-04-11 04:21:23','2021-04-11 04:21:23','9dd80d7e-caea-4164-beb4-4847b5fa5c5c','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(34829,150401,1,'2021-04-11 04:21:23','2021-04-11 04:21:23','e6628e84-82f8-468e-9dce-aa73983e32c5','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(34830,150402,1,'2021-04-11 04:21:23','2021-04-11 04:21:23','b817bc0f-398a-445c-b5a7-f1f05f8b28a3','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(34831,150405,1,'2021-04-11 04:21:23','2021-04-11 04:21:23','10d2e1a1-033f-4e32-add0-ec8c40b8cc97','Department of Health','https://www.health.gov.au/',1,'outline'),(34832,150406,1,'2021-04-11 04:21:23','2021-04-11 04:21:23','df48e012-a26c-47d4-9572-4ebccfc6631f','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(34833,150407,1,'2021-04-11 04:21:23','2021-04-11 04:21:23','f71e7d14-3148-4c04-9b0b-b745031b86cf','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(34836,150455,1,'2021-04-12 00:41:29','2021-04-12 00:41:29','f8e4ab7d-0c11-4a90-91e3-c0eca281f355','Contact Stopline','https://brisbanenorthphn.stoplinereport.com/',1,'solid'),(34837,150458,1,'2021-04-12 00:41:29','2021-04-12 00:41:29','e2bc952b-c30e-4319-aca7-3375124c13b8','Contribute',NULL,1,'solid'),(34838,150467,1,'2021-04-12 00:41:29','2021-04-12 00:41:29','0226b478-35ab-4aed-b1d9-f89acf4b3679','Contact Stopline','https://brisbanenorthphn.stoplinereport.com/',1,'solid'),(34839,150470,1,'2021-04-12 00:41:29','2021-04-12 00:41:29','3a2de5aa-138f-4105-89a5-a3a213e0a1f7','Contribute',NULL,1,'solid'),(34840,150479,1,'2021-04-12 00:41:33','2021-04-12 00:41:33','d8186230-0739-4124-ab2d-67bef41a6306','Contact Stopline','https://brisbanenorthphn.stoplinereport.com/',1,'solid'),(34841,150482,1,'2021-04-12 00:41:33','2021-04-12 00:41:33','266b73ef-f55e-4176-9578-f1175665dbc7','Contribute',NULL,1,'solid'),(34874,150552,1,'2021-04-12 04:43:54','2021-04-12 04:43:54','9d1f7b5a-b1ad-4ce6-a008-d1545c8b13de','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(34875,150553,1,'2021-04-12 04:43:54','2021-04-12 04:43:54','84817afc-7c4a-4055-a2ad-792018974525','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(34876,150554,1,'2021-04-12 04:43:54','2021-04-12 04:43:54','49e6a634-607b-414c-b18b-4ae2269f9543','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(34877,150557,1,'2021-04-12 04:43:54','2021-04-12 04:43:54','abcca54a-a541-479d-8b56-c99a722cae95','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(34878,150558,1,'2021-04-12 04:43:54','2021-04-12 04:43:54','bd4ecf29-c2bf-42de-b7e1-3f474bd59687','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(34879,150559,1,'2021-04-12 04:43:54','2021-04-12 04:43:54','c00c9864-519a-4238-bf94-66df0bcf5713','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(34880,150560,1,'2021-04-12 04:43:54','2021-04-12 04:43:54','509cbd14-3600-49db-bd96-f9ca6fbf5004','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(34881,150563,1,'2021-04-12 04:43:54','2021-04-12 04:43:54','04a688d8-0551-48a4-832b-cfcdca124cab','ATAGI statement - 8 April','https://www.health.gov.au/news/atagi-statement-on-astrazeneca-vaccine-in-response-to-new-vaccine-safety-concerns',1,'solid'),(34882,150564,1,'2021-04-12 04:43:54','2021-04-12 04:43:54','1df6aaeb-40e9-4ab6-93cf-33cdeda534a1','ATAGI statement - 2 April','https://www.health.gov.au/news/atagi-statement-consumers-specific-clotting-condition-after-covid-19-vaccination',1,'solid'),(34883,150571,1,'2021-04-12 04:43:55','2021-04-12 04:43:55','3e956edb-0122-449a-b901-403904cf988b','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(34884,150574,1,'2021-04-12 04:43:55','2021-04-12 04:43:55','eefbaf13-58bc-430c-b149-079302b6d0a5','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(34885,150575,1,'2021-04-12 04:43:55','2021-04-12 04:43:55','17ca9b06-790e-4602-af44-7dbee4a428bb','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(34886,150576,1,'2021-04-12 04:43:55','2021-04-12 04:43:55','ea9841b4-8afc-42b5-b5d0-b433bcc103e8','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(34887,150577,1,'2021-04-12 04:43:55','2021-04-12 04:43:55','b86a31ab-64ca-4fa9-9f69-76e7b173d105','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(34888,150578,1,'2021-04-12 04:43:55','2021-04-12 04:43:55','ced0275b-aff6-453a-a374-080f287efc29','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(34889,150584,1,'2021-04-12 04:43:55','2021-04-12 04:43:55','eb1128a3-03b2-4544-94e2-fe671778a230','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(34890,150585,1,'2021-04-12 04:43:55','2021-04-12 04:43:55','de48abd4-573d-4f11-9566-a76463a8dc34','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(34891,150586,1,'2021-04-12 04:43:55','2021-04-12 04:43:55','49e80cbf-bfca-4f6c-aaac-7339c4694c23','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(34892,150591,1,'2021-04-12 04:43:56','2021-04-12 04:43:56','ed5f8ab0-2d30-46bf-b56a-e6b702562b54','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(34893,150592,1,'2021-04-12 04:43:56','2021-04-12 04:43:56','52fdc57c-81b9-4806-85aa-4efc1f71a176','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(34894,150593,1,'2021-04-12 04:43:56','2021-04-12 04:43:56','ab7b25f0-00cb-440a-b0cd-5dc66252a3a2','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(34895,150596,1,'2021-04-12 04:43:56','2021-04-12 04:43:56','e0a1264e-c8ce-4efb-84dc-8d7fe720740c','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(34896,150597,1,'2021-04-12 04:43:56','2021-04-12 04:43:56','329cf545-96cc-41a9-9c56-d6bac4c4bacd','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(34897,150598,1,'2021-04-12 04:43:56','2021-04-12 04:43:56','fa2a7832-4195-49ac-804a-44aeedd0a797','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(34898,150599,1,'2021-04-12 04:43:56','2021-04-12 04:43:56','7110f15c-8b83-483d-a534-d2e1e840f217','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(34899,150602,1,'2021-04-12 04:43:56','2021-04-12 04:43:56','27ab8a33-5578-4e2e-af51-5b9b0db49751','ATAGI statement - 8 April','https://www.health.gov.au/news/atagi-statement-on-astrazeneca-vaccine-in-response-to-new-vaccine-safety-concerns',1,'solid'),(34900,150603,1,'2021-04-12 04:43:56','2021-04-12 04:43:56','4c12a070-6af9-4688-9dc6-1f0d82a7e18e','ATAGI statement - 2 April','https://www.health.gov.au/news/atagi-statement-consumers-specific-clotting-condition-after-covid-19-vaccination',1,'solid'),(34901,150610,1,'2021-04-12 04:43:56','2021-04-12 04:43:56','fad77c4c-ebd7-40a5-98b3-b571c513ccd9','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(34902,150613,1,'2021-04-12 04:43:56','2021-04-12 04:43:56','4f9aaac9-4c61-4547-b786-42a7c3d6b0e1','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(34903,150614,1,'2021-04-12 04:43:56','2021-04-12 04:43:56','b7ed5ccc-d367-4bd8-8ad1-17fcc049303d','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(34904,150615,1,'2021-04-12 04:43:56','2021-04-12 04:43:56','d532b329-f098-4457-ae10-904bfa2c48df','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(34905,150616,1,'2021-04-12 04:43:56','2021-04-12 04:43:56','e001be3b-df2a-4d98-81c6-aa347b929132','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(34906,150617,1,'2021-04-12 04:43:56','2021-04-12 04:43:56','f72f8b5d-034d-4878-a7b8-c7c7195c9008','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(34907,150623,1,'2021-04-12 04:43:56','2021-04-12 04:43:56','ceb553f9-48dd-47f0-a234-5a7692bc2cee','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(34908,150624,1,'2021-04-12 04:43:56','2021-04-12 04:43:56','1e2a839b-f747-4a0a-9dd7-d387159f9c2c','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(34909,150625,1,'2021-04-12 04:43:56','2021-04-12 04:43:56','09a362e2-1d0d-43a9-99f0-14508ca1342b','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(34910,150630,1,'2021-04-12 04:44:01','2021-04-12 04:44:01','a814d662-a8a6-410c-bd4e-1ddc47305425','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(34911,150631,1,'2021-04-12 04:44:01','2021-04-12 04:44:01','f0a38a61-c484-4b01-b4b0-69aa956e4f8b','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(34912,150632,1,'2021-04-12 04:44:01','2021-04-12 04:44:01','26cce580-19c7-48b3-9fb6-219a601858ae','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(34913,150635,1,'2021-04-12 04:44:01','2021-04-12 04:44:01','fbd53b6a-e48a-44ab-9cd6-45e10be395f6','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(34914,150636,1,'2021-04-12 04:44:01','2021-04-12 04:44:01','cc97dca7-c336-4d89-bd59-ad4acbea5e3e','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(34915,150637,1,'2021-04-12 04:44:01','2021-04-12 04:44:01','438e9e4c-3b0c-4ea3-9de6-00195000b418','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(34916,150638,1,'2021-04-12 04:44:01','2021-04-12 04:44:01','8d5ce2e2-4725-4d45-95e8-97c1e5cdae28','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(34917,150641,1,'2021-04-12 04:44:02','2021-04-12 04:44:02','c552d780-7973-4cdd-8f20-d098a7f50912','ATAGI statement - 8 April','https://www.health.gov.au/news/atagi-statement-on-astrazeneca-vaccine-in-response-to-new-vaccine-safety-concerns',1,'solid'),(34918,150642,1,'2021-04-12 04:44:02','2021-04-12 04:44:02','64643880-be21-4c17-8f71-d2df85f55009','ATAGI statement - 2 April','https://www.health.gov.au/news/atagi-statement-consumers-specific-clotting-condition-after-covid-19-vaccination',1,'solid'),(34919,150649,1,'2021-04-12 04:44:02','2021-04-12 04:44:02','a72770fa-a759-4e9c-bcd2-b8d2f670ef06','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(34920,150652,1,'2021-04-12 04:44:02','2021-04-12 04:44:02','d32adda0-dfdc-4d80-ab45-914a841174c7','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(34921,150653,1,'2021-04-12 04:44:02','2021-04-12 04:44:02','abd9eea0-d201-4006-b531-c7bf3dae612b','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(34922,150654,1,'2021-04-12 04:44:02','2021-04-12 04:44:02','1ac369b8-58fb-4afe-9e70-17f00dc3e6da','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(34923,150655,1,'2021-04-12 04:44:02','2021-04-12 04:44:02','60c6c016-5c4a-414e-9601-ef87cf9521cf','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(34924,150656,1,'2021-04-12 04:44:02','2021-04-12 04:44:02','99a30fe1-1dff-451a-b1b2-14484384fab7','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(34925,150662,1,'2021-04-12 04:44:02','2021-04-12 04:44:02','ce39b20f-edc9-4cd2-8805-5e9a84f7c725','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(34926,150663,1,'2021-04-12 04:44:02','2021-04-12 04:44:02','3876e07a-560d-4414-ae36-987d675740b4','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(34927,150664,1,'2021-04-12 04:44:02','2021-04-12 04:44:02','595f4a56-0861-4d21-92ff-774e621c4817','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(34984,150984,1,'2021-04-13 06:20:44','2021-04-13 06:20:44','94360246-c231-4e2c-a4cb-4cde030f21f3','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(34985,150985,1,'2021-04-13 06:20:44','2021-04-13 06:20:44','a4867355-8f5f-41a5-86a4-811e9bfda228','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(34986,150988,1,'2021-04-13 06:20:44','2021-04-13 06:20:44','1d08b4d6-92b4-424f-b0bb-f641469c02ac','Phase 1B rollout FAQs',NULL,1,'solid'),(34987,150991,1,'2021-04-13 06:20:44','2021-04-13 06:20:44','35c8c1b4-c4dc-4bd8-b4a7-65e0c648e845','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(34988,150994,1,'2021-04-13 06:20:44','2021-04-13 06:20:44','16071fcb-172a-4965-b668-c20a9350e6d7','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(34989,150997,1,'2021-04-13 06:20:44','2021-04-13 06:20:44','e920f599-cf0a-47dc-a264-722c901587ce','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(34990,150999,1,'2021-04-13 06:20:44','2021-04-13 06:20:44','db7be3fa-9e7d-4460-b21e-4d3984581384','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(34991,151001,1,'2021-04-13 06:20:44','2021-04-13 06:20:44','9da89d65-cec9-428e-a532-c23716ea6a7e','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(34992,151004,1,'2021-04-13 06:20:44','2021-04-13 06:20:44','f6d9ec6b-e481-4c76-9ca7-882749cebe5c','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(34993,151006,1,'2021-04-13 06:20:44','2021-04-13 06:20:44','1a6ec313-4c98-40ed-8b86-e07f5cb28098','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(34994,151008,1,'2021-04-13 06:20:44','2021-04-13 06:20:44','cf3e311f-9bb3-437e-8d4f-f92227245caa','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(34995,151011,1,'2021-04-13 06:20:44','2021-04-13 06:20:44','758ab57d-8012-43fb-83a3-e10f179d9f22','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(34996,151014,1,'2021-04-13 06:20:44','2021-04-13 06:20:44','89a50b56-feb6-4116-89ab-40a73691a40c','Subscribe to updates',NULL,1,'solid'),(34997,151016,1,'2021-04-13 06:20:45','2021-04-13 06:20:45','3240be19-98d2-4208-9fb6-577b06c28d90','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(34998,151017,1,'2021-04-13 06:20:45','2021-04-13 06:20:45','15e4caa2-22c4-4ecf-a2c3-ada5f72ca9a8','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(34999,151021,1,'2021-04-13 06:20:45','2021-04-13 06:20:45','caf8fcba-2374-44dd-9c9a-65dd0bd27ea2','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(35000,151022,1,'2021-04-13 06:20:45','2021-04-13 06:20:45','097a0507-855b-4640-9b7f-b145a1be3960','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(35001,151025,1,'2021-04-13 06:20:45','2021-04-13 06:20:45','962cd89b-2782-4b37-897e-10d16ad95ead','Phase 1B rollout FAQs',NULL,1,'solid'),(35002,151028,1,'2021-04-13 06:20:45','2021-04-13 06:20:45','64884890-e12f-48eb-b1f8-3ba3c3ac2584','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(35003,151031,1,'2021-04-13 06:20:45','2021-04-13 06:20:45','f1a1b5eb-fc8c-4a74-a443-a62d12e953cb','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(35004,151034,1,'2021-04-13 06:20:45','2021-04-13 06:20:45','38ed5376-f65a-4eab-9216-66335bfae8ff','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(35005,151036,1,'2021-04-13 06:20:45','2021-04-13 06:20:45','97203b16-3220-414b-8954-620b30d590d0','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(35006,151038,1,'2021-04-13 06:20:45','2021-04-13 06:20:45','3dfb1c74-cf9a-4032-ac67-7972a0bc843a','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(35007,151041,1,'2021-04-13 06:20:45','2021-04-13 06:20:45','552268d7-7993-48d6-8e1d-6e19f9b91339','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(35008,151043,1,'2021-04-13 06:20:45','2021-04-13 06:20:45','7b76eae1-e59f-4257-a91d-2597783b7c8e','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(35009,151045,1,'2021-04-13 06:20:45','2021-04-13 06:20:45','410f89e0-16e2-4ab2-a856-d71d23665b04','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(35010,151048,1,'2021-04-13 06:20:46','2021-04-13 06:20:46','dff399d1-f0ea-4d94-bbfd-bafe1e9b06eb','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(35011,151051,1,'2021-04-13 06:20:46','2021-04-13 06:20:46','8418a5a4-d33d-4707-b57a-fcd1b05284c7','Subscribe to updates',NULL,1,'solid'),(35012,151053,1,'2021-04-13 06:20:46','2021-04-13 06:20:46','246f72f1-7705-4ee6-8f12-0df7125dedbf','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(35013,151054,1,'2021-04-13 06:20:46','2021-04-13 06:20:46','d3b3e38e-0abd-4276-ae43-eae6f96236b8','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(35014,151058,1,'2021-04-13 06:21:03','2021-04-13 06:21:03','187417ac-38e6-4e3e-8ff0-1706a6bc931b','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(35015,151059,1,'2021-04-13 06:21:03','2021-04-13 06:21:03','0aa879cc-d5df-44e8-80c1-b37656bd57e9','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(35016,151062,1,'2021-04-13 06:21:03','2021-04-13 06:21:03','dc338d08-2a40-470e-beba-76b289d9127b','Phase 1B rollout FAQs',NULL,1,'solid'),(35017,151065,1,'2021-04-13 06:21:03','2021-04-13 06:21:03','da2339b3-bb58-4660-81d0-686fb103aa5d','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(35018,151068,1,'2021-04-13 06:21:03','2021-04-13 06:21:03','2d4224f3-0333-4a9b-8faa-695162e3a2f6','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(35019,151071,1,'2021-04-13 06:21:03','2021-04-13 06:21:03','7bf7dcac-953b-4c78-93a9-2fe352b002be','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(35020,151073,1,'2021-04-13 06:21:03','2021-04-13 06:21:03','5ba43da8-0a29-4d5f-92cd-adeabc2e4183','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(35021,151075,1,'2021-04-13 06:21:03','2021-04-13 06:21:03','ee129541-d2d1-4fca-9990-dd26e6522351','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(35022,151078,1,'2021-04-13 06:21:04','2021-04-13 06:21:04','2d3620be-9be9-4dcd-85c2-83e73c05cd70','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(35023,151080,1,'2021-04-13 06:21:04','2021-04-13 06:21:04','ff438e38-88e6-4e61-9e51-f24c1615c8ce','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(35024,151082,1,'2021-04-13 06:21:04','2021-04-13 06:21:04','8e6a558f-c42d-46eb-93f4-58c9d56cb2e5','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(35025,151085,1,'2021-04-13 06:21:04','2021-04-13 06:21:04','a2603dff-53e9-4204-883e-b65c6e68b4c0','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(35026,151088,1,'2021-04-13 06:21:04','2021-04-13 06:21:04','b3710745-8299-4c8c-a8d6-bfa0830a8d9d','Subscribe to updates',NULL,1,'solid'),(35027,151090,1,'2021-04-13 06:21:04','2021-04-13 06:21:04','1c786831-1408-495b-a575-b357712dd9b1','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(35028,151091,1,'2021-04-13 06:21:04','2021-04-13 06:21:04','86606f1c-d7ba-4f77-9494-dd3ba3c8a73e','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(35029,151121,1,'2021-04-14 01:47:28','2021-04-14 01:47:47','2627de7a-d882-418c-af7a-79dddf3a1d68','Development Project Lead | Care Coordination','https://brisbanenorthphn.org.au/jobs/development-project-lead-care-coordination',1,'solid'),(35030,151122,1,'2021-04-14 01:47:28','2021-04-14 01:47:47','da2ec0b9-9bd9-4053-b173-ef7ca3510d10','Allied Health Coordinator (part-time)','https://brisbanenorthphn.org.au/jobs/allied-health-coordinator-part-time',1,'solid'),(35031,151125,1,'2021-04-14 01:47:28','2021-04-14 01:47:28','e2e51dc2-5abf-434c-bf30-38e11143e8be','Browse local positions vacant',NULL,0,'solid'),(35032,151126,1,'2021-04-14 01:47:29','2021-04-14 01:47:29','8d6a8ef4-edde-476c-a731-14be9463bf94',NULL,NULL,0,'solid'),(35033,151127,1,'2021-04-14 01:47:31','2021-04-14 01:47:31','160796a0-8260-4a72-b504-59aeda74cf56',NULL,'https://brisbanenorthphn.org.au/jobs/expression-of-interest-for-clinicians-advisory-group-members',0,'solid'),(35034,151128,1,'2021-04-14 01:47:37','2021-04-14 01:47:37','d7574563-f129-4508-ab67-5889504f27d0',NULL,'https://brisbanenorthphn.org.au/jobs/expression-of-interest-for-clinicians-advisory-group-members',1,'solid'),(35035,151129,1,'2021-04-14 01:47:47','2021-04-14 01:47:47','d878108f-9dfa-42a0-a5af-8b371111020a','Expression of Interest for Clinicians\' Advisory Group Members','https://brisbanenorthphn.org.au/jobs/expression-of-interest-for-clinicians-advisory-group-members',1,'solid'),(35036,151134,1,'2021-04-14 01:47:58','2021-04-20 06:15:11','2dc169ec-f668-4d5c-8c9b-adb1727b8ba5','Expression of Interest for Clinicians\' Advisory Group Members','https://brisbanenorthphn.org.au/jobs/expression-of-interest-for-clinicians-advisory-group-members',1,'solid'),(35037,151135,1,'2021-04-14 01:47:58','2021-04-14 01:47:58','adc48877-2b83-4e10-a72f-07ce7f53992b','Development Project Lead | Care Coordination','https://brisbanenorthphn.org.au/jobs/development-project-lead-care-coordination',1,'solid'),(35038,151136,1,'2021-04-14 01:47:58','2021-04-20 06:15:11','3b89f5c6-7905-4dd2-ba1d-a86a1e593c83','Allied Health Coordinator (part-time)','https://brisbanenorthphn.org.au/jobs/allied-health-coordinator-part-time',1,'solid'),(35039,151139,1,'2021-04-14 01:47:59','2021-04-14 01:47:59','d9fb5a31-1636-485c-a6f1-d92806de1545','Browse local positions vacant',NULL,0,'solid'),(35040,151145,1,'2021-04-14 01:47:59','2021-04-14 01:47:59','2d200428-4841-491f-a2f5-a300517c0665','Expression of Interest for Clinicians\' Advisory Group Members','https://brisbanenorthphn.org.au/jobs/expression-of-interest-for-clinicians-advisory-group-members',1,'solid'),(35041,151146,1,'2021-04-14 01:47:59','2021-04-14 01:47:59','fb568225-fa98-4880-a46b-0d4f0b6ed107','Development Project Lead | Care Coordination','https://brisbanenorthphn.org.au/jobs/development-project-lead-care-coordination',1,'solid'),(35042,151147,1,'2021-04-14 01:47:59','2021-04-14 01:47:59','8d9d99b5-9f7f-40db-b2a0-a6d4907237f0','Allied Health Coordinator (part-time)','https://brisbanenorthphn.org.au/jobs/allied-health-coordinator-part-time',1,'solid'),(35043,151150,1,'2021-04-14 01:47:59','2021-04-14 01:47:59','89e2aa44-66cb-4a64-90dc-fd4fbb6b25b9','Browse local positions vacant',NULL,0,'solid'),(35044,151288,1,'2021-04-20 05:20:28','2021-04-20 05:21:13','1610f654-2e4c-429f-8326-0039cd422819','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(35045,151289,1,'2021-04-20 05:20:28','2021-04-20 05:21:13','c756715d-746e-47c5-b6c2-5a3ff34861bd','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(35046,151290,1,'2021-04-20 05:20:28','2021-04-20 05:21:13','cca28288-84af-49c3-ae7e-0a721334a088','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(35047,151293,1,'2021-04-20 05:20:28','2021-04-20 05:21:13','88501820-490a-462c-9dba-6ee4c89ac59e','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(35048,151294,1,'2021-04-20 05:20:28','2021-04-20 05:21:13','aa6ef280-935c-4b57-9797-6b0eb94c6879','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(35049,151295,1,'2021-04-20 05:20:28','2021-04-20 05:21:13','5f4b24ba-bd25-4b3c-8e01-671c6aa8821a','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(35050,151296,1,'2021-04-20 05:20:28','2021-04-20 05:21:13','6e5fbf99-8c43-4e77-9016-f7ae9d004e88','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(35051,151299,1,'2021-04-20 05:20:28','2021-04-20 05:21:13','603f9eb0-5d49-404b-8c6e-bdf5108348a5','ATAGI statement - 8 April','https://www.health.gov.au/news/atagi-statement-on-astrazeneca-vaccine-in-response-to-new-vaccine-safety-concerns',1,'solid'),(35052,151300,1,'2021-04-20 05:20:28','2021-04-20 05:21:13','154d6bcf-c84c-4f33-829b-3872e9af4199','ATAGI statement - 2 April','https://www.health.gov.au/news/atagi-statement-consumers-specific-clotting-condition-after-covid-19-vaccination',1,'solid'),(35053,151307,1,'2021-04-20 05:20:28','2021-04-20 05:21:13','ac00df9b-9789-46cf-bd3f-c273df52992a','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(35054,151310,1,'2021-04-20 05:20:28','2021-04-20 05:21:13','be5849e2-0b30-414c-9dcc-80edba3b6834','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(35055,151311,1,'2021-04-20 05:20:28','2021-04-20 05:21:13','6429be8f-1876-4de4-aee1-622da736e49e','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(35056,151312,1,'2021-04-20 05:20:28','2021-04-20 05:21:13','0eb51cf8-53de-41d6-a8c0-d9cbe4a23329','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(35057,151313,1,'2021-04-20 05:20:28','2021-04-20 05:21:13','5f7b6b9d-925e-4631-9f27-a23f7c43572a','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(35058,151314,1,'2021-04-20 05:20:28','2021-04-20 05:21:13','2ec0e59e-fcc5-4a0d-acb6-7d96834ad355','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(35059,151320,1,'2021-04-20 05:20:28','2021-04-20 05:21:13','a3692158-914c-485b-926c-c74790c47e02','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(35060,151321,1,'2021-04-20 05:20:28','2021-04-20 05:21:13','918c08cb-aa05-4d08-b689-c57f971c08e1','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(35061,151322,1,'2021-04-20 05:20:28','2021-04-20 05:21:13','3b7b637b-5efb-4702-a8c1-0f2e3c0d5e52','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(35062,151324,1,'2021-04-20 05:20:28','2021-04-20 05:20:28','366fdbb7-ed9f-4412-8960-43c4f1b14157',NULL,NULL,0,'solid'),(35063,151325,1,'2021-04-20 05:20:32','2021-04-20 05:20:32','345bc8bc-e59d-4dd3-b0bd-d5e8e3bed1ae','Va',NULL,0,'solid'),(35064,151326,1,'2021-04-20 05:20:34','2021-04-20 05:20:34','b661ca7e-41ae-46d6-b806-51d95a231c26','Vaccine r',NULL,0,'solid'),(35065,151327,1,'2021-04-20 05:20:36','2021-04-20 05:20:36','75638ead-63e6-431f-b470-74c7e59ae3b0','Vaccine rollout',NULL,0,'solid'),(35066,151328,1,'2021-04-20 05:20:46','2021-04-20 05:20:46','64e21279-ea28-49e5-97ad-dd0e452c0e75','Vaccine rollout data',NULL,0,'solid'),(35067,151329,1,'2021-04-20 05:20:53','2021-04-20 05:20:53','85dbcfb6-cb3f-4e12-a7ff-605ff81dfb76','Vaccine rollout data','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/australias-covid-19-vaccine-rollout',0,'solid'),(35068,151330,1,'2021-04-20 05:21:03','2021-04-20 05:21:03','2a0159a0-6115-4030-8082-89ef0322c795','Vaccine rollout data','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/australias-covid-19-vaccine-rollout',1,'solid'),(35069,151331,1,'2021-04-20 05:21:13','2021-04-20 05:21:13','c25ae6eb-49f2-4cd4-9793-2c3ea1ae7323','Vaccine rollout data','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/australias-covid-19-vaccine-rollout',1,'solid'),(35070,151334,1,'2021-04-20 05:21:17','2021-04-20 05:21:17','f10d6746-faaa-45f2-9aa0-845e3ba5cde8','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(35071,151335,1,'2021-04-20 05:21:17','2021-04-20 05:21:17','cb1aa911-5d21-4d94-a01b-cd1f7671ab2c','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(35072,151336,1,'2021-04-20 05:21:17','2021-04-20 05:21:17','7bc32670-cbed-4da3-a431-807ad6eefa47','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(35073,151337,1,'2021-04-20 05:21:17','2021-04-20 05:21:17','5ef70b74-530e-4b9b-8143-0824eafa4b48','Vaccine rollout data','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/australias-covid-19-vaccine-rollout',1,'solid'),(35074,151340,1,'2021-04-20 05:21:17','2021-04-20 05:21:17','c93c3439-ded2-462f-804f-d6f5f448187b','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(35075,151341,1,'2021-04-20 05:21:17','2021-04-20 05:21:17','f8411ff7-c135-4368-88f3-d33962fd02c4','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(35076,151342,1,'2021-04-20 05:21:18','2021-04-20 05:21:18','b80b64d4-a637-4ad4-b4f2-b114139e677a','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(35077,151343,1,'2021-04-20 05:21:18','2021-04-20 05:21:18','26ec05c1-4e7d-4616-a8db-f5585b648b0f','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(35078,151346,1,'2021-04-20 05:21:18','2021-04-20 05:21:18','8c759d80-811f-4db2-8125-7894c4d75eb7','ATAGI statement - 8 April','https://www.health.gov.au/news/atagi-statement-on-astrazeneca-vaccine-in-response-to-new-vaccine-safety-concerns',1,'solid'),(35079,151347,1,'2021-04-20 05:21:18','2021-04-20 05:21:18','ca246d36-d3a7-433b-96bb-4f8c9815b451','ATAGI statement - 2 April','https://www.health.gov.au/news/atagi-statement-consumers-specific-clotting-condition-after-covid-19-vaccination',1,'solid'),(35080,151354,1,'2021-04-20 05:21:18','2021-04-20 05:21:18','39a9ae86-c416-418b-b855-d75f5236d1d0','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(35081,151357,1,'2021-04-20 05:21:18','2021-04-20 05:21:18','daba0a9a-9f23-4061-870e-1cc386a1670a','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(35082,151358,1,'2021-04-20 05:21:18','2021-04-20 05:21:18','c26ffed1-466d-406d-a553-ac4f733c6cb0','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(35083,151359,1,'2021-04-20 05:21:18','2021-04-20 05:21:18','4854c86e-626b-4067-a996-01c3d77befa2','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(35084,151360,1,'2021-04-20 05:21:18','2021-04-20 05:21:18','663af903-9f56-49bb-b0be-d4a4d2f51aca','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(35085,151361,1,'2021-04-20 05:21:18','2021-04-20 05:21:18','95fe9d82-9caf-438a-9a68-41b09a161159','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(35086,151367,1,'2021-04-20 05:21:18','2021-04-20 05:21:18','6a1ebf5f-6b75-4b00-ab1b-1b1c51eadfc9','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(35087,151368,1,'2021-04-20 05:21:18','2021-04-20 05:21:18','dda595b2-87e5-4c91-b043-e6e44db8e5b1','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(35088,151369,1,'2021-04-20 05:21:18','2021-04-20 05:21:18','53a991d1-9df8-4f07-a269-d041ee1c7729','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(35089,151374,1,'2021-04-20 05:21:20','2021-04-20 05:21:20','26a83c77-85e9-4c20-bb62-9e535562bd9f','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(35090,151375,1,'2021-04-20 05:21:20','2021-04-20 05:21:20','dc81553e-e9ca-4b10-af86-8ee2f8665227','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(35091,151376,1,'2021-04-20 05:21:20','2021-04-20 05:21:20','28f26964-113c-4384-9c06-be1e329e82e7','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(35092,151377,1,'2021-04-20 05:21:20','2021-04-20 05:21:20','3d2f1ba0-0b6d-4046-84e8-92fe089e9ae9','Vaccine rollout data','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/australias-covid-19-vaccine-rollout',1,'solid'),(35093,151380,1,'2021-04-20 05:21:20','2021-04-20 05:21:20','e3e95304-653f-4ab4-bd05-1fe82881133e','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(35094,151381,1,'2021-04-20 05:21:20','2021-04-20 05:21:20','ec73a002-7ab2-4b0c-b64b-2123c1885b56','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(35095,151382,1,'2021-04-20 05:21:20','2021-04-20 05:21:20','a746c8d4-467c-4ab4-bb76-5e4d9f0e234a','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(35096,151383,1,'2021-04-20 05:21:20','2021-04-20 05:21:20','c3c7cf3a-bc31-4617-b37f-68d13af9bdac','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(35097,151386,1,'2021-04-20 05:21:20','2021-04-20 05:21:20','97a5294a-9d79-45ba-86f8-86a77e722a14','ATAGI statement - 8 April','https://www.health.gov.au/news/atagi-statement-on-astrazeneca-vaccine-in-response-to-new-vaccine-safety-concerns',1,'solid'),(35098,151387,1,'2021-04-20 05:21:20','2021-04-20 05:21:20','1a26d50a-91ad-4460-805d-564033a45b27','ATAGI statement - 2 April','https://www.health.gov.au/news/atagi-statement-consumers-specific-clotting-condition-after-covid-19-vaccination',1,'solid'),(35099,151394,1,'2021-04-20 05:21:20','2021-04-20 05:21:20','407b069a-bebf-4c8d-a42b-4e10d0c93829','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(35100,151397,1,'2021-04-20 05:21:20','2021-04-20 05:21:20','261a50aa-205a-43d7-96f1-180512c15d6c','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(35101,151398,1,'2021-04-20 05:21:20','2021-04-20 05:21:20','18900303-4e48-4d52-9843-0373de1486a6','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(35102,151399,1,'2021-04-20 05:21:20','2021-04-20 05:21:20','5ff0cd0b-819f-41a4-8919-04077c9ff107','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(35103,151400,1,'2021-04-20 05:21:21','2021-04-20 05:21:21','a894fcb1-ee31-4c05-a8be-c211471b7af0','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(35104,151401,1,'2021-04-20 05:21:21','2021-04-20 05:21:21','6f2e919b-7189-400f-a183-a2abea898643','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(35105,151407,1,'2021-04-20 05:21:21','2021-04-20 05:21:21','224e1c99-fc54-4185-adbd-c2783a0b16e8','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(35106,151408,1,'2021-04-20 05:21:21','2021-04-20 05:21:21','7df79213-f7cd-424a-a2e6-c5de575824c2','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(35107,151409,1,'2021-04-20 05:21:21','2021-04-20 05:21:21','61cf255a-0b1e-4a95-abe3-7850907f812c','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(35108,151414,1,'2021-04-20 05:21:37','2021-04-20 05:21:37','e845ee9a-654e-40a3-a861-56dfb81e99d0','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(35109,151415,1,'2021-04-20 05:21:37','2021-04-20 05:21:37','591702ca-7f50-47a1-9f67-3abecd48f78c','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(35110,151416,1,'2021-04-20 05:21:37','2021-04-20 05:21:37','30877ffb-8fa9-40d7-8615-61a6a0ce437d','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(35111,151417,1,'2021-04-20 05:21:37','2021-04-20 05:21:37','343c8421-9b92-48bf-abf0-a137a96bf54c','Vaccine rollout data','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/australias-covid-19-vaccine-rollout',1,'solid'),(35112,151420,1,'2021-04-20 05:21:37','2021-04-20 05:21:37','3ab78d79-6e0c-462d-830c-776d76667904','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(35113,151421,1,'2021-04-20 05:21:37','2021-04-20 05:21:37','bf387ab3-3e10-4954-a272-0d779108c54c','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(35114,151422,1,'2021-04-20 05:21:37','2021-04-20 05:21:37','37b3deec-ff06-425b-a3ca-e5fa0f7d11e9','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(35115,151423,1,'2021-04-20 05:21:37','2021-04-20 05:21:37','d077445f-aea9-478e-9446-4fe51d86fb02','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(35116,151426,1,'2021-04-20 05:21:37','2021-04-20 05:21:37','edaf21f8-6b9f-41c1-b250-7e17a2f0b255','ATAGI statement - 8 April','https://www.health.gov.au/news/atagi-statement-on-astrazeneca-vaccine-in-response-to-new-vaccine-safety-concerns',1,'solid'),(35117,151427,1,'2021-04-20 05:21:37','2021-04-20 05:21:37','efc4222c-c54d-44d0-89af-5884f63cffeb','ATAGI statement - 2 April','https://www.health.gov.au/news/atagi-statement-consumers-specific-clotting-condition-after-covid-19-vaccination',1,'solid'),(35118,151434,1,'2021-04-20 05:21:38','2021-04-20 05:21:38','625770e7-1bdc-40e9-af2b-795aa8691432','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(35119,151437,1,'2021-04-20 05:21:38','2021-04-20 05:21:38','b5728e04-0428-4ab3-9532-e9ea8e74c186','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(35120,151438,1,'2021-04-20 05:21:38','2021-04-20 05:21:38','969940dc-4a78-4b9e-8424-027405e874c0','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(35121,151439,1,'2021-04-20 05:21:38','2021-04-20 05:21:38','96467e86-68e0-4b6e-a0fb-be71ba766d41','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(35122,151440,1,'2021-04-20 05:21:38','2021-04-20 05:21:38','778be8e1-6be9-463f-83a8-2715df71b7f0','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(35123,151441,1,'2021-04-20 05:21:38','2021-04-20 05:21:38','52484cc0-fe6a-43a1-9558-9ba66b9a992f','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(35124,151447,1,'2021-04-20 05:21:38','2021-04-20 05:21:38','85c2aade-40ef-4627-8f11-6d758768e288','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(35125,151448,1,'2021-04-20 05:21:38','2021-04-20 05:21:38','04c83165-ef49-4074-8bf3-795d6c583b55','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(35126,151449,1,'2021-04-20 05:21:38','2021-04-20 05:21:38','be6866e6-2b3a-4a13-a114-5fa674336c7e','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(35127,151463,1,'2021-04-20 06:15:11','2021-04-20 06:15:11','dfa59f88-93b5-4d22-b491-3da1c42e727c','Expression of Interest for Clinicians\' Advisory Group Members','https://brisbanenorthphn.org.au/jobs/expression-of-interest-for-clinicians-advisory-group-members',1,'solid'),(35128,151464,1,'2021-04-20 06:15:11','2021-04-20 06:15:11','3d7902f0-c6d9-4f66-b017-e5bb3070f443','Allied Health Coordinator (part-time)','https://brisbanenorthphn.org.au/jobs/allied-health-coordinator-part-time',1,'solid'),(35129,151467,1,'2021-04-20 06:15:11','2021-04-20 06:15:11','415ae5dd-dc0c-463a-9c45-66923ff09194','Browse local positions vacant',NULL,0,'solid'),(35130,151552,1,'2021-04-22 05:20:19','2021-04-22 05:20:48','84146b75-38e7-4376-b028-4c39df06a001','Read more',NULL,0,'outline'),(35131,151553,1,'2021-04-22 05:20:19','2021-04-22 05:23:55','e34c0d88-5b50-41e6-ab00-36a2ffde1c14','Download the PDF','https://brisbanenorthphn.org.au/bnphnadmin/assets/media/151545-MR_Response-to-Island-and-Surrounds-News-regarding-access-to-GPs-and-health-services_210422',1,'solid'),(35132,151555,1,'2021-04-22 05:20:19','2021-04-22 05:23:55','3a60907b-ce79-4ce2-bfc3-cef403c580af','Read more',NULL,0,'outline'),(35133,151556,1,'2021-04-22 05:20:19','2021-04-22 05:23:55','5a04e23d-4571-4ba7-988e-dda7f2bbd5f6','Download the PDF','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MR_Opening-of-headspace-Strathpine-to-improve-youth-mental-health-services_201130.pdf',1,'solid'),(35134,151558,1,'2021-04-22 05:20:19','2021-04-22 05:23:55','2aee52a9-6b4d-4df3-bda9-3c04960d2035','Read more',NULL,0,'outline'),(35135,151559,1,'2021-04-22 05:20:19','2021-04-22 05:23:55','2617a7e3-14e0-41a6-858d-9d823c5b005b','Download the PDF','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MR_AGM-elects-first-Indigenous-Board-Director_201112.pdf',1,'solid'),(35136,151561,1,'2021-04-22 05:20:19','2021-04-22 05:23:55','44daa983-0e6a-42dd-a293-3361e79f4cb2','Read more',NULL,1,'outline'),(35137,151562,1,'2021-04-22 05:20:19','2021-04-22 05:23:55','5a4d50ca-6c68-4634-af4a-909da1cd5294','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Indigenous-artwork-celebrates-reconciliation-progress_200902-web.pdf',1,'solid'),(35138,151564,1,'2021-04-22 05:20:20','2021-04-22 05:23:55','20d66db1-1f29-4370-9606-684cdd21f28b','Read more',NULL,1,'outline'),(35139,151565,1,'2021-04-22 05:20:20','2021-04-22 05:23:55','4a06cfa4-ba2e-4617-a5ba-e1076d7be04b','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MEDIA-RELEASE_Campaign-Launch_Safe-to-See-Your-GP_200730.pdf',1,'solid'),(35140,151567,1,'2021-04-22 05:20:20','2021-04-22 05:23:55','587e93a1-fa16-46b7-b035-f77e4995d356','Read more',NULL,1,'outline'),(35141,151568,1,'2021-04-22 05:20:20','2021-04-22 05:23:55','bc0d665f-525d-4f2c-a49c-ea2ee213becb','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Flu-vaccine-urged-for-over-65s-and-Indigenous-Australians_200629.pdf',1,'solid'),(35142,151570,1,'2021-04-22 05:20:20','2021-04-22 05:23:55','5ba9ea44-3c31-4f63-8a39-c6b3ec6f2428','Read more',NULL,1,'outline'),(35143,151571,1,'2021-04-22 05:20:20','2021-04-22 05:23:55','1c01f6d2-928a-40fe-9135-186ea9f0a8f5','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_New20headspace20youth20mental20health20service20for20Pine20Rivers_200615.pdf',1,'solid'),(35144,151573,1,'2021-04-22 05:20:20','2021-04-22 05:23:55','f0162f4e-9d4b-415c-9933-97a07b3757be','Read more',NULL,1,'outline'),(35145,151574,1,'2021-04-22 05:20:20','2021-04-22 05:23:55','46f258d4-367d-4108-a781-2d6fb6f37625','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Embargo_Medical-Mums-urge-free-kids%E2%80%99-flu-vaccination_200424.pdf',1,'solid'),(35146,151576,1,'2021-04-22 05:20:20','2021-04-22 05:23:55','0953deb1-6f63-49ca-b180-31d40e63c3fd','Read more',NULL,1,'outline'),(35147,151577,1,'2021-04-22 05:20:20','2021-04-22 05:23:55','5473bfd8-e0a8-4d2b-bfbd-cb7a2ef48166','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_CEO-to-step-down_200318.pdf',1,'solid'),(35148,151579,1,'2021-04-22 05:20:20','2021-04-22 05:23:55','936dbddd-52d7-49db-8ceb-5e2c41d2ba76','Read more',NULL,1,'outline'),(35149,151580,1,'2021-04-22 05:20:20','2021-04-22 05:23:55','9556661d-4f67-4da6-b248-33c3063f3eb8','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_AGM-adds-another-GP-voice-to-Board_191126.pdf',1,'solid'),(35150,151582,1,'2021-04-22 05:20:20','2021-04-22 05:23:55','d6500854-8882-4e41-8eaf-065404c4ca5f','Read more',NULL,1,'outline'),(35151,151583,1,'2021-04-22 05:20:20','2021-04-22 05:23:55','c37c092c-3037-46a7-b132-9d5f5315d381','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Start-a-conversation_-Find-your-reasons-to-stay.PDF',1,'solid'),(35152,151585,1,'2021-04-22 05:20:20','2021-04-22 05:23:55','e0ea77e2-8a76-46f2-ab79-c01888fd067d','Read more',NULL,1,'outline'),(35153,151586,1,'2021-04-22 05:20:20','2021-04-22 05:23:55','88de1d5a-87e8-4f5f-abc9-748ba53140f3','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Avoid-the-crowd-and-access-after-hours-medical-advice-from-home_190711.pdf',1,'solid'),(35154,151588,1,'2021-04-22 05:20:20','2021-04-22 05:23:55','cb518190-24e8-4087-91be-c16a5092eecb','Read more',NULL,0,'outline'),(35155,151589,1,'2021-04-22 05:20:20','2021-04-22 05:23:55','28a89a01-d5a3-43a1-a1c5-eb38d9ffd43b','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Vaccine-myths-get-Medical-Mums-makeover_190423.pdf',1,'solid'),(35156,151591,1,'2021-04-22 05:20:20','2021-04-22 05:23:55','05aba865-05df-4a20-84bf-a824d6ca4250','Read more',NULL,1,'outline'),(35157,151592,1,'2021-04-22 05:20:20','2021-04-22 05:23:55','f62f7d14-ef47-4f2a-8327-4e3b8e52a254','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Palliative-care-scholarships-upskill-local-nursing-workforce_100319.pdf',1,'solid'),(35158,151594,1,'2021-04-22 05:20:20','2021-04-22 05:23:55','1b9658c6-68e4-400f-8c58-0516af1bbcf9','Read more','https://brisbanenorthphn.org.au/news/integrated-suicide-prevention-initiatives-aim-to-save-lives',1,'outline'),(35159,151595,1,'2021-04-22 05:20:20','2021-04-22 05:23:55','ea4945a4-de67-471b-b67f-649e616436d3','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Integrated-suicide-prevention-initiatives-aim-to-save-lives.pdf',1,'solid'),(35160,151597,1,'2021-04-22 05:20:20','2021-04-22 05:20:20','a8b441f8-00f6-48f8-94e2-e39a828bd717','Read more',NULL,0,'outline'),(35161,151598,1,'2021-04-22 05:20:20','2021-04-22 05:20:20','5e9739c0-3321-4422-afc2-954eca185902','Download the PDF','https://d1jydvs1x4rbvt.cloudfront.net/downloads/FIN_MR_24-7-health-advice-just-a-phone-call-away_210215.pdf?mtime=20210212130259&focal=none',1,'solid'),(35162,151600,1,'2021-04-22 05:20:48','2021-04-22 05:20:48','12d32a0d-afcb-4d3a-8ca4-da22aca0a719','Read more',NULL,0,'outline'),(35163,151601,1,'2021-04-22 05:20:48','2021-04-22 05:20:48','bcb16dd2-dd5f-49d0-b8b5-03e80e36fdb3','Download the PDF','https://d1jydvs1x4rbvt.cloudfront.net/downloads/FIN_MR_24-7-health-advice-just-a-phone-call-away_210215.pdf?mtime=20210212130259&focal=none',1,'solid'),(35164,151603,1,'2021-04-22 05:22:38','2021-04-22 05:22:38','26c4bc16-dbcc-4f3d-87e4-817899f8eb97','Read more',NULL,0,'outline'),(35165,151604,1,'2021-04-22 05:22:38','2021-04-22 05:22:38','74befb38-ba8a-4942-9bca-c2e5749a095c','Download the PDF','https://d1jydvs1x4rbvt.cloudfront.net/downloads/FIN_MR_24-7-health-advice-just-a-phone-call-away_210215.pdf?mtime=20210212130259&focal=none',1,'solid'),(35166,151607,1,'2021-04-22 05:23:55','2021-04-22 05:23:55','04dd2a2d-edc8-4e7a-9cd4-01b0cfb52515','Read more',NULL,0,'outline'),(35167,151608,1,'2021-04-22 05:23:55','2021-04-22 05:23:55','48e217b5-dabf-44f8-a464-e6948b52a3b0','Download the PDF','https://d1jydvs1x4rbvt.cloudfront.net/downloads/FIN_MR_24-7-health-advice-just-a-phone-call-away_210215.pdf?mtime=20210212130259&focal=none',1,'solid'),(35168,151614,1,'2021-04-22 05:24:55','2021-04-22 05:24:55','c2308f2e-12bb-4982-ab94-9b92901f4bd5','Download the PDF','https://brisbanenorthphn.org.au/bnphnadmin/assets/media/151545-MR_Response-to-Island-and-Surrounds-News-regarding-access-to-GPs-and-health-services_210422',1,'solid'),(35169,151616,1,'2021-04-22 05:24:55','2021-04-22 05:24:55','9b605a70-ed6d-4474-bdd1-97a45e3ce376','Read more',NULL,0,'outline'),(35170,151617,1,'2021-04-22 05:24:55','2021-04-22 05:24:55','b3341790-e129-488e-87e7-cc12a3e88f33','Download the PDF','https://d1jydvs1x4rbvt.cloudfront.net/downloads/FIN_MR_24-7-health-advice-just-a-phone-call-away_210215.pdf?mtime=20210212130259&focal=none',1,'solid'),(35171,151619,1,'2021-04-22 05:24:55','2021-04-22 05:24:55','5d731c9a-21fe-409d-a186-e50dd672e1b2','Read more',NULL,0,'outline'),(35172,151620,1,'2021-04-22 05:24:55','2021-04-22 05:24:55','f21b8e87-3085-4fd3-985f-88a1cd7e5276','Download the PDF','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MR_Opening-of-headspace-Strathpine-to-improve-youth-mental-health-services_201130.pdf',1,'solid'),(35173,151622,1,'2021-04-22 05:24:55','2021-04-22 05:24:55','8398fd61-e11a-4055-ac73-9b07ec8a57ee','Read more',NULL,0,'outline'),(35174,151623,1,'2021-04-22 05:24:55','2021-04-22 05:24:55','97a856ba-0243-4921-8011-5d829d61d7d8','Download the PDF','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MR_AGM-elects-first-Indigenous-Board-Director_201112.pdf',1,'solid'),(35175,151625,1,'2021-04-22 05:24:55','2021-04-22 05:24:55','bde88853-0d03-43dc-9577-3951ef21622d','Read more',NULL,1,'outline'),(35176,151626,1,'2021-04-22 05:24:55','2021-04-22 05:24:55','5bff249c-13aa-4684-995c-f1af124d88a1','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Indigenous-artwork-celebrates-reconciliation-progress_200902-web.pdf',1,'solid'),(35177,151628,1,'2021-04-22 05:24:55','2021-04-22 05:24:55','ffecd1d6-0746-4965-8ae5-aa6632b112b8','Read more',NULL,1,'outline'),(35178,151629,1,'2021-04-22 05:24:55','2021-04-22 05:24:55','11c49eaa-fec6-4776-9413-de09a96c3622','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MEDIA-RELEASE_Campaign-Launch_Safe-to-See-Your-GP_200730.pdf',1,'solid'),(35179,151631,1,'2021-04-22 05:24:55','2021-04-22 05:24:55','dc2f186b-a576-4cae-b822-1587fa4ea8a7','Read more',NULL,1,'outline'),(35180,151632,1,'2021-04-22 05:24:55','2021-04-22 05:24:55','1caa143b-7763-4443-9386-c3ce7ccf6297','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Flu-vaccine-urged-for-over-65s-and-Indigenous-Australians_200629.pdf',1,'solid'),(35181,151634,1,'2021-04-22 05:24:55','2021-04-22 05:24:55','d9824920-5d3a-480b-a6e4-86f57a7048ac','Read more',NULL,1,'outline'),(35182,151635,1,'2021-04-22 05:24:55','2021-04-22 05:24:55','85a6c92c-f524-471b-8ab0-4043b173001d','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_New20headspace20youth20mental20health20service20for20Pine20Rivers_200615.pdf',1,'solid'),(35183,151637,1,'2021-04-22 05:24:55','2021-04-22 05:24:55','d9d6033b-ee3d-43cd-8d06-e02526ba06e3','Read more',NULL,1,'outline'),(35184,151638,1,'2021-04-22 05:24:55','2021-04-22 05:24:55','05de9ef0-aba5-4f02-a104-12a3021f8565','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Embargo_Medical-Mums-urge-free-kids%E2%80%99-flu-vaccination_200424.pdf',1,'solid'),(35185,151640,1,'2021-04-22 05:24:55','2021-04-22 05:24:55','1029d0e0-adc7-4e52-8b4f-b8e9fb44c358','Read more',NULL,1,'outline'),(35186,151641,1,'2021-04-22 05:24:55','2021-04-22 05:24:55','4a8c91ca-ff81-4291-875d-911f4b07636e','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_CEO-to-step-down_200318.pdf',1,'solid'),(35187,151643,1,'2021-04-22 05:24:55','2021-04-22 05:24:55','abc24c1a-463a-450e-81c0-b1457ba84389','Read more',NULL,1,'outline'),(35188,151644,1,'2021-04-22 05:24:55','2021-04-22 05:24:55','fbc74bce-c2c1-4e0a-8da7-888ab6502745','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_AGM-adds-another-GP-voice-to-Board_191126.pdf',1,'solid'),(35189,151646,1,'2021-04-22 05:24:55','2021-04-22 05:24:55','4c0afc90-719d-4c61-8bc2-423344329ad8','Read more',NULL,1,'outline'),(35190,151647,1,'2021-04-22 05:24:55','2021-04-22 05:24:55','68d7b3fa-e4bc-4a63-a03c-dd8c537827da','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Start-a-conversation_-Find-your-reasons-to-stay.PDF',1,'solid'),(35191,151649,1,'2021-04-22 05:24:56','2021-04-22 05:24:56','562d4216-74bd-412c-aca2-7df5354d64c7','Read more',NULL,1,'outline'),(35192,151650,1,'2021-04-22 05:24:56','2021-04-22 05:24:56','44d350c3-3b87-46ac-9c47-53cbd5bbfb72','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Avoid-the-crowd-and-access-after-hours-medical-advice-from-home_190711.pdf',1,'solid'),(35193,151652,1,'2021-04-22 05:24:56','2021-04-22 05:24:56','04dae31f-083d-44fe-bc25-06f71719ef75','Read more',NULL,0,'outline'),(35194,151653,1,'2021-04-22 05:24:56','2021-04-22 05:24:56','4ea32f71-7f3a-445f-9f4c-9262d6c926eb','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Vaccine-myths-get-Medical-Mums-makeover_190423.pdf',1,'solid'),(35195,151655,1,'2021-04-22 05:24:56','2021-04-22 05:24:56','2031d805-6c22-47ef-94dc-0d7b50a168a0','Read more',NULL,1,'outline'),(35196,151656,1,'2021-04-22 05:24:56','2021-04-22 05:24:56','3ac6e225-3309-43f0-8dd5-3a27d49ac9a8','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Palliative-care-scholarships-upskill-local-nursing-workforce_100319.pdf',1,'solid'),(35197,151658,1,'2021-04-22 05:24:56','2021-04-22 05:24:56','49d40cb6-0644-4153-b489-de91c2727ede','Read more','https://brisbanenorthphn.org.au/news/integrated-suicide-prevention-initiatives-aim-to-save-lives',1,'outline'),(35198,151659,1,'2021-04-22 05:24:56','2021-04-22 05:24:56','a664851d-ad1d-4bea-b927-72d95926de3d','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Integrated-suicide-prevention-initiatives-aim-to-save-lives.pdf',1,'solid'),(35199,151665,1,'2021-04-22 05:24:57','2021-04-22 05:24:57','1ac80ed2-e6ec-4298-9a47-b45daee6cc41','Download the PDF','https://brisbanenorthphn.org.au/bnphnadmin/assets/media/151545-MR_Response-to-Island-and-Surrounds-News-regarding-access-to-GPs-and-health-services_210422',1,'solid'),(35200,151667,1,'2021-04-22 05:24:57','2021-04-22 05:24:57','a9c9ea38-1be2-4ac4-bd57-0f25cf470091','Read more',NULL,0,'outline'),(35201,151668,1,'2021-04-22 05:24:57','2021-04-22 05:24:57','613df646-9272-4ea2-87bf-70a8c8fdbdb0','Download the PDF','https://d1jydvs1x4rbvt.cloudfront.net/downloads/FIN_MR_24-7-health-advice-just-a-phone-call-away_210215.pdf?mtime=20210212130259&focal=none',1,'solid'),(35202,151670,1,'2021-04-22 05:24:57','2021-04-22 05:24:57','6ee2f36e-96f2-4909-a4c6-742d50ce2e64','Read more',NULL,0,'outline'),(35203,151671,1,'2021-04-22 05:24:57','2021-04-22 05:24:57','a20e25ca-485a-47a1-b72b-2bdf6009a1f1','Download the PDF','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MR_Opening-of-headspace-Strathpine-to-improve-youth-mental-health-services_201130.pdf',1,'solid'),(35204,151673,1,'2021-04-22 05:24:57','2021-04-22 05:24:57','4ef52aff-8c23-4b37-a6df-fbe899584e0f','Read more',NULL,0,'outline'),(35205,151674,1,'2021-04-22 05:24:57','2021-04-22 05:24:57','9fafb500-7a91-4eec-8977-effbeec86046','Download the PDF','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MR_AGM-elects-first-Indigenous-Board-Director_201112.pdf',1,'solid'),(35206,151676,1,'2021-04-22 05:24:57','2021-04-22 05:24:57','93b79b27-8595-4a36-aeb4-bfa4819d7d64','Read more',NULL,1,'outline'),(35207,151677,1,'2021-04-22 05:24:57','2021-04-22 05:24:57','c4b9a43e-3703-4203-9fd0-928aa7c33306','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Indigenous-artwork-celebrates-reconciliation-progress_200902-web.pdf',1,'solid'),(35208,151679,1,'2021-04-22 05:24:57','2021-04-22 05:24:57','684b41ab-1b47-4d68-9ce7-5f27dc8ac6d5','Read more',NULL,1,'outline'),(35209,151680,1,'2021-04-22 05:24:57','2021-04-22 05:24:57','ab2cea18-2970-41f1-b910-f9fb2e1c9f61','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MEDIA-RELEASE_Campaign-Launch_Safe-to-See-Your-GP_200730.pdf',1,'solid'),(35210,151682,1,'2021-04-22 05:24:57','2021-04-22 05:24:57','1b445363-981e-4751-b139-b1affb9dca06','Read more',NULL,1,'outline'),(35211,151683,1,'2021-04-22 05:24:57','2021-04-22 05:24:57','2be2fff0-2abe-46e6-bdb3-27e6a62f5452','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Flu-vaccine-urged-for-over-65s-and-Indigenous-Australians_200629.pdf',1,'solid'),(35212,151685,1,'2021-04-22 05:24:57','2021-04-22 05:24:57','528117b3-b94e-4814-9e05-f0ef108885ed','Read more',NULL,1,'outline'),(35213,151686,1,'2021-04-22 05:24:57','2021-04-22 05:24:57','0fa93a57-bc3f-4491-8dfc-6ad42af027dd','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_New20headspace20youth20mental20health20service20for20Pine20Rivers_200615.pdf',1,'solid'),(35214,151688,1,'2021-04-22 05:24:57','2021-04-22 05:24:57','f129d321-e42a-44dc-81ab-935bd0d68dc4','Read more',NULL,1,'outline'),(35215,151689,1,'2021-04-22 05:24:57','2021-04-22 05:24:57','09098d02-e7be-464e-b4fc-8de14e27cf7c','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Embargo_Medical-Mums-urge-free-kids%E2%80%99-flu-vaccination_200424.pdf',1,'solid'),(35216,151691,1,'2021-04-22 05:24:57','2021-04-22 05:24:57','67576230-3ade-4510-9833-57d3a38789c7','Read more',NULL,1,'outline'),(35217,151692,1,'2021-04-22 05:24:57','2021-04-22 05:24:57','2e1ae335-48a2-4f7d-9d6b-18b50f4d02aa','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_CEO-to-step-down_200318.pdf',1,'solid'),(35218,151694,1,'2021-04-22 05:24:58','2021-04-22 05:24:58','6f222d72-0c80-489e-899c-58857e67d268','Read more',NULL,1,'outline'),(35219,151695,1,'2021-04-22 05:24:58','2021-04-22 05:24:58','64b3d63a-9f42-4c36-811b-fe5c10efb1c0','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_AGM-adds-another-GP-voice-to-Board_191126.pdf',1,'solid'),(35220,151697,1,'2021-04-22 05:24:58','2021-04-22 05:24:58','8ce2c3c5-fd98-4ede-849d-ebe6a94bb0c2','Read more',NULL,1,'outline'),(35221,151698,1,'2021-04-22 05:24:58','2021-04-22 05:24:58','ae26b5e8-ffef-4e68-a8a0-309014146882','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Start-a-conversation_-Find-your-reasons-to-stay.PDF',1,'solid'),(35222,151700,1,'2021-04-22 05:24:58','2021-04-22 05:24:58','45b77786-bbc8-4268-8a94-91ab907b3383','Read more',NULL,1,'outline'),(35223,151701,1,'2021-04-22 05:24:58','2021-04-22 05:24:58','b25c4b01-352e-4e02-93a1-1057ac978be0','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Avoid-the-crowd-and-access-after-hours-medical-advice-from-home_190711.pdf',1,'solid'),(35224,151703,1,'2021-04-22 05:24:58','2021-04-22 05:24:58','d2e7e088-010c-4ae2-bf85-daca30835d9a','Read more',NULL,0,'outline'),(35225,151704,1,'2021-04-22 05:24:58','2021-04-22 05:24:58','4a0b3c56-7a88-4df3-97ce-7b73b2a46d78','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Vaccine-myths-get-Medical-Mums-makeover_190423.pdf',1,'solid'),(35226,151706,1,'2021-04-22 05:24:58','2021-04-22 05:24:58','c2b3b372-5493-4c60-8b5a-f7ff780858ee','Read more',NULL,1,'outline'),(35227,151707,1,'2021-04-22 05:24:58','2021-04-22 05:24:58','0e80550a-9088-471a-a530-a15e9b842413','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Palliative-care-scholarships-upskill-local-nursing-workforce_100319.pdf',1,'solid'),(35228,151709,1,'2021-04-22 05:24:58','2021-04-22 05:24:58','1ecd924a-ac7b-432d-93be-be4a4faa1295','Read more','https://brisbanenorthphn.org.au/news/integrated-suicide-prevention-initiatives-aim-to-save-lives',1,'outline'),(35229,151710,1,'2021-04-22 05:24:58','2021-04-22 05:24:58','a75d94f8-1bbc-4947-8b9c-c2b25be42c74','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Integrated-suicide-prevention-initiatives-aim-to-save-lives.pdf',1,'solid'),(35230,151720,1,'2021-04-22 05:33:55','2021-04-22 05:34:34','cda721b1-de36-4e94-9f63-ddc09e5f57c4','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Response-to-Island-and-Surrounds-News-regarding-access-to-GPs-and-health-services_210422.pdf',1,'solid'),(35231,151722,1,'2021-04-22 05:33:55','2021-04-22 05:34:34','34dfda5d-60a6-4d7f-b44a-2ce09ccc826b','Read more',NULL,0,'outline'),(35232,151723,1,'2021-04-22 05:33:55','2021-04-22 05:34:34','2e648208-d0ed-4de1-9c95-dec4071a0173','Download the PDF','https://d1jydvs1x4rbvt.cloudfront.net/downloads/FIN_MR_24-7-health-advice-just-a-phone-call-away_210215.pdf?mtime=20210212130259&focal=none',1,'solid'),(35233,151725,1,'2021-04-22 05:33:55','2021-04-22 05:34:34','74102eca-59cd-4873-b670-2530ca1de6f4','Read more',NULL,0,'outline'),(35234,151726,1,'2021-04-22 05:33:55','2021-04-22 05:34:34','f458f187-f875-4ba8-8b68-528e8ee6c92a','Download the PDF','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MR_Opening-of-headspace-Strathpine-to-improve-youth-mental-health-services_201130.pdf',1,'solid'),(35235,151728,1,'2021-04-22 05:33:55','2021-04-22 05:34:34','0c067a8a-46e3-44f9-b1a6-a3061d44f339','Read more',NULL,0,'outline'),(35236,151729,1,'2021-04-22 05:33:55','2021-04-22 05:34:34','33eaae41-59c1-469b-bda6-1d6df313ea35','Download the PDF','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MR_AGM-elects-first-Indigenous-Board-Director_201112.pdf',1,'solid'),(35237,151731,1,'2021-04-22 05:33:55','2021-04-22 05:34:34','67987313-542e-4d16-9c89-8d6ceafa4181','Read more',NULL,1,'outline'),(35238,151732,1,'2021-04-22 05:33:55','2021-04-22 05:34:34','768f9a73-a4db-4e36-9d52-0dcfa27b108b','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Indigenous-artwork-celebrates-reconciliation-progress_200902-web.pdf',1,'solid'),(35239,151734,1,'2021-04-22 05:33:55','2021-04-22 05:34:34','62ea2b67-cbb7-477c-b521-30443f467ae6','Read more',NULL,1,'outline'),(35240,151735,1,'2021-04-22 05:33:55','2021-04-22 05:34:34','a201854c-872f-4e56-965c-3220343d32cd','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MEDIA-RELEASE_Campaign-Launch_Safe-to-See-Your-GP_200730.pdf',1,'solid'),(35241,151737,1,'2021-04-22 05:33:55','2021-04-22 05:34:34','1c433c02-12ec-43a2-810e-49fd98ea8324','Read more',NULL,1,'outline'),(35242,151738,1,'2021-04-22 05:33:55','2021-04-22 05:34:34','1c98b75d-f849-4900-98f1-30c962f348d2','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Flu-vaccine-urged-for-over-65s-and-Indigenous-Australians_200629.pdf',1,'solid'),(35243,151740,1,'2021-04-22 05:33:55','2021-04-22 05:34:34','c69c288c-63ce-420b-8340-7d849f1eff4c','Read more',NULL,1,'outline'),(35244,151741,1,'2021-04-22 05:33:55','2021-04-22 05:34:34','2047fb81-0277-45eb-8dbc-5833035d50d6','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_New20headspace20youth20mental20health20service20for20Pine20Rivers_200615.pdf',1,'solid'),(35245,151743,1,'2021-04-22 05:33:55','2021-04-22 05:34:34','6ec4cfd2-8e4f-4a83-987d-cc94e697ac74','Read more',NULL,1,'outline'),(35246,151744,1,'2021-04-22 05:33:55','2021-04-22 05:34:34','c8a63479-7df8-49a4-a8fd-069bdeb26c07','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Embargo_Medical-Mums-urge-free-kids%E2%80%99-flu-vaccination_200424.pdf',1,'solid'),(35247,151746,1,'2021-04-22 05:33:55','2021-04-22 05:34:34','aefd558d-2931-4d4e-a260-b2a8554b57e5','Read more',NULL,1,'outline'),(35248,151747,1,'2021-04-22 05:33:55','2021-04-22 05:34:34','969a69a4-053f-4434-b49b-47d36899c5b1','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_CEO-to-step-down_200318.pdf',1,'solid'),(35249,151749,1,'2021-04-22 05:33:55','2021-04-22 05:34:34','3b37ab2b-cd30-4f46-a42a-0bb7d20c18d5','Read more',NULL,1,'outline'),(35250,151750,1,'2021-04-22 05:33:55','2021-04-22 05:34:34','4b7bdc32-2648-4c16-a477-7f68c6166b44','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_AGM-adds-another-GP-voice-to-Board_191126.pdf',1,'solid'),(35251,151752,1,'2021-04-22 05:33:55','2021-04-22 05:34:34','ca0cad15-9ed8-48ae-98da-5573ef59e167','Read more',NULL,1,'outline'),(35252,151753,1,'2021-04-22 05:33:55','2021-04-22 05:34:34','2c7008dd-023e-42dc-ac27-e8452698fa1d','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Start-a-conversation_-Find-your-reasons-to-stay.PDF',1,'solid'),(35253,151755,1,'2021-04-22 05:33:55','2021-04-22 05:34:34','497503f1-ffff-438f-988e-528020da68d6','Read more',NULL,1,'outline'),(35254,151756,1,'2021-04-22 05:33:55','2021-04-22 05:34:34','dc5df8ef-4b60-4175-9ef8-28fef8487828','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Avoid-the-crowd-and-access-after-hours-medical-advice-from-home_190711.pdf',1,'solid'),(35255,151758,1,'2021-04-22 05:33:55','2021-04-22 05:34:34','e1560b05-8f9d-48ff-864e-c8353a81092d','Read more',NULL,0,'outline'),(35256,151759,1,'2021-04-22 05:33:55','2021-04-22 05:34:34','53a3c019-2ba6-49c3-8448-b035f39d0b9a','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Vaccine-myths-get-Medical-Mums-makeover_190423.pdf',1,'solid'),(35257,151761,1,'2021-04-22 05:33:56','2021-04-22 05:34:34','136c1172-0ecc-4dbd-b3ab-a67ecbe9000b','Read more',NULL,1,'outline'),(35258,151762,1,'2021-04-22 05:33:56','2021-04-22 05:34:34','a1fd3f09-dc19-4db0-9a90-4981f303fc7f','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Palliative-care-scholarships-upskill-local-nursing-workforce_100319.pdf',1,'solid'),(35259,151764,1,'2021-04-22 05:33:56','2021-04-22 05:34:34','de6f84f8-f8ea-4f25-88f7-afc666be1bcf','Read more','https://brisbanenorthphn.org.au/news/integrated-suicide-prevention-initiatives-aim-to-save-lives',1,'outline'),(35260,151765,1,'2021-04-22 05:33:56','2021-04-22 05:34:34','982d9d6a-44ee-4073-8f35-e00df26c95da','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Integrated-suicide-prevention-initiatives-aim-to-save-lives.pdf',1,'solid'),(35261,151773,1,'2021-04-22 05:34:53','2021-04-22 05:34:53','a2b45b9a-c527-44ae-9c33-f2c85b98f8cf','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Response-to-Island-and-Surrounds-News-regarding-access-to-GPs-and-health-services_210422.pdf',1,'solid'),(35262,151775,1,'2021-04-22 05:34:54','2021-04-22 05:34:54','b24e81c1-dc18-459e-a09f-8aff9061dd35','Read more',NULL,0,'outline'),(35263,151776,1,'2021-04-22 05:34:54','2021-04-22 05:34:54','d30a17a4-3fa9-4faa-bf40-eecca78f7c7f','Download the PDF','https://d1jydvs1x4rbvt.cloudfront.net/downloads/FIN_MR_24-7-health-advice-just-a-phone-call-away_210215.pdf?mtime=20210212130259&focal=none',1,'solid'),(35264,151778,1,'2021-04-22 05:34:54','2021-04-22 05:34:54','e1ae8489-b1dc-489b-aac2-1562d856164e','Read more',NULL,0,'outline'),(35265,151779,1,'2021-04-22 05:34:54','2021-04-22 05:34:54','bbb82d44-8b80-46b4-9b70-989a6897986e','Download the PDF','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MR_Opening-of-headspace-Strathpine-to-improve-youth-mental-health-services_201130.pdf',1,'solid'),(35266,151781,1,'2021-04-22 05:34:54','2021-04-22 05:34:54','097e4e75-3cf9-422d-b7c9-0f745f4c55a3','Read more',NULL,0,'outline'),(35267,151782,1,'2021-04-22 05:34:54','2021-04-22 05:34:54','7ef5e7bd-3e78-4137-a4ea-4c35ae7dab2b','Download the PDF','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MR_AGM-elects-first-Indigenous-Board-Director_201112.pdf',1,'solid'),(35268,151784,1,'2021-04-22 05:34:54','2021-04-22 05:34:54','44db2f93-328b-4c80-972e-0e75f1b3d584','Read more',NULL,1,'outline'),(35269,151785,1,'2021-04-22 05:34:54','2021-04-22 05:34:54','50a03eea-eaef-4b05-8159-479a1257f49a','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Indigenous-artwork-celebrates-reconciliation-progress_200902-web.pdf',1,'solid'),(35270,151787,1,'2021-04-22 05:34:54','2021-04-22 05:34:54','22e5fb61-2cbe-4c8b-9d66-465032f23a49','Read more',NULL,1,'outline'),(35271,151788,1,'2021-04-22 05:34:54','2021-04-22 05:34:54','9cd6af63-1b52-4347-a947-b7fd62cb4210','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MEDIA-RELEASE_Campaign-Launch_Safe-to-See-Your-GP_200730.pdf',1,'solid'),(35272,151790,1,'2021-04-22 05:34:54','2021-04-22 05:34:54','21cb07d1-1058-4f2a-aab0-1241a5225dfc','Read more',NULL,1,'outline'),(35273,151791,1,'2021-04-22 05:34:54','2021-04-22 05:34:54','41ed0ec3-7532-47af-9b7b-a48b0c88040f','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Flu-vaccine-urged-for-over-65s-and-Indigenous-Australians_200629.pdf',1,'solid'),(35274,151793,1,'2021-04-22 05:34:54','2021-04-22 05:34:54','ac46ed25-bbb5-43cd-aef4-87204eef456f','Read more',NULL,1,'outline'),(35275,151794,1,'2021-04-22 05:34:54','2021-04-22 05:34:54','0dfbb49c-ee03-4851-b3ab-a690cf36bd72','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_New20headspace20youth20mental20health20service20for20Pine20Rivers_200615.pdf',1,'solid'),(35276,151796,1,'2021-04-22 05:34:54','2021-04-22 05:34:54','69ea8746-4737-425c-8fcb-c3efef8e5921','Read more',NULL,1,'outline'),(35277,151797,1,'2021-04-22 05:34:54','2021-04-22 05:34:54','eb208a55-5b3d-4c89-a3a7-22f34fcba56c','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Embargo_Medical-Mums-urge-free-kids%E2%80%99-flu-vaccination_200424.pdf',1,'solid'),(35278,151799,1,'2021-04-22 05:34:54','2021-04-22 05:34:54','7c07c98c-3ed3-452b-9b6e-5a8ba086ce04','Read more',NULL,1,'outline'),(35279,151800,1,'2021-04-22 05:34:54','2021-04-22 05:34:54','e86ec07e-d226-428e-a67e-9a5bfc88b8b5','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_CEO-to-step-down_200318.pdf',1,'solid'),(35280,151802,1,'2021-04-22 05:34:54','2021-04-22 05:34:54','2dbdf5db-8477-4b48-bbf1-a630500b4800','Read more',NULL,1,'outline'),(35281,151803,1,'2021-04-22 05:34:54','2021-04-22 05:34:54','9506393b-e363-4cb6-9b63-64f808d76596','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_AGM-adds-another-GP-voice-to-Board_191126.pdf',1,'solid'),(35282,151805,1,'2021-04-22 05:34:54','2021-04-22 05:34:54','2b0822af-eebb-4118-ab12-9cc6c33e142d','Read more',NULL,1,'outline'),(35283,151806,1,'2021-04-22 05:34:54','2021-04-22 05:34:54','01c4d9b6-74bf-407d-82ed-0f8475e399aa','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Start-a-conversation_-Find-your-reasons-to-stay.PDF',1,'solid'),(35284,151808,1,'2021-04-22 05:34:54','2021-04-22 05:34:54','8aadd31b-1174-4ac7-8668-887f70746972','Read more',NULL,1,'outline'),(35285,151809,1,'2021-04-22 05:34:54','2021-04-22 05:34:54','db07c1e8-c911-4617-a04d-245667081f20','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Avoid-the-crowd-and-access-after-hours-medical-advice-from-home_190711.pdf',1,'solid'),(35286,151811,1,'2021-04-22 05:34:54','2021-04-22 05:34:54','7c796c24-3cae-47c6-9fbe-d10ea7876624','Read more',NULL,0,'outline'),(35287,151812,1,'2021-04-22 05:34:54','2021-04-22 05:34:54','fb85162b-a1c3-4ba9-a418-321d5fc5d790','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Vaccine-myths-get-Medical-Mums-makeover_190423.pdf',1,'solid'),(35288,151814,1,'2021-04-22 05:34:54','2021-04-22 05:34:54','b4e28c05-be45-4f2d-9300-5c38da88e516','Read more',NULL,1,'outline'),(35289,151815,1,'2021-04-22 05:34:54','2021-04-22 05:34:54','cf4caefb-9d4b-42f5-a00b-5387855f3678','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Palliative-care-scholarships-upskill-local-nursing-workforce_100319.pdf',1,'solid'),(35290,151817,1,'2021-04-22 05:34:54','2021-04-22 05:34:54','a166bef6-f0fb-4cf5-8b8d-62998ef65d36','Read more','https://brisbanenorthphn.org.au/news/integrated-suicide-prevention-initiatives-aim-to-save-lives',1,'outline'),(35291,151818,1,'2021-04-22 05:34:54','2021-04-22 05:34:54','f3b82e21-a455-4b61-be01-6457f485a432','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Integrated-suicide-prevention-initiatives-aim-to-save-lives.pdf',1,'solid'),(35292,151824,1,'2021-04-22 05:34:55','2021-04-22 05:34:55','992a33ae-9487-4229-9a21-1b8d075b4bb7','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Response-to-Island-and-Surrounds-News-regarding-access-to-GPs-and-health-services_210422.pdf',1,'solid'),(35293,151826,1,'2021-04-22 05:34:55','2021-04-22 05:34:55','f1cc977b-302a-4df1-a0f5-82071e084577','Read more',NULL,0,'outline'),(35294,151827,1,'2021-04-22 05:34:55','2021-04-22 05:34:55','f417e7d3-feff-4390-bb85-07177b56fa66','Download the PDF','https://d1jydvs1x4rbvt.cloudfront.net/downloads/FIN_MR_24-7-health-advice-just-a-phone-call-away_210215.pdf?mtime=20210212130259&focal=none',1,'solid'),(35295,151829,1,'2021-04-22 05:34:55','2021-04-22 05:34:55','59919a27-a012-4459-8ed1-fa5c965c1d51','Read more',NULL,0,'outline'),(35296,151830,1,'2021-04-22 05:34:55','2021-04-22 05:34:55','0f449755-ad2e-4e3d-8d32-0befa42e9fdf','Download the PDF','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MR_Opening-of-headspace-Strathpine-to-improve-youth-mental-health-services_201130.pdf',1,'solid'),(35297,151832,1,'2021-04-22 05:34:55','2021-04-22 05:34:55','53aa939a-e261-427d-b264-24471c905ce0','Read more',NULL,0,'outline'),(35298,151833,1,'2021-04-22 05:34:55','2021-04-22 05:34:55','a2c0349c-9bdb-40c8-b451-2c9108d582a3','Download the PDF','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MR_AGM-elects-first-Indigenous-Board-Director_201112.pdf',1,'solid'),(35299,151835,1,'2021-04-22 05:34:55','2021-04-22 05:34:55','5dac777d-3231-4d50-885a-6141332dafa4','Read more',NULL,1,'outline'),(35300,151836,1,'2021-04-22 05:34:55','2021-04-22 05:34:55','9da1d737-a22d-4e67-98fe-d76e1d594fee','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Indigenous-artwork-celebrates-reconciliation-progress_200902-web.pdf',1,'solid'),(35301,151838,1,'2021-04-22 05:34:55','2021-04-22 05:34:55','d3fbdb00-21e0-4049-a951-13c528120db3','Read more',NULL,1,'outline'),(35302,151839,1,'2021-04-22 05:34:55','2021-04-22 05:34:55','a5b2a004-1316-4775-9af9-f4b65eef8907','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MEDIA-RELEASE_Campaign-Launch_Safe-to-See-Your-GP_200730.pdf',1,'solid'),(35303,151841,1,'2021-04-22 05:34:55','2021-04-22 05:34:55','dec237f5-1567-4e16-996b-d73dd0bd8a33','Read more',NULL,1,'outline'),(35304,151842,1,'2021-04-22 05:34:55','2021-04-22 05:34:55','5d60b813-217f-40ec-8bd9-949638d9f8e7','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Flu-vaccine-urged-for-over-65s-and-Indigenous-Australians_200629.pdf',1,'solid'),(35305,151844,1,'2021-04-22 05:34:55','2021-04-22 05:34:55','8d49c162-e8f0-4d3a-8976-2a67f0b2bc30','Read more',NULL,1,'outline'),(35306,151845,1,'2021-04-22 05:34:55','2021-04-22 05:34:55','b9c70fd3-bfc3-4a1d-a417-ea6964bbfe4d','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_New20headspace20youth20mental20health20service20for20Pine20Rivers_200615.pdf',1,'solid'),(35307,151847,1,'2021-04-22 05:34:55','2021-04-22 05:34:55','b443ebf0-53bf-4253-bd9f-84561f69ffb9','Read more',NULL,1,'outline'),(35308,151848,1,'2021-04-22 05:34:55','2021-04-22 05:34:55','db3c3ae9-9d7a-4435-aa88-6afa88b8983b','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Embargo_Medical-Mums-urge-free-kids%E2%80%99-flu-vaccination_200424.pdf',1,'solid'),(35309,151850,1,'2021-04-22 05:34:55','2021-04-22 05:34:55','972c755c-1ff8-4fb3-8e03-d34d2bd8f9d3','Read more',NULL,1,'outline'),(35310,151851,1,'2021-04-22 05:34:56','2021-04-22 05:34:56','2be1bf68-28b9-47d7-b57c-2a74a4974633','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_CEO-to-step-down_200318.pdf',1,'solid'),(35311,151853,1,'2021-04-22 05:34:56','2021-04-22 05:34:56','ac9f41ad-9926-4d19-b4b9-564f58d12981','Read more',NULL,1,'outline'),(35312,151854,1,'2021-04-22 05:34:56','2021-04-22 05:34:56','0cf01e43-21d6-4f9f-8f6f-b2ada946ebd8','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_AGM-adds-another-GP-voice-to-Board_191126.pdf',1,'solid'),(35313,151856,1,'2021-04-22 05:34:56','2021-04-22 05:34:56','5eb149b7-bcb3-46df-8ac1-a469a18f6c9c','Read more',NULL,1,'outline'),(35314,151857,1,'2021-04-22 05:34:56','2021-04-22 05:34:56','871f257f-855e-4ac0-9a0f-2b27ded96268','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Start-a-conversation_-Find-your-reasons-to-stay.PDF',1,'solid'),(35315,151859,1,'2021-04-22 05:34:56','2021-04-22 05:34:56','9253237d-b2ed-46db-8648-06ef7854fdc8','Read more',NULL,1,'outline'),(35316,151860,1,'2021-04-22 05:34:56','2021-04-22 05:34:56','a4bb9fb5-f936-47a5-a5c3-69f05a416020','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Avoid-the-crowd-and-access-after-hours-medical-advice-from-home_190711.pdf',1,'solid'),(35317,151862,1,'2021-04-22 05:34:56','2021-04-22 05:34:56','74a57d5d-83a5-4de1-b19e-6636caa187ca','Read more',NULL,0,'outline'),(35318,151863,1,'2021-04-22 05:34:56','2021-04-22 05:34:56','9c6c6e5d-0274-401c-a469-13005a08c907','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Vaccine-myths-get-Medical-Mums-makeover_190423.pdf',1,'solid'),(35319,151865,1,'2021-04-22 05:34:56','2021-04-22 05:34:56','868aa010-13a2-415a-ace2-de6ecfbc2c88','Read more',NULL,1,'outline'),(35320,151866,1,'2021-04-22 05:34:56','2021-04-22 05:34:56','5cbcd2ca-5729-43ef-98f9-b79dba3777ca','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Palliative-care-scholarships-upskill-local-nursing-workforce_100319.pdf',1,'solid'),(35321,151868,1,'2021-04-22 05:34:56','2021-04-22 05:34:56','c52d2e88-4ff3-4ca9-855c-9268edb93473','Read more','https://brisbanenorthphn.org.au/news/integrated-suicide-prevention-initiatives-aim-to-save-lives',1,'outline'),(35322,151869,1,'2021-04-22 05:34:56','2021-04-22 05:34:56','97ac06de-aaa8-4669-811b-72cea2d0ef52','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Integrated-suicide-prevention-initiatives-aim-to-save-lives.pdf',1,'solid'),(35323,151875,1,'2021-04-22 05:35:04','2021-04-22 05:35:04','b07a24b9-1e1f-439d-ba2e-17e3603e858b','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Response-to-Island-and-Surrounds-News-regarding-access-to-GPs-and-health-services_210422.pdf',1,'solid'),(35324,151877,1,'2021-04-22 05:35:04','2021-04-22 05:35:04','177769cc-9495-4899-97e9-662b707dced0','Read more',NULL,0,'outline'),(35325,151878,1,'2021-04-22 05:35:04','2021-04-22 05:35:04','dd2ec10e-8b60-4667-a4e7-df78a3f3263c','Download the PDF','https://d1jydvs1x4rbvt.cloudfront.net/downloads/FIN_MR_24-7-health-advice-just-a-phone-call-away_210215.pdf?mtime=20210212130259&focal=none',1,'solid'),(35326,151880,1,'2021-04-22 05:35:04','2021-04-22 05:35:04','d3f57836-c083-4e25-827b-5bec2cbd4fe6','Read more',NULL,0,'outline'),(35327,151881,1,'2021-04-22 05:35:04','2021-04-22 05:35:04','32a98ce6-e081-42a1-904a-c3c95d4a3b85','Download the PDF','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MR_Opening-of-headspace-Strathpine-to-improve-youth-mental-health-services_201130.pdf',1,'solid'),(35328,151883,1,'2021-04-22 05:35:04','2021-04-22 05:35:04','1230eb36-1d9e-4729-9c4c-110a9e552557','Read more',NULL,0,'outline'),(35329,151884,1,'2021-04-22 05:35:04','2021-04-22 05:35:04','f136ecbf-e696-49fa-9eee-c529ba5ca401','Download the PDF','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MR_AGM-elects-first-Indigenous-Board-Director_201112.pdf',1,'solid'),(35330,151886,1,'2021-04-22 05:35:04','2021-04-22 05:35:04','00896618-cb40-4192-b73f-05ee12620a8d','Read more',NULL,1,'outline'),(35331,151887,1,'2021-04-22 05:35:04','2021-04-22 05:35:04','7bff0ea7-35df-417c-b79e-4e47b5f3b230','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Indigenous-artwork-celebrates-reconciliation-progress_200902-web.pdf',1,'solid'),(35332,151889,1,'2021-04-22 05:35:04','2021-04-22 05:35:04','4933e286-d7f1-49d3-9b1c-761fabcebc5a','Read more',NULL,1,'outline'),(35333,151890,1,'2021-04-22 05:35:04','2021-04-22 05:35:04','a5c8cad2-84c2-472b-954b-b0a353cce157','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MEDIA-RELEASE_Campaign-Launch_Safe-to-See-Your-GP_200730.pdf',1,'solid'),(35334,151892,1,'2021-04-22 05:35:05','2021-04-22 05:35:05','ee6bcdcb-8e0e-4c43-b4c6-c93455e62b3a','Read more',NULL,1,'outline'),(35335,151893,1,'2021-04-22 05:35:05','2021-04-22 05:35:05','5bfff66f-d119-4987-a7a1-6022a0fc4b78','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Flu-vaccine-urged-for-over-65s-and-Indigenous-Australians_200629.pdf',1,'solid'),(35336,151895,1,'2021-04-22 05:35:05','2021-04-22 05:35:05','88e16715-896a-48b6-9f94-e3eb94c1ebb6','Read more',NULL,1,'outline'),(35337,151896,1,'2021-04-22 05:35:05','2021-04-22 05:35:05','26ee96f4-be04-419a-a839-d6a97564f1e6','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_New20headspace20youth20mental20health20service20for20Pine20Rivers_200615.pdf',1,'solid'),(35338,151898,1,'2021-04-22 05:35:05','2021-04-22 05:35:05','dab6bcef-9be6-4d3a-a4b0-4c7bd902f6eb','Read more',NULL,1,'outline'),(35339,151899,1,'2021-04-22 05:35:05','2021-04-22 05:35:05','e73356de-dd86-4438-ace5-276589cd36fa','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Embargo_Medical-Mums-urge-free-kids%E2%80%99-flu-vaccination_200424.pdf',1,'solid'),(35340,151901,1,'2021-04-22 05:35:05','2021-04-22 05:35:05','a57b9577-037e-4d7c-948d-f4ba1b96fa20','Read more',NULL,1,'outline'),(35341,151902,1,'2021-04-22 05:35:05','2021-04-22 05:35:05','465a987f-17c8-4bfa-94ad-d0cdd81bb0b9','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_CEO-to-step-down_200318.pdf',1,'solid'),(35342,151904,1,'2021-04-22 05:35:05','2021-04-22 05:35:05','4f37e740-a350-4fc6-8474-f4d2ed745172','Read more',NULL,1,'outline'),(35343,151905,1,'2021-04-22 05:35:05','2021-04-22 05:35:05','d944e119-5349-47ad-824b-7136edd8d479','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_AGM-adds-another-GP-voice-to-Board_191126.pdf',1,'solid'),(35344,151907,1,'2021-04-22 05:35:05','2021-04-22 05:35:05','ba49f296-ab9d-4ad9-acdf-2c9d3bc44e55','Read more',NULL,1,'outline'),(35345,151908,1,'2021-04-22 05:35:05','2021-04-22 05:35:05','1ca8f426-23ca-43ac-bc2f-d8553e767572','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Start-a-conversation_-Find-your-reasons-to-stay.PDF',1,'solid'),(35346,151910,1,'2021-04-22 05:35:05','2021-04-22 05:35:05','a92667a8-94ca-433c-b80b-51ebf86445e0','Read more',NULL,1,'outline'),(35347,151911,1,'2021-04-22 05:35:05','2021-04-22 05:35:05','2e4d55e9-afe3-4d7c-9dde-65d841919d11','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Avoid-the-crowd-and-access-after-hours-medical-advice-from-home_190711.pdf',1,'solid'),(35348,151913,1,'2021-04-22 05:35:05','2021-04-22 05:35:05','841759fb-ab5e-4b77-baf3-538afd693b5e','Read more',NULL,0,'outline'),(35349,151914,1,'2021-04-22 05:35:05','2021-04-22 05:35:05','ff3ccfe4-6f76-46a1-a93b-0d1e2c9c1a55','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Vaccine-myths-get-Medical-Mums-makeover_190423.pdf',1,'solid'),(35350,151916,1,'2021-04-22 05:35:05','2021-04-22 05:35:05','fe00d3aa-eb43-4e0e-8ec6-b09e5b187af8','Read more',NULL,1,'outline'),(35351,151917,1,'2021-04-22 05:35:05','2021-04-22 05:35:05','5d07c3a6-c5ef-408d-adae-daa36994d20e','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Palliative-care-scholarships-upskill-local-nursing-workforce_100319.pdf',1,'solid'),(35352,151919,1,'2021-04-22 05:35:05','2021-04-22 05:35:05','95f1a09f-6574-4a67-adb9-990fa24a9445','Read more','https://brisbanenorthphn.org.au/news/integrated-suicide-prevention-initiatives-aim-to-save-lives',1,'outline'),(35353,151920,1,'2021-04-22 05:35:05','2021-04-22 05:35:05','77e575bd-5227-477e-92ce-9062d2852256','Download the PDF','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/MR_Integrated-suicide-prevention-initiatives-aim-to-save-lives.pdf',1,'solid'),(35354,152007,1,'2021-04-23 06:11:18','2021-04-23 06:12:31','a2b3e0ce-1671-4ef3-ae41-9585193c1f07','More information','http://health.gov.au/covid19-vaccines',1,'solid'),(35355,152009,1,'2021-04-23 06:11:18','2021-04-23 06:12:31','1f3c8f3c-e69c-4d5b-9538-c29621e02bd8','Vaccine questions answered','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/covid-19-vaccine-aged-care-readiness-toolkit',1,'link'),(35356,152010,1,'2021-04-23 06:11:18','2021-04-23 06:12:31','cf0b87b5-b530-4ad2-8fd3-d5bba9a67a20','Information for workers in RACFs','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/information-for-aged-care-workers-about-covid-19-vaccines',1,'link'),(35357,152011,1,'2021-04-23 06:11:18','2021-04-23 06:12:31','3c923cf8-2a1e-49fa-90ed-40936a50dc05','Information for residents in RACFs','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/covid-19-vaccine-information-for-aged-care-residents-and-people-receiving-in-home-aged-care',1,'link'),(35358,152012,1,'2021-04-23 06:11:18','2021-04-23 06:12:19','5250732b-9ae7-4b8e-94b7-2a5d63c87647','Poster for display within RACFs','https://www.health.gov.au/sites/default/files/documents/2021/02/covid-19-vaccination-covid-19-vaccines-for-residential-aged-care-facilities-poster-covid-19-vaccine-covid-19-vaccines-for-residential-aged-care-facilities-poster_0.pdf',1,'link'),(35359,152014,1,'2021-04-23 06:11:18','2021-04-23 06:12:31','ce44d70c-e3ae-48f8-99a1-10e332f2a3c8','Aged care vaccine readiness toolkit','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-aged-care-readiness-toolkit',1,'link'),(35360,152015,1,'2021-04-23 06:11:18','2021-04-23 06:12:31','c46e3270-b303-4b29-8044-662022a1a4ae','Consent form for COVID-19 vaccination','https://www.health.gov.au/resources/publications/covid-19-vaccination-consent-form-for-covid-19-vaccination?utm_source=GP+List+DD+and+WM_Current&utm_campaign=adb48e0824-EMAIL_CAMPAIGN_2018_07_27_02_23_COPY_01&utm_medium=email&utm_term=0_4698ba36cb-adb48e0',1,'link'),(35361,152016,1,'2021-04-23 06:11:18','2021-04-23 06:12:31','6a21955c-993e-43d9-861c-108b67a87559','Department of Health information and resources','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-for-aged-care-providers-and-workers',1,'link'),(35362,152018,1,'2021-04-23 06:11:19','2021-04-23 06:12:31','98c807d8-9a0b-44fc-8ed8-51ec4f706720','ATAGI: Advice on the relative timing of administering influenza and COVID-19 vaccines in 2021','https://www.health.gov.au/resources/publications/covid-19-vaccination-atagi-advice-on-influenza-and-covid-19-vaccines',1,'outline'),(35363,152019,1,'2021-04-23 06:11:19','2021-04-23 06:12:31','4cc2e109-20ab-4453-8112-d47111aeb3a9','AHPPC: Statement on COVID-19 and influenza vaccination requirements for aged care workers','https://www.health.gov.au/news/australian-health-protection-principal-committee-ahppc-statement-on-covid-19-and-influenza-vaccination-requirements-for-aged-care-workers',1,'outline'),(35364,152021,1,'2021-04-23 06:11:19','2021-04-23 06:12:31','f9c75dbb-6558-487d-ad7e-41a0952f73ab','Part 1: Preparing for the vaccine rollout in Brisbane North RACFs','https://www.youtube.com/watch?v=3BNaB811O_k',1,'solid'),(35365,152022,1,'2021-04-23 06:11:19','2021-04-23 06:12:31','5e8069b3-7872-4193-bf5e-b984127c045a','Part 2: Preparing for the vaccine rollout in Brisbane North RACFs','https://youtu.be/AATe_vJ3c3w',1,'solid'),(35366,152027,1,'2021-04-23 06:11:19','2021-04-23 06:12:32','f960978c-e6cf-4095-a12b-67096f68a6b8','Aged care resources on the DoH website','https://www.health.gov.au/resources/collections/coronavirus-covid-19-resources-for-health-professionals-including-aged-care-providers-pathology-providers-and-health-care-managers#health-and-aged-care-workers',1,'link'),(35367,152028,1,'2021-04-23 06:11:19','2021-04-23 06:12:32','73622b49-e64a-49a0-b3aa-2a858c852a5b','Subscribe to aged care sector announcements','https://www.health.gov.au/using-our-websites/subscriptions/subscribe-to-aged-care-sector-announcements-and-newsletters',1,'link'),(35368,152029,1,'2021-04-23 06:11:19','2021-04-23 06:12:32','fb5b7270-def1-4153-9d2e-401d5439c570','Leading Age Services Australia','https://lasa.asn.au/covid-19',1,'link'),(35369,152030,1,'2021-04-23 06:11:19','2021-04-23 06:12:32','56934abc-3157-4f0e-82a9-88eaff56dbde','Aged and Community Services Australia','https://www.acsa.asn.au/Home/Aged-Care-Emergency-Planning/Coronavirus',1,'link'),(35370,152033,1,'2021-04-23 06:12:41','2021-04-23 06:12:41','4f906914-779c-4a89-8598-8e4a037029be','More information','http://health.gov.au/covid19-vaccines',1,'solid'),(35371,152035,1,'2021-04-23 06:12:41','2021-04-23 06:12:41','509703c7-e47c-47c5-9b0f-c58967c10228','Vaccine questions answered','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/covid-19-vaccine-aged-care-readiness-toolkit',1,'link'),(35372,152036,1,'2021-04-23 06:12:41','2021-04-23 06:12:41','9e4b16fc-5108-471b-9051-765785aae2a8','Information for workers in RACFs','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/information-for-aged-care-workers-about-covid-19-vaccines',1,'link'),(35373,152037,1,'2021-04-23 06:12:41','2021-04-23 06:12:41','a7be939c-3353-4259-94b0-0f5c56abd307','Information for residents in RACFs','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/covid-19-vaccine-information-for-aged-care-residents-and-people-receiving-in-home-aged-care',1,'link'),(35374,152039,1,'2021-04-23 06:12:41','2021-04-23 06:12:41','7ce1605b-c8dd-496f-abfe-adbfa1ffdc11','Aged care vaccine readiness toolkit','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-aged-care-readiness-toolkit',1,'link'),(35375,152040,1,'2021-04-23 06:12:41','2021-04-23 06:12:41','6ad5e07d-fdd9-4af5-b2cb-e87331eee68c','Consent form for COVID-19 vaccination','https://www.health.gov.au/resources/publications/covid-19-vaccination-consent-form-for-covid-19-vaccination?utm_source=GP+List+DD+and+WM_Current&utm_campaign=adb48e0824-EMAIL_CAMPAIGN_2018_07_27_02_23_COPY_01&utm_medium=email&utm_term=0_4698ba36cb-adb48e0',1,'link'),(35376,152041,1,'2021-04-23 06:12:41','2021-04-23 06:12:41','2def6bd3-a02a-4144-9ac9-656d214f2df5','Department of Health information and resources','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-for-aged-care-providers-and-workers',1,'link'),(35377,152043,1,'2021-04-23 06:12:41','2021-04-23 06:12:41','08473030-d3c1-46e5-ba49-52cfd806567f','ATAGI: Advice on the relative timing of administering influenza and COVID-19 vaccines in 2021','https://www.health.gov.au/resources/publications/covid-19-vaccination-atagi-advice-on-influenza-and-covid-19-vaccines',1,'outline'),(35378,152044,1,'2021-04-23 06:12:41','2021-04-23 06:12:41','fbaad5cd-f8a9-467c-89bf-fd551b52081e','AHPPC: Statement on COVID-19 and influenza vaccination requirements for aged care workers','https://www.health.gov.au/news/australian-health-protection-principal-committee-ahppc-statement-on-covid-19-and-influenza-vaccination-requirements-for-aged-care-workers',1,'outline'),(35379,152046,1,'2021-04-23 06:12:41','2021-04-23 06:12:41','a1eb722f-2173-4379-a170-7687b1d558dc','Part 1: Preparing for the vaccine rollout in Brisbane North RACFs','https://www.youtube.com/watch?v=3BNaB811O_k',1,'solid'),(35380,152047,1,'2021-04-23 06:12:41','2021-04-23 06:12:41','8f37f5a9-255c-4fd8-9d8d-797162f06cc7','Part 2: Preparing for the vaccine rollout in Brisbane North RACFs','https://youtu.be/AATe_vJ3c3w',1,'solid'),(35381,152052,1,'2021-04-23 06:12:41','2021-04-23 06:12:41','fae33fee-a10b-4eb2-b4c7-e0159ae1c315','Aged care resources on the DoH website','https://www.health.gov.au/resources/collections/coronavirus-covid-19-resources-for-health-professionals-including-aged-care-providers-pathology-providers-and-health-care-managers#health-and-aged-care-workers',1,'link'),(35382,152053,1,'2021-04-23 06:12:41','2021-04-23 06:12:41','a2844cd1-60b7-414e-95ee-bdff011603cd','Subscribe to aged care sector announcements','https://www.health.gov.au/using-our-websites/subscriptions/subscribe-to-aged-care-sector-announcements-and-newsletters',1,'link'),(35383,152054,1,'2021-04-23 06:12:41','2021-04-23 06:12:41','037c3a43-243c-4afb-af54-dc2c1155d14e','Leading Age Services Australia','https://lasa.asn.au/covid-19',1,'link'),(35384,152055,1,'2021-04-23 06:12:41','2021-04-23 06:12:41','dd237a0b-5ddd-4d65-bbd5-8a1a8033043c','Aged and Community Services Australia','https://www.acsa.asn.au/Home/Aged-Care-Emergency-Planning/Coronavirus',1,'link'),(35385,152059,1,'2021-04-23 06:12:42','2021-04-23 06:12:42','d1c94c2d-c3d1-4925-ba82-5bba117278d8','More information','http://health.gov.au/covid19-vaccines',1,'solid'),(35386,152061,1,'2021-04-23 06:12:42','2021-04-23 06:12:42','56e39ba3-7a87-442e-be24-3f45e45f6187','Vaccine questions answered','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/covid-19-vaccine-aged-care-readiness-toolkit',1,'link'),(35387,152062,1,'2021-04-23 06:12:42','2021-04-23 06:12:42','5568c611-26a5-4686-82fc-ef6d16198cd9','Information for workers in RACFs','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/information-for-aged-care-workers-about-covid-19-vaccines',1,'link'),(35388,152063,1,'2021-04-23 06:12:42','2021-04-23 06:12:42','c7efb69f-23c9-497c-bc9e-44c0f7c5d9f2','Information for residents in RACFs','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/covid-19-vaccine-information-for-aged-care-residents-and-people-receiving-in-home-aged-care',1,'link'),(35389,152065,1,'2021-04-23 06:12:42','2021-04-23 06:12:42','24fcae7e-456d-4b02-89a1-84145a68616f','Aged care vaccine readiness toolkit','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-aged-care-readiness-toolkit',1,'link'),(35390,152066,1,'2021-04-23 06:12:42','2021-04-23 06:12:42','da15a991-8510-4ad6-a425-7b79289a5c10','Consent form for COVID-19 vaccination','https://www.health.gov.au/resources/publications/covid-19-vaccination-consent-form-for-covid-19-vaccination?utm_source=GP+List+DD+and+WM_Current&utm_campaign=adb48e0824-EMAIL_CAMPAIGN_2018_07_27_02_23_COPY_01&utm_medium=email&utm_term=0_4698ba36cb-adb48e0',1,'link'),(35391,152067,1,'2021-04-23 06:12:42','2021-04-23 06:12:42','71267a0e-cbeb-4344-9fd1-966e102431c3','Department of Health information and resources','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-for-aged-care-providers-and-workers',1,'link'),(35392,152069,1,'2021-04-23 06:12:42','2021-04-23 06:12:42','f00f32fa-7f01-4f73-b947-d05598f7b045','ATAGI: Advice on the relative timing of administering influenza and COVID-19 vaccines in 2021','https://www.health.gov.au/resources/publications/covid-19-vaccination-atagi-advice-on-influenza-and-covid-19-vaccines',1,'outline'),(35393,152070,1,'2021-04-23 06:12:42','2021-04-23 06:12:42','c0887fa1-6665-4d98-89c2-ae5be13c592a','AHPPC: Statement on COVID-19 and influenza vaccination requirements for aged care workers','https://www.health.gov.au/news/australian-health-protection-principal-committee-ahppc-statement-on-covid-19-and-influenza-vaccination-requirements-for-aged-care-workers',1,'outline'),(35394,152072,1,'2021-04-23 06:12:42','2021-04-23 06:12:42','6478fea3-3181-4dc3-ae37-994b1b528a12','Part 1: Preparing for the vaccine rollout in Brisbane North RACFs','https://www.youtube.com/watch?v=3BNaB811O_k',1,'solid'),(35395,152073,1,'2021-04-23 06:12:42','2021-04-23 06:12:42','0aad7440-50ac-44d8-9ca9-76450705e142','Part 2: Preparing for the vaccine rollout in Brisbane North RACFs','https://youtu.be/AATe_vJ3c3w',1,'solid'),(35396,152078,1,'2021-04-23 06:12:42','2021-04-23 06:12:42','e0df89d7-2fd2-474e-a321-9ee3c3c1402d','Aged care resources on the DoH website','https://www.health.gov.au/resources/collections/coronavirus-covid-19-resources-for-health-professionals-including-aged-care-providers-pathology-providers-and-health-care-managers#health-and-aged-care-workers',1,'link'),(35397,152079,1,'2021-04-23 06:12:42','2021-04-23 06:12:42','334ef9ed-6b59-42d1-a9cf-a81245da6613','Subscribe to aged care sector announcements','https://www.health.gov.au/using-our-websites/subscriptions/subscribe-to-aged-care-sector-announcements-and-newsletters',1,'link'),(35398,152080,1,'2021-04-23 06:12:42','2021-04-23 06:12:42','5f813c59-0578-4868-a4f6-424041c43d17','Leading Age Services Australia','https://lasa.asn.au/covid-19',1,'link'),(35399,152081,1,'2021-04-23 06:12:42','2021-04-23 06:12:42','7bd24fc2-e472-4607-b918-b76767e871fe','Aged and Community Services Australia','https://www.acsa.asn.au/Home/Aged-Care-Emergency-Planning/Coronavirus',1,'link'),(35400,152085,1,'2021-04-23 06:13:00','2021-04-23 06:13:00','ba7a6c60-117d-4e1c-b88b-b2c67cc8dbd7','More information','http://health.gov.au/covid19-vaccines',1,'solid'),(35401,152087,1,'2021-04-23 06:13:00','2021-04-23 06:13:00','9e6d9d1f-559a-465a-82da-488987b6c48b','Vaccine questions answered','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/covid-19-vaccine-aged-care-readiness-toolkit',1,'link'),(35402,152088,1,'2021-04-23 06:13:00','2021-04-23 06:13:00','3307a9c6-214c-4773-accd-3aea8748f6c3','Information for workers in RACFs','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/information-for-aged-care-workers-about-covid-19-vaccines',1,'link'),(35403,152089,1,'2021-04-23 06:13:00','2021-04-23 06:13:00','276d1d33-8911-4380-aebf-b96efda22f2a','Information for residents in RACFs','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/covid-19-vaccine-information-for-aged-care-residents-and-people-receiving-in-home-aged-care',1,'link'),(35404,152091,1,'2021-04-23 06:13:00','2021-04-23 06:13:00','255ca879-c0aa-4b20-a0b6-e198f10c2241','Aged care vaccine readiness toolkit','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-aged-care-readiness-toolkit',1,'link'),(35405,152092,1,'2021-04-23 06:13:00','2021-04-23 06:13:00','81206674-fd25-4ae4-a7c9-0b641a5d4735','Consent form for COVID-19 vaccination','https://www.health.gov.au/resources/publications/covid-19-vaccination-consent-form-for-covid-19-vaccination?utm_source=GP+List+DD+and+WM_Current&utm_campaign=adb48e0824-EMAIL_CAMPAIGN_2018_07_27_02_23_COPY_01&utm_medium=email&utm_term=0_4698ba36cb-adb48e0',1,'link'),(35406,152093,1,'2021-04-23 06:13:00','2021-04-23 06:13:00','94da028c-8ced-4f89-87cc-9ee70ee77651','Department of Health information and resources','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-for-aged-care-providers-and-workers',1,'link'),(35407,152095,1,'2021-04-23 06:13:00','2021-04-23 06:13:00','cf8530f7-7f01-466f-8b1d-18ee47540573','ATAGI: Advice on the relative timing of administering influenza and COVID-19 vaccines in 2021','https://www.health.gov.au/resources/publications/covid-19-vaccination-atagi-advice-on-influenza-and-covid-19-vaccines',1,'outline'),(35408,152096,1,'2021-04-23 06:13:00','2021-04-23 06:13:00','4441e8f5-6d32-4c93-a525-df9f88ecd778','AHPPC: Statement on COVID-19 and influenza vaccination requirements for aged care workers','https://www.health.gov.au/news/australian-health-protection-principal-committee-ahppc-statement-on-covid-19-and-influenza-vaccination-requirements-for-aged-care-workers',1,'outline'),(35409,152098,1,'2021-04-23 06:13:01','2021-04-23 06:13:01','95fe4aea-6e13-4429-88bd-1ee91ed89bdd','Part 1: Preparing for the vaccine rollout in Brisbane North RACFs','https://www.youtube.com/watch?v=3BNaB811O_k',1,'solid'),(35410,152099,1,'2021-04-23 06:13:01','2021-04-23 06:13:01','24467ce8-8b69-4e4a-8ea1-1a9a6929325e','Part 2: Preparing for the vaccine rollout in Brisbane North RACFs','https://youtu.be/AATe_vJ3c3w',1,'solid'),(35411,152104,1,'2021-04-23 06:13:01','2021-04-23 06:13:01','03822d56-6b6d-4083-93f4-8e93718763e3','Aged care resources on the DoH website','https://www.health.gov.au/resources/collections/coronavirus-covid-19-resources-for-health-professionals-including-aged-care-providers-pathology-providers-and-health-care-managers#health-and-aged-care-workers',1,'link'),(35412,152105,1,'2021-04-23 06:13:01','2021-04-23 06:13:01','a75a62c6-f308-40fa-bf0a-c0def85a9d8e','Subscribe to aged care sector announcements','https://www.health.gov.au/using-our-websites/subscriptions/subscribe-to-aged-care-sector-announcements-and-newsletters',1,'link'),(35413,152106,1,'2021-04-23 06:13:01','2021-04-23 06:13:01','3cc8a04a-99b9-4c2e-8616-a0033dfc2a01','Leading Age Services Australia','https://lasa.asn.au/covid-19',1,'link'),(35414,152107,1,'2021-04-23 06:13:01','2021-04-23 06:13:01','2f5d5de2-8718-4782-97a3-2e811c98eb2f','Aged and Community Services Australia','https://www.acsa.asn.au/Home/Aged-Care-Emergency-Planning/Coronavirus',1,'link'),(35415,152111,1,'2021-04-23 06:20:41','2021-04-23 06:29:14','d7294a2b-50b7-4532-8524-0cb7232fd730','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(35416,152112,1,'2021-04-23 06:20:41','2021-04-23 06:29:15','9c7256fb-68ff-47b1-8451-3d8d534211bc','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(35417,152115,1,'2021-04-23 06:20:41','2021-04-23 06:29:15','6bab715b-ba62-4584-8a89-86f5e697096d','Phase 1B rollout FAQs',NULL,1,'solid'),(35418,152118,1,'2021-04-23 06:20:41','2021-04-23 06:29:15','a0313341-2ef7-4e7c-9fb4-12895b0c3185','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(35419,152121,1,'2021-04-23 06:20:41','2021-04-23 06:29:15','49790b61-ce9e-42f5-aac7-26fd8069d9e7','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(35420,152124,1,'2021-04-23 06:20:41','2021-04-23 06:29:15','0b24f967-302e-4def-a442-fdf0aac721bb','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(35421,152126,1,'2021-04-23 06:20:41','2021-04-23 06:29:15','f041f18c-a43b-4082-b323-b7585ae1b963','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(35422,152128,1,'2021-04-23 06:20:42','2021-04-23 06:29:15','4b467ca9-0801-4463-a16a-137a2e6ee30d','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(35423,152131,1,'2021-04-23 06:20:42','2021-04-23 06:29:15','115f69f0-022c-4984-bb3d-b50b4801c2f4','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(35424,152133,1,'2021-04-23 06:20:42','2021-04-23 06:29:15','6de9b209-42a0-4bc3-8690-84764597fb60','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(35425,152135,1,'2021-04-23 06:20:42','2021-04-23 06:29:15','72620295-4e8a-4fec-b613-45e43e7a98c1','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(35426,152138,1,'2021-04-23 06:20:42','2021-04-23 06:29:15','3e7e06de-a597-4ec6-b2c4-e0f763c1b2b3','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(35427,152141,1,'2021-04-23 06:20:42','2021-04-23 06:29:15','68df8809-8a25-4803-b1e6-4f901e8f6b82','Subscribe to updates',NULL,1,'solid'),(35428,152143,1,'2021-04-23 06:20:42','2021-04-23 06:29:15','9733cee2-98c5-4da6-a480-aa98d4d8ade1','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(35429,152144,1,'2021-04-23 06:20:42','2021-04-23 06:29:15','5938a330-e02c-4189-9bb1-605d0d6bd423','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(35430,152227,1,'2021-04-23 06:29:16','2021-04-23 06:29:16','fcac1e2e-c2fc-4e1b-b988-38fb194725fe','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(35431,152228,1,'2021-04-23 06:29:16','2021-04-23 06:29:16','de4bfdab-ea56-4f5d-b7f4-66539c4ab422','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(35432,152231,1,'2021-04-23 06:29:16','2021-04-23 06:29:16','4a328b5b-868d-43fc-9046-afbbf953e7e2','Phase 1B rollout FAQs',NULL,1,'solid'),(35433,152234,1,'2021-04-23 06:29:16','2021-04-23 06:29:16','7f5cc90b-c580-472f-916a-35cb0f03b2b9','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(35434,152240,1,'2021-04-23 06:29:16','2021-04-23 06:29:16','983113a0-766e-4646-865d-011fb9f86b6f','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(35435,152243,1,'2021-04-23 06:29:16','2021-04-23 06:29:16','f45dcd84-0201-488a-b50c-33faeb52b7b1','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(35436,152245,1,'2021-04-23 06:29:16','2021-04-23 06:29:16','17f3389f-206e-4140-af6a-2c43a2979224','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(35437,152247,1,'2021-04-23 06:29:16','2021-04-23 06:29:16','57f93ba1-2fc2-4308-9197-f24ef2d0f94d','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(35438,152250,1,'2021-04-23 06:29:16','2021-04-23 06:29:16','948838b6-dcaf-4fc3-b406-210ef4bfa7e1','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(35439,152252,1,'2021-04-23 06:29:16','2021-04-23 06:29:16','467d798f-a264-44ef-a6fa-9779cd0841ff','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(35440,152254,1,'2021-04-23 06:29:16','2021-04-23 06:29:16','3e187e59-7db4-4c8d-a6ad-9b9cb483f5a5','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(35441,152257,1,'2021-04-23 06:29:16','2021-04-23 06:29:16','675a056f-2303-4ceb-ab50-7ded301d4dd7','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(35442,152260,1,'2021-04-23 06:29:16','2021-04-23 06:29:16','97591bae-e867-4043-87fd-afdd1d9bb27a','Subscribe to updates',NULL,1,'solid'),(35443,152262,1,'2021-04-23 06:29:16','2021-04-23 06:29:16','c9bbd097-7e64-48f6-bcab-7fca894121c1','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(35444,152263,1,'2021-04-23 06:29:16','2021-04-23 06:29:16','a702e618-f7e6-4bfe-b2aa-db0366cc630f','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(35445,152267,1,'2021-04-23 06:29:17','2021-04-23 06:29:17','d946cf98-0c11-493b-bc34-7d765b56f795','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(35446,152268,1,'2021-04-23 06:29:17','2021-04-23 06:29:17','2fda1f33-781b-4ff6-993b-fc241143ddad','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(35447,152271,1,'2021-04-23 06:29:17','2021-04-23 06:29:17','6ccc970f-46ee-41fa-9d82-6844c9f6da90','Phase 1B rollout FAQs',NULL,1,'solid'),(35448,152274,1,'2021-04-23 06:29:17','2021-04-23 06:29:17','2830ffdb-b18c-4f05-a03c-ea3ffb1338db','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(35449,152280,1,'2021-04-23 06:29:17','2021-04-23 06:29:17','a016f6a8-246d-43dc-a993-b12ad3b79f9c','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(35450,152283,1,'2021-04-23 06:29:17','2021-04-23 06:29:17','35322544-2b9a-46bc-bd59-28bf56b213e3','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(35451,152285,1,'2021-04-23 06:29:17','2021-04-23 06:29:17','74bedfb6-9e30-4956-8006-8ffe495474c3','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(35452,152287,1,'2021-04-23 06:29:17','2021-04-23 06:29:17','8d6e38aa-3b5f-4ac9-a548-4823fd9b0e4e','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(35453,152290,1,'2021-04-23 06:29:18','2021-04-23 06:29:18','54c2ccbb-d2e6-4193-94d5-8fbdba1383e8','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(35454,152292,1,'2021-04-23 06:29:18','2021-04-23 06:29:18','6348079f-acc2-404f-a717-bbea54477fa1','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(35455,152294,1,'2021-04-23 06:29:18','2021-04-23 06:29:18','18e9dc93-f154-422e-8cb5-034796bfeb21','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(35456,152297,1,'2021-04-23 06:29:18','2021-04-23 06:29:18','868872d6-e462-4502-ba21-87384a8599cb','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(35457,152300,1,'2021-04-23 06:29:18','2021-04-23 06:29:18','f63be5ae-4c9e-4c75-b75f-65972428b98e','Subscribe to updates',NULL,1,'solid'),(35458,152302,1,'2021-04-23 06:29:18','2021-04-23 06:29:18','8583f444-ff65-4a22-b0e3-a4322e0e0822','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(35459,152303,1,'2021-04-23 06:29:18','2021-04-23 06:29:18','1ef689e6-2d30-4179-9182-d151a065c74b','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(35460,152307,1,'2021-04-23 06:34:56','2021-04-23 06:43:40','7f40c3e0-e0d4-46a4-8108-4ac6b8d55988','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(35461,152308,1,'2021-04-23 06:34:56','2021-04-23 06:43:40','c30ad58c-fafd-468b-a2d5-1af1359d5168','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(35462,152311,1,'2021-04-23 06:34:56','2021-04-23 06:43:40','0648e56d-ae1c-43fe-a8c3-8371d4dda13a','Phase 1B rollout FAQs',NULL,1,'solid'),(35463,152314,1,'2021-04-23 06:34:56','2021-04-23 06:43:40','0dabe65b-fed7-4108-a6c5-207562cacb6d','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(35464,152320,1,'2021-04-23 06:34:56','2021-04-23 06:43:40','5bae46c1-783f-469d-9140-a8afadafd271','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(35465,152323,1,'2021-04-23 06:34:57','2021-04-23 06:43:40','7eec8150-ca2c-4df2-a00e-45de93807403','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(35466,152325,1,'2021-04-23 06:34:57','2021-04-23 06:43:40','c4de616e-d329-42c5-bfba-bd98bb45a081','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(35467,152327,1,'2021-04-23 06:34:57','2021-04-23 06:43:40','42f7e5d7-f3a2-4b1b-994f-286fdde96a88','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(35468,152330,1,'2021-04-23 06:34:57','2021-04-23 06:43:40','a14b451f-7538-41ba-ab76-6772ec61a464','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(35469,152332,1,'2021-04-23 06:34:57','2021-04-23 06:43:41','d8947e95-2ae2-48c6-86da-4c68df345257','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(35470,152334,1,'2021-04-23 06:34:57','2021-04-23 06:43:41','cbccafe6-b28c-439f-9933-ee1bc1a44c43','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(35471,152337,1,'2021-04-23 06:34:57','2021-04-23 06:43:41','83046a64-78fd-46cf-ba1a-ff7bf512f74c','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(35472,152340,1,'2021-04-23 06:34:57','2021-04-23 06:43:41','b645abfd-2696-446f-9d04-0bb677d59540','Subscribe to updates',NULL,1,'solid'),(35473,152342,1,'2021-04-23 06:34:57','2021-04-23 06:43:41','90f7875c-c0bd-4e0e-8f8a-22bcb519162b','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(35474,152343,1,'2021-04-23 06:34:57','2021-04-23 06:43:41','08e58898-5f7e-4cc3-bd0f-658d8dcdfe82','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(35475,152349,1,'2021-04-23 06:36:12','2021-04-23 06:36:12','90119688-ec28-4fd4-ab14-f1ed30ccb800',NULL,NULL,0,'solid'),(35476,152352,1,'2021-04-23 06:36:16','2021-04-23 06:36:16','6bf62c6d-f003-43fe-b461-dbe60bfc17b5',NULL,'https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',0,'solid'),(35477,152355,1,'2021-04-23 06:36:25','2021-04-23 06:36:25','12111f16-e7f0-4520-ab70-18e5b427c414','MBS','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',0,'solid'),(35478,152358,1,'2021-04-23 06:36:27','2021-04-23 06:36:27','b401aad2-fbfb-41b0-ad2b-05d5cf400c19','MBS','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'solid'),(35479,152361,1,'2021-04-23 06:37:08','2021-04-23 06:37:08','ae69fb3d-3e0a-4c13-b42f-ed30c7ff665c','Information for health profesionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'solid'),(35480,152364,1,'2021-04-23 06:37:14','2021-04-23 06:37:14','0828d96c-79b0-4796-ba11-ac0f0d2292a7','Information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'solid'),(35481,152367,1,'2021-04-23 06:37:22','2021-04-23 06:37:22','907da91f-ac00-474b-9a0a-d8f1a111427f','COVID-19 information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'solid'),(35482,152370,1,'2021-04-23 06:37:28','2021-04-23 06:37:28','421c8383-9d2a-4259-8b8e-821358fe1898','COVID-19 information for health professionals from MEdicare','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'solid'),(35483,152373,1,'2021-04-23 06:37:32','2021-04-23 06:37:32','0c4ce4c7-8426-4292-bfbd-8f1a35885f9e','COVID-19 information for health professionals from MEdicare','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(35484,152376,1,'2021-04-23 06:37:37','2021-04-23 06:37:37','3a274ac5-3196-485e-a95c-9dae1fec76b2','COVID-19 information for health professionals from MEdicare','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(35485,152377,1,'2021-04-23 06:37:37','2021-04-23 06:37:37','67ba1e2f-9a04-49bb-ad2b-5337b59ba438',NULL,NULL,0,'solid'),(35486,152380,1,'2021-04-23 06:37:47','2021-04-23 06:37:47','b128e491-9668-407a-9874-1ab32d8e5a29','COVID-19 information for health professionals from Medicare','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(35487,152381,1,'2021-04-23 06:37:47','2021-04-23 06:37:47','dd8d5b9d-ffdc-401b-bfd8-81aeeb6231bc',NULL,NULL,0,'solid'),(35488,152384,1,'2021-04-23 06:37:52','2021-04-23 06:37:52','0550c679-f4bd-4f62-8c43-b839fceb7d39','COVID-19 information from Medicare','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(35489,152385,1,'2021-04-23 06:37:52','2021-04-23 06:37:52','4d72d196-b93a-4a6d-b6e1-c2bb5f85f3d1',NULL,NULL,0,'solid'),(35490,152388,1,'2021-04-23 06:38:02','2021-04-23 06:38:02','98323249-fd07-4365-badc-3c864503b7a0','from Medicare','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(35491,152389,1,'2021-04-23 06:38:02','2021-04-23 06:38:02','a197f2f1-b0fb-4099-849f-7765b0a2b46f',NULL,NULL,0,'solid'),(35492,152392,1,'2021-04-23 06:38:27','2021-04-23 06:38:27','a7d267e0-e5f5-4e4b-855c-8cccd666785e','Information from Medicare','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(35493,152393,1,'2021-04-23 06:38:27','2021-04-23 06:38:27','1dee0a1e-49b0-4ea7-8d10-39c7df0f5a48',NULL,NULL,0,'solid'),(35494,152396,1,'2021-04-23 06:38:29','2021-04-23 06:38:29','e35a7084-d647-4a16-a11e-62a0ead27ac3','Medicare','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(35495,152397,1,'2021-04-23 06:38:29','2021-04-23 06:38:29','c8944d71-7029-46e2-9f9d-1c85f25b9d54',NULL,NULL,0,'solid'),(35496,152400,1,'2021-04-23 06:38:40','2021-04-23 06:38:40','bf535639-6eab-43de-9ac3-cd5066431443','Medicare information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(35497,152401,1,'2021-04-23 06:38:40','2021-04-23 06:38:40','5e9bfce0-b80e-4ff7-8c02-d688a022e89e',NULL,NULL,0,'solid'),(35498,152404,1,'2021-04-23 06:39:03','2021-04-23 06:39:03','09e99985-8497-4837-ba29-2cdaa6496658','Medicare – Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(35499,152405,1,'2021-04-23 06:39:03','2021-04-23 06:39:03','b22789b2-1447-4e08-91ad-96ce909cfb4e',NULL,NULL,0,'solid'),(35500,152408,1,'2021-04-23 06:39:16','2021-04-23 06:39:16','345af8e3-acf1-48ef-8320-49e4e856f69b','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(35501,152409,1,'2021-04-23 06:39:16','2021-04-23 06:39:16','cb876a4f-63b5-4f9d-a6fe-c92f4bb897fc',NULL,NULL,0,'solid'),(35502,152412,1,'2021-04-23 06:39:27','2021-04-23 06:39:27','11a3a283-0d3e-44a2-aced-68e4811e0b0e','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(35503,152413,1,'2021-04-23 06:39:27','2021-04-23 06:39:27','7ae2b8ea-a0a6-4344-9d97-85593c3aebb9',NULL,'https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',0,'solid'),(35504,152416,1,'2021-04-23 06:39:30','2021-04-23 06:39:30','4bf6a1c9-b9fc-4ae4-9d4e-f80635e21222','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(35505,152417,1,'2021-04-23 06:39:30','2021-04-23 06:39:30','11bb5c12-24fb-44b8-8e55-18e702a07209','MBS Quick Guide to COVID-19 Items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',0,'solid'),(35506,152420,1,'2021-04-23 06:39:33','2021-04-23 06:39:33','1c7ccc12-a836-4520-afe9-ac437d4e9d6c','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(35507,152421,1,'2021-04-23 06:39:33','2021-04-23 06:39:33','04cca386-4cdc-46ca-83b4-24155c5c422c','MBS quick Guide to COVID-19 Items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',0,'solid'),(35508,152424,1,'2021-04-23 06:39:35','2021-04-23 06:39:35','7048d510-b89a-41d0-a9d6-3bad20b8e62c','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(35509,152425,1,'2021-04-23 06:39:36','2021-04-23 06:39:36','b53315eb-78ac-48d6-b6c1-22504962d314','MBS quick guide to COVID-19 Items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',0,'solid'),(35510,152428,1,'2021-04-23 06:39:39','2021-04-23 06:39:39','59ee5712-06d2-4c6a-a2a5-aa83766f4ded','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(35511,152429,1,'2021-04-23 06:39:39','2021-04-23 06:39:39','4effe05d-a895-4778-a2ff-1458e4952565','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',0,'solid'),(35512,152432,1,'2021-04-23 06:39:40','2021-04-23 06:39:40','b947d3b8-5445-4522-b80b-ad7b919df724','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(35513,152433,1,'2021-04-23 06:39:40','2021-04-23 06:39:40','8484d307-7a78-4f09-9d6b-625e6c25044e','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(35514,152436,1,'2021-04-23 06:40:11','2021-04-23 06:40:11','37e86c28-b05b-44aa-8ab2-1f3c2c212f2c','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(35515,152437,1,'2021-04-23 06:40:11','2021-04-23 06:40:11','9f260e63-906c-4f05-999b-57317ab5ca8c','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(35516,152440,1,'2021-04-23 06:40:22','2021-04-23 06:40:22','338b9585-a157-42d7-8210-9ee1c68fa97f','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(35517,152441,1,'2021-04-23 06:40:22','2021-04-23 06:40:22','74204467-08b8-4dcb-8541-373565b9a017','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(35518,152444,1,'2021-04-23 06:40:32','2021-04-23 06:40:32','a296a654-e03b-4daa-81ff-60859284f19a','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(35519,152445,1,'2021-04-23 06:40:32','2021-04-23 06:40:32','593b9683-6aa3-43cd-ad4e-f06d3440053d','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(35520,152448,1,'2021-04-23 06:40:48','2021-04-23 06:40:48','a576d0e0-3d8e-4770-938a-9866f1356de2','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(35521,152449,1,'2021-04-23 06:40:48','2021-04-23 06:40:48','7c29b456-31c2-4500-a993-91fce75fbf20','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(35522,152452,1,'2021-04-23 06:41:11','2021-04-23 06:41:11','f3b8bb0e-80de-495a-88db-ec23e2e8f134','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(35523,152453,1,'2021-04-23 06:41:11','2021-04-23 06:41:11','44e4864d-e139-421d-bfd4-dfe5b473b8f3','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(35524,152456,1,'2021-04-23 06:42:03','2021-04-23 06:42:03','c896a63a-712c-47d5-abe7-cd987f4a2208','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(35525,152457,1,'2021-04-23 06:42:03','2021-04-23 06:42:03','65ad44a1-7320-4600-bdec-f583f79e545f','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(35526,152460,1,'2021-04-23 06:42:19','2021-04-23 06:42:19','ce5d954e-14ab-4e6c-848e-213f38a4ed46','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(35527,152461,1,'2021-04-23 06:42:19','2021-04-23 06:42:19','70962fa7-caf5-4b39-b8d7-36be790bc86c','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(35528,152464,1,'2021-04-23 06:42:43','2021-04-23 06:42:43','186f45f5-7c81-4512-a512-1f1806057f70','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(35529,152465,1,'2021-04-23 06:42:43','2021-04-23 06:42:43','ddc54321-833b-4e4a-bc1e-afc10f079a94','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(35530,152468,1,'2021-04-23 06:43:41','2021-04-23 06:43:41','d562c162-df6c-4c6e-bdd2-7cbd96c68a56','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(35531,152469,1,'2021-04-23 06:43:41','2021-04-23 06:43:41','fe09f0b4-1405-45c7-b059-42dc1fed86f8','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(35532,152472,1,'2021-04-23 06:43:57','2021-04-23 06:43:57','5dcc9742-eb68-41ab-90d8-d4a2e19e0477','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(35533,152473,1,'2021-04-23 06:43:57','2021-04-23 06:43:57','3b8a25d2-7ebf-4027-a614-7ed9e52c9e5c','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(35534,152476,1,'2021-04-23 06:43:57','2021-04-23 06:43:57','00fb2f3e-a4b0-44df-85e4-22614c5d5613','Phase 1B rollout FAQs',NULL,1,'solid'),(35535,152479,1,'2021-04-23 06:43:57','2021-04-23 06:43:57','54613432-7a38-4f4d-9b7e-00747e307bb3','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(35536,152485,1,'2021-04-23 06:43:57','2021-04-23 06:43:57','68cc0f72-2816-41cb-8ee7-0e26a6cf85c1','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(35537,152488,1,'2021-04-23 06:43:58','2021-04-23 06:43:58','946e6039-fcc5-41a8-bd01-cf410b3e5ca5','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(35538,152490,1,'2021-04-23 06:43:58','2021-04-23 06:43:58','511bf100-91ac-4953-8f6b-9e957b9ef1ad','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(35539,152492,1,'2021-04-23 06:43:58','2021-04-23 06:43:58','24acad86-0f82-42d0-b9d6-c4c13956ff56','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(35540,152495,1,'2021-04-23 06:43:58','2021-04-23 06:43:58','2bc70dfc-7672-4a14-89e5-f3a2fdb48e44','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(35541,152497,1,'2021-04-23 06:43:58','2021-04-23 06:43:58','f3beff24-f0c9-4ecc-9fcc-7697b77adbf2','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(35542,152499,1,'2021-04-23 06:43:58','2021-04-23 06:43:58','999d4a00-1671-4749-9980-41c847ed94ba','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(35543,152502,1,'2021-04-23 06:43:58','2021-04-23 06:43:58','d8e16fb5-7eeb-4741-9516-381efae8a7b5','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(35544,152503,1,'2021-04-23 06:43:58','2021-04-23 06:43:58','680468ea-a2b2-4265-8115-84dfd0a5160d','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(35545,152506,1,'2021-04-23 06:43:58','2021-04-23 06:43:58','e26dd3dc-cd14-4fd8-b682-2b2116ecf7c6','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(35546,152509,1,'2021-04-23 06:43:58','2021-04-23 06:43:58','d6b48819-f874-4123-b217-3b2508ba0dfb','Subscribe to updates',NULL,1,'solid'),(35547,152511,1,'2021-04-23 06:43:58','2021-04-23 06:43:58','5d4f48d7-5707-4507-b6c5-2aa0233d6811','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(35548,152512,1,'2021-04-23 06:43:58','2021-04-23 06:43:58','b265f865-869e-4098-ba14-c8ca859c271c','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(35549,152516,1,'2021-04-23 06:43:59','2021-04-23 06:43:59','718a1df2-4187-44c1-aad5-d5399b83055a','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(35550,152517,1,'2021-04-23 06:43:59','2021-04-23 06:43:59','153e3073-2894-441e-8222-9bda3bcbcab2','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(35551,152520,1,'2021-04-23 06:43:59','2021-04-23 06:43:59','07221cd4-63f3-46a9-8396-a04b13a628a0','Phase 1B rollout FAQs',NULL,1,'solid'),(35552,152523,1,'2021-04-23 06:43:59','2021-04-23 06:43:59','2e46a983-4898-4641-9a8c-ffeba985c7bd','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(35553,152529,1,'2021-04-23 06:43:59','2021-04-23 06:43:59','edcb7e5d-5450-4bae-b25c-53e17f11dec4','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(35554,152532,1,'2021-04-23 06:43:59','2021-04-23 06:43:59','262909dd-4ae1-4614-a269-250ba830fc79','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(35555,152534,1,'2021-04-23 06:43:59','2021-04-23 06:43:59','1e1daaca-4569-4ce9-bd25-e02afefd1955','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(35556,152536,1,'2021-04-23 06:43:59','2021-04-23 06:43:59','6fc55659-bfb0-4472-b2a5-23e5a9fc6b03','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(35557,152539,1,'2021-04-23 06:43:59','2021-04-23 06:43:59','fa592f23-a6d4-4ffd-8874-62fde59ca664','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(35558,152541,1,'2021-04-23 06:44:00','2021-04-23 06:44:00','df03e141-9eb2-4546-8591-1c621a2f010e','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(35559,152543,1,'2021-04-23 06:44:00','2021-04-23 06:44:00','7631e867-9a9d-417e-bc20-5d8251613cef','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(35560,152546,1,'2021-04-23 06:44:00','2021-04-23 06:44:00','f9d5a435-f3cb-4bf1-a807-f24ded11b876','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(35561,152547,1,'2021-04-23 06:44:00','2021-04-23 06:44:00','a662c3ae-7ab8-444f-9a21-5e23c6dc856f','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(35562,152550,1,'2021-04-23 06:44:00','2021-04-23 06:44:00','fed64696-eba3-4d9c-b1fd-035920833389','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(35563,152553,1,'2021-04-23 06:44:00','2021-04-23 06:44:00','4515182c-aeea-4ca9-8241-108a42cd91d5','Subscribe to updates',NULL,1,'solid'),(35564,152555,1,'2021-04-23 06:44:00','2021-04-23 06:44:00','e6a0d76d-869a-4843-8394-d183e54511d2','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(35565,152556,1,'2021-04-23 06:44:00','2021-04-23 06:44:00','3f0de814-a081-4c3c-a5f9-989c28ac180b','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(35566,152560,1,'2021-04-23 06:44:13','2021-04-23 06:44:13','86f46d95-2c6d-4e9b-91ff-723d7f8cd4fe','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(35567,152561,1,'2021-04-23 06:44:13','2021-04-23 06:44:13','71cb786d-1fe2-46d9-8c47-765b3c477dd6','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(35568,152564,1,'2021-04-23 06:44:13','2021-04-23 06:44:13','5f854f1d-9123-4ae9-9c31-0c6a909f5795','Phase 1B rollout FAQs',NULL,1,'solid'),(35569,152567,1,'2021-04-23 06:44:13','2021-04-23 06:44:13','cad842d7-9f5e-490e-8537-078f4b3659f5','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(35570,152573,1,'2021-04-23 06:44:13','2021-04-23 06:44:13','a33b55b4-4aa3-4a8c-8cab-e05fcc0edaab','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(35571,152576,1,'2021-04-23 06:44:13','2021-04-23 06:44:13','5c5c2e50-4422-45d2-b45d-741207d6cd48','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(35572,152578,1,'2021-04-23 06:44:13','2021-04-23 06:44:13','fdee60c3-d661-41e4-a568-c9376fb44730','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(35573,152580,1,'2021-04-23 06:44:13','2021-04-23 06:44:13','0e3512f9-156a-4865-9cd8-3f530b683569','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(35574,152583,1,'2021-04-23 06:44:13','2021-04-23 06:44:13','85395406-9809-43ca-a494-79dd4664a8e1','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(35575,152585,1,'2021-04-23 06:44:13','2021-04-23 06:44:13','9203ff1d-7d5e-4fcb-82b8-c46c2e9e7533','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(35576,152587,1,'2021-04-23 06:44:13','2021-04-23 06:44:13','c9f079e5-862b-46f8-9e9d-3b3764f89372','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(35577,152590,1,'2021-04-23 06:44:13','2021-04-23 06:44:13','a7d83455-217c-4f7c-ba17-d6990efc4529','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(35578,152591,1,'2021-04-23 06:44:14','2021-04-23 06:44:14','4e7b7918-5ce2-4f9d-96e0-7edc49564f76','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(35579,152594,1,'2021-04-23 06:44:14','2021-04-23 06:44:14','403a3cd0-55eb-48bf-9b52-98a5f02b10b9','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(35580,152597,1,'2021-04-23 06:44:14','2021-04-23 06:44:14','eec80e53-1025-4614-b916-e5ed3402b690','Subscribe to updates',NULL,1,'solid'),(35581,152599,1,'2021-04-23 06:44:14','2021-04-23 06:44:14','9d685d91-66d7-4d98-8bb1-bd8de16cb5a6','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(35582,152600,1,'2021-04-23 06:44:14','2021-04-23 06:44:14','a64e0646-1d6f-4203-b0a3-2c64c447d001','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(35583,152604,1,'2021-04-23 06:51:41','2021-04-23 06:51:41','93988744-d561-4add-b83f-679881091e26','More information','http://health.gov.au/covid19-vaccines',1,'solid'),(35584,152606,1,'2021-04-23 06:51:41','2021-04-23 06:51:42','e3dbf543-74c1-4090-ad83-c3bf94bef4da','Vaccine questions answered','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/is-it-true',1,'link'),(35585,152607,1,'2021-04-23 06:51:41','2021-04-23 06:51:42','04e85c34-7b6f-473a-885d-d6a9518ce0dc','Information for workers in RACFs','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/information-for-aged-care-workers-about-covid-19-vaccines',1,'link'),(35586,152608,1,'2021-04-23 06:51:41','2021-04-23 06:51:42','93c80aef-c285-4eeb-a66c-84d5148c2506','Information for residents in RACFs','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/covid-19-vaccine-information-for-aged-care-residents-and-people-receiving-in-home-aged-care',1,'link'),(35587,152610,1,'2021-04-23 06:51:41','2021-04-23 06:51:41','461388d6-8158-43ef-9faf-0240da97344c','Aged care vaccine readiness toolkit','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-aged-care-readiness-toolkit',1,'link'),(35588,152611,1,'2021-04-23 06:51:41','2021-04-23 06:51:41','cfc1fb3b-a0a2-40ff-8438-e356cee34c31','Consent form for COVID-19 vaccination','https://www.health.gov.au/resources/publications/covid-19-vaccination-consent-form-for-covid-19-vaccination?utm_source=GP+List+DD+and+WM_Current&utm_campaign=adb48e0824-EMAIL_CAMPAIGN_2018_07_27_02_23_COPY_01&utm_medium=email&utm_term=0_4698ba36cb-adb48e0',1,'link'),(35589,152612,1,'2021-04-23 06:51:41','2021-04-23 06:51:41','b1bf5d0a-9604-4fb5-9762-ebb6d329940a','Department of Health information and resources','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-for-aged-care-providers-and-workers',1,'link'),(35590,152614,1,'2021-04-23 06:51:41','2021-04-23 06:51:41','79eca05e-e684-41df-89c1-d035482deb86','ATAGI: Advice on the relative timing of administering influenza and COVID-19 vaccines in 2021','https://www.health.gov.au/resources/publications/covid-19-vaccination-atagi-advice-on-influenza-and-covid-19-vaccines',1,'outline'),(35591,152615,1,'2021-04-23 06:51:41','2021-04-23 06:51:41','e7f043db-b66e-4a68-9e5a-0b64479b9bcf','AHPPC: Statement on COVID-19 and influenza vaccination requirements for aged care workers','https://www.health.gov.au/news/australian-health-protection-principal-committee-ahppc-statement-on-covid-19-and-influenza-vaccination-requirements-for-aged-care-workers',1,'outline'),(35592,152617,1,'2021-04-23 06:51:41','2021-04-23 06:51:41','d0e1467f-aaa7-42b3-8b80-028bec361634','Part 1: Preparing for the vaccine rollout in Brisbane North RACFs','https://www.youtube.com/watch?v=3BNaB811O_k',1,'solid'),(35593,152618,1,'2021-04-23 06:51:41','2021-04-23 06:51:41','57d3b68f-8d4d-4e15-83cc-e20c293dd312','Part 2: Preparing for the vaccine rollout in Brisbane North RACFs','https://youtu.be/AATe_vJ3c3w',1,'solid'),(35594,152623,1,'2021-04-23 06:51:41','2021-04-23 06:51:41','7435efb2-856a-430c-841a-2c43a2c6798e','Aged care resources on the DoH website','https://www.health.gov.au/resources/collections/coronavirus-covid-19-resources-for-health-professionals-including-aged-care-providers-pathology-providers-and-health-care-managers#health-and-aged-care-workers',1,'link'),(35595,152624,1,'2021-04-23 06:51:41','2021-04-23 06:51:41','adda57d3-d968-47ac-84a4-d0048cc6f4f1','Subscribe to aged care sector announcements','https://www.health.gov.au/using-our-websites/subscriptions/subscribe-to-aged-care-sector-announcements-and-newsletters',1,'link'),(35596,152625,1,'2021-04-23 06:51:41','2021-04-23 06:51:41','7a3747d0-86f5-468e-a02f-27f27330b2c9','Leading Age Services Australia','https://lasa.asn.au/covid-19',1,'link'),(35597,152626,1,'2021-04-23 06:51:41','2021-04-23 06:51:41','c07d8996-b47b-4470-a6c1-4c550753fcc2','Aged and Community Services Australia','https://www.acsa.asn.au/Home/Aged-Care-Emergency-Planning/Coronavirus',1,'link'),(35598,152629,1,'2021-04-23 06:51:45','2021-04-23 06:51:45','6fa2db76-287f-46c6-9c0d-72a57c6d9241','More information','http://health.gov.au/covid19-vaccines',1,'solid'),(35599,152631,1,'2021-04-23 06:51:45','2021-04-23 06:51:45','5fd6b0a7-ea4f-4297-84ef-8abf692afd6e','Vaccine questions answered','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/is-it-true',1,'link'),(35600,152632,1,'2021-04-23 06:51:45','2021-04-23 06:51:45','b4c4a040-e637-4888-94e2-e9c9086a88d7','Information for workers in RACFs','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/information-for-aged-care-workers-about-covid-19-vaccines',1,'link'),(35601,152633,1,'2021-04-23 06:51:45','2021-04-23 06:51:45','ed2c7ee2-9446-438a-9b0b-90de5397d09b','Information for residents in RACFs','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/covid-19-vaccine-information-for-aged-care-residents-and-people-receiving-in-home-aged-care',1,'link'),(35602,152635,1,'2021-04-23 06:51:45','2021-04-23 06:51:45','a25c47dc-f955-4e96-85e4-3acf0dd97ca8','Aged care vaccine readiness toolkit','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-aged-care-readiness-toolkit',1,'link'),(35603,152636,1,'2021-04-23 06:51:45','2021-04-23 06:51:45','cd0594e3-a32b-4804-b56e-dbe56846d1b1','Consent form for COVID-19 vaccination','https://www.health.gov.au/resources/publications/covid-19-vaccination-consent-form-for-covid-19-vaccination?utm_source=GP+List+DD+and+WM_Current&utm_campaign=adb48e0824-EMAIL_CAMPAIGN_2018_07_27_02_23_COPY_01&utm_medium=email&utm_term=0_4698ba36cb-adb48e0',1,'link'),(35604,152637,1,'2021-04-23 06:51:45','2021-04-23 06:51:45','79741d17-9e87-4182-8c5a-a9e7b45fc618','Department of Health information and resources','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-for-aged-care-providers-and-workers',1,'link'),(35605,152639,1,'2021-04-23 06:51:45','2021-04-23 06:51:45','5918f783-2c4e-46e6-b367-a4865672886e','ATAGI: Advice on the relative timing of administering influenza and COVID-19 vaccines in 2021','https://www.health.gov.au/resources/publications/covid-19-vaccination-atagi-advice-on-influenza-and-covid-19-vaccines',1,'outline'),(35606,152640,1,'2021-04-23 06:51:45','2021-04-23 06:51:45','3b7e9437-8baa-4886-9f95-dc66bb990570','AHPPC: Statement on COVID-19 and influenza vaccination requirements for aged care workers','https://www.health.gov.au/news/australian-health-protection-principal-committee-ahppc-statement-on-covid-19-and-influenza-vaccination-requirements-for-aged-care-workers',1,'outline'),(35607,152642,1,'2021-04-23 06:51:45','2021-04-23 06:51:45','48c7bfcc-4276-4213-bd75-1b69673ae163','Part 1: Preparing for the vaccine rollout in Brisbane North RACFs','https://www.youtube.com/watch?v=3BNaB811O_k',1,'solid'),(35608,152643,1,'2021-04-23 06:51:45','2021-04-23 06:51:45','9a920169-414a-4543-8ae7-9c155e5f11db','Part 2: Preparing for the vaccine rollout in Brisbane North RACFs','https://youtu.be/AATe_vJ3c3w',1,'solid'),(35609,152648,1,'2021-04-23 06:51:45','2021-04-23 06:51:45','3d374e92-dd45-4d70-93e7-0ca98feecad9','Aged care resources on the DoH website','https://www.health.gov.au/resources/collections/coronavirus-covid-19-resources-for-health-professionals-including-aged-care-providers-pathology-providers-and-health-care-managers#health-and-aged-care-workers',1,'link'),(35610,152649,1,'2021-04-23 06:51:45','2021-04-23 06:51:45','75551e5c-8978-4041-a01b-33d9489e286c','Subscribe to aged care sector announcements','https://www.health.gov.au/using-our-websites/subscriptions/subscribe-to-aged-care-sector-announcements-and-newsletters',1,'link'),(35611,152650,1,'2021-04-23 06:51:45','2021-04-23 06:51:45','8da71a94-d0bd-4930-84f2-3c07c418ee00','Leading Age Services Australia','https://lasa.asn.au/covid-19',1,'link'),(35612,152651,1,'2021-04-23 06:51:45','2021-04-23 06:51:45','9d8c4b47-52c6-4d47-83e7-7c926352d5f0','Aged and Community Services Australia','https://www.acsa.asn.au/Home/Aged-Care-Emergency-Planning/Coronavirus',1,'link'),(35613,152655,1,'2021-04-23 06:51:46','2021-04-23 06:51:46','aa127b87-c605-4a88-a08b-58df8083e7f1','More information','http://health.gov.au/covid19-vaccines',1,'solid'),(35614,152657,1,'2021-04-23 06:51:46','2021-04-23 06:51:46','0b010eff-9a05-4834-9e09-d989779ba676','Vaccine questions answered','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/is-it-true',1,'link'),(35615,152658,1,'2021-04-23 06:51:46','2021-04-23 06:51:46','36ebdb69-a72b-4de8-a108-b8786da2e55c','Information for workers in RACFs','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/information-for-aged-care-workers-about-covid-19-vaccines',1,'link'),(35616,152659,1,'2021-04-23 06:51:46','2021-04-23 06:51:46','508ddf1c-9e6f-4777-95ec-dea1e5186482','Information for residents in RACFs','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/covid-19-vaccine-information-for-aged-care-residents-and-people-receiving-in-home-aged-care',1,'link'),(35617,152661,1,'2021-04-23 06:51:46','2021-04-23 06:51:46','0b8d2b9e-c0de-4fec-b9d0-b45d6a5ac412','Aged care vaccine readiness toolkit','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-aged-care-readiness-toolkit',1,'link'),(35618,152662,1,'2021-04-23 06:51:46','2021-04-23 06:51:46','f80b2b78-e677-41db-81ea-6bfb2346adca','Consent form for COVID-19 vaccination','https://www.health.gov.au/resources/publications/covid-19-vaccination-consent-form-for-covid-19-vaccination?utm_source=GP+List+DD+and+WM_Current&utm_campaign=adb48e0824-EMAIL_CAMPAIGN_2018_07_27_02_23_COPY_01&utm_medium=email&utm_term=0_4698ba36cb-adb48e0',1,'link'),(35619,152663,1,'2021-04-23 06:51:46','2021-04-23 06:51:46','f09aedbf-e059-4bda-91e6-48a10ea8de4c','Department of Health information and resources','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-for-aged-care-providers-and-workers',1,'link'),(35620,152665,1,'2021-04-23 06:51:46','2021-04-23 06:51:46','57dd6cd7-64f8-4e09-85ed-b28b0f1a5e4e','ATAGI: Advice on the relative timing of administering influenza and COVID-19 vaccines in 2021','https://www.health.gov.au/resources/publications/covid-19-vaccination-atagi-advice-on-influenza-and-covid-19-vaccines',1,'outline'),(35621,152666,1,'2021-04-23 06:51:46','2021-04-23 06:51:46','bc4e8fce-3abf-4a1e-a0ed-00b34b0d7e4f','AHPPC: Statement on COVID-19 and influenza vaccination requirements for aged care workers','https://www.health.gov.au/news/australian-health-protection-principal-committee-ahppc-statement-on-covid-19-and-influenza-vaccination-requirements-for-aged-care-workers',1,'outline'),(35622,152668,1,'2021-04-23 06:51:46','2021-04-23 06:51:46','c0773f1b-ab56-4fa0-9f60-4b178ed8ad2a','Part 1: Preparing for the vaccine rollout in Brisbane North RACFs','https://www.youtube.com/watch?v=3BNaB811O_k',1,'solid'),(35623,152669,1,'2021-04-23 06:51:46','2021-04-23 06:51:46','4d1dda53-1c45-425c-8f88-3f108a1ad38e','Part 2: Preparing for the vaccine rollout in Brisbane North RACFs','https://youtu.be/AATe_vJ3c3w',1,'solid'),(35624,152674,1,'2021-04-23 06:51:46','2021-04-23 06:51:46','b059c227-17aa-4bd4-90b8-b81a8eb42a05','Aged care resources on the DoH website','https://www.health.gov.au/resources/collections/coronavirus-covid-19-resources-for-health-professionals-including-aged-care-providers-pathology-providers-and-health-care-managers#health-and-aged-care-workers',1,'link'),(35625,152675,1,'2021-04-23 06:51:46','2021-04-23 06:51:46','66da90a1-2887-4833-8757-0f5aa3cf3130','Subscribe to aged care sector announcements','https://www.health.gov.au/using-our-websites/subscriptions/subscribe-to-aged-care-sector-announcements-and-newsletters',1,'link'),(35626,152676,1,'2021-04-23 06:51:46','2021-04-23 06:51:46','133f7af1-3879-4dd7-8e91-5fd8bb2a4954','Leading Age Services Australia','https://lasa.asn.au/covid-19',1,'link'),(35627,152677,1,'2021-04-23 06:51:46','2021-04-23 06:51:46','7fea14fe-528e-4b31-b1c1-61a1329682ea','Aged and Community Services Australia','https://www.acsa.asn.au/Home/Aged-Care-Emergency-Planning/Coronavirus',1,'link'),(35628,152681,1,'2021-04-23 06:51:51','2021-04-23 06:51:51','a5263f4c-05d8-4e51-bcab-73cc5abdd0e9','More information','http://health.gov.au/covid19-vaccines',1,'solid'),(35629,152683,1,'2021-04-23 06:51:51','2021-04-23 06:51:51','fc36b07f-54d8-4e79-8e5b-e01a2d00caf9','Vaccine questions answered','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/is-it-true',1,'link'),(35630,152684,1,'2021-04-23 06:51:51','2021-04-23 06:51:51','d495e425-77f4-4f01-b31f-14c8e673c979','Information for workers in RACFs','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/information-for-aged-care-workers-about-covid-19-vaccines',1,'link'),(35631,152685,1,'2021-04-23 06:51:51','2021-04-23 06:51:51','7ba9a4c6-8bcd-46c1-8435-af7daf4569d7','Information for residents in RACFs','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/covid-19-vaccine-information-for-aged-care-residents-and-people-receiving-in-home-aged-care',1,'link'),(35632,152687,1,'2021-04-23 06:51:51','2021-04-23 06:51:51','9efc9ba1-ed74-4078-92be-57ebe0fc445c','Aged care vaccine readiness toolkit','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-aged-care-readiness-toolkit',1,'link'),(35633,152688,1,'2021-04-23 06:51:51','2021-04-23 06:51:51','28d93839-d2e2-4bb8-925b-d31217fe3132','Consent form for COVID-19 vaccination','https://www.health.gov.au/resources/publications/covid-19-vaccination-consent-form-for-covid-19-vaccination?utm_source=GP+List+DD+and+WM_Current&utm_campaign=adb48e0824-EMAIL_CAMPAIGN_2018_07_27_02_23_COPY_01&utm_medium=email&utm_term=0_4698ba36cb-adb48e0',1,'link'),(35634,152689,1,'2021-04-23 06:51:51','2021-04-23 06:51:51','e7c3bad0-6b50-41c4-a5a6-cda55ed490c3','Department of Health information and resources','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-for-aged-care-providers-and-workers',1,'link'),(35635,152691,1,'2021-04-23 06:51:51','2021-04-23 06:51:51','49a08fdf-2ce4-4b22-9fe0-3277c88ffd6e','ATAGI: Advice on the relative timing of administering influenza and COVID-19 vaccines in 2021','https://www.health.gov.au/resources/publications/covid-19-vaccination-atagi-advice-on-influenza-and-covid-19-vaccines',1,'outline'),(35636,152692,1,'2021-04-23 06:51:51','2021-04-23 06:51:51','47092893-51bf-46e2-8ab3-d4cffefc6ea7','AHPPC: Statement on COVID-19 and influenza vaccination requirements for aged care workers','https://www.health.gov.au/news/australian-health-protection-principal-committee-ahppc-statement-on-covid-19-and-influenza-vaccination-requirements-for-aged-care-workers',1,'outline'),(35637,152694,1,'2021-04-23 06:51:51','2021-04-23 06:51:51','589a663c-7a98-4e84-a9c2-6c5c26e6bd34','Part 1: Preparing for the vaccine rollout in Brisbane North RACFs','https://www.youtube.com/watch?v=3BNaB811O_k',1,'solid'),(35638,152695,1,'2021-04-23 06:51:51','2021-04-23 06:51:51','28502ab9-7693-4515-855b-6658940dba89','Part 2: Preparing for the vaccine rollout in Brisbane North RACFs','https://youtu.be/AATe_vJ3c3w',1,'solid'),(35639,152700,1,'2021-04-23 06:51:51','2021-04-23 06:51:51','f2135c7b-b071-4990-beaf-3367f589c299','Aged care resources on the DoH website','https://www.health.gov.au/resources/collections/coronavirus-covid-19-resources-for-health-professionals-including-aged-care-providers-pathology-providers-and-health-care-managers#health-and-aged-care-workers',1,'link'),(35640,152701,1,'2021-04-23 06:51:51','2021-04-23 06:51:51','36d5fbde-a343-43a5-b919-61cdcc29c1d0','Subscribe to aged care sector announcements','https://www.health.gov.au/using-our-websites/subscriptions/subscribe-to-aged-care-sector-announcements-and-newsletters',1,'link'),(35641,152702,1,'2021-04-23 06:51:51','2021-04-23 06:51:51','24ae05c5-ff30-48b2-9c54-8f9c9f9880a6','Leading Age Services Australia','https://lasa.asn.au/covid-19',1,'link'),(35642,152703,1,'2021-04-23 06:51:51','2021-04-23 06:51:51','aa7434d8-606e-4787-b68d-92a22ae06a23','Aged and Community Services Australia','https://www.acsa.asn.au/Home/Aged-Care-Emergency-Planning/Coronavirus',1,'link'),(35643,152705,1,'2021-04-23 22:47:55','2021-04-23 22:47:55','71189d42-4ebe-4d3e-84ae-5271cfb8b8d9','24 April','https://icampaign.brightlabs.com.au/v/9655/1735694709/email.html?k=T765D-g3I3xwquDMKWDt0b1lr9SnufuSbrSQVvGq9pU',1,'solid'),(35644,152709,1,'2021-04-23 22:47:55','2021-04-23 22:47:55','cde1ce2f-01f9-49a2-a555-701c321cbf5c','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(35645,152713,1,'2021-04-23 22:47:55','2021-04-23 22:47:55','9d949ae0-12d3-42e7-a84e-ec38c4444163','For GPs',NULL,1,'outline'),(35646,152714,1,'2021-04-23 22:47:55','2021-04-23 22:47:55','a9323e45-1069-428c-a430-11d52e712955','For RACFs',NULL,1,'outline'),(35647,152715,1,'2021-04-23 22:47:55','2021-04-23 22:47:55','343d6664-0508-477d-8c28-66c622258c27','For community',NULL,1,'outline'),(35648,152718,1,'2021-04-23 22:47:55','2021-04-23 22:47:55','7f4a11d6-bc07-4692-9b0d-5b2b0c4e128f','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(35649,152721,1,'2021-04-23 22:47:55','2021-04-23 22:47:55','0031fd28-9481-4d4e-9bde-973dcd2e5e16','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(35650,152723,1,'2021-04-23 22:47:55','2021-04-23 22:47:55','687d26b7-2367-41dc-bdfc-99b69e4687d2','24 April','https://icampaign.brightlabs.com.au/v/9655/1735694709/email.html?k=T765D-g3I3xwquDMKWDt0b1lr9SnufuSbrSQVvGq9pU',1,'solid'),(35651,152724,1,'2021-04-23 22:47:55','2021-04-23 22:47:55','329d2914-5ff8-4f73-95d1-37770466ce3a','11 April','https://icampaign.brightlabs.com.au/v/9655/1735688107/email.html?k=0zbLWXL9p5GnYnEkBtLJQ-6_Jeo-PoOc5e4Ixb3AOe0',1,'solid'),(35652,152725,1,'2021-04-23 22:47:55','2021-04-23 22:47:55','7f938272-bb9c-4ecb-839f-4ce65fc3f27a','9 April','https://icampaign.brightlabs.com.au/v/9655/1735686917/email.html?k=wWvhac5K_2ThrjHnqFX8KD-Iowxb8LaMjuY8biU2nQw',1,'solid'),(35653,152726,1,'2021-04-23 22:47:55','2021-04-23 22:47:55','2759f38e-b2cc-48aa-90a9-f9d9fa47a1cb','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(35654,152727,1,'2021-04-23 22:47:55','2021-04-23 22:47:55','0c374146-880a-4d6b-b10a-00f54b6b318a','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(35655,152728,1,'2021-04-23 22:47:55','2021-04-23 22:47:55','f82faa99-24e5-400a-90f6-b97b5265f185','15 March','https://icampaign.brightlabs.com.au/v/9655/1735670870/email.html?k=v6G-8gVJ_rvtwoUd2fpEBZ1ZIi86nI02To7omwA0FiU',1,'solid'),(35656,152729,1,'2021-04-23 22:47:55','2021-04-23 22:47:55','36c8e73c-5669-4f29-bcbe-5fb2b37fa332','1 March','https://icampaign.brightlabs.com.au/v/9655/1735665136/email.html?k=W4xOP02DyXw184GaxNI6k7EVQ0egPoLmOBx9MgO143c',1,'solid'),(35657,152731,1,'2021-04-23 22:47:55','2021-04-23 22:47:55','2f4ca682-6417-49fc-af13-7248c84b69aa','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(35658,152732,1,'2021-04-23 22:47:55','2021-04-23 22:47:55','c830deb6-292c-4b21-b8d3-2ab20c40fdcd','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(35659,152733,1,'2021-04-23 22:47:55','2021-04-23 22:47:55','51f1fe2e-567c-4df1-b7b0-1966fdd540d3','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(35660,152736,1,'2021-04-23 22:47:55','2021-04-23 22:47:55','29acb119-9c1a-4cf0-8c93-b7305dfcdb9a','Department of Health','https://www.health.gov.au/',1,'outline'),(35661,152737,1,'2021-04-23 22:47:55','2021-04-23 22:47:55','66bbf917-a650-48fd-a06c-ee20ef6c943e','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(35662,152738,1,'2021-04-23 22:47:55','2021-04-23 22:47:55','5a2924f5-78d2-4aa1-bcac-661c4d76e3e4','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(35663,152788,1,'2021-04-27 03:55:07','2021-04-27 03:55:22','c9ff1266-51b7-4810-ad7a-2ee4f8cfb1b4','More information',NULL,1,'solid'),(35664,152794,1,'2021-04-27 03:55:07','2021-04-27 03:55:22','42ba2657-3b3d-478d-b023-740ca36ad55a','Stepped care fact sheet','https://d1jydvs1x4rbvt.cloudfront.net/downloads/WEB_MHAOD_stepped-care-factsheet.pdf?mtime=20200303105138&focal=none',1,'link'),(35665,152796,1,'2021-04-27 03:55:07','2021-04-27 03:55:22','4d52dd09-13ea-4d74-ad8a-3b29cf13cf3b','Download the Initial Assessment and Referral guidance','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/National-MH-IAR-Guidance-17Dec2019_V1.03-Accessible.pdf?mtime=20200707192013&focal=none',1,'link'),(35666,152799,1,'2021-04-27 03:55:07','2021-04-27 03:55:22','9e5f195a-7e03-4469-9173-9308f3dc72eb','Read Recovery',NULL,1,'link'),(35667,152800,1,'2021-04-27 03:55:07','2021-04-27 03:55:22','c619db65-bb5e-44d1-b33a-9723e35063fd','Subscribe to Recovery',NULL,1,'link'),(35668,152801,1,'2021-04-27 03:55:08','2021-04-27 03:55:08','e4414f68-8844-4062-af65-7a271825a174',NULL,'http://Download the Initial Assessment and Referral snapshot',0,'solid'),(35669,152802,1,'2021-04-27 03:55:22','2021-04-27 03:55:22','96e5f29a-1156-41d7-8f87-ad40ca952d7a',NULL,'http://Download the Initial Assessment and Referral snapshot',0,'solid'),(35670,152809,1,'2021-04-27 04:01:03','2021-04-27 04:02:07','221e64eb-26df-4d09-93f8-e61416b9d920','More information',NULL,1,'solid'),(35671,152815,1,'2021-04-27 04:01:03','2021-04-27 04:02:07','a6d2665e-0c4e-4bbd-a59b-5fd515cf4d39','Stepped care fact sheet','https://d1jydvs1x4rbvt.cloudfront.net/downloads/WEB_MHAOD_stepped-care-factsheet.pdf?mtime=20200303105138&focal=none',1,'link'),(35672,152817,1,'2021-04-27 04:01:03','2021-04-27 04:02:07','978d12a8-d12e-4822-8843-42876b8ff291','Download Initial Assessment and Referral guidance','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/National-MH-IAR-Guidance-17Dec2019_V1.03-Accessible.pdf?mtime=20200707192013&focal=none',1,'link'),(35673,152820,1,'2021-04-27 04:01:03','2021-04-27 04:02:07','5c4273e0-8a5e-404f-9f26-65f5783da89f','Read Recovery',NULL,1,'link'),(35674,152821,1,'2021-04-27 04:01:03','2021-04-27 04:02:07','9abc873c-e73f-476d-bc72-74134cf12dcb','Subscribe to Recovery',NULL,1,'link'),(35675,152822,1,'2021-04-27 04:01:03','2021-04-27 04:01:03','71ac39c5-64e7-413b-baad-f5860ca22af7','Download the Initial Assessment and Referral snapshot','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/PHN-IAR-Snapshot-Final.pdf?mtime=20210427135918&focal=none',0,'solid'),(35676,152823,1,'2021-04-27 04:01:20','2021-04-27 04:01:20','a712c6eb-074c-49ef-bdc4-c9ecec7ff21e','Download the Initial Assessment and Referral snapshot','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/PHN-IAR-Snapshot-Final.pdf?mtime=20210427135918&focal=none',0,'solid'),(35677,152824,1,'2021-04-27 04:01:39','2021-04-27 04:01:39','9e499190-a70f-4e11-8634-496c2fa5c606','Download the Initial Assessment and Referral snapshot','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/PHN-IAR-Snapshot-Final.pdf?mtime=20210427135918&focal=none',0,'solid'),(35678,152825,1,'2021-04-27 04:02:02','2021-04-27 04:02:02','976c1263-100f-470a-b25d-0b1911e9e4b3','Download the Initial Assessment and Referral snapshot','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/PHN-IAR-Snapshot-Final.pdf?mtime=20210427135918&focal=none',0,'solid'),(35679,152826,1,'2021-04-27 04:02:05','2021-04-27 04:02:05','25190ee8-4392-45aa-953c-6bf58ef63178','Download the Initial Assessment and Referral snapshot','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/PHN-IAR-Snapshot-Final.pdf?mtime=20210427135918&focal=none',0,'link'),(35680,152827,1,'2021-04-27 04:02:07','2021-04-27 04:02:07','c728d220-fc3d-47ea-8680-85aec6c8b1b6','Download the Initial Assessment and Referral snapshot','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/PHN-IAR-Snapshot-Final.pdf?mtime=20210427135918&focal=none',1,'link'),(35681,152832,1,'2021-04-27 04:02:48','2021-04-27 04:02:48','a16f0e41-7ebb-477b-87d2-f4917e69ca87','More information',NULL,1,'solid'),(35682,152838,1,'2021-04-27 04:02:48','2021-04-27 04:02:48','f52d3f67-6d4a-4880-aac3-a6ee902c4967','Stepped care fact sheet','https://d1jydvs1x4rbvt.cloudfront.net/downloads/WEB_MHAOD_stepped-care-factsheet.pdf?mtime=20200303105138&focal=none',1,'link'),(35683,152840,1,'2021-04-27 04:02:48','2021-04-27 04:02:48','085f90a0-7bef-4850-8ec2-1aeba3fe46f1','Download Initial Assessment and Referral guidance','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/National-MH-IAR-Guidance-17Dec2019_V1.03-Accessible.pdf?mtime=20200707192013&focal=none',1,'link'),(35684,152841,1,'2021-04-27 04:02:48','2021-04-27 04:02:48','6f0772b6-61d3-44c1-b8b2-9840d57831e6','Download the Initial Assessment and Referral snapshot','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/PHN-IAR-Snapshot-Final.pdf?mtime=20210427135918&focal=none',1,'link'),(35685,152844,1,'2021-04-27 04:02:48','2021-04-27 04:02:48','910f6bc1-60d8-4523-aaf0-a62cc04813c9','Read Recovery',NULL,1,'link'),(35686,152845,1,'2021-04-27 04:02:48','2021-04-27 04:02:48','991211e9-7484-4a65-b5d2-3389a08fc0d3','Subscribe to Recovery',NULL,1,'link'),(35687,152851,1,'2021-04-27 04:02:49','2021-04-27 04:02:49','d8660278-0c3c-4413-aaa4-54400103c840','More information',NULL,1,'solid'),(35688,152857,1,'2021-04-27 04:02:49','2021-04-27 04:02:49','afc06d72-08ac-44c5-9e98-d7146d9f60d1','Stepped care fact sheet','https://d1jydvs1x4rbvt.cloudfront.net/downloads/WEB_MHAOD_stepped-care-factsheet.pdf?mtime=20200303105138&focal=none',1,'link'),(35689,152859,1,'2021-04-27 04:02:49','2021-04-27 04:02:49','a0cfa900-0754-428e-960d-13f58a240e33','Download Initial Assessment and Referral guidance','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/National-MH-IAR-Guidance-17Dec2019_V1.03-Accessible.pdf?mtime=20200707192013&focal=none',1,'link'),(35690,152860,1,'2021-04-27 04:02:49','2021-04-27 04:02:49','ea7cdf0d-ddb6-4663-b34d-c1e70b37b23d','Download the Initial Assessment and Referral snapshot','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/PHN-IAR-Snapshot-Final.pdf?mtime=20210427135918&focal=none',1,'link'),(35691,152863,1,'2021-04-27 04:02:49','2021-04-27 04:02:49','c6b45f2b-5fd7-4f95-96c0-bafd044f9d25','Read Recovery',NULL,1,'link'),(35692,152864,1,'2021-04-27 04:02:49','2021-04-27 04:02:49','166310fd-3b10-4ee7-9566-70f4dd569e8a','Subscribe to Recovery',NULL,1,'link'),(35693,152870,1,'2021-04-27 04:04:43','2021-04-27 04:10:32','1a0eb737-af83-464b-bfeb-cda03d517487','More information',NULL,1,'solid'),(35694,152876,1,'2021-04-27 04:04:43','2021-04-27 04:10:32','0db10a20-22f3-49dc-96ea-d3255f393032','Stepped care fact sheet','https://d1jydvs1x4rbvt.cloudfront.net/downloads/WEB_MHAOD_stepped-care-factsheet.pdf?mtime=20200303105138&focal=none',1,'link'),(35695,152878,1,'2021-04-27 04:04:43','2021-04-27 04:10:32','f1d76301-5b08-4a73-8a6f-71f1e4c9fac9','Initial Assessment and Referral guidance','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/National-MH-IAR-Guidance-17Dec2019_V1.03-Accessible.pdf?mtime=20200707192013&focal=none',1,'link'),(35696,152879,1,'2021-04-27 04:04:43','2021-04-27 04:10:32','ae5508bf-e03f-473c-a746-c3ea6e068879','Initial Assessment and Referral snapshot','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/PHN-IAR-Snapshot-Final.pdf?mtime=20210427135918&focal=none',1,'link'),(35697,152882,1,'2021-04-27 04:04:43','2021-04-27 04:10:32','37a40d03-f0bb-4f97-8add-aae432f3cb66','Read Recovery',NULL,1,'link'),(35698,152883,1,'2021-04-27 04:04:43','2021-04-27 04:10:32','e9645de9-eef7-489e-afb8-f43f596dcee8','Subscribe to Recovery',NULL,1,'link'),(35699,152889,1,'2021-04-27 04:43:50','2021-04-27 04:50:16','f0b4c851-6fe2-4f58-9d2e-642b755b6837','More information',NULL,1,'solid'),(35700,152895,1,'2021-04-27 04:43:50','2021-04-27 04:50:16','845703eb-37a0-4747-8431-9617e540b38a','Stepped care fact sheet','https://d1jydvs1x4rbvt.cloudfront.net/downloads/WEB_MHAOD_stepped-care-factsheet.pdf?mtime=20200303105138&focal=none',1,'link'),(35701,152897,1,'2021-04-27 04:43:50','2021-04-27 04:50:16','e2adb7fe-5552-4163-8a06-2bd240797329','Download the guidance document','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/National-MH-IAR-Guidance-17Dec2019_V1.03-Accessible.pdf?mtime=20200707192013&focal=none',1,'link'),(35702,152898,1,'2021-04-27 04:43:50','2021-04-27 04:50:16','9af512dd-1fff-4a37-9fef-c08df871ea18','Download the snapshot','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/PHN-IAR-Snapshot-Final.pdf?mtime=20210427135918&focal=none',1,'link'),(35703,152901,1,'2021-04-27 04:43:50','2021-04-27 04:50:16','638067ad-f55b-4ee3-9b8b-c86e965058ed','Read Recovery',NULL,1,'link'),(35704,152902,1,'2021-04-27 04:43:50','2021-04-27 04:50:16','80a4ecb0-37b0-499e-96f1-2dd393af4287','Subscribe to Recovery',NULL,1,'link'),(35705,152903,1,'2021-04-27 04:44:20','2021-04-27 04:44:20','9f92446b-c123-48cc-bc3c-606ecee81ab2',NULL,NULL,0,'solid'),(35706,152904,1,'2021-04-27 04:44:23','2021-04-27 04:44:23','2dceae3a-31bb-4417-884f-33a689280561',NULL,'https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/PHN-IAR-Snapshot-Final.pdf?mtime=20210427135918&focal=none',0,'solid'),(35707,152905,1,'2021-04-27 04:44:32','2021-04-27 04:44:32','d37b5a91-57cf-4e5b-8459-9f8af92d5e9f','Download the Initial Assessment and Referral snapshot','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/PHN-IAR-Snapshot-Final.pdf?mtime=20210427135918&focal=none',0,'solid'),(35708,152906,1,'2021-04-27 04:44:48','2021-04-27 04:44:48','128c4369-5b4c-4c3f-a7b4-b4a18b7b97ad','Download the Initial Assessment and Referral snapshot','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/PHN-IAR-Snapshot-Final.pdf?mtime=20210427135918&focal=none',0,'link'),(35709,152907,1,'2021-04-27 04:45:00','2021-04-27 04:45:00','b5df054c-8ccb-4eee-8d1f-e7523c67ab55','Download the Initial Assessment and Referral snapshot','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/PHN-IAR-Snapshot-Final.pdf?mtime=20210427135918&focal=none',0,'link'),(35710,152908,1,'2021-04-27 04:45:10','2021-04-27 04:45:10','cabcb641-e444-4340-b7d5-d4b389520eca','Download the Initial Assessment and Referral snapshot','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/National-MH-IAR-Guidance-17Dec2019_V1.03-Accessible.pdf?mtime=20200707192013&focal=none',0,'link'),(35711,152909,1,'2021-04-27 04:45:15','2021-04-27 04:45:15','789da681-aee6-4dfe-9c73-f6203bbec821','Download Initial Assessment and Referral guidance','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/National-MH-IAR-Guidance-17Dec2019_V1.03-Accessible.pdf?mtime=20200707192013&focal=none',0,'link'),(35712,152910,1,'2021-04-27 04:45:25','2021-04-27 04:45:25','13b496cc-376b-4456-819e-748c3b0dc480','Download Initial Assessment and Referral guidance','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/National-MH-IAR-Guidance-17Dec2019_V1.03-Accessible.pdf?mtime=20200707192013&focal=none',0,'link'),(35713,152911,1,'2021-04-27 04:45:44','2021-04-27 04:45:44','61b19435-f67f-4e47-8214-04edf03e446a','Download Initial Assessment and Referral guidance','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/National-MH-IAR-Guidance-17Dec2019_V1.03-Accessible.pdf?mtime=20200707192013&focal=none',0,'link'),(35714,152912,1,'2021-04-27 04:46:15','2021-04-27 04:46:15','525beffa-a3cc-4323-8ec0-aef33251a9a0','Download Initial Assessment and Referral guidance','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/National-MH-IAR-Guidance-17Dec2019_V1.03-Accessible.pdf?mtime=20200707192013&focal=none',0,'link'),(35715,152913,1,'2021-04-27 04:46:34','2021-04-27 04:46:34','04fdd4de-5f1c-43fc-8b63-d0d7796d5190','Download Initial Assessment and Referral guidance','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/National-MH-IAR-Guidance-17Dec2019_V1.03-Accessible.pdf?mtime=20200707192013&focal=none',0,'link'),(35716,152914,1,'2021-04-27 04:46:45','2021-04-27 04:46:45','e1942729-3895-43f7-ac14-ae90f81fd6db','Download Initial Assessment and Referral guidance','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/National-MH-IAR-Guidance-17Dec2019_V1.03-Accessible.pdf?mtime=20200707192013&focal=none',0,'link'),(35717,152915,1,'2021-04-27 04:46:50','2021-04-27 04:46:50','c59c6363-0832-4750-9dab-c71420aa4b25','Download Initial Assessment and Referral guidance','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/National-MH-IAR-Guidance-17Dec2019_V1.03-Accessible.pdf?mtime=20200707192013&focal=none',0,'link'),(35718,152918,1,'2021-04-27 04:47:24','2021-04-27 04:47:24','ad00bc28-4846-40e9-8adf-e1f9853752e5',NULL,NULL,0,'solid'),(35719,152920,1,'2021-04-27 04:47:31','2021-04-27 04:47:31','dbe16cda-a9e7-4c00-a931-4a3bf5e00180',NULL,'https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/PHN-IAR-Snapshot-Final.pdf?mtime=20210427135918&focal=none',0,'solid'),(35720,152922,1,'2021-04-27 04:47:36','2021-04-27 04:47:36','d3c894bd-4577-4c4f-8681-60411cbac8bb','Download the snapshot','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/PHN-IAR-Snapshot-Final.pdf?mtime=20210427135918&focal=none',0,'solid'),(35721,152924,1,'2021-04-27 04:47:49','2021-04-27 04:47:49','437548ac-9356-417e-88bb-e7d50b61d269','Download the snapshot','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/PHN-IAR-Snapshot-Final.pdf?mtime=20210427135918&focal=none',0,'link'),(35722,152926,1,'2021-04-27 04:47:50','2021-04-27 04:47:50','27af6867-c3cc-499c-9898-1742e079e7cc','Download the snapshot','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/PHN-IAR-Snapshot-Final.pdf?mtime=20210427135918&focal=none',1,'link'),(35723,152931,1,'2021-04-27 04:50:28','2021-04-27 04:50:28','02df0b82-9280-4f6f-818a-9082f5046588','More information',NULL,1,'solid'),(35724,152937,1,'2021-04-27 04:50:28','2021-04-27 04:50:28','a6033b43-e722-40fb-b683-75650f51a38a','Stepped care fact sheet','https://d1jydvs1x4rbvt.cloudfront.net/downloads/WEB_MHAOD_stepped-care-factsheet.pdf?mtime=20200303105138&focal=none',1,'link'),(35725,152939,1,'2021-04-27 04:50:28','2021-04-27 04:56:29','fa298e1a-448c-4bf9-a456-df3d499d6b56','Download the guidance document','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/National-MH-IAR-Guidance-17Dec2019_V1.03-Accessible.pdf?mtime=20200707192013&focal=none',1,'link'),(35726,152940,1,'2021-04-27 04:50:28','2021-04-27 04:56:29','1a01b1b0-c75d-451a-90c4-e60aa8788235','Download the snapshot','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/PHN-IAR-Snapshot-Final.pdf?mtime=20210427135918&focal=none',1,'link'),(35727,152943,1,'2021-04-27 04:50:28','2021-04-27 04:50:28','8aba6b9c-7a2f-436d-a2a8-91a8b7e459a8','Read Recovery',NULL,1,'link'),(35728,152944,1,'2021-04-27 04:50:28','2021-04-27 04:50:28','07232e51-1039-4226-9d01-90c43a360f62','Subscribe to Recovery',NULL,1,'link'),(35729,152950,1,'2021-04-27 04:50:29','2021-04-27 04:50:29','dc4a09fa-2170-4312-8933-bda3dda6ad57','More information',NULL,1,'solid'),(35730,152956,1,'2021-04-27 04:50:29','2021-04-27 04:50:29','7a406d5b-5ca2-4cd9-8e35-1398bd11e5bd','Stepped care fact sheet','https://d1jydvs1x4rbvt.cloudfront.net/downloads/WEB_MHAOD_stepped-care-factsheet.pdf?mtime=20200303105138&focal=none',1,'link'),(35731,152958,1,'2021-04-27 04:50:29','2021-04-27 04:50:29','ae6a4372-46ff-4c1b-9f50-f302ac5f909c','Download the guidance document','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/National-MH-IAR-Guidance-17Dec2019_V1.03-Accessible.pdf?mtime=20200707192013&focal=none',1,'link'),(35732,152959,1,'2021-04-27 04:50:29','2021-04-27 04:50:29','548dce70-7047-4226-bee4-a1340222484f','Download the snapshot','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/PHN-IAR-Snapshot-Final.pdf?mtime=20210427135918&focal=none',1,'link'),(35733,152962,1,'2021-04-27 04:50:29','2021-04-27 04:50:29','4ba8f22d-39d9-49c1-a6ea-decffeddcf38','Read Recovery',NULL,1,'link'),(35734,152963,1,'2021-04-27 04:50:29','2021-04-27 04:50:29','b33584e1-fa02-470b-b687-723db726a668','Subscribe to Recovery',NULL,1,'link'),(35735,152969,1,'2021-04-27 04:50:35','2021-04-27 04:50:35','e6806250-81ff-4158-9b6f-f6a32ae5b69f','More information',NULL,1,'solid'),(35736,152975,1,'2021-04-27 04:50:35','2021-04-27 04:50:35','35004f90-6c47-4957-8c27-76c765ee53fb','Stepped care fact sheet','https://d1jydvs1x4rbvt.cloudfront.net/downloads/WEB_MHAOD_stepped-care-factsheet.pdf?mtime=20200303105138&focal=none',1,'link'),(35737,152977,1,'2021-04-27 04:50:35','2021-04-27 04:50:35','746f0fbf-7905-4904-86d8-61c5d28cf86d','Download the guidance document','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/National-MH-IAR-Guidance-17Dec2019_V1.03-Accessible.pdf?mtime=20200707192013&focal=none',1,'link'),(35738,152978,1,'2021-04-27 04:50:35','2021-04-27 04:50:35','c5f64710-9855-4aa8-aa0d-e8cd003da470','Download the snapshot','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/PHN-IAR-Snapshot-Final.pdf?mtime=20210427135918&focal=none',1,'link'),(35739,152981,1,'2021-04-27 04:50:35','2021-04-27 04:50:35','cb6e74cc-0807-4b2f-a2ca-90665e78c675','Read Recovery',NULL,1,'link'),(35740,152982,1,'2021-04-27 04:50:35','2021-04-27 04:50:35','9dd0ec67-d601-435a-a585-b90af581eff6','Subscribe to Recovery',NULL,1,'link'),(35741,152988,1,'2021-04-27 04:56:30','2021-04-27 04:56:30','fb1b8c22-4186-43fb-a3eb-046632b771fc','More information',NULL,1,'solid'),(35742,152994,1,'2021-04-27 04:56:30','2021-04-27 04:56:30','4162b5cf-73ae-4680-8595-4553e67e10d5','Stepped care fact sheet','https://d1jydvs1x4rbvt.cloudfront.net/downloads/WEB_MHAOD_stepped-care-factsheet.pdf?mtime=20200303105138&focal=none',1,'link'),(35743,152996,1,'2021-04-27 04:56:30','2021-04-27 04:56:30','6641703a-6aaa-4ebd-ba5f-0deca9499d99','Download the guidance document','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/National-MH-IAR-Guidance-17Dec2019_V1.03-Accessible.pdf?mtime=20200707192013&focal=none',1,'link'),(35744,152997,1,'2021-04-27 04:56:30','2021-04-27 04:56:30','fb670763-23f7-4d2b-a662-99a180f2ee39','Download the snapshot','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Mental-health-services/PHN-IAR-Snapshot-Final.pdf?mtime=20210427135918&focal=none',1,'link'),(35745,153000,1,'2021-04-27 04:56:30','2021-04-27 04:56:30','dce3f2a5-7bcd-496a-8075-104e07666fa4','Read Recovery',NULL,1,'link'),(35746,153001,1,'2021-04-27 04:56:30','2021-04-27 04:56:30','39d437f1-7cd8-4a08-a270-bc53ff470a44','Subscribe to Recovery',NULL,1,'link'),(35747,153019,1,'2021-04-27 05:20:11','2021-04-27 05:20:18','cc36fe5e-4773-46be-9b0c-9da09aedd7b5','Expression of Interest for Clinicians\' Advisory Group Members','https://brisbanenorthphn.org.au/jobs/expression-of-interest-for-clinicians-advisory-group-members',1,'solid'),(35748,153020,1,'2021-04-27 05:20:11','2021-04-27 05:20:18','8d6bccbd-285f-4e22-8796-19d3f7303643','Allied Health Coordinator (part-time)','https://brisbanenorthphn.org.au/jobs/allied-health-coordinator-part-time',1,'solid'),(35749,153023,1,'2021-04-27 05:20:11','2021-04-27 05:20:18','b08688ed-d4b0-4394-99b2-0f016bd23888','Browse local positions vacant',NULL,0,'solid'),(35750,153024,1,'2021-04-27 05:20:11','2021-04-27 05:20:11','2e4b39e1-4178-4317-ab2a-ca51f2134156','Program Support Officer | Healthy Ageing','https://brisbanenorthphn.org.au/jobs/program-support-officer-healthy-ageing',1,'solid'),(35751,153025,1,'2021-04-27 05:20:18','2021-04-27 05:20:18','d54b8690-a439-475d-8ba7-15267ae0a4ac','Program Support Officer | Healthy Ageing','https://brisbanenorthphn.org.au/jobs/program-support-officer-healthy-ageing',1,'solid'),(35752,153030,1,'2021-04-27 05:20:30','2021-05-04 03:00:31','45148b9e-e1ce-4bb5-bb7d-f2d9db17bbbd','Expression of Interest for Clinicians\' Advisory Group Members','https://brisbanenorthphn.org.au/jobs/expression-of-interest-for-clinicians-advisory-group-members',1,'solid'),(35753,153031,1,'2021-04-27 05:20:30','2021-04-27 05:20:30','4e5045a5-d7d5-4737-9911-735f25dfe90e','Allied Health Coordinator (part-time)','https://brisbanenorthphn.org.au/jobs/allied-health-coordinator-part-time',1,'solid'),(35754,153032,1,'2021-04-27 05:20:30','2021-05-04 03:00:31','f05152f4-ad7c-4fcb-968e-914240898e9c','Program Support Officer | Healthy Ageing','https://brisbanenorthphn.org.au/jobs/program-support-officer-healthy-ageing',1,'solid'),(35755,153035,1,'2021-04-27 05:20:30','2021-04-27 05:20:30','81a28f5f-699e-4298-a03d-8a44e8c3895c','Browse local positions vacant',NULL,0,'solid'),(35756,153041,1,'2021-04-27 05:20:31','2021-04-27 05:20:31','9b10355b-a215-4f84-b58b-737927102707','Expression of Interest for Clinicians\' Advisory Group Members','https://brisbanenorthphn.org.au/jobs/expression-of-interest-for-clinicians-advisory-group-members',1,'solid'),(35757,153042,1,'2021-04-27 05:20:31','2021-04-27 05:20:31','5d10f3a2-a182-4275-abcb-e951f07db7ae','Allied Health Coordinator (part-time)','https://brisbanenorthphn.org.au/jobs/allied-health-coordinator-part-time',1,'solid'),(35758,153043,1,'2021-04-27 05:20:31','2021-04-27 05:20:31','5dd95757-d8be-4d1e-bc71-ba31d7f1437d','Program Support Officer | Healthy Ageing','https://brisbanenorthphn.org.au/jobs/program-support-officer-healthy-ageing',1,'solid'),(35759,153046,1,'2021-04-27 05:20:31','2021-04-27 05:20:31','48a4f263-c22e-4d22-9976-f1cbbd020fb1','Browse local positions vacant',NULL,0,'solid'),(35760,153051,1,'2021-04-27 05:47:29','2021-04-27 05:55:28','a67c5c10-3bf1-4a1c-b566-8cb60d13f321','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(35761,153052,1,'2021-04-27 05:47:29','2021-04-27 05:55:28','5e368540-64dd-4c71-bd25-34d84d3aa461','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(35762,153053,1,'2021-04-27 05:47:29','2021-04-27 05:55:28','1c8dfbb4-435f-476b-9eb9-ea7a7f80bd8f','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(35763,153054,1,'2021-04-27 05:47:29','2021-04-27 05:55:28','89abe25b-6a7b-417f-91c9-e5e809fc2738','Vaccine rollout data','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/australias-covid-19-vaccine-rollout',1,'solid'),(35764,153057,1,'2021-04-27 05:47:29','2021-04-27 05:55:28','8c238455-9b8a-4d0d-82e6-7a6fbea53c46','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(35765,153058,1,'2021-04-27 05:47:29','2021-04-27 05:55:28','d13e4e39-4f05-4a9d-8a8d-861a28e65cf1','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(35766,153059,1,'2021-04-27 05:47:29','2021-04-27 05:55:28','830bac95-44f4-4694-87d6-b3c3330f095d','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(35767,153060,1,'2021-04-27 05:47:29','2021-04-27 05:55:28','bbb9b8bc-ca12-44dd-bf3a-2daf064e9ce4','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(35768,153063,1,'2021-04-27 05:47:29','2021-04-27 05:55:28','b2875fcf-70f1-498b-8b80-898a02595744','ATAGI statement - 8 April','https://www.health.gov.au/news/atagi-statement-on-astrazeneca-vaccine-in-response-to-new-vaccine-safety-concerns',1,'solid'),(35769,153064,1,'2021-04-27 05:47:29','2021-04-27 05:51:03','7819b2fa-6ef6-44e7-8f92-d51634138fce','ATAGI statement - 2 April','https://www.health.gov.au/news/atagi-statement-consumers-specific-clotting-condition-after-covid-19-vaccination',1,'solid'),(35770,153071,1,'2021-04-27 05:47:29','2021-04-27 05:55:28','cb272062-fa38-4432-963f-115c823703f5','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(35771,153074,1,'2021-04-27 05:47:29','2021-04-27 05:55:29','78b52f38-f8ce-45f1-a67b-b00cc3c6c7ad','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(35772,153075,1,'2021-04-27 05:47:29','2021-04-27 05:55:29','b8badb41-0bad-49b7-9921-0cdfacfd6eec','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(35773,153076,1,'2021-04-27 05:47:29','2021-04-27 05:55:29','629d5d78-f0a3-4de0-986d-40ca415c584f','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(35774,153077,1,'2021-04-27 05:47:29','2021-04-27 05:55:29','ac04f947-ec81-420f-a6b5-86c41030e56b','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(35775,153078,1,'2021-04-27 05:47:29','2021-04-27 05:55:29','91685fb8-ff13-4995-94f8-5f21c368de35','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(35776,153084,1,'2021-04-27 05:47:29','2021-04-27 05:55:29','6ed6a98c-bcf1-401b-97d1-0fb1dca6a941','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(35777,153085,1,'2021-04-27 05:47:29','2021-04-27 05:55:29','d4dbeb75-430a-49f4-9418-4d76bfd7b917','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(35778,153086,1,'2021-04-27 05:47:29','2021-04-27 05:55:29','63986c5a-b16f-44a7-ae0f-6b8612b9a86f','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(35779,153088,1,'2021-04-27 05:51:16','2021-04-27 05:51:16','95bfc734-85ed-4909-b671-848b1ff1c6c3',NULL,NULL,0,'solid'),(35780,153089,1,'2021-04-27 05:51:27','2021-04-27 05:51:27','9c3809be-7bcd-4520-95fb-41054d0c8ebf',NULL,'http://ATAGI statement - 23 April',0,'solid'),(35781,153090,1,'2021-04-27 05:51:29','2021-04-27 05:51:29','eb015959-38fd-45cc-adaa-ccfd45b1518e',NULL,NULL,0,'solid'),(35782,153091,1,'2021-04-27 05:51:34','2021-04-27 05:51:34','582ba5d8-eb9a-4c3b-8984-678fc930c178','ATAGI statement - 23 April',NULL,0,'solid'),(35783,153092,1,'2021-04-27 05:51:55','2021-04-27 05:51:55','d777abfd-d967-4412-a25d-db72d1c918b3','ATAGI statement - 23 April','https://www.health.gov.au/news/atagi-reinforce-recommendations-on-use-of-covid-19-vaccines-following-review-of-vaccine-safety-data-and-benefits',0,'solid'),(35784,153093,1,'2021-04-27 05:51:56','2021-04-27 05:51:56','9c8e31b0-9ad9-4af6-b2a8-df2ca79c70c4','ATAGI statement - 23 April','https://www.health.gov.au/news/atagi-reinforce-recommendations-on-use-of-covid-19-vaccines-following-review-of-vaccine-safety-data-and-benefits',1,'solid'),(35785,153094,1,'2021-04-27 05:52:28','2021-04-27 05:52:28','83ac389f-0d18-44f6-96fb-c0d431d18306','ATAGI statement - 23 April','https://www.health.gov.au/news/atagi-reinforce-recommendations-on-use-of-covid-19-vaccines-following-review-of-vaccine-safety-data-and-benefits',1,'solid'),(35786,153095,1,'2021-04-27 05:54:22','2021-04-27 05:54:22','8b804624-8211-4190-b97e-f70e481576f4','ATAGI statement - 23 April','https://www.health.gov.au/news/atagi-reinforce-recommendations-on-use-of-covid-19-vaccines-following-review-of-vaccine-safety-data-and-benefits',1,'solid'),(35787,153096,1,'2021-04-27 05:54:22','2021-04-27 05:54:22','2e36fac0-eb31-4a7c-a192-ad51b377f1c5',NULL,NULL,0,'solid'),(35788,153097,1,'2021-04-27 05:55:00','2021-04-27 05:55:00','59e04396-13bd-45f7-9115-c15c1fb24fd0','ATAGI statement - 23 April','https://www.health.gov.au/news/atagi-reinforce-recommendations-on-use-of-covid-19-vaccines-following-review-of-vaccine-safety-data-and-benefits',1,'solid'),(35789,153098,1,'2021-04-27 05:55:00','2021-04-27 05:55:00','e583dda3-874a-4497-a838-5f5dadd282b8','Chief Medical Officer\'s response to ATAGI statement',NULL,0,'solid'),(35790,153099,1,'2021-04-27 05:55:08','2021-04-27 05:55:08','80df5a0b-db4a-4b95-bc90-1faa20ab3a34','ATAGI statement - 23 April','https://www.health.gov.au/news/atagi-reinforce-recommendations-on-use-of-covid-19-vaccines-following-review-of-vaccine-safety-data-and-benefits',1,'solid'),(35791,153100,1,'2021-04-27 05:55:08','2021-04-27 05:55:08','0d82ab9d-dc18-42da-99f0-d1430b81d18e','Chief Medical Officer\'s response to ATAGI advice',NULL,0,'solid'),(35792,153101,1,'2021-04-27 05:55:15','2021-04-27 05:55:15','09928747-583e-4f0a-a2ff-0185b43d6f89','ATAGI statement - 23 April','https://www.health.gov.au/news/atagi-reinforce-recommendations-on-use-of-covid-19-vaccines-following-review-of-vaccine-safety-data-and-benefits',1,'solid'),(35793,153102,1,'2021-04-27 05:55:15','2021-04-27 05:55:15','640cb892-71bc-46f4-83ca-d834d780262c','Chief Medical Officer\'s response to ATAGI advice','https://www.health.gov.au/news/response-latest-atagi-advice',0,'solid'),(35794,153103,1,'2021-04-27 05:55:28','2021-04-27 05:55:28','b0919722-9883-4d1e-ac92-a9190a473dc4','ATAGI statement - 23 April','https://www.health.gov.au/news/atagi-reinforce-recommendations-on-use-of-covid-19-vaccines-following-review-of-vaccine-safety-data-and-benefits',1,'solid'),(35795,153104,1,'2021-04-27 05:55:28','2021-04-27 05:55:28','a1ccea0d-ef87-4c98-9934-353423d50ce2','Chief Medical Officer\'s response to ATAGI advice','https://www.health.gov.au/news/response-latest-atagi-advice',1,'solid'),(35796,153107,1,'2021-04-27 05:56:02','2021-04-27 05:56:02','d7e0517b-1567-49ef-92a9-37a2fc302c28','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(35797,153108,1,'2021-04-27 05:56:02','2021-04-27 05:56:02','1ecfb975-548d-4ea7-bc99-e71d10ff28fc','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(35798,153109,1,'2021-04-27 05:56:02','2021-04-27 05:56:02','6bd4d2da-20ed-40ac-8b5f-6859d317dd0f','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(35799,153110,1,'2021-04-27 05:56:02','2021-04-27 05:56:02','6964306e-4a72-43f9-9d4e-e360b3afd213','Vaccine rollout data','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/australias-covid-19-vaccine-rollout',1,'solid'),(35800,153113,1,'2021-04-27 05:56:02','2021-04-27 05:56:02','427c5342-7a0a-439d-97df-0b8d1b6cffb8','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(35801,153114,1,'2021-04-27 05:56:02','2021-04-27 05:56:02','78e1167d-abe5-4949-ba08-4a4cdca044b3','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(35802,153115,1,'2021-04-27 05:56:02','2021-04-27 05:56:02','23fce815-5a95-41b9-b0f5-3fd93a4ea50d','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(35803,153116,1,'2021-04-27 05:56:02','2021-04-27 05:56:02','e069891d-cd09-4ca3-8e54-49c7d129d8d6','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(35804,153119,1,'2021-04-27 05:56:02','2021-04-27 05:56:02','ab623b9c-5734-48cb-8de0-a60858478c20','ATAGI statement - 8 April','https://www.health.gov.au/news/atagi-statement-on-astrazeneca-vaccine-in-response-to-new-vaccine-safety-concerns',1,'solid'),(35805,153120,1,'2021-04-27 05:56:02','2021-04-27 05:56:02','3f3f15af-a3b0-4c0c-955b-50a79c515e10','ATAGI statement - 23 April','https://www.health.gov.au/news/atagi-reinforce-recommendations-on-use-of-covid-19-vaccines-following-review-of-vaccine-safety-data-and-benefits',1,'solid'),(35806,153121,1,'2021-04-27 05:56:02','2021-04-27 05:56:02','c4249f6e-eca3-40ba-a5f2-6c37270c5dc6','Chief Medical Officer\'s response to ATAGI advice','https://www.health.gov.au/news/response-latest-atagi-advice',1,'solid'),(35807,153128,1,'2021-04-27 05:56:02','2021-04-27 05:56:02','ac87c26e-bcdb-4e67-99f7-ae8452fa4862','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(35808,153131,1,'2021-04-27 05:56:02','2021-04-27 05:56:02','3e40b251-a713-4620-949d-1cab9fe91865','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(35809,153132,1,'2021-04-27 05:56:02','2021-04-27 05:56:02','43e9f569-2a03-43e6-b9da-e047eb2b88d7','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(35810,153133,1,'2021-04-27 05:56:02','2021-04-27 05:56:02','99e8afdb-3e36-4488-bca8-e08a355de93a','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(35811,153134,1,'2021-04-27 05:56:02','2021-04-27 05:56:02','03299319-3b51-47e2-9f23-a2917a5801e9','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(35812,153135,1,'2021-04-27 05:56:02','2021-04-27 05:56:02','90374ff8-3cbb-4ed3-b407-6ebe5c82b445','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(35813,153141,1,'2021-04-27 05:56:02','2021-04-27 05:56:02','01b51171-0279-4b7e-bf33-56ee0c95ebb7','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(35814,153142,1,'2021-04-27 05:56:02','2021-04-27 05:56:02','7a79c0a7-d90f-4f19-8bc7-b5acf027686d','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(35815,153143,1,'2021-04-27 05:56:02','2021-04-27 05:56:02','986d4e42-b9d5-4a96-b843-2f3748b2bfe7','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(35816,153148,1,'2021-04-27 05:56:03','2021-04-27 05:56:03','b694846c-8388-4ad9-814b-4b980bb98720','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(35817,153149,1,'2021-04-27 05:56:03','2021-04-27 05:56:03','bc09e96e-4103-4f5e-b07c-b7f01b29f2d6','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(35818,153150,1,'2021-04-27 05:56:03','2021-04-27 05:56:03','465b02e4-8f90-45b3-b49b-831b14292bc0','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(35819,153151,1,'2021-04-27 05:56:03','2021-04-27 05:56:03','faeb9db7-3283-4e1a-9ede-84e960722265','Vaccine rollout data','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/australias-covid-19-vaccine-rollout',1,'solid'),(35820,153154,1,'2021-04-27 05:56:03','2021-04-27 05:56:03','2b0df7ff-b611-4b11-8188-238f0260cb9c','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(35821,153155,1,'2021-04-27 05:56:03','2021-04-27 05:56:03','39406397-f666-45b2-8e50-289b6bfa2e0f','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(35822,153156,1,'2021-04-27 05:56:03','2021-04-27 05:56:03','595020f9-07f9-423c-97d2-cb392cb01cbd','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(35823,153157,1,'2021-04-27 05:56:03','2021-04-27 05:56:03','09df76bf-3fbb-4a85-a3fa-0de847998c60','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(35824,153160,1,'2021-04-27 05:56:03','2021-04-27 05:56:03','099e70ed-127a-46fe-ac86-21027a0c13f0','ATAGI statement - 8 April','https://www.health.gov.au/news/atagi-statement-on-astrazeneca-vaccine-in-response-to-new-vaccine-safety-concerns',1,'solid'),(35825,153161,1,'2021-04-27 05:56:03','2021-04-27 05:56:03','9de09b62-e277-4d95-aaa0-799fd8a09a51','ATAGI statement - 23 April','https://www.health.gov.au/news/atagi-reinforce-recommendations-on-use-of-covid-19-vaccines-following-review-of-vaccine-safety-data-and-benefits',1,'solid'),(35826,153162,1,'2021-04-27 05:56:03','2021-04-27 05:56:03','1755cd32-efa7-427f-bdab-6d1212222d7d','Chief Medical Officer\'s response to ATAGI advice','https://www.health.gov.au/news/response-latest-atagi-advice',1,'solid'),(35827,153169,1,'2021-04-27 05:56:03','2021-04-27 05:56:03','78ada474-c80a-4b93-a648-f1ad7dc67224','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(35828,153172,1,'2021-04-27 05:56:03','2021-04-27 05:56:03','70843c44-cdc1-4c37-9b7a-53f240fa5056','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(35829,153173,1,'2021-04-27 05:56:03','2021-04-27 05:56:03','1a0b4d1c-e028-492b-bd90-3e13256374b2','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(35830,153174,1,'2021-04-27 05:56:03','2021-04-27 05:56:03','f7f0d574-df98-4f5e-a918-5667097fc176','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(35831,153175,1,'2021-04-27 05:56:03','2021-04-27 05:56:03','1acd2820-a680-4d3f-8a1b-c0f8b2c22a90','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(35832,153176,1,'2021-04-27 05:56:03','2021-04-27 05:56:03','f74f9448-79b5-4f1d-9af4-eeef152a0bdf','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(35833,153182,1,'2021-04-27 05:56:04','2021-04-27 05:56:04','f9f9dc25-cb17-4031-bb96-f0ce8285d255','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(35834,153183,1,'2021-04-27 05:56:04','2021-04-27 05:56:04','6b82d6cf-f40f-4721-935e-fbb376aeaca6','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(35835,153184,1,'2021-04-27 05:56:04','2021-04-27 05:56:04','6b037734-c53d-4f39-82e2-55b7312a349b','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(35836,153189,1,'2021-04-27 05:56:10','2021-04-27 05:56:10','6c2e85f1-9f50-4ece-bbf7-8ae1cc92fb0c','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(35837,153190,1,'2021-04-27 05:56:10','2021-04-27 05:56:10','2feeda72-6921-4fce-ae87-4915444f24e4','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(35838,153191,1,'2021-04-27 05:56:10','2021-04-27 05:56:10','fa706d36-9a5a-4998-be01-29dee76f9ef8','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(35839,153192,1,'2021-04-27 05:56:10','2021-04-27 05:56:10','4c7ea637-feae-4a59-a3c8-fc61418b9643','Vaccine rollout data','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/australias-covid-19-vaccine-rollout',1,'solid'),(35840,153195,1,'2021-04-27 05:56:10','2021-04-27 05:56:10','5cf8522f-8004-4daf-8d0f-7fc5f3f05ac0','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(35841,153196,1,'2021-04-27 05:56:10','2021-04-27 05:56:10','31961832-b411-451c-b25f-a03f659e6c7b','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(35842,153197,1,'2021-04-27 05:56:10','2021-04-27 05:56:10','26378650-73b1-4a20-a95d-74a486883c59','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(35843,153198,1,'2021-04-27 05:56:10','2021-04-27 05:56:10','e2cde1d3-a62d-4391-b70a-f2d6498627ee','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(35844,153201,1,'2021-04-27 05:56:10','2021-04-27 05:56:10','ce772a62-5c66-43b3-b35a-4912bd89f238','ATAGI statement - 8 April','https://www.health.gov.au/news/atagi-statement-on-astrazeneca-vaccine-in-response-to-new-vaccine-safety-concerns',1,'solid'),(35845,153202,1,'2021-04-27 05:56:10','2021-04-27 05:56:10','a32ab191-1f5b-4e1a-be15-b454382abae6','ATAGI statement - 23 April','https://www.health.gov.au/news/atagi-reinforce-recommendations-on-use-of-covid-19-vaccines-following-review-of-vaccine-safety-data-and-benefits',1,'solid'),(35846,153203,1,'2021-04-27 05:56:10','2021-04-27 05:56:10','37f90abc-1a79-4ff6-8c4e-4f2ad63d8a9c','Chief Medical Officer\'s response to ATAGI advice','https://www.health.gov.au/news/response-latest-atagi-advice',1,'solid'),(35847,153210,1,'2021-04-27 05:56:10','2021-04-27 05:56:10','b51064f0-ccf5-4a8e-a1b6-f71d31a749f1','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(35848,153213,1,'2021-04-27 05:56:10','2021-04-27 05:56:10','ba9e7ced-75ff-4b6d-9f04-a215e97867d9','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(35849,153214,1,'2021-04-27 05:56:10','2021-04-27 05:56:10','4508c9ce-30af-499f-b2fb-9aaef412f50f','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(35850,153215,1,'2021-04-27 05:56:10','2021-04-27 05:56:10','b9b9f6ea-61d1-485d-bc03-fd439f1837dd','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(35851,153216,1,'2021-04-27 05:56:10','2021-04-27 05:56:10','7c84f19e-7d96-44f7-aee9-d9424dad938f','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(35852,153217,1,'2021-04-27 05:56:10','2021-04-27 05:56:10','2dac1fec-4ae3-4648-8ff7-d3bc34e19669','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(35853,153223,1,'2021-04-27 05:56:10','2021-04-27 05:56:10','7c05f766-70b3-44f8-9cf7-3e5fad6dbd58','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(35854,153224,1,'2021-04-27 05:56:10','2021-04-27 05:56:10','96f6fa6a-7f3c-43db-abba-c59111de4196','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(35855,153225,1,'2021-04-27 05:56:10','2021-04-27 05:56:10','f75d95cb-24c8-47e7-8cee-1527f2c9cb69','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(35856,153230,1,'2021-04-27 06:34:59','2021-04-27 06:34:59','285830d7-0adc-4694-a945-a9f1b058b840','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(35857,153231,1,'2021-04-27 06:34:59','2021-04-27 06:34:59','a31cb0ad-c0c9-4915-b982-98e354753666','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(35858,153234,1,'2021-04-27 06:34:59','2021-04-27 06:34:59','5ede7b7f-ec7a-4400-8576-db48d9685aa1','Phase 1B rollout FAQs',NULL,1,'solid'),(35859,153237,1,'2021-04-27 06:34:59','2021-04-27 06:34:59','37bb66b4-0b46-48f6-a8c7-03c4d70255d1','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(35860,153243,1,'2021-04-27 06:34:59','2021-04-27 06:34:59','23914497-61b0-4f2c-81d5-2425c55fdad9','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(35861,153246,1,'2021-04-27 06:34:59','2021-04-27 06:34:59','9ab5b978-b88a-4904-9283-2b1a8021720a','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(35862,153248,1,'2021-04-27 06:34:59','2021-04-27 06:34:59','49a629f7-bf44-47f3-a7c3-79cf6c071737','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(35863,153250,1,'2021-04-27 06:34:59','2021-04-27 06:34:59','ceba1cf8-c328-49a0-8ee6-694cc88f909f','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(35864,153253,1,'2021-04-27 06:34:59','2021-04-27 06:34:59','0ec00c4e-0043-447b-95d2-df9a022f8ad5','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(35865,153255,1,'2021-04-27 06:34:59','2021-04-27 06:34:59','c98badc4-399c-4381-a9d3-e157136c3cc5','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(35866,153257,1,'2021-04-27 06:34:59','2021-04-27 06:34:59','9f37c66f-226a-4b58-8b74-cbbd3230121f','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(35867,153260,1,'2021-04-27 06:34:59','2021-04-27 06:34:59','7be24965-813d-403b-8b7b-9a49bfde42e7','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(35868,153261,1,'2021-04-27 06:34:59','2021-04-27 06:34:59','cdfd9371-053d-4f9c-a003-0c4e619bde98','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(35869,153264,1,'2021-04-27 06:34:59','2021-04-27 06:34:59','685a8363-6afa-4360-a2e3-613fdbc82c59','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(35870,153267,1,'2021-04-27 06:35:00','2021-04-27 06:35:00','1cd21e97-d378-4a15-8d14-e826f0369ffb','Subscribe to updates',NULL,1,'solid'),(35871,153269,1,'2021-04-27 06:35:00','2021-04-27 06:35:00','09b2e037-6497-4c1c-afa4-3dca1ed5225b','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(35872,153270,1,'2021-04-27 06:35:00','2021-04-27 06:35:00','88f59bf7-8f38-4369-9d5a-a67ae52dbf8a','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(35873,153369,1,'2021-04-30 01:08:07','2021-04-30 01:10:10','c8b81a4d-7f39-4019-9ed1-6fb31a8eb3e8','More information','http://health.gov.au/covid19-vaccines',1,'solid'),(35874,153371,1,'2021-04-30 01:08:07','2021-04-30 01:10:10','d79e8633-a35e-4899-83dd-c81746f60613','Vaccine questions answered','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/is-it-true',1,'link'),(35875,153372,1,'2021-04-30 01:08:07','2021-04-30 01:10:10','07b263b7-cb78-4bbf-b2e6-35b2abfb4625','Information for workers in RACFs','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/information-for-aged-care-workers-about-covid-19-vaccines',1,'link'),(35876,153373,1,'2021-04-30 01:08:07','2021-04-30 01:10:10','302187d2-fcc0-45aa-bc0c-9b22f747a0ca','Information for residents in RACFs','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/covid-19-vaccine-information-for-aged-care-residents-and-people-receiving-in-home-aged-care',1,'link'),(35877,153375,1,'2021-04-30 01:08:07','2021-04-30 01:10:10','8c1c979d-b359-4537-9335-88c71ebd5077','Aged care vaccine readiness toolkit','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-aged-care-readiness-toolkit',1,'link'),(35878,153376,1,'2021-04-30 01:08:07','2021-04-30 01:10:10','24964002-d99b-47c3-b9b2-71858e5fb181','Consent form for COVID-19 vaccination','https://www.health.gov.au/resources/publications/covid-19-vaccination-consent-form-for-covid-19-vaccination?utm_source=GP+List+DD+and+WM_Current&utm_campaign=adb48e0824-EMAIL_CAMPAIGN_2018_07_27_02_23_COPY_01&utm_medium=email&utm_term=0_4698ba36cb-adb48e0',1,'link'),(35879,153377,1,'2021-04-30 01:08:07','2021-04-30 01:10:10','cacc1945-92b6-4f59-96af-c18b399f9743','Department of Health information and resources','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-for-aged-care-providers-and-workers',1,'link'),(35880,153379,1,'2021-04-30 01:08:07','2021-04-30 01:10:10','8fc4ef26-d1cf-486a-827d-6fd7bf458433','ATAGI: Advice on the relative timing of administering influenza and COVID-19 vaccines in 2021','https://www.health.gov.au/resources/publications/covid-19-vaccination-atagi-advice-on-influenza-and-covid-19-vaccines',1,'outline'),(35881,153380,1,'2021-04-30 01:08:07','2021-04-30 01:10:10','0ed721a5-efef-4f69-9a83-ae809889b6cf','AHPPC: Statement on COVID-19 and influenza vaccination requirements for aged care workers','https://www.health.gov.au/news/australian-health-protection-principal-committee-ahppc-statement-on-covid-19-and-influenza-vaccination-requirements-for-aged-care-workers',1,'outline'),(35882,153382,1,'2021-04-30 01:08:07','2021-04-30 01:10:10','68760eb0-ad4e-4daa-803c-90d085583b80','Part 1: Preparing for the vaccine rollout in Brisbane North RACFs','https://www.youtube.com/watch?v=3BNaB811O_k',1,'solid'),(35883,153383,1,'2021-04-30 01:08:07','2021-04-30 01:10:10','a5e903db-1c9d-4450-b94f-ba3a8946dae3','Part 2: Preparing for the vaccine rollout in Brisbane North RACFs','https://youtu.be/AATe_vJ3c3w',1,'solid'),(35884,153388,1,'2021-04-30 01:08:07','2021-04-30 01:10:10','c23719c8-c693-4bb2-83fb-c36705795b42','Aged care resources on the DoH website','https://www.health.gov.au/resources/collections/coronavirus-covid-19-resources-for-health-professionals-including-aged-care-providers-pathology-providers-and-health-care-managers#health-and-aged-care-workers',1,'link'),(35885,153389,1,'2021-04-30 01:08:07','2021-04-30 01:10:10','c70b5781-4da5-4c53-bd00-b177c2f1c18d','Subscribe to aged care sector announcements','https://www.health.gov.au/using-our-websites/subscriptions/subscribe-to-aged-care-sector-announcements-and-newsletters',1,'link'),(35886,153390,1,'2021-04-30 01:08:07','2021-04-30 01:10:10','b026c20e-95ea-48c7-b56a-0ed3b63f0574','Leading Age Services Australia','https://lasa.asn.au/covid-19',1,'link'),(35887,153391,1,'2021-04-30 01:08:07','2021-04-30 01:10:10','8b4ff438-e6ee-499a-998d-75880edab282','Aged and Community Services Australia','https://www.acsa.asn.au/Home/Aged-Care-Emergency-Planning/Coronavirus',1,'link'),(35888,153392,1,'2021-04-30 01:08:08','2021-04-30 01:08:08','51cae89e-952e-4c9b-9ea6-7978530f54b6',NULL,NULL,0,'solid'),(35889,153393,1,'2021-04-30 01:08:24','2021-04-30 01:08:24','3b4de09f-502f-475b-beff-2ffd48865110',NULL,'https://www.health.gov.au/resources/publications/covid-19-vaccination-how-workers-in-residential-aged-care-can-get-a-covid-19-vaccination-fact-sheet',0,'solid'),(35890,153394,1,'2021-04-30 01:08:47','2021-04-30 01:08:47','8af5fcf6-93b6-49c5-bf58-c258ee80f6ee','How','https://www.health.gov.au/resources/publications/covid-19-vaccination-how-workers-in-residential-aged-care-can-get-a-covid-19-vaccination-fact-sheet',0,'solid'),(35891,153395,1,'2021-04-30 01:08:48','2021-04-30 01:08:48','ef2c357a-2bf1-419e-972c-f0192f7041b7','How','https://www.health.gov.au/resources/publications/covid-19-vaccination-how-workers-in-residential-aged-care-can-get-a-covid-19-vaccination-fact-sheet',0,'solid'),(35892,153396,1,'2021-04-30 01:08:54','2021-04-30 01:08:54','e62d905b-3b27-4ce8-83df-a320c82d774d','How RAC','https://www.health.gov.au/resources/publications/covid-19-vaccination-how-workers-in-residential-aged-care-can-get-a-covid-19-vaccination-fact-sheet',0,'solid'),(35893,153397,1,'2021-04-30 01:08:56','2021-04-30 01:08:56','62ecb096-136e-44c4-b543-d61c6db53208','How','https://www.health.gov.au/resources/publications/covid-19-vaccination-how-workers-in-residential-aged-care-can-get-a-covid-19-vaccination-fact-sheet',0,'solid'),(35894,153398,1,'2021-04-30 01:08:58','2021-04-30 01:08:58','2223a02c-bd74-421a-946e-d500318cd7cb',NULL,'https://www.health.gov.au/resources/publications/covid-19-vaccination-how-workers-in-residential-aged-care-can-get-a-covid-19-vaccination-fact-sheet',0,'solid'),(35895,153399,1,'2021-04-30 01:09:05','2021-04-30 01:09:05','d74d2ac8-85fb-462e-a304-4c6515014fcf','How workers','https://www.health.gov.au/resources/publications/covid-19-vaccination-how-workers-in-residential-aged-care-can-get-a-covid-19-vaccination-fact-sheet',0,'solid'),(35896,153400,1,'2021-04-30 01:09:09','2021-04-30 01:09:09','4cd1075d-129e-47da-8094-f00feb75f0dc','How workers can get a','https://www.health.gov.au/resources/publications/covid-19-vaccination-how-workers-in-residential-aged-care-can-get-a-covid-19-vaccination-fact-sheet',0,'solid'),(35897,153401,1,'2021-04-30 01:09:15','2021-04-30 01:09:15','eff93e5b-c0c0-41da-85ef-f796014b016e','How workers can get a COVID','https://www.health.gov.au/resources/publications/covid-19-vaccination-how-workers-in-residential-aged-care-can-get-a-covid-19-vaccination-fact-sheet',0,'solid'),(35898,153402,1,'2021-04-30 01:09:18','2021-04-30 01:09:18','d411ac03-a459-4db6-be8f-2923629cf184','How workers can ge','https://www.health.gov.au/resources/publications/covid-19-vaccination-how-workers-in-residential-aged-care-can-get-a-covid-19-vaccination-fact-sheet',0,'solid'),(35899,153403,1,'2021-04-30 01:09:22','2021-04-30 01:09:22','0a3149df-1b7a-461b-a056-da8dc950d7f6','How workers can get vaccinated','https://www.health.gov.au/resources/publications/covid-19-vaccination-how-workers-in-residential-aged-care-can-get-a-covid-19-vaccination-fact-sheet',0,'solid'),(35900,153404,1,'2021-04-30 01:09:27','2021-04-30 01:09:27','f2b8127a-2660-4a35-ab24-2259d611a40a','How workers can get vaccinated - fact sheet','https://www.health.gov.au/resources/publications/covid-19-vaccination-how-workers-in-residential-aged-care-can-get-a-covid-19-vaccination-fact-sheet',0,'solid'),(35901,153405,1,'2021-04-30 01:09:30','2021-04-30 01:09:30','c4aa37cb-1b95-4b94-bc05-313ace16f77d','How workers can get vaccinated - fact sheet','https://www.health.gov.au/resources/publications/covid-19-vaccination-how-workers-in-residential-aged-care-can-get-a-covid-19-vaccination-fact-sheet',1,'solid'),(35902,153406,1,'2021-04-30 01:09:37','2021-04-30 01:09:37','517d6990-942d-4385-9fb0-afb2782d2593','How workers can get vaccinated - fact sheet','https://www.health.gov.au/resources/publications/covid-19-vaccination-how-workers-in-residential-aged-care-can-get-a-covid-19-vaccination-fact-sheet',1,'link'),(35903,153407,1,'2021-04-30 01:10:10','2021-04-30 01:10:10','8e30dfd9-d615-4169-bbac-6177f75329fd','How workers can get vaccinated - fact sheet','https://www.health.gov.au/resources/publications/covid-19-vaccination-how-workers-in-residential-aged-care-can-get-a-covid-19-vaccination-fact-sheet',1,'link'),(35904,153410,1,'2021-04-30 01:10:14','2021-04-30 01:10:14','985b223d-055e-4aa5-8d96-2f50154e5081','More information','http://health.gov.au/covid19-vaccines',1,'solid'),(35905,153412,1,'2021-04-30 01:10:14','2021-04-30 01:10:14','9d27985f-f2ae-4701-87bf-fc62f66451a2','Vaccine questions answered','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/is-it-true',1,'link'),(35906,153413,1,'2021-04-30 01:10:14','2021-04-30 01:10:14','ff529086-a853-430e-a784-4729f75770b3','Information for workers in RACFs','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/information-for-aged-care-workers-about-covid-19-vaccines',1,'link'),(35907,153414,1,'2021-04-30 01:10:14','2021-04-30 01:10:14','11780d02-a4de-48bb-901c-186947417fba','How workers can get vaccinated - fact sheet','https://www.health.gov.au/resources/publications/covid-19-vaccination-how-workers-in-residential-aged-care-can-get-a-covid-19-vaccination-fact-sheet',1,'link'),(35908,153415,1,'2021-04-30 01:10:14','2021-04-30 01:10:14','10744ba8-d9a0-4051-ba30-6183c61be2a4','Information for residents in RACFs','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/covid-19-vaccine-information-for-aged-care-residents-and-people-receiving-in-home-aged-care',1,'link'),(35909,153417,1,'2021-04-30 01:10:14','2021-04-30 01:10:14','f0f8c587-fc08-4d2c-bd36-3a10e212e03a','Aged care vaccine readiness toolkit','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-aged-care-readiness-toolkit',1,'link'),(35910,153418,1,'2021-04-30 01:10:14','2021-04-30 01:10:14','cd6e8af2-72a0-4272-9e71-0434f2a716b0','Consent form for COVID-19 vaccination','https://www.health.gov.au/resources/publications/covid-19-vaccination-consent-form-for-covid-19-vaccination?utm_source=GP+List+DD+and+WM_Current&utm_campaign=adb48e0824-EMAIL_CAMPAIGN_2018_07_27_02_23_COPY_01&utm_medium=email&utm_term=0_4698ba36cb-adb48e0',1,'link'),(35911,153419,1,'2021-04-30 01:10:14','2021-04-30 01:10:14','1ea80df5-b7c0-4c5e-870e-764f093108e6','Department of Health information and resources','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-for-aged-care-providers-and-workers',1,'link'),(35912,153421,1,'2021-04-30 01:10:14','2021-04-30 01:10:14','c928c116-4e8e-4df9-96d9-d173fb82f280','ATAGI: Advice on the relative timing of administering influenza and COVID-19 vaccines in 2021','https://www.health.gov.au/resources/publications/covid-19-vaccination-atagi-advice-on-influenza-and-covid-19-vaccines',1,'outline'),(35913,153422,1,'2021-04-30 01:10:14','2021-04-30 01:10:14','024811e8-7ff6-4b95-95f6-08bdb0d71641','AHPPC: Statement on COVID-19 and influenza vaccination requirements for aged care workers','https://www.health.gov.au/news/australian-health-protection-principal-committee-ahppc-statement-on-covid-19-and-influenza-vaccination-requirements-for-aged-care-workers',1,'outline'),(35914,153424,1,'2021-04-30 01:10:14','2021-04-30 01:10:14','d21b0f99-441d-4715-97dd-e32d4e9c3d5e','Part 1: Preparing for the vaccine rollout in Brisbane North RACFs','https://www.youtube.com/watch?v=3BNaB811O_k',1,'solid'),(35915,153425,1,'2021-04-30 01:10:14','2021-04-30 01:10:14','983ea56d-3dc8-4aca-acb0-d0a7d1db8fd9','Part 2: Preparing for the vaccine rollout in Brisbane North RACFs','https://youtu.be/AATe_vJ3c3w',1,'solid'),(35916,153430,1,'2021-04-30 01:10:14','2021-04-30 01:10:14','b93f456d-8e69-47ad-92a8-2a432a914b72','Aged care resources on the DoH website','https://www.health.gov.au/resources/collections/coronavirus-covid-19-resources-for-health-professionals-including-aged-care-providers-pathology-providers-and-health-care-managers#health-and-aged-care-workers',1,'link'),(35917,153431,1,'2021-04-30 01:10:14','2021-04-30 01:10:14','8dc923ad-e711-4595-bc7a-6e9c37bf6ee9','Subscribe to aged care sector announcements','https://www.health.gov.au/using-our-websites/subscriptions/subscribe-to-aged-care-sector-announcements-and-newsletters',1,'link'),(35918,153432,1,'2021-04-30 01:10:14','2021-04-30 01:10:14','e96c8f82-0b26-4c35-84e4-f99b63da9b32','Leading Age Services Australia','https://lasa.asn.au/covid-19',1,'link'),(35919,153433,1,'2021-04-30 01:10:14','2021-04-30 01:10:14','d53b0d80-9f90-4c78-951d-140585a0a18d','Aged and Community Services Australia','https://www.acsa.asn.au/Home/Aged-Care-Emergency-Planning/Coronavirus',1,'link'),(35920,153437,1,'2021-04-30 01:10:15','2021-04-30 01:10:15','4ff118f3-95b4-4f65-9a41-86c0dca55aa2','More information','http://health.gov.au/covid19-vaccines',1,'solid'),(35921,153439,1,'2021-04-30 01:10:15','2021-04-30 01:10:15','c8cf8023-9d77-4654-b1ac-8e07883fb5db','Vaccine questions answered','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/is-it-true',1,'link'),(35922,153440,1,'2021-04-30 01:10:15','2021-04-30 01:10:15','cf374e63-1437-41e8-87e0-aa31a3bbc13b','Information for workers in RACFs','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/information-for-aged-care-workers-about-covid-19-vaccines',1,'link'),(35923,153441,1,'2021-04-30 01:10:15','2021-04-30 01:10:15','b77b0ce5-8ee8-47f6-b625-531f12c13451','How workers can get vaccinated - fact sheet','https://www.health.gov.au/resources/publications/covid-19-vaccination-how-workers-in-residential-aged-care-can-get-a-covid-19-vaccination-fact-sheet',1,'link'),(35924,153442,1,'2021-04-30 01:10:15','2021-04-30 01:10:15','18201935-8616-4bc4-a29c-d45ef2881a79','Information for residents in RACFs','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/covid-19-vaccine-information-for-aged-care-residents-and-people-receiving-in-home-aged-care',1,'link'),(35925,153444,1,'2021-04-30 01:10:15','2021-04-30 01:10:15','a1b6fbb3-5a89-4663-95be-d90c9061498f','Aged care vaccine readiness toolkit','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-aged-care-readiness-toolkit',1,'link'),(35926,153445,1,'2021-04-30 01:10:15','2021-04-30 01:10:15','052e8785-aacd-49dd-bfef-6a54398a12cf','Consent form for COVID-19 vaccination','https://www.health.gov.au/resources/publications/covid-19-vaccination-consent-form-for-covid-19-vaccination?utm_source=GP+List+DD+and+WM_Current&utm_campaign=adb48e0824-EMAIL_CAMPAIGN_2018_07_27_02_23_COPY_01&utm_medium=email&utm_term=0_4698ba36cb-adb48e0',1,'link'),(35927,153446,1,'2021-04-30 01:10:15','2021-04-30 01:10:15','3da0291f-c27c-45d4-92e1-670553ad39ea','Department of Health information and resources','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-for-aged-care-providers-and-workers',1,'link'),(35928,153448,1,'2021-04-30 01:10:15','2021-04-30 01:10:15','546c1f14-12bc-48f3-91ac-27760eb89519','ATAGI: Advice on the relative timing of administering influenza and COVID-19 vaccines in 2021','https://www.health.gov.au/resources/publications/covid-19-vaccination-atagi-advice-on-influenza-and-covid-19-vaccines',1,'outline'),(35929,153449,1,'2021-04-30 01:10:15','2021-04-30 01:10:15','64d68b9f-e573-478e-b7b6-d0b97bfc336a','AHPPC: Statement on COVID-19 and influenza vaccination requirements for aged care workers','https://www.health.gov.au/news/australian-health-protection-principal-committee-ahppc-statement-on-covid-19-and-influenza-vaccination-requirements-for-aged-care-workers',1,'outline'),(35930,153451,1,'2021-04-30 01:10:15','2021-04-30 01:10:15','82e7d9df-1252-40bc-b2b0-425bfb664512','Part 1: Preparing for the vaccine rollout in Brisbane North RACFs','https://www.youtube.com/watch?v=3BNaB811O_k',1,'solid'),(35931,153452,1,'2021-04-30 01:10:15','2021-04-30 01:10:15','2db04cc7-3b72-4527-a818-2a837b3e6a16','Part 2: Preparing for the vaccine rollout in Brisbane North RACFs','https://youtu.be/AATe_vJ3c3w',1,'solid'),(35932,153457,1,'2021-04-30 01:10:15','2021-04-30 01:10:15','d7601e9c-00c7-46da-a257-3cb5b6646c1e','Aged care resources on the DoH website','https://www.health.gov.au/resources/collections/coronavirus-covid-19-resources-for-health-professionals-including-aged-care-providers-pathology-providers-and-health-care-managers#health-and-aged-care-workers',1,'link'),(35933,153458,1,'2021-04-30 01:10:15','2021-04-30 01:10:15','e9b4a2ab-0518-4e0d-96e0-a073080892c4','Subscribe to aged care sector announcements','https://www.health.gov.au/using-our-websites/subscriptions/subscribe-to-aged-care-sector-announcements-and-newsletters',1,'link'),(35934,153459,1,'2021-04-30 01:10:15','2021-04-30 01:10:15','139ad978-0415-4f9f-8484-1d0d52ff86bf','Leading Age Services Australia','https://lasa.asn.au/covid-19',1,'link'),(35935,153460,1,'2021-04-30 01:10:15','2021-04-30 01:10:15','1a7b9349-98f9-4245-9bf4-d3227beb2fd9','Aged and Community Services Australia','https://www.acsa.asn.au/Home/Aged-Care-Emergency-Planning/Coronavirus',1,'link'),(35936,153464,1,'2021-04-30 01:10:21','2021-04-30 01:10:21','7c4db17c-82a7-4c23-8f94-846cec3f872d','More information','http://health.gov.au/covid19-vaccines',1,'solid'),(35937,153466,1,'2021-04-30 01:10:21','2021-04-30 01:10:21','8f6ac08e-1636-433c-8dc0-79c7311d1726','Vaccine questions answered','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/is-it-true',1,'link'),(35938,153467,1,'2021-04-30 01:10:21','2021-04-30 01:10:21','5ddbe9e6-fc0d-425a-b1e7-beb85d0d9cde','Information for workers in RACFs','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/information-for-aged-care-workers-about-covid-19-vaccines',1,'link'),(35939,153468,1,'2021-04-30 01:10:21','2021-04-30 01:10:21','1624b1af-bc4e-461d-b7d4-12ef911d897b','How workers can get vaccinated - fact sheet','https://www.health.gov.au/resources/publications/covid-19-vaccination-how-workers-in-residential-aged-care-can-get-a-covid-19-vaccination-fact-sheet',1,'link'),(35940,153469,1,'2021-04-30 01:10:21','2021-04-30 01:10:21','15e181a6-fbb6-4bf7-9e83-4bc0b1a1ed4a','Information for residents in RACFs','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/covid-19-vaccine-information-for-aged-care-residents-and-people-receiving-in-home-aged-care',1,'link'),(35941,153471,1,'2021-04-30 01:10:21','2021-04-30 01:10:21','046dc97e-da6a-44a6-8399-47238f8f6c6a','Aged care vaccine readiness toolkit','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-aged-care-readiness-toolkit',1,'link'),(35942,153472,1,'2021-04-30 01:10:21','2021-04-30 01:10:21','52fd9733-18f2-4b7b-b286-e5a09ee8c731','Consent form for COVID-19 vaccination','https://www.health.gov.au/resources/publications/covid-19-vaccination-consent-form-for-covid-19-vaccination?utm_source=GP+List+DD+and+WM_Current&utm_campaign=adb48e0824-EMAIL_CAMPAIGN_2018_07_27_02_23_COPY_01&utm_medium=email&utm_term=0_4698ba36cb-adb48e0',1,'link'),(35943,153473,1,'2021-04-30 01:10:21','2021-04-30 01:10:21','fc144740-5d2a-43a2-ab6b-6c3ea7826e49','Department of Health information and resources','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-for-aged-care-providers-and-workers',1,'link'),(35944,153475,1,'2021-04-30 01:10:21','2021-04-30 01:10:21','5cb760fa-f742-418d-8546-b59b68394b56','ATAGI: Advice on the relative timing of administering influenza and COVID-19 vaccines in 2021','https://www.health.gov.au/resources/publications/covid-19-vaccination-atagi-advice-on-influenza-and-covid-19-vaccines',1,'outline'),(35945,153476,1,'2021-04-30 01:10:21','2021-04-30 01:10:21','d831ac36-8fb8-41ff-8eb0-ba4f56bbe1e8','AHPPC: Statement on COVID-19 and influenza vaccination requirements for aged care workers','https://www.health.gov.au/news/australian-health-protection-principal-committee-ahppc-statement-on-covid-19-and-influenza-vaccination-requirements-for-aged-care-workers',1,'outline'),(35946,153478,1,'2021-04-30 01:10:21','2021-04-30 01:10:21','9e52740a-f829-4d90-9954-27077e0baf4b','Part 1: Preparing for the vaccine rollout in Brisbane North RACFs','https://www.youtube.com/watch?v=3BNaB811O_k',1,'solid'),(35947,153479,1,'2021-04-30 01:10:21','2021-04-30 01:10:21','141b404f-3d72-4b38-bfac-90b7f493559e','Part 2: Preparing for the vaccine rollout in Brisbane North RACFs','https://youtu.be/AATe_vJ3c3w',1,'solid'),(35948,153484,1,'2021-04-30 01:10:21','2021-04-30 01:10:21','95d502e9-b4ce-41e3-b082-5944138eaf25','Aged care resources on the DoH website','https://www.health.gov.au/resources/collections/coronavirus-covid-19-resources-for-health-professionals-including-aged-care-providers-pathology-providers-and-health-care-managers#health-and-aged-care-workers',1,'link'),(35949,153485,1,'2021-04-30 01:10:21','2021-04-30 01:10:21','80180419-bc99-4b8c-b7d9-b4c5622cadfb','Subscribe to aged care sector announcements','https://www.health.gov.au/using-our-websites/subscriptions/subscribe-to-aged-care-sector-announcements-and-newsletters',1,'link'),(35950,153486,1,'2021-04-30 01:10:21','2021-04-30 01:10:21','62703e6c-e612-4888-81a9-580f9fa1cb63','Leading Age Services Australia','https://lasa.asn.au/covid-19',1,'link'),(35951,153487,1,'2021-04-30 01:10:21','2021-04-30 01:10:21','e682af7d-3177-44aa-b3b0-fc62769b2f50','Aged and Community Services Australia','https://www.acsa.asn.au/Home/Aged-Care-Emergency-Planning/Coronavirus',1,'link'),(35952,153493,1,'2021-04-30 01:17:02','2021-04-30 01:17:02','3a335fc5-5b6e-4079-89eb-157b65151401','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(35953,153494,1,'2021-04-30 01:17:02','2021-04-30 01:17:02','f162e1b1-ab8f-4329-9ce8-f2d8ae3c4bcc','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(35954,153497,1,'2021-04-30 01:17:02','2021-04-30 01:17:02','ac9fbded-7862-4718-905e-7d78e2349642','Phase 1B rollout FAQs',NULL,1,'solid'),(35955,153500,1,'2021-04-30 01:17:02','2021-04-30 01:17:02','8f14dcd7-01d4-4f47-a5ef-a9796f082c73','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(35956,153506,1,'2021-04-30 01:17:03','2021-04-30 01:17:03','5279e97e-cf3e-4e3a-9d64-6f64081d610e','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(35957,153509,1,'2021-04-30 01:17:03','2021-04-30 01:17:03','1646c6da-8000-4371-890b-f3d1fb4a9f99','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(35958,153511,1,'2021-04-30 01:17:03','2021-04-30 01:17:03','a56cd955-d30e-47e8-b1bd-2e5f75a371d9','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(35959,153513,1,'2021-04-30 01:17:03','2021-04-30 01:17:03','6eedcf69-1eda-4fde-ac2c-19e3c600fabd','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(35960,153516,1,'2021-04-30 01:17:03','2021-04-30 01:17:03','76579fc1-fb10-4dae-8b86-3633a566e7f7','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(35961,153518,1,'2021-04-30 01:17:03','2021-04-30 01:17:03','f1e3e414-a0d7-48fc-a9a3-bba73d026db2','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(35962,153520,1,'2021-04-30 01:17:03','2021-04-30 01:17:03','8cafca2a-b0ed-4b3e-b542-9aea07152c4c','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(35963,153523,1,'2021-04-30 01:17:03','2021-04-30 01:17:03','6857f279-2ab4-4a7c-8561-2816717a6b34','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(35964,153524,1,'2021-04-30 01:17:03','2021-04-30 01:17:03','84c0e97c-23e1-44fb-944c-ee902d6faeae','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(35965,153527,1,'2021-04-30 01:17:03','2021-04-30 01:17:03','3546ddfd-40eb-40ec-a9ba-8af430786b95','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(35966,153530,1,'2021-04-30 01:17:03','2021-04-30 01:17:03','2ad9c562-0d6c-45ea-8179-34f2e79e6ee4','Subscribe to updates',NULL,1,'solid'),(35967,153532,1,'2021-04-30 01:17:03','2021-04-30 01:17:03','b46786e0-8c6d-4c46-890e-2f6820dbb73e','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(35968,153533,1,'2021-04-30 01:17:03','2021-04-30 01:17:03','2f2dab4c-5710-45a7-9df8-62fece7692c9','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(35969,153538,1,'2021-04-30 01:18:19','2021-04-30 01:18:19','b391f973-e4e9-4678-af92-ba1a34371b93','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(35970,153539,1,'2021-04-30 01:18:19','2021-04-30 01:18:19','fc0c1059-1503-4e9a-a4a6-d22143cc4bac','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(35971,153542,1,'2021-04-30 01:18:19','2021-04-30 01:18:19','2a19593f-96fe-4b34-b2e0-86b249ec6e4b','Phase 1B rollout FAQs',NULL,1,'solid'),(35972,153545,1,'2021-04-30 01:18:19','2021-04-30 01:18:19','abba51e2-078f-46ed-957e-92b02c12bf66','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(35973,153551,1,'2021-04-30 01:18:19','2021-04-30 01:18:19','3d5a778a-88dd-4ec5-b367-d18f4017051d','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(35974,153554,1,'2021-04-30 01:18:19','2021-04-30 01:18:19','c768bab2-5b2e-49de-8c90-491eeb1fad69','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(35975,153556,1,'2021-04-30 01:18:19','2021-04-30 01:18:19','a859655a-fdc2-42b5-9a9e-24c634774f56','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(35976,153558,1,'2021-04-30 01:18:19','2021-04-30 01:18:19','e38a5c04-3974-41eb-9318-9aa2d0cc7df4','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(35977,153561,1,'2021-04-30 01:18:19','2021-04-30 01:18:19','9b3cb4d7-71bb-45c8-9045-a6dd18b5c565','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(35978,153563,1,'2021-04-30 01:18:19','2021-04-30 01:18:19','9ab12802-66c6-400c-bf18-6e2cab8a3442','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(35979,153565,1,'2021-04-30 01:18:19','2021-04-30 01:18:19','df5c13e8-152e-4e1c-9177-86e79e4dd086','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(35980,153568,1,'2021-04-30 01:18:19','2021-04-30 01:18:19','bd189367-7991-47ca-8785-317093922a2a','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(35981,153569,1,'2021-04-30 01:18:19','2021-04-30 01:18:19','20389fba-f2d1-43e2-b05c-036dea2fa243','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(35982,153572,1,'2021-04-30 01:18:19','2021-04-30 01:18:19','262ebd63-1585-45f2-a66a-12ca80bc6b1a','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(35983,153575,1,'2021-04-30 01:18:19','2021-04-30 01:18:19','be657cb1-27e2-4625-abdf-eba03bc3440a','Subscribe to updates',NULL,1,'solid'),(35984,153577,1,'2021-04-30 01:18:19','2021-04-30 01:18:19','42d3529b-a53f-4c04-bcde-4753d028be99','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(35985,153578,1,'2021-04-30 01:18:19','2021-04-30 01:18:19','4db4a941-f061-42a5-85b9-feb1285d177f','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(35986,153582,1,'2021-04-30 01:18:20','2021-04-30 01:18:20','3c4383b9-a977-4096-bb9a-d6e6ebe732cf','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(35987,153583,1,'2021-04-30 01:18:20','2021-04-30 01:18:20','4cf556a9-851d-46ee-9f8e-d471f39e33cb','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(35988,153586,1,'2021-04-30 01:18:20','2021-04-30 01:18:20','d61e2385-124b-437a-aa2d-142d014db3a9','Phase 1B rollout FAQs',NULL,1,'solid'),(35989,153589,1,'2021-04-30 01:18:20','2021-04-30 01:18:20','972dbca6-3bfa-4621-9294-0163c266034d','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(35990,153595,1,'2021-04-30 01:18:20','2021-04-30 01:18:20','88d1a6dc-6b77-4336-bb95-985772d03d6a','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(35991,153598,1,'2021-04-30 01:18:20','2021-04-30 01:18:20','2330cb8c-553e-4de7-a349-206d0cd0389d','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(35992,153600,1,'2021-04-30 01:18:21','2021-04-30 01:18:21','07983805-a25c-4b8c-a510-3496f87fe423','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(35993,153602,1,'2021-04-30 01:18:21','2021-04-30 01:18:21','e3a898fd-35aa-49f3-890f-506eb9f580d2','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(35994,153605,1,'2021-04-30 01:18:21','2021-04-30 01:18:21','df49b81e-fa1a-4108-a44e-10316824aecb','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(35995,153607,1,'2021-04-30 01:18:21','2021-04-30 01:18:21','d8dcd744-89b7-456b-acb4-53a0e93f171e','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(35996,153609,1,'2021-04-30 01:18:21','2021-04-30 01:18:21','9fe2185e-8593-4e68-87e8-5946b795e81c','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(35997,153612,1,'2021-04-30 01:18:21','2021-04-30 01:18:21','0a4ee434-c11c-4b6c-ab03-bfd441d0ccc2','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(35998,153613,1,'2021-04-30 01:18:21','2021-04-30 01:18:21','d2fd6d03-c027-41b8-b462-2543c9af1fce','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(35999,153616,1,'2021-04-30 01:18:21','2021-04-30 01:18:21','8e6a594d-6e69-4993-b183-dc8a55663a08','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(36000,153619,1,'2021-04-30 01:18:21','2021-04-30 01:18:21','c5d9bffc-c97b-46c9-b5e2-24895a3d13b3','Subscribe to updates',NULL,1,'solid'),(36001,153621,1,'2021-04-30 01:18:21','2021-04-30 01:18:21','a504914b-c2d0-42a3-9146-ed9ccb06622d','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(36002,153622,1,'2021-04-30 01:18:21','2021-04-30 01:18:21','26e6105b-0b19-4e6b-b122-435ebd6002dd','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(36003,153626,1,'2021-04-30 01:19:58','2021-04-30 01:19:58','b4db7bcf-abd7-4325-8208-db23df6460cd','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(36004,153627,1,'2021-04-30 01:19:58','2021-04-30 01:19:58','07cda066-bad7-457f-843d-85815ee4042f','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(36005,153630,1,'2021-04-30 01:19:58','2021-04-30 01:19:58','a32f4794-e78c-469c-bf59-b308ed1187a4','Phase 1B rollout FAQs',NULL,1,'solid'),(36006,153633,1,'2021-04-30 01:19:58','2021-04-30 01:19:58','172c11e9-4eab-4ac9-95ad-f7940c302255','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(36007,153639,1,'2021-04-30 01:19:58','2021-04-30 01:19:58','1d334cf8-abf8-4c07-bb96-f66669152dc3','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(36008,153642,1,'2021-04-30 01:19:58','2021-04-30 01:19:58','727b4abb-3af4-48cb-929f-7fc9113bbb82','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(36009,153644,1,'2021-04-30 01:19:58','2021-04-30 01:19:58','b1c42e36-d894-4c1d-98ce-7c22f6ae1257','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(36010,153646,1,'2021-04-30 01:19:58','2021-04-30 01:19:58','daeae0da-fa78-4271-a3bc-157bca8ec8de','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(36011,153649,1,'2021-04-30 01:19:58','2021-04-30 01:19:58','6f0e4133-d95b-4250-bacc-26c914fcfea9','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(36012,153651,1,'2021-04-30 01:19:58','2021-04-30 01:19:58','d85436f5-1bce-4faf-a26f-a0044daf05a7','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(36013,153653,1,'2021-04-30 01:19:58','2021-04-30 01:19:58','03b2d523-99e2-4c69-8b71-bc3002f4f853','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(36014,153656,1,'2021-04-30 01:19:58','2021-04-30 01:19:58','10d2bf09-93a9-4830-beb6-de555a811d1f','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(36015,153657,1,'2021-04-30 01:19:58','2021-04-30 01:19:58','82bc29a2-1441-42ba-9971-b225c7199483','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(36016,153660,1,'2021-04-30 01:19:58','2021-04-30 01:19:58','52a2d53a-d200-490d-a513-9b96e74b2e11','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(36017,153663,1,'2021-04-30 01:19:58','2021-04-30 01:19:58','b97e930a-4c26-479c-8273-a35e226088b6','Subscribe to updates',NULL,1,'solid'),(36018,153665,1,'2021-04-30 01:19:58','2021-04-30 01:19:58','3b26cbbf-cf25-4b2d-915a-f639dd889322','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(36019,153666,1,'2021-04-30 01:19:58','2021-04-30 01:19:58','b9673962-077b-42a1-9fb8-6447e1eca818','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(36020,153670,1,'2021-04-30 01:20:38','2021-04-30 01:20:38','60d22445-a5e7-457f-8d1e-42cd0927f92d','For GPs',NULL,1,'link'),(36021,153671,1,'2021-04-30 01:20:38','2021-04-30 01:20:38','4b83b522-6bd4-4152-9c5f-1fdda63acf58','For RACFs',NULL,1,'link'),(36022,153672,1,'2021-04-30 01:20:38','2021-04-30 01:20:38','2e3e50b4-75b1-4a25-999b-3bdad3c12193','For community',NULL,1,'link'),(36023,153677,1,'2021-04-30 01:20:38','2021-04-30 01:20:38','35e85a8b-410c-494f-91c1-c86e9259f514','Learn more','https://anytimehealthadvice.org.au/',1,'link'),(36024,153678,1,'2021-04-30 01:20:38','2021-04-30 01:20:38','dc65931c-adc8-4b7b-93bb-176680062793','Visit the symptom checker','https://www.healthdirect.gov.au/symptom-checker/tool',1,'link'),(36025,153679,1,'2021-04-30 01:20:38','2021-04-30 01:20:38','d5eae65f-1f99-4d9b-ae86-2c1f001bbbd1','Order a fridge magnet','https://anytimehealthadvice.org.au/#free-magnet',1,'link'),(36026,153699,1,'2021-04-30 01:24:41','2021-04-30 02:02:11','1ca80346-4e9e-4d17-b82a-98e3385b88dc','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113929&focal=none',1,'outline'),(36027,153700,1,'2021-04-30 01:24:41','2021-04-30 02:02:11','cf0aaeb5-5bb3-4e3b-864d-c272327e3b54','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113929&focal=none',1,'outline'),(36028,153701,1,'2021-04-30 01:24:41','2021-04-30 02:02:11','54863883-1939-4bd7-9623-7a75f187e767','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Referral-PractiX-v4_9-2.doc?mtime=20200521161148&focal=none',1,'outline'),(36029,153702,1,'2021-04-30 01:24:41','2021-04-30 02:02:11','967628b4-5aad-4f2b-aac4-3bbdfee63bd7','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Ref-v6_2-ZM1-3.rtf?mtime=20200521161318&focal=none',1,'outline'),(36030,153704,1,'2021-04-30 01:24:41','2021-04-30 02:02:11','054674ea-491f-4b15-9bfa-5f356174b979','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-TPCH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113931&focal=none',1,'outline'),(36031,153705,1,'2021-04-30 01:24:41','2021-04-30 02:02:11','d50b0c3f-cf7f-4472-b86f-33275375e0a0','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112623&focal=none',1,'outline'),(36032,153706,1,'2021-04-30 01:24:41','2021-04-30 02:02:11','25ea3b09-08c3-4ef8-abf5-85b4c5488a29','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-PCH-PractiX-v4_12-1.doc?mtime=20200522124052&focal=none',1,'outline'),(36033,153707,1,'2021-04-30 01:24:41','2021-04-30 02:02:11','7ba163df-aacf-4bf9-bf2e-a0b9ba87d3e1','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Ref-v6_2-ZM-1.rtf?mtime=20200522124257&focal=none',0,'outline'),(36034,153709,1,'2021-04-30 01:24:41','2021-04-30 02:02:11','b6192530-722f-4da2-a801-c14568876242','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Redcliffe-Adult-Referral-v6.3-MD.rtf?mtime=20210430113930&focal=none',1,'outline'),(36035,153710,1,'2021-04-30 01:24:41','2021-04-30 02:02:11','c2316b0d-60e1-427c-b463-045962c678a1','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Adult-Referral-v6.3-BP.rtf?mtime=20210430112621&focal=none',1,'outline'),(36036,153711,1,'2021-04-30 01:24:41','2021-04-30 02:02:11','3884c340-9d81-499f-890a-714ae960737f','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-PractiX-v4_12-1.doc?mtime=20200522125843&focal=none',1,'outline'),(36037,153712,1,'2021-04-30 01:24:41','2021-04-30 02:02:11','9f781cae-c775-4264-8d70-4b0b5d2799dd','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522130025&focal=none',1,'outline'),(36038,153714,1,'2021-04-30 01:24:41','2021-04-30 02:02:11','1585b2bf-ac59-44da-a0b3-a4e804ac0e2b','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Caboolture-Adult-Referral-v6.3-MD.rtf?mtime=20210430113920&focal=none',1,'outline'),(36039,153715,1,'2021-04-30 01:24:41','2021-04-30 02:02:11','59acd2c0-0e8d-475e-bc84-2f8cd0cb0384','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Adult-Referral-v6.3-BP.rtf?mtime=20210430115701&focal=none',1,'outline'),(36040,153716,1,'2021-04-30 01:24:41','2021-04-30 02:02:11','cf2407ab-5815-4720-982b-754bc7cd2de1','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Cab-Referral-PractiX-v4_12-1.doc?mtime=20200522152242&focal=none',1,'outline'),(36041,153717,1,'2021-04-30 01:24:41','2021-04-30 02:02:11','f07710e5-425a-4a67-991f-6bb95965718d','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522152403&focal=none',1,'outline'),(36042,153719,1,'2021-04-30 01:24:41','2021-04-30 02:02:11','4b949397-c94e-46e0-a168-d1f578a56da5','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Palliative-Care-Referral-v6.3-MD.rtf?mtime=20210430113927&focal=none',1,'outline'),(36043,153720,1,'2021-04-30 01:24:41','2021-04-30 02:02:11','baf544f5-8781-4e60-bb85-c118f71192aa','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Referral-v6.3-BP.rtf?mtime=20210430112617&focal=none',1,'outline'),(36044,153721,1,'2021-04-30 01:24:42','2021-04-30 02:02:11','96d155e8-6075-4b2c-9041-98d3f78ba0d5','PractiX',NULL,1,'outline'),(36045,153722,1,'2021-04-30 01:24:42','2021-04-30 02:02:11','b3105c0f-78c6-4ca7-bc3a-fb7d757f30e9','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Ref-v6.2-ZM.rtf?mtime=20200522153215&focal=none',1,'outline'),(36046,153724,1,'2021-04-30 01:24:42','2021-04-30 02:02:11','72761e2c-c8f8-4842-8ba4-e7ed1ba7291b','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Maternity-Referral-v6.3-MD.rtf?mtime=20210430113924&focal=none',1,'outline'),(36047,153725,1,'2021-04-30 01:24:42','2021-04-30 02:02:11','da51cfd0-007a-48c0-a0f5-f13da6b332c1','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Referral-v6.3-BP.rtf?mtime=20210430115904&focal=none',1,'outline'),(36048,153726,1,'2021-04-30 01:24:42','2021-04-30 02:02:11','b1c2969b-6d60-4828-b5c7-f4a10d72ed37','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-PractiX-v4_12-1.doc?mtime=20200522153957&focal=none',1,'outline'),(36049,153727,1,'2021-04-30 01:24:42','2021-04-30 02:02:11','4f481f6c-7355-4691-9c10-2bdcf8fc7c2d','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Ref-v6_2-ZM-1.rtf?mtime=20200522154107&focal=none',1,'outline'),(36050,153729,1,'2021-04-30 01:24:42','2021-04-30 02:02:11','05220da9-b89c-4f6a-ae35-2c77e69f2a4f','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Paediatric-Referral-v6.3-MD.rtf?mtime=20210430113925&focal=none',1,'outline'),(36051,153730,1,'2021-04-30 01:24:42','2021-04-30 02:02:11','4d274155-0304-4432-81d6-04266a91ab67','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Referral-v6.3-BP.rtf?mtime=20210430112614&focal=none',1,'outline'),(36052,153731,1,'2021-04-30 01:24:42','2021-04-30 02:02:11','814becf9-6778-4719-b0e8-d76b1a11bc22','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-PractiX-v4_12-1.doc?mtime=20200522154912&focal=none',1,'outline'),(36053,153732,1,'2021-04-30 01:24:42','2021-04-30 02:02:11','ad97bebb-0743-48f4-91b2-39b6f44acb03','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Ref-v6_2-ZM-1.rtf?mtime=20200522155024&focal=none',1,'outline'),(36054,153734,1,'2021-04-30 01:24:42','2021-04-30 02:02:11','96b9c1c3-010c-41f5-a85f-a7be9dc7649d','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-COHD-Adult-Referral-v6.3-MD.rtf?mtime=20210430113922&focal=none',1,'outline'),(36055,153735,1,'2021-04-30 01:24:42','2021-04-30 02:02:11','beae5563-d7c0-4c1d-ae26-334a17791147','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-COHD-Adult-Referral-v6.3-BP.rtf?mtime=20210430120142&focal=none',1,'outline'),(36056,153736,1,'2021-04-30 01:24:42','2021-04-30 02:02:11','befb22bf-5f0a-4c7d-a4d8-6ed7162452f9','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Community-and-Oral-Health-Directorate-Ref-v6.2-ZM.rtf?mtime=20200807161125&focal=none',1,'outline'),(36057,153739,1,'2021-04-30 01:24:42','2021-04-30 02:02:11','70fe6ef3-f326-4700-bb30-d981b3e4bd85','Service information','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient',1,'solid'),(36058,153740,1,'2021-04-30 01:24:42','2021-04-30 02:02:11','f1afb9a3-3bf4-4af2-9eb2-d910babfffbf','Find a specialist','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'solid'),(36059,153742,1,'2021-04-30 01:24:42','2021-04-30 02:02:11','44341b82-17c4-4650-a840-53e08d427a4d','Download the FAQs','https://metronorth.health.qld.gov.au/wp-content/uploads/2017/11/CPI-FAQ-V2.pdf',1,'solid'),(36060,153781,1,'2021-04-30 02:02:30','2021-05-06 05:06:57','82c94a48-670f-476e-802f-49d9a47b8e11','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113929&focal=none',1,'outline'),(36061,153782,1,'2021-04-30 02:02:30','2021-05-06 05:06:57','18f0c222-326b-4a4b-bbba-263889722c51','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112619&focal=none',1,'outline'),(36062,153783,1,'2021-04-30 02:02:30','2021-05-06 05:06:57','6fbcca17-3f70-4939-9bb9-785fae31aad2','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Referral-PractiX-v4_9-2.doc?mtime=20200521161148&focal=none',1,'outline'),(36063,153784,1,'2021-04-30 02:02:30','2021-05-06 05:06:57','f1fcda19-06c4-413f-8205-d35a94b4244f','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Ref-v6_2-ZM1-3.rtf?mtime=20200521161318&focal=none',1,'outline'),(36064,153786,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','735d6f83-e440-455d-bf6b-4f8baa48fb04','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-TPCH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113931&focal=none',1,'outline'),(36065,153787,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','0fa6a58c-fa5a-473d-a701-7ed7449c114a','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112623&focal=none',1,'outline'),(36066,153788,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','90b82e30-cf58-4eb0-8a03-b3bb06eb9145','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-PCH-PractiX-v4_12-1.doc?mtime=20200522124052&focal=none',1,'outline'),(36067,153789,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','c6cd4421-9413-44bb-99e2-7f702cc1a5ba','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Ref-v6_2-ZM-1.rtf?mtime=20200522124257&focal=none',0,'outline'),(36068,153791,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','e1f10fc1-c8ad-4bf0-b3b7-8bc079ebf268','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Redcliffe-Adult-Referral-v6.3-MD.rtf?mtime=20210430113930&focal=none',1,'outline'),(36069,153792,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','aaa94be2-8d08-4c47-a703-e7dcb93a280c','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Adult-Referral-v6.3-BP.rtf?mtime=20210430112621&focal=none',1,'outline'),(36070,153793,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','76c52a96-4414-4ed4-9f66-517bc5a65cb2','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-PractiX-v4_12-1.doc?mtime=20200522125843&focal=none',1,'outline'),(36071,153794,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','fe419ccc-5776-482f-a0b7-61524c7fa360','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522130025&focal=none',1,'outline'),(36072,153796,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','d67bf3e8-1ffa-4822-aa02-a61fc0eae69c','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Caboolture-Adult-Referral-v6.3-MD.rtf?mtime=20210430113920&focal=none',1,'outline'),(36073,153797,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','001bd161-2182-4e29-984c-866e212ef394','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Adult-Referral-v6.3-BP.rtf?mtime=20210430115701&focal=none',1,'outline'),(36074,153798,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','9607aeba-4b86-44ad-b521-26f2c4d2bbc6','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Cab-Referral-PractiX-v4_12-1.doc?mtime=20200522152242&focal=none',1,'outline'),(36075,153799,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','baac748c-9a20-4fb6-ba7f-21c359b3a6d0','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522152403&focal=none',1,'outline'),(36076,153801,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','e36b8320-e71f-46ca-9de8-b5c5d276ec7b','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Palliative-Care-Referral-v6.3-MD.rtf?mtime=20210430113927&focal=none',1,'outline'),(36077,153802,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','63d14172-c9d7-4d9f-a3b4-dbb382b5459c','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Referral-v6.3-BP.rtf?mtime=20210430112617&focal=none',1,'outline'),(36078,153803,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','83757eae-1b1f-4d8d-bfdc-25ed5cf1cde8','PractiX',NULL,1,'outline'),(36079,153804,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','0b3eb732-f3cd-4f69-a6cf-bb08b1fd7653','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Ref-v6.2-ZM.rtf?mtime=20200522153215&focal=none',1,'outline'),(36080,153806,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','1eeb2c14-1d46-4461-8d18-f3307495308f','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Maternity-Referral-v6.3-MD.rtf?mtime=20210430113924&focal=none',1,'outline'),(36081,153807,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','6f7fd84e-0f70-414d-884f-04b8898e4af5','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Referral-v6.3-BP.rtf?mtime=20210430115904&focal=none',1,'outline'),(36082,153808,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','1da692ff-0b1b-4dc5-8644-a7c105ea8392','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-PractiX-v4_12-1.doc?mtime=20200522153957&focal=none',1,'outline'),(36083,153809,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','7e944f24-ec4d-4e92-bd5b-22077b883f21','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Ref-v6_2-ZM-1.rtf?mtime=20200522154107&focal=none',1,'outline'),(36084,153811,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','52a6db9d-796d-4f84-a7e3-23cd514f5e8e','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Paediatric-Referral-v6.3-MD.rtf?mtime=20210430113925&focal=none',1,'outline'),(36085,153812,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','416468c5-da79-4529-879b-73eb8f84e082','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Referral-v6.3-BP.rtf?mtime=20210430112614&focal=none',1,'outline'),(36086,153813,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','0a714457-f5ad-43d1-b0b0-7e592bd73e81','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-PractiX-v4_12-1.doc?mtime=20200522154912&focal=none',1,'outline'),(36087,153814,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','04d4dd59-aaea-4111-ae23-1eb27b3f4354','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Ref-v6_2-ZM-1.rtf?mtime=20200522155024&focal=none',1,'outline'),(36088,153816,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','82de4111-8fca-40c1-a63b-718071fcfbfe','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-COHD-Adult-Referral-v6.3-MD.rtf?mtime=20210430113922&focal=none',1,'outline'),(36089,153817,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','da25b614-f6fd-4514-b52c-00ebacf2d092','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-COHD-Adult-Referral-v6.3-BP.rtf?mtime=20210430120142&focal=none',1,'outline'),(36090,153818,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','2c96e06e-b37d-499a-87a1-97505dacd576','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Community-and-Oral-Health-Directorate-Ref-v6.2-ZM.rtf?mtime=20200807161125&focal=none',1,'outline'),(36091,153821,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','6903ec5a-b6f3-483e-9911-c19b7c85a7bf','Service information','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient',1,'solid'),(36092,153822,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','04c40ea4-39f4-4420-bc7c-bc193d53bec1','Find a specialist','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'solid'),(36093,153824,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','573656fe-9268-4492-8501-a5965438bbeb','Download the FAQs','https://metronorth.health.qld.gov.au/wp-content/uploads/2017/11/CPI-FAQ-V2.pdf',1,'solid'),(36094,153846,1,'2021-04-30 02:02:32','2021-04-30 02:02:32','8729b1a6-a00a-41b7-a985-03702151a928','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113929&focal=none',1,'outline'),(36095,153847,1,'2021-04-30 02:02:32','2021-04-30 02:02:32','edc9dcda-fe03-46a2-b095-1f6138c712bb','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113929&focal=none',1,'outline'),(36096,153848,1,'2021-04-30 02:02:32','2021-04-30 02:02:32','0949a022-e0b4-44f9-aff8-5593d7622ad0','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Referral-PractiX-v4_9-2.doc?mtime=20200521161148&focal=none',1,'outline'),(36097,153849,1,'2021-04-30 02:02:32','2021-04-30 02:02:32','48deca1b-a643-4de0-a079-4501836e9d11','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Ref-v6_2-ZM1-3.rtf?mtime=20200521161318&focal=none',1,'outline'),(36098,153851,1,'2021-04-30 02:02:32','2021-04-30 02:02:32','589a2224-4684-4400-88b1-de4f80c1b389','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-TPCH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113931&focal=none',1,'outline'),(36099,153852,1,'2021-04-30 02:02:32','2021-04-30 02:02:32','880ff006-d151-4fe0-94ec-50ddd47e1f45','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112623&focal=none',1,'outline'),(36100,153853,1,'2021-04-30 02:02:32','2021-04-30 02:02:32','c061ec72-8d55-444a-8d3a-3ee462db85d3','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-PCH-PractiX-v4_12-1.doc?mtime=20200522124052&focal=none',1,'outline'),(36101,153854,1,'2021-04-30 02:02:32','2021-04-30 02:02:32','f1db57c8-3119-4281-b1d2-5a9e048f0bcb','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Ref-v6_2-ZM-1.rtf?mtime=20200522124257&focal=none',0,'outline'),(36102,153856,1,'2021-04-30 02:02:32','2021-04-30 02:02:32','2bb62430-2b69-414e-97ff-e624ac81e7cb','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Redcliffe-Adult-Referral-v6.3-MD.rtf?mtime=20210430113930&focal=none',1,'outline'),(36103,153857,1,'2021-04-30 02:02:32','2021-04-30 02:02:32','3739d418-8c63-4ce8-b85c-32d9e9e7bbde','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Adult-Referral-v6.3-BP.rtf?mtime=20210430112621&focal=none',1,'outline'),(36104,153858,1,'2021-04-30 02:02:32','2021-04-30 02:02:32','961b5c47-e0ac-44c9-817e-7b0a1b45fa6d','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-PractiX-v4_12-1.doc?mtime=20200522125843&focal=none',1,'outline'),(36105,153859,1,'2021-04-30 02:02:32','2021-04-30 02:02:32','1eaf4461-28d3-4703-a27c-c026fd8f71e4','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522130025&focal=none',1,'outline'),(36106,153861,1,'2021-04-30 02:02:33','2021-04-30 02:02:33','a3ad946c-e049-4b8d-ac2a-85d4dd27077c','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Caboolture-Adult-Referral-v6.3-MD.rtf?mtime=20210430113920&focal=none',1,'outline'),(36107,153862,1,'2021-04-30 02:02:33','2021-04-30 02:02:33','cfbc4f4f-bf6b-4115-8d0b-c97f4832bb3f','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Adult-Referral-v6.3-BP.rtf?mtime=20210430115701&focal=none',1,'outline'),(36108,153863,1,'2021-04-30 02:02:33','2021-04-30 02:02:33','27a0171f-2390-448a-b589-22ba4972549c','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Cab-Referral-PractiX-v4_12-1.doc?mtime=20200522152242&focal=none',1,'outline'),(36109,153864,1,'2021-04-30 02:02:33','2021-04-30 02:02:33','9e38c41a-d35b-446d-a792-b20327514145','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522152403&focal=none',1,'outline'),(36110,153866,1,'2021-04-30 02:02:33','2021-04-30 02:02:33','3f631b6a-b171-4735-a5d1-5078c2bfe10d','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Palliative-Care-Referral-v6.3-MD.rtf?mtime=20210430113927&focal=none',1,'outline'),(36111,153867,1,'2021-04-30 02:02:33','2021-04-30 02:02:33','f3d9387a-6181-4d47-b519-c43719a89135','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Referral-v6.3-BP.rtf?mtime=20210430112617&focal=none',1,'outline'),(36112,153868,1,'2021-04-30 02:02:33','2021-04-30 02:02:33','ced80732-a515-4e18-a273-e77b84253b70','PractiX',NULL,1,'outline'),(36113,153869,1,'2021-04-30 02:02:33','2021-04-30 02:02:33','4c680995-af4c-464c-a69f-67e3d33e4b06','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Ref-v6.2-ZM.rtf?mtime=20200522153215&focal=none',1,'outline'),(36114,153871,1,'2021-04-30 02:02:33','2021-04-30 02:02:33','9f21eae8-4773-482f-bc55-9bcb52d0ae51','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Maternity-Referral-v6.3-MD.rtf?mtime=20210430113924&focal=none',1,'outline'),(36115,153872,1,'2021-04-30 02:02:33','2021-04-30 02:02:33','048836ee-9703-4821-9229-01cc11df5133','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Referral-v6.3-BP.rtf?mtime=20210430115904&focal=none',1,'outline'),(36116,153873,1,'2021-04-30 02:02:33','2021-04-30 02:02:33','6aa989d0-8581-42a2-a8d9-bc28630951c8','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-PractiX-v4_12-1.doc?mtime=20200522153957&focal=none',1,'outline'),(36117,153874,1,'2021-04-30 02:02:33','2021-04-30 02:02:33','e208177d-0a81-4f0f-9caa-9766324dc7e0','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Ref-v6_2-ZM-1.rtf?mtime=20200522154107&focal=none',1,'outline'),(36118,153876,1,'2021-04-30 02:02:33','2021-04-30 02:02:33','094ed992-44b5-4519-a605-4064480467ad','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Paediatric-Referral-v6.3-MD.rtf?mtime=20210430113925&focal=none',1,'outline'),(36119,153877,1,'2021-04-30 02:02:33','2021-04-30 02:02:33','f65e1f6c-090d-4aac-830d-8ed10b1bb772','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Referral-v6.3-BP.rtf?mtime=20210430112614&focal=none',1,'outline'),(36120,153878,1,'2021-04-30 02:02:33','2021-04-30 02:02:33','c5405dc5-aec3-4e18-adb0-2cb76383f57c','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-PractiX-v4_12-1.doc?mtime=20200522154912&focal=none',1,'outline'),(36121,153879,1,'2021-04-30 02:02:33','2021-04-30 02:02:33','225032e5-e8cc-49bf-9487-589291d52c39','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Ref-v6_2-ZM-1.rtf?mtime=20200522155024&focal=none',1,'outline'),(36122,153881,1,'2021-04-30 02:02:33','2021-04-30 02:02:33','293b5c5d-ebda-4bc1-bf9f-1f1075a115c5','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-COHD-Adult-Referral-v6.3-MD.rtf?mtime=20210430113922&focal=none',1,'outline'),(36123,153882,1,'2021-04-30 02:02:33','2021-04-30 02:02:33','f7712e15-bd79-4217-81a2-8fbd9dd36b5c','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-COHD-Adult-Referral-v6.3-BP.rtf?mtime=20210430120142&focal=none',1,'outline'),(36124,153883,1,'2021-04-30 02:02:33','2021-04-30 02:02:33','099e91b5-f917-4bc0-ac5b-e54a9f263157','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Community-and-Oral-Health-Directorate-Ref-v6.2-ZM.rtf?mtime=20200807161125&focal=none',1,'outline'),(36125,153886,1,'2021-04-30 02:02:33','2021-04-30 02:02:33','9ea184e3-a1bd-438d-8af2-2f3e264bae1a','Service information','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient',1,'solid'),(36126,153887,1,'2021-04-30 02:02:33','2021-04-30 02:02:33','b9e2fd70-b46f-46ec-a083-bcced4698a2d','Find a specialist','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'solid'),(36127,153889,1,'2021-04-30 02:02:33','2021-04-30 02:02:33','955fe373-c10e-476a-9e96-a6f4fd71f464','Download the FAQs','https://metronorth.health.qld.gov.au/wp-content/uploads/2017/11/CPI-FAQ-V2.pdf',1,'solid'),(36128,153911,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','308f3441-049d-4e6b-aa4c-469e359d6940','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113929&focal=none',1,'outline'),(36129,153912,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','2c4fd032-7a7e-44a9-abcd-a18a20866713','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113929&focal=none',1,'outline'),(36130,153913,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','1804feed-884d-471a-8769-259b48a5c103','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Referral-PractiX-v4_9-2.doc?mtime=20200521161148&focal=none',1,'outline'),(36131,153914,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','90b9f5a2-883f-4027-b8a7-17ede81137c5','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Ref-v6_2-ZM1-3.rtf?mtime=20200521161318&focal=none',1,'outline'),(36132,153916,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','16b91ea3-fbb0-4fa5-92f8-86cdfba341d4','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-TPCH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113931&focal=none',1,'outline'),(36133,153917,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','0c2b612d-0a5f-4bb6-b6d3-5dd958706204','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112623&focal=none',1,'outline'),(36134,153918,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','79085b57-721d-4185-8f3f-c23a0d6128c9','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-PCH-PractiX-v4_12-1.doc?mtime=20200522124052&focal=none',1,'outline'),(36135,153919,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','24ba2078-2b00-4e28-9dbb-ef6656e2a9b2','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Ref-v6_2-ZM-1.rtf?mtime=20200522124257&focal=none',0,'outline'),(36136,153921,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','cc03e420-de93-4ac4-8083-a2809a8917bd','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Redcliffe-Adult-Referral-v6.3-MD.rtf?mtime=20210430113930&focal=none',1,'outline'),(36137,153922,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','21d30e47-5d9d-422b-87d2-20b248434568','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Adult-Referral-v6.3-BP.rtf?mtime=20210430112621&focal=none',1,'outline'),(36138,153923,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','0ceddbaf-9814-41c0-8619-b5ae73de6a78','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-PractiX-v4_12-1.doc?mtime=20200522125843&focal=none',1,'outline'),(36139,153924,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','0e69425b-2d50-46c6-9d46-2af8477c149e','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522130025&focal=none',1,'outline'),(36140,153926,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','339b1bf3-9d3a-4561-80d1-26f5bc9b40c9','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Caboolture-Adult-Referral-v6.3-MD.rtf?mtime=20210430113920&focal=none',1,'outline'),(36141,153927,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','d0c7432e-563f-4753-ae59-c83de94b62e3','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Adult-Referral-v6.3-BP.rtf?mtime=20210430115701&focal=none',1,'outline'),(36142,153928,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','f96c84a8-aebe-45ab-bbf8-eeecdab4a917','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Cab-Referral-PractiX-v4_12-1.doc?mtime=20200522152242&focal=none',1,'outline'),(36143,153929,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','be9498db-ed63-4063-9bb6-e1dcc59547cf','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522152403&focal=none',1,'outline'),(36144,153931,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','02863aaa-b518-4dd1-bbd4-da679152cccf','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Palliative-Care-Referral-v6.3-MD.rtf?mtime=20210430113927&focal=none',1,'outline'),(36145,153932,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','1a6486bb-16f0-49c5-9c69-78117dcad3cd','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Referral-v6.3-BP.rtf?mtime=20210430112617&focal=none',1,'outline'),(36146,153933,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','42eb9a73-a0c2-4a0b-9709-078a18a6ccfa','PractiX',NULL,1,'outline'),(36147,153934,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','9b0d306e-8dbb-4318-a2a5-9ba2e6d19897','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Ref-v6.2-ZM.rtf?mtime=20200522153215&focal=none',1,'outline'),(36148,153936,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','bf04795f-22d9-4e72-9f76-003cc58c2caa','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Maternity-Referral-v6.3-MD.rtf?mtime=20210430113924&focal=none',1,'outline'),(36149,153937,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','d3e65b3e-6675-4f20-994c-2de99668a931','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Referral-v6.3-BP.rtf?mtime=20210430115904&focal=none',1,'outline'),(36150,153938,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','d61d32ad-53e9-420d-ab11-0dcf24bc798a','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-PractiX-v4_12-1.doc?mtime=20200522153957&focal=none',1,'outline'),(36151,153939,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','d1392c2c-b2ff-410d-9af9-463c2037181d','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Ref-v6_2-ZM-1.rtf?mtime=20200522154107&focal=none',1,'outline'),(36152,153941,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','992c72b2-aaff-46bc-86c7-98bf46985a1c','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Paediatric-Referral-v6.3-MD.rtf?mtime=20210430113925&focal=none',1,'outline'),(36153,153942,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','9795bcec-281b-4b69-9eff-8109ba7462e5','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Referral-v6.3-BP.rtf?mtime=20210430112614&focal=none',1,'outline'),(36154,153943,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','157074e5-f32a-4b0f-a2e7-13e4b2ec11bf','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-PractiX-v4_12-1.doc?mtime=20200522154912&focal=none',1,'outline'),(36155,153944,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','0c68759c-ac7d-4336-b50c-841e5cb7a992','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Ref-v6_2-ZM-1.rtf?mtime=20200522155024&focal=none',1,'outline'),(36156,153946,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','d76b1f41-811d-4cd8-8a8c-e8de3b2b8059','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-COHD-Adult-Referral-v6.3-MD.rtf?mtime=20210430113922&focal=none',1,'outline'),(36157,153947,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','bdff9691-5864-4650-abcb-cad9447478a8','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-COHD-Adult-Referral-v6.3-BP.rtf?mtime=20210430120142&focal=none',1,'outline'),(36158,153948,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','e5169ad4-cb1c-4fcd-bcd7-b17addefaa25','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Community-and-Oral-Health-Directorate-Ref-v6.2-ZM.rtf?mtime=20200807161125&focal=none',1,'outline'),(36159,153951,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','e7ea59f6-59be-4b7b-9cc6-33730456fee0','Service information','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient',1,'solid'),(36160,153952,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','bd1cad85-44bd-4487-89b7-4c8560bffdb9','Find a specialist','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'solid'),(36161,153954,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','1eaf3de3-8f15-4211-ab93-f7f2a0c86762','Download the FAQs','https://metronorth.health.qld.gov.au/wp-content/uploads/2017/11/CPI-FAQ-V2.pdf',1,'solid'),(36162,154008,1,'2021-05-04 03:00:32','2021-05-04 03:00:32','638d8a5c-ed46-4d4b-8d08-2d43b14ad425','Expression of Interest for Clinicians\' Advisory Group Members','https://brisbanenorthphn.org.au/jobs/expression-of-interest-for-clinicians-advisory-group-members',1,'solid'),(36163,154009,1,'2021-05-04 03:00:32','2021-05-04 03:00:32','71b987db-1ea6-48fd-8cdd-281fe56fab94','Program Support Officer | Healthy Ageing','https://brisbanenorthphn.org.au/jobs/program-support-officer-healthy-ageing',1,'solid'),(36164,154012,1,'2021-05-04 03:00:32','2021-05-04 03:00:32','7bc34ba8-e18a-4cb0-8a26-c808446529f8','Browse local positions vacant',NULL,0,'solid'),(36165,154186,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','a8d1d587-b447-4ca2-9646-fca05368a94c','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113929&focal=none',1,'outline'),(36166,154187,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','40b01733-6773-47d7-a6a8-921341c8695d','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112619&focal=none',1,'outline'),(36167,154188,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','bf8a69e6-bb37-4f8c-90b7-cd491720881d','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Referral-PractiX-v4_9-2.doc?mtime=20200521161148&focal=none',1,'outline'),(36168,154189,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','40ae5554-033e-4a21-9ba9-8f1cdefe940e','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Ref-v6_2-ZM1-3.rtf?mtime=20200521161318&focal=none',1,'outline'),(36169,154191,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','5ca1b855-0f50-445c-a5c5-f607a8dfd87c','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-TPCH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113931&focal=none',1,'outline'),(36170,154192,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','eefd16b6-7af0-4561-bcb9-96b72af00f98','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112623&focal=none',1,'outline'),(36171,154193,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','5541ff40-8b79-42c0-aa6a-b11b66369908','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-PCH-PractiX-v4_12-1.doc?mtime=20200522124052&focal=none',1,'outline'),(36172,154194,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','c4d5439a-09a3-47bd-991e-1b012ee1599a','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Ref-v6_2-ZM-1.rtf?mtime=20200522124257&focal=none',0,'outline'),(36173,154196,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','868ee30e-d9b0-4a33-a495-811c529df9f2','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Redcliffe-Adult-Referral-v6.3-MD.rtf?mtime=20210430113930&focal=none',1,'outline'),(36174,154197,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','c47af98d-f267-4f93-bcf4-b0e15423ab28','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Adult-Referral-v6.3-BP.rtf?mtime=20210430112621&focal=none',1,'outline'),(36175,154198,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','da023c19-31bb-4ca5-a2ae-623f87187822','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-PractiX-v4_12-1.doc?mtime=20200522125843&focal=none',1,'outline'),(36176,154199,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','6ed31a1c-5a52-49f7-89e0-89a20a2c3a29','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522130025&focal=none',1,'outline'),(36177,154201,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','44e87cca-e49c-46c6-bb34-1485b52def93','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Caboolture-Adult-Referral-v6.3-MD.rtf?mtime=20210430113920&focal=none',1,'outline'),(36178,154202,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','1adb4e36-f2e0-47b5-baf9-b1fee212ab52','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Adult-Referral-v6.3-BP.rtf?mtime=20210430115701&focal=none',1,'outline'),(36179,154203,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','bac90816-c2c9-4b64-bbc1-66cd00f81257','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Cab-Referral-PractiX-v4_12-1.doc?mtime=20200522152242&focal=none',1,'outline'),(36180,154204,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','abfa383f-9ffa-4485-a9b0-32c7bac93623','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522152403&focal=none',1,'outline'),(36181,154206,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','3a7ac086-4198-415e-aa3b-e10bc208abcf','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Palliative-Care-Referral-v6.3-MD.rtf?mtime=20210430113927&focal=none',1,'outline'),(36182,154207,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','d427e355-22c1-4bc7-a265-662ff6b90f68','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Referral-v6.3-BP.rtf?mtime=20210430112617&focal=none',1,'outline'),(36183,154208,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','58d25fda-368a-4f06-8084-65a7973c4269','PractiX',NULL,1,'outline'),(36184,154209,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','ad8c8d82-c190-465b-bdd6-8096b1ecd4b2','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Ref-v6.2-ZM.rtf?mtime=20200522153215&focal=none',1,'outline'),(36185,154211,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','d5a66597-0c2c-42e8-ae5a-92cfd89af028','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Maternity-Referral-v6.3-MD.rtf?mtime=20210430113924&focal=none',1,'outline'),(36186,154212,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','bdcea991-e640-4a08-b34b-85803cdfa3f6','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Referral-v6.3-BP.rtf?mtime=20210430115904&focal=none',1,'outline'),(36187,154213,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','ac0ba243-2f6a-4ca6-8b5f-83dfb4662134','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-PractiX-v4_12-1.doc?mtime=20200522153957&focal=none',1,'outline'),(36188,154214,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','2bd04295-bfb1-46fc-a86d-517211922ead','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Ref-v6_2-ZM-1.rtf?mtime=20200522154107&focal=none',1,'outline'),(36189,154216,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','90f25df6-c77a-4f76-9e35-b71cefb3c68d','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Paediatric-Referral-v6.3-MD.rtf?mtime=20210430113925&focal=none',1,'outline'),(36190,154217,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','31c25786-67fd-484b-be76-53d3afae40c1','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Referral-v6.3-BP.rtf?mtime=20210430112614&focal=none',1,'outline'),(36191,154218,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','4c9be5af-2292-416b-8f86-b6c167bed364','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-PractiX-v4_12-1.doc?mtime=20200522154912&focal=none',1,'outline'),(36192,154219,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','5e093443-e516-47b3-82ec-d48269732648','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Ref-v6_2-ZM-1.rtf?mtime=20200522155024&focal=none',1,'outline'),(36193,154221,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','a467d102-c717-490f-9ad5-e04011cf5225','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-COHD-Adult-Referral-v6.3-MD.rtf?mtime=20210430113922&focal=none',1,'outline'),(36194,154222,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','a990671c-f2c1-4417-8042-2bb94f6fdfa2','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-COHD-Adult-Referral-v6.3-BP.rtf?mtime=20210430120142&focal=none',1,'outline'),(36195,154223,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','8d4aaa1c-b152-4be6-8bd3-45ecb36e9e9a','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Community-and-Oral-Health-Directorate-Ref-v6.2-ZM.rtf?mtime=20200807161125&focal=none',1,'outline'),(36196,154226,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','725523d8-dfbd-47e3-9215-608616b738d3','Service information','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient',1,'solid'),(36197,154227,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','76519893-2a0f-481f-896d-b302136a239a','Find a specialist','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'solid'),(36198,154229,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','bcaba13a-bf26-4c2d-8819-dab9bae8069b','Download the FAQs','https://metronorth.health.qld.gov.au/wp-content/uploads/2017/11/CPI-FAQ-V2.pdf',1,'solid'),(36199,154335,1,'2021-05-07 00:41:43','2021-05-07 00:41:51','f0452d52-4c45-40ac-a716-b9b0fa18b98f','Expression of Interest for Clinicians\' Advisory Group Members','https://brisbanenorthphn.org.au/jobs/expression-of-interest-for-clinicians-advisory-group-members',1,'solid'),(36200,154336,1,'2021-05-07 00:41:43','2021-05-07 00:41:51','6dc7a278-32ab-43bc-b232-422a83bda4dc','Program Support Officer | Healthy Ageing','https://brisbanenorthphn.org.au/jobs/program-support-officer-healthy-ageing',1,'solid'),(36201,154339,1,'2021-05-07 00:41:43','2021-05-07 00:41:51','da0f63de-d989-40f4-9e7e-3ff6cab378d2','Browse local positions vacant',NULL,0,'solid'),(36202,154340,1,'2021-05-07 00:41:43','2021-05-07 00:41:43','7ac79359-714c-41ca-8b0f-def8feaa5f75','Service Navigation Coordinator (part-time)','https://brisbanenorthphn.org.au/jobs/service-navigation-coordinator-part-time',1,'solid'),(36203,154341,1,'2021-05-07 00:41:51','2021-05-07 00:41:51','040ea435-f6a0-4267-b7d7-4f96826b6af1','Service Navigation Coordinator (part-time)','https://brisbanenorthphn.org.au/jobs/service-navigation-coordinator-part-time',1,'solid'),(36204,154346,1,'2021-05-07 00:42:02','2021-05-07 00:42:02','00000f3d-c6b5-4085-921c-ace2f5de8837','Expression of Interest for Clinicians\' Advisory Group Members','https://brisbanenorthphn.org.au/jobs/expression-of-interest-for-clinicians-advisory-group-members',1,'solid'),(36205,154347,1,'2021-05-07 00:42:02','2021-05-07 00:42:02','d3b28842-31d1-4608-b772-d69b0af9526e','Program Support Officer | Healthy Ageing','https://brisbanenorthphn.org.au/jobs/program-support-officer-healthy-ageing',1,'solid'),(36206,154348,1,'2021-05-07 00:42:02','2021-05-07 00:42:02','8ae60408-c3ea-45ec-b191-7c930bf9015d','Service Navigation Coordinator (part-time)','https://brisbanenorthphn.org.au/jobs/service-navigation-coordinator-part-time',1,'solid'),(36207,154351,1,'2021-05-07 00:42:02','2021-05-07 00:42:02','ed01fa19-c242-4d1b-bb53-6d2463d83072','Browse local positions vacant',NULL,0,'solid'),(36208,154357,1,'2021-05-07 00:42:02','2021-05-07 00:42:02','0739b21c-d7a4-4cf7-8239-ac268c3a58ef','Expression of Interest for Clinicians\' Advisory Group Members','https://brisbanenorthphn.org.au/jobs/expression-of-interest-for-clinicians-advisory-group-members',1,'solid'),(36209,154358,1,'2021-05-07 00:42:02','2021-05-07 00:42:02','78bbfcea-5a10-472c-bd4e-31b04085efb2','Program Support Officer | Healthy Ageing','https://brisbanenorthphn.org.au/jobs/program-support-officer-healthy-ageing',1,'solid'),(36210,154359,1,'2021-05-07 00:42:02','2021-05-07 00:42:02','4b2c372d-7528-420b-a13e-cd0be44e9a73','Service Navigation Coordinator (part-time)','https://brisbanenorthphn.org.au/jobs/service-navigation-coordinator-part-time',1,'solid'),(36211,154362,1,'2021-05-07 00:42:02','2021-05-07 00:42:02','85e91aa9-7e1c-4972-ab8c-f00d2cd36992','Browse local positions vacant',NULL,0,'solid'),(36212,154468,1,'2021-05-07 02:23:56','2021-05-07 02:23:56','ff9fd7ce-942f-4692-aaf4-5f22ef4efe6f',NULL,NULL,0,'solid'),(36213,154473,1,'2021-05-07 02:24:01','2021-05-07 02:24:01','216c2ca4-17cd-4d7d-b8b4-0e7dd2fca194','Lo',NULL,0,'solid'),(36214,154478,1,'2021-05-07 02:24:05','2021-05-07 02:24:05','ab3a914e-4d2f-4aa7-b6bd-6f818a52b17e','Visit HealthP',NULL,0,'solid'),(36215,154483,1,'2021-05-07 02:24:06','2021-05-07 02:24:06','60c46531-fb42-46d4-9b59-61c81cdb205d','Visit HealthPathwt',NULL,0,'solid'),(36216,154488,1,'2021-05-07 02:24:09','2021-05-07 02:24:09','02a2e5a1-b96c-4dfe-ba88-9844d0dd9a4a','Visit HealthPathways',NULL,0,'solid'),(36217,154493,1,'2021-05-07 02:24:20','2021-05-07 02:24:20','c84b88dd-3dc3-4638-ba1e-238128a9599e','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/LoginFiles/Logon.aspx?ReturnUrl=%2f',0,'solid'),(36218,154498,1,'2021-05-07 02:24:24','2021-05-07 02:24:24','a612947c-e7e7-4f2b-8ed7-cabffc6eafd8','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',0,'solid'),(36219,154503,1,'2021-05-07 02:24:25','2021-05-07 02:24:25','4c3f5fbf-9ac9-4bd5-bac5-f1923c128935','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36220,154508,1,'2021-05-07 02:24:37','2021-05-07 02:24:37','0aac8e80-574c-4c6a-b806-21d58d292569','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36221,154514,1,'2021-05-07 02:24:45','2021-05-07 02:24:45','95838b3f-ca2b-4686-b5a8-9cdc9b45240c','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36222,154520,1,'2021-05-07 02:25:04','2021-05-07 02:25:04','d89c05e6-540f-4a82-aea8-1b70903c0208','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36223,154526,1,'2021-05-07 02:25:06','2021-05-07 02:25:06','c57597f2-ea2b-46c4-92e1-0436e82361ce','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36224,154532,1,'2021-05-07 02:25:08','2021-05-07 02:25:08','42c750ad-a506-41ef-8f52-3e953ff7dbe3','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36225,154534,1,'2021-05-07 02:25:08','2021-05-07 02:25:08','2f07422b-5c22-4281-a289-b322ade13b30',NULL,NULL,0,'solid'),(36226,154539,1,'2021-05-07 02:25:15','2021-05-07 02:25:15','59e74680-57df-444c-b39b-23a8413558db','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36227,154541,1,'2021-05-07 02:25:15','2021-05-07 02:25:15','2b188c32-483a-4371-9441-d08998199187','Visit Metro North',NULL,0,'solid'),(36228,154546,1,'2021-05-07 02:25:19','2021-05-07 02:25:19','17af09a3-ed88-4190-aadf-8e601cd45019','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36229,154548,1,'2021-05-07 02:25:19','2021-05-07 02:25:19','8ec76a5e-9644-4149-8779-3f513e3bb3eb','Visit Metro North HHS',NULL,0,'solid'),(36230,154553,1,'2021-05-07 02:25:29','2021-05-07 02:25:29','3e975b33-4d4d-449f-80a5-b4758e4fd902','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36231,154555,1,'2021-05-07 02:25:29','2021-05-07 02:25:29','fe45cad2-56b9-4ce0-80a2-fd494e6ecae2','Visit Metro North HHS specialist advice',NULL,0,'solid'),(36232,154560,1,'2021-05-07 02:25:32','2021-05-07 02:25:32','3bc31855-e7da-4489-b985-4dec94e9e5d0','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36233,154562,1,'2021-05-07 02:25:32','2021-05-07 02:25:32','53173951-e855-43a4-a211-0bdd308a2b8e','Metro North HHS specialist advice',NULL,0,'solid'),(36234,154567,1,'2021-05-07 02:25:46','2021-05-07 02:25:46','a478b869-c5ac-484f-b583-c56232cc82b7','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36235,154569,1,'2021-05-07 02:25:46','2021-05-07 02:25:46','c228b777-c2f6-4849-a309-c0dc50993d70','Metro North HHS specialist advice','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36236,154574,1,'2021-05-07 02:25:49','2021-05-07 02:25:49','8c3454f8-3114-4325-a6f1-51ceeb020e0b','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36237,154576,1,'2021-05-07 02:25:49','2021-05-07 02:25:49','c1ba2df9-9625-412e-ab17-b7b05350e8b6','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36238,154581,1,'2021-05-07 02:25:56','2021-05-07 02:25:56','1a9b2857-9582-447b-b5af-dd4984bbd7f9','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36239,154583,1,'2021-05-07 02:25:56','2021-05-07 02:25:56','85ba1417-05f7-489c-acf2-f959fa896821','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36240,154588,1,'2021-05-07 02:25:57','2021-05-07 02:25:57','f2466d48-5cd1-4d36-a638-efe6363b3120','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36241,154590,1,'2021-05-07 02:25:57','2021-05-07 02:25:57','b0d19c30-8b8a-4155-b8f2-1639edf723f5','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36242,154595,1,'2021-05-07 02:25:59','2021-05-07 02:25:59','3c4e8571-afd8-49a8-9da0-faa77425f978','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36243,154597,1,'2021-05-07 02:26:00','2021-05-07 02:26:00','54a79a11-6a90-406c-918d-58b3844ce3d7','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36244,154602,1,'2021-05-07 02:26:06','2021-05-07 02:26:06','bf6d9f59-36df-4aba-a814-00cb6c7babc0','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36245,154604,1,'2021-05-07 02:26:06','2021-05-07 02:26:06','96c21edc-1653-48c5-a97c-8aecbc960d62','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36246,154609,1,'2021-05-07 02:26:13','2021-05-07 02:26:13','2d6e71b8-392e-49d9-a429-f4f93b8c5c5a','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36247,154611,1,'2021-05-07 02:26:13','2021-05-07 02:26:13','34a9ee94-4c59-43b4-a336-8890d576f967','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36248,154616,1,'2021-05-07 02:26:40','2021-05-07 02:26:40','2aef071d-74a5-4ff7-9e97-f7b0b9cc7854','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36249,154618,1,'2021-05-07 02:26:41','2021-05-07 02:26:41','37ecf75c-c25f-49f9-87ee-301c486ef322','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36250,154623,1,'2021-05-07 02:26:41','2021-05-07 02:26:41','bc6e5fe0-a44b-4788-be24-da0fc212a689','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36251,154625,1,'2021-05-07 02:26:41','2021-05-07 02:26:41','ba011a50-51fa-4e98-b991-a851bcd27b65','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36252,154630,1,'2021-05-07 02:26:43','2021-05-07 02:26:43','e83d343c-c9ae-4f9a-b1fc-0f76696aa3a1','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36253,154632,1,'2021-05-07 02:26:43','2021-05-07 02:26:43','7ec5fe23-cc34-4f67-ad37-9efaa758d1b1','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36254,154637,1,'2021-05-07 02:26:47','2021-05-07 02:26:47','0de36ffc-7c44-4023-96b8-e8a8fbc89da6','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36255,154639,1,'2021-05-07 02:26:47','2021-05-07 02:26:47','7ef19973-14ad-4e2f-85d1-1ee6449c5bdd','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36256,154644,1,'2021-05-07 02:26:48','2021-05-07 02:26:48','d2eaab34-6618-46d9-89bf-871130728a50','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36257,154646,1,'2021-05-07 02:26:48','2021-05-07 02:26:48','8d2672a5-dbe9-448c-8253-7cd9040565b5','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36258,154651,1,'2021-05-07 02:26:51','2021-05-07 02:26:51','c37262a9-7eac-46e9-b67a-cea9b323a85c','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36259,154653,1,'2021-05-07 02:26:51','2021-05-07 02:26:51','66221f7b-3c51-4a81-828f-caad8b263c16','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36260,154658,1,'2021-05-07 02:26:56','2021-05-07 02:26:56','8479c49d-9607-42c5-8c2e-5b87f2ba739c','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36261,154660,1,'2021-05-07 02:26:56','2021-05-07 02:26:56','2cb0badb-782c-4929-96b5-c805f50d7675','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36262,154665,1,'2021-05-07 02:27:06','2021-05-07 02:27:06','a5c1cfa8-248c-4957-9e9d-003ac0e69b48','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36263,154667,1,'2021-05-07 02:27:06','2021-05-07 02:27:06','6542125a-229b-4e8e-8f08-567d7b25be12','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36264,154672,1,'2021-05-07 02:27:09','2021-05-07 02:27:09','6af9360a-d02d-4630-b354-c50c4bd3334d','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36265,154674,1,'2021-05-07 02:27:09','2021-05-07 02:27:09','1ae2b14a-515f-4524-b45e-83bfbc7e475c','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36266,154679,1,'2021-05-07 02:27:10','2021-05-07 02:27:10','fee02e46-0179-4f9b-8bb0-8ae024d4bb56','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36267,154681,1,'2021-05-07 02:27:10','2021-05-07 02:27:10','18824a73-6510-4404-b50f-64651c6f1f6e','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36268,154686,1,'2021-05-07 02:27:13','2021-05-07 02:27:13','246a69b6-b592-49e3-9e29-df5c41808498','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36269,154688,1,'2021-05-07 02:27:13','2021-05-07 02:27:13','64d6e40f-3919-4408-961d-c11ba8b7dd73','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36270,154693,1,'2021-05-07 02:27:14','2021-05-07 02:27:14','2b4b6435-effc-44f3-a1ae-9a6c02f6591c','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36271,154695,1,'2021-05-07 02:27:14','2021-05-07 02:27:14','44e2b07c-aa24-437e-8e73-020c552a2df3','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36272,154700,1,'2021-05-07 02:27:33','2021-05-07 02:27:33','93278f33-221f-4951-b6cb-60647f0a2a67','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36273,154702,1,'2021-05-07 02:27:33','2021-05-07 02:27:33','0cb36292-29bb-4146-8c03-5bb03f076ba1','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36274,154707,1,'2021-05-07 02:27:35','2021-05-07 02:27:35','1cb8810e-ba9d-4942-9220-5201ec59c1e0','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36275,154709,1,'2021-05-07 02:27:35','2021-05-07 02:27:35','4facf8b5-2253-4587-ad8e-7317651ae99e','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36276,154714,1,'2021-05-07 02:27:35','2021-05-07 02:27:35','43f26f14-9a0d-4506-9ab7-bfef8833ed83','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36277,154716,1,'2021-05-07 02:27:35','2021-05-07 02:27:35','35b00db1-c1b6-444b-a77c-71fe61691e51','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36278,154721,1,'2021-05-07 02:27:37','2021-05-07 02:27:37','29a5604d-6eac-4446-9211-10fb51eecf05','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36279,154723,1,'2021-05-07 02:27:37','2021-05-07 02:27:37','689f3f60-23d0-458c-8b24-04b3e3ae1604','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36280,154728,1,'2021-05-07 02:27:48','2021-05-07 02:27:48','915015e2-657f-42f2-8ed9-de8df2b50a03','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36281,154730,1,'2021-05-07 02:27:48','2021-05-07 02:27:48','288ed43b-b514-4564-83ca-b4ae60f3824f','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36282,154735,1,'2021-05-07 02:28:35','2021-05-07 02:28:35','ef9bac6a-3380-41d0-b777-85b280e54d0f','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36283,154737,1,'2021-05-07 02:28:35','2021-05-07 02:28:35','fff98497-b61d-4b4f-bbf5-60eb196eb06b','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36284,154742,1,'2021-05-07 02:28:37','2021-05-07 02:28:37','4c912125-9edc-4b19-a1a9-1039df89fc3b','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36285,154744,1,'2021-05-07 02:28:37','2021-05-07 02:28:37','d69b18ad-6620-4f08-9fe7-8d813393387f','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36286,154749,1,'2021-05-07 02:28:42','2021-05-07 02:28:42','19703dff-f78e-4ba9-ac46-8cbb7b8442e4','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36287,154751,1,'2021-05-07 02:28:42','2021-05-07 02:28:42','d84bb3b1-30d4-4974-ba63-29a44f069fec','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36288,154756,1,'2021-05-07 02:28:45','2021-05-07 02:28:45','58410ed5-e39f-4b70-b231-5d70eacb5a73','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36289,154758,1,'2021-05-07 02:28:45','2021-05-07 02:28:45','67f983f9-97e2-4474-a88c-c2aae36d1fa7','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36290,154763,1,'2021-05-07 02:30:30','2021-05-07 02:30:30','1d68f509-9328-400d-9823-b4c1543c2f2a','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36291,154765,1,'2021-05-07 02:30:30','2021-05-07 02:30:30','3daf4bc2-de89-4c53-b795-05cc68c5415a','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36292,154770,1,'2021-05-07 02:30:33','2021-05-07 02:30:33','e57c0117-4a6f-4b1b-855f-13f681981942','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36293,154772,1,'2021-05-07 02:30:33','2021-05-07 02:30:33','58dbd518-07a1-4581-bce8-7c74bc64f9d9','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36294,154778,1,'2021-05-07 02:31:11','2021-05-07 02:31:11','638b0d00-b3aa-43b9-ba70-46b64ba69017','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36295,154780,1,'2021-05-07 02:31:11','2021-05-07 02:31:11','227726bb-dc37-4572-a1bd-bbf41de919d3','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36296,154785,1,'2021-05-07 02:31:29','2021-05-07 02:31:29','b8a5e51b-74af-4b8d-b516-a1a120ef6240','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36297,154787,1,'2021-05-07 02:31:29','2021-05-07 02:31:29','0492511c-c523-44c6-9059-979168eb51c1','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36298,154792,1,'2021-05-07 02:31:48','2021-05-07 02:31:48','8c4a4140-a3e5-493a-a5d1-e68eb642ff81','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36299,154794,1,'2021-05-07 02:31:48','2021-05-07 02:31:48','db5d2618-a59a-40d1-bce4-398cf2d7c07b','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36300,154800,1,'2021-05-07 02:31:56','2021-05-07 02:31:56','82bc8be0-88b2-4faf-ab33-ef6246e42516','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36301,154802,1,'2021-05-07 02:31:56','2021-05-07 02:31:56','6c429fee-1655-419c-84ce-6ae21f14f323','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36302,154807,1,'2021-05-07 02:32:02','2021-05-07 02:32:02','b8d01263-2768-483c-a6bb-a048a578e6f1','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36303,154809,1,'2021-05-07 02:32:02','2021-05-07 02:32:02','ee30fc25-eb72-4eee-9612-c4f4dc615205','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36304,154815,1,'2021-05-07 02:32:03','2021-05-07 02:32:03','e73895b6-03a3-44b2-aa18-73074bc8362e','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36305,154817,1,'2021-05-07 02:32:03','2021-05-07 02:32:03','a48ce776-5a43-48d7-9f29-d778aaed229a','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36306,154824,1,'2021-05-07 02:32:12','2021-05-07 02:32:12','172d08b1-011e-4a3c-900d-b9b5ae9d028b','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36307,154826,1,'2021-05-07 02:32:12','2021-05-07 02:32:12','5fca05d1-ce54-48f3-896c-ffc0d409225b','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36308,154833,1,'2021-05-07 02:32:15','2021-05-07 02:32:15','9ffa9dc6-4eda-4cc0-a767-fa03dc4859a5','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36309,154835,1,'2021-05-07 02:32:15','2021-05-07 02:32:15','616b4ec3-b7d4-4298-b280-ed1ab05291b5','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36310,154842,1,'2021-05-07 02:32:19','2021-05-07 02:32:19','92bc3838-3974-414c-af4b-e62820790cff','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36311,154844,1,'2021-05-07 02:32:19','2021-05-07 02:32:19','1a0d649a-3607-4e1f-ac2d-06bf0328f607','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36312,154851,1,'2021-05-07 02:32:21','2021-05-07 02:32:21','f80dc273-b918-42fb-865b-73eedc5f1470','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36313,154853,1,'2021-05-07 02:32:21','2021-05-07 02:32:21','77a05349-04ac-40ac-b5c9-50530a75ad41','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36314,154860,1,'2021-05-07 02:32:22','2021-05-07 02:32:22','34e508b9-1957-4254-8aac-0e16a10712da','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36315,154862,1,'2021-05-07 02:32:22','2021-05-07 02:32:22','1b67dae1-d384-45aa-99aa-5c303cc59ee6','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36316,154869,1,'2021-05-07 02:32:24','2021-05-07 02:32:24','1960c0e3-362e-4770-aaa1-fdc47b9728ad','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36317,154871,1,'2021-05-07 02:32:24','2021-05-07 02:32:24','cae817c6-f94a-486e-9788-ed43045f45ca','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36318,154878,1,'2021-05-07 02:32:32','2021-05-07 02:32:32','f9f33021-7baf-4202-a4af-78b8ae97b41e','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36319,154880,1,'2021-05-07 02:32:32','2021-05-07 02:32:32','d5ef0aa2-5263-4886-a19a-4e3296b0b843','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36320,154887,1,'2021-05-07 02:32:42','2021-05-07 02:32:42','481cceaa-c9f8-46ea-a910-8fd4eb92178e','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36321,154889,1,'2021-05-07 02:32:42','2021-05-07 02:32:42','2132965b-ce87-4fdf-9b7d-1319fc5d6561','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36322,154896,1,'2021-05-07 02:32:58','2021-05-07 02:32:58','b6d57fc2-ceaf-46de-9fc5-b3ce9c833fd4','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36323,154898,1,'2021-05-07 02:32:58','2021-05-07 02:32:58','c10c08ba-00f2-4ba6-9e4f-25aa677d0334','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36324,154905,1,'2021-05-07 02:33:11','2021-05-07 02:33:11','fdf13e37-5afc-456f-86a9-86e2eb288fa3','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36325,154907,1,'2021-05-07 02:33:11','2021-05-07 02:33:11','7a7544d1-d8f2-4093-8afe-113368bb0489','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36326,154914,1,'2021-05-07 02:45:09','2021-05-07 02:45:09','530ad765-a1ff-471f-bccb-f3c282c593d1','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36327,154916,1,'2021-05-07 02:45:09','2021-05-07 02:45:09','6a68cefd-4fba-4c58-b796-5f1623e85dfa','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36328,154924,1,'2021-05-07 02:45:24','2021-05-07 02:45:24','901a8648-f40b-4de4-b03c-2e63ef87a6ed','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36329,154926,1,'2021-05-07 02:45:24','2021-05-07 02:45:24','8802cb6b-e67e-48e2-aceb-5dc697ff5177','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',0,'solid'),(36330,154933,1,'2021-05-07 02:45:39','2021-05-07 05:29:23','34c6d7b3-66af-494a-ace5-f965cae62e49','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',1,'solid'),(36331,154935,1,'2021-05-07 02:45:39','2021-05-07 05:29:23','38aba1ad-70f2-434e-9a0e-ecc3f6411a31','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36332,155098,1,'2021-05-07 04:59:05','2021-05-07 04:59:05','300669dc-d638-4796-b2b4-329dae34facf',NULL,NULL,0,'solid'),(36333,155106,1,'2021-05-07 04:59:07','2021-05-07 04:59:07','4d01e5b1-7070-4243-b1db-33361a0504c7',NULL,'https://metronorth.health.qld.gov.au/caboolture/healthcare-services/general-surgery',0,'solid'),(36334,155114,1,'2021-05-07 04:59:32','2021-05-07 04:59:32','1c2950b2-1333-489b-93d9-d0dc1d283007','More information','https://metronorth.health.qld.gov.au/caboolture/healthcare-services/general-surgery',0,'solid'),(36335,155122,1,'2021-05-07 04:59:33','2021-05-07 04:59:33','b691e377-5380-428f-a216-32b4ff8d89e5','More information','https://metronorth.health.qld.gov.au/caboolture/healthcare-services/general-surgery',1,'solid'),(36336,155130,1,'2021-05-07 04:59:58','2021-05-07 04:59:58','7efb0eeb-9262-4824-b71b-f6e502315e38','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/healthcare-services/general-surgery',1,'solid'),(36337,155138,1,'2021-05-07 05:00:30','2021-05-07 05:00:30','f397caaf-fe97-45bd-b389-c78c7c4e1a1e','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(36338,155146,1,'2021-05-07 05:06:29','2021-05-07 05:06:29','d38eb8cf-a188-4faa-8ae3-791c443c4551','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(36339,155154,1,'2021-05-07 05:06:54','2021-05-07 05:06:54','15f426bb-f014-414a-a750-7ad36c17a65d','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(36340,155155,1,'2021-05-07 05:06:54','2021-05-07 05:06:54','fec6d1cd-a361-4b79-993d-25d21f77b264',NULL,NULL,0,'solid'),(36341,155163,1,'2021-05-07 05:06:56','2021-05-07 05:06:56','987af9bb-2d7e-4036-84e1-215663df1ebc','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(36342,155164,1,'2021-05-07 05:06:56','2021-05-07 05:06:56','f3c63a3a-b3df-4c7f-b413-e0c5510d235d',NULL,'https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',0,'solid'),(36343,155172,1,'2021-05-07 05:07:23','2021-05-07 05:07:23','cffb42d3-c54e-4955-bceb-ee58aa6c7af3','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(36344,155173,1,'2021-05-07 05:07:23','2021-05-07 05:07:23','698220e4-aa4b-449e-ad52-7a453d8e1c71','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',0,'solid'),(36345,155181,1,'2021-05-07 05:08:04','2021-05-07 05:08:04','b5d38f0e-2096-4e49-b72e-d6f0836609d8','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(36346,155182,1,'2021-05-07 05:08:04','2021-05-07 05:08:04','c33e2c1d-e68d-41ca-9e7a-f65511885586','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',0,'solid'),(36347,155190,1,'2021-05-07 05:08:33','2021-05-07 05:08:33','71ddb9d6-036c-4925-afac-99ce7023dfc4','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(36348,155191,1,'2021-05-07 05:08:33','2021-05-07 05:08:33','a37f2baf-9739-45a1-ba90-85aff34a454a','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',0,'solid'),(36349,155199,1,'2021-05-07 05:08:38','2021-05-07 05:08:38','380967fa-3e15-4e05-a90e-c6f025a6c70e','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(36350,155200,1,'2021-05-07 05:08:38','2021-05-07 05:08:38','f76b6c83-f068-42a2-bbb0-5895791f3f3c','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',0,'solid'),(36351,155208,1,'2021-05-07 05:08:42','2021-05-07 05:08:42','56d0a706-71b9-488f-a390-06ad8daa5fdb','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(36352,155209,1,'2021-05-07 05:08:42','2021-05-07 05:08:42','a6e376f8-8552-41ec-9c1d-90093cba0ebf','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',0,'solid'),(36353,155217,1,'2021-05-07 05:08:45','2021-05-07 05:08:45','ccff789d-7cae-422b-8c04-028766b68dc8','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(36354,155218,1,'2021-05-07 05:08:45','2021-05-07 05:08:45','c3cdb52d-fdd5-4637-b88b-163ab1f04270','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',0,'solid'),(36355,155226,1,'2021-05-07 05:08:58','2021-05-07 05:08:58','23c47a7d-fbe4-44e4-96b2-882cee92deb7','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(36356,155227,1,'2021-05-07 05:08:58','2021-05-07 05:08:58','b985b89f-c2a3-480d-bd22-f87fc1ab672a','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',0,'solid'),(36357,155235,1,'2021-05-07 05:09:02','2021-05-07 05:09:02','751da107-7238-4a57-8675-771cbb9aec01','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(36358,155236,1,'2021-05-07 05:09:02','2021-05-07 05:09:02','176acc45-d03f-4402-bde8-c61e1cc464e4','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',0,'solid'),(36359,155244,1,'2021-05-07 05:09:04','2021-05-07 05:09:04','20c09e80-a5c3-47e1-80b9-bba7114ac4c8','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(36360,155245,1,'2021-05-07 05:09:04','2021-05-07 05:09:04','46abeafe-1670-4903-a552-85ed42ef0192','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',0,'solid'),(36361,155253,1,'2021-05-07 05:09:06','2021-05-07 05:09:06','a72fcd26-aa82-49bb-8046-855d8739a0a2','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(36362,155254,1,'2021-05-07 05:09:06','2021-05-07 05:09:06','00f75a13-cdd9-4f8a-bca0-3150efdc540a','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',0,'solid'),(36363,155262,1,'2021-05-07 05:09:14','2021-05-07 05:09:14','81e805a4-155b-45d3-8117-ea4126b6e6c2','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(36364,155263,1,'2021-05-07 05:09:14','2021-05-07 05:09:14','39ff24f3-a180-4345-90a5-f6d52ff783ab','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',0,'solid'),(36365,155271,1,'2021-05-07 05:09:40','2021-05-07 05:09:40','cdd4a6c5-88c1-467e-8e16-cf0fd340a05d','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(36366,155272,1,'2021-05-07 05:09:40','2021-05-07 05:09:40','38bb75e6-e8ea-4cf1-9d31-36c25e060db1','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',0,'solid'),(36367,155280,1,'2021-05-07 05:09:41','2021-05-07 05:09:41','6fa6e46b-7e8f-4c88-9a4e-4334d360ccd6','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(36368,155281,1,'2021-05-07 05:09:41','2021-05-07 05:09:41','bed9d961-0336-47e9-ae92-4164d803978d','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',0,'solid'),(36369,155289,1,'2021-05-07 05:09:43','2021-05-07 05:09:43','1466aeae-f491-4448-a530-31e85ad6ef25','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(36370,155290,1,'2021-05-07 05:09:43','2021-05-07 05:09:43','b3eefe85-927e-48d5-aa1c-b36d99303453','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(36371,155300,1,'2021-05-07 05:11:28','2021-05-07 05:11:28','8a8c8ab9-be7a-408f-ac1b-a12d7304cbc1','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(36372,155301,1,'2021-05-07 05:11:28','2021-05-07 05:11:28','418f513d-80ef-4e22-b441-cad0f92fd22f','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(36373,155310,1,'2021-05-07 05:14:18','2021-05-07 05:29:23','f665edef-cf59-4a1e-be07-50239d3fbeab','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(36374,155311,1,'2021-05-07 05:14:18','2021-05-07 05:29:23','0af4678e-10a2-4636-8a1e-4bc022b4049d','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(36375,155317,1,'2021-05-07 05:30:12','2021-05-13 00:49:47','8bbe4e5f-b3e4-44ca-a157-c4f2398618af','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',1,'solid'),(36376,155319,1,'2021-05-07 05:30:12','2021-05-07 05:30:12','daf01fb4-28a3-4881-8085-ce5114b80a3e','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36377,155331,1,'2021-05-07 05:30:12','2021-05-07 05:30:12','957420e2-8686-4a84-9b19-bc55aaaac49e','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(36378,155332,1,'2021-05-07 05:30:12','2021-05-07 05:30:12','47c922a9-569b-4fc1-87ef-fc1a53e44826','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(36379,155337,1,'2021-05-07 05:30:13','2021-05-07 05:30:13','15ad51f9-6c8c-47e2-a020-84b22395116b','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',1,'solid'),(36380,155339,1,'2021-05-07 05:30:13','2021-05-07 05:30:13','7c1d60f8-0ea9-4a17-8506-51afda410e42','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(36381,155351,1,'2021-05-07 05:30:13','2021-05-07 05:30:13','52fd9b7b-e47e-4bd7-bdd0-207a69201ea2','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(36382,155352,1,'2021-05-07 05:30:13','2021-05-07 05:30:13','d8ac5826-e15d-4b8d-b645-312f1f263de4','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(36383,155365,1,'2021-05-07 05:32:35','2021-05-07 05:32:35','693e655d-030c-477d-bb33-22c40b4a837b','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113929&focal=none',1,'outline'),(36384,155366,1,'2021-05-07 05:32:35','2021-05-07 05:32:35','a7fb4ff6-30f3-4e34-baaa-3ba6c6840d1d','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112619&focal=none',1,'outline'),(36385,155367,1,'2021-05-07 05:32:35','2021-05-07 05:32:35','80f6a644-3cd8-4ea9-a1c5-c5ff67eafaff','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Referral-PractiX-v4_9-2.doc?mtime=20200521161148&focal=none',1,'outline'),(36386,155368,1,'2021-05-07 05:32:35','2021-05-07 05:32:35','efa6cfe8-4eaf-4761-b9ca-6594a7891928','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Ref-v6_2-ZM1-3.rtf?mtime=20200521161318&focal=none',1,'outline'),(36387,155370,1,'2021-05-07 05:32:35','2021-05-07 05:32:35','0d4768b9-7f0b-45fe-8e48-3ca1815e5461','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-TPCH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113931&focal=none',1,'outline'),(36388,155371,1,'2021-05-07 05:32:35','2021-05-07 05:32:35','de7b7539-f3bc-44ab-9faa-10f6c5271c52','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112623&focal=none',1,'outline'),(36389,155372,1,'2021-05-07 05:32:35','2021-05-07 05:32:35','835025d9-e35b-49ea-93ea-6df097e3172b','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-PCH-PractiX-v4_12-1.doc?mtime=20200522124052&focal=none',1,'outline'),(36390,155373,1,'2021-05-07 05:32:35','2021-05-07 05:32:35','082c3b76-db70-44a1-a00a-de4a569a7932','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Ref-v6_2-ZM-1.rtf?mtime=20200522124257&focal=none',0,'outline'),(36391,155375,1,'2021-05-07 05:32:35','2021-05-07 05:32:35','405431f0-cac9-45c4-81d2-5ff05774f390','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Redcliffe-Adult-Referral-v6.3-MD.rtf?mtime=20210430113930&focal=none',1,'outline'),(36392,155376,1,'2021-05-07 05:32:35','2021-05-07 05:32:35','38732203-bde0-4432-8e2a-4dc6bb67698b','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Adult-Referral-v6.3-BP.rtf?mtime=20210430112621&focal=none',1,'outline'),(36393,155377,1,'2021-05-07 05:32:35','2021-05-07 05:32:35','f4646bc2-ad18-4067-a984-ec235ba2b783','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-PractiX-v4_12-1.doc?mtime=20200522125843&focal=none',1,'outline'),(36394,155378,1,'2021-05-07 05:32:35','2021-05-07 05:32:35','9ce74078-914d-4754-931e-f52338280304','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522130025&focal=none',1,'outline'),(36395,155380,1,'2021-05-07 05:32:35','2021-05-07 05:32:35','476a0c7e-ff13-4fd9-b364-732285661267','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Caboolture-Adult-Referral-v6.3-MD.rtf?mtime=20210430113920&focal=none',1,'outline'),(36396,155381,1,'2021-05-07 05:32:35','2021-05-07 05:32:35','9595e511-a110-49ed-8878-e64125797eda','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Adult-Referral-v6.3-BP.rtf?mtime=20210430115701&focal=none',1,'outline'),(36397,155382,1,'2021-05-07 05:32:35','2021-05-07 05:32:35','f4ed1a9b-3021-449f-b799-e41f617a4e44','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Cab-Referral-PractiX-v4_12-1.doc?mtime=20200522152242&focal=none',1,'outline'),(36398,155383,1,'2021-05-07 05:32:35','2021-05-07 05:32:35','62b424d5-884f-4955-a0ea-eefb6b9ba5da','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522152403&focal=none',1,'outline'),(36399,155385,1,'2021-05-07 05:32:35','2021-05-07 05:32:35','2296d5d0-bfd9-4c6e-bf01-e895ce23ee77','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Palliative-Care-Referral-v6.3-MD.rtf?mtime=20210430113927&focal=none',1,'outline'),(36400,155386,1,'2021-05-07 05:32:36','2021-05-07 05:32:36','b3cb892d-b415-417b-ad04-dcd3c671b6b9','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Referral-v6.3-BP.rtf?mtime=20210430112617&focal=none',1,'outline'),(36401,155387,1,'2021-05-07 05:32:36','2021-05-07 05:32:36','00ab168b-1688-4550-9f47-1538f7838c37','PractiX',NULL,1,'outline'),(36402,155388,1,'2021-05-07 05:32:36','2021-05-07 05:32:36','018f6234-f845-4e86-8a97-b6905525fb10','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Ref-v6.2-ZM.rtf?mtime=20200522153215&focal=none',1,'outline'),(36403,155390,1,'2021-05-07 05:32:36','2021-05-07 05:32:36','bd0919d9-b8c6-405c-9787-669a6c292a38','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Maternity-Referral-v6.3-MD.rtf?mtime=20210430113924&focal=none',1,'outline'),(36404,155391,1,'2021-05-07 05:32:36','2021-05-07 05:32:36','465980c7-3d6a-4039-a9ed-990397c820c1','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Referral-v6.3-BP.rtf?mtime=20210430115904&focal=none',1,'outline'),(36405,155392,1,'2021-05-07 05:32:36','2021-05-07 05:32:36','fbc2e3f7-6df3-417f-b126-e7aab384e9ba','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-PractiX-v4_12-1.doc?mtime=20200522153957&focal=none',1,'outline'),(36406,155393,1,'2021-05-07 05:32:36','2021-05-07 05:32:36','0af0763e-5545-421d-bac4-f0dc0a9c90bf','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Ref-v6_2-ZM-1.rtf?mtime=20200522154107&focal=none',1,'outline'),(36407,155395,1,'2021-05-07 05:32:36','2021-05-07 05:32:36','d28b57c0-4dc5-47aa-8613-75902241dbbc','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Paediatric-Referral-v6.3-MD.rtf?mtime=20210430113925&focal=none',1,'outline'),(36408,155396,1,'2021-05-07 05:32:36','2021-05-07 05:32:36','55d00e82-70a0-4491-b4d3-43ae252911ac','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Referral-v6.3-BP.rtf?mtime=20210430112614&focal=none',1,'outline'),(36409,155397,1,'2021-05-07 05:32:36','2021-05-07 05:32:36','14cb6ca4-febe-48b8-b256-f78c3eb49569','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-PractiX-v4_12-1.doc?mtime=20200522154912&focal=none',1,'outline'),(36410,155398,1,'2021-05-07 05:32:36','2021-05-07 05:32:36','5630faaa-6a5b-45d8-929d-40c06d53c418','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Ref-v6_2-ZM-1.rtf?mtime=20200522155024&focal=none',1,'outline'),(36411,155400,1,'2021-05-07 05:32:36','2021-05-07 05:32:36','d2cdc9bf-4450-4f06-b657-f03576513af6','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-COHD-Adult-Referral-v6.3-MD.rtf?mtime=20210430113922&focal=none',1,'outline'),(36412,155401,1,'2021-05-07 05:32:36','2021-05-07 05:32:36','11bbcf4f-0444-4574-93fb-63ffaed34637','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-COHD-Adult-Referral-v6.3-BP.rtf?mtime=20210430120142&focal=none',1,'outline'),(36413,155402,1,'2021-05-07 05:32:36','2021-05-07 05:32:36','a949c68d-4b44-4049-a237-bc5c3d877d98','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Community-and-Oral-Health-Directorate-Ref-v6.2-ZM.rtf?mtime=20200807161125&focal=none',1,'outline'),(36414,155405,1,'2021-05-07 05:32:36','2021-05-07 05:32:36','83ac1d76-ab94-4667-8fa8-956accdf381d','Service information','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient',1,'solid'),(36415,155406,1,'2021-05-07 05:32:36','2021-05-07 05:32:36','4a3c0257-1cc2-4415-86f4-27bdd97a7e47','Find a specialist','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'solid'),(36416,155408,1,'2021-05-07 05:32:36','2021-05-07 05:32:36','9a5e9885-b46a-41e5-a9f2-751fa52eef4e','Download the FAQs','https://metronorth.health.qld.gov.au/wp-content/uploads/2017/11/CPI-FAQ-V2.pdf',1,'solid'),(36417,155429,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','e360e69c-eb9a-4419-a3a8-bc15edcd5858','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113929&focal=none',1,'outline'),(36418,155430,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','48462f9c-c742-4e3d-88e0-a4881e3811f8','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112619&focal=none',1,'outline'),(36419,155431,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','ad19f1ca-53ed-487d-80c3-cfe793b0f625','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Referral-PractiX-v4_9-2.doc?mtime=20200521161148&focal=none',1,'outline'),(36420,155432,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','8b084858-79a4-4d4c-809d-c6e585fd1a95','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Ref-v6_2-ZM1-3.rtf?mtime=20200521161318&focal=none',1,'outline'),(36421,155434,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','0978ca03-44f0-4bc9-9fee-7f55cc15341c','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-TPCH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113931&focal=none',1,'outline'),(36422,155435,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','cc5f45ef-a108-4688-9b96-c6367844e7a7','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112623&focal=none',1,'outline'),(36423,155436,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','4bcfd7c0-c972-415e-a51a-8c3ad11a256b','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-PCH-PractiX-v4_12-1.doc?mtime=20200522124052&focal=none',1,'outline'),(36424,155437,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','f521c8e6-6195-48e4-a18c-2b445360749c','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Ref-v6_2-ZM-1.rtf?mtime=20200522124257&focal=none',0,'outline'),(36425,155439,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','2cbbf4b9-a64d-4337-b6da-7d0315e1be34','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Redcliffe-Adult-Referral-v6.3-MD.rtf?mtime=20210430113930&focal=none',1,'outline'),(36426,155440,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','655dc640-d182-40eb-b2c0-a8584e7f10dd','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Adult-Referral-v6.3-BP.rtf?mtime=20210430112621&focal=none',1,'outline'),(36427,155441,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','73f16500-32c0-4299-9903-bc15c3f9f755','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-PractiX-v4_12-1.doc?mtime=20200522125843&focal=none',1,'outline'),(36428,155442,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','a3922d2e-1721-4837-b092-2413e88ff587','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522130025&focal=none',1,'outline'),(36429,155444,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','206a71a4-5c49-4591-be7d-9cd461620f74','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Caboolture-Adult-Referral-v6.3-MD.rtf?mtime=20210430113920&focal=none',1,'outline'),(36430,155445,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','29eafe5d-5a6e-4b37-ae24-97f0c56c6b38','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Adult-Referral-v6.3-BP.rtf?mtime=20210430115701&focal=none',1,'outline'),(36431,155446,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','eb89950d-ca25-4473-807b-15316005619e','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Cab-Referral-PractiX-v4_12-1.doc?mtime=20200522152242&focal=none',1,'outline'),(36432,155447,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','92352083-c85b-443c-b17a-e17a2b15785f','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522152403&focal=none',1,'outline'),(36433,155449,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','e6bdfa55-4e44-46f2-8b1a-627e5d55c09d','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Palliative-Care-Referral-v6.3-MD.rtf?mtime=20210430113927&focal=none',1,'outline'),(36434,155450,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','832b64e1-61b1-4289-bcbd-e232552a0eae','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Referral-v6.3-BP.rtf?mtime=20210430112617&focal=none',1,'outline'),(36435,155451,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','fed8df4a-fd22-4be8-8c37-6cc11c2e7b40','PractiX',NULL,1,'outline'),(36436,155452,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','39bee7fa-6bd1-40ee-b262-d4c4ca04de9d','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Ref-v6.2-ZM.rtf?mtime=20200522153215&focal=none',1,'outline'),(36437,155454,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','16f90079-bb72-4eca-988d-4b7f435527b9','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Maternity-Referral-v6.3-MD.rtf?mtime=20210430113924&focal=none',1,'outline'),(36438,155455,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','2645869a-b9ce-4560-a1d6-04ed26fcb3d4','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Referral-v6.3-BP.rtf?mtime=20210430115904&focal=none',1,'outline'),(36439,155456,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','eef2e4d4-43ea-4f6e-9037-14278942565d','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-PractiX-v4_12-1.doc?mtime=20200522153957&focal=none',1,'outline'),(36440,155457,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','040384c3-15d5-422e-80eb-0497e6e260d2','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Ref-v6_2-ZM-1.rtf?mtime=20200522154107&focal=none',1,'outline'),(36441,155459,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','7cd2d2f8-d0b2-4aee-934a-ede4432495b1','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Paediatric-Referral-v6.3-MD.rtf?mtime=20210430113925&focal=none',1,'outline'),(36442,155460,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','2718524e-c3de-4cc2-b03d-0c713b6a4895','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Referral-v6.3-BP.rtf?mtime=20210430112614&focal=none',1,'outline'),(36443,155461,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','0623447f-721d-4643-9415-ed76631f45d8','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-PractiX-v4_12-1.doc?mtime=20200522154912&focal=none',1,'outline'),(36444,155462,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','3b2cc759-36ae-49b2-a411-b5fdb31b5f29','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Ref-v6_2-ZM-1.rtf?mtime=20200522155024&focal=none',1,'outline'),(36445,155464,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','c9fdeee4-6528-4d0a-a67f-983bc1fe1ed6','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-COHD-Adult-Referral-v6.3-MD.rtf?mtime=20210430113922&focal=none',1,'outline'),(36446,155465,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','99532c7b-2732-4040-b03b-314cbb99e466','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-COHD-Adult-Referral-v6.3-BP.rtf?mtime=20210430120142&focal=none',1,'outline'),(36447,155466,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','9d770e30-8610-4cd6-8c04-bdd71d6dde52','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Community-and-Oral-Health-Directorate-Ref-v6.2-ZM.rtf?mtime=20200807161125&focal=none',1,'outline'),(36448,155469,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','f7f4abf2-a453-497c-8aab-e81cfd3125f3','Service information','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient',1,'solid'),(36449,155470,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','c0005064-cbb6-43b0-8ac0-1a1a180ae0e5','Find a specialist','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'solid'),(36450,155472,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','a2995131-4bac-4f8a-81f3-5a2120ad4e97','Download the FAQs','https://metronorth.health.qld.gov.au/wp-content/uploads/2017/11/CPI-FAQ-V2.pdf',1,'solid'),(36451,155473,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','0e1dedc1-36cb-4933-b0a7-437942147b57',NULL,NULL,0,'solid'),(36452,155494,1,'2021-05-07 05:32:44','2021-05-07 05:32:44','d9c3c70e-02d4-479a-adbf-79348674703e','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113929&focal=none',1,'outline'),(36453,155495,1,'2021-05-07 05:32:44','2021-05-07 05:32:44','7f95f747-eca1-447f-a27f-ed5b7099d88e','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112619&focal=none',1,'outline'),(36454,155496,1,'2021-05-07 05:32:44','2021-05-07 05:32:44','11c52090-7926-4572-ab1a-022795fb788d','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Referral-PractiX-v4_9-2.doc?mtime=20200521161148&focal=none',1,'outline'),(36455,155497,1,'2021-05-07 05:32:44','2021-05-07 05:32:44','3f6499b7-e36d-415c-a573-8aa29b52c08d','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Ref-v6_2-ZM1-3.rtf?mtime=20200521161318&focal=none',1,'outline'),(36456,155499,1,'2021-05-07 05:32:44','2021-05-07 05:32:44','98f66271-d0ec-492b-a851-cfaebd0731ac','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-TPCH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113931&focal=none',1,'outline'),(36457,155500,1,'2021-05-07 05:32:44','2021-05-07 05:32:44','65cb15ac-20ee-4b6c-aa14-54d1cf0ef568','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112623&focal=none',1,'outline'),(36458,155501,1,'2021-05-07 05:32:44','2021-05-07 05:32:44','fc77650e-97a3-498a-bf5d-55cd12aa29b2','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-PCH-PractiX-v4_12-1.doc?mtime=20200522124052&focal=none',1,'outline'),(36459,155502,1,'2021-05-07 05:32:44','2021-05-07 05:32:44','04134008-dd38-4008-8bec-915dc37e3e12','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Ref-v6_2-ZM-1.rtf?mtime=20200522124257&focal=none',0,'outline'),(36460,155504,1,'2021-05-07 05:32:44','2021-05-07 05:32:44','72226520-8209-4ed2-9766-937236133e1c','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Redcliffe-Adult-Referral-v6.3-MD.rtf?mtime=20210430113930&focal=none',1,'outline'),(36461,155505,1,'2021-05-07 05:32:44','2021-05-07 05:32:44','143e28f7-f443-4d0e-abd2-baa934bc743c','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Adult-Referral-v6.3-BP.rtf?mtime=20210430112621&focal=none',1,'outline'),(36462,155506,1,'2021-05-07 05:32:44','2021-05-07 05:32:44','a1d5e07d-8649-4774-b06b-6fd895f4bcf9','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-PractiX-v4_12-1.doc?mtime=20200522125843&focal=none',1,'outline'),(36463,155507,1,'2021-05-07 05:32:45','2021-05-07 05:32:45','5fed27db-7a8e-429a-8819-cb7aa34c708e','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522130025&focal=none',1,'outline'),(36464,155509,1,'2021-05-07 05:32:45','2021-05-07 05:32:45','27b75db4-4a06-4c6d-a5d2-2e924e453cbc','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Caboolture-Adult-Referral-v6.3-MD.rtf?mtime=20210430113920&focal=none',1,'outline'),(36465,155510,1,'2021-05-07 05:32:45','2021-05-07 05:32:45','57d89b51-ef04-456d-b3f4-64ca544e2da4','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Adult-Referral-v6.3-BP.rtf?mtime=20210430115701&focal=none',1,'outline'),(36466,155511,1,'2021-05-07 05:32:45','2021-05-07 05:32:45','a2771af6-a1fa-45bd-96e3-80074feb08a6','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Cab-Referral-PractiX-v4_12-1.doc?mtime=20200522152242&focal=none',1,'outline'),(36467,155512,1,'2021-05-07 05:32:45','2021-05-07 05:32:45','ef710208-18be-4503-80bd-0998336a3f88','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522152403&focal=none',1,'outline'),(36468,155514,1,'2021-05-07 05:32:45','2021-05-07 05:32:45','e4ea95ec-a433-44ed-b64d-42f3dcf7002b','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Palliative-Care-Referral-v6.3-MD.rtf?mtime=20210430113927&focal=none',1,'outline'),(36469,155515,1,'2021-05-07 05:32:45','2021-05-07 05:32:45','b2d50d06-0d85-41e9-83c4-d06d44286dcd','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Referral-v6.3-BP.rtf?mtime=20210430112617&focal=none',1,'outline'),(36470,155516,1,'2021-05-07 05:32:45','2021-05-07 05:32:45','eeeddf18-866a-4486-b1c9-366f616379cd','PractiX',NULL,1,'outline'),(36471,155517,1,'2021-05-07 05:32:45','2021-05-07 05:32:45','ca74b1d5-09cf-4a0a-91e1-ac86b1de515b','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Ref-v6.2-ZM.rtf?mtime=20200522153215&focal=none',1,'outline'),(36472,155519,1,'2021-05-07 05:32:45','2021-05-07 05:32:45','58232e85-adae-436a-9dc5-75afb2d05a13','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Maternity-Referral-v6.3-MD.rtf?mtime=20210430113924&focal=none',1,'outline'),(36473,155520,1,'2021-05-07 05:32:45','2021-05-07 05:32:45','122f606a-77c3-4ede-a6d5-f9c7d443a52b','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Referral-v6.3-BP.rtf?mtime=20210430115904&focal=none',1,'outline'),(36474,155521,1,'2021-05-07 05:32:45','2021-05-07 05:32:45','b90acb1d-de4c-4e35-8ccb-afa65596d62b','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-PractiX-v4_12-1.doc?mtime=20200522153957&focal=none',1,'outline'),(36475,155522,1,'2021-05-07 05:32:45','2021-05-07 05:32:45','60b4becc-8a67-4d3e-8f60-90e6709d3f86','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Ref-v6_2-ZM-1.rtf?mtime=20200522154107&focal=none',1,'outline'),(36476,155524,1,'2021-05-07 05:32:45','2021-05-07 05:32:45','38692c5c-ecbe-4492-a493-cc7545a5fbe6','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Paediatric-Referral-v6.3-MD.rtf?mtime=20210430113925&focal=none',1,'outline'),(36477,155525,1,'2021-05-07 05:32:45','2021-05-07 05:32:45','f5cc6a47-adb3-47aa-9c6d-176081252d89','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Referral-v6.3-BP.rtf?mtime=20210430112614&focal=none',1,'outline'),(36478,155526,1,'2021-05-07 05:32:45','2021-05-07 05:32:45','6311cf42-9ef8-4ba7-a9be-646978fd96be','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-PractiX-v4_12-1.doc?mtime=20200522154912&focal=none',1,'outline'),(36479,155527,1,'2021-05-07 05:32:45','2021-05-07 05:32:45','91d4614a-d13a-4f44-b3c8-ba47e7ec2ea4','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Ref-v6_2-ZM-1.rtf?mtime=20200522155024&focal=none',1,'outline'),(36480,155529,1,'2021-05-07 05:32:45','2021-05-07 05:32:45','8b1c2f8f-7ddb-463d-a5ef-fb47ecea96e6','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-COHD-Adult-Referral-v6.3-MD.rtf?mtime=20210430113922&focal=none',1,'outline'),(36481,155530,1,'2021-05-07 05:32:45','2021-05-07 05:32:45','04d0b521-2905-419d-8d41-fd6903027807','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-COHD-Adult-Referral-v6.3-BP.rtf?mtime=20210430120142&focal=none',1,'outline'),(36482,155531,1,'2021-05-07 05:32:45','2021-05-07 05:32:45','e03d5e69-a6a0-4070-8154-fa116752810e','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Community-and-Oral-Health-Directorate-Ref-v6.2-ZM.rtf?mtime=20200807161125&focal=none',1,'outline'),(36483,155534,1,'2021-05-07 05:32:45','2021-05-07 05:32:45','779505d6-4b88-4966-b718-7c7b1c415f40','Service information','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient',1,'solid'),(36484,155535,1,'2021-05-07 05:32:45','2021-05-07 05:32:45','5d3fa64d-03ea-4801-8fd5-fd1d41dd157a','Find a specialist','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'solid'),(36485,155537,1,'2021-05-07 05:32:45','2021-05-07 05:32:45','6a10cf8a-1538-49fc-aaf3-43b0541f6fbf','Download the FAQs','https://metronorth.health.qld.gov.au/wp-content/uploads/2017/11/CPI-FAQ-V2.pdf',1,'solid'),(36486,155538,1,'2021-05-07 05:32:45','2021-05-07 05:32:45','9553d6e9-bde1-4f18-80ac-e42aaaa79217',NULL,NULL,0,'solid'),(36487,155559,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','815b8f9c-5d5c-4a98-8126-76e9c40882b7','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113929&focal=none',1,'outline'),(36488,155560,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','ef8ce62f-5294-4eca-a23c-f136a4f89d15','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112619&focal=none',1,'outline'),(36489,155561,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','ff858ac7-3333-4e9c-909f-f6ee3310bd1d','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Referral-PractiX-v4_9-2.doc?mtime=20200521161148&focal=none',1,'outline'),(36490,155562,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','15cd2ce7-bd0c-4e3f-93c2-58d7107da786','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Ref-v6_2-ZM1-3.rtf?mtime=20200521161318&focal=none',1,'outline'),(36491,155564,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','8859ffb1-bd94-4482-a3db-010e5f1395f2','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-TPCH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113931&focal=none',1,'outline'),(36492,155565,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','87fe94eb-ed15-4159-abc1-5cfc679ef676','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112623&focal=none',1,'outline'),(36493,155566,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','ac0cca48-f9fd-402b-b35d-30a8c4349990','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-PCH-PractiX-v4_12-1.doc?mtime=20200522124052&focal=none',1,'outline'),(36494,155567,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','a34c56e3-0b87-46dd-ae77-d2cb091fe5d5','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Ref-v6_2-ZM-1.rtf?mtime=20200522124257&focal=none',0,'outline'),(36495,155569,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','8255613f-b18a-4fe3-8c05-b206d38e97f3','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Redcliffe-Adult-Referral-v6.3-MD.rtf?mtime=20210430113930&focal=none',1,'outline'),(36496,155570,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','13ef8bf6-ffd7-43cd-8aa2-e426be0f4ef4','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Adult-Referral-v6.3-BP.rtf?mtime=20210430112621&focal=none',1,'outline'),(36497,155571,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','521d5c2c-3552-46ac-8349-b3ecca19761d','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-PractiX-v4_12-1.doc?mtime=20200522125843&focal=none',1,'outline'),(36498,155572,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','688ff666-4ee3-46d8-ba50-99ee290976e4','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522130025&focal=none',1,'outline'),(36499,155574,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','f4c67367-9f33-4d45-b2b7-4ec0159bfd75','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Caboolture-Adult-Referral-v6.3-MD.rtf?mtime=20210430113920&focal=none',1,'outline'),(36500,155575,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','7e86ea29-a666-4ab2-b3aa-f64329afda66','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Adult-Referral-v6.3-BP.rtf?mtime=20210430115701&focal=none',1,'outline'),(36501,155576,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','7a4a474d-7f7f-439c-80ee-9d4b721e89fb','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Cab-Referral-PractiX-v4_12-1.doc?mtime=20200522152242&focal=none',1,'outline'),(36502,155577,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','40049d6c-7b62-48d1-aa80-fdb19e619c6c','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522152403&focal=none',1,'outline'),(36503,155579,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','cd81d1b6-cd16-4fe2-8dc1-8994743ce8c6','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Palliative-Care-Referral-v6.3-MD.rtf?mtime=20210430113927&focal=none',1,'outline'),(36504,155580,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','67d67939-6b50-494f-90a7-318bdfe73252','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Referral-v6.3-BP.rtf?mtime=20210430112617&focal=none',1,'outline'),(36505,155581,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','887a3d8e-e4e7-4216-99d9-7edc0b447d75','PractiX',NULL,1,'outline'),(36506,155582,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','5b83cbf2-1479-4e57-93cc-40228e1e7d85','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Ref-v6.2-ZM.rtf?mtime=20200522153215&focal=none',1,'outline'),(36507,155584,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','436a09fe-4ffb-46c4-93ca-4d7f5a5ff052','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Maternity-Referral-v6.3-MD.rtf?mtime=20210430113924&focal=none',1,'outline'),(36508,155585,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','6fb518c8-0213-4870-8170-c657b487e72f','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Referral-v6.3-BP.rtf?mtime=20210430115904&focal=none',1,'outline'),(36509,155586,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','56b85fa6-15fb-4c92-8f14-706d29de581e','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-PractiX-v4_12-1.doc?mtime=20200522153957&focal=none',1,'outline'),(36510,155587,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','fdf809b6-0e18-40d4-9373-6b65d0eb4d3f','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Ref-v6_2-ZM-1.rtf?mtime=20200522154107&focal=none',1,'outline'),(36511,155589,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','9b18201a-f143-4671-9a7d-641a8577fa83','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Paediatric-Referral-v6.3-MD.rtf?mtime=20210430113925&focal=none',1,'outline'),(36512,155590,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','84111bd5-74e2-4fbb-9c8f-4ed1be216519','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Referral-v6.3-BP.rtf?mtime=20210430112614&focal=none',1,'outline'),(36513,155591,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','a7855fa8-a530-4ae7-97b1-f1d1e53dc630','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-PractiX-v4_12-1.doc?mtime=20200522154912&focal=none',1,'outline'),(36514,155592,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','50a83f87-9eb4-4f8f-af89-12e3ec0f4f80','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Ref-v6_2-ZM-1.rtf?mtime=20200522155024&focal=none',1,'outline'),(36515,155594,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','4a4cc368-8561-470f-8318-385d869201b4','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-COHD-Adult-Referral-v6.3-MD.rtf?mtime=20210430113922&focal=none',1,'outline'),(36516,155595,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','a21d7c46-7803-4686-8623-94e5a0cd3495','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-COHD-Adult-Referral-v6.3-BP.rtf?mtime=20210430120142&focal=none',1,'outline'),(36517,155596,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','7c3a52e5-61be-4df1-9a26-ff0d245a1d9b','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Community-and-Oral-Health-Directorate-Ref-v6.2-ZM.rtf?mtime=20200807161125&focal=none',1,'outline'),(36518,155599,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','5c4f47da-a44f-4f12-be60-a097b2f8c85f','Service information','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient',1,'solid'),(36519,155600,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','cbd3cf90-9838-41ad-9f9c-20b080c44a94','Find a specialist','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'solid'),(36520,155602,1,'2021-05-07 05:32:48','2021-05-07 05:32:48','d1a39762-7e63-492f-b186-531db71be231','Download the FAQs','https://metronorth.health.qld.gov.au/wp-content/uploads/2017/11/CPI-FAQ-V2.pdf',1,'solid'),(36521,155603,1,'2021-05-07 05:32:48','2021-05-07 05:32:48','59079e1a-4de5-4f9d-a256-ac0a9d954f9c',NULL,NULL,0,'solid'),(36522,155624,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','5bbd3548-0e10-4d18-9e0a-51be7975681c','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113929&focal=none',1,'outline'),(36523,155625,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','91c6f507-2764-4616-b518-69007f3754e8','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112619&focal=none',1,'outline'),(36524,155626,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','18380897-284c-449a-923c-9d385caae2ed','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Referral-PractiX-v4_9-2.doc?mtime=20200521161148&focal=none',1,'outline'),(36525,155627,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','11d3610d-d4c4-4d37-a733-e6e79798e679','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Ref-v6_2-ZM1-3.rtf?mtime=20200521161318&focal=none',1,'outline'),(36526,155629,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','c36a16b3-a12a-4ad8-a6f8-e1707412cde8','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-TPCH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113931&focal=none',1,'outline'),(36527,155630,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','3bb9033a-40ef-43b2-8cd7-d950c934f20e','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112623&focal=none',1,'outline'),(36528,155631,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','62da4e26-501e-478c-a0c2-31868e2fb51f','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-PCH-PractiX-v4_12-1.doc?mtime=20200522124052&focal=none',1,'outline'),(36529,155632,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','34051c36-0fae-4372-9579-b6a21e01b799','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Ref-v6_2-ZM-1.rtf?mtime=20200522124257&focal=none',0,'outline'),(36530,155634,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','fe18be0e-74a0-4f0f-b3c0-ae31d91b2e58','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Redcliffe-Adult-Referral-v6.3-MD.rtf?mtime=20210430113930&focal=none',1,'outline'),(36531,155635,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','90d84a74-67e7-4377-b3b4-505ddb594374','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Adult-Referral-v6.3-BP.rtf?mtime=20210430112621&focal=none',1,'outline'),(36532,155636,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','6941c30f-af66-494b-9d7f-d0e4498775af','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-PractiX-v4_12-1.doc?mtime=20200522125843&focal=none',1,'outline'),(36533,155637,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','dc042e27-cf66-49ff-9435-336ad18d948e','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522130025&focal=none',1,'outline'),(36534,155639,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','6649e24e-3125-4e8c-b6a0-ac35bf24f124','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Caboolture-Adult-Referral-v6.3-MD.rtf?mtime=20210430113920&focal=none',1,'outline'),(36535,155640,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','d706b406-62bc-4065-ac31-28128cc129ab','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Adult-Referral-v6.3-BP.rtf?mtime=20210430115701&focal=none',1,'outline'),(36536,155641,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','97b6591a-543e-4f95-a0f7-cfaca54346b0','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Cab-Referral-PractiX-v4_12-1.doc?mtime=20200522152242&focal=none',1,'outline'),(36537,155642,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','4e900c79-6c66-4618-8465-937b1d94a84d','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522152403&focal=none',1,'outline'),(36538,155644,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','71cd82c4-3b33-4339-9a72-5a6e764867e2','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Palliative-Care-Referral-v6.3-MD.rtf?mtime=20210430113927&focal=none',1,'outline'),(36539,155645,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','3148bb99-5d39-49cd-8d5c-a4c77410996f','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Referral-v6.3-BP.rtf?mtime=20210430112617&focal=none',1,'outline'),(36540,155646,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','7fc0c52b-4ab9-442b-b6f4-b9ec947a37de','PractiX',NULL,1,'outline'),(36541,155647,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','1bc6d1f6-e2e2-42bc-8fc4-3ae588a456d8','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Ref-v6.2-ZM.rtf?mtime=20200522153215&focal=none',1,'outline'),(36542,155649,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','498eafca-87a6-43b3-86d0-2b4a6e871451','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Maternity-Referral-v6.3-MD.rtf?mtime=20210430113924&focal=none',1,'outline'),(36543,155650,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','1b0c7418-d5d8-4024-82ea-6b6b1312f995','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Referral-v6.3-BP.rtf?mtime=20210430115904&focal=none',1,'outline'),(36544,155651,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','bdc774cb-72ad-40c9-958d-17d2a64a73fd','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-PractiX-v4_12-1.doc?mtime=20200522153957&focal=none',1,'outline'),(36545,155652,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','bba0656c-bb40-44b5-959d-d297c6a35225','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Ref-v6_2-ZM-1.rtf?mtime=20200522154107&focal=none',1,'outline'),(36546,155654,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','77edfd53-f3c9-4a0c-af48-19cbf1b26df6','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Paediatric-Referral-v6.3-MD.rtf?mtime=20210430113925&focal=none',1,'outline'),(36547,155655,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','00524218-3839-4d15-b0ef-92fd112dfee1','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Referral-v6.3-BP.rtf?mtime=20210430112614&focal=none',1,'outline'),(36548,155656,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','ce76669c-0775-4113-a632-2c245d9b7555','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-PractiX-v4_12-1.doc?mtime=20200522154912&focal=none',1,'outline'),(36549,155657,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','0ddc0dc1-e60f-428b-b696-1d071efea7e8','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Ref-v6_2-ZM-1.rtf?mtime=20200522155024&focal=none',1,'outline'),(36550,155659,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','bca42d57-9c31-49b9-a784-b814e530827c','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-COHD-Adult-Referral-v6.3-MD.rtf?mtime=20210430113922&focal=none',1,'outline'),(36551,155660,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','5886c8b0-4a32-4ee8-afb2-f50870c967a8','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-COHD-Adult-Referral-v6.3-BP.rtf?mtime=20210430120142&focal=none',1,'outline'),(36552,155661,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','3b022c01-1544-418e-999d-3d8df8001ce9','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Community-and-Oral-Health-Directorate-Ref-v6.2-ZM.rtf?mtime=20200807161125&focal=none',1,'outline'),(36553,155664,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','ca637039-2b9f-4420-98d4-7db35af6d2e3','Service information','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient',1,'solid'),(36554,155665,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','446f1176-daaf-4370-bda1-d66ac586da58','Find a specialist','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'solid'),(36555,155667,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','b47ed8d6-8e0f-40c7-aed0-c2f341f22210','Download the FAQs','https://metronorth.health.qld.gov.au/wp-content/uploads/2017/11/CPI-FAQ-V2.pdf',1,'solid'),(36556,155668,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','2415643b-a585-47ca-af2f-b3e17d6e2c22',NULL,NULL,0,'solid'),(36557,155689,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','623c2cdc-676f-449f-85ec-7f62d72f9c56','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113929&focal=none',1,'outline'),(36558,155690,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','e665a96b-d2c9-4e78-84c6-3188915168bd','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112619&focal=none',1,'outline'),(36559,155691,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','51848624-c56c-4578-a535-2d05f36f4915','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Referral-PractiX-v4_9-2.doc?mtime=20200521161148&focal=none',1,'outline'),(36560,155692,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','7c9d5841-958f-4074-9511-87f8a42aa4e0','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Ref-v6_2-ZM1-3.rtf?mtime=20200521161318&focal=none',1,'outline'),(36561,155694,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','2f8e5e02-653a-4613-9957-a954c8f8392b','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-TPCH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113931&focal=none',1,'outline'),(36562,155695,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','7189ff45-3351-4c31-8dad-6a961af52392','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112623&focal=none',1,'outline'),(36563,155696,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','bec35445-f51c-4947-9b9a-a89b94221d56','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-PCH-PractiX-v4_12-1.doc?mtime=20200522124052&focal=none',1,'outline'),(36564,155697,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','73aed975-0d87-47d3-b20c-533e32f117df','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Ref-v6_2-ZM-1.rtf?mtime=20200522124257&focal=none',0,'outline'),(36565,155699,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','aee6d216-3f31-4961-b743-fbb53a5969d1','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Redcliffe-Adult-Referral-v6.3-MD.rtf?mtime=20210430113930&focal=none',1,'outline'),(36566,155700,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','f33180e2-0d8a-4dc3-ba07-2b12cf8ed9fc','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Adult-Referral-v6.3-BP.rtf?mtime=20210430112621&focal=none',1,'outline'),(36567,155701,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','a70b6232-57ef-48e1-a74a-a4b0394d50c9','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-PractiX-v4_12-1.doc?mtime=20200522125843&focal=none',1,'outline'),(36568,155702,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','edc9ab0b-5638-4e2f-8e00-295014a4a7df','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522130025&focal=none',1,'outline'),(36569,155704,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','1f90edd1-365a-473f-a784-4cf2e288cc7b','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Caboolture-Adult-Referral-v6.3-MD.rtf?mtime=20210430113920&focal=none',1,'outline'),(36570,155705,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','222df642-f92e-4bbc-a38c-4d3069591787','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Adult-Referral-v6.3-BP.rtf?mtime=20210430115701&focal=none',1,'outline'),(36571,155706,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','c632d1ac-84eb-4eda-a77c-b243cb980f2b','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Cab-Referral-PractiX-v4_12-1.doc?mtime=20200522152242&focal=none',1,'outline'),(36572,155707,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','f37bf18a-742d-4c7e-9f48-d2489b41e369','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522152403&focal=none',1,'outline'),(36573,155709,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','d33d6c59-0ed1-438f-8ed5-f49dfbde3c8d','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Palliative-Care-Referral-v6.3-MD.rtf?mtime=20210430113927&focal=none',1,'outline'),(36574,155710,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','e5a55c90-6939-4e8c-b3f2-142003838855','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Referral-v6.3-BP.rtf?mtime=20210430112617&focal=none',1,'outline'),(36575,155711,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','e94a196e-b5eb-42f5-8325-692f3ff5fa76','PractiX',NULL,1,'outline'),(36576,155712,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','bf31e242-f08e-4f3d-883c-a8302b89fd4e','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Ref-v6.2-ZM.rtf?mtime=20200522153215&focal=none',1,'outline'),(36577,155714,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','84ac43b7-8a7f-4cd1-9076-c2c59f634e7f','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Maternity-Referral-v6.3-MD.rtf?mtime=20210430113924&focal=none',1,'outline'),(36578,155715,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','9eb7f87a-36a5-448c-97c3-be51dd7975ce','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Referral-v6.3-BP.rtf?mtime=20210430115904&focal=none',1,'outline'),(36579,155716,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','8d50a887-c524-4d2e-91f4-a896452c22c9','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-PractiX-v4_12-1.doc?mtime=20200522153957&focal=none',1,'outline'),(36580,155717,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','381e054f-460a-4ee1-ba93-285a1c66d4cf','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Ref-v6_2-ZM-1.rtf?mtime=20200522154107&focal=none',1,'outline'),(36581,155719,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','8d44f289-c97c-49a3-8edf-d7ac3ed6d151','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Paediatric-Referral-v6.3-MD.rtf?mtime=20210430113925&focal=none',1,'outline'),(36582,155720,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','693b74dd-3748-40d9-885f-50b6bcae68e5','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Referral-v6.3-BP.rtf?mtime=20210430112614&focal=none',1,'outline'),(36583,155721,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','705190a9-825a-4c8b-a0e9-8fe8b0aa539c','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-PractiX-v4_12-1.doc?mtime=20200522154912&focal=none',1,'outline'),(36584,155722,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','cf730318-afc0-485a-806d-d26932c97504','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Ref-v6_2-ZM-1.rtf?mtime=20200522155024&focal=none',1,'outline'),(36585,155724,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','0fc85416-def7-424f-a730-3e61df63227f','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-COHD-Adult-Referral-v6.3-MD.rtf?mtime=20210430113922&focal=none',1,'outline'),(36586,155725,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','77e2d944-90d6-477b-b4b4-07b188377577','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-COHD-Adult-Referral-v6.3-BP.rtf?mtime=20210430120142&focal=none',1,'outline'),(36587,155726,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','f167f0a6-a758-45c2-9e34-5120e9d19b79','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Community-and-Oral-Health-Directorate-Ref-v6.2-ZM.rtf?mtime=20200807161125&focal=none',1,'outline'),(36588,155729,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','56c528ea-a4c0-4ced-9dd5-c0dd58e0b44d','Service information','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient',1,'solid'),(36589,155730,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','89ea99db-8db4-407f-b6b0-daa1a13aba12','Find a specialist','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'solid'),(36590,155732,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','7fb4946d-7e6f-422b-9f0a-3409d3c65fd0','Download the FAQs','https://metronorth.health.qld.gov.au/wp-content/uploads/2017/11/CPI-FAQ-V2.pdf',1,'solid'),(36591,155753,1,'2021-05-07 05:33:09','2021-05-07 05:33:09','1ae582ea-6393-4e56-a7df-bbf994516198','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113929&focal=none',1,'outline'),(36592,155754,1,'2021-05-07 05:33:09','2021-05-07 05:33:09','2deb82ad-da9d-4de0-9a19-d3d10e295d17','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112619&focal=none',1,'outline'),(36593,155755,1,'2021-05-07 05:33:09','2021-05-07 05:33:09','f9a55eba-7371-4ebe-898c-fe38d5cd1047','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Referral-PractiX-v4_9-2.doc?mtime=20200521161148&focal=none',1,'outline'),(36594,155756,1,'2021-05-07 05:33:09','2021-05-07 05:33:09','2a02f188-e934-4de0-9ffc-6ef2b3ecc4cb','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Ref-v6_2-ZM1-3.rtf?mtime=20200521161318&focal=none',1,'outline'),(36595,155758,1,'2021-05-07 05:33:09','2021-05-07 05:33:09','25aae9a0-3268-46c8-858d-f510d569ca4f','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-TPCH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113931&focal=none',1,'outline'),(36596,155759,1,'2021-05-07 05:33:09','2021-05-07 05:33:09','158ba58d-96b0-4683-9ec2-7729211f31af','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112623&focal=none',1,'outline'),(36597,155760,1,'2021-05-07 05:33:09','2021-05-07 05:33:09','d58d2eb4-20a1-4aa8-b259-d37a77f4036c','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-PCH-PractiX-v4_12-1.doc?mtime=20200522124052&focal=none',1,'outline'),(36598,155761,1,'2021-05-07 05:33:09','2021-05-07 05:33:09','e30fb655-9b37-4225-8528-13ea8d3a7d19','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Ref-v6_2-ZM-1.rtf?mtime=20200522124257&focal=none',0,'outline'),(36599,155763,1,'2021-05-07 05:33:09','2021-05-07 05:33:09','ee55e357-ad9e-4dbf-a4a4-d096488369ec','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Redcliffe-Adult-Referral-v6.3-MD.rtf?mtime=20210430113930&focal=none',1,'outline'),(36600,155764,1,'2021-05-07 05:33:09','2021-05-07 05:33:09','20df6d62-04b2-424f-bdf6-f88c6a7fadca','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Adult-Referral-v6.3-BP.rtf?mtime=20210430112621&focal=none',1,'outline'),(36601,155765,1,'2021-05-07 05:33:09','2021-05-07 05:33:09','359db88a-22bc-433f-aa54-e6337f3c69bd','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-PractiX-v4_12-1.doc?mtime=20200522125843&focal=none',1,'outline'),(36602,155766,1,'2021-05-07 05:33:09','2021-05-07 05:33:09','1545031d-f7aa-4b0f-85dd-95034b011cb4','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522130025&focal=none',1,'outline'),(36603,155768,1,'2021-05-07 05:33:09','2021-05-07 05:33:09','91bc1c72-3e9e-4399-8694-279862638904','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Caboolture-Adult-Referral-v6.3-MD.rtf?mtime=20210430113920&focal=none',1,'outline'),(36604,155769,1,'2021-05-07 05:33:09','2021-05-07 05:33:09','548cc87c-425e-4c7f-8a56-a1ab6660855c','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Adult-Referral-v6.3-BP.rtf?mtime=20210430115701&focal=none',1,'outline'),(36605,155770,1,'2021-05-07 05:33:09','2021-05-07 05:33:09','d99f0432-9fc7-42d8-ba3f-6ebc600d461e','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Cab-Referral-PractiX-v4_12-1.doc?mtime=20200522152242&focal=none',1,'outline'),(36606,155771,1,'2021-05-07 05:33:09','2021-05-07 05:33:09','e102af61-8d13-4ca8-9f02-6c1b9ca7e205','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522152403&focal=none',1,'outline'),(36607,155773,1,'2021-05-07 05:33:09','2021-05-07 05:33:09','75e2f7e3-33d1-41fd-b6c5-dbece1caef14','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Palliative-Care-Referral-v6.3-MD.rtf?mtime=20210430113927&focal=none',1,'outline'),(36608,155774,1,'2021-05-07 05:33:09','2021-05-07 05:33:09','e3601728-31d0-4e69-8c74-f7c2ab816e36','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Referral-v6.3-BP.rtf?mtime=20210430112617&focal=none',1,'outline'),(36609,155775,1,'2021-05-07 05:33:09','2021-05-07 05:33:09','7c345f2c-0da2-4e1e-8e35-2c81bb7ef3a3','PractiX',NULL,1,'outline'),(36610,155776,1,'2021-05-07 05:33:09','2021-05-07 05:33:09','a2eaa882-a28b-4e98-b18f-1e4ba77c5df6','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Ref-v6.2-ZM.rtf?mtime=20200522153215&focal=none',1,'outline'),(36611,155778,1,'2021-05-07 05:33:10','2021-05-07 05:33:10','174be087-35ac-4746-9d1e-f859246fc931','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Maternity-Referral-v6.3-MD.rtf?mtime=20210430113924&focal=none',1,'outline'),(36612,155779,1,'2021-05-07 05:33:10','2021-05-07 05:33:10','543756d2-a7f6-421d-988f-05f3bf88d5dd','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Referral-v6.3-BP.rtf?mtime=20210430115904&focal=none',1,'outline'),(36613,155780,1,'2021-05-07 05:33:10','2021-05-07 05:33:10','d630613c-7c10-4bd4-94d8-e5d0ef2a1917','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-PractiX-v4_12-1.doc?mtime=20200522153957&focal=none',1,'outline'),(36614,155781,1,'2021-05-07 05:33:10','2021-05-07 05:33:10','7711a312-8d14-48e9-9950-d71f1642a088','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Ref-v6_2-ZM-1.rtf?mtime=20200522154107&focal=none',1,'outline'),(36615,155783,1,'2021-05-07 05:33:10','2021-05-07 05:33:10','6708d4b1-c259-4f5d-a2c0-e43ad8581ade','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Paediatric-Referral-v6.3-MD.rtf?mtime=20210430113925&focal=none',1,'outline'),(36616,155784,1,'2021-05-07 05:33:10','2021-05-07 05:33:10','75314ef3-960b-42b5-8e4e-96b30839990f','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Referral-v6.3-BP.rtf?mtime=20210430112614&focal=none',1,'outline'),(36617,155785,1,'2021-05-07 05:33:10','2021-05-07 05:33:10','07498e41-3b5a-4408-b623-f2361acba4ef','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-PractiX-v4_12-1.doc?mtime=20200522154912&focal=none',1,'outline'),(36618,155786,1,'2021-05-07 05:33:10','2021-05-07 05:33:10','a566f771-d447-4787-a688-6c2ea9c713d5','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Ref-v6_2-ZM-1.rtf?mtime=20200522155024&focal=none',1,'outline'),(36619,155788,1,'2021-05-07 05:33:10','2021-05-07 05:33:10','af90712e-f513-46d1-a362-2e86ab613fa0','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-COHD-Adult-Referral-v6.3-MD.rtf?mtime=20210430113922&focal=none',1,'outline'),(36620,155789,1,'2021-05-07 05:33:10','2021-05-07 05:33:10','2029e289-a65d-45fb-9fb9-ee7357c5fc4e','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-COHD-Adult-Referral-v6.3-BP.rtf?mtime=20210430120142&focal=none',1,'outline'),(36621,155790,1,'2021-05-07 05:33:10','2021-05-07 05:33:10','4940e788-a015-495f-8b8a-a8a394d33c74','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Community-and-Oral-Health-Directorate-Ref-v6.2-ZM.rtf?mtime=20200807161125&focal=none',1,'outline'),(36622,155793,1,'2021-05-07 05:33:10','2021-05-07 05:33:10','dbe72f54-e154-485a-85b1-2f130c41bfab','Service information','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient',1,'solid'),(36623,155794,1,'2021-05-07 05:33:10','2021-05-07 05:33:10','782acbdd-4231-448f-8c40-30919fd49afe','Find a specialist','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'solid'),(36624,155796,1,'2021-05-07 05:33:10','2021-05-07 05:33:10','5bcaca1c-6596-416b-b1c4-d949ad556a73','Download the FAQs','https://metronorth.health.qld.gov.au/wp-content/uploads/2017/11/CPI-FAQ-V2.pdf',1,'solid'),(36625,155818,1,'2021-05-07 05:33:12','2021-05-07 05:33:12','0a738568-9055-4f57-8954-35c55f802de1','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113929&focal=none',1,'outline'),(36626,155819,1,'2021-05-07 05:33:12','2021-05-07 05:33:12','1c7b6afc-8938-4f0a-8b8a-2bbfed433213','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112619&focal=none',1,'outline'),(36627,155820,1,'2021-05-07 05:33:12','2021-05-07 05:33:12','54fac181-3f45-4588-9273-6c12e58f99f1','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Referral-PractiX-v4_9-2.doc?mtime=20200521161148&focal=none',1,'outline'),(36628,155821,1,'2021-05-07 05:33:12','2021-05-07 05:33:12','aa6d817a-40b2-422d-8aed-8ba0c90eb01e','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Ref-v6_2-ZM1-3.rtf?mtime=20200521161318&focal=none',1,'outline'),(36629,155823,1,'2021-05-07 05:33:12','2021-05-07 05:33:12','89ed5d33-8c32-4c4f-bc9a-067d091f2da4','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-TPCH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113931&focal=none',1,'outline'),(36630,155824,1,'2021-05-07 05:33:12','2021-05-07 05:33:12','5f6c85cf-6a41-46e2-b19e-0aeaace06036','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112623&focal=none',1,'outline'),(36631,155825,1,'2021-05-07 05:33:12','2021-05-07 05:33:12','63a8380d-31d7-4169-92f6-091c4a7fb87a','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-PCH-PractiX-v4_12-1.doc?mtime=20200522124052&focal=none',1,'outline'),(36632,155826,1,'2021-05-07 05:33:12','2021-05-07 05:33:12','3943fded-f455-4806-994f-a1e88f8d9f87','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Ref-v6_2-ZM-1.rtf?mtime=20200522124257&focal=none',0,'outline'),(36633,155828,1,'2021-05-07 05:33:12','2021-05-07 05:33:12','d2f150dc-be07-461c-a35b-23a6e05eb3e0','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Redcliffe-Adult-Referral-v6.3-MD.rtf?mtime=20210430113930&focal=none',1,'outline'),(36634,155829,1,'2021-05-07 05:33:12','2021-05-07 05:33:12','37022c96-14eb-48f1-aea9-46a799847493','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Adult-Referral-v6.3-BP.rtf?mtime=20210430112621&focal=none',1,'outline'),(36635,155830,1,'2021-05-07 05:33:12','2021-05-07 05:33:12','73cb1a86-c4cb-40a0-9233-8668379a191a','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-PractiX-v4_12-1.doc?mtime=20200522125843&focal=none',1,'outline'),(36636,155831,1,'2021-05-07 05:33:12','2021-05-07 05:33:12','02053a55-ca62-49af-be2d-84227395ae37','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522130025&focal=none',1,'outline'),(36637,155833,1,'2021-05-07 05:33:12','2021-05-07 05:33:12','131ee4c3-2a30-49f4-a128-d30f3a5d78d6','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Caboolture-Adult-Referral-v6.3-MD.rtf?mtime=20210430113920&focal=none',1,'outline'),(36638,155834,1,'2021-05-07 05:33:12','2021-05-07 05:33:12','a0ad8d8e-425f-4e19-9846-fab31cd05d02','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Adult-Referral-v6.3-BP.rtf?mtime=20210430115701&focal=none',1,'outline'),(36639,155835,1,'2021-05-07 05:33:12','2021-05-07 05:33:12','61b94244-ce4d-426f-9b88-f830878b716c','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Cab-Referral-PractiX-v4_12-1.doc?mtime=20200522152242&focal=none',1,'outline'),(36640,155836,1,'2021-05-07 05:33:12','2021-05-07 05:33:12','ebe27e1d-fda2-4d93-be74-2bf90fc0f03e','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522152403&focal=none',1,'outline'),(36641,155838,1,'2021-05-07 05:33:13','2021-05-07 05:33:13','07f2ce87-f404-4dc9-a21e-edf1d1c53816','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Palliative-Care-Referral-v6.3-MD.rtf?mtime=20210430113927&focal=none',1,'outline'),(36642,155839,1,'2021-05-07 05:33:13','2021-05-07 05:33:13','6e1e3e4c-11b1-450a-9561-29e4436e46f9','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Referral-v6.3-BP.rtf?mtime=20210430112617&focal=none',1,'outline'),(36643,155840,1,'2021-05-07 05:33:13','2021-05-07 05:33:13','a853726f-ac73-4e21-9301-e4effb2bf1d0','PractiX',NULL,1,'outline'),(36644,155841,1,'2021-05-07 05:33:13','2021-05-07 05:33:13','cbe633de-b929-48bd-99b3-15804dd186a6','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Ref-v6.2-ZM.rtf?mtime=20200522153215&focal=none',1,'outline'),(36645,155843,1,'2021-05-07 05:33:13','2021-05-07 05:33:13','2d960aa4-d3b4-4f3c-aee6-5793f21cb7d9','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Maternity-Referral-v6.3-MD.rtf?mtime=20210430113924&focal=none',1,'outline'),(36646,155844,1,'2021-05-07 05:33:13','2021-05-07 05:33:13','a0911662-7bfa-40a1-a006-382a125a52e1','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Referral-v6.3-BP.rtf?mtime=20210430115904&focal=none',1,'outline'),(36647,155845,1,'2021-05-07 05:33:13','2021-05-07 05:33:13','25e738ef-03a4-48b2-9c6b-525e57fd2bad','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-PractiX-v4_12-1.doc?mtime=20200522153957&focal=none',1,'outline'),(36648,155846,1,'2021-05-07 05:33:13','2021-05-07 05:33:13','f3cd5b75-9bee-4049-b718-6695fababfea','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Ref-v6_2-ZM-1.rtf?mtime=20200522154107&focal=none',1,'outline'),(36649,155848,1,'2021-05-07 05:33:13','2021-05-07 05:33:13','1fcb0981-30eb-49ab-9663-2ed30d7c3615','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Paediatric-Referral-v6.3-MD.rtf?mtime=20210430113925&focal=none',1,'outline'),(36650,155849,1,'2021-05-07 05:33:13','2021-05-07 05:33:13','a5a6e1f5-a281-428f-889d-cab95b295120','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Referral-v6.3-BP.rtf?mtime=20210430112614&focal=none',1,'outline'),(36651,155850,1,'2021-05-07 05:33:13','2021-05-07 05:33:13','2695b4d0-825d-4ab5-8a2f-66597111042d','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-PractiX-v4_12-1.doc?mtime=20200522154912&focal=none',1,'outline'),(36652,155851,1,'2021-05-07 05:33:13','2021-05-07 05:33:13','4e4d4e8e-e51f-4695-8be2-fdc74a7989d3','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Ref-v6_2-ZM-1.rtf?mtime=20200522155024&focal=none',1,'outline'),(36653,155853,1,'2021-05-07 05:33:13','2021-05-07 05:33:13','87c6a775-fb55-45fe-b1ef-6af249d52e3a','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-COHD-Adult-Referral-v6.3-MD.rtf?mtime=20210430113922&focal=none',1,'outline'),(36654,155854,1,'2021-05-07 05:33:13','2021-05-07 05:33:13','f02cf55b-1d81-475b-b914-d71c35f9e9a4','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-COHD-Adult-Referral-v6.3-BP.rtf?mtime=20210430120142&focal=none',1,'outline'),(36655,155855,1,'2021-05-07 05:33:13','2021-05-07 05:33:13','570e219d-059b-4ed4-a9ad-e8d2d8181dc5','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Community-and-Oral-Health-Directorate-Ref-v6.2-ZM.rtf?mtime=20200807161125&focal=none',1,'outline'),(36656,155858,1,'2021-05-07 05:33:13','2021-05-07 05:33:13','58b242e9-613f-4d02-9835-ff2defe4bf28','Service information','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient',1,'solid'),(36657,155859,1,'2021-05-07 05:33:13','2021-05-07 05:33:13','64e88a7e-ac68-48fe-a455-b7ef361ba9d5','Find a specialist','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'solid'),(36658,155861,1,'2021-05-07 05:33:13','2021-05-07 05:33:13','c2b3e583-b72e-40d9-87ed-70d7d994b667','Download the FAQs','https://metronorth.health.qld.gov.au/wp-content/uploads/2017/11/CPI-FAQ-V2.pdf',1,'solid'),(36659,155863,1,'2021-05-07 05:33:13','2021-05-07 05:33:13','60911e8b-27ce-4a85-be8d-d7b3df7f1cef',NULL,NULL,0,'solid'),(36660,155884,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','55caffd0-4bed-4152-b12d-27d5bbfc2bb7','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113929&focal=none',1,'outline'),(36661,155885,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','64990139-b457-4f8e-ac29-66913ed2b1d4','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112619&focal=none',1,'outline'),(36662,155886,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','04282c99-1bcd-434d-8e22-d79ee084a6b1','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Referral-PractiX-v4_9-2.doc?mtime=20200521161148&focal=none',1,'outline'),(36663,155887,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','34c894b9-de9a-4475-a783-82dc52e05df5','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Ref-v6_2-ZM1-3.rtf?mtime=20200521161318&focal=none',1,'outline'),(36664,155889,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','1f57d358-1ced-4f7f-8fac-11e5de09c000','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-TPCH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113931&focal=none',1,'outline'),(36665,155890,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','88bf9465-31f1-4e1a-b891-57699e169654','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112623&focal=none',1,'outline'),(36666,155891,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','32881b50-9937-4da5-938d-e7480d0d5f2f','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-PCH-PractiX-v4_12-1.doc?mtime=20200522124052&focal=none',1,'outline'),(36667,155892,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','d66a5026-edfe-4958-a811-cb9a842944ee','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Ref-v6_2-ZM-1.rtf?mtime=20200522124257&focal=none',0,'outline'),(36668,155894,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','842280e6-fff2-49dd-b6d2-042fb043c596','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Redcliffe-Adult-Referral-v6.3-MD.rtf?mtime=20210430113930&focal=none',1,'outline'),(36669,155895,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','2e908abd-4fbd-44e7-8109-d510e1afa676','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Adult-Referral-v6.3-BP.rtf?mtime=20210430112621&focal=none',1,'outline'),(36670,155896,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','f58ff645-4dd3-4a88-bce4-24a9bc24161d','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-PractiX-v4_12-1.doc?mtime=20200522125843&focal=none',1,'outline'),(36671,155897,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','7ddca93f-0881-4edb-bdac-02f83f152526','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522130025&focal=none',1,'outline'),(36672,155899,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','7d792648-d2eb-46c1-bf16-ff0372b57014','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Caboolture-Adult-Referral-v6.3-MD.rtf?mtime=20210430113920&focal=none',1,'outline'),(36673,155900,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','1b804245-5242-4dba-87d4-3409a5cafaaa','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Adult-Referral-v6.3-BP.rtf?mtime=20210430115701&focal=none',1,'outline'),(36674,155901,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','12957be0-2f5f-4861-a9a2-554df4767aa3','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Cab-Referral-PractiX-v4_12-1.doc?mtime=20200522152242&focal=none',1,'outline'),(36675,155902,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','29e24cc0-dbca-4a64-a865-3f80fae0dae8','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522152403&focal=none',1,'outline'),(36676,155904,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','b82f69c8-f946-4bfb-a2a4-f2b431e73611','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Palliative-Care-Referral-v6.3-MD.rtf?mtime=20210430113927&focal=none',1,'outline'),(36677,155905,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','314647a2-f9b3-4114-9b9a-6d6b3b35b571','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Referral-v6.3-BP.rtf?mtime=20210430112617&focal=none',1,'outline'),(36678,155906,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','b30dfe4d-859c-4a03-9fad-56393c0f3af5','PractiX',NULL,1,'outline'),(36679,155907,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','7d95c4e0-5889-4c7c-9200-988d4b024dac','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Ref-v6.2-ZM.rtf?mtime=20200522153215&focal=none',1,'outline'),(36680,155909,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','fdbc8d9e-f0dd-4d3e-b6b8-46ee324b2539','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Maternity-Referral-v6.3-MD.rtf?mtime=20210430113924&focal=none',1,'outline'),(36681,155910,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','2ab83f9e-8af5-42b9-8b8f-00ec84e68b7a','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Referral-v6.3-BP.rtf?mtime=20210430115904&focal=none',1,'outline'),(36682,155911,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','baffe918-a50d-40da-aac7-26702aa8a13b','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-PractiX-v4_12-1.doc?mtime=20200522153957&focal=none',1,'outline'),(36683,155912,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','f1041a39-ef12-45e0-a937-f2a3d0a6aa47','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Ref-v6_2-ZM-1.rtf?mtime=20200522154107&focal=none',1,'outline'),(36684,155914,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','1940da6d-df9e-4800-b191-e3f5cbb62126','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Paediatric-Referral-v6.3-MD.rtf?mtime=20210430113925&focal=none',1,'outline'),(36685,155915,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','f41eb910-68af-48e2-b044-37e3dd2f9798','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Referral-v6.3-BP.rtf?mtime=20210430112614&focal=none',1,'outline'),(36686,155916,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','aebe91fc-ea9c-4004-a80b-86cf2d35c7f9','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-PractiX-v4_12-1.doc?mtime=20200522154912&focal=none',1,'outline'),(36687,155917,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','086fe3f5-9f55-415b-828a-0070b44bfa54','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Ref-v6_2-ZM-1.rtf?mtime=20200522155024&focal=none',1,'outline'),(36688,155919,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','9d94856d-73a9-493b-86fe-bd6b892e7cbc','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-COHD-Adult-Referral-v6.3-MD.rtf?mtime=20210430113922&focal=none',1,'outline'),(36689,155920,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','0a7761a4-af5c-4bad-8ef3-98963928195d','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-COHD-Adult-Referral-v6.3-BP.rtf?mtime=20210430120142&focal=none',1,'outline'),(36690,155921,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','e3418904-a466-41e1-8416-1e990a0da713','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Community-and-Oral-Health-Directorate-Ref-v6.2-ZM.rtf?mtime=20200807161125&focal=none',1,'outline'),(36691,155924,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','f23a9892-3786-4f45-8588-2de4e37a9ea8','Service information','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient',1,'solid'),(36692,155925,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','11d16923-482f-42bb-af41-a3dd531729c4','Find a specialist','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'solid'),(36693,155927,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','23486165-b0ce-456a-8c15-ecc17b6b17d8','Download the FAQs','https://metronorth.health.qld.gov.au/wp-content/uploads/2017/11/CPI-FAQ-V2.pdf',1,'solid'),(36694,155929,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','1a634652-9246-4f49-849f-daa23b674496',NULL,NULL,0,'solid'),(36695,155950,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','31a215f1-500a-4d4e-a912-7fa55b0ff2e5','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113929&focal=none',1,'outline'),(36696,155951,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','706cbedf-9b92-452c-a9d3-4b67e71a25ef','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112619&focal=none',1,'outline'),(36697,155952,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','ad2c3097-0ae6-42f4-ab50-57b3973f9d49','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Referral-PractiX-v4_9-2.doc?mtime=20200521161148&focal=none',1,'outline'),(36698,155953,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','40f7d6c9-4de4-4be5-8992-6fc58721d076','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Ref-v6_2-ZM1-3.rtf?mtime=20200521161318&focal=none',1,'outline'),(36699,155955,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','444daddc-9bd4-4876-8704-df9c662ed029','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-TPCH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113931&focal=none',1,'outline'),(36700,155956,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','70e8e424-8c31-4a04-80ed-7e8fd168e962','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112623&focal=none',1,'outline'),(36701,155957,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','c716c55c-d4f7-4520-9cd3-7e96fb5d86c8','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-PCH-PractiX-v4_12-1.doc?mtime=20200522124052&focal=none',1,'outline'),(36702,155958,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','9fd7e444-0216-4eb5-b368-660891ec231d','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Ref-v6_2-ZM-1.rtf?mtime=20200522124257&focal=none',0,'outline'),(36703,155960,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','ce71295f-84f9-4de7-8d19-eaa1410ba244','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Redcliffe-Adult-Referral-v6.3-MD.rtf?mtime=20210430113930&focal=none',1,'outline'),(36704,155961,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','3e781ff0-b580-4089-b98b-d3bb4a2c8655','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Adult-Referral-v6.3-BP.rtf?mtime=20210430112621&focal=none',1,'outline'),(36705,155962,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','6ca3baaf-de4f-4556-960b-e75cd39f87e8','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-PractiX-v4_12-1.doc?mtime=20200522125843&focal=none',1,'outline'),(36706,155963,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','d0e01477-05df-441f-8ef8-85af2f654bc5','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522130025&focal=none',1,'outline'),(36707,155965,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','44961e2f-a979-4933-9041-0f94832a54e2','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Caboolture-Adult-Referral-v6.3-MD.rtf?mtime=20210430113920&focal=none',1,'outline'),(36708,155966,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','2531ea24-bf68-4e84-8e44-0273e2a97be6','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Adult-Referral-v6.3-BP.rtf?mtime=20210430115701&focal=none',1,'outline'),(36709,155967,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','ee6fa5ac-1517-4776-9b23-b9294c9a7dfd','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Cab-Referral-PractiX-v4_12-1.doc?mtime=20200522152242&focal=none',1,'outline'),(36710,155968,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','95591012-8cae-41c9-94c3-47d382b84bdc','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522152403&focal=none',1,'outline'),(36711,155970,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','9610c402-446b-4b99-ae62-8e681989a47b','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Palliative-Care-Referral-v6.3-MD.rtf?mtime=20210430113927&focal=none',1,'outline'),(36712,155971,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','db8e3f79-97c4-49e8-817f-3bbe026f17f8','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Referral-v6.3-BP.rtf?mtime=20210430112617&focal=none',1,'outline'),(36713,155972,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','8ff5fa93-e927-4463-b762-6586df0cd1d8','PractiX',NULL,1,'outline'),(36714,155973,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','7c2713ee-57b6-48ad-a247-c7733a220da7','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Ref-v6.2-ZM.rtf?mtime=20200522153215&focal=none',1,'outline'),(36715,155975,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','f5b73d4c-658f-46c0-9c0e-3f318735c9c9','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Maternity-Referral-v6.3-MD.rtf?mtime=20210430113924&focal=none',1,'outline'),(36716,155976,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','5c8d707c-47c2-4700-a469-5ef86c1f2737','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Referral-v6.3-BP.rtf?mtime=20210430115904&focal=none',1,'outline'),(36717,155977,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','d5d406a7-4a91-4855-b6ac-aa6332af2e4b','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-PractiX-v4_12-1.doc?mtime=20200522153957&focal=none',1,'outline'),(36718,155978,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','8774ed42-1a75-4be1-964a-f2519ee06996','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Ref-v6_2-ZM-1.rtf?mtime=20200522154107&focal=none',1,'outline'),(36719,155980,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','7fcec326-d7ea-4481-9518-d64bd430218b','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Paediatric-Referral-v6.3-MD.rtf?mtime=20210430113925&focal=none',1,'outline'),(36720,155981,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','60404b3b-b639-4dc7-9a83-ba3b2759c975','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Referral-v6.3-BP.rtf?mtime=20210430112614&focal=none',1,'outline'),(36721,155982,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','cae6a612-fa2a-463c-80c3-04de5ddce429','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-PractiX-v4_12-1.doc?mtime=20200522154912&focal=none',1,'outline'),(36722,155983,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','b574c70d-33da-415c-aaa5-8cbb49f3a54e','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Ref-v6_2-ZM-1.rtf?mtime=20200522155024&focal=none',1,'outline'),(36723,155985,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','b5f26f03-3544-4699-9361-467c8f978a7a','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-COHD-Adult-Referral-v6.3-MD.rtf?mtime=20210430113922&focal=none',1,'outline'),(36724,155986,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','4530ec4f-35c0-45b0-8d6b-8cfe854d6e80','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-COHD-Adult-Referral-v6.3-BP.rtf?mtime=20210430120142&focal=none',1,'outline'),(36725,155987,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','04ffa197-e1d3-4d91-99d0-bded3e3b05cf','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Community-and-Oral-Health-Directorate-Ref-v6.2-ZM.rtf?mtime=20200807161125&focal=none',1,'outline'),(36726,155990,1,'2021-05-07 05:33:33','2021-05-07 05:33:33','db0b22c5-5989-4384-9aae-4eba3fe705b2','Service information','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient',1,'solid'),(36727,155991,1,'2021-05-07 05:33:33','2021-05-07 05:33:33','86250e72-1847-4d39-aaba-6580b7d5648a','Find a specialist','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'solid'),(36728,155993,1,'2021-05-07 05:33:33','2021-05-07 05:33:33','2bb45ea3-c528-4b7e-9bad-28c8ece2e558','Download the FAQs','https://metronorth.health.qld.gov.au/wp-content/uploads/2017/11/CPI-FAQ-V2.pdf',1,'solid'),(36729,155995,1,'2021-05-07 05:33:33','2021-05-07 05:33:33','10ae6434-4356-4e8e-8db4-a311e1b5cf4b','Cabool',NULL,0,'solid'),(36730,156016,1,'2021-05-07 05:33:35','2021-05-07 05:33:35','17df0192-002e-479b-ad3e-cd0e597a0310','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113929&focal=none',1,'outline'),(36731,156017,1,'2021-05-07 05:33:35','2021-05-07 05:33:35','50befdc2-3589-49da-89a0-877cb1bb4f0d','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112619&focal=none',1,'outline'),(36732,156018,1,'2021-05-07 05:33:35','2021-05-07 05:33:35','798ef32c-fde8-4ec9-bc38-1a818c44078f','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Referral-PractiX-v4_9-2.doc?mtime=20200521161148&focal=none',1,'outline'),(36733,156019,1,'2021-05-07 05:33:35','2021-05-07 05:33:35','8998ee51-027d-4505-9984-518f6def50d5','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Ref-v6_2-ZM1-3.rtf?mtime=20200521161318&focal=none',1,'outline'),(36734,156021,1,'2021-05-07 05:33:35','2021-05-07 05:33:35','7d923898-e7dc-4323-aacf-bf5c29f82d90','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-TPCH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113931&focal=none',1,'outline'),(36735,156022,1,'2021-05-07 05:33:35','2021-05-07 05:33:35','1a89cf19-8415-413f-a491-9bd8f088a71f','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112623&focal=none',1,'outline'),(36736,156023,1,'2021-05-07 05:33:35','2021-05-07 05:33:35','3e7257e0-f8d6-4543-b4e4-722405344f5a','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-PCH-PractiX-v4_12-1.doc?mtime=20200522124052&focal=none',1,'outline'),(36737,156024,1,'2021-05-07 05:33:35','2021-05-07 05:33:35','36d9b92e-79a8-4c3e-95d3-8bab769c4e72','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Ref-v6_2-ZM-1.rtf?mtime=20200522124257&focal=none',0,'outline'),(36738,156026,1,'2021-05-07 05:33:35','2021-05-07 05:33:35','69612213-4e3b-45f7-90ed-ed8fa96aa4d0','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Redcliffe-Adult-Referral-v6.3-MD.rtf?mtime=20210430113930&focal=none',1,'outline'),(36739,156027,1,'2021-05-07 05:33:35','2021-05-07 05:33:35','2f405de8-c4e0-4975-902e-1fb8382304ea','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Adult-Referral-v6.3-BP.rtf?mtime=20210430112621&focal=none',1,'outline'),(36740,156028,1,'2021-05-07 05:33:35','2021-05-07 05:33:35','e4893502-ed74-4ad5-acf8-de7c1d14e9e7','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-PractiX-v4_12-1.doc?mtime=20200522125843&focal=none',1,'outline'),(36741,156029,1,'2021-05-07 05:33:35','2021-05-07 05:33:35','448473b2-f3c2-4486-b5eb-361244b7d331','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522130025&focal=none',1,'outline'),(36742,156031,1,'2021-05-07 05:33:35','2021-05-07 05:33:35','cbfab5d5-4215-4dde-84e5-b62857ef28a0','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Caboolture-Adult-Referral-v6.3-MD.rtf?mtime=20210430113920&focal=none',1,'outline'),(36743,156032,1,'2021-05-07 05:33:35','2021-05-07 05:33:35','f4fee576-cc47-4d3f-b4f8-976a90f98da6','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Adult-Referral-v6.3-BP.rtf?mtime=20210430115701&focal=none',1,'outline'),(36744,156033,1,'2021-05-07 05:33:35','2021-05-07 05:33:35','994abc7d-fe44-48d3-9204-5dfa20c63cee','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Cab-Referral-PractiX-v4_12-1.doc?mtime=20200522152242&focal=none',1,'outline'),(36745,156034,1,'2021-05-07 05:33:35','2021-05-07 05:33:35','f26d782e-a134-4339-a378-5ef9063dde75','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522152403&focal=none',1,'outline'),(36746,156036,1,'2021-05-07 05:33:35','2021-05-07 05:33:35','5a569478-ff9c-4be8-8d57-e6dee56e96d3','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Palliative-Care-Referral-v6.3-MD.rtf?mtime=20210430113927&focal=none',1,'outline'),(36747,156037,1,'2021-05-07 05:33:35','2021-05-07 05:33:35','f1f8bfdb-bb89-4d38-8d14-9f144d372bda','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Referral-v6.3-BP.rtf?mtime=20210430112617&focal=none',1,'outline'),(36748,156038,1,'2021-05-07 05:33:35','2021-05-07 05:33:35','bad662fe-29c9-43f4-8f1d-276c013d7d8b','PractiX',NULL,1,'outline'),(36749,156039,1,'2021-05-07 05:33:35','2021-05-07 05:33:35','961396be-8af6-4a0c-bbe9-df14929be377','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Ref-v6.2-ZM.rtf?mtime=20200522153215&focal=none',1,'outline'),(36750,156041,1,'2021-05-07 05:33:35','2021-05-07 05:33:35','64f3c181-9190-482f-9845-200b4325d08a','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Maternity-Referral-v6.3-MD.rtf?mtime=20210430113924&focal=none',1,'outline'),(36751,156042,1,'2021-05-07 05:33:35','2021-05-07 05:33:35','c340ff6f-a0b6-4326-8f38-8fda67312b2f','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Referral-v6.3-BP.rtf?mtime=20210430115904&focal=none',1,'outline'),(36752,156043,1,'2021-05-07 05:33:35','2021-05-07 05:33:35','c5f870c8-e164-4c1d-b140-ecf319143e50','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-PractiX-v4_12-1.doc?mtime=20200522153957&focal=none',1,'outline'),(36753,156044,1,'2021-05-07 05:33:35','2021-05-07 05:33:35','09aa8046-40ec-4881-a08b-e8261dcdb19c','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Ref-v6_2-ZM-1.rtf?mtime=20200522154107&focal=none',1,'outline'),(36754,156046,1,'2021-05-07 05:33:36','2021-05-07 05:33:36','18824c70-eff3-44a0-b507-7e1e7c964e00','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Paediatric-Referral-v6.3-MD.rtf?mtime=20210430113925&focal=none',1,'outline'),(36755,156047,1,'2021-05-07 05:33:36','2021-05-07 05:33:36','9313bf55-8239-4c34-af9a-becfa4e4ba0b','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Referral-v6.3-BP.rtf?mtime=20210430112614&focal=none',1,'outline'),(36756,156048,1,'2021-05-07 05:33:36','2021-05-07 05:33:36','9861b846-7948-428e-94e5-04bb62e4774c','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-PractiX-v4_12-1.doc?mtime=20200522154912&focal=none',1,'outline'),(36757,156049,1,'2021-05-07 05:33:36','2021-05-07 05:33:36','764703ba-7ecd-4ad1-89c7-992d94fa40ef','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Ref-v6_2-ZM-1.rtf?mtime=20200522155024&focal=none',1,'outline'),(36758,156051,1,'2021-05-07 05:33:36','2021-05-07 05:33:36','eaa5b8ca-2d37-4b32-a65b-6d216eab3ecb','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-COHD-Adult-Referral-v6.3-MD.rtf?mtime=20210430113922&focal=none',1,'outline'),(36759,156052,1,'2021-05-07 05:33:36','2021-05-07 05:33:36','badbfc08-d458-4bb9-95b4-a31daf1c0a23','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-COHD-Adult-Referral-v6.3-BP.rtf?mtime=20210430120142&focal=none',1,'outline'),(36760,156053,1,'2021-05-07 05:33:36','2021-05-07 05:33:36','5d6f49ba-6ea3-4993-90a8-1f640b3ebf1e','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Community-and-Oral-Health-Directorate-Ref-v6.2-ZM.rtf?mtime=20200807161125&focal=none',1,'outline'),(36761,156056,1,'2021-05-07 05:33:36','2021-05-07 05:33:36','0cd0a89a-0fc4-4d57-8bbe-fd97e0f9df31','Service information','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient',1,'solid'),(36762,156057,1,'2021-05-07 05:33:36','2021-05-07 05:33:36','b18004cb-01b0-4813-ba93-d5aff9b367d0','Find a specialist','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'solid'),(36763,156059,1,'2021-05-07 05:33:36','2021-05-07 05:33:36','d2954a67-129a-4e65-a06a-fd987d4b48ab','Download the FAQs','https://metronorth.health.qld.gov.au/wp-content/uploads/2017/11/CPI-FAQ-V2.pdf',1,'solid'),(36764,156061,1,'2021-05-07 05:33:36','2021-05-07 05:33:36','28936b4a-8665-49de-b05e-55d896a4bfb4','Caboolture Hospital',NULL,0,'solid'),(36765,156082,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','edfcf78c-531b-4136-bcea-85c3fb62b4ba','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113929&focal=none',1,'outline'),(36766,156083,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','71c6df09-7a0a-412c-a0c5-31e2e042a7d8','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112619&focal=none',1,'outline'),(36767,156084,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','243b9918-97c8-440a-bd47-00928d29e23e','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Referral-PractiX-v4_9-2.doc?mtime=20200521161148&focal=none',1,'outline'),(36768,156085,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','d62a02b7-f2a3-4528-8746-f010f2a434a7','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Ref-v6_2-ZM1-3.rtf?mtime=20200521161318&focal=none',1,'outline'),(36769,156087,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','748aacf2-f05d-4358-bddf-246e4e41a47d','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-TPCH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113931&focal=none',1,'outline'),(36770,156088,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','1794801a-a422-43fc-af9c-2ddafdd56837','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112623&focal=none',1,'outline'),(36771,156089,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','f52b3a23-d783-4f09-84b2-3ae2b3c46dd5','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-PCH-PractiX-v4_12-1.doc?mtime=20200522124052&focal=none',1,'outline'),(36772,156090,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','b67dc943-a80b-4908-8ff8-98b709bf78cd','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Ref-v6_2-ZM-1.rtf?mtime=20200522124257&focal=none',0,'outline'),(36773,156092,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','8f61997e-806e-454e-8251-b1ebe8c0012a','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Redcliffe-Adult-Referral-v6.3-MD.rtf?mtime=20210430113930&focal=none',1,'outline'),(36774,156093,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','b603863b-e997-4629-b00e-817c57debd65','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Adult-Referral-v6.3-BP.rtf?mtime=20210430112621&focal=none',1,'outline'),(36775,156094,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','97958eab-be65-412a-b1d7-d62acce613ca','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-PractiX-v4_12-1.doc?mtime=20200522125843&focal=none',1,'outline'),(36776,156095,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','8971ebbc-5981-4819-b096-57fec747edb4','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522130025&focal=none',1,'outline'),(36777,156097,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','85a3f9c6-beec-4350-ba53-bb6c995fe358','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Caboolture-Adult-Referral-v6.3-MD.rtf?mtime=20210430113920&focal=none',1,'outline'),(36778,156098,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','9786ebb8-c5a1-473d-9db9-404d0ac2d31c','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Adult-Referral-v6.3-BP.rtf?mtime=20210430115701&focal=none',1,'outline'),(36779,156099,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','494524d4-eb44-4881-af6c-de51afecafc3','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Cab-Referral-PractiX-v4_12-1.doc?mtime=20200522152242&focal=none',1,'outline'),(36780,156100,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','375bcbf6-6508-49f4-879d-a29ab14748d2','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522152403&focal=none',1,'outline'),(36781,156102,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','75051b5c-7eb4-4d78-be2c-70ff689dfc1b','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Palliative-Care-Referral-v6.3-MD.rtf?mtime=20210430113927&focal=none',1,'outline'),(36782,156103,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','9a969243-72e2-468e-905a-171a3bc8bc6e','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Referral-v6.3-BP.rtf?mtime=20210430112617&focal=none',1,'outline'),(36783,156104,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','5b19cd87-bbc8-4eb6-bd5b-9ff9e3517372','PractiX',NULL,1,'outline'),(36784,156105,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','633721ab-8f3b-437d-9f6d-eecad6569c52','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Ref-v6.2-ZM.rtf?mtime=20200522153215&focal=none',1,'outline'),(36785,156107,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','37e8503f-4d20-441c-b7e0-5dd61b96f755','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Maternity-Referral-v6.3-MD.rtf?mtime=20210430113924&focal=none',1,'outline'),(36786,156108,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','a1bed621-d3dc-4433-b63c-ffab403a9ce0','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Referral-v6.3-BP.rtf?mtime=20210430115904&focal=none',1,'outline'),(36787,156109,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','1d031d04-34e2-48b5-aa83-04b7b76f8409','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-PractiX-v4_12-1.doc?mtime=20200522153957&focal=none',1,'outline'),(36788,156110,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','aa04b88d-a25a-422f-9bd7-aea5b7cd524b','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Ref-v6_2-ZM-1.rtf?mtime=20200522154107&focal=none',1,'outline'),(36789,156112,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','a884ed40-9283-4f11-bf47-5c13d3e7a206','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Paediatric-Referral-v6.3-MD.rtf?mtime=20210430113925&focal=none',1,'outline'),(36790,156113,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','35c6d0e5-2963-4847-83d8-1f088a2cf297','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Referral-v6.3-BP.rtf?mtime=20210430112614&focal=none',1,'outline'),(36791,156114,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','db410cdc-6a8e-435f-8288-e2b490d7afe6','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-PractiX-v4_12-1.doc?mtime=20200522154912&focal=none',1,'outline'),(36792,156115,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','437bf3c8-645b-492f-8734-0f0a6a5124b1','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Ref-v6_2-ZM-1.rtf?mtime=20200522155024&focal=none',1,'outline'),(36793,156117,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','c94edffd-8018-452a-85c0-9d418d948e1e','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-COHD-Adult-Referral-v6.3-MD.rtf?mtime=20210430113922&focal=none',1,'outline'),(36794,156118,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','bac57c42-babe-4a91-a968-a22ca048fbb5','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-COHD-Adult-Referral-v6.3-BP.rtf?mtime=20210430120142&focal=none',1,'outline'),(36795,156119,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','036ce634-1f86-46d7-a126-3d71d2ebce4a','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Community-and-Oral-Health-Directorate-Ref-v6.2-ZM.rtf?mtime=20200807161125&focal=none',1,'outline'),(36796,156122,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','275cbdf7-b21d-4ec5-9273-a2e35bc644fa','Service information','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient',1,'solid'),(36797,156123,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','91eb63b3-dfe0-44a0-85d2-9f59c3356212','Find a specialist','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'solid'),(36798,156125,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','729b0415-8c8e-41d4-a9b8-e43e8458b2fe','Download the FAQs','https://metronorth.health.qld.gov.au/wp-content/uploads/2017/11/CPI-FAQ-V2.pdf',1,'solid'),(36799,156127,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','0f1c588c-9ab2-45d7-966c-b5078192ea8a','Caboolture Hospital surgical team',NULL,0,'solid'),(36800,156148,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','de30c517-713d-4662-8994-6e00ed13fec7','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113929&focal=none',1,'outline'),(36801,156149,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','ac37a35b-1596-4deb-b3d6-ffa6ea421c59','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112619&focal=none',1,'outline'),(36802,156150,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','670606ab-9e80-4b21-b319-4554628decf5','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Referral-PractiX-v4_9-2.doc?mtime=20200521161148&focal=none',1,'outline'),(36803,156151,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','d77cce91-c962-488f-bf69-2ecf76db9192','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Ref-v6_2-ZM1-3.rtf?mtime=20200521161318&focal=none',1,'outline'),(36804,156153,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','275039c7-a0e0-4414-83a3-964cc388dbe0','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-TPCH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113931&focal=none',1,'outline'),(36805,156154,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','3a692719-4c07-43a2-b886-357890ee489c','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112623&focal=none',1,'outline'),(36806,156155,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','508c4be8-52c9-4e00-89c4-fee06d7ae677','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-PCH-PractiX-v4_12-1.doc?mtime=20200522124052&focal=none',1,'outline'),(36807,156156,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','9dd68b72-eb5b-4ca2-aff9-f02c93c41be6','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Ref-v6_2-ZM-1.rtf?mtime=20200522124257&focal=none',0,'outline'),(36808,156158,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','d9229510-abda-4255-bded-04eb0db286a1','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Redcliffe-Adult-Referral-v6.3-MD.rtf?mtime=20210430113930&focal=none',1,'outline'),(36809,156159,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','5be2b9f7-aeb1-42e0-9f73-c6a511148add','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Adult-Referral-v6.3-BP.rtf?mtime=20210430112621&focal=none',1,'outline'),(36810,156160,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','87a8f129-b0b3-40af-8552-0df8467d8220','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-PractiX-v4_12-1.doc?mtime=20200522125843&focal=none',1,'outline'),(36811,156161,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','c6a239bf-aea3-4821-8590-c993c237c910','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522130025&focal=none',1,'outline'),(36812,156163,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','15b0c4db-7105-4029-91f4-4f19c5bf1d39','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Caboolture-Adult-Referral-v6.3-MD.rtf?mtime=20210430113920&focal=none',1,'outline'),(36813,156164,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','325330cb-b11b-4533-9ed3-63458b65d49a','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Adult-Referral-v6.3-BP.rtf?mtime=20210430115701&focal=none',1,'outline'),(36814,156165,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','0c7ffc83-bb2c-45a2-b84f-49d4eb85b87e','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Cab-Referral-PractiX-v4_12-1.doc?mtime=20200522152242&focal=none',1,'outline'),(36815,156166,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','81e54a68-e83a-4fc5-bee6-a50355a7f23f','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522152403&focal=none',1,'outline'),(36816,156168,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','fd96f1ce-995f-4098-98cd-4e3b589d0d46','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Palliative-Care-Referral-v6.3-MD.rtf?mtime=20210430113927&focal=none',1,'outline'),(36817,156169,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','d48c18b4-a0fd-4bea-bd70-55ff6fed298a','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Referral-v6.3-BP.rtf?mtime=20210430112617&focal=none',1,'outline'),(36818,156170,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','ed02fbf7-8014-406f-9bec-c285c0f1be22','PractiX',NULL,1,'outline'),(36819,156171,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','b3982e8e-880e-4f77-998b-3a45c24d3e64','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Ref-v6.2-ZM.rtf?mtime=20200522153215&focal=none',1,'outline'),(36820,156173,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','3d2f7f3e-7b6c-408b-ac56-902c96171895','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Maternity-Referral-v6.3-MD.rtf?mtime=20210430113924&focal=none',1,'outline'),(36821,156174,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','fab032f3-5bba-43d0-8cab-d5f0ee5e8ebf','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Referral-v6.3-BP.rtf?mtime=20210430115904&focal=none',1,'outline'),(36822,156175,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','0a8cd62e-5c72-4167-bf06-353ed3241bff','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-PractiX-v4_12-1.doc?mtime=20200522153957&focal=none',1,'outline'),(36823,156176,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','056d8be0-1cd5-49c3-8083-7de097130c5a','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Ref-v6_2-ZM-1.rtf?mtime=20200522154107&focal=none',1,'outline'),(36824,156178,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','b7ee9b8f-385d-4d64-8a74-7b2683d271b6','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Paediatric-Referral-v6.3-MD.rtf?mtime=20210430113925&focal=none',1,'outline'),(36825,156179,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','a3a8b0e5-5830-4023-b345-f1386d2b2ab6','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Referral-v6.3-BP.rtf?mtime=20210430112614&focal=none',1,'outline'),(36826,156180,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','803f8a86-1639-451a-9747-8922d895e0d3','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-PractiX-v4_12-1.doc?mtime=20200522154912&focal=none',1,'outline'),(36827,156181,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','3e12e636-4212-4607-813b-2130f045c5c8','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Ref-v6_2-ZM-1.rtf?mtime=20200522155024&focal=none',1,'outline'),(36828,156183,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','214dd21a-ef84-4cdf-811a-443e1662c45a','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-COHD-Adult-Referral-v6.3-MD.rtf?mtime=20210430113922&focal=none',1,'outline'),(36829,156184,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','36ef882d-0082-4113-a685-d08fde33dfea','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-COHD-Adult-Referral-v6.3-BP.rtf?mtime=20210430120142&focal=none',1,'outline'),(36830,156185,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','81a2d536-5866-44dc-bc4c-ed18364ad7b7','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Community-and-Oral-Health-Directorate-Ref-v6.2-ZM.rtf?mtime=20200807161125&focal=none',1,'outline'),(36831,156188,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','e90b9eee-7585-4423-9c1c-4b92643fa3bd','Service information','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient',1,'solid'),(36832,156189,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','ca17739f-be55-48b4-b9e0-47ef94a8c8a1','Find a specialist','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'solid'),(36833,156191,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','99f2fd0f-3b92-4249-a307-26731408220f','Download the FAQs','https://metronorth.health.qld.gov.au/wp-content/uploads/2017/11/CPI-FAQ-V2.pdf',1,'solid'),(36834,156193,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','b6a84a97-a855-4a3a-8005-f3963ef60ba1','Caboolture Hospital surgical team',NULL,0,'solid'),(36835,156214,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','44902cab-5a95-44bc-ab23-3a8d67fba65b','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113929&focal=none',1,'outline'),(36836,156215,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','ff98ae49-48ba-472d-8bf4-ac200d890b3f','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112619&focal=none',1,'outline'),(36837,156216,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','56fecf69-b2fb-40a8-8c47-2952d69f3d15','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Referral-PractiX-v4_9-2.doc?mtime=20200521161148&focal=none',1,'outline'),(36838,156217,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','c728898b-fcb5-467a-89da-13dc08153cea','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Ref-v6_2-ZM1-3.rtf?mtime=20200521161318&focal=none',1,'outline'),(36839,156219,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','17d81b68-ed52-4782-bb1f-e0668b2bfead','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-TPCH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113931&focal=none',1,'outline'),(36840,156220,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','5e22c7b8-fd56-451d-ad1c-cc31ee8288ed','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112623&focal=none',1,'outline'),(36841,156221,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','b371b014-b459-4723-9613-907673f8479c','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-PCH-PractiX-v4_12-1.doc?mtime=20200522124052&focal=none',1,'outline'),(36842,156222,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','5cd0a7d9-4bab-4fa9-9b5c-1eb2fed1a90b','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Ref-v6_2-ZM-1.rtf?mtime=20200522124257&focal=none',0,'outline'),(36843,156224,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','c08d8e4a-82ec-459d-b922-176f62dd97e6','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Redcliffe-Adult-Referral-v6.3-MD.rtf?mtime=20210430113930&focal=none',1,'outline'),(36844,156225,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','31e74a80-b270-47dc-a244-1ed260fa4dd3','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Adult-Referral-v6.3-BP.rtf?mtime=20210430112621&focal=none',1,'outline'),(36845,156226,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','bfae786d-78f0-442c-9a40-83bba01dbbc7','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-PractiX-v4_12-1.doc?mtime=20200522125843&focal=none',1,'outline'),(36846,156227,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','8db80c10-ca52-45dd-988f-8152c7deca9e','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522130025&focal=none',1,'outline'),(36847,156229,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','59cd8ffd-6f6c-42e0-83af-1dc55aff94e5','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Caboolture-Adult-Referral-v6.3-MD.rtf?mtime=20210430113920&focal=none',1,'outline'),(36848,156230,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','8e7977ea-f849-4d35-92c4-f1c695981f76','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Adult-Referral-v6.3-BP.rtf?mtime=20210430115701&focal=none',1,'outline'),(36849,156231,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','3cc708c0-3da1-43a1-a9b0-cd8d37cd3766','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Cab-Referral-PractiX-v4_12-1.doc?mtime=20200522152242&focal=none',1,'outline'),(36850,156232,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','6c73911b-3174-4edf-ae41-b543805a01af','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522152403&focal=none',1,'outline'),(36851,156234,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','a52dea96-26f0-46c7-81e0-3293bbda015a','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Palliative-Care-Referral-v6.3-MD.rtf?mtime=20210430113927&focal=none',1,'outline'),(36852,156235,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','f71b0fe5-d2ca-40c5-94fe-dae7d7cf7940','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Referral-v6.3-BP.rtf?mtime=20210430112617&focal=none',1,'outline'),(36853,156236,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','9844cc51-79b4-47d4-a106-d4f285c2d2d1','PractiX',NULL,1,'outline'),(36854,156237,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','ad599069-c6fe-4cb9-86a2-94fdde75b645','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Ref-v6.2-ZM.rtf?mtime=20200522153215&focal=none',1,'outline'),(36855,156239,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','fcafa4b7-c88e-4c2d-a417-3d9ab0cf009a','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Maternity-Referral-v6.3-MD.rtf?mtime=20210430113924&focal=none',1,'outline'),(36856,156240,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','b92e4980-83c5-49d3-b7bc-51cdf9eeb320','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Referral-v6.3-BP.rtf?mtime=20210430115904&focal=none',1,'outline'),(36857,156241,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','a73ad7a5-84a4-415e-b4fb-b0bd14c3f86d','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-PractiX-v4_12-1.doc?mtime=20200522153957&focal=none',1,'outline'),(36858,156242,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','08aa198e-7a11-4250-9d50-233d6290a9cd','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Ref-v6_2-ZM-1.rtf?mtime=20200522154107&focal=none',1,'outline'),(36859,156244,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','9d143325-059c-448d-89a5-04ac98731b02','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Paediatric-Referral-v6.3-MD.rtf?mtime=20210430113925&focal=none',1,'outline'),(36860,156245,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','bd9d1e39-7b6c-4fca-899a-827ba70d5047','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Referral-v6.3-BP.rtf?mtime=20210430112614&focal=none',1,'outline'),(36861,156246,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','747caed7-a58a-45eb-bed8-31765d57a979','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-PractiX-v4_12-1.doc?mtime=20200522154912&focal=none',1,'outline'),(36862,156247,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','db4e3edd-c93d-4d7b-8b90-2237cfd51214','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Ref-v6_2-ZM-1.rtf?mtime=20200522155024&focal=none',1,'outline'),(36863,156249,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','a50b569a-17c0-4c90-b0b0-3183cc205c67','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-COHD-Adult-Referral-v6.3-MD.rtf?mtime=20210430113922&focal=none',1,'outline'),(36864,156250,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','4f9f0b90-71c4-4dcd-97a5-a06455deea0b','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-COHD-Adult-Referral-v6.3-BP.rtf?mtime=20210430120142&focal=none',1,'outline'),(36865,156251,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','995ff664-530a-4684-b84f-d557c5998e47','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Community-and-Oral-Health-Directorate-Ref-v6.2-ZM.rtf?mtime=20200807161125&focal=none',1,'outline'),(36866,156254,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','396ccc3f-4eb8-46b1-be5f-67e9a33d5aea','Service information','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient',1,'solid'),(36867,156255,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','bd1cff24-85e4-4d60-a4b1-eed20e0d10ff','Find a specialist','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'solid'),(36868,156257,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','ae736a25-f32e-4598-b76c-70de66efa678','Download the FAQs','https://metronorth.health.qld.gov.au/wp-content/uploads/2017/11/CPI-FAQ-V2.pdf',1,'solid'),(36869,156259,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','dc8dbc18-a250-47e4-b588-68f9bd1615cd','Caboolture Hospital surgical team',NULL,0,'solid'),(36870,156280,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','23d0b505-8e5e-4d7b-a586-62ac1c557b8f','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113929&focal=none',1,'outline'),(36871,156281,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','4a5a3324-c3c1-4c11-b277-181d317fa53a','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112619&focal=none',1,'outline'),(36872,156282,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','aa98adff-8be1-4bb0-aecd-8ee2934536c4','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Referral-PractiX-v4_9-2.doc?mtime=20200521161148&focal=none',1,'outline'),(36873,156283,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','1d345fd4-a132-4b2b-9a2f-8cd4258ba6cf','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Ref-v6_2-ZM1-3.rtf?mtime=20200521161318&focal=none',1,'outline'),(36874,156285,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','57370b52-f20c-45b8-aad6-daea41befa13','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-TPCH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113931&focal=none',1,'outline'),(36875,156286,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','00d97bec-1b06-4254-b593-c366962ea4f3','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112623&focal=none',1,'outline'),(36876,156287,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','52711676-c14b-4e5c-854b-8e1bf09fc56d','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-PCH-PractiX-v4_12-1.doc?mtime=20200522124052&focal=none',1,'outline'),(36877,156288,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','dbbda473-be2c-4422-bcdd-1a171abc5ece','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Ref-v6_2-ZM-1.rtf?mtime=20200522124257&focal=none',0,'outline'),(36878,156290,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','2cb2fa22-58a6-4d1f-80dd-81d592540506','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Redcliffe-Adult-Referral-v6.3-MD.rtf?mtime=20210430113930&focal=none',1,'outline'),(36879,156291,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','e8070d69-a9b9-48b0-8a04-4bb8021eed3b','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Adult-Referral-v6.3-BP.rtf?mtime=20210430112621&focal=none',1,'outline'),(36880,156292,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','0f4b5493-8a6f-47a1-9454-8b135fc753a9','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-PractiX-v4_12-1.doc?mtime=20200522125843&focal=none',1,'outline'),(36881,156293,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','414d9694-fb16-41d5-875d-72c13c69b65d','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522130025&focal=none',1,'outline'),(36882,156295,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','889d9e68-1026-4286-b6ed-544c968b2544','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Caboolture-Adult-Referral-v6.3-MD.rtf?mtime=20210430113920&focal=none',1,'outline'),(36883,156296,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','7b0291d5-bb8f-4fb4-a5f7-a840d172b959','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Adult-Referral-v6.3-BP.rtf?mtime=20210430115701&focal=none',1,'outline'),(36884,156297,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','297b44f5-52ba-45b6-94cc-c6a9afe39959','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Cab-Referral-PractiX-v4_12-1.doc?mtime=20200522152242&focal=none',1,'outline'),(36885,156298,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','3568af98-bd54-4886-a18e-05ca194f8df9','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522152403&focal=none',1,'outline'),(36886,156300,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','59fc5e9f-6ad3-41f5-ba70-a7519502c484','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Palliative-Care-Referral-v6.3-MD.rtf?mtime=20210430113927&focal=none',1,'outline'),(36887,156301,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','1a5b6a6a-ff8b-48d8-b366-7eb6e533c939','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Referral-v6.3-BP.rtf?mtime=20210430112617&focal=none',1,'outline'),(36888,156302,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','9784309c-357b-43d3-862c-0cde956a3839','PractiX',NULL,1,'outline'),(36889,156303,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','955e6211-c5d0-47f8-a347-4b24d777e9ba','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Ref-v6.2-ZM.rtf?mtime=20200522153215&focal=none',1,'outline'),(36890,156305,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','614b7ca9-312e-4d10-a655-3d87f3a4247b','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Maternity-Referral-v6.3-MD.rtf?mtime=20210430113924&focal=none',1,'outline'),(36891,156306,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','2b777320-15ce-4ff8-b2c7-c43daf0ff41f','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Referral-v6.3-BP.rtf?mtime=20210430115904&focal=none',1,'outline'),(36892,156307,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','5ca9edeb-4f82-4d3b-8740-0f4961239cc9','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-PractiX-v4_12-1.doc?mtime=20200522153957&focal=none',1,'outline'),(36893,156308,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','dc55c212-ef06-488f-afb6-0b274b04a1ca','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Ref-v6_2-ZM-1.rtf?mtime=20200522154107&focal=none',1,'outline'),(36894,156310,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','2e74d964-5346-47ce-9860-eb4066cd3e67','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Paediatric-Referral-v6.3-MD.rtf?mtime=20210430113925&focal=none',1,'outline'),(36895,156311,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','f1605ae9-7200-4a18-a191-f0ea10f6c596','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Referral-v6.3-BP.rtf?mtime=20210430112614&focal=none',1,'outline'),(36896,156312,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','f92684cf-b61c-4def-a65c-56b50f2bbec4','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-PractiX-v4_12-1.doc?mtime=20200522154912&focal=none',1,'outline'),(36897,156313,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','e739f06a-ee98-49fd-b3d0-c96931aa632e','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Ref-v6_2-ZM-1.rtf?mtime=20200522155024&focal=none',1,'outline'),(36898,156315,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','16774b3d-bf93-4280-989b-f50e91d24db6','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-COHD-Adult-Referral-v6.3-MD.rtf?mtime=20210430113922&focal=none',1,'outline'),(36899,156316,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','c505ed0c-16ae-430f-b7f9-247b0052fc1d','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-COHD-Adult-Referral-v6.3-BP.rtf?mtime=20210430120142&focal=none',1,'outline'),(36900,156317,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','a1767a89-2d5d-445a-984e-0dbee9318c31','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Community-and-Oral-Health-Directorate-Ref-v6.2-ZM.rtf?mtime=20200807161125&focal=none',1,'outline'),(36901,156320,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','db2a0972-3479-4e01-9a02-daf3be11bc8d','Service information','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient',1,'solid'),(36902,156321,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','849d5f7e-d7c4-48f9-8373-c20ddd0ad019','Find a specialist','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'solid'),(36903,156323,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','e328d1e4-f99e-4eb8-9499-c3ce92a694f4','Download the FAQs','https://metronorth.health.qld.gov.au/wp-content/uploads/2017/11/CPI-FAQ-V2.pdf',1,'solid'),(36904,156325,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','af754806-f463-44fe-9132-e5436b8f79b0','Caboolture Hospital surgical team',NULL,0,'solid'),(36905,156346,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','9f2128b7-9f78-4482-b736-9eee5c6fc51f','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113929&focal=none',1,'outline'),(36906,156347,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','4a078fa3-fa9f-4bbc-8af8-260d6274d8bc','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112619&focal=none',1,'outline'),(36907,156348,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','3ee3b596-6ed5-4c40-b339-ba627c6952d9','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Referral-PractiX-v4_9-2.doc?mtime=20200521161148&focal=none',1,'outline'),(36908,156349,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','f2ffe9b9-a88a-451d-a682-b34c80ba100a','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Ref-v6_2-ZM1-3.rtf?mtime=20200521161318&focal=none',1,'outline'),(36909,156351,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','38b5deb2-f306-4306-9664-4eaa385f11c5','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-TPCH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113931&focal=none',1,'outline'),(36910,156352,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','ca48f5e8-9e06-41af-b834-118a8480fe6f','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112623&focal=none',1,'outline'),(36911,156353,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','0bca198e-a4a3-4f36-8867-19d7052022cf','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-PCH-PractiX-v4_12-1.doc?mtime=20200522124052&focal=none',1,'outline'),(36912,156354,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','7eb7d71b-2390-447d-9532-bedccc83e92d','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Ref-v6_2-ZM-1.rtf?mtime=20200522124257&focal=none',0,'outline'),(36913,156356,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','83fc97f7-81af-4b1e-86be-8b1537852c04','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Redcliffe-Adult-Referral-v6.3-MD.rtf?mtime=20210430113930&focal=none',1,'outline'),(36914,156357,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','64a26040-2a31-472b-a1d7-60ce12e8eecc','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Adult-Referral-v6.3-BP.rtf?mtime=20210430112621&focal=none',1,'outline'),(36915,156358,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','9ae8b934-c630-46ec-8611-1dffbec45841','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-PractiX-v4_12-1.doc?mtime=20200522125843&focal=none',1,'outline'),(36916,156359,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','607de81a-4efb-4d51-bdfa-8afdca7bf751','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522130025&focal=none',1,'outline'),(36917,156361,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','0a426ef0-d4b9-4e75-b9fc-1106d13ee62f','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Caboolture-Adult-Referral-v6.3-MD.rtf?mtime=20210430113920&focal=none',1,'outline'),(36918,156362,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','e162cb47-84c7-4d2e-bc8a-12616b6a2a86','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Adult-Referral-v6.3-BP.rtf?mtime=20210430115701&focal=none',1,'outline'),(36919,156363,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','b42fc389-6d39-4d0e-83f6-d86032a624ee','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Cab-Referral-PractiX-v4_12-1.doc?mtime=20200522152242&focal=none',1,'outline'),(36920,156364,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','a83adaa6-8646-4a0f-a12d-cbd32f162459','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522152403&focal=none',1,'outline'),(36921,156366,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','6a244474-8282-494d-ba3d-7567a94ee593','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Palliative-Care-Referral-v6.3-MD.rtf?mtime=20210430113927&focal=none',1,'outline'),(36922,156367,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','da9e31ab-85e7-4294-bdb7-89f422370449','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Referral-v6.3-BP.rtf?mtime=20210430112617&focal=none',1,'outline'),(36923,156368,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','85caeb7a-87f5-4a26-aed8-e0b9d277867c','PractiX',NULL,1,'outline'),(36924,156369,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','8c7add62-1795-4ee3-b508-cacfce3eea13','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Ref-v6.2-ZM.rtf?mtime=20200522153215&focal=none',1,'outline'),(36925,156371,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','88a21b80-3582-4651-b792-cb44b1e9f6b8','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Maternity-Referral-v6.3-MD.rtf?mtime=20210430113924&focal=none',1,'outline'),(36926,156372,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','eaf8ef46-9db3-422d-a389-0b7776c5b598','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Referral-v6.3-BP.rtf?mtime=20210430115904&focal=none',1,'outline'),(36927,156373,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','96495e56-20b6-4676-9b7a-8d6f884fd3c2','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-PractiX-v4_12-1.doc?mtime=20200522153957&focal=none',1,'outline'),(36928,156374,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','99cdc873-4670-45d8-b4a8-a66a865b0605','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Ref-v6_2-ZM-1.rtf?mtime=20200522154107&focal=none',1,'outline'),(36929,156376,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','756622fc-21d4-4fb1-9e14-ab01d43eddb6','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Paediatric-Referral-v6.3-MD.rtf?mtime=20210430113925&focal=none',1,'outline'),(36930,156377,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','044bbdc0-bb24-43ce-a9e6-dd33e0dbd8a0','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Referral-v6.3-BP.rtf?mtime=20210430112614&focal=none',1,'outline'),(36931,156378,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','c2ad5072-07a1-43b8-b2d8-15f9b12356fb','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-PractiX-v4_12-1.doc?mtime=20200522154912&focal=none',1,'outline'),(36932,156379,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','5cce86d0-857b-4644-a689-d8dc67d725da','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Ref-v6_2-ZM-1.rtf?mtime=20200522155024&focal=none',1,'outline'),(36933,156381,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','656a0b12-dafb-4f33-ba79-262c75d3d311','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-COHD-Adult-Referral-v6.3-MD.rtf?mtime=20210430113922&focal=none',1,'outline'),(36934,156382,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','ede52570-021b-45fa-8aec-45f55d846242','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-COHD-Adult-Referral-v6.3-BP.rtf?mtime=20210430120142&focal=none',1,'outline'),(36935,156383,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','9c23ff03-4166-43ec-8c3e-5a14180c6fd4','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Community-and-Oral-Health-Directorate-Ref-v6.2-ZM.rtf?mtime=20200807161125&focal=none',1,'outline'),(36936,156386,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','5416147f-84d8-4c79-8b8c-3e0a776292b5','Service information','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient',1,'solid'),(36937,156387,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','245b83e9-576a-432a-a39f-d62c3c52b2c7','Find a specialist','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'solid'),(36938,156389,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','e644ed1c-3ccf-4efa-96de-5618eeda596e','Download the FAQs','https://metronorth.health.qld.gov.au/wp-content/uploads/2017/11/CPI-FAQ-V2.pdf',1,'solid'),(36939,156391,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','6678252a-b15c-4350-a49f-7c577d294112','More information',NULL,0,'solid'),(36940,156412,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','0c9a4d67-91a9-4486-bce2-39e064e9a3de','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113929&focal=none',1,'outline'),(36941,156413,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','0f4f66ac-5e3e-4622-a03a-044a6b65d173','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112619&focal=none',1,'outline'),(36942,156414,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','ee2d029f-7d96-4910-a636-5c164e739cba','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Referral-PractiX-v4_9-2.doc?mtime=20200521161148&focal=none',1,'outline'),(36943,156415,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','3c973a19-b907-4bf2-a35e-cdc97c1ea781','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Ref-v6_2-ZM1-3.rtf?mtime=20200521161318&focal=none',1,'outline'),(36944,156417,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','e81d8fc1-72eb-4095-9712-475f4cf45a9a','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-TPCH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113931&focal=none',1,'outline'),(36945,156418,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','37218a14-6120-4f94-8f3b-6d86f2640418','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112623&focal=none',1,'outline'),(36946,156419,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','f0421fce-bbf0-4878-937c-67f58348a89c','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-PCH-PractiX-v4_12-1.doc?mtime=20200522124052&focal=none',1,'outline'),(36947,156420,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','ec0af90c-2845-445e-b1fa-b99282ad550f','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Ref-v6_2-ZM-1.rtf?mtime=20200522124257&focal=none',0,'outline'),(36948,156422,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','cd90b421-d423-401c-b9f5-bde37b294871','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Redcliffe-Adult-Referral-v6.3-MD.rtf?mtime=20210430113930&focal=none',1,'outline'),(36949,156423,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','2c62b724-8513-4bd6-b0e2-d7d594308526','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Adult-Referral-v6.3-BP.rtf?mtime=20210430112621&focal=none',1,'outline'),(36950,156424,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','b146244c-faa2-476d-bae7-ef7dc442a97a','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-PractiX-v4_12-1.doc?mtime=20200522125843&focal=none',1,'outline'),(36951,156425,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','b640cabe-4c79-4dd8-9708-4ac505bddb26','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522130025&focal=none',1,'outline'),(36952,156427,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','14f43a6d-0451-4035-a06b-e6e44802124d','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Caboolture-Adult-Referral-v6.3-MD.rtf?mtime=20210430113920&focal=none',1,'outline'),(36953,156428,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','cd926f1c-673e-45fd-9520-9212951a3e46','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Adult-Referral-v6.3-BP.rtf?mtime=20210430115701&focal=none',1,'outline'),(36954,156429,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','82153906-a8db-4cb0-a223-abd16bcd67bb','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Cab-Referral-PractiX-v4_12-1.doc?mtime=20200522152242&focal=none',1,'outline'),(36955,156430,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','8aa8ec75-5e82-4ac0-89d3-156e202bd34b','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522152403&focal=none',1,'outline'),(36956,156432,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','8ced4747-476c-4ef7-9b7d-75a5dc52fc76','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Palliative-Care-Referral-v6.3-MD.rtf?mtime=20210430113927&focal=none',1,'outline'),(36957,156433,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','4386c4cf-b661-4c9d-97b3-fbd40d8d16d7','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Referral-v6.3-BP.rtf?mtime=20210430112617&focal=none',1,'outline'),(36958,156434,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','fac41b91-f474-4f9a-bb91-80d8f18732c8','PractiX',NULL,1,'outline'),(36959,156435,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','3061c463-4151-45eb-9e10-4a3dedb59f67','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Ref-v6.2-ZM.rtf?mtime=20200522153215&focal=none',1,'outline'),(36960,156437,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','f25144e8-7a55-423c-a397-bff9d2e8a22a','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Maternity-Referral-v6.3-MD.rtf?mtime=20210430113924&focal=none',1,'outline'),(36961,156438,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','bedc3dd2-8494-4892-9e39-01e561d68787','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Referral-v6.3-BP.rtf?mtime=20210430115904&focal=none',1,'outline'),(36962,156439,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','084c03b8-a7c7-498d-bbd7-7cb4474d56d0','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-PractiX-v4_12-1.doc?mtime=20200522153957&focal=none',1,'outline'),(36963,156440,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','2371f5ae-2bb1-4067-9152-a94a5d9b74a7','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Ref-v6_2-ZM-1.rtf?mtime=20200522154107&focal=none',1,'outline'),(36964,156442,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','8e310031-a3a6-4e03-aaf9-4afe8b76d1a3','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Paediatric-Referral-v6.3-MD.rtf?mtime=20210430113925&focal=none',1,'outline'),(36965,156443,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','db529df5-9be3-493c-9a20-7095b1cc0504','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Referral-v6.3-BP.rtf?mtime=20210430112614&focal=none',1,'outline'),(36966,156444,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','3085123c-9779-4a0e-a553-3c40fe248851','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-PractiX-v4_12-1.doc?mtime=20200522154912&focal=none',1,'outline'),(36967,156445,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','ea9b6edf-b47c-43f0-b812-0bb9aedcd4f9','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Ref-v6_2-ZM-1.rtf?mtime=20200522155024&focal=none',1,'outline'),(36968,156447,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','3f09fbfe-5eb4-4715-b345-16b101b6f4df','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-COHD-Adult-Referral-v6.3-MD.rtf?mtime=20210430113922&focal=none',1,'outline'),(36969,156448,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','7fd6d443-c760-4391-a269-b2a888fccaae','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-COHD-Adult-Referral-v6.3-BP.rtf?mtime=20210430120142&focal=none',1,'outline'),(36970,156449,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','2f58f05e-7d13-44cf-ac47-425ebcaa2708','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Community-and-Oral-Health-Directorate-Ref-v6.2-ZM.rtf?mtime=20200807161125&focal=none',1,'outline'),(36971,156452,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','6a8048ee-f9ee-4e5c-a0ae-e38544d2c0d9','Service information','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient',1,'solid'),(36972,156453,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','892a6647-2372-4bcf-bbb2-c21ababf89e2','Find a specialist','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'solid'),(36973,156455,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','d560543d-7e41-4abe-96d1-32e35a7be8a8','Download the FAQs','https://metronorth.health.qld.gov.au/wp-content/uploads/2017/11/CPI-FAQ-V2.pdf',1,'solid'),(36974,156457,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','84429ae6-fa50-43b4-b96d-40ef94fbd549','More information',NULL,0,'solid'),(36975,156478,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','211b47f8-174d-48fd-9cfd-a14f6771e58f','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113929&focal=none',1,'outline'),(36976,156479,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','7e2159ed-1e48-439d-8092-cec8724e7b31','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112619&focal=none',1,'outline'),(36977,156480,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','720e77cf-663c-46a2-865a-b72fd2a0132b','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Referral-PractiX-v4_9-2.doc?mtime=20200521161148&focal=none',1,'outline'),(36978,156481,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','3767eed0-cb8e-4722-ab31-479c09e3801f','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Ref-v6_2-ZM1-3.rtf?mtime=20200521161318&focal=none',1,'outline'),(36979,156483,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','f1fe7cc6-bd9a-404d-ae49-dc2e7f340929','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-TPCH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113931&focal=none',1,'outline'),(36980,156484,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','334e7a10-25a9-49fb-a08c-3a7fe334a892','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112623&focal=none',1,'outline'),(36981,156485,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','745f2ab7-3da0-4d40-91e2-52dd4821cb83','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-PCH-PractiX-v4_12-1.doc?mtime=20200522124052&focal=none',1,'outline'),(36982,156486,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','a7f8709b-cf85-4991-9566-cb2ff5183e1e','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Ref-v6_2-ZM-1.rtf?mtime=20200522124257&focal=none',0,'outline'),(36983,156488,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','2fbe714b-f838-443f-b77a-51dec0a99ac7','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Redcliffe-Adult-Referral-v6.3-MD.rtf?mtime=20210430113930&focal=none',1,'outline'),(36984,156489,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','2305da51-4211-4249-b3c0-14913ed98b82','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Adult-Referral-v6.3-BP.rtf?mtime=20210430112621&focal=none',1,'outline'),(36985,156490,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','27bd8d8b-86f9-4ad5-8acc-98a39391e784','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-PractiX-v4_12-1.doc?mtime=20200522125843&focal=none',1,'outline'),(36986,156491,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','dc993725-054a-4158-a757-151f31e9d388','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522130025&focal=none',1,'outline'),(36987,156493,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','cfcaf4d9-8b5d-4b0e-8fc6-6c85f29c18f6','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Caboolture-Adult-Referral-v6.3-MD.rtf?mtime=20210430113920&focal=none',1,'outline'),(36988,156494,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','57539aca-e689-4718-af58-58279f2f1b92','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Adult-Referral-v6.3-BP.rtf?mtime=20210430115701&focal=none',1,'outline'),(36989,156495,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','3ba8f964-229c-49ca-b664-c83fde30748b','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Cab-Referral-PractiX-v4_12-1.doc?mtime=20200522152242&focal=none',1,'outline'),(36990,156496,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','e144cf94-757c-4f17-8cff-82b813d57ec5','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522152403&focal=none',1,'outline'),(36991,156498,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','a4a77a54-381f-4a88-a0b3-2149189557aa','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Palliative-Care-Referral-v6.3-MD.rtf?mtime=20210430113927&focal=none',1,'outline'),(36992,156499,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','fd9b7661-6bae-49b2-832a-ca6465175cbc','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Referral-v6.3-BP.rtf?mtime=20210430112617&focal=none',1,'outline'),(36993,156500,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','eef2916d-360b-49be-b656-85aa3eeea90f','PractiX',NULL,1,'outline'),(36994,156501,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','0e406927-be4d-493e-9231-18e61444fc19','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Ref-v6.2-ZM.rtf?mtime=20200522153215&focal=none',1,'outline'),(36995,156503,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','a70c15c6-3b2c-4151-b947-62fe309c1ca9','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Maternity-Referral-v6.3-MD.rtf?mtime=20210430113924&focal=none',1,'outline'),(36996,156504,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','d4862232-00a8-4493-b986-21e792ced904','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Referral-v6.3-BP.rtf?mtime=20210430115904&focal=none',1,'outline'),(36997,156505,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','13f0fae5-f0ba-4a2f-b0f7-d7009c6026b1','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-PractiX-v4_12-1.doc?mtime=20200522153957&focal=none',1,'outline'),(36998,156506,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','612d7b9d-ad7a-4c6b-b50d-6e21c5a39ac6','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Ref-v6_2-ZM-1.rtf?mtime=20200522154107&focal=none',1,'outline'),(36999,156508,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','f93e33bb-7312-4c15-a930-b02bc7b78fb5','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Paediatric-Referral-v6.3-MD.rtf?mtime=20210430113925&focal=none',1,'outline'),(37000,156509,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','e0ac3259-9105-4f3a-801d-ee8adddf56ff','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Referral-v6.3-BP.rtf?mtime=20210430112614&focal=none',1,'outline'),(37001,156510,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','19a6be59-82e9-465c-b1c6-7a6734c9d46e','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-PractiX-v4_12-1.doc?mtime=20200522154912&focal=none',1,'outline'),(37002,156511,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','82f0911b-aafe-4d4b-a476-91d4d68e5057','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Ref-v6_2-ZM-1.rtf?mtime=20200522155024&focal=none',1,'outline'),(37003,156513,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','a8667bbf-493c-4cde-813c-20a4e116d9e4','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-COHD-Adult-Referral-v6.3-MD.rtf?mtime=20210430113922&focal=none',1,'outline'),(37004,156514,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','7f3bd9a6-66ac-4497-b415-ec022aed93cd','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-COHD-Adult-Referral-v6.3-BP.rtf?mtime=20210430120142&focal=none',1,'outline'),(37005,156515,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','f8c78afa-5973-41f1-8765-da76024c6a23','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Community-and-Oral-Health-Directorate-Ref-v6.2-ZM.rtf?mtime=20200807161125&focal=none',1,'outline'),(37006,156518,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','96902193-c9c7-4597-95e8-1cbf8bee8968','Service information','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient',1,'solid'),(37007,156519,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','f49ae695-96c8-412d-ba51-950ea81a4a61','Find a specialist','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'solid'),(37008,156521,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','bfb1fb08-6e34-4ff7-bdd2-30f33c5114ef','Download the FAQs','https://metronorth.health.qld.gov.au/wp-content/uploads/2017/11/CPI-FAQ-V2.pdf',1,'solid'),(37009,156523,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','9c924709-81ed-4995-b211-d6c0fed1a3ca','More information',NULL,0,'solid'),(37010,156544,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','fc63acf1-ba9d-427d-b674-926c8d4505d4','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113929&focal=none',1,'outline'),(37011,156545,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','d4b90b23-12c2-4d6f-8529-e8984cb05612','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112619&focal=none',1,'outline'),(37012,156546,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','856f0376-0c36-454e-8712-08bb63c8d745','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Referral-PractiX-v4_9-2.doc?mtime=20200521161148&focal=none',1,'outline'),(37013,156547,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','28661b84-eddd-49d2-beca-d74f05f5ac08','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Ref-v6_2-ZM1-3.rtf?mtime=20200521161318&focal=none',1,'outline'),(37014,156549,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','5c2bfda6-97e7-4ac9-b205-ccb732b77983','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-TPCH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113931&focal=none',1,'outline'),(37015,156550,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','3ecb606d-1224-463f-81e5-9cfd3491dfbb','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112623&focal=none',1,'outline'),(37016,156551,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','fed944e9-95fd-4ca0-9e88-f359217ded79','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-PCH-PractiX-v4_12-1.doc?mtime=20200522124052&focal=none',1,'outline'),(37017,156552,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','95d9886d-7e5b-428b-9c8a-8be1220acfea','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Ref-v6_2-ZM-1.rtf?mtime=20200522124257&focal=none',0,'outline'),(37018,156554,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','31808783-568c-4b7d-852d-873997589b83','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Redcliffe-Adult-Referral-v6.3-MD.rtf?mtime=20210430113930&focal=none',1,'outline'),(37019,156555,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','71b62489-1f01-4836-b940-1095fb4fdb9c','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Adult-Referral-v6.3-BP.rtf?mtime=20210430112621&focal=none',1,'outline'),(37020,156556,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','df141899-58bb-4865-99be-767a1a531f94','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-PractiX-v4_12-1.doc?mtime=20200522125843&focal=none',1,'outline'),(37021,156557,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','7e28d74c-1d63-4259-be4c-2dfbe284f926','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522130025&focal=none',1,'outline'),(37022,156559,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','d0d3e99a-6ad3-4b83-8561-9f72b698c568','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Caboolture-Adult-Referral-v6.3-MD.rtf?mtime=20210430113920&focal=none',1,'outline'),(37023,156560,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','5bd096b0-6524-48c4-bb14-b8884a6d667f','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Adult-Referral-v6.3-BP.rtf?mtime=20210430115701&focal=none',1,'outline'),(37024,156561,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','13b0e5bf-bae1-454f-8e14-0a096a2b9484','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Cab-Referral-PractiX-v4_12-1.doc?mtime=20200522152242&focal=none',1,'outline'),(37025,156562,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','b7e001ec-a969-47e9-9180-f24e4876d9d6','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522152403&focal=none',1,'outline'),(37026,156564,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','45640866-a21a-4ddc-826d-3a59548da426','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Palliative-Care-Referral-v6.3-MD.rtf?mtime=20210430113927&focal=none',1,'outline'),(37027,156565,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','a60f844e-600f-4342-a6c7-16a0241ea592','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Referral-v6.3-BP.rtf?mtime=20210430112617&focal=none',1,'outline'),(37028,156566,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','8299d5d7-8de9-463d-a56d-370dce2659a2','PractiX',NULL,1,'outline'),(37029,156567,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','fb5485e4-ee6a-4469-af33-bfa1e5316090','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Ref-v6.2-ZM.rtf?mtime=20200522153215&focal=none',1,'outline'),(37030,156569,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','da1e1bdd-057d-4552-aae4-418705e9ad19','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Maternity-Referral-v6.3-MD.rtf?mtime=20210430113924&focal=none',1,'outline'),(37031,156570,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','8473351c-c715-48b8-b0d4-04279f4ae702','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Referral-v6.3-BP.rtf?mtime=20210430115904&focal=none',1,'outline'),(37032,156571,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','8b7267e8-3ece-4a1e-863e-a81b483e2a5a','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-PractiX-v4_12-1.doc?mtime=20200522153957&focal=none',1,'outline'),(37033,156572,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','c5bdb253-f7fa-4307-80a4-02a0d3ce3f89','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Ref-v6_2-ZM-1.rtf?mtime=20200522154107&focal=none',1,'outline'),(37034,156574,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','3cd6c261-8d2a-4595-b492-cb5e51fd94cb','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Paediatric-Referral-v6.3-MD.rtf?mtime=20210430113925&focal=none',1,'outline'),(37035,156575,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','6bb18140-a613-4c16-b6d4-5330d283ff25','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Referral-v6.3-BP.rtf?mtime=20210430112614&focal=none',1,'outline'),(37036,156576,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','e9abbab3-0044-4857-8431-2565f6fa220a','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-PractiX-v4_12-1.doc?mtime=20200522154912&focal=none',1,'outline'),(37037,156577,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','19be234a-fabf-4b0c-877c-b2ae8d3e809e','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Ref-v6_2-ZM-1.rtf?mtime=20200522155024&focal=none',1,'outline'),(37038,156579,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','461cc322-676d-4c40-9f6f-03e8adc99130','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-COHD-Adult-Referral-v6.3-MD.rtf?mtime=20210430113922&focal=none',1,'outline'),(37039,156580,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','a666f8a0-1887-4440-aa94-848c5cc90cd9','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-COHD-Adult-Referral-v6.3-BP.rtf?mtime=20210430120142&focal=none',1,'outline'),(37040,156581,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','2e479e53-8e0d-4ad6-b6d5-fdbac130d636','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Community-and-Oral-Health-Directorate-Ref-v6.2-ZM.rtf?mtime=20200807161125&focal=none',1,'outline'),(37041,156584,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','ee10e5e8-6eda-461f-851d-dfba64207b0a','Service information','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient',1,'solid'),(37042,156585,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','220d0a2c-6a70-40f3-835a-3549dad395e3','Find a specialist','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'solid'),(37043,156587,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','b62acc2c-d297-4983-a3f0-46ded692798a','Download the FAQs','https://metronorth.health.qld.gov.au/wp-content/uploads/2017/11/CPI-FAQ-V2.pdf',1,'solid'),(37044,156589,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','a9256b46-4a24-4d13-ab6e-01c823128351','More information',NULL,0,'solid'),(37045,156610,1,'2021-05-07 05:35:41','2021-05-07 05:35:41','f2adb725-6cdf-442e-bf78-33a57c04b41f','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113929&focal=none',1,'outline'),(37046,156611,1,'2021-05-07 05:35:41','2021-05-07 05:35:41','9ceecb80-ca0b-4c58-bca8-3385ff540e5e','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112619&focal=none',1,'outline'),(37047,156612,1,'2021-05-07 05:35:41','2021-05-07 05:35:41','97081ada-2d44-41f7-ba2e-5e415b8abac6','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Referral-PractiX-v4_9-2.doc?mtime=20200521161148&focal=none',1,'outline'),(37048,156613,1,'2021-05-07 05:35:41','2021-05-07 05:35:41','eaa3d10f-43a1-4274-b3e2-411ce82a2c06','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Ref-v6_2-ZM1-3.rtf?mtime=20200521161318&focal=none',1,'outline'),(37049,156615,1,'2021-05-07 05:35:41','2021-05-07 05:35:41','609a8bb2-109a-40c1-b566-b8069ce7ad54','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-TPCH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113931&focal=none',1,'outline'),(37050,156616,1,'2021-05-07 05:35:41','2021-05-07 05:35:41','6f656508-3655-4263-a5b4-a8ae8e4d46ab','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112623&focal=none',1,'outline'),(37051,156617,1,'2021-05-07 05:35:41','2021-05-07 05:35:41','5cb6b298-7d16-4e89-96fa-1529721cef5c','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-PCH-PractiX-v4_12-1.doc?mtime=20200522124052&focal=none',1,'outline'),(37052,156618,1,'2021-05-07 05:35:41','2021-05-07 05:35:41','9793fdf5-f405-4252-924b-423ea907de69','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Ref-v6_2-ZM-1.rtf?mtime=20200522124257&focal=none',0,'outline'),(37053,156620,1,'2021-05-07 05:35:41','2021-05-07 05:35:41','e08e3d3e-dac4-45f9-a8ae-15e2a8de4ea9','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Redcliffe-Adult-Referral-v6.3-MD.rtf?mtime=20210430113930&focal=none',1,'outline'),(37054,156621,1,'2021-05-07 05:35:41','2021-05-07 05:35:41','67e1ba6c-627e-401b-b667-fb75eb8f0640','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Adult-Referral-v6.3-BP.rtf?mtime=20210430112621&focal=none',1,'outline'),(37055,156622,1,'2021-05-07 05:35:41','2021-05-07 05:35:41','4d17993e-aad5-4404-9998-a32b6aa10d3a','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-PractiX-v4_12-1.doc?mtime=20200522125843&focal=none',1,'outline'),(37056,156623,1,'2021-05-07 05:35:41','2021-05-07 05:35:41','d0f79919-3a4f-43af-bf67-69519514a918','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522130025&focal=none',1,'outline'),(37057,156625,1,'2021-05-07 05:35:41','2021-05-07 05:35:41','1616244b-2154-4bc3-a747-ae169a8cdb52','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Caboolture-Adult-Referral-v6.3-MD.rtf?mtime=20210430113920&focal=none',1,'outline'),(37058,156626,1,'2021-05-07 05:35:41','2021-05-07 05:35:41','9ade4e63-7601-46e4-ae19-41ea34201226','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Adult-Referral-v6.3-BP.rtf?mtime=20210430115701&focal=none',1,'outline'),(37059,156627,1,'2021-05-07 05:35:41','2021-05-07 05:35:41','696d41a5-a922-4b7c-89e1-2fb44933f49e','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Cab-Referral-PractiX-v4_12-1.doc?mtime=20200522152242&focal=none',1,'outline'),(37060,156628,1,'2021-05-07 05:35:41','2021-05-07 05:35:41','1e303eb4-0079-4630-8e4a-88cfc3ba2126','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522152403&focal=none',1,'outline'),(37061,156630,1,'2021-05-07 05:35:41','2021-05-07 05:35:41','6684d018-b70a-4edd-82a9-7b151dee2e20','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Palliative-Care-Referral-v6.3-MD.rtf?mtime=20210430113927&focal=none',1,'outline'),(37062,156631,1,'2021-05-07 05:35:41','2021-05-07 05:35:41','83bdb7b3-60da-4491-a78b-3d2f6ad648cf','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Referral-v6.3-BP.rtf?mtime=20210430112617&focal=none',1,'outline'),(37063,156632,1,'2021-05-07 05:35:41','2021-05-07 05:35:41','887b9b11-137c-4f47-ae67-2baa3b388320','PractiX',NULL,1,'outline'),(37064,156633,1,'2021-05-07 05:35:41','2021-05-07 05:35:41','e99330d7-1832-4b17-952f-5c1ab7dcca05','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Ref-v6.2-ZM.rtf?mtime=20200522153215&focal=none',1,'outline'),(37065,156635,1,'2021-05-07 05:35:41','2021-05-07 05:35:41','4fdfe733-9167-4a78-96c8-bdd8c0982e81','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Maternity-Referral-v6.3-MD.rtf?mtime=20210430113924&focal=none',1,'outline'),(37066,156636,1,'2021-05-07 05:35:41','2021-05-07 05:35:41','850b7b8c-21bc-4a46-913b-1f4820761efe','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Referral-v6.3-BP.rtf?mtime=20210430115904&focal=none',1,'outline'),(37067,156637,1,'2021-05-07 05:35:42','2021-05-07 05:35:42','9462dc95-1c48-43ea-87a6-f46476dde4a3','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-PractiX-v4_12-1.doc?mtime=20200522153957&focal=none',1,'outline'),(37068,156638,1,'2021-05-07 05:35:42','2021-05-07 05:35:42','b054dde3-d11e-44f8-8e4c-428dc45d7e0d','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Ref-v6_2-ZM-1.rtf?mtime=20200522154107&focal=none',1,'outline'),(37069,156640,1,'2021-05-07 05:35:42','2021-05-07 05:35:42','b2551b8a-f65c-45db-957c-e57c3ddf73e1','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Paediatric-Referral-v6.3-MD.rtf?mtime=20210430113925&focal=none',1,'outline'),(37070,156641,1,'2021-05-07 05:35:42','2021-05-07 05:35:42','06ec42c8-db13-41e3-9692-4014aa7770e3','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Referral-v6.3-BP.rtf?mtime=20210430112614&focal=none',1,'outline'),(37071,156642,1,'2021-05-07 05:35:42','2021-05-07 05:35:42','024380e3-1e4b-46ca-81ab-4d1002ee19c6','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-PractiX-v4_12-1.doc?mtime=20200522154912&focal=none',1,'outline'),(37072,156643,1,'2021-05-07 05:35:42','2021-05-07 05:35:42','5329b9eb-d303-4898-a304-b9f506a63c11','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Ref-v6_2-ZM-1.rtf?mtime=20200522155024&focal=none',1,'outline'),(37073,156645,1,'2021-05-07 05:35:42','2021-05-07 05:35:42','e4732256-0e7d-431f-bdb0-f9fd00a525c5','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-COHD-Adult-Referral-v6.3-MD.rtf?mtime=20210430113922&focal=none',1,'outline'),(37074,156646,1,'2021-05-07 05:35:42','2021-05-07 05:35:42','99519f65-21b4-404e-be1e-f0cc8feadd16','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-COHD-Adult-Referral-v6.3-BP.rtf?mtime=20210430120142&focal=none',1,'outline'),(37075,156647,1,'2021-05-07 05:35:42','2021-05-07 05:35:42','b4d04bb6-2bc1-4b53-a0f4-e1f7373fbe7f','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Community-and-Oral-Health-Directorate-Ref-v6.2-ZM.rtf?mtime=20200807161125&focal=none',1,'outline'),(37076,156650,1,'2021-05-07 05:35:42','2021-05-07 05:35:42','1d0fb7af-4839-403c-8444-f5ad0c50e4f6','Service information','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient',1,'solid'),(37077,156651,1,'2021-05-07 05:35:42','2021-05-07 05:35:42','eee2b563-cb6d-473f-82cd-b2ebb34a0b2f','Find a specialist','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'solid'),(37078,156653,1,'2021-05-07 05:35:42','2021-05-07 05:35:42','c277d744-d0c9-42e5-83ef-de7b9d9dd80d','Download the FAQs','https://metronorth.health.qld.gov.au/wp-content/uploads/2017/11/CPI-FAQ-V2.pdf',1,'solid'),(37079,156655,1,'2021-05-07 05:35:42','2021-05-07 05:35:42','ab5e32c2-4157-4d79-9d54-a1a3b3edb504','More information',NULL,0,'solid'),(37080,156676,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','0e4ca83d-398e-42c0-9430-6885e57d0489','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113929&focal=none',1,'outline'),(37081,156677,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','54287f4e-973b-4283-8f63-69da95c2c726','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112619&focal=none',1,'outline'),(37082,156678,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','d33cda46-a08e-4551-b244-d6f2d99ac1f5','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Referral-PractiX-v4_9-2.doc?mtime=20200521161148&focal=none',1,'outline'),(37083,156679,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','0c0d057c-d29b-4443-8723-0fb279512da4','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Ref-v6_2-ZM1-3.rtf?mtime=20200521161318&focal=none',1,'outline'),(37084,156681,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','c27e72c9-5089-477f-a470-df7c974b2f9e','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-TPCH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113931&focal=none',1,'outline'),(37085,156682,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','310821c9-a555-46d4-a623-11e8a52127c8','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112623&focal=none',1,'outline'),(37086,156683,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','a85f62b3-f366-476e-8d62-e13e0cdf9088','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-PCH-PractiX-v4_12-1.doc?mtime=20200522124052&focal=none',1,'outline'),(37087,156684,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','bf525940-0af1-4e32-b897-9d0575c32fcb','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Ref-v6_2-ZM-1.rtf?mtime=20200522124257&focal=none',0,'outline'),(37088,156686,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','e30fdb54-f0c2-4fa2-a754-82a40a928e58','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Redcliffe-Adult-Referral-v6.3-MD.rtf?mtime=20210430113930&focal=none',1,'outline'),(37089,156687,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','8844e19e-33b3-4ce2-9258-486695ee9f98','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Adult-Referral-v6.3-BP.rtf?mtime=20210430112621&focal=none',1,'outline'),(37090,156688,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','75d921d1-9550-48b7-9334-303442cd63ba','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-PractiX-v4_12-1.doc?mtime=20200522125843&focal=none',1,'outline'),(37091,156689,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','25c37a7c-d614-4427-851b-c4e114ce3ff0','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522130025&focal=none',1,'outline'),(37092,156691,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','d62931f0-a899-4dd5-a237-06a286d69d69','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Caboolture-Adult-Referral-v6.3-MD.rtf?mtime=20210430113920&focal=none',1,'outline'),(37093,156692,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','147592b7-f045-446b-8bb4-af99f5fec758','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Adult-Referral-v6.3-BP.rtf?mtime=20210430115701&focal=none',1,'outline'),(37094,156693,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','89a3211a-aa69-470e-a82b-4b6e217b602b','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Cab-Referral-PractiX-v4_12-1.doc?mtime=20200522152242&focal=none',1,'outline'),(37095,156694,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','acb02ca0-b1eb-4335-8d08-045eacd719e8','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522152403&focal=none',1,'outline'),(37096,156696,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','989691a3-a7e0-41fb-8447-65ce44790e62','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Palliative-Care-Referral-v6.3-MD.rtf?mtime=20210430113927&focal=none',1,'outline'),(37097,156697,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','953aa0bb-7bd6-4fe8-ad7d-2b47e0a68e53','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Referral-v6.3-BP.rtf?mtime=20210430112617&focal=none',1,'outline'),(37098,156698,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','6c186a04-156d-462b-a20a-f3db59d118e2','PractiX',NULL,1,'outline'),(37099,156699,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','368c20d9-5aa1-45bc-9783-01c263fd8845','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Ref-v6.2-ZM.rtf?mtime=20200522153215&focal=none',1,'outline'),(37100,156701,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','eb9299b9-7093-4f38-a170-33ac29ed95eb','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Maternity-Referral-v6.3-MD.rtf?mtime=20210430113924&focal=none',1,'outline'),(37101,156702,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','5ce59e2a-7c94-4a74-80c0-89abc8d337ad','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Referral-v6.3-BP.rtf?mtime=20210430115904&focal=none',1,'outline'),(37102,156703,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','3ee334a0-b9fb-4ea5-b96d-a49903cacb05','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-PractiX-v4_12-1.doc?mtime=20200522153957&focal=none',1,'outline'),(37103,156704,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','5280d446-cedc-4a73-85a5-3f1cd72e1b66','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Ref-v6_2-ZM-1.rtf?mtime=20200522154107&focal=none',1,'outline'),(37104,156706,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','6bc55ec4-ac2d-4d86-b305-10cc3d89803f','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Paediatric-Referral-v6.3-MD.rtf?mtime=20210430113925&focal=none',1,'outline'),(37105,156707,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','45e0a893-1d33-4951-8013-18b3447a9317','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Referral-v6.3-BP.rtf?mtime=20210430112614&focal=none',1,'outline'),(37106,156708,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','3b454ec4-820b-4ba9-9c03-e65b589758ce','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-PractiX-v4_12-1.doc?mtime=20200522154912&focal=none',1,'outline'),(37107,156709,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','4060747f-57af-41bb-b8bf-f91cb77f054d','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Ref-v6_2-ZM-1.rtf?mtime=20200522155024&focal=none',1,'outline'),(37108,156711,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','9a8a9b56-1ea9-44b2-b899-a9cc8e73f34b','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-COHD-Adult-Referral-v6.3-MD.rtf?mtime=20210430113922&focal=none',1,'outline'),(37109,156712,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','ac718b65-4793-4fe7-9c86-0771b46d2b66','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-COHD-Adult-Referral-v6.3-BP.rtf?mtime=20210430120142&focal=none',1,'outline'),(37110,156713,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','20862644-b51f-4c40-8b7a-25be65c57240','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Community-and-Oral-Health-Directorate-Ref-v6.2-ZM.rtf?mtime=20200807161125&focal=none',1,'outline'),(37111,156716,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','a883a56a-e251-4c11-8724-d6558b3b5a65','Service information','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient',1,'solid'),(37112,156717,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','27977a36-3be4-4069-b622-a53db3a53da8','Find a specialist','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'solid'),(37113,156719,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','3e375fa4-2127-4111-93eb-0f67149fdeb4','Download the FAQs','https://metronorth.health.qld.gov.au/wp-content/uploads/2017/11/CPI-FAQ-V2.pdf',1,'solid'),(37114,156721,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','fbd1a779-c1a6-4ede-80fb-77d107464f37','More information',NULL,0,'solid'),(37115,156742,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','d751bab2-15fa-4f20-b8ff-fbc9ea2499ad','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113929&focal=none',1,'outline'),(37116,156743,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','e037d357-b492-4de0-afe7-5105ae5d9bd3','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112619&focal=none',1,'outline'),(37117,156744,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','e14c88fb-00df-4162-bca9-f101090b59ab','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Referral-PractiX-v4_9-2.doc?mtime=20200521161148&focal=none',1,'outline'),(37118,156745,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','6d5a4d2e-8639-40b4-8f3a-e5aeab4a205c','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Ref-v6_2-ZM1-3.rtf?mtime=20200521161318&focal=none',1,'outline'),(37119,156747,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','6f0622e1-0fe6-4a37-ac30-8f7980d5ffab','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-TPCH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113931&focal=none',1,'outline'),(37120,156748,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','d4b4ff73-8a79-4c22-9c99-a22b3e90c1af','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112623&focal=none',1,'outline'),(37121,156749,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','538e0b9a-7427-446a-a8da-a3d5cc42d12d','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-PCH-PractiX-v4_12-1.doc?mtime=20200522124052&focal=none',1,'outline'),(37122,156750,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','0ed2044a-9533-4b23-93b4-9584fc767bc2','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Ref-v6_2-ZM-1.rtf?mtime=20200522124257&focal=none',0,'outline'),(37123,156752,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','7c368384-7342-41a1-b712-0f22df966d27','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Redcliffe-Adult-Referral-v6.3-MD.rtf?mtime=20210430113930&focal=none',1,'outline'),(37124,156753,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','d93ac855-2d0b-4987-af11-f87adb355447','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Adult-Referral-v6.3-BP.rtf?mtime=20210430112621&focal=none',1,'outline'),(37125,156754,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','115225d1-48f5-4f5f-823d-d8bda70e9299','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-PractiX-v4_12-1.doc?mtime=20200522125843&focal=none',1,'outline'),(37126,156755,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','706a1a59-f0b6-4a44-ae6b-6c3396965206','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522130025&focal=none',1,'outline'),(37127,156757,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','b2513cb7-22b1-48eb-a08a-addc4e571208','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Caboolture-Adult-Referral-v6.3-MD.rtf?mtime=20210430113920&focal=none',1,'outline'),(37128,156758,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','dea6834a-2b87-49bf-9dda-667293859e2d','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Adult-Referral-v6.3-BP.rtf?mtime=20210430115701&focal=none',1,'outline'),(37129,156759,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','027471fc-399c-42e1-a9b1-a7eba13cce7d','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Cab-Referral-PractiX-v4_12-1.doc?mtime=20200522152242&focal=none',1,'outline'),(37130,156760,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','27eea596-a3ae-4055-be43-1c555d9aefe3','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522152403&focal=none',1,'outline'),(37131,156762,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','27a6bfc4-61d4-4270-9f87-fc8bdd9ae9a7','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Palliative-Care-Referral-v6.3-MD.rtf?mtime=20210430113927&focal=none',1,'outline'),(37132,156763,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','5bfe2e38-1d79-4b55-bf2a-c5fae4fe2805','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Referral-v6.3-BP.rtf?mtime=20210430112617&focal=none',1,'outline'),(37133,156764,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','40e0db42-4ba3-441a-bc40-d8a43da490c5','PractiX',NULL,1,'outline'),(37134,156765,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','e881f20b-02b9-48be-80c3-36292ecdda79','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Ref-v6.2-ZM.rtf?mtime=20200522153215&focal=none',1,'outline'),(37135,156767,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','4e08862a-3b6e-4daf-9316-605f00ab6132','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Maternity-Referral-v6.3-MD.rtf?mtime=20210430113924&focal=none',1,'outline'),(37136,156768,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','685b66f1-8cbb-41a6-a2b0-756f23057db3','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Referral-v6.3-BP.rtf?mtime=20210430115904&focal=none',1,'outline'),(37137,156769,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','797c48b1-2179-4232-b2ce-5ec0bffbca42','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-PractiX-v4_12-1.doc?mtime=20200522153957&focal=none',1,'outline'),(37138,156770,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','a3d0f751-2b29-4dfc-8723-297935efad4a','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Ref-v6_2-ZM-1.rtf?mtime=20200522154107&focal=none',1,'outline'),(37139,156772,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','1d51d26b-c487-4971-a0ee-fbfd042699cb','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Paediatric-Referral-v6.3-MD.rtf?mtime=20210430113925&focal=none',1,'outline'),(37140,156773,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','a7e8ffcb-ccb6-4969-b50f-561704e10b50','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Referral-v6.3-BP.rtf?mtime=20210430112614&focal=none',1,'outline'),(37141,156774,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','b23a467a-cebd-4a4d-a792-7bd02aeae952','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-PractiX-v4_12-1.doc?mtime=20200522154912&focal=none',1,'outline'),(37142,156775,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','b4b8aaa8-a9bd-4c30-9136-f6797c0845c1','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Ref-v6_2-ZM-1.rtf?mtime=20200522155024&focal=none',1,'outline'),(37143,156777,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','3f141ae0-4dce-4f3d-aa66-224632303c47','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-COHD-Adult-Referral-v6.3-MD.rtf?mtime=20210430113922&focal=none',1,'outline'),(37144,156778,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','2ba419b9-2063-4b05-934a-dbaa65be9b22','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-COHD-Adult-Referral-v6.3-BP.rtf?mtime=20210430120142&focal=none',1,'outline'),(37145,156779,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','ae9ee143-2e72-41a5-9914-e7d01679ff10','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Community-and-Oral-Health-Directorate-Ref-v6.2-ZM.rtf?mtime=20200807161125&focal=none',1,'outline'),(37146,156782,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','adee35b3-e945-4a8d-bbc4-1e89b7896daf','Service information','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient',1,'solid'),(37147,156783,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','aed54035-7f11-4b4d-bc08-8d04d67859af','Find a specialist','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'solid'),(37148,156785,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','d2b72dba-b0a6-4c2a-ae29-02e9bd0780e5','Download the FAQs','https://metronorth.health.qld.gov.au/wp-content/uploads/2017/11/CPI-FAQ-V2.pdf',1,'solid'),(37149,156787,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','e9686424-2894-4d02-9eee-97eb79f93b4d','More information',NULL,0,'solid'),(37150,156809,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','8b76dad8-0fb1-4cb9-bf6b-e10ba38b4c14','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113929&focal=none',1,'outline'),(37151,156810,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','84cf646c-62e3-44a4-904d-62c2075b6687','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112619&focal=none',1,'outline'),(37152,156811,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','775ca993-6342-420a-a79a-e587fa045fc0','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-RBWH-Referral-PractiX-v4_9-2.doc?mtime=20200521161148&focal=none',1,'outline'),(37153,156812,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','037ae293-81da-4660-8314-8e75ff5472d9','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-RBWH-Ref-v6_2-ZM1-3.rtf?mtime=20200521161318&focal=none',1,'outline'),(37154,156814,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','01c7cb95-28bc-4946-9cb2-884e4e43c2cf','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-TPCH-Adult-Referral-v6.3-MD.rtf?mtime=20210430113931&focal=none',1,'outline'),(37155,156815,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','aa160c89-6c22-4163-a808-c4259c68c919','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Adult-Referral-v6.3-BP.rtf?mtime=20210430112623&focal=none',1,'outline'),(37156,156816,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','8d0e2f6c-6b41-437d-82ba-56d6dfea4560','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-PCH-PractiX-v4_12-1.doc?mtime=20200522124052&focal=none',1,'outline'),(37157,156817,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','c64de6a7-9cb8-46df-afd6-a8ff6f5ee4a6','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-TPCH-Ref-v6_2-ZM-1.rtf?mtime=20200522124257&focal=none',0,'outline'),(37158,156819,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','cbe111ed-dacb-411c-8583-a30d7db0d761','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Redcliffe-Adult-Referral-v6.3-MD.rtf?mtime=20210430113930&focal=none',1,'outline'),(37159,156820,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','d3821579-5f36-42fb-9908-fb7b19ddc8ea','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Adult-Referral-v6.3-BP.rtf?mtime=20210430112621&focal=none',1,'outline'),(37160,156821,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','d421ffe2-7df6-4319-80f1-ef9f40e23e16','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-PractiX-v4_12-1.doc?mtime=20200522125843&focal=none',1,'outline'),(37161,156822,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','e9391a93-e53c-4010-b2c3-6e967861ddfc','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Redcliffe-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522130025&focal=none',1,'outline'),(37162,156824,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','034eec51-0ed8-4f5d-b876-98c8c958ac1e','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Caboolture-Adult-Referral-v6.3-MD.rtf?mtime=20210430113920&focal=none',1,'outline'),(37163,156825,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','10428199-afd9-414d-ae5e-2a89def1827b','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Adult-Referral-v6.3-BP.rtf?mtime=20210430115701&focal=none',1,'outline'),(37164,156826,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','f82dcfe9-38a2-4314-9ef3-6baffb9e4aa4','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Cab-Referral-PractiX-v4_12-1.doc?mtime=20200522152242&focal=none',1,'outline'),(37165,156827,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','66d30a0a-a4f7-453f-903f-ec9bdc5f942b','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Caboolture-Hosp-Ref-v6_2-ZM1-1.rtf?mtime=20200522152403&focal=none',1,'outline'),(37166,156829,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','86669cfb-5262-4e4a-92e5-a031cc13bdfd','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Palliative-Care-Referral-v6.3-MD.rtf?mtime=20210430113927&focal=none',1,'outline'),(37167,156830,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','0f5edd85-b7f3-4e26-a32c-40898fd522e2','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Referral-v6.3-BP.rtf?mtime=20210430112617&focal=none',1,'outline'),(37168,156831,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','928ff324-72ac-40e0-b4cf-bbed03a04ba2','PractiX',NULL,1,'outline'),(37169,156832,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','bb616a51-c86d-4227-bf3d-e92774cdb681','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Palliative-Care-Ref-v6.2-ZM.rtf?mtime=20200522153215&focal=none',1,'outline'),(37170,156834,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','c6923156-8f50-4be3-8385-6d668f1734d5','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Maternity-Referral-v6.3-MD.rtf?mtime=20210430113924&focal=none',1,'outline'),(37171,156835,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','df9ec25f-b34f-41c1-bf34-5bc0f707860d','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Referral-v6.3-BP.rtf?mtime=20210430115904&focal=none',1,'outline'),(37172,156836,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','ef024315-a5a8-4379-9010-77df219f67f1','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-PractiX-v4_12-1.doc?mtime=20200522153957&focal=none',1,'outline'),(37173,156837,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','48138cbd-9dc6-435e-9fcf-33c92d4c8fb8','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Maternity-Ref-v6_2-ZM-1.rtf?mtime=20200522154107&focal=none',1,'outline'),(37174,156839,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','5abe2c05-4b59-4a05-99dd-ad67e5d0abb0','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-Paediatric-Referral-v6.3-MD.rtf?mtime=20210430113925&focal=none',1,'outline'),(37175,156840,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','7e39ce33-22bf-4eda-95ea-8ce7e4c7fada','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Referral-v6.3-BP.rtf?mtime=20210430112614&focal=none',1,'outline'),(37176,156841,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','c1c50529-f963-44ff-8887-569af224fef4','PractiX','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-PractiX-v4_12-1.doc?mtime=20200522154912&focal=none',1,'outline'),(37177,156842,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','a6885e0c-c1d7-4e98-95b7-5784db9a9ccf','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Paediatric-Ref-v6_2-ZM-1.rtf?mtime=20200522155024&focal=none',1,'outline'),(37178,156844,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','2ab82682-820f-45b7-a152-31cc3beeac1d','MD','https://d1jydvs1x4rbvt.cloudfront.net/downloads/MNHHS-COHD-Adult-Referral-v6.3-MD.rtf?mtime=20210430113922&focal=none',1,'outline'),(37179,156845,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','402f3be4-00c7-4d47-a6c9-9e7240b6edfd','Best Practice','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-COHD-Adult-Referral-v6.3-BP.rtf?mtime=20210430120142&focal=none',1,'outline'),(37180,156846,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','4d8daa31-a098-4c35-9db2-a7d3f1588ca9','ZedMed','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/MNHHS-Community-and-Oral-Health-Directorate-Ref-v6.2-ZM.rtf?mtime=20200807161125&focal=none',1,'outline'),(37181,156849,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','b287887f-ea8b-47ab-af48-4508d91a71cb','Service information','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient',1,'solid'),(37182,156850,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','aa962bf0-2c67-450b-8d5f-58c440354361','Find a specialist','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/specialists-list',1,'solid'),(37183,156852,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','b7ea5afe-baf6-4d17-b64a-e03f6162c030','Download the FAQs','https://metronorth.health.qld.gov.au/wp-content/uploads/2017/11/CPI-FAQ-V2.pdf',1,'solid'),(37184,156854,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','98be8d1a-0d8f-429e-b9ae-a428cfd621ac','More information',NULL,0,'solid'),(37185,156868,1,'2021-05-07 05:36:45','2021-05-07 05:36:45','ec915a65-e5b4-4dbc-8123-8dad66b05678','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',1,'solid'),(37186,156870,1,'2021-05-07 05:36:45','2021-05-07 05:36:45','1979cd74-1631-4e4c-8d4f-e24bff68b705','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(37187,156882,1,'2021-05-07 05:36:45','2021-05-07 05:36:45','427f2d30-5ab6-4275-bc66-7717cff7ba44','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(37188,156883,1,'2021-05-07 05:36:45','2021-05-07 05:36:45','563e4acf-14d0-493a-89c1-f3b1e4673cf1','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(37189,156887,1,'2021-05-07 05:58:37','2021-05-07 05:59:03','3ff03658-a6c4-4f3a-bb21-eaab2a4e86b5','More information','http://health.gov.au/covid19-vaccines',1,'solid'),(37190,156889,1,'2021-05-07 05:58:37','2021-05-07 05:59:03','2e02cae6-0598-4431-ad89-d6900cf579c3','Vaccine questions answered','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/is-it-true',1,'link'),(37191,156890,1,'2021-05-07 05:58:37','2021-05-07 05:59:03','4eaaf3f2-91cc-43a8-9742-b4ee0db65799','Information for workers in RACFs','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/information-for-aged-care-workers-about-covid-19-vaccines',1,'link'),(37192,156891,1,'2021-05-07 05:58:37','2021-05-07 05:59:03','cf3e2e52-9533-4791-b311-a2428bb359ca','How aged care workers can get vaccinated - fact sheet','https://www.health.gov.au/resources/publications/covid-19-vaccination-how-workers-in-residential-aged-care-can-get-a-covid-19-vaccination-fact-sheet',1,'link'),(37193,156892,1,'2021-05-07 05:58:37','2021-05-07 05:59:03','0c8f45b8-11b8-48de-af1f-4b872b39646e','Information for residents in RACFs','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/covid-19-vaccine-information-for-aged-care-residents-and-people-receiving-in-home-aged-care',1,'link'),(37194,156894,1,'2021-05-07 05:58:37','2021-05-07 05:59:03','3ebd8f93-b173-4198-95d8-07719280c386','Aged care vaccine readiness toolkit','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-aged-care-readiness-toolkit',1,'link'),(37195,156895,1,'2021-05-07 05:58:37','2021-05-07 05:59:03','fccaf2f4-4f13-49c2-b299-56482559c528','Consent form for COVID-19 vaccination','https://www.health.gov.au/resources/publications/covid-19-vaccination-consent-form-for-covid-19-vaccination?utm_source=GP+List+DD+and+WM_Current&utm_campaign=adb48e0824-EMAIL_CAMPAIGN_2018_07_27_02_23_COPY_01&utm_medium=email&utm_term=0_4698ba36cb-adb48e0',1,'link'),(37196,156896,1,'2021-05-07 05:58:37','2021-05-07 05:59:03','fd294dfb-810c-4cad-8417-4d679b6e3a93','Department of Health information and resources','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-for-aged-care-providers-and-workers',1,'link'),(37197,156898,1,'2021-05-07 05:58:37','2021-05-07 05:59:03','03845dbf-88d2-4dda-ae4a-9299fccf17aa','ATAGI: Advice on the relative timing of administering influenza and COVID-19 vaccines in 2021','https://www.health.gov.au/resources/publications/covid-19-vaccination-atagi-advice-on-influenza-and-covid-19-vaccines',1,'outline'),(37198,156899,1,'2021-05-07 05:58:37','2021-05-07 05:59:03','f1f38803-43fa-47ca-8a83-75b46be424cb','AHPPC: Statement on COVID-19 and influenza vaccination requirements for aged care workers','https://www.health.gov.au/news/australian-health-protection-principal-committee-ahppc-statement-on-covid-19-and-influenza-vaccination-requirements-for-aged-care-workers',1,'outline'),(37199,156901,1,'2021-05-07 05:58:37','2021-05-07 05:59:03','c37191e4-25de-4a59-9389-6d4a23e31fbb','Part 1: Preparing for the vaccine rollout in Brisbane North RACFs','https://www.youtube.com/watch?v=3BNaB811O_k',1,'solid'),(37200,156902,1,'2021-05-07 05:58:37','2021-05-07 05:59:03','1f72885e-c458-4805-9a8f-712c29ba5670','Part 2: Preparing for the vaccine rollout in Brisbane North RACFs','https://youtu.be/AATe_vJ3c3w',1,'solid'),(37201,156907,1,'2021-05-07 05:58:37','2021-05-07 05:59:03','75b9ef56-e2b4-4787-ae29-5ef9a0a13053','Aged care resources on the DoH website','https://www.health.gov.au/resources/collections/coronavirus-covid-19-resources-for-health-professionals-including-aged-care-providers-pathology-providers-and-health-care-managers#health-and-aged-care-workers',1,'link'),(37202,156908,1,'2021-05-07 05:58:37','2021-05-07 05:59:03','4b41cc1e-5e31-4391-8f75-33bd6382edb2','Subscribe to aged care sector announcements','https://www.health.gov.au/using-our-websites/subscriptions/subscribe-to-aged-care-sector-announcements-and-newsletters',1,'link'),(37203,156909,1,'2021-05-07 05:58:37','2021-05-07 05:59:03','4ae4e378-c39d-4a50-9c55-5d05083e3453','Leading Age Services Australia','https://lasa.asn.au/covid-19',1,'link'),(37204,156910,1,'2021-05-07 05:58:37','2021-05-07 05:59:03','79f1701b-0bb3-4a8b-be5c-1f5e164ee0d6','Aged and Community Services Australia','https://www.acsa.asn.au/Home/Aged-Care-Emergency-Planning/Coronavirus',1,'link'),(37205,156913,1,'2021-05-07 05:59:08','2021-05-07 05:59:08','96e9a224-ca6d-4e75-bb9e-b70704ac508a','More information','http://health.gov.au/covid19-vaccines',1,'solid'),(37206,156915,1,'2021-05-07 05:59:08','2021-05-07 05:59:08','7d9f3f20-37a6-4d53-b992-b447008c2bc3','Vaccine questions answered','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/is-it-true',1,'link'),(37207,156916,1,'2021-05-07 05:59:08','2021-05-07 05:59:08','e54116a2-7d86-482e-a632-4dd6099b8263','Information for workers in RACFs','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/information-for-aged-care-workers-about-covid-19-vaccines',1,'link'),(37208,156917,1,'2021-05-07 05:59:08','2021-05-07 05:59:08','62c4a5f5-ed17-4e9e-8f95-1baaa36cef10','How aged care workers can get vaccinated - fact sheet','https://www.health.gov.au/resources/publications/covid-19-vaccination-how-workers-in-residential-aged-care-can-get-a-covid-19-vaccination-fact-sheet',1,'link'),(37209,156918,1,'2021-05-07 05:59:08','2021-05-07 05:59:08','c3d1aad1-22ab-4344-a5c9-d85d8d2b6459','Information for residents in RACFs','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/covid-19-vaccine-information-for-aged-care-residents-and-people-receiving-in-home-aged-care',1,'link'),(37210,156920,1,'2021-05-07 05:59:08','2021-05-07 05:59:08','f0d07455-c9d2-408a-9a8c-0874782a8eb1','Aged care vaccine readiness toolkit','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-aged-care-readiness-toolkit',1,'link'),(37211,156921,1,'2021-05-07 05:59:08','2021-05-07 05:59:08','49713a2d-efea-49bc-a003-3892f3befcce','Consent form for COVID-19 vaccination','https://www.health.gov.au/resources/publications/covid-19-vaccination-consent-form-for-covid-19-vaccination?utm_source=GP+List+DD+and+WM_Current&utm_campaign=adb48e0824-EMAIL_CAMPAIGN_2018_07_27_02_23_COPY_01&utm_medium=email&utm_term=0_4698ba36cb-adb48e0',1,'link'),(37212,156922,1,'2021-05-07 05:59:08','2021-05-07 05:59:08','ecc7c992-80a9-430c-bf7c-246c1afdd52c','Department of Health information and resources','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-for-aged-care-providers-and-workers',1,'link'),(37213,156924,1,'2021-05-07 05:59:08','2021-05-07 05:59:08','593518f1-775c-4ae1-b669-e272b0ec5eb3','ATAGI: Advice on the relative timing of administering influenza and COVID-19 vaccines in 2021','https://www.health.gov.au/resources/publications/covid-19-vaccination-atagi-advice-on-influenza-and-covid-19-vaccines',1,'outline'),(37214,156925,1,'2021-05-07 05:59:08','2021-05-07 05:59:08','8e7efd5d-4be0-4361-b1a2-254d701b2a73','AHPPC: Statement on COVID-19 and influenza vaccination requirements for aged care workers','https://www.health.gov.au/news/australian-health-protection-principal-committee-ahppc-statement-on-covid-19-and-influenza-vaccination-requirements-for-aged-care-workers',1,'outline'),(37215,156927,1,'2021-05-07 05:59:08','2021-05-07 05:59:08','e5128def-8e8e-4cf3-b858-053c75c8d4d2','Part 1: Preparing for the vaccine rollout in Brisbane North RACFs','https://www.youtube.com/watch?v=3BNaB811O_k',1,'solid'),(37216,156928,1,'2021-05-07 05:59:08','2021-05-07 05:59:08','fce61ff0-7daa-42fb-8720-895b63f6096d','Part 2: Preparing for the vaccine rollout in Brisbane North RACFs','https://youtu.be/AATe_vJ3c3w',1,'solid'),(37217,156933,1,'2021-05-07 05:59:08','2021-05-07 05:59:08','148cb93c-9791-4396-a99d-49b5eaa3241b','Aged care resources on the DoH website','https://www.health.gov.au/resources/collections/coronavirus-covid-19-resources-for-health-professionals-including-aged-care-providers-pathology-providers-and-health-care-managers#health-and-aged-care-workers',1,'link'),(37218,156934,1,'2021-05-07 05:59:08','2021-05-07 05:59:08','7c18a33b-93c8-409b-a4f7-859db87ff839','Subscribe to aged care sector announcements','https://www.health.gov.au/using-our-websites/subscriptions/subscribe-to-aged-care-sector-announcements-and-newsletters',1,'link'),(37219,156935,1,'2021-05-07 05:59:08','2021-05-07 05:59:08','bd1cd64b-5bff-42f8-901b-4e85d836dc15','Leading Age Services Australia','https://lasa.asn.au/covid-19',1,'link'),(37220,156936,1,'2021-05-07 05:59:08','2021-05-07 05:59:08','60e10683-b121-4316-af1d-509db493989b','Aged and Community Services Australia','https://www.acsa.asn.au/Home/Aged-Care-Emergency-Planning/Coronavirus',1,'link'),(37221,156940,1,'2021-05-07 05:59:08','2021-05-07 05:59:08','d96f9c9f-a7fe-413e-aaa4-7f5fb290bce9','More information','http://health.gov.au/covid19-vaccines',1,'solid'),(37222,156942,1,'2021-05-07 05:59:08','2021-05-07 05:59:08','08e3cf56-e7f0-4927-a999-f2c7b7392077','Vaccine questions answered','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/is-it-true',1,'link'),(37223,156943,1,'2021-05-07 05:59:08','2021-05-07 05:59:08','b9fc8361-a3b7-487c-84a2-ab47db65843c','Information for workers in RACFs','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/information-for-aged-care-workers-about-covid-19-vaccines',1,'link'),(37224,156944,1,'2021-05-07 05:59:08','2021-05-07 05:59:08','4058d5f2-763b-4a37-970f-9f153c5ca11d','How aged care workers can get vaccinated - fact sheet','https://www.health.gov.au/resources/publications/covid-19-vaccination-how-workers-in-residential-aged-care-can-get-a-covid-19-vaccination-fact-sheet',1,'link'),(37225,156945,1,'2021-05-07 05:59:08','2021-05-07 05:59:08','4af7bb03-c559-428d-a96a-9477ee8b2bae','Information for residents in RACFs','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/covid-19-vaccine-information-for-aged-care-residents-and-people-receiving-in-home-aged-care',1,'link'),(37226,156947,1,'2021-05-07 05:59:08','2021-05-07 05:59:08','6380cc86-0e23-43a9-8793-6e58ed364f11','Aged care vaccine readiness toolkit','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-aged-care-readiness-toolkit',1,'link'),(37227,156948,1,'2021-05-07 05:59:08','2021-05-07 05:59:08','43def618-60a6-44b8-b527-135b191991d7','Consent form for COVID-19 vaccination','https://www.health.gov.au/resources/publications/covid-19-vaccination-consent-form-for-covid-19-vaccination?utm_source=GP+List+DD+and+WM_Current&utm_campaign=adb48e0824-EMAIL_CAMPAIGN_2018_07_27_02_23_COPY_01&utm_medium=email&utm_term=0_4698ba36cb-adb48e0',1,'link'),(37228,156949,1,'2021-05-07 05:59:08','2021-05-07 05:59:08','4ccbf905-892b-401d-8626-56b28c119206','Department of Health information and resources','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-for-aged-care-providers-and-workers',1,'link'),(37229,156951,1,'2021-05-07 05:59:08','2021-05-07 05:59:08','a25c6e1f-a2bd-47ae-9902-56547782556e','ATAGI: Advice on the relative timing of administering influenza and COVID-19 vaccines in 2021','https://www.health.gov.au/resources/publications/covid-19-vaccination-atagi-advice-on-influenza-and-covid-19-vaccines',1,'outline'),(37230,156952,1,'2021-05-07 05:59:08','2021-05-07 05:59:08','24d9be77-1238-4a4b-bac2-a92a9d59245f','AHPPC: Statement on COVID-19 and influenza vaccination requirements for aged care workers','https://www.health.gov.au/news/australian-health-protection-principal-committee-ahppc-statement-on-covid-19-and-influenza-vaccination-requirements-for-aged-care-workers',1,'outline'),(37231,156954,1,'2021-05-07 05:59:09','2021-05-07 05:59:09','5150d3a8-cf68-4dd4-95c3-2051ef04a5e1','Part 1: Preparing for the vaccine rollout in Brisbane North RACFs','https://www.youtube.com/watch?v=3BNaB811O_k',1,'solid'),(37232,156955,1,'2021-05-07 05:59:09','2021-05-07 05:59:09','5fd09823-a25c-4e29-9c33-3ec34d43e748','Part 2: Preparing for the vaccine rollout in Brisbane North RACFs','https://youtu.be/AATe_vJ3c3w',1,'solid'),(37233,156960,1,'2021-05-07 05:59:09','2021-05-07 05:59:09','d2535a71-cbf7-47bd-84eb-bf572b3fad8b','Aged care resources on the DoH website','https://www.health.gov.au/resources/collections/coronavirus-covid-19-resources-for-health-professionals-including-aged-care-providers-pathology-providers-and-health-care-managers#health-and-aged-care-workers',1,'link'),(37234,156961,1,'2021-05-07 05:59:09','2021-05-07 05:59:09','fd51f657-88c7-482e-b7c0-7d28a6075558','Subscribe to aged care sector announcements','https://www.health.gov.au/using-our-websites/subscriptions/subscribe-to-aged-care-sector-announcements-and-newsletters',1,'link'),(37235,156962,1,'2021-05-07 05:59:09','2021-05-07 05:59:09','5da623bd-b54c-455b-a6a8-c858ea4e9555','Leading Age Services Australia','https://lasa.asn.au/covid-19',1,'link'),(37236,156963,1,'2021-05-07 05:59:09','2021-05-07 05:59:09','efd22140-198f-46bf-b3ce-49121a97bce4','Aged and Community Services Australia','https://www.acsa.asn.au/Home/Aged-Care-Emergency-Planning/Coronavirus',1,'link'),(37237,156967,1,'2021-05-07 05:59:31','2021-05-07 05:59:31','5ff17535-524d-405c-bc76-20490c0b3c7b','More information','http://health.gov.au/covid19-vaccines',1,'solid'),(37238,156969,1,'2021-05-07 05:59:31','2021-05-07 05:59:31','3243291f-4437-40b8-8c09-1d527f7362ed','Vaccine questions answered','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/is-it-true',1,'link'),(37239,156970,1,'2021-05-07 05:59:31','2021-05-07 05:59:31','bf746063-522c-43df-ba31-89d042fd8589','Information for workers in RACFs','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/information-for-aged-care-workers-about-covid-19-vaccines',1,'link'),(37240,156971,1,'2021-05-07 05:59:31','2021-05-07 05:59:31','f0cb6ada-bc61-4394-a848-e3e67e55e4a3','How aged care workers can get vaccinated - fact sheet','https://www.health.gov.au/resources/publications/covid-19-vaccination-how-workers-in-residential-aged-care-can-get-a-covid-19-vaccination-fact-sheet',1,'link'),(37241,156972,1,'2021-05-07 05:59:31','2021-05-07 05:59:31','a040be3c-2bae-40b7-b6d8-86b421c739f7','Information for residents in RACFs','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines/covid-19-vaccine-information-for-aged-care-residents-and-people-receiving-in-home-aged-care',1,'link'),(37242,156974,1,'2021-05-07 05:59:31','2021-05-07 05:59:31','83f06939-7eb1-4a0b-9b46-f5c53cb48ff5','Aged care vaccine readiness toolkit','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-aged-care-readiness-toolkit',1,'link'),(37243,156975,1,'2021-05-07 05:59:31','2021-05-07 05:59:31','abc8919b-4c2c-40ac-b45f-3e5b9025ec64','Consent form for COVID-19 vaccination','https://www.health.gov.au/resources/publications/covid-19-vaccination-consent-form-for-covid-19-vaccination?utm_source=GP+List+DD+and+WM_Current&utm_campaign=adb48e0824-EMAIL_CAMPAIGN_2018_07_27_02_23_COPY_01&utm_medium=email&utm_term=0_4698ba36cb-adb48e0',1,'link'),(37244,156976,1,'2021-05-07 05:59:31','2021-05-07 05:59:31','0734402e-4e58-425d-b3d0-3526b5a3993c','Department of Health information and resources','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-for-aged-care-providers-and-workers',1,'link'),(37245,156978,1,'2021-05-07 05:59:31','2021-05-07 05:59:31','b52bb849-2412-49db-8ef8-fbe873c3f5e0','ATAGI: Advice on the relative timing of administering influenza and COVID-19 vaccines in 2021','https://www.health.gov.au/resources/publications/covid-19-vaccination-atagi-advice-on-influenza-and-covid-19-vaccines',1,'outline'),(37246,156979,1,'2021-05-07 05:59:31','2021-05-07 05:59:31','62651d63-f408-40db-9ead-af88916b0a05','AHPPC: Statement on COVID-19 and influenza vaccination requirements for aged care workers','https://www.health.gov.au/news/australian-health-protection-principal-committee-ahppc-statement-on-covid-19-and-influenza-vaccination-requirements-for-aged-care-workers',1,'outline'),(37247,156981,1,'2021-05-07 05:59:31','2021-05-07 05:59:31','7cc44a7b-7eaa-427f-b6c9-7c43f115e91c','Part 1: Preparing for the vaccine rollout in Brisbane North RACFs','https://www.youtube.com/watch?v=3BNaB811O_k',1,'solid'),(37248,156982,1,'2021-05-07 05:59:31','2021-05-07 05:59:31','c27b78f5-a95e-46f0-8cf8-9243a54e39fc','Part 2: Preparing for the vaccine rollout in Brisbane North RACFs','https://youtu.be/AATe_vJ3c3w',1,'solid'),(37249,156987,1,'2021-05-07 05:59:31','2021-05-07 05:59:31','b2e20dba-da27-4107-aa88-ccb7b8986bca','Aged care resources on the DoH website','https://www.health.gov.au/resources/collections/coronavirus-covid-19-resources-for-health-professionals-including-aged-care-providers-pathology-providers-and-health-care-managers#health-and-aged-care-workers',1,'link'),(37250,156988,1,'2021-05-07 05:59:31','2021-05-07 05:59:31','516ae6d2-74c4-433e-84e8-dc55d8e8405a','Subscribe to aged care sector announcements','https://www.health.gov.au/using-our-websites/subscriptions/subscribe-to-aged-care-sector-announcements-and-newsletters',1,'link'),(37251,156989,1,'2021-05-07 05:59:31','2021-05-07 05:59:31','9ddc56c0-5e5b-4b05-b0f4-be6f6a58d8df','Leading Age Services Australia','https://lasa.asn.au/covid-19',1,'link'),(37252,156990,1,'2021-05-07 05:59:31','2021-05-07 05:59:31','e079f63f-c317-4935-91b9-6279509556f6','Aged and Community Services Australia','https://www.acsa.asn.au/Home/Aged-Care-Emergency-Planning/Coronavirus',1,'link'),(37253,157036,1,'2021-05-10 00:45:49','2021-05-10 00:45:49','abd8ec56-0606-416d-a1df-ab2fa922efc9','Visit the website','https://mymentalhealth.org.au/',1,'solid'),(37254,157050,1,'2021-05-10 23:11:18','2021-05-10 23:11:18','d32c1c32-085a-4398-9503-19a069d7cb32','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(37255,157051,1,'2021-05-10 23:11:18','2021-05-10 23:11:18','a0a77e64-7c11-47cf-88b3-5e70a971d74b','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(37256,157052,1,'2021-05-10 23:11:18','2021-05-10 23:11:18','bd93d17e-510c-4d0b-aa65-888fc31fccfc','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(37257,157053,1,'2021-05-10 23:11:18','2021-05-10 23:11:18','d53ab487-c856-4dca-9b10-da8f2d681d2c','Vaccine rollout data','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/australias-covid-19-vaccine-rollout',1,'solid'),(37258,157056,1,'2021-05-10 23:11:18','2021-05-10 23:11:18','696d309a-8e84-41d0-bc1b-fc2cf47f06e6','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(37259,157057,1,'2021-05-10 23:11:18','2021-05-10 23:11:18','17931c86-7d2d-4f2a-b9de-9a0cd4861b5f','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(37260,157058,1,'2021-05-10 23:11:18','2021-05-10 23:11:18','621040bb-e721-4e7a-89bc-75d121ad187f','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(37261,157059,1,'2021-05-10 23:11:18','2021-05-10 23:11:18','7268489f-ffa6-4e94-893e-2cad61805cc1','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(37262,157062,1,'2021-05-10 23:11:18','2021-05-10 23:11:18','c130b50e-60f9-4c1e-9626-b012cc24f63e','ATAGI statement - 8 April','https://www.health.gov.au/news/atagi-statement-on-astrazeneca-vaccine-in-response-to-new-vaccine-safety-concerns',1,'solid'),(37263,157063,1,'2021-05-10 23:11:18','2021-05-10 23:11:18','72033f31-395e-4a9f-90bb-02507e0e04a7','ATAGI statement - 23 April','https://www.health.gov.au/news/atagi-reinforce-recommendations-on-use-of-covid-19-vaccines-following-review-of-vaccine-safety-data-and-benefits',1,'solid'),(37264,157064,1,'2021-05-10 23:11:18','2021-05-10 23:11:18','a10526ef-f6d9-49dc-a410-ee8956f27026','Chief Medical Officer\'s response to ATAGI advice','https://www.health.gov.au/news/response-latest-atagi-advice',1,'solid'),(37265,157071,1,'2021-05-10 23:11:18','2021-05-10 23:11:18','ba04f93e-a0d3-4f95-af2a-42cbfc6b1e02','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(37266,157074,1,'2021-05-10 23:11:18','2021-05-10 23:11:18','03e8fd8c-af87-47f3-8f47-1aae8f55f151','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(37267,157075,1,'2021-05-10 23:11:18','2021-05-10 23:11:18','bb526915-fadf-4533-b720-bdf29e0a2bc7','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(37268,157076,1,'2021-05-10 23:11:18','2021-05-10 23:11:18','6892f795-6050-41a6-94d8-475d59e0ce62','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(37269,157077,1,'2021-05-10 23:11:18','2021-05-10 23:11:18','b8b259c4-a330-48a2-aae3-0d0994578fe1','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(37270,157078,1,'2021-05-10 23:11:18','2021-05-10 23:11:18','02c5c03d-c032-4891-be4b-f17db308e0c8','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(37271,157084,1,'2021-05-10 23:11:18','2021-05-10 23:11:18','1e747d48-18de-4162-9cc1-8d981a6c26fa','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(37272,157085,1,'2021-05-10 23:11:18','2021-05-10 23:11:18','fdd617dc-e296-4d55-8851-cb4e3dd2fc4c','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(37273,157086,1,'2021-05-10 23:11:18','2021-05-10 23:11:18','bd23d294-f1d2-4094-bae8-bf70300f5f17','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(37274,157090,1,'2021-05-10 23:11:59','2021-05-10 23:11:59','8cd2ffac-2a31-4979-83c4-2491186b1895','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(37275,157091,1,'2021-05-10 23:11:59','2021-05-10 23:11:59','2f7b3348-6b9c-4738-a62b-de127841d257','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(37276,157092,1,'2021-05-10 23:11:59','2021-05-10 23:11:59','801c5a46-1cda-4326-a8b8-af4fb5ef7280','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(37277,157093,1,'2021-05-10 23:11:59','2021-05-10 23:11:59','6db581c7-aedb-478c-b463-cbe918f300f6','Vaccine rollout data','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/australias-covid-19-vaccine-rollout',1,'solid'),(37278,157096,1,'2021-05-10 23:11:59','2021-05-10 23:11:59','fa1046fe-d07c-4064-94b0-4dbb3d5b6bef','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(37279,157097,1,'2021-05-10 23:11:59','2021-05-10 23:11:59','41717e64-398a-4e83-829c-631d01c2fc6a','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(37280,157098,1,'2021-05-10 23:11:59','2021-05-10 23:11:59','af04b5e4-4432-404e-bc43-509f92f9dcd7','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(37281,157099,1,'2021-05-10 23:11:59','2021-05-10 23:11:59','815d94c8-a0ce-452c-b3d4-b34c10c458e0','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(37282,157102,1,'2021-05-10 23:11:59','2021-05-10 23:11:59','0ae637cd-856a-4ab4-b43d-98af9bc7e468','ATAGI statement - 8 April','https://www.health.gov.au/news/atagi-statement-on-astrazeneca-vaccine-in-response-to-new-vaccine-safety-concerns',1,'solid'),(37283,157103,1,'2021-05-10 23:11:59','2021-05-10 23:11:59','4b278110-5d38-4f9b-9fe1-d7f03179ec52','ATAGI statement - 23 April','https://www.health.gov.au/news/atagi-reinforce-recommendations-on-use-of-covid-19-vaccines-following-review-of-vaccine-safety-data-and-benefits',1,'solid'),(37284,157104,1,'2021-05-10 23:11:59','2021-05-10 23:11:59','2e906b7e-23e2-4bc9-b150-02c9a53f6223','Chief Medical Officer\'s response to ATAGI advice','https://www.health.gov.au/news/response-latest-atagi-advice',1,'solid'),(37285,157111,1,'2021-05-10 23:11:59','2021-05-10 23:11:59','1f370959-0dea-4f2e-84dc-721a656394cc','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(37286,157114,1,'2021-05-10 23:11:59','2021-05-10 23:11:59','7e360f08-d405-49d7-b1a7-67c71ef5830a','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(37287,157115,1,'2021-05-10 23:11:59','2021-05-10 23:11:59','1289c8f5-e71a-4212-9d59-97f9c088e16b','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(37288,157116,1,'2021-05-10 23:11:59','2021-05-10 23:11:59','2c05dabb-c9d5-438a-af83-479ebe824962','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(37289,157117,1,'2021-05-10 23:11:59','2021-05-10 23:11:59','efe16ad1-1096-4172-898d-6e6fb5fe125f','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(37290,157118,1,'2021-05-10 23:11:59','2021-05-10 23:11:59','498e9b4e-4eca-4c8c-90f8-767456bdb1b4','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(37291,157124,1,'2021-05-10 23:11:59','2021-05-10 23:11:59','57324ecd-c8c2-479e-a7ba-774f91fff0d3','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(37292,157125,1,'2021-05-10 23:11:59','2021-05-10 23:11:59','1d18b76c-237c-4949-ad09-44397cb1b14f','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(37293,157126,1,'2021-05-10 23:11:59','2021-05-10 23:11:59','6f826af0-375c-43cf-8cca-d50a2e75d1b6','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(37294,157131,1,'2021-05-10 23:12:00','2021-05-10 23:12:00','c5393cd6-5779-4e18-9413-a3de3d6d7187','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(37295,157132,1,'2021-05-10 23:12:00','2021-05-10 23:12:00','6094d977-0495-472e-a398-27acec899268','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(37296,157133,1,'2021-05-10 23:12:00','2021-05-10 23:12:00','1c832040-016c-4160-9a81-addd04dc8053','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(37297,157134,1,'2021-05-10 23:12:00','2021-05-10 23:12:00','43f2695a-9160-468b-8e2c-499d7823eb50','Vaccine rollout data','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/australias-covid-19-vaccine-rollout',1,'solid'),(37298,157137,1,'2021-05-10 23:12:00','2021-05-10 23:12:00','a1968631-e52e-41a0-8590-ea6e9df37279','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(37299,157138,1,'2021-05-10 23:12:00','2021-05-10 23:12:00','398ec1b8-3a66-4fe0-81a3-40ea0dd9015e','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(37300,157139,1,'2021-05-10 23:12:00','2021-05-10 23:12:00','a324553c-e576-4eea-90ce-bd1e088f5425','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(37301,157140,1,'2021-05-10 23:12:00','2021-05-10 23:12:00','33f87066-d850-4ae6-bf27-3d8ecbb1b231','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(37302,157143,1,'2021-05-10 23:12:00','2021-05-10 23:12:00','9ba9ef83-8560-40ab-95b4-3ddb28359dca','ATAGI statement - 8 April','https://www.health.gov.au/news/atagi-statement-on-astrazeneca-vaccine-in-response-to-new-vaccine-safety-concerns',1,'solid'),(37303,157144,1,'2021-05-10 23:12:00','2021-05-10 23:12:00','5f4289d2-0ac7-410b-bda0-cadab2580c0a','ATAGI statement - 23 April','https://www.health.gov.au/news/atagi-reinforce-recommendations-on-use-of-covid-19-vaccines-following-review-of-vaccine-safety-data-and-benefits',1,'solid'),(37304,157145,1,'2021-05-10 23:12:00','2021-05-10 23:12:00','40bd2e83-9f34-4e1b-a803-9fc78fa088b4','Chief Medical Officer\'s response to ATAGI advice','https://www.health.gov.au/news/response-latest-atagi-advice',1,'solid'),(37305,157152,1,'2021-05-10 23:12:00','2021-05-10 23:12:00','3c80a391-410c-436c-8c9a-a395a31842dc','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(37306,157155,1,'2021-05-10 23:12:00','2021-05-10 23:12:00','e7341cd6-78b9-4097-966d-594d6f56b62a','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(37307,157156,1,'2021-05-10 23:12:00','2021-05-10 23:12:00','2ff9c597-a78c-4b35-84f2-74abf094c379','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(37308,157157,1,'2021-05-10 23:12:00','2021-05-10 23:12:00','079da952-d81f-405e-a93a-c87b66c95be2','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(37309,157158,1,'2021-05-10 23:12:00','2021-05-10 23:12:00','f8fdd143-90ce-46c6-a2fc-ad1b7c4c49c7','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(37310,157159,1,'2021-05-10 23:12:00','2021-05-10 23:12:00','9e6a0d29-7102-42ed-a1c8-3b2a92420c95','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(37311,157165,1,'2021-05-10 23:12:00','2021-05-10 23:12:00','34b1dec2-2688-4108-87d8-5cfdb0892eb9','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(37312,157166,1,'2021-05-10 23:12:00','2021-05-10 23:12:00','56dcd45c-9fff-4b56-998e-3d28d60446c6','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(37313,157167,1,'2021-05-10 23:12:00','2021-05-10 23:12:00','44f4261f-9649-457e-9b9c-3241c493d14b','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(37314,157172,1,'2021-05-10 23:12:09','2021-05-10 23:12:09','bc8bf6d8-fc7b-4220-9301-3b4ba28405f5','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(37315,157173,1,'2021-05-10 23:12:09','2021-05-10 23:12:09','14904891-4dcd-40a0-8392-62c45ad1bdab','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(37316,157174,1,'2021-05-10 23:12:09','2021-05-10 23:12:09','bc87fc68-fe92-446b-a404-63bf59940d0a','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(37317,157175,1,'2021-05-10 23:12:09','2021-05-10 23:12:09','e2590efe-c128-4457-8008-fc60b529d136','Vaccine rollout data','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/australias-covid-19-vaccine-rollout',1,'solid'),(37318,157178,1,'2021-05-10 23:12:09','2021-05-10 23:12:09','846179e7-1b6e-4d11-b966-5e5f44017ca0','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(37319,157179,1,'2021-05-10 23:12:09','2021-05-10 23:12:09','ac339d70-8577-44d6-913e-fea6a242c4e5','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(37320,157180,1,'2021-05-10 23:12:09','2021-05-10 23:12:09','80ee4335-e940-4659-943b-6bf785b93864','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(37321,157181,1,'2021-05-10 23:12:09','2021-05-10 23:12:09','cea3b753-a70f-4d1e-af78-1091cde5e82b','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(37322,157184,1,'2021-05-10 23:12:09','2021-05-10 23:12:09','e8fee88c-eb85-4750-a1bc-0bce07e16591','ATAGI statement - 8 April','https://www.health.gov.au/news/atagi-statement-on-astrazeneca-vaccine-in-response-to-new-vaccine-safety-concerns',1,'solid'),(37323,157185,1,'2021-05-10 23:12:09','2021-05-10 23:12:09','fce53c0c-dc55-4a47-8b57-2fb979cc71c2','ATAGI statement - 23 April','https://www.health.gov.au/news/atagi-reinforce-recommendations-on-use-of-covid-19-vaccines-following-review-of-vaccine-safety-data-and-benefits',1,'solid'),(37324,157186,1,'2021-05-10 23:12:09','2021-05-10 23:12:09','bed2aad6-851d-45bd-bff6-417522407aca','Chief Medical Officer\'s response to ATAGI advice','https://www.health.gov.au/news/response-latest-atagi-advice',1,'solid'),(37325,157193,1,'2021-05-10 23:12:09','2021-05-10 23:12:09','87deed6b-65ba-4e09-a1eb-238f03f3fc63','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(37326,157196,1,'2021-05-10 23:12:09','2021-05-10 23:12:09','1aaba35f-497b-4bcf-9a8a-0166c2745b24','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(37327,157197,1,'2021-05-10 23:12:09','2021-05-10 23:12:09','8d6f2ed8-148d-4fae-a3a4-0a72c6d9b577','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(37328,157198,1,'2021-05-10 23:12:09','2021-05-10 23:12:09','f7da32d9-0a83-4bc5-a8a4-281e5ff192a0','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(37329,157199,1,'2021-05-10 23:12:09','2021-05-10 23:12:09','25f2cb21-1182-4d63-8721-7120462ee572','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(37330,157200,1,'2021-05-10 23:12:09','2021-05-10 23:12:09','2de1567f-10de-4236-aaa3-66d8f1518f07','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(37331,157206,1,'2021-05-10 23:12:10','2021-05-10 23:12:10','eeef0b84-d80b-4c56-9c3f-6d78bf70e6f5','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(37332,157207,1,'2021-05-10 23:12:10','2021-05-10 23:12:10','1ed3d824-756f-4926-8223-2e53484b251d','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(37333,157208,1,'2021-05-10 23:12:10','2021-05-10 23:12:10','f01d1df8-c12c-42cd-849b-8ab3356e5048','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(37334,157213,1,'2021-05-10 23:57:04','2021-05-10 23:57:05','948cb7c3-ab6d-4f29-8f76-bcebcf4991c1','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37335,157214,1,'2021-05-10 23:57:04','2021-05-10 23:57:05','d767fd4e-b885-4091-a1f4-7c7d44c77e9f','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37336,157217,1,'2021-05-10 23:57:04','2021-05-10 23:57:04','753f66db-8c45-4b59-a78a-a4494343a630','Phase 1B rollout FAQs',NULL,1,'solid'),(37337,157220,1,'2021-05-10 23:57:04','2021-05-10 23:57:04','e22ba748-0ecf-4a78-a6bd-167b52727cdb','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37338,157226,1,'2021-05-10 23:57:04','2021-05-10 23:57:04','c23720e4-b523-4191-8c0c-db3afb723048','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37339,157229,1,'2021-05-10 23:57:04','2021-05-10 23:57:04','ba305613-6910-416a-9d40-2e0462c5912e','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37340,157231,1,'2021-05-10 23:57:04','2021-05-10 23:57:04','61f98a26-42f9-4c4b-b4ea-aeb5b1a79351','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37341,157233,1,'2021-05-10 23:57:04','2021-05-10 23:57:04','980b2c7b-501b-4289-be46-615514891f9c','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37342,157236,1,'2021-05-10 23:57:04','2021-05-10 23:57:04','49af004b-c4be-4378-9d3e-aacb0009ac55','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37343,157238,1,'2021-05-10 23:57:04','2021-05-10 23:57:04','8b2a88e8-7800-4e6a-a7c2-8f661b9e9895','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37344,157240,1,'2021-05-10 23:57:04','2021-05-10 23:57:04','59f2bebf-cf8a-480d-b745-d254d46b7c61','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37345,157243,1,'2021-05-10 23:57:04','2021-05-10 23:57:04','7cc61168-de9c-4b6e-b42c-c5482a06b3ee','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37346,157244,1,'2021-05-10 23:57:04','2021-05-10 23:57:04','baa43390-9b23-4f30-8f94-d7259d979430','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37347,157247,1,'2021-05-10 23:57:04','2021-05-10 23:57:04','fc535dee-53e3-4e78-8abb-7e3db1ecf443','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37348,157250,1,'2021-05-10 23:57:05','2021-05-10 23:57:05','6b1aee1d-c83f-46ae-aeb0-e3b3f4bf9119','Subscribe to updates',NULL,1,'solid'),(37349,157252,1,'2021-05-10 23:57:05','2021-05-10 23:57:05','001635ef-6ada-4def-8c3e-f85c64e57738','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37350,157253,1,'2021-05-10 23:57:05','2021-05-10 23:57:05','ebfdc8e3-0748-425e-828a-cdcdc2bbf4d0','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37351,157256,1,'2021-05-10 23:57:06','2021-05-10 23:57:06','5e471b90-1601-48ea-a385-62fa0c122977','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37352,157257,1,'2021-05-10 23:57:06','2021-05-10 23:57:06','099d99fe-e82c-4ef1-8349-48560ae21024','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37353,157260,1,'2021-05-10 23:57:06','2021-05-10 23:57:06','07499d4a-f674-4184-8999-fe52ece8b13a','Phase 1B rollout FAQs',NULL,1,'solid'),(37354,157263,1,'2021-05-10 23:57:06','2021-05-10 23:57:06','4fe706bb-d31d-4991-bddd-6454615fc354','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37355,157269,1,'2021-05-10 23:57:06','2021-05-10 23:57:06','b7491144-beb5-4fe0-b850-9300e7eb758d','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37356,157272,1,'2021-05-10 23:57:06','2021-05-10 23:57:06','90629e7f-4161-4093-9ee0-a4ff2d0dec1e','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37357,157274,1,'2021-05-10 23:57:06','2021-05-10 23:57:06','6c2c0047-579a-444a-a41e-ed14c77dd551','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37358,157276,1,'2021-05-10 23:57:06','2021-05-10 23:57:06','c556d06a-eafa-435f-9735-6d1771b184cd','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37359,157279,1,'2021-05-10 23:57:06','2021-05-10 23:57:06','92e91840-cbfe-44e8-8817-180ff3c2c010','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37360,157281,1,'2021-05-10 23:57:06','2021-05-10 23:57:06','8ce7b1f8-8fb6-45f7-a6ba-2416bbf677c5','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37361,157283,1,'2021-05-10 23:57:06','2021-05-10 23:57:06','31f643c8-6982-4255-a979-732d17f60726','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37362,157286,1,'2021-05-10 23:57:06','2021-05-10 23:57:06','25b1a88a-5be5-4e49-bc50-85b7e9ed4b86','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37363,157287,1,'2021-05-10 23:57:06','2021-05-10 23:57:06','d24d86b3-d219-4ee7-ae80-7f76e3572562','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37364,157290,1,'2021-05-10 23:57:06','2021-05-10 23:57:06','41ec79dd-5337-4d69-a4d9-922709f572c9','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37365,157293,1,'2021-05-10 23:57:07','2021-05-10 23:57:07','c5162ac1-e3dd-4cc8-92d2-2885ad0169c8','Subscribe to updates',NULL,1,'solid'),(37366,157295,1,'2021-05-10 23:57:07','2021-05-10 23:57:07','e487385d-1bf9-46a1-96d5-5c5565760739','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37367,157296,1,'2021-05-10 23:57:07','2021-05-10 23:57:07','21104574-5082-4788-8210-2854db0c684f','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37368,157299,1,'2021-05-11 00:00:08','2021-05-11 00:00:08','07d2ab04-8f19-4931-a339-44d29e1693ac','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37369,157300,1,'2021-05-11 00:00:08','2021-05-11 00:00:08','2ae110d8-a21b-4264-b8a7-eaccca3fa3bc','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37370,157303,1,'2021-05-11 00:00:08','2021-05-11 00:00:08','0ef2121f-c749-4979-a616-841285dbd557','Phase 1B rollout FAQs',NULL,1,'solid'),(37371,157306,1,'2021-05-11 00:00:08','2021-05-11 00:00:08','eea8b7cb-0e15-47ea-a0aa-6e050f6d5676','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37372,157312,1,'2021-05-11 00:00:08','2021-05-11 00:00:08','39c1e91c-6c18-4b0f-ab61-115524d382cf','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37373,157315,1,'2021-05-11 00:00:08','2021-05-11 00:00:08','aa6fdd61-c4c7-4ba1-8fd5-3931134d6272','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37374,157317,1,'2021-05-11 00:00:08','2021-05-11 00:00:08','0ecb7c2e-b032-421b-b163-ab60694d2ec4','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37375,157319,1,'2021-05-11 00:00:08','2021-05-11 00:00:08','1689d785-a23b-40a6-afa4-76a081f1d833','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37376,157322,1,'2021-05-11 00:00:08','2021-05-11 00:00:08','55d4571c-dbd1-4d03-967f-05f2e6a60b31','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37377,157324,1,'2021-05-11 00:00:08','2021-05-11 00:00:08','f03cd008-f276-4f21-bf1f-5e0e618995f8','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37378,157326,1,'2021-05-11 00:00:08','2021-05-11 00:00:08','6927498d-56b1-487f-a60f-869093fe58f3','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37379,157329,1,'2021-05-11 00:00:08','2021-05-11 00:00:08','a9b6b0e2-8c7d-4e10-b84e-d0c61ef7862c','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37380,157330,1,'2021-05-11 00:00:08','2021-05-11 00:00:08','6b9d8daa-d104-48c5-bb84-60ba6f4834ff','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37381,157333,1,'2021-05-11 00:00:08','2021-05-11 00:00:08','93118303-df14-48c1-9bb1-27c4453dd104','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37382,157336,1,'2021-05-11 00:00:08','2021-05-11 00:00:08','b91b4a7c-f5ac-4f06-a4c9-52d6d9ec612d','Subscribe to updates',NULL,1,'solid'),(37383,157338,1,'2021-05-11 00:00:08','2021-05-11 00:00:08','91b9a157-145d-45d4-995c-4da01e79ef63','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37384,157339,1,'2021-05-11 00:00:08','2021-05-11 00:00:08','0f625658-8948-40e5-96a6-7315eefb14c1','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37385,157342,1,'2021-05-11 00:00:10','2021-05-11 00:00:10','db24d220-f2ec-4b76-8551-bfceff8c2564','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37386,157343,1,'2021-05-11 00:00:10','2021-05-11 00:00:10','d20c8c64-98a5-4925-ba44-0340e7430007','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37387,157346,1,'2021-05-11 00:00:10','2021-05-11 00:00:10','88854a5b-7a74-48f3-b0ab-d1781d84bad8','Phase 1B rollout FAQs',NULL,1,'solid'),(37388,157349,1,'2021-05-11 00:00:10','2021-05-11 00:00:10','476adfd3-ca0d-450b-a75c-ed5fa475e4ee','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37389,157355,1,'2021-05-11 00:00:10','2021-05-11 00:00:10','344312db-03f0-4277-a37f-0f5e058e8afb','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37390,157358,1,'2021-05-11 00:00:10','2021-05-11 00:00:10','7f15a21f-3db0-4023-8919-d21b75229277','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37391,157360,1,'2021-05-11 00:00:10','2021-05-11 00:00:10','1755ca77-ac1a-4b71-b8f5-074ae076e300','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37392,157362,1,'2021-05-11 00:00:10','2021-05-11 00:00:10','47649e56-2a6c-4357-bc78-97f25d68af6f','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37393,157365,1,'2021-05-11 00:00:10','2021-05-11 00:00:10','fc9c09ea-0ff8-4f9b-94f5-cdad4488ae28','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37394,157367,1,'2021-05-11 00:00:10','2021-05-11 00:00:10','9e460a80-c710-43bb-8c30-b59b5de3a97c','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37395,157369,1,'2021-05-11 00:00:10','2021-05-11 00:00:10','a52ffec6-5212-456c-ac2d-a8d1b2589953','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37396,157372,1,'2021-05-11 00:00:10','2021-05-11 00:00:10','f943d28e-b853-40dd-ae49-401f1fa0c7a6','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37397,157373,1,'2021-05-11 00:00:10','2021-05-11 00:00:10','2fe809b7-1453-4cf5-b3b6-c8444589b3e8','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37398,157376,1,'2021-05-11 00:00:10','2021-05-11 00:00:10','95a301c6-94e6-4a34-ac41-8da33b8a3b0d','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37399,157379,1,'2021-05-11 00:00:10','2021-05-11 00:00:10','9d4cc6c4-ebea-4ad3-a679-82a5447109b0','Subscribe to updates',NULL,1,'solid'),(37400,157381,1,'2021-05-11 00:00:10','2021-05-11 00:00:10','d3e3f673-badf-4e13-9592-756d67191e7d','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37401,157382,1,'2021-05-11 00:00:10','2021-05-11 00:00:10','d2ad042b-56b2-4fc0-9b90-87e3a5575221','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37402,157385,1,'2021-05-11 00:00:14','2021-05-11 00:00:14','689f627e-4e35-4be8-a82c-7abadf78aa1e','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37403,157386,1,'2021-05-11 00:00:14','2021-05-11 00:00:14','a5264e26-1c5e-4530-a2f1-641eb1d9b87f','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37404,157389,1,'2021-05-11 00:00:14','2021-05-11 00:00:14','430ce033-be3d-4ebd-8df6-916f40951bfc','Phase 1B rollout FAQs',NULL,1,'solid'),(37405,157392,1,'2021-05-11 00:00:14','2021-05-11 00:00:14','835eed2e-6636-43fa-b8fc-585f952366a2','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37406,157398,1,'2021-05-11 00:00:14','2021-05-11 00:00:14','e340059e-0b7c-43fc-985f-ff9e71dd7e2b','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37407,157401,1,'2021-05-11 00:00:14','2021-05-11 00:00:14','a14f13b9-04b6-4e3b-84c9-bffc2f14cd45','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37408,157403,1,'2021-05-11 00:00:14','2021-05-11 00:00:14','14868985-5d9d-4822-b23b-498ca602d85c','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37409,157405,1,'2021-05-11 00:00:14','2021-05-11 00:00:14','a165db9e-a54b-4688-a1cc-b7c33c0e1181','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37410,157408,1,'2021-05-11 00:00:14','2021-05-11 00:00:14','671a752b-b1b1-4088-84d3-45b39970ba7e','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37411,157410,1,'2021-05-11 00:00:14','2021-05-11 00:00:14','9a30eb24-b8cb-4ab9-b3f3-3b93d9bfd97c','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37412,157412,1,'2021-05-11 00:00:14','2021-05-11 00:00:14','8af23c60-7813-43d1-9fcd-e1329eee5104','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37413,157415,1,'2021-05-11 00:00:14','2021-05-11 00:00:14','dce0759b-21f7-4af6-96a2-23fbe1b9cab4','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37414,157416,1,'2021-05-11 00:00:14','2021-05-11 00:00:14','dba68535-91d1-471f-8c33-74d08ff1b7fa','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37415,157419,1,'2021-05-11 00:00:14','2021-05-11 00:00:14','6b294b23-ab9d-4aba-bd41-9f3965019ec6','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37416,157422,1,'2021-05-11 00:00:14','2021-05-11 00:00:14','204b8ef5-362e-43ec-bbf4-a4563303b456','Subscribe to updates',NULL,1,'solid'),(37417,157424,1,'2021-05-11 00:00:14','2021-05-11 00:00:14','56e96478-b936-4708-8ab8-6065c8f8df8b','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37418,157425,1,'2021-05-11 00:00:14','2021-05-11 00:00:14','8b608e56-c759-4242-947f-a5183c26cd47','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37419,157428,1,'2021-05-11 00:01:48','2021-05-11 00:01:48','30f5bbdb-6fd5-4617-a1fe-ada865b28d45','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37420,157429,1,'2021-05-11 00:01:48','2021-05-11 00:01:48','200451ba-6110-4e84-9577-4d59bc503c67','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37421,157432,1,'2021-05-11 00:01:48','2021-05-11 00:01:48','288cf236-0767-489c-89e0-f371d43aa580','Phase 1B rollout FAQs',NULL,1,'solid'),(37422,157435,1,'2021-05-11 00:01:48','2021-05-11 00:01:48','b53e402b-4085-43d5-8f90-433f03975370','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37423,157441,1,'2021-05-11 00:01:48','2021-05-11 00:01:48','fb9722b7-4fa3-4e56-a398-1254522d7166','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37424,157444,1,'2021-05-11 00:01:48','2021-05-11 00:01:48','cfc4eb73-39b1-4ddf-9531-eabfda8414d9','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37425,157446,1,'2021-05-11 00:01:48','2021-05-11 00:01:48','a986bba5-e85e-4a53-b63a-9298291f58ff','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37426,157448,1,'2021-05-11 00:01:48','2021-05-11 00:01:48','7deec15c-fe9b-4af1-8d9e-68c632ffdc91','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37427,157451,1,'2021-05-11 00:01:48','2021-05-11 00:01:48','9b52f85e-0d26-4ff4-abc8-37201d353eae','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37428,157453,1,'2021-05-11 00:01:48','2021-05-11 00:01:48','4c18e7f4-2aaf-4545-a5e4-a57630c83d0d','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37429,157455,1,'2021-05-11 00:01:48','2021-05-11 00:01:48','32868d21-e347-406d-8f69-74dba17eacee','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37430,157458,1,'2021-05-11 00:01:48','2021-05-11 00:01:48','b0eab996-36c7-4320-869a-bb76cb437a3e','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37431,157459,1,'2021-05-11 00:01:48','2021-05-11 00:01:48','8fd0ae9c-228d-49bc-8af0-21b8b137aca4','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37432,157462,1,'2021-05-11 00:01:48','2021-05-11 00:01:48','f7778766-b381-4ae2-8c10-4ad6f631dcb5','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37433,157465,1,'2021-05-11 00:01:48','2021-05-11 00:01:48','3bc91e26-12da-4f68-ba04-92e8506571d2','Subscribe to updates',NULL,1,'solid'),(37434,157467,1,'2021-05-11 00:01:48','2021-05-11 00:01:48','3099fb04-b0c1-4503-b597-604557ff6aab','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37435,157468,1,'2021-05-11 00:01:48','2021-05-11 00:01:48','92fd7714-2f5e-4bff-b3b1-a0e4bb6daab8','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37436,157471,1,'2021-05-11 00:03:44','2021-05-11 00:03:44','071d369d-c5a3-42e8-9233-0a4282454b6a','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37437,157472,1,'2021-05-11 00:03:44','2021-05-11 00:03:44','902821b4-0c4c-494a-a78a-1f8cd63a2222','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37438,157475,1,'2021-05-11 00:03:44','2021-05-11 00:03:44','dba27bd8-691f-49ec-a7cf-125f1a0287aa','Phase 1B rollout FAQs',NULL,1,'solid'),(37439,157478,1,'2021-05-11 00:03:44','2021-05-11 00:03:44','3ab7708a-9116-4b76-a390-5131f7372c38','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37440,157484,1,'2021-05-11 00:03:44','2021-05-11 00:03:44','935e5f35-b174-4f2c-9ada-1d9bb2781dd3','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37441,157487,1,'2021-05-11 00:03:44','2021-05-11 00:03:44','9351276b-e99a-48ac-a0c7-7f02ecc6586d','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37442,157489,1,'2021-05-11 00:03:44','2021-05-11 00:03:44','75463df4-445d-40fe-8afb-bcc8a5d049a7','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37443,157491,1,'2021-05-11 00:03:44','2021-05-11 00:03:44','f02aba17-fcfa-4130-95c3-774a28dcda36','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37444,157494,1,'2021-05-11 00:03:44','2021-05-11 00:03:44','513d9677-5595-4759-9693-449ddcb58b44','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37445,157496,1,'2021-05-11 00:03:44','2021-05-11 00:03:44','834ceb1a-230d-48f6-a376-29e405206832','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37446,157498,1,'2021-05-11 00:03:44','2021-05-11 00:03:44','6d84ad11-b5f6-4f37-90e0-1e4dc4fab7e8','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37447,157501,1,'2021-05-11 00:03:44','2021-05-11 00:03:44','90ecf3d7-84e5-4759-8eb6-cf295f04231e','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37448,157502,1,'2021-05-11 00:03:44','2021-05-11 00:03:44','f336c99e-5468-4450-8141-de4b0ca57550','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37449,157505,1,'2021-05-11 00:03:44','2021-05-11 00:03:44','87444cf6-1994-47d7-939f-f374d3885022','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37450,157508,1,'2021-05-11 00:03:44','2021-05-11 00:03:44','9636d2c1-97fa-4862-9c86-393cb180c6fd','Subscribe to updates',NULL,1,'solid'),(37451,157510,1,'2021-05-11 00:03:44','2021-05-11 00:03:44','833dc5d9-19e3-4d5f-9926-a59801549217','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37452,157511,1,'2021-05-11 00:03:44','2021-05-11 00:03:44','f41c6356-400d-45ac-9091-cc3d14ecec43','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37453,157514,1,'2021-05-11 00:03:50','2021-05-11 00:03:50','10b5007b-c434-455d-a946-f74d8cc420fe','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37454,157515,1,'2021-05-11 00:03:50','2021-05-11 00:03:50','e8eab188-1ee7-4736-a7ae-229db72e9050','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37455,157518,1,'2021-05-11 00:03:50','2021-05-11 00:03:50','d5413f66-d25e-43c6-b08b-8ffec345fdfc','Phase 1B rollout FAQs',NULL,1,'solid'),(37456,157521,1,'2021-05-11 00:03:50','2021-05-11 00:03:50','b22b2bd9-8387-464f-bcbf-563a9d732aad','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37457,157527,1,'2021-05-11 00:03:50','2021-05-11 00:03:50','448cb807-182d-4577-ad51-b562cbb64d21','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37458,157530,1,'2021-05-11 00:03:50','2021-05-11 00:03:50','33f3e220-55e0-4fba-9d37-b40af5be3e6d','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37459,157532,1,'2021-05-11 00:03:50','2021-05-11 00:03:50','9a4d71c4-146e-40ce-9cc5-607add4c0cd8','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37460,157534,1,'2021-05-11 00:03:50','2021-05-11 00:03:50','37ec4772-b421-4fc7-8e56-d6c948f19afa','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37461,157537,1,'2021-05-11 00:03:50','2021-05-11 00:03:50','a7e7f72b-54af-4ee7-932b-4de7c7492aa2','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37462,157539,1,'2021-05-11 00:03:50','2021-05-11 00:03:50','285d4ed7-35b0-4c62-addd-61a4e08fbd72','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37463,157541,1,'2021-05-11 00:03:51','2021-05-11 00:03:51','2fda6ebe-352f-4ba3-afad-d6f06f5c2de1','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37464,157544,1,'2021-05-11 00:03:51','2021-05-11 00:03:51','8d0a52f7-3124-43ce-b4d0-184b89fdd6a1','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37465,157545,1,'2021-05-11 00:03:51','2021-05-11 00:03:51','c031cab3-c7f3-44d6-9417-53272c8f671b','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37466,157548,1,'2021-05-11 00:03:51','2021-05-11 00:03:51','59f88e06-ea9d-4cf3-913b-9f9a226c113b','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37467,157551,1,'2021-05-11 00:03:51','2021-05-11 00:03:51','8a6da4c4-3a8d-4909-9180-7dbe491b1034','Subscribe to updates',NULL,1,'solid'),(37468,157553,1,'2021-05-11 00:03:51','2021-05-11 00:03:51','dbbe115e-ea06-450f-aee2-434c9a290e23','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37469,157554,1,'2021-05-11 00:03:51','2021-05-11 00:03:51','2b929c32-707b-42f0-84cd-3ef7a3517a0a','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37470,157557,1,'2021-05-11 00:04:11','2021-05-11 00:04:11','90326192-09be-49ca-963e-97c9c2390557','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37471,157558,1,'2021-05-11 00:04:11','2021-05-11 00:04:11','caeec149-5ede-4fbd-a2e1-da5e6b511ef9','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37472,157561,1,'2021-05-11 00:04:11','2021-05-11 00:04:11','8fd3cd09-80c3-4bcf-98fd-f01dde104717','Phase 1B rollout FAQs',NULL,1,'solid'),(37473,157564,1,'2021-05-11 00:04:12','2021-05-11 00:04:12','65eaa24f-1d0a-46a8-b1db-f4c9c5287b93','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37474,157570,1,'2021-05-11 00:04:12','2021-05-11 00:04:12','9ce0da67-302a-44e5-b932-8115cef7c340','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37475,157573,1,'2021-05-11 00:04:12','2021-05-11 00:04:12','b3bf18f1-352d-407b-bb12-9e9f7f43da85','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37476,157575,1,'2021-05-11 00:04:12','2021-05-11 00:04:12','1a6f38d7-fbd0-46fd-b1bf-5d4b983d9474','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37477,157577,1,'2021-05-11 00:04:12','2021-05-11 00:04:12','dfec10cd-c1d7-4955-98df-9d0e5e8153b3','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37478,157580,1,'2021-05-11 00:04:12','2021-05-11 00:04:12','7f831258-6631-4eaf-84f1-9e5705daccc1','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37479,157582,1,'2021-05-11 00:04:12','2021-05-11 00:04:12','281839f8-add1-4d9d-b255-4ef749f22346','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37480,157584,1,'2021-05-11 00:04:12','2021-05-11 00:04:12','f197c023-089c-4f66-9769-c7408c359609','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37481,157587,1,'2021-05-11 00:04:12','2021-05-11 00:04:12','975e2b32-6564-4acc-9c53-bdae1c11050d','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37482,157588,1,'2021-05-11 00:04:12','2021-05-11 00:04:12','83d646f1-ab49-4d16-ac5e-c10761658139','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37483,157591,1,'2021-05-11 00:04:12','2021-05-11 00:04:12','508648a4-44a3-44b3-bb8e-6747037e171a','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37484,157594,1,'2021-05-11 00:04:12','2021-05-11 00:04:12','2c420b52-d968-44bf-913c-d56a38c334a3','Subscribe to updates',NULL,1,'solid'),(37485,157596,1,'2021-05-11 00:04:12','2021-05-11 00:04:12','659bcae1-e721-4ea0-945b-1bbafff7b06f','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37486,157597,1,'2021-05-11 00:04:12','2021-05-11 00:04:12','1844f89b-d637-49d3-be9b-7fb0ce608bbc','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37487,157600,1,'2021-05-11 00:04:18','2021-05-11 00:04:18','1db3dad5-5310-40be-bd5f-64327d82a50e','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37488,157601,1,'2021-05-11 00:04:18','2021-05-11 00:04:18','d4a6fb3d-8600-431c-b959-0fea8bfb41eb','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37489,157604,1,'2021-05-11 00:04:18','2021-05-11 00:04:18','6e82d790-cfbd-4679-ba07-c930ee336bbf','Phase 1B rollout FAQs',NULL,1,'solid'),(37490,157607,1,'2021-05-11 00:04:18','2021-05-11 00:04:18','65436cc5-760a-42d4-aefe-ee636aec86cb','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37491,157613,1,'2021-05-11 00:04:18','2021-05-11 00:04:18','60776b89-fbb0-4fea-89f1-c8981df3a66d','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37492,157616,1,'2021-05-11 00:04:18','2021-05-11 00:04:18','59ac65ed-8224-493d-bd80-dd71aacf6df1','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37493,157618,1,'2021-05-11 00:04:18','2021-05-11 00:04:18','88bfc627-a394-4dbc-99b7-92f220780e2f','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37494,157620,1,'2021-05-11 00:04:18','2021-05-11 00:04:18','521ddd23-b091-4e51-94d4-cafdb77dfeef','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37495,157623,1,'2021-05-11 00:04:18','2021-05-11 00:04:18','e0c59ac5-1966-47d2-a920-d01d814a055e','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37496,157625,1,'2021-05-11 00:04:18','2021-05-11 00:04:18','3d283b1c-263b-4da0-abb3-90dfc3d72899','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37497,157627,1,'2021-05-11 00:04:18','2021-05-11 00:04:18','1266ba49-10db-4de3-8ffd-0e70a503d79c','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37498,157630,1,'2021-05-11 00:04:18','2021-05-11 00:04:18','02a00764-f3c8-42d8-a0dd-1667dddc43b9','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37499,157631,1,'2021-05-11 00:04:18','2021-05-11 00:04:18','2ee2b0ea-22dc-44cf-8435-b563d9af238d','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37500,157634,1,'2021-05-11 00:04:18','2021-05-11 00:04:18','9692ecb3-cda7-4cb7-8c80-9be6234d2c19','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37501,157637,1,'2021-05-11 00:04:18','2021-05-11 00:04:18','8bdd7b1a-ce86-4733-8d89-0e38035f5bac','Subscribe to updates',NULL,1,'solid'),(37502,157639,1,'2021-05-11 00:04:18','2021-05-11 00:04:18','6b38ff36-128d-4388-9a92-7bd25108dda6','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37503,157640,1,'2021-05-11 00:04:18','2021-05-11 00:04:18','b0aba904-6783-4ef8-a704-db0811e6440b','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37504,157652,1,'2021-05-11 01:16:14','2021-05-11 01:16:14','55eecfe2-70ea-439d-928e-3947e903373f','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37505,157653,1,'2021-05-11 01:16:14','2021-05-11 01:16:14','82c9b27a-a766-49ab-b4eb-150f97bfb9f5','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37506,157656,1,'2021-05-11 01:16:14','2021-05-11 01:16:14','5154ab44-ecf8-4ae2-8e1f-3b219ff1489a','Phase 1B rollout FAQs',NULL,1,'solid'),(37507,157659,1,'2021-05-11 01:16:14','2021-05-11 01:16:14','fb25bc86-8771-4ba2-b050-328b478868e4','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37508,157665,1,'2021-05-11 01:16:14','2021-05-11 01:16:14','ad1d6e25-74bb-4a27-9554-721c304a9344','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37509,157668,1,'2021-05-11 01:16:14','2021-05-11 01:16:14','a2f59d11-6092-4231-9f9c-a5296edc3129','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37510,157670,1,'2021-05-11 01:16:14','2021-05-11 01:16:14','5f6796ba-1077-4ff3-95b8-753a19924e70','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37511,157672,1,'2021-05-11 01:16:14','2021-05-11 01:16:14','c09e4370-1be7-4f76-ac23-7b301cb30d41','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37512,157675,1,'2021-05-11 01:16:14','2021-05-11 01:16:14','a16b3836-846c-46ea-a8ac-bc616be75767','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37513,157677,1,'2021-05-11 01:16:14','2021-05-11 01:16:14','a866d0aa-c8ec-4039-b931-8babdc372b05','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37514,157679,1,'2021-05-11 01:16:14','2021-05-11 01:16:14','f07c91ce-b1f8-4d05-98dd-a647c6c693cd','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37515,157682,1,'2021-05-11 01:16:14','2021-05-11 01:16:14','6c7f7456-8503-44a5-a66e-7726c3cda31c','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37516,157683,1,'2021-05-11 01:16:14','2021-05-11 01:16:14','fe0454c5-ca4e-42ed-be0a-91e5664d6eed','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37517,157686,1,'2021-05-11 01:16:14','2021-05-11 01:16:14','2085f018-2c36-4316-add1-86cd59b0c40b','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37518,157689,1,'2021-05-11 01:16:14','2021-05-11 01:16:14','aa8273d3-1410-4eb6-86af-566ffb8de753','Subscribe to updates',NULL,1,'solid'),(37519,157691,1,'2021-05-11 01:16:14','2021-05-11 01:16:14','fe31b31c-ef51-4e5f-8443-e57ffabef214','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37520,157692,1,'2021-05-11 01:16:14','2021-05-11 01:16:14','871c59f5-b6d4-4114-b59a-277bd4ea556e','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37521,157695,1,'2021-05-11 01:17:30','2021-05-11 01:17:30','5e90fee3-fc7a-4c6e-a90c-acab84b00e7b','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37522,157696,1,'2021-05-11 01:17:30','2021-05-11 01:17:30','9100ccb6-3155-4181-a61f-d327ef2e38cb','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37523,157699,1,'2021-05-11 01:17:30','2021-05-11 01:17:30','8e82b7af-f0e2-4484-9e31-b5186e5a6834','Phase 1B rollout FAQs',NULL,1,'solid'),(37524,157702,1,'2021-05-11 01:17:30','2021-05-11 01:17:30','26670a8b-df59-46ef-89eb-e503cc434a2a','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37525,157708,1,'2021-05-11 01:17:30','2021-05-11 01:17:30','2dd4d333-514c-4283-a43d-84126198486e','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37526,157711,1,'2021-05-11 01:17:30','2021-05-11 01:17:30','02c7f7f6-583b-4e67-a08c-f43f30145f2e','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37527,157713,1,'2021-05-11 01:17:30','2021-05-11 01:17:30','a1b7cc10-f09a-46c2-a39b-3e3cdfe9bd39','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37528,157715,1,'2021-05-11 01:17:30','2021-05-11 01:17:30','a04feeac-0ff1-4278-8800-ff7135055f43','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37529,157718,1,'2021-05-11 01:17:30','2021-05-11 01:17:30','566c028b-131e-492d-ae6d-b75b3459691a','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37530,157720,1,'2021-05-11 01:17:30','2021-05-11 01:17:30','c83abe8c-3322-41aa-9f5f-41e075492474','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37531,157722,1,'2021-05-11 01:17:30','2021-05-11 01:17:30','b5fd3b53-1a61-468e-ad73-aec673cf3ae8','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37532,157725,1,'2021-05-11 01:17:30','2021-05-11 01:17:30','545df6de-94f7-485e-9526-fe5fb4827157','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37533,157726,1,'2021-05-11 01:17:30','2021-05-11 01:17:30','e42c5ea8-db4a-414e-9eee-4c7462196745','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37534,157729,1,'2021-05-11 01:17:30','2021-05-11 01:17:30','e039d415-235d-49d9-ba29-fbde29aa178f','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37535,157732,1,'2021-05-11 01:17:30','2021-05-11 01:17:30','d96e2da8-0af4-4e1c-aebd-1789b53d6a81','Subscribe to updates',NULL,1,'solid'),(37536,157734,1,'2021-05-11 01:17:30','2021-05-11 01:17:30','94e295be-770d-40b1-9019-f8cc1d811767','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37537,157735,1,'2021-05-11 01:17:30','2021-05-11 01:17:30','9293daf8-14df-440a-9df9-7f1f0a54755c','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37538,157738,1,'2021-05-11 01:17:44','2021-05-11 01:17:44','59867064-0543-4752-82b0-a6239adc1a35','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37539,157739,1,'2021-05-11 01:17:44','2021-05-11 01:17:44','ad1ece81-7b18-4ef0-bfe2-16a3803882f8','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37540,157742,1,'2021-05-11 01:17:44','2021-05-11 01:17:44','0782746f-6476-4b13-99d8-ee913d918b2a','Phase 1B rollout FAQs',NULL,1,'solid'),(37541,157745,1,'2021-05-11 01:17:44','2021-05-11 01:17:44','9885f770-be38-49a8-a7e4-3988f3f9e010','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37542,157751,1,'2021-05-11 01:17:44','2021-05-11 01:17:44','cea15687-35fc-4d7c-a4e4-382a884fe3e1','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37543,157754,1,'2021-05-11 01:17:44','2021-05-11 01:17:44','fba1e778-c09c-43e7-9d1f-86f0390afde2','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37544,157756,1,'2021-05-11 01:17:44','2021-05-11 01:17:44','5b12a730-4503-4df0-9505-70fa4c3c5eac','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37545,157758,1,'2021-05-11 01:17:44','2021-05-11 01:17:44','d7c152e4-0aa6-48b1-af62-1d5981d9f598','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37546,157761,1,'2021-05-11 01:17:44','2021-05-11 01:17:44','19341ed0-e763-4bd2-ac82-65cf696cb661','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37547,157763,1,'2021-05-11 01:17:44','2021-05-11 01:17:44','807413e1-77bd-4e27-b8d5-8b7ceb3fa7c8','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37548,157765,1,'2021-05-11 01:17:44','2021-05-11 01:17:44','d1c21f9e-a71a-4c85-8f54-d96d08609d2a','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37549,157768,1,'2021-05-11 01:17:44','2021-05-11 01:17:44','b5aebc01-1783-4bb6-9dac-38b800a5836a','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37550,157769,1,'2021-05-11 01:17:44','2021-05-11 01:17:44','bc0b1345-af46-4dbd-bdc1-f246bc8ef8b8','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37551,157772,1,'2021-05-11 01:17:44','2021-05-11 01:17:44','a7f6ea4a-04c8-4cf6-904d-6917aa509631','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37552,157775,1,'2021-05-11 01:17:44','2021-05-11 01:17:44','a3ce0dd2-e09e-46c6-875b-030217ae0712','Subscribe to updates',NULL,1,'solid'),(37553,157777,1,'2021-05-11 01:17:44','2021-05-11 01:17:44','a1a01cb5-eeba-4b6e-a599-8e92f363e7ff','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37554,157778,1,'2021-05-11 01:17:44','2021-05-11 01:17:44','5af6402c-85a7-4cfd-9b08-423f90b6dc55','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37555,157781,1,'2021-05-11 01:21:28','2021-05-11 01:21:28','7ea333d9-6383-4938-8f90-1db678f2c0d3','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37556,157782,1,'2021-05-11 01:21:28','2021-05-11 01:21:28','f1f8db54-38e2-4b4d-a27b-fba6e79a0789','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37557,157785,1,'2021-05-11 01:21:28','2021-05-11 01:21:28','37f40811-d7ab-42da-aca9-817ba6e42848','Phase 1B rollout FAQs',NULL,1,'solid'),(37558,157788,1,'2021-05-11 01:21:28','2021-05-11 01:21:28','5ecb57ec-8508-4ee7-abed-da2a22b139b8','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37559,157794,1,'2021-05-11 01:21:28','2021-05-11 01:21:28','6884dd55-6de0-4eb5-8a78-d1ede3468e81','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37560,157797,1,'2021-05-11 01:21:28','2021-05-11 01:21:28','ecb2e112-864b-48d4-bd8c-d2130516405c','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37561,157799,1,'2021-05-11 01:21:28','2021-05-11 01:21:28','6aa3c713-2274-40a3-9c0b-e62b845a58a8','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37562,157801,1,'2021-05-11 01:21:28','2021-05-11 01:21:28','87dc463a-c133-4bf3-987e-e5091c6b2bcd','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37563,157804,1,'2021-05-11 01:21:28','2021-05-11 01:21:28','bd397ed8-d1a7-4dd2-86e9-ad82cf803689','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37564,157806,1,'2021-05-11 01:21:28','2021-05-11 01:21:28','a08e039d-60fb-4efe-953e-aec52191937d','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37565,157808,1,'2021-05-11 01:21:28','2021-05-11 01:21:28','2950a2d4-b20b-47d8-96d6-fd609267e795','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37566,157811,1,'2021-05-11 01:21:28','2021-05-11 01:21:28','1f8520e2-57dd-4441-8085-4a1ea1037059','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37567,157812,1,'2021-05-11 01:21:28','2021-05-11 01:21:28','a8147df6-5854-477c-92d1-03015de1ed1e','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37568,157815,1,'2021-05-11 01:21:28','2021-05-11 01:21:28','d0976e0a-aa77-48d6-9639-7e67ea95416e','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37569,157818,1,'2021-05-11 01:21:28','2021-05-11 01:21:28','bb128a06-fbf9-40b2-b095-0bdd81695697','Subscribe to updates',NULL,1,'solid'),(37570,157820,1,'2021-05-11 01:21:29','2021-05-11 01:21:29','cd9db64f-be9c-4c4d-8703-f68887ef5738','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37571,157821,1,'2021-05-11 01:21:29','2021-05-11 01:21:29','ce6450db-bb7a-458a-ab02-f1572c10a964','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37572,157824,1,'2021-05-11 01:22:03','2021-05-11 01:22:03','03c5918e-7580-48ea-83f6-47171d320ce2','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37573,157825,1,'2021-05-11 01:22:03','2021-05-11 01:22:03','0a306637-4a5e-4119-9500-70f3e94b7d65','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37574,157828,1,'2021-05-11 01:22:03','2021-05-11 01:22:03','b3abd902-b27f-43b2-a688-7cadc3cddd5a','Phase 1B rollout FAQs',NULL,1,'solid'),(37575,157831,1,'2021-05-11 01:22:03','2021-05-11 01:22:03','083ffb19-da73-4e7a-adfd-a024e306aa63','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37576,157837,1,'2021-05-11 01:22:03','2021-05-11 01:22:03','00b76854-2a18-4680-9f79-e039aa8c929f','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37577,157840,1,'2021-05-11 01:22:03','2021-05-11 01:22:03','4f6910b7-24de-4e05-a954-e7c492b53c32','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37578,157842,1,'2021-05-11 01:22:03','2021-05-11 01:22:03','550aca6c-c08e-47cb-8ec2-9851539514f9','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37579,157844,1,'2021-05-11 01:22:03','2021-05-11 01:22:03','16016b39-aa25-4637-9837-b9295ff6aeed','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37580,157847,1,'2021-05-11 01:22:03','2021-05-11 01:22:03','8bd09487-f3ca-4261-8eac-b6cc9cbd4de7','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37581,157849,1,'2021-05-11 01:22:03','2021-05-11 01:22:03','eef04905-195f-4c09-ae5b-9f406883e4f2','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37582,157851,1,'2021-05-11 01:22:03','2021-05-11 01:22:03','a0dc7f47-485a-4024-ac60-5753dc33e09b','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37583,157854,1,'2021-05-11 01:22:03','2021-05-11 01:22:03','c2100865-34f0-4e5f-bb5e-62d589c0b871','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37584,157855,1,'2021-05-11 01:22:03','2021-05-11 01:22:03','37b99e85-48b1-4bf8-b52e-9571551392fd','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37585,157858,1,'2021-05-11 01:22:03','2021-05-11 01:22:03','b66dc10b-83ba-4df2-8f91-87e9dc15e1a8','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37586,157861,1,'2021-05-11 01:22:03','2021-05-11 01:22:03','3db9a6f1-e972-4aff-b10a-6cd7e4f7d3ca','Subscribe to updates',NULL,1,'solid'),(37587,157863,1,'2021-05-11 01:22:03','2021-05-11 01:22:03','152c0481-0fe4-4997-9601-17139641c291','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37588,157864,1,'2021-05-11 01:22:03','2021-05-11 01:22:03','9824b02f-80b0-4aca-8c1e-4482222fc8d5','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37589,157867,1,'2021-05-11 01:22:18','2021-05-11 01:22:18','e686555e-7ce7-4456-b89f-1eed50eac271','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37590,157868,1,'2021-05-11 01:22:18','2021-05-11 01:22:18','92d37553-91f8-4523-9ab4-863c17994ff4','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37591,157871,1,'2021-05-11 01:22:18','2021-05-11 01:22:18','9fad11f3-e2de-4ddd-85b9-7deebb59ad5c','Phase 1B rollout FAQs',NULL,1,'solid'),(37592,157874,1,'2021-05-11 01:22:18','2021-05-11 01:22:18','52f5b1d2-0b55-449b-9fdc-f3a0f28a96b4','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37593,157880,1,'2021-05-11 01:22:18','2021-05-11 01:22:18','c9acebec-84f5-4cee-995e-8a40a1c6d631','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37594,157883,1,'2021-05-11 01:22:18','2021-05-11 01:22:18','7f362a6d-f630-468f-ae5e-ab1d6a2f09c5','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37595,157885,1,'2021-05-11 01:22:18','2021-05-11 01:22:18','c342d7f3-dbab-4028-b598-56b3c946c1cc','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37596,157887,1,'2021-05-11 01:22:18','2021-05-11 01:22:18','b20fbf34-6090-4510-8c6b-f92866213f49','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37597,157890,1,'2021-05-11 01:22:18','2021-05-11 01:22:18','8a31f658-eda7-4ca8-b40d-33908c24cbce','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37598,157892,1,'2021-05-11 01:22:18','2021-05-11 01:22:18','4d3249b0-f335-47da-a826-c787dd410ea9','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37599,157894,1,'2021-05-11 01:22:18','2021-05-11 01:22:18','8c107d08-28d4-4eb3-bb43-8d222c0ecb3f','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37600,157897,1,'2021-05-11 01:22:18','2021-05-11 01:22:18','7260f1c3-7215-4e92-abc5-ba54dd2d1c1f','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37601,157898,1,'2021-05-11 01:22:18','2021-05-11 01:22:18','1db78170-854b-46cd-966b-ef66609758e7','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37602,157901,1,'2021-05-11 01:22:18','2021-05-11 01:22:18','7ea5f3da-f807-4370-b731-4085a414384f','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37603,157904,1,'2021-05-11 01:22:18','2021-05-11 01:22:18','3d6c0d69-f2ae-4bfa-bd6f-82d2443a48d8','Subscribe to updates',NULL,1,'solid'),(37604,157906,1,'2021-05-11 01:22:18','2021-05-11 01:22:18','e6932595-f6c7-44f7-a8f5-6b45b6695f5c','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37605,157907,1,'2021-05-11 01:22:18','2021-05-11 01:22:18','d3916c4f-40d3-43c9-bcc9-1a2191b9d4c9','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37606,157910,1,'2021-05-11 01:23:44','2021-05-11 01:23:44','699663fd-c346-4546-b6eb-fbd752a04421','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37607,157911,1,'2021-05-11 01:23:44','2021-05-11 01:23:44','49700037-548c-4113-83be-e7b8216dd526','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37608,157914,1,'2021-05-11 01:23:44','2021-05-11 01:23:44','259d2268-0f8c-477e-8112-86dcc67a82c7','Phase 1B rollout FAQs',NULL,1,'solid'),(37609,157917,1,'2021-05-11 01:23:44','2021-05-11 01:23:44','04c40ca6-b49e-4b38-a8ea-be56f57d046c','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37610,157923,1,'2021-05-11 01:23:44','2021-05-11 01:23:44','ff47e8f1-4199-4314-a034-9d2c0d1e5db5','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37611,157926,1,'2021-05-11 01:23:44','2021-05-11 01:23:44','70bd4e75-8176-4bf6-a7a3-fde655036b09','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37612,157928,1,'2021-05-11 01:23:44','2021-05-11 01:23:44','4b34597c-b516-4886-87ae-e29291fe91d1','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37613,157930,1,'2021-05-11 01:23:44','2021-05-11 01:23:44','26585645-9b76-480c-bda8-e4da82c1fc4d','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37614,157933,1,'2021-05-11 01:23:44','2021-05-11 01:23:44','872ca075-8fd7-46be-b845-2b50bc9ba9b8','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37615,157935,1,'2021-05-11 01:23:44','2021-05-11 01:23:44','24efe89f-5801-4ec5-94b9-ac0c73118589','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37616,157937,1,'2021-05-11 01:23:45','2021-05-11 01:23:45','d2083d86-9ebe-469e-84cc-e90d02b06517','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37617,157940,1,'2021-05-11 01:23:45','2021-05-11 01:23:45','bbbf43e0-2e80-4ba0-9445-4b3b58e7430f','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37618,157941,1,'2021-05-11 01:23:45','2021-05-11 01:23:45','fde0e124-7e88-443a-ae1e-4e2cbb19654b','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37619,157944,1,'2021-05-11 01:23:45','2021-05-11 01:23:45','e9fbeeb2-987a-4690-a813-5d4494a99410','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37620,157947,1,'2021-05-11 01:23:45','2021-05-11 01:23:45','392c33dc-7cb8-4abe-8c68-292d4c0242e3','Subscribe to updates',NULL,1,'solid'),(37621,157949,1,'2021-05-11 01:23:45','2021-05-11 01:23:45','eea04a20-9561-4d24-9807-50cdbf45e253','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37622,157950,1,'2021-05-11 01:23:45','2021-05-11 01:23:45','4ed8ecb6-d17e-429c-8d06-0949760624de','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37623,157953,1,'2021-05-11 01:24:11','2021-05-11 01:24:11','306e4d9f-2210-410b-9a44-dc09779b454a','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37624,157954,1,'2021-05-11 01:24:11','2021-05-11 01:24:11','f23c2f43-04f4-467a-98d6-2778e71fc2b4','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37625,157957,1,'2021-05-11 01:24:12','2021-05-11 01:24:12','0925def2-351c-4fc7-a9bd-49117c7308fc','Phase 1B rollout FAQs',NULL,1,'solid'),(37626,157960,1,'2021-05-11 01:24:12','2021-05-11 01:24:12','846a10cc-b414-47ea-9546-84aac83bfe19','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37627,157966,1,'2021-05-11 01:24:12','2021-05-11 01:24:12','61507648-ff87-4dd3-b0b1-f035a82c3a42','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37628,157969,1,'2021-05-11 01:24:12','2021-05-11 01:24:12','ef61c706-267e-4e81-b795-3a66cb66a51a','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37629,157971,1,'2021-05-11 01:24:12','2021-05-11 01:24:12','e229292a-ed2f-4d5a-9a1f-26a307eaefaf','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37630,157973,1,'2021-05-11 01:24:12','2021-05-11 01:24:12','a1ca39d8-a46a-48c6-8534-498454c01b55','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37631,157976,1,'2021-05-11 01:24:12','2021-05-11 01:24:12','8bbfe04c-2c73-4a15-9a2a-8abe2aaff7ca','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37632,157978,1,'2021-05-11 01:24:12','2021-05-11 01:24:12','03c20516-c49e-4c9a-a87b-992355b2d51e','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37633,157980,1,'2021-05-11 01:24:12','2021-05-11 01:24:12','26ed9fc9-a3e5-4973-917f-eae6e193d2b7','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37634,157983,1,'2021-05-11 01:24:12','2021-05-11 01:24:12','daceaf37-d827-4d8f-8968-6d210c88aef4','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37635,157984,1,'2021-05-11 01:24:12','2021-05-11 01:24:12','6176c6df-af83-4394-96d7-69ccfb0dabf5','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37636,157987,1,'2021-05-11 01:24:12','2021-05-11 01:24:12','107898a7-cdd9-4e2f-bb39-000ea7817756','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37637,157990,1,'2021-05-11 01:24:12','2021-05-11 01:24:12','e0c60cff-1adc-4e33-aa19-b321c8395eec','Subscribe to updates',NULL,1,'solid'),(37638,157992,1,'2021-05-11 01:24:12','2021-05-11 01:24:12','61730056-b308-4b10-8811-6d96a3129d64','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37639,157993,1,'2021-05-11 01:24:12','2021-05-11 01:24:12','0ce1f270-160d-4cad-870a-1bee750027f2','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37640,157996,1,'2021-05-11 01:24:21','2021-05-11 01:24:21','82fd9a2f-3c72-4c4a-8098-82c477fb3ba3','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37641,157997,1,'2021-05-11 01:24:21','2021-05-11 01:24:21','1974e50c-722d-4453-960f-7ddf56f71347','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37642,158000,1,'2021-05-11 01:24:21','2021-05-11 01:24:21','9b73c5a1-5257-417c-ac8e-1bb1d1fa3260','Phase 1B rollout FAQs',NULL,1,'solid'),(37643,158003,1,'2021-05-11 01:24:21','2021-05-11 01:24:21','1a0ce7ba-0a95-4f2e-b310-9c172b8edd0e','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37644,158009,1,'2021-05-11 01:24:21','2021-05-11 01:24:21','cb45b47e-9533-462a-bbf0-6716be174b07','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37645,158012,1,'2021-05-11 01:24:21','2021-05-11 01:24:21','017f5d4c-1dec-470f-97a2-cc5b9745f543','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37646,158014,1,'2021-05-11 01:24:21','2021-05-11 01:24:21','e8f61af7-048f-4868-ac39-d94fe0ee24aa','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37647,158016,1,'2021-05-11 01:24:21','2021-05-11 01:24:21','1ec2f626-0063-45ab-acb4-c053b0b0e74b','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37648,158019,1,'2021-05-11 01:24:21','2021-05-11 01:24:21','91452a73-2f44-4d00-b5e1-fb60146b492d','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37649,158021,1,'2021-05-11 01:24:21','2021-05-11 01:24:21','f8fcc695-207f-44a2-b58e-2dbad796c569','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37650,158023,1,'2021-05-11 01:24:21','2021-05-11 01:24:21','ced519d1-c9d7-495e-b933-09bc315ce6cc','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37651,158026,1,'2021-05-11 01:24:21','2021-05-11 01:24:21','c02eb1f3-ecfc-443c-ae24-70e004566b59','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37652,158027,1,'2021-05-11 01:24:21','2021-05-11 01:24:21','5d79f0f9-7ee7-404c-b508-9120c6974698','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37653,158030,1,'2021-05-11 01:24:21','2021-05-11 01:24:21','eaf47abc-9ba7-4dce-b69a-882de4074192','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37654,158033,1,'2021-05-11 01:24:21','2021-05-11 01:24:21','08a9feed-5398-4f55-8897-38a0432e813b','Subscribe to updates',NULL,1,'solid'),(37655,158035,1,'2021-05-11 01:24:21','2021-05-11 01:24:21','f2511a62-7947-419e-adc6-3d7617a00a34','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37656,158036,1,'2021-05-11 01:24:21','2021-05-11 01:24:21','cd8cd9fd-bf96-43be-ac65-5464ba1ec48e','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37657,158039,1,'2021-05-11 01:24:49','2021-05-11 01:24:49','fe218a73-d766-44b7-8fe1-49ba799623c4','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37658,158040,1,'2021-05-11 01:24:49','2021-05-11 01:24:49','a44d86c5-62e2-4f92-bbcc-1b385466d11a','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37659,158043,1,'2021-05-11 01:24:49','2021-05-11 01:24:49','caf50a0c-f501-4cef-b339-fbba78022271','Phase 1B rollout FAQs',NULL,1,'solid'),(37660,158046,1,'2021-05-11 01:24:49','2021-05-11 01:24:49','afb3dce9-d720-4416-b801-0d91145c54b6','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37661,158052,1,'2021-05-11 01:24:49','2021-05-11 01:24:49','e30df4cb-deb1-440c-80cc-03336afe6687','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37662,158055,1,'2021-05-11 01:24:49','2021-05-11 01:24:49','d5c23149-0acb-4e9a-ace7-72031a33e83b','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37663,158057,1,'2021-05-11 01:24:49','2021-05-11 01:24:49','37200db1-b366-4962-8d23-a2f19f473615','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37664,158059,1,'2021-05-11 01:24:49','2021-05-11 01:24:49','21ed985b-0845-41a8-b46b-0c1bc9d75916','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37665,158062,1,'2021-05-11 01:24:49','2021-05-11 01:24:49','f7bfee1d-dd6a-42de-8535-99258744a588','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37666,158064,1,'2021-05-11 01:24:49','2021-05-11 01:24:49','d3e552e3-7c81-4d21-a9e5-45697c964792','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37667,158066,1,'2021-05-11 01:24:49','2021-05-11 01:24:49','063860ef-0cee-4da4-bcaa-c473d0fce7df','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37668,158069,1,'2021-05-11 01:24:49','2021-05-11 01:24:49','9ba4e5da-49e2-4abf-9d94-ce1b0f1e9ea6','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37669,158070,1,'2021-05-11 01:24:49','2021-05-11 01:24:49','0d61223a-ae2e-4e95-917d-fc240a33a19b','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37670,158073,1,'2021-05-11 01:24:49','2021-05-11 01:24:49','37917ebf-455a-4d0e-a364-ebdabb91b52c','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37671,158076,1,'2021-05-11 01:24:49','2021-05-11 01:24:49','58c6c27e-6ce2-4979-be07-65f90204a6d1','Subscribe to updates',NULL,1,'solid'),(37672,158078,1,'2021-05-11 01:24:49','2021-05-11 01:24:49','c8397881-ebe7-4f8d-bea8-4d8b82153226','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37673,158079,1,'2021-05-11 01:24:49','2021-05-11 01:24:49','005eb2ca-0277-47a6-8561-3c22c0a9953d','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37674,158082,1,'2021-05-11 01:25:28','2021-05-11 01:25:28','bf1b356e-6593-4fbe-bf75-9170a906bda7','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37675,158083,1,'2021-05-11 01:25:28','2021-05-11 01:25:28','9bf53d72-72f9-4cfb-8d5b-9b60646ce00c','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37676,158086,1,'2021-05-11 01:25:28','2021-05-11 01:25:28','1e5367c1-02f1-4f24-ac0a-658f2d4f160c','Phase 1B rollout FAQs',NULL,1,'solid'),(37677,158089,1,'2021-05-11 01:25:28','2021-05-11 01:25:28','77313108-e3e5-4c9f-a9e9-72c79b8d4c40','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37678,158095,1,'2021-05-11 01:25:28','2021-05-11 01:25:28','1056c90a-eb2d-4354-bb69-d4d66d9ff22e','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37679,158098,1,'2021-05-11 01:25:28','2021-05-11 01:25:28','c26ff616-539a-4588-8d08-3aa31ff5dc06','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37680,158100,1,'2021-05-11 01:25:28','2021-05-11 01:25:28','313beebf-c7b3-4fde-9820-2f7a957b5609','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37681,158102,1,'2021-05-11 01:25:28','2021-05-11 01:25:28','f634c150-2da8-4f74-8a68-9d549d90a16d','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37682,158105,1,'2021-05-11 01:25:28','2021-05-11 01:25:28','dcea3ceb-a5c2-43a1-adaf-63bc118c893a','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37683,158107,1,'2021-05-11 01:25:28','2021-05-11 01:25:28','6dcc86b4-af17-467e-bbb4-9ad55d8c2deb','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37684,158109,1,'2021-05-11 01:25:28','2021-05-11 01:25:28','648490ab-5b84-4275-8c3a-82b4162c47ed','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37685,158112,1,'2021-05-11 01:25:28','2021-05-11 01:25:28','a94aa3c7-bdac-4945-a362-3249d193e820','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37686,158113,1,'2021-05-11 01:25:28','2021-05-11 01:25:28','248fbf27-ab91-4439-b38e-7aae90d93868','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37687,158116,1,'2021-05-11 01:25:29','2021-05-11 01:25:29','2f5c54e2-45aa-4da7-abe9-974490218387','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37688,158119,1,'2021-05-11 01:25:29','2021-05-11 01:25:29','c3eefbda-5a79-410a-8af6-129f4c2cb0db','Subscribe to updates',NULL,1,'solid'),(37689,158121,1,'2021-05-11 01:25:29','2021-05-11 01:25:29','6866a46e-a2e0-40e8-be45-b06e7586c1c8','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37690,158122,1,'2021-05-11 01:25:29','2021-05-11 01:25:29','e7ac517f-4e6c-4986-aefe-17d12a087d6a','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37691,158128,1,'2021-05-11 01:28:07','2021-05-11 01:28:07','355c6e0c-8df6-481b-84fe-fc9e9fc8fb7b','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37692,158129,1,'2021-05-11 01:28:07','2021-05-11 01:28:07','4e61a93c-4a6a-4424-b7e3-c5fbeedb01be','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37693,158132,1,'2021-05-11 01:28:07','2021-05-11 01:28:07','cde11eaa-3515-4ca1-8951-35e8c072a993','Phase 1B rollout FAQs',NULL,1,'solid'),(37694,158135,1,'2021-05-11 01:28:07','2021-05-11 01:28:07','d8719ae8-9ae6-4aee-bc6e-f7d23b7780ab','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37695,158141,1,'2021-05-11 01:28:07','2021-05-11 01:28:07','d8e32d73-4e44-4588-aea5-ef987eae5911','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37696,158144,1,'2021-05-11 01:28:07','2021-05-11 01:28:07','3223c2d7-bb3c-47af-97a4-2ff969323294','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37697,158146,1,'2021-05-11 01:28:07','2021-05-11 01:28:07','fd5b6995-4266-4d9e-93e4-1ecafe97effb','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37698,158148,1,'2021-05-11 01:28:07','2021-05-11 01:28:07','431630ef-d777-441a-8bc7-dc04908685be','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37699,158151,1,'2021-05-11 01:28:07','2021-05-11 01:28:07','cf20f1ca-4edc-479d-b1bc-bda97bd6e8d2','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37700,158153,1,'2021-05-11 01:28:07','2021-05-11 01:28:07','f7ed56bc-0171-4ee4-853f-3ab27611c49d','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37701,158155,1,'2021-05-11 01:28:07','2021-05-11 01:28:07','5ac1b5cd-372b-437b-9b5c-eb8e35d569d0','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37702,158158,1,'2021-05-11 01:28:07','2021-05-11 01:28:07','afd24dec-1919-49a9-b0da-a7874b07725b','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37703,158159,1,'2021-05-11 01:28:07','2021-05-11 01:28:07','3988480d-77d8-418a-a3d9-59891f8b69d3','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37704,158162,1,'2021-05-11 01:28:07','2021-05-11 01:28:07','8b1aecaa-0155-4467-b732-e0c9c498b4fd','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37705,158165,1,'2021-05-11 01:28:07','2021-05-11 01:28:07','e9ac5ebd-ea31-43be-8637-fb08a0e34d43','Subscribe to updates',NULL,1,'solid'),(37706,158167,1,'2021-05-11 01:28:07','2021-05-11 01:28:07','37908052-812b-4ca2-9b2d-1d966c6e1082','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37707,158168,1,'2021-05-11 01:28:07','2021-05-11 01:28:07','0c7bf460-638c-40fc-9f56-9fd935ba080b','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37708,158172,1,'2021-05-11 01:33:04','2021-05-11 01:37:29','e4bb0e8a-35b4-416b-a8dd-0a32a7a610d6','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(37709,158173,1,'2021-05-11 01:33:04','2021-05-11 01:37:29','d67755a0-dc4a-4c1a-9f57-3bd322850c26','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(37710,158174,1,'2021-05-11 01:33:04','2021-05-11 01:37:29','b197413b-2bfd-47b5-8a08-3be9afc0013a','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(37711,158175,1,'2021-05-11 01:33:04','2021-05-11 01:37:29','59a5f68c-2861-44d1-9bd9-95c1b54d9915','Vaccine rollout data','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/australias-covid-19-vaccine-rollout',1,'solid'),(37712,158178,1,'2021-05-11 01:33:04','2021-05-11 01:37:29','400349cf-572d-4308-8a7e-98604dc00996','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(37713,158179,1,'2021-05-11 01:33:04','2021-05-11 01:37:29','98fedd63-85a7-4bad-80cc-0efe176a2471','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(37714,158180,1,'2021-05-11 01:33:04','2021-05-11 01:37:29','d9604d13-e705-4308-a7da-7624f2a6865e','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(37715,158181,1,'2021-05-11 01:33:04','2021-05-11 01:37:29','ca95dced-7822-4939-90cb-8bec38f703bf','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(37716,158184,1,'2021-05-11 01:33:04','2021-05-11 01:37:29','7aa3bc64-bcfd-4558-941f-5f75f50eff20','ATAGI statement - 8 April','https://www.health.gov.au/news/atagi-statement-on-astrazeneca-vaccine-in-response-to-new-vaccine-safety-concerns',1,'solid'),(37717,158185,1,'2021-05-11 01:33:04','2021-05-11 01:37:29','dbad7274-8d9c-4eb7-b91e-6a8458cfe53f','ATAGI statement - 23 April','https://www.health.gov.au/news/atagi-reinforce-recommendations-on-use-of-covid-19-vaccines-following-review-of-vaccine-safety-data-and-benefits',1,'solid'),(37718,158186,1,'2021-05-11 01:33:04','2021-05-11 01:37:30','96e8efc4-d24f-4be5-a99f-38154d093b0b','Chief Medical Officer\'s response to ATAGI advice','https://www.health.gov.au/news/response-latest-atagi-advice',1,'solid'),(37719,158193,1,'2021-05-11 01:33:04','2021-05-11 01:37:31','f61899e8-92a4-478c-ab67-8e591c7cdbc9','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(37720,158196,1,'2021-05-11 01:33:04','2021-05-11 01:37:31','4ce817b0-c71e-4619-a2ff-74dfd3831b48','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(37721,158197,1,'2021-05-11 01:33:04','2021-05-11 01:37:31','180d6abb-e53d-46ec-9f72-aab5aff44848','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(37722,158198,1,'2021-05-11 01:33:04','2021-05-11 01:37:31','86707a71-c481-4be8-a30c-8ab059e92a34','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(37723,158199,1,'2021-05-11 01:33:04','2021-05-11 01:37:31','aef23178-a7b5-4d01-b8aa-13b86b73fc9c','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(37724,158200,1,'2021-05-11 01:33:04','2021-05-11 01:37:31','8c33a192-0344-4455-88f5-c65e25532408','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(37725,158206,1,'2021-05-11 01:33:04','2021-05-11 01:37:31','c2664f0e-27d6-4be7-bb9f-8773aa9364f6','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(37726,158207,1,'2021-05-11 01:33:04','2021-05-11 01:37:31','ba8e8037-8c87-4dcf-b96d-924bd3e965a0','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(37727,158208,1,'2021-05-11 01:33:04','2021-05-11 01:37:31','df7991c6-6ff9-4e80-8573-5d72ed90f7ff','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(37728,158213,1,'2021-05-11 01:38:25','2021-05-11 01:38:25','deb4fd39-12f5-4f1b-b931-3cab7d30d6c2','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37729,158214,1,'2021-05-11 01:38:25','2021-05-11 01:38:25','484e3228-7a44-484a-bb73-ba3257de9eb2','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37730,158217,1,'2021-05-11 01:38:25','2021-05-11 01:38:25','9e508795-b0f5-4daa-9c14-dff49f7d5d12','Phase 1B rollout FAQs',NULL,1,'solid'),(37731,158220,1,'2021-05-11 01:38:25','2021-05-11 01:38:25','020fed64-ce2d-4d09-95d0-ac54cb28c945','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37732,158226,1,'2021-05-11 01:38:25','2021-05-11 01:38:25','3fa9247b-92ce-49ac-9b38-7880e8814f46','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37733,158229,1,'2021-05-11 01:38:25','2021-05-11 01:38:25','befcd0da-8ebc-42e1-a71c-68aece9cf89f','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37734,158231,1,'2021-05-11 01:38:25','2021-05-11 01:38:25','c3889d50-cf83-4b22-a669-ea2642a691df','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37735,158233,1,'2021-05-11 01:38:25','2021-05-11 01:38:25','b379736f-5f02-4976-8c3c-dce2aea7167e','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37736,158236,1,'2021-05-11 01:38:25','2021-05-11 01:38:25','3b42e593-88de-42fe-8976-71de1423c963','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37737,158238,1,'2021-05-11 01:38:25','2021-05-11 01:38:25','5970b72f-d07a-4723-a01c-3578ba1e2c13','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37738,158240,1,'2021-05-11 01:38:25','2021-05-11 01:38:25','4432b423-d8dc-4eaf-a0eb-74be74fd6b44','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37739,158243,1,'2021-05-11 01:38:25','2021-05-11 01:38:25','d722aa9f-5c59-41a9-ba60-daa243a38b82','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37740,158244,1,'2021-05-11 01:38:25','2021-05-11 01:38:25','f0f54057-11bc-46d6-99ae-6aaa740437bf','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37741,158247,1,'2021-05-11 01:38:26','2021-05-11 01:38:26','1e458783-1f90-4616-a24c-24319145c594','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37742,158250,1,'2021-05-11 01:38:26','2021-05-11 01:38:26','88659e83-937b-44b1-b721-98949057ea4e','Subscribe to updates',NULL,1,'solid'),(37743,158252,1,'2021-05-11 01:38:26','2021-05-11 01:38:26','d5482ff9-7b14-4467-b360-bf950ea752da','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37744,158253,1,'2021-05-11 01:38:26','2021-05-11 01:38:26','7efa90ea-112f-4891-9dff-ecfbc73f1b25','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37745,158257,1,'2021-05-11 01:38:39','2021-05-11 01:38:39','88928e4d-e522-4349-ae13-6294e275e239','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37746,158258,1,'2021-05-11 01:38:39','2021-05-11 01:38:39','1f1350d8-a467-47cb-ac40-bd4769c44c54','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37747,158261,1,'2021-05-11 01:38:39','2021-05-11 01:38:39','8aa8dd0c-c967-4e13-beba-9c852aa041d7','Phase 1B rollout FAQs',NULL,1,'solid'),(37748,158264,1,'2021-05-11 01:38:39','2021-05-11 01:38:39','9120926a-55a1-4a83-956f-4eb07669c4e5','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37749,158270,1,'2021-05-11 01:38:39','2021-05-11 01:38:39','7fbf41a1-fbd6-407c-9b82-6fd841b96af0','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37750,158273,1,'2021-05-11 01:38:39','2021-05-11 01:38:39','fe317200-5b48-4b37-bc54-bcc151d743c4','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37751,158275,1,'2021-05-11 01:38:39','2021-05-11 01:38:39','b59afc0b-b9e0-447f-9afd-50ae73a60177','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37752,158277,1,'2021-05-11 01:38:39','2021-05-11 01:38:39','0d955ff1-9188-46ad-8d53-81bd41309797','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37753,158280,1,'2021-05-11 01:38:40','2021-05-11 01:38:40','183ae2e6-78c4-498b-86fd-2674dbf71613','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37754,158282,1,'2021-05-11 01:38:40','2021-05-11 01:38:40','4c5dff11-6158-4935-bfdd-c06737f7dacc','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37755,158284,1,'2021-05-11 01:38:40','2021-05-11 01:38:40','2784e6af-9bf3-4238-8a81-0147fb85ba0c','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37756,158287,1,'2021-05-11 01:38:40','2021-05-11 01:38:40','870e57b7-4b8b-43f0-9db7-5adb1a557fbc','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37757,158288,1,'2021-05-11 01:38:40','2021-05-11 01:38:40','c2b3e814-0bf5-44d2-8a0c-d7ad7842bf58','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37758,158291,1,'2021-05-11 01:38:40','2021-05-11 01:38:40','dcf332a0-d910-4a1a-8d47-217973b53d56','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37759,158294,1,'2021-05-11 01:38:40','2021-05-11 01:38:40','6e838979-6a99-40c1-8c86-d5230d8dba7f','Subscribe to updates',NULL,1,'solid'),(37760,158296,1,'2021-05-11 01:38:40','2021-05-11 01:38:40','911000a5-e995-4b6b-9d38-8a1ded871831','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37761,158297,1,'2021-05-11 01:38:40','2021-05-11 01:38:40','c4ebc2a6-400e-40d9-ba48-ce0ba42f15f4','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37762,158300,1,'2021-05-11 01:38:44','2021-05-11 01:38:44','4884f8f8-cad2-4539-a544-e6feee785d60',NULL,NULL,0,'solid'),(37763,158302,1,'2021-05-11 01:38:44','2021-05-11 01:38:44','fcc1e2dc-e7e7-4f05-888d-0f10c5f64362','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37764,158303,1,'2021-05-11 01:38:44','2021-05-11 01:38:44','10f096a6-3c89-4dd1-b3f1-172de37e6141','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37765,158306,1,'2021-05-11 01:38:44','2021-05-11 01:38:44','c11658ce-acb2-4cd8-a52f-6ba0a29b3454','Phase 1B rollout FAQs',NULL,1,'solid'),(37766,158309,1,'2021-05-11 01:38:44','2021-05-11 01:38:44','a1714b51-aa72-4e40-989d-d05b4e1af7ed','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37767,158315,1,'2021-05-11 01:38:44','2021-05-11 01:38:44','bfa21e57-c8b0-45a5-bcff-041cfb4ce4fb','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37768,158318,1,'2021-05-11 01:38:44','2021-05-11 01:38:44','e5013187-e3f0-47ac-bc0b-7391f9428394','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37769,158320,1,'2021-05-11 01:38:44','2021-05-11 01:38:44','9f163826-fe47-4ae1-8989-f21e559c314b','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37770,158322,1,'2021-05-11 01:38:44','2021-05-11 01:38:44','8282bff0-d062-45b4-b125-c76391ede52e','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37771,158325,1,'2021-05-11 01:38:44','2021-05-11 01:38:44','1a7f4138-a324-446d-aee8-a3b670f5ca63','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37772,158327,1,'2021-05-11 01:38:44','2021-05-11 01:38:44','e98672bb-bb2f-47e0-b221-2ca000ab09ca','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37773,158329,1,'2021-05-11 01:38:44','2021-05-11 01:38:44','07b3eeff-8193-4c08-bd7a-06288842a986','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37774,158332,1,'2021-05-11 01:38:44','2021-05-11 01:38:44','651962fa-054c-444d-be8d-8de1efeb1747','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37775,158333,1,'2021-05-11 01:38:44','2021-05-11 01:38:44','8af1a4e2-9593-47f2-bfb3-930242b89f23','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37776,158336,1,'2021-05-11 01:38:44','2021-05-11 01:38:44','087298b8-a5ec-4a53-8922-c6683d442e3a','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37777,158339,1,'2021-05-11 01:38:44','2021-05-11 01:38:44','1eea4c0b-a6bb-456b-9e89-5190df9a2866','Subscribe to updates',NULL,1,'solid'),(37778,158341,1,'2021-05-11 01:38:44','2021-05-11 01:38:44','645101da-c313-4e48-b08c-e41a3199856d','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37779,158342,1,'2021-05-11 01:38:44','2021-05-11 01:38:44','959fa736-20e3-46c7-bff4-36e7e9b3334b','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37780,158345,1,'2021-05-11 01:38:56','2021-05-11 01:38:56','28987132-06f7-4f31-bc67-338738c84715','Check now',NULL,0,'solid'),(37781,158347,1,'2021-05-11 01:38:56','2021-05-11 01:38:56','2e5cb84d-b03b-4699-83c2-2db247b27a25','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37782,158348,1,'2021-05-11 01:38:56','2021-05-11 01:38:56','423c8a2e-2127-4609-95db-d9156fe42704','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37783,158351,1,'2021-05-11 01:38:56','2021-05-11 01:38:56','a5b1b790-daca-4480-b0f9-1fe4fa5bc1d3','Phase 1B rollout FAQs',NULL,1,'solid'),(37784,158354,1,'2021-05-11 01:38:57','2021-05-11 01:38:57','df9f1f13-cbcf-48e8-a059-8973aeb44212','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37785,158360,1,'2021-05-11 01:38:57','2021-05-11 01:38:57','e96fa71a-b5fe-4375-87d6-5ce05d1756b1','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37786,158363,1,'2021-05-11 01:38:57','2021-05-11 01:38:57','5c27c123-bf44-4102-af42-1ab165dd8461','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37787,158365,1,'2021-05-11 01:38:57','2021-05-11 01:38:57','ff8f4e89-1dbd-403f-af04-c516bd4bad4d','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37788,158367,1,'2021-05-11 01:38:57','2021-05-11 01:38:57','e3cc6088-0f8b-4ae0-8daa-34cbe058fbdb','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37789,158370,1,'2021-05-11 01:38:57','2021-05-11 01:38:57','251a8c7b-46a2-4ea2-a48a-7ecddcdfd277','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37790,158372,1,'2021-05-11 01:38:57','2021-05-11 01:38:57','5617d860-7f13-4ac3-995b-66d907e3b787','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37791,158374,1,'2021-05-11 01:38:57','2021-05-11 01:38:57','758b7849-b115-412b-898f-dba731d547d2','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37792,158377,1,'2021-05-11 01:38:57','2021-05-11 01:38:57','205226c8-6858-483d-a739-ece7277c73ef','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37793,158378,1,'2021-05-11 01:38:57','2021-05-11 01:38:57','ad8aa2c0-8043-44d3-9b27-d373fddd5744','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37794,158381,1,'2021-05-11 01:38:57','2021-05-11 01:38:57','5186bfef-9745-4a41-bda0-7c1afe3aa6d9','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37795,158384,1,'2021-05-11 01:38:57','2021-05-11 01:38:57','456679e7-db9f-40e3-93ec-f92b55c7163d','Subscribe to updates',NULL,1,'solid'),(37796,158386,1,'2021-05-11 01:38:57','2021-05-11 01:38:57','9099e8ae-38dd-41eb-896e-8c0bbfca4eb0','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37797,158387,1,'2021-05-11 01:38:57','2021-05-11 01:38:57','5004797d-cc75-47a5-b414-e2ea90ddb0e5','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37798,158390,1,'2021-05-11 01:39:06','2021-05-11 01:39:06','01e8152f-56a5-4c9e-a2e9-da7588ba4888','Check now','https://covid-vaccine.healthdirect.gov.au/eligibility',0,'solid'),(37799,158392,1,'2021-05-11 01:39:06','2021-05-11 01:39:06','57894bae-7fb9-4459-81e0-160765405b70','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37800,158393,1,'2021-05-11 01:39:06','2021-05-11 01:39:06','7c9e18ee-bc5e-48a1-a3a0-603a6c958cb1','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37801,158396,1,'2021-05-11 01:39:06','2021-05-11 01:39:06','f37b9eff-dd48-4b7b-87ff-29bbf80ecab0','Phase 1B rollout FAQs',NULL,1,'solid'),(37802,158399,1,'2021-05-11 01:39:06','2021-05-11 01:39:06','f0db1aa6-8c35-440a-a00b-fdd3d33f35e9','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37803,158405,1,'2021-05-11 01:39:07','2021-05-11 01:39:07','99254c24-3f9b-4fe2-8b71-927c16557fda','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37804,158408,1,'2021-05-11 01:39:07','2021-05-11 01:39:07','292e99ce-949b-471e-b72f-d8494f6d9ef6','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37805,158410,1,'2021-05-11 01:39:07','2021-05-11 01:39:07','cf085588-0a8f-4310-b052-bbb3e5f77c46','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37806,158412,1,'2021-05-11 01:39:07','2021-05-11 01:39:07','edd5a8d1-8ef0-4bba-b9fe-7bb1e3da7ccc','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37807,158415,1,'2021-05-11 01:39:07','2021-05-11 01:39:07','27faf850-bcba-4d32-bb03-17784b4e7339','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37808,158417,1,'2021-05-11 01:39:07','2021-05-11 01:39:07','6937bbac-2cf9-4d7c-8a6e-3278698d85dd','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37809,158419,1,'2021-05-11 01:39:07','2021-05-11 01:39:07','062d43aa-3170-4405-97db-06985c6c9c5c','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37810,158422,1,'2021-05-11 01:39:07','2021-05-11 01:39:07','77eda8c4-bb3a-4a88-9ba5-d3d1e5380bf1','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37811,158423,1,'2021-05-11 01:39:07','2021-05-11 01:39:07','c6da86d2-06a2-4388-b2e4-5878cd154416','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37812,158426,1,'2021-05-11 01:39:07','2021-05-11 01:39:07','5b3c0ef6-f7e9-43d4-979f-5d1c1aa4f02e','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37813,158429,1,'2021-05-11 01:39:07','2021-05-11 01:39:07','ec5fca45-0947-4e80-9f93-8b342b77f23c','Subscribe to updates',NULL,1,'solid'),(37814,158431,1,'2021-05-11 01:39:07','2021-05-11 01:39:07','88ccee35-2ba3-41c1-be14-ce2a423bf4c5','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37815,158432,1,'2021-05-11 01:39:07','2021-05-11 01:39:07','bb0a333f-7ba8-4341-a992-dc0e2fef8a02','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37816,158435,1,'2021-05-11 01:40:05','2021-05-11 01:40:05','d3051176-c4ce-401c-bc60-834944a0f6e2','Check now','https://covid-vaccine.healthdirect.gov.au/eligibility',0,'solid'),(37817,158437,1,'2021-05-11 01:40:05','2021-05-11 01:40:05','47bc2c3d-86c3-4d10-a1ec-1fc86396867b','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37818,158438,1,'2021-05-11 01:40:05','2021-05-11 01:40:05','f1051553-28f6-4e25-9309-7c74dd96fc0d','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37819,158441,1,'2021-05-11 01:40:05','2021-05-11 01:40:05','d5fbf8c7-97c9-47ad-900f-7ff531c0e300','Phase 1B rollout FAQs',NULL,1,'solid'),(37820,158444,1,'2021-05-11 01:40:05','2021-05-11 01:40:05','4594f03a-2287-42a1-8477-d9b8f2039817','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37821,158450,1,'2021-05-11 01:40:05','2021-05-11 01:40:05','45626b50-ca8d-41e0-900e-6f08ac92e02e','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37822,158453,1,'2021-05-11 01:40:05','2021-05-11 01:40:05','9f8fa064-f4a8-4223-a0fa-e360220084ae','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37823,158455,1,'2021-05-11 01:40:05','2021-05-11 01:40:05','b804f595-8ea8-49fd-bab3-469bcddcef5c','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37824,158457,1,'2021-05-11 01:40:05','2021-05-11 01:40:05','1d11670e-c14a-4e75-a232-5e393ef64c0b','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37825,158460,1,'2021-05-11 01:40:05','2021-05-11 01:40:05','2a76842e-b057-478c-8c4e-903ce3c3ffa2','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37826,158462,1,'2021-05-11 01:40:05','2021-05-11 01:40:05','0fe6f766-2c08-4afa-a631-8ec9b8b3f720','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37827,158464,1,'2021-05-11 01:40:05','2021-05-11 01:40:05','d47d40d4-4e25-470a-8cf1-f2ad3089f4a3','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37828,158467,1,'2021-05-11 01:40:05','2021-05-11 01:40:05','3447f59f-633a-4abf-b95c-6939957e6d8f','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37829,158468,1,'2021-05-11 01:40:05','2021-05-11 01:40:05','f9115aed-3157-46e8-831e-951c22728609','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37830,158471,1,'2021-05-11 01:40:05','2021-05-11 01:40:05','ce483dec-58d4-4a32-8cbc-d1b38fd2faea','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37831,158474,1,'2021-05-11 01:40:05','2021-05-11 01:40:05','00e3b46c-857a-48fa-a7d9-0465e6e91315','Subscribe to updates',NULL,1,'solid'),(37832,158476,1,'2021-05-11 01:40:05','2021-05-11 01:40:05','22fdfeb3-e2e4-49e7-a972-a11600625bcb','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37833,158477,1,'2021-05-11 01:40:05','2021-05-11 01:40:05','b462c198-205e-405d-9d9f-17b2828efd76','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37834,158480,1,'2021-05-11 01:42:36','2021-05-11 01:42:36','178e215f-dcc1-4530-bab7-e6a694d8b5a6','Check now','https://covid-vaccine.healthdirect.gov.au/eligibility',0,'solid'),(37835,158482,1,'2021-05-11 01:42:37','2021-05-11 01:42:37','34868d0b-90fc-4ec9-9b87-b0844c64be57','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37836,158483,1,'2021-05-11 01:42:37','2021-05-11 01:42:37','273ced67-d010-4111-9136-847a476c96a2','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37837,158486,1,'2021-05-11 01:42:37','2021-05-11 01:42:37','6da831a9-a9c0-446b-a8dc-8bd2a55e858e','Phase 1B rollout FAQs',NULL,1,'solid'),(37838,158489,1,'2021-05-11 01:42:37','2021-05-11 01:42:37','776bedd4-6674-4b3e-b164-3eb922c7658f','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37839,158495,1,'2021-05-11 01:42:37','2021-05-11 01:42:37','0f52d159-30af-4a18-8add-fe9f075ca860','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37840,158498,1,'2021-05-11 01:42:37','2021-05-11 01:42:37','bc9b39e1-5d5e-4627-aa97-0d72623bf950','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37841,158500,1,'2021-05-11 01:42:37','2021-05-11 01:42:37','3ff906c0-42de-46e0-8d3c-a2caa2cabac6','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37842,158502,1,'2021-05-11 01:42:37','2021-05-11 01:42:37','6178e13a-9b89-4c42-ac92-347f42c7434d','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37843,158505,1,'2021-05-11 01:42:37','2021-05-11 01:42:37','ae4f0eb7-7961-46a8-ae3e-3789631fcb6f','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37844,158507,1,'2021-05-11 01:42:37','2021-05-11 01:42:37','30936bad-b682-43a6-aa68-9346ee208427','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37845,158509,1,'2021-05-11 01:42:37','2021-05-11 01:42:37','11a75fce-fb14-4409-9f16-49fff68b5137','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37846,158512,1,'2021-05-11 01:42:37','2021-05-11 01:42:37','23e84b0e-c9fb-4c78-aec5-350bc4534051','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37847,158513,1,'2021-05-11 01:42:37','2021-05-11 01:42:37','03e65888-8244-4dd5-9c01-656e91a4ae9e','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37848,158516,1,'2021-05-11 01:42:37','2021-05-11 01:42:37','e1256c57-27e3-4dd0-8801-bf9a922466a2','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37849,158519,1,'2021-05-11 01:42:37','2021-05-11 01:42:37','bde3cd54-98d4-4117-9c9c-6375b1c6faaa','Subscribe to updates',NULL,1,'solid'),(37850,158521,1,'2021-05-11 01:42:37','2021-05-11 01:42:37','48d7c1ed-8ea3-4540-9704-da2aa7454145','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37851,158522,1,'2021-05-11 01:42:37','2021-05-11 01:42:37','93425966-dad3-4da9-bea2-53b68e689a46','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37852,158526,1,'2021-05-11 01:42:38','2021-05-11 01:42:38','8f650f6f-20dc-4bf9-9bbb-741f890aecc1','Check now','https://covid-vaccine.healthdirect.gov.au/eligibility',0,'solid'),(37853,158528,1,'2021-05-11 01:42:38','2021-05-11 01:42:38','e740d5f1-0e18-4393-9b5c-e1b51ffcfbce','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37854,158529,1,'2021-05-11 01:42:38','2021-05-11 01:42:38','480f04b3-967b-460e-bcd4-fd765c270b93','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37855,158532,1,'2021-05-11 01:42:38','2021-05-11 01:42:38','dda68c0b-2db4-44da-9baa-9c0da264ece9','Phase 1B rollout FAQs',NULL,1,'solid'),(37856,158535,1,'2021-05-11 01:42:38','2021-05-11 01:42:38','ea90ebac-3db7-478b-a92d-3fd9b98fb7c8','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37857,158541,1,'2021-05-11 01:42:39','2021-05-11 01:42:39','9c235ded-922f-4f73-b220-6b01871cf88d','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37858,158544,1,'2021-05-11 01:42:39','2021-05-11 01:42:39','ab136b09-e749-4273-8b16-363ffa89c443','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37859,158546,1,'2021-05-11 01:42:39','2021-05-11 01:42:39','394f425d-6a00-4789-8ebe-51f40271490f','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37860,158548,1,'2021-05-11 01:42:39','2021-05-11 01:42:39','61999a8e-3204-4ca8-80ad-9ae503c01825','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37861,158551,1,'2021-05-11 01:42:39','2021-05-11 01:42:39','ba05d88f-a9d3-4a10-adf2-79929606e867','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37862,158553,1,'2021-05-11 01:42:39','2021-05-11 01:42:39','d11abd58-d989-4a8e-94cf-a39570da8907','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37863,158555,1,'2021-05-11 01:42:39','2021-05-11 01:42:39','be3cdb3f-4c81-4455-978b-0cc4bd0fe623','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37864,158558,1,'2021-05-11 01:42:39','2021-05-11 01:42:39','e057015c-ce1d-48f6-a503-13aeff4cdd2e','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37865,158559,1,'2021-05-11 01:42:39','2021-05-11 01:42:39','c1adc3a1-033e-47a9-99fe-5f78c6a77eb0','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37866,158562,1,'2021-05-11 01:42:39','2021-05-11 01:42:39','fed81f77-6b47-408d-a451-71361f5c21b1','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37867,158565,1,'2021-05-11 01:42:39','2021-05-11 01:42:39','8e66286b-fc29-49c0-940c-c885aaa94d29','Subscribe to updates',NULL,1,'solid'),(37868,158567,1,'2021-05-11 01:42:39','2021-05-11 01:42:39','6c15e3ed-434c-421b-98f4-eb31c2d840d6','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37869,158568,1,'2021-05-11 01:42:39','2021-05-11 01:42:39','e0aac81f-d618-4913-a969-f9ba4c970587','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37870,158572,1,'2021-05-11 01:42:46','2021-05-11 01:42:46','51558473-65eb-4889-bf5a-3550af945171','Check now','https://covid-vaccine.healthdirect.gov.au/eligibility',0,'solid'),(37871,158574,1,'2021-05-11 01:42:46','2021-05-11 01:42:46','fcb6f6d1-8936-4fad-9792-bb44199eae93','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37872,158575,1,'2021-05-11 01:42:46','2021-05-11 01:42:46','1b746372-8d17-430a-9989-57327b154eda','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37873,158578,1,'2021-05-11 01:42:46','2021-05-11 01:42:46','d29ebbe4-9524-4be9-b51a-671a68f09dd9','Phase 1B rollout FAQs',NULL,1,'solid'),(37874,158581,1,'2021-05-11 01:42:46','2021-05-11 01:42:46','8013f31c-bf6f-44eb-ae06-4c2ca7ce2b3f','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37875,158587,1,'2021-05-11 01:42:46','2021-05-11 01:42:46','74101d82-4ab8-49db-a206-ef6f27dc0093','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37876,158590,1,'2021-05-11 01:42:46','2021-05-11 01:42:46','39ed5d34-e751-4cba-9abc-b7e80bf75e2f','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37877,158592,1,'2021-05-11 01:42:46','2021-05-11 01:42:46','d1be73b0-f979-4729-8dc2-e5f2e9193bf8','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37878,158594,1,'2021-05-11 01:42:46','2021-05-11 01:42:46','afb5fee1-ebd6-474c-91ba-b1e0147a6a2c','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37879,158597,1,'2021-05-11 01:42:46','2021-05-11 01:42:46','51a7fc37-fd84-4c5e-a457-62c488b2c2ac','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37880,158599,1,'2021-05-11 01:42:47','2021-05-11 01:42:47','3e3935fe-652f-40dd-a8b0-c17ee6efc521','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37881,158601,1,'2021-05-11 01:42:47','2021-05-11 01:42:47','03ab39ba-8ea1-4dc7-b1b7-7ec7b92dfb5d','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37882,158604,1,'2021-05-11 01:42:47','2021-05-11 01:42:47','28b279bd-95f1-481c-b238-f4cf66494fae','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37883,158605,1,'2021-05-11 01:42:47','2021-05-11 01:42:47','d28089db-12f5-498f-9232-0c844a0067d7','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37884,158608,1,'2021-05-11 01:42:47','2021-05-11 01:42:47','93cf9803-14cb-4a97-9727-5c19af199deb','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37885,158611,1,'2021-05-11 01:42:47','2021-05-11 01:42:47','4419791a-dfe7-405a-83af-f9a413ccfb29','Subscribe to updates',NULL,1,'solid'),(37886,158613,1,'2021-05-11 01:42:47','2021-05-11 01:42:47','b279ad3d-a1f2-4008-9b19-3e11b04e225a','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37887,158614,1,'2021-05-11 01:42:47','2021-05-11 01:42:47','24a939c5-423a-4dcd-a67c-890c644a17b1','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37888,158618,1,'2021-05-11 01:43:36','2021-05-11 01:45:22','4cce82a2-6fee-4972-a23a-2858d348fceb','Check now','https://covid-vaccine.healthdirect.gov.au/eligibility',0,'solid'),(37889,158620,1,'2021-05-11 01:43:36','2021-05-11 01:49:42','c3b834f9-a0d2-4a09-ae5c-4f942aa17325','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37890,158621,1,'2021-05-11 01:43:36','2021-05-11 01:49:42','e9fa31f4-ece0-4038-bb0c-7a69603d0ab5','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37891,158624,1,'2021-05-11 01:43:36','2021-05-11 01:49:42','34425775-7647-43ff-b275-c3d1a7b99213','Phase 1B rollout FAQs',NULL,1,'solid'),(37892,158627,1,'2021-05-11 01:43:36','2021-05-11 01:49:42','3d3a2a85-6030-446e-9e1b-d7d73c8499e5','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37893,158633,1,'2021-05-11 01:43:36','2021-05-11 01:49:42','7524749a-8bbb-410f-9cf3-ed1ba1c0a3e9','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37894,158636,1,'2021-05-11 01:43:36','2021-05-11 01:49:42','ff376e52-19f1-4c22-b4cd-d7dcf9336350','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37895,158638,1,'2021-05-11 01:43:36','2021-05-11 01:49:42','e1f03d03-589a-43ac-912f-b7bcbd5ae101','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37896,158640,1,'2021-05-11 01:43:36','2021-05-11 01:49:42','c8749d4b-a79b-486b-a7f3-5e262cef8fc4','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37897,158643,1,'2021-05-11 01:43:36','2021-05-11 01:49:42','4f618a79-abbb-40b5-bdee-29efff68f662','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37898,158645,1,'2021-05-11 01:43:36','2021-05-11 01:49:42','daa98a80-9248-4e68-9044-c9b2286b476f','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37899,158647,1,'2021-05-11 01:43:36','2021-05-11 01:49:42','acb0d3c8-159a-4158-8f69-b0f697423d45','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37900,158650,1,'2021-05-11 01:43:36','2021-05-11 01:49:42','85f02891-0d44-4b56-8f49-a0ccf1d43e1c','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37901,158651,1,'2021-05-11 01:43:36','2021-05-11 01:49:42','c771b61f-76ea-48e4-b133-166011dac12f','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37902,158654,1,'2021-05-11 01:43:36','2021-05-11 01:49:42','a351cbd4-5bdc-4115-aeb5-33515785c9b5','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37903,158657,1,'2021-05-11 01:43:36','2021-05-11 01:49:42','83fd0eb6-a277-49a4-bcb3-373a7f2f87b5','Subscribe to updates',NULL,1,'solid'),(37904,158659,1,'2021-05-11 01:43:36','2021-05-11 01:49:42','e48fb9ca-22fd-416b-b29c-79939429d7b5','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37905,158660,1,'2021-05-11 01:43:36','2021-05-11 01:49:42','163d1a86-4463-4a15-95d1-f2e835144116','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37906,158703,1,'2021-05-11 01:50:50','2021-05-11 01:50:50','5644568e-0351-4652-b8ae-f6b4e129ec95','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37907,158704,1,'2021-05-11 01:50:50','2021-05-11 01:50:50','c55db9ba-c493-4625-bc06-3116815cf752','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37908,158707,1,'2021-05-11 01:50:50','2021-05-11 01:50:50','676ae2ec-8402-486e-8556-6280dd5c7b98','Phase 1B rollout FAQs',NULL,1,'solid'),(37909,158710,1,'2021-05-11 01:50:50','2021-05-11 01:50:50','cfba8f0e-05a1-47d6-98d8-7302ce52a831','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37910,158716,1,'2021-05-11 01:50:51','2021-05-11 01:50:51','dd1fb109-2001-41d4-856d-47fd261ddf5a','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37911,158719,1,'2021-05-11 01:50:51','2021-05-11 01:50:51','91e9193f-7b5f-412e-b68c-266229fdff7a','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37912,158721,1,'2021-05-11 01:50:51','2021-05-11 01:50:51','ba4959be-d27f-4c20-9a82-a2c040a54ddb','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37913,158723,1,'2021-05-11 01:50:51','2021-05-11 01:50:51','9f3eb0cd-e168-457f-b39b-d943d09affb1','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37914,158726,1,'2021-05-11 01:50:51','2021-05-11 01:50:51','1b8642e3-471b-4d13-bcd9-0405f446c9fe','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37915,158728,1,'2021-05-11 01:50:51','2021-05-11 01:50:51','387b7162-b49e-4319-a1e0-b05df0b4f0f4','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37916,158730,1,'2021-05-11 01:50:51','2021-05-11 01:50:51','7109a227-642c-46d0-916f-476d48f88a85','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37917,158733,1,'2021-05-11 01:50:51','2021-05-11 01:50:51','56297fb9-5ada-45f5-bd2b-a4c53946f485','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37918,158734,1,'2021-05-11 01:50:51','2021-05-11 01:50:51','9e4fcea9-277a-4001-b9cf-15a5c33e0b1a','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37919,158737,1,'2021-05-11 01:50:51','2021-05-11 01:50:51','0c5fb281-42c6-4b0b-aa65-281508ef62fb','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37920,158740,1,'2021-05-11 01:50:51','2021-05-11 01:50:51','a354dd97-05fa-4e49-b1b7-eb4cd70d61aa','Subscribe to updates',NULL,1,'solid'),(37921,158742,1,'2021-05-11 01:50:51','2021-05-11 01:50:51','b6c4f147-2f5a-4a42-a710-661a76494ccc','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37922,158743,1,'2021-05-11 01:50:51','2021-05-11 01:50:51','d47d857b-6c85-4230-8baa-dfa19cfea614','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37923,158749,1,'2021-05-11 01:50:52','2021-05-11 01:50:52','c458d255-6234-42ce-89f6-4a8ad32b2273','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37924,158750,1,'2021-05-11 01:50:52','2021-05-11 01:50:52','20f35ae2-6f99-42e1-8817-ed37ff46fce9','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37925,158753,1,'2021-05-11 01:50:52','2021-05-11 01:50:52','46e94c63-bb9e-414d-98bc-e3f900ccb46e','Phase 1B rollout FAQs',NULL,1,'solid'),(37926,158756,1,'2021-05-11 01:50:52','2021-05-11 01:50:52','98b47e5c-425a-4643-b131-f499a6cc21ab','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37927,158762,1,'2021-05-11 01:50:52','2021-05-11 01:50:52','f4fee723-39ea-4aef-a814-f17f26143637','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37928,158765,1,'2021-05-11 01:50:52','2021-05-11 01:50:52','12edccba-3c9d-4fa0-823a-0cdf18802d5e','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37929,158767,1,'2021-05-11 01:50:52','2021-05-11 01:50:52','286c284e-46fb-41a9-9201-68edd5d87f5a','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37930,158769,1,'2021-05-11 01:50:52','2021-05-11 01:50:52','2a2c1fa6-9b39-4cd5-86eb-55beda05da91','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37931,158772,1,'2021-05-11 01:50:52','2021-05-11 01:50:52','ad1c4c9e-e7fd-4137-b1bf-8d188e98b055','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37932,158774,1,'2021-05-11 01:50:52','2021-05-11 01:50:52','be20a9a9-ba8c-44b5-80aa-d1d83a90a1be','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37933,158776,1,'2021-05-11 01:50:52','2021-05-11 01:50:52','fb913509-2e6c-454f-baa6-3c2b2351d7ca','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37934,158779,1,'2021-05-11 01:50:53','2021-05-11 01:50:53','218dd407-9cf9-4ae7-9d19-386aecfdd360','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37935,158780,1,'2021-05-11 01:50:53','2021-05-11 01:50:53','70b7b6e4-d506-441b-8f1c-c578974a22dd','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37936,158783,1,'2021-05-11 01:50:53','2021-05-11 01:50:53','ad6e1021-fcc7-4da1-9ee6-4cbbc9624167','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37937,158786,1,'2021-05-11 01:50:53','2021-05-11 01:50:53','2094c820-dba3-4a86-b87e-d73287afae9f','Subscribe to updates',NULL,1,'solid'),(37938,158788,1,'2021-05-11 01:50:53','2021-05-11 01:50:53','b97439e0-4993-4f17-8cc1-25f53c01ffa9','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37939,158789,1,'2021-05-11 01:50:53','2021-05-11 01:50:53','9faf8ef3-4e14-4468-8d24-295a030cafe6','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37940,158795,1,'2021-05-11 01:51:32','2021-05-11 01:51:32','f010956d-fa00-4f10-8790-63e3a7d0048b','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(37941,158796,1,'2021-05-11 01:51:32','2021-05-11 01:51:32','5b4ee233-e041-4296-a9d1-28a443930a02','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(37942,158799,1,'2021-05-11 01:51:32','2021-05-11 01:51:32','278101d8-1c86-4c65-b4a2-e85b79566c13','Phase 1B rollout FAQs',NULL,1,'solid'),(37943,158802,1,'2021-05-11 01:51:32','2021-05-11 01:51:32','fde089b1-745b-467b-b032-73adb2460019','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(37944,158808,1,'2021-05-11 01:51:32','2021-05-11 01:51:32','59964e4c-64ab-4492-8e96-04d9eb30a1bd','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(37945,158811,1,'2021-05-11 01:51:33','2021-05-11 01:51:33','582d37dc-da5d-4565-89bf-4b7d169608b5','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(37946,158813,1,'2021-05-11 01:51:33','2021-05-11 01:51:33','bce656d6-2c9a-4117-ad9a-03aeb533a4e2','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(37947,158815,1,'2021-05-11 01:51:33','2021-05-11 01:51:33','27bc1424-26ee-485a-885e-3d70ec2a19b4','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(37948,158818,1,'2021-05-11 01:51:33','2021-05-11 01:51:33','d50432d7-d7b8-4a2b-8ba6-bfcee9288398','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(37949,158820,1,'2021-05-11 01:51:33','2021-05-11 01:51:33','ba32fee5-a54e-4521-9a5b-28156de9dab8','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(37950,158822,1,'2021-05-11 01:51:33','2021-05-11 01:51:33','e9bc3534-865a-4877-92a3-f5a435a6dc5a','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(37951,158825,1,'2021-05-11 01:51:33','2021-05-11 01:51:33','49dfe9a2-b193-498f-bb65-71742b140719','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(37952,158826,1,'2021-05-11 01:51:33','2021-05-11 01:51:33','7f5b0f8a-bf34-4986-b42c-c2ed211a1791','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(37953,158829,1,'2021-05-11 01:51:33','2021-05-11 01:51:33','1967c573-968b-40e2-b8de-8c746fbeb59f','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(37954,158832,1,'2021-05-11 01:51:33','2021-05-11 01:51:33','75b34558-d068-49fa-bc4d-e2aa97cf2f00','Subscribe to updates',NULL,1,'solid'),(37955,158834,1,'2021-05-11 01:51:33','2021-05-11 01:51:33','cea5eddf-a6ef-46cc-aea9-fde13394e0fe','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(37956,158835,1,'2021-05-11 01:51:33','2021-05-11 01:51:33','593a11f4-15b9-43c9-9dd1-c4e0f385883c','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(37957,158838,1,'2021-05-11 01:51:44','2021-05-11 01:51:44','03386f06-7320-40f1-8ab6-9a06cbba8a07','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(37958,158839,1,'2021-05-11 01:51:44','2021-05-11 01:51:44','7aef3157-53b8-4f43-ac08-080c51c74d41','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(37959,158840,1,'2021-05-11 01:51:44','2021-05-11 01:51:44','5a37524d-37ee-4c8a-8a37-220dd763f94c','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(37960,158841,1,'2021-05-11 01:51:44','2021-05-11 01:51:44','e5637dc9-ab67-41cb-9f34-eeb9db097a99','Vaccine rollout data','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/australias-covid-19-vaccine-rollout',1,'solid'),(37961,158844,1,'2021-05-11 01:51:44','2021-05-11 01:51:44','fdd886ed-ebef-472a-a554-0eb8624fbaa2','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(37962,158845,1,'2021-05-11 01:51:44','2021-05-11 01:51:44','f7788a24-6d1f-4e6f-85ce-dd9cb4863711','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(37963,158846,1,'2021-05-11 01:51:44','2021-05-11 01:51:44','cb0cc432-5cee-4ae5-9f12-372c8520b14f','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(37964,158847,1,'2021-05-11 01:51:44','2021-05-11 01:51:44','bbe105e3-7b9c-479c-a7e5-5f026eeda5ac','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(37965,158850,1,'2021-05-11 01:51:44','2021-05-11 01:51:44','8f6e0847-79c6-44d7-8f0b-55b2e580391a','ATAGI statement - 8 April','https://www.health.gov.au/news/atagi-statement-on-astrazeneca-vaccine-in-response-to-new-vaccine-safety-concerns',1,'solid'),(37966,158851,1,'2021-05-11 01:51:44','2021-05-11 01:51:44','236d037c-9e8c-4db9-9e0f-c9ec7b1c65bf','ATAGI statement - 23 April','https://www.health.gov.au/news/atagi-reinforce-recommendations-on-use-of-covid-19-vaccines-following-review-of-vaccine-safety-data-and-benefits',1,'solid'),(37967,158852,1,'2021-05-11 01:51:44','2021-05-11 01:51:44','dcc86c1c-b9bd-4b3e-af95-de5b27dfe6fa','Chief Medical Officer\'s response to ATAGI advice','https://www.health.gov.au/news/response-latest-atagi-advice',1,'solid'),(37968,158859,1,'2021-05-11 01:51:45','2021-05-11 01:51:45','63db154d-cd8d-4814-8e30-36917960baa2','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(37969,158862,1,'2021-05-11 01:51:45','2021-05-11 01:51:45','08e31828-c578-4ec9-9770-dfeb53bdbf28','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(37970,158863,1,'2021-05-11 01:51:45','2021-05-11 01:51:45','bb618436-ca35-46cb-9c6f-abeed2231fd0','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(37971,158864,1,'2021-05-11 01:51:45','2021-05-11 01:51:45','5e0c41f3-f1a3-44fd-a3b7-1a38c4b7516a','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(37972,158865,1,'2021-05-11 01:51:45','2021-05-11 01:51:45','2080cf19-b388-47ce-b8bf-705b7dbc30fc','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(37973,158866,1,'2021-05-11 01:51:45','2021-05-11 01:51:45','06311965-3533-47ca-b540-46cf0b700b00','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(37974,158872,1,'2021-05-11 01:51:45','2021-05-11 01:51:45','70f29f49-6dce-4ab3-9549-3faba741f573','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(37975,158873,1,'2021-05-11 01:51:45','2021-05-11 01:51:45','58c716c0-9054-402b-9f4a-0f66f314ade3','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(37976,158874,1,'2021-05-11 01:51:45','2021-05-11 01:51:45','aa1ce226-0c92-4f3d-9419-6a4fcf18b478','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(37977,158879,1,'2021-05-11 01:51:46','2021-05-11 01:51:46','7bd0516a-9fe4-49f2-a064-a08fd9b4cf54','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(37978,158880,1,'2021-05-11 01:51:46','2021-05-11 01:51:46','2f5abac3-fb29-4b0c-b511-ec53f72c5a7f','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(37979,158881,1,'2021-05-11 01:51:46','2021-05-11 01:51:46','2a5082b3-c075-443c-b755-7fa2ee328585','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(37980,158882,1,'2021-05-11 01:51:46','2021-05-11 01:51:46','dd963b02-1134-4960-a676-00e6d317d163','Vaccine rollout data','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/australias-covid-19-vaccine-rollout',1,'solid'),(37981,158885,1,'2021-05-11 01:51:46','2021-05-11 01:51:46','9e684395-243f-40ab-85c6-60d80a674a87','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(37982,158886,1,'2021-05-11 01:51:46','2021-05-11 01:51:46','89795b03-9c94-4427-9ab7-6597b3d6ef49','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(37983,158887,1,'2021-05-11 01:51:46','2021-05-11 01:51:46','91e24f97-b2a8-425f-878f-bb7820ac1820','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(37984,158888,1,'2021-05-11 01:51:46','2021-05-11 01:51:46','9e921ad8-1351-443d-b843-81e73bdc2731','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(37985,158891,1,'2021-05-11 01:51:46','2021-05-11 01:51:46','4b2e7356-5b9c-45c0-858a-adf77261bafb','ATAGI statement - 8 April','https://www.health.gov.au/news/atagi-statement-on-astrazeneca-vaccine-in-response-to-new-vaccine-safety-concerns',1,'solid'),(37986,158892,1,'2021-05-11 01:51:46','2021-05-11 01:51:46','5fa12155-04f9-457f-a629-ced4221ab261','ATAGI statement - 23 April','https://www.health.gov.au/news/atagi-reinforce-recommendations-on-use-of-covid-19-vaccines-following-review-of-vaccine-safety-data-and-benefits',1,'solid'),(37987,158893,1,'2021-05-11 01:51:46','2021-05-11 01:51:46','45a77140-2075-47e2-9606-aaff5a36f1ca','Chief Medical Officer\'s response to ATAGI advice','https://www.health.gov.au/news/response-latest-atagi-advice',1,'solid'),(37988,158900,1,'2021-05-11 01:51:46','2021-05-11 01:51:46','91d3e9e6-75d4-4a73-ba93-8bc2b13ffd29','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(37989,158903,1,'2021-05-11 01:51:46','2021-05-11 01:51:46','5d3aefbe-ea9d-4fce-85f8-4c8442f7639e','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(37990,158904,1,'2021-05-11 01:51:46','2021-05-11 01:51:46','365c8b54-072a-46b1-9be6-d1e4ec14c462','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(37991,158905,1,'2021-05-11 01:51:46','2021-05-11 01:51:46','dfb62362-0805-4538-b8cb-652410ab5c7a','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(37992,158906,1,'2021-05-11 01:51:46','2021-05-11 01:51:46','abb5387d-41d3-4a3f-95d2-1da13465de61','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(37993,158907,1,'2021-05-11 01:51:46','2021-05-11 01:51:46','069a58ef-17ce-4e7f-87ad-29a5485c4906','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(37994,158913,1,'2021-05-11 01:51:46','2021-05-11 01:51:46','7295ce80-84ac-4334-aed9-631975f66e9b','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(37995,158914,1,'2021-05-11 01:51:46','2021-05-11 01:51:46','51493936-24f8-4814-a827-bea6728bc509','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(37996,158915,1,'2021-05-11 01:51:46','2021-05-11 01:51:46','e1f36ff1-6edb-4582-96f2-ba04a221dfc3','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(37997,158920,1,'2021-05-11 01:51:52','2021-05-11 01:51:52','edfe4365-1f1c-450e-8305-e08712a41a53','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(37998,158921,1,'2021-05-11 01:51:52','2021-05-11 01:51:52','984f533f-ec40-4bcf-8963-636d3d46de2f','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(37999,158922,1,'2021-05-11 01:51:52','2021-05-11 01:51:52','54f271d5-7e6d-4cc7-9e8a-daf2e0445b3e','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(38000,158923,1,'2021-05-11 01:51:52','2021-05-11 01:51:52','309a2afa-d989-4ada-8ab4-62bdd9b8bb50','Vaccine rollout data','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/australias-covid-19-vaccine-rollout',1,'solid'),(38001,158926,1,'2021-05-11 01:51:52','2021-05-11 01:51:52','50bc924c-791e-4ddf-8117-ce188f3e0c41','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(38002,158927,1,'2021-05-11 01:51:52','2021-05-11 01:51:52','ecfd2730-ff5a-4d48-aa9f-0d2176037859','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(38003,158928,1,'2021-05-11 01:51:52','2021-05-11 01:51:52','fa34d7eb-4b10-4a3f-9ef8-49ba1a3f2b38','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(38004,158929,1,'2021-05-11 01:51:52','2021-05-11 01:51:52','1418d729-5d20-4df6-bdbe-36668d68b0d7','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(38005,158932,1,'2021-05-11 01:51:52','2021-05-11 01:51:52','52fb6239-b5ff-403c-8d9b-f9acc7881d6b','ATAGI statement - 8 April','https://www.health.gov.au/news/atagi-statement-on-astrazeneca-vaccine-in-response-to-new-vaccine-safety-concerns',1,'solid'),(38006,158933,1,'2021-05-11 01:51:52','2021-05-11 01:51:52','6c4ddcec-f069-429c-866f-8e2fdcb9ad29','ATAGI statement - 23 April','https://www.health.gov.au/news/atagi-reinforce-recommendations-on-use-of-covid-19-vaccines-following-review-of-vaccine-safety-data-and-benefits',1,'solid'),(38007,158934,1,'2021-05-11 01:51:52','2021-05-11 01:51:52','d3366a26-b2d0-4045-95c7-6adef597a05b','Chief Medical Officer\'s response to ATAGI advice','https://www.health.gov.au/news/response-latest-atagi-advice',1,'solid'),(38008,158941,1,'2021-05-11 01:51:52','2021-05-11 01:51:52','0e32aad8-3d2a-418d-b3f5-1248ad199e15','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(38009,158944,1,'2021-05-11 01:51:52','2021-05-11 01:51:52','5da89b18-daf3-4c70-a1dc-49bde5cacc5b','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(38010,158945,1,'2021-05-11 01:51:52','2021-05-11 01:51:52','65543a69-53a7-4a46-8f41-399807a2261c','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(38011,158946,1,'2021-05-11 01:51:52','2021-05-11 01:51:52','a464d739-cfca-440a-9fb9-8d675be358ec','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(38012,158947,1,'2021-05-11 01:51:52','2021-05-11 01:51:52','da84180e-a6de-4a6d-b404-1f416c5e8aa9','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(38013,158948,1,'2021-05-11 01:51:52','2021-05-11 01:51:52','8387473e-fc6c-4f13-b349-57eabe66c09f','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(38014,158954,1,'2021-05-11 01:51:53','2021-05-11 01:51:53','3a895e4e-e2b0-4eb7-910c-4c718d229fa6','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(38015,158955,1,'2021-05-11 01:51:53','2021-05-11 01:51:53','09178eb8-8e32-4ef0-b86a-1e37edbf151d','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(38016,158956,1,'2021-05-11 01:51:53','2021-05-11 01:51:53','b2edb6e0-9d3c-4004-a27a-fc2ecd420229','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(38017,158965,1,'2021-05-11 01:52:40','2021-05-11 01:52:51','7dffda66-ceae-4c55-aa4c-15d78c50d815','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(38018,158966,1,'2021-05-11 01:52:40','2021-05-11 01:52:51','d47c03b7-8dc4-4d21-ace3-84e8d0c4a4fa','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(38019,158969,1,'2021-05-11 01:52:40','2021-05-11 01:52:51','469085bb-b7c0-476e-b95f-e04da79ad3a8','Phase 1B rollout FAQs',NULL,1,'solid'),(38020,158972,1,'2021-05-11 01:52:41','2021-05-11 01:52:51','ddeee0de-7324-42c2-8226-4fcbedfcfef9','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(38021,158978,1,'2021-05-11 01:52:41','2021-05-11 01:52:51','4efe2c06-d6de-4290-97ba-08798aa0e478','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38022,158981,1,'2021-05-11 01:52:41','2021-05-11 01:52:51','88bf81c5-5c91-4090-94f1-184272879f55','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(38023,158983,1,'2021-05-11 01:52:41','2021-05-11 01:52:51','d43df150-fc50-430c-9e28-fbb863ac1cb6','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(38024,158985,1,'2021-05-11 01:52:41','2021-05-11 01:52:51','388d4cd7-efee-4806-9d70-9cc3911584e9','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(38025,158988,1,'2021-05-11 01:52:41','2021-05-11 01:52:51','42dd4394-4761-4908-b1a5-b78170229919','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(38026,158990,1,'2021-05-11 01:52:41','2021-05-11 01:52:51','58b668b8-9da4-451b-bb1c-12ae83b0dab4','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(38027,158992,1,'2021-05-11 01:52:41','2021-05-11 01:52:51','c7a12d3a-9e8b-40c6-98e4-55b175d02134','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(38028,158995,1,'2021-05-11 01:52:41','2021-05-11 01:52:51','3a8f3525-372a-4e58-b1ac-357dd949c3b3','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(38029,158996,1,'2021-05-11 01:52:41','2021-05-11 01:52:51','de2466d1-3f00-404b-b32e-e4c82384c558','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(38030,158999,1,'2021-05-11 01:52:41','2021-05-11 01:52:51','37a668e0-eb80-47d0-a250-3e7c5d0ef976','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(38031,159002,1,'2021-05-11 01:52:41','2021-05-11 01:52:51','e7b7e577-2468-4fa1-bc91-11d677a66620','Subscribe to updates',NULL,1,'solid'),(38032,159004,1,'2021-05-11 01:52:41','2021-05-11 01:52:51','c1cd8bdf-c789-48d6-abc2-ea3004575b3d','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38033,159005,1,'2021-05-11 01:52:41','2021-05-11 01:52:51','ccd78f4a-381c-4b95-89f4-b74295896888','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38034,159010,1,'2021-05-11 01:53:01','2021-05-11 01:53:01','22ff2957-e34f-4c20-8e37-cbed5712b62a','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(38035,159011,1,'2021-05-11 01:53:01','2021-05-11 01:53:01','03a9e6c9-d75c-4554-b6b2-0f11914bb45e','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(38036,159014,1,'2021-05-11 01:53:01','2021-05-11 01:53:01','2f1d2e23-28db-4b16-a58c-6a1806b8c655','Phase 1B rollout FAQs',NULL,1,'solid'),(38037,159017,1,'2021-05-11 01:53:01','2021-05-11 01:53:01','0cc1fa01-cc44-456b-9980-18eae02540af','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(38038,159023,1,'2021-05-11 01:53:01','2021-05-11 01:53:01','b6f529ad-ac99-4463-8956-f61e6aad8967','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38039,159026,1,'2021-05-11 01:53:01','2021-05-11 01:53:01','07885d8c-3de2-4968-8146-e3bffafccc36','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(38040,159028,1,'2021-05-11 01:53:01','2021-05-11 01:53:01','89f18db2-a394-4eea-88bc-9a9cb8e704c8','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(38041,159030,1,'2021-05-11 01:53:01','2021-05-11 01:53:01','ff25b8d9-9814-4bc3-92af-34151ee28cc2','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(38042,159033,1,'2021-05-11 01:53:01','2021-05-11 01:53:01','9a0b116e-3b47-4617-884f-5d9a12be95ae','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(38043,159035,1,'2021-05-11 01:53:01','2021-05-11 01:53:01','e9608f51-d9ba-4603-b2ac-c35ccea04d11','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(38044,159037,1,'2021-05-11 01:53:01','2021-05-11 01:53:01','b119355f-7873-4d1f-9fa6-74f6c61b4d7d','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(38045,159040,1,'2021-05-11 01:53:01','2021-05-11 01:53:01','3bdad35c-7edf-4687-ab00-c0b171d15911','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(38046,159041,1,'2021-05-11 01:53:01','2021-05-11 01:53:01','98ff9327-b610-4346-8490-bdbc09ae01e6','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(38047,159044,1,'2021-05-11 01:53:01','2021-05-11 01:53:01','efbfc6d3-0480-4c8d-b6e7-72c66f5a55a2','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(38048,159047,1,'2021-05-11 01:53:01','2021-05-11 01:53:01','bf523f28-c068-4aa5-86f3-6a9eb5f4a904','Subscribe to updates',NULL,1,'solid'),(38049,159049,1,'2021-05-11 01:53:01','2021-05-11 01:53:01','619819c9-afc0-42bf-b33d-c1634ec864c9','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38050,159050,1,'2021-05-11 01:53:01','2021-05-11 01:53:01','ec99bf6a-6c43-4a58-8777-ce629b6dcf34','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38051,159056,1,'2021-05-11 01:53:02','2021-05-11 01:53:02','03120a4f-b714-4786-befe-ad5d08ff8726','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(38052,159057,1,'2021-05-11 01:53:02','2021-05-11 01:53:02','62d5a29d-f50e-4989-9c35-42540c0f3cd7','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(38053,159060,1,'2021-05-11 01:53:03','2021-05-11 01:53:03','10dda71d-97d8-459c-befa-fe0e64ad2ba2','Phase 1B rollout FAQs',NULL,1,'solid'),(38054,159063,1,'2021-05-11 01:53:03','2021-05-11 01:53:03','c06e4c63-a6c3-4304-a351-a5784749beef','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(38055,159069,1,'2021-05-11 01:53:03','2021-05-11 01:53:03','dbb4e947-0bf2-4792-9551-eed211675527','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38056,159072,1,'2021-05-11 01:53:03','2021-05-11 01:53:03','520f265a-1692-4e6a-92dc-8ee3ccb83255','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(38057,159074,1,'2021-05-11 01:53:03','2021-05-11 01:53:03','1ffe4ca2-5d73-4682-9b90-a15d79d353e5','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(38058,159076,1,'2021-05-11 01:53:03','2021-05-11 01:53:03','920b71c3-c6f2-4a5e-8dfa-1af01bedf87c','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(38059,159079,1,'2021-05-11 01:53:03','2021-05-11 01:53:03','5e6165de-c2e1-43d5-abb1-2f828b909366','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(38060,159081,1,'2021-05-11 01:53:03','2021-05-11 01:53:03','d7f29770-cd6f-4936-b99d-0503c356cb1a','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(38061,159083,1,'2021-05-11 01:53:03','2021-05-11 01:53:03','e3caff38-c97a-4f5f-a9bd-e3e1767a8d02','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(38062,159086,1,'2021-05-11 01:53:03','2021-05-11 01:53:03','430ac549-8b25-4128-80fc-fa87eb62a658','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(38063,159087,1,'2021-05-11 01:53:03','2021-05-11 01:53:03','e7b3c3e6-b0bf-4d8f-b20b-50a7407988ab','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(38064,159090,1,'2021-05-11 01:53:03','2021-05-11 01:53:03','e09d1121-436d-48f9-aa3c-7d5422a84f3f','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(38065,159093,1,'2021-05-11 01:53:03','2021-05-11 01:53:03','eaeb2464-c99e-470f-a2f1-08607af4332b','Subscribe to updates',NULL,1,'solid'),(38066,159095,1,'2021-05-11 01:53:03','2021-05-11 01:53:03','5692f735-2c4c-4aec-b0e6-9103b246ccf9','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38067,159096,1,'2021-05-11 01:53:03','2021-05-11 01:53:03','7c6540b4-d080-40f1-a056-f1512593c891','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38068,159100,1,'2021-05-11 01:55:30','2021-05-11 01:55:30','cf0b8e51-b366-4763-a4c2-200826fe89bb','More information','https://www.health.gov.au/resources/publications/distribution-of-ppe-through-phns-tranche-4-surgical-masks-and-p2n95-respirators-for-general-practice-community-pharmacy-and-allied-health',1,'outline'),(38069,159105,1,'2021-05-11 01:55:30','2021-05-11 01:55:30','76000e1a-62ef-4009-8bd8-c3f65ac65020','More information','https://bnphn.org/DoH-eye-protection',1,'outline'),(38070,159106,1,'2021-05-11 01:55:30','2021-05-11 01:55:30','2419c3bf-0d36-4964-8731-78d803e5243a','How to care for your goggles','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/GoggleCare_A4Poster_QPHN_FINAL.pdf?mtime=20200917100629&focal=none',1,'outline'),(38071,159109,1,'2021-05-11 01:55:30','2021-05-11 01:55:30','e45c3b72-9772-49f3-9920-a02d7508a086','More information','https://bnphn.org/DoH-eye-protection',1,'outline'),(38072,159110,1,'2021-05-11 01:55:30','2021-05-11 01:55:30','d521e777-33eb-4cd4-a7ad-ae7855f12c6b','How to care for your goggles','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/GoggleCare_A4Poster_QPHN_FINAL.pdf?mtime=20200917100629&focal=none',1,'outline'),(38073,159119,1,'2021-05-11 02:19:28','2021-05-11 02:19:28','355a4ced-69d8-4b95-8a70-2d4f0411ba5c','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(38074,159120,1,'2021-05-11 02:19:28','2021-05-11 02:19:28','f2ccc09f-dce4-4724-9c19-edf925d44750','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(38075,159123,1,'2021-05-11 02:19:28','2021-05-11 02:19:28','2a77e6ea-1484-4b32-b0df-6c00c0175b3d','Phase 1B rollout FAQs',NULL,1,'solid'),(38076,159126,1,'2021-05-11 02:19:28','2021-05-11 02:19:28','88308f50-ace7-48d4-8c21-e9f409abc427','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(38077,159132,1,'2021-05-11 02:19:28','2021-05-11 02:19:28','5dbcbf35-9686-4555-9073-b6919d908997','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38078,159135,1,'2021-05-11 02:19:28','2021-05-11 02:19:28','e6966d54-c06b-4c44-88b3-d08146f92dd0','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(38079,159137,1,'2021-05-11 02:19:28','2021-05-11 02:19:28','a3b6f043-c622-4d86-8cdf-be5f30c5f0be','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(38080,159139,1,'2021-05-11 02:19:28','2021-05-11 02:19:28','adbda5bd-1a5b-4912-9891-8c797e9d08b4','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(38081,159142,1,'2021-05-11 02:19:29','2021-05-11 02:19:29','e581b164-e98e-4085-940b-0920c371ba6a','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(38082,159144,1,'2021-05-11 02:19:29','2021-05-11 02:19:29','0ed12822-9258-4b1c-aa05-04c1a527be4f','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(38083,159146,1,'2021-05-11 02:19:29','2021-05-11 02:19:29','d83d9c3a-0078-45fe-abd2-97400742187d','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(38084,159149,1,'2021-05-11 02:19:29','2021-05-11 02:19:29','9b648a68-f229-473f-b610-9adad09569e4','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(38085,159150,1,'2021-05-11 02:19:29','2021-05-11 02:19:29','a7c29c37-eab6-499b-a185-3d4d86c1bbc2','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(38086,159153,1,'2021-05-11 02:19:29','2021-05-11 02:19:29','2eac8a14-b787-4361-ad77-a6a060588ee1','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(38087,159156,1,'2021-05-11 02:19:29','2021-05-11 02:19:29','e53b79ce-e08a-4316-9e48-bfa36c789e05','Subscribe to updates',NULL,1,'solid'),(38088,159158,1,'2021-05-11 02:19:29','2021-05-11 02:19:29','a8caf16f-25f7-4e02-b066-694f9de00876','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38089,159159,1,'2021-05-11 02:19:29','2021-05-11 02:19:29','c2157b12-15fe-4b4f-b99c-7de8f092762a','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38090,159164,1,'2021-05-11 02:19:30','2021-05-11 02:19:30','6608f581-107c-4f40-8604-82122d5686cd','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(38091,159165,1,'2021-05-11 02:19:30','2021-05-11 02:19:30','2828701a-ed8a-4714-970b-98ef032fdcc7','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(38092,159168,1,'2021-05-11 02:19:30','2021-05-11 02:19:30','a0104404-fc20-43b0-828c-573ff8ccc358','Phase 1B rollout FAQs',NULL,1,'solid'),(38093,159171,1,'2021-05-11 02:19:30','2021-05-11 02:19:30','162866ba-6a42-4bbe-bcb7-a25f70e5f277','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(38094,159177,1,'2021-05-11 02:19:30','2021-05-11 02:19:30','d2285e87-4a8e-4db3-bae8-123ad71431a9','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38095,159180,1,'2021-05-11 02:19:30','2021-05-11 02:19:30','14905456-a40d-43c7-9b7c-72b8adfb5f38','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(38096,159182,1,'2021-05-11 02:19:30','2021-05-11 02:19:30','8fb84ce6-ef8b-4bc2-b3e6-2a453b7b8b2a','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(38097,159184,1,'2021-05-11 02:19:30','2021-05-11 02:19:30','2519a5bf-70b5-4a58-9233-8fcc35321b22','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(38098,159187,1,'2021-05-11 02:19:30','2021-05-11 02:19:30','2fa06556-9425-44b7-a3a5-9f4446d9bd57','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(38099,159189,1,'2021-05-11 02:19:30','2021-05-11 02:19:30','cc5bf1d2-53c7-4245-b17a-2a3e1751f57e','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(38100,159191,1,'2021-05-11 02:19:30','2021-05-11 02:19:30','0a3c0c91-44f6-43b3-addd-6dc4a4ad454a','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(38101,159194,1,'2021-05-11 02:19:31','2021-05-11 02:19:31','114dd4fa-5e69-4607-b9c2-6f6a906349e1','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(38102,159195,1,'2021-05-11 02:19:31','2021-05-11 02:19:31','11234154-2942-4803-9279-1f79f4e7a8fa','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(38103,159198,1,'2021-05-11 02:19:31','2021-05-11 02:19:31','5ae4e41d-5c63-4bfb-ae6f-2c45ac29da38','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(38104,159201,1,'2021-05-11 02:19:31','2021-05-11 02:19:31','0cd26cb3-899d-467b-915b-60eb90b07aa6','Subscribe to updates',NULL,1,'solid'),(38105,159203,1,'2021-05-11 02:19:31','2021-05-11 02:19:31','7248a1d3-05c6-4a7b-90b6-fa2671a235e2','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38106,159204,1,'2021-05-11 02:19:31','2021-05-11 02:19:31','c59bed56-a07f-4a67-be2a-a0108c558031','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38107,159209,1,'2021-05-11 02:22:34','2021-05-11 02:22:34','bf6508d2-4775-4201-bf46-441b1752b25d','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(38108,159210,1,'2021-05-11 02:22:34','2021-05-11 02:22:34','c98fb1c1-8825-4699-b193-cb4a2eca7c41','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(38109,159213,1,'2021-05-11 02:22:34','2021-05-11 02:22:34','f01e8141-f9be-4b30-b5df-223e80af6f71','Phase 1B rollout FAQs',NULL,1,'solid'),(38110,159216,1,'2021-05-11 02:22:34','2021-05-11 02:22:34','5d060b3f-551a-4d81-8f7b-2e3050d3663f','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(38111,159222,1,'2021-05-11 02:22:34','2021-05-11 02:22:34','0bd3119f-a3c3-4c07-9fe4-5062e04ddb82','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38112,159225,1,'2021-05-11 02:22:34','2021-05-11 02:22:34','da563ad8-7428-4d06-9249-768f0515fddf','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(38113,159227,1,'2021-05-11 02:22:34','2021-05-11 02:22:34','7528de1b-24e7-44ea-9070-92add4ebd0aa','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(38114,159229,1,'2021-05-11 02:22:34','2021-05-11 02:22:34','a4c0f83c-9dd0-47e8-88b0-81526cdbe21f','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(38115,159232,1,'2021-05-11 02:22:34','2021-05-11 02:22:34','85718d21-f36c-4571-804a-3f77fdcae952','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(38116,159234,1,'2021-05-11 02:22:34','2021-05-11 02:22:34','784940ab-23dd-4a91-a58e-200f24f35bef','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(38117,159236,1,'2021-05-11 02:22:34','2021-05-11 02:22:34','db0051b6-2324-4292-b484-959646631efd','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(38118,159239,1,'2021-05-11 02:22:34','2021-05-11 02:22:34','1c0aafce-08e0-43f7-8099-fce4ae9eb2e5','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(38119,159240,1,'2021-05-11 02:22:34','2021-05-11 02:22:34','71fa3451-0dc5-403f-9c97-1f48ac945a36','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(38120,159243,1,'2021-05-11 02:22:34','2021-05-11 02:22:34','b1a79091-7af3-4fa2-a8d3-2c1cb6de15a9','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(38121,159246,1,'2021-05-11 02:22:34','2021-05-11 02:22:34','c5428640-930c-4277-8a87-d68357472ec2','Subscribe to updates',NULL,1,'solid'),(38122,159248,1,'2021-05-11 02:22:34','2021-05-11 02:22:34','96130d17-0ab2-4151-bb0c-b247cb47f447','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38123,159249,1,'2021-05-11 02:22:34','2021-05-11 02:22:34','636ad8d3-a651-40f8-b641-140d7f012645','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38124,159254,1,'2021-05-11 02:22:36','2021-05-11 02:22:36','5f881cb0-6a98-4329-8a77-971807625999','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(38125,159255,1,'2021-05-11 02:22:36','2021-05-11 02:22:36','e3da42d4-f4f5-4194-a76a-f48f04a03646','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(38126,159258,1,'2021-05-11 02:22:36','2021-05-11 02:22:36','a22b6a8a-098c-43d6-93dc-acc32ebe511a','Phase 1B rollout FAQs',NULL,1,'solid'),(38127,159261,1,'2021-05-11 02:22:36','2021-05-11 02:22:36','48c64797-95e2-4a0b-8d03-1d77b53ef88a','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(38128,159267,1,'2021-05-11 02:22:36','2021-05-11 02:22:36','6e4bac04-786d-4623-a430-8b96238c21e4','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38129,159270,1,'2021-05-11 02:22:36','2021-05-11 02:22:36','f8301d8f-e621-4e9a-97e6-211d94e8a276','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(38130,159272,1,'2021-05-11 02:22:36','2021-05-11 02:22:36','bc956893-0983-468e-b87b-7e1fa30576a0','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(38131,159274,1,'2021-05-11 02:22:36','2021-05-11 02:22:36','ff645ad2-0320-47c5-8eeb-4e2adbd7aca5','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(38132,159277,1,'2021-05-11 02:22:36','2021-05-11 02:22:36','f480db4c-124e-44ff-841c-bce24a1b484c','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(38133,159279,1,'2021-05-11 02:22:36','2021-05-11 02:22:36','44a82d29-c37d-4cf5-9257-1adb7fc0f15b','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(38134,159281,1,'2021-05-11 02:22:36','2021-05-11 02:22:36','1eca5b4e-3599-425f-853f-081d9cef89c7','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(38135,159284,1,'2021-05-11 02:22:36','2021-05-11 02:22:36','67db1602-34b7-4e30-9693-44587d91162a','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(38136,159285,1,'2021-05-11 02:22:36','2021-05-11 02:22:36','f0941b02-f040-4bb0-b749-108fedc3834c','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(38137,159288,1,'2021-05-11 02:22:36','2021-05-11 02:22:36','576150bb-1d56-425d-bc82-47d221686f25','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(38138,159291,1,'2021-05-11 02:22:36','2021-05-11 02:22:36','97fdcf09-c865-4717-b787-d18c7cd0c515','Subscribe to updates',NULL,1,'solid'),(38139,159293,1,'2021-05-11 02:22:36','2021-05-11 02:22:36','09db8b60-a7f7-4606-bbee-d8e5049316bb','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38140,159294,1,'2021-05-11 02:22:36','2021-05-11 02:22:36','0b9dc70b-3234-435d-bb58-3589ef68e58e','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38141,159299,1,'2021-05-11 02:22:37','2021-05-11 02:22:37','0bca1f21-55c6-4dd0-a2ac-0c340c854fbb','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(38142,159300,1,'2021-05-11 02:22:37','2021-05-11 02:22:37','a4c9246a-0f50-4876-a530-a7aa2a1d6ddb','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(38143,159303,1,'2021-05-11 02:22:37','2021-05-11 02:22:37','b0b49ece-6335-4258-b884-befdb760a169','Phase 1B rollout FAQs',NULL,1,'solid'),(38144,159306,1,'2021-05-11 02:22:37','2021-05-11 02:22:37','7c630d45-4dfd-4318-b32c-018650a37179','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(38145,159312,1,'2021-05-11 02:22:38','2021-05-11 02:22:38','53afdc20-d70c-4b66-9b0f-045e660f845a','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38146,159315,1,'2021-05-11 02:22:38','2021-05-11 02:22:38','658f84dc-fcac-44ef-ae49-1272ace8f1f3','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(38147,159317,1,'2021-05-11 02:22:38','2021-05-11 02:22:38','bfe5e30b-9d69-4b4b-a7aa-3c7a1cee0835','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(38148,159319,1,'2021-05-11 02:22:38','2021-05-11 02:22:38','7b4101b8-6c80-45b6-aae7-c5d1d4f5f1f2','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(38149,159322,1,'2021-05-11 02:22:38','2021-05-11 02:22:38','ad8323b2-b91b-4c51-9e9c-eda4de76f742','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(38150,159324,1,'2021-05-11 02:22:38','2021-05-11 02:22:38','d475e5a1-2626-4c92-a9fc-276a216a0f74','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(38151,159326,1,'2021-05-11 02:22:38','2021-05-11 02:22:38','427dd46d-58dc-47f0-b672-656e799820c2','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(38152,159329,1,'2021-05-11 02:22:38','2021-05-11 02:22:38','22a21293-1745-4237-9a9b-13529e665f43','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(38153,159330,1,'2021-05-11 02:22:38','2021-05-11 02:22:38','9d6a5259-30a6-4897-8ab3-e0ff0f50909e','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(38154,159333,1,'2021-05-11 02:22:38','2021-05-11 02:22:38','5d313bbd-d7e3-4fd7-b05e-e4a133888753','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(38155,159336,1,'2021-05-11 02:22:38','2021-05-11 02:22:38','198e868d-4046-474d-b744-9147140f8624','Subscribe to updates',NULL,1,'solid'),(38156,159338,1,'2021-05-11 02:22:38','2021-05-11 02:22:38','f73dc24e-35ee-4c65-86b4-30e445d49896','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38157,159339,1,'2021-05-11 02:22:38','2021-05-11 02:22:38','82639ca6-d55b-434c-9850-cedca2c021a5','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38158,159345,1,'2021-05-11 02:22:39','2021-05-11 02:22:39','ca05703c-2d31-450b-82c1-3e8bc58830cc','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(38159,159346,1,'2021-05-11 02:22:39','2021-05-11 02:22:39','933f44c5-ce48-4221-953e-ab54544110d0','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(38160,159349,1,'2021-05-11 02:22:39','2021-05-11 02:22:39','99246a0b-8bee-42e8-9ffe-6ebc99ac377f','Phase 1B rollout FAQs',NULL,1,'solid'),(38161,159352,1,'2021-05-11 02:22:39','2021-05-11 02:22:39','b45b3deb-3fd8-436c-8d64-ffc1894cf497','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(38162,159358,1,'2021-05-11 02:22:40','2021-05-11 02:22:40','d6fcc584-9e4e-48ce-9a02-335403741183','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38163,159361,1,'2021-05-11 02:22:40','2021-05-11 02:22:40','38abd93f-87c4-49ac-acf9-d10456fa8160','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(38164,159363,1,'2021-05-11 02:22:40','2021-05-11 02:22:40','ac613397-2bfa-4088-9422-21e591ef6a1a','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(38165,159365,1,'2021-05-11 02:22:40','2021-05-11 02:22:40','22c11874-98d1-4c8f-bb19-bf3e757ccf64','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(38166,159368,1,'2021-05-11 02:22:40','2021-05-11 02:22:40','719fb04e-17ac-47da-892c-e48507593341','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(38167,159370,1,'2021-05-11 02:22:40','2021-05-11 02:22:40','3794a8b7-f86a-4a8c-84b2-91cb15f4a61c','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(38168,159372,1,'2021-05-11 02:22:40','2021-05-11 02:22:40','285745fe-eebd-4f8c-936d-5f0cc1ac2ba4','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(38169,159375,1,'2021-05-11 02:22:40','2021-05-11 02:22:40','287f43e4-7212-410b-bfaa-19c89ad274de','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(38170,159376,1,'2021-05-11 02:22:40','2021-05-11 02:22:40','22396f4d-7fbe-419c-ae25-da7822c53e53','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(38171,159379,1,'2021-05-11 02:22:40','2021-05-11 02:22:40','f2a45e9f-d30b-4a7d-bb97-dbff9eac8ab4','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(38172,159382,1,'2021-05-11 02:22:40','2021-05-11 02:22:40','d4fc3460-1722-4003-a4a9-9a064a2043f9','Subscribe to updates',NULL,1,'solid'),(38173,159384,1,'2021-05-11 02:22:40','2021-05-11 02:22:40','90457a67-f94b-448f-a998-a4efb5df464a','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38174,159385,1,'2021-05-11 02:22:40','2021-05-11 02:22:40','e222b274-738b-403d-834d-c0652cb6f2a9','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38175,159391,1,'2021-05-11 02:23:35','2021-05-11 02:23:35','e0fecf46-105a-454d-a5c1-12801418dbf6','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(38176,159392,1,'2021-05-11 02:23:35','2021-05-11 02:23:35','9dd585ce-892f-48dd-9fb5-ac5d05918319','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(38177,159395,1,'2021-05-11 02:23:35','2021-05-11 02:23:35','c27f548e-3ef0-4526-9ca5-e6e973f80282','Phase 1B rollout FAQs',NULL,1,'solid'),(38178,159398,1,'2021-05-11 02:23:35','2021-05-11 02:23:35','c385c1cb-abf3-4fa3-83bf-8785183d6cb9','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(38179,159404,1,'2021-05-11 02:23:35','2021-05-11 02:23:35','a5ecdc77-1f94-440c-b72a-3125c799e32c','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38180,159407,1,'2021-05-11 02:23:35','2021-05-11 02:23:35','7e3c6571-4a20-47b6-806a-9bd5184f0eac','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(38181,159409,1,'2021-05-11 02:23:35','2021-05-11 02:23:35','3dcc7155-4e0e-4455-8641-ceaf124f452c','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(38182,159411,1,'2021-05-11 02:23:35','2021-05-11 02:23:35','056bf3f1-f547-431c-9fd6-84db412f34c9','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(38183,159414,1,'2021-05-11 02:23:35','2021-05-11 02:23:35','8281a6c3-3a3a-44b9-8115-75fd05557d89','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(38184,159416,1,'2021-05-11 02:23:35','2021-05-11 02:23:35','004dfc4b-9316-4499-9405-e24a1b77718e','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(38185,159418,1,'2021-05-11 02:23:35','2021-05-11 02:23:35','539630eb-cb7b-4daa-87c4-cf7f90c38ded','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(38186,159421,1,'2021-05-11 02:23:35','2021-05-11 02:23:35','57357d76-95e0-4af5-ba56-6471706c13cc','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(38187,159422,1,'2021-05-11 02:23:35','2021-05-11 02:23:35','bd5a97c7-4d8b-4236-a6d1-afe400ebbf2e','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(38188,159425,1,'2021-05-11 02:23:35','2021-05-11 02:23:35','71236634-421f-4633-955d-1f29d053a799','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(38189,159428,1,'2021-05-11 02:23:35','2021-05-11 02:23:35','d8242cbc-7416-40ff-8571-13a6b9e65b68','Subscribe to updates',NULL,1,'solid'),(38190,159430,1,'2021-05-11 02:23:36','2021-05-11 02:23:36','e015666d-2628-4367-b208-493bf4c60bfb','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38191,159431,1,'2021-05-11 02:23:36','2021-05-11 02:23:36','bf1d051e-00ff-4c98-9e42-e479b76c5f05','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38192,159435,1,'2021-05-11 02:24:51','2021-05-11 02:24:51','1230fa40-4808-4c67-b172-161bb3e82a3d','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38193,159439,1,'2021-05-11 02:24:51','2021-05-11 02:24:51','f8a04d0a-77b4-47f9-b24e-4ffcf311ed4b','For GPs',NULL,1,'outline'),(38194,159440,1,'2021-05-11 02:24:51','2021-05-11 02:24:51','6425e4ad-3dc7-4253-a058-512c9866fa93','For RACFs',NULL,1,'outline'),(38195,159441,1,'2021-05-11 02:24:51','2021-05-11 02:24:51','93d6d25b-0043-4765-a83c-1d98c2932daa','For community',NULL,1,'outline'),(38196,159444,1,'2021-05-11 02:24:51','2021-05-11 02:24:51','d1efa9b1-3408-4443-b0c1-cac6ec86849b','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(38197,159447,1,'2021-05-11 02:24:51','2021-05-11 02:24:51','a26f3f5e-832d-4634-9a28-eadee0004ef0','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(38198,159449,1,'2021-05-11 02:24:51','2021-05-11 02:24:51','16dd1267-b1e8-4dda-87e8-a153d15644bd','24 April','https://icampaign.brightlabs.com.au/v/9655/1735694709/email.html?k=T765D-g3I3xwquDMKWDt0b1lr9SnufuSbrSQVvGq9pU',1,'solid'),(38199,159450,1,'2021-05-11 02:24:51','2021-05-11 02:24:51','5bb22182-409b-4a46-bf21-4f30052c5f16','11 April','https://icampaign.brightlabs.com.au/v/9655/1735688107/email.html?k=0zbLWXL9p5GnYnEkBtLJQ-6_Jeo-PoOc5e4Ixb3AOe0',1,'solid'),(38200,159451,1,'2021-05-11 02:24:51','2021-05-11 02:24:51','d54dc930-9d13-4c6b-a97c-fa87c61af8e8','9 April','https://icampaign.brightlabs.com.au/v/9655/1735686917/email.html?k=wWvhac5K_2ThrjHnqFX8KD-Iowxb8LaMjuY8biU2nQw',1,'solid'),(38201,159452,1,'2021-05-11 02:24:51','2021-05-11 02:24:51','6aa3c908-594c-4efd-8933-28ae6d18bffe','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(38202,159453,1,'2021-05-11 02:24:51','2021-05-11 02:24:51','5851fa5d-0cd8-4d4b-8daa-db74216c238e','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(38203,159454,1,'2021-05-11 02:24:51','2021-05-11 02:24:51','531481d7-ef6d-443d-bbdc-f18268d7c184','15 March','https://icampaign.brightlabs.com.au/v/9655/1735670870/email.html?k=v6G-8gVJ_rvtwoUd2fpEBZ1ZIi86nI02To7omwA0FiU',1,'solid'),(38204,159455,1,'2021-05-11 02:24:51','2021-05-11 02:24:51','4758e167-e1fc-436a-b931-f2ae569b3e89','1 March','https://icampaign.brightlabs.com.au/v/9655/1735665136/email.html?k=W4xOP02DyXw184GaxNI6k7EVQ0egPoLmOBx9MgO143c',1,'solid'),(38205,159457,1,'2021-05-11 02:24:51','2021-05-11 02:24:51','6dc31e41-ec04-4932-b7ea-b184780d9846','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38206,159458,1,'2021-05-11 02:24:51','2021-05-11 02:24:51','f967ec82-05b4-4f21-b836-54373502fcda','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38207,159459,1,'2021-05-11 02:24:51','2021-05-11 02:24:51','bc874eeb-9d2b-43ca-8497-25ef9db945a5','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(38208,159462,1,'2021-05-11 02:24:51','2021-05-11 02:24:51','61915e74-394b-45bc-b4a0-99db859f536b','Department of Health','https://www.health.gov.au/',1,'outline'),(38209,159463,1,'2021-05-11 02:24:51','2021-05-11 02:24:51','8ffa96d2-7354-47de-9204-27a572ed2928','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(38210,159464,1,'2021-05-11 02:24:51','2021-05-11 02:24:51','f43f980b-4dbb-40f1-8ca8-676ced53217c','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(38211,159470,1,'2021-05-11 02:24:52','2021-05-11 02:24:52','e2ba576d-0dcd-42ef-bcdb-57779ccf0bdc','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38212,159474,1,'2021-05-11 02:24:52','2021-05-11 02:24:52','dc3e1a47-6ba0-4e80-ba7a-39d2a2741826','For GPs',NULL,1,'outline'),(38213,159475,1,'2021-05-11 02:24:52','2021-05-11 02:24:52','ac47ab51-9d15-4dd3-b4b8-7bd9c3c6f339','For RACFs',NULL,1,'outline'),(38214,159476,1,'2021-05-11 02:24:52','2021-05-11 02:24:52','9a4438e6-22f5-4c29-8aed-f23a4d160476','For community',NULL,1,'outline'),(38215,159479,1,'2021-05-11 02:24:52','2021-05-11 02:24:52','0e23b22a-19c5-49f2-9226-554b6e614652','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(38216,159482,1,'2021-05-11 02:24:52','2021-05-11 02:24:52','23a3ce70-ef1f-4628-b2c7-dca313f9f4cc','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(38217,159484,1,'2021-05-11 02:24:53','2021-05-11 02:24:53','93a115c0-f320-4f74-8cab-e5d4d362a932','24 April','https://icampaign.brightlabs.com.au/v/9655/1735694709/email.html?k=T765D-g3I3xwquDMKWDt0b1lr9SnufuSbrSQVvGq9pU',1,'solid'),(38218,159485,1,'2021-05-11 02:24:53','2021-05-11 02:24:53','f7d5ae33-bc45-4608-9734-ddff06aeb6b0','11 April','https://icampaign.brightlabs.com.au/v/9655/1735688107/email.html?k=0zbLWXL9p5GnYnEkBtLJQ-6_Jeo-PoOc5e4Ixb3AOe0',1,'solid'),(38219,159486,1,'2021-05-11 02:24:53','2021-05-11 02:24:53','0862ddd2-9585-455a-bd0b-091f8130d7c0','9 April','https://icampaign.brightlabs.com.au/v/9655/1735686917/email.html?k=wWvhac5K_2ThrjHnqFX8KD-Iowxb8LaMjuY8biU2nQw',1,'solid'),(38220,159487,1,'2021-05-11 02:24:53','2021-05-11 02:24:53','cd0f3a5a-0dfa-4e67-b30a-4eb748a402aa','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(38221,159488,1,'2021-05-11 02:24:53','2021-05-11 02:24:53','b5bf8ce5-e1cb-476d-8d15-7e8892f74d08','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(38222,159489,1,'2021-05-11 02:24:53','2021-05-11 02:24:53','f5789d5a-fc38-4534-a909-e24c24bfa203','15 March','https://icampaign.brightlabs.com.au/v/9655/1735670870/email.html?k=v6G-8gVJ_rvtwoUd2fpEBZ1ZIi86nI02To7omwA0FiU',1,'solid'),(38223,159491,1,'2021-05-11 02:24:53','2021-05-11 02:24:53','49be32bc-3237-49fc-9fda-c6f14c0a9dcc','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38224,159492,1,'2021-05-11 02:24:53','2021-05-11 02:24:53','84881b23-b73a-4b68-aeba-49b049bc63e7','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38225,159493,1,'2021-05-11 02:24:53','2021-05-11 02:24:53','ac287179-fd68-4bb3-8ee4-6f637764f103','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(38226,159496,1,'2021-05-11 02:24:53','2021-05-11 02:24:53','599243a6-348c-4838-9174-7401c6e2afbc','Department of Health','https://www.health.gov.au/',1,'outline'),(38227,159497,1,'2021-05-11 02:24:53','2021-05-11 02:24:53','cfe78f56-012c-42ad-88ec-045814170381','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(38228,159498,1,'2021-05-11 02:24:53','2021-05-11 02:24:53','ea6983e8-fe1c-4bf0-8657-b0b743f51b5e','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(38229,159504,1,'2021-05-11 02:24:56','2021-05-11 02:24:56','a5c18405-6f5a-4b74-b350-0189f8541004','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38230,159508,1,'2021-05-11 02:24:56','2021-05-11 02:24:56','03998072-6896-41b2-8f64-8ae067596a9c','For GPs',NULL,1,'outline'),(38231,159509,1,'2021-05-11 02:24:56','2021-05-11 02:24:56','5d4ec414-7a84-48a1-8d82-b643e1c2abc2','For RACFs',NULL,1,'outline'),(38232,159510,1,'2021-05-11 02:24:56','2021-05-11 02:24:56','8e0a3f64-cb8b-4099-82cf-33740f04f2b6','For community',NULL,1,'outline'),(38233,159513,1,'2021-05-11 02:24:56','2021-05-11 02:24:56','7c1e12b4-9e64-42a7-bc1d-655370ea425e','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(38234,159516,1,'2021-05-11 02:24:56','2021-05-11 02:24:56','7a780c53-ab07-4afd-b8aa-00eec7021d4e','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(38235,159518,1,'2021-05-11 02:24:56','2021-05-11 02:24:56','f9bdf767-991a-47ab-b303-c7ceec140390','24 April','https://icampaign.brightlabs.com.au/v/9655/1735694709/email.html?k=T765D-g3I3xwquDMKWDt0b1lr9SnufuSbrSQVvGq9pU',1,'solid'),(38236,159519,1,'2021-05-11 02:24:56','2021-05-11 02:24:56','f92aaacf-1679-4a5a-bce3-a11bb4601cbf','11 April','https://icampaign.brightlabs.com.au/v/9655/1735688107/email.html?k=0zbLWXL9p5GnYnEkBtLJQ-6_Jeo-PoOc5e4Ixb3AOe0',1,'solid'),(38237,159520,1,'2021-05-11 02:24:56','2021-05-11 02:24:56','aecf6d61-cc5c-4ee5-835a-9aede903c191','9 April','https://icampaign.brightlabs.com.au/v/9655/1735686917/email.html?k=wWvhac5K_2ThrjHnqFX8KD-Iowxb8LaMjuY8biU2nQw',1,'solid'),(38238,159521,1,'2021-05-11 02:24:56','2021-05-11 02:24:56','720e2442-f7e7-47e7-949d-8530c0b74198','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(38239,159522,1,'2021-05-11 02:24:56','2021-05-11 02:24:56','b82d51b9-2c18-427e-a9a3-a7c8bc911f4b','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(38240,159523,1,'2021-05-11 02:24:56','2021-05-11 02:24:56','a2486942-3809-45d9-bfe1-2003cab7bac9','15 March','https://icampaign.brightlabs.com.au/v/9655/1735670870/email.html?k=v6G-8gVJ_rvtwoUd2fpEBZ1ZIi86nI02To7omwA0FiU',1,'solid'),(38241,159525,1,'2021-05-11 02:24:56','2021-05-11 02:24:56','29526fb9-d788-43e7-9fc5-3bfdd1a0f10c','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38242,159526,1,'2021-05-11 02:24:56','2021-05-11 02:24:56','f9215896-af88-4855-91b6-f509583ad7eb','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38243,159527,1,'2021-05-11 02:24:56','2021-05-11 02:24:56','7d2f55f1-9aee-4f08-8074-b8f5f0cc8d41','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(38244,159530,1,'2021-05-11 02:24:56','2021-05-11 02:24:56','050c7ace-274a-4722-9a7b-f9a37d6f7f05','Department of Health','https://www.health.gov.au/',1,'outline'),(38245,159531,1,'2021-05-11 02:24:56','2021-05-11 02:24:56','f93b7e17-ecae-4c19-9730-72b774771eaa','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(38246,159532,1,'2021-05-11 02:24:56','2021-05-11 02:24:56','ef9ab655-eff7-47b6-8e72-f1946eddb2c7','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(38247,159538,1,'2021-05-11 02:24:59','2021-05-11 02:24:59','53f1c498-6fdb-49b9-a360-aaaf142a93a3','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38248,159542,1,'2021-05-11 02:24:59','2021-05-11 02:24:59','a2411ccb-6a63-4c64-adec-eaba61d8164a','For GPs',NULL,1,'outline'),(38249,159543,1,'2021-05-11 02:24:59','2021-05-11 02:24:59','e6bae747-9e12-41f5-8d04-3e42f40fd411','For RACFs',NULL,1,'outline'),(38250,159544,1,'2021-05-11 02:24:59','2021-05-11 02:24:59','7e511d68-bd27-4f1e-9015-d2fd87723d4b','For community',NULL,1,'outline'),(38251,159547,1,'2021-05-11 02:24:59','2021-05-11 02:24:59','f05c354f-49c8-4371-8923-34040b54c81a','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(38252,159550,1,'2021-05-11 02:24:59','2021-05-11 02:24:59','0c919423-e7c7-4128-b2a5-08903491910a','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(38253,159552,1,'2021-05-11 02:24:59','2021-05-11 02:24:59','87d798b7-5d27-46b5-8c0a-2dfb4a7f75ff','24 April','https://icampaign.brightlabs.com.au/v/9655/1735694709/email.html?k=T765D-g3I3xwquDMKWDt0b1lr9SnufuSbrSQVvGq9pU',1,'solid'),(38254,159553,1,'2021-05-11 02:24:59','2021-05-11 02:24:59','64d57e02-9bd5-480b-9a21-53cd2ab1d813','11 April','https://icampaign.brightlabs.com.au/v/9655/1735688107/email.html?k=0zbLWXL9p5GnYnEkBtLJQ-6_Jeo-PoOc5e4Ixb3AOe0',1,'solid'),(38255,159554,1,'2021-05-11 02:24:59','2021-05-11 02:24:59','14931b82-a9ec-403c-9c05-6f52b7029add','9 April','https://icampaign.brightlabs.com.au/v/9655/1735686917/email.html?k=wWvhac5K_2ThrjHnqFX8KD-Iowxb8LaMjuY8biU2nQw',1,'solid'),(38256,159555,1,'2021-05-11 02:24:59','2021-05-11 02:24:59','6f1b5933-8473-4974-b79c-479b92d2b35d','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(38257,159556,1,'2021-05-11 02:24:59','2021-05-11 02:24:59','be7795ed-7a83-458d-896c-d4e2b1508810','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(38258,159558,1,'2021-05-11 02:24:59','2021-05-11 02:24:59','5eb662e9-9c15-42a6-b71f-ddc7c9956390','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38259,159559,1,'2021-05-11 02:24:59','2021-05-11 02:24:59','7274bab8-05a7-449e-8252-275d14a2fca9','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38260,159560,1,'2021-05-11 02:24:59','2021-05-11 02:24:59','eb929e6f-1cfa-4ed7-a57b-b20d8e418363','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(38261,159563,1,'2021-05-11 02:24:59','2021-05-11 02:24:59','a1f6c08a-0ae1-48f7-b4d5-f0a475f43afb','Department of Health','https://www.health.gov.au/',1,'outline'),(38262,159564,1,'2021-05-11 02:24:59','2021-05-11 02:24:59','f8316915-e296-4d08-94d2-d45b507ff9a9','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(38263,159565,1,'2021-05-11 02:24:59','2021-05-11 02:24:59','abf0acec-f427-402e-a1cb-1de647d46244','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(38264,159571,1,'2021-05-11 02:25:51','2021-05-11 02:25:51','84151d9b-37e9-4543-9c41-f45a1b523994','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38265,159574,1,'2021-05-11 02:25:51','2021-05-11 02:25:51','a7b92cb9-f5cd-46e1-89b0-3d6333233942','For GPs',NULL,1,'outline'),(38266,159575,1,'2021-05-11 02:25:51','2021-05-11 02:25:51','ccccaca6-834f-479a-a453-79fe14eeb41d','For RACFs',NULL,1,'outline'),(38267,159576,1,'2021-05-11 02:25:51','2021-05-11 02:25:51','c200f2fe-3c4d-494c-b6bf-4a6502cb2d78','For community',NULL,1,'outline'),(38268,159579,1,'2021-05-11 02:25:51','2021-05-11 02:25:51','b9e4db4d-3f83-4996-ab50-aa0204ae55f7','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(38269,159582,1,'2021-05-11 02:25:51','2021-05-11 02:25:51','a4d0a575-03b3-46b1-b2d4-991fc44e9ca5','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(38270,159584,1,'2021-05-11 02:25:51','2021-05-11 02:25:51','84a00db3-a8ec-46c9-ac37-627d1e057452','24 April','https://icampaign.brightlabs.com.au/v/9655/1735694709/email.html?k=T765D-g3I3xwquDMKWDt0b1lr9SnufuSbrSQVvGq9pU',1,'solid'),(38271,159585,1,'2021-05-11 02:25:51','2021-05-11 02:25:51','108a446c-ade8-4beb-b700-a396990b38a6','11 April','https://icampaign.brightlabs.com.au/v/9655/1735688107/email.html?k=0zbLWXL9p5GnYnEkBtLJQ-6_Jeo-PoOc5e4Ixb3AOe0',1,'solid'),(38272,159586,1,'2021-05-11 02:25:51','2021-05-11 02:25:51','620b3576-bfb9-4b74-af0a-e868c0e445ae','9 April','https://icampaign.brightlabs.com.au/v/9655/1735686917/email.html?k=wWvhac5K_2ThrjHnqFX8KD-Iowxb8LaMjuY8biU2nQw',1,'solid'),(38273,159587,1,'2021-05-11 02:25:51','2021-05-11 02:25:51','caa4ac3a-6a39-4ef6-bc6d-ec6e794b2d9b','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(38274,159588,1,'2021-05-11 02:25:51','2021-05-11 02:25:51','9342bf13-2e34-4ba6-872a-72629d493c6e','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(38275,159590,1,'2021-05-11 02:25:51','2021-05-11 02:25:51','f9212b35-a0eb-4ca3-96e1-d9f29ae6aca8','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38276,159591,1,'2021-05-11 02:25:51','2021-05-11 02:25:51','a7cecafa-46e4-4eed-b85e-9e23afb10fb2','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38277,159592,1,'2021-05-11 02:25:51','2021-05-11 02:25:51','d9fe9688-63e6-4402-81ad-5c35693e80a7','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(38278,159595,1,'2021-05-11 02:25:51','2021-05-11 02:25:51','31b6a677-6911-4e22-85ec-068a5ffd70d2','Department of Health','https://www.health.gov.au/',1,'outline'),(38279,159596,1,'2021-05-11 02:25:51','2021-05-11 02:25:51','35a56e15-5622-46d5-859d-da283489e85e','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(38280,159597,1,'2021-05-11 02:25:51','2021-05-11 02:25:51','64855636-3239-446b-934f-3d2834384658','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(38281,159603,1,'2021-05-11 02:26:46','2021-05-11 02:26:46','8b5cff1b-01bc-4aaa-b1c7-d6ff129ef2d1','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38282,159606,1,'2021-05-11 02:26:46','2021-05-11 02:26:46','ff0e56c2-6746-4b6d-92fc-e3fdbd117e65','For GPs',NULL,1,'outline'),(38283,159607,1,'2021-05-11 02:26:46','2021-05-11 02:26:46','de20d5b0-979a-471a-a1e8-5f042211aab6','For RACFs',NULL,1,'outline'),(38284,159608,1,'2021-05-11 02:26:46','2021-05-11 02:26:46','2858b2bf-d65c-4bea-858a-2f76eabee475','For community',NULL,1,'outline'),(38285,159611,1,'2021-05-11 02:26:46','2021-05-11 02:26:46','9d4cdbdb-a0d9-4574-a88f-7cd31a0d1165','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(38286,159614,1,'2021-05-11 02:26:46','2021-05-11 02:26:46','7b15a7e0-fb2d-47db-a795-3d73d920f2c8','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(38287,159616,1,'2021-05-11 02:26:46','2021-05-11 02:26:46','04a194ff-34ab-43c5-9a2f-bf355a01dcb9','24 April','https://icampaign.brightlabs.com.au/v/9655/1735694709/email.html?k=T765D-g3I3xwquDMKWDt0b1lr9SnufuSbrSQVvGq9pU',1,'solid'),(38288,159617,1,'2021-05-11 02:26:46','2021-05-11 02:26:46','0a226caf-73da-4a96-a527-165014a926aa','11 April','https://icampaign.brightlabs.com.au/v/9655/1735688107/email.html?k=0zbLWXL9p5GnYnEkBtLJQ-6_Jeo-PoOc5e4Ixb3AOe0',1,'solid'),(38289,159618,1,'2021-05-11 02:26:46','2021-05-11 02:26:46','09f0be34-acc5-46cd-9784-875210af74d0','9 April','https://icampaign.brightlabs.com.au/v/9655/1735686917/email.html?k=wWvhac5K_2ThrjHnqFX8KD-Iowxb8LaMjuY8biU2nQw',1,'solid'),(38290,159619,1,'2021-05-11 02:26:46','2021-05-11 02:26:46','24e429f0-06b6-473f-b2a5-b83acad56b22','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(38291,159620,1,'2021-05-11 02:26:46','2021-05-11 02:26:46','51050784-de5f-4792-ac72-4329573b6fea','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(38292,159622,1,'2021-05-11 02:26:46','2021-05-11 02:26:46','14da4089-75cd-4456-b2f5-676ed353a4fe','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38293,159623,1,'2021-05-11 02:26:46','2021-05-11 02:26:46','250c95e3-fb08-4a78-9230-c3b24d666af0','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38294,159624,1,'2021-05-11 02:26:46','2021-05-11 02:26:46','44136de2-3a45-4ea2-b50f-e02251c336d0','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(38295,159627,1,'2021-05-11 02:26:46','2021-05-11 02:26:46','b30213a1-fbc4-4b5c-9e52-3056d21e0c49','Department of Health','https://www.health.gov.au/',1,'outline'),(38296,159628,1,'2021-05-11 02:26:46','2021-05-11 02:26:46','4997c33b-783f-42de-8c08-b322507dea7f','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(38297,159629,1,'2021-05-11 02:26:46','2021-05-11 02:26:46','13f0fbdc-4fa9-4b03-a2a7-dcd6635f97a2','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(38298,159635,1,'2021-05-11 02:27:00','2021-05-11 02:27:00','6285cc92-1e92-4959-8466-ac69f9a3602f','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38299,159638,1,'2021-05-11 02:27:00','2021-05-11 02:27:00','6455f652-136c-45bf-a6b0-d841485e1f62','For GPs',NULL,1,'outline'),(38300,159639,1,'2021-05-11 02:27:00','2021-05-11 02:27:00','0c214778-4fea-4c99-be87-2be84932ed2a','For RACFs',NULL,1,'outline'),(38301,159640,1,'2021-05-11 02:27:00','2021-05-11 02:27:00','1011e077-bd98-40c8-87ea-d411befab782','For community',NULL,1,'outline'),(38302,159643,1,'2021-05-11 02:27:00','2021-05-11 02:27:00','486307dc-4abb-48cc-814e-e2e488354516','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(38303,159646,1,'2021-05-11 02:27:00','2021-05-11 02:27:00','84eeac04-3467-4dfa-9890-09923d87e586','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(38304,159648,1,'2021-05-11 02:27:00','2021-05-11 02:27:00','adec5771-a278-47a3-a095-900e540fff99','24 April','https://icampaign.brightlabs.com.au/v/9655/1735694709/email.html?k=T765D-g3I3xwquDMKWDt0b1lr9SnufuSbrSQVvGq9pU',1,'solid'),(38305,159649,1,'2021-05-11 02:27:00','2021-05-11 02:27:00','e52645a6-173d-4fdb-b779-acb966ec387d','11 April','https://icampaign.brightlabs.com.au/v/9655/1735688107/email.html?k=0zbLWXL9p5GnYnEkBtLJQ-6_Jeo-PoOc5e4Ixb3AOe0',1,'solid'),(38306,159650,1,'2021-05-11 02:27:00','2021-05-11 02:27:00','125a1799-8583-42e2-afd1-c6f13f0e5c43','9 April','https://icampaign.brightlabs.com.au/v/9655/1735686917/email.html?k=wWvhac5K_2ThrjHnqFX8KD-Iowxb8LaMjuY8biU2nQw',1,'solid'),(38307,159651,1,'2021-05-11 02:27:00','2021-05-11 02:27:00','d82a2477-0d5b-4a0e-b432-c614d85f7146','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(38308,159652,1,'2021-05-11 02:27:00','2021-05-11 02:27:00','00b49a18-e4de-4a47-a886-2fa8dcf1cd1c','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(38309,159654,1,'2021-05-11 02:27:01','2021-05-11 02:27:01','9ed22438-57e0-492f-a503-edc7f2ff3e48','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38310,159655,1,'2021-05-11 02:27:01','2021-05-11 02:27:01','aecd2a9d-5eef-4a9f-9129-0a734b2ab7e0','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38311,159656,1,'2021-05-11 02:27:01','2021-05-11 02:27:01','cdce388b-f707-425f-ae59-62ae5b017d5a','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(38312,159659,1,'2021-05-11 02:27:01','2021-05-11 02:27:01','300df85e-5fa7-41f9-8080-8e2cab09b726','Department of Health','https://www.health.gov.au/',1,'outline'),(38313,159660,1,'2021-05-11 02:27:01','2021-05-11 02:27:01','78e0c706-76e1-4b78-8c2a-1155d45e5fc4','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(38314,159661,1,'2021-05-11 02:27:01','2021-05-11 02:27:01','6601b279-725f-43d0-83fc-a7192ebbbbac','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(38315,159667,1,'2021-05-11 02:34:10','2021-05-11 02:34:10','9401d7d8-fa3a-4fe2-9ae4-2b6bb4eca1eb','For GPs',NULL,1,'outline'),(38316,159668,1,'2021-05-11 02:34:10','2021-05-11 02:34:10','4e0bf884-221f-4b30-87b6-d435c42052c6','For RACFs',NULL,1,'outline'),(38317,159669,1,'2021-05-11 02:34:10','2021-05-11 02:34:10','e1df64e4-2483-45ba-b9fa-7eb1a62edd64','For community',NULL,1,'outline'),(38318,159672,1,'2021-05-11 02:34:10','2021-05-11 02:34:10','f2bca8ed-53ab-4c08-9d5f-c09e9c0d576e','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38319,159675,1,'2021-05-11 02:34:10','2021-05-11 02:34:10','badcde19-e8e6-4922-9a19-d849a2931938','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(38320,159678,1,'2021-05-11 02:34:10','2021-05-11 02:34:10','b97ccc71-7a13-46f4-a6e2-31f8c5917e35','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(38321,159680,1,'2021-05-11 02:34:10','2021-05-11 02:34:10','c763ad58-c63b-41b8-ac6b-83d0cfd5d434','24 April','https://icampaign.brightlabs.com.au/v/9655/1735694709/email.html?k=T765D-g3I3xwquDMKWDt0b1lr9SnufuSbrSQVvGq9pU',1,'solid'),(38322,159681,1,'2021-05-11 02:34:10','2021-05-11 02:34:10','5b34b2e7-4593-4ff8-b72f-39327ae6b95b','11 April','https://icampaign.brightlabs.com.au/v/9655/1735688107/email.html?k=0zbLWXL9p5GnYnEkBtLJQ-6_Jeo-PoOc5e4Ixb3AOe0',1,'solid'),(38323,159682,1,'2021-05-11 02:34:10','2021-05-11 02:34:10','5044ab34-6ad7-409d-843c-368cae66e03d','9 April','https://icampaign.brightlabs.com.au/v/9655/1735686917/email.html?k=wWvhac5K_2ThrjHnqFX8KD-Iowxb8LaMjuY8biU2nQw',1,'solid'),(38324,159683,1,'2021-05-11 02:34:10','2021-05-11 02:34:10','6aff433b-51cd-4b1d-a3ea-8259bf35746a','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(38325,159684,1,'2021-05-11 02:34:10','2021-05-11 02:34:10','0bf645a6-44fb-4e75-9a16-5236245d1765','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(38326,159686,1,'2021-05-11 02:34:10','2021-05-11 02:34:10','20ab7a0d-92bd-495e-ab87-3557e21f80fe','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38327,159687,1,'2021-05-11 02:34:10','2021-05-11 02:34:10','a92add6a-d080-4059-851d-e8e7fc6574bc','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38328,159688,1,'2021-05-11 02:34:10','2021-05-11 02:34:10','b947c4f8-7fe1-4ff7-adab-180d837b9e3f','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(38329,159691,1,'2021-05-11 02:34:10','2021-05-11 02:34:10','fed3244e-2e25-4f78-8f7b-0eeda788b9fe','Department of Health','https://www.health.gov.au/',1,'outline'),(38330,159692,1,'2021-05-11 02:34:10','2021-05-11 02:34:10','e96834c2-5733-4f98-b2bd-267d3d243afc','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(38331,159693,1,'2021-05-11 02:34:10','2021-05-11 02:34:10','0c04e71d-7ae8-4ed9-81ed-bb1847ddaf31','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(38332,159699,1,'2021-05-11 02:34:38','2021-05-11 02:34:38','6d822668-6487-4b7e-ba8b-672212048fbc','For GPs',NULL,1,'outline'),(38333,159700,1,'2021-05-11 02:34:38','2021-05-11 02:34:38','b9fa75b4-c10a-46a2-8caa-fe7e8a50c7eb','For RACFs',NULL,1,'outline'),(38334,159701,1,'2021-05-11 02:34:38','2021-05-11 02:34:38','b30973b7-4304-4a36-b38a-909198945773','For community',NULL,1,'outline'),(38335,159704,1,'2021-05-11 02:34:38','2021-05-11 02:34:38','70dff4a2-abdc-4ed2-b350-f98076d192e2','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38336,159707,1,'2021-05-11 02:34:38','2021-05-11 02:34:38','3303defb-5048-47a5-a442-3529a8aa3d05','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(38337,159710,1,'2021-05-11 02:34:38','2021-05-11 02:34:38','5f7a8f35-eceb-4365-a24c-6def047fc8b3','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(38338,159712,1,'2021-05-11 02:34:38','2021-05-11 02:34:38','66d98203-9361-460f-90dd-002079d52511','24 April','https://icampaign.brightlabs.com.au/v/9655/1735694709/email.html?k=T765D-g3I3xwquDMKWDt0b1lr9SnufuSbrSQVvGq9pU',1,'solid'),(38339,159713,1,'2021-05-11 02:34:38','2021-05-11 02:34:38','b0410d08-3471-4113-ad15-d38a181194e3','11 April','https://icampaign.brightlabs.com.au/v/9655/1735688107/email.html?k=0zbLWXL9p5GnYnEkBtLJQ-6_Jeo-PoOc5e4Ixb3AOe0',1,'solid'),(38340,159714,1,'2021-05-11 02:34:38','2021-05-11 02:34:38','dbce2cef-cddf-4f88-b0d4-622712392515','9 April','https://icampaign.brightlabs.com.au/v/9655/1735686917/email.html?k=wWvhac5K_2ThrjHnqFX8KD-Iowxb8LaMjuY8biU2nQw',1,'solid'),(38341,159715,1,'2021-05-11 02:34:38','2021-05-11 02:34:38','5121e084-cd48-4532-8af4-293e0a84c262','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(38342,159716,1,'2021-05-11 02:34:38','2021-05-11 02:34:38','a9748129-4283-4773-98ea-78be3c50de82','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid');
INSERT INTO `matrixcontent_buttons` VALUES (38343,159718,1,'2021-05-11 02:34:38','2021-05-11 02:34:38','97210eaf-1248-40cb-85a2-816f3acda459','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38344,159719,1,'2021-05-11 02:34:38','2021-05-11 02:34:38','053f4b94-b402-4cab-bd41-fba401f8fa33','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38345,159720,1,'2021-05-11 02:34:38','2021-05-11 02:34:38','0a0558f5-d31d-4825-a5fb-06fc1d6df1fc','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(38346,159723,1,'2021-05-11 02:34:38','2021-05-11 02:34:38','7d42f794-021d-4535-98e8-e536f3c6e955','Department of Health','https://www.health.gov.au/',1,'outline'),(38347,159724,1,'2021-05-11 02:34:38','2021-05-11 02:34:38','8b7365b8-9de7-497e-bb1d-8b0d3d9d2224','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(38348,159725,1,'2021-05-11 02:34:38','2021-05-11 02:34:38','e7241693-5750-47d0-bc9b-7202a8fba242','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(38349,159731,1,'2021-05-11 02:35:08','2021-05-11 02:35:08','64ee79f4-9e00-4b35-8eda-c54fc5ab98dd','For GPs',NULL,1,'outline'),(38350,159732,1,'2021-05-11 02:35:08','2021-05-11 02:35:08','048ea135-1886-4c9a-8464-8ecbd6a88214','For RACFs',NULL,1,'outline'),(38351,159733,1,'2021-05-11 02:35:08','2021-05-11 02:35:08','6e70b7fc-bfb5-4bdd-b646-97fc9f19f4c1','For community',NULL,1,'outline'),(38352,159736,1,'2021-05-11 02:35:08','2021-05-11 02:35:08','ff6ddab3-9287-4c43-914d-eda1b5239e93','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38353,159739,1,'2021-05-11 02:35:08','2021-05-11 02:35:08','f38882f7-54d7-47a7-9f52-ddc84585090e','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(38354,159742,1,'2021-05-11 02:35:08','2021-05-11 02:35:08','e9ee7068-a498-4d9c-8c87-54476acf2199','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(38355,159744,1,'2021-05-11 02:35:08','2021-05-11 02:35:08','10d189b1-90dc-4dbb-9188-30fcd597f328','24 April','https://icampaign.brightlabs.com.au/v/9655/1735694709/email.html?k=T765D-g3I3xwquDMKWDt0b1lr9SnufuSbrSQVvGq9pU',1,'solid'),(38356,159745,1,'2021-05-11 02:35:08','2021-05-11 02:35:08','4e1ddea2-a658-404e-91d9-c6891d26ea60','11 April','https://icampaign.brightlabs.com.au/v/9655/1735688107/email.html?k=0zbLWXL9p5GnYnEkBtLJQ-6_Jeo-PoOc5e4Ixb3AOe0',1,'solid'),(38357,159746,1,'2021-05-11 02:35:08','2021-05-11 02:35:08','85d19ad6-1b11-45ee-8a87-5194263100d1','9 April','https://icampaign.brightlabs.com.au/v/9655/1735686917/email.html?k=wWvhac5K_2ThrjHnqFX8KD-Iowxb8LaMjuY8biU2nQw',1,'solid'),(38358,159747,1,'2021-05-11 02:35:08','2021-05-11 02:35:08','97453dc4-cdd9-4169-92ba-ea76da639aca','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(38359,159748,1,'2021-05-11 02:35:08','2021-05-11 02:35:08','539af92e-c1c1-4aca-a7dd-613ae053b1e9','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(38360,159750,1,'2021-05-11 02:35:08','2021-05-11 02:35:08','e326217f-23bb-43b0-8423-639359f67b51','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38361,159751,1,'2021-05-11 02:35:08','2021-05-11 02:35:08','28dbf25b-86b9-40af-966c-25dc40137325','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38362,159752,1,'2021-05-11 02:35:08','2021-05-11 02:35:08','a3a8a953-c29b-45e3-972c-00b48b7a0b6f','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(38363,159755,1,'2021-05-11 02:35:08','2021-05-11 02:35:08','39211e2e-e563-4524-93af-84c833584b65','Department of Health','https://www.health.gov.au/',1,'outline'),(38364,159756,1,'2021-05-11 02:35:08','2021-05-11 02:35:08','b0a23ebf-01ed-46b6-8412-d9554e97a46e','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(38365,159757,1,'2021-05-11 02:35:08','2021-05-11 02:35:08','df0e07b6-aa7a-4389-90d5-0700f4ac4a4c','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(38366,159763,1,'2021-05-11 02:35:32','2021-05-11 02:35:32','5183870c-492c-47f4-863e-41a02da8a073','For GPs',NULL,1,'outline'),(38367,159764,1,'2021-05-11 02:35:32','2021-05-11 02:35:32','15362d7c-9027-438d-8209-be97ce323583','For RACFs',NULL,1,'outline'),(38368,159765,1,'2021-05-11 02:35:32','2021-05-11 02:35:32','b6fa702a-b95a-4a3e-a39b-6b73a3c2a147','For community',NULL,1,'outline'),(38369,159768,1,'2021-05-11 02:35:32','2021-05-11 02:35:32','e2090479-e57b-47f4-9475-ada9355ce0f1','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38370,159771,1,'2021-05-11 02:35:32','2021-05-11 02:35:32','f9b9732e-46c4-49cd-8162-527a0da38236','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(38371,159774,1,'2021-05-11 02:35:32','2021-05-11 02:35:32','35a279fe-7482-4520-8218-98bb714513b3','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(38372,159776,1,'2021-05-11 02:35:32','2021-05-11 02:35:32','f7581e01-2bee-4818-919a-d2606ce8ea1d','24 April','https://icampaign.brightlabs.com.au/v/9655/1735694709/email.html?k=T765D-g3I3xwquDMKWDt0b1lr9SnufuSbrSQVvGq9pU',1,'solid'),(38373,159777,1,'2021-05-11 02:35:32','2021-05-11 02:35:32','0a4c2081-380e-4167-85a1-75acc70fe5ad','11 April','https://icampaign.brightlabs.com.au/v/9655/1735688107/email.html?k=0zbLWXL9p5GnYnEkBtLJQ-6_Jeo-PoOc5e4Ixb3AOe0',1,'solid'),(38374,159778,1,'2021-05-11 02:35:32','2021-05-11 02:35:32','58c2cfc5-570b-442e-8aa9-57d8af346251','9 April','https://icampaign.brightlabs.com.au/v/9655/1735686917/email.html?k=wWvhac5K_2ThrjHnqFX8KD-Iowxb8LaMjuY8biU2nQw',1,'solid'),(38375,159779,1,'2021-05-11 02:35:32','2021-05-11 02:35:32','c6382f67-23d5-457f-8734-86a05345d7ee','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(38376,159780,1,'2021-05-11 02:35:32','2021-05-11 02:35:32','cd13c8e1-e00c-4543-9b22-0efca239c950','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(38377,159782,1,'2021-05-11 02:35:32','2021-05-11 02:35:32','e1c73b78-73a7-4c25-a163-a5a9555036ac','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38378,159783,1,'2021-05-11 02:35:32','2021-05-11 02:35:32','25bab30a-d3ab-4365-8b62-09ab66850bb3','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38379,159784,1,'2021-05-11 02:35:32','2021-05-11 02:35:32','f089ab9b-a55f-4523-8c28-1b6e3e6897d2','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(38380,159787,1,'2021-05-11 02:35:32','2021-05-11 02:35:32','e503c788-e0b6-4ad3-8736-d590bb189dd0','Department of Health','https://www.health.gov.au/',1,'outline'),(38381,159788,1,'2021-05-11 02:35:32','2021-05-11 02:35:32','43ddf24e-4f95-4049-ac2d-179ba69e320e','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(38382,159789,1,'2021-05-11 02:35:32','2021-05-11 02:35:32','3ef183e1-836d-463a-b575-294c86ad32f9','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(38383,159795,1,'2021-05-11 02:35:48','2021-05-11 02:35:48','bf5d8055-7a78-457f-847b-7c022e5bf0e4','For GPs',NULL,1,'outline'),(38384,159796,1,'2021-05-11 02:35:48','2021-05-11 02:35:48','0db78fbd-0446-472f-931b-3550a512d97b','For RACFs',NULL,1,'outline'),(38385,159797,1,'2021-05-11 02:35:48','2021-05-11 02:35:48','5b480376-bf5d-49ae-9993-fd1f98fa3da7','For community',NULL,1,'outline'),(38386,159800,1,'2021-05-11 02:35:48','2021-05-11 02:35:48','5ae62827-a220-42d1-b113-cc433d1ae4bd','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38387,159803,1,'2021-05-11 02:35:49','2021-05-11 02:35:49','54400e27-a9ae-4001-8a6a-ae8c6c107970','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(38388,159806,1,'2021-05-11 02:35:49','2021-05-11 02:35:49','d43be4c7-0da3-4260-a691-e719305a273c','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(38389,159808,1,'2021-05-11 02:35:49','2021-05-11 02:35:49','0c44a13c-7dad-4dbb-a2eb-2c3334a48eab','24 April','https://icampaign.brightlabs.com.au/v/9655/1735694709/email.html?k=T765D-g3I3xwquDMKWDt0b1lr9SnufuSbrSQVvGq9pU',1,'solid'),(38390,159809,1,'2021-05-11 02:35:49','2021-05-11 02:35:49','13d50949-756c-498e-82e7-9dc1a2cffd0f','11 April','https://icampaign.brightlabs.com.au/v/9655/1735688107/email.html?k=0zbLWXL9p5GnYnEkBtLJQ-6_Jeo-PoOc5e4Ixb3AOe0',1,'solid'),(38391,159810,1,'2021-05-11 02:35:49','2021-05-11 02:35:49','03e8e117-54d5-4a9e-98ab-4dfd665a7ec0','9 April','https://icampaign.brightlabs.com.au/v/9655/1735686917/email.html?k=wWvhac5K_2ThrjHnqFX8KD-Iowxb8LaMjuY8biU2nQw',1,'solid'),(38392,159811,1,'2021-05-11 02:35:49','2021-05-11 02:35:49','eea96636-7307-4444-9869-94f0dd0ead97','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(38393,159812,1,'2021-05-11 02:35:49','2021-05-11 02:35:49','453a0c0a-5df6-485b-ba7c-ef8bfebd1f4c','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(38394,159814,1,'2021-05-11 02:35:49','2021-05-11 02:35:49','4bdd1432-964b-487f-9c9b-a62d99822d24','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38395,159815,1,'2021-05-11 02:35:49','2021-05-11 02:35:49','30284bcc-a186-4dc1-97af-213a41d01fd2','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38396,159816,1,'2021-05-11 02:35:49','2021-05-11 02:35:49','2e1992a8-6437-43aa-ac18-a9928ccd81a9','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(38397,159819,1,'2021-05-11 02:35:49','2021-05-11 02:35:49','c899e5e7-6247-4dac-99a3-eb4696d5d7fb','Department of Health','https://www.health.gov.au/',1,'outline'),(38398,159820,1,'2021-05-11 02:35:49','2021-05-11 02:35:49','f59f2898-a228-4f3b-9eb7-fd58ab3483d0','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(38399,159821,1,'2021-05-11 02:35:49','2021-05-11 02:35:49','83869b06-de85-4d22-aed3-9e926cc3a50e','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(38400,159827,1,'2021-05-11 02:36:00','2021-05-11 02:36:00','b8247078-5af1-46bd-a408-641f8201ab8c','For GPs',NULL,1,'outline'),(38401,159828,1,'2021-05-11 02:36:00','2021-05-11 02:36:00','816fe091-7327-47f6-9455-54132b9928c7','For RACFs',NULL,1,'outline'),(38402,159829,1,'2021-05-11 02:36:00','2021-05-11 02:36:00','83d1b9e2-0b22-4630-b729-54a194a40c80','For community',NULL,1,'outline'),(38403,159832,1,'2021-05-11 02:36:00','2021-05-11 02:36:00','b920bbc7-b5e3-4866-8edf-99e2e7a27d3a','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38404,159835,1,'2021-05-11 02:36:00','2021-05-11 02:36:00','b4fe73df-6e46-4c6b-9176-ecd4853d33c2','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(38405,159838,1,'2021-05-11 02:36:00','2021-05-11 02:36:00','1be4f907-c23c-42cf-a4c2-9bd593c88efd','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(38406,159840,1,'2021-05-11 02:36:00','2021-05-11 02:36:00','f8e2d0fa-a21f-4d8f-9eda-e9276e7e3faa','24 April','https://icampaign.brightlabs.com.au/v/9655/1735694709/email.html?k=T765D-g3I3xwquDMKWDt0b1lr9SnufuSbrSQVvGq9pU',1,'solid'),(38407,159841,1,'2021-05-11 02:36:00','2021-05-11 02:36:00','c05188ac-f609-492a-96d8-876dcd0cf309','11 April','https://icampaign.brightlabs.com.au/v/9655/1735688107/email.html?k=0zbLWXL9p5GnYnEkBtLJQ-6_Jeo-PoOc5e4Ixb3AOe0',1,'solid'),(38408,159842,1,'2021-05-11 02:36:00','2021-05-11 02:36:00','a87e0b71-a606-4bb1-a1b8-ed112e648297','9 April','https://icampaign.brightlabs.com.au/v/9655/1735686917/email.html?k=wWvhac5K_2ThrjHnqFX8KD-Iowxb8LaMjuY8biU2nQw',1,'solid'),(38409,159843,1,'2021-05-11 02:36:00','2021-05-11 02:36:00','844c4231-1e6a-4e50-81c1-89d3d111e663','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(38410,159844,1,'2021-05-11 02:36:00','2021-05-11 02:36:00','fa87a5e8-f914-4507-b6bc-5e8b4c06ce82','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(38411,159846,1,'2021-05-11 02:36:00','2021-05-11 02:36:00','d5feeaf9-8d01-4063-8c9b-b9dcdf2de2e2','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38412,159847,1,'2021-05-11 02:36:00','2021-05-11 02:36:00','6737c5a3-9b49-4c04-a500-cfc6ac0ce0bf','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38413,159848,1,'2021-05-11 02:36:00','2021-05-11 02:36:00','5af429f1-a012-4ea2-bec8-963bb108402e','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(38414,159851,1,'2021-05-11 02:36:00','2021-05-11 02:36:00','01fbd893-4bc6-4557-b41c-d85903fe0afa','Department of Health','https://www.health.gov.au/',1,'outline'),(38415,159852,1,'2021-05-11 02:36:00','2021-05-11 02:36:00','deaa81fc-f158-4a1b-b256-ed81ee644bf4','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(38416,159853,1,'2021-05-11 02:36:00','2021-05-11 02:36:00','b0a974d7-7e1b-47af-80b8-502e200e0ae2','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(38417,159859,1,'2021-05-11 02:36:01','2021-05-11 02:36:01','0f1798d5-5568-4d15-b040-3cb53e0de5c2','For GPs',NULL,1,'outline'),(38418,159860,1,'2021-05-11 02:36:01','2021-05-11 02:36:01','a6768003-a165-4317-9d75-d5d6f1b25f83','For RACFs',NULL,1,'solid'),(38419,159861,1,'2021-05-11 02:36:02','2021-05-11 02:36:02','b5ff052c-a3d9-4420-9d6c-a7a85f43d5ac','For community',NULL,1,'outline'),(38420,159864,1,'2021-05-11 02:36:02','2021-05-11 02:36:02','d72ce40d-37ec-4d3f-9ffb-8002ecb411f3','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38421,159867,1,'2021-05-11 02:36:02','2021-05-11 02:36:02','b1405c9d-da11-4482-acc5-fcdf677526d1','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(38422,159870,1,'2021-05-11 02:36:02','2021-05-11 02:36:02','fe706d1a-1002-4dcd-89fb-a4765ecfb2e0','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(38423,159872,1,'2021-05-11 02:36:02','2021-05-11 02:36:02','9ae47aaf-fd0e-43cc-95aa-18310bb9d249','24 April','https://icampaign.brightlabs.com.au/v/9655/1735694709/email.html?k=T765D-g3I3xwquDMKWDt0b1lr9SnufuSbrSQVvGq9pU',1,'solid'),(38424,159873,1,'2021-05-11 02:36:02','2021-05-11 02:36:02','f80fd0c4-7ca3-4b11-acfd-ed9cf3fa61b1','11 April','https://icampaign.brightlabs.com.au/v/9655/1735688107/email.html?k=0zbLWXL9p5GnYnEkBtLJQ-6_Jeo-PoOc5e4Ixb3AOe0',1,'solid'),(38425,159874,1,'2021-05-11 02:36:02','2021-05-11 02:36:02','fb37d1fd-741f-496f-b2a6-c6f04c949c7b','9 April','https://icampaign.brightlabs.com.au/v/9655/1735686917/email.html?k=wWvhac5K_2ThrjHnqFX8KD-Iowxb8LaMjuY8biU2nQw',1,'solid'),(38426,159875,1,'2021-05-11 02:36:02','2021-05-11 02:36:02','fe09f1c5-78ef-43a1-8963-640cbb328297','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(38427,159876,1,'2021-05-11 02:36:02','2021-05-11 02:36:02','e8df7002-1850-4f34-8b74-232e61dd23d1','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(38428,159878,1,'2021-05-11 02:36:02','2021-05-11 02:36:02','98154acb-7903-46b9-b0b4-9cd361133fac','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38429,159879,1,'2021-05-11 02:36:02','2021-05-11 02:36:02','ebfbbdf4-f321-4ce2-b02a-eb81cf7cba25','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38430,159880,1,'2021-05-11 02:36:02','2021-05-11 02:36:02','c3167554-0fc2-4579-9953-fc193703f236','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(38431,159883,1,'2021-05-11 02:36:02','2021-05-11 02:36:02','ea637bbe-05b1-4d5a-a695-d6cae16db728','Department of Health','https://www.health.gov.au/',1,'outline'),(38432,159884,1,'2021-05-11 02:36:02','2021-05-11 02:36:02','1df42f6b-2eb7-4f8a-8220-82d232cfcbe8','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(38433,159885,1,'2021-05-11 02:36:02','2021-05-11 02:36:02','5c1f604b-3021-4fe4-ad06-42fb71611bf0','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(38434,159891,1,'2021-05-11 02:36:11','2021-05-11 02:36:11','e0cbd9c4-d1ed-447f-b859-4e72d6550800','For GPs',NULL,1,'solid'),(38435,159892,1,'2021-05-11 02:36:11','2021-05-11 02:36:11','48890d5c-bac6-4df2-a132-d1f77202c640','For RACFs',NULL,1,'solid'),(38436,159893,1,'2021-05-11 02:36:11','2021-05-11 02:36:11','69467674-0194-4186-9990-32a34a4b386d','For community',NULL,1,'outline'),(38437,159896,1,'2021-05-11 02:36:11','2021-05-11 02:36:11','dbc7e55e-144a-4dd2-8a1e-50ffb1db4389','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38438,159899,1,'2021-05-11 02:36:11','2021-05-11 02:36:11','6b7c94b6-b6c9-405a-8c01-8bc498bc340f','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(38439,159902,1,'2021-05-11 02:36:11','2021-05-11 02:36:11','b9533536-6d14-47fe-83b8-8fc973af2b51','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(38440,159904,1,'2021-05-11 02:36:11','2021-05-11 02:36:11','7b24ddd5-d8d5-4901-9019-96831e398792','24 April','https://icampaign.brightlabs.com.au/v/9655/1735694709/email.html?k=T765D-g3I3xwquDMKWDt0b1lr9SnufuSbrSQVvGq9pU',1,'solid'),(38441,159905,1,'2021-05-11 02:36:11','2021-05-11 02:36:11','173514a3-7c44-4dc8-a947-adecc73bee47','11 April','https://icampaign.brightlabs.com.au/v/9655/1735688107/email.html?k=0zbLWXL9p5GnYnEkBtLJQ-6_Jeo-PoOc5e4Ixb3AOe0',1,'solid'),(38442,159906,1,'2021-05-11 02:36:11','2021-05-11 02:36:11','8322ca77-c7dc-4043-a77e-16b4a18c9b6c','9 April','https://icampaign.brightlabs.com.au/v/9655/1735686917/email.html?k=wWvhac5K_2ThrjHnqFX8KD-Iowxb8LaMjuY8biU2nQw',1,'solid'),(38443,159907,1,'2021-05-11 02:36:11','2021-05-11 02:36:11','0be07899-04f9-44a1-bf93-5c417850a686','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(38444,159908,1,'2021-05-11 02:36:11','2021-05-11 02:36:11','03c8223e-db1e-4994-a154-aa59125052c2','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(38445,159910,1,'2021-05-11 02:36:11','2021-05-11 02:36:11','ee90a7ca-6f33-4f7f-b139-01269248aa6c','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38446,159911,1,'2021-05-11 02:36:11','2021-05-11 02:36:11','3e29de20-e102-401c-b509-eb31901c4cc6','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38447,159912,1,'2021-05-11 02:36:11','2021-05-11 02:36:11','61b31568-110f-4088-a1f6-a393b5fd9f97','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(38448,159915,1,'2021-05-11 02:36:11','2021-05-11 02:36:11','6f021f43-8996-4ca0-8a31-1703f4e34de6','Department of Health','https://www.health.gov.au/',1,'outline'),(38449,159916,1,'2021-05-11 02:36:11','2021-05-11 02:36:11','663146bb-ef77-46b2-86cb-bfb3c2cf244c','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(38450,159917,1,'2021-05-11 02:36:11','2021-05-11 02:36:11','c28b69d3-4d11-47da-8cf8-c8ad87786d6b','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(38451,159923,1,'2021-05-11 02:36:13','2021-05-11 02:36:13','8d1953e3-f0e8-458f-8560-79cfcf8617d2','For GPs',NULL,1,'solid'),(38452,159924,1,'2021-05-11 02:36:13','2021-05-11 02:36:13','073e6e66-a50d-4292-9d9a-f0a4564209ce','For RACFs',NULL,1,'solid'),(38453,159925,1,'2021-05-11 02:36:13','2021-05-11 02:36:13','27ee1f7e-6933-4860-a201-a80ce35dc960','For community',NULL,1,'solid'),(38454,159928,1,'2021-05-11 02:36:13','2021-05-11 02:36:13','c56c61c4-137f-4885-9f59-10fced9d396e','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38455,159931,1,'2021-05-11 02:36:13','2021-05-11 02:36:13','834d1104-442f-4b66-91b0-1f43fd49a978','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(38456,159934,1,'2021-05-11 02:36:13','2021-05-11 02:36:13','2dac68c7-e8ae-4eb6-a95d-f80ae6e4df44','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(38457,159936,1,'2021-05-11 02:36:13','2021-05-11 02:36:13','f8d566af-9dd4-422c-826c-fb41f5468f30','24 April','https://icampaign.brightlabs.com.au/v/9655/1735694709/email.html?k=T765D-g3I3xwquDMKWDt0b1lr9SnufuSbrSQVvGq9pU',1,'solid'),(38458,159937,1,'2021-05-11 02:36:13','2021-05-11 02:36:13','a39636e8-f3ba-4044-8e66-070f37652009','11 April','https://icampaign.brightlabs.com.au/v/9655/1735688107/email.html?k=0zbLWXL9p5GnYnEkBtLJQ-6_Jeo-PoOc5e4Ixb3AOe0',1,'solid'),(38459,159938,1,'2021-05-11 02:36:13','2021-05-11 02:36:13','04c1cbb1-c989-4708-8aa5-858914a818ce','9 April','https://icampaign.brightlabs.com.au/v/9655/1735686917/email.html?k=wWvhac5K_2ThrjHnqFX8KD-Iowxb8LaMjuY8biU2nQw',1,'solid'),(38460,159939,1,'2021-05-11 02:36:13','2021-05-11 02:36:13','8bafeecb-1da0-43f6-b94c-ff78cf84d8c6','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(38461,159940,1,'2021-05-11 02:36:13','2021-05-11 02:36:13','f9633db0-b64f-484d-9765-f78e8628d768','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(38462,159942,1,'2021-05-11 02:36:13','2021-05-11 02:36:13','6b5fceea-816e-452c-9d51-b73437a01145','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38463,159943,1,'2021-05-11 02:36:13','2021-05-11 02:36:13','9b6192bf-d55a-4dc9-ae99-d5e52f805c84','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38464,159944,1,'2021-05-11 02:36:13','2021-05-11 02:36:13','e534eeb5-918c-4bb2-ae10-af42d3dd0eab','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(38465,159947,1,'2021-05-11 02:36:13','2021-05-11 02:36:13','665bc0a1-0168-401e-ab48-1b2a699df465','Department of Health','https://www.health.gov.au/',1,'outline'),(38466,159948,1,'2021-05-11 02:36:13','2021-05-11 02:36:13','fb65b7a9-164b-4b7f-ac9e-64ce6b5f0f4c','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(38467,159949,1,'2021-05-11 02:36:13','2021-05-11 02:36:13','807d0e46-ed32-43eb-bb08-96aa3470f99e','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(38468,159955,1,'2021-05-11 02:36:35','2021-05-11 02:36:35','716b8473-2bb6-4267-8230-1c80da34498c','For GPs',NULL,1,'solid'),(38469,159956,1,'2021-05-11 02:36:35','2021-05-11 02:36:35','dc9f4212-26b9-4f38-939e-18b5761f9fcf','For RACFs',NULL,1,'solid'),(38470,159957,1,'2021-05-11 02:36:35','2021-05-11 02:36:35','c4c1710c-896c-49e7-a91c-d5a20b17ac32','For community',NULL,1,'solid'),(38471,159960,1,'2021-05-11 02:36:35','2021-05-11 02:36:35','d0fcc7e0-cf75-4ceb-a8e1-c24dd88f7fc7','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38472,159963,1,'2021-05-11 02:36:35','2021-05-11 02:36:35','5598c11e-a012-4947-9cd9-fbec72823a9b','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(38473,159966,1,'2021-05-11 02:36:36','2021-05-11 02:36:36','6d7b67a3-8d8a-4345-8703-83e4d50728c8','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(38474,159968,1,'2021-05-11 02:36:36','2021-05-11 02:36:36','96568a4c-b754-4978-9a00-ec897db5d7cc','24 April','https://icampaign.brightlabs.com.au/v/9655/1735694709/email.html?k=T765D-g3I3xwquDMKWDt0b1lr9SnufuSbrSQVvGq9pU',1,'solid'),(38475,159969,1,'2021-05-11 02:36:36','2021-05-11 02:36:36','af786eb6-380a-4ca7-b749-bfca33716cbd','11 April','https://icampaign.brightlabs.com.au/v/9655/1735688107/email.html?k=0zbLWXL9p5GnYnEkBtLJQ-6_Jeo-PoOc5e4Ixb3AOe0',1,'solid'),(38476,159970,1,'2021-05-11 02:36:36','2021-05-11 02:36:36','6b3fd72e-7f64-4c9e-9f26-608c4c57332a','9 April','https://icampaign.brightlabs.com.au/v/9655/1735686917/email.html?k=wWvhac5K_2ThrjHnqFX8KD-Iowxb8LaMjuY8biU2nQw',1,'solid'),(38477,159971,1,'2021-05-11 02:36:36','2021-05-11 02:36:36','b42f5670-7913-4610-b569-c570aaab3a23','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(38478,159972,1,'2021-05-11 02:36:36','2021-05-11 02:36:36','12594dcf-2eb2-48d8-a86b-4ce156bae925','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(38479,159974,1,'2021-05-11 02:36:36','2021-05-11 02:36:36','1fd769a8-c082-4b62-b225-bbe03cfc40b9','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38480,159975,1,'2021-05-11 02:36:36','2021-05-11 02:36:36','00d0fbf8-7c9b-4cf6-a4ba-22ccbcde75ab','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38481,159976,1,'2021-05-11 02:36:36','2021-05-11 02:36:36','e1ba248b-08f2-40a5-aee2-3395126d0f3a','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(38482,159979,1,'2021-05-11 02:36:36','2021-05-11 02:36:36','cb13093f-d721-4503-8f77-d76940764379','Department of Health','https://www.health.gov.au/',1,'outline'),(38483,159980,1,'2021-05-11 02:36:36','2021-05-11 02:36:36','f07f67af-e7ab-496f-81e0-26f1369d22de','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(38484,159981,1,'2021-05-11 02:36:36','2021-05-11 02:36:36','0f5d36fc-3390-4e1c-bde4-8a9b173bb858','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(38485,159987,1,'2021-05-11 02:37:44','2021-05-11 02:37:44','b7b82ef1-f52f-4453-a986-4277d6f4e500','For GPs',NULL,1,'solid'),(38486,159988,1,'2021-05-11 02:37:44','2021-05-11 02:37:44','681c5700-84af-4d60-81a6-729610ba534e','For RACFs',NULL,1,'solid'),(38487,159989,1,'2021-05-11 02:37:44','2021-05-11 02:37:44','d389c819-2769-4e17-b3e5-1ba8bc3ce746','For community',NULL,1,'solid'),(38488,159992,1,'2021-05-11 02:37:44','2021-05-11 02:37:44','51a82f8c-f52b-4687-b790-c2820ca18450','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38489,159995,1,'2021-05-11 02:37:44','2021-05-11 02:37:44','dd4b46c4-01df-40d2-9751-eff90efa7cba','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(38490,159998,1,'2021-05-11 02:37:44','2021-05-11 02:37:44','b3b1ac3f-af93-4390-a0eb-bac2404a6594','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(38491,160000,1,'2021-05-11 02:37:44','2021-05-11 02:37:44','01043d8e-16af-4039-afa6-b49e4d66617c','24 April','https://icampaign.brightlabs.com.au/v/9655/1735694709/email.html?k=T765D-g3I3xwquDMKWDt0b1lr9SnufuSbrSQVvGq9pU',1,'solid'),(38492,160001,1,'2021-05-11 02:37:44','2021-05-11 02:37:44','d86b37f8-d138-4a06-ac59-9353d0f4a255','11 April','https://icampaign.brightlabs.com.au/v/9655/1735688107/email.html?k=0zbLWXL9p5GnYnEkBtLJQ-6_Jeo-PoOc5e4Ixb3AOe0',1,'solid'),(38493,160002,1,'2021-05-11 02:37:44','2021-05-11 02:37:44','83568815-bc12-4be6-8d04-490f430b182f','9 April','https://icampaign.brightlabs.com.au/v/9655/1735686917/email.html?k=wWvhac5K_2ThrjHnqFX8KD-Iowxb8LaMjuY8biU2nQw',1,'solid'),(38494,160003,1,'2021-05-11 02:37:44','2021-05-11 02:37:44','72cdbb9b-c8d6-44f8-986a-ff766280728a','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(38495,160004,1,'2021-05-11 02:37:44','2021-05-11 02:37:44','95654646-64f0-4a97-a4fd-226f6cf059c5','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(38496,160006,1,'2021-05-11 02:37:44','2021-05-11 02:37:44','ffdcd37d-48d2-4f78-aaa7-b693e3cfcdb2','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38497,160007,1,'2021-05-11 02:37:44','2021-05-11 02:37:44','5e3c3d86-5c81-4a48-8e61-49ff9b495d0f','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38498,160008,1,'2021-05-11 02:37:44','2021-05-11 02:37:44','8de3597d-660d-43a6-9016-5859d6ed987d','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(38499,160011,1,'2021-05-11 02:37:44','2021-05-11 02:37:44','333857cc-9e44-4234-9a13-4dd1e53dedcb','Department of Health','https://www.health.gov.au/',1,'outline'),(38500,160012,1,'2021-05-11 02:37:44','2021-05-11 02:37:44','6fed89f3-b600-41da-a72b-06dc0af4c9ea','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(38501,160013,1,'2021-05-11 02:37:44','2021-05-11 02:37:44','9d09b29c-e552-4643-b909-dbf7d865e8e9','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(38502,160019,1,'2021-05-11 02:38:05','2021-05-11 02:38:05','99458c62-a008-4cdb-8105-8063ecaa051b','For GPs',NULL,1,'solid'),(38503,160020,1,'2021-05-11 02:38:05','2021-05-11 02:38:05','9f8e3ff6-7550-4a03-96ab-6c17d681189f','For RACFs',NULL,1,'solid'),(38504,160021,1,'2021-05-11 02:38:05','2021-05-11 02:38:05','7ab8260b-8220-4814-8d64-7089e741deb4','For community',NULL,1,'solid'),(38505,160024,1,'2021-05-11 02:38:05','2021-05-11 02:38:05','5087817d-8dd1-48d0-8511-4ddc728edd41','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38506,160027,1,'2021-05-11 02:38:05','2021-05-11 02:38:05','6593a06b-e12c-4726-98e9-a8f70328f331','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(38507,160030,1,'2021-05-11 02:38:05','2021-05-11 02:38:05','212da542-ffe6-4e7f-9579-1af52141de1f','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(38508,160032,1,'2021-05-11 02:38:05','2021-05-11 02:38:05','fed77adb-9d79-48b9-b75c-eaec2fd525fc','24 April','https://icampaign.brightlabs.com.au/v/9655/1735694709/email.html?k=T765D-g3I3xwquDMKWDt0b1lr9SnufuSbrSQVvGq9pU',1,'solid'),(38509,160033,1,'2021-05-11 02:38:05','2021-05-11 02:38:05','3ae6c64e-db71-43b8-9bf4-268e1b50c9c2','11 April','https://icampaign.brightlabs.com.au/v/9655/1735688107/email.html?k=0zbLWXL9p5GnYnEkBtLJQ-6_Jeo-PoOc5e4Ixb3AOe0',1,'solid'),(38510,160034,1,'2021-05-11 02:38:05','2021-05-11 02:38:05','f332fdcd-fc80-4f38-88d0-6bcb4ba78821','9 April','https://icampaign.brightlabs.com.au/v/9655/1735686917/email.html?k=wWvhac5K_2ThrjHnqFX8KD-Iowxb8LaMjuY8biU2nQw',1,'solid'),(38511,160035,1,'2021-05-11 02:38:05','2021-05-11 02:38:05','44236f73-c408-461c-94f9-eb2d3d47fb3a','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(38512,160036,1,'2021-05-11 02:38:05','2021-05-11 02:38:05','fa84255f-5aea-4690-8abf-56dc44d8bc50','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(38513,160038,1,'2021-05-11 02:38:05','2021-05-11 02:38:05','5146267e-1cd0-4460-919b-5c0b1d42a17f','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38514,160039,1,'2021-05-11 02:38:05','2021-05-11 02:38:05','b63f878c-9c5e-4206-a391-6524482d66ce','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38515,160040,1,'2021-05-11 02:38:05','2021-05-11 02:38:05','e0b37c0c-89c6-4487-bc1c-8349575bdd5f','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(38516,160043,1,'2021-05-11 02:38:05','2021-05-11 02:38:05','74a5133f-20aa-41f6-924b-1575374f5a86','Department of Health','https://www.health.gov.au/',1,'outline'),(38517,160044,1,'2021-05-11 02:38:05','2021-05-11 02:38:05','de954294-2787-46a2-a7a5-c7e17467376d','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(38518,160045,1,'2021-05-11 02:38:05','2021-05-11 02:38:05','d11bde1e-69bb-408b-a14a-28c311993788','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(38519,160052,1,'2021-05-11 02:38:06','2021-05-11 02:38:06','d2b9f5dc-d175-4675-b154-9e591a38aac2','For GPs',NULL,1,'solid'),(38520,160053,1,'2021-05-11 02:38:06','2021-05-11 02:38:06','7086bfba-48af-4123-a4e0-8d9a505480f2','For RACFs',NULL,1,'solid'),(38521,160054,1,'2021-05-11 02:38:06','2021-05-11 02:38:06','552c77f6-f912-46d1-bf36-d9f55cbcd6a9','For community',NULL,1,'solid'),(38522,160057,1,'2021-05-11 02:38:06','2021-05-11 02:38:06','838dbc17-327e-4eb2-abdf-8b73d5c4af12','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38523,160060,1,'2021-05-11 02:38:06','2021-05-11 02:38:06','ed3a366a-9b80-4ea1-acac-0239d805b440','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(38524,160063,1,'2021-05-11 02:38:06','2021-05-11 02:38:06','6ccc08e6-13e0-4352-b5f7-1b870908fbd9','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(38525,160065,1,'2021-05-11 02:38:06','2021-05-11 02:38:06','6dc846cd-db29-4bc1-bdcd-4743c09b7ea6','24 April','https://icampaign.brightlabs.com.au/v/9655/1735694709/email.html?k=T765D-g3I3xwquDMKWDt0b1lr9SnufuSbrSQVvGq9pU',1,'solid'),(38526,160066,1,'2021-05-11 02:38:06','2021-05-11 02:38:06','d9c299aa-e003-4737-88c3-6bdc6439ce83','11 April','https://icampaign.brightlabs.com.au/v/9655/1735688107/email.html?k=0zbLWXL9p5GnYnEkBtLJQ-6_Jeo-PoOc5e4Ixb3AOe0',1,'solid'),(38527,160067,1,'2021-05-11 02:38:06','2021-05-11 02:38:06','c9d431e3-eccd-4161-b505-5c9f410e1c48','9 April','https://icampaign.brightlabs.com.au/v/9655/1735686917/email.html?k=wWvhac5K_2ThrjHnqFX8KD-Iowxb8LaMjuY8biU2nQw',1,'solid'),(38528,160068,1,'2021-05-11 02:38:06','2021-05-11 02:38:06','3ed52fa0-ec65-4341-bae0-23f741aaed02','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(38529,160069,1,'2021-05-11 02:38:06','2021-05-11 02:38:06','4a949135-0c27-44d0-bd0b-c6681482656a','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(38530,160071,1,'2021-05-11 02:38:06','2021-05-11 02:38:06','725929b1-6cdd-4cf7-8119-4ec025ca0812','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38531,160072,1,'2021-05-11 02:38:06','2021-05-11 02:38:06','f6b4c48f-d5fe-4649-b9d6-8c4aaca4c792','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38532,160073,1,'2021-05-11 02:38:06','2021-05-11 02:38:06','1328e5cf-bf66-4604-b8d0-ec3081008400','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(38533,160076,1,'2021-05-11 02:38:06','2021-05-11 02:38:06','59539dd6-b8a8-4bf2-bdc1-aa9e33fbdd7a','Department of Health','https://www.health.gov.au/',1,'outline'),(38534,160077,1,'2021-05-11 02:38:06','2021-05-11 02:38:06','c560a5f6-2d41-4122-a1e0-b1d63920929f','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(38535,160078,1,'2021-05-11 02:38:06','2021-05-11 02:38:06','a275c62c-76c1-4395-8aa3-0f88726b483a','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(38536,160085,1,'2021-05-11 02:38:13','2021-05-11 02:38:13','c6047fc9-fc04-4f47-aaf5-9e7693c509be','For GPs',NULL,1,'solid'),(38537,160086,1,'2021-05-11 02:38:13','2021-05-11 02:38:13','d88b9b92-77b9-4c9d-a7a7-98975e733339','For RACFs',NULL,1,'solid'),(38538,160087,1,'2021-05-11 02:38:13','2021-05-11 02:38:13','b2ef96f3-3406-4d1b-93ae-5e3e53e014ac','For community',NULL,1,'solid'),(38539,160090,1,'2021-05-11 02:38:13','2021-05-11 02:38:13','49856d85-ee9a-46e7-81f1-77e000e14d7e','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38540,160093,1,'2021-05-11 02:38:13','2021-05-11 02:38:13','bfd7c2bf-6e6a-4bac-a88f-3ea8021d5d70','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(38541,160096,1,'2021-05-11 02:38:13','2021-05-11 02:38:13','80ae01a8-1373-4354-a31c-2017980d74a0','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(38542,160098,1,'2021-05-11 02:38:13','2021-05-11 02:38:13','5eb15c27-b0e7-45d7-be81-2fd4320a4ed9','24 April','https://icampaign.brightlabs.com.au/v/9655/1735694709/email.html?k=T765D-g3I3xwquDMKWDt0b1lr9SnufuSbrSQVvGq9pU',1,'solid'),(38543,160099,1,'2021-05-11 02:38:13','2021-05-11 02:38:13','fef67461-5a42-4d9d-9c7e-59fb70516299','11 April','https://icampaign.brightlabs.com.au/v/9655/1735688107/email.html?k=0zbLWXL9p5GnYnEkBtLJQ-6_Jeo-PoOc5e4Ixb3AOe0',1,'solid'),(38544,160100,1,'2021-05-11 02:38:13','2021-05-11 02:38:13','842aca29-a28e-4146-9700-7bcc936d8a18','9 April','https://icampaign.brightlabs.com.au/v/9655/1735686917/email.html?k=wWvhac5K_2ThrjHnqFX8KD-Iowxb8LaMjuY8biU2nQw',1,'solid'),(38545,160101,1,'2021-05-11 02:38:13','2021-05-11 02:38:13','1b2cf68e-8910-47fc-8458-4c7f068c284c','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(38546,160102,1,'2021-05-11 02:38:13','2021-05-11 02:38:13','1945724d-0bf0-4e1e-9a15-d4d344da9bd7','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(38547,160104,1,'2021-05-11 02:38:13','2021-05-11 02:38:13','424e9a07-f756-495f-8c9a-9af88ff4310a','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38548,160105,1,'2021-05-11 02:38:13','2021-05-11 02:38:13','4b18a1f6-0892-4ce2-af12-77f46ca391be','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38549,160106,1,'2021-05-11 02:38:13','2021-05-11 02:38:13','ab8ab1b9-d857-4e77-b637-23a120a3cf29','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(38550,160109,1,'2021-05-11 02:38:13','2021-05-11 02:38:13','6bf2bbc8-7816-48cb-ac06-4ca174977767','Department of Health','https://www.health.gov.au/',1,'outline'),(38551,160110,1,'2021-05-11 02:38:13','2021-05-11 02:38:13','537c6b5e-de68-425d-abfc-31334e2e1139','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(38552,160111,1,'2021-05-11 02:38:13','2021-05-11 02:38:13','f8a14f0b-7fe2-408d-bdcb-8ddd712d1b16','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(38553,160126,1,'2021-05-11 04:30:00','2021-05-11 04:32:53','b08970d5-4891-4a21-91e3-d18342feffe1','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(38554,160127,1,'2021-05-11 04:30:00','2021-05-11 04:32:53','f0cea7e0-77d4-467f-81be-1d9a5fa071de','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(38555,160128,1,'2021-05-11 04:30:00','2021-05-11 04:32:53','7db7e078-bd1d-4dbb-9eb5-4ca6c7f347c2','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(38556,160129,1,'2021-05-11 04:30:00','2021-05-11 04:32:53','9104cb18-c8a6-492a-a184-93bc2a012ef3','Vaccine rollout data','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/australias-covid-19-vaccine-rollout',1,'solid'),(38557,160132,1,'2021-05-11 04:30:00','2021-05-11 04:32:53','634bb223-ab29-43b7-b7a2-bcbb7f7eaf8f','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(38558,160133,1,'2021-05-11 04:30:00','2021-05-11 04:32:53','2b2fa25b-275f-4496-ae30-91817c4b3d2b','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(38559,160134,1,'2021-05-11 04:30:00','2021-05-11 04:32:53','05231ea4-4772-4f8b-94e8-9da64100cbb6','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(38560,160135,1,'2021-05-11 04:30:00','2021-05-11 04:32:53','b44861ea-06b9-4c85-8e06-924f1a06706c','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(38561,160138,1,'2021-05-11 04:30:00','2021-05-11 04:32:53','df20ab08-9697-4348-92a1-72011b648a54','ATAGI statement - 8 April','https://www.health.gov.au/news/atagi-statement-on-astrazeneca-vaccine-in-response-to-new-vaccine-safety-concerns',1,'solid'),(38562,160139,1,'2021-05-11 04:30:00','2021-05-11 04:32:53','0861487f-4fca-439e-82fd-a666c98b8fc8','ATAGI statement - 23 April','https://www.health.gov.au/news/atagi-reinforce-recommendations-on-use-of-covid-19-vaccines-following-review-of-vaccine-safety-data-and-benefits',1,'solid'),(38563,160140,1,'2021-05-11 04:30:00','2021-05-11 04:32:53','1201bcc2-2e21-4209-a5de-a99abb9cd3b9','Chief Medical Officer\'s response to ATAGI advice','https://www.health.gov.au/news/response-latest-atagi-advice',1,'solid'),(38564,160147,1,'2021-05-11 04:30:00','2021-05-11 04:32:53','3cdb27b4-4e2c-49e8-8c8c-06b705a9d0d1','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(38565,160150,1,'2021-05-11 04:30:00','2021-05-11 04:32:53','3cc6230d-7661-4ee8-a342-e9f2c27a29c5','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(38566,160151,1,'2021-05-11 04:30:00','2021-05-11 04:32:53','3aadab35-39eb-4bbd-8332-339dd4a46233','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(38567,160152,1,'2021-05-11 04:30:00','2021-05-11 04:32:53','ec85d8fa-3d5f-48d9-b393-32989c33d0f5','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(38568,160153,1,'2021-05-11 04:30:00','2021-05-11 04:32:53','32a5b051-36cd-4166-a251-8fb4c5d0b893','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(38569,160154,1,'2021-05-11 04:30:00','2021-05-11 04:32:53','d3ca204f-9972-468c-ac7d-6514537ebac3','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(38570,160160,1,'2021-05-11 04:30:00','2021-05-11 04:32:53','2f0c7402-9bd2-4a14-ab32-72943fc09e00','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(38571,160161,1,'2021-05-11 04:30:00','2021-05-11 04:32:53','60761485-5363-409c-96f9-25b937a13327','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(38572,160162,1,'2021-05-11 04:30:01','2021-05-11 04:32:53','0d3ec74e-46f7-4827-a55f-a5cb4a3e2115','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(38573,160168,1,'2021-05-11 04:33:13','2021-05-11 04:33:13','1820d285-e0cb-4a67-9458-328588f25ddc','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(38574,160169,1,'2021-05-11 04:33:13','2021-05-11 04:33:13','807680d7-92c3-4dc8-8aa4-7b7321b10fd6','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(38575,160170,1,'2021-05-11 04:33:13','2021-05-11 04:33:13','f9436fa1-2f7c-4b86-8679-371c7bcfd91b','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(38576,160171,1,'2021-05-11 04:33:13','2021-05-11 04:33:13','e0596a95-7c0f-400d-9c4e-7f782b823506','Vaccine rollout data','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/australias-covid-19-vaccine-rollout',1,'solid'),(38577,160174,1,'2021-05-11 04:33:13','2021-05-11 04:33:13','2afb8999-07d0-432e-85e7-56c931eb0539','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(38578,160175,1,'2021-05-11 04:33:13','2021-05-11 04:33:13','0d2cf8f4-e4a1-4019-b54b-5ac25a264616','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(38579,160176,1,'2021-05-11 04:33:13','2021-05-11 04:33:13','25b9ab0c-bccc-4399-b220-46f066256403','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(38580,160177,1,'2021-05-11 04:33:13','2021-05-11 04:33:13','e9c8c9a9-0caf-414d-b46c-bc04a14e666a','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(38581,160180,1,'2021-05-11 04:33:13','2021-05-11 04:33:13','150f460c-39b5-431f-a9b0-2a3195cc0ce6','ATAGI statement - 8 April','https://www.health.gov.au/news/atagi-statement-on-astrazeneca-vaccine-in-response-to-new-vaccine-safety-concerns',1,'solid'),(38582,160181,1,'2021-05-11 04:33:13','2021-05-11 04:33:13','f5ed8d5a-4bf8-4530-b0c4-439f03a464bf','ATAGI statement - 23 April','https://www.health.gov.au/news/atagi-reinforce-recommendations-on-use-of-covid-19-vaccines-following-review-of-vaccine-safety-data-and-benefits',1,'solid'),(38583,160182,1,'2021-05-11 04:33:13','2021-05-11 04:33:13','c9081eed-f6c6-4d97-b9b4-520c38394fb6','Chief Medical Officer\'s response to ATAGI advice','https://www.health.gov.au/news/response-latest-atagi-advice',1,'solid'),(38584,160187,1,'2021-05-11 04:33:14','2021-05-11 04:33:14','78772d9b-5903-4e1b-9611-9b39df0e5ad5','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(38585,160190,1,'2021-05-11 04:33:14','2021-05-11 04:33:14','7d1fe192-d24a-490f-9d8a-a7f29a99c8a4','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(38586,160191,1,'2021-05-11 04:33:14','2021-05-11 04:33:14','0cd10c4a-2da6-4739-aeef-17ec13ae77d3','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(38587,160192,1,'2021-05-11 04:33:14','2021-05-11 04:33:14','9c81ee8b-2dd0-486d-a939-d01bee183bab','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(38588,160193,1,'2021-05-11 04:33:14','2021-05-11 04:33:14','8abbaf5e-54fa-47e7-a378-ae28e0e7ddef','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(38589,160194,1,'2021-05-11 04:33:14','2021-05-11 04:33:14','8ccc2401-865b-44ae-986a-f20da5f15022','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(38590,160200,1,'2021-05-11 04:33:14','2021-05-11 04:33:14','35212a3c-f655-425e-af3b-1ed1c74cf1f7','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(38591,160201,1,'2021-05-11 04:33:14','2021-05-11 04:33:14','9b7a6fcd-3906-4fa5-a132-3065893cafde','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(38592,160202,1,'2021-05-11 04:33:14','2021-05-11 04:33:14','98bd88ab-a780-4891-b592-65514d2ee5c1','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(38593,160209,1,'2021-05-11 04:33:15','2021-05-11 04:33:15','cc7af41d-c488-4f17-abb3-1dbb7556992d','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(38594,160210,1,'2021-05-11 04:33:15','2021-05-11 04:33:15','d4fa6b41-18d5-4384-b468-90563ddb6d57','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(38595,160211,1,'2021-05-11 04:33:15','2021-05-11 04:33:15','c4e3ec40-3d91-43f2-b530-9a5c8044f9ac','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(38596,160212,1,'2021-05-11 04:33:15','2021-05-11 04:33:15','9b1e8e15-7368-4cc4-9bb7-115019940859','Vaccine rollout data','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/australias-covid-19-vaccine-rollout',1,'solid'),(38597,160215,1,'2021-05-11 04:33:15','2021-05-11 04:33:15','a109f539-5963-4f43-9dbe-8a87b90798c5','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(38598,160216,1,'2021-05-11 04:33:15','2021-05-11 04:33:15','262cb0c2-6860-4f6d-9a26-a471cebca78f','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(38599,160217,1,'2021-05-11 04:33:15','2021-05-11 04:33:15','3508922a-c3b7-41d7-80a5-639cafb2df84','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(38600,160218,1,'2021-05-11 04:33:15','2021-05-11 04:33:15','4837139c-9b88-4654-9805-19ccc539b8ec','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(38601,160221,1,'2021-05-11 04:33:15','2021-05-11 04:33:15','4dc989a1-6708-45ae-be7f-37de43380404','ATAGI statement - 8 April','https://www.health.gov.au/news/atagi-statement-on-astrazeneca-vaccine-in-response-to-new-vaccine-safety-concerns',1,'solid'),(38602,160222,1,'2021-05-11 04:33:15','2021-05-11 04:33:15','66236268-9409-46fd-97fb-c26b254f9be0','ATAGI statement - 23 April','https://www.health.gov.au/news/atagi-reinforce-recommendations-on-use-of-covid-19-vaccines-following-review-of-vaccine-safety-data-and-benefits',1,'solid'),(38603,160223,1,'2021-05-11 04:33:15','2021-05-11 04:33:15','0511b274-04d9-4bcc-ad41-fad6e6fa5782','Chief Medical Officer\'s response to ATAGI advice','https://www.health.gov.au/news/response-latest-atagi-advice',1,'solid'),(38604,160228,1,'2021-05-11 04:33:15','2021-05-11 04:33:15','22766569-fb39-42b8-9344-de677b8041c3','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(38605,160231,1,'2021-05-11 04:33:15','2021-05-11 04:33:15','5005c3ee-8606-4809-9367-ec4ef8eef672','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(38606,160232,1,'2021-05-11 04:33:15','2021-05-11 04:33:15','1e1a8a80-5a03-4505-b300-fc4143245635','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(38607,160233,1,'2021-05-11 04:33:15','2021-05-11 04:33:15','8b178302-9205-4cf0-a9a3-b4d00b8e883f','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(38608,160234,1,'2021-05-11 04:33:15','2021-05-11 04:33:15','7a9f4a42-a0de-412d-8afb-3fb207af8432','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(38609,160235,1,'2021-05-11 04:33:15','2021-05-11 04:33:15','7692f425-840e-424f-885d-cfe02aac484d','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(38610,160241,1,'2021-05-11 04:33:15','2021-05-11 04:33:15','3ea2299d-86e6-4c74-b276-0c7cbebf52c3','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(38611,160242,1,'2021-05-11 04:33:15','2021-05-11 04:33:15','48999c8e-32b0-4990-8ea1-9ae4463bbc22','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(38612,160243,1,'2021-05-11 04:33:15','2021-05-11 04:33:15','b2934531-5e9b-4724-9620-c635ef2b37fe','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(38613,160250,1,'2021-05-11 04:33:20','2021-05-11 04:33:20','43602288-6344-40b6-923c-d692bb8bef6f','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(38614,160251,1,'2021-05-11 04:33:20','2021-05-11 04:33:20','d274c63a-7b83-4fa7-b23a-8422bc9b431c','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(38615,160252,1,'2021-05-11 04:33:20','2021-05-11 04:33:20','414c6941-dbe5-484a-a551-98de41a979b7','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(38616,160253,1,'2021-05-11 04:33:20','2021-05-11 04:33:20','4484a11d-8853-4581-97ff-355c9102e3bd','Vaccine rollout data','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/australias-covid-19-vaccine-rollout',1,'solid'),(38617,160256,1,'2021-05-11 04:33:20','2021-05-11 04:33:20','28d91b33-9da7-4ec6-8489-477c4645de5c','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(38618,160257,1,'2021-05-11 04:33:20','2021-05-11 04:33:20','2bf2e4d7-f703-4626-b663-1a7ecdcb13e4','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(38619,160258,1,'2021-05-11 04:33:20','2021-05-11 04:33:20','fc30db36-b98c-4367-b0d4-da3a9763cc33','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(38620,160259,1,'2021-05-11 04:33:20','2021-05-11 04:33:20','03a6d0a8-f76f-4f9e-958c-ce92bf26d5a5','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(38621,160262,1,'2021-05-11 04:33:20','2021-05-11 04:33:20','47062fad-2fa2-4438-854d-7a697fcc14a4','ATAGI statement - 8 April','https://www.health.gov.au/news/atagi-statement-on-astrazeneca-vaccine-in-response-to-new-vaccine-safety-concerns',1,'solid'),(38622,160263,1,'2021-05-11 04:33:20','2021-05-11 04:33:20','2797f125-098c-4399-b27e-5acd644b3c3b','ATAGI statement - 23 April','https://www.health.gov.au/news/atagi-reinforce-recommendations-on-use-of-covid-19-vaccines-following-review-of-vaccine-safety-data-and-benefits',1,'solid'),(38623,160264,1,'2021-05-11 04:33:20','2021-05-11 04:33:20','847f049e-07c0-4e2a-b50b-6c7374727104','Chief Medical Officer\'s response to ATAGI advice','https://www.health.gov.au/news/response-latest-atagi-advice',1,'solid'),(38624,160269,1,'2021-05-11 04:33:20','2021-05-11 04:33:20','0191b549-80fa-47bc-8fd7-7a9f751c5732','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(38625,160272,1,'2021-05-11 04:33:20','2021-05-11 04:33:20','1dc36446-f626-41c9-855a-51f0426305c3','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(38626,160273,1,'2021-05-11 04:33:20','2021-05-11 04:33:20','7534fba6-5352-4741-ae02-83360a13fc06','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(38627,160274,1,'2021-05-11 04:33:20','2021-05-11 04:33:20','c3e208ab-b77b-4634-a956-498e8fe23aa1','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(38628,160275,1,'2021-05-11 04:33:20','2021-05-11 04:33:20','68722532-ae92-4d20-b434-ff9b13410469','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(38629,160276,1,'2021-05-11 04:33:20','2021-05-11 04:33:20','3eb02331-a512-4e39-96fe-edb2e084ebfc','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(38630,160282,1,'2021-05-11 04:33:20','2021-05-11 04:33:20','6180530b-b52c-4140-aab1-f23e79283bc5','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(38631,160283,1,'2021-05-11 04:33:20','2021-05-11 04:33:20','1c1c1c96-0ee2-4031-b1b4-7356743be047','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(38632,160284,1,'2021-05-11 04:33:20','2021-05-11 04:33:20','c9868f8e-e776-4c15-b386-588d421c7026','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(38633,160291,1,'2021-05-11 04:33:22','2021-05-11 04:33:22','dbdcc8ab-0793-46c2-9934-45d25c52b777','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(38634,160292,1,'2021-05-11 04:33:22','2021-05-11 04:33:22','00d8ab86-8bca-4088-8eb6-6d0a4749fea2','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(38635,160293,1,'2021-05-11 04:33:22','2021-05-11 04:33:22','d73012c1-f7d3-45a7-8b1c-3d9f17bfdfba','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(38636,160294,1,'2021-05-11 04:33:22','2021-05-11 04:33:22','195a6ad0-8af7-4aa1-a355-7fe6b0da7ef5','Vaccine rollout data','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/australias-covid-19-vaccine-rollout',1,'solid'),(38637,160297,1,'2021-05-11 04:33:22','2021-05-11 04:33:22','cb9145de-0038-4915-af0c-24555c5b0f8d','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(38638,160298,1,'2021-05-11 04:33:22','2021-05-11 04:33:22','8883c5d6-6b6f-4c07-8ca3-be2da761d033','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(38639,160299,1,'2021-05-11 04:33:22','2021-05-11 04:33:22','4ff72437-537e-4099-9224-25d5537c510b','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(38640,160300,1,'2021-05-11 04:33:22','2021-05-11 04:33:22','d5b7d0f6-beae-4978-9e94-1ba70b3b9178','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(38641,160303,1,'2021-05-11 04:33:22','2021-05-11 04:33:22','77c19251-683c-4c08-995e-4b414776032c','ATAGI statement - 8 April','https://www.health.gov.au/news/atagi-statement-on-astrazeneca-vaccine-in-response-to-new-vaccine-safety-concerns',1,'solid'),(38642,160304,1,'2021-05-11 04:33:22','2021-05-11 04:33:22','74473c12-e4dd-431a-9f77-4801cc437321','ATAGI statement - 23 April','https://www.health.gov.au/news/atagi-reinforce-recommendations-on-use-of-covid-19-vaccines-following-review-of-vaccine-safety-data-and-benefits',1,'solid'),(38643,160305,1,'2021-05-11 04:33:22','2021-05-11 04:33:22','0e29f05a-6aa2-427c-a0ea-0d8e1beac7ee','Chief Medical Officer\'s response to ATAGI advice','https://www.health.gov.au/news/response-latest-atagi-advice',1,'solid'),(38644,160310,1,'2021-05-11 04:33:22','2021-05-11 04:33:22','054f7123-35fb-4c09-9574-10d85c9059ea','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(38645,160313,1,'2021-05-11 04:33:22','2021-05-11 04:33:22','1eb5a608-faf9-45f8-8c0c-e7beff7f026e','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(38646,160314,1,'2021-05-11 04:33:22','2021-05-11 04:33:22','a0f3688c-8046-48fd-8681-e24d3589eaf8','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(38647,160315,1,'2021-05-11 04:33:22','2021-05-11 04:33:22','f1e3a74d-5d8a-481d-8f67-b9055fefd252','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(38648,160316,1,'2021-05-11 04:33:22','2021-05-11 04:33:22','3342f9e4-99cc-4da7-9fea-eeb006de34b4','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(38649,160317,1,'2021-05-11 04:33:22','2021-05-11 04:33:22','54193b1f-b3f4-46a9-b884-5985b2fa6f3c','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(38650,160323,1,'2021-05-11 04:33:22','2021-05-11 04:33:22','3300e470-b376-464c-9a03-fc0f5ca157e0','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(38651,160324,1,'2021-05-11 04:33:22','2021-05-11 04:33:22','f58bb064-9756-4a07-9f8f-e242e0bc511f','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(38652,160325,1,'2021-05-11 04:33:22','2021-05-11 04:33:22','33ddd31a-a22a-4a28-8583-2c855bcf16d9','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(38653,160332,1,'2021-05-11 04:38:43','2021-05-11 04:38:43','939fd37e-1bf9-4bf1-aff3-0b33800ee784','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(38654,160333,1,'2021-05-11 04:38:43','2021-05-11 04:38:43','cab47195-0c52-4ab8-af85-4db1e529ec85','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(38655,160334,1,'2021-05-11 04:38:43','2021-05-11 04:38:43','bd16f949-1a60-4f15-91d5-10fe9698965c','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(38656,160335,1,'2021-05-11 04:38:43','2021-05-11 04:38:43','b10318f7-e8dd-418b-8bd8-8a71ef78bedf','Vaccine rollout data','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/australias-covid-19-vaccine-rollout',1,'solid'),(38657,160338,1,'2021-05-11 04:38:43','2021-05-11 04:38:43','b773e44f-2992-4c17-9a7d-7e5f4fe8f0d4','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(38658,160339,1,'2021-05-11 04:38:43','2021-05-11 04:38:43','628de7b9-f330-4f9b-a301-954bb476c638','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(38659,160340,1,'2021-05-11 04:38:43','2021-05-11 04:38:43','1a99778d-41a0-451d-8f47-28acf8a67fda','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(38660,160341,1,'2021-05-11 04:38:43','2021-05-11 04:38:43','e3896999-effd-46da-b944-bcb98469e411','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(38661,160344,1,'2021-05-11 04:38:43','2021-05-11 04:38:43','84342b48-0a3c-4da6-b76e-a3a003d1253f','ATAGI statement - 8 April','https://www.health.gov.au/news/atagi-statement-on-astrazeneca-vaccine-in-response-to-new-vaccine-safety-concerns',1,'solid'),(38662,160345,1,'2021-05-11 04:38:43','2021-05-11 04:38:43','b0549112-eeed-425c-a61e-561708e55117','ATAGI statement - 23 April','https://www.health.gov.au/news/atagi-reinforce-recommendations-on-use-of-covid-19-vaccines-following-review-of-vaccine-safety-data-and-benefits',1,'solid'),(38663,160346,1,'2021-05-11 04:38:43','2021-05-11 04:38:43','698912ab-09ea-4499-870d-7993b775b4a0','Chief Medical Officer\'s response to ATAGI advice','https://www.health.gov.au/news/response-latest-atagi-advice',1,'solid'),(38664,160351,1,'2021-05-11 04:38:43','2021-05-11 04:38:43','f5e0fa41-1773-45c4-992f-9737cf6fea72','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(38665,160354,1,'2021-05-11 04:38:43','2021-05-11 04:38:43','1621412e-66a6-4783-b819-65d214d0260b','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(38666,160355,1,'2021-05-11 04:38:43','2021-05-11 04:38:43','a6dcad28-bd64-4e0d-83b9-9a8b0c4916fe','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(38667,160356,1,'2021-05-11 04:38:43','2021-05-11 04:38:43','2659939b-62b6-4b40-9867-c8b829433aa2','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(38668,160357,1,'2021-05-11 04:38:43','2021-05-11 04:38:43','c09bca09-692c-4da2-bfac-d7a07088b0cf','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(38669,160358,1,'2021-05-11 04:38:43','2021-05-11 04:38:43','19cfaec3-8321-45ed-852f-72e901e9ac36','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(38670,160364,1,'2021-05-11 04:38:43','2021-05-11 04:38:43','fd1bd57d-da27-4d45-8137-613e8e2f0349','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(38671,160365,1,'2021-05-11 04:38:43','2021-05-11 04:38:43','037fc16b-3cda-40c2-a2f7-0dc8e87a8377','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(38672,160366,1,'2021-05-11 04:38:43','2021-05-11 04:38:43','a0dce5c9-b37e-48cf-93d2-68fdc9c9714c','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(38673,160374,1,'2021-05-11 04:41:24','2021-05-11 04:44:51','9ac1a975-a9d2-4db1-836f-45869f799154','More information','https://www.health.gov.au/resources/publications/distribution-of-ppe-through-phns-tranche-4-surgical-masks-and-p2n95-respirators-for-general-practice-community-pharmacy-and-allied-health',1,'outline'),(38674,160379,1,'2021-05-11 04:41:24','2021-05-11 04:44:52','83d66b63-640c-4073-924c-4b9a76c0dbf4','More information','https://bnphn.org/DoH-eye-protection',1,'outline'),(38675,160380,1,'2021-05-11 04:41:24','2021-05-11 04:44:52','23884e11-a6c2-41d3-a64b-b9c82435d347','How to care for your goggles','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/GoggleCare_A4Poster_QPHN_FINAL.pdf?mtime=20200917100629&focal=none',1,'outline'),(38676,160383,1,'2021-05-11 04:41:24','2021-05-11 04:44:52','a59f5840-b6a7-4fc0-b623-e7039c04c62d','More information','https://bnphn.org/DoH-eye-protection',1,'outline'),(38677,160384,1,'2021-05-11 04:41:24','2021-05-11 04:44:52','bca33633-56ee-437e-9b27-aca8aebe849c','How to care for your goggles','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/GoggleCare_A4Poster_QPHN_FINAL.pdf?mtime=20200917100629&focal=none',1,'outline'),(38678,160387,1,'2021-05-11 04:44:55','2021-05-11 04:44:55','6c6e731c-2265-4d46-a96c-2d49c57687d6','More information','https://www.health.gov.au/resources/publications/distribution-of-ppe-through-phns-tranche-4-surgical-masks-and-p2n95-respirators-for-general-practice-community-pharmacy-and-allied-health',1,'outline'),(38679,160392,1,'2021-05-11 04:44:55','2021-05-11 04:44:55','5550d199-81af-4e41-8655-62eeca582b14','More information','https://bnphn.org/DoH-eye-protection',1,'outline'),(38680,160393,1,'2021-05-11 04:44:55','2021-05-11 04:44:55','28a4bed9-4841-403b-a774-145c3fc1f8f1','How to care for your goggles','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/GoggleCare_A4Poster_QPHN_FINAL.pdf?mtime=20200917100629&focal=none',1,'outline'),(38681,160396,1,'2021-05-11 04:44:55','2021-05-11 04:44:55','e1e662f2-b155-4031-9444-f388c120e29a','More information','https://bnphn.org/DoH-eye-protection',1,'outline'),(38682,160397,1,'2021-05-11 04:44:55','2021-05-11 04:44:55','9e9c9f0d-b3ba-42b2-92a1-9d792c937d00','How to care for your goggles','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/GoggleCare_A4Poster_QPHN_FINAL.pdf?mtime=20200917100629&focal=none',1,'outline'),(38683,160401,1,'2021-05-11 04:44:56','2021-05-11 04:44:56','eb3b4b01-33c0-4929-a6e7-e60c280e3d92','More information','https://www.health.gov.au/resources/publications/distribution-of-ppe-through-phns-tranche-4-surgical-masks-and-p2n95-respirators-for-general-practice-community-pharmacy-and-allied-health',1,'outline'),(38684,160406,1,'2021-05-11 04:44:56','2021-05-11 04:44:56','7110bde7-c4c4-404f-b326-3e82567ad3f9','More information','https://bnphn.org/DoH-eye-protection',1,'outline'),(38685,160407,1,'2021-05-11 04:44:56','2021-05-11 04:44:56','b18fae94-7140-41a4-8dc9-8ce8f7227644','How to care for your goggles','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/GoggleCare_A4Poster_QPHN_FINAL.pdf?mtime=20200917100629&focal=none',1,'outline'),(38686,160410,1,'2021-05-11 04:44:56','2021-05-11 04:44:56','ed0ef3f6-cc7d-4775-9275-b67cddafd9aa','More information','https://bnphn.org/DoH-eye-protection',1,'outline'),(38687,160411,1,'2021-05-11 04:44:56','2021-05-11 04:44:56','e5df8086-9e6e-418d-b917-9f27f1b8b061','How to care for your goggles','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/GoggleCare_A4Poster_QPHN_FINAL.pdf?mtime=20200917100629&focal=none',1,'outline'),(38688,160415,1,'2021-05-11 04:45:00','2021-05-11 04:45:00','46b9a277-e740-4fc9-a903-f58efabd16ac','More information','https://www.health.gov.au/resources/publications/distribution-of-ppe-through-phns-tranche-4-surgical-masks-and-p2n95-respirators-for-general-practice-community-pharmacy-and-allied-health',1,'outline'),(38689,160420,1,'2021-05-11 04:45:00','2021-05-11 04:45:00','e0fe87af-3802-4859-8d29-45cd54884bad','More information','https://bnphn.org/DoH-eye-protection',1,'outline'),(38690,160421,1,'2021-05-11 04:45:00','2021-05-11 04:45:00','1bb2dbc5-9f9e-49ad-becf-ffdce2ba54ea','How to care for your goggles','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/GoggleCare_A4Poster_QPHN_FINAL.pdf?mtime=20200917100629&focal=none',1,'outline'),(38691,160424,1,'2021-05-11 04:45:00','2021-05-11 04:45:00','23ce0114-d80c-43b3-bf04-795a341791a2','More information','https://bnphn.org/DoH-eye-protection',1,'outline'),(38692,160425,1,'2021-05-11 04:45:00','2021-05-11 04:45:00','b27e76cd-48ef-4d9e-aac9-378d71735aec','How to care for your goggles','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/GoggleCare_A4Poster_QPHN_FINAL.pdf?mtime=20200917100629&focal=none',1,'outline'),(38693,160432,1,'2021-05-11 04:47:26','2021-05-11 04:47:26','20b1a3d4-66fc-4457-8139-ce4dc31548e8','More information on the EOI','https://www.ppaonline.com.au/covidvaccine-eoi',1,'solid'),(38694,160435,1,'2021-05-11 04:47:26','2021-05-11 04:47:48','21c7154d-ec3e-47ac-9271-d44949fa3e66','More information','http://www.mbsonline.gov.au/internet/mbsonline/publishing.nsf/Content/factsheet-current',1,'solid'),(38695,160438,1,'2021-05-11 04:47:26','2021-05-11 04:47:48','8da9f015-565d-445d-8923-c3f5aba68f39','Download','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-Financial-support-measures-for-service-providers.pdf?mtime=20200526145136&focal=none',1,'solid'),(38696,160441,1,'2021-05-11 04:48:18','2021-05-11 04:48:18','f38c76fa-0f4b-46aa-a111-40935eb1a9b0','More information','http://www.mbsonline.gov.au/internet/mbsonline/publishing.nsf/Content/factsheet-current',1,'solid'),(38697,160444,1,'2021-05-11 04:48:18','2021-05-11 04:48:18','2ae5840c-0efd-495b-a267-aec677651953','Download','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-Financial-support-measures-for-service-providers.pdf?mtime=20200526145136&focal=none',1,'solid'),(38698,160448,1,'2021-05-11 04:48:18','2021-05-11 04:48:18','04fc6dc6-0471-42a0-bccb-203c52753e48','More information','http://www.mbsonline.gov.au/internet/mbsonline/publishing.nsf/Content/factsheet-current',1,'solid'),(38699,160451,1,'2021-05-11 04:48:18','2021-05-11 04:48:18','0b515ef2-521b-45ee-bcda-1ab83abe93a5','Download','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-Financial-support-measures-for-service-providers.pdf?mtime=20200526145136&focal=none',1,'solid'),(38700,160455,1,'2021-05-11 04:48:23','2021-05-11 04:48:23','03decda6-bc3d-4f62-9b36-2798e7ec77ac','More information','http://www.mbsonline.gov.au/internet/mbsonline/publishing.nsf/Content/factsheet-current',1,'solid'),(38701,160458,1,'2021-05-11 04:48:23','2021-05-11 04:48:23','47a1123a-16bd-42ee-a03e-3c3a82fe66f6','Download','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-Financial-support-measures-for-service-providers.pdf?mtime=20200526145136&focal=none',1,'solid'),(38702,160465,1,'2021-05-11 04:49:12','2021-05-11 04:49:13','3f290b2e-1eab-49ff-ac9c-efa1bbaba904','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(38703,160466,1,'2021-05-11 04:49:12','2021-05-11 04:49:13','ec8ba983-1c22-496f-9300-b71ad7be8895','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(38704,160469,1,'2021-05-11 04:49:12','2021-05-11 04:49:12','888b76b8-ea2f-4657-8bf7-6a12d8ae6a77','Phase 1B rollout FAQs',NULL,1,'solid'),(38705,160472,1,'2021-05-11 04:49:12','2021-05-11 04:49:12','14bb9b7e-d7b8-4a11-8175-270e5a55ffa9','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(38706,160478,1,'2021-05-11 04:49:12','2021-05-11 04:49:12','8cce84d5-d71f-4d03-87dd-27ef16b85494','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38707,160481,1,'2021-05-11 04:49:12','2021-05-11 04:49:12','6446e851-ec2c-4fbd-9679-051f3637a431','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(38708,160483,1,'2021-05-11 04:49:12','2021-05-11 04:49:12','6d285cf5-cca4-4776-857c-1e9ca1e5537a','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(38709,160485,1,'2021-05-11 04:49:12','2021-05-11 04:49:12','84a1bf05-fbea-47e2-b524-956f8bc95fab','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(38710,160488,1,'2021-05-11 04:49:12','2021-05-11 04:49:12','41a539ed-904d-4b2a-b6f0-c6b6b92be90b','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(38711,160490,1,'2021-05-11 04:49:13','2021-05-11 04:49:13','2ffedb2c-4511-4128-af42-0df4ce8b8191','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(38712,160492,1,'2021-05-11 04:49:13','2021-05-11 04:49:13','bc99117e-1b30-410d-b84a-81a48c5c5411','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(38713,160495,1,'2021-05-11 04:49:13','2021-05-11 04:49:13','97c8b3fa-1f0f-480b-a257-fe0e97597fff','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(38714,160496,1,'2021-05-11 04:49:13','2021-05-11 04:49:13','b4317351-6cd6-41d1-9c6f-60557780ff84','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(38715,160499,1,'2021-05-11 04:49:13','2021-05-11 04:49:13','fca1d338-2c5d-4a5d-a2f6-fece36d014fa','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(38716,160502,1,'2021-05-11 04:49:13','2021-05-11 04:49:13','12602ac7-b24a-4a14-a27e-8b0ab0179c60','Subscribe to updates',NULL,1,'solid'),(38717,160504,1,'2021-05-11 04:49:13','2021-05-11 04:49:13','4953706c-400f-4e3f-ac7f-7bcf64e5b954','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38718,160505,1,'2021-05-11 04:49:13','2021-05-11 04:49:13','124107ee-c6bb-4135-9996-d786bc0c1f14','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38719,160510,1,'2021-05-11 04:49:14','2021-05-11 04:49:14','d01cf0db-78b4-4a0f-b460-133ef322f997','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(38720,160511,1,'2021-05-11 04:49:14','2021-05-11 04:49:14','893ec917-55d1-4a39-aeae-c1850fd4bb3b','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(38721,160514,1,'2021-05-11 04:49:14','2021-05-11 04:49:14','c5f2bfd9-75b5-4767-8565-fe0def81c973','Phase 1B rollout FAQs',NULL,1,'solid'),(38722,160517,1,'2021-05-11 04:49:14','2021-05-11 04:49:14','731689a0-6c13-45e0-ad42-b5eca5e26def','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(38723,160523,1,'2021-05-11 04:49:14','2021-05-11 04:49:14','9639726a-de79-4266-801b-498e32cdd2e2','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38724,160526,1,'2021-05-11 04:49:14','2021-05-11 04:49:14','9fcafc4a-b975-4093-8fcf-e5cfba0f25ff','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(38725,160528,1,'2021-05-11 04:49:14','2021-05-11 04:49:14','c2d31349-684b-4b65-8ff4-1ef8cd4ac857','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(38726,160530,1,'2021-05-11 04:49:14','2021-05-11 04:49:14','b8d0de6e-9afe-4938-90d7-28dd4bda131c','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(38727,160533,1,'2021-05-11 04:49:14','2021-05-11 04:49:14','295024fd-60b8-4d2a-939c-3af593e92b50','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(38728,160535,1,'2021-05-11 04:49:14','2021-05-11 04:49:14','63079bc0-191d-4299-a5fa-adb75c4ec40c','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(38729,160537,1,'2021-05-11 04:49:14','2021-05-11 04:49:14','6d0ff57e-6bcf-486c-92d5-2a806a754f36','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(38730,160540,1,'2021-05-11 04:49:14','2021-05-11 04:49:14','f729b512-9c7c-4712-86d4-81da1c61d38a','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(38731,160541,1,'2021-05-11 04:49:14','2021-05-11 04:49:14','f19b4925-ef70-456b-be61-c0db83468029','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(38732,160544,1,'2021-05-11 04:49:14','2021-05-11 04:49:14','5fd44500-50f2-4e48-a0da-a3503e59d203','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(38733,160547,1,'2021-05-11 04:49:14','2021-05-11 04:49:14','f278d3e5-097a-4880-8d06-5b1d984c85bb','Subscribe to updates',NULL,1,'solid'),(38734,160549,1,'2021-05-11 04:49:14','2021-05-11 04:49:14','3265bde8-9ccb-4a0e-8949-a55655973eaa','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38735,160550,1,'2021-05-11 04:49:14','2021-05-11 04:49:14','0d7538c7-7615-4100-aa91-3f3375d0d738','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38736,160555,1,'2021-05-11 04:49:16','2021-05-11 04:49:16','9d345161-aca0-49e3-a887-7c40c17b0907','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(38737,160556,1,'2021-05-11 04:49:16','2021-05-11 04:49:16','2efde4ad-bde5-4ae7-bb52-a7873de522dd','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(38738,160559,1,'2021-05-11 04:49:16','2021-05-11 04:49:16','4de043ef-ed9e-4598-b6b1-1624817b4a19','Phase 1B rollout FAQs',NULL,1,'solid'),(38739,160562,1,'2021-05-11 04:49:16','2021-05-11 04:49:16','debf7cd6-8367-4f9a-bff9-31ade68515bb','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(38740,160568,1,'2021-05-11 04:49:17','2021-05-11 04:49:17','d517c2ee-02ca-472f-b795-ca5b0b7e1049','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38741,160571,1,'2021-05-11 04:49:17','2021-05-11 04:49:17','8b179556-a4cb-4e75-97be-29d51db4b41d','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(38742,160573,1,'2021-05-11 04:49:17','2021-05-11 04:49:17','7f45c63b-b41b-4f98-bc43-5a78419cb247','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(38743,160575,1,'2021-05-11 04:49:17','2021-05-11 04:49:17','e7414de0-cef9-4702-bfbc-127078731cef','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(38744,160578,1,'2021-05-11 04:49:17','2021-05-11 04:49:17','00632a8e-29f5-4082-9cae-ef59bac82dea','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(38745,160580,1,'2021-05-11 04:49:17','2021-05-11 04:49:17','db3d3fd0-72fe-4d3b-a02e-8e10b13ca9e1','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(38746,160582,1,'2021-05-11 04:49:17','2021-05-11 04:49:17','e80b7047-0f88-4a50-98c8-4b075f3c5221','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(38747,160585,1,'2021-05-11 04:49:17','2021-05-11 04:49:17','a308dba6-6c76-41ed-838d-7140fca9f5ae','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(38748,160586,1,'2021-05-11 04:49:17','2021-05-11 04:49:17','a9d3e034-3e44-40b1-83d2-42ca838ee55c','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(38749,160589,1,'2021-05-11 04:49:17','2021-05-11 04:49:17','4cca5158-6a1e-4211-8543-e455f4136cb8','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(38750,160592,1,'2021-05-11 04:49:17','2021-05-11 04:49:17','d6dc5aa3-8016-4264-9a38-8015e3688205','Subscribe to updates',NULL,1,'solid'),(38751,160594,1,'2021-05-11 04:49:17','2021-05-11 04:49:17','3085bb04-7826-443e-8c42-1b406c4bdfdf','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38752,160595,1,'2021-05-11 04:49:17','2021-05-11 04:49:17','25b0f27e-510b-40c8-9871-19a004176f1f','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38753,160601,1,'2021-05-11 04:49:21','2021-05-11 04:49:21','e9bb8232-d92b-48b3-a143-bfb296b43845','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(38754,160602,1,'2021-05-11 04:49:21','2021-05-11 04:49:21','077f1207-9e5a-4960-9ee0-8a7706e25d85','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(38755,160605,1,'2021-05-11 04:49:21','2021-05-11 04:49:21','314ad95b-b904-4ff9-8bb1-7dfa05b97eb4','Phase 1B rollout FAQs',NULL,1,'solid'),(38756,160608,1,'2021-05-11 04:49:21','2021-05-11 04:49:21','36e9d94d-77f7-4226-a71b-f8a91ef562e0','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(38757,160615,1,'2021-05-11 04:49:21','2021-05-11 04:49:21','95f056d8-c0fb-4f72-a49f-9fd0ff20eb7a','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38758,160618,1,'2021-05-11 04:49:21','2021-05-11 04:49:21','ec0ae472-b726-4e8b-9743-170d4abf0d53','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(38759,160620,1,'2021-05-11 04:49:21','2021-05-11 04:49:21','b84e81ff-6426-404f-b1d1-103657e9a618','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(38760,160622,1,'2021-05-11 04:49:21','2021-05-11 04:49:21','f2d791fe-3db1-49a5-a397-a5202dbf17f8','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(38761,160625,1,'2021-05-11 04:49:21','2021-05-11 04:49:21','4d9f338f-bfe3-4ffd-9682-9355c4b6d6b7','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(38762,160627,1,'2021-05-11 04:49:21','2021-05-11 04:49:21','5c2c4c85-c455-4eda-adf6-439581ec089f','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(38763,160629,1,'2021-05-11 04:49:21','2021-05-11 04:49:21','4372a6bd-b5fe-448f-ba11-b6b831d1a24a','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(38764,160632,1,'2021-05-11 04:49:21','2021-05-11 04:49:21','81f1342b-4486-4ebb-b9bf-e15c88732c32','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(38765,160633,1,'2021-05-11 04:49:21','2021-05-11 04:49:21','0d984dbb-0783-4608-ac04-4c160749bdcf','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(38766,160636,1,'2021-05-11 04:49:21','2021-05-11 04:49:21','d3762b9d-2977-44ac-940a-074132db4bc4','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(38767,160639,1,'2021-05-11 04:49:21','2021-05-11 04:49:21','9e12c0c9-b5ec-411f-9f03-cc8ebef9b50d','Subscribe to updates',NULL,1,'solid'),(38768,160641,1,'2021-05-11 04:49:21','2021-05-11 04:49:21','5e764918-b7cf-49d3-b343-9554c17ec3df','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38769,160642,1,'2021-05-11 04:49:21','2021-05-11 04:49:21','374e927a-96f2-4f16-b543-75c587bbae1e','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38770,160647,1,'2021-05-11 04:49:23','2021-05-11 04:49:23','b34d6a66-1f5a-4e23-a6f5-5fabcbd01786','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(38771,160648,1,'2021-05-11 04:49:23','2021-05-11 04:49:23','ad0dc27e-ce2b-4001-8287-ca5d638ea758','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(38772,160651,1,'2021-05-11 04:49:23','2021-05-11 04:49:23','088025b0-a1c1-44e2-a8b9-ff4b6b418b8b','Phase 1B rollout FAQs',NULL,1,'solid'),(38773,160654,1,'2021-05-11 04:49:23','2021-05-11 04:49:23','c11b47f8-d29f-451f-bc0b-501512a33868','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(38774,160660,1,'2021-05-11 04:49:23','2021-05-11 04:49:23','6e52f604-2449-404e-8eeb-b5b8f5519120','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38775,160663,1,'2021-05-11 04:49:23','2021-05-11 04:49:23','f4719366-523c-4680-bd9e-e70612874ff5','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(38776,160665,1,'2021-05-11 04:49:23','2021-05-11 04:49:23','5aefb4d9-1586-41a8-93bd-4a25dcde5abb','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(38777,160667,1,'2021-05-11 04:49:23','2021-05-11 04:49:23','d73d28df-3ea4-4e25-992b-29e071cc93eb','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(38778,160670,1,'2021-05-11 04:49:23','2021-05-11 04:49:23','a60fe11e-16af-4342-b850-fbe7d9b045a8','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(38779,160672,1,'2021-05-11 04:49:23','2021-05-11 04:49:23','b11475c5-2c21-4de5-abcb-b1d2b7a390f2','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(38780,160674,1,'2021-05-11 04:49:23','2021-05-11 04:49:23','4264799e-28a1-48af-9c15-cf8533ab75a6','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(38781,160677,1,'2021-05-11 04:49:23','2021-05-11 04:49:23','b073fe5f-5a56-4e16-974b-7097daf57f83','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(38782,160678,1,'2021-05-11 04:49:23','2021-05-11 04:49:23','803b1f9e-1deb-4973-b70b-018ba0cd0b24','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(38783,160681,1,'2021-05-11 04:49:23','2021-05-11 04:49:23','5a559d01-edc9-4932-86d5-b733bfc33d22','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(38784,160684,1,'2021-05-11 04:49:23','2021-05-11 04:49:23','ca876cae-e136-4cdb-9809-29f014f280b0','Subscribe to updates',NULL,1,'solid'),(38785,160686,1,'2021-05-11 04:49:23','2021-05-11 04:49:23','65e02ebc-12f7-4499-a112-c7233e4be75a','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38786,160687,1,'2021-05-11 04:49:23','2021-05-11 04:49:23','6e333dfa-6525-4e03-b34d-9bdc801253b7','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38787,160692,1,'2021-05-11 04:49:26','2021-05-11 04:49:26','1721e6c9-86b7-4b0b-bf81-6c457d206bb0','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(38788,160693,1,'2021-05-11 04:49:26','2021-05-11 04:49:26','eef2077a-ea9f-4390-a59e-2bb1d1b1ef77','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(38789,160696,1,'2021-05-11 04:49:26','2021-05-11 04:49:26','f79232f1-eb6d-4574-aba4-cd142012150d','Phase 1B rollout FAQs',NULL,1,'solid'),(38790,160699,1,'2021-05-11 04:49:26','2021-05-11 04:49:26','e8fc6c42-742a-4892-81be-91e297be7eb7','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(38791,160705,1,'2021-05-11 04:49:26','2021-05-11 04:49:26','4c6d3663-2c8e-4824-924b-528ffe59b089','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38792,160708,1,'2021-05-11 04:49:26','2021-05-11 04:49:26','273c574a-aee8-4a8e-af54-aba1cab888ed','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(38793,160710,1,'2021-05-11 04:49:26','2021-05-11 04:49:26','90af5699-2061-4ee1-a4f5-6c515f35febb','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(38794,160712,1,'2021-05-11 04:49:26','2021-05-11 04:49:26','af74e7de-6cca-4472-b0f4-a9e3cd3f21ee','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(38795,160715,1,'2021-05-11 04:49:26','2021-05-11 04:49:26','23c995a3-c578-46b2-bed9-4a371b97b097','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(38796,160717,1,'2021-05-11 04:49:26','2021-05-11 04:49:26','94915cb6-0a14-4fad-894e-580c49095dec','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(38797,160719,1,'2021-05-11 04:49:26','2021-05-11 04:49:26','8c9e2f16-4cd9-4ed5-b086-e8d46b5c0a12','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(38798,160722,1,'2021-05-11 04:49:26','2021-05-11 04:49:26','637a4a5f-aa5c-4177-a908-95a1f81789f6','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(38799,160723,1,'2021-05-11 04:49:26','2021-05-11 04:49:26','b6715dba-8416-4e6b-b1dc-44f6a2cc216b','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(38800,160726,1,'2021-05-11 04:49:26','2021-05-11 04:49:26','67ecef96-8077-4e6d-a1e9-91ed43129bd2','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(38801,160729,1,'2021-05-11 04:49:26','2021-05-11 04:49:26','0e3fba40-a47b-4d62-8200-29fdbbd07b8a','Subscribe to updates',NULL,1,'solid'),(38802,160731,1,'2021-05-11 04:49:26','2021-05-11 04:49:26','a2b3dd9e-ba6f-4780-902e-c86958f5c83a','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38803,160732,1,'2021-05-11 04:49:26','2021-05-11 04:49:26','f59a427f-1e76-4778-a7cb-8f050e00d8cf','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38804,160737,1,'2021-05-11 04:49:30','2021-05-11 04:49:30','53489ef2-f96a-4804-bc41-0e3d3eb0c8c9','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(38805,160738,1,'2021-05-11 04:49:30','2021-05-11 04:49:30','7ac84ec6-143f-4b98-a5fd-747378b9eb26','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(38806,160741,1,'2021-05-11 04:49:30','2021-05-11 04:49:30','a2aee3b7-2957-4a97-a8e5-b148527a3370','Phase 1B rollout FAQs',NULL,1,'solid'),(38807,160744,1,'2021-05-11 04:49:30','2021-05-11 04:49:30','68fa2da2-9de1-412a-8344-4530e9f054fd','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(38808,160750,1,'2021-05-11 04:49:30','2021-05-11 04:49:30','e7792e41-7c3e-4f00-a27c-7ba4c6a25cbe','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38809,160753,1,'2021-05-11 04:49:30','2021-05-11 04:49:30','a4382db7-0e92-438a-b299-ddb0a4988f1a','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(38810,160755,1,'2021-05-11 04:49:30','2021-05-11 04:49:30','3cf14d25-42f5-4128-9e38-8d85fa284ec7','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(38811,160757,1,'2021-05-11 04:49:30','2021-05-11 04:49:30','31f725fa-e855-4181-8b5c-52970ffda590','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(38812,160760,1,'2021-05-11 04:49:30','2021-05-11 04:49:30','89080b57-c9eb-47d5-bad9-1a59f9cb9a4d','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(38813,160762,1,'2021-05-11 04:49:30','2021-05-11 04:49:30','b1e3cd83-3e47-4187-ae6d-cc2b0aba6ee0','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(38814,160764,1,'2021-05-11 04:49:30','2021-05-11 04:49:30','5e33dde6-0a0e-4ff3-9eaa-2b4877bd8ce8','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(38815,160767,1,'2021-05-11 04:49:30','2021-05-11 04:49:30','06469a46-05d0-4942-aa65-fab32f73a569','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(38816,160768,1,'2021-05-11 04:49:30','2021-05-11 04:49:30','2df526b5-e65d-4ac3-bc94-1f5345307ad8','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(38817,160771,1,'2021-05-11 04:49:30','2021-05-11 04:49:30','c3e2aa30-1497-4db8-9422-d97d2a600c0f','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(38818,160774,1,'2021-05-11 04:49:30','2021-05-11 04:49:30','5cbf1e15-6159-4c36-9d42-3714dd4f71a1','Subscribe to updates',NULL,1,'solid'),(38819,160776,1,'2021-05-11 04:49:30','2021-05-11 04:49:30','b5db1227-8086-4ccc-83d2-a4c210de7197','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38820,160777,1,'2021-05-11 04:49:30','2021-05-11 04:49:30','855e41ae-d102-4832-b376-d6d32394e0da','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38821,160793,1,'2021-05-11 04:52:54','2021-05-11 04:52:54','cfb6893b-55a0-4dff-ae88-4dd6ec039f9c','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(38822,160794,1,'2021-05-11 04:52:54','2021-05-11 04:52:54','7f9b456b-7882-491d-8300-eae5b45acc54','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(38823,160797,1,'2021-05-11 04:52:54','2021-05-11 04:52:54','464cf36e-79cc-4100-9c61-38f17274b9e8','Phase 1B rollout FAQs',NULL,1,'solid'),(38824,160800,1,'2021-05-11 04:52:54','2021-05-11 04:52:54','28d28db4-ca5b-4862-b620-049a0d1eec0c','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(38825,160806,1,'2021-05-11 04:52:55','2021-05-11 04:52:55','df227849-1ec2-4732-b9af-e16a27e8f218','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38826,160809,1,'2021-05-11 04:52:55','2021-05-11 04:52:55','bb693a91-8b0e-47bf-95e7-2e6fe4f7b3a7','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(38827,160811,1,'2021-05-11 04:52:55','2021-05-11 04:52:55','790f4729-3d02-4357-a20b-95ea986cec07','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',0,'solid'),(38828,160813,1,'2021-05-11 04:52:55','2021-05-11 04:52:55','dfbae60a-1eb5-4e72-9669-9e1e7beea4bc','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(38829,160816,1,'2021-05-11 04:52:55','2021-05-11 04:52:55','bbd254e9-b110-4e2b-8027-b2f0827de6f0','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(38830,160818,1,'2021-05-11 04:52:55','2021-05-11 04:52:55','88a42434-0c8e-46ce-95c5-555774398787','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(38831,160820,1,'2021-05-11 04:52:55','2021-05-11 04:52:55','4f783325-4151-44cc-9edf-82a76bee9a6e','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(38832,160823,1,'2021-05-11 04:52:55','2021-05-11 04:52:55','5cdfb9b0-d3e3-43b8-aa51-65bb186fa3a1','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(38833,160824,1,'2021-05-11 04:52:55','2021-05-11 04:52:55','2d512b74-a17e-4b82-b6cb-f3269b05d5d2','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(38834,160827,1,'2021-05-11 04:52:55','2021-05-11 04:52:55','0cff5327-4c9b-4353-b068-8492c842a7ca','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(38835,160830,1,'2021-05-11 04:52:55','2021-05-11 04:52:55','49bd973c-9591-4662-ba13-f4e90ef63b5a','Subscribe to updates',NULL,1,'solid'),(38836,160832,1,'2021-05-11 04:52:55','2021-05-11 04:52:55','50f6287c-1c2f-4e1c-b1d6-cc77c94b8122','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38837,160833,1,'2021-05-11 04:52:55','2021-05-11 04:52:55','68366537-4177-48bc-baf9-6cdf1edd288d','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38838,160838,1,'2021-05-11 04:52:57','2021-05-11 04:52:57','cf2fd821-7b42-42e7-979a-75c4c53ded26','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(38839,160839,1,'2021-05-11 04:52:57','2021-05-11 04:52:57','e8d7fc05-b759-4a0d-b3ad-7ce1dc31da4a','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(38840,160842,1,'2021-05-11 04:52:57','2021-05-11 04:52:57','ab6e56de-5a2b-4e54-aaff-f5d5dffbcfed','Phase 1B rollout FAQs',NULL,1,'solid'),(38841,160845,1,'2021-05-11 04:52:57','2021-05-11 04:52:57','a8fba1e4-b0e9-4e23-b135-4b7413e21918','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(38842,160851,1,'2021-05-11 04:52:57','2021-05-11 04:52:57','95480b48-7bf3-4f6a-bb45-2bd5b6756618','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38843,160854,1,'2021-05-11 04:52:57','2021-05-11 04:52:57','d81b9e7f-2d99-44e4-9050-09f679e72380','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(38844,160856,1,'2021-05-11 04:52:57','2021-05-11 04:52:57','7b976989-eb3d-4dc4-ae45-eaf03b95ea71','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',1,'solid'),(38845,160858,1,'2021-05-11 04:52:57','2021-05-11 04:52:57','6fb9d95a-aee7-4879-b4e0-9ce5065c04dc','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(38846,160861,1,'2021-05-11 04:52:57','2021-05-11 04:52:57','2d97bc88-d156-4bd4-856f-f34815b4cb1b','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(38847,160863,1,'2021-05-11 04:52:57','2021-05-11 04:52:57','d5bd53ae-9b2c-4606-b504-4b3f60dc902c','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(38848,160865,1,'2021-05-11 04:52:57','2021-05-11 04:52:57','04b67126-1d63-43a3-b139-d2047e69b2ab','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(38849,160868,1,'2021-05-11 04:52:57','2021-05-11 04:52:57','f65494f8-3a86-4168-b489-f40f9a4e1a21','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(38850,160869,1,'2021-05-11 04:52:57','2021-05-11 04:52:57','a58ae411-6ad4-41a7-b552-a17e1628d273','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(38851,160872,1,'2021-05-11 04:52:57','2021-05-11 04:52:57','3b8830a3-a4ff-49a9-a7d9-4b0b3c425c6e','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(38852,160875,1,'2021-05-11 04:52:57','2021-05-11 04:52:57','f1b3a255-2691-4d0b-95c6-f15a28c9b6ef','Subscribe to updates',NULL,1,'solid'),(38853,160877,1,'2021-05-11 04:52:57','2021-05-11 04:52:57','53a8fc5f-91bd-4afc-82d8-087c2e7e7912','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38854,160878,1,'2021-05-11 04:52:57','2021-05-11 04:52:57','d133625e-d6c5-45d6-81d9-5f0b52097176','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38855,160884,1,'2021-05-11 04:57:39','2021-05-11 04:57:39','9bc2a83d-c184-4983-86c6-ddf5782864ac','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(38856,160885,1,'2021-05-11 04:57:39','2021-05-11 04:57:39','d63b6428-94da-4f8f-9c66-27f04d8bc07a','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(38857,160888,1,'2021-05-11 04:57:39','2021-05-11 04:57:39','24433cd8-91dc-47d3-9803-67cb350ecfb2','Phase 1B rollout FAQs',NULL,1,'solid'),(38858,160891,1,'2021-05-11 04:57:39','2021-05-11 04:57:39','841b2cda-6547-4c75-a74e-18cec0e95333','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(38859,160897,1,'2021-05-11 04:57:39','2021-05-11 04:57:39','c76c14da-165b-4c1f-911d-9c418c3bc778','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38860,160900,1,'2021-05-11 04:57:39','2021-05-11 04:57:39','8b924763-c0f2-4e93-8653-ce4fe31851c7','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(38861,160902,1,'2021-05-11 04:57:39','2021-05-11 04:57:39','f61b14d1-7d9a-48ec-8a5f-82db4b9e7dbb','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',1,'solid'),(38862,160904,1,'2021-05-11 04:57:39','2021-05-11 04:57:39','d68b8f54-c812-4330-8bf4-1ead4ea521e3','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(38863,160907,1,'2021-05-11 04:57:39','2021-05-11 04:57:39','09a36486-be2c-4784-b467-4ccb33ac9ab6','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(38864,160909,1,'2021-05-11 04:57:39','2021-05-11 04:57:39','43bc2d7d-0df7-45d6-ba4e-d8939919bd57','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(38865,160911,1,'2021-05-11 04:57:39','2021-05-11 04:57:39','e93a0e73-b727-41e0-b92e-31569d20fc17','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(38866,160914,1,'2021-05-11 04:57:39','2021-05-11 04:57:39','7fd9e5ea-9d71-4745-a8f7-f8918e95612f','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(38867,160915,1,'2021-05-11 04:57:39','2021-05-11 04:57:39','66a046d8-aea6-4390-afbc-40b8b2684acc','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(38868,160918,1,'2021-05-11 04:57:39','2021-05-11 04:57:39','b33771f3-bd12-41a9-a5c8-907497234323','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(38869,160922,1,'2021-05-11 04:57:39','2021-05-11 04:57:39','ef925969-620b-4142-a33b-e7df5560567a','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38870,160923,1,'2021-05-11 04:57:39','2021-05-11 04:57:39','1f473e71-9631-417a-ac98-300a0c6103a4','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38871,160928,1,'2021-05-11 04:57:58','2021-05-11 04:57:58','7ad64a7e-92b8-4496-abe3-4308b29a8b02','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(38872,160929,1,'2021-05-11 04:57:58','2021-05-11 04:57:58','9b9de369-035e-4195-be54-2e84336decaa','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(38873,160932,1,'2021-05-11 04:57:58','2021-05-11 04:57:58','463ca761-657a-4b53-a59f-f22b3aabedf2','Phase 1B rollout FAQs',NULL,1,'solid'),(38874,160935,1,'2021-05-11 04:57:58','2021-05-11 04:57:58','e24936d2-f5fb-4fe5-ba81-46f1fb63ca04','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(38875,160941,1,'2021-05-11 04:57:58','2021-05-11 04:57:58','28413476-8ec3-4424-8d0e-10476a757f1b','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38876,160944,1,'2021-05-11 04:57:58','2021-05-11 04:57:58','fbd038c5-9f1e-4100-89e1-cd0feb80fc3c','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(38877,160946,1,'2021-05-11 04:57:58','2021-05-11 04:57:58','139bec87-8ba1-4e12-8b73-c188070773fc','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',1,'solid'),(38878,160948,1,'2021-05-11 04:57:58','2021-05-11 04:57:58','04f1b372-d2ad-46a6-929e-dd39fa4684c7','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(38879,160951,1,'2021-05-11 04:57:58','2021-05-11 04:57:58','756f6f00-32fd-4a4b-a42c-9aea44dc11fc','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(38880,160953,1,'2021-05-11 04:57:58','2021-05-11 04:57:58','15717b23-c4e8-4d5e-8aa0-ec519e96d753','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(38881,160955,1,'2021-05-11 04:57:58','2021-05-11 04:57:58','e4bd60cb-96b5-41f2-ab34-404695675463','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(38882,160958,1,'2021-05-11 04:57:58','2021-05-11 04:57:58','7c5d525a-db29-41ef-a660-ff0e52b12f4b','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(38883,160959,1,'2021-05-11 04:57:58','2021-05-11 04:57:58','8ae015bc-92fc-4269-b4b0-3e860a2d7efd','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(38884,160962,1,'2021-05-11 04:57:58','2021-05-11 04:57:58','ee8b90c4-8703-431f-a37d-32468153a97d','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(38885,160966,1,'2021-05-11 04:57:58','2021-05-11 04:57:58','38bd6569-152a-4691-9a78-00f7b1b222c7','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38886,160967,1,'2021-05-11 04:57:58','2021-05-11 04:57:58','2a56e652-6eea-4b79-9877-2097829e780b','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38887,160972,1,'2021-05-11 04:58:17','2021-05-11 04:58:17','ddd46da5-5f06-458f-9ed8-b7c88b7dfa6e','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(38888,160973,1,'2021-05-11 04:58:17','2021-05-11 04:58:17','4d397ebb-6efd-4acd-b5af-6786c2ff0b8e','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(38889,160976,1,'2021-05-11 04:58:17','2021-05-11 04:58:17','242cb3bb-2022-4e14-907e-78e6c158bdaf','Phase 1B rollout FAQs',NULL,1,'solid'),(38890,160979,1,'2021-05-11 04:58:17','2021-05-11 05:37:57','58da2c26-6eed-4512-a520-d6ebe64b7e51','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210511.pdf?mtime=20210511153628&focal=none',1,'solid'),(38891,160985,1,'2021-05-11 04:58:17','2021-05-11 04:58:17','470ea0e4-b04d-45f6-9e98-a2299fcc5b64','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38892,160988,1,'2021-05-11 04:58:17','2021-05-11 04:58:17','25a01e82-2f83-4314-8a68-f876292735e3','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(38893,160990,1,'2021-05-11 04:58:17','2021-05-11 04:58:17','0ab6ce2e-43f8-41a5-81c7-9c289aae082f','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',1,'solid'),(38894,160992,1,'2021-05-11 04:58:17','2021-05-11 04:58:17','3478bca8-1f92-4973-99b5-5387920c7ae6','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(38895,160995,1,'2021-05-11 04:58:17','2021-05-11 04:58:17','39b044c4-20eb-4c9f-9a8a-f7b056742ff7','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(38896,160997,1,'2021-05-11 04:58:18','2021-05-11 04:58:18','de265ab4-86c9-437a-8956-53f0c85b8dd8','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(38897,160999,1,'2021-05-11 04:58:18','2021-05-11 04:58:18','f3590ce6-bebf-4858-94db-018ee2a9efe8','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(38898,161002,1,'2021-05-11 04:58:18','2021-05-11 04:58:18','8517ad65-d8b2-42eb-bdbe-f39bc3e341b7','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(38899,161003,1,'2021-05-11 04:58:18','2021-05-11 04:58:18','1848279c-64fd-4602-a5a4-cea27375dab3','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(38900,161006,1,'2021-05-11 04:58:18','2021-05-11 04:58:18','85ede073-0d35-473e-9655-5017a421e5cf','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(38901,161010,1,'2021-05-11 04:58:18','2021-05-11 04:58:18','4eb455a0-a7ab-4ea4-a421-8248c88a337c','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38902,161011,1,'2021-05-11 04:58:18','2021-05-11 04:58:18','65bfa85b-2969-4803-a7f2-5c3f28448a75','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38903,161017,1,'2021-05-11 04:58:20','2021-05-11 04:58:20','22342745-a4c2-4c98-9c62-f1b3865f8ecc','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(38904,161018,1,'2021-05-11 04:58:20','2021-05-11 04:58:20','a3a5c95a-d5b5-4511-afe5-16b093d59773','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(38905,161021,1,'2021-05-11 04:58:20','2021-05-11 04:58:20','9373249e-6c6a-452d-aa49-e8634975b4e5','Phase 1B rollout FAQs',NULL,1,'solid'),(38906,161024,1,'2021-05-11 04:58:20','2021-05-11 04:58:20','e2375259-3748-4afb-be4a-348674b738c9','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(38907,161030,1,'2021-05-11 04:58:20','2021-05-11 04:58:20','deb66e2b-47a6-46c4-be14-b6a1a32c5386','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38908,161033,1,'2021-05-11 04:58:20','2021-05-11 04:58:20','6e0f8188-c433-4f3b-9fd9-678523111888','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(38909,161035,1,'2021-05-11 04:58:20','2021-05-11 04:58:20','ed4f14f5-16cd-4cda-8e01-d6900b300dd7','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',1,'solid'),(38910,161037,1,'2021-05-11 04:58:20','2021-05-11 04:58:20','36d224a5-543a-4f96-aefa-014ed50da758','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(38911,161040,1,'2021-05-11 04:58:20','2021-05-11 04:58:20','3091a684-5da9-429e-9b1b-687264e11e31','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(38912,161042,1,'2021-05-11 04:58:20','2021-05-11 04:58:20','6f4ca841-e2ec-4a6b-bd3b-15ec43033381','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(38913,161044,1,'2021-05-11 04:58:20','2021-05-11 04:58:20','02545c0b-02cd-48ef-b5e4-f4705e374243','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(38914,161047,1,'2021-05-11 04:58:20','2021-05-11 04:58:20','37ec07fd-0de2-4090-9c83-12e50b422c09','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(38915,161048,1,'2021-05-11 04:58:20','2021-05-11 04:58:20','09be8be4-308c-4b71-a229-a49fb9bbc9d9','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(38916,161051,1,'2021-05-11 04:58:20','2021-05-11 04:58:20','8efd52cd-d116-4dc1-82ac-aba56909fb59','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(38917,161055,1,'2021-05-11 04:58:20','2021-05-11 04:58:20','bccadf40-f3da-417f-9e22-f088db464301','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38918,161056,1,'2021-05-11 04:58:20','2021-05-11 04:58:20','91b2cf49-dbf2-4121-8d54-8788c29e7723','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38919,161062,1,'2021-05-11 04:58:29','2021-05-11 04:58:29','d2e33f57-d117-40e9-a511-21da86d29e5b','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(38920,161063,1,'2021-05-11 04:58:29','2021-05-11 04:58:29','c87e3f7e-d140-48f3-81e1-6864ac839613','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(38921,161066,1,'2021-05-11 04:58:29','2021-05-11 04:58:29','d4abbd68-a590-4b5f-8213-e835b136059b','Phase 1B rollout FAQs',NULL,1,'solid'),(38922,161069,1,'2021-05-11 04:58:29','2021-05-11 04:58:29','be839624-f050-4f25-b5fd-0b8563f9aab5','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210317_WEB.pdf?mtime=20210326152755&focal=none',1,'solid'),(38923,161075,1,'2021-05-11 04:58:29','2021-05-11 04:58:29','c1785df2-5417-4e6e-afbc-c217ee762137','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38924,161078,1,'2021-05-11 04:58:29','2021-05-11 04:58:29','3dff82fa-9637-44ce-9624-33751c23d0ec','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(38925,161080,1,'2021-05-11 04:58:29','2021-05-11 04:58:29','4cc32a58-931c-424a-bbdd-60ade456ad7e','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',1,'solid'),(38926,161082,1,'2021-05-11 04:58:29','2021-05-11 04:58:29','98c9835d-81d6-4c90-9680-4d536d420c22','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(38927,161085,1,'2021-05-11 04:58:29','2021-05-11 04:58:29','a7f2a90b-bab9-44c3-afbd-08a344ee1794','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(38928,161087,1,'2021-05-11 04:58:29','2021-05-11 04:58:29','b466a753-4b61-4692-b308-6c20ea9b8a1f','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(38929,161089,1,'2021-05-11 04:58:29','2021-05-11 04:58:29','c940ee69-cd54-469f-9f5a-24f96f951077','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(38930,161092,1,'2021-05-11 04:58:29','2021-05-11 04:58:29','9898e613-38eb-4474-8ad7-f7391b4569d6','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(38931,161093,1,'2021-05-11 04:58:29','2021-05-11 04:58:29','dc90ce1d-0bf2-4eb8-81dc-f2e63fbf2a49','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(38932,161096,1,'2021-05-11 04:58:29','2021-05-11 04:58:29','0061a579-3f0a-495d-bf81-e40814f52698','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(38933,161100,1,'2021-05-11 04:58:29','2021-05-11 04:58:29','4a964b23-59af-467e-8f6d-7c808bbfc3db','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38934,161101,1,'2021-05-11 04:58:29','2021-05-11 04:58:29','b133493d-29c2-46d5-9590-80e2ed7d60f4','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38935,161143,1,'2021-05-11 05:37:57','2021-05-11 05:37:57','63848c03-bf5a-4318-a4b7-70026d2e2ff5','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(38936,161144,1,'2021-05-11 05:37:57','2021-05-11 05:37:57','25d5f1f0-3081-4d19-bd87-4d83511dfb77','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(38937,161147,1,'2021-05-11 05:37:57','2021-05-11 05:37:57','8cc8210c-212e-40c1-82a8-7e7bce0d9f5c','Phase 1B rollout FAQs',NULL,1,'solid'),(38938,161150,1,'2021-05-11 05:37:57','2021-05-11 05:37:57','6cae885d-3899-4cab-b338-594aa9409f27','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210511.pdf?mtime=20210511153628&focal=none',1,'solid'),(38939,161156,1,'2021-05-11 05:37:57','2021-05-11 05:37:57','dfcf7366-7c61-408f-ac03-ecf7224900c5','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38940,161159,1,'2021-05-11 05:37:57','2021-05-11 05:37:57','26f7ad66-6bb5-4d45-9c28-869d94fe0217','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(38941,161161,1,'2021-05-11 05:37:57','2021-05-11 05:37:57','18987e4b-4f91-4020-9dd1-808a10ca4c65','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',1,'solid'),(38942,161163,1,'2021-05-11 05:37:57','2021-05-11 05:37:57','956b75bd-505c-41e8-9d98-08eada4e5821','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(38943,161166,1,'2021-05-11 05:37:57','2021-05-11 05:37:57','4c489700-3ec3-4d12-b5fe-e6ebfce587be','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(38944,161168,1,'2021-05-11 05:37:57','2021-05-11 05:37:57','8bedce67-f772-4df2-9ef6-424430422b57','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(38945,161170,1,'2021-05-11 05:37:57','2021-05-11 05:37:57','b095eb52-b519-45f2-86ed-6704d98214b1','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(38946,161173,1,'2021-05-11 05:37:57','2021-05-11 05:37:57','49815bce-1a72-4b64-92f2-f985e96bb15a','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(38947,161174,1,'2021-05-11 05:37:57','2021-05-11 05:37:57','53ea1d1a-e6a9-4833-ad82-719f526156fc','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(38948,161177,1,'2021-05-11 05:37:57','2021-05-11 05:37:57','288e0c13-b838-49e4-8692-cd997ec68208','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(38949,161181,1,'2021-05-11 05:37:57','2021-05-11 05:37:57','49627937-5f87-415c-a35b-921453df083e','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38950,161182,1,'2021-05-11 05:37:58','2021-05-11 05:37:58','23e54bda-4cd8-45eb-9183-ac3dc11d19ed','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38951,161188,1,'2021-05-11 05:39:49','2021-05-11 05:42:50','96232e81-71ac-4465-be99-981daec36919','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(38952,161189,1,'2021-05-11 05:39:49','2021-05-11 05:42:50','8bd10975-5523-4951-a089-a09083b314c4','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(38953,161192,1,'2021-05-11 05:39:49','2021-05-11 05:42:50','cd80d138-1af3-428e-b316-5a1fe46e7cbe','Phase 1B rollout FAQs',NULL,1,'solid'),(38954,161195,1,'2021-05-11 05:39:49','2021-05-11 05:42:50','4598549a-23ed-470d-8b4d-5cfe7ee5cb88','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210511.pdf?mtime=20210511153628&focal=none',1,'solid'),(38955,161201,1,'2021-05-11 05:39:49','2021-05-11 05:42:50','8dfbf2d4-1172-4b71-99dd-5f81e08d9ba5','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38956,161204,1,'2021-05-11 05:39:49','2021-05-11 05:42:50','37ba4ea5-08e7-4f77-9403-efc3b444c097','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(38957,161206,1,'2021-05-11 05:39:49','2021-05-11 05:42:50','2825170b-0949-4109-8b64-60cc3ee71965','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',1,'solid'),(38958,161208,1,'2021-05-11 05:39:49','2021-05-11 05:42:50','f0dd73d9-5848-493c-bef6-7b148055f055','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(38959,161211,1,'2021-05-11 05:39:49','2021-05-11 05:42:50','ca30e616-28f7-4295-ab9e-b946bb747eae','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(38960,161213,1,'2021-05-11 05:39:49','2021-05-11 05:42:50','f580e57d-9fe8-499d-81ca-ba63abafca3e','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(38961,161215,1,'2021-05-11 05:39:49','2021-05-11 05:42:50','c81e91af-416f-4375-95cc-f18c849b6216','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(38962,161218,1,'2021-05-11 05:39:49','2021-05-11 05:42:50','0b11fe23-bd32-4340-9d1a-d30faef36622','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(38963,161219,1,'2021-05-11 05:39:49','2021-05-11 05:42:50','3dbab071-dabb-485f-bf02-60e0ae263c52','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(38964,161222,1,'2021-05-11 05:39:49','2021-05-11 05:42:50','b30bc3bf-87a7-4dc7-994d-f9da1f9918c9','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(38965,161226,1,'2021-05-11 05:39:50','2021-05-11 05:42:51','32cfbc81-530f-4522-b87e-3fb3a88bd6ef','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38966,161227,1,'2021-05-11 05:39:50','2021-05-11 05:42:51','68606267-42e5-4955-a1ca-d6cbcd7b2a59','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38967,161232,1,'2021-05-11 05:43:04','2021-05-11 05:43:04','06da455d-605f-487f-a134-e797dc7ee591','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(38968,161233,1,'2021-05-11 05:43:04','2021-05-11 05:43:04','30898e85-070a-446f-8456-a2d16aafd53d','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(38969,161236,1,'2021-05-11 05:43:04','2021-05-11 05:43:04','ec3c51a5-403a-4144-b114-d2761b88514c','Phase 1B rollout FAQs',NULL,1,'solid'),(38970,161239,1,'2021-05-11 05:43:04','2021-05-11 05:43:04','8e2a36f3-fba7-4397-a0bb-b6d715555077','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210511.pdf?mtime=20210511153628&focal=none',1,'solid'),(38971,161245,1,'2021-05-11 05:43:04','2021-05-11 05:43:04','e5ce6616-d4ff-49c6-a666-35ceeb10a0b5','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38972,161248,1,'2021-05-11 05:43:04','2021-05-11 05:43:04','c46097c3-3c48-4bce-ac5d-37633a8ed5dd','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(38973,161250,1,'2021-05-11 05:43:04','2021-05-11 05:43:04','d443f116-f543-4141-aee5-06406722af01','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',1,'solid'),(38974,161252,1,'2021-05-11 05:43:04','2021-05-11 05:43:04','d51d2845-2f2f-44fc-b577-f9bfe1ec32b1','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(38975,161255,1,'2021-05-11 05:43:04','2021-05-11 05:43:04','878131a6-fc72-4f9c-98f2-a265fcf611c4','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(38976,161257,1,'2021-05-11 05:43:04','2021-05-11 05:43:04','849b0a17-7380-46d1-9ed8-cb080bfbd183','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(38977,161259,1,'2021-05-11 05:43:04','2021-05-11 05:43:04','c256ba81-de70-40ea-a308-1442a3089850','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(38978,161262,1,'2021-05-11 05:43:04','2021-05-11 05:43:04','70e7363b-6773-47d9-83e8-bbacc63334fb','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(38979,161263,1,'2021-05-11 05:43:04','2021-05-11 05:43:04','52e29d4c-0bae-46d6-8216-618dbd1c1f2d','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(38980,161266,1,'2021-05-11 05:43:04','2021-05-11 05:43:04','6f87e196-8994-4b7f-b139-34c2b9cf16ed','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(38981,161270,1,'2021-05-11 05:43:04','2021-05-11 05:43:04','50f0908b-e957-4998-b44c-9e5585722c4f','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38982,161271,1,'2021-05-11 05:43:05','2021-05-11 05:43:05','890a76d0-e4c4-4dc6-9dce-d64e63a8ad65','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38983,161277,1,'2021-05-11 05:43:06','2021-05-11 05:43:06','983ca578-8a7a-4cda-ac22-82308986e311','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(38984,161278,1,'2021-05-11 05:43:06','2021-05-11 05:43:06','c64d3266-e71e-44c0-9ec9-674dd26dbebe','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(38985,161281,1,'2021-05-11 05:43:06','2021-05-11 05:43:06','39e6c531-eceb-47ad-b92b-40b056d7f78e','Phase 1B rollout FAQs',NULL,1,'solid'),(38986,161284,1,'2021-05-11 05:43:06','2021-05-11 05:43:06','2b7a10c0-635b-469e-96ea-e6f7a4c84485','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210511.pdf?mtime=20210511153628&focal=none',1,'solid'),(38987,161290,1,'2021-05-11 05:43:06','2021-05-11 05:43:06','7e45ccd8-505c-45f3-86d1-deddade66cf4','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(38988,161293,1,'2021-05-11 05:43:06','2021-05-11 05:43:06','1dd6b1d6-c579-4427-8489-5124f57ed5ea','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(38989,161295,1,'2021-05-11 05:43:06','2021-05-11 05:43:06','99a6cd1b-4874-48da-9d9f-268adb5bb447','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',1,'solid'),(38990,161297,1,'2021-05-11 05:43:06','2021-05-11 05:43:06','58ae6f5a-c6d5-4227-a1c8-0961f4c7eba5','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(38991,161300,1,'2021-05-11 05:43:06','2021-05-11 05:43:06','4d220628-dfe9-4eaa-b3da-57a130349da3','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(38992,161302,1,'2021-05-11 05:43:06','2021-05-11 05:43:06','9a8abf3d-f7d1-4c32-adc7-b219a8db115b','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(38993,161304,1,'2021-05-11 05:43:06','2021-05-11 05:43:06','095d73a3-ff6f-4730-87fc-b43401ecd453','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(38994,161307,1,'2021-05-11 05:43:06','2021-05-11 05:43:06','3b97721c-d4e0-445d-8cf2-0728aea2bb4f','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(38995,161308,1,'2021-05-11 05:43:06','2021-05-11 05:43:06','f678caca-4e38-4794-95ff-a5c80bb1aa88','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(38996,161311,1,'2021-05-11 05:43:06','2021-05-11 05:43:06','026ff500-ab96-465f-b8f1-f7bf099fbee6','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(38997,161315,1,'2021-05-11 05:43:06','2021-05-11 05:43:06','95e0753e-41f2-47e9-819f-ee5794f3a5b0','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(38998,161316,1,'2021-05-11 05:43:06','2021-05-11 05:43:06','930d18d4-b411-4f98-9ad9-8735d68c97ac','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(38999,161322,1,'2021-05-11 05:47:44','2021-05-11 05:47:44','70662572-15b2-4194-bdc5-7538c819d6a9','More information via the Department of Health','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines?utm_source=health.gov.au&utm_medium=redirect&utm_campaign=digital_transformation&utm_content=covid19-vaccines',1,'solid'),(39000,161323,1,'2021-05-11 05:47:44','2021-05-11 05:47:44','875c7fb8-d155-474d-807d-83662868c9fa','More information via Queensland Health','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers',1,'solid'),(39001,161326,1,'2021-05-11 05:47:44','2021-05-11 05:47:44','d0259eba-3a66-411d-8837-5948a035a901','Phase 1B rollout FAQs',NULL,1,'solid'),(39002,161329,1,'2021-05-11 05:47:44','2021-05-11 05:47:44','7c5ea4aa-44ff-4725-8b67-e79f04568dee','Download the COVID vaccination query workflow','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/COVID-19/FIN_GP-query-workflow_210511.pdf?mtime=20210511153628&focal=none',1,'solid'),(39003,161335,1,'2021-05-11 05:47:44','2021-05-11 05:47:44','dc1c5cd8-7abd-4aea-87b6-e91b56f6ab6e','More information on testing','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(39004,161338,1,'2021-05-11 05:47:45','2021-05-11 05:47:45','f97d7e42-abaa-4a36-824f-8a0d1876a7d4','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/709101.htm',1,'solid'),(39005,161340,1,'2021-05-11 05:47:45','2021-05-11 05:47:45','fb00d253-dfb9-4e98-854d-892b80efe8f2','CDNA guidelines','https://www1.health.gov.au/internet/main/publishing.nsf/Content/cdna-song-novel-coronavirus.htm',1,'solid'),(39006,161342,1,'2021-05-11 05:47:45','2021-05-11 05:47:45','51e52f62-49cf-4982-8a70-04947e56c17d','Download the list','https://d1jydvs1x4rbvt.cloudfront.net/downloads/COVID-19-List-of-Suppliers-PPE-Table-BNPHN.pdf?mtime=20200804134711&focal=none',1,'solid'),(39007,161345,1,'2021-05-11 05:47:45','2021-05-11 05:47:45','026d345c-e144-4a23-bb04-b51332067d7c','View the flowchart','https://www.health.qld.gov.au/__data/assets/pdf_file/0036/951858/gp-management-suspected-covid-19.pdf',1,'solid'),(39008,161347,1,'2021-05-11 05:47:45','2021-05-11 05:47:45','ad26c497-95a4-4a81-84b9-9cd933b4bf12','Download the checklist','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Practice-support/TEM_GP-COVID19-checklist-v1.3.pdf?mtime=20200803162346&focal=none',1,'solid'),(39009,161349,1,'2021-05-11 05:47:45','2021-05-11 05:47:45','3cdb641a-1526-42da-b3a9-5a92745aa18e','Visit the healthdirect website','https://about.healthdirect.gov.au/video-call',1,'solid'),(39010,161352,1,'2021-05-11 05:47:45','2021-05-11 05:47:45','c6552dbe-8157-49e1-9f1d-b1634f266b0a','MBS quick guide to COVID-19 items','https://www.ausdoc.com.au/sites/default/files/MBS%20card_APR21_COVID-19%20items.pdf',1,'outline'),(39011,161353,1,'2021-05-11 05:47:45','2021-05-11 05:47:45','bd955713-a131-4c7f-a09f-7ce5a3867ec4','Medicare: Coronavirus information for health professionals','https://www.servicesaustralia.gov.au/organisations/health-professionals/subjects/coronavirus-information-health-professionals',1,'outline'),(39012,161356,1,'2021-05-11 05:47:45','2021-05-11 05:47:45','e36c1417-879a-4550-8531-2c81782a57f6','More information','https://about.healthdirect.gov.au/covid-19-health-professionals-disability-advisory-service',1,'link'),(39013,161360,1,'2021-05-11 05:47:45','2021-05-11 05:47:45','630d53cf-8649-47bb-bedb-b469293c7f76','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(39014,161361,1,'2021-05-11 05:47:45','2021-05-11 05:47:45','acd0aa68-7e49-4d63-85dd-fbbf77f81b62','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(39015,161444,1,'2021-05-13 00:49:48','2021-05-13 00:49:48','65563945-f304-405b-970f-c14d9040cfd9','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',1,'solid'),(39016,161446,1,'2021-05-13 00:49:48','2021-05-13 00:49:48','72541a59-b857-4b4d-9637-a62b26d6dd12','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39017,161458,1,'2021-05-13 00:49:48','2021-05-13 00:49:48','91ccdfaa-2005-4d0f-af9f-21619044ce5b','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39018,161459,1,'2021-05-13 00:49:48','2021-05-13 00:49:48','eef17a77-659b-4d2a-bf26-3c61f86caed5','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(39019,161501,1,'2021-05-13 04:14:53','2021-05-13 04:14:53','52d7b904-c4e6-4a7f-9c52-dc92ee1aaffc',NULL,NULL,0,'solid'),(39020,161511,1,'2021-05-13 04:14:55','2021-05-13 04:14:55','1224f409-d132-48ce-9b59-c8303279c2b1',NULL,NULL,0,'solid'),(39021,161521,1,'2021-05-13 04:14:57','2021-05-13 04:14:57','68d63511-f133-4637-ae4b-799694394bb0',NULL,'https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39022,161531,1,'2021-05-13 04:15:00','2021-05-13 04:15:00','3c0b2a06-ff26-4d35-aca8-5d41a8a708b6','Download','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39023,161541,1,'2021-05-13 04:15:01','2021-05-13 04:15:01','f28f3fac-e218-478d-8899-14dd4bcba0b6','Download ou','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39024,161551,1,'2021-05-13 04:15:03','2021-05-13 04:15:03','382e1ed1-3a18-4eef-a001-15582c35b6d1','Download our st','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39025,161561,1,'2021-05-13 04:15:05','2021-05-13 04:15:05','2b8577c5-404a-4493-a51b-bd878bac2662','Download our s','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39026,161571,1,'2021-05-13 04:15:07','2021-05-13 04:15:07','82fdcee2-1806-4086-a7a4-08438c7684fa','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39027,161581,1,'2021-05-13 04:15:19','2021-05-13 04:15:19','f642af08-b549-4725-b58f-7440918409b1','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39028,161591,1,'2021-05-13 04:15:20','2021-05-13 04:15:20','34c845f7-009b-4821-b03d-11b17fd868da','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39029,161601,1,'2021-05-13 04:15:39','2021-05-13 04:15:39','56bd6aff-d711-42c8-9011-e7603dcf9bd6','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39030,161611,1,'2021-05-13 04:15:41','2021-05-13 04:15:41','1ca047c9-5bbc-4775-aad7-cc493082da1f','View our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39031,161621,1,'2021-05-13 04:16:44','2021-05-13 04:16:44','f3589c46-2611-48cd-aebf-fd9cff96c362','Download the plan as a PDF strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39032,161631,1,'2021-05-13 04:16:47','2021-05-13 04:16:47','a717040a-58ac-40b0-82c8-348f89e00556','Download the plan as a PDF','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39033,161641,1,'2021-05-13 04:16:51','2021-05-13 04:16:51','f2e3ee3c-c931-403d-9879-681a6767dadd','Download our plan as a PDF','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39034,161651,1,'2021-05-13 04:17:06','2021-05-13 04:17:06','991681f5-c83e-4d1d-b456-5a265efc8296','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39035,161661,1,'2021-05-13 04:17:38','2021-05-13 04:17:38','f219646c-7f2b-44ec-9e53-2d39c4e5983b','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39036,161671,1,'2021-05-13 04:17:41','2021-05-13 04:17:41','da5474ae-f9bd-4694-815e-1571e287832b','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39037,161681,1,'2021-05-13 04:17:48','2021-05-13 04:17:48','c01c89b3-977c-47a1-8861-e9e9944b1783','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39038,161691,1,'2021-05-13 04:18:10','2021-05-13 04:18:10','904ea05e-1d48-4877-8c81-8264354fbbc5','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39039,161701,1,'2021-05-13 04:18:56','2021-05-13 04:18:56','82ce8551-4ba7-4263-a988-9be8a2e88d20','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39040,161711,1,'2021-05-13 04:19:44','2021-05-13 04:19:44','d7f4426c-50b7-49e4-ae39-27962db98fa6','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39041,161721,1,'2021-05-13 04:19:49','2021-05-13 04:19:49','855eddb5-595e-4c3f-877f-b2dc1e5a77aa','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39042,161731,1,'2021-05-13 04:19:50','2021-05-13 04:19:50','03c1cbcc-c26c-448a-936d-bf27b6d75656','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39043,161741,1,'2021-05-13 04:20:02','2021-05-13 04:20:02','c639645d-f30f-4673-8049-3777981c1d7f','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39044,161751,1,'2021-05-13 04:20:40','2021-05-13 04:20:40','da2f9f64-b6db-4aca-b33b-161977cdafcd','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39045,161761,1,'2021-05-13 04:20:42','2021-05-13 04:20:42','f216c9ab-7dfe-4c0d-a5b8-62d83916ddb8','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39046,161771,1,'2021-05-13 04:21:39','2021-05-13 04:21:39','e1ad5674-30e3-4ef9-9945-8b92aad80a8c','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39047,161781,1,'2021-05-13 04:21:53','2021-05-13 04:21:53','315b1b48-d3cd-4422-a4bc-fd64f5b8d885','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39048,161791,1,'2021-05-13 04:22:25','2021-05-13 04:22:25','3e7476cb-8a94-40b7-9e9a-555367e6c401','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39049,161801,1,'2021-05-13 04:22:43','2021-05-13 04:22:43','d511f126-09af-44fc-9e25-a1136e9f5b5d','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39050,161811,1,'2021-05-13 04:22:48','2021-05-13 04:22:48','09094a10-2166-43d5-ba25-474efdc889a0','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39051,161821,1,'2021-05-13 04:23:03','2021-05-13 04:23:03','46f53791-7e21-42f6-9667-9d941baa2fd7','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39052,161831,1,'2021-05-13 04:23:21','2021-05-13 04:23:21','8493f1b9-beeb-4777-b1c3-87da7ceee046','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39053,161841,1,'2021-05-13 04:23:53','2021-05-13 04:23:53','cac1bc2c-ff20-4b35-aa2c-4e49ce4cb3ad','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39054,161851,1,'2021-05-13 04:24:06','2021-05-13 04:24:06','c87e3768-097d-4c64-8782-0d4a98ae8ce3','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39055,161861,1,'2021-05-13 04:24:22','2021-05-13 04:24:22','9b93153f-c611-4476-82f1-b325148137de','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39056,161871,1,'2021-05-13 04:24:33','2021-05-13 04:24:33','1df641d3-5cdf-4eb1-9976-12786fc47b36','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39057,161881,1,'2021-05-13 04:24:39','2021-05-13 04:24:39','70dae81b-094f-4341-b595-6a34ac48410c','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39058,161891,1,'2021-05-13 04:24:47','2021-05-13 04:24:47','5c8dde83-49bf-465a-aea2-d2dff15c8fc4','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39059,161901,1,'2021-05-13 04:25:01','2021-05-13 04:25:01','da3130f3-cf0f-4796-9645-cd0a3c3eec66','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39060,161911,1,'2021-05-13 04:25:13','2021-05-13 04:25:13','d404e620-5682-4c9a-a608-61377ecd2bfd','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39061,161921,1,'2021-05-13 04:25:22','2021-05-13 04:25:22','b492b7d1-44b8-4e40-b4d2-ed3be4013f38','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39062,161931,1,'2021-05-13 04:25:35','2021-05-13 04:25:35','98fb0976-1d29-4acb-a2f0-2da94f47fb63','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39063,161941,1,'2021-05-13 04:25:54','2021-05-13 04:25:54','ac2f57dd-515f-44ec-ab01-2c17b96ca63c','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39064,161951,1,'2021-05-13 04:26:03','2021-05-13 04:26:03','e784d12a-2366-40c2-a458-5b5ac643ccd6','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39065,161961,1,'2021-05-13 04:26:19','2021-05-13 04:26:19','434b00a1-8768-4fb8-bb10-f50c67ce6c16','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39066,161971,1,'2021-05-13 04:26:44','2021-05-13 04:26:44','c1c97e85-37f1-4c48-8ed1-24778041da3b','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39067,161981,1,'2021-05-13 04:27:01','2021-05-13 04:29:56','22a516fa-da40-4f0f-8336-2eff8474e73a','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',1,'solid'),(39068,161992,1,'2021-05-13 04:27:01','2021-05-13 04:27:01','def15095-8d6c-4f88-9a2d-906c4000b24b','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39069,162003,1,'2021-05-13 04:27:05','2021-05-13 04:27:05','0b92b736-2ed0-4895-b83d-3eddce0f9223','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',0,'solid'),(39070,162027,1,'2021-05-13 04:29:56','2021-05-13 04:29:56','052cb395-c4db-44ad-b26b-0873fb3e9c93','Download our strategic plan','https://d1jydvs1x4rbvt.cloudfront.net/downloads/BNPHN_Strategic_Plan_2020-2023_FINAL_21.pdf?mtime=20210513141047&focal=none',1,'solid'),(39071,162287,1,'2021-05-18 04:28:54','2021-05-18 04:28:54','1753d134-f5e4-4722-a228-8c5c18f2f8ea','Recovery April 2021',NULL,0,'solid'),(39072,162288,1,'2021-05-18 04:29:01','2021-05-18 04:29:01','10a0ef51-cfd2-45bb-8699-fa80abf52589','Recovery April 2021',NULL,0,'solid'),(39073,162357,1,'2021-05-18 06:15:57','2021-05-18 06:18:13','a4c1fe96-418c-4764-9c22-272c3d845feb','About COVID-19 vaccines','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/about',1,'solid'),(39074,162358,1,'2021-05-18 06:15:57','2021-05-18 06:18:13','58ecdf9b-e9bc-49af-93e8-58596cd31967','Queensland vaccine strategy','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout',1,'solid'),(39075,162359,1,'2021-05-18 06:15:57','2021-05-18 06:18:13','41877251-0c46-425e-afd8-e6258e802272','Call the COVID-19 vaccination helpline','https://www.health.gov.au/contacts/national-coronavirus-and-covid-19-vaccine-helpline',1,'solid'),(39076,162360,1,'2021-05-18 06:15:57','2021-05-18 06:18:13','59f87c02-a619-4d75-8064-aff3fc9f535c','Vaccine rollout data','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/australias-covid-19-vaccine-rollout',1,'solid'),(39077,162363,1,'2021-05-18 06:15:57','2021-05-18 06:18:13','c486860e-9612-4b93-983b-6aaee9327b5f','Information for Aboriginal and Torres Strait Islander peoples','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aboriginal-and-torres-strait-islander-peoples-about-covid-19-vaccines',0,'solid'),(39078,162364,1,'2021-05-18 06:15:57','2021-05-18 06:18:13','dec097aa-f176-47c7-a7e2-b05130627d44','COVID-19 vaccine in your language','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/covid-19-vaccine-information-in-your-language',1,'solid'),(39079,162365,1,'2021-05-18 06:15:57','2021-05-18 06:18:13','f95d9a55-69ed-4ca2-ade9-4edb1ff0e583','Auslan vaccine-explainer videos','https://www.health.gov.au/news/health-alerts/novel-coronavirus-2019-ncov-health-alert/advice-for-people-at-risk-of-coronavirus-covid-19/coronavirus-covid-19-advice-for-people-with-disability#auslan-videos',1,'solid'),(39080,162366,1,'2021-05-18 06:15:57','2021-05-18 06:18:13','94f79de1-fbe5-42b8-909e-3ae39f570438','Information for aged care providers, workers and residents','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/getting-vaccinated-for-covid-19/information-for-aged-care-providers-workers-and-residents-about-covid-19-vaccines',1,'solid'),(39081,162369,1,'2021-05-18 06:15:57','2021-05-18 06:18:14','7a81e027-eeea-48fa-b16f-0d8a0fcb2005','ATAGI statement - 8 April','https://www.health.gov.au/news/atagi-statement-on-astrazeneca-vaccine-in-response-to-new-vaccine-safety-concerns',1,'solid'),(39082,162370,1,'2021-05-18 06:15:57','2021-05-18 06:18:14','788a2755-b96b-415e-989c-024efd970216','ATAGI statement - 23 April','https://www.health.gov.au/news/atagi-reinforce-recommendations-on-use-of-covid-19-vaccines-following-review-of-vaccine-safety-data-and-benefits',1,'solid'),(39083,162371,1,'2021-05-18 06:15:57','2021-05-18 06:18:14','7ee6a282-6c02-4d38-baa9-04218622a447','Chief Medical Officer\'s response to ATAGI advice','https://www.health.gov.au/news/response-latest-atagi-advice',1,'solid'),(39084,162376,1,'2021-05-18 06:15:58','2021-05-18 06:18:14','02505b5b-ba28-40e5-8f84-9cddf17e99a1','More information','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/current-status/public-health-directions/border-restrictions/essential-health-care',1,'solid'),(39085,162379,1,'2021-05-18 06:15:58','2021-05-18 06:18:14','29e4b22a-2b2a-4a2c-b5de-fb111a60340d','Beyond Blue','https://coronavirus.beyondblue.org.au/',1,'solid'),(39086,162380,1,'2021-05-18 06:15:58','2021-05-18 06:18:14','aac6bc5d-5148-40c8-8c59-f059ac6210da','Life in Mind','https://www.lifeinmindaustralia.com.au/support-for-those-impacted-by-adverse-events/mental-health-support-for-covid-19',1,'solid'),(39087,162381,1,'2021-05-18 06:15:58','2021-05-18 06:18:14','a2aa3fca-c197-42a7-927b-4fd9164df775','headspace','https://headspace.org.au/young-people/how-to-cope-with-stress-related-to-covid-19/',1,'solid'),(39088,162382,1,'2021-05-18 06:15:58','2021-05-18 06:18:14','f0905aa2-8ba4-4792-98fd-046eba955af7','Lifeline','https://www.lifeline.org.au/get-help/topics/mental-health-and-wellbeing-during-the-coronavirus-covid-19-outbreak',1,'solid'),(39089,162383,1,'2021-05-18 06:15:58','2021-05-18 06:18:14','bf88c76f-f9a8-4641-8fce-605771034d03','Emerging Minds','https://emergingminds.com.au/',1,'solid'),(39090,162389,1,'2021-05-18 06:15:58','2021-05-18 06:18:14','3e1ad1b4-bf15-428e-89f0-520a93bf41b6','St Vincent de Paul','https://www.vinnies.org.au/page/News/National/COVID_19_Update/',1,'solid'),(39091,162390,1,'2021-05-18 06:15:58','2021-05-18 06:18:14','6e403515-7412-4ede-bdc9-314086cce70d','Salvation Army','https://www.salvationarmy.org.au/about-us/news-and-stories/media-newsroom/coronavirus-response-march-24-2020/',1,'solid'),(39092,162391,1,'2021-05-18 06:15:58','2021-05-18 06:18:14','7f812da2-bfbe-4dd0-b2bf-da9c3f47fa5e','Wesley Mission','https://www.wesleymission.org.au/covid-19-information/',1,'solid'),(39093,162403,1,'2021-05-18 23:30:41','2021-05-18 23:30:49','c2b1fdfc-b9f5-4147-9e4b-96658c72a64f','Expression of Interest for Clinicians\' Advisory Group Members','https://brisbanenorthphn.org.au/jobs/expression-of-interest-for-clinicians-advisory-group-members',1,'solid'),(39094,162404,1,'2021-05-18 23:30:41','2021-05-18 23:30:41','47bf4dde-fea6-4d4a-a39c-93b9ea14ece5','Program Support Officer | Healthy Ageing','https://brisbanenorthphn.org.au/jobs/program-support-officer-healthy-ageing',1,'solid'),(39095,162405,1,'2021-05-18 23:30:41','2021-05-18 23:30:49','517b29be-2766-4462-b1a6-b974e63a2527','Service Navigation Coordinator (part-time)','https://brisbanenorthphn.org.au/jobs/service-navigation-coordinator-part-time',1,'solid'),(39096,162408,1,'2021-05-18 23:30:41','2021-05-18 23:30:49','8f1e6814-49c2-406d-8eb4-773e6c3f0b31','Browse local positions vacant',NULL,0,'solid'),(39097,162409,1,'2021-05-18 23:30:41','2021-05-18 23:30:41','bcb8dce5-cec6-4d3c-b71e-41ce5ed10da2','Development Lead | Health Alliance','https://brisbanenorthphn.org.au/jobs/development-lead-health-alliance',1,'solid'),(39098,162410,1,'2021-05-18 23:30:49','2021-05-18 23:30:49','a309974d-33b4-4509-9b80-cc7b2397e8fc','Development Lead | Health Alliance','https://brisbanenorthphn.org.au/jobs/development-lead-health-alliance',1,'solid'),(39099,162415,1,'2021-05-18 23:30:59','2021-05-18 23:30:59','6f5ec597-8c21-43f6-95b0-7289aed51ca0','Expression of Interest for Clinicians\' Advisory Group Members','https://brisbanenorthphn.org.au/jobs/expression-of-interest-for-clinicians-advisory-group-members',1,'solid'),(39100,162416,1,'2021-05-18 23:30:59','2021-05-18 23:30:59','165d5681-2d6a-4026-856f-5c33e1ebcaa5','Service Navigation Coordinator (part-time)','https://brisbanenorthphn.org.au/jobs/service-navigation-coordinator-part-time',1,'solid'),(39101,162417,1,'2021-05-18 23:30:59','2021-05-18 23:30:59','9ddf555b-a616-468c-86fa-9964f32d20d0','Development Lead | Health Alliance','https://brisbanenorthphn.org.au/jobs/development-lead-health-alliance',1,'solid'),(39102,162420,1,'2021-05-18 23:30:59','2021-05-18 23:30:59','59cfa069-d5ca-4aff-9529-5741c8eb7bc0','Browse local positions vacant',NULL,0,'solid'),(39103,162426,1,'2021-05-18 23:30:59','2021-05-18 23:30:59','2a72edf9-1f1b-4d09-9c46-2b767bcb0789','Expression of Interest for Clinicians\' Advisory Group Members','https://brisbanenorthphn.org.au/jobs/expression-of-interest-for-clinicians-advisory-group-members',1,'solid'),(39104,162427,1,'2021-05-18 23:30:59','2021-05-18 23:30:59','93c500bb-02e7-4b17-9824-90d65899891c','Service Navigation Coordinator (part-time)','https://brisbanenorthphn.org.au/jobs/service-navigation-coordinator-part-time',1,'solid'),(39105,162428,1,'2021-05-18 23:30:59','2021-05-18 23:30:59','81522839-9afc-485b-b6b4-1aa6811aac91','Development Lead | Health Alliance','https://brisbanenorthphn.org.au/jobs/development-lead-health-alliance',1,'solid'),(39106,162431,1,'2021-05-18 23:30:59','2021-05-18 23:30:59','4695b0af-9e8a-4eb3-851c-d92deb221f55','Browse local positions vacant',NULL,0,'solid'),(39107,162436,1,'2021-05-18 23:41:16','2021-05-18 23:41:16','3a77a24d-5a09-4fc0-89d4-d35769398995','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',1,'solid'),(39108,162438,1,'2021-05-18 23:41:16','2021-05-18 23:41:16','8086ed30-bd19-4f03-a365-a525f99aca87','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39109,162450,1,'2021-05-18 23:41:17','2021-05-18 23:41:17','408e4848-8b2e-4220-97a3-edb317febf29','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39110,162451,1,'2021-05-18 23:41:17','2021-05-18 23:41:17','d4114643-7726-4ea6-a255-c08fda2e70f4','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(39111,162471,1,'2021-05-19 00:50:46','2021-05-19 00:50:46','24119023-0097-42e5-805a-4ddf15f905c0','For GPs',NULL,1,'solid'),(39112,162472,1,'2021-05-19 00:50:46','2021-05-19 00:50:46','0e391926-daa6-4a52-b3b1-938edb2fd0b6','For RACFs',NULL,1,'solid'),(39113,162473,1,'2021-05-19 00:50:46','2021-05-19 00:50:46','2b14c5e4-b23b-4ef1-9d14-61659cb349b0','For community',NULL,1,'solid'),(39114,162476,1,'2021-05-19 00:50:46','2021-05-19 00:50:46','ef6ebf30-f3c3-40c1-9185-c85c4663dadf','Fever and community assessment clinics','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/stay-informed/testing-and-fever-clinics',1,'solid'),(39115,162479,1,'2021-05-19 00:50:46','2021-05-19 00:50:46','faed5ebf-926f-4789-b661-e44767d72871','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org/',1,'solid'),(39116,162482,1,'2021-05-19 00:50:46','2021-05-19 00:50:46','5bf5a416-3c50-435b-aa5e-c6101f9c1101','Subscribe to updates','https://brisbanenorthphn.org.au/news-events/newsletters',1,'solid'),(39117,162484,1,'2021-05-19 00:50:46','2021-05-19 00:50:46','6ec9da25-df5e-4f72-b073-d13ed1eec993','24 April','https://icampaign.brightlabs.com.au/v/9655/1735694709/email.html?k=T765D-g3I3xwquDMKWDt0b1lr9SnufuSbrSQVvGq9pU',1,'solid'),(39118,162485,1,'2021-05-19 00:50:46','2021-05-19 00:50:46','bd44ed43-3727-496a-95e4-16a6e0578dab','11 April','https://icampaign.brightlabs.com.au/v/9655/1735688107/email.html?k=0zbLWXL9p5GnYnEkBtLJQ-6_Jeo-PoOc5e4Ixb3AOe0',1,'solid'),(39119,162486,1,'2021-05-19 00:50:46','2021-05-19 00:50:46','b6001d23-f1bd-46b3-8747-ac1b989c4d49','9 April','https://icampaign.brightlabs.com.au/v/9655/1735686917/email.html?k=wWvhac5K_2ThrjHnqFX8KD-Iowxb8LaMjuY8biU2nQw',1,'solid'),(39120,162487,1,'2021-05-19 00:50:46','2021-05-19 00:50:46','6da2d97b-bdf5-4eb5-8022-2a29611476ed','29 March','https://icampaign.brightlabs.com.au/v/9655/1735681338/email.html?k=p00jE-y-BK2WRoDkTo-ZzhMWLK6WHdUeeleFJUMhNVg',1,'solid'),(39121,162488,1,'2021-05-19 00:50:46','2021-05-19 00:50:46','9d44c99c-a568-4d2d-b5c6-5395c41ba8d7','26 March','https://icampaign.brightlabs.com.au/v/9655/1735680145/email.html?k=tygpMLfOttxcbCXZ0B2NJjCHvdQXZu95WMekeXcJoro',1,'solid'),(39122,162490,1,'2021-05-19 00:50:46','2021-05-19 00:50:46','80036040-8cb6-4727-b546-f52ce205443b','Queensland Health updates','https://www.vision6.com.au/forms/s/nXYeJkCiD0Kz1OaKEPi2Hht7P6wqU5qQP3EzmHLszPE/40423/716050/375502.html',1,'solid'),(39123,162491,1,'2021-05-19 00:50:46','2021-05-19 00:50:46','0e8b9686-05d7-4927-8e15-dcc1fa5d6406','Department of Health updates','https://health.us19.list-manage.com/subscribe?u=5d358769e5f779a1a830c2bd0&id=f318dc2fe0',1,'solid'),(39124,162492,1,'2021-05-19 00:50:46','2021-05-19 00:50:46','4a57a497-25c6-4d16-a676-8a5a6edbb751','COVID-19 vaccine updates','https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/subscribe-to-covid-19-vaccines-updates',1,'solid'),(39125,162495,1,'2021-05-19 00:50:46','2021-05-19 00:50:46','0c8016dd-2434-4164-bbc9-7feaffffc0f9','Department of Health','https://www.health.gov.au/',1,'outline'),(39126,162496,1,'2021-05-19 00:50:46','2021-05-19 00:50:46','1825a647-ff1d-4d10-b520-be0eda31138c','Queensland Government','https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19',1,'outline'),(39127,162497,1,'2021-05-19 00:50:46','2021-05-19 00:50:46','25adc240-2ce3-4a24-b83e-a3977cc36976','World Health Organisation','http://who.int/health-topics/coronavirus',1,'outline'),(39128,162521,1,'2021-05-19 01:15:22','2021-05-19 01:15:33','3e1771ac-e5fa-4500-8c44-61f9d1f47e02','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',1,'solid'),(39129,162523,1,'2021-05-19 01:15:22','2021-05-19 01:15:33','8970f326-50f0-47db-820b-b7f829432f79','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39130,162535,1,'2021-05-19 01:15:22','2021-05-19 01:15:34','b91862d5-bcef-40e0-9c8f-d2f79d24d8d5','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39131,162536,1,'2021-05-19 01:15:22','2021-05-19 01:15:34','cd29b220-6187-457e-8a53-4ce8aed9c49f','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(39132,162540,1,'2021-05-19 01:15:53','2021-05-19 01:15:53','f5bd95b5-3725-4277-b538-6a54be894350','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',1,'solid'),(39133,162542,1,'2021-05-19 01:15:53','2021-05-19 01:15:53','4f3fb00a-1b4b-4aed-a392-3c4832a1bbdb','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39134,162554,1,'2021-05-19 01:15:53','2021-05-19 01:15:53','eaa87e64-ae0b-4bc6-9400-6b09e525bf3d','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39135,162555,1,'2021-05-19 01:15:53','2021-05-19 01:15:53','7e50c6e1-a06d-4d76-92b8-7548686f78b5','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(39136,162560,1,'2021-05-19 01:15:53','2021-05-19 01:15:53','4315fbc4-0dd9-480b-ba76-cfe28270bac6','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',1,'solid'),(39137,162562,1,'2021-05-19 01:15:53','2021-05-19 01:15:53','5899647e-58a5-4b21-8851-f351b2596ed6','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39138,162574,1,'2021-05-19 01:15:54','2021-05-19 01:15:54','2195a463-80c5-409e-992c-aae0776f016b','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39139,162575,1,'2021-05-19 01:15:54','2021-05-19 01:15:54','8ba64add-244a-43dd-8d3c-24205ac8ed1a','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(39140,162580,1,'2021-05-19 01:16:21','2021-05-19 01:17:06','9b67c153-e5ae-4b63-b1b7-ea9dec13cfdb','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',1,'solid'),(39141,162582,1,'2021-05-19 01:16:21','2021-05-19 01:17:06','e598eabc-83ea-4286-9593-def01de359f1','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39142,162594,1,'2021-05-19 01:16:21','2021-05-19 01:17:06','e09130f5-a147-4dea-a0d8-bff06e899b61','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39143,162595,1,'2021-05-19 01:16:21','2021-05-19 01:17:06','c8449f5c-0a8d-4e18-baa5-8420ea0e21f7','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(39144,162599,1,'2021-05-19 01:17:15','2021-05-19 01:17:15','bc9d68ea-a9e4-4bb8-883a-c1a1f6480ff0','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',1,'solid'),(39145,162601,1,'2021-05-19 01:17:16','2021-05-19 01:17:16','16290cae-5d03-4b9e-8c52-7af0b02a716a','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39146,162613,1,'2021-05-19 01:17:16','2021-05-19 01:17:16','e7a9eb79-f351-4e30-902c-fa3e99eebb6b','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39147,162614,1,'2021-05-19 01:17:16','2021-05-19 01:17:16','75aa83bb-5ff7-4e9c-a429-7d97b82a9d56','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(39148,162619,1,'2021-05-19 01:17:16','2021-05-19 01:17:16','9c2a677b-23a2-4aed-8f10-0d86db6b1367','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',1,'solid'),(39149,162621,1,'2021-05-19 01:17:16','2021-05-19 01:17:16','000b2620-c94f-4a42-b213-c333c51d3262','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39150,162633,1,'2021-05-19 01:17:17','2021-05-19 01:17:17','1de3fc8d-053f-460e-9a53-c7a6feaf1fdd','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39151,162634,1,'2021-05-19 01:17:17','2021-05-19 01:17:17','fbb1e8aa-8de6-46e4-9e04-3247c2637675','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(39152,162639,1,'2021-05-19 01:17:53','2021-05-19 01:17:53','602c01c7-7cc6-420f-a0f1-b9e1d147d929','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',1,'solid'),(39153,162641,1,'2021-05-19 01:17:53','2021-05-19 01:17:53','231714fd-67ce-4db3-a4c2-c72c8069605f','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39154,162653,1,'2021-05-19 01:17:53','2021-05-19 01:17:53','5660665b-6ef6-4522-b150-941515ce1ba5','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39155,162654,1,'2021-05-19 01:17:53','2021-05-19 01:17:53','e38fc8d1-ca07-44b9-aabe-cb051e32b0cd','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(39156,162658,1,'2021-05-19 01:18:12','2021-05-19 01:18:12','50014193-c2c9-4f6f-9e62-77ad6f9d08ef','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',1,'solid'),(39157,162660,1,'2021-05-19 01:18:12','2021-05-19 01:18:12','a210d1fe-6581-4714-8731-637653496e1c','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39158,162672,1,'2021-05-19 01:18:12','2021-05-19 01:18:12','dd7f0171-0918-4d82-a86b-60d3835157fb','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39159,162673,1,'2021-05-19 01:18:12','2021-05-19 01:18:12','36add692-689c-4685-b855-15489dbf70a0','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(39160,162678,1,'2021-05-19 01:18:12','2021-05-19 01:18:12','992c128d-20cd-4179-a96f-ab6d0944070e','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',1,'solid'),(39161,162680,1,'2021-05-19 01:18:12','2021-05-19 01:18:12','3d994750-299b-408b-8e0e-b6aa52a623b1','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39162,162692,1,'2021-05-19 01:18:13','2021-05-19 01:18:13','557873e4-b055-460b-a6c4-7e3c7ac97bc3','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39163,162693,1,'2021-05-19 01:18:13','2021-05-19 01:18:13','3566a27b-265f-4cf6-8662-56b49757c182','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(39164,162698,1,'2021-05-19 01:18:47','2021-05-19 01:18:47','bb8a0906-6ccf-4fac-be2b-3cbb5b8bfb8f','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',1,'solid'),(39165,162700,1,'2021-05-19 01:18:47','2021-05-19 01:18:47','174895e2-08f7-4d54-856e-de40b0370d56','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39166,162712,1,'2021-05-19 01:18:47','2021-05-19 01:18:47','e48fe78a-ef63-4f8d-8a87-61e60ece273f','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39167,162713,1,'2021-05-19 01:18:47','2021-05-19 01:18:47','fb70583f-6715-4ec2-a427-e34b41aa252e','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(39168,162727,1,'2021-05-19 01:19:13','2021-05-19 01:19:13','4b682936-5714-4fee-bbcc-b6170b6fd229','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',1,'solid'),(39169,162729,1,'2021-05-19 01:19:13','2021-05-19 01:19:13','e3b5c5fd-5630-4d44-afe4-fa14cee3062d','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39170,162732,1,'2021-05-19 01:19:13','2021-05-19 01:19:13','0c17b55f-d909-4d86-b5e5-f6f402f9d445','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39171,162733,1,'2021-05-19 01:19:13','2021-05-19 01:19:13','52df41e3-5aa0-47ef-ba5f-f203e87500cb','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(39172,162738,1,'2021-05-19 01:19:54','2021-05-19 01:20:01','373e240c-2327-4020-8a99-c496847141bf','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',1,'solid'),(39173,162740,1,'2021-05-19 01:19:54','2021-05-19 01:20:01','33f85113-b502-47fe-8c1e-17b0532471a9','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39174,162752,1,'2021-05-19 01:19:54','2021-05-19 01:20:01','3d996756-f3d1-47f8-b7b3-380bc8ecc91a','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39175,162753,1,'2021-05-19 01:19:54','2021-05-19 01:20:01','66aa5a88-392b-4272-a846-198310ec50de','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(39176,162757,1,'2021-05-19 01:20:05','2021-05-19 01:20:05','eba0de6c-d2f3-44e0-a337-f7d6424178b2','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',1,'solid'),(39177,162759,1,'2021-05-19 01:20:05','2021-05-19 01:20:05','8417385f-a892-4d75-8758-51f78ad0ee49','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39178,162771,1,'2021-05-19 01:20:05','2021-05-19 01:20:05','a01a123e-b9f4-41f4-8645-cfd42f26bc6b','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39179,162772,1,'2021-05-19 01:20:05','2021-05-19 01:20:05','5940dd47-4a43-449a-99f5-7c03ea6e45bf','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(39180,162777,1,'2021-05-19 01:20:05','2021-05-19 01:20:05','13496468-629f-410a-8213-c2710bc520d4','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',1,'solid'),(39181,162779,1,'2021-05-19 01:20:06','2021-05-19 01:20:06','04e2b926-2c45-4054-9ae5-031629e92ce2','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39182,162791,1,'2021-05-19 01:20:06','2021-05-19 01:20:06','6fbe45e2-bfa0-4492-81ef-d73ce0a01749','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39183,162792,1,'2021-05-19 01:20:06','2021-05-19 01:20:06','7dd202a3-8731-4219-a8ad-11d3374bd7fe','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(39184,162797,1,'2021-05-19 01:20:10','2021-05-19 01:20:10','9676f865-4b1c-4d2a-b1ef-113b3a77d21f','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',1,'solid'),(39185,162799,1,'2021-05-19 01:20:10','2021-05-19 01:20:10','dffdf6b6-2b92-489d-9faa-6ad0d97aab8a','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39186,162811,1,'2021-05-19 01:20:10','2021-05-19 01:20:10','7a6558c5-d9aa-4870-862c-d79f2cd81d64','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39187,162812,1,'2021-05-19 01:20:10','2021-05-19 01:20:10','4f1a4e6f-276c-416a-a884-1fe7934d57dd','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(39188,162817,1,'2021-05-19 01:20:41','2021-05-19 01:24:30','46ace80e-8767-473b-9ee4-63f44e5b9e66','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',1,'solid'),(39189,162819,1,'2021-05-19 01:20:41','2021-05-19 01:24:30','07ca9936-bc39-40ea-84bf-4f8f0cddb52a','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39190,162831,1,'2021-05-19 01:20:41','2021-05-19 01:24:30','60cd885e-2cf5-4884-bb55-c998f15c4f46','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39191,162832,1,'2021-05-19 01:20:41','2021-05-19 01:24:30','3503f6dc-0ce9-4971-a142-758365d3264e','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(39192,162835,1,'2021-05-19 01:25:13','2021-05-19 01:25:13','2a4e4120-9455-43b3-bd67-1321504fa796','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',1,'solid'),(39193,162837,1,'2021-05-19 01:25:13','2021-05-19 01:25:13','ef141025-d19a-4407-a3d9-0de7abdb1a25','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39194,162849,1,'2021-05-19 01:25:13','2021-05-19 01:25:13','2a7721ae-c3b5-40a4-a61e-2fc31aa0c7a2','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39195,162850,1,'2021-05-19 01:25:13','2021-05-19 01:25:13','ecddb323-d057-445b-870f-fb807cec0ade','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(39196,162854,1,'2021-05-19 01:25:14','2021-05-19 01:25:14','1c54d3e4-781c-42d9-bdae-5db5cad2828e','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',1,'solid'),(39197,162856,1,'2021-05-19 01:25:14','2021-05-19 01:25:14','58b0ca16-c326-4f89-bda9-e6c20cc34ab9','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39198,162868,1,'2021-05-19 01:25:14','2021-05-19 01:25:14','ea730e21-44f1-4aa9-877d-1c49fe1e8091','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39199,162869,1,'2021-05-19 01:25:14','2021-05-19 01:25:14','ea491b61-e283-4abe-a9e6-aefe8b7d4d7a','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(39200,162873,1,'2021-05-19 01:25:20','2021-05-19 01:25:20','f7d117a7-4da9-48fd-81d3-4e0a6c309745','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',1,'solid'),(39201,162875,1,'2021-05-19 01:25:20','2021-05-19 01:25:20','d9dfbcd1-d6de-40dc-bb90-67f7942a31bd','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39202,162887,1,'2021-05-19 01:25:20','2021-05-19 01:25:20','490f13cd-1698-490d-88dd-36955cfad71b','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39203,162888,1,'2021-05-19 01:25:20','2021-05-19 01:25:20','3d8c0570-07f3-4e20-92da-839b87ce965d','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(39204,162892,1,'2021-05-19 01:26:11','2021-05-19 01:29:31','6f010b35-75c0-48ac-8fba-ad8d266da4f4','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',1,'solid'),(39205,162894,1,'2021-05-19 01:26:11','2021-05-19 01:29:31','16d41943-6efd-4e9b-8dd4-d51ac4458d39','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39206,162906,1,'2021-05-19 01:26:11','2021-05-19 01:29:31','f7fc3087-4de9-486f-90e5-cb2f25876ff5','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39207,162907,1,'2021-05-19 01:26:11','2021-05-19 01:29:31','fabfc883-7ed5-41a9-bd28-21a2347e1b02','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(39208,162916,1,'2021-05-19 01:30:30','2021-05-19 01:30:30','bd7aab7c-b132-4251-8699-14da47779f64','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',1,'solid'),(39209,162918,1,'2021-05-19 01:30:30','2021-05-19 01:30:30','88c61800-a5e2-4bdf-9220-ae64e804d352','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39210,162930,1,'2021-05-19 01:30:30','2021-05-19 01:30:30','ff944eca-e362-48b6-a344-978d09904c04','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39211,162931,1,'2021-05-19 01:30:30','2021-05-19 01:30:30','b1fba96d-e4d0-4691-8a0c-4195bd4adae1','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(39212,162936,1,'2021-05-19 01:30:31','2021-05-19 01:30:31','9cd42fea-012e-4095-8b94-e2dc129f14e5','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',1,'solid'),(39213,162938,1,'2021-05-19 01:30:31','2021-05-19 01:30:31','20dbb9db-6c91-45c0-ad2c-85c0ce0194eb','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39214,162950,1,'2021-05-19 01:30:32','2021-05-19 01:30:32','d4fde284-cddc-4210-8ded-ceb9ac2c125e','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39215,162951,1,'2021-05-19 01:30:32','2021-05-19 01:30:32','e41a9d65-326e-435e-9546-efadccfa1087','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(39216,162956,1,'2021-05-19 01:31:34','2021-05-19 01:31:34','9d9814b7-50f9-4168-8ce2-e58a66d7eca4','Metro North HHS specialist advice for GPs','https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice',1,'solid'),(39217,162958,1,'2021-05-19 01:31:34','2021-05-19 01:31:34','291a582d-f4e0-48b6-9911-523054542273','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39218,162970,1,'2021-05-19 01:31:35','2021-05-19 01:31:35','87ac15a6-38a6-4c6a-a8e4-2877144417af','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39219,162971,1,'2021-05-19 01:31:35','2021-05-19 01:31:35','99f7dd6e-cf5c-4326-b567-80c020a82e8b','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(39220,162976,1,'2021-05-19 01:33:57','2021-05-19 01:34:27','3b7854ae-0d6d-4031-b590-5c7060bb5e1f','Metro North HHS specialist advice for GPs',NULL,1,'solid'),(39221,162978,1,'2021-05-19 01:33:57','2021-05-19 01:36:28','324e2ef5-611b-479b-8def-56a64f5530d0','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39222,162990,1,'2021-05-19 01:33:57','2021-05-19 01:36:28','36921913-7f75-4d5e-aed3-b3df77bf479d','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39223,162991,1,'2021-05-19 01:33:57','2021-05-19 01:36:28','16eb415c-d11e-4ab6-b592-170418b9aa01','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(39224,162995,1,'2021-05-19 01:36:50','2021-05-19 01:36:50','c7bb8d19-d039-41a5-92f4-fcf67b54f133','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39225,163007,1,'2021-05-19 01:36:51','2021-05-19 01:39:35','1a659d42-82c8-46f9-aea5-fb87242bd252','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39226,163008,1,'2021-05-19 01:36:51','2021-05-19 01:39:35','be0dcd5f-9557-4404-bef7-eafbc5d6e4ed','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(39227,163013,1,'2021-05-19 01:36:51','2021-05-19 01:36:51','20125671-6b53-4d8d-b0f2-e305aea2e557','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39228,163025,1,'2021-05-19 01:36:51','2021-05-19 01:36:51','57fd0240-12e1-43e1-8c23-3dd4fde2d925','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39229,163026,1,'2021-05-19 01:36:51','2021-05-19 01:36:51','799c5d2b-b2c0-450f-906d-f8c369d1d083','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(39230,163031,1,'2021-05-19 01:36:58','2021-05-19 01:36:58','c058df9f-bd1d-4c33-b17d-19d80e45c019','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39231,163043,1,'2021-05-19 01:36:58','2021-05-19 01:36:58','359fa984-3180-4477-b352-cd679750fda9','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39232,163044,1,'2021-05-19 01:36:58','2021-05-19 01:36:58','e3517275-3ba4-444c-b09c-87a9f77e390f','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(39233,163047,1,'2021-05-19 01:39:35','2021-05-19 01:39:35','141acaa2-d947-4f3c-96e4-9897f430f901','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39234,163061,1,'2021-05-19 01:39:36','2021-05-19 01:39:36','37db04e4-b12b-4076-b769-400051614ee6','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39235,163064,1,'2021-05-19 01:39:36','2021-05-19 01:39:36','f9db4ed9-d935-4da2-8cd5-436d40daaa51','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39236,163065,1,'2021-05-19 01:39:36','2021-05-19 01:39:36','39989391-23f7-4a5e-9595-5f59dd02f1c7','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(39237,163079,1,'2021-05-19 01:40:11','2021-05-19 01:40:35','35d9a5bd-bfc6-4d66-b3e0-206097d03610','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39238,163082,1,'2021-05-19 01:40:11','2021-05-19 01:40:35','43372517-d0f3-45ce-a94b-3e53f0c27153','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39239,163083,1,'2021-05-19 01:40:11','2021-05-19 01:40:35','82799ac9-6fd0-40d5-890c-edcaa412826d','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(39240,163096,1,'2021-05-19 01:40:44','2021-05-19 01:40:44','eeef8b28-e5ce-4324-82df-8b566da26346','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39241,163099,1,'2021-05-19 01:40:44','2021-05-19 01:40:44','ffa5575a-4231-4d72-8dc0-084f3bd188b4','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39242,163100,1,'2021-05-19 01:40:44','2021-05-19 01:40:44','c1d41ba3-328a-43f7-948e-1746941c8e8e','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(39243,163114,1,'2021-05-19 01:40:45','2021-05-19 01:40:45','f3233386-3fe5-47c5-b388-68464f4886ff','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39244,163117,1,'2021-05-19 01:40:45','2021-05-19 01:40:45','4609ea00-ada3-49aa-a4c6-901f07c41a0f','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39245,163118,1,'2021-05-19 01:40:45','2021-05-19 01:40:45','321c7cf8-5fd4-4d6f-bf61-8a722d22b3cf','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid'),(39246,163132,1,'2021-05-19 01:40:52','2021-05-19 01:40:52','162adcef-6c13-4044-8c27-301580bd8806','Visit HealthPathways','https://brisbanenorth.communityhealthpathways.org',1,'solid'),(39247,163135,1,'2021-05-19 01:40:52','2021-05-19 01:40:52','c07f80f6-ab02-41d1-87cc-fcab89deb756','Caboolture Hospital website','https://metronorth.health.qld.gov.au/caboolture/',1,'solid'),(39248,163136,1,'2021-05-19 01:40:52','2021-05-19 01:40:52','ef3f226c-4367-4438-b09e-76010247fcfc','Caboolture Hospital redevelopment','https://metronorth.health.qld.gov.au/caboolture/caboolture-hospital-redevelopment',1,'solid');
/*!40000 ALTER TABLE `matrixcontent_buttons` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `matrixcontent_buttons_1`
--

LOCK TABLES `matrixcontent_buttons_1` WRITE;
/*!40000 ALTER TABLE `matrixcontent_buttons_1` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `matrixcontent_buttons_1` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `matrixcontent_column`
--

LOCK TABLES `matrixcontent_column` WRITE;
/*!40000 ALTER TABLE `matrixcontent_column` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `matrixcontent_column` VALUES (1265,18039,1,'2020-03-03 04:28:43','2020-03-03 04:28:43','d99cee11-9869-42e2-a5d9-5ffb5f34779c','<h4><strong>The Australian Immunisation Handbook </strong></h4><p>Clinical advice for health professionals on the safest and most effective use of vaccines.</p>','Visit the website',1,'solid','https://immunisationhandbook.health.gov.au/'),(1266,18040,1,'2020-03-03 04:28:43','2020-03-03 04:28:43','a7603b5b-b0d3-4e06-907c-46abc8e571b5','<h4><strong>Australian Immunisation Register</strong></h4><p>Information for vaccination providers about the Australian Immunisation Register.</p>','Visit the website',1,'solid','https://www.humanservices.gov.au/organisations/health-professionals/services/medicare/australian-immunisation-register-health-professionals'),(1267,18041,1,'2020-03-03 04:28:43','2020-03-03 04:28:43','5fb9a045-fe9f-4f87-8c9b-9c2c07c548bc','<h4><strong>Immunisation Coalition</strong> </h4><p>Championing immunisation education.<strong><br /></strong></p>','Visit the website',1,'solid','https://www.immunisationcoalition.org.au/'),(1268,18042,1,'2020-03-03 04:28:43','2020-03-03 04:28:43','edac82a9-1630-45f0-aad2-0809678040b6','<h4><strong>Communicable disease control guidance</strong></h4><p>A complete list of notifiable conditions.</p>','Visit the website',1,'solid','http://disease-control.health.qld.gov.au/'),(1269,18043,1,'2020-03-03 04:28:43','2020-03-03 04:28:43','2bde6c7b-b41f-45fb-b189-91915ae73e02','<h4><strong>National Immunisation Program Schedule </strong></h4><p>The vaccines you should get and when.</p>','Visit the website',1,'solid','https://www.health.gov.au/health-topics/immunisation/immunisation-throughout-life/national-immunisation-program-schedule'),(1563,20379,1,'2020-03-12 23:57:52','2020-03-12 23:57:52','e28f4ccf-0f0c-4934-b61a-6193d81454af','<h4><strong>Chermside</strong></h4>\n<p>Joanne Dieudonne</p>\n<p>Call <a href=\"tel:0736307325\">07 3630 7325</a> or <a href=\"tel:0402159530\">0402 159 530</a></p>\n<p><strong><a href=\"mailto:joanne.dieudonne@brisbanenorthphn.org.au\">Email</a><br /></strong></p>',NULL,0,'solid',NULL),(1664,22524,1,'2020-04-28 02:53:03','2020-04-28 02:53:03','244f5321-cc12-4880-bd03-677cbc20f528','<h4><strong>Australian Immunisation Register</strong></h4>\n<p>Information for vaccination providers about the Australian Immunisation Register.</p>','Visit the website',1,'solid','https://www.humanservices.gov.au/organisations/health-professionals/services/medicare/australian-immunisation-register-health-professionals'),(1666,22526,1,'2020-04-28 02:53:03','2020-04-28 02:53:03','3e4f5de9-2a09-4211-a486-65b5dccfe20f','<h4><strong>Communicable disease control guidance</strong></h4>\n<p>A complete list of notifiable conditions.</p>','Visit the website',1,'solid','http://disease-control.health.qld.gov.au/'),(4072,45020,1,'2020-05-22 05:25:50','2020-05-22 05:25:50','29f903ad-cbcb-4dc3-aaed-046de8e05aec','<h4><strong>Wesley Breast Clinic </strong></h4><p>The Wesley Breast Clinic has a large team of highly experienced professionals specialising in breast imaging.</p>','Visit the website',1,'solid','http://wesley.com.au/services/clinical-services/breast-clinic/gp-referral'),(4074,45140,1,'2020-05-22 05:51:42','2020-05-22 05:51:42','13ee1eff-e4ea-462f-a22e-63c0e583bca2','<h4><strong>Asthma Australia</strong> </h4>\n<p>Connecting health professionals with the most current asthma management services, resources and opportunities.</p>','Visit the website',0,'solid','https://asthma.org.au/health-professionals/refer/'),(4075,45141,1,'2020-05-22 05:51:42','2020-05-22 05:51:42','e197d2ad-cd85-4205-bcda-c2cabaaa4d7c','<h4><strong>BreastScreen Queensland</strong></h4>\n<p>Information for health professionals and access to GP electronic recommendation forms.</p>','Visit the website',1,'solid','https://www.breastscreen.qld.gov.au/health-professionals.asp'),(4076,45142,1,'2020-05-22 05:51:42','2020-05-22 05:51:42','4194df62-039e-4bc1-ad60-35e632abd9ed','<h4><strong>Child and Youth Community Health Service</strong> </h4>\n<p>Uniting a variety of specialist community-based healthcare services and health promotion programs to help young people.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/our-services/community-health-services/'),(4077,45143,1,'2020-05-22 05:51:42','2020-05-22 05:51:42','3e64d816-2f08-46b0-b718-ddd32d900342','<h4><strong>Hear and Say</strong></h4>\n<p>Experts with over 25 years’ experience in supporting children and young adults with their hearing, speaking and developmental needs.</p>','Visit the website',1,'solid','https://www.hearandsay.com.au/for-adults/health-professionals/'),(4078,45144,1,'2020-05-22 05:51:42','2020-05-22 05:51:42','1c67bb50-0ac2-4042-9bc1-070630207624','<h4><strong>Wesley Breast Clinic </strong></h4>\n<p>The Wesley Breast Clinic has a large team of highly experienced professionals specialising in breast imaging.</p>','Visit the website',1,'solid','http://wesley.com.au/services/clinical-services/breast-clinic/gp-referral'),(4079,45209,1,'2020-05-22 05:53:39','2020-05-22 05:53:39','71a6f4e6-dc1f-42f9-afea-c4579a35f3dc','<h4><strong>Children\'s Health Queensland Hospital and Health Service</strong></h4>\n<p>More information about referral templates and guidelines for CHQ.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/health-professionals/'),(4080,45210,1,'2020-05-22 05:53:39','2020-05-22 05:53:39','d18c29a9-c66b-4826-a893-581883e25586','<h4><strong>Asthma Australia</strong> </h4>\n<p>Connecting health professionals with the most current asthma management services, resources and opportunities.</p>','Visit the website',0,'solid','https://asthma.org.au/health-professionals/refer/'),(4081,45211,1,'2020-05-22 05:53:39','2020-05-22 05:53:39','262784f5-05e9-4adb-ab36-bc23e417227b','<h4><strong>BreastScreen Queensland</strong></h4>\n<p>Information for health professionals and access to GP electronic recommendation forms.</p>','Visit the website',1,'solid','https://www.breastscreen.qld.gov.au/health-professionals.asp'),(4082,45212,1,'2020-05-22 05:53:39','2020-05-22 05:53:39','309cfdde-46a7-4197-a959-b6bc53c42b58','<h4><strong>Child and Youth Community Health Service</strong> </h4>\n<p>Uniting a variety of specialist community-based healthcare services and health promotion programs to help young people.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/our-services/community-health-services/'),(4083,45213,1,'2020-05-22 05:53:39','2020-05-22 05:53:39','d4a0c0fa-04d6-40e5-9fb9-af62f73c64bf','<h4><strong>Hear and Say</strong></h4>\n<p>Experts with over 25 years’ experience in supporting children and young adults with their hearing, speaking and developmental needs.</p>','Visit the website',1,'solid','https://www.hearandsay.com.au/for-adults/health-professionals/'),(4084,45214,1,'2020-05-22 05:53:39','2020-05-22 05:53:39','16a34f8b-a11d-4371-bae3-7de01eb9f905','<h4><strong>Wesley Breast Clinic </strong></h4>\n<p>The Wesley Breast Clinic has a large team of highly experienced professionals specialising in breast imaging.</p>','Visit the website',1,'solid','http://wesley.com.au/services/clinical-services/breast-clinic/gp-referral'),(4091,45255,1,'2020-05-22 06:02:42','2020-05-22 06:02:42','9cc58736-e8a5-40ef-9c60-d712132bc092','<h4><strong>Integrated team care</strong></h4><p>Find out more about the program.</p>','Read more',1,'solid','https://www.iuih.org.au/Services/Clinical-Service-Delivery#carecoordination'),(4172,48186,1,'2020-05-26 04:04:00','2020-05-26 04:04:00','1919fd84-38f3-4470-bc5a-b078c2c3edbe','<h4><strong>Neami’s Living and Learning Centre</strong></h4>\n<p>TPCH catchment, Strathpine</p>\n<p>Phone 07 3493 6780 </p>','Visit the website',1,'solid','https://www.neaminational.org.au/find-services/living-and-learning-centre/'),(5111,58762,1,'2020-06-05 00:52:13','2020-06-05 00:52:13','632a23d0-4f01-49c1-b145-483a3b2e1a68','<h6><strong>Brisbane City</strong></h6>\n<figure><img src=\"{asset:31437:url}\" alt=\"\" /></figure><h4>Maree Lyons-Micic<br /></h4>\n<p>Call <a href=\"tel:0736307347\">07 3630 7347</a> or <a href=\"tel:0481010076\">0481 010 076</a><br /></p>','Email',0,'link','mailto:maree.lyons-micic@brisbanenorthphn.org.au'),(5112,58763,1,'2020-06-05 00:52:13','2020-06-05 00:52:13','48ae5eb3-f904-4ec9-aee5-3635feca29ae','<h6><strong>Caboolture</strong></h6>\n<figure><img src=\"{asset:31438:url}\" alt=\"\" /></figure><h4>Emylee Tickner<br /></h4>\n<p>Call <a href=\"tel:0734903410\">07 3490 3410</a> or <a href=\"tel:0402159523\">0402 159 523</a><br /></p>','Email',0,'link','mailto:emylee.tickner@brisbanenorthphn.org.au'),(5113,58764,1,'2020-06-05 00:52:13','2020-06-05 00:52:13','488a9fe7-f3f3-4635-b86e-664466eb39b3','<h6><strong>Nundah</strong></h6>\n<figure><img src=\"{asset:31439:url}\" alt=\"\" /></figure><h4>Marisol Hernandez<br /></h4>\n<p>Call <a href=\"tel:0736307301\">07 3630 7301</a> or <a href=\"tel:0433641310\">0433 641 310</a><br /></p>','Email',0,'link','mailto:leanne.giret@brisbanenorthphn.org.au'),(7498,74282,1,'2020-06-12 04:21:01','2020-06-12 04:21:01','421470e2-61da-47b0-9024-3f1bbdac4109','<h3><strong>Lutwyche</strong></h3>\n<p>Level 1, 120 Chalk Street, Lutwyche</p>\n<p>PO Box 845, Lutwyche Qld 4030</p>\n<p>Phone: 07 3630 7300</p>\n<p><strong>Email: <a href=\"mailto:info@brisbanenorthphn.org.au\" target=\"_blank\" rel=\"noreferrer noopener\">info@brisbanenorthphn.org.au</a></strong></p>',NULL,0,'solid',NULL),(8494,94206,1,'2020-06-26 04:48:39','2020-06-26 04:48:39','95036714-c4f6-4167-bcdd-7810a87d4d26','<h4><strong>Integrated team care</strong></h4>\n<p>Improving the health outcomes for Aboriginal and Torres Strait Islander people with chronic health conditions.</p>','Read more',1,'solid','https://www.iuih.org.au/Services/Clinical-Service-Delivery#carecoordination'),(8495,94207,1,'2020-06-26 04:48:39','2020-06-26 04:48:39','75d6a0a4-3a25-461a-810d-f0d8d0c53d48','<h4><strong>Community aged care</strong></h4>\n<p>Access community-based care services through our healthy@home consortium.</p>\n<p>Contact My Aged Care on 1800 200 422 or visit the website. </p>','Visit website',1,'solid','https://www.myagedcare.gov.au/'),(8497,94209,1,'2020-06-26 04:48:39','2020-06-26 04:48:39','f56c8413-ea1e-4dbb-be62-3fe66437fb74','<h4><strong>Alcohol and other drug treatment services</strong></h4>\n<p>IUIH and QAIAS offer alcohol and other drug support and treatment services for Aboriginal and Torres Strait Islander people. </p>','Read more',0,'solid',NULL),(8498,94210,1,'2020-06-26 04:48:39','2020-06-26 04:48:39','5d6e8f28-83ea-4bab-ac20-933827d8a4aa','<h4><strong>Suicide prevention services</strong></h4>\n<p>Find out about the Yarns Heal and Talking Heals campaigns and view the suicide prevention services guide. </p>','Read more',0,'solid',NULL),(8499,94211,1,'2020-06-26 04:48:39','2020-06-26 04:48:39','c61aab05-676d-4717-88ae-1c6b77142fcd','<h4><strong>The Institute of Urban Indigenous Health</strong></h4>\n<p>PHN-commissioned social health services through the Institute of Urban Indigenous Health include community-based mental health, alcohol and other drug services.</p>','Read more',1,'solid','https://www.iuih.org.au/Services/Clinical-Service-Delivery#socialhealth'),(8500,94223,1,'2020-06-26 04:48:39','2020-06-26 04:48:39','d31531ff-eb6c-4a93-a960-e50afd8898ee','<h4><strong>Integrated team care</strong></h4>\n<p>Improving the health outcomes for Aboriginal and Torres Strait Islander people with chronic health conditions.</p>','Read more',1,'solid','https://www.iuih.org.au/Services/Clinical-Service-Delivery#carecoordination'),(11423,140029,1,'2021-03-12 06:35:56','2021-03-12 06:35:56','f71eb54b-5bec-4ae5-b3cd-853fc20a60a4','<h5><strong>Queensland Health</strong></h5>\n<p>The latest vaccine service provider information and immunisation program updates from the Queensland Government. </p>','Visit the website',1,'solid','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/diseases-infection/immunisation/service-providers'),(11425,140031,1,'2021-03-12 06:35:56','2021-03-12 06:35:56','c98bd3f0-df98-4ac5-abe0-07aace0802ad','<h5><strong>Immunisation Coalition</strong> </h5>\n<p>Championing immunisation education.<strong><br /></strong></p>','Visit the website',1,'solid','https://www.immunisationcoalition.org.au/'),(11426,140032,1,'2021-03-12 06:35:57','2021-03-12 06:35:57','ce39f621-59e8-48d7-b9c2-ff7f9d6d06b9','<h5><strong>Department of Health</strong></h5>\n<p>Immunisation information from the Department of Health. </p>','Visit the website',1,'solid','https://www.health.gov.au/health-topics/immunisation'),(11428,140034,1,'2021-03-12 06:35:57','2021-03-12 06:35:57','182a9488-13de-4cb3-984c-839e4ca77708','<h5><strong>The Australian Academy of Science</strong></h5><p>The science of immunisation: everything you need to know. </p>','Visit website',0,'solid','https://www.science.org.au/education/immunisation-climate-change-genetic-modification/science-immunisation'),(11430,140069,1,'2021-03-12 06:35:58','2021-03-12 06:35:58','f7d28308-8687-47a5-b2cf-a3e4e976319c','<h5><strong>Australian Immunisation Register</strong></h5>\n<p>Information for vaccination providers about the Australian Immunisation Register.</p>','Visit the website',1,'solid','https://www.humanservices.gov.au/organisations/health-professionals/services/medicare/australian-immunisation-register-health-professionals'),(11431,140070,1,'2021-03-12 06:35:58','2021-03-12 06:35:58','eeeee9e6-b2f4-4ad8-907b-79b699feaa09','<h5><strong>Immunisation Coalition</strong> </h5>\n<p>Championing immunisation education.<strong><br /></strong></p>','Visit the website',1,'solid','https://www.immunisationcoalition.org.au/'),(11432,140071,1,'2021-03-12 06:35:58','2021-03-12 06:35:58','a419c411-ff18-4536-806c-55a2e346e20f','<h5><strong>Department of Health</strong></h5>\n<p>Immunisation information from the Department of Health. </p>','Visit the website',1,'solid','https://www.health.gov.au/health-topics/immunisation'),(11434,140073,1,'2021-03-12 06:35:58','2021-03-12 06:35:58','e24c4282-ffe9-4981-a3b8-a247ec09c096','<h5><strong>The Australian Academy of Science</strong></h5><p>The science of immunisation: everything you need to know. </p>','Visit website',0,'solid','https://www.science.org.au/education/immunisation-climate-change-genetic-modification/science-immunisation'),(11435,140107,1,'2021-03-12 06:36:05','2021-03-12 06:36:05','21d9f821-d835-452e-92b5-113808b04bbd','<h5><strong>Queensland Health</strong></h5>\n<p>The latest vaccine service provider information and immunisation program updates from the Queensland Government. </p>','Visit the website',1,'solid','https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/diseases-infection/immunisation/service-providers'),(11437,140109,1,'2021-03-12 06:36:05','2021-03-12 06:36:05','7e283c70-65cd-4566-ada1-7accd31778e9','<h5><strong>Immunisation Coalition</strong> </h5>\n<p>Championing immunisation education.<strong><br /></strong></p>','Visit the website',1,'solid','https://www.immunisationcoalition.org.au/'),(11439,140111,1,'2021-03-12 06:36:05','2021-03-12 06:36:05','c327f4dd-68e1-4284-b20c-4dda1c5fea62','<h5><strong>National Centre for Immunisation Research and Surveillance </strong></h5>\n<p>Advice on all aspects of vaccine preventable diseases.</p>','Visit the website',1,'solid','http://www.ncirs.org.au/'),(11463,143553,1,'2021-03-18 00:34:22','2021-03-18 00:34:22','c83a6b6a-401c-4384-8063-b7078594990d','<h4>Subscribe to our publications</h4>','Subscribe',1,'solid',NULL),(11464,143554,1,'2021-03-18 00:34:22','2021-03-18 00:34:22','dcc1abd3-0243-44d5-941e-c1ae02f89812','<h4>Add your event to the calendar</h4>','Contribute',1,'solid',NULL),(11465,143555,1,'2021-03-18 00:34:22','2021-03-18 00:34:22','34269859-d7b3-482f-b35a-c5d6ebf511a4','<h4>Advertise a job vacancy </h4>','List a job',0,'solid',NULL),(11466,143573,1,'2021-03-18 00:34:35','2021-03-18 00:34:35','5a774485-c2c6-4903-9835-b5bc0c189468','<h4>Subscribe to our publications</h4>','Subscribe',1,'solid',NULL),(11467,143574,1,'2021-03-18 00:34:35','2021-03-18 00:34:35','064a0949-fe2b-4a91-a4a8-8b85ab4d77fc','<h4>Add your event to the calendar</h4>','Contribute',1,'solid',NULL),(11468,143575,1,'2021-03-18 00:34:35','2021-03-18 00:34:35','e70cb935-5ac6-4aba-8b88-a99cb6bf4a50','<h4>Advertise a job vacancy </h4>','List a job',0,'solid',NULL),(11475,146439,1,'2021-03-26 06:16:44','2021-03-26 06:16:44','59d29209-9604-4152-b140-3102fc9efa2d','<h4>Subscribe to our publications</h4>','Subscribe',1,'solid',NULL),(11476,146440,1,'2021-03-26 06:16:44','2021-03-26 06:16:44','0bfc3f08-e025-4eca-82ae-a92c59b9a2e4','<h4>Add your event to the calendar</h4>','Contribute',1,'solid',NULL),(11477,146441,1,'2021-03-26 06:16:44','2021-03-26 06:16:44','42623205-6247-4120-949e-5c225dd685a8','<h4>Advertise a job vacancy </h4>','List a job',0,'solid',NULL),(11478,146459,1,'2021-03-26 06:16:48','2021-03-26 06:16:48','435d178a-db09-4b7d-aa46-99f014456aac','<h4>Subscribe to our publications</h4>','Subscribe',1,'solid',NULL),(11479,146460,1,'2021-03-26 06:16:48','2021-03-26 06:16:48','a9986695-9f90-4b10-bbd4-9463fb9db1dd','<h4>Add your event to the calendar</h4>','Contribute',1,'solid',NULL),(11480,146461,1,'2021-03-26 06:16:48','2021-03-26 06:16:48','991b48b0-1151-4908-9e60-6f95d7e226fd','<h4>Advertise a job vacancy </h4>','List a job',0,'solid',NULL),(11481,146479,1,'2021-03-26 06:19:30','2021-03-26 06:19:30','956531b2-6149-493d-adb4-f7b709299bbc','<h4>Subscribe to our publications</h4>','Subscribe',1,'solid',NULL),(11482,146480,1,'2021-03-26 06:19:30','2021-03-26 06:19:30','07e0c313-a227-4d28-b727-f8ae038d995e','<h4>Add your event to the calendar</h4>','Contribute',1,'solid',NULL),(11483,146481,1,'2021-03-26 06:19:30','2021-03-26 06:19:30','b9351340-cf58-40de-9984-9f7f4eef3ded','<h4>Advertise a job vacancy </h4>','List a job',0,'solid',NULL),(11490,146538,1,'2021-03-26 06:20:27','2021-03-26 06:20:27','b09615eb-ffba-4ab2-a333-82e494a9e46f','<h4>Subscribe to our publications</h4>','Subscribe',1,'solid',NULL),(11491,146539,1,'2021-03-26 06:20:27','2021-03-26 06:20:27','fb461778-1f96-4390-b786-982a101bcbbb','<h4>Add your event to the calendar</h4>','Contribute',1,'solid',NULL),(11492,146540,1,'2021-03-26 06:20:27','2021-03-26 06:20:27','41443e81-73f0-465e-87c1-dd59caaa01a7','<h4>Advertise a job vacancy </h4>','List a job',0,'solid',NULL),(11497,146574,1,'2021-03-26 06:30:49','2021-03-26 06:30:49','6fe2e3bf-4729-4760-a9ae-480b2757529f','<p>Providing the latest information on COVID-19 for GPs, service providers and our community.</p>','Visit our COVID-19 web pages',1,'solid',NULL),(11498,146575,1,'2021-03-26 06:30:49','2021-03-26 06:30:49','5645f690-8199-4bb4-93d3-4a30d99f4fa0','<p>Report notifiable conditions, access up-to-date COVID-19 information or read more about the Public Health Unit\'s work. </p>','Contact the Metro North Public Health Unit',1,'solid','https://metronorth.health.qld.gov.au/hospitals-services/public-health-unit'),(11499,146586,1,'2021-03-26 06:31:16','2021-03-26 06:31:16','ca70c84a-b1ff-443b-b024-7221ad13f695','<p>Providing the latest information on COVID-19 for GPs, service providers and our community.</p>','Visit our COVID-19 web pages',1,'solid',NULL),(11500,146587,1,'2021-03-26 06:31:16','2021-03-26 06:31:16','0dea448b-0de7-4ada-801e-c1b2999e3551','<p>Report notifiable conditions, access up-to-date COVID-19 information or read more about the Public Health Unit\'s work. </p>','Contact the Metro North Public Health Unit',1,'solid','https://metronorth.health.qld.gov.au/hospitals-services/public-health-unit'),(11501,146600,1,'2021-03-29 00:32:24','2021-03-29 00:32:24','527d2d51-8904-4edc-b0bf-5ff1a41d6f43','<p>Providing the latest information on COVID-19 for GPs, service providers and our community.</p>','Visit our COVID-19 web pages',1,'solid',NULL),(11502,146601,1,'2021-03-29 00:32:24','2021-03-29 00:32:24','7ea1a478-2775-4223-b262-b5e4bbb2be56','<p>Report notifiable conditions, access up-to-date COVID-19 information or read more about the Public Health Unit\'s work. </p>','Contact the Metro North Public Health Unit',1,'solid','https://metronorth.health.qld.gov.au/hospitals-services/public-health-unit'),(11506,146646,1,'2021-03-29 00:47:47','2021-03-29 00:47:47','c3ca7bcf-5e6c-4abb-ab21-87966c4502f2','<h4>Subscribe to our publications</h4>','Subscribe',1,'solid',NULL),(11507,146647,1,'2021-03-29 00:47:47','2021-03-29 00:47:47','49865754-4e47-46d3-82d1-a2ca26725a64','<h4>Add your event to the calendar</h4>','Contribute',1,'solid',NULL),(11508,146648,1,'2021-03-29 00:47:47','2021-03-29 00:47:47','5f0ff60c-b300-4ad5-ab6f-d3dfc1e4aa5e','<h4>Advertise a job vacancy </h4>','List a job',0,'solid',NULL),(11509,146666,1,'2021-03-29 00:47:48','2021-03-29 00:47:48','b785fea2-a617-46f4-b0a7-7c12fa29b5c1','<h4>Subscribe to our publications</h4>','Subscribe',1,'solid',NULL),(11510,146667,1,'2021-03-29 00:47:48','2021-03-29 00:47:48','9956bb53-9207-4e87-b38d-9e404d7933cb','<h4>Add your event to the calendar</h4>','Contribute',1,'solid',NULL),(11511,146668,1,'2021-03-29 00:47:48','2021-03-29 00:47:48','4c2d5e55-e535-46db-987c-d2151e98e5d7','<h4>Advertise a job vacancy </h4>','List a job',0,'solid',NULL),(11512,146790,1,'2021-03-29 01:18:17','2021-03-29 01:18:17','4cd9fbb1-2f17-4073-9db9-984d107cbd7c','<h4>Subscribe to our publications</h4>','Subscribe',1,'solid',NULL),(11513,146791,1,'2021-03-29 01:18:17','2021-03-29 01:18:17','7dde60e8-a3f7-4707-adec-f57e67fcd512','<h4>Add your event to the calendar</h4>','Contribute',1,'solid',NULL),(11514,146792,1,'2021-03-29 01:18:17','2021-03-29 01:18:17','3c4ca76c-590f-4885-b53b-ff82516b5217','<h4>Advertise a job vacancy </h4>','List a job',0,'solid',NULL),(11515,146857,1,'2021-03-29 02:50:37','2021-03-29 02:50:37','cea971fe-25e2-40d1-b259-dea43b6111b0','<h4>Subscribe to our publications</h4>','Subscribe',1,'solid',NULL),(11516,146858,1,'2021-03-29 02:50:37','2021-03-29 02:50:37','702e9b5c-4b47-48a5-ba78-9d7ff8d3abda','<h4>Add your event to the calendar</h4>','Contribute',1,'solid',NULL),(11517,146859,1,'2021-03-29 02:50:37','2021-03-29 02:50:37','3b1a354a-b818-4ccb-89d8-3524a0622f2c','<h4>Advertise a job vacancy </h4>','List a job',0,'solid',NULL),(11518,147014,1,'2021-03-29 06:42:46','2021-03-29 06:42:46','4d13d960-1a1c-498b-bff8-f0a4a1a47187','<p>Providing the latest information on COVID-19 for GPs, service providers and our community.</p>','Visit our COVID-19 web pages',1,'solid',NULL),(11519,147015,1,'2021-03-29 06:42:46','2021-03-29 06:42:46','ee20d5fa-3f00-470a-bf96-56e872d72b36','<p>Report notifiable conditions, access up-to-date COVID-19 information or read more about the Public Health Unit\'s work. </p>','Contact the Metro North Public Health Unit',1,'solid','https://metronorth.health.qld.gov.au/hospitals-services/public-health-unit'),(11520,147044,1,'2021-03-29 22:43:23','2021-03-29 22:43:23','a04a76cd-1bd1-4a1f-85a5-19314e7dc152','<p>Providing the latest information on COVID-19 for GPs, service providers and our community.</p>','Visit our COVID-19 web pages',1,'solid',NULL),(11521,147045,1,'2021-03-29 22:43:23','2021-03-29 22:43:23','1d9525fe-29e6-4a26-9bc7-4e6cabca9f68','<p>Report notifiable conditions, access up-to-date COVID-19 information or read more about the Public Health Unit\'s work. </p>','Contact the Metro North Public Health Unit',1,'solid','https://metronorth.health.qld.gov.au/hospitals-services/public-health-unit'),(11522,147098,1,'2021-03-30 22:50:31','2021-03-30 22:50:31','a05bf76d-2b78-4896-95db-972b9b18b63e','<p>Providing the latest information on COVID-19 for GPs, service providers and our community.</p>','Visit our COVID-19 web pages',1,'solid',NULL),(11523,147099,1,'2021-03-30 22:50:31','2021-03-30 22:50:31','b83b6c35-2839-4d3d-97fb-a83dbff4d11b','<p>Report notifiable conditions, access up-to-date COVID-19 information or read more about the Public Health Unit\'s work. </p>','Contact the Metro North Public Health Unit',1,'solid','https://metronorth.health.qld.gov.au/hospitals-services/public-health-unit'),(11546,148733,1,'2021-03-31 23:29:33','2021-03-31 23:29:33','50a5b62c-db9e-4b4f-915a-e81f8787723a','<p>Providing the latest information on COVID-19 for GPs, service providers and our community.</p>','Visit our COVID-19 web pages',1,'solid',NULL),(11547,148734,1,'2021-03-31 23:29:33','2021-03-31 23:29:33','f34c2829-7ce1-41e1-a709-58352bb76b87','<p>Report notifiable conditions, access up-to-date COVID-19 information or read more about the Public Health Unit\'s work. </p>','Contact the Metro North Public Health Unit',1,'solid','https://metronorth.health.qld.gov.au/hospitals-services/public-health-unit'),(11548,148745,1,'2021-03-31 23:29:33','2021-03-31 23:29:33','2fb66d3b-b6f5-4492-b1ed-6c2b06b2cc47','<p>Providing the latest information on COVID-19 for GPs, service providers and our community.</p>','Visit our COVID-19 web pages',1,'solid',NULL),(11549,148746,1,'2021-03-31 23:29:33','2021-03-31 23:29:33','f5c1a431-7ae4-44e0-b954-724417f6d005','<p>Report notifiable conditions, access up-to-date COVID-19 information or read more about the Public Health Unit\'s work. </p>','Contact the Metro North Public Health Unit',1,'solid','https://metronorth.health.qld.gov.au/hospitals-services/public-health-unit'),(11550,148757,1,'2021-03-31 23:29:38','2021-03-31 23:29:38','666d520d-57d1-4e6f-a708-5462ae16ed36','<p>Providing the latest information on COVID-19 for GPs, service providers and our community.</p>','Visit our COVID-19 web pages',1,'solid',NULL),(11551,148758,1,'2021-03-31 23:29:38','2021-03-31 23:29:38','2434eee9-739c-467a-a9f8-3397833feb92','<p>Report notifiable conditions, access up-to-date COVID-19 information or read more about the Public Health Unit\'s work. </p>','Contact the Metro North Public Health Unit',1,'solid','https://metronorth.health.qld.gov.au/hospitals-services/public-health-unit'),(11552,149334,1,'2021-04-06 07:05:22','2021-04-06 07:05:22','fe313aa3-91b0-45cc-9e84-594902032fd6','<p>Providing the latest information on COVID-19 for GPs, service providers and our community.</p>','Visit our COVID-19 web pages',1,'solid',NULL),(11553,149335,1,'2021-04-06 07:05:22','2021-04-06 07:05:22','69df5bf7-066f-4146-a208-863941f0cf52','<p>Report notifiable conditions, access up-to-date COVID-19 information or read more about the Public Health Unit\'s work. </p>','Contact the Metro North Public Health Unit',1,'solid','https://metronorth.health.qld.gov.au/hospitals-services/public-health-unit'),(11554,150203,1,'2021-04-08 05:53:19','2021-04-08 05:53:19','423cecd1-9920-4909-abef-1f5a9efa762e','<p>Mental health, alcohol and other drugs and suicide prevention services to support your patient.</p>','My Mental Health Service Navigation',0,'solid',NULL),(11555,150204,1,'2021-04-08 05:53:19','2021-04-08 05:53:19','9558199a-0d99-483f-b505-7931f588c3d8','<p>Up-to-date evidence-based patient assessment, referral and services information. </p>','HealthPathways',0,'solid',NULL),(11556,150205,1,'2021-04-08 05:53:19','2021-04-08 05:53:19','e5132e3f-b683-44e4-9bfd-4570f2b5f3ce','<p>Enabling faster and more streamlined referrals management to Queensland public hospitals. </p>','GP Smart Referrals',0,'solid',NULL),(11557,150206,1,'2021-04-08 05:53:19','2021-04-08 05:53:19','fee37e5d-ce9c-4bb7-9ba0-9b85b62bb867','<p>A free, six-month health program, delivered in partnership with the Queensland Government. </p>','My health for life',0,'solid',NULL),(11558,150256,1,'2021-04-08 05:53:20','2021-04-08 05:53:20','0526371b-4556-42aa-b1f6-52622ff0c4b8','<h4><strong>Children\'s Health Queensland Hospital and Health Service</strong></h4>\n<p>More information about referral templates and guidelines for CHQ.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/health-professionals/'),(11559,150257,1,'2021-04-08 05:53:20','2021-04-08 05:53:20','11626e36-1109-41e9-98b4-7f4904bdcf92','<h4><strong>Asthma Australia</strong> </h4>\n<p>Connecting health professionals with the most current asthma management services, resources and opportunities.</p>','Visit the website',0,'solid','https://asthma.org.au/health-professionals/refer/'),(11560,150258,1,'2021-04-08 05:53:20','2021-04-08 05:53:20','aad4d363-9d1d-4a4c-852f-aeeef8f53474','<h4><strong>BreastScreen Queensland</strong></h4>\n<p>Information for health professionals and access to GP electronic recommendation forms.</p>','Visit the website',1,'solid','https://www.breastscreen.qld.gov.au/health-professionals.asp'),(11561,150259,1,'2021-04-08 05:53:20','2021-04-08 05:53:20','c293fedc-bcb0-42a5-a9ad-de9b16ac8ae9','<h4><strong>Child and Youth Community Health Service</strong> </h4>\n<p>Uniting a variety of specialist community-based healthcare services and health promotion programs to help young people.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/our-services/community-health-services/'),(11562,150260,1,'2021-04-08 05:53:20','2021-04-08 05:53:20','87a912b4-521f-418a-a584-b274978a7938','<h4><strong>Hear and Say</strong></h4>\n<p>Experts with over 25 years’ experience in supporting children and young adults with their hearing, speaking and developmental needs.</p>','Visit the website',1,'solid','https://www.hearandsay.com.au/for-adults/health-professionals/'),(11563,150261,1,'2021-04-08 05:53:20','2021-04-08 05:53:20','79cded00-6e38-43c8-a6c6-68251f0cfbf3','<h4><strong>Wesley Breast Clinic </strong></h4>\n<p>The Wesley Breast Clinic has a large team of highly experienced professionals specialising in breast imaging.</p>','Visit the website',1,'solid','http://wesley.com.au/services/clinical-services/breast-clinic/gp-referral'),(11566,150450,1,'2021-04-12 00:41:29','2021-04-12 00:41:29','0b6a1df7-6dfb-4873-bc1e-fe5820f7d77a','<h3><strong>Lutwyche</strong></h3>\n<p>Level 1, 120 Chalk Street, Lutwyche</p>\n<p>PO Box 845, Lutwyche Qld 4030</p>\n<p>Phone: 07 3630 7300</p>\n<p><strong>Email: <a href=\"mailto:info@brisbanenorthphn.org.au\" target=\"_blank\" rel=\"noreferrer noopener\">info@brisbanenorthphn.org.au</a></strong></p>',NULL,0,'solid',NULL),(11567,150451,1,'2021-04-12 00:41:29','2021-04-12 00:41:29','111fd4b7-6b73-49b3-9f78-7e28bbb455c2','<h3><strong>North Lakes</strong></h3>\n<p>Level 2, 10 Endeavour Boulevard, North Lakes</p>\n<p>PO Box 929, North Lakes Qld 4509</p>\n<p>Phone: 07 3490 3490</p>\n<p><strong>Email: <a href=\"mailto:info@brisbanenorthphn.org.au\" target=\"_blank\" rel=\"noreferrer noopener\">info@brisbanenorthphn.org.au</a></strong></p>',NULL,0,'solid',NULL),(11568,150462,1,'2021-04-12 00:41:29','2021-04-12 00:41:29','fb15aabe-f3b9-4518-bee2-042cdf47dce9','<h3><strong>Lutwyche</strong></h3>\n<p>Level 1, 120 Chalk Street, Lutwyche</p>\n<p>PO Box 845, Lutwyche Qld 4030</p>\n<p>Phone: 07 3630 7300</p>\n<p><strong>Email: <a href=\"mailto:info@brisbanenorthphn.org.au\" target=\"_blank\" rel=\"noreferrer noopener\">info@brisbanenorthphn.org.au</a></strong></p>',NULL,0,'solid',NULL),(11569,150463,1,'2021-04-12 00:41:29','2021-04-12 00:41:29','ffe37fa4-28f5-4a57-bd0e-bcb4bcf49de9','<h3><strong>North Lakes</strong></h3>\n<p>Level 2, 10 Endeavour Boulevard, North Lakes</p>\n<p>PO Box 929, North Lakes Qld 4509</p>\n<p>Phone: 07 3490 3490</p>\n<p><strong>Email: <a href=\"mailto:info@brisbanenorthphn.org.au\" target=\"_blank\" rel=\"noreferrer noopener\">info@brisbanenorthphn.org.au</a></strong></p>',NULL,0,'solid',NULL),(11570,150474,1,'2021-04-12 00:41:33','2021-04-12 00:41:33','5011e18b-6dbe-48aa-a49d-c3ea7bf0bc37','<h3><strong>Lutwyche</strong></h3>\n<p>Level 1, 120 Chalk Street, Lutwyche</p>\n<p>PO Box 845, Lutwyche Qld 4030</p>\n<p>Phone: 07 3630 7300</p>\n<p><strong>Email: <a href=\"mailto:info@brisbanenorthphn.org.au\" target=\"_blank\" rel=\"noreferrer noopener\">info@brisbanenorthphn.org.au</a></strong></p>',NULL,0,'solid',NULL),(11571,150475,1,'2021-04-12 00:41:33','2021-04-12 00:41:33','c5b72627-72b6-4721-b7bb-093b94f51010','<h3><strong>North Lakes</strong></h3>\n<p>Level 2, 10 Endeavour Boulevard, North Lakes</p>\n<p>PO Box 929, North Lakes Qld 4509</p>\n<p>Phone: 07 3490 3490</p>\n<p><strong>Email: <a href=\"mailto:info@brisbanenorthphn.org.au\" target=\"_blank\" rel=\"noreferrer noopener\">info@brisbanenorthphn.org.au</a></strong></p>',NULL,0,'solid',NULL),(11588,150720,1,'2021-04-12 05:43:02','2021-04-12 05:43:02','dceb05bb-157f-451e-ac8f-f1b7d8eac06b','<figure><a href=\"https://www.bandt.com.au/__trashed-2497/\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:134983:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/BandT-icon.jpg?mtime=20210216145530&focal=none}\" alt=\"B&amp;T magazine\" /></a></figure>\n<h5>\'24/7 Health Advice Is Just A Phone Call Away\' In Anytime Health Advice Campaign</h5>\n<p>B&amp;T Magazine<br />15 February 2021</p>','Read more',1,'outline','https://www.bandt.com.au/__trashed-2497/'),(11589,150721,1,'2021-04-12 05:43:02','2021-04-12 05:43:02','6f138148-b9bb-4d93-8fa2-1e3134b97ce4','<figure><a href=\"https://1015fm.com.au/2020/12/paul-martin-headspace-strathpine-on-101-5-2020-12-08\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/101-5FM-icon.png?mtime=20201204115742&amp;focal=none?1618206127191#asset:124594\" alt=\"101.5FM\" /></a></figure>\n<h5>Opening of headspace Strathpine to improve youth mental health services</h5>\n<p>101.5FM (podcast)<br />8 December 2020</p>','Listen now',1,'outline','https://1015fm.com.au/2020/12/paul-martin-headspace-strathpine-on-101-5-2020-12-08/'),(11590,150722,1,'2021-04-12 05:43:02','2021-04-12 05:43:02','5c2f855d-1aaf-4df6-9dd9-ffdb19c76e31','<figure><a href=\"https://communitycarereview.com.au/2020/12/08/one-in-five-find-gaps-in-chsp/\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:124959:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/Community-Care-Review-icon.jpg?mtime=20201208122208&focal=none}\" alt=\"Community Care Review\" /></a></figure>\n<h5>Meaningful activity, social connection lacking for CHSP recipients</h5>\n<p>Community Care Review<br />8 December 2020</p>','Read more',1,'outline','https://communitycarereview.com.au/2020/12/08/one-in-five-find-gaps-in-chsp/'),(11591,150723,1,'2021-04-12 05:43:02','2021-04-12 05:43:02','2de5b820-b10f-411e-b286-18d86b7718d7','<figure><a href=\"http://www.northlakesmessenger.com.au/mags/2020/Messenger_Dec_5.pdf#page=8\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:124899:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/Messenger-5-Dec-20.png?mtime=20201204130016&focal=none}\" alt=\"North Lakes Messenger\" /></a></figure>\n<h5>Opening of headspace Strathpine<br /></h5>\n<p>North Lakes Messenger, p. 8<br />5 December 2020</p>','Read more',1,'outline','http://www.northlakesmessenger.com.au/mags/2020/Messenger_Dec_5.pdf#page=8'),(11592,150724,1,'2021-04-12 05:43:02','2021-04-12 05:43:02','9d8fc163-c97c-4737-904e-bd8edb7291ac','<figure><a href=\"https://qnews.com.au/talking-heals-campaign-supports-lgbti-sistergirl-and-brotherboy-people/\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:124549:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/QNews-icon.jpg?mtime=20201204113835&focal=none}\" alt=\"QNews\" /></a></figure>\n<h5>‘Talking Heals’ campaign supports LGBTI Sistergirl and Brotherboy people<br /></h5>\n<p>QNews<br />2 December 2020</p>','Read more',1,'outline','https://qnews.com.au/talking-heals-campaign-supports-lgbti-sistergirl-and-brotherboy-people/'),(11593,150725,1,'2021-04-12 05:43:02','2021-04-12 05:43:02','f06be4d1-bea5-4d48-a474-360548d7a017','<figure><a href=\"https://www.couriermail.com.au/questnews/moreton/headspace-to-launch-new-35-million-centre-at-strathpine-amid-growing-youth-mental-health-concerns/news-story/2ada2b9d376017d0ff655a64e434c065\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:117720:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/Courier-Mail.png?mtime=20201022123506&focal=none}\" alt=\"The Courier-Mail\" /></a></figure>\n<h5>Headspace to launch new $3.5 million centre at Strathpine amid growing youth mental health concerns<br /></h5>\n<p>Pine Rivers Press (subscriber only)<br />30 November 2020</p>','Read more',1,'outline','https://www.couriermail.com.au/questnews/moreton/headspace-to-launch-new-35-million-centre-at-strathpine-amid-growing-youth-mental-health-concerns/news-story/2ada2b9d376017d0ff655a64e434c065'),(11594,150726,1,'2021-04-12 05:43:02','2021-04-12 05:43:02','c1a5d9c1-d5a2-40c8-b566-ef60599d7932','<figure><a href=\"http://www.northlakesmessenger.com.au/mags/2020/Messenger_Sep_19.pdf#page=15\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:124851:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/Messenger-19-Sep-2020.png?mtime=20201204125614&focal=none}\" alt=\"North Lakes Messenger\" /></a></figure>\n<h5>Indigenous artwork celebrates reconciliation progress<br /></h5>\n<p>North Lakes Messenger, p. 15<br />19 September 2020</p>','Read more',1,'outline','http://www.northlakesmessenger.com.au/mags/2020/Messenger_Sep_19.pdf#page=15'),(11595,150727,1,'2021-04-12 05:43:02','2021-04-12 05:43:02','1357e25c-5c22-4862-acac-be897adecba1','<figure><a href=\"https://www.couriermail.com.au/questnews/moreton/new-afterhours-medical-care-comes-to-bribie-island/news-story/d49e45df14f9cb3ee499369c1022eea2\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:117720:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/Courier-Mail.png?mtime=20201022123506&focal=none}\" alt=\"The Courier-Mail\" /></a></figure>\n<h5>New after-hours medical care comes to Bribie Island</h5>\n<p>Bribie Weekly (subscriber only)<br />3 September 2020</p>','Read more',1,'outline','https://www.couriermail.com.au/questnews/moreton/new-afterhours-medical-care-comes-to-bribie-island/news-story/d49e45df14f9cb3ee499369c1022eea2'),(11596,150728,1,'2021-04-12 05:43:02','2021-04-12 05:43:02','6b0e92fd-a8e9-41d0-a328-112f83b6e50a','<figure><a href=\"https://www.islandandsurrounds.com/post/2020/08/26/safe-to-see-your-gp\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:117784:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/Island-and-Surrounds-News.PNG?mtime=20201022162550&focal=none}\" alt=\"Island and Surrounds News\" /></a></figure>\n<h5>Safe to See Your GP</h5>\n<p>Island and Surrounds News<br />26 August 2020</p>','Read more',1,'outline','https://www.islandandsurrounds.com/post/2020/08/26/safe-to-see-your-gp'),(11597,150729,1,'2021-04-12 05:43:02','2021-04-12 05:43:02','799a7c7b-3b72-4416-a2c1-f9888d362d02','<figure><a href=\"https://www.couriermail.com.au/questnews/moreton/sane-australia-to-trial-new-suicide-prevention-resource-in-brisbane-north-phn-area/news-story/82e6b633eb988b64aa82634f393d476a\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:117720:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/Courier-Mail.png?mtime=20201022123506&focal=none}\" alt=\"Courier-Mail icon\" /></a></figure>\n<h5>SANE Australia to trial new suicide prevention resource in Brisbane North PHN area</h5>\n<p>Redcliffe Herald (subscriber only)<br />27 May 2020</p>','Read more',1,'outline','https://www.couriermail.com.au/questnews/moreton/sane-australia-to-trial-new-suicide-prevention-resource-in-brisbane-north-phn-area/news-story/82e6b633eb988b64aa82634f393d476a'),(11598,150730,1,'2021-04-12 05:43:02','2021-04-12 05:43:02','e70c6179-a2d3-48eb-980b-bead2914695c','<figure><a href=\"https://www.couriermail.com.au/questnews/first-coronavirus-testing-clinic-opens-in-westside/news-story/dfbd26dfaf8f0981b92a0d1f3476acf2\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:117720:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/Courier-Mail.png?mtime=20201022123506&focal=none}\" alt=\"The Courier-Mail\" /></a></figure>\n<h5>First coronavirus testing clinic opens in westside<br /></h5>\n<p>Westside News (subscriber only)<br />23 April 2020</p>','Read more',1,'outline','https://www.couriermail.com.au/questnews/first-coronavirus-testing-clinic-opens-in-westside/news-story/dfbd26dfaf8f0981b92a0d1f3476acf2'),(11599,150731,1,'2021-04-12 05:43:02','2021-04-12 05:43:02','02d700ba-6be7-4d56-b2c3-ebbc53ef5e14','<figure><a href=\"https://www.couriermail.com.au/questnews/moreton/australias-first-indigenous-only-fever-clinic-is-now-open-three-more-are-due-to-open-this-month/news-story/c739734c7a274d4838b18c0776608d63\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:117720:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/Courier-Mail.png?mtime=20201022123506&focal=none}\" alt=\"The Courier-Mail\" /></a></figure>\n<h5>Australia’s first indigenous only fever clinic is now open</h5>\n<p>Redcliffe Herald (subscriber only)<br />16 April 2020<br /></p>','Read more',1,'outline','https://www.couriermail.com.au/questnews/moreton/australias-first-indigenous-only-fever-clinic-is-now-open-three-more-are-due-to-open-this-month/news-story/c739734c7a274d4838b18c0776608d63'),(11600,150732,1,'2021-04-12 05:43:02','2021-04-12 05:43:02','a70730bd-9960-4036-85ab-672bd7762934','<figure><a href=\"https://issuu.com/islandandsurrounds/docs/issue_49_local_news__island_and_surrounds_covid-19/8\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:117784:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/Island-and-Surrounds-News.PNG?mtime=20201022162550&focal=none}\" alt=\"The Island and Surrounds News\" /></a></figure>\n<h5>Federal Member for Longman and Aged Care Minister visits Morayfield Aged Care Facility<br /></h5>\n<p>Island and Surrounds News, p.8<br />6 April 2020</p>','Read more',1,'outline','https://issuu.com/islandandsurrounds/docs/issue_49_local_news__island_and_surrounds_covid-19/8'),(11601,150733,1,'2021-04-12 05:43:02','2021-04-12 05:43:02','907230f2-a947-40dc-8e63-ac223f3d3345','<figure><a href=\"https://issuu.com/adbourne/docs/lasa_autumn_2020_issuu_opt/52\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:124504:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/LASA-icon.png?mtime=20201204113047&focal=none}\" alt=\"LASA Fusion Magazine\" /></a></figure>\n<h5>More than just a day out<br /></h5>\n<p>LASA Fusion Magazine<br />Autumn 2020</p>','Read more',1,'outline','https://issuu.com/adbourne/docs/lasa_autumn_2020_issuu_opt/52'),(11602,150734,1,'2021-04-12 05:43:02','2021-04-12 05:43:02','58effea0-d05e-4b5d-a6b9-1c6df2f18538','<figure><a href=\"https://1015fm.com.au/2020/03/federal-member-for-longman-and-aged-care-minister-visits-morayfield-aged-care-facility/\"><img src=\"{asset:124594:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/101-5FM-icon.png?mtime=20201204115742&focal=none}\" alt=\"101.5FM\" /></a></figure>\n<h5>Federal Member for Longman and Aged Care Minister visits Morayfield Aged Care Facility<br /></h5>\n<p>101.5FM<br />17 March 2020</p>','Read more',1,'outline','https://1015fm.com.au/2020/03/federal-member-for-longman-and-aged-care-minister-visits-morayfield-aged-care-facility/'),(11603,150735,1,'2021-04-12 05:43:02','2021-04-12 05:43:02','53135386-50f8-4151-aeee-d63765a3d515','<figure><a href=\"https://www.croakey.org/of-commissions-and-consortia-a-new-model-for-aged-care/\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:124411:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/Croakey-icon.jpg?mtime=20201204111223&focal=none}\" alt=\"Croakey.org\" /></a></figure>\n<h5>Of commissions and consortia: a new model for aged care<br /></h5>\n<p>Croakey<br />27 February 2020</p>','Read more',1,'outline','https://www.croakey.org/of-commissions-and-consortia-a-new-model-for-aged-care/'),(11604,150739,1,'2021-04-12 05:43:03','2021-04-12 05:43:03','13a11b1f-389a-4219-8cac-0914f2f2a260','<figure><a href=\"https://www.bandt.com.au/__trashed-2497/\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:134983:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/BandT-icon.jpg?mtime=20210216145530&focal=none}\" alt=\"B&amp;T magazine\" /></a></figure>\n<h5>\'24/7 Health Advice Is Just A Phone Call Away\' In Anytime Health Advice Campaign</h5>\n<p>B&amp;T Magazine<br />15 February 2021</p>','Read more',1,'outline','https://www.bandt.com.au/__trashed-2497/'),(11605,150740,1,'2021-04-12 05:43:03','2021-04-12 05:43:03','54459444-6514-48e7-81a3-2734a4c1467b','<figure><a href=\"https://1015fm.com.au/2020/12/paul-martin-headspace-strathpine-on-101-5-2020-12-08\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/101-5FM-icon.png?mtime=20201204115742&amp;focal=none?1618206127191#asset:124594\" alt=\"101.5FM\" /></a></figure>\n<h5>Opening of headspace Strathpine to improve youth mental health services</h5>\n<p>101.5FM (podcast)<br />8 December 2020</p>','Listen now',1,'outline','https://1015fm.com.au/2020/12/paul-martin-headspace-strathpine-on-101-5-2020-12-08/'),(11606,150741,1,'2021-04-12 05:43:03','2021-04-12 05:43:03','6c9981e9-7754-499b-8a8e-44be76e38a39','<figure><a href=\"https://communitycarereview.com.au/2020/12/08/one-in-five-find-gaps-in-chsp/\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:124959:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/Community-Care-Review-icon.jpg?mtime=20201208122208&focal=none}\" alt=\"Community Care Review\" /></a></figure>\n<h5>Meaningful activity, social connection lacking for CHSP recipients</h5>\n<p>Community Care Review<br />8 December 2020</p>','Read more',1,'outline','https://communitycarereview.com.au/2020/12/08/one-in-five-find-gaps-in-chsp/'),(11607,150742,1,'2021-04-12 05:43:03','2021-04-12 05:43:03','c5a78150-2e05-48a5-8f33-9f4c87aa650c','<figure><a href=\"http://www.northlakesmessenger.com.au/mags/2020/Messenger_Dec_5.pdf#page=8\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:124899:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/Messenger-5-Dec-20.png?mtime=20201204130016&focal=none}\" alt=\"North Lakes Messenger\" /></a></figure>\n<h5>Opening of headspace Strathpine<br /></h5>\n<p>North Lakes Messenger, p. 8<br />5 December 2020</p>','Read more',1,'outline','http://www.northlakesmessenger.com.au/mags/2020/Messenger_Dec_5.pdf#page=8'),(11608,150743,1,'2021-04-12 05:43:03','2021-04-12 05:43:03','7e860a01-0632-4c80-b0da-abbbe129bdee','<figure><a href=\"https://qnews.com.au/talking-heals-campaign-supports-lgbti-sistergirl-and-brotherboy-people/\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:124549:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/QNews-icon.jpg?mtime=20201204113835&focal=none}\" alt=\"QNews\" /></a></figure>\n<h5>‘Talking Heals’ campaign supports LGBTI Sistergirl and Brotherboy people<br /></h5>\n<p>QNews<br />2 December 2020</p>','Read more',1,'outline','https://qnews.com.au/talking-heals-campaign-supports-lgbti-sistergirl-and-brotherboy-people/'),(11609,150744,1,'2021-04-12 05:43:03','2021-04-12 05:43:03','5dac7846-f4f2-4205-ab5a-06c8dbd5da29','<figure><a href=\"https://www.couriermail.com.au/questnews/moreton/headspace-to-launch-new-35-million-centre-at-strathpine-amid-growing-youth-mental-health-concerns/news-story/2ada2b9d376017d0ff655a64e434c065\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:117720:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/Courier-Mail.png?mtime=20201022123506&focal=none}\" alt=\"The Courier-Mail\" /></a></figure>\n<h5>Headspace to launch new $3.5 million centre at Strathpine amid growing youth mental health concerns<br /></h5>\n<p>Pine Rivers Press (subscriber only)<br />30 November 2020</p>','Read more',1,'outline','https://www.couriermail.com.au/questnews/moreton/headspace-to-launch-new-35-million-centre-at-strathpine-amid-growing-youth-mental-health-concerns/news-story/2ada2b9d376017d0ff655a64e434c065'),(11610,150745,1,'2021-04-12 05:43:03','2021-04-12 05:43:03','3fc9b17f-69b4-4cd9-9ae3-085b1ff3b4b8','<figure><a href=\"http://www.northlakesmessenger.com.au/mags/2020/Messenger_Sep_19.pdf#page=15\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:124851:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/Messenger-19-Sep-2020.png?mtime=20201204125614&focal=none}\" alt=\"North Lakes Messenger\" /></a></figure>\n<h5>Indigenous artwork celebrates reconciliation progress<br /></h5>\n<p>North Lakes Messenger, p. 15<br />19 September 2020</p>','Read more',1,'outline','http://www.northlakesmessenger.com.au/mags/2020/Messenger_Sep_19.pdf#page=15'),(11611,150746,1,'2021-04-12 05:43:03','2021-04-12 05:43:03','feb84ce6-6363-4ca9-a8db-b9b98b52859c','<figure><a href=\"https://www.couriermail.com.au/questnews/moreton/new-afterhours-medical-care-comes-to-bribie-island/news-story/d49e45df14f9cb3ee499369c1022eea2\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:117720:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/Courier-Mail.png?mtime=20201022123506&focal=none}\" alt=\"The Courier-Mail\" /></a></figure>\n<h5>New after-hours medical care comes to Bribie Island</h5>\n<p>Bribie Weekly (subscriber only)<br />3 September 2020</p>','Read more',1,'outline','https://www.couriermail.com.au/questnews/moreton/new-afterhours-medical-care-comes-to-bribie-island/news-story/d49e45df14f9cb3ee499369c1022eea2'),(11612,150747,1,'2021-04-12 05:43:03','2021-04-12 05:43:03','36e5f37c-0d43-410a-94c5-71110eda6450','<figure><a href=\"https://www.islandandsurrounds.com/post/2020/08/26/safe-to-see-your-gp\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:117784:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/Island-and-Surrounds-News.PNG?mtime=20201022162550&focal=none}\" alt=\"Island and Surrounds News\" /></a></figure>\n<h5>Safe to See Your GP</h5>\n<p>Island and Surrounds News<br />26 August 2020</p>','Read more',1,'outline','https://www.islandandsurrounds.com/post/2020/08/26/safe-to-see-your-gp'),(11613,150748,1,'2021-04-12 05:43:03','2021-04-12 05:43:03','18974f6b-3bde-4e80-9515-908aff9ad633','<figure><a href=\"https://www.couriermail.com.au/questnews/moreton/sane-australia-to-trial-new-suicide-prevention-resource-in-brisbane-north-phn-area/news-story/82e6b633eb988b64aa82634f393d476a\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:117720:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/Courier-Mail.png?mtime=20201022123506&focal=none}\" alt=\"Courier-Mail icon\" /></a></figure>\n<h5>SANE Australia to trial new suicide prevention resource in Brisbane North PHN area</h5>\n<p>Redcliffe Herald (subscriber only)<br />27 May 2020</p>','Read more',1,'outline','https://www.couriermail.com.au/questnews/moreton/sane-australia-to-trial-new-suicide-prevention-resource-in-brisbane-north-phn-area/news-story/82e6b633eb988b64aa82634f393d476a'),(11614,150749,1,'2021-04-12 05:43:03','2021-04-12 05:43:03','edded9d2-12a3-4539-9e5f-34e7adaa6005','<figure><a href=\"https://www.couriermail.com.au/questnews/first-coronavirus-testing-clinic-opens-in-westside/news-story/dfbd26dfaf8f0981b92a0d1f3476acf2\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:117720:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/Courier-Mail.png?mtime=20201022123506&focal=none}\" alt=\"The Courier-Mail\" /></a></figure>\n<h5>First coronavirus testing clinic opens in westside<br /></h5>\n<p>Westside News (subscriber only)<br />23 April 2020</p>','Read more',1,'outline','https://www.couriermail.com.au/questnews/first-coronavirus-testing-clinic-opens-in-westside/news-story/dfbd26dfaf8f0981b92a0d1f3476acf2'),(11615,150750,1,'2021-04-12 05:43:03','2021-04-12 05:43:03','9b2de2e2-63ac-4189-aee1-9d8382f740c9','<figure><a href=\"https://www.couriermail.com.au/questnews/moreton/australias-first-indigenous-only-fever-clinic-is-now-open-three-more-are-due-to-open-this-month/news-story/c739734c7a274d4838b18c0776608d63\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:117720:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/Courier-Mail.png?mtime=20201022123506&focal=none}\" alt=\"The Courier-Mail\" /></a></figure>\n<h5>Australia’s first indigenous only fever clinic is now open</h5>\n<p>Redcliffe Herald (subscriber only)<br />16 April 2020<br /></p>','Read more',1,'outline','https://www.couriermail.com.au/questnews/moreton/australias-first-indigenous-only-fever-clinic-is-now-open-three-more-are-due-to-open-this-month/news-story/c739734c7a274d4838b18c0776608d63'),(11616,150751,1,'2021-04-12 05:43:03','2021-04-12 05:43:03','e42d23d6-cfd6-4d5f-8eb6-5c64e3874b36','<figure><a href=\"https://issuu.com/islandandsurrounds/docs/issue_49_local_news__island_and_surrounds_covid-19/8\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:117784:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/Island-and-Surrounds-News.PNG?mtime=20201022162550&focal=none}\" alt=\"The Island and Surrounds News\" /></a></figure>\n<h5>Federal Member for Longman and Aged Care Minister visits Morayfield Aged Care Facility<br /></h5>\n<p>Island and Surrounds News, p.8<br />6 April 2020</p>','Read more',1,'outline','https://issuu.com/islandandsurrounds/docs/issue_49_local_news__island_and_surrounds_covid-19/8'),(11617,150752,1,'2021-04-12 05:43:03','2021-04-12 05:43:03','b27db854-dba2-4565-9bf6-8fe967324c15','<figure><a href=\"https://issuu.com/adbourne/docs/lasa_autumn_2020_issuu_opt/52\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:124504:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/LASA-icon.png?mtime=20201204113047&focal=none}\" alt=\"LASA Fusion Magazine\" /></a></figure>\n<h5>More than just a day out<br /></h5>\n<p>LASA Fusion Magazine<br />Autumn 2020</p>','Read more',1,'outline','https://issuu.com/adbourne/docs/lasa_autumn_2020_issuu_opt/52'),(11618,150753,1,'2021-04-12 05:43:03','2021-04-12 05:43:03','efb5a133-a58c-4fa8-b54b-747cea5f0366','<figure><a href=\"https://1015fm.com.au/2020/03/federal-member-for-longman-and-aged-care-minister-visits-morayfield-aged-care-facility/\"><img src=\"{asset:124594:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/101-5FM-icon.png?mtime=20201204115742&focal=none}\" alt=\"101.5FM\" /></a></figure>\n<h5>Federal Member for Longman and Aged Care Minister visits Morayfield Aged Care Facility<br /></h5>\n<p>101.5FM<br />17 March 2020</p>','Read more',1,'outline','https://1015fm.com.au/2020/03/federal-member-for-longman-and-aged-care-minister-visits-morayfield-aged-care-facility/'),(11619,150754,1,'2021-04-12 05:43:03','2021-04-12 05:43:03','2ffa2a60-669a-4157-b997-a3b4f9d70c23','<figure><a href=\"https://www.croakey.org/of-commissions-and-consortia-a-new-model-for-aged-care/\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:124411:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/Croakey-icon.jpg?mtime=20201204111223&focal=none}\" alt=\"Croakey.org\" /></a></figure>\n<h5>Of commissions and consortia: a new model for aged care<br /></h5>\n<p>Croakey<br />27 February 2020</p>','Read more',1,'outline','https://www.croakey.org/of-commissions-and-consortia-a-new-model-for-aged-care/'),(11620,150758,1,'2021-04-12 05:43:08','2021-04-12 05:43:08','1dedcb05-0096-44d5-a3f2-c9a104e914a2','<figure><a href=\"https://www.bandt.com.au/__trashed-2497/\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:134983:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/BandT-icon.jpg?mtime=20210216145530&focal=none}\" alt=\"B&amp;T magazine\" /></a></figure>\n<h5>\'24/7 Health Advice Is Just A Phone Call Away\' In Anytime Health Advice Campaign</h5>\n<p>B&amp;T Magazine<br />15 February 2021</p>','Read more',1,'outline','https://www.bandt.com.au/__trashed-2497/'),(11621,150759,1,'2021-04-12 05:43:08','2021-04-12 05:43:08','de1f6f65-b41a-4254-997a-5783999f8f0f','<figure><a href=\"https://1015fm.com.au/2020/12/paul-martin-headspace-strathpine-on-101-5-2020-12-08\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/101-5FM-icon.png?mtime=20201204115742&amp;focal=none?1618206127191#asset:124594\" alt=\"101.5FM\" /></a></figure>\n<h5>Opening of headspace Strathpine to improve youth mental health services</h5>\n<p>101.5FM (podcast)<br />8 December 2020</p>','Listen now',1,'outline','https://1015fm.com.au/2020/12/paul-martin-headspace-strathpine-on-101-5-2020-12-08/'),(11622,150760,1,'2021-04-12 05:43:08','2021-04-12 05:43:08','9bafd8b8-36a6-419f-8afb-8a215b168414','<figure><a href=\"https://communitycarereview.com.au/2020/12/08/one-in-five-find-gaps-in-chsp/\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:124959:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/Community-Care-Review-icon.jpg?mtime=20201208122208&focal=none}\" alt=\"Community Care Review\" /></a></figure>\n<h5>Meaningful activity, social connection lacking for CHSP recipients</h5>\n<p>Community Care Review<br />8 December 2020</p>','Read more',1,'outline','https://communitycarereview.com.au/2020/12/08/one-in-five-find-gaps-in-chsp/'),(11623,150761,1,'2021-04-12 05:43:08','2021-04-12 05:43:08','eece6a0f-2964-4618-b3fd-636f65a47a44','<figure><a href=\"http://www.northlakesmessenger.com.au/mags/2020/Messenger_Dec_5.pdf#page=8\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:124899:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/Messenger-5-Dec-20.png?mtime=20201204130016&focal=none}\" alt=\"North Lakes Messenger\" /></a></figure>\n<h5>Opening of headspace Strathpine<br /></h5>\n<p>North Lakes Messenger, p. 8<br />5 December 2020</p>','Read more',1,'outline','http://www.northlakesmessenger.com.au/mags/2020/Messenger_Dec_5.pdf#page=8'),(11624,150762,1,'2021-04-12 05:43:08','2021-04-12 05:43:08','9445ca8a-1e2d-407b-94d4-6055393f5eb8','<figure><a href=\"https://qnews.com.au/talking-heals-campaign-supports-lgbti-sistergirl-and-brotherboy-people/\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:124549:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/QNews-icon.jpg?mtime=20201204113835&focal=none}\" alt=\"QNews\" /></a></figure>\n<h5>‘Talking Heals’ campaign supports LGBTI Sistergirl and Brotherboy people<br /></h5>\n<p>QNews<br />2 December 2020</p>','Read more',1,'outline','https://qnews.com.au/talking-heals-campaign-supports-lgbti-sistergirl-and-brotherboy-people/'),(11625,150763,1,'2021-04-12 05:43:09','2021-04-12 05:43:09','4ffbeaab-204a-4b51-90bb-f49f4e627f7d','<figure><a href=\"https://www.couriermail.com.au/questnews/moreton/headspace-to-launch-new-35-million-centre-at-strathpine-amid-growing-youth-mental-health-concerns/news-story/2ada2b9d376017d0ff655a64e434c065\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:117720:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/Courier-Mail.png?mtime=20201022123506&focal=none}\" alt=\"The Courier-Mail\" /></a></figure>\n<h5>Headspace to launch new $3.5 million centre at Strathpine amid growing youth mental health concerns<br /></h5>\n<p>Pine Rivers Press (subscriber only)<br />30 November 2020</p>','Read more',1,'outline','https://www.couriermail.com.au/questnews/moreton/headspace-to-launch-new-35-million-centre-at-strathpine-amid-growing-youth-mental-health-concerns/news-story/2ada2b9d376017d0ff655a64e434c065'),(11626,150764,1,'2021-04-12 05:43:09','2021-04-12 05:43:09','7540cd14-90a3-45e6-a957-ebfbc8415e95','<figure><a href=\"http://www.northlakesmessenger.com.au/mags/2020/Messenger_Sep_19.pdf#page=15\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:124851:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/Messenger-19-Sep-2020.png?mtime=20201204125614&focal=none}\" alt=\"North Lakes Messenger\" /></a></figure>\n<h5>Indigenous artwork celebrates reconciliation progress<br /></h5>\n<p>North Lakes Messenger, p. 15<br />19 September 2020</p>','Read more',1,'outline','http://www.northlakesmessenger.com.au/mags/2020/Messenger_Sep_19.pdf#page=15'),(11627,150765,1,'2021-04-12 05:43:09','2021-04-12 05:43:09','113a4614-827e-4016-bba9-db3291952f9b','<figure><a href=\"https://www.couriermail.com.au/questnews/moreton/new-afterhours-medical-care-comes-to-bribie-island/news-story/d49e45df14f9cb3ee499369c1022eea2\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:117720:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/Courier-Mail.png?mtime=20201022123506&focal=none}\" alt=\"The Courier-Mail\" /></a></figure>\n<h5>New after-hours medical care comes to Bribie Island</h5>\n<p>Bribie Weekly (subscriber only)<br />3 September 2020</p>','Read more',1,'outline','https://www.couriermail.com.au/questnews/moreton/new-afterhours-medical-care-comes-to-bribie-island/news-story/d49e45df14f9cb3ee499369c1022eea2'),(11628,150766,1,'2021-04-12 05:43:09','2021-04-12 05:43:09','a3255f25-21e8-4187-8714-277ca06e7c1f','<figure><a href=\"https://www.islandandsurrounds.com/post/2020/08/26/safe-to-see-your-gp\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:117784:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/Island-and-Surrounds-News.PNG?mtime=20201022162550&focal=none}\" alt=\"Island and Surrounds News\" /></a></figure>\n<h5>Safe to See Your GP</h5>\n<p>Island and Surrounds News<br />26 August 2020</p>','Read more',1,'outline','https://www.islandandsurrounds.com/post/2020/08/26/safe-to-see-your-gp'),(11629,150767,1,'2021-04-12 05:43:09','2021-04-12 05:43:09','962a0cc0-6801-42cc-81e4-dec76bb879eb','<figure><a href=\"https://www.couriermail.com.au/questnews/moreton/sane-australia-to-trial-new-suicide-prevention-resource-in-brisbane-north-phn-area/news-story/82e6b633eb988b64aa82634f393d476a\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:117720:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/Courier-Mail.png?mtime=20201022123506&focal=none}\" alt=\"Courier-Mail icon\" /></a></figure>\n<h5>SANE Australia to trial new suicide prevention resource in Brisbane North PHN area</h5>\n<p>Redcliffe Herald (subscriber only)<br />27 May 2020</p>','Read more',1,'outline','https://www.couriermail.com.au/questnews/moreton/sane-australia-to-trial-new-suicide-prevention-resource-in-brisbane-north-phn-area/news-story/82e6b633eb988b64aa82634f393d476a'),(11630,150768,1,'2021-04-12 05:43:09','2021-04-12 05:43:09','292ca89d-dea0-4399-9ce5-14c68ad4302f','<figure><a href=\"https://www.couriermail.com.au/questnews/first-coronavirus-testing-clinic-opens-in-westside/news-story/dfbd26dfaf8f0981b92a0d1f3476acf2\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:117720:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/Courier-Mail.png?mtime=20201022123506&focal=none}\" alt=\"The Courier-Mail\" /></a></figure>\n<h5>First coronavirus testing clinic opens in westside<br /></h5>\n<p>Westside News (subscriber only)<br />23 April 2020</p>','Read more',1,'outline','https://www.couriermail.com.au/questnews/first-coronavirus-testing-clinic-opens-in-westside/news-story/dfbd26dfaf8f0981b92a0d1f3476acf2'),(11631,150769,1,'2021-04-12 05:43:09','2021-04-12 05:43:09','c570643f-70fd-4a6e-94aa-112b53ef2f67','<figure><a href=\"https://www.couriermail.com.au/questnews/moreton/australias-first-indigenous-only-fever-clinic-is-now-open-three-more-are-due-to-open-this-month/news-story/c739734c7a274d4838b18c0776608d63\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:117720:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/Courier-Mail.png?mtime=20201022123506&focal=none}\" alt=\"The Courier-Mail\" /></a></figure>\n<h5>Australia’s first indigenous only fever clinic is now open</h5>\n<p>Redcliffe Herald (subscriber only)<br />16 April 2020<br /></p>','Read more',1,'outline','https://www.couriermail.com.au/questnews/moreton/australias-first-indigenous-only-fever-clinic-is-now-open-three-more-are-due-to-open-this-month/news-story/c739734c7a274d4838b18c0776608d63'),(11632,150770,1,'2021-04-12 05:43:09','2021-04-12 05:43:09','ab03ab52-ed33-4ff2-8d07-aa3df729e02b','<figure><a href=\"https://issuu.com/islandandsurrounds/docs/issue_49_local_news__island_and_surrounds_covid-19/8\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:117784:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/Island-and-Surrounds-News.PNG?mtime=20201022162550&focal=none}\" alt=\"The Island and Surrounds News\" /></a></figure>\n<h5>Federal Member for Longman and Aged Care Minister visits Morayfield Aged Care Facility<br /></h5>\n<p>Island and Surrounds News, p.8<br />6 April 2020</p>','Read more',1,'outline','https://issuu.com/islandandsurrounds/docs/issue_49_local_news__island_and_surrounds_covid-19/8'),(11633,150771,1,'2021-04-12 05:43:09','2021-04-12 05:43:09','3b0b8d73-bbce-43ee-888d-fe03a88bed7a','<figure><a href=\"https://issuu.com/adbourne/docs/lasa_autumn_2020_issuu_opt/52\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:124504:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/LASA-icon.png?mtime=20201204113047&focal=none}\" alt=\"LASA Fusion Magazine\" /></a></figure>\n<h5>More than just a day out<br /></h5>\n<p>LASA Fusion Magazine<br />Autumn 2020</p>','Read more',1,'outline','https://issuu.com/adbourne/docs/lasa_autumn_2020_issuu_opt/52'),(11634,150772,1,'2021-04-12 05:43:09','2021-04-12 05:43:09','40736311-c89c-4461-9711-36e8cfc77b22','<figure><a href=\"https://1015fm.com.au/2020/03/federal-member-for-longman-and-aged-care-minister-visits-morayfield-aged-care-facility/\"><img src=\"{asset:124594:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/101-5FM-icon.png?mtime=20201204115742&focal=none}\" alt=\"101.5FM\" /></a></figure>\n<h5>Federal Member for Longman and Aged Care Minister visits Morayfield Aged Care Facility<br /></h5>\n<p>101.5FM<br />17 March 2020</p>','Read more',1,'outline','https://1015fm.com.au/2020/03/federal-member-for-longman-and-aged-care-minister-visits-morayfield-aged-care-facility/'),(11635,150773,1,'2021-04-12 05:43:09','2021-04-12 05:43:09','b26ae4cf-40a4-451d-a81c-bcde3fc81a60','<figure><a href=\"https://www.croakey.org/of-commissions-and-consortia-a-new-model-for-aged-care/\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"{asset:124411:url||https://d1jydvs1x4rbvt.cloudfront.net/images/Icons/Croakey-icon.jpg?mtime=20201204111223&focal=none}\" alt=\"Croakey.org\" /></a></figure>\n<h5>Of commissions and consortia: a new model for aged care<br /></h5>\n<p>Croakey<br />27 February 2020</p>','Read more',1,'outline','https://www.croakey.org/of-commissions-and-consortia-a-new-model-for-aged-care/'),(11638,150860,1,'2021-04-12 05:56:49','2021-04-12 05:56:49','cb63bf92-8b95-4fa0-8401-5745404a996e','<h3>Read more about our work</h3>\n<p>Reports and plans showing how our programs measure up.</p>','Reports and plans',0,'solid',NULL),(11639,150861,1,'2021-04-12 05:56:49','2021-04-12 05:56:49','a7be2ef3-d76a-44c4-b5a4-0e9e1e686d65','<h3>Further explore our programs</h3>\n<p>Read our 2018-19 Year in Review, which captures the wide reach of our programs.</p>','Year in Review',1,'solid','https://yearinreview.brisbanenorthphn.org.au/'),(11640,150868,1,'2021-04-12 05:56:49','2021-04-12 05:56:49','1b6f27e3-1a5e-4eab-bbbb-200ae77c17b7','<h3>Read more about our work</h3>\n<p>Reports and plans showing how our programs measure up.</p>','Reports and plans',0,'solid',NULL),(11641,150869,1,'2021-04-12 05:56:49','2021-04-12 05:56:49','76ad8b4a-b537-466d-b567-f6e4a9ae4841','<h3>Further explore our programs</h3>\n<p>Read our 2018-19 Year in Review, which captures the wide reach of our programs.</p>','Year in Review',1,'solid','https://yearinreview.brisbanenorthphn.org.au/'),(11642,150876,1,'2021-04-12 05:56:55','2021-04-12 05:56:55','e6725498-c0c9-4909-8ce9-3c2b2fb5472e','<h3>Read more about our work</h3>\n<p>Reports and plans showing how our programs measure up.</p>','Reports and plans',0,'solid',NULL),(11643,150877,1,'2021-04-12 05:56:55','2021-04-12 05:56:55','bee9bd47-f838-47d0-876b-e59e8e60a743','<h3>Further explore our programs</h3>\n<p>Read our 2018-19 Year in Review, which captures the wide reach of our programs.</p>','Year in Review',1,'solid','https://yearinreview.brisbanenorthphn.org.au/'),(11644,151930,1,'2021-04-22 06:27:47','2021-04-22 06:28:04','c5ce2e9e-13ef-487f-a89b-b7fd119dc57e','<p>Flowing Knowledge, Healing Country</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/flowing-knowledge-healing-country'),(11645,151931,1,'2021-04-22 06:27:47','2021-04-22 06:28:04','dcf67b97-d526-478e-8a50-7a39c7df3e61','<p>Dr Anita Green portrait image</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/anita-green-headshot?token=CmQ-XQCcG28o4eBNfLSCJK9oYMrhnq7I'),(11646,151932,1,'2021-04-22 06:27:47','2021-04-22 06:28:04','bb969a30-4692-4298-8803-3b47bb3adca5','<p>Dr Anita Green presenting</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/dr-anita-green-presenting-sep-2019'),(11647,151933,1,'2021-04-22 06:27:47','2021-04-22 06:28:04','04f7b9f7-e66a-4465-a9da-ffc9e009f6a4','<p>CEO Libby Dunstan portrait image</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/libby-dunstan-portrait-image'),(11648,151934,1,'2021-04-22 06:27:47','2021-04-22 06:28:04','080b46ab-2b54-4596-afb5-69e7579f2fd8','<p>Libby Dunstan at an event</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/ceo-libby-dunstan-at-the-opening-of-the-iuih-gp-respiratory-clinic-on-15-april-2020'),(11649,151935,1,'2021-04-22 06:27:47','2021-04-22 06:27:47','0d91b2ff-3763-49c4-b327-443d202b86ca','<p>Rachelle Foreman portrait image</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/151923-Rachelle-Foreman'),(11650,151936,1,'2021-04-22 06:28:04','2021-04-22 06:28:04','a51c13eb-754b-4ae0-acd1-4b2726abf480','<p>Rachelle Foreman portrait image</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/151923-Rachelle-Foreman'),(11651,151940,1,'2021-04-22 06:28:10','2021-04-22 23:40:07','4122945d-4ffe-4056-aa68-7a2fe587b44e','<p>Rachelle Foreman portrait image</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/rachelle-foreman-portrait-image'),(11652,151941,1,'2021-04-22 06:28:10','2021-04-22 23:40:07','23069ff1-2133-43b1-b78f-5c90bd400feb','<p>Flowing Knowledge, Healing Country</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/flowing-knowledge-healing-country'),(11653,151942,1,'2021-04-22 06:28:10','2021-04-22 23:40:07','ef4011c2-c4ec-4676-81ed-2a56d0d35ee4','<p>Dr Anita Green portrait image</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/anita-green-headshot?token=CmQ-XQCcG28o4eBNfLSCJK9oYMrhnq7I'),(11654,151943,1,'2021-04-22 06:28:10','2021-04-22 23:40:07','d4c39a86-bd5f-4e25-b7f5-d4fb69b244cc','<p>Dr Anita Green presenting</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/dr-anita-green-presenting-sep-2019'),(11655,151944,1,'2021-04-22 06:28:10','2021-04-22 23:40:07','5936d817-d727-4404-a82e-aa5240facec2','<p>CEO Libby Dunstan portrait image</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/libby-dunstan-portrait-image'),(11656,151945,1,'2021-04-22 06:28:10','2021-04-22 23:40:07','ef361f64-f1d6-4190-afdf-5a81935bddf5','<p>Libby Dunstan at an event</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/ceo-libby-dunstan-at-the-opening-of-the-iuih-gp-respiratory-clinic-on-15-april-2020'),(11657,151950,1,'2021-04-22 06:28:10','2021-04-22 06:28:10','78feb80c-0094-4c1e-89cc-691ef4a0ab8d','<p>Rachelle Foreman portrait image</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/151923-Rachelle-Foreman'),(11658,151951,1,'2021-04-22 06:28:10','2021-04-22 06:28:10','a6eb967c-17f6-44bb-a778-e50109570ffc','<p>Flowing Knowledge, Healing Country</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/flowing-knowledge-healing-country'),(11659,151952,1,'2021-04-22 06:28:10','2021-04-22 06:28:10','e6983c65-383d-49a5-8ef1-a8654b56d2bd','<p>Dr Anita Green portrait image</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/anita-green-headshot?token=CmQ-XQCcG28o4eBNfLSCJK9oYMrhnq7I'),(11660,151953,1,'2021-04-22 06:28:10','2021-04-22 06:28:10','758c80d8-3aa7-4324-af7e-690cbfa62d9b','<p>Dr Anita Green presenting</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/dr-anita-green-presenting-sep-2019'),(11661,151954,1,'2021-04-22 06:28:10','2021-04-22 06:28:10','7adedf82-36a7-40ea-970a-659f660c9a39','<p>CEO Libby Dunstan portrait image</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/libby-dunstan-portrait-image'),(11662,151955,1,'2021-04-22 06:28:10','2021-04-22 06:28:10','d5ce55fe-c169-4b4d-865c-1608ed58a709','<p>Libby Dunstan at an event</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/ceo-libby-dunstan-at-the-opening-of-the-iuih-gp-respiratory-clinic-on-15-april-2020'),(11663,151960,1,'2021-04-22 06:29:22','2021-04-22 06:29:22','84f1d281-feb2-443f-adaf-560c7a4b0d2d','<p>Rachelle Foreman portrait image</p>','Access image',0,'solid','https://s3.ap-southeast-2.amazonaws.com/brisbane-north-phn/media/Rachelle-Foreman.jpg'),(11664,151961,1,'2021-04-22 06:29:22','2021-04-22 06:29:22','b297c197-f144-4ee5-856f-6cd55c79e8f5','<p>Flowing Knowledge, Healing Country</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/flowing-knowledge-healing-country'),(11665,151962,1,'2021-04-22 06:29:22','2021-04-22 06:29:22','85549d4c-590c-494d-a1df-78aba94282c1','<p>Dr Anita Green portrait image</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/anita-green-headshot?token=CmQ-XQCcG28o4eBNfLSCJK9oYMrhnq7I'),(11666,151963,1,'2021-04-22 06:29:23','2021-04-22 06:29:23','568019f4-6ee0-45e5-82ec-ae59f99d46c9','<p>Dr Anita Green presenting</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/dr-anita-green-presenting-sep-2019'),(11667,151964,1,'2021-04-22 06:29:23','2021-04-22 06:29:23','7cbf46b0-b0d1-44d5-96d3-a2b16c850bee','<p>CEO Libby Dunstan portrait image</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/libby-dunstan-portrait-image'),(11668,151965,1,'2021-04-22 06:29:23','2021-04-22 06:29:23','b6746f0f-7bde-42e2-8701-ba5de07b9893','<p>Libby Dunstan at an event</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/ceo-libby-dunstan-at-the-opening-of-the-iuih-gp-respiratory-clinic-on-15-april-2020'),(11669,151986,1,'2021-04-22 23:40:07','2021-04-22 23:40:07','5bfe876b-2f36-4e9f-ac95-5c27f4225d2e','<p>Rachelle Foreman portrait image</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/rachelle-foreman-portrait-image'),(11670,151987,1,'2021-04-22 23:40:07','2021-04-22 23:40:07','9434e9ef-6b11-48c9-b692-56fdbe4dc6c6','<p>Flowing Knowledge, Healing Country</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/flowing-knowledge-healing-country'),(11671,151988,1,'2021-04-22 23:40:07','2021-04-22 23:40:07','f9539ad7-d1bb-455f-8176-f7e2225da005','<p>Dr Anita Green portrait image</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/anita-green-headshot?token=CmQ-XQCcG28o4eBNfLSCJK9oYMrhnq7I'),(11672,151989,1,'2021-04-22 23:40:07','2021-04-22 23:40:07','691a52f9-e8cb-4e4a-8f12-f5080c480ea9','<p>Dr Anita Green presenting</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/dr-anita-green-presenting-sep-2019'),(11673,151990,1,'2021-04-22 23:40:07','2021-04-22 23:40:07','ef3e675e-d129-4e4f-8916-f84d2b54ef8d','<p>CEO Libby Dunstan portrait image</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/libby-dunstan-portrait-image'),(11674,151991,1,'2021-04-22 23:40:07','2021-04-22 23:40:07','1a2b2958-d532-480d-a161-b91071d06c86','<p>Libby Dunstan at an event</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/ceo-libby-dunstan-at-the-opening-of-the-iuih-gp-respiratory-clinic-on-15-april-2020'),(11675,151996,1,'2021-04-22 23:49:05','2021-04-22 23:49:05','9d07dab0-b352-4ac4-b7bd-7d2ce3aeef66','<p>Rachelle Foreman portrait image</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/rachelle-foreman-portrait-image'),(11676,151997,1,'2021-04-22 23:49:05','2021-04-22 23:49:05','745143a9-d38e-4aca-aacb-a19688495003','<p>Flowing Knowledge, Healing Country</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/flowing-knowledge-healing-country'),(11677,151998,1,'2021-04-22 23:49:05','2021-04-22 23:49:05','4aaad927-79d4-4cb3-b9d1-330c1b012e43','<p>Dr Anita Green portrait image</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/anita-green-headshot?token=CmQ-XQCcG28o4eBNfLSCJK9oYMrhnq7I'),(11678,151999,1,'2021-04-22 23:49:05','2021-04-22 23:49:05','84877399-0e04-417d-a1ca-54134e7837b1','<p>Dr Anita Green presenting</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/dr-anita-green-presenting-sep-2019'),(11679,152000,1,'2021-04-22 23:49:05','2021-04-22 23:49:05','76879c8d-fef6-4ee1-8c11-e480d5782394','<p>CEO Libby Dunstan portrait image</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/libby-dunstan-portrait-image'),(11680,152001,1,'2021-04-22 23:49:05','2021-04-22 23:49:05','d8311c85-bb23-4389-ad22-8078978a8a74','<p>Libby Dunstan at an event</p>','Access image',0,'solid','https://brisbanenorthphn.org.au/media/ceo-libby-dunstan-at-the-opening-of-the-iuih-gp-respiratory-clinic-on-15-april-2020'),(11681,153684,1,'2021-04-30 01:20:38','2021-04-30 01:20:38','de21a74b-6e26-456c-a4ac-da089a7c3168','<h4>Subscribe to our publications</h4>','Subscribe',1,'solid',NULL),(11682,153685,1,'2021-04-30 01:20:38','2021-04-30 01:20:38','af2679f4-7afc-47f5-bd55-ba783b7d4fc2','<h4>Add your event to the calendar</h4>','Contribute',1,'solid',NULL),(11683,153686,1,'2021-04-30 01:20:38','2021-04-30 01:20:38','d6333329-e5e4-453a-9547-758679526d3c','<h4>Advertise a job vacancy </h4>','List a job',0,'solid',NULL),(11684,153693,1,'2021-04-30 01:24:41','2021-04-30 02:02:11','6e2ad628-68a7-4607-a55d-a4394080f08d','<p>Mental health, alcohol and other drugs and suicide prevention services to support your patient.</p>','My Mental Health Service Navigation',0,'solid',NULL),(11685,153694,1,'2021-04-30 01:24:41','2021-04-30 02:02:11','de23ae98-cb8b-4b3f-b9a9-0dae75ce8c20','<p>Up-to-date evidence-based patient assessment, referral and services information. </p>','HealthPathways',0,'solid',NULL),(11686,153695,1,'2021-04-30 01:24:41','2021-04-30 02:02:11','0a3cbe32-8148-4d7f-a73b-8faacf7ba3d5','<p>Enabling faster and more streamlined referrals management to Queensland public hospitals. </p>','GP Smart Referrals',0,'solid',NULL),(11687,153696,1,'2021-04-30 01:24:41','2021-04-30 02:02:11','0aeaeca9-c61c-42df-8182-b9a8e0da824e','<p>A free, six-month health program, delivered in partnership with the Queensland Government. </p>','My health for life',0,'solid',NULL),(11688,153746,1,'2021-04-30 01:24:42','2021-04-30 02:02:11','63f4c58a-249d-456f-99ca-9a5849cd14c2','<h4><strong>Children\'s Health Queensland Hospital and Health Service</strong></h4>\n<p>More information about referral templates and guidelines for CHQ.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/health-professionals/'),(11689,153747,1,'2021-04-30 01:24:42','2021-04-30 02:02:11','11042862-6aac-4405-aae7-33c7ba040ffc','<h4><strong>Asthma Australia</strong> </h4>\n<p>Connecting health professionals with the most current asthma management services, resources and opportunities.</p>','Visit the website',0,'solid','https://asthma.org.au/health-professionals/refer/'),(11690,153748,1,'2021-04-30 01:24:42','2021-04-30 02:02:11','78f45bd1-eb1c-49e0-9f6f-757c349285cd','<h4><strong>BreastScreen Queensland</strong></h4>\n<p>Information for health professionals and access to GP electronic recommendation forms.</p>','Visit the website',1,'solid','https://www.breastscreen.qld.gov.au/health-professionals.asp'),(11691,153749,1,'2021-04-30 01:24:42','2021-04-30 02:02:11','07fa9f8b-e5e1-45f7-90ef-0995384f47ee','<h4><strong>Child and Youth Community Health Service</strong> </h4>\n<p>Uniting a variety of specialist community-based healthcare services and health promotion programs to help young people.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/our-services/community-health-services/'),(11692,153750,1,'2021-04-30 01:24:42','2021-04-30 02:02:11','0742447b-f7cf-428e-a001-d7af8f23f7b4','<h4><strong>Hear and Say</strong></h4>\n<p>Experts with over 25 years’ experience in supporting children and young adults with their hearing, speaking and developmental needs.</p>','Visit the website',1,'solid','https://www.hearandsay.com.au/for-adults/health-professionals/'),(11693,153751,1,'2021-04-30 01:24:42','2021-04-30 02:02:11','d56673f2-08a8-4741-9257-35dfe90e213b','<h4><strong>Wesley Breast Clinic </strong></h4>\n<p>The Wesley Breast Clinic has a large team of highly experienced professionals specialising in breast imaging.</p>','Visit the website',1,'solid','http://wesley.com.au/services/clinical-services/breast-clinic/gp-referral'),(11694,153775,1,'2021-04-30 02:02:29','2021-04-30 02:02:29','baac2cbd-a176-42e8-abe1-7ee53d80999b','<p>Mental health, alcohol and other drugs and suicide prevention services to support your patient.</p>','My Mental Health Service Navigation',0,'solid',NULL),(11695,153776,1,'2021-04-30 02:02:29','2021-04-30 02:02:29','2c2ea107-6fbd-4457-b9e5-bdea9f0679bd','<p>Up-to-date evidence-based patient assessment, referral and services information. </p>','HealthPathways',0,'solid',NULL),(11696,153777,1,'2021-04-30 02:02:29','2021-04-30 02:02:29','d7d969f8-9024-49bb-bc5a-ea3fa7c8a220','<p>Enabling faster and more streamlined referrals management to Queensland public hospitals. </p>','GP Smart Referrals',0,'solid',NULL),(11697,153778,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','bda8f040-51fb-4696-9c4e-bf31e7f1e1f4','<p>A free, six-month health program, delivered in partnership with the Queensland Government. </p>','My health for life',0,'solid',NULL),(11698,153828,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','5668fa1d-6425-4777-a626-57487773b6b8','<h4><strong>Children\'s Health Queensland Hospital and Health Service</strong></h4>\n<p>More information about referral templates and guidelines for CHQ.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/health-professionals/'),(11699,153829,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','7f9866c9-e36c-4036-a8db-2f8eb0422a3a','<h4><strong>Asthma Australia</strong> </h4>\n<p>Connecting health professionals with the most current asthma management services, resources and opportunities.</p>','Visit the website',0,'solid','https://asthma.org.au/health-professionals/refer/'),(11700,153830,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','1773132c-4975-438b-88db-d7629d5109f4','<h4><strong>BreastScreen Queensland</strong></h4>\n<p>Information for health professionals and access to GP electronic recommendation forms.</p>','Visit the website',1,'solid','https://www.breastscreen.qld.gov.au/health-professionals.asp'),(11701,153831,1,'2021-04-30 02:02:30','2021-04-30 02:02:30','f2bcbd44-db25-45f9-8897-0179c7aa840e','<h4><strong>Child and Youth Community Health Service</strong> </h4>\n<p>Uniting a variety of specialist community-based healthcare services and health promotion programs to help young people.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/our-services/community-health-services/'),(11702,153832,1,'2021-04-30 02:02:31','2021-04-30 02:02:31','f25cc9cd-99f6-4431-b904-bfd5016545cf','<h4><strong>Hear and Say</strong></h4>\n<p>Experts with over 25 years’ experience in supporting children and young adults with their hearing, speaking and developmental needs.</p>','Visit the website',1,'solid','https://www.hearandsay.com.au/for-adults/health-professionals/'),(11703,153833,1,'2021-04-30 02:02:31','2021-04-30 02:02:31','3464bf9c-84ff-44d5-82ca-cd1a1c6614d8','<h4><strong>Wesley Breast Clinic </strong></h4>\n<p>The Wesley Breast Clinic has a large team of highly experienced professionals specialising in breast imaging.</p>','Visit the website',1,'solid','http://wesley.com.au/services/clinical-services/breast-clinic/gp-referral'),(11704,153840,1,'2021-04-30 02:02:32','2021-04-30 02:02:32','dbb5bfed-29b0-4666-8023-010a367f66f8','<p>Mental health, alcohol and other drugs and suicide prevention services to support your patient.</p>','My Mental Health Service Navigation',0,'solid',NULL),(11705,153841,1,'2021-04-30 02:02:32','2021-04-30 02:02:32','880a3227-2429-40c5-a89f-042669dd0509','<p>Up-to-date evidence-based patient assessment, referral and services information. </p>','HealthPathways',0,'solid',NULL),(11706,153842,1,'2021-04-30 02:02:32','2021-04-30 02:02:32','81fc89ce-ef1e-4f0f-8585-948ac2112fc1','<p>Enabling faster and more streamlined referrals management to Queensland public hospitals. </p>','GP Smart Referrals',0,'solid',NULL),(11707,153843,1,'2021-04-30 02:02:32','2021-04-30 02:02:32','a3a8840c-f1b9-4ad9-8ca4-189f000f4e4e','<p>A free, six-month health program, delivered in partnership with the Queensland Government. </p>','My health for life',0,'solid',NULL),(11708,153893,1,'2021-04-30 02:02:33','2021-04-30 02:02:33','9f8525df-e896-4a80-97d1-26184e35ccbd','<h4><strong>Children\'s Health Queensland Hospital and Health Service</strong></h4>\n<p>More information about referral templates and guidelines for CHQ.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/health-professionals/'),(11709,153894,1,'2021-04-30 02:02:33','2021-04-30 02:02:33','189872fe-c5d2-4f4f-b89c-c562bd1aa538','<h4><strong>Asthma Australia</strong> </h4>\n<p>Connecting health professionals with the most current asthma management services, resources and opportunities.</p>','Visit the website',0,'solid','https://asthma.org.au/health-professionals/refer/'),(11710,153895,1,'2021-04-30 02:02:33','2021-04-30 02:02:33','f142a217-6903-4daf-bd35-f674e594ad71','<h4><strong>BreastScreen Queensland</strong></h4>\n<p>Information for health professionals and access to GP electronic recommendation forms.</p>','Visit the website',1,'solid','https://www.breastscreen.qld.gov.au/health-professionals.asp'),(11711,153896,1,'2021-04-30 02:02:33','2021-04-30 02:02:33','7f1acfc9-a944-42d0-adc6-d2d9675d8dc0','<h4><strong>Child and Youth Community Health Service</strong> </h4>\n<p>Uniting a variety of specialist community-based healthcare services and health promotion programs to help young people.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/our-services/community-health-services/'),(11712,153897,1,'2021-04-30 02:02:33','2021-04-30 02:02:33','ca25d7e1-eed3-4ca7-b0e7-9c46848b2074','<h4><strong>Hear and Say</strong></h4>\n<p>Experts with over 25 years’ experience in supporting children and young adults with their hearing, speaking and developmental needs.</p>','Visit the website',1,'solid','https://www.hearandsay.com.au/for-adults/health-professionals/'),(11713,153898,1,'2021-04-30 02:02:33','2021-04-30 02:02:33','65828667-8030-4d39-b262-9a4c143354db','<h4><strong>Wesley Breast Clinic </strong></h4>\n<p>The Wesley Breast Clinic has a large team of highly experienced professionals specialising in breast imaging.</p>','Visit the website',1,'solid','http://wesley.com.au/services/clinical-services/breast-clinic/gp-referral'),(11714,153905,1,'2021-04-30 02:36:58','2021-04-30 02:36:58','ed5554c5-0ad3-4cb3-87de-250c8b1d1950','<p>Mental health, alcohol and other drugs and suicide prevention services to support your patient.</p>','My Mental Health Service Navigation',0,'solid',NULL),(11715,153906,1,'2021-04-30 02:36:58','2021-04-30 02:36:58','11a28d42-e213-4b46-8b7e-933ab8720198','<p>Up-to-date evidence-based patient assessment, referral and services information. </p>','HealthPathways',0,'solid',NULL),(11716,153907,1,'2021-04-30 02:36:58','2021-04-30 02:36:58','13349e96-67b5-4a08-86b4-8478e466ed60','<p>Enabling faster and more streamlined referrals management to Queensland public hospitals. </p>','GP Smart Referrals',0,'solid',NULL),(11717,153908,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','df12b33a-3db9-4c76-b22f-daa3e10491a4','<p>A free, six-month health program, delivered in partnership with the Queensland Government. </p>','My health for life',0,'solid',NULL),(11718,153958,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','4452e1e0-81a3-45de-8262-a70cbe658761','<h4><strong>Children\'s Health Queensland Hospital and Health Service</strong></h4>\n<p>More information about referral templates and guidelines for CHQ.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/health-professionals/'),(11719,153959,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','12b128d4-4387-4a22-a87d-5d0089a78a76','<h4><strong>Asthma Australia</strong> </h4>\n<p>Connecting health professionals with the most current asthma management services, resources and opportunities.</p>','Visit the website',0,'solid','https://asthma.org.au/health-professionals/refer/'),(11720,153960,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','e18032c6-0d26-44a4-b195-265aafd27d74','<h4><strong>BreastScreen Queensland</strong></h4>\n<p>Information for health professionals and access to GP electronic recommendation forms.</p>','Visit the website',1,'solid','https://www.breastscreen.qld.gov.au/health-professionals.asp'),(11721,153961,1,'2021-04-30 02:36:59','2021-04-30 02:36:59','c8840dc1-08b2-48f8-8372-97cd8502601e','<h4><strong>Child and Youth Community Health Service</strong> </h4>\n<p>Uniting a variety of specialist community-based healthcare services and health promotion programs to help young people.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/our-services/community-health-services/'),(11722,153962,1,'2021-04-30 02:37:00','2021-04-30 02:37:00','ecb07fc5-183d-4945-a933-6c520e92b299','<h4><strong>Hear and Say</strong></h4>\n<p>Experts with over 25 years’ experience in supporting children and young adults with their hearing, speaking and developmental needs.</p>','Visit the website',1,'solid','https://www.hearandsay.com.au/for-adults/health-professionals/'),(11723,153963,1,'2021-04-30 02:37:00','2021-04-30 02:37:00','0afdbd52-9cc7-48b9-a92b-218c89b93b78','<h4><strong>Wesley Breast Clinic </strong></h4>\n<p>The Wesley Breast Clinic has a large team of highly experienced professionals specialising in breast imaging.</p>','Visit the website',1,'solid','http://wesley.com.au/services/clinical-services/breast-clinic/gp-referral'),(11724,154180,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','b4aab272-5a29-478f-8e87-769d8eb8ef2b','<p>Mental health, alcohol and other drugs and suicide prevention services to support your patient.</p>','My Mental Health Service Navigation',0,'solid',NULL),(11725,154181,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','b57be298-9c2b-4a11-818a-a0466fd59767','<p>Up-to-date evidence-based patient assessment, referral and services information. </p>','HealthPathways',0,'solid',NULL),(11726,154182,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','fcb64cac-cc2c-49d8-84a2-3c5f8a0a42ee','<p>Enabling faster and more streamlined referrals management to Queensland public hospitals. </p>','GP Smart Referrals',0,'solid',NULL),(11727,154183,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','54d172dd-2987-495d-8eaa-d3c9d2714e25','<p>A free, six-month health program, delivered in partnership with the Queensland Government. </p>','My health for life',0,'solid',NULL),(11728,154233,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','967911d1-7c17-470d-893e-a38f064627e1','<h4><strong>Children\'s Health Queensland Hospital and Health Service</strong></h4>\n<p>More information about referral templates and guidelines for CHQ.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/health-professionals/'),(11729,154234,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','de1c6c45-d8c4-4733-b578-8b028f5fcf73','<h4><strong>Asthma Australia</strong> </h4>\n<p>Connecting health professionals with the most current asthma management services, resources and opportunities.</p>','Visit the website',0,'solid','https://asthma.org.au/health-professionals/refer/'),(11730,154235,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','16027ab9-dfb1-4cb1-9e93-4a24d6507b3d','<h4><strong>BreastScreen Queensland</strong></h4>\n<p>Information for health professionals and access to GP electronic recommendation forms.</p>','Visit the website',1,'solid','https://www.breastscreen.qld.gov.au/health-professionals.asp'),(11731,154236,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','ea542553-1b36-4771-b73b-5d7e9312ea7d','<h4><strong>Child and Youth Community Health Service</strong> </h4>\n<p>Uniting a variety of specialist community-based healthcare services and health promotion programs to help young people.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/our-services/community-health-services/'),(11732,154237,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','9c57260c-2421-4b97-ad96-2b0b676bb3df','<h4><strong>Hear and Say</strong></h4>\n<p>Experts with over 25 years’ experience in supporting children and young adults with their hearing, speaking and developmental needs.</p>','Visit the website',1,'solid','https://www.hearandsay.com.au/for-adults/health-professionals/'),(11733,154238,1,'2021-05-06 05:06:58','2021-05-06 05:06:58','c7cfcae6-d953-4429-b747-43f9604d0b3a','<h4><strong>Wesley Breast Clinic </strong></h4>\n<p>The Wesley Breast Clinic has a large team of highly experienced professionals specialising in breast imaging.</p>','Visit the website',1,'solid','http://wesley.com.au/services/clinical-services/breast-clinic/gp-referral'),(11734,154821,1,'2021-05-07 02:32:03','2021-05-07 02:32:03','0071bdbd-0faa-422d-9f83-34763a92c83a',NULL,NULL,0,'solid',NULL),(11735,154830,1,'2021-05-07 02:32:12','2021-05-07 02:32:12','4b039336-aeb3-4f73-b889-17d3d953e85f',NULL,NULL,0,'solid',NULL),(11736,154839,1,'2021-05-07 02:32:15','2021-05-07 02:32:15','18b5f4cd-e1fe-4944-92fc-d131c836093f','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n\n<p>(A/Medical lead surgical services &amp; Director of Surgery)</p>\n<p>MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11737,154848,1,'2021-05-07 02:32:19','2021-05-07 02:32:19','f05da307-6f05-46e5-a8fd-a84443e2ebbc','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n\n<p><strong>(A/Medical lead surgical services &amp; Director of Surgery)</strong></p>\n<p>MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11738,154857,1,'2021-05-07 02:32:21','2021-05-07 02:32:21','af0c3bc1-c13b-48df-ba4d-cbee18390331','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n\n<p><strong>A/Medical lead surgical services &amp; Director of Surgery)</strong></p>\n<p>MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11739,154866,1,'2021-05-07 02:32:22','2021-05-07 02:32:22','b27539d8-cd17-47cc-ba99-097edf40e07a','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n\n<p><strong>A/Medical lead surgical services &amp; Director of Surgery</strong></p>\n<p>MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11740,154875,1,'2021-05-07 02:32:24','2021-05-07 02:32:24','585ef49e-257d-4ede-84f6-ed29d9d0d826','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n\n<p><strong>A/Medical lead surgical services and Director of Surgery</strong></p>\n<p>MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11741,154884,1,'2021-05-07 02:32:32','2021-05-07 02:32:32','af1eeff4-aa64-4c6f-9c2c-f2f16faf64fa','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n\n<p><strong>A/Medical lead surgical services and Director of Surgery</strong></p>\n<p>MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11742,154893,1,'2021-05-07 02:32:42','2021-05-07 02:32:42','af8dab6e-fe7c-4583-9eb2-6d8dcc79a46a','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n\n<p><strong>A/Medical lead surgical services and Director of Surgery</strong></p>\n<p>MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11743,154902,1,'2021-05-07 02:32:58','2021-05-07 02:32:58','d5383cca-4221-40dd-9df1-c8b56f00b3f9','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n\n<p><strong>A/Medical lead surgical services and Director of Surgery</strong></p>\n<p>MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11744,154911,1,'2021-05-07 02:33:11','2021-05-07 02:33:11','647260b7-ac4e-484c-ae4c-3b36d0ddd15a','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n\n<p><strong>A/Medical lead surgical services and Director of Surgery</strong></p>\n<p>MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11745,154920,1,'2021-05-07 02:45:09','2021-05-07 02:45:09','efe61bd1-acb0-41fd-a956-eacdc62c78b2','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n\n<p><strong>A/Medical lead surgical services and Director of Surgery</strong></p>\n<p>MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11746,154930,1,'2021-05-07 02:45:25','2021-05-07 02:45:25','e6ea05f2-2079-4b12-bd87-e77e433974b0','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n\n<p><strong>A/Medical lead surgical services and Director of Surgery</strong></p>\n<p>MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11747,154939,1,'2021-05-07 02:45:39','2021-05-07 05:29:23','d45dc56a-b779-461d-8841-57c61fb7c785','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11748,154943,1,'2021-05-07 04:10:06','2021-05-07 04:10:06','4aefc6ae-33cf-457a-bab4-7ebb49598201',NULL,NULL,0,'solid',NULL),(11749,154944,1,'2021-05-07 04:10:12','2021-05-07 04:10:12','85c860b7-dfd1-403f-a851-6c9c02a61d0a','<ul><li><strong>Dr Sujith Ratnayake</strong></li></ul>\n<p>MBBS.MD, FRACS</p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11750,154945,1,'2021-05-07 04:10:24','2021-05-07 04:10:24','15861ea3-e20f-4f71-a35a-a4ed21d2b083','<p><strong>Dr Sujith Ratnayake</strong></p>\n<p>MBBS.MD, FRACS</p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11751,154946,1,'2021-05-07 04:10:29','2021-05-07 04:10:29','81282fa7-2989-426a-b6ea-c352d5cb7419','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p>MBBS.MD, FRACS</p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11752,154947,1,'2021-05-07 04:10:41','2021-05-07 04:10:41','81a5f5cf-fa67-4420-8263-5f5b798fd20d','<h5><strong>Dr Sujith Ratnayake<br /></strong>MBBS.MD, FRACS</h5>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11753,154948,1,'2021-05-07 04:10:58','2021-05-07 04:10:58','76b1501f-5f4d-4a48-a4d3-1e193adfdfba','<p><strong>Dr Sujith Ratnayake<br /></strong>MBBS.MD, FRACS</p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11754,154949,1,'2021-05-07 04:11:09','2021-05-07 04:11:09','abb22aed-f1b0-45b5-a7cd-3793e4d1d8a2','<h5><strong>Dr Sujith Ratnayake</strong></h5><h5>MBBS.MD, FRACS</h5>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11755,154950,1,'2021-05-07 04:11:12','2021-05-07 04:11:12','dc05e287-5f64-4105-b07f-9cb0b03c694a','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p>MBBS.MD, FRACS</p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11756,154951,1,'2021-05-07 04:32:44','2021-05-07 04:32:44','7a7beb17-3ad2-43dc-b0b3-ceca74a5cd27','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11757,154952,1,'2021-05-07 04:32:59','2021-05-07 04:32:59','b77d3d2b-5c65-41f0-9110-8e2405bb2803','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11758,154953,1,'2021-05-07 04:33:00','2021-05-07 04:33:00','c2691768-893d-44d5-8e05-1e9c29444096','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11759,154954,1,'2021-05-07 04:33:00','2021-05-07 04:33:00','c2a0fa30-8bc4-432d-b2cd-82e0f39d25fc',NULL,NULL,0,'solid',NULL),(11760,154955,1,'2021-05-07 04:33:17','2021-05-07 04:33:17','430f0da3-4e13-4e40-9f33-8f1d6df7e864','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11761,154956,1,'2021-05-07 04:33:17','2021-05-07 04:33:17','3347bba7-4149-4193-8ff9-9b7092940955','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p>MBBS.FRACS</p>\n<p><em>General, Breast, Endocrine and Oncoplastic.</em></p>',NULL,0,'solid',NULL),(11762,154957,1,'2021-05-07 04:33:22','2021-05-07 04:33:22','5ca79cd9-5e98-4a1d-9e97-5e0ab0ca4c01','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11763,154958,1,'2021-05-07 04:33:22','2021-05-07 04:33:22','b87bbaf9-ef4f-4030-b139-990b074a7ae0','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic.</em></p>',NULL,0,'solid',NULL),(11764,154959,1,'2021-05-07 04:35:04','2021-05-07 04:35:04','2067231b-bdd2-4d1d-8fe0-5e486c316844','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11765,154960,1,'2021-05-07 04:35:04','2021-05-07 04:35:04','bc376180-11de-4172-8be7-e80104725690','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic.</em></p>',NULL,0,'solid',NULL),(11766,154961,1,'2021-05-07 04:35:05','2021-05-07 04:35:05','a330be64-a2c2-4baf-a5e8-3233583fea27','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11767,154962,1,'2021-05-07 04:35:05','2021-05-07 04:35:05','f6d52aa6-a899-423b-adcc-8166a679c4f0','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic.</em></p>',NULL,0,'solid',NULL),(11768,154963,1,'2021-05-07 04:35:05','2021-05-07 04:35:05','0d55e439-3a8b-4740-974a-33132c6e0987',NULL,NULL,0,'solid',NULL),(11769,154964,1,'2021-05-07 04:35:15','2021-05-07 04:35:15','e6b90a45-6711-459e-a97c-935a21efb74e','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11770,154965,1,'2021-05-07 04:35:15','2021-05-07 04:35:15','5acc033a-a7fb-4b21-a0b3-a4883cedfe8d','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic.</em></p>',NULL,0,'solid',NULL),(11771,154966,1,'2021-05-07 04:35:15','2021-05-07 04:35:15','e50fad32-fd38-4129-b3a8-f9274ad86454','<p><strong>Dr Daniel Mehanna</strong></p>\n<p>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11772,154967,1,'2021-05-07 04:35:26','2021-05-07 04:35:26','d32777aa-a897-4af8-959e-b13fefb65d90','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11773,154968,1,'2021-05-07 04:35:26','2021-05-07 04:35:26','396e2d4b-abe0-4849-b5b4-0e82d82de0a6','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic.</em></p>',NULL,0,'solid',NULL),(11774,154969,1,'2021-05-07 04:35:26','2021-05-07 04:35:26','b0b28fef-7ca2-443a-950e-d5d511ddc9ea','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<ol><li>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</li></ol>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11775,154970,1,'2021-05-07 04:35:42','2021-05-07 04:35:42','17911fba-48a1-448b-9384-c80c395f77e5','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11776,154971,1,'2021-05-07 04:35:42','2021-05-07 04:35:42','69dbd8f0-e693-4f9c-aa74-ffa6a1c91934','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic.</em></p>',NULL,0,'solid',NULL),(11777,154972,1,'2021-05-07 04:35:43','2021-05-07 04:35:43','25a9afc5-629e-4c9a-8f9e-9b4b5a435c59','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11778,154973,1,'2021-05-07 04:35:53','2021-05-07 04:35:53','3c958e3f-43e7-4654-8e4f-df87dde1d58f','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11779,154974,1,'2021-05-07 04:35:53','2021-05-07 04:35:53','533e8a84-ebc7-4dc1-ad76-2c5d63fd7df6','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic.</em></p>',NULL,0,'solid',NULL),(11780,154975,1,'2021-05-07 04:35:53','2021-05-07 04:35:53','44135f6c-58cb-4839-935e-d344de92b91d','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11781,154976,1,'2021-05-07 04:35:56','2021-05-07 04:35:56','8ff37ca9-a885-4f0c-87ab-a2888f603e15','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11782,154977,1,'2021-05-07 04:35:56','2021-05-07 04:35:56','5e4e127c-00b4-4c2f-bf81-877be5637472','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic.</em></p>',NULL,0,'solid',NULL),(11783,154978,1,'2021-05-07 04:35:56','2021-05-07 04:35:56','f4f513d2-1774-40e1-97c8-ea89a6790feb','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11784,154979,1,'2021-05-07 04:35:56','2021-05-07 04:35:56','40bef4fd-b385-4992-9b79-1695dcae6c60',NULL,NULL,0,'solid',NULL),(11785,154980,1,'2021-05-07 04:36:10','2021-05-07 04:36:10','363c7cd6-71af-4d04-8b49-27bc4845e012','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11786,154981,1,'2021-05-07 04:36:10','2021-05-07 04:36:10','e4a84070-f49d-4ec1-a808-c68bca3c0547','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic.</em></p>',NULL,0,'solid',NULL),(11787,154982,1,'2021-05-07 04:36:10','2021-05-07 04:36:10','110a758d-3528-4b87-9f4c-8b7f609fd3b5','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11788,154983,1,'2021-05-07 04:36:10','2021-05-07 04:36:10','4394f72e-bc58-4b52-9a76-14094dcecd05','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p>MD, FRACS</p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11789,154984,1,'2021-05-07 04:36:20','2021-05-07 04:36:20','9c222128-a472-49bd-b249-5d18a9cb7dd4','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11790,154985,1,'2021-05-07 04:36:20','2021-05-07 04:36:20','21a34324-68d6-406f-9769-c2506918bbf2','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic.</em></p>',NULL,0,'solid',NULL),(11791,154986,1,'2021-05-07 04:36:20','2021-05-07 04:36:20','cc5bf8be-36bb-4ffc-988b-8dc933dc8c41','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy.</em></p>',NULL,0,'solid',NULL),(11792,154987,1,'2021-05-07 04:36:20','2021-05-07 04:36:20','d73ccd65-1d05-4b72-ae21-052247fd436d','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11793,154988,1,'2021-05-07 04:36:34','2021-05-07 04:36:34','0f9a6360-c78c-4b21-aa8d-83d20f5683e0','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11794,154989,1,'2021-05-07 04:36:34','2021-05-07 04:36:34','e5b284d1-b0a4-418e-a4b8-6daf85a8c47f','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11795,154990,1,'2021-05-07 04:36:34','2021-05-07 04:36:34','d5b9d69b-e516-44e1-ab62-aaa95a5ce668','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11796,154991,1,'2021-05-07 04:36:34','2021-05-07 04:36:34','ab1d8407-db1f-46b9-a373-756008a2ae03','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11797,154992,1,'2021-05-07 04:37:07','2021-05-07 04:37:07','a6433abe-ce88-4c18-ab29-fe8059e4f94f','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11798,154993,1,'2021-05-07 04:37:07','2021-05-07 04:37:07','6a7142d6-d331-4ba0-9481-b71beba43e2e','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11799,154994,1,'2021-05-07 04:37:07','2021-05-07 04:37:07','8e9344d9-046a-4f33-87a1-b42eb6afc17a','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11800,154995,1,'2021-05-07 04:37:07','2021-05-07 04:37:07','e70ec5db-0de7-4f72-8fc3-3a9c33c4d306','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11801,154996,1,'2021-05-07 04:37:11','2021-05-07 04:37:11','38017401-3d93-4978-bd8e-3e9fd551e0fa','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11802,154997,1,'2021-05-07 04:37:11','2021-05-07 04:37:11','c418750a-d346-4410-aaf3-4c62dcc52163','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11803,154998,1,'2021-05-07 04:37:11','2021-05-07 04:37:11','1ad83bec-4f48-48d5-9118-06bf2d0986ed','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11804,154999,1,'2021-05-07 04:37:11','2021-05-07 04:37:11','429c5e09-0b03-42fd-94d9-74eb2968cc9b','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11805,155000,1,'2021-05-07 04:37:11','2021-05-07 04:37:11','ca1b2f3e-3f92-4e4f-9dc0-c6a173a71739',NULL,NULL,0,'solid',NULL),(11806,155001,1,'2021-05-07 04:37:37','2021-05-07 04:37:37','3399b998-efa7-4122-9e23-edfbc4b16be9','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11807,155002,1,'2021-05-07 04:37:37','2021-05-07 04:37:37','bcedb663-0447-44dd-8b7f-9beab8b1c783','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11808,155003,1,'2021-05-07 04:37:37','2021-05-07 04:37:37','c90d252b-8a1b-43a4-b6cb-1e57cff4dd5f','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11809,155004,1,'2021-05-07 04:37:37','2021-05-07 04:37:37','0d8c29e9-8cdf-481a-837b-a2f1dc5db36e','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11810,155005,1,'2021-05-07 04:37:37','2021-05-07 04:37:37','ce453a45-8cb6-4111-8483-19ecd05efef1','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11811,155006,1,'2021-05-07 04:41:48','2021-05-07 04:41:48','7aa59dad-a1ba-459d-898f-9638f2bb8263','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11812,155007,1,'2021-05-07 04:41:48','2021-05-07 04:41:48','150649bf-c713-4f09-bd14-0c5eaaabf1c5','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11813,155008,1,'2021-05-07 04:41:48','2021-05-07 04:41:48','6b3e7268-854b-4314-b924-d84f9b368bee','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11814,155009,1,'2021-05-07 04:41:48','2021-05-07 04:41:48','72a4d500-e047-47bb-b19b-7c156f30df4a','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11815,155010,1,'2021-05-07 04:41:48','2021-05-07 04:41:48','f8260759-3adb-4cc2-bf22-01a0eaf4a481','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11816,155011,1,'2021-05-07 04:42:29','2021-05-07 04:42:29','b6572aaf-18d2-4f9f-a624-e92a2d3b723f','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11817,155012,1,'2021-05-07 04:42:29','2021-05-07 04:42:29','cd356e68-05e9-457f-b7cd-3720efdee9bb','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11818,155013,1,'2021-05-07 04:42:29','2021-05-07 04:42:29','28c1b425-1aa4-4c3d-9873-3642935556ce','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11819,155014,1,'2021-05-07 04:42:29','2021-05-07 04:42:29','d2e5808b-4347-41d2-8f34-22cc7b3a20d6','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11820,155015,1,'2021-05-07 04:42:29','2021-05-07 04:42:29','e60011c1-f705-419e-8419-91ec17d3466f','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11821,155017,1,'2021-05-07 04:44:11','2021-05-07 04:44:11','39067f40-b90f-434c-82ff-6e81a97da46d','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11822,155018,1,'2021-05-07 04:44:11','2021-05-07 04:44:11','bb00af1d-6cc2-4ea8-bfb5-dc487692b39e','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11823,155019,1,'2021-05-07 04:44:11','2021-05-07 04:44:11','6be04c36-0a74-40c7-816a-23e6f4770f19','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11824,155020,1,'2021-05-07 04:44:11','2021-05-07 04:44:11','bc4542b0-3d0f-4eb5-b9a6-a6ad81d0dfb3','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11825,155021,1,'2021-05-07 04:44:11','2021-05-07 04:44:11','94761c3c-1931-4a3a-9aef-947454ffcf54','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11826,155023,1,'2021-05-07 04:53:51','2021-05-07 04:53:51','88a80297-c867-4622-855b-bb498d442472','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11827,155024,1,'2021-05-07 04:53:52','2021-05-07 04:53:52','aba3a4fd-79e5-41af-9ed2-d9f0d114bc3b','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11828,155025,1,'2021-05-07 04:53:52','2021-05-07 04:53:52','bf4d40a9-8c6b-4b84-a73c-10ab210cbb91','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11829,155026,1,'2021-05-07 04:53:52','2021-05-07 04:53:52','76ca2531-0bd9-42a0-a98f-577ead031ac2','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11830,155027,1,'2021-05-07 04:53:52','2021-05-07 04:53:52','ee94f8b4-9e8b-4023-9ff4-f1f37079eab2','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11831,155028,1,'2021-05-07 04:53:59','2021-05-07 04:53:59','2bcb2d37-eed7-46bf-9208-72f457f06268','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11832,155029,1,'2021-05-07 04:53:59','2021-05-07 04:53:59','2c8a61a0-774c-446d-b9e0-556484b5885a','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11833,155030,1,'2021-05-07 04:53:59','2021-05-07 04:53:59','8662b7ec-8aa4-4881-a4b1-d7521e167acf','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11834,155031,1,'2021-05-07 04:53:59','2021-05-07 04:53:59','0c024a1c-555d-4435-9783-820988297fa3','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11835,155032,1,'2021-05-07 04:53:59','2021-05-07 04:53:59','e0d621b7-76c9-4af8-9af4-4dd0dbb6e988','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11836,155034,1,'2021-05-07 04:54:35','2021-05-07 04:54:35','43684560-71fa-44c4-bcc9-09ad12b2e417','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11837,155035,1,'2021-05-07 04:54:35','2021-05-07 04:54:35','7fa13530-bb3d-436a-873d-edce06cc414b','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11838,155036,1,'2021-05-07 04:54:35','2021-05-07 04:54:35','abb8fcce-1a5f-404b-bc74-8babcf555b83','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11839,155037,1,'2021-05-07 04:54:35','2021-05-07 04:54:35','e0b09574-a892-421a-aa86-9bbae999f2d9','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11840,155038,1,'2021-05-07 04:54:35','2021-05-07 04:54:35','de79eb94-8873-43ef-9d6f-f8d89baa64cd','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11841,155040,1,'2021-05-07 04:55:17','2021-05-07 04:55:17','bba77e7a-1eb7-4552-8e51-2c70d7a82e98','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11842,155041,1,'2021-05-07 04:55:17','2021-05-07 04:55:17','4a830dff-5932-4717-a419-1e66f75b77ed','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11843,155042,1,'2021-05-07 04:55:17','2021-05-07 04:55:17','33de6ef0-b24c-4249-b430-e098b9ca56f0','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11844,155043,1,'2021-05-07 04:55:17','2021-05-07 04:55:17','2d7a914f-9b0a-4caf-9cfc-6179d9e3e62e','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11845,155044,1,'2021-05-07 04:55:17','2021-05-07 04:55:17','b0334890-9039-457a-887f-f96c20751d29','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11846,155046,1,'2021-05-07 04:56:23','2021-05-07 04:56:23','152122e2-ff22-4269-803b-faae39091e6c','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11847,155047,1,'2021-05-07 04:56:23','2021-05-07 04:56:23','0343e383-3228-4d0b-a8ca-cb5f12cca18b','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11848,155048,1,'2021-05-07 04:56:23','2021-05-07 04:56:23','b28d63bb-35e7-4cc7-8615-637b2086161c','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11849,155049,1,'2021-05-07 04:56:23','2021-05-07 04:56:23','789a75c9-4bc4-476e-b818-4a3894813c4d','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11850,155050,1,'2021-05-07 04:56:23','2021-05-07 04:56:23','be06b29b-c208-4750-a684-1daa9196dc5d','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11851,155052,1,'2021-05-07 04:57:25','2021-05-07 04:57:25','10fe9fef-6078-44b1-953f-edf57259cf9c','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11852,155053,1,'2021-05-07 04:57:25','2021-05-07 04:57:25','8682c106-5ea1-4248-9b08-101c6411f34c','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11853,155054,1,'2021-05-07 04:57:25','2021-05-07 04:57:25','5abccbe3-124c-4818-8263-041dabced804','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11854,155055,1,'2021-05-07 04:57:25','2021-05-07 04:57:25','de40b606-b777-4fbe-832e-f9defc20f77a','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11855,155056,1,'2021-05-07 04:57:25','2021-05-07 04:57:25','1207e962-04f5-473c-b9c2-439456bd4540','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11856,155057,1,'2021-05-07 04:57:57','2021-05-07 04:57:57','ff0894a6-26f2-4ac7-90ae-32693267ca2d','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11857,155058,1,'2021-05-07 04:57:57','2021-05-07 04:57:57','1f1780ea-1184-4171-90ca-a08b5b18a311','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11858,155059,1,'2021-05-07 04:57:57','2021-05-07 04:57:57','086c9303-2fd1-4ded-b4b1-bf81bd8d6446','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11859,155060,1,'2021-05-07 04:57:57','2021-05-07 04:57:57','75c82c85-fa31-464b-9361-6af147d8521c','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11860,155061,1,'2021-05-07 04:57:57','2021-05-07 04:57:57','6a70eec8-2ccd-4eaa-8fa7-40e3f29f5cd1','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11861,155063,1,'2021-05-07 04:58:05','2021-05-07 04:58:05','b0320a67-1b25-4ca8-9b34-4e582dc0fab2','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11862,155064,1,'2021-05-07 04:58:05','2021-05-07 04:58:05','911bd84b-0d1c-4711-bfac-d47671431c36','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11863,155065,1,'2021-05-07 04:58:05','2021-05-07 04:58:05','73f88407-c47e-42f4-9747-a595af34fe93','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11864,155066,1,'2021-05-07 04:58:05','2021-05-07 04:58:05','022f86cc-6174-488f-ac6f-b6324bb48ae0','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11865,155067,1,'2021-05-07 04:58:05','2021-05-07 04:58:05','ba8b5410-6896-4609-bee0-bf5c0bb63b1d','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11866,155070,1,'2021-05-07 04:58:08','2021-05-07 04:58:08','35c34fd7-ebfc-40d3-b081-3c8a100d60be','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11867,155071,1,'2021-05-07 04:58:08','2021-05-07 04:58:08','5bc73fc9-2215-46ab-82cb-7c25cfc0741e','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11868,155072,1,'2021-05-07 04:58:08','2021-05-07 04:58:08','156d5b33-6c03-4b67-afa5-ea04b5abf147','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11869,155073,1,'2021-05-07 04:58:08','2021-05-07 04:58:08','3cf6ad63-b88e-44d2-af3d-a47158aba6d2','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11870,155074,1,'2021-05-07 04:58:08','2021-05-07 04:58:08','c252f5c3-d4a7-46df-96ef-f7f783d2c32f','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11871,155077,1,'2021-05-07 04:58:10','2021-05-07 04:58:10','692aef76-baa4-43b4-8fba-8bf1d32add99','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11872,155078,1,'2021-05-07 04:58:10','2021-05-07 04:58:10','0ee02bed-7183-41a6-8d82-fc93741eb916','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11873,155079,1,'2021-05-07 04:58:10','2021-05-07 04:58:10','fd518516-6264-481d-8d42-02695fc4df4d','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11874,155080,1,'2021-05-07 04:58:10','2021-05-07 04:58:10','12f31b37-057b-4e0a-b288-4e2fae4a37e1','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11875,155081,1,'2021-05-07 04:58:10','2021-05-07 04:58:10','6f013fac-8378-42bc-8462-a8d9371d52f7','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11876,155084,1,'2021-05-07 04:59:04','2021-05-07 04:59:04','87ab0ba7-2526-4446-8671-64cd8c3ea49d','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11877,155085,1,'2021-05-07 04:59:04','2021-05-07 04:59:04','e45a5491-34e1-4bf5-98fd-08eee195f790','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11878,155086,1,'2021-05-07 04:59:04','2021-05-07 04:59:04','271ddbc0-79e9-437c-a9f8-fd9edc3f93d2','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11879,155087,1,'2021-05-07 04:59:04','2021-05-07 04:59:04','f067be98-27d8-4851-8ec2-c29ce4eb639c','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11880,155088,1,'2021-05-07 04:59:04','2021-05-07 04:59:04','5425007b-035a-4e7b-ae5d-92529e63941f','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11881,155091,1,'2021-05-07 04:59:05','2021-05-07 04:59:05','43af0411-7410-4ef0-99cb-75c8f80b446b','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11882,155092,1,'2021-05-07 04:59:05','2021-05-07 04:59:05','e2f44ea9-cf36-48d3-b929-3d4846854beb','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11883,155093,1,'2021-05-07 04:59:05','2021-05-07 04:59:05','ecf451ff-d40c-4a27-8ef2-44a7b66b9376','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11884,155094,1,'2021-05-07 04:59:05','2021-05-07 04:59:05','4b9327f3-43bb-41fb-a402-664f10e87d3c','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11885,155095,1,'2021-05-07 04:59:05','2021-05-07 04:59:05','5e0eea58-aca8-427b-8058-2cf974d2ab38','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11886,155099,1,'2021-05-07 04:59:07','2021-05-07 04:59:07','3a40605e-eccc-4802-a4c7-f37c2f097973','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11887,155100,1,'2021-05-07 04:59:07','2021-05-07 04:59:07','449774fb-9428-4bac-bc3a-1499134f3f69','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11888,155101,1,'2021-05-07 04:59:07','2021-05-07 04:59:07','72fe31ce-961f-4892-8680-ed80244cb5a3','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11889,155102,1,'2021-05-07 04:59:07','2021-05-07 04:59:07','53472438-29be-4520-951c-cfb971cb48be','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11890,155103,1,'2021-05-07 04:59:07','2021-05-07 04:59:07','4ab9def4-ec1e-41a7-b963-33f3a3a0ce53','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11891,155107,1,'2021-05-07 04:59:32','2021-05-07 04:59:32','980d16b8-cf29-4cfe-bf90-bc70ed58d36c','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11892,155108,1,'2021-05-07 04:59:32','2021-05-07 04:59:32','3be578c5-8bf3-482a-a28e-cafcc1f9bef3','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11893,155109,1,'2021-05-07 04:59:32','2021-05-07 04:59:32','cfaf5016-ba46-4634-aa87-0367d5f970d7','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11894,155110,1,'2021-05-07 04:59:32','2021-05-07 04:59:32','610e452d-0498-47fb-8314-04d00c8d541a','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11895,155111,1,'2021-05-07 04:59:32','2021-05-07 04:59:32','5f0d6b14-6e7a-48f5-bca9-3668d4066738','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11896,155115,1,'2021-05-07 04:59:33','2021-05-07 04:59:33','81d58c65-ac43-48e5-8c10-08838d3aa6d8','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11897,155116,1,'2021-05-07 04:59:33','2021-05-07 04:59:33','603fb260-4f6a-4f90-8053-7c6f1c184070','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11898,155117,1,'2021-05-07 04:59:33','2021-05-07 04:59:33','b93e5b9a-5f8a-413b-8a01-8053c6facad2','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11899,155118,1,'2021-05-07 04:59:33','2021-05-07 04:59:33','90341100-d396-434b-8592-99bcca07ed52','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11900,155119,1,'2021-05-07 04:59:33','2021-05-07 04:59:33','aa056b7a-8ae9-4921-9f40-40e85f97937a','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11901,155123,1,'2021-05-07 04:59:57','2021-05-07 04:59:57','34f2d188-0b4b-4183-84af-325cd4c67f93','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11902,155124,1,'2021-05-07 04:59:57','2021-05-07 04:59:57','d3c21830-e77f-4d20-bc93-76a803e33a67','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11903,155125,1,'2021-05-07 04:59:57','2021-05-07 04:59:57','3a75e11d-510c-409b-ac22-66714947985b','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11904,155126,1,'2021-05-07 04:59:57','2021-05-07 04:59:57','5903aa1d-c213-4bbf-bac8-8e174ec7f5b2','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11905,155127,1,'2021-05-07 04:59:57','2021-05-07 04:59:57','09988a86-480c-4a08-9702-6a8a34e5fd74','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11906,155131,1,'2021-05-07 05:00:30','2021-05-07 05:00:30','a6aae8e7-a2e0-43f6-aa0f-b7865914f691','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11907,155132,1,'2021-05-07 05:00:30','2021-05-07 05:00:30','b2dfbdbf-6dbf-432f-9d87-7d23aabd8b01','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11908,155133,1,'2021-05-07 05:00:30','2021-05-07 05:00:30','2d1e5abe-8226-450e-8cf9-9105efe69d4e','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11909,155134,1,'2021-05-07 05:00:30','2021-05-07 05:00:30','bf7ebec6-b5bf-4612-97bb-14cbf6a97712','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11910,155135,1,'2021-05-07 05:00:30','2021-05-07 05:00:30','bd90e6ba-67ea-4a06-825a-16758d2bb261','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11911,155139,1,'2021-05-07 05:06:29','2021-05-07 05:06:29','2f37a209-2618-4de1-a61c-b1f8562606b7','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11912,155140,1,'2021-05-07 05:06:29','2021-05-07 05:06:29','531c479f-d7f1-4eab-b7ce-2bebd8286e9d','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11913,155141,1,'2021-05-07 05:06:29','2021-05-07 05:06:29','848e9730-4c43-44a3-a195-ad861da179e2','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11914,155142,1,'2021-05-07 05:06:29','2021-05-07 05:06:29','03b52913-0dcc-4c52-9af6-b0e316bd22fe','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11915,155143,1,'2021-05-07 05:06:29','2021-05-07 05:06:29','7a5ba79f-9da1-4be4-aee5-30801701c014','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11916,155147,1,'2021-05-07 05:06:54','2021-05-07 05:06:54','3bfeea5b-9cee-43d5-9ac6-719c1fc60027','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11917,155148,1,'2021-05-07 05:06:54','2021-05-07 05:06:54','b7639ab4-f888-4850-8379-b33d9dc39f72','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11918,155149,1,'2021-05-07 05:06:54','2021-05-07 05:06:54','6b938e61-ecca-4a75-b24e-0c0d39eef18d','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11919,155150,1,'2021-05-07 05:06:54','2021-05-07 05:06:54','f9bf35ed-ec45-452a-80b1-15e44304ea9f','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11920,155151,1,'2021-05-07 05:06:54','2021-05-07 05:06:54','4a5d6966-7f5a-4d1a-b81b-4dc56ca4e989','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11921,155156,1,'2021-05-07 05:06:56','2021-05-07 05:06:56','7faa67fd-0704-4f2b-a1a8-4d9d50862c53','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11922,155157,1,'2021-05-07 05:06:56','2021-05-07 05:06:56','cf915d45-96c3-4f5f-b741-38a022f98fad','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11923,155158,1,'2021-05-07 05:06:56','2021-05-07 05:06:56','45f77d01-4cb8-45a6-a8ce-1a482889c2e0','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11924,155159,1,'2021-05-07 05:06:56','2021-05-07 05:06:56','6a36b6d8-5dff-499b-9a9d-de2272c202c3','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11925,155160,1,'2021-05-07 05:06:56','2021-05-07 05:06:56','47599b49-953c-4ae5-845c-4b75ca1bb024','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11926,155165,1,'2021-05-07 05:07:22','2021-05-07 05:07:22','0e00ef23-391a-4cf1-9fcb-6bb710465175','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11927,155166,1,'2021-05-07 05:07:22','2021-05-07 05:07:22','ff1f047a-5f27-4a38-8d81-ea894bc43603','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11928,155167,1,'2021-05-07 05:07:22','2021-05-07 05:07:22','98f49dd8-d8c9-4463-b057-add9b6693638','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11929,155168,1,'2021-05-07 05:07:22','2021-05-07 05:07:22','2e7956e6-4bdf-4bb9-bfe4-e418ed9c40a5','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11930,155169,1,'2021-05-07 05:07:22','2021-05-07 05:07:22','57fec4af-7604-49fd-a346-3a4f5a22d538','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11931,155174,1,'2021-05-07 05:08:04','2021-05-07 05:08:04','6b9e5828-c33f-497e-88ff-228b343ac133','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11932,155175,1,'2021-05-07 05:08:04','2021-05-07 05:08:04','f81ec3b1-704e-428b-99c3-1e12e2e57631','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11933,155176,1,'2021-05-07 05:08:04','2021-05-07 05:08:04','c2eccedc-4f78-4897-94c9-e1e0c83534c8','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11934,155177,1,'2021-05-07 05:08:04','2021-05-07 05:08:04','6e3334ff-2a32-4cdb-a698-b48d6eb9e8ff','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11935,155178,1,'2021-05-07 05:08:04','2021-05-07 05:08:04','2485d203-f33e-457a-b1a8-825e91d11a78','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11936,155183,1,'2021-05-07 05:08:33','2021-05-07 05:08:33','f7622249-bad1-4f75-ae7b-77b4c2ee8fed','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11937,155184,1,'2021-05-07 05:08:33','2021-05-07 05:08:33','dd1e536d-668a-4ce4-a553-fb9b798ea20c','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11938,155185,1,'2021-05-07 05:08:33','2021-05-07 05:08:33','320b2464-6821-4161-bc33-aee802b0bbc0','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11939,155186,1,'2021-05-07 05:08:33','2021-05-07 05:08:33','0f13d378-736a-4b49-860b-e3c683b8320b','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11940,155187,1,'2021-05-07 05:08:33','2021-05-07 05:08:33','4783859c-e481-42d3-9ab6-de41efd544c5','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11941,155192,1,'2021-05-07 05:08:38','2021-05-07 05:08:38','bd96395b-682a-459a-91fe-33c99e2da3d5','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11942,155193,1,'2021-05-07 05:08:38','2021-05-07 05:08:38','0bb97ad8-7e6c-4ed7-a49d-4852c7f0f27f','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11943,155194,1,'2021-05-07 05:08:38','2021-05-07 05:08:38','d620e7e3-1e77-47c1-b9ab-6300962da6b4','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11944,155195,1,'2021-05-07 05:08:38','2021-05-07 05:08:38','90e23d76-aca2-4f97-8ee6-6f0861757871','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11945,155196,1,'2021-05-07 05:08:38','2021-05-07 05:08:38','3f4ae22d-fa18-45e5-9e32-a67fc823607d','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11946,155201,1,'2021-05-07 05:08:42','2021-05-07 05:08:42','5d201f23-c8ab-4767-8d8b-1aafdd02217b','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11947,155202,1,'2021-05-07 05:08:42','2021-05-07 05:08:42','a27a8e20-549a-46a0-a67f-7d23cd86fd45','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11948,155203,1,'2021-05-07 05:08:42','2021-05-07 05:08:42','e6e7adb4-fe89-446d-9492-9873e048b6ca','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11949,155204,1,'2021-05-07 05:08:42','2021-05-07 05:08:42','0a0de90b-2f09-4b67-8ff8-9b0309ee1df9','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11950,155205,1,'2021-05-07 05:08:42','2021-05-07 05:08:42','acc9fa28-37c9-461f-924e-eeb34e180911','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11951,155210,1,'2021-05-07 05:08:45','2021-05-07 05:08:45','90638e6d-724f-4c67-9256-ce52416a6dfd','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11952,155211,1,'2021-05-07 05:08:45','2021-05-07 05:08:45','dacbc9d9-d0e9-4c6c-a162-c205627fbe71','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11953,155212,1,'2021-05-07 05:08:45','2021-05-07 05:08:45','6e7cc3a1-51aa-4d45-95ec-8e25a8b448ea','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11954,155213,1,'2021-05-07 05:08:45','2021-05-07 05:08:45','4c3648c1-4e29-496d-b23f-5d4b4018ac23','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11955,155214,1,'2021-05-07 05:08:45','2021-05-07 05:08:45','52d1ac69-3908-4b90-9e81-8c23b1295fb2','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11956,155219,1,'2021-05-07 05:08:58','2021-05-07 05:08:58','695369f4-70ce-4c46-905c-ab8cdee88165','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11957,155220,1,'2021-05-07 05:08:58','2021-05-07 05:08:58','0bbaf28c-cffb-465a-af59-80b025c4df75','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11958,155221,1,'2021-05-07 05:08:58','2021-05-07 05:08:58','21b8f72d-3c04-487d-aa04-c194417f664b','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11959,155222,1,'2021-05-07 05:08:58','2021-05-07 05:08:58','bebf3170-395d-4e6b-9a17-43f574d7cb59','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11960,155223,1,'2021-05-07 05:08:58','2021-05-07 05:08:58','d33dfef6-6a9e-4a48-ab1d-6f314e6c3402','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11961,155228,1,'2021-05-07 05:09:02','2021-05-07 05:09:02','70ce593d-d483-4d70-abe1-5b1600c25cff','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11962,155229,1,'2021-05-07 05:09:02','2021-05-07 05:09:02','bc344126-1255-48df-855e-f8061f21a249','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11963,155230,1,'2021-05-07 05:09:02','2021-05-07 05:09:02','8c36816d-c599-4278-966d-0010579a86f1','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11964,155231,1,'2021-05-07 05:09:02','2021-05-07 05:09:02','8ab2a6f7-a53f-464b-a28c-b25ff5255aa8','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11965,155232,1,'2021-05-07 05:09:02','2021-05-07 05:09:02','0fc6657d-24d2-49a5-ba58-3572cd40f5b7','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11966,155237,1,'2021-05-07 05:09:04','2021-05-07 05:09:04','b94fa48d-9e0d-4300-bb49-fc0daf28cf69','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11967,155238,1,'2021-05-07 05:09:04','2021-05-07 05:09:04','a43de7e4-0cd1-4d5a-afa5-7c4865b95267','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11968,155239,1,'2021-05-07 05:09:04','2021-05-07 05:09:04','c46ff6a8-7d19-4536-96a5-3cf560019f4c','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11969,155240,1,'2021-05-07 05:09:04','2021-05-07 05:09:04','afcd118e-52f5-42b3-a6f0-4fe9b70481ea','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11970,155241,1,'2021-05-07 05:09:04','2021-05-07 05:09:04','7ef3dd1b-ce37-457a-a9d1-6a3db72d640a','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11971,155246,1,'2021-05-07 05:09:06','2021-05-07 05:09:06','0662fdbf-21df-4448-b180-513a5125e982','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11972,155247,1,'2021-05-07 05:09:06','2021-05-07 05:09:06','1b5cc693-7d51-4a74-afa1-4a4756962a18','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11973,155248,1,'2021-05-07 05:09:06','2021-05-07 05:09:06','9b25b422-ca70-47c9-af45-a25b643526de','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11974,155249,1,'2021-05-07 05:09:06','2021-05-07 05:09:06','b0fdc8cf-338d-4b4a-a3a1-5de362b3cb23','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11975,155250,1,'2021-05-07 05:09:06','2021-05-07 05:09:06','709126b9-378b-4fda-b914-21a3b2b86b59','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11976,155255,1,'2021-05-07 05:09:14','2021-05-07 05:09:14','317c1c6d-7984-4136-8045-6bc82a68b447','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11977,155256,1,'2021-05-07 05:09:14','2021-05-07 05:09:14','d88e10c1-06a6-47a0-b444-a543b2251ad6','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11978,155257,1,'2021-05-07 05:09:14','2021-05-07 05:09:14','f420a01e-e64d-4796-a846-3b1be598e150','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11979,155258,1,'2021-05-07 05:09:14','2021-05-07 05:09:14','4a9b27c9-1377-44a7-a287-6d5881e10fa4','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11980,155259,1,'2021-05-07 05:09:14','2021-05-07 05:09:14','bb52c315-0b74-437b-a5b4-85cb6fe0a10d','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11981,155264,1,'2021-05-07 05:09:40','2021-05-07 05:09:40','f966e6b1-6183-4f5c-bd9e-b60914f3579c','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11982,155265,1,'2021-05-07 05:09:40','2021-05-07 05:09:40','5a5c20fb-11df-4487-818e-50ac40d0a844','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11983,155266,1,'2021-05-07 05:09:40','2021-05-07 05:09:40','319cb2c7-b015-4317-8bd4-ce5b47916c9c','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11984,155267,1,'2021-05-07 05:09:40','2021-05-07 05:09:40','b4ba10fc-cd7f-4061-8833-3a99ab3c1d45','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11985,155268,1,'2021-05-07 05:09:40','2021-05-07 05:09:40','8b0cccf4-0357-4023-9b6e-c80fb0c8bc06','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11986,155273,1,'2021-05-07 05:09:41','2021-05-07 05:09:41','8c586119-70be-4a7d-8d92-350e76c4be8c','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11987,155274,1,'2021-05-07 05:09:41','2021-05-07 05:09:41','f5db82df-678a-46f3-94e3-57635b9fa967','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11988,155275,1,'2021-05-07 05:09:41','2021-05-07 05:09:41','f2fcabf8-0058-4bd9-a992-d814482c9d31','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11989,155276,1,'2021-05-07 05:09:41','2021-05-07 05:09:41','8f3b957a-ae66-41ab-acf9-a731e6310c0f','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11990,155277,1,'2021-05-07 05:09:41','2021-05-07 05:09:41','be41edc6-d206-478f-9b03-4f6f276ebbe9','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11991,155282,1,'2021-05-07 05:09:43','2021-05-07 05:09:43','0b4db40f-ac13-4cf0-a68e-a6d4bc171e9c','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11992,155283,1,'2021-05-07 05:09:43','2021-05-07 05:09:43','d3ccb822-3518-4859-94f2-9a8a0616397b','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11993,155284,1,'2021-05-07 05:09:43','2021-05-07 05:09:43','e91a4be8-6cc5-43bb-86d4-6a33afa5b984','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11994,155285,1,'2021-05-07 05:09:43','2021-05-07 05:09:43','37f68d96-5dcc-44ee-9c5f-3e57ef791f0f','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11995,155286,1,'2021-05-07 05:09:43','2021-05-07 05:09:43','7ee8f121-753d-40d6-ae9c-66cc6ab2e8ca','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(11996,155293,1,'2021-05-07 05:11:28','2021-05-07 05:11:28','1d32f54e-d553-4edd-921d-e85d17e7366d','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11997,155294,1,'2021-05-07 05:11:28','2021-05-07 05:11:28','f1db2d20-509f-4498-a890-1eebab57dc62','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(11998,155295,1,'2021-05-07 05:11:28','2021-05-07 05:11:28','113f1700-2f62-48f6-8cdb-49afef91f258','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(11999,155296,1,'2021-05-07 05:11:28','2021-05-07 05:11:28','05c46f4e-2048-4596-badb-c948c4b44965','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12000,155297,1,'2021-05-07 05:11:28','2021-05-07 05:11:28','1b26d4cc-c500-402e-9576-3c55234a1b50','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12001,155303,1,'2021-05-07 05:14:18','2021-05-07 05:29:23','be48781f-5e83-48c1-926f-63ef4ab46ab2','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12002,155304,1,'2021-05-07 05:14:18','2021-05-07 05:29:23','f7b552c8-7d79-4f4b-94e6-99a1556148b9','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12003,155305,1,'2021-05-07 05:14:18','2021-05-07 05:29:23','e11d3025-1b4f-46ff-8a7c-1a149bed2663','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12004,155306,1,'2021-05-07 05:14:18','2021-05-07 05:29:23','22bb4977-e5db-4538-bc62-09c82d0f2f30','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12005,155307,1,'2021-05-07 05:14:18','2021-05-07 05:29:23','d2c3db39-d783-4c23-a2fe-302c74f64596','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12006,155323,1,'2021-05-07 05:30:12','2021-05-07 05:30:12','0065aa82-ec14-44db-bdff-bee5290718c0','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12007,155324,1,'2021-05-07 05:30:12','2021-05-07 05:30:12','73038554-b85c-4701-8939-1587f205d537','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12008,155325,1,'2021-05-07 05:30:12','2021-05-07 05:30:12','f6ca7ff4-8607-4c1c-b151-032bf39b903a','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12009,155326,1,'2021-05-07 05:30:12','2021-05-07 05:30:12','a9bf8001-ebf4-4c1a-8342-cb763607af8e','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12010,155327,1,'2021-05-07 05:30:12','2021-05-07 05:30:12','f7ef78c9-b9ef-4a8a-9e48-d47c5c191072','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12011,155328,1,'2021-05-07 05:30:12','2021-05-07 05:30:12','d1e6e8cf-8cf5-4cb4-a0e0-bdcb29371d84','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12012,155343,1,'2021-05-07 05:30:13','2021-05-07 05:30:13','1dfab8fa-f00b-40a2-a05a-6a4195400c26','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12013,155344,1,'2021-05-07 05:30:13','2021-05-07 05:30:13','dcff301e-e23a-483b-b660-9674ffc215b3','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12014,155345,1,'2021-05-07 05:30:13','2021-05-07 05:30:13','e757b650-436b-47ae-8ccb-8581332d0710','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12015,155346,1,'2021-05-07 05:30:13','2021-05-07 05:30:13','f6ccd216-fa46-4c17-9a98-bd1dff21dcc8','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12016,155347,1,'2021-05-07 05:30:13','2021-05-07 05:30:13','49a902c0-fe32-40da-8bfd-01968991314e','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12017,155348,1,'2021-05-07 05:30:13','2021-05-07 05:30:13','0b1ac8a9-4afe-4207-97eb-3c2b111ddd0c','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12018,155359,1,'2021-05-07 05:32:35','2021-05-07 05:32:35','4e7da0b2-beba-4bda-a629-6ad0d598efa6','<p>Mental health, alcohol and other drugs and suicide prevention services to support your patient.</p>','My Mental Health Service Navigation',0,'solid',NULL),(12019,155360,1,'2021-05-07 05:32:35','2021-05-07 05:32:35','3dcc0bf5-0d76-427a-b71f-a78cc6aadd29','<p>Up-to-date evidence-based patient assessment, referral and services information. </p>','HealthPathways',0,'solid',NULL),(12020,155361,1,'2021-05-07 05:32:35','2021-05-07 05:32:35','f44e149e-43f2-4775-8f48-49cf1aa89d5d','<p>Enabling faster and more streamlined referrals management to Queensland public hospitals. </p>','GP Smart Referrals',0,'solid',NULL),(12021,155362,1,'2021-05-07 05:32:35','2021-05-07 05:32:35','4dfa4e27-ea27-4388-8b25-0472a77f9d26','<p>A free, six-month health program, delivered in partnership with the Queensland Government. </p>','My health for life',0,'solid',NULL),(12022,155412,1,'2021-05-07 05:32:36','2021-05-07 05:32:36','1b3574bc-cb61-4adf-b354-bda519a97b47','<h4><strong>Children\'s Health Queensland Hospital and Health Service</strong></h4>\n<p>More information about referral templates and guidelines for CHQ.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/health-professionals/'),(12023,155413,1,'2021-05-07 05:32:36','2021-05-07 05:32:36','f1e956b0-a4a6-4011-b9b1-eaef85b931ca','<h4><strong>Asthma Australia</strong> </h4>\n<p>Connecting health professionals with the most current asthma management services, resources and opportunities.</p>','Visit the website',0,'solid','https://asthma.org.au/health-professionals/refer/'),(12024,155414,1,'2021-05-07 05:32:36','2021-05-07 05:32:36','e1bd2f46-0fb6-4e41-b7c1-ebc0f22596f0','<h4><strong>BreastScreen Queensland</strong></h4>\n<p>Information for health professionals and access to GP electronic recommendation forms.</p>','Visit the website',1,'solid','https://www.breastscreen.qld.gov.au/health-professionals.asp'),(12025,155415,1,'2021-05-07 05:32:36','2021-05-07 05:32:36','a5a7ce55-d105-4f5b-ad81-d2149a78cfcc','<h4><strong>Child and Youth Community Health Service</strong> </h4>\n<p>Uniting a variety of specialist community-based healthcare services and health promotion programs to help young people.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/our-services/community-health-services/'),(12026,155416,1,'2021-05-07 05:32:36','2021-05-07 05:32:36','62d425e1-6726-447c-81ab-1c1ea5f422f5','<h4><strong>Hear and Say</strong></h4>\n<p>Experts with over 25 years’ experience in supporting children and young adults with their hearing, speaking and developmental needs.</p>','Visit the website',1,'solid','https://www.hearandsay.com.au/for-adults/health-professionals/'),(12027,155417,1,'2021-05-07 05:32:36','2021-05-07 05:32:36','66e0c8e9-0353-4d4b-9bb6-0fe7931d665d','<h4><strong>Wesley Breast Clinic </strong></h4>\n<p>The Wesley Breast Clinic has a large team of highly experienced professionals specialising in breast imaging.</p>','Visit the website',1,'solid','http://wesley.com.au/services/clinical-services/breast-clinic/gp-referral'),(12028,155423,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','20222133-0a9d-4334-a940-59b5b526dd20','<p>Mental health, alcohol and other drugs and suicide prevention services to support your patient.</p>','My Mental Health Service Navigation',0,'solid',NULL),(12029,155424,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','52e1056a-733e-48a8-838b-661fefb33091','<p>Up-to-date evidence-based patient assessment, referral and services information. </p>','HealthPathways',0,'solid',NULL),(12030,155425,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','1ca38bef-34b1-451e-9ddf-8b5a676d8eb8','<p>Enabling faster and more streamlined referrals management to Queensland public hospitals. </p>','GP Smart Referrals',0,'solid',NULL),(12031,155426,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','8334e66b-a153-458f-b026-ed62ed188378','<p>A free, six-month health program, delivered in partnership with the Queensland Government. </p>','My health for life',0,'solid',NULL),(12032,155477,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','ca557f3b-6afd-487c-930f-2dc9aef6f29e','<h4><strong>Children\'s Health Queensland Hospital and Health Service</strong></h4>\n<p>More information about referral templates and guidelines for CHQ.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/health-professionals/'),(12033,155478,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','066227fd-6338-4a70-9bb1-195b7aec50d7','<h4><strong>Asthma Australia</strong> </h4>\n<p>Connecting health professionals with the most current asthma management services, resources and opportunities.</p>','Visit the website',0,'solid','https://asthma.org.au/health-professionals/refer/'),(12034,155479,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','56fdf034-d08f-4229-9196-2bf276d654f0','<h4><strong>BreastScreen Queensland</strong></h4>\n<p>Information for health professionals and access to GP electronic recommendation forms.</p>','Visit the website',1,'solid','https://www.breastscreen.qld.gov.au/health-professionals.asp'),(12035,155480,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','89069218-f404-49a8-8ea7-35ea3a0b28af','<h4><strong>Child and Youth Community Health Service</strong> </h4>\n<p>Uniting a variety of specialist community-based healthcare services and health promotion programs to help young people.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/our-services/community-health-services/'),(12036,155481,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','b17b7289-3918-4454-af4c-424632209ee4','<h4><strong>Hear and Say</strong></h4>\n<p>Experts with over 25 years’ experience in supporting children and young adults with their hearing, speaking and developmental needs.</p>','Visit the website',1,'solid','https://www.hearandsay.com.au/for-adults/health-professionals/'),(12037,155482,1,'2021-05-07 05:32:38','2021-05-07 05:32:38','ca0b2a56-5c54-4703-b732-3bbc823d6455','<h4><strong>Wesley Breast Clinic </strong></h4>\n<p>The Wesley Breast Clinic has a large team of highly experienced professionals specialising in breast imaging.</p>','Visit the website',1,'solid','http://wesley.com.au/services/clinical-services/breast-clinic/gp-referral'),(12038,155488,1,'2021-05-07 05:32:44','2021-05-07 05:32:44','69867509-83f4-48b2-909d-3b4ac2201a9f','<p>Mental health, alcohol and other drugs and suicide prevention services to support your patient.</p>','My Mental Health Service Navigation',0,'solid',NULL),(12039,155489,1,'2021-05-07 05:32:44','2021-05-07 05:32:44','6ad0a7df-bb3f-41c1-80c5-dd31eedbd740','<p>Up-to-date evidence-based patient assessment, referral and services information. </p>','HealthPathways',0,'solid',NULL),(12040,155490,1,'2021-05-07 05:32:44','2021-05-07 05:32:44','5d9c3b25-2521-4bfd-b425-2becea1a0ed6','<p>Enabling faster and more streamlined referrals management to Queensland public hospitals. </p>','GP Smart Referrals',0,'solid',NULL),(12041,155491,1,'2021-05-07 05:32:44','2021-05-07 05:32:44','74fed8b9-dc2f-40c7-b528-38a237ec4a60','<p>A free, six-month health program, delivered in partnership with the Queensland Government. </p>','My health for life',0,'solid',NULL),(12042,155542,1,'2021-05-07 05:32:45','2021-05-07 05:32:45','58a4df04-42fd-49fa-805a-5994bf21fb70','<h4><strong>Children\'s Health Queensland Hospital and Health Service</strong></h4>\n<p>More information about referral templates and guidelines for CHQ.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/health-professionals/'),(12043,155543,1,'2021-05-07 05:32:45','2021-05-07 05:32:45','321f4095-47d0-4725-ae0b-02f2b54eb2b0','<h4><strong>Asthma Australia</strong> </h4>\n<p>Connecting health professionals with the most current asthma management services, resources and opportunities.</p>','Visit the website',0,'solid','https://asthma.org.au/health-professionals/refer/'),(12044,155544,1,'2021-05-07 05:32:45','2021-05-07 05:32:45','89769f3a-3155-4e5e-a7cb-cb758341abd5','<h4><strong>BreastScreen Queensland</strong></h4>\n<p>Information for health professionals and access to GP electronic recommendation forms.</p>','Visit the website',1,'solid','https://www.breastscreen.qld.gov.au/health-professionals.asp'),(12045,155545,1,'2021-05-07 05:32:45','2021-05-07 05:32:45','8a0eaf7c-dde5-4c23-bc4c-5aecf9b6f181','<h4><strong>Child and Youth Community Health Service</strong> </h4>\n<p>Uniting a variety of specialist community-based healthcare services and health promotion programs to help young people.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/our-services/community-health-services/'),(12046,155546,1,'2021-05-07 05:32:45','2021-05-07 05:32:45','63ccf173-9c17-4085-b9f0-ce937f0b2ee6','<h4><strong>Hear and Say</strong></h4>\n<p>Experts with over 25 years’ experience in supporting children and young adults with their hearing, speaking and developmental needs.</p>','Visit the website',1,'solid','https://www.hearandsay.com.au/for-adults/health-professionals/'),(12047,155547,1,'2021-05-07 05:32:45','2021-05-07 05:32:45','38e56b81-8a3a-4506-841d-48c6aa0a4a2d','<h4><strong>Wesley Breast Clinic </strong></h4>\n<p>The Wesley Breast Clinic has a large team of highly experienced professionals specialising in breast imaging.</p>','Visit the website',1,'solid','http://wesley.com.au/services/clinical-services/breast-clinic/gp-referral'),(12048,155553,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','c672fba5-64db-4d35-8b2c-518525209466','<p>Mental health, alcohol and other drugs and suicide prevention services to support your patient.</p>','My Mental Health Service Navigation',0,'solid',NULL),(12049,155554,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','9f9f933d-ea51-45c5-9db4-3bdcfcb18ac9','<p>Up-to-date evidence-based patient assessment, referral and services information. </p>','HealthPathways',0,'solid',NULL),(12050,155555,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','c890947b-40a5-43c3-bae2-d51f27a265d0','<p>Enabling faster and more streamlined referrals management to Queensland public hospitals. </p>','GP Smart Referrals',0,'solid',NULL),(12051,155556,1,'2021-05-07 05:32:47','2021-05-07 05:32:47','4fc72e93-2e24-40b7-b11a-dec125432399','<p>A free, six-month health program, delivered in partnership with the Queensland Government. </p>','My health for life',0,'solid',NULL),(12052,155607,1,'2021-05-07 05:32:48','2021-05-07 05:32:48','e8a588bf-0e8e-4924-8fad-211119e59323','<h4><strong>Children\'s Health Queensland Hospital and Health Service</strong></h4>\n<p>More information about referral templates and guidelines for CHQ.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/health-professionals/'),(12053,155608,1,'2021-05-07 05:32:48','2021-05-07 05:32:48','acfa9033-ba0c-41cf-ad8d-ee71d05bd88e','<h4><strong>Asthma Australia</strong> </h4>\n<p>Connecting health professionals with the most current asthma management services, resources and opportunities.</p>','Visit the website',0,'solid','https://asthma.org.au/health-professionals/refer/'),(12054,155609,1,'2021-05-07 05:32:48','2021-05-07 05:32:48','bc4f6fb7-44ba-47af-bfe3-20847f71eca3','<h4><strong>BreastScreen Queensland</strong></h4>\n<p>Information for health professionals and access to GP electronic recommendation forms.</p>','Visit the website',1,'solid','https://www.breastscreen.qld.gov.au/health-professionals.asp'),(12055,155610,1,'2021-05-07 05:32:48','2021-05-07 05:32:48','f35b8751-9c02-4304-b7e7-c411dc56d17e','<h4><strong>Child and Youth Community Health Service</strong> </h4>\n<p>Uniting a variety of specialist community-based healthcare services and health promotion programs to help young people.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/our-services/community-health-services/'),(12056,155611,1,'2021-05-07 05:32:48','2021-05-07 05:32:48','7eb5d3de-b8ff-4b8f-84d3-2844effe846f','<h4><strong>Hear and Say</strong></h4>\n<p>Experts with over 25 years’ experience in supporting children and young adults with their hearing, speaking and developmental needs.</p>','Visit the website',1,'solid','https://www.hearandsay.com.au/for-adults/health-professionals/'),(12057,155612,1,'2021-05-07 05:32:48','2021-05-07 05:32:48','a22055b8-4b90-4100-a789-f121b9419d03','<h4><strong>Wesley Breast Clinic </strong></h4>\n<p>The Wesley Breast Clinic has a large team of highly experienced professionals specialising in breast imaging.</p>','Visit the website',1,'solid','http://wesley.com.au/services/clinical-services/breast-clinic/gp-referral'),(12058,155618,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','2ee29e22-ef1e-420f-9f33-a3bf358a8ff8','<p>Mental health, alcohol and other drugs and suicide prevention services to support your patient.</p>','My Mental Health Service Navigation',0,'solid',NULL),(12059,155619,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','59f5262f-1b7e-4c7c-954a-a2e41a0866eb','<p>Up-to-date evidence-based patient assessment, referral and services information. </p>','HealthPathways',0,'solid',NULL),(12060,155620,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','4440e458-caf1-4079-b943-9dd0ddcff59d','<p>Enabling faster and more streamlined referrals management to Queensland public hospitals. </p>','GP Smart Referrals',0,'solid',NULL),(12061,155621,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','ed0ed049-6e19-4093-b753-2aab3113d4aa','<p>A free, six-month health program, delivered in partnership with the Queensland Government. </p>','My health for life',0,'solid',NULL),(12062,155672,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','52a64d6f-2ea3-4da7-840f-60846d5393a6','<h4><strong>Children\'s Health Queensland Hospital and Health Service</strong></h4>\n<p>More information about referral templates and guidelines for CHQ.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/health-professionals/'),(12063,155673,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','8493997f-acfe-44dc-a7ea-772c4bc9468c','<h4><strong>Asthma Australia</strong> </h4>\n<p>Connecting health professionals with the most current asthma management services, resources and opportunities.</p>','Visit the website',0,'solid','https://asthma.org.au/health-professionals/refer/'),(12064,155674,1,'2021-05-07 05:33:00','2021-05-07 05:33:00','0ccde55f-b7c8-419d-a02b-c0bbf017f5fd','<h4><strong>BreastScreen Queensland</strong></h4>\n<p>Information for health professionals and access to GP electronic recommendation forms.</p>','Visit the website',1,'solid','https://www.breastscreen.qld.gov.au/health-professionals.asp'),(12065,155675,1,'2021-05-07 05:33:01','2021-05-07 05:33:01','50822de9-1512-4c01-a3a1-007ced801954','<h4><strong>Child and Youth Community Health Service</strong> </h4>\n<p>Uniting a variety of specialist community-based healthcare services and health promotion programs to help young people.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/our-services/community-health-services/'),(12066,155676,1,'2021-05-07 05:33:01','2021-05-07 05:33:01','612834b0-4f50-43db-8516-46f032f3c989','<h4><strong>Hear and Say</strong></h4>\n<p>Experts with over 25 years’ experience in supporting children and young adults with their hearing, speaking and developmental needs.</p>','Visit the website',1,'solid','https://www.hearandsay.com.au/for-adults/health-professionals/'),(12067,155677,1,'2021-05-07 05:33:01','2021-05-07 05:33:01','31a754eb-53a8-4601-9b50-274d94a27608','<h4><strong>Wesley Breast Clinic </strong></h4>\n<p>The Wesley Breast Clinic has a large team of highly experienced professionals specialising in breast imaging.</p>','Visit the website',1,'solid','http://wesley.com.au/services/clinical-services/breast-clinic/gp-referral'),(12068,155683,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','2f22b577-7701-447e-ba5b-1e2938a66dfb','<p>Mental health, alcohol and other drugs and suicide prevention services to support your patient.</p>','My Mental Health Service Navigation',0,'solid',NULL),(12069,155684,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','74530cec-b04e-4fc1-b79b-6066d7401dbc','<p>Up-to-date evidence-based patient assessment, referral and services information. </p>','HealthPathways',0,'solid',NULL),(12070,155685,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','1416085b-febc-4cdb-809c-ce552afe7b3c','<p>Enabling faster and more streamlined referrals management to Queensland public hospitals. </p>','GP Smart Referrals',0,'solid',NULL),(12071,155686,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','48933bcf-bbb7-4f01-a14f-8b8cb85b5caa','<p>A free, six-month health program, delivered in partnership with the Queensland Government. </p>','My health for life',0,'solid',NULL),(12072,155736,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','945f172c-6b6a-4128-bdc0-0d88b30b8da2','<h4><strong>Children\'s Health Queensland Hospital and Health Service</strong></h4>\n<p>More information about referral templates and guidelines for CHQ.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/health-professionals/'),(12073,155737,1,'2021-05-07 05:33:06','2021-05-07 05:33:06','da0c4f20-3726-423a-882e-4d2fc56015a4','<h4><strong>Asthma Australia</strong> </h4>\n<p>Connecting health professionals with the most current asthma management services, resources and opportunities.</p>','Visit the website',0,'solid','https://asthma.org.au/health-professionals/refer/'),(12074,155738,1,'2021-05-07 05:33:07','2021-05-07 05:33:07','6d13dd2b-201e-4715-acf9-0280e80b98c6','<h4><strong>BreastScreen Queensland</strong></h4>\n<p>Information for health professionals and access to GP electronic recommendation forms.</p>','Visit the website',1,'solid','https://www.breastscreen.qld.gov.au/health-professionals.asp'),(12075,155739,1,'2021-05-07 05:33:07','2021-05-07 05:33:07','526771c5-08c1-47c4-9fd7-98fc07f50b28','<h4><strong>Child and Youth Community Health Service</strong> </h4>\n<p>Uniting a variety of specialist community-based healthcare services and health promotion programs to help young people.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/our-services/community-health-services/'),(12076,155740,1,'2021-05-07 05:33:07','2021-05-07 05:33:07','2ec62750-8997-49fd-b23b-5b6ba589f16b','<h4><strong>Hear and Say</strong></h4>\n<p>Experts with over 25 years’ experience in supporting children and young adults with their hearing, speaking and developmental needs.</p>','Visit the website',1,'solid','https://www.hearandsay.com.au/for-adults/health-professionals/'),(12077,155741,1,'2021-05-07 05:33:07','2021-05-07 05:33:07','b369569c-b209-4bca-becd-a2a7fd13d3f7','<h4><strong>Wesley Breast Clinic </strong></h4>\n<p>The Wesley Breast Clinic has a large team of highly experienced professionals specialising in breast imaging.</p>','Visit the website',1,'solid','http://wesley.com.au/services/clinical-services/breast-clinic/gp-referral'),(12078,155747,1,'2021-05-07 05:33:09','2021-05-07 05:33:09','f7ff4b56-19bd-4d6b-bf2a-8729fd8d61ad','<p>Mental health, alcohol and other drugs and suicide prevention services to support your patient.</p>','My Mental Health Service Navigation',0,'solid',NULL),(12079,155748,1,'2021-05-07 05:33:09','2021-05-07 05:33:09','58f01347-89a8-4f03-843d-9593ac53a453','<p>Up-to-date evidence-based patient assessment, referral and services information. </p>','HealthPathways',0,'solid',NULL),(12080,155749,1,'2021-05-07 05:33:09','2021-05-07 05:33:09','01b39c6c-d091-426e-96df-5a48a7903bec','<p>Enabling faster and more streamlined referrals management to Queensland public hospitals. </p>','GP Smart Referrals',0,'solid',NULL),(12081,155750,1,'2021-05-07 05:33:09','2021-05-07 05:33:09','d6a8bfc0-e888-4280-af1c-6e58146f3c5a','<p>A free, six-month health program, delivered in partnership with the Queensland Government. </p>','My health for life',0,'solid',NULL),(12082,155801,1,'2021-05-07 05:33:10','2021-05-07 05:33:10','cf5729ce-91b4-4530-a40d-de1c7c799f35','<h4><strong>Children\'s Health Queensland Hospital and Health Service</strong></h4>\n<p>More information about referral templates and guidelines for CHQ.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/health-professionals/'),(12083,155802,1,'2021-05-07 05:33:10','2021-05-07 05:33:10','696bab9b-7f80-4d45-9b1e-9da24da14d90','<h4><strong>Asthma Australia</strong> </h4>\n<p>Connecting health professionals with the most current asthma management services, resources and opportunities.</p>','Visit the website',0,'solid','https://asthma.org.au/health-professionals/refer/'),(12084,155803,1,'2021-05-07 05:33:10','2021-05-07 05:33:10','a9d50d64-0458-4b84-aa58-1f318c7c5818','<h4><strong>BreastScreen Queensland</strong></h4>\n<p>Information for health professionals and access to GP electronic recommendation forms.</p>','Visit the website',1,'solid','https://www.breastscreen.qld.gov.au/health-professionals.asp'),(12085,155804,1,'2021-05-07 05:33:10','2021-05-07 05:33:10','65c79dc0-d00d-49c0-9b85-697b14d620fd','<h4><strong>Child and Youth Community Health Service</strong> </h4>\n<p>Uniting a variety of specialist community-based healthcare services and health promotion programs to help young people.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/our-services/community-health-services/'),(12086,155805,1,'2021-05-07 05:33:10','2021-05-07 05:33:10','d99467f2-6731-4fab-9e8a-cda5bc14eb1d','<h4><strong>Hear and Say</strong></h4>\n<p>Experts with over 25 years’ experience in supporting children and young adults with their hearing, speaking and developmental needs.</p>','Visit the website',1,'solid','https://www.hearandsay.com.au/for-adults/health-professionals/'),(12087,155806,1,'2021-05-07 05:33:10','2021-05-07 05:33:10','6d648b37-9ce1-414d-aa70-aeee3b76ce11','<h4><strong>Wesley Breast Clinic </strong></h4>\n<p>The Wesley Breast Clinic has a large team of highly experienced professionals specialising in breast imaging.</p>','Visit the website',1,'solid','http://wesley.com.au/services/clinical-services/breast-clinic/gp-referral'),(12088,155812,1,'2021-05-07 05:33:12','2021-05-07 05:33:12','51350715-ff83-4e30-b3c3-ad02a6f2d068','<p>Mental health, alcohol and other drugs and suicide prevention services to support your patient.</p>','My Mental Health Service Navigation',0,'solid',NULL),(12089,155813,1,'2021-05-07 05:33:12','2021-05-07 05:33:12','0330e9b3-aa09-4826-a02f-51a23cdf4b58','<p>Up-to-date evidence-based patient assessment, referral and services information. </p>','HealthPathways',0,'solid',NULL),(12090,155814,1,'2021-05-07 05:33:12','2021-05-07 05:33:12','76365294-2940-4e03-86a0-ac66b0858938','<p>Enabling faster and more streamlined referrals management to Queensland public hospitals. </p>','GP Smart Referrals',0,'solid',NULL),(12091,155815,1,'2021-05-07 05:33:12','2021-05-07 05:33:12','573f01f7-8197-45fc-9d75-c13930457f73','<p>A free, six-month health program, delivered in partnership with the Queensland Government. </p>','My health for life',0,'solid',NULL),(12092,155867,1,'2021-05-07 05:33:13','2021-05-07 05:33:13','8c33eb2e-83f2-4f70-92cf-8be2dc51db77','<h4><strong>Children\'s Health Queensland Hospital and Health Service</strong></h4>\n<p>More information about referral templates and guidelines for CHQ.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/health-professionals/'),(12093,155868,1,'2021-05-07 05:33:13','2021-05-07 05:33:13','2d6cc718-a199-40c0-a44a-6474640ebbae','<h4><strong>Asthma Australia</strong> </h4>\n<p>Connecting health professionals with the most current asthma management services, resources and opportunities.</p>','Visit the website',0,'solid','https://asthma.org.au/health-professionals/refer/'),(12094,155869,1,'2021-05-07 05:33:13','2021-05-07 05:33:13','eab208ed-8640-45db-9ac1-2fdd46c738a5','<h4><strong>BreastScreen Queensland</strong></h4>\n<p>Information for health professionals and access to GP electronic recommendation forms.</p>','Visit the website',1,'solid','https://www.breastscreen.qld.gov.au/health-professionals.asp'),(12095,155870,1,'2021-05-07 05:33:13','2021-05-07 05:33:13','3c529e55-42fe-4dfc-8bcf-c044355de7d1','<h4><strong>Child and Youth Community Health Service</strong> </h4>\n<p>Uniting a variety of specialist community-based healthcare services and health promotion programs to help young people.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/our-services/community-health-services/'),(12096,155871,1,'2021-05-07 05:33:13','2021-05-07 05:33:13','4a4a3e3a-d1e4-4dd8-8416-d0136cbce9f2','<h4><strong>Hear and Say</strong></h4>\n<p>Experts with over 25 years’ experience in supporting children and young adults with their hearing, speaking and developmental needs.</p>','Visit the website',1,'solid','https://www.hearandsay.com.au/for-adults/health-professionals/'),(12097,155872,1,'2021-05-07 05:33:13','2021-05-07 05:33:13','1f0324e7-29e7-40eb-b10f-14268e62b831','<h4><strong>Wesley Breast Clinic </strong></h4>\n<p>The Wesley Breast Clinic has a large team of highly experienced professionals specialising in breast imaging.</p>','Visit the website',1,'solid','http://wesley.com.au/services/clinical-services/breast-clinic/gp-referral'),(12098,155878,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','4df827f9-7e0d-4560-b030-07002c017689','<p>Mental health, alcohol and other drugs and suicide prevention services to support your patient.</p>','My Mental Health Service Navigation',0,'solid',NULL),(12099,155879,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','80a17b49-bc64-41ad-b233-1be2df058675','<p>Up-to-date evidence-based patient assessment, referral and services information. </p>','HealthPathways',0,'solid',NULL),(12100,155880,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','81346f1e-161b-4d7b-995b-9455389d3026','<p>Enabling faster and more streamlined referrals management to Queensland public hospitals. </p>','GP Smart Referrals',0,'solid',NULL),(12101,155881,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','c6000cd5-9c15-40cb-b6f7-050a958a56ff','<p>A free, six-month health program, delivered in partnership with the Queensland Government. </p>','My health for life',0,'solid',NULL),(12102,155933,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','28c48228-6322-48ab-97da-467b3eb27dca','<h4><strong>Children\'s Health Queensland Hospital and Health Service</strong></h4>\n<p>More information about referral templates and guidelines for CHQ.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/health-professionals/'),(12103,155934,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','04be1fe7-6ed5-40ba-9268-7440cf5c93f4','<h4><strong>Asthma Australia</strong> </h4>\n<p>Connecting health professionals with the most current asthma management services, resources and opportunities.</p>','Visit the website',0,'solid','https://asthma.org.au/health-professionals/refer/'),(12104,155935,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','4cfba4e5-351f-4642-be00-e1320e513638','<h4><strong>BreastScreen Queensland</strong></h4>\n<p>Information for health professionals and access to GP electronic recommendation forms.</p>','Visit the website',1,'solid','https://www.breastscreen.qld.gov.au/health-professionals.asp'),(12105,155936,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','47a85451-b737-46ed-86e1-64bf3a20247f','<h4><strong>Child and Youth Community Health Service</strong> </h4>\n<p>Uniting a variety of specialist community-based healthcare services and health promotion programs to help young people.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/our-services/community-health-services/'),(12106,155937,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','d1646c8a-c0c7-45a7-b20d-077c3e64cdb5','<h4><strong>Hear and Say</strong></h4>\n<p>Experts with over 25 years’ experience in supporting children and young adults with their hearing, speaking and developmental needs.</p>','Visit the website',1,'solid','https://www.hearandsay.com.au/for-adults/health-professionals/'),(12107,155938,1,'2021-05-07 05:33:17','2021-05-07 05:33:17','a06e8539-113a-4768-a540-3098e71e8f2d','<h4><strong>Wesley Breast Clinic </strong></h4>\n<p>The Wesley Breast Clinic has a large team of highly experienced professionals specialising in breast imaging.</p>','Visit the website',1,'solid','http://wesley.com.au/services/clinical-services/breast-clinic/gp-referral'),(12108,155944,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','6a680fdd-d8fb-4bb9-bb5f-7c405482b320','<p>Mental health, alcohol and other drugs and suicide prevention services to support your patient.</p>','My Mental Health Service Navigation',0,'solid',NULL),(12109,155945,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','103fc13f-cca0-4a76-9e86-d296535df1e1','<p>Up-to-date evidence-based patient assessment, referral and services information. </p>','HealthPathways',0,'solid',NULL),(12110,155946,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','730afa8f-c909-4e0c-afb7-1104b80724fd','<p>Enabling faster and more streamlined referrals management to Queensland public hospitals. </p>','GP Smart Referrals',0,'solid',NULL),(12111,155947,1,'2021-05-07 05:33:32','2021-05-07 05:33:32','44e76b91-c8e1-42ac-bc6d-bbaabf0701fc','<p>A free, six-month health program, delivered in partnership with the Queensland Government. </p>','My health for life',0,'solid',NULL),(12112,155999,1,'2021-05-07 05:33:33','2021-05-07 05:33:33','d063ffdb-3257-4cd4-9c48-29cef831f692','<h4><strong>Children\'s Health Queensland Hospital and Health Service</strong></h4>\n<p>More information about referral templates and guidelines for CHQ.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/health-professionals/'),(12113,156000,1,'2021-05-07 05:33:33','2021-05-07 05:33:33','4c86da72-3aab-4623-b2c9-b2e89c3b48b0','<h4><strong>Asthma Australia</strong> </h4>\n<p>Connecting health professionals with the most current asthma management services, resources and opportunities.</p>','Visit the website',0,'solid','https://asthma.org.au/health-professionals/refer/'),(12114,156001,1,'2021-05-07 05:33:33','2021-05-07 05:33:33','1a2a2ccf-3c5e-452e-88d9-3e9512926d9e','<h4><strong>BreastScreen Queensland</strong></h4>\n<p>Information for health professionals and access to GP electronic recommendation forms.</p>','Visit the website',1,'solid','https://www.breastscreen.qld.gov.au/health-professionals.asp'),(12115,156002,1,'2021-05-07 05:33:33','2021-05-07 05:33:33','f369526e-cf88-417f-9f26-98b61914118b','<h4><strong>Child and Youth Community Health Service</strong> </h4>\n<p>Uniting a variety of specialist community-based healthcare services and health promotion programs to help young people.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/our-services/community-health-services/'),(12116,156003,1,'2021-05-07 05:33:33','2021-05-07 05:33:33','a6716771-ab52-4d09-a121-42f8c917bbc8','<h4><strong>Hear and Say</strong></h4>\n<p>Experts with over 25 years’ experience in supporting children and young adults with their hearing, speaking and developmental needs.</p>','Visit the website',1,'solid','https://www.hearandsay.com.au/for-adults/health-professionals/'),(12117,156004,1,'2021-05-07 05:33:33','2021-05-07 05:33:33','afc8ac65-fd06-40f0-9f06-d3d89f4ac92e','<h4><strong>Wesley Breast Clinic </strong></h4>\n<p>The Wesley Breast Clinic has a large team of highly experienced professionals specialising in breast imaging.</p>','Visit the website',1,'solid','http://wesley.com.au/services/clinical-services/breast-clinic/gp-referral'),(12118,156010,1,'2021-05-07 05:33:35','2021-05-07 05:33:35','18903c43-e0d7-4d36-8f44-fc1447d5946c','<p>Mental health, alcohol and other drugs and suicide prevention services to support your patient.</p>','My Mental Health Service Navigation',0,'solid',NULL),(12119,156011,1,'2021-05-07 05:33:35','2021-05-07 05:33:35','629f968b-8f31-4451-8bc5-511e86f3f7de','<p>Up-to-date evidence-based patient assessment, referral and services information. </p>','HealthPathways',0,'solid',NULL),(12120,156012,1,'2021-05-07 05:33:35','2021-05-07 05:33:35','0c77ac3e-c002-4402-a17f-56abf50be8d8','<p>Enabling faster and more streamlined referrals management to Queensland public hospitals. </p>','GP Smart Referrals',0,'solid',NULL),(12121,156013,1,'2021-05-07 05:33:35','2021-05-07 05:33:35','e6c0aae9-a8de-47c0-b286-df22cce0a898','<p>A free, six-month health program, delivered in partnership with the Queensland Government. </p>','My health for life',0,'solid',NULL),(12122,156065,1,'2021-05-07 05:33:36','2021-05-07 05:33:36','ce426cfc-cb07-49bb-b323-e425410bfa04','<h4><strong>Children\'s Health Queensland Hospital and Health Service</strong></h4>\n<p>More information about referral templates and guidelines for CHQ.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/health-professionals/'),(12123,156066,1,'2021-05-07 05:33:36','2021-05-07 05:33:36','ea80dcf7-2529-45ed-bd05-f72bcbf5a8dc','<h4><strong>Asthma Australia</strong> </h4>\n<p>Connecting health professionals with the most current asthma management services, resources and opportunities.</p>','Visit the website',0,'solid','https://asthma.org.au/health-professionals/refer/'),(12124,156067,1,'2021-05-07 05:33:36','2021-05-07 05:33:36','2b2c0670-b5be-4091-ab1c-d6c9d6d1dbc5','<h4><strong>BreastScreen Queensland</strong></h4>\n<p>Information for health professionals and access to GP electronic recommendation forms.</p>','Visit the website',1,'solid','https://www.breastscreen.qld.gov.au/health-professionals.asp'),(12125,156068,1,'2021-05-07 05:33:36','2021-05-07 05:33:36','ec523d34-fadd-4b59-a6aa-96b1e54883fa','<h4><strong>Child and Youth Community Health Service</strong> </h4>\n<p>Uniting a variety of specialist community-based healthcare services and health promotion programs to help young people.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/our-services/community-health-services/'),(12126,156069,1,'2021-05-07 05:33:36','2021-05-07 05:33:36','38f4f547-5834-41b4-863e-06646e6b9eb7','<h4><strong>Hear and Say</strong></h4>\n<p>Experts with over 25 years’ experience in supporting children and young adults with their hearing, speaking and developmental needs.</p>','Visit the website',1,'solid','https://www.hearandsay.com.au/for-adults/health-professionals/'),(12127,156070,1,'2021-05-07 05:33:36','2021-05-07 05:33:36','ebc3ada5-1594-4b21-bd36-e03cd4d32868','<h4><strong>Wesley Breast Clinic </strong></h4>\n<p>The Wesley Breast Clinic has a large team of highly experienced professionals specialising in breast imaging.</p>','Visit the website',1,'solid','http://wesley.com.au/services/clinical-services/breast-clinic/gp-referral'),(12128,156076,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','a36ad225-e766-4da4-894e-946611aea888','<p>Mental health, alcohol and other drugs and suicide prevention services to support your patient.</p>','My Mental Health Service Navigation',0,'solid',NULL),(12129,156077,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','b12711fb-dd2a-43b4-acb5-de43840b0a07','<p>Up-to-date evidence-based patient assessment, referral and services information. </p>','HealthPathways',0,'solid',NULL),(12130,156078,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','25b93ba6-c9c0-459c-9224-258b64efd318','<p>Enabling faster and more streamlined referrals management to Queensland public hospitals. </p>','GP Smart Referrals',0,'solid',NULL),(12131,156079,1,'2021-05-07 05:33:41','2021-05-07 05:33:41','bbcb1b26-e490-48c8-9c18-7953bcee8f78','<p>A free, six-month health program, delivered in partnership with the Queensland Government. </p>','My health for life',0,'solid',NULL),(12132,156131,1,'2021-05-07 05:33:42','2021-05-07 05:33:42','e07dccc9-7cd1-4813-8372-6e8dc3a69379','<h4><strong>Children\'s Health Queensland Hospital and Health Service</strong></h4>\n<p>More information about referral templates and guidelines for CHQ.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/health-professionals/'),(12133,156132,1,'2021-05-07 05:33:42','2021-05-07 05:33:42','6340385e-22f0-4e02-a2ed-341de7975344','<h4><strong>Asthma Australia</strong> </h4>\n<p>Connecting health professionals with the most current asthma management services, resources and opportunities.</p>','Visit the website',0,'solid','https://asthma.org.au/health-professionals/refer/'),(12134,156133,1,'2021-05-07 05:33:42','2021-05-07 05:33:42','ec7ab4a9-86d4-4e06-917f-52773c6f34f8','<h4><strong>BreastScreen Queensland</strong></h4>\n<p>Information for health professionals and access to GP electronic recommendation forms.</p>','Visit the website',1,'solid','https://www.breastscreen.qld.gov.au/health-professionals.asp'),(12135,156134,1,'2021-05-07 05:33:42','2021-05-07 05:33:42','d32916af-f172-486e-8ecf-e85b93c78a5f','<h4><strong>Child and Youth Community Health Service</strong> </h4>\n<p>Uniting a variety of specialist community-based healthcare services and health promotion programs to help young people.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/our-services/community-health-services/'),(12136,156135,1,'2021-05-07 05:33:42','2021-05-07 05:33:42','33186115-d2cf-440c-ab6b-06398d567f97','<h4><strong>Hear and Say</strong></h4>\n<p>Experts with over 25 years’ experience in supporting children and young adults with their hearing, speaking and developmental needs.</p>','Visit the website',1,'solid','https://www.hearandsay.com.au/for-adults/health-professionals/'),(12137,156136,1,'2021-05-07 05:33:42','2021-05-07 05:33:42','7e6f9b15-2a53-41f2-a21b-b7326116e5d6','<h4><strong>Wesley Breast Clinic </strong></h4>\n<p>The Wesley Breast Clinic has a large team of highly experienced professionals specialising in breast imaging.</p>','Visit the website',1,'solid','http://wesley.com.au/services/clinical-services/breast-clinic/gp-referral'),(12138,156142,1,'2021-05-07 05:34:13','2021-05-07 05:34:13','7b5357d3-4987-44ad-8a1d-fd65018bcfb9','<p>Mental health, alcohol and other drugs and suicide prevention services to support your patient.</p>','My Mental Health Service Navigation',0,'solid',NULL),(12139,156143,1,'2021-05-07 05:34:13','2021-05-07 05:34:13','7e8a26c2-1d36-48e0-ac8c-2e93de605ae7','<p>Up-to-date evidence-based patient assessment, referral and services information. </p>','HealthPathways',0,'solid',NULL),(12140,156144,1,'2021-05-07 05:34:13','2021-05-07 05:34:13','af8fcca5-7955-4739-ad1d-ae21a5aa8fcb','<p>Enabling faster and more streamlined referrals management to Queensland public hospitals. </p>','GP Smart Referrals',0,'solid',NULL),(12141,156145,1,'2021-05-07 05:34:13','2021-05-07 05:34:13','18513a06-c813-4cb3-b2f6-dc4cb811f775','<p>A free, six-month health program, delivered in partnership with the Queensland Government. </p>','My health for life',0,'solid',NULL),(12142,156197,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','50eda042-8306-43ea-873e-268b88fc30a6','<h4><strong>Children\'s Health Queensland Hospital and Health Service</strong></h4>\n<p>More information about referral templates and guidelines for CHQ.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/health-professionals/'),(12143,156198,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','8f842a57-32dd-4465-8d64-c0dccd49ddd1','<h4><strong>Asthma Australia</strong> </h4>\n<p>Connecting health professionals with the most current asthma management services, resources and opportunities.</p>','Visit the website',0,'solid','https://asthma.org.au/health-professionals/refer/'),(12144,156199,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','d91a8bc9-c9bd-4886-98c0-1c0665a474fa','<h4><strong>BreastScreen Queensland</strong></h4>\n<p>Information for health professionals and access to GP electronic recommendation forms.</p>','Visit the website',1,'solid','https://www.breastscreen.qld.gov.au/health-professionals.asp'),(12145,156200,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','2dd1dd32-c36e-45a2-a1e2-c447053f74f9','<h4><strong>Child and Youth Community Health Service</strong> </h4>\n<p>Uniting a variety of specialist community-based healthcare services and health promotion programs to help young people.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/our-services/community-health-services/'),(12146,156201,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','26357e92-dbbd-4ba6-8aa8-c4cbe70b9d39','<h4><strong>Hear and Say</strong></h4>\n<p>Experts with over 25 years’ experience in supporting children and young adults with their hearing, speaking and developmental needs.</p>','Visit the website',1,'solid','https://www.hearandsay.com.au/for-adults/health-professionals/'),(12147,156202,1,'2021-05-07 05:34:14','2021-05-07 05:34:14','88391df0-354d-4c42-937c-e4ec78606dc8','<h4><strong>Wesley Breast Clinic </strong></h4>\n<p>The Wesley Breast Clinic has a large team of highly experienced professionals specialising in breast imaging.</p>','Visit the website',1,'solid','http://wesley.com.au/services/clinical-services/breast-clinic/gp-referral'),(12148,156208,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','ff68525a-5faf-4d04-9752-d00206204763','<p>Mental health, alcohol and other drugs and suicide prevention services to support your patient.</p>','My Mental Health Service Navigation',0,'solid',NULL),(12149,156209,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','67bad261-1099-4a34-9be0-f4af88ff9dad','<p>Up-to-date evidence-based patient assessment, referral and services information. </p>','HealthPathways',0,'solid',NULL),(12150,156210,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','abc76bac-75dd-4673-aad0-e08ff7fa9b3c','<p>Enabling faster and more streamlined referrals management to Queensland public hospitals. </p>','GP Smart Referrals',0,'solid',NULL),(12151,156211,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','045fa76b-5ccb-4483-9cec-e078e4dfa52d','<p>A free, six-month health program, delivered in partnership with the Queensland Government. </p>','My health for life',0,'solid',NULL),(12152,156263,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','ee4ec6ba-80e8-40bc-8ece-d1c00386b7d7','<h4><strong>Children\'s Health Queensland Hospital and Health Service</strong></h4>\n<p>More information about referral templates and guidelines for CHQ.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/health-professionals/'),(12153,156264,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','4e2ebee4-875e-4f9c-9b4a-85506849e62f','<h4><strong>Asthma Australia</strong> </h4>\n<p>Connecting health professionals with the most current asthma management services, resources and opportunities.</p>','Visit the website',0,'solid','https://asthma.org.au/health-professionals/refer/'),(12154,156265,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','f0bc21c8-f619-444c-b59e-287fda99d3bc','<h4><strong>BreastScreen Queensland</strong></h4>\n<p>Information for health professionals and access to GP electronic recommendation forms.</p>','Visit the website',1,'solid','https://www.breastscreen.qld.gov.au/health-professionals.asp'),(12155,156266,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','ce9c29a1-b095-4776-b53e-f3c576d229cb','<h4><strong>Child and Youth Community Health Service</strong> </h4>\n<p>Uniting a variety of specialist community-based healthcare services and health promotion programs to help young people.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/our-services/community-health-services/'),(12156,156267,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','b8f73928-4afd-437d-9932-cd1abc95b9c2','<h4><strong>Hear and Say</strong></h4>\n<p>Experts with over 25 years’ experience in supporting children and young adults with their hearing, speaking and developmental needs.</p>','Visit the website',1,'solid','https://www.hearandsay.com.au/for-adults/health-professionals/'),(12157,156268,1,'2021-05-07 05:34:21','2021-05-07 05:34:21','a638a92a-2277-485c-be47-ab7d7a05e6ee','<h4><strong>Wesley Breast Clinic </strong></h4>\n<p>The Wesley Breast Clinic has a large team of highly experienced professionals specialising in breast imaging.</p>','Visit the website',1,'solid','http://wesley.com.au/services/clinical-services/breast-clinic/gp-referral'),(12158,156274,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','6a3fab48-d305-4c21-b7a6-326043433c1b','<p>Mental health, alcohol and other drugs and suicide prevention services to support your patient.</p>','My Mental Health Service Navigation',0,'solid',NULL),(12159,156275,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','273da564-e12f-4aab-abd4-4eebcfc33967','<p>Up-to-date evidence-based patient assessment, referral and services information. </p>','HealthPathways',0,'solid',NULL),(12160,156276,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','edb8ea49-32e8-4514-a3ff-ffbb66fa5def','<p>Enabling faster and more streamlined referrals management to Queensland public hospitals. </p>','GP Smart Referrals',0,'solid',NULL),(12161,156277,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','3ae9fd53-44fb-4ab3-8840-f56e935ec3f4','<p>A free, six-month health program, delivered in partnership with the Queensland Government. </p>','My health for life',0,'solid',NULL),(12162,156329,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','02f9e000-885e-412e-ae15-acea72edfa48','<h4><strong>Children\'s Health Queensland Hospital and Health Service</strong></h4>\n<p>More information about referral templates and guidelines for CHQ.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/health-professionals/'),(12163,156330,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','1e933918-e6fd-41e1-ab0e-da2f15c2bbc3','<h4><strong>Asthma Australia</strong> </h4>\n<p>Connecting health professionals with the most current asthma management services, resources and opportunities.</p>','Visit the website',0,'solid','https://asthma.org.au/health-professionals/refer/'),(12164,156331,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','5e31115d-565e-4393-93ba-82d2c711c63d','<h4><strong>BreastScreen Queensland</strong></h4>\n<p>Information for health professionals and access to GP electronic recommendation forms.</p>','Visit the website',1,'solid','https://www.breastscreen.qld.gov.au/health-professionals.asp'),(12165,156332,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','24f4ca32-3df1-45b4-92ca-2aeb9e815d39','<h4><strong>Child and Youth Community Health Service</strong> </h4>\n<p>Uniting a variety of specialist community-based healthcare services and health promotion programs to help young people.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/our-services/community-health-services/'),(12166,156333,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','f03ef51b-74ec-4e88-8cea-d225bf5bd9d0','<h4><strong>Hear and Say</strong></h4>\n<p>Experts with over 25 years’ experience in supporting children and young adults with their hearing, speaking and developmental needs.</p>','Visit the website',1,'solid','https://www.hearandsay.com.au/for-adults/health-professionals/'),(12167,156334,1,'2021-05-07 05:34:39','2021-05-07 05:34:39','3749d6ad-d48d-459e-a2ce-28d0c2cc15e4','<h4><strong>Wesley Breast Clinic </strong></h4>\n<p>The Wesley Breast Clinic has a large team of highly experienced professionals specialising in breast imaging.</p>','Visit the website',1,'solid','http://wesley.com.au/services/clinical-services/breast-clinic/gp-referral'),(12168,156340,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','2510a527-c370-4e86-a10d-4aff66cfa49b','<p>Mental health, alcohol and other drugs and suicide prevention services to support your patient.</p>','My Mental Health Service Navigation',0,'solid',NULL),(12169,156341,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','c1799c67-fc8a-4327-a1ff-5bfc254953c3','<p>Up-to-date evidence-based patient assessment, referral and services information. </p>','HealthPathways',0,'solid',NULL),(12170,156342,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','edd0a69b-a295-4ff6-b390-b13f9c69a719','<p>Enabling faster and more streamlined referrals management to Queensland public hospitals. </p>','GP Smart Referrals',0,'solid',NULL),(12171,156343,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','b63b9e61-12eb-4b84-93a1-87b5d3dabd15','<p>A free, six-month health program, delivered in partnership with the Queensland Government. </p>','My health for life',0,'solid',NULL),(12172,156395,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','d47c0a3d-08cf-45ec-8255-4da1eee035fe','<h4><strong>Children\'s Health Queensland Hospital and Health Service</strong></h4>\n<p>More information about referral templates and guidelines for CHQ.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/health-professionals/'),(12173,156396,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','e0c7adf6-ab74-42da-81ff-986324c5d55f','<h4><strong>Asthma Australia</strong> </h4>\n<p>Connecting health professionals with the most current asthma management services, resources and opportunities.</p>','Visit the website',0,'solid','https://asthma.org.au/health-professionals/refer/'),(12174,156397,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','4302d847-46c1-46fb-bb9a-a69d3717ac70','<h4><strong>BreastScreen Queensland</strong></h4>\n<p>Information for health professionals and access to GP electronic recommendation forms.</p>','Visit the website',1,'solid','https://www.breastscreen.qld.gov.au/health-professionals.asp'),(12175,156398,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','87fa95a0-6a75-46c6-bf15-31271f547a3e','<h4><strong>Child and Youth Community Health Service</strong> </h4>\n<p>Uniting a variety of specialist community-based healthcare services and health promotion programs to help young people.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/our-services/community-health-services/'),(12176,156399,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','7fa65636-7698-4a4c-95fa-591bdb927a12','<h4><strong>Hear and Say</strong></h4>\n<p>Experts with over 25 years’ experience in supporting children and young adults with their hearing, speaking and developmental needs.</p>','Visit the website',1,'solid','https://www.hearandsay.com.au/for-adults/health-professionals/'),(12177,156400,1,'2021-05-07 05:34:53','2021-05-07 05:34:53','65c7fc4e-1154-48bb-af23-8871751cff53','<h4><strong>Wesley Breast Clinic </strong></h4>\n<p>The Wesley Breast Clinic has a large team of highly experienced professionals specialising in breast imaging.</p>','Visit the website',1,'solid','http://wesley.com.au/services/clinical-services/breast-clinic/gp-referral'),(12178,156406,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','cb4492fa-85d9-48f8-b77c-70d904521d9a','<p>Mental health, alcohol and other drugs and suicide prevention services to support your patient.</p>','My Mental Health Service Navigation',0,'solid',NULL),(12179,156407,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','765fd857-8ec9-4610-b55e-9938de7ddd50','<p>Up-to-date evidence-based patient assessment, referral and services information. </p>','HealthPathways',0,'solid',NULL),(12180,156408,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','75ead4a1-eb50-4707-945e-c60fe5013c49','<p>Enabling faster and more streamlined referrals management to Queensland public hospitals. </p>','GP Smart Referrals',0,'solid',NULL),(12181,156409,1,'2021-05-07 05:35:08','2021-05-07 05:35:08','24e21458-4391-4461-b2fd-5847da4eff13','<p>A free, six-month health program, delivered in partnership with the Queensland Government. </p>','My health for life',0,'solid',NULL),(12182,156461,1,'2021-05-07 05:35:09','2021-05-07 05:35:09','72177321-5d04-4fe6-b473-a7da0a150f74','<h4><strong>Children\'s Health Queensland Hospital and Health Service</strong></h4>\n<p>More information about referral templates and guidelines for CHQ.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/health-professionals/'),(12183,156462,1,'2021-05-07 05:35:09','2021-05-07 05:35:09','91a7daba-d812-4f89-a34c-70c1dd5a034a','<h4><strong>Asthma Australia</strong> </h4>\n<p>Connecting health professionals with the most current asthma management services, resources and opportunities.</p>','Visit the website',0,'solid','https://asthma.org.au/health-professionals/refer/'),(12184,156463,1,'2021-05-07 05:35:09','2021-05-07 05:35:09','06798881-bb3d-4f3a-8fbd-3a7ff2c70c59','<h4><strong>BreastScreen Queensland</strong></h4>\n<p>Information for health professionals and access to GP electronic recommendation forms.</p>','Visit the website',1,'solid','https://www.breastscreen.qld.gov.au/health-professionals.asp'),(12185,156464,1,'2021-05-07 05:35:09','2021-05-07 05:35:09','b502cf57-c186-4a97-b1c4-dbd1429170a9','<h4><strong>Child and Youth Community Health Service</strong> </h4>\n<p>Uniting a variety of specialist community-based healthcare services and health promotion programs to help young people.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/our-services/community-health-services/'),(12186,156465,1,'2021-05-07 05:35:09','2021-05-07 05:35:09','9e063a43-a804-4e29-91b2-be924df99dc2','<h4><strong>Hear and Say</strong></h4>\n<p>Experts with over 25 years’ experience in supporting children and young adults with their hearing, speaking and developmental needs.</p>','Visit the website',1,'solid','https://www.hearandsay.com.au/for-adults/health-professionals/'),(12187,156466,1,'2021-05-07 05:35:09','2021-05-07 05:35:09','4bb8f785-660f-4940-9c74-1f7cb5ead569','<h4><strong>Wesley Breast Clinic </strong></h4>\n<p>The Wesley Breast Clinic has a large team of highly experienced professionals specialising in breast imaging.</p>','Visit the website',1,'solid','http://wesley.com.au/services/clinical-services/breast-clinic/gp-referral'),(12188,156472,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','00053762-c2b2-4e57-9fe8-e5aa52fff089','<p>Mental health, alcohol and other drugs and suicide prevention services to support your patient.</p>','My Mental Health Service Navigation',0,'solid',NULL),(12189,156473,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','0fbb8624-b4dc-4f68-8507-7843af4a19c2','<p>Up-to-date evidence-based patient assessment, referral and services information. </p>','HealthPathways',0,'solid',NULL),(12190,156474,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','1be2c445-4b6a-43f7-90ac-02a408febce2','<p>Enabling faster and more streamlined referrals management to Queensland public hospitals. </p>','GP Smart Referrals',0,'solid',NULL),(12191,156475,1,'2021-05-07 05:35:11','2021-05-07 05:35:11','ee1aa92e-6848-4f0c-90aa-8859465f5cf1','<p>A free, six-month health program, delivered in partnership with the Queensland Government. </p>','My health for life',0,'solid',NULL),(12192,156527,1,'2021-05-07 05:35:12','2021-05-07 05:35:12','9170048c-9d9d-401a-b75b-d68886b3f47c','<h4><strong>Children\'s Health Queensland Hospital and Health Service</strong></h4>\n<p>More information about referral templates and guidelines for CHQ.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/health-professionals/'),(12193,156528,1,'2021-05-07 05:35:12','2021-05-07 05:35:12','9d627c36-a84a-443d-9522-b6e03af3c626','<h4><strong>Asthma Australia</strong> </h4>\n<p>Connecting health professionals with the most current asthma management services, resources and opportunities.</p>','Visit the website',0,'solid','https://asthma.org.au/health-professionals/refer/'),(12194,156529,1,'2021-05-07 05:35:12','2021-05-07 05:35:12','aa9b00ef-d9e1-4ec6-a9b1-a4b0aaced6ad','<h4><strong>BreastScreen Queensland</strong></h4>\n<p>Information for health professionals and access to GP electronic recommendation forms.</p>','Visit the website',1,'solid','https://www.breastscreen.qld.gov.au/health-professionals.asp'),(12195,156530,1,'2021-05-07 05:35:12','2021-05-07 05:35:12','5841db51-326e-4706-8dce-0c768ffcdc4d','<h4><strong>Child and Youth Community Health Service</strong> </h4>\n<p>Uniting a variety of specialist community-based healthcare services and health promotion programs to help young people.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/our-services/community-health-services/'),(12196,156531,1,'2021-05-07 05:35:12','2021-05-07 05:35:12','7b886123-3580-44d6-b0ac-b29ac046d472','<h4><strong>Hear and Say</strong></h4>\n<p>Experts with over 25 years’ experience in supporting children and young adults with their hearing, speaking and developmental needs.</p>','Visit the website',1,'solid','https://www.hearandsay.com.au/for-adults/health-professionals/'),(12197,156532,1,'2021-05-07 05:35:12','2021-05-07 05:35:12','5b64345d-5be1-4242-bf9a-8af3187b581a','<h4><strong>Wesley Breast Clinic </strong></h4>\n<p>The Wesley Breast Clinic has a large team of highly experienced professionals specialising in breast imaging.</p>','Visit the website',1,'solid','http://wesley.com.au/services/clinical-services/breast-clinic/gp-referral'),(12198,156538,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','71ff5526-d9e9-48fb-b479-02e105d42c3b','<p>Mental health, alcohol and other drugs and suicide prevention services to support your patient.</p>','My Mental Health Service Navigation',0,'solid',NULL),(12199,156539,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','f86b74d8-c7a1-4ce0-bcd9-f09766516cfb','<p>Up-to-date evidence-based patient assessment, referral and services information. </p>','HealthPathways',0,'solid',NULL),(12200,156540,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','dd553cbc-8f4d-4e6e-a465-cf0102a144ab','<p>Enabling faster and more streamlined referrals management to Queensland public hospitals. </p>','GP Smart Referrals',0,'solid',NULL),(12201,156541,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','60dda504-d910-45b4-ba0f-c1f71fdbcf18','<p>A free, six-month health program, delivered in partnership with the Queensland Government. </p>','My health for life',0,'solid',NULL),(12202,156593,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','e87c37c6-63c5-4025-abd0-a6a457ac43da','<h4><strong>Children\'s Health Queensland Hospital and Health Service</strong></h4>\n<p>More information about referral templates and guidelines for CHQ.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/health-professionals/'),(12203,156594,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','25133b45-b607-4e20-b217-cccef6668b53','<h4><strong>Asthma Australia</strong> </h4>\n<p>Connecting health professionals with the most current asthma management services, resources and opportunities.</p>','Visit the website',0,'solid','https://asthma.org.au/health-professionals/refer/'),(12204,156595,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','c880eabb-baa2-4786-9ee9-8f5e4ce33ae3','<h4><strong>BreastScreen Queensland</strong></h4>\n<p>Information for health professionals and access to GP electronic recommendation forms.</p>','Visit the website',1,'solid','https://www.breastscreen.qld.gov.au/health-professionals.asp'),(12205,156596,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','80657e1f-ba0d-4083-a3de-fd40ad1343f6','<h4><strong>Child and Youth Community Health Service</strong> </h4>\n<p>Uniting a variety of specialist community-based healthcare services and health promotion programs to help young people.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/our-services/community-health-services/'),(12206,156597,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','488d19ef-acb0-490e-96e3-7625d272cf04','<h4><strong>Hear and Say</strong></h4>\n<p>Experts with over 25 years’ experience in supporting children and young adults with their hearing, speaking and developmental needs.</p>','Visit the website',1,'solid','https://www.hearandsay.com.au/for-adults/health-professionals/'),(12207,156598,1,'2021-05-07 05:35:16','2021-05-07 05:35:16','a4cd0b8a-caed-45f4-b392-8d6c11d8755b','<h4><strong>Wesley Breast Clinic </strong></h4>\n<p>The Wesley Breast Clinic has a large team of highly experienced professionals specialising in breast imaging.</p>','Visit the website',1,'solid','http://wesley.com.au/services/clinical-services/breast-clinic/gp-referral'),(12208,156604,1,'2021-05-07 05:35:41','2021-05-07 05:35:41','2289e39c-a072-45ce-a5a6-e6655c481457','<p>Mental health, alcohol and other drugs and suicide prevention services to support your patient.</p>','My Mental Health Service Navigation',0,'solid',NULL),(12209,156605,1,'2021-05-07 05:35:41','2021-05-07 05:35:41','a6f5d4ba-07f7-4f54-88dc-34816b9fe0c0','<p>Up-to-date evidence-based patient assessment, referral and services information. </p>','HealthPathways',0,'solid',NULL),(12210,156606,1,'2021-05-07 05:35:41','2021-05-07 05:35:41','8420b91b-dedb-49fd-94ca-a03fc3b9b8e1','<p>Enabling faster and more streamlined referrals management to Queensland public hospitals. </p>','GP Smart Referrals',0,'solid',NULL),(12211,156607,1,'2021-05-07 05:35:41','2021-05-07 05:35:41','7626267b-c8ce-4dc4-921f-a835fdc0f8ec','<p>A free, six-month health program, delivered in partnership with the Queensland Government. </p>','My health for life',0,'solid',NULL),(12212,156659,1,'2021-05-07 05:35:42','2021-05-07 05:35:42','2e21e394-aca8-4999-b114-5ad4116b5331','<h4><strong>Children\'s Health Queensland Hospital and Health Service</strong></h4>\n<p>More information about referral templates and guidelines for CHQ.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/health-professionals/'),(12213,156660,1,'2021-05-07 05:35:42','2021-05-07 05:35:42','85d311e4-0cc2-4101-9d04-7bd5fa7f82f5','<h4><strong>Asthma Australia</strong> </h4>\n<p>Connecting health professionals with the most current asthma management services, resources and opportunities.</p>','Visit the website',0,'solid','https://asthma.org.au/health-professionals/refer/'),(12214,156661,1,'2021-05-07 05:35:42','2021-05-07 05:35:42','bbfc71ca-643a-4043-a0f8-c835601b1466','<h4><strong>BreastScreen Queensland</strong></h4>\n<p>Information for health professionals and access to GP electronic recommendation forms.</p>','Visit the website',1,'solid','https://www.breastscreen.qld.gov.au/health-professionals.asp'),(12215,156662,1,'2021-05-07 05:35:42','2021-05-07 05:35:42','2875d121-29ff-49ab-8e78-9871e1791409','<h4><strong>Child and Youth Community Health Service</strong> </h4>\n<p>Uniting a variety of specialist community-based healthcare services and health promotion programs to help young people.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/our-services/community-health-services/'),(12216,156663,1,'2021-05-07 05:35:42','2021-05-07 05:35:42','e31cdd98-17c4-494e-b6bc-fe9dc749aeb8','<h4><strong>Hear and Say</strong></h4>\n<p>Experts with over 25 years’ experience in supporting children and young adults with their hearing, speaking and developmental needs.</p>','Visit the website',1,'solid','https://www.hearandsay.com.au/for-adults/health-professionals/'),(12217,156664,1,'2021-05-07 05:35:42','2021-05-07 05:35:42','b0babf39-0612-4b32-bf8e-bec799972d99','<h4><strong>Wesley Breast Clinic </strong></h4>\n<p>The Wesley Breast Clinic has a large team of highly experienced professionals specialising in breast imaging.</p>','Visit the website',1,'solid','http://wesley.com.au/services/clinical-services/breast-clinic/gp-referral'),(12218,156670,1,'2021-05-07 05:36:17','2021-05-07 05:36:17','cd3744b1-1e85-427d-a0fd-3ae1d8f151ba','<p>Mental health, alcohol and other drugs and suicide prevention services to support your patient.</p>','My Mental Health Service Navigation',0,'solid',NULL),(12219,156671,1,'2021-05-07 05:36:17','2021-05-07 05:36:17','7e04a0d7-4eb8-45f5-b6b1-407c8eee76d9','<p>Up-to-date evidence-based patient assessment, referral and services information. </p>','HealthPathways',0,'solid',NULL),(12220,156672,1,'2021-05-07 05:36:17','2021-05-07 05:36:17','892c5cf4-5041-499c-9036-5fe906c3d31a','<p>Enabling faster and more streamlined referrals management to Queensland public hospitals. </p>','GP Smart Referrals',0,'solid',NULL),(12221,156673,1,'2021-05-07 05:36:17','2021-05-07 05:36:17','7614e5d0-128b-413e-b4e0-45fa818b2e83','<p>A free, six-month health program, delivered in partnership with the Queensland Government. </p>','My health for life',0,'solid',NULL),(12222,156725,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','cc09794b-5d32-4561-bdc9-4a860fbbde82','<h4><strong>Children\'s Health Queensland Hospital and Health Service</strong></h4>\n<p>More information about referral templates and guidelines for CHQ.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/health-professionals/'),(12223,156726,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','7b2f75bb-6c85-40d3-b018-13f6122d7c09','<h4><strong>Asthma Australia</strong> </h4>\n<p>Connecting health professionals with the most current asthma management services, resources and opportunities.</p>','Visit the website',0,'solid','https://asthma.org.au/health-professionals/refer/'),(12224,156727,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','b9a421c6-049f-4431-9424-e305dbb3479a','<h4><strong>BreastScreen Queensland</strong></h4>\n<p>Information for health professionals and access to GP electronic recommendation forms.</p>','Visit the website',1,'solid','https://www.breastscreen.qld.gov.au/health-professionals.asp'),(12225,156728,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','228bba4e-b060-4588-853f-a5784301bb8e','<h4><strong>Child and Youth Community Health Service</strong> </h4>\n<p>Uniting a variety of specialist community-based healthcare services and health promotion programs to help young people.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/our-services/community-health-services/'),(12226,156729,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','d462a220-ef31-4048-8d4f-3a95ce5fa80a','<h4><strong>Hear and Say</strong></h4>\n<p>Experts with over 25 years’ experience in supporting children and young adults with their hearing, speaking and developmental needs.</p>','Visit the website',1,'solid','https://www.hearandsay.com.au/for-adults/health-professionals/'),(12227,156730,1,'2021-05-07 05:36:18','2021-05-07 05:36:18','f9f9bdea-267f-4d2a-9831-b484e28d468f','<h4><strong>Wesley Breast Clinic </strong></h4>\n<p>The Wesley Breast Clinic has a large team of highly experienced professionals specialising in breast imaging.</p>','Visit the website',1,'solid','http://wesley.com.au/services/clinical-services/breast-clinic/gp-referral'),(12228,156736,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','01217fa1-8ea6-4f63-a024-c334a404ac05','<p>Mental health, alcohol and other drugs and suicide prevention services to support your patient.</p>','My Mental Health Service Navigation',0,'solid',NULL),(12229,156737,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','05bb7a1d-5214-49c0-ac03-2fed9866dabd','<p>Up-to-date evidence-based patient assessment, referral and services information. </p>','HealthPathways',0,'solid',NULL),(12230,156738,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','bf39fc45-633b-4eb1-8bf9-d1664c1f2e86','<p>Enabling faster and more streamlined referrals management to Queensland public hospitals. </p>','GP Smart Referrals',0,'solid',NULL),(12231,156739,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','8f5a650e-8afa-42f0-8a28-d3af04cadda3','<p>A free, six-month health program, delivered in partnership with the Queensland Government. </p>','My health for life',0,'solid',NULL),(12232,156791,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','eda2295e-fcb3-4768-8624-9b6e75dec735','<h4><strong>Children\'s Health Queensland Hospital and Health Service</strong></h4>\n<p>More information about referral templates and guidelines for CHQ.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/health-professionals/'),(12233,156792,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','f012610d-3f43-42ab-adad-d0b14a4f69b4','<h4><strong>Asthma Australia</strong> </h4>\n<p>Connecting health professionals with the most current asthma management services, resources and opportunities.</p>','Visit the website',0,'solid','https://asthma.org.au/health-professionals/refer/'),(12234,156793,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','3ca3fef8-5682-47e7-aa9e-de15c2497553','<h4><strong>BreastScreen Queensland</strong></h4>\n<p>Information for health professionals and access to GP electronic recommendation forms.</p>','Visit the website',1,'solid','https://www.breastscreen.qld.gov.au/health-professionals.asp'),(12235,156794,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','f019464f-07dd-4724-b562-1562fb065c30','<h4><strong>Child and Youth Community Health Service</strong> </h4>\n<p>Uniting a variety of specialist community-based healthcare services and health promotion programs to help young people.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/our-services/community-health-services/'),(12236,156795,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','42af19e2-4c29-48a1-99ca-f1155d089027','<h4><strong>Hear and Say</strong></h4>\n<p>Experts with over 25 years’ experience in supporting children and young adults with their hearing, speaking and developmental needs.</p>','Visit the website',1,'solid','https://www.hearandsay.com.au/for-adults/health-professionals/'),(12237,156796,1,'2021-05-07 05:36:38','2021-05-07 05:36:38','c3f8f4ff-dec0-409a-8e22-fbb93c1cf955','<h4><strong>Wesley Breast Clinic </strong></h4>\n<p>The Wesley Breast Clinic has a large team of highly experienced professionals specialising in breast imaging.</p>','Visit the website',1,'solid','http://wesley.com.au/services/clinical-services/breast-clinic/gp-referral'),(12238,156803,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','3e35e5ef-2947-4a95-8c6b-79be7f3cbca1','<p>Mental health, alcohol and other drugs and suicide prevention services to support your patient.</p>','My Mental Health Service Navigation',0,'solid',NULL),(12239,156804,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','6191584f-14a2-4856-9cfe-42c0e553d9c4','<p>Up-to-date evidence-based patient assessment, referral and services information. </p>','HealthPathways',0,'solid',NULL),(12240,156805,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','02fe1dbc-05c5-40ab-8928-e9fc51696389','<p>Enabling faster and more streamlined referrals management to Queensland public hospitals. </p>','GP Smart Referrals',0,'solid',NULL),(12241,156806,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','6a69fe81-1429-4c9b-a4f9-7465688d09e7','<p>A free, six-month health program, delivered in partnership with the Queensland Government. </p>','My health for life',0,'solid',NULL),(12242,156858,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','a43982ac-81a6-46fd-adcd-e733fe912e12','<h4><strong>Children\'s Health Queensland Hospital and Health Service</strong></h4>\n<p>More information about referral templates and guidelines for CHQ.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/health-professionals/'),(12243,156859,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','bb4321c9-0a68-4414-a9b8-629360a58c97','<h4><strong>Asthma Australia</strong> </h4>\n<p>Connecting health professionals with the most current asthma management services, resources and opportunities.</p>','Visit the website',0,'solid','https://asthma.org.au/health-professionals/refer/'),(12244,156860,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','91fb67b4-e596-4417-a4c7-0d50c754d22f','<h4><strong>BreastScreen Queensland</strong></h4>\n<p>Information for health professionals and access to GP electronic recommendation forms.</p>','Visit the website',1,'solid','https://www.breastscreen.qld.gov.au/health-professionals.asp'),(12245,156861,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','9b1a2e50-5ab3-45e3-98fc-09ced7f4fa86','<h4><strong>Child and Youth Community Health Service</strong> </h4>\n<p>Uniting a variety of specialist community-based healthcare services and health promotion programs to help young people.</p>','Visit the website',1,'solid','https://www.childrens.health.qld.gov.au/chq/our-services/community-health-services/'),(12246,156862,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','a671f45b-7fba-4010-bcbd-f26dc6dc639f','<h4><strong>Hear and Say</strong></h4>\n<p>Experts with over 25 years’ experience in supporting children and young adults with their hearing, speaking and developmental needs.</p>','Visit the website',1,'solid','https://www.hearandsay.com.au/for-adults/health-professionals/'),(12247,156863,1,'2021-05-07 05:36:41','2021-05-07 05:36:41','b4047e02-6dca-4d37-9b8e-402131bff2f0','<h4><strong>Wesley Breast Clinic </strong></h4>\n<p>The Wesley Breast Clinic has a large team of highly experienced professionals specialising in breast imaging.</p>','Visit the website',1,'solid','http://wesley.com.au/services/clinical-services/breast-clinic/gp-referral'),(12248,156874,1,'2021-05-07 05:36:45','2021-05-07 05:36:45','e7dc6517-d47a-47ab-a8f2-22aa7bbbaa83','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12249,156875,1,'2021-05-07 05:36:45','2021-05-07 05:36:45','d31b1603-f327-4814-ad10-fff8e69dd810','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12250,156876,1,'2021-05-07 05:36:45','2021-05-07 05:36:45','0c5a5942-b457-4a07-b1f6-4cdcb2c1fd55','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12251,156877,1,'2021-05-07 05:36:45','2021-05-07 05:36:45','57176293-8394-42d6-810c-5cf3f8df0bcf','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12252,156878,1,'2021-05-07 05:36:45','2021-05-07 05:36:45','1ab0039a-95b7-4bc5-976c-efc5c5251007','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12253,156879,1,'2021-05-07 05:36:45','2021-05-07 05:36:45','c31d21cc-f68c-4de9-ae55-d101083cefea','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12254,161450,1,'2021-05-13 00:49:48','2021-05-13 00:49:48','f19a268d-3601-4240-894f-97392f29e00b','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12255,161451,1,'2021-05-13 00:49:48','2021-05-13 00:49:48','ef693f25-25bf-401d-b9dd-9067788acc3e','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12256,161452,1,'2021-05-13 00:49:48','2021-05-13 00:49:48','9c83df69-913c-4719-a063-6685ea98eb8d','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12257,161453,1,'2021-05-13 00:49:48','2021-05-13 00:49:48','3964ce9a-d071-47af-850f-b72abec04c7a','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12258,161454,1,'2021-05-13 00:49:48','2021-05-13 00:49:48','ef3d57ed-cc63-4763-bece-72fe55d51267','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12259,161455,1,'2021-05-13 00:49:48','2021-05-13 00:49:48','97ed46d4-51e4-45a9-8bf5-114024681bb5','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12260,161476,1,'2021-05-13 04:11:39','2021-05-13 04:11:39','338632c1-e5c8-40e4-a830-15ad7efe7fc3','<h4>Read our reports and plans</h4>\n<p>For more information about our planning processes, plans and reports, visit our reports and plans page.</p>','View reports and plans',0,'solid',NULL),(12261,161477,1,'2021-05-13 04:11:39','2021-05-13 04:11:39','aac787d5-ac13-41f4-9789-1f92ee2d5d61','<h4>Engage with us</h4>\n<p>Join the conversation and have your say on the health of communities in the North Brisbane and Moreton Bay region.</p>','My voice',1,'solid','https://myvoice.brisbanenorthphn.org.au'),(12262,162120,1,'2021-05-18 00:53:18','2021-05-18 00:53:18','28d69e5e-8d3e-4120-a242-8ac10da26c38','<h4>Service Navigator</h4>\n<p>Service Navigator is a helpline available to health professionals for advice and information about health and community services available throughout Brisbane north and the Moreton Bay Regional Council areas.<strong><br /></strong></p>\n<p><strong>Phone 1800 250 502</strong><br />(8.00 am – 4.00 pm, Monday to Friday)</p>','Learn more',1,'solid','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Service-Navigator-DL-WEB.pdf'),(12263,162121,1,'2021-05-18 00:53:18','2021-05-18 00:53:18','e238b1c7-2c0c-4b2b-b762-cfdeec1fee3f','<h4>My Mental Health Service Navigation</h4>\n<p>For information about mental health and suicide prevention services in the Brisbane north region, contact the My Mental Health Service Navigation team.</p>\n<p><strong>Phone 1800 752 235</strong> (8.30 am – 4.30 pm, Monday to Friday)<br /></p>','Learn more',1,'solid',NULL),(12264,162123,1,'2021-05-18 00:53:18','2021-05-18 00:53:18','b09c1d8b-0b43-4982-8be2-3f41d07c00f3','<h4>1300 MH CALL - Queensland Health</h4>\n<p>A confidential mental health telephone triage service that provides the first point of contact to public mental health services to Queenslanders. It is available 24 hours a day, 7 days a week and will link to the caller’s nearest Queensland Public Mental Health service.</p>\n<p><strong>Phone 1300 642 255</strong></p>','Learn more',1,'solid','https://metronorth.health.qld.gov.au/hospitals-services/mental-health-services/1300-mhcall-1300-64-2255'),(12265,162124,1,'2021-05-18 00:53:18','2021-05-18 00:53:18','4a2586fe-4792-4150-8d5c-cc8f932bc184','<h4>National Health Service Directory</h4>\n<p>The National Health Services Directory (NHSD) is available freely to the public and healthcare providers alike and facilitates access to service information for general practice, pharmacies, hospitals and emergency departments across Australia.</p>','Learn more',1,'solid','https://www.healthdirect.gov.au/australian-health-services'),(12266,162125,1,'2021-05-18 00:53:18','2021-05-18 00:53:18','be06733a-41c2-4c5f-8962-94daeb3f96ad','<h4>Chronic Wounds Directory</h4>\n<p>The directory lists private and public chronic wound management services in the Brisbane north and Moreton Bay region. It also provides a link to a suite of wound management pathways on Brisbane North HealthPathways.</p>','Learn more',1,'solid','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/chronic-wounds-directory'),(12267,162126,1,'2021-05-18 00:53:18','2021-05-18 00:53:18','9ac5a6d9-2133-4099-945e-47db8fd5e865','<h4>Queensland Network of Alcohol and Other Drug Agencies Ltd (QNADA)</h4>\n<p>The alcohol and other drugs referral guide helps direct healthcare professionals to locate suitable providers.<br /></p>','Learn more',1,'solid','https://qnada.org.au/service-finder/?fwp_phn_location=brisbane-north﻿'),(12268,162127,1,'2021-05-18 00:53:18','2021-05-18 00:53:18','24e8a224-dce1-46d2-9e1a-03dacd7a8367','<h4>RADAR service</h4>\n<p>The Residential Aged Care District Assessment and Referral (RADAR) Service is a nurse navigator led service facilitating access to hospital based and outreach services for acutely unwell and deteriorating people living in RACFs in the Brisbane north area. </p>\n<p><strong>Phone 1300 072 327</strong> (9.00am–5.00pm, 7 days per week) </p>','Learn more',1,'solid','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient'),(12269,162128,1,'2021-05-18 00:53:18','2021-05-18 00:53:18','f731068c-cea6-4071-bd60-a70a089b65c7','<h4>The Pharmacy Guild of Australia</h4>\n<p>Pharmacies Australia-wide are expanding the range of health services they provide to their patients, and are now evolving into local health hubs. Search for a pharmacy or a health condition to find out how a local pharmacy can help.</p>','Learn more',1,'solid','https://www.findapharmacy.com.au/'),(12270,162129,1,'2021-05-18 00:53:18','2021-05-18 00:53:18','3bbba42d-e09d-44a6-b345-5a1f3a3eabc9','<h4>Carer Gateway</h4>\n<p>By calling Carer Gateway, you will be connected with a new Australia-wide network of Carer Gateway service providers. </p>','Learn more',1,'solid','https://www.carergateway.gov.au/'),(12271,162130,1,'2021-05-18 00:53:18','2021-05-18 00:53:18','13c55a85-bf72-4271-950b-0476db27bf99','<h4>My Aged Care</h4>\n<p>My Aged Care is the Australian Government\'s starting point on your aged care journey. Find and access the government-funded services you need.</p>','Learn more',1,'solid','https://www.myagedcare.gov.au/'),(12272,162131,1,'2021-05-18 00:53:19','2021-05-18 00:53:19','74800e05-f405-4a9c-81e8-148ce686495e','<h4>13 HEALTH</h4>\n<p>13 HEALTH (13 43 25 84) is a confidential phone service that provides health advice to Queenslanders. Talk to a registered nurse 24 hours a day, 7 days a week for the cost of a local call.</p>','Learn more',1,'solid','https://www.qld.gov.au/health/contacts/advice/13health'),(12273,162132,1,'2021-05-18 00:53:19','2021-05-18 00:53:19','c52da8eb-259c-4dfa-a79c-48bfae6e64fa','<h4>SEQ Murri Service Directory</h4>\n<p>The Murri Service Directory provides a list of culturally appropriate services across a range of health and social needs. </p>\n<p>For more information refer to the <strong><a href=\"https://d1jydvs1x4rbvt.cloudfront.net/downloads/User-Guide.pdf?mtime=20200701120355&amp;focal=none\" target=\"_blank\" rel=\"noreferrer noopener\">user guide</a></strong>.</p>','Learn more',1,'solid','https://d1jydvs1x4rbvt.cloudfront.net/downloads/SEQ-Murri-Service-Directory-v6.0-January-2021.pdf?mtime=20210518105103&focal=none'),(12274,162136,1,'2021-05-18 00:54:18','2021-05-18 00:54:18','cbb178d9-721e-42c1-aacf-86856d0ca51f','<h4>Service Navigator</h4>\n<p>Service Navigator is a helpline available to health professionals for advice and information about health and community services available throughout Brisbane north and the Moreton Bay Regional Council areas.<strong><br /></strong></p>\n<p><strong>Phone 1800 250 502</strong><br />(8.00 am – 4.00 pm, Monday to Friday)</p>','Learn more',1,'solid','https://d1jydvs1x4rbvt.cloudfront.net/downloads/Service-Navigator-DL-WEB.pdf'),(12275,162137,1,'2021-05-18 00:54:18','2021-05-18 00:54:18','16e434bd-f27d-49a8-bbd8-be39e9c95dcc','<h4>My Mental Health Service Navigation</h4>\n<p>For information about mental health and suicide prevention services in the Brisbane north region, contact the My Mental Health Service Navigation team.</p>\n<p><strong>Phone 1800 752 235</strong> (8.30 am – 4.30 pm, Monday to Friday)<br /></p>','Learn more',1,'solid',NULL),(12276,162139,1,'2021-05-18 00:54:18','2021-05-18 00:54:18','d0087587-2c34-443a-93c3-3384cd60cda2','<h4>1300 MH CALL - Queensland Health</h4>\n<p>A confidential mental health telephone triage service that provides the first point of contact to public mental health services to Queenslanders. It is available 24 hours a day, 7 days a week and will link to the caller’s nearest Queensland Public Mental Health service.</p>\n<p><strong>Phone 1300 642 255</strong></p>','Learn more',1,'solid','https://metronorth.health.qld.gov.au/hospitals-services/mental-health-services/1300-mhcall-1300-64-2255'),(12277,162140,1,'2021-05-18 00:54:18','2021-05-18 00:54:18','5c056269-3f4a-4ec7-bbc6-2da8da231ebe','<h4>National Health Service Directory</h4>\n<p>The National Health Services Directory (NHSD) is available freely to the public and healthcare providers alike and facilitates access to service information for general practice, pharmacies, hospitals and emergency departments across Australia.</p>','Learn more',1,'solid','https://www.healthdirect.gov.au/australian-health-services'),(12278,162141,1,'2021-05-18 00:54:18','2021-05-18 00:54:18','09da326a-1690-48e2-b261-c8368fb92d03','<h4>Chronic Wounds Directory</h4>\n<p>The directory lists private and public chronic wound management services in the Brisbane north and Moreton Bay region. It also provides a link to a suite of wound management pathways on Brisbane North HealthPathways.</p>','Learn more',1,'solid','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient/chronic-wounds-directory'),(12279,162142,1,'2021-05-18 00:54:18','2021-05-18 00:54:18','3858f2f9-88f1-4768-ae94-11322f0e06a4','<h4>Queensland Network of Alcohol and Other Drug Agencies Ltd (QNADA)</h4>\n<p>The alcohol and other drugs referral guide helps direct healthcare professionals to locate suitable providers.<br /></p>','Learn more',1,'solid','https://qnada.org.au/service-finder/?fwp_phn_location=brisbane-north﻿'),(12280,162143,1,'2021-05-18 00:54:18','2021-05-18 00:54:18','447d2273-7202-4d68-ad3f-b71578eb86ad','<h4>RADAR service</h4>\n<p>The Residential Aged Care District Assessment and Referral (RADAR) Service is a nurse navigator led service facilitating access to hospital based and outreach services for acutely unwell and deteriorating people living in RACFs in the Brisbane north area. </p>\n<p><strong>Phone 1300 072 327</strong> (9.00am–5.00pm, 7 days per week) </p>','Learn more',1,'solid','https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient'),(12281,162144,1,'2021-05-18 00:54:18','2021-05-18 00:54:18','aed25a92-edc3-47df-a1a8-647cf4ab0066','<h4>The Pharmacy Guild of Australia</h4>\n<p>Pharmacies Australia-wide are expanding the range of health services they provide to their patients, and are now evolving into local health hubs. Search for a pharmacy or a health condition to find out how a local pharmacy can help.</p>','Learn more',1,'solid','https://www.findapharmacy.com.au/'),(12282,162145,1,'2021-05-18 00:54:18','2021-05-18 00:54:18','bf63882d-6f54-4602-be5e-ef0f9f7e1023','<h4>Carer Gateway</h4>\n<p>By calling Carer Gateway, you will be connected with a new Australia-wide network of Carer Gateway service providers. </p>','Learn more',1,'solid','https://www.carergateway.gov.au/'),(12283,162146,1,'2021-05-18 00:54:18','2021-05-18 00:54:18','30424dbb-56a1-4ca6-b961-6b4ccd6747ea','<h4>My Aged Care</h4>\n<p>My Aged Care is the Australian Government\'s starting point on your aged care journey. Find and access the government-funded services you need.</p>','Learn more',1,'solid','https://www.myagedcare.gov.au/'),(12284,162147,1,'2021-05-18 00:54:18','2021-05-18 00:54:18','fe4f8882-8006-4c91-bcca-21830b885d63','<h4>13 HEALTH</h4>\n<p>13 HEALTH (13 43 25 84) is a confidential phone service that provides health advice to Queenslanders. Talk to a registered nurse 24 hours a day, 7 days a week for the cost of a local call.</p>','Learn more',1,'solid','https://www.qld.gov.au/health/contacts/advice/13health'),(12285,162148,1,'2021-05-18 00:54:18','2021-05-18 00:54:18','ddbc5319-e56c-4d36-8daf-d779c9b91ac3','<h4>SEQ Murri Service Directory</h4>\n<p>The Murri Service Directory provides a list of culturally appropriate services across a range of health and social needs. </p>\n<p>For more information refer to the <strong><a href=\"https://d1jydvs1x4rbvt.cloudfront.net/downloads/User-Guide.pdf?mtime=20200701120355&amp;focal=none\" target=\"_blank\" rel=\"noreferrer noopener\">user guide</a></strong>.</p>','Learn more',1,'solid','https://d1jydvs1x4rbvt.cloudfront.net/downloads/SEQ-Murri-Service-Directory-v6.0-January-2021.pdf?mtime=20210518105103&focal=none'),(12286,162442,1,'2021-05-18 23:41:16','2021-05-18 23:41:16','4b08b521-c3ec-4129-94df-6fab28e15f36','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12287,162443,1,'2021-05-18 23:41:16','2021-05-18 23:41:16','e689de8a-49db-4f0d-bcc5-154a89a96931','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12288,162444,1,'2021-05-18 23:41:16','2021-05-18 23:41:16','566e14ea-5b0f-4d67-8468-6c978a0aebba','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12289,162445,1,'2021-05-18 23:41:16','2021-05-18 23:41:16','e0042021-720c-4e3b-8266-cbd47154c2c5','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12290,162446,1,'2021-05-18 23:41:16','2021-05-18 23:41:16','5d88f0e8-e23c-4513-8bca-cecda847d429','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12291,162447,1,'2021-05-18 23:41:16','2021-05-18 23:41:16','a23567f7-5cd1-4fdf-9329-704ae96e769b','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12292,162527,1,'2021-05-19 01:15:22','2021-05-19 01:15:33','f7b06e75-214a-4ffe-b0cb-b29e61c1dede','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12293,162528,1,'2021-05-19 01:15:22','2021-05-19 01:15:33','409c0927-a4b8-448b-ba56-d5f0dad4203f','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12294,162529,1,'2021-05-19 01:15:22','2021-05-19 01:15:33','18a5babe-7675-4290-86ba-cce2a52d80a4','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12295,162530,1,'2021-05-19 01:15:22','2021-05-19 01:15:33','2807fcb6-0b4b-45fc-96cf-0ee4d7d8585b','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12296,162531,1,'2021-05-19 01:15:22','2021-05-19 01:15:33','30a4192f-94c4-4120-ad5b-03aa6479fdc9','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12297,162532,1,'2021-05-19 01:15:22','2021-05-19 01:15:33','cd7cbb86-9192-4a24-b42a-da098e15dd2e','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12298,162546,1,'2021-05-19 01:15:53','2021-05-19 01:15:53','1fa2d899-2fb9-44b8-8f21-a2d2f26c3ffc','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12299,162547,1,'2021-05-19 01:15:53','2021-05-19 01:15:53','920cef55-0eed-4375-870d-d2c5eb9a1def','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12300,162548,1,'2021-05-19 01:15:53','2021-05-19 01:15:53','08b15307-125a-4eed-949d-48074e53a6ce','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12301,162549,1,'2021-05-19 01:15:53','2021-05-19 01:15:53','857b55d7-43ea-4925-97ab-164af646dbe0','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12302,162550,1,'2021-05-19 01:15:53','2021-05-19 01:15:53','a156f78c-e7b6-48c8-b240-eae4e539c2f9','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12303,162551,1,'2021-05-19 01:15:53','2021-05-19 01:15:53','fb09e24d-9e53-4de3-8dc7-fa57cbef9279','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12304,162566,1,'2021-05-19 01:15:54','2021-05-19 01:15:54','a0655492-5b2d-4177-9479-4e41b99caa00','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12305,162567,1,'2021-05-19 01:15:54','2021-05-19 01:15:54','59067476-8a58-43fd-91ec-36cbfad1ddd1','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12306,162568,1,'2021-05-19 01:15:54','2021-05-19 01:15:54','0579bd28-e3bd-4f58-aeaa-ad5894ef16b4','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12307,162569,1,'2021-05-19 01:15:54','2021-05-19 01:15:54','1dd7b608-6c68-4826-b6cc-58150b0be20f','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12308,162570,1,'2021-05-19 01:15:54','2021-05-19 01:15:54','116a2ac9-0647-4a2c-9b98-3f11a761974a','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12309,162571,1,'2021-05-19 01:15:54','2021-05-19 01:15:54','c0ce189f-bbd0-49dd-8d04-3d74f942f619','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12310,162586,1,'2021-05-19 01:16:21','2021-05-19 01:17:06','e2c8c58b-b461-49ec-9a81-7d6ee2d7b583','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12311,162587,1,'2021-05-19 01:16:21','2021-05-19 01:17:06','403013f5-015b-4df1-9dc4-467f90ead284','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12312,162588,1,'2021-05-19 01:16:21','2021-05-19 01:17:06','2077cb02-69ef-416e-8fcd-0b50f14b65f1','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12313,162589,1,'2021-05-19 01:16:21','2021-05-19 01:17:06','59523884-dd84-40e0-b640-3ec72bd2c11c','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12314,162590,1,'2021-05-19 01:16:21','2021-05-19 01:17:06','941c5e50-cfa8-45c9-97ac-ff545ad6737a','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12315,162591,1,'2021-05-19 01:16:21','2021-05-19 01:17:06','75686387-d2a1-4d85-a741-91321dc16428','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12316,162605,1,'2021-05-19 01:17:16','2021-05-19 01:17:16','56ccff7a-6120-4dd6-93e3-1f641f323812','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12317,162606,1,'2021-05-19 01:17:16','2021-05-19 01:17:16','2be1b4ac-3ae9-4a85-9f27-59cc6a137eea','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12318,162607,1,'2021-05-19 01:17:16','2021-05-19 01:17:16','22cacaa6-019c-4989-b074-3299dc975116','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12319,162608,1,'2021-05-19 01:17:16','2021-05-19 01:17:16','4000a6da-2388-4880-aeba-659241945fb4','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12320,162609,1,'2021-05-19 01:17:16','2021-05-19 01:17:16','0773d391-85b1-4b27-bc82-44aa54b4f807','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12321,162610,1,'2021-05-19 01:17:16','2021-05-19 01:17:16','2892a931-e503-48e4-85fe-e42f51233bf8','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12322,162625,1,'2021-05-19 01:17:17','2021-05-19 01:17:17','11a770d4-f918-4645-b059-0d28fe7df082','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12323,162626,1,'2021-05-19 01:17:17','2021-05-19 01:17:17','b7e33180-a7f3-4ea0-9606-6416540525cd','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12324,162627,1,'2021-05-19 01:17:17','2021-05-19 01:17:17','bce9c695-03c8-4581-b382-c7340d3ec8c1','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12325,162628,1,'2021-05-19 01:17:17','2021-05-19 01:17:17','62f1f60c-1843-4c48-a387-3852f1112b12','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12326,162629,1,'2021-05-19 01:17:17','2021-05-19 01:17:17','716835ec-e6fe-480e-89c1-d060bce32662','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12327,162630,1,'2021-05-19 01:17:17','2021-05-19 01:17:17','d8514475-0ae2-413d-b438-daed43747269','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12328,162645,1,'2021-05-19 01:17:53','2021-05-19 01:17:53','d98f5e43-8622-43cb-8d80-3a0d9eef0dae','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12329,162646,1,'2021-05-19 01:17:53','2021-05-19 01:17:53','ee11cd67-5fd0-4f48-b863-02a52878668b','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12330,162647,1,'2021-05-19 01:17:53','2021-05-19 01:17:53','e8d6f7ac-2da5-4d2a-a62e-3ede3ca7beb3','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12331,162648,1,'2021-05-19 01:17:53','2021-05-19 01:17:53','84567c13-9224-46b7-b8eb-8a335dbf5df3','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12332,162649,1,'2021-05-19 01:17:53','2021-05-19 01:17:53','64782371-b506-4882-bfab-6a3f83fa6879','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12333,162650,1,'2021-05-19 01:17:53','2021-05-19 01:17:53','fa07ef54-a454-4b2c-ba62-7e6f868d5109','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12334,162664,1,'2021-05-19 01:18:12','2021-05-19 01:18:12','59b3f7fb-b2bc-417c-a81b-a476c0d5cec9','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12335,162665,1,'2021-05-19 01:18:12','2021-05-19 01:18:12','3f64259d-954c-4284-b88f-3bfae2276035','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12336,162666,1,'2021-05-19 01:18:12','2021-05-19 01:18:12','9eef6fc8-1b39-460d-9f44-015f8da80f79','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12337,162667,1,'2021-05-19 01:18:12','2021-05-19 01:18:12','6b8e3969-7d15-42de-8077-fc196bfd489d','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12338,162668,1,'2021-05-19 01:18:12','2021-05-19 01:18:12','9fa10d7f-b126-4f8f-abae-1399a32d9635','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12339,162669,1,'2021-05-19 01:18:12','2021-05-19 01:18:12','647ca72e-6080-43a9-9fc8-42f34445eb2f','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12340,162684,1,'2021-05-19 01:18:12','2021-05-19 01:18:12','0d9c0098-434d-4d0a-b98d-09718ed5d2ff','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12341,162685,1,'2021-05-19 01:18:12','2021-05-19 01:18:12','6640c445-5895-4a6e-9ca6-b8793f52411b','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12342,162686,1,'2021-05-19 01:18:12','2021-05-19 01:18:12','3b8d5d2b-65b1-4287-8513-b35809a78038','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12343,162687,1,'2021-05-19 01:18:12','2021-05-19 01:18:12','dcd1fdc9-114c-4c24-90cb-f64c13b4bcd3','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12344,162688,1,'2021-05-19 01:18:12','2021-05-19 01:18:12','43236236-3c99-4ac1-88d5-2017e6519fdc','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12345,162689,1,'2021-05-19 01:18:12','2021-05-19 01:18:12','8eb44a65-85e7-447f-b193-00f837fdcb1d','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12346,162704,1,'2021-05-19 01:18:47','2021-05-19 01:18:47','e4c94214-7f8f-4a36-a62d-75a86e9deb3e','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12347,162705,1,'2021-05-19 01:18:47','2021-05-19 01:18:47','23ad8623-983d-45bb-8b9f-94ae511de9ee','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12348,162706,1,'2021-05-19 01:18:47','2021-05-19 01:18:47','e59309a1-09c4-4764-b80a-af848fdaadde','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12349,162707,1,'2021-05-19 01:18:47','2021-05-19 01:18:47','a856dc5f-70dd-49de-8169-de52ec91c374','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12350,162708,1,'2021-05-19 01:18:47','2021-05-19 01:18:47','17458d9a-dc0b-42eb-a837-1063e05be2ed','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12351,162709,1,'2021-05-19 01:18:47','2021-05-19 01:18:47','e3ea16af-b583-45b7-adf2-985f4999cd3a','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12352,162719,1,'2021-05-19 01:19:12','2021-05-19 01:19:12','4b243cc3-bb6e-40f6-b9bc-172fc8e30726','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12353,162720,1,'2021-05-19 01:19:12','2021-05-19 01:19:12','ddb073fe-aead-4ae2-93ee-15a5143af515','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12354,162721,1,'2021-05-19 01:19:13','2021-05-19 01:19:13','d6f05722-fea3-420b-8eb9-950af1362f30','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12355,162722,1,'2021-05-19 01:19:13','2021-05-19 01:19:13','0bafc221-150b-4857-9fa9-6ca9a0a51526','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12356,162723,1,'2021-05-19 01:19:13','2021-05-19 01:19:13','be5563b0-5f0e-405a-9df6-8a32b389b7ca','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12357,162724,1,'2021-05-19 01:19:13','2021-05-19 01:19:13','1016a55a-cd54-4c36-bf52-06d355c23b69','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12358,162744,1,'2021-05-19 01:19:54','2021-05-19 01:20:01','725d1362-d48e-4064-b2cd-6aca8980c237','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12359,162745,1,'2021-05-19 01:19:54','2021-05-19 01:20:01','8d52cd62-59fa-4705-baaf-e2bb314bd0ea','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12360,162746,1,'2021-05-19 01:19:54','2021-05-19 01:20:01','5ef4b7aa-9e47-4be7-8ed8-ca42433ac918','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12361,162747,1,'2021-05-19 01:19:54','2021-05-19 01:20:01','5db6bbaa-7122-4992-a768-7889a8004129','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12362,162748,1,'2021-05-19 01:19:54','2021-05-19 01:20:01','cb1349ac-35a7-4cc0-904a-b99462115caf','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12363,162749,1,'2021-05-19 01:19:54','2021-05-19 01:20:01','ab4304e1-bdbf-4b3e-81cc-39975b2865ab','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12364,162763,1,'2021-05-19 01:20:05','2021-05-19 01:20:05','6a9bd7d7-e831-49d7-8b0e-e4f2ebad7cb0','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12365,162764,1,'2021-05-19 01:20:05','2021-05-19 01:20:05','c81c0402-2992-4d64-b645-b1876858bb42','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12366,162765,1,'2021-05-19 01:20:05','2021-05-19 01:20:05','63cf9fe0-8e60-43e2-a2ba-0abd8a3468fb','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12367,162766,1,'2021-05-19 01:20:05','2021-05-19 01:20:05','af59a402-9b58-4029-88fe-8bab951a804f','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12368,162767,1,'2021-05-19 01:20:05','2021-05-19 01:20:05','e9167cb0-5bec-4ec4-bf55-cad5b8ff5197','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12369,162768,1,'2021-05-19 01:20:05','2021-05-19 01:20:05','b10e7390-b81c-4dba-a3e4-40f3a2e24f70','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12370,162783,1,'2021-05-19 01:20:06','2021-05-19 01:20:06','594de80b-ff6b-46c7-a020-50db7599f9b4','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12371,162784,1,'2021-05-19 01:20:06','2021-05-19 01:20:06','fc74e545-f473-44fa-9c0a-5c6e447b759a','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12372,162785,1,'2021-05-19 01:20:06','2021-05-19 01:20:06','a116189e-02ec-436b-a654-93dde19ff0a8','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12373,162786,1,'2021-05-19 01:20:06','2021-05-19 01:20:06','26c76949-56fc-4446-a942-3ed2fd191f42','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12374,162787,1,'2021-05-19 01:20:06','2021-05-19 01:20:06','ed1b6d60-3dbe-415c-bfc1-f9412b83c6e9','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12375,162788,1,'2021-05-19 01:20:06','2021-05-19 01:20:06','ad3f6ba5-e2a4-4353-a199-2d9f6dcfa1b0','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12376,162803,1,'2021-05-19 01:20:10','2021-05-19 01:20:10','77e69ab3-ed4f-44c0-a3cb-e6f422225011','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12377,162804,1,'2021-05-19 01:20:10','2021-05-19 01:20:10','8332752c-0c09-429a-8be6-c4472da40211','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12378,162805,1,'2021-05-19 01:20:10','2021-05-19 01:20:10','a3cfab70-8c32-4e88-aa8e-017a6a63ca65','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12379,162806,1,'2021-05-19 01:20:10','2021-05-19 01:20:10','045c99c6-7407-49b1-98fe-3e41fdddc0f3','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12380,162807,1,'2021-05-19 01:20:10','2021-05-19 01:20:10','3f761cac-ffcb-49d4-a0a4-654e697bf3dd','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12381,162808,1,'2021-05-19 01:20:10','2021-05-19 01:20:10','551c20fe-72f1-43d4-9e5e-d1400c81a058','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12382,162823,1,'2021-05-19 01:20:41','2021-05-19 01:24:30','b8d295a7-e043-409c-9cb0-f3e75f5ff151','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12383,162824,1,'2021-05-19 01:20:41','2021-05-19 01:24:30','8bc0d961-de98-4308-89ff-122a6862c312','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12384,162825,1,'2021-05-19 01:20:41','2021-05-19 01:24:30','6ccff11a-3a99-4496-b973-099b312fd28b','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12385,162826,1,'2021-05-19 01:20:41','2021-05-19 01:24:30','d726f80c-68d5-498e-8046-6e51d2ee767a','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12386,162827,1,'2021-05-19 01:20:41','2021-05-19 01:24:30','c6a7d503-046f-44de-a8c8-faa523603c0b','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12387,162828,1,'2021-05-19 01:20:41','2021-05-19 01:24:30','60a7fcd5-1a84-4624-93d1-6a4028d3eb3d','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12388,162841,1,'2021-05-19 01:25:13','2021-05-19 01:25:13','04d22cc8-c984-4bbf-9243-ead435f48554','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12389,162842,1,'2021-05-19 01:25:13','2021-05-19 01:25:13','492c73b9-7381-44d0-a0d5-3757c964a88a','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12390,162843,1,'2021-05-19 01:25:13','2021-05-19 01:25:13','42a928cf-b594-4c1f-b076-9d28f35fde6c','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12391,162844,1,'2021-05-19 01:25:13','2021-05-19 01:25:13','5f8a0804-989f-4d90-b3ef-1acfc688eac0','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12392,162845,1,'2021-05-19 01:25:13','2021-05-19 01:25:13','6a8ac765-715b-4ec3-8aef-9f1409cda57b','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12393,162846,1,'2021-05-19 01:25:13','2021-05-19 01:25:13','6375b5a2-d42d-4d77-a71f-e13d03e444b8','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12394,162860,1,'2021-05-19 01:25:14','2021-05-19 01:25:14','e5079e04-dcf3-46eb-a059-24a640c53456','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12395,162861,1,'2021-05-19 01:25:14','2021-05-19 01:25:14','9031925d-db95-4d75-acf2-c4de6dffb4bd','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12396,162862,1,'2021-05-19 01:25:14','2021-05-19 01:25:14','4ed706f3-62c1-454c-9739-c54382563bcc','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12397,162863,1,'2021-05-19 01:25:14','2021-05-19 01:25:14','b1305ef4-4600-48b2-845e-c62b4411f64d','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12398,162864,1,'2021-05-19 01:25:14','2021-05-19 01:25:14','40dde93b-7501-4fa6-946d-952b7adfeb41','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12399,162865,1,'2021-05-19 01:25:14','2021-05-19 01:25:14','63e9392e-bb57-47ba-864f-4c2d45c424e9','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12400,162879,1,'2021-05-19 01:25:20','2021-05-19 01:25:20','9864918d-54b4-45cb-914c-5b134417ac11','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12401,162880,1,'2021-05-19 01:25:20','2021-05-19 01:25:20','1e025863-b41c-4c47-83c2-e79f10185c52','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12402,162881,1,'2021-05-19 01:25:20','2021-05-19 01:25:20','648369bb-f01f-4c01-9e79-61fcc6d45ef4','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12403,162882,1,'2021-05-19 01:25:20','2021-05-19 01:25:20','0c17f5d1-8dcd-4672-b8df-4644e495431b','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12404,162883,1,'2021-05-19 01:25:20','2021-05-19 01:25:20','0ada676f-70bf-4095-9bc3-a1e8f6139934','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12405,162884,1,'2021-05-19 01:25:20','2021-05-19 01:25:20','b8e807fd-4715-43f1-b186-0ce9705335d6','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12406,162898,1,'2021-05-19 01:26:11','2021-05-19 01:29:31','e56027bf-6fea-4e6c-9a16-454a2c0da74b','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12407,162899,1,'2021-05-19 01:26:11','2021-05-19 01:29:31','eb764ed4-d754-4a3a-8b33-8246b2f9645a','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12408,162900,1,'2021-05-19 01:26:11','2021-05-19 01:29:31','02c27d23-9fea-4773-8caf-367c9cad0569','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12409,162901,1,'2021-05-19 01:26:11','2021-05-19 01:29:31','39054273-b0f3-41ea-ba47-9d0ec78f243d','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12410,162902,1,'2021-05-19 01:26:11','2021-05-19 01:29:31','e00bf499-e7a0-42e3-8497-1e420a2fffd0','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12411,162903,1,'2021-05-19 01:26:11','2021-05-19 01:29:31','5b80b72f-5349-4ac9-aaa5-a1f9f6a3d507','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12412,162922,1,'2021-05-19 01:30:30','2021-05-19 01:30:30','4764dee3-d4ed-4ca0-b62d-a5e0383aed34','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12413,162923,1,'2021-05-19 01:30:30','2021-05-19 01:30:30','d013f7aa-2b6a-4577-9df6-1903f1f3478d','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12414,162924,1,'2021-05-19 01:30:30','2021-05-19 01:30:30','9ebb9215-b896-4765-b27c-19faef89157b','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12415,162925,1,'2021-05-19 01:30:30','2021-05-19 01:30:30','96c2f63c-0ced-4e70-9dd4-f6f7f8500ca4','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12416,162926,1,'2021-05-19 01:30:30','2021-05-19 01:30:30','f49edb17-b150-47a1-8787-056049134e0b','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12417,162927,1,'2021-05-19 01:30:30','2021-05-19 01:30:30','d70282ed-a2d4-4ef9-ab9b-c30c579034dc','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12418,162942,1,'2021-05-19 01:30:31','2021-05-19 01:30:31','5cbd91f5-751c-48bf-ade2-a56f15b7ba87','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12419,162943,1,'2021-05-19 01:30:31','2021-05-19 01:30:31','6493747c-a298-48c6-84d0-a9e0df209e92','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12420,162944,1,'2021-05-19 01:30:31','2021-05-19 01:30:31','ff0c3629-e429-416a-b3b8-4717b8e2402f','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12421,162945,1,'2021-05-19 01:30:31','2021-05-19 01:30:31','f7442748-3871-445d-b86a-5f07d93a6bb4','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12422,162946,1,'2021-05-19 01:30:31','2021-05-19 01:30:31','32cb44b0-e7b2-40ec-a513-200494c5f643','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12423,162947,1,'2021-05-19 01:30:32','2021-05-19 01:30:32','9adc3578-4cfe-4ef0-a3b2-6c08917f1143','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12424,162962,1,'2021-05-19 01:31:35','2021-05-19 01:31:35','d3e324dc-4fd9-48b5-b911-119a65690613','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12425,162963,1,'2021-05-19 01:31:35','2021-05-19 01:31:35','c7bc45b3-1f31-433d-843b-99d64019c2e8','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12426,162964,1,'2021-05-19 01:31:35','2021-05-19 01:31:35','59be050a-aeef-4275-b4f4-091bc5ccb596','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12427,162965,1,'2021-05-19 01:31:35','2021-05-19 01:31:35','138c06f7-7edd-4a07-a78b-7ac4f65f4267','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12428,162966,1,'2021-05-19 01:31:35','2021-05-19 01:31:35','7a748420-708b-467e-b5e1-c09cb49b4fcc','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12429,162967,1,'2021-05-19 01:31:35','2021-05-19 01:31:35','6f3698ca-cb81-49cf-9c2f-aa8f17a2d54e','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12430,162982,1,'2021-05-19 01:33:57','2021-05-19 01:36:28','be462a17-bc50-4843-bcd4-636b8771057f','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12431,162983,1,'2021-05-19 01:33:57','2021-05-19 01:36:28','f0481998-a136-46ae-a183-47ad9312f41b','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12432,162984,1,'2021-05-19 01:33:57','2021-05-19 01:36:28','28b6fa6a-45fc-41f4-8f0e-663cc76fa00c','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12433,162985,1,'2021-05-19 01:33:57','2021-05-19 01:36:28','c1f5f12b-03f0-409b-b92b-dbffd2b7caf4','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12434,162986,1,'2021-05-19 01:33:57','2021-05-19 01:36:28','54c962e7-83cd-461a-8089-67b6f195306e','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12435,162987,1,'2021-05-19 01:33:57','2021-05-19 01:36:28','f17fc83c-dc2c-4fe3-b6e5-6a22c695c12f','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12436,162999,1,'2021-05-19 01:36:50','2021-05-19 01:36:50','fe3d2e77-6d26-413b-ae66-bea8248d5f86','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12437,163000,1,'2021-05-19 01:36:50','2021-05-19 01:36:50','9527e41b-88ae-44e5-8b95-8beba6508563','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12438,163001,1,'2021-05-19 01:36:50','2021-05-19 01:36:50','e3e5597f-875a-4ce3-88ed-2adb3b9916dc','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12439,163002,1,'2021-05-19 01:36:50','2021-05-19 01:36:50','e573ad70-68b3-40db-b58b-1df70e4b190b','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12440,163003,1,'2021-05-19 01:36:50','2021-05-19 01:36:50','b36c7663-848e-44e8-9786-14ac43e26e5c','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12441,163004,1,'2021-05-19 01:36:50','2021-05-19 01:36:50','5a00336c-e1a8-4220-bd7d-27d38224db7b','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12442,163017,1,'2021-05-19 01:36:51','2021-05-19 01:36:51','afe9e8a9-3e47-4e01-b24f-158fcc960451','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12443,163018,1,'2021-05-19 01:36:51','2021-05-19 01:36:51','f8032718-5eef-44bd-9b63-6b78823435a5','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12444,163019,1,'2021-05-19 01:36:51','2021-05-19 01:36:51','6782d56f-270c-423e-87e8-da5ca5a89010','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12445,163020,1,'2021-05-19 01:36:51','2021-05-19 01:36:51','8733d018-1c57-4fe4-affd-b4e8549d6d11','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12446,163021,1,'2021-05-19 01:36:51','2021-05-19 01:36:51','1260040f-5663-4f82-a33e-816a066c57c8','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12447,163022,1,'2021-05-19 01:36:51','2021-05-19 01:36:51','b837b7b4-4a78-4d4d-b4a1-44c3c891b0e3','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12448,163035,1,'2021-05-19 01:36:58','2021-05-19 01:36:58','aa819748-ab11-47d6-af7e-c9f0cff48a16','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12449,163036,1,'2021-05-19 01:36:58','2021-05-19 01:36:58','09a30cbc-e611-48c3-893a-b7510d2d19c0','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12450,163037,1,'2021-05-19 01:36:58','2021-05-19 01:36:58','35dd408a-c5c5-4690-b245-19485e7e779e','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12451,163038,1,'2021-05-19 01:36:58','2021-05-19 01:36:58','3c1acbe8-24b2-476f-8c75-6faef7d78fe8','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12452,163039,1,'2021-05-19 01:36:58','2021-05-19 01:36:58','53e2673f-d672-446d-a15c-c85e68c5f07a','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12453,163040,1,'2021-05-19 01:36:58','2021-05-19 01:36:58','07576faf-051e-4ca2-a6bf-ae6ac39dcda1','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12454,163053,1,'2021-05-19 01:39:35','2021-05-19 01:39:35','25571aa4-a996-49a9-8c80-9a2e2afd61bc','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12455,163054,1,'2021-05-19 01:39:35','2021-05-19 01:39:35','99481395-4e59-4362-bf64-c326c757cc92','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12456,163055,1,'2021-05-19 01:39:36','2021-05-19 01:39:36','367e64b9-e873-4e08-9bc5-b0147b8f17c8','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12457,163056,1,'2021-05-19 01:39:36','2021-05-19 01:39:36','e878a681-3845-4ad7-a71b-57167c1dd279','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12458,163057,1,'2021-05-19 01:39:36','2021-05-19 01:39:36','22a3c68c-5800-407f-ad1a-0df3cc928a92','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12459,163058,1,'2021-05-19 01:39:36','2021-05-19 01:39:36','114dd1c8-d4db-4a7b-ad7e-88097d765c01','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12460,163071,1,'2021-05-19 01:40:11','2021-05-19 01:40:35','e5345037-cf38-464a-ac89-4344c1dbfe00','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12461,163072,1,'2021-05-19 01:40:11','2021-05-19 01:40:35','46d0b933-920b-44f0-8009-b2a41f446325','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12462,163073,1,'2021-05-19 01:40:11','2021-05-19 01:40:35','80f4bc93-e91a-4ee3-b7d4-620b5a37a5a3','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12463,163074,1,'2021-05-19 01:40:11','2021-05-19 01:40:35','d806dd39-22cb-4dcd-828c-534cc4e37a56','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12464,163075,1,'2021-05-19 01:40:11','2021-05-19 01:40:35','b55ed1e4-03d5-4649-9e66-f1c3725d2865','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12465,163076,1,'2021-05-19 01:40:11','2021-05-19 01:40:35','8efd2c3d-a399-49bf-be9d-e0a833037d64','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12466,163088,1,'2021-05-19 01:40:44','2021-05-19 01:40:44','907fe481-d758-4123-83bc-e5d95fc561fe','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12467,163089,1,'2021-05-19 01:40:44','2021-05-19 01:40:44','c9538f21-a23f-47da-a74e-42649cb9d7f9','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12468,163090,1,'2021-05-19 01:40:44','2021-05-19 01:40:44','903b5922-4d11-4841-9933-1a555488ef4a','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12469,163091,1,'2021-05-19 01:40:44','2021-05-19 01:40:44','ca26cda9-0794-4bef-a045-0762db20450e','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12470,163092,1,'2021-05-19 01:40:44','2021-05-19 01:40:44','3864258e-8ebc-47ed-83b0-3b965a84da05','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12471,163093,1,'2021-05-19 01:40:44','2021-05-19 01:40:44','3d9c50db-fcf2-4b50-89df-da52483ce248','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12472,163106,1,'2021-05-19 01:40:45','2021-05-19 01:40:45','ed2cd063-8489-4622-a020-4ddd25b36bd6','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12473,163107,1,'2021-05-19 01:40:45','2021-05-19 01:40:45','ea9d511d-303b-451a-a791-617fbd6f3ea6','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12474,163108,1,'2021-05-19 01:40:45','2021-05-19 01:40:45','1eb3dcad-d231-4c5d-9895-5ed971126084','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12475,163109,1,'2021-05-19 01:40:45','2021-05-19 01:40:45','97f3e4bd-9227-4198-8826-fe8af96be82b','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12476,163110,1,'2021-05-19 01:40:45','2021-05-19 01:40:45','8dbef67f-b8cb-4de6-a6ac-cad3b9d7d48a','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12477,163111,1,'2021-05-19 01:40:45','2021-05-19 01:40:45','b90dd0ba-189f-43f8-a1e4-01ca803303a4','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL),(12478,163124,1,'2021-05-19 01:40:52','2021-05-19 01:40:52','54067ab0-da3e-40e1-bb87-49f7544c48d0','<h5><strong>Dr Rasika Hendahewa</strong></h5>\n<p><strong>A/Medical lead surgical services and Director of Surgery<br />MBBS.MS, Dip (Lap surgery) FRACS, MRCS, FICS</strong></p>\n<p><em>General, Breast, Endocrine, Colorectal, Anti-reflux, Complex Hernia, Paediatric Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12479,163125,1,'2021-05-19 01:40:52','2021-05-19 01:40:52','d23a7d20-f66e-410f-ac66-e4771bea37dd','<h5><strong>Dr Sujith Ratnayake</strong></h5>\n<p><strong>MBBS.MD, FRACS</strong></p>\n<p><em>General Surgery, Breast, Endocrine, Colorectal, Varicose Veins, Complex Hernia, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12480,163126,1,'2021-05-19 01:40:52','2021-05-19 01:40:52','d0b10715-90ec-469f-9759-49c233a61654','<h5><strong>Dr Vinay Gounder</strong></h5>\n<p><strong>MBBS.FRACS</strong></p>\n<p><em>General, Breast, Endocrine and Oncoplastic</em></p>',NULL,0,'solid',NULL),(12481,163127,1,'2021-05-19 01:40:52','2021-05-19 01:40:52','3fb4a5b1-5576-4169-9504-9461c460fed8','<h5><strong>Dr Daniel Mehanna</strong></h5>\n<p><strong>MBBS, BSc(med), FRACS, Diploma Laparoscopic Surgery</strong></p>\n<p><em>General and Laparoscopic surgery, Thyroid, Colorectal, Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12482,163128,1,'2021-05-19 01:40:52','2021-05-19 01:40:52','9aa28d78-0e46-4050-a2b9-cbaa55a7a5b0','<h5><strong>Dr Boris Strekozov</strong></h5>\n<p><strong>MD, FRACS</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em></p>',NULL,0,'solid',NULL),(12483,163129,1,'2021-05-19 01:40:52','2021-05-19 01:40:52','7fae4fdf-eff2-4691-8ecd-84fa3034c123','<h5><strong>Dr Dinesh Ratnapala</strong></h5>\n<p><strong>Joining the team in May 2021</strong></p>\n<p><em>General surgery, Laparoscopic surgery, Breast surgery and Colorectal Diagnostic and Therapeutic Endo Colonoscopy</em><br /></p>',NULL,0,'solid',NULL);
/*!40000 ALTER TABLE `matrixcontent_column` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `matrixcontent_contentbuilder`
--

LOCK TABLES `matrixcontent_contentbuilder` WRITE;
/*!40000 ALTER TABLE `matrixcontent_contentbuilder` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `matrixcontent_contentbuilder` VALUES (320,21309,1,'2021-06-21 06:26:26','2021-06-21 06:26:26','fb169e33-72e9-4563-8b08-525ed9cae5b1','Here is some text','Contact us',NULL,NULL,NULL,NULL,'Contact us',NULL,NULL,NULL,NULL),(345,21335,1,'2021-06-21 06:33:44','2021-06-21 06:33:44','ed443dc9-8b32-4386-a44b-017dfb19d530',NULL,NULL,NULL,'Get in touch','Need to chat to Andrew about what we want to do for the contact page. Just a form?',NULL,NULL,NULL,NULL,'Get in touch',NULL),(346,21337,1,'2021-06-21 06:33:45','2021-06-21 06:33:45','56d0f854-20a9-46e9-b2f1-e5e3cf41126a',NULL,NULL,NULL,'Get in touch','Need to chat to Andrew about what we want to do for the contact page. Just a form?',NULL,NULL,NULL,NULL,'Get in touch',NULL),(347,21339,1,'2021-06-21 06:33:48','2021-06-21 06:33:48','c4ca89df-d83f-40b4-bb96-4ad0e430d529',NULL,NULL,NULL,'Get in touch','Need to chat to Andrew about what we want to do for the contact page. Just a form?',NULL,NULL,NULL,NULL,'Get in touch',NULL),(453,21772,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','b93d6c5a-41e8-48c5-9ab4-28f390b4ba4f','We’re a creative agency whose clients sleep at night. \nOur projects are backed by so much research and common-sense strategy that even the boldest directions don’t seem that big of a leap.\nThere are no jazz hands, no smoke, no mirrors, no special effects. \nHere it’s just good research, good strategies and good ideas to help you do what you actually need to do. \nFor our clients, this means creative confidence for them, their team and those higher up the chain. Doesn’t that sound nice for a change?','Uncross your fingers. Let out that breath you’ve been holding.',NULL,NULL,NULL,NULL,'Who we are',NULL,NULL,NULL,NULL),(454,21773,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','bcbbf07a-b2f1-4b11-baae-85f2cf0210a1',NULL,NULL,'What makes us different?',NULL,NULL,NULL,NULL,'What makes us different',NULL,NULL,NULL),(455,21779,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','8744872a-8ddf-473b-9c97-7dc562f7bcc1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Our people',NULL,NULL),(456,21780,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','a9500596-4b5a-4317-b4db-1b63fe9577cf',NULL,'Our purpose is to make a meaningful difference to people’s lives.',NULL,NULL,NULL,NULL,'Our purpose',NULL,NULL,NULL,NULL),(457,21782,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','38518e74-e405-4084-81b7-5964b02a90cb',NULL,NULL,NULL,'Strategy first, then creative','We seek to understand how humans connect, engage, decide and change. \nThrough deep understanding, we can influence attitudes and behaviours—in a positive and empowering way for good.\nEvidence-based strategy is built on unique insights that guide all the work to come.\nWe’ve seen time and time again how evidence guides quality development while also giving our clients confidence in decision-making and approvals to move forward.\nSee our proven methodologies for how we make every project a success.',NULL,NULL,NULL,NULL,'Our strategy',NULL),(458,21790,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','903af61a-89d6-4178-9be5-a1b2c20afff5',NULL,NULL,NULL,NULL,NULL,'Our partners',NULL,NULL,NULL,NULL,'Our partners'),(459,21797,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','47354929-5f81-445f-868c-2f4be0215d43','Nope. \nWhy New Word Order? We like finding new words to tell old stories. Ordering old words in new ways. Finding order in a mess of complexity. \nWe started out as a strategic communications agency when ex-journo Suzanne Oxford got seriously fed up with all the sub-par corporate comms out there. \nArmed with a red pen, a little optimism and an insatiable thirst for story only a decade in journalism can create, Suzanne ventured into the brave new world to write corporate comms wrongs. And so, in 1998, New Word Order was born. \nA few years later, creative and strategist Scott Oxford joined the fun. We hired a few more folks, made a few more connections, and slowly but surely became the strategic creative powerhouse our clients know and love us for today.','Didn’t you mean New World Order?',NULL,NULL,NULL,NULL,'Our story',NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `matrixcontent_contentbuilder` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `matrixcontent_footercodes`
--

LOCK TABLES `matrixcontent_footercodes` WRITE;
/*!40000 ALTER TABLE `matrixcontent_footercodes` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `matrixcontent_footercodes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `matrixcontent_footernavigation`
--

LOCK TABLES `matrixcontent_footernavigation` WRITE;
/*!40000 ALTER TABLE `matrixcontent_footernavigation` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `matrixcontent_footernavigation` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `matrixcontent_headercodes`
--

LOCK TABLES `matrixcontent_headercodes` WRITE;
/*!40000 ALTER TABLE `matrixcontent_headercodes` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `matrixcontent_headercodes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `matrixcontent_homepageslideshow`
--

LOCK TABLES `matrixcontent_homepageslideshow` WRITE;
/*!40000 ALTER TABLE `matrixcontent_homepageslideshow` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `matrixcontent_homepageslideshow` VALUES (85,44967,1,'2021-09-10 02:02:41','2021-11-09 01:32:15','83e50bd9-65f2-4b5a-84ca-6cfb51d1fdf8','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(87,44969,1,'2021-09-10 02:02:41','2021-11-09 01:32:15','3f9d12fc-c7fc-45fa-8dfb-a7c33f631f3d','<p>Confusion</p>','<p>Knowledge</p>'),(88,44970,1,'2021-09-10 02:02:41','2021-11-09 01:32:15','8d9f6b91-f4a4-437a-a690-4d43d4f6fb76','<p>family <br />violence</p>','<p>culture <br />change</p>'),(89,44971,1,'2021-09-10 02:02:41','2021-11-09 01:32:15','f41a3144-69cc-480d-9440-1f6877fd9a8d','<p>effort</p>','<p>growth</p>'),(90,44973,1,'2021-09-10 02:02:41','2021-09-10 02:02:41','f5748c7c-e52a-4793-8f87-87edfe3f7b73','same-same','inspiration'),(91,44974,1,'2021-09-10 02:02:41','2021-09-10 02:02:41','4732c223-e81a-469e-92e7-fbfb052d806d','suicide','conversations'),(92,44975,1,'2021-09-10 02:02:41','2021-09-10 02:02:41','d2f43f14-82d4-4c33-b816-736462a5d5fe','no. 3\'s','no. 2\'s'),(93,44976,1,'2021-09-10 02:02:41','2021-09-10 02:02:41','e9a09985-6734-4e94-9b7d-48893d858bac','domestic and family violence','culture change'),(94,44977,1,'2021-09-10 02:02:41','2021-09-10 02:02:41','f5303296-00a4-4726-b631-73e907fd0d77','stagnated growth','empathy and care'),(100,44997,1,'2021-09-10 02:23:39','2021-09-10 02:23:39','e3dc8227-06fe-477b-aa73-d22192fb33c3','same-\nsame','inspi-\nration'),(101,44998,1,'2021-09-10 02:23:39','2021-09-10 02:23:39','a7395a77-d496-4efb-9dfa-d5cdd27e40db','suicide','conver-\nsations'),(102,44999,1,'2021-09-10 02:23:39','2021-09-10 02:23:39','b93798cb-9132-450c-a5b7-22f80428bd6f','no. 3\'s','no. 2\'s'),(103,45000,1,'2021-09-10 02:23:39','2021-09-10 02:23:39','72e3eccd-ea6c-4347-9630-5cd8341bf682','domestic and \nfamily violence','culture \nchange'),(104,45001,1,'2021-09-10 02:23:39','2021-09-10 02:23:39','4292201d-5a16-44cd-9d21-046274339698','stagnated \ngrowth','empathy \nand care'),(110,45009,1,'2021-09-10 02:25:54','2021-09-10 02:25:54','cb7ca83f-0638-4def-b617-f7a472c618e8','same-\nsame','inspi-\nration'),(111,45010,1,'2021-09-10 02:25:54','2021-09-10 02:25:54','ace53771-f05b-4559-a820-1433bf2c6c83','suicide','conver-\nsations'),(112,45011,1,'2021-09-10 02:25:54','2021-09-10 02:25:54','949eadd9-ded5-4ce0-a2cc-73eb68d519ee','no. 3\'s','no. 2\'s'),(113,45012,1,'2021-09-10 02:25:54','2021-09-10 02:25:54','66f975e5-60a0-4cd3-8a32-d5c39e0e6a03','domestic and \nfamily violence','culture \nchange'),(114,45013,1,'2021-09-10 02:25:54','2021-09-10 02:25:54','4204db3c-13d0-4b23-8b95-f212333c9e4e','stagnated \ngrowth','empathy \nand care'),(120,45021,1,'2021-09-10 02:26:16','2021-09-10 02:26:16','c9ed3959-727e-4fd7-bf56-f2f8a78e34b4','same-\nsame','inspi-\nration'),(121,45022,1,'2021-09-10 02:26:16','2021-09-10 02:26:16','832bd4d9-fb1b-4cb7-8e53-b9428906aac4','suicide\n<br>','conver-\nsations'),(122,45023,1,'2021-09-10 02:26:16','2021-09-10 02:26:16','6942ac4b-7de2-4787-a2e5-255b877b6f7a','no. 3\'s','no. 2\'s'),(123,45024,1,'2021-09-10 02:26:16','2021-09-10 02:26:16','480c63d0-f2eb-4f10-9810-b453df09140b','domestic and \nfamily violence','culture \nchange'),(124,45025,1,'2021-09-10 02:26:16','2021-09-10 02:26:16','85237ccf-54d1-41ae-af85-018079aa2f77','stagnated \ngrowth','empathy \nand care'),(130,45033,1,'2021-09-10 02:28:15','2021-09-10 02:28:15','26ad6b00-a901-435c-858b-a29e79f11949','same-\nsame','inspi-\nration'),(131,45034,1,'2021-09-10 02:28:15','2021-09-10 02:28:15','79fe8409-fadb-4f9b-8bfb-ae591c29e047','suicide','conver-\nsations'),(132,45035,1,'2021-09-10 02:28:15','2021-09-10 02:28:15','cecac716-3c7a-49a8-ba59-0dce86416985','no. 3\'s','no. 2\'s'),(133,45036,1,'2021-09-10 02:28:15','2021-09-10 02:28:15','0c2f847f-38e2-4b88-8599-cbbaaf955e1b','domestic and \nfamily violence','culture \nchange'),(134,45037,1,'2021-09-10 02:28:15','2021-09-10 02:28:15','8f94315e-b19e-4b37-8b6f-59bdc1b466df','stagnated \ngrowth','empathy \nand care'),(140,45045,1,'2021-09-10 02:28:45','2021-09-10 02:28:45','b9851fc9-1575-4ef4-8280-2654ba5f3db3','same-\nsame','inspi-\nration'),(141,45046,1,'2021-09-10 02:28:45','2021-09-10 02:28:45','d44b128d-5e92-4e5d-a0e7-7cf9d73017d3','suicide','conversations'),(142,45047,1,'2021-09-10 02:28:45','2021-09-10 02:28:45','7b081889-6260-4337-a550-9a17db4a88ea','no. 3\'s','no. 2\'s'),(143,45048,1,'2021-09-10 02:28:45','2021-09-10 02:28:45','4265bfae-c687-41b0-a2f8-b4d3755f52a4','domestic and \nfamily violence','culture \nchange'),(144,45049,1,'2021-09-10 02:28:45','2021-09-10 02:28:45','244c2d77-9dbc-4a78-98d9-9fc556170fa4','stagnated \ngrowth','empathy \nand care'),(150,45057,1,'2021-09-10 02:30:52','2021-09-10 02:30:52','8ffc75b8-1485-4527-8d9a-476540a93611','same-<br />\nsame','inspi-<br />\nration'),(151,45058,1,'2021-09-10 02:30:52','2021-09-10 02:30:52','e2d36515-089a-4902-a1b1-efc5833fd681','suicide','conversations'),(152,45059,1,'2021-09-10 02:30:52','2021-09-10 02:30:52','ca646b7c-7cb7-4f14-93de-0caa74768978','no. 3\'s','no. 2\'s'),(153,45060,1,'2021-09-10 02:30:52','2021-09-10 02:30:52','1d342008-fd2c-4bec-ae21-490137608bd3','domestic and \nfamily violence','culture \nchange'),(154,45061,1,'2021-09-10 02:30:52','2021-09-10 02:30:52','e77ebfdc-7d19-4ef2-857e-7d0607855d01','stagnated \ngrowth','empathy \nand care'),(160,45069,1,'2021-09-10 02:31:08','2021-09-10 02:31:08','944a0dc7-45c6-4818-b4e2-5b739df67c39','same-<br />\nsame','inspi-<br />\nration'),(161,45070,1,'2021-09-10 02:31:08','2021-09-10 02:31:08','fd969c6f-29e2-4f17-b95f-504420abdd58','<p>suicide<br /></p>','conversations'),(162,45071,1,'2021-09-10 02:31:08','2021-09-10 02:31:08','c901f3c1-a67a-434d-b32f-3ce5db6a26a4','no. 3\'s','no. 2\'s'),(163,45072,1,'2021-09-10 02:31:08','2021-09-10 02:31:08','016270bb-2206-4e99-b03b-c3131958a7d8','domestic and \nfamily violence','culture \nchange'),(164,45073,1,'2021-09-10 02:31:08','2021-09-10 02:31:08','67bc1c24-d994-473c-aba3-4fc607b04478','stagnated \ngrowth','empathy \nand care'),(170,45081,1,'2021-09-10 02:31:42','2021-09-10 02:31:42','b0864153-010a-4885-81c6-46739cb20011','<p>same-same</p>\n','<p>inspi-ration</p>\n'),(171,45082,1,'2021-09-10 02:31:42','2021-09-10 02:31:42','fee80342-12b4-48ae-9fb7-83a0c650e02d','<p>suicide<br /></p>','conversations'),(172,45083,1,'2021-09-10 02:31:42','2021-09-10 02:31:42','fdb1240c-d07e-4397-b15d-c007be35361b','no. 3\'s','no. 2\'s'),(173,45084,1,'2021-09-10 02:31:42','2021-09-10 02:31:42','e51f62cb-d3fe-41c7-82db-38f5513d3c51','<p>domestic and family violence</p>\n','<p>culture change</p>\n'),(174,45085,1,'2021-09-10 02:31:42','2021-09-10 02:31:42','482fda17-a58d-4126-941c-c2a2796202b1','stagnated \ngrowth','empathy \nand care'),(180,45093,1,'2021-09-10 02:32:15','2021-09-10 02:32:15','2c41fc53-2991-47fe-bd2a-fcf37ac5dcc6','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(181,45094,1,'2021-09-10 02:32:15','2021-09-10 02:32:15','861f2497-2078-4006-aa8f-08d6ada3e978','<p>suicide<br /></p>','<p>conver-<br />sations</p>'),(182,45095,1,'2021-09-10 02:32:15','2021-09-10 02:32:15','c28b529b-065a-4493-bc45-f10a9a2a95a9','no. 3\'s','no. 2\'s'),(183,45096,1,'2021-09-10 02:32:15','2021-09-10 02:32:15','f1cf7d34-fd67-40c0-9ba1-e48f94f08b07','<p>domestic and <br />family violence</p>','<p>culture <br />change</p>'),(184,45097,1,'2021-09-10 02:32:15','2021-09-10 02:32:15','65645b2a-b0ec-4099-8977-7edda1a77190','<p>stagnated growth</p>\n','<p>empathy and care</p>\n'),(190,45105,1,'2021-09-10 02:32:28','2021-09-10 02:32:28','d569ea31-fbf1-45ea-8b9b-bc8e8d47dbe2','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(191,45106,1,'2021-09-10 02:32:28','2021-09-10 02:32:28','4d5d4100-5d0b-491c-9b42-ec36990b620f','<p>suicide<br /></p>','<p>conver-<br />sations</p>'),(192,45107,1,'2021-09-10 02:32:28','2021-09-10 02:32:28','7a5d2193-0882-4a1f-9491-fdb81ae48b8c','no. 3\'s','no. 2\'s'),(193,45108,1,'2021-09-10 02:32:28','2021-09-10 02:32:28','08ab49c4-fedb-4a10-8bc3-1005b20d539e','<p>domestic and <br />family violence</p>','<p>culture <br />change</p>'),(194,45109,1,'2021-09-10 02:32:29','2021-09-10 02:32:29','7aeb51a8-741c-4502-b698-60f211511418','<p>stagnated <br />growth</p>','<p>empathy <br />and care</p>'),(200,45117,1,'2021-09-10 02:33:18','2021-09-10 02:33:18','295816e3-47b4-4ea5-b7ba-2099229a93d5','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(201,45118,1,'2021-09-10 02:33:18','2021-09-10 02:33:18','65bfb1ef-bcf5-449f-bf47-73ec39b4bbab','<p>suicide<br /></p>\n','<p>conver-<br />sations</p>'),(202,45119,1,'2021-09-10 02:33:18','2021-09-10 02:33:18','ba31e83a-f4e2-4587-974d-d3d89806f10b','no. 3\'s','no. 2\'s'),(203,45120,1,'2021-09-10 02:33:18','2021-09-10 02:33:18','a0c107c1-331d-42b0-9aec-e4361dc36ed2','<p>domestic and <br />family violence</p>','<p>culture <br />change</p>'),(204,45121,1,'2021-09-10 02:33:18','2021-09-10 02:33:18','5a99c022-cc90-42dc-8ec1-4c2e97bd487b','<p>stagnated <br />growth</p>','<p>empathy <br />and care</p>'),(210,45129,1,'2021-09-10 02:34:41','2021-09-10 02:34:41','d85ae607-d718-4922-a7c9-e5d718facbd0','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(211,45130,1,'2021-09-10 02:34:41','2021-09-10 02:34:41','bbf8b0a2-c64a-403e-8150-9f11c71c5463','<p>suicide<br /></p>\n','<p>conver-<br />sations</p>'),(212,45131,1,'2021-09-10 02:34:41','2021-09-10 02:34:41','3a1e3d17-7cb6-4dac-909c-c9d1eedb6307','no. 3\'s','no. 2\'s'),(213,45132,1,'2021-09-10 02:34:41','2021-09-10 02:34:41','1ad5768e-565b-4336-aaad-d2595fe188c7','<p>family <br />violence</p>','<p>culture <br />change</p>'),(214,45133,1,'2021-09-10 02:34:41','2021-09-10 02:34:41','95ec0de2-7d0b-438d-8682-32307ef9f1b3','<p>stagnated <br />growth</p>','<p>empathy <br />and care</p>'),(220,45141,1,'2021-09-10 02:35:45','2021-09-10 02:35:45','80159baa-d344-4e67-a59f-a681bcb93354','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(221,45142,1,'2021-09-10 02:35:45','2021-09-10 02:35:45','5727c443-61d5-433f-af14-afebbec76858','<p>suicide<br /></p>\n<p class=\"hidden\">blank</p>','<p>conver-<br />sations</p>'),(222,45143,1,'2021-09-10 02:35:45','2021-09-10 02:35:45','29a13c71-72f4-4845-8e82-57ffd3a2e336','no. 3\'s','no. 2\'s'),(223,45144,1,'2021-09-10 02:35:45','2021-09-10 02:35:45','68fc8a14-43a7-428b-839f-6412c4c4701b','<p>family <br />violence</p>','<p>culture <br />change</p>'),(224,45145,1,'2021-09-10 02:35:45','2021-09-10 02:35:45','43e2e9b0-abc0-4aa5-9194-bbc1e8297ea7','<p>stagnated <br />growth</p>','<p>empathy <br />and care</p>'),(230,45153,1,'2021-09-10 02:36:19','2021-09-10 02:36:19','8c47032d-30bf-441f-a86c-4ac0a4ed1d2e','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(231,45154,1,'2021-09-10 02:36:19','2021-09-10 02:36:19','f9a1bd20-acf1-4058-83ae-d02607f259f3','<p class=\"mb-8\">suicide</p>','<p>conver-<br />sations</p>'),(232,45155,1,'2021-09-10 02:36:19','2021-09-10 02:36:19','3db7c740-9164-449b-8cfb-de77518d119b','no. 3\'s','no. 2\'s'),(233,45156,1,'2021-09-10 02:36:19','2021-09-10 02:36:19','43a90a3a-7c31-4e6a-897c-7909f6042f11','<p>family <br />violence</p>','<p>culture <br />change</p>'),(234,45157,1,'2021-09-10 02:36:19','2021-09-10 02:36:19','17daa1a0-c151-4acd-be08-5681bd1878ff','<p>stagnated <br />growth</p>','<p>empathy <br />and care</p>'),(240,45165,1,'2021-09-10 02:36:39','2021-09-10 02:36:39','baeb1d12-9588-4e10-a97e-ff3a4113bb65','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(241,45166,1,'2021-09-10 02:36:39','2021-09-10 02:36:39','bfca5540-aaa9-4e3d-be7d-8a691cdbf9d0','<p class=\"mb-16\">suicide</p>','<p>conver-<br />sations</p>'),(242,45167,1,'2021-09-10 02:36:39','2021-09-10 02:36:39','7c00e85e-b2b0-4ed7-89a2-69ad4b3e72b5','no. 3\'s','no. 2\'s'),(243,45168,1,'2021-09-10 02:36:39','2021-09-10 02:36:39','66549e0c-b609-45f5-84cb-c2147a10e437','<p>family <br />violence</p>','<p>culture <br />change</p>'),(244,45169,1,'2021-09-10 02:36:39','2021-09-10 02:36:39','5f81dba6-02b9-4448-a545-abc21b8fa147','<p>stagnated <br />growth</p>','<p>empathy <br />and care</p>'),(250,45177,1,'2021-09-10 03:08:20','2021-09-10 03:08:20','70b7da11-35b2-4f0e-af75-cb24bc98dc9b','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(251,45178,1,'2021-09-10 03:08:21','2021-09-10 03:08:21','6c7993f6-52c1-460f-9a6b-04e7982cbe32','<p>suicide</p>','<p>conver-<br />sations</p>'),(252,45179,1,'2021-09-10 03:08:21','2021-09-10 03:08:21','d6a327f0-8725-4244-b231-e0126458831d','no. 3\'s','no. 2\'s'),(253,45180,1,'2021-09-10 03:08:21','2021-09-10 03:08:21','af46b67c-15ad-4f16-b6dc-09cb4454a64b','<p>family <br />violence</p>','<p>culture <br />change</p>'),(254,45181,1,'2021-09-10 03:08:21','2021-09-10 03:08:21','97bf826c-f5a3-48ef-9234-f4c366532925','<p>stagnated <br />growth</p>','<p>empathy <br />and care</p>'),(260,45189,1,'2021-09-10 03:10:52','2021-09-10 03:10:52','58e3ebfa-99f8-43c7-a025-c126b2717feb','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(261,45190,1,'2021-09-10 03:10:53','2021-09-10 03:10:53','cdcdd57a-1cba-4f44-81a8-9aa7702dfdaf','<p class=\"mb-24\">suicide</p>','<p>conver-<br />sations</p>'),(262,45191,1,'2021-09-10 03:10:53','2021-09-10 03:10:53','f4672e32-7ce7-4c7a-8b40-a7c9846cd1b4','no. 3\'s','no. 2\'s'),(263,45192,1,'2021-09-10 03:10:53','2021-09-10 03:10:53','d822bc6c-735b-4180-b8f1-9767a18206ea','<p>family <br />violence</p>','<p>culture <br />change</p>'),(264,45193,1,'2021-09-10 03:10:53','2021-09-10 03:10:53','bb7f4306-92a4-46a9-9174-da7ce602ac17','<p>stagnated <br />growth</p>','<p>empathy <br />and care</p>'),(270,45201,1,'2021-09-10 03:11:43','2021-09-10 03:11:43','17a76f0e-f0d2-41c1-bfb8-881d6cfaaae4','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(271,45202,1,'2021-09-10 03:11:43','2021-09-10 03:11:43','96c63ed0-02bb-4684-9313-9d009edb348d','no. 3\'s','no. 2\'s'),(272,45203,1,'2021-09-10 03:11:43','2021-09-10 03:11:43','7d99b5c7-d4a0-4f55-81d6-098689a4fe32','<p>family <br />violence</p>','<p>culture <br />change</p>'),(273,45204,1,'2021-09-10 03:11:43','2021-09-10 03:11:43','46e38728-cdb4-49fa-9690-1e6ba243795d','<p>stagnated <br />growth</p>','<p>empathy <br />and care</p>'),(287,45249,1,'2021-09-10 07:17:02','2021-11-09 01:32:14','35b755f0-2fd1-4375-8436-e19e3204e803','<p style=\"margin-bottom:80px;\">suicide</p>','<p>conver-<br />sations</p>'),(288,45251,1,'2021-09-10 07:17:03','2021-09-10 07:17:03','cc929b35-a601-4c9e-bd04-67ec43ea6904','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(289,45252,1,'2021-09-10 07:17:03','2021-09-10 07:17:03','8db24815-a616-4219-95e4-d0da811750d4','no. 3\'s','no. 2\'s'),(290,45253,1,'2021-09-10 07:17:03','2021-09-10 07:17:03','e6edb82f-f4e9-430a-bed6-8b8c9b879c70','<p>family <br />violence</p>','<p>culture <br />change</p>'),(291,45254,1,'2021-09-10 07:17:03','2021-09-10 07:17:03','1e5ac31b-b864-4fc5-9b06-492d3aeff018','<p>stagnated <br />growth</p>','<p>empathy <br />and care</p>'),(292,45255,1,'2021-09-10 07:17:03','2021-09-10 07:17:03','c895e01c-813d-4f81-8410-facb48a93657','<p>suicide</p>','<p>conver-<br />sations</p>'),(298,45263,1,'2021-09-10 07:17:17','2021-09-10 07:17:17','3d283adf-8ddd-447e-a811-8af56ee32b1a','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(299,45264,1,'2021-09-10 07:17:17','2021-09-10 07:17:17','b90b214d-f27d-4ce7-b8a2-453091bf3133','no. 3\'s','no. 2\'s'),(300,45265,1,'2021-09-10 07:17:17','2021-09-10 07:17:17','69d46942-819e-4c97-baaf-de2c06890c60','<p>family <br />violence</p>','<p>culture <br />change</p>'),(301,45266,1,'2021-09-10 07:17:17','2021-09-10 07:17:17','cf8b66ae-2a44-4c5f-830d-02ec831bff4e','<p>stagnated <br />growth</p>','<p>empathy <br />and care</p>'),(302,45267,1,'2021-09-10 07:17:17','2021-09-10 07:17:17','cc5bb8ec-dc07-4657-bde8-ab233f189104','<p>suicide</p>','<p>conver-<br />sations</p>'),(308,45275,1,'2021-09-10 07:18:35','2021-09-10 07:18:35','3e81b547-67ce-4ee0-86b2-dee7b4833093','<p style=\"margin-bottom:70px;\">suicide</p>','<p>conver-<br />sations</p>'),(309,45276,1,'2021-09-10 07:18:35','2021-09-10 07:18:35','e52570e9-8760-4707-b61c-ecdb793bf713','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(310,45277,1,'2021-09-10 07:18:35','2021-09-10 07:18:35','fa9b8021-73c1-4644-bdc7-378ce7020da7','no. 3\'s','no. 2\'s'),(311,45278,1,'2021-09-10 07:18:35','2021-09-10 07:18:35','fca9a260-0b26-44a9-a34c-8d7c3184683a','<p>family <br />violence</p>','<p>culture <br />change</p>'),(312,45279,1,'2021-09-10 07:18:35','2021-09-10 07:18:35','3bc10ac9-3f1c-4664-b0b7-4dd678e50ee6','<p>stagnated <br />growth</p>','<p>empathy <br />and care</p>'),(318,45287,1,'2021-09-10 07:18:53','2021-09-10 07:18:53','0b7a41c7-e7b7-4939-b261-0d79058b37d4','<p style=\"margin-bottom:75px;\">suicide</p>','<p>conver-<br />sations</p>'),(319,45288,1,'2021-09-10 07:18:53','2021-09-10 07:18:53','e00bf23a-9ecd-430b-a0a6-802a58dbeee7','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(320,45289,1,'2021-09-10 07:18:53','2021-09-10 07:18:53','01eec685-4195-4f44-8da6-af4da08d4410','no. 3\'s','no. 2\'s'),(321,45290,1,'2021-09-10 07:18:53','2021-09-10 07:18:53','21f98400-5b20-4773-ab1d-48793a83ee04','<p>family <br />violence</p>','<p>culture <br />change</p>'),(322,45291,1,'2021-09-10 07:18:53','2021-09-10 07:18:53','1ea4c2f6-6145-46ee-bc16-2616351339f8','<p>stagnated <br />growth</p>','<p>empathy <br />and care</p>'),(328,45310,1,'2021-09-13 22:24:13','2021-09-13 22:24:13','1c3ea76b-1efa-4499-9600-650960088f67','<p style=\"margin-bottom:80px;\">suicide</p>','<p>conver-<br />sations</p>'),(329,45311,1,'2021-09-13 22:24:13','2021-09-13 22:24:13','81c08c9c-12d7-4906-854c-e74326d76a27','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(330,45312,1,'2021-09-13 22:24:13','2021-09-13 22:24:13','d9c97b33-3874-43b7-89f2-778b428a3b2e','no. 3\'s','no. 2\'s'),(331,45313,1,'2021-09-13 22:24:13','2021-09-13 22:24:13','a083375e-7fbc-41e5-b4d1-927e69a9ffc3','<p>family <br />violence</p>','<p>culture <br />change</p>'),(332,45314,1,'2021-09-13 22:24:14','2021-09-13 22:24:14','06c61cd4-aefd-45bd-85fc-571628808d2f','<p>stagnated <br />growth</p>','<p>empathy <br />and care</p>'),(351,51531,1,'2021-10-01 01:02:35','2021-11-09 01:32:14','453e194e-1ca7-40b8-b76b-6b71cf3ede48','<p style=\"margin-bottom:80px;\">anonymity</p>','<p>brand cut-<br />through</p>'),(352,51534,1,'2021-10-01 01:02:35','2021-10-01 01:02:35','5d4838a7-6af3-40c6-bc9e-b9fc22941969','<p style=\"margin-bottom:80px;\">suicide</p>','<p>conver-<br />sations</p>'),(353,51535,1,'2021-10-01 01:02:35','2021-10-01 01:02:35','cdf661c7-8603-4331-b4c0-1132e8fd8228','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(354,51536,1,'2021-10-01 01:02:36','2021-10-01 01:02:36','73f362b8-9317-4af6-8851-2790a08e147e','no. 3\'s','no. 2\'s'),(355,51537,1,'2021-10-01 01:02:36','2021-10-01 01:02:36','8c57857d-5455-4f0d-8e16-322271fd73b1','<p>family <br />violence</p>','<p>culture <br />change</p>'),(356,51539,1,'2021-10-01 01:02:36','2021-10-01 01:02:36','c9ea423a-f579-4c95-9fb9-a24407d52229','<p>stagnated <br />growth</p>','<p>empathy <br />and care</p>'),(357,51540,1,'2021-10-01 01:02:36','2021-10-01 01:02:36','a6b4d2de-98df-4845-83bc-ce4bcb8bb78a','<p style=\"margin-bottom:80px;\">anonymity</p>','<p>brand cut<br />cut through</p>'),(364,51671,1,'2021-10-01 01:03:20','2021-10-01 01:03:20','6496f53c-7162-496f-a0f6-1fd4957c022b','<p style=\"margin-bottom:80px;\">suicide</p>','<p>conver-<br />sations</p>'),(365,51672,1,'2021-10-01 01:03:20','2021-10-01 01:03:20','eea8753e-2f34-4ec4-9fdf-dd68e292fde4','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(366,51673,1,'2021-10-01 01:03:20','2021-10-01 01:03:20','0abb774d-33b0-46ae-8d69-f867ce00c7b4','no. 3\'s','no. 2\'s'),(367,51674,1,'2021-10-01 01:03:20','2021-10-01 01:03:20','492f91b0-40d5-484d-8de5-ff4b71bc8acf','<p>family <br />violence</p>','<p>culture <br />change</p>'),(368,51675,1,'2021-10-01 01:03:20','2021-10-01 01:03:20','e9b229f9-b5d7-430d-b3bd-abbd9e25efb8','<p>stagnated <br />growth</p>','<p>empathy <br />and care</p>'),(369,51676,1,'2021-10-01 01:03:20','2021-10-01 01:03:20','d98e6f7b-e699-4212-82f9-eacd4970e7ef','<p style=\"margin-bottom:80px;\">anonymity</p>','<p>brand cut<br />through</p>'),(376,51873,1,'2021-10-01 01:04:10','2021-10-01 01:04:10','e09b6a11-753f-4aeb-b2c0-4d5053012b04','<p style=\"margin-bottom:80px;\">anonymity</p>','<p>brand cut<br />through</p>'),(377,51875,1,'2021-10-01 01:04:10','2021-10-01 01:04:10','ee74fe2b-5933-453e-beda-b5ac4429666e','<p style=\"margin-bottom:80px;\">suicide</p>','<p>conver-<br />sations</p>'),(378,51876,1,'2021-10-01 01:04:10','2021-10-01 01:04:10','06a10848-f0e0-486f-8d3d-ae4f155e7459','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(379,51877,1,'2021-10-01 01:04:10','2021-10-01 01:04:10','53571d64-9fca-4513-9570-ce49f9401af6','no. 3\'s','no. 2\'s'),(380,51878,1,'2021-10-01 01:04:10','2021-10-01 01:04:10','3947833b-79c3-4439-af8c-2194926f2f9c','<p>family <br />violence</p>','<p>culture <br />change</p>'),(381,51879,1,'2021-10-01 01:04:10','2021-10-01 01:04:10','a6eca967-0456-473a-a9bd-c9c026f8acfb','<p>stagnated <br />growth</p>','<p>empathy <br />and care</p>'),(388,73960,1,'2021-11-08 02:53:17','2021-11-08 02:53:17','63772baf-ca47-4102-b4b1-9299832f9c9b','<p style=\"margin-bottom:80px;\">anonymity</p>','<p>brand cut<br />through</p>'),(389,73961,1,'2021-11-08 02:53:18','2021-11-08 02:53:18','52d28b48-393a-4411-9110-0515fdce4246','<p style=\"margin-bottom:80px;\">suicide</p>','<p>conver-<br />sations</p>'),(390,73962,1,'2021-11-08 02:53:18','2021-11-08 02:53:18','f30b2561-2e48-408e-970a-78d3932673e8','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(391,73963,1,'2021-11-08 02:53:18','2021-11-08 02:53:18','f1bcaca7-1be4-45d5-9345-c85af0e4c4b3','no. 3\'s','no. 2\'s'),(392,73964,1,'2021-11-08 02:53:18','2021-11-08 02:53:18','ba0bf9ff-3bd5-4bf2-a185-8a9ffb12a4f6','<p>family <br />violence</p>','<p>culture <br />change</p>'),(393,73965,1,'2021-11-08 02:53:18','2021-11-08 02:53:18','6b1f946f-3a49-4e55-8a09-47a6074f281a','<p>Less effort</p>','<p>More growth</p>'),(400,73974,1,'2021-11-08 02:53:33','2021-11-08 02:53:33','5e6f4f3d-075a-4ff3-b72d-8d758cc26e5f','<p style=\"margin-bottom:80px;\">anonymity</p>','<p>brand cut-<br />through</p>'),(401,73975,1,'2021-11-08 02:53:34','2021-11-08 02:53:34','e28cd384-5d9f-4a9d-9fd0-747ff710804b','<p style=\"margin-bottom:80px;\">suicide</p>','<p>conver-<br />sations</p>'),(402,73976,1,'2021-11-08 02:53:34','2021-11-08 02:53:34','b87a2ff3-13fc-4a19-92d7-ba0d9184a683','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(403,73977,1,'2021-11-08 02:53:34','2021-11-08 02:53:34','a32bf98a-656b-429d-9be9-8ad980193869','no. 3\'s','no. 2\'s'),(404,73978,1,'2021-11-08 02:53:34','2021-11-08 02:53:34','2fddfc19-e022-4092-bf5c-19ee90334122','<p>family <br />violence</p>','<p>culture <br />change</p>'),(405,73979,1,'2021-11-08 02:53:34','2021-11-08 02:53:34','3867d583-0bc1-45e8-8028-25f665444538','<p>Less effort</p>','<p>More growth</p>'),(412,73988,1,'2021-11-08 02:54:17','2021-11-08 02:54:17','52a31b4a-87fc-44cf-a14c-4ef8249abef7','<p style=\"margin-bottom:80px;\">anonymity</p>','<p>brand cut-<br />through</p>'),(413,73989,1,'2021-11-08 02:54:17','2021-11-08 02:54:17','05befbe8-928e-47bd-9dab-af7fe9495c50','<p style=\"margin-bottom:80px;\">suicide</p>','<p>conver-<br />sations</p>'),(414,73990,1,'2021-11-08 02:54:17','2021-11-08 02:54:17','8f7eefa9-750c-4eb3-bf9f-a638ff610a1a','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(415,73991,1,'2021-11-08 02:54:17','2021-11-08 02:54:17','a41723a5-e693-44f8-9976-da6fb066bacb','<p>Confusion</p>','<p>Knowledge</p>'),(416,73992,1,'2021-11-08 02:54:17','2021-11-08 02:54:17','f66788df-f62c-4e3a-bbb2-c7cfdf4f7f5d','<p>family <br />violence</p>','<p>culture <br />change</p>'),(417,73993,1,'2021-11-08 02:54:17','2021-11-08 02:54:17','64f4853a-cbcb-4a44-82d8-e929e8d07b4c','<p>Less effort</p>','<p>More growth</p>'),(418,74053,1,'2021-11-09 00:40:15','2021-11-09 00:40:15','40b5a59f-4c2b-4e5b-84fe-ad261611fde1','<p style=\"margin-bottom:80px;\">anonymity</p>','<p>brand cut-<br />through</p>'),(419,74054,1,'2021-11-09 00:40:16','2021-11-09 00:40:16','377b4e3c-3062-4655-852d-07a3d9b19627','<p style=\"margin-bottom:80px;\">suicide</p>','<p>conver-<br />sations</p>'),(420,74055,1,'2021-11-09 00:40:16','2021-11-09 00:40:16','2e60555d-6826-4297-9be9-13fd22032a41','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(421,74056,1,'2021-11-09 00:40:16','2021-11-09 00:40:16','58bad9be-e8d1-492e-b564-420f8fed2c82','<p>Confusion</p>','<p>Knowledge</p>'),(422,74057,1,'2021-11-09 00:40:16','2021-11-09 00:40:16','34b505c2-aa92-4447-9acb-005c8c1b197e','<p>family <br />violence</p>','<p>culture <br />change</p>'),(423,74058,1,'2021-11-09 00:40:16','2021-11-09 00:40:16','140dffc4-bd6f-448f-869e-328ab57b39a9','<p>Less effort</p>','<p>More growth</p>'),(430,74070,1,'2021-11-09 01:19:36','2021-11-09 01:19:36','8a7a2afd-01bb-419e-9fa9-ea23f2b5e9e3','<p style=\"margin-bottom:80px;\">anonymity</p>','<p>brand cut-<br />through</p>'),(431,74071,1,'2021-11-09 01:19:36','2021-11-09 01:19:36','ca3dce45-dc56-465f-81b3-22d795018e24','<p style=\"margin-bottom:80px;\">suicide</p>','<p>conver-<br />sations</p>'),(432,74072,1,'2021-11-09 01:19:36','2021-11-09 01:19:36','04a0805e-a610-46a8-b22e-4eee46cb8f82','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(433,74073,1,'2021-11-09 01:19:36','2021-11-09 01:19:36','8fadcb97-3087-430f-811d-f6fdd8129ca4','<p>Confusion</p>','<p>Knowledge</p>'),(434,74074,1,'2021-11-09 01:19:36','2021-11-09 01:19:36','06bb636b-7fb4-48d0-91cd-4b031be55a0c','<p>family <br />violence</p>','<p>culture <br />change</p>'),(435,74075,1,'2021-11-09 01:19:36','2021-11-09 01:19:36','bfd56754-047b-46a3-966b-d86faa44498a','<p>Less effort</p>','<p>More growth</p>'),(436,74077,1,'2021-11-09 01:20:07','2021-11-09 01:20:07','24b5c01a-8ca6-4f20-a440-98e087a72bd1','<p style=\"margin-bottom:80px;\">anonymity</p>','<p>brand cut-<br />through</p>'),(437,74078,1,'2021-11-09 01:20:07','2021-11-09 01:20:07','732e0525-c833-400b-a166-376c6663561d','<p style=\"margin-bottom:80px;\">suicide</p>','<p>conver-<br />sations</p>'),(438,74079,1,'2021-11-09 01:20:07','2021-11-09 01:20:07','5899fb88-d521-4ed3-9297-86e463bb0213','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(439,74080,1,'2021-11-09 01:20:07','2021-11-09 01:20:07','040658b4-d785-4710-9281-b9d7d95d4f29','<p>Confusion</p>','<p>Knowledge</p>'),(440,74081,1,'2021-11-09 01:20:07','2021-11-09 01:20:07','42dd30d8-686f-4262-86f3-d2ad4b58cae7','<p>family <br />violence</p>','<p>culture <br />change</p>'),(441,74082,1,'2021-11-09 01:20:07','2021-11-09 01:20:07','448f2e41-948e-48a9-b44d-496fcd98a0df','<p>Less effort</p>','<p>More growth</p>'),(448,74099,1,'2021-11-09 01:32:16','2021-11-09 01:32:16','ed335b7c-3b35-43be-9df6-30c8964e8689','<p style=\"margin-bottom:80px;\">anonymity</p>','<p>brand cut-<br />through</p>'),(449,74100,1,'2021-11-09 01:32:16','2021-11-09 01:32:16','fd910e3c-7853-4e52-9b81-3ecae391288c','<p style=\"margin-bottom:80px;\">suicide</p>','<p>conver-<br />sations</p>'),(450,74101,1,'2021-11-09 01:32:16','2021-11-09 01:32:16','8ad1cd71-c787-4fed-8d3e-5672f1c2b0b5','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(451,74102,1,'2021-11-09 01:32:16','2021-11-09 01:32:16','eea92344-ecfa-4624-85c3-0f08dffd940e','<p>Confusion</p>','<p>Knowledge</p>'),(452,74103,1,'2021-11-09 01:32:17','2021-11-09 01:32:17','30b99d1d-46e9-4aa8-b028-5737b4f9c1e5','<p>family <br />violence</p>','<p>culture <br />change</p>'),(453,74104,1,'2021-11-09 01:32:17','2021-11-09 01:32:17','1467bf5d-8969-4041-b189-4bb698cc4095','<p>effort</p>','<p>growth</p>'),(460,74177,1,'2021-11-12 03:23:08','2021-11-12 03:23:08','8bc65f51-af42-480f-8ebe-4ca546b234e8','<p style=\"margin-bottom:80px;\">anonymity</p>','<p>brand cut-<br />through</p>'),(461,74178,1,'2021-11-12 03:23:08','2021-11-12 03:23:08','e5824c4c-67ef-4014-a5f0-add4524dc65a','<p style=\"margin-bottom:80px;\">suicide</p>','<p>conver-<br />sations</p>'),(462,74179,1,'2021-11-12 03:23:08','2021-11-12 03:23:08','a08ad1c2-928e-46a9-a004-2ce131668807','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(463,74180,1,'2021-11-12 03:23:08','2021-11-12 03:23:08','93886afc-3255-42f6-93b3-5398eeae84f3','<p>Confusion</p>','<p>Knowledge</p>'),(464,74181,1,'2021-11-12 03:23:08','2021-11-12 03:23:08','a800bc27-2814-4894-835a-f2dca001a51e','<p>family <br />violence</p>','<p>culture <br />change</p>'),(465,74182,1,'2021-11-12 03:23:08','2021-11-12 03:23:08','62d9eff9-a04c-4a2d-8fe1-7276b7630ee9','<p>effort</p>','<p>growth</p>'),(472,74191,1,'2021-11-12 03:23:35','2021-11-12 03:23:35','f7bf1319-4bcc-4cf0-9ec9-a976e07a6bd3','<p style=\"margin-bottom:80px;\">anonymity</p>','<p>brand cut-<br />through</p>'),(473,74192,1,'2021-11-12 03:23:35','2021-11-12 03:23:35','20b3a64e-8d39-4125-ad25-22668d84a27b','<p style=\"margin-bottom:80px;\">suicide</p>','<p>conver-<br />sations</p>'),(474,74193,1,'2021-11-12 03:23:35','2021-11-12 03:23:35','2f13c503-a90e-4469-aa73-e10f126d658f','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(475,74194,1,'2021-11-12 03:23:35','2021-11-12 03:23:35','9df22e12-32f3-47cd-8f3c-b9e13e646177','<p>Confusion</p>','<p>Knowledge</p>'),(476,74195,1,'2021-11-12 03:23:35','2021-11-12 03:23:35','d9fafcf7-a103-4516-9f6a-53aa9ad4644f','<p>family <br />violence</p>','<p>culture <br />change</p>'),(477,74196,1,'2021-11-12 03:23:35','2021-11-12 03:23:35','050135ad-c30d-40d6-92b9-64ea234f798a','<p>effort</p>','<p>growth</p>'),(484,74205,1,'2021-11-12 03:23:52','2021-11-12 03:23:52','5f6d8fc3-63da-45b2-b27e-29aff1f0395c','<p style=\"margin-bottom:80px;\">anonymity</p>','<p>brand cut-<br />through</p>'),(485,74206,1,'2021-11-12 03:23:52','2021-11-12 03:23:52','9ced3ecb-9a13-4a59-b99f-abae1acb5e67','<p style=\"margin-bottom:80px;\">suicide</p>','<p>conver-<br />sations</p>'),(486,74207,1,'2021-11-12 03:23:52','2021-11-12 03:23:52','66e31993-98e0-4e1f-9705-f61dbea583ad','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(487,74208,1,'2021-11-12 03:23:52','2021-11-12 03:23:52','ab2e6475-0973-46a1-a7c0-f62cca578b90','<p>Confusion</p>','<p>Knowledge</p>'),(488,74209,1,'2021-11-12 03:23:52','2021-11-12 03:23:52','5e2f1f38-a9fc-4a18-9318-38ff3d412d53','<p>family <br />violence</p>','<p>culture <br />change</p>'),(489,74210,1,'2021-11-12 03:23:52','2021-11-12 03:23:52','59f24fae-60b4-46c2-9491-0690d8fe4d5e','<p>effort</p>','<p>growth</p>'),(490,74212,1,'2021-11-12 03:24:13','2021-11-12 03:24:13','eca3c48a-54be-4d90-ae03-2b908f4dade1','<p style=\"margin-bottom:80px;\">anonymity</p>','<p>brand cut-<br />through</p>'),(491,74213,1,'2021-11-12 03:24:13','2021-11-12 03:24:13','84ec32b3-c58f-4f1c-ba30-ae0059329bf5','<p style=\"margin-bottom:80px;\">suicide</p>','<p>conver-<br />sations</p>'),(492,74214,1,'2021-11-12 03:24:13','2021-11-12 03:24:13','94a89ed4-43ad-4dbe-b997-c2d91234bb9d','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(493,74215,1,'2021-11-12 03:24:13','2021-11-12 03:24:13','87d75725-1c4b-4025-9b96-ec8221a94773','<p>Confusion</p>','<p>Knowledge</p>'),(494,74216,1,'2021-11-12 03:24:13','2021-11-12 03:24:13','5cdcfcfa-96bc-488f-bb0e-711a0c0c6ca0','<p>family <br />violence</p>','<p>culture <br />change</p>'),(495,74217,1,'2021-11-12 03:24:13','2021-11-12 03:24:13','9301a9d2-ba51-46a9-9155-10d2d172e69d','<p>effort</p>','<p>growth</p>'),(502,74232,1,'2021-11-12 03:41:09','2021-11-12 03:41:09','d8b722c1-f6cc-4a71-9723-47fafa86609f','<p style=\"margin-bottom:80px;\">anonymity</p>','<p>brand cut-<br />through</p>'),(503,74233,1,'2021-11-12 03:41:09','2021-11-12 03:41:09','f0631f16-6b45-4cc6-8d67-a5c34e97a8f8','<p style=\"margin-bottom:80px;\">suicide</p>','<p>conver-<br />sations</p>'),(504,74234,1,'2021-11-12 03:41:09','2021-11-12 03:41:09','ef55ddb2-c868-479f-845d-ce588cfc7c40','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(505,74235,1,'2021-11-12 03:41:09','2021-11-12 03:41:09','0fc61279-65d6-4018-852a-f08bc0a70176','<p>Confusion</p>','<p>Knowledge</p>'),(506,74236,1,'2021-11-12 03:41:09','2021-11-12 03:41:09','d6067c85-37eb-4421-97b8-c8cdb2fedf15','<p>family <br />violence</p>','<p>culture <br />change</p>'),(507,74237,1,'2021-11-12 03:41:09','2021-11-12 03:41:09','39e84ee2-b9a0-44e0-bbd5-9128e3c1d72f','<p>effort</p>','<p>growth</p>'),(514,74246,1,'2021-11-12 03:41:37','2021-11-12 03:41:37','ba9e8328-5a6f-46c4-9b7e-92d545f46346','<p style=\"margin-bottom:80px;\">anonymity</p>','<p>brand cut-<br />through</p>'),(515,74247,1,'2021-11-12 03:41:37','2021-11-12 03:41:37','00d0cc74-6e69-4191-b51d-5a2e12ad9c61','<p style=\"margin-bottom:80px;\">suicide</p>','<p>conver-<br />sations</p>'),(516,74248,1,'2021-11-12 03:41:37','2021-11-12 03:41:37','27dc50a6-85e8-4705-9a6a-8b8b69bdbad8','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(517,74249,1,'2021-11-12 03:41:38','2021-11-12 03:41:38','6dda92c8-72c2-4047-8c1e-cfde46e39f20','<p>Confusion</p>','<p>Knowledge</p>'),(518,74250,1,'2021-11-12 03:41:38','2021-11-12 03:41:38','92fa0ed5-ee4e-45b0-a1b8-6422983478d6','<p>family <br />violence</p>','<p>culture <br />change</p>'),(519,74251,1,'2021-11-12 03:41:38','2021-11-12 03:41:38','79c9cec1-f376-49e6-a31f-197c2f6d8431','<p>effort</p>','<p>growth</p>'),(520,74257,1,'2021-11-15 01:17:30','2021-11-15 01:17:30','d1623b77-a598-447b-9085-ac537f9de5bf','<p style=\"margin-bottom:80px;\">anonymity</p>','<p>brand cut-<br />through</p>'),(521,74258,1,'2021-11-15 01:17:30','2021-11-15 01:17:30','1770467e-7b61-48eb-adaf-14597d5fa5b7','<p style=\"margin-bottom:80px;\">suicide</p>','<p>conver-<br />sations</p>'),(522,74259,1,'2021-11-15 01:17:30','2021-11-15 01:17:30','407cf55f-dce7-4821-8908-4214786b0eec','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(523,74260,1,'2021-11-15 01:17:30','2021-11-15 01:17:30','32fce659-d3ed-4b27-88a5-689bc744bdbb','<p>Confusion</p>','<p>Knowledge</p>'),(524,74261,1,'2021-11-15 01:17:30','2021-11-15 01:17:30','e55ccc84-ae1a-4380-a984-62a164f5b12a','<p>family <br />violence</p>','<p>culture <br />change</p>'),(525,74262,1,'2021-11-15 01:17:30','2021-11-15 01:17:30','9923b804-b426-4e96-95cb-bf5210784fe4','<p>effort</p>','<p>growth</p>'),(526,74266,1,'2021-11-15 01:17:39','2021-11-15 01:17:39','fd9322f6-d048-4e91-96a8-565783517f3b','<p style=\"margin-bottom:80px;\">anonymity</p>','<p>brand cut-<br />through</p>'),(527,74267,1,'2021-11-15 01:17:39','2021-11-15 01:17:39','e0eb6f20-13e5-46ed-9023-e7e436fdfb2e','<p style=\"margin-bottom:80px;\">suicide</p>','<p>conver-<br />sations</p>'),(528,74268,1,'2021-11-15 01:17:39','2021-11-15 01:17:39','6aec34b9-4869-4bf0-8133-9d7fe635f572','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(529,74269,1,'2021-11-15 01:17:39','2021-11-15 01:17:39','a3759c9a-a921-434c-855a-555b65122e1e','<p>Confusion</p>','<p>Knowledge</p>'),(530,74270,1,'2021-11-15 01:17:39','2021-11-15 01:17:39','7d6160c7-bee9-4110-91f8-5c64a3c0343f','<p>family <br />violence</p>','<p>culture <br />change</p>'),(531,74271,1,'2021-11-15 01:17:39','2021-11-15 01:17:39','66b2190c-d0a2-4113-a487-dbb993b52b55','<p>effort</p>','<p>growth</p>'),(532,120624,1,'2022-02-23 02:56:20','2022-02-23 02:56:20','5093c13c-aac5-4ab3-b185-523e4f789943','<p style=\"margin-bottom:80px;\">anonymity</p>','<p>brand cut-<br />through</p>'),(533,120625,1,'2022-02-23 02:56:20','2022-02-23 02:56:20','83704275-4233-46b1-b40d-3d24f79fdb52','<p style=\"margin-bottom:80px;\">suicide</p>','<p>conver-<br />sations</p>'),(534,120626,1,'2022-02-23 02:56:20','2022-02-23 02:56:20','96a9b3e5-ef8c-4a40-a18a-b155a9df641b','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(535,120627,1,'2022-02-23 02:56:20','2022-02-23 02:56:20','2dba4a4a-74ec-4bff-b423-4732a4c918f2','<p>Confusion</p>','<p>Knowledge</p>'),(536,120628,1,'2022-02-23 02:56:20','2022-02-23 02:56:20','b93bfc00-543c-43e1-88d7-575ee54c7e32','<p>family <br />violence</p>','<p>culture <br />change</p>'),(537,120629,1,'2022-02-23 02:56:20','2022-02-23 02:56:20','f71b8d03-1abe-4f6f-acf4-c49eb6a21540','<p>effort</p>','<p>growth</p>'),(538,140130,1,'2022-05-17 23:19:16','2022-05-17 23:19:16','625a512a-aa31-479c-ac43-b1b4feee7802','<p style=\"margin-bottom:80px;\">anonymity</p>','<p>brand cut-<br />through</p>'),(539,140131,1,'2022-05-17 23:19:16','2022-05-17 23:19:16','e81588ae-f4a6-4a64-b28e-82eed101cab5','<p style=\"margin-bottom:80px;\">suicide</p>','<p>conver-<br />sations</p>'),(540,140132,1,'2022-05-17 23:19:16','2022-05-17 23:19:16','f33decb3-b381-47b7-819a-fbb2aae80615','<p>same-<br />same</p>','<p>inspi-<br />ration</p>'),(541,140133,1,'2022-05-17 23:19:16','2022-05-17 23:19:16','753c15b6-9fe5-44c7-b93d-73c21b5d183b','<p>Confusion</p>','<p>Knowledge</p>'),(542,140134,1,'2022-05-17 23:19:16','2022-05-17 23:19:16','1def495c-7419-49f1-808f-956d1a158f01','<p>family <br />violence</p>','<p>culture <br />change</p>'),(543,140135,1,'2022-05-17 23:19:16','2022-05-17 23:19:16','04fcfbc6-101a-4834-a676-89e2b1b11471','<p>effort</p>','<p>growth</p>');
/*!40000 ALTER TABLE `matrixcontent_homepageslideshow` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `matrixcontent_layoutbuilder`
--

LOCK TABLES `matrixcontent_layoutbuilder` WRITE;
/*!40000 ALTER TABLE `matrixcontent_layoutbuilder` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `matrixcontent_layoutbuilder` VALUES (5,16574,1,'2021-05-14 06:43:31','2021-05-14 06:43:31','323d8ec7-8541-4576-8f05-d603bb7c903a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8,16579,1,'2021-05-17 05:37:57','2021-05-17 05:37:57','6a37752d-5acc-4071-9d82-04a0b88a52f4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(9,16581,1,'2021-05-17 05:38:01','2021-05-17 05:38:01','45fa4ded-fa71-49e1-8415-169d1ccb3d04',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(15,16590,1,'2021-05-17 05:40:22','2021-05-17 05:40:22','348cb2c6-535d-408b-ba46-70d79f2d336d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16,16591,1,'2021-05-17 05:40:22','2021-05-17 05:40:22','f22cda5a-fc00-4648-8d74-017b61e5b40f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17,16593,1,'2021-05-17 05:40:26','2021-05-17 05:40:26','9c97e748-984a-4241-b567-60d4ef1aeaad',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18,16594,1,'2021-05-17 05:40:26','2021-05-17 05:40:26','cc87b2ab-1dba-4c8d-a572-5770b2f2593e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19,16596,1,'2021-05-17 05:41:16','2021-05-17 05:41:16','0946bb6a-7ba5-4723-84ce-5b3a0725db4b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(20,16597,1,'2021-05-17 05:41:16','2021-05-17 05:41:16','c5207725-413b-4f8d-ae25-74ebcd9e7829',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(25,16605,1,'2021-05-17 05:42:46','2021-05-17 05:42:46','28c33f93-6fc1-4b53-a805-14951f0dd745',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(26,16606,1,'2021-05-17 05:42:46','2021-05-17 05:42:46','80cd48ee-53e1-451c-9d05-a54cf458059f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(27,16608,1,'2021-05-17 05:42:51','2021-05-17 05:42:51','64131a2d-6c9a-4640-aefc-305fcc622661',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(28,16609,1,'2021-05-17 05:42:51','2021-05-17 05:42:51','336d63cf-01fe-4bc4-9264-db5328cd6678',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(38,16621,1,'2021-05-17 05:47:14','2021-05-17 05:47:14','c97cdaa2-5e64-4c88-adc0-757e8670a489',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(39,16622,1,'2021-05-17 05:47:14','2021-05-17 05:47:14','1d0ce573-554e-41fb-a324-48c7bc24a188',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(40,16623,1,'2021-05-17 05:47:14','2021-05-17 05:47:14','2fa038ed-1970-4f23-9d96-f482f2eed0bc',NULL,NULL,'Visual realisation','<p>The Revelian brand refresh builds on the reveal concept embodied in the business name of the organisation. While the logo remains simple, strong and typographic, the visual elements have starring roles. They show and tell how the company reveals its precious insights—using filters, colours, photography and myriad gorgeous design treatments.<br /> <br /></p>\n<p>It all makes beautiful sense, positions the business powerfully and binds the team internally more closely to their purpose. By so doing, it ensures current and prospective customers and partners can access, understand, and most importantly, prefer Revelian and its offering.</p>',NULL,NULL,NULL,NULL,NULL),(50,16639,1,'2021-05-17 06:03:02','2021-05-17 06:03:02','a13eddc8-5e08-4d79-a5b3-6168475a7918',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(51,16640,1,'2021-05-17 06:03:02','2021-05-17 06:03:02','885fe2a7-342d-4f24-b2c6-df84afcd10bd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(52,16641,1,'2021-05-17 06:03:02','2021-05-17 06:03:02','baaded32-4757-4f7e-978f-e4fa520fe3b9',NULL,NULL,'Visual realisation','<p>The Revelian brand refresh builds on the reveal concept embodied in the business name of the organisation. While the logo remains simple, strong and typographic, the visual elements have starring roles. They show and tell how the company reveals its precious insights—using filters, colours, photography and myriad gorgeous design treatments.<br /> <br /></p>\n<p>It all makes beautiful sense, positions the business powerfully and binds the team internally more closely to their purpose. By so doing, it ensures current and prospective customers and partners can access, understand, and most importantly, prefer Revelian and its offering.</p>',NULL,NULL,NULL,NULL,NULL),(63,16655,1,'2021-05-17 06:05:33','2021-05-17 06:05:33','f2bb725e-719a-40f7-8f59-f6d2cc6b3563',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(64,16656,1,'2021-05-17 06:05:33','2021-05-17 06:05:33','f469ea78-0d90-47c6-94b6-5e76ac1ef068',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(65,16657,1,'2021-05-17 06:05:33','2021-05-17 06:05:33','1450902c-885a-4995-ac42-1ae5f1061f33',NULL,NULL,'Visual realisation','<p>The Revelian brand refresh builds on the reveal concept embodied in the business name of the organisation. While the logo remains simple, strong and typographic, the visual elements have starring roles. They show and tell how the company reveals its precious insights—using filters, colours, photography and myriad gorgeous design treatments.<br /> <br /></p>\n<p>It all makes beautiful sense, positions the business powerfully and binds the team internally more closely to their purpose. By so doing, it ensures current and prospective customers and partners can access, understand, and most importantly, prefer Revelian and its offering.</p>',NULL,NULL,NULL,NULL,NULL),(66,16658,1,'2021-05-17 06:05:33','2021-05-17 06:05:33','31e7d7ce-5d75-4cc7-afba-e4616a7d017e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(143,16744,1,'2021-05-17 06:17:10','2021-05-17 06:17:10','7b5acc7a-1742-4a06-807d-d54a502e02c4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(144,16745,1,'2021-05-17 06:17:10','2021-05-17 06:17:10','4c8fb244-3389-4f76-ae41-eab55d96c3e3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(145,16746,1,'2021-05-17 06:17:10','2021-05-17 06:17:10','a15347f0-7231-41a8-b750-e8fc0344f91d',NULL,NULL,'Visual realisation','<p>The Revelian brand refresh builds on the reveal concept embodied in the business name of the organisation. While the logo remains simple, strong and typographic, the visual elements have starring roles. They show and tell how the company reveals its precious insights—using filters, colours, photography and myriad gorgeous design treatments.<br /> <br /></p>\n<p>It all makes beautiful sense, positions the business powerfully and binds the team internally more closely to their purpose. By so doing, it ensures current and prospective customers and partners can access, understand, and most importantly, prefer Revelian and its offering.</p>',NULL,NULL,NULL,NULL,NULL),(146,16747,1,'2021-05-17 06:17:10','2021-05-17 06:17:10','d3241ac8-5ac7-443d-8efe-2dfca7d965e7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(147,16748,1,'2021-05-17 06:17:10','2021-05-17 06:17:10','50f3a42a-2b11-4c6c-a433-0733761a55b3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(148,16749,1,'2021-05-17 06:17:10','2021-05-17 06:17:10','0e9d6ec2-791d-4fec-a262-e66ac513e8c0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(149,16750,1,'2021-05-17 06:17:10','2021-05-17 06:17:10','99fe4903-52ee-4414-87ac-aeb3678d70e0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(150,16751,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','bbe627d5-b3fa-4125-9c09-d923f669a09d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(151,16752,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','5bac5598-9be4-41b8-b11f-395e5b4d4b37',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(152,16753,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','2f4e203e-d796-471b-890f-2613ffecdbd9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(153,16754,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','f3b238a1-d582-4846-8370-394a1ab70025',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(154,16755,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','960328f0-040f-4631-9d43-83cece282ed7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(155,16757,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','e49b16bf-131d-43da-8f7d-1620607e3d3c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(156,16758,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','140ca2cf-8d73-4bb4-b7df-1c1ec14de82f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(157,16759,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','e85a435a-8faa-46b1-a074-2ee6fcf92093',NULL,NULL,'Visual realisation','<p>The Revelian brand refresh builds on the reveal concept embodied in the business name of the organisation. While the logo remains simple, strong and typographic, the visual elements have starring roles. They show and tell how the company reveals its precious insights—using filters, colours, photography and myriad gorgeous design treatments.<br /> <br /></p>\n<p>It all makes beautiful sense, positions the business powerfully and binds the team internally more closely to their purpose. By so doing, it ensures current and prospective customers and partners can access, understand, and most importantly, prefer Revelian and its offering.</p>',NULL,NULL,NULL,NULL,NULL),(158,16760,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','09b1d3de-31bc-4422-ab4f-d4bd635d3625',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(159,16761,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','948adc22-bda5-4aad-9337-9cdbed0b2ecd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(160,16762,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','0616723f-690d-48ef-be0e-9f69962763a3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(161,16763,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','dc19e382-f76c-470d-bffa-7004cf866625',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(162,16764,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','3339db6e-f31e-4f7a-9db3-01c6c23d3d97',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(163,16765,1,'2021-05-17 06:17:12','2021-05-17 06:17:12','8e9beceb-9d91-4195-a36b-6eb468c40858',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(164,16766,1,'2021-05-17 06:17:12','2021-05-17 06:17:12','21dcf61f-8451-4560-a505-eff4407959c3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(165,16767,1,'2021-05-17 06:17:12','2021-05-17 06:17:12','a137aca8-50cd-4bdb-8d78-172ab2b894b1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(166,16768,1,'2021-05-17 06:17:12','2021-05-17 06:17:12','6caca7d9-d90c-4fb1-9620-387bd19903ce',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(167,16770,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','44eef503-e602-433c-9995-b2d2f075ab93',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(168,16771,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','3cfb4a82-fdc8-4ed6-940e-42ff4647bdd4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(169,16772,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','0ba66e5e-9119-4c58-a466-faf66d08b0f3',NULL,NULL,'Visual realisation','<p>The Revelian brand refresh builds on the reveal concept embodied in the business name of the organisation. While the logo remains simple, strong and typographic, the visual elements have starring roles. They show and tell how the company reveals its precious insights—using filters, colours, photography and myriad gorgeous design treatments.<br /> <br /></p>\n<p>It all makes beautiful sense, positions the business powerfully and binds the team internally more closely to their purpose. By so doing, it ensures current and prospective customers and partners can access, understand, and most importantly, prefer Revelian and its offering.</p>',NULL,NULL,NULL,NULL,NULL),(170,16773,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','a5ab04b3-b060-456f-984a-79c22a5f18e5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(171,16774,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','3a3b44c3-29c4-4db0-9f04-b049ed3c5cd1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(172,16775,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','815588ba-c7c1-4f0e-80e3-4d0ebabd8955',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(173,16776,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','89a92afd-6706-4fc9-a972-81108360de35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(174,16777,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','550d1b65-696a-4775-8a78-beb3bbc47a8b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(175,16778,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','46e3c67e-17d8-4a1f-b5f9-2436dd17e777',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(176,16779,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','fbe6e4ef-19c6-42aa-a87a-652b8f760431',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(177,16780,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','10d2178a-1b8c-4574-9b4c-12489bac1a4e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(178,16781,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','337106c6-bf99-4ebc-a7c9-57e48e744d19',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(179,16783,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','ef6f0ce7-d682-437d-aa16-20b522f6f367',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(180,16784,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','2b508041-f853-4602-bef1-51b6286f3a7a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(181,16785,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','1a8b0749-ea09-422c-884f-0326cb995795',NULL,NULL,'Visual realisation','<p>The Revelian brand refresh builds on the reveal concept embodied in the business name of the organisation. While the logo remains simple, strong and typographic, the visual elements have starring roles. They show and tell how the company reveals its precious insights—using filters, colours, photography and myriad gorgeous design treatments.<br /> <br /></p>\n<p>It all makes beautiful sense, positions the business powerfully and binds the team internally more closely to their purpose. By so doing, it ensures current and prospective customers and partners can access, understand, and most importantly, prefer Revelian and its offering.</p>',NULL,NULL,NULL,NULL,NULL),(182,16786,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','2484c2b6-e9b5-44cf-85cb-ab4244735ab9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(183,16787,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','99683a14-c491-43ad-af47-39295e46e419',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(184,16788,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','f123173f-b7ed-4c8a-a38c-e22cb5bc18ee',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(185,16789,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','ca06c358-b7b6-4530-bbe9-8e870956c362',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(186,16790,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','e6e17e49-b715-4aa7-a257-2f94bddf6998',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(187,16791,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','0f3fa29b-8b51-4c6d-86d1-30c7880b9423',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(188,16792,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','e1187d8c-9be7-4d25-999c-30e1f96d88ed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(189,16793,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','a2f0951e-3832-4868-8c3a-14b0f0e87da0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(190,16794,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','3d20748d-bd65-44e2-84f4-6ab8f72cc7d6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(191,16797,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','f5c02352-aa38-411d-96bf-e5fe44553b10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(192,16798,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','f8240591-5f40-45b3-a607-a651009f8aa9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(193,16799,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','b0c8acbb-a244-4355-ab3f-b9943b6a9ada',NULL,NULL,'Visual realisation','<p>The Revelian brand refresh builds on the reveal concept embodied in the business name of the organisation. While the logo remains simple, strong and typographic, the visual elements have starring roles. They show and tell how the company reveals its precious insights—using filters, colours, photography and myriad gorgeous design treatments.<br /> <br /></p>\n<p>It all makes beautiful sense, positions the business powerfully and binds the team internally more closely to their purpose. By so doing, it ensures current and prospective customers and partners can access, understand, and most importantly, prefer Revelian and its offering.</p>',NULL,NULL,NULL,NULL,NULL),(194,16800,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','a1d5a333-2e94-4bf8-9410-98715ccfe81a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(195,16801,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','db9c1b22-aa37-4195-a9ee-508bc04db443',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(196,16802,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','ef388868-3027-4282-b56d-e65b826b07a1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(197,16803,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','2db45431-fea2-4143-93f9-0d7626cbe246',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(198,16804,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','7e2c0b91-e6f5-4c7c-89aa-f2a0e5aa56c3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(199,16805,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','ca9dfd92-073c-434f-94be-032bcfec4c99',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(200,16806,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','f30d7967-69a8-4cb0-aaea-ccadcba113ac',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(201,16807,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','787e10b1-5cce-4848-883e-d7ae7c106645',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(202,16808,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','3aa32167-bb1e-4ae8-8d2c-5d952ef2f050',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(203,16811,1,'2021-05-17 23:37:52','2021-05-17 23:37:52','81a844d3-90d9-4005-b78f-8b355c09daf8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(204,16812,1,'2021-05-17 23:37:53','2021-05-17 23:37:53','b4ea3d9e-0175-457f-920d-c5659d168703',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(205,16813,1,'2021-05-17 23:37:53','2021-05-17 23:37:53','c44eed91-bec2-4d22-9e0d-f43ce5578675',NULL,NULL,'Visual realisation','<p>The Revelian brand refresh builds on the reveal concept embodied in the business name of the organisation. While the logo remains simple, strong and typographic, the visual elements have starring roles. They show and tell how the company reveals its precious insights—using filters, colours, photography and myriad gorgeous design treatments.<br /> <br /></p>\n<p>It all makes beautiful sense, positions the business powerfully and binds the team internally more closely to their purpose. By so doing, it ensures current and prospective customers and partners can access, understand, and most importantly, prefer Revelian and its offering.</p>',NULL,NULL,NULL,NULL,NULL),(206,16814,1,'2021-05-17 23:37:53','2021-05-17 23:37:53','b4a151c5-54bb-4982-a897-d8b9ad0c5be3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(207,16815,1,'2021-05-17 23:37:53','2021-05-17 23:37:53','ed1fc8ee-e763-4bc0-a482-95704df370c1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(208,16816,1,'2021-05-17 23:37:53','2021-05-17 23:37:53','a2c88b48-9e79-4333-871d-ebd2241ee4e2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(209,16817,1,'2021-05-17 23:37:53','2021-05-17 23:37:53','10eba228-aa50-40fd-8533-96f94439a0f2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(210,16818,1,'2021-05-17 23:37:53','2021-05-17 23:37:53','1a32a9b7-963a-439f-b5b9-bfce21af14cc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(211,16819,1,'2021-05-17 23:37:53','2021-05-17 23:37:53','6ce630c3-0a8f-41c3-be3b-df86bf32e1db',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(212,16820,1,'2021-05-17 23:37:53','2021-05-17 23:37:53','ef4ad3b3-f1cc-47a0-89b7-4ac0d0ab69d2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(213,16821,1,'2021-05-17 23:37:53','2021-05-17 23:37:53','aaeed12f-d14d-4a2c-a688-11062a35362d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(214,16822,1,'2021-05-17 23:37:53','2021-05-17 23:37:53','7b1535b3-f638-4ab1-bc1e-2f7748608bfd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(218,16831,1,'2021-05-17 23:41:01','2021-05-17 23:41:01','4a13c9b6-8d20-4aea-85da-2b97146eb0db',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(219,16833,1,'2021-05-17 23:43:09','2021-05-17 23:43:09','6ea8fbe9-89aa-40be-aabb-03d286a891d9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(220,16837,1,'2021-05-17 23:43:51','2021-05-17 23:43:51','c1b70d04-ccb4-480a-8c52-a8a6b0742bfe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(221,16842,1,'2021-05-17 23:46:42','2021-05-17 23:46:42','769f7ff3-7701-4fa8-9105-02edda6b2504',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(223,16845,1,'2021-05-17 23:48:10','2021-05-17 23:48:10','448af3c2-db8e-4783-a833-12168920c1ec',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(224,16846,1,'2021-05-17 23:48:10','2021-05-17 23:48:10','e1523976-fb44-4ed5-9a74-4584af451764','Here is some lead text','This is the content for the lead text',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(226,16849,1,'2021-05-17 23:51:22','2021-05-17 23:51:22','ad873b57-338d-4941-aae8-8b6cb7b88537',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(227,16850,1,'2021-05-17 23:51:22','2021-05-17 23:51:22','35df8a68-3b2a-4575-9a5c-f2c67d74a370','Here is some lead text','This is the content for the lead text',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(229,16853,1,'2021-05-17 23:54:40','2021-05-17 23:54:40','be0cf2be-b2af-4d96-8934-9a0deef8e5ca',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(230,16854,1,'2021-05-17 23:54:40','2021-05-17 23:54:40','a7a55c53-e5a6-4132-9bb0-891385cb79df','Here is some lead text','This is the content for the lead text',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(232,16857,1,'2021-05-18 00:01:20','2021-05-18 00:01:20','2aa994bd-fa60-435a-88cb-0047520569fd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(233,16858,1,'2021-05-18 00:01:20','2021-05-18 00:01:20','4f0898af-d504-435d-b4c7-667d8ff33308','Here is some lead text','This is the content for the lead text',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(235,16862,1,'2021-05-18 00:07:48','2021-05-18 00:07:48','a432222d-ee3e-4a51-a74c-cf1d636593f0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(236,16863,1,'2021-05-18 00:07:48','2021-05-18 00:07:48','cdd554cf-5ae6-47c1-8d5d-2104566a24c3','Here is some lead text','This is the content for the lead text',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(238,17978,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','deb14800-8597-4084-9c65-bb5f98b8b613',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(239,17979,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','0c73460e-520c-45bd-a017-179a11492343',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(240,17980,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','3f51c408-3681-4da5-88c6-16ca03c0b9d8',NULL,NULL,'Visual realisation','<p>The Revelian brand refresh builds on the reveal concept embodied in the business name of the organisation. While the logo remains simple, strong and typographic, the visual elements have starring roles. They show and tell how the company reveals its precious insights—using filters, colours, photography and myriad gorgeous design treatments.<br /><br /></p>\n<p>It all makes beautiful sense, positions the business powerfully and binds the team internally more closely to their purpose. By so doing, it ensures current and prospective customers and partners can access, understand, and most importantly, prefer Revelian and its offering.</p>',NULL,NULL,NULL,NULL,NULL),(241,17981,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','bab2c1f0-a34e-48df-92fa-2b79df83c882',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(242,17982,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','d0637982-8e99-46b9-bf33-e76d8dc6c3d5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(243,17983,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','9fbe4066-5e4d-43a1-97a6-263645c0fec0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(244,17984,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','047c4fed-9c7e-4d88-bdb8-55a96acb74ec',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(245,17985,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','bda89cf2-97ca-4d1a-87e5-1eb2d9641920',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(246,17986,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','586c0fd5-99cd-4cb5-8041-7c43985246b5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(247,17987,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','42b3e8ff-7a82-4d26-8b75-17473b0a21b6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(248,17988,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','267729f8-92ac-4736-a259-380958dadf12',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(249,17989,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','bf022bca-3934-4bef-9d7b-2292b5c5b719',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(250,18004,1,'2021-06-03 05:19:19','2021-06-03 05:19:19','c1340cda-070f-4b27-835b-63404e2eb9b0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(251,18005,1,'2021-06-03 05:19:19','2021-06-03 05:19:19','56258e3b-6173-4f5a-9abd-e31bb20928b0','Here is some lead text','This is the content for the lead text',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(266,18022,1,'2021-06-03 05:22:27','2021-06-03 05:22:27','258b2cba-e6f4-4d2b-9673-6adb062e3138',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(267,18023,1,'2021-06-03 05:22:27','2021-06-03 05:22:27','6a00f3b8-72be-4e6f-8dc0-fa9ad39c19b3','Challenge','To slow the spread of COVID-19, people were spending more time at home. But for some, home isn\'t the safe place it should be. The Queensland Government commissioned us to develop a campaign to build awareness of domestic and family violence and the support available.',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(268,18024,1,'2021-06-03 05:22:27','2021-06-03 05:22:27','5710d380-9626-40be-a77d-07914c690e7f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(269,18025,1,'2021-06-03 05:22:27','2021-06-03 05:22:27','5dfeb7ce-abaf-4b89-a92f-b2603b0a40e5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(271,18028,1,'2021-06-03 05:27:17','2021-06-03 05:27:17','93c78cd9-6046-408a-a122-6b9c5576415f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(272,18029,1,'2021-06-03 05:27:17','2021-06-03 05:27:17','e683b4f3-77ca-4bb5-8bd5-9a15049da319','Challenge','To slow the spread of COVID-19, people were spending more time at home. But for some, home isn\'t the safe place it should be. The Queensland Government commissioned us to develop a campaign to build awareness of domestic and family violence and the support available.',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(273,18030,1,'2021-06-03 05:27:17','2021-06-03 05:27:17','59ba7f84-a195-467c-b561-0b534d6c85a8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(274,18031,1,'2021-06-03 05:27:17','2021-06-03 05:27:17','616e9670-7c18-4501-b7e6-14150c74a866',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(275,18032,1,'2021-06-03 05:27:18','2021-06-03 05:27:18','d317c1b2-8ffd-45c2-8bef-c9e28eb32ad2',NULL,NULL,NULL,NULL,'Vivamus sagittis lacus vel augue laoreet faucibus dolor auctor.','Nullam id dolor id nibh ultricies vehicula ut id elit. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Praesent magna, vel scelerisque nisl consectetur et.\n\nCras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Integer venenatis dapibus posuere velit aliquet.\n\nMorbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Donec id elit non mi porta gravid.','left',NULL,NULL),(276,18035,1,'2021-06-03 05:55:32','2021-06-03 05:55:32','21d87a4f-20ce-464e-81a6-c26ba3fea2f5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(277,18036,1,'2021-06-03 05:55:32','2021-06-03 05:55:32','d0222813-2df3-4b64-8191-b6a35c6de8cc','Challenge','To slow the spread of COVID-19, people were spending more time at home. But for some, home isn\'t the safe place it should be. The Queensland Government commissioned us to develop a campaign to build awareness of domestic and family violence and the support available.',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(278,18037,1,'2021-06-03 05:55:32','2021-06-03 05:55:32','50156e22-f57b-459c-8a33-e444baaafa0c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(279,18038,1,'2021-06-03 05:55:32','2021-06-03 05:55:32','fd83d6e2-25a5-4031-8dde-2240e87f3ff4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(280,18039,1,'2021-06-03 05:55:32','2021-06-03 05:55:32','ee112853-93d2-4408-a9af-fa04930ba09f',NULL,NULL,NULL,NULL,'Vivamus sagittis lacus vel augue laoreet faucibus dolor auctor.','Nullam id dolor id nibh ultricies vehicula ut id elit. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Praesent magna, vel scelerisque nisl consectetur et.\n\nCras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Integer venenatis dapibus posuere velit aliquet.\n\nMorbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Donec id elit non mi porta gravid.','left',NULL,NULL),(281,18052,1,'2021-06-03 05:56:54','2021-06-03 05:56:54','5e92dc05-3904-4d8c-98a2-f106677760d5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(282,18053,1,'2021-06-03 05:56:54','2021-06-03 05:56:54','878f9483-d9fa-4db7-a3f4-20a00a3aeaad','Challenge','To slow the spread of COVID-19, people were spending more time at home. But for some, home isn\'t the safe place it should be. The Queensland Government commissioned us to develop a campaign to build awareness of domestic and family violence and the support available.',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(283,18054,1,'2021-06-03 05:56:54','2021-06-03 05:56:54','ec200da0-f36a-448a-8d3f-136d385a95e8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(284,18055,1,'2021-06-03 05:56:54','2021-06-03 05:56:54','aec27f4a-01a3-4b18-9e66-e0e19d8f7647',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(285,18056,1,'2021-06-03 05:56:54','2021-06-03 05:56:54','455425d8-3caa-4419-a1cb-44a4a40e95d7',NULL,NULL,NULL,NULL,'Vivamus sagittis lacus vel augue laoreet faucibus dolor auctor.','Nullam id dolor id nibh ultricies vehicula ut id elit. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Praesent magna, vel scelerisque nisl consectetur et.\n\nCras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Integer venenatis dapibus posuere velit aliquet.\n\nMorbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Donec id elit non mi porta gravid.','left',NULL,NULL),(298,18072,1,'2021-06-03 06:11:01','2021-06-03 06:11:01','6ab272ad-3c6d-4732-b624-11d2db2e510b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(299,18073,1,'2021-06-03 06:11:01','2021-06-03 06:11:01','4aec452d-8e39-4758-93f6-8d1fd71b5555','Challenge','To slow the spread of COVID-19, people were spending more time at home. But for some, home isn\'t the safe place it should be. The Queensland Government commissioned us to develop a campaign to build awareness of domestic and family violence and the support available.',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(300,18074,1,'2021-06-03 06:11:01','2021-06-03 06:11:01','8ff2c5c2-21a4-41f3-aad4-502ad2927674',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(301,18075,1,'2021-06-03 06:11:01','2021-06-03 06:11:01','42eefdf7-547c-4d74-8632-870dc17208f7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(302,18076,1,'2021-06-03 06:11:01','2021-06-03 06:11:01','09b66545-9bc8-451f-9b15-1c0f5e492826',NULL,NULL,NULL,NULL,'Vivamus sagittis lacus vel augue laoreet faucibus dolor auctor.','Nullam id dolor id nibh ultricies vehicula ut id elit. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Praesent magna, vel scelerisque nisl consectetur et.\n\nCras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Integer venenatis dapibus posuere velit aliquet.\n\nMorbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Donec id elit non mi porta gravid.','left',NULL,NULL),(303,18078,1,'2021-06-03 06:12:30','2021-06-03 06:12:30','7759c083-2aac-493c-adbb-35ffbbf3c205',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(304,18079,1,'2021-06-03 06:12:30','2021-06-03 06:12:30','1ffb30f3-550e-458a-b1a4-85a36b5439e0','Challenge','To slow the spread of COVID-19, people were spending more time at home. But for some, home isn\'t the safe place it should be. The Queensland Government commissioned us to develop a campaign to build awareness of domestic and family violence and the support available.',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(305,18080,1,'2021-06-03 06:12:30','2021-06-03 06:12:30','c71922d9-325c-401a-aa2b-be8877a01f36',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(306,18081,1,'2021-06-03 06:12:30','2021-06-03 06:12:30','0f524285-0f9b-4398-bea8-151b330a16aa',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(307,18082,1,'2021-06-03 06:12:30','2021-06-03 06:12:30','3030a925-012e-4c76-ba3f-a6a2ae1c6756',NULL,NULL,NULL,NULL,'Vivamus sagittis lacus vel augue laoreet faucibus dolor auctor.','Nullam id dolor id nibh ultricies vehicula ut id elit. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Praesent magna, vel scelerisque nisl consectetur et.\n\nCras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Integer venenatis dapibus posuere velit aliquet.\n\nMorbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Donec id elit non mi porta gravid.','left',NULL,NULL),(321,18098,1,'2021-06-03 06:13:45','2021-06-03 06:13:45','20ddddbc-c885-4f59-996a-29587ee55ff7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(322,18099,1,'2021-06-03 06:13:45','2021-06-03 06:13:45','b36d23d0-6a8e-4a3c-8273-dda7b529190b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(323,18100,1,'2021-06-03 06:13:45','2021-06-03 06:13:45','51bd89c1-1a39-48b2-85bb-feb7b1fedf3f','Challenge','To slow the spread of COVID-19, people were spending more time at home. But for some, home isn\'t the safe place it should be. The Queensland Government commissioned us to develop a campaign to build awareness of domestic and family violence and the support available.',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(324,18101,1,'2021-06-03 06:13:45','2021-06-03 06:13:45','7d5072ff-85f3-4585-b58e-1e529808647c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(325,18102,1,'2021-06-03 06:13:45','2021-06-03 06:13:45','7fda4bdb-6b52-4761-8977-38ffd994f70a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(326,18103,1,'2021-06-03 06:13:45','2021-06-03 06:13:45','8a71117e-45bb-4e38-acb7-b1ee54acb4f9',NULL,NULL,NULL,NULL,'Vivamus sagittis lacus vel augue laoreet faucibus dolor auctor.','Nullam id dolor id nibh ultricies vehicula ut id elit. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Praesent magna, vel scelerisque nisl consectetur et.\n\nCras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Integer venenatis dapibus posuere velit aliquet.\n\nMorbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Donec id elit non mi porta gravid.','left',NULL,NULL),(448,18339,1,'2021-06-09 23:34:56','2021-06-09 23:34:56','5f05d2c7-c22d-4292-9d31-3be68918fab7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(449,18340,1,'2021-06-09 23:34:56','2021-06-09 23:34:56','1782b255-15d3-4c93-990b-8f5b8d9816b6','Challenge','Water and waste treatment are essential services and flushing the wrong items down the toilet costs Queensland Urban Utilities $200 million every year. Urban Utilities asked us to think of an original, creative campaign idea that would resonate with Queensland families. Our solution was the No. 3 campaign.',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(450,18341,1,'2021-06-09 23:34:56','2021-06-09 23:34:56','2cb1286f-68e1-4c8c-a60c-250a57840aca',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(451,18342,1,'2021-06-09 23:34:56','2021-06-09 23:34:56','a774f546-ae4d-40ed-9b3d-f8d4bf29619b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(452,18343,1,'2021-06-09 23:34:56','2021-06-09 23:34:56','83a94d68-5f9d-4aaf-b07d-7fb687a6e67a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(453,18344,1,'2021-06-09 23:34:56','2021-06-09 23:34:56','c5a39262-2fe2-4ed1-a44a-c6a8bd620462',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(454,18345,1,'2021-06-09 23:34:56','2021-06-09 23:34:56','2eff38cb-485b-4783-9c10-faa560323c5c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(455,18346,1,'2021-06-09 23:34:56','2021-06-09 23:34:56','64f9a9b4-b023-4de9-8631-cd574be6ebd7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(456,18347,1,'2021-06-09 23:34:56','2021-06-09 23:34:56','106dd5b5-94f6-4c18-bc6e-49bb9a2b1a08',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(457,18349,1,'2021-06-09 23:35:01','2021-06-09 23:35:01','d2e68e56-86c2-4bbc-9b06-2139fb8eea42',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(458,18350,1,'2021-06-09 23:35:01','2021-06-09 23:35:01','8a71a0a0-114c-4fc9-bbb4-de57b211bec9','Challenge','Water and waste treatment are essential services and flushing the wrong items down the toilet costs Queensland Urban Utilities $200 million every year. Urban Utilities asked us to think of an original, creative campaign idea that would resonate with Queensland families. Our solution was the No. 3 campaign.',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(459,18351,1,'2021-06-09 23:35:01','2021-06-09 23:35:01','83ebf6a3-a6f2-4e8d-93cc-5d3c21a6e81d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(460,18352,1,'2021-06-09 23:35:01','2021-06-09 23:35:01','a8e6572a-d3a2-412f-a1aa-6bdff09eb7a3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(461,18353,1,'2021-06-09 23:35:01','2021-06-09 23:35:01','0434da69-8a7b-4455-a336-80ca9a0916dc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(462,18354,1,'2021-06-09 23:35:01','2021-06-09 23:35:01','5abfa244-8892-4ce5-ae8d-093cc49e378d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(463,18355,1,'2021-06-09 23:35:01','2021-06-09 23:35:01','d0fdb307-27b7-4483-a101-9d916393724a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(464,18356,1,'2021-06-09 23:35:01','2021-06-09 23:35:01','52dae96e-50e5-44cd-977c-106bb9a10f93',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(465,18357,1,'2021-06-09 23:35:01','2021-06-09 23:35:01','3452740c-837f-4bae-adb1-d8eb10286922',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(476,18370,1,'2021-06-09 23:36:05','2021-06-09 23:36:05','cccd516b-3f74-4f70-8742-b33aed349b48',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(477,18371,1,'2021-06-09 23:36:05','2021-06-09 23:36:05','ad877e59-fdc4-4519-96ba-36d1c1fded26','Challenge','Suicide take around eight Australians from us every day and it needs to stop. Brisbane North PHN commissioned us to join the fight against suicide and produce a powerful digital campaign, speaking to people at risk of suicide and to their friends and family.',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(574,18539,1,'2021-06-09 23:44:53','2021-06-09 23:44:53','793663d4-6350-4e6a-8f36-dc1db7f8feed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(575,18540,1,'2021-06-09 23:44:53','2021-06-09 23:44:53','a2b36dc0-add9-4e61-ac67-5d5c1d6b04c5','Challenge','Suicide take around eight Australians from us every day and it needs to stop. Brisbane North PHN commissioned us to join the fight against suicide and produce a powerful digital campaign, speaking to people at risk of suicide and to their friends and family.',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(576,18541,1,'2021-06-09 23:44:53','2021-06-09 23:44:53','13a66760-1234-49e3-ad9c-0630960dfcb9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(577,18542,1,'2021-06-09 23:44:53','2021-06-09 23:44:53','5b04044f-db18-4f9d-a22e-57a9baa1ae65',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(578,18543,1,'2021-06-09 23:44:53','2021-06-09 23:44:53','114a776f-7d2c-4936-94c1-b2ebef2b1a04',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(579,18545,1,'2021-06-09 23:44:53','2021-06-09 23:44:53','62504a1c-0c36-4bb2-abbc-0a15b433c341',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(580,18551,1,'2021-06-09 23:44:59','2021-06-09 23:44:59','88c0f312-cf16-4273-a84c-ab5da28155ab',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(581,18552,1,'2021-06-09 23:44:59','2021-06-09 23:44:59','f568837d-ac88-4e2e-991f-e046039b5090','Challenge','Suicide take around eight Australians from us every day and it needs to stop. Brisbane North PHN commissioned us to join the fight against suicide and produce a powerful digital campaign, speaking to people at risk of suicide and to their friends and family.',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(582,18553,1,'2021-06-09 23:44:59','2021-06-09 23:44:59','a88bc189-25d8-4cee-9e8b-31e0355bf601',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(583,18554,1,'2021-06-09 23:44:59','2021-06-09 23:44:59','9f332d42-b340-4621-ba1f-58c75bd0ef47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(584,18555,1,'2021-06-09 23:44:59','2021-06-09 23:44:59','a93d5a8f-b72d-428e-8877-9bc036e6c9a6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(585,18557,1,'2021-06-09 23:45:00','2021-06-09 23:45:00','be463a71-6358-4df9-879c-656b40203552',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(586,18563,1,'2021-06-09 23:45:21','2021-06-09 23:45:21','c26a89dd-31f5-4f95-9ca2-83085657b573',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(587,18564,1,'2021-06-09 23:45:21','2021-06-09 23:45:21','9036acd6-68d2-4ddb-b611-c673897cdfa3','Challenge','Water and waste treatment are essential services and flushing the wrong items down the toilet costs Queensland Urban Utilities $200 million every year. Urban Utilities asked us to think of an original, creative campaign idea that would resonate with Queensland families. Our solution was the No. 3 campaign.',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(588,18565,1,'2021-06-09 23:45:21','2021-06-09 23:45:21','72fcb75b-815b-4d60-83ce-373542f52225',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(589,18566,1,'2021-06-09 23:45:21','2021-06-09 23:45:21','906889a7-0fbc-4afd-a651-f66fa037a33d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(590,18567,1,'2021-06-09 23:45:21','2021-06-09 23:45:21','f44432b3-26df-4af6-9de4-a3d13b6d938d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(591,18568,1,'2021-06-09 23:45:21','2021-06-09 23:45:21','9fb48eaa-5924-4340-be87-5a535d603eb6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(592,18569,1,'2021-06-09 23:45:21','2021-06-09 23:45:21','0a8b6ffb-02f9-4578-b142-17b194e73c82',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(593,18570,1,'2021-06-09 23:45:21','2021-06-09 23:45:21','e09408ff-4b79-4a4c-abd7-bf3bf89bcdf0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(594,18571,1,'2021-06-09 23:45:21','2021-06-09 23:45:21','50295aef-3981-4d7a-af39-40c4ce375a3d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(595,18573,1,'2021-06-09 23:45:55','2021-06-09 23:45:55','f5e258d3-947a-4ad7-bfcf-360a7ae4b865',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(596,18574,1,'2021-06-09 23:45:55','2021-06-09 23:45:55','8d9f0e63-0c52-4d55-8488-3bfa6b08b764','Challenge','Suicide take around eight Australians from us every day and it needs to stop. Brisbane North PHN commissioned us to join the fight against suicide and produce a powerful digital campaign, speaking to people at risk of suicide and to their friends and family.',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(597,18575,1,'2021-06-09 23:45:55','2021-06-09 23:45:55','4b087658-554e-49cf-9eb4-fd4db831047a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(598,18576,1,'2021-06-09 23:45:55','2021-06-09 23:45:55','99336a06-aab7-4191-894b-91e3be744c22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(599,18577,1,'2021-06-09 23:45:55','2021-06-09 23:45:55','84eaa03a-ffe0-4b95-90fc-03363101989f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(600,18579,1,'2021-06-09 23:45:55','2021-06-09 23:45:55','483eaf97-9d9c-4966-aa5e-348faa4247aa',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(638,18627,1,'2021-06-09 23:50:04','2021-06-09 23:50:04','e347d2a2-d62b-4502-afa0-a781c5792717',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(639,18628,1,'2021-06-09 23:50:04','2021-06-09 23:50:04','18c3f441-602f-403d-b7eb-fe77cd7a9e3d','Challenge','Market research in 2015 was showing the anti-vax movement was taking hold.',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(640,18629,1,'2021-06-09 23:50:04','2021-06-09 23:50:04','ecb18e1b-3a57-444e-b62f-82b503d6c514',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(641,18630,1,'2021-06-09 23:50:04','2021-06-09 23:50:04','f26c2a28-b7ca-4aa0-9398-d346cb21c0f1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(642,18631,1,'2021-06-09 23:50:04','2021-06-09 23:50:04','ea11b704-2df1-4ae4-ae52-32ec75f9ad25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(643,18633,1,'2021-06-09 23:50:10','2021-06-09 23:50:10','3df6a384-77d5-4298-ace7-376066aa7eb4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(644,18634,1,'2021-06-09 23:50:10','2021-06-09 23:50:10','5f974a02-a450-456c-91e3-c8e0fe21fe1d','Challenge','Market research in 2015 was showing the anti-vax movement was taking hold.',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(645,18635,1,'2021-06-09 23:50:10','2021-06-09 23:50:10','5523e8c3-1bd0-4838-8959-eee7eab3272a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(646,18636,1,'2021-06-09 23:50:10','2021-06-09 23:50:10','c87c4cac-6d8a-4e72-ada9-88eb8b737ee2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(647,18637,1,'2021-06-09 23:50:10','2021-06-09 23:50:10','2bf5d33d-9a29-4f3c-aed9-781a62e084e4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(972,19015,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','f955d6ee-9c51-4816-b385-82f36f841315',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(973,19017,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','68e58a25-2f60-4cc4-a68d-5be808e82c94','Challenge','As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league.\n\nTritium commissioned us to update their brand—to put their internal culture of creativity and innovation on display and to share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(974,19018,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','664f778b-1555-45d2-9383-4277c8748304',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(975,19019,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','f847f1a3-9d7b-404f-8a7a-3b32a9dac9bc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(976,19020,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','d786267c-75c3-475d-ab1c-00f6c2467a86',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(977,19021,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','591dc074-58c8-4cec-8345-176dba1dee26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(978,19022,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','57e8c90e-2ddc-463f-892d-96f8444d00c7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(979,19023,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','1d23906b-5c10-497e-bfb5-d8a39b062251',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(980,19024,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','1efad608-e8b9-4fd7-8be7-84abd2784422',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(981,19025,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','47efd43c-123c-4372-87d9-d2b93fc6eb71',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(982,19026,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','88b0c449-232e-44ba-89e8-1fd8d8a6e303',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(983,19027,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','3826e1e4-b765-46ed-9709-c4a36bdcf894',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(984,19028,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','b8c8a857-9615-4a11-ad7f-b9d2f84b58e9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(985,19029,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','47286116-f6fa-4b39-8a7a-f0478636b9dd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(986,19030,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','aa607003-2d69-4c07-9950-eb9cfe15ac67',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(987,19031,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','2aff9c9b-ac08-4d3a-bf6e-a78ad3c5da85',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(988,19032,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','c37b1c77-ca93-4d05-90dd-f298cd5116af',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(989,19034,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','38c1a4e8-e4b0-488e-9167-db1cb730d16c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(990,19036,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','2f79d1c1-f7e5-4b94-91f8-373fa71ed021','Challenge','As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league.\n\nTritium commissioned us to update their brand—to put their internal culture of creativity and innovation on display and to share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(991,19037,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','f71d25a9-ffe2-43a9-a23e-8cd372e59399',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(992,19038,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','33f390b3-5e69-471f-924b-3ed3e80a4790',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(993,19039,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','30a5b267-84f2-412c-a239-ef91cd56fa09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(994,19040,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','a0be9095-d0d7-4974-9ecd-04af0ae4c656',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(995,19041,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','61bb85d6-1be3-43e1-ae51-a9589cb652ee',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(996,19042,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','c6502a6e-964d-4315-870f-10d84ea6fc3a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(997,19043,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','706149d2-b657-473d-9dc9-3915150f8197',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(998,19044,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','7e34597e-9cd8-44a7-8f61-ac0a17935dda',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(999,19045,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','8dd33bf5-c519-40c1-b88b-244fe54c8069',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1000,19046,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','331aa770-3186-4a8f-b8fb-7c0d8e257d73',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1001,19047,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','356e2c36-93b2-4cc7-a058-fcf40afe56d5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1002,19048,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','02ae9e29-a2a5-43a4-a353-88414f942431',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1003,19049,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','25f3cac2-3aa9-4d4c-8a15-1aae958e220f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1004,19050,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','40120d84-526e-4572-9675-39b5bda52647',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1005,19051,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','f2fed36d-7430-4ed8-b915-d20c9736743c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1018,19094,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','a93177fe-71ea-4b7c-b6fd-a7c422ba1818',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1019,19095,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','71056722-3438-42df-a41f-0910a7dbd37c','Challenge','Suicide take around eight Australians from us every day and it needs to stop. Brisbane North PHN commissioned us to join the fight against suicide and produce a powerful digital campaign, speaking to people at risk of suicide and to their friends and family.',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1020,19096,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','e37b5d64-4688-4b14-91ba-efb43847fcc1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1021,19097,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','6c918e18-ba77-4602-a899-c6a86c1b4e9e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1022,19098,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','96c64d3a-f1c0-4183-9f47-3e6ea688e3ee',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1023,19100,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','b2875bd5-00cc-40ba-8375-42b22ac154a7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1024,19106,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','123db5cb-ae31-4a4f-ba85-cd5a192895d3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1025,19107,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','8550a8e6-c75d-4a4c-a7e5-dd3061317c83','Challenge','Suicide take around eight Australians from us every day and it needs to stop. Brisbane North PHN commissioned us to join the fight against suicide and produce a powerful digital campaign, speaking to people at risk of suicide and to their friends and family.',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1026,19108,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','1db698e2-8fa6-48e6-aa93-76e67575848a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1027,19109,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','241de514-c38c-45e5-b619-7ff728d9420d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1028,19110,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','f8ed787e-7400-46e4-b9cd-766e9f51e36b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1029,19112,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','6401415d-be28-4419-8789-cd81004892b9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1048,19137,1,'2021-06-10 04:27:36','2021-06-10 04:27:36','f69cdf77-cea8-45fd-a883-bb9e1c948d0c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1049,19138,1,'2021-06-10 04:27:36','2021-06-10 04:27:36','4684513d-a290-4414-b22a-21d064bf9950','Challenge','Water and waste treatment are essential services and flushing the wrong items down the toilet costs Queensland Urban Utilities $200 million every year. Urban Utilities asked us to think of an original, creative campaign idea that would resonate with Queensland families. Our solution was the No. 3 campaign.',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1050,19139,1,'2021-06-10 04:27:36','2021-06-10 04:27:36','ed165e7d-809a-4364-9057-cabee6bf52dd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1051,19140,1,'2021-06-10 04:27:37','2021-06-10 04:27:37','627763b7-91d2-4f5d-8fef-dc3a7499fd26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1052,19141,1,'2021-06-10 04:27:37','2021-06-10 04:27:37','bdc4a0f3-ba8d-4f94-b0a0-6ef0f1e8d45f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1053,19142,1,'2021-06-10 04:27:37','2021-06-10 04:27:37','dd52862f-43fc-4a81-9228-4a40a30393e7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1054,19143,1,'2021-06-10 04:27:37','2021-06-10 04:27:37','1d6f4572-fa65-4813-854f-1862be5163a7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1055,19144,1,'2021-06-10 04:27:37','2021-06-10 04:27:37','917f4f2c-f2e7-458c-8dab-ac07afaf59bc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1056,19145,1,'2021-06-10 04:27:37','2021-06-10 04:27:37','24cf0a72-83d2-4155-b306-f71148a07821',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1057,19147,1,'2021-06-10 04:27:41','2021-06-10 04:27:41','c7c7b824-4113-40cd-9af7-9ffcae49f220',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1058,19148,1,'2021-06-10 04:27:41','2021-06-10 04:27:41','248a2675-4ea5-4e75-8a45-fe12f735c267','Challenge','Water and waste treatment are essential services and flushing the wrong items down the toilet costs Queensland Urban Utilities $200 million every year. Urban Utilities asked us to think of an original, creative campaign idea that would resonate with Queensland families. Our solution was the No. 3 campaign.',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1059,19149,1,'2021-06-10 04:27:41','2021-06-10 04:27:41','be5c5bfd-3396-4b14-a9bd-a93527bcb139',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1060,19150,1,'2021-06-10 04:27:41','2021-06-10 04:27:41','eb51efeb-d32e-42ed-9778-4ad3dc760bc5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1061,19151,1,'2021-06-10 04:27:41','2021-06-10 04:27:41','bea17c1f-28c4-44c2-859f-cbda4a66d520',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1062,19152,1,'2021-06-10 04:27:41','2021-06-10 04:27:41','f4d76313-5478-4dba-8458-cb605f1a8651',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1063,19153,1,'2021-06-10 04:27:41','2021-06-10 04:27:41','ca8a1b89-6338-4162-b11c-348a626e0821',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1064,19154,1,'2021-06-10 04:27:41','2021-06-10 04:27:41','2275f33d-f9a0-49c6-b535-96468150dc9a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1065,19155,1,'2021-06-10 04:27:41','2021-06-10 04:27:41','cea0187e-2e40-4b79-9729-14e72957c934',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1078,21937,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','745520d6-d8ae-4d18-94fd-2e11e68fb6df',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1079,21938,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','0127334e-fe15-4cdc-83b5-c207bd11f300',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1080,21939,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','90b01904-1931-4b34-8434-5348b019b67e',NULL,NULL,'Visual realisation','<p>The Revelian brand refresh builds on the reveal concept embodied in the business name of the organisation. While the logo remains simple, strong and typographic, the visual elements have starring roles. They show and tell how the company reveals its precious insights—using filters, colours, photography and myriad gorgeous design treatments.<br /><br /></p>\n<p>It all makes beautiful sense, positions the business powerfully and binds the team internally more closely to their purpose. By so doing, it ensures current and prospective customers and partners can access, understand, and most importantly, prefer Revelian and its offering.</p>',NULL,NULL,NULL,NULL,NULL),(1081,21940,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','cfc65094-ad59-4afa-9c90-745847af19c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1082,21941,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','e1a3d109-a3d1-45f5-90ac-ef698d22218e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1083,21942,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','4f318eea-7fee-48b5-af16-7d24d7dede3c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1084,21943,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','2194f656-4da9-43e5-b994-0571cf16fab8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1085,21944,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','6ff2c052-c0d7-4ebd-be72-5e31aaf65055',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1086,21945,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','274010eb-1c37-4570-934a-5d457c4d6442',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1087,21946,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','b4a62b53-e418-450a-aff2-c610ebe38267',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1088,21947,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','cdca1cb3-9d3f-446e-b17a-78a3f3fa7194',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1089,21948,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','2915c182-71c4-4373-ae7d-ba04dffefb21',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1100,21961,1,'2021-07-16 01:17:55','2021-07-16 01:17:55','285eb60d-85d1-4ddb-915b-d4aea23fd7da',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1101,21962,1,'2021-07-16 01:17:55','2021-07-16 01:17:55','808fe28a-157e-4ef3-82c1-1092a92a1cd2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1102,21963,1,'2021-07-16 01:17:55','2021-07-16 01:17:55','5851be5c-577a-42df-853d-6763f08ee8c3','Challenge','To slow the spread of COVID-19, people were spending more time at home. But for some, home isn\'t the safe place it should be. The Queensland Government commissioned us to develop a campaign to build awareness of domestic and family violence and the support available.',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1103,21964,1,'2021-07-16 01:17:55','2021-07-16 01:17:55','c6d58914-dc8e-45ba-9267-c29c798621c5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1104,21965,1,'2021-07-16 01:17:55','2021-07-16 01:17:55','24db7f98-372a-4450-95ab-7f91f3b96810',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1105,21966,1,'2021-07-16 01:17:55','2021-07-16 01:17:55','417e3929-72db-487e-a647-e8d9422d18c8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1111,21974,1,'2021-07-16 01:36:04','2021-07-16 01:36:04','6ae2dc4c-8e6d-486a-90d3-18c04678379d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1112,21975,1,'2021-07-16 01:36:04','2021-07-16 01:36:04','293e6294-ea7b-42fb-bfeb-cd6e5c4beb94','Challenge','Market research in 2015 was showing the anti-vax movement was taking hold.',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1113,21976,1,'2021-07-16 01:36:04','2021-07-16 01:36:04','9de37839-44c6-47b1-8895-3034b0272c7b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1114,21977,1,'2021-07-16 01:36:04','2021-07-16 01:36:04','a85507be-2e3f-40b0-a94b-a263f27ab1e7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1115,21978,1,'2021-07-16 01:36:04','2021-07-16 01:36:04','af6f5db4-ab86-4bfb-80cc-815033c9cee7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1140,22007,1,'2021-07-16 01:41:34','2021-07-16 01:41:34','ecaddb2e-cd85-4c25-baaa-7e71dd8593a7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1141,22008,1,'2021-07-16 01:41:34','2021-07-16 01:41:34','548c58e4-fa4a-41eb-bb72-3ee811919de0','Challenge','Brisbane North PHN needed a website developed for consumers, carers, service providers and health professionals that provides information about mental health, alcohol and other drugs and suicide prevention services in the region.',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1142,22009,1,'2021-07-16 01:41:34','2021-07-16 01:41:34','e4b1da75-2b61-4205-ad42-6036f4b5be4f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1170,22042,1,'2021-07-16 01:49:52','2021-07-16 01:49:52','4f147d59-84d3-4f49-9d9f-0d76f6004d83',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1171,22043,1,'2021-07-16 01:49:52','2021-07-16 01:49:52','23c67872-8416-4ac0-a0f7-674927d9d453','Challenge','It\'s a constant focus for PHNs, hospital and health services and state governments all over Australia: people are going to the emergency department with non-life-threatening sickness or injuries.\n\nTwo years after its last campaign on the topic, the PHN asked us to refresh the campaign strategy, messaging and creative.',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1172,22044,1,'2021-07-16 01:49:52','2021-07-16 01:49:52','2403912a-bba5-4341-b87c-8a1ada9fa9ca',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1173,22045,1,'2021-07-16 01:49:52','2021-07-16 01:49:52','104778fa-8ced-43ab-8fb5-3d7a730f201d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1178,22052,1,'2021-07-16 01:50:07','2021-07-16 01:50:07','e494cb62-2de8-415f-b2c4-b63ff7604aab',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1179,22053,1,'2021-07-16 01:50:07','2021-07-16 01:50:07','b0732aa7-6997-46f1-b505-76f3f6b219d5','Challenge','It\'s a constant focus for PHNs, hospital and health services and state governments all over Australia: people are going to the emergency department with non-life-threatening sickness or injuries.\n\nTwo years after its last campaign on the topic, the PHN asked us to refresh the campaign strategy, messaging and creative.',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1180,22054,1,'2021-07-16 01:50:07','2021-07-16 01:50:07','3f8c88b2-66ce-40ab-9705-6fe4db2478d2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1181,22055,1,'2021-07-16 01:50:07','2021-07-16 01:50:07','3df221db-75cb-4e32-8878-2639598799f7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1185,22061,1,'2021-07-16 01:50:19','2021-07-16 01:50:19','20edcddf-b265-45e7-b8e2-7ac19355538d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1186,22062,1,'2021-07-16 01:50:19','2021-07-16 01:50:19','2225d4f1-fd09-4782-9db7-91a174df5d64','Challenge','Brisbane North PHN needed a website developed for consumers, carers, service providers and health professionals that provides information about mental health, alcohol and other drugs and suicide prevention services in the region.',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1187,22063,1,'2021-07-16 01:50:19','2021-07-16 01:50:19','745d31ed-cc56-4b56-b57e-179c87bdb245',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1205,22100,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','8ea5666f-62e2-4306-9b03-6c55173341aa',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1206,22102,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','6df23392-fd32-4872-8aa9-3f51a1a3c264','Challenge','As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league.\n\nTritium commissioned us to update their brand—to put their internal culture of creativity and innovation on display and to share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1207,22103,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','3c643fb9-594d-49f6-a825-88452a3c7cc9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1208,22104,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','9427f214-f53d-4dcf-9b84-ee4e314ff816',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1209,22105,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','7017a9d7-837d-444d-b36d-d3edb94f7371',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1210,22106,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','58b65a68-3dcf-4dc9-bf72-978469743c16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1211,22107,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','b945ea93-f248-4e9c-8caf-6ca534b26b02',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1212,22108,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','b77e6d54-3ffe-4d43-bd78-9fd928d6dd8a',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1213,22109,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','79da4640-93bf-412a-a687-9eccc62789e0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1214,22110,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','5e3483f0-ac57-48a6-8710-50e007f08c35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1215,22111,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','25fc64e6-5c7b-4948-a09a-97ecc8d2470b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1216,22112,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','8e5ad97f-9767-4f8a-8022-e4730fca792d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1217,22113,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','4c6726e4-254f-4c3b-841e-51f925a51ef1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1218,22114,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','7272bba0-4d32-4851-b270-762b34dca97e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1219,22115,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','68fa6a47-d085-4930-82e1-10d8b5811b7f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1220,22116,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','293dfedf-3e71-4a1c-8501-cf8223381c0c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1221,22117,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','7995ac12-29ef-4040-abd9-b5f38390871d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1239,22140,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','0b19cf03-2efa-4e5b-9018-48c0a7802743',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1240,22142,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','58011527-06ee-40d3-8c80-917045e42b63','Challenge','As a leading global producer of electric vehicle chargers, Tritium is Brisbane’s most exciting start-up and is now firmly in the global big league.\n\nTritium commissioned us to update their brand—to put their internal culture of creativity and innovation on display and to share it with the world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1241,22143,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','a3bb2f12-3ef5-4562-80e3-50bae037c619',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1242,22144,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','fdd94b5e-3cb1-43f9-9015-422b9fedff74',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1243,22145,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','32728294-537f-4d1b-af41-f2f9ab5f767d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1244,22146,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','e5e1be47-27a5-4285-b62f-810821d9b1b0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1245,22147,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','d0a23295-f1ec-4eb3-a007-a8807a3d6b70',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1246,22148,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','06eb1225-376d-42b0-bc01-6c03b6c22780',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1247,22149,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','8590e5eb-9577-452e-a7d7-e1e7ce3e980b',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1248,22150,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','e58251ad-ddd6-4db4-9ee8-75cc9ee6af73',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1249,22151,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','7567508f-08e0-4e17-9820-b7eb79229037',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1250,22152,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','d7be465b-72db-46c3-8c4b-3c792f6f14fe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1251,22153,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','b7ab4f9f-8c98-4c94-a86a-ceb74c4ddf03',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1252,22154,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','9a0f72aa-03dd-496d-9c55-d0689c922b64',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1253,22155,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','236d350f-4178-41c2-9752-fd813b832dac',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1254,22156,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','4ee500d3-7818-4dc7-bfdf-4b8cad24c4c2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1255,22157,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','378920a4-6358-47e7-917c-b18e43d19b82',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1289,22196,1,'2021-07-16 03:07:32','2021-07-16 03:07:32','8c0acf35-2b93-4948-a2b9-be5cef82a170',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1290,22197,1,'2021-07-16 03:07:32','2021-07-16 03:07:32','6fe4020d-5844-4287-9c39-d03469f968c9','Challenge','With life beginning to return to normal in Queensland, the Darling Downs West Moreton and Brisbane North PHN wanted to encourage their communities to go back to a normal routine—especially for healthcare.',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1291,22198,1,'2021-07-16 03:07:33','2021-07-16 03:07:33','37827f22-dd98-499f-86f3-9970059e97d6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1292,22199,1,'2021-07-16 03:07:33','2021-07-16 03:07:33','a4551495-1f57-47e0-98e2-dbde4eef27c8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1297,22206,1,'2021-07-16 03:10:46','2021-07-16 03:10:46','b6525c7c-059a-485e-bade-a964647ab161',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1298,22207,1,'2021-07-16 03:10:46','2021-07-16 03:10:46','7c006837-0f86-4fca-9b0f-07eff4bd846e','Challenge','With life beginning to return to normal in Queensland, the Darling Downs West Moreton and Brisbane North PHN wanted to encourage their communities to go back to a normal routine—especially for healthcare.',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1299,22208,1,'2021-07-16 03:10:46','2021-07-16 03:10:46','d2ed7a02-f68a-4be8-8f73-8f7f6c547b41',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1300,22209,1,'2021-07-16 03:10:46','2021-07-16 03:10:46','c8babbed-0fe4-421a-b511-cfa045e8ac92',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1349,22267,1,'2021-07-16 03:23:11','2021-07-16 03:23:11','29e764f2-0cf3-4d12-a53e-b0ae3226596f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1350,22268,1,'2021-07-16 03:23:11','2021-07-16 03:23:11','415f235d-4706-4fe4-8954-a1eb13b72d66','\"The nature of the campaign, featuring real farmers telling their story, was insightful for many staff who might not get the chance to speak with or hear from farmers very often.\"','Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1351,22269,1,'2021-07-16 03:23:11','2021-07-16 03:23:11','e975c425-43f2-4a4f-b3a8-309e3bdc8f42',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1355,22280,1,'2021-07-16 03:53:04','2021-07-16 03:53:04','38f34839-3b3b-4836-9f8c-6917de28294e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1356,22281,1,'2021-07-16 03:53:04','2021-07-16 03:53:04','4070c832-944b-4b12-9107-3f4dba7aaa98','\"The nature of the campaign, featuring real farmers telling their story, was insightful for many staff who might not get the chance to speak with or hear from farmers very often.\"','Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1357,22282,1,'2021-07-16 03:53:04','2021-07-16 03:53:04','e9003321-7c07-4675-9aa5-85f9d91e190e',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1366,22297,1,'2021-07-16 03:55:48','2021-07-16 03:55:48','05b4f8d2-6613-4e03-9ee4-bc14c73cc297',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1367,22298,1,'2021-07-16 03:55:48','2021-07-16 03:55:48','3880b78d-02e4-4f12-820a-bec69e37e3e1','\"The nature of the campaign, featuring real farmers telling their story, was insightful for many staff who might not get the chance to speak with or hear from farmers very often.\"','Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1368,22299,1,'2021-07-16 03:55:48','2021-07-16 03:55:48','851e223c-37bd-4364-9f0d-e1fc2d100010',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1369,22301,1,'2021-07-16 03:55:48','2021-07-16 03:55:48','968a1f6c-19e8-4b77-b8bc-d27e32bfdc5a','The revenue being generated from the campaign has had a very positive impact on our revenue budget for the month of June, which has a direct impact on the beneficiaries of our fundraising—Aussie farmers.','Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1374,22312,1,'2021-07-16 03:57:20','2021-07-16 03:57:20','7a7e15fd-7b73-46e2-a4be-9cc7e0ce53fe',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1375,22313,1,'2021-07-16 03:57:20','2021-07-16 03:57:20','70d1df3f-f59d-4af5-8fa3-a3aae753f6d5','\"The nature of the campaign, featuring real farmers telling their story, was insightful for many staff who might not get the chance to speak with or hear from farmers very often.\"','Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1376,22314,1,'2021-07-16 03:57:20','2021-07-16 03:57:20','c4bd1428-c970-47ae-b968-dd7b6ec2573c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1377,22316,1,'2021-07-16 03:57:20','2021-07-16 03:57:20','826ca540-e4cb-4c42-9e09-bed3814e611f','The revenue being generated from the campaign has had a very positive impact on our revenue budget for the month of June, which has a direct impact on the beneficiaries of our fundraising—Aussie farmers.','Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1382,22327,1,'2021-07-16 04:08:00','2021-07-16 04:08:00','61907a1c-f5cd-46bc-b50d-d72e3985c0a2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1383,22328,1,'2021-07-16 04:08:00','2021-07-16 04:08:00','ac261dea-708d-4f1b-8f75-50772da9a5b2','\"The nature of the campaign, featuring real farmers telling their story, was insightful for many staff who might not get the chance to speak with or hear from farmers very often.\"','Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1384,22329,1,'2021-07-16 04:08:00','2021-07-16 04:08:00','b0742865-ed44-4dc6-b0e9-769626780a47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1385,22331,1,'2021-07-16 04:08:01','2021-07-16 04:08:01','7e434009-18e6-4aeb-8b60-fcd038a19a92','The revenue being generated from the campaign has had a very positive impact on our revenue budget for the month of June, which has a direct impact on the beneficiaries of our fundraising—Aussie farmers.','Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1386,22333,1,'2021-07-16 04:09:55','2021-07-16 04:09:55','1bd656e9-3c08-42fd-bd70-db3e89ce5ab2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1387,22334,1,'2021-07-16 04:09:55','2021-07-16 04:09:55','21d1b7f4-156f-40d7-ba5e-4efd690c6db7','\"The nature of the campaign, featuring real farmers telling their story, was insightful for many staff who might not get the chance to speak with or hear from farmers very often.\"','Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1388,22335,1,'2021-07-16 04:09:55','2021-07-16 04:09:55','16a5d62e-5540-4dec-b268-3c8ff0c5e6b0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1389,22337,1,'2021-07-16 04:09:55','2021-07-16 04:09:55','c9fa1bfc-e24c-4cba-876d-69cf6a389103','The revenue being generated from the campaign has had a very positive impact on our revenue budget for the month of June, which has a direct impact on the beneficiaries of our fundraising—Aussie farmers.','Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1415,22376,1,'2021-07-16 04:25:30','2021-07-16 04:25:30','430cb977-a867-4470-9c4d-04ff0bb056be',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1416,22377,1,'2021-07-16 04:25:30','2021-07-16 04:25:30','1daa1d9b-dee2-4022-a985-dec387e884a3','\"The nature of the campaign, featuring real farmers telling their story, was insightful for many staff who might not get the chance to speak with or hear from farmers very often.\"','Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1417,22378,1,'2021-07-16 04:25:30','2021-07-16 04:25:30','b02fe3a8-d2d8-407f-a8de-e756fd17755d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1418,22380,1,'2021-07-16 04:25:30','2021-07-16 04:25:30','3c9b79cc-8931-49c0-8690-0d662daec27b','The revenue being generated from the campaign has had a very positive impact on our revenue budget for the month of June, which has a direct impact on the beneficiaries of our fundraising—Aussie farmers.','Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1419,22381,1,'2021-07-16 04:25:30','2021-07-16 04:25:30','c98865c8-905c-476e-a55b-79afb9fb53da',NULL,NULL,'The campaign','<p>Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market. </p>',NULL,NULL,NULL,NULL,NULL),(1420,22382,1,'2021-07-16 04:25:30','2021-07-16 04:25:30','c351b151-b425-4915-b03c-a2637a69ad1c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1421,22384,1,'2021-07-16 04:25:30','2021-07-16 04:25:30','c062ce1d-0c94-45b3-9b5b-963d0699f7a4',NULL,NULL,'Strategy','<p>Campaign messaging was two-tired: an EOFY donations appeal and a thank you. Both worked to be targeted at existing donors, or people captured in existing databases or prospecting. </p>\n<p>To ensure the greatest value for money for our client, we pooled the majority of our ad spend into digital, working closely with our media partner, Pivotus. We A/B tested the messaging and capture the audience with retargeting strategies. </p>',NULL,NULL,NULL,NULL,NULL),(1429,22399,1,'2021-07-16 05:01:46','2021-07-16 05:01:46','a688e610-a1a1-4060-a29b-c4b6dcd4ff69',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1430,22400,1,'2021-07-16 05:01:46','2021-07-16 05:01:46','47b0d55b-6a5b-4778-891d-bb9a25ca0d62','\"The nature of the campaign, featuring real farmers telling their story, was insightful for many staff who might not get the chance to speak with or hear from farmers very often.\"','Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid',NULL,NULL,NULL,NULL,NULL,NULL,'h-screen'),(1431,22401,1,'2021-07-16 05:01:46','2021-07-16 05:01:46','16bea058-ed7d-47d2-8a9f-95d7fd8e7d9c',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1432,22403,1,'2021-07-16 05:01:46','2021-07-16 05:01:46','ec5f9e88-f3fd-48c9-8ce4-00fa6ca39836','The revenue being generated from the campaign has had a very positive impact on our revenue budget for the month of June, which has a direct impact on the beneficiaries of our fundraising—Aussie farmers.','Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid',NULL,NULL,NULL,NULL,NULL,NULL,'h-screen'),(1433,22404,1,'2021-07-16 05:01:46','2021-07-16 05:01:46','e18405bf-6466-47c5-b80a-2e5b6fdfa9f0',NULL,NULL,'The campaign','<p>Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market. </p>',NULL,NULL,NULL,'h-screen',NULL),(1434,22405,1,'2021-07-16 05:01:46','2021-07-16 05:01:46','909fa60d-f8a5-4919-973f-341d005e5a05',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1435,22407,1,'2021-07-16 05:01:46','2021-07-16 05:01:46','dd8df32b-7a74-42f3-a789-b8bc2aa79b08',NULL,NULL,'Strategy','<p>Campaign messaging was two-tired: an EOFY donations appeal and a thank you. Both worked to be targeted at existing donors, or people captured in existing databases or prospecting. </p>\n<p>To ensure the greatest value for money for our client, we pooled the majority of our ad spend into digital, working closely with our media partner, Pivotus. We A/B tested the messaging and capture the audience with retargeting strategies. </p>',NULL,NULL,NULL,'h-screen',NULL),(1443,22421,1,'2021-07-16 05:27:15','2021-07-16 05:27:15','90de700b-cd21-4e9a-9a12-5c7c6aff7d47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1444,22422,1,'2021-07-16 05:27:15','2021-07-16 05:27:15','729fcf4e-982a-4fce-9ef8-c9a45d2c9ead','\"The nature of the campaign, featuring real farmers telling their story, was insightful for many staff who might not get the chance to speak with or hear from farmers very often.\"','Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid',NULL,NULL,NULL,NULL,NULL,NULL,'h-screen'),(1445,22423,1,'2021-07-16 05:27:15','2021-07-16 05:27:15','af016910-b7b8-4336-b217-9d84cd6f4391',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1446,22425,1,'2021-07-16 05:27:15','2021-07-16 05:27:15','9966213f-08f0-491e-b18b-3b6cc4d3f85a','The revenue being generated from the campaign has had a very positive impact on our revenue budget for the month of June, which has a direct impact on the beneficiaries of our fundraising—Aussie farmers.','Jaimie Robertson, Fundraising Marketing and Communications Manager at Rural Aid',NULL,NULL,NULL,NULL,NULL,NULL,'h-screen'),(1447,22426,1,'2021-07-16 05:27:15','2021-07-16 05:27:15','63bd2565-8623-4710-a90f-cf95bf9b30a0',NULL,NULL,'The campaign','<p>Our goal was to raise significant revenue before the end of the financial year. With this campaign we also set out to connect with and thank previous supporters, and strengthen the Rural Aid brand in market. </p>',NULL,NULL,NULL,'h-screen',NULL),(1448,22427,1,'2021-07-16 05:27:15','2021-07-16 05:27:15','22803583-2128-47e3-9e94-d1f025868be5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1449,22429,1,'2021-07-16 05:27:15','2021-07-16 05:27:15','3ed6a26f-7324-49f8-a2b1-13c7d15a016e',NULL,NULL,'Strategy','<p>Campaign messaging was two-tired: an EOFY donations appeal and a thank you. Both worked to be targeted at existing donors, or people captured in existing databases or prospecting. </p>\n<p>To ensure the greatest value for money for our client, we pooled the majority of our ad spend into digital, working closely with our media partner, Pivotus. We A/B tested the messaging and capture the audience with retargeting strategies. </p>',NULL,NULL,NULL,'h-screen',NULL);
/*!40000 ALTER TABLE `matrixcontent_layoutbuilder` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `matrixcontent_newscontent`
--

LOCK TABLES `matrixcontent_newscontent` WRITE;
/*!40000 ALTER TABLE `matrixcontent_newscontent` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `matrixcontent_newscontent` VALUES (190,21443,1,'2020-04-15 01:45:54','2020-08-16 23:29:55','7e832e04-5f5f-4333-a4ce-e12d2ca9587e','<p><strong>The PHN is working with local, state and federal health authorities to respond to the COVID-19 pandemic.</strong></p>\n<p>In line with recent guidance to limit the spread of the virus in the community, we have moved to a virtual office platform.</p>\n<p>Our Lutwyche and North Lakes offices closed from Thursday 26 March 2020 until further notice, with all staff transitioning to working from home. Business will continue with our main switch number: <strong>07 3630 7300</strong> and email address <a><strong>info@brisbanenorthphn.org.au</strong></a> still in operation.</p>\n<p>Staff can be contacted via their usual phone number and email address.</p>\n<p>The PHN has an established virtual capability, and we will be working to ensure business continuity for planned meetings and activities to support practices, commissioned service providers and our key stakeholders.</p>\n<p>Since 13 January, 2020 Brisbane North PHN has sent over 30 e-news updates to over 1,000 GPs and practices. We have sent 41,100 surgical masks and 1,124 P2 masks out to practices in the region.</p>\n<p><strong>During the COVID-19 pandemic, the PHN has four main roles:</strong></p>\n<p>Firstly, the PHN is communicating the latest information from health authorities to GPs, allied health professionals, aged and community care providers and our local community.</p>\n<p>We are doing this through our regular communication channels of support to general practices and email updates to other clinicians, service providers and members of the public. The most up to date information is available on our website.</p>\n<p>The PHN has developed a COVID-19 clinical pathway for GPs, which is available on our health pathways site.</p>\n<p>The pathway provides clear and concise guidance for assessing and managing a patient who may have COVID-19.</p>\n<p>The PHN is also supporting health professionals by distributing surgical masks on behalf of the Federal Department of Health to general practices and community pharmacies.</p>\n<p>Currently we are not permitted to supply masks to anyone else. If the situation changes, any updates will be made via e-newsletter and on our website.</p>\n<p>We are helping federal, state and local health authorities to plan and implement the response to COVID-19.</p>\n<p>This includes identifying general practices that have the capacity and capability to operate a GP respiratory clinic.</p>\n<p>It also means collecting information on which parts of the primary and community health sectors are facing issues in responding to COVID-19 and providing support to them. Finally, we are working with our contracted service providers and others to ensure, as much as possible, that people with existing health concerns are able to access services and supports.</p>\n<p>We encourage you to visit our website for the latest updates from the State Health Emergency Coordination Centre, which is our main source of up to date evidence-based information on COVID-19, both at a national and state level.</p>\n<p>Brisbane North PHN is working hard to respond to the COVID-19 pandemic, ensuring access to primary healthcare continues in the Brisbane North and Moreton Bay region.</p>\n<p>We appreciate your patience and support during this time and look forward to working together in this new way of doing business.</p>\n<p><strong>Visit <a href=\"http://www.brisbanenorthphn.org.au/\">www.brisbanenorthphn.org.au</a> for the latest COVID-19 information.</strong></p>',NULL,NULL,NULL),(191,21445,1,'2020-04-15 01:45:54','2020-04-15 01:45:54','9f0e4926-4477-49f7-ad3d-7f83ef6b5edb','<p><strong>The PHN is working with local, state and federal health authorities to respond to the COVID-19 pandemic.</strong></p>\n<p>In line with recent guidance to limit the spread of the virus in the community, we have moved to a virtual office platform.</p>\n<p>Our Lutwyche and North Lakes offices closed from Thursday 26 March 2020 until further notice, with all staff transitioning to working from home. Business will continue with our main switch number: <strong>07 3630 7300</strong> and email address <a><strong>info@brisbanenorthphn.org.au</strong></a> still in operation.</p>\n<p>Staff can be contacted via their usual phone number and email address.</p>\n<p>The PHN has an established virtual capability, and we will be working to ensure business continuity for planned meetings and activities to support practices, commissioned service providers and our key stakeholders.</p>\n<p>Since 13 January, 2020 Brisbane North PHN has sent over 30 e-news updates to over 1,000 GPs and practices. We have sent 41,100 surgical masks and 1,124 P2 masks out to practices in the region.</p>\n<p><strong>During the COVID-19 pandemic, the PHN has four main roles:</strong></p>\n<p>Firstly, the PHN is communicating the latest information from health authorities to GPs, allied health professionals, aged and community care providers and our local community.</p>\n<p>We are doing this through our regular communication channels of support to general practices and email updates to other clinicians, service providers and members of the public. The most up to date information is available on our website.</p>\n<p>The PHN has developed a COVID-19 clinical pathway for GPs, which is available on our health pathways site.</p>\n<p>The pathway provides clear and concise guidance for assessing and managing a patient who may have COVID-19.</p>\n<p>The PHN is also supporting health professionals by distributing surgical masks on behalf of the Federal Department of Health to general practices and community pharmacies.</p>\n<p>Currently we are not permitted to supply masks to anyone else. If the situation changes, any updates will be made via e-newsletter and on our website.</p>\n<p>We are helping federal, state and local health authorities to plan and implement the response to COVID-19.</p>\n<p>This includes identifying general practices that have the capacity and capability to operate a GP respiratory clinic.</p>\n<p>It also means collecting information on which parts of the primary and community health sectors are facing issues in responding to COVID-19 and providing support to them. Finally, we are working with our contracted service providers and others to ensure, as much as possible, that people with existing health concerns are able to access services and supports.</p>\n<p>We encourage you to visit our website for the latest updates from the State Health Emergency Coordination Centre, which is our main source of up to date evidence-based information on COVID-19, both at a national and state level.</p>\n<p>Brisbane North PHN is working hard to respond to the COVID-19 pandemic, ensuring access to primary healthcare continues in the Brisbane North and Moreton Bay region.</p>\n<p>We appreciate your patience and support during this time and look forward to working together in this new way of doing business.</p>\n<p><strong>Visit <a href=\"http://www.brisbanenorthphn.org.au/\">www.brisbanenorthphn.org.au</a> for the latest COVID-19 information.</strong></p>',NULL,NULL,NULL),(192,21447,1,'2020-04-15 01:46:10','2020-04-15 01:46:10','6cc819d5-6362-48e4-b770-840dd8fadb56','<p><strong>The PHN is working with local, state and federal health authorities to respond to the COVID-19 pandemic.</strong></p>\n<p>In line with recent guidance to limit the spread of the virus in the community, we have moved to a virtual office platform.</p>\n<p>Our Lutwyche and North Lakes offices closed from Thursday 26 March 2020 until further notice, with all staff transitioning to working from home. Business will continue with our main switch number: <strong>07 3630 7300</strong> and email address <a><strong>info@brisbanenorthphn.org.au</strong></a> still in operation.</p>\n<p>Staff can be contacted via their usual phone number and email address.</p>\n<p>The PHN has an established virtual capability, and we will be working to ensure business continuity for planned meetings and activities to support practices, commissioned service providers and our key stakeholders.</p>\n<p>Since 13 January, 2020 Brisbane North PHN has sent over 30 e-news updates to over 1,000 GPs and practices. We have sent 41,100 surgical masks and 1,124 P2 masks out to practices in the region.</p>\n<p><strong>During the COVID-19 pandemic, the PHN has four main roles:</strong></p>\n<p>Firstly, the PHN is communicating the latest information from health authorities to GPs, allied health professionals, aged and community care providers and our local community.</p>\n<p>We are doing this through our regular communication channels of support to general practices and email updates to other clinicians, service providers and members of the public. The most up to date information is available on our website.</p>\n<p>The PHN has developed a COVID-19 clinical pathway for GPs, which is available on our health pathways site.</p>\n<p>The pathway provides clear and concise guidance for assessing and managing a patient who may have COVID-19.</p>\n<p>The PHN is also supporting health professionals by distributing surgical masks on behalf of the Federal Department of Health to general practices and community pharmacies.</p>\n<p>Currently we are not permitted to supply masks to anyone else. If the situation changes, any updates will be made via e-newsletter and on our website.</p>\n<p>We are helping federal, state and local health authorities to plan and implement the response to COVID-19.</p>\n<p>This includes identifying general practices that have the capacity and capability to operate a GP respiratory clinic.</p>\n<p>It also means collecting information on which parts of the primary and community health sectors are facing issues in responding to COVID-19 and providing support to them. Finally, we are working with our contracted service providers and others to ensure, as much as possible, that people with existing health concerns are able to access services and supports.</p>\n<p>We encourage you to visit our website for the latest updates from the State Health Emergency Coordination Centre, which is our main source of up to date evidence-based information on COVID-19, both at a national and state level.</p>\n<p>Brisbane North PHN is working hard to respond to the COVID-19 pandemic, ensuring access to primary healthcare continues in the Brisbane North and Moreton Bay region.</p>\n<p>We appreciate your patience and support during this time and look forward to working together in this new way of doing business.</p>\n<p><strong>Visit <a href=\"http://www.brisbanenorthphn.org.au/\">www.brisbanenorthphn.org.au</a> for the latest COVID-19 information.</strong></p>',NULL,NULL,NULL),(201,21539,1,'2020-04-21 00:19:48','2020-04-21 00:19:48','c67c2ef1-c7fb-4b96-ab8d-bb9bb9aa0fd4','<p><strong>The PHN is working with local, state and federal health authorities to respond to the COVID-19 pandemic.</strong></p>\n<p>In line with recent guidance to limit the spread of the virus in the community, we have moved to a virtual office platform.</p>\n<p>Our Lutwyche and North Lakes offices closed from Thursday 26 March 2020 until further notice, with all staff transitioning to working from home. Business will continue with our main switch number: <strong>07 3630 7300</strong> and email address <a><strong>info@brisbanenorthphn.org.au</strong></a> still in operation.</p>\n<p>Staff can be contacted via their usual phone number and email address.</p>\n<p>The PHN has an established virtual capability, and we will be working to ensure business continuity for planned meetings and activities to support practices, commissioned service providers and our key stakeholders.</p>\n<p>Since 13 January, 2020 Brisbane North PHN has sent over 30 e-news updates to over 1,000 GPs and practices. We have sent 41,100 surgical masks and 1,124 P2 masks out to practices in the region.</p>\n<p><strong>During the COVID-19 pandemic, the PHN has four main roles:</strong></p>\n<p>Firstly, the PHN is communicating the latest information from health authorities to GPs, allied health professionals, aged and community care providers and our local community.</p>\n<p>We are doing this through our regular communication channels of support to general practices and email updates to other clinicians, service providers and members of the public. The most up to date information is available on our website.</p>\n<p>The PHN has developed a COVID-19 clinical pathway for GPs, which is available on our health pathways site.</p>\n<p>The pathway provides clear and concise guidance for assessing and managing a patient who may have COVID-19.</p>\n<p>The PHN is also supporting health professionals by distributing surgical masks on behalf of the Federal Department of Health to general practices and community pharmacies.</p>\n<p>Currently we are not permitted to supply masks to anyone else. If the situation changes, any updates will be made via e-newsletter and on our website.</p>\n<p>We are helping federal, state and local health authorities to plan and implement the response to COVID-19.</p>\n<p>This includes identifying general practices that have the capacity and capability to operate a GP respiratory clinic.</p>\n<p>It also means collecting information on which parts of the primary and community health sectors are facing issues in responding to COVID-19 and providing support to them. Finally, we are working with our contracted service providers and others to ensure, as much as possible, that people with existing health concerns are able to access services and supports.</p>\n<p>We encourage you to visit our website for the latest updates from the State Health Emergency Coordination Centre, which is our main source of up to date evidence-based information on COVID-19, both at a national and state level.</p>\n<p>Brisbane North PHN is working hard to respond to the COVID-19 pandemic, ensuring access to primary healthcare continues in the Brisbane North and Moreton Bay region.</p>\n<p>We appreciate your patience and support during this time and look forward to working together in this new way of doing business.</p>\n<p><strong>Visit <a href=\"http://www.brisbanenorthphn.org.au/\">www.brisbanenorthphn.org.au</a> for the latest COVID-19 information.</strong></p>',NULL,NULL,NULL),(202,21541,1,'2020-04-21 00:21:14','2020-04-21 00:21:14','4b3b9399-f5df-4964-9a16-f6ee391261cb','<p><strong>LGBTIQ Sistergirls, Brotherboys and communities are the focus of suicide prevention efforts through a range of activities supported by Brisbane North and Brisbane South PHNs.</strong></p>\n<p>As a part of the National Suicide Prevention Trial (NSPT), Queensland Council for LGBTIQ Health (QC) recently launched <em>Talking Heals</em>, a LGBTIQ Sistergirl and Brotherboy specific suicide prevention campaign that features artwork developed by LGBTIQ community members.</p>\n<p>Sitting alongside the Aboriginal and Torres Strait Islander <em>Yarns Heal </em>suicide prevention campaign, <em>Talking Heals</em> promotes the importance of LGBTIQ Sistergirls and Brotherboys openly talking and sharing stories about suicide.</p>\n<p>To help LGBTIQ communities gain confidence talking about suicide, and to provide support when someone may be at risk of suicide, QC is facilitating a series of Applied Suicide Intervention Skills Training (ASIST) workshops specifically for the LGBTI communities as part of the Planning for Wellbeing Regional Plan implementation.</p>\n<p>The delivery of these workshops has been designed specifically to support the accessibility, safety and inclusion of LGBTIQ people, with workshop facilitators trained as part of the National Suicide Prevention Trial in a strategy to build a sustainable suicide prevention response.</p>\n<p>Led and driven by the LGBTIQ communities, the ASIST workshops, the <em>Talking Heals</em> campaign and the NSPT suicide prevention services are working together to deliver a comprehensive response to the high rates of suicide in LGBTIQ communities.</p>\n<p><strong>Visit <em>Talking Heals</em> at <a href=\"http://www.talkingheals.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">www.talkingheals.org.au</a>.</strong></p>',NULL,NULL,NULL),(219,21561,1,'2020-04-21 00:23:21','2020-04-21 00:23:21','a9ec86db-8383-4736-8fe5-6582f3cfc200','<p><strong>In February 2020 families began accessing a new pathway of antenatal and postnatal care in the Caboolture hospital catchment. Called the Starting Well Initiative, the pathway focuses on families building a strong relationship with a midwife throughout their antenatal care, and receiving follow up care from the same midwife in the postnatal period. Until now, this type of care was only available for families eligible for specialised programs, with most families in the area seeing different midwives throughout the antenatal and postnatal period.</strong></p>\n<p>Midwives delivering the Starting Well Initiative are co-located with Child Health Services in a community-based clinic, and will introduce families to their Child Health Nurses before their baby is born, avoiding the need for families to complete administrative processes to access care in the postnatal period. GPs will also receive more regular communication about their patient throughout the antenatal and postnatal periods.</p>\n<p>“It’s about establishing care teams,” said Professor Don Matheson, Health Alliance General Manager.</p><p>“Because midwives, child health nurses and GPs belong to different parts of the health system, until now there has been little systemic support for these professionals acting like a care team. The Starting Well Initiative is changing that, supporting team members to work together and build a stronger relationship with mothers and families”.</p>\n<p>Over a 12 month period, the Health Alliance brought together local clinicians, system managers and families to design this new pathway of care.</p>\n<p>“Front-line clinicians understand the challenges within the health system, and often have the clearest ideas of how care can be delivered in a more coordinated and integrated way. What we uncovered in Caboolture is a local sector alive with energy and ideas, and it’s be a privilege to support them to bring these ideas to light,” said Professor Matheson.</p>\n<p>More than 20 families have been registered for the Starting Well Initiative, with a focus on families living in the central Caboolture and Morayfield area. Progress will be closely monitored and learnings will be used to take this type of care pathway to scale.</p>\n<p>“The Starting Well Initiative has provided a great opportunity to improve continuity of midwifery care for some families in the Caboolture area,” said Anne Clayton, Nursing and Midwifery Director for Women’s and Children’s Services at Caboolture Hospital.</p>\n<p>While this pilot phase is small in size, plans are already underway to increase the program in coming years. “This is just the beginning,” said Ms Clayton.</p>\n<p><strong>For more information on antenatal, postnatal and paediatric care in the Caboolture region email <a>contact@healthalliance.org.au</a></strong>.</p>\n<p><a href=\"https://www.facebook.com/BrisbaneNorthPHN\" target=\"_blank\" rel=\"noreferrer noopener\"></a> <a href=\"https://twitter.com/BrisNorthPHN\" target=\"_blank\" rel=\"noreferrer noopener\"></a> <a href=\"http://www.youtube.com/c/BrisbaneNorthPHNmedia\" target=\"_blank\" rel=\"noreferrer noopener\"></a> <a href=\"http://www.linkedin.com/company/brisbane-north-phn\" target=\"_blank\" rel=\"noreferrer noopener\"></a> <a href=\"https://www.instagram.com/brisnorthphn/\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>',NULL,NULL,NULL),(222,21566,1,'2020-04-21 00:23:47','2020-04-21 00:23:47','b1c6c3c2-3947-4db7-a140-5794bb5adb35','<p><strong>In February 2020 families began accessing a new pathway of antenatal and postnatal care in the Caboolture hospital catchment. Called the Starting Well Initiative, the pathway focuses on families building a strong relationship with a midwife throughout their antenatal care, and receiving follow up care from the same midwife in the postnatal period. Until now, this type of care was only available for families eligible for specialised programs, with most families in the area seeing different midwives throughout the antenatal and postnatal period.</strong></p>\n<p>Midwives delivering the Starting Well Initiative are co-located with Child Health Services in a community-based clinic, and will introduce families to their Child Health Nurses before their baby is born, avoiding the need for families to complete administrative processes to access care in the postnatal period. GPs will also receive more regular communication about their patient throughout the antenatal and postnatal periods.</p>\n<p>“It’s about establishing care teams,” said Professor Don Matheson, Health Alliance General Manager.</p><p>“Because midwives, child health nurses and GPs belong to different parts of the health system, until now there has been little systemic support for these professionals acting like a care team. The Starting Well Initiative is changing that, supporting team members to work together and build a stronger relationship with mothers and families”.</p>\n<p>Over a 12 month period, the Health Alliance brought together local clinicians, system managers and families to design this new pathway of care.</p>\n<p>“Front-line clinicians understand the challenges within the health system, and often have the clearest ideas of how care can be delivered in a more coordinated and integrated way. What we uncovered in Caboolture is a local sector alive with energy and ideas, and it’s be a privilege to support them to bring these ideas to light,” said Professor Matheson.</p>\n<p>More than 20 families have been registered for the Starting Well Initiative, with a focus on families living in the central Caboolture and Morayfield area. Progress will be closely monitored and learnings will be used to take this type of care pathway to scale.</p>\n<p>“The Starting Well Initiative has provided a great opportunity to improve continuity of midwifery care for some families in the Caboolture area,” said Anne Clayton, Nursing and Midwifery Director for Women’s and Children’s Services at Caboolture Hospital.</p>\n<p>While this pilot phase is small in size, plans are already underway to increase the program in coming years. “This is just the beginning,” said Ms Clayton.</p>\n<p><strong>For more information on antenatal, postnatal and paediatric care in the Caboolture region email <a>contact@healthalliance.org.au</a></strong>.</p>\n<p><a href=\"https://www.facebook.com/BrisbaneNorthPHN\" target=\"_blank\" rel=\"noreferrer noopener\"></a> <a href=\"https://twitter.com/BrisNorthPHN\" target=\"_blank\" rel=\"noreferrer noopener\"></a> <a href=\"http://www.youtube.com/c/BrisbaneNorthPHNmedia\" target=\"_blank\" rel=\"noreferrer noopener\"></a> <a href=\"http://www.linkedin.com/company/brisbane-north-phn\" target=\"_blank\" rel=\"noreferrer noopener\"></a> <a href=\"https://www.instagram.com/brisnorthphn/\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>',NULL,NULL,NULL),(223,21568,1,'2020-04-21 00:23:58','2020-04-21 00:23:58','511ce59e-499b-4163-97a1-6fcee8b08a31','<p><strong>In February 2020 families began accessing a new pathway of antenatal and postnatal care in the Caboolture hospital catchment. Called the Starting Well Initiative, the pathway focuses on families building a strong relationship with a midwife throughout their antenatal care, and receiving follow up care from the same midwife in the postnatal period. Until now, this type of care was only available for families eligible for specialised programs, with most families in the area seeing different midwives throughout the antenatal and postnatal period.</strong></p>\n<p>Midwives delivering the Starting Well Initiative are co-located with Child Health Services in a community-based clinic, and will introduce families to their Child Health Nurses before their baby is born, avoiding the need for families to complete administrative processes to access care in the postnatal period. GPs will also receive more regular communication about their patient throughout the antenatal and postnatal periods.</p>\n<p>“It’s about establishing care teams,” said Professor Don Matheson, Health Alliance General Manager.</p><p>“Because midwives, child health nurses and GPs belong to different parts of the health system, until now there has been little systemic support for these professionals acting like a care team. The Starting Well Initiative is changing that, supporting team members to work together and build a stronger relationship with mothers and families”.</p>\n<p>Over a 12 month period, the Health Alliance brought together local clinicians, system managers and families to design this new pathway of care.</p>\n<p>“Front-line clinicians understand the challenges within the health system, and often have the clearest ideas of how care can be delivered in a more coordinated and integrated way. What we uncovered in Caboolture is a local sector alive with energy and ideas, and it’s be a privilege to support them to bring these ideas to light,” said Professor Matheson.</p>\n<p>More than 20 families have been registered for the Starting Well Initiative, with a focus on families living in the central Caboolture and Morayfield area. Progress will be closely monitored and learnings will be used to take this type of care pathway to scale.</p>\n<p>“The Starting Well Initiative has provided a great opportunity to improve continuity of midwifery care for some families in the Caboolture area,” said Anne Clayton, Nursing and Midwifery Director for Women’s and Children’s Services at Caboolture Hospital.</p>\n<p>While this pilot phase is small in size, plans are already underway to increase the program in coming years. “This is just the beginning,” said Ms Clayton.</p>\n<p><strong>For more information on antenatal, postnatal and paediatric care in the Caboolture region email <a>contact@healthalliance.org.au</a></strong>.</p>\n<p><a href=\"https://www.facebook.com/BrisbaneNorthPHN\" target=\"_blank\" rel=\"noreferrer noopener\"></a> <a href=\"https://twitter.com/BrisNorthPHN\" target=\"_blank\" rel=\"noreferrer noopener\"></a> <a href=\"http://www.youtube.com/c/BrisbaneNorthPHNmedia\" target=\"_blank\" rel=\"noreferrer noopener\"></a> <a href=\"http://www.linkedin.com/company/brisbane-north-phn\" target=\"_blank\" rel=\"noreferrer noopener\"></a> <a href=\"https://www.instagram.com/brisnorthphn/\" target=\"_blank\" rel=\"noreferrer noopener\"></a></p>',NULL,NULL,NULL),(229,21577,1,'2020-04-21 00:25:12','2020-04-21 00:25:12','505bb21a-220e-4527-a9d2-d7e8b44d02eb','<p><strong>2020 is the international year of the nurse and midwife and throughout the year the PHN is paying tribute to nurses and midwives that inspire.</strong></p>\n<p>This month we\'re celebrating the life and legacy of inspirational pioneer of the health sector, Aunty Pamela Mam.</p>\n<p>In January, trailblazing leader Aunty Pamela Mam passed away after more than 60 years working to improving the health and wellbeing outcomes of Aboriginal people and Torres Strait Islanders.</p>\n<p>Aunty Pamela Mam (nee Ah-kee/Bligh), a pioneer of Aboriginal and Torres Strait Islander health services, was born in 1938 in Richmond, western Queensland, and was a descendent of the Kuku Yalanji peoples in the Cooktown area.</p>\n<p>She started her remarkable career as a nurse aid at Palm Island Hospital, and later trained as a nurse at Townsville Hospital, becoming one of the first Aboriginal nurses in Queensland. Aunty Pamela helped establish the Aboriginal and Torres Strait Islander Community Health Service (ATSICHS) Brisbane and in 2015, Griffith University established the Aunty Pamela Mam Indigenous Nursing Scholarship to support Aboriginal and Torres Strait Islander nursing and midwifery students.</p>\n<p>She was awarded an honorary doctorate from Griffith University in December 2018 for her service to her people in health services and to the community and named as a life member of the Queensland Aboriginal and Islander Health Council and ATSICHS Brisbane, and patron for the Institute for Urban Indigenous Health.</p>\n<p>Aunty Pamela was an inspirational figure who created an ongoing legacy of compassion and commitment for health care for First Nations Queenslanders.</p>\n<p>For more infomation on the Aunty Pamela Mam Indigenous Nursing Scholarship visit the <strong><a href=\"https://www.griffith.edu.au/scholarships/scholarship-listings/aunty-pamela-mam-indigenous-nursing-scholarship\" target=\"_blank\" rel=\"noreferrer noopener\">Griffith University website</a></strong>.</p>',NULL,NULL,NULL),(238,21588,1,'2020-04-21 00:33:03','2020-08-16 23:29:56','49e2702d-c0d7-4860-9462-285802389348','<p><strong>Each month in Our stories, we’re presenting a snapshot of services based off the perspectives of both service users and service providers.</strong></p>\n<p>This month’s service profile focuses on the Sunshine Parenting Program (SPP), a six-week postnatal wellbeing program for mothers who are struggling with their mental health, run by Brisbane’s Peach Tree Perinatal Wellness Inc.</p>\n<p>SPP was designed by two Brisbane mums, Viv Kissane and Rani Farmer who both have first-hand experience of perinatal challenges. Viv’s experiences with perinatal mental illness encouraged her to establish Peach Tree Perinatal Wellness Inc in 2011.</p>\n<p>‘I’m the mother of three children, and I experienced firsthand the devastating impact of perinatal mental illness,’ said Viv. ‘I was determined to offer other parents the support I wish I’d had. I established Peach Tree to provide compassionate, peer-led services and education.’</p>\n<p>‘Our home here at Peach Tree House is like a parent wellbeing centre,’ said Viv.<br /></p>\n',NULL,NULL,NULL),(239,21590,1,'2020-04-21 00:33:03','2020-04-21 00:33:03','d060d05f-feab-4af5-b7fa-11c6dd79a26f','<p><strong>Each month in Our stories, we’re presenting a snapshot of services based off the perspectives of both service users and service providers.</strong></p>\n<p>This month’s service profile focuses on the Sunshine Parenting Program (SPP), a six-week postnatal wellbeing program for mothers who are struggling with their mental health, run by Brisbane’s Peach Tree Perinatal Wellness Inc.</p>\n<p>SPP was designed by two Brisbane mums, Viv Kissane and Rani Farmer who both have first-hand experience of perinatal challenges. Viv’s experiences with perinatal mental illness encouraged her to establish Peach Tree Perinatal Wellness Inc in 2011.</p>\n<p>‘I’m the mother of three children, and I experienced firsthand the devastating impact of perinatal mental illness,’ said Viv. ‘I was determined to offer other parents the support I wish I’d had. I established Peach Tree to provide compassionate, peer-led services and education.’</p><p>‘Our home here at Peach Tree House is like a parent wellbeing centre,’ said Viv.</p>\n<p>‘We offer peer-support programs, education, and social-inclusion activities like yoga, music and art. Most of our staff are volunteers and the majority of our services are free. It’s a friendly, welcoming and nonjudgemental space for parents and babies.’</p>\n<p>SPP is delivered across six sessions by peer-support workers. The first and last sessions involve individual discussions and one-on-one support with the SPP program manager and a psychologist. SPP is an earlyintervention program for parents who are doing it tough but who may not have a diagnosis of mental illness. It’s designed to build emotional resilience and promote self-care.</p>\n<p>‘We don’t require our participants to have a diagnosed condition or a formal referral from a GP,’ said Rani. ‘This isn’t a diagnostic program with clinical assessments and outcomes. It’s an empathic environment designed to promote emotional wellness and parenting confidence.’</p>\n<p>Rani is convinced that SPP is having a positive impact on the lives of mothers. ‘It might sound a bit corny, but I really do believe this program can bring a little ray of sunshine into parents’ lives, right when they need it most’.</p>\n<p><strong>The program in a nutshell:</strong></p>\n<p><strong>Name: </strong>Sunshine Parenting Program<br /><strong>Provider:</strong> Peach Tree Perinatal Wellness Inc<br /><strong>Service type:</strong> Brief therapy, community-based peer education for parents experiencing postnatal mental health challenges<br /><strong>Service duration: </strong>Six-week program that includes four group sessions and two individual sessions with a psychologist</p>',NULL,NULL,NULL),(246,21600,1,'2020-04-21 00:34:35','2020-08-16 23:29:56','34ae4b33-37fd-4410-85ed-8461070dc9b6','<p><strong>University of Queensland (UQ) medical student, Sherice Ansell was the recipient of the PHN’s annual sponsorship, which saw her attend the 2019 Australian Indigenous Doctors Association (AIDA) conference in Darwin.</strong></p>\n<p>Ms Ansell, who graduated from UQ at the end of 2019, is a Central/Eastern Arrernte and Anmatyerre woman from Mparntwe (Alice Springs). Ms Ansell said being in the culturally safe space of the AIDA conference allowed her to expand and refine the skills gained throughout her studies.</p>\n<p>“I participated in workshops with experienced Aboriginal and Torres Strait Islander and non-Indigenous doctors and attended workshops across a range of different topics including trauma scenarios and cultural workshops,” Ms Ansell said.</p>\n<p>Ms Ansell sung the praises of conference presenter, ENT surgeon Kelvin Kong. “He is not only an amazing speaker, but his workshop provided valuable information and practical skills when assessing children’s ear health.”</p>\n<p>Importantly the conference provided attendees with a culturally safe professional development and networking opportunity.</p>\n<p>“(The conference) gave attendees an opportunity to talk about personal and professional problems faced throughout our studies (and in our) workplaces and gave us the opportunity to brainstorm possible solutions for these problems,” she said.</p>\n<p>Ms Ansell intends on attending the AIDA conference again at the end of 2020. \"I look forward to attending as an intern; I can continue building my own personal network and be part of the ever-growing number of Indigenous doctors across Australia.\"</p>\n<p><em>Pictured above: Sherice Ansell at the UQ Aboriginal and Torres Strait Islander Studies Unit sashing ceremony in 2019. Photo courtesy of UQ Communications. </em></p>',NULL,NULL,NULL),(257,21617,1,'2020-04-21 00:37:40','2020-08-16 23:29:56','d39e7679-82fc-4179-acd8-8c13a94d6eab','<p><strong>Brisbane MIND Plus eReferral has changed and will now be known as My Mental Health Services eReferral.</strong></p>\n<p>This change comes in response to confusion surrounding the range of referral options, which are not limited to only Brisbane MIND services.</p>\n<p>It is anticipated the name change will help GPs offer appropriate referrals for patients across the wide range of Brisbane North PHN commissioned mental health, alcohol and other drugs and suicide prevention services that extend beyond the Brisbane MIND services.</p>\n<p>The updated eReferral form will also include new assessment fields, which are in line with the Initial Assessment and Referral (IAR) guidance.</p>\n<p>These changes also allow practitioners to nominate their preferred type of care in the eReferral form. These eReferral changes will be effective immediately.</p>\n<p>Changes to the eReferral form will be made automatically however, renaming the template in your clinical software will require a manual update on each user’s computer. Your Primary Care Liaison Officer can support you to make this change.</p>\n<p>Within the My Mental Health Services eReferral, GPs can refer patients to the following services:</p>\n<ul><li>brief therapy services (NewAccess, Optimal Health Program, Wise Choices, Sunshine Parenting Program and Problem Management Plus)</li><li>psychological therapies (Brisbane MIND4KiDS, Brisbane MIND–people at risk of suicide, Brisbane MIND–Culturally and Linguistically Diverse communities, Brisbane MIND– LGBTIQ+, Brisbane MIND–people with a history of trauma or abuse and Brisbane MIND Geographical Isolated Regions (Kilcoy and Bribie Island)</li><li>severe and complex mental illness (mental health hubs: The Recovery and Discovery Centre, The Living and Learning Centre and Floresco Caboolture).</li></ul><p>There are no out of pocket expense for clients to access PHN commissioned mental health, alcohol and other drugs and suicide prevention services. Clients will need to meet an eligibility criteria, however there are no GP caps to refer into these services. GPs can access all of these services for their patients in Best Practice and Medical Director practice software or via HealthPathways for GPs using other medical practice software.</p>\n<p>Practices with Best Practice or Medical Director can contact Redbourne on 1800 783 336 to arrange secure installation of the GP Integrator. Once installed, your Primary Care Liaison Officer can install the template and demonstrate the eReferral process.</p>\n<p><strong>To find out more contact the My Mental Health Service Navigation Team on 1800 752 235.</strong></p>',NULL,NULL,NULL),(269,21632,1,'2020-04-21 00:41:49','2020-08-16 23:29:56','9c2e18a4-a420-4c88-8c0e-d409565d3656','<p><strong>Suicide prevention campaign launch showcases local artists.</strong></p>\n<p>Art can be a powerful way to share stories, so the work of local artists features prominently in a new suicide prevention campaign aimed at LGBTIQ+ communities in Brisbane North.</p>\n<p>Launched on 6 February 2020 in Newstead, Talking Heals is a Queensland AIDS Council (QuAC) campaign funded through the National Suicide Prevention Trial (NSPT).</p>\n<p>Talking Heals campaign messaging acknowledges that sharing stories of suicide can be hard and encourages LGBTIQ+, ‘Sistergirl’ and ‘Brotherboy’ (SGBB) people at risk of suicide to connect with specialist services.</p>\n<p>The campaign has a community education focus, but will also support capacity building in the suicide prevention sector.</p>\n<p>Suicide prevention project officer Ged Farmer has worked closely with QuAC and their priority communities to support Brisbane North PHN’s local implementation of the NSPT.</p>\n<p>He spoke at the launch about Talking Heals and Yarns Heal, a similar campaign specifically designed by and for the Aboriginal and Torres Strait Islander LGBTIQ+ SGBB communities, and how they have reset the language we use to talk about suicide.</p>\n<p>“For many, many years, speaking about suicide was just something people didn’t want to do and didn’t do,” Ged said.</p><p>“If someone was going through a tough time and they mentioned suicide, the conversation was often shut down,” he said.</p>\n<p>“This meant that people needing or wanting to talk about what they were going through were often unable to, and this in turn presents further barriers to accessing support.</p>\n<p>“The Talking Heals campaign is allowing us pathways to share our lived experiences of suicide and an opportunity to share our own personal stories of suicide and to have wider discussions around suicide,” he explained.</p>\n<p>Ged thanked the many project partner organisations and individuals, reserving special mention for the artists involved in both campaigns.</p>\n<p>The artists’ contributions, Ged said, “allow us a visual of the narrative, they allow us to reflect and they allow us to talk in ways about suicide that we’ve never done before”.</p>\n<p>“Every time I look at each of these pieces of art I see a new part of the story, I see something that I haven’t seen before. They generate emotion, they generate discussion and they generate hope and love,” he said.</p>\n<p>For more information, go to <strong><a href=\"http://www.talkingheals.org.au/\">www.talkingheals.org.au</a></strong> or <strong><a href=\"http://www.yarnsheal.com.au/\">www.yarnsheal.com.au</a></strong>.</p>\n<p><em>Pictured above: PHN staff joined QuAC staff, as well as campaign artists and supporters at the Talking Heals launch in February. </em></p>',NULL,NULL,NULL),(270,21634,1,'2020-04-21 00:41:49','2020-04-21 00:41:49','b12b2f39-d473-4b73-9a07-867735e07e4b','<p><strong>Suicide prevention campaign launch showcases local artists.</strong></p>\n<p>Art can be a powerful way to share stories, so the work of local artists features prominently in a new suicide prevention campaign aimed at LGBTIQ+ communities in Brisbane North.</p>\n<p>Launched on 6 February 2020 in Newstead, Talking Heals is a Queensland AIDS Council (QuAC) campaign funded through the National Suicide Prevention Trial (NSPT).</p>\n<p>Talking Heals campaign messaging acknowledges that sharing stories of suicide can be hard and encourages LGBTIQ+, ‘Sistergirl’ and ‘Brotherboy’ (SGBB) people at risk of suicide to connect with specialist services.</p>\n<p>The campaign has a community education focus, but will also support capacity building in the suicide prevention sector.</p>\n<p>Suicide prevention project officer Ged Farmer has worked closely with QuAC and their priority communities to support Brisbane North PHN’s local implementation of the NSPT.</p>\n<p>He spoke at the launch about Talking Heals and Yarns Heal, a similar campaign specifically designed by and for the Aboriginal and Torres Strait Islander LGBTIQ+ SGBB communities, and how they have reset the language we use to talk about suicide.</p>\n<p>“For many, many years, speaking about suicide was just something people didn’t want to do and didn’t do,” Ged said.</p><p>“If someone was going through a tough time and they mentioned suicide, the conversation was often shut down,” he said.</p>\n<p>“This meant that people needing or wanting to talk about what they were going through were often unable to, and this in turn presents further barriers to accessing support.</p>\n<p>“The Talking Heals campaign is allowing us pathways to share our lived experiences of suicide and an opportunity to share our own personal stories of suicide and to have wider discussions around suicide,” he explained.</p>\n<p>Ged thanked the many project partner organisations and individuals, reserving special mention for the artists involved in both campaigns.</p>\n<p>The artists’ contributions, Ged said, “allow us a visual of the narrative, they allow us to reflect and they allow us to talk in ways about suicide that we’ve never done before”.</p>\n<p>“Every time I look at each of these pieces of art I see a new part of the story, I see something that I haven’t seen before. They generate emotion, they generate discussion and they generate hope and love,” he said.</p>\n<p>For more information, go to <strong><a href=\"http://www.talkingheals.org.au/\">www.talkingheals.org.au</a></strong> or <strong><a href=\"http://www.yarnsheal.com.au/\">www.yarnsheal.com.au</a></strong>.</p>\n<p><em>Pictured above: PHN staff joined QuAC staff, as well as campaign artists and supporters at the Talking Heals launch in February. </em></p>',NULL,NULL,NULL),(275,21641,1,'2020-04-21 00:42:38','2020-08-16 23:29:56','4a895ff8-b171-4ab4-8c90-8faa64c7ffb5','<p><strong>The department of haematology at the Royal Brisbane and Women’s Hospital has launched a pilot program of shared care with general practice for patients with low risk haematological conditions.</strong></p>\n<p>Shared care is the joint participation of primary care physicians and specialist physicians in the delivery of care.</p>\n<p>Shared care aims to help patients to receive care closer to home, avoid hospital wait times and receive more comprehensive primary care. For most patients, shared care will be an annual cycle, beginning with an initial specialist appointment, followed by three quarterly visits to the GP.</p>\n<p>GPs will be contacted on an individual basis to be offered the choice of participating in this shared care program as eligible patients are identified. The conditions in scope for the pilot program are chronic lymphocytic leukemia, monoclonal gammopathy of undetermined significance and myelodysplastic syndromes.</p>\n<p>Upon commencement, GPs will receive a care pathway outlining the recommended visit schedule, suggested care and monitoring, details of any clinical indicators (red flags) that would suggest the need for early specialist review and haematologist contact details.</p>\n<p>A dedicated Clinical Nurse Consultant will be available to help educate patients, resolve issues and help patients navigate their care.</p>\n<p>GPs are also encouraged to take advantage of the GP Haematology Advice telephone line. By phoning <strong>07 3646 1353</strong>, GPs can access clinical advice from the on-call haematologist between 8.00 am and 5.00 pm Monday to Friday. Advice is also available after hours by phoning the Royal Brisbane and Women’s Hospital on <strong>07 3646 8111</strong>.</p>\n<p>An education event is scheduled to take place in March 2020 for GPs who want to improve their knowledge of haematological conditions. Details will be available soon on the PHN website.</p>\n<p>The project is being established thanks to support from the Royal Brisbane and Women’s Hospital Foundation and is being led by Dr Cameron Curley, Deputy Director Haematology, Royal Brisbane and Women’s Hospital. For more information email<strong> <a>MNHHS-CCS-ED@health.qld.gov.au</a></strong>.</p>',NULL,NULL,NULL),(276,21643,1,'2020-04-21 00:42:38','2020-04-21 00:42:38','61951d2e-41b4-4eeb-8a06-442812ab0dcb','<p><strong>The department of haematology at the Royal Brisbane and Women’s Hospital has launched a pilot program of shared care with general practice for patients with low risk haematological conditions.</strong></p>\n<p>Shared care is the joint participation of primary care physicians and specialist physicians in the delivery of care.</p>\n<p>Shared care aims to help patients to receive care closer to home, avoid hospital wait times and receive more comprehensive primary care. For most patients, shared care will be an annual cycle, beginning with an initial specialist appointment, followed by three quarterly visits to the GP.</p>\n<p>GPs will be contacted on an individual basis to be offered the choice of participating in this shared care program as eligible patients are identified. The conditions in scope for the pilot program are chronic lymphocytic leukemia, monoclonal gammopathy of undetermined significance and myelodysplastic syndromes.</p>\n<p>Upon commencement, GPs will receive a care pathway outlining the recommended visit schedule, suggested care and monitoring, details of any clinical indicators (red flags) that would suggest the need for early specialist review and haematologist contact details.</p>\n<p>A dedicated Clinical Nurse Consultant will be available to help educate patients, resolve issues and help patients navigate their care.</p>\n<p>GPs are also encouraged to take advantage of the GP Haematology Advice telephone line. By phoning <strong>07 3646 1353</strong>, GPs can access clinical advice from the on-call haematologist between 8.00 am and 5.00 pm Monday to Friday. Advice is also available after hours by phoning the Royal Brisbane and Women’s Hospital on <strong>07 3646 8111</strong>.</p>\n<p>An education event is scheduled to take place in March 2020 for GPs who want to improve their knowledge of haematological conditions. Details will be available soon on the PHN website.</p>\n<p>The project is being established thanks to support from the Royal Brisbane and Women’s Hospital Foundation and is being led by Dr Cameron Curley, Deputy Director Haematology, Royal Brisbane and Women’s Hospital. For more information email<strong> <a>MNHHS-CCS-ED@health.qld.gov.au</a></strong>.</p>',NULL,NULL,NULL),(281,21650,1,'2020-04-21 00:43:30','2020-08-16 23:29:56','4f1d1cad-cf56-4197-87b1-c8a136b602e8','<p><strong>Brisbane North PHN is currently looking for GPs and practice nurses interested in joining the Brisbane North Chronic Wound Governance Group.</strong></p>\n<p>Operational since 2016, the Brisbane North Chronic Wound Governance Group aims to create transformative change resulting in better outcomes for people living with chronic wounds. It looks to achieve this through:</p>\n<ul><li>improving cross-sectorial collaboration between wound care providers in the North Brisbane and Moreton Bay region</li><li>identifying problematic conditions at a systems level and acting to leverage change</li><li>building capacity for engaging and developing solutions directly with individuals most affected</li><li>enabling, encouraging and supporting emergent innovation.</li></ul><p>Current members of the Governance Group include chronic wound care providers from Metro North Hospital and Health Service, private organisations, non-government organisations, community care providers, residential aged care and general practice.</p>\n<p>The PHN are also currently inviting aged care providers across community and residential aged care to participate in a program offering wound management education, with ongoing clinical support and onsite mentoring for your organisation.</p>\n<p><strong>For further information on the governance group or the wound management program contact Sector Collaboration Lead, Susan Cook, on <a href=\"http://brisbanenorthphn.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">susan.cook@brisbanenorthphn.org.au</a> or 07 3630 7320.</strong></p>',NULL,NULL,NULL),(282,21652,1,'2020-04-21 00:43:30','2020-04-21 00:43:30','15cc1047-12bb-4471-9f65-c44678412702','<p><strong>Brisbane North PHN is currently looking for GPs and practice nurses interested in joining the Brisbane North Chronic Wound Governance Group.</strong></p>\n<p>Operational since 2016, the Brisbane North Chronic Wound Governance Group aims to create transformative change resulting in better outcomes for people living with chronic wounds. It looks to achieve this through:</p>\n<ul><li>improving cross-sectorial collaboration between wound care providers in the North Brisbane and Moreton Bay region</li><li>identifying problematic conditions at a systems level and acting to leverage change</li><li>building capacity for engaging and developing solutions directly with individuals most affected</li><li>enabling, encouraging and supporting emergent innovation.</li></ul><p>Current members of the Governance Group include chronic wound care providers from Metro North Hospital and Health Service, private organisations, non-government organisations, community care providers, residential aged care and general practice.</p>\n<p>The PHN are also currently inviting aged care providers across community and residential aged care to participate in a program offering wound management education, with ongoing clinical support and onsite mentoring for your organisation.</p>\n<p><strong>For further information on the governance group or the wound management program contact Sector Collaboration Lead, Susan Cook, on <a href=\"http://brisbanenorthphn.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">susan.cook@brisbanenorthphn.org.au</a> or 07 3630 7320.</strong></p>',NULL,NULL,NULL),(315,21688,1,'2020-04-21 00:48:15','2020-04-21 00:48:15','fad06010-fb0b-4701-984d-821d46083735','<p><strong>The bushfires are affecting the entire nation and having a considerable impact on the physical and mental health of many Australians.</strong></p>\n<p>Experiences range from those directly exposed to the crisis, to those with contact only through what they have seen in the media; both groups may be affected.</p>\n<p>Most people recover from such traumatic events but if distress continues, some may need professional assessment and intervention. Those who seek help from a health professional will most often first present to a GP.</p>\n<p>In response to the crisis, the Royal Australian College of General Practitioners (RACGP) has put together a specialised list of resources for GPs and other health professionals. The list includes information on assisting within bushfire-affected communities, the use of P2 masks, providing care and support during disasters, and much more.</p>\n<p>Please read on for more information or <a href=\"/bush-fires\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>visit www.racgp.org. au/bush-fires</strong></a> for the full list of resources.</p>\n<h5><br /></h5><h5>Medicare bushfire recovery initiative</h5>\n<p>People affected by the bushfires are eligible to receive Medicare rebates for up to 10 psychological therapy sessions through GPs, psychologists and other mental health professionals through the Medicare Bushfire Recovery Initiative.</p>\n<p>To simplify access to these sessions, patients do not need to have a GP referral or mental health treatment plan.</p>\n<h5><br /></h5><h5>Telehealth</h5>\n<p>Medicare Benefits Schedule (MBS) items 2121, 2150 and 2196, which provide rebates for GP telehealth services provided to patients with mental health issues in drought-affected areas, have been expanded to include patients affected by bushfires.</p>\n<p>Patients who have been identified by a GP as being affected by bushfire, or who self-identify as being affected by bushfire, are eligible for these services. In addition to people who reside in areas directly affected by the bushfires, eligible patients may include people who reside in areas, which have not been directly affected.</p>\n<p>For more information visit <strong><a href=\"http://bit.ly/MBS-changes-bushfires\">http://bit.ly/MBS-changes-bushfires</a></strong>.</p>\n<h5><br /></h5><h5>Support for your patients</h5>\n<p>Online support services for the mental health and wellbeing of your patients:</p>\n<ul><li>The RUOK? website offers advice on supporting friends, family and colleagues through the crisis: <a href=\"http://www.ruok.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>www.ruok.org.au</strong></a>.</li><li>The Black Dog Institute has bushfire mental health information to help link communities to a range of support services: <a href=\"http://www.blackdoginstitute.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>www.blackdoginstitute.org.au</strong></a>.</li><li>Beyond Blue offers information on looking after yourself following a disaster: <a href=\"http://www.beyondblue.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>www.beyondblue.org.au</strong></a>.</li><li>headspace has information for young people coping with the stress of natural disasters: <a href=\"https://headspace.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>https://headspace.org.au</strong></a>.</li></ul><h5><br /></h5><h5>Support for health professionals</h5>\n<p>Health professionals will also be impacted by fires and need to look after their own health and wellbeing. GPs may become overloaded by the traumatic experiences of others.</p>\n<p><strong>DRS4DRS</strong></p>\n<p>GPs can access support via the DRS4DRS website and state/territory based helplines. For more information visit <a href=\"http://www.drs4drs.com.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>www.drs4drs.com.au</strong></a>.</p>\n<p><strong>The GP Support Program</strong></p>\n<p>The RACGP GP Support Program provides free and confidential psychological support to members, visit <a href=\"http://www.racgp.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>www.racgp.org.au</strong></a>.</p>\n<h5><br /></h5><h5>Other sources of information</h5>\n<p><strong>Life in Mind toolkit</strong></p>\n<p>Life in Mind team has developed a webpage where relevant disaster toolkits, resources, helplines and information can be found, visit <strong><a href=\"http://www.lifeinmindaustralia.com.au/\" target=\"_blank\" rel=\"noreferrer noopener\">www.lifeinmindaustralia.com.au</a></strong>.</p>\n<p><strong>Healthdirect bushfire health and safety</strong></p>\n<p>Offering practical advice, including how to prepare for a bushfire and how to keep informed. Visit <a href=\"http://www.healthdirect.gov.au/bushfire-health-and-safety\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>www.healthdirect.gov.au/bushfire-health-and-safety</strong></a>.</p>',NULL,NULL,NULL),(333,21709,1,'2020-04-21 00:50:31','2020-04-21 00:50:31','04d68edb-2fc7-4934-a5d0-5feae942a149','<p><strong>Brisbane North PHN is pleased to present, Our stories— an overview of the mental health, suicide prevention and alcohol and other drug treatment services commissioned by the PHN.</strong></p>\n<p>Each month, we will present a snapshot of services based off the perspectives of both service users and service providers – sharing real experiences and real outcomes. This month we are profiling the <em>Caring for Residents of Aged Care program</em>, created by Change Futures.</p>\n<p><em>Caring for Residents of Aged Care</em> places provisional psychologists in residential aged-care facilities to provide therapeutic programs for groups and individuals. What started as a small pro-bono program with St Vincent’s Aged Care in Brisbane’s northside has now spread to 17 facilities across the region with funding from Brisbane North PHN.</p>\n<p>Program founder Julie Aganoff said they’re uncovering a huge need for psychological therapies in aged care.</p>\n<p>‘Many, many residents in aged care experience psychological distress,’ she said. ‘Programs that support residents and improve their wellbeing are urgently needed.’</p>\n<p>Julie said that the time when people first move into aged care can be particularly difficult. ‘When people move into aged care, they’re often lonely, distressed to have left their home, and unsure what the future will bring. They’ve often lost their social connections and need to start again, developing a friendship group in their new environment.</p>\n<p>‘Our provisional psychologists can help with that transition and with other mental health issues residents are experiencing. Having a friendly, supportive person who visits each week simply to talk and listen for an extended time can provide enormous therapeutic benefit.’</p>\n<p><em>Caring for Residents of Aged Care</em> was designed in consultation with a Residents’ Advisory Group in an aged-care facility in Brisbane North.</p>\n<p>‘The Residents’ Group was very important in helping us to understand how to engage with aged care facilities and what to offer in the program,’ said Julie.</p>\n<p>Like any other mental health intervention, the program uses a selection of pre and post measures to evaluate outcomes. Evaluation shows the program leads to measurable reductions in residents’ anxiety and psychological distress, and high levels of client satisfaction.</p>\n<p>Qualitative measures show improvements in mood, anxiety and stress; reductions in social isolation and acceptance; improved coping with life changes; and increases in self-worth.</p>\n<p><strong>Alice’s* Story</strong></p>\n<p>Alice lives at St Vincent’s Aged Care in Mitchelton. Her eyesight is poor and she spends much of her time in her room. Even though her son and daughter-in-law visit regularly, she often finds herself feeling lonely. But talking to Phil, a provisional psychologist with Change Futures, has made a world of difference. Spending time with Phil gives her someone who listens to her and gives her support.<br /><sub>* Name and aspects of the story changed to preserve anonymity.</sub></p>\n<p><strong><br /></strong></p><p><strong>The program in a nutshell</strong></p><p><strong>Name:</strong> Caring for Residents of Aged Care</p>\n\n<p><strong>Providers: </strong>Change Futures</p>\n<p><strong>Service type:</strong> Individual and group therapy in residential aged-care facilities</p>\n<p><strong>Service duration: </strong>Conducted in episodes of five sessions; individual therapy available for up to 10 sessions; group therapy may be ongoing.</p>',NULL,NULL,NULL),(334,21711,1,'2020-04-21 00:53:23','2020-04-21 00:53:23','91031e80-dafc-4380-94a0-b54e82d8d77d','<p><strong>The department of haematology at the Royal Brisbane and Women’s Hospital has launched a pilot program of shared care with general practice for patients with low risk haematological conditions.</strong></p>\n<p>Shared care is the joint participation of primary care physicians and specialist physicians in the delivery of care.</p>\n<p>Shared care aims to help patients to receive care closer to home, avoid hospital wait times and receive more comprehensive primary care. For most patients, shared care will be an annual cycle, beginning with an initial specialist appointment, followed by three quarterly visits to the GP.</p>\n<p>GPs will be contacted on an individual basis to be offered the choice of participating in this shared care program as eligible patients are identified. The conditions in scope for the pilot program are chronic lymphocytic leukemia, monoclonal gammopathy of undetermined significance and myelodysplastic syndromes.</p>\n<p>Upon commencement, GPs will receive a care pathway outlining the recommended visit schedule, suggested care and monitoring, details of any clinical indicators (red flags) that would suggest the need for early specialist review and haematologist contact details.</p>\n<p>A dedicated Clinical Nurse Consultant will be available to help educate patients, resolve issues and help patients navigate their care.</p>\n<p>GPs are also encouraged to take advantage of the GP Haematology Advice telephone line. By phoning <strong>07 3646 1353</strong>, GPs can access clinical advice from the on-call haematologist between 8.00 am and 5.00 pm Monday to Friday. Advice is also available after hours by phoning the Royal Brisbane and Women’s Hospital on <strong>07 3646 8111</strong>.</p>\n<p>An education event is scheduled to take place in March 2020 for GPs who want to improve their knowledge of haematological conditions. Details will be available soon on the PHN website.</p>\n<p>The project is being established thanks to support from the Royal Brisbane and Women’s Hospital Foundation and is being led by Dr Cameron Curley, Deputy Director Haematology, Royal Brisbane and Women’s Hospital. For more information email<strong> <a>MNHHS-CCS-ED@health.qld.gov.au</a></strong>.</p>',NULL,NULL,NULL),(347,21725,1,'2020-04-21 00:55:44','2020-08-16 23:29:56','f45ce2f7-07dd-4975-90f5-85d30bf2cb71','<p><strong>Brisbane North PHN is pleased to present, Our stories— an overview of the mental health, suicide prevention and alcohol and other drug treatment services commissioned by the PHN.</strong></p>\n<p>Each month, we will present a snapshot of services based off the perspectives of both service users and service providers – sharing real experiences and real outcomes. This month we are profiling the <em>Caring for Residents of Aged Care program</em>, created by Change Futures.</p>\n<p><em>Caring for Residents of Aged Care</em> places provisional psychologists in residential aged-care facilities to provide therapeutic programs for groups and individuals. What started as a small pro-bono program with St Vincent’s Aged Care in Brisbane’s northside has now spread to 17 facilities across the region with funding from Brisbane North PHN.</p>\n<p>Program founder Julie Aganoff said they’re uncovering a huge need for psychological therapies in aged care.</p>\n<p>‘Many, many residents in aged care experience psychological distress,’ she said. ‘Programs that support residents and improve their wellbeing are urgently needed.’</p>\n<p>Julie said that the time when people first move into aged care can be particularly difficult. ‘When people move into aged care, they’re often lonely, distressed to have left their home, and unsure what the future will bring. They’ve often lost their social connections and need to start again, developing a friendship group in their new environment.</p>\n<p><br /></p>',NULL,NULL,NULL),(351,21730,1,'2020-04-21 00:55:44','2020-04-21 00:55:44','dfb89c91-4799-47aa-9af0-259cc7ae5df4',NULL,NULL,NULL,'‘Our provisional psychologists can help with that transition and with other mental health issues residents are experiencing. Having a friendly, supportive person who visits each week simply to talk and listen for an extended time can provide enormous therapeutic benefit.’'),(352,21731,1,'2020-04-21 00:55:44','2020-04-21 00:55:44','0751e529-c463-4141-8772-268f64d4f9f2','<p><em>Caring for Residents of Aged Care</em> was designed in consultation with a Residents’ Advisory Group in an aged-care facility in Brisbane North.</p>\n<p>‘The Residents’ Group was very important in helping us to understand how to engage with aged care facilities and what to offer in the program,’ said Julie.</p>\n<p>Like any other mental health intervention, the program uses a selection of pre and post measures to evaluate outcomes. Evaluation shows the program leads to measurable reductions in residents’ anxiety and psychological distress, and high levels of client satisfaction.</p>\n<p>Qualitative measures show improvements in mood, anxiety and stress; reductions in social isolation and acceptance; improved coping with life changes; and increases in self-worth.</p>\n<p><strong>Alice’s* Story</strong></p>\n<p>Alice lives at St Vincent’s Aged Care in Mitchelton. Her eyesight is poor and she spends much of her time in her room. Even though her son and daughter-in-law visit regularly, she often finds herself feeling lonely. But talking to Phil, a provisional psychologist with Change Futures, has made a world of difference. Spending time with Phil gives her someone who listens to her and gives her support.<br /><sub>* Name and aspects of the story changed to preserve anonymity.</sub></p>\n\n<h5><strong>The program in a nutshell</strong></h5>\n<p><strong>Name:</strong> Caring for Residents of Aged Care</p>\n<p><strong>Providers: </strong>Change Futures</p>\n<p><strong>Service type:</strong> Individual and group therapy in residential aged-care facilities</p>\n<p><strong>Service duration: </strong>Conducted in episodes of five sessions; individual therapy available for up to 10 sessions; group therapy may be ongoing.</p>',NULL,NULL,NULL),(353,21732,1,'2020-04-21 00:56:51','2020-08-16 23:29:56','c9a6396f-72b3-4626-9ec7-b181333b1491',NULL,NULL,NULL,'‘We offer peer-support programs, education, and social-inclusion activities like yoga, music and art. Most of our staff are volunteers and the majority of our services are free. It’s a friendly, welcoming and nonjudgemental space for parents and babies.’'),(354,21733,1,'2020-04-21 00:56:51','2020-08-16 23:29:56','d719910b-2cc8-44f6-8eb4-a21db40b3c5f','<p>SPP is delivered across six sessions by peer-support workers. The first and last sessions involve individual discussions and one-on-one support with the SPP program manager and a psychologist. SPP is an earlyintervention program for parents who are doing it tough but who may not have a diagnosis of mental illness. It’s designed to build emotional resilience and promote self-care.<br /></p>\n<p>‘We don’t require our participants to have a diagnosed condition or a formal referral from a GP,’ said Rani. ‘This isn’t a diagnostic program with clinical assessments and outcomes. It’s an empathic environment designed to promote emotional wellness and parenting confidence.’</p>\n<p>Rani is convinced that SPP is having a positive impact on the lives of mothers. ‘It might sound a bit corny, but I really do believe this program can bring a little ray of sunshine into parents’ lives, right when they need it most’.</p>\n<h5><strong>The program in a nutshell</strong></h5>\n<p><strong>Name: </strong>Sunshine Parenting Program<br /><strong>Provider:</strong> Peach Tree Perinatal Wellness Inc<br /><strong>Service type:</strong> Brief therapy, community-based peer education for parents experiencing postnatal mental health challenges<br /><strong>Service duration: </strong>Six-week program that includes four group sessions and two individual sessions with a psychologist</p>',NULL,NULL,NULL),(355,21735,1,'2020-04-21 00:56:51','2020-04-21 00:56:51','9c7e2911-c7a7-43b5-b0b4-45a56ffb23c6','<p><strong>Each month in Our stories, we’re presenting a snapshot of services based off the perspectives of both service users and service providers.</strong></p>\n<p>This month’s service profile focuses on the Sunshine Parenting Program (SPP), a six-week postnatal wellbeing program for mothers who are struggling with their mental health, run by Brisbane’s Peach Tree Perinatal Wellness Inc.</p>\n<p>SPP was designed by two Brisbane mums, Viv Kissane and Rani Farmer who both have first-hand experience of perinatal challenges. Viv’s experiences with perinatal mental illness encouraged her to establish Peach Tree Perinatal Wellness Inc in 2011.</p>\n<p>‘I’m the mother of three children, and I experienced firsthand the devastating impact of perinatal mental illness,’ said Viv. ‘I was determined to offer other parents the support I wish I’d had. I established Peach Tree to provide compassionate, peer-led services and education.’</p>\n<p>‘Our home here at Peach Tree House is like a parent wellbeing centre,’ said Viv.<br /></p>\n',NULL,NULL,NULL),(356,21736,1,'2020-04-21 00:56:51','2020-04-21 00:56:51','d6a275e1-bfb4-4812-8b19-d4184e3217c4',NULL,NULL,NULL,'‘We offer peer-support programs, education, and social-inclusion activities like yoga, music and art. Most of our staff are volunteers and the majority of our services are free. It’s a friendly, welcoming and nonjudgemental space for parents and babies.’'),(358,21739,1,'2020-04-21 00:57:04','2020-04-21 00:57:04','2f1d19d6-12a3-4323-94da-bfa6136a5493','<p><strong>Brisbane North PHN is pleased to present, Our stories— an overview of the mental health, suicide prevention and alcohol and other drug treatment services commissioned by the PHN.</strong></p>\n<p>Each month, we will present a snapshot of services based off the perspectives of both service users and service providers – sharing real experiences and real outcomes. This month we are profiling the <em>Caring for Residents of Aged Care program</em>, created by Change Futures.</p>\n<p><em>Caring for Residents of Aged Care</em> places provisional psychologists in residential aged-care facilities to provide therapeutic programs for groups and individuals. What started as a small pro-bono program with St Vincent’s Aged Care in Brisbane’s northside has now spread to 17 facilities across the region with funding from Brisbane North PHN.</p>\n<p>Program founder Julie Aganoff said they’re uncovering a huge need for psychological therapies in aged care.</p>\n<p>‘Many, many residents in aged care experience psychological distress,’ she said. ‘Programs that support residents and improve their wellbeing are urgently needed.’</p>\n<p>Julie said that the time when people first move into aged care can be particularly difficult. ‘When people move into aged care, they’re often lonely, distressed to have left their home, and unsure what the future will bring. They’ve often lost their social connections and need to start again, developing a friendship group in their new environment.</p>\n<p><br /></p>',NULL,NULL,NULL),(359,21740,1,'2020-04-21 00:57:04','2020-04-21 00:57:04','c0b9a438-c2af-450c-ac9f-570a8c690526',NULL,NULL,NULL,'‘Our provisional psychologists can help with that transition and with other mental health issues residents are experiencing. Having a friendly, supportive person who visits each week simply to talk and listen for an extended time can provide enormous therapeutic benefit.’'),(360,21741,1,'2020-04-21 00:57:04','2020-04-21 00:57:04','22abb578-4a8e-4b81-a821-ee7e3cbbcf67','<p><em>Caring for Residents of Aged Care</em> was designed in consultation with a Residents’ Advisory Group in an aged-care facility in Brisbane North.</p>\n<p>‘The Residents’ Group was very important in helping us to understand how to engage with aged care facilities and what to offer in the program,’ said Julie.</p>\n<p>Like any other mental health intervention, the program uses a selection of pre and post measures to evaluate outcomes. Evaluation shows the program leads to measurable reductions in residents’ anxiety and psychological distress, and high levels of client satisfaction.</p>\n<p>Qualitative measures show improvements in mood, anxiety and stress; reductions in social isolation and acceptance; improved coping with life changes; and increases in self-worth.</p>\n<p><strong>Alice’s* Story</strong></p>\n<p>Alice lives at St Vincent’s Aged Care in Mitchelton. Her eyesight is poor and she spends much of her time in her room. Even though her son and daughter-in-law visit regularly, she often finds herself feeling lonely. But talking to Phil, a provisional psychologist with Change Futures, has made a world of difference. Spending time with Phil gives her someone who listens to her and gives her support.<br /><sub>* Name and aspects of the story changed to preserve anonymity.</sub></p>\n\n<h5><strong>The program in a nutshell</strong></h5>\n<p><strong>Name:</strong> Caring for Residents of Aged Care</p>\n<p><strong>Providers: </strong>Change Futures</p>\n<p><strong>Service type:</strong> Individual and group therapy in residential aged-care facilities</p>\n<p><strong>Service duration: </strong>Conducted in episodes of five sessions; individual therapy available for up to 10 sessions; group therapy may be ongoing.</p>',NULL,NULL,NULL),(405,21792,1,'2020-04-21 00:59:41','2020-04-21 00:59:41','ed1bda8e-fc12-43c4-94d5-54865f9fcde9','<p><strong>A toolkit for embedding people with experience of mental health challenges into public and private workplaces and non-government organisations has just been launched.</strong></p>\n<p>The Mental Health Lived Experience Workforce framework provides practical advice and resources for any organisation employing or looking to employ lived experience staff. </p>\n<p>It was developed by RMIT University researchers led by lived experience academic Dr Louise Byrne, and funded by the Queensland Mental Health Commission. Queensland Mental Health Commissioner Mr Ivan Frkovic said the framework represented a comprehensive guide to harnessing the knowledge of employees who had experience of mental ill-health. </p>\n<p>“People with personal experience of mental health challenges and the ways our systems respond to them offer unique insight and are well-placed to support those working in and using mental health services,” Mr Frkovic said.</p>\n<p>He said the new framework was designed to be flexible and transferable, so it could be adapted across a range of workplaces.</p>\n<p><a href=\"https://www.facebook.com/BrisbaneNorthPHN\" target=\"_blank\" rel=\"noreferrer noopener\"></a><br /></p>',NULL,NULL,NULL),(406,21793,1,'2020-04-21 00:59:41','2020-04-21 00:59:41','8771b761-578e-499e-a035-1d55a1da4485',NULL,NULL,NULL,'“For example, Queensland Health has harnessed the key concepts and adapted them to suit the public mental health sector. ﻿Lived experience workers have a vital role in mental health, but there is also great potential for them to contribute to other organisations across the public and private sector.”'),(407,21794,1,'2020-04-21 00:59:41','2020-04-21 00:59:41','3db028ed-8f7f-47b8-9139-acbb7bcb4405','<p>Dr Byrne said the framework provided practical guidance for organisations to employ, train, supervise and support staff in dedicated lived experience roles.</p>\n<p>Her team identified three main pillars for an effective lived experience workforce:</p>\n<ol><li>All levels of the organisation need to be exposed to lived experience staff and concepts to understand how they work and the value they add.</li><li>Genuine commitment is needed at all levels of the organisation. Tokenistic roles do not succeed.</li><li>Practical action is necessary to prepare the workforce; address workplace readiness through training and championing of lived experience roles at all levels of the organisation.</li></ol><blockquote><p>“We are seeing an increase in the number of people employed for their lived experience, but there may not be sufficient understanding in organisations about the roles they are able to fill and the value they bring to the organisation, beyond empathy with clients,” Dr Byrne said.</p><p>“This can result in poor support structures or planning around the roles, with the risk that lived experience workers might not be fulfilling their potential.</p></blockquote>\n<p>Louise Byrne is one of Australia\'s leading lived experience researchers.</p>\n<p>Dr Byrne said lived experience employees had the greatest impact when upper management made a long-term commitment to the roles.</p>\n<p>“Unfortunately, many organisations are lacking confidence when employing lived experience staff, resulting in reduced impact.</p>\n<p>“We hope resources like the framework will change both perceptions and practices.”</p>\n<p><strong>Download the Lived Experience Workforce Framework at: <a href=\"http://www.qmhc.qld.gov.au/\">www.qmhc.qld.gov.au</a>.</strong></p>\n<p><em>Pictured above: Dr Leanne Geppert, Executive Director of the Queensland Mental Health Commission; Mr Ivan Frkovic, Queensland Mental Health Commissioner; Dr Louise Byrne, RMIT University; Deb Pratt, Manager at Queensland Mental Health Commission; Eschleigh Balzamo, General Manager at Brook RED; Paula Arro, Lived Experience Engagement Coordinator, Brisbane North PHN.</em></p>\n<p><em>Reprinted with thanks to <a href=\"http://www.rmit.edu.au/news\">RMIT University News</a>.</em></p>',NULL,NULL,NULL),(420,21808,1,'2020-04-21 01:01:01','2020-08-16 23:29:56','60738043-10e8-4563-9b43-bfa34308da3a','<p><strong>A toolkit for embedding people with experience of mental health challenges into public and private workplaces and non-government organisations has just been launched.</strong></p>\n<p>The Mental Health Lived Experience Workforce framework provides practical advice and resources for any organisation employing or looking to employ lived experience staff. </p>\n<p>It was developed by RMIT University researchers led by lived experience academic Dr Louise Byrne, and funded by the Queensland Mental Health Commission. Queensland Mental Health Commissioner Mr Ivan Frkovic said the framework represented a comprehensive guide to harnessing the knowledge of employees who had experience of mental ill-health. </p>\n<p>“People with personal experience of mental health challenges and the ways our systems respond to them offer unique insight and are well-placed to support those working in and using mental health services,” Mr Frkovic said.</p>\n<p>He said the new framework was designed to be flexible and transferable, so it could be adapted across a range of workplaces.</p>\n<p><a href=\"https://www.facebook.com/BrisbaneNorthPHN\" target=\"_blank\" rel=\"noreferrer noopener\"></a><br /></p>',NULL,NULL,NULL),(422,21810,1,'2020-04-21 01:01:01','2020-08-16 23:29:56','4c447995-3cf3-44e8-a375-ecc1765e9d25','<p>Dr Byrne said the framework provided practical guidance for organisations to employ, train, supervise and support staff in dedicated lived experience roles.</p>\n<p>Her team identified three main pillars for an effective lived experience workforce:</p>\n<ol><li>All levels of the organisation need to be exposed to lived experience staff and concepts to understand how they work and the value they add.</li><li>Genuine commitment is needed at all levels of the organisation. Tokenistic roles do not succeed.</li><li>Practical action is necessary to prepare the workforce; address workplace readiness through training and championing of lived experience roles at all levels of the organisation.</li></ol><blockquote><p>“We are seeing an increase in the number of people employed for their lived experience, but there may not be sufficient understanding in organisations about the roles they are able to fill and the value they bring to the organisation, beyond empathy with clients,” Dr Byrne said.</p><p>“This can result in poor support structures or planning around the roles, with the risk that lived experience workers might not be fulfilling their potential.</p></blockquote>\n<p>Louise Byrne is one of Australia\'s leading lived experience researchers.</p>\n<p>Dr Byrne said lived experience employees had the greatest impact when upper management made a long-term commitment to the roles.<br /><br /></p>\n\n',NULL,NULL,NULL),(423,21811,1,'2020-04-21 01:01:01','2020-08-16 23:29:56','0aa56a92-36dc-42dd-9cb2-5179c952dc11',NULL,NULL,NULL,'“Unfortunately, many organisations are lacking confidence when employing lived experience staff, resulting in reduced impact. We hope resources like the framework will change both perceptions and practices.”'),(424,21812,1,'2020-04-21 01:01:01','2020-08-16 23:29:56','d723f0fe-dada-4948-ab5e-478bc3a28771','<p><strong>Download the Lived Experience Workforce Framework at: <a href=\"http://www.qmhc.qld.gov.au/\">www.qmhc.qld.gov.au</a>.</strong></p>\n<p><em>Pictured above: Dr Leanne Geppert, Executive Director of the Queensland Mental Health Commission; Mr Ivan Frkovic, Queensland Mental Health Commissioner; Dr Louise Byrne, RMIT University; Deb Pratt, Manager at Queensland Mental Health Commission; Eschleigh Balzamo, General Manager at Brook RED; Paula Arro, Lived Experience Engagement Coordinator, Brisbane North PHN.</em></p>\n<p><em>Reprinted with thanks to <a href=\"http://www.rmit.edu.au/news\">RMIT University News</a>.</em></p>',NULL,NULL,NULL),(425,21814,1,'2020-04-21 01:01:01','2020-04-21 01:01:01','fca648cb-a625-493c-8eb8-164c1d361e32','<p><strong>A toolkit for embedding people with experience of mental health challenges into public and private workplaces and non-government organisations has just been launched.</strong></p>\n<p>The Mental Health Lived Experience Workforce framework provides practical advice and resources for any organisation employing or looking to employ lived experience staff. </p>\n<p>It was developed by RMIT University researchers led by lived experience academic Dr Louise Byrne, and funded by the Queensland Mental Health Commission. Queensland Mental Health Commissioner Mr Ivan Frkovic said the framework represented a comprehensive guide to harnessing the knowledge of employees who had experience of mental ill-health. </p>\n<p>“People with personal experience of mental health challenges and the ways our systems respond to them offer unique insight and are well-placed to support those working in and using mental health services,” Mr Frkovic said.</p>\n<p>He said the new framework was designed to be flexible and transferable, so it could be adapted across a range of workplaces.</p>\n<p><a href=\"https://www.facebook.com/BrisbaneNorthPHN\" target=\"_blank\" rel=\"noreferrer noopener\"></a><br /></p>',NULL,NULL,NULL),(426,21815,1,'2020-04-21 01:01:01','2020-04-21 01:01:01','2f37e449-0e8c-43c4-903b-a1829ec828c9',NULL,NULL,NULL,'“For example, Queensland Health has harnessed the key concepts and adapted them to suit the public mental health sector. ﻿Lived experience workers have a vital role in mental health, but there is also great potential for them to contribute to other organisations across the public and private sector.”'),(427,21816,1,'2020-04-21 01:01:01','2020-04-21 01:01:01','4ea60288-b024-448b-82f0-9f7a8c40dee9','<p>Dr Byrne said the framework provided practical guidance for organisations to employ, train, supervise and support staff in dedicated lived experience roles.</p>\n<p>Her team identified three main pillars for an effective lived experience workforce:</p>\n<ol><li>All levels of the organisation need to be exposed to lived experience staff and concepts to understand how they work and the value they add.</li><li>Genuine commitment is needed at all levels of the organisation. Tokenistic roles do not succeed.</li><li>Practical action is necessary to prepare the workforce; address workplace readiness through training and championing of lived experience roles at all levels of the organisation.</li></ol><blockquote><p>“We are seeing an increase in the number of people employed for their lived experience, but there may not be sufficient understanding in organisations about the roles they are able to fill and the value they bring to the organisation, beyond empathy with clients,” Dr Byrne said.</p><p>“This can result in poor support structures or planning around the roles, with the risk that lived experience workers might not be fulfilling their potential.</p></blockquote>\n<p>Louise Byrne is one of Australia\'s leading lived experience researchers.</p>\n<p>Dr Byrne said lived experience employees had the greatest impact when upper management made a long-term commitment to the roles.<br /><br /></p>\n\n',NULL,NULL,NULL),(429,21818,1,'2020-04-21 01:01:01','2020-04-21 01:01:01','95b798d3-8599-463d-bee0-ce3ce3a12748','<p><strong>Download the Lived Experience Workforce Framework at: <a href=\"http://www.qmhc.qld.gov.au/\">www.qmhc.qld.gov.au</a>.</strong></p>\n<p><em>Pictured above: Dr Leanne Geppert, Executive Director of the Queensland Mental Health Commission; Mr Ivan Frkovic, Queensland Mental Health Commissioner; Dr Louise Byrne, RMIT University; Deb Pratt, Manager at Queensland Mental Health Commission; Eschleigh Balzamo, General Manager at Brook RED; Paula Arro, Lived Experience Engagement Coordinator, Brisbane North PHN.</em></p>\n<p><em>Reprinted with thanks to <a href=\"http://www.rmit.edu.au/news\">RMIT University News</a>.</em></p>',NULL,NULL,NULL),(430,21820,1,'2020-04-21 01:02:06','2020-04-21 01:02:06','a5427b5c-9ca8-45f5-aa23-dca6382eb91c','<p><strong>A toolkit for embedding people with experience of mental health challenges into public and private workplaces and non-government organisations has just been launched.</strong></p>\n<p>The Mental Health Lived Experience Workforce framework provides practical advice and resources for any organisation employing or looking to employ lived experience staff. </p>\n<p>It was developed by RMIT University researchers led by lived experience academic Dr Louise Byrne, and funded by the Queensland Mental Health Commission. Queensland Mental Health Commissioner Mr Ivan Frkovic said the framework represented a comprehensive guide to harnessing the knowledge of employees who had experience of mental ill-health. </p>\n<p>“People with personal experience of mental health challenges and the ways our systems respond to them offer unique insight and are well-placed to support those working in and using mental health services,” Mr Frkovic said.</p>\n<p>He said the new framework was designed to be flexible and transferable, so it could be adapted across a range of workplaces.</p>\n<p><a href=\"https://www.facebook.com/BrisbaneNorthPHN\" target=\"_blank\" rel=\"noreferrer noopener\"></a><br /></p>',NULL,NULL,NULL),(431,21821,1,'2020-04-21 01:02:06','2020-04-21 01:02:06','a8eb5619-2815-4918-9b39-ee31346d280c',NULL,NULL,NULL,'“For example, Queensland Health has harnessed the key concepts and adapted them to suit the public mental health sector. ﻿Lived experience workers have a vital role in mental health, but there is also great potential for them to contribute to other organisations across the public and private sector.”'),(432,21822,1,'2020-04-21 01:02:06','2020-04-21 01:02:06','fda305f4-d8b5-4a16-8a32-5f5c9e1312e2','<p>Dr Byrne said the framework provided practical guidance for organisations to employ, train, supervise and support staff in dedicated lived experience roles.</p>\n<p>Her team identified three main pillars for an effective lived experience workforce:</p>\n<ol><li>All levels of the organisation need to be exposed to lived experience staff and concepts to understand how they work and the value they add.</li><li>Genuine commitment is needed at all levels of the organisation. Tokenistic roles do not succeed.</li><li>Practical action is necessary to prepare the workforce; address workplace readiness through training and championing of lived experience roles at all levels of the organisation.</li></ol><blockquote><p>“We are seeing an increase in the number of people employed for their lived experience, but there may not be sufficient understanding in organisations about the roles they are able to fill and the value they bring to the organisation, beyond empathy with clients,” Dr Byrne said.</p><p>“This can result in poor support structures or planning around the roles, with the risk that lived experience workers might not be fulfilling their potential.</p></blockquote>\n<p>Louise Byrne is one of Australia\'s leading lived experience researchers.</p>\n<p>Dr Byrne said lived experience employees had the greatest impact when upper management made a long-term commitment to the roles.<br /><br /></p>\n\n',NULL,NULL,NULL),(433,21823,1,'2020-04-21 01:02:06','2020-04-21 01:02:06','ca18d5c7-1d93-45fe-9fc5-bb220bde0a04',NULL,NULL,NULL,'“Unfortunately, many organisations are lacking confidence when employing lived experience staff, resulting in reduced impact. We hope resources like the framework will change both perceptions and practices.”'),(474,21867,1,'2020-04-21 01:04:59','2020-04-21 01:04:59','b3153434-07e8-44f2-b3d2-4ce73bd48bbc','<p><strong>General Practitioner and clinical researcher Dr Jenny Schafer will bring a unique combination of career experiences to Brisbane North PHN, following her appointment to the PHN’s Board of Directors at its Annual General Meeting (AGM) on Wednesday 13 November 2019.</strong></p>\n<p> Having practised in Brisbane North for many years, Dr Schafer is also a current board director with Arthritis Queensland and a senior research manager at Wesley Medical Research. <br />Dr Schafer may be well known to many from her media work some years ago as a Channel 9 medical reporter and Sunday Mail columnist. </p>\n<p>In other AGM announcements, Mark Henley and Stan Macionis were returned as Board Directors. </p>\n<p>PHN Chief Executive Officer Abbe Anderson congratulated the new Board of Directors, saying the balance of experience and perspectives among its members will ensure the organisation continues to provide strong primary healthcare leadership.</p>\n<p><br /></p>',NULL,NULL,NULL),(475,21868,1,'2020-04-21 01:04:59','2020-04-21 01:04:59','683dc486-56f5-4836-8200-3c8e17c490b5',NULL,NULL,NULL,'“I am pleased for our new and continuing Directors. Dr Jenny Schafer is a welcome addition to our Board, helping to bolster the voice of GPs in PHN decision making,” Ms Anderson said.'),(476,21869,1,'2020-04-21 01:04:59','2020-04-21 01:04:59','e3b7e864-7e67-4cd6-b864-0c9a11e469bc','<p>“Dr Schafer has a long connection with our organisation. She and I worked closely together to develop the role of the Medical Assistant in Australia, now recognised with a nationally accredited Certificate IV qualification,” she said.</p><p>“Mark Henley has been on our board since 2015. He is currently CEO at the QLD Council of Social Services (QCOSS) and was formerly on the board of National Disability Services.</p>\n<p>“Mr Henley’s experience as an accountant has been of great benefit to the PHN in his role as chair of our Board’s Finance, Audit and Risk Management Committee.</p>\n<p>“Stan Macionis is another long-serving Board Director. First appointed in 2013, Mr Macionis currently chairs our Board’s Governance Committee.</p>\n<p>“Mr Macionis also serves as a member of the Mental Health Review Tribunal and the AHPRA Nursing and Midwifery Board. He was previously CEO at Medibank Health Solutions and then with RSL Care,” Ms Anderson said.</p>\n<p>AGM attendees heard from guest speaker Simon Cotterell, First Assistant Secretary at the Department of Health and Ageing, who spoke about the Government’s intention to develop a 10-year Primary Health Care Plan.</p>\n<p><strong><a href=\"http://www.brisbanenorthphn.org.au/page/about/our-team/directors\" target=\"_blank\" rel=\"noreferrer noopener\">Click through for more information</a> on the PHN’s Board of Directors for 2018/19.</strong></p>\n<p><strong><a href=\"http://www.brisbanenorthphn.org.au/yearinreview\" target=\"_blank\" rel=\"noreferrer noopener\">Read the PHN’s 2018/19 Digital Year in Review</a>.</strong></p>\n<p><em>Pictured left to right: Brisbane North PHN Board Chair Dr Anita Green, PHN CEO Abbe Anderson and new Board Director Dr Jenny Schafer.</em></p>',NULL,NULL,NULL),(485,21901,1,'2020-04-21 02:52:31','2020-04-21 02:52:31','bbd15a3d-f6df-4b04-ad9a-50faa6224985','<p><strong>2020 is the international year of the nurse and midwife and throughout the year the PHN is paying tribute to nurses and midwives that inspire.</strong></p>\n<p>This month we\'re celebrating the life and legacy of inspirational pioneer of the health sector, Aunty Pamela Mam.</p>\n<p>In January, trailblazing leader Aunty Pamela Mam passed away after more than 60 years working to improving the health and wellbeing outcomes of Aboriginal people and Torres Strait Islanders.</p>\n<p>Aunty Pamela Mam (nee Ah-kee/Bligh), a pioneer of Aboriginal and Torres Strait Islander health services, was born in 1938 in Richmond, western Queensland, and was a descendent of the Kuku Yalanji peoples in the Cooktown area.</p>\n<p>She started her remarkable career as a nurse aid at Palm Island Hospital, and later trained as a nurse at Townsville Hospital, becoming one of the first Aboriginal nurses in Queensland. Aunty Pamela helped establish the Aboriginal and Torres Strait Islander Community Health Service (ATSICHS) Brisbane and in 2015, Griffith University established the Aunty Pamela Mam Indigenous Nursing Scholarship to support Aboriginal and Torres Strait Islander nursing and midwifery students.</p>\n<p>She was awarded an honorary doctorate from Griffith University in December 2018 for her service to her people in health services and to the community and named as a life member of the Queensland Aboriginal and Islander Health Council and ATSICHS Brisbane, and patron for the Institute for Urban Indigenous Health.</p>\n<p>Aunty Pamela was an inspirational figure who created an ongoing legacy of compassion and commitment for health care for First Nations Queenslanders.</p>\n<p>For more infomation on the Aunty Pamela Mam Indigenous Nursing Scholarship visit the <strong><a href=\"https://www.griffith.edu.au/scholarships/scholarship-listings/aunty-pamela-mam-indigenous-nursing-scholarship\" target=\"_blank\" rel=\"noreferrer noopener\">Griffith University website</a></strong>.</p>',NULL,NULL,NULL),(1372,94457,1,'2020-06-29 05:10:17','2020-06-29 05:10:17','26536ffc-dc57-4b0c-87df-91792be224d1','<p><strong>GP Smart Referrals, rolled out by Metro North Hospital and Health Service and Brisbane North PHN in April, is now live in 63 general practices across the region.</strong></p>\n<p>GP Smart Referrals is an electronic template that allows GPs to send referrals through to Metro North Specialist Outpatients.</p>\n<p>They enable faster, streamlined management of referrals and less double handling of referrals across our health service.</p>\n<p>General practices in the Brisbane North and Moreton Bay region that have compatible software can register to have GP Smart Referrals installed.</p>\n<p>After registration, the software can be installed and activated remotely. Online training resources are available and on-site or remote training are also on offer.</p>\n<p>GP Smart Referrals creates a streamlined referral process as it is integrated with a service directory, which allows you to view the closest facility that provides the service to your patient’s address.</p>\n<p>The software will auto-populate patient demographics and clinical record information, reducing time spent manually entering information.</p>\n<p>Links with the statewide referral criteria allow essential referral information to be displayed, reducing the number of referrals sent back with requests for additional clinical information.</p>\n<p>Documents or imaging, including pathology tests and imaging reports, can be attached to the referral, saving administration time with the elimination of faxing supporting documents or diagnostic testing.</p>\n<p>Telegraph Road Medical Clinic went live with GP Smart Referrals in April, with Dr Stephen Gilliland recently giving some feedback on the referral system.</p>\n<p>“It’s excellent, very user-friendly and I like the speed of doing a referral. “All the relevant information is correlated on referral, with no need to go hunting for info,” said Dr Gilliland.</p>\n<p><strong>Email <a href=\"mailto:GPSR@brisbanenorthphn.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">GPSR@brisbanenorthphn.org.au</a> to register your practice or contact the PHN’s Digital Health Support Officers: Julian Winkel on 0474 980 564 or Donna Hayward on 0402 159 794.</strong></p>',NULL,NULL,NULL),(1373,94459,1,'2020-06-29 05:10:24','2020-06-29 05:10:24','dacdf8f6-055e-413f-b93f-fc55b14f0b9f','<p><strong>St Martins Residential Aged Care home at Taigum is the site of Brisbane North’s first Specialist Dementia Care Program (SDCP) unit.</strong></p>\n<p>It is one of three locations in Queensland successful in the Commonwealth Government’s first round of funding for the new program, along with Brisbane South and Mackay.</p>\n<p>The program aims to: </p>\n\n<ul><li>provide care for people exhibiting severe symptoms of dementia who are unable to be effectively cared for by mainstream aged care services</li><li>enable residential aged care providers to deliver care in a dedicated dementia friendly environment</li><li>provide intensive, specialised residential care with a focus on stabilising and reducing the person’s symptoms over time with the aim of enabling transition to a less intensive care setting.</li></ul><p>Kate Hawkins, Specialist Dementia Care Program Manager at Anglicare Southern Queensland, said the new unit would open in July 2020.</p>\n<p>“This is an exciting opportunity for St Martins to be among the first aged care homes in Australia to establish this specialist capability in dementia care, with our residents and wider community set to benefit from the advanced skills and knowledge of the staff in the unit,” Ms Hawkins said.</p>\n<p>“The objective is that residents would only reside in the unit for short period of time until the specialist support and care they receive will enable them to transition into a general aged care setting after that period, whether that be at St Martin’s or another nearby home.</p>\n<p>“We know there is a growing need for specialist dementia care in Australia and that units like these will be important assets in our local community.”</p>\n<p>Ms Hawkins said the unit would incorporate eight beds, plus an additional ‘bounce back’ bed, to accommodate people who may need to be readmitted if their transition out is not successful.</p>\n<p>Residents are admitted to the unit via a specialised referral pathway through Dementia Support Australia.</p>\n<p>For more information please contact Kate Hawkins at <strong><a href=\"mailto:khawkins@anglicaresq.org.au\" target=\"_blank\" rel=\"noreferrer noopener\">khawkins@anglicaresq.org.au</a></strong>.</p>',NULL,NULL,NULL),(1374,94461,1,'2020-06-29 05:10:32','2020-06-29 05:10:32','7df29487-bcab-4ee6-b078-73369e30f2a6','<p><strong>The Improving Indigenous Access to Mainstream Primary Care (IIAMPC) team, under the Integrated Team Care (ITC) program, work with general practices and healthcare providers to facilitate access to appropriate healthcare services for Aboriginal and Torres Strait Islander community members.</strong></p>\n\n\n\n\n<p>This program includes training for providers such as ‘Turning Good Intentions into Culturally Safe Practice’, as well as assistance with resource development, tools, and templates to support Aboriginal and Torres Strait Islander patients to access services.</p>\n\n\n\n\n<p>The program also provides outreach support for your Aboriginal and Torres Strait Islander clients, including transport to and from appointments, cultural support, and health literacy</p>\n\n\n<p>education. Outreach workers can support general practices by engaging in community health promotion programs.</p>\n\n<p>To be eligible for this program, patients must have a current 715 health assessment and complete the ITC patient registration form.</p>\n\n\n<p><strong>For further information please call 1800 254 354 to speak with an ITC/IIAMPC team member.</strong></p>\n',NULL,NULL,NULL),(1379,94470,1,'2020-06-29 05:11:54','2020-06-29 05:11:54','d2a2968d-8782-4945-9740-af2e058c6cf4','<p>There is still time for older people, Aboriginal and Torres Strait Islander people and others at high risk of influenza complications to protect themselves with a free flu jab this winter.</p>\n<p>General Practitioner and Brisbane North PHN Board Chair Dr Anita Green said it was especially important to be vigilant about flu vaccination during this year’s pandemic.</p>\n<p>“Contracting both COVID-19 and the flu at the same time could be fatal, even for the fittest of us,” Dr Green said.</p>\n<p>“People aged 65 years or older can now get a special Quadrivalent Influenza Vaccine from their GP or other immunisation provider,” she said.</p>\n<p>“This new flu vaccine provides enhanced protection for older people and, best of all, it’s free.</p>\n<p>“Aboriginal and Torres Strait Islander people are also highly vulnerable to respiratory illness, so influenza vaccination is free for this population group as well, from six months of age.</p>\n<p>“Remember that it is safe to visit your GP.</p>\n<p>“General Practices now have ample personal protective equipment, like masks and gowns, and new infection control processes are in place to prevent the spread of COVID-19. Sanitation is paramount.</p>\n<p>“Patients just need to remember to phone ahead to book an appointment.</p>\n<p>“This will allow general practice staff to check the vaccine is in stock and assess whether patients have any flu or COVID-19 symptoms before they come to the clinic,” she said.</p>\n<p>Other flu vaccine providers include Aboriginal Community Controlled Health Services, community pharmacies and local council immunisation clinics. Check relevant websites for details.</p>\n<p>Immunisation lowers a person’s risk of infection from a vaccine preventable disease. It is a safe and effective way to protect yourself and the community against many serious illnesses.</p>\n<p>In Australia, influenza on average causes 1,500 to 3,000 deaths, about 18,000 hospitalisations and 300,000 GP consultations each year [<a href=\"https://protect-au.mimecast.com/s/nCmJC0YK0Ms4y6kHwIfhQ?domain=link.mediaoutreach.meltwater.com\">source: Influenza Specialist Group, updated 25 March 2020</a>].</p>\n<p>The <a href=\"https://protect-au.mimecast.com/s/VuKMCgZ0nyUNBVqFo9UEs?domain=link.mediaoutreach.meltwater.com\">National Immunisation Program</a> provides free flu vaccines to those most at risk, including:</p>\n<ul><li>pregnant women at any stage of pregnancy</li>\n <li>all Aboriginal and Torres Strait Islander people aged six months and older</li>\n <li>people aged 65 years and older</li>\n <li>people aged six months and older with certain medical risk factors, and</li>\n <li>for the first time, all children aged between six months and five years.</li>\n</ul><p>For more information about vaccine safety, go to <a href=\"https://protect-au.mimecast.com/s/i_G0CjZ10BUAOpYS5qoMP?domain=link.mediaoutreach.meltwater.com\">http://www.ausvaxsafety.org.au/</a>.</p>',NULL,NULL,NULL),(2097,106871,1,'2020-08-10 02:41:50','2020-08-10 02:41:50','f168d8cb-17f6-4109-abef-9864698cbcc3','<p>It\'s safe to see your GP and maintain appointments with other healthcare professionals, so don\'t put your health on hold any longer.</p>\n<p>That is the message 30-year veteran General Practitioner and Brisbane North PHN Board Chair Dr Anita Green wants patients to understand as Queensland continues to deal with COVID-19.</p>\n<p>“Whether you need a flu jab or a regular health check,don\'t delay. Book in with your GP today,\" Dr Green said.</p>\n<p>Her call coincides with the launch of a new Primary Health Network campaign, across radio and online media, in response to reports from healthcare providers that many people are avoiding vital medical care.</p>\n<p>“We know the people who have been most at risk during the pandemic are those with chronic complex disease and the older members of our community,” Dr Green said.</p>\n<p>“They largely heeded the health messages to stay at home,self-isolate and keep themselves safe when the Coronavirus first appeared and I congratulate them for doing so,” she said. “But people shouldn’t put their healthcare on hold any longer.</p>\n<p>“It is very important for anyone living with asthma and other lung conditions, cancers, diabetes or cardiovascular disease, to continue their regular medical care to avoid serious complications.</p>\n<p>\"We want them to reconnect with their GP, psychologist, podiatrist, physio or other healthcare professional and get the normal healthcare they need to have on a regular basis.</p>\n<p>“For infection control reasons, so we can maintain a COVID safe environment for all patients, we just need them to phone ahead or book with their clinic online. It’s that simple,” Dr Green said.<br /></p>\n<p>To search for a local healthcare professional or service, visit the <a href=\"http://www.brisbanenorthphn.org.au/safetoseegp\" target=\"_blank\" rel=\"noreferrer noopener\">Safe to see your GP webpage</a>. <br /></p>\n<h6>With thanks to Darling Downs West Moreton PHN for initiating, developing and permitting Brisbane North PHN to adapt and share the campaign in our region. </h6>',NULL,NULL,NULL),(3538,120594,1,'2020-10-30 05:27:02','2020-10-30 05:27:02','3d911839-c445-4af0-8928-73d991f1bb44','<p>It\'s safe to see your GP and maintain appointments with other healthcare professionals, so don\'t put your health on hold any longer.</p>\n<p>That is the message 30-year veteran General Practitioner and Brisbane North PHN Board Chair Dr Anita Green wants patients to understand as Queensland continues to deal with COVID-19.</p>\n<p>“Whether you need a flu jab or a regular health check, don\'t delay. Book in with your GP today,\" Dr Green said.</p>\n<p>Her call coincides with the launch of a new Primary Health Network campaign, across radio and online media, in response to reports from healthcare providers that many people are avoiding vital medical care.<br /></p>\n<p>“We know the people who have been most at risk during the pandemic are those with chronic complex disease and the older members of our community,” Dr Green said.</p>\n<p>“They largely heeded the health messages to stay at home, self-isolate and keep themselves safe when the Coronavirus first appeared and I congratulate them for doing so,” she said. “But people shouldn’t put their healthcare on hold any longer.</p>\n<p>“It is very important for anyone living with asthma and other lung conditions, cancers, diabetes or cardiovascular disease, to continue their regular medical care to avoid serious complications.</p>\n<p>\"We want them to reconnect with their GP, psychologist, podiatrist, physio or other healthcare professional and get the normal healthcare they need to have on a regular basis.</p>\n<p>“For infection control reasons, so we can maintain a COVID safe environment for all patients, we just need them to phone ahead or book with their clinic online. It’s that simple,” Dr Green said.<br /></p>\n<p>To search for a local healthcare professional or service, visit the <a href=\"http://www.brisbanenorthphn.org.au/safetoseegp\" target=\"_blank\" rel=\"noreferrer noopener\">Safe to see your GP webpage</a>. <br /></p>\n<h6>With thanks to Darling Downs West Moreton PHN for initiating, developing and permitting Brisbane North PHN to adapt and share the campaign in our region.</h6>',NULL,NULL,NULL),(3539,120600,1,'2020-10-30 05:27:02','2020-10-30 05:27:02','7cfc1646-6889-4408-ad78-39d2de81ce22','<p>It\'s safe to see your GP and maintain appointments with other healthcare professionals, so don\'t put your health on hold any longer.</p>\n<p>That is the message 30-year veteran General Practitioner and Brisbane North PHN Board Chair Dr Anita Green wants patients to understand as Queensland continues to deal with COVID-19.</p>\n<p>“Whether you need a flu jab or a regular health check, don\'t delay. Book in with your GP today,\" Dr Green said.</p>\n<p>Her call coincides with the launch of a new Primary Health Network campaign, across radio and online media, in response to reports from healthcare providers that many people are avoiding vital medical care.<br /></p>\n<p>“We know the people who have been most at risk during the pandemic are those with chronic complex disease and the older members of our community,” Dr Green said.</p>\n<p>“They largely heeded the health messages to stay at home, self-isolate and keep themselves safe when the Coronavirus first appeared and I congratulate them for doing so,” she said. “But people shouldn’t put their healthcare on hold any longer.</p>\n<p>“It is very important for anyone living with asthma and other lung conditions, cancers, diabetes or cardiovascular disease, to continue their regular medical care to avoid serious complications.</p>\n<p>\"We want them to reconnect with their GP, psychologist, podiatrist, physio or other healthcare professional and get the normal healthcare they need to have on a regular basis.</p>\n<p>“For infection control reasons, so we can maintain a COVID safe environment for all patients, we just need them to phone ahead or book with their clinic online. It’s that simple,” Dr Green said.<br /></p>\n<p>To search for a local healthcare professional or service, visit the <a href=\"http://www.brisbanenorthphn.org.au/safetoseegp\" target=\"_blank\" rel=\"noreferrer noopener\">Safe to see your GP webpage</a>. <br /></p>\n<h6>With thanks to Darling Downs West Moreton PHN for initiating, developing and permitting Brisbane North PHN to adapt and share the campaign in our region.</h6>',NULL,NULL,NULL),(3540,120606,1,'2020-10-30 05:27:36','2020-10-30 05:27:36','264863d6-60dc-4de0-9f34-58975f3ce653','<p>It\'s safe to see your GP and maintain appointments with other healthcare professionals, so don\'t put your health on hold any longer.</p>\n<p>That is the message 30-year veteran General Practitioner and Brisbane North PHN Board Chair Dr Anita Green wants patients to understand as Queensland continues to deal with COVID-19.</p>\n<p>“Whether you need a flu jab or a regular health check, don\'t delay. Book in with your GP today,\" Dr Green said.</p>\n<p>Her call coincides with the launch of a new Primary Health Network campaign, across radio and online media, in response to reports from healthcare providers that many people are avoiding vital medical care.<br /></p>\n<p>“We know the people who have been most at risk during the pandemic are those with chronic complex disease and the older members of our community,” Dr Green said.</p>\n<p>“They largely heeded the health messages to stay at home, self-isolate and keep themselves safe when the Coronavirus first appeared and I congratulate them for doing so,” she said. “But people shouldn’t put their healthcare on hold any longer.</p>\n<p>“It is very important for anyone living with asthma and other lung conditions, cancers, diabetes or cardiovascular disease, to continue their regular medical care to avoid serious complications.</p>\n<p>\"We want them to reconnect with their GP, psychologist, podiatrist, physio or other healthcare professional and get the normal healthcare they need to have on a regular basis.</p>\n<p>“For infection control reasons, so we can maintain a COVID safe environment for all patients, we just need them to phone ahead or book with their clinic online. It’s that simple,” Dr Green said.<br /></p>\n<p>To search for a local healthcare professional or service, visit the <a href=\"http://www.brisbanenorthphn.org.au/safetoseegp\" target=\"_blank\" rel=\"noreferrer noopener\">Safe to see your GP webpage</a>. <br /></p>\n<h6>With thanks to Darling Downs West Moreton PHN for initiating, developing and permitting Brisbane North PHN to adapt and share the campaign in our region.</h6>',NULL,NULL,NULL),(3542,120616,1,'2020-10-30 05:29:06','2020-10-30 05:29:06','96a97ee9-682f-4c59-8a5b-d5e98f86a439','<p>There is still time for older people, Aboriginal and Torres Strait Islander people and others at high risk of influenza complications to protect themselves with a free flu jab this winter.</p>\n<p>General Practitioner and Brisbane North PHN Board Chair Dr Anita Green said it was especially important to be vigilant about flu vaccination during this year’s pandemic.</p>\n<p>“Contracting both COVID-19 and the flu at the same time could be fatal, even for the fittest of us,” Dr Green said.</p>\n<p>“People aged 65 years or older can now get a special Quadrivalent Influenza Vaccine from their GP or other immunisation provider,” she said.</p>\n<p>“This new flu vaccine provides enhanced protection for older people and, best of all, it’s free.</p>\n<p>“Aboriginal and Torres Strait Islander people are also highly vulnerable to respiratory illness, so influenza vaccination is free for this population group as well, from six months of age.</p>\n<p>“Remember that it is safe to visit your GP.</p>\n<p>“General Practices now have ample personal protective equipment, like masks and gowns, and new infection control processes are in place to prevent the spread of COVID-19. Sanitation is paramount.</p>\n<p>“Patients just need to remember to phone ahead to book an appointment.</p>\n<p>“This will allow general practice staff to check the vaccine is in stock and assess whether patients have any flu or COVID-19 symptoms before they come to the clinic,” she said.</p>\n<p>Other flu vaccine providers include Aboriginal Community Controlled Health Services, community pharmacies and local council immunisation clinics. Check relevant websites for details.</p>\n<p>Immunisation lowers a person’s risk of infection from a vaccine preventable disease. It is a safe and effective way to protect yourself and the community against many serious illnesses.</p>\n<p>In Australia, influenza on average causes 1,500 to 3,000 deaths, about 18,000 hospitalisations and 300,000 GP consultations each year [<a href=\"http://www.isg.org.au/index.php/clinical-information/influenza-fast-facts-/\" target=\"_blank\" rel=\"noreferrer noopener\">source: Influenza Specialist Group, updated 25 March 2020</a>].</p>\n<p>The <a href=\"https://www.health.gov.au/health-topics/immunisation/immunisation-throughout-life/national-immunisation-program-schedule%E3%2A\" target=\"_blank\" rel=\"noreferrer noopener\">National Immunisation Program</a> provides free flu vaccines to those most at risk, including:</p>\n<ul><li>pregnant women at any stage of pregnancy</li>\n <li>all Aboriginal and Torres Strait Islander people aged six months and older</li>\n <li>people aged 65 years and older</li>\n <li>people aged six months and older with certain medical risk factors, and</li>\n <li>for the first time, all children aged between six months and five years.</li>\n</ul><p>For more information about vaccine safety, go to <a href=\"http://www.ausvaxsafety.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">http://www.ausvaxsafety.org.au/</a>.</p>',NULL,NULL,NULL),(3543,120621,1,'2020-10-30 05:29:06','2020-10-30 05:29:06','9d1eabd5-ced5-4587-b68e-7ee57a3707dd','<p>There is still time for older people, Aboriginal and Torres Strait Islander people and others at high risk of influenza complications to protect themselves with a free flu jab this winter.</p>\n<p>General Practitioner and Brisbane North PHN Board Chair Dr Anita Green said it was especially important to be vigilant about flu vaccination during this year’s pandemic.</p>\n<p>“Contracting both COVID-19 and the flu at the same time could be fatal, even for the fittest of us,” Dr Green said.</p>\n<p>“People aged 65 years or older can now get a special Quadrivalent Influenza Vaccine from their GP or other immunisation provider,” she said.</p>\n<p>“This new flu vaccine provides enhanced protection for older people and, best of all, it’s free.</p>\n<p>“Aboriginal and Torres Strait Islander people are also highly vulnerable to respiratory illness, so influenza vaccination is free for this population group as well, from six months of age.</p>\n<p>“Remember that it is safe to visit your GP.</p>\n<p>“General Practices now have ample personal protective equipment, like masks and gowns, and new infection control processes are in place to prevent the spread of COVID-19. Sanitation is paramount.</p>\n<p>“Patients just need to remember to phone ahead to book an appointment.</p>\n<p>“This will allow general practice staff to check the vaccine is in stock and assess whether patients have any flu or COVID-19 symptoms before they come to the clinic,” she said.</p>\n<p>Other flu vaccine providers include Aboriginal Community Controlled Health Services, community pharmacies and local council immunisation clinics. Check relevant websites for details.</p>\n<p>Immunisation lowers a person’s risk of infection from a vaccine preventable disease. It is a safe and effective way to protect yourself and the community against many serious illnesses.</p>\n<p>In Australia, influenza on average causes 1,500 to 3,000 deaths, about 18,000 hospitalisations and 300,000 GP consultations each year [<a href=\"http://www.isg.org.au/index.php/clinical-information/influenza-fast-facts-/\" target=\"_blank\" rel=\"noreferrer noopener\">source: Influenza Specialist Group, updated 25 March 2020</a>].</p>\n<p>The <a href=\"https://www.health.gov.au/health-topics/immunisation/immunisation-throughout-life/national-immunisation-program-schedule%E3%2A\" target=\"_blank\" rel=\"noreferrer noopener\">National Immunisation Program</a> provides free flu vaccines to those most at risk, including:</p>\n<ul><li>pregnant women at any stage of pregnancy</li>\n <li>all Aboriginal and Torres Strait Islander people aged six months and older</li>\n <li>people aged 65 years and older</li>\n <li>people aged six months and older with certain medical risk factors, and</li>\n <li>for the first time, all children aged between six months and five years.</li>\n</ul><p>For more information about vaccine safety, go to <a href=\"http://www.ausvaxsafety.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">http://www.ausvaxsafety.org.au/</a>.</p>',NULL,NULL,NULL),(3545,120630,1,'2020-10-30 05:30:39','2020-10-30 05:30:39','402259d5-14be-43a6-8ff9-d7c529669b67','<p><strong>World Immunisation Week (24 to 30 April 2020)</strong></p>\n<p>While most parents understand immunisation is the best way to protect children against many serious and life-threatening diseases, they often overlook the risks posed by influenza.</p>\n<p>According to Queensland Health, infants and children less than 5 years of age are more likely than older children and adults to get severe flu infections resulting in hospitalisation.</p>\n<p>Brisbane North PHN Deputy CEO Libby Dunstan said myths circulating on the internet can confuse wellmeaning parents about whether or not to vaccinate their children.</p>\n<p>“To coincide with World Immunisation Week (24 to 30 April 2020), we have refreshed our Medical Mums public awareness campaign to counter vaccine myths,” Ms Dunstan said.</p>\n<p>“Immunisation rates for childhood vaccines covered under the National Immunisation Program Schedule are really quite high in Brisbane North, but seasonal flu vaccine coverage always seems to languish a lot lower,” she said.</p>\n<p>“Unfortunately, during this year’s flu season, we also have to contend with coronavirus.</p>\n<p>“Doctors are warning that the consequences of contracting both COVID-19 and the flu at the same time would be catastrophic.</p>\n<p>“Given the flu vaccine is free in Queensland for children aged between six months to under five years of age, we’d like to see more kids vaccinated against influenza,” she said.</p>\n<p>The Medical Mums website – <a href=\"http://www.medicalmums.com.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>www.medicalmums.com.au</strong></a> – and annual campaign tackle some of the main myths known to be causing vaccine hesitancy among parents.</p>\n<p>“We know parents are getting mixed messages about vaccination, but our campaign message is clear and unambiguous,” Ms Dunstan said.</p>\n<p>“If parents have safety concerns about vaccines, they should talk to their GP,” she said.</p>\n<p>“Whether it’s from something they’ve read online or a rumour they’ve heard from a friend, parents are saying it’s hard to know what’s true, but they don’t have to figure this out for themselves.</p>\n<p>“The best person they can discuss their concerns with is their GP, who can answer their questions in more detail,” Ms Dunstan said.</p>\n<p>Medical Mums campaign advertising features a series of animation videos that will appear across various digital platforms, including Facebook.</p>\n<p>General practices are encouraged to access the patient resources available for download from the <strong><a href=\"http://www.medicalmums.com.au/\" target=\"_blank\" rel=\"noreferrer noopener\">Medical Mums website</a></strong>.</p>\n<p><strong><a href=\"https://d1jydvs1x4rbvt.cloudfront.net/downloads/Media-releases/MR_Embargo_Medical-Mums-urge-free-kids%E2%80%99-flu-vaccination_200424.pdf?mtime=20200429083116&amp;focal=none\" target=\"_blank\" rel=\"noreferrer noopener\">View the media release.</a></strong></p>',NULL,NULL,NULL),(4171,140965,1,'2021-03-15 05:52:24','2021-03-15 05:52:24','9c50af43-e11a-4c07-a94a-462d04556cd9','<p><strong>A huge painted mural and a sea of young people in green t-shirts brought a splash of colour and plenty of energy to the official launch party for headspace Strathpine on 19 February 2021.</strong></p>\n<p>During a week marked by storms and torrential rain, the sun broke through just long enough for the socially distanced, outdoors event to proceed – and it did not disappoint. </p>\n<p>Around 200 guests showed up to the Open Minds-run youth mental health centre, many of them school children, who were treated to a breakfast burger, cool drink and some hip-hop beats on arrival.</p>\n<p>Addressing the crowd, Open Minds CEO Paula Mayson said it was imperative that mental health support was available from a young age.</p>\n<p>“Our purpose is enabling an independent and positive future for people living with mental illness and disabilities,” Ms Mayson said.</p>\n<p>“What better way is there to stay true to our purpose, than to partner with headspace to help young people, the people who are, after all, our future,” she said.</p>\n<p>The new headspace Strathpine centre is the third opened under the auspices of Open Minds, following headspace Taringa, which opened in 2014 and another in Redcliffe in 2015. </p>\n<p>“Last year alone we supported 2307 young people at our Redcliffe and Taringa centres, and completed over 11,000 occasions of service,” Ms Mayson said.</p>\n<p>“These numbers sit well above the national averages, in comparison to other headspaces around Australia,” she added.</p>\n<p>Ms Mason said she was encouraged by the community’s reception of the new centre, with 120 young people already receiving support since it opened in November 2020.</p>\n<p>She thanked a number of people and organisations, including Brisbane North PHN “for supporting Open Minds to lead this centre and assisting us along the establishment journey.”</p>\n<p>Federal Member for Dickson Peter Dutton also spoke at the launch, reflecting on the increased demand for youth mental health services during the pandemic.</p>\n<p>“I really don’t think we can overstate the success of headspace and that’s been underscored through COVID as well, where people have been isolated, they’ve been dislocated, they’ve been separated from their friends and their support structures,” Mr Dutton said.</p>\n<p>“And it’s why we have seen a spike, particularly through telehealth, but also now in a return to people coming into consult rooms and seeking the assistance that they need,” he said.</p>\n<p>Mr Dutton cited the university development on the Old Petrie Paper Mill site and the new AEIOU centre in nearby Bald Hills as examples of other Australian Government-funded projects recently delivered in his electorate.</p>\n<p>“I think we’re incredibly lucky to have the expertise through headspace that we do have,” Mr Dutton said, and he thanked the health professionals and green-shirted volunteers at the event, “for making a big difference in the lives of young people in our local community.”</p>\n<p><em>Pictured above: Paul Martin, Executive Manager, Commissioned Services and Libby Dunstan, <em>CEO</em> from Brisbane North PHN, Peter Dutton, Federal Member for Dickson, Jamie Thompson, Regional Manager, headspace Taringa.</em></p>',NULL,NULL,NULL),(4214,144213,1,'2021-03-22 03:23:29','2021-03-22 03:23:29','110a886d-1959-4080-84c6-a6be41d6a6fa','<p><strong>Residents at Wesley Mission Queensland’s Anam Cara Aged Care Community have told of their delight in becoming among the first in Queensland to receive the COVID-19 vaccine. </strong></p>\n<p>Anam Cara Facility Manager Silvia Holl said residents were very excited and felt very privileged to get the vaccine.<br /></p>\n\n<p>“As soon as we had sent out consent forms, these were returned completed in anticipation for the vaccination clinic to happen pretty quickly,” Ms Holl said. </p>\n<p>“There truly was a real sense of excitement to be getting the vaccine,” she explained, “with some residents even stating they felt very honoured to be able to get this ‘liquid gold’.” </p>\n<p>“The vaccination rollout was a reason to celebrate with balloons, cake and lots of laughter.</p>\n<p>“Residents cheered each other on as they came into the observation area after receiving the vaccination. It was a real special two days full of excitement and celebration,” she said.</p>\n<p>While Wesley Mission Queensland staff did not administer the vaccine, Ms Holl said their dedicated team of Clinical Nurses, Registered Nurses, carers and administration staff were on hand throughout the two days to ensure residents were comfortable and surrounded by familiar faces.</p>\n<p>Anam Cara resident Michael Johnson said he felt very important to have the vaccine.</p>\n<p>He commended the facility on doing “a good job” with the vaccinations and when asked if it hurt, replied “No, not at the time. But a little later the arm got sore, but no more than other vaccinations I have had in the past.”</p>\n<p>While the pandemic and related lockdowns have significantly affected aged care residents around the world, Mr Johnson was upbeat.</p>\n<p>“The only thing that it affected for me was not being able to go to KFC, otherwise it didn’t really affect me too much. We have our little community here and that’s all I needed,” he said.</p>\n<p>Ms Holl said that while families could not come and visit physically during visitor restrictions, residents and families kept connected using the many platforms of video calls available to them. </p>\n<p>“We also had students from Bray Park State High School, our partner school, keeping in regular contact via Zoom and taking residents away on virtual tours to their art classes and art exhibitions,” Ms Holl said. </p>\n<p>“Entertainment staff kept residents busy with enchanting music and facilitated video calls, whilst our wonderful Leisure and Lifestyle Staff ensured individual engagement in meaningful activities,” she added.</p>\n<p>The Australian Government is responsible for implementing the COVID-19 Vaccination Program in the majority of residential aged care facilities (RACFs).</p>\n<p>An ‘in-reach’ vaccination workforce engaged by the Commonwealth is administering the vaccine to aged care residents, with the support of PHNs.</p>\n<p>Sharon Sweeney, Brisbane North PHN’s Executive Manager for Aged and Community Care System Improvement, said the PHN was pleased to be involved in coordination of the vaccine rollout.</p>\n<p>“We have been working in partnership with the Department of Health and its contracted workforce providers to support RACFs in preparing for safe and efficient delivery of vaccinations,” Ms Sweeney said. </p>\n<p>“Maintaining good communication with RACFs and primary care providers around the vaccine rollout is also a big part of our role. </p>\n<p>“This includes our regular Primary Care Liaison Officer visits to GPs, executive-level communication with the Metro North Hospital and Health Service and Queensland Health, and ensuring that any issues or risks are escalated to the Australian Government Department of Health.”</p>\n<p><em>Pictured above: Wesley Mission Queensland’s Annie Gibney reassures Anam Cara resident Robyn McGann, who was the first resident to receive the vaccine at the facility.</em><br /></p>\n',NULL,NULL,NULL),(4215,144217,1,'2021-03-22 03:35:41','2021-03-22 03:35:41','27dc510f-77c5-4f21-ad62-bc54fd334ab0','<p><strong>A huge painted mural and a sea of young people in green t-shirts brought a splash of colour and plenty of energy to the official launch party for headspace Strathpine on 19 February 2021.</strong></p>\n<p>During a week marked by storms and torrential rain, the sun broke through just long enough for the socially distanced, outdoors event to proceed – and it did not disappoint. </p>\n<p>Around 200 guests showed up to the Open Minds-run youth mental health centre, many of them school children, who were treated to a breakfast burger, cool drink and some hip-hop beats on arrival.</p>\n<p>Addressing the crowd, Open Minds CEO Paula Mayson said it was imperative that mental health support was available from a young age.</p>\n<p>“Our purpose is enabling an independent and positive future for people living with mental illness and disabilities,” Ms Mayson said.</p>\n<p>“What better way is there to stay true to our purpose, than to partner with headspace to help young people, the people who are, after all, our future,” she said.</p>\n<p>The new headspace Strathpine centre is the third opened under the auspices of Open Minds, following headspace Taringa, which opened in 2014 and another in Redcliffe in 2015. </p>\n<p>“Last year alone we supported 2307 young people at our Redcliffe and Taringa centres, and completed over 11,000 occasions of service,” Ms Mayson said.</p>\n<p>“These numbers sit well above the national averages, in comparison to other headspaces around Australia,” she added.</p>\n<p>Ms Mason said she was encouraged by the community’s reception of the new centre, with 120 young people already receiving support since it opened in November 2020.</p>\n<p>She thanked a number of people and organisations, including Brisbane North PHN “for supporting Open Minds to lead this centre and assisting us along the establishment journey.”</p>\n<p>Federal Member for Dickson Peter Dutton also spoke at the launch, reflecting on the increased demand for youth mental health services during the pandemic.</p>\n<p>“I really don’t think we can overstate the success of headspace and that’s been underscored through COVID as well, where people have been isolated, they’ve been dislocated, they’ve been separated from their friends and their support structures,” Mr Dutton said.</p>\n<p>“And it’s why we have seen a spike, particularly through telehealth, but also now in a return to people coming into consult rooms and seeking the assistance that they need,” he said.</p>\n<p>Mr Dutton cited the university development on the Old Petrie Paper Mill site and the new AEIOU centre in nearby Bald Hills as examples of other Australian Government-funded projects recently delivered in his electorate.</p>\n<p>“I think we’re incredibly lucky to have the expertise through headspace that we do have,” Mr Dutton said, and he thanked the health professionals and green-shirted volunteers at the event, “for making a big difference in the lives of young people in our local community.”</p>\n<p><em>Pictured above: Paul Martin, Executive Manager, Commissioned Services and Libby Dunstan, <em>CEO</em> from Brisbane North PHN, Peter Dutton, Federal Member for Dickson, Jamie Thompson, Regional Manager, headspace Taringa.</em></p>',NULL,NULL,NULL),(4216,144219,1,'2021-03-22 03:39:19','2021-03-22 03:39:19','8b2a6329-0acd-424b-a86d-eeeb9a9f6d1d','<p><strong>A huge painted mural and a sea of young people in green t-shirts brought a splash of colour and plenty of energy to the official launch party for headspace Strathpine on 19 February 2021.</strong></p>\n<p>During a week marked by storms and torrential rain, the sun broke through just long enough for the socially distanced, outdoors event to proceed – and it did not disappoint. </p>\n<p>Around 200 guests showed up to the Open Minds-run youth mental health centre, many of them school children, who were treated to a breakfast burger, cool drink and some hip-hop beats on arrival.</p>\n<p>Addressing the crowd, Open Minds CEO Paula Mayson said it was imperative that mental health support was available from a young age.</p>\n<p>“Our purpose is enabling an independent and positive future for people living with mental illness and disabilities,” Ms Mayson said.</p>\n<p>“What better way is there to stay true to our purpose, than to partner with headspace to help young people, the people who are, after all, our future,” she said.</p>\n<figure><img src=\"{asset:144215:url||https://d1jydvs1x4rbvt.cloudfront.net/images/News-images/2021/headspace-Strathpine-launch_Feb-2021.jpg?mtime=20210322133508&focal=none}\" alt=\"headspace Strathpine official launch party\" /></figure>\n<p><br /></p>\n<p>The new headspace Strathpine centre is the third opened under the auspices of Open Minds, following headspace Taringa, which opened in 2014 and another in Redcliffe in 2015. </p>\n<p>“Last year alone we supported 2307 young people at our Redcliffe and Taringa centres, and completed over 11,000 occasions of service,” Ms Mayson said.</p>\n<p>“These numbers sit well above the national averages, in comparison to other headspaces around Australia,” she added.</p>\n<p>Ms Mason said she was encouraged by the community’s reception of the new centre, with 120 young people already receiving support since it opened in November 2020.</p>\n<p>She thanked a number of people and organisations, including Brisbane North PHN “for supporting Open Minds to lead this centre and assisting us along the establishment journey.”</p>\n<p>Federal Member for Dickson Peter Dutton also spoke at the launch, reflecting on the increased demand for youth mental health services during the pandemic.</p>\n<p>“I really don’t think we can overstate the success of headspace and that’s been underscored through COVID as well, where people have been isolated, they’ve been dislocated, they’ve been separated from their friends and their support structures,” Mr Dutton said.</p>\n<p>“And it’s why we have seen a spike, particularly through telehealth, but also now in a return to people coming into consult rooms and seeking the assistance that they need,” he said.</p>\n<p>Mr Dutton cited the university development on the Old Petrie Paper Mill site and the new AEIOU centre in nearby Bald Hills as examples of other Australian Government-funded projects recently delivered in his electorate.</p>\n<p>“I think we’re incredibly lucky to have the expertise through headspace that we do have,” Mr Dutton said, and he thanked the health professionals and green-shirted volunteers at the event, “for making a big difference in the lives of young people in our local community.”</p>\n<p><em>Pictured above: Paul Martin, Executive Manager, Commissioned Services and Libby Dunstan, <em>CEO</em> from Brisbane North PHN, Peter Dutton, Federal Member for Dickson, Jamie Thompson, Regional Manager, headspace Taringa.</em></p>',NULL,NULL,NULL),(4217,144221,1,'2021-03-22 03:49:54','2021-03-22 03:49:54','ebd514cf-ecf1-4db7-add1-1f913ff3f6de','<p><strong>A huge painted mural and a sea of young people in green t-shirts brought a splash of colour and plenty of energy to the official launch party for headspace Strathpine on 19 February 2021.</strong></p>\n<p>During a week marked by storms and torrential rain, the sun broke through just long enough for the socially distanced, outdoors event to proceed – and it did not disappoint. </p>\n<p>Around 200 guests showed up to the Open Minds-run youth mental health centre, many of them school children, who were treated to a breakfast burger, cool drink and some hip-hop beats on arrival.</p>\n<p>Addressing the crowd, Open Minds CEO Paula Mayson said it was imperative that mental health support was available from a young age.</p>\n<p>“Our purpose is enabling an independent and positive future for people living with mental illness and disabilities,” Ms Mayson said.</p>\n<p>“What better way is there to stay true to our purpose, than to partner with headspace to help young people, the people who are, after all, our future,” she said.</p>\n<figure><img src=\"{asset:144215:url||https://d1jydvs1x4rbvt.cloudfront.net/images/News-images/2021/headspace-Strathpine-launch_Feb-2021.jpg?mtime=20210322133508&focal=none}\" alt=\"headspace Strathpine official launch party\" /></figure>\n<p><br /></p>\n<p>The new headspace Strathpine centre is the third opened under the auspices of Open Minds, following headspace Taringa, which opened in 2014 and another in Redcliffe in 2015. </p>\n<p>“Last year alone we supported 2307 young people at our Redcliffe and Taringa centres, and completed over 11,000 occasions of service,” Ms Mayson said.</p>\n<p>“These numbers sit well above the national averages, in comparison to other headspaces around Australia,” she added.</p>\n<p>Ms Mason said she was encouraged by the community’s reception of the new centre, with 120 young people already receiving support since it opened in November 2020.</p>\n<p>She thanked a number of people and organisations, including Brisbane North PHN “for supporting Open Minds to lead this centre and assisting us along the establishment journey.”</p>\n<p>Federal Member for Dickson Peter Dutton also spoke at the launch, reflecting on the increased demand for youth mental health services during the pandemic.</p>\n<p>“I really don’t think we can overstate the success of headspace and that’s been underscored through COVID as well, where people have been isolated, they’ve been dislocated, they’ve been separated from their friends and their support structures,” Mr Dutton said.</p>\n<p>“And it’s why we have seen a spike, particularly through telehealth, but also now in a return to people coming into consult rooms and seeking the assistance that they need,” he said.</p>\n<p>Mr Dutton cited the university development on the Old Petrie Paper Mill site and the new AEIOU centre in nearby Bald Hills as examples of other Australian Government-funded projects recently delivered in his electorate.</p>\n<p>“I think we’re incredibly lucky to have the expertise through headspace that we do have,” Mr Dutton said, and he thanked the health professionals and green-shirted volunteers at the event, “for making a big difference in the lives of young people in our local community.”</p>\n<p><em>Pictured above: Paul Martin, Executive Manager, Commissioned Services and Libby Dunstan, <em>CEO</em> from Brisbane North PHN, Peter Dutton, Federal Member for Dickson, Jamie Thompson, Regional Manager, headspace Taringa.</em></p>',NULL,NULL,NULL),(4391,144674,1,'2021-03-24 05:22:41','2021-03-24 06:14:30','e006f7cc-0032-4293-8ea7-a03bdcef42dc','<p><strong><strong><strong>In early March the PHN team received a visit from the \'Better Together\' van, driven to North Lakes by Metro North Hospital and Health Service Senior Project Officer, William Bern.</strong></strong></strong><br /></p>\n<p>As part of the <a href=\"https://metronorth.health.qld.gov.au/wp-content/uploads/2019/07/close-gap-plan.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">Metro North Hospital and Health Service Better Together Aboriginal and Torres Strait Islander Health Plan 2019-2022</a>, the mobile Better Together Health Van provides screening measures and important health promotion messages to Aboriginal and Torres Strait Islander communities within the Metro North catchment.</p>\n<p>The Metro North Better Together Heath Van is a free community services to Aboriginal and/or Torres Strait Islander people living within the Metro North catchment of Brisbane.</p>\n<p>The van acts as an extension of Metro North Hospital and Health Service (MNHHS) to create engagement activities and develop partnerships and relationships with patients, families and community organisations. It provides outreach options that are culturally responsive, safe and connected, and access to opportunistic screening and health promotion.<br /></p>\n<p>In the previous 12 months, Aboriginal and Torres Strait Islander health workers have been driving the van to events and opportunities right across the region; gathering crucial community feedback on how the van can support the health needs of Aboriginal and Torres Strait Islander consumers.</p>\n<p>The brightly-coloured artwork featured on the van is by esteemed Aboriginal artist Elaine Chambers-Hegarty, and the undercover awning allows community members to stop by for a yarn with the Aboriginal and Torres Strait Islander health staff.<br /></p>\n<p>For more information or to request the van to visit your community or event, please contact the Aboriginal and Torres Strait Islander Leadership Team on 07 3139 3235 or email <a href=\"mailto:Bettertogetherhealthvan@health.qld.gov.au\">bettertogetherhealthvan@health.qld.gov.au</a>.</p>\n<p><em>Pictured above: MNHHS Senior Project Officer, William Bern with the PHN team at the North Lakes office. </em><br /></p>',NULL,NULL,NULL),(4392,144676,1,'2021-03-24 05:22:41','2021-03-24 05:22:41','f2dc5809-f752-4bae-94b9-0a2bbe8836db','<p><strong><strong>In early March the PHN team were lucky enough to receive a visit from the \'Better Together\' van, driven by Metro North Hospital and Health Service Senior Project Officer, William Bern.</strong></strong><br /></p>\n<p>As part of the <a href=\"https://metronorth.health.qld.gov.au/wp-content/uploads/2019/07/close-gap-plan.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">Metro North Hospital and Health Service Better Together Aboriginal and Torres Strait Islander Health Plan 2019-2022</a>, the mobile Better Together Health Van provides screening measures and important health promotion messages to Aboriginal and Torres Strait Islander communities within the Metro North catchment.</p>\n<p>The Metro North Better Together Heath Van is a free community services to Aboriginal and/or Torres Strait Islander people living within the Metro North catchment of Brisbane.</p>\n<p>The van acts as an extension of Metro North Hospital and Health Service (MNHHS) to create engagement activities and develop partnerships and relationships with patients, families and community organisations. It provides outreach options that are culturally responsive, safe and connected, and access to opportunistic screening and health promotion.<br /></p>\n<p>In the previous 12 months, Aboriginal and Torres Strait Islander health workers have been driving the van to events and opportunities right across the region; gathering crucial community feedback on how the van can support the health needs of Aboriginal and Torres Strait Islander consumers.</p>\n<p>The brightly-coloured artwork featured on the van is by esteemed Aboriginal artist Elaine Chambers-Hegarty, and the undercover awning allows community members to stop by for a yarn with the Aboriginal and Torres Strait Islander health staff.<br /></p>\n<p>For more information or to request the van to visit your community or event, please contact the Aboriginal and Torres Strait Islander Leadership Team on 07 3139 3235 or email <a href=\"mailto:Bettertogetherhealthvan@health.qld.gov.au\">bettertogetherhealthvan@health.qld.gov.au</a>.</p>\n<p><em>Pictured above: MNHHS Senior Project Officer, William Bern with the PHN team at the North Lakes office. </em><br /></p>',NULL,NULL,NULL),(4393,144678,1,'2021-03-24 05:22:44','2021-03-24 05:22:44','c2536d4b-9ac2-4c57-af33-976a81bdb03d','<p><strong><strong>In early March the PHN team were lucky enough to receive a visit from the \'Better Together\' van, driven by Metro North Hospital and Health Service Senior Project Officer, William Bern.</strong></strong><br /></p>\n<p>As part of the <a href=\"https://metronorth.health.qld.gov.au/wp-content/uploads/2019/07/close-gap-plan.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">Metro North Hospital and Health Service Better Together Aboriginal and Torres Strait Islander Health Plan 2019-2022</a>, the mobile Better Together Health Van provides screening measures and important health promotion messages to Aboriginal and Torres Strait Islander communities within the Metro North catchment.</p>\n<p>The Metro North Better Together Heath Van is a free community services to Aboriginal and/or Torres Strait Islander people living within the Metro North catchment of Brisbane.</p>\n<p>The van acts as an extension of Metro North Hospital and Health Service (MNHHS) to create engagement activities and develop partnerships and relationships with patients, families and community organisations. It provides outreach options that are culturally responsive, safe and connected, and access to opportunistic screening and health promotion.<br /></p>\n<p>In the previous 12 months, Aboriginal and Torres Strait Islander health workers have been driving the van to events and opportunities right across the region; gathering crucial community feedback on how the van can support the health needs of Aboriginal and Torres Strait Islander consumers.</p>\n<p>The brightly-coloured artwork featured on the van is by esteemed Aboriginal artist Elaine Chambers-Hegarty, and the undercover awning allows community members to stop by for a yarn with the Aboriginal and Torres Strait Islander health staff.<br /></p>\n<p>For more information or to request the van to visit your community or event, please contact the Aboriginal and Torres Strait Islander Leadership Team on 07 3139 3235 or email <a href=\"mailto:Bettertogetherhealthvan@health.qld.gov.au\">bettertogetherhealthvan@health.qld.gov.au</a>.</p>\n<p><em>Pictured above: MNHHS Senior Project Officer, William Bern with the PHN team at the North Lakes office. </em><br /></p>',NULL,NULL,NULL),(4394,144680,1,'2021-03-24 05:22:59','2021-03-24 05:22:59','d6d42052-439b-47b0-8fa9-24a9939e9c3f','<p><strong><strong>In early March the PHN team were lucky enough to receive a visit from the \'Better Together\' van, driven by Metro North Hospital and Health Service Senior Project Officer, William Bern.</strong></strong><br /></p>\n<p>As part of the <a href=\"https://metronorth.health.qld.gov.au/wp-content/uploads/2019/07/close-gap-plan.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">Metro North Hospital and Health Service Better Together Aboriginal and Torres Strait Islander Health Plan 2019-2022</a>, the mobile Better Together Health Van provides screening measures and important health promotion messages to Aboriginal and Torres Strait Islander communities within the Metro North catchment.</p>\n<p>The Metro North Better Together Heath Van is a free community services to Aboriginal and/or Torres Strait Islander people living within the Metro North catchment of Brisbane.</p>\n<p>The van acts as an extension of Metro North Hospital and Health Service (MNHHS) to create engagement activities and develop partnerships and relationships with patients, families and community organisations. It provides outreach options that are culturally responsive, safe and connected, and access to opportunistic screening and health promotion.<br /></p>\n<p>In the previous 12 months, Aboriginal and Torres Strait Islander health workers have been driving the van to events and opportunities right across the region; gathering crucial community feedback on how the van can support the health needs of Aboriginal and Torres Strait Islander consumers.</p>\n<p>The brightly-coloured artwork featured on the van is by esteemed Aboriginal artist Elaine Chambers-Hegarty, and the undercover awning allows community members to stop by for a yarn with the Aboriginal and Torres Strait Islander health staff.<br /></p>\n<p>For more information or to request the van to visit your community or event, please contact the Aboriginal and Torres Strait Islander Leadership Team on 07 3139 3235 or email <a href=\"mailto:Bettertogetherhealthvan@health.qld.gov.au\">bettertogetherhealthvan@health.qld.gov.au</a>.</p>\n<p><em>Pictured above: MNHHS Senior Project Officer, William Bern with the PHN team at the North Lakes office. </em><br /></p>',NULL,NULL,NULL),(4395,144682,1,'2021-03-24 05:23:20','2021-03-24 05:23:20','5d0dfb87-b217-4b6e-8358-44464c290d54','<p><strong><strong>In early March the PHN team were lucky enough to receive a visit from the \'Better Together\' van, driven by Metro North Hospital and Health Service Senior Project Officer, William Bern.</strong></strong><br /></p>\n<p>As part of the <a href=\"https://metronorth.health.qld.gov.au/wp-content/uploads/2019/07/close-gap-plan.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">Metro North Hospital and Health Service Better Together Aboriginal and Torres Strait Islander Health Plan 2019-2022</a>, the mobile Better Together Health Van provides screening measures and important health promotion messages to Aboriginal and Torres Strait Islander communities within the Metro North catchment.</p>\n<p>The Metro North Better Together Heath Van is a free community services to Aboriginal and/or Torres Strait Islander people living within the Metro North catchment of Brisbane.</p>\n<p>The van acts as an extension of Metro North Hospital and Health Service (MNHHS) to create engagement activities and develop partnerships and relationships with patients, families and community organisations. It provides outreach options that are culturally responsive, safe and connected, and access to opportunistic screening and health promotion.<br /></p>\n<p>In the previous 12 months, Aboriginal and Torres Strait Islander health workers have been driving the van to events and opportunities right across the region; gathering crucial community feedback on how the van can support the health needs of Aboriginal and Torres Strait Islander consumers.</p>\n<p>The brightly-coloured artwork featured on the van is by esteemed Aboriginal artist Elaine Chambers-Hegarty, and the undercover awning allows community members to stop by for a yarn with the Aboriginal and Torres Strait Islander health staff.<br /></p>\n<p>For more information or to request the van to visit your community or event, please contact the Aboriginal and Torres Strait Islander Leadership Team on 07 3139 3235 or email <a href=\"mailto:Bettertogetherhealthvan@health.qld.gov.au\">bettertogetherhealthvan@health.qld.gov.au</a>.</p>\n<p><em>Pictured above: MNHHS Senior Project Officer, William Bern with the PHN team at the North Lakes office. </em><br /></p>',NULL,NULL,NULL),(4542,144927,1,'2021-03-24 05:59:35','2021-03-24 05:59:35','d986ea4d-8091-423f-bd57-922c9a9a9b66','<p><strong>Rollout of Phase 1B of the COVID-19 vaccination program began on Monday 22 March. Phase 1B includes Australians aged 70 and over, Aboriginal and Torres Strait Islanders aged 55 and over, younger Australians with underlying health conditions and frontline healthcare workers.</strong><br /><br />As part of Phase 1B, more than 1,000 general practices (including about 250 in Queensland) will be joining the COVID-19 vaccination program.</p>\n<p>These clinics have initially been supplied with imported AstraZeneca vaccine. Clinics will progressively increase in number to more than 4,000 by the end of April, along with over 100 Aboriginal Health Services and 130 Commonwealth operated GP-led Respiratory Clinics. This staged scale up aligns with the supply of the locally-produced AstraZeneca vaccine.</p>\n<p>As of Monday 22 March, 281,960 Australians have received a COVID-19 vaccine; 609 aged care and residential disability facilities have taken part in the vaccination program with and 58,358 Commonwealth delivered vaccines have been given to people in aged care and disability care.<br /></p>\n\n<p>Visit the <a href=\"https://covid-vaccine.healthdirect.gov.au/eligibility\" target=\"_blank\" rel=\"noreferrer noopener\">vaccine eligibility checker</a> to see when you can book a COVID-19 vaccination. <br /></p>\n\n<p>Appointments through local general practices will increase as general practices establish their systems and vaccine supply. More appointments will become available as more clinics come on-board.</p>\n<p>Please be patient as practices are experiencing a high volume of calls about the COVID-19 vaccination program. </p>\n<p><strong>For more information contact your Primary Care Liaison Officer on 07 3630 7300 or email the PHN\'s COVID-19 vaccine team at <a href=\"mailto:covid19@brisbanenorthphn.org.au\" target=\"_blank\" rel=\"noreferrer noopener\">covid19@brisbanenorthphn.org.au</a>.</strong></p>\n<p><strong>Visit the <a href=\"http://www.health.gov.au/covid19-vaccines\" target=\"_blank\" rel=\"noreferrer noopener\">Australian Government Department of Health</a>.<br /></strong></p>\n\n\n\n\n',NULL,NULL,NULL),(4543,144934,1,'2021-03-24 05:59:36','2021-03-24 05:59:36','0a832364-f462-4986-b12e-37a9e160d9c8','<p><strong>Rollout of Phase 1B of the COVID-19 vaccination program began on Monday 22 March. Phase 1B includes Australians aged 70 and over, Aboriginal and Torres Strait Islanders aged 55 and over, younger Australians with underlying health conditions and frontline healthcare workers.</strong><br /><br />As part of Phase 1B, more than 1,000 general practices (including about 250 in Queensland) will be joining the COVID-19 vaccination program.</p>\n<p>These clinics have initially been supplied with imported AstraZeneca vaccine. Clinics will progressively increase in number to more than 4,000 by the end of April, along with over 100 Aboriginal Health Services and 130 Commonwealth operated GP-led Respiratory Clinics. This staged scale up aligns with the supply of the locally-produced AstraZeneca vaccine.</p>\n<p>As of Monday 22 March, 281,960 Australians have received a COVID-19 vaccine; 609 aged care and residential disability facilities have taken part in the vaccination program with and 58,358 Commonwealth delivered vaccines have been given to people in aged care and disability care.<br /></p>\n\n<p>Visit the <a href=\"https://covid-vaccine.healthdirect.gov.au/eligibility\" target=\"_blank\" rel=\"noreferrer noopener\">vaccine eligibility checker</a> to see when you can book a COVID-19 vaccination. <br /></p>\n\n<p>Appointments through local general practices will increase as general practices establish their systems and vaccine supply. More appointments will become available as more clinics come on-board.</p>\n<p>Please be patient as practices are experiencing a high volume of calls about the COVID-19 vaccination program. </p>\n<p><strong>For more information contact your Primary Care Liaison Officer on 07 3630 7300 or email the PHN\'s COVID-19 vaccine team at <a href=\"mailto:covid19@brisbanenorthphn.org.au\" target=\"_blank\" rel=\"noreferrer noopener\">covid19@brisbanenorthphn.org.au</a>.</strong></p>\n<p><strong>Visit the <a href=\"http://www.health.gov.au/covid19-vaccines\" target=\"_blank\" rel=\"noreferrer noopener\">Australian Government Department of Health</a>.<br /></strong></p>\n\n\n\n\n',NULL,NULL,NULL),(4544,144941,1,'2021-03-24 05:59:39','2021-03-24 05:59:39','5e361587-bcd8-4766-9f78-82f450e212e2','<p><strong>Rollout of Phase 1B of the COVID-19 vaccination program began on Monday 22 March. Phase 1B includes Australians aged 70 and over, Aboriginal and Torres Strait Islanders aged 55 and over, younger Australians with underlying health conditions and frontline healthcare workers.</strong><br /><br />As part of Phase 1B, more than 1,000 general practices (including about 250 in Queensland) will be joining the COVID-19 vaccination program.</p>\n<p>These clinics have initially been supplied with imported AstraZeneca vaccine. Clinics will progressively increase in number to more than 4,000 by the end of April, along with over 100 Aboriginal Health Services and 130 Commonwealth operated GP-led Respiratory Clinics. This staged scale up aligns with the supply of the locally-produced AstraZeneca vaccine.</p>\n<p>As of Monday 22 March, 281,960 Australians have received a COVID-19 vaccine; 609 aged care and residential disability facilities have taken part in the vaccination program with and 58,358 Commonwealth delivered vaccines have been given to people in aged care and disability care.<br /></p>\n\n<p>Visit the <a href=\"https://covid-vaccine.healthdirect.gov.au/eligibility\" target=\"_blank\" rel=\"noreferrer noopener\">vaccine eligibility checker</a> to see when you can book a COVID-19 vaccination. <br /></p>\n\n<p>Appointments through local general practices will increase as general practices establish their systems and vaccine supply. More appointments will become available as more clinics come on-board.</p>\n<p>Please be patient as practices are experiencing a high volume of calls about the COVID-19 vaccination program. </p>\n<p><strong>For more information contact your Primary Care Liaison Officer on 07 3630 7300 or email the PHN\'s COVID-19 vaccine team at <a href=\"mailto:covid19@brisbanenorthphn.org.au\" target=\"_blank\" rel=\"noreferrer noopener\">covid19@brisbanenorthphn.org.au</a>.</strong></p>\n<p><strong>Visit the <a href=\"http://www.health.gov.au/covid19-vaccines\" target=\"_blank\" rel=\"noreferrer noopener\">Australian Government Department of Health</a>.<br /></strong></p>\n\n\n\n\n',NULL,NULL,NULL),(4545,144948,1,'2021-03-24 06:14:30','2021-03-24 06:14:30','2b309bc5-4f45-4606-811c-4ef5dba9817c','<p><strong><strong><strong>In early March the PHN team received a visit from the \'Better Together\' van, driven to North Lakes by Metro North Hospital and Health Service Senior Project Officer, William Bern.</strong></strong></strong><br /></p>\n<p>As part of the <a href=\"https://metronorth.health.qld.gov.au/wp-content/uploads/2019/07/close-gap-plan.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">Metro North Hospital and Health Service Better Together Aboriginal and Torres Strait Islander Health Plan 2019-2022</a>, the mobile Better Together Health Van provides screening measures and important health promotion messages to Aboriginal and Torres Strait Islander communities within the Metro North catchment.</p>\n<p>The Metro North Better Together Heath Van is a free community services to Aboriginal and/or Torres Strait Islander people living within the Metro North catchment of Brisbane.</p>\n<p>The van acts as an extension of Metro North Hospital and Health Service (MNHHS) to create engagement activities and develop partnerships and relationships with patients, families and community organisations. It provides outreach options that are culturally responsive, safe and connected, and access to opportunistic screening and health promotion.<br /></p>\n<p>In the previous 12 months, Aboriginal and Torres Strait Islander health workers have been driving the van to events and opportunities right across the region; gathering crucial community feedback on how the van can support the health needs of Aboriginal and Torres Strait Islander consumers.</p>\n<p>The brightly-coloured artwork featured on the van is by esteemed Aboriginal artist Elaine Chambers-Hegarty, and the undercover awning allows community members to stop by for a yarn with the Aboriginal and Torres Strait Islander health staff.<br /></p>\n<p>For more information or to request the van to visit your community or event, please contact the Aboriginal and Torres Strait Islander Leadership Team on 07 3139 3235 or email <a href=\"mailto:Bettertogetherhealthvan@health.qld.gov.au\">bettertogetherhealthvan@health.qld.gov.au</a>.</p>\n<p><em>Pictured above: MNHHS Senior Project Officer, William Bern with the PHN team at the North Lakes office. </em><br /></p>',NULL,NULL,NULL),(4555,144962,1,'2021-03-25 01:07:06','2021-03-26 00:11:01','43d80ab6-55a7-4ead-9e16-21fdfb319876','<p dir=\"ltr\">People with complex mental health conditions often benefit from a mix of services and supports. The support they need goes beyond clinical management, and includes psychosocial support and the need to address the social determinants of health. These services and supports should be provided in a way that wraps around the person and delivered in a coordinated and integrated way.</p>\n<p dir=\"ltr\">To ensure people are receiving the right service, in the right place, at the right time, Brisbane North PHN has commenced a project to define what services and supports are available in the North Brisbane and Moreton Bay region. </p>\n<p dir=\"ltr\">Brisbane North PHN is partnering with expert organisations to facilitate the development of evidence-based, locally relevant and jointly agreed care pathways relating to five conditions or areas:</p>\n<ul><li dir=\"ltr\"><p dir=\"ltr\">eating disorders [led by <a href=\"https://eatingdisordersqueensland.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">Eating Disorders Qld</a>]</p></li><li dir=\"ltr\"><p dir=\"ltr\">intellectual disability [led by <a href=\"https://qdn.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">Queenslanders with Disability Network</a>]</p></li><li dir=\"ltr\"><p dir=\"ltr\">personality disorders [led by <a href=\"https://www.neaminational.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">Neami National</a>]</p></li><li dir=\"ltr\"><p dir=\"ltr\">perinatal [led by <a href=\"https://www.pregnancybirthbaby.org.au/partners/peach-tree-perinatal-wellness\" target=\"_blank\" rel=\"noreferrer noopener\">Peach Tree Perinatal Wellness</a>]</p></li><li dir=\"ltr\"><p dir=\"ltr\">suicide prevention [led by Brisbane North PHN].</p></li></ul>\n<p>Each of these organisations will be consulting further with professional experts and people with lived experience to define the local pathways. The project will lead to the development of information products that will aim to benefit people accessing services and service providers undertaking assessments and referrals.<br /></p>\n<p>Brisbane North PHN has engaged <a href=\"https://www.beaconstrategies.net/\" target=\"_blank\" rel=\"noreferrer noopener\">Beacon Strategies</a> to provide backbone support to the process, ensuring collaboration and consistency between each pathway. For more information about the project, please contact the project team via email to <a href=\"mailto:info@beaconstrategies.net\">info@beaconstrategies.net</a>.</p>',NULL,NULL,NULL),(4556,144964,1,'2021-03-25 01:07:06','2021-03-25 01:07:06','1621caed-1e22-4846-b391-d72ffb54c1e7','<p dir=\"ltr\">People with complex mental health conditions often benefit from a mix of services and supports. The support needed goes beyond clinical management, including psychosocial support and in addressing the social determinants of health. These services and supports should be provided in a way that wraps around the person and delivered in a coordinated and integrated way.</p>\n<p dir=\"ltr\">To ensure people are receiving the right service, in the right place, at the right time, Brisbane North PHN has commenced a project to define what services and supports are available in Brisbane North for five initial areas. </p>\n<p dir=\"ltr\">Brisbane North PHN is partnering with expert organisations to facilitate the development of evidence-based, locally relevant and jointly agreed care pathways relating to five conditions or areas:</p>\n<ul><li dir=\"ltr\"><p dir=\"ltr\">Eating Disorders [led by <a href=\"https://eatingdisordersqueensland.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">Eating Disorders Qld</a>]</p></li><li dir=\"ltr\"><p dir=\"ltr\">Intellectual Disability [led by <a href=\"https://qdn.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">Queenslanders with Disability Network</a>]</p></li><li dir=\"ltr\"><p dir=\"ltr\">Personality Disorders [led by <a href=\"https://www.neaminational.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">Neami National</a>]</p></li><li dir=\"ltr\"><p dir=\"ltr\">Perinatal [led by <a href=\"https://www.pregnancybirthbaby.org.au/partners/peach-tree-perinatal-wellness\" target=\"_blank\" rel=\"noreferrer noopener\">Peach Tree Perinatal Wellness</a>]</p></li><li dir=\"ltr\"><p dir=\"ltr\">Suicide prevention [led by Brisbane North PHN].</p></li></ul>\n<p>Each of these organisations will be consulting further with professional experts and people with lived experience to define the local pathways. The project will lead to the development of information products that will aim to benefit people accessing services and service providers undertaking assessments and referrals.<br /></p>\n<p>Brisbane North PHN has engaged <a href=\"https://www.beaconstrategies.net/\" target=\"_blank\" rel=\"noreferrer noopener\">Beacon Strategies</a> to provide backbone support to the process, ensuring collaboration and consistency between each pathway. For more information about the project, please contact the project team via email to <a href=\"mailto:info@beaconstrategies.net\">info@beaconstrategies.net</a>.</p>',NULL,NULL,NULL),(4557,144966,1,'2021-03-25 01:07:09','2021-03-25 01:07:09','1343e82d-a0c8-40c5-81f9-0dde2a11e8bb','<p dir=\"ltr\">People with complex mental health conditions often benefit from a mix of services and supports. The support needed goes beyond clinical management, including psychosocial support and in addressing the social determinants of health. These services and supports should be provided in a way that wraps around the person and delivered in a coordinated and integrated way.</p>\n<p dir=\"ltr\">To ensure people are receiving the right service, in the right place, at the right time, Brisbane North PHN has commenced a project to define what services and supports are available in Brisbane North for five initial areas. </p>\n<p dir=\"ltr\">Brisbane North PHN is partnering with expert organisations to facilitate the development of evidence-based, locally relevant and jointly agreed care pathways relating to five conditions or areas:</p>\n<ul><li dir=\"ltr\"><p dir=\"ltr\">Eating Disorders [led by <a href=\"https://eatingdisordersqueensland.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">Eating Disorders Qld</a>]</p></li><li dir=\"ltr\"><p dir=\"ltr\">Intellectual Disability [led by <a href=\"https://qdn.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">Queenslanders with Disability Network</a>]</p></li><li dir=\"ltr\"><p dir=\"ltr\">Personality Disorders [led by <a href=\"https://www.neaminational.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">Neami National</a>]</p></li><li dir=\"ltr\"><p dir=\"ltr\">Perinatal [led by <a href=\"https://www.pregnancybirthbaby.org.au/partners/peach-tree-perinatal-wellness\" target=\"_blank\" rel=\"noreferrer noopener\">Peach Tree Perinatal Wellness</a>]</p></li><li dir=\"ltr\"><p dir=\"ltr\">Suicide prevention [led by Brisbane North PHN].</p></li></ul>\n<p>Each of these organisations will be consulting further with professional experts and people with lived experience to define the local pathways. The project will lead to the development of information products that will aim to benefit people accessing services and service providers undertaking assessments and referrals.<br /></p>\n<p>Brisbane North PHN has engaged <a href=\"https://www.beaconstrategies.net/\" target=\"_blank\" rel=\"noreferrer noopener\">Beacon Strategies</a> to provide backbone support to the process, ensuring collaboration and consistency between each pathway. For more information about the project, please contact the project team via email to <a href=\"mailto:info@beaconstrategies.net\">info@beaconstrategies.net</a>.</p>',NULL,NULL,NULL),(4558,145045,1,'2021-03-26 00:11:01','2021-03-26 00:11:01','1f030ca2-e56a-45c1-9045-cae62e33ffad','<p dir=\"ltr\">People with complex mental health conditions often benefit from a mix of services and supports. The support they need goes beyond clinical management, and includes psychosocial support and the need to address the social determinants of health. These services and supports should be provided in a way that wraps around the person and delivered in a coordinated and integrated way.</p>\n<p dir=\"ltr\">To ensure people are receiving the right service, in the right place, at the right time, Brisbane North PHN has commenced a project to define what services and supports are available in the North Brisbane and Moreton Bay region. </p>\n<p dir=\"ltr\">Brisbane North PHN is partnering with expert organisations to facilitate the development of evidence-based, locally relevant and jointly agreed care pathways relating to five conditions or areas:</p>\n<ul><li dir=\"ltr\"><p dir=\"ltr\">eating disorders [led by <a href=\"https://eatingdisordersqueensland.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">Eating Disorders Qld</a>]</p></li><li dir=\"ltr\"><p dir=\"ltr\">intellectual disability [led by <a href=\"https://qdn.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">Queenslanders with Disability Network</a>]</p></li><li dir=\"ltr\"><p dir=\"ltr\">personality disorders [led by <a href=\"https://www.neaminational.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">Neami National</a>]</p></li><li dir=\"ltr\"><p dir=\"ltr\">perinatal [led by <a href=\"https://www.pregnancybirthbaby.org.au/partners/peach-tree-perinatal-wellness\" target=\"_blank\" rel=\"noreferrer noopener\">Peach Tree Perinatal Wellness</a>]</p></li><li dir=\"ltr\"><p dir=\"ltr\">suicide prevention [led by Brisbane North PHN].</p></li></ul>\n<p>Each of these organisations will be consulting further with professional experts and people with lived experience to define the local pathways. The project will lead to the development of information products that will aim to benefit people accessing services and service providers undertaking assessments and referrals.<br /></p>\n<p>Brisbane North PHN has engaged <a href=\"https://www.beaconstrategies.net/\" target=\"_blank\" rel=\"noreferrer noopener\">Beacon Strategies</a> to provide backbone support to the process, ensuring collaboration and consistency between each pathway. For more information about the project, please contact the project team via email to <a href=\"mailto:info@beaconstrategies.net\">info@beaconstrategies.net</a>.</p>',NULL,NULL,NULL),(4584,147079,1,'2021-03-30 03:29:27','2021-04-22 00:38:44','8db858dd-41e0-4066-b259-5ddf78a8696c','<p><strong>Brisbane North PHN and Metro North Hospital and Health Service have sponsored the development of a plan to improve mental health, suicide prevention and alcohol and other drug treatment services in the region.</strong></p>The regional plan sets out the challenges facing us and what we can all do over the next few years to improve the quality, coordination and integration of services.<br /><br />As part of the implementation of the plan, five agencies are funded by the PHN to drive actions against the plan relating to ‘Sustaining good mental health’ and ‘Responding to diversity’. These activities—to be completed by 30 June 2021— include a Carers Mental Health and Wellbeing Expo and Mental Health awareness for culturally and linguistically diverse communities.<br /><br />Read more about each of the activities below: <br /><p><strong>1. Carers Mental Health and Wellbeing Expo – Carers Queensland</strong></p>\n<p>Carers Queensland held the annual Mental Health and Wellbeing expo on Wednesday 24 March at Eatons Hill Hotel and Function Centre, with over 28 stall holders and a variety of wonderful speakers participating on the day. Carers Queensland welcomed a variety of attendees including carers, persons with lived experience of mental health, community members and organisational representatives. </p>\n<p>The day was well attended, with the aim of the event to raise awareness of mental health, increase awareness of services while providing networking opportunities to those working within the sector.</p>\n<p><strong>2. Co-designed service model to improve physical health and wellbeing – QAMH and Dr Justin Chapman QIMRB</strong></p>\n<p>The aim of this project is to conduct co-design focus groups with mental health staff and consumers, carers and families in North Brisbane to design a service model to improve the physical and mental health and wellbeing of people with mental health issues. </p>\n<p>To inform the design of a service model, we will facilitate 10 co-design workshops. Workshops will include people accessing mental health services, family and carers, and mental health staff in the North Brisbane region. </p>\n<p>To date we have run seven co-design workshops across the region, with some common themes emerging, which will help to inform the co-designed service mode.</p>\n<p>\n<strong>3. Yellow Tick Initiative – Queensland Council for LGBTI Health</strong></p>\n<p>The Queensland Council for LGBTI Health has been funded by the Brisbane North PHN to implement the new Yellow Tick initiative within the organisation, to support better outcomes and services for intersex people. </p>\n<p>The Yellow Tick is a community led initiative that assists groups to develop intersex inclusive and affirmative practices for programs, clients and staff. Through providing a policy and program review service alongside training and intersex specific resources, the Yellow Tick helps improve consistency and accountability to learn more and make services more intersex inclusive. </p>\n<p><strong>4. Mental Health awareness for culturally and linguistically diverse communities – Ethnic Communities Council of Queensland (ECCQ)</strong></p>\n<p>ECCQ aims to run two key activities to assist culturally and linguistically diverse communities to increase their knowledge and understanding of mental health, alcohol and other drugs, suicide prevention and related services. </p>\n<p>A free online interpreter workshop for community members and leaders will be held in early April to increase knowledge of how to confidently engage and access interpreter services, the importance of qualified interpreters and consumer rights. </p>\n<p>The second activity aims to provide free Mental Health First Aid training for community leaders. This training will help provide community leaders with knowledge, education and skills to support family members, friends and community members.</p>\n<p><strong>5. Volunteer Community Peer Navigators – Council on the Ageing (COTA) Queensland </strong></p>\n<p>Council on the Ageing (COTA) Queensland and Moreton Bay Regional Council are partnering to pilot a volunteer community peer navigator program at the Bribie Island library. The program aims to empower older people and their carers to access relevant services and supports and gain confidence in using technology to maintain their mental and social wellbeing and adapt to changing circumstances. </p>\n<p>Peer navigators are located in the Bribie Island library one day per week (Tuesdays) at a pop-up table and actively engage in one-to-one meaningful conversations with individuals. By listening with empathy to their story, peer navigators identify the specific needs and priorities of older people and their carers, and direct them to the most appropriate services and supports, including healthcare, social, cultural and community services and supports. </p>\n<p>The program was launched at the Bribie Island library on Monday 15 March 2021 and was attended by Division 1 Councillor Brooke Savige. Sessions will commence on Tuesday 13 April 2021 from 10.00 am to 6.00 pm. </p>\n<p><strong>Further information</strong></p>\n<p>For any information on these Planning for Wellbeing project updates, please contact Kathy Faulkner at <strong><a href=\"mailto:Kathy.Faulkner@brisbanenorthphn.org.au\" target=\"_blank\" rel=\"noreferrer noopener\">Kathy.Faulkner@brisbanenorthphn.org.au</a>.</strong></p>',NULL,NULL,NULL),(4585,147080,1,'2021-03-30 03:29:27','2021-03-30 03:29:27','bc5aea51-e9d3-4b15-8b22-1fefde9cd388',NULL,NULL,NULL,NULL),(4586,147082,1,'2021-03-30 03:29:27','2021-03-30 03:29:27','798491ef-e203-481f-8148-4cfce3e7207b','<p><em>Planning for Wellbeing: a Regional Plan for North Brisbane and Moreton Bay focusing on mental health, suicide prevention and alcohol and other drug treatment services 2020-2025 (Planning for Wellbeing)</em> outlines key priorities and objectives to be implemented across North Brisbane. As part of this implementation, five agencies were funded by Brisbane North PHN (the PHN) to drive actions against the plan relating to ‘Sustaining good mental health’ and ‘Responding to diversity’.</p>\n<p>These activities, to be completed by 30 June 2021, are:</p>\n<p><strong>1. Carers Mental Health and Wellbeing Expo – Carers Queensland</strong></p>\n<p>Carers Queensland held the annual Mental Health and Wellbeing expo on Wednesday 24 March at Eatons Hill Hotel and Function Centre, with over 28 stall holders and a variety of wonderful speakers participating on the day. Carers Queensland welcomed a variety of attendees including carers, persons with lived experience of mental health, community members and organisational representatives. </p>\n<p>The day was well attended, with the aim of the event to raise awareness of mental health, increase awareness of services while providing networking opportunities to those working within the sector.</p>\n<p><strong>2. Co-designed service model to improve physical health and wellbeing – QAMH and Dr Justin Chapman QIMRB</strong></p>\n<p>The aim of this project is to conduct co-design focus groups with mental health staff and consumers, carers and families in North Brisbane to design a service model to improve the physical and mental health and wellbeing of people with mental health issues. </p>\n<p>To inform the design of a service model, we will facilitate 10 co-design workshops. Workshops will include people accessing mental health services, family and carers, and mental health staff in the North Brisbane region. </p>\n<p>To date we have run seven co-design workshops across the region, with some common themes emerging, which will help to inform the co-designed service mode.</p>\n<p>\n<strong>3. Yellow Tick Initiative – Queensland Council for LGBTI Health</strong></p>\n<p>The Queensland Council for LGBTI Health has been funded by the Brisbane North PHN to implement the new Yellow Tick initiative within the organisation, to support better outcomes and services for intersex people. </p>\n<p>The Yellow Tick is a community led initiative that assists groups to develop intersex inclusive and affirmative practices for programs, clients and staff. Through providing a policy and program review service alongside training and intersex specific resources, the Yellow Tick helps improve consistency and accountability to learn more and make services more intersex inclusive. </p>\n<p><strong>4. Mental Health awareness for culturally and linguistically diverse communities – Ethnic Communities Council of Queensland (ECCQ)</strong></p>\n<p>ECCQ aims to run two key activities to assist culturally and linguistically diverse communities to increase their knowledge and understanding of mental health, alcohol and other drugs, suicide prevention and related services. </p>\n<p>A free online interpreter workshop for community members and leaders will be held in early April to increase knowledge of how to confidently engage and access interpreter services, the importance of qualified interpreters and consumer rights. </p>\n<p>The second activity aims to provide free Mental Health First Aid training for community leaders. This training will help provide community leaders with knowledge, education and skills to support family members, friends and community members.</p>\n<p><strong>5. Volunteer Community Peer Navigators – Council on the Ageing (COTA) Queensland </strong></p>\n<p>Council on the Ageing (COTA) Queensland and Moreton Bay Regional Council are partnering to pilot a volunteer community peer navigator program at the Bribie Island library. The program aims to empower older people and their carers to access relevant services and supports and gain confidence in using technology to maintain their mental and social wellbeing and adapt to changing circumstances. </p>\n<p>Peer navigators are located in the Bribie Island library one day per week (Tuesdays) at a pop-up table and actively engage in one-to-one meaningful conversations with individuals. By listening with empathy to their story, peer navigators identify the specific needs and priorities of older people and their carers, and direct them to the most appropriate services and supports, including healthcare, social, cultural and community services and supports. </p>\n<p>The program was launched at the Bribie Island library on Monday 15 March 2021 and was attended by Division 1 Councillor Brooke Savige. Sessions will commence on Tuesday 13 April 2021 from 10.00 am to 6.00 pm. </p>\n<p><strong>Further information</strong></p>\n<p>For any information on these Planning for Wellbeing project updates, please contact Kathy Faulkner at <strong><a href=\"mailto:Kathy.Faulkner@brisbanenorthphn.org.au\" target=\"_blank\" rel=\"noreferrer noopener\">Kathy.Faulkner@brisbanenorthphn.org.au</a>.</strong></p>',NULL,NULL,NULL),(4587,147083,1,'2021-03-30 03:29:27','2021-03-30 03:29:27','3da1d267-584e-4f0b-b2a9-c5a8b43a10d6',NULL,NULL,NULL,NULL),(4588,147085,1,'2021-03-30 03:30:46','2021-03-30 03:30:46','557f04e2-8134-4fca-bd21-56acfda32faa','<p><em>Planning for Wellbeing: a Regional Plan for North Brisbane and Moreton Bay focusing on mental health, suicide prevention and alcohol and other drug treatment services 2020-2025 (Planning for Wellbeing)</em> outlines key priorities and objectives to be implemented across North Brisbane. As part of this implementation, five agencies were funded by Brisbane North PHN (the PHN) to drive actions against the plan relating to ‘Sustaining good mental health’ and ‘Responding to diversity’.</p>\n<p>These activities, to be completed by 30 June 2021, are:</p>\n<p><strong>1. Carers Mental Health and Wellbeing Expo – Carers Queensland</strong></p>\n<p>Carers Queensland held the annual Mental Health and Wellbeing expo on Wednesday 24 March at Eatons Hill Hotel and Function Centre, with over 28 stall holders and a variety of wonderful speakers participating on the day. Carers Queensland welcomed a variety of attendees including carers, persons with lived experience of mental health, community members and organisational representatives. </p>\n<p>The day was well attended, with the aim of the event to raise awareness of mental health, increase awareness of services while providing networking opportunities to those working within the sector.</p>\n<p><strong>2. Co-designed service model to improve physical health and wellbeing – QAMH and Dr Justin Chapman QIMRB</strong></p>\n<p>The aim of this project is to conduct co-design focus groups with mental health staff and consumers, carers and families in North Brisbane to design a service model to improve the physical and mental health and wellbeing of people with mental health issues. </p>\n<p>To inform the design of a service model, we will facilitate 10 co-design workshops. Workshops will include people accessing mental health services, family and carers, and mental health staff in the North Brisbane region. </p>\n<p>To date we have run seven co-design workshops across the region, with some common themes emerging, which will help to inform the co-designed service mode.</p>\n<p>\n<strong>3. Yellow Tick Initiative – Queensland Council for LGBTI Health</strong></p>\n<p>The Queensland Council for LGBTI Health has been funded by the Brisbane North PHN to implement the new Yellow Tick initiative within the organisation, to support better outcomes and services for intersex people. </p>\n<p>The Yellow Tick is a community led initiative that assists groups to develop intersex inclusive and affirmative practices for programs, clients and staff. Through providing a policy and program review service alongside training and intersex specific resources, the Yellow Tick helps improve consistency and accountability to learn more and make services more intersex inclusive. </p>\n<p><strong>4. Mental Health awareness for culturally and linguistically diverse communities – Ethnic Communities Council of Queensland (ECCQ)</strong></p>\n<p>ECCQ aims to run two key activities to assist culturally and linguistically diverse communities to increase their knowledge and understanding of mental health, alcohol and other drugs, suicide prevention and related services. </p>\n<p>A free online interpreter workshop for community members and leaders will be held in early April to increase knowledge of how to confidently engage and access interpreter services, the importance of qualified interpreters and consumer rights. </p>\n<p>The second activity aims to provide free Mental Health First Aid training for community leaders. This training will help provide community leaders with knowledge, education and skills to support family members, friends and community members.</p>\n<p><strong>5. Volunteer Community Peer Navigators – Council on the Ageing (COTA) Queensland </strong></p>\n<p>Council on the Ageing (COTA) Queensland and Moreton Bay Regional Council are partnering to pilot a volunteer community peer navigator program at the Bribie Island library. The program aims to empower older people and their carers to access relevant services and supports and gain confidence in using technology to maintain their mental and social wellbeing and adapt to changing circumstances. </p>\n<p>Peer navigators are located in the Bribie Island library one day per week (Tuesdays) at a pop-up table and actively engage in one-to-one meaningful conversations with individuals. By listening with empathy to their story, peer navigators identify the specific needs and priorities of older people and their carers, and direct them to the most appropriate services and supports, including healthcare, social, cultural and community services and supports. </p>\n<p>The program was launched at the Bribie Island library on Monday 15 March 2021 and was attended by Division 1 Councillor Brooke Savige. Sessions will commence on Tuesday 13 April 2021 from 10.00 am to 6.00 pm. </p>\n<p><strong>Further information</strong></p>\n<p>For any information on these Planning for Wellbeing project updates, please contact Kathy Faulkner at <strong><a href=\"mailto:Kathy.Faulkner@brisbanenorthphn.org.au\" target=\"_blank\" rel=\"noreferrer noopener\">Kathy.Faulkner@brisbanenorthphn.org.au</a>.</strong></p>',NULL,NULL,NULL),(4589,147086,1,'2021-03-30 03:30:46','2021-03-30 03:30:46','77a53963-5806-4ee6-b323-6591f4a9b01c',NULL,NULL,NULL,NULL),(4604,149012,1,'2021-04-05 23:45:21','2021-04-05 23:45:21','e068eed0-b12b-4f03-8842-714a79cd5236','<p><strong>Redcliffe Parade Family Medical Practice Manager, Shabnam Ali was an early recipient of the COVID-19 vaccine as the Phase 1b rollout began during the final weeks of March. </strong></p>\n<p>Mrs Ali, who is also the Business Manager of Anchor Medical, had her first COVID-19 vaccination on Monday 22 March. The rest of the Redcliffe Parade Family Medical Practice team, including doctors and administrative staff, received their jab on Friday 26 March.</p>\n<p>Mrs Ali said she was proud that Redcliffe Parade Family Medical Practice could be part of the first week of the phase 1b rollout in the region. </p>\n<p>“I was very happy to be the first in the team to get it. It was quite exciting. My nurses were great and my doctor was great—they put me at ease,” she said. </p>\n<p>With the phase 1b rollout still in its early days, Redcliffe Parade Family Medical Practice are fully booked for the next four weeks and Ms Ali said the practice had been extremely busy. </p>\n<p>“We’re getting calls mainly about COVID vaccination, and patients other than our own are calling and trying to find out the process and when they can book in. </p>\n<p>“We‘re asking patients stick to their own GPs if that practice is giving vaccinations—just for continuity of care. If their GPs aren’t offering COVID vaccinations we are able to accommodate them though,” Mrs Ali said. </p>\n<p>The upside of being one of the earliest practices in the region to be rolling out phase 1b means that the process is only going to get smoother as time goes on. </p>\n<p>Mrs Ali said Redcliffe Parade Family Medical Practice were trialling two styles of COVID vaccination clinic—a lunchtime clinic and an after-hours clinic. </p>\n<p>“Over the next few weeks, we’ll have a better understanding of what will work best in terms of workflow,” she said.</p>\n<p>With Anchor Medical in operation of six medical centres in North Brisbane, including Eaton Central 7Day Family Practice and McDowall Village Medical Practice, Ms Ali said the wider team of practices would be able to adapt based on the experiences of Redcliffe Parade Family Medical Practice.</p>\n<p>“All of the practices will be involved (in the vaccine rollout) and these early vaccinations are a great learning opportunity on how to roll out for the rest of the team,” Mrs Ali said. </p>\n<p>As of 6 April 2021, over 841,885 Australians have received a COVID vaccine. </p>\n<p>Visit the PHN website to <a href=\"https://brisbanenorthphn.org.au/covid-19/vaccine-rollout-faqs\">read our FAQs</a> exploring the Phase 1b rollout for both participating and non-participating practices, or to find out more about how to book an appointment to be vaccinated, visit the <a href=\"https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout\">Queensland Health website</a>. </p>\n<p>For more information on Anchor Medical visit <a href=\"https://amed.com.au\">amed.com.au</a>. </p>',NULL,NULL,NULL),(4607,149018,1,'2021-04-05 23:47:57','2021-04-05 23:47:57','8bb43475-0a50-487e-8402-52aadc61d51a','<p><strong>Redcliffe Parade Family Medical Practice Manager, Shabnam Ali was an early recipient of the COVID-19 vaccine as the Phase 1b rollout began during the final weeks of March. </strong></p>\n<p>Mrs Ali, who is also the Business Manager of Anchor Medical, had her first COVID-19 vaccination on Monday 22 March. The rest of the Redcliffe Parade Family Medical Practice team, including doctors and administrative staff, received their jab on Friday 26 March.</p>\n<p>Mrs Ali said she was proud that Redcliffe Parade Family Medical Practice could be part of the first week of the phase 1b rollout in the region. </p>\n<p>“I was very happy to be the first in the team to get it. It was quite exciting. My nurses were great and my doctor was great—they put me at ease,” she said. </p>\n<p>With the phase 1b rollout still in its early days, Redcliffe Parade Family Medical Practice are fully booked for the next four weeks and Ms Ali said the practice had been extremely busy. </p>\n<p>“We’re getting calls mainly about COVID vaccination, and patients other than our own are calling and trying to find out the process and when they can book in. </p>\n<p>“We‘re asking patients stick to their own GPs if that practice is giving vaccinations—just for continuity of care. If their GPs aren’t offering COVID vaccinations we are able to accommodate them though,” Mrs Ali said. </p>\n<p>The upside of being one of the earliest practices in the region to be rolling out phase 1b means that the process is only going to get smoother as time goes on. </p>\n<p>Mrs Ali said Redcliffe Parade Family Medical Practice were trialling two styles of COVID vaccination clinic—a lunchtime clinic and an after-hours clinic. </p>\n<p>“Over the next few weeks, we’ll have a better understanding of what will work best in terms of workflow,” she said.</p>\n<p>With Anchor Medical in operation of six medical centres in North Brisbane, including Eaton Central 7Day Family Practice and McDowall Village Medical Practice, Ms Ali said the wider team of practices would be able to adapt based on the experiences of Redcliffe Parade Family Medical Practice.</p>\n<p>“All of the practices will be involved (in the vaccine rollout) and these early vaccinations are a great learning opportunity on how to roll out for the rest of the team,” Mrs Ali said. </p>\n<p>As of 6 April 2021, over 841,885 Australians have received a COVID vaccine. </p>\n<p>Visit the PHN website to <a href=\"https://brisbanenorthphn.org.au/covid-19/vaccine-rollout-faqs\">read our FAQs</a> exploring the Phase 1b rollout for both participating and non-participating practices, or to find out more about how to book an appointment to be vaccinated, visit the <a href=\"https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout\">Queensland Health website</a>. </p>\n<p>For more information on Anchor Medical visit <a href=\"https://amed.com.au\">amed.com.au</a>. </p>\n<p><em>Dr Haroon Suleman, Shabnam Ali and Nurse Lisa Kehl the team behind the first covid vaccination clinic at Redcliffe parade family medical practice.</em></p>',NULL,NULL,NULL),(4608,149020,1,'2021-04-05 23:48:04','2021-04-05 23:48:04','11d38275-6bdf-49ce-830f-7412af41f991','<p><strong>Redcliffe Parade Family Medical Practice Manager, Shabnam Ali was an early recipient of the COVID-19 vaccine as the Phase 1b rollout began during the final weeks of March. </strong></p>\n<p>Mrs Ali, who is also the Business Manager of Anchor Medical, had her first COVID-19 vaccination on Monday 22 March. The rest of the Redcliffe Parade Family Medical Practice team, including doctors and administrative staff, received their jab on Friday 26 March.</p>\n<p>Mrs Ali said she was proud that Redcliffe Parade Family Medical Practice could be part of the first week of the phase 1b rollout in the region. </p>\n<p>“I was very happy to be the first in the team to get it. It was quite exciting. My nurses were great and my doctor was great—they put me at ease,” she said. </p>\n<p>With the phase 1b rollout still in its early days, Redcliffe Parade Family Medical Practice are fully booked for the next four weeks and Ms Ali said the practice had been extremely busy. </p>\n<p>“We’re getting calls mainly about COVID vaccination, and patients other than our own are calling and trying to find out the process and when they can book in. </p>\n<p>“We‘re asking patients stick to their own GPs if that practice is giving vaccinations—just for continuity of care. If their GPs aren’t offering COVID vaccinations we are able to accommodate them though,” Mrs Ali said. </p>\n<p>The upside of being one of the earliest practices in the region to be rolling out phase 1b means that the process is only going to get smoother as time goes on. </p>\n<p>Mrs Ali said Redcliffe Parade Family Medical Practice were trialling two styles of COVID vaccination clinic—a lunchtime clinic and an after-hours clinic. </p>\n<p>“Over the next few weeks, we’ll have a better understanding of what will work best in terms of workflow,” she said.</p>\n<p>With Anchor Medical in operation of six medical centres in North Brisbane, including Eaton Central 7Day Family Practice and McDowall Village Medical Practice, Ms Ali said the wider team of practices would be able to adapt based on the experiences of Redcliffe Parade Family Medical Practice.</p>\n<p>“All of the practices will be involved (in the vaccine rollout) and these early vaccinations are a great learning opportunity on how to roll out for the rest of the team,” Mrs Ali said. </p>\n<p>As of 6 April 2021, over 841,885 Australians have received a COVID vaccine. </p>\n<p>Visit the PHN website to <a href=\"https://brisbanenorthphn.org.au/covid-19/vaccine-rollout-faqs\">read our FAQs</a> exploring the Phase 1b rollout for both participating and non-participating practices, or to find out more about how to book an appointment to be vaccinated, visit the <a href=\"https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout\">Queensland Health website</a>. </p>\n<p>For more information on Anchor Medical visit <a href=\"https://amed.com.au\">amed.com.au</a>. </p>\n<p><em>Dr Haroon Suleman, Shabnam Ali and Nurse Lisa Kehl the team behind the first covid vaccination clinic at Redcliffe parade family medical practice.</em></p>',NULL,NULL,NULL),(4609,149022,1,'2021-04-06 00:11:15','2021-04-06 00:11:15','7e83b8ff-4680-43f8-8023-3e4d0cbaf36a','<p><strong>Redcliffe Parade Family Medical Practice Manager, Shabnam Ali was an early recipient of the COVID-19 vaccine as the Phase 1b rollout began during the final weeks of March. </strong></p>\n<p>Mrs Ali, who is also the Business Manager of Anchor Medical, had her first COVID-19 vaccination on Monday 22 March. The rest of the Redcliffe Parade Family Medical Practice team, including doctors and administrative staff, received their jab on Friday 26 March.</p>\n<p>Mrs Ali said she was proud that Redcliffe Parade Family Medical Practice could be part of the first week of the phase 1b rollout in the region. </p>\n<p>“I was very happy to be the first in the team to get it. It was quite exciting. My nurses were great and my doctor was great—they put me at ease,” she said. </p>\n<p>With the phase 1b rollout still in its early days, Redcliffe Parade Family Medical Practice are fully booked for the next four weeks and Ms Ali said the practice had been extremely busy. </p>\n<p>“We’re getting calls mainly about COVID vaccination, and patients other than our own are calling and trying to find out the process and when they can book in. </p>\n<p>“We‘re asking patients stick to their own GPs if that practice is giving vaccinations—just for continuity of care. If their GPs aren’t offering COVID vaccinations we are able to accommodate them though,” Mrs Ali said. </p>\n<p>The upside of being one of the earliest practices in the region to be rolling out phase 1b means that the process is only going to get smoother as time goes on. </p>\n<p>Mrs Ali said Redcliffe Parade Family Medical Practice were trialling two styles of COVID vaccination clinic—a lunchtime clinic and an after-hours clinic. </p>\n<p>“Over the next few weeks, we’ll have a better understanding of what will work best in terms of workflow,” she said.</p>\n<p>With Anchor Medical in operation of six medical centres in North Brisbane, including Eaton Central 7Day Family Practice and McDowall Village Medical Practice, Ms Ali said the wider team of practices would be able to adapt based on the experiences of Redcliffe Parade Family Medical Practice.</p>\n<p>“All of the practices will be involved (in the vaccine rollout) and these early vaccinations are a great learning opportunity on how to roll out for the rest of the team,” Mrs Ali said. </p>\n<p>As of 6 April 2021, over 841,885 Australians have received a COVID vaccine. </p>\n<p>Visit the PHN website to <a href=\"https://brisbanenorthphn.org.au/covid-19/vaccine-rollout-faqs\">read our FAQs</a> exploring the Phase 1b rollout for both participating and non-participating practices, or to find out more about how to book an appointment to be vaccinated, visit the <a href=\"https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout\">Queensland Health website</a>. </p>\n<p>For more information on Anchor Medical visit <a href=\"https://amed.com.au\">amed.com.au</a>. </p>\n<p><em>Dr Haroon Suleman, Shabnam Ali and Nurse Lisa Kehl the team behind the first covid vaccination clinic at Redcliffe parade family medical practice.</em></p>',NULL,NULL,NULL),(4610,149024,1,'2021-04-06 00:12:17','2021-04-06 00:12:17','132a6728-2454-433e-b2f8-34703d45cd81','<p><strong>Redcliffe Parade Family Medical Practice Manager, Shabnam Ali was an early recipient of the COVID-19 vaccine as the Phase 1b rollout began during the final weeks of March. </strong></p>\n<p>Mrs Ali, who is also the Business Manager of Anchor Medical, had her first COVID-19 vaccination on Monday 22 March. The rest of the Redcliffe Parade Family Medical Practice team, including doctors and administrative staff, received their jab on Friday 26 March.</p>\n<p>Mrs Ali said she was proud that Redcliffe Parade Family Medical Practice could be part of the first week of the phase 1b rollout in the region. </p>\n<p>“I was very happy to be the first in the team to get it. It was quite exciting. My nurses were great and my doctor was great—they put me at ease,” she said. </p>\n<p>With the phase 1b rollout still in its early days, Redcliffe Parade Family Medical Practice are fully booked for the next four weeks and Ms Ali said the practice had been extremely busy. </p>\n<p>“We’re getting calls mainly about COVID vaccination, and patients other than our own are calling and trying to find out the process and when they can book in. </p>\n<p>“We‘re asking patients stick to their own GPs if that practice is giving vaccinations—just for continuity of care. If their GPs aren’t offering COVID vaccinations we are able to accommodate them though,” Mrs Ali said. </p>\n<p>The upside of being one of the earliest practices in the region to be rolling out phase 1b means that the process is only going to get smoother as time goes on. </p>\n<p>Mrs Ali said Redcliffe Parade Family Medical Practice were trialling two styles of COVID vaccination clinic—a lunchtime clinic and an after-hours clinic. </p>\n<p>“Over the next few weeks, we’ll have a better understanding of what will work best in terms of workflow,” she said.</p>\n<p>With Anchor Medical in operation of six medical centres in North Brisbane, including Eaton Central 7Day Family Practice and McDowall Village Medical Practice, Ms Ali said the wider team of practices would be able to adapt based on the experiences of Redcliffe Parade Family Medical Practice.</p>\n<p>“All of the practices will be involved (in the vaccine rollout) and these early vaccinations are a great learning opportunity on how to roll out for the rest of the team,” Mrs Ali said. </p>\n<p>As of 6 April 2021, over 841,885 Australians have received a COVID vaccine. </p>\n<p>Visit the PHN website to <a href=\"https://brisbanenorthphn.org.au/covid-19/vaccine-rollout-faqs\">read our FAQs</a> exploring the Phase 1b rollout for both participating and non-participating practices, or to find out more about how to book an appointment to be vaccinated, visit the <a href=\"https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout\">Queensland Health website</a>. </p>\n<p>For more information on Anchor Medical visit <a href=\"https://amed.com.au\">amed.com.au</a>. </p>\n<p><em>Dr Haroon Suleman, Shabnam Ali and Nurse Lisa Kehl the team behind the first covid vaccination clinic at Redcliffe parade family medical practice.</em></p>',NULL,NULL,NULL),(4633,149248,1,'2021-04-06 02:49:56','2021-04-06 02:49:56','45b523af-1509-4187-88c0-321ff3cb1253','<p><strong>On behalf of the Australian Government Department of Health, please find below statements published regarding a specific clotting condition being reported after COVID-19 vaccination:</strong></p>\n<h4>Acting Chief Medical Officer and Head of the TGA</h4>\n<p><a href=\"https://health.gov.au/news/joint-statement-on-astrazeneca-covid-19-vaccine\" target=\"_blank\" rel=\"noreferrer noopener\">Joint statement</a> from acting Australian Government Chief Medical Officer, Professor Michael Kidd and Head of the Therapeutic Goods Administration Adj. Professor John Skerritt.<br /> </p>\n<h4>ATAGI statement for health providers</h4>\n<p>The Australian Technical Advisory Group on Immunisation (ATAGI) <a href=\"https://www.health.gov.au/news/atagi-statement-healthcare-providers-specific-clotting-condition-reported-after-covid-19-vaccination\">released a statement</a> to support health professionals in responding to any instances of clotting disorders following vaccine administration. This provides more information on clinical management and raises awareness of the potential for this condition.</p><h4>Summary of current recommendations</h4>\n<ul><li>Rare cases of thrombosis associated with thrombocytopenia were reported following administration of COVID-19 Vaccine AstraZeneca overseas.</li><li>The onset of reported cases was between 4 to 20 days after vaccination.</li><li>Providers should be aware of warning signs of a severe condition associated with thrombosis and thrombocytopenia. This has presented as either central venous sinus thrombosis (CVST) or thrombosis in other sites, such as intra-abdominal venous systems. CVST may present as a new onset persistent headache not settling with analgesia, features of raised intracranial pressure (including acute severe headache, vomiting, confusion), focal neurological deficits, and/or seizures.</li><li>If CVST or another severe thrombotic complication with thrombocytopenia is suspected in a patient who has received COVID-19 Vaccine AstraZeneca, refer them to an emergency department for further assessment and haematology consultation.</li><li>Clinical investigations should include a full blood count (to look for thrombocytopenia), a D-dimer test and radiological imaging.</li><li>Patients suspected to have this condition should NOT receive any heparin or platelet transfusions.</li><li>The TGA has received one report of a case of thrombosis and thrombocytopenia following COVID-19 Vaccine AstraZeneca in Australia. The clinical details of this case are currently under review by the TGA.</li></ul>\n<h4>ATAGI statement for consumers</h4>\n<p><a href=\"https://www.health.gov.au/news/atagi-statement-consumers-specific-clotting-condition-after-covid-19-vaccination\" target=\"_blank\" rel=\"noreferrer noopener\">A statement</a> from ATAGI for consumers on a specific clotting condition being reported after COVID-19 vaccination.<br /> </p>\n<h4>Additional statement from ATAGI statement</h4>\n<p>An <a href=\"https://www.health.gov.au/news/atagi-statement-covid-19-vaccination-reported-case-of-thrombosis\" target=\"_blank\" rel=\"noreferrer noopener\">ATAGI statement</a> on COVID-19 vaccination and a reported case of thrombosis.<br /> </p>\n<h4>TGA statement</h4>\n<p>The <a href=\"https://www.tga.gov.au/media-release/specific-clotting-condition-reported-after-covid-19-vaccination\" target=\"_blank\" rel=\"noreferrer noopener\">TGA\'s assessment</a> is that the benefits of vaccination against COVID-19 continue to outweigh any risks. <br /> </p>\n<h4>Useful documents</h4>\n<p><strong>The Australian Government Department of Health revised the four documents below on 4 April 2021, with updates from ATAGI regarding a specific clotting condition:</strong></p>\n<ul><li><a href=\"https://www.health.gov.au/resources/publications/covid-19-vaccination-atagi-immunisation-provider-guide-to-obtaining-informed-consent-for-covid-19-vaccine\" target=\"_blank\" rel=\"noreferrer noopener\">Provider guide for obtaining informed consent</a></li><li><a href=\"https://www.health.gov.au/resources/publications/covid-19-vaccination-consent-form-for-covid-19-vaccination\" target=\"_blank\" rel=\"noreferrer noopener\">Consent form for COVID-19 vaccination</a></li><li><a href=\"https://www.health.gov.au/resources/publications/covid-19-vaccination-information-on-covid-19-astrazeneca-vaccine\" target=\"_blank\" rel=\"noreferrer noopener\">Consumer information on the AstraZeneca vaccine</a></li><li><a href=\"https://www.health.gov.au/resources/publications/covid-19-vaccination-after-your-astrazeneca-vaccine\" target=\"_blank\" rel=\"noreferrer noopener\">Information for after your AstraZeneca vaccine</a></li></ul>',NULL,NULL,NULL),(4634,149250,1,'2021-04-06 02:50:00','2021-04-06 02:50:00','a0f86d31-291e-418e-acfc-190ab7007bd4','<p><strong>On behalf of the Australian Government Department of Health, please find below statements published regarding a specific clotting condition being reported after COVID-19 vaccination:</strong></p>\n<h4>Acting Chief Medical Officer and Head of the TGA</h4>\n<p><a href=\"https://health.gov.au/news/joint-statement-on-astrazeneca-covid-19-vaccine\" target=\"_blank\" rel=\"noreferrer noopener\">Joint statement</a> from acting Australian Government Chief Medical Officer, Professor Michael Kidd and Head of the Therapeutic Goods Administration Adj. Professor John Skerritt.<br /> </p>\n<h4>ATAGI statement for health providers</h4>\n<p>The Australian Technical Advisory Group on Immunisation (ATAGI) <a href=\"https://www.health.gov.au/news/atagi-statement-healthcare-providers-specific-clotting-condition-reported-after-covid-19-vaccination\">released a statement</a> to support health professionals in responding to any instances of clotting disorders following vaccine administration. This provides more information on clinical management and raises awareness of the potential for this condition.</p><h4>Summary of current recommendations</h4>\n<ul><li>Rare cases of thrombosis associated with thrombocytopenia were reported following administration of COVID-19 Vaccine AstraZeneca overseas.</li><li>The onset of reported cases was between 4 to 20 days after vaccination.</li><li>Providers should be aware of warning signs of a severe condition associated with thrombosis and thrombocytopenia. This has presented as either central venous sinus thrombosis (CVST) or thrombosis in other sites, such as intra-abdominal venous systems. CVST may present as a new onset persistent headache not settling with analgesia, features of raised intracranial pressure (including acute severe headache, vomiting, confusion), focal neurological deficits, and/or seizures.</li><li>If CVST or another severe thrombotic complication with thrombocytopenia is suspected in a patient who has received COVID-19 Vaccine AstraZeneca, refer them to an emergency department for further assessment and haematology consultation.</li><li>Clinical investigations should include a full blood count (to look for thrombocytopenia), a D-dimer test and radiological imaging.</li><li>Patients suspected to have this condition should NOT receive any heparin or platelet transfusions.</li><li>The TGA has received one report of a case of thrombosis and thrombocytopenia following COVID-19 Vaccine AstraZeneca in Australia. The clinical details of this case are currently under review by the TGA.</li></ul>\n<h4>ATAGI statement for consumers</h4>\n<p><a href=\"https://www.health.gov.au/news/atagi-statement-consumers-specific-clotting-condition-after-covid-19-vaccination\" target=\"_blank\" rel=\"noreferrer noopener\">A statement</a> from ATAGI for consumers on a specific clotting condition being reported after COVID-19 vaccination.<br /> </p>\n<h4>Additional statement from ATAGI statement</h4>\n<p>An <a href=\"https://www.health.gov.au/news/atagi-statement-covid-19-vaccination-reported-case-of-thrombosis\" target=\"_blank\" rel=\"noreferrer noopener\">ATAGI statement</a> on COVID-19 vaccination and a reported case of thrombosis.<br /> </p>\n<h4>TGA statement</h4>\n<p>The <a href=\"https://www.tga.gov.au/media-release/specific-clotting-condition-reported-after-covid-19-vaccination\" target=\"_blank\" rel=\"noreferrer noopener\">TGA\'s assessment</a> is that the benefits of vaccination against COVID-19 continue to outweigh any risks. <br /> </p>\n<h4>Useful documents</h4>\n<p><strong>The Australian Government Department of Health revised the four documents below on 4 April 2021, with updates from ATAGI regarding a specific clotting condition:</strong></p>\n<ul><li><a href=\"https://www.health.gov.au/resources/publications/covid-19-vaccination-atagi-immunisation-provider-guide-to-obtaining-informed-consent-for-covid-19-vaccine\" target=\"_blank\" rel=\"noreferrer noopener\">Provider guide for obtaining informed consent</a></li><li><a href=\"https://www.health.gov.au/resources/publications/covid-19-vaccination-consent-form-for-covid-19-vaccination\" target=\"_blank\" rel=\"noreferrer noopener\">Consent form for COVID-19 vaccination</a></li><li><a href=\"https://www.health.gov.au/resources/publications/covid-19-vaccination-information-on-covid-19-astrazeneca-vaccine\" target=\"_blank\" rel=\"noreferrer noopener\">Consumer information on the AstraZeneca vaccine</a></li><li><a href=\"https://www.health.gov.au/resources/publications/covid-19-vaccination-after-your-astrazeneca-vaccine\" target=\"_blank\" rel=\"noreferrer noopener\">Information for after your AstraZeneca vaccine</a></li></ul>',NULL,NULL,NULL),(4635,149307,1,'2021-04-06 04:28:10','2021-04-06 04:28:10','764859f0-33e8-48e5-99ca-57433c3e8a65','<p><strong>Redcliffe Parade Family Medical Practice Manager, Shabnam Ali was an early recipient of the COVID-19 vaccine as the Phase 1b rollout began during the final weeks of March. </strong></p>\n<p>Mrs Ali, who is also the Business Manager of Anchor Medical, had her first COVID-19 vaccination on Monday 22 March. The rest of the Redcliffe Parade Family Medical Practice team, including doctors and administrative staff, received their jab on Friday 26 March.</p>\n<p>Mrs Ali said she was proud that Redcliffe Parade Family Medical Practice could be part of the first week of the phase 1b rollout in the region. </p>\n<p>“I was very happy to be the first in the team to get it. It was quite exciting. My nurses were great and my doctor was great—they put me at ease,” she said. </p>\n<p>With the phase 1b rollout still in its early days, Redcliffe Parade Family Medical Practice are fully booked for the next four weeks and Ms Ali said the practice had been extremely busy. </p>\n<p>“We’re getting calls mainly about COVID vaccination, and patients other than our own are calling and trying to find out the process and when they can book in. </p>\n<p>“We‘re asking patients stick to their own GPs if that practice is giving vaccinations—just for continuity of care. If their GPs aren’t offering COVID vaccinations we are able to accommodate them though,” Mrs Ali said. </p>\n<p>The upside of being one of the earliest practices in the region to be rolling out phase 1b means that the process is only going to get smoother as time goes on. </p>\n<p>Mrs Ali said Redcliffe Parade Family Medical Practice were trialling two styles of COVID vaccination clinic—a lunchtime clinic and an after-hours clinic. </p>\n<p>“Over the next few weeks, we’ll have a better understanding of what will work best in terms of workflow,” she said.</p>\n<p>With Anchor Medical in operation of six medical centres in North Brisbane, including Eaton Central 7Day Family Practice and McDowall Village Medical Practice, Ms Ali said the wider team of practices would be able to adapt based on the experiences of Redcliffe Parade Family Medical Practice.</p>\n<p>“All of the practices will be involved (in the vaccine rollout) and these early vaccinations are a great learning opportunity on how to roll out for the rest of the team,” Mrs Ali said. </p>\n<p>As of 6 April 2021, over 841,885 Australians have received a COVID vaccine. </p>\n<p>Visit the PHN website to <a href=\"https://brisbanenorthphn.org.au/covid-19/vaccine-rollout-faqs\">read our FAQs</a> exploring the Phase 1b rollout for both participating and non-participating practices, or to find out more about how to book an appointment to be vaccinated, visit the <a href=\"https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout\">Queensland Health website</a>. </p>\n<p>For more information on Anchor Medical visit <a href=\"https://amed.com.au\">amed.com.au</a>. </p>\n<p><em>Dr Haroon Suleman, Shabnam Ali and Nurse Lisa Kehl the team behind the first covid vaccination clinic at Redcliffe parade family medical practice.</em></p>',NULL,NULL,NULL),(4637,149311,1,'2021-04-06 04:29:37','2021-04-06 04:29:37','303e8b67-75e4-4f79-87ba-9d996edf8bc1','<p><strong>Redcliffe Parade Family Medical Practice Manager, Shabnam Ali was an early recipient of the COVID-19 vaccine as the Phase 1b rollout began during the final weeks of March. </strong></p>\n<p>Mrs Ali, who is also the Business Manager of Anchor Medical, had her first COVID-19 vaccination on Monday 22 March. The rest of the Redcliffe Parade Family Medical Practice team, including doctors and administrative staff, received their jab on Friday 26 March.</p>\n<p>Mrs Ali said she was proud that Redcliffe Parade Family Medical Practice could be part of the first week of the phase 1b rollout in the region. </p>\n<p>“I was very happy to be the first in the team to get it. It was quite exciting. My nurses were great and my doctor was great—they put me at ease,” she said. </p>\n<p>With the phase 1b rollout still in its early days, Redcliffe Parade Family Medical Practice are fully booked for the next four weeks and Ms Ali said the practice had been extremely busy. </p>\n<p>“We’re getting calls mainly about COVID vaccination, and patients other than our own are calling and trying to find out the process and when they can book in. </p>\n<p>“We‘re asking patients stick to their own GPs if that practice is giving vaccinations—just for continuity of care. If their GPs aren’t offering COVID vaccinations we are able to accommodate them though,” Mrs Ali said. </p>\n<p>The upside of being one of the earliest practices in the region to be rolling out phase 1b means that the process is only going to get smoother as time goes on. </p>\n<p>Mrs Ali said Redcliffe Parade Family Medical Practice were trialling two styles of COVID vaccination clinic—a lunchtime clinic and an after-hours clinic. </p>\n<p>“Over the next few weeks, we’ll have a better understanding of what will work best in terms of workflow,” she said.</p>\n<p>With Anchor Medical in operation of six medical centres in North Brisbane, including Eaton Central 7Day Family Practice and McDowall Village Medical Practice, Ms Ali said the wider team of practices would be able to adapt based on the experiences of Redcliffe Parade Family Medical Practice.</p>\n<p>“All of the practices will be involved (in the vaccine rollout) and these early vaccinations are a great learning opportunity on how to roll out for the rest of the team,” Mrs Ali said. </p>\n<p>As of 6 April 2021, over 841,885 Australians have received a COVID vaccine. </p>\n<p>Visit the PHN website to <a href=\"https://brisbanenorthphn.org.au/covid-19/vaccine-rollout-faqs\">read our FAQs</a> exploring the Phase 1b rollout for both participating and non-participating practices, or to find out more about how to book an appointment to be vaccinated, visit the <a href=\"https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout\">Queensland Health website</a>. </p>\n<p>For more information on Anchor Medical visit <a href=\"https://amed.com.au\">amed.com.au</a>. </p>\n<p><em>Dr Haroon Suleman, Shabnam Ali and Nurse Lisa Kehl the team behind the first covid vaccination clinic at Redcliffe parade family medical practice.</em></p>',NULL,NULL,NULL),(4638,149313,1,'2021-04-06 04:29:37','2021-04-06 04:29:37','a5c7c7f2-db69-4ddd-96cf-e193586d6e88','<p><strong>Redcliffe Parade Family Medical Practice Manager, Shabnam Ali was an early recipient of the COVID-19 vaccine as the Phase 1b rollout began during the final weeks of March. </strong></p>\n<p>Mrs Ali, who is also the Business Manager of Anchor Medical, had her first COVID-19 vaccination on Monday 22 March. The rest of the Redcliffe Parade Family Medical Practice team, including doctors and administrative staff, received their jab on Friday 26 March.</p>\n<p>Mrs Ali said she was proud that Redcliffe Parade Family Medical Practice could be part of the first week of the phase 1b rollout in the region. </p>\n<p>“I was very happy to be the first in the team to get it. It was quite exciting. My nurses were great and my doctor was great—they put me at ease,” she said. </p>\n<p>With the phase 1b rollout still in its early days, Redcliffe Parade Family Medical Practice are fully booked for the next four weeks and Ms Ali said the practice had been extremely busy. </p>\n<p>“We’re getting calls mainly about COVID vaccination, and patients other than our own are calling and trying to find out the process and when they can book in. </p>\n<p>“We‘re asking patients stick to their own GPs if that practice is giving vaccinations—just for continuity of care. If their GPs aren’t offering COVID vaccinations we are able to accommodate them though,” Mrs Ali said. </p>\n<p>The upside of being one of the earliest practices in the region to be rolling out phase 1b means that the process is only going to get smoother as time goes on. </p>\n<p>Mrs Ali said Redcliffe Parade Family Medical Practice were trialling two styles of COVID vaccination clinic—a lunchtime clinic and an after-hours clinic. </p>\n<p>“Over the next few weeks, we’ll have a better understanding of what will work best in terms of workflow,” she said.</p>\n<p>With Anchor Medical in operation of six medical centres in North Brisbane, including Eaton Central 7Day Family Practice and McDowall Village Medical Practice, Ms Ali said the wider team of practices would be able to adapt based on the experiences of Redcliffe Parade Family Medical Practice.</p>\n<p>“All of the practices will be involved (in the vaccine rollout) and these early vaccinations are a great learning opportunity on how to roll out for the rest of the team,” Mrs Ali said. </p>\n<p>As of 6 April 2021, over 841,885 Australians have received a COVID vaccine. </p>\n<p>Visit the PHN website to <a href=\"https://brisbanenorthphn.org.au/covid-19/vaccine-rollout-faqs\">read our FAQs</a> exploring the Phase 1b rollout for both participating and non-participating practices, or to find out more about how to book an appointment to be vaccinated, visit the <a href=\"https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout\">Queensland Health website</a>. </p>\n<p>For more information on Anchor Medical visit <a href=\"https://amed.com.au\">amed.com.au</a>. </p>\n<p><em>Dr Haroon Suleman, Shabnam Ali and Nurse Lisa Kehl the team behind the first covid vaccination clinic at Redcliffe parade family medical practice.</em></p>',NULL,NULL,NULL),(4639,149315,1,'2021-04-06 04:29:39','2021-04-06 04:29:39','c64d6c24-3455-4ccb-894a-bbe04ee6dc02','<p><strong>Redcliffe Parade Family Medical Practice Manager, Shabnam Ali was an early recipient of the COVID-19 vaccine as the Phase 1b rollout began during the final weeks of March. </strong></p>\n<p>Mrs Ali, who is also the Business Manager of Anchor Medical, had her first COVID-19 vaccination on Monday 22 March. The rest of the Redcliffe Parade Family Medical Practice team, including doctors and administrative staff, received their jab on Friday 26 March.</p>\n<p>Mrs Ali said she was proud that Redcliffe Parade Family Medical Practice could be part of the first week of the phase 1b rollout in the region. </p>\n<p>“I was very happy to be the first in the team to get it. It was quite exciting. My nurses were great and my doctor was great—they put me at ease,” she said. </p>\n<p>With the phase 1b rollout still in its early days, Redcliffe Parade Family Medical Practice are fully booked for the next four weeks and Ms Ali said the practice had been extremely busy. </p>\n<p>“We’re getting calls mainly about COVID vaccination, and patients other than our own are calling and trying to find out the process and when they can book in. </p>\n<p>“We‘re asking patients stick to their own GPs if that practice is giving vaccinations—just for continuity of care. If their GPs aren’t offering COVID vaccinations we are able to accommodate them though,” Mrs Ali said. </p>\n<p>The upside of being one of the earliest practices in the region to be rolling out phase 1b means that the process is only going to get smoother as time goes on. </p>\n<p>Mrs Ali said Redcliffe Parade Family Medical Practice were trialling two styles of COVID vaccination clinic—a lunchtime clinic and an after-hours clinic. </p>\n<p>“Over the next few weeks, we’ll have a better understanding of what will work best in terms of workflow,” she said.</p>\n<p>With Anchor Medical in operation of six medical centres in North Brisbane, including Eaton Central 7Day Family Practice and McDowall Village Medical Practice, Ms Ali said the wider team of practices would be able to adapt based on the experiences of Redcliffe Parade Family Medical Practice.</p>\n<p>“All of the practices will be involved (in the vaccine rollout) and these early vaccinations are a great learning opportunity on how to roll out for the rest of the team,” Mrs Ali said. </p>\n<p>As of 6 April 2021, over 841,885 Australians have received a COVID vaccine. </p>\n<p>Visit the PHN website to <a href=\"https://brisbanenorthphn.org.au/covid-19/vaccine-rollout-faqs\">read our FAQs</a> exploring the Phase 1b rollout for both participating and non-participating practices, or to find out more about how to book an appointment to be vaccinated, visit the <a href=\"https://www.qld.gov.au/health/conditions/health-alerts/coronavirus-covid-19/protect-yourself-others/covid-19-vaccine/rollout\">Queensland Health website</a>. </p>\n<p>For more information on Anchor Medical visit <a href=\"https://amed.com.au\">amed.com.au</a>. </p>\n<p><em>Dr Haroon Suleman, Shabnam Ali and Nurse Lisa Kehl the team behind the first covid vaccination clinic at Redcliffe parade family medical practice.</em></p>',NULL,NULL,NULL),(4641,149319,1,'2021-04-06 04:40:02','2021-04-06 04:40:02','6a7c9944-0053-40f5-a8ae-06b61f20c8f0','<p><strong>On behalf of the Australian Government Department of Health, please find below statements published regarding a specific clotting condition being reported after COVID-19 vaccination:</strong></p>\n<h4>Acting Chief Medical Officer and Head of the TGA</h4>\n<p><a href=\"https://health.gov.au/news/joint-statement-on-astrazeneca-covid-19-vaccine\" target=\"_blank\" rel=\"noreferrer noopener\">Joint statement</a> from acting Australian Government Chief Medical Officer, Professor Michael Kidd and Head of the Therapeutic Goods Administration Adj. Professor John Skerritt.<br /> </p>\n<h4>ATAGI statement for health providers</h4>\n<p>The Australian Technical Advisory Group on Immunisation (ATAGI) <a href=\"https://www.health.gov.au/news/atagi-statement-healthcare-providers-specific-clotting-condition-reported-after-covid-19-vaccination\">released a statement</a> to support health professionals in responding to any instances of clotting disorders following vaccine administration. This provides more information on clinical management and raises awareness of the potential for this condition.</p><h4>Summary of current recommendations</h4>\n<ul><li>Rare cases of thrombosis associated with thrombocytopenia were reported following administration of COVID-19 Vaccine AstraZeneca overseas.</li><li>The onset of reported cases was between 4 to 20 days after vaccination.</li><li>Providers should be aware of warning signs of a severe condition associated with thrombosis and thrombocytopenia. This has presented as either central venous sinus thrombosis (CVST) or thrombosis in other sites, such as intra-abdominal venous systems. CVST may present as a new onset persistent headache not settling with analgesia, features of raised intracranial pressure (including acute severe headache, vomiting, confusion), focal neurological deficits, and/or seizures.</li><li>If CVST or another severe thrombotic complication with thrombocytopenia is suspected in a patient who has received COVID-19 Vaccine AstraZeneca, refer them to an emergency department for further assessment and haematology consultation.</li><li>Clinical investigations should include a full blood count (to look for thrombocytopenia), a D-dimer test and radiological imaging.</li><li>Patients suspected to have this condition should NOT receive any heparin or platelet transfusions.</li><li>The TGA has received one report of a case of thrombosis and thrombocytopenia following COVID-19 Vaccine AstraZeneca in Australia. The clinical details of this case are currently under review by the TGA.</li></ul>\n<h4>ATAGI statement for consumers</h4>\n<p><a href=\"https://www.health.gov.au/news/atagi-statement-consumers-specific-clotting-condition-after-covid-19-vaccination\" target=\"_blank\" rel=\"noreferrer noopener\">A statement</a> from ATAGI for consumers on a specific clotting condition being reported after COVID-19 vaccination.<br /> </p>\n<h4>Additional statement from ATAGI statement</h4>\n<p>An <a href=\"https://www.health.gov.au/news/atagi-statement-covid-19-vaccination-reported-case-of-thrombosis\" target=\"_blank\" rel=\"noreferrer noopener\">ATAGI statement</a> on COVID-19 vaccination and a reported case of thrombosis.<br /> </p>\n<h4>TGA statement</h4>\n<p>The <a href=\"https://www.tga.gov.au/media-release/specific-clotting-condition-reported-after-covid-19-vaccination\" target=\"_blank\" rel=\"noreferrer noopener\">TGA\'s assessment</a> is that the benefits of vaccination against COVID-19 continue to outweigh any risks. <br /> </p>\n<h4>Useful documents</h4>\n<p><strong>The Australian Government Department of Health revised the four documents below on 4 April 2021, with updates from ATAGI regarding a specific clotting condition:</strong></p>\n<ul><li><a href=\"https://www.health.gov.au/resources/publications/covid-19-vaccination-atagi-immunisation-provider-guide-to-obtaining-informed-consent-for-covid-19-vaccine\" target=\"_blank\" rel=\"noreferrer noopener\">Provider guide for obtaining informed consent</a></li><li><a href=\"https://www.health.gov.au/resources/publications/covid-19-vaccination-consent-form-for-covid-19-vaccination\" target=\"_blank\" rel=\"noreferrer noopener\">Consent form for COVID-19 vaccination</a></li><li><a href=\"https://www.health.gov.au/resources/publications/covid-19-vaccination-information-on-covid-19-astrazeneca-vaccine\" target=\"_blank\" rel=\"noreferrer noopener\">Consumer information on the AstraZeneca vaccine</a></li><li><a href=\"https://www.health.gov.au/resources/publications/covid-19-vaccination-after-your-astrazeneca-vaccine\" target=\"_blank\" rel=\"noreferrer noopener\">Information for after your AstraZeneca vaccine</a></li></ul>',NULL,NULL,NULL),(4642,149321,1,'2021-04-06 04:40:02','2021-04-06 04:40:02','d517a3df-c7ef-4177-ac80-8d41fef82633','<p><strong>On behalf of the Australian Government Department of Health, please find below statements published regarding a specific clotting condition being reported after COVID-19 vaccination:</strong></p>\n<h4>Acting Chief Medical Officer and Head of the TGA</h4>\n<p><a href=\"https://health.gov.au/news/joint-statement-on-astrazeneca-covid-19-vaccine\" target=\"_blank\" rel=\"noreferrer noopener\">Joint statement</a> from acting Australian Government Chief Medical Officer, Professor Michael Kidd and Head of the Therapeutic Goods Administration Adj. Professor John Skerritt.<br /> </p>\n<h4>ATAGI statement for health providers</h4>\n<p>The Australian Technical Advisory Group on Immunisation (ATAGI) <a href=\"https://www.health.gov.au/news/atagi-statement-healthcare-providers-specific-clotting-condition-reported-after-covid-19-vaccination\">released a statement</a> to support health professionals in responding to any instances of clotting disorders following vaccine administration. This provides more information on clinical management and raises awareness of the potential for this condition.</p><h4>Summary of current recommendations</h4>\n<ul><li>Rare cases of thrombosis associated with thrombocytopenia were reported following administration of COVID-19 Vaccine AstraZeneca overseas.</li><li>The onset of reported cases was between 4 to 20 days after vaccination.</li><li>Providers should be aware of warning signs of a severe condition associated with thrombosis and thrombocytopenia. This has presented as either central venous sinus thrombosis (CVST) or thrombosis in other sites, such as intra-abdominal venous systems. CVST may present as a new onset persistent headache not settling with analgesia, features of raised intracranial pressure (including acute severe headache, vomiting, confusion), focal neurological deficits, and/or seizures.</li><li>If CVST or another severe thrombotic complication with thrombocytopenia is suspected in a patient who has received COVID-19 Vaccine AstraZeneca, refer them to an emergency department for further assessment and haematology consultation.</li><li>Clinical investigations should include a full blood count (to look for thrombocytopenia), a D-dimer test and radiological imaging.</li><li>Patients suspected to have this condition should NOT receive any heparin or platelet transfusions.</li><li>The TGA has received one report of a case of thrombosis and thrombocytopenia following COVID-19 Vaccine AstraZeneca in Australia. The clinical details of this case are currently under review by the TGA.</li></ul>\n<h4>ATAGI statement for consumers</h4>\n<p><a href=\"https://www.health.gov.au/news/atagi-statement-consumers-specific-clotting-condition-after-covid-19-vaccination\" target=\"_blank\" rel=\"noreferrer noopener\">A statement</a> from ATAGI for consumers on a specific clotting condition being reported after COVID-19 vaccination.<br /> </p>\n<h4>Additional statement from ATAGI statement</h4>\n<p>An <a href=\"https://www.health.gov.au/news/atagi-statement-covid-19-vaccination-reported-case-of-thrombosis\" target=\"_blank\" rel=\"noreferrer noopener\">ATAGI statement</a> on COVID-19 vaccination and a reported case of thrombosis.<br /> </p>\n<h4>TGA statement</h4>\n<p>The <a href=\"https://www.tga.gov.au/media-release/specific-clotting-condition-reported-after-covid-19-vaccination\" target=\"_blank\" rel=\"noreferrer noopener\">TGA\'s assessment</a> is that the benefits of vaccination against COVID-19 continue to outweigh any risks. <br /> </p>\n<h4>Useful documents</h4>\n<p><strong>The Australian Government Department of Health revised the four documents below on 4 April 2021, with updates from ATAGI regarding a specific clotting condition:</strong></p>\n<ul><li><a href=\"https://www.health.gov.au/resources/publications/covid-19-vaccination-atagi-immunisation-provider-guide-to-obtaining-informed-consent-for-covid-19-vaccine\" target=\"_blank\" rel=\"noreferrer noopener\">Provider guide for obtaining informed consent</a></li><li><a href=\"https://www.health.gov.au/resources/publications/covid-19-vaccination-consent-form-for-covid-19-vaccination\" target=\"_blank\" rel=\"noreferrer noopener\">Consent form for COVID-19 vaccination</a></li><li><a href=\"https://www.health.gov.au/resources/publications/covid-19-vaccination-information-on-covid-19-astrazeneca-vaccine\" target=\"_blank\" rel=\"noreferrer noopener\">Consumer information on the AstraZeneca vaccine</a></li><li><a href=\"https://www.health.gov.au/resources/publications/covid-19-vaccination-after-your-astrazeneca-vaccine\" target=\"_blank\" rel=\"noreferrer noopener\">Information for after your AstraZeneca vaccine</a></li></ul>',NULL,NULL,NULL),(4643,149323,1,'2021-04-06 04:40:05','2021-04-06 04:40:05','23548a62-4e47-4aec-bd17-0450e9fb5f0e','<p><strong>On behalf of the Australian Government Department of Health, please find below statements published regarding a specific clotting condition being reported after COVID-19 vaccination:</strong></p>\n<h4>Acting Chief Medical Officer and Head of the TGA</h4>\n<p><a href=\"https://health.gov.au/news/joint-statement-on-astrazeneca-covid-19-vaccine\" target=\"_blank\" rel=\"noreferrer noopener\">Joint statement</a> from acting Australian Government Chief Medical Officer, Professor Michael Kidd and Head of the Therapeutic Goods Administration Adj. Professor John Skerritt.<br /> </p>\n<h4>ATAGI statement for health providers</h4>\n<p>The Australian Technical Advisory Group on Immunisation (ATAGI) <a href=\"https://www.health.gov.au/news/atagi-statement-healthcare-providers-specific-clotting-condition-reported-after-covid-19-vaccination\">released a statement</a> to support health professionals in responding to any instances of clotting disorders following vaccine administration. This provides more information on clinical management and raises awareness of the potential for this condition.</p><h4>Summary of current recommendations</h4>\n<ul><li>Rare cases of thrombosis associated with thrombocytopenia were reported following administration of COVID-19 Vaccine AstraZeneca overseas.</li><li>The onset of reported cases was between 4 to 20 days after vaccination.</li><li>Providers should be aware of warning signs of a severe condition associated with thrombosis and thrombocytopenia. This has presented as either central venous sinus thrombosis (CVST) or thrombosis in other sites, such as intra-abdominal venous systems. CVST may present as a new onset persistent headache not settling with analgesia, features of raised intracranial pressure (including acute severe headache, vomiting, confusion), focal neurological deficits, and/or seizures.</li><li>If CVST or another severe thrombotic complication with thrombocytopenia is suspected in a patient who has received COVID-19 Vaccine AstraZeneca, refer them to an emergency department for further assessment and haematology consultation.</li><li>Clinical investigations should include a full blood count (to look for thrombocytopenia), a D-dimer test and radiological imaging.</li><li>Patients suspected to have this condition should NOT receive any heparin or platelet transfusions.</li><li>The TGA has received one report of a case of thrombosis and thrombocytopenia following COVID-19 Vaccine AstraZeneca in Australia. The clinical details of this case are currently under review by the TGA.</li></ul>\n<h4>ATAGI statement for consumers</h4>\n<p><a href=\"https://www.health.gov.au/news/atagi-statement-consumers-specific-clotting-condition-after-covid-19-vaccination\" target=\"_blank\" rel=\"noreferrer noopener\">A statement</a> from ATAGI for consumers on a specific clotting condition being reported after COVID-19 vaccination.<br /> </p>\n<h4>Additional statement from ATAGI statement</h4>\n<p>An <a href=\"https://www.health.gov.au/news/atagi-statement-covid-19-vaccination-reported-case-of-thrombosis\" target=\"_blank\" rel=\"noreferrer noopener\">ATAGI statement</a> on COVID-19 vaccination and a reported case of thrombosis.<br /> </p>\n<h4>TGA statement</h4>\n<p>The <a href=\"https://www.tga.gov.au/media-release/specific-clotting-condition-reported-after-covid-19-vaccination\" target=\"_blank\" rel=\"noreferrer noopener\">TGA\'s assessment</a> is that the benefits of vaccination against COVID-19 continue to outweigh any risks. <br /> </p>\n<h4>Useful documents</h4>\n<p><strong>The Australian Government Department of Health revised the four documents below on 4 April 2021, with updates from ATAGI regarding a specific clotting condition:</strong></p>\n<ul><li><a href=\"https://www.health.gov.au/resources/publications/covid-19-vaccination-atagi-immunisation-provider-guide-to-obtaining-informed-consent-for-covid-19-vaccine\" target=\"_blank\" rel=\"noreferrer noopener\">Provider guide for obtaining informed consent</a></li><li><a href=\"https://www.health.gov.au/resources/publications/covid-19-vaccination-consent-form-for-covid-19-vaccination\" target=\"_blank\" rel=\"noreferrer noopener\">Consent form for COVID-19 vaccination</a></li><li><a href=\"https://www.health.gov.au/resources/publications/covid-19-vaccination-information-on-covid-19-astrazeneca-vaccine\" target=\"_blank\" rel=\"noreferrer noopener\">Consumer information on the AstraZeneca vaccine</a></li><li><a href=\"https://www.health.gov.au/resources/publications/covid-19-vaccination-after-your-astrazeneca-vaccine\" target=\"_blank\" rel=\"noreferrer noopener\">Information for after your AstraZeneca vaccine</a></li></ul>',NULL,NULL,NULL),(4644,150494,1,'2021-04-12 02:40:33','2021-04-12 02:40:33','99a68fa1-8cfd-40ee-932d-e15aaa1fef44','<p><strong>On behalf of the Australian Government Department of Health, please find below statements published regarding a specific clotting condition being reported after COVID-19 vaccination:</strong></p>\n<h4>Acting Chief Medical Officer and Head of the TGA</h4>\n<p><a href=\"https://health.gov.au/news/joint-statement-on-astrazeneca-covid-19-vaccine\" target=\"_blank\" rel=\"noreferrer noopener\">Joint statement</a> from acting Australian Government Chief Medical Officer, Professor Michael Kidd and Head of the Therapeutic Goods Administration Adj. Professor John Skerritt.<br /> </p>\n<h4>ATAGI statement for health providers</h4>\n<p>The Australian Technical Advisory Group on Immunisation (ATAGI) <a href=\"https://www.health.gov.au/news/atagi-statement-healthcare-providers-specific-clotting-condition-reported-after-covid-19-vaccination\">released a statement</a> to support health professionals in responding to any instances of clotting disorders following vaccine administration. This provides more information on clinical management and raises awareness of the potential for this condition.</p><h4>Summary of current recommendations</h4>\n<ul><li>Rare cases of thrombosis associated with thrombocytopenia were reported following administration of COVID-19 Vaccine AstraZeneca overseas.</li><li>The onset of reported cases was between 4 to 20 days after vaccination.</li><li>Providers should be aware of warning signs of a severe condition associated with thrombosis and thrombocytopenia. This has presented as either central venous sinus thrombosis (CVST) or thrombosis in other sites, such as intra-abdominal venous systems. CVST may present as a new onset persistent headache not settling with analgesia, features of raised intracranial pressure (including acute severe headache, vomiting, confusion), focal neurological deficits, and/or seizures.</li><li>If CVST or another severe thrombotic complication with thrombocytopenia is suspected in a patient who has received COVID-19 Vaccine AstraZeneca, refer them to an emergency department for further assessment and haematology consultation.</li><li>Clinical investigations should include a full blood count (to look for thrombocytopenia), a D-dimer test and radiological imaging.</li><li>Patients suspected to have this condition should NOT receive any heparin or platelet transfusions.</li><li>The TGA has received one report of a case of thrombosis and thrombocytopenia following COVID-19 Vaccine AstraZeneca in Australia. The clinical details of this case are currently under review by the TGA.</li></ul>\n<h4>ATAGI statement for consumers</h4>\n<p><a href=\"https://www.health.gov.au/news/atagi-statement-consumers-specific-clotting-condition-after-covid-19-vaccination\" target=\"_blank\" rel=\"noreferrer noopener\">A statement</a> from ATAGI for consumers on a specific clotting condition being reported after COVID-19 vaccination.<br /> </p>\n<h4>Additional statement from ATAGI statement</h4>\n<p>An <a href=\"https://www.health.gov.au/news/atagi-statement-covid-19-vaccination-reported-case-of-thrombosis\" target=\"_blank\" rel=\"noreferrer noopener\">ATAGI statement</a> on COVID-19 vaccination and a reported case of thrombosis.<br /> </p>\n<h4>TGA statement</h4>\n<p>The <a href=\"https://www.tga.gov.au/media-release/specific-clotting-condition-reported-after-covid-19-vaccination\" target=\"_blank\" rel=\"noreferrer noopener\">TGA\'s assessment</a> is that the benefits of vaccination against COVID-19 continue to outweigh any risks. <br /> </p>\n<h4>Useful documents</h4>\n<p><strong>The Australian Government Department of Health revised the four documents below on 4 April 2021, with updates from ATAGI regarding a specific clotting condition:</strong></p>\n<ul><li><a href=\"https://www.health.gov.au/resources/publications/covid-19-vaccination-atagi-immunisation-provider-guide-to-obtaining-informed-consent-for-covid-19-vaccine\" target=\"_blank\" rel=\"noreferrer noopener\">Provider guide for obtaining informed consent</a></li><li><a href=\"https://www.health.gov.au/resources/publications/covid-19-vaccination-consent-form-for-covid-19-vaccination\" target=\"_blank\" rel=\"noreferrer noopener\">Consent form for COVID-19 vaccination</a></li><li><a href=\"https://www.health.gov.au/resources/publications/covid-19-vaccination-information-on-covid-19-astrazeneca-vaccine\" target=\"_blank\" rel=\"noreferrer noopener\">Consumer information on the AstraZeneca vaccine</a></li><li><a href=\"https://www.health.gov.au/resources/publications/covid-19-vaccination-after-your-astrazeneca-vaccine\" target=\"_blank\" rel=\"noreferrer noopener\">Information for after your AstraZeneca vaccine</a></li></ul>',NULL,NULL,NULL),(4645,150496,1,'2021-04-12 02:41:56','2021-04-12 02:41:56','c2a7d425-be32-447c-a4c4-56efc2d07a2c','<p dir=\"ltr\">People with complex mental health conditions often benefit from a mix of services and supports. The support they need goes beyond clinical management, and includes psychosocial support and the need to address the social determinants of health. These services and supports should be provided in a way that wraps around the person and delivered in a coordinated and integrated way.</p>\n<p dir=\"ltr\">To ensure people are receiving the right service, in the right place, at the right time, Brisbane North PHN has commenced a project to define what services and supports are available in the North Brisbane and Moreton Bay region. </p>\n<p dir=\"ltr\">Brisbane North PHN is partnering with expert organisations to facilitate the development of evidence-based, locally relevant and jointly agreed care pathways relating to five conditions or areas:</p>\n<ul><li dir=\"ltr\"><p dir=\"ltr\">eating disorders [led by <a href=\"https://eatingdisordersqueensland.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">Eating Disorders Qld</a>]</p></li><li dir=\"ltr\"><p dir=\"ltr\">intellectual disability [led by <a href=\"https://qdn.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">Queenslanders with Disability Network</a>]</p></li><li dir=\"ltr\"><p dir=\"ltr\">personality disorders [led by <a href=\"https://www.neaminational.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">Neami National</a>]</p></li><li dir=\"ltr\"><p dir=\"ltr\">perinatal [led by <a href=\"https://www.pregnancybirthbaby.org.au/partners/peach-tree-perinatal-wellness\" target=\"_blank\" rel=\"noreferrer noopener\">Peach Tree Perinatal Wellness</a>]</p></li><li dir=\"ltr\"><p dir=\"ltr\">suicide prevention [led by Brisbane North PHN].</p></li></ul>\n<p>Each of these organisations will be consulting further with professional experts and people with lived experience to define the local pathways. The project will lead to the development of information products that will aim to benefit people accessing services and service providers undertaking assessments and referrals.<br /></p>\n<p>Brisbane North PHN has engaged <a href=\"https://www.beaconstrategies.net/\" target=\"_blank\" rel=\"noreferrer noopener\">Beacon Strategies</a> to provide backbone support to the process, ensuring collaboration and consistency between each pathway. For more information about the project, please contact the project team via email to <a href=\"mailto:info@beaconstrategies.net\">info@beaconstrategies.net</a>.</p>',NULL,NULL,NULL),(4647,150677,1,'2021-04-12 05:31:09','2021-04-12 05:31:09','e3a522f5-d212-453c-a77b-aab2f96e14ad','<p><strong>Opening ahead of schedule, headspace Strathpine is now providing free or low-cost Medicare services to young people in Strathpine and the surrounding region.</strong></p>\n<p>The Australian Government-funded service is a holistic mental health service for young people aged 12-25, and provides mental health, physical health (including sexual health), alcohol and other drugs or work and study support.</p>\n<p>Strathpine local Jesse Cotter was thrilled to hear the service had opened. She had participated in the initial community consultation and tender selection panel, and is now on the headspace Strathpine Youth Reference Group.</p>\n<p>“It was amazing to be a part of the process of seeing a headspace go from paper to reality. It will be great to have a locally relevant youth mental health services that can tackle the presenting issues in our community,” Ms Cotter said.</p>\n<p>Brisbane North PHN Executive Manager for Commissioned Services Paul Martin thanked lead agency Open Minds for its work setting up the new headspace centre, saying it would improve functioning of the local health system.</p>\n<p>“headspace Strathpine will make an important contribution to mental health in an underserviced part of the Brisbane North PHN region,” Mr Martin said.</p>\n<p>“We are fully focused on implementing the objectives and actions of the region’s five-year joint regional mental health plan. These include ensuring that young people and their families can more easily access the right support when they need it,” he said.</p>\n<p>Brisbane North PHN and Metro North Hospital and Health Service have jointly sponsored the Planning for Wellbeing regional plan to improve mental health, suicide prevention and alcohol and other drug treatment services.</p>\n<p>Work undertaken under the plan has already secured additional funding for existing headspace centres in the region to better support young people with more complex needs, and has delivered outreach support to Bribie Island and the Kilcoy region.</p>\n<p>“I urge service providers and consumers to visit <a href=\"https://planningforwellbeing.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">planningforwellbeing.org.au</a> to see how we are working together to help improve the lives of those affected by mental illness, suicide or problematic drug use,” he said.</p>\n<p>The PHN announced in June 2020 that an Open Minds-led consortium would run headspace Strathpine, following its successful application through a competitive tender process.</p>\n<p>In a media announcement, Federal Member for Dickson Peter Dutton said COVID-19 had increased demand for mental health services and that headspace Strathpine would help meet this demand.</p>\n<p>“Given the urgency arising from the pandemic, the Australian Government was determined to deliver this new headspace centre as quickly as possible,” Mr Dutton said.</p>\n<p>“Improving mental health and suicide prevention remains one of our Government’s highest priorities and this new centre will help many young people in our community for years to come.”</p>\n<p>headspace Strathpine is located at 441 Gympie Road, Strathpine. To make an appointment, call 07 3465 3000 or visit <a href=\"https://headspace.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">headspace.org.au</a>.</p>',NULL,NULL,NULL),(4648,150679,1,'2021-04-12 05:31:09','2021-04-12 05:31:09','004a1909-456b-4b95-bcf6-71dfe5864413','<p><strong>Opening ahead of schedule, headspace Strathpine is now providing free or low-cost Medicare services to young people in Strathpine and the surrounding region.</strong></p>\n<p>The Australian Government-funded service is a holistic mental health service for young people aged 12-25, and provides mental health, physical health (including sexual health), alcohol and other drugs or work and study support.</p>\n<p>Strathpine local Jesse Cotter was thrilled to hear the service had opened. She had participated in the initial community consultation and tender selection panel, and is now on the headspace Strathpine Youth Reference Group.</p>\n<p>“It was amazing to be a part of the process of seeing a headspace go from paper to reality. It will be great to have a locally relevant youth mental health services that can tackle the presenting issues in our community,” Ms Cotter said.</p>\n<p>Brisbane North PHN Executive Manager for Commissioned Services Paul Martin thanked lead agency Open Minds for its work setting up the new headspace centre, saying it would improve functioning of the local health system.</p>\n<p>“headspace Strathpine will make an important contribution to mental health in an underserviced part of the Brisbane North PHN region,” Mr Martin said.</p>\n<p>“We are fully focused on implementing the objectives and actions of the region’s five-year joint regional mental health plan. These include ensuring that young people and their families can more easily access the right support when they need it,” he said.</p>\n<p>Brisbane North PHN and Metro North Hospital and Health Service have jointly sponsored the Planning for Wellbeing regional plan to improve mental health, suicide prevention and alcohol and other drug treatment services.</p>\n<p>Work undertaken under the plan has already secured additional funding for existing headspace centres in the region to better support young people with more complex needs, and has delivered outreach support to Bribie Island and the Kilcoy region.</p>\n<p>“I urge service providers and consumers to visit <a href=\"https://planningforwellbeing.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">planningforwellbeing.org.au</a> to see how we are working together to help improve the lives of those affected by mental illness, suicide or problematic drug use,” he said.</p>\n<p>The PHN announced in June 2020 that an Open Minds-led consortium would run headspace Strathpine, following its successful application through a competitive tender process.</p>\n<p>In a media announcement, Federal Member for Dickson Peter Dutton said COVID-19 had increased demand for mental health services and that headspace Strathpine would help meet this demand.</p>\n<p>“Given the urgency arising from the pandemic, the Australian Government was determined to deliver this new headspace centre as quickly as possible,” Mr Dutton said.</p>\n<p>“Improving mental health and suicide prevention remains one of our Government’s highest priorities and this new centre will help many young people in our community for years to come.”</p>\n<p>headspace Strathpine is located at 441 Gympie Road, Strathpine. To make an appointment, call 07 3465 3000 or visit <a href=\"https://headspace.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">headspace.org.au</a>.</p>',NULL,NULL,NULL),(4649,150681,1,'2021-04-12 05:31:46','2021-04-12 05:31:46','f3a922b9-cb3f-4559-8af1-29ac92b4fea6','<p><strong>Opening ahead of schedule, headspace Strathpine is now providing free or low-cost Medicare services to young people in Strathpine and the surrounding region.</strong></p>\n<p>The Australian Government-funded service is a holistic mental health service for young people aged 12-25, and provides mental health, physical health (including sexual health), alcohol and other drugs or work and study support.</p>\n<p>Strathpine local Jesse Cotter was thrilled to hear the service had opened. She had participated in the initial community consultation and tender selection panel, and is now on the headspace Strathpine Youth Reference Group.</p>\n<p>“It was amazing to be a part of the process of seeing a headspace go from paper to reality. It will be great to have a locally relevant youth mental health services that can tackle the presenting issues in our community,” Ms Cotter said.</p>\n<p>Brisbane North PHN Executive Manager for Commissioned Services Paul Martin thanked lead agency Open Minds for its work setting up the new headspace centre, saying it would improve functioning of the local health system.</p>\n<p>“headspace Strathpine will make an important contribution to mental health in an underserviced part of the Brisbane North PHN region,” Mr Martin said.</p>\n<p>“We are fully focused on implementing the objectives and actions of the region’s five-year joint regional mental health plan. These include ensuring that young people and their families can more easily access the right support when they need it,” he said.</p>\n<p>Brisbane North PHN and Metro North Hospital and Health Service have jointly sponsored the Planning for Wellbeing regional plan to improve mental health, suicide prevention and alcohol and other drug treatment services.</p>\n<p>Work undertaken under the plan has already secured additional funding for existing headspace centres in the region to better support young people with more complex needs, and has delivered outreach support to Bribie Island and the Kilcoy region.</p>\n<p>“I urge service providers and consumers to visit <a href=\"https://planningforwellbeing.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">planningforwellbeing.org.au</a> to see how we are working together to help improve the lives of those affected by mental illness, suicide or problematic drug use,” he said.</p>\n<p>The PHN announced in June 2020 that an Open Minds-led consortium would run headspace Strathpine, following its successful application through a competitive tender process.</p>\n<p>In a media announcement, Federal Member for Dickson Peter Dutton said COVID-19 had increased demand for mental health services and that headspace Strathpine would help meet this demand.</p>\n<p>“Given the urgency arising from the pandemic, the Australian Government was determined to deliver this new headspace centre as quickly as possible,” Mr Dutton said.</p>\n<p>“Improving mental health and suicide prevention remains one of our Government’s highest priorities and this new centre will help many young people in our community for years to come.”</p>\n<p>headspace Strathpine is located at 441 Gympie Road, Strathpine. To make an appointment, call 07 3465 3000 or visit <a href=\"https://headspace.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">headspace.org.au</a>.</p>',NULL,NULL,NULL),(4651,150684,1,'2021-04-12 05:36:07','2021-04-12 05:36:07','8c1d441a-5c18-44a5-9f93-a01387ab09ce','<p><strong>The bushfires are affecting the entire nation and having a considerable impact on the physical and mental health of many Australians.</strong></p>\n<p>Experiences range from those directly exposed to the crisis, to those with contact only through what they have seen in the media; both groups may be affected.</p>\n<p>Most people recover from such traumatic events but if distress continues, some may need professional assessment and intervention. Those who seek help from a health professional will most often first present to a GP.</p>\n<p>In response to the crisis, the Royal Australian College of General Practitioners (RACGP) has put together a specialised list of resources for GPs and other health professionals. The list includes information on assisting within bushfire-affected communities, the use of P2 masks, providing care and support during disasters, and much more.</p>\n<p>Please read on for more information or visit<strong> <a href=\"https://www.racgp.org.au/running-a-practice/practice-management/managing-emergencies-and-pandemics/naturaldisasters\" target=\"_blank\" rel=\"noreferrer noopener\">www.racgp.org.au/bush-fires</a></strong> for the full list of resources.</p>\n<h5><br /></h5>\n<h5>Medicare bushfire recovery initiative</h5>\n<p>People affected by the bushfires are eligible to receive Medicare rebates for up to 10 psychological therapy sessions through GPs, psychologists and other mental health professionals through the Medicare Bushfire Recovery Initiative.</p>\n<p>To simplify access to these sessions, patients do not need to have a GP referral or mental health treatment plan.</p>\n<h5><br /></h5>\n<h5>Telehealth</h5>\n<p>Medicare Benefits Schedule (MBS) items 2121, 2150 and 2196, which provide rebates for GP telehealth services provided to patients with mental health issues in drought-affected areas, have been expanded to include patients affected by bushfires.</p>\n<p>Patients who have been identified by a GP as being affected by bushfire, or who self-identify as being affected by bushfire, are eligible for these services. In addition to people who reside in areas directly affected by the bushfires, eligible patients may include people who reside in areas, which have not been directly affected.</p>\n<p>For more information visit <strong><a href=\"http://bit.ly/MBS-changes-bushfires\">http://bit.ly/MBS-changes-bushfires</a></strong>.</p>\n<h5><br /></h5>\n<h5>Support for your patients</h5>\n<p>Online support services for the mental health and wellbeing of your patients:</p>\n<ul><li>The RUOK? website offers advice on supporting friends, family and colleagues through the crisis: <a href=\"http://www.ruok.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>www.ruok.org.au</strong></a>.</li><li>The Black Dog Institute has bushfire mental health information to help link communities to a range of support services: <a href=\"http://www.blackdoginstitute.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>www.blackdoginstitute.org.au</strong></a>.</li><li>Beyond Blue offers information on looking after yourself following a disaster: <a href=\"http://www.beyondblue.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>www.beyondblue.org.au</strong></a>.</li><li>headspace has information for young people coping with the stress of natural disasters: <a href=\"https://headspace.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>https://headspace.org.au</strong></a>.</li></ul>\n<h5><br /></h5>\n<h5>Support for health professionals</h5>\n<p>Health professionals will also be impacted by fires and need to look after their own health and wellbeing. GPs may become overloaded by the traumatic experiences of others.</p>\n<p><strong>DRS4DRS</strong></p>\n<p>GPs can access support via the DRS4DRS website and state/territory based helplines. For more information visit <a href=\"http://www.drs4drs.com.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>www.drs4drs.com.au</strong></a>.</p>\n<p><strong>The GP Support Program</strong></p>\n<p>The RACGP GP Support Program provides free and confidential psychological support to members, visit <a href=\"http://www.racgp.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>www.racgp.org.au</strong></a>.</p>\n<h5><br /></h5>\n<h5>Other sources of information</h5>\n<p><strong>Life in Mind toolkit</strong></p>\n<p>Life in Mind team has developed a webpage where relevant disaster toolkits, resources, helplines and information can be found, visit <strong><a href=\"http://www.lifeinmindaustralia.com.au/\" target=\"_blank\" rel=\"noreferrer noopener\">www.lifeinmindaustralia.com.au</a></strong>.</p>\n<p><strong>Healthdirect bushfire health and safety</strong></p>\n<p>Offering practical advice, including how to prepare for a bushfire and how to keep informed. Visit <a href=\"http://www.healthdirect.gov.au/bushfire-health-and-safety\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>www.healthdirect.gov.au/bushfire-health-and-safety</strong></a>.</p>',NULL,NULL,NULL),(4652,150686,1,'2021-04-12 05:36:07','2021-04-12 05:36:07','cf171ea4-fcc5-4f02-b76a-cb1d275905a6','<p><strong>The bushfires are affecting the entire nation and having a considerable impact on the physical and mental health of many Australians.</strong></p>\n<p>Experiences range from those directly exposed to the crisis, to those with contact only through what they have seen in the media; both groups may be affected.</p>\n<p>Most people recover from such traumatic events but if distress continues, some may need professional assessment and intervention. Those who seek help from a health professional will most often first present to a GP.</p>\n<p>In response to the crisis, the Royal Australian College of General Practitioners (RACGP) has put together a specialised list of resources for GPs and other health professionals. The list includes information on assisting within bushfire-affected communities, the use of P2 masks, providing care and support during disasters, and much more.</p>\n<p>Please read on for more information or visit<strong> <a href=\"https://www.racgp.org.au/running-a-practice/practice-management/managing-emergencies-and-pandemics/naturaldisasters\" target=\"_blank\" rel=\"noreferrer noopener\">www.racgp.org.au/bush-fires</a></strong> for the full list of resources.</p>\n<h5><br /></h5>\n<h5>Medicare bushfire recovery initiative</h5>\n<p>People affected by the bushfires are eligible to receive Medicare rebates for up to 10 psychological therapy sessions through GPs, psychologists and other mental health professionals through the Medicare Bushfire Recovery Initiative.</p>\n<p>To simplify access to these sessions, patients do not need to have a GP referral or mental health treatment plan.</p>\n<h5><br /></h5>\n<h5>Telehealth</h5>\n<p>Medicare Benefits Schedule (MBS) items 2121, 2150 and 2196, which provide rebates for GP telehealth services provided to patients with mental health issues in drought-affected areas, have been expanded to include patients affected by bushfires.</p>\n<p>Patients who have been identified by a GP as being affected by bushfire, or who self-identify as being affected by bushfire, are eligible for these services. In addition to people who reside in areas directly affected by the bushfires, eligible patients may include people who reside in areas, which have not been directly affected.</p>\n<p>For more information visit <strong><a href=\"http://bit.ly/MBS-changes-bushfires\">http://bit.ly/MBS-changes-bushfires</a></strong>.</p>\n<h5><br /></h5>\n<h5>Support for your patients</h5>\n<p>Online support services for the mental health and wellbeing of your patients:</p>\n<ul><li>The RUOK? website offers advice on supporting friends, family and colleagues through the crisis: <a href=\"http://www.ruok.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>www.ruok.org.au</strong></a>.</li><li>The Black Dog Institute has bushfire mental health information to help link communities to a range of support services: <a href=\"http://www.blackdoginstitute.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>www.blackdoginstitute.org.au</strong></a>.</li><li>Beyond Blue offers information on looking after yourself following a disaster: <a href=\"http://www.beyondblue.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>www.beyondblue.org.au</strong></a>.</li><li>headspace has information for young people coping with the stress of natural disasters: <a href=\"https://headspace.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>https://headspace.org.au</strong></a>.</li></ul>\n<h5><br /></h5>\n<h5>Support for health professionals</h5>\n<p>Health professionals will also be impacted by fires and need to look after their own health and wellbeing. GPs may become overloaded by the traumatic experiences of others.</p>\n<p><strong>DRS4DRS</strong></p>\n<p>GPs can access support via the DRS4DRS website and state/territory based helplines. For more information visit <a href=\"http://www.drs4drs.com.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>www.drs4drs.com.au</strong></a>.</p>\n<p><strong>The GP Support Program</strong></p>\n<p>The RACGP GP Support Program provides free and confidential psychological support to members, visit <a href=\"http://www.racgp.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>www.racgp.org.au</strong></a>.</p>\n<h5><br /></h5>\n<h5>Other sources of information</h5>\n<p><strong>Life in Mind toolkit</strong></p>\n<p>Life in Mind team has developed a webpage where relevant disaster toolkits, resources, helplines and information can be found, visit <strong><a href=\"http://www.lifeinmindaustralia.com.au/\" target=\"_blank\" rel=\"noreferrer noopener\">www.lifeinmindaustralia.com.au</a></strong>.</p>\n<p><strong>Healthdirect bushfire health and safety</strong></p>\n<p>Offering practical advice, including how to prepare for a bushfire and how to keep informed. Visit <a href=\"http://www.healthdirect.gov.au/bushfire-health-and-safety\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>www.healthdirect.gov.au/bushfire-health-and-safety</strong></a>.</p>',NULL,NULL,NULL),(4653,150688,1,'2021-04-12 05:36:11','2021-04-12 05:36:11','ff2486f7-b952-4e73-88c1-7a10cd0c20e6','<p><strong>The bushfires are affecting the entire nation and having a considerable impact on the physical and mental health of many Australians.</strong></p>\n<p>Experiences range from those directly exposed to the crisis, to those with contact only through what they have seen in the media; both groups may be affected.</p>\n<p>Most people recover from such traumatic events but if distress continues, some may need professional assessment and intervention. Those who seek help from a health professional will most often first present to a GP.</p>\n<p>In response to the crisis, the Royal Australian College of General Practitioners (RACGP) has put together a specialised list of resources for GPs and other health professionals. The list includes information on assisting within bushfire-affected communities, the use of P2 masks, providing care and support during disasters, and much more.</p>\n<p>Please read on for more information or visit<strong> <a href=\"https://www.racgp.org.au/running-a-practice/practice-management/managing-emergencies-and-pandemics/naturaldisasters\" target=\"_blank\" rel=\"noreferrer noopener\">www.racgp.org.au/bush-fires</a></strong> for the full list of resources.</p>\n<h5><br /></h5>\n<h5>Medicare bushfire recovery initiative</h5>\n<p>People affected by the bushfires are eligible to receive Medicare rebates for up to 10 psychological therapy sessions through GPs, psychologists and other mental health professionals through the Medicare Bushfire Recovery Initiative.</p>\n<p>To simplify access to these sessions, patients do not need to have a GP referral or mental health treatment plan.</p>\n<h5><br /></h5>\n<h5>Telehealth</h5>\n<p>Medicare Benefits Schedule (MBS) items 2121, 2150 and 2196, which provide rebates for GP telehealth services provided to patients with mental health issues in drought-affected areas, have been expanded to include patients affected by bushfires.</p>\n<p>Patients who have been identified by a GP as being affected by bushfire, or who self-identify as being affected by bushfire, are eligible for these services. In addition to people who reside in areas directly affected by the bushfires, eligible patients may include people who reside in areas, which have not been directly affected.</p>\n<p>For more information visit <strong><a href=\"http://bit.ly/MBS-changes-bushfires\">http://bit.ly/MBS-changes-bushfires</a></strong>.</p>\n<h5><br /></h5>\n<h5>Support for your patients</h5>\n<p>Online support services for the mental health and wellbeing of your patients:</p>\n<ul><li>The RUOK? website offers advice on supporting friends, family and colleagues through the crisis: <a href=\"http://www.ruok.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>www.ruok.org.au</strong></a>.</li><li>The Black Dog Institute has bushfire mental health information to help link communities to a range of support services: <a href=\"http://www.blackdoginstitute.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>www.blackdoginstitute.org.au</strong></a>.</li><li>Beyond Blue offers information on looking after yourself following a disaster: <a href=\"http://www.beyondblue.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>www.beyondblue.org.au</strong></a>.</li><li>headspace has information for young people coping with the stress of natural disasters: <a href=\"https://headspace.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>https://headspace.org.au</strong></a>.</li></ul>\n<h5><br /></h5>\n<h5>Support for health professionals</h5>\n<p>Health professionals will also be impacted by fires and need to look after their own health and wellbeing. GPs may become overloaded by the traumatic experiences of others.</p>\n<p><strong>DRS4DRS</strong></p>\n<p>GPs can access support via the DRS4DRS website and state/territory based helplines. For more information visit <a href=\"http://www.drs4drs.com.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>www.drs4drs.com.au</strong></a>.</p>\n<p><strong>The GP Support Program</strong></p>\n<p>The RACGP GP Support Program provides free and confidential psychological support to members, visit <a href=\"http://www.racgp.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>www.racgp.org.au</strong></a>.</p>\n<h5><br /></h5>\n<h5>Other sources of information</h5>\n<p><strong>Life in Mind toolkit</strong></p>\n<p>Life in Mind team has developed a webpage where relevant disaster toolkits, resources, helplines and information can be found, visit <strong><a href=\"http://www.lifeinmindaustralia.com.au/\" target=\"_blank\" rel=\"noreferrer noopener\">www.lifeinmindaustralia.com.au</a></strong>.</p>\n<p><strong>Healthdirect bushfire health and safety</strong></p>\n<p>Offering practical advice, including how to prepare for a bushfire and how to keep informed. Visit <a href=\"http://www.healthdirect.gov.au/bushfire-health-and-safety\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>www.healthdirect.gov.au/bushfire-health-and-safety</strong></a>.</p>',NULL,NULL,NULL),(4654,150690,1,'2021-04-12 05:37:20','2021-04-12 05:37:20','a25493df-1caa-4a99-8ca8-2be6046982f6',NULL,NULL,'Dr James Martin','“I love that you can submit a Smart Referral and it can’t be declined from the hospital. Once it’s complete, with all the criteria addressed, then it is on its way.”'),(4655,150691,1,'2021-04-12 05:37:20','2021-04-12 05:37:20','5583e96c-760d-4939-84b0-e9dc80b1d5ef','<p>Local GP Dr James Martin, recently introduced to GP Smart Referrals by the PHN’s Digital Support Officer Donna Hayward, said the program is changing the way he manages referrals. </p>\n<p>Dr Martin, a GP at Pebble Beach Medical Centre at Sandstone Point, also works as a General Practice Liaison Officer for the PHN and Metro North Hospital and Health Service. </p>\n<p>Dr Martin said the limited time GPs are able to dedicate to referrals was an initial hurdle to getting started with the new system, but since putting in some time each week he has been able to make the most of Smart Referrals. </p>\n<p>“After I’d tried GP Smart Referrals a few times I had a visit from Donna and that was really helpful in ironing out a few problems and understand how to make the most of it,” Dr Martin said. </p>\n<p>“I love that you can submit a Smart Referral and it can’t be declined from the hospital. Once it’s complete, with all the criteria addressed, then it is on its way.”</p>\n<p>GP Smart Referrals, rolled out by Metro North Hospital and Health Service and Brisbane North PHN in April, is now live in 133 general practices across the region. </p>\n<p>Another 68 practices are registered and ready to go live, which equals 71 per cent of practices within the North Brisbane and Moreton Bay region. </p>\n<p>GP Smart Referrals allows those involved in patient care to better manage the patient journey, improve patient safety and reduce outpatient wait times. </p>\n<p>Pebble Beach Medical Centre went live with GP Smart Referrals in June and Dr Martin has found that one of the benefits is a greater ability to quickly and easily modify existing referrals, compared to previous systems. </p>\n<p>Other benefits to using the system include an integrated service directory and automatic software updates. </p>\n<p>“(The integrated) searches on the referral destinations have been helpful, and waiting times are easily available as well. Sometimes you see something (in the service directory) that you didn’t expect. </p>\n<p>“You don’t have to keep updating templates, so from a practice management perspective it helps ease the administrative burden,” he said. </p>\n<p>“My colleagues haven’t completely embraced GP Smart Referrals yet but it’s just a matter of time. Looking at my own experience, I was enthusiastic about it but it has taken me a little while to get used to it, and we have just had so little wiggle room in terms of time. The PHN’s Digital Health Support Officer Donna Hayward said the rollout of GP Smart Referrals has been overwhelmingly positive from the PHN’s perspective. </p>\n<p>“We have been receiving some good feedback and GPs are enjoying the function allowing PDF attachments to be included in referrals. </p>\n<p>“As this is a new system it does take a little bit of getting used to but once they do embrace it they love it,” Ms Hayward said. </p>\n<p>Documents or imaging, including clinical letters, ECG traces, spirometry reports and photographs can be attached to the referral; saving administration time with the elimination of faxing supporting documents or diagnostic testing. </p>\n<p>“In the old referral systems, one barrier used to be not being able to attach documents so this function is really handy, although I haven’t manage to master this just yet.” General practices in the North Brisbane and Moreton Bay region that have compatible software can register to have GP Smart Referrals installed.</p>\n<p>Dr Martin’s top tips for GP Smart Referrals:</p>\n<ul><li>Get some help from the PHN’s Digital Support Officers to learn how to attach documents.</li><li>Master the keyboard shortcuts to help with copying and pasting information within fields.</li><li>Expand the small text boxes to provide more space while typing. </li></ul>\n<p>For more information contact our Digital Health Support Officers via <strong><a href=\"mailto:GPSR@brisbanenorthphn.org.au\" target=\"_blank\" rel=\"noreferrer noopener\">GPSR@brisbanenorthphn.org.au</a>.</strong></p>',NULL,NULL,NULL),(4656,150692,1,'2021-04-12 05:37:20','2021-04-12 05:37:20','bb8b5e17-6843-4087-a687-aed33d5b8061',NULL,NULL,NULL,NULL),(4658,150779,1,'2021-04-12 05:47:06','2021-04-12 05:47:06','2f63b525-dadf-43d3-806f-f6bf4a3bf5ae','<p>With the COVID-19 situation rapidly changing, Brisbane North PHN is keeping a close eye on developments and encouraging clinicians and community to be prepared. </p>\n<p><strong>GP respiratory clinic locations in our region</strong></p>\n<p>GP-led respiratory clinics are available to clinically assess people with respiratory conditions, including COVID-19. For more information on the locations and opening hours of GP respiratory clinics in Kenmore, Morayfield, Nundah and Caboolture visit <a href=\"{entry:21111@1:url||https://brisbanenorthphn.org.au/covid-19}\" target=\"_blank\" rel=\"noreferrer noopener\">this page</a>. </p>\n<p><strong>COVID-19 helplines</strong></p>\n<ul><li>The Coronavirus health information line (1800 020 080) operates 24 hours a day, seven days a week, providing information and advice on COVID-19. </li><li>The multicultural connect line is a service for people from multicultural backgrounds whose lives have been affected by the COVID-19 pandemic, call 1300 079 020 for connect with this service. </li><li>The Queensland Government has <a href=\"https://www.health.qld.gov.au/news-events/news/novel-coronavirus-covid-19-sars-queensland-australia-how-to-understand-protect-prevent-spread-symptoms-treatment?fbclid=IwAR2WpKXS817Jy4R6iYHtUV8jZcQ8-AvPP91lqSlnCOK8VuIKYqV8l8YNfoo\" target=\"_blank\" rel=\"noreferrer noopener\">detailed information for the community on its website about COVID-19</a> including what it is, symptoms and prevention, diagnosis and treatment. Further information can be obtained by calling 13 HEALTH (13 43 25 84).</li></ul>\n<p><strong>Mental health, suicide prevention and alcohol and other drug support</strong></p>\n<p>The <a href=\"{entry:69578@1:url||https://brisbanenorthphn.org.au/our-programs/mental-health-services/my-mental-health-service-navigation}\" target=\"_blank\" rel=\"noreferrer noopener\">My Mental Health Service Navigation team</a> at the PHN are able to provide reliable information and support for health professionals, consumers and carers. Contact the service navigators on 1800 752 235 (Monday to Friday 8.30 am-4.30 pm) or email <a href=\"mailto:navigation@brisbanenorthphn.org.au\">navigation@brisbanenorthphn.org.au</a>. </p>\n<p><strong>Further information</strong></p>\n<p>For more information visit the <a href=\"https://www.covid19.qld.gov.au/\">Queensland Health</a> and <a href=\"https://www.health.gov.au/\">Department of Health</a>\nwebsites.<br /></p>',NULL,NULL,NULL),(4659,150781,1,'2021-04-12 05:47:06','2021-04-12 05:47:06','623d2020-272c-4cf4-8af0-d1b857cff905','<p>With the COVID-19 situation rapidly changing, Brisbane North PHN is keeping a close eye on developments and encouraging clinicians and community to be prepared. </p>\n<p><strong>GP respiratory clinic locations in our region</strong></p>\n<p>GP-led respiratory clinics are available to clinically assess people with respiratory conditions, including COVID-19. For more information on the locations and opening hours of GP respiratory clinics in Kenmore, Morayfield, Nundah and Caboolture visit <a href=\"{entry:21111@1:url||https://brisbanenorthphn.org.au/covid-19}\" target=\"_blank\" rel=\"noreferrer noopener\">this page</a>. </p>\n<p><strong>COVID-19 helplines</strong></p>\n<ul><li>The Coronavirus health information line (1800 020 080) operates 24 hours a day, seven days a week, providing information and advice on COVID-19. </li><li>The multicultural connect line is a service for people from multicultural backgrounds whose lives have been affected by the COVID-19 pandemic, call 1300 079 020 for connect with this service. </li><li>The Queensland Government has <a href=\"https://www.health.qld.gov.au/news-events/news/novel-coronavirus-covid-19-sars-queensland-australia-how-to-understand-protect-prevent-spread-symptoms-treatment?fbclid=IwAR2WpKXS817Jy4R6iYHtUV8jZcQ8-AvPP91lqSlnCOK8VuIKYqV8l8YNfoo\" target=\"_blank\" rel=\"noreferrer noopener\">detailed information for the community on its website about COVID-19</a> including what it is, symptoms and prevention, diagnosis and treatment. Further information can be obtained by calling 13 HEALTH (13 43 25 84).</li></ul>\n<p><strong>Mental health, suicide prevention and alcohol and other drug support</strong></p>\n<p>The <a href=\"{entry:69578@1:url||https://brisbanenorthphn.org.au/our-programs/mental-health-services/my-mental-health-service-navigation}\" target=\"_blank\" rel=\"noreferrer noopener\">My Mental Health Service Navigation team</a> at the PHN are able to provide reliable information and support for health professionals, consumers and carers. Contact the service navigators on 1800 752 235 (Monday to Friday 8.30 am-4.30 pm) or email <a href=\"mailto:navigation@brisbanenorthphn.org.au\">navigation@brisbanenorthphn.org.au</a>. </p>\n<p><strong>Further information</strong></p>\n<p>For more information visit the <a href=\"https://www.covid19.qld.gov.au/\">Queensland Health</a> and <a href=\"https://www.health.gov.au/\">Department of Health</a>\nwebsites.<br /></p>',NULL,NULL,NULL),(4660,150783,1,'2021-04-12 05:47:09','2021-04-12 05:47:09','5414384b-0161-4380-84fd-17cba6b77f09','<p>With the COVID-19 situation rapidly changing, Brisbane North PHN is keeping a close eye on developments and encouraging clinicians and community to be prepared. </p>\n<p><strong>GP respiratory clinic locations in our region</strong></p>\n<p>GP-led respiratory clinics are available to clinically assess people with respiratory conditions, including COVID-19. For more information on the locations and opening hours of GP respiratory clinics in Kenmore, Morayfield, Nundah and Caboolture visit <a href=\"{entry:21111@1:url||https://brisbanenorthphn.org.au/covid-19}\" target=\"_blank\" rel=\"noreferrer noopener\">this page</a>. </p>\n<p><strong>COVID-19 helplines</strong></p>\n<ul><li>The Coronavirus health information line (1800 020 080) operates 24 hours a day, seven days a week, providing information and advice on COVID-19. </li><li>The multicultural connect line is a service for people from multicultural backgrounds whose lives have been affected by the COVID-19 pandemic, call 1300 079 020 for connect with this service. </li><li>The Queensland Government has <a href=\"https://www.health.qld.gov.au/news-events/news/novel-coronavirus-covid-19-sars-queensland-australia-how-to-understand-protect-prevent-spread-symptoms-treatment?fbclid=IwAR2WpKXS817Jy4R6iYHtUV8jZcQ8-AvPP91lqSlnCOK8VuIKYqV8l8YNfoo\" target=\"_blank\" rel=\"noreferrer noopener\">detailed information for the community on its website about COVID-19</a> including what it is, symptoms and prevention, diagnosis and treatment. Further information can be obtained by calling 13 HEALTH (13 43 25 84).</li></ul>\n<p><strong>Mental health, suicide prevention and alcohol and other drug support</strong></p>\n<p>The <a href=\"{entry:69578@1:url||https://brisbanenorthphn.org.au/our-programs/mental-health-services/my-mental-health-service-navigation}\" target=\"_blank\" rel=\"noreferrer noopener\">My Mental Health Service Navigation team</a> at the PHN are able to provide reliable information and support for health professionals, consumers and carers. Contact the service navigators on 1800 752 235 (Monday to Friday 8.30 am-4.30 pm) or email <a href=\"mailto:navigation@brisbanenorthphn.org.au\">navigation@brisbanenorthphn.org.au</a>. </p>\n<p><strong>Further information</strong></p>\n<p>For more information visit the <a href=\"https://www.covid19.qld.gov.au/\">Queensland Health</a> and <a href=\"https://www.health.gov.au/\">Department of Health</a>\nwebsites.<br /></p>',NULL,NULL,NULL),(4664,150791,1,'2021-04-12 05:48:38','2021-04-12 05:48:38','67c744bf-410c-42fb-9d68-77732fcd8820','<p><strong>General Practitioner and clinical researcher Dr Jenny Schafer will bring a unique combination of career experiences to Brisbane North PHN, following her appointment to the PHN’s Board of Directors at its Annual General Meeting (AGM) on Wednesday 13 November 2019.</strong></p>\n<p> Having practised in Brisbane North for many years, Dr Schafer is also a current board director with Arthritis Queensland and a senior research manager at Wesley Medical Research. <br />Dr Schafer may be well known to many from her media work some years ago as a Channel 9 medical reporter and Sunday Mail columnist. </p>\n<p>In other AGM announcements, Mark Henley and Stan Macionis were returned as Board Directors. </p>\n<p>PHN Chief Executive Officer Abbe Anderson congratulated the new Board of Directors, saying the balance of experience and perspectives among its members will ensure the organisation continues to provide strong primary healthcare leadership.</p>\n<p><br /></p>',NULL,NULL,NULL),(4665,150792,1,'2021-04-12 05:48:38','2021-04-12 05:48:38','35ab07e1-b111-4f66-868c-9b2f13a973a2',NULL,NULL,NULL,'“I am pleased for our new and continuing Directors. Dr Jenny Schafer is a welcome addition to our Board, helping to bolster the voice of GPs in PHN decision making,” Ms Anderson said.'),(4666,150793,1,'2021-04-12 05:48:38','2021-04-12 05:48:38','14621cdd-f825-40b7-8931-cbe49e0de587','<p>“Dr Schafer has a long connection with our organisation. She and I worked closely together to develop the role of the Medical Assistant in Australia, now recognised with a nationally accredited Certificate IV qualification,” she said.</p>\n<p>“Mark Henley has been on our board since 2015. He is currently CEO at the QLD Council of Social Services (QCOSS) and was formerly on the board of National Disability Services.</p>\n<p>“Mr Henley’s experience as an accountant has been of great benefit to the PHN in his role as chair of our Board’s Finance, Audit and Risk Management Committee.</p>\n<p>“Stan Macionis is another long-serving Board Director. First appointed in 2013, Mr Macionis currently chairs our Board’s Governance Committee.</p>\n<p>“Mr Macionis also serves as a member of the Mental Health Review Tribunal and the AHPRA Nursing and Midwifery Board. He was previously CEO at Medibank Health Solutions and then with RSL Care,” Ms Anderson said.</p>\n<p>AGM attendees heard from guest speaker Simon Cotterell, First Assistant Secretary at the Department of Health and Ageing, who spoke about the Government’s intention to develop a 10-year Primary Health Care Plan.<br /></p>\n\n<p><strong><a href=\"http://www.brisbanenorthphn.org.au/yearinreview\" target=\"_blank\" rel=\"noreferrer noopener\">Read the PHN’s 2018/19 Digital Year in Review</a>.</strong></p>\n<p><em>Pictured left to right: Brisbane North PHN Board Chair Dr Anita Green, PHN CEO Abbe Anderson and new Board Director Dr Jenny Schafer.</em></p>',NULL,NULL,NULL),(4667,150798,1,'2021-04-12 05:48:38','2021-04-12 05:48:38','31ae0edf-7dd3-464f-a329-2607caa63999','<p><strong>General Practitioner and clinical researcher Dr Jenny Schafer will bring a unique combination of career experiences to Brisbane North PHN, following her appointment to the PHN’s Board of Directors at its Annual General Meeting (AGM) on Wednesday 13 November 2019.</strong></p>\n<p> Having practised in Brisbane North for many years, Dr Schafer is also a current board director with Arthritis Queensland and a senior research manager at Wesley Medical Research. <br />Dr Schafer may be well known to many from her media work some years ago as a Channel 9 medical reporter and Sunday Mail columnist. </p>\n<p>In other AGM announcements, Mark Henley and Stan Macionis were returned as Board Directors. </p>\n<p>PHN Chief Executive Officer Abbe Anderson congratulated the new Board of Directors, saying the balance of experience and perspectives among its members will ensure the organisation continues to provide strong primary healthcare leadership.</p>\n<p><br /></p>',NULL,NULL,NULL),(4668,150799,1,'2021-04-12 05:48:38','2021-04-12 05:48:38','f0861750-35d7-4e04-bd5f-a8f43e7b9e47',NULL,NULL,NULL,'“I am pleased for our new and continuing Directors. Dr Jenny Schafer is a welcome addition to our Board, helping to bolster the voice of GPs in PHN decision making,” Ms Anderson said.'),(4669,150800,1,'2021-04-12 05:48:38','2021-04-12 05:48:38','3fd5b04c-0d9a-4fc2-a334-7f4ad68efc63','<p>“Dr Schafer has a long connection with our organisation. She and I worked closely together to develop the role of the Medical Assistant in Australia, now recognised with a nationally accredited Certificate IV qualification,” she said.</p>\n<p>“Mark Henley has been on our board since 2015. He is currently CEO at the QLD Council of Social Services (QCOSS) and was formerly on the board of National Disability Services.</p>\n<p>“Mr Henley’s experience as an accountant has been of great benefit to the PHN in his role as chair of our Board’s Finance, Audit and Risk Management Committee.</p>\n<p>“Stan Macionis is another long-serving Board Director. First appointed in 2013, Mr Macionis currently chairs our Board’s Governance Committee.</p>\n<p>“Mr Macionis also serves as a member of the Mental Health Review Tribunal and the AHPRA Nursing and Midwifery Board. He was previously CEO at Medibank Health Solutions and then with RSL Care,” Ms Anderson said.</p>\n<p>AGM attendees heard from guest speaker Simon Cotterell, First Assistant Secretary at the Department of Health and Ageing, who spoke about the Government’s intention to develop a 10-year Primary Health Care Plan.<br /></p>\n\n<p><strong><a href=\"http://www.brisbanenorthphn.org.au/yearinreview\" target=\"_blank\" rel=\"noreferrer noopener\">Read the PHN’s 2018/19 Digital Year in Review</a>.</strong></p>\n<p><em>Pictured left to right: Brisbane North PHN Board Chair Dr Anita Green, PHN CEO Abbe Anderson and new Board Director Dr Jenny Schafer.</em></p>',NULL,NULL,NULL),(4670,150805,1,'2021-04-12 05:48:47','2021-04-12 05:48:47','8b971edd-a0a2-4492-841d-7b31254b7e5c','<p><strong>General Practitioner and clinical researcher Dr Jenny Schafer will bring a unique combination of career experiences to Brisbane North PHN, following her appointment to the PHN’s Board of Directors at its Annual General Meeting (AGM) on Wednesday 13 November 2019.</strong></p>\n<p> Having practised in Brisbane North for many years, Dr Schafer is also a current board director with Arthritis Queensland and a senior research manager at Wesley Medical Research. <br />Dr Schafer may be well known to many from her media work some years ago as a Channel 9 medical reporter and Sunday Mail columnist. </p>\n<p>In other AGM announcements, Mark Henley and Stan Macionis were returned as Board Directors. </p>\n<p>PHN Chief Executive Officer Abbe Anderson congratulated the new Board of Directors, saying the balance of experience and perspectives among its members will ensure the organisation continues to provide strong primary healthcare leadership.</p>\n<p><br /></p>',NULL,NULL,NULL),(4671,150806,1,'2021-04-12 05:48:47','2021-04-12 05:48:47','d86831bc-74aa-4f0e-b409-594d16e77ade',NULL,NULL,NULL,'“I am pleased for our new and continuing Directors. Dr Jenny Schafer is a welcome addition to our Board, helping to bolster the voice of GPs in PHN decision making,” Ms Anderson said.'),(4672,150807,1,'2021-04-12 05:48:47','2021-04-12 05:48:47','6faf3146-a1a8-427b-8147-b2af202a4864','<p>“Dr Schafer has a long connection with our organisation. She and I worked closely together to develop the role of the Medical Assistant in Australia, now recognised with a nationally accredited Certificate IV qualification,” she said.</p>\n<p>“Mark Henley has been on our board since 2015. He is currently CEO at the QLD Council of Social Services (QCOSS) and was formerly on the board of National Disability Services.</p>\n<p>“Mr Henley’s experience as an accountant has been of great benefit to the PHN in his role as chair of our Board’s Finance, Audit and Risk Management Committee.</p>\n<p>“Stan Macionis is another long-serving Board Director. First appointed in 2013, Mr Macionis currently chairs our Board’s Governance Committee.</p>\n<p>“Mr Macionis also serves as a member of the Mental Health Review Tribunal and the AHPRA Nursing and Midwifery Board. He was previously CEO at Medibank Health Solutions and then with RSL Care,” Ms Anderson said.</p>\n<p>AGM attendees heard from guest speaker Simon Cotterell, First Assistant Secretary at the Department of Health and Ageing, who spoke about the Government’s intention to develop a 10-year Primary Health Care Plan.<br /></p>\n\n<p><strong><a href=\"http://www.brisbanenorthphn.org.au/yearinreview\" target=\"_blank\" rel=\"noreferrer noopener\">Read the PHN’s 2018/19 Digital Year in Review</a>.</strong></p>\n<p><em>Pictured left to right: Brisbane North PHN Board Chair Dr Anita Green, PHN CEO Abbe Anderson and new Board Director Dr Jenny Schafer.</em></p>',NULL,NULL,NULL),(4674,150813,1,'2021-04-12 05:50:08','2021-04-12 05:50:08','c528f98b-fb41-4fe2-8039-d65f9687950f','<p><strong>The results of the Geriatric Assessment Outreach Service (GOAS) pilot project, announced just over a year ago, have left a lasting legacy for the care of older people in Brisbane North.</strong></p>\n<p>Jointly funded by Brisbane North PHN and Metro North Hospital and Health Service, the GOAS pilot project began in June 2017 and was trialled over 12 months in 24 Residential Aged Care Facilities (RACFs) across The Prince Charles Hospital catchment.</p>\n<p>The GOAS model-of-care comprised of an outreach geriatrician-led, five-day service and training for RACFs on clinical pathways.</p>\n<p>An internal evaluation found the trial had improved the quality of care provided to acutely unwell aged care residents and reduced potentially preventable emergency department presentations, at a significant cost saving to the health system.</p>\n<p>The trial was so successful, it contributed to an expansion of the Nurse Navigator-led RADAR outreach service to all RACFs in the Brisbane North region. </p>\n<p>The RADAR Service provides one point of contact for RACFs needing medical support for acutely unwell and deteriorating older people in their care. RADAR services include:</p>\n<ul><li>Emergency department alternatives</li><li>Facilitating hospital admissions</li><li>RACF resident post discharge medication review</li><li>Advice for navigating hospital services.</li></ul>\n<p>To contact RADAR, phone 1300 072 327 between 9.00 am - 5.30 pm, seven days a week.</p>\n<p><strong>For more information contact <a href=\"mailto:agedcareprojects@brisbanenorthphn.org.au\">agedcareprojects@brisbanenorthphn.org.au</a>.</strong></p>\n<h6><em>Pictured above: Susan McCann, Senior Manager of Operations | Aged Care Services at Mercy Community Aged Care at the Geriatric Outreach Assessment Service closure in August 2018. </em></h6>\n<p><a href=\"https://www.facebook.com/BrisbaneNorthPHN\" target=\"_blank\" rel=\"noreferrer noopener\"></a><br /></p>',NULL,NULL,NULL),(4675,150815,1,'2021-04-12 05:50:08','2021-04-12 05:50:08','72f6acdc-5b70-44f2-a702-f10e0f552c2b','<p><strong>The results of the Geriatric Assessment Outreach Service (GOAS) pilot project, announced just over a year ago, have left a lasting legacy for the care of older people in Brisbane North.</strong></p>\n<p>Jointly funded by Brisbane North PHN and Metro North Hospital and Health Service, the GOAS pilot project began in June 2017 and was trialled over 12 months in 24 Residential Aged Care Facilities (RACFs) across The Prince Charles Hospital catchment.</p>\n<p>The GOAS model-of-care comprised of an outreach geriatrician-led, five-day service and training for RACFs on clinical pathways.</p>\n<p>An internal evaluation found the trial had improved the quality of care provided to acutely unwell aged care residents and reduced potentially preventable emergency department presentations, at a significant cost saving to the health system.</p>\n<p>The trial was so successful, it contributed to an expansion of the Nurse Navigator-led RADAR outreach service to all RACFs in the Brisbane North region. </p>\n<p>The RADAR Service provides one point of contact for RACFs needing medical support for acutely unwell and deteriorating older people in their care. RADAR services include:</p>\n<ul><li>Emergency department alternatives</li><li>Facilitating hospital admissions</li><li>RACF resident post discharge medication review</li><li>Advice for navigating hospital services.</li></ul>\n<p>To contact RADAR, phone 1300 072 327 between 9.00 am - 5.30 pm, seven days a week.</p>\n<p><strong>For more information contact <a href=\"mailto:agedcareprojects@brisbanenorthphn.org.au\">agedcareprojects@brisbanenorthphn.org.au</a>.</strong></p>\n<h6><em>Pictured above: Susan McCann, Senior Manager of Operations | Aged Care Services at Mercy Community Aged Care at the Geriatric Outreach Assessment Service closure in August 2018. </em></h6>\n<p><a href=\"https://www.facebook.com/BrisbaneNorthPHN\" target=\"_blank\" rel=\"noreferrer noopener\"></a><br /></p>',NULL,NULL,NULL),(4676,150817,1,'2021-04-12 05:50:11','2021-04-12 05:50:11','7717a01a-88f5-49a2-bb28-c075b5630b84','<p><strong>The results of the Geriatric Assessment Outreach Service (GOAS) pilot project, announced just over a year ago, have left a lasting legacy for the care of older people in Brisbane North.</strong></p>\n<p>Jointly funded by Brisbane North PHN and Metro North Hospital and Health Service, the GOAS pilot project began in June 2017 and was trialled over 12 months in 24 Residential Aged Care Facilities (RACFs) across The Prince Charles Hospital catchment.</p>\n<p>The GOAS model-of-care comprised of an outreach geriatrician-led, five-day service and training for RACFs on clinical pathways.</p>\n<p>An internal evaluation found the trial had improved the quality of care provided to acutely unwell aged care residents and reduced potentially preventable emergency department presentations, at a significant cost saving to the health system.</p>\n<p>The trial was so successful, it contributed to an expansion of the Nurse Navigator-led RADAR outreach service to all RACFs in the Brisbane North region. </p>\n<p>The RADAR Service provides one point of contact for RACFs needing medical support for acutely unwell and deteriorating older people in their care. RADAR services include:</p>\n<ul><li>Emergency department alternatives</li><li>Facilitating hospital admissions</li><li>RACF resident post discharge medication review</li><li>Advice for navigating hospital services.</li></ul>\n<p>To contact RADAR, phone 1300 072 327 between 9.00 am - 5.30 pm, seven days a week.</p>\n<p><strong>For more information contact <a href=\"mailto:agedcareprojects@brisbanenorthphn.org.au\">agedcareprojects@brisbanenorthphn.org.au</a>.</strong></p>\n<h6><em>Pictured above: Susan McCann, Senior Manager of Operations | Aged Care Services at Mercy Community Aged Care at the Geriatric Outreach Assessment Service closure in August 2018. </em></h6>\n<p><a href=\"https://www.facebook.com/BrisbaneNorthPHN\" target=\"_blank\" rel=\"noreferrer noopener\"></a><br /></p>',NULL,NULL,NULL),(4678,150820,1,'2021-04-12 05:52:05','2021-04-12 05:52:05','2522e8b2-d1cd-40f5-b6f9-8734d89700df','<p><strong>From 1 August 2019, general practices participating in quality improvement activities are eligible to receive the PIP Quality Improvement (QI) Incentive payment.</strong></p>\n<p>Under the PIP QI Incentive, general practices work with their local Primary Health Network (PHN) to undertake continuous quality improvement activities through the collection and review of practice data on specified improvement measures. There are two components a general practice needs to meet to qualify for a PIP QI Incentive payment:</p>\n<p><strong>1. Participate in continuous quality improvement</strong></p>\n<p>The PIP QI Incentive rewards practices for participating in continuous quality improvement activities in partnership with their local PHN.</p>\n<p><strong>2. Provide the PIP eligible data set to your local PHN</strong></p>\n<p>The PIP eligible data set is the data collected against specified improvement measures. General practices must submit to their local PHN on a quarterly basis the PIP eligible data set from their general practice clinical information system. </p>\n<p>From the 1st August, General practices can apply for the PIP QI Incentive online through Health Professional Online Services (HPOS) using their Provider Digital Access (PRODA) account. For more information visit <strong><a href=\"https://www.servicesaustralia.gov.au/organisations/health-professionals/services/medicare/hpos\" target=\"_blank\" rel=\"noreferrer noopener\">humanservices.gov.au/hpos</a></strong>. Once practices have registered for the PIP QI they will need to notify their Primary Care Liaison Officer.</p>\n<p>The draft guidelines, improvement measures and data governance framework are now available to view on the Department of Human Services website. The draft guidelines indicate participating practices will receive $5.00 per Standard Whole Patient Equivalent (SWPE) capped at $12, 500 per quarter.</p>\n<p><strong>For further information on applying for the Practice Incentives Program visit <a href=\"http://bit.ly/humanservices-PIP.\">http://bit.ly/humanservices-PIP.</a></strong></p>',NULL,NULL,NULL),(4679,150822,1,'2021-04-12 05:52:05','2021-04-12 05:52:05','bfe05362-9fd5-47e5-a7fe-a008e3424a0d','<p><strong>From 1 August 2019, general practices participating in quality improvement activities are eligible to receive the PIP Quality Improvement (QI) Incentive payment.</strong></p>\n<p>Under the PIP QI Incentive, general practices work with their local Primary Health Network (PHN) to undertake continuous quality improvement activities through the collection and review of practice data on specified improvement measures. There are two components a general practice needs to meet to qualify for a PIP QI Incentive payment:</p>\n<p><strong>1. Participate in continuous quality improvement</strong></p>\n<p>The PIP QI Incentive rewards practices for participating in continuous quality improvement activities in partnership with their local PHN.</p>\n<p><strong>2. Provide the PIP eligible data set to your local PHN</strong></p>\n<p>The PIP eligible data set is the data collected against specified improvement measures. General practices must submit to their local PHN on a quarterly basis the PIP eligible data set from their general practice clinical information system. </p>\n<p>From the 1st August, General practices can apply for the PIP QI Incentive online through Health Professional Online Services (HPOS) using their Provider Digital Access (PRODA) account. For more information visit <strong><a href=\"https://www.servicesaustralia.gov.au/organisations/health-professionals/services/medicare/hpos\" target=\"_blank\" rel=\"noreferrer noopener\">humanservices.gov.au/hpos</a></strong>. Once practices have registered for the PIP QI they will need to notify their Primary Care Liaison Officer.</p>\n<p>The draft guidelines, improvement measures and data governance framework are now available to view on the Department of Human Services website. The draft guidelines indicate participating practices will receive $5.00 per Standard Whole Patient Equivalent (SWPE) capped at $12, 500 per quarter.</p>\n<p><strong>For further information on applying for the Practice Incentives Program visit <a href=\"http://bit.ly/humanservices-PIP.\">http://bit.ly/humanservices-PIP.</a></strong></p>',NULL,NULL,NULL),(4680,150824,1,'2021-04-12 05:52:08','2021-04-12 05:52:08','dbc0418a-71ed-4150-858c-ea6a050d9fb0','<p><strong>From 1 August 2019, general practices participating in quality improvement activities are eligible to receive the PIP Quality Improvement (QI) Incentive payment.</strong></p>\n<p>Under the PIP QI Incentive, general practices work with their local Primary Health Network (PHN) to undertake continuous quality improvement activities through the collection and review of practice data on specified improvement measures. There are two components a general practice needs to meet to qualify for a PIP QI Incentive payment:</p>\n<p><strong>1. Participate in continuous quality improvement</strong></p>\n<p>The PIP QI Incentive rewards practices for participating in continuous quality improvement activities in partnership with their local PHN.</p>\n<p><strong>2. Provide the PIP eligible data set to your local PHN</strong></p>\n<p>The PIP eligible data set is the data collected against specified improvement measures. General practices must submit to their local PHN on a quarterly basis the PIP eligible data set from their general practice clinical information system. </p>\n<p>From the 1st August, General practices can apply for the PIP QI Incentive online through Health Professional Online Services (HPOS) using their Provider Digital Access (PRODA) account. For more information visit <strong><a href=\"https://www.servicesaustralia.gov.au/organisations/health-professionals/services/medicare/hpos\" target=\"_blank\" rel=\"noreferrer noopener\">humanservices.gov.au/hpos</a></strong>. Once practices have registered for the PIP QI they will need to notify their Primary Care Liaison Officer.</p>\n<p>The draft guidelines, improvement measures and data governance framework are now available to view on the Department of Human Services website. The draft guidelines indicate participating practices will receive $5.00 per Standard Whole Patient Equivalent (SWPE) capped at $12, 500 per quarter.</p>\n<p><strong>For further information on applying for the Practice Incentives Program visit <a href=\"http://bit.ly/humanservices-PIP.\">http://bit.ly/humanservices-PIP.</a></strong></p>',NULL,NULL,NULL),(4682,150830,1,'2021-04-12 05:53:43','2021-04-12 05:53:43','04b8182d-5199-4c05-8cdc-eea67bd4dd18','<p><strong>Mununjahli Yugambeh woman Jody Currie has become the first Indigenous Australian elected to the Brisbane North PHN Board of Directors, following the organisation’s Annual General Meeting (AGM) held on Wednesday, 11 November 2020. </strong></p>\n<p>Ms Currie is the Chief Executive Officer of the Aboriginal and Torres Strait Islander Community Health Service (ATSICHS) Brisbane. She has held various senior executive roles in areas of early childhood education, and health and human service delivery, and is an advocate for improving service accessibility to vulnerable communities. </p>\n<p>Ms Currie is a member of the Australian Institute of Company Directors and currently a Non-Executive Director on the Hearing Australia Board. She has worked in a number of senior executive positions in both the government and non-government sectors, including the Queensland Aboriginal and Islander Health Council, Apunipima Cape York Health Council and the Institute for Urban Indigenous Health.</p>\n<p>Brisbane North PHN Chief Executive Office Libby Dunstan congratulated Ms Currie on her election and said the PHN would benefit enormously from her extensive experience in Indigenous health and community services.</p>\n<p>“Jody is a proud First Nations woman who has dedicated herself to improving the health and wellbeing of her people. It is fitting to announce Jody’s election during NAIDOC Week, which celebrates the history, culture and achievements of Aboriginal and Torres Strait Islander peoples,“ Ms Dunstan said.</p>\n<p>In other AGM announcements, Dr Anita Green and Kathy Campbell were returned as Board Directors, while continuing Director Dr Trish Baker was appointed the Interim Board Chair until office bearers are elected at a Board meeting scheduled for 25 November 2020.</p>\n<p>Ms Dunstan welcomed the return of Dr Green and Ms Campbell to the Board and noted their significant contributions.</p>\n<p>“Kathy’s work has been invaluable as the Chair of our Community Advisory Committee and a member of our Finance, Audit and Risk Management Committee,” Ms Dunstan said.</p>\n<p>“Likewise, we owe a great debt to Anita for her many years’ service as our Board Chair. I am grateful for her leadership and have full confidence in fellow General Practitioner Dr Trish Baker as she undertakes the role of Interim Board Chair,” she said.</p>\n<p>Read more about the PHN’s activities in our <a href=\"https://yearinreview.brisbanenorthphn.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>2019/20 Digital Year in Review</strong></a>.</p>\n<p><em>Photo: PHN Board Director </em><em>Jody Currie, PHN Board Chair Dr Anita Green and PHN CEO Libby Dunstan. </em></p>',NULL,NULL,NULL),(4683,150835,1,'2021-04-12 05:53:43','2021-04-12 05:53:43','fb2d7296-f6e3-48f8-bd7d-818c4e02c3b3','<p><strong>Mununjahli Yugambeh woman Jody Currie has become the first Indigenous Australian elected to the Brisbane North PHN Board of Directors, following the organisation’s Annual General Meeting (AGM) held on Wednesday, 11 November 2020. </strong></p>\n<p>Ms Currie is the Chief Executive Officer of the Aboriginal and Torres Strait Islander Community Health Service (ATSICHS) Brisbane. She has held various senior executive roles in areas of early childhood education, and health and human service delivery, and is an advocate for improving service accessibility to vulnerable communities. </p>\n<p>Ms Currie is a member of the Australian Institute of Company Directors and currently a Non-Executive Director on the Hearing Australia Board. She has worked in a number of senior executive positions in both the government and non-government sectors, including the Queensland Aboriginal and Islander Health Council, Apunipima Cape York Health Council and the Institute for Urban Indigenous Health.</p>\n<p>Brisbane North PHN Chief Executive Office Libby Dunstan congratulated Ms Currie on her election and said the PHN would benefit enormously from her extensive experience in Indigenous health and community services.</p>\n<p>“Jody is a proud First Nations woman who has dedicated herself to improving the health and wellbeing of her people. It is fitting to announce Jody’s election during NAIDOC Week, which celebrates the history, culture and achievements of Aboriginal and Torres Strait Islander peoples,“ Ms Dunstan said.</p>\n<p>In other AGM announcements, Dr Anita Green and Kathy Campbell were returned as Board Directors, while continuing Director Dr Trish Baker was appointed the Interim Board Chair until office bearers are elected at a Board meeting scheduled for 25 November 2020.</p>\n<p>Ms Dunstan welcomed the return of Dr Green and Ms Campbell to the Board and noted their significant contributions.</p>\n<p>“Kathy’s work has been invaluable as the Chair of our Community Advisory Committee and a member of our Finance, Audit and Risk Management Committee,” Ms Dunstan said.</p>\n<p>“Likewise, we owe a great debt to Anita for her many years’ service as our Board Chair. I am grateful for her leadership and have full confidence in fellow General Practitioner Dr Trish Baker as she undertakes the role of Interim Board Chair,” she said.</p>\n<p>Read more about the PHN’s activities in our <a href=\"https://yearinreview.brisbanenorthphn.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>2019/20 Digital Year in Review</strong></a>.</p>\n<p><em>Photo: PHN Board Director </em><em>Jody Currie, PHN Board Chair Dr Anita Green and PHN CEO Libby Dunstan. </em></p>',NULL,NULL,NULL),(4684,150840,1,'2021-04-12 05:53:46','2021-04-12 05:53:46','e396895c-f8ed-444c-8d74-bd39da51ec53','<p><strong>Mununjahli Yugambeh woman Jody Currie has become the first Indigenous Australian elected to the Brisbane North PHN Board of Directors, following the organisation’s Annual General Meeting (AGM) held on Wednesday, 11 November 2020. </strong></p>\n<p>Ms Currie is the Chief Executive Officer of the Aboriginal and Torres Strait Islander Community Health Service (ATSICHS) Brisbane. She has held various senior executive roles in areas of early childhood education, and health and human service delivery, and is an advocate for improving service accessibility to vulnerable communities. </p>\n<p>Ms Currie is a member of the Australian Institute of Company Directors and currently a Non-Executive Director on the Hearing Australia Board. She has worked in a number of senior executive positions in both the government and non-government sectors, including the Queensland Aboriginal and Islander Health Council, Apunipima Cape York Health Council and the Institute for Urban Indigenous Health.</p>\n<p>Brisbane North PHN Chief Executive Office Libby Dunstan congratulated Ms Currie on her election and said the PHN would benefit enormously from her extensive experience in Indigenous health and community services.</p>\n<p>“Jody is a proud First Nations woman who has dedicated herself to improving the health and wellbeing of her people. It is fitting to announce Jody’s election during NAIDOC Week, which celebrates the history, culture and achievements of Aboriginal and Torres Strait Islander peoples,“ Ms Dunstan said.</p>\n<p>In other AGM announcements, Dr Anita Green and Kathy Campbell were returned as Board Directors, while continuing Director Dr Trish Baker was appointed the Interim Board Chair until office bearers are elected at a Board meeting scheduled for 25 November 2020.</p>\n<p>Ms Dunstan welcomed the return of Dr Green and Ms Campbell to the Board and noted their significant contributions.</p>\n<p>“Kathy’s work has been invaluable as the Chair of our Community Advisory Committee and a member of our Finance, Audit and Risk Management Committee,” Ms Dunstan said.</p>\n<p>“Likewise, we owe a great debt to Anita for her many years’ service as our Board Chair. I am grateful for her leadership and have full confidence in fellow General Practitioner Dr Trish Baker as she undertakes the role of Interim Board Chair,” she said.</p>\n<p>Read more about the PHN’s activities in our <a href=\"https://yearinreview.brisbanenorthphn.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>2019/20 Digital Year in Review</strong></a>.</p>\n<p><em>Photo: PHN Board Director </em><em>Jody Currie, PHN Board Chair Dr Anita Green and PHN CEO Libby Dunstan. </em></p>',NULL,NULL,NULL),(4689,151253,1,'2021-04-20 03:47:16','2021-04-20 03:47:16','4ac72087-7cf8-4437-8220-e344234d236d','<p><strong>Informed by research and community consultation, the PHN has learnt that people with dementia and their carers are self-navigating their way through the healthcare system, with no guidance on how to navigate its complexity, resulting in feelings of frustration and defeat. </strong></p>\n<p>Taking on recent feedback received from a wide range of people, including people living with dementia, Brisbane North PHN is currently working to improve dementia service navigation across the North Brisbane and Moreton Bay region by creating an online dementia service navigation platform and hardcopy directory. These resources will be designed collaboratively with people living with dementia, their carers and families—as well as health professionals and service providers—to best meet each of their needs. <br /></p>\n<p>The online platform will enable easy navigation and direct users to a range of community-based and national-level services. The services will be comprehensive and cover a range of practical, social and psychological supports needed across the dementia journey. The aim of creating these resources is to help people live well with dementia and to remain active in the community for as long as possible. </p>\n<p>For general practitioners and health workers, this portal can be used as a singular point for referrals and information; to understand what support is needed for a patient with dementia when living in the community and what services are locally available. </p>\n<p>The PHN is collaborating with Dementia Australia to hold carer and consumer workshops to inform the content, and working with creative agency, New Word Order to develop the website and hardcopy resource. </p>\n<p>The Moreton Bay Dementia Alliance has also been a valuable advocacy group for the development of this piece of work. </p>\n<p>In the future, we plan to expand this digital resource to include service navigation for the needs of all older people for healthy living and wellbeing in the North Brisbane and Moreton Bay region. </p>\n<p><strong>For more information on this project email Project Officer, Amy Anderson via <a href=\"mailto:amy.anderson@brisbanenorthphn.org.au\">amy.anderson@brisbanenorthphn.org.au</a>. </strong></p>\n<p><em>Pictured above: Consumers, carers, and staff members from Dementia Australia, New Word Order and the PHN at the recent discovery workshop. </em><br /></p>',NULL,NULL,NULL),(4690,151255,1,'2021-04-20 03:47:16','2021-04-20 03:47:16','7f97817b-67f1-49a8-bae9-8bb761cdc429','<p><strong>Informed by research and community consultation, the PHN has learnt that people with dementia and their carers are self-navigating their way through the healthcare system, with no guidance on how to navigate its complexity, resulting in feelings of frustration and defeat. </strong></p>\n<p>Taking on recent feedback received from a wide range of people, including people living with dementia, Brisbane North PHN is currently working to improve dementia service navigation across the North Brisbane and Moreton Bay region by creating an online dementia service navigation platform and hardcopy directory. These resources will be designed collaboratively with people living with dementia, their carers and families—as well as health professionals and service providers—to best meet each of their needs. <br /></p>\n<p>The online platform will enable easy navigation and direct users to a range of community-based and national-level services. The services will be comprehensive and cover a range of practical, social and psychological supports needed across the dementia journey. The aim of creating these resources is to help people live well with dementia and to remain active in the community for as long as possible. </p>\n<p>For general practitioners and health workers, this portal can be used as a singular point for referrals and information; to understand what support is needed for a patient with dementia when living in the community and what services are locally available. </p>\n<p>The PHN is collaborating with Dementia Australia to hold carer and consumer workshops to inform the content, and working with creative agency, New Word Order to develop the website and hardcopy resource. </p>\n<p>The Moreton Bay Dementia Alliance has also been a valuable advocacy group for the development of this piece of work. </p>\n<p>In the future, we plan to expand this digital resource to include service navigation for the needs of all older people for healthy living and wellbeing in the North Brisbane and Moreton Bay region. </p>\n<p><strong>For more information on this project email Project Officer, Amy Anderson via <a href=\"mailto:amy.anderson@brisbanenorthphn.org.au\">amy.anderson@brisbanenorthphn.org.au</a>. </strong></p>\n<p><em>Pictured above: Consumers, carers, and staff members from Dementia Australia, New Word Order and the PHN at the recent discovery workshop. </em><br /></p>',NULL,NULL,NULL),(4691,151257,1,'2021-04-20 03:47:20','2021-04-20 03:47:20','eba5edee-fa5b-4be3-8d47-3d137b503659','<p><strong>Informed by research and community consultation, the PHN has learnt that people with dementia and their carers are self-navigating their way through the healthcare system, with no guidance on how to navigate its complexity, resulting in feelings of frustration and defeat. </strong></p>\n<p>Taking on recent feedback received from a wide range of people, including people living with dementia, Brisbane North PHN is currently working to improve dementia service navigation across the North Brisbane and Moreton Bay region by creating an online dementia service navigation platform and hardcopy directory. These resources will be designed collaboratively with people living with dementia, their carers and families—as well as health professionals and service providers—to best meet each of their needs. <br /></p>\n<p>The online platform will enable easy navigation and direct users to a range of community-based and national-level services. The services will be comprehensive and cover a range of practical, social and psychological supports needed across the dementia journey. The aim of creating these resources is to help people live well with dementia and to remain active in the community for as long as possible. </p>\n<p>For general practitioners and health workers, this portal can be used as a singular point for referrals and information; to understand what support is needed for a patient with dementia when living in the community and what services are locally available. </p>\n<p>The PHN is collaborating with Dementia Australia to hold carer and consumer workshops to inform the content, and working with creative agency, New Word Order to develop the website and hardcopy resource. </p>\n<p>The Moreton Bay Dementia Alliance has also been a valuable advocacy group for the development of this piece of work. </p>\n<p>In the future, we plan to expand this digital resource to include service navigation for the needs of all older people for healthy living and wellbeing in the North Brisbane and Moreton Bay region. </p>\n<p><strong>For more information on this project email Project Officer, Amy Anderson via <a href=\"mailto:amy.anderson@brisbanenorthphn.org.au\">amy.anderson@brisbanenorthphn.org.au</a>. </strong></p>\n<p><em>Pictured above: Consumers, carers, and staff members from Dementia Australia, New Word Order and the PHN at the recent discovery workshop. </em><br /></p>',NULL,NULL,NULL),(4692,151259,1,'2021-04-20 03:47:30','2021-04-20 03:47:30','948e4182-2d98-424d-9d77-fd1dd10ced94','<p><strong>Informed by research and community consultation, the PHN has learnt that people with dementia and their carers are self-navigating their way through the healthcare system, with no guidance on how to navigate its complexity, resulting in feelings of frustration and defeat. </strong></p>\n<p>Taking on recent feedback received from a wide range of people, including people living with dementia, Brisbane North PHN is currently working to improve dementia service navigation across the North Brisbane and Moreton Bay region by creating an online dementia service navigation platform and hardcopy directory. These resources will be designed collaboratively with people living with dementia, their carers and families—as well as health professionals and service providers—to best meet each of their needs. <br /></p>\n<p>The online platform will enable easy navigation and direct users to a range of community-based and national-level services. The services will be comprehensive and cover a range of practical, social and psychological supports needed across the dementia journey. The aim of creating these resources is to help people live well with dementia and to remain active in the community for as long as possible. </p>\n<p>For general practitioners and health workers, this portal can be used as a singular point for referrals and information; to understand what support is needed for a patient with dementia when living in the community and what services are locally available. </p>\n<p>The PHN is collaborating with Dementia Australia to hold carer and consumer workshops to inform the content, and working with creative agency, New Word Order to develop the website and hardcopy resource. </p>\n<p>The Moreton Bay Dementia Alliance has also been a valuable advocacy group for the development of this piece of work. </p>\n<p>In the future, we plan to expand this digital resource to include service navigation for the needs of all older people for healthy living and wellbeing in the North Brisbane and Moreton Bay region. </p>\n<p><strong>For more information on this project email Project Officer, Amy Anderson via <a href=\"mailto:amy.anderson@brisbanenorthphn.org.au\">amy.anderson@brisbanenorthphn.org.au</a>. </strong></p>\n<p><em>Pictured above: Consumers, carers, and staff members from Dementia Australia, New Word Order and the PHN at the recent discovery workshop. </em><br /></p>',NULL,NULL,NULL),(4693,151275,1,'2021-04-20 04:53:56','2021-04-20 04:53:56','9e5c7b5d-085f-40b9-8772-dd93e5aed6a4','<p><strong>Informed by research and community consultation, the PHN has learnt that people with dementia and their carers are self-navigating their way through the healthcare system, with no guidance on how to navigate its complexity, resulting in feelings of frustration and defeat. </strong></p>\n<p>Taking on recent feedback received from a wide range of people, including people living with dementia, Brisbane North PHN is currently working to improve dementia service navigation across the North Brisbane and Moreton Bay region by creating an online dementia service navigation platform and hardcopy directory. These resources will be designed collaboratively with people living with dementia, their carers and families—as well as health professionals and service providers—to best meet each of their needs. <br /></p>\n<p>The online platform will enable easy navigation and direct users to a range of community-based and national-level services. The services will be comprehensive and cover a range of practical, social and psychological supports needed across the dementia journey. The aim of creating these resources is to help people live well with dementia and to remain active in the community for as long as possible. </p>\n<p>For general practitioners and health workers, this portal can be used as a singular point for referrals and information; to understand what support is needed for a patient with dementia when living in the community and what services are locally available. </p>\n<p>The PHN is collaborating with Dementia Australia to hold carer and consumer workshops to inform the content, and working with creative agency, New Word Order to develop the website and hardcopy resource. </p>\n<p>The Moreton Bay Dementia Alliance has also been a valuable advocacy group for the development of this piece of work. </p>\n<p>In the future, we plan to expand this digital resource to include service navigation for the needs of all older people for healthy living and wellbeing in the North Brisbane and Moreton Bay region. </p>\n<p><strong>For more information on this project email Project Officer, Amy Anderson via <a href=\"mailto:amy.anderson@brisbanenorthphn.org.au\">amy.anderson@brisbanenorthphn.org.au</a>. </strong></p>\n<p><em>Pictured above: Consumers, carers, and staff members from Dementia Australia, New Word Order and the PHN at the recent discovery workshop. </em><br /></p>',NULL,NULL,NULL),(4694,151469,1,'2021-04-20 06:15:24','2021-04-20 06:15:24','5b23db34-b66e-487d-9720-a6bf92c24867','<p><strong>Informed by research and community consultation, the PHN has learnt that people with dementia and their carers are self-navigating their way through the healthcare system, with no guidance on how to navigate its complexity, resulting in feelings of frustration and defeat. </strong></p>\n<p>Taking on recent feedback received from a wide range of people, including people living with dementia, Brisbane North PHN is currently working to improve dementia service navigation across the North Brisbane and Moreton Bay region by creating an online dementia service navigation platform and hardcopy directory. These resources will be designed collaboratively with people living with dementia, their carers and families—as well as health professionals and service providers—to best meet each of their needs. <br /></p>\n<p>The online platform will enable easy navigation and direct users to a range of community-based and national-level services. The services will be comprehensive and cover a range of practical, social and psychological supports needed across the dementia journey. The aim of creating these resources is to help people live well with dementia and to remain active in the community for as long as possible. </p>\n<p>For general practitioners and health workers, this portal can be used as a singular point for referrals and information; to understand what support is needed for a patient with dementia when living in the community and what services are locally available. </p>\n<p>The PHN is collaborating with Dementia Australia to hold carer and consumer workshops to inform the content, and working with creative agency, New Word Order to develop the website and hardcopy resource. </p>\n<p>The Moreton Bay Dementia Alliance has also been a valuable advocacy group for the development of this piece of work. </p>\n<p>In the future, we plan to expand this digital resource to include service navigation for the needs of all older people for healthy living and wellbeing in the North Brisbane and Moreton Bay region. </p>\n<p><strong>For more information on this project email Project Officer, Amy Anderson via <a href=\"mailto:amy.anderson@brisbanenorthphn.org.au\">amy.anderson@brisbanenorthphn.org.au</a>. </strong></p>\n<p><em>Pictured above: Consumers, carers, and staff members from Dementia Australia, New Word Order and the PHN at the recent discovery workshop. </em><br /></p>',NULL,NULL,NULL),(4701,151496,1,'2021-04-22 00:36:48','2021-04-29 00:53:56','879269fb-76a5-45e8-955a-93d3666d6694','<p><strong>The Australian Technical Advisory Group on Immunisation (ATAGI) issued a statement on 8 April recommending that the COVID-19 vaccine by Pfizer is preferred over the AstraZeneca vaccine in adults aged under 50 years. </strong></p>\n<p>This recommendation is based on the increasing risk of severe outcomes from COVID-19 in older adults (and hence a higher benefit from vaccination) and a potentially increased risk of thrombosis with thrombocytopenia following AstraZeneca vaccine in those under 50 years.</p>\n<p>On Tuesday 13 April, the Therapeutic Goods Administration released a <a href=\"https://protect-au.mimecast.com/s/nrlGCJyBN1SPZjYSVz6Kpz?domain=health.us19.list-manage.com\">statement</a> on the second case of thrombosis with thrombocytopenia in Australia, following an AstraZeneca COVID-19 vaccine. The Australian Government Chief Medical Officer, Professor Paul Kelly, also released a <a href=\"https://protect-au.mimecast.com/s/HGXZCK1DLGi0ORnhMAMVg3?domain=health.us19.list-manage.com\">statement</a> reiterating the safety of all Australians is the Department of Health’s number one priority.<br /></p>\n<p>The updated advice for COVID-19 vaccines in Australia is:</p>\n<ul><li><strong>Adults aged under 50 years</strong> should receive the Pfizer COVID-19 vaccine. The AstraZeneca COVID-19 vaccine can still be used if:<ul><li>you have already received your first dose without any serious side effects, or</li><li>the benefits are likely to outweigh the risks for you, and you have made an informed decision based on an understanding of the risks and benefits.</li></ul></li><li><strong>Adults over the age of 50</strong> are recommended to receive the AstraZeneca COVID-19 vaccine. This is based both on the increased risk of complications from COVID-19 with increasing age (and thus increased benefit of vaccination) and the potentially lower risk of blood clots with increasing age.</li></ul>\n<p>The Australian Government Department of Health published <a href=\"https://www.health.gov.au/resources/publications/covid-19-vaccination-weighing-up-the-potential-benefits-against-risk-of-harm-from-covid-19-vaccine-astrazeneca\" target=\"_blank\" rel=\"noreferrer noopener\">information about the AstraZeneca vaccine</a> to help patients make informed decisions.<br /></p>\n\n<p>The Australian Government Department of Health has also published information on <a href=\"https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-covid-19-vaccination-providers/covid-19-vaccine-clinical-considerations#astrazeneca-excess-dose-policy-\" target=\"_blank\" rel=\"noreferrer noopener\">managing AstraZeneca excess doses</a>. This is for general practice, GP-led Respiratory Clinics and Aboriginal Community Controlled Health Services.</p>\n<p>Queensland Health has amended the relevant information and forms on the <a href=\"https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers\">COVID-19 vaccination information for healthcare workers website</a>\nto reflect the changes and assist HHS vaccination clinics. Please visit the link above to access these updated forms, including:</p>\n<ul><li>COVID-19 Additional and Temporary Pre-Vaccination Screening Questions</li><li>COVID-19 Patient Information Sheet (Patient Resource)</li><li>COVID-19 Vaccination Clinician Decision Support Guide</li><li>COVID-19 Adverse Event Following Immunisation (AEFI) Reporting Form. </li></ul>\n<p>Please note that new clinical information and data is being released and the above advice will be amended as required.</p>',NULL,NULL,NULL),(4702,151498,1,'2021-04-22 00:36:48','2021-04-22 00:36:48','903640b0-9e09-4a9d-8970-ee0c52f5d516','<p><strong>The Australian Technical Advisory Group on Immunisation (ATAGI) issued a statement on 8 April recommending that the COVID-19 vaccine by Pfizer is preferred over the AstraZeneca vaccine in adults aged under 50 years. </strong></p>\n<p>This recommendation is based on the increasing risk of severe outcomes from COVID-19 in older adults (and hence a higher benefit from vaccination) and a potentially increased risk of thrombosis with thrombocytopenia following AstraZeneca vaccine in those under 50 years.</p>\n<p>On Tuesday 13 April, the Therapeutic Goods Administration released a <a href=\"https://protect-au.mimecast.com/s/nrlGCJyBN1SPZjYSVz6Kpz?domain=health.us19.list-manage.com\">statement</a> on the second case of thrombosis with thrombocytopenia in Australia, following an AstraZeneca COVID-19 vaccine. The Australian Government Chief Medical Officer, Professor Paul Kelly, also released a <a href=\"https://protect-au.mimecast.com/s/HGXZCK1DLGi0ORnhMAMVg3?domain=health.us19.list-manage.com\">statement</a> reiterating the safety of all Australians is the Department of Health’s number one priority.<br /></p>\n\n<p>COVID-19 vaccine AstraZeneca can be used in adults aged under 50 years where the benefits are likely to outweigh the risks for that individual and the person has made an informed decision based on an understanding of the risks and benefits. The Australian Government Department of Health published <a href=\"https://protect-au.mimecast.com/s/T8VLCE8w0yiKLZDCNNcDEd?domain=health.us19.list-manage.com\" target=\"_blank\" rel=\"noreferrer noopener\">information about the AstraZeneca vaccine</a> to help patients make informed decisions.</p>\n<p>People who have had the first dose of COVID-19 vaccine AstraZeneca without serious adverse effects can be given the second dose, including adults under 50 years.</p>\n<p>The Australian Government Department of Health has also published information on <a href=\"https://protect-au.mimecast.com/s/u6jZCZY1zgsylWNfzEM41j?domain=health.us19.list-manage.com\">managing AstraZeneca excess doses</a>. This is for general practice, GP-led Respiratory Clinics and Aboriginal Community Controlled Health Services.</p>\n<p>Queensland Health has amended the relevant information and forms on the <a href=\"https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers\">COVID-19 vaccination information for healthcare workers website</a>\nto reflect the changes and assist HHS vaccination clinics. Please visit the link above to access these updated forms, including:</p>\n<ul><li>COVID-19 Additional and Temporary Pre-Vaccination Screening Questions</li><li>COVID-19 Patient Information Sheet (Patient Resource)</li><li>COVID-19 Vaccination Clinician Decision Support Guide</li><li>COVID-19 Adverse Event Following Immunisation (AEFI) Reporting Form. </li></ul>\n<p>Please note that new clinical information and data is being released and the above advice will be amended as required.</p>',NULL,NULL,NULL),(4703,151500,1,'2021-04-22 00:36:51','2021-04-22 00:36:51','ea32d28a-0bd6-4123-8abb-6a0009da2b1a','<p><strong>The Australian Technical Advisory Group on Immunisation (ATAGI) issued a statement on 8 April recommending that the COVID-19 vaccine by Pfizer is preferred over the AstraZeneca vaccine in adults aged under 50 years. </strong></p>\n<p>This recommendation is based on the increasing risk of severe outcomes from COVID-19 in older adults (and hence a higher benefit from vaccination) and a potentially increased risk of thrombosis with thrombocytopenia following AstraZeneca vaccine in those under 50 years.</p>\n<p>On Tuesday 13 April, the Therapeutic Goods Administration released a <a href=\"https://protect-au.mimecast.com/s/nrlGCJyBN1SPZjYSVz6Kpz?domain=health.us19.list-manage.com\">statement</a> on the second case of thrombosis with thrombocytopenia in Australia, following an AstraZeneca COVID-19 vaccine. The Australian Government Chief Medical Officer, Professor Paul Kelly, also released a <a href=\"https://protect-au.mimecast.com/s/HGXZCK1DLGi0ORnhMAMVg3?domain=health.us19.list-manage.com\">statement</a> reiterating the safety of all Australians is the Department of Health’s number one priority.<br /></p>\n\n<p>COVID-19 vaccine AstraZeneca can be used in adults aged under 50 years where the benefits are likely to outweigh the risks for that individual and the person has made an informed decision based on an understanding of the risks and benefits. The Australian Government Department of Health published <a href=\"https://protect-au.mimecast.com/s/T8VLCE8w0yiKLZDCNNcDEd?domain=health.us19.list-manage.com\" target=\"_blank\" rel=\"noreferrer noopener\">information about the AstraZeneca vaccine</a> to help patients make informed decisions.</p>\n<p>People who have had the first dose of COVID-19 vaccine AstraZeneca without serious adverse effects can be given the second dose, including adults under 50 years.</p>\n<p>The Australian Government Department of Health has also published information on <a href=\"https://protect-au.mimecast.com/s/u6jZCZY1zgsylWNfzEM41j?domain=health.us19.list-manage.com\">managing AstraZeneca excess doses</a>. This is for general practice, GP-led Respiratory Clinics and Aboriginal Community Controlled Health Services.</p>\n<p>Queensland Health has amended the relevant information and forms on the <a href=\"https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers\">COVID-19 vaccination information for healthcare workers website</a>\nto reflect the changes and assist HHS vaccination clinics. Please visit the link above to access these updated forms, including:</p>\n<ul><li>COVID-19 Additional and Temporary Pre-Vaccination Screening Questions</li><li>COVID-19 Patient Information Sheet (Patient Resource)</li><li>COVID-19 Vaccination Clinician Decision Support Guide</li><li>COVID-19 Adverse Event Following Immunisation (AEFI) Reporting Form. </li></ul>\n<p>Please note that new clinical information and data is being released and the above advice will be amended as required.</p>',NULL,NULL,NULL),(4704,151502,1,'2021-04-22 00:38:44','2021-04-22 00:38:44','83011acc-da97-4748-bd9a-e8bc6af4f483','<p><strong>Brisbane North PHN and Metro North Hospital and Health Service have sponsored the development of a plan to improve mental health, suicide prevention and alcohol and other drug treatment services in the region.</strong></p>The regional plan sets out the challenges facing us and what we can all do over the next few years to improve the quality, coordination and integration of services.<br /><br />As part of the implementation of the plan, five agencies are funded by the PHN to drive actions against the plan relating to ‘Sustaining good mental health’ and ‘Responding to diversity’. These activities—to be completed by 30 June 2021— include a Carers Mental Health and Wellbeing Expo and Mental Health awareness for culturally and linguistically diverse communities.<br /><br />Read more about each of the activities below: <br /><p><strong>1. Carers Mental Health and Wellbeing Expo – Carers Queensland</strong></p>\n<p>Carers Queensland held the annual Mental Health and Wellbeing expo on Wednesday 24 March at Eatons Hill Hotel and Function Centre, with over 28 stall holders and a variety of wonderful speakers participating on the day. Carers Queensland welcomed a variety of attendees including carers, persons with lived experience of mental health, community members and organisational representatives. </p>\n<p>The day was well attended, with the aim of the event to raise awareness of mental health, increase awareness of services while providing networking opportunities to those working within the sector.</p>\n<p><strong>2. Co-designed service model to improve physical health and wellbeing – QAMH and Dr Justin Chapman QIMRB</strong></p>\n<p>The aim of this project is to conduct co-design focus groups with mental health staff and consumers, carers and families in North Brisbane to design a service model to improve the physical and mental health and wellbeing of people with mental health issues. </p>\n<p>To inform the design of a service model, we will facilitate 10 co-design workshops. Workshops will include people accessing mental health services, family and carers, and mental health staff in the North Brisbane region. </p>\n<p>To date we have run seven co-design workshops across the region, with some common themes emerging, which will help to inform the co-designed service mode.</p>\n<p>\n<strong>3. Yellow Tick Initiative – Queensland Council for LGBTI Health</strong></p>\n<p>The Queensland Council for LGBTI Health has been funded by the Brisbane North PHN to implement the new Yellow Tick initiative within the organisation, to support better outcomes and services for intersex people. </p>\n<p>The Yellow Tick is a community led initiative that assists groups to develop intersex inclusive and affirmative practices for programs, clients and staff. Through providing a policy and program review service alongside training and intersex specific resources, the Yellow Tick helps improve consistency and accountability to learn more and make services more intersex inclusive. </p>\n<p><strong>4. Mental Health awareness for culturally and linguistically diverse communities – Ethnic Communities Council of Queensland (ECCQ)</strong></p>\n<p>ECCQ aims to run two key activities to assist culturally and linguistically diverse communities to increase their knowledge and understanding of mental health, alcohol and other drugs, suicide prevention and related services. </p>\n<p>A free online interpreter workshop for community members and leaders will be held in early April to increase knowledge of how to confidently engage and access interpreter services, the importance of qualified interpreters and consumer rights. </p>\n<p>The second activity aims to provide free Mental Health First Aid training for community leaders. This training will help provide community leaders with knowledge, education and skills to support family members, friends and community members.</p>\n<p><strong>5. Volunteer Community Peer Navigators – Council on the Ageing (COTA) Queensland </strong></p>\n<p>Council on the Ageing (COTA) Queensland and Moreton Bay Regional Council are partnering to pilot a volunteer community peer navigator program at the Bribie Island library. The program aims to empower older people and their carers to access relevant services and supports and gain confidence in using technology to maintain their mental and social wellbeing and adapt to changing circumstances. </p>\n<p>Peer navigators are located in the Bribie Island library one day per week (Tuesdays) at a pop-up table and actively engage in one-to-one meaningful conversations with individuals. By listening with empathy to their story, peer navigators identify the specific needs and priorities of older people and their carers, and direct them to the most appropriate services and supports, including healthcare, social, cultural and community services and supports. </p>\n<p>The program was launched at the Bribie Island library on Monday 15 March 2021 and was attended by Division 1 Councillor Brooke Savige. Sessions will commence on Tuesday 13 April 2021 from 10.00 am to 6.00 pm. </p>\n<p><strong>Further information</strong></p>\n<p>For any information on these Planning for Wellbeing project updates, please contact Kathy Faulkner at <strong><a href=\"mailto:Kathy.Faulkner@brisbanenorthphn.org.au\" target=\"_blank\" rel=\"noreferrer noopener\">Kathy.Faulkner@brisbanenorthphn.org.au</a>.</strong></p>',NULL,NULL,NULL),(4705,151503,1,'2021-04-22 00:38:44','2021-04-22 00:38:44','fcc7ed70-ce72-49ab-8c6d-9cd7691624ed',NULL,NULL,NULL,NULL),(4706,151505,1,'2021-04-22 00:40:46','2021-04-22 00:40:46','f4b9e1be-feae-4bc9-8558-b70e4cc3abc9','<p><strong>Informed by research and community consultation, the PHN has learnt that people with dementia and their carers are self-navigating their way through the healthcare system, with no guidance on how to navigate its complexity, resulting in feelings of frustration and defeat. </strong></p>\n<p>Taking on recent feedback received from a wide range of people, including people living with dementia, Brisbane North PHN is currently working to improve dementia service navigation across the North Brisbane and Moreton Bay region by creating an online dementia service navigation platform and hardcopy directory. These resources will be designed collaboratively with people living with dementia, their carers and families—as well as health professionals and service providers—to best meet each of their needs. <br /></p>\n<p>The online platform will enable easy navigation and direct users to a range of community-based and national-level services. The services will be comprehensive and cover a range of practical, social and psychological supports needed across the dementia journey. The aim of creating these resources is to help people live well with dementia and to remain active in the community for as long as possible. </p>\n<p>For general practitioners and health workers, this portal can be used as a singular point for referrals and information; to understand what support is needed for a patient with dementia when living in the community and what services are locally available. </p>\n<p>The PHN is collaborating with Dementia Australia to hold carer and consumer workshops to inform the content, and working with creative agency, New Word Order to develop the website and hardcopy resource. </p>\n<p>The Moreton Bay Dementia Alliance has also been a valuable advocacy group for the development of this piece of work. </p>\n<p>In the future, we plan to expand this digital resource to include service navigation for the needs of all older people for healthy living and wellbeing in the North Brisbane and Moreton Bay region. </p>\n<p><strong>For more information on this project email Project Officer, Amy Anderson via <a href=\"mailto:amy.anderson@brisbanenorthphn.org.au\">amy.anderson@brisbanenorthphn.org.au</a>. </strong></p>\n<p><em>Pictured above: Consumers, carers, and staff members from Dementia Australia, New Word Order and the PHN at the recent discovery workshop. </em><br /></p>',NULL,NULL,NULL),(4711,151512,1,'2021-04-22 00:41:56','2021-04-22 00:41:56','d18c7903-00be-40de-b4e1-7e1c1d2579ee','<p><strong>Due to high demand and extended wait lists, headspace Taringa is not currently able to provide ongoing mental health counselling or physical health (GP) services to new referrals effective immediately. </strong></p>\n<p>This decision has been made to ensure we continue to provide quality care to young people on our waitlist, and to those currently accessing supports. <br /></p>\n\n<p>This interim hold is applicable to mental health and physical health (GP) supports. We will continue to accept new referrals to other allied health services, including access to sessions with our dietician, employment and vocational supports and group work*.</p>\n<p>Young people can still speak to a counsellor through eheadspace by visiting <a>eheadspace.org.au</a> or phoning 1800 650 890 or refer into another local service for ongoing counselling.</p>\n<p>We understand this may cause for concern for you and the young people you refer to us. We have developed an online resource with alternative referral options for young people seeking mental health supports that you can access this webpage <a href=\"https://headspace.org.au/headspace-centres/taringa/support-options/\">here.</a> </p>\n<p>This is a temporary situation and will be reviewed regularly. headspace Taringa are committed to supporting young people in the community and offer the best possible care. We will reopen to new referrals as soon as possible and continue to advise of any changes.</p>\n<p>If you have any questions or concerns, please contact us on <a href=\"mailto:headspace.taringa@openminds.org.au\">headspace.taringa@openminds.org.au</a> or call us on (07) 3157 1555. </p>\n<p>We understand demand for youth mental health services is a system wide issue which we’ll continue to work with our consortia to address. </p>\n<p>We would like to thank you for your ongoing support. </p>\n<p><em>*Group work is subject to COVID-19 restrictions. </em></p>',NULL,NULL,NULL),(4712,151514,1,'2021-04-22 00:41:56','2021-04-22 00:41:56','6534f631-9e09-4cd9-8016-06b712fa0499','<p><strong>Due to high demand and extended wait lists, headspace Taringa is not currently able to provide ongoing mental health counselling or physical health (GP) services to new referrals effective immediately. </strong></p>\n<p>This decision has been made to ensure we continue to provide quality care to young people on our waitlist, and to those currently accessing supports. <br /></p>\n\n<p>This interim hold is applicable to mental health and physical health (GP) supports. We will continue to accept new referrals to other allied health services, including access to sessions with our dietician, employment and vocational supports and group work*.</p>\n<p>Young people can still speak to a counsellor through eheadspace by visiting <a>eheadspace.org.au</a> or phoning 1800 650 890 or refer into another local service for ongoing counselling.</p>\n<p>We understand this may cause for concern for you and the young people you refer to us. We have developed an online resource with alternative referral options for young people seeking mental health supports that you can access this webpage <a href=\"https://headspace.org.au/headspace-centres/taringa/support-options/\">here.</a> </p>\n<p>This is a temporary situation and will be reviewed regularly. headspace Taringa are committed to supporting young people in the community and offer the best possible care. We will reopen to new referrals as soon as possible and continue to advise of any changes.</p>\n<p>If you have any questions or concerns, please contact us on <a href=\"mailto:headspace.taringa@openminds.org.au\">headspace.taringa@openminds.org.au</a> or call us on (07) 3157 1555. </p>\n<p>We understand demand for youth mental health services is a system wide issue which we’ll continue to work with our consortia to address. </p>\n<p>We would like to thank you for your ongoing support. </p>\n<p><em>*Group work is subject to COVID-19 restrictions. </em></p>',NULL,NULL,NULL),(4713,151516,1,'2021-04-22 00:41:59','2021-04-22 00:41:59','5ddc2dbf-e811-4c09-9bd5-b611f9681bde','<p><strong>Due to high demand and extended wait lists, headspace Taringa is not currently able to provide ongoing mental health counselling or physical health (GP) services to new referrals effective immediately. </strong></p>\n<p>This decision has been made to ensure we continue to provide quality care to young people on our waitlist, and to those currently accessing supports. <br /></p>\n\n<p>This interim hold is applicable to mental health and physical health (GP) supports. We will continue to accept new referrals to other allied health services, including access to sessions with our dietician, employment and vocational supports and group work*.</p>\n<p>Young people can still speak to a counsellor through eheadspace by visiting <a>eheadspace.org.au</a> or phoning 1800 650 890 or refer into another local service for ongoing counselling.</p>\n<p>We understand this may cause for concern for you and the young people you refer to us. We have developed an online resource with alternative referral options for young people seeking mental health supports that you can access this webpage <a href=\"https://headspace.org.au/headspace-centres/taringa/support-options/\">here.</a> </p>\n<p>This is a temporary situation and will be reviewed regularly. headspace Taringa are committed to supporting young people in the community and offer the best possible care. We will reopen to new referrals as soon as possible and continue to advise of any changes.</p>\n<p>If you have any questions or concerns, please contact us on <a href=\"mailto:headspace.taringa@openminds.org.au\">headspace.taringa@openminds.org.au</a> or call us on (07) 3157 1555. </p>\n<p>We understand demand for youth mental health services is a system wide issue which we’ll continue to work with our consortia to address. </p>\n<p>We would like to thank you for your ongoing support. </p>\n<p><em>*Group work is subject to COVID-19 restrictions. </em></p>',NULL,NULL,NULL),(4722,151529,1,'2021-04-22 00:48:47','2021-04-22 00:48:47','ff266fa6-bd04-4eb9-9e05-4af0fa6d726a','<p><em><strong>By Communicable Diseases Branch, Prevention Division at Queensland Health</strong></em></p>\n<p>In the context of rising gonorrhoea and syphilis notifications, the Queensland Health STI/BBV testing tool is now updated and available to use by primary care providers. The revision includes new recommendations for asymptomatic men who have sex with men, and other clinical feedback.</p>\n<p>A revised four page sexually transmissible infection (STI) and blood borne virus (BBV) testing tool for asymptomatic people and an abridged two page version are now available online via the quick reference links at <a href=\"http://www.health.qld.gov.au/sexhealth\">www.health.qld.gov.au/sexhealth</a>.<br /></p>\n\n<p>Printed versions of the testing tools can be requested from the Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine (ASHM) Queensland by email to <a href=\"mailto:samantha.ingram@ashm.org.au\" target=\"_blank\" rel=\"noreferrer noopener\">samantha.ingram@ashm.org.au</a>. You are welcome to request printed copies of the following tools at the same time: </p>\n<ul><li><a href=\"https://ashm.org.au/resources/HBV-Resources-list/decision-making-in-hbv/\">Decision making in hepatitis B</a></li><li><a href=\"https://ashm.org.au/resources/hcv-resources-list/decision-making-in-hcv/\">Decision making in hepatitis C</a></li><li><a href=\"https://ashm.org.au/resources/hiv-resources-list/decision-making-in-prep/\">Decision making in Pre-Exposure Prophylaxis (PrEP) to prevent HIV infection</a></li></ul>\n<p>The Queensland testing tools focus on asymptomatic and opportunistic testing advice for the primary health care and general practice setting and are not intended for use in a specialist sexual health clinical context. </p>\n<p>With gonorrhoea and syphilis notifications increasing in Queensland there are suggestions of changes in transmission risk. </p>\n<p>Clinical presentations can be diverse and the asymptomatic testing tools can guide testing for timely diagnoses and treatment.</p>\n<p>A more comprehensive update is subject to Australian STI Management Guidelines (<a href=\"http://www.sti.guidelines.org.au/\">www.sti.guidelines.org.au</a>) updates expected to be completed later this year.</p>',NULL,NULL,NULL),(4723,151531,1,'2021-04-22 00:48:47','2021-04-22 00:48:47','94b12e47-b5dc-4e8a-80fa-ecd5029b31a1','<p><em><strong>By Communicable Diseases Branch, Prevention Division at Queensland Health</strong></em></p>\n<p>In the context of rising gonorrhoea and syphilis notifications, the Queensland Health STI/BBV testing tool is now updated and available to use by primary care providers. The revision includes new recommendations for asymptomatic men who have sex with men, and other clinical feedback.</p>\n<p>A revised four page sexually transmissible infection (STI) and blood borne virus (BBV) testing tool for asymptomatic people and an abridged two page version are now available online via the quick reference links at <a href=\"http://www.health.qld.gov.au/sexhealth\">www.health.qld.gov.au/sexhealth</a>.<br /></p>\n\n<p>Printed versions of the testing tools can be requested from the Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine (ASHM) Queensland by email to <a href=\"mailto:samantha.ingram@ashm.org.au\" target=\"_blank\" rel=\"noreferrer noopener\">samantha.ingram@ashm.org.au</a>. You are welcome to request printed copies of the following tools at the same time: </p>\n<ul><li><a href=\"https://ashm.org.au/resources/HBV-Resources-list/decision-making-in-hbv/\">Decision making in hepatitis B</a></li><li><a href=\"https://ashm.org.au/resources/hcv-resources-list/decision-making-in-hcv/\">Decision making in hepatitis C</a></li><li><a href=\"https://ashm.org.au/resources/hiv-resources-list/decision-making-in-prep/\">Decision making in Pre-Exposure Prophylaxis (PrEP) to prevent HIV infection</a></li></ul>\n<p>The Queensland testing tools focus on asymptomatic and opportunistic testing advice for the primary health care and general practice setting and are not intended for use in a specialist sexual health clinical context. </p>\n<p>With gonorrhoea and syphilis notifications increasing in Queensland there are suggestions of changes in transmission risk. </p>\n<p>Clinical presentations can be diverse and the asymptomatic testing tools can guide testing for timely diagnoses and treatment.</p>\n<p>A more comprehensive update is subject to Australian STI Management Guidelines (<a href=\"http://www.sti.guidelines.org.au/\">www.sti.guidelines.org.au</a>) updates expected to be completed later this year.</p>',NULL,NULL,NULL),(4724,151533,1,'2021-04-22 00:48:50','2021-04-22 00:48:50','d8351987-fe1f-4579-bb24-38a60c95ba3d','<p><em><strong>By Communicable Diseases Branch, Prevention Division at Queensland Health</strong></em></p>\n<p>In the context of rising gonorrhoea and syphilis notifications, the Queensland Health STI/BBV testing tool is now updated and available to use by primary care providers. The revision includes new recommendations for asymptomatic men who have sex with men, and other clinical feedback.</p>\n<p>A revised four page sexually transmissible infection (STI) and blood borne virus (BBV) testing tool for asymptomatic people and an abridged two page version are now available online via the quick reference links at <a href=\"http://www.health.qld.gov.au/sexhealth\">www.health.qld.gov.au/sexhealth</a>.<br /></p>\n\n<p>Printed versions of the testing tools can be requested from the Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine (ASHM) Queensland by email to <a href=\"mailto:samantha.ingram@ashm.org.au\" target=\"_blank\" rel=\"noreferrer noopener\">samantha.ingram@ashm.org.au</a>. You are welcome to request printed copies of the following tools at the same time: </p>\n<ul><li><a href=\"https://ashm.org.au/resources/HBV-Resources-list/decision-making-in-hbv/\">Decision making in hepatitis B</a></li><li><a href=\"https://ashm.org.au/resources/hcv-resources-list/decision-making-in-hcv/\">Decision making in hepatitis C</a></li><li><a href=\"https://ashm.org.au/resources/hiv-resources-list/decision-making-in-prep/\">Decision making in Pre-Exposure Prophylaxis (PrEP) to prevent HIV infection</a></li></ul>\n<p>The Queensland testing tools focus on asymptomatic and opportunistic testing advice for the primary health care and general practice setting and are not intended for use in a specialist sexual health clinical context. </p>\n<p>With gonorrhoea and syphilis notifications increasing in Queensland there are suggestions of changes in transmission risk. </p>\n<p>Clinical presentations can be diverse and the asymptomatic testing tools can guide testing for timely diagnoses and treatment.</p>\n<p>A more comprehensive update is subject to Australian STI Management Guidelines (<a href=\"http://www.sti.guidelines.org.au/\">www.sti.guidelines.org.au</a>) updates expected to be completed later this year.</p>',NULL,NULL,NULL),(4725,151538,1,'2021-04-22 02:18:22','2021-04-22 02:18:22','47637769-c437-4950-9b95-56004cc1db51','<p><strong>The Australian Technical Advisory Group on Immunisation (ATAGI) issued a statement on 8 April recommending that the COVID-19 vaccine by Pfizer is preferred over the AstraZeneca vaccine in adults aged under 50 years. </strong></p>\n<p>This recommendation is based on the increasing risk of severe outcomes from COVID-19 in older adults (and hence a higher benefit from vaccination) and a potentially increased risk of thrombosis with thrombocytopenia following AstraZeneca vaccine in those under 50 years.</p>\n<p>On Tuesday 13 April, the Therapeutic Goods Administration released a <a href=\"https://protect-au.mimecast.com/s/nrlGCJyBN1SPZjYSVz6Kpz?domain=health.us19.list-manage.com\">statement</a> on the second case of thrombosis with thrombocytopenia in Australia, following an AstraZeneca COVID-19 vaccine. The Australian Government Chief Medical Officer, Professor Paul Kelly, also released a <a href=\"https://protect-au.mimecast.com/s/HGXZCK1DLGi0ORnhMAMVg3?domain=health.us19.list-manage.com\">statement</a> reiterating the safety of all Australians is the Department of Health’s number one priority.<br /></p>\n<p>COVID-19 vaccine AstraZeneca can be used in adults aged under 50 years where the benefits are likely to outweigh the risks for that individual and the person has made an informed decision based on an understanding of the risks and benefits. The Australian Government Department of Health published <a href=\"https://www.health.gov.au/resources/publications/covid-19-vaccination-weighing-up-the-potential-benefits-against-risk-of-harm-from-covid-19-vaccine-astrazeneca\" target=\"_blank\" rel=\"noreferrer noopener\">information about the AstraZeneca vaccine</a> to help patients make informed decisions.</p>\n<p>People who have had the first dose of COVID-19 vaccine AstraZeneca without serious adverse effects can be given the second dose, including adults under 50 years.</p>\n<p>The Australian Government Department of Health has also published information on <a href=\"https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-covid-19-vaccination-providers/covid-19-vaccine-clinical-considerations#astrazeneca-excess-dose-policy-\" target=\"_blank\" rel=\"noreferrer noopener\">managing AstraZeneca excess doses</a>. This is for general practice, GP-led Respiratory Clinics and Aboriginal Community Controlled Health Services.</p>\n<p>Queensland Health has amended the relevant information and forms on the <a href=\"https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers\">COVID-19 vaccination information for healthcare workers website</a>\nto reflect the changes and assist HHS vaccination clinics. Please visit the link above to access these updated forms, including:</p>\n<ul><li>COVID-19 Additional and Temporary Pre-Vaccination Screening Questions</li><li>COVID-19 Patient Information Sheet (Patient Resource)</li><li>COVID-19 Vaccination Clinician Decision Support Guide</li><li>COVID-19 Adverse Event Following Immunisation (AEFI) Reporting Form. </li></ul>\n<p>Please note that new clinical information and data is being released and the above advice will be amended as required.</p>',NULL,NULL,NULL),(4726,153327,1,'2021-04-29 00:53:56','2021-04-29 00:53:56','6346f782-7ea4-4218-ac5f-608a7f1c56a5','<p><strong>The Australian Technical Advisory Group on Immunisation (ATAGI) issued a statement on 8 April recommending that the COVID-19 vaccine by Pfizer is preferred over the AstraZeneca vaccine in adults aged under 50 years. </strong></p>\n<p>This recommendation is based on the increasing risk of severe outcomes from COVID-19 in older adults (and hence a higher benefit from vaccination) and a potentially increased risk of thrombosis with thrombocytopenia following AstraZeneca vaccine in those under 50 years.</p>\n<p>On Tuesday 13 April, the Therapeutic Goods Administration released a <a href=\"https://protect-au.mimecast.com/s/nrlGCJyBN1SPZjYSVz6Kpz?domain=health.us19.list-manage.com\">statement</a> on the second case of thrombosis with thrombocytopenia in Australia, following an AstraZeneca COVID-19 vaccine. The Australian Government Chief Medical Officer, Professor Paul Kelly, also released a <a href=\"https://protect-au.mimecast.com/s/HGXZCK1DLGi0ORnhMAMVg3?domain=health.us19.list-manage.com\">statement</a> reiterating the safety of all Australians is the Department of Health’s number one priority.<br /></p>\n<p>The updated advice for COVID-19 vaccines in Australia is:</p>\n<ul><li><strong>Adults aged under 50 years</strong> should receive the Pfizer COVID-19 vaccine. The AstraZeneca COVID-19 vaccine can still be used if:<ul><li>you have already received your first dose without any serious side effects, or</li><li>the benefits are likely to outweigh the risks for you, and you have made an informed decision based on an understanding of the risks and benefits.</li></ul></li><li><strong>Adults over the age of 50</strong> are recommended to receive the AstraZeneca COVID-19 vaccine. This is based both on the increased risk of complications from COVID-19 with increasing age (and thus increased benefit of vaccination) and the potentially lower risk of blood clots with increasing age.</li></ul>\n<p>The Australian Government Department of Health published <a href=\"https://www.health.gov.au/resources/publications/covid-19-vaccination-weighing-up-the-potential-benefits-against-risk-of-harm-from-covid-19-vaccine-astrazeneca\" target=\"_blank\" rel=\"noreferrer noopener\">information about the AstraZeneca vaccine</a> to help patients make informed decisions.<br /></p>\n\n<p>The Australian Government Department of Health has also published information on <a href=\"https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-covid-19-vaccination-providers/covid-19-vaccine-clinical-considerations#astrazeneca-excess-dose-policy-\" target=\"_blank\" rel=\"noreferrer noopener\">managing AstraZeneca excess doses</a>. This is for general practice, GP-led Respiratory Clinics and Aboriginal Community Controlled Health Services.</p>\n<p>Queensland Health has amended the relevant information and forms on the <a href=\"https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers\">COVID-19 vaccination information for healthcare workers website</a>\nto reflect the changes and assist HHS vaccination clinics. Please visit the link above to access these updated forms, including:</p>\n<ul><li>COVID-19 Additional and Temporary Pre-Vaccination Screening Questions</li><li>COVID-19 Patient Information Sheet (Patient Resource)</li><li>COVID-19 Vaccination Clinician Decision Support Guide</li><li>COVID-19 Adverse Event Following Immunisation (AEFI) Reporting Form. </li></ul>\n<p>Please note that new clinical information and data is being released and the above advice will be amended as required.</p>',NULL,NULL,NULL),(4739,153343,1,'2021-04-29 01:10:25','2021-05-04 23:40:50','8765e11c-1bbe-4825-bb6b-a83ba04cd4aa','<p><strong>This year’s Medical Mums campaign is urging parents and carers to check in with their GP to ensure childhood vaccinations are up-to-date.</strong></p>\n<p>As the world focuses on new vaccines to protect against COVID-19, there is still a real need to ensure routine childhood vaccinations are not missed. </p>\n<p>Globally, many children <a href=\"https://data.unicef.org/resources/immunization-coverage-estimates-data-visualization/\">have not been vaccinated during the pandemic</a>, leaving them at risk of serious diseases like measles and polio. Rapidly circulating misinformation around the topic of vaccination adds to this threat. </p>\n<p>Within the North Brisbane and Moreton Bay region, childhood immunisation rates remain high and the Medical Mums campaign aims to keep it this way, with the message not to neglect immunisation requirements.</p>\n<p>Vaccinations are due at 2, 4, 6, 12, 18 months and 4 years old and skipping or delaying any of these means that children are vulnerable to disease. However, if a child hasn’t been vaccinated or has missed a vaccination it’s easy to catch up—just speak to a GP, who can also answer any questions or address any hesitancy that parents might have. </p>\n<p>The Medical Mums campaign, which runs until 23 May, was launched to coincide with World Immunisation Week, celebrated every year in the last week of April.</p>\n<p>Using the theme ‘Vaccines bring us closer’, World Immunisation Week 2021 urges greater engagement around immunisation globally to promote the importance of vaccination in bringing people together, and improving the health and wellbeing of everyone.</p>\n<p>The Medical Mums campaign is currently rolling out a series of short animations across digital platforms, featuring some cute parents, their kids and their family doctor. <br /></p>\n<p>For more information, to download a poster to display in your practice, or to view the animations visit <a href=\"http://www.medicalmums.com.au\">www.medicalmums.com.au</a>. </p>',NULL,NULL,NULL),(4740,153345,1,'2021-04-29 01:10:25','2021-04-29 01:10:25','01cdd893-bf57-4135-ae32-c1fc917f4464','<p><strong>This year’s Medical Mums campaign is urging parents and carers to check in with their GP to ensure childhood vaccinations are up-to-date.</strong></p>\n<p>In 2021, as the world focuses on critically important new vaccines to protect against COVID-19, there remains a need to ensure routine childhood vaccinations are not missed so all kids have the best protection from disease. </p>\n<p>Globally, many children <a href=\"https://data.unicef.org/resources/immunization-coverage-estimates-data-visualization/\">have not been vaccinated during the pandemic</a>, leaving them at risk of serious diseases like measles and polio. Rapidly circulating misinformation around the topic of vaccination adds to this threat. </p>\n<p>Within the North Brisbane and Moreton Bay region, childhood immunisation rates remain high and the Medical Mums campaign aims to keep it this way, with the message not to neglect immunisation requirements.</p>\n<p>Vaccinations are due at 2, 4, 6, 12, 18 months and 4 years old and skipping or delaying any of these means that children are vulnerable to disease. However, if a child hasn’t been vaccinated or has missed a vaccination it’s easy to catch up—just speak to a GP, who can also answer any questions or address any hesitancy that parents might have. </p>\n<p>The Medical Mums campaign, which runs until 23 May, was launched to coincide with World Immunisation Week, celebrated every year in the last week of April.</p>\n<p>Using the theme ‘Vaccines bring us closer’, World Immunisation Week 2021 urges greater engagement around immunisation globally to promote the importance of vaccination in bringing people together, and improving the health and wellbeing of everyone.</p>\n<p>The Medical Mums campaign is currently rolling out a series of short animations across digital platforms, featuring some cute parents, their kids and their family doctor. </p>\n<p>Posters are also available to general practices within the North Brisbane and Moreton Bay region. </p>\n<p>To order a poster for your practice contact your Primary Care Liaison Officer on 07 3630 7300 more information or to view the animations visit <a href=\"http://www.medicalmums.com.au\">www.medicalmums.com.au</a>. </p>',NULL,NULL,NULL),(4741,153347,1,'2021-04-29 01:44:08','2021-04-29 01:44:08','9914f7fb-c2ef-4e3d-96b8-88c0838bc73e','<p><strong>This year’s Medical Mums campaign is urging parents and carers to check in with their GP to ensure childhood vaccinations are up-to-date.</strong></p>\n<p>In 2021, as the world focuses on critically important new vaccines to protect against COVID-19, there remains a need to ensure routine childhood vaccinations are not missed so all kids have the best protection from disease. </p>\n<p>Globally, many children <a href=\"https://data.unicef.org/resources/immunization-coverage-estimates-data-visualization/\">have not been vaccinated during the pandemic</a>, leaving them at risk of serious diseases like measles and polio. Rapidly circulating misinformation around the topic of vaccination adds to this threat. </p>\n<p>Within the North Brisbane and Moreton Bay region, childhood immunisation rates remain high and the Medical Mums campaign aims to keep it this way, with the message not to neglect immunisation requirements.</p>\n<p>Vaccinations are due at 2, 4, 6, 12, 18 months and 4 years old and skipping or delaying any of these means that children are vulnerable to disease. However, if a child hasn’t been vaccinated or has missed a vaccination it’s easy to catch up—just speak to a GP, who can also answer any questions or address any hesitancy that parents might have. </p>\n<p>The Medical Mums campaign, which runs until 23 May, was launched to coincide with World Immunisation Week, celebrated every year in the last week of April.</p>\n<p>Using the theme ‘Vaccines bring us closer’, World Immunisation Week 2021 urges greater engagement around immunisation globally to promote the importance of vaccination in bringing people together, and improving the health and wellbeing of everyone.</p>\n<p>The Medical Mums campaign is currently rolling out a series of short animations across digital platforms, featuring some cute parents, their kids and their family doctor. </p>\n<p>Posters are also available to general practices within the North Brisbane and Moreton Bay region. </p>\n<p>To order a poster for your practice contact your Primary Care Liaison Officer on 07 3630 7300 more information or to view the animations visit <a href=\"http://www.medicalmums.com.au\">www.medicalmums.com.au</a>. </p>',NULL,NULL,NULL),(4742,153349,1,'2021-04-29 01:44:22','2021-04-29 01:44:22','a75e8856-78bb-4055-9805-3c2a4515fbec','<p><strong>The Australian Technical Advisory Group on Immunisation (ATAGI) issued a statement on 8 April recommending that the COVID-19 vaccine by Pfizer is preferred over the AstraZeneca vaccine in adults aged under 50 years. </strong></p>\n<p>This recommendation is based on the increasing risk of severe outcomes from COVID-19 in older adults (and hence a higher benefit from vaccination) and a potentially increased risk of thrombosis with thrombocytopenia following AstraZeneca vaccine in those under 50 years.</p>\n<p>On Tuesday 13 April, the Therapeutic Goods Administration released a <a href=\"https://protect-au.mimecast.com/s/nrlGCJyBN1SPZjYSVz6Kpz?domain=health.us19.list-manage.com\">statement</a> on the second case of thrombosis with thrombocytopenia in Australia, following an AstraZeneca COVID-19 vaccine. The Australian Government Chief Medical Officer, Professor Paul Kelly, also released a <a href=\"https://protect-au.mimecast.com/s/HGXZCK1DLGi0ORnhMAMVg3?domain=health.us19.list-manage.com\">statement</a> reiterating the safety of all Australians is the Department of Health’s number one priority.<br /></p>\n<p>The updated advice for COVID-19 vaccines in Australia is:</p>\n<ul><li><strong>Adults aged under 50 years</strong> should receive the Pfizer COVID-19 vaccine. The AstraZeneca COVID-19 vaccine can still be used if:<ul><li>you have already received your first dose without any serious side effects, or</li><li>the benefits are likely to outweigh the risks for you, and you have made an informed decision based on an understanding of the risks and benefits.</li></ul></li><li><strong>Adults over the age of 50</strong> are recommended to receive the AstraZeneca COVID-19 vaccine. This is based both on the increased risk of complications from COVID-19 with increasing age (and thus increased benefit of vaccination) and the potentially lower risk of blood clots with increasing age.</li></ul>\n<p>The Australian Government Department of Health published <a href=\"https://www.health.gov.au/resources/publications/covid-19-vaccination-weighing-up-the-potential-benefits-against-risk-of-harm-from-covid-19-vaccine-astrazeneca\" target=\"_blank\" rel=\"noreferrer noopener\">information about the AstraZeneca vaccine</a> to help patients make informed decisions.<br /></p>\n\n<p>The Australian Government Department of Health has also published information on <a href=\"https://www.health.gov.au/initiatives-and-programs/covid-19-vaccines/information-for-covid-19-vaccination-providers/covid-19-vaccine-clinical-considerations#astrazeneca-excess-dose-policy-\" target=\"_blank\" rel=\"noreferrer noopener\">managing AstraZeneca excess doses</a>. This is for general practice, GP-led Respiratory Clinics and Aboriginal Community Controlled Health Services.</p>\n<p>Queensland Health has amended the relevant information and forms on the <a href=\"https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/novel-coronavirus-qld-clinicians/covid-19-vaccination-information-for-healthcare-workers\">COVID-19 vaccination information for healthcare workers website</a>\nto reflect the changes and assist HHS vaccination clinics. Please visit the link above to access these updated forms, including:</p>\n<ul><li>COVID-19 Additional and Temporary Pre-Vaccination Screening Questions</li><li>COVID-19 Patient Information Sheet (Patient Resource)</li><li>COVID-19 Vaccination Clinician Decision Support Guide</li><li>COVID-19 Adverse Event Following Immunisation (AEFI) Reporting Form. </li></ul>\n<p>Please note that new clinical information and data is being released and the above advice will be amended as required.</p>',NULL,NULL,NULL),(4743,153351,1,'2021-04-29 01:49:22','2021-04-29 01:49:22','166883ee-c221-48f5-b9a3-bb90951d981a','<p><strong>This year’s Medical Mums campaign is urging parents and carers to check in with their GP to ensure childhood vaccinations are up-to-date.</strong></p>\n<p>In 2021, as the world focuses on critically important new vaccines to protect against COVID-19, there remains a need to ensure routine childhood vaccinations are not missed so all kids have the best protection from disease. </p>\n<p>Globally, many children <a href=\"https://data.unicef.org/resources/immunization-coverage-estimates-data-visualization/\">have not been vaccinated during the pandemic</a>, leaving them at risk of serious diseases like measles and polio. Rapidly circulating misinformation around the topic of vaccination adds to this threat. </p>\n<p>Within the North Brisbane and Moreton Bay region, childhood immunisation rates remain high and the Medical Mums campaign aims to keep it this way, with the message not to neglect immunisation requirements.</p>\n<p>Vaccinations are due at 2, 4, 6, 12, 18 months and 4 years old and skipping or delaying any of these means that children are vulnerable to disease. However, if a child hasn’t been vaccinated or has missed a vaccination it’s easy to catch up—just speak to a GP, who can also answer any questions or address any hesitancy that parents might have. </p>\n<p>The Medical Mums campaign, which runs until 23 May, was launched to coincide with World Immunisation Week, celebrated every year in the last week of April.</p>\n<p>Using the theme ‘Vaccines bring us closer’, World Immunisation Week 2021 urges greater engagement around immunisation globally to promote the importance of vaccination in bringing people together, and improving the health and wellbeing of everyone.</p>\n<p>The Medical Mums campaign is currently rolling out a series of short animations across digital platforms, featuring some cute parents, their kids and their family doctor. <br /></p>\n\n<p>For more information, to download a poster to display in your practice, or to view the animations visit <a href=\"http://www.medicalmums.com.au\">www.medicalmums.com.au</a>. </p>',NULL,NULL,NULL),(4744,153353,1,'2021-04-29 01:51:31','2021-04-29 01:51:31','52551809-ad11-4924-b16d-d8885567a153','<p><strong>This year’s Medical Mums campaign is urging parents and carers to check in with their GP to ensure childhood vaccinations are up-to-date.</strong></p>\n<p>In 2021, as the world focuses on critically important new vaccines to protect against COVID-19, there remains a need to ensure routine childhood vaccinations are not missed so all kids have the best protection from certain diseases. </p>\n<p>Globally, many children <a href=\"https://data.unicef.org/resources/immunization-coverage-estimates-data-visualization/\">have not been vaccinated during the pandemic</a>, leaving them at risk of serious diseases like measles and polio. Rapidly circulating misinformation around the topic of vaccination adds to this threat. </p>\n<p>Within the North Brisbane and Moreton Bay region, childhood immunisation rates remain high and the Medical Mums campaign aims to keep it this way, with the message not to neglect immunisation requirements.</p>\n<p>Vaccinations are due at 2, 4, 6, 12, 18 months and 4 years old and skipping or delaying any of these means that children are vulnerable to disease. However, if a child hasn’t been vaccinated or has missed a vaccination it’s easy to catch up—just speak to a GP, who can also answer any questions or address any hesitancy that parents might have. </p>\n<p>The Medical Mums campaign, which runs until 23 May, was launched to coincide with World Immunisation Week, celebrated every year in the last week of April.</p>\n<p>Using the theme ‘Vaccines bring us closer’, World Immunisation Week 2021 urges greater engagement around immunisation globally to promote the importance of vaccination in bringing people together, and improving the health and wellbeing of everyone.</p>\n<p>The Medical Mums campaign is currently rolling out a series of short animations across digital platforms, featuring some cute parents, their kids and their family doctor. <br /></p>\n<p>For more information, to download a poster to display in your practice, or to view the animations visit <a href=\"http://www.medicalmums.com.au\">www.medicalmums.com.au</a>. </p>',NULL,NULL,NULL),(4745,153358,1,'2021-04-29 02:31:15','2021-04-29 02:31:15','270e5c71-abd4-489d-a2e2-ec3c4137318f','<p><strong>This year’s Medical Mums campaign is urging parents and carers to check in with their GP to ensure childhood vaccinations are up-to-date.</strong></p>\n<p>In 2021, as the world focuses on critically important new vaccines to protect against COVID-19, there remains a need to ensure routine childhood vaccinations are not missed so all kids have the best protection from certain diseases. </p>\n<p>Globally, many children <a href=\"https://data.unicef.org/resources/immunization-coverage-estimates-data-visualization/\">have not been vaccinated during the pandemic</a>, leaving them at risk of serious diseases like measles and polio. Rapidly circulating misinformation around the topic of vaccination adds to this threat. </p>\n<p>Within the North Brisbane and Moreton Bay region, childhood immunisation rates remain high and the Medical Mums campaign aims to keep it this way, with the message not to neglect immunisation requirements.</p>\n<p>Vaccinations are due at 2, 4, 6, 12, 18 months and 4 years old and skipping or delaying any of these means that children are vulnerable to disease. However, if a child hasn’t been vaccinated or has missed a vaccination it’s easy to catch up—just speak to a GP, who can also answer any questions or address any hesitancy that parents might have. </p>\n<p>The Medical Mums campaign, which runs until 23 May, was launched to coincide with World Immunisation Week, celebrated every year in the last week of April.</p>\n<p>Using the theme ‘Vaccines bring us closer’, World Immunisation Week 2021 urges greater engagement around immunisation globally to promote the importance of vaccination in bringing people together, and improving the health and wellbeing of everyone.</p>\n<p>The Medical Mums campaign is currently rolling out a series of short animations across digital platforms, featuring some cute parents, their kids and their family doctor. <br /></p>\n<p>For more information, to download a poster to display in your practice, or to view the animations visit <a href=\"http://www.medicalmums.com.au\">www.medicalmums.com.au</a>. </p>',NULL,NULL,NULL),(4754,154025,1,'2021-05-04 03:55:14','2021-05-04 03:55:14','73d07efc-de29-4897-93f5-c0209a1c23d8','<p><strong>This year’s Heart Week, that runs from 3-9 May 2021, presents an opportunity for healthcare professionals to engage with patients about their risk of developing cardiovascular disease (CVD). </strong> </p>\n<p>Heart Foundation Senior Heart Health Coordinator Andrea Love, said it is vital to prioritise heart health this week and every week. </p>\n<p>“76,500 CVD-related events could be prevented with a heart health check,” Ms Love said. <br /></p>\n\n<p>The Heart Foundation’s focus this Heart Week is on supporting health professionals to deliver more Heart Health Checks to eligible patients, a vital step to empower people to look after their heart health. </p>\n<p>“Within general practice the Heart Health Check is a relative new item number and takes about 20 minutes to complete,” Ms Love said. </p>\n<p>From 1 April 2019, two MBS items were introduced to allow GPs and medical practitioners (other than a specialist of consultant physicians) to conduct a heart health check. </p>\n<p>Ms Love said the COVID-19 pandemic had made people more aware of how important health is—and makes a case for the prevention of chronic disease. </p>\n<p>“People who live with cardiovascular disease have increased vulnerability to severe complications of COVID-19 and the issues we had (during the height of the pandemic) were people avoiding regular consultations.” </p>\n<p>“Now we have the vaccine rollout and people are coming into their GPs to be vaccinated. They could also ask about a heart health check in order to maximise on visits to primary care.” </p>\n<p>On Wednesday 5 May, the Heart Foundation will host the Heart Week webinar, <em>Driving Best Practice CVD Prevention in a Post-COVID World</em>. </p>\n<p>Ms Love said the webinar would be relevant to all clinicians. </p>\n<p>“We have a really great panel and the main topic will be how COVID-19 has impacted CVD health and the strategies that complement the CVD risk approach,” she said. </p>\n<p>One of the complementary strategies that GPs are encouraged to talk to at-risk patients about, is the <a href=\"http://www.myhealthforlife.com.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><em>My health for life</em> program,</a> designed to help Queenslanders stay well and lessen their risk of developing conditions such as type 2 diabetes, heart disease, stroke, high cholesterol and high blood pressure. </p>\n<p>Ms Love said <em>My health for life</em> offers patients a lifestyle-based intervention that complements other therapies that their clinicians might suggest. </p>\n<p>For more information on the Heart Foundation webinar, visit the <a href=\"https://heartfoundation-au.zoom.us/webinar/register/5916189736296/WN_Nl-0JVlBSkCU72j7sNBttA\" target=\"_blank\" rel=\"noreferrer noopener\">Zoom registration page</a>. </p>\n<p>On Thursday 13 May, the PHN is also hosting a CVD-focused quality improvement webinar<em>,</em> Cardiovascular Disease in Primary Care, for practice staff. For more information, <a href=\"https://brisbanenorthphn.org.au/events/quality-improvement-focus-cardiovascular-disease-in-primary-care\" target=\"_blank\" rel=\"noreferrer noopener\">visit the PHN website</a>. </p>\n<p>Health professionals can download the Heart Foundation’s Heart Health Check Toolkit <a href=\"https://www.heartfoundation.org.au/Bundles/Heart-Health-Check-Toolkit/\" target=\"_blank\" rel=\"noreferrer noopener\">from their website</a>. </p>',NULL,NULL,NULL),(4755,154027,1,'2021-05-04 03:55:14','2021-05-04 03:55:14','da65ba27-102c-4649-be52-6ac28fd36351','<p><strong>This year’s Heart Week, that runs from 3-9 May 2021, presents an opportunity for healthcare professionals to engage with patients about their risk of developing cardiovascular disease (CVD). </strong> </p>\n<p>Heart Foundation Senior Heart Health Coordinator Andrea Love, said it is vital to prioritise heart health this week and every week. </p>\n<p>“76,500 CVD-related events could be prevented with a heart health check,” Ms Love said. <br /></p>\n\n<p>The Heart Foundation’s focus this Heart Week is on supporting health professionals to deliver more Heart Health Checks to eligible patients, a vital step to empower people to look after their heart health. </p>\n<p>“Within general practice the Heart Health Check is a relative new item number and takes about 20 minutes to complete,” Ms Love said. </p>\n<p>From 1 April 2019, two MBS items were introduced to allow GPs and medical practitioners (other than a specialist of consultant physicians) to conduct a heart health check. </p>\n<p>Ms Love said the COVID-19 pandemic had made people more aware of how important health is—and makes a case for the prevention of chronic disease. </p>\n<p>“People who live with cardiovascular disease have increased vulnerability to severe complications of COVID-19 and the issues we had (during the height of the pandemic) were people avoiding regular consultations.” </p>\n<p>“Now we have the vaccine rollout and people are coming into their GPs to be vaccinated. They could also ask about a heart health check in order to maximise on visits to primary care.” </p>\n<p>On Wednesday 5 May, the Heart Foundation will host the Heart Week webinar, <em>Driving Best Practice CVD Prevention in a Post-COVID World</em>. </p>\n<p>Ms Love said the webinar would be relevant to all clinicians. </p>\n<p>“We have a really great panel and the main topic will be how COVID-19 has impacted CVD health and the strategies that complement the CVD risk approach,” she said. </p>\n<p>One of the complementary strategies that GPs are encouraged to talk to at-risk patients about, is the <a href=\"http://www.myhealthforlife.com.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><em>My health for life</em> program,</a> designed to help Queenslanders stay well and lessen their risk of developing conditions such as type 2 diabetes, heart disease, stroke, high cholesterol and high blood pressure. </p>\n<p>Ms Love said <em>My health for life</em> offers patients a lifestyle-based intervention that complements other therapies that their clinicians might suggest. </p>\n<p>For more information on the Heart Foundation webinar, visit the <a href=\"https://heartfoundation-au.zoom.us/webinar/register/5916189736296/WN_Nl-0JVlBSkCU72j7sNBttA\" target=\"_blank\" rel=\"noreferrer noopener\">Zoom registration page</a>. </p>\n<p>On Thursday 13 May, the PHN is also hosting a CVD-focused quality improvement webinar<em>,</em> Cardiovascular Disease in Primary Care, for practice staff. For more information, <a href=\"https://brisbanenorthphn.org.au/events/quality-improvement-focus-cardiovascular-disease-in-primary-care\" target=\"_blank\" rel=\"noreferrer noopener\">visit the PHN website</a>. </p>\n<p>Health professionals can download the Heart Foundation’s Heart Health Check Toolkit <a href=\"https://www.heartfoundation.org.au/Bundles/Heart-Health-Check-Toolkit/\" target=\"_blank\" rel=\"noreferrer noopener\">from their website</a>. </p>',NULL,NULL,NULL),(4756,154029,1,'2021-05-04 03:55:17','2021-05-04 03:55:17','22c7033c-ac95-4b5c-8ad7-d27c46938e6a','<p><strong>This year’s Heart Week, that runs from 3-9 May 2021, presents an opportunity for healthcare professionals to engage with patients about their risk of developing cardiovascular disease (CVD). </strong> </p>\n<p>Heart Foundation Senior Heart Health Coordinator Andrea Love, said it is vital to prioritise heart health this week and every week. </p>\n<p>“76,500 CVD-related events could be prevented with a heart health check,” Ms Love said. <br /></p>\n\n<p>The Heart Foundation’s focus this Heart Week is on supporting health professionals to deliver more Heart Health Checks to eligible patients, a vital step to empower people to look after their heart health. </p>\n<p>“Within general practice the Heart Health Check is a relative new item number and takes about 20 minutes to complete,” Ms Love said. </p>\n<p>From 1 April 2019, two MBS items were introduced to allow GPs and medical practitioners (other than a specialist of consultant physicians) to conduct a heart health check. </p>\n<p>Ms Love said the COVID-19 pandemic had made people more aware of how important health is—and makes a case for the prevention of chronic disease. </p>\n<p>“People who live with cardiovascular disease have increased vulnerability to severe complications of COVID-19 and the issues we had (during the height of the pandemic) were people avoiding regular consultations.” </p>\n<p>“Now we have the vaccine rollout and people are coming into their GPs to be vaccinated. They could also ask about a heart health check in order to maximise on visits to primary care.” </p>\n<p>On Wednesday 5 May, the Heart Foundation will host the Heart Week webinar, <em>Driving Best Practice CVD Prevention in a Post-COVID World</em>. </p>\n<p>Ms Love said the webinar would be relevant to all clinicians. </p>\n<p>“We have a really great panel and the main topic will be how COVID-19 has impacted CVD health and the strategies that complement the CVD risk approach,” she said. </p>\n<p>One of the complementary strategies that GPs are encouraged to talk to at-risk patients about, is the <a href=\"http://www.myhealthforlife.com.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><em>My health for life</em> program,</a> designed to help Queenslanders stay well and lessen their risk of developing conditions such as type 2 diabetes, heart disease, stroke, high cholesterol and high blood pressure. </p>\n<p>Ms Love said <em>My health for life</em> offers patients a lifestyle-based intervention that complements other therapies that their clinicians might suggest. </p>\n<p>For more information on the Heart Foundation webinar, visit the <a href=\"https://heartfoundation-au.zoom.us/webinar/register/5916189736296/WN_Nl-0JVlBSkCU72j7sNBttA\" target=\"_blank\" rel=\"noreferrer noopener\">Zoom registration page</a>. </p>\n<p>On Thursday 13 May, the PHN is also hosting a CVD-focused quality improvement webinar<em>,</em> Cardiovascular Disease in Primary Care, for practice staff. For more information, <a href=\"https://brisbanenorthphn.org.au/events/quality-improvement-focus-cardiovascular-disease-in-primary-care\" target=\"_blank\" rel=\"noreferrer noopener\">visit the PHN website</a>. </p>\n<p>Health professionals can download the Heart Foundation’s Heart Health Check Toolkit <a href=\"https://www.heartfoundation.org.au/Bundles/Heart-Health-Check-Toolkit/\" target=\"_blank\" rel=\"noreferrer noopener\">from their website</a>. </p>',NULL,NULL,NULL),(4757,154032,1,'2021-05-04 03:59:16','2021-05-04 03:59:16','71697b56-599e-42c5-b41e-ac8320f0beae','<p><strong>This year’s Heart Week, that runs from 3-9 May 2021, presents an opportunity for healthcare professionals to engage with patients about their risk of developing cardiovascular disease (CVD). </strong> </p>\n<p>Heart Foundation Senior Heart Health Coordinator Andrea Love, said it is vital to prioritise heart health this week and every week. </p>\n<p>“76,500 CVD-related events could be prevented with a heart health check,” Ms Love said. <br /></p>\n\n<p>The Heart Foundation’s focus this Heart Week is on supporting health professionals to deliver more Heart Health Checks to eligible patients, a vital step to empower people to look after their heart health. </p>\n<p>“Within general practice the Heart Health Check is a relative new item number and takes about 20 minutes to complete,” Ms Love said. </p>\n<p>From 1 April 2019, two MBS items were introduced to allow GPs and medical practitioners (other than a specialist of consultant physicians) to conduct a heart health check. </p>\n<p>Ms Love said the COVID-19 pandemic had made people more aware of how important health is—and makes a case for the prevention of chronic disease. </p>\n<p>“People who live with cardiovascular disease have increased vulnerability to severe complications of COVID-19 and the issues we had (during the height of the pandemic) were people avoiding regular consultations.” </p>\n<p>“Now we have the vaccine rollout and people are coming into their GPs to be vaccinated. They could also ask about a heart health check in order to maximise on visits to primary care.” </p>\n<p>On Wednesday 5 May, the Heart Foundation will host the Heart Week webinar, <em>Driving Best Practice CVD Prevention in a Post-COVID World</em>. </p>\n<p>Ms Love said the webinar would be relevant to all clinicians. </p>\n<p>“We have a really great panel and the main topic will be how COVID-19 has impacted CVD health and the strategies that complement the CVD risk approach,” she said. </p>\n<p>One of the complementary strategies that GPs are encouraged to talk to at-risk patients about, is the <a href=\"http://www.myhealthforlife.com.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><em>My health for life</em> program,</a> designed to help Queenslanders stay well and lessen their risk of developing conditions such as type 2 diabetes, heart disease, stroke, high cholesterol and high blood pressure. </p>\n<p>Ms Love said <em>My health for life</em> offers patients a lifestyle-based intervention that complements other therapies that their clinicians might suggest. </p>\n<p>For more information on the Heart Foundation webinar, visit the <a href=\"https://heartfoundation-au.zoom.us/webinar/register/5916189736296/WN_Nl-0JVlBSkCU72j7sNBttA\" target=\"_blank\" rel=\"noreferrer noopener\">Zoom registration page</a>. </p>\n<p>On Thursday 13 May, the PHN is also hosting a CVD-focused quality improvement webinar<em>,</em> Cardiovascular Disease in Primary Care, for practice staff. For more information, <a href=\"https://brisbanenorthphn.org.au/events/quality-improvement-focus-cardiovascular-disease-in-primary-care\" target=\"_blank\" rel=\"noreferrer noopener\">visit the PHN website</a>. </p>\n<p>Health professionals can download the Heart Foundation’s Heart Health Check Toolkit <a href=\"https://www.heartfoundation.org.au/Bundles/Heart-Health-Check-Toolkit/\" target=\"_blank\" rel=\"noreferrer noopener\">from their website</a>. </p>',NULL,NULL,NULL),(4759,154035,1,'2021-05-04 04:00:20','2021-05-04 04:00:20','1c4284a1-f871-4aaf-9d5c-554bb39357ad','<p><strong>This year’s Heart Week, that runs from 3-9 May 2021, presents an opportunity for healthcare professionals to engage with patients about their risk of developing cardiovascular disease (CVD). </strong> </p>\n<p>Heart Foundation Senior Heart Health Coordinator Andrea Love, said it is vital to prioritise heart health this week and every week. </p>\n<p>“76,500 CVD-related events could be prevented with a heart health check,” Ms Love said. <br /></p>\n\n<p>The Heart Foundation’s focus this Heart Week is on supporting health professionals to deliver more Heart Health Checks to eligible patients, a vital step to empower people to look after their heart health. </p>\n<p>“Within general practice the Heart Health Check is a relative new item number and takes about 20 minutes to complete,” Ms Love said. </p>\n<p>From 1 April 2019, two MBS items were introduced to allow GPs and medical practitioners (other than a specialist of consultant physicians) to conduct a heart health check. </p>\n<p>Ms Love said the COVID-19 pandemic had made people more aware of how important health is—and makes a case for the prevention of chronic disease. </p>\n<p>“People who live with cardiovascular disease have increased vulnerability to severe complications of COVID-19 and the issues we had (during the height of the pandemic) were people avoiding regular consultations.” </p>\n<p>“Now we have the vaccine rollout and people are coming into their GPs to be vaccinated. They could also ask about a heart health check in order to maximise on visits to primary care.” </p>\n<p>On Wednesday 5 May, the Heart Foundation will host the Heart Week webinar, <em>Driving Best Practice CVD Prevention in a Post-COVID World</em>. </p>\n<p>Ms Love said the webinar would be relevant to all clinicians. </p>\n<p>“We have a really great panel and the main topic will be how COVID-19 has impacted CVD health and the strategies that complement the CVD risk approach,” she said. </p>\n<p>One of the complementary strategies that GPs are encouraged to talk to at-risk patients about, is the <a href=\"http://www.myhealthforlife.com.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><em>My health for life</em> program,</a> designed to help Queenslanders stay well and lessen their risk of developing conditions such as type 2 diabetes, heart disease, stroke, high cholesterol and high blood pressure. </p>\n<p>Ms Love said <em>My health for life</em> offers patients a lifestyle-based intervention that complements other therapies that their clinicians might suggest. </p>\n<p>For more information on the Heart Foundation webinar, visit the <a href=\"https://heartfoundation-au.zoom.us/webinar/register/5916189736296/WN_Nl-0JVlBSkCU72j7sNBttA\" target=\"_blank\" rel=\"noreferrer noopener\">Zoom registration page</a>. </p>\n<p>On Thursday 13 May, the PHN is also hosting a CVD-focused quality improvement webinar<em>,</em> Cardiovascular Disease in Primary Care, for practice staff. For more information, <a href=\"https://brisbanenorthphn.org.au/events/quality-improvement-focus-cardiovascular-disease-in-primary-care\" target=\"_blank\" rel=\"noreferrer noopener\">visit the PHN website</a>. </p>\n<p>Health professionals can download the Heart Foundation’s Heart Health Check Toolkit <a href=\"https://www.heartfoundation.org.au/Bundles/Heart-Health-Check-Toolkit/\" target=\"_blank\" rel=\"noreferrer noopener\">from their website</a>. </p>',NULL,NULL,NULL),(4760,154037,1,'2021-05-04 04:00:20','2021-05-04 04:00:20','601b8ee2-3dda-46aa-9321-44c51dd3fb5a','<p><strong>This year’s Heart Week, that runs from 3-9 May 2021, presents an opportunity for healthcare professionals to engage with patients about their risk of developing cardiovascular disease (CVD). </strong> </p>\n<p>Heart Foundation Senior Heart Health Coordinator Andrea Love, said it is vital to prioritise heart health this week and every week. </p>\n<p>“76,500 CVD-related events could be prevented with a heart health check,” Ms Love said. <br /></p>\n\n<p>The Heart Foundation’s focus this Heart Week is on supporting health professionals to deliver more Heart Health Checks to eligible patients, a vital step to empower people to look after their heart health. </p>\n<p>“Within general practice the Heart Health Check is a relative new item number and takes about 20 minutes to complete,” Ms Love said. </p>\n<p>From 1 April 2019, two MBS items were introduced to allow GPs and medical practitioners (other than a specialist of consultant physicians) to conduct a heart health check. </p>\n<p>Ms Love said the COVID-19 pandemic had made people more aware of how important health is—and makes a case for the prevention of chronic disease. </p>\n<p>“People who live with cardiovascular disease have increased vulnerability to severe complications of COVID-19 and the issues we had (during the height of the pandemic) were people avoiding regular consultations.” </p>\n<p>“Now we have the vaccine rollout and people are coming into their GPs to be vaccinated. They could also ask about a heart health check in order to maximise on visits to primary care.” </p>\n<p>On Wednesday 5 May, the Heart Foundation will host the Heart Week webinar, <em>Driving Best Practice CVD Prevention in a Post-COVID World</em>. </p>\n<p>Ms Love said the webinar would be relevant to all clinicians. </p>\n<p>“We have a really great panel and the main topic will be how COVID-19 has impacted CVD health and the strategies that complement the CVD risk approach,” she said. </p>\n<p>One of the complementary strategies that GPs are encouraged to talk to at-risk patients about, is the <a href=\"http://www.myhealthforlife.com.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><em>My health for life</em> program,</a> designed to help Queenslanders stay well and lessen their risk of developing conditions such as type 2 diabetes, heart disease, stroke, high cholesterol and high blood pressure. </p>\n<p>Ms Love said <em>My health for life</em> offers patients a lifestyle-based intervention that complements other therapies that their clinicians might suggest. </p>\n<p>For more information on the Heart Foundation webinar, visit the <a href=\"https://heartfoundation-au.zoom.us/webinar/register/5916189736296/WN_Nl-0JVlBSkCU72j7sNBttA\" target=\"_blank\" rel=\"noreferrer noopener\">Zoom registration page</a>. </p>\n<p>On Thursday 13 May, the PHN is also hosting a CVD-focused quality improvement webinar<em>,</em> Cardiovascular Disease in Primary Care, for practice staff. For more information, <a href=\"https://brisbanenorthphn.org.au/events/quality-improvement-focus-cardiovascular-disease-in-primary-care\" target=\"_blank\" rel=\"noreferrer noopener\">visit the PHN website</a>. </p>\n<p>Health professionals can download the Heart Foundation’s Heart Health Check Toolkit <a href=\"https://www.heartfoundation.org.au/Bundles/Heart-Health-Check-Toolkit/\" target=\"_blank\" rel=\"noreferrer noopener\">from their website</a>. </p>',NULL,NULL,NULL),(4761,154039,1,'2021-05-04 04:00:23','2021-05-04 04:00:23','88949617-022c-4cd5-8238-6c470bd953b2','<p><strong>This year’s Heart Week, that runs from 3-9 May 2021, presents an opportunity for healthcare professionals to engage with patients about their risk of developing cardiovascular disease (CVD). </strong> </p>\n<p>Heart Foundation Senior Heart Health Coordinator Andrea Love, said it is vital to prioritise heart health this week and every week. </p>\n<p>“76,500 CVD-related events could be prevented with a heart health check,” Ms Love said. <br /></p>\n\n<p>The Heart Foundation’s focus this Heart Week is on supporting health professionals to deliver more Heart Health Checks to eligible patients, a vital step to empower people to look after their heart health. </p>\n<p>“Within general practice the Heart Health Check is a relative new item number and takes about 20 minutes to complete,” Ms Love said. </p>\n<p>From 1 April 2019, two MBS items were introduced to allow GPs and medical practitioners (other than a specialist of consultant physicians) to conduct a heart health check. </p>\n<p>Ms Love said the COVID-19 pandemic had made people more aware of how important health is—and makes a case for the prevention of chronic disease. </p>\n<p>“People who live with cardiovascular disease have increased vulnerability to severe complications of COVID-19 and the issues we had (during the height of the pandemic) were people avoiding regular consultations.” </p>\n<p>“Now we have the vaccine rollout and people are coming into their GPs to be vaccinated. They could also ask about a heart health check in order to maximise on visits to primary care.” </p>\n<p>On Wednesday 5 May, the Heart Foundation will host the Heart Week webinar, <em>Driving Best Practice CVD Prevention in a Post-COVID World</em>. </p>\n<p>Ms Love said the webinar would be relevant to all clinicians. </p>\n<p>“We have a really great panel and the main topic will be how COVID-19 has impacted CVD health and the strategies that complement the CVD risk approach,” she said. </p>\n<p>One of the complementary strategies that GPs are encouraged to talk to at-risk patients about, is the <a href=\"http://www.myhealthforlife.com.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><em>My health for life</em> program,</a> designed to help Queenslanders stay well and lessen their risk of developing conditions such as type 2 diabetes, heart disease, stroke, high cholesterol and high blood pressure. </p>\n<p>Ms Love said <em>My health for life</em> offers patients a lifestyle-based intervention that complements other therapies that their clinicians might suggest. </p>\n<p>For more information on the Heart Foundation webinar, visit the <a href=\"https://heartfoundation-au.zoom.us/webinar/register/5916189736296/WN_Nl-0JVlBSkCU72j7sNBttA\" target=\"_blank\" rel=\"noreferrer noopener\">Zoom registration page</a>. </p>\n<p>On Thursday 13 May, the PHN is also hosting a CVD-focused quality improvement webinar<em>,</em> Cardiovascular Disease in Primary Care, for practice staff. For more information, <a href=\"https://brisbanenorthphn.org.au/events/quality-improvement-focus-cardiovascular-disease-in-primary-care\" target=\"_blank\" rel=\"noreferrer noopener\">visit the PHN website</a>. </p>\n<p>Health professionals can download the Heart Foundation’s Heart Health Check Toolkit <a href=\"https://www.heartfoundation.org.au/Bundles/Heart-Health-Check-Toolkit/\" target=\"_blank\" rel=\"noreferrer noopener\">from their website</a>. </p>',NULL,NULL,NULL),(4766,154047,1,'2021-05-04 04:02:34','2021-05-04 04:02:34','c1956495-ffca-4f02-a5c5-398658c2a7d7','<p><strong>Dr Jim Rowan-Parry recently spoke to the PHN’s Digital Health Officers about his experience using GP Smart Referrals software, introduced within Queensland general practices during 2020.</strong> </p>\n<p>GP Smart Referrals allows general practices to send referrals electronically through to Metro North Hospital and Health Service. </p>\n<p>This enables faster, streamlined management and less double handling of referrals across our health service. </p>\n<p>Dr Rowan Parry, a GP at Medical Matters in Murrumba Downs, had adapted quickly to using GP Smart Referrals, and said it was intuitive and allowed him to more efficiently process referrals. <br /></p>\n\n<p>“Once you are comfortable with the layout it becomes very easy to know where the important bits are and where to add the information you are trying to communicate,” said Dr Rowan-Parry. </p>\n<p>“It has helpful prompts as to what information should be included in the referral,” he said. </p>\n<p>“GP Smart Referrals boasts an improved ability to attach pictures and ECGs to referrals. It also has a helpful feature to park a referral if I’m waiting for more information prior to sending it.” </p>\n<p>Dr Rowan-Parry said that he is able to identify the specialist and hospital that matches the condition he is referring for; a function that saves him time but also means that patient referrals are handled more efficiently. </p>\n<p>Dr Rowan-Parry also had a helpful hint for any new uses of GP Smart Referrals. </p>\n<p>“Don’t open another patient’s notes midway through a referral as it confuses the software,” he said. </p>\n<p>“If you do, when the prompt box tells you it is going to close (the initial patient’s record) as it recognises you’re on the wrong patient, switch to the correct patient again and select cancel, you can then continue to work on the referral without losing your prior work.” </p>\n<p>For more information or request assistance using GP Smart Referrals contact the PHN’s Digital Health Officers via <a href=\"mailto:GPSR@brisbanenorthphn.org.au\" target=\"_blank\" rel=\"noreferrer noopener\">GPSR@brisbanenorthphn.org.au</a>. </p>\n',NULL,NULL,NULL),(4767,154049,1,'2021-05-04 04:02:34','2021-05-04 04:02:34','19f67a0d-ed4e-484e-95d7-1e9c9db0bd0e','<p><strong>Dr Jim Rowan-Parry recently spoke to the PHN’s Digital Health Officers about his experience using GP Smart Referrals software, introduced within Queensland general practices during 2020.</strong> </p>\n<p>GP Smart Referrals allows general practices to send referrals electronically through to Metro North Hospital and Health Service. </p>\n<p>This enables faster, streamlined management and less double handling of referrals across our health service. </p>\n<p>Dr Rowan Parry, a GP at Medical Matters in Murrumba Downs, had adapted quickly to using GP Smart Referrals, and said it was intuitive and allowed him to more efficiently process referrals. <br /></p>\n\n<p>“Once you are comfortable with the layout it becomes very easy to know where the important bits are and where to add the information you are trying to communicate,” said Dr Rowan-Parry. </p>\n<p>“It has helpful prompts as to what information should be included in the referral,” he said. </p>\n<p>“GP Smart Referrals boasts an improved ability to attach pictures and ECGs to referrals. It also has a helpful feature to park a referral if I’m waiting for more information prior to sending it.” </p>\n<p>Dr Rowan-Parry said that he is able to identify the specialist and hospital that matches the condition he is referring for; a function that saves him time but also means that patient referrals are handled more efficiently. </p>\n<p>Dr Rowan-Parry also had a helpful hint for any new uses of GP Smart Referrals. </p>\n<p>“Don’t open another patient’s notes midway through a referral as it confuses the software,” he said. </p>\n<p>“If you do, when the prompt box tells you it is going to close (the initial patient’s record) as it recognises you’re on the wrong patient, switch to the correct patient again and select cancel, you can then continue to work on the referral without losing your prior work.” </p>\n<p>For more information or request assistance using GP Smart Referrals contact the PHN’s Digital Health Officers via <a href=\"mailto:GPSR@brisbanenorthphn.org.au\" target=\"_blank\" rel=\"noreferrer noopener\">GPSR@brisbanenorthphn.org.au</a>. </p>\n',NULL,NULL,NULL),(4768,154051,1,'2021-05-04 04:02:37','2021-05-04 04:02:37','81c65f29-0855-4aed-91d7-10d4c0e8dd4c','<p><strong>Dr Jim Rowan-Parry recently spoke to the PHN’s Digital Health Officers about his experience using GP Smart Referrals software, introduced within Queensland general practices during 2020.</strong> </p>\n<p>GP Smart Referrals allows general practices to send referrals electronically through to Metro North Hospital and Health Service. </p>\n<p>This enables faster, streamlined management and less double handling of referrals across our health service. </p>\n<p>Dr Rowan Parry, a GP at Medical Matters in Murrumba Downs, had adapted quickly to using GP Smart Referrals, and said it was intuitive and allowed him to more efficiently process referrals. <br /></p>\n\n<p>“Once you are comfortable with the layout it becomes very easy to know where the important bits are and where to add the information you are trying to communicate,” said Dr Rowan-Parry. </p>\n<p>“It has helpful prompts as to what information should be included in the referral,” he said. </p>\n<p>“GP Smart Referrals boasts an improved ability to attach pictures and ECGs to referrals. It also has a helpful feature to park a referral if I’m waiting for more information prior to sending it.” </p>\n<p>Dr Rowan-Parry said that he is able to identify the specialist and hospital that matches the condition he is referring for; a function that saves him time but also means that patient referrals are handled more efficiently. </p>\n<p>Dr Rowan-Parry also had a helpful hint for any new uses of GP Smart Referrals. </p>\n<p>“Don’t open another patient’s notes midway through a referral as it confuses the software,” he said. </p>\n<p>“If you do, when the prompt box tells you it is going to close (the initial patient’s record) as it recognises you’re on the wrong patient, switch to the correct patient again and select cancel, you can then continue to work on the referral without losing your prior work.” </p>\n<p>For more information or request assistance using GP Smart Referrals contact the PHN’s Digital Health Officers via <a href=\"mailto:GPSR@brisbanenorthphn.org.au\" target=\"_blank\" rel=\"noreferrer noopener\">GPSR@brisbanenorthphn.org.au</a>. </p>\n',NULL,NULL,NULL),(4769,154053,1,'2021-05-04 04:05:11','2021-05-04 04:05:11','36ba9591-bbf4-4b19-9618-6a0a591f1cfa','<p><strong>This year’s Heart Week, that runs from 3-9 May 2021, presents an opportunity for healthcare professionals to engage with patients about their risk of developing cardiovascular disease (CVD). </strong> </p>\n<p>Heart Foundation Senior Heart Health Coordinator Andrea Love, said it is vital to prioritise heart health this week and every week. </p>\n<p>“76,500 CVD-related events could be prevented with a heart health check,” Ms Love said. <br /></p>\n\n<p>The Heart Foundation’s focus this Heart Week is on supporting health professionals to deliver more Heart Health Checks to eligible patients, a vital step to empower people to look after their heart health. </p>\n<p>“Within general practice the Heart Health Check is a relative new item number and takes about 20 minutes to complete,” Ms Love said. </p>\n<p>From 1 April 2019, two MBS items were introduced to allow GPs and medical practitioners (other than a specialist of consultant physicians) to conduct a heart health check. </p>\n<p>Ms Love said the COVID-19 pandemic had made people more aware of how important health is—and makes a case for the prevention of chronic disease. </p>\n<p>“People who live with cardiovascular disease have increased vulnerability to severe complications of COVID-19 and the issues we had (during the height of the pandemic) were people avoiding regular consultations.” </p>\n<p>“Now we have the vaccine rollout and people are coming into their GPs to be vaccinated. They could also ask about a heart health check in order to maximise on visits to primary care.” </p>\n<p>On Wednesday 5 May, the Heart Foundation will host the Heart Week webinar, <em>Driving Best Practice CVD Prevention in a Post-COVID World</em>. </p>\n<p>Ms Love said the webinar would be relevant to all clinicians. </p>\n<p>“We have a really great panel and the main topic will be how COVID-19 has impacted CVD health and the strategies that complement the CVD risk approach,” she said. </p>\n<p>One of the complementary strategies that GPs are encouraged to talk to at-risk patients about, is the <a href=\"http://www.myhealthforlife.com.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><em>My health for life</em> program,</a> designed to help Queenslanders stay well and lessen their risk of developing conditions such as type 2 diabetes, heart disease, stroke, high cholesterol and high blood pressure. </p>\n<p>Ms Love said <em>My health for life</em> offers patients a lifestyle-based intervention that complements other therapies that their clinicians might suggest. </p>\n<p>For more information on the Heart Foundation webinar, visit the <a href=\"https://heartfoundation-au.zoom.us/webinar/register/5916189736296/WN_Nl-0JVlBSkCU72j7sNBttA\" target=\"_blank\" rel=\"noreferrer noopener\">Zoom registration page</a>. </p>\n<p>On Thursday 13 May, the PHN is also hosting a CVD-focused quality improvement webinar<em>,</em> Cardiovascular Disease in Primary Care, for practice staff. For more information, <a href=\"https://brisbanenorthphn.org.au/events/quality-improvement-focus-cardiovascular-disease-in-primary-care\" target=\"_blank\" rel=\"noreferrer noopener\">visit the PHN website</a>. </p>\n<p>Health professionals can download the Heart Foundation’s Heart Health Check Toolkit <a href=\"https://www.heartfoundation.org.au/Bundles/Heart-Health-Check-Toolkit/\" target=\"_blank\" rel=\"noreferrer noopener\">from their website</a>. </p>',NULL,NULL,NULL),(4771,154060,1,'2021-05-04 05:32:10','2021-05-04 05:32:10','1ca5199f-df29-411e-9d06-33c55d37bf97','<p><strong>Dr Jim Rowan-Parry recently spoke to the PHN’s Digital Health Officers about his experience using GP Smart Referrals software, introduced within Queensland general practices during 2020.</strong> </p>\n<p>GP Smart Referrals allows general practices to send referrals electronically through to Metro North Hospital and Health Service. </p>\n<p>This enables faster, streamlined management and less double handling of referrals across our health service. </p>\n<p>Dr Rowan Parry, a GP at Medical Matters in Murrumba Downs, had adapted quickly to using GP Smart Referrals, and said it was intuitive and allowed him to more efficiently process referrals. <br /></p>\n<p>“Once you are comfortable with the layout it becomes very easy to know where the important bits are and where to add the information you are trying to communicate,” said Dr Rowan-Parry. </p>\n<p>“It has helpful prompts as to what information should be included in the referral,” he said. </p>\n<p>“GP Smart Referrals boasts an improved ability to attach pictures and ECGs to referrals. It also has a helpful feature to park a referral if I’m waiting for more information prior to sending it.” </p>\n<p>Dr Rowan-Parry said that he is able to identify the specialist and hospital that matches the condition he is referring for; a function that saves him time but also means that patient referrals are handled more efficiently. </p>\n<p>Dr Rowan-Parry also had a helpful hint for any new uses of GP Smart Referrals. </p>\n<p>“Don’t open another patient’s notes midway through a referral as it confuses the software,” he said. </p>\n<p>“If you do, when the prompt box tells you it is going to close (the initial patient’s record) as it recognises you’re on the wrong patient, switch to the correct patient again and select cancel, you can then continue to work on the referral without losing your prior work.” </p>\n<p>For more information or request assistance using GP Smart Referrals contact the PHN’s Digital Health Officers via <a href=\"mailto:GPSR@brisbanenorthphn.org.au\" target=\"_blank\" rel=\"noreferrer noopener\">GPSR@brisbanenorthphn.org.au</a>. </p>\n<p><em>Pictured: Dr Jim Rowan-Parry of Medical Matters</em></p>',NULL,NULL,NULL),(4772,154062,1,'2021-05-04 05:32:10','2021-05-04 05:32:10','a802053d-0e81-43e2-8857-baf36ddb31ea','<p><strong>Dr Jim Rowan-Parry recently spoke to the PHN’s Digital Health Officers about his experience using GP Smart Referrals software, introduced within Queensland general practices during 2020.</strong> </p>\n<p>GP Smart Referrals allows general practices to send referrals electronically through to Metro North Hospital and Health Service. </p>\n<p>This enables faster, streamlined management and less double handling of referrals across our health service. </p>\n<p>Dr Rowan Parry, a GP at Medical Matters in Murrumba Downs, had adapted quickly to using GP Smart Referrals, and said it was intuitive and allowed him to more efficiently process referrals. <br /></p>\n<p>“Once you are comfortable with the layout it becomes very easy to know where the important bits are and where to add the information you are trying to communicate,” said Dr Rowan-Parry. </p>\n<p>“It has helpful prompts as to what information should be included in the referral,” he said. </p>\n<p>“GP Smart Referrals boasts an improved ability to attach pictures and ECGs to referrals. It also has a helpful feature to park a referral if I’m waiting for more information prior to sending it.” </p>\n<p>Dr Rowan-Parry said that he is able to identify the specialist and hospital that matches the condition he is referring for; a function that saves him time but also means that patient referrals are handled more efficiently. </p>\n<p>Dr Rowan-Parry also had a helpful hint for any new uses of GP Smart Referrals. </p>\n<p>“Don’t open another patient’s notes midway through a referral as it confuses the software,” he said. </p>\n<p>“If you do, when the prompt box tells you it is going to close (the initial patient’s record) as it recognises you’re on the wrong patient, switch to the correct patient again and select cancel, you can then continue to work on the referral without losing your prior work.” </p>\n<p>For more information or request assistance using GP Smart Referrals contact the PHN’s Digital Health Officers via <a href=\"mailto:GPSR@brisbanenorthphn.org.au\" target=\"_blank\" rel=\"noreferrer noopener\">GPSR@brisbanenorthphn.org.au</a>. </p>\n<p><em>Pictured: Dr Jim Rowan-Parry of Medical Matters</em></p>',NULL,NULL,NULL),(4773,154064,1,'2021-05-04 05:32:14','2021-05-04 05:32:14','77e696b5-2736-404f-891f-74be94e28093','<p><strong>Dr Jim Rowan-Parry recently spoke to the PHN’s Digital Health Officers about his experience using GP Smart Referrals software, introduced within Queensland general practices during 2020.</strong> </p>\n<p>GP Smart Referrals allows general practices to send referrals electronically through to Metro North Hospital and Health Service. </p>\n<p>This enables faster, streamlined management and less double handling of referrals across our health service. </p>\n<p>Dr Rowan Parry, a GP at Medical Matters in Murrumba Downs, had adapted quickly to using GP Smart Referrals, and said it was intuitive and allowed him to more efficiently process referrals. <br /></p>\n<p>“Once you are comfortable with the layout it becomes very easy to know where the important bits are and where to add the information you are trying to communicate,” said Dr Rowan-Parry. </p>\n<p>“It has helpful prompts as to what information should be included in the referral,” he said. </p>\n<p>“GP Smart Referrals boasts an improved ability to attach pictures and ECGs to referrals. It also has a helpful feature to park a referral if I’m waiting for more information prior to sending it.” </p>\n<p>Dr Rowan-Parry said that he is able to identify the specialist and hospital that matches the condition he is referring for; a function that saves him time but also means that patient referrals are handled more efficiently. </p>\n<p>Dr Rowan-Parry also had a helpful hint for any new uses of GP Smart Referrals. </p>\n<p>“Don’t open another patient’s notes midway through a referral as it confuses the software,” he said. </p>\n<p>“If you do, when the prompt box tells you it is going to close (the initial patient’s record) as it recognises you’re on the wrong patient, switch to the correct patient again and select cancel, you can then continue to work on the referral without losing your prior work.” </p>\n<p>For more information or request assistance using GP Smart Referrals contact the PHN’s Digital Health Officers via <a href=\"mailto:GPSR@brisbanenorthphn.org.au\" target=\"_blank\" rel=\"noreferrer noopener\">GPSR@brisbanenorthphn.org.au</a>. </p>\n<p><em>Pictured: Dr Jim Rowan-Parry of Medical Matters</em></p>',NULL,NULL,NULL),(4775,154067,1,'2021-05-04 05:32:37','2021-05-04 23:37:47','79cdf038-692b-443e-923b-9ba87488b342','<p><strong>This year’s Heart Week, that runs from 3-9 May 2021, presents an opportunity for healthcare professionals to engage with patients about their risk of developing cardiovascular disease (CVD). </strong> </p>\n<p>The Heart Foundation’s focus this Heart Week is on supporting health professionals to deliver more Heart Health Checks to eligible patients, a vital step to empower people to look after their heart health.<br /></p>\n<p>Heart Foundation Senior Heart Health Coordinator Andrea Love, said it is vital to prioritise heart health this week and every week. </p>\n<p>“76,500 CVD-related events could be prevented with a heart health check,” Ms Love said.<br /></p>\n<p>“Within general practice the Heart Health Check is a relative new item number and takes about 20 minutes to complete,” Ms Love said. </p>\n<p>From 1 April 2019, two MBS items were introduced to allow GPs and medical practitioners (other than a specialist of consultant physicians) to conduct a heart health check. </p>\n<p>Ms Love said the COVID-19 pandemic had made people more aware of how important health is—and makes a case for the prevention of chronic disease. </p>\n<p>“People who live with cardiovascular disease have increased vulnerability to severe complications of COVID-19 and the issues we had (during the height of the pandemic) were people avoiding regular consultations.” </p>\n<p>“Now we have the vaccine rollout and people are coming into their GPs to be vaccinated. They could also ask about a heart health check in order to maximise on visits to primary care.” </p>\n<p>On Wednesday 5 May, the Heart Foundation will host the Heart Week webinar, <em>Driving Best Practice CVD Prevention in a Post-COVID World</em>. </p>\n<p>Ms Love said the webinar would be relevant to all clinicians. </p>\n<p>“We have a really great panel and the main topic will be how COVID-19 has impacted CVD health and the strategies that complement the CVD risk approach,” she said. </p>\n<p>One of the complementary strategies that GPs are encouraged to talk to at-risk patients about, is the <a href=\"http://www.myhealthforlife.com.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><em>My health for life</em> program,</a> designed to help Queenslanders stay well and lessen their risk of developing conditions such as type 2 diabetes, heart disease, stroke, high cholesterol and high blood pressure. </p>\n<p>Ms Love said <em>My health for life</em> offers patients a lifestyle-based intervention that complements other therapies that their clinicians might suggest. </p>\n<p>For more information on the Heart Foundation webinar, visit the <a href=\"https://heartfoundation-au.zoom.us/webinar/register/5916189736296/WN_Nl-0JVlBSkCU72j7sNBttA\" target=\"_blank\" rel=\"noreferrer noopener\">Zoom registration page</a>. </p>\n\n<p>On Thursday 13 May, the PHN is hosting a complimentary quality improvement focused webinar, <em>Cardiovascular Disease in Primary Care</em>, for practice staff. Registration is essential. For more information, <a href=\"https://brisbanenorthphn.org.au/events/quality-improvement-focus-cardiovascular-disease-in-primary-care\">visit the PHN website</a>.</p> \n<p>Health professionals can download the Heart Foundation’s Heart Health Check Toolkit <a href=\"https://www.heartfoundation.org.au/Bundles/Heart-Health-Check-Toolkit/\" target=\"_blank\" rel=\"noreferrer noopener\">from their website</a>. </p>',NULL,NULL,NULL),(4776,154069,1,'2021-05-04 05:32:37','2021-05-04 05:32:37','6e43f518-4bd9-466f-9efe-8118376f1a1f','<p><strong>This year’s Heart Week, that runs from 3-9 May 2021, presents an opportunity for healthcare professionals to engage with patients about their risk of developing cardiovascular disease (CVD). </strong> </p>\n<p>Heart Foundation Senior Heart Health Coordinator Andrea Love, said it is vital to prioritise heart health this week and every week. </p>\n<p>“76,500 CVD-related events could be prevented with a heart health check,” Ms Love said. <br /></p>\n\n<p>The Heart Foundation’s focus this Heart Week is on supporting health professionals to deliver more Heart Health Checks to eligible patients, a vital step to empower people to look after their heart health. </p>\n<p>“Within general practice the Heart Health Check is a relative new item number and takes about 20 minutes to complete,” Ms Love said. </p>\n<p>From 1 April 2019, two MBS items were introduced to allow GPs and medical practitioners (other than a specialist of consultant physicians) to conduct a heart health check. </p>\n<p>Ms Love said the COVID-19 pandemic had made people more aware of how important health is—and makes a case for the prevention of chronic disease. </p>\n<p>“People who live with cardiovascular disease have increased vulnerability to severe complications of COVID-19 and the issues we had (during the height of the pandemic) were people avoiding regular consultations.” </p>\n<p>“Now we have the vaccine rollout and people are coming into their GPs to be vaccinated. They could also ask about a heart health check in order to maximise on visits to primary care.” </p>\n<p>On Wednesday 5 May, the Heart Foundation will host the Heart Week webinar, <em>Driving Best Practice CVD Prevention in a Post-COVID World</em>. </p>\n<p>Ms Love said the webinar would be relevant to all clinicians. </p>\n<p>“We have a really great panel and the main topic will be how COVID-19 has impacted CVD health and the strategies that complement the CVD risk approach,” she said. </p>\n<p>One of the complementary strategies that GPs are encouraged to talk to at-risk patients about, is the <a href=\"http://www.myhealthforlife.com.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><em>My health for life</em> program,</a> designed to help Queenslanders stay well and lessen their risk of developing conditions such as type 2 diabetes, heart disease, stroke, high cholesterol and high blood pressure. </p>\n<p>Ms Love said <em>My health for life</em> offers patients a lifestyle-based intervention that complements other therapies that their clinicians might suggest. </p>\n<p>For more information on the Heart Foundation webinar, visit the <a href=\"https://heartfoundation-au.zoom.us/webinar/register/5916189736296/WN_Nl-0JVlBSkCU72j7sNBttA\" target=\"_blank\" rel=\"noreferrer noopener\">Zoom registration page</a>. </p>\n<p>On Thursday 13 May, the PHN is also hosting a CVD-focused quality improvement webinar<em>,</em> Cardiovascular Disease in Primary Care, for practice staff. For more information, <a href=\"https://brisbanenorthphn.org.au/events/quality-improvement-focus-cardiovascular-disease-in-primary-care\" target=\"_blank\" rel=\"noreferrer noopener\">visit the PHN website</a>. </p>\n<p>Health professionals can download the Heart Foundation’s Heart Health Check Toolkit <a href=\"https://www.heartfoundation.org.au/Bundles/Heart-Health-Check-Toolkit/\" target=\"_blank\" rel=\"noreferrer noopener\">from their website</a>. </p>',NULL,NULL,NULL),(4777,154071,1,'2021-05-04 05:32:40','2021-05-04 05:32:40','801998d4-f3e9-46e3-ba95-a71f12a6efd0','<p><strong>This year’s Heart Week, that runs from 3-9 May 2021, presents an opportunity for healthcare professionals to engage with patients about their risk of developing cardiovascular disease (CVD). </strong> </p>\n<p>Heart Foundation Senior Heart Health Coordinator Andrea Love, said it is vital to prioritise heart health this week and every week. </p>\n<p>“76,500 CVD-related events could be prevented with a heart health check,” Ms Love said. <br /></p>\n\n<p>The Heart Foundation’s focus this Heart Week is on supporting health professionals to deliver more Heart Health Checks to eligible patients, a vital step to empower people to look after their heart health. </p>\n<p>“Within general practice the Heart Health Check is a relative new item number and takes about 20 minutes to complete,” Ms Love said. </p>\n<p>From 1 April 2019, two MBS items were introduced to allow GPs and medical practitioners (other than a specialist of consultant physicians) to conduct a heart health check. </p>\n<p>Ms Love said the COVID-19 pandemic had made people more aware of how important health is—and makes a case for the prevention of chronic disease. </p>\n<p>“People who live with cardiovascular disease have increased vulnerability to severe complications of COVID-19 and the issues we had (during the height of the pandemic) were people avoiding regular consultations.” </p>\n<p>“Now we have the vaccine rollout and people are coming into their GPs to be vaccinated. They could also ask about a heart health check in order to maximise on visits to primary care.” </p>\n<p>On Wednesday 5 May, the Heart Foundation will host the Heart Week webinar, <em>Driving Best Practice CVD Prevention in a Post-COVID World</em>. </p>\n<p>Ms Love said the webinar would be relevant to all clinicians. </p>\n<p>“We have a really great panel and the main topic will be how COVID-19 has impacted CVD health and the strategies that complement the CVD risk approach,” she said. </p>\n<p>One of the complementary strategies that GPs are encouraged to talk to at-risk patients about, is the <a href=\"http://www.myhealthforlife.com.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><em>My health for life</em> program,</a> designed to help Queenslanders stay well and lessen their risk of developing conditions such as type 2 diabetes, heart disease, stroke, high cholesterol and high blood pressure. </p>\n<p>Ms Love said <em>My health for life</em> offers patients a lifestyle-based intervention that complements other therapies that their clinicians might suggest. </p>\n<p>For more information on the Heart Foundation webinar, visit the <a href=\"https://heartfoundation-au.zoom.us/webinar/register/5916189736296/WN_Nl-0JVlBSkCU72j7sNBttA\" target=\"_blank\" rel=\"noreferrer noopener\">Zoom registration page</a>. </p>\n<p>On Thursday 13 May, the PHN is also hosting a CVD-focused quality improvement webinar<em>,</em> Cardiovascular Disease in Primary Care, for practice staff. For more information, <a href=\"https://brisbanenorthphn.org.au/events/quality-improvement-focus-cardiovascular-disease-in-primary-care\" target=\"_blank\" rel=\"noreferrer noopener\">visit the PHN website</a>. </p>\n<p>Health professionals can download the Heart Foundation’s Heart Health Check Toolkit <a href=\"https://www.heartfoundation.org.au/Bundles/Heart-Health-Check-Toolkit/\" target=\"_blank\" rel=\"noreferrer noopener\">from their website</a>. </p>',NULL,NULL,NULL),(4778,154081,1,'2021-05-04 05:45:53','2021-05-04 05:45:53','e1c6a0c5-bdde-4376-bd63-3dbdbffe3063','<p><strong>This year’s Heart Week, that runs from 3-9 May 2021, presents an opportunity for healthcare professionals to engage with patients about their risk of developing cardiovascular disease (CVD). </strong> </p>\n<p>Heart Foundation Senior Heart Health Coordinator Andrea Love, said it is vital to prioritise heart health this week and every week. </p>\n<p>“76,500 CVD-related events could be prevented with a heart health check,” Ms Love said. <br /></p>\n\n<p>The Heart Foundation’s focus this Heart Week is on supporting health professionals to deliver more Heart Health Checks to eligible patients, a vital step to empower people to look after their heart health. </p>\n<p>“Within general practice the Heart Health Check is a relative new item number and takes about 20 minutes to complete,” Ms Love said. </p>\n<p>From 1 April 2019, two MBS items were introduced to allow GPs and medical practitioners (other than a specialist of consultant physicians) to conduct a heart health check. </p>\n<p>Ms Love said the COVID-19 pandemic had made people more aware of how important health is—and makes a case for the prevention of chronic disease. </p>\n<p>“People who live with cardiovascular disease have increased vulnerability to severe complications of COVID-19 and the issues we had (during the height of the pandemic) were people avoiding regular consultations.” </p>\n<p>“Now we have the vaccine rollout and people are coming into their GPs to be vaccinated. They could also ask about a heart health check in order to maximise on visits to primary care.” </p>\n<p>On Wednesday 5 May, the Heart Foundation will host the Heart Week webinar, <em>Driving Best Practice CVD Prevention in a Post-COVID World</em>. </p>\n<p>Ms Love said the webinar would be relevant to all clinicians. </p>\n<p>“We have a really great panel and the main topic will be how COVID-19 has impacted CVD health and the strategies that complement the CVD risk approach,” she said. </p>\n<p>One of the complementary strategies that GPs are encouraged to talk to at-risk patients about, is the <a href=\"http://www.myhealthforlife.com.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><em>My health for life</em> program,</a> designed to help Queenslanders stay well and lessen their risk of developing conditions such as type 2 diabetes, heart disease, stroke, high cholesterol and high blood pressure. </p>\n<p>Ms Love said <em>My health for life</em> offers patients a lifestyle-based intervention that complements other therapies that their clinicians might suggest. </p>\n<p>For more information on the Heart Foundation webinar, visit the <a href=\"https://heartfoundation-au.zoom.us/webinar/register/5916189736296/WN_Nl-0JVlBSkCU72j7sNBttA\" target=\"_blank\" rel=\"noreferrer noopener\">Zoom registration page</a>. </p>\n<p>On Thursday 13 May, the PHN is also hosting a CVD-focused quality improvement webinar<em>,</em> Cardiovascular Disease in Primary Care, for practice staff. For more information, <a href=\"https://brisbanenorthphn.org.au/events/quality-improvement-focus-cardiovascular-disease-in-primary-care\" target=\"_blank\" rel=\"noreferrer noopener\">visit the PHN website</a>. </p>\n<p>Health professionals can download the Heart Foundation’s Heart Health Check Toolkit <a href=\"https://www.heartfoundation.org.au/Bundles/Heart-Health-Check-Toolkit/\" target=\"_blank\" rel=\"noreferrer noopener\">from their website</a>. </p>',NULL,NULL,NULL),(4779,154083,1,'2021-05-04 05:46:03','2021-05-04 05:46:03','60d9f2ac-8a0f-45e6-ba82-76ace2c3b684','<p><strong>This year’s Heart Week, that runs from 3-9 May 2021, presents an opportunity for healthcare professionals to engage with patients about their risk of developing cardiovascular disease (CVD). </strong> </p>\n<p>Heart Foundation Senior Heart Health Coordinator Andrea Love, said it is vital to prioritise heart health this week and every week. </p>\n<p>“76,500 CVD-related events could be prevented with a heart health check,” Ms Love said. <br /></p>\n\n<p>The Heart Foundation’s focus this Heart Week is on supporting health professionals to deliver more Heart Health Checks to eligible patients, a vital step to empower people to look after their heart health. </p>\n<p>“Within general practice the Heart Health Check is a relative new item number and takes about 20 minutes to complete,” Ms Love said. </p>\n<p>From 1 April 2019, two MBS items were introduced to allow GPs and medical practitioners (other than a specialist of consultant physicians) to conduct a heart health check. </p>\n<p>Ms Love said the COVID-19 pandemic had made people more aware of how important health is—and makes a case for the prevention of chronic disease. </p>\n<p>“People who live with cardiovascular disease have increased vulnerability to severe complications of COVID-19 and the issues we had (during the height of the pandemic) were people avoiding regular consultations.” </p>\n<p>“Now we have the vaccine rollout and people are coming into their GPs to be vaccinated. They could also ask about a heart health check in order to maximise on visits to primary care.” </p>\n<p>On Wednesday 5 May, the Heart Foundation will host the Heart Week webinar, <em>Driving Best Practice CVD Prevention in a Post-COVID World</em>. </p>\n<p>Ms Love said the webinar would be relevant to all clinicians. </p>\n<p>“We have a really great panel and the main topic will be how COVID-19 has impacted CVD health and the strategies that complement the CVD risk approach,” she said. </p>\n<p>One of the complementary strategies that GPs are encouraged to talk to at-risk patients about, is the <a href=\"http://www.myhealthforlife.com.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><em>My health for life</em> program,</a> designed to help Queenslanders stay well and lessen their risk of developing conditions such as type 2 diabetes, heart disease, stroke, high cholesterol and high blood pressure. </p>\n<p>Ms Love said <em>My health for life</em> offers patients a lifestyle-based intervention that complements other therapies that their clinicians might suggest. </p>\n<p>For more information on the Heart Foundation webinar, visit the <a href=\"https://heartfoundation-au.zoom.us/webinar/register/5916189736296/WN_Nl-0JVlBSkCU72j7sNBttA\" target=\"_blank\" rel=\"noreferrer noopener\">Zoom registration page</a>. </p>\n<p>On Thursday 13 May, the PHN is also hosting a CVD-focused quality improvement webinar<em>,</em> Cardiovascular Disease in Primary Care, for practice staff. For more information, <a href=\"https://brisbanenorthphn.org.au/events/quality-improvement-focus-cardiovascular-disease-in-primary-care\" target=\"_blank\" rel=\"noreferrer noopener\">visit the PHN website</a>. </p>\n<p>Health professionals can download the Heart Foundation’s Heart Health Check Toolkit <a href=\"https://www.heartfoundation.org.au/Bundles/Heart-Health-Check-Toolkit/\" target=\"_blank\" rel=\"noreferrer noopener\">from their website</a>. </p>',NULL,NULL,NULL),(4780,154085,1,'2021-05-04 05:46:14','2021-05-04 05:46:14','05e644dc-8875-4dfa-9428-671036ed5de7','<p><strong>Dr Jim Rowan-Parry recently spoke to the PHN’s Digital Health Officers about his experience using GP Smart Referrals software, introduced within Queensland general practices during 2020.</strong> </p>\n<p>GP Smart Referrals allows general practices to send referrals electronically through to Metro North Hospital and Health Service. </p>\n<p>This enables faster, streamlined management and less double handling of referrals across our health service. </p>\n<p>Dr Rowan Parry, a GP at Medical Matters in Murrumba Downs, had adapted quickly to using GP Smart Referrals, and said it was intuitive and allowed him to more efficiently process referrals. <br /></p>\n<p>“Once you are comfortable with the layout it becomes very easy to know where the important bits are and where to add the information you are trying to communicate,” said Dr Rowan-Parry. </p>\n<p>“It has helpful prompts as to what information should be included in the referral,” he said. </p>\n<p>“GP Smart Referrals boasts an improved ability to attach pictures and ECGs to referrals. It also has a helpful feature to park a referral if I’m waiting for more information prior to sending it.” </p>\n<p>Dr Rowan-Parry said that he is able to identify the specialist and hospital that matches the condition he is referring for; a function that saves him time but also means that patient referrals are handled more efficiently. </p>\n<p>Dr Rowan-Parry also had a helpful hint for any new uses of GP Smart Referrals. </p>\n<p>“Don’t open another patient’s notes midway through a referral as it confuses the software,” he said. </p>\n<p>“If you do, when the prompt box tells you it is going to close (the initial patient’s record) as it recognises you’re on the wrong patient, switch to the correct patient again and select cancel, you can then continue to work on the referral without losing your prior work.” </p>\n<p>For more information or request assistance using GP Smart Referrals contact the PHN’s Digital Health Officers via <a href=\"mailto:GPSR@brisbanenorthphn.org.au\" target=\"_blank\" rel=\"noreferrer noopener\">GPSR@brisbanenorthphn.org.au</a>. </p>\n<p><em>Pictured: Dr Jim Rowan-Parry of Medical Matters</em></p>',NULL,NULL,NULL),(4781,154087,1,'2021-05-04 05:46:57','2021-05-04 05:46:57','e13c96ea-59cc-46a0-9fc3-6dc050f27212','<p><strong>This year’s Heart Week, that runs from 3-9 May 2021, presents an opportunity for healthcare professionals to engage with patients about their risk of developing cardiovascular disease (CVD). </strong> </p>\n<p>Heart Foundation Senior Heart Health Coordinator Andrea Love, said it is vital to prioritise heart health this week and every week. </p>\n<p>“76,500 CVD-related events could be prevented with a heart health check,” Ms Love said. <br /></p>\n\n<p>The Heart Foundation’s focus this Heart Week is on supporting health professionals to deliver more Heart Health Checks to eligible patients, a vital step to empower people to look after their heart health. </p>\n<p>“Within general practice the Heart Health Check is a relative new item number and takes about 20 minutes to complete,” Ms Love said. </p>\n<p>From 1 April 2019, two MBS items were introduced to allow GPs and medical practitioners (other than a specialist of consultant physicians) to conduct a heart health check. </p>\n<p>Ms Love said the COVID-19 pandemic had made people more aware of how important health is—and makes a case for the prevention of chronic disease. </p>\n<p>“People who live with cardiovascular disease have increased vulnerability to severe complications of COVID-19 and the issues we had (during the height of the pandemic) were people avoiding regular consultations.” </p>\n<p>“Now we have the vaccine rollout and people are coming into their GPs to be vaccinated. They could also ask about a heart health check in order to maximise on visits to primary care.” </p>\n<p>On Wednesday 5 May, the Heart Foundation will host the Heart Week webinar, <em>Driving Best Practice CVD Prevention in a Post-COVID World</em>. </p>\n<p>Ms Love said the webinar would be relevant to all clinicians. </p>\n<p>“We have a really great panel and the main topic will be how COVID-19 has impacted CVD health and the strategies that complement the CVD risk approach,” she said. </p>\n<p>One of the complementary strategies that GPs are encouraged to talk to at-risk patients about, is the <a href=\"http://www.myhealthforlife.com.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><em>My health for life</em> program,</a> designed to help Queenslanders stay well and lessen their risk of developing conditions such as type 2 diabetes, heart disease, stroke, high cholesterol and high blood pressure. </p>\n<p>Ms Love said <em>My health for life</em> offers patients a lifestyle-based intervention that complements other therapies that their clinicians might suggest. </p>\n<p>For more information on the Heart Foundation webinar, visit the <a href=\"https://heartfoundation-au.zoom.us/webinar/register/5916189736296/WN_Nl-0JVlBSkCU72j7sNBttA\" target=\"_blank\" rel=\"noreferrer noopener\">Zoom registration page</a>. </p>\n<p>On Thursday 13 May, the PHN is also hosting a CVD-focused quality improvement webinar<em>,</em> Cardiovascular Disease in Primary Care, for practice staff. For more information, <a href=\"https://brisbanenorthphn.org.au/events/quality-improvement-focus-cardiovascular-disease-in-primary-care\" target=\"_blank\" rel=\"noreferrer noopener\">visit the PHN website</a>. </p>\n<p>Health professionals can download the Heart Foundation’s Heart Health Check Toolkit <a href=\"https://www.heartfoundation.org.au/Bundles/Heart-Health-Check-Toolkit/\" target=\"_blank\" rel=\"noreferrer noopener\">from their website</a>. </p>',NULL,NULL,NULL),(4783,154109,1,'2021-05-04 06:17:55','2021-05-04 06:17:55','f7bc0ad0-6dc3-44b4-b4ca-f0837e7d5f39','<p><strong>Dr Jim Rowan-Parry recently spoke to the PHN’s Digital Health Officers about his experience using GP Smart Referrals software, introduced within Queensland general practices during 2020.</strong> </p>\n<p>GP Smart Referrals allows general practices to send referrals electronically through to Metro North Hospital and Health Service. </p>\n<p>This enables faster, streamlined management and less double handling of referrals across our health service. </p>\n<p>Dr Rowan Parry, a GP at Medical Matters in Murrumba Downs, had adapted quickly to using GP Smart Referrals, and said it was intuitive and allowed him to more efficiently process referrals. <br /></p>\n<p>“Once you are comfortable with the layout it becomes very easy to know where the important bits are and where to add the information you are trying to communicate,” said Dr Rowan-Parry. </p>\n<p>“It has helpful prompts as to what information should be included in the referral,” he said. </p>\n<p>“GP Smart Referrals boasts an improved ability to attach pictures and ECGs to referrals. It also has a helpful feature to park a referral if I’m waiting for more information prior to sending it.” </p>\n<p>Dr Rowan-Parry said that he is able to identify the specialist and hospital that matches the condition he is referring for; a function that saves him time but also means that patient referrals are handled more efficiently. </p>\n<p>Dr Rowan-Parry also had a helpful hint for any new uses of GP Smart Referrals. </p>\n<p>“Don’t open another patient’s notes midway through a referral as it confuses the software,” he said. </p>\n<p>“If you do, when the prompt box tells you it is going to close (the initial patient’s record) as it recognises you’re on the wrong patient, switch to the correct patient again and select cancel, you can then continue to work on the referral without losing your prior work.” </p>\n<p>For more information or request assistance using GP Smart Referrals contact the PHN’s Digital Health Officers via <a href=\"mailto:GPSR@brisbanenorthphn.org.au\" target=\"_blank\" rel=\"noreferrer noopener\">GPSR@brisbanenorthphn.org.au</a>. </p>\n<p><em>Pictured: Dr Jim Rowan-Parry of Medical Matters</em></p>',NULL,NULL,NULL),(4784,154111,1,'2021-05-04 06:17:55','2021-05-04 06:17:55','5276ccf8-6dc2-4271-834b-6aa2020e76b6','<p><strong>Dr Jim Rowan-Parry recently spoke to the PHN’s Digital Health Officers about his experience using GP Smart Referrals software, introduced within Queensland general practices during 2020.</strong> </p>\n<p>GP Smart Referrals allows general practices to send referrals electronically through to Metro North Hospital and Health Service. </p>\n<p>This enables faster, streamlined management and less double handling of referrals across our health service. </p>\n<p>Dr Rowan Parry, a GP at Medical Matters in Murrumba Downs, had adapted quickly to using GP Smart Referrals, and said it was intuitive and allowed him to more efficiently process referrals. <br /></p>\n<p>“Once you are comfortable with the layout it becomes very easy to know where the important bits are and where to add the information you are trying to communicate,” said Dr Rowan-Parry. </p>\n<p>“It has helpful prompts as to what information should be included in the referral,” he said. </p>\n<p>“GP Smart Referrals boasts an improved ability to attach pictures and ECGs to referrals. It also has a helpful feature to park a referral if I’m waiting for more information prior to sending it.” </p>\n<p>Dr Rowan-Parry said that he is able to identify the specialist and hospital that matches the condition he is referring for; a function that saves him time but also means that patient referrals are handled more efficiently. </p>\n<p>Dr Rowan-Parry also had a helpful hint for any new uses of GP Smart Referrals. </p>\n<p>“Don’t open another patient’s notes midway through a referral as it confuses the software,” he said. </p>\n<p>“If you do, when the prompt box tells you it is going to close (the initial patient’s record) as it recognises you’re on the wrong patient, switch to the correct patient again and select cancel, you can then continue to work on the referral without losing your prior work.” </p>\n<p>For more information or request assistance using GP Smart Referrals contact the PHN’s Digital Health Officers via <a href=\"mailto:GPSR@brisbanenorthphn.org.au\" target=\"_blank\" rel=\"noreferrer noopener\">GPSR@brisbanenorthphn.org.au</a>. </p>\n<p><em>Pictured: Dr Jim Rowan-Parry of Medical Matters</em></p>',NULL,NULL,NULL),(4785,154113,1,'2021-05-04 06:17:58','2021-05-04 06:17:58','c17ff8da-00d5-4566-aa02-7d10fb3a5838','<p><strong>Dr Jim Rowan-Parry recently spoke to the PHN’s Digital Health Officers about his experience using GP Smart Referrals software, introduced within Queensland general practices during 2020.</strong> </p>\n<p>GP Smart Referrals allows general practices to send referrals electronically through to Metro North Hospital and Health Service. </p>\n<p>This enables faster, streamlined management and less double handling of referrals across our health service. </p>\n<p>Dr Rowan Parry, a GP at Medical Matters in Murrumba Downs, had adapted quickly to using GP Smart Referrals, and said it was intuitive and allowed him to more efficiently process referrals. <br /></p>\n<p>“Once you are comfortable with the layout it becomes very easy to know where the important bits are and where to add the information you are trying to communicate,” said Dr Rowan-Parry. </p>\n<p>“It has helpful prompts as to what information should be included in the referral,” he said. </p>\n<p>“GP Smart Referrals boasts an improved ability to attach pictures and ECGs to referrals. It also has a helpful feature to park a referral if I’m waiting for more information prior to sending it.” </p>\n<p>Dr Rowan-Parry said that he is able to identify the specialist and hospital that matches the condition he is referring for; a function that saves him time but also means that patient referrals are handled more efficiently. </p>\n<p>Dr Rowan-Parry also had a helpful hint for any new uses of GP Smart Referrals. </p>\n<p>“Don’t open another patient’s notes midway through a referral as it confuses the software,” he said. </p>\n<p>“If you do, when the prompt box tells you it is going to close (the initial patient’s record) as it recognises you’re on the wrong patient, switch to the correct patient again and select cancel, you can then continue to work on the referral without losing your prior work.” </p>\n<p>For more information or request assistance using GP Smart Referrals contact the PHN’s Digital Health Officers via <a href=\"mailto:GPSR@brisbanenorthphn.org.au\" target=\"_blank\" rel=\"noreferrer noopener\">GPSR@brisbanenorthphn.org.au</a>. </p>\n<p><em>Pictured: Dr Jim Rowan-Parry of Medical Matters</em></p>',NULL,NULL,NULL),(4786,154115,1,'2021-05-04 06:23:45','2021-05-04 06:23:45','8f92bdbf-1eda-4895-b231-a60c861bc911','<p><strong>This year’s Heart Week, that runs from 3-9 May 2021, presents an opportunity for healthcare professionals to engage with patients about their risk of developing cardiovascular disease (CVD). </strong> </p>\n<p>The Heart Foundation’s focus this Heart Week is on supporting health professionals to deliver more Heart Health Checks to eligible patients, a vital step to empower people to look after their heart health.<br /></p>\n<p>Heart Foundation Senior Heart Health Coordinator Andrea Love, said it is vital to prioritise heart health this week and every week. </p>\n<p>“76,500 CVD-related events could be prevented with a heart health check,” Ms Love said.<br /></p>\n\n<p>“Within general practice the Heart Health Check is a relative new item number and takes about 20 minutes to complete,” Ms Love said. </p>\n<p>From 1 April 2019, two MBS items were introduced to allow GPs and medical practitioners (other than a specialist of consultant physicians) to conduct a heart health check. </p>\n<p>Ms Love said the COVID-19 pandemic had made people more aware of how important health is—and makes a case for the prevention of chronic disease. </p>\n<p>“People who live with cardiovascular disease have increased vulnerability to severe complications of COVID-19 and the issues we had (during the height of the pandemic) were people avoiding regular consultations.” </p>\n<p>“Now we have the vaccine rollout and people are coming into their GPs to be vaccinated. They could also ask about a heart health check in order to maximise on visits to primary care.” </p>\n<p>On Wednesday 5 May, the Heart Foundation will host the Heart Week webinar, <em>Driving Best Practice CVD Prevention in a Post-COVID World</em>. </p>\n<p>Ms Love said the webinar would be relevant to all clinicians. </p>\n<p>“We have a really great panel and the main topic will be how COVID-19 has impacted CVD health and the strategies that complement the CVD risk approach,” she said. </p>\n<p>One of the complementary strategies that GPs are encouraged to talk to at-risk patients about, is the <a href=\"http://www.myhealthforlife.com.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><em>My health for life</em> program,</a> designed to help Queenslanders stay well and lessen their risk of developing conditions such as type 2 diabetes, heart disease, stroke, high cholesterol and high blood pressure. </p>\n<p>Ms Love said <em>My health for life</em> offers patients a lifestyle-based intervention that complements other therapies that their clinicians might suggest. </p>\n<p>For more information on the Heart Foundation webinar, visit the <a href=\"https://heartfoundation-au.zoom.us/webinar/register/5916189736296/WN_Nl-0JVlBSkCU72j7sNBttA\" target=\"_blank\" rel=\"noreferrer noopener\">Zoom registration page</a>. </p>\n<p>On Thursday 13 May, the PHN is also hosting a CVD-focused quality improvement webinar<em>,</em> Cardiovascular Disease in Primary Care, for practice staff. For more information, <a href=\"https://brisbanenorthphn.org.au/events/quality-improvement-focus-cardiovascular-disease-in-primary-care\" target=\"_blank\" rel=\"noreferrer noopener\">visit the PHN website</a>. </p>\n<p>Health professionals can download the Heart Foundation’s Heart Health Check Toolkit <a href=\"https://www.heartfoundation.org.au/Bundles/Heart-Health-Check-Toolkit/\" target=\"_blank\" rel=\"noreferrer noopener\">from their website</a>. </p>',NULL,NULL,NULL),(4787,154117,1,'2021-05-04 23:37:47','2021-05-04 23:37:47','b0d78b7f-0a8f-4aa5-984a-28172529bec0','<p><strong>This year’s Heart Week, that runs from 3-9 May 2021, presents an opportunity for healthcare professionals to engage with patients about their risk of developing cardiovascular disease (CVD). </strong> </p>\n<p>The Heart Foundation’s focus this Heart Week is on supporting health professionals to deliver more Heart Health Checks to eligible patients, a vital step to empower people to look after their heart health.<br /></p>\n<p>Heart Foundation Senior Heart Health Coordinator Andrea Love, said it is vital to prioritise heart health this week and every week. </p>\n<p>“76,500 CVD-related events could be prevented with a heart health check,” Ms Love said.<br /></p>\n<p>“Within general practice the Heart Health Check is a relative new item number and takes about 20 minutes to complete,” Ms Love said. </p>\n<p>From 1 April 2019, two MBS items were introduced to allow GPs and medical practitioners (other than a specialist of consultant physicians) to conduct a heart health check. </p>\n<p>Ms Love said the COVID-19 pandemic had made people more aware of how important health is—and makes a case for the prevention of chronic disease. </p>\n<p>“People who live with cardiovascular disease have increased vulnerability to severe complications of COVID-19 and the issues we had (during the height of the pandemic) were people avoiding regular consultations.” </p>\n<p>“Now we have the vaccine rollout and people are coming into their GPs to be vaccinated. They could also ask about a heart health check in order to maximise on visits to primary care.” </p>\n<p>On Wednesday 5 May, the Heart Foundation will host the Heart Week webinar, <em>Driving Best Practice CVD Prevention in a Post-COVID World</em>. </p>\n<p>Ms Love said the webinar would be relevant to all clinicians. </p>\n<p>“We have a really great panel and the main topic will be how COVID-19 has impacted CVD health and the strategies that complement the CVD risk approach,” she said. </p>\n<p>One of the complementary strategies that GPs are encouraged to talk to at-risk patients about, is the <a href=\"http://www.myhealthforlife.com.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><em>My health for life</em> program,</a> designed to help Queenslanders stay well and lessen their risk of developing conditions such as type 2 diabetes, heart disease, stroke, high cholesterol and high blood pressure. </p>\n<p>Ms Love said <em>My health for life</em> offers patients a lifestyle-based intervention that complements other therapies that their clinicians might suggest. </p>\n<p>For more information on the Heart Foundation webinar, visit the <a href=\"https://heartfoundation-au.zoom.us/webinar/register/5916189736296/WN_Nl-0JVlBSkCU72j7sNBttA\" target=\"_blank\" rel=\"noreferrer noopener\">Zoom registration page</a>. </p>\n\n<p>On Thursday 13 May, the PHN is hosting a complimentary quality improvement focused webinar, <em>Cardiovascular Disease in Primary Care</em>, for practice staff. Registration is essential. For more information, <a href=\"https://brisbanenorthphn.org.au/events/quality-improvement-focus-cardiovascular-disease-in-primary-care\">visit the PHN website</a>.</p> \n<p>Health professionals can download the Heart Foundation’s Heart Health Check Toolkit <a href=\"https://www.heartfoundation.org.au/Bundles/Heart-Health-Check-Toolkit/\" target=\"_blank\" rel=\"noreferrer noopener\">from their website</a>. </p>',NULL,NULL,NULL),(4788,154119,1,'2021-05-04 23:37:53','2021-05-04 23:37:53','6cfc18af-4a51-4c37-b553-861bdb9ccec9','<p><strong>This year’s Heart Week, that runs from 3-9 May 2021, presents an opportunity for healthcare professionals to engage with patients about their risk of developing cardiovascular disease (CVD). </strong> </p>\n<p>The Heart Foundation’s focus this Heart Week is on supporting health professionals to deliver more Heart Health Checks to eligible patients, a vital step to empower people to look after their heart health.<br /></p>\n<p>Heart Foundation Senior Heart Health Coordinator Andrea Love, said it is vital to prioritise heart health this week and every week. </p>\n<p>“76,500 CVD-related events could be prevented with a heart health check,” Ms Love said.<br /></p>\n<p>“Within general practice the Heart Health Check is a relative new item number and takes about 20 minutes to complete,” Ms Love said. </p>\n<p>From 1 April 2019, two MBS items were introduced to allow GPs and medical practitioners (other than a specialist of consultant physicians) to conduct a heart health check. </p>\n<p>Ms Love said the COVID-19 pandemic had made people more aware of how important health is—and makes a case for the prevention of chronic disease. </p>\n<p>“People who live with cardiovascular disease have increased vulnerability to severe complications of COVID-19 and the issues we had (during the height of the pandemic) were people avoiding regular consultations.” </p>\n<p>“Now we have the vaccine rollout and people are coming into their GPs to be vaccinated. They could also ask about a heart health check in order to maximise on visits to primary care.” </p>\n<p>On Wednesday 5 May, the Heart Foundation will host the Heart Week webinar, <em>Driving Best Practice CVD Prevention in a Post-COVID World</em>. </p>\n<p>Ms Love said the webinar would be relevant to all clinicians. </p>\n<p>“We have a really great panel and the main topic will be how COVID-19 has impacted CVD health and the strategies that complement the CVD risk approach,” she said. </p>\n<p>One of the complementary strategies that GPs are encouraged to talk to at-risk patients about, is the <a href=\"http://www.myhealthforlife.com.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><em>My health for life</em> program,</a> designed to help Queenslanders stay well and lessen their risk of developing conditions such as type 2 diabetes, heart disease, stroke, high cholesterol and high blood pressure. </p>\n<p>Ms Love said <em>My health for life</em> offers patients a lifestyle-based intervention that complements other therapies that their clinicians might suggest. </p>\n<p>For more information on the Heart Foundation webinar, visit the <a href=\"https://heartfoundation-au.zoom.us/webinar/register/5916189736296/WN_Nl-0JVlBSkCU72j7sNBttA\" target=\"_blank\" rel=\"noreferrer noopener\">Zoom registration page</a>. </p>\n\n<p>On Thursday 13 May, the PHN is hosting a complimentary quality improvement focused webinar, <em>Cardiovascular Disease in Primary Care</em>, for practice staff. Registration is essential. For more information, <a href=\"https://brisbanenorthphn.org.au/events/quality-improvement-focus-cardiovascular-disease-in-primary-care\">visit the PHN website</a>.</p> \n<p>Health professionals can download the Heart Foundation’s Heart Health Check Toolkit <a href=\"https://www.heartfoundation.org.au/Bundles/Heart-Health-Check-Toolkit/\" target=\"_blank\" rel=\"noreferrer noopener\">from their website</a>. </p>',NULL,NULL,NULL),(4789,154121,1,'2021-05-04 23:40:50','2021-05-04 23:40:50','b8a746d0-728b-488e-aa54-71a153dd5b5a','<p><strong>This year’s Medical Mums campaign is urging parents and carers to check in with their GP to ensure childhood vaccinations are up-to-date.</strong></p>\n<p>As the world focuses on new vaccines to protect against COVID-19, there is still a real need to ensure routine childhood vaccinations are not missed. </p>\n<p>Globally, many children <a href=\"https://data.unicef.org/resources/immunization-coverage-estimates-data-visualization/\">have not been vaccinated during the pandemic</a>, leaving them at risk of serious diseases like measles and polio. Rapidly circulating misinformation around the topic of vaccination adds to this threat. </p>\n<p>Within the North Brisbane and Moreton Bay region, childhood immunisation rates remain high and the Medical Mums campaign aims to keep it this way, with the message not to neglect immunisation requirements.</p>\n<p>Vaccinations are due at 2, 4, 6, 12, 18 months and 4 years old and skipping or delaying any of these means that children are vulnerable to disease. However, if a child hasn’t been vaccinated or has missed a vaccination it’s easy to catch up—just speak to a GP, who can also answer any questions or address any hesitancy that parents might have. </p>\n<p>The Medical Mums campaign, which runs until 23 May, was launched to coincide with World Immunisation Week, celebrated every year in the last week of April.</p>\n<p>Using the theme ‘Vaccines bring us closer’, World Immunisation Week 2021 urges greater engagement around immunisation globally to promote the importance of vaccination in bringing people together, and improving the health and wellbeing of everyone.</p>\n<p>The Medical Mums campaign is currently rolling out a series of short animations across digital platforms, featuring some cute parents, their kids and their family doctor. <br /></p>\n<p>For more information, to download a poster to display in your practice, or to view the animations visit <a href=\"http://www.medicalmums.com.au\">www.medicalmums.com.au</a>. </p>',NULL,NULL,NULL),(4790,154123,1,'2021-05-04 23:42:01','2021-05-04 23:42:01','0c393f3e-78d9-4d28-aa3d-2e609d42bae0','<p><strong>This year’s Heart Week, that runs from 3-9 May 2021, presents an opportunity for healthcare professionals to engage with patients about their risk of developing cardiovascular disease (CVD). </strong> </p>\n<p>The Heart Foundation’s focus this Heart Week is on supporting health professionals to deliver more Heart Health Checks to eligible patients, a vital step to empower people to look after their heart health.<br /></p>\n<p>Heart Foundation Senior Heart Health Coordinator Andrea Love, said it is vital to prioritise heart health this week and every week. </p>\n<p>“76,500 CVD-related events could be prevented with a heart health check,” Ms Love said.<br /></p>\n<p>“Within general practice the Heart Health Check is a relative new item number and takes about 20 minutes to complete,” Ms Love said. </p>\n<p>From 1 April 2019, two MBS items were introduced to allow GPs and medical practitioners (other than a specialist of consultant physicians) to conduct a heart health check. </p>\n<p>Ms Love said the COVID-19 pandemic had made people more aware of how important health is—and makes a case for the prevention of chronic disease. </p>\n<p>“People who live with cardiovascular disease have increased vulnerability to severe complications of COVID-19 and the issues we had (during the height of the pandemic) were people avoiding regular consultations.” </p>\n<p>“Now we have the vaccine rollout and people are coming into their GPs to be vaccinated. They could also ask about a heart health check in order to maximise on visits to primary care.” </p>\n<p>On Wednesday 5 May, the Heart Foundation will host the Heart Week webinar, <em>Driving Best Practice CVD Prevention in a Post-COVID World</em>. </p>\n<p>Ms Love said the webinar would be relevant to all clinicians. </p>\n<p>“We have a really great panel and the main topic will be how COVID-19 has impacted CVD health and the strategies that complement the CVD risk approach,” she said. </p>\n<p>One of the complementary strategies that GPs are encouraged to talk to at-risk patients about, is the <a href=\"http://www.myhealthforlife.com.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><em>My health for life</em> program,</a> designed to help Queenslanders stay well and lessen their risk of developing conditions such as type 2 diabetes, heart disease, stroke, high cholesterol and high blood pressure. </p>\n<p>Ms Love said <em>My health for life</em> offers patients a lifestyle-based intervention that complements other therapies that their clinicians might suggest. </p>\n<p>For more information on the Heart Foundation webinar, visit the <a href=\"https://heartfoundation-au.zoom.us/webinar/register/5916189736296/WN_Nl-0JVlBSkCU72j7sNBttA\" target=\"_blank\" rel=\"noreferrer noopener\">Zoom registration page</a>. </p>\n\n<p>On Thursday 13 May, the PHN is hosting a complimentary quality improvement focused webinar, <em>Cardiovascular Disease in Primary Care</em>, for practice staff. Registration is essential. For more information, <a href=\"https://brisbanenorthphn.org.au/events/quality-improvement-focus-cardiovascular-disease-in-primary-care\">visit the PHN website</a>.</p> \n<p>Health professionals can download the Heart Foundation’s Heart Health Check Toolkit <a href=\"https://www.heartfoundation.org.au/Bundles/Heart-Health-Check-Toolkit/\" target=\"_blank\" rel=\"noreferrer noopener\">from their website</a>. </p>',NULL,NULL,NULL),(4791,154125,1,'2021-05-05 00:12:27','2021-05-05 00:12:27','1526a60b-d918-4610-a57a-a891246da344','<p><strong>This year’s Heart Week, that runs from 3-9 May 2021, presents an opportunity for healthcare professionals to engage with patients about their risk of developing cardiovascular disease (CVD). </strong> </p>\n<p>The Heart Foundation’s focus this Heart Week is on supporting health professionals to deliver more Heart Health Checks to eligible patients, a vital step to empower people to look after their heart health.<br /></p>\n<p>Heart Foundation Senior Heart Health Coordinator Andrea Love, said it is vital to prioritise heart health this week and every week. </p>\n<p>“76,500 CVD-related events could be prevented with a heart health check,” Ms Love said.<br /></p>\n<p>“Within general practice the Heart Health Check is a relative new item number and takes about 20 minutes to complete,” Ms Love said. </p>\n<p>From 1 April 2019, two MBS items were introduced to allow GPs and medical practitioners (other than a specialist of consultant physicians) to conduct a heart health check. </p>\n<p>Ms Love said the COVID-19 pandemic had made people more aware of how important health is—and makes a case for the prevention of chronic disease. </p>\n<p>“People who live with cardiovascular disease have increased vulnerability to severe complications of COVID-19 and the issues we had (during the height of the pandemic) were people avoiding regular consultations.” </p>\n<p>“Now we have the vaccine rollout and people are coming into their GPs to be vaccinated. They could also ask about a heart health check in order to maximise on visits to primary care.” </p>\n<p>On Wednesday 5 May, the Heart Foundation will host the Heart Week webinar, <em>Driving Best Practice CVD Prevention in a Post-COVID World</em>. </p>\n<p>Ms Love said the webinar would be relevant to all clinicians. </p>\n<p>“We have a really great panel and the main topic will be how COVID-19 has impacted CVD health and the strategies that complement the CVD risk approach,” she said. </p>\n<p>One of the complementary strategies that GPs are encouraged to talk to at-risk patients about, is the <a href=\"http://www.myhealthforlife.com.au/\" target=\"_blank\" rel=\"noreferrer noopener\"><em>My health for life</em> program,</a> designed to help Queenslanders stay well and lessen their risk of developing conditions such as type 2 diabetes, heart disease, stroke, high cholesterol and high blood pressure. </p>\n<p>Ms Love said <em>My health for life</em> offers patients a lifestyle-based intervention that complements other therapies that their clinicians might suggest. </p>\n<p>For more information on the Heart Foundation webinar, visit the <a href=\"https://heartfoundation-au.zoom.us/webinar/register/5916189736296/WN_Nl-0JVlBSkCU72j7sNBttA\" target=\"_blank\" rel=\"noreferrer noopener\">Zoom registration page</a>. </p>\n\n<p>On Thursday 13 May, the PHN is hosting a complimentary quality improvement focused webinar, <em>Cardiovascular Disease in Primary Care</em>, for practice staff. Registration is essential. For more information, <a href=\"https://brisbanenorthphn.org.au/events/quality-improvement-focus-cardiovascular-disease-in-primary-care\">visit the PHN website</a>.</p> \n<p>Health professionals can download the Heart Foundation’s Heart Health Check Toolkit <a href=\"https://www.heartfoundation.org.au/Bundles/Heart-Health-Check-Toolkit/\" target=\"_blank\" rel=\"noreferrer noopener\">from their website</a>. </p>',NULL,NULL,NULL),(4792,154127,1,'2021-05-05 00:13:52','2021-05-05 00:13:52','d113d3a1-a5c0-4141-892d-6f5c91c3b9c4','<p><strong>This year’s Medical Mums campaign is urging parents and carers to check in with their GP to ensure childhood vaccinations are up-to-date.</strong></p>\n<p>As the world focuses on new vaccines to protect against COVID-19, there is still a real need to ensure routine childhood vaccinations are not missed. </p>\n<p>Globally, many children <a href=\"https://data.unicef.org/resources/immunization-coverage-estimates-data-visualization/\">have not been vaccinated during the pandemic</a>, leaving them at risk of serious diseases like measles and polio. Rapidly circulating misinformation around the topic of vaccination adds to this threat. </p>\n<p>Within the North Brisbane and Moreton Bay region, childhood immunisation rates remain high and the Medical Mums campaign aims to keep it this way, with the message not to neglect immunisation requirements.</p>\n<p>Vaccinations are due at 2, 4, 6, 12, 18 months and 4 years old and skipping or delaying any of these means that children are vulnerable to disease. However, if a child hasn’t been vaccinated or has missed a vaccination it’s easy to catch up—just speak to a GP, who can also answer any questions or address any hesitancy that parents might have. </p>\n<p>The Medical Mums campaign, which runs until 23 May, was launched to coincide with World Immunisation Week, celebrated every year in the last week of April.</p>\n<p>Using the theme ‘Vaccines bring us closer’, World Immunisation Week 2021 urges greater engagement around immunisation globally to promote the importance of vaccination in bringing people together, and improving the health and wellbeing of everyone.</p>\n<p>The Medical Mums campaign is currently rolling out a series of short animations across digital platforms, featuring some cute parents, their kids and their family doctor. <br /></p>\n<p>For more information, to download a poster to display in your practice, or to view the animations visit <a href=\"http://www.medicalmums.com.au\">www.medicalmums.com.au</a>. </p>',NULL,NULL,NULL),(4864,155314,1,'2021-05-07 05:30:12','2021-05-18 23:41:16','24063e52-955f-402c-a022-37de347b7843','<h5>Caboolture Hospital is entering a new and exciting era, expanding through a redevelopment project and growing the services offered to the local community.</h5>\n<p>Caboolture Hospital Surgical Services would like to introduce their specialist surgical team. It\'s important that patients are treated close to home, and the team at Caboolture Hospital encourage local GPs to refer to our specialist surgeons.</p>',NULL,NULL,NULL),(4865,155334,1,'2021-05-07 05:30:13','2021-05-07 05:30:13','2c18edcd-c421-4361-9513-e60c1d2d719c','<h5>Caboolture Hospital is entering a new and exciting era, expanding through the redevelopment project and growing the services offered to the local community.</h5>\n<p>Caboolture Hospital Surgical Services would like to introduce their specialist surgical team. We believe it is important that your patients can be treated close to home and encourage your referral to our local specialist surgeons.</p>',NULL,NULL,NULL),(4866,156865,1,'2021-05-07 05:36:45','2021-05-07 05:36:45','9545946a-c02a-4fd5-aad0-0d70c478be26','<h5>Caboolture Hospital is entering a new and exciting era, expanding through the redevelopment project and growing the services offered to the local community.</h5>\n<p>Caboolture Hospital Surgical Services would like to introduce their specialist surgical team. We believe it is important that your patients can be treated close to home and encourage your referral to our local specialist surgeons.</p>',NULL,NULL,NULL),(4867,161441,1,'2021-05-13 00:49:48','2021-05-13 00:49:48','78d17ddb-b365-48d5-aaf0-5eeaab52c48c','<h5>Caboolture Hospital is entering a new and exciting era, expanding through the redevelopment project and growing the services offered to the local community.</h5>\n<p>Caboolture Hospital Surgical Services would like to introduce their specialist surgical team. We believe it is important that your patients can be treated close to home and encourage your referral to our local specialist surgeons.</p>',NULL,NULL,NULL),(4868,162150,1,'2021-05-18 01:05:56','2021-05-18 01:05:56','8cffb7f2-4cb7-4b78-a383-6f01d246a93f',NULL,NULL,NULL,NULL),(4869,162151,1,'2021-05-18 01:06:05','2021-05-18 01:06:05','a29f0f52-8987-43c8-9102-5207b568020b','<p><strong>A new report released by the Black Dog Institute shares insights from two PHN trial sites for implementing suicide prevention strategies for LGBTIQ+ communities.</strong></p>\n<p><strong>The Black Dog Institute has released a new report with key insights for implementing suicide prevention strategies that are effective for LGBTIQ+ communities, titled Suicide prevention for LGBTIQ+ communities: Learnings from the National Suicide Prevention Trial.</strong></p>\n<p><strong>The report was developed as part of Black Dog’s support to the National Suicide Prevention Trial, which was launched in 12 sites across Australia in 2016.</strong></p>\n<p><strong>Funded by the Commonwealth Department of Health and led by 10 Primary Health Networks (PHNs), the National Trial focused on priority populations who have an increased risk of suicide, with two sites – North Western Melbourne and Brisbane North – working directly with LGBTIQ+ populations to implement a community-led, systems approach to suicide prevention.</strong></p>\n<p><a href=\"https://brisbanenorthphn.org.au/news/medical-mums-campaign-urges-parents-to-keep-kids-immunised\"><strong>Read more</strong></a></p>\n<p>Containing reflections from five years of delivering suicide prevention activities in these local regions, the report fills a gap in knowledge available to those implementing suicide prevention activities for LGBTIQ+ communities. Key learnings include embedding lived experience and enabling local decision-making to inform culturally safe design and delivery of services for these populations.</p>\n<p>“We learnt that it is vitally important for suicide prevention coordinators to build strong relationships with local LGBTIQ+ communities and understand intersectionality to improve the communities’ mental health and suicide outcomes,” said Janey McGoldrick, Head of Implementation at the Black Dog Institute.</p>\n<p>Mainstream services often fail to meet the specific needs of LGBTIQ+ communities. With a chronic shortage of culturally safe or affirmative support, services that can be difficult to access for those in remote and regional areas, and a lack of data available – with sexual orientation, gender identity and intersex status routinely omitted from national datasets – LGBTIQ+ communities remain at significantly higher risk of suicide than the general population.</p>\n<p>Both North Western Melbourne and Brisbane North PHNs used the LifeSpan model – a pioneering systems approach to suicide prevention developed by the Black Dog Institute – to guide their strategy and activities.</p>\n<p>“The trial allowed us to coordinate a multifaceted approach to suicide prevention for the LGBTIQ+ Sistergirl and Brotherboy communities,” said Ged Farmer, Suicide Prevention Project Officer, for the Brisbane North PHN.</p>\n<p>With funding for the National Suicide Prevention Trial due to cease from June 2021, the report highlights an urgent need for sustained funding to allow this life-saving work to continue, grow and support more people at risk of suicide in the LGBTIQ+ communities.</p>\n<p>“The trial programs and services are really connecting with the community because they were built with the community,” said North Western Melbourne PHN CEO Adjunct Associate Professor Chris Carter said.</p>\n<p>“It’s a great example of how we need to involve people with lived experience, not just in suicide prevention, but across our health system,” said Associate Professor Carter.</p>\n<p><a href=\"https://www.blackdoginstitute.org.au/wp-content/uploads/2021/04/BDI21_Suicide-prevention-for-LGBTIQ-communities.pdf\">Download the report</a></p>\n<p><em>With thanks to the Black Dog Institute for their permission to reprint this article. </em></p>',NULL,NULL,NULL),(4870,162152,1,'2021-05-18 01:06:08','2021-05-18 01:06:08','d0db15be-cd95-47ed-bc03-6d5dfba22d5d','<p><strong>A new report released by the Black Dog Institute shares insights from two PHN trial sites for implementing suicide prevention strategies for LGBTIQ+ communities.</strong></p>\n<p><strong>The Black Dog Institute has released a new report with key insights for implementing suicide prevention strategies that are effective for LGBTIQ+ communities, titled Suicide prevention for LGBTIQ+ communities: Learnings from the National Suicide Prevention Trial.</strong></p>\n<p><strong>The report was developed as part of Black Dog’s support to the National Suicide Prevention Trial, which was launched in 12 sites across Australia in 2016.</strong></p>\n<p><strong>Funded by the Commonwealth Department of Health and led by 10 Primary Health Networks (PHNs), the National Trial focused on priority populations who have an increased risk of suicide, with two sites – North Western Melbourne and Brisbane North – working directly with LGBTIQ+ populations to implement a community-led, systems approach to suicide prevention.</strong><br /></p>\n\n<p>Containing reflections from five years of delivering suicide prevention activities in these local regions, the report fills a gap in knowledge available to those implementing suicide prevention activities for LGBTIQ+ communities. Key learnings include embedding lived experience and enabling local decision-making to inform culturally safe design and delivery of services for these populations.</p>\n<p>“We learnt that it is vitally important for suicide prevention coordinators to build strong relationships with local LGBTIQ+ communities and understand intersectionality to improve the communities’ mental health and suicide outcomes,” said Janey McGoldrick, Head of Implementation at the Black Dog Institute.</p>\n<p>Mainstream services often fail to meet the specific needs of LGBTIQ+ communities. With a chronic shortage of culturally safe or affirmative support, services that can be difficult to access for those in remote and regional areas, and a lack of data available – with sexual orientation, gender identity and intersex status routinely omitted from national datasets – LGBTIQ+ communities remain at significantly higher risk of suicide than the general population.</p>\n<p>Both North Western Melbourne and Brisbane North PHNs used the LifeSpan model – a pioneering systems approach to suicide prevention developed by the Black Dog Institute – to guide their strategy and activities.</p>\n<p>“The trial allowed us to coordinate a multifaceted approach to suicide prevention for the LGBTIQ+ Sistergirl and Brotherboy communities,” said Ged Farmer, Suicide Prevention Project Officer, for the Brisbane North PHN.</p>\n<p>With funding for the National Suicide Prevention Trial due to cease from June 2021, the report highlights an urgent need for sustained funding to allow this life-saving work to continue, grow and support more people at risk of suicide in the LGBTIQ+ communities.</p>\n<p>“The trial programs and services are really connecting with the community because they were built with the community,” said North Western Melbourne PHN CEO Adjunct Associate Professor Chris Carter said.</p>\n<p>“It’s a great example of how we need to involve people with lived experience, not just in suicide prevention, but across our health system,” said Associate Professor Carter.</p>\n<p><a href=\"https://www.blackdoginstitute.org.au/wp-content/uploads/2021/04/BDI21_Suicide-prevention-for-LGBTIQ-communities.pdf\">Download the report</a></p>\n<p><em>With thanks to the Black Dog Institute for their permission to reprint this article. </em></p>',NULL,NULL,NULL),(4871,162153,1,'2021-05-18 01:06:13','2021-05-18 01:06:13','8597f110-31f8-4d4d-bf44-eb97b266246f','<p><strong>A new report released by the Black Dog Institute shares insights from two PHN trial sites for implementing suicide prevention strategies for LGBTIQ+ communities.</strong></p>\n<p>The Black Dog Institute has released a new report with key insights for implementing suicide prevention strategies that are effective for LGBTIQ+ communities, titled Suicide prevention for LGBTIQ+ communities: Learnings from the National Suicide Prevention Trial.</p>\n<p>The report was developed as part of Black Dog’s support to the National Suicide Prevention Trial, which was launched in 12 sites across Australia in 2016.</p>\n<p>Funded by the Commonwealth Department of Health and led by 10 Primary Health Networks (PHNs), the National Trial focused on priority populations who have an increased risk of suicide, with two sites – North Western Melbourne and Brisbane North – working directly with LGBTIQ+ populations to implement a community-led, systems approach to suicide prevention.<br /></p>\n\n<p>Containing reflections from five years of delivering suicide prevention activities in these local regions, the report fills a gap in knowledge available to those implementing suicide prevention activities for LGBTIQ+ communities. Key learnings include embedding lived experience and enabling local decision-making to inform culturally safe design and delivery of services for these populations.</p>\n<p>“We learnt that it is vitally important for suicide prevention coordinators to build strong relationships with local LGBTIQ+ communities and understand intersectionality to improve the communities’ mental health and suicide outcomes,” said Janey McGoldrick, Head of Implementation at the Black Dog Institute.</p>\n<p>Mainstream services often fail to meet the specific needs of LGBTIQ+ communities. With a chronic shortage of culturally safe or affirmative support, services that can be difficult to access for those in remote and regional areas, and a lack of data available – with sexual orientation, gender identity and intersex status routinely omitted from national datasets – LGBTIQ+ communities remain at significantly higher risk of suicide than the general population.</p>\n<p>Both North Western Melbourne and Brisbane North PHNs used the LifeSpan model – a pioneering systems approach to suicide prevention developed by the Black Dog Institute – to guide their strategy and activities.</p>\n<p>“The trial allowed us to coordinate a multifaceted approach to suicide prevention for the LGBTIQ+ Sistergirl and Brotherboy communities,” said Ged Farmer, Suicide Prevention Project Officer, for the Brisbane North PHN.</p>\n<p>With funding for the National Suicide Prevention Trial due to cease from June 2021, the report highlights an urgent need for sustained funding to allow this life-saving work to continue, grow and support more people at risk of suicide in the LGBTIQ+ communities.</p>\n<p>“The trial programs and services are really connecting with the community because they were built with the community,” said North Western Melbourne PHN CEO Adjunct Associate Professor Chris Carter said.</p>\n<p>“It’s a great example of how we need to involve people with lived experience, not just in suicide prevention, but across our health system,” said Associate Professor Carter.</p>\n<p><a href=\"https://www.blackdoginstitute.org.au/wp-content/uploads/2021/04/BDI21_Suicide-prevention-for-LGBTIQ-communities.pdf\">Download the report</a></p>\n<p><em>With thanks to the Black Dog Institute for their permission to reprint this article. </em></p>',NULL,NULL,NULL),(4873,162156,1,'2021-05-18 01:07:00','2021-05-18 01:07:00','7627042a-87a7-4447-a4c9-c017704dd5ce','<p><strong>A new report released by the Black Dog Institute shares insights from two PHN trial sites for implementing suicide prevention strategies for LGBTIQ+ communities.</strong></p>\n<p>The Black Dog Institute has released a new report with key insights for implementing suicide prevention strategies that are effective for LGBTIQ+ communities, titled Suicide prevention for LGBTIQ+ communities: Learnings from the National Suicide Prevention Trial.</p>\n<p>The report was developed as part of Black Dog’s support to the National Suicide Prevention Trial, which was launched in 12 sites across Australia in 2016.</p>\n<p>Funded by the Commonwealth Department of Health and led by 10 Primary Health Networks (PHNs), the National Trial focused on priority populations who have an increased risk of suicide, with two sites – North Western Melbourne and Brisbane North – working directly with LGBTIQ+ populations to implement a community-led, systems approach to suicide prevention.<br /></p>\n\n<p>Containing reflections from five years of delivering suicide prevention activities in these local regions, the report fills a gap in knowledge available to those implementing suicide prevention activities for LGBTIQ+ communities. Key learnings include embedding lived experience and enabling local decision-making to inform culturally safe design and delivery of services for these populations.</p>\n<p>“We learnt that it is vitally important for suicide prevention coordinators to build strong relationships with local LGBTIQ+ communities and understand intersectionality to improve the communities’ mental health and suicide outcomes,” said Janey McGoldrick, Head of Implementation at the Black Dog Institute.</p>\n<p>Mainstream services often fail to meet the specific needs of LGBTIQ+ communities. With a chronic shortage of culturally safe or affirmative support, services that can be difficult to access for those in remote and regional areas, and a lack of data available – with sexual orientation, gender identity and intersex status routinely omitted from national datasets – LGBTIQ+ communities remain at significantly higher risk of suicide than the general population.</p>\n<p>Both North Western Melbourne and Brisbane North PHNs used the LifeSpan model – a pioneering systems approach to suicide prevention developed by the Black Dog Institute – to guide their strategy and activities.</p>\n<p>“The trial allowed us to coordinate a multifaceted approach to suicide prevention for the LGBTIQ+ Sistergirl and Brotherboy communities,” said Ged Farmer, Suicide Prevention Project Officer, for the Brisbane North PHN.</p>\n<p>With funding for the National Suicide Prevention Trial due to cease from June 2021, the report highlights an urgent need for sustained funding to allow this life-saving work to continue, grow and support more people at risk of suicide in the LGBTIQ+ communities.</p>\n<p>“The trial programs and services are really connecting with the community because they were built with the community,” said North Western Melbourne PHN CEO Adjunct Associate Professor Chris Carter said.</p>\n<p>“It’s a great example of how we need to involve people with lived experience, not just in suicide prevention, but across our health system,” said Associate Professor Carter.</p>\n<p><a href=\"https://www.blackdoginstitute.org.au/wp-content/uploads/2021/04/BDI21_Suicide-prevention-for-LGBTIQ-communities.pdf\"><strong>Download the report</strong></a></p>\n<p><em>With thanks to the Black Dog Institute for their permission to reprint this article. </em></p>',NULL,NULL,NULL),(4874,162158,1,'2021-05-18 01:07:00','2021-05-18 01:07:00','fb0e25e1-3afb-4d76-9f54-d1dcdd2ff301','<p><strong>A new report released by the Black Dog Institute shares insights from two PHN trial sites for implementing suicide prevention strategies for LGBTIQ+ communities.</strong></p>\n<p>The Black Dog Institute has released a new report with key insights for implementing suicide prevention strategies that are effective for LGBTIQ+ communities, titled Suicide prevention for LGBTIQ+ communities: Learnings from the National Suicide Prevention Trial.</p>\n<p>The report was developed as part of Black Dog’s support to the National Suicide Prevention Trial, which was launched in 12 sites across Australia in 2016.</p>\n<p>Funded by the Commonwealth Department of Health and led by 10 Primary Health Networks (PHNs), the National Trial focused on priority populations who have an increased risk of suicide, with two sites – North Western Melbourne and Brisbane North – working directly with LGBTIQ+ populations to implement a community-led, systems approach to suicide prevention.<br /></p>\n\n<p>Containing reflections from five years of delivering suicide prevention activities in these local regions, the report fills a gap in knowledge available to those implementing suicide prevention activities for LGBTIQ+ communities. Key learnings include embedding lived experience and enabling local decision-making to inform culturally safe design and delivery of services for these populations.</p>\n<p>“We learnt that it is vitally important for suicide prevention coordinators to build strong relationships with local LGBTIQ+ communities and understand intersectionality to improve the communities’ mental health and suicide outcomes,” said Janey McGoldrick, Head of Implementation at the Black Dog Institute.</p>\n<p>Mainstream services often fail to meet the specific needs of LGBTIQ+ communities. With a chronic shortage of culturally safe or affirmative support, services that can be difficult to access for those in remote and regional areas, and a lack of data available – with sexual orientation, gender identity and intersex status routinely omitted from national datasets – LGBTIQ+ communities remain at significantly higher risk of suicide than the general population.</p>\n<p>Both North Western Melbourne and Brisbane North PHNs used the LifeSpan model – a pioneering systems approach to suicide prevention developed by the Black Dog Institute – to guide their strategy and activities.</p>\n<p>“The trial allowed us to coordinate a multifaceted approach to suicide prevention for the LGBTIQ+ Sistergirl and Brotherboy communities,” said Ged Farmer, Suicide Prevention Project Officer, for the Brisbane North PHN.</p>\n<p>With funding for the National Suicide Prevention Trial due to cease from June 2021, the report highlights an urgent need for sustained funding to allow this life-saving work to continue, grow and support more people at risk of suicide in the LGBTIQ+ communities.</p>\n<p>“The trial programs and services are really connecting with the community because they were built with the community,” said North Western Melbourne PHN CEO Adjunct Associate Professor Chris Carter said.</p>\n<p>“It’s a great example of how we need to involve people with lived experience, not just in suicide prevention, but across our health system,” said Associate Professor Carter.</p>\n<p><a href=\"https://www.blackdoginstitute.org.au/wp-content/uploads/2021/04/BDI21_Suicide-prevention-for-LGBTIQ-communities.pdf\"><strong>Download the report</strong></a></p>\n<p><em>With thanks to the Black Dog Institute for their permission to reprint this article. </em></p>',NULL,NULL,NULL),(4875,162160,1,'2021-05-18 01:07:03','2021-05-18 01:07:03','d3596834-161f-4f89-a159-a2270519660a','<p><strong>A new report released by the Black Dog Institute shares insights from two PHN trial sites for implementing suicide prevention strategies for LGBTIQ+ communities.</strong></p>\n<p>The Black Dog Institute has released a new report with key insights for implementing suicide prevention strategies that are effective for LGBTIQ+ communities, titled Suicide prevention for LGBTIQ+ communities: Learnings from the National Suicide Prevention Trial.</p>\n<p>The report was developed as part of Black Dog’s support to the National Suicide Prevention Trial, which was launched in 12 sites across Australia in 2016.</p>\n<p>Funded by the Commonwealth Department of Health and led by 10 Primary Health Networks (PHNs), the National Trial focused on priority populations who have an increased risk of suicide, with two sites – North Western Melbourne and Brisbane North – working directly with LGBTIQ+ populations to implement a community-led, systems approach to suicide prevention.<br /></p>\n\n<p>Containing reflections from five years of delivering suicide prevention activities in these local regions, the report fills a gap in knowledge available to those implementing suicide prevention activities for LGBTIQ+ communities. Key learnings include embedding lived experience and enabling local decision-making to inform culturally safe design and delivery of services for these populations.</p>\n<p>“We learnt that it is vitally important for suicide prevention coordinators to build strong relationships with local LGBTIQ+ communities and understand intersectionality to improve the communities’ mental health and suicide outcomes,” said Janey McGoldrick, Head of Implementation at the Black Dog Institute.</p>\n<p>Mainstream services often fail to meet the specific needs of LGBTIQ+ communities. With a chronic shortage of culturally safe or affirmative support, services that can be difficult to access for those in remote and regional areas, and a lack of data available – with sexual orientation, gender identity and intersex status routinely omitted from national datasets – LGBTIQ+ communities remain at significantly higher risk of suicide than the general population.</p>\n<p>Both North Western Melbourne and Brisbane North PHNs used the LifeSpan model – a pioneering systems approach to suicide prevention developed by the Black Dog Institute – to guide their strategy and activities.</p>\n<p>“The trial allowed us to coordinate a multifaceted approach to suicide prevention for the LGBTIQ+ Sistergirl and Brotherboy communities,” said Ged Farmer, Suicide Prevention Project Officer, for the Brisbane North PHN.</p>\n<p>With funding for the National Suicide Prevention Trial due to cease from June 2021, the report highlights an urgent need for sustained funding to allow this life-saving work to continue, grow and support more people at risk of suicide in the LGBTIQ+ communities.</p>\n<p>“The trial programs and services are really connecting with the community because they were built with the community,” said North Western Melbourne PHN CEO Adjunct Associate Professor Chris Carter said.</p>\n<p>“It’s a great example of how we need to involve people with lived experience, not just in suicide prevention, but across our health system,” said Associate Professor Carter.</p>\n<p><a href=\"https://www.blackdoginstitute.org.au/wp-content/uploads/2021/04/BDI21_Suicide-prevention-for-LGBTIQ-communities.pdf\"><strong>Download the report</strong></a></p>\n<p><em>With thanks to the Black Dog Institute for their permission to reprint this article. </em></p>',NULL,NULL,NULL),(4876,162162,1,'2021-05-18 01:07:41','2021-05-18 01:07:41','65ebd5cf-38c5-4706-a21e-14c8d61629ee',NULL,NULL,NULL,NULL),(4877,162163,1,'2021-05-18 01:07:50','2021-05-18 01:07:50','6b4b3860-7b07-4559-a2cf-48cc6a0ce1c0','<p><strong>Dr Debra Carroll works as a General Practitioner with Special Interest (GPwSI) in Gestational Diabetes (GDM), and shared her thoughts on what attracted her to the role and how it complements her work as a general practitioner. </strong></p>\n<p>The GPwSI model of care aims to improve patient access to the most appropriate specialist care in a timely and cost-effective manner, within the outpatient setting. It represents a unique opportunity for GPs to upskill within an area of interest and strengthens the links between primary care practitioners and hospital-based specialist services.</p>\n<p>Within the work she does as a GPwSI, Dr Carroll enjoys the variety that the role brings to her week, and the opportunity to focus on a specific clinical problem within the GDM clinic while working within a multidisciplinary team.</p>\n<p>Dr Carroll said she enjoys being able to bring a broad knowledge of the health system—particularly primary care—to her role as a GPwSI. </p>\n<p><strong>Read more</strong></p>\n<p>“I have the ability to explain to hospital-based healthcare providers how primary care works and how the two systems can work together to improve patient care and outcomes,” she said.</p>\n<p>“I also get the opportunity to advocate for GPs where appropriate and hopefully to provide a positive GP role model to hospital staff and patients.”</p>\n<p>Within her work as a GP, Dr Carroll appreciates the independence, the ability to be flexible and realistic with guidelines and the opportunity to know her patients well in terms of their physical, social and psychological challenges. </p>\n<p>“As a GP I get to advocate for the public system in my practice and assist colleagues and patients in the appropriate pathways to access care within the public system,” Dr Carroll said.</p>\n<p>“It helps to have an improved understanding of the complexities of providing healthcare in the public hospital environment. It is helpful to be able to interpret that for patients and colleagues and improve their confidence in what the public system can provide.”</p>\n<p>To any GPs considering a GPwSI role, Dr Carroll would recommend it to those who want to try something different and work in a team of clinicians with a multi-disciplinary approach.</p>\n<p>“The hospital staff are very welcoming and supportive and very willing to educate and share their knowledge and skills,” Dr Carroll said. </p>\n<p>The project, currently funded in partnership with the Queensland Health Clinical Excellence Division, recruited their first GPwSI in April 2018, since then has had up to 17 GPs with Special Interests working across a diverse selection of 15 specialty departments.</p>\n<p>The GP with Special Interest outpatient clinics are based out of Metro North Hospital and Community Health facilities. Special interest outpatients clinics include:</p>\n<ul><li>orthopaedic</li><li>diabetes</li><li>epilepsy</li><li>older persons.</li></ul>\n<p>Metro North Health are currently recruiting a GPwSI in Chronic Kidney Disease to work at Queensland Health facilities in the catchment areas of Caboolture, North Lakes, Redcliffe and The Prince Charles Hospital. </p>\n<p>For more information on the opportunity visit the <a href=\"https://smartjobs.qld.gov.au/jobs/QLD-RBH371167\">Queensland Government’s Smart Jobs page</a> or to get in contact with the project team email <a href=\"mailto:MNHHSGPwSIProject@health.qld.gov.au\">MNHHSGPwSIProject@health.qld.gov.au</a>. </p>',NULL,NULL,NULL),(4878,162164,1,'2021-05-18 01:08:01','2021-05-18 01:08:01','2d7add4c-9633-409d-a94a-c5b73e1cb188','<p><strong>Dr Debra Carroll works as a General Practitioner with Special Interest (GPwSI) in Gestational Diabetes (GDM), and shared her thoughts on what attracted her to the role and how it complements her work as a general practitioner. </strong></p>\n<p>The GPwSI model of care aims to improve patient access to the most appropriate specialist care in a timely and cost-effective manner, within the outpatient setting. It represents a unique opportunity for GPs to upskill within an area of interest and strengthens the links between primary care practitioners and hospital-based specialist services.</p>\n<p>Within the work she does as a GPwSI, Dr Carroll enjoys the variety that the role brings to her week, and the opportunity to focus on a specific clinical problem within the GDM clinic while working within a multidisciplinary team.</p>\n<p>Dr Carroll said she enjoys being able to bring a broad knowledge of the health system—particularly primary care—to her role as a GPwSI. <br /></p>\n\n<p>“I have the ability to explain to hospital-based healthcare providers how primary care works and how the two systems can work together to improve patient care and outcomes,” she said.</p>\n<p>“I also get the opportunity to advocate for GPs where appropriate and hopefully to provide a positive GP role model to hospital staff and patients.”</p>\n<p>Within her work as a GP, Dr Carroll appreciates the independence, the ability to be flexible and realistic with guidelines and the opportunity to know her patients well in terms of their physical, social and psychological challenges. </p>\n<p>“As a GP I get to advocate for the public system in my practice and assist colleagues and patients in the appropriate pathways to access care within the public system,” Dr Carroll said.</p>\n<p>“It helps to have an improved understanding of the complexities of providing healthcare in the public hospital environment. It is helpful to be able to interpret that for patients and colleagues and improve their confidence in what the public system can provide.”</p>\n<p>To any GPs considering a GPwSI role, Dr Carroll would recommend it to those who want to try something different and work in a team of clinicians with a multi-disciplinary approach.</p>\n<p>“The hospital staff are very welcoming and supportive and very willing to educate and share their knowledge and skills,” Dr Carroll said. </p>\n<p>The project, currently funded in partnership with the Queensland Health Clinical Excellence Division, recruited their first GPwSI in April 2018, since then has had up to 17 GPs with Special Interests working across a diverse selection of 15 specialty departments.</p>\n<p>The GP with Special Interest outpatient clinics are based out of Metro North Hospital and Community Health facilities. Special interest outpatients clinics include:</p>\n<ul><li>orthopaedic</li><li>diabetes</li><li>epilepsy</li><li>older persons.</li></ul>\n<p>Metro North Health are currently recruiting a GPwSI in Chronic Kidney Disease to work at Queensland Health facilities in the catchment areas of Caboolture, North Lakes, Redcliffe and The Prince Charles Hospital. </p>\n<p>For more information on the opportunity visit the <a href=\"https://smartjobs.qld.gov.au/jobs/QLD-RBH371167\">Queensland Government’s Smart Jobs page</a> or to get in contact with the project team email <a href=\"mailto:MNHHSGPwSIProject@health.qld.gov.au\">MNHHSGPwSIProject@health.qld.gov.au</a>. </p>',NULL,NULL,NULL),(4879,162165,1,'2021-05-18 01:08:06','2021-05-18 01:08:06','52103391-b4ad-48d5-9944-bea3c2a950ea','<p><strong>Dr Debra Carroll works as a General Practitioner with Special Interest (GPwSI) in Gestational Diabetes (GDM), and shared her thoughts on what attracted her to the role and how it complements her work as a general practitioner. </strong></p>\n<p>The GPwSI model of care aims to improve patient access to the most appropriate specialist care in a timely and cost-effective manner, within the outpatient setting. It represents a unique opportunity for GPs to upskill within an area of interest and strengthens the links between primary care practitioners and hospital-based specialist services.</p>\n<p>Within the work she does as a GPwSI, Dr Carroll enjoys the variety that the role brings to her week, and the opportunity to focus on a specific clinical problem within the GDM clinic while working within a multidisciplinary team.</p>\n<p>Dr Carroll said she enjoys being able to bring a broad knowledge of the health system—particularly primary care—to her role as a GPwSI. <br /></p>\n\n<p>“I have the ability to explain to hospital-based healthcare providers how primary care works and how the two systems can work together to improve patient care and outcomes,” she said.</p>\n<p>“I also get the opportunity to advocate for GPs where appropriate and hopefully to provide a positive GP role model to hospital staff and patients.”</p>\n<p>Within her work as a GP, Dr Carroll appreciates the independence, the ability to be flexible and realistic with guidelines and the opportunity to know her patients well in terms of their physical, social and psychological challenges. </p>\n<p>“As a GP I get to advocate for the public system in my practice and assist colleagues and patients in the appropriate pathways to access care within the public system,” Dr Carroll said.</p>\n<p>“It helps to have an improved understanding of the complexities of providing healthcare in the public hospital environment. It is helpful to be able to interpret that for patients and colleagues and improve their confidence in what the public system can provide.”</p>\n<p>To any GPs considering a GPwSI role, Dr Carroll would recommend it to those who want to try something different and work in a team of clinicians with a multi-disciplinary approach.</p>\n<p>“The hospital staff are very welcoming and supportive and very willing to educate and share their knowledge and skills,” Dr Carroll said. </p>\n<p>The project, currently funded in partnership with the Queensland Health Clinical Excellence Division, recruited their first GPwSI in April 2018, since then has had up to 17 GPs with Special Interests working across a diverse selection of 15 specialty departments.</p>\n<p>The GP with Special Interest outpatient clinics are based out of Metro North Hospital and Community Health facilities. Special interest outpatients clinics include:</p>\n<p>orthopaedic</p><ul><li>diabetes</li><li>epilepsy</li><li>older persons.</li></ul>\n<p>Metro North Health are currently recruiting a GPwSI in Chronic Kidney Disease to work at Queensland Health facilities in the catchment areas of Caboolture, North Lakes, Redcliffe and The Prince Charles Hospital. </p>\n<p>For more information on the opportunity visit the <a href=\"https://smartjobs.qld.gov.au/jobs/QLD-RBH371167\">Queensland Government’s Smart Jobs page</a> or to get in contact with the project team email <a href=\"mailto:MNHHSGPwSIProject@health.qld.gov.au\">MNHHSGPwSIProject@health.qld.gov.au</a>. </p>',NULL,NULL,NULL),(4880,162166,1,'2021-05-18 01:08:07','2021-05-18 01:08:07','73cc7ddb-ba42-4ae9-b961-7c1512cebbcb','<p><strong>Dr Debra Carroll works as a General Practitioner with Special Interest (GPwSI) in Gestational Diabetes (GDM), and shared her thoughts on what attracted her to the role and how it complements her work as a general practitioner. </strong></p>\n<p>The GPwSI model of care aims to improve patient access to the most appropriate specialist care in a timely and cost-effective manner, within the outpatient setting. It represents a unique opportunity for GPs to upskill within an area of interest and strengthens the links between primary care practitioners and hospital-based specialist services.</p>\n<p>Within the work she does as a GPwSI, Dr Carroll enjoys the variety that the role brings to her week, and the opportunity to focus on a specific clinical problem within the GDM clinic while working within a multidisciplinary team.</p>\n<p>Dr Carroll said she enjoys being able to bring a broad knowledge of the health system—particularly primary care—to her role as a GPwSI. <br /></p>\n\n<p>“I have the ability to explain to hospital-based healthcare providers how primary care works and how the two systems can work together to improve patient care and outcomes,” she said.</p>\n<p>“I also get the opportunity to advocate for GPs where appropriate and hopefully to provide a positive GP role model to hospital staff and patients.”</p>\n<p>Within her work as a GP, Dr Carroll appreciates the independence, the ability to be flexible and realistic with guidelines and the opportunity to know her patients well in terms of their physical, social and psychological challenges. </p>\n<p>“As a GP I get to advocate for the public system in my practice and assist colleagues and patients in the appropriate pathways to access care within the public system,” Dr Carroll said.</p>\n<p>“It helps to have an improved understanding of the complexities of providing healthcare in the public hospital environment. It is helpful to be able to interpret that for patients and colleagues and improve their confidence in what the public system can provide.”</p>\n<p>To any GPs considering a GPwSI role, Dr Carroll would recommend it to those who want to try something different and work in a team of clinicians with a multi-disciplinary approach.</p>\n<p>“The hospital staff are very welcoming and supportive and very willing to educate and share their knowledge and skills,” Dr Carroll said. </p>\n<p>The project, currently funded in partnership with the Queensland Health Clinical Excellence Division, recruited their first GPwSI in April 2018, since then has had up to 17 GPs with Special Interests working across a diverse selection of 15 specialty departments.</p>\n<p>The GP with Special Interest outpatient clinics are based out of Metro North Hospital and Community Health facilities. Special interest outpatients clinics include:</p>\n<p>orthopaedicdiabetes</p><ul><li>epilepsy</li><li>older persons.</li></ul>\n<p>Metro North Health are currently recruiting a GPwSI in Chronic Kidney Disease to work at Queensland Health facilities in the catchment areas of Caboolture, North Lakes, Redcliffe and The Prince Charles Hospital. </p>\n<p>For more information on the opportunity visit the <a href=\"https://smartjobs.qld.gov.au/jobs/QLD-RBH371167\">Queensland Government’s Smart Jobs page</a> or to get in contact with the project team email <a href=\"mailto:MNHHSGPwSIProject@health.qld.gov.au\">MNHHSGPwSIProject@health.qld.gov.au</a>. </p>',NULL,NULL,NULL),(4881,162167,1,'2021-05-18 01:08:09','2021-05-18 01:08:09','f130dcab-0976-46ff-98ab-86970299b6d1','<p><strong>Dr Debra Carroll works as a General Practitioner with Special Interest (GPwSI) in Gestational Diabetes (GDM), and shared her thoughts on what attracted her to the role and how it complements her work as a general practitioner. </strong></p>\n<p>The GPwSI model of care aims to improve patient access to the most appropriate specialist care in a timely and cost-effective manner, within the outpatient setting. It represents a unique opportunity for GPs to upskill within an area of interest and strengthens the links between primary care practitioners and hospital-based specialist services.</p>\n<p>Within the work she does as a GPwSI, Dr Carroll enjoys the variety that the role brings to her week, and the opportunity to focus on a specific clinical problem within the GDM clinic while working within a multidisciplinary team.</p>\n<p>Dr Carroll said she enjoys being able to bring a broad knowledge of the health system—particularly primary care—to her role as a GPwSI. <br /></p>\n\n<p>“I have the ability to explain to hospital-based healthcare providers how primary care works and how the two systems can work together to improve patient care and outcomes,” she said.</p>\n<p>“I also get the opportunity to advocate for GPs where appropriate and hopefully to provide a positive GP role model to hospital staff and patients.”</p>\n<p>Within her work as a GP, Dr Carroll appreciates the independence, the ability to be flexible and realistic with guidelines and the opportunity to know her patients well in terms of their physical, social and psychological challenges. </p>\n<p>“As a GP I get to advocate for the public system in my practice and assist colleagues and patients in the appropriate pathways to access care within the public system,” Dr Carroll said.</p>\n<p>“It helps to have an improved understanding of the complexities of providing healthcare in the public hospital environment. It is helpful to be able to interpret that for patients and colleagues and improve their confidence in what the public system can provide.”</p>\n<p>To any GPs considering a GPwSI role, Dr Carroll would recommend it to those who want to try something different and work in a team of clinicians with a multi-disciplinary approach.</p>\n<p>“The hospital staff are very welcoming and supportive and very willing to educate and share their knowledge and skills,” Dr Carroll said. </p>\n<p>The project, currently funded in partnership with the Queensland Health Clinical Excellence Division, recruited their first GPwSI in April 2018, since then has had up to 17 GPs with Special Interests working across a diverse selection of 15 specialty departments.</p>\n<p>The GP with Special Interest outpatient clinics are based out of Metro North Hospital and Community Health facilities. Special interest outpatients clinics include:</p>\n<p>orthopaedicdiabetesepilepsy</p><ul><li>older persons.</li></ul>\n<p>Metro North Health are currently recruiting a GPwSI in Chronic Kidney Disease to work at Queensland Health facilities in the catchment areas of Caboolture, North Lakes, Redcliffe and The Prince Charles Hospital. </p>\n<p>For more information on the opportunity visit the <a href=\"https://smartjobs.qld.gov.au/jobs/QLD-RBH371167\">Queensland Government’s Smart Jobs page</a> or to get in contact with the project team email <a href=\"mailto:MNHHSGPwSIProject@health.qld.gov.au\">MNHHSGPwSIProject@health.qld.gov.au</a>. </p>',NULL,NULL,NULL),(4882,162168,1,'2021-05-18 01:08:10','2021-05-18 01:08:10','26a78f54-2d4a-4cad-b23f-fc5c5b9b20fc','<p><strong>Dr Debra Carroll works as a General Practitioner with Special Interest (GPwSI) in Gestational Diabetes (GDM), and shared her thoughts on what attracted her to the role and how it complements her work as a general practitioner. </strong></p>\n<p>The GPwSI model of care aims to improve patient access to the most appropriate specialist care in a timely and cost-effective manner, within the outpatient setting. It represents a unique opportunity for GPs to upskill within an area of interest and strengthens the links between primary care practitioners and hospital-based specialist services.</p>\n<p>Within the work she does as a GPwSI, Dr Carroll enjoys the variety that the role brings to her week, and the opportunity to focus on a specific clinical problem within the GDM clinic while working within a multidisciplinary team.</p>\n<p>Dr Carroll said she enjoys being able to bring a broad knowledge of the health system—particularly primary care—to her role as a GPwSI. <br /></p>\n\n<p>“I have the ability to explain to hospital-based healthcare providers how primary care works and how the two systems can work together to improve patient care and outcomes,” she said.</p>\n<p>“I also get the opportunity to advocate for GPs where appropriate and hopefully to provide a positive GP role model to hospital staff and patients.”</p>\n<p>Within her work as a GP, Dr Carroll appreciates the independence, the ability to be flexible and realistic with guidelines and the opportunity to know her patients well in terms of their physical, social and psychological challenges. </p>\n<p>“As a GP I get to advocate for the public system in my practice and assist colleagues and patients in the appropriate pathways to access care within the public system,” Dr Carroll said.</p>\n<p>“It helps to have an improved understanding of the complexities of providing healthcare in the public hospital environment. It is helpful to be able to interpret that for patients and colleagues and improve their confidence in what the public system can provide.”</p>\n<p>To any GPs considering a GPwSI role, Dr Carroll would recommend it to those who want to try something different and work in a team of clinicians with a multi-disciplinary approach.</p>\n<p>“The hospital staff are very welcoming and supportive and very willing to educate and share their knowledge and skills,” Dr Carroll said. </p>\n<p>The project, currently funded in partnership with the Queensland Health Clinical Excellence Division, recruited their first GPwSI in April 2018, since then has had up to 17 GPs with Special Interests working across a diverse selection of 15 specialty departments.</p>\n<p>The GP with Special Interest outpatient clinics are based out of Metro North Hospital and Community Health facilities. Special interest outpatients clinics include:</p>\n<p>orthopaedicdiabetesepilepsyolder persons.</p>\n<p>Metro North Health are currently recruiting a GPwSI in Chronic Kidney Disease to work at Queensland Health facilities in the catchment areas of Caboolture, North Lakes, Redcliffe and The Prince Charles Hospital. </p>\n<p>For more information on the opportunity visit the <a href=\"https://smartjobs.qld.gov.au/jobs/QLD-RBH371167\">Queensland Government’s Smart Jobs page</a> or to get in contact with the project team email <a href=\"mailto:MNHHSGPwSIProject@health.qld.gov.au\">MNHHSGPwSIProject@health.qld.gov.au</a>. </p>',NULL,NULL,NULL),(4883,162169,1,'2021-05-18 01:08:13','2021-05-18 01:08:13','432fe033-8a05-485d-a056-8c557804096b','<p><strong>Dr Debra Carroll works as a General Practitioner with Special Interest (GPwSI) in Gestational Diabetes (GDM), and shared her thoughts on what attracted her to the role and how it complements her work as a general practitioner. </strong></p>\n<p>The GPwSI model of care aims to improve patient access to the most appropriate specialist care in a timely and cost-effective manner, within the outpatient setting. It represents a unique opportunity for GPs to upskill within an area of interest and strengthens the links between primary care practitioners and hospital-based specialist services.</p>\n<p>Within the work she does as a GPwSI, Dr Carroll enjoys the variety that the role brings to her week, and the opportunity to focus on a specific clinical problem within the GDM clinic while working within a multidisciplinary team.</p>\n<p>Dr Carroll said she enjoys being able to bring a broad knowledge of the health system—particularly primary care—to her role as a GPwSI. <br /></p>\n\n<p>“I have the ability to explain to hospital-based healthcare providers how primary care works and how the two systems can work together to improve patient care and outcomes,” she said.</p>\n<p>“I also get the opportunity to advocate for GPs where appropriate and hopefully to provide a positive GP role model to hospital staff and patients.”</p>\n<p>Within her work as a GP, Dr Carroll appreciates the independence, the ability to be flexible and realistic with guidelines and the opportunity to know her patients well in terms of their physical, social and psychological challenges. </p>\n<p>“As a GP I get to advocate for the public system in my practice and assist colleagues and patients in the appropriate pathways to access care within the public system,” Dr Carroll said.</p>\n<p>“It helps to have an improved understanding of the complexities of providing healthcare in the public hospital environment. It is helpful to be able to interpret that for patients and colleagues and improve their confidence in what the public system can provide.”</p>\n<p>To any GPs considering a GPwSI role, Dr Carroll would recommend it to those who want to try something different and work in a team of clinicians with a multi-disciplinary approach.</p>\n<p>“The hospital staff are very welcoming and supportive and very willing to educate and share their knowledge and skills,” Dr Carroll said. </p>\n<p>The project, currently funded in partnership with the Queensland Health Clinical Excellence Division, recruited their first GPwSI in April 2018, since then has had up to 17 GPs with Special Interests working across a diverse selection of 15 specialty departments.</p>\n<p>The GP with Special Interest outpatient clinics are based out of Metro North Hospital and Community Health facilities. Special interest outpatients clinics include:orthopaedicdiabetesepilepsyolder persons.</p>\n\n<p>Metro North Health are currently recruiting a GPwSI in Chronic Kidney Disease to work at Queensland Health facilities in the catchment areas of Caboolture, North Lakes, Redcliffe and The Prince Charles Hospital. </p>\n<p>For more information on the opportunity visit the <a href=\"https://smartjobs.qld.gov.au/jobs/QLD-RBH371167\">Queensland Government’s Smart Jobs page</a> or to get in contact with the project team email <a href=\"mailto:MNHHSGPwSIProject@health.qld.gov.au\">MNHHSGPwSIProject@health.qld.gov.au</a>. </p>',NULL,NULL,NULL),(4884,162170,1,'2021-05-18 01:08:15','2021-05-18 01:08:15','f8bdf9b3-727d-4711-91ab-f73abb98a257','<p><strong>Dr Debra Carroll works as a General Practitioner with Special Interest (GPwSI) in Gestational Diabetes (GDM), and shared her thoughts on what attracted her to the role and how it complements her work as a general practitioner. </strong></p>\n<p>The GPwSI model of care aims to improve patient access to the most appropriate specialist care in a timely and cost-effective manner, within the outpatient setting. It represents a unique opportunity for GPs to upskill within an area of interest and strengthens the links between primary care practitioners and hospital-based specialist services.</p>\n<p>Within the work she does as a GPwSI, Dr Carroll enjoys the variety that the role brings to her week, and the opportunity to focus on a specific clinical problem within the GDM clinic while working within a multidisciplinary team.</p>\n<p>Dr Carroll said she enjoys being able to bring a broad knowledge of the health system—particularly primary care—to her role as a GPwSI. <br /></p>\n\n<p>“I have the ability to explain to hospital-based healthcare providers how primary care works and how the two systems can work together to improve patient care and outcomes,” she said.</p>\n<p>“I also get the opportunity to advocate for GPs where appropriate and hopefully to provide a positive GP role model to hospital staff and patients.”</p>\n<p>Within her work as a GP, Dr Carroll appreciates the independence, the ability to be flexible and realistic with guidelines and the opportunity to know her patients well in terms of their physical, social and psychological challenges. </p>\n<p>“As a GP I get to advocate for the public system in my practice and assist colleagues and patients in the appropriate pathways to access care within the public system,” Dr Carroll said.</p>\n<p>“It helps to have an improved understanding of the complexities of providing healthcare in the public hospital environment. It is helpful to be able to interpret that for patients and colleagues and improve their confidence in what the public system can provide.”</p>\n<p>To any GPs considering a GPwSI role, Dr Carroll would recommend it to those who want to try something different and work in a team of clinicians with a multi-disciplinary approach.</p>\n<p>“The hospital staff are very welcoming and supportive and very willing to educate and share their knowledge and skills,” Dr Carroll said. </p>\n<p>The project, currently funded in partnership with the Queensland Health Clinical Excellence Division, recruited their first GPwSI in April 2018, since then has had up to 17 GPs with Special Interests working across a diverse selection of 15 specialty departments.</p>\n<p>The GP with Special Interest outpatient clinics are based out of Metro North Hospital and Community Health facilities. Special interest outpatients clinics include:</p>\n<p>orthopaedicdiabetesepilepsyolder persons.</p>\n\n<p>Metro North Health are currently recruiting a GPwSI in Chronic Kidney Disease to work at Queensland Health facilities in the catchment areas of Caboolture, North Lakes, Redcliffe and The Prince Charles Hospital. </p>\n<p>For more information on the opportunity visit the <a href=\"https://smartjobs.qld.gov.au/jobs/QLD-RBH371167\">Queensland Government’s Smart Jobs page</a> or to get in contact with the project team email <a href=\"mailto:MNHHSGPwSIProject@health.qld.gov.au\">MNHHSGPwSIProject@health.qld.gov.au</a>. </p>',NULL,NULL,NULL),(4885,162171,1,'2021-05-18 01:08:17','2021-05-18 01:08:17','ca5b20ef-ffa7-4b25-a239-88933337a686','<p><strong>Dr Debra Carroll works as a General Practitioner with Special Interest (GPwSI) in Gestational Diabetes (GDM), and shared her thoughts on what attracted her to the role and how it complements her work as a general practitioner. </strong></p>\n<p>The GPwSI model of care aims to improve patient access to the most appropriate specialist care in a timely and cost-effective manner, within the outpatient setting. It represents a unique opportunity for GPs to upskill within an area of interest and strengthens the links between primary care practitioners and hospital-based specialist services.</p>\n<p>Within the work she does as a GPwSI, Dr Carroll enjoys the variety that the role brings to her week, and the opportunity to focus on a specific clinical problem within the GDM clinic while working within a multidisciplinary team.</p>\n<p>Dr Carroll said she enjoys being able to bring a broad knowledge of the health system—particularly primary care—to her role as a GPwSI. <br /></p>\n\n<p>“I have the ability to explain to hospital-based healthcare providers how primary care works and how the two systems can work together to improve patient care and outcomes,” she said.</p>\n<p>“I also get the opportunity to advocate for GPs where appropriate and hopefully to provide a positive GP role model to hospital staff and patients.”</p>\n<p>Within her work as a GP, Dr Carroll appreciates the independence, the ability to be flexible and realistic with guidelines and the opportunity to know her patients well in terms of their physical, social and psychological challenges. </p>\n<p>“As a GP I get to advocate for the public system in my practice and assist colleagues and patients in the appropriate pathways to access care within the public system,” Dr Carroll said.</p>\n<p>“It helps to have an improved understanding of the complexities of providing healthcare in the public hospital environment. It is helpful to be able to interpret that for patients and colleagues and improve their confidence in what the public system can provide.”</p>\n<p>To any GPs considering a GPwSI role, Dr Carroll would recommend it to those who want to try something different and work in a team of clinicians with a multi-disciplinary approach.</p>\n<p>“The hospital staff are very welcoming and supportive and very willing to educate and share their knowledge and skills,” Dr Carroll said. </p>\n<p>The project, currently funded in partnership with the Queensland Health Clinical Excellence Division, recruited their first GPwSI in April 2018, since then has had up to 17 GPs with Special Interests working across a diverse selection of 15 specialty departments.</p>\n<p>The GP with Special Interest outpatient clinics are based out of Metro North Hospital and Community Health facilities. Special interest outpatients clinics include:</p><ul><li>orthopaedicdiabetesepilepsyolder persons.</li></ul>\n\n<p>Metro North Health are currently recruiting a GPwSI in Chronic Kidney Disease to work at Queensland Health facilities in the catchment areas of Caboolture, North Lakes, Redcliffe and The Prince Charles Hospital. </p>\n<p>For more information on the opportunity visit the <a href=\"https://smartjobs.qld.gov.au/jobs/QLD-RBH371167\">Queensland Government’s Smart Jobs page</a> or to get in contact with the project team email <a href=\"mailto:MNHHSGPwSIProject@health.qld.gov.au\">MNHHSGPwSIProject@health.qld.gov.au</a>. </p>',NULL,NULL,NULL),(4886,162172,1,'2021-05-18 01:08:18','2021-05-18 01:08:18','5459b9f8-9d87-47fb-a7c6-f50900ca106d','<p><strong>Dr Debra Carroll works as a General Practitioner with Special Interest (GPwSI) in Gestational Diabetes (GDM), and shared her thoughts on what attracted her to the role and how it complements her work as a general practitioner. </strong></p>\n<p>The GPwSI model of care aims to improve patient access to the most appropriate specialist care in a timely and cost-effective manner, within the outpatient setting. It represents a unique opportunity for GPs to upskill within an area of interest and strengthens the links between primary care practitioners and hospital-based specialist services.</p>\n<p>Within the work she does as a GPwSI, Dr Carroll enjoys the variety that the role brings to her week, and the opportunity to focus on a specific clinical problem within the GDM clinic while working within a multidisciplinary team.</p>\n<p>Dr Carroll said she enjoys being able to bring a broad knowledge of the health system—particularly primary care—to her role as a GPwSI. <br /></p>\n\n<p>“I have the ability to explain to hospital-based healthcare providers how primary care works and how the two systems can work together to improve patient care and outcomes,” she said.</p>\n<p>“I also get the opportunity to advocate for GPs where appropriate and hopefully to provide a positive GP role model to hospital staff and patients.”</p>\n<p>Within her work as a GP, Dr Carroll appreciates the independence, the ability to be flexible and realistic with guidelines and the opportunity to know her patients well in terms of their physical, social and psychological challenges. </p>\n<p>“As a GP I get to advocate for the public system in my practice and assist colleagues and patients in the appropriate pathways to access care within the public system,” Dr Carroll said.</p>\n<p>“It helps to have an improved understanding of the complexities of providing healthcare in the public hospital environment. It is helpful to be able to interpret that for patients and colleagues and improve their confidence in what the public system can provide.”</p>\n<p>To any GPs considering a GPwSI role, Dr Carroll would recommend it to those who want to try something different and work in a team of clinicians with a multi-disciplinary approach.</p>\n<p>“The hospital staff are very welcoming and supportive and very willing to educate and share their knowledge and skills,” Dr Carroll said. </p>\n<p>The project, currently funded in partnership with the Queensland Health Clinical Excellence Division, recruited their first GPwSI in April 2018, since then has had up to 17 GPs with Special Interests working across a diverse selection of 15 specialty departments.</p>\n<p>The GP with Special Interest outpatient clinics are based out of Metro North Hospital and Community Health facilities. Special interest outpatients clinics include:</p><ul><li>orthopaedic</li><li>diabetesepilepsyolder persons.</li></ul>\n\n<p>Metro North Health are currently recruiting a GPwSI in Chronic Kidney Disease to work at Queensland Health facilities in the catchment areas of Caboolture, North Lakes, Redcliffe and The Prince Charles Hospital. </p>\n<p>For more information on the opportunity visit the <a href=\"https://smartjobs.qld.gov.au/jobs/QLD-RBH371167\">Queensland Government’s Smart Jobs page</a> or to get in contact with the project team email <a href=\"mailto:MNHHSGPwSIProject@health.qld.gov.au\">MNHHSGPwSIProject@health.qld.gov.au</a>. </p>',NULL,NULL,NULL),(4887,162173,1,'2021-05-18 01:08:20','2021-05-18 01:08:20','3d43f20f-9454-4d28-a242-1c8b70a1d054','<p><strong>Dr Debra Carroll works as a General Practitioner with Special Interest (GPwSI) in Gestational Diabetes (GDM), and shared her thoughts on what attracted her to the role and how it complements her work as a general practitioner. </strong></p>\n<p>The GPwSI model of care aims to improve patient access to the most appropriate specialist care in a timely and cost-effective manner, within the outpatient setting. It represents a unique opportunity for GPs to upskill within an area of interest and strengthens the links between primary care practitioners and hospital-based specialist services.</p>\n<p>Within the work she does as a GPwSI, Dr Carroll enjoys the variety that the role brings to her week, and the opportunity to focus on a specific clinical problem within the GDM clinic while working within a multidisciplinary team.</p>\n<p>Dr Carroll said she enjoys being able to bring a broad knowledge of the health system—particularly primary care—to her role as a GPwSI. <br /></p>\n\n<p>“I have the ability to explain to hospital-based healthcare providers how primary care works and how the two systems can work together to improve patient care and outcomes,” she said.</p>\n<p>“I also get the opportunity to advocate for GPs where appropriate and hopefully to provide a positive GP role model to hospital staff and patients.”</p>\n<p>Within her work as a GP, Dr Carroll appreciates the independence, the ability to be flexible and realistic with guidelines and the opportunity to know her patients well in terms of their physical, social and psychological challenges. </p>\n<p>“As a GP I get to advocate for the public system in my practice and assist colleagues and patients in the appropriate pathways to access care within the public system,” Dr Carroll said.</p>\n<p>“It helps to have an improved understanding of the complexities of providing healthcare in the public hospital environment. It is helpful to be able to interpret that for patients and colleagues and improve their confidence in what the public system can provide.”</p>\n<p>To any GPs considering a GPwSI role, Dr Carroll would recommend it to those who want to try something different and work in a team of clinicians with a multi-disciplinary approach.</p>\n<p>“The hospital staff are very welcoming and supportive and very willing to educate and share their knowledge and skills,” Dr Carroll said. </p>\n<p>The project, currently funded in partnership with the Queensland Health Clinical Excellence Division, recruited their first GPwSI in April 2018, since then has had up to 17 GPs with Special Interests working across a diverse selection of 15 specialty departments.</p>\n<p>The GP with Special Interest outpatient clinics are based out of Metro North Hospital and Community Health facilities. Special interest outpatients clinics include:</p><ul><li>orthopaedic</li><li>diabetes</li><li>epilepsyolder persons.</li></ul>\n\n<p>Metro North Health are currently recruiting a GPwSI in Chronic Kidney Disease to work at Queensland Health facilities in the catchment areas of Caboolture, North Lakes, Redcliffe and The Prince Charles Hospital. </p>\n<p>For more information on the opportunity visit the <a href=\"https://smartjobs.qld.gov.au/jobs/QLD-RBH371167\">Queensland Government’s Smart Jobs page</a> or to get in contact with the project team email <a href=\"mailto:MNHHSGPwSIProject@health.qld.gov.au\">MNHHSGPwSIProject@health.qld.gov.au</a>. </p>',NULL,NULL,NULL),(4888,162174,1,'2021-05-18 01:08:23','2021-05-18 01:08:23','851cf870-732a-4bd9-817e-f89b0f1e563f','<p><strong>Dr Debra Carroll works as a General Practitioner with Special Interest (GPwSI) in Gestational Diabetes (GDM), and shared her thoughts on what attracted her to the role and how it complements her work as a general practitioner. </strong></p>\n<p>The GPwSI model of care aims to improve patient access to the most appropriate specialist care in a timely and cost-effective manner, within the outpatient setting. It represents a unique opportunity for GPs to upskill within an area of interest and strengthens the links between primary care practitioners and hospital-based specialist services.</p>\n<p>Within the work she does as a GPwSI, Dr Carroll enjoys the variety that the role brings to her week, and the opportunity to focus on a specific clinical problem within the GDM clinic while working within a multidisciplinary team.</p>\n<p>Dr Carroll said she enjoys being able to bring a broad knowledge of the health system—particularly primary care—to her role as a GPwSI. <br /></p>\n\n<p>“I have the ability to explain to hospital-based healthcare providers how primary care works and how the two systems can work together to improve patient care and outcomes,” she said.</p>\n<p>“I also get the opportunity to advocate for GPs where appropriate and hopefully to provide a positive GP role model to hospital staff and patients.”</p>\n<p>Within her work as a GP, Dr Carroll appreciates the independence, the ability to be flexible and realistic with guidelines and the opportunity to know her patients well in terms of their physical, social and psychological challenges. </p>\n<p>“As a GP I get to advocate for the public system in my practice and assist colleagues and patients in the appropriate pathways to access care within the public system,” Dr Carroll said.</p>\n<p>“It helps to have an improved understanding of the complexities of providing healthcare in the public hospital environment. It is helpful to be able to interpret that for patients and colleagues and improve their confidence in what the public system can provide.”</p>\n<p>To any GPs considering a GPwSI role, Dr Carroll would recommend it to those who want to try something different and work in a team of clinicians with a multi-disciplinary approach.</p>\n<p>“The hospital staff are very welcoming and supportive and very willing to educate and share their knowledge and skills,” Dr Carroll said. </p>\n<p>The project, currently funded in partnership with the Queensland Health Clinical Excellence Division, recruited their first GPwSI in April 2018, since then has had up to 17 GPs with Special Interests working across a diverse selection of 15 specialty departments.</p>\n<p>The GP with Special Interest outpatient clinics are based out of Metro North Hospital and Community Health facilities. Special interest outpatients clinics include:</p><ul><li>orthopaedic</li><li>diabetes</li><li>epilepsy</li><li>older persons.</li></ul>\n\n<p>Metro North Health are currently recruiting a GPwSI in Chronic Kidney Disease to work at Queensland Health facilities in the catchment areas of Caboolture, North Lakes, Redcliffe and The Prince Charles Hospital. </p>\n<p>For more information on the opportunity visit the <a href=\"https://smartjobs.qld.gov.au/jobs/QLD-RBH371167\">Queensland Government’s Smart Jobs page</a> or to get in contact with the project team email <a href=\"mailto:MNHHSGPwSIProject@health.qld.gov.au\">MNHHSGPwSIProject@health.qld.gov.au</a>. </p>',NULL,NULL,NULL),(4889,162175,1,'2021-05-18 01:08:36','2021-05-18 01:08:36','263e7e1c-df0c-4227-b65b-04c0b4ac3335','<p><strong>Dr Debra Carroll works as a General Practitioner with Special Interest (GPwSI) in Gestational Diabetes (GDM), and shared her thoughts on what attracted her to the role and how it complements her work as a general practitioner. </strong></p>\n<p>The GPwSI model of care aims to improve patient access to the most appropriate specialist care in a timely and cost-effective manner, within the outpatient setting. It represents a unique opportunity for GPs to upskill within an area of interest and strengthens the links between primary care practitioners and hospital-based specialist services.</p>\n<p>Within the work she does as a GPwSI, Dr Carroll enjoys the variety that the role brings to her week, and the opportunity to focus on a specific clinical problem within the GDM clinic while working within a multidisciplinary team.</p>\n<p>Dr Carroll said she enjoys being able to bring a broad knowledge of the health system—particularly primary care—to her role as a GPwSI. <br /></p>\n\n<p>“I have the ability to explain to hospital-based healthcare providers how primary care works and how the two systems can work together to improve patient care and outcomes,” she said.</p>\n<p>“I also get the opportunity to advocate for GPs where appropriate and hopefully to provide a positive GP role model to hospital staff and patients.”</p>\n<p>Within her work as a GP, Dr Carroll appreciates the independence, the ability to be flexible and realistic with guidelines and the opportunity to know her patients well in terms of their physical, social and psychological challenges. </p>\n<p>“As a GP I get to advocate for the public system in my practice and assist colleagues and patients in the appropriate pathways to access care within the public system,” Dr Carroll said.</p>\n<p>“It helps to have an improved understanding of the complexities of providing healthcare in the public hospital environment. It is helpful to be able to interpret that for patients and colleagues and improve their confidence in what the public system can provide.”</p>\n<p>To any GPs considering a GPwSI role, Dr Carroll would recommend it to those who want to try something different and work in a team of clinicians with a multi-disciplinary approach.</p>\n<p>“The hospital staff are very welcoming and supportive and very willing to educate and share their knowledge and skills,” Dr Carroll said. </p>\n<p>The project, currently funded in partnership with the Queensland Health Clinical Excellence Division, recruited their first GPwSI in April 2018, since then has had up to 17 GPs with Special Interests working across a diverse selection of 15 specialty departments.</p>\n<p>The GP with Special Interest outpatient clinics are based out of Metro North Hospital and Community Health facilities. Special interest outpatients clinics include:</p><ul><li>orthopaedic</li><li>diabetes</li><li>epilepsy</li><li>older persons.</li></ul>\n\n<p>Metro North Health are currently recruiting a GPwSI in Chronic Kidney Disease to work at Queensland Health facilities in the catchment areas of Caboolture, North Lakes, Redcliffe and The Prince Charles Hospital. </p>\n<p><strong>For more information on the opportunity visit the <a href=\"https://smartjobs.qld.gov.au/jobs/QLD-RBH371167\">Queensland Government’s Smart Jobs page</a> or to get in contact with the project team email <a href=\"mailto:MNHHSGPwSIProject@health.qld.gov.au\">MNHHSGPwSIProject@health.qld.gov.au</a>. </strong></p>',NULL,NULL,NULL),(4891,162178,1,'2021-05-18 01:08:56','2021-05-18 23:43:54','7ca90b03-4559-410b-9fdb-05c46ab92933','<p><strong>Dr Debra Carroll works as a General Practitioner with Special Interest (GPwSI) in Gestational Diabetes (GDM), and shared her thoughts on what attracted her to the role and how it complements her work as a general practitioner. </strong><br /></p>\n\n<p>Within the work she does as a GPwSI, Dr Carroll enjoys the variety that the role brings to her week, and the opportunity to focus on a specific clinical problem within the GDM clinic while working within a multidisciplinary team.</p>\n<p>Dr Carroll said she enjoys being able to bring a broad knowledge of the health system—particularly primary care—to her role as a GPwSI. <br /></p>\n<p>“I have the ability to explain to hospital-based healthcare providers how primary care works and how the two systems can work together to improve patient care and outcomes,” she said.</p>\n<p>“I also get the opportunity to advocate for GPs where appropriate and hopefully to provide a positive GP role model to hospital staff and patients.”</p>\n<p>The GPwSI model of care aims to improve patient access to the most appropriate specialist care in a timely and cost-effective manner, within the outpatient setting. It represents a unique opportunity for GPs to upskill within an area of interest and strengthens the links between primary care practitioners and hospital-based specialist services.</p>\n<p>Within her work as a GP, Dr Carroll appreciates the independence, the ability to be flexible and realistic with guidelines and the opportunity to know her patients well in terms of their physical, social and psychological challenges. </p>\n<p>“As a GP I get to advocate for the public system in my practice and assist colleagues and patients in the appropriate pathways to access care within the public system,” Dr Carroll said.</p>\n<p>“It helps to have an improved understanding of the complexities of providing healthcare in the public hospital environment. It is helpful to be able to interpret that for patients and colleagues and improve their confidence in what the public system can provide.”</p>\n<p>To any GPs considering a GPwSI role, Dr Carroll would recommend it to those who want to try something different and work in a team of clinicians with a multi-disciplinary approach.</p>\n<p>“The hospital staff are very welcoming and supportive and very willing to educate and share their knowledge and skills,” Dr Carroll said. </p>\n<p>The project, currently funded in partnership with the Queensland Health Clinical Excellence Division, recruited their first GPwSI in April 2018, since then has had up to 17 GPs with Special Interests working across a diverse selection of 15 specialty departments.</p>\n<p>The GP with Special Interest outpatient clinics are based out of Metro North Hospital and Community Health facilities. Special interest outpatients clinics include:</p>\n<ul><li>orthopaedic</li><li>diabetes</li><li>epilepsy</li><li>older persons.</li></ul>\n<p>Metro North Health are currently recruiting a GPwSI in Chronic Kidney Disease to work at Queensland Health facilities in the catchment areas of Caboolture, North Lakes, Redcliffe and The Prince Charles Hospital. </p>\n<p>For more information on the opportunity visit the <a href=\"https://smartjobs.qld.gov.au/jobs/QLD-RBH371167\">Queensland Government’s Smart Jobs page</a> or to get in contact with the project team email <a href=\"mailto:MNHHSGPwSIProject@health.qld.gov.au\">MNHHSGPwSIProject@health.qld.gov.au</a>. </p>',NULL,NULL,NULL),(4892,162180,1,'2021-05-18 01:08:56','2021-05-18 01:08:56','2a8cc7e9-23bc-4c07-b34e-17c242f2f86a','<p><strong>Dr Debra Carroll works as a General Practitioner with Special Interest (GPwSI) in Gestational Diabetes (GDM), and shared her thoughts on what attracted her to the role and how it complements her work as a general practitioner. </strong></p>\n<p>The GPwSI model of care aims to improve patient access to the most appropriate specialist care in a timely and cost-effective manner, within the outpatient setting. It represents a unique opportunity for GPs to upskill within an area of interest and strengthens the links between primary care practitioners and hospital-based specialist services.</p>\n<p>Within the work she does as a GPwSI, Dr Carroll enjoys the variety that the role brings to her week, and the opportunity to focus on a specific clinical problem within the GDM clinic while working within a multidisciplinary team.</p>\n<p>Dr Carroll said she enjoys being able to bring a broad knowledge of the health system—particularly primary care—to her role as a GPwSI. <br /></p>\n\n<p>“I have the ability to explain to hospital-based healthcare providers how primary care works and how the two systems can work together to improve patient care and outcomes,” she said.</p>\n<p>“I also get the opportunity to advocate for GPs where appropriate and hopefully to provide a positive GP role model to hospital staff and patients.”</p>\n<p>Within her work as a GP, Dr Carroll appreciates the independence, the ability to be flexible and realistic with guidelines and the opportunity to know her patients well in terms of their physical, social and psychological challenges. </p>\n<p>“As a GP I get to advocate for the public system in my practice and assist colleagues and patients in the appropriate pathways to access care within the public system,” Dr Carroll said.</p>\n<p>“It helps to have an improved understanding of the complexities of providing healthcare in the public hospital environment. It is helpful to be able to interpret that for patients and colleagues and improve their confidence in what the public system can provide.”</p>\n<p>To any GPs considering a GPwSI role, Dr Carroll would recommend it to those who want to try something different and work in a team of clinicians with a multi-disciplinary approach.</p>\n<p>“The hospital staff are very welcoming and supportive and very willing to educate and share their knowledge and skills,” Dr Carroll said. </p>\n<p>The project, currently funded in partnership with the Queensland Health Clinical Excellence Division, recruited their first GPwSI in April 2018, since then has had up to 17 GPs with Special Interests working across a diverse selection of 15 specialty departments.</p>\n<p>The GP with Special Interest outpatient clinics are based out of Metro North Hospital and Community Health facilities. Special interest outpatients clinics include:</p><ul><li>orthopaedic</li><li>diabetes</li><li>epilepsy</li><li>older persons.</li></ul>\n\n<p>Metro North Health are currently recruiting a GPwSI in Chronic Kidney Disease to work at Queensland Health facilities in the catchment areas of Caboolture, North Lakes, Redcliffe and The Prince Charles Hospital. </p>\n<p>For more information on the opportunity visit the <a href=\"https://smartjobs.qld.gov.au/jobs/QLD-RBH371167\">Queensland Government’s Smart Jobs page</a> or to get in contact with the project team email <a href=\"mailto:MNHHSGPwSIProject@health.qld.gov.au\">MNHHSGPwSIProject@health.qld.gov.au</a>. </p>',NULL,NULL,NULL),(4893,162182,1,'2021-05-18 01:08:58','2021-05-18 01:08:58','5c5af3ec-a0ca-472a-8273-bb1d40e15459','<p><strong>Dr Debra Carroll works as a General Practitioner with Special Interest (GPwSI) in Gestational Diabetes (GDM), and shared her thoughts on what attracted her to the role and how it complements her work as a general practitioner. </strong></p>\n<p>The GPwSI model of care aims to improve patient access to the most appropriate specialist care in a timely and cost-effective manner, within the outpatient setting. It represents a unique opportunity for GPs to upskill within an area of interest and strengthens the links between primary care practitioners and hospital-based specialist services.</p>\n<p>Within the work she does as a GPwSI, Dr Carroll enjoys the variety that the role brings to her week, and the opportunity to focus on a specific clinical problem within the GDM clinic while working within a multidisciplinary team.</p>\n<p>Dr Carroll said she enjoys being able to bring a broad knowledge of the health system—particularly primary care—to her role as a GPwSI. <br /></p>\n\n<p>“I have the ability to explain to hospital-based healthcare providers how primary care works and how the two systems can work together to improve patient care and outcomes,” she said.</p>\n<p>“I also get the opportunity to advocate for GPs where appropriate and hopefully to provide a positive GP role model to hospital staff and patients.”</p>\n<p>Within her work as a GP, Dr Carroll appreciates the independence, the ability to be flexible and realistic with guidelines and the opportunity to know her patients well in terms of their physical, social and psychological challenges. </p>\n<p>“As a GP I get to advocate for the public system in my practice and assist colleagues and patients in the appropriate pathways to access care within the public system,” Dr Carroll said.</p>\n<p>“It helps to have an improved understanding of the complexities of providing healthcare in the public hospital environment. It is helpful to be able to interpret that for patients and colleagues and improve their confidence in what the public system can provide.”</p>\n<p>To any GPs considering a GPwSI role, Dr Carroll would recommend it to those who want to try something different and work in a team of clinicians with a multi-disciplinary approach.</p>\n<p>“The hospital staff are very welcoming and supportive and very willing to educate and share their knowledge and skills,” Dr Carroll said. </p>\n<p>The project, currently funded in partnership with the Queensland Health Clinical Excellence Division, recruited their first GPwSI in April 2018, since then has had up to 17 GPs with Special Interests working across a diverse selection of 15 specialty departments.</p>\n<p>The GP with Special Interest outpatient clinics are based out of Metro North Hospital and Community Health facilities. Special interest outpatients clinics include:</p><ul><li>orthopaedic</li><li>diabetes</li><li>epilepsy</li><li>older persons.</li></ul>\n\n<p>Metro North Health are currently recruiting a GPwSI in Chronic Kidney Disease to work at Queensland Health facilities in the catchment areas of Caboolture, North Lakes, Redcliffe and The Prince Charles Hospital. </p>\n<p>For more information on the opportunity visit the <a href=\"https://smartjobs.qld.gov.au/jobs/QLD-RBH371167\">Queensland Government’s Smart Jobs page</a> or to get in contact with the project team email <a href=\"mailto:MNHHSGPwSIProject@health.qld.gov.au\">MNHHSGPwSIProject@health.qld.gov.au</a>. </p>',NULL,NULL,NULL),(4894,162184,1,'2021-05-18 01:09:29','2021-05-18 01:09:29','98fd2222-df52-474f-9d5e-fa1aee9a6d6f',NULL,NULL,NULL,NULL),(4895,162185,1,'2021-05-18 01:09:31','2021-05-18 01:09:31','c834f8c1-4a75-4889-8617-16893f44a370','<p><strong>Vaccination against influenza (flu) remains important this year. Flu is a highly contagious viral infection that can cause widespread illness and deaths every year. Vaccination is our best defence against flu viruses.</strong></p>\n<p>Behaviours such as increased hand washing and social distancing helped to stop the spread of flu viruses in the community last year. Relaxing social distancing restrictions this year may allow flu viruses to recirculate, even if they were hardly seen in 2020.</p>\n<p><strong>Read more</strong></p>\n<p>Under the National Immunisation Program, free flu vaccines are provided to the following groups who are at higher risk of complications from flu:</p>\n<ul><li>children aged 6 months to less than 5 years</li><li>all Aboriginal and Torres Strait Islander people aged 6 months and over</li><li>people aged 6 months and over with certain medical conditions that increase their chance of severe influenza and its complications</li><li>pregnant women (at any stage during pregnancy)</li><li>people aged 65 years and over.</li></ul>\n<p>Free flu vaccines under the National Immunisation Program are available from April 2021. Vaccinating in autumn provides protection before the peak influenza season.</p>\n<p>Free flu vaccines are available from GPs, community health clinics, Aboriginal Medical Services and other immunisation providers in your state or territory. To locate a service in your area you can search the <a href=\"https://about.healthdirect.gov.au/nhsd\">National Health Services Directory</a>.</p>\n<p>Check with your immunisation provider to find out when they will have the vaccine available and when you can book in to get the vaccine.</p>\n<p>If you are not eligible for a free flu vaccine, you can purchase the vaccine from your GP, a pharmacy, or another immunisation provider.</p>\n<p>Vaccination experts recommend waiting 14 days between getting a flu vaccine and a COVID-19 vaccine. Given this, it will be important to plan both vaccinations.</p>\n<p>It doesn’t matter in what order you get the vaccines, however:</p>\n<ul><li>if you are in earlier phases for COVID-19 vaccination, you should get the COVID-19 vaccine as soon you can. You can then plan your flu vaccination.</li><li>if you are in later phases for COVID-19 vaccination, you should get the flu vaccine as soon as you can. This will ensure you are ready to get your COVID‑19 vaccine when it is available to you.</li></ul>\n<p>You can check what phase you are in using the <a href=\"https://covid-vaccine.healthdirect.gov.au/eligibility\">COVID-19 Vaccine Eligibility Checker</a>.</p>\n<p>When you book in for your flu vaccination, remember to tell your vaccination provider or clinic if you have received the COVID-19 vaccine (and when you received it). This will help them to plan your appointment.</p>',NULL,NULL,NULL),(4897,162188,1,'2021-05-18 01:10:03','2021-05-18 01:10:03','f326d0d4-56bd-411d-aaad-9d75f5e2572e','<p><strong>Vaccination against influenza (flu) remains important this year. Flu is a highly contagious viral infection that can cause widespread illness and deaths every year. Vaccination is our best defence against flu viruses.</strong></p>\n<p>Behaviours such as increased hand washing and social distancing helped to stop the spread of flu viruses in the community last year. Relaxing social distancing restrictions this year may allow flu viruses to recirculate, even if they were hardly seen in 2020.<br /></p>\n\n<p>Under the National Immunisation Program, free flu vaccines are provided to the following groups who are at higher risk of complications from flu:</p>\n<ul><li>children aged 6 months to less than 5 years</li><li>all Aboriginal and Torres Strait Islander people aged 6 months and over</li><li>people aged 6 months and over with certain medical conditions that increase their chance of severe influenza and its complications</li><li>pregnant women (at any stage during pregnancy)</li><li>people aged 65 years and over.</li></ul>\n<p>Free flu vaccines under the National Immunisation Program are available from April 2021. Vaccinating in autumn provides protection before the peak influenza season.</p>\n<p>Free flu vaccines are available from GPs, community health clinics, Aboriginal Medical Services and other immunisation providers in your state or territory. To locate a service in your area you can search the <a href=\"https://about.healthdirect.gov.au/nhsd\">National Health Services Directory</a>.</p>\n<p>Check with your immunisation provider to find out when they will have the vaccine available and when you can book in to get the vaccine.</p>\n<p>If you are not eligible for a free flu vaccine, you can purchase the vaccine from your GP, a pharmacy, or another immunisation provider.</p>\n<p>Vaccination experts recommend waiting 14 days between getting a flu vaccine and a COVID-19 vaccine. Given this, it will be important to plan both vaccinations.</p>\n<p>It doesn’t matter in what order you get the vaccines, however:</p>\n<ul><li>if you are in earlier phases for COVID-19 vaccination, you should get the COVID-19 vaccine as soon you can. You can then plan your flu vaccination.</li><li>if you are in later phases for COVID-19 vaccination, you should get the flu vaccine as soon as you can. This will ensure you are ready to get your COVID‑19 vaccine when it is available to you.</li></ul>\n<p>You can check what phase you are in using the <a href=\"https://covid-vaccine.healthdirect.gov.au/eligibility\">COVID-19 Vaccine Eligibility Checker</a>.</p>\n<p>When you book in for your flu vaccination, remember to tell your vaccination provider or clinic if you have received the COVID-19 vaccine (and when you received it). This will help them to plan your appointment.</p>',NULL,NULL,NULL),(4898,162190,1,'2021-05-18 01:10:03','2021-05-18 01:10:03','98db0650-99d2-4167-bfe7-44ff1369892f','<p><strong>Vaccination against influenza (flu) remains important this year. Flu is a highly contagious viral infection that can cause widespread illness and deaths every year. Vaccination is our best defence against flu viruses.</strong></p>\n<p>Behaviours such as increased hand washing and social distancing helped to stop the spread of flu viruses in the community last year. Relaxing social distancing restrictions this year may allow flu viruses to recirculate, even if they were hardly seen in 2020.<br /></p>\n\n<p>Under the National Immunisation Program, free flu vaccines are provided to the following groups who are at higher risk of complications from flu:</p>\n<ul><li>children aged 6 months to less than 5 years</li><li>all Aboriginal and Torres Strait Islander people aged 6 months and over</li><li>people aged 6 months and over with certain medical conditions that increase their chance of severe influenza and its complications</li><li>pregnant women (at any stage during pregnancy)</li><li>people aged 65 years and over.</li></ul>\n<p>Free flu vaccines under the National Immunisation Program are available from April 2021. Vaccinating in autumn provides protection before the peak influenza season.</p>\n<p>Free flu vaccines are available from GPs, community health clinics, Aboriginal Medical Services and other immunisation providers in your state or territory. To locate a service in your area you can search the <a href=\"https://about.healthdirect.gov.au/nhsd\">National Health Services Directory</a>.</p>\n<p>Check with your immunisation provider to find out when they will have the vaccine available and when you can book in to get the vaccine.</p>\n<p>If you are not eligible for a free flu vaccine, you can purchase the vaccine from your GP, a pharmacy, or another immunisation provider.</p>\n<p>Vaccination experts recommend waiting 14 days between getting a flu vaccine and a COVID-19 vaccine. Given this, it will be important to plan both vaccinations.</p>\n<p>It doesn’t matter in what order you get the vaccines, however:</p>\n<ul><li>if you are in earlier phases for COVID-19 vaccination, you should get the COVID-19 vaccine as soon you can. You can then plan your flu vaccination.</li><li>if you are in later phases for COVID-19 vaccination, you should get the flu vaccine as soon as you can. This will ensure you are ready to get your COVID‑19 vaccine when it is available to you.</li></ul>\n<p>You can check what phase you are in using the <a href=\"https://covid-vaccine.healthdirect.gov.au/eligibility\">COVID-19 Vaccine Eligibility Checker</a>.</p>\n<p>When you book in for your flu vaccination, remember to tell your vaccination provider or clinic if you have received the COVID-19 vaccine (and when you received it). This will help them to plan your appointment.</p>',NULL,NULL,NULL),(4899,162192,1,'2021-05-18 01:10:08','2021-05-18 01:10:08','23380461-acb2-4b19-9236-b47dbf03f705','<p><strong>Vaccination against influenza (flu) remains important this year. Flu is a highly contagious viral infection that can cause widespread illness and deaths every year. Vaccination is our best defence against flu viruses.</strong></p>\n<p>Behaviours such as increased hand washing and social distancing helped to stop the spread of flu viruses in the community last year. Relaxing social distancing restrictions this year may allow flu viruses to recirculate, even if they were hardly seen in 2020.<br /></p>\n\n<p>Under the National Immunisation Program, free flu vaccines are provided to the following groups who are at higher risk of complications from flu:</p>\n<ul><li>children aged 6 months to less than 5 years</li><li>all Aboriginal and Torres Strait Islander people aged 6 months and over</li><li>people aged 6 months and over with certain medical conditions that increase their chance of severe influenza and its complications</li><li>pregnant women (at any stage during pregnancy)</li><li>people aged 65 years and over.</li></ul>\n<p>Free flu vaccines under the National Immunisation Program are available from April 2021. Vaccinating in autumn provides protection before the peak influenza season.</p>\n<p>Free flu vaccines are available from GPs, community health clinics, Aboriginal Medical Services and other immunisation providers in your state or territory. To locate a service in your area you can search the <a href=\"https://about.healthdirect.gov.au/nhsd\">National Health Services Directory</a>.</p>\n<p>Check with your immunisation provider to find out when they will have the vaccine available and when you can book in to get the vaccine.</p>\n<p>If you are not eligible for a free flu vaccine, you can purchase the vaccine from your GP, a pharmacy, or another immunisation provider.</p>\n<p>Vaccination experts recommend waiting 14 days between getting a flu vaccine and a COVID-19 vaccine. Given this, it will be important to plan both vaccinations.</p>\n<p>It doesn’t matter in what order you get the vaccines, however:</p>\n<ul><li>if you are in earlier phases for COVID-19 vaccination, you should get the COVID-19 vaccine as soon you can. You can then plan your flu vaccination.</li><li>if you are in later phases for COVID-19 vaccination, you should get the flu vaccine as soon as you can. This will ensure you are ready to get your COVID‑19 vaccine when it is available to you.</li></ul>\n<p>You can check what phase you are in using the <a href=\"https://covid-vaccine.healthdirect.gov.au/eligibility\">COVID-19 Vaccine Eligibility Checker</a>.</p>\n<p>When you book in for your flu vaccination, remember to tell your vaccination provider or clinic if you have received the COVID-19 vaccine (and when you received it). This will help them to plan your appointment.</p>',NULL,NULL,NULL),(4900,162194,1,'2021-05-18 01:13:31','2021-05-18 01:13:31','dbaea715-7e31-4b79-80ad-41c36d58e891',NULL,NULL,NULL,NULL),(4901,162195,1,'2021-05-18 01:13:33','2021-05-18 01:13:33','133c2d58-6b04-43df-9bd7-c454d7edb295','<p>Across Metro North Health, gonorrhoea notifications increased 55 per cent between 2016 to 2019, when it reached a peak of 1635, dropping slightly to 1576 notifications during 2020 and the height of the COVID lockdown. </p>\n<p>Similarly, for syphilis, Metro North recorded an 85 per cent increase between 2016 and 2020, when 323 syphilis notifications were recorded last year, increasingly among young heterosexual men and women. </p>\n<p>Against this backdrop of rising infection, it is timely and important that GPs are reminded of contact tracing as a cornerstone in the control of sexually transmitted infections (STI) and an essential part of patient management. Given the demonstrated success of early, intense contact tracing for the control of COVID-19, GPs should be aware of those same principles applied to STI control: regular testing, regular re-testing and contact tracing. It is important for GPs to have contact tracing permanently on their checklist whenever discussing, testing and managing STIs.</p>\n<p><strong>Read more</strong></p>\n<p>Contract tracing is the process of:</p>\n<ul><li>identifying persons who may have contracted a notifiable condition</li><li>informing persons who are unaware that they may have contracted a notifiable condition so that they may seek testing and treatment before complications arise</li><li>providing information to persons who may have contracted a notifiable condition to prevent or minimise transmission of that condition.</li></ul>\n<p>There is often a misunderstanding that contact tracing for STI is automatically undertaken by the Department (as done for COVID-19 or HIV). Whilst Contact Tracing Support Officers (CTSO) are available to advise and assist GPs, GPs will need to support patients diagnosed with an STI to do contact tracing by:</p>\n<ul>\n <li>Providing the patient with education about the STI, including asymptomatic transmission, risk of complications if left untreated and risk to the patient of re-infection if their partners are not treated as well.</li>\n <li>Discussing that all sexual contacts need to be considered within the appropriate look-back period for the STI and not just the most recent contact. Information on how far back to trace for different STIs is offered by the <a href=\"https://protect-au.mimecast.com/s/GPMeCD1vQxiQ489IWC-JB?domain=contacttracing.ashm.org.au\">Australasian Contact Tracing Guidelines</a>.</li>\n <li>Providing the patient with information regarding the anonymous contact tracing websites that are available: <a href=\"https://protect-au.mimecast.com/s/2zUFCE8w0yiKEZ7cwv52s?domain=letthemknow.org.au/\">Let Them Know</a> or <a href=\"https://protect-au.mimecast.com/s/UvhQCGv0MAUovz7TpMyQu?domain=thedramadownunder.info\">The Drama Down Under</a> (for men who have sex with men) provide a service to advise sexual partners that they might also be at risk by sending an email or SMS either personally or anonymously. </li>\n <li>Discussing with the patient any barriers there may to contact trace and provide support in response.</li>\n</ul>\n<p>GPs can access support, information and advice from the local CTSO at the Metro North Public Health Unit on 07 3624 1111, the Queensland Syphilis Surveillance Service on 1800 032 238 or <a href=\"https://protect-au.mimecast.com/s/Dw3nCK1DLGi0VRotp3won?domain=health.qld.gov.au\" title=\"HIV Public Health Team\">the HIV Public Health Team</a> on 07 3328 9797. </p>\n<p>More information:</p>\n<ul>\n <li><a href=\"https://protect-au.mimecast.com/s/UE4aCL7EvGc56zWugdLlj?domain=ctm.ashm.org.au/\">Australasian Contact Tracing Manual</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/rPG8CMwGJXiGNnruGaBrx?domain=disease-control.health.qld.gov.au/\">Communicable Disease Control Guidance and Information: A-Z</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/C5YVCNLJYGf14gWsVzfBa?domain=sti.guidelines.org.au/\">Australian STI Management Guidelines for Use in Primary Care</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/NWfuCOMKPGioWB8TWKb0C?domain=health.qld.gov.au\">Primary Clinical Care Manual 9<sup>th</sup> edition (2016)</a></li>\n <li>AHSM guide to <a href=\"https://protect-au.mimecast.com/s/XoJBCP7LzGcqpLwsW7YEU?domain=hivlegal.ashm.org.au\">Duty of Care to Third Parties and Civil Liability</a></li>\n</ul>',NULL,NULL,NULL),(4902,162196,1,'2021-05-18 01:13:41','2021-05-18 01:13:41','680f43b3-9a04-490a-ac30-1ec7df806682','<p>Across Metro North Health, gonorrhoea notifications increased 55 per cent between 2016 to 2019, when it reached a peak of 1635, dropping slightly to 1576 notifications during 2020 and the height of the COVID lockdown. </p>\n<p>Similarly, for syphilis, Metro North recorded an 85 per cent increase between 2016 and 2020, when 323 syphilis notifications were recorded last year, increasingly among young heterosexual men and women. </p>\n<p>Against this backdrop of rising infection, it is timely and important that GPs are reminded of contact tracing as a cornerstone in the control of sexually transmitted infections (STI) and an essential part of patient management. Given the demonstrated success of early, intense contact tracing for the control of COVID-19, GPs should be aware of those same principles applied to STI control: regular testing, regular re-testing and contact tracing. It is important for GPs to have contact tracing permanently on their checklist whenever discussing, testing and managing STIs.</p>\n<p>Contract tracing is the process of:</p>\n<ul><li>identifying persons who may have contracted a notifiable condition</li><li>informing persons who are unaware that they may have contracted a notifiable condition so that they may seek testing and treatment before complications arise</li><li>providing information to persons who may have contracted a notifiable condition to prevent or minimise transmission of that condition.</li></ul>\n<p>There is often a misunderstanding that contact tracing for STI is automatically undertaken by the Department (as done for COVID-19 or HIV). Whilst Contact Tracing Support Officers (CTSO) are available to advise and assist GPs, GPs will need to support patients diagnosed with an STI to do contact tracing by:</p>\n<ul>\n <li>Providing the patient with education about the STI, including asymptomatic transmission, risk of complications if left untreated and risk to the patient of re-infection if their partners are not treated as well.</li>\n <li>Discussing that all sexual contacts need to be considered within the appropriate look-back period for the STI and not just the most recent contact. Information on how far back to trace for different STIs is offered by the <a href=\"https://protect-au.mimecast.com/s/GPMeCD1vQxiQ489IWC-JB?domain=contacttracing.ashm.org.au\">Australasian Contact Tracing Guidelines</a>.</li>\n <li>Providing the patient with information regarding the anonymous contact tracing websites that are available: <a href=\"https://protect-au.mimecast.com/s/2zUFCE8w0yiKEZ7cwv52s?domain=letthemknow.org.au/\">Let Them Know</a> or <a href=\"https://protect-au.mimecast.com/s/UvhQCGv0MAUovz7TpMyQu?domain=thedramadownunder.info\">The Drama Down Under</a> (for men who have sex with men) provide a service to advise sexual partners that they might also be at risk by sending an email or SMS either personally or anonymously. </li>\n <li>Discussing with the patient any barriers there may to contact trace and provide support in response.</li>\n</ul>\n<p>GPs can access support, information and advice from the local CTSO at the Metro North Public Health Unit on 07 3624 1111, the Queensland Syphilis Surveillance Service on 1800 032 238 or <a href=\"https://protect-au.mimecast.com/s/Dw3nCK1DLGi0VRotp3won?domain=health.qld.gov.au\" title=\"HIV Public Health Team\">the HIV Public Health Team</a> on 07 3328 9797. </p>\n<p>More information:</p>\n<ul>\n <li><a href=\"https://protect-au.mimecast.com/s/UE4aCL7EvGc56zWugdLlj?domain=ctm.ashm.org.au/\">Australasian Contact Tracing Manual</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/rPG8CMwGJXiGNnruGaBrx?domain=disease-control.health.qld.gov.au/\">Communicable Disease Control Guidance and Information: A-Z</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/C5YVCNLJYGf14gWsVzfBa?domain=sti.guidelines.org.au/\">Australian STI Management Guidelines for Use in Primary Care</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/NWfuCOMKPGioWB8TWKb0C?domain=health.qld.gov.au\">Primary Clinical Care Manual 9<sup>th</sup> edition (2016)</a></li>\n <li>AHSM guide to <a href=\"https://protect-au.mimecast.com/s/XoJBCP7LzGcqpLwsW7YEU?domain=hivlegal.ashm.org.au\">Duty of Care to Third Parties and Civil Liability</a></li>\n</ul>',NULL,NULL,NULL),(4903,162197,1,'2021-05-18 01:13:47','2021-05-18 01:13:47','90d883b1-2a62-4f27-8903-c93c4c35799f','<p>Across Metro North Health, gonorrhoea notifications increased 55 per cent between 2016 to 2019, when it reached a peak of 1635, dropping slightly to 1576 notifications during 2020 and the height of the COVID lockdown. </p>\n<p>Similarly, for syphilis, Metro North recorded an 85 per cent increase between 2016 and 2020, when 323 syphilis notifications were recorded last year, increasingly among young heterosexual men and women. </p>\n<p>Against this backdrop of rising infection, it is timely and important that GPs are reminded of contact tracing as a cornerstone in the control of sexually transmitted infections (STI) and an essential part of patient management. Given the demonstrated success of early, intense contact tracing for the control of COVID-19, GPs should be aware of those same principles applied to STI control: regular testing, regular re-testing and contact tracing. It is important for GPs to have contact tracing permanently on their checklist whenever discussing, testing and managing STIs.</p>\n<p>Contract tracing is the process of:</p>\n<ul><li>identifying persons who may have contracted a notifiable condition</li><li>informing persons who are unaware that they may have contracted a notifiable condition so that they may seek testing and treatment before complications arise</li><li>providing information to persons who may have contracted a notifiable condition to prevent or minimise transmission of that condition.</li></ul>\n<p>There is often a misunderstanding that contact tracing for STI is automatically undertaken by the Department (as done for COVID-19 or HIV). Whilst Contact Tracing Support Officers (CTSO) are available to advise and assist GPs, GPs will need to support patients diagnosed with an STI to do contact tracing by:</p>\n<ul>\n <li>Providing the patient with education about the STI, including asymptomatic transmission, risk of complications if left untreated and risk to the patient of re-infection if their partners are not treated as well.</li>\n <li>Discussing that all sexual contacts need to be considered within the appropriate look-back period for the STI and not just the most recent contact. Information on how far back to trace for different STIs is offered by the <a href=\"https://protect-au.mimecast.com/s/GPMeCD1vQxiQ489IWC-JB?domain=contacttracing.ashm.org.au\">Australasian Contact Tracing Guidelines</a>.</li>\n <li>Providing the patient with information regarding the anonymous contact tracing websites that are available: <a href=\"https://protect-au.mimecast.com/s/2zUFCE8w0yiKEZ7cwv52s?domain=letthemknow.org.au/\">Let Them Know</a> or <a href=\"https://protect-au.mimecast.com/s/UvhQCGv0MAUovz7TpMyQu?domain=thedramadownunder.info\">The Drama Down Under</a> (for men who have sex with men) provide a service to advise sexual partners that they might also be at risk by sending an email or SMS either personally or anonymously. </li>\n <li>Discussing with the patient any barriers there may to contact trace and provide support in response.</li>\n</ul>\n<p>GPs can access support, information and advice from the local CTSO at the Metro North Public Health Unit on 07 3624 1111, the Queensland Syphilis Surveillance Service on 1800 032 238 or <a href=\"https://protect-au.mimecast.com/s/Dw3nCK1DLGi0VRotp3won?domain=health.qld.gov.au\" title=\"HIV Public Health Team\">the HIV Public Health Team</a> on 07 3328 9797. </p>\n<p>Mo</p>\n<p>:</p>\n<ul>\n <li></li></ul>\n<p>re information</p><ul><li><a href=\"https://protect-au.mimecast.com/s/UE4aCL7EvGc56zWugdLlj?domain=ctm.ashm.org.au/\">Australasian Contact Tracing Manual</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/rPG8CMwGJXiGNnruGaBrx?domain=disease-control.health.qld.gov.au/\">Communicable Disease Control Guidance and Information: A-Z</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/C5YVCNLJYGf14gWsVzfBa?domain=sti.guidelines.org.au/\">Australian STI Management Guidelines for Use in Primary Care</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/NWfuCOMKPGioWB8TWKb0C?domain=health.qld.gov.au\">Primary Clinical Care Manual 9<sup>th</sup> edition (2016)</a></li>\n <li>AHSM guide to <a href=\"https://protect-au.mimecast.com/s/XoJBCP7LzGcqpLwsW7YEU?domain=hivlegal.ashm.org.au\">Duty of Care to Third Parties and Civil Liability</a></li>\n</ul>',NULL,NULL,NULL),(4904,162198,1,'2021-05-18 01:13:49','2021-05-18 01:13:49','0967a1ca-507e-44b7-8a1a-132ddb2ecfe3','<p>Across Metro North Health, gonorrhoea notifications increased 55 per cent between 2016 to 2019, when it reached a peak of 1635, dropping slightly to 1576 notifications during 2020 and the height of the COVID lockdown. </p>\n<p>Similarly, for syphilis, Metro North recorded an 85 per cent increase between 2016 and 2020, when 323 syphilis notifications were recorded last year, increasingly among young heterosexual men and women. </p>\n<p>Against this backdrop of rising infection, it is timely and important that GPs are reminded of contact tracing as a cornerstone in the control of sexually transmitted infections (STI) and an essential part of patient management. Given the demonstrated success of early, intense contact tracing for the control of COVID-19, GPs should be aware of those same principles applied to STI control: regular testing, regular re-testing and contact tracing. It is important for GPs to have contact tracing permanently on their checklist whenever discussing, testing and managing STIs.</p>\n<p>Contract tracing is the process of:</p>\n<ul><li>identifying persons who may have contracted a notifiable condition</li><li>informing persons who are unaware that they may have contracted a notifiable condition so that they may seek testing and treatment before complications arise</li><li>providing information to persons who may have contracted a notifiable condition to prevent or minimise transmission of that condition.</li></ul>\n<p>There is often a misunderstanding that contact tracing for STI is automatically undertaken by the Department (as done for COVID-19 or HIV). Whilst Contact Tracing Support Officers (CTSO) are available to advise and assist GPs, GPs will need to support patients diagnosed with an STI to do contact tracing by:</p>\n<ul>\n <li>Providing the patient with education about the STI, including asymptomatic transmission, risk of complications if left untreated and risk to the patient of re-infection if their partners are not treated as well.</li>\n <li>Discussing that all sexual contacts need to be considered within the appropriate look-back period for the STI and not just the most recent contact. Information on how far back to trace for different STIs is offered by the <a href=\"https://protect-au.mimecast.com/s/GPMeCD1vQxiQ489IWC-JB?domain=contacttracing.ashm.org.au\">Australasian Contact Tracing Guidelines</a>.</li>\n <li>Providing the patient with information regarding the anonymous contact tracing websites that are available: <a href=\"https://protect-au.mimecast.com/s/2zUFCE8w0yiKEZ7cwv52s?domain=letthemknow.org.au/\">Let Them Know</a> or <a href=\"https://protect-au.mimecast.com/s/UvhQCGv0MAUovz7TpMyQu?domain=thedramadownunder.info\">The Drama Down Under</a> (for men who have sex with men) provide a service to advise sexual partners that they might also be at risk by sending an email or SMS either personally or anonymously. </li>\n <li>Discussing with the patient any barriers there may to contact trace and provide support in response.</li>\n</ul>\n<p>GPs can access support, information and advice from the local CTSO at the Metro North Public Health Unit on 07 3624 1111, the Queensland Syphilis Surveillance Service on 1800 032 238 or <a href=\"https://protect-au.mimecast.com/s/Dw3nCK1DLGi0VRotp3won?domain=health.qld.gov.au\" title=\"HIV Public Health Team\">the HIV Public Health Team</a> on 07 3328 9797. </p>\n<p>Mo</p>\n\n<p>re information</p><ul><li><a href=\"https://protect-au.mimecast.com/s/UE4aCL7EvGc56zWugdLlj?domain=ctm.ashm.org.au/\">Australasian Contact Tracing Manual</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/rPG8CMwGJXiGNnruGaBrx?domain=disease-control.health.qld.gov.au/\">Communicable Disease Control Guidance and Information: A-Z</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/C5YVCNLJYGf14gWsVzfBa?domain=sti.guidelines.org.au/\">Australian STI Management Guidelines for Use in Primary Care</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/NWfuCOMKPGioWB8TWKb0C?domain=health.qld.gov.au\">Primary Clinical Care Manual 9<sup>th</sup> edition (2016)</a></li>\n <li>AHSM guide to <a href=\"https://protect-au.mimecast.com/s/XoJBCP7LzGcqpLwsW7YEU?domain=hivlegal.ashm.org.au\">Duty of Care to Third Parties and Civil Liability</a></li>\n</ul>',NULL,NULL,NULL),(4905,162199,1,'2021-05-18 01:13:52','2021-05-18 01:13:52','0c2e2876-9b77-4401-8b53-52c75fc7ae20','<p>Across Metro North Health, gonorrhoea notifications increased 55 per cent between 2016 to 2019, when it reached a peak of 1635, dropping slightly to 1576 notifications during 2020 and the height of the COVID lockdown. </p>\n<p>Similarly, for syphilis, Metro North recorded an 85 per cent increase between 2016 and 2020, when 323 syphilis notifications were recorded last year, increasingly among young heterosexual men and women. </p>\n<p>Against this backdrop of rising infection, it is timely and important that GPs are reminded of contact tracing as a cornerstone in the control of sexually transmitted infections (STI) and an essential part of patient management. Given the demonstrated success of early, intense contact tracing for the control of COVID-19, GPs should be aware of those same principles applied to STI control: regular testing, regular re-testing and contact tracing. It is important for GPs to have contact tracing permanently on their checklist whenever discussing, testing and managing STIs.</p>\n<p>Contract tracing is the process of:</p>\n<ul><li>identifying persons who may have contracted a notifiable condition</li><li>informing persons who are unaware that they may have contracted a notifiable condition so that they may seek testing and treatment before complications arise</li><li>providing information to persons who may have contracted a notifiable condition to prevent or minimise transmission of that condition.</li></ul>\n<p>There is often a misunderstanding that contact tracing for STI is automatically undertaken by the Department (as done for COVID-19 or HIV). Whilst Contact Tracing Support Officers (CTSO) are available to advise and assist GPs, GPs will need to support patients diagnosed with an STI to do contact tracing by:</p>\n<ul>\n <li>Providing the patient with education about the STI, including asymptomatic transmission, risk of complications if left untreated and risk to the patient of re-infection if their partners are not treated as well.</li>\n <li>Discussing that all sexual contacts need to be considered within the appropriate look-back period for the STI and not just the most recent contact. Information on how far back to trace for different STIs is offered by the <a href=\"https://protect-au.mimecast.com/s/GPMeCD1vQxiQ489IWC-JB?domain=contacttracing.ashm.org.au\">Australasian Contact Tracing Guidelines</a>.</li>\n <li>Providing the patient with information regarding the anonymous contact tracing websites that are available: <a href=\"https://protect-au.mimecast.com/s/2zUFCE8w0yiKEZ7cwv52s?domain=letthemknow.org.au/\">Let Them Know</a> or <a href=\"https://protect-au.mimecast.com/s/UvhQCGv0MAUovz7TpMyQu?domain=thedramadownunder.info\">The Drama Down Under</a> (for men who have sex with men) provide a service to advise sexual partners that they might also be at risk by sending an email or SMS either personally or anonymously. </li>\n <li>Discussing with the patient any barriers there may to contact trace and provide support in response.</li>\n</ul>\n<p>GPs can access support, information and advice from the local CTSO at the Metro North Public Health Unit on 07 3624 1111, the Queensland Syphilis Surveillance Service on 1800 032 238 or <a href=\"https://protect-au.mimecast.com/s/Dw3nCK1DLGi0VRotp3won?domain=health.qld.gov.au\" title=\"HIV Public Health Team\">the HIV Public Health Team</a> on 07 3328 9797. </p>\n<p>More information</p><ul><li><a href=\"https://protect-au.mimecast.com/s/UE4aCL7EvGc56zWugdLlj?domain=ctm.ashm.org.au/\">Australasian Contact Tracing Manual</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/rPG8CMwGJXiGNnruGaBrx?domain=disease-control.health.qld.gov.au/\">Communicable Disease Control Guidance and Information: A-Z</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/C5YVCNLJYGf14gWsVzfBa?domain=sti.guidelines.org.au/\">Australian STI Management Guidelines for Use in Primary Care</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/NWfuCOMKPGioWB8TWKb0C?domain=health.qld.gov.au\">Primary Clinical Care Manual 9<sup>th</sup> edition (2016)</a></li>\n <li>AHSM guide to <a href=\"https://protect-au.mimecast.com/s/XoJBCP7LzGcqpLwsW7YEU?domain=hivlegal.ashm.org.au\">Duty of Care to Third Parties and Civil Liability</a></li>\n</ul>',NULL,NULL,NULL),(4906,162200,1,'2021-05-18 01:13:57','2021-05-18 01:13:57','a077d21b-c27c-49a3-b4c7-ebbb1891eb55','<p>Across Metro North Health, gonorrhoea notifications increased 55 per cent between 2016 to 2019, when it reached a peak of 1635, dropping slightly to 1576 notifications during 2020 and the height of the COVID lockdown. </p>\n<p>Similarly, for syphilis, Metro North recorded an 85 per cent increase between 2016 and 2020, when 323 syphilis notifications were recorded last year, increasingly among young heterosexual men and women. </p>\n<p>Against this backdrop of rising infection, it is timely and important that GPs are reminded of contact tracing as a cornerstone in the control of sexually transmitted infections (STI) and an essential part of patient management. Given the demonstrated success of early, intense contact tracing for the control of COVID-19, GPs should be aware of those same principles applied to STI control: regular testing, regular re-testing and contact tracing. It is important for GPs to have contact tracing permanently on their checklist whenever discussing, testing and managing STIs.</p>\n<p>Contract tracing is the process of:</p>\n<ul><li>identifying persons who may have contracted a notifiable condition</li><li>informing persons who are unaware that they may have contracted a notifiable condition so that they may seek testing and treatment before complications arise</li><li>providing information to persons who may have contracted a notifiable condition to prevent or minimise transmission of that condition.</li></ul>\n<p>There is often a misunderstanding that contact tracing for STI is automatically undertaken by the Department (as done for COVID-19 or HIV). Whilst Contact Tracing Support Officers (CTSO) are available to advise and assist GPs, GPs will need to support patients diagnosed with an STI to do contact tracing by:</p>\n<ul>\n <li>Providing the patient with education about the STI, including asymptomatic transmission, risk of complications if left untreated and risk to the patient of re-infection if their partners are not treated as well.</li>\n <li>Discussing that all sexual contacts need to be considered within the appropriate look-back period for the STI and not just the most recent contact. Information on how far back to trace for different STIs is offered by the <a href=\"https://protect-au.mimecast.com/s/GPMeCD1vQxiQ489IWC-JB?domain=contacttracing.ashm.org.au\">Australasian Contact Tracing Guidelines</a>.</li>\n <li>Providing the patient with information regarding the anonymous contact tracing websites that are available: <a href=\"https://protect-au.mimecast.com/s/2zUFCE8w0yiKEZ7cwv52s?domain=letthemknow.org.au/\">Let Them Know</a> or <a href=\"https://protect-au.mimecast.com/s/UvhQCGv0MAUovz7TpMyQu?domain=thedramadownunder.info\">The Drama Down Under</a> (for men who have sex with men) provide a service to advise sexual partners that they might also be at risk by sending an email or SMS either personally or anonymously. </li>\n <li>Discussing with the patient any barriers there may to contact trace and provide support in response.</li>\n</ul>\n<p>GPs can access support, information and advice from the local CTSO at the Metro North Public Health Unit on 07 3624 1111, the Queensland Syphilis Surveillance Service on 1800 032 238 or <a href=\"https://protect-au.mimecast.com/s/Dw3nCK1DLGi0VRotp3won?domain=health.qld.gov.au\" title=\"HIV Public Health Team\">the HIV Public Health Team</a> on 07 3328 9797. </p>\n<p>More information:</p><ul><li><a href=\"https://protect-au.mimecast.com/s/UE4aCL7EvGc56zWugdLlj?domain=ctm.ashm.org.au/\">Australasian Contact Tracing Manual</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/rPG8CMwGJXiGNnruGaBrx?domain=disease-control.health.qld.gov.au/\">Communicable Disease Control Guidance and Information: A-Z</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/C5YVCNLJYGf14gWsVzfBa?domain=sti.guidelines.org.au/\">Australian STI Management Guidelines for Use in Primary Care</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/NWfuCOMKPGioWB8TWKb0C?domain=health.qld.gov.au\">Primary Clinical Care Manual 9<sup>th</sup> edition (2016)</a></li>\n <li>AHSM guide to <a href=\"https://protect-au.mimecast.com/s/XoJBCP7LzGcqpLwsW7YEU?domain=hivlegal.ashm.org.au\">Duty of Care to Third Parties and Civil Liability</a></li>\n</ul>',NULL,NULL,NULL),(4908,162203,1,'2021-05-18 01:14:13','2021-05-18 01:14:13','068da8b7-8e4c-4f56-bab6-225d19a29a4f','<p>Across Metro North Health, gonorrhoea notifications increased 55 per cent between 2016 to 2019, when it reached a peak of 1635, dropping slightly to 1576 notifications during 2020 and the height of the COVID lockdown. </p>\n<p>Similarly, for syphilis, Metro North recorded an 85 per cent increase between 2016 and 2020, when 323 syphilis notifications were recorded last year, increasingly among young heterosexual men and women. </p>\n<p>Against this backdrop of rising infection, it is timely and important that GPs are reminded of contact tracing as a cornerstone in the control of sexually transmitted infections (STI) and an essential part of patient management. Given the demonstrated success of early, intense contact tracing for the control of COVID-19, GPs should be aware of those same principles applied to STI control: regular testing, regular re-testing and contact tracing. It is important for GPs to have contact tracing permanently on their checklist whenever discussing, testing and managing STIs.</p>\n<p>Contract tracing is the process of:</p>\n<ul><li>identifying persons who may have contracted a notifiable condition</li><li>informing persons who are unaware that they may have contracted a notifiable condition so that they may seek testing and treatment before complications arise</li><li>providing information to persons who may have contracted a notifiable condition to prevent or minimise transmission of that condition.</li></ul>\n<p>There is often a misunderstanding that contact tracing for STI is automatically undertaken by the Department (as done for COVID-19 or HIV). Whilst Contact Tracing Support Officers (CTSO) are available to advise and assist GPs, GPs will need to support patients diagnosed with an STI to do contact tracing by:</p>\n<ul>\n <li>Providing the patient with education about the STI, including asymptomatic transmission, risk of complications if left untreated and risk to the patient of re-infection if their partners are not treated as well.</li>\n <li>Discussing that all sexual contacts need to be considered within the appropriate look-back period for the STI and not just the most recent contact. Information on how far back to trace for different STIs is offered by the <a href=\"https://protect-au.mimecast.com/s/GPMeCD1vQxiQ489IWC-JB?domain=contacttracing.ashm.org.au\">Australasian Contact Tracing Guidelines</a>.</li>\n <li>Providing the patient with information regarding the anonymous contact tracing websites that are available: <a href=\"https://protect-au.mimecast.com/s/2zUFCE8w0yiKEZ7cwv52s?domain=letthemknow.org.au/\">Let Them Know</a> or <a href=\"https://protect-au.mimecast.com/s/UvhQCGv0MAUovz7TpMyQu?domain=thedramadownunder.info\">The Drama Down Under</a> (for men who have sex with men) provide a service to advise sexual partners that they might also be at risk by sending an email or SMS either personally or anonymously. </li>\n <li>Discussing with the patient any barriers there may to contact trace and provide support in response.</li>\n</ul>\n<p>GPs can access support, information and advice from the local CTSO at the Metro North Public Health Unit on 07 3624 1111, the Queensland Syphilis Surveillance Service on 1800 032 238 or <a href=\"https://protect-au.mimecast.com/s/Dw3nCK1DLGi0VRotp3won?domain=health.qld.gov.au\" title=\"HIV Public Health Team\">the HIV Public Health Team</a> on 07 3328 9797. </p>\n<p><strong>More information:</strong></p><ul><li><a href=\"https://protect-au.mimecast.com/s/UE4aCL7EvGc56zWugdLlj?domain=ctm.ashm.org.au/\">Australasian Contact Tracing Manual</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/rPG8CMwGJXiGNnruGaBrx?domain=disease-control.health.qld.gov.au/\">Communicable Disease Control Guidance and Information: A-Z</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/C5YVCNLJYGf14gWsVzfBa?domain=sti.guidelines.org.au/\">Australian STI Management Guidelines for Use in Primary Care</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/NWfuCOMKPGioWB8TWKb0C?domain=health.qld.gov.au\">Primary Clinical Care Manual 9<sup>th</sup> edition (2016)</a></li>\n <li>AHSM guide to <a href=\"https://protect-au.mimecast.com/s/XoJBCP7LzGcqpLwsW7YEU?domain=hivlegal.ashm.org.au\">Duty of Care to Third Parties and Civil Liability</a></li>\n</ul>',NULL,NULL,NULL),(4909,162205,1,'2021-05-18 01:14:13','2021-05-18 01:14:13','b8fb5495-0bb6-44cb-9413-04c0e614e8c5','<p>Across Metro North Health, gonorrhoea notifications increased 55 per cent between 2016 to 2019, when it reached a peak of 1635, dropping slightly to 1576 notifications during 2020 and the height of the COVID lockdown. </p>\n<p>Similarly, for syphilis, Metro North recorded an 85 per cent increase between 2016 and 2020, when 323 syphilis notifications were recorded last year, increasingly among young heterosexual men and women. </p>\n<p>Against this backdrop of rising infection, it is timely and important that GPs are reminded of contact tracing as a cornerstone in the control of sexually transmitted infections (STI) and an essential part of patient management. Given the demonstrated success of early, intense contact tracing for the control of COVID-19, GPs should be aware of those same principles applied to STI control: regular testing, regular re-testing and contact tracing. It is important for GPs to have contact tracing permanently on their checklist whenever discussing, testing and managing STIs.</p>\n<p>Contract tracing is the process of:</p>\n<ul><li>identifying persons who may have contracted a notifiable condition</li><li>informing persons who are unaware that they may have contracted a notifiable condition so that they may seek testing and treatment before complications arise</li><li>providing information to persons who may have contracted a notifiable condition to prevent or minimise transmission of that condition.</li></ul>\n<p>There is often a misunderstanding that contact tracing for STI is automatically undertaken by the Department (as done for COVID-19 or HIV). Whilst Contact Tracing Support Officers (CTSO) are available to advise and assist GPs, GPs will need to support patients diagnosed with an STI to do contact tracing by:</p>\n<ul>\n <li>Providing the patient with education about the STI, including asymptomatic transmission, risk of complications if left untreated and risk to the patient of re-infection if their partners are not treated as well.</li>\n <li>Discussing that all sexual contacts need to be considered within the appropriate look-back period for the STI and not just the most recent contact. Information on how far back to trace for different STIs is offered by the <a href=\"https://protect-au.mimecast.com/s/GPMeCD1vQxiQ489IWC-JB?domain=contacttracing.ashm.org.au\">Australasian Contact Tracing Guidelines</a>.</li>\n <li>Providing the patient with information regarding the anonymous contact tracing websites that are available: <a href=\"https://protect-au.mimecast.com/s/2zUFCE8w0yiKEZ7cwv52s?domain=letthemknow.org.au/\">Let Them Know</a> or <a href=\"https://protect-au.mimecast.com/s/UvhQCGv0MAUovz7TpMyQu?domain=thedramadownunder.info\">The Drama Down Under</a> (for men who have sex with men) provide a service to advise sexual partners that they might also be at risk by sending an email or SMS either personally or anonymously. </li>\n <li>Discussing with the patient any barriers there may to contact trace and provide support in response.</li>\n</ul>\n<p>GPs can access support, information and advice from the local CTSO at the Metro North Public Health Unit on 07 3624 1111, the Queensland Syphilis Surveillance Service on 1800 032 238 or <a href=\"https://protect-au.mimecast.com/s/Dw3nCK1DLGi0VRotp3won?domain=health.qld.gov.au\" title=\"HIV Public Health Team\">the HIV Public Health Team</a> on 07 3328 9797. </p>\n<p><strong>More information:</strong></p><ul><li><a href=\"https://protect-au.mimecast.com/s/UE4aCL7EvGc56zWugdLlj?domain=ctm.ashm.org.au/\">Australasian Contact Tracing Manual</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/rPG8CMwGJXiGNnruGaBrx?domain=disease-control.health.qld.gov.au/\">Communicable Disease Control Guidance and Information: A-Z</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/C5YVCNLJYGf14gWsVzfBa?domain=sti.guidelines.org.au/\">Australian STI Management Guidelines for Use in Primary Care</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/NWfuCOMKPGioWB8TWKb0C?domain=health.qld.gov.au\">Primary Clinical Care Manual 9<sup>th</sup> edition (2016)</a></li>\n <li>AHSM guide to <a href=\"https://protect-au.mimecast.com/s/XoJBCP7LzGcqpLwsW7YEU?domain=hivlegal.ashm.org.au\">Duty of Care to Third Parties and Civil Liability</a></li>\n</ul>',NULL,NULL,NULL),(4910,162207,1,'2021-05-18 01:14:15','2021-05-18 01:14:15','0daf5300-fec5-4781-ab48-8d0ee5bbc80d','<p>Across Metro North Health, gonorrhoea notifications increased 55 per cent between 2016 to 2019, when it reached a peak of 1635, dropping slightly to 1576 notifications during 2020 and the height of the COVID lockdown. </p>\n<p>Similarly, for syphilis, Metro North recorded an 85 per cent increase between 2016 and 2020, when 323 syphilis notifications were recorded last year, increasingly among young heterosexual men and women. </p>\n<p>Against this backdrop of rising infection, it is timely and important that GPs are reminded of contact tracing as a cornerstone in the control of sexually transmitted infections (STI) and an essential part of patient management. Given the demonstrated success of early, intense contact tracing for the control of COVID-19, GPs should be aware of those same principles applied to STI control: regular testing, regular re-testing and contact tracing. It is important for GPs to have contact tracing permanently on their checklist whenever discussing, testing and managing STIs.</p>\n<p>Contract tracing is the process of:</p>\n<ul><li>identifying persons who may have contracted a notifiable condition</li><li>informing persons who are unaware that they may have contracted a notifiable condition so that they may seek testing and treatment before complications arise</li><li>providing information to persons who may have contracted a notifiable condition to prevent or minimise transmission of that condition.</li></ul>\n<p>There is often a misunderstanding that contact tracing for STI is automatically undertaken by the Department (as done for COVID-19 or HIV). Whilst Contact Tracing Support Officers (CTSO) are available to advise and assist GPs, GPs will need to support patients diagnosed with an STI to do contact tracing by:</p>\n<ul>\n <li>Providing the patient with education about the STI, including asymptomatic transmission, risk of complications if left untreated and risk to the patient of re-infection if their partners are not treated as well.</li>\n <li>Discussing that all sexual contacts need to be considered within the appropriate look-back period for the STI and not just the most recent contact. Information on how far back to trace for different STIs is offered by the <a href=\"https://protect-au.mimecast.com/s/GPMeCD1vQxiQ489IWC-JB?domain=contacttracing.ashm.org.au\">Australasian Contact Tracing Guidelines</a>.</li>\n <li>Providing the patient with information regarding the anonymous contact tracing websites that are available: <a href=\"https://protect-au.mimecast.com/s/2zUFCE8w0yiKEZ7cwv52s?domain=letthemknow.org.au/\">Let Them Know</a> or <a href=\"https://protect-au.mimecast.com/s/UvhQCGv0MAUovz7TpMyQu?domain=thedramadownunder.info\">The Drama Down Under</a> (for men who have sex with men) provide a service to advise sexual partners that they might also be at risk by sending an email or SMS either personally or anonymously. </li>\n <li>Discussing with the patient any barriers there may to contact trace and provide support in response.</li>\n</ul>\n<p>GPs can access support, information and advice from the local CTSO at the Metro North Public Health Unit on 07 3624 1111, the Queensland Syphilis Surveillance Service on 1800 032 238 or <a href=\"https://protect-au.mimecast.com/s/Dw3nCK1DLGi0VRotp3won?domain=health.qld.gov.au\" title=\"HIV Public Health Team\">the HIV Public Health Team</a> on 07 3328 9797. </p>\n<p><strong>More information:</strong></p><ul><li><a href=\"https://protect-au.mimecast.com/s/UE4aCL7EvGc56zWugdLlj?domain=ctm.ashm.org.au/\">Australasian Contact Tracing Manual</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/rPG8CMwGJXiGNnruGaBrx?domain=disease-control.health.qld.gov.au/\">Communicable Disease Control Guidance and Information: A-Z</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/C5YVCNLJYGf14gWsVzfBa?domain=sti.guidelines.org.au/\">Australian STI Management Guidelines for Use in Primary Care</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/NWfuCOMKPGioWB8TWKb0C?domain=health.qld.gov.au\">Primary Clinical Care Manual 9<sup>th</sup> edition (2016)</a></li>\n <li>AHSM guide to <a href=\"https://protect-au.mimecast.com/s/XoJBCP7LzGcqpLwsW7YEU?domain=hivlegal.ashm.org.au\">Duty of Care to Third Parties and Civil Liability</a></li>\n</ul>',NULL,NULL,NULL),(4911,162215,1,'2021-05-18 03:08:31','2021-05-18 03:08:31','d7e512e3-6367-4427-9207-8c6958c71ddc','<p><strong>Dr Debra Carroll works as a General Practitioner with Special Interest (GPwSI) in Gestational Diabetes (GDM), and shared her thoughts on what attracted her to the role and how it complements her work as a general practitioner. </strong></p>\n<p>The GPwSI model of care aims to improve patient access to the most appropriate specialist care in a timely and cost-effective manner, within the outpatient setting. It represents a unique opportunity for GPs to upskill within an area of interest and strengthens the links between primary care practitioners and hospital-based specialist services.</p>\n<p>Within the work she does as a GPwSI, Dr Carroll enjoys the variety that the role brings to her week, and the opportunity to focus on a specific clinical problem within the GDM clinic while working within a multidisciplinary team.</p>\n<p>Dr Carroll said she enjoys being able to bring a broad knowledge of the health system—particularly primary care—to her role as a GPwSI. <br /></p>\n\n<p>“I have the ability to explain to hospital-based healthcare providers how primary care works and how the two systems can work together to improve patient care and outcomes,” she said.</p>\n<p>“I also get the opportunity to advocate for GPs where appropriate and hopefully to provide a positive GP role model to hospital staff and patients.”</p>\n<p>Within her work as a GP, Dr Carroll appreciates the independence, the ability to be flexible and realistic with guidelines and the opportunity to know her patients well in terms of their physical, social and psychological challenges. </p>\n<p>“As a GP I get to advocate for the public system in my practice and assist colleagues and patients in the appropriate pathways to access care within the public system,” Dr Carroll said.</p>\n<p>“It helps to have an improved understanding of the complexities of providing healthcare in the public hospital environment. It is helpful to be able to interpret that for patients and colleagues and improve their confidence in what the public system can provide.”</p>\n<p>To any GPs considering a GPwSI role, Dr Carroll would recommend it to those who want to try something different and work in a team of clinicians with a multi-disciplinary approach.</p>\n<p>“The hospital staff are very welcoming and supportive and very willing to educate and share their knowledge and skills,” Dr Carroll said. </p>\n<p>The project, currently funded in partnership with the Queensland Health Clinical Excellence Division, recruited their first GPwSI in April 2018, since then has had up to 17 GPs with Special Interests working across a diverse selection of 15 specialty departments.</p>\n<p>The GP with Special Interest outpatient clinics are based out of Metro North Hospital and Community Health facilities. Special interest outpatients clinics include:</p><ul><li>orthopaedic</li><li>diabetes</li><li>epilepsy</li><li>older persons.</li></ul>\n\n<p>Metro North Health are currently recruiting a GPwSI in Chronic Kidney Disease to work at Queensland Health facilities in the catchment areas of Caboolture, North Lakes, Redcliffe and The Prince Charles Hospital. </p>\n<p>For more information on the opportunity visit the <a href=\"https://smartjobs.qld.gov.au/jobs/QLD-RBH371167\">Queensland Government’s Smart Jobs page</a> or to get in contact with the project team email <a href=\"mailto:MNHHSGPwSIProject@health.qld.gov.au\">MNHHSGPwSIProject@health.qld.gov.au</a>. </p>',NULL,NULL,NULL),(4913,162219,1,'2021-05-18 03:11:08','2021-05-18 23:47:19','b8fd9616-8199-4502-bd52-33e1b215b5d6','<p><strong>Vaccination against influenza (flu) remains important this year. Flu is a highly contagious viral infection that can cause widespread illness and deaths every year. Vaccination is our best defence against flu viruses.</strong></p>\n<p>Behaviours such as increased hand washing and social distancing helped to stop the spread of flu viruses in the community last year. Relaxing social distancing restrictions this year may allow flu viruses to recirculate, even if they were hardly seen in 2020.<br /></p>\n<p>Under the National Immunisation Program, free flu vaccines are provided to the following groups who are at higher risk of complications from flu:</p>\n<ul><li>children aged 6 months to less than 5 years</li><li>all Aboriginal and Torres Strait Islander people aged 6 months and over</li><li>people aged 6 months and over with certain medical conditions that increase their chance of severe influenza and its complications</li><li>pregnant women (at any stage during pregnancy)</li><li>people aged 65 years and over.</li></ul>\n<p>Free flu vaccines under the National Immunisation Program are available from April 2021. Vaccinating in autumn provides protection before the peak influenza season.</p>\n<p>Free flu vaccines are available from GPs, community health clinics, Aboriginal Medical Services and other immunisation providers in your state or territory. To locate a service in your area you can search the <a href=\"https://about.healthdirect.gov.au/nhsd\">National Health Services Directory</a>.</p>\n<p>Check with your immunisation provider to find out when they will have the vaccine available and when you can book in to get the vaccine.</p>\n<p>If you are not eligible for a free flu vaccine, you can purchase the vaccine from your GP, a pharmacy, or another immunisation provider.</p>\n<p>Vaccination experts recommend waiting 14 days between getting a flu vaccine and a COVID-19 vaccine. Given this, it will be important to plan both vaccinations.</p>\n<p>It doesn’t matter in what order you get the vaccines, however:</p>\n<ul><li>if you are in earlier phases for COVID-19 vaccination, you should get the COVID-19 vaccine as soon you can. You can then plan your flu vaccination.</li><li>if you are in later phases for COVID-19 vaccination, you should get the flu vaccine as soon as you can. This will ensure you are ready to get your COVID‑19 vaccine when it is available to you.</li></ul>\n<p>You can check what phase you are in using the <a href=\"https://covid-vaccine.healthdirect.gov.au/eligibility\">COVID-19 Vaccine Eligibility Checker</a>.</p>\n<p>When you book in for your flu vaccination, remember to tell your vaccination provider or clinic if you have received the COVID-19 vaccine (and when you received it). This will help them to plan your appointment.</p>\n<p>For more information on the 2021 influenza vaccination guidelines <a href=\"https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/diseases-infection/immunisation/service-providers/influenza\" target=\"_blank\" rel=\"noreferrer noopener\">visit the Queensland Health website</a>.</p>',NULL,NULL,NULL),(4914,162221,1,'2021-05-18 03:11:08','2021-05-18 03:11:08','f9cbfe31-46cf-45fb-826e-77f3c485216b','<p><strong>Vaccination against influenza (flu) remains important this year. Flu is a highly contagious viral infection that can cause widespread illness and deaths every year. Vaccination is our best defence against flu viruses.</strong></p>\n<p>Behaviours such as increased hand washing and social distancing helped to stop the spread of flu viruses in the community last year. Relaxing social distancing restrictions this year may allow flu viruses to recirculate, even if they were hardly seen in 2020.<br /></p>\n\n<p>Under the National Immunisation Program, free flu vaccines are provided to the following groups who are at higher risk of complications from flu:</p>\n<ul><li>children aged 6 months to less than 5 years</li><li>all Aboriginal and Torres Strait Islander people aged 6 months and over</li><li>people aged 6 months and over with certain medical conditions that increase their chance of severe influenza and its complications</li><li>pregnant women (at any stage during pregnancy)</li><li>people aged 65 years and over.</li></ul>\n<p>Free flu vaccines under the National Immunisation Program are available from April 2021. Vaccinating in autumn provides protection before the peak influenza season.</p>\n<p>Free flu vaccines are available from GPs, community health clinics, Aboriginal Medical Services and other immunisation providers in your state or territory. To locate a service in your area you can search the <a href=\"https://about.healthdirect.gov.au/nhsd\">National Health Services Directory</a>.</p>\n<p>Check with your immunisation provider to find out when they will have the vaccine available and when you can book in to get the vaccine.</p>\n<p>If you are not eligible for a free flu vaccine, you can purchase the vaccine from your GP, a pharmacy, or another immunisation provider.</p>\n<p>Vaccination experts recommend waiting 14 days between getting a flu vaccine and a COVID-19 vaccine. Given this, it will be important to plan both vaccinations.</p>\n<p>It doesn’t matter in what order you get the vaccines, however:</p>\n<ul><li>if you are in earlier phases for COVID-19 vaccination, you should get the COVID-19 vaccine as soon you can. You can then plan your flu vaccination.</li><li>if you are in later phases for COVID-19 vaccination, you should get the flu vaccine as soon as you can. This will ensure you are ready to get your COVID‑19 vaccine when it is available to you.</li></ul>\n<p>You can check what phase you are in using the <a href=\"https://covid-vaccine.healthdirect.gov.au/eligibility\">COVID-19 Vaccine Eligibility Checker</a>.</p>\n<p>When you book in for your flu vaccination, remember to tell your vaccination provider or clinic if you have received the COVID-19 vaccine (and when you received it). This will help them to plan your appointment.</p>',NULL,NULL,NULL),(4915,162223,1,'2021-05-18 03:11:11','2021-05-18 03:11:11','c333f43a-26df-4e2c-9dab-f9d809746036','<p><strong>Vaccination against influenza (flu) remains important this year. Flu is a highly contagious viral infection that can cause widespread illness and deaths every year. Vaccination is our best defence against flu viruses.</strong></p>\n<p>Behaviours such as increased hand washing and social distancing helped to stop the spread of flu viruses in the community last year. Relaxing social distancing restrictions this year may allow flu viruses to recirculate, even if they were hardly seen in 2020.<br /></p>\n\n<p>Under the National Immunisation Program, free flu vaccines are provided to the following groups who are at higher risk of complications from flu:</p>\n<ul><li>children aged 6 months to less than 5 years</li><li>all Aboriginal and Torres Strait Islander people aged 6 months and over</li><li>people aged 6 months and over with certain medical conditions that increase their chance of severe influenza and its complications</li><li>pregnant women (at any stage during pregnancy)</li><li>people aged 65 years and over.</li></ul>\n<p>Free flu vaccines under the National Immunisation Program are available from April 2021. Vaccinating in autumn provides protection before the peak influenza season.</p>\n<p>Free flu vaccines are available from GPs, community health clinics, Aboriginal Medical Services and other immunisation providers in your state or territory. To locate a service in your area you can search the <a href=\"https://about.healthdirect.gov.au/nhsd\">National Health Services Directory</a>.</p>\n<p>Check with your immunisation provider to find out when they will have the vaccine available and when you can book in to get the vaccine.</p>\n<p>If you are not eligible for a free flu vaccine, you can purchase the vaccine from your GP, a pharmacy, or another immunisation provider.</p>\n<p>Vaccination experts recommend waiting 14 days between getting a flu vaccine and a COVID-19 vaccine. Given this, it will be important to plan both vaccinations.</p>\n<p>It doesn’t matter in what order you get the vaccines, however:</p>\n<ul><li>if you are in earlier phases for COVID-19 vaccination, you should get the COVID-19 vaccine as soon you can. You can then plan your flu vaccination.</li><li>if you are in later phases for COVID-19 vaccination, you should get the flu vaccine as soon as you can. This will ensure you are ready to get your COVID‑19 vaccine when it is available to you.</li></ul>\n<p>You can check what phase you are in using the <a href=\"https://covid-vaccine.healthdirect.gov.au/eligibility\">COVID-19 Vaccine Eligibility Checker</a>.</p>\n<p>When you book in for your flu vaccination, remember to tell your vaccination provider or clinic if you have received the COVID-19 vaccine (and when you received it). This will help them to plan your appointment.</p>',NULL,NULL,NULL),(4917,162237,1,'2021-05-18 03:18:17','2021-05-18 23:41:57','1eb6e97b-a2ab-45d1-b770-c2d3e91b5cc5','<p><strong>A new report released by the Black Dog Institute shares insights from two PHN trial sites for implementing suicide prevention strategies for LGBTIQ+ communities.</strong></p>\n<p>The Black Dog Institute has released a new report with key insights for implementing suicide prevention strategies that are effective for LGBTIQ+ communities, titled <em>Suicide prevention for LGBTIQ+ communities: Learnings from the National Suicide Prevention Trial</em>.</p>\n<p>The report was developed as part of Black Dog’s support to the National Suicide Prevention Trial, which was launched in 12 sites across Australia in 2016.</p>\n<p>Funded by the Commonwealth Department of Health and led by 10 Primary Health Networks (PHNs), the National Trial focused on priority populations who have an increased risk of suicide, with two sites – North Western Melbourne and Brisbane North – working directly with LGBTIQ+ populations to implement a community-led, systems approach to suicide prevention.<br /></p>\n<p>Containing reflections from five years of delivering suicide prevention activities in these local regions, the report fills a gap in knowledge available to those implementing suicide prevention activities for LGBTIQ+ communities. Key learnings include embedding lived experience and enabling local decision-making to inform culturally safe design and delivery of services for these populations.</p>\n<p>“We learnt that it is vitally important for suicide prevention coordinators to build strong relationships with local LGBTIQ+ communities and understand intersectionality to improve the communities’ mental health and suicide outcomes,” said Janey McGoldrick, Head of Implementation at the Black Dog Institute.</p>\n<p>Mainstream services often fail to meet the specific needs of LGBTIQ+ communities. With a chronic shortage of culturally safe or affirmative support, services that can be difficult to access for those in remote and regional areas, and a lack of data available – with sexual orientation, gender identity and intersex status routinely omitted from national datasets – LGBTIQ+ communities remain at significantly higher risk of suicide than the general population.</p>\n<p>Both North Western Melbourne and Brisbane North PHNs used the LifeSpan model – a pioneering systems approach to suicide prevention developed by the Black Dog Institute – to guide their strategy and activities.</p>\n<p>“The trial allowed us to coordinate a multifaceted approach to suicide prevention for the LGBTIQ+ Sistergirl and Brotherboy communities,” said Ged Farmer, Suicide Prevention Project Officer, for the Brisbane North PHN.</p>\n<p>With funding for the National Suicide Prevention Trial due to cease from June 2021, the report highlights an urgent need for sustained funding to allow this life-saving work to continue, grow and support more people at risk of suicide in the LGBTIQ+ communities.</p>\n<p>“The trial programs and services are really connecting with the community because they were built with the community,” said North Western Melbourne PHN CEO Adjunct Associate Professor Chris Carter said.</p>\n<p>“It’s a great example of how we need to involve people with lived experience, not just in suicide prevention, but across our health system,” said Associate Professor Carter.</p>\n<p><a href=\"https://www.blackdoginstitute.org.au/wp-content/uploads/2021/04/BDI21_Suicide-prevention-for-LGBTIQ-communities.pdf\"><strong>Download the report</strong></a></p>\n<p><em>With thanks to the Black Dog Institute for their permission to reprint this article. </em></p>\n<p><em><em>Pictured above: PHN staff joined Queensland Council for LGBTI Health (formerly the Queensland AIDS Council) staff, as well as campaign artists and supporters at the Talking Heals launch in February 2020.</em><br /></em></p>',NULL,NULL,NULL),(4918,162239,1,'2021-05-18 03:18:17','2021-05-18 03:18:17','794c0efb-29fe-4037-9c1d-1d5d013a27e3','<p><strong>A new report released by the Black Dog Institute shares insights from two PHN trial sites for implementing suicide prevention strategies for LGBTIQ+ communities.</strong></p>\n<p>The Black Dog Institute has released a new report with key insights for implementing suicide prevention strategies that are effective for LGBTIQ+ communities, titled Suicide prevention for LGBTIQ+ communities: Learnings from the National Suicide Prevention Trial.</p>\n<p>The report was developed as part of Black Dog’s support to the National Suicide Prevention Trial, which was launched in 12 sites across Australia in 2016.</p>\n<p>Funded by the Commonwealth Department of Health and led by 10 Primary Health Networks (PHNs), the National Trial focused on priority populations who have an increased risk of suicide, with two sites – North Western Melbourne and Brisbane North – working directly with LGBTIQ+ populations to implement a community-led, systems approach to suicide prevention.<br /></p>\n\n<p>Containing reflections from five years of delivering suicide prevention activities in these local regions, the report fills a gap in knowledge available to those implementing suicide prevention activities for LGBTIQ+ communities. Key learnings include embedding lived experience and enabling local decision-making to inform culturally safe design and delivery of services for these populations.</p>\n<p>“We learnt that it is vitally important for suicide prevention coordinators to build strong relationships with local LGBTIQ+ communities and understand intersectionality to improve the communities’ mental health and suicide outcomes,” said Janey McGoldrick, Head of Implementation at the Black Dog Institute.</p>\n<p>Mainstream services often fail to meet the specific needs of LGBTIQ+ communities. With a chronic shortage of culturally safe or affirmative support, services that can be difficult to access for those in remote and regional areas, and a lack of data available – with sexual orientation, gender identity and intersex status routinely omitted from national datasets – LGBTIQ+ communities remain at significantly higher risk of suicide than the general population.</p>\n<p>Both North Western Melbourne and Brisbane North PHNs used the LifeSpan model – a pioneering systems approach to suicide prevention developed by the Black Dog Institute – to guide their strategy and activities.</p>\n<p>“The trial allowed us to coordinate a multifaceted approach to suicide prevention for the LGBTIQ+ Sistergirl and Brotherboy communities,” said Ged Farmer, Suicide Prevention Project Officer, for the Brisbane North PHN.</p>\n<p>With funding for the National Suicide Prevention Trial due to cease from June 2021, the report highlights an urgent need for sustained funding to allow this life-saving work to continue, grow and support more people at risk of suicide in the LGBTIQ+ communities.</p>\n<p>“The trial programs and services are really connecting with the community because they were built with the community,” said North Western Melbourne PHN CEO Adjunct Associate Professor Chris Carter said.</p>\n<p>“It’s a great example of how we need to involve people with lived experience, not just in suicide prevention, but across our health system,” said Associate Professor Carter.</p>\n<p><a href=\"https://www.blackdoginstitute.org.au/wp-content/uploads/2021/04/BDI21_Suicide-prevention-for-LGBTIQ-communities.pdf\"><strong>Download the report</strong></a></p>\n<p><em>With thanks to the Black Dog Institute for their permission to reprint this article. </em></p>',NULL,NULL,NULL),(4919,162241,1,'2021-05-18 03:18:19','2021-05-18 03:18:19','9b126340-57be-49e9-bf23-431897e46cca','<p><strong>A new report released by the Black Dog Institute shares insights from two PHN trial sites for implementing suicide prevention strategies for LGBTIQ+ communities.</strong></p>\n<p>The Black Dog Institute has released a new report with key insights for implementing suicide prevention strategies that are effective for LGBTIQ+ communities, titled Suicide prevention for LGBTIQ+ communities: Learnings from the National Suicide Prevention Trial.</p>\n<p>The report was developed as part of Black Dog’s support to the National Suicide Prevention Trial, which was launched in 12 sites across Australia in 2016.</p>\n<p>Funded by the Commonwealth Department of Health and led by 10 Primary Health Networks (PHNs), the National Trial focused on priority populations who have an increased risk of suicide, with two sites – North Western Melbourne and Brisbane North – working directly with LGBTIQ+ populations to implement a community-led, systems approach to suicide prevention.<br /></p>\n\n<p>Containing reflections from five years of delivering suicide prevention activities in these local regions, the report fills a gap in knowledge available to those implementing suicide prevention activities for LGBTIQ+ communities. Key learnings include embedding lived experience and enabling local decision-making to inform culturally safe design and delivery of services for these populations.</p>\n<p>“We learnt that it is vitally important for suicide prevention coordinators to build strong relationships with local LGBTIQ+ communities and understand intersectionality to improve the communities’ mental health and suicide outcomes,” said Janey McGoldrick, Head of Implementation at the Black Dog Institute.</p>\n<p>Mainstream services often fail to meet the specific needs of LGBTIQ+ communities. With a chronic shortage of culturally safe or affirmative support, services that can be difficult to access for those in remote and regional areas, and a lack of data available – with sexual orientation, gender identity and intersex status routinely omitted from national datasets – LGBTIQ+ communities remain at significantly higher risk of suicide than the general population.</p>\n<p>Both North Western Melbourne and Brisbane North PHNs used the LifeSpan model – a pioneering systems approach to suicide prevention developed by the Black Dog Institute – to guide their strategy and activities.</p>\n<p>“The trial allowed us to coordinate a multifaceted approach to suicide prevention for the LGBTIQ+ Sistergirl and Brotherboy communities,” said Ged Farmer, Suicide Prevention Project Officer, for the Brisbane North PHN.</p>\n<p>With funding for the National Suicide Prevention Trial due to cease from June 2021, the report highlights an urgent need for sustained funding to allow this life-saving work to continue, grow and support more people at risk of suicide in the LGBTIQ+ communities.</p>\n<p>“The trial programs and services are really connecting with the community because they were built with the community,” said North Western Melbourne PHN CEO Adjunct Associate Professor Chris Carter said.</p>\n<p>“It’s a great example of how we need to involve people with lived experience, not just in suicide prevention, but across our health system,” said Associate Professor Carter.</p>\n<p><a href=\"https://www.blackdoginstitute.org.au/wp-content/uploads/2021/04/BDI21_Suicide-prevention-for-LGBTIQ-communities.pdf\"><strong>Download the report</strong></a></p>\n<p><em>With thanks to the Black Dog Institute for their permission to reprint this article. </em></p>',NULL,NULL,NULL),(4921,162328,1,'2021-05-18 05:09:11','2021-05-18 05:09:11','20c8754a-a336-406f-aaf3-773b0b94c6e9','<p><strong><strong>By the Metro North Public Health Unit</strong></strong></p>\n<p><strong>Across Metro North Health, gonorrhoea notifications increased 55 per cent between 2016 to 2019, when it reached a peak of 1635, dropping slightly to 1576 notifications during 2020 and the height of the COVID-19 lockdown. </strong></p>\n<p>Similarly, for syphilis, Metro North recorded an 85 per cent increase between 2016 and 2020, when 323 syphilis notifications were recorded last year, increasingly among young heterosexual men and women. </p>\n<p>Against this backdrop of rising infection, it is timely and important that GPs are reminded of contact tracing as a cornerstone in the control of sexually transmitted infections (STI) and an essential part of patient management. Given the demonstrated success of early, intense contact tracing for the control of COVID-19, GPs should be aware of those same principles applied to STI control: regular testing, regular re-testing and contact tracing. It is important for GPs to have contact tracing permanently on their checklist whenever discussing, testing and managing STIs.</p>\n<p>Contract tracing is the process of:</p>\n<ul><li>identifying persons who may have contracted a notifiable condition</li><li>informing persons who are unaware that they may have contracted a notifiable condition so that they may seek testing and treatment before complications arise</li><li>providing information to persons who may have contracted a notifiable condition to prevent or minimise transmission of that condition.</li></ul>\n<p>There is often a misunderstanding that contact tracing for STI is automatically undertaken by the Department (as done for COVID-19 or HIV). Whilst Contact Tracing Support Officers (CTSO) are available to advise and assist GPs, GPs will need to support patients diagnosed with an STI to do contact tracing by:</p>\n<ul>\n <li>Providing the patient with education about the STI, including asymptomatic transmission, risk of complications if left untreated and risk to the patient of re-infection if their partners are not treated as well.</li>\n <li>Discussing that all sexual contacts need to be considered within the appropriate look-back period for the STI and not just the most recent contact. Information on how far back to trace for different STIs is offered by the <a href=\"https://protect-au.mimecast.com/s/GPMeCD1vQxiQ489IWC-JB?domain=contacttracing.ashm.org.au\">Australasian Contact Tracing Guidelines</a>.</li>\n <li>Providing the patient with information regarding the anonymous contact tracing websites that are available: <a href=\"https://protect-au.mimecast.com/s/2zUFCE8w0yiKEZ7cwv52s?domain=letthemknow.org.au/\">Let Them Know</a> or <a href=\"https://protect-au.mimecast.com/s/UvhQCGv0MAUovz7TpMyQu?domain=thedramadownunder.info\">The Drama Down Under</a> (for men who have sex with men) provide a service to advise sexual partners that they might also be at risk by sending an email or SMS either personally or anonymously. </li>\n <li>Discussing with the patient any barriers there may to contact trace and provide support in response.</li>\n</ul>\n<p>GPs can access support, information and advice from the local CTSO at the Metro North Public Health Unit on 07 3624 1111, the Queensland Syphilis Surveillance Service on 1800 032 238 or <a href=\"https://protect-au.mimecast.com/s/Dw3nCK1DLGi0VRotp3won?domain=health.qld.gov.au\" title=\"HIV Public Health Team\">the HIV Public Health Team</a> on 07 3328 9797. </p>\n<p><strong>More information:</strong></p>\n<ul><li><a href=\"https://protect-au.mimecast.com/s/UE4aCL7EvGc56zWugdLlj?domain=ctm.ashm.org.au/\">Australasian Contact Tracing Manual</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/rPG8CMwGJXiGNnruGaBrx?domain=disease-control.health.qld.gov.au/\">Communicable Disease Control Guidance and Information: A-Z</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/C5YVCNLJYGf14gWsVzfBa?domain=sti.guidelines.org.au/\">Australian STI Management Guidelines for Use in Primary Care</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/NWfuCOMKPGioWB8TWKb0C?domain=health.qld.gov.au\">Primary Clinical Care Manual 9<sup>th</sup> edition (2016)</a></li>\n <li>AHSM guide to <a href=\"https://protect-au.mimecast.com/s/XoJBCP7LzGcqpLwsW7YEU?domain=hivlegal.ashm.org.au\">Duty of Care to Third Parties and Civil Liability</a></li>\n</ul>',NULL,NULL,NULL),(4922,162330,1,'2021-05-18 05:09:11','2021-05-18 05:09:11','5037f03c-fa20-48df-b647-611990ed7f79','<p><strong><strong>By the Metro North Public Health Unit</strong></strong></p>\n<p><strong>Across Metro North Health, gonorrhoea notifications increased 55 per cent between 2016 to 2019, when it reached a peak of 1635, dropping slightly to 1576 notifications during 2020 and the height of the COVID-19 lockdown. </strong></p>\n<p>Similarly, for syphilis, Metro North recorded an 85 per cent increase between 2016 and 2020, when 323 syphilis notifications were recorded last year, increasingly among young heterosexual men and women. </p>\n<p>Against this backdrop of rising infection, it is timely and important that GPs are reminded of contact tracing as a cornerstone in the control of sexually transmitted infections (STI) and an essential part of patient management. Given the demonstrated success of early, intense contact tracing for the control of COVID-19, GPs should be aware of those same principles applied to STI control: regular testing, regular re-testing and contact tracing. It is important for GPs to have contact tracing permanently on their checklist whenever discussing, testing and managing STIs.</p>\n<p>Contract tracing is the process of:</p>\n<ul><li>identifying persons who may have contracted a notifiable condition</li><li>informing persons who are unaware that they may have contracted a notifiable condition so that they may seek testing and treatment before complications arise</li><li>providing information to persons who may have contracted a notifiable condition to prevent or minimise transmission of that condition.</li></ul>\n<p>There is often a misunderstanding that contact tracing for STI is automatically undertaken by the Department (as done for COVID-19 or HIV). Whilst Contact Tracing Support Officers (CTSO) are available to advise and assist GPs, GPs will need to support patients diagnosed with an STI to do contact tracing by:</p>\n<ul>\n <li>Providing the patient with education about the STI, including asymptomatic transmission, risk of complications if left untreated and risk to the patient of re-infection if their partners are not treated as well.</li>\n <li>Discussing that all sexual contacts need to be considered within the appropriate look-back period for the STI and not just the most recent contact. Information on how far back to trace for different STIs is offered by the <a href=\"https://protect-au.mimecast.com/s/GPMeCD1vQxiQ489IWC-JB?domain=contacttracing.ashm.org.au\">Australasian Contact Tracing Guidelines</a>.</li>\n <li>Providing the patient with information regarding the anonymous contact tracing websites that are available: <a href=\"https://protect-au.mimecast.com/s/2zUFCE8w0yiKEZ7cwv52s?domain=letthemknow.org.au/\">Let Them Know</a> or <a href=\"https://protect-au.mimecast.com/s/UvhQCGv0MAUovz7TpMyQu?domain=thedramadownunder.info\">The Drama Down Under</a> (for men who have sex with men) provide a service to advise sexual partners that they might also be at risk by sending an email or SMS either personally or anonymously. </li>\n <li>Discussing with the patient any barriers there may to contact trace and provide support in response.</li>\n</ul>\n<p>GPs can access support, information and advice from the local CTSO at the Metro North Public Health Unit on 07 3624 1111, the Queensland Syphilis Surveillance Service on 1800 032 238 or <a href=\"https://protect-au.mimecast.com/s/Dw3nCK1DLGi0VRotp3won?domain=health.qld.gov.au\" title=\"HIV Public Health Team\">the HIV Public Health Team</a> on 07 3328 9797. </p>\n<p><strong>More information:</strong></p>\n<ul><li><a href=\"https://protect-au.mimecast.com/s/UE4aCL7EvGc56zWugdLlj?domain=ctm.ashm.org.au/\">Australasian Contact Tracing Manual</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/rPG8CMwGJXiGNnruGaBrx?domain=disease-control.health.qld.gov.au/\">Communicable Disease Control Guidance and Information: A-Z</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/C5YVCNLJYGf14gWsVzfBa?domain=sti.guidelines.org.au/\">Australian STI Management Guidelines for Use in Primary Care</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/NWfuCOMKPGioWB8TWKb0C?domain=health.qld.gov.au\">Primary Clinical Care Manual 9<sup>th</sup> edition (2016)</a></li>\n <li>AHSM guide to <a href=\"https://protect-au.mimecast.com/s/XoJBCP7LzGcqpLwsW7YEU?domain=hivlegal.ashm.org.au\">Duty of Care to Third Parties and Civil Liability</a></li>\n</ul>',NULL,NULL,NULL),(4924,162333,1,'2021-05-18 05:11:56','2021-05-18 23:52:02','8d24772f-aabc-49f5-9926-04e82d59bada','<p><strong><strong><em>By the Metro North Public Health Unit</em></strong></strong></p>\n<p><strong>Across Metro North Health, gonorrhoea notifications increased 55 per cent between 2016 to 2019, when it reached a peak of 1635, dropping slightly to 1576 notifications during 2020 and the height of the COVID-19 lockdown. </strong></p>\n<p>Similarly, for syphilis, Metro North recorded an 85 per cent increase between 2016 and 2020, when 323 syphilis notifications were recorded last year, increasingly among young heterosexual men and women. </p>\n<p>Against this backdrop of rising infection, it is timely and important that GPs are reminded of contact tracing as a cornerstone in the control of sexually transmitted infections (STI) and an essential part of patient management. Given the demonstrated success of early, intense contact tracing for the control of COVID-19, GPs should be aware of those same principles applied to STI control: regular testing, regular re-testing and contact tracing. It is important for GPs to have contact tracing permanently on their checklist whenever discussing, testing and managing STIs.</p>\n<p>Contract tracing is the process of:</p>\n<ul><li>identifying persons who may have contracted a notifiable condition</li><li>informing persons who are unaware that they may have contracted a notifiable condition so that they may seek testing and treatment before complications arise</li><li>providing information to persons who may have contracted a notifiable condition to prevent or minimise transmission of that condition.</li></ul>\n<p>There is often a misunderstanding that contact tracing for STI is automatically undertaken by the Department (as done for COVID-19 or HIV). Whilst Contact Tracing Support Officers (CTSO) are available to advise and assist GPs, GPs will need to support patients diagnosed with an STI to do contact tracing by:</p>\n<ul>\n <li>Providing the patient with education about the STI, including asymptomatic transmission, risk of complications if left untreated and risk to the patient of re-infection if their partners are not treated as well.</li>\n <li>Discussing that all sexual contacts need to be considered within the appropriate look-back period for the STI and not just the most recent contact. Information on how far back to trace for different STIs is offered by the <a href=\"https://protect-au.mimecast.com/s/GPMeCD1vQxiQ489IWC-JB?domain=contacttracing.ashm.org.au\">Australasian Contact Tracing Guidelines</a>.</li>\n <li>Providing the patient with information regarding the anonymous contact tracing websites that are available: <a href=\"https://protect-au.mimecast.com/s/2zUFCE8w0yiKEZ7cwv52s?domain=letthemknow.org.au/\">Let Them Know</a> or <a href=\"https://protect-au.mimecast.com/s/UvhQCGv0MAUovz7TpMyQu?domain=thedramadownunder.info\">The Drama Down Under</a> (for men who have sex with men) provide a service to advise sexual partners that they might also be at risk by sending an email or SMS either personally or anonymously. </li>\n <li>Discussing with the patient any barriers there may to contact trace and provide support in response.</li>\n</ul>\n<p>GPs can access support, information and advice from the local CTSO at the Metro North Public Health Unit on 07 3624 1111, the Queensland Syphilis Surveillance Service on 1800 032 238 or <a href=\"https://protect-au.mimecast.com/s/Dw3nCK1DLGi0VRotp3won?domain=health.qld.gov.au\" title=\"HIV Public Health Team\">the HIV Public Health Team</a> on 07 3328 9797. </p>\n<p><strong>More information:</strong></p>\n<ul><li><a href=\"https://protect-au.mimecast.com/s/UE4aCL7EvGc56zWugdLlj?domain=ctm.ashm.org.au/\">Australasian Contact Tracing Manual</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/rPG8CMwGJXiGNnruGaBrx?domain=disease-control.health.qld.gov.au/\">Communicable Disease Control Guidance and Information: A-Z</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/C5YVCNLJYGf14gWsVzfBa?domain=sti.guidelines.org.au/\">Australian STI Management Guidelines for Use in Primary Care</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/NWfuCOMKPGioWB8TWKb0C?domain=health.qld.gov.au\">Primary Clinical Care Manual 9<sup>th</sup> edition (2016)</a></li>\n <li>AHSM guide to <a href=\"https://protect-au.mimecast.com/s/XoJBCP7LzGcqpLwsW7YEU?domain=hivlegal.ashm.org.au\">Duty of Care to Third Parties and Civil Liability</a></li>\n</ul>',NULL,NULL,NULL),(4925,162335,1,'2021-05-18 05:11:56','2021-05-18 05:11:56','606a49db-353e-4dce-9c8b-b129512f04c7','<p><strong><strong><em>Contributed by the Metro North Public Health Unit</em></strong></strong></p>\n<p><strong>Across Metro North Health, gonorrhoea notifications increased 55 per cent between 2016 to 2019, when it reached a peak of 1635, dropping slightly to 1576 notifications during 2020 and the height of the COVID-19 lockdown. </strong></p>\n<p>Similarly, for syphilis, Metro North recorded an 85 per cent increase between 2016 and 2020, when 323 syphilis notifications were recorded last year, increasingly among young heterosexual men and women. </p>\n<p>Against this backdrop of rising infection, it is timely and important that GPs are reminded of contact tracing as a cornerstone in the control of sexually transmitted infections (STI) and an essential part of patient management. Given the demonstrated success of early, intense contact tracing for the control of COVID-19, GPs should be aware of those same principles applied to STI control: regular testing, regular re-testing and contact tracing. It is important for GPs to have contact tracing permanently on their checklist whenever discussing, testing and managing STIs.</p>\n<p>Contract tracing is the process of:</p>\n<ul><li>identifying persons who may have contracted a notifiable condition</li><li>informing persons who are unaware that they may have contracted a notifiable condition so that they may seek testing and treatment before complications arise</li><li>providing information to persons who may have contracted a notifiable condition to prevent or minimise transmission of that condition.</li></ul>\n<p>There is often a misunderstanding that contact tracing for STI is automatically undertaken by the Department (as done for COVID-19 or HIV). Whilst Contact Tracing Support Officers (CTSO) are available to advise and assist GPs, GPs will need to support patients diagnosed with an STI to do contact tracing by:</p>\n<ul>\n <li>Providing the patient with education about the STI, including asymptomatic transmission, risk of complications if left untreated and risk to the patient of re-infection if their partners are not treated as well.</li>\n <li>Discussing that all sexual contacts need to be considered within the appropriate look-back period for the STI and not just the most recent contact. Information on how far back to trace for different STIs is offered by the <a href=\"https://protect-au.mimecast.com/s/GPMeCD1vQxiQ489IWC-JB?domain=contacttracing.ashm.org.au\">Australasian Contact Tracing Guidelines</a>.</li>\n <li>Providing the patient with information regarding the anonymous contact tracing websites that are available: <a href=\"https://protect-au.mimecast.com/s/2zUFCE8w0yiKEZ7cwv52s?domain=letthemknow.org.au/\">Let Them Know</a> or <a href=\"https://protect-au.mimecast.com/s/UvhQCGv0MAUovz7TpMyQu?domain=thedramadownunder.info\">The Drama Down Under</a> (for men who have sex with men) provide a service to advise sexual partners that they might also be at risk by sending an email or SMS either personally or anonymously. </li>\n <li>Discussing with the patient any barriers there may to contact trace and provide support in response.</li>\n</ul>\n<p>GPs can access support, information and advice from the local CTSO at the Metro North Public Health Unit on 07 3624 1111, the Queensland Syphilis Surveillance Service on 1800 032 238 or <a href=\"https://protect-au.mimecast.com/s/Dw3nCK1DLGi0VRotp3won?domain=health.qld.gov.au\" title=\"HIV Public Health Team\">the HIV Public Health Team</a> on 07 3328 9797. </p>\n<p><strong>More information:</strong></p>\n<ul><li><a href=\"https://protect-au.mimecast.com/s/UE4aCL7EvGc56zWugdLlj?domain=ctm.ashm.org.au/\">Australasian Contact Tracing Manual</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/rPG8CMwGJXiGNnruGaBrx?domain=disease-control.health.qld.gov.au/\">Communicable Disease Control Guidance and Information: A-Z</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/C5YVCNLJYGf14gWsVzfBa?domain=sti.guidelines.org.au/\">Australian STI Management Guidelines for Use in Primary Care</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/NWfuCOMKPGioWB8TWKb0C?domain=health.qld.gov.au\">Primary Clinical Care Manual 9<sup>th</sup> edition (2016)</a></li>\n <li>AHSM guide to <a href=\"https://protect-au.mimecast.com/s/XoJBCP7LzGcqpLwsW7YEU?domain=hivlegal.ashm.org.au\">Duty of Care to Third Parties and Civil Liability</a></li>\n</ul>',NULL,NULL,NULL),(4926,162337,1,'2021-05-18 05:12:01','2021-05-18 05:12:01','040af8f0-6330-4779-b937-0d010f89518b','<p><strong><strong><em>Contributed by the Metro North Public Health Unit</em></strong></strong></p>\n<p><strong>Across Metro North Health, gonorrhoea notifications increased 55 per cent between 2016 to 2019, when it reached a peak of 1635, dropping slightly to 1576 notifications during 2020 and the height of the COVID-19 lockdown. </strong></p>\n<p>Similarly, for syphilis, Metro North recorded an 85 per cent increase between 2016 and 2020, when 323 syphilis notifications were recorded last year, increasingly among young heterosexual men and women. </p>\n<p>Against this backdrop of rising infection, it is timely and important that GPs are reminded of contact tracing as a cornerstone in the control of sexually transmitted infections (STI) and an essential part of patient management. Given the demonstrated success of early, intense contact tracing for the control of COVID-19, GPs should be aware of those same principles applied to STI control: regular testing, regular re-testing and contact tracing. It is important for GPs to have contact tracing permanently on their checklist whenever discussing, testing and managing STIs.</p>\n<p>Contract tracing is the process of:</p>\n<ul><li>identifying persons who may have contracted a notifiable condition</li><li>informing persons who are unaware that they may have contracted a notifiable condition so that they may seek testing and treatment before complications arise</li><li>providing information to persons who may have contracted a notifiable condition to prevent or minimise transmission of that condition.</li></ul>\n<p>There is often a misunderstanding that contact tracing for STI is automatically undertaken by the Department (as done for COVID-19 or HIV). Whilst Contact Tracing Support Officers (CTSO) are available to advise and assist GPs, GPs will need to support patients diagnosed with an STI to do contact tracing by:</p>\n<ul>\n <li>Providing the patient with education about the STI, including asymptomatic transmission, risk of complications if left untreated and risk to the patient of re-infection if their partners are not treated as well.</li>\n <li>Discussing that all sexual contacts need to be considered within the appropriate look-back period for the STI and not just the most recent contact. Information on how far back to trace for different STIs is offered by the <a href=\"https://protect-au.mimecast.com/s/GPMeCD1vQxiQ489IWC-JB?domain=contacttracing.ashm.org.au\">Australasian Contact Tracing Guidelines</a>.</li>\n <li>Providing the patient with information regarding the anonymous contact tracing websites that are available: <a href=\"https://protect-au.mimecast.com/s/2zUFCE8w0yiKEZ7cwv52s?domain=letthemknow.org.au/\">Let Them Know</a> or <a href=\"https://protect-au.mimecast.com/s/UvhQCGv0MAUovz7TpMyQu?domain=thedramadownunder.info\">The Drama Down Under</a> (for men who have sex with men) provide a service to advise sexual partners that they might also be at risk by sending an email or SMS either personally or anonymously. </li>\n <li>Discussing with the patient any barriers there may to contact trace and provide support in response.</li>\n</ul>\n<p>GPs can access support, information and advice from the local CTSO at the Metro North Public Health Unit on 07 3624 1111, the Queensland Syphilis Surveillance Service on 1800 032 238 or <a href=\"https://protect-au.mimecast.com/s/Dw3nCK1DLGi0VRotp3won?domain=health.qld.gov.au\" title=\"HIV Public Health Team\">the HIV Public Health Team</a> on 07 3328 9797. </p>\n<p><strong>More information:</strong></p>\n<ul><li><a href=\"https://protect-au.mimecast.com/s/UE4aCL7EvGc56zWugdLlj?domain=ctm.ashm.org.au/\">Australasian Contact Tracing Manual</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/rPG8CMwGJXiGNnruGaBrx?domain=disease-control.health.qld.gov.au/\">Communicable Disease Control Guidance and Information: A-Z</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/C5YVCNLJYGf14gWsVzfBa?domain=sti.guidelines.org.au/\">Australian STI Management Guidelines for Use in Primary Care</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/NWfuCOMKPGioWB8TWKb0C?domain=health.qld.gov.au\">Primary Clinical Care Manual 9<sup>th</sup> edition (2016)</a></li>\n <li>AHSM guide to <a href=\"https://protect-au.mimecast.com/s/XoJBCP7LzGcqpLwsW7YEU?domain=hivlegal.ashm.org.au\">Duty of Care to Third Parties and Civil Liability</a></li>\n</ul>',NULL,NULL,NULL),(4927,162340,1,'2021-05-18 05:13:19','2021-05-18 05:13:19','48097f93-91cd-4c83-9977-a39258706fd2','<p><strong>Dr Debra Carroll works as a General Practitioner with Special Interest (GPwSI) in Gestational Diabetes (GDM), and shared her thoughts on what attracted her to the role and how it complements her work as a general practitioner. </strong></p>\n<p>The GPwSI model of care aims to improve patient access to the most appropriate specialist care in a timely and cost-effective manner, within the outpatient setting. It represents a unique opportunity for GPs to upskill within an area of interest and strengthens the links between primary care practitioners and hospital-based specialist services.</p>\n<p>Within the work she does as a GPwSI, Dr Carroll enjoys the variety that the role brings to her week, and the opportunity to focus on a specific clinical problem within the GDM clinic while working within a multidisciplinary team.</p>\n<p>Dr Carroll said she enjoys being able to bring a broad knowledge of the health system—particularly primary care—to her role as a GPwSI. <br /></p>\n\n<p>“I have the ability to explain to hospital-based healthcare providers how primary care works and how the two systems can work together to improve patient care and outcomes,” she said.</p>\n<p>“I also get the opportunity to advocate for GPs where appropriate and hopefully to provide a positive GP role model to hospital staff and patients.”</p>\n<p>Within her work as a GP, Dr Carroll appreciates the independence, the ability to be flexible and realistic with guidelines and the opportunity to know her patients well in terms of their physical, social and psychological challenges. </p>\n<p>“As a GP I get to advocate for the public system in my practice and assist colleagues and patients in the appropriate pathways to access care within the public system,” Dr Carroll said.</p>\n<p>“It helps to have an improved understanding of the complexities of providing healthcare in the public hospital environment. It is helpful to be able to interpret that for patients and colleagues and improve their confidence in what the public system can provide.”</p>\n<p>To any GPs considering a GPwSI role, Dr Carroll would recommend it to those who want to try something different and work in a team of clinicians with a multi-disciplinary approach.</p>\n<p>“The hospital staff are very welcoming and supportive and very willing to educate and share their knowledge and skills,” Dr Carroll said. </p>\n<p>The project, currently funded in partnership with the Queensland Health Clinical Excellence Division, recruited their first GPwSI in April 2018, since then has had up to 17 GPs with Special Interests working across a diverse selection of 15 specialty departments.</p>\n<p>The GP with Special Interest outpatient clinics are based out of Metro North Hospital and Community Health facilities. Special interest outpatients clinics include:</p><ul><li>orthopaedic</li><li>diabetes</li><li>epilepsy</li><li>older persons.</li></ul>\n\n<p>Metro North Health are currently recruiting a GPwSI in Chronic Kidney Disease to work at Queensland Health facilities in the catchment areas of Caboolture, North Lakes, Redcliffe and The Prince Charles Hospital. </p>\n<p>For more information on the opportunity visit the <a href=\"https://smartjobs.qld.gov.au/jobs/QLD-RBH371167\">Queensland Government’s Smart Jobs page</a> or to get in contact with the project team email <a href=\"mailto:MNHHSGPwSIProject@health.qld.gov.au\">MNHHSGPwSIProject@health.qld.gov.au</a>. </p>',NULL,NULL,NULL),(4928,162342,1,'2021-05-18 05:25:46','2021-05-18 05:25:46','9dae2683-6ae7-4e28-9432-28652c67a776','<p><strong>A new report released by the Black Dog Institute shares insights from two PHN trial sites for implementing suicide prevention strategies for LGBTIQ+ communities.</strong></p>\n<p>The Black Dog Institute has released a new report with key insights for implementing suicide prevention strategies that are effective for LGBTIQ+ communities, titled Suicide prevention for LGBTIQ+ communities: Learnings from the National Suicide Prevention Trial.</p>\n<p>The report was developed as part of Black Dog’s support to the National Suicide Prevention Trial, which was launched in 12 sites across Australia in 2016.</p>\n<p>Funded by the Commonwealth Department of Health and led by 10 Primary Health Networks (PHNs), the National Trial focused on priority populations who have an increased risk of suicide, with two sites – North Western Melbourne and Brisbane North – working directly with LGBTIQ+ populations to implement a community-led, systems approach to suicide prevention.<br /></p>\n<p>Containing reflections from five years of delivering suicide prevention activities in these local regions, the report fills a gap in knowledge available to those implementing suicide prevention activities for LGBTIQ+ communities. Key learnings include embedding lived experience and enabling local decision-making to inform culturally safe design and delivery of services for these populations.</p>\n<p>“We learnt that it is vitally important for suicide prevention coordinators to build strong relationships with local LGBTIQ+ communities and understand intersectionality to improve the communities’ mental health and suicide outcomes,” said Janey McGoldrick, Head of Implementation at the Black Dog Institute.</p>\n<p>Mainstream services often fail to meet the specific needs of LGBTIQ+ communities. With a chronic shortage of culturally safe or affirmative support, services that can be difficult to access for those in remote and regional areas, and a lack of data available – with sexual orientation, gender identity and intersex status routinely omitted from national datasets – LGBTIQ+ communities remain at significantly higher risk of suicide than the general population.</p>\n<p>Both North Western Melbourne and Brisbane North PHNs used the LifeSpan model – a pioneering systems approach to suicide prevention developed by the Black Dog Institute – to guide their strategy and activities.</p>\n<p>“The trial allowed us to coordinate a multifaceted approach to suicide prevention for the LGBTIQ+ Sistergirl and Brotherboy communities,” said Ged Farmer, Suicide Prevention Project Officer, for the Brisbane North PHN.</p>\n<p>With funding for the National Suicide Prevention Trial due to cease from June 2021, the report highlights an urgent need for sustained funding to allow this life-saving work to continue, grow and support more people at risk of suicide in the LGBTIQ+ communities.</p>\n<p>“The trial programs and services are really connecting with the community because they were built with the community,” said North Western Melbourne PHN CEO Adjunct Associate Professor Chris Carter said.</p>\n<p>“It’s a great example of how we need to involve people with lived experience, not just in suicide prevention, but across our health system,” said Associate Professor Carter.</p>\n<p><a href=\"https://www.blackdoginstitute.org.au/wp-content/uploads/2021/04/BDI21_Suicide-prevention-for-LGBTIQ-communities.pdf\"><strong>Download the report</strong></a></p>\n<p><em>With thanks to the Black Dog Institute for their permission to reprint this article. </em></p>\n<p><em><em>Pictured above: PHN staff joined Queensland Council for LGBTI Health (formerly the Queensland AIDS Council) staff, as well as campaign artists and supporters at the Talking Heals launch in February 2020.</em><br /></em></p>',NULL,NULL,NULL),(4929,162433,1,'2021-05-18 23:41:16','2021-05-18 23:41:16','082b2bbc-f649-4aa1-94e1-ef1cdc7295a9','<h5>Caboolture Hospital is entering a new and exciting era, expanding through a redevelopment project and growing the services offered to the local community.</h5>\n<p>Caboolture Hospital Surgical Services would like to introduce their specialist surgical team. It\'s important that patients are treated close to home, and the team at Caboolture Hospital encourage local GPs to refer to our specialist surgeons.</p>',NULL,NULL,NULL),(4930,162453,1,'2021-05-18 23:41:57','2021-05-18 23:41:57','4a35d5a6-eaa8-4b9e-82ee-f13cf374eb38','<p><strong>A new report released by the Black Dog Institute shares insights from two PHN trial sites for implementing suicide prevention strategies for LGBTIQ+ communities.</strong></p>\n<p>The Black Dog Institute has released a new report with key insights for implementing suicide prevention strategies that are effective for LGBTIQ+ communities, titled <em>Suicide prevention for LGBTIQ+ communities: Learnings from the National Suicide Prevention Trial</em>.</p>\n<p>The report was developed as part of Black Dog’s support to the National Suicide Prevention Trial, which was launched in 12 sites across Australia in 2016.</p>\n<p>Funded by the Commonwealth Department of Health and led by 10 Primary Health Networks (PHNs), the National Trial focused on priority populations who have an increased risk of suicide, with two sites – North Western Melbourne and Brisbane North – working directly with LGBTIQ+ populations to implement a community-led, systems approach to suicide prevention.<br /></p>\n<p>Containing reflections from five years of delivering suicide prevention activities in these local regions, the report fills a gap in knowledge available to those implementing suicide prevention activities for LGBTIQ+ communities. Key learnings include embedding lived experience and enabling local decision-making to inform culturally safe design and delivery of services for these populations.</p>\n<p>“We learnt that it is vitally important for suicide prevention coordinators to build strong relationships with local LGBTIQ+ communities and understand intersectionality to improve the communities’ mental health and suicide outcomes,” said Janey McGoldrick, Head of Implementation at the Black Dog Institute.</p>\n<p>Mainstream services often fail to meet the specific needs of LGBTIQ+ communities. With a chronic shortage of culturally safe or affirmative support, services that can be difficult to access for those in remote and regional areas, and a lack of data available – with sexual orientation, gender identity and intersex status routinely omitted from national datasets – LGBTIQ+ communities remain at significantly higher risk of suicide than the general population.</p>\n<p>Both North Western Melbourne and Brisbane North PHNs used the LifeSpan model – a pioneering systems approach to suicide prevention developed by the Black Dog Institute – to guide their strategy and activities.</p>\n<p>“The trial allowed us to coordinate a multifaceted approach to suicide prevention for the LGBTIQ+ Sistergirl and Brotherboy communities,” said Ged Farmer, Suicide Prevention Project Officer, for the Brisbane North PHN.</p>\n<p>With funding for the National Suicide Prevention Trial due to cease from June 2021, the report highlights an urgent need for sustained funding to allow this life-saving work to continue, grow and support more people at risk of suicide in the LGBTIQ+ communities.</p>\n<p>“The trial programs and services are really connecting with the community because they were built with the community,” said North Western Melbourne PHN CEO Adjunct Associate Professor Chris Carter said.</p>\n<p>“It’s a great example of how we need to involve people with lived experience, not just in suicide prevention, but across our health system,” said Associate Professor Carter.</p>\n<p><a href=\"https://www.blackdoginstitute.org.au/wp-content/uploads/2021/04/BDI21_Suicide-prevention-for-LGBTIQ-communities.pdf\"><strong>Download the report</strong></a></p>\n<p><em>With thanks to the Black Dog Institute for their permission to reprint this article. </em></p>\n<p><em><em>Pictured above: PHN staff joined Queensland Council for LGBTI Health (formerly the Queensland AIDS Council) staff, as well as campaign artists and supporters at the Talking Heals launch in February 2020.</em><br /></em></p>',NULL,NULL,NULL),(4931,162455,1,'2021-05-18 23:43:55','2021-05-18 23:43:55','b70cc555-f60a-4335-953c-113dd9c2f0bd','<p><strong>Dr Debra Carroll works as a General Practitioner with Special Interest (GPwSI) in Gestational Diabetes (GDM), and shared her thoughts on what attracted her to the role and how it complements her work as a general practitioner. </strong><br /></p>\n\n<p>Within the work she does as a GPwSI, Dr Carroll enjoys the variety that the role brings to her week, and the opportunity to focus on a specific clinical problem within the GDM clinic while working within a multidisciplinary team.</p>\n<p>Dr Carroll said she enjoys being able to bring a broad knowledge of the health system—particularly primary care—to her role as a GPwSI. <br /></p>\n<p>“I have the ability to explain to hospital-based healthcare providers how primary care works and how the two systems can work together to improve patient care and outcomes,” she said.</p>\n<p>“I also get the opportunity to advocate for GPs where appropriate and hopefully to provide a positive GP role model to hospital staff and patients.”</p>\n<p>The GPwSI model of care aims to improve patient access to the most appropriate specialist care in a timely and cost-effective manner, within the outpatient setting. It represents a unique opportunity for GPs to upskill within an area of interest and strengthens the links between primary care practitioners and hospital-based specialist services.</p>\n<p>Within her work as a GP, Dr Carroll appreciates the independence, the ability to be flexible and realistic with guidelines and the opportunity to know her patients well in terms of their physical, social and psychological challenges. </p>\n<p>“As a GP I get to advocate for the public system in my practice and assist colleagues and patients in the appropriate pathways to access care within the public system,” Dr Carroll said.</p>\n<p>“It helps to have an improved understanding of the complexities of providing healthcare in the public hospital environment. It is helpful to be able to interpret that for patients and colleagues and improve their confidence in what the public system can provide.”</p>\n<p>To any GPs considering a GPwSI role, Dr Carroll would recommend it to those who want to try something different and work in a team of clinicians with a multi-disciplinary approach.</p>\n<p>“The hospital staff are very welcoming and supportive and very willing to educate and share their knowledge and skills,” Dr Carroll said. </p>\n<p>The project, currently funded in partnership with the Queensland Health Clinical Excellence Division, recruited their first GPwSI in April 2018, since then has had up to 17 GPs with Special Interests working across a diverse selection of 15 specialty departments.</p>\n<p>The GP with Special Interest outpatient clinics are based out of Metro North Hospital and Community Health facilities. Special interest outpatients clinics include:</p>\n<ul><li>orthopaedic</li><li>diabetes</li><li>epilepsy</li><li>older persons.</li></ul>\n<p>Metro North Health are currently recruiting a GPwSI in Chronic Kidney Disease to work at Queensland Health facilities in the catchment areas of Caboolture, North Lakes, Redcliffe and The Prince Charles Hospital. </p>\n<p>For more information on the opportunity visit the <a href=\"https://smartjobs.qld.gov.au/jobs/QLD-RBH371167\">Queensland Government’s Smart Jobs page</a> or to get in contact with the project team email <a href=\"mailto:MNHHSGPwSIProject@health.qld.gov.au\">MNHHSGPwSIProject@health.qld.gov.au</a>. </p>',NULL,NULL,NULL),(4932,162457,1,'2021-05-18 23:44:40','2021-05-18 23:44:40','880ad8fa-f251-4085-a23d-4ff62fe97ed9','<p><strong>Dr Debra Carroll works as a General Practitioner with Special Interest (GPwSI) in Gestational Diabetes (GDM), and shared her thoughts on what attracted her to the role and how it complements her work as a general practitioner. </strong><br /></p>\n\n<p>Within the work she does as a GPwSI, Dr Carroll enjoys the variety that the role brings to her week, and the opportunity to focus on a specific clinical problem within the GDM clinic while working within a multidisciplinary team.</p>\n<p>Dr Carroll said she enjoys being able to bring a broad knowledge of the health system—particularly primary care—to her role as a GPwSI. <br /></p>\n<p>“I have the ability to explain to hospital-based healthcare providers how primary care works and how the two systems can work together to improve patient care and outcomes,” she said.</p>\n<p>“I also get the opportunity to advocate for GPs where appropriate and hopefully to provide a positive GP role model to hospital staff and patients.”</p>\n<p>The GPwSI model of care aims to improve patient access to the most appropriate specialist care in a timely and cost-effective manner, within the outpatient setting. It represents a unique opportunity for GPs to upskill within an area of interest and strengthens the links between primary care practitioners and hospital-based specialist services.</p>\n<p>Within her work as a GP, Dr Carroll appreciates the independence, the ability to be flexible and realistic with guidelines and the opportunity to know her patients well in terms of their physical, social and psychological challenges. </p>\n<p>“As a GP I get to advocate for the public system in my practice and assist colleagues and patients in the appropriate pathways to access care within the public system,” Dr Carroll said.</p>\n<p>“It helps to have an improved understanding of the complexities of providing healthcare in the public hospital environment. It is helpful to be able to interpret that for patients and colleagues and improve their confidence in what the public system can provide.”</p>\n<p>To any GPs considering a GPwSI role, Dr Carroll would recommend it to those who want to try something different and work in a team of clinicians with a multi-disciplinary approach.</p>\n<p>“The hospital staff are very welcoming and supportive and very willing to educate and share their knowledge and skills,” Dr Carroll said. </p>\n<p>The project, currently funded in partnership with the Queensland Health Clinical Excellence Division, recruited their first GPwSI in April 2018, since then has had up to 17 GPs with Special Interests working across a diverse selection of 15 specialty departments.</p>\n<p>The GP with Special Interest outpatient clinics are based out of Metro North Hospital and Community Health facilities. Special interest outpatients clinics include:</p>\n<ul><li>orthopaedic</li><li>diabetes</li><li>epilepsy</li><li>older persons.</li></ul>\n<p>Metro North Health are currently recruiting a GPwSI in Chronic Kidney Disease to work at Queensland Health facilities in the catchment areas of Caboolture, North Lakes, Redcliffe and The Prince Charles Hospital. </p>\n<p>For more information on the opportunity visit the <a href=\"https://smartjobs.qld.gov.au/jobs/QLD-RBH371167\">Queensland Government’s Smart Jobs page</a> or to get in contact with the project team email <a href=\"mailto:MNHHSGPwSIProject@health.qld.gov.au\">MNHHSGPwSIProject@health.qld.gov.au</a>. </p>',NULL,NULL,NULL),(4933,162459,1,'2021-05-18 23:47:19','2021-05-18 23:47:19','b77f0436-1b62-4a8d-b54a-7c79b1d6889e','<p><strong>Vaccination against influenza (flu) remains important this year. Flu is a highly contagious viral infection that can cause widespread illness and deaths every year. Vaccination is our best defence against flu viruses.</strong></p>\n<p>Behaviours such as increased hand washing and social distancing helped to stop the spread of flu viruses in the community last year. Relaxing social distancing restrictions this year may allow flu viruses to recirculate, even if they were hardly seen in 2020.<br /></p>\n<p>Under the National Immunisation Program, free flu vaccines are provided to the following groups who are at higher risk of complications from flu:</p>\n<ul><li>children aged 6 months to less than 5 years</li><li>all Aboriginal and Torres Strait Islander people aged 6 months and over</li><li>people aged 6 months and over with certain medical conditions that increase their chance of severe influenza and its complications</li><li>pregnant women (at any stage during pregnancy)</li><li>people aged 65 years and over.</li></ul>\n<p>Free flu vaccines under the National Immunisation Program are available from April 2021. Vaccinating in autumn provides protection before the peak influenza season.</p>\n<p>Free flu vaccines are available from GPs, community health clinics, Aboriginal Medical Services and other immunisation providers in your state or territory. To locate a service in your area you can search the <a href=\"https://about.healthdirect.gov.au/nhsd\">National Health Services Directory</a>.</p>\n<p>Check with your immunisation provider to find out when they will have the vaccine available and when you can book in to get the vaccine.</p>\n<p>If you are not eligible for a free flu vaccine, you can purchase the vaccine from your GP, a pharmacy, or another immunisation provider.</p>\n<p>Vaccination experts recommend waiting 14 days between getting a flu vaccine and a COVID-19 vaccine. Given this, it will be important to plan both vaccinations.</p>\n<p>It doesn’t matter in what order you get the vaccines, however:</p>\n<ul><li>if you are in earlier phases for COVID-19 vaccination, you should get the COVID-19 vaccine as soon you can. You can then plan your flu vaccination.</li><li>if you are in later phases for COVID-19 vaccination, you should get the flu vaccine as soon as you can. This will ensure you are ready to get your COVID‑19 vaccine when it is available to you.</li></ul>\n<p>You can check what phase you are in using the <a href=\"https://covid-vaccine.healthdirect.gov.au/eligibility\">COVID-19 Vaccine Eligibility Checker</a>.</p>\n<p>When you book in for your flu vaccination, remember to tell your vaccination provider or clinic if you have received the COVID-19 vaccine (and when you received it). This will help them to plan your appointment.</p>\n<p>For more information on the 2021 influenza vaccination guidelines <a href=\"https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/diseases-infection/immunisation/service-providers/influenza\" target=\"_blank\" rel=\"noreferrer noopener\">visit the Queensland Health website</a>.</p>',NULL,NULL,NULL),(4934,162461,1,'2021-05-18 23:47:40','2021-05-18 23:47:40','8cfbf3e1-41c9-4baf-8eb8-76f188443056','<p><strong>Vaccination against influenza (flu) remains important this year. Flu is a highly contagious viral infection that can cause widespread illness and deaths every year. Vaccination is our best defence against flu viruses.</strong></p>\n<p>Behaviours such as increased hand washing and social distancing helped to stop the spread of flu viruses in the community last year. Relaxing social distancing restrictions this year may allow flu viruses to recirculate, even if they were hardly seen in 2020.<br /></p>\n<p>Under the National Immunisation Program, free flu vaccines are provided to the following groups who are at higher risk of complications from flu:</p>\n<ul><li>children aged 6 months to less than 5 years</li><li>all Aboriginal and Torres Strait Islander people aged 6 months and over</li><li>people aged 6 months and over with certain medical conditions that increase their chance of severe influenza and its complications</li><li>pregnant women (at any stage during pregnancy)</li><li>people aged 65 years and over.</li></ul>\n<p>Free flu vaccines under the National Immunisation Program are available from April 2021. Vaccinating in autumn provides protection before the peak influenza season.</p>\n<p>Free flu vaccines are available from GPs, community health clinics, Aboriginal Medical Services and other immunisation providers in your state or territory. To locate a service in your area you can search the <a href=\"https://about.healthdirect.gov.au/nhsd\">National Health Services Directory</a>.</p>\n<p>Check with your immunisation provider to find out when they will have the vaccine available and when you can book in to get the vaccine.</p>\n<p>If you are not eligible for a free flu vaccine, you can purchase the vaccine from your GP, a pharmacy, or another immunisation provider.</p>\n<p>Vaccination experts recommend waiting 14 days between getting a flu vaccine and a COVID-19 vaccine. Given this, it will be important to plan both vaccinations.</p>\n<p>It doesn’t matter in what order you get the vaccines, however:</p>\n<ul><li>if you are in earlier phases for COVID-19 vaccination, you should get the COVID-19 vaccine as soon you can. You can then plan your flu vaccination.</li><li>if you are in later phases for COVID-19 vaccination, you should get the flu vaccine as soon as you can. This will ensure you are ready to get your COVID‑19 vaccine when it is available to you.</li></ul>\n<p>You can check what phase you are in using the <a href=\"https://covid-vaccine.healthdirect.gov.au/eligibility\">COVID-19 Vaccine Eligibility Checker</a>.</p>\n<p>When you book in for your flu vaccination, remember to tell your vaccination provider or clinic if you have received the COVID-19 vaccine (and when you received it). This will help them to plan your appointment.</p>\n<p>For more information on the 2021 influenza vaccination guidelines <a href=\"https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/diseases-infection/immunisation/service-providers/influenza\" target=\"_blank\" rel=\"noreferrer noopener\">visit the Queensland Health website</a>.</p>',NULL,NULL,NULL),(4935,162463,1,'2021-05-18 23:52:02','2021-05-18 23:52:02','2cb9e904-5bc7-4500-b3fe-97ee85e3358d','<p><strong><strong><em>By the Metro North Public Health Unit</em></strong></strong></p>\n<p><strong>Across Metro North Health, gonorrhoea notifications increased 55 per cent between 2016 to 2019, when it reached a peak of 1635, dropping slightly to 1576 notifications during 2020 and the height of the COVID-19 lockdown. </strong></p>\n<p>Similarly, for syphilis, Metro North recorded an 85 per cent increase between 2016 and 2020, when 323 syphilis notifications were recorded last year, increasingly among young heterosexual men and women. </p>\n<p>Against this backdrop of rising infection, it is timely and important that GPs are reminded of contact tracing as a cornerstone in the control of sexually transmitted infections (STI) and an essential part of patient management. Given the demonstrated success of early, intense contact tracing for the control of COVID-19, GPs should be aware of those same principles applied to STI control: regular testing, regular re-testing and contact tracing. It is important for GPs to have contact tracing permanently on their checklist whenever discussing, testing and managing STIs.</p>\n<p>Contract tracing is the process of:</p>\n<ul><li>identifying persons who may have contracted a notifiable condition</li><li>informing persons who are unaware that they may have contracted a notifiable condition so that they may seek testing and treatment before complications arise</li><li>providing information to persons who may have contracted a notifiable condition to prevent or minimise transmission of that condition.</li></ul>\n<p>There is often a misunderstanding that contact tracing for STI is automatically undertaken by the Department (as done for COVID-19 or HIV). Whilst Contact Tracing Support Officers (CTSO) are available to advise and assist GPs, GPs will need to support patients diagnosed with an STI to do contact tracing by:</p>\n<ul>\n <li>Providing the patient with education about the STI, including asymptomatic transmission, risk of complications if left untreated and risk to the patient of re-infection if their partners are not treated as well.</li>\n <li>Discussing that all sexual contacts need to be considered within the appropriate look-back period for the STI and not just the most recent contact. Information on how far back to trace for different STIs is offered by the <a href=\"https://protect-au.mimecast.com/s/GPMeCD1vQxiQ489IWC-JB?domain=contacttracing.ashm.org.au\">Australasian Contact Tracing Guidelines</a>.</li>\n <li>Providing the patient with information regarding the anonymous contact tracing websites that are available: <a href=\"https://protect-au.mimecast.com/s/2zUFCE8w0yiKEZ7cwv52s?domain=letthemknow.org.au/\">Let Them Know</a> or <a href=\"https://protect-au.mimecast.com/s/UvhQCGv0MAUovz7TpMyQu?domain=thedramadownunder.info\">The Drama Down Under</a> (for men who have sex with men) provide a service to advise sexual partners that they might also be at risk by sending an email or SMS either personally or anonymously. </li>\n <li>Discussing with the patient any barriers there may to contact trace and provide support in response.</li>\n</ul>\n<p>GPs can access support, information and advice from the local CTSO at the Metro North Public Health Unit on 07 3624 1111, the Queensland Syphilis Surveillance Service on 1800 032 238 or <a href=\"https://protect-au.mimecast.com/s/Dw3nCK1DLGi0VRotp3won?domain=health.qld.gov.au\" title=\"HIV Public Health Team\">the HIV Public Health Team</a> on 07 3328 9797. </p>\n<p><strong>More information:</strong></p>\n<ul><li><a href=\"https://protect-au.mimecast.com/s/UE4aCL7EvGc56zWugdLlj?domain=ctm.ashm.org.au/\">Australasian Contact Tracing Manual</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/rPG8CMwGJXiGNnruGaBrx?domain=disease-control.health.qld.gov.au/\">Communicable Disease Control Guidance and Information: A-Z</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/C5YVCNLJYGf14gWsVzfBa?domain=sti.guidelines.org.au/\">Australian STI Management Guidelines for Use in Primary Care</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/NWfuCOMKPGioWB8TWKb0C?domain=health.qld.gov.au\">Primary Clinical Care Manual 9<sup>th</sup> edition (2016)</a></li>\n <li>AHSM guide to <a href=\"https://protect-au.mimecast.com/s/XoJBCP7LzGcqpLwsW7YEU?domain=hivlegal.ashm.org.au\">Duty of Care to Third Parties and Civil Liability</a></li>\n</ul>',NULL,NULL,NULL),(4937,162505,1,'2021-05-19 00:58:36','2021-05-19 00:58:36','4f57a9d5-cdcc-4d01-a6db-4294b86c6dde','<p><strong>Dr Debra Carroll works as a General Practitioner with Special Interest (GPwSI) in Gestational Diabetes (GDM), and shared her thoughts on what attracted her to the role and how it complements her work as a general practitioner. </strong><br /></p>\n\n<p>Within the work she does as a GPwSI, Dr Carroll enjoys the variety that the role brings to her week, and the opportunity to focus on a specific clinical problem within the GDM clinic while working within a multidisciplinary team.</p>\n<p>Dr Carroll said she enjoys being able to bring a broad knowledge of the health system—particularly primary care—to her role as a GPwSI. <br /></p>\n<p>“I have the ability to explain to hospital-based healthcare providers how primary care works and how the two systems can work together to improve patient care and outcomes,” she said.</p>\n<p>“I also get the opportunity to advocate for GPs where appropriate and hopefully to provide a positive GP role model to hospital staff and patients.”</p>\n<p>The GPwSI model of care aims to improve patient access to the most appropriate specialist care in a timely and cost-effective manner, within the outpatient setting. It represents a unique opportunity for GPs to upskill within an area of interest and strengthens the links between primary care practitioners and hospital-based specialist services.</p>\n<p>Within her work as a GP, Dr Carroll appreciates the independence, the ability to be flexible and realistic with guidelines and the opportunity to know her patients well in terms of their physical, social and psychological challenges. </p>\n<p>“As a GP I get to advocate for the public system in my practice and assist colleagues and patients in the appropriate pathways to access care within the public system,” Dr Carroll said.</p>\n<p>“It helps to have an improved understanding of the complexities of providing healthcare in the public hospital environment. It is helpful to be able to interpret that for patients and colleagues and improve their confidence in what the public system can provide.”</p>\n<p>To any GPs considering a GPwSI role, Dr Carroll would recommend it to those who want to try something different and work in a team of clinicians with a multi-disciplinary approach.</p>\n<p>“The hospital staff are very welcoming and supportive and very willing to educate and share their knowledge and skills,” Dr Carroll said. </p>\n<p>The project, currently funded in partnership with the Queensland Health Clinical Excellence Division, recruited their first GPwSI in April 2018, since then has had up to 17 GPs with Special Interests working across a diverse selection of 15 specialty departments.</p>\n<p>The GP with Special Interest outpatient clinics are based out of Metro North Hospital and Community Health facilities. Special interest outpatients clinics include:</p>\n<ul><li>orthopaedic</li><li>diabetes</li><li>epilepsy</li><li>older persons.</li></ul>\n<p>Metro North Health are currently recruiting a GPwSI in Chronic Kidney Disease to work at Queensland Health facilities in the catchment areas of Caboolture, North Lakes, Redcliffe and The Prince Charles Hospital. </p>\n<p>For more information on the opportunity visit the <a href=\"https://smartjobs.qld.gov.au/jobs/QLD-RBH371167\">Queensland Government’s Smart Jobs page</a> or to get in contact with the project team email <a href=\"mailto:MNHHSGPwSIProject@health.qld.gov.au\">MNHHSGPwSIProject@health.qld.gov.au</a>. </p>',NULL,NULL,NULL),(4938,162507,1,'2021-05-19 00:58:36','2021-05-19 00:58:36','3655d16d-f91b-4dd2-8bbe-1745960b98f4','<p><strong>Dr Debra Carroll works as a General Practitioner with Special Interest (GPwSI) in Gestational Diabetes (GDM), and shared her thoughts on what attracted her to the role and how it complements her work as a general practitioner. </strong><br /></p>\n\n<p>Within the work she does as a GPwSI, Dr Carroll enjoys the variety that the role brings to her week, and the opportunity to focus on a specific clinical problem within the GDM clinic while working within a multidisciplinary team.</p>\n<p>Dr Carroll said she enjoys being able to bring a broad knowledge of the health system—particularly primary care—to her role as a GPwSI. <br /></p>\n<p>“I have the ability to explain to hospital-based healthcare providers how primary care works and how the two systems can work together to improve patient care and outcomes,” she said.</p>\n<p>“I also get the opportunity to advocate for GPs where appropriate and hopefully to provide a positive GP role model to hospital staff and patients.”</p>\n<p>The GPwSI model of care aims to improve patient access to the most appropriate specialist care in a timely and cost-effective manner, within the outpatient setting. It represents a unique opportunity for GPs to upskill within an area of interest and strengthens the links between primary care practitioners and hospital-based specialist services.</p>\n<p>Within her work as a GP, Dr Carroll appreciates the independence, the ability to be flexible and realistic with guidelines and the opportunity to know her patients well in terms of their physical, social and psychological challenges. </p>\n<p>“As a GP I get to advocate for the public system in my practice and assist colleagues and patients in the appropriate pathways to access care within the public system,” Dr Carroll said.</p>\n<p>“It helps to have an improved understanding of the complexities of providing healthcare in the public hospital environment. It is helpful to be able to interpret that for patients and colleagues and improve their confidence in what the public system can provide.”</p>\n<p>To any GPs considering a GPwSI role, Dr Carroll would recommend it to those who want to try something different and work in a team of clinicians with a multi-disciplinary approach.</p>\n<p>“The hospital staff are very welcoming and supportive and very willing to educate and share their knowledge and skills,” Dr Carroll said. </p>\n<p>The project, currently funded in partnership with the Queensland Health Clinical Excellence Division, recruited their first GPwSI in April 2018, since then has had up to 17 GPs with Special Interests working across a diverse selection of 15 specialty departments.</p>\n<p>The GP with Special Interest outpatient clinics are based out of Metro North Hospital and Community Health facilities. Special interest outpatients clinics include:</p>\n<ul><li>orthopaedic</li><li>diabetes</li><li>epilepsy</li><li>older persons.</li></ul>\n<p>Metro North Health are currently recruiting a GPwSI in Chronic Kidney Disease to work at Queensland Health facilities in the catchment areas of Caboolture, North Lakes, Redcliffe and The Prince Charles Hospital. </p>\n<p>For more information on the opportunity visit the <a href=\"https://smartjobs.qld.gov.au/jobs/QLD-RBH371167\">Queensland Government’s Smart Jobs page</a> or to get in contact with the project team email <a href=\"mailto:MNHHSGPwSIProject@health.qld.gov.au\">MNHHSGPwSIProject@health.qld.gov.au</a>. </p>',NULL,NULL,NULL),(4939,162509,1,'2021-05-19 00:58:40','2021-05-19 00:58:40','7192200e-5fa1-459a-8422-6f22be13df66','<p><strong>Dr Debra Carroll works as a General Practitioner with Special Interest (GPwSI) in Gestational Diabetes (GDM), and shared her thoughts on what attracted her to the role and how it complements her work as a general practitioner. </strong><br /></p>\n\n<p>Within the work she does as a GPwSI, Dr Carroll enjoys the variety that the role brings to her week, and the opportunity to focus on a specific clinical problem within the GDM clinic while working within a multidisciplinary team.</p>\n<p>Dr Carroll said she enjoys being able to bring a broad knowledge of the health system—particularly primary care—to her role as a GPwSI. <br /></p>\n<p>“I have the ability to explain to hospital-based healthcare providers how primary care works and how the two systems can work together to improve patient care and outcomes,” she said.</p>\n<p>“I also get the opportunity to advocate for GPs where appropriate and hopefully to provide a positive GP role model to hospital staff and patients.”</p>\n<p>The GPwSI model of care aims to improve patient access to the most appropriate specialist care in a timely and cost-effective manner, within the outpatient setting. It represents a unique opportunity for GPs to upskill within an area of interest and strengthens the links between primary care practitioners and hospital-based specialist services.</p>\n<p>Within her work as a GP, Dr Carroll appreciates the independence, the ability to be flexible and realistic with guidelines and the opportunity to know her patients well in terms of their physical, social and psychological challenges. </p>\n<p>“As a GP I get to advocate for the public system in my practice and assist colleagues and patients in the appropriate pathways to access care within the public system,” Dr Carroll said.</p>\n<p>“It helps to have an improved understanding of the complexities of providing healthcare in the public hospital environment. It is helpful to be able to interpret that for patients and colleagues and improve their confidence in what the public system can provide.”</p>\n<p>To any GPs considering a GPwSI role, Dr Carroll would recommend it to those who want to try something different and work in a team of clinicians with a multi-disciplinary approach.</p>\n<p>“The hospital staff are very welcoming and supportive and very willing to educate and share their knowledge and skills,” Dr Carroll said. </p>\n<p>The project, currently funded in partnership with the Queensland Health Clinical Excellence Division, recruited their first GPwSI in April 2018, since then has had up to 17 GPs with Special Interests working across a diverse selection of 15 specialty departments.</p>\n<p>The GP with Special Interest outpatient clinics are based out of Metro North Hospital and Community Health facilities. Special interest outpatients clinics include:</p>\n<ul><li>orthopaedic</li><li>diabetes</li><li>epilepsy</li><li>older persons.</li></ul>\n<p>Metro North Health are currently recruiting a GPwSI in Chronic Kidney Disease to work at Queensland Health facilities in the catchment areas of Caboolture, North Lakes, Redcliffe and The Prince Charles Hospital. </p>\n<p>For more information on the opportunity visit the <a href=\"https://smartjobs.qld.gov.au/jobs/QLD-RBH371167\">Queensland Government’s Smart Jobs page</a> or to get in contact with the project team email <a href=\"mailto:MNHHSGPwSIProject@health.qld.gov.au\">MNHHSGPwSIProject@health.qld.gov.au</a>. </p>',NULL,NULL,NULL),(4941,162512,1,'2021-05-19 01:06:48','2021-05-19 01:10:45','d14ce9ea-bb81-458e-8c35-39111215f383','<p><strong><strong><em>By the Metro North Public Health Unit</em></strong></strong></p>\n<p><strong>Across Metro North Health, gonorrhoea notifications increased 55 per cent between 2016 to 2019, when it reached a peak of 1635, dropping slightly to 1576 notifications during 2020 and the height of the COVID-19 lockdown. </strong></p>\n<p>Similarly, for syphilis, Metro North recorded an 85 per cent increase between 2016 and 2020, when 323 syphilis notifications were recorded last year, increasingly among young heterosexual men and women. </p>\n<p>Against this backdrop of rising infection, it is timely and important that GPs are reminded of contact tracing as a cornerstone in the control of sexually transmitted infections (STI) and an essential part of patient management. Given the demonstrated success of early, intense contact tracing for the control of COVID-19, GPs should be aware of those same principles applied to STI control: regular testing, regular re-testing and contact tracing. It is important for GPs to have contact tracing permanently on their checklist whenever discussing, testing and managing STIs.</p>\n<p>Contract tracing is the process of:</p>\n<ul><li>identifying persons who may have contracted a notifiable condition</li><li>informing persons who are unaware that they may have contracted a notifiable condition so that they may seek testing and treatment before complications arise</li><li>providing information to persons who may have contracted a notifiable condition to prevent or minimise transmission of that condition.</li></ul>\n<p>There is often a misunderstanding that contact tracing for STI is automatically undertaken by the Department (as done for COVID-19 or HIV). Whilst Contact Tracing Support Officers (CTSO) are available to advise and assist GPs, GPs will need to support patients diagnosed with an STI to do contact tracing by:</p>\n<ul>\n <li>Providing the patient with education about the STI, including asymptomatic transmission, risk of complications if left untreated and risk to the patient of re-infection if their partners are not treated as well.</li>\n <li>Discussing that all sexual contacts need to be considered within the appropriate look-back period for the STI and not just the most recent contact. Information on how far back to trace for different STIs is offered by the <a href=\"http://contacttracing.ashm.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">Australasian Contact Tracing Guidelines</a>.</li>\n <li>Providing the patient with information regarding the anonymous contact tracing websites that are available: <a href=\"https://letthemknow.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">Let Them Know</a> or <a href=\"https://www.thedramadownunder.info/\" target=\"_blank\" rel=\"noreferrer noopener\">The Drama Down Under</a> (for men who have sex with men) provide a service to advise sexual partners that they might also be at risk by sending an email or SMS either personally or anonymously. </li>\n <li>Discussing with the patient any barriers there may to contact trace and provide support in response.</li>\n</ul>\n<p>GPs can access support, information and advice from the local CTSO at the Metro North Public Health Unit on 07 3624 1111, the Queensland Syphilis Surveillance Service on 1800 032 238 or <a href=\"https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/sex-health/services#hiv\" title=\"HIV Public Health Team\" target=\"_blank\" rel=\"noreferrer noopener\">the HIV Public Health Team</a> on 07 3328 9797. </p>\n<p><strong>More information:</strong></p>\n<ul><li><a href=\"http://contacttracing.ashm.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">Australasian Contact Tracing Manual</a></li>\n <li><a href=\"http://disease-control.health.qld.gov.au/\" target=\"_blank\" rel=\"noreferrer noopener\">Communicable Disease Control Guidance and Information: A-Z</a></li>\n <li><a href=\"http://www.sti.guidelines.org.au/resources/filter/item/australasian-contact-tracing-manual\" target=\"_blank\" rel=\"noreferrer noopener\">Australian STI Management Guidelines for Use in Primary Care</a></li>\n <li><a href=\"https://www.publications.qld.gov.au/dataset/primary-clinical-care-manual-10th-edition/resource/9ee849ab-ba4a-49d8-a582-dfa30f1d8a96\" target=\"_blank\" rel=\"noreferrer noopener\">Primary Clinical Care Manual 10th edition (2019)</a></li><li><a href=\"https://hivlegal.ashm.org.au/duty-of-care-to-third-parties-and-civil-liability/\" target=\"_blank\" rel=\"noreferrer noopener\">AHSM guide to Duty of Care to Third Parties and Civil Liability</a></li></ul>',NULL,NULL,NULL),(4942,162514,1,'2021-05-19 01:06:49','2021-05-19 01:06:49','4a0267ad-9a67-4d26-a3e5-8ff4aca7c5a7','<p><strong><strong><em>By the Metro North Public Health Unit</em></strong></strong></p>\n<p><strong>Across Metro North Health, gonorrhoea notifications increased 55 per cent between 2016 to 2019, when it reached a peak of 1635, dropping slightly to 1576 notifications during 2020 and the height of the COVID-19 lockdown. </strong></p>\n<p>Similarly, for syphilis, Metro North recorded an 85 per cent increase between 2016 and 2020, when 323 syphilis notifications were recorded last year, increasingly among young heterosexual men and women. </p>\n<p>Against this backdrop of rising infection, it is timely and important that GPs are reminded of contact tracing as a cornerstone in the control of sexually transmitted infections (STI) and an essential part of patient management. Given the demonstrated success of early, intense contact tracing for the control of COVID-19, GPs should be aware of those same principles applied to STI control: regular testing, regular re-testing and contact tracing. It is important for GPs to have contact tracing permanently on their checklist whenever discussing, testing and managing STIs.</p>\n<p>Contract tracing is the process of:</p>\n<ul><li>identifying persons who may have contracted a notifiable condition</li><li>informing persons who are unaware that they may have contracted a notifiable condition so that they may seek testing and treatment before complications arise</li><li>providing information to persons who may have contracted a notifiable condition to prevent or minimise transmission of that condition.</li></ul>\n<p>There is often a misunderstanding that contact tracing for STI is automatically undertaken by the Department (as done for COVID-19 or HIV). Whilst Contact Tracing Support Officers (CTSO) are available to advise and assist GPs, GPs will need to support patients diagnosed with an STI to do contact tracing by:</p>\n<ul>\n <li>Providing the patient with education about the STI, including asymptomatic transmission, risk of complications if left untreated and risk to the patient of re-infection if their partners are not treated as well.</li>\n <li>Discussing that all sexual contacts need to be considered within the appropriate look-back period for the STI and not just the most recent contact. Information on how far back to trace for different STIs is offered by the <a href=\"http://contacttracing.ashm.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">Australasian Contact Tracing Guidelines</a>.</li>\n <li>Providing the patient with information regarding the anonymous contact tracing websites that are available: <a href=\"https://letthemknow.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">Let Them Know</a> or <a href=\"https://www.thedramadownunder.info/\" target=\"_blank\" rel=\"noreferrer noopener\">The Drama Down Under</a> (for men who have sex with men) provide a service to advise sexual partners that they might also be at risk by sending an email or SMS either personally or anonymously. </li>\n <li>Discussing with the patient any barriers there may to contact trace and provide support in response.</li>\n</ul>\n<p>GPs can access support, information and advice from the local CTSO at the Metro North Public Health Unit on 07 3624 1111, the Queensland Syphilis Surveillance Service on 1800 032 238 or <a href=\"https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/sex-health/services#hiv\" title=\"HIV Public Health Team\" target=\"_blank\" rel=\"noreferrer noopener\">the HIV Public Health Team</a> on 07 3328 9797. </p>\n<p><strong>More information:</strong></p>\n<ul><li><a href=\"https://protect-au.mimecast.com/s/UE4aCL7EvGc56zWugdLlj?domain=ctm.ashm.org.au/\">Australasian Contact Tracing Manual</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/rPG8CMwGJXiGNnruGaBrx?domain=disease-control.health.qld.gov.au/\">Communicable Disease Control Guidance and Information: A-Z</a></li>\n <li><a href=\"http://www.sti.guidelines.org.au/resources/filter/item/australasian-contact-tracing-manual\" target=\"_blank\" rel=\"noreferrer noopener\">Australian STI Management Guidelines for Use in Primary Care</a></li>\n <li><a href=\"https://protect-au.mimecast.com/s/NWfuCOMKPGioWB8TWKb0C?domain=health.qld.gov.au\">Primary Clinical Care Manual 9<sup>th</sup> edition (2016)</a></li>\n <li>AHSM guide to <a href=\"https://protect-au.mimecast.com/s/XoJBCP7LzGcqpLwsW7YEU?domain=hivlegal.ashm.org.au\">Duty of Care to Third Parties and Civil Liability</a></li>\n</ul>',NULL,NULL,NULL),(4943,162516,1,'2021-05-19 01:10:45','2021-05-19 01:10:45','9e514c14-e346-4405-b0be-4f1f9494fda3','<p><strong><strong><em>By the Metro North Public Health Unit</em></strong></strong></p>\n<p><strong>Across Metro North Health, gonorrhoea notifications increased 55 per cent between 2016 to 2019, when it reached a peak of 1635, dropping slightly to 1576 notifications during 2020 and the height of the COVID-19 lockdown. </strong></p>\n<p>Similarly, for syphilis, Metro North recorded an 85 per cent increase between 2016 and 2020, when 323 syphilis notifications were recorded last year, increasingly among young heterosexual men and women. </p>\n<p>Against this backdrop of rising infection, it is timely and important that GPs are reminded of contact tracing as a cornerstone in the control of sexually transmitted infections (STI) and an essential part of patient management. Given the demonstrated success of early, intense contact tracing for the control of COVID-19, GPs should be aware of those same principles applied to STI control: regular testing, regular re-testing and contact tracing. It is important for GPs to have contact tracing permanently on their checklist whenever discussing, testing and managing STIs.</p>\n<p>Contract tracing is the process of:</p>\n<ul><li>identifying persons who may have contracted a notifiable condition</li><li>informing persons who are unaware that they may have contracted a notifiable condition so that they may seek testing and treatment before complications arise</li><li>providing information to persons who may have contracted a notifiable condition to prevent or minimise transmission of that condition.</li></ul>\n<p>There is often a misunderstanding that contact tracing for STI is automatically undertaken by the Department (as done for COVID-19 or HIV). Whilst Contact Tracing Support Officers (CTSO) are available to advise and assist GPs, GPs will need to support patients diagnosed with an STI to do contact tracing by:</p>\n<ul>\n <li>Providing the patient with education about the STI, including asymptomatic transmission, risk of complications if left untreated and risk to the patient of re-infection if their partners are not treated as well.</li>\n <li>Discussing that all sexual contacts need to be considered within the appropriate look-back period for the STI and not just the most recent contact. Information on how far back to trace for different STIs is offered by the <a href=\"http://contacttracing.ashm.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">Australasian Contact Tracing Guidelines</a>.</li>\n <li>Providing the patient with information regarding the anonymous contact tracing websites that are available: <a href=\"https://letthemknow.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">Let Them Know</a> or <a href=\"https://www.thedramadownunder.info/\" target=\"_blank\" rel=\"noreferrer noopener\">The Drama Down Under</a> (for men who have sex with men) provide a service to advise sexual partners that they might also be at risk by sending an email or SMS either personally or anonymously. </li>\n <li>Discussing with the patient any barriers there may to contact trace and provide support in response.</li>\n</ul>\n<p>GPs can access support, information and advice from the local CTSO at the Metro North Public Health Unit on 07 3624 1111, the Queensland Syphilis Surveillance Service on 1800 032 238 or <a href=\"https://www.health.qld.gov.au/clinical-practice/guidelines-procedures/sex-health/services#hiv\" title=\"HIV Public Health Team\" target=\"_blank\" rel=\"noreferrer noopener\">the HIV Public Health Team</a> on 07 3328 9797. </p>\n<p><strong>More information:</strong></p>\n<ul><li><a href=\"http://contacttracing.ashm.org.au/\" target=\"_blank\" rel=\"noreferrer noopener\">Australasian Contact Tracing Manual</a></li>\n <li><a href=\"http://disease-control.health.qld.gov.au/\" target=\"_blank\" rel=\"noreferrer noopener\">Communicable Disease Control Guidance and Information: A-Z</a></li>\n <li><a href=\"http://www.sti.guidelines.org.au/resources/filter/item/australasian-contact-tracing-manual\" target=\"_blank\" rel=\"noreferrer noopener\">Australian STI Management Guidelines for Use in Primary Care</a></li>\n <li><a href=\"https://www.publications.qld.gov.au/dataset/primary-clinical-care-manual-10th-edition/resource/9ee849ab-ba4a-49d8-a582-dfa30f1d8a96\" target=\"_blank\" rel=\"noreferrer noopener\">Primary Clinical Care Manual 10th edition (2019)</a></li><li><a href=\"https://hivlegal.ashm.org.au/duty-of-care-to-third-parties-and-civil-liability/\" target=\"_blank\" rel=\"noreferrer noopener\">AHSM guide to Duty of Care to Third Parties and Civil Liability</a></li></ul>',NULL,NULL,NULL),(4945,162537,1,'2021-05-19 01:15:53','2021-05-19 01:15:53','6ed94b75-cc7b-4085-91b7-dd1bf407fa8c','<h5>Caboolture Hospital is entering a new and exciting era, expanding through a redevelopment project and growing the services offered to the local community.</h5>\n<p>Caboolture Hospital Surgical Services would like to introduce their specialist surgical team. It\'s important that patients are treated close to home, and the team at Caboolture Hospital encourage local GPs to refer to our specialist surgeons.</p>',NULL,NULL,NULL),(4946,162557,1,'2021-05-19 01:15:53','2021-05-19 01:15:53','548dfb7d-9ab4-4c72-9039-5e944e5737a3','<h5>Caboolture Hospital is entering a new and exciting era, expanding through a redevelopment project and growing the services offered to the local community.</h5>\n<p>Caboolture Hospital Surgical Services would like to introduce their specialist surgical team. It\'s important that patients are treated close to home, and the team at Caboolture Hospital encourage local GPs to refer to our specialist surgeons.</p>',NULL,NULL,NULL),(4948,162596,1,'2021-05-19 01:17:15','2021-05-19 01:17:15','ae415e39-f1b8-4199-a1d5-888c4d0209ca','<h5>Caboolture Hospital is entering a new and exciting era, expanding through a redevelopment project and growing the services offered to the local community.</h5>\n<p>Caboolture Hospital Surgical Services would like to introduce their specialist surgical team. It\'s important that patients are treated close to home, and the team at Caboolture Hospital encourage local GPs to refer to our specialist surgeons.</p>',NULL,NULL,NULL),(4949,162616,1,'2021-05-19 01:17:16','2021-05-19 01:17:16','e1823a08-d3cb-4904-b21d-17c1872d6c50','<h5>Caboolture Hospital is entering a new and exciting era, expanding through a redevelopment project and growing the services offered to the local community.</h5>\n<p>Caboolture Hospital Surgical Services would like to introduce their specialist surgical team. It\'s important that patients are treated close to home, and the team at Caboolture Hospital encourage local GPs to refer to our specialist surgeons.</p>',NULL,NULL,NULL),(4951,162655,1,'2021-05-19 01:18:12','2021-05-19 01:18:12','ace3e3e2-57df-4517-8899-328c7bfe44d8','<h5>Caboolture Hospital is entering a new and exciting era, expanding through a redevelopment project and growing the services offered to the local community.</h5>\n<p>Caboolture Hospital Surgical Services would like to introduce their specialist surgical team. It\'s important that patients are treated close to home, and the team at Caboolture Hospital encourage local GPs to refer to our specialist surgeons.</p>',NULL,NULL,NULL),(4952,162675,1,'2021-05-19 01:18:12','2021-05-19 01:18:12','7c271997-44c9-4056-a9c6-d2b0fba8ea14','<h5>Caboolture Hospital is entering a new and exciting era, expanding through a redevelopment project and growing the services offered to the local community.</h5>\n<p>Caboolture Hospital Surgical Services would like to introduce their specialist surgical team. It\'s important that patients are treated close to home, and the team at Caboolture Hospital encourage local GPs to refer to our specialist surgeons.</p>',NULL,NULL,NULL),(4953,162695,1,'2021-05-19 01:18:46','2021-05-19 01:18:46','e154d1b6-f7e7-49ef-9333-edef3005a71e','<h5>Caboolture Hospital is entering a new and exciting era, expanding through a redevelopment project and growing the services offered to the local community.</h5>\n<p>Caboolture Hospital Surgical Services would like to introduce their specialist surgical team. It\'s important that patients are treated close to home, and the team at Caboolture Hospital encourage local GPs to refer to our specialist surgeons.</p>',NULL,NULL,NULL),(4954,162715,1,'2021-05-19 01:19:12','2021-05-19 01:19:12','3f0d065d-828e-458d-8e63-15cc0771999c','<h5>Caboolture Hospital is entering a new and exciting era, expanding through a redevelopment project and growing the services offered to the local community.</h5>\n<p>Caboolture Hospital Surgical Services would like to introduce their specialist surgical team. It\'s important that patients are treated close to home, and the team at Caboolture Hospital encourage local GPs to refer to our specialist surgeons.</p>',NULL,NULL,NULL),(4956,162754,1,'2021-05-19 01:20:04','2021-05-19 01:20:04','e1af3074-b89f-4d22-91d7-a7af41613144','<h5>Caboolture Hospital is entering a new and exciting era, expanding through a redevelopment project and growing the services offered to the local community.</h5>\n<p>Caboolture Hospital Surgical Services would like to introduce their specialist surgical team. It\'s important that patients are treated close to home, and the team at Caboolture Hospital encourage local GPs to refer to our specialist surgeons.</p>',NULL,NULL,NULL),(4957,162774,1,'2021-05-19 01:20:05','2021-05-19 01:20:05','a360ccfc-3f4e-4b72-aa6e-e596a078a07a','<h5>Caboolture Hospital is entering a new and exciting era, expanding through a redevelopment project and growing the services offered to the local community.</h5>\n<p>Caboolture Hospital Surgical Services would like to introduce their specialist surgical team. It\'s important that patients are treated close to home, and the team at Caboolture Hospital encourage local GPs to refer to our specialist surgeons.</p>',NULL,NULL,NULL),(4958,162794,1,'2021-05-19 01:20:10','2021-05-19 01:20:10','98eeeae4-1591-4517-8a89-e7d37500602f','<h5>Caboolture Hospital is entering a new and exciting era, expanding through a redevelopment project and growing the services offered to the local community.</h5>\n<p>Caboolture Hospital Surgical Services would like to introduce their specialist surgical team. It\'s important that patients are treated close to home, and the team at Caboolture Hospital encourage local GPs to refer to our specialist surgeons.</p>',NULL,NULL,NULL),(4959,162814,1,'2021-05-19 01:20:41','2021-05-19 01:23:06','9ad6e42d-5774-4b3c-b232-a2071fed53af','<h5><br /></h5>',NULL,NULL,NULL),(4960,162908,1,'2021-05-19 01:26:11','2021-05-19 01:26:11','1de5273e-a06f-4d4f-9197-fb5ffb576d7a',NULL,NULL,NULL,'Caboolture Hospital is entering a new and exciting era, expanding through a redevelopment project and growing the services offered to the local community.'),(4961,162909,1,'2021-05-19 01:26:34','2021-05-19 01:26:34','474393a1-274b-4766-abc9-1704f310aa92',NULL,NULL,NULL,NULL),(4962,162910,1,'2021-05-19 01:29:34','2021-05-19 01:29:34','9f539b2f-9d08-4a82-8341-4ea208716b72',NULL,NULL,NULL,NULL),(4963,162911,1,'2021-05-19 01:29:36','2021-05-19 01:29:36','66443103-202b-420b-9c6f-e6ec433d4a14','<h5>Caboolture Hospital is entering a new and exciting era, expanding through a redevelopment project and growing the services offered to the local community.</h5>\n<p>Caboolture Hospital Surgical Services would like to introduce their specialist surgical team. It\'s important that patients are treated close to home, and the team at Caboolture Hospital encourage local GPs to refer to our specialist surgeons.</p>',NULL,NULL,NULL),(4965,162913,1,'2021-05-19 01:30:30','2021-05-19 01:30:30','f771c326-3891-47cb-b8a7-5732b2045572','<h5>Caboolture Hospital is entering a new and exciting era, expanding through a redevelopment project and growing the services offered to the local community.</h5>\n<p>Caboolture Hospital Surgical Services would like to introduce their specialist surgical team. It\'s important that patients are treated close to home, and the team at Caboolture Hospital encourage local GPs to refer to our specialist surgeons.</p>\n<p>Keep reading for information on the referral process or scroll down to meet the team. </p>',NULL,NULL,NULL),(4966,162933,1,'2021-05-19 01:30:31','2021-05-19 01:30:31','d8342e53-d5ee-4458-917e-0518790b5046','<h5>Caboolture Hospital is entering a new and exciting era, expanding through a redevelopment project and growing the services offered to the local community.</h5>\n<p>Caboolture Hospital Surgical Services would like to introduce their specialist surgical team. It\'s important that patients are treated close to home, and the team at Caboolture Hospital encourage local GPs to refer to our specialist surgeons.</p>\n<p>Keep reading for information on the referral process or scroll down to meet the team. </p>',NULL,NULL,NULL),(4967,162953,1,'2021-05-19 01:31:34','2021-05-19 01:31:34','3090e59a-aa22-4116-b112-1120ab05f676','<h5>Caboolture Hospital is entering a new and exciting era, expanding through a redevelopment project and growing the services offered to the local community.</h5>\n<p>Caboolture Hospital Surgical Services would like to introduce their specialist surgical team. It\'s important that patients are treated close to home, and the team at Caboolture Hospital encourage local GPs to refer to our specialist surgeons.</p>\n<p>Keep reading for information on the referral process or scroll down to meet the team. </p>',NULL,NULL,NULL),(4969,162992,1,'2021-05-19 01:36:50','2021-05-19 01:36:50','eff05368-c2de-48ad-9022-51d989343264','<h5>Caboolture Hospital is entering a new and exciting era, expanding through a redevelopment project and growing the services offered to the local community.</h5>\n<p>Caboolture Hospital Surgical Services would like to introduce their specialist surgical team. It\'s important that patients are treated close to home, and the team at Caboolture Hospital encourage local GPs to refer to our specialist surgeons.</p>\n<p>Keep reading for information on the referral process or scroll down to meet the team. </p><h5><strong>The referral process</strong><br /></h5>\n<p>You and your patient can choose to direct your referral to Dr Hendahewa, as the Director of the department, if you are unsure who to send your referral to within the department.</p>\n<p>Please review the outpatient referral guidelines found under <a href=\"https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient\" target=\"_blank\" rel=\"noreferrer noopener\">Specialist Outpatient Services</a> prior to completing your referral. This is to ensure you have included all essential information and investigations prior to referral to triage your patient correctly.</p>\n<p>When referring to outpatients we encourage GPs to refer electronically; GP Smart Referrals makes this easy. It advises GPs of essential clinical information required in a referral, allows you to attach images to your referral and indicates current outpatient wait times in each facility.</p>\n<p>For assistance setting up on GP Smart Referrals contact your Brisbane North PHN <a href=\"{entry:14774@1:url||https://brisbanenorthphn.org.au/practice-support/primary-care-liaison-officers}\" target=\"_blank\" rel=\"noreferrer noopener\">Primary Care Liaison Officer</a>. If you don’t use GP Smart Referrals, you can also use e-referral templates using <em>Medical Objects</em> to send a referral to the Metro North HHS Central Patient Intake Unit.</p><h5><strong>Need specialist advice before making a referral?</strong><br /></h5>\n<p>There are several specialist advice services available to GPs, including the ED Specialist Advice Line (Virtual ED) and the Residential Aged Care District Assessment and Referral Service (RADAR).</p>\n<p>To find all the specialist advice options available to GPs, please visit the <a href=\"https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice\" target=\"_blank\" rel=\"noreferrer noopener\">Metro North Health website</a>.</p>',NULL,NULL,NULL),(4970,163010,1,'2021-05-19 01:36:51','2021-05-19 01:36:51','e5c8191a-1253-4265-ba03-2f2be61c8bfb','<h5>Caboolture Hospital is entering a new and exciting era, expanding through a redevelopment project and growing the services offered to the local community.</h5>\n<p>Caboolture Hospital Surgical Services would like to introduce their specialist surgical team. It\'s important that patients are treated close to home, and the team at Caboolture Hospital encourage local GPs to refer to our specialist surgeons.</p>\n<p>Keep reading for information on the referral process or scroll down to meet the team. </p><h5><strong>The referral process</strong><br /></h5>\n<p>You and your patient can choose to direct your referral to Dr Hendahewa, as the Director of the department, if you are unsure who to send your referral to within the department.</p>\n<p>Please review the outpatient referral guidelines found under <a href=\"https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient\" target=\"_blank\" rel=\"noreferrer noopener\">Specialist Outpatient Services</a> prior to completing your referral. This is to ensure you have included all essential information and investigations prior to referral to triage your patient correctly.</p>\n<p>When referring to outpatients we encourage GPs to refer electronically; GP Smart Referrals makes this easy. It advises GPs of essential clinical information required in a referral, allows you to attach images to your referral and indicates current outpatient wait times in each facility.</p>\n<p>For assistance setting up on GP Smart Referrals contact your Brisbane North PHN <a href=\"{entry:14774@1:url||https://brisbanenorthphn.org.au/practice-support/primary-care-liaison-officers}\" target=\"_blank\" rel=\"noreferrer noopener\">Primary Care Liaison Officer</a>. If you don’t use GP Smart Referrals, you can also use e-referral templates using <em>Medical Objects</em> to send a referral to the Metro North HHS Central Patient Intake Unit.</p><h5><strong>Need specialist advice before making a referral?</strong><br /></h5>\n<p>There are several specialist advice services available to GPs, including the ED Specialist Advice Line (Virtual ED) and the Residential Aged Care District Assessment and Referral Service (RADAR).</p>\n<p>To find all the specialist advice options available to GPs, please visit the <a href=\"https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice\" target=\"_blank\" rel=\"noreferrer noopener\">Metro North Health website</a>.</p>',NULL,NULL,NULL),(4971,163028,1,'2021-05-19 01:36:58','2021-05-19 01:36:58','2234bdf2-1c02-441b-95e5-6e4133ea448e','<h5>Caboolture Hospital is entering a new and exciting era, expanding through a redevelopment project and growing the services offered to the local community.</h5>\n<p>Caboolture Hospital Surgical Services would like to introduce their specialist surgical team. It\'s important that patients are treated close to home, and the team at Caboolture Hospital encourage local GPs to refer to our specialist surgeons.</p>\n<p>Keep reading for information on the referral process or scroll down to meet the team. </p><h5><strong>The referral process</strong><br /></h5>\n<p>You and your patient can choose to direct your referral to Dr Hendahewa, as the Director of the department, if you are unsure who to send your referral to within the department.</p>\n<p>Please review the outpatient referral guidelines found under <a href=\"https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient\" target=\"_blank\" rel=\"noreferrer noopener\">Specialist Outpatient Services</a> prior to completing your referral. This is to ensure you have included all essential information and investigations prior to referral to triage your patient correctly.</p>\n<p>When referring to outpatients we encourage GPs to refer electronically; GP Smart Referrals makes this easy. It advises GPs of essential clinical information required in a referral, allows you to attach images to your referral and indicates current outpatient wait times in each facility.</p>\n<p>For assistance setting up on GP Smart Referrals contact your Brisbane North PHN <a href=\"{entry:14774@1:url||https://brisbanenorthphn.org.au/practice-support/primary-care-liaison-officers}\" target=\"_blank\" rel=\"noreferrer noopener\">Primary Care Liaison Officer</a>. If you don’t use GP Smart Referrals, you can also use e-referral templates using <em>Medical Objects</em> to send a referral to the Metro North HHS Central Patient Intake Unit.</p><h5><strong>Need specialist advice before making a referral?</strong><br /></h5>\n<p>There are several specialist advice services available to GPs, including the ED Specialist Advice Line (Virtual ED) and the Residential Aged Care District Assessment and Referral Service (RADAR).</p>\n<p>To find all the specialist advice options available to GPs, please visit the <a href=\"https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice\" target=\"_blank\" rel=\"noreferrer noopener\">Metro North Health website</a>.</p>',NULL,NULL,NULL),(4972,163049,1,'2021-05-19 01:39:35','2021-05-19 01:39:35','8eca1144-9cb6-4c3d-ab01-7adf2b83602d','<h5>Caboolture Hospital is entering a new and exciting era, expanding through a redevelopment project and growing the services offered to the local community.</h5>\n<p>Caboolture Hospital Surgical Services would like to introduce their specialist surgical team. It\'s important that patients are treated close to home, and the team at Caboolture Hospital encourage local GPs to refer to our specialist surgeons.</p>\n<p>Keep reading for information on the referral process or scroll down to meet the team. </p><h5><strong>The referral process</strong><br /></h5>\n<p>You and your patient can choose to direct your referral to Dr Hendahewa, as the Director of the department, if you are unsure who to send your referral to within the department.</p>\n<p>Please review the outpatient referral guidelines found under <a href=\"https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient\" target=\"_blank\" rel=\"noreferrer noopener\">Specialist Outpatient Services</a> prior to completing your referral. This is to ensure you have included all essential information and investigations prior to referral to triage your patient correctly.</p>\n<p>When referring to outpatients we encourage GPs to refer electronically; GP Smart Referrals makes this easy. It advises GPs of essential clinical information required in a referral, allows you to attach images to your referral and indicates current outpatient wait times in each facility.</p>\n<p>For assistance setting up on GP Smart Referrals contact your Brisbane North PHN <a href=\"{entry:14774@1:url||https://brisbanenorthphn.org.au/practice-support/primary-care-liaison-officers}\" target=\"_blank\" rel=\"noreferrer noopener\">Primary Care Liaison Officer</a>. If you don’t use GP Smart Referrals, you can also use e-referral templates using <em>Medical Objects</em> to send a referral to the Metro North HHS Central Patient Intake Unit.</p><h5><strong>Need specialist advice before making a referral?</strong><br /></h5>\n<p>There are several specialist advice services available to GPs, including the ED Specialist Advice Line (Virtual ED) and the Residential Aged Care District Assessment and Referral Service (RADAR).</p>\n<p>To find all the specialist advice options available to GPs, please visit the <a href=\"https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice\" target=\"_blank\" rel=\"noreferrer noopener\">Metro North Health website</a>.</p>',NULL,NULL,NULL),(4974,163084,1,'2021-05-19 01:40:44','2021-05-19 01:40:44','50b9ac41-00d1-4c85-a98c-9333e08869db','<h5>Caboolture Hospital is entering a new and exciting era, expanding through a redevelopment project and growing the services offered to the local community.</h5>\n<p>Caboolture Hospital Surgical Services would like to introduce their specialist surgical team. It\'s important that patients are treated close to home, and the team at Caboolture Hospital encourage local GPs to refer to our specialist surgeons.</p>\n<p>Keep reading for information on the referral process or scroll down to meet the team. </p><h5><strong>The referral process</strong><br /></h5>\n<p>You and your patient can choose to direct your referral to Dr Hendahewa, as the Director of the department, if you are unsure who to send your referral to within the department.</p>\n<p>Please review the outpatient referral guidelines found under <a href=\"https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient\" target=\"_blank\" rel=\"noreferrer noopener\">Specialist Outpatient Services</a> prior to completing your referral. This is to ensure you have included all essential information and investigations prior to referral to triage your patient correctly.</p>\n<p>When referring to outpatients we encourage GPs to refer electronically; GP Smart Referrals makes this easy. It advises GPs of essential clinical information required in a referral, allows you to attach images to your referral and indicates current outpatient wait times in each facility.</p>\n<p>For assistance setting up on GP Smart Referrals contact your Brisbane North PHN <a href=\"{entry:14774@1:url||https://brisbanenorthphn.org.au/practice-support/primary-care-liaison-officers}\" target=\"_blank\" rel=\"noreferrer noopener\">Primary Care Liaison Officer</a>. If you don’t use GP Smart Referrals, you can also use e-referral templates using <em>Medical Objects</em> to send a referral to the Metro North HHS Central Patient Intake Unit.</p><h5><strong>Need specialist advice before making a referral?</strong><br /></h5>\n<p>There are several specialist advice services available to GPs, including the ED Specialist Advice Line (Virtual ED) and the Residential Aged Care District Assessment and Referral Service (RADAR).</p>\n<p>To find all the specialist advice options available to GPs, please visit the <a href=\"https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice\" target=\"_blank\" rel=\"noreferrer noopener\">Metro North Health website</a>.</p>',NULL,NULL,NULL),(4975,163102,1,'2021-05-19 01:40:44','2021-05-19 01:40:44','24fd5d32-5f2c-4bf0-97a7-496ea506b086','<h5>Caboolture Hospital is entering a new and exciting era, expanding through a redevelopment project and growing the services offered to the local community.</h5>\n<p>Caboolture Hospital Surgical Services would like to introduce their specialist surgical team. It\'s important that patients are treated close to home, and the team at Caboolture Hospital encourage local GPs to refer to our specialist surgeons.</p>\n<p>Keep reading for information on the referral process or scroll down to meet the team. </p><h5><strong>The referral process</strong><br /></h5>\n<p>You and your patient can choose to direct your referral to Dr Hendahewa, as the Director of the department, if you are unsure who to send your referral to within the department.</p>\n<p>Please review the outpatient referral guidelines found under <a href=\"https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient\" target=\"_blank\" rel=\"noreferrer noopener\">Specialist Outpatient Services</a> prior to completing your referral. This is to ensure you have included all essential information and investigations prior to referral to triage your patient correctly.</p>\n<p>When referring to outpatients we encourage GPs to refer electronically; GP Smart Referrals makes this easy. It advises GPs of essential clinical information required in a referral, allows you to attach images to your referral and indicates current outpatient wait times in each facility.</p>\n<p>For assistance setting up on GP Smart Referrals contact your Brisbane North PHN <a href=\"{entry:14774@1:url||https://brisbanenorthphn.org.au/practice-support/primary-care-liaison-officers}\" target=\"_blank\" rel=\"noreferrer noopener\">Primary Care Liaison Officer</a>. If you don’t use GP Smart Referrals, you can also use e-referral templates using <em>Medical Objects</em> to send a referral to the Metro North HHS Central Patient Intake Unit.</p><h5><strong>Need specialist advice before making a referral?</strong><br /></h5>\n<p>There are several specialist advice services available to GPs, including the ED Specialist Advice Line (Virtual ED) and the Residential Aged Care District Assessment and Referral Service (RADAR).</p>\n<p>To find all the specialist advice options available to GPs, please visit the <a href=\"https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice\" target=\"_blank\" rel=\"noreferrer noopener\">Metro North Health website</a>.</p>',NULL,NULL,NULL),(4976,163120,1,'2021-05-19 01:40:52','2021-05-19 01:40:52','e8bbf270-38d5-4796-9022-363af169a072','<h5>Caboolture Hospital is entering a new and exciting era, expanding through a redevelopment project and growing the services offered to the local community.</h5>\n<p>Caboolture Hospital Surgical Services would like to introduce their specialist surgical team. It\'s important that patients are treated close to home, and the team at Caboolture Hospital encourage local GPs to refer to our specialist surgeons.</p>\n<p>Keep reading for information on the referral process or scroll down to meet the team. </p><h5><strong>The referral process</strong><br /></h5>\n<p>You and your patient can choose to direct your referral to Dr Hendahewa, as the Director of the department, if you are unsure who to send your referral to within the department.</p>\n<p>Please review the outpatient referral guidelines found under <a href=\"https://metronorth.health.qld.gov.au/specialist_service/refer-your-patient\" target=\"_blank\" rel=\"noreferrer noopener\">Specialist Outpatient Services</a> prior to completing your referral. This is to ensure you have included all essential information and investigations prior to referral to triage your patient correctly.</p>\n<p>When referring to outpatients we encourage GPs to refer electronically; GP Smart Referrals makes this easy. It advises GPs of essential clinical information required in a referral, allows you to attach images to your referral and indicates current outpatient wait times in each facility.</p>\n<p>For assistance setting up on GP Smart Referrals contact your Brisbane North PHN <a href=\"{entry:14774@1:url||https://brisbanenorthphn.org.au/practice-support/primary-care-liaison-officers}\" target=\"_blank\" rel=\"noreferrer noopener\">Primary Care Liaison Officer</a>. If you don’t use GP Smart Referrals, you can also use e-referral templates using <em>Medical Objects</em> to send a referral to the Metro North HHS Central Patient Intake Unit.</p><h5><strong>Need specialist advice before making a referral?</strong><br /></h5>\n<p>There are several specialist advice services available to GPs, including the ED Specialist Advice Line (Virtual ED) and the Residential Aged Care District Assessment and Referral Service (RADAR).</p>\n<p>To find all the specialist advice options available to GPs, please visit the <a href=\"https://metronorth.health.qld.gov.au/refer-your-patient/gpadvice\" target=\"_blank\" rel=\"noreferrer noopener\">Metro North Health website</a>.</p>',NULL,NULL,NULL);
/*!40000 ALTER TABLE `matrixcontent_newscontent` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `matrixcontent_questions`
--

LOCK TABLES `matrixcontent_questions` WRITE;
/*!40000 ALTER TABLE `matrixcontent_questions` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `matrixcontent_questions` VALUES (1,17876,1,'2021-05-31 07:10:29','2023-03-06 02:48:59','f59d5100-156a-461f-b362-fb31338196f3','My secret skill is...','...the Human Refidex—once I go somewhere, I can get home and even back there no worries. You won’t get lost with me!'),(2,17877,1,'2021-05-31 07:10:29','2023-03-06 02:48:59','edf5a041-dd30-4f74-be9e-95139d3f2f04','If I won the lotto I would...','...buy a 4WD and caravan and travel around Australia with the family for at least 12 months before thinking about anything.'),(3,17878,1,'2021-05-31 07:10:29','2023-03-06 02:48:59','3db9028d-cfbf-4922-9063-207e974cbbf6','On a Sunday afternoon you’ll find me…','...scootering along the foreshore and grabbing some fish and chips, or at a winery tasting with a picnic, or a BBQ at our place with family and friends.'),(4,17879,1,'2021-05-31 07:10:29','2023-03-06 02:48:59','b39c4226-7e58-4130-a7a2-3a2fa1f67d8a','My favourite brand from childhood was…','...Cottees. I’m a sucker for a good 80/90s jingle. My dad picks the fruit that goes to Cottees, that makes the cordial, that I like best! And that I drank every afternoon after school.'),(5,17880,1,'2021-05-31 07:10:29','2023-03-06 02:48:59','9c377be8-877a-4e6c-815c-60a3a03f5eae','My guilty pleasure is…','...Realestate.com.au—in another life I would’ve been an agent, or more likely a buyers agent.'),(6,17882,1,'2021-05-31 07:14:26','2023-03-09 04:28:33','03ee4962-734e-47fa-9c3e-87c514948584','The best project I’ve ever been part of is…','...the creation of a beautiful new boutique gin brand in the UK called Warner Edwards, distilled in Harrington with a great story behind it from which we could craft a wonderfully engaging brand. While the immersion in the market was particularly fun, (a bit like a pub crawl but targeting gin distilleries and gin bars in the Royal Borough of Kensington and Chelsea), the collaboration with a highly enthusiastic and trusting client, and the development of richly creative territories from which the final brand burst onto the market, was immensely satisfying.'),(7,17883,1,'2021-05-31 07:14:26','2023-03-09 04:28:33','a7c7ee10-e7a6-4ed2-8b1c-1f8f1f3267cc','The best part of the creative process is...','...the visual storytelling—collaborating with our wonderfully creative team, supporting them to respond to a brief with a distinctive and engaging, (and sometimes very fun), solution is brilliant to be part of.'),(8,17884,1,'2021-05-31 07:14:26','2023-03-09 04:28:33','ac36d053-d091-48d9-a0e9-67cfdf20fad2','My favourite brand from childhood is...','...Golden Tree chocolate, synonymous with mmm, mmm, mmmmaa! My little brother and I could spot those red bars with the big white star miles away! Sold on roadside market stall tables in Accra, supply was limited and quite inconsistent, as were most things post-coup (on the regular market), but when we were able to get our quivering little hands on that red bar with the white star Whhooo hooo! It could make us dance and sing! (Not that we needed much encouraging).'),(9,17885,1,'2021-05-31 07:14:26','2023-03-09 04:28:33','bb73d10f-e1ff-4b83-9a5e-28c1ccf36426','When I grow up I want to be…','...a creator and illustrator of fine and magical stories that inspire awe and wonder, the belief that anything is possible, and the irresistible desire to be kind and considerate.'),(10,17886,1,'2021-05-31 07:14:26','2023-03-09 04:28:33','9a0d26ab-b694-4e24-895d-c2cd191ea326','My spirit animal is...','...a winged moggy.'),(11,17888,1,'2021-05-31 07:17:11','2023-04-06 04:54:21','748c5332-b50f-4643-ac0c-3ca339ac6953','My secret skill is…','...knowing every lyric to every Taylor Swift song.'),(12,17889,1,'2021-05-31 07:17:11','2023-04-06 04:54:21','2668fbb6-10f9-4878-98a7-d1436245356c','I get out of bed in the morning to…','...inspire and enable people to shine their them-ness and make the world just a bit brighter.'),(13,17890,1,'2021-05-31 07:17:11','2023-04-06 04:54:21','d2169f02-2c57-4501-ac51-6c4bb50e0cf0','My poison is...','...anything peach flavoured.'),(14,17891,1,'2021-05-31 07:17:11','2023-04-06 04:54:21','6ec751f2-2a07-41ca-b1c3-38cec9c5285b','When I grow up, I want to be...','...as many different things as possible.'),(15,17892,1,'2021-05-31 07:17:11','2023-04-06 04:54:21','61b00765-6a60-414a-a7e3-be872d23319f','On a Sunday afternoon you’ll find me...','...realising I forgot to do my laundry.'),(16,17894,1,'2021-05-31 07:20:10','2023-03-09 04:39:16','6775acd2-5ea1-453c-be9a-c2d8a7076534','The best part of my job is…','...seeing the great things that the people I work with create—day-in and day-out. I work with a group of intelligent, passionate, talented people and the work they do is beautiful.'),(17,17895,1,'2021-05-31 07:20:10','2023-03-09 04:39:16','b3ff4369-420e-43ef-9fa5-faca6c1c6507','I’ve worked in...','...most states in Australia, and overseas in New Zealand, Singapore, Indonesia, Thailand, Malaysia, China, Hong Kong, The Philippines, India, England, Ireland, France, The Netherlands, Scotland, the US, and travelled to many other countries along the way.'),(18,17896,1,'2021-05-31 07:20:10','2023-03-09 04:39:16','9b033d85-b585-42b4-9cf3-22aa2ef91718','On a Sunday afternoon you’ll find me…','...in the garden, in the shed or in the kitchen—there’s always a project that needs doing, vegetables that need tending, fruit that needs dehydrating or salmon that needs smoking.'),(19,17897,1,'2021-05-31 07:20:10','2023-03-09 04:39:16','225712a8-bb67-41eb-bdbf-0b96ca08cf45','My kids are…','...my inspiration: Sidonie (a nurse) and Maginnis (an occupational therapist).'),(20,17898,1,'2021-05-31 07:20:10','2023-03-09 04:39:16','bc608ee8-80c5-4cd2-b2dd-81b4090208f1','The best movie ever made...','...probably started life as an even more brilliant book.'),(21,17900,1,'2021-06-01 06:34:23','2023-03-09 04:28:28','f7e51ab2-83c0-4d78-87d0-6c6ab23154a5','The best part of the creative process is when...','...everyone on the project team has a deep understanding of our project and our client. I love the curiosity that everyone brings to the table to ask questions that no one else has thought of and that gives us the insight we need to develop not only the right response but something unique.'),(22,17901,1,'2021-06-01 06:34:23','2023-03-09 04:28:28','898bec24-9b79-4d38-9763-c83dfc0861f2','I\'ve worked in...','...many different places. I’ve been chasing the sun all my life—London > Sydney > Brisbane. I’m warm now.'),(23,17902,1,'2021-06-01 06:34:23','2023-03-09 04:28:28','055f6d2d-1878-4714-9843-81dca3352342','On a Sunday afternoon you\'ll find me...','...on a big walk in the bush or at the beach with my partner and dogs.'),(24,17903,1,'2021-06-01 06:34:23','2023-03-09 04:28:28','a68c4165-2f6d-47aa-bd33-fbb7f0f1b259','The best place in the world is…','...I’m not sure I’ve found the best place yet but the landscape high in the Indian Himalayas was the most breathtaking sight I’ve ever seen. Getting there and crossing the K2 summit in a truck was the scariest!'),(25,17904,1,'2021-06-01 06:34:23','2023-03-09 04:28:28','e9aca596-2bf3-457c-9aaa-a3cc944bb4bd','I drive an...','...electric bike and I love it. Pretend exercise, but out in the fresh air, zipping through the traffic and 10 minutes to work. Best way to get around.'),(26,17905,1,'2021-06-01 06:40:02','2022-10-24 23:08:02','8f36c786-0dfe-49b1-8e9e-6decb959a813','The best part of the creative process is when...','...all the pieces of the puzzle align to create a cohesive system that delivers great outcomes for both clients and users. Nothing gives me more satisfaction than seeing a client fully engage with a system I have built for them.'),(27,17906,1,'2021-06-01 06:40:02','2022-10-24 23:08:02','22b9a8ca-d3ec-43e2-b4c0-01425a3ed647','I have a…','...Bachelor of Music—surprisingly, many web developers have a background in music.'),(28,17907,1,'2021-06-01 06:40:02','2022-10-24 23:08:02','5575f89d-3914-4a31-96fb-12391ec8b4a6','My kids are…','...Theo and Elliot—so full of life and energy, which is fun and exhausting.'),(29,17908,1,'2021-06-01 06:40:02','2022-10-24 23:08:02','2fc1093c-9f16-4ee0-9f6e-2802c7815fc6','My poison is…','...a really hoppy craft beer or a nice G&T.'),(30,17909,1,'2021-06-01 06:40:02','2022-10-24 23:08:02','0291e7d8-585a-4204-8164-cd8e9bee1f91','My pet is…','...a beautiful golden retriever called Milly.'),(41,17922,1,'2021-06-01 06:59:14','2023-03-09 04:28:32','e95a9030-2885-4ae8-abdb-1e685074b555','The best project I have ever been part of is...','...when a little local theatre company decided to step out of its safe comfort zone, spread its wings, be brave… and fly. I was part of a team that helped a little community funded radio station receive its commercial broadcasting licence.'),(42,17923,1,'2021-06-01 06:59:14','2023-03-09 04:28:32','2c4798e4-146a-4797-adc9-0c8b878a25b5','The best part of the creative process is when...','...you\'re hearing someone’s (often crazy) ideas and seeing it through from inception to reality—the good, the bad, the wins and the fails. I’m in awe of creative people.'),(43,17924,1,'2021-06-01 06:59:14','2023-03-09 04:28:32','1f295c39-9ced-4089-83bc-9737922278ad','My secret skill is...','...weightlifting.'),(44,17925,1,'2021-06-01 06:59:14','2023-03-09 04:28:32','71327cd3-cbcc-4144-a8b1-c7940fafc5eb','On a Sunday afternoon you’ll find me...','...binge-watching Outlander for the gazilionth time while I do my ironing with a moisture treatment in my hair. Too much information?'),(45,17926,1,'2021-06-01 06:59:14','2023-03-09 04:28:32','28b90683-e853-4440-a6e5-8daf2b3b5830','When I grow up I want to be a...','...curly girl hairdresser.'),(46,17935,1,'2021-06-01 07:03:46','2023-03-09 04:28:29','c700ebd8-8359-4dd1-b7ea-7996c8eaf678','The best part of the creative process is when...','...everything comes together in that magic (often last minute) moment.'),(47,17936,1,'2021-06-01 07:03:46','2023-03-09 04:28:29','4db6af2d-df75-462a-ad96-3c3667b0cc89','I get out of bed in the morning to...','...work with extremely talented people and be a part of a great team that does work that makes me immensely proud.'),(48,17937,1,'2021-06-01 07:03:46','2023-03-09 04:28:29','38ec82a5-0239-4df2-a9a8-bf221e380eff','My favourite brand from childhood is...','...Copha! I don’t know why because I know my health freak mum wouldn’t have bought it but I remember passing it in Woolies and thinking that little weird cupcake man was fun.'),(49,17938,1,'2021-06-01 07:03:46','2023-03-09 04:28:29','b31f343f-4b7a-4e9e-9fa4-40165dffc617','My guilty pleasure is…','...watching any of the Real Housewives while sewing. Nothing like working away to the sounds of drunk, rich women fighting.'),(50,17939,1,'2021-06-01 07:03:46','2023-03-09 04:28:29','e75a299a-f368-4bbe-9741-7ce4c28eaeae','My pet is...','...a budgie called Patsy whom I love more than anything. She has so much personality and brings me so much joy. My workmates will confirm I talk about her more than they talk about their human children.'),(51,17942,1,'2021-06-01 07:07:28','2023-03-09 04:28:33','4b3edd3b-7eba-4dfc-a8c5-06edbe349c9a','The best project I’ve ever been part of is…','...an international campaign for an education group that involved taking Steve Waugh to cricket-mad India to shoot TV commercials. A fun, crazy and sometime scary project and a discovery of how India is truly one of the most amazing countries in the world.'),(52,17943,1,'2021-06-01 07:07:28','2023-03-09 04:28:33','db495b7a-58bc-483f-befa-7b55869cb284','I\'ve worked in...','...various advertising agencies in Brisbane, a large petroleum company in London, a publishing house in Hong Kong and multinational agency in Guam (look it up in an atlas, kids).'),(53,17944,1,'2021-06-01 07:07:28','2023-03-09 04:28:33','c1d0a6d0-cd6a-423f-b2d0-9a50b335f3bd','The best book ever written is…','...A Little Life by Hanya Yanagihara. Beautifully written, compellingly powerful and so torturous in parts that I don’t think they can make a movie out of it and ruin the book forever.'),(54,17945,1,'2021-06-01 07:07:28','2023-03-09 04:28:33','e5aabd77-0e1c-4b0a-a516-6829f88bc558','My pets are...','...a crazy, rambunctious 40kg Irish Wolfhound who thinks she’s a lap dog and an older 10kg Cavoodle who is in constant denial that we got a second dog.'),(55,17946,1,'2021-06-01 07:07:28','2023-03-09 04:28:33','9351c37d-fa70-47c4-8610-33f0deebfdef','When I grow up, I want to be a...','...professional golfer on the Seniors Tour. Unfortunately my talent for the game does not match my passion for it.'),(56,17959,1,'2021-06-01 07:14:11','2021-06-01 07:14:11','af479f60-b849-4cf2-a031-f8c411aa75d1','I get out of bed in the morning to….','start my day with a 45min walk around the Oxenford Lake, returning to my home office feeling ready to take on the day and work with an incredibly driven lady in Suzanne Oxford.  She and her husband Scott run a very professional agency with an amazing, creative team at NWO.'),(57,17960,1,'2021-06-01 07:14:12','2021-06-01 07:14:12','e0b50ac4-c92d-4bf7-8d80-e58328765287','I’ve worked in…','the UK, NZ, Fiji and Australia (Qld & NSW) both for companies (across a broad spectrum of industries) and now as a Virtual Assistant—my favourite place to live and work being Queensland. (I have worked in Townsville, Brisbane and Gold Coast).'),(58,17961,1,'2021-06-01 07:14:12','2021-06-01 07:14:12','3c2b5b44-01e3-42ae-92cf-fceabdec8320','My favourite brand from childhood is …','PG TipsTea as the ads were so creative for their time, featuring chimpanzees.  They were incredibly clever, funny and entertaining – they changed them up from being 2 ladies drinking tea to furniture removalists – amazing!!  The box had PG in large green print – they also incorporated bird picture cards with the teabags which I used to collect and use for my Nature Study lesson…'),(59,17962,1,'2021-06-01 07:14:12','2021-06-01 07:14:12','9cf63877-33e5-4bca-b6f9-a04365bdb84b','I once met ...','a TV host in the UK by the name of Roy Walker when I was on a TV show  called Catchphrase and won GBP750 (he was well known in the UK) – it was so exciting and I loved the experience so much, I signed up with a couple of agencies here on the SC and GC as an extra (sadly I never got a chance to perform).  I did do an acting direction class though with one of the agencies – that was fun and not as easy as you think.'),(60,17963,1,'2021-06-01 07:14:12','2021-06-01 07:14:12','c75be8fc-fa15-4c81-802f-d4f9cb65f8f8','If I won the lotto I would ...','start a Charity (I already have the name picked out) for children with curable disabilities.  This came about from seeing a beautiful, happy little girl with feet that turned in on themselves, she could not walk.  Her family could not afford the treatment. It was heartbreaking, I would love to be able to help families pay for treatments for similar cases.'),(61,17972,1,'2021-06-01 07:19:49','2023-03-09 04:28:45','c4f4fbee-3e62-443a-84ad-30d04dfedef9','The best part of the creative process is when…','...we pitch the concept and everybody in the room knows they’ve just witnessed something special—some magic has taken place and the brief has come to life, thanks to the work my team has done.'),(62,17973,1,'2021-06-01 07:19:49','2023-03-09 04:28:45','d5b46420-fabd-49b6-bf11-025701221b80','I get out of bed in the morning to','...do what I and the agency do best: making a difference in people’s lives through creativity.'),(63,17974,1,'2021-06-01 07:19:49','2023-03-09 04:28:45','10052c91-8487-4678-8bf3-94e5b3c5b498','My secret skill is','...singing!'),(64,17975,1,'2021-06-01 07:19:49','2023-03-09 04:28:45','344d1863-5b1d-4d09-9bd2-7413bd4fdf41','My guilty pleasure is','...hot yoga.'),(65,17976,1,'2021-06-01 07:19:49','2023-03-09 04:28:45','8853c1af-be5f-455a-a8cd-e068100c412a','When I grow up, I want to be a','...feature film director.'),(66,17991,1,'2021-06-02 23:41:07','2023-03-09 04:28:36','a0af96fe-5671-4439-a3dd-c19b5d5a73de','The best part of the creative process is…','...during an insights workshop, when a client begins making connections and solving problems they haven’t been able to conquer before. Nothing comes close to this feeling—it’s the ultimate partnership.'),(67,17992,1,'2021-06-02 23:41:07','2023-03-09 04:28:36','0b4a7db5-206d-478a-92f6-af031d1d15b7','My secret skills are …','...playing piano and writing murder novels. They’re my happy places.'),(68,17993,1,'2021-06-02 23:41:07','2023-03-09 04:28:36','3a231afd-cbf4-40ed-9051-4a9cd84902d1','My poison is …','...cyanide. Seriously—one of my characters is about to die from it.'),(69,17994,1,'2021-06-02 23:41:07','2023-03-09 04:28:36','732e21b0-d455-45f1-80f3-47e3bff5ba2b','I get out of bed in the morning to…','...make a meaningful difference my team, our clients and their customers. It’s what I live (and work) for.'),(70,17995,1,'2021-06-02 23:41:07','2023-03-09 04:28:36','a978f492-b943-4625-a828-205c55c62b91','My spirit animal is …','...Hazel, our work dog and Director of People and Culture. She eats what she wants, sleeps in meetings and makes everyone smile just by walking in the room.'),(71,17997,1,'2021-06-02 23:43:43','2023-03-09 04:28:37','fe924814-dee0-4820-bc8d-0cc021d1dd89','I have a…','...Bachelor of Business, majoring in marketing and advertising.'),(72,17998,1,'2021-06-02 23:43:43','2023-03-09 04:28:37','a5118aeb-8bfa-4cf5-a341-ccbdaf769d86','The best part of a project is when…','...strategy, creative and media all play nicely together to drive genuine, positive behaviour change.'),(73,17999,1,'2021-06-02 23:43:43','2023-03-09 04:28:37','b4c9b693-62be-4066-a3c2-332ff135b9e4','My guilty pleasure is…','...collecting sneakers and watching re-runs of Top Gear.'),(74,18000,1,'2021-06-02 23:43:43','2023-03-09 04:28:37','f28ab37f-de1c-493b-8650-d8104fc38d2b','My poison is…','...pale ale and bubble tea (just not at the same time).'),(75,18001,1,'2021-06-02 23:43:43','2023-03-09 04:28:37','6ffe4596-fe7b-44e4-955e-c148dadd0171','On Sunday afternoon you will find me…','...in the kitchen roasting/frying/steaming/slow-cooking some description of animal part with the footy on in the background.'),(76,38149,1,'2021-08-27 05:31:56','2023-03-09 04:28:32','43a36cb4-fa81-4f86-81c2-f55134004b88','The best project I’ve ever been part of is…','...when I was a volunteer brand advocate for The Thompson Method Breastfeeding Program. It was truly amazing to see how mothers from around the world are willing to help each other (with breastfeeding) and how the volunteers (whom are all unpaid) would be willing to dedicate numerous hours/late nights/training to help women on this program. Super inspiring.'),(77,38150,1,'2021-08-27 05:31:56','2023-03-09 04:28:32','95605503-a448-4211-9348-19c8e4430510','The best part of the project process is when...','...you receive one-worded emails from clients: ‘Approved’.'),(78,38151,1,'2021-08-27 05:31:56','2023-03-09 04:28:32','f2d6244f-8946-4f7b-99ca-7e8b95658bde','My guilty pleasure is…','...when the clock strikes 9.30pm (kids all asleep): Korean drama + headphones on + Haagan Dazs ice cream.'),(79,38152,1,'2021-08-27 05:31:56','2023-03-09 04:28:32','a77f3b53-8792-42d5-abe9-671e0c4d6045','The best movie ever made is...','...Zoolander.'),(80,38153,1,'2021-08-27 05:31:56','2023-03-09 04:28:32','df7eb223-8260-4265-9312-74cc666b6036','My secret skill is...','...my unintentionally quiet cough. Some people find it cute. My hubby thinks I’m choking.'),(81,97260,1,'2022-01-20 03:43:01','2023-03-09 04:28:33','07bfe9d4-ce02-46e2-9d7b-544ed8be2829','The best project I’ve ever been part of is…','...when I went on a road trip around rural NSW teaching photography to female school students. I loved watching their passion and sense of adventure exploring the creativity within themselves. They were so much fun to work with.'),(82,97261,1,'2022-01-20 03:43:01','2023-03-09 04:28:33','6bf2be81-a04a-4fb5-aac1-71f563a30a8d','I have an…','...honour\'s degree in Fine Arts.'),(83,97262,1,'2022-01-20 03:43:02','2023-03-09 04:28:33','889d5c12-70c3-41a6-9992-dd528e3ab573','I get out of bed in the morning to…','...get things done. I find crossing items off my mental to-do list ohhhh so satisfying.'),(84,97263,1,'2022-01-20 03:43:02','2023-03-09 04:28:33','7821ec1e-2f74-4ff7-84cc-03cf41ec7c50','My secret skill is…','...playing the drums. And screaming, but in a band on a stage, not into my pillow.'),(85,97264,1,'2022-01-20 03:43:02','2023-03-09 04:28:33','a897ad49-5ec9-479c-b536-0c6103e65408','On a Sunday afternoon you’ll find me…','...gardening. I love getting my hands dirty and growing things I can eat. Plus being productive and getting exercise at the same time makes me feel warm inside.'),(86,141617,1,'2022-07-10 23:07:09','2023-03-09 04:28:28','c09340d7-72d0-4257-a4f0-57692b7034a3','The best part of the creative process is…','...when a client\'s brief is based on sound customer insight and strategy. Then, I know the client is past thinking marketing is flyers and social media posts. Instead, they realise the creative will change their world (one campaign at a time).'),(87,141618,1,'2022-07-10 23:07:09','2023-03-09 04:28:28','dce96162-1571-4056-b692-1220c519a33b','My spirit animal is…','...our cavoodle Henry—who, after 50+ years of thinking I’m a cat person, convinced me otherwise.'),(88,141619,1,'2022-07-10 23:07:09','2023-03-09 04:28:28','940fca74-bacb-4ccf-b05e-164165ec13f6','The best part of my job is…','...the feeling of giving back and using my experiences, both good and bad, to help and support others facing similar challenges.'),(89,141620,1,'2022-07-10 23:07:09','2023-03-09 04:28:28','4a548bbe-478f-4d33-8e4d-d69dd3720bce','My guilty pleasure is…','...hot chips, both mine and other people’s—hence the nickname ‘Seagull’.'),(90,141621,1,'2022-07-10 23:07:09','2023-03-09 04:28:28','cd771fc2-0f90-4024-887a-cfc22145cc5e','My special skill is…','...portrait art.'),(91,141915,1,'2022-08-08 23:41:59','2023-03-09 04:28:37','ef873302-8fe5-4482-9d6b-c3c2f7552286','The best part of the project process is…','...the strategic conceptualisation phase, when the team looks at the problems we\'re facing with a holistic lens and applies creative thinking to develop solutions that really work.'),(92,141916,1,'2022-08-08 23:41:59','2023-03-09 04:28:37','4a35c5b7-9de6-4670-a8b0-32ef204cab2d','The best project I’ve ever been part of is…','...the development of New Zealand\'s largest social mental health awareness campaign.'),(93,141917,1,'2022-08-08 23:41:59','2023-03-09 04:28:37','25c96bd8-afc2-4eeb-835b-744a8a0a5388','On a Sunday afternoon you’ll find me…','...sitting by my plants, gardening with a coffee and a book.'),(94,141918,1,'2022-08-08 23:41:59','2023-03-09 04:28:37','ee97d2ca-60b2-447c-bc75-3e69924bc70c','My uniform is…','...black jeans, a blank tee-shirt and a blazer.'),(95,141919,1,'2022-08-08 23:41:59','2023-03-09 04:28:37','15670e8f-2e34-4990-bbe6-a843af054451','I once met…','...the tour manager for the Rolling Stones as well as The Killers and their crew.'),(96,142040,1,'2022-08-25 01:33:44','2023-03-09 04:28:28','116084ee-e748-4267-aa4c-f1cbd8c8cde5','I have a…','…Bachelor of Barketing. Except you’ll have to take my word for it because I ate the certificate.'),(97,142642,1,'2022-09-29 01:53:47','2023-03-09 04:28:28','91f8adba-7ae1-4c60-82c5-f392a1f01bd9','I get out of bed in the morning to…','…dig through all of the office trash bins.'),(98,142643,1,'2022-09-29 01:53:47','2023-03-09 04:28:28','2b8596cf-01a3-4f0f-befb-15dbb7c4a4b7','My pet is…','…Scott Oxford. But don’t tell him.'),(99,142644,1,'2022-09-29 01:53:47','2023-03-09 04:28:28','4d29c224-c7b8-4edf-935e-8968452212e5','The best place in the world is…','…the patch of floor in the boardroom where I can lie with my legs against the wall and listen to important meetings.'),(100,142645,1,'2022-09-29 01:53:47','2023-03-09 04:28:28','0e5d1cc3-ec5c-43a2-a73e-b1d8f1122f98','My poison is…','…non-existent. I can and will eat anything and everything.'),(101,142947,1,'2022-11-14 04:13:39','2023-03-09 04:28:32','0a8689ef-cf71-4521-be1c-f7be22f4ba20','On a Sunday afternoon, you\'ll find me...','...watching the world drift by, Balter beer in hand, from the comfort of the hammock (two young kids = this is a dream scenario rather than a frequent IRL one).'),(102,142948,1,'2022-11-14 04:13:39','2023-03-09 04:28:32','4e2990ec-2609-40f5-ba27-c695cb2da244','If I won the lotto I would...','...pay off the house. Pack it in. Travel the world as far as the coins will catapult us.'),(103,142949,1,'2022-11-14 04:13:39','2023-03-09 04:28:32','56914c35-7445-41c7-b017-f2fc571f772a','The best place in the world is...','...a close tie between Reykjavík, Iceland and Santorini, Greece. For a bit of the cold and a bit of the sun. Both surreal, hyper-real, otherworldly places that felt like no other place on earth, and that I\'d return to in a heartbeat.'),(104,142950,1,'2022-11-14 04:13:39','2023-03-09 04:28:32','60f188e3-c825-42cb-8ca1-7b19fffdbc5a','The best part of the creative process is when...','...the buzz of collaboration happens. It\'s where brilliant and creative minds collide and magic is made.'),(105,142951,1,'2022-11-14 04:13:39','2023-03-09 04:28:32','3b6491fb-abbb-4cd9-b0e0-bbdc02dff102','My guilty pleasure is...','...I might be a little partial to a loud dad shirt or two.');
/*!40000 ALTER TABLE `matrixcontent_questions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `matrixcontent_textbuilder`
--

LOCK TABLES `matrixcontent_textbuilder` WRITE;
/*!40000 ALTER TABLE `matrixcontent_textbuilder` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `matrixcontent_textbuilder` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `matrixcontent_videos`
--

LOCK TABLES `matrixcontent_videos` WRITE;
/*!40000 ALTER TABLE `matrixcontent_videos` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `matrixcontent_videos` 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','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','0f8b0de6-64e6-40a4-9557-77c2c6edb511'),(2,'craft','m150403_183908_migrations_table_changes','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','2597e500-bc7d-45f1-9c82-70c024a05c25'),(3,'craft','m150403_184247_plugins_table_changes','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','d3985251-aa03-4f9f-81f1-4057be657af0'),(4,'craft','m150403_184533_field_version','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','cea16c88-06d8-4342-8c31-84342c496f5d'),(5,'craft','m150403_184729_type_columns','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','6c4ff6d0-309c-4f0e-a53a-1840f612c94e'),(6,'craft','m150403_185142_volumes','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','62cac510-05ed-46fc-b058-179ff66b35e4'),(7,'craft','m150428_231346_userpreferences','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','c859dbf9-dfd9-446a-a831-04233f64adbe'),(8,'craft','m150519_150900_fieldversion_conversion','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','834e06cd-d9b0-48f5-bd1b-780d1d0b5834'),(9,'craft','m150617_213829_update_email_settings','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','0a478675-bac0-4d3a-802f-0bc97a46cdae'),(10,'craft','m150721_124739_templatecachequeries','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','584a3d54-1a88-4aaa-911c-6acd79b1326f'),(11,'craft','m150724_140822_adjust_quality_settings','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','4ef96ef8-114f-47af-8144-b0bb192021ff'),(12,'craft','m150815_133521_last_login_attempt_ip','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','9273386f-7e3f-43fd-b9b1-91b420bec1ba'),(13,'craft','m151002_095935_volume_cache_settings','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','02f63300-06b7-416f-8ff3-d71ed484bce5'),(14,'craft','m151005_142750_volume_s3_storage_settings','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','0afa120f-7188-42cb-b1cc-176366617ff1'),(15,'craft','m151016_133600_delete_asset_thumbnails','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','50061d35-6436-4c9f-ad2e-62549025981e'),(16,'craft','m151209_000000_move_logo','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','db71c7f4-cb30-4533-9159-c9d612869fa2'),(17,'craft','m151211_000000_rename_fileId_to_assetId','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','250587c7-cf7a-4928-b650-e829c0c348f4'),(18,'craft','m151215_000000_rename_asset_permissions','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','be9e3ea5-d69a-4769-b234-9e58eba50122'),(19,'craft','m160707_000001_rename_richtext_assetsource_setting','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','21621994-9dc4-49b1-ab62-ea64b115681d'),(20,'craft','m160708_185142_volume_hasUrls_setting','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','704a30db-1374-4b8e-b5b6-fa84711a8c32'),(21,'craft','m160714_000000_increase_max_asset_filesize','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','b6d47b33-0ac9-4ce2-aa04-9c951d04fd1b'),(22,'craft','m160727_194637_column_cleanup','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','d3f3c7c0-852f-4746-b1ff-bc127233f73e'),(23,'craft','m160804_110002_userphotos_to_assets','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','06a2e35d-59ab-47a7-bae8-8ca702204807'),(24,'craft','m160807_144858_sites','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','23c5001a-2b6b-49b2-8219-a0ddffd995d4'),(25,'craft','m160829_000000_pending_user_content_cleanup','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','3e728372-f1bb-4436-aac9-d09de82791be'),(26,'craft','m160830_000000_asset_index_uri_increase','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','af061713-e01c-4a93-9775-2aed9d074ac6'),(27,'craft','m160912_230520_require_entry_type_id','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','25f1e1b5-5678-41e1-bf69-7f618e49bc7d'),(28,'craft','m160913_134730_require_matrix_block_type_id','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','124956aa-2c12-4ab2-b180-161bb355dcd7'),(29,'craft','m160920_174553_matrixblocks_owner_site_id_nullable','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','d50d7366-b71d-4f49-9a45-985261d151ce'),(30,'craft','m160920_231045_usergroup_handle_title_unique','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','7a3a1844-537a-40ba-af70-dc1d6cacb387'),(31,'craft','m160925_113941_route_uri_parts','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','67e9306a-f6ee-40d4-a8a0-b12b0c4600fc'),(32,'craft','m161006_205918_schemaVersion_not_null','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','90735934-52d5-4100-adb3-ede957291936'),(33,'craft','m161007_130653_update_email_settings','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','de5dedd0-c7d4-4a6b-aa63-46d10272b62c'),(34,'craft','m161013_175052_newParentId','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','1cede838-5d08-482f-abf0-8b9aad622364'),(35,'craft','m161021_102916_fix_recent_entries_widgets','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','fe595b4a-9b27-4284-b31b-79ea021d5a43'),(36,'craft','m161021_182140_rename_get_help_widget','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','4891f38d-b30a-4a62-a777-751bbd3b24ea'),(37,'craft','m161025_000000_fix_char_columns','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','3c857437-b39c-461c-bbe1-2db72f991cc5'),(38,'craft','m161029_124145_email_message_languages','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','edadbebc-1601-4421-8c1b-89332011cd9d'),(39,'craft','m161108_000000_new_version_format','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','6f773c7b-c41b-46dc-9580-f0b435928a0a'),(40,'craft','m161109_000000_index_shuffle','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','f2c7bb24-913d-4093-9a17-c439bd535aba'),(41,'craft','m161122_185500_no_craft_app','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','b8903c3b-631a-44d5-b70b-44fb3dee34b5'),(42,'craft','m161125_150752_clear_urlmanager_cache','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','779466fa-6e44-4470-9dc3-d3d451b8ba2a'),(43,'craft','m161220_000000_volumes_hasurl_notnull','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','939b64cb-266d-41dc-86f6-d697aec96e5f'),(44,'craft','m170114_161144_udates_permission','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','ba22aaef-c09a-41e0-89c5-b527f797417a'),(45,'craft','m170120_000000_schema_cleanup','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','c697fcc2-9bed-42b3-9b83-74551fe53ef7'),(46,'craft','m170126_000000_assets_focal_point','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','278316b8-c6d2-4b60-8935-6caa2b3c5491'),(47,'craft','m170206_142126_system_name','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','d96c4221-4194-4a2d-b63f-106eabbe5619'),(48,'craft','m170217_044740_category_branch_limits','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','f3c4bdbd-1780-4f94-9ee0-c8d8cb84e8dc'),(49,'craft','m170217_120224_asset_indexing_columns','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','be9ecc77-3985-4e78-a9f5-220e250e2ff9'),(50,'craft','m170223_224012_plain_text_settings','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','8427e5df-9e62-4d81-ad76-9c171cdf51f0'),(51,'craft','m170227_120814_focal_point_percentage','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','2f5b5892-2899-4cb2-a293-aa70a8f7d994'),(52,'craft','m170228_171113_system_messages','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','7aa9664d-74d8-44ad-9112-079ee9f5f8b2'),(53,'craft','m170303_140500_asset_field_source_settings','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','0736d63c-a22d-4ee8-80bb-6f2d0ead4134'),(54,'craft','m170306_150500_asset_temporary_uploads','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','019ad0d2-0a4f-4270-93ec-d68f13e4758c'),(55,'craft','m170523_190652_element_field_layout_ids','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','98ccd0bd-b817-41f8-9907-d5010078b747'),(56,'craft','m170621_195237_format_plugin_handles','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','5d12ef12-1a12-4ce9-af6a-308da5937abd'),(57,'craft','m170630_161027_deprecation_line_nullable','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','cbf8093f-62ce-4fd0-88ce-0c6bdeb075fc'),(58,'craft','m170630_161028_deprecation_changes','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','23adec9f-0d7d-4000-a25a-ccc2631839cf'),(59,'craft','m170703_181539_plugins_table_tweaks','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','1c8440f3-c50a-4772-ae5c-666893a1720b'),(60,'craft','m170704_134916_sites_tables','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','2e6acb9c-0773-41a4-8e5f-5071322c7340'),(61,'craft','m170706_183216_rename_sequences','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','8dafeb13-edd7-47af-95e1-b299df662359'),(62,'craft','m170707_094758_delete_compiled_traits','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','2a3c563e-7142-4d45-bd56-7ea5759b56db'),(63,'craft','m170731_190138_drop_asset_packagist','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','0182043a-6375-4859-830a-8024540466d2'),(64,'craft','m170810_201318_create_queue_table','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','01cf34a1-4706-4b15-bb7b-7cf9377ac54a'),(65,'craft','m170903_192801_longblob_for_queue_jobs','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','30314449-c494-423e-9090-9b322dcd45d2'),(66,'craft','m170914_204621_asset_cache_shuffle','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','cffceef2-c893-46ac-a36b-d7fb27d03109'),(67,'craft','m171011_214115_site_groups','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','def94342-a7e8-41c5-a2c1-3721f38a44c7'),(68,'craft','m171012_151440_primary_site','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','c740935a-86bb-432b-ac02-e5c062573664'),(69,'craft','m171013_142500_transform_interlace','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','81c042e1-08dd-4648-a736-646d2c0c28bb'),(70,'craft','m171016_092553_drop_position_select','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','68b620bc-c777-49ec-9fde-c2d435cdbb0f'),(71,'craft','m171016_221244_less_strict_translation_method','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','0dc89e41-61a8-40a3-93f2-f7b5e60d074b'),(72,'craft','m171107_000000_assign_group_permissions','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','482d5133-8b26-4d05-9537-6b68ac40891c'),(73,'craft','m171117_000001_templatecache_index_tune','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','9e721a1d-1791-4920-b8b5-12b9ee1e2bf6'),(74,'craft','m171126_105927_disabled_plugins','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','c8ff79f8-3b02-46c2-a9a1-0255f69f113d'),(75,'craft','m171130_214407_craftidtokens_table','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','679e3645-e4c4-4c82-bced-e978add567c7'),(76,'craft','m171202_004225_update_email_settings','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','876b14c4-5f51-4f57-bf6f-2606dc040a03'),(77,'craft','m171204_000001_templatecache_index_tune_deux','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','4cfd39ce-1dd2-4fbd-9b5f-b40c133d7340'),(78,'craft','m171205_130908_remove_craftidtokens_refreshtoken_column','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','594ac3f4-242e-4f15-989a-1f485d3c5a49'),(79,'craft','m171218_143135_longtext_query_column','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','b1178226-c7c0-438e-a27e-eb839f2eef82'),(80,'craft','m171231_055546_environment_variables_to_aliases','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','1c231088-fd67-42f5-8f8c-bc24743ca76e'),(81,'craft','m180113_153740_drop_users_archived_column','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','69dc8f7b-9140-4243-bd38-ab2ddd537632'),(82,'craft','m180122_213433_propagate_entries_setting','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','b1b5413d-c982-4967-9f36-0dac3750438f'),(83,'craft','m180124_230459_fix_propagate_entries_values','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','5264a31e-fbae-45c4-a467-68b72c8f3860'),(84,'craft','m180128_235202_set_tag_slugs','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','edf55d24-d2b0-40ae-aaf7-aa4d423192b6'),(85,'craft','m180202_185551_fix_focal_points','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','372d37a3-2916-4291-90a6-7abcf4f6f73d'),(86,'craft','m180217_172123_tiny_ints','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','f49d6e9b-dbdc-4de0-a134-2f7e36eb2242'),(87,'craft','m180321_233505_small_ints','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','3d345986-9086-4b29-8ace-0b91e5e173df'),(88,'craft','m180404_182320_edition_changes','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','fcd09c12-55d6-40fc-a3a1-8779d968bf56'),(89,'craft','m180411_102218_fix_db_routes','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','dfdd72e7-c97b-4703-8bc3-9c1051776f57'),(90,'craft','m180416_205628_resourcepaths_table','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','80a9a7e7-cf39-4c20-b90e-aaa1a8585edc'),(91,'craft','m180418_205713_widget_cleanup','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','242ff5f4-98a7-47c4-b580-ca21c23b6c5d'),(92,'craft','m180425_203349_searchable_fields','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','db11ee43-6492-47fb-8db1-0c69c3df6daa'),(93,'craft','m180516_153000_uids_in_field_settings','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','008fce72-7bec-4ed6-96d8-cd761cb4d08f'),(94,'craft','m180517_173000_user_photo_volume_to_uid','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','7afbbe77-4bad-46a6-9fa1-187346b39dde'),(95,'craft','m180518_173000_permissions_to_uid','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','dbc2bd2b-65e6-43d3-b10b-657f70582c05'),(96,'craft','m180520_173000_matrix_context_to_uids','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','832d3323-df8b-42a1-af4f-040c2dd1bb18'),(97,'craft','m180521_172900_project_config_table','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','976fc1fa-ac5f-4bfe-b0a6-7afa0e0ee400'),(98,'craft','m180521_173000_initial_yml_and_snapshot','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','dca5fe3b-cbc7-4272-b4f2-fd8f596624dd'),(99,'craft','m180731_162030_soft_delete_sites','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','6ef221bf-27c9-4068-9f47-de27edaa1531'),(100,'craft','m180810_214427_soft_delete_field_layouts','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','434d0fbc-ce13-4f30-8152-1e533231e7c4'),(101,'craft','m180810_214439_soft_delete_elements','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','6416f04a-06f1-4016-afc0-bd98f9ab7a43'),(102,'craft','m180824_193422_case_sensitivity_fixes','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','911fa2a3-5ff0-4a47-a61e-57f14ca64a69'),(103,'craft','m180901_151639_fix_matrixcontent_tables','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','a1718699-180c-4b38-b291-a14973fbe8b8'),(104,'craft','m180904_112109_permission_changes','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','fdf38c79-3d73-451f-a98d-754fea7a7e5f'),(105,'craft','m180910_142030_soft_delete_sitegroups','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','c814fb1e-b3d7-4c25-9821-f48b3e2c53e4'),(106,'craft','m181011_160000_soft_delete_asset_support','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','02c2660f-03b0-4322-83f9-510f536072d6'),(107,'craft','m181016_183648_set_default_user_settings','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','219b7c3f-ddd2-4d68-9092-f668dd16a8fb'),(108,'craft','m181017_225222_system_config_settings','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','e2d12fe3-087a-4cae-8232-3ca88654a663'),(109,'craft','m181018_222343_drop_userpermissions_from_config','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','3ef25022-186c-42ed-ad7c-d200bccc198f'),(110,'craft','m181029_130000_add_transforms_routes_to_config','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','7619ab14-46c3-498f-a433-fc55bea87d08'),(111,'craft','m181112_203955_sequences_table','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','9af7dcca-f44f-4ed5-a75a-8d80625e4a31'),(112,'craft','m181121_001712_cleanup_field_configs','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','7f038ff8-a31d-4946-915c-afff4bf1c7ec'),(113,'craft','m181128_193942_fix_project_config','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','814a35d4-17c9-4a02-9ab6-158a55ab2b41'),(114,'craft','m181130_143040_fix_schema_version','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','c96d2019-84d1-47be-a7e2-a28a5921f15b'),(115,'craft','m181211_143040_fix_entry_type_uids','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','ceb31daa-30b0-46b4-920a-c719681db08e'),(116,'craft','m181217_153000_fix_structure_uids','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','5671512d-235d-4d34-a1ea-cf25f8a051b4'),(117,'craft','m190104_152725_store_licensed_plugin_editions','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','99b98ea5-b2f3-4a42-a744-8d4202f9d5ae'),(118,'craft','m190108_110000_cleanup_project_config','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','98af2b9e-8ebd-4db4-8c06-49f0b5880547'),(119,'craft','m190108_113000_asset_field_setting_change','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','e78fc750-56df-4be5-b64e-0e3dcd64eb56'),(120,'craft','m190109_172845_fix_colspan','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','c20ac793-9de0-4c3a-8d2e-98ce5a216ef8'),(121,'craft','m190110_150000_prune_nonexisting_sites','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','a5c25f64-5c2c-4644-ae8b-b41751aae16f'),(122,'craft','m190110_214819_soft_delete_volumes','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','31257e2d-475b-4212-8b7f-f9dad9e30a73'),(123,'craft','m190112_124737_fix_user_settings','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','eee2e407-2a54-4726-aa87-a3378acf25cb'),(124,'craft','m190112_131225_fix_field_layouts','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','7d211601-11cb-459c-b558-ccbd20db61a4'),(125,'craft','m190112_201010_more_soft_deletes','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','bf68f692-9e46-4e7d-a61c-7c0643fb73c7'),(126,'craft','m190114_143000_more_asset_field_setting_changes','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','e4a7bc84-e5b1-47db-9509-7fe5c0828063'),(127,'craft','m190121_120000_rich_text_config_setting','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','f23f1c3c-d42c-4369-b1b2-fb79a3655959'),(128,'craft','m190125_191628_fix_email_transport_password','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','3ecb219f-8d32-41c8-98a2-bdcaba292a2d'),(129,'craft','m190128_181422_cleanup_volume_folders','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','3d8cbf89-183c-4a1e-8fff-260f61dd370b'),(130,'craft','m190205_140000_fix_asset_soft_delete_index','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','f5cc77b5-94f8-4f97-8ce1-41baf9606b63'),(131,'craft','m190218_143000_element_index_settings_uid','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','a6f23e85-8915-48c0-aeeb-13948da88eb2'),(132,'craft','m190312_152740_element_revisions','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','ed21557a-fd13-42fb-ae32-42df9f99033b'),(133,'craft','m190327_235137_propagation_method','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','01368566-cf46-481c-88f3-02453176ded4'),(134,'craft','m190401_223843_drop_old_indexes','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','6a64623e-ed49-4710-bb0a-2105813587af'),(135,'craft','m190416_014525_drop_unique_global_indexes','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','a397823d-1ba0-49fe-af1b-bdf419accea8'),(136,'craft','m190417_085010_add_image_editor_permissions','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','34258924-a4bd-44b0-ad8c-2cee9eafdd58'),(137,'craft','m190502_122019_store_default_user_group_uid','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','f03d48e1-c0ac-42c9-894b-dc69acfe3e73'),(138,'craft','m190504_150349_preview_targets','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','551b86c5-35e0-49c6-a914-13e346e62f09'),(139,'craft','m190516_184711_job_progress_label','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','6402af19-8492-4202-bf79-970869ab635c'),(140,'craft','m190523_190303_optional_revision_creators','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','38d5eb39-d6c9-4e34-a1cb-420de7dee0dc'),(141,'craft','m190529_204501_fix_duplicate_uids','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','2567fc2f-3a56-4764-b701-9221ef42cd16'),(142,'craft','m190605_223807_unsaved_drafts','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','652d35cf-871a-458f-b000-2cc7eca181c8'),(143,'craft','m190607_230042_entry_revision_error_tables','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','f9586234-aba4-4af1-a7dc-e2c1f2ae56fd'),(144,'craft','m190608_033429_drop_elements_uid_idx','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','3c7f4a47-4904-4cef-841d-4d4be4d3e8ac'),(145,'craft','m190617_164400_add_gqlschemas_table','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','c3e1bf62-d18d-4d72-8d01-df42fec59571'),(146,'craft','m190624_234204_matrix_propagation_method','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','8512e9c9-74e4-4aae-8354-2f99b25365e6'),(147,'craft','m190711_153020_drop_snapshots','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','a61cddf5-4ce0-4cb6-a02d-4a0cb2aa2f05'),(148,'craft','m190712_195914_no_draft_revisions','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','8c1f81f9-e2b9-4b74-9bdf-930178473ef7'),(149,'craft','m190723_140314_fix_preview_targets_column','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','60a5f848-f387-47a9-bda3-f17a9c2786fd'),(150,'craft','m190820_003519_flush_compiled_templates','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','75aa2089-0bf4-45a2-8b39-729368fb9d22'),(151,'craft','m190823_020339_optional_draft_creators','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','d809c265-b067-49bc-9619-386e7ebe34e5'),(152,'craft','m190913_152146_update_preview_targets','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','dae0b66f-a1fc-4c0a-9f0e-52f03449cd28'),(153,'craft','m191107_122000_add_gql_project_config_support','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','3cdf476c-c7de-457e-9154-604af789728f'),(154,'craft','m191204_085100_pack_savable_component_settings','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','935f1f23-a2a7-4aa1-9970-67aa4a474422'),(155,'craft','m191206_001148_change_tracking','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','7b47f4b1-904e-4791-afd2-d2a73e1f9128'),(156,'craft','m191216_191635_asset_upload_tracking','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','610b5ed5-cf27-4e6d-a5e8-d6a9191b9b4c'),(157,'craft','m191222_002848_peer_asset_permissions','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','37a179cf-02c2-4255-8c3b-d0ef8058be9f'),(158,'craft','m200127_172522_queue_channels','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','7493f7a2-e35f-490b-9486-a6b5be52a096'),(159,'craft','m200211_175048_truncate_element_query_cache','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','900eaf8b-46db-49d5-9765-292c633a0d84'),(160,'craft','m200213_172522_new_elements_index','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','9b6ba16d-a897-4482-88d7-421b266c7cdb'),(161,'craft','m200228_195211_long_deprecation_messages','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','f78a497a-a787-4066-a91a-fcbbb32025df'),(162,'craft','m200306_054652_disabled_sites','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','abfb9c1c-66c2-4800-acee-411c3033803e'),(163,'craft','m200522_191453_clear_template_caches','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','14ec1339-277f-4ff3-a080-6ea9ba059edb'),(164,'craft','m200606_231117_migration_tracks','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','4e23a678-2189-420a-a337-b9204eeafb36'),(165,'craft','m200619_215137_title_translation_method','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','510a6add-2ef9-4625-90e6-0c33cd83a8bf'),(166,'craft','m200620_005028_user_group_descriptions','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','3014c529-7b99-4bbe-ab92-a5f12bd4267b'),(167,'craft','m200620_230205_field_layout_changes','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','439e618c-86fb-4f7d-81f9-87fffaa97c0f'),(168,'craft','m200625_131100_move_entrytypes_to_top_project_config','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','5c92e572-1f90-406a-bce6-2d66db331ee0'),(169,'craft','m200629_112700_remove_project_config_legacy_files','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','c4b9dabf-5bf7-44c3-8bca-8f5fbb2e620a'),(170,'craft','m200630_183000_drop_configmap','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','bb9e62be-0bd2-4dd2-8786-5bf994213164'),(171,'craft','m200715_113400_transform_index_error_flag','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','684cbc2a-18ed-4dce-964e-fbf9df053547'),(172,'craft','m200716_110900_replace_file_asset_permissions','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','8d80524d-0e0b-4bc6-990e-7a861fcf67d1'),(173,'craft','m200716_153800_public_token_settings_in_project_config','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','89325df7-e4ff-4734-afa5-7b298d214b90'),(174,'craft','m200720_175543_drop_unique_constraints','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','d4a8ea45-a6f3-4b45-ba09-a4ff68ecab8f'),(175,'craft','m200825_051217_project_config_version','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','98d5b55d-6cdd-4f53-9826-8bd43dec56fa'),(176,'craft','m201116_190500_asset_title_translation_method','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','4c9a8249-0be5-4dea-857f-29a8982b9c50'),(177,'craft','m201124_003555_plugin_trials','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','b7285e94-021e-4a0f-83b2-a9d4ccf28b4a'),(178,'craft','m210209_135503_soft_delete_field_groups','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','e28fa7bb-ecf2-4df3-b5e4-80193322b983'),(179,'craft','m210212_223539_delete_invalid_drafts','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','4052f4c0-519b-4c1d-b030-ffdb7f61cd5b'),(180,'craft','m210214_202731_track_saved_drafts','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','be510b9b-4fe4-481c-89b2-f226b0463bf4'),(181,'craft','m210223_150900_add_new_element_gql_schema_components','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','e582d4dd-e863-4538-9a26-bbd5f574a423'),(182,'craft','m210224_162000_add_projectconfignames_table','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','c5ed0e81-db55-4a67-80d3-35e9b96d9ab1'),(183,'craft','m210326_132000_invalidate_projectconfig_cache','2021-03-30 06:11:46','2021-03-30 06:11:46','2021-03-30 06:11:46','fa3f230d-c1a7-4189-aa87-4b1e47ce0a4d'),(184,'plugin:feed-me','Install','2021-04-05 23:40:11','2021-04-05 23:40:11','2021-04-05 23:40:11','13d7d4a0-25e8-4acd-a494-9414aecfed77'),(185,'plugin:feed-me','m180305_000000_migrate_feeds','2021-04-05 23:40:11','2021-04-05 23:40:11','2021-04-05 23:40:11','5a37c578-be05-496f-844b-47c61a941a5b'),(186,'plugin:feed-me','m181113_000000_add_paginationNode','2021-04-05 23:40:11','2021-04-05 23:40:11','2021-04-05 23:40:11','9182cd67-e88e-4272-b276-3ec7cb79e514'),(187,'plugin:feed-me','m190201_000000_update_asset_feeds','2021-04-05 23:40:11','2021-04-05 23:40:11','2021-04-05 23:40:11','706cb062-9c58-4f93-abf1-b0bad3689215'),(188,'plugin:feed-me','m190320_000000_renameLocale','2021-04-05 23:40:11','2021-04-05 23:40:11','2021-04-05 23:40:11','1a94f268-ef33-424a-af57-d089bd0e0388'),(189,'plugin:feed-me','m190406_000000_sortOrder','2021-04-05 23:40:11','2021-04-05 23:40:11','2021-04-05 23:40:11','e3773784-7a69-4a7f-9de3-d098641d5b49'),(190,'plugin:feed-me','m201106_202042_singleton_feeds','2021-04-05 23:40:11','2021-04-05 23:40:11','2021-04-05 23:40:11','688894de-beb3-42c4-bbe7-c0020de09112'),(193,'plugin:sprig','Install','2021-04-08 03:11:19','2021-04-08 03:11:19','2021-04-08 03:11:19','41309870-58e3-4d1e-a5b7-6900ebb182a8'),(194,'plugin:sprig','m201020_120000_add_playgrounds_table','2021-04-08 03:11:19','2021-04-08 03:11:19','2021-04-08 03:11:19','6786c261-72ac-405d-9191-ca9c2f23167d'),(195,'craft','m210331_220322_null_author','2021-04-16 08:52:14','2021-04-16 08:52:14','2021-04-16 08:52:14','14e2bc27-b69b-4b31-a311-3cda44a6f598'),(196,'plugin:freeform','Install','2021-04-20 06:16:31','2021-04-20 06:16:31','2021-04-20 06:16:31','70f31da2-2ba8-4c7f-8b70-12e414e314ef'),(197,'plugin:freeform','m180120_140521_CraftUpgrade','2021-04-20 06:16:31','2021-04-20 06:16:31','2021-04-20 06:16:31','cbb2349d-21f4-4732-bb09-1b8db69dada9'),(198,'plugin:freeform','m180125_124339_UpdateForeignKeyNames','2021-04-20 06:16:31','2021-04-20 06:16:31','2021-04-20 06:16:31','c1f11660-d807-42d9-8c14-2e5eb95d6302'),(199,'plugin:freeform','m180214_094247_AddUniqueTokenToSubmissionsAndForms','2021-04-20 06:16:31','2021-04-20 06:16:31','2021-04-20 06:16:31','65a5f82c-25d5-4c51-b73c-d99805745475'),(200,'plugin:freeform','m180220_072652_ChangeFileUploadFieldColumnType','2021-04-20 06:16:31','2021-04-20 06:16:31','2021-04-20 06:16:31','75922e7c-12a1-44fa-89c7-b16e17555e08'),(201,'plugin:freeform','m180326_094124_AddIsSpamToSubmissions','2021-04-20 06:16:31','2021-04-20 06:16:31','2021-04-20 06:16:31','2aa72c88-d4d6-438e-a25c-3688af99e862'),(202,'plugin:freeform','m180405_101920_AddIpAddressToSubmissions','2021-04-20 06:16:31','2021-04-20 06:16:31','2021-04-20 06:16:31','cd20a410-54f0-4332-bbba-e13e09e3e1ab'),(203,'plugin:freeform','m180410_131206_CreateIntegrationsQueue','2021-04-20 06:16:31','2021-04-20 06:16:31','2021-04-20 06:16:31','55d5a688-2540-4d5d-ab57-acd186bd55de'),(204,'plugin:freeform','m180417_134527_AddMultipleSelectTypeToFields','2021-04-20 06:16:31','2021-04-20 06:16:31','2021-04-20 06:16:31','5a4cd5e4-d36c-4512-b652-6b23550a6c9a'),(205,'plugin:freeform','m180430_151626_PaymentGateways','2021-04-20 06:16:31','2021-04-20 06:16:31','2021-04-20 06:16:31','eb1adb3d-4180-4c7b-aee2-44998c172843'),(206,'plugin:freeform','m180508_095131_CreatePaymentGatewayFieldsTable','2021-04-20 06:16:31','2021-04-20 06:16:31','2021-04-20 06:16:31','77a36969-d88e-41a4-b24c-7ae35dd49d5c'),(207,'plugin:freeform','m180606_141402_AddConnectionsToFormProperties','2021-04-20 06:16:31','2021-04-20 06:16:31','2021-04-20 06:16:31','3bab7ccb-2a54-4d4c-b16a-c86b080ccd89'),(208,'plugin:freeform','m180730_171628_AddCcDetailsFieldType','2021-04-20 06:16:31','2021-04-20 06:16:31','2021-04-20 06:16:31','e2d54f56-bd89-4d2f-b4b8-49f805caddcf'),(209,'plugin:freeform','m180817_091801_AddRulesToFormProperties','2021-04-20 06:16:31','2021-04-20 06:16:31','2021-04-20 06:16:31','26827c0a-4dde-4970-b5fa-04424a000395'),(210,'plugin:freeform','m181112_152751_ChangeTypeEnumColumnsToIndexedText','2021-04-20 06:16:31','2021-04-20 06:16:31','2021-04-20 06:16:31','70f2059b-2a9e-48bd-b44d-c943c80c71ab'),(211,'plugin:freeform','m181129_083939_ChangeIntegrationFieldTypeColumnTypeToString','2021-04-20 06:16:31','2021-04-20 06:16:31','2021-04-20 06:16:31','b37d1d2f-e23c-4896-a2ab-336d35e76339'),(212,'plugin:freeform','m190501_124050_MergingEditionsMigration','2021-04-20 06:16:31','2021-04-20 06:16:31','2021-04-20 06:16:31','fb73c57a-bd18-411b-96ab-b66b53b39041'),(213,'plugin:freeform','m190502_155557_AddCCAndBCCToEmailNotifications','2021-04-20 06:16:31','2021-04-20 06:16:31','2021-04-20 06:16:31','533d6169-d7b2-4203-b636-ac77feb7e15b'),(214,'plugin:freeform','m190516_085150_AddPresetAssetsToNotifications','2021-04-20 06:16:31','2021-04-20 06:16:31','2021-04-20 06:16:31','29377b3b-132a-4049-998e-ea1ece7091d7'),(215,'plugin:freeform','m190529_135307_AddWebhookTables','2021-04-20 06:16:31','2021-04-20 06:16:31','2021-04-20 06:16:31','1919180a-9e54-4119-943c-e1f322b37fbd'),(216,'plugin:freeform','m190603_160423_UpgradeFreeformHoneypotEnhancement','2021-04-20 06:16:31','2021-04-20 06:16:31','2021-04-20 06:16:31','b75947d2-b4f5-4018-874d-164f4324d924'),(217,'plugin:freeform','m190604_125112_AddFormLimitSubmissionProperty','2021-04-20 06:16:31','2021-04-20 06:16:31','2021-04-20 06:16:31','f30474fb-ca7d-41ca-8267-c3903e177cb3'),(218,'plugin:freeform','m190610_074840_MigrateScriptInsertLocation','2021-04-20 06:16:31','2021-04-20 06:16:31','2021-04-20 06:16:31','0f4f6e14-ae0f-4162-a010-96857708ddf1'),(219,'plugin:freeform','m190614_103420_AddMissingMetaColumnsToProAndPaymentTables','2021-04-20 06:16:31','2021-04-20 06:16:31','2021-04-20 06:16:31','f8acc8dd-f027-44e4-bbb5-368a03884a87'),(220,'plugin:freeform','m190617_122427_RemoveBrokenForeignKeys','2021-04-20 06:16:31','2021-04-20 06:16:31','2021-04-20 06:16:31','a6e41cfd-9a46-477e-878f-aaa5ab6fa835'),(221,'plugin:freeform','m190618_142759_AddFixedForeignKeys','2021-04-20 06:16:32','2021-04-20 06:16:32','2021-04-20 06:16:32','b33770d2-dfb1-4e25-882d-1adada2a13fc'),(222,'plugin:freeform','m190812_125059_AddNotesTable','2021-04-20 06:16:32','2021-04-20 06:16:32','2021-04-20 06:16:32','42d42ef9-a3ef-45e3-9638-0eb01b41943c'),(223,'plugin:freeform','m190905_113428_FixIntervalCountNotNullColumn','2021-04-20 06:16:32','2021-04-20 06:16:32','2021-04-20 06:16:32','4dfd1f36-f4cf-42cc-b9e0-1688d9507042'),(224,'plugin:freeform','m191214_093453_AddExtraPostUrlColumnToForm','2021-04-20 06:16:32','2021-04-20 06:16:32','2021-04-20 06:16:32','0ca4cef7-09b8-481d-83a4-51fc080d2d68'),(225,'plugin:freeform','m200203_180318_AddSpamReasonTable','2021-04-20 06:16:32','2021-04-20 06:16:32','2021-04-20 06:16:32','5bcc8db1-67e4-4e65-981f-af0721fb5d0f'),(226,'plugin:freeform','m200214_083115_FixIntegrationQueueIndex','2021-04-20 06:16:32','2021-04-20 06:16:32','2021-04-20 06:16:32','c3ec532a-f11c-4c84-8318-81e8df2185f4'),(227,'plugin:freeform','m200616_143808_FormPermissionsUpdate','2021-04-20 06:16:32','2021-04-20 06:16:32','2021-04-20 06:16:32','08ca1ddd-420b-4ced-837c-1739525c000d'),(228,'plugin:freeform','m200630_103347_IncreaseExportProfileSettingSize','2021-04-20 06:16:32','2021-04-20 06:16:32','2021-04-20 06:16:32','846b5a4b-fc35-4706-9661-eddf417f8991'),(229,'plugin:freeform','m200825_124009_SplitPipedriveIntegrationIntoDealsAndLeads','2021-04-20 06:16:32','2021-04-20 06:16:32','2021-04-20 06:16:32','3b421966-8c20-4b6a-978f-3da2f12dc037'),(230,'plugin:freeform','m200907_081059_AddValidationToFormProperties','2021-04-20 06:16:32','2021-04-20 06:16:32','2021-04-20 06:16:32','2edbe762-9e2c-43bb-b021-75e41c257d44'),(231,'plugin:freeform','m200911_130215_AddReplyToNameToNotifications','2021-04-20 06:16:32','2021-04-20 06:16:32','2021-04-20 06:16:32','338dd77d-c08d-4789-a35b-10a6b864c345'),(232,'plugin:freeform','m201006_065315_AddFeedTables','2021-04-20 06:16:32','2021-04-20 06:16:32','2021-04-20 06:16:32','1696e6d2-23df-4ea8-ada2-10d0e75ac9ee'),(233,'plugin:freeform','m201014_161213_AddFormSortOrder','2021-04-20 06:16:32','2021-04-20 06:16:32','2021-04-20 06:16:32','63e94dfd-aecc-433a-8a07-034dfc81e0ed'),(234,'plugin:freeform','m201027_103933_AddExportProfileDateRanges','2021-04-20 06:16:32','2021-04-20 06:16:32','2021-04-20 06:16:32','b9dbcc85-9d2c-4924-8c44-7b2da79b2918'),(235,'plugin:freeform','m201209_162655_AddAutoTextColumnToNotifications','2021-04-20 06:16:32','2021-04-20 06:16:32','2021-04-20 06:16:32','4e67f576-ab78-4d7d-92bd-c9f3c85df163'),(236,'plugin:freeform','m210105_145259_AddGoogleTagManagerColumnsToForms','2021-04-20 06:16:32','2021-04-20 06:16:32','2021-04-20 06:16:32','513e6bf0-743b-43bd-98f9-769448fee860'),(237,'plugin:freeform','m210413_104951_MigrateSubmissionPermissions','2021-04-21 22:56:14','2021-04-21 22:56:14','2021-04-21 22:56:14','94e8a9c4-dcb2-4f00-9632-e92ddf89ca77'),(238,'plugin:freeform','m210416_072726_MigrateFormPermissions','2021-04-21 22:56:14','2021-04-21 22:56:14','2021-04-21 22:56:14','05bfd749-4185-45ae-95b7-9bfda1a4c986'),(239,'plugin:redactor','m180430_204710_remove_old_plugins','2021-05-14 06:15:39','2021-05-14 06:15:39','2021-05-14 06:15:39','fc47ca2a-40be-4c5f-96b5-10f32beb1e83'),(240,'plugin:redactor','Install','2021-05-14 06:15:39','2021-05-14 06:15:39','2021-05-14 06:15:39','2380d11c-67a5-4404-9b41-f2f735d64ef5'),(241,'plugin:redactor','m190225_003922_split_cleanup_html_settings','2021-05-14 06:15:39','2021-05-14 06:15:39','2021-05-14 06:15:39','73b2495e-5cc5-454b-985c-0bef7a686737'),(242,'plugin:super-table','Install','2021-05-14 06:17:28','2021-05-14 06:17:28','2021-05-14 06:17:28','8306b378-a77f-48b3-8d7f-5e24cdef9664'),(243,'plugin:super-table','m180210_000000_migrate_content_tables','2021-05-14 06:17:28','2021-05-14 06:17:28','2021-05-14 06:17:28','0419f48a-5f7a-47b9-adca-f7ccbbba4e59'),(244,'plugin:super-table','m180211_000000_type_columns','2021-05-14 06:17:28','2021-05-14 06:17:28','2021-05-14 06:17:28','90e6ef01-2a78-46c3-98c1-0c3a317dfea3'),(245,'plugin:super-table','m180219_000000_sites','2021-05-14 06:17:28','2021-05-14 06:17:28','2021-05-14 06:17:28','65a93736-6a04-4e26-a4c5-df228d404f10'),(246,'plugin:super-table','m180220_000000_fix_context','2021-05-14 06:17:28','2021-05-14 06:17:28','2021-05-14 06:17:28','dcc48ad1-e06a-4b90-a83d-767e269780fb'),(247,'plugin:super-table','m190117_000000_soft_deletes','2021-05-14 06:17:28','2021-05-14 06:17:28','2021-05-14 06:17:28','4bd20f1d-fa61-4df8-a11a-27773e6e2790'),(248,'plugin:super-table','m190117_000001_context_to_uids','2021-05-14 06:17:28','2021-05-14 06:17:28','2021-05-14 06:17:28','20af7d1e-d192-450a-8322-f387e69e819d'),(249,'plugin:super-table','m190120_000000_fix_supertablecontent_tables','2021-05-14 06:17:28','2021-05-14 06:17:28','2021-05-14 06:17:28','69010196-7aa2-4c3c-8803-b96bfaf57c5d'),(250,'plugin:super-table','m190131_000000_fix_supertable_missing_fields','2021-05-14 06:17:28','2021-05-14 06:17:28','2021-05-14 06:17:28','ea252133-e31b-4dda-ab5d-37d1a820c06f'),(251,'plugin:super-table','m190227_100000_fix_project_config','2021-05-14 06:17:28','2021-05-14 06:17:28','2021-05-14 06:17:28','dc039d8e-8158-441d-98aa-31f71aaa1b16'),(252,'plugin:super-table','m190511_100000_fix_project_config','2021-05-14 06:17:28','2021-05-14 06:17:28','2021-05-14 06:17:28','79b5f9b8-f7c7-4365-8fd1-ef8f7547680a'),(253,'plugin:super-table','m190520_000000_fix_project_config','2021-05-14 06:17:28','2021-05-14 06:17:28','2021-05-14 06:17:28','24691aa3-b697-4213-a50d-f036f250d530'),(254,'plugin:super-table','m190714_000000_propagation_method','2021-05-14 06:17:28','2021-05-14 06:17:28','2021-05-14 06:17:28','c387e62f-2cff-4ac4-b487-b0842ef9723d'),(255,'plugin:super-table','m191127_000000_fix_width','2021-05-14 06:17:28','2021-05-14 06:17:28','2021-05-14 06:17:28','58fdbf29-f909-4e4f-90f4-e31dbe4b8894'),(256,'plugin:freeform','m210629_172132_AddDateIndexToLockTable','2021-07-12 06:47:48','2021-07-12 06:47:48','2021-07-12 06:47:48','ff9be2e6-284e-4d7f-835c-bc8b4e6de7a5'),(257,'craft','m210302_212318_canonical_elements','2021-07-16 00:36:53','2021-07-16 00:36:53','2021-07-16 00:36:53','0bc136fb-b5a6-4b5e-afe0-86898779cf53'),(258,'craft','m210329_214847_field_column_suffixes','2021-07-16 00:36:54','2021-07-16 00:36:54','2021-07-16 00:36:54','967a96bc-37f9-4161-9c92-adfc058344b9'),(259,'craft','m210405_231315_provisional_drafts','2021-07-16 00:36:54','2021-07-16 00:36:54','2021-07-16 00:36:54','71907fad-228e-40d5-adad-c67679cc6af0'),(260,'craft','m210602_111300_project_config_names_in_config','2021-07-16 00:36:54','2021-07-16 00:36:54','2021-07-16 00:36:54','d888fc5a-e8ea-44c5-a8d2-50e74204bb4b'),(261,'craft','m210611_233510_default_placement_settings','2021-07-16 00:36:54','2021-07-16 00:36:54','2021-07-16 00:36:54','fa7fecaf-28fa-4938-aa84-785e75603f5f'),(262,'craft','m210613_145522_sortable_global_sets','2021-07-16 00:36:54','2021-07-16 00:36:54','2021-07-16 00:36:54','6cd4d461-925e-41b5-a1f2-a24c70aa8dee'),(263,'craft','m210613_184103_announcements','2021-07-16 00:36:55','2021-07-16 00:36:55','2021-07-16 00:36:55','47569caa-f1c9-4d24-ad14-73379d736eb2'),(264,'plugin:feed-me','m210317_000000_search_indexes','2021-08-24 23:22:11','2021-08-24 23:22:11','2021-08-24 23:22:11','b0d1cad8-f67a-44d4-aea8-274f9835af2e'),(265,'craft','m210829_000000_element_index_tweak','2021-09-03 04:50:55','2021-09-03 04:50:55','2021-09-03 04:50:55','f22f9c1f-3ccd-4eba-93b8-689c85fbc68d'),(266,'plugin:blitz','Install','2021-10-18 07:19:13','2021-10-18 07:19:13','2021-10-18 07:19:13','d37b6ff7-c71a-4f6e-8b51-d121308a50e6'),(267,'plugin:blitz','m180628_120000_add_elementcaches_table','2021-10-18 07:19:13','2021-10-18 07:19:13','2021-10-18 07:19:13','29cab304-880a-4df9-a4e8-4f2b2d4e1a1c'),(268,'plugin:blitz','m180703_120000_add_siteid_column','2021-10-18 07:19:13','2021-10-18 07:19:13','2021-10-18 07:19:13','daf2bc60-5bd3-4b7b-913e-f46868cba5e8'),(269,'plugin:blitz','m180704_120000_add_caches_elementquerycaches_tables','2021-10-18 07:19:13','2021-10-18 07:19:13','2021-10-18 07:19:13','192f3828-3f78-4ec5-8491-a5aaf3a6b76d'),(270,'plugin:blitz','m181101_120000_delete_globalset_matrixblock_rows','2021-10-18 07:19:13','2021-10-18 07:19:13','2021-10-18 07:19:13','bcab830e-e8b0-4100-ba11-713765f7e897'),(271,'plugin:blitz','m181122_120000_change_querystringcaching_setting','2021-10-18 07:19:13','2021-10-18 07:19:13','2021-10-18 07:19:13','169c679c-3243-4eb2-a7ff-e7260493b8b5'),(272,'plugin:blitz','m181125_120000_add_elementqueries_table','2021-10-18 07:19:13','2021-10-18 07:19:13','2021-10-18 07:19:13','8ba385e7-a998-4c46-a86f-dcaf7f3cf361'),(273,'plugin:blitz','m181213_120000_remove_id_audit_columns','2021-10-18 07:19:13','2021-10-18 07:19:13','2021-10-18 07:19:13','bf98c575-26bb-49ed-b3b5-f31e85af3d86'),(274,'plugin:blitz','m181214_120000_add_indexes_hash_column','2021-10-18 07:19:13','2021-10-18 07:19:13','2021-10-18 07:19:13','6d2dde2b-cc93-4ad5-99e3-6d0d9100cb9b'),(275,'plugin:blitz','m181228_120000_optimise_elementqueries','2021-10-18 07:19:13','2021-10-18 07:19:13','2021-10-18 07:19:13','011e501e-b478-4089-b7ab-e10a7addc16e'),(276,'plugin:blitz','m181229_120000_add_cache_expirydate_column','2021-10-18 07:19:13','2021-10-18 07:19:13','2021-10-18 07:19:13','013f73bc-eb15-4269-9a3b-73cc3ac8ff02'),(277,'plugin:blitz','m190105_120000_add_elementexpirydates_table','2021-10-18 07:19:13','2021-10-18 07:19:13','2021-10-18 07:19:13','8d21a10b-4bad-417a-b6d3-4576e8bf930c'),(278,'plugin:blitz','m190105_120000_alter_index_column','2021-10-18 07:19:13','2021-10-18 07:19:13','2021-10-18 07:19:13','b42fcffb-f95b-4fc5-a019-04c331081a38'),(279,'plugin:blitz','m190227_120000_add_cachetags_table','2021-10-18 07:19:13','2021-10-18 07:19:13','2021-10-18 07:19:13','b4d6664e-8842-4392-8e73-af18ca807cd7'),(280,'plugin:blitz','m190518_120000_alter_uri_column','2021-10-18 07:19:13','2021-10-18 07:19:13','2021-10-18 07:19:13','04df506c-56c9-486f-a7b3-1d4bc78c6aa8'),(281,'plugin:blitz','m190525_120000_add_non_cacheable_element_types','2021-10-18 07:19:13','2021-10-18 07:19:13','2021-10-18 07:19:13','7592cb4e-c520-48f5-a482-f6004d158913'),(282,'plugin:blitz','m190921_120000_change_zoneid_setting','2021-10-18 07:19:13','2021-10-18 07:19:13','2021-10-18 07:19:13','413d82a2-5af1-485b-9c1b-def6c44948dd'),(283,'plugin:blitz','m191001_120000_change_settings','2021-10-18 07:19:13','2021-10-18 07:19:13','2021-10-18 07:19:13','90e9ab46-e6a6-4732-8047-f8e9fc8107ce'),(284,'plugin:blitz','m191016_120000_add_driverdata_table','2021-10-18 07:19:13','2021-10-18 07:19:13','2021-10-18 07:19:13','11993076-603e-4cfa-b595-eb5c8a5d219f'),(285,'plugin:blitz','m191228_120000_add_elementquerysources_table','2021-10-18 07:19:13','2021-10-18 07:19:13','2021-10-18 07:19:13','3b96dc60-61ac-4d2f-ace9-791f257e1097'),(286,'plugin:blitz','m200721_120000_add_primary_keys','2021-10-18 07:19:13','2021-10-18 07:19:13','2021-10-18 07:19:13','80c84e59-8ace-4d5c-a5a5-1bf6a2bfc054'),(287,'plugin:blitz','m210512_120000_add_paginate_column','2021-10-18 07:19:13','2021-10-18 07:19:13','2021-10-18 07:19:13','4fec3b50-4824-45f9-b221-6047f285c2a2'),(298,'plugin:seomatic','Install','2021-11-09 01:12:27','2021-11-09 01:12:27','2021-11-09 01:12:27','2f5b9cb9-e61b-49ab-8fcf-bcca31016885'),(299,'plugin:seomatic','m180314_002755_field_type','2021-11-09 01:12:27','2021-11-09 01:12:27','2021-11-09 01:12:27','f26d548d-11e4-43df-b5ac-50ccb5208fe7'),(300,'plugin:seomatic','m180314_002756_base_install','2021-11-09 01:12:27','2021-11-09 01:12:27','2021-11-09 01:12:27','46e94a07-15de-48af-a050-f11b86071f57'),(301,'plugin:seomatic','m180502_202319_remove_field_metabundles','2021-11-09 01:12:27','2021-11-09 01:12:27','2021-11-09 01:12:27','ed275b47-8c39-4bec-8950-363d9e8e5b35'),(302,'plugin:seomatic','m180711_024947_commerce_products','2021-11-09 01:12:27','2021-11-09 01:12:27','2021-11-09 01:12:27','ce57bc7d-f56d-4e9b-a13c-3fa328d6fa8d'),(303,'plugin:seomatic','m190401_220828_longer_handles','2021-11-09 01:12:27','2021-11-09 01:12:27','2021-11-09 01:12:27','25fc870a-cfff-4322-984d-5d29b471f1ef'),(304,'plugin:seomatic','m190518_030221_calendar_events','2021-11-09 01:12:27','2021-11-09 01:12:27','2021-11-09 01:12:27','3e935351-a001-46c0-8d76-3b9f16f3153b'),(305,'plugin:seomatic','m200419_203444_add_type_id','2021-11-09 01:12:27','2021-11-09 01:12:27','2021-11-09 01:12:27','5df3e9a5-bc97-4c9c-b4f1-f6d4389c1c0c'),(306,'plugin:seomatic','m210603_213100_add_gql_schema_components','2021-11-09 01:12:27','2021-11-09 01:12:27','2021-11-09 01:12:27','20f19823-fff0-4702-92ad-8bb6267f11ae'),(307,'plugin:seomatic','m210817_230853_announcement_v3_4','2021-11-09 01:12:27','2021-11-09 01:12:27','2021-11-09 01:12:27','3b22d5ae-d6f5-4cbf-b26e-a2ebc9947769'),(308,'plugin:freeform','m210527_071651_AddDbSessionStorage','2021-11-22 01:56:31','2021-11-22 01:56:31','2021-11-22 01:56:31','9799b12d-86c7-4f75-aa55-beca877d2c94'),(309,'plugin:freeform','m210609_183655_AddContextToUnfinalizedFiles','2021-11-22 01:56:31','2021-11-22 01:56:31','2021-11-22 01:56:31','4ea18259-e01d-4eae-8608-6aa9fe054ee0'),(310,'plugin:freeform','m210923_110033_AddSavedFormsTable','2021-11-22 01:56:31','2021-11-22 01:56:31','2021-11-22 01:56:31','94468a83-eee9-460d-b3dc-c14750973b0c'),(311,'plugin:freeform','m211109_144235_RemoveContextFromUnfinalizedAssets','2021-11-22 01:56:31','2021-11-22 01:56:31','2021-11-22 01:56:31','32121f3f-8e28-4482-9ebe-1e65620883f2'),(312,'craft','m220209_095604_add_indexes','2022-02-23 02:55:44','2022-02-23 02:55:44','2022-02-23 02:55:44','61065c38-3a7b-4654-b975-bf48f2972d7a'),(313,'craft','m220214_000000_truncate_sessions','2022-02-23 02:55:44','2022-02-23 02:55:44','2022-02-23 02:55:44','a929fafc-9890-4b4b-a1d1-513afda70376'),(314,'plugin:freeform','m211227_140312_AddFormTypes','2022-03-10 02:21:35','2022-03-10 02:21:35','2022-03-10 02:21:35','ed8be70d-d2d4-4c43-ae3a-5eb7583be166'),(315,'plugin:freeform','m220121_091429_AddUserIdToSubmissions','2022-03-10 02:21:35','2022-03-10 02:21:35','2022-03-10 02:21:35','b1fd4eff-f38a-4d7a-befc-d6337c1caa19'),(316,'plugin:freeform','m220223_123305_AddQuickExportPermissions','2022-03-10 02:21:35','2022-03-10 02:21:35','2022-03-10 02:21:35','74982087-0910-4599-8ff4-3277213adaf9'),(317,'plugin:freeform','m220304_101448_ChangeAccessTokenColumnType','2022-03-10 02:21:35','2022-03-10 02:21:35','2022-03-10 02:21:35','ebd868fc-ce16-452f-96f4-26c2ad75c1a0'),(318,'craft','m210121_145800_asset_indexing_changes','2022-05-17 23:18:50','2022-05-17 23:18:50','2022-05-17 23:18:50','f7648ad9-49ab-4f6e-80d1-66262ea6c44d'),(319,'craft','m210624_222934_drop_deprecated_tables','2022-05-17 23:18:50','2022-05-17 23:18:50','2022-05-17 23:18:50','ab4c64a3-9fa0-40fb-ae39-4e33109ea15c'),(320,'craft','m210724_180756_rename_source_cols','2022-05-17 23:18:50','2022-05-17 23:18:50','2022-05-17 23:18:50','73a36296-2b82-42ef-9502-2a5ddb186f99'),(321,'craft','m210809_124211_remove_superfluous_uids','2022-05-17 23:18:51','2022-05-17 23:18:51','2022-05-17 23:18:51','d798e1c6-7128-4f9f-9270-ae8fccf07640'),(322,'craft','m210817_014201_universal_users','2022-05-17 23:18:51','2022-05-17 23:18:51','2022-05-17 23:18:51','beb9fc9e-1257-4e59-b40e-e3afd1009a9e'),(323,'craft','m210904_132612_store_element_source_settings_in_project_config','2022-05-17 23:18:51','2022-05-17 23:18:51','2022-05-17 23:18:51','efd30ef8-5be2-4c53-a953-12785a304efe'),(324,'craft','m211115_135500_image_transformers','2022-05-17 23:18:51','2022-05-17 23:18:51','2022-05-17 23:18:51','a73e9728-e260-4c91-ac77-416952b8e5af'),(325,'craft','m211201_131000_filesystems','2022-05-17 23:18:52','2022-05-17 23:18:52','2022-05-17 23:18:52','cd0e9151-6077-46ba-baa5-3b41675a0348'),(326,'craft','m220103_043103_tab_conditions','2022-05-17 23:18:52','2022-05-17 23:18:52','2022-05-17 23:18:52','b3981ac1-ee6a-4c7c-8cb2-4be8d0bfa87e'),(327,'craft','m220104_003433_asset_alt_text','2022-05-17 23:18:52','2022-05-17 23:18:52','2022-05-17 23:18:52','06b251fe-0acf-467f-a5c5-48121deb9ec8'),(328,'craft','m220123_213619_update_permissions','2022-05-17 23:18:52','2022-05-17 23:18:52','2022-05-17 23:18:52','0173b899-377c-47f6-8540-eaaa5204998d'),(329,'craft','m220126_003432_addresses','2022-05-17 23:18:52','2022-05-17 23:18:52','2022-05-17 23:18:52','e50e429d-74b5-438d-9169-ce49e5240a10'),(330,'craft','m220213_015220_matrixblocks_owners_table','2022-05-17 23:18:52','2022-05-17 23:18:52','2022-05-17 23:18:52','7b988dbb-d9d7-4525-a96a-bca5a2d8a588'),(331,'craft','m220222_122159_full_names','2022-05-17 23:18:52','2022-05-17 23:18:52','2022-05-17 23:18:52','771112cb-f4a0-490d-800f-ea1c8c1a79cc'),(332,'craft','m220223_180559_nullable_address_owner','2022-05-17 23:18:52','2022-05-17 23:18:52','2022-05-17 23:18:52','26f9bbfb-7ba9-4ee2-8c41-eaafa717eb2c'),(333,'craft','m220225_165000_transform_filesystems','2022-05-17 23:18:52','2022-05-17 23:18:52','2022-05-17 23:18:52','f39a9be1-f886-46ee-b5c0-45fa23c4067f'),(334,'craft','m220309_152006_rename_field_layout_elements','2022-05-17 23:18:52','2022-05-17 23:18:52','2022-05-17 23:18:52','7b214043-fb91-4667-a444-37e5dc3f437f'),(335,'craft','m220314_211928_field_layout_element_uids','2022-05-17 23:18:52','2022-05-17 23:18:52','2022-05-17 23:18:52','4037a70f-a9f5-4d03-a478-e6d37a5bbfa9'),(336,'craft','m220316_123800_transform_fs_subpath','2022-05-17 23:18:52','2022-05-17 23:18:52','2022-05-17 23:18:52','6475e94e-6c97-4492-ac03-7d7ce09f451c'),(337,'craft','m220317_174250_release_all_jobs','2022-05-17 23:18:52','2022-05-17 23:18:52','2022-05-17 23:18:52','25a13238-8b40-4e03-867f-80c31f2ec5af'),(338,'craft','m220330_150000_add_site_gql_schema_components','2022-05-17 23:18:52','2022-05-17 23:18:52','2022-05-17 23:18:52','aba3ed23-23d4-4f61-bf5f-90d3aa89c503'),(339,'craft','m220413_024536_site_enabled_string','2022-05-17 23:18:52','2022-05-17 23:18:52','2022-05-17 23:18:52','b970d484-f55c-41a2-bee0-e65d169e1844'),(340,'plugin:blitz','m220330_120000_update_settings','2022-05-17 23:18:52','2022-05-17 23:18:52','2022-05-17 23:18:52','7818c787-34fd-427e-8300-44dd25b5103e'),(341,'plugin:dospaces','m220426_100557_update_volume_to_fs','2022-05-17 23:18:52','2022-05-17 23:18:52','2022-05-17 23:18:52','d3014cae-ea48-4678-8b17-b2139c0e51b0'),(342,'plugin:freeform','m220316_060248_SwitchFormSuccessBehaviourToRedirectReturnUrl','2022-05-17 23:18:52','2022-05-17 23:18:52','2022-05-17 23:18:52','9610bce5-1f77-4332-9130-736864f9da91'),(343,'plugin:freeform','m220322_070819_RenameFormattingTemplates','2022-05-17 23:18:52','2022-05-17 23:18:52','2022-05-17 23:18:52','93028d13-6419-4412-ba92-c40a3b7f2549'),(344,'plugin:freeform','m220323_113852_MigrateEmailValuesToString','2022-05-17 23:18:52','2022-05-17 23:18:52','2022-05-17 23:18:52','edec799c-25d6-42d9-9b7b-b221b6b54b3b'),(345,'plugin:freeform','m220330_111857_SplitSubmissionsTable','2022-05-17 23:18:53','2022-05-17 23:18:53','2022-05-17 23:18:53','afd5729c-92cb-43ba-b9bc-7e570012acd6'),(346,'plugin:super-table','m220308_000000_remove_superfluous_uids','2022-05-17 23:18:53','2022-05-17 23:18:53','2022-05-17 23:18:53','750ac4b8-ecda-4b96-88b9-38a9910bc41b'),(347,'plugin:super-table','m220308_100000_owners_table','2022-05-17 23:18:53','2022-05-17 23:18:53','2022-05-17 23:18:53','6c123bbc-4a6c-4454-bbf0-f113fec7b93c'),(348,'plugin:blitz','m220511_120000_add_hints_table','2022-05-18 02:18:31','2022-05-18 02:18:31','2022-05-18 02:18:31','80db2954-5ec8-4f8d-a29c-c95ec31d1f7c'),(349,'plugin:blitz','m220517_120000_add_hints_announcement','2022-05-18 02:18:31','2022-05-18 02:18:31','2022-05-18 02:18:31','f427fb3f-bad6-44b7-bfa3-e436d2794f05'),(350,'plugin:blitz','m220630_120000_add_commerce_integration','2022-09-19 05:39:36','2022-09-19 05:39:36','2022-09-19 05:39:36','56b3c140-d7a9-4437-9bdc-e6b311e7369c'),(351,'plugin:freeform','m220422_065929_AddExportNotificationsTable','2022-09-19 05:39:36','2022-09-19 05:39:36','2022-09-19 05:39:36','64ccd1db-bb56-4370-af9e-b9c53ae4ca56'),(352,'plugin:freeform','m220527_055207_ExpandIntegrationAccessTokenSize','2022-09-19 05:39:36','2022-09-19 05:39:36','2022-09-19 05:39:36','f1777460-6775-4189-85ba-9338f81e903b'),(353,'plugin:freeform','m220530_052327_MigrateFormContentTableNamesToSnakeCase','2022-09-19 05:39:36','2022-09-19 05:39:36','2022-09-19 05:39:36','5860a998-7a0e-4ca3-bf20-a45f0c31fff1'),(354,'plugin:blitz','m221026_120000_add_include_tables','2023-03-06 23:46:22','2023-03-06 23:46:22','2023-03-06 23:46:22','d6cc17a9-02da-4fa8-b2a9-74891b55de9e'),(355,'plugin:blitz','m230112_120000_add_widget_announcement','2023-03-06 23:46:22','2023-03-06 23:46:22','2023-03-06 23:46:22','e53a9bf9-ef5d-409a-9e99-95a028a398d3'),(356,'plugin:blitz','m230211_110000_add_elementquery_columns_tables','2023-03-06 23:46:22','2023-03-06 23:46:22','2023-03-06 23:46:22','61ac746a-c2fc-4dc6-b4ff-db687997ed8d'),(357,'plugin:blitz','m230211_120000_add_element_fields_columns_tables','2023-03-06 23:46:23','2023-03-06 23:46:23','2023-03-06 23:46:23','a388ce30-7332-4fcd-98a6-b36c0d26ca68'),(358,'craft','m221027_160703_add_image_transform_fill','2023-04-11 02:08:08','2023-04-11 02:08:08','2023-04-11 02:08:08','ecc4d16a-d270-46e2-9b75-006f5627451a'),(359,'craft','m221028_130548_add_canonical_id_index','2023-04-11 02:08:08','2023-04-11 02:08:08','2023-04-11 02:08:08','639043f1-3212-4b6a-81f9-75f186e7b9fa'),(360,'craft','m221118_003031_drop_element_fks','2023-04-11 02:08:08','2023-04-11 02:08:08','2023-04-11 02:08:08','caa3a57a-eb3e-40d5-b884-d22250a6ede9'),(361,'craft','m230131_120713_asset_indexing_session_new_options','2023-04-11 02:08:08','2023-04-11 02:08:08','2023-04-11 02:08:08','2621cd6a-c7ad-4f3b-93bd-44ad5d9d5a7a'),(362,'craft','m230226_013114_drop_plugin_license_columns','2023-04-11 02:08:08','2023-04-11 02:08:08','2023-04-11 02:08:08','05a9fc5d-98f5-4040-bf22-ad1c28f7c3b3');
/*!40000 ALTER TABLE `migrations` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `navigation_navs`
--

LOCK TABLES `navigation_navs` WRITE;
/*!40000 ALTER TABLE `navigation_navs` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `navigation_navs` VALUES (1,1,'Header - Primary','primary','',NULL,0,NULL,NULL,NULL,NULL,'2019-06-26 01:24:37','2019-10-08 06:07:15',NULL,'13dcee9f-31cc-4635-a28c-617c30ebc876'),(2,3,'Header - Secondary','secondary','',NULL,0,NULL,NULL,NULL,NULL,'2019-08-21 04:18:41','2019-10-08 06:07:23',NULL,'f36302b5-0d9c-440f-a1aa-177ac5fc7bbf'),(3,151,'Footer - Our programs','ourPrograms','',NULL,0,NULL,NULL,NULL,NULL,'2019-10-04 00:32:45','2019-10-08 06:07:01',NULL,'45e443c8-1b07-4319-b6ab-c919a9d3019e'),(4,211,'Footer - Practice support','practiceSupport','',NULL,0,NULL,NULL,NULL,NULL,'2019-10-08 04:21:48','2019-10-08 06:07:09',NULL,'269bede0-ca94-441e-9949-7b80c0135aab'),(5,212,'Footer - News & events','newsEvents','',NULL,0,NULL,NULL,NULL,NULL,'2019-10-08 04:22:10','2019-10-08 06:07:28',NULL,'9db618a0-2351-41d5-8496-3f0af7940cd8'),(7,214,'Footer - About','about','',NULL,0,NULL,NULL,NULL,NULL,'2019-10-08 04:23:06','2019-10-08 06:07:37',NULL,'b6d74823-4b11-4229-a3c3-01237d6aae9e'),(8,215,'Footer - Contact','contact','',NULL,0,NULL,NULL,NULL,NULL,'2019-10-08 04:24:05','2019-10-08 06:07:46',NULL,'ff6a1d74-e803-4578-b78f-5e8a3c10165b'),(9,487,'Header - Mobile','headerMobile','',1,0,NULL,NULL,NULL,NULL,'2020-01-07 02:17:44','2020-01-07 02:17:44',NULL,'120dbef0-a097-49a2-b1a4-eb9e87e8bc6a'),(10,8470,'COVID-19','covid19','',2,0,NULL,NULL,NULL,NULL,'2020-06-08 04:06:56','2020-06-08 04:06:56',NULL,'0c2ecc35-6db3-48f1-9e65-e8c78e5a69ca'),(11,9117,'Footer - COVID-19','footerCovid19','COVID-19 ',3,0,NULL,NULL,NULL,NULL,'2020-06-09 05:32:59','2020-06-09 05:32:59',NULL,'5f63f5ce-235d-40f9-9d66-ff8eb60994f1');
/*!40000 ALTER TABLE `navigation_navs` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `navigation_nodes`
--

LOCK TABLES `navigation_nodes` WRITE;
/*!40000 ALTER TABLE `navigation_nodes` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `navigation_nodes` VALUES (20192,NULL,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2020-03-06 03:20:53','2020-03-06 03:20:53','a05f8fd9-d9d0-4a1a-a22b-c69c2b564813'),(20193,NULL,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2020-03-06 03:21:04','2020-03-06 03:21:04','f6cc2488-dd9c-4dcb-b6a7-1a76176ec5a6'),(20194,NULL,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2020-03-06 03:21:12','2020-03-06 03:21:12','f01596b7-3b1d-4656-8107-c06479522d3b'),(21075,NULL,4,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2020-04-07 04:42:04','2020-04-07 04:42:04','f49628d4-222a-4585-b26c-9db451f37c4c'),(21076,NULL,4,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2020-04-07 04:42:04','2020-04-07 04:42:04','083bd169-7433-49e9-ba77-71a665928879'),(21079,19204,4,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2020-04-07 04:42:04','2020-04-07 04:42:04','e7f34637-97ae-419c-a0c2-8f58c5104ea2'),(21119,NULL,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2020-04-08 01:31:30','2020-04-08 01:31:30','748437e7-7b26-46f3-b076-db16f3bcbebe'),(45275,NULL,1,21119,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,0,'2020-05-22 06:05:45','2020-05-22 06:05:45','7c392c2b-09c8-4e0c-84c5-4243b79adf65'),(45276,NULL,1,NULL,NULL,'craft\\elements\\Entry',NULL,NULL,'[]','[]',0,NULL,'2020-05-22 06:05:54','2020-05-22 06:05:54','1ae7034a-2e94-4619-b821-723acd7a5934');
/*!40000 ALTER TABLE `navigation_nodes` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `neoblocks`
--

LOCK TABLES `neoblocks` WRITE;
/*!40000 ALTER TABLE `neoblocks` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `neoblocks` VALUES (6789,6786,NULL,8,2,NULL,'2020-03-02 06:39:18','2020-03-25 11:23:32',6,'33e92b3d-082c-41ee-a632-39cf857edee7'),(6792,6786,NULL,8,3,NULL,'2020-03-02 06:39:18','2020-03-25 11:23:32',11,'166b3533-12e9-4bd4-9afa-69ba1b4df808'),(18022,18021,NULL,8,2,NULL,'2020-03-03 04:28:43','2020-03-25 11:23:35',2,'3dc014d5-2d80-4f16-a8a9-a4fad425bc7d'),(18023,18021,NULL,8,3,NULL,'2020-03-03 04:28:43','2020-03-25 11:23:35',3,'147e46bb-9ba0-4c37-b96a-748ef59b03d9'),(18024,18021,NULL,8,2,NULL,'2020-03-03 04:28:43','2020-03-25 11:23:35',6,'fafd9f3e-9551-4109-b6ef-85f9e91b5929'),(18025,18021,NULL,8,3,NULL,'2020-03-03 04:28:43','2020-03-25 11:23:35',7,'af159a6a-23d7-405e-a878-5ca6eced06ee'),(18027,18021,NULL,8,3,NULL,'2020-03-03 04:28:43','2020-03-25 11:23:35',11,'5b8fb2c1-cb8a-4e61-935a-56bb7d9f7bc5'),(18028,18021,NULL,8,12,NULL,'2020-03-03 04:28:43','2020-03-25 11:23:35',13,'913a1597-9f36-4d1e-844a-57ae71b2a824'),(18029,18021,NULL,8,3,NULL,'2020-03-03 04:28:43','2020-03-25 11:23:35',15,'6e5013dc-504b-42e0-93c8-d62164b7ba79'),(18031,18021,NULL,8,3,NULL,'2020-03-03 04:28:43','2020-03-25 11:23:35',17,'00e07668-014f-404e-b7eb-286b3b457bf8'),(18033,18021,NULL,8,2,NULL,'2020-03-03 04:28:43','2020-03-25 11:23:35',20,'20ed0890-d742-43d8-ae73-a0a8c0eebc65'),(18034,18021,NULL,8,3,NULL,'2020-03-03 04:28:43','2020-03-25 11:23:35',21,'b927ac88-8c03-4dd9-b79e-07f9615ff1e4'),(18036,18021,NULL,8,3,NULL,'2020-03-03 04:28:43','2020-03-25 11:23:35',23,'7d3da179-0e6d-472f-b3d4-99b9ddf0825b'),(18037,18021,NULL,8,2,NULL,'2020-03-03 04:28:43','2020-03-25 11:23:35',26,'7c9ac87d-d88a-48db-8f38-b723017b08fb'),(18038,18021,NULL,8,21,NULL,'2020-03-03 04:28:43','2020-03-25 11:23:35',27,'b8f4fd40-ee87-4954-a006-a61c09203997'),(18045,18044,NULL,8,2,NULL,'2020-03-03 04:29:04','2020-03-25 11:23:35',2,'a89c5889-ac52-493d-adce-57f36fd8090e'),(18046,18044,NULL,8,3,NULL,'2020-03-03 04:29:04','2020-03-25 11:23:35',3,'55f06160-9e87-40a5-a8d7-0ebedbed8ee3'),(18047,18044,NULL,8,2,NULL,'2020-03-03 04:29:04','2020-03-25 11:23:35',6,'13e0dfb8-fbad-4db3-9e77-7eabf9d4a8e4'),(18048,18044,NULL,8,3,NULL,'2020-03-03 04:29:04','2020-03-25 11:23:35',7,'5ec3f67f-6159-4401-aa1a-52e547a4bf68'),(18049,18044,NULL,8,12,NULL,'2020-03-03 04:29:04','2020-03-25 11:23:35',9,'b46d3866-78ed-4045-9234-c7e8ed02a108'),(18050,18044,NULL,8,3,NULL,'2020-03-03 04:29:04','2020-03-25 11:23:35',11,'b588f5e2-fc54-46be-bbeb-68454169425d'),(18051,18044,NULL,8,12,NULL,'2020-03-03 04:29:04','2020-03-25 11:23:35',13,'3671e632-c2b7-408b-a685-eb3b639f87fb'),(18052,18044,NULL,8,3,NULL,'2020-03-03 04:29:04','2020-03-25 11:23:35',15,'dc990123-0791-4a18-a72d-cf28abe638bc'),(18054,18044,NULL,8,3,NULL,'2020-03-03 04:29:04','2020-03-25 11:23:35',17,'f2f0cc10-3730-416d-b11d-4b307c3b25d3'),(18056,18044,NULL,8,2,NULL,'2020-03-03 04:29:04','2020-03-25 11:23:35',20,'309f98ab-25d8-42d9-9fe0-0ed809ad6c1d'),(18057,18044,NULL,8,3,NULL,'2020-03-03 04:29:04','2020-03-25 11:23:35',21,'f2b7f2ff-d075-46be-9354-25cee0cb4227'),(20184,20183,NULL,8,2,NULL,'2020-03-06 01:14:57','2020-03-25 11:23:37',2,'c3e1f653-8828-45ef-8d3b-70a16af8ff5f'),(20185,20183,NULL,8,3,NULL,'2020-03-06 01:14:57','2020-03-25 11:23:37',3,'31ea601a-05ce-4f67-8f2d-3724acbb13c3'),(20186,20183,NULL,8,2,NULL,'2020-03-06 01:14:57','2020-03-25 11:23:37',6,'f46ffbd2-f8cf-4a9b-b10a-27e0bc10cd03'),(20187,20183,NULL,8,3,NULL,'2020-03-06 01:14:57','2020-03-25 11:23:37',7,'6de3ca6b-2e60-4dd9-88c2-e9e395abf663'),(20189,20183,NULL,8,2,NULL,'2020-03-06 01:14:57','2020-03-25 11:23:37',10,'35fdf20f-e362-4861-9f85-ce9673af32e8'),(20190,20183,NULL,8,3,NULL,'2020-03-06 01:14:57','2020-03-25 11:23:37',11,'ca6cdd31-0238-43cb-b9b4-f72fb512b911'),(20191,20183,NULL,8,16,NULL,'2020-03-06 01:14:57','2020-03-25 11:23:37',13,'bbc2b69f-7b2d-498b-bac7-d9ae7f25ee0f'),(21093,21092,NULL,8,2,NULL,'2020-04-07 05:29:26','2020-04-07 05:29:26',1,'b365fbc6-5575-48c0-8dca-d5b6034652cb'),(21094,21092,NULL,8,3,NULL,'2020-04-07 05:29:26','2020-04-07 05:29:26',2,'c55329e7-fd22-4b77-bb2d-4792ebef4afe'),(21097,21092,NULL,8,3,NULL,'2020-04-07 05:29:26','2020-04-07 05:29:26',5,'c4ac9433-4916-47ef-af7a-1f96c12f1fd0'),(21105,21104,NULL,8,2,NULL,'2020-04-07 05:37:43','2020-04-07 05:37:43',1,'d371a024-30c4-469d-9c72-20d00e312196'),(21106,21104,NULL,8,3,NULL,'2020-04-07 05:37:43','2020-04-07 05:37:43',2,'cb7690e5-8a42-40ca-9ed7-a4b9e3cfbfbd'),(21125,21124,NULL,8,2,NULL,'2020-04-14 04:46:29','2020-04-14 04:46:29',1,'2086298f-8fb2-424f-b79c-5e46b546c86b'),(21126,21124,NULL,8,3,NULL,'2020-04-14 04:46:29','2020-04-14 04:46:29',2,'2e18b2b8-4605-45ff-85b3-f27861bab306'),(21127,21124,NULL,8,2,NULL,'2020-04-14 04:46:29','2020-04-14 04:46:29',3,'449aca16-40f3-433d-b4fc-c1382f7b805e'),(21128,21124,NULL,8,3,NULL,'2020-04-14 04:46:29','2020-04-14 04:46:29',4,'f0ab3e1b-970a-4a32-bb2c-88797270768b'),(21374,21373,NULL,8,2,NULL,'2020-04-14 05:47:31','2020-04-14 05:47:31',1,'74fc8db6-bbf8-41a7-8e59-32e08a6fc1bb'),(21375,21373,NULL,8,3,NULL,'2020-04-14 05:47:31','2020-04-14 05:47:31',2,'ce46523c-c8f5-4664-840c-1b48fd56f619'),(21378,21373,NULL,8,12,NULL,'2020-04-14 05:47:31','2020-04-14 05:47:31',5,'b9b2c9fc-811d-48d0-8b5b-66b240c0d5bf'),(21380,21373,NULL,8,12,NULL,'2020-04-14 05:47:31','2020-04-14 05:47:31',7,'5a248b50-7117-4e3f-a7ce-feda85c4710f'),(21381,21373,NULL,8,3,NULL,'2020-04-14 05:47:31','2020-04-14 05:47:31',8,'d67eb762-8e52-4d7a-b835-47a535fe7495'),(21382,21373,NULL,8,12,NULL,'2020-04-14 05:47:31','2020-04-14 05:47:31',9,'fb79d095-a0df-478d-939b-7bba3c1d4ce2'),(21383,21373,NULL,8,3,NULL,'2020-04-14 05:47:31','2020-04-14 05:47:31',10,'ebfe306c-3ea8-4a1a-8174-a2426fddf634'),(21385,21384,NULL,8,2,NULL,'2020-04-14 05:48:10','2020-04-14 05:48:10',1,'a75ee289-bfb5-4b5e-af97-d0fb7817b905'),(21386,21384,NULL,8,3,NULL,'2020-04-14 05:48:10','2020-04-14 05:48:10',2,'16be150e-7acc-4905-8b74-b478381aa3a2'),(21388,21384,NULL,8,3,NULL,'2020-04-14 05:48:10','2020-04-14 05:48:10',4,'f2dc35a8-97e2-4df4-8396-57459343e17a'),(21389,21384,NULL,8,12,NULL,'2020-04-14 05:48:10','2020-04-14 05:48:10',5,'4d9ebdde-4eff-44dc-a785-2adc8a6f70e0'),(21390,21384,NULL,8,3,NULL,'2020-04-14 05:48:10','2020-04-14 05:48:10',6,'a031503e-03cd-450c-975f-f1864ff993ae'),(21391,21384,NULL,8,12,NULL,'2020-04-14 05:48:10','2020-04-14 05:48:10',7,'97595ef5-b8eb-4933-8ee3-05d12b47913e'),(21392,21384,NULL,8,3,NULL,'2020-04-14 05:48:10','2020-04-14 05:48:10',8,'cdcf247a-1b10-4b7a-83ad-319413cc5d84'),(21393,21384,NULL,8,12,NULL,'2020-04-14 05:48:10','2020-04-14 05:48:10',9,'935930ef-0dd3-46a0-9c94-e83aa414ad98'),(21905,21904,NULL,8,2,NULL,'2020-04-24 01:21:51','2020-04-24 01:21:51',1,'5d761cd8-dfe0-4c3e-92f1-aa3aeb4ef0e0'),(21906,21904,NULL,8,3,NULL,'2020-04-24 01:21:51','2020-04-24 01:21:51',2,'df85e64c-a3ba-4ae0-a44d-0fd86629effd'),(21907,21904,NULL,8,2,NULL,'2020-04-24 01:21:51','2020-04-24 01:21:51',3,'e568fd9a-6633-4143-9197-9dc48f246065'),(21908,21904,NULL,8,7,NULL,'2020-04-24 01:21:51','2020-04-24 01:21:51',4,'f07a4a82-da6e-4747-bf9f-8089b5652f79'),(21909,21904,NULL,8,5,NULL,'2020-04-24 01:21:51','2020-04-24 01:21:51',5,'fda0d0a3-b5db-4606-8ec8-4244172f83d7'),(21910,21904,NULL,8,2,NULL,'2020-04-24 01:21:51','2020-04-24 01:21:51',6,'d546dc2d-2b8b-4dbf-848c-b8ed6272eb85'),(21911,21904,NULL,8,3,NULL,'2020-04-24 01:21:51','2020-04-24 01:21:51',7,'5766d751-9113-40e4-982d-ca5a6b6dd9d2'),(21912,21904,NULL,8,12,NULL,'2020-04-24 01:21:51','2020-04-24 01:21:51',8,'ef6de6a9-d79c-48b1-a12b-9e95f9fc3891'),(21913,21904,NULL,8,2,NULL,'2020-04-24 01:21:51','2020-04-24 01:21:51',9,'4dcb0739-0682-4018-a04d-8e15f86727a4'),(21916,21915,NULL,8,2,NULL,'2020-04-24 01:27:37','2020-04-24 01:27:37',1,'e3c397d0-3687-46ed-8f3e-e85ba2e42ed7'),(21917,21915,NULL,8,18,NULL,'2020-04-24 01:27:37','2020-04-24 01:27:37',2,'362cc599-b0ea-4a96-abb1-9d997c6841fc'),(21918,21915,NULL,8,2,NULL,'2020-04-24 01:27:37','2020-04-24 01:27:37',3,'02e9aa5e-9922-4a60-8340-7cf2a0fbdb93'),(21919,21915,NULL,8,15,NULL,'2020-04-24 01:27:37','2020-04-24 01:27:37',4,'29da50ac-2308-4274-b028-a78162b5e3f8'),(21977,21976,NULL,8,2,NULL,'2020-04-24 05:44:09','2020-04-24 05:44:09',1,'84f91061-812e-4945-acba-eaa948bf2259'),(21978,21976,NULL,8,3,NULL,'2020-04-24 05:44:09','2020-04-24 05:44:09',2,'75e8ebb2-c8e7-409e-8080-ae8cf748d193'),(21979,21976,NULL,8,2,NULL,'2020-04-24 05:44:09','2020-04-24 05:44:09',3,'fd08e407-b81c-413d-b494-8d069d5faeba'),(22297,22296,NULL,8,2,NULL,'2020-04-24 06:32:39','2020-04-24 06:32:39',1,'3234aa3f-205a-4474-990b-4a77bfe8ed07'),(22298,22296,NULL,8,3,NULL,'2020-04-24 06:32:39','2020-04-24 06:32:39',2,'ec2f7aaf-4e64-4875-9be3-f9d0c2230b61'),(22300,22296,NULL,8,4,NULL,'2020-04-24 06:32:39','2020-04-24 06:32:39',3,'eec28273-73f7-4ec1-8af7-577379ba661f'),(22301,22296,NULL,8,3,NULL,'2020-04-24 06:32:39','2020-04-24 06:32:39',4,'c475f2a0-e566-4fa3-8b7e-83812d9b84ce'),(22303,22296,NULL,8,3,NULL,'2020-04-24 06:32:39','2020-04-24 06:32:39',6,'895c4b80-892b-4e45-83c9-e1c2ae8af1c9'),(22332,22331,NULL,8,2,NULL,'2020-04-27 01:48:07','2020-04-27 01:48:07',2,'c1a988b9-d59b-4eb8-9854-b9b31f705662'),(22333,22331,NULL,8,3,NULL,'2020-04-27 01:48:07','2020-04-27 01:48:07',3,'12b85c97-8b6b-4810-afe5-ab70df3f7036'),(22334,22331,NULL,8,2,NULL,'2020-04-27 01:48:07','2020-04-27 01:48:07',6,'cabadd3d-c957-4390-b5fb-47fe1ba0893f'),(22335,22331,NULL,8,3,NULL,'2020-04-27 01:48:07','2020-04-27 01:48:07',7,'74fe7c93-d996-44fe-9f53-7fe315d049bd'),(22336,22331,NULL,8,2,NULL,'2020-04-27 01:48:07','2020-04-27 01:48:07',10,'0d4bfbd1-b97b-4f9b-a8d5-8d899f259831'),(22337,22331,NULL,8,21,NULL,'2020-04-27 01:48:07','2020-04-27 01:48:07',11,'1edbc91b-65da-4732-a46c-df1d9467ae0d'),(22405,22404,NULL,8,2,NULL,'2020-04-27 06:18:03','2020-04-27 06:18:03',1,'24f78f97-b0c7-4662-bcf0-e379097c0c08'),(22406,22404,NULL,8,3,NULL,'2020-04-27 06:18:03','2020-04-27 06:18:03',2,'62ef8e51-0f7b-44df-9ca7-160af6218dd4'),(22407,22404,NULL,8,12,NULL,'2020-04-27 06:18:03','2020-04-27 06:18:03',3,'78646e1a-9654-43d4-b9c9-5957ca80429e'),(22422,22421,NULL,8,2,NULL,'2020-04-27 06:23:26','2020-04-27 06:23:26',1,'1e88abcf-2363-431c-8797-5acf061dbb91'),(22423,22421,NULL,8,3,NULL,'2020-04-27 06:23:26','2020-04-27 06:23:26',2,'21438856-4731-4125-9560-fb931c89525f'),(22424,22421,NULL,8,12,NULL,'2020-04-27 06:23:26','2020-04-27 06:23:26',3,'36436d03-685e-48ef-ab9e-f13ed0779dcf'),(22425,22421,NULL,8,2,NULL,'2020-04-27 06:23:26','2020-04-27 06:23:26',4,'2b74ac27-793e-4e69-af4e-43749b560ba7'),(22426,22421,NULL,8,3,NULL,'2020-04-27 06:23:26','2020-04-27 06:23:26',5,'573ae2dd-bbf5-4f2f-98fd-04f5abf832be'),(22428,22427,NULL,8,2,NULL,'2020-04-27 06:30:42','2020-04-27 06:30:42',1,'9196f39a-f1bf-4802-b817-18d2836c4fe8'),(22429,22427,NULL,8,3,NULL,'2020-04-27 06:30:42','2020-04-27 06:30:42',2,'0a5e5d60-6559-4baf-b8d2-6f73a7fc4872'),(27861,27859,NULL,8,3,NULL,'2020-05-12 00:14:36','2020-05-12 00:14:36',2,'e80702e6-feec-45d0-a897-7d6b19ee0c85'),(27889,27888,NULL,8,2,NULL,'2020-05-12 00:23:22','2020-05-12 00:23:22',1,'4d3c1dca-9dff-4723-90b4-3a9ffa2017f1'),(27894,27888,NULL,8,3,NULL,'2020-05-12 00:23:22','2020-05-12 00:23:22',6,'03c226a6-63c8-4bea-b5cd-07a8c4c48c80'),(27896,27888,NULL,8,3,NULL,'2020-05-12 00:23:22','2020-05-12 00:23:22',8,'7c62f9f7-487a-4030-8a96-1229a9d4a49e'),(27898,27888,NULL,8,3,NULL,'2020-05-12 00:23:22','2020-05-12 00:23:22',10,'a5a5e9a3-a69c-46d8-971b-351fd59610c3'),(27900,27888,NULL,8,3,NULL,'2020-05-12 00:23:22','2020-05-12 00:23:22',12,'c8a588a5-f264-4ffc-9f29-e0cd8af6f1dc'),(27973,27971,NULL,8,3,NULL,'2020-05-12 02:44:47','2020-05-12 02:44:47',2,'69b96324-04f2-4899-bfb1-5501a6a39c0b'),(27975,27971,NULL,8,15,NULL,'2020-05-12 02:44:47','2020-05-12 02:44:47',4,'4c493e56-ceec-4ed3-b1d4-48dedf4b78e2'),(27978,27971,NULL,8,3,NULL,'2020-05-12 02:44:47','2020-05-12 02:44:47',6,'35edb62d-0689-4766-b233-f99e62c8d0c6'),(27998,27996,NULL,8,3,NULL,'2020-05-12 02:51:13','2020-05-12 02:51:13',2,'3b38d3c3-0c5d-4813-a46e-507a3b9bf992'),(28000,27996,NULL,8,3,NULL,'2020-05-12 02:51:13','2020-05-12 02:51:13',4,'51957a16-6d7b-426d-819a-54e93fe0d305'),(38116,38114,NULL,8,3,NULL,'2020-05-19 05:27:59','2020-05-19 05:27:59',2,'e57a4a47-deaf-4440-9529-1da12719d7d3'),(38118,38114,NULL,8,3,NULL,'2020-05-19 05:27:59','2020-05-19 05:27:59',4,'de0b864c-9e6f-4d40-8ac4-7d6aea251ef2'),(38120,38114,NULL,8,2,NULL,'2020-05-19 05:27:59','2020-05-19 05:27:59',6,'ad70600e-dfc0-44d7-b311-3afd40953f27'),(38121,38114,NULL,8,3,NULL,'2020-05-19 05:27:59','2020-05-19 05:27:59',7,'9ad209d0-519a-449b-a10f-aafe82be2ad8'),(38122,38114,NULL,8,2,NULL,'2020-05-19 05:27:59','2020-05-19 05:27:59',8,'b254b1c1-2da0-41b0-a274-8fce365be688'),(38123,38114,NULL,8,3,NULL,'2020-05-19 05:27:59','2020-05-19 05:27:59',9,'291eb151-88ba-46c3-ab9b-b5f669f0e99a'),(45251,45250,NULL,8,2,NULL,'2020-05-22 06:02:42','2020-05-22 06:02:42',1,'9db9c04b-9412-48e6-8059-19d93c6a5b43'),(45252,45250,NULL,8,3,NULL,'2020-05-22 06:02:42','2020-05-22 06:02:42',2,'addf0954-42b8-45de-87a5-a9eca4692a48'),(45253,45250,NULL,8,2,NULL,'2020-05-22 06:02:42','2020-05-22 06:02:42',3,'a3fd4f8f-c6a1-4c57-a627-0e8f8abedd9e'),(45254,45250,NULL,8,21,NULL,'2020-05-22 06:02:42','2020-05-22 06:02:42',4,'71fc8fb0-db63-4eaa-8850-8d2c679e8dd7'),(45266,45265,NULL,8,2,NULL,'2020-05-22 06:04:34','2020-05-22 06:04:34',1,'5d6d7f6d-8944-462c-9f7e-6a9a2fe43795'),(45267,45265,NULL,8,3,NULL,'2020-05-22 06:04:34','2020-05-22 06:04:34',2,'f4ec745b-10e8-4a07-a766-e3ec9dd51a7e'),(48171,48168,NULL,8,2,NULL,'2020-05-26 03:58:31','2020-05-26 03:58:31',3,'c9279851-9b43-442e-a785-1a2073a1fa11'),(48172,48168,NULL,8,3,NULL,'2020-05-26 03:58:31','2020-05-26 03:58:31',4,'bf1d2c61-a7bf-4a3a-9845-536789b3863e'),(48174,48168,NULL,8,3,NULL,'2020-05-26 03:58:31','2020-05-26 03:58:31',5,'143a6913-a971-4e07-b15b-8e5478651228'),(48176,48168,NULL,8,3,NULL,'2020-05-26 03:58:31','2020-05-26 03:58:31',6,'730961b6-8575-409c-9218-6568e6b3a399'),(48179,48168,NULL,8,3,NULL,'2020-05-26 03:58:31','2020-05-26 03:58:31',8,'84156241-76ad-423d-9bda-f82b33b6389d'),(74281,74279,NULL,8,21,NULL,'2020-06-12 04:21:01','2020-06-12 04:21:01',2,'980db929-e48c-4149-8d74-374293443848'),(74284,74279,NULL,8,12,NULL,'2020-06-12 04:21:02','2020-06-12 04:21:02',3,'19219a98-6c0c-420b-91f6-ff3344e046c1'),(74286,74279,NULL,8,3,NULL,'2020-06-12 04:21:02','2020-06-12 04:21:02',5,'1e1ac89b-d93a-41b5-b97b-447df6863684'),(74287,74279,NULL,8,2,NULL,'2020-06-12 04:21:02','2020-06-12 04:21:02',6,'e337d067-d8cd-4050-9547-ea37b3cdfec7'),(74288,74279,NULL,8,15,NULL,'2020-06-12 04:21:02','2020-06-12 04:21:02',7,'b0e9fe81-a407-4d27-b56e-5c4355f46ffe'),(87594,87592,NULL,8,3,NULL,'2020-06-17 06:21:04','2020-06-17 06:21:04',2,'85c438ce-c9df-427b-ba68-3c78bdf072f4'),(87595,87592,NULL,8,2,NULL,'2020-06-17 06:21:05','2020-06-17 06:21:05',3,'e2ff31d6-6eb0-47b6-a91a-a4cae9665121'),(87596,87592,NULL,8,3,NULL,'2020-06-17 06:21:05','2020-06-17 06:21:05',4,'a40218e8-86ae-48f6-9bb1-60a716b80b36'),(87597,87592,NULL,8,12,NULL,'2020-06-17 06:21:05','2020-06-17 06:21:05',5,'417d7058-6b49-4ff3-8c31-35453eb03aa8'),(87599,87592,NULL,8,15,NULL,'2020-06-17 06:21:05','2020-06-17 06:21:05',7,'e6f3c944-05aa-4462-98dc-3b702742d0c7'),(87601,87592,NULL,8,3,NULL,'2020-06-17 06:21:05','2020-06-17 06:21:05',9,'ad0ca54e-39f4-4d8c-adfc-03be90adb8a2'),(87611,87609,NULL,8,3,NULL,'2020-06-17 06:23:49','2020-06-17 06:23:49',2,'0afd215b-59dc-4094-8cb2-114b9058f512'),(87615,87613,NULL,8,9,NULL,'2020-06-17 06:35:40','2020-06-17 06:35:40',2,'3352a1b4-a785-41db-ab5d-95e81d6fbdd1'),(87617,87613,NULL,8,3,NULL,'2020-06-17 06:35:40','2020-06-17 06:35:40',4,'c6f01fc6-76fb-479e-924e-513551fb59a9'),(87619,87613,NULL,8,2,NULL,'2020-06-17 06:35:40','2020-06-17 06:35:40',5,'cf659009-d6a7-495b-9504-05b6683bfd84'),(94438,94437,NULL,8,2,NULL,'2020-06-29 04:30:02','2020-06-29 04:30:02',1,'9a70f820-b33a-4f88-a63b-bfa47d94bc72'),(94439,94437,NULL,8,5,NULL,'2020-06-29 04:30:02','2020-06-29 04:30:02',2,'f78bcb8a-2c9b-4be8-9149-ffaad79be38a'),(94440,94437,NULL,8,2,NULL,'2020-06-29 04:30:02','2020-06-29 04:30:02',3,'de4e76f4-04d5-4d59-898d-a2d7f8d550a4'),(94441,94437,NULL,8,9,NULL,'2020-06-29 04:30:02','2020-06-29 04:30:02',4,'dc199356-c6cf-4475-9c73-7ff8a629b95e'),(94443,94437,NULL,8,2,NULL,'2020-06-29 04:30:02','2020-06-29 04:30:02',5,'aaa7e7b8-d5ac-4ba0-b85e-173c95c11ef5'),(94444,94437,NULL,8,3,NULL,'2020-06-29 04:30:02','2020-06-29 04:30:02',6,'d5088215-0ef7-498f-90a3-00d2e05f0e25'),(94445,94437,NULL,8,12,NULL,'2020-06-29 04:30:02','2020-06-29 04:30:02',7,'03a4e0f9-2873-4f6a-a500-eff1404801c4'),(94446,94437,NULL,8,2,NULL,'2020-06-29 04:30:02','2020-06-29 04:30:02',8,'34f8295f-b74c-49e6-a47d-006d536a2c96'),(94447,94437,NULL,8,9,NULL,'2020-06-29 04:30:02','2020-06-29 04:30:02',9,'a4065765-568d-4476-a1de-a0eb952add01'),(94449,94437,NULL,8,2,NULL,'2020-06-29 04:30:02','2020-06-29 04:30:02',10,'41126ff0-edea-47fd-b5f6-ef11d3f7f78a'),(94450,94437,NULL,8,9,NULL,'2020-06-29 04:30:02','2020-06-29 04:30:02',11,'eecbe77d-c570-411f-91d8-9facedde1e8f'),(120601,120599,NULL,8,2,NULL,'2020-10-30 05:27:02','2020-10-30 05:27:02',1,'0c7fcf0c-39c6-46bc-bed8-95a08854ff51'),(120602,120599,NULL,8,14,NULL,'2020-10-30 05:27:02','2020-10-30 05:27:02',2,'92246ee9-028c-4f9d-8211-a8ff7a5d6544'),(120603,120599,NULL,8,3,NULL,'2020-10-30 05:27:02','2020-10-30 05:27:02',3,'c09f3cb4-b482-4a6a-a25d-80795f630fd8'),(120604,120599,NULL,8,12,NULL,'2020-10-30 05:27:02','2020-10-30 05:27:02',4,'a41360f1-e029-4394-9f68-db4c8627b0fd'),(120607,120605,NULL,8,2,NULL,'2020-10-30 05:27:36','2020-10-30 05:27:36',1,'816149f7-2977-47f2-815c-b9f85b045f6b'),(120608,120605,NULL,8,14,NULL,'2020-10-30 05:27:36','2020-10-30 05:27:36',2,'aa0977dc-282d-40de-94c8-1d742046afd2'),(120609,120605,NULL,8,3,NULL,'2020-10-30 05:27:36','2020-10-30 05:27:36',3,'17b5e09e-384c-49f1-abc8-8c348d999ec6'),(120610,120605,NULL,8,12,NULL,'2020-10-30 05:27:36','2020-10-30 05:27:36',4,'dff36771-5de4-4ba6-87f8-80da7317bfc2'),(120617,94467,NULL,8,2,NULL,'2020-10-30 05:29:06','2020-10-30 05:29:06',1,'69d8a78e-19c7-4a84-8ff6-a287e782d480'),(120618,94467,NULL,8,3,NULL,'2020-10-30 05:29:06','2020-10-30 05:29:06',2,'143506a7-bbd6-4fc3-8137-aeaf41832867'),(120619,94467,NULL,8,12,NULL,'2020-10-30 05:29:06','2020-10-30 05:29:06',3,'a2e40b34-c29e-49ba-b006-1a7f5980b2e2'),(120622,120620,NULL,8,2,NULL,'2020-10-30 05:29:06','2020-10-30 05:29:06',1,'794344d5-7bee-4349-8838-89609a95eecf'),(120623,120620,NULL,8,3,NULL,'2020-10-30 05:29:06','2020-10-30 05:29:06',2,'ea053d6a-108f-40c6-92b7-8bc31a8d6c76'),(120624,120620,NULL,8,12,NULL,'2020-10-30 05:29:06','2020-10-30 05:29:06',3,'ff763d67-dfb6-4466-b3d8-601712c20451'),(140013,17998,NULL,8,3,NULL,'2021-03-12 06:35:56','2021-03-12 06:35:56',4,'27438f0a-d880-42f5-b71c-cfc7627ff894'),(140014,17998,NULL,8,2,NULL,'2021-03-12 06:35:56','2021-03-12 06:35:56',5,'eb340c20-1f5f-4c05-9f1b-8d9e278bec4c'),(140020,17998,NULL,8,3,NULL,'2021-03-12 06:35:56','2021-03-12 06:35:56',8,'1e869229-b6a4-4977-b077-3e39402326ea'),(140024,17998,NULL,8,3,NULL,'2021-03-12 06:35:56','2021-03-12 06:35:56',10,'306fd5b2-b41f-4349-83a4-6c81b4889055'),(140025,17998,NULL,8,16,NULL,'2021-03-12 06:35:56','2021-03-12 06:35:56',11,'80c4cb93-f448-4a44-afb0-8b4e54a91958'),(140027,17998,NULL,8,3,NULL,'2021-03-12 06:35:56','2021-03-12 06:35:56',13,'b51b680e-2d1c-44bf-bd83-e5ee92d7a439'),(140036,17998,NULL,8,15,NULL,'2021-03-12 06:35:57','2021-03-12 06:35:57',16,'433f63b8-81d5-4eea-85c9-121a79334e5b'),(140040,17998,NULL,8,3,NULL,'2021-03-12 06:35:57','2021-03-12 06:35:57',18,'892d79bf-a6b6-4942-8730-300d36663aed'),(140042,17998,NULL,8,15,NULL,'2021-03-12 06:35:57','2021-03-12 06:35:57',20,'c75169e1-a70f-48ce-b331-02683e107722'),(140045,17998,NULL,8,2,NULL,'2021-03-12 06:35:57','2021-03-12 06:35:57',21,'eeef0e6a-fe2f-4894-92de-f1ff35e7afa5'),(140088,140087,NULL,8,2,NULL,'2021-03-12 06:36:05','2021-03-12 06:36:05',1,'0fbf64e9-27ec-4af2-9bcf-625b688c0189'),(140092,140087,NULL,8,2,NULL,'2021-03-12 06:36:05','2021-03-12 06:36:05',5,'e94e0a7c-591a-497a-970a-5aa968f74822'),(140093,140087,NULL,8,3,NULL,'2021-03-12 06:36:05','2021-03-12 06:36:05',6,'d593e6b2-4076-4c91-87c6-d0608afcd136'),(140105,140087,NULL,8,3,NULL,'2021-03-12 06:36:05','2021-03-12 06:36:05',13,'19b6803c-9b79-4599-a074-6b4fa9c94d27'),(140113,140087,NULL,8,2,NULL,'2021-03-12 06:36:05','2021-03-12 06:36:05',15,'8e89f332-8e6d-496d-b19b-33eadadd04fb'),(140117,140087,NULL,8,2,NULL,'2021-03-12 06:36:06','2021-03-12 06:36:06',17,'c83c64fa-31a3-4654-b506-21bcecafef51'),(140119,140087,NULL,8,2,NULL,'2021-03-12 06:36:06','2021-03-12 06:36:06',19,'c77ee04c-3776-4a1d-9424-151e7b2d79bc'),(140123,140087,NULL,8,2,NULL,'2021-03-12 06:36:06','2021-03-12 06:36:06',21,'6170cb0a-3615-4f94-aa0c-a29548364528'),(140124,140087,NULL,8,9,NULL,'2021-03-12 06:36:06','2021-03-12 06:36:06',22,'3faf8555-1a04-49a8-a34d-450a2f855186'),(140189,140187,NULL,8,3,NULL,'2021-03-12 06:44:49','2021-03-12 06:44:49',2,'1fac121a-90d0-45af-9556-051228e352f2'),(140195,140187,NULL,8,3,NULL,'2021-03-12 06:44:50','2021-03-12 06:44:50',4,'aa6417c1-8c3d-4078-b95c-1d9a4783684a'),(140197,140187,NULL,8,2,NULL,'2021-03-12 06:44:50','2021-03-12 06:44:50',5,'7c0a18ec-517e-4ab9-a99b-40021478cc14'),(140205,140187,NULL,8,3,NULL,'2021-03-12 06:44:50','2021-03-12 06:44:50',10,'c5b8cdc8-19c8-498b-b4eb-1ffb561da002'),(140210,140187,NULL,8,15,NULL,'2021-03-12 06:44:50','2021-03-12 06:44:50',13,'7599447b-3b28-488c-919c-527b03d5e4b2'),(140212,140187,NULL,8,2,NULL,'2021-03-12 06:44:50','2021-03-12 06:44:50',14,'c696827a-91da-4a00-9ad5-e109993e458a'),(141354,141353,NULL,8,2,NULL,'2021-03-16 05:21:50','2021-03-16 05:21:50',1,'fa8f6c52-fe23-4d30-ae87-8ed873b2957f'),(141355,141353,NULL,8,3,NULL,'2021-03-16 05:21:50','2021-03-16 05:21:50',2,'dcb5ad11-43f3-47ae-ba83-245054ac64dd'),(141356,141353,NULL,8,2,NULL,'2021-03-16 05:21:50','2021-03-16 05:21:50',3,'22913656-70b7-4220-82ba-881038cc072b'),(141357,141353,NULL,8,3,NULL,'2021-03-16 05:21:50','2021-03-16 05:21:50',4,'be368750-aca2-42d0-806a-e9d6c999e8d2'),(141359,141353,NULL,8,2,NULL,'2021-03-16 05:21:50','2021-03-16 05:21:50',5,'3b015bbf-ec55-4692-aa27-c1d635af173b'),(141360,141353,NULL,8,3,NULL,'2021-03-16 05:21:50','2021-03-16 05:21:50',6,'fbebac52-321b-4ef3-b5ce-0beaa2da5a45'),(141363,141362,NULL,8,2,NULL,'2021-03-16 05:22:42','2021-03-16 05:22:42',1,'79655372-3efb-4330-bff2-ac7ee2dfcbe3'),(141364,141362,NULL,8,3,NULL,'2021-03-16 05:22:42','2021-03-16 05:22:42',2,'8db18444-4352-4ae4-bd4b-fd346c9c3546'),(141365,141362,NULL,8,2,NULL,'2021-03-16 05:22:42','2021-03-16 05:22:42',3,'22d4794e-e8a0-4b54-a4ae-b3f77a830d77'),(141366,141362,NULL,8,3,NULL,'2021-03-16 05:22:42','2021-03-16 05:22:42',4,'8fc59c6e-ee36-445a-b9a9-35124cd3cfb8'),(141368,141362,NULL,8,2,NULL,'2021-03-16 05:22:42','2021-03-16 05:22:42',5,'3ac4673d-9f22-4eba-83ed-b12865ad0f12'),(141369,141362,NULL,8,3,NULL,'2021-03-16 05:22:42','2021-03-16 05:22:42',6,'c3dd8a5b-92eb-40d2-a8b7-11779c79cdf3'),(142292,142291,NULL,8,2,NULL,'2021-03-16 05:44:22','2021-03-16 05:44:22',1,'e2fed062-2bfe-4a74-8826-e0a29b520285'),(142293,142291,NULL,8,3,NULL,'2021-03-16 05:44:22','2021-03-16 05:44:22',2,'f9d235fd-7220-4f82-81be-8898ada747e2'),(142296,142291,NULL,8,3,NULL,'2021-03-16 05:44:22','2021-03-16 05:44:22',3,'6b236373-9999-4ab5-8a10-a8a5e7007983'),(142299,142291,NULL,8,2,NULL,'2021-03-16 05:44:22','2021-03-16 05:44:22',4,'46e75b3d-7530-4c43-97b4-4e7cf82a733a'),(142300,142291,NULL,8,3,NULL,'2021-03-16 05:44:22','2021-03-16 05:44:22',5,'cc53be2e-3c02-4726-b2bc-b862e569dae7'),(142302,142291,NULL,8,2,NULL,'2021-03-16 05:44:22','2021-03-16 05:44:22',6,'c1f5d64f-62a9-4ee1-ae7a-ef65fdf67334'),(142303,142291,NULL,8,3,NULL,'2021-03-16 05:44:22','2021-03-16 05:44:22',7,'c7961e8f-91c4-4fc3-bd0a-36cf61683a2c'),(142305,142291,NULL,8,3,NULL,'2021-03-16 05:44:22','2021-03-16 05:44:22',8,'950d5003-2f82-4cfa-93c7-b0e605d7b58b'),(142307,142291,NULL,8,2,NULL,'2021-03-16 05:44:22','2021-03-16 05:44:22',9,'72273405-67ba-4949-a4d6-6f07249b5232'),(142308,142291,NULL,8,3,NULL,'2021-03-16 05:44:22','2021-03-16 05:44:22',10,'d638de35-e610-44d9-b820-c68cd95f6de5'),(142310,142291,NULL,8,3,NULL,'2021-03-16 05:44:22','2021-03-16 05:44:22',11,'621140e3-5de4-48a3-a3d6-70deb9c7fa66'),(142312,142291,NULL,8,3,NULL,'2021-03-16 05:44:22','2021-03-16 05:44:22',12,'6465ff4a-a853-460d-afd3-5a66f75e3463'),(142314,142291,NULL,8,2,NULL,'2021-03-16 05:44:22','2021-03-16 05:44:22',13,'381ce3a0-dc8a-4e0b-9d33-9370ce119311'),(142315,142291,NULL,8,15,NULL,'2021-03-16 05:44:22','2021-03-16 05:44:22',14,'eda55fb2-231c-4b58-b5ca-cc3783fce6e9'),(142317,142291,NULL,8,2,NULL,'2021-03-16 05:44:22','2021-03-16 05:44:22',15,'8ed610d1-0173-49f2-88cc-f1f7a80cffb3'),(142318,142291,NULL,8,3,NULL,'2021-03-16 05:44:22','2021-03-16 05:44:22',16,'5157e81d-1c17-4d84-a508-34cb725875f0'),(142320,142291,NULL,8,3,NULL,'2021-03-16 05:44:22','2021-03-16 05:44:22',17,'f819338b-491e-47b1-8e4a-d46e2fc982b8'),(142324,142323,NULL,8,2,NULL,'2021-03-16 05:44:26','2021-03-16 05:44:26',1,'148e309c-9650-4568-a083-2d2a54713769'),(142325,142323,NULL,8,3,NULL,'2021-03-16 05:44:26','2021-03-16 05:44:26',2,'fa7d45f8-7129-4f12-988e-f0ce4516906c'),(142328,142323,NULL,8,3,NULL,'2021-03-16 05:44:26','2021-03-16 05:44:26',3,'ae943c1c-7e06-4427-9a42-4f4b2caaac32'),(142331,142323,NULL,8,2,NULL,'2021-03-16 05:44:26','2021-03-16 05:44:26',4,'1323339d-6502-41f8-b550-cf7b3430cf8b'),(142332,142323,NULL,8,3,NULL,'2021-03-16 05:44:26','2021-03-16 05:44:26',5,'c34a9c83-d43d-4af6-8056-ed31d42453ea'),(142334,142323,NULL,8,2,NULL,'2021-03-16 05:44:26','2021-03-16 05:44:26',6,'2dd44ce1-58cb-44ed-b016-743b796b8db0'),(142335,142323,NULL,8,3,NULL,'2021-03-16 05:44:26','2021-03-16 05:44:26',7,'5657c9f2-403e-4874-a1b4-edf7e9a9cc2c'),(142337,142323,NULL,8,3,NULL,'2021-03-16 05:44:26','2021-03-16 05:44:26',8,'5bb8ba71-9bf4-4f89-98b7-a5f11a7869f7'),(142339,142323,NULL,8,2,NULL,'2021-03-16 05:44:26','2021-03-16 05:44:26',9,'d7708644-0ef9-448d-8025-09b3b5be4e78'),(142340,142323,NULL,8,3,NULL,'2021-03-16 05:44:26','2021-03-16 05:44:26',10,'80b2dc76-3dd1-4b69-a435-906f01c57b0a'),(142342,142323,NULL,8,3,NULL,'2021-03-16 05:44:26','2021-03-16 05:44:26',11,'de80bae1-b4ee-470f-bb6a-032b4735b11a'),(142344,142323,NULL,8,3,NULL,'2021-03-16 05:44:26','2021-03-16 05:44:26',12,'cacb7030-c579-40ae-9d29-37cd571ab6dc'),(142346,142323,NULL,8,2,NULL,'2021-03-16 05:44:26','2021-03-16 05:44:26',13,'40c84616-6c30-4b54-a3b0-12d1dc087284'),(142347,142323,NULL,8,15,NULL,'2021-03-16 05:44:26','2021-03-16 05:44:26',14,'345516cc-6e46-4293-a8b9-e6c5d155a691'),(142349,142323,NULL,8,2,NULL,'2021-03-16 05:44:26','2021-03-16 05:44:26',15,'bea98cb8-cbf7-4977-9995-54e8c1835b55'),(142350,142323,NULL,8,3,NULL,'2021-03-16 05:44:26','2021-03-16 05:44:26',16,'500699d1-f73a-4772-a8ab-a382ff07dccf'),(142352,142323,NULL,8,3,NULL,'2021-03-16 05:44:26','2021-03-16 05:44:26',17,'5becbcd0-9ef1-491b-8b5c-d50971c6ce19'),(142645,142644,NULL,8,2,NULL,'2021-03-17 00:23:11','2021-03-17 00:23:11',1,'59e11885-1295-48f4-8edd-fce8084b43fc'),(142649,142644,NULL,8,3,NULL,'2021-03-17 00:23:11','2021-03-17 00:23:11',3,'2216b07f-aaa1-4dc6-8353-f16200e9e9ee'),(142652,142644,NULL,8,2,NULL,'2021-03-17 00:23:11','2021-03-17 00:23:11',4,'e5d9d532-ebe2-4cbd-973a-0f1b480e3f6b'),(142653,142644,NULL,8,3,NULL,'2021-03-17 00:23:11','2021-03-17 00:23:11',5,'83e82607-ae77-4bf6-85ca-9aba0ba48780'),(142655,142644,NULL,8,2,NULL,'2021-03-17 00:23:11','2021-03-17 00:23:11',6,'a3ea696a-c393-43e8-a4f9-71f219b18f86'),(142660,142644,NULL,8,2,NULL,'2021-03-17 00:23:11','2021-03-17 00:23:11',9,'5ee47abc-263c-49a0-b59b-ae13308828ca'),(142661,142644,NULL,8,3,NULL,'2021-03-17 00:23:11','2021-03-17 00:23:11',10,'19c97213-5eb4-4f22-8f6c-bcca7ff68bc8'),(142665,142644,NULL,8,3,NULL,'2021-03-17 00:23:11','2021-03-17 00:23:11',12,'cda6065b-cc49-4534-ab79-756d7bd44166'),(142668,142644,NULL,8,15,NULL,'2021-03-17 00:23:11','2021-03-17 00:23:11',14,'eebb2c54-9fe8-4805-bac0-5ada60af10b1'),(142670,142644,NULL,8,2,NULL,'2021-03-17 00:23:11','2021-03-17 00:23:11',15,'0d37aea6-5440-480c-9d2b-78a5225bfa13'),(142677,142676,NULL,8,2,NULL,'2021-03-17 00:48:03','2021-03-17 00:48:03',1,'ecac3db1-dad7-4aaf-b101-7c99ba8814a3'),(142681,142676,NULL,8,3,NULL,'2021-03-17 00:48:03','2021-03-17 00:48:03',3,'c03f3a7a-4d8a-407d-a0cd-40786596528b'),(142684,142676,NULL,8,2,NULL,'2021-03-17 00:48:03','2021-03-17 00:48:03',4,'5fb0d84e-3ad0-4df0-adb0-00f62438a101'),(142688,142676,NULL,8,3,NULL,'2021-03-17 00:48:03','2021-03-17 00:48:03',7,'ea07fe41-3b55-49d2-9056-679b021d73f0'),(142690,142676,NULL,8,3,NULL,'2021-03-17 00:48:03','2021-03-17 00:48:03',8,'a675d6ac-1b81-4270-9d5c-e10c7601d363'),(142692,142676,NULL,8,2,NULL,'2021-03-17 00:48:03','2021-03-17 00:48:03',9,'59870242-93ee-409a-87cd-325b8190ae8d'),(142697,142676,NULL,8,3,NULL,'2021-03-17 00:48:03','2021-03-17 00:48:03',12,'560409ae-b0de-4e99-a994-060dbc23af25'),(142699,142676,NULL,8,2,NULL,'2021-03-17 00:48:03','2021-03-17 00:48:03',13,'d3a3f9c3-9c64-434e-8ef0-f9d7e753a4fc'),(142700,142676,NULL,8,15,NULL,'2021-03-17 00:48:03','2021-03-17 00:48:03',14,'e8ad0084-69e4-48b5-b91b-69d87b5c7ddd'),(142702,142676,NULL,8,2,NULL,'2021-03-17 00:48:03','2021-03-17 00:48:03',15,'8913da6c-89e0-4246-a0b3-8b40a813a8dd'),(142703,142676,NULL,8,3,NULL,'2021-03-17 00:48:03','2021-03-17 00:48:03',16,'3c1e6ae5-d5e8-4ca2-87d9-39c1726ded77'),(142705,142676,NULL,8,3,NULL,'2021-03-17 00:48:03','2021-03-17 00:48:03',17,'7187cc48-a269-4660-9a31-5c1e6a1e5572'),(142711,142710,NULL,8,2,NULL,'2021-03-17 01:49:47','2021-03-17 01:49:47',1,'a15fd337-ec90-4568-9943-91ac22238a7e'),(142712,142710,NULL,8,3,NULL,'2021-03-17 01:49:47','2021-03-17 01:49:47',2,'2f46737f-3bb8-4cfe-b2a2-9175284a28dd'),(142714,142710,NULL,8,3,NULL,'2021-03-17 01:49:47','2021-03-17 01:49:47',4,'28718ca4-4809-4686-83c9-e9fbc30ba04b'),(142716,142710,NULL,8,3,NULL,'2021-03-17 01:49:47','2021-03-17 01:49:47',6,'4ce19329-663f-4728-9b75-c3a9e1d22b29'),(142717,142710,NULL,8,16,NULL,'2021-03-17 01:49:47','2021-03-17 01:49:47',7,'32736102-6ee4-446d-ac5f-8917f9945d5d'),(142718,142710,NULL,8,3,NULL,'2021-03-17 01:49:47','2021-03-17 01:49:47',8,'603345cf-be95-45e9-bb7d-13bccf2b4a1d'),(142950,142949,NULL,8,2,NULL,'2021-03-17 03:03:57','2021-03-17 03:03:57',1,'4c0d1f67-92a1-4984-be8a-c40a1d3ef007'),(142951,142949,NULL,8,3,NULL,'2021-03-17 03:03:57','2021-03-17 03:03:57',2,'6543fd7d-d4af-452d-b494-5823d5ac95ee'),(142954,142949,NULL,8,2,NULL,'2021-03-17 03:03:57','2021-03-17 03:03:57',4,'e6f875ba-993f-4cb1-8e1e-b90bcd9edcad'),(142960,142949,NULL,8,3,NULL,'2021-03-17 03:03:57','2021-03-17 03:03:57',7,'9581a5f4-d184-4853-8058-d50895cc59bb'),(142962,142949,NULL,8,2,NULL,'2021-03-17 03:03:57','2021-03-17 03:03:57',8,'b20784a5-8a86-422e-8739-d798c6bdb8e7'),(142976,142949,NULL,8,3,NULL,'2021-03-17 03:03:57','2021-03-17 03:03:57',13,'8d3a4387-e65f-4def-b309-16897f7b2164'),(142982,142949,NULL,8,7,NULL,'2021-03-17 03:03:57','2021-03-17 03:03:57',16,'badf1425-bb99-4b40-b490-fa671cd67a81'),(143094,143093,NULL,8,2,NULL,'2021-03-17 03:18:08','2021-03-17 03:18:08',1,'316bfebf-8ce6-4c45-8f12-a6f330240318'),(143099,143093,NULL,8,4,NULL,'2021-03-17 03:18:08','2021-03-17 03:18:08',3,'b4617aaa-593a-417c-9bd8-8b882c8faec0'),(143100,143093,NULL,8,3,NULL,'2021-03-17 03:18:08','2021-03-17 03:18:08',4,'7ce2074c-1b1c-44d0-a698-7609d42d7ecb'),(143105,143093,NULL,8,4,NULL,'2021-03-17 03:18:08','2021-03-17 03:18:08',5,'872c7c42-8b7d-4607-b247-eb409a90752b'),(143106,143093,NULL,8,3,NULL,'2021-03-17 03:18:08','2021-03-17 03:18:08',6,'f7ee531e-b43f-4b5b-8e9f-07aeffc2c92e'),(143109,143093,NULL,8,2,NULL,'2021-03-17 03:18:08','2021-03-17 03:18:08',7,'0422c16e-0c4f-4796-b365-01b464a252fe'),(143110,143093,NULL,8,3,NULL,'2021-03-17 03:18:08','2021-03-17 03:18:08',8,'d6f4f195-4f11-4b5d-836e-f6f94da5f045'),(143111,143093,NULL,8,2,NULL,'2021-03-17 03:18:08','2021-03-17 03:18:08',9,'c16329f8-5d1b-4d9b-96d2-7213990d67d5'),(143112,143093,NULL,8,3,NULL,'2021-03-17 03:18:08','2021-03-17 03:18:08',10,'46379b9c-2950-495a-a2d3-b29620dbecd5'),(143114,143093,NULL,8,2,NULL,'2021-03-17 03:18:08','2021-03-17 03:18:08',11,'a38d0b16-a5a2-442b-a891-9a3473c78b7f'),(143115,143093,NULL,8,3,NULL,'2021-03-17 03:18:08','2021-03-17 03:18:08',12,'04ffbaf8-97c9-4ba1-ae2c-8da73ff676ad'),(143121,143093,NULL,8,2,NULL,'2021-03-17 03:18:08','2021-03-17 03:18:08',13,'e4eb9b20-ecf5-4007-8bf9-88fde13ff863'),(143122,143093,NULL,8,3,NULL,'2021-03-17 03:18:08','2021-03-17 03:18:08',14,'268f3be9-3880-43e1-96b7-4ec5e647df27'),(143123,143093,NULL,8,16,NULL,'2021-03-17 03:18:08','2021-03-17 03:18:08',15,'a47f5379-9e73-49f9-882f-3862a90010d1'),(143124,143093,NULL,8,2,NULL,'2021-03-17 03:18:08','2021-03-17 03:18:08',16,'94d1c596-2859-4df1-b747-f0ee1fa755b7'),(143129,143093,NULL,8,3,NULL,'2021-03-17 03:18:08','2021-03-17 03:18:08',18,'48c9f210-b8b5-4a0a-b1ec-8683f997d1ce'),(143242,143241,NULL,8,2,NULL,'2021-03-18 00:13:44','2021-03-18 00:13:44',1,'22d0fab2-2e16-42bb-9169-8477aec3c3c0'),(143243,143241,NULL,8,3,NULL,'2021-03-18 00:13:45','2021-03-18 00:13:45',2,'0071d617-4653-4950-8fa7-c374bd33cf61'),(143246,143241,NULL,8,3,NULL,'2021-03-18 00:13:45','2021-03-18 00:13:45',3,'4c74faa9-92be-4263-af48-aca50ae46f72'),(143249,143241,NULL,8,2,NULL,'2021-03-18 00:13:45','2021-03-18 00:13:45',4,'c151eb61-8a5a-4f43-882d-8789b6141c75'),(143250,143241,NULL,8,3,NULL,'2021-03-18 00:13:45','2021-03-18 00:13:45',5,'60e5a523-6727-4dfb-a7f2-38fc5a3101cf'),(143252,143241,NULL,8,2,NULL,'2021-03-18 00:13:45','2021-03-18 00:13:45',6,'72367cdd-e64d-44f1-bcad-8a355f869291'),(143253,143241,NULL,8,3,NULL,'2021-03-18 00:13:45','2021-03-18 00:13:45',7,'3460d28e-35dc-4964-a608-db2b29c49a26'),(143255,143241,NULL,8,3,NULL,'2021-03-18 00:13:45','2021-03-18 00:13:45',8,'830dd26a-dda8-4503-9fac-d5eb4a7eab8f'),(143257,143241,NULL,8,2,NULL,'2021-03-18 00:13:45','2021-03-18 00:13:45',9,'e8c648c6-9dbc-4fb7-8665-907704fffc51'),(143258,143241,NULL,8,3,NULL,'2021-03-18 00:13:45','2021-03-18 00:13:45',10,'50b9d534-2197-4f11-a9d9-acc66ddf3dd3'),(143260,143241,NULL,8,3,NULL,'2021-03-18 00:13:45','2021-03-18 00:13:45',11,'4a019f6a-ef3f-4f38-a045-9b5470ca1bc3'),(143262,143241,NULL,8,3,NULL,'2021-03-18 00:13:45','2021-03-18 00:13:45',12,'4b4bd9ee-5898-4f9c-96b6-6065895b68c4'),(143264,143241,NULL,8,2,NULL,'2021-03-18 00:13:45','2021-03-18 00:13:45',13,'76ed1f00-6e95-47e9-a794-b02cef5cceee'),(143265,143241,NULL,8,15,NULL,'2021-03-18 00:13:45','2021-03-18 00:13:45',14,'4d9ea508-653b-44b0-9582-7a4a255d05bb'),(143267,143241,NULL,8,2,NULL,'2021-03-18 00:13:45','2021-03-18 00:13:45',15,'eca6350b-f1dc-40f2-841d-24799769e013'),(143268,143241,NULL,8,3,NULL,'2021-03-18 00:13:45','2021-03-18 00:13:45',16,'f013ff62-27c0-45aa-9407-337eaf09a480'),(143270,143241,NULL,8,3,NULL,'2021-03-18 00:13:45','2021-03-18 00:13:45',17,'7b229447-0f97-4bb5-a4bb-e3633235d9c7'),(143274,143273,NULL,8,2,NULL,'2021-03-18 00:15:01','2021-03-18 00:15:01',1,'dc5ac5d0-cf73-4073-91bd-456aa570c91e'),(143275,143273,NULL,8,3,NULL,'2021-03-18 00:15:01','2021-03-18 00:15:01',2,'a25b5e29-d2b5-4e2e-bd27-9222cdf30693'),(143278,143273,NULL,8,3,NULL,'2021-03-18 00:15:01','2021-03-18 00:15:01',3,'ccb60a0d-b8a5-4969-ab84-e6ffe80af035'),(143281,143273,NULL,8,2,NULL,'2021-03-18 00:15:01','2021-03-18 00:15:01',4,'38db236d-13ca-446a-a0f8-38a73e1f4868'),(143282,143273,NULL,8,3,NULL,'2021-03-18 00:15:01','2021-03-18 00:15:01',5,'c31ffd65-4dfd-4bdf-b75c-b96341a9e283'),(143284,143273,NULL,8,2,NULL,'2021-03-18 00:15:01','2021-03-18 00:15:01',6,'b2d890c5-3f96-4b8c-ad75-543a6fba810a'),(143285,143273,NULL,8,3,NULL,'2021-03-18 00:15:01','2021-03-18 00:15:01',7,'881174e5-abee-46db-8ad0-542999576a1f'),(143287,143273,NULL,8,3,NULL,'2021-03-18 00:15:01','2021-03-18 00:15:01',8,'4881638d-96ac-424b-9949-030c76f42f7b'),(143289,143273,NULL,8,2,NULL,'2021-03-18 00:15:02','2021-03-18 00:15:02',9,'a6701dae-6519-4477-ab4c-27f4aed65878'),(143290,143273,NULL,8,3,NULL,'2021-03-18 00:15:02','2021-03-18 00:15:02',10,'1c7c2ac4-f97e-45d1-a653-3eb4f1c2fd0e'),(143292,143273,NULL,8,3,NULL,'2021-03-18 00:15:02','2021-03-18 00:15:02',11,'523f719b-ff31-401c-899d-2afff3829be0'),(143294,143273,NULL,8,3,NULL,'2021-03-18 00:15:02','2021-03-18 00:15:02',12,'3e68cbec-1368-436b-8d66-087aef7575b1'),(143296,143273,NULL,8,2,NULL,'2021-03-18 00:15:02','2021-03-18 00:15:02',13,'9bb299d9-6cfc-4dc7-b2ea-b9ffc7dce70a'),(143297,143273,NULL,8,15,NULL,'2021-03-18 00:15:02','2021-03-18 00:15:02',14,'9573bfe4-1360-40ad-b83d-e16d345097d3'),(143299,143273,NULL,8,2,NULL,'2021-03-18 00:15:02','2021-03-18 00:15:02',15,'d661eaf2-3189-42d3-994b-b03aa8af2c0a'),(143300,143273,NULL,8,3,NULL,'2021-03-18 00:15:02','2021-03-18 00:15:02',16,'114fa4a7-4660-4529-aa9e-6b0eade1a226'),(143302,143273,NULL,8,3,NULL,'2021-03-18 00:15:02','2021-03-18 00:15:02',17,'a1802aa0-04a9-4871-a267-1c9287035679'),(143306,143305,NULL,8,2,NULL,'2021-03-18 00:25:09','2021-03-18 00:25:09',1,'a0318915-3bd2-4001-a22f-5ef95afda8b7'),(143307,143305,NULL,8,3,NULL,'2021-03-18 00:25:09','2021-03-18 00:25:09',2,'927cfb8c-af19-4669-b304-d96725c0f151'),(143309,143305,NULL,8,3,NULL,'2021-03-18 00:25:09','2021-03-18 00:25:09',3,'404643e2-959b-4764-ac6f-80c648e1e863'),(143314,143305,NULL,8,3,NULL,'2021-03-18 00:25:10','2021-03-18 00:25:10',4,'80e80295-996a-42c7-a42f-c6e3920393a1'),(143318,143305,NULL,8,3,NULL,'2021-03-18 00:25:10','2021-03-18 00:25:10',5,'882ccb2a-e6a8-4a9c-9cbd-75bdec52d6fd'),(143321,143305,NULL,8,3,NULL,'2021-03-18 00:25:10','2021-03-18 00:25:10',6,'d02e9a5c-6d6a-4d00-9d68-ba5d047cc6ef'),(143324,143305,NULL,8,2,NULL,'2021-03-18 00:25:10','2021-03-18 00:25:10',7,'60ab6ce5-33fc-42c6-a286-d4bcc2d8ed59'),(143325,143305,NULL,8,3,NULL,'2021-03-18 00:25:10','2021-03-18 00:25:10',8,'6d0d732f-b3f0-4f91-81b3-2f956a5be16b'),(143326,143305,NULL,8,2,NULL,'2021-03-18 00:25:10','2021-03-18 00:25:10',9,'ea3fbcad-8d6e-4afb-9900-70f3edcc8aa9'),(143327,143305,NULL,8,3,NULL,'2021-03-18 00:25:10','2021-03-18 00:25:10',10,'7e84a674-3ed4-499c-ae31-d79f9a53604a'),(143537,143536,NULL,8,2,NULL,'2021-03-18 00:34:22','2021-03-18 00:34:22',1,'8897753b-c9d6-49e8-a5e4-d6a7acff07a8'),(143538,143536,NULL,8,15,NULL,'2021-03-18 00:34:22','2021-03-18 00:34:22',2,'81250713-b08e-46ea-9618-f60518f65dcc'),(143542,143536,NULL,8,2,NULL,'2021-03-18 00:34:22','2021-03-18 00:34:22',3,'7ffcfb6a-912e-457c-a765-0a924145ab86'),(143543,143536,NULL,8,18,NULL,'2021-03-18 00:34:22','2021-03-18 00:34:22',4,'65e5303f-decb-4776-b73d-9526060adc56'),(143544,143536,NULL,8,2,NULL,'2021-03-18 00:34:22','2021-03-18 00:34:22',5,'178de17a-6896-41a8-a9ec-e43ef874baa3'),(143545,143536,NULL,8,15,NULL,'2021-03-18 00:34:22','2021-03-18 00:34:22',6,'62423f95-4e87-4f16-b2f1-8a047fd9b626'),(143549,143536,NULL,8,2,NULL,'2021-03-18 00:34:22','2021-03-18 00:34:22',7,'8e3f6368-30d3-4edd-86d7-da88b767ca89'),(143550,143536,NULL,8,17,NULL,'2021-03-18 00:34:22','2021-03-18 00:34:22',8,'c788ec81-2ac1-4b96-b253-5667742a8160'),(143551,143536,NULL,8,2,NULL,'2021-03-18 00:34:22','2021-03-18 00:34:22',9,'92224c53-49dd-4258-bad5-d9adb1cf8a9a'),(143552,143536,NULL,8,21,NULL,'2021-03-18 00:34:22','2021-03-18 00:34:22',10,'0e7c0ab3-4cb9-4093-bdd0-c3a7fdbe1f5a'),(143557,143556,NULL,8,2,NULL,'2021-03-18 00:34:34','2021-03-18 00:34:34',1,'d8c22999-3578-452b-a26e-54a818ebfcd9'),(143558,143556,NULL,8,15,NULL,'2021-03-18 00:34:34','2021-03-18 00:34:34',2,'b5429c30-f79b-4e28-9494-d7c51ff77818'),(143562,143556,NULL,8,2,NULL,'2021-03-18 00:34:35','2021-03-18 00:34:35',3,'961067e4-36a1-4c54-94ad-23f5adea2ea6'),(143563,143556,NULL,8,18,NULL,'2021-03-18 00:34:35','2021-03-18 00:34:35',4,'54e460fd-31a2-4d20-b5b0-9ba26b5920a3'),(143564,143556,NULL,8,2,NULL,'2021-03-18 00:34:35','2021-03-18 00:34:35',5,'38fb7bc3-b0a3-4713-8490-e5b2fb62dbd7'),(143565,143556,NULL,8,15,NULL,'2021-03-18 00:34:35','2021-03-18 00:34:35',6,'905a16b0-73bd-435e-b9e0-27de454811a7'),(143569,143556,NULL,8,2,NULL,'2021-03-18 00:34:35','2021-03-18 00:34:35',7,'ac9641f4-80e2-49ad-b0ea-fa24cc869d0f'),(143570,143556,NULL,8,17,NULL,'2021-03-18 00:34:35','2021-03-18 00:34:35',8,'c8222d97-2232-455e-943c-e49e7f0f897c'),(143571,143556,NULL,8,2,NULL,'2021-03-18 00:34:35','2021-03-18 00:34:35',9,'ad593c6b-068c-4bcb-bc24-cb0fc7331ae9'),(143572,143556,NULL,8,21,NULL,'2021-03-18 00:34:35','2021-03-18 00:34:35',10,'6ba6d933-5e96-4cc8-ba90-9e0d30a8b354'),(143660,143659,NULL,8,2,NULL,'2021-03-18 00:46:31','2021-03-18 00:46:31',1,'327cc62f-444f-46b8-b738-fd4050e4447e'),(143661,143659,NULL,8,3,NULL,'2021-03-18 00:46:31','2021-03-18 00:46:31',2,'be4fe52a-e188-4f69-9909-f5d0ce658655'),(143665,143659,NULL,8,4,NULL,'2021-03-18 00:46:31','2021-03-18 00:46:31',3,'4bd1dfa0-3e0e-4277-b315-6681e7f767dc'),(143666,143659,NULL,8,3,NULL,'2021-03-18 00:46:31','2021-03-18 00:46:31',4,'2c114945-7e69-43bd-b4ee-cb71c7b18d9e'),(143670,143659,NULL,8,4,NULL,'2021-03-18 00:46:31','2021-03-18 00:46:31',5,'f9b324ba-464f-4761-919e-1a397d171453'),(143671,143659,NULL,8,3,NULL,'2021-03-18 00:46:31','2021-03-18 00:46:31',6,'5149c21b-cddc-4a9f-ac8d-e7fd38ab793e'),(143676,143659,NULL,8,2,NULL,'2021-03-18 00:46:31','2021-03-18 00:46:31',7,'d9123ebe-f03c-48dc-bebe-8a0e835c64e2'),(143677,143659,NULL,8,3,NULL,'2021-03-18 00:46:31','2021-03-18 00:46:31',8,'7c1f9cac-576a-4a74-b7e3-cca0ede2efd2'),(143678,143659,NULL,8,2,NULL,'2021-03-18 00:46:31','2021-03-18 00:46:31',9,'786dfc49-50cd-41f8-84e4-441b3687b5f2'),(143679,143659,NULL,8,3,NULL,'2021-03-18 00:46:31','2021-03-18 00:46:31',10,'0f45a31f-145c-4cd6-9b15-0c654ae7d2a1'),(143681,143659,NULL,8,2,NULL,'2021-03-18 00:46:31','2021-03-18 00:46:31',11,'cff483de-6c4e-4655-a54e-29d2023ba8ef'),(143682,143659,NULL,8,3,NULL,'2021-03-18 00:46:31','2021-03-18 00:46:31',12,'13064b13-4aca-4472-afba-faea84af8e02'),(143688,143659,NULL,8,2,NULL,'2021-03-18 00:46:31','2021-03-18 00:46:31',13,'8e058a4b-d521-46bf-ae8f-ab81810a8b84'),(143689,143659,NULL,8,3,NULL,'2021-03-18 00:46:31','2021-03-18 00:46:31',14,'db262486-b228-4bfc-b6ac-9d350d33e438'),(143690,143659,NULL,8,16,NULL,'2021-03-18 00:46:31','2021-03-18 00:46:31',15,'bfe1c015-2a81-4255-ba00-37bb001ab8ee'),(143691,143659,NULL,8,2,NULL,'2021-03-18 00:46:31','2021-03-18 00:46:31',16,'fea0d6c1-2d4f-45f8-88a0-d7ec892b49ef'),(143692,143659,NULL,8,3,NULL,'2021-03-18 00:46:31','2021-03-18 00:46:31',17,'98bf7f97-37fb-48a6-9ad9-f23c800dd13f'),(143696,143659,NULL,8,3,NULL,'2021-03-18 00:46:31','2021-03-18 00:46:31',18,'40dac82c-bd76-4247-a669-ff1eeab4bee3'),(143922,143921,NULL,8,2,NULL,'2021-03-18 01:50:29','2021-03-18 01:50:29',1,'704b6ba4-192b-41cd-8836-e77b336d7aea'),(143923,143921,NULL,8,3,NULL,'2021-03-18 01:50:29','2021-03-18 01:50:29',2,'c50f4613-6482-4044-9d1e-749f89327e00'),(143927,143921,NULL,8,4,NULL,'2021-03-18 01:50:29','2021-03-18 01:50:29',3,'373f59f9-df5f-4cf9-a439-9f8c50b21edc'),(143928,143921,NULL,8,3,NULL,'2021-03-18 01:50:29','2021-03-18 01:50:29',4,'42470e01-f33f-420c-83c6-9266d44cd151'),(143932,143921,NULL,8,4,NULL,'2021-03-18 01:50:29','2021-03-18 01:50:29',5,'dbcabc03-b292-4db9-9010-554d5e7e7c86'),(143933,143921,NULL,8,3,NULL,'2021-03-18 01:50:29','2021-03-18 01:50:29',6,'219b3182-c449-4030-b6e1-36bbaf234a08'),(143938,143921,NULL,8,2,NULL,'2021-03-18 01:50:29','2021-03-18 01:50:29',7,'56b935d1-81a4-4de1-95f6-d00768ca5d58'),(143939,143921,NULL,8,3,NULL,'2021-03-18 01:50:29','2021-03-18 01:50:29',8,'2f0df94d-0daf-4723-bc7e-bf320c0446eb'),(143940,143921,NULL,8,2,NULL,'2021-03-18 01:50:29','2021-03-18 01:50:29',9,'ffdaecff-8eb7-4d68-8d85-40cb403e54da'),(143941,143921,NULL,8,3,NULL,'2021-03-18 01:50:29','2021-03-18 01:50:29',10,'59df781c-ec81-4e45-8c2b-80fcfdc49bd3'),(143943,143921,NULL,8,2,NULL,'2021-03-18 01:50:29','2021-03-18 01:50:29',11,'e7f981f1-589c-4e83-98f6-9a91b62e7c5f'),(143944,143921,NULL,8,3,NULL,'2021-03-18 01:50:29','2021-03-18 01:50:29',12,'362952ba-243f-4380-a8e2-50d558f2c12b'),(143950,143921,NULL,8,2,NULL,'2021-03-18 01:50:29','2021-03-18 01:50:29',13,'3f2c25d4-7a95-4eba-8eb6-a7665bd3ec51'),(143951,143921,NULL,8,3,NULL,'2021-03-18 01:50:29','2021-03-18 01:50:29',14,'15a97408-b4c9-4fbb-b62c-db5e46b00bc4'),(143952,143921,NULL,8,16,NULL,'2021-03-18 01:50:29','2021-03-18 01:50:29',15,'13a39a4f-71bd-4db8-b132-768b07506262'),(143953,143921,NULL,8,2,NULL,'2021-03-18 01:50:29','2021-03-18 01:50:29',16,'31d5d0e3-cc8e-4f5e-a21a-906ad004a4d4'),(143954,143921,NULL,8,3,NULL,'2021-03-18 01:50:29','2021-03-18 01:50:29',17,'4d22714e-647d-4abb-9441-4cd5e09a2ee3'),(143958,143921,NULL,8,3,NULL,'2021-03-18 01:50:29','2021-03-18 01:50:29',18,'bdf99229-93de-4dc0-b6e1-f1e10ae94d69'),(143960,143959,NULL,8,2,NULL,'2021-03-18 01:50:35','2021-03-18 01:50:35',1,'cf7030ff-e6e2-4f80-8e80-5d3663043f87'),(143961,143959,NULL,8,3,NULL,'2021-03-18 01:50:35','2021-03-18 01:50:35',2,'789196e4-664b-45fb-85d0-f5637533e2d5'),(143965,143959,NULL,8,4,NULL,'2021-03-18 01:50:35','2021-03-18 01:50:35',3,'e00d2e43-ec40-48d0-a33a-210173d91327'),(143966,143959,NULL,8,3,NULL,'2021-03-18 01:50:35','2021-03-18 01:50:35',4,'c4db2923-c00e-4205-9a77-a869884b024c'),(143970,143959,NULL,8,4,NULL,'2021-03-18 01:50:35','2021-03-18 01:50:35',5,'254fcfef-3918-4fb1-b86a-2dcf5ccb04da'),(143971,143959,NULL,8,3,NULL,'2021-03-18 01:50:35','2021-03-18 01:50:35',6,'6e3226f2-94a0-4233-8eff-1ad4b4d1e464'),(143976,143959,NULL,8,2,NULL,'2021-03-18 01:50:35','2021-03-18 01:50:35',7,'66c376bf-d693-4080-ae40-dd4affce0353'),(143977,143959,NULL,8,3,NULL,'2021-03-18 01:50:35','2021-03-18 01:50:35',8,'b51b9fef-27df-48d4-a486-5c9c8e2c7e2a'),(143978,143959,NULL,8,2,NULL,'2021-03-18 01:50:35','2021-03-18 01:50:35',9,'567457db-6fa7-45fe-b7f1-ae1d9055fa08'),(143979,143959,NULL,8,3,NULL,'2021-03-18 01:50:35','2021-03-18 01:50:35',10,'e0374351-c5b5-4f38-b975-f41af9e02710'),(143981,143959,NULL,8,2,NULL,'2021-03-18 01:50:35','2021-03-18 01:50:35',11,'477590ea-04fc-44da-8a1d-dc46c1579538'),(143982,143959,NULL,8,3,NULL,'2021-03-18 01:50:35','2021-03-18 01:50:35',12,'1912cb9c-8273-4875-ad86-540afb7b0a70'),(143988,143959,NULL,8,2,NULL,'2021-03-18 01:50:35','2021-03-18 01:50:35',13,'9eac9db9-e46e-4ea9-93a2-d98bce5e0226'),(143989,143959,NULL,8,3,NULL,'2021-03-18 01:50:35','2021-03-18 01:50:35',14,'1ccdca9f-2d75-43b6-9d93-c8405c691b18'),(143990,143959,NULL,8,16,NULL,'2021-03-18 01:50:35','2021-03-18 01:50:35',15,'53d3ea0c-420c-41b1-aa82-717a60e5b907'),(143991,143959,NULL,8,2,NULL,'2021-03-18 01:50:35','2021-03-18 01:50:35',16,'ca4d9fe1-ebfb-4c56-bf3a-0a8f5aaa2ea7'),(143992,143959,NULL,8,3,NULL,'2021-03-18 01:50:35','2021-03-18 01:50:35',17,'0809494a-cc71-44df-8794-8e56fa9185fa'),(143996,143959,NULL,8,3,NULL,'2021-03-18 01:50:35','2021-03-18 01:50:35',18,'f54b3701-6eea-4e26-b431-0a89108cb4b4'),(144130,144129,NULL,8,2,NULL,'2021-03-22 01:47:49','2021-03-22 01:47:49',1,'f7636ea4-bafa-4d01-a44d-943703b81f68'),(144131,144129,NULL,8,5,NULL,'2021-03-22 01:47:49','2021-03-22 01:47:49',2,'b6321eec-0a7c-4fb7-b19e-0d572d9ea05b'),(144132,144129,NULL,8,2,NULL,'2021-03-22 01:47:49','2021-03-22 01:47:49',3,'19955e3d-dd3c-4773-bfd5-3ee0cb50e55a'),(144133,144129,NULL,8,9,NULL,'2021-03-22 01:47:49','2021-03-22 01:47:49',4,'b0ad5716-b972-4436-abbc-f1d8bf0c1eee'),(144135,144129,NULL,8,2,NULL,'2021-03-22 01:47:49','2021-03-22 01:47:49',5,'79e5b425-24d3-4e4d-ac6d-e044a4fe8ce7'),(144136,144129,NULL,8,3,NULL,'2021-03-22 01:47:49','2021-03-22 01:47:49',6,'a9f93912-8fb9-4311-a36b-a08ab5599a33'),(144137,144129,NULL,8,12,NULL,'2021-03-22 01:47:49','2021-03-22 01:47:49',7,'1a3e0d91-3f75-4c68-be62-5978406df40e'),(144138,144129,NULL,8,2,NULL,'2021-03-22 01:47:49','2021-03-22 01:47:49',8,'3f7ebf3f-6655-49e3-8f99-61258342b965'),(144139,144129,NULL,8,9,NULL,'2021-03-22 01:47:49','2021-03-22 01:47:49',9,'3f72c3a3-3b54-4012-8a59-32dda1155594'),(144141,144129,NULL,8,9,NULL,'2021-03-22 01:47:49','2021-03-22 01:47:49',10,'4e53060d-c8f3-4852-884f-11c0e61f2a8e'),(144143,144129,NULL,8,2,NULL,'2021-03-22 01:47:49','2021-03-22 01:47:49',11,'7fd741e1-70c7-41ae-afa0-50acbcad37cd'),(144144,144129,NULL,8,9,NULL,'2021-03-22 01:47:49','2021-03-22 01:47:49',12,'c2c99a1e-89f7-4d93-8787-c7a8a7cc15b2'),(144148,144147,NULL,8,2,NULL,'2021-03-22 01:47:55','2021-03-22 01:47:55',1,'4851a906-502b-48dc-8679-b8a1d19638e1'),(144149,144147,NULL,8,5,NULL,'2021-03-22 01:47:55','2021-03-22 01:47:55',2,'94d66fdb-948a-4048-9774-028d6840bea3'),(144150,144147,NULL,8,2,NULL,'2021-03-22 01:47:55','2021-03-22 01:47:55',3,'538151ce-862b-4a51-90cc-bb6eaf339b03'),(144151,144147,NULL,8,9,NULL,'2021-03-22 01:47:55','2021-03-22 01:47:55',4,'0077605e-991d-4d51-a03d-b38f9c87bd3e'),(144153,144147,NULL,8,2,NULL,'2021-03-22 01:47:55','2021-03-22 01:47:55',5,'92bffdd5-6670-4b95-b629-6bd3d4d4c9bd'),(144154,144147,NULL,8,3,NULL,'2021-03-22 01:47:55','2021-03-22 01:47:55',6,'1dea311d-dd3a-4a33-8e1d-b274ff33570d'),(144155,144147,NULL,8,12,NULL,'2021-03-22 01:47:55','2021-03-22 01:47:55',7,'18938f14-25e0-44ba-abab-1417e0ae4352'),(144156,144147,NULL,8,2,NULL,'2021-03-22 01:47:55','2021-03-22 01:47:55',8,'16699a79-5f4c-4a70-8122-c61e99c967c6'),(144157,144147,NULL,8,9,NULL,'2021-03-22 01:47:55','2021-03-22 01:47:55',9,'c423af05-8a9d-44c2-8936-23022b7530bd'),(144159,144147,NULL,8,9,NULL,'2021-03-22 01:47:56','2021-03-22 01:47:56',10,'52a93692-6f4b-4200-bd6b-c87c4571f08b'),(144161,144147,NULL,8,2,NULL,'2021-03-22 01:47:56','2021-03-22 01:47:56',11,'b851fc33-7f28-4e0b-affc-2bc123ee333c'),(144162,144147,NULL,8,9,NULL,'2021-03-22 01:47:56','2021-03-22 01:47:56',12,'b333eb16-57f8-4c2f-8e43-668b3dbe9b54'),(144189,144188,NULL,8,2,NULL,'2021-03-22 02:17:21','2021-03-22 02:17:21',1,'ed3b1594-9966-4825-83e8-648fc566ff49'),(144190,144188,NULL,8,9,NULL,'2021-03-22 02:17:21','2021-03-22 02:17:21',2,'75a6f763-1f55-49cc-adfa-c5e22616758e'),(144191,144188,NULL,8,2,NULL,'2021-03-22 02:17:21','2021-03-22 02:17:21',3,'3814961a-7e0e-4fe6-87e5-5e53e4cb10b4'),(144192,144188,NULL,8,3,NULL,'2021-03-22 02:17:21','2021-03-22 02:17:21',4,'aef1c7e7-6fbd-4093-b258-b000db16906b'),(144193,144188,NULL,8,12,NULL,'2021-03-22 02:17:21','2021-03-22 02:17:21',5,'5bc5f410-9072-494a-a4f3-a8467389375a'),(144194,144188,NULL,8,2,NULL,'2021-03-22 02:17:21','2021-03-22 02:17:21',6,'5d129e44-29c3-4886-a613-5eafb76db06d'),(144195,144188,NULL,8,3,NULL,'2021-03-22 02:17:21','2021-03-22 02:17:21',7,'bde99f99-e30b-43bf-a6dd-0e583108ceea'),(144196,144188,NULL,8,5,NULL,'2021-03-22 02:17:21','2021-03-22 02:17:21',8,'0cbd4864-e51f-4035-8c99-15c9dcf80a3b'),(144197,144188,NULL,8,2,NULL,'2021-03-22 02:17:21','2021-03-22 02:17:21',9,'e3e6fb89-3d5b-4809-8bd6-18d0d75ca842'),(144198,144188,NULL,8,9,NULL,'2021-03-22 02:17:21','2021-03-22 02:17:21',10,'7ad8fc50-10f6-4f81-96ba-c0c86c710ff6'),(144201,144200,NULL,8,2,NULL,'2021-03-22 02:17:26','2021-03-22 02:17:26',1,'80305b15-32a3-4ba3-8609-8ec4698e4857'),(144202,144200,NULL,8,9,NULL,'2021-03-22 02:17:26','2021-03-22 02:17:26',2,'5dd705b9-8f37-42d5-bea5-f822a26884f8'),(144203,144200,NULL,8,2,NULL,'2021-03-22 02:17:26','2021-03-22 02:17:26',3,'7da7cacd-4ebe-48f8-a38c-dd2782310acd'),(144204,144200,NULL,8,3,NULL,'2021-03-22 02:17:26','2021-03-22 02:17:26',4,'8c6607aa-24ca-431f-b611-fef30fa9f960'),(144205,144200,NULL,8,12,NULL,'2021-03-22 02:17:26','2021-03-22 02:17:26',5,'a47689d7-ad46-4808-b652-52f747a7c746'),(144206,144200,NULL,8,2,NULL,'2021-03-22 02:17:26','2021-03-22 02:17:26',6,'e4b3c5c8-a1f6-4419-9a38-a0c2de6dfe98'),(144207,144200,NULL,8,3,NULL,'2021-03-22 02:17:26','2021-03-22 02:17:26',7,'a5d2458f-764b-4ed9-bc2b-b592eed34d59'),(144208,144200,NULL,8,5,NULL,'2021-03-22 02:17:26','2021-03-22 02:17:26',8,'1a7fca13-5e43-49b8-906c-2f783fe17552'),(144209,144200,NULL,8,2,NULL,'2021-03-22 02:17:26','2021-03-22 02:17:26',9,'e1ce033e-5d4b-45ff-986e-50e36e17afe6'),(144210,144200,NULL,8,9,NULL,'2021-03-22 02:17:26','2021-03-22 02:17:26',10,'b586e3ae-55b5-46ce-9127-e95ce7ebc047'),(144252,144251,NULL,8,2,NULL,'2021-03-22 06:21:39','2021-03-22 06:21:39',1,'66052c9c-5493-4a62-b6a4-73af78e402be'),(144253,144251,NULL,8,3,NULL,'2021-03-22 06:21:39','2021-03-22 06:21:39',2,'990bbfd1-6a1d-4165-95e3-c0b63026e380'),(144256,144251,NULL,8,3,NULL,'2021-03-22 06:21:39','2021-03-22 06:21:39',3,'3adde85c-2916-4e4c-89cd-fe03bc916d51'),(144259,144251,NULL,8,2,NULL,'2021-03-22 06:21:39','2021-03-22 06:21:39',4,'436de72f-4f9e-4f1a-ba8b-5a45c19ef4e1'),(144260,144251,NULL,8,3,NULL,'2021-03-22 06:21:39','2021-03-22 06:21:39',5,'179c2c55-c303-47b6-91f6-21b2cdc9bbc9'),(144262,144251,NULL,8,2,NULL,'2021-03-22 06:21:39','2021-03-22 06:21:39',6,'300ee5ab-2a37-43a9-9874-32a80897d37f'),(144263,144251,NULL,8,3,NULL,'2021-03-22 06:21:39','2021-03-22 06:21:39',7,'509ed4e0-6215-45ef-ba1e-8b552199ce9b'),(144265,144251,NULL,8,3,NULL,'2021-03-22 06:21:39','2021-03-22 06:21:39',8,'32c9eb5e-240e-4515-8903-cb08bee0a967'),(144267,144251,NULL,8,2,NULL,'2021-03-22 06:21:39','2021-03-22 06:21:39',9,'ecfdf77d-871f-43a0-a690-46d9218326a8'),(144268,144251,NULL,8,3,NULL,'2021-03-22 06:21:39','2021-03-22 06:21:39',10,'6162edbf-fbe0-4e44-96ab-07925ed3b264'),(144270,144251,NULL,8,3,NULL,'2021-03-22 06:21:39','2021-03-22 06:21:39',11,'977a4378-9ad9-41ed-8dfe-058d710c44cd'),(144272,144251,NULL,8,3,NULL,'2021-03-22 06:21:39','2021-03-22 06:21:39',12,'b313fd84-4647-4af7-a13b-4a2c31e31b94'),(144274,144251,NULL,8,2,NULL,'2021-03-22 06:21:40','2021-03-22 06:21:40',13,'5f0912ab-a0ce-4d75-9686-b242ae709066'),(144275,144251,NULL,8,15,NULL,'2021-03-22 06:21:40','2021-03-22 06:21:40',14,'3f572c9a-77e4-47c3-9f90-818f65d1c817'),(144277,144251,NULL,8,2,NULL,'2021-03-22 06:21:40','2021-03-22 06:21:40',15,'971542e9-ca2d-44c5-a6b5-e4210cff5589'),(144278,144251,NULL,8,3,NULL,'2021-03-22 06:21:40','2021-03-22 06:21:40',16,'89cd6ef0-762c-4cfb-bc9f-32a7a14c0a50'),(144280,144251,NULL,8,3,NULL,'2021-03-22 06:21:40','2021-03-22 06:21:40',17,'c4d66bf5-a224-4cd0-8237-4f931bb014e5'),(144380,144379,NULL,8,2,NULL,'2021-03-23 06:19:50','2021-03-23 06:19:50',1,'da834e88-5e79-40d6-bafe-db40012d282e'),(144381,144379,NULL,8,3,NULL,'2021-03-23 06:19:50','2021-03-23 06:19:50',2,'78afc6b3-52c9-4ee6-a9e6-5f6ef5eeeb5c'),(144382,144379,NULL,8,2,NULL,'2021-03-23 06:19:50','2021-03-23 06:19:50',3,'463bf287-75b4-41f5-9be6-5dc173b12410'),(144383,144379,NULL,8,3,NULL,'2021-03-23 06:19:50','2021-03-23 06:19:50',4,'18cd6b8b-c568-470f-b8c6-20f90addaeaf'),(144384,144379,NULL,8,20,NULL,'2021-03-23 06:19:50','2021-03-23 06:19:50',5,'1ac35fbd-c722-40b5-bb3a-71cf6755dadc'),(144385,144379,NULL,8,2,NULL,'2021-03-23 06:19:50','2021-03-23 06:19:50',6,'71ad4e65-0fd9-4895-b665-401c2420160f'),(144386,144379,NULL,8,3,NULL,'2021-03-23 06:19:50','2021-03-23 06:19:50',7,'ca83b1ef-73bf-4750-b48a-72d893123c2c'),(144387,144379,NULL,8,20,NULL,'2021-03-23 06:19:50','2021-03-23 06:19:50',8,'98b608d7-ebc0-462b-a52b-201db1c4650d'),(144388,144379,NULL,8,2,NULL,'2021-03-23 06:19:50','2021-03-23 06:19:50',9,'61c5640c-eb56-48d9-9bb8-8ea59b057832'),(144389,144379,NULL,8,3,NULL,'2021-03-23 06:19:50','2021-03-23 06:19:50',10,'3f7a62c5-433d-4042-9de6-d075b4d86cdf'),(144390,144379,NULL,8,2,NULL,'2021-03-23 06:19:50','2021-03-23 06:19:50',11,'22f3415f-c74a-44b3-ba3a-58e37730a216'),(144391,144379,NULL,8,3,NULL,'2021-03-23 06:19:50','2021-03-23 06:19:50',12,'3a22cdb0-bca0-428b-aedc-fd3022db2316'),(144392,144379,NULL,8,12,NULL,'2021-03-23 06:19:50','2021-03-23 06:19:50',13,'494b93e1-f33f-41be-b109-2a781bfe3144'),(144394,144393,NULL,8,2,NULL,'2021-03-23 06:19:55','2021-03-23 06:19:55',1,'0e38d767-832d-483b-9e61-5d26c4440f3a'),(144395,144393,NULL,8,3,NULL,'2021-03-23 06:19:55','2021-03-23 06:19:55',2,'02b6a174-f200-4fc7-b7d6-f10961fcb882'),(144396,144393,NULL,8,2,NULL,'2021-03-23 06:19:55','2021-03-23 06:19:55',3,'840be311-1296-4270-9a70-490e0d44acf7'),(144397,144393,NULL,8,3,NULL,'2021-03-23 06:19:55','2021-03-23 06:19:55',4,'ed8cb0e2-9338-48cc-80b5-229066354765'),(144398,144393,NULL,8,20,NULL,'2021-03-23 06:19:55','2021-03-23 06:19:55',5,'16aef61b-9690-453d-b593-c2f7f55588e9'),(144399,144393,NULL,8,2,NULL,'2021-03-23 06:19:55','2021-03-23 06:19:55',6,'444b6bf5-c2a5-45f9-9945-04696c045425'),(144400,144393,NULL,8,3,NULL,'2021-03-23 06:19:55','2021-03-23 06:19:55',7,'9d15683b-73f5-41c9-b083-38741d7d185f'),(144401,144393,NULL,8,20,NULL,'2021-03-23 06:19:55','2021-03-23 06:19:55',8,'576a2166-646d-4c46-8fe5-979f141c47f8'),(144402,144393,NULL,8,2,NULL,'2021-03-23 06:19:55','2021-03-23 06:19:55',9,'81e042b3-dd5d-4465-b310-231ea088846c'),(144403,144393,NULL,8,3,NULL,'2021-03-23 06:19:55','2021-03-23 06:19:55',10,'976fd248-2188-4bf4-ba3c-7b772eeb8663'),(144404,144393,NULL,8,2,NULL,'2021-03-23 06:19:55','2021-03-23 06:19:55',11,'f0bde3b5-14bc-4709-b2c0-8207795f3fe5'),(144405,144393,NULL,8,3,NULL,'2021-03-23 06:19:55','2021-03-23 06:19:55',12,'61799a7d-f683-484a-8717-08bb1477108e'),(144406,144393,NULL,8,12,NULL,'2021-03-23 06:19:55','2021-03-23 06:19:55',13,'75bb9877-9189-4c24-9154-6a5291966e17'),(144424,144423,NULL,8,2,NULL,'2021-03-23 23:34:25','2021-03-23 23:34:25',1,'9a41d054-e851-45e7-b1b7-bb1643dd273a'),(144425,144423,NULL,8,5,NULL,'2021-03-23 23:34:25','2021-03-23 23:34:25',2,'ac38f654-d435-4a0e-b668-581121ec8e58'),(144426,144423,NULL,8,2,NULL,'2021-03-23 23:34:25','2021-03-23 23:34:25',3,'f5350592-f670-4c32-b336-9349c9c1ab68'),(144427,144423,NULL,8,9,NULL,'2021-03-23 23:34:25','2021-03-23 23:34:25',4,'0f7dc547-6680-4efa-a1f4-0b0ac7c1d5ac'),(144429,144423,NULL,8,2,NULL,'2021-03-23 23:34:25','2021-03-23 23:34:25',5,'43e8f3ae-652c-402b-8034-8ec3b7c8b74b'),(144430,144423,NULL,8,3,NULL,'2021-03-23 23:34:25','2021-03-23 23:34:25',6,'90513b8e-206f-474a-8911-6f5dac31a27b'),(144431,144423,NULL,8,12,NULL,'2021-03-23 23:34:25','2021-03-23 23:34:25',7,'ad866240-220b-4d19-b736-f86174f6bb07'),(144432,144423,NULL,8,2,NULL,'2021-03-23 23:34:25','2021-03-23 23:34:25',8,'29afe0d2-0af1-486c-b517-dd03c5473b4b'),(144433,144423,NULL,8,9,NULL,'2021-03-23 23:34:25','2021-03-23 23:34:25',9,'3cf444cb-65e7-49c2-93b0-8a5bf5e15756'),(144435,144423,NULL,8,9,NULL,'2021-03-23 23:34:25','2021-03-23 23:34:25',10,'1d550270-6dbf-4afd-acc8-1ae00cf8dcfb'),(144437,144423,NULL,8,2,NULL,'2021-03-23 23:34:25','2021-03-23 23:34:25',11,'40ece863-7b67-4d92-9ff3-51f79fed82cb'),(144438,144423,NULL,8,9,NULL,'2021-03-23 23:34:25','2021-03-23 23:34:25',12,'6f34e1fa-1c1f-4772-a51f-bb8c3a20755c'),(144457,144456,NULL,8,2,NULL,'2021-03-24 00:49:51','2021-03-24 00:49:51',1,'26015f79-6586-41ff-8b90-1c22ca2f3810'),(144458,144456,NULL,8,3,NULL,'2021-03-24 00:49:51','2021-03-24 00:49:51',2,'45ea12fb-43c2-4311-9f66-219d459e521d'),(144459,144456,NULL,8,2,NULL,'2021-03-24 00:49:51','2021-03-24 00:49:51',3,'89304051-d1aa-450e-b446-9602a3f9e0a9'),(144460,144456,NULL,8,3,NULL,'2021-03-24 00:49:51','2021-03-24 00:49:51',4,'d847b7c8-d65c-4c49-83d3-f9186cc0ba76'),(144477,144476,NULL,8,2,NULL,'2021-03-24 00:55:34','2021-03-24 00:55:34',1,'0da73444-7d13-468c-9e56-8feacde39183'),(144478,144476,NULL,8,3,NULL,'2021-03-24 00:55:34','2021-03-24 00:55:34',2,'fa8ed74b-6688-43a4-88d1-ec59fdb909fb'),(144479,144476,NULL,8,2,NULL,'2021-03-24 00:55:34','2021-03-24 00:55:34',3,'4f5f6259-df79-49e7-b2bf-b18dbf8f4f35'),(144480,144476,NULL,8,3,NULL,'2021-03-24 00:55:34','2021-03-24 00:55:34',4,'89540f37-9919-4fb5-826a-8a4aacc22eb8'),(144484,144483,NULL,8,2,NULL,'2021-03-24 00:58:48','2021-03-24 00:58:48',1,'3d632ee3-025c-414e-b82d-cc7b166267cf'),(144485,144483,NULL,8,3,NULL,'2021-03-24 00:58:48','2021-03-24 00:58:48',2,'bcf00832-c62f-4467-a0a9-4cdd4add1c59'),(144486,144483,NULL,8,2,NULL,'2021-03-24 00:58:48','2021-03-24 00:58:48',3,'0e9f85e6-1044-44b0-ac6e-86e58649aab2'),(144487,144483,NULL,8,3,NULL,'2021-03-24 00:58:48','2021-03-24 00:58:48',4,'bb163fd8-1416-4e2a-b273-09cfabc6796b'),(144928,144926,NULL,8,2,NULL,'2021-03-24 05:59:35','2021-03-24 05:59:35',1,'1398428f-8e61-4450-a2c2-3b6075e377ee'),(144929,144926,NULL,8,3,NULL,'2021-03-24 05:59:36','2021-03-24 05:59:36',2,'f9906dd8-b805-4e42-9a8f-91d870d08c86'),(144935,144933,NULL,8,2,NULL,'2021-03-24 05:59:36','2021-03-24 05:59:36',1,'04c9a548-58a5-4ebc-a8ca-4ff948fe6df6'),(144936,144933,NULL,8,3,NULL,'2021-03-24 05:59:36','2021-03-24 05:59:36',2,'9a2a3f8d-038d-4302-ba69-dbfe1e11519a'),(144942,144940,NULL,8,2,NULL,'2021-03-24 05:59:39','2021-03-24 05:59:39',1,'ce9a9eb4-2ea1-44d2-af63-7cfd980e537d'),(144943,144940,NULL,8,3,NULL,'2021-03-24 05:59:39','2021-03-24 05:59:39',2,'99821112-e930-4197-b49c-507b218d9a19'),(145005,145004,NULL,8,2,NULL,'2021-03-25 05:20:31','2021-03-25 05:20:31',1,'c4ad66ce-95c6-4a09-8878-1749162a4166'),(145006,145004,NULL,8,9,NULL,'2021-03-25 05:20:31','2021-03-25 05:20:31',2,'2dbe75dd-2066-4e32-9d57-f7148d3f3239'),(145007,145004,NULL,8,2,NULL,'2021-03-25 05:20:31','2021-03-25 05:20:31',3,'9e2b816d-998d-4228-b66f-ebffb7bc810d'),(145008,145004,NULL,8,3,NULL,'2021-03-25 05:20:31','2021-03-25 05:20:31',4,'ffee25b2-1131-4faa-b79c-16f4c79fbd03'),(145009,145004,NULL,8,12,NULL,'2021-03-25 05:20:31','2021-03-25 05:20:31',5,'cc238cc9-7666-4f4c-988b-7f5de86a2909'),(145010,145004,NULL,8,2,NULL,'2021-03-25 05:20:31','2021-03-25 05:20:31',6,'3b1272ef-1c24-4606-8715-cbe911a476a2'),(145011,145004,NULL,8,3,NULL,'2021-03-25 05:20:31','2021-03-25 05:20:31',7,'a86f41d5-f265-4905-a969-df01e59e231e'),(145012,145004,NULL,8,5,NULL,'2021-03-25 05:20:31','2021-03-25 05:20:31',8,'79a290a9-0ebc-4ce7-8803-5ef08c59c46f'),(145013,145004,NULL,8,2,NULL,'2021-03-25 05:20:31','2021-03-25 05:20:31',9,'33d97462-deb1-4822-8a09-89d75621de38'),(145014,145004,NULL,8,9,NULL,'2021-03-25 05:20:31','2021-03-25 05:20:31',10,'f0fd0e48-89ab-441e-b2f6-2655d1381bc1'),(145017,145016,NULL,8,2,NULL,'2021-03-25 05:20:35','2021-03-25 05:20:35',1,'6f9bb0b4-766f-4a0f-ad8a-dbf8bdf21dc1'),(145018,145016,NULL,8,9,NULL,'2021-03-25 05:20:35','2021-03-25 05:20:35',2,'2f3a81fd-98da-40e0-960d-0acd04a9a867'),(145019,145016,NULL,8,2,NULL,'2021-03-25 05:20:35','2021-03-25 05:20:35',3,'44fa08e7-321a-4202-b3f0-101759d65c2e'),(145020,145016,NULL,8,3,NULL,'2021-03-25 05:20:35','2021-03-25 05:20:35',4,'879dedb5-a021-4aed-8b52-9b587d4465f0'),(145021,145016,NULL,8,12,NULL,'2021-03-25 05:20:35','2021-03-25 05:20:35',5,'1bb312ef-7020-4cbd-871f-62dd5bfab657'),(145022,145016,NULL,8,2,NULL,'2021-03-25 05:20:35','2021-03-25 05:20:35',6,'9b8d63cc-fed1-45b9-bd51-6eee9fb459a0'),(145023,145016,NULL,8,3,NULL,'2021-03-25 05:20:35','2021-03-25 05:20:35',7,'dc752a5e-9ba1-452f-92a7-ca45f4418680'),(145024,145016,NULL,8,5,NULL,'2021-03-25 05:20:35','2021-03-25 05:20:35',8,'314c9a22-8e8c-43fb-ba23-636f5fba9707'),(145025,145016,NULL,8,2,NULL,'2021-03-25 05:20:35','2021-03-25 05:20:35',9,'f740ba92-9689-407c-806b-41de0afe8416'),(145026,145016,NULL,8,9,NULL,'2021-03-25 05:20:35','2021-03-25 05:20:35',10,'0e04b90d-fba3-408d-beb3-8205a08f7879'),(145047,145046,NULL,8,2,NULL,'2021-03-26 00:22:30','2021-03-26 00:22:30',1,'dcf203da-dcee-429b-b551-a77460d15012'),(145048,145046,NULL,8,3,NULL,'2021-03-26 00:22:30','2021-03-26 00:22:30',2,'84df1afd-b49f-4789-9f50-5572f09b110a'),(145049,145046,NULL,8,2,NULL,'2021-03-26 00:22:30','2021-03-26 00:22:30',3,'947b8628-e45c-4061-946b-746b53d3c146'),(145050,145046,NULL,8,15,NULL,'2021-03-26 00:22:30','2021-03-26 00:22:30',4,'41acd78a-76d6-459a-b559-02b6602b2025'),(145052,145046,NULL,8,2,NULL,'2021-03-26 00:22:30','2021-03-26 00:22:30',5,'1526deef-0bed-4459-9657-dd83155f1b72'),(145053,145046,NULL,8,3,NULL,'2021-03-26 00:22:30','2021-03-26 00:22:30',6,'8d5ac95a-e3ca-4ee7-a789-199f513c8cd5'),(145055,145046,NULL,8,2,NULL,'2021-03-26 00:22:30','2021-03-26 00:22:30',7,'0679d470-714e-4ce9-970c-4f86e4791b93'),(145056,145046,NULL,8,3,NULL,'2021-03-26 00:22:30','2021-03-26 00:22:30',8,'3e469d7a-6469-4008-b204-452fb0d50a33'),(145060,145059,NULL,8,2,NULL,'2021-03-26 00:24:08','2021-03-26 00:24:08',1,'7e6f8018-cd2f-475d-97d1-280b1df98fad'),(145061,145059,NULL,8,3,NULL,'2021-03-26 00:24:08','2021-03-26 00:24:08',2,'09acea12-b3d8-475d-9b69-feff78f35d2c'),(145062,145059,NULL,8,2,NULL,'2021-03-26 00:24:08','2021-03-26 00:24:08',3,'f709405f-5d72-464e-867d-d0ce85fc8232'),(145063,145059,NULL,8,15,NULL,'2021-03-26 00:24:08','2021-03-26 00:24:08',4,'7557e223-3ded-4d73-ad05-d00b85738e8b'),(145065,145059,NULL,8,2,NULL,'2021-03-26 00:24:08','2021-03-26 00:24:08',5,'3dbf9bfd-cf2c-43fa-9a4e-4fde76ffc4d7'),(145066,145059,NULL,8,3,NULL,'2021-03-26 00:24:08','2021-03-26 00:24:08',6,'e8c0aaad-f68d-4ee9-8022-3d48774bb126'),(145068,145059,NULL,8,2,NULL,'2021-03-26 00:24:08','2021-03-26 00:24:08',7,'d00c74d1-adf3-492c-979c-0dbf5b349abd'),(145069,145059,NULL,8,3,NULL,'2021-03-26 00:24:08','2021-03-26 00:24:08',8,'739da2b0-3e60-4aba-83aa-3034b221a147'),(145099,145098,NULL,8,2,NULL,'2021-03-26 00:46:15','2021-03-26 00:46:15',1,'7bdee67d-527e-450e-b1ef-3c2aa3deb1a8'),(145100,145098,NULL,8,3,NULL,'2021-03-26 00:46:15','2021-03-26 00:46:15',2,'e80c8554-6fb9-4af4-a85c-cf4d9409589d'),(145101,145098,NULL,8,2,NULL,'2021-03-26 00:46:15','2021-03-26 00:46:15',3,'12bfc294-1d5b-483f-b54d-d9705947eda6'),(145102,145098,NULL,8,3,NULL,'2021-03-26 00:46:15','2021-03-26 00:46:15',4,'7ae9ffbe-03c0-4007-b06f-a01877360819'),(145105,145098,NULL,8,2,NULL,'2021-03-26 00:46:15','2021-03-26 00:46:15',5,'f3a68de4-c0c0-421a-8433-f521c7e6bc7c'),(145106,145098,NULL,8,3,NULL,'2021-03-26 00:46:15','2021-03-26 00:46:15',6,'067555ad-f95a-44e2-91b0-a215b58eebc4'),(145109,145108,NULL,8,2,NULL,'2021-03-26 00:46:23','2021-03-26 00:46:23',1,'c52c63be-50a0-40ff-80a1-91be082e38d0'),(145110,145108,NULL,8,3,NULL,'2021-03-26 00:46:23','2021-03-26 00:46:23',2,'c60ed6a6-e94a-4797-8a48-dbc0bce32454'),(145111,145108,NULL,8,2,NULL,'2021-03-26 00:46:23','2021-03-26 00:46:23',3,'da39f1e4-6f7e-444c-a6ce-8d6a98e394c7'),(145112,145108,NULL,8,3,NULL,'2021-03-26 00:46:23','2021-03-26 00:46:23',4,'0a9d1bd5-60a7-4dd3-a655-c79e88138a5f'),(145115,145108,NULL,8,2,NULL,'2021-03-26 00:46:23','2021-03-26 00:46:23',5,'bcd4e967-0bb9-42f9-8646-a253cee2c9d7'),(145116,145108,NULL,8,3,NULL,'2021-03-26 00:46:23','2021-03-26 00:46:23',6,'fa6cd845-c275-4a6f-b361-c1e46df0f20f'),(145157,145156,NULL,8,2,NULL,'2021-03-26 01:10:07','2021-03-26 01:10:07',1,'aa743a96-b460-4670-904a-bcd77fcd5ed9'),(145158,145156,NULL,8,3,NULL,'2021-03-26 01:10:07','2021-03-26 01:10:07',2,'892fad4d-2f27-4640-b97c-69eb54b7052f'),(145159,145156,NULL,8,2,NULL,'2021-03-26 01:10:07','2021-03-26 01:10:07',3,'3047ae30-a655-42c4-91fd-a921c1d00130'),(145160,145156,NULL,8,5,NULL,'2021-03-26 01:10:07','2021-03-26 01:10:07',4,'065ae058-ba5d-45ec-9ec6-1e7ecdd2976e'),(145161,145156,NULL,8,2,NULL,'2021-03-26 01:10:07','2021-03-26 01:10:07',5,'7d039962-a556-49a3-b524-cd3d35cc354a'),(145162,145156,NULL,8,3,NULL,'2021-03-26 01:10:08','2021-03-26 01:10:08',6,'f6171041-8a0c-4b15-9b19-83761f2c7a9a'),(145164,145156,NULL,8,3,NULL,'2021-03-26 01:10:08','2021-03-26 01:10:08',7,'4aeae928-0689-4704-9a84-41fc5a1438cb'),(145168,145156,NULL,8,2,NULL,'2021-03-26 01:10:08','2021-03-26 01:10:08',8,'86fbc995-21ef-4b64-9914-5c810f0db46a'),(145169,145156,NULL,8,3,NULL,'2021-03-26 01:10:08','2021-03-26 01:10:08',9,'ff17964d-f6f7-45df-9c36-10b03ce299f1'),(145172,145171,NULL,8,2,NULL,'2021-03-26 01:10:13','2021-03-26 01:10:13',1,'631eeb7f-38c2-4e06-ab75-52cf842c8a77'),(145173,145171,NULL,8,3,NULL,'2021-03-26 01:10:13','2021-03-26 01:10:13',2,'7fe3f862-3cde-4a41-b003-c2b9f05ce83f'),(145174,145171,NULL,8,2,NULL,'2021-03-26 01:10:13','2021-03-26 01:10:13',3,'75cc7cac-e141-4cfb-abd1-672821c3ef84'),(145175,145171,NULL,8,5,NULL,'2021-03-26 01:10:13','2021-03-26 01:10:13',4,'77209846-5f64-4694-b3a6-5919befd59fb'),(145176,145171,NULL,8,2,NULL,'2021-03-26 01:10:13','2021-03-26 01:10:13',5,'70b072ed-6330-435d-9d26-2b006708bbeb'),(145177,145171,NULL,8,3,NULL,'2021-03-26 01:10:13','2021-03-26 01:10:13',6,'b7ceced3-3d9f-43f6-b40e-4611a9f8104e'),(145179,145171,NULL,8,3,NULL,'2021-03-26 01:10:13','2021-03-26 01:10:13',7,'cfe9ad50-c726-49ab-ad98-a363039e7e50'),(145183,145171,NULL,8,2,NULL,'2021-03-26 01:10:13','2021-03-26 01:10:13',8,'85b4b39a-5713-4c41-8272-b6235fb7877f'),(145184,145171,NULL,8,3,NULL,'2021-03-26 01:10:13','2021-03-26 01:10:13',9,'044e9159-9630-456b-8f83-ee1fd685e5a6'),(145207,145206,NULL,8,2,NULL,'2021-03-26 01:58:00','2021-03-26 01:58:00',1,'5e88f5fb-a977-418e-9bbc-1f8b2c47a2bb'),(145208,145206,NULL,8,3,NULL,'2021-03-26 01:58:00','2021-03-26 01:58:00',2,'f396d7cf-e765-40b2-8825-c66c6b45a453'),(145210,145206,NULL,8,2,NULL,'2021-03-26 01:58:00','2021-03-26 01:58:00',3,'fc05b0e0-d619-463c-922c-cdcbef315560'),(145211,145206,NULL,8,3,NULL,'2021-03-26 01:58:00','2021-03-26 01:58:00',4,'a70ff1c2-8675-4067-938c-a63b9c79b962'),(145213,145206,NULL,8,2,NULL,'2021-03-26 01:58:00','2021-03-26 01:58:00',5,'61a1de4d-49b4-4b39-a3a6-fed83126292e'),(145214,145206,NULL,8,3,NULL,'2021-03-26 01:58:00','2021-03-26 01:58:00',6,'2d433d83-99ff-4529-809b-9cbcdd870359'),(145217,145216,NULL,8,2,NULL,'2021-03-26 01:58:09','2021-03-26 01:58:09',1,'0b5c40f0-ca33-45c5-ad9e-4e20a264424f'),(145218,145216,NULL,8,3,NULL,'2021-03-26 01:58:09','2021-03-26 01:58:09',2,'ae702db7-a3c2-4b94-99e9-59eb6f5bb7f9'),(145220,145216,NULL,8,2,NULL,'2021-03-26 01:58:09','2021-03-26 01:58:09',3,'f2873360-11a3-47be-946a-91485a4e3e8d'),(145221,145216,NULL,8,3,NULL,'2021-03-26 01:58:09','2021-03-26 01:58:09',4,'8a8af773-5203-4715-a3fb-28a7217f79e3'),(145223,145216,NULL,8,2,NULL,'2021-03-26 01:58:09','2021-03-26 01:58:09',5,'df6f5d85-4b64-4744-bf5a-7c72f558301e'),(145224,145216,NULL,8,3,NULL,'2021-03-26 01:58:09','2021-03-26 01:58:09',6,'88f422c6-7f01-4411-8901-028bbaece646'),(145301,145300,NULL,8,2,NULL,'2021-03-26 01:59:47','2021-03-26 01:59:47',1,'5cc01356-b48d-4937-bbe8-88b1894148b2'),(145302,145300,NULL,8,3,NULL,'2021-03-26 01:59:47','2021-03-26 01:59:47',2,'d6c651da-e0e9-4061-ba22-e3ad99641801'),(145305,145300,NULL,8,4,NULL,'2021-03-26 01:59:47','2021-03-26 01:59:47',3,'bf370adf-6e41-4d01-a561-dfd2e746277b'),(145306,145300,NULL,8,3,NULL,'2021-03-26 01:59:47','2021-03-26 01:59:47',4,'a100d49c-1294-4c22-92dc-9d131bb59b0c'),(145310,145300,NULL,8,4,NULL,'2021-03-26 01:59:47','2021-03-26 01:59:47',5,'c12dfe93-ba77-40fe-a806-0a18e146b693'),(145311,145300,NULL,8,3,NULL,'2021-03-26 01:59:47','2021-03-26 01:59:47',6,'589318b8-be14-488e-a8b7-dda944d0d7d4'),(145316,145300,NULL,8,2,NULL,'2021-03-26 01:59:47','2021-03-26 01:59:47',7,'1c08c4bf-f1bf-472c-8e9a-da37a320ea98'),(145317,145300,NULL,8,3,NULL,'2021-03-26 01:59:47','2021-03-26 01:59:47',8,'4d02f281-5a96-479e-86f4-fa90a30fed15'),(145318,145300,NULL,8,2,NULL,'2021-03-26 01:59:47','2021-03-26 01:59:47',9,'28549ed4-e0dc-4e0f-a175-fe99fee2adc1'),(145319,145300,NULL,8,3,NULL,'2021-03-26 01:59:47','2021-03-26 01:59:47',10,'4f29d6b7-189d-4228-9565-4010b2742fbb'),(145321,145300,NULL,8,2,NULL,'2021-03-26 01:59:47','2021-03-26 01:59:47',11,'d4d2c241-98c2-4c87-aafb-7af3edb03cf8'),(145322,145300,NULL,8,3,NULL,'2021-03-26 01:59:47','2021-03-26 01:59:47',12,'6e77f210-6773-48f1-bbcf-577437f73fe8'),(145328,145300,NULL,8,2,NULL,'2021-03-26 01:59:47','2021-03-26 01:59:47',13,'9bb66f0f-e132-43ff-89db-afe2df255e59'),(145329,145300,NULL,8,3,NULL,'2021-03-26 01:59:47','2021-03-26 01:59:47',14,'552fe3aa-950b-4e1b-a78b-fdd26b0a3031'),(145330,145300,NULL,8,16,NULL,'2021-03-26 01:59:47','2021-03-26 01:59:47',15,'f3a07bb5-072f-4223-87f1-748daac52c1c'),(145331,145300,NULL,8,2,NULL,'2021-03-26 01:59:47','2021-03-26 01:59:47',16,'de28eb64-ee1f-4de9-8eff-458e8011493c'),(145332,145300,NULL,8,3,NULL,'2021-03-26 01:59:47','2021-03-26 01:59:47',17,'74831a01-c0d0-4727-a34c-38343636b5e4'),(145336,145300,NULL,8,3,NULL,'2021-03-26 01:59:47','2021-03-26 01:59:47',18,'75ab2b2a-ca0e-473a-a2d7-fbcb18d0aa61'),(145338,145337,NULL,8,2,NULL,'2021-03-26 01:59:53','2021-03-26 01:59:53',1,'1aac2aac-78e5-46ce-92e2-3ec1cf6721a5'),(145339,145337,NULL,8,3,NULL,'2021-03-26 01:59:53','2021-03-26 01:59:53',2,'e1e72b0f-b5d7-454e-b3e8-ed8882e7cd4c'),(145342,145337,NULL,8,4,NULL,'2021-03-26 01:59:53','2021-03-26 01:59:53',3,'7e7bc5e2-8731-411f-821e-f6bc14e8614a'),(145343,145337,NULL,8,3,NULL,'2021-03-26 01:59:54','2021-03-26 01:59:54',4,'36ca523f-7e25-422f-99fe-1b2a31981f11'),(145347,145337,NULL,8,4,NULL,'2021-03-26 01:59:54','2021-03-26 01:59:54',5,'71040c70-6f7f-478d-a839-8c201d196762'),(145348,145337,NULL,8,3,NULL,'2021-03-26 01:59:54','2021-03-26 01:59:54',6,'306b3ee2-bfd3-4f9d-878a-cfa878b589ac'),(145353,145337,NULL,8,2,NULL,'2021-03-26 01:59:54','2021-03-26 01:59:54',7,'ca3343c2-8bc5-4613-be48-7dc0516a15f2'),(145354,145337,NULL,8,3,NULL,'2021-03-26 01:59:54','2021-03-26 01:59:54',8,'7b983a2b-1609-49e3-8b75-2517913ae068'),(145355,145337,NULL,8,2,NULL,'2021-03-26 01:59:54','2021-03-26 01:59:54',9,'cebe0cbc-885f-4934-8a09-8624e9035c64'),(145356,145337,NULL,8,3,NULL,'2021-03-26 01:59:54','2021-03-26 01:59:54',10,'5ac05223-7c79-4b57-8470-cc7b2f847a91'),(145358,145337,NULL,8,2,NULL,'2021-03-26 01:59:54','2021-03-26 01:59:54',11,'e66fa56c-dd13-4228-a1fb-8e3d80a2484f'),(145359,145337,NULL,8,3,NULL,'2021-03-26 01:59:54','2021-03-26 01:59:54',12,'224663bb-987d-4369-aa65-800317474c9c'),(145365,145337,NULL,8,2,NULL,'2021-03-26 01:59:54','2021-03-26 01:59:54',13,'e50e8fd1-12c9-4305-9383-c5b0f5a9b73e'),(145366,145337,NULL,8,3,NULL,'2021-03-26 01:59:54','2021-03-26 01:59:54',14,'2d725469-b1fe-491b-836a-2bdf8cd57b57'),(145367,145337,NULL,8,16,NULL,'2021-03-26 01:59:54','2021-03-26 01:59:54',15,'86c62692-45d0-49a3-9e70-3e4e03d3cd88'),(145368,145337,NULL,8,2,NULL,'2021-03-26 01:59:54','2021-03-26 01:59:54',16,'1ae6e412-17fc-49be-ae5b-cf227cb288a4'),(145369,145337,NULL,8,3,NULL,'2021-03-26 01:59:54','2021-03-26 01:59:54',17,'342846c5-2fa4-4252-bacf-fafa07fc1aac'),(145373,145337,NULL,8,3,NULL,'2021-03-26 01:59:54','2021-03-26 01:59:54',18,'45f11152-9eae-417d-9fec-e95bd7b6fb5e'),(145442,145441,NULL,8,2,NULL,'2021-03-26 02:03:58','2021-03-26 02:03:58',1,'b8071cc9-6866-4fa1-8d83-798e668bed8a'),(145443,145441,NULL,8,3,NULL,'2021-03-26 02:03:58','2021-03-26 02:03:58',2,'25d0b2f9-9328-4b54-88eb-61f59c78cef0'),(145445,145441,NULL,8,3,NULL,'2021-03-26 02:03:58','2021-03-26 02:03:58',3,'fc210a8e-4d4c-4ed8-a9fa-6bfb5a35683c'),(145446,145441,NULL,8,2,NULL,'2021-03-26 02:03:58','2021-03-26 02:03:58',4,'b84019a3-3d03-4633-97ed-ba98b882d8d1'),(145447,145441,NULL,8,3,NULL,'2021-03-26 02:03:58','2021-03-26 02:03:58',5,'5115127d-596d-4100-8a8b-fcf382199863'),(145451,145441,NULL,8,2,NULL,'2021-03-26 02:03:58','2021-03-26 02:03:58',6,'2e8424d0-39d4-4a0f-94df-3c550f37f9b9'),(145452,145441,NULL,8,3,NULL,'2021-03-26 02:03:58','2021-03-26 02:03:58',7,'5b6c5684-a9eb-4639-8807-e43c0d96d074'),(145454,145441,NULL,8,2,NULL,'2021-03-26 02:03:58','2021-03-26 02:03:58',8,'9ef8a7a6-868e-4c80-bafb-70ee38e1f729'),(145455,145441,NULL,8,3,NULL,'2021-03-26 02:03:58','2021-03-26 02:03:58',9,'ab0ec6a3-c9e7-4a0e-be3d-c20c85caccfc'),(145457,145441,NULL,8,3,NULL,'2021-03-26 02:03:59','2021-03-26 02:03:59',10,'4bc08fd8-d551-469c-b547-7dd458c60493'),(145463,145441,NULL,8,3,NULL,'2021-03-26 02:03:59','2021-03-26 02:03:59',11,'b9691714-4e8f-40e6-b351-9ba12e1d93d8'),(145467,145441,NULL,8,2,NULL,'2021-03-26 02:03:59','2021-03-26 02:03:59',12,'d41ab460-121b-4576-826c-93d97de803a1'),(145468,145441,NULL,8,3,NULL,'2021-03-26 02:03:59','2021-03-26 02:03:59',13,'51ee5e7b-19f3-47d0-ac5b-4b1630007ffd'),(145472,145441,NULL,8,2,NULL,'2021-03-26 02:03:59','2021-03-26 02:03:59',14,'6382890c-30d8-4922-a365-a07f204bd09b'),(145473,145441,NULL,8,3,NULL,'2021-03-26 02:03:59','2021-03-26 02:03:59',15,'b6de5c6f-e90e-4a25-ac38-c06c521d4344'),(145474,145441,NULL,8,7,NULL,'2021-03-26 02:03:59','2021-03-26 02:03:59',16,'08777ddf-724c-4588-bc53-3a80a8b3de8a'),(145477,145476,NULL,8,2,NULL,'2021-03-26 02:24:40','2021-03-26 02:24:40',1,'fc8aaf0a-8861-4b35-85a8-8d64bdc4add5'),(145478,145476,NULL,8,3,NULL,'2021-03-26 02:24:40','2021-03-26 02:24:40',2,'d3dd1add-dec2-4ecf-861f-3e550d39d39f'),(145480,145476,NULL,8,3,NULL,'2021-03-26 02:24:40','2021-03-26 02:24:40',3,'bac26272-3ac3-4ede-961a-edba9dcab801'),(145481,145476,NULL,8,2,NULL,'2021-03-26 02:24:40','2021-03-26 02:24:40',4,'1356b179-e7a4-4e27-8fd8-f9e39d0e274b'),(145482,145476,NULL,8,3,NULL,'2021-03-26 02:24:40','2021-03-26 02:24:40',5,'ad660073-dddd-411e-91fb-b98f11619e78'),(145486,145476,NULL,8,2,NULL,'2021-03-26 02:24:40','2021-03-26 02:24:40',6,'77a88f91-3d25-40d7-857c-39c486465c47'),(145487,145476,NULL,8,3,NULL,'2021-03-26 02:24:40','2021-03-26 02:24:40',7,'8beb5f3f-3c5d-47d3-981d-3e4161c8edcb'),(145489,145476,NULL,8,2,NULL,'2021-03-26 02:24:40','2021-03-26 02:24:40',8,'3861beb0-2c9c-4cc4-99f3-3d97eb79ba4a'),(145490,145476,NULL,8,3,NULL,'2021-03-26 02:24:40','2021-03-26 02:24:40',9,'1bd2678a-2a35-4e3a-951e-78266d11fa9c'),(145492,145476,NULL,8,3,NULL,'2021-03-26 02:24:40','2021-03-26 02:24:40',10,'f83e831a-5c80-480e-92ab-a0973a6cedb7'),(145499,145476,NULL,8,3,NULL,'2021-03-26 02:24:40','2021-03-26 02:24:40',11,'e809c7c6-bb28-4995-962a-95b945296ca2'),(145503,145476,NULL,8,2,NULL,'2021-03-26 02:24:40','2021-03-26 02:24:40',12,'9c88d0de-4d8d-4fa5-94ce-74b2b54d360d'),(145504,145476,NULL,8,3,NULL,'2021-03-26 02:24:40','2021-03-26 02:24:40',13,'009aad57-30d9-4da1-902b-330d33b4616c'),(145508,145476,NULL,8,2,NULL,'2021-03-26 02:24:40','2021-03-26 02:24:40',14,'52fcc1a1-a932-4c40-9e45-6965980b098d'),(145509,145476,NULL,8,3,NULL,'2021-03-26 02:24:40','2021-03-26 02:24:40',15,'262d272d-1677-4e87-b0ef-c6fc35de7369'),(145510,145476,NULL,8,7,NULL,'2021-03-26 02:24:40','2021-03-26 02:24:40',16,'38938896-264c-4a9b-8664-5a012473ebeb'),(145516,145515,NULL,8,2,NULL,'2021-03-26 03:13:59','2021-03-26 03:13:59',1,'68916a69-cb19-43e1-954b-738b694bf040'),(145517,145515,NULL,8,3,NULL,'2021-03-26 03:13:59','2021-03-26 03:13:59',2,'e420c97b-2c4b-4312-a608-bb275f807163'),(145519,145515,NULL,8,3,NULL,'2021-03-26 03:13:59','2021-03-26 03:13:59',3,'a18a0969-0baf-478f-9491-26b7c6242bac'),(145520,145515,NULL,8,2,NULL,'2021-03-26 03:13:59','2021-03-26 03:13:59',4,'91bda43e-476e-44f8-9d92-958bbcb7837f'),(145521,145515,NULL,8,3,NULL,'2021-03-26 03:13:59','2021-03-26 03:13:59',5,'b68b9373-c2bd-4b9e-8490-4d92e0533a41'),(145525,145515,NULL,8,2,NULL,'2021-03-26 03:13:59','2021-03-26 03:13:59',6,'5f246028-ea5b-47b3-b254-38e49f73886c'),(145526,145515,NULL,8,3,NULL,'2021-03-26 03:13:59','2021-03-26 03:13:59',7,'ba2296df-f2bd-4085-9583-38d43c5a0fbc'),(145528,145515,NULL,8,2,NULL,'2021-03-26 03:13:59','2021-03-26 03:13:59',8,'54ad18a5-4355-481b-84a0-bdaf8dbd4631'),(145529,145515,NULL,8,3,NULL,'2021-03-26 03:13:59','2021-03-26 03:13:59',9,'2496ef66-5de7-4c0b-af1e-80755bd69bfa'),(145531,145515,NULL,8,3,NULL,'2021-03-26 03:13:59','2021-03-26 03:13:59',10,'d9fa0ef0-fa5b-4703-9f34-4e0c1462643d'),(145538,145515,NULL,8,3,NULL,'2021-03-26 03:13:59','2021-03-26 03:13:59',11,'15259eb9-41fe-48ef-adb7-60e8bf268516'),(145542,145515,NULL,8,2,NULL,'2021-03-26 03:13:59','2021-03-26 03:13:59',12,'5510deae-0128-4cc2-ab0d-414c2c0d6d87'),(145543,145515,NULL,8,3,NULL,'2021-03-26 03:13:59','2021-03-26 03:13:59',13,'cffc40aa-3d16-4539-8399-5c9da9cb463d'),(145547,145515,NULL,8,2,NULL,'2021-03-26 03:13:59','2021-03-26 03:13:59',14,'9959c75f-7908-4f71-8267-eacde6c78850'),(145548,145515,NULL,8,3,NULL,'2021-03-26 03:13:59','2021-03-26 03:13:59',15,'da4bf94a-9a30-4006-a032-b0f59fa999fe'),(145549,145515,NULL,8,7,NULL,'2021-03-26 03:13:59','2021-03-26 03:13:59',16,'4bce2721-566f-412c-b492-7bb73fb5dfcb'),(145730,145729,NULL,8,2,NULL,'2021-03-26 05:41:24','2021-03-26 05:41:24',1,'d4f46ba9-6d5f-4fd8-a7b3-3d5fc7ebc498'),(145731,145729,NULL,8,3,NULL,'2021-03-26 05:41:24','2021-03-26 05:41:24',2,'6800613a-5f98-451d-ad5d-302b215e53be'),(145734,145729,NULL,8,3,NULL,'2021-03-26 05:41:24','2021-03-26 05:41:24',3,'294051dd-a7d0-47f1-ba84-1daca96aa499'),(145737,145729,NULL,8,2,NULL,'2021-03-26 05:41:24','2021-03-26 05:41:24',4,'042c47aa-deeb-44bc-8b0a-268f4615a3df'),(145738,145729,NULL,8,3,NULL,'2021-03-26 05:41:24','2021-03-26 05:41:24',5,'15e878a9-352d-4fd8-bbb5-af3d12af7a8e'),(145740,145729,NULL,8,2,NULL,'2021-03-26 05:41:24','2021-03-26 05:41:24',6,'31544c5d-dc55-43cb-9805-c93d3d7c5ec1'),(145741,145729,NULL,8,3,NULL,'2021-03-26 05:41:24','2021-03-26 05:41:24',7,'3aa3d67a-8c00-4cbc-8aee-d3564ec4d9b4'),(145743,145729,NULL,8,3,NULL,'2021-03-26 05:41:24','2021-03-26 05:41:24',8,'61296898-43b9-4b8b-bc0e-d47de325c3f5'),(145745,145729,NULL,8,2,NULL,'2021-03-26 05:41:24','2021-03-26 05:41:24',9,'33b2beac-849a-4eaa-9c17-70793dfe1f00'),(145746,145729,NULL,8,3,NULL,'2021-03-26 05:41:24','2021-03-26 05:41:24',10,'fa5104d4-7fdb-41d7-b19c-af212770d2a4'),(145748,145729,NULL,8,3,NULL,'2021-03-26 05:41:24','2021-03-26 05:41:24',11,'8de6da7b-23b1-4d66-8bf7-6042390dc853'),(145750,145729,NULL,8,3,NULL,'2021-03-26 05:41:24','2021-03-26 05:41:24',12,'71d24436-94de-4f3b-82e9-dea6882fad54'),(145752,145729,NULL,8,2,NULL,'2021-03-26 05:41:24','2021-03-26 05:41:24',13,'51669496-f91f-47f3-8a3c-d74e2395a95e'),(145753,145729,NULL,8,15,NULL,'2021-03-26 05:41:24','2021-03-26 05:41:24',14,'be2fda3c-d85a-4d4f-848d-2c1a060f0c5d'),(145755,145729,NULL,8,2,NULL,'2021-03-26 05:41:24','2021-03-26 05:41:24',15,'c09075cb-b961-4ae9-8755-a0de32960548'),(145756,145729,NULL,8,3,NULL,'2021-03-26 05:41:24','2021-03-26 05:41:24',16,'99d73f2c-b457-4ab5-afda-f18e53bff126'),(145758,145729,NULL,8,3,NULL,'2021-03-26 05:41:24','2021-03-26 05:41:24',17,'3fba48df-898a-4249-9cdd-3eb99614df0a'),(146254,146253,NULL,8,2,NULL,'2021-03-26 06:06:55','2021-03-26 06:06:55',1,'79faa3f3-5356-4f89-a572-9d84323c625e'),(146255,146253,NULL,8,3,NULL,'2021-03-26 06:06:55','2021-03-26 06:06:55',2,'67b61743-cb46-4aae-ba08-5fbac71a39d0'),(146256,146253,NULL,8,2,NULL,'2021-03-26 06:06:55','2021-03-26 06:06:55',3,'954d87c0-fe12-410e-b06c-6e546a6a6869'),(146257,146253,NULL,8,3,NULL,'2021-03-26 06:06:55','2021-03-26 06:06:55',4,'e649e490-01b1-4517-879d-7dbf669883b1'),(146259,146258,NULL,8,2,NULL,'2021-03-26 06:07:00','2021-03-26 06:07:00',1,'d31128e7-3eaa-4e7d-80a9-d5fde94a1b86'),(146260,146258,NULL,8,3,NULL,'2021-03-26 06:07:00','2021-03-26 06:07:00',2,'cb9db481-229d-4dea-a9e7-747092fcf7b2'),(146261,146258,NULL,8,2,NULL,'2021-03-26 06:07:00','2021-03-26 06:07:00',3,'d5a8cbb8-fbf9-4b29-8824-08d0a7c0dd30'),(146262,146258,NULL,8,3,NULL,'2021-03-26 06:07:00','2021-03-26 06:07:00',4,'192aca03-9a4f-40ac-8bdc-b056bda7c479'),(146304,146303,NULL,8,2,NULL,'2021-03-26 06:10:14','2021-03-26 06:10:14',1,'e7e232f3-2de1-4c56-8c58-2769f87aff36'),(146305,146303,NULL,8,3,NULL,'2021-03-26 06:10:14','2021-03-26 06:10:14',2,'1f8a749a-ca99-4f44-8b94-3ea7756e139f'),(146308,146303,NULL,8,2,NULL,'2021-03-26 06:10:14','2021-03-26 06:10:14',3,'785c0d13-acbf-42a0-8a7e-76d0bde19ce2'),(146309,146303,NULL,8,3,NULL,'2021-03-26 06:10:14','2021-03-26 06:10:14',4,'6ef38b5f-fba3-4962-9b1b-cc0f92950a5a'),(146311,146303,NULL,8,2,NULL,'2021-03-26 06:10:14','2021-03-26 06:10:14',5,'dd0ff421-59cc-44cd-8bb0-d5af61835907'),(146312,146303,NULL,8,3,NULL,'2021-03-26 06:10:14','2021-03-26 06:10:14',6,'e6d20d5a-71c7-4259-8a5b-38cdee5fc8a0'),(146314,146303,NULL,8,2,NULL,'2021-03-26 06:10:14','2021-03-26 06:10:14',7,'10aff1b9-ec30-4b36-87df-f2c97f461853'),(146315,146303,NULL,8,3,NULL,'2021-03-26 06:10:14','2021-03-26 06:10:14',8,'e2c3bad0-44be-4432-a3cf-7b9d1e612c6b'),(146317,146303,NULL,8,2,NULL,'2021-03-26 06:10:14','2021-03-26 06:10:14',9,'f6b49193-1bbf-4a5e-bc21-d8b5e5a7d037'),(146318,146303,NULL,8,3,NULL,'2021-03-26 06:10:14','2021-03-26 06:10:14',10,'8ddc3cb0-2c4d-4f0f-9cdc-81985d7f7031'),(146320,146303,NULL,8,3,NULL,'2021-03-26 06:10:14','2021-03-26 06:10:14',11,'ec8bfa35-372e-48da-b4b8-68b72329874f'),(146322,146303,NULL,8,2,NULL,'2021-03-26 06:10:14','2021-03-26 06:10:14',12,'fcc6b4be-9c33-4b37-b1ae-2c08d918af05'),(146323,146303,NULL,8,3,NULL,'2021-03-26 06:10:14','2021-03-26 06:10:14',13,'e914c957-4445-4723-b150-b04444415e99'),(146325,146303,NULL,8,3,NULL,'2021-03-26 06:10:14','2021-03-26 06:10:14',14,'e1903304-dff0-4a7e-aa06-eca06f869228'),(146327,146303,NULL,8,3,NULL,'2021-03-26 06:10:14','2021-03-26 06:10:14',15,'5f7085c0-e3fc-4a11-931c-0697e9ed0c50'),(146329,146303,NULL,8,2,NULL,'2021-03-26 06:10:14','2021-03-26 06:10:14',16,'0f9cdd5c-0dfa-4525-af10-a8b60abe69e3'),(146330,146303,NULL,8,15,NULL,'2021-03-26 06:10:14','2021-03-26 06:10:14',17,'af10ccb3-bf39-4ded-a82f-15bde5e30791'),(146332,146303,NULL,8,2,NULL,'2021-03-26 06:10:14','2021-03-26 06:10:14',18,'7acf2c50-8b18-4e22-9f89-0a62f9641ed5'),(146333,146303,NULL,8,3,NULL,'2021-03-26 06:10:14','2021-03-26 06:10:14',19,'d181ab5e-c96d-4664-a58f-5befc8f04d27'),(146335,146303,NULL,8,3,NULL,'2021-03-26 06:10:14','2021-03-26 06:10:14',20,'4346d0bd-3845-4e5d-909c-8a3cc8537c24'),(146348,146347,NULL,8,2,NULL,'2021-03-26 06:11:33','2021-03-26 06:11:33',1,'af7d0935-53bc-4d7f-a24e-6da78beaa671'),(146349,146347,NULL,8,3,NULL,'2021-03-26 06:11:33','2021-03-26 06:11:33',2,'681d9ec3-1bfb-405a-9d11-f2998630dde5'),(146350,146347,NULL,8,2,NULL,'2021-03-26 06:11:33','2021-03-26 06:11:33',3,'188f271c-52ac-47b3-bdac-27aef49600a2'),(146351,146347,NULL,8,3,NULL,'2021-03-26 06:11:33','2021-03-26 06:11:33',4,'743183eb-6e48-44da-a909-b0b7016b83ee'),(146353,146352,NULL,8,2,NULL,'2021-03-26 06:11:37','2021-03-26 06:11:37',1,'3bcb64e5-129d-467f-b880-9bc2f3fc63ca'),(146354,146352,NULL,8,3,NULL,'2021-03-26 06:11:37','2021-03-26 06:11:37',2,'7a0d94e0-4751-4667-832e-233dd3973fc1'),(146355,146352,NULL,8,2,NULL,'2021-03-26 06:11:37','2021-03-26 06:11:37',3,'7d41a98d-62a5-4f72-93b0-2ecf0a05bd16'),(146356,146352,NULL,8,3,NULL,'2021-03-26 06:11:37','2021-03-26 06:11:37',4,'965f500b-a97a-4357-b51b-1ee5eab778c3'),(146382,146248,NULL,8,2,0,'2021-03-26 06:15:31','2021-03-26 06:15:31',1,'b32901b4-de44-4aab-a886-680360221027'),(146383,146248,NULL,8,3,0,'2021-03-26 06:15:31','2021-03-26 06:15:31',2,'3b28f4ca-234a-4235-a1fd-4de5e2e62fe1'),(146384,146248,NULL,8,2,0,'2021-03-26 06:15:31','2021-03-26 06:15:31',3,'c52e82bd-bc64-42ae-a0b4-400b7d1431be'),(146385,146248,NULL,8,3,0,'2021-03-26 06:15:31','2021-03-26 06:15:31',4,'c0485bfd-9cae-4c04-b2b3-9b89b930a873'),(146387,146386,NULL,8,2,NULL,'2021-03-26 06:15:31','2021-03-26 06:15:31',1,'a28096a6-352c-4a30-95ea-cd28875af808'),(146388,146386,NULL,8,3,NULL,'2021-03-26 06:15:31','2021-03-26 06:15:31',2,'3faac0e1-e878-4721-b22f-4f7fa421115c'),(146389,146386,NULL,8,2,NULL,'2021-03-26 06:15:31','2021-03-26 06:15:31',3,'65ed087c-9f15-4f3a-9188-cd53b8c67363'),(146390,146386,NULL,8,3,NULL,'2021-03-26 06:15:31','2021-03-26 06:15:31',4,'d92ea39d-93a8-4846-bf4e-987165fd7627'),(146392,146391,NULL,8,2,NULL,'2021-03-26 06:15:35','2021-03-26 06:15:35',1,'869ad445-6d4c-41ac-a239-cc03cadee2b7'),(146393,146391,NULL,8,3,NULL,'2021-03-26 06:15:35','2021-03-26 06:15:35',2,'f1ba53aa-25e6-4e1f-9d35-d1a81b6c3421'),(146394,146391,NULL,8,2,NULL,'2021-03-26 06:15:35','2021-03-26 06:15:35',3,'62530088-5a94-4594-b80f-af23f5f14ff5'),(146395,146391,NULL,8,3,NULL,'2021-03-26 06:15:35','2021-03-26 06:15:35',4,'897d8de9-7215-4a9a-8526-aff6fa3deb29'),(146397,146396,NULL,8,2,NULL,'2021-03-26 06:16:06','2021-03-26 06:16:06',1,'bf213ad3-5c95-44a6-915e-8f69d808bae8'),(146398,146396,NULL,8,3,NULL,'2021-03-26 06:16:06','2021-03-26 06:16:06',2,'14cd9b41-995c-46da-bcb1-e94057bf8904'),(146399,146396,NULL,8,2,NULL,'2021-03-26 06:16:06','2021-03-26 06:16:06',3,'def702ae-f091-435a-8eb1-12345a8f72fa'),(146400,146396,NULL,8,3,NULL,'2021-03-26 06:16:06','2021-03-26 06:16:06',4,'edc1f794-04f0-4aca-915b-e1035bacf6ea'),(146423,146422,NULL,8,2,NULL,'2021-03-26 06:16:43','2021-03-26 06:16:43',1,'2989e1d9-d118-4469-8dce-9c1e5862253f'),(146424,146422,NULL,8,15,NULL,'2021-03-26 06:16:43','2021-03-26 06:16:43',2,'02b361b3-3039-47f8-92ee-5b9eb5d40649'),(146428,146422,NULL,8,2,NULL,'2021-03-26 06:16:43','2021-03-26 06:16:43',3,'08ed5432-1abe-4e32-b2fd-5bbbeb97ae84'),(146429,146422,NULL,8,18,NULL,'2021-03-26 06:16:43','2021-03-26 06:16:43',4,'f8901a3d-32ac-4c8b-8464-a585ad89d242'),(146430,146422,NULL,8,2,NULL,'2021-03-26 06:16:43','2021-03-26 06:16:43',5,'5478fbb4-851e-424d-83e8-3f3642dc0f08'),(146431,146422,NULL,8,15,NULL,'2021-03-26 06:16:43','2021-03-26 06:16:43',6,'b9b46961-89ee-4760-befd-52a3d4606bce'),(146435,146422,NULL,8,2,NULL,'2021-03-26 06:16:44','2021-03-26 06:16:44',7,'827adc1c-1471-4330-816d-7ec9b0e1a5fb'),(146436,146422,NULL,8,17,NULL,'2021-03-26 06:16:44','2021-03-26 06:16:44',8,'2b25e0f3-9f5b-4b92-8aaa-4c4cee9c8286'),(146437,146422,NULL,8,2,NULL,'2021-03-26 06:16:44','2021-03-26 06:16:44',9,'5e698e88-3318-406f-938b-9fe480fc34c3'),(146438,146422,NULL,8,21,NULL,'2021-03-26 06:16:44','2021-03-26 06:16:44',10,'7750faa0-acc3-429d-86c6-b9dcc361431c'),(146443,146442,NULL,8,2,NULL,'2021-03-26 06:16:48','2021-03-26 06:16:48',1,'44dd61d9-c58e-4db2-becc-4f273bc16ed3'),(146444,146442,NULL,8,15,NULL,'2021-03-26 06:16:48','2021-03-26 06:16:48',2,'50b2c5f0-586a-4c1c-bcab-aeecb2db6d84'),(146448,146442,NULL,8,2,NULL,'2021-03-26 06:16:48','2021-03-26 06:16:48',3,'d54afb01-74a5-4ebd-a8b1-f75155233522'),(146449,146442,NULL,8,18,NULL,'2021-03-26 06:16:48','2021-03-26 06:16:48',4,'7af3db4e-a6dd-41bb-8b3e-3f33e76c2aa1'),(146450,146442,NULL,8,2,NULL,'2021-03-26 06:16:48','2021-03-26 06:16:48',5,'43b5bbf3-ebca-428a-9f20-d3eae87e24f3'),(146451,146442,NULL,8,15,NULL,'2021-03-26 06:16:48','2021-03-26 06:16:48',6,'a9d02597-d93b-4d0d-b0cb-792455251091'),(146455,146442,NULL,8,2,NULL,'2021-03-26 06:16:48','2021-03-26 06:16:48',7,'1d5e8e74-ff14-4ec3-91d9-b5b18e28e2c6'),(146456,146442,NULL,8,17,NULL,'2021-03-26 06:16:48','2021-03-26 06:16:48',8,'9797347e-da93-4858-bef3-eb65e3764726'),(146457,146442,NULL,8,2,NULL,'2021-03-26 06:16:48','2021-03-26 06:16:48',9,'c876b4c5-468f-4ed9-8523-909fb9f565a1'),(146458,146442,NULL,8,21,NULL,'2021-03-26 06:16:48','2021-03-26 06:16:48',10,'dfdb81b4-afec-4c6c-90c8-0931a20cd2ed'),(146463,146462,NULL,8,2,NULL,'2021-03-26 06:19:29','2021-03-26 06:19:29',1,'1ac06f4b-102c-465e-894f-2ba038c9b0ee'),(146464,146462,NULL,8,15,NULL,'2021-03-26 06:19:29','2021-03-26 06:19:29',2,'3906bb74-0666-49e9-86b7-e58baf3d4768'),(146468,146462,NULL,8,2,NULL,'2021-03-26 06:19:29','2021-03-26 06:19:29',3,'19c035fb-3e31-431f-a91e-9dc9b7cf2111'),(146469,146462,NULL,8,18,NULL,'2021-03-26 06:19:29','2021-03-26 06:19:29',4,'e690aeed-ab3a-4cf1-8140-6771f065e047'),(146470,146462,NULL,8,2,NULL,'2021-03-26 06:19:29','2021-03-26 06:19:29',5,'941a1e5c-9e89-4888-ae78-6d14294dee8e'),(146471,146462,NULL,8,15,NULL,'2021-03-26 06:19:29','2021-03-26 06:19:29',6,'58a0cb28-7f01-413d-aaef-6df056a607f3'),(146475,146462,NULL,8,2,NULL,'2021-03-26 06:19:29','2021-03-26 06:19:29',7,'74c7dc3d-259f-4b04-8720-a43d806dd915'),(146476,146462,NULL,8,17,NULL,'2021-03-26 06:19:29','2021-03-26 06:19:29',8,'54786ab9-f310-4a17-8cca-246a8c65e528'),(146477,146462,NULL,8,2,NULL,'2021-03-26 06:19:29','2021-03-26 06:19:29',9,'72962434-f27a-445f-b12c-0dae2e0300e0'),(146478,146462,NULL,8,21,NULL,'2021-03-26 06:19:30','2021-03-26 06:19:30',10,'95a65f61-689f-46c8-9894-7c6fe98d7e1b'),(146522,146521,NULL,8,2,NULL,'2021-03-26 06:20:27','2021-03-26 06:20:27',1,'76a8839e-51a6-4d32-ab66-b327b3d462bd'),(146523,146521,NULL,8,15,NULL,'2021-03-26 06:20:27','2021-03-26 06:20:27',2,'d5f4c047-43ef-4181-9879-77c520b297ff'),(146527,146521,NULL,8,2,NULL,'2021-03-26 06:20:27','2021-03-26 06:20:27',3,'60f9f56f-cd56-4b87-b5e6-35f6623e1d4e'),(146528,146521,NULL,8,18,NULL,'2021-03-26 06:20:27','2021-03-26 06:20:27',4,'a1fcbd3c-fc27-4784-a58b-3ffef46900d1'),(146529,146521,NULL,8,2,NULL,'2021-03-26 06:20:27','2021-03-26 06:20:27',5,'71e8cecf-2dba-4b0b-9fad-d99927907d08'),(146530,146521,NULL,8,15,NULL,'2021-03-26 06:20:27','2021-03-26 06:20:27',6,'044e30b3-2a20-4f2a-94c9-5f04bf124e0b'),(146534,146521,NULL,8,2,NULL,'2021-03-26 06:20:27','2021-03-26 06:20:27',7,'009e3d43-e15a-4528-9739-9500eda24045'),(146535,146521,NULL,8,17,NULL,'2021-03-26 06:20:27','2021-03-26 06:20:27',8,'7e789a49-fded-44bb-87ad-91acb0ad991e'),(146536,146521,NULL,8,2,NULL,'2021-03-26 06:20:27','2021-03-26 06:20:27',9,'9b427a2f-453d-412e-80cf-a28dfe5d0d52'),(146537,146521,NULL,8,21,NULL,'2021-03-26 06:20:27','2021-03-26 06:20:27',10,'e9a7861e-45d7-4009-a938-f4f484e97d36'),(146565,146564,NULL,8,2,NULL,'2021-03-26 06:30:49','2021-03-26 06:30:49',1,'66cc9f1b-3e1d-4b23-97b2-2cfb344bfe23'),(146566,146564,NULL,8,3,NULL,'2021-03-26 06:30:49','2021-03-26 06:30:49',2,'e74c811c-8772-4f7a-b22e-2e29420c5a71'),(146569,146564,NULL,8,2,NULL,'2021-03-26 06:30:49','2021-03-26 06:30:49',3,'1937943a-93c7-49d1-937e-f74f4cfe63f5'),(146570,146564,NULL,8,3,NULL,'2021-03-26 06:30:49','2021-03-26 06:30:49',4,'632cbf82-7877-4024-afa8-2d5f54d29156'),(146571,146564,NULL,8,2,NULL,'2021-03-26 06:30:49','2021-03-26 06:30:49',5,'29d496fe-a5fa-485b-9b35-f9756f564d51'),(146572,146564,NULL,8,3,NULL,'2021-03-26 06:30:49','2021-03-26 06:30:49',6,'28167a05-dd54-48ef-a12b-a00d4da2fd3d'),(146573,146564,NULL,8,21,NULL,'2021-03-26 06:30:49','2021-03-26 06:30:49',7,'e3ef6af1-8573-40b8-9501-f6bfb5e1c83e'),(146577,146576,NULL,8,2,NULL,'2021-03-26 06:31:16','2021-03-26 06:31:16',1,'ae8a94df-3c90-4518-837f-6483adda2442'),(146578,146576,NULL,8,3,NULL,'2021-03-26 06:31:16','2021-03-26 06:31:16',2,'229bed8a-063c-4735-967b-698a597c6540'),(146581,146576,NULL,8,2,NULL,'2021-03-26 06:31:16','2021-03-26 06:31:16',3,'2001b2a6-0136-45b1-b9b1-150ed22fd50f'),(146582,146576,NULL,8,3,NULL,'2021-03-26 06:31:16','2021-03-26 06:31:16',4,'8ebd0d52-e7f4-4ec8-a78d-f0e64a517f30'),(146583,146576,NULL,8,2,NULL,'2021-03-26 06:31:16','2021-03-26 06:31:16',5,'ee8c1622-6d95-44bd-98f0-9cd8901f24f7'),(146584,146576,NULL,8,3,NULL,'2021-03-26 06:31:16','2021-03-26 06:31:16',6,'acc4c021-98c1-4790-8098-4585cd0173e3'),(146585,146576,NULL,8,21,NULL,'2021-03-26 06:31:16','2021-03-26 06:31:16',7,'653d601c-47cd-4345-af6b-510eb0435b84'),(146591,146590,NULL,8,2,NULL,'2021-03-29 00:32:24','2021-03-29 00:32:24',1,'3ef2d8af-5d04-4fe5-9521-d9154e1ff77d'),(146592,146590,NULL,8,3,NULL,'2021-03-29 00:32:24','2021-03-29 00:32:24',2,'e34eb509-a42a-4c86-8e2b-ab4b2e92b610'),(146595,146590,NULL,8,2,NULL,'2021-03-29 00:32:24','2021-03-29 00:32:24',3,'c7049011-efde-41df-9358-375eedd2e0eb'),(146596,146590,NULL,8,3,NULL,'2021-03-29 00:32:24','2021-03-29 00:32:24',4,'3778c890-7e96-46ee-a64a-673e729153ed'),(146597,146590,NULL,8,2,NULL,'2021-03-29 00:32:24','2021-03-29 00:32:24',5,'57d7ef8a-5dd6-4914-8044-70f08f22de17'),(146598,146590,NULL,8,3,NULL,'2021-03-29 00:32:24','2021-03-29 00:32:24',6,'d045052d-984f-471f-a29a-73854f876d09'),(146599,146590,NULL,8,21,NULL,'2021-03-29 00:32:24','2021-03-29 00:32:24',7,'b7215a66-107f-4896-a14d-1af83f254986'),(146604,146603,NULL,8,2,NULL,'2021-03-29 00:47:21','2021-03-29 00:47:21',1,'eaef0354-b9aa-4826-99bd-f1cea95fd15c'),(146605,146603,NULL,8,3,NULL,'2021-03-29 00:47:21','2021-03-29 00:47:21',2,'01b85410-01e4-422f-99ea-d3c39aa22cf0'),(146606,146603,NULL,8,2,NULL,'2021-03-29 00:47:21','2021-03-29 00:47:21',3,'ede1c56a-76a6-4465-9c31-a68b2d148aff'),(146607,146603,NULL,8,3,NULL,'2021-03-29 00:47:21','2021-03-29 00:47:21',4,'1f4ac3f1-00a0-4bdf-8c29-e59f88ce6ba5'),(146650,146649,NULL,8,2,NULL,'2021-03-29 00:47:48','2021-03-29 00:47:48',1,'1338a7d4-d0c0-43fa-9a4d-bd3a891894fc'),(146651,146649,NULL,8,15,NULL,'2021-03-29 00:47:48','2021-03-29 00:47:48',2,'0b0764f2-a0dc-4451-be54-bcde511bc915'),(146655,146649,NULL,8,2,NULL,'2021-03-29 00:47:48','2021-03-29 00:47:48',3,'90272156-886c-472e-b1ea-93e35437ac21'),(146656,146649,NULL,8,18,NULL,'2021-03-29 00:47:48','2021-03-29 00:47:48',4,'88d1aa69-ab07-4557-a6e5-e316c11dc20a'),(146657,146649,NULL,8,2,NULL,'2021-03-29 00:47:48','2021-03-29 00:47:48',5,'163ec4c3-4307-4fa5-b5ff-f94ec5406da0'),(146658,146649,NULL,8,15,NULL,'2021-03-29 00:47:48','2021-03-29 00:47:48',6,'ad68eb4b-89e3-4869-a1f5-df2bb25541b0'),(146662,146649,NULL,8,2,NULL,'2021-03-29 00:47:48','2021-03-29 00:47:48',7,'c0eff38b-619e-464e-99b2-c96e7648432e'),(146663,146649,NULL,8,17,NULL,'2021-03-29 00:47:48','2021-03-29 00:47:48',8,'7d129def-6c76-47d6-b2df-5452056e8b78'),(146664,146649,NULL,8,2,NULL,'2021-03-29 00:47:48','2021-03-29 00:47:48',9,'6525a125-3ff4-48aa-b5dd-bdbf96b41923'),(146665,146649,NULL,8,21,NULL,'2021-03-29 00:47:48','2021-03-29 00:47:48',10,'042f5156-1813-48d7-8a70-25fb7c35c1f4'),(146739,146738,NULL,8,2,NULL,'2021-03-29 00:50:04','2021-03-29 00:50:04',1,'f88b5f07-431c-4360-bba6-51bad3e6f56c'),(146740,146738,NULL,8,3,NULL,'2021-03-29 00:50:04','2021-03-29 00:50:04',2,'97b51a1f-c004-454d-a37e-5dbe2dca8c85'),(146743,146738,NULL,8,2,NULL,'2021-03-29 00:50:04','2021-03-29 00:50:04',3,'c0322f84-cbbc-4c82-a7a5-5241f4a640ba'),(146744,146738,NULL,8,3,NULL,'2021-03-29 00:50:04','2021-03-29 00:50:04',4,'d3707297-a056-4fb2-b682-92a79df93162'),(146746,146738,NULL,8,2,NULL,'2021-03-29 00:50:04','2021-03-29 00:50:04',5,'776422e0-4355-4297-a045-db161dce0c4c'),(146747,146738,NULL,8,3,NULL,'2021-03-29 00:50:04','2021-03-29 00:50:04',6,'1f0d4cf8-2d42-4dc9-8518-906d88ac4e44'),(146749,146738,NULL,8,2,NULL,'2021-03-29 00:50:04','2021-03-29 00:50:04',7,'466e8d11-3dfb-4e4a-92d9-150d5dd024f2'),(146750,146738,NULL,8,3,NULL,'2021-03-29 00:50:04','2021-03-29 00:50:04',8,'cfb956b6-6de5-46a8-b261-ecffeea3f174'),(146752,146738,NULL,8,2,NULL,'2021-03-29 00:50:04','2021-03-29 00:50:04',9,'7a3724cc-7467-4761-8d2b-d3ad136fb84b'),(146753,146738,NULL,8,3,NULL,'2021-03-29 00:50:04','2021-03-29 00:50:04',10,'b8adbeb5-4e4b-4544-bdf9-81c5b66e6f21'),(146755,146738,NULL,8,3,NULL,'2021-03-29 00:50:04','2021-03-29 00:50:04',11,'d22032d2-1f51-4850-bee2-48dfddd61159'),(146757,146738,NULL,8,2,NULL,'2021-03-29 00:50:04','2021-03-29 00:50:04',12,'f039de3e-d058-49ff-a082-91f000473749'),(146758,146738,NULL,8,3,NULL,'2021-03-29 00:50:04','2021-03-29 00:50:04',13,'6ba38a4b-ac3d-4fe6-abb8-7560bca29893'),(146760,146738,NULL,8,3,NULL,'2021-03-29 00:50:04','2021-03-29 00:50:04',14,'24baeb0e-9ea0-4710-9dc3-93ce3860412c'),(146762,146738,NULL,8,3,NULL,'2021-03-29 00:50:04','2021-03-29 00:50:04',15,'0ac3e6f6-411a-4fdb-8dca-0d7e653bcf56'),(146764,146738,NULL,8,2,NULL,'2021-03-29 00:50:04','2021-03-29 00:50:04',16,'70afb525-8288-4e3c-a593-401781318061'),(146765,146738,NULL,8,15,NULL,'2021-03-29 00:50:04','2021-03-29 00:50:04',17,'df8000bd-f8ed-441b-9b45-a31767761543'),(146767,146738,NULL,8,2,NULL,'2021-03-29 00:50:04','2021-03-29 00:50:04',18,'5a421807-e410-4e97-b348-6df62a6c4ee8'),(146768,146738,NULL,8,3,NULL,'2021-03-29 00:50:04','2021-03-29 00:50:04',19,'568c6705-dbff-4a05-a1e6-60999f3b82cc'),(146770,146738,NULL,8,3,NULL,'2021-03-29 00:50:04','2021-03-29 00:50:04',20,'e4d156a0-623c-4782-b0da-c29899f82326'),(146774,146773,NULL,8,2,NULL,'2021-03-29 01:18:17','2021-03-29 01:18:17',1,'e6b65737-08f2-4db4-97bf-cb878d3fc09d'),(146775,146773,NULL,8,15,NULL,'2021-03-29 01:18:17','2021-03-29 01:18:17',2,'8d305f4d-bc0b-44a8-9959-b8105e6f503a'),(146779,146773,NULL,8,2,NULL,'2021-03-29 01:18:17','2021-03-29 01:18:17',3,'66dfab75-d21f-458d-9ffd-1408777adfff'),(146780,146773,NULL,8,18,NULL,'2021-03-29 01:18:17','2021-03-29 01:18:17',4,'a06d00bc-3e02-4714-a022-e59c7cfa452c'),(146781,146773,NULL,8,2,NULL,'2021-03-29 01:18:17','2021-03-29 01:18:17',5,'aa5109fe-ac1b-47d9-90f2-e9abb9e36d06'),(146782,146773,NULL,8,15,NULL,'2021-03-29 01:18:17','2021-03-29 01:18:17',6,'015dfba0-04ff-469b-a96f-8c0f851f5898'),(146786,146773,NULL,8,2,NULL,'2021-03-29 01:18:17','2021-03-29 01:18:17',7,'7b7150e6-258d-4a7a-ac24-f9e3009f6dec'),(146787,146773,NULL,8,17,NULL,'2021-03-29 01:18:17','2021-03-29 01:18:17',8,'f8cbbac7-bac9-4325-b767-067191b04ec0'),(146788,146773,NULL,8,2,NULL,'2021-03-29 01:18:17','2021-03-29 01:18:17',9,'5be29b5e-cf2d-4022-a75b-15a310b7288b'),(146789,146773,NULL,8,21,NULL,'2021-03-29 01:18:17','2021-03-29 01:18:17',10,'3f3c8d01-f052-45cc-9f57-853b2cba1df1'),(146821,146820,NULL,8,2,NULL,'2021-03-29 01:56:58','2021-03-29 01:56:58',1,'13657d33-32aa-4df5-9794-06beb559a6da'),(146822,146820,NULL,8,3,NULL,'2021-03-29 01:56:58','2021-03-29 01:56:58',2,'13484404-950d-4d5d-97b5-652492ba1b3c'),(146823,146820,NULL,8,2,NULL,'2021-03-29 01:56:58','2021-03-29 01:56:58',3,'e083f67e-f018-4fee-8ddd-718525b5c8ee'),(146824,146820,NULL,8,3,NULL,'2021-03-29 01:56:58','2021-03-29 01:56:58',4,'b4e86e1b-9048-4aa3-80a2-88e6f35a606a'),(146826,146820,NULL,8,2,NULL,'2021-03-29 01:56:58','2021-03-29 01:56:58',5,'83255d2a-a769-47bd-889e-322d02658624'),(146827,146820,NULL,8,15,NULL,'2021-03-29 01:56:58','2021-03-29 01:56:58',6,'f43e174f-9e28-439e-ab7e-dd8ab849be4c'),(146828,146820,NULL,8,2,NULL,'2021-03-29 01:56:58','2021-03-29 01:56:58',7,'29326c85-fafc-46f0-849e-1006c021c272'),(146829,146820,NULL,8,3,NULL,'2021-03-29 01:56:58','2021-03-29 01:56:58',8,'58713e24-ba6f-4a0e-8ea7-1609b0041daf'),(146831,146830,NULL,8,2,NULL,'2021-03-29 01:57:03','2021-03-29 01:57:03',1,'07f486cd-33f3-456d-9e59-673051c16c7d'),(146832,146830,NULL,8,3,NULL,'2021-03-29 01:57:03','2021-03-29 01:57:03',2,'93dc3bf8-b8ed-4cd6-9393-94ecc2fb6520'),(146833,146830,NULL,8,2,NULL,'2021-03-29 01:57:03','2021-03-29 01:57:03',3,'b37c55f1-38c1-47fa-865f-7cb577d5f650'),(146834,146830,NULL,8,3,NULL,'2021-03-29 01:57:03','2021-03-29 01:57:03',4,'142a8b98-6e56-4a0a-8479-6da40f531c02'),(146836,146830,NULL,8,2,NULL,'2021-03-29 01:57:03','2021-03-29 01:57:03',5,'9be6f106-dbac-408f-a81e-0884af22ee14'),(146837,146830,NULL,8,15,NULL,'2021-03-29 01:57:03','2021-03-29 01:57:03',6,'efa69c18-f6c0-4055-9a6d-4d142632fe5d'),(146838,146830,NULL,8,2,NULL,'2021-03-29 01:57:03','2021-03-29 01:57:03',7,'d30fd154-d928-4752-8a7b-ae4ad6f45afe'),(146839,146830,NULL,8,3,NULL,'2021-03-29 01:57:03','2021-03-29 01:57:03',8,'fc859691-9a33-4679-b56c-524575e5c3f2'),(146841,146840,NULL,8,2,NULL,'2021-03-29 02:50:37','2021-03-29 02:50:37',1,'a6a8252a-89f0-4417-8049-aa09a1061d18'),(146842,146840,NULL,8,15,NULL,'2021-03-29 02:50:37','2021-03-29 02:50:37',2,'fe9bf0e0-4593-4cfa-94ce-81ea1f85fa74'),(146846,146840,NULL,8,2,NULL,'2021-03-29 02:50:37','2021-03-29 02:50:37',3,'296e278d-f524-4e1d-a742-13722d78c555'),(146847,146840,NULL,8,18,NULL,'2021-03-29 02:50:37','2021-03-29 02:50:37',4,'68c2d725-d520-4b7c-9908-91c2b971d4c7'),(146848,146840,NULL,8,2,NULL,'2021-03-29 02:50:37','2021-03-29 02:50:37',5,'f8270f05-0565-4a2b-bbb6-4e924bbd5051'),(146849,146840,NULL,8,15,NULL,'2021-03-29 02:50:37','2021-03-29 02:50:37',6,'4842c640-eb90-4114-a20e-0e9aa1f8a60c'),(146853,146840,NULL,8,2,NULL,'2021-03-29 02:50:37','2021-03-29 02:50:37',7,'6cc2b7e6-5f6e-4e70-a520-67abf4db86c2'),(146854,146840,NULL,8,17,NULL,'2021-03-29 02:50:37','2021-03-29 02:50:37',8,'a478538d-f417-411a-be4f-009ece0819c9'),(146855,146840,NULL,8,2,NULL,'2021-03-29 02:50:37','2021-03-29 02:50:37',9,'1afce596-5246-4219-be8a-846abc970c85'),(146856,146840,NULL,8,21,NULL,'2021-03-29 02:50:37','2021-03-29 02:50:37',10,'1412ee50-a2ab-454e-a6cd-3d9b7503f5db'),(146904,146903,NULL,8,2,NULL,'2021-03-29 03:00:49','2021-03-29 03:00:49',1,'61ec2b5b-c4ac-4e07-956a-52c0906f90aa'),(146905,146903,NULL,8,3,NULL,'2021-03-29 03:00:49','2021-03-29 03:00:49',2,'cf74b89e-5957-4623-82b2-c7f7cbdc9377'),(146908,146903,NULL,8,2,NULL,'2021-03-29 03:00:49','2021-03-29 03:00:49',3,'e3204188-927b-42cb-b138-8cb9388f3ca7'),(146909,146903,NULL,8,3,NULL,'2021-03-29 03:00:49','2021-03-29 03:00:49',4,'0292e037-3cc8-493e-a14d-00bc472c7c7c'),(146910,146903,NULL,8,3,NULL,'2021-03-29 03:00:49','2021-03-29 03:00:49',5,'44fce01b-4a30-492a-b254-502aaefb889c'),(146915,146903,NULL,8,3,NULL,'2021-03-29 03:00:49','2021-03-29 03:00:49',6,'6e14965e-872b-4a5d-9f62-f1ab908292f7'),(146916,146903,NULL,8,12,NULL,'2021-03-29 03:00:49','2021-03-29 03:00:49',7,'dd7b533a-964d-4c63-adb0-003ff38c28d6'),(146917,146903,NULL,8,3,NULL,'2021-03-29 03:00:49','2021-03-29 03:00:49',8,'58636590-6065-4d94-b8af-844e4dfee7ab'),(146918,146903,NULL,8,12,NULL,'2021-03-29 03:00:49','2021-03-29 03:00:49',9,'ccd6a1d8-6bb3-4a37-8216-5085576e7460'),(146919,146903,NULL,8,2,NULL,'2021-03-29 03:00:49','2021-03-29 03:00:49',10,'669d7c50-8d9e-4a6d-956f-84509d1bca45'),(146920,146903,NULL,8,9,NULL,'2021-03-29 03:00:49','2021-03-29 03:00:49',11,'1bef4abb-9685-4874-8816-1dec0ed6beb4'),(146922,146903,NULL,8,2,NULL,'2021-03-29 03:00:49','2021-03-29 03:00:49',12,'a599a54c-81ca-4589-8e2c-596b428ed4bb'),(146923,146903,NULL,8,3,NULL,'2021-03-29 03:00:49','2021-03-29 03:00:49',13,'86206168-354b-4266-b619-112c5a3d451f'),(146925,146924,NULL,8,2,NULL,'2021-03-29 03:00:55','2021-03-29 03:00:55',1,'cbc5b522-df0f-4b50-9dab-eb646c653415'),(146926,146924,NULL,8,3,NULL,'2021-03-29 03:00:55','2021-03-29 03:00:55',2,'0e9e15fd-ba9d-4fa0-b5fc-7d7ebe420423'),(146929,146924,NULL,8,2,NULL,'2021-03-29 03:00:55','2021-03-29 03:00:55',3,'54e7aaa6-18d4-45ee-abea-cfda87d3e4ec'),(146930,146924,NULL,8,3,NULL,'2021-03-29 03:00:55','2021-03-29 03:00:55',4,'92f73cca-2091-490e-aa2d-d4b687496cc1'),(146931,146924,NULL,8,3,NULL,'2021-03-29 03:00:55','2021-03-29 03:00:55',5,'3dbc2c83-8ac3-42fd-a0ff-de033592a3c2'),(146936,146924,NULL,8,3,NULL,'2021-03-29 03:00:55','2021-03-29 03:00:55',6,'08140c10-9cf3-469e-b6c7-805bf4b4fddf'),(146937,146924,NULL,8,12,NULL,'2021-03-29 03:00:55','2021-03-29 03:00:55',7,'0f9d9aee-edad-4615-9d44-07bbbded786f'),(146938,146924,NULL,8,3,NULL,'2021-03-29 03:00:55','2021-03-29 03:00:55',8,'9b152668-411e-434a-9abd-be9696eeb0ef'),(146939,146924,NULL,8,12,NULL,'2021-03-29 03:00:55','2021-03-29 03:00:55',9,'cf2f1874-e6bc-458b-b903-8836ff6b38c1'),(146940,146924,NULL,8,2,NULL,'2021-03-29 03:00:55','2021-03-29 03:00:55',10,'72f43d93-4bf0-4962-8a8e-a7bb6b9f8068'),(146941,146924,NULL,8,9,NULL,'2021-03-29 03:00:55','2021-03-29 03:00:55',11,'508e0eda-1dbe-4f58-870f-71b599dad6f1'),(146943,146924,NULL,8,2,NULL,'2021-03-29 03:00:55','2021-03-29 03:00:55',12,'b7b8e6be-9fcd-4e86-8284-861972e8b307'),(146944,146924,NULL,8,3,NULL,'2021-03-29 03:00:55','2021-03-29 03:00:55',13,'71215863-d5a3-4e98-921d-1797ebcb3f71'),(146969,146968,NULL,8,2,NULL,'2021-03-29 06:14:52','2021-03-29 06:14:52',1,'658425fc-3bb3-4feb-b139-4c9e917ae819'),(146970,146968,NULL,8,3,NULL,'2021-03-29 06:14:52','2021-03-29 06:14:52',2,'75c6ce8d-ae9d-4998-b908-abb8669e4355'),(146972,146968,NULL,8,3,NULL,'2021-03-29 06:14:52','2021-03-29 06:14:52',3,'3b5cf07d-ff49-499a-bf04-0c1ece464e39'),(146973,146968,NULL,8,2,NULL,'2021-03-29 06:14:52','2021-03-29 06:14:52',4,'8a8af2d5-993f-4645-be8f-2c0dd43f2829'),(146974,146968,NULL,8,3,NULL,'2021-03-29 06:14:52','2021-03-29 06:14:52',5,'803ad95a-7040-48ef-ae95-cdfe8dc0aec6'),(146978,146968,NULL,8,2,NULL,'2021-03-29 06:14:52','2021-03-29 06:14:52',6,'fd4e36af-c267-4812-b003-87bab20827d4'),(146979,146968,NULL,8,3,NULL,'2021-03-29 06:14:52','2021-03-29 06:14:52',7,'70139e4b-a176-451a-90fd-a73198da63f6'),(146981,146968,NULL,8,2,NULL,'2021-03-29 06:14:52','2021-03-29 06:14:52',8,'b536f14d-81cc-4f7f-8509-e5c957e5394b'),(146982,146968,NULL,8,3,NULL,'2021-03-29 06:14:52','2021-03-29 06:14:52',9,'dd325c69-2a40-4ab1-a2b1-b4c30d71905e'),(146984,146968,NULL,8,3,NULL,'2021-03-29 06:14:52','2021-03-29 06:14:52',10,'f61bd398-0bca-4657-9315-d60270965edc'),(146992,146968,NULL,8,3,NULL,'2021-03-29 06:14:52','2021-03-29 06:14:52',11,'ada6781a-9b67-4f3f-a752-688238a4bb9f'),(146996,146968,NULL,8,2,NULL,'2021-03-29 06:14:52','2021-03-29 06:14:52',12,'25957361-2e6a-4e7f-98f8-3ed68372cbac'),(146997,146968,NULL,8,3,NULL,'2021-03-29 06:14:52','2021-03-29 06:14:52',13,'d1ddbf88-d93e-44d6-b623-fbc1eeb5cd18'),(147001,146968,NULL,8,2,NULL,'2021-03-29 06:14:52','2021-03-29 06:14:52',14,'0db5fd5b-6891-4391-a671-3e3c94cb12c3'),(147002,146968,NULL,8,3,NULL,'2021-03-29 06:14:52','2021-03-29 06:14:52',15,'7c6b5f68-287e-417b-b6e0-e6ab7e1fdb65'),(147003,146968,NULL,8,7,NULL,'2021-03-29 06:14:52','2021-03-29 06:14:52',16,'7e97a937-ce72-448a-807f-ef03cccdbca0'),(147005,147004,NULL,8,2,NULL,'2021-03-29 06:42:45','2021-03-29 06:42:45',1,'49137cd4-4bd4-4059-b423-54cdb9a2344b'),(147006,147004,NULL,8,3,NULL,'2021-03-29 06:42:46','2021-03-29 06:42:46',2,'75bd5bc2-97ff-4ccc-bfa6-cd90b92676f2'),(147009,147004,NULL,8,2,NULL,'2021-03-29 06:42:46','2021-03-29 06:42:46',3,'8cec9845-e558-485e-9287-db91df21c8f4'),(147010,147004,NULL,8,3,NULL,'2021-03-29 06:42:46','2021-03-29 06:42:46',4,'9e72f075-3747-48c9-9dac-5ed74aa608ca'),(147011,147004,NULL,8,2,NULL,'2021-03-29 06:42:46','2021-03-29 06:42:46',5,'ef7fc119-a5ed-4e8b-85cf-db1e5fbeb51a'),(147012,147004,NULL,8,3,NULL,'2021-03-29 06:42:46','2021-03-29 06:42:46',6,'19c32614-8368-4bad-ac47-63a9fac931d9'),(147013,147004,NULL,8,21,NULL,'2021-03-29 06:42:46','2021-03-29 06:42:46',7,'6a302b89-a45f-4268-8186-2f4ca7335b61'),(147035,147034,NULL,8,2,NULL,'2021-03-29 22:43:23','2021-03-29 22:43:23',1,'0044fb55-c8a2-4152-bfa7-c3b2a38391bb'),(147036,147034,NULL,8,3,NULL,'2021-03-29 22:43:23','2021-03-29 22:43:23',2,'62d05421-49e2-41e1-bb05-9786c8af69e8'),(147039,147034,NULL,8,2,NULL,'2021-03-29 22:43:23','2021-03-29 22:43:23',3,'da265b03-6a65-4c89-8fd0-3c825702a21e'),(147040,147034,NULL,8,3,NULL,'2021-03-29 22:43:23','2021-03-29 22:43:23',4,'558f382b-f15f-4d23-8d6b-c448a95a2bd1'),(147041,147034,NULL,8,2,NULL,'2021-03-29 22:43:23','2021-03-29 22:43:23',5,'b70be07c-52a9-4c7a-bd75-320f676c2c75'),(147042,147034,NULL,8,3,NULL,'2021-03-29 22:43:23','2021-03-29 22:43:23',6,'4e5f5567-42fb-49c6-aa06-1eb844a2551e'),(147043,147034,NULL,8,21,NULL,'2021-03-29 22:43:23','2021-03-29 22:43:23',7,'e94977d9-930c-4fc6-8dba-bdafd8e2158f'),(147089,147088,NULL,8,2,NULL,'2021-03-30 22:50:31','2021-03-30 22:50:31',1,'cfe4bf81-9bdf-4223-9988-81c0cff5d8a4'),(147090,147088,NULL,8,3,NULL,'2021-03-30 22:50:31','2021-03-30 22:50:31',2,'3cc3c154-d09e-411f-bdc2-c4b7d603a9da'),(147093,147088,NULL,8,2,NULL,'2021-03-30 22:50:31','2021-03-30 22:50:31',3,'ad865e68-d087-4988-91eb-cf4c27cd7431'),(147094,147088,NULL,8,3,NULL,'2021-03-30 22:50:31','2021-03-30 22:50:31',4,'f88a2539-bdf7-4aec-a80d-ac7c11bde502'),(147095,147088,NULL,8,2,NULL,'2021-03-30 22:50:31','2021-03-30 22:50:31',5,'6aa87cf2-962f-488b-a8b4-05ea332be975'),(147096,147088,NULL,8,3,NULL,'2021-03-30 22:50:31','2021-03-30 22:50:31',6,'aaed652f-70eb-43c5-8cb6-84d533d268d1'),(147097,147088,NULL,8,21,NULL,'2021-03-30 22:50:31','2021-03-30 22:50:31',7,'6f489207-ed37-438e-a95a-1004b98f6292'),(148306,148305,NULL,8,2,NULL,'2021-03-31 06:16:59','2021-03-31 06:16:59',1,'e085d9d5-6edd-4240-9163-d8b6f4d450ba'),(148307,148305,NULL,8,3,NULL,'2021-03-31 06:16:59','2021-03-31 06:16:59',2,'19b33159-ea96-4f5c-b3b2-a7fd5382a7bf'),(148309,148305,NULL,8,3,NULL,'2021-03-31 06:16:59','2021-03-31 06:16:59',3,'b697501c-b9a9-4a6f-a01e-6d6b64e2d5ce'),(148310,148305,NULL,8,2,NULL,'2021-03-31 06:16:59','2021-03-31 06:16:59',4,'0ef26393-348f-47d2-bd24-4cd1d30f4ed0'),(148311,148305,NULL,8,3,NULL,'2021-03-31 06:16:59','2021-03-31 06:16:59',5,'2583ce4b-7fcd-4a36-8f52-2308f22798e8'),(148315,148305,NULL,8,2,NULL,'2021-03-31 06:16:59','2021-03-31 06:16:59',6,'f8104194-6db0-47af-91ab-7df03042ae23'),(148316,148305,NULL,8,3,NULL,'2021-03-31 06:16:59','2021-03-31 06:16:59',7,'7369fefd-390e-4647-83dc-1cb4e08ad5d1'),(148318,148305,NULL,8,2,NULL,'2021-03-31 06:16:59','2021-03-31 06:16:59',8,'02549102-41b3-4ff5-b662-e106a6bb362e'),(148319,148305,NULL,8,3,NULL,'2021-03-31 06:16:59','2021-03-31 06:16:59',9,'71016e5f-2b97-45d0-a6b6-07addea07cde'),(148321,148305,NULL,8,3,NULL,'2021-03-31 06:16:59','2021-03-31 06:16:59',10,'32096a4c-fccf-4a92-8758-25a9f99a4ce9'),(148329,148305,NULL,8,3,NULL,'2021-03-31 06:16:59','2021-03-31 06:16:59',11,'043e10e9-a68a-4205-b8be-db7d8d2f2aa7'),(148333,148305,NULL,8,2,NULL,'2021-03-31 06:16:59','2021-03-31 06:16:59',12,'68fad58a-af1b-46e1-bd40-7d11670d4ebe'),(148334,148305,NULL,8,3,NULL,'2021-03-31 06:16:59','2021-03-31 06:16:59',13,'6ddefa0b-f28e-4f22-a70e-5b2c78317d0d'),(148338,148305,NULL,8,2,NULL,'2021-03-31 06:16:59','2021-03-31 06:16:59',14,'2c2cafc0-cac0-41bc-8d09-f6c3cdfd5737'),(148339,148305,NULL,8,3,NULL,'2021-03-31 06:16:59','2021-03-31 06:16:59',15,'d2d5cd45-b0bc-48bf-9427-4c5c9983e860'),(148340,148305,NULL,8,7,NULL,'2021-03-31 06:16:59','2021-03-31 06:16:59',16,'f442d2d2-c8bd-41e8-8de2-d41a01017630'),(148345,148344,NULL,8,2,NULL,'2021-03-31 06:18:20','2021-03-31 06:18:20',1,'ea389e5a-45a7-4a8a-a78e-f9b5f528a04a'),(148346,148344,NULL,8,3,NULL,'2021-03-31 06:18:20','2021-03-31 06:18:20',2,'1834ce09-16f2-43ad-9a49-fdb9834decc2'),(148348,148344,NULL,8,3,NULL,'2021-03-31 06:18:20','2021-03-31 06:18:20',3,'bfc61e0a-14e2-4f28-b0c1-e11770fd3cdd'),(148349,148344,NULL,8,2,NULL,'2021-03-31 06:18:20','2021-03-31 06:18:20',4,'f86f447d-52fc-42c2-b3df-240318004e5f'),(148350,148344,NULL,8,3,NULL,'2021-03-31 06:18:20','2021-03-31 06:18:20',5,'381a8074-2e02-46e6-a01c-5103f647025f'),(148354,148344,NULL,8,2,NULL,'2021-03-31 06:18:20','2021-03-31 06:18:20',6,'80037d83-fd6e-4c38-8c92-fb62b54fd9f2'),(148355,148344,NULL,8,3,NULL,'2021-03-31 06:18:20','2021-03-31 06:18:20',7,'3eff22f9-dbc4-41c4-ba1d-066a39ba6460'),(148357,148344,NULL,8,2,NULL,'2021-03-31 06:18:20','2021-03-31 06:18:20',8,'da7f8475-d7f5-4fa2-b223-2ba377f8bd74'),(148358,148344,NULL,8,3,NULL,'2021-03-31 06:18:20','2021-03-31 06:18:20',9,'28151994-dee3-4459-9200-387cd9c7002b'),(148360,148344,NULL,8,3,NULL,'2021-03-31 06:18:20','2021-03-31 06:18:20',10,'e371a767-8306-43aa-a6fb-f94840e6f1c1'),(148368,148344,NULL,8,3,NULL,'2021-03-31 06:18:20','2021-03-31 06:18:20',11,'46837133-2a13-4f6b-81d3-f09a142fd730'),(148372,148344,NULL,8,2,NULL,'2021-03-31 06:18:20','2021-03-31 06:18:20',12,'85f26e91-a918-4f52-8d36-79463885b538'),(148373,148344,NULL,8,3,NULL,'2021-03-31 06:18:20','2021-03-31 06:18:20',13,'b68192a0-657d-452b-ad6f-0689e318e4fa'),(148377,148344,NULL,8,2,NULL,'2021-03-31 06:18:20','2021-03-31 06:18:20',14,'1c89e69a-39f6-4f68-a779-2b68f0499789'),(148378,148344,NULL,8,3,NULL,'2021-03-31 06:18:20','2021-03-31 06:18:20',15,'2e6c2963-412a-49d8-849f-99211e0c94d3'),(148379,148344,NULL,8,7,NULL,'2021-03-31 06:18:20','2021-03-31 06:18:20',16,'e8a36493-919a-4de4-a043-658d3047ba11'),(148522,148521,NULL,8,2,NULL,'2021-03-31 06:26:36','2021-03-31 06:26:36',1,'4a90c050-46d3-4833-b887-29a2f12a11c3'),(148523,148521,NULL,8,3,NULL,'2021-03-31 06:26:36','2021-03-31 06:26:36',2,'bac2a585-1d94-4644-b779-3e9df8803e0a'),(148525,148521,NULL,8,3,NULL,'2021-03-31 06:26:36','2021-03-31 06:26:36',3,'8868b56e-18de-47ec-8b0e-015e1e367e10'),(148526,148521,NULL,8,2,NULL,'2021-03-31 06:26:36','2021-03-31 06:26:36',4,'5893807b-939b-414f-8322-9b49740fc807'),(148527,148521,NULL,8,3,NULL,'2021-03-31 06:26:36','2021-03-31 06:26:36',5,'57e3a49c-4dfc-4e8f-abb4-19bb3b6b4b87'),(148531,148521,NULL,8,2,NULL,'2021-03-31 06:26:36','2021-03-31 06:26:36',6,'e2a340f5-4238-4db1-afa8-5a3c76a54ef7'),(148532,148521,NULL,8,3,NULL,'2021-03-31 06:26:36','2021-03-31 06:26:36',7,'da0a95f0-5ca3-4eb8-9037-e32bcad6bb63'),(148534,148521,NULL,8,2,NULL,'2021-03-31 06:26:36','2021-03-31 06:26:36',8,'9e29040d-e169-458a-a13a-1fbdbb401d03'),(148535,148521,NULL,8,3,NULL,'2021-03-31 06:26:36','2021-03-31 06:26:36',9,'552ec453-b69a-469f-9513-5a2c392debbc'),(148537,148521,NULL,8,3,NULL,'2021-03-31 06:26:36','2021-03-31 06:26:36',10,'ee415dd5-212d-4fca-ad4a-0407697830bd'),(148545,148521,NULL,8,3,NULL,'2021-03-31 06:26:36','2021-03-31 06:26:36',11,'96063535-9321-4ad7-b8ae-a74d08350c5d'),(148549,148521,NULL,8,2,NULL,'2021-03-31 06:26:36','2021-03-31 06:26:36',12,'283092b9-6dfb-476a-9247-21596be3123a'),(148550,148521,NULL,8,3,NULL,'2021-03-31 06:26:36','2021-03-31 06:26:36',13,'856fd06b-1304-4cd1-a1e9-817e0f5af157'),(148554,148521,NULL,8,2,NULL,'2021-03-31 06:26:36','2021-03-31 06:26:36',14,'07af8e5e-c196-4bea-aa2f-bae5dfd6240e'),(148555,148521,NULL,8,3,NULL,'2021-03-31 06:26:36','2021-03-31 06:26:36',15,'746c9d0d-f811-4d41-b995-e6f530dfa2c6'),(148556,148521,NULL,8,7,NULL,'2021-03-31 06:26:36','2021-03-31 06:26:36',16,'bc475419-3e2a-4e45-bf37-10512dc9646d'),(148736,148735,NULL,8,2,NULL,'2021-03-31 23:29:33','2021-03-31 23:29:33',1,'9bd4d685-42f4-4989-b71a-49f06b50d510'),(148737,148735,NULL,8,3,NULL,'2021-03-31 23:29:33','2021-03-31 23:29:33',2,'520aa5eb-97e6-4d86-8489-a93ebaf39217'),(148740,148735,NULL,8,2,NULL,'2021-03-31 23:29:33','2021-03-31 23:29:33',3,'789b0a47-cc04-423b-b8d1-01d5f724aec7'),(148741,148735,NULL,8,3,NULL,'2021-03-31 23:29:33','2021-03-31 23:29:33',4,'f3cb54db-9040-4de5-be11-8a4e8a853d0c'),(148742,148735,NULL,8,2,NULL,'2021-03-31 23:29:33','2021-03-31 23:29:33',5,'9816f102-04ec-4e05-a548-ab63f399a8d6'),(148743,148735,NULL,8,3,NULL,'2021-03-31 23:29:33','2021-03-31 23:29:33',6,'6902a6ac-f189-4998-a557-bcde8c3c0abc'),(148744,148735,NULL,8,21,NULL,'2021-03-31 23:29:33','2021-03-31 23:29:33',7,'de85a206-adeb-4839-b92b-d26400b25d75'),(148748,148747,NULL,8,2,NULL,'2021-03-31 23:29:38','2021-03-31 23:29:38',1,'236ffbae-ae3a-43cb-a81f-6102ea852a52'),(148749,148747,NULL,8,3,NULL,'2021-03-31 23:29:38','2021-03-31 23:29:38',2,'3a80300e-48d3-47a9-8140-beb477663bf2'),(148752,148747,NULL,8,2,NULL,'2021-03-31 23:29:38','2021-03-31 23:29:38',3,'9bbbeda5-5196-4e3b-8481-70ec8bdd204c'),(148753,148747,NULL,8,3,NULL,'2021-03-31 23:29:38','2021-03-31 23:29:38',4,'c726b44b-d0e8-437d-8ec8-9108022b0961'),(148754,148747,NULL,8,2,NULL,'2021-03-31 23:29:38','2021-03-31 23:29:38',5,'a6cd46bd-70ac-48a4-8ff2-1a3cd8cbc663'),(148755,148747,NULL,8,3,NULL,'2021-03-31 23:29:38','2021-03-31 23:29:38',6,'da88bc32-bb20-4eb5-931e-d3c2fcb59cb0'),(148756,148747,NULL,8,21,NULL,'2021-03-31 23:29:38','2021-03-31 23:29:38',7,'d1c99671-8e03-4d91-a7dc-af97b1425636'),(148988,148987,NULL,8,2,NULL,'2021-04-05 23:31:08','2021-04-05 23:31:08',1,'c8f53fba-e2aa-4f1c-ada4-5efc7313b9d2'),(148989,148987,NULL,8,3,NULL,'2021-04-05 23:31:09','2021-04-05 23:31:09',2,'72098c1f-bb74-4c0b-beb2-ab823b016c9c'),(148990,148987,NULL,8,2,NULL,'2021-04-05 23:31:09','2021-04-05 23:31:09',3,'7921fd6d-1ec1-4caa-97d7-702e96ba7bdd'),(148991,148987,NULL,8,3,NULL,'2021-04-05 23:31:09','2021-04-05 23:31:09',4,'f9c36de6-20af-4094-a900-a07cb637eaac'),(148992,148987,NULL,8,2,NULL,'2021-04-05 23:31:09','2021-04-05 23:31:09',5,'1e9ddf5f-3c09-46f8-81a2-148db1247c05'),(148993,148987,NULL,8,3,NULL,'2021-04-05 23:31:09','2021-04-05 23:31:09',6,'5474fab7-cd82-4031-bd3a-0771409be6fc'),(149028,149027,NULL,8,2,NULL,'2021-04-06 01:19:33','2021-04-06 01:19:33',1,'52bb7bce-388a-411c-b9af-c5d562b290b4'),(149029,149027,NULL,8,3,NULL,'2021-04-06 01:19:33','2021-04-06 01:19:33',2,'62e01c00-b15f-449e-9a3a-34ec8fe5d923'),(149030,149027,NULL,8,16,NULL,'2021-04-06 01:19:33','2021-04-06 01:19:33',3,'759618c3-4030-4c7d-a093-805eaf4a95fe'),(149031,149027,NULL,8,3,NULL,'2021-04-06 01:19:33','2021-04-06 01:19:33',4,'6c897db5-cd3d-46f0-8359-96215e405943'),(149032,149027,NULL,8,16,NULL,'2021-04-06 01:19:33','2021-04-06 01:19:33',5,'32a45101-5004-4c84-835d-159a4185004d'),(149033,149027,NULL,8,3,NULL,'2021-04-06 01:19:33','2021-04-06 01:19:33',6,'62465828-0e36-49c7-91e9-4d93af454de2'),(149034,149027,NULL,8,16,NULL,'2021-04-06 01:19:33','2021-04-06 01:19:33',7,'1a72d994-215c-45a5-975d-940d3ede0c24'),(149035,149027,NULL,8,2,NULL,'2021-04-06 01:19:33','2021-04-06 01:19:33',8,'ab8946cc-5be4-4f0e-ab3d-89abf3fe69cc'),(149036,149027,NULL,8,3,NULL,'2021-04-06 01:19:33','2021-04-06 01:19:33',9,'ae8443cd-fa8b-46dc-836e-77a05b946cbd'),(149037,149027,NULL,8,7,NULL,'2021-04-06 01:19:33','2021-04-06 01:19:33',10,'22700f46-426d-4c5e-bfa1-4149babfcb4a'),(149139,149138,NULL,8,2,NULL,'2021-04-06 02:15:06','2021-04-06 02:15:06',1,'53a441af-80ea-4e27-9ce8-3efe37328f2c'),(149140,149138,NULL,8,3,NULL,'2021-04-06 02:15:06','2021-04-06 02:15:06',2,'057cf9fc-b89b-4b37-a8fe-7985c8937816'),(149143,149138,NULL,8,4,NULL,'2021-04-06 02:15:06','2021-04-06 02:15:06',3,'33650380-ae4a-457f-98ab-7450a1ceee97'),(149144,149138,NULL,8,3,NULL,'2021-04-06 02:15:06','2021-04-06 02:15:06',4,'0b7c361c-7825-421f-9f72-62bf534a6313'),(149148,149138,NULL,8,4,NULL,'2021-04-06 02:15:06','2021-04-06 02:15:06',5,'c51fdd8c-3f31-46ab-bd35-09f34cf8b4e2'),(149149,149138,NULL,8,3,NULL,'2021-04-06 02:15:06','2021-04-06 02:15:06',6,'02056333-acf6-48a1-8411-49aa5699319c'),(149154,149138,NULL,8,4,NULL,'2021-04-06 02:15:06','2021-04-06 02:15:06',7,'e95d016e-f770-420b-bea4-991af9d69589'),(149155,149138,NULL,8,3,NULL,'2021-04-06 02:15:06','2021-04-06 02:15:06',8,'ab721fa8-8a49-4c0c-a51e-19e5dca62c05'),(149157,149138,NULL,8,2,NULL,'2021-04-06 02:15:06','2021-04-06 02:15:06',9,'5228ff7c-cd82-4e6c-95ed-6fbafc1d8482'),(149158,149138,NULL,8,3,NULL,'2021-04-06 02:15:06','2021-04-06 02:15:06',10,'519cdea3-c25f-477f-a739-300751f4d94b'),(149159,149138,NULL,8,2,NULL,'2021-04-06 02:15:06','2021-04-06 02:15:06',11,'f2c86beb-399b-4775-bc9d-387e214dc5b2'),(149160,149138,NULL,8,3,NULL,'2021-04-06 02:15:06','2021-04-06 02:15:06',12,'565a0018-f889-4210-b4f2-45dd69e36fa0'),(149162,149138,NULL,8,2,NULL,'2021-04-06 02:15:06','2021-04-06 02:15:06',13,'9f443f48-dc97-438c-a5c4-e0ab60e618f7'),(149163,149138,NULL,8,3,NULL,'2021-04-06 02:15:06','2021-04-06 02:15:06',14,'355dfb51-ee0a-42aa-bf4b-0771f49597c2'),(149169,149138,NULL,8,2,NULL,'2021-04-06 02:15:06','2021-04-06 02:15:06',15,'8c3e1a87-3114-4e9c-8f01-79a6805d5473'),(149170,149138,NULL,8,3,NULL,'2021-04-06 02:15:06','2021-04-06 02:15:06',16,'d9ffe2eb-45a0-42ee-88db-2cc3ba47c200'),(149171,149138,NULL,8,16,NULL,'2021-04-06 02:15:06','2021-04-06 02:15:06',17,'fe7a9a05-eeda-4965-a319-c50486a9717d'),(149172,149138,NULL,8,2,NULL,'2021-04-06 02:15:06','2021-04-06 02:15:06',18,'591f6a4d-936a-4f48-a637-7dcc93be9af5'),(149173,149138,NULL,8,3,NULL,'2021-04-06 02:15:06','2021-04-06 02:15:06',19,'d6ddb99c-39fc-4b02-8ddf-a43bbfa3b856'),(149177,149138,NULL,8,3,NULL,'2021-04-06 02:15:06','2021-04-06 02:15:06',20,'1762bef7-1a94-483d-82be-60d375e5e51d'),(149179,149178,NULL,8,2,NULL,'2021-04-06 02:15:14','2021-04-06 02:15:14',1,'89904fdf-4669-4567-81de-85d3db060d5a'),(149180,149178,NULL,8,3,NULL,'2021-04-06 02:15:14','2021-04-06 02:15:14',2,'2bd8fef3-b7bd-4459-8530-1523e0de0e0d'),(149183,149178,NULL,8,4,NULL,'2021-04-06 02:15:14','2021-04-06 02:15:14',3,'6c6e0004-f700-43b4-aa4d-28d737f83a57'),(149184,149178,NULL,8,3,NULL,'2021-04-06 02:15:14','2021-04-06 02:15:14',4,'b6ca3633-ce7d-4db8-a524-b489a52bf4f7'),(149188,149178,NULL,8,4,NULL,'2021-04-06 02:15:14','2021-04-06 02:15:14',5,'6cd0ff5a-a6f2-479d-9bce-f044ffadf2e2'),(149189,149178,NULL,8,3,NULL,'2021-04-06 02:15:14','2021-04-06 02:15:14',6,'5f878591-e7e4-42ac-bf19-c246c258c8ce'),(149194,149178,NULL,8,4,NULL,'2021-04-06 02:15:14','2021-04-06 02:15:14',7,'03268b71-bc42-4d23-94d0-35942b2ee2ef'),(149195,149178,NULL,8,3,NULL,'2021-04-06 02:15:14','2021-04-06 02:15:14',8,'c7cacc50-fd1e-4092-92eb-308c3c420f75'),(149197,149178,NULL,8,2,NULL,'2021-04-06 02:15:14','2021-04-06 02:15:14',9,'846ca577-8727-48e5-a95f-60536bd0171a'),(149198,149178,NULL,8,3,NULL,'2021-04-06 02:15:14','2021-04-06 02:15:14',10,'8327926f-2047-4f13-bf0e-37ade2852556'),(149199,149178,NULL,8,2,NULL,'2021-04-06 02:15:14','2021-04-06 02:15:14',11,'fbb2d3f2-20af-428c-92e6-542f7e9e6f01'),(149200,149178,NULL,8,3,NULL,'2021-04-06 02:15:14','2021-04-06 02:15:14',12,'fbc2b915-9273-4c9f-abf8-d7640b0c1035'),(149202,149178,NULL,8,2,NULL,'2021-04-06 02:15:14','2021-04-06 02:15:14',13,'83aeb16f-19e7-4739-b30d-1bcdf325931b'),(149203,149178,NULL,8,3,NULL,'2021-04-06 02:15:14','2021-04-06 02:15:14',14,'a87563f3-1ec3-486d-89ac-d9e269051d25'),(149209,149178,NULL,8,2,NULL,'2021-04-06 02:15:14','2021-04-06 02:15:14',15,'d4b46ea3-5508-4d4d-86c8-6d1e4c0b5fde'),(149210,149178,NULL,8,3,NULL,'2021-04-06 02:15:14','2021-04-06 02:15:14',16,'52306275-4516-484d-818d-4f2ac7349b79'),(149211,149178,NULL,8,16,NULL,'2021-04-06 02:15:14','2021-04-06 02:15:14',17,'86fd95df-c824-4d4a-9529-37c7f60889a3'),(149212,149178,NULL,8,2,NULL,'2021-04-06 02:15:14','2021-04-06 02:15:14',18,'f61671c0-aba3-4d2e-8b8d-8970af1d5409'),(149213,149178,NULL,8,3,NULL,'2021-04-06 02:15:14','2021-04-06 02:15:14',19,'5e1dd946-0e71-4ae0-85bf-b71d37a06347'),(149217,149178,NULL,8,3,NULL,'2021-04-06 02:15:14','2021-04-06 02:15:14',20,'1a0d0199-bd07-4593-bc0c-6a03a0b2382d'),(149270,149269,NULL,8,2,NULL,'2021-04-06 02:51:38','2021-04-06 02:51:38',1,'b4601c35-2979-4a03-9419-c7b3322f3cca'),(149271,149269,NULL,8,3,NULL,'2021-04-06 02:51:38','2021-04-06 02:51:38',2,'93088306-1f62-4d2c-9f2a-35f957b01406'),(149272,149269,NULL,8,2,NULL,'2021-04-06 02:51:38','2021-04-06 02:51:38',3,'5185ade2-12a8-4c29-9648-e69d46ab0847'),(149273,149269,NULL,8,3,NULL,'2021-04-06 02:51:38','2021-04-06 02:51:38',4,'4eb2383e-6cb9-4865-b96a-1ee7760a5b3c'),(149275,149269,NULL,8,2,NULL,'2021-04-06 02:51:38','2021-04-06 02:51:38',5,'6341263f-37b7-4613-8821-7ab171ce58da'),(149276,149269,NULL,8,3,NULL,'2021-04-06 02:51:38','2021-04-06 02:51:38',6,'13225360-0acb-4074-8c69-c78b4de5f36c'),(149279,149278,NULL,8,2,NULL,'2021-04-06 03:28:57','2021-04-06 03:28:57',1,'fb7f2989-a3d1-42c2-829d-8187fdc71b87'),(149280,149278,NULL,8,3,NULL,'2021-04-06 03:28:57','2021-04-06 03:28:57',2,'bd7eb1fc-53e4-49d4-bad3-d162b4575d29'),(149281,149278,NULL,8,2,NULL,'2021-04-06 03:28:57','2021-04-06 03:28:57',3,'5fe38ae6-12d7-4fdd-8f19-a3628c7fec18'),(149282,149278,NULL,8,3,NULL,'2021-04-06 03:28:57','2021-04-06 03:28:57',4,'f71b1a10-9ca7-4feb-80cd-b59ad96aa92b'),(149284,149278,NULL,8,2,NULL,'2021-04-06 03:28:57','2021-04-06 03:28:57',5,'8674d6d6-57f0-4bfa-a5ca-40dd5c45443d'),(149285,149278,NULL,8,3,NULL,'2021-04-06 03:28:57','2021-04-06 03:28:57',6,'145faa8c-c2d3-4c0e-9ff1-e956dc07d2f1'),(149288,149287,NULL,8,2,NULL,'2021-04-06 03:30:23','2021-04-06 03:30:23',1,'8c93b1c1-2613-4f28-89db-9abd56183651'),(149289,149287,NULL,8,3,NULL,'2021-04-06 03:30:23','2021-04-06 03:30:23',2,'9eafb5de-5bbc-4c4e-87a9-28a3896488c2'),(149290,149287,NULL,8,2,NULL,'2021-04-06 03:30:23','2021-04-06 03:30:23',3,'87564eb4-608e-40cc-9d7d-1c0e8d892d5f'),(149291,149287,NULL,8,3,NULL,'2021-04-06 03:30:23','2021-04-06 03:30:23',4,'03ec0ee6-8f1f-439f-b8f3-f7e536fb45f5'),(149293,149287,NULL,8,2,NULL,'2021-04-06 03:30:23','2021-04-06 03:30:23',5,'b6a76346-6af4-4aeb-a9ea-48c8f81e77c9'),(149294,149287,NULL,8,3,NULL,'2021-04-06 03:30:23','2021-04-06 03:30:23',6,'f4c743cb-3a65-413d-9848-ccfccdd140c8'),(149297,149296,NULL,8,2,NULL,'2021-04-06 03:39:59','2021-04-06 03:39:59',1,'96a6a585-125d-42c0-856b-7c796b791093'),(149298,149296,NULL,8,3,NULL,'2021-04-06 03:40:00','2021-04-06 03:40:00',2,'0c8f578c-93ee-4bea-b1cd-e44beb216863'),(149299,149296,NULL,8,2,NULL,'2021-04-06 03:40:00','2021-04-06 03:40:00',3,'e95f4bc0-8e15-40de-bfce-84084ca46355'),(149300,149296,NULL,8,3,NULL,'2021-04-06 03:40:00','2021-04-06 03:40:00',4,'6f7981d2-711e-4b00-b86d-363f36e404ef'),(149302,149296,NULL,8,2,NULL,'2021-04-06 03:40:00','2021-04-06 03:40:00',5,'0881c015-2036-44a9-9510-fd093f6f5d68'),(149303,149296,NULL,8,3,NULL,'2021-04-06 03:40:00','2021-04-06 03:40:00',6,'86b58d31-39e1-41f2-809b-3fd1e8f07bcf'),(149325,149324,NULL,8,2,NULL,'2021-04-06 07:05:21','2021-04-06 07:05:21',1,'2f5ffae8-181d-48ee-8396-57d65b7f3c3e'),(149326,149324,NULL,8,3,NULL,'2021-04-06 07:05:21','2021-04-06 07:05:21',2,'3e0de6ad-2990-4e31-beec-5742e312d408'),(149329,149324,NULL,8,2,NULL,'2021-04-06 07:05:21','2021-04-06 07:05:21',3,'15d403f0-f8c5-4768-ae87-87aa4d7c974a'),(149330,149324,NULL,8,3,NULL,'2021-04-06 07:05:21','2021-04-06 07:05:21',4,'cd43f2f0-26e9-4cea-8eab-27609af2bfa8'),(149331,149324,NULL,8,2,NULL,'2021-04-06 07:05:21','2021-04-06 07:05:21',5,'9f715656-ea70-4177-b020-7a112224bae7'),(149332,149324,NULL,8,3,NULL,'2021-04-06 07:05:21','2021-04-06 07:05:21',6,'f39e2e23-0b5b-4e58-9fb3-e68f4b91e1af'),(149333,149324,NULL,8,21,NULL,'2021-04-06 07:05:21','2021-04-06 07:05:21',7,'d26d6b37-cb2c-42ff-947f-086667a48771'),(149343,149342,NULL,8,2,NULL,'2021-04-07 00:57:14','2021-04-07 00:57:14',1,'58702403-11e8-4a61-87fc-502ff9fed7b4'),(149344,149342,NULL,8,3,NULL,'2021-04-07 00:57:14','2021-04-07 00:57:14',2,'8fbc2c55-a295-468f-b86e-5223de65968c'),(149345,149342,NULL,8,16,NULL,'2021-04-07 00:57:14','2021-04-07 00:57:14',3,'0069f480-2cfd-4111-945d-29a7eb018145'),(149346,149342,NULL,8,3,NULL,'2021-04-07 00:57:14','2021-04-07 00:57:14',4,'a21a0ec0-c15f-49e8-9de3-6cfa66d08b45'),(149347,149342,NULL,8,16,NULL,'2021-04-07 00:57:14','2021-04-07 00:57:14',5,'0e73c6de-66ed-4779-9362-2de5b0c3c88c'),(149348,149342,NULL,8,3,NULL,'2021-04-07 00:57:14','2021-04-07 00:57:14',6,'3a991e4a-6122-497c-b7cb-b3e1ba0ddd06'),(149349,149342,NULL,8,16,NULL,'2021-04-07 00:57:14','2021-04-07 00:57:14',7,'047190b1-d1da-4925-a34f-4479e4118a4d'),(149350,149342,NULL,8,3,NULL,'2021-04-07 00:57:14','2021-04-07 00:57:14',8,'7e25479d-be3b-4143-9410-a0bf3e8386ca'),(149351,149342,NULL,8,2,NULL,'2021-04-07 00:57:14','2021-04-07 00:57:14',9,'a9b8235f-6e58-4a23-a922-502cac6974c3'),(149352,149342,NULL,8,3,NULL,'2021-04-07 00:57:14','2021-04-07 00:57:14',10,'207f05c1-e6e0-4853-baee-09071d23f0b4'),(149353,149342,NULL,8,7,NULL,'2021-04-07 00:57:14','2021-04-07 00:57:14',11,'7cc7d627-9c50-4a39-8a2c-a3ca5d41a471'),(149359,149358,NULL,8,2,NULL,'2021-04-07 01:18:01','2021-04-07 01:18:01',1,'162f0193-3bcd-45e9-b9f1-c9434c67156e'),(149360,149358,NULL,8,3,NULL,'2021-04-07 01:18:01','2021-04-07 01:18:01',2,'40ef8a08-559f-4905-9406-ffaad735d7bd'),(149362,149358,NULL,8,3,NULL,'2021-04-07 01:18:01','2021-04-07 01:18:01',3,'56c0ff5f-2450-4c37-8413-a7044234b344'),(149363,149358,NULL,8,2,NULL,'2021-04-07 01:18:01','2021-04-07 01:18:01',4,'00e8a4b2-f7d8-4416-85bd-db716c9e6cf2'),(149364,149358,NULL,8,3,NULL,'2021-04-07 01:18:02','2021-04-07 01:18:02',5,'512ad9e2-ed12-4205-ab28-9564988a9ef9'),(149368,149358,NULL,8,2,NULL,'2021-04-07 01:18:02','2021-04-07 01:18:02',6,'786f2bc2-49ee-4ccd-b57e-1c8f49139515'),(149369,149358,NULL,8,3,NULL,'2021-04-07 01:18:02','2021-04-07 01:18:02',7,'d4b7c925-be40-4a48-8c6d-e2d032214bbc'),(149371,149358,NULL,8,2,NULL,'2021-04-07 01:18:02','2021-04-07 01:18:02',8,'bc05e3c7-c003-4cfa-910e-e5140f5b3aab'),(149372,149358,NULL,8,3,NULL,'2021-04-07 01:18:02','2021-04-07 01:18:02',9,'e43639bb-bcd4-4f0e-a724-e5cc32b633ba'),(149374,149358,NULL,8,3,NULL,'2021-04-07 01:18:02','2021-04-07 01:18:02',10,'39afedd3-4c16-4f24-9b74-9aff0690c8fe'),(149382,149358,NULL,8,3,NULL,'2021-04-07 01:18:02','2021-04-07 01:18:02',11,'0ec06657-2b20-4654-befa-d7f09ffd88ce'),(149386,149358,NULL,8,2,NULL,'2021-04-07 01:18:02','2021-04-07 01:18:02',12,'1dcc3802-46d0-4c37-b000-4eb25e9ed66b'),(149387,149358,NULL,8,3,NULL,'2021-04-07 01:18:02','2021-04-07 01:18:02',13,'eae379cf-000d-404a-854d-ea95725a5e66'),(149391,149358,NULL,8,2,NULL,'2021-04-07 01:18:02','2021-04-07 01:18:02',14,'d433dc90-c506-4a90-b437-0ca7c8a83dbd'),(149392,149358,NULL,8,3,NULL,'2021-04-07 01:18:02','2021-04-07 01:18:02',15,'748abed2-478d-4b9b-afbd-78bed3621a29'),(149393,149358,NULL,8,7,NULL,'2021-04-07 01:18:02','2021-04-07 01:18:02',16,'8c528efc-2e3d-43a4-96f6-ede206514cc5'),(149466,149465,NULL,8,2,NULL,'2021-04-07 01:20:13','2021-04-07 01:20:13',1,'14f15472-45d2-406f-9aae-f2520daf352a'),(149467,149465,NULL,8,3,NULL,'2021-04-07 01:20:13','2021-04-07 01:20:13',2,'61f55ad2-4589-436f-9cc1-75fe16cca2b2'),(149469,149465,NULL,8,3,NULL,'2021-04-07 01:20:13','2021-04-07 01:20:13',3,'d3f7b675-2322-4139-b485-2e03500520e1'),(149470,149465,NULL,8,2,NULL,'2021-04-07 01:20:13','2021-04-07 01:20:13',4,'9eb02553-4c73-41df-9312-d55ddd4f5608'),(149471,149465,NULL,8,3,NULL,'2021-04-07 01:20:13','2021-04-07 01:20:13',5,'2e4f83bd-a95a-449d-a2bb-e78d647658e7'),(149475,149465,NULL,8,2,NULL,'2021-04-07 01:20:13','2021-04-07 01:20:13',6,'acdf5d53-2c4b-435b-85ae-c2fe976b8461'),(149476,149465,NULL,8,3,NULL,'2021-04-07 01:20:13','2021-04-07 01:20:13',7,'3deee856-4f5d-4d79-92eb-865691d8fdd5'),(149478,149465,NULL,8,2,NULL,'2021-04-07 01:20:13','2021-04-07 01:20:13',8,'214a034a-f4bb-4ebe-a3ec-4cc212f039a5'),(149479,149465,NULL,8,3,NULL,'2021-04-07 01:20:13','2021-04-07 01:20:13',9,'de88516b-bef3-486f-be80-f74eb027de26'),(149481,149465,NULL,8,3,NULL,'2021-04-07 01:20:13','2021-04-07 01:20:13',10,'8abc3f2d-d2bd-40d6-8592-bc8b917e97fc'),(149489,149465,NULL,8,3,NULL,'2021-04-07 01:20:13','2021-04-07 01:20:13',11,'166eff56-30bd-4acd-97b2-4ae705dfdd06'),(149493,149465,NULL,8,2,NULL,'2021-04-07 01:20:13','2021-04-07 01:20:13',12,'fe52171a-37ff-4cc0-b796-85e3fa2cc2cd'),(149494,149465,NULL,8,3,NULL,'2021-04-07 01:20:13','2021-04-07 01:20:13',13,'f5eec03f-d567-42fe-9ea1-98da2e98b2db'),(149498,149465,NULL,8,2,NULL,'2021-04-07 01:20:13','2021-04-07 01:20:13',14,'00f52e3e-e908-4656-b23e-329691890529'),(149499,149465,NULL,8,3,NULL,'2021-04-07 01:20:13','2021-04-07 01:20:13',15,'ff4faf22-d2e3-4cc0-b756-7a7c94449be3'),(149500,149465,NULL,8,7,NULL,'2021-04-07 01:20:13','2021-04-07 01:20:13',16,'db4dc4db-edac-4924-aabc-1a0a913828bd'),(149502,149501,NULL,8,2,NULL,'2021-04-07 01:20:18','2021-04-07 01:20:18',1,'275fa175-fa6d-4dc8-9ff9-c0da68050a2b'),(149503,149501,NULL,8,3,NULL,'2021-04-07 01:20:18','2021-04-07 01:20:18',2,'99df39f7-00e7-4054-be88-b1e710e17051'),(149505,149501,NULL,8,3,NULL,'2021-04-07 01:20:18','2021-04-07 01:20:18',3,'c84fc8ae-64a7-476b-9147-fcc209ff75e1'),(149506,149501,NULL,8,2,NULL,'2021-04-07 01:20:18','2021-04-07 01:20:18',4,'de504bf4-1fd1-4e8a-85d7-26891a60c1ce'),(149507,149501,NULL,8,3,NULL,'2021-04-07 01:20:18','2021-04-07 01:20:18',5,'fae70a1b-4ae5-4788-9a6f-db32dfa54d24'),(149511,149501,NULL,8,2,NULL,'2021-04-07 01:20:18','2021-04-07 01:20:18',6,'cd7b3a35-26e5-4c8a-bc10-2e3b57e99239'),(149512,149501,NULL,8,3,NULL,'2021-04-07 01:20:18','2021-04-07 01:20:18',7,'54f628aa-1e1b-4862-97f8-ac4814082d4e'),(149514,149501,NULL,8,2,NULL,'2021-04-07 01:20:18','2021-04-07 01:20:18',8,'2489efdd-5436-42fa-a382-535b4985638e'),(149515,149501,NULL,8,3,NULL,'2021-04-07 01:20:18','2021-04-07 01:20:18',9,'94dc311d-eb28-4416-bd82-a5deeb73a612'),(149517,149501,NULL,8,3,NULL,'2021-04-07 01:20:18','2021-04-07 01:20:18',10,'827e4ba4-b2a5-42ca-b351-dddb166109c6'),(149525,149501,NULL,8,3,NULL,'2021-04-07 01:20:18','2021-04-07 01:20:18',11,'6cf4b458-8850-481c-9339-27f94832d9c1'),(149529,149501,NULL,8,2,NULL,'2021-04-07 01:20:18','2021-04-07 01:20:18',12,'06bc5325-ac74-45f9-9a2e-dda7d82fc92e'),(149530,149501,NULL,8,3,NULL,'2021-04-07 01:20:19','2021-04-07 01:20:19',13,'47c6512a-91cd-4401-9ddb-a72784888707'),(149534,149501,NULL,8,2,NULL,'2021-04-07 01:20:19','2021-04-07 01:20:19',14,'34d05b9b-fc93-42ca-b562-221ffc5dd428'),(149535,149501,NULL,8,3,NULL,'2021-04-07 01:20:19','2021-04-07 01:20:19',15,'8c56932e-b783-4c08-be1e-9813ad536088'),(149536,149501,NULL,8,7,NULL,'2021-04-07 01:20:19','2021-04-07 01:20:19',16,'4b954496-85c2-42ba-8438-3fa25cd22950'),(149739,149738,NULL,8,2,NULL,'2021-04-07 01:29:58','2021-04-07 01:29:58',1,'c4fe7bde-b9e8-456b-8562-8bba9ab0e1a8'),(149740,149738,NULL,8,3,NULL,'2021-04-07 01:29:58','2021-04-07 01:29:58',2,'59264926-4784-4d39-94e4-00f3a3e18fac'),(149742,149738,NULL,8,3,NULL,'2021-04-07 01:29:58','2021-04-07 01:29:58',3,'14f20ad6-012d-4e29-b925-40aa26bb93de'),(149743,149738,NULL,8,2,NULL,'2021-04-07 01:29:58','2021-04-07 01:29:58',4,'9c85e36f-2319-400e-bb4b-330f13ee500e'),(149744,149738,NULL,8,3,NULL,'2021-04-07 01:29:58','2021-04-07 01:29:58',5,'e28976b2-151d-4169-a5a4-94b23d427882'),(149748,149738,NULL,8,2,NULL,'2021-04-07 01:29:58','2021-04-07 01:29:58',6,'8af18bf4-72a9-4645-87ee-de955209001c'),(149749,149738,NULL,8,3,NULL,'2021-04-07 01:29:58','2021-04-07 01:29:58',7,'e2388fcb-2f71-4361-b1b3-b7df7761881c'),(149751,149738,NULL,8,2,NULL,'2021-04-07 01:29:58','2021-04-07 01:29:58',8,'1fc5ee34-3183-4e8b-8f5b-233f0aad4d9c'),(149752,149738,NULL,8,3,NULL,'2021-04-07 01:29:58','2021-04-07 01:29:58',9,'1d14d776-1619-4fa5-94ba-69339347155f'),(149754,149738,NULL,8,3,NULL,'2021-04-07 01:29:58','2021-04-07 01:29:58',10,'7f7ebf5c-8e60-40e3-8468-46823c92e7a7'),(149759,149738,NULL,8,3,NULL,'2021-04-07 01:29:58','2021-04-07 01:29:58',11,'69368cd5-e1b7-4095-8845-c29c76d6b4b2'),(149763,149738,NULL,8,2,NULL,'2021-04-07 01:29:58','2021-04-07 01:29:58',12,'7a3bf4f4-2d85-4a08-a3c0-be91ca0d6593'),(149764,149738,NULL,8,3,NULL,'2021-04-07 01:29:58','2021-04-07 01:29:58',13,'9e202e0b-ce86-4e14-8ff6-6b134d353431'),(149768,149738,NULL,8,2,NULL,'2021-04-07 01:29:58','2021-04-07 01:29:58',14,'15dd4f57-91a2-42e4-9b9b-af6dd78d0e8b'),(149769,149738,NULL,8,3,NULL,'2021-04-07 01:29:58','2021-04-07 01:29:58',15,'21bc8fba-71ed-4c97-9b07-c03bda5e1160'),(149770,149738,NULL,8,7,NULL,'2021-04-07 01:29:58','2021-04-07 01:29:58',16,'3cd47333-2053-4ddb-ad63-016953c3a9aa'),(149772,149771,NULL,8,2,NULL,'2021-04-07 01:30:03','2021-04-07 01:30:03',1,'d7078495-6a95-465a-bd49-858fb94a16f7'),(149773,149771,NULL,8,3,NULL,'2021-04-07 01:30:03','2021-04-07 01:30:03',2,'32af2596-c624-42e3-a4c5-385b7a746477'),(149775,149771,NULL,8,3,NULL,'2021-04-07 01:30:03','2021-04-07 01:30:03',3,'b2ae09ed-99f2-4957-ba74-847473e32959'),(149776,149771,NULL,8,2,NULL,'2021-04-07 01:30:03','2021-04-07 01:30:03',4,'777e1f22-e763-4693-9532-9a15417da38a'),(149777,149771,NULL,8,3,NULL,'2021-04-07 01:30:03','2021-04-07 01:30:03',5,'12c51e37-27ee-4edf-aff9-db4fb344e066'),(149781,149771,NULL,8,2,NULL,'2021-04-07 01:30:03','2021-04-07 01:30:03',6,'9f040a70-b9d3-4655-a511-0d66f110866c'),(149782,149771,NULL,8,3,NULL,'2021-04-07 01:30:03','2021-04-07 01:30:03',7,'985715fe-4b0c-4d8f-a42f-b317c99df4b9'),(149784,149771,NULL,8,2,NULL,'2021-04-07 01:30:03','2021-04-07 01:30:03',8,'64a0fac6-b86a-4c64-af69-1d5a05a303ae'),(149785,149771,NULL,8,3,NULL,'2021-04-07 01:30:03','2021-04-07 01:30:03',9,'30b6978c-c0e0-4e7d-aa4f-65f8c6ac3bc8'),(149787,149771,NULL,8,3,NULL,'2021-04-07 01:30:04','2021-04-07 01:30:04',10,'320c8024-766f-436c-870e-739bdbe45196'),(149792,149771,NULL,8,3,NULL,'2021-04-07 01:30:04','2021-04-07 01:30:04',11,'f1d549a6-5c03-4de8-8f9d-dc5bb0e19a0e'),(149796,149771,NULL,8,2,NULL,'2021-04-07 01:30:04','2021-04-07 01:30:04',12,'788ea325-212f-45f9-b42d-f19afb6f81e5'),(149797,149771,NULL,8,3,NULL,'2021-04-07 01:30:04','2021-04-07 01:30:04',13,'9ba2710e-f9f0-4859-9951-83e4a17d6340'),(149801,149771,NULL,8,2,NULL,'2021-04-07 01:30:04','2021-04-07 01:30:04',14,'1788916f-c48b-4a58-ab18-757a8f6b5e93'),(149802,149771,NULL,8,3,NULL,'2021-04-07 01:30:04','2021-04-07 01:30:04',15,'2c1e04d9-0bfa-45ef-9c9c-16d3cc4d14ae'),(149803,149771,NULL,8,7,NULL,'2021-04-07 01:30:04','2021-04-07 01:30:04',16,'fe38a235-1dc7-47da-9fa8-9b448f230964'),(150034,150033,NULL,8,2,NULL,'2021-04-07 02:11:45','2021-04-07 02:11:45',1,'c9e29eab-1711-4f8e-ad6e-b971a96b2e51'),(150035,150033,NULL,8,3,NULL,'2021-04-07 02:11:45','2021-04-07 02:11:45',2,'0f72067f-b175-4b15-9c98-3be1cfee1154'),(150039,150033,NULL,8,4,NULL,'2021-04-07 02:11:45','2021-04-07 02:11:45',3,'2c740298-99cb-4b99-a293-c68edf37ab10'),(150040,150033,NULL,8,3,NULL,'2021-04-07 02:11:45','2021-04-07 02:11:45',4,'1dc9d10e-e7d5-408a-b43d-11ef6ea7278e'),(150045,150033,NULL,8,4,NULL,'2021-04-07 02:11:45','2021-04-07 02:11:45',5,'64e272f5-dbb5-41c5-99fb-3c3a64fc6f1d'),(150046,150033,NULL,8,3,NULL,'2021-04-07 02:11:46','2021-04-07 02:11:46',6,'10ff5446-ea7d-4922-8199-1dc923dd5f74'),(150049,150033,NULL,8,2,NULL,'2021-04-07 02:11:46','2021-04-07 02:11:46',7,'1e3ae6a1-2388-439a-8aad-73096bd29fd8'),(150050,150033,NULL,8,3,NULL,'2021-04-07 02:11:46','2021-04-07 02:11:46',8,'05506d3e-ea88-49de-9ca3-ec3ae766ed93'),(150051,150033,NULL,8,2,NULL,'2021-04-07 02:11:46','2021-04-07 02:11:46',9,'28ba61ca-0c03-47b8-93e8-bba652ca4e6e'),(150052,150033,NULL,8,3,NULL,'2021-04-07 02:11:46','2021-04-07 02:11:46',10,'a883c5e3-9eb2-4ed6-ba06-a3e4d49c1cd8'),(150053,150033,NULL,8,2,NULL,'2021-04-07 02:11:46','2021-04-07 02:11:46',11,'973ccdaa-f122-4f2e-8b65-7f6a06a90229'),(150054,150033,NULL,8,3,NULL,'2021-04-07 02:11:46','2021-04-07 02:11:46',12,'920c8557-325e-48b0-93b4-293f954fa7e0'),(150056,150033,NULL,8,2,NULL,'2021-04-07 02:11:46','2021-04-07 02:11:46',13,'4f1e1879-fef0-404e-8b62-b32265000634'),(150057,150033,NULL,8,3,NULL,'2021-04-07 02:11:46','2021-04-07 02:11:46',14,'cb8815a5-cdb4-4dc3-8911-2d006d1ae86f'),(150063,150033,NULL,8,2,NULL,'2021-04-07 02:11:46','2021-04-07 02:11:46',15,'1a7cf672-753b-4ef4-880a-0528670fb376'),(150064,150033,NULL,8,3,NULL,'2021-04-07 02:11:46','2021-04-07 02:11:46',16,'e120a722-c36e-4133-be18-2de7344ffa02'),(150065,150033,NULL,8,16,NULL,'2021-04-07 02:11:46','2021-04-07 02:11:46',17,'f82bcac5-f7db-43ee-8129-191edb04d0ee'),(150066,150033,NULL,8,2,NULL,'2021-04-07 02:11:46','2021-04-07 02:11:46',18,'9cc80b84-4bac-4fe8-bd66-c26caa4a7a40'),(150067,150033,NULL,8,3,NULL,'2021-04-07 02:11:46','2021-04-07 02:11:46',19,'f69655b0-0f64-4c47-bc5c-8233fd5ee69d'),(150071,150033,NULL,8,3,NULL,'2021-04-07 02:11:46','2021-04-07 02:11:46',20,'b4579fcc-4409-4759-91a4-6bbdff17499d'),(150073,150072,NULL,8,2,NULL,'2021-04-07 02:12:44','2021-04-07 02:12:44',1,'4ab27a72-d5cd-4173-b062-ba5bd3d85f78'),(150074,150072,NULL,8,3,NULL,'2021-04-07 02:12:44','2021-04-07 02:12:44',2,'841ab0d9-ecdb-425d-bbb0-bbdad2a3601c'),(150078,150072,NULL,8,4,NULL,'2021-04-07 02:12:44','2021-04-07 02:12:44',3,'c4ecbeaa-2044-46fb-a322-2c03a48b8aa7'),(150079,150072,NULL,8,3,NULL,'2021-04-07 02:12:44','2021-04-07 02:12:44',4,'cdaaf28c-b9c9-4a15-8b42-af75c42e58be'),(150084,150072,NULL,8,4,NULL,'2021-04-07 02:12:44','2021-04-07 02:12:44',5,'34ee503e-7d61-4bbf-9d0d-cc0a20594ccf'),(150085,150072,NULL,8,3,NULL,'2021-04-07 02:12:44','2021-04-07 02:12:44',6,'73a204c8-a2f4-490b-92cb-bfb67323e761'),(150088,150072,NULL,8,2,NULL,'2021-04-07 02:12:44','2021-04-07 02:12:44',7,'7735c4cc-69bb-4f4b-b5b9-2606638ebc2b'),(150089,150072,NULL,8,3,NULL,'2021-04-07 02:12:44','2021-04-07 02:12:44',8,'b723f7e6-8ca0-45df-998a-52dc4ce305e0'),(150090,150072,NULL,8,2,NULL,'2021-04-07 02:12:44','2021-04-07 02:12:44',9,'29831ad2-b0c4-4dbb-b7c8-5d85917d8bb5'),(150091,150072,NULL,8,3,NULL,'2021-04-07 02:12:44','2021-04-07 02:12:44',10,'4987768d-c3a4-499d-9934-2351d343210c'),(150092,150072,NULL,8,2,NULL,'2021-04-07 02:12:45','2021-04-07 02:12:45',11,'41fd2a51-47ce-4432-8384-8d7a8ece911a'),(150093,150072,NULL,8,3,NULL,'2021-04-07 02:12:45','2021-04-07 02:12:45',12,'17112895-4ba1-4f44-9446-866b86ec6fc7'),(150095,150072,NULL,8,2,NULL,'2021-04-07 02:12:45','2021-04-07 02:12:45',13,'eb1ebace-e3e7-404b-b3f0-4c32e204c797'),(150096,150072,NULL,8,3,NULL,'2021-04-07 02:12:45','2021-04-07 02:12:45',14,'5a6d2173-00f9-4871-a467-0e6b93e8babc'),(150102,150072,NULL,8,2,NULL,'2021-04-07 02:12:45','2021-04-07 02:12:45',15,'9f7f30fd-de0a-4510-9986-da4be3836358'),(150103,150072,NULL,8,3,NULL,'2021-04-07 02:12:45','2021-04-07 02:12:45',16,'d80d68fb-8e7c-4c84-a1bb-993ab16dd483'),(150104,150072,NULL,8,16,NULL,'2021-04-07 02:12:45','2021-04-07 02:12:45',17,'202be94c-5560-4cef-af32-ca0a59243a89'),(150105,150072,NULL,8,2,NULL,'2021-04-07 02:12:45','2021-04-07 02:12:45',18,'c76bd28f-e80a-4d03-aa06-41c5a358febd'),(150106,150072,NULL,8,3,NULL,'2021-04-07 02:12:45','2021-04-07 02:12:45',19,'543cfec5-2626-472e-9233-d49e9aca1cd8'),(150110,150072,NULL,8,3,NULL,'2021-04-07 02:12:45','2021-04-07 02:12:45',20,'f782cb74-b975-448b-bf3f-3487d3964630'),(150112,150111,NULL,8,2,NULL,'2021-04-07 02:14:19','2021-04-07 02:14:19',1,'21ea8786-708b-41f6-be4b-ce1bd4ef6a57'),(150113,150111,NULL,8,3,NULL,'2021-04-07 02:14:19','2021-04-07 02:14:19',2,'f65a3174-d8df-46b7-8fe4-5a447a37d20d'),(150117,150111,NULL,8,4,NULL,'2021-04-07 02:14:19','2021-04-07 02:14:19',3,'14610fa8-81a6-4126-9186-2585a6d8536d'),(150118,150111,NULL,8,3,NULL,'2021-04-07 02:14:19','2021-04-07 02:14:19',4,'916f06a6-062c-4ee0-88c6-ef2c02b91fc1'),(150123,150111,NULL,8,4,NULL,'2021-04-07 02:14:19','2021-04-07 02:14:19',5,'77a09f22-bc63-4957-9cb7-c70f96d72bfe'),(150124,150111,NULL,8,3,NULL,'2021-04-07 02:14:19','2021-04-07 02:14:19',6,'a5d921a3-4ed0-4aa9-9ad1-352b945774fb'),(150127,150111,NULL,8,2,NULL,'2021-04-07 02:14:19','2021-04-07 02:14:19',7,'9d933ef1-915b-414e-8632-d3db45b3bed8'),(150128,150111,NULL,8,3,NULL,'2021-04-07 02:14:19','2021-04-07 02:14:19',8,'7c7d55da-8119-447b-ad6f-4b1f83f073a9'),(150129,150111,NULL,8,2,NULL,'2021-04-07 02:14:19','2021-04-07 02:14:19',9,'be583ebc-2512-4b6b-a7fc-a7d2fc783f3a'),(150130,150111,NULL,8,3,NULL,'2021-04-07 02:14:19','2021-04-07 02:14:19',10,'ef898b25-3df8-4115-ad89-88bbd728f278'),(150131,150111,NULL,8,2,NULL,'2021-04-07 02:14:19','2021-04-07 02:14:19',11,'1ce4189b-13d0-453c-84d3-65451edc76ef'),(150132,150111,NULL,8,3,NULL,'2021-04-07 02:14:19','2021-04-07 02:14:19',12,'6e6bf314-1b48-4c9f-820a-ed48801bb42a'),(150134,150111,NULL,8,2,NULL,'2021-04-07 02:14:19','2021-04-07 02:14:19',13,'b0c0c57d-e6a0-4ddd-82f0-60c03621ce3e'),(150135,150111,NULL,8,3,NULL,'2021-04-07 02:14:20','2021-04-07 02:14:20',14,'1274a10b-ab41-480e-8bf6-b28fe739adba'),(150141,150111,NULL,8,2,NULL,'2021-04-07 02:14:20','2021-04-07 02:14:20',15,'9e899fd3-b21d-4e03-9bce-bd27803e449e'),(150142,150111,NULL,8,3,NULL,'2021-04-07 02:14:20','2021-04-07 02:14:20',16,'a90d873a-3ef2-4f0c-ac86-80749978ba2e'),(150143,150111,NULL,8,16,NULL,'2021-04-07 02:14:20','2021-04-07 02:14:20',17,'c9dd504e-d29f-47fc-99d8-5ac6d9c3c36b'),(150144,150111,NULL,8,2,NULL,'2021-04-07 02:14:20','2021-04-07 02:14:20',18,'d5dae71b-c9b6-43ae-be5e-5ea8cd7234d1'),(150145,150111,NULL,8,3,NULL,'2021-04-07 02:14:20','2021-04-07 02:14:20',19,'c647a3bf-dbc1-4c48-ab3a-894accd843d5'),(150149,150111,NULL,8,3,NULL,'2021-04-07 02:14:20','2021-04-07 02:14:20',20,'40795276-8659-4f95-bb17-3dceac6aebb8'),(150167,150166,NULL,8,2,NULL,'2021-04-08 03:51:36','2021-04-08 03:51:36',1,'7a7e2d24-5dd6-40fe-8c9d-a3a2e24ef65b'),(150168,150166,NULL,8,3,NULL,'2021-04-08 03:51:36','2021-04-08 03:51:36',2,'67077954-f8a7-4262-ac62-9953cf784816'),(150169,150166,NULL,8,2,NULL,'2021-04-08 03:51:36','2021-04-08 03:51:36',3,'455efc7b-0ed7-40fd-80e8-0370d73f3baa'),(150170,150166,NULL,8,3,NULL,'2021-04-08 03:51:36','2021-04-08 03:51:36',4,'db664c02-5f89-4549-a3ea-14fea38bf339'),(150172,150171,NULL,8,2,NULL,'2021-04-08 03:52:50','2021-04-08 03:52:50',1,'67feb754-b899-4f43-83f9-ba7c2adf86a5'),(150173,150171,NULL,8,3,NULL,'2021-04-08 03:52:50','2021-04-08 03:52:50',2,'11a2d958-0f87-48d5-85f2-644138de568d'),(150174,150171,NULL,8,2,NULL,'2021-04-08 03:52:50','2021-04-08 03:52:50',3,'c9e26e34-0ba3-4be1-b905-2bca52cfdbe3'),(150175,150171,NULL,8,3,NULL,'2021-04-08 03:52:50','2021-04-08 03:52:50',4,'3581a8d9-03c0-4b29-8bbb-a27512abe673'),(150198,150197,NULL,8,2,NULL,'2021-04-08 05:53:19','2021-04-08 05:53:19',1,'27a0df3a-e284-4135-8fc9-7ca39e739157'),(150199,150197,NULL,8,3,NULL,'2021-04-08 05:53:19','2021-04-08 05:53:19',2,'53fde3f7-5b85-4606-ba15-1ac99b896b02'),(150200,150197,NULL,8,2,NULL,'2021-04-08 05:53:19','2021-04-08 05:53:19',3,'b8ada94d-71e7-4f85-8d69-8c44f2933c0e'),(150201,150197,NULL,8,3,NULL,'2021-04-08 05:53:19','2021-04-08 05:53:19',4,'6c9795ea-6a39-4278-b63e-4ea02321898c'),(150202,150197,NULL,8,21,NULL,'2021-04-08 05:53:19','2021-04-08 05:53:19',5,'e9edbae5-7e8a-479b-9e6f-1420677bd117'),(150207,150197,NULL,8,2,NULL,'2021-04-08 05:53:19','2021-04-08 05:53:19',6,'228fb88a-057a-43d8-93f7-015471866769'),(150208,150197,NULL,8,3,NULL,'2021-04-08 05:53:19','2021-04-08 05:53:19',7,'d8afb052-2397-4dca-b4ad-8acb0397d1b5'),(150213,150197,NULL,8,3,NULL,'2021-04-08 05:53:19','2021-04-08 05:53:19',8,'8c571c1f-19c9-4b2e-9707-441c98d394f6'),(150218,150197,NULL,8,3,NULL,'2021-04-08 05:53:19','2021-04-08 05:53:19',9,'43e95999-fcd5-47fe-9891-802e63bb444e'),(150223,150197,NULL,8,3,NULL,'2021-04-08 05:53:19','2021-04-08 05:53:19',10,'f7790c81-4220-473e-9a72-897cfc203756'),(150228,150197,NULL,8,3,NULL,'2021-04-08 05:53:19','2021-04-08 05:53:19',11,'06312f3f-d877-4f52-87fb-cd3387adb0d8'),(150233,150197,NULL,8,3,NULL,'2021-04-08 05:53:19','2021-04-08 05:53:19',12,'49523303-b537-4b42-be56-0bc11d53bb80'),(150238,150197,NULL,8,3,NULL,'2021-04-08 05:53:20','2021-04-08 05:53:20',13,'6fb5c99a-528b-44e7-b473-a63c3735cbdd'),(150243,150197,NULL,8,3,NULL,'2021-04-08 05:53:20','2021-04-08 05:53:20',14,'f4501b71-960b-4f18-9dfc-dbb2cab8be5b'),(150247,150197,NULL,8,2,NULL,'2021-04-08 05:53:20','2021-04-08 05:53:20',15,'66d0c095-ad7d-4c31-a1f4-d664a48a29eb'),(150248,150197,NULL,8,3,NULL,'2021-04-08 05:53:20','2021-04-08 05:53:20',16,'22fccd93-0a99-49a6-bcfb-0f6c2251c10c'),(150251,150197,NULL,8,3,NULL,'2021-04-08 05:53:20','2021-04-08 05:53:20',17,'d0208815-fe8d-4e65-ab8e-fdf1bad36a93'),(150253,150197,NULL,8,2,NULL,'2021-04-08 05:53:20','2021-04-08 05:53:20',18,'9bc01f85-aefc-407c-a7fa-476aa3710ee0'),(150254,150197,NULL,8,3,NULL,'2021-04-08 05:53:20','2021-04-08 05:53:20',19,'9e684ed9-b43c-4d1b-a8b4-373d9cec874f'),(150255,150197,NULL,8,21,NULL,'2021-04-08 05:53:20','2021-04-08 05:53:20',20,'7b673828-84dd-46d3-9640-59eb3bf0b843'),(150299,150298,NULL,8,2,NULL,'2021-04-08 23:06:33','2021-04-08 23:06:33',1,'6af8e679-04c8-448f-94f5-3ba6a1df85ba'),(150300,150298,NULL,8,3,NULL,'2021-04-08 23:06:33','2021-04-08 23:06:33',2,'d7b039ae-577a-40e2-a191-43ad266ce2a8'),(150301,150298,NULL,8,2,NULL,'2021-04-08 23:06:33','2021-04-08 23:06:33',3,'e1996d57-7964-4f9e-b750-269e41921e29'),(150302,150298,NULL,8,3,NULL,'2021-04-08 23:06:33','2021-04-08 23:06:33',4,'c885f531-b1d3-4a96-bd82-5fc39a4c6c8c'),(150305,150298,NULL,8,2,NULL,'2021-04-08 23:06:33','2021-04-08 23:06:33',5,'9f4ecfe1-847b-466e-87ee-9f1cbef1fc2f'),(150306,150298,NULL,8,3,NULL,'2021-04-08 23:06:33','2021-04-08 23:06:33',6,'730f7da1-a4cd-4cda-868b-4b9a5efed32f'),(150337,150336,NULL,8,2,NULL,'2021-04-09 07:08:44','2021-04-09 07:08:44',1,'7a040485-a125-48ce-a429-96d7b14cc5d0'),(150338,150336,NULL,8,3,NULL,'2021-04-09 07:08:44','2021-04-09 07:08:44',2,'2b61556e-d37e-4377-bbb5-535d52c382bb'),(150340,150336,NULL,8,3,NULL,'2021-04-09 07:08:44','2021-04-09 07:08:44',3,'29446cac-0176-4af3-bdc6-f41f001b273f'),(150341,150336,NULL,8,2,NULL,'2021-04-09 07:08:44','2021-04-09 07:08:44',4,'38ed9f77-b092-45e7-ad2c-e525fba07bc6'),(150342,150336,NULL,8,3,NULL,'2021-04-09 07:08:44','2021-04-09 07:08:44',5,'e06368cb-0495-445a-a3db-3ba4441f4d88'),(150346,150336,NULL,8,2,NULL,'2021-04-09 07:08:44','2021-04-09 07:08:44',6,'39ada177-4997-414d-9932-c0ec090ced13'),(150347,150336,NULL,8,3,NULL,'2021-04-09 07:08:44','2021-04-09 07:08:44',7,'b3dc4bf5-f980-4245-b637-2a973d549dc6'),(150349,150336,NULL,8,2,NULL,'2021-04-09 07:08:44','2021-04-09 07:08:44',8,'5c9ded1b-63ce-45d2-b055-a2b8df48b4b9'),(150350,150336,NULL,8,3,NULL,'2021-04-09 07:08:44','2021-04-09 07:08:44',9,'1ac4abc8-0ce9-4405-921f-6c37e0d2e769'),(150352,150336,NULL,8,3,NULL,'2021-04-09 07:08:44','2021-04-09 07:08:44',10,'58bffdab-587f-4e3d-9389-e63d8bdbdb73'),(150358,150336,NULL,8,3,NULL,'2021-04-09 07:08:44','2021-04-09 07:08:44',11,'ddf8f932-9634-4b0d-9bc8-ce6bd6ac9bfb'),(150362,150336,NULL,8,2,NULL,'2021-04-09 07:08:44','2021-04-09 07:08:44',12,'c987f172-445e-423d-a8f2-324688de2d46'),(150363,150336,NULL,8,3,NULL,'2021-04-09 07:08:44','2021-04-09 07:08:44',13,'aaf239d2-c25f-4a66-ae1e-023b54592ef9'),(150367,150336,NULL,8,2,NULL,'2021-04-09 07:08:44','2021-04-09 07:08:44',14,'0f8092ce-b774-4cf9-bcb3-540685193176'),(150368,150336,NULL,8,3,NULL,'2021-04-09 07:08:44','2021-04-09 07:08:44',15,'4548a6b3-aa56-4ed1-999b-c786a8f3e517'),(150369,150336,NULL,8,7,NULL,'2021-04-09 07:08:44','2021-04-09 07:08:44',16,'37df1fdc-71ae-4f4d-92a3-efa3a2cd107d'),(150377,150376,NULL,8,2,NULL,'2021-04-11 04:21:22','2021-04-11 04:21:22',1,'0b25045e-98d9-449a-8056-71b660905095'),(150378,150376,NULL,8,3,NULL,'2021-04-11 04:21:22','2021-04-11 04:21:22',2,'c5e4e7dd-a4db-4876-908d-174de6bc0d64'),(150380,150376,NULL,8,3,NULL,'2021-04-11 04:21:22','2021-04-11 04:21:22',3,'36be4039-6a6b-4a25-ab61-84e641f8d8a7'),(150381,150376,NULL,8,2,NULL,'2021-04-11 04:21:22','2021-04-11 04:21:22',4,'2c614260-f338-41ab-a1a5-2df43865131f'),(150382,150376,NULL,8,3,NULL,'2021-04-11 04:21:22','2021-04-11 04:21:22',5,'a6140d48-8b81-4211-bf17-cea31d2304ce'),(150386,150376,NULL,8,2,NULL,'2021-04-11 04:21:22','2021-04-11 04:21:22',6,'86aa54db-61ab-4059-99c8-53c09606b32e'),(150387,150376,NULL,8,3,NULL,'2021-04-11 04:21:22','2021-04-11 04:21:22',7,'153881f4-2697-421a-b3c4-c416de52a5ae'),(150389,150376,NULL,8,2,NULL,'2021-04-11 04:21:22','2021-04-11 04:21:22',8,'666ec4ee-c586-426d-b5bf-85d3590e85f0'),(150390,150376,NULL,8,3,NULL,'2021-04-11 04:21:22','2021-04-11 04:21:22',9,'52339a99-9c40-4d50-9bb3-309275b29a23'),(150392,150376,NULL,8,3,NULL,'2021-04-11 04:21:22','2021-04-11 04:21:22',10,'45c281e9-96ec-4c99-b85d-843ad197ee05'),(150399,150376,NULL,8,3,NULL,'2021-04-11 04:21:23','2021-04-11 04:21:23',11,'38fa8748-dc3a-4e5f-a59d-81448c765e0e'),(150403,150376,NULL,8,2,NULL,'2021-04-11 04:21:23','2021-04-11 04:21:23',12,'5058d8f5-ec7a-4e4c-a102-096c6b482599'),(150404,150376,NULL,8,3,NULL,'2021-04-11 04:21:23','2021-04-11 04:21:23',13,'22be1d85-1345-4ee8-92f8-c0510c989d49'),(150408,150376,NULL,8,2,NULL,'2021-04-11 04:21:23','2021-04-11 04:21:23',14,'392045a6-2d69-47ad-935d-95c4628a0999'),(150409,150376,NULL,8,3,NULL,'2021-04-11 04:21:23','2021-04-11 04:21:23',15,'cc30e011-4fe5-44e4-aca5-c3ece61e25aa'),(150410,150376,NULL,8,7,NULL,'2021-04-11 04:21:23','2021-04-11 04:21:23',16,'d078727f-7777-4cc2-986c-f1a5adbb05df'),(150460,150459,NULL,8,2,NULL,'2021-04-12 00:41:29','2021-04-12 00:41:29',1,'b416c1fa-5e3d-495e-916f-faa86543dbde'),(150461,150459,NULL,8,21,NULL,'2021-04-12 00:41:29','2021-04-12 00:41:29',2,'cec655e1-8b76-4733-bf3d-3e97c1c0d0ce'),(150464,150459,NULL,8,12,NULL,'2021-04-12 00:41:29','2021-04-12 00:41:29',3,'8a02b2bc-210e-4f8c-9284-a63cb0ad070f'),(150465,150459,NULL,8,2,NULL,'2021-04-12 00:41:29','2021-04-12 00:41:29',4,'df2edafa-9dcd-4053-a4a8-a2c14ea0781f'),(150466,150459,NULL,8,3,NULL,'2021-04-12 00:41:29','2021-04-12 00:41:29',5,'f2cecdaf-e622-4c33-afb3-1c910de71442'),(150468,150459,NULL,8,2,NULL,'2021-04-12 00:41:29','2021-04-12 00:41:29',6,'cebf5713-e8f0-4d54-9dd8-376d2573e609'),(150469,150459,NULL,8,15,NULL,'2021-04-12 00:41:29','2021-04-12 00:41:29',7,'2b4bbe73-0ec4-4a90-9be1-a92d2b7361aa'),(150472,150471,NULL,8,2,NULL,'2021-04-12 00:41:33','2021-04-12 00:41:33',1,'97a8bca0-1670-4802-9dbd-2e51ba8d1928'),(150473,150471,NULL,8,21,NULL,'2021-04-12 00:41:33','2021-04-12 00:41:33',2,'1fe01f9d-85a4-4467-966c-654cf0ca0bd7'),(150476,150471,NULL,8,12,NULL,'2021-04-12 00:41:33','2021-04-12 00:41:33',3,'f47d3f2e-a15e-402a-b485-d97095a54e07'),(150477,150471,NULL,8,2,NULL,'2021-04-12 00:41:33','2021-04-12 00:41:33',4,'ba6e9ce1-d633-46ee-b2e4-28670e886207'),(150478,150471,NULL,8,3,NULL,'2021-04-12 00:41:33','2021-04-12 00:41:33',5,'742afe8b-9ae3-4731-a4e3-448fa372f652'),(150480,150471,NULL,8,2,NULL,'2021-04-12 00:41:33','2021-04-12 00:41:33',6,'91e75e23-67ae-4e9a-ba67-d5683016c177'),(150481,150471,NULL,8,15,NULL,'2021-04-12 00:41:33','2021-04-12 00:41:33',7,'7779a00f-b8a2-4465-9ab0-bcc72192208a'),(150589,150588,NULL,8,2,NULL,'2021-04-12 04:43:56','2021-04-12 04:43:56',1,'49f6de3f-043b-472a-8bf8-a8d237972647'),(150590,150588,NULL,8,3,NULL,'2021-04-12 04:43:56','2021-04-12 04:43:56',2,'a97a0433-4409-42bb-874a-88be3f28fca2'),(150594,150588,NULL,8,4,NULL,'2021-04-12 04:43:56','2021-04-12 04:43:56',3,'d9d31ed0-447c-4d0b-b690-3c83ad9e08dc'),(150595,150588,NULL,8,3,NULL,'2021-04-12 04:43:56','2021-04-12 04:43:56',4,'ec20168e-af96-4b77-93e5-c3a7ddc519b7'),(150600,150588,NULL,8,4,NULL,'2021-04-12 04:43:56','2021-04-12 04:43:56',5,'4a88940a-5fe6-495f-b7ea-1bb869ec6af8'),(150601,150588,NULL,8,3,NULL,'2021-04-12 04:43:56','2021-04-12 04:43:56',6,'f2e8aad5-77d4-4424-a1d9-2307db2a8f8d'),(150604,150588,NULL,8,2,NULL,'2021-04-12 04:43:56','2021-04-12 04:43:56',7,'58b9b36b-48b9-4e3a-a675-101206c2ddc6'),(150605,150588,NULL,8,3,NULL,'2021-04-12 04:43:56','2021-04-12 04:43:56',8,'88632da3-4e76-48f7-8e0c-28b34bd2134b'),(150606,150588,NULL,8,2,NULL,'2021-04-12 04:43:56','2021-04-12 04:43:56',9,'5133370a-6671-4ecc-a15e-3214f8a8edf4'),(150607,150588,NULL,8,3,NULL,'2021-04-12 04:43:56','2021-04-12 04:43:56',10,'464cde8b-121a-4bae-9d45-922e7276e0db'),(150608,150588,NULL,8,2,NULL,'2021-04-12 04:43:56','2021-04-12 04:43:56',11,'fd7a5490-4ce4-4711-a41f-28765c1adf72'),(150609,150588,NULL,8,3,NULL,'2021-04-12 04:43:56','2021-04-12 04:43:56',12,'b33d6a7a-ebf8-4d17-824a-228e3870fd21'),(150611,150588,NULL,8,2,NULL,'2021-04-12 04:43:56','2021-04-12 04:43:56',13,'e5f58619-712c-474c-bfbc-01fd553fb766'),(150612,150588,NULL,8,3,NULL,'2021-04-12 04:43:56','2021-04-12 04:43:56',14,'621a92d3-b2ef-4091-9d9a-7a12840e2f7b'),(150618,150588,NULL,8,2,NULL,'2021-04-12 04:43:56','2021-04-12 04:43:56',15,'4e11f41e-c2ab-480b-a408-8be18d2c6e4c'),(150619,150588,NULL,8,3,NULL,'2021-04-12 04:43:56','2021-04-12 04:43:56',16,'58aa61b8-6cab-41d1-ab21-dc183f84d036'),(150620,150588,NULL,8,16,NULL,'2021-04-12 04:43:56','2021-04-12 04:43:56',17,'5e296150-0454-4d7a-9efe-bbe9b00b0fe0'),(150621,150588,NULL,8,2,NULL,'2021-04-12 04:43:56','2021-04-12 04:43:56',18,'16e635bc-f1e3-40fe-a3fd-0bbfd9a6bac4'),(150622,150588,NULL,8,3,NULL,'2021-04-12 04:43:56','2021-04-12 04:43:56',19,'70747e77-d021-43ff-a382-035ae353d5f0'),(150626,150588,NULL,8,3,NULL,'2021-04-12 04:43:56','2021-04-12 04:43:56',20,'379f6097-73a4-4d15-9a95-b39a0d33b4d6'),(150628,150627,NULL,8,2,NULL,'2021-04-12 04:44:01','2021-04-12 04:44:01',1,'a439bc64-bde1-4e1a-ac84-c032822a400a'),(150629,150627,NULL,8,3,NULL,'2021-04-12 04:44:01','2021-04-12 04:44:01',2,'ae107047-35df-411b-8a38-0ba8180b2584'),(150633,150627,NULL,8,4,NULL,'2021-04-12 04:44:01','2021-04-12 04:44:01',3,'65a36379-7e78-4d76-aeac-fac65a884b6f'),(150634,150627,NULL,8,3,NULL,'2021-04-12 04:44:01','2021-04-12 04:44:01',4,'c4d322cd-af40-4619-b6b4-3ad86751786a'),(150639,150627,NULL,8,4,NULL,'2021-04-12 04:44:02','2021-04-12 04:44:02',5,'13bbc7bc-c1e5-41f0-a58d-1808a190163d'),(150640,150627,NULL,8,3,NULL,'2021-04-12 04:44:02','2021-04-12 04:44:02',6,'af0b0e62-5d66-4e03-9509-f62962a34a52'),(150643,150627,NULL,8,2,NULL,'2021-04-12 04:44:02','2021-04-12 04:44:02',7,'fbe30a86-300b-4064-a118-7fbb5fa9f1e5'),(150644,150627,NULL,8,3,NULL,'2021-04-12 04:44:02','2021-04-12 04:44:02',8,'6c2d56c0-7521-4ce7-b638-9d597da14ae2'),(150645,150627,NULL,8,2,NULL,'2021-04-12 04:44:02','2021-04-12 04:44:02',9,'c22b1f4c-1f93-4918-b7f3-e4f3f7d1c00a'),(150646,150627,NULL,8,3,NULL,'2021-04-12 04:44:02','2021-04-12 04:44:02',10,'2945156e-3f40-4476-8b23-c332e09ed607'),(150647,150627,NULL,8,2,NULL,'2021-04-12 04:44:02','2021-04-12 04:44:02',11,'55cc0bc6-1071-4dcc-9a68-b51b66999582'),(150648,150627,NULL,8,3,NULL,'2021-04-12 04:44:02','2021-04-12 04:44:02',12,'0d8d0367-fd55-4ab3-8013-a0bc3d69d61d'),(150650,150627,NULL,8,2,NULL,'2021-04-12 04:44:02','2021-04-12 04:44:02',13,'9061359b-388f-4365-a5af-a77538c3d740'),(150651,150627,NULL,8,3,NULL,'2021-04-12 04:44:02','2021-04-12 04:44:02',14,'1883f887-5aef-4219-810a-ea5ad370f2fd'),(150657,150627,NULL,8,2,NULL,'2021-04-12 04:44:02','2021-04-12 04:44:02',15,'683757f7-b462-403e-a705-00cfb9a9e732'),(150658,150627,NULL,8,3,NULL,'2021-04-12 04:44:02','2021-04-12 04:44:02',16,'bcd16cbc-36d5-436a-9147-d39e7ec29dab'),(150659,150627,NULL,8,16,NULL,'2021-04-12 04:44:02','2021-04-12 04:44:02',17,'b7c2d528-86ba-44c0-ba24-aa3cd90d3b60'),(150660,150627,NULL,8,2,NULL,'2021-04-12 04:44:02','2021-04-12 04:44:02',18,'ff3d7beb-f19c-4ab1-a404-5e6586e0d086'),(150661,150627,NULL,8,3,NULL,'2021-04-12 04:44:02','2021-04-12 04:44:02',19,'97b20020-a303-48da-9dd2-fd19ffe1b730'),(150665,150627,NULL,8,3,NULL,'2021-04-12 04:44:02','2021-04-12 04:44:02',20,'4b24c9f8-47f7-478d-93b5-bb432d5ffcab'),(150737,150736,NULL,8,2,NULL,'2021-04-12 05:43:03','2021-04-12 05:43:03',1,'6d62e6d4-9925-450d-88fb-aacb9e8c14b0'),(150738,150736,NULL,8,21,NULL,'2021-04-12 05:43:03','2021-04-12 05:43:03',2,'aee14026-abf8-4c30-959e-9ac726421dad'),(150756,150755,NULL,8,2,NULL,'2021-04-12 05:43:08','2021-04-12 05:43:08',1,'ba86e660-a200-4ee4-ba9e-43bb44dd8e4d'),(150757,150755,NULL,8,21,NULL,'2021-04-12 05:43:08','2021-04-12 05:43:08',2,'a641bb0e-c353-44f5-85a3-cac7d26f7c2b'),(150794,21862,NULL,8,2,NULL,'2021-04-12 05:48:38','2021-04-12 05:48:38',1,'d204044a-f5fb-401e-a123-f681e9c0ba68'),(150795,21862,NULL,8,3,NULL,'2021-04-12 05:48:38','2021-04-12 05:48:38',2,'b052ab1d-1593-41d3-9518-930b271c651b'),(150796,21862,NULL,8,12,NULL,'2021-04-12 05:48:38','2021-04-12 05:48:38',3,'0d0ce673-c1b2-440f-b21c-e7424be14cee'),(150801,150797,NULL,8,2,NULL,'2021-04-12 05:48:38','2021-04-12 05:48:38',1,'413ed7ce-3fae-429e-bb99-29181926c2e0'),(150802,150797,NULL,8,3,NULL,'2021-04-12 05:48:38','2021-04-12 05:48:38',2,'cbb8d7bd-f668-498c-b439-671272b72cca'),(150803,150797,NULL,8,12,NULL,'2021-04-12 05:48:38','2021-04-12 05:48:38',3,'3ea6ac40-bd92-480a-98a8-18b2d08658c8'),(150808,150804,NULL,8,2,NULL,'2021-04-12 05:48:47','2021-04-12 05:48:47',1,'25e5680b-60bb-4144-a2cc-0d2a12dcc4b9'),(150809,150804,NULL,8,3,NULL,'2021-04-12 05:48:47','2021-04-12 05:48:47',2,'243ae47e-4d60-4b94-af3e-46082357002b'),(150810,150804,NULL,8,12,NULL,'2021-04-12 05:48:47','2021-04-12 05:48:47',3,'5fc1b000-183f-4ee2-838e-51d1294a52e4'),(150836,150834,NULL,8,2,NULL,'2021-04-12 05:53:43','2021-04-12 05:53:43',1,'ce8eb734-309e-4194-a7e9-c12ec231c7ee'),(150837,150834,NULL,8,3,NULL,'2021-04-12 05:53:43','2021-04-12 05:53:43',2,'06fffa8e-ea64-4d7e-889b-e3b8f77ec144'),(150838,150834,NULL,8,12,NULL,'2021-04-12 05:53:43','2021-04-12 05:53:43',3,'ce23803f-6313-4919-855a-f094828410ec'),(150841,150839,NULL,8,2,NULL,'2021-04-12 05:53:46','2021-04-12 05:53:46',1,'7ce22a8b-7160-4921-8d1c-02cc2a88d9aa'),(150842,150839,NULL,8,3,NULL,'2021-04-12 05:53:46','2021-04-12 05:53:46',2,'ef3e5665-7a7d-4650-83a3-90f4f131c54a'),(150843,150839,NULL,8,12,NULL,'2021-04-12 05:53:46','2021-04-12 05:53:46',3,'54bb1afd-2d95-4b49-983f-5c1acc3dd00a'),(150863,150862,NULL,8,2,NULL,'2021-04-12 05:56:49','2021-04-12 05:56:49',1,'0753b5a9-5f4d-48b5-a6fa-71287002f77f'),(150864,150862,NULL,8,3,NULL,'2021-04-12 05:56:49','2021-04-12 05:56:49',2,'aa78060a-3eee-4169-b7d8-f26b727057c3'),(150865,150862,NULL,8,5,NULL,'2021-04-12 05:56:49','2021-04-12 05:56:49',3,'ebe90fef-3743-4c67-97fc-8fa2977c5cf5'),(150866,150862,NULL,8,2,NULL,'2021-04-12 05:56:49','2021-04-12 05:56:49',4,'2cb7e86a-f90f-4cb4-90c9-815ed0ecb6a4'),(150867,150862,NULL,8,21,NULL,'2021-04-12 05:56:49','2021-04-12 05:56:49',5,'58a4a606-376b-480f-84ec-1c3b0b2d572c'),(150871,150870,NULL,8,2,NULL,'2021-04-12 05:56:55','2021-04-12 05:56:55',1,'22a75fec-0e58-4f07-aeb2-b4ff18d0f9fc'),(150872,150870,NULL,8,3,NULL,'2021-04-12 05:56:55','2021-04-12 05:56:55',2,'347c4a85-57b6-4c64-b69b-e29f6307eef8'),(150873,150870,NULL,8,5,NULL,'2021-04-12 05:56:55','2021-04-12 05:56:55',3,'d24002d6-c621-4589-b111-ac816f3bd2bd'),(150874,150870,NULL,8,2,NULL,'2021-04-12 05:56:55','2021-04-12 05:56:55',4,'1060609a-38c1-450f-baf7-f64e23043a2a'),(150875,150870,NULL,8,21,NULL,'2021-04-12 05:56:55','2021-04-12 05:56:55',5,'e0d417cb-2a15-4ad0-b7a5-048d1e5b253d'),(150982,21115,NULL,8,2,0,'2021-04-13 06:20:44','2021-04-13 06:20:44',1,'bd9d2e89-ecbe-4f8d-8220-f788ee6b0e8c'),(150983,21115,NULL,8,3,0,'2021-04-13 06:20:44','2021-04-13 06:20:44',2,'8cc657db-fb1d-43be-8f1c-9d6abfd70f9f'),(150986,21115,NULL,8,2,0,'2021-04-13 06:20:44','2021-04-13 06:20:44',3,'2b47cd2a-8c3e-478c-8dea-cddd47bee772'),(150987,21115,NULL,8,3,0,'2021-04-13 06:20:44','2021-04-13 06:20:44',4,'839406b4-54f1-419c-b858-54a20a18b407'),(150989,21115,NULL,8,2,0,'2021-04-13 06:20:44','2021-04-13 06:20:44',5,'4993c07b-4762-4cd7-becb-b5d46cee4be8'),(150990,21115,NULL,8,3,0,'2021-04-13 06:20:44','2021-04-13 06:20:44',6,'462bb430-dba4-4f33-bb3d-679bb912bde8'),(150992,21115,NULL,8,2,0,'2021-04-13 06:20:44','2021-04-13 06:20:44',7,'df304460-960f-4221-a4ca-791dc1c4034c'),(150993,21115,NULL,8,3,0,'2021-04-13 06:20:44','2021-04-13 06:20:44',8,'6bae3aab-0740-429f-abc1-9851147ea6f8'),(150995,21115,NULL,8,2,0,'2021-04-13 06:20:44','2021-04-13 06:20:44',9,'6ab90e51-7d6d-45cd-9417-277cc381e882'),(150996,21115,NULL,8,3,0,'2021-04-13 06:20:44','2021-04-13 06:20:44',10,'b69d6d8d-3b33-48ca-985f-27e538db9e99'),(150998,21115,NULL,8,3,0,'2021-04-13 06:20:44','2021-04-13 06:20:44',11,'b9d54acc-4f5b-4cf1-aad3-b755c19f6b7c'),(151000,21115,NULL,8,3,0,'2021-04-13 06:20:44','2021-04-13 06:20:44',12,'3f806ce1-2973-4dec-add8-1fe451e60a9e'),(151002,21115,NULL,8,2,0,'2021-04-13 06:20:44','2021-04-13 06:20:44',13,'95c92174-5089-40cb-a30c-80c98a856a80'),(151003,21115,NULL,8,3,0,'2021-04-13 06:20:44','2021-04-13 06:20:44',14,'5e59e4d0-1ede-4296-b0d4-fa3d54cf5a94'),(151005,21115,NULL,8,3,0,'2021-04-13 06:20:44','2021-04-13 06:20:44',15,'c80aac46-aa8c-4140-831b-1b90a67ced18'),(151007,21115,NULL,8,3,0,'2021-04-13 06:20:44','2021-04-13 06:20:44',16,'5cf7fdca-e6ee-4d55-bc75-139a939d5958'),(151009,21115,NULL,8,2,0,'2021-04-13 06:20:44','2021-04-13 06:20:44',17,'4cca8556-d3e7-4ec6-ba09-072cabc69e6a'),(151010,21115,NULL,8,15,0,'2021-04-13 06:20:44','2021-04-13 06:20:44',18,'765267b2-c384-479e-a4a4-b66a76f6f8e7'),(151012,21115,NULL,8,2,0,'2021-04-13 06:20:44','2021-04-13 06:20:44',19,'7ddba32b-45fc-420a-9c68-1f20c9ea5ec1'),(151013,21115,NULL,8,3,0,'2021-04-13 06:20:44','2021-04-13 06:20:44',20,'8d59a04d-48f5-4ee0-9b3b-71603d83bd7b'),(151015,21115,NULL,8,3,0,'2021-04-13 06:20:45','2021-04-13 06:20:45',21,'e67cce97-de1c-4fea-874d-061ae64971ba'),(151019,151018,NULL,8,2,NULL,'2021-04-13 06:20:45','2021-04-13 06:20:45',1,'bc8b17aa-9fb4-4b06-8312-c4feafdfd683'),(151020,151018,NULL,8,3,NULL,'2021-04-13 06:20:45','2021-04-13 06:20:45',2,'bfea6dbb-c3d3-4f55-bb1f-3026fdd5c482'),(151023,151018,NULL,8,2,NULL,'2021-04-13 06:20:45','2021-04-13 06:20:45',3,'3225fe24-f23e-4a2d-a3bb-a8a4d52604ae'),(151024,151018,NULL,8,3,NULL,'2021-04-13 06:20:45','2021-04-13 06:20:45',4,'03a59c9f-cac6-4398-90ad-99fccfdfcba6'),(151026,151018,NULL,8,2,NULL,'2021-04-13 06:20:45','2021-04-13 06:20:45',5,'0ad4ef72-24e9-414f-9d04-91bfa1c9c07e'),(151027,151018,NULL,8,3,NULL,'2021-04-13 06:20:45','2021-04-13 06:20:45',6,'a1047894-0282-478a-b301-b62ea2ffb22e'),(151029,151018,NULL,8,2,NULL,'2021-04-13 06:20:45','2021-04-13 06:20:45',7,'ed6099e0-3083-4c87-8978-29360049e710'),(151030,151018,NULL,8,3,NULL,'2021-04-13 06:20:45','2021-04-13 06:20:45',8,'ebccb637-0a2a-4d35-b366-17932afa6c05'),(151032,151018,NULL,8,2,NULL,'2021-04-13 06:20:45','2021-04-13 06:20:45',9,'c3b54108-a3a9-4d47-8eaf-def59dd8e21d'),(151033,151018,NULL,8,3,NULL,'2021-04-13 06:20:45','2021-04-13 06:20:45',10,'9946fe12-e37d-4145-9314-2d0ce997c94b'),(151035,151018,NULL,8,3,NULL,'2021-04-13 06:20:45','2021-04-13 06:20:45',11,'676bd76c-c2f9-456c-b73e-dcbe3992670b'),(151037,151018,NULL,8,3,NULL,'2021-04-13 06:20:45','2021-04-13 06:20:45',12,'3eb785cd-35fe-4b40-95d6-272ca64a4acb'),(151039,151018,NULL,8,2,NULL,'2021-04-13 06:20:45','2021-04-13 06:20:45',13,'55c31e2f-c535-4919-8a1f-771e1727f5d0'),(151040,151018,NULL,8,3,NULL,'2021-04-13 06:20:45','2021-04-13 06:20:45',14,'738c26f9-29a9-4922-aa88-e47a27eff719'),(151042,151018,NULL,8,3,NULL,'2021-04-13 06:20:45','2021-04-13 06:20:45',15,'f33cff1b-2f99-4dda-bf9e-83a820a25dcc'),(151044,151018,NULL,8,3,NULL,'2021-04-13 06:20:45','2021-04-13 06:20:45',16,'e0eac023-62e8-4186-a45d-75355769df74'),(151046,151018,NULL,8,2,NULL,'2021-04-13 06:20:45','2021-04-13 06:20:45',17,'1f5d3b68-f6e6-4105-b28e-1d837bca24c4'),(151047,151018,NULL,8,15,NULL,'2021-04-13 06:20:45','2021-04-13 06:20:45',18,'5ddbe307-ea0c-4949-b739-eb3274b32cac'),(151049,151018,NULL,8,2,NULL,'2021-04-13 06:20:46','2021-04-13 06:20:46',19,'986179ca-2c27-4880-9897-dbbb8c2065cc'),(151050,151018,NULL,8,3,NULL,'2021-04-13 06:20:46','2021-04-13 06:20:46',20,'d3a4b70c-4dda-4ab7-929f-bb53506626be'),(151052,151018,NULL,8,3,NULL,'2021-04-13 06:20:46','2021-04-13 06:20:46',21,'998b9081-4b5c-4426-8038-cb4d8b0e5a27'),(151056,151055,NULL,8,2,NULL,'2021-04-13 06:21:03','2021-04-13 06:21:03',1,'72c2e782-f80a-40c0-a175-70ca22cb16f6'),(151057,151055,NULL,8,3,NULL,'2021-04-13 06:21:03','2021-04-13 06:21:03',2,'f247844f-c920-477f-9786-ed746b374bd6'),(151060,151055,NULL,8,2,NULL,'2021-04-13 06:21:03','2021-04-13 06:21:03',3,'a87acc73-05dc-4bce-a516-fe7079079b99'),(151061,151055,NULL,8,3,NULL,'2021-04-13 06:21:03','2021-04-13 06:21:03',4,'195ac2f3-3f69-468e-be88-455852865fdc'),(151063,151055,NULL,8,2,NULL,'2021-04-13 06:21:03','2021-04-13 06:21:03',5,'a36da537-e802-4892-9353-50bedcbcd838'),(151064,151055,NULL,8,3,NULL,'2021-04-13 06:21:03','2021-04-13 06:21:03',6,'4898868b-3e12-4f5c-82b7-5e6db40a0075'),(151066,151055,NULL,8,2,NULL,'2021-04-13 06:21:03','2021-04-13 06:21:03',7,'5957d66f-e490-4418-93be-4faf473b470e'),(151067,151055,NULL,8,3,NULL,'2021-04-13 06:21:03','2021-04-13 06:21:03',8,'e6c82212-cf2f-40ef-9bd3-08db9495429f'),(151069,151055,NULL,8,2,NULL,'2021-04-13 06:21:03','2021-04-13 06:21:03',9,'af6048e9-ba8b-4125-8173-fb6c05a9a198'),(151070,151055,NULL,8,3,NULL,'2021-04-13 06:21:03','2021-04-13 06:21:03',10,'07b7e8bc-324e-42b9-8422-6a861a21946a'),(151072,151055,NULL,8,3,NULL,'2021-04-13 06:21:03','2021-04-13 06:21:03',11,'90163289-e881-4899-9d91-8d8c0bd2f9cf'),(151074,151055,NULL,8,3,NULL,'2021-04-13 06:21:03','2021-04-13 06:21:03',12,'713bb803-f5df-4a73-bfbb-1f22d1a52665'),(151076,151055,NULL,8,2,NULL,'2021-04-13 06:21:03','2021-04-13 06:21:03',13,'f78782d3-3983-43c3-b456-b2bbf1abcc16'),(151077,151055,NULL,8,3,NULL,'2021-04-13 06:21:04','2021-04-13 06:21:04',14,'5e00ae6e-a163-4367-92b2-4b32a3dcec3f'),(151079,151055,NULL,8,3,NULL,'2021-04-13 06:21:04','2021-04-13 06:21:04',15,'674ad2f5-8aba-4613-b2c2-192ff2bdd0a4'),(151081,151055,NULL,8,3,NULL,'2021-04-13 06:21:04','2021-04-13 06:21:04',16,'a0b34a72-1684-47b0-afdd-1c2d98053c98'),(151083,151055,NULL,8,2,NULL,'2021-04-13 06:21:04','2021-04-13 06:21:04',17,'c7de4fa7-8cc4-41a4-89ee-d13ae17397f3'),(151084,151055,NULL,8,15,NULL,'2021-04-13 06:21:04','2021-04-13 06:21:04',18,'4144cca8-0258-4c25-a962-0386c1ff0b8c'),(151086,151055,NULL,8,2,NULL,'2021-04-13 06:21:04','2021-04-13 06:21:04',19,'be8ad7cc-d4d7-4d07-ac23-1168376a124e'),(151087,151055,NULL,8,3,NULL,'2021-04-13 06:21:04','2021-04-13 06:21:04',20,'d307cbf2-dc87-4735-ab48-7c122792edef'),(151089,151055,NULL,8,3,NULL,'2021-04-13 06:21:04','2021-04-13 06:21:04',21,'cc2ce1d2-5477-4e9d-a80f-b83c58db080a'),(151141,151140,NULL,8,2,NULL,'2021-04-14 01:47:59','2021-04-14 01:47:59',1,'1155c38b-53f7-40f9-9c80-02e50d4f131e'),(151142,151140,NULL,8,3,NULL,'2021-04-14 01:47:59','2021-04-14 01:47:59',2,'449d00bf-d3da-4069-acb1-48e3d6826949'),(151143,151140,NULL,8,2,NULL,'2021-04-14 01:47:59','2021-04-14 01:47:59',3,'3e6ec7db-7592-4483-bb8e-595f408e6565'),(151144,151140,NULL,8,3,NULL,'2021-04-14 01:47:59','2021-04-14 01:47:59',4,'89df5c49-38bf-401c-a38a-5d7dda031625'),(151148,151140,NULL,8,2,NULL,'2021-04-14 01:47:59','2021-04-14 01:47:59',5,'a7735ed5-8e7c-4423-8079-57f2713d3a67'),(151149,151140,NULL,8,3,NULL,'2021-04-14 01:47:59','2021-04-14 01:47:59',6,'81378be6-0677-4de3-8a6e-5663635f6eb6'),(151372,151371,NULL,8,2,NULL,'2021-04-20 05:21:20','2021-04-20 05:21:20',1,'ddd8bc11-ff90-4a89-8a69-69918beed21a'),(151373,151371,NULL,8,3,NULL,'2021-04-20 05:21:20','2021-04-20 05:21:20',2,'d3716d1a-cbed-4296-be23-cb2eea14bf48'),(151378,151371,NULL,8,4,NULL,'2021-04-20 05:21:20','2021-04-20 05:21:20',3,'871a2bc5-9451-43c7-98b0-a0931c321203'),(151379,151371,NULL,8,3,NULL,'2021-04-20 05:21:20','2021-04-20 05:21:20',4,'1b89ff9f-524d-4f00-ae90-402dabe2508a'),(151384,151371,NULL,8,4,NULL,'2021-04-20 05:21:20','2021-04-20 05:21:20',5,'a1606fb6-4501-4129-baf5-333c59ce7191'),(151385,151371,NULL,8,3,NULL,'2021-04-20 05:21:20','2021-04-20 05:21:20',6,'fb14998b-b61e-492e-924e-2b0e14470b7e'),(151388,151371,NULL,8,2,NULL,'2021-04-20 05:21:20','2021-04-20 05:21:20',7,'4b05b087-124f-4fc3-acb3-6c890f5f50de'),(151389,151371,NULL,8,3,NULL,'2021-04-20 05:21:20','2021-04-20 05:21:20',8,'0926238c-b480-4fbb-a06e-0bf216e8d9e3'),(151390,151371,NULL,8,2,NULL,'2021-04-20 05:21:20','2021-04-20 05:21:20',9,'8ef43764-4fcd-4ce9-8366-dcebd10cde94'),(151391,151371,NULL,8,3,NULL,'2021-04-20 05:21:20','2021-04-20 05:21:20',10,'5866d5dc-fad3-484c-8783-c62483124248'),(151392,151371,NULL,8,2,NULL,'2021-04-20 05:21:20','2021-04-20 05:21:20',11,'78dc3dbc-f116-4889-aa1c-87a68dca415a'),(151393,151371,NULL,8,3,NULL,'2021-04-20 05:21:20','2021-04-20 05:21:20',12,'4de23c00-4568-4aa4-9a7e-ac58e2124a17'),(151395,151371,NULL,8,2,NULL,'2021-04-20 05:21:20','2021-04-20 05:21:20',13,'dbccd65a-517f-4f18-a1a7-35a3e270311a'),(151396,151371,NULL,8,3,NULL,'2021-04-20 05:21:20','2021-04-20 05:21:20',14,'856741f7-4249-4335-be44-589822f09789'),(151402,151371,NULL,8,2,NULL,'2021-04-20 05:21:21','2021-04-20 05:21:21',15,'a8a33110-d60f-42b7-86f1-381603bb7993'),(151403,151371,NULL,8,3,NULL,'2021-04-20 05:21:21','2021-04-20 05:21:21',16,'d62d36c2-8907-493f-b587-23246205331b'),(151404,151371,NULL,8,16,NULL,'2021-04-20 05:21:21','2021-04-20 05:21:21',17,'e9e42a09-64e1-444b-99ee-8dce0576ca7d'),(151405,151371,NULL,8,2,NULL,'2021-04-20 05:21:21','2021-04-20 05:21:21',18,'ac39da8d-d73c-49ed-87ac-9ccd7fbce443'),(151406,151371,NULL,8,3,NULL,'2021-04-20 05:21:21','2021-04-20 05:21:21',19,'8b7947ce-ea22-46a6-bc15-5ea792f6a302'),(151410,151371,NULL,8,3,NULL,'2021-04-20 05:21:21','2021-04-20 05:21:21',20,'11c1e900-3a93-41c9-8fc8-5a96df0cc635'),(151412,151411,NULL,8,2,NULL,'2021-04-20 05:21:37','2021-04-20 05:21:37',1,'e8e910c1-aeee-40be-868d-76dcfaa2e300'),(151413,151411,NULL,8,3,NULL,'2021-04-20 05:21:37','2021-04-20 05:21:37',2,'a46d6494-436e-4871-8c3c-1425f3ba26be'),(151418,151411,NULL,8,4,NULL,'2021-04-20 05:21:37','2021-04-20 05:21:37',3,'9c40883a-d0b8-46b4-abf4-70debabdcd35'),(151419,151411,NULL,8,3,NULL,'2021-04-20 05:21:37','2021-04-20 05:21:37',4,'022fe5c7-b334-44af-abfe-e166a24d2651'),(151424,151411,NULL,8,4,NULL,'2021-04-20 05:21:37','2021-04-20 05:21:37',5,'6d711fcb-2c5d-4d4a-83ea-0280a375efef'),(151425,151411,NULL,8,3,NULL,'2021-04-20 05:21:37','2021-04-20 05:21:37',6,'6f22c26d-bf47-4b46-aaca-ab476f901fe9'),(151428,151411,NULL,8,2,NULL,'2021-04-20 05:21:37','2021-04-20 05:21:37',7,'1772e7b5-3c19-4a99-8582-784979c08a0f'),(151429,151411,NULL,8,3,NULL,'2021-04-20 05:21:38','2021-04-20 05:21:38',8,'c0a52aae-46b8-4555-9648-0d65cc0adfb8'),(151430,151411,NULL,8,2,NULL,'2021-04-20 05:21:38','2021-04-20 05:21:38',9,'7f660128-d50c-44ce-a0b4-b13279e2aa08'),(151431,151411,NULL,8,3,NULL,'2021-04-20 05:21:38','2021-04-20 05:21:38',10,'31a0a177-a23c-4c4d-9fb0-e6abb41cf2cd'),(151432,151411,NULL,8,2,NULL,'2021-04-20 05:21:38','2021-04-20 05:21:38',11,'79b79efc-55a5-4fa8-9cad-e05cdc3904bd'),(151433,151411,NULL,8,3,NULL,'2021-04-20 05:21:38','2021-04-20 05:21:38',12,'03712885-6d8e-40cc-b3e1-2e781bc3dcac'),(151435,151411,NULL,8,2,NULL,'2021-04-20 05:21:38','2021-04-20 05:21:38',13,'adac8506-ad92-4c02-8742-1fa3e6e4fbc4'),(151436,151411,NULL,8,3,NULL,'2021-04-20 05:21:38','2021-04-20 05:21:38',14,'65b0bbc6-6854-42f7-b7c5-78cb20509826'),(151442,151411,NULL,8,2,NULL,'2021-04-20 05:21:38','2021-04-20 05:21:38',15,'b0fee6a2-d98d-4c66-8f66-2a746b986c2c'),(151443,151411,NULL,8,3,NULL,'2021-04-20 05:21:38','2021-04-20 05:21:38',16,'ca4e5da6-1160-475e-bd62-7747ca282ec5'),(151444,151411,NULL,8,16,NULL,'2021-04-20 05:21:38','2021-04-20 05:21:38',17,'3036c324-345a-4cb0-8a81-800f37a904fa'),(151445,151411,NULL,8,2,NULL,'2021-04-20 05:21:38','2021-04-20 05:21:38',18,'2e67f67d-f619-46f4-8b05-ed648387e9c2'),(151446,151411,NULL,8,3,NULL,'2021-04-20 05:21:38','2021-04-20 05:21:38',19,'82d428d5-d51e-4f37-bc64-bb935c5e8862'),(151450,151411,NULL,8,3,NULL,'2021-04-20 05:21:38','2021-04-20 05:21:38',20,'6e8b374b-6503-42ae-bc32-f7a66665234d'),(151459,151458,NULL,8,2,NULL,'2021-04-20 06:15:11','2021-04-20 06:15:11',1,'4e0491cb-083a-4714-b7c3-c8063e35ee56'),(151460,151458,NULL,8,3,NULL,'2021-04-20 06:15:11','2021-04-20 06:15:11',2,'515a3959-8573-4e0b-afa8-e6055c130aa1'),(151461,151458,NULL,8,2,NULL,'2021-04-20 06:15:11','2021-04-20 06:15:11',3,'a2575e76-8a33-4817-9b77-a975af8daa1d'),(151462,151458,NULL,8,3,NULL,'2021-04-20 06:15:11','2021-04-20 06:15:11',4,'0df3ee78-1270-443a-ae5f-519675bce6eb'),(151465,151458,NULL,8,2,NULL,'2021-04-20 06:15:11','2021-04-20 06:15:11',5,'8ab552be-a0f6-4de5-888e-5d60d481e03e'),(151466,151458,NULL,8,3,NULL,'2021-04-20 06:15:11','2021-04-20 06:15:11',6,'5d6ef68c-5be9-4be9-a9e1-624ccb387c53'),(151661,151660,NULL,8,2,NULL,'2021-04-22 05:24:57','2021-04-22 05:24:57',1,'eb150308-785d-42cf-b2f4-25cff53b02c5'),(151662,151660,NULL,8,3,NULL,'2021-04-22 05:24:57','2021-04-22 05:24:57',2,'e4ae30a0-4367-4c13-a9a5-5e534b814aa2'),(151663,151660,NULL,8,2,NULL,'2021-04-22 05:24:57','2021-04-22 05:24:57',3,'fb156339-c4aa-4979-a660-721c3d471d74'),(151664,151660,NULL,8,3,NULL,'2021-04-22 05:24:57','2021-04-22 05:24:57',4,'94c1de37-9e38-4b61-bb48-82c39f50c01c'),(151666,151660,NULL,8,3,NULL,'2021-04-22 05:24:57','2021-04-22 05:24:57',5,'dc6f5383-e323-4df8-964e-8a86fa6ad6f8'),(151669,151660,NULL,8,3,NULL,'2021-04-22 05:24:57','2021-04-22 05:24:57',6,'d1313fc2-715d-49dc-b923-76a8c87dff5d'),(151672,151660,NULL,8,3,NULL,'2021-04-22 05:24:57','2021-04-22 05:24:57',7,'2a46c29a-12bd-4e91-9969-2074ae95ce04'),(151675,151660,NULL,8,3,NULL,'2021-04-22 05:24:57','2021-04-22 05:24:57',8,'20359f7d-e10f-4b28-8469-0821a9e5285f'),(151678,151660,NULL,8,3,NULL,'2021-04-22 05:24:57','2021-04-22 05:24:57',9,'d920f58b-9eb9-49be-a47b-db770ab2bd82'),(151681,151660,NULL,8,3,NULL,'2021-04-22 05:24:57','2021-04-22 05:24:57',10,'b7780355-f003-4bb4-a627-cfe4422bdaa3'),(151684,151660,NULL,8,3,NULL,'2021-04-22 05:24:57','2021-04-22 05:24:57',11,'769ee050-2ec6-4460-abf0-d8eeb92ebe48'),(151687,151660,NULL,8,3,NULL,'2021-04-22 05:24:57','2021-04-22 05:24:57',12,'8030736c-374a-48f9-8ef5-b3abc89e335b'),(151690,151660,NULL,8,3,NULL,'2021-04-22 05:24:57','2021-04-22 05:24:57',13,'c50c5306-8c70-423f-ba28-aabe82a1bcef'),(151693,151660,NULL,8,3,NULL,'2021-04-22 05:24:58','2021-04-22 05:24:58',14,'16b7c034-cae2-4eb8-b2ac-1d2135147e29'),(151696,151660,NULL,8,3,NULL,'2021-04-22 05:24:58','2021-04-22 05:24:58',15,'7f702025-03eb-40a3-a7a3-1fbcb189b437'),(151699,151660,NULL,8,3,NULL,'2021-04-22 05:24:58','2021-04-22 05:24:58',16,'3bc1ed81-2d1d-4352-b2b9-df55318fc497'),(151702,151660,NULL,8,3,NULL,'2021-04-22 05:24:58','2021-04-22 05:24:58',17,'11ff383a-eed6-42c4-84ac-48853fd86ba4'),(151705,151660,NULL,8,3,NULL,'2021-04-22 05:24:58','2021-04-22 05:24:58',18,'a4e66188-ca54-4d70-9300-8f4dfbfdcef8'),(151708,151660,NULL,8,3,NULL,'2021-04-22 05:24:58','2021-04-22 05:24:58',19,'4982171d-5b92-4b7d-956e-ce8e2c4297e0'),(151820,151819,NULL,8,2,NULL,'2021-04-22 05:34:55','2021-04-22 05:34:55',1,'b5ff4657-98fe-482a-865a-439f4010fbbb'),(151821,151819,NULL,8,3,NULL,'2021-04-22 05:34:55','2021-04-22 05:34:55',2,'4d10b6ed-96de-4bcb-a150-ec45017b08f3'),(151822,151819,NULL,8,2,NULL,'2021-04-22 05:34:55','2021-04-22 05:34:55',3,'f9c023e6-5a45-4183-8feb-892b608863b5'),(151823,151819,NULL,8,3,NULL,'2021-04-22 05:34:55','2021-04-22 05:34:55',4,'509b96f8-f39b-491f-a312-09ada2e54674'),(151825,151819,NULL,8,3,NULL,'2021-04-22 05:34:55','2021-04-22 05:34:55',5,'411ee110-4911-44c6-9f7a-705d5aa1e019'),(151828,151819,NULL,8,3,NULL,'2021-04-22 05:34:55','2021-04-22 05:34:55',6,'98e6647f-8f9f-491c-adc3-3cdeb4c730cc'),(151831,151819,NULL,8,3,NULL,'2021-04-22 05:34:55','2021-04-22 05:34:55',7,'affa8a8f-a260-45c4-a813-2835825c9607'),(151834,151819,NULL,8,3,NULL,'2021-04-22 05:34:55','2021-04-22 05:34:55',8,'e9b38f65-4e9f-450d-89b2-8134ae4ff686'),(151837,151819,NULL,8,3,NULL,'2021-04-22 05:34:55','2021-04-22 05:34:55',9,'84a92ff4-d9da-41e9-bf61-c88167cd5a0e'),(151840,151819,NULL,8,3,NULL,'2021-04-22 05:34:55','2021-04-22 05:34:55',10,'965fe3bc-0c55-4785-933b-9f1515445eb0'),(151843,151819,NULL,8,3,NULL,'2021-04-22 05:34:55','2021-04-22 05:34:55',11,'07b4e2e3-4c3e-4658-aa61-3cfc332eb7fb'),(151846,151819,NULL,8,3,NULL,'2021-04-22 05:34:55','2021-04-22 05:34:55',12,'855d640b-b0f8-4238-ad61-f626bc2488ae'),(151849,151819,NULL,8,3,NULL,'2021-04-22 05:34:55','2021-04-22 05:34:55',13,'782f508f-fca3-411b-a998-e14f421dfe15'),(151852,151819,NULL,8,3,NULL,'2021-04-22 05:34:56','2021-04-22 05:34:56',14,'e8ed1bd2-b6b8-4c79-950c-b6adcd3cbb84'),(151855,151819,NULL,8,3,NULL,'2021-04-22 05:34:56','2021-04-22 05:34:56',15,'1e7f428b-80f6-4ba4-b235-3d0db69f9e45'),(151858,151819,NULL,8,3,NULL,'2021-04-22 05:34:56','2021-04-22 05:34:56',16,'9f5c87bc-4672-4383-8bdb-a2d81336991e'),(151861,151819,NULL,8,3,NULL,'2021-04-22 05:34:56','2021-04-22 05:34:56',17,'f784e691-130d-4ea0-91c8-8bc071b6aecc'),(151864,151819,NULL,8,3,NULL,'2021-04-22 05:34:56','2021-04-22 05:34:56',18,'f7c615cd-030b-4c74-991a-25e8a58fad52'),(151867,151819,NULL,8,3,NULL,'2021-04-22 05:34:56','2021-04-22 05:34:56',19,'6607a536-2e23-47dc-8360-8421483dca4d'),(151871,151870,NULL,8,2,NULL,'2021-04-22 05:35:04','2021-04-22 05:35:04',1,'65de7502-a78e-471b-94b9-465278de75e0'),(151872,151870,NULL,8,3,NULL,'2021-04-22 05:35:04','2021-04-22 05:35:04',2,'317910ad-2701-4c32-88e0-43314b4e488f'),(151873,151870,NULL,8,2,NULL,'2021-04-22 05:35:04','2021-04-22 05:35:04',3,'6e8bf5d0-11cb-42f8-8164-5ec75bbdf829'),(151874,151870,NULL,8,3,NULL,'2021-04-22 05:35:04','2021-04-22 05:35:04',4,'e2de97f9-691f-4f7a-90ee-8a2ea773a5d9'),(151876,151870,NULL,8,3,NULL,'2021-04-22 05:35:04','2021-04-22 05:35:04',5,'ce353e75-e7c1-4c9a-bddd-7b9889030aed'),(151879,151870,NULL,8,3,NULL,'2021-04-22 05:35:04','2021-04-22 05:35:04',6,'74044ffd-9f87-4965-9efc-686cd80ef274'),(151882,151870,NULL,8,3,NULL,'2021-04-22 05:35:04','2021-04-22 05:35:04',7,'f88410ce-43a9-42c7-b4a7-b76fb54d60fb'),(151885,151870,NULL,8,3,NULL,'2021-04-22 05:35:04','2021-04-22 05:35:04',8,'36ee1d09-4357-4e0e-80af-660d96483ae5'),(151888,151870,NULL,8,3,NULL,'2021-04-22 05:35:04','2021-04-22 05:35:04',9,'f7ced8b4-ff8d-4973-b9f8-974a5cc9c782'),(151891,151870,NULL,8,3,NULL,'2021-04-22 05:35:04','2021-04-22 05:35:04',10,'8a650500-b554-48ed-b2ac-84d9431311f3'),(151894,151870,NULL,8,3,NULL,'2021-04-22 05:35:05','2021-04-22 05:35:05',11,'94047817-269c-4d51-a3a7-6b6d7ea2a529'),(151897,151870,NULL,8,3,NULL,'2021-04-22 05:35:05','2021-04-22 05:35:05',12,'bc983002-cd1b-40a7-9146-eef873cf83ab'),(151900,151870,NULL,8,3,NULL,'2021-04-22 05:35:05','2021-04-22 05:35:05',13,'d337fba7-ba6f-4cc8-b13f-44a453a51984'),(151903,151870,NULL,8,3,NULL,'2021-04-22 05:35:05','2021-04-22 05:35:05',14,'c96234a3-ea25-483c-992e-0e2a75a993e5'),(151906,151870,NULL,8,3,NULL,'2021-04-22 05:35:05','2021-04-22 05:35:05',15,'be046a1d-009c-494d-8e63-94586f41461f'),(151909,151870,NULL,8,3,NULL,'2021-04-22 05:35:05','2021-04-22 05:35:05',16,'1732e49d-b716-4112-8792-aa35834cb912'),(151912,151870,NULL,8,3,NULL,'2021-04-22 05:35:05','2021-04-22 05:35:05',17,'a80237ba-755b-4fa6-be86-ad72eb852028'),(151915,151870,NULL,8,3,NULL,'2021-04-22 05:35:05','2021-04-22 05:35:05',18,'72e73760-5c5e-44dc-b45b-1af7970dd628'),(151918,151870,NULL,8,3,NULL,'2021-04-22 05:35:05','2021-04-22 05:35:05',19,'b336913e-a671-4b07-be97-c44e7e84f028'),(151947,151946,NULL,8,2,NULL,'2021-04-22 06:28:10','2021-04-22 06:28:10',1,'9a05a9d2-aa2e-4f97-8f8a-964b2b336a75'),(151948,151946,NULL,8,3,NULL,'2021-04-22 06:28:10','2021-04-22 06:28:10',2,'885e00f9-4493-4d04-8499-596cd23adebb'),(151949,151946,NULL,8,21,NULL,'2021-04-22 06:28:10','2021-04-22 06:28:10',3,'7e34de19-bfdb-48bf-a7c7-280085a01855'),(151957,151956,NULL,8,2,NULL,'2021-04-22 06:29:22','2021-04-22 06:29:22',1,'88e6fc64-c600-4293-b65b-2dd3d50da4a1'),(151958,151956,NULL,8,3,NULL,'2021-04-22 06:29:22','2021-04-22 06:29:22',2,'aea901ac-7c7d-4d91-80d3-b3edb27a803f'),(151959,151956,NULL,8,21,NULL,'2021-04-22 06:29:22','2021-04-22 06:29:22',3,'78d889e1-98fb-41ff-8d20-62e081683e80'),(151969,151968,NULL,8,2,NULL,'2021-04-22 06:39:44','2021-04-22 06:39:44',1,'6834225c-e7f6-46be-bef3-f987b90cdca9'),(151970,151968,NULL,8,3,NULL,'2021-04-22 06:39:44','2021-04-22 06:39:44',2,'1d74d93c-7d84-494c-9d14-9f31dfb0c671'),(151971,151968,NULL,8,16,NULL,'2021-04-22 06:39:44','2021-04-22 06:39:44',3,'1fbd817a-6fb1-4a77-8b5a-bbf61a65000b'),(151972,151968,NULL,8,3,NULL,'2021-04-22 06:39:44','2021-04-22 06:39:44',4,'50475498-2b1e-4b7c-b803-7828f13b6408'),(151973,151968,NULL,8,16,NULL,'2021-04-22 06:39:44','2021-04-22 06:39:44',5,'54239a4e-9e22-4cda-8a7e-51d4fcfbb4b4'),(151974,151968,NULL,8,3,NULL,'2021-04-22 06:39:44','2021-04-22 06:39:44',6,'8c4f37c5-62ab-4441-b0b6-bc4d5ff1c0b9'),(151975,151968,NULL,8,16,NULL,'2021-04-22 06:39:44','2021-04-22 06:39:44',7,'43d51435-caa8-442a-9ebe-98704f39ff6b'),(151976,151968,NULL,8,3,NULL,'2021-04-22 06:39:44','2021-04-22 06:39:44',8,'71d55344-ceb9-41db-8b2a-759f5ff32bf7'),(151977,151968,NULL,8,2,NULL,'2021-04-22 06:39:44','2021-04-22 06:39:44',9,'01bce0e9-26a3-4e84-906a-45f13e13d0df'),(151978,151968,NULL,8,3,NULL,'2021-04-22 06:39:44','2021-04-22 06:39:44',10,'da375f2d-9d28-4d3f-9716-f064c345bf7e'),(151979,151968,NULL,8,7,NULL,'2021-04-22 06:39:44','2021-04-22 06:39:44',11,'5c27d52e-7cd1-43dc-96fa-56fac400b135'),(151983,151982,NULL,8,2,NULL,'2021-04-22 23:40:07','2021-04-22 23:40:07',1,'954ad593-31fb-43e8-a329-833a2f368528'),(151984,151982,NULL,8,3,NULL,'2021-04-22 23:40:07','2021-04-22 23:40:07',2,'cc76e208-18ca-41d1-b415-053f74dd51ae'),(151985,151982,NULL,8,21,NULL,'2021-04-22 23:40:07','2021-04-22 23:40:07',3,'90efa4c9-2f30-4d75-b37f-8ff93a027e41'),(151993,151992,NULL,8,2,NULL,'2021-04-22 23:49:05','2021-04-22 23:49:05',1,'0fc97ba0-6696-4735-b609-d89666f628a9'),(151994,151992,NULL,8,3,NULL,'2021-04-22 23:49:05','2021-04-22 23:49:05',2,'e220f2c2-c865-40d8-8485-2c2cf1068aca'),(151995,151992,NULL,8,21,NULL,'2021-04-22 23:49:05','2021-04-22 23:49:05',3,'be3513e4-89d0-466e-acd7-48c533e2bdb1'),(152057,152056,NULL,8,2,NULL,'2021-04-23 06:12:42','2021-04-23 06:12:42',1,'c2d789a7-db83-4f38-8428-66ef34702b59'),(152058,152056,NULL,8,3,NULL,'2021-04-23 06:12:42','2021-04-23 06:12:42',2,'b7255b3a-a31b-49c6-994f-cab5a8474ad1'),(152060,152056,NULL,8,3,NULL,'2021-04-23 06:12:42','2021-04-23 06:12:42',3,'187daeb0-902e-486f-a0c0-7da868cf0c6c'),(152064,152056,NULL,8,3,NULL,'2021-04-23 06:12:42','2021-04-23 06:12:42',4,'89180162-6264-44b6-9c3e-691473907535'),(152068,152056,NULL,8,3,NULL,'2021-04-23 06:12:42','2021-04-23 06:12:42',5,'15c92f4e-f46e-4573-9a5e-193b61299559'),(152071,152056,NULL,8,3,NULL,'2021-04-23 06:12:42','2021-04-23 06:12:42',6,'9f5adcff-5065-482c-a24d-b625684ea05d'),(152074,152056,NULL,8,2,NULL,'2021-04-23 06:12:42','2021-04-23 06:12:42',7,'602b41c2-23c9-4b91-b6f2-fa86d2910e1a'),(152075,152056,NULL,8,3,NULL,'2021-04-23 06:12:42','2021-04-23 06:12:42',8,'84100ff8-9790-4072-8431-0d9148fe9643'),(152076,152056,NULL,8,2,NULL,'2021-04-23 06:12:42','2021-04-23 06:12:42',9,'360eba45-e6a5-4723-a63e-ca81abfe180d'),(152077,152056,NULL,8,3,NULL,'2021-04-23 06:12:42','2021-04-23 06:12:42',10,'6094a5a0-a0f1-4c75-8d8d-553069419cfe'),(152083,152082,NULL,8,2,NULL,'2021-04-23 06:13:00','2021-04-23 06:13:00',1,'37f3ae05-9588-4a8d-b872-4575ebc0eec3'),(152084,152082,NULL,8,3,NULL,'2021-04-23 06:13:00','2021-04-23 06:13:00',2,'c520e05d-9e9c-4ee2-ba9c-d0f649517278'),(152086,152082,NULL,8,3,NULL,'2021-04-23 06:13:00','2021-04-23 06:13:00',3,'648783cd-7f3a-4d9b-81b0-94300cefa9bc'),(152090,152082,NULL,8,3,NULL,'2021-04-23 06:13:00','2021-04-23 06:13:00',4,'d4103d2a-5fde-46e1-b145-0693e652579a'),(152094,152082,NULL,8,3,NULL,'2021-04-23 06:13:00','2021-04-23 06:13:00',5,'c837928b-3ba9-4519-a2a3-3dd960b8b0e1'),(152097,152082,NULL,8,3,NULL,'2021-04-23 06:13:00','2021-04-23 06:13:00',6,'db2be17e-0451-4b1a-b57d-762eec7c250f'),(152100,152082,NULL,8,2,NULL,'2021-04-23 06:13:01','2021-04-23 06:13:01',7,'be98cf77-9a6f-4ae1-95e3-f54d663520ff'),(152101,152082,NULL,8,3,NULL,'2021-04-23 06:13:01','2021-04-23 06:13:01',8,'96ab473d-b70b-4608-8afb-45d15f9191b3'),(152102,152082,NULL,8,2,NULL,'2021-04-23 06:13:01','2021-04-23 06:13:01',9,'af0f0836-2f6f-4d4d-98ce-f473d13762ab'),(152103,152082,NULL,8,3,NULL,'2021-04-23 06:13:01','2021-04-23 06:13:01',10,'be390338-3b9f-4233-8183-08714c96a7a8'),(152225,21115,NULL,8,2,0,'2021-04-23 06:29:16','2021-04-23 06:29:16',1,'9a2132ba-2836-47e3-bd07-1908bca6c3e1'),(152226,21115,NULL,8,3,0,'2021-04-23 06:29:16','2021-04-23 06:29:16',2,'3c0a47de-8277-49f1-8dc5-79e8c0cd624c'),(152229,21115,NULL,8,2,0,'2021-04-23 06:29:16','2021-04-23 06:29:16',3,'9eb0a6a8-8f81-454d-9867-ab8f9f89a6df'),(152230,21115,NULL,8,3,0,'2021-04-23 06:29:16','2021-04-23 06:29:16',4,'fed55945-8127-408a-a9ca-bf29835bb7fe'),(152232,21115,NULL,8,2,0,'2021-04-23 06:29:16','2021-04-23 06:29:16',5,'5200d859-78be-4ece-bff6-5f669039af8c'),(152233,21115,NULL,8,3,0,'2021-04-23 06:29:16','2021-04-23 06:29:16',6,'e1f5ba33-c1d6-4660-9a9c-d1a5c5c8321a'),(152235,21115,NULL,8,2,0,'2021-04-23 06:29:16','2021-04-23 06:29:16',7,'5c1c1528-4d2a-402a-a12e-a9f1f8357017'),(152236,21115,NULL,8,3,0,'2021-04-23 06:29:16','2021-04-23 06:29:16',8,'5445fd68-3839-47f2-b815-a068f91c4e4c'),(152237,21115,NULL,8,16,0,'2021-04-23 06:29:16','2021-04-23 06:29:16',9,'0a6d85b5-0040-4d2f-803b-f34a298d9396'),(152238,21115,NULL,8,2,0,'2021-04-23 06:29:16','2021-04-23 06:29:16',10,'96027cdd-4b90-4d0d-97d8-a3025b7a9527'),(152239,21115,NULL,8,3,0,'2021-04-23 06:29:16','2021-04-23 06:29:16',11,'f2f22b46-0ef9-4b07-b367-0510150c152e'),(152241,21115,NULL,8,2,0,'2021-04-23 06:29:16','2021-04-23 06:29:16',12,'b8bd6b1c-275b-4315-b8eb-bcf2690862fd'),(152242,21115,NULL,8,3,0,'2021-04-23 06:29:16','2021-04-23 06:29:16',13,'86735787-28a4-4121-8ae3-1f339433dd7e'),(152244,21115,NULL,8,3,0,'2021-04-23 06:29:16','2021-04-23 06:29:16',14,'7af8107e-2d84-40fe-9155-d13b4f2599c1'),(152246,21115,NULL,8,3,0,'2021-04-23 06:29:16','2021-04-23 06:29:16',15,'0281cc0c-0ed0-4437-aa14-382d18ca84b7'),(152248,21115,NULL,8,2,0,'2021-04-23 06:29:16','2021-04-23 06:29:16',16,'942d6004-b575-4f64-9fa1-34e745a8207c'),(152249,21115,NULL,8,3,0,'2021-04-23 06:29:16','2021-04-23 06:29:16',17,'d2d55624-14cf-4e9d-bcc7-80fd8787348e'),(152251,21115,NULL,8,3,0,'2021-04-23 06:29:16','2021-04-23 06:29:16',18,'16b3fd3e-d72c-493e-8649-c77f3a92ad7f'),(152253,21115,NULL,8,3,0,'2021-04-23 06:29:16','2021-04-23 06:29:16',19,'bdfaa85b-3838-4e8c-b0f1-18d59c496a85'),(152255,21115,NULL,8,2,0,'2021-04-23 06:29:16','2021-04-23 06:29:16',20,'49f2404a-d5d6-48ed-b149-0d9afb2bfb36'),(152256,21115,NULL,8,15,0,'2021-04-23 06:29:16','2021-04-23 06:29:16',21,'5ce4fc53-7e9c-4f02-8f62-f21772156464'),(152258,21115,NULL,8,2,0,'2021-04-23 06:29:16','2021-04-23 06:29:16',22,'3a82cb03-aa2d-4d84-b1ce-d827f6f04370'),(152259,21115,NULL,8,3,0,'2021-04-23 06:29:16','2021-04-23 06:29:16',23,'779d3a3e-4438-4571-a8ef-5160d7229342'),(152261,21115,NULL,8,3,0,'2021-04-23 06:29:16','2021-04-23 06:29:16',24,'c16e41c9-e3b4-4d9f-b323-c80cde9bf650'),(152265,152264,NULL,8,2,NULL,'2021-04-23 06:29:17','2021-04-23 06:29:17',1,'e39cd556-556a-4aa1-a139-95b4982d7cea'),(152266,152264,NULL,8,3,NULL,'2021-04-23 06:29:17','2021-04-23 06:29:17',2,'ffdcc522-3211-441b-b916-ee2a6c851602'),(152269,152264,NULL,8,2,NULL,'2021-04-23 06:29:17','2021-04-23 06:29:17',3,'7c59e0d5-67b0-435b-906f-00acdeaee72b'),(152270,152264,NULL,8,3,NULL,'2021-04-23 06:29:17','2021-04-23 06:29:17',4,'0cc48509-0c45-4348-b397-e4bd15d8d6df'),(152272,152264,NULL,8,2,NULL,'2021-04-23 06:29:17','2021-04-23 06:29:17',5,'3cd412e7-91f0-4e32-8dbd-49f48aecb17f'),(152273,152264,NULL,8,3,NULL,'2021-04-23 06:29:17','2021-04-23 06:29:17',6,'ff12941a-200a-4c1f-b031-804be9c2d879'),(152275,152264,NULL,8,2,NULL,'2021-04-23 06:29:17','2021-04-23 06:29:17',7,'c8a71dbc-64a7-4a9e-8162-3771fbc04463'),(152276,152264,NULL,8,3,NULL,'2021-04-23 06:29:17','2021-04-23 06:29:17',8,'661fb930-98d1-4559-a4f8-f8b6740eddbe'),(152277,152264,NULL,8,16,NULL,'2021-04-23 06:29:17','2021-04-23 06:29:17',9,'bdfc116b-43cc-4b7c-89ae-5768b5c01230'),(152278,152264,NULL,8,2,NULL,'2021-04-23 06:29:17','2021-04-23 06:29:17',10,'050e3fe0-6992-43d7-9a06-dee8dddefe96'),(152279,152264,NULL,8,3,NULL,'2021-04-23 06:29:17','2021-04-23 06:29:17',11,'16d2cb5b-1ce0-4959-8532-ab90759ae692'),(152281,152264,NULL,8,2,NULL,'2021-04-23 06:29:17','2021-04-23 06:29:17',12,'58857e9e-9fe9-467e-8a79-b31445ccdcaa'),(152282,152264,NULL,8,3,NULL,'2021-04-23 06:29:17','2021-04-23 06:29:17',13,'9c0353fe-1732-4566-b810-92b46d8c1c0a'),(152284,152264,NULL,8,3,NULL,'2021-04-23 06:29:17','2021-04-23 06:29:17',14,'c02d04bd-1b56-4fd9-82b1-1aa046d985a0'),(152286,152264,NULL,8,3,NULL,'2021-04-23 06:29:17','2021-04-23 06:29:17',15,'d08f7939-48db-4e10-91ff-94553ddb8cd7'),(152288,152264,NULL,8,2,NULL,'2021-04-23 06:29:17','2021-04-23 06:29:17',16,'d0aa1069-7394-4427-834f-cbe9c8d8a3ab'),(152289,152264,NULL,8,3,NULL,'2021-04-23 06:29:17','2021-04-23 06:29:17',17,'c90ce392-c242-41aa-9ce8-cb205180aa00'),(152291,152264,NULL,8,3,NULL,'2021-04-23 06:29:18','2021-04-23 06:29:18',18,'164db7a9-2df9-434b-b719-aedf4a750bd8'),(152293,152264,NULL,8,3,NULL,'2021-04-23 06:29:18','2021-04-23 06:29:18',19,'5c66c0df-84ce-4625-b35f-86e5f1b43709'),(152295,152264,NULL,8,2,NULL,'2021-04-23 06:29:18','2021-04-23 06:29:18',20,'02c95ccb-53bf-4a73-9128-f556e501cb73'),(152296,152264,NULL,8,15,NULL,'2021-04-23 06:29:18','2021-04-23 06:29:18',21,'bebc6283-4b8f-4ece-b823-275651ef56d9'),(152298,152264,NULL,8,2,NULL,'2021-04-23 06:29:18','2021-04-23 06:29:18',22,'9262f3ad-3d06-48b6-9734-d6d530b22323'),(152299,152264,NULL,8,3,NULL,'2021-04-23 06:29:18','2021-04-23 06:29:18',23,'53236466-03e0-41d3-8a70-719d58c40f9f'),(152301,152264,NULL,8,3,NULL,'2021-04-23 06:29:18','2021-04-23 06:29:18',24,'32fb4865-c0e9-4f5a-8a9d-b585c39126c5'),(152470,21115,NULL,8,2,0,'2021-04-23 06:43:57','2021-04-23 06:43:57',1,'8191e099-284c-42b7-bd38-cf4edfebec74'),(152471,21115,NULL,8,3,0,'2021-04-23 06:43:57','2021-04-23 06:43:57',2,'8e06f481-ce11-4e69-9e73-a0d062f45684'),(152474,21115,NULL,8,2,0,'2021-04-23 06:43:57','2021-04-23 06:43:57',3,'31368ead-110f-4383-98af-d02dafb6c291'),(152475,21115,NULL,8,3,0,'2021-04-23 06:43:57','2021-04-23 06:43:57',4,'39b46317-999a-4fdd-9c23-684fe3fc3a3a'),(152477,21115,NULL,8,2,0,'2021-04-23 06:43:57','2021-04-23 06:43:57',5,'1ebdc581-7e5e-4652-bd79-4d7fb9cbfab1'),(152478,21115,NULL,8,3,0,'2021-04-23 06:43:57','2021-04-23 06:43:57',6,'d6b923f5-d369-414a-8352-430eb21bde1a'),(152480,21115,NULL,8,2,0,'2021-04-23 06:43:57','2021-04-23 06:43:57',7,'5b9f4bfd-fa4c-4d73-a9b9-df1ef007e074'),(152481,21115,NULL,8,3,0,'2021-04-23 06:43:57','2021-04-23 06:43:57',8,'e5c411b6-092a-458a-b01f-f75cdf483c60'),(152482,21115,NULL,8,16,0,'2021-04-23 06:43:57','2021-04-23 06:43:57',9,'c427602e-4a7b-41be-81d3-d5a3623d79ca'),(152483,21115,NULL,8,2,0,'2021-04-23 06:43:57','2021-04-23 06:43:57',10,'d037261d-9090-4307-9164-f69c3cef54e9'),(152484,21115,NULL,8,3,0,'2021-04-23 06:43:57','2021-04-23 06:43:57',11,'574a6510-6fa0-49e0-a7ca-242df69694b1'),(152486,21115,NULL,8,2,0,'2021-04-23 06:43:57','2021-04-23 06:43:57',12,'63335b45-c383-494f-a89e-c4784263b888'),(152487,21115,NULL,8,3,0,'2021-04-23 06:43:58','2021-04-23 06:43:58',13,'962fd30f-d64c-44c6-8d49-cd034ad5615a'),(152489,21115,NULL,8,3,0,'2021-04-23 06:43:58','2021-04-23 06:43:58',14,'fe2980cc-54dd-420a-b070-688af3c026a8'),(152491,21115,NULL,8,3,0,'2021-04-23 06:43:58','2021-04-23 06:43:58',15,'bdee102f-eec2-4060-9dd3-3307ef324e44'),(152493,21115,NULL,8,2,0,'2021-04-23 06:43:58','2021-04-23 06:43:58',16,'ba475f47-1d04-44e9-9e24-833aa407c7b2'),(152494,21115,NULL,8,3,0,'2021-04-23 06:43:58','2021-04-23 06:43:58',17,'8218c1cf-0615-4a15-8b1b-c6effaca38a6'),(152496,21115,NULL,8,3,0,'2021-04-23 06:43:58','2021-04-23 06:43:58',18,'29579152-d9aa-4499-b6d5-cdc5d65562a7'),(152498,21115,NULL,8,3,0,'2021-04-23 06:43:58','2021-04-23 06:43:58',19,'a088d2d6-3212-4d6c-ab2f-c150686743ae'),(152500,21115,NULL,8,2,0,'2021-04-23 06:43:58','2021-04-23 06:43:58',20,'a0aab5ae-7e09-4367-aa78-a0fc8b862fff'),(152501,21115,NULL,8,3,0,'2021-04-23 06:43:58','2021-04-23 06:43:58',21,'546a2c80-b055-41ee-8157-db95de37d9e4'),(152504,21115,NULL,8,2,0,'2021-04-23 06:43:58','2021-04-23 06:43:58',22,'8cf6dcb1-85e4-47a0-a660-8370a3305866'),(152505,21115,NULL,8,15,0,'2021-04-23 06:43:58','2021-04-23 06:43:58',23,'6c670955-bdfd-418c-87ea-b536a4b68a31'),(152507,21115,NULL,8,2,0,'2021-04-23 06:43:58','2021-04-23 06:43:58',24,'9f80b7c2-e859-49d0-b727-8acc8b5b47f3'),(152508,21115,NULL,8,3,0,'2021-04-23 06:43:58','2021-04-23 06:43:58',25,'df9d7db9-9d7a-49d3-a328-eb48670da44a'),(152510,21115,NULL,8,3,0,'2021-04-23 06:43:58','2021-04-23 06:43:58',26,'31a3cf6b-7ad1-4fc4-a287-ee4802e88a56'),(152514,152513,NULL,8,2,NULL,'2021-04-23 06:43:59','2021-04-23 06:43:59',1,'3af3279c-135b-46fb-ae58-c9f01724330c'),(152515,152513,NULL,8,3,NULL,'2021-04-23 06:43:59','2021-04-23 06:43:59',2,'58fc6956-7838-4427-9509-a961f7bd21ce'),(152518,152513,NULL,8,2,NULL,'2021-04-23 06:43:59','2021-04-23 06:43:59',3,'01d29393-4798-4c72-ba6f-449f6b2b1cc0'),(152519,152513,NULL,8,3,NULL,'2021-04-23 06:43:59','2021-04-23 06:43:59',4,'ae13ddbf-f628-408e-9afc-e4789a2ac1c2'),(152521,152513,NULL,8,2,NULL,'2021-04-23 06:43:59','2021-04-23 06:43:59',5,'bed5184e-be0d-4a28-98f4-e31dc71559a3'),(152522,152513,NULL,8,3,NULL,'2021-04-23 06:43:59','2021-04-23 06:43:59',6,'8368f4f7-ebfd-476e-a0a5-294284dbc2e5'),(152524,152513,NULL,8,2,NULL,'2021-04-23 06:43:59','2021-04-23 06:43:59',7,'dae76ab6-4023-4981-9ad0-3182be008d53'),(152525,152513,NULL,8,3,NULL,'2021-04-23 06:43:59','2021-04-23 06:43:59',8,'e7635fbf-f6f3-4515-8313-cc16f83a9d13'),(152526,152513,NULL,8,16,NULL,'2021-04-23 06:43:59','2021-04-23 06:43:59',9,'8a96f8f2-7187-4796-a013-7884e0a085b6'),(152527,152513,NULL,8,2,NULL,'2021-04-23 06:43:59','2021-04-23 06:43:59',10,'d16267f2-68cc-4bbf-aa6b-ab488abdf154'),(152528,152513,NULL,8,3,NULL,'2021-04-23 06:43:59','2021-04-23 06:43:59',11,'6122b7ef-5314-41b6-a2fc-245a4288c3ad'),(152530,152513,NULL,8,2,NULL,'2021-04-23 06:43:59','2021-04-23 06:43:59',12,'a091412c-1d68-426f-bdea-0dc2f44adf96'),(152531,152513,NULL,8,3,NULL,'2021-04-23 06:43:59','2021-04-23 06:43:59',13,'e0553a02-0b9b-4945-88bf-e3ebec475581'),(152533,152513,NULL,8,3,NULL,'2021-04-23 06:43:59','2021-04-23 06:43:59',14,'8b04862f-b016-4ebe-9d75-4d9e28ef22a3'),(152535,152513,NULL,8,3,NULL,'2021-04-23 06:43:59','2021-04-23 06:43:59',15,'ac48729f-fe1b-4375-9e38-42464b4836cd'),(152537,152513,NULL,8,2,NULL,'2021-04-23 06:43:59','2021-04-23 06:43:59',16,'5a865af4-4f15-4eca-a23f-ff0aaeb9848e'),(152538,152513,NULL,8,3,NULL,'2021-04-23 06:43:59','2021-04-23 06:43:59',17,'1d77159b-c6d6-4867-ad65-d0b8160e67cf'),(152540,152513,NULL,8,3,NULL,'2021-04-23 06:44:00','2021-04-23 06:44:00',18,'37549531-5901-437c-8cc7-5ff991e98d84'),(152542,152513,NULL,8,3,NULL,'2021-04-23 06:44:00','2021-04-23 06:44:00',19,'fb4f7582-9fa4-4322-8b4d-6cd55edb9c13'),(152544,152513,NULL,8,2,NULL,'2021-04-23 06:44:00','2021-04-23 06:44:00',20,'cfcbdd48-e470-431f-a7bf-856906025b8c'),(152545,152513,NULL,8,3,NULL,'2021-04-23 06:44:00','2021-04-23 06:44:00',21,'e29d3d28-c61b-41fe-80cd-287effbd1d35'),(152548,152513,NULL,8,2,NULL,'2021-04-23 06:44:00','2021-04-23 06:44:00',22,'07ec7cdb-fea2-4058-b984-66034b90fac1'),(152549,152513,NULL,8,15,NULL,'2021-04-23 06:44:00','2021-04-23 06:44:00',23,'efb2d14c-c365-4f6d-a008-71bad57c1e5b'),(152551,152513,NULL,8,2,NULL,'2021-04-23 06:44:00','2021-04-23 06:44:00',24,'947b9e16-618d-4859-8a17-49e03d1b4110'),(152552,152513,NULL,8,3,NULL,'2021-04-23 06:44:00','2021-04-23 06:44:00',25,'06edf6b6-aa04-4b64-81e4-75efe79f99ab'),(152554,152513,NULL,8,3,NULL,'2021-04-23 06:44:00','2021-04-23 06:44:00',26,'024b7e6e-6a34-4b97-a890-75383cf1be81'),(152558,152557,NULL,8,2,NULL,'2021-04-23 06:44:13','2021-04-23 06:44:13',1,'a4b0b3fb-8ac3-43cc-9b98-8ad7eef4109b'),(152559,152557,NULL,8,3,NULL,'2021-04-23 06:44:13','2021-04-23 06:44:13',2,'2e8e8dd3-2896-4431-ad52-702e5f336777'),(152562,152557,NULL,8,2,NULL,'2021-04-23 06:44:13','2021-04-23 06:44:13',3,'35a10611-eefe-44df-864d-af8935411779'),(152563,152557,NULL,8,3,NULL,'2021-04-23 06:44:13','2021-04-23 06:44:13',4,'63902716-bd25-4d28-972f-e5788cf4903a'),(152565,152557,NULL,8,2,NULL,'2021-04-23 06:44:13','2021-04-23 06:44:13',5,'b67fc128-3a4a-4c96-98f0-c1ac75fdcba0'),(152566,152557,NULL,8,3,NULL,'2021-04-23 06:44:13','2021-04-23 06:44:13',6,'58874581-9291-4bc6-9cd5-a778abcb477a'),(152568,152557,NULL,8,2,NULL,'2021-04-23 06:44:13','2021-04-23 06:44:13',7,'eec56e86-8115-473e-a28c-21b57d95128a'),(152569,152557,NULL,8,3,NULL,'2021-04-23 06:44:13','2021-04-23 06:44:13',8,'38176447-42a0-494b-885e-90742167488e'),(152570,152557,NULL,8,16,NULL,'2021-04-23 06:44:13','2021-04-23 06:44:13',9,'6edd41da-8291-4811-b58b-47d5ecaa0ac9'),(152571,152557,NULL,8,2,NULL,'2021-04-23 06:44:13','2021-04-23 06:44:13',10,'183c60e6-5b32-4a3d-b074-d9108f74414c'),(152572,152557,NULL,8,3,NULL,'2021-04-23 06:44:13','2021-04-23 06:44:13',11,'ae9c5552-6c3f-400f-9321-06e336e7eb3e'),(152574,152557,NULL,8,2,NULL,'2021-04-23 06:44:13','2021-04-23 06:44:13',12,'64a083cf-aa7e-4e1b-8d4d-3b84a26c9572'),(152575,152557,NULL,8,3,NULL,'2021-04-23 06:44:13','2021-04-23 06:44:13',13,'25fb0253-0ed9-49bf-bf1c-17cb818a267f'),(152577,152557,NULL,8,3,NULL,'2021-04-23 06:44:13','2021-04-23 06:44:13',14,'289f3eaa-cc75-406b-abcd-80238b9a3709'),(152579,152557,NULL,8,3,NULL,'2021-04-23 06:44:13','2021-04-23 06:44:13',15,'1544f48c-f02c-4d05-b47c-b01b8cc011bb'),(152581,152557,NULL,8,2,NULL,'2021-04-23 06:44:13','2021-04-23 06:44:13',16,'5aca83fb-857d-4247-be4b-b19600f5a5f2'),(152582,152557,NULL,8,3,NULL,'2021-04-23 06:44:13','2021-04-23 06:44:13',17,'b860db2a-3f34-4035-b5ec-721afc81526e'),(152584,152557,NULL,8,3,NULL,'2021-04-23 06:44:13','2021-04-23 06:44:13',18,'ff8932e9-59ab-4685-b04d-15908d26ef43'),(152586,152557,NULL,8,3,NULL,'2021-04-23 06:44:13','2021-04-23 06:44:13',19,'42d93171-f86a-4b8a-ad85-f7c1c7ef5902'),(152588,152557,NULL,8,2,NULL,'2021-04-23 06:44:13','2021-04-23 06:44:13',20,'94bb29ec-5bf3-4256-833b-58a5698abcf7'),(152589,152557,NULL,8,3,NULL,'2021-04-23 06:44:13','2021-04-23 06:44:13',21,'5b0868dc-17d9-4044-8806-ac89a36ab94e'),(152592,152557,NULL,8,2,NULL,'2021-04-23 06:44:14','2021-04-23 06:44:14',22,'5a353766-fd89-4fb6-946f-2c1fdf63a305'),(152593,152557,NULL,8,15,NULL,'2021-04-23 06:44:14','2021-04-23 06:44:14',23,'eb791410-9b29-439b-ae6c-518488a7f2f8'),(152595,152557,NULL,8,2,NULL,'2021-04-23 06:44:14','2021-04-23 06:44:14',24,'f959cab0-5326-4d08-ad88-d1bfb3c80ee2'),(152596,152557,NULL,8,3,NULL,'2021-04-23 06:44:14','2021-04-23 06:44:14',25,'09cf095f-79ae-42cf-891c-2e2866d41d4c'),(152598,152557,NULL,8,3,NULL,'2021-04-23 06:44:14','2021-04-23 06:44:14',26,'753c4e48-2ce6-45ef-82a9-44f862b7dc8f'),(152653,152652,NULL,8,2,NULL,'2021-04-23 06:51:46','2021-04-23 06:51:46',1,'50aad02e-afa7-4506-ac0e-279b9b2c7919'),(152654,152652,NULL,8,3,NULL,'2021-04-23 06:51:46','2021-04-23 06:51:46',2,'661c780a-07b4-444d-ad66-e5a47894e195'),(152656,152652,NULL,8,3,NULL,'2021-04-23 06:51:46','2021-04-23 06:51:46',3,'89e45611-b836-4cce-ad0c-9bb16062b258'),(152660,152652,NULL,8,3,NULL,'2021-04-23 06:51:46','2021-04-23 06:51:46',4,'28e8e3fe-ef6f-4fe0-8a0a-bc25cf8ba0f2'),(152664,152652,NULL,8,3,NULL,'2021-04-23 06:51:46','2021-04-23 06:51:46',5,'e92c1155-c0d7-41da-8bed-36aade45f844'),(152667,152652,NULL,8,3,NULL,'2021-04-23 06:51:46','2021-04-23 06:51:46',6,'49313fc9-d8ea-43f6-8f3e-9483e9d8c23e'),(152670,152652,NULL,8,2,NULL,'2021-04-23 06:51:46','2021-04-23 06:51:46',7,'8f6363d2-1b12-499f-b88f-68b24589b6eb'),(152671,152652,NULL,8,3,NULL,'2021-04-23 06:51:46','2021-04-23 06:51:46',8,'c35e0e85-d2cb-49b6-94b1-76f536f3ee28'),(152672,152652,NULL,8,2,NULL,'2021-04-23 06:51:46','2021-04-23 06:51:46',9,'69d066ca-43de-4edf-8848-8e195840bd91'),(152673,152652,NULL,8,3,NULL,'2021-04-23 06:51:46','2021-04-23 06:51:46',10,'cddb8022-ded6-4776-8923-25c9faee11a5'),(152679,152678,NULL,8,2,NULL,'2021-04-23 06:51:51','2021-04-23 06:51:51',1,'a2eae277-aa97-4f68-85e3-3ddf1ee9a18c'),(152680,152678,NULL,8,3,NULL,'2021-04-23 06:51:51','2021-04-23 06:51:51',2,'5225a2f8-5f5f-4639-9f41-04e1f857c711'),(152682,152678,NULL,8,3,NULL,'2021-04-23 06:51:51','2021-04-23 06:51:51',3,'696e84d7-9207-4caa-9f9f-9a6a7543912a'),(152686,152678,NULL,8,3,NULL,'2021-04-23 06:51:51','2021-04-23 06:51:51',4,'887bd07e-10df-4220-a89f-6015016a1ff4'),(152690,152678,NULL,8,3,NULL,'2021-04-23 06:51:51','2021-04-23 06:51:51',5,'5bb24fbf-ee0c-4909-ad30-819d094dfc95'),(152693,152678,NULL,8,3,NULL,'2021-04-23 06:51:51','2021-04-23 06:51:51',6,'78c847aa-2a94-4ae4-a94d-3d54a31a408e'),(152696,152678,NULL,8,2,NULL,'2021-04-23 06:51:51','2021-04-23 06:51:51',7,'f49fc2d5-c85a-4b5e-b230-2180344568fe'),(152697,152678,NULL,8,3,NULL,'2021-04-23 06:51:51','2021-04-23 06:51:51',8,'f62f1612-34d0-4374-80a1-d4da6a752ec8'),(152698,152678,NULL,8,2,NULL,'2021-04-23 06:51:51','2021-04-23 06:51:51',9,'1ed6babf-1154-407a-a158-ce7832ce1e3f'),(152699,152678,NULL,8,3,NULL,'2021-04-23 06:51:51','2021-04-23 06:51:51',10,'09ae0b7c-e1fc-46ca-a51a-551899ce3441'),(152707,152706,NULL,8,2,NULL,'2021-04-23 22:47:55','2021-04-23 22:47:55',1,'5c5ad3ca-c351-445c-9bf4-14470cc64a3c'),(152708,152706,NULL,8,3,NULL,'2021-04-23 22:47:55','2021-04-23 22:47:55',2,'aae1a46d-77ae-4850-8734-a438b9e9e8a9'),(152710,152706,NULL,8,3,NULL,'2021-04-23 22:47:55','2021-04-23 22:47:55',3,'32bb18ee-4007-458c-8d6f-d0b3db8c5962'),(152711,152706,NULL,8,2,NULL,'2021-04-23 22:47:55','2021-04-23 22:47:55',4,'c43f2cbc-5799-44d6-b784-541ed720d3fe'),(152712,152706,NULL,8,3,NULL,'2021-04-23 22:47:55','2021-04-23 22:47:55',5,'36205cf2-601a-416f-81c5-8c6556f73e75'),(152716,152706,NULL,8,2,NULL,'2021-04-23 22:47:55','2021-04-23 22:47:55',6,'8f95ffd7-5920-4779-921e-656a13cfd3e7'),(152717,152706,NULL,8,3,NULL,'2021-04-23 22:47:55','2021-04-23 22:47:55',7,'47b698a9-0286-4d79-971c-0f22b2993792'),(152719,152706,NULL,8,2,NULL,'2021-04-23 22:47:55','2021-04-23 22:47:55',8,'8f4e6bc9-e834-481c-9421-de97362d19b0'),(152720,152706,NULL,8,3,NULL,'2021-04-23 22:47:55','2021-04-23 22:47:55',9,'c1d5c517-6f55-462f-a1e5-44b8335b4e52'),(152722,152706,NULL,8,3,NULL,'2021-04-23 22:47:55','2021-04-23 22:47:55',10,'0027b838-93b4-477c-90e0-f0991b6c44a5'),(152730,152706,NULL,8,3,NULL,'2021-04-23 22:47:55','2021-04-23 22:47:55',11,'1c38ec09-aaed-4136-b0fb-62a891313d8b'),(152734,152706,NULL,8,2,NULL,'2021-04-23 22:47:55','2021-04-23 22:47:55',12,'aec9fbc1-ae7a-47b8-8535-32f8262f0a15'),(152735,152706,NULL,8,3,NULL,'2021-04-23 22:47:55','2021-04-23 22:47:55',13,'71a0409e-f019-43af-b934-5615148988df'),(152739,152706,NULL,8,2,NULL,'2021-04-23 22:47:55','2021-04-23 22:47:55',14,'64a3b08a-bf77-4674-b0ac-7cc62ee577cd'),(152740,152706,NULL,8,3,NULL,'2021-04-23 22:47:55','2021-04-23 22:47:55',15,'bcbf4428-d3e0-4010-908d-39e25c69d482'),(152741,152706,NULL,8,7,NULL,'2021-04-23 22:47:55','2021-04-23 22:47:55',16,'81b90e67-e9dd-4321-a829-2aac75f7d0cb'),(152784,152783,NULL,8,2,NULL,'2021-04-27 03:55:07','2021-04-27 03:55:07',1,'08851697-3e41-4c0b-8776-8354ac30059f'),(152785,152783,NULL,8,5,NULL,'2021-04-27 03:55:07','2021-04-27 03:55:07',2,'ccd60215-f90a-4d46-9ac7-6b2b70e6b62f'),(152786,152783,NULL,8,2,NULL,'2021-04-27 03:55:07','2021-04-27 03:55:07',3,'54f2b3e4-f328-4244-bbd0-537a9a472d43'),(152787,152783,NULL,8,9,NULL,'2021-04-27 03:55:07','2021-04-27 03:55:07',4,'2342208f-5f27-4949-a6a7-b6223d0cb2d2'),(152789,152783,NULL,8,2,NULL,'2021-04-27 03:55:07','2021-04-27 03:55:07',5,'4416675e-4133-4484-bef9-a52a7e7dca88'),(152790,152783,NULL,8,3,NULL,'2021-04-27 03:55:07','2021-04-27 03:55:07',6,'bb3aa58d-4ac5-4dba-9fe1-2798fd728653'),(152791,152783,NULL,8,12,NULL,'2021-04-27 03:55:07','2021-04-27 03:55:07',7,'953f1c54-2fa0-4a2f-b004-4e982a7f2741'),(152792,152783,NULL,8,2,NULL,'2021-04-27 03:55:07','2021-04-27 03:55:07',8,'cc98487e-5271-43b7-ab89-c1743002d8eb'),(152793,152783,NULL,8,9,NULL,'2021-04-27 03:55:07','2021-04-27 03:55:07',9,'ecc09357-9f26-471e-a195-ae7925a4ee1e'),(152795,152783,NULL,8,9,NULL,'2021-04-27 03:55:07','2021-04-27 03:55:07',10,'b1936627-dbdc-45a7-99d0-0f0d134a5172'),(152797,152783,NULL,8,2,NULL,'2021-04-27 03:55:07','2021-04-27 03:55:07',11,'5961141a-d7df-43bd-983f-847a3192af6f'),(152798,152783,NULL,8,9,NULL,'2021-04-27 03:55:07','2021-04-27 03:55:07',12,'29d0ffcc-2c35-404f-a1dc-117a13e5607b'),(152847,152846,NULL,8,2,NULL,'2021-04-27 04:02:49','2021-04-27 04:02:49',1,'b9f5df12-cbdf-4987-8c6e-a526cc53e949'),(152848,152846,NULL,8,5,NULL,'2021-04-27 04:02:49','2021-04-27 04:02:49',2,'49141998-f5f0-41ff-ac07-200a893d6fc0'),(152849,152846,NULL,8,2,NULL,'2021-04-27 04:02:49','2021-04-27 04:02:49',3,'9e2ffd22-da06-48fb-8f29-cfaff4a33b32'),(152850,152846,NULL,8,9,NULL,'2021-04-27 04:02:49','2021-04-27 04:02:49',4,'eba1f2de-bcc9-4160-83d1-021a5479767c'),(152852,152846,NULL,8,2,NULL,'2021-04-27 04:02:49','2021-04-27 04:02:49',5,'e43cea0a-db5a-4099-a6cd-06b30b85106d'),(152853,152846,NULL,8,3,NULL,'2021-04-27 04:02:49','2021-04-27 04:02:49',6,'f5625afb-6afb-4f82-888b-f477249ee7db'),(152854,152846,NULL,8,12,NULL,'2021-04-27 04:02:49','2021-04-27 04:02:49',7,'5a94f1f5-6029-43ac-a14c-976cfcaa0cd7'),(152855,152846,NULL,8,2,NULL,'2021-04-27 04:02:49','2021-04-27 04:02:49',8,'524e4ab6-c893-4f92-824a-7ec7f03fc857'),(152856,152846,NULL,8,9,NULL,'2021-04-27 04:02:49','2021-04-27 04:02:49',9,'02b4f4f0-4113-42cc-9151-8c1c3f784228'),(152858,152846,NULL,8,9,NULL,'2021-04-27 04:02:49','2021-04-27 04:02:49',10,'7e70dcd6-8bd6-4794-9b43-8e3356c742aa'),(152861,152846,NULL,8,2,NULL,'2021-04-27 04:02:49','2021-04-27 04:02:49',11,'f0e378a1-f390-4b42-8dcb-d68d66a554e3'),(152862,152846,NULL,8,9,NULL,'2021-04-27 04:02:49','2021-04-27 04:02:49',12,'61ed8bb4-52ef-4c85-9140-727b9461c03d'),(152866,152865,NULL,8,2,NULL,'2021-04-27 04:04:43','2021-04-27 04:04:43',1,'cc0e5fc9-b275-4d62-bfb9-0b208fd52365'),(152867,152865,NULL,8,5,NULL,'2021-04-27 04:04:43','2021-04-27 04:04:43',2,'52d450ad-a9d2-4f80-a958-2e73915e1bee'),(152868,152865,NULL,8,2,NULL,'2021-04-27 04:04:43','2021-04-27 04:04:43',3,'acf8bebe-e5e1-48bb-8f73-845c892bade3'),(152869,152865,NULL,8,9,NULL,'2021-04-27 04:04:43','2021-04-27 04:04:43',4,'669065c1-8a7d-4da3-9f27-d6147283cbb4'),(152871,152865,NULL,8,2,NULL,'2021-04-27 04:04:43','2021-04-27 04:04:43',5,'c8ec4c2b-2dfd-409d-b3e6-46b952923399'),(152872,152865,NULL,8,3,NULL,'2021-04-27 04:04:43','2021-04-27 04:04:43',6,'bbf85f5a-0045-45ad-8ef2-f40445f9ffe5'),(152873,152865,NULL,8,12,NULL,'2021-04-27 04:04:43','2021-04-27 04:04:43',7,'8eabeccb-2d05-4279-8a2c-70d3c73e3618'),(152874,152865,NULL,8,2,NULL,'2021-04-27 04:04:43','2021-04-27 04:04:43',8,'f9046a14-0774-4c05-9fb0-53f12b11be8c'),(152875,152865,NULL,8,9,NULL,'2021-04-27 04:04:43','2021-04-27 04:04:43',9,'56fb6512-7bac-42e4-9655-e4fb452e101f'),(152877,152865,NULL,8,9,NULL,'2021-04-27 04:04:43','2021-04-27 04:04:43',10,'cb745496-1d55-4314-bfbb-05a6140947a5'),(152880,152865,NULL,8,2,NULL,'2021-04-27 04:04:43','2021-04-27 04:04:43',11,'0e6e7d81-970a-4b17-aa27-420079ff2802'),(152881,152865,NULL,8,9,NULL,'2021-04-27 04:04:43','2021-04-27 04:04:43',12,'425ff1db-e117-4b2c-b7ba-a833122760d1'),(152946,152945,NULL,8,2,NULL,'2021-04-27 04:50:29','2021-04-27 04:50:29',1,'33d8f1d3-e36d-4373-8574-f4833cacc9a5'),(152947,152945,NULL,8,5,NULL,'2021-04-27 04:50:29','2021-04-27 04:50:29',2,'c33970e4-762c-4e0f-9d6b-40cd247cc6d1'),(152948,152945,NULL,8,2,NULL,'2021-04-27 04:50:29','2021-04-27 04:50:29',3,'55bb96af-da43-4a1a-8572-2df1c6940c8e'),(152949,152945,NULL,8,9,NULL,'2021-04-27 04:50:29','2021-04-27 04:50:29',4,'82af97d6-139f-422c-b9d2-b59843697672'),(152951,152945,NULL,8,2,NULL,'2021-04-27 04:50:29','2021-04-27 04:50:29',5,'b041f9f8-7ad8-4c17-b247-f6496df68e71'),(152952,152945,NULL,8,3,NULL,'2021-04-27 04:50:29','2021-04-27 04:50:29',6,'dc858397-90ae-4e54-8039-9e124ada1b97'),(152953,152945,NULL,8,12,NULL,'2021-04-27 04:50:29','2021-04-27 04:50:29',7,'b5d44039-de8f-4839-965f-89ce480a7d36'),(152954,152945,NULL,8,2,NULL,'2021-04-27 04:50:29','2021-04-27 04:50:29',8,'e59cd22f-156b-4ff8-879e-a3ceaff52282'),(152955,152945,NULL,8,9,NULL,'2021-04-27 04:50:29','2021-04-27 04:50:29',9,'17ff3e74-5750-46ab-bd06-b740d52cd5dc'),(152957,152945,NULL,8,9,NULL,'2021-04-27 04:50:29','2021-04-27 04:50:29',10,'2e34959d-3ee3-42a9-bbc3-317a3e913e3c'),(152960,152945,NULL,8,2,NULL,'2021-04-27 04:50:29','2021-04-27 04:50:29',11,'34dbd335-6721-4be3-ba19-26b08b20846d'),(152961,152945,NULL,8,9,NULL,'2021-04-27 04:50:29','2021-04-27 04:50:29',12,'caecd5e3-284f-44f0-ba77-bf70a74ac129'),(152965,152964,NULL,8,2,NULL,'2021-04-27 04:50:35','2021-04-27 04:50:35',1,'79c53660-f027-4364-8a57-b1dbbb6838a1'),(152966,152964,NULL,8,5,NULL,'2021-04-27 04:50:35','2021-04-27 04:50:35',2,'6b00218b-3bd5-4daf-b268-ab1f1a7fd995'),(152967,152964,NULL,8,2,NULL,'2021-04-27 04:50:35','2021-04-27 04:50:35',3,'bcb4ed50-d9fc-48ab-afcc-92a9ffb4214e'),(152968,152964,NULL,8,9,NULL,'2021-04-27 04:50:35','2021-04-27 04:50:35',4,'96e1903c-33b0-42db-89b2-395fd103a842'),(152970,152964,NULL,8,2,NULL,'2021-04-27 04:50:35','2021-04-27 04:50:35',5,'dad8dbf8-8d68-40fc-9d37-1fad8a46e815'),(152971,152964,NULL,8,3,NULL,'2021-04-27 04:50:35','2021-04-27 04:50:35',6,'889c638a-c9bd-4cc6-a3e1-bb705bd03d14'),(152972,152964,NULL,8,12,NULL,'2021-04-27 04:50:35','2021-04-27 04:50:35',7,'d04196a1-dca6-4c18-b54f-96ae242483b5'),(152973,152964,NULL,8,2,NULL,'2021-04-27 04:50:35','2021-04-27 04:50:35',8,'40999ac8-6639-4748-ac71-1bd72cce348f'),(152974,152964,NULL,8,9,NULL,'2021-04-27 04:50:35','2021-04-27 04:50:35',9,'de73a14f-1946-42a9-9875-2f6f69b8201e'),(152976,152964,NULL,8,9,NULL,'2021-04-27 04:50:35','2021-04-27 04:50:35',10,'afb72804-b90f-481c-ba0a-8b132ba5d9a5'),(152979,152964,NULL,8,2,NULL,'2021-04-27 04:50:35','2021-04-27 04:50:35',11,'b50826db-8e5c-454a-83ae-9b754a2c2392'),(152980,152964,NULL,8,9,NULL,'2021-04-27 04:50:35','2021-04-27 04:50:35',12,'ad089161-5dec-45f8-a6f3-19ba3d8a96c7'),(152984,152983,NULL,8,2,NULL,'2021-04-27 04:56:30','2021-04-27 04:56:30',1,'e5364ce4-0139-4225-8376-e65e1ba57a1b'),(152985,152983,NULL,8,5,NULL,'2021-04-27 04:56:30','2021-04-27 04:56:30',2,'c1aa5a0f-edbb-43b7-b85e-712b0ee8eca9'),(152986,152983,NULL,8,2,NULL,'2021-04-27 04:56:30','2021-04-27 04:56:30',3,'bf1e43b5-a58d-433c-8d79-d31cc732fefc'),(152987,152983,NULL,8,9,NULL,'2021-04-27 04:56:30','2021-04-27 04:56:30',4,'e8b4a075-512f-4e40-9037-efc55526746d'),(152989,152983,NULL,8,2,NULL,'2021-04-27 04:56:30','2021-04-27 04:56:30',5,'5cb6f7b3-1aba-4078-b153-8446bb609462'),(152990,152983,NULL,8,3,NULL,'2021-04-27 04:56:30','2021-04-27 04:56:30',6,'397d15d4-ac7c-4937-b68f-8f8781c740e3'),(152991,152983,NULL,8,12,NULL,'2021-04-27 04:56:30','2021-04-27 04:56:30',7,'79776d34-6148-4ea2-bc29-c850ac273f53'),(152992,152983,NULL,8,2,NULL,'2021-04-27 04:56:30','2021-04-27 04:56:30',8,'b949d06d-ded6-40c3-bac0-ea65e0c1ed4b'),(152993,152983,NULL,8,9,NULL,'2021-04-27 04:56:30','2021-04-27 04:56:30',9,'3e9e6c43-ccbe-4fd5-a621-fc11ffa29d7f'),(152995,152983,NULL,8,9,NULL,'2021-04-27 04:56:30','2021-04-27 04:56:30',10,'5d1effa7-0d75-4996-a1d9-bb420da348b6'),(152998,152983,NULL,8,2,NULL,'2021-04-27 04:56:30','2021-04-27 04:56:30',11,'6592dc27-0b73-42a7-8ed8-81e87cd34f9f'),(152999,152983,NULL,8,9,NULL,'2021-04-27 04:56:30','2021-04-27 04:56:30',12,'30cbbeda-e79c-470d-85fe-5b01c24fe864'),(153037,153036,NULL,8,2,NULL,'2021-04-27 05:20:31','2021-04-27 05:20:31',1,'004ec784-146e-4c50-955c-2a957c02d276'),(153038,153036,NULL,8,3,NULL,'2021-04-27 05:20:31','2021-04-27 05:20:31',2,'9aa1b54f-da67-4e35-92c2-050430344475'),(153039,153036,NULL,8,2,NULL,'2021-04-27 05:20:31','2021-04-27 05:20:31',3,'f9e1bafc-c884-4632-a645-b3706f70d184'),(153040,153036,NULL,8,3,NULL,'2021-04-27 05:20:31','2021-04-27 05:20:31',4,'51da5498-6b1a-436c-909d-0d53f5cae031'),(153044,153036,NULL,8,2,NULL,'2021-04-27 05:20:31','2021-04-27 05:20:31',5,'61445987-b38e-4a26-89f8-39816aef94ab'),(153045,153036,NULL,8,3,NULL,'2021-04-27 05:20:31','2021-04-27 05:20:31',6,'44e2c672-11ab-4cea-bdda-c1adf93768b2'),(153146,153145,NULL,8,2,NULL,'2021-04-27 05:56:03','2021-04-27 05:56:03',1,'2cb08d04-68a9-4ca7-aa5e-eca8f3e459d9'),(153147,153145,NULL,8,3,NULL,'2021-04-27 05:56:03','2021-04-27 05:56:03',2,'94afe4cc-2ec9-4a45-b9e1-5525eea4e357'),(153152,153145,NULL,8,4,NULL,'2021-04-27 05:56:03','2021-04-27 05:56:03',3,'5fc2a527-f891-445e-9ada-f51c425259bf'),(153153,153145,NULL,8,3,NULL,'2021-04-27 05:56:03','2021-04-27 05:56:03',4,'d33902ae-c13c-435b-a4ef-414ad0067da7'),(153158,153145,NULL,8,4,NULL,'2021-04-27 05:56:03','2021-04-27 05:56:03',5,'293eb9d2-da53-4d9b-acde-47dc4c7a9fc3'),(153159,153145,NULL,8,3,NULL,'2021-04-27 05:56:03','2021-04-27 05:56:03',6,'3728b35b-40ff-42b8-a1da-73ed8527dad8'),(153163,153145,NULL,8,2,NULL,'2021-04-27 05:56:03','2021-04-27 05:56:03',7,'8bcdb638-733c-451a-a3d8-71678447d0e3'),(153164,153145,NULL,8,3,NULL,'2021-04-27 05:56:03','2021-04-27 05:56:03',8,'5e815df6-8b6f-46b4-8b44-0ba4d6401bef'),(153165,153145,NULL,8,2,NULL,'2021-04-27 05:56:03','2021-04-27 05:56:03',9,'ee1dd7bb-558a-4850-9b82-ca40ecace82f'),(153166,153145,NULL,8,3,NULL,'2021-04-27 05:56:03','2021-04-27 05:56:03',10,'fcccec70-67dd-417c-8b1f-6b962e6e872d'),(153167,153145,NULL,8,2,NULL,'2021-04-27 05:56:03','2021-04-27 05:56:03',11,'ac6b8100-c289-4cca-baeb-849808e075de'),(153168,153145,NULL,8,3,NULL,'2021-04-27 05:56:03','2021-04-27 05:56:03',12,'0e92a294-887d-4342-a70f-e737cc0ee89b'),(153170,153145,NULL,8,2,NULL,'2021-04-27 05:56:03','2021-04-27 05:56:03',13,'00986e35-726d-4709-975b-97f543044e66'),(153171,153145,NULL,8,3,NULL,'2021-04-27 05:56:03','2021-04-27 05:56:03',14,'f695624c-65bc-48e0-87f9-782ec6bd9cbe'),(153177,153145,NULL,8,2,NULL,'2021-04-27 05:56:03','2021-04-27 05:56:03',15,'71c5eb76-244b-4166-8e84-d790ff9fae1e'),(153178,153145,NULL,8,3,NULL,'2021-04-27 05:56:03','2021-04-27 05:56:03',16,'9f5643d5-d5f8-4453-a1ff-e3ff33813467'),(153179,153145,NULL,8,16,NULL,'2021-04-27 05:56:03','2021-04-27 05:56:03',17,'c4fef654-4cca-4f9c-82d0-c0cb816aa69b'),(153180,153145,NULL,8,2,NULL,'2021-04-27 05:56:03','2021-04-27 05:56:03',18,'00079a30-1461-4d47-97f4-6f9bddf7b93e'),(153181,153145,NULL,8,3,NULL,'2021-04-27 05:56:03','2021-04-27 05:56:03',19,'07c0ed33-df53-4a09-ae29-8de09b189c0a'),(153185,153145,NULL,8,3,NULL,'2021-04-27 05:56:04','2021-04-27 05:56:04',20,'c0f3b7af-9208-442d-b9f9-8ec88c99845e'),(153187,153186,NULL,8,2,NULL,'2021-04-27 05:56:10','2021-04-27 05:56:10',1,'2d87cb29-aa3b-407f-8100-811960fd36ad'),(153188,153186,NULL,8,3,NULL,'2021-04-27 05:56:10','2021-04-27 05:56:10',2,'9cae0db3-2ea2-4fe1-ab68-464454bda719'),(153193,153186,NULL,8,4,NULL,'2021-04-27 05:56:10','2021-04-27 05:56:10',3,'ba6fa80a-8fbb-46ba-8c25-019829929a44'),(153194,153186,NULL,8,3,NULL,'2021-04-27 05:56:10','2021-04-27 05:56:10',4,'927722e7-2d57-4cff-90cb-03a2fdf2a0bd'),(153199,153186,NULL,8,4,NULL,'2021-04-27 05:56:10','2021-04-27 05:56:10',5,'b49fcc89-aa60-455a-9971-9f54397b1184'),(153200,153186,NULL,8,3,NULL,'2021-04-27 05:56:10','2021-04-27 05:56:10',6,'92926036-96d6-4715-8bf1-4cace2d777ef'),(153204,153186,NULL,8,2,NULL,'2021-04-27 05:56:10','2021-04-27 05:56:10',7,'c2fcf8ad-8b89-414c-aea6-2e9667eda7ca'),(153205,153186,NULL,8,3,NULL,'2021-04-27 05:56:10','2021-04-27 05:56:10',8,'23a73cad-bb64-460a-b848-adafc4dffe07'),(153206,153186,NULL,8,2,NULL,'2021-04-27 05:56:10','2021-04-27 05:56:10',9,'571283c9-4939-4abe-bb3f-5220c568fb5f'),(153207,153186,NULL,8,3,NULL,'2021-04-27 05:56:10','2021-04-27 05:56:10',10,'a1a2cea7-16ca-4de6-96d8-2ceb6ac5302c'),(153208,153186,NULL,8,2,NULL,'2021-04-27 05:56:10','2021-04-27 05:56:10',11,'ec316577-151a-4728-beef-dd2295a71383'),(153209,153186,NULL,8,3,NULL,'2021-04-27 05:56:10','2021-04-27 05:56:10',12,'52a2a23a-82ae-4eb1-b2a6-4b6d2038591e'),(153211,153186,NULL,8,2,NULL,'2021-04-27 05:56:10','2021-04-27 05:56:10',13,'132c2235-38e3-48f9-96b7-c74e5cc669f4'),(153212,153186,NULL,8,3,NULL,'2021-04-27 05:56:10','2021-04-27 05:56:10',14,'13a18d9a-f99c-4508-bfdf-efcfb34a2221'),(153218,153186,NULL,8,2,NULL,'2021-04-27 05:56:10','2021-04-27 05:56:10',15,'62c7850f-0282-457e-a5f6-3cdabc06a619'),(153219,153186,NULL,8,3,NULL,'2021-04-27 05:56:10','2021-04-27 05:56:10',16,'2a42b389-3fd6-483d-bc68-1ac247399c38'),(153220,153186,NULL,8,16,NULL,'2021-04-27 05:56:10','2021-04-27 05:56:10',17,'a0bd2c61-def0-4680-9905-0fbf42643590'),(153221,153186,NULL,8,2,NULL,'2021-04-27 05:56:10','2021-04-27 05:56:10',18,'4939b70b-0c68-4eb4-a982-067f7a447f9a'),(153222,153186,NULL,8,3,NULL,'2021-04-27 05:56:10','2021-04-27 05:56:10',19,'b8ea2c52-099e-4b7b-872c-aa4ba151a6d0'),(153226,153186,NULL,8,3,NULL,'2021-04-27 05:56:11','2021-04-27 05:56:11',20,'6a70d1ff-94c2-4829-88ec-5a6b28ff8408'),(153228,153227,NULL,8,2,NULL,'2021-04-27 06:34:59','2021-04-27 06:34:59',1,'583be9cf-6663-4529-89a5-8051683f67ba'),(153229,153227,NULL,8,3,NULL,'2021-04-27 06:34:59','2021-04-27 06:34:59',2,'99fba390-b3b5-47c6-bfee-e0d787b7a2ff'),(153232,153227,NULL,8,2,NULL,'2021-04-27 06:34:59','2021-04-27 06:34:59',3,'467eebf9-eb0f-449f-adab-cb1a6ddd8772'),(153233,153227,NULL,8,3,NULL,'2021-04-27 06:34:59','2021-04-27 06:34:59',4,'d568b0f4-e377-4541-a106-80ee457a5a0d'),(153235,153227,NULL,8,2,NULL,'2021-04-27 06:34:59','2021-04-27 06:34:59',5,'330d386f-a8be-47af-9a60-d3041affb88c'),(153236,153227,NULL,8,3,NULL,'2021-04-27 06:34:59','2021-04-27 06:34:59',6,'831d5824-9bfd-475e-8336-f5b9c08c9f28'),(153238,153227,NULL,8,2,NULL,'2021-04-27 06:34:59','2021-04-27 06:34:59',7,'71387687-6cec-4172-a8f7-b99472195949'),(153239,153227,NULL,8,3,NULL,'2021-04-27 06:34:59','2021-04-27 06:34:59',8,'61af878d-b5f0-4748-8fac-bc34f535274d'),(153240,153227,NULL,8,16,NULL,'2021-04-27 06:34:59','2021-04-27 06:34:59',9,'917e1e05-b215-4954-b314-3d3a79425eb2'),(153241,153227,NULL,8,2,NULL,'2021-04-27 06:34:59','2021-04-27 06:34:59',10,'2cb91f72-8fa3-451c-93ef-4bc5a6124661'),(153242,153227,NULL,8,3,NULL,'2021-04-27 06:34:59','2021-04-27 06:34:59',11,'fa23c246-090c-4e31-97d3-7e9401436ac4'),(153244,153227,NULL,8,2,NULL,'2021-04-27 06:34:59','2021-04-27 06:34:59',12,'be982b58-10f3-439a-bb0a-617b42f8ae56'),(153245,153227,NULL,8,3,NULL,'2021-04-27 06:34:59','2021-04-27 06:34:59',13,'2c705f9d-7352-4e92-a671-99fe43c31dda'),(153247,153227,NULL,8,3,NULL,'2021-04-27 06:34:59','2021-04-27 06:34:59',14,'b27c14b5-271d-4ba7-97a9-1aa335684339'),(153249,153227,NULL,8,3,NULL,'2021-04-27 06:34:59','2021-04-27 06:34:59',15,'4a6fa776-180d-4b15-b6d4-b108687fb439'),(153251,153227,NULL,8,2,NULL,'2021-04-27 06:34:59','2021-04-27 06:34:59',16,'a95b8816-4a5f-4dcc-8a12-9668b489ef15'),(153252,153227,NULL,8,3,NULL,'2021-04-27 06:34:59','2021-04-27 06:34:59',17,'852f0c98-c18e-415a-a229-f1cbfa6652c8'),(153254,153227,NULL,8,3,NULL,'2021-04-27 06:34:59','2021-04-27 06:34:59',18,'e0bead3b-aa7c-49d0-8008-7844eaad580d'),(153256,153227,NULL,8,3,NULL,'2021-04-27 06:34:59','2021-04-27 06:34:59',19,'f4c08939-a28a-40a7-a0e8-ca6f66952d57'),(153258,153227,NULL,8,2,NULL,'2021-04-27 06:34:59','2021-04-27 06:34:59',20,'807f1918-d4b5-4ae6-bbd4-3a744e07e4d7'),(153259,153227,NULL,8,3,NULL,'2021-04-27 06:34:59','2021-04-27 06:34:59',21,'aa66ec0b-1d03-4f5c-a046-a63a005f92e3'),(153262,153227,NULL,8,2,NULL,'2021-04-27 06:34:59','2021-04-27 06:34:59',22,'e34c1957-096f-45d0-a180-40cead29fddd'),(153263,153227,NULL,8,15,NULL,'2021-04-27 06:34:59','2021-04-27 06:34:59',23,'e2c7ade5-5c70-4e5e-b32e-6d8274a3aab5'),(153265,153227,NULL,8,2,NULL,'2021-04-27 06:35:00','2021-04-27 06:35:00',24,'7d6111e6-d207-4d42-b82c-1be670b750f8'),(153266,153227,NULL,8,3,NULL,'2021-04-27 06:35:00','2021-04-27 06:35:00',25,'ae8d6fec-8c6b-4eea-8121-8b8935fa529e'),(153268,153227,NULL,8,3,NULL,'2021-04-27 06:35:00','2021-04-27 06:35:00',26,'b5494b83-b5a8-43b6-a266-a29597113b56'),(153435,153434,NULL,8,2,NULL,'2021-04-30 01:10:15','2021-04-30 01:10:15',1,'8e3dd335-f93d-4868-b777-fdc9784f8fdd'),(153436,153434,NULL,8,3,NULL,'2021-04-30 01:10:15','2021-04-30 01:10:15',2,'6a4d344d-d4d1-4135-a476-0fe3c628137f'),(153438,153434,NULL,8,3,NULL,'2021-04-30 01:10:15','2021-04-30 01:10:15',3,'238e716c-c56c-47ad-9409-92289089fb51'),(153443,153434,NULL,8,3,NULL,'2021-04-30 01:10:15','2021-04-30 01:10:15',4,'004dbf18-7732-44c4-9fef-808f3e4f691c'),(153447,153434,NULL,8,3,NULL,'2021-04-30 01:10:15','2021-04-30 01:10:15',5,'bf438eed-68d7-4403-bd84-f646632174e0'),(153450,153434,NULL,8,3,NULL,'2021-04-30 01:10:15','2021-04-30 01:10:15',6,'ffae475b-a408-481d-817a-f1dfc886d498'),(153453,153434,NULL,8,2,NULL,'2021-04-30 01:10:15','2021-04-30 01:10:15',7,'5ab1cf03-2422-4b5e-bac5-f98dea9dfa29'),(153454,153434,NULL,8,3,NULL,'2021-04-30 01:10:15','2021-04-30 01:10:15',8,'c41eee52-1251-41f4-b216-33a83d5e1b8a'),(153455,153434,NULL,8,2,NULL,'2021-04-30 01:10:15','2021-04-30 01:10:15',9,'e3498ea7-924f-4761-bfc4-06238d5711f7'),(153456,153434,NULL,8,3,NULL,'2021-04-30 01:10:15','2021-04-30 01:10:15',10,'67db6d9e-1417-4c8d-928c-8768fbc17b8a'),(153462,153461,NULL,8,2,NULL,'2021-04-30 01:10:21','2021-04-30 01:10:21',1,'a7fa5f59-a45d-4595-86d3-ea003ff2ccbc'),(153463,153461,NULL,8,3,NULL,'2021-04-30 01:10:21','2021-04-30 01:10:21',2,'963f1084-f6a6-414d-bd29-71890b192cbd'),(153465,153461,NULL,8,3,NULL,'2021-04-30 01:10:21','2021-04-30 01:10:21',3,'16596ad8-23bf-4e80-90ea-9a2f3b0b01b4'),(153470,153461,NULL,8,3,NULL,'2021-04-30 01:10:21','2021-04-30 01:10:21',4,'3fd01cc4-1401-46b4-96c5-920bc03de13e'),(153474,153461,NULL,8,3,NULL,'2021-04-30 01:10:21','2021-04-30 01:10:21',5,'f1af8c17-95db-4ff4-a85c-a2935e458e64'),(153477,153461,NULL,8,3,NULL,'2021-04-30 01:10:21','2021-04-30 01:10:21',6,'f9eae829-60be-4acc-aef9-80bf74382bb3'),(153480,153461,NULL,8,2,NULL,'2021-04-30 01:10:21','2021-04-30 01:10:21',7,'6e1fb905-0d60-4319-b67e-37b250274bcc'),(153481,153461,NULL,8,3,NULL,'2021-04-30 01:10:21','2021-04-30 01:10:21',8,'5f7929c6-3f50-48db-ac4a-307987c82590'),(153482,153461,NULL,8,2,NULL,'2021-04-30 01:10:21','2021-04-30 01:10:21',9,'16bac6c2-b6df-4cbf-bc30-5572a72eeeeb'),(153483,153461,NULL,8,3,NULL,'2021-04-30 01:10:21','2021-04-30 01:10:21',10,'77522307-c784-4b16-8125-0b694545dd63'),(153536,21115,NULL,8,2,0,'2021-04-30 01:18:19','2021-04-30 01:18:19',1,'ebf772ad-e604-41c0-88d6-1f4b36628419'),(153537,21115,NULL,8,3,0,'2021-04-30 01:18:19','2021-04-30 01:18:19',2,'38bf1679-af9d-4b57-a101-8ba80b3f04dd'),(153540,21115,NULL,8,2,0,'2021-04-30 01:18:19','2021-04-30 01:18:19',3,'c32b17da-c52f-486c-90c4-763c43d796ba'),(153541,21115,NULL,8,3,0,'2021-04-30 01:18:19','2021-04-30 01:18:19',4,'a7755859-a345-47cc-ba42-256e52771c66'),(153543,21115,NULL,8,2,0,'2021-04-30 01:18:19','2021-04-30 01:18:19',5,'7e0b95d6-3b4e-46f1-a28b-89627db3f6b2'),(153544,21115,NULL,8,3,0,'2021-04-30 01:18:19','2021-04-30 01:18:19',6,'c49ba741-fb9f-479e-8f50-1e51f703d8c2'),(153546,21115,NULL,8,2,0,'2021-04-30 01:18:19','2021-04-30 01:18:19',7,'27f3b6a4-e215-4603-914d-203489e53607'),(153547,21115,NULL,8,3,0,'2021-04-30 01:18:19','2021-04-30 01:18:19',8,'d60d2f0c-8368-4e96-bb26-492928b0c0c0'),(153548,21115,NULL,8,16,0,'2021-04-30 01:18:19','2021-04-30 01:18:19',9,'f4fd5056-d869-4218-b320-3d118e0f9d70'),(153549,21115,NULL,8,2,0,'2021-04-30 01:18:19','2021-04-30 01:18:19',10,'b7bee17e-bbbb-41cf-bbb6-cb4b81eb968c'),(153550,21115,NULL,8,3,0,'2021-04-30 01:18:19','2021-04-30 01:18:19',11,'d0ff0c02-e293-454f-9fc4-395e7cc822c1'),(153552,21115,NULL,8,2,0,'2021-04-30 01:18:19','2021-04-30 01:18:19',12,'8a1b3232-76d3-4edd-a618-c36e9adc5ae7'),(153553,21115,NULL,8,3,0,'2021-04-30 01:18:19','2021-04-30 01:18:19',13,'09d4cd53-888a-43ec-bf98-b1f6d299acf9'),(153555,21115,NULL,8,3,0,'2021-04-30 01:18:19','2021-04-30 01:18:19',14,'b7aeef0d-c93b-4ab0-9d52-26a7c1d7e51e'),(153557,21115,NULL,8,3,0,'2021-04-30 01:18:19','2021-04-30 01:18:19',15,'0359c80d-8cbd-4aa7-be4d-e8df41ed3895'),(153559,21115,NULL,8,2,0,'2021-04-30 01:18:19','2021-04-30 01:18:19',16,'0cd9c913-0c05-4bcb-be5a-14ffb26eac9a'),(153560,21115,NULL,8,3,0,'2021-04-30 01:18:19','2021-04-30 01:18:19',17,'20191df1-cae6-4624-904b-30b2348df153'),(153562,21115,NULL,8,3,0,'2021-04-30 01:18:19','2021-04-30 01:18:19',18,'f0fc895a-9059-4a64-a799-982bd9a80d4a'),(153564,21115,NULL,8,3,0,'2021-04-30 01:18:19','2021-04-30 01:18:19',19,'15c9418d-2b64-44cd-a070-ef04d4d9a892'),(153566,21115,NULL,8,2,0,'2021-04-30 01:18:19','2021-04-30 01:18:19',20,'1a89f1fd-2925-46e2-a26b-3dc9833cb800'),(153567,21115,NULL,8,3,0,'2021-04-30 01:18:19','2021-04-30 01:18:19',21,'ff245076-8d30-4ba2-abde-30f98a2dbfcc'),(153570,21115,NULL,8,2,0,'2021-04-30 01:18:19','2021-04-30 01:18:19',22,'d809485a-1a9f-4349-bcdf-bb779a1a213d'),(153571,21115,NULL,8,15,0,'2021-04-30 01:18:19','2021-04-30 01:18:19',23,'da36dc03-673c-4ffc-bfd7-297b925e8e8b'),(153573,21115,NULL,8,2,0,'2021-04-30 01:18:19','2021-04-30 01:18:19',24,'89f5edb2-4ae1-407d-88c0-c51f751a5585'),(153574,21115,NULL,8,3,0,'2021-04-30 01:18:19','2021-04-30 01:18:19',25,'b8adfad7-b930-487e-98d8-afda9bdf2875'),(153576,21115,NULL,8,3,0,'2021-04-30 01:18:19','2021-04-30 01:18:19',26,'0db72db6-0fe8-439f-94f9-8326487ebf27'),(153580,153579,NULL,8,2,NULL,'2021-04-30 01:18:20','2021-04-30 01:18:20',1,'3ee29bd6-d3de-4353-8e5f-5d35d5dd9f02'),(153581,153579,NULL,8,3,NULL,'2021-04-30 01:18:20','2021-04-30 01:18:20',2,'1b7483c9-bae0-47f0-8d1a-793d72b94358'),(153584,153579,NULL,8,2,NULL,'2021-04-30 01:18:20','2021-04-30 01:18:20',3,'94bcca7f-8be0-440c-a660-a4b37cb228b6'),(153585,153579,NULL,8,3,NULL,'2021-04-30 01:18:20','2021-04-30 01:18:20',4,'8a06cfad-97c3-4ae6-9326-358442bb7e46'),(153587,153579,NULL,8,2,NULL,'2021-04-30 01:18:20','2021-04-30 01:18:20',5,'c32c35ad-760c-4a10-b813-e8c1cc15a78d'),(153588,153579,NULL,8,3,NULL,'2021-04-30 01:18:20','2021-04-30 01:18:20',6,'c29743ea-2062-4173-b595-e6e2ecc5a400'),(153590,153579,NULL,8,2,NULL,'2021-04-30 01:18:20','2021-04-30 01:18:20',7,'a4f9c970-bbca-4ed3-8d0d-63b7bfbbc07d'),(153591,153579,NULL,8,3,NULL,'2021-04-30 01:18:20','2021-04-30 01:18:20',8,'12b34674-406a-4383-ab92-5250f7724250'),(153592,153579,NULL,8,16,NULL,'2021-04-30 01:18:20','2021-04-30 01:18:20',9,'bf8d5868-1d8d-40f3-8cb7-74bc10e74022'),(153593,153579,NULL,8,2,NULL,'2021-04-30 01:18:20','2021-04-30 01:18:20',10,'6ce468e0-d987-45bc-9522-36c70ba28a88'),(153594,153579,NULL,8,3,NULL,'2021-04-30 01:18:20','2021-04-30 01:18:20',11,'1af02b46-3a89-489c-95fc-af34268d1058'),(153596,153579,NULL,8,2,NULL,'2021-04-30 01:18:20','2021-04-30 01:18:20',12,'033c563a-c4f1-4f7d-bc6c-50b93c44e11c'),(153597,153579,NULL,8,3,NULL,'2021-04-30 01:18:20','2021-04-30 01:18:20',13,'97fa01de-3c8f-4b45-93d5-279970f656a3'),(153599,153579,NULL,8,3,NULL,'2021-04-30 01:18:20','2021-04-30 01:18:20',14,'649ac46d-a32c-4bae-9279-ae1c30f88975'),(153601,153579,NULL,8,3,NULL,'2021-04-30 01:18:21','2021-04-30 01:18:21',15,'96b12ad1-d38c-436c-a385-07b12a1828ab'),(153603,153579,NULL,8,2,NULL,'2021-04-30 01:18:21','2021-04-30 01:18:21',16,'4703aa24-d845-4501-aa8e-3b4c344fde1f'),(153604,153579,NULL,8,3,NULL,'2021-04-30 01:18:21','2021-04-30 01:18:21',17,'c94b4498-23e9-443a-83a3-6be1e5f2b2f3'),(153606,153579,NULL,8,3,NULL,'2021-04-30 01:18:21','2021-04-30 01:18:21',18,'979f0216-dc56-4f25-a578-c888965868ce'),(153608,153579,NULL,8,3,NULL,'2021-04-30 01:18:21','2021-04-30 01:18:21',19,'a3b49951-7d7a-44da-91dc-67fffae29540'),(153610,153579,NULL,8,2,NULL,'2021-04-30 01:18:21','2021-04-30 01:18:21',20,'3d8ab973-00f0-43e5-97b3-27b3c245eed0'),(153611,153579,NULL,8,3,NULL,'2021-04-30 01:18:21','2021-04-30 01:18:21',21,'e219f69f-2955-4230-a3a8-f903e32ccbb9'),(153614,153579,NULL,8,2,NULL,'2021-04-30 01:18:21','2021-04-30 01:18:21',22,'e7f5f8c2-a7f2-4310-8f15-b7d549eb28b7'),(153615,153579,NULL,8,15,NULL,'2021-04-30 01:18:21','2021-04-30 01:18:21',23,'eb4f0012-913b-4a75-be0d-5d25dd3c2727'),(153617,153579,NULL,8,2,NULL,'2021-04-30 01:18:21','2021-04-30 01:18:21',24,'757d2918-5193-44f3-8685-949b4bb66c46'),(153618,153579,NULL,8,3,NULL,'2021-04-30 01:18:21','2021-04-30 01:18:21',25,'14c2fb26-e603-4716-877a-7abd2ec57322'),(153620,153579,NULL,8,3,NULL,'2021-04-30 01:18:21','2021-04-30 01:18:21',26,'b84a6008-3b46-4ae0-a954-1d69669d1f48'),(153624,153623,NULL,8,2,NULL,'2021-04-30 01:19:58','2021-04-30 01:19:58',1,'a6eb6bd8-c870-46bc-9219-c07eb23547c8'),(153625,153623,NULL,8,3,NULL,'2021-04-30 01:19:58','2021-04-30 01:19:58',2,'a3363632-345c-459d-a9c5-0b3ee17fd10d'),(153628,153623,NULL,8,2,NULL,'2021-04-30 01:19:58','2021-04-30 01:19:58',3,'cfd4af71-7789-44aa-8710-71addd2a41b5'),(153629,153623,NULL,8,3,NULL,'2021-04-30 01:19:58','2021-04-30 01:19:58',4,'2431acda-f548-4b07-893e-dab70a9c7467'),(153631,153623,NULL,8,2,NULL,'2021-04-30 01:19:58','2021-04-30 01:19:58',5,'710fbc94-54a1-4bda-af13-269788e0ea01'),(153632,153623,NULL,8,3,NULL,'2021-04-30 01:19:58','2021-04-30 01:19:58',6,'6ff3ac43-6c77-437a-b929-2cb5b920a358'),(153634,153623,NULL,8,2,NULL,'2021-04-30 01:19:58','2021-04-30 01:19:58',7,'96f8a5a8-1cd9-4776-a8b2-a74ec91ac05e'),(153635,153623,NULL,8,3,NULL,'2021-04-30 01:19:58','2021-04-30 01:19:58',8,'c7348dc5-35d3-4a91-918d-72ee5691e0fa'),(153636,153623,NULL,8,16,NULL,'2021-04-30 01:19:58','2021-04-30 01:19:58',9,'03f85af7-c5b1-463e-a7bf-ac48eaacfaf9'),(153637,153623,NULL,8,2,NULL,'2021-04-30 01:19:58','2021-04-30 01:19:58',10,'a044ed27-ee90-4398-8266-8117502b2171'),(153638,153623,NULL,8,3,NULL,'2021-04-30 01:19:58','2021-04-30 01:19:58',11,'60e63421-d31b-43a0-a7dd-5ecb58a9ee73'),(153640,153623,NULL,8,2,NULL,'2021-04-30 01:19:58','2021-04-30 01:19:58',12,'b5d94d66-6540-498e-be8c-3b543b475169'),(153641,153623,NULL,8,3,NULL,'2021-04-30 01:19:58','2021-04-30 01:19:58',13,'6ecfca0c-b9bb-4c8c-aeb2-f16a2ea68d69'),(153643,153623,NULL,8,3,NULL,'2021-04-30 01:19:58','2021-04-30 01:19:58',14,'64c82bd7-521e-48e9-881c-0cdd574ad640'),(153645,153623,NULL,8,3,NULL,'2021-04-30 01:19:58','2021-04-30 01:19:58',15,'26311ddf-bf2d-4b34-80b3-a82d3740287e'),(153647,153623,NULL,8,2,NULL,'2021-04-30 01:19:58','2021-04-30 01:19:58',16,'8af25eee-1d0c-4f5c-87e5-572728957177'),(153648,153623,NULL,8,3,NULL,'2021-04-30 01:19:58','2021-04-30 01:19:58',17,'acb9c19e-d3cd-4d3b-a6a1-82f929fd4346'),(153650,153623,NULL,8,3,NULL,'2021-04-30 01:19:58','2021-04-30 01:19:58',18,'062f93ea-f958-485d-95d4-e4d8329b5fcc'),(153652,153623,NULL,8,3,NULL,'2021-04-30 01:19:58','2021-04-30 01:19:58',19,'10dcf9f7-f399-457a-9424-2a7cc305dce0'),(153654,153623,NULL,8,2,NULL,'2021-04-30 01:19:58','2021-04-30 01:19:58',20,'89a7493d-e19a-4f8d-9157-6bdc9f9af120'),(153655,153623,NULL,8,3,NULL,'2021-04-30 01:19:58','2021-04-30 01:19:58',21,'e83ec25f-058b-405f-9552-5daf2f94c41c'),(153658,153623,NULL,8,2,NULL,'2021-04-30 01:19:58','2021-04-30 01:19:58',22,'c9aa6ce2-1138-4b21-b4cc-ccabba193338'),(153659,153623,NULL,8,15,NULL,'2021-04-30 01:19:58','2021-04-30 01:19:58',23,'cecdbd7c-9fe6-4f6d-9158-51d0d7d9fcde'),(153661,153623,NULL,8,2,NULL,'2021-04-30 01:19:58','2021-04-30 01:19:58',24,'927ec0e1-54b8-4dba-b201-401aca64f481'),(153662,153623,NULL,8,3,NULL,'2021-04-30 01:19:58','2021-04-30 01:19:58',25,'2387e666-e835-4e9c-b50e-00b60602e137'),(153664,153623,NULL,8,3,NULL,'2021-04-30 01:19:58','2021-04-30 01:19:58',26,'68501c6a-feb3-4613-adf4-99365bf4078f'),(153668,153667,NULL,8,2,NULL,'2021-04-30 01:20:38','2021-04-30 01:20:38',1,'fa3f2dfd-2266-47d2-9a4c-e9dcfceb5872'),(153669,153667,NULL,8,15,NULL,'2021-04-30 01:20:38','2021-04-30 01:20:38',2,'e73e3d0f-f671-4879-803e-63a7f3896a5c'),(153673,153667,NULL,8,2,NULL,'2021-04-30 01:20:38','2021-04-30 01:20:38',3,'c67928ea-133c-4a0b-b5f7-2c126f121e24'),(153674,153667,NULL,8,18,NULL,'2021-04-30 01:20:38','2021-04-30 01:20:38',4,'be121cde-a735-4238-97ab-937abb99c28a'),(153675,153667,NULL,8,2,NULL,'2021-04-30 01:20:38','2021-04-30 01:20:38',5,'bd0cc766-6b2b-462e-b454-a3e0c85325f1'),(153676,153667,NULL,8,15,NULL,'2021-04-30 01:20:38','2021-04-30 01:20:38',6,'89798210-cc3e-4a69-a1d7-b1583c88271d'),(153680,153667,NULL,8,2,NULL,'2021-04-30 01:20:38','2021-04-30 01:20:38',7,'87764544-f577-468c-b587-60c8374e0fe9'),(153681,153667,NULL,8,17,NULL,'2021-04-30 01:20:38','2021-04-30 01:20:38',8,'8e149c90-6838-4e94-a1c7-43dd1c42b3a7'),(153682,153667,NULL,8,2,NULL,'2021-04-30 01:20:38','2021-04-30 01:20:38',9,'e06493f8-bce3-4e71-add2-9882467a9218'),(153683,153667,NULL,8,21,NULL,'2021-04-30 01:20:38','2021-04-30 01:20:38',10,'3c1af5f4-396d-4501-a56c-ce66042aa89c'),(153770,19204,NULL,8,2,0,'2021-04-30 02:02:29','2021-04-30 02:02:29',1,'a4835c84-b9f7-4528-b233-b0aea1bcbfb4'),(153771,19204,NULL,8,3,0,'2021-04-30 02:02:29','2021-04-30 02:02:29',2,'22ba966d-6238-4c66-9b35-480a4c8271c8'),(153772,19204,NULL,8,2,0,'2021-04-30 02:02:29','2021-04-30 02:02:29',3,'f5815137-61a9-4cd6-8dfb-42c1886fe8ce'),(153773,19204,NULL,8,3,0,'2021-04-30 02:02:29','2021-04-30 02:02:29',4,'4bf74457-ea5c-490b-ac12-b9b4961b438f'),(153774,19204,NULL,8,21,0,'2021-04-30 02:02:29','2021-04-30 02:02:29',5,'8178bf5d-4d13-4000-be61-7e252464fc30'),(153779,19204,NULL,8,2,0,'2021-04-30 02:02:30','2021-04-30 02:02:30',6,'bc334c6c-d4c3-488b-9302-2c19b3672222'),(153780,19204,NULL,8,3,0,'2021-04-30 02:02:30','2021-04-30 02:02:30',7,'caa98f0c-79a3-4854-9988-089860e1349b'),(153785,19204,NULL,8,3,0,'2021-04-30 02:02:30','2021-04-30 02:02:30',8,'91bd360d-8a05-4c76-8daf-a5dd5a847998'),(153790,19204,NULL,8,3,0,'2021-04-30 02:02:30','2021-04-30 02:02:30',9,'3508dcc7-1822-4e9c-9312-44cee6c5c7ca'),(153795,19204,NULL,8,3,0,'2021-04-30 02:02:30','2021-04-30 02:02:30',10,'39bdd9b0-e4e3-48af-b4a8-6dad10790289'),(153800,19204,NULL,8,3,0,'2021-04-30 02:02:30','2021-04-30 02:02:30',11,'5553a232-9955-4757-92ce-6807d4d21829'),(153805,19204,NULL,8,3,0,'2021-04-30 02:02:30','2021-04-30 02:02:30',12,'4e03226c-5b26-4226-8bad-11f1a49a08a0'),(153810,19204,NULL,8,3,0,'2021-04-30 02:02:30','2021-04-30 02:02:30',13,'f03de583-98b3-4ae5-9be2-b23fc00be05a'),(153815,19204,NULL,8,3,0,'2021-04-30 02:02:30','2021-04-30 02:02:30',14,'f1ba2925-6e8d-4742-8903-2fc50745f218'),(153819,19204,NULL,8,2,0,'2021-04-30 02:02:30','2021-04-30 02:02:30',15,'3e44035c-bcf7-4d30-bf90-c8a0aebd78ec'),(153820,19204,NULL,8,3,0,'2021-04-30 02:02:30','2021-04-30 02:02:30',16,'d2e51364-c81d-4f37-8b85-72784d399e49'),(153823,19204,NULL,8,3,0,'2021-04-30 02:02:30','2021-04-30 02:02:30',17,'5c0ee387-feca-4b4f-bfbc-343729fdaa42'),(153825,19204,NULL,8,2,0,'2021-04-30 02:02:30','2021-04-30 02:02:30',18,'da7a4813-8912-4650-81b6-28e2f488df35'),(153826,19204,NULL,8,3,0,'2021-04-30 02:02:30','2021-04-30 02:02:30',19,'2c32b630-2221-472c-9fdf-dc3b68ce9f1a'),(153827,19204,NULL,8,21,0,'2021-04-30 02:02:30','2021-04-30 02:02:30',20,'fc14073d-4aa1-4b02-b1d9-8d589c0950c2'),(153835,153834,NULL,8,2,NULL,'2021-04-30 02:02:32','2021-04-30 02:02:32',1,'83ca5976-f255-4c94-b1d5-10d6b95687e5'),(153836,153834,NULL,8,3,NULL,'2021-04-30 02:02:32','2021-04-30 02:02:32',2,'5ba50439-6f93-4d0e-add2-b8dc3c67feed'),(153837,153834,NULL,8,2,NULL,'2021-04-30 02:02:32','2021-04-30 02:02:32',3,'8c0bac6a-e9eb-4a2b-996f-218ba3f959df'),(153838,153834,NULL,8,3,NULL,'2021-04-30 02:02:32','2021-04-30 02:02:32',4,'1b2e7ac7-8a90-427b-9663-10712747a57e'),(153839,153834,NULL,8,21,NULL,'2021-04-30 02:02:32','2021-04-30 02:02:32',5,'fd467475-6233-452b-b005-ee4a00f60990'),(153844,153834,NULL,8,2,NULL,'2021-04-30 02:02:32','2021-04-30 02:02:32',6,'8528025d-d3a9-43a7-8a35-d8b4b803cd4c'),(153845,153834,NULL,8,3,NULL,'2021-04-30 02:02:32','2021-04-30 02:02:32',7,'223185a3-3d53-4cc7-a87a-4e011d7e9e8a'),(153850,153834,NULL,8,3,NULL,'2021-04-30 02:02:32','2021-04-30 02:02:32',8,'60aed814-0a6d-4dd3-927b-03b76dd21008'),(153855,153834,NULL,8,3,NULL,'2021-04-30 02:02:32','2021-04-30 02:02:32',9,'4352fb33-0be7-44c3-ad13-b8a7a48735ed'),(153860,153834,NULL,8,3,NULL,'2021-04-30 02:02:32','2021-04-30 02:02:32',10,'d49d1b00-afcd-4d9f-8ffa-3ceb6121055f'),(153865,153834,NULL,8,3,NULL,'2021-04-30 02:02:33','2021-04-30 02:02:33',11,'4e4f8fbc-8655-4657-8e9b-849b4ed67ee1'),(153870,153834,NULL,8,3,NULL,'2021-04-30 02:02:33','2021-04-30 02:02:33',12,'9c411834-64ff-4b23-ba63-d32285dfccef'),(153875,153834,NULL,8,3,NULL,'2021-04-30 02:02:33','2021-04-30 02:02:33',13,'0e2de298-68f2-4930-beb2-f3d4ae2d4d0a'),(153880,153834,NULL,8,3,NULL,'2021-04-30 02:02:33','2021-04-30 02:02:33',14,'0f2a1326-7480-4bbc-8e73-b160c9119c34'),(153884,153834,NULL,8,2,NULL,'2021-04-30 02:02:33','2021-04-30 02:02:33',15,'4d18fdd5-d2cd-4933-8ee6-f8a9b839a1c1'),(153885,153834,NULL,8,3,NULL,'2021-04-30 02:02:33','2021-04-30 02:02:33',16,'88789c74-ef53-4650-89de-d90ab646e39e'),(153888,153834,NULL,8,3,NULL,'2021-04-30 02:02:33','2021-04-30 02:02:33',17,'ef78f9bb-c102-4c91-8164-aa6711f64224'),(153890,153834,NULL,8,2,NULL,'2021-04-30 02:02:33','2021-04-30 02:02:33',18,'5d1a9c22-a367-4359-8007-411409569358'),(153891,153834,NULL,8,3,NULL,'2021-04-30 02:02:33','2021-04-30 02:02:33',19,'aa654cad-8ed0-4e4e-90b7-5676b5e574c3'),(153892,153834,NULL,8,21,NULL,'2021-04-30 02:02:33','2021-04-30 02:02:33',20,'7884a735-7a8d-472c-9317-c419bdeb7053'),(153900,153899,NULL,8,2,NULL,'2021-04-30 02:36:58','2021-04-30 02:36:58',1,'53f1cb1f-a0e5-4d8f-80b4-88908740e78c'),(153901,153899,NULL,8,3,NULL,'2021-04-30 02:36:58','2021-04-30 02:36:58',2,'4d6b88ff-ee11-4b78-83a8-9987e359487c'),(153902,153899,NULL,8,2,NULL,'2021-04-30 02:36:58','2021-04-30 02:36:58',3,'72614a98-1a16-47ca-b983-a3f9d466bbb8'),(153903,153899,NULL,8,3,NULL,'2021-04-30 02:36:58','2021-04-30 02:36:58',4,'e52181a9-12f4-4a30-b568-313daf457e41'),(153904,153899,NULL,8,21,NULL,'2021-04-30 02:36:58','2021-04-30 02:36:58',5,'3284be6f-a051-444e-9ada-ad8dc0926e94'),(153909,153899,NULL,8,2,NULL,'2021-04-30 02:36:59','2021-04-30 02:36:59',6,'b3970dc8-f637-41f5-9b6f-5bf35f96e3db'),(153910,153899,NULL,8,3,NULL,'2021-04-30 02:36:59','2021-04-30 02:36:59',7,'167a594a-f74b-41b6-a2bf-64bb4a14fcfb'),(153915,153899,NULL,8,3,NULL,'2021-04-30 02:36:59','2021-04-30 02:36:59',8,'f9a2c63f-ff3a-4e9a-a585-90666da46fb7'),(153920,153899,NULL,8,3,NULL,'2021-04-30 02:36:59','2021-04-30 02:36:59',9,'b7cbb4cb-7491-4c38-a6b2-b67af0fb2f05'),(153925,153899,NULL,8,3,NULL,'2021-04-30 02:36:59','2021-04-30 02:36:59',10,'54d390b6-71c1-4952-80dd-c4f70cbd19b3'),(153930,153899,NULL,8,3,NULL,'2021-04-30 02:36:59','2021-04-30 02:36:59',11,'08bb3ecf-7d8d-4189-bdbf-912d8f7d3939'),(153935,153899,NULL,8,3,NULL,'2021-04-30 02:36:59','2021-04-30 02:36:59',12,'dbdbb04d-f9a8-4360-bd1e-2532f58c0c50'),(153940,153899,NULL,8,3,NULL,'2021-04-30 02:36:59','2021-04-30 02:36:59',13,'5f55a3eb-b5a1-4b32-b63d-6185be4d4a67'),(153945,153899,NULL,8,3,NULL,'2021-04-30 02:36:59','2021-04-30 02:36:59',14,'5610cf4d-8fc3-4db3-8220-36956afcda93'),(153949,153899,NULL,8,2,NULL,'2021-04-30 02:36:59','2021-04-30 02:36:59',15,'275a114f-7f66-43a4-98c9-7db9d1620486'),(153950,153899,NULL,8,3,NULL,'2021-04-30 02:36:59','2021-04-30 02:36:59',16,'460f14b9-66b6-465e-bb7a-a204a87fd61c'),(153953,153899,NULL,8,3,NULL,'2021-04-30 02:36:59','2021-04-30 02:36:59',17,'9631099d-90de-452e-89f1-00701ee5d7e5'),(153955,153899,NULL,8,2,NULL,'2021-04-30 02:36:59','2021-04-30 02:36:59',18,'21ba3f99-6a02-4c04-ac44-d57770410125'),(153956,153899,NULL,8,3,NULL,'2021-04-30 02:36:59','2021-04-30 02:36:59',19,'be888671-017e-4849-a051-8d44a5172e2a'),(153957,153899,NULL,8,21,NULL,'2021-04-30 02:36:59','2021-04-30 02:36:59',20,'c7952c4d-df84-4eb8-85b3-7ad8b74f3a87'),(154004,154003,NULL,8,2,NULL,'2021-05-04 03:00:32','2021-05-04 03:00:32',1,'912231a8-b15e-4911-8655-dd5f7ff6cb47'),(154005,154003,NULL,8,3,NULL,'2021-05-04 03:00:32','2021-05-04 03:00:32',2,'07be4c06-ee2a-4955-ad8e-c8599d877f82'),(154006,154003,NULL,8,2,NULL,'2021-05-04 03:00:32','2021-05-04 03:00:32',3,'aa574a71-ff4f-4c02-89b4-4d907769bcdb'),(154007,154003,NULL,8,3,NULL,'2021-05-04 03:00:32','2021-05-04 03:00:32',4,'02b96352-4c18-4e89-bab7-c8f4707725a7'),(154010,154003,NULL,8,2,NULL,'2021-05-04 03:00:32','2021-05-04 03:00:32',5,'e086b087-de33-4262-b85e-89108c792376'),(154011,154003,NULL,8,3,NULL,'2021-05-04 03:00:32','2021-05-04 03:00:32',6,'bd394805-047e-4c9b-aa43-6628ed2ec7e4'),(154136,154135,NULL,8,2,NULL,'2021-05-05 04:37:23','2021-05-05 04:37:23',1,'70881dbd-71b8-4112-a875-7e2caafea628'),(154137,154135,NULL,8,3,NULL,'2021-05-05 04:37:23','2021-05-05 04:37:23',2,'3910d01e-2b6a-44d9-9086-39f7cc3e9077'),(154138,154135,NULL,8,16,NULL,'2021-05-05 04:37:23','2021-05-05 04:37:23',3,'c7611e31-abb6-4b73-bdd5-de9f3c3cb0e8'),(154139,154135,NULL,8,3,NULL,'2021-05-05 04:37:23','2021-05-05 04:37:23',4,'69fec941-0694-4a0b-8728-48604d1884fb'),(154140,154135,NULL,8,16,NULL,'2021-05-05 04:37:23','2021-05-05 04:37:23',5,'ea1d052e-f7db-4bb9-96cf-2659a28c6520'),(154141,154135,NULL,8,3,NULL,'2021-05-05 04:37:23','2021-05-05 04:37:23',6,'b2114297-7e0b-46d6-9884-df2b4899a51a'),(154142,154135,NULL,8,16,NULL,'2021-05-05 04:37:23','2021-05-05 04:37:23',7,'8d8e46a0-8206-4198-8370-e6dbfe42b1c9'),(154143,154135,NULL,8,3,NULL,'2021-05-05 04:37:23','2021-05-05 04:37:23',8,'20be5ff8-efdb-4d43-a98f-7dbbfc0404b3'),(154144,154135,NULL,8,2,NULL,'2021-05-05 04:37:23','2021-05-05 04:37:23',9,'9b50230b-f76d-47d3-a8d3-61b3626026f2'),(154145,154135,NULL,8,3,NULL,'2021-05-05 04:37:23','2021-05-05 04:37:23',10,'e64dc9a6-39f3-4108-a1e1-fbd596531cf1'),(154146,154135,NULL,8,7,NULL,'2021-05-05 04:37:23','2021-05-05 04:37:23',11,'0124910e-7e84-498c-a0bf-b91eb8bb44d9'),(154175,154174,NULL,8,2,NULL,'2021-05-06 05:06:57','2021-05-06 05:06:57',1,'f51db31e-37c8-44f4-91c8-0bafad20c1ef'),(154176,154174,NULL,8,3,NULL,'2021-05-06 05:06:57','2021-05-06 05:06:57',2,'df89aecf-d036-4c1d-a0a8-7ab1589cdda5'),(154177,154174,NULL,8,2,NULL,'2021-05-06 05:06:57','2021-05-06 05:06:57',3,'45e82a74-e149-42a1-a471-cae529fdc7dc'),(154178,154174,NULL,8,3,NULL,'2021-05-06 05:06:57','2021-05-06 05:06:57',4,'c72e9a6c-b864-4450-b952-64079e9e93ef'),(154179,154174,NULL,8,21,NULL,'2021-05-06 05:06:58','2021-05-06 05:06:58',5,'388ebef1-0c5d-4847-b9ee-03cb9cc9c8f1'),(154184,154174,NULL,8,2,NULL,'2021-05-06 05:06:58','2021-05-06 05:06:58',6,'d51dc326-6470-4b50-8065-4418cd7560ae'),(154185,154174,NULL,8,3,NULL,'2021-05-06 05:06:58','2021-05-06 05:06:58',7,'82528a5d-8934-4f49-8ac8-29a25ec3fd5c'),(154190,154174,NULL,8,3,NULL,'2021-05-06 05:06:58','2021-05-06 05:06:58',8,'71fdb666-6cde-491d-b840-d43ce42cde62'),(154195,154174,NULL,8,3,NULL,'2021-05-06 05:06:58','2021-05-06 05:06:58',9,'5a0bd636-49c8-4e5c-bb6a-83f5291b66dc'),(154200,154174,NULL,8,3,NULL,'2021-05-06 05:06:58','2021-05-06 05:06:58',10,'d72e7b75-9cab-40d4-a94f-f8c55b9a4a6f'),(154205,154174,NULL,8,3,NULL,'2021-05-06 05:06:58','2021-05-06 05:06:58',11,'efb29cab-b3c7-4c3e-9579-bb127ddd2334'),(154210,154174,NULL,8,3,NULL,'2021-05-06 05:06:58','2021-05-06 05:06:58',12,'504a7c2e-9c0d-40bc-b7df-176f1d622b91'),(154215,154174,NULL,8,3,NULL,'2021-05-06 05:06:58','2021-05-06 05:06:58',13,'98c8b641-425f-4d2e-a9d8-9e3be3822aac'),(154220,154174,NULL,8,3,NULL,'2021-05-06 05:06:58','2021-05-06 05:06:58',14,'520bf3fc-db00-4081-9c70-205b5aa9c5f9'),(154224,154174,NULL,8,2,NULL,'2021-05-06 05:06:58','2021-05-06 05:06:58',15,'196f2ebb-607d-4b35-ab8b-3b62a02e6312'),(154225,154174,NULL,8,3,NULL,'2021-05-06 05:06:58','2021-05-06 05:06:58',16,'5cb8f747-de1f-49af-a8e7-bdc37faeff85'),(154228,154174,NULL,8,3,NULL,'2021-05-06 05:06:58','2021-05-06 05:06:58',17,'5075d674-d0b9-40af-879a-e71a2c12adc9'),(154230,154174,NULL,8,2,NULL,'2021-05-06 05:06:58','2021-05-06 05:06:58',18,'0ce511c3-0cbc-4df6-8c3b-96228bfd2553'),(154231,154174,NULL,8,3,NULL,'2021-05-06 05:06:58','2021-05-06 05:06:58',19,'2c7e862b-c727-481e-9285-b17e557606f0'),(154232,154174,NULL,8,21,NULL,'2021-05-06 05:06:58','2021-05-06 05:06:58',20,'c881e675-8e26-4adf-9fd0-25b54d9caba0'),(154353,154352,NULL,8,2,NULL,'2021-05-07 00:42:02','2021-05-07 00:42:02',1,'dca41e52-1067-42a7-83e9-77b936719002'),(154354,154352,NULL,8,3,NULL,'2021-05-07 00:42:02','2021-05-07 00:42:02',2,'fd1f7194-4ee9-4895-8cda-baac00703261'),(154355,154352,NULL,8,2,NULL,'2021-05-07 00:42:02','2021-05-07 00:42:02',3,'c28b7ca9-aafe-4557-a3c6-3c2977110a1d'),(154356,154352,NULL,8,3,NULL,'2021-05-07 00:42:02','2021-05-07 00:42:02',4,'b4bab946-eb93-4364-acd8-e5ab3ff21b94'),(154360,154352,NULL,8,2,NULL,'2021-05-07 00:42:02','2021-05-07 00:42:02',5,'ba31be99-724b-4d42-a34e-ab4bfa07d693'),(154361,154352,NULL,8,3,NULL,'2021-05-07 00:42:02','2021-05-07 00:42:02',6,'6b64623a-6a4f-4b49-a98c-bad4775a2e93'),(154399,154398,NULL,8,2,NULL,'2021-05-07 01:05:28','2021-05-07 01:05:28',1,'e1ee1deb-86a0-4b07-88a0-4be6caed6997'),(154400,154398,NULL,8,3,NULL,'2021-05-07 01:05:28','2021-05-07 01:05:28',2,'5cdb6596-3f51-496b-a09e-e26f0eec573b'),(154401,154398,NULL,8,2,NULL,'2021-05-07 01:05:28','2021-05-07 01:05:28',3,'ccdbd9ce-1915-44ce-a89f-58e7ba18a2d6'),(154402,154398,NULL,8,15,NULL,'2021-05-07 01:05:28','2021-05-07 01:05:28',4,'2a7f8a9c-d0e2-42bc-a040-9cc1f7b61936'),(154403,154398,NULL,8,2,NULL,'2021-05-07 01:05:28','2021-05-07 01:05:28',5,'4a9181ee-9d84-4d29-8597-d518a103bc03'),(154404,154398,NULL,8,3,NULL,'2021-05-07 01:05:28','2021-05-07 01:05:28',6,'a29681b1-0589-4e1d-b6f7-d6f722a7263a'),(154405,154398,NULL,8,12,NULL,'2021-05-07 01:05:28','2021-05-07 01:05:28',7,'5e88bb4e-6d6a-401b-93e6-7c6e72a0bf71'),(154406,154398,NULL,8,3,NULL,'2021-05-07 01:05:28','2021-05-07 01:05:28',8,'a6d92340-45c9-4b16-90b2-ebcb17bac53f'),(154407,154398,NULL,8,12,NULL,'2021-05-07 01:05:28','2021-05-07 01:05:28',9,'6c1bc15e-7577-4271-a4b7-d8eb45399e77'),(154408,154398,NULL,8,3,NULL,'2021-05-07 01:05:28','2021-05-07 01:05:28',10,'19c35d54-d3d3-446c-848d-cfa553bb6b43'),(154409,154398,NULL,8,12,NULL,'2021-05-07 01:05:28','2021-05-07 01:05:28',11,'e68eec58-b14f-40c2-bcfe-e859bf7bada8'),(154410,154398,NULL,8,3,NULL,'2021-05-07 01:05:28','2021-05-07 01:05:28',12,'e0438bc8-eaf4-4756-bd04-186773a87356'),(154411,154398,NULL,8,12,NULL,'2021-05-07 01:05:28','2021-05-07 01:05:28',13,'3c0e5c98-e52f-4e16-a506-187136431519'),(154412,154398,NULL,8,2,NULL,'2021-05-07 01:05:28','2021-05-07 01:05:28',14,'95249496-cbbe-4e35-814f-fdbc927c6ea8'),(154413,154398,NULL,8,9,NULL,'2021-05-07 01:05:28','2021-05-07 01:05:28',15,'1cad019e-67a0-4aca-be77-4352f11c120c'),(154415,154414,NULL,8,2,NULL,'2021-05-07 01:05:38','2021-05-07 01:05:38',1,'82c8429c-8082-4567-afc6-69c3162f6be3'),(154416,154414,NULL,8,3,NULL,'2021-05-07 01:05:38','2021-05-07 01:05:38',2,'a0543579-2bd7-407a-a94c-9df5fc44853f'),(154417,154414,NULL,8,2,NULL,'2021-05-07 01:05:38','2021-05-07 01:05:38',3,'74250409-4ac2-4d16-91bc-894b4ef166b3'),(154418,154414,NULL,8,15,NULL,'2021-05-07 01:05:38','2021-05-07 01:05:38',4,'2ed13006-637f-48d8-bdbc-8612fa5f913c'),(154419,154414,NULL,8,2,NULL,'2021-05-07 01:05:38','2021-05-07 01:05:38',5,'2beeca2b-39a5-4b3d-af2c-689f77ce05a4'),(154420,154414,NULL,8,3,NULL,'2021-05-07 01:05:38','2021-05-07 01:05:38',6,'ac91f771-64e8-4876-ba2b-b439851c5e98'),(154421,154414,NULL,8,12,NULL,'2021-05-07 01:05:38','2021-05-07 01:05:38',7,'72800c66-c0b2-4b45-814b-5c9f7dbbd9d8'),(154422,154414,NULL,8,3,NULL,'2021-05-07 01:05:38','2021-05-07 01:05:38',8,'cfbd90fd-fb2e-4edf-a2ff-9953fd323015'),(154423,154414,NULL,8,12,NULL,'2021-05-07 01:05:38','2021-05-07 01:05:38',9,'f526e81e-11f4-4994-93a9-8208a7d5e11f'),(154424,154414,NULL,8,3,NULL,'2021-05-07 01:05:38','2021-05-07 01:05:38',10,'32339e65-3a86-46ed-89ef-b950272d938a'),(154425,154414,NULL,8,12,NULL,'2021-05-07 01:05:38','2021-05-07 01:05:38',11,'1df53604-1abd-4534-9c66-aaf51ede2bd8'),(154426,154414,NULL,8,3,NULL,'2021-05-07 01:05:38','2021-05-07 01:05:38',12,'c367daae-fe9c-4739-93b6-ce59d4c65a94'),(154427,154414,NULL,8,12,NULL,'2021-05-07 01:05:38','2021-05-07 01:05:38',13,'cae1fec7-25c1-42b8-9e5e-bf396b7b3119'),(154428,154414,NULL,8,2,NULL,'2021-05-07 01:05:38','2021-05-07 01:05:38',14,'7e61d064-abab-4534-b5cb-b83ee46eca6e'),(154429,154414,NULL,8,9,NULL,'2021-05-07 01:05:38','2021-05-07 01:05:38',15,'8f7a8518-47ad-42d5-898b-fa5650514393'),(155315,155313,NULL,8,2,0,'2021-05-07 05:30:12','2021-05-07 05:30:12',1,'c3c9138a-419c-4eab-910d-114270eb6811'),(155316,155313,NULL,8,3,0,'2021-05-07 05:30:12','2021-05-07 05:30:12',2,'f5636ed6-df01-4b60-9ddb-298fbcc7a01e'),(155318,155313,NULL,8,3,0,'2021-05-07 05:30:12','2021-05-07 05:30:12',3,'5044c686-de2b-47a2-8bff-f178d51b8cd9'),(155320,155313,NULL,8,2,0,'2021-05-07 05:30:12','2021-05-07 05:30:12',4,'90b2b6bd-e31d-4879-a1ff-3b57fc92a45f'),(155321,155313,NULL,8,3,0,'2021-05-07 05:30:12','2021-05-07 05:30:12',5,'a914e68c-34ff-4aed-b674-2f47b08ad069'),(155322,155313,NULL,8,21,0,'2021-05-07 05:30:12','2021-05-07 05:30:12',6,'88294ee8-ec04-4bd2-a938-8ffa5b8c969e'),(155329,155313,NULL,8,2,0,'2021-05-07 05:30:12','2021-05-07 05:30:12',7,'d203db15-f917-464c-833e-0a0846ce1d2b'),(155330,155313,NULL,8,3,0,'2021-05-07 05:30:12','2021-05-07 05:30:12',8,'a882fca0-d09d-45a4-8d5e-dce152d45edb'),(155335,155333,NULL,8,2,NULL,'2021-05-07 05:30:13','2021-05-07 05:30:13',1,'eb748dad-5f6b-4bcb-b5d5-b8dc6421ae81'),(155336,155333,NULL,8,3,NULL,'2021-05-07 05:30:13','2021-05-07 05:30:13',2,'09cb61c0-6134-4dfc-843f-39afdc4d909b'),(155338,155333,NULL,8,3,NULL,'2021-05-07 05:30:13','2021-05-07 05:30:13',3,'d01720c8-fb7b-4b40-8984-150ae2bd0183'),(155340,155333,NULL,8,2,NULL,'2021-05-07 05:30:13','2021-05-07 05:30:13',4,'ece93ded-ee0f-4033-93d5-02eb851d83bd'),(155341,155333,NULL,8,3,NULL,'2021-05-07 05:30:13','2021-05-07 05:30:13',5,'b9f85a9d-0809-44f6-9799-1171fcaaf11d'),(155342,155333,NULL,8,21,NULL,'2021-05-07 05:30:13','2021-05-07 05:30:13',6,'ea100a4a-02b4-4c67-9eae-43511586e91b'),(155349,155333,NULL,8,2,NULL,'2021-05-07 05:30:13','2021-05-07 05:30:13',7,'d508ce90-f216-4756-8463-788d917e746e'),(155350,155333,NULL,8,3,NULL,'2021-05-07 05:30:13','2021-05-07 05:30:13',8,'5f2b188a-d8b7-47bd-933a-2d0586b28411'),(156731,19204,NULL,8,2,NULL,'2021-05-07 05:36:38','2021-05-07 05:36:38',1,'5ccb6f06-54de-449f-b9d1-ddbd2b82ff8b'),(156732,19204,NULL,8,3,NULL,'2021-05-07 05:36:38','2021-05-07 05:36:38',2,'39b10597-3eb3-465f-9fa5-50a886e1841f'),(156733,19204,NULL,8,2,NULL,'2021-05-07 05:36:38','2021-05-07 05:36:38',3,'f9e3d3f6-95a4-4c23-96d4-a1bfa2567856'),(156734,19204,NULL,8,3,NULL,'2021-05-07 05:36:38','2021-05-07 05:36:38',4,'ee5a74f9-7ded-4e82-9029-32b7ce9bd9d2'),(156735,19204,NULL,8,21,NULL,'2021-05-07 05:36:38','2021-05-07 05:36:38',5,'edc2fb7f-1df9-4f25-b868-26bfb42e6f7f'),(156740,19204,NULL,8,2,NULL,'2021-05-07 05:36:38','2021-05-07 05:36:38',6,'77fbe6a9-67b7-4531-a559-91b36a1ba5f6'),(156741,19204,NULL,8,3,NULL,'2021-05-07 05:36:38','2021-05-07 05:36:38',7,'0fb8c31f-614f-4a9d-9d3e-1e824704fef4'),(156746,19204,NULL,8,3,NULL,'2021-05-07 05:36:38','2021-05-07 05:36:38',8,'ef4975f5-058b-4132-9d6b-5939365c255c'),(156751,19204,NULL,8,3,NULL,'2021-05-07 05:36:38','2021-05-07 05:36:38',9,'25aff684-a19c-4ab1-9e0b-3973ba27bfcb'),(156756,19204,NULL,8,3,NULL,'2021-05-07 05:36:38','2021-05-07 05:36:38',10,'11d27ff4-a4db-4155-a157-b16f4cbf6d8f'),(156761,19204,NULL,8,3,NULL,'2021-05-07 05:36:38','2021-05-07 05:36:38',11,'6d506172-24fc-4f87-a128-4121915c0537'),(156766,19204,NULL,8,3,NULL,'2021-05-07 05:36:38','2021-05-07 05:36:38',12,'2532cfcc-a133-4ffd-a225-14088e168d7b'),(156771,19204,NULL,8,3,NULL,'2021-05-07 05:36:38','2021-05-07 05:36:38',13,'20fe02a5-ad39-4a35-99ee-b5bc2dd43daf'),(156776,19204,NULL,8,3,NULL,'2021-05-07 05:36:38','2021-05-07 05:36:38',14,'565d5970-2c2d-45d9-8495-81776ff1a217'),(156780,19204,NULL,8,2,NULL,'2021-05-07 05:36:38','2021-05-07 05:36:38',15,'d7ff7b09-ab3f-4060-b1ee-a2362ae2d09d'),(156781,19204,NULL,8,3,NULL,'2021-05-07 05:36:38','2021-05-07 05:36:38',16,'ad09cd27-15a3-4cb1-988a-476150b0ada3'),(156784,19204,NULL,8,3,NULL,'2021-05-07 05:36:38','2021-05-07 05:36:38',17,'c40ffd05-f03a-4ee1-9772-64f40e02f86d'),(156786,19204,NULL,8,3,NULL,'2021-05-07 05:36:38','2021-05-07 05:36:38',18,'360ef5ac-ff8a-4311-bd0c-d7d06820dbcb'),(156788,19204,NULL,8,2,NULL,'2021-05-07 05:36:38','2021-05-07 05:36:38',19,'013c9aba-aae7-46bd-8e57-b08aeb9e9425'),(156789,19204,NULL,8,3,NULL,'2021-05-07 05:36:38','2021-05-07 05:36:38',20,'38d87e94-eb4f-465a-a1d0-61bd0211bc48'),(156790,19204,NULL,8,21,NULL,'2021-05-07 05:36:38','2021-05-07 05:36:38',21,'4e74f66e-f6d1-4094-a00b-7be4966e141d'),(156798,156797,NULL,8,2,NULL,'2021-05-07 05:36:41','2021-05-07 05:36:41',1,'6846d145-1669-43ed-a8bb-3b7b9719e330'),(156799,156797,NULL,8,3,NULL,'2021-05-07 05:36:41','2021-05-07 05:36:41',2,'a186cc99-01fc-4f7e-accf-51e05845a2c0'),(156800,156797,NULL,8,2,NULL,'2021-05-07 05:36:41','2021-05-07 05:36:41',3,'82689000-2f45-4bfe-a517-911e6db6c8eb'),(156801,156797,NULL,8,3,NULL,'2021-05-07 05:36:41','2021-05-07 05:36:41',4,'99aa101e-c2b9-4f72-8d19-b4741bc00e22'),(156802,156797,NULL,8,21,NULL,'2021-05-07 05:36:41','2021-05-07 05:36:41',5,'82f9dee1-d04c-452d-91c3-5d5d302edab1'),(156807,156797,NULL,8,2,NULL,'2021-05-07 05:36:41','2021-05-07 05:36:41',6,'ba6cab78-c615-4f56-ad6b-886530011d9a'),(156808,156797,NULL,8,3,NULL,'2021-05-07 05:36:41','2021-05-07 05:36:41',7,'6774e342-ad57-4c17-8470-d2bf35006208'),(156813,156797,NULL,8,3,NULL,'2021-05-07 05:36:41','2021-05-07 05:36:41',8,'808fb557-6ab1-4ab4-b137-401be63d798b'),(156818,156797,NULL,8,3,NULL,'2021-05-07 05:36:41','2021-05-07 05:36:41',9,'b63cf93a-247a-4f6f-82ab-563138abf907'),(156823,156797,NULL,8,3,NULL,'2021-05-07 05:36:41','2021-05-07 05:36:41',10,'76d62651-c311-41e8-9889-efe325e60cbb'),(156828,156797,NULL,8,3,NULL,'2021-05-07 05:36:41','2021-05-07 05:36:41',11,'7d933847-9a6a-4e01-96ff-67cfe20948d5'),(156833,156797,NULL,8,3,NULL,'2021-05-07 05:36:41','2021-05-07 05:36:41',12,'067912b2-cd9e-4d9e-a38d-b9e81d2c8ea3'),(156838,156797,NULL,8,3,NULL,'2021-05-07 05:36:41','2021-05-07 05:36:41',13,'0fa518dd-9acb-4c98-861d-e0e3aca143d2'),(156843,156797,NULL,8,3,NULL,'2021-05-07 05:36:41','2021-05-07 05:36:41',14,'d6044d41-037b-4988-8d6f-0fff73633d05'),(156847,156797,NULL,8,2,NULL,'2021-05-07 05:36:41','2021-05-07 05:36:41',15,'e688d832-a2d1-49c3-9827-c2e6b26c2c96'),(156848,156797,NULL,8,3,NULL,'2021-05-07 05:36:41','2021-05-07 05:36:41',16,'1da4d9c7-16a2-48db-a5d7-46b2e2c51da6'),(156851,156797,NULL,8,3,NULL,'2021-05-07 05:36:41','2021-05-07 05:36:41',17,'c95ac665-375f-4a77-8e1d-ea71f7abee94'),(156853,156797,NULL,8,3,NULL,'2021-05-07 05:36:41','2021-05-07 05:36:41',18,'76d899a4-6362-4301-8b4c-b91bb66fca9d'),(156855,156797,NULL,8,2,NULL,'2021-05-07 05:36:41','2021-05-07 05:36:41',19,'312607ac-cded-445a-b280-dd0d4567915d'),(156856,156797,NULL,8,3,NULL,'2021-05-07 05:36:41','2021-05-07 05:36:41',20,'6456ad51-a298-4b2f-975c-eeadd19b81e1'),(156857,156797,NULL,8,21,NULL,'2021-05-07 05:36:41','2021-05-07 05:36:41',21,'03a192d4-57e2-42c4-853c-f25ad86cdbfb'),(156866,156864,NULL,8,2,NULL,'2021-05-07 05:36:45','2021-05-07 05:36:45',1,'14687288-fb97-4082-8e80-d9df81bd967d'),(156867,156864,NULL,8,3,NULL,'2021-05-07 05:36:45','2021-05-07 05:36:45',2,'b063db6b-6a59-496d-9216-4a70283bebd4'),(156869,156864,NULL,8,3,NULL,'2021-05-07 05:36:45','2021-05-07 05:36:45',3,'ea6f7464-560b-4867-80f8-cd421ffb2e23'),(156871,156864,NULL,8,2,NULL,'2021-05-07 05:36:45','2021-05-07 05:36:45',4,'58050d6d-5357-460d-8eb3-13127b63d2c2'),(156872,156864,NULL,8,3,NULL,'2021-05-07 05:36:45','2021-05-07 05:36:45',5,'f8f53c3f-0bfc-4383-ab87-413d1a17ad41'),(156873,156864,NULL,8,21,NULL,'2021-05-07 05:36:45','2021-05-07 05:36:45',6,'38b1dfb4-03cc-480e-b532-4f0bd5565814'),(156880,156864,NULL,8,2,NULL,'2021-05-07 05:36:45','2021-05-07 05:36:45',7,'9656f304-a9e7-489e-b0c2-02f7a1c2a2de'),(156881,156864,NULL,8,3,NULL,'2021-05-07 05:36:45','2021-05-07 05:36:45',8,'18c77497-a24e-417b-9701-0f43ee60866e'),(156938,156937,NULL,8,2,NULL,'2021-05-07 05:59:08','2021-05-07 05:59:08',1,'efc6ff3c-c030-4c9d-8f25-84d62e467a5d'),(156939,156937,NULL,8,3,NULL,'2021-05-07 05:59:08','2021-05-07 05:59:08',2,'22ac58ae-1d9f-4a72-9fab-7d518893c03e'),(156941,156937,NULL,8,3,NULL,'2021-05-07 05:59:08','2021-05-07 05:59:08',3,'6ba9b7af-77d9-4020-b490-1546b54ff64f'),(156946,156937,NULL,8,3,NULL,'2021-05-07 05:59:08','2021-05-07 05:59:08',4,'36a2bedc-256c-4ff1-9493-bea72adf0648'),(156950,156937,NULL,8,3,NULL,'2021-05-07 05:59:08','2021-05-07 05:59:08',5,'ca30f76f-ad7e-4fca-a506-752dbfeb4f04'),(156953,156937,NULL,8,3,NULL,'2021-05-07 05:59:09','2021-05-07 05:59:09',6,'23fc9c4c-b07a-41f2-be43-ff6f201e7745'),(156956,156937,NULL,8,2,NULL,'2021-05-07 05:59:09','2021-05-07 05:59:09',7,'7f8e3c60-639d-4826-98d7-2bfc29a1897b'),(156957,156937,NULL,8,3,NULL,'2021-05-07 05:59:09','2021-05-07 05:59:09',8,'6d4a33de-9a5e-4ab0-be07-82311538b7c1'),(156958,156937,NULL,8,2,NULL,'2021-05-07 05:59:09','2021-05-07 05:59:09',9,'02d57286-a334-4b90-b899-16ccbc88cb44'),(156959,156937,NULL,8,3,NULL,'2021-05-07 05:59:09','2021-05-07 05:59:09',10,'a010fe52-1512-4b5c-a6f9-6c3207c378f7'),(156965,156964,NULL,8,2,NULL,'2021-05-07 05:59:30','2021-05-07 05:59:30',1,'5443ecff-d2ed-43a0-9520-493472c7c3ae'),(156966,156964,NULL,8,3,NULL,'2021-05-07 05:59:31','2021-05-07 05:59:31',2,'33af361c-f4cf-45b4-8992-a8aa5322927f'),(156968,156964,NULL,8,3,NULL,'2021-05-07 05:59:31','2021-05-07 05:59:31',3,'7cceb9ef-d481-44b1-924c-92cab8e06e3a'),(156973,156964,NULL,8,3,NULL,'2021-05-07 05:59:31','2021-05-07 05:59:31',4,'e3b321e6-0320-4223-859d-c50d86940200'),(156977,156964,NULL,8,3,NULL,'2021-05-07 05:59:31','2021-05-07 05:59:31',5,'ce1ad12c-90a6-451d-b1b7-52de71ecf954'),(156980,156964,NULL,8,3,NULL,'2021-05-07 05:59:31','2021-05-07 05:59:31',6,'44e8929c-666b-4682-acd4-6fe5c609a19b'),(156983,156964,NULL,8,2,NULL,'2021-05-07 05:59:31','2021-05-07 05:59:31',7,'0299fd16-8f61-46fd-b21e-bda82432e6b0'),(156984,156964,NULL,8,3,NULL,'2021-05-07 05:59:31','2021-05-07 05:59:31',8,'5770f4a6-f2c0-4dd5-bff2-1044949bff4f'),(156985,156964,NULL,8,2,NULL,'2021-05-07 05:59:31','2021-05-07 05:59:31',9,'3bc1f928-d923-46ff-9ece-7558f9ffcfbf'),(156986,156964,NULL,8,3,NULL,'2021-05-07 05:59:31','2021-05-07 05:59:31',10,'4b970602-2d50-4825-9911-ff82aac4aa87'),(157010,157009,NULL,8,2,NULL,'2021-05-10 00:44:05','2021-05-10 00:44:05',1,'c000e667-36fc-4b8f-80a0-e1cad8ef16fa'),(157011,157009,NULL,8,3,NULL,'2021-05-10 00:44:05','2021-05-10 00:44:05',2,'ad0e2e2a-aceb-4501-83aa-62dcac2a10c5'),(157012,157009,NULL,8,2,NULL,'2021-05-10 00:44:05','2021-05-10 00:44:05',3,'48d63c9a-27d4-4a67-a14d-86a30b0ed862'),(157013,157009,NULL,8,15,NULL,'2021-05-10 00:44:05','2021-05-10 00:44:05',4,'8054a59f-e6d3-4213-9a59-b653ecc50a11'),(157014,157009,NULL,8,2,NULL,'2021-05-10 00:44:05','2021-05-10 00:44:05',5,'dd834f11-e5d7-42dd-8a4e-bbaffa125742'),(157015,157009,NULL,8,3,NULL,'2021-05-10 00:44:05','2021-05-10 00:44:05',6,'dc82afec-d84a-47c9-8ebd-8c0a11097fd3'),(157016,157009,NULL,8,12,NULL,'2021-05-10 00:44:05','2021-05-10 00:44:05',7,'fe743dbb-81c5-42ac-9f7e-89b72f65fe38'),(157017,157009,NULL,8,3,NULL,'2021-05-10 00:44:05','2021-05-10 00:44:05',8,'ed4fdad1-f11b-4bc6-905d-0d2ebb05cabd'),(157018,157009,NULL,8,12,NULL,'2021-05-10 00:44:05','2021-05-10 00:44:05',9,'e0baef5c-a4f5-4665-a189-1f272521ee54'),(157019,157009,NULL,8,3,NULL,'2021-05-10 00:44:05','2021-05-10 00:44:05',10,'cb945728-067a-4b25-9922-f047f582e922'),(157020,157009,NULL,8,12,NULL,'2021-05-10 00:44:05','2021-05-10 00:44:05',11,'42723cf8-9b8e-4fd1-848d-dffe01573524'),(157021,157009,NULL,8,3,NULL,'2021-05-10 00:44:05','2021-05-10 00:44:05',12,'961ff54f-13ef-4ed5-84fe-e2cec3e7d0cc'),(157022,157009,NULL,8,12,NULL,'2021-05-10 00:44:05','2021-05-10 00:44:05',13,'0a07655b-403d-4561-afdc-ba1dbd31709c'),(157023,157009,NULL,8,2,NULL,'2021-05-10 00:44:05','2021-05-10 00:44:05',14,'b7061e3b-3f2e-498f-b422-448f725454ba'),(157024,157009,NULL,8,9,NULL,'2021-05-10 00:44:05','2021-05-10 00:44:05',15,'a799d844-02c3-417c-a3ee-fe1ec886dafc'),(157026,157025,NULL,8,2,NULL,'2021-05-10 00:45:49','2021-05-10 00:45:49',1,'22771fd5-05a3-418b-a97f-947130e148a5'),(157027,157025,NULL,8,9,NULL,'2021-05-10 00:45:49','2021-05-10 00:45:49',2,'529670a5-0db9-4030-950b-938ab65b2461'),(157028,157025,NULL,8,2,NULL,'2021-05-10 00:45:49','2021-05-10 00:45:49',3,'885fbfe1-fda8-4a92-a19f-46264e679e05'),(157029,157025,NULL,8,3,NULL,'2021-05-10 00:45:49','2021-05-10 00:45:49',4,'814ef0cc-6c00-4a94-a6da-88c707d6bda2'),(157030,157025,NULL,8,12,NULL,'2021-05-10 00:45:49','2021-05-10 00:45:49',5,'812e6eaa-9325-4655-b3ea-76c0465a639f'),(157031,157025,NULL,8,2,NULL,'2021-05-10 00:45:49','2021-05-10 00:45:49',6,'41861681-8fe8-4dad-8177-a41c0174b152'),(157032,157025,NULL,8,3,NULL,'2021-05-10 00:45:49','2021-05-10 00:45:49',7,'faa9f41a-52b2-4916-94a4-69574a068e57'),(157033,157025,NULL,8,5,NULL,'2021-05-10 00:45:49','2021-05-10 00:45:49',8,'951cca30-35e5-44e3-bee7-a2b664436dae'),(157034,157025,NULL,8,2,NULL,'2021-05-10 00:45:49','2021-05-10 00:45:49',9,'4b802227-61a9-4445-bceb-a25662f7c7b4'),(157035,157025,NULL,8,9,NULL,'2021-05-10 00:45:49','2021-05-10 00:45:49',10,'1d0ea136-e2dc-42cc-9ea0-c25736e02773'),(157129,157128,NULL,8,2,NULL,'2021-05-10 23:12:00','2021-05-10 23:12:00',1,'61191d88-f68b-4cf6-ae79-7519cdbb4a23'),(157130,157128,NULL,8,3,NULL,'2021-05-10 23:12:00','2021-05-10 23:12:00',2,'a80f42ab-0baa-46cf-80ca-93c91de5867b'),(157135,157128,NULL,8,4,NULL,'2021-05-10 23:12:00','2021-05-10 23:12:00',3,'103db3f3-2a3a-42ff-95b0-1e03fd2dde8e'),(157136,157128,NULL,8,3,NULL,'2021-05-10 23:12:00','2021-05-10 23:12:00',4,'9fba9c62-da43-4db2-9220-bc967fb439dc'),(157141,157128,NULL,8,4,NULL,'2021-05-10 23:12:00','2021-05-10 23:12:00',5,'010baede-23df-4971-8666-21c092ad40f8'),(157142,157128,NULL,8,3,NULL,'2021-05-10 23:12:00','2021-05-10 23:12:00',6,'1e58fc0a-58f1-4bdc-9d46-58ee71f6cf47'),(157146,157128,NULL,8,2,NULL,'2021-05-10 23:12:00','2021-05-10 23:12:00',7,'0308d924-3fbc-4596-9a9b-f1caca14064c'),(157147,157128,NULL,8,3,NULL,'2021-05-10 23:12:00','2021-05-10 23:12:00',8,'d87b47cd-5a26-468c-a804-0e4176f5818c'),(157148,157128,NULL,8,2,NULL,'2021-05-10 23:12:00','2021-05-10 23:12:00',9,'4d51a68b-64b8-470d-ad0e-d6b3c6100376'),(157149,157128,NULL,8,3,NULL,'2021-05-10 23:12:00','2021-05-10 23:12:00',10,'daeba797-8dd0-43fd-9012-925b620e3766'),(157150,157128,NULL,8,2,NULL,'2021-05-10 23:12:00','2021-05-10 23:12:00',11,'608fad2d-a438-4417-961f-783e5349d9de'),(157151,157128,NULL,8,3,NULL,'2021-05-10 23:12:00','2021-05-10 23:12:00',12,'3d4f341f-5442-42f1-8700-d4b770723fb8'),(157153,157128,NULL,8,2,NULL,'2021-05-10 23:12:00','2021-05-10 23:12:00',13,'94827efa-65ec-413e-b13a-1cf27152bd25'),(157154,157128,NULL,8,3,NULL,'2021-05-10 23:12:00','2021-05-10 23:12:00',14,'068e83c1-cf82-4a39-978e-90abb6ea66fd'),(157160,157128,NULL,8,2,NULL,'2021-05-10 23:12:00','2021-05-10 23:12:00',15,'9f6bcb71-3b74-4162-9f2c-f515beba287d'),(157161,157128,NULL,8,3,NULL,'2021-05-10 23:12:00','2021-05-10 23:12:00',16,'01e8b56d-4342-46b7-a4a3-2e69c06756d7'),(157162,157128,NULL,8,16,NULL,'2021-05-10 23:12:00','2021-05-10 23:12:00',17,'76ab90ec-126a-4dc9-844b-bb28ae20da60'),(157163,157128,NULL,8,2,NULL,'2021-05-10 23:12:00','2021-05-10 23:12:00',18,'ddb4f231-eb0d-4f66-9d76-f573ee22b87c'),(157164,157128,NULL,8,3,NULL,'2021-05-10 23:12:00','2021-05-10 23:12:00',19,'bacdec2d-7948-483a-a5e1-7f56f1c70134'),(157168,157128,NULL,8,3,NULL,'2021-05-10 23:12:00','2021-05-10 23:12:00',20,'d1ecebc2-8894-41f1-bb1d-7d8a47fb976a'),(157170,157169,NULL,8,2,NULL,'2021-05-10 23:12:09','2021-05-10 23:12:09',1,'8b84143e-a252-4f90-84ec-9d1bd28510e9'),(157171,157169,NULL,8,3,NULL,'2021-05-10 23:12:09','2021-05-10 23:12:09',2,'ede8e36f-0b18-4583-a893-b8e04e9e857f'),(157176,157169,NULL,8,4,NULL,'2021-05-10 23:12:09','2021-05-10 23:12:09',3,'544db6ae-92b4-4770-970f-95b5a83809d5'),(157177,157169,NULL,8,3,NULL,'2021-05-10 23:12:09','2021-05-10 23:12:09',4,'9067cb8b-7978-4f8b-8714-e8bf3a584696'),(157182,157169,NULL,8,4,NULL,'2021-05-10 23:12:09','2021-05-10 23:12:09',5,'b613a395-717b-4a83-b60d-b93ab70f8327'),(157183,157169,NULL,8,3,NULL,'2021-05-10 23:12:09','2021-05-10 23:12:09',6,'7fcbda21-4d55-420c-9d40-50c11e4942f7'),(157187,157169,NULL,8,2,NULL,'2021-05-10 23:12:09','2021-05-10 23:12:09',7,'50013fc1-664b-4f32-a284-27293badc373'),(157188,157169,NULL,8,3,NULL,'2021-05-10 23:12:09','2021-05-10 23:12:09',8,'3f662c1a-6a58-4c0a-8dab-1ff8ec87ee40'),(157189,157169,NULL,8,2,NULL,'2021-05-10 23:12:09','2021-05-10 23:12:09',9,'8fb5b9c4-0a97-41fb-b7e3-5b5d530421da'),(157190,157169,NULL,8,3,NULL,'2021-05-10 23:12:09','2021-05-10 23:12:09',10,'732e5b09-8907-43f1-9f71-158e7981acd2'),(157191,157169,NULL,8,2,NULL,'2021-05-10 23:12:09','2021-05-10 23:12:09',11,'4fedb886-c141-4fe6-bde1-aee2f498e04c'),(157192,157169,NULL,8,3,NULL,'2021-05-10 23:12:09','2021-05-10 23:12:09',12,'e8dcc2dc-0cbc-4ee7-ab7a-da717edf7410'),(157194,157169,NULL,8,2,NULL,'2021-05-10 23:12:09','2021-05-10 23:12:09',13,'f0054587-1bbb-463f-87dd-91d9c6f98232'),(157195,157169,NULL,8,3,NULL,'2021-05-10 23:12:09','2021-05-10 23:12:09',14,'09eb0ba9-0fb4-419d-b69b-f2fd8477a2ab'),(157201,157169,NULL,8,2,NULL,'2021-05-10 23:12:09','2021-05-10 23:12:09',15,'ab7c350b-2430-4831-a65d-0ad84b8fbd7d'),(157202,157169,NULL,8,3,NULL,'2021-05-10 23:12:09','2021-05-10 23:12:09',16,'2815b9bd-09b1-4ff5-94b9-0c633dbc25f4'),(157203,157169,NULL,8,16,NULL,'2021-05-10 23:12:09','2021-05-10 23:12:09',17,'7f03bc4d-013d-417b-bf97-b84da05c5e9a'),(157204,157169,NULL,8,2,NULL,'2021-05-10 23:12:09','2021-05-10 23:12:09',18,'a8fd3479-49f0-49cf-af76-a01ddee97e39'),(157205,157169,NULL,8,3,NULL,'2021-05-10 23:12:10','2021-05-10 23:12:10',19,'09879347-9cb1-47ab-aa2f-063154fb7a9c'),(157209,157169,NULL,8,3,NULL,'2021-05-10 23:12:10','2021-05-10 23:12:10',20,'cbb4d343-39aa-4865-a7e1-aa81158807f2'),(158478,21115,NULL,8,2,0,'2021-05-11 01:42:36','2021-05-11 01:42:36',1,'6ff63f7a-7e0e-41e7-bd1b-bd69700e3b69'),(158479,21115,NULL,8,3,0,'2021-05-11 01:42:36','2021-05-11 01:42:36',2,'ba85e3ae-6f83-403e-85f5-b68dadb7afae'),(158481,21115,NULL,8,3,0,'2021-05-11 01:42:37','2021-05-11 01:42:37',3,'fb7923cc-a89e-4765-940c-80a714bdd9e5'),(158484,21115,NULL,8,2,0,'2021-05-11 01:42:37','2021-05-11 01:42:37',4,'df6d3ea9-6df0-4e87-874a-123c1002d212'),(158485,21115,NULL,8,3,0,'2021-05-11 01:42:37','2021-05-11 01:42:37',5,'568cd418-eea1-4e88-bf17-3e2ddecb3275'),(158487,21115,NULL,8,2,0,'2021-05-11 01:42:37','2021-05-11 01:42:37',6,'2c27c40d-99de-458b-920f-413feb84586c'),(158488,21115,NULL,8,3,0,'2021-05-11 01:42:37','2021-05-11 01:42:37',7,'910bc5e2-baf5-4fb2-867f-2b5360e55df3'),(158490,21115,NULL,8,2,0,'2021-05-11 01:42:37','2021-05-11 01:42:37',8,'0d89a230-fb3e-4c3d-9e88-aef121bf44ac'),(158491,21115,NULL,8,3,0,'2021-05-11 01:42:37','2021-05-11 01:42:37',9,'05da8d39-6a59-479b-8180-bf3cf2e867a6'),(158492,21115,NULL,8,16,0,'2021-05-11 01:42:37','2021-05-11 01:42:37',10,'ada4b6a4-8782-4670-b96e-0a4a384d0a4d'),(158493,21115,NULL,8,2,0,'2021-05-11 01:42:37','2021-05-11 01:42:37',11,'646ee351-62ba-44f6-ab07-76c6e598ba43'),(158494,21115,NULL,8,3,0,'2021-05-11 01:42:37','2021-05-11 01:42:37',12,'9fb1db32-1ffb-4094-8a51-3e805dc2df07'),(158496,21115,NULL,8,2,0,'2021-05-11 01:42:37','2021-05-11 01:42:37',13,'87c1e92c-5c4f-4254-ad42-febe58a3fa19'),(158497,21115,NULL,8,3,0,'2021-05-11 01:42:37','2021-05-11 01:42:37',14,'6652a1aa-fa93-48e2-a975-4440b45ecd07'),(158499,21115,NULL,8,3,0,'2021-05-11 01:42:37','2021-05-11 01:42:37',15,'610b1cc0-6cc6-4457-988c-98644e902ae1'),(158501,21115,NULL,8,3,0,'2021-05-11 01:42:37','2021-05-11 01:42:37',16,'96907d32-c8da-49b6-abf9-c99b3ca4de8e'),(158503,21115,NULL,8,2,0,'2021-05-11 01:42:37','2021-05-11 01:42:37',17,'cf80580a-a7a9-42d1-9501-280388bb5c7c'),(158504,21115,NULL,8,3,0,'2021-05-11 01:42:37','2021-05-11 01:42:37',18,'2b42ae53-aada-4cba-a790-99b270caadbf'),(158506,21115,NULL,8,3,0,'2021-05-11 01:42:37','2021-05-11 01:42:37',19,'30990c5b-b956-437c-a480-e27c3fc47195'),(158508,21115,NULL,8,3,0,'2021-05-11 01:42:37','2021-05-11 01:42:37',20,'f08957b7-53df-4f9f-838d-d1bd897dbdfa'),(158510,21115,NULL,8,2,0,'2021-05-11 01:42:37','2021-05-11 01:42:37',21,'220a8a41-bde6-4d44-83ee-d3da6644732c'),(158511,21115,NULL,8,3,0,'2021-05-11 01:42:37','2021-05-11 01:42:37',22,'d11114b0-58c4-4e3b-ac78-7602569e32b5'),(158514,21115,NULL,8,2,0,'2021-05-11 01:42:37','2021-05-11 01:42:37',23,'4f8536cd-afe6-4088-91fa-79f92558582f'),(158515,21115,NULL,8,15,0,'2021-05-11 01:42:37','2021-05-11 01:42:37',24,'b68c4b19-e83c-4734-938b-1fbc439cd4bd'),(158517,21115,NULL,8,2,0,'2021-05-11 01:42:37','2021-05-11 01:42:37',25,'1239929c-c390-4fff-908b-dd3754f341e2'),(158518,21115,NULL,8,3,0,'2021-05-11 01:42:37','2021-05-11 01:42:37',26,'b79e158a-948f-4226-83d9-cb6616e40c0e'),(158520,21115,NULL,8,3,0,'2021-05-11 01:42:37','2021-05-11 01:42:37',27,'65f0db29-0b43-49af-8170-f1181e010709'),(158524,158523,NULL,8,2,NULL,'2021-05-11 01:42:38','2021-05-11 01:42:38',1,'ece06019-28c9-480f-909a-eb69c200f455'),(158525,158523,NULL,8,3,NULL,'2021-05-11 01:42:38','2021-05-11 01:42:38',2,'a54dd874-5d1f-4116-b4a4-0e8e3a348c85'),(158527,158523,NULL,8,3,NULL,'2021-05-11 01:42:38','2021-05-11 01:42:38',3,'1ce59b9b-10bd-479a-9169-91a26c3a7ae6'),(158530,158523,NULL,8,2,NULL,'2021-05-11 01:42:38','2021-05-11 01:42:38',4,'3a54bf1a-3f1f-4af6-90dd-0335f3607de6'),(158531,158523,NULL,8,3,NULL,'2021-05-11 01:42:38','2021-05-11 01:42:38',5,'4bfc6ad7-8c6e-4362-9c19-203f33016153'),(158533,158523,NULL,8,2,NULL,'2021-05-11 01:42:38','2021-05-11 01:42:38',6,'75516076-416e-41a0-bbee-a879c9c5867d'),(158534,158523,NULL,8,3,NULL,'2021-05-11 01:42:38','2021-05-11 01:42:38',7,'9b4dd0a0-e41c-424a-b558-3d4d7d7152b9'),(158536,158523,NULL,8,2,NULL,'2021-05-11 01:42:38','2021-05-11 01:42:38',8,'ed440fe8-f47a-4ccd-9cb4-c519b62793cf'),(158537,158523,NULL,8,3,NULL,'2021-05-11 01:42:38','2021-05-11 01:42:38',9,'c01cc4e4-6120-4f91-b87b-690957fa9e83'),(158538,158523,NULL,8,16,NULL,'2021-05-11 01:42:38','2021-05-11 01:42:38',10,'6bc50532-8f3f-45e6-827c-f625203b2bb1'),(158539,158523,NULL,8,2,NULL,'2021-05-11 01:42:38','2021-05-11 01:42:38',11,'024f5200-519b-4e2c-b2ea-96b135b8a428'),(158540,158523,NULL,8,3,NULL,'2021-05-11 01:42:39','2021-05-11 01:42:39',12,'47c9b680-5bd6-4970-b65d-f79ddc5aef61'),(158542,158523,NULL,8,2,NULL,'2021-05-11 01:42:39','2021-05-11 01:42:39',13,'131af04e-f063-4e71-8920-d16473e9cca0'),(158543,158523,NULL,8,3,NULL,'2021-05-11 01:42:39','2021-05-11 01:42:39',14,'2a89d47d-b016-4592-8bbe-a260c37ccc21'),(158545,158523,NULL,8,3,NULL,'2021-05-11 01:42:39','2021-05-11 01:42:39',15,'24669c8f-5b00-46d3-abd5-9c07b0513c3a'),(158547,158523,NULL,8,3,NULL,'2021-05-11 01:42:39','2021-05-11 01:42:39',16,'c1c7d6bb-eea8-4dae-bd88-20cfb4a3ce9d'),(158549,158523,NULL,8,2,NULL,'2021-05-11 01:42:39','2021-05-11 01:42:39',17,'01e1b944-f753-4081-b285-7613b1b3a06d'),(158550,158523,NULL,8,3,NULL,'2021-05-11 01:42:39','2021-05-11 01:42:39',18,'593fd655-5ff9-4a69-99ed-3d0e34c74b75'),(158552,158523,NULL,8,3,NULL,'2021-05-11 01:42:39','2021-05-11 01:42:39',19,'ac5ad481-3a2c-4ce4-8055-3cd8aa613aa2'),(158554,158523,NULL,8,3,NULL,'2021-05-11 01:42:39','2021-05-11 01:42:39',20,'9d54173e-2a73-4e1e-be99-7c559c5da0ef'),(158556,158523,NULL,8,2,NULL,'2021-05-11 01:42:39','2021-05-11 01:42:39',21,'c59fb050-a0bd-49a4-92aa-eab139ed79ad'),(158557,158523,NULL,8,3,NULL,'2021-05-11 01:42:39','2021-05-11 01:42:39',22,'9aa2e9d2-715c-4c82-ba98-65fd46bfeecf'),(158560,158523,NULL,8,2,NULL,'2021-05-11 01:42:39','2021-05-11 01:42:39',23,'d1c23c74-eeae-496d-a7af-207ec4ac28bf'),(158561,158523,NULL,8,15,NULL,'2021-05-11 01:42:39','2021-05-11 01:42:39',24,'be17fe95-d72b-41da-ad61-235354cd63ba'),(158563,158523,NULL,8,2,NULL,'2021-05-11 01:42:39','2021-05-11 01:42:39',25,'a7c04fb7-7097-41eb-8e23-d4ba4a407230'),(158564,158523,NULL,8,3,NULL,'2021-05-11 01:42:39','2021-05-11 01:42:39',26,'8db44c46-e1ea-478c-aee1-68105765a7de'),(158566,158523,NULL,8,3,NULL,'2021-05-11 01:42:39','2021-05-11 01:42:39',27,'cbf1bdc2-f982-4f2c-b7f5-ae9a83325b4b'),(158570,158569,NULL,8,2,NULL,'2021-05-11 01:42:46','2021-05-11 01:42:46',1,'29aae56e-fbfe-4e56-912d-622a44810c9e'),(158571,158569,NULL,8,3,NULL,'2021-05-11 01:42:46','2021-05-11 01:42:46',2,'68f33938-41aa-4d0d-b3fb-cedcf8ba354d'),(158573,158569,NULL,8,3,NULL,'2021-05-11 01:42:46','2021-05-11 01:42:46',3,'19ab45a1-b1e9-4bbd-88af-cf251e820636'),(158576,158569,NULL,8,2,NULL,'2021-05-11 01:42:46','2021-05-11 01:42:46',4,'c53eef31-e37d-4fb7-a350-819db660a6e7'),(158577,158569,NULL,8,3,NULL,'2021-05-11 01:42:46','2021-05-11 01:42:46',5,'c8391667-701d-491f-a9ca-952d654070ec'),(158579,158569,NULL,8,2,NULL,'2021-05-11 01:42:46','2021-05-11 01:42:46',6,'2cc904c0-86b7-40a7-9232-ff74454a20d6'),(158580,158569,NULL,8,3,NULL,'2021-05-11 01:42:46','2021-05-11 01:42:46',7,'10d91d4e-8927-475c-a469-1b7767caeb03'),(158582,158569,NULL,8,2,NULL,'2021-05-11 01:42:46','2021-05-11 01:42:46',8,'0edf83c0-673f-42df-83ba-20aadc2126fa'),(158583,158569,NULL,8,3,NULL,'2021-05-11 01:42:46','2021-05-11 01:42:46',9,'adeefe1d-7bcc-449d-93b4-6ca90d63d93e'),(158584,158569,NULL,8,16,NULL,'2021-05-11 01:42:46','2021-05-11 01:42:46',10,'6ee9cf2a-e128-4c02-9dcb-4056ef8577a1'),(158585,158569,NULL,8,2,NULL,'2021-05-11 01:42:46','2021-05-11 01:42:46',11,'931d5a2b-fdcf-4a03-ae65-485c7433e448'),(158586,158569,NULL,8,3,NULL,'2021-05-11 01:42:46','2021-05-11 01:42:46',12,'d1bff081-af9c-41dc-b84e-840217b34685'),(158588,158569,NULL,8,2,NULL,'2021-05-11 01:42:46','2021-05-11 01:42:46',13,'68634737-e193-44db-83e2-2f48eba45024'),(158589,158569,NULL,8,3,NULL,'2021-05-11 01:42:46','2021-05-11 01:42:46',14,'d8106ead-9699-4522-89fd-54a78eb616ab'),(158591,158569,NULL,8,3,NULL,'2021-05-11 01:42:46','2021-05-11 01:42:46',15,'d3263a1e-17f9-4f3f-869e-3aaa95a0bbe3'),(158593,158569,NULL,8,3,NULL,'2021-05-11 01:42:46','2021-05-11 01:42:46',16,'3aa1dbcd-1425-4b21-a243-8a60902da9df'),(158595,158569,NULL,8,2,NULL,'2021-05-11 01:42:46','2021-05-11 01:42:46',17,'1b511e5b-2287-41d4-ba36-880060213d69'),(158596,158569,NULL,8,3,NULL,'2021-05-11 01:42:46','2021-05-11 01:42:46',18,'a0ea4642-ae16-4806-bc91-c2d89d3a1cf4'),(158598,158569,NULL,8,3,NULL,'2021-05-11 01:42:47','2021-05-11 01:42:47',19,'776fba0e-81d1-497d-857e-4312f982e414'),(158600,158569,NULL,8,3,NULL,'2021-05-11 01:42:47','2021-05-11 01:42:47',20,'0adb7860-fbff-4d46-8f7f-cd9d135c1d08'),(158602,158569,NULL,8,2,NULL,'2021-05-11 01:42:47','2021-05-11 01:42:47',21,'f8f244b7-b1cb-47e1-9686-bb923264f371'),(158603,158569,NULL,8,3,NULL,'2021-05-11 01:42:47','2021-05-11 01:42:47',22,'fa12412c-5e80-4339-a2b1-32a343d5299b'),(158606,158569,NULL,8,2,NULL,'2021-05-11 01:42:47','2021-05-11 01:42:47',23,'ec3224d4-9aa4-4daa-ae08-d796e8449a8e'),(158607,158569,NULL,8,15,NULL,'2021-05-11 01:42:47','2021-05-11 01:42:47',24,'802ebcf5-0fed-480f-80bc-0817f9fdf4c1'),(158609,158569,NULL,8,2,NULL,'2021-05-11 01:42:47','2021-05-11 01:42:47',25,'ccc34dc2-b544-4fe9-be73-c468a631c6ab'),(158610,158569,NULL,8,3,NULL,'2021-05-11 01:42:47','2021-05-11 01:42:47',26,'e577025f-296b-4049-a729-0164b59cbfc4'),(158612,158569,NULL,8,3,NULL,'2021-05-11 01:42:47','2021-05-11 01:42:47',27,'3f7efd58-e7ed-4715-9707-63f231e15d87'),(158699,21115,NULL,8,2,0,'2021-05-11 01:50:50','2021-05-11 01:50:50',1,'eabe2daf-fcd4-4e69-b9cd-9c95bd7949ab'),(158700,21115,NULL,8,3,0,'2021-05-11 01:50:50','2021-05-11 01:50:50',2,'11270cab-85b4-44bd-9060-0b86a65f0cbe'),(158701,21115,NULL,8,2,0,'2021-05-11 01:50:50','2021-05-11 01:50:50',3,'289ef8a8-9b5d-401d-b1f8-e7417ebccce8'),(158702,21115,NULL,8,3,0,'2021-05-11 01:50:50','2021-05-11 01:50:50',4,'148de0cb-456c-4eaa-a895-4b57955d75e8'),(158705,21115,NULL,8,2,0,'2021-05-11 01:50:50','2021-05-11 01:50:50',5,'23e81a0b-5a01-46d8-8885-7fa154ee28c3'),(158706,21115,NULL,8,3,0,'2021-05-11 01:50:50','2021-05-11 01:50:50',6,'8ef8d5ef-2295-4263-a15b-59127e76a721'),(158708,21115,NULL,8,2,0,'2021-05-11 01:50:50','2021-05-11 01:50:50',7,'8bd4ce25-cb41-4cbb-ab75-5a6eeb24fe01'),(158709,21115,NULL,8,3,0,'2021-05-11 01:50:50','2021-05-11 01:50:50',8,'eeb9df8e-7692-4779-92b0-c8f670462839'),(158711,21115,NULL,8,2,0,'2021-05-11 01:50:50','2021-05-11 01:50:50',9,'5352b970-8c14-4e25-a67b-7929d064636c'),(158712,21115,NULL,8,3,0,'2021-05-11 01:50:51','2021-05-11 01:50:51',10,'8dca19f2-7362-4cb9-a900-d6bd9f91698d'),(158713,21115,NULL,8,16,0,'2021-05-11 01:50:51','2021-05-11 01:50:51',11,'e3f0cc85-d220-4d2c-8f5e-f93ac3748c7c'),(158714,21115,NULL,8,2,0,'2021-05-11 01:50:51','2021-05-11 01:50:51',12,'2efa2471-25e3-4080-897a-9c657ece7f08'),(158715,21115,NULL,8,3,0,'2021-05-11 01:50:51','2021-05-11 01:50:51',13,'9e8f8fa9-e818-4702-8a3f-a9aa9f24dd41'),(158717,21115,NULL,8,2,0,'2021-05-11 01:50:51','2021-05-11 01:50:51',14,'455fff6e-ce0f-4510-b266-4fd8f95f82da'),(158718,21115,NULL,8,3,0,'2021-05-11 01:50:51','2021-05-11 01:50:51',15,'a6223a01-85ff-4fac-bdeb-9a82b58c75a4'),(158720,21115,NULL,8,3,0,'2021-05-11 01:50:51','2021-05-11 01:50:51',16,'0a601936-e3b2-4ba1-a045-bc9a821f8261'),(158722,21115,NULL,8,3,0,'2021-05-11 01:50:51','2021-05-11 01:50:51',17,'441d4002-4ff8-4de6-897d-7009671aef0d'),(158724,21115,NULL,8,2,0,'2021-05-11 01:50:51','2021-05-11 01:50:51',18,'0bfd9060-94c5-46a5-a93e-0aa2276212da'),(158725,21115,NULL,8,3,0,'2021-05-11 01:50:51','2021-05-11 01:50:51',19,'ce24e28c-ebc0-4dc7-8eea-76ee3cb64c55'),(158727,21115,NULL,8,3,0,'2021-05-11 01:50:51','2021-05-11 01:50:51',20,'7895916d-886f-40c7-90f1-5b5f90f17c0d'),(158729,21115,NULL,8,3,0,'2021-05-11 01:50:51','2021-05-11 01:50:51',21,'8668b0bf-f1df-4795-8027-f70cff039a0d'),(158731,21115,NULL,8,2,0,'2021-05-11 01:50:51','2021-05-11 01:50:51',22,'e77e533b-20d4-4259-a444-5cc6fb6d9960'),(158732,21115,NULL,8,3,0,'2021-05-11 01:50:51','2021-05-11 01:50:51',23,'299b0c4b-7d37-45de-9f2b-321a56c055b3'),(158735,21115,NULL,8,2,0,'2021-05-11 01:50:51','2021-05-11 01:50:51',24,'c4473393-24f8-433d-ae70-65bc768b3e0b'),(158736,21115,NULL,8,15,0,'2021-05-11 01:50:51','2021-05-11 01:50:51',25,'6db2fe78-de6b-4b13-a4ad-511c52d0c183'),(158738,21115,NULL,8,2,0,'2021-05-11 01:50:51','2021-05-11 01:50:51',26,'feb37e31-e370-4eae-8c6f-5db8b1d8bca5'),(158739,21115,NULL,8,3,0,'2021-05-11 01:50:51','2021-05-11 01:50:51',27,'8c7ba7de-2263-4f6c-9710-d056db8b55c5'),(158741,21115,NULL,8,3,0,'2021-05-11 01:50:51','2021-05-11 01:50:51',28,'359bf334-9a09-4996-b4d0-b79a0d143c3f'),(158745,158744,NULL,8,2,NULL,'2021-05-11 01:50:52','2021-05-11 01:50:52',1,'0c593a2b-30d7-4ad3-a6b7-9a47cf94de8f'),(158746,158744,NULL,8,3,NULL,'2021-05-11 01:50:52','2021-05-11 01:50:52',2,'452aecfe-89c9-49c9-b19b-7fdaf15a7a27'),(158747,158744,NULL,8,2,NULL,'2021-05-11 01:50:52','2021-05-11 01:50:52',3,'4698e628-660c-4640-9469-604f4f76a9ea'),(158748,158744,NULL,8,3,NULL,'2021-05-11 01:50:52','2021-05-11 01:50:52',4,'e4a5e02a-6710-452f-b606-eeec3e8f4169'),(158751,158744,NULL,8,2,NULL,'2021-05-11 01:50:52','2021-05-11 01:50:52',5,'0b7dc0e5-ed5b-4583-b85e-541eaa687f43'),(158752,158744,NULL,8,3,NULL,'2021-05-11 01:50:52','2021-05-11 01:50:52',6,'0e5f8ada-5fea-42ba-b8f2-65a306f7512f'),(158754,158744,NULL,8,2,NULL,'2021-05-11 01:50:52','2021-05-11 01:50:52',7,'95d9f190-975c-4419-aa5f-861c3dacd3cc'),(158755,158744,NULL,8,3,NULL,'2021-05-11 01:50:52','2021-05-11 01:50:52',8,'8e1b33c6-4da6-4593-9169-d58fff8f9f49'),(158757,158744,NULL,8,2,NULL,'2021-05-11 01:50:52','2021-05-11 01:50:52',9,'dd3a0f6b-2349-4595-87fa-a324e0319b02'),(158758,158744,NULL,8,3,NULL,'2021-05-11 01:50:52','2021-05-11 01:50:52',10,'ce5b9c30-7d08-4b5e-9bad-7a44943e2590'),(158759,158744,NULL,8,16,NULL,'2021-05-11 01:50:52','2021-05-11 01:50:52',11,'d7048256-9d7b-43e4-9b8a-82490456c77e'),(158760,158744,NULL,8,2,NULL,'2021-05-11 01:50:52','2021-05-11 01:50:52',12,'5784acbe-b0f9-435e-acd2-df08285ad045'),(158761,158744,NULL,8,3,NULL,'2021-05-11 01:50:52','2021-05-11 01:50:52',13,'75d56908-7720-4f17-abc7-5b9855571530'),(158763,158744,NULL,8,2,NULL,'2021-05-11 01:50:52','2021-05-11 01:50:52',14,'0145638b-d396-4979-a662-2e361ab4697d'),(158764,158744,NULL,8,3,NULL,'2021-05-11 01:50:52','2021-05-11 01:50:52',15,'50c959d1-a647-49ec-8aee-2fbaff49d486'),(158766,158744,NULL,8,3,NULL,'2021-05-11 01:50:52','2021-05-11 01:50:52',16,'675d8bb2-8191-40a2-95cb-f9cdb35d936b'),(158768,158744,NULL,8,3,NULL,'2021-05-11 01:50:52','2021-05-11 01:50:52',17,'b635207a-81f0-401d-84b5-1b05ac0d4489'),(158770,158744,NULL,8,2,NULL,'2021-05-11 01:50:52','2021-05-11 01:50:52',18,'7c45539d-2e12-4fae-a1f4-6fec1da15c02'),(158771,158744,NULL,8,3,NULL,'2021-05-11 01:50:52','2021-05-11 01:50:52',19,'3f592bbc-0a9d-493b-92e3-de4b76bb4390'),(158773,158744,NULL,8,3,NULL,'2021-05-11 01:50:52','2021-05-11 01:50:52',20,'3205854d-5f98-49e1-b943-9d3e82603633'),(158775,158744,NULL,8,3,NULL,'2021-05-11 01:50:52','2021-05-11 01:50:52',21,'e68c5d2b-5321-423a-96ae-b2554fa94873'),(158777,158744,NULL,8,2,NULL,'2021-05-11 01:50:53','2021-05-11 01:50:53',22,'72904a9a-d6df-4593-b7c9-6d4682a3b3af'),(158778,158744,NULL,8,3,NULL,'2021-05-11 01:50:53','2021-05-11 01:50:53',23,'341b8c52-02bd-4bc0-a3db-cc168f74e693'),(158781,158744,NULL,8,2,NULL,'2021-05-11 01:50:53','2021-05-11 01:50:53',24,'36d1d512-4e5f-4032-b7f8-0d933eb4d23f'),(158782,158744,NULL,8,15,NULL,'2021-05-11 01:50:53','2021-05-11 01:50:53',25,'082a1689-1412-4e20-ae53-168270cc0d26'),(158784,158744,NULL,8,2,NULL,'2021-05-11 01:50:53','2021-05-11 01:50:53',26,'4c26854b-46fb-4667-9313-90f0c17176a6'),(158785,158744,NULL,8,3,NULL,'2021-05-11 01:50:53','2021-05-11 01:50:53',27,'60cf14fa-634c-4602-a407-dc99f87019f2'),(158787,158744,NULL,8,3,NULL,'2021-05-11 01:50:53','2021-05-11 01:50:53',28,'147975e9-5090-4c46-8606-55b54246f2b8'),(158791,158790,NULL,8,2,NULL,'2021-05-11 01:51:32','2021-05-11 01:51:32',1,'a416e53d-15a1-4153-beba-a1596bd85c19'),(158792,158790,NULL,8,3,NULL,'2021-05-11 01:51:32','2021-05-11 01:51:32',2,'8aba01c5-1f51-41eb-9e83-b9cd15da199c'),(158793,158790,NULL,8,2,NULL,'2021-05-11 01:51:32','2021-05-11 01:51:32',3,'0dbc9b2b-bea8-42a8-810f-b3371ff4b07b'),(158794,158790,NULL,8,3,NULL,'2021-05-11 01:51:32','2021-05-11 01:51:32',4,'df5d32d3-1163-41a7-87af-6a41b21185f5'),(158797,158790,NULL,8,2,NULL,'2021-05-11 01:51:32','2021-05-11 01:51:32',5,'3cf9c62a-4e75-4cc3-8773-c0c88764b969'),(158798,158790,NULL,8,3,NULL,'2021-05-11 01:51:32','2021-05-11 01:51:32',6,'41f57c22-f949-417d-9842-e6d1b0774c36'),(158800,158790,NULL,8,2,NULL,'2021-05-11 01:51:32','2021-05-11 01:51:32',7,'2bfd0fcf-f389-4137-b897-7dcf2f44d834'),(158801,158790,NULL,8,3,NULL,'2021-05-11 01:51:32','2021-05-11 01:51:32',8,'8b739a99-ae3c-4206-af5a-4ebbd3a1db35'),(158803,158790,NULL,8,2,NULL,'2021-05-11 01:51:32','2021-05-11 01:51:32',9,'e6eede00-13f6-4c0d-94f3-70057f783a6f'),(158804,158790,NULL,8,3,NULL,'2021-05-11 01:51:32','2021-05-11 01:51:32',10,'1db1f347-2085-454c-b1e6-78ff7505c2b5'),(158805,158790,NULL,8,16,NULL,'2021-05-11 01:51:32','2021-05-11 01:51:32',11,'f3ea7bec-37db-4cd4-9595-1497d656ea79'),(158806,158790,NULL,8,2,NULL,'2021-05-11 01:51:32','2021-05-11 01:51:32',12,'16282135-cfd6-4f62-bd5e-6cb7f78edf36'),(158807,158790,NULL,8,3,NULL,'2021-05-11 01:51:32','2021-05-11 01:51:32',13,'687fa8e4-eba2-4902-ac48-18ae437c6a29'),(158809,158790,NULL,8,2,NULL,'2021-05-11 01:51:32','2021-05-11 01:51:32',14,'c9db5159-53b2-47ad-817b-33cd0c09a805'),(158810,158790,NULL,8,3,NULL,'2021-05-11 01:51:32','2021-05-11 01:51:32',15,'2549b92b-92c5-4f32-87d4-f64f4436c7d5'),(158812,158790,NULL,8,3,NULL,'2021-05-11 01:51:33','2021-05-11 01:51:33',16,'c0d57319-04b1-4489-9581-fcf81cf0a595'),(158814,158790,NULL,8,3,NULL,'2021-05-11 01:51:33','2021-05-11 01:51:33',17,'2bc99ea2-0818-497c-9c5c-745d5b920d66'),(158816,158790,NULL,8,2,NULL,'2021-05-11 01:51:33','2021-05-11 01:51:33',18,'fcd2814b-536d-49dc-bea5-4d99638ebbfe'),(158817,158790,NULL,8,3,NULL,'2021-05-11 01:51:33','2021-05-11 01:51:33',19,'5b22ede5-e006-482d-9e5c-9afb9cb7781f'),(158819,158790,NULL,8,3,NULL,'2021-05-11 01:51:33','2021-05-11 01:51:33',20,'f3f0adb1-9b55-439d-b25f-3be584131c32'),(158821,158790,NULL,8,3,NULL,'2021-05-11 01:51:33','2021-05-11 01:51:33',21,'c51cea25-3984-415b-889b-ccd2631970dc'),(158823,158790,NULL,8,2,NULL,'2021-05-11 01:51:33','2021-05-11 01:51:33',22,'44a294ed-31b7-48d0-a9a8-81aaaad9cc69'),(158824,158790,NULL,8,3,NULL,'2021-05-11 01:51:33','2021-05-11 01:51:33',23,'c2ec1aa9-d7ae-421d-987f-4efecc4c921d'),(158827,158790,NULL,8,2,NULL,'2021-05-11 01:51:33','2021-05-11 01:51:33',24,'4b4f0c9b-ff5f-49ff-8ab6-1266284a514e'),(158828,158790,NULL,8,15,NULL,'2021-05-11 01:51:33','2021-05-11 01:51:33',25,'44643598-2eaf-4e76-91c6-315d09a902cc'),(158830,158790,NULL,8,2,NULL,'2021-05-11 01:51:33','2021-05-11 01:51:33',26,'8477aa97-6f04-4492-a4c9-4f8741dac649'),(158831,158790,NULL,8,3,NULL,'2021-05-11 01:51:33','2021-05-11 01:51:33',27,'03e1513f-3581-4f90-938b-be82acfe1a53'),(158833,158790,NULL,8,3,NULL,'2021-05-11 01:51:33','2021-05-11 01:51:33',28,'bc691e73-d24f-407d-b05a-52a680ba7d11'),(158877,158876,NULL,8,2,NULL,'2021-05-11 01:51:46','2021-05-11 01:51:46',1,'342a6efc-8530-47fd-b772-5f650dc42b71'),(158878,158876,NULL,8,3,NULL,'2021-05-11 01:51:46','2021-05-11 01:51:46',2,'56ca23ae-7719-48a7-ae58-dabcd352dd78'),(158883,158876,NULL,8,4,NULL,'2021-05-11 01:51:46','2021-05-11 01:51:46',3,'cb1ed0d8-c318-4489-9142-aa6fd9b08640'),(158884,158876,NULL,8,3,NULL,'2021-05-11 01:51:46','2021-05-11 01:51:46',4,'aae34589-9097-4735-a182-8874b905205d'),(158889,158876,NULL,8,4,NULL,'2021-05-11 01:51:46','2021-05-11 01:51:46',5,'90e5fe1f-87ee-4566-897e-c7df82baac2b'),(158890,158876,NULL,8,3,NULL,'2021-05-11 01:51:46','2021-05-11 01:51:46',6,'a9e5a07c-3d89-4e83-a9f8-dff6ed81d61c'),(158894,158876,NULL,8,2,NULL,'2021-05-11 01:51:46','2021-05-11 01:51:46',7,'946499fc-c70d-4543-aa5c-567070b07a62'),(158895,158876,NULL,8,3,NULL,'2021-05-11 01:51:46','2021-05-11 01:51:46',8,'50f1eb95-642b-47e2-a494-222179c2a05c'),(158896,158876,NULL,8,2,NULL,'2021-05-11 01:51:46','2021-05-11 01:51:46',9,'576e7cdd-9764-4fcd-943b-8163b29b6292'),(158897,158876,NULL,8,3,NULL,'2021-05-11 01:51:46','2021-05-11 01:51:46',10,'4b5a4f91-a575-4b91-a947-8e7a0b6b7e29'),(158898,158876,NULL,8,2,NULL,'2021-05-11 01:51:46','2021-05-11 01:51:46',11,'42d0b057-79e1-40b5-807f-5f4482d047ca'),(158899,158876,NULL,8,3,NULL,'2021-05-11 01:51:46','2021-05-11 01:51:46',12,'35c03cf9-e1a5-4247-b2cc-a868fe6e6da2'),(158901,158876,NULL,8,2,NULL,'2021-05-11 01:51:46','2021-05-11 01:51:46',13,'aa271269-50d2-4ef7-97d1-13506266320e'),(158902,158876,NULL,8,3,NULL,'2021-05-11 01:51:46','2021-05-11 01:51:46',14,'26ef221a-5d21-49b8-96ab-148b39d5cdb3'),(158908,158876,NULL,8,2,NULL,'2021-05-11 01:51:46','2021-05-11 01:51:46',15,'ef232db5-23a2-4c7c-97bb-d678bddcd192'),(158909,158876,NULL,8,3,NULL,'2021-05-11 01:51:46','2021-05-11 01:51:46',16,'526e24c3-2bed-4f61-ba77-cdcd332b9361'),(158910,158876,NULL,8,16,NULL,'2021-05-11 01:51:46','2021-05-11 01:51:46',17,'5d901df7-46e1-4213-9a74-eeb5743673c5'),(158911,158876,NULL,8,2,NULL,'2021-05-11 01:51:46','2021-05-11 01:51:46',18,'d60f7bf7-fa68-446b-bc74-84a5814c8641'),(158912,158876,NULL,8,3,NULL,'2021-05-11 01:51:46','2021-05-11 01:51:46',19,'1b55dbad-a6e0-4508-bf7c-a556c240b62e'),(158916,158876,NULL,8,3,NULL,'2021-05-11 01:51:46','2021-05-11 01:51:46',20,'68de6df3-99be-4a95-b5b1-b4f8c0fadc7f'),(158918,158917,NULL,8,2,NULL,'2021-05-11 01:51:52','2021-05-11 01:51:52',1,'113f7f55-e19d-4ebd-9088-a6bc21951348'),(158919,158917,NULL,8,3,NULL,'2021-05-11 01:51:52','2021-05-11 01:51:52',2,'0426fa26-6519-4081-9913-0a82c1c14c95'),(158924,158917,NULL,8,4,NULL,'2021-05-11 01:51:52','2021-05-11 01:51:52',3,'27c3e48a-e151-4330-a0ea-b89fea1a9d30'),(158925,158917,NULL,8,3,NULL,'2021-05-11 01:51:52','2021-05-11 01:51:52',4,'d63abb41-083f-43f5-b18c-f5a79d55fd88'),(158930,158917,NULL,8,4,NULL,'2021-05-11 01:51:52','2021-05-11 01:51:52',5,'3ce0583a-b38c-4882-bac4-7c1990009267'),(158931,158917,NULL,8,3,NULL,'2021-05-11 01:51:52','2021-05-11 01:51:52',6,'9e3c21af-13e8-4ba4-9e8d-265d086ef6b6'),(158935,158917,NULL,8,2,NULL,'2021-05-11 01:51:52','2021-05-11 01:51:52',7,'4b906892-c241-444b-9605-a565659c9d89'),(158936,158917,NULL,8,3,NULL,'2021-05-11 01:51:52','2021-05-11 01:51:52',8,'51ab9b13-962b-4850-aab0-08d95371ac64'),(158937,158917,NULL,8,2,NULL,'2021-05-11 01:51:52','2021-05-11 01:51:52',9,'8e9ade1b-46b7-4ab7-9f10-74c160dffb12'),(158938,158917,NULL,8,3,NULL,'2021-05-11 01:51:52','2021-05-11 01:51:52',10,'43f37f47-3fed-4c08-9c66-e959baa2f0f6'),(158939,158917,NULL,8,2,NULL,'2021-05-11 01:51:52','2021-05-11 01:51:52',11,'4313d3c1-f8e5-4ca4-9c4c-3ad8b10caed8'),(158940,158917,NULL,8,3,NULL,'2021-05-11 01:51:52','2021-05-11 01:51:52',12,'d94f78d3-9ac7-4d00-833a-d73d1fc6753e'),(158942,158917,NULL,8,2,NULL,'2021-05-11 01:51:52','2021-05-11 01:51:52',13,'dcf03655-6f39-4613-867f-aae9fea2ca02'),(158943,158917,NULL,8,3,NULL,'2021-05-11 01:51:52','2021-05-11 01:51:52',14,'798c2406-916f-41e0-8a75-be8375a33450'),(158949,158917,NULL,8,2,NULL,'2021-05-11 01:51:52','2021-05-11 01:51:52',15,'ef50abe1-26ec-4cf1-88ff-ea9bc0eaac47'),(158950,158917,NULL,8,3,NULL,'2021-05-11 01:51:52','2021-05-11 01:51:52',16,'be2324dc-2505-4d11-9cb2-eaf939caa5f5'),(158951,158917,NULL,8,16,NULL,'2021-05-11 01:51:53','2021-05-11 01:51:53',17,'cd16d102-7e6a-4e65-9fcc-a94e2ac039fb'),(158952,158917,NULL,8,2,NULL,'2021-05-11 01:51:53','2021-05-11 01:51:53',18,'ce658c4a-1e40-45f8-a0dc-c0af320952ae'),(158953,158917,NULL,8,3,NULL,'2021-05-11 01:51:53','2021-05-11 01:51:53',19,'e54783da-73da-4c4f-84a0-a1ecbbe6bae3'),(158957,158917,NULL,8,3,NULL,'2021-05-11 01:51:53','2021-05-11 01:51:53',20,'7863e9de-c9aa-4ab4-9f17-a03cb6c6f552'),(159006,21115,NULL,8,2,0,'2021-05-11 01:53:00','2021-05-11 01:53:00',1,'8274d59b-cdb1-4095-a5d3-96afb69b8813'),(159007,21115,NULL,8,3,0,'2021-05-11 01:53:01','2021-05-11 01:53:01',2,'4a14d1a3-ba2a-4c0a-8a50-48f260354a96'),(159008,21115,NULL,8,2,0,'2021-05-11 01:53:01','2021-05-11 01:53:01',3,'c96d6dfd-f635-4ae4-8011-e6f3ec0abe86'),(159009,21115,NULL,8,3,0,'2021-05-11 01:53:01','2021-05-11 01:53:01',4,'b5589b41-582b-47a9-9e7a-4d748dc0b0ad'),(159012,21115,NULL,8,2,0,'2021-05-11 01:53:01','2021-05-11 01:53:01',5,'6b353605-3e5a-4c1a-a730-ecc426f1d742'),(159013,21115,NULL,8,3,0,'2021-05-11 01:53:01','2021-05-11 01:53:01',6,'9c0ccdc5-897b-4b85-8f92-4b6e0dcbf6b7'),(159015,21115,NULL,8,2,0,'2021-05-11 01:53:01','2021-05-11 01:53:01',7,'93e8f83d-6ecf-4875-916d-789faf789e44'),(159016,21115,NULL,8,3,0,'2021-05-11 01:53:01','2021-05-11 01:53:01',8,'632ff7bf-2fe5-4422-b2d9-4d10feacf815'),(159018,21115,NULL,8,2,0,'2021-05-11 01:53:01','2021-05-11 01:53:01',9,'9029ae4f-01bd-4666-8a56-a9695650fdea'),(159019,21115,NULL,8,3,0,'2021-05-11 01:53:01','2021-05-11 01:53:01',10,'46a50594-3e33-45f2-a9d8-79b07674fb91'),(159020,21115,NULL,8,16,0,'2021-05-11 01:53:01','2021-05-11 01:53:01',11,'43ba1c10-5142-487c-a35b-0182907ea733'),(159021,21115,NULL,8,2,0,'2021-05-11 01:53:01','2021-05-11 01:53:01',12,'4a34aaff-371d-4ef3-be7c-959836501541'),(159022,21115,NULL,8,3,0,'2021-05-11 01:53:01','2021-05-11 01:53:01',13,'5d52e028-4a81-4546-82f7-5a6d2ab947c9'),(159024,21115,NULL,8,2,0,'2021-05-11 01:53:01','2021-05-11 01:53:01',14,'59f727ff-3e13-4eb6-a244-201684a63d92'),(159025,21115,NULL,8,3,0,'2021-05-11 01:53:01','2021-05-11 01:53:01',15,'65a20135-2eb6-4d4d-a949-2aa8ba22b927'),(159027,21115,NULL,8,3,0,'2021-05-11 01:53:01','2021-05-11 01:53:01',16,'373aa3c8-23a0-4974-b361-e47e86a711ce'),(159029,21115,NULL,8,3,0,'2021-05-11 01:53:01','2021-05-11 01:53:01',17,'ad6141d7-55de-4c04-81f5-ce7f402892ea'),(159031,21115,NULL,8,2,0,'2021-05-11 01:53:01','2021-05-11 01:53:01',18,'b9342475-cbbb-42bc-b975-ed47754f8716'),(159032,21115,NULL,8,3,0,'2021-05-11 01:53:01','2021-05-11 01:53:01',19,'c7ca1eb6-4aec-4c72-8e42-ff1373a2076f'),(159034,21115,NULL,8,3,0,'2021-05-11 01:53:01','2021-05-11 01:53:01',20,'3054bda4-04a8-495b-91c7-3d5e70955944'),(159036,21115,NULL,8,3,0,'2021-05-11 01:53:01','2021-05-11 01:53:01',21,'6d1c2920-1520-4661-83aa-725fa4e99393'),(159038,21115,NULL,8,2,0,'2021-05-11 01:53:01','2021-05-11 01:53:01',22,'fa37aab0-60f4-415b-ab8e-81f3db90e178'),(159039,21115,NULL,8,3,0,'2021-05-11 01:53:01','2021-05-11 01:53:01',23,'01a7d3a2-f704-4e46-a571-bbbdcb31d1cf'),(159042,21115,NULL,8,2,0,'2021-05-11 01:53:01','2021-05-11 01:53:01',24,'0afa89aa-b225-4738-9364-1ddc9cb2e0f5'),(159043,21115,NULL,8,15,0,'2021-05-11 01:53:01','2021-05-11 01:53:01',25,'db80d199-c596-411e-aa94-c4d0ce492a86'),(159045,21115,NULL,8,2,0,'2021-05-11 01:53:01','2021-05-11 01:53:01',26,'d8a297ea-7d0f-40ab-b946-37929b7190c5'),(159046,21115,NULL,8,3,0,'2021-05-11 01:53:01','2021-05-11 01:53:01',27,'0078a9b1-7aa6-4bb5-bac7-3f0236dbed43'),(159048,21115,NULL,8,3,0,'2021-05-11 01:53:01','2021-05-11 01:53:01',28,'cf7c38b1-edeb-4c56-9dc2-53cb02244b1c'),(159052,159051,NULL,8,2,NULL,'2021-05-11 01:53:02','2021-05-11 01:53:02',1,'2f75142f-7d0f-4d79-a616-713a129fbbb7'),(159053,159051,NULL,8,3,NULL,'2021-05-11 01:53:02','2021-05-11 01:53:02',2,'c58a8bca-4672-47f5-84ea-92e94fe88479'),(159054,159051,NULL,8,2,NULL,'2021-05-11 01:53:02','2021-05-11 01:53:02',3,'5781c1f5-f1a8-4016-aec6-ca9082c1d7b4'),(159055,159051,NULL,8,3,NULL,'2021-05-11 01:53:02','2021-05-11 01:53:02',4,'4627d44c-1ae8-4229-b595-5d03ed279fa3'),(159058,159051,NULL,8,2,NULL,'2021-05-11 01:53:02','2021-05-11 01:53:02',5,'81a2f1ea-a8f1-4a4c-be40-5260a2706bf9'),(159059,159051,NULL,8,3,NULL,'2021-05-11 01:53:03','2021-05-11 01:53:03',6,'cf8664c7-7ffd-45a8-af5c-4aabedec8b46'),(159061,159051,NULL,8,2,NULL,'2021-05-11 01:53:03','2021-05-11 01:53:03',7,'7cdfa7d7-d380-4671-ae3d-e892c70f81aa'),(159062,159051,NULL,8,3,NULL,'2021-05-11 01:53:03','2021-05-11 01:53:03',8,'35ad5b1d-df5d-4126-bb09-8d90568866ad'),(159064,159051,NULL,8,2,NULL,'2021-05-11 01:53:03','2021-05-11 01:53:03',9,'3bcf3735-090f-4d11-938d-f4fdb76175cc'),(159065,159051,NULL,8,3,NULL,'2021-05-11 01:53:03','2021-05-11 01:53:03',10,'a9b82660-2d2b-4e8d-8024-1f6a33ea2b93'),(159066,159051,NULL,8,16,NULL,'2021-05-11 01:53:03','2021-05-11 01:53:03',11,'356fdb5a-9d7b-4abd-977f-be70b3a67878'),(159067,159051,NULL,8,2,NULL,'2021-05-11 01:53:03','2021-05-11 01:53:03',12,'cce7bf32-8abf-42f3-870f-f489185de655'),(159068,159051,NULL,8,3,NULL,'2021-05-11 01:53:03','2021-05-11 01:53:03',13,'675dd320-d47d-40ea-816f-53d718c74251'),(159070,159051,NULL,8,2,NULL,'2021-05-11 01:53:03','2021-05-11 01:53:03',14,'e38ca61d-1748-477c-a2c9-177f8f3ceb28'),(159071,159051,NULL,8,3,NULL,'2021-05-11 01:53:03','2021-05-11 01:53:03',15,'9699f315-a066-445c-b3ce-5846c8474180'),(159073,159051,NULL,8,3,NULL,'2021-05-11 01:53:03','2021-05-11 01:53:03',16,'232f8163-a488-42fe-8b6d-c81e33ff89ca'),(159075,159051,NULL,8,3,NULL,'2021-05-11 01:53:03','2021-05-11 01:53:03',17,'04327edd-79fa-4dda-b301-98ccaed99650'),(159077,159051,NULL,8,2,NULL,'2021-05-11 01:53:03','2021-05-11 01:53:03',18,'4987aa87-c94f-4300-bfa0-bdef7f82a399'),(159078,159051,NULL,8,3,NULL,'2021-05-11 01:53:03','2021-05-11 01:53:03',19,'ebb28bb2-ef94-4818-af7c-93fc7a92ea22'),(159080,159051,NULL,8,3,NULL,'2021-05-11 01:53:03','2021-05-11 01:53:03',20,'8fc826d6-01e9-402a-9415-55a5eb3cb564'),(159082,159051,NULL,8,3,NULL,'2021-05-11 01:53:03','2021-05-11 01:53:03',21,'5cc430d9-4bcb-477c-9956-33940b882397'),(159084,159051,NULL,8,2,NULL,'2021-05-11 01:53:03','2021-05-11 01:53:03',22,'f03f26a8-73d8-44e5-addc-44cabb97a7cb'),(159085,159051,NULL,8,3,NULL,'2021-05-11 01:53:03','2021-05-11 01:53:03',23,'0c6f78f2-3678-42e5-a794-8080affd318e'),(159088,159051,NULL,8,2,NULL,'2021-05-11 01:53:03','2021-05-11 01:53:03',24,'ef165fe2-f548-4ddd-a6dd-18f28008d0d1'),(159089,159051,NULL,8,15,NULL,'2021-05-11 01:53:03','2021-05-11 01:53:03',25,'ee0f59e0-c3c4-4920-bf65-0d94a5e53536'),(159091,159051,NULL,8,2,NULL,'2021-05-11 01:53:03','2021-05-11 01:53:03',26,'f96f502a-280b-4160-9b99-cef2dfa37a22'),(159092,159051,NULL,8,3,NULL,'2021-05-11 01:53:03','2021-05-11 01:53:03',27,'a36703aa-a11f-4347-9302-f8a2a3aeabad'),(159094,159051,NULL,8,3,NULL,'2021-05-11 01:53:03','2021-05-11 01:53:03',28,'1f0eed85-f0d9-4a17-ac4a-d7be2138dc48'),(159098,159097,NULL,8,2,NULL,'2021-05-11 01:55:30','2021-05-11 01:55:30',1,'2c5b2636-5a64-4350-aa13-5337331e004b'),(159099,159097,NULL,8,3,NULL,'2021-05-11 01:55:30','2021-05-11 01:55:30',2,'cd1a5ae5-8e74-4a59-93e2-2a2e6e820cbc'),(159101,159097,NULL,8,2,NULL,'2021-05-11 01:55:30','2021-05-11 01:55:30',3,'30cbf7d6-5d51-4b72-8f29-8a610ab7cbec'),(159102,159097,NULL,8,3,NULL,'2021-05-11 01:55:30','2021-05-11 01:55:30',4,'9f80800c-e23b-4d49-bcdb-3371e51fcc1a'),(159103,159097,NULL,8,2,NULL,'2021-05-11 01:55:30','2021-05-11 01:55:30',5,'441ac80a-2aad-4e73-bc36-4e8c9a9fac4a'),(159104,159097,NULL,8,3,NULL,'2021-05-11 01:55:30','2021-05-11 01:55:30',6,'3d36e7f7-77b2-4fe4-9b77-8ba26a256f23'),(159107,159097,NULL,8,2,NULL,'2021-05-11 01:55:30','2021-05-11 01:55:30',7,'3bd2d4cc-9b02-411d-afe7-0b87f37aa8a7'),(159108,159097,NULL,8,3,NULL,'2021-05-11 01:55:30','2021-05-11 01:55:30',8,'a0886b23-6d64-4ae7-bae2-711646c4f8e1'),(159295,21115,NULL,8,2,0,'2021-05-11 02:22:37','2021-05-11 02:22:37',1,'0369a53b-b9fa-4615-947c-7bf6c5881a18'),(159296,21115,NULL,8,3,0,'2021-05-11 02:22:37','2021-05-11 02:22:37',2,'f2226b8e-c77d-4a51-90f0-b76c55aeb36c'),(159297,21115,NULL,8,2,0,'2021-05-11 02:22:37','2021-05-11 02:22:37',3,'0f8b75e7-6e37-4cfe-97f1-4158003efc91'),(159298,21115,NULL,8,3,0,'2021-05-11 02:22:37','2021-05-11 02:22:37',4,'ec6f64a6-9e37-4679-af69-903b2e70ff85'),(159301,21115,NULL,8,2,0,'2021-05-11 02:22:37','2021-05-11 02:22:37',5,'7af862e5-461b-4ad9-b8dc-dde4d4a091e8'),(159302,21115,NULL,8,3,0,'2021-05-11 02:22:37','2021-05-11 02:22:37',6,'957839e6-6218-4360-98f2-9c9a62fdd97f'),(159304,21115,NULL,8,2,0,'2021-05-11 02:22:37','2021-05-11 02:22:37',7,'e3243c78-1694-4059-9f59-40c4d85cc37f'),(159305,21115,NULL,8,3,0,'2021-05-11 02:22:37','2021-05-11 02:22:37',8,'625f3c28-ea20-4a10-b481-62399c41fb7d'),(159307,21115,NULL,8,2,0,'2021-05-11 02:22:37','2021-05-11 02:22:37',9,'ec60a0ad-8bd5-458f-af38-ed0281a86a24'),(159308,21115,NULL,8,3,0,'2021-05-11 02:22:37','2021-05-11 02:22:37',10,'f39a50ac-ca43-44ab-8ae7-5152f72f5f90'),(159309,21115,NULL,8,16,0,'2021-05-11 02:22:37','2021-05-11 02:22:37',11,'b8365ba7-c35d-4462-9707-a9e9849c5902'),(159310,21115,NULL,8,2,0,'2021-05-11 02:22:38','2021-05-11 02:22:38',12,'bd19b6e1-09e4-4d1d-8fc1-86368a38c37e'),(159311,21115,NULL,8,3,0,'2021-05-11 02:22:38','2021-05-11 02:22:38',13,'2d11b1e5-ecca-4f6c-abce-7d8f9b86e5ac'),(159313,21115,NULL,8,2,0,'2021-05-11 02:22:38','2021-05-11 02:22:38',14,'86c855d0-98ad-4ce2-8cd2-25b3dd46bcdc'),(159314,21115,NULL,8,3,0,'2021-05-11 02:22:38','2021-05-11 02:22:38',15,'065a4347-c9f6-42d3-8e2e-01dc710ffb0b'),(159316,21115,NULL,8,3,0,'2021-05-11 02:22:38','2021-05-11 02:22:38',16,'1fee691b-aee1-43f4-9b11-b4f7404f2a6f'),(159318,21115,NULL,8,3,0,'2021-05-11 02:22:38','2021-05-11 02:22:38',17,'30b37101-bac9-41ff-b641-ec8461d1d659'),(159320,21115,NULL,8,2,0,'2021-05-11 02:22:38','2021-05-11 02:22:38',18,'7b0978c2-b45d-4fec-8e05-2692dd276f54'),(159321,21115,NULL,8,3,0,'2021-05-11 02:22:38','2021-05-11 02:22:38',19,'117e62a0-4963-47f0-b2b5-5d6f92c67494'),(159323,21115,NULL,8,3,0,'2021-05-11 02:22:38','2021-05-11 02:22:38',20,'27048ed1-6e09-4a1b-b1cd-752e5e644bee'),(159325,21115,NULL,8,3,0,'2021-05-11 02:22:38','2021-05-11 02:22:38',21,'7a2aa64d-aa5d-4036-96d7-d2f12aabc368'),(159327,21115,NULL,8,2,0,'2021-05-11 02:22:38','2021-05-11 02:22:38',22,'06bce090-97cc-4ffd-bc4d-932224c4c5ea'),(159328,21115,NULL,8,3,0,'2021-05-11 02:22:38','2021-05-11 02:22:38',23,'93b69fee-bae4-4385-af61-2b8d51d2482c'),(159331,21115,NULL,8,2,0,'2021-05-11 02:22:38','2021-05-11 02:22:38',24,'e59b9431-6ff8-49e8-8cdc-9b793b68ebdf'),(159332,21115,NULL,8,15,0,'2021-05-11 02:22:38','2021-05-11 02:22:38',25,'64213cbf-f9b1-447c-981d-967609bd4c1d'),(159334,21115,NULL,8,2,0,'2021-05-11 02:22:38','2021-05-11 02:22:38',26,'88c175e2-aea2-46b9-87f9-c5cbbb466365'),(159335,21115,NULL,8,3,0,'2021-05-11 02:22:38','2021-05-11 02:22:38',27,'a4b122ea-551f-47f2-91c5-377d63465c24'),(159337,21115,NULL,8,3,0,'2021-05-11 02:22:38','2021-05-11 02:22:38',28,'f15eae57-340f-42a8-8fbc-44c79a1a49f9'),(159341,159340,NULL,8,2,NULL,'2021-05-11 02:22:39','2021-05-11 02:22:39',1,'0f33cfab-92f3-4209-a11d-8d42ccd4336d'),(159342,159340,NULL,8,3,NULL,'2021-05-11 02:22:39','2021-05-11 02:22:39',2,'d0e5d88c-d98a-4076-91da-1ff99a41ccec'),(159343,159340,NULL,8,2,NULL,'2021-05-11 02:22:39','2021-05-11 02:22:39',3,'2c0a4ed2-6d19-4d48-9b59-0b27414d429e'),(159344,159340,NULL,8,3,NULL,'2021-05-11 02:22:39','2021-05-11 02:22:39',4,'fdaadfe9-0c71-48c5-bcba-af26da945cf8'),(159347,159340,NULL,8,2,NULL,'2021-05-11 02:22:39','2021-05-11 02:22:39',5,'c13cb37a-3eb3-4086-b71e-d1a40a2d7ed7'),(159348,159340,NULL,8,3,NULL,'2021-05-11 02:22:39','2021-05-11 02:22:39',6,'3f3903a8-ecb6-4f85-bfe1-925f714cead6'),(159350,159340,NULL,8,2,NULL,'2021-05-11 02:22:39','2021-05-11 02:22:39',7,'3cae751d-daa7-4dd8-8ea6-d2f63bea981a'),(159351,159340,NULL,8,3,NULL,'2021-05-11 02:22:39','2021-05-11 02:22:39',8,'bb878a74-0a69-410c-b4f1-ea828eb7fd02'),(159353,159340,NULL,8,2,NULL,'2021-05-11 02:22:39','2021-05-11 02:22:39',9,'1735f7c7-755f-4718-8099-ac49c74f1c53'),(159354,159340,NULL,8,3,NULL,'2021-05-11 02:22:40','2021-05-11 02:22:40',10,'3a4d7a36-9825-42c0-9812-10574e906071'),(159355,159340,NULL,8,16,NULL,'2021-05-11 02:22:40','2021-05-11 02:22:40',11,'6f42396f-3ba6-4d0b-8fae-d6fe9729855d'),(159356,159340,NULL,8,2,NULL,'2021-05-11 02:22:40','2021-05-11 02:22:40',12,'dece7218-d7d6-4cb1-ac1d-556547bec72e'),(159357,159340,NULL,8,3,NULL,'2021-05-11 02:22:40','2021-05-11 02:22:40',13,'c338dbdb-a32e-444e-b10e-d989ab9ee42b'),(159359,159340,NULL,8,2,NULL,'2021-05-11 02:22:40','2021-05-11 02:22:40',14,'9c20a9ca-4f1c-4f81-a6d7-5bd8feb857a7'),(159360,159340,NULL,8,3,NULL,'2021-05-11 02:22:40','2021-05-11 02:22:40',15,'459955fa-037c-437d-a133-313bddd507c1'),(159362,159340,NULL,8,3,NULL,'2021-05-11 02:22:40','2021-05-11 02:22:40',16,'a24e3b79-9398-4671-a851-2f72641464ed'),(159364,159340,NULL,8,3,NULL,'2021-05-11 02:22:40','2021-05-11 02:22:40',17,'8907d996-8571-4744-884f-604175c5ea55'),(159366,159340,NULL,8,2,NULL,'2021-05-11 02:22:40','2021-05-11 02:22:40',18,'bd94d4d7-c86f-4e10-a0f9-cb6ba798e655'),(159367,159340,NULL,8,3,NULL,'2021-05-11 02:22:40','2021-05-11 02:22:40',19,'969d809c-e90d-464e-b65b-70994b3bd560'),(159369,159340,NULL,8,3,NULL,'2021-05-11 02:22:40','2021-05-11 02:22:40',20,'10e2a876-fef7-4838-a19f-8099451e107b'),(159371,159340,NULL,8,3,NULL,'2021-05-11 02:22:40','2021-05-11 02:22:40',21,'aed35982-60fd-40a6-9f43-a7ff3ca9cea5'),(159373,159340,NULL,8,2,NULL,'2021-05-11 02:22:40','2021-05-11 02:22:40',22,'dac3f3d1-1dd7-41a0-bed2-310564a1de27'),(159374,159340,NULL,8,3,NULL,'2021-05-11 02:22:40','2021-05-11 02:22:40',23,'6caaafdd-a857-4341-8ba4-97577adcb041'),(159377,159340,NULL,8,2,NULL,'2021-05-11 02:22:40','2021-05-11 02:22:40',24,'e4e3069b-8cdf-4877-b3ed-a4602429b4c0'),(159378,159340,NULL,8,15,NULL,'2021-05-11 02:22:40','2021-05-11 02:22:40',25,'14b0e794-2eed-42f2-bc7d-bffa616f2721'),(159380,159340,NULL,8,2,NULL,'2021-05-11 02:22:40','2021-05-11 02:22:40',26,'0fe4714b-f8e3-4480-a7e3-a9b583b9fd2b'),(159381,159340,NULL,8,3,NULL,'2021-05-11 02:22:40','2021-05-11 02:22:40',27,'2b1ccbd0-ccf4-4c53-b8a9-31b5ee60ad1d'),(159383,159340,NULL,8,3,NULL,'2021-05-11 02:22:40','2021-05-11 02:22:40',28,'26f7107d-c596-4601-9649-485b03acec01'),(159387,159386,NULL,8,2,NULL,'2021-05-11 02:23:35','2021-05-11 02:23:35',1,'123ae8d2-fa7b-44d3-b68b-d030cd7ebcaf'),(159388,159386,NULL,8,3,NULL,'2021-05-11 02:23:35','2021-05-11 02:23:35',2,'3f5cdacc-f7f9-4018-8f0b-10d64e5d1aba'),(159389,159386,NULL,8,2,NULL,'2021-05-11 02:23:35','2021-05-11 02:23:35',3,'fc109606-a430-460f-b966-fe80827b96e7'),(159390,159386,NULL,8,3,NULL,'2021-05-11 02:23:35','2021-05-11 02:23:35',4,'5e22676a-538e-4a89-9cdf-24502afdc373'),(159393,159386,NULL,8,2,NULL,'2021-05-11 02:23:35','2021-05-11 02:23:35',5,'007c272e-209f-477d-9beb-b4a081b5968b'),(159394,159386,NULL,8,3,NULL,'2021-05-11 02:23:35','2021-05-11 02:23:35',6,'e5cb9b75-4049-4259-a3cb-cdf23b4d7bf3'),(159396,159386,NULL,8,2,NULL,'2021-05-11 02:23:35','2021-05-11 02:23:35',7,'4c1cf88e-9c13-4f10-8626-4afae66f4a6e'),(159397,159386,NULL,8,3,NULL,'2021-05-11 02:23:35','2021-05-11 02:23:35',8,'be067637-4674-40cb-8d88-594a1d199a39'),(159399,159386,NULL,8,2,NULL,'2021-05-11 02:23:35','2021-05-11 02:23:35',9,'a2f210d7-796f-491e-8acf-dc70ead60da2'),(159400,159386,NULL,8,3,NULL,'2021-05-11 02:23:35','2021-05-11 02:23:35',10,'afca3866-462a-4d1e-8482-25d23d03d848'),(159401,159386,NULL,8,16,NULL,'2021-05-11 02:23:35','2021-05-11 02:23:35',11,'fd77af32-6761-462f-bc2e-25d6231977e2'),(159402,159386,NULL,8,2,NULL,'2021-05-11 02:23:35','2021-05-11 02:23:35',12,'21ad1ab0-e00d-414b-86af-71d81a919185'),(159403,159386,NULL,8,3,NULL,'2021-05-11 02:23:35','2021-05-11 02:23:35',13,'721fb231-7b7f-4736-b9e0-5df2d81f13c7'),(159405,159386,NULL,8,2,NULL,'2021-05-11 02:23:35','2021-05-11 02:23:35',14,'8da2407c-2b53-4c27-803e-44fe125913a0'),(159406,159386,NULL,8,3,NULL,'2021-05-11 02:23:35','2021-05-11 02:23:35',15,'4f06aa83-6fb4-4e74-97a5-a321503a4b50'),(159408,159386,NULL,8,3,NULL,'2021-05-11 02:23:35','2021-05-11 02:23:35',16,'a570e07a-8df6-4a51-8220-0da6ac32a1f6'),(159410,159386,NULL,8,3,NULL,'2021-05-11 02:23:35','2021-05-11 02:23:35',17,'ba7ed556-1552-4cdf-8cdf-63e0b34f13e9'),(159412,159386,NULL,8,2,NULL,'2021-05-11 02:23:35','2021-05-11 02:23:35',18,'bf6cdfca-7f0d-4956-8bdc-6b74fc24c809'),(159413,159386,NULL,8,3,NULL,'2021-05-11 02:23:35','2021-05-11 02:23:35',19,'f8c424c7-e1ea-4767-8b59-2b36acd7d2d0'),(159415,159386,NULL,8,3,NULL,'2021-05-11 02:23:35','2021-05-11 02:23:35',20,'7427c8cd-76da-420c-b82f-3c7c0449eebe'),(159417,159386,NULL,8,3,NULL,'2021-05-11 02:23:35','2021-05-11 02:23:35',21,'06f5518b-8e91-488d-9fe5-382990ee9b41'),(159419,159386,NULL,8,2,NULL,'2021-05-11 02:23:35','2021-05-11 02:23:35',22,'9d2e2a49-2aa5-47d2-ac18-376991162f60'),(159420,159386,NULL,8,3,NULL,'2021-05-11 02:23:35','2021-05-11 02:23:35',23,'5214c459-139f-4ebb-b703-a764b10c0a60'),(159423,159386,NULL,8,2,NULL,'2021-05-11 02:23:35','2021-05-11 02:23:35',24,'e277b1fd-e817-49a3-ab03-fc5fe6af8350'),(159424,159386,NULL,8,15,NULL,'2021-05-11 02:23:35','2021-05-11 02:23:35',25,'5833cb9e-1027-42e0-a7e3-2bee71fa4b49'),(159426,159386,NULL,8,2,NULL,'2021-05-11 02:23:35','2021-05-11 02:23:35',26,'e2133ce0-443e-482e-b9b0-172bd200a4b0'),(159427,159386,NULL,8,3,NULL,'2021-05-11 02:23:35','2021-05-11 02:23:35',27,'bf4ef03e-b055-48e6-b9a6-18173749ecd1'),(159429,159386,NULL,8,3,NULL,'2021-05-11 02:23:36','2021-05-11 02:23:36',28,'fcb1268d-2fcb-4e68-9fd5-5b399161f06f'),(160050,160049,NULL,8,2,NULL,'2021-05-11 02:38:06','2021-05-11 02:38:06',1,'c9bf1e39-9f69-47d9-9a89-ba7762905b5c'),(160051,160049,NULL,8,3,NULL,'2021-05-11 02:38:06','2021-05-11 02:38:06',2,'ede57df9-a3d0-4359-97bc-43dc73cbbcca'),(160055,160049,NULL,8,2,NULL,'2021-05-11 02:38:06','2021-05-11 02:38:06',3,'597fd4e2-4fad-48ba-a810-1d65e5f55c45'),(160056,160049,NULL,8,3,NULL,'2021-05-11 02:38:06','2021-05-11 02:38:06',4,'3754d482-2160-4016-934c-15692d11389f'),(160058,160049,NULL,8,2,NULL,'2021-05-11 02:38:06','2021-05-11 02:38:06',5,'a197892e-c175-4be4-8d02-8d8f8112848f'),(160059,160049,NULL,8,3,NULL,'2021-05-11 02:38:06','2021-05-11 02:38:06',6,'f04eb57c-2af6-4196-9a55-108ed1687e8a'),(160061,160049,NULL,8,2,NULL,'2021-05-11 02:38:06','2021-05-11 02:38:06',7,'de356d8f-2fef-4bb7-bf1f-35060e827427'),(160062,160049,NULL,8,3,NULL,'2021-05-11 02:38:06','2021-05-11 02:38:06',8,'cba939db-8ebf-498c-81f9-32cb545d91ba'),(160064,160049,NULL,8,3,NULL,'2021-05-11 02:38:06','2021-05-11 02:38:06',9,'22117e33-0f42-4d5d-9caf-f6f3e9fa11d5'),(160070,160049,NULL,8,3,NULL,'2021-05-11 02:38:06','2021-05-11 02:38:06',10,'2795c79a-1989-4105-b59b-f41afc58a7df'),(160074,160049,NULL,8,2,NULL,'2021-05-11 02:38:06','2021-05-11 02:38:06',11,'3e031a1a-233f-4e67-9edd-453d18f05c46'),(160075,160049,NULL,8,3,NULL,'2021-05-11 02:38:06','2021-05-11 02:38:06',12,'a836dcc0-cb9d-4b42-b718-0d1a241efd37'),(160079,160049,NULL,8,2,NULL,'2021-05-11 02:38:06','2021-05-11 02:38:06',13,'385486f8-08bc-48a2-91b5-18489670da1e'),(160080,160049,NULL,8,3,NULL,'2021-05-11 02:38:06','2021-05-11 02:38:06',14,'18af2100-e5bb-4d85-aa62-87ccf1b92713'),(160081,160049,NULL,8,7,NULL,'2021-05-11 02:38:06','2021-05-11 02:38:06',15,'5f2a4b18-25f7-4ef4-b8a9-a834d91bc7a9'),(160083,160082,NULL,8,2,NULL,'2021-05-11 02:38:13','2021-05-11 02:38:13',1,'0cdae7b8-b2ce-46f8-8699-82b4a73c96cf'),(160084,160082,NULL,8,3,NULL,'2021-05-11 02:38:13','2021-05-11 02:38:13',2,'d3286669-ef50-4a79-aea7-0e84cadfe357'),(160088,160082,NULL,8,2,NULL,'2021-05-11 02:38:13','2021-05-11 02:38:13',3,'af72fa68-3e7c-4e01-acc3-9672eeea9152'),(160089,160082,NULL,8,3,NULL,'2021-05-11 02:38:13','2021-05-11 02:38:13',4,'3c94c30b-5323-4ba8-b809-9c72d8a7e408'),(160091,160082,NULL,8,2,NULL,'2021-05-11 02:38:13','2021-05-11 02:38:13',5,'14531610-cd0e-4eeb-9fd4-13a672d14c5a'),(160092,160082,NULL,8,3,NULL,'2021-05-11 02:38:13','2021-05-11 02:38:13',6,'25147967-2012-4d98-96d6-5ba5725945d7'),(160094,160082,NULL,8,2,NULL,'2021-05-11 02:38:13','2021-05-11 02:38:13',7,'d00a6350-ea03-4b7e-98e6-081d9f59f630'),(160095,160082,NULL,8,3,NULL,'2021-05-11 02:38:13','2021-05-11 02:38:13',8,'28d07bf1-f46d-4b7c-b03e-1d42a356e84c'),(160097,160082,NULL,8,3,NULL,'2021-05-11 02:38:13','2021-05-11 02:38:13',9,'46605414-d51d-4654-af93-7e384a5825d3'),(160103,160082,NULL,8,3,NULL,'2021-05-11 02:38:13','2021-05-11 02:38:13',10,'e8e95ad0-b34a-433e-b5eb-bb09cdff317b'),(160107,160082,NULL,8,2,NULL,'2021-05-11 02:38:13','2021-05-11 02:38:13',11,'bd60dfdf-750e-48be-a8a7-0285b2c8acb8'),(160108,160082,NULL,8,3,NULL,'2021-05-11 02:38:13','2021-05-11 02:38:13',12,'4662fa46-4615-441e-b92e-3c75c460392e'),(160112,160082,NULL,8,2,NULL,'2021-05-11 02:38:13','2021-05-11 02:38:13',13,'57d2144c-8c52-497a-ae69-8d64544e931b'),(160113,160082,NULL,8,3,NULL,'2021-05-11 02:38:13','2021-05-11 02:38:13',14,'15173b0e-57a0-4aa0-bc72-40b49f6a61f7'),(160114,160082,NULL,8,7,NULL,'2021-05-11 02:38:13','2021-05-11 02:38:13',15,'99d51ec9-9ff4-454b-ba18-5f2429ec7ed9'),(160205,160204,NULL,8,2,NULL,'2021-05-11 04:33:15','2021-05-11 04:33:15',1,'6f2c93e0-18a5-40f7-9bc5-12de90102850'),(160206,160204,NULL,8,3,NULL,'2021-05-11 04:33:15','2021-05-11 04:33:15',2,'18cef56e-7d2b-4414-9113-3e5cd0e22451'),(160207,160204,NULL,8,2,NULL,'2021-05-11 04:33:15','2021-05-11 04:33:15',3,'ee64e933-27f5-401b-9e2e-1b850867b89a'),(160208,160204,NULL,8,3,NULL,'2021-05-11 04:33:15','2021-05-11 04:33:15',4,'6a6a5b75-517c-4df5-a0c5-f1791f3d7742'),(160213,160204,NULL,8,4,NULL,'2021-05-11 04:33:15','2021-05-11 04:33:15',5,'c3099392-152b-4078-bbd8-30877785960a'),(160214,160204,NULL,8,3,NULL,'2021-05-11 04:33:15','2021-05-11 04:33:15',6,'c0c4a0f1-644e-41fa-a241-158d357bc073'),(160219,160204,NULL,8,4,NULL,'2021-05-11 04:33:15','2021-05-11 04:33:15',7,'cfc33cce-4313-4316-8fa1-300bf5f263cb'),(160220,160204,NULL,8,3,NULL,'2021-05-11 04:33:15','2021-05-11 04:33:15',8,'8be13fbb-932b-472e-bff4-2194f11603da'),(160224,160204,NULL,8,2,NULL,'2021-05-11 04:33:15','2021-05-11 04:33:15',9,'dfc85206-1d81-4fef-ba3a-34ac2e677284'),(160225,160204,NULL,8,3,NULL,'2021-05-11 04:33:15','2021-05-11 04:33:15',10,'20aff170-c684-45b4-a80f-642f48df13fd'),(160226,160204,NULL,8,2,NULL,'2021-05-11 04:33:15','2021-05-11 04:33:15',11,'ff66e2df-127b-42ba-8021-3fc736677694'),(160227,160204,NULL,8,3,NULL,'2021-05-11 04:33:15','2021-05-11 04:33:15',12,'677dbcfa-5b6d-4535-83a8-680de22db45d'),(160229,160204,NULL,8,2,NULL,'2021-05-11 04:33:15','2021-05-11 04:33:15',13,'c4668c41-a81c-4665-9834-ef2304f3a785'),(160230,160204,NULL,8,3,NULL,'2021-05-11 04:33:15','2021-05-11 04:33:15',14,'b2286b7c-6c1e-407d-9403-dea557348c88'),(160236,160204,NULL,8,2,NULL,'2021-05-11 04:33:15','2021-05-11 04:33:15',15,'703f05b9-24c8-41c9-8a99-43f07f715ac4'),(160237,160204,NULL,8,3,NULL,'2021-05-11 04:33:15','2021-05-11 04:33:15',16,'1b0e6369-637d-4bac-b9b5-7e22921e4cd6'),(160238,160204,NULL,8,16,NULL,'2021-05-11 04:33:15','2021-05-11 04:33:15',17,'2b655fe6-f65a-4519-8d63-d1a0e059a394'),(160239,160204,NULL,8,2,NULL,'2021-05-11 04:33:15','2021-05-11 04:33:15',18,'a5c3e035-2907-4652-aaa8-61f0b6293bd5'),(160240,160204,NULL,8,3,NULL,'2021-05-11 04:33:15','2021-05-11 04:33:15',19,'6f102a68-f7c1-42b3-bf7f-ae7f47b0f8cd'),(160244,160204,NULL,8,3,NULL,'2021-05-11 04:33:15','2021-05-11 04:33:15',20,'c5beca1d-9202-46c2-8dd9-1ae227dd3bc8'),(160246,160245,NULL,8,2,NULL,'2021-05-11 04:33:20','2021-05-11 04:33:20',1,'b5e06afe-5c3a-404d-bece-30e0b5ecdd77'),(160247,160245,NULL,8,3,NULL,'2021-05-11 04:33:20','2021-05-11 04:33:20',2,'7c13c6a5-63ab-48d5-9779-fd41a671cd92'),(160248,160245,NULL,8,2,NULL,'2021-05-11 04:33:20','2021-05-11 04:33:20',3,'7370b75a-6b01-4966-b970-e198784d3f01'),(160249,160245,NULL,8,3,NULL,'2021-05-11 04:33:20','2021-05-11 04:33:20',4,'70c85bf6-80c0-42aa-ab53-08032d76325f'),(160254,160245,NULL,8,4,NULL,'2021-05-11 04:33:20','2021-05-11 04:33:20',5,'029eb271-af9d-4de4-950b-90d05e1478e0'),(160255,160245,NULL,8,3,NULL,'2021-05-11 04:33:20','2021-05-11 04:33:20',6,'045a8b4e-12c9-4716-af23-a16936015a31'),(160260,160245,NULL,8,4,NULL,'2021-05-11 04:33:20','2021-05-11 04:33:20',7,'7dfbc9e8-0b2e-4b3d-a355-69349b7e452a'),(160261,160245,NULL,8,3,NULL,'2021-05-11 04:33:20','2021-05-11 04:33:20',8,'3e1d1d0c-584d-400b-a39a-4c382ed7216d'),(160265,160245,NULL,8,2,NULL,'2021-05-11 04:33:20','2021-05-11 04:33:20',9,'be367083-b9bf-4b3a-a58e-5c23cdbeb877'),(160266,160245,NULL,8,3,NULL,'2021-05-11 04:33:20','2021-05-11 04:33:20',10,'2aed7544-91ab-4d26-9ae0-17f2509ccdae'),(160267,160245,NULL,8,2,NULL,'2021-05-11 04:33:20','2021-05-11 04:33:20',11,'b5d068a3-f6a7-4468-87f3-dcb0917134b4'),(160268,160245,NULL,8,3,NULL,'2021-05-11 04:33:20','2021-05-11 04:33:20',12,'f2b4c2e3-0cdc-4363-a828-8249bf4bfd28'),(160270,160245,NULL,8,2,NULL,'2021-05-11 04:33:20','2021-05-11 04:33:20',13,'ea430449-6a52-4664-8b2f-be4dd7a109ad'),(160271,160245,NULL,8,3,NULL,'2021-05-11 04:33:20','2021-05-11 04:33:20',14,'e09d1aa1-40a6-42d2-9c60-ea2e8a2639ae'),(160277,160245,NULL,8,2,NULL,'2021-05-11 04:33:20','2021-05-11 04:33:20',15,'3c04380e-d400-4c78-8dfb-8e7ecaddcc63'),(160278,160245,NULL,8,3,NULL,'2021-05-11 04:33:20','2021-05-11 04:33:20',16,'e0d61826-b56a-45cd-82a7-0eb5c2063692'),(160279,160245,NULL,8,16,NULL,'2021-05-11 04:33:20','2021-05-11 04:33:20',17,'68c2ff3b-13ff-4822-8e2d-8046dd0daa71'),(160280,160245,NULL,8,2,NULL,'2021-05-11 04:33:20','2021-05-11 04:33:20',18,'0c67fd2d-2306-4308-96a2-5785b012cba0'),(160281,160245,NULL,8,3,NULL,'2021-05-11 04:33:20','2021-05-11 04:33:20',19,'669ef368-3bd0-486b-83f8-16ab641ec2d7'),(160285,160245,NULL,8,3,NULL,'2021-05-11 04:33:20','2021-05-11 04:33:20',20,'670a234c-46c0-44ab-99eb-0d3f608bd2b8'),(160287,160286,NULL,8,2,NULL,'2021-05-11 04:33:22','2021-05-11 04:33:22',1,'fe2ac21a-abdc-48c4-97f5-f47b51afac0d'),(160288,160286,NULL,8,3,NULL,'2021-05-11 04:33:22','2021-05-11 04:33:22',2,'4de2e4e6-f13d-4cc1-a4d9-92c5ccc0b0ef'),(160289,160286,NULL,8,2,NULL,'2021-05-11 04:33:22','2021-05-11 04:33:22',3,'1818a1d8-bc28-44b1-b850-dca7716bdb6e'),(160290,160286,NULL,8,3,NULL,'2021-05-11 04:33:22','2021-05-11 04:33:22',4,'5c815b4d-9dee-4b34-bafd-371580b6f091'),(160295,160286,NULL,8,4,NULL,'2021-05-11 04:33:22','2021-05-11 04:33:22',5,'1590a5c6-5438-45b1-b0fa-61b16dfd5b0f'),(160296,160286,NULL,8,3,NULL,'2021-05-11 04:33:22','2021-05-11 04:33:22',6,'5f0ad519-fef8-41d2-8853-da83f4e38a67'),(160301,160286,NULL,8,4,NULL,'2021-05-11 04:33:22','2021-05-11 04:33:22',7,'da3a27da-0c95-4bd8-94f7-128cd1b83a09'),(160302,160286,NULL,8,3,NULL,'2021-05-11 04:33:22','2021-05-11 04:33:22',8,'8a53c2d8-75a7-4e92-be76-8b8d1757e898'),(160306,160286,NULL,8,2,NULL,'2021-05-11 04:33:22','2021-05-11 04:33:22',9,'c5626994-047f-44aa-aa54-6cb64b9b9cdf'),(160307,160286,NULL,8,3,NULL,'2021-05-11 04:33:22','2021-05-11 04:33:22',10,'2f58bfb5-5768-4f5d-93ad-202eb6f0fbf6'),(160308,160286,NULL,8,2,NULL,'2021-05-11 04:33:22','2021-05-11 04:33:22',11,'1d7ffaf1-a0b1-453e-8d16-24f86b5c4a8a'),(160309,160286,NULL,8,3,NULL,'2021-05-11 04:33:22','2021-05-11 04:33:22',12,'cc2423e9-9428-4c02-be4d-9640927339df'),(160311,160286,NULL,8,2,NULL,'2021-05-11 04:33:22','2021-05-11 04:33:22',13,'80b4bddd-3c5c-4cb0-b8d6-9c422dcc6cfe'),(160312,160286,NULL,8,3,NULL,'2021-05-11 04:33:22','2021-05-11 04:33:22',14,'ce21771d-0a38-4158-850a-709d0b061b55'),(160318,160286,NULL,8,2,NULL,'2021-05-11 04:33:22','2021-05-11 04:33:22',15,'4713bbd7-11f8-4bb0-aa3f-76f2a5ee5200'),(160319,160286,NULL,8,3,NULL,'2021-05-11 04:33:22','2021-05-11 04:33:22',16,'ed79b07d-1638-48f9-971c-eecb64adc074'),(160320,160286,NULL,8,16,NULL,'2021-05-11 04:33:22','2021-05-11 04:33:22',17,'ca6f931f-bacb-4088-a54b-2dfa7df99969'),(160321,160286,NULL,8,2,NULL,'2021-05-11 04:33:22','2021-05-11 04:33:22',18,'10ed0433-83c8-4f8f-9c45-f6151845766e'),(160322,160286,NULL,8,3,NULL,'2021-05-11 04:33:22','2021-05-11 04:33:22',19,'2e1c5a80-cde9-420c-ba45-1ce0ff4f30ec'),(160326,160286,NULL,8,3,NULL,'2021-05-11 04:33:22','2021-05-11 04:33:22',20,'967716f9-16a4-458f-ba3c-7a727fd7b555'),(160328,160327,NULL,8,2,NULL,'2021-05-11 04:38:43','2021-05-11 04:38:43',1,'e59f13e3-c294-4143-8fa0-f6019eb4c4dc'),(160329,160327,NULL,8,3,NULL,'2021-05-11 04:38:43','2021-05-11 04:38:43',2,'86ca2715-8c31-455a-bfbf-3cb0279a1c26'),(160330,160327,NULL,8,2,NULL,'2021-05-11 04:38:43','2021-05-11 04:38:43',3,'f8741192-8156-4483-9f03-d86278839850'),(160331,160327,NULL,8,3,NULL,'2021-05-11 04:38:43','2021-05-11 04:38:43',4,'24503134-1f26-4d7a-98fe-b37c40f0092d'),(160336,160327,NULL,8,4,NULL,'2021-05-11 04:38:43','2021-05-11 04:38:43',5,'d214c3b7-2c8f-433c-ace4-def157b12d9b'),(160337,160327,NULL,8,3,NULL,'2021-05-11 04:38:43','2021-05-11 04:38:43',6,'6c6f7d69-ac0e-46d3-94b5-bd0daaa9c13c'),(160342,160327,NULL,8,4,NULL,'2021-05-11 04:38:43','2021-05-11 04:38:43',7,'0e370f36-2bae-4ccd-8219-24ff1c35352b'),(160343,160327,NULL,8,3,NULL,'2021-05-11 04:38:43','2021-05-11 04:38:43',8,'04bdeb4b-e4a3-4e07-979a-c82d1af290ec'),(160347,160327,NULL,8,2,NULL,'2021-05-11 04:38:43','2021-05-11 04:38:43',9,'a62e7920-7f5d-429a-9cc3-23a6cc573a73'),(160348,160327,NULL,8,3,NULL,'2021-05-11 04:38:43','2021-05-11 04:38:43',10,'5f47ac2a-da1d-45cd-9f81-662a693dd837'),(160349,160327,NULL,8,2,NULL,'2021-05-11 04:38:43','2021-05-11 04:38:43',11,'83129cc9-9778-467d-849b-2e88b415e3f2'),(160350,160327,NULL,8,3,NULL,'2021-05-11 04:38:43','2021-05-11 04:38:43',12,'722a1a52-cf2f-415b-883e-181790b7553a'),(160352,160327,NULL,8,2,NULL,'2021-05-11 04:38:43','2021-05-11 04:38:43',13,'d8da07c8-bac7-4922-82a7-2d3ac9059d18'),(160353,160327,NULL,8,3,NULL,'2021-05-11 04:38:43','2021-05-11 04:38:43',14,'bede67bc-f285-4358-a585-259c3975a484'),(160359,160327,NULL,8,2,NULL,'2021-05-11 04:38:43','2021-05-11 04:38:43',15,'e7f7b1ef-8f12-49a8-a004-87e5672ba613'),(160360,160327,NULL,8,3,NULL,'2021-05-11 04:38:43','2021-05-11 04:38:43',16,'dc6de260-1780-4109-98f2-bca9ac38a88a'),(160361,160327,NULL,8,16,NULL,'2021-05-11 04:38:43','2021-05-11 04:38:43',17,'e64d1715-7b82-4eab-aa08-10225c881f81'),(160362,160327,NULL,8,2,NULL,'2021-05-11 04:38:43','2021-05-11 04:38:43',18,'d5586d6d-8150-4be9-bc24-9e0e21baedbf'),(160363,160327,NULL,8,3,NULL,'2021-05-11 04:38:43','2021-05-11 04:38:43',19,'0053c922-02e3-4c32-b5a4-a011b720febb'),(160367,160327,NULL,8,3,NULL,'2021-05-11 04:38:43','2021-05-11 04:38:43',20,'db7c6331-cd07-4858-9955-b68fd1f207f2'),(160399,160398,NULL,8,2,NULL,'2021-05-11 04:44:56','2021-05-11 04:44:56',1,'f32f36ea-e3f9-49fc-8d05-75c7f6ebe83a'),(160400,160398,NULL,8,3,NULL,'2021-05-11 04:44:56','2021-05-11 04:44:56',2,'9e25c811-6136-4c6a-a7d3-3f12cb3419b1'),(160402,160398,NULL,8,2,NULL,'2021-05-11 04:44:56','2021-05-11 04:44:56',3,'08f5f484-25f4-4fae-921f-ce23825bf76f'),(160403,160398,NULL,8,3,NULL,'2021-05-11 04:44:56','2021-05-11 04:44:56',4,'fcbb5db3-63be-43c1-a14f-e9c59cb92e05'),(160404,160398,NULL,8,2,NULL,'2021-05-11 04:44:56','2021-05-11 04:44:56',5,'7a50d68b-b0bb-42ce-8368-72f985ac7a54'),(160405,160398,NULL,8,3,NULL,'2021-05-11 04:44:56','2021-05-11 04:44:56',6,'868b6690-8435-4242-a7c4-aa70eaa6859c'),(160408,160398,NULL,8,2,NULL,'2021-05-11 04:44:56','2021-05-11 04:44:56',7,'a3c0d1f3-b9bc-4b98-ac97-15af02d2506c'),(160409,160398,NULL,8,3,NULL,'2021-05-11 04:44:56','2021-05-11 04:44:56',8,'0c1adf6c-ec1b-431b-a2c2-c6e51b830368'),(160413,160412,NULL,8,2,NULL,'2021-05-11 04:45:00','2021-05-11 04:45:00',1,'7585ddcf-28dc-47e1-8f3e-f1174b6ef54f'),(160414,160412,NULL,8,3,NULL,'2021-05-11 04:45:00','2021-05-11 04:45:00',2,'94b5a363-80ae-4f5a-bb34-b3036b449ff2'),(160416,160412,NULL,8,2,NULL,'2021-05-11 04:45:00','2021-05-11 04:45:00',3,'4b368cce-3789-4233-b3b8-afe325b73934'),(160417,160412,NULL,8,3,NULL,'2021-05-11 04:45:00','2021-05-11 04:45:00',4,'8ecbb967-4ac2-42da-ad99-512fd7c74dc0'),(160418,160412,NULL,8,2,NULL,'2021-05-11 04:45:00','2021-05-11 04:45:00',5,'2ce5f5cd-bb65-45e1-be72-929c148e4e87'),(160419,160412,NULL,8,3,NULL,'2021-05-11 04:45:00','2021-05-11 04:45:00',6,'a30d9b1d-50a9-4c83-b627-d9b66e84d852'),(160422,160412,NULL,8,2,NULL,'2021-05-11 04:45:00','2021-05-11 04:45:00',7,'2b4a4231-9189-44a8-b880-d172c7052a19'),(160423,160412,NULL,8,3,NULL,'2021-05-11 04:45:00','2021-05-11 04:45:00',8,'65ac2177-e85d-45c5-ad2a-6f877bfc2b4d'),(160446,160445,NULL,8,2,NULL,'2021-05-11 04:48:18','2021-05-11 04:48:18',1,'f6ac6525-a19a-4ddf-922c-ccc209449d61'),(160447,160445,NULL,8,3,NULL,'2021-05-11 04:48:18','2021-05-11 04:48:18',2,'82692760-c927-4b42-9747-364fb5fd4a9c'),(160449,160445,NULL,8,2,NULL,'2021-05-11 04:48:18','2021-05-11 04:48:18',3,'3d5f0bc7-be22-4d5b-b21d-82917293f883'),(160450,160445,NULL,8,3,NULL,'2021-05-11 04:48:18','2021-05-11 04:48:18',4,'86065dea-f02a-4427-a348-2eb90be3d94e'),(160453,160452,NULL,8,2,NULL,'2021-05-11 04:48:23','2021-05-11 04:48:23',1,'b860cee6-46de-4daa-9416-1461322e4a0e'),(160454,160452,NULL,8,3,NULL,'2021-05-11 04:48:23','2021-05-11 04:48:23',2,'a288b4cf-2765-416c-99e5-9dfbccc792af'),(160456,160452,NULL,8,2,NULL,'2021-05-11 04:48:23','2021-05-11 04:48:23',3,'47db3bda-7a37-49fa-a0dc-54ac945fe52a'),(160457,160452,NULL,8,3,NULL,'2021-05-11 04:48:23','2021-05-11 04:48:23',4,'40884dfe-52da-4893-a66b-34a806fa7b84'),(160968,21115,NULL,8,2,0,'2021-05-11 04:58:17','2021-05-11 04:58:17',1,'e6ff3b0b-9583-42b3-b58d-db38a8f48104'),(160969,21115,NULL,8,3,0,'2021-05-11 04:58:17','2021-05-11 04:58:17',2,'24ecd201-dea6-4011-a858-dbbe1146586e'),(160970,21115,NULL,8,2,0,'2021-05-11 04:58:17','2021-05-11 04:58:17',3,'a8a3ec32-b9d5-4bbd-b080-02ed2aef4dea'),(160971,21115,NULL,8,3,0,'2021-05-11 04:58:17','2021-05-11 04:58:17',4,'3aba82fa-e3ff-4f87-97b5-740f41d2851b'),(160974,21115,NULL,8,2,0,'2021-05-11 04:58:17','2021-05-11 04:58:17',5,'01f4aaaa-8e3a-40f5-a12b-8a21e0043a31'),(160975,21115,NULL,8,3,0,'2021-05-11 04:58:17','2021-05-11 04:58:17',6,'c64e5842-f9d2-4f20-8d02-50f27f5d621a'),(160977,21115,NULL,8,2,0,'2021-05-11 04:58:17','2021-05-11 04:58:17',7,'3228bf1f-b679-4559-9dfa-746c893a6fae'),(160978,21115,NULL,8,3,0,'2021-05-11 04:58:17','2021-05-11 04:58:17',8,'1ab82b8e-ee54-4d66-8756-832c85dcf641'),(160980,21115,NULL,8,2,0,'2021-05-11 04:58:17','2021-05-11 04:58:17',9,'2beda859-b02b-4229-8ca6-f5419bad730d'),(160981,21115,NULL,8,3,0,'2021-05-11 04:58:17','2021-05-11 04:58:17',10,'b7814ac5-ad92-4ef9-8e1a-c15673e45f6a'),(160982,21115,NULL,8,16,0,'2021-05-11 04:58:17','2021-05-11 04:58:17',11,'66edc004-60d4-4f0a-af1c-bd11d4fb2373'),(160983,21115,NULL,8,2,0,'2021-05-11 04:58:17','2021-05-11 04:58:17',12,'ab96f88d-c016-4f64-bc1c-ad2b867e05f7'),(160984,21115,NULL,8,3,0,'2021-05-11 04:58:17','2021-05-11 04:58:17',13,'4b06b324-2a61-49e3-9e42-d3a1aa005402'),(160986,21115,NULL,8,2,0,'2021-05-11 04:58:17','2021-05-11 04:58:17',14,'099b2ae7-18df-4782-81f5-a1abdb97340f'),(160987,21115,NULL,8,3,0,'2021-05-11 04:58:17','2021-05-11 04:58:17',15,'2a0be9be-33ee-437d-80e4-e044716f7d5f'),(160989,21115,NULL,8,3,0,'2021-05-11 04:58:17','2021-05-11 04:58:17',16,'c3cb1082-7664-476e-bd91-9a26dd793791'),(160991,21115,NULL,8,3,0,'2021-05-11 04:58:17','2021-05-11 04:58:17',17,'03c9bdac-4e2b-46a8-bf43-61255a2384b4'),(160993,21115,NULL,8,2,0,'2021-05-11 04:58:17','2021-05-11 04:58:17',18,'ccbda89b-1485-4e4c-992c-934dba5737ee'),(160994,21115,NULL,8,3,0,'2021-05-11 04:58:17','2021-05-11 04:58:17',19,'f1d925d9-bd91-4882-b7a3-66947d5b6907'),(160996,21115,NULL,8,3,0,'2021-05-11 04:58:18','2021-05-11 04:58:18',20,'27cac214-981c-4eb2-be7a-c28f9be0b5ac'),(160998,21115,NULL,8,3,0,'2021-05-11 04:58:18','2021-05-11 04:58:18',21,'39938790-1749-4309-821e-a3a060abd9e1'),(161000,21115,NULL,8,2,0,'2021-05-11 04:58:18','2021-05-11 04:58:18',22,'05f57e53-222b-47ab-8aae-da2c0e3a35b5'),(161001,21115,NULL,8,3,0,'2021-05-11 04:58:18','2021-05-11 04:58:18',23,'9a276dfa-a1e9-4c5f-ae8d-83d349426612'),(161004,21115,NULL,8,2,0,'2021-05-11 04:58:18','2021-05-11 04:58:18',24,'446a27c5-6ce9-4b8e-8c04-fe44d4a9c73f'),(161005,21115,NULL,8,15,0,'2021-05-11 04:58:18','2021-05-11 04:58:18',25,'49c48e0e-dad7-485f-80e8-27c3a55688df'),(161007,21115,NULL,8,2,0,'2021-05-11 04:58:18','2021-05-11 04:58:18',26,'0fc76892-2ac6-455d-aaee-eb1fe569d675'),(161008,21115,NULL,8,3,0,'2021-05-11 04:58:18','2021-05-11 04:58:18',27,'b7f629e4-f9a3-4c94-8895-9000c4c2f778'),(161009,21115,NULL,8,3,0,'2021-05-11 04:58:18','2021-05-11 04:58:18',28,'9a508836-ba2d-4acd-ae5e-83dbcd61df0f'),(161013,161012,NULL,8,2,NULL,'2021-05-11 04:58:19','2021-05-11 04:58:19',1,'29ebf365-5d66-4c85-ad34-50937756eb75'),(161014,161012,NULL,8,3,NULL,'2021-05-11 04:58:19','2021-05-11 04:58:19',2,'7101173b-241c-47cd-b22f-5d0b94f76488'),(161015,161012,NULL,8,2,NULL,'2021-05-11 04:58:19','2021-05-11 04:58:19',3,'bffb69e1-0bff-41c6-b9a5-ff4d75ea3719'),(161016,161012,NULL,8,3,NULL,'2021-05-11 04:58:20','2021-05-11 04:58:20',4,'93371c4b-c1fe-4eb0-aaee-4927ee13cda9'),(161019,161012,NULL,8,2,NULL,'2021-05-11 04:58:20','2021-05-11 04:58:20',5,'dbe457a5-f980-4b25-b6a2-fd5d344151da'),(161020,161012,NULL,8,3,NULL,'2021-05-11 04:58:20','2021-05-11 04:58:20',6,'2dd54c1d-d61b-4177-a1d0-4b83fb56e246'),(161022,161012,NULL,8,2,NULL,'2021-05-11 04:58:20','2021-05-11 04:58:20',7,'5aacd907-c93e-42c1-8ac0-474b0e05d134'),(161023,161012,NULL,8,3,NULL,'2021-05-11 04:58:20','2021-05-11 04:58:20',8,'3a197cf8-f5a1-4a9e-bad1-7af816af2da0'),(161025,161012,NULL,8,2,NULL,'2021-05-11 04:58:20','2021-05-11 04:58:20',9,'d645b268-d172-4710-966e-d004274bacbf'),(161026,161012,NULL,8,3,NULL,'2021-05-11 04:58:20','2021-05-11 04:58:20',10,'dc2ca592-4518-4f17-b0b2-dfdcb7aaf37a'),(161027,161012,NULL,8,16,NULL,'2021-05-11 04:58:20','2021-05-11 04:58:20',11,'419e8105-7288-4e53-90b3-e9ed96d3b043'),(161028,161012,NULL,8,2,NULL,'2021-05-11 04:58:20','2021-05-11 04:58:20',12,'b62ffd0d-0eed-4bfb-82de-187a3ec08d86'),(161029,161012,NULL,8,3,NULL,'2021-05-11 04:58:20','2021-05-11 04:58:20',13,'ef4110f6-6c2b-46d1-a952-7d6b4a7cb7b7'),(161031,161012,NULL,8,2,NULL,'2021-05-11 04:58:20','2021-05-11 04:58:20',14,'fe80a264-f134-4b50-a3cb-bd19cdacf3b9'),(161032,161012,NULL,8,3,NULL,'2021-05-11 04:58:20','2021-05-11 04:58:20',15,'facd9a1d-9762-49fd-8ebc-b31e2be3d79b'),(161034,161012,NULL,8,3,NULL,'2021-05-11 04:58:20','2021-05-11 04:58:20',16,'f0c1eb3c-f2ae-4165-84c7-e3d0af9f7cf7'),(161036,161012,NULL,8,3,NULL,'2021-05-11 04:58:20','2021-05-11 04:58:20',17,'3a5b593a-baab-49b8-8246-c401d3835b29'),(161038,161012,NULL,8,2,NULL,'2021-05-11 04:58:20','2021-05-11 04:58:20',18,'0f0ecc47-c5ca-42c8-a88a-bf1b47e501d0'),(161039,161012,NULL,8,3,NULL,'2021-05-11 04:58:20','2021-05-11 04:58:20',19,'aa0cefce-1d4e-476c-9f8a-feec259762b6'),(161041,161012,NULL,8,3,NULL,'2021-05-11 04:58:20','2021-05-11 04:58:20',20,'9e8d84eb-2fcd-4520-92b4-bb172f273434'),(161043,161012,NULL,8,3,NULL,'2021-05-11 04:58:20','2021-05-11 04:58:20',21,'5044cb6d-b7bd-43ea-8255-c359d2803ed4'),(161045,161012,NULL,8,2,NULL,'2021-05-11 04:58:20','2021-05-11 04:58:20',22,'3ba42e72-3768-468d-922e-b196d09e08c2'),(161046,161012,NULL,8,3,NULL,'2021-05-11 04:58:20','2021-05-11 04:58:20',23,'ab830884-6a52-4f15-89ae-d0cab6d71202'),(161049,161012,NULL,8,2,NULL,'2021-05-11 04:58:20','2021-05-11 04:58:20',24,'379a80bb-7b8b-40aa-ba8f-b1ea74fdf9b4'),(161050,161012,NULL,8,15,NULL,'2021-05-11 04:58:20','2021-05-11 04:58:20',25,'01017d48-5813-44a0-b2d9-c1bd5f1ded28'),(161052,161012,NULL,8,2,NULL,'2021-05-11 04:58:20','2021-05-11 04:58:20',26,'b9e41666-bcd3-45f0-b499-f08bedfc2887'),(161053,161012,NULL,8,3,NULL,'2021-05-11 04:58:20','2021-05-11 04:58:20',27,'fd558945-449c-474c-b751-d92cbe17327e'),(161054,161012,NULL,8,3,NULL,'2021-05-11 04:58:20','2021-05-11 04:58:20',28,'c57d2084-807c-4000-afe8-24bef9d00f17'),(161058,161057,NULL,8,2,NULL,'2021-05-11 04:58:29','2021-05-11 04:58:29',1,'a52d0892-2f11-4c10-9896-546e90ba0d98'),(161059,161057,NULL,8,3,NULL,'2021-05-11 04:58:29','2021-05-11 04:58:29',2,'d242630e-5b9e-449c-a240-63b8b79b0130'),(161060,161057,NULL,8,2,NULL,'2021-05-11 04:58:29','2021-05-11 04:58:29',3,'7734df1d-ba96-41a2-9824-cd8253c5b20f'),(161061,161057,NULL,8,3,NULL,'2021-05-11 04:58:29','2021-05-11 04:58:29',4,'ec906a9c-5b04-4585-adfd-6591fe5041bb'),(161064,161057,NULL,8,2,NULL,'2021-05-11 04:58:29','2021-05-11 04:58:29',5,'1746e3c0-a413-45ad-97fa-e32cace3f19e'),(161065,161057,NULL,8,3,NULL,'2021-05-11 04:58:29','2021-05-11 04:58:29',6,'ea9ae98a-b74c-4a4f-9d13-130e085d6b45'),(161067,161057,NULL,8,2,NULL,'2021-05-11 04:58:29','2021-05-11 04:58:29',7,'1b5ab627-c646-4c86-b22d-c7a483ebace5'),(161068,161057,NULL,8,3,NULL,'2021-05-11 04:58:29','2021-05-11 04:58:29',8,'cba03b6d-7b9d-49e0-81c6-0f383bde7a2d'),(161070,161057,NULL,8,2,NULL,'2021-05-11 04:58:29','2021-05-11 04:58:29',9,'ccc1e38b-fd3b-4f3b-b9d3-8ccf10aea13e'),(161071,161057,NULL,8,3,NULL,'2021-05-11 04:58:29','2021-05-11 04:58:29',10,'810b2f8e-cbce-4c2b-877d-bae50348d15d'),(161072,161057,NULL,8,16,NULL,'2021-05-11 04:58:29','2021-05-11 04:58:29',11,'176cde8c-5ab6-4916-9524-d7e69c421ec6'),(161073,161057,NULL,8,2,NULL,'2021-05-11 04:58:29','2021-05-11 04:58:29',12,'94cc2edc-c956-4f08-a436-6fb02b0bf0b1'),(161074,161057,NULL,8,3,NULL,'2021-05-11 04:58:29','2021-05-11 04:58:29',13,'89a33a47-269d-41c1-ad6e-0937841c038c'),(161076,161057,NULL,8,2,NULL,'2021-05-11 04:58:29','2021-05-11 04:58:29',14,'a94a0910-3d48-4b7c-bcc6-429e324960c5'),(161077,161057,NULL,8,3,NULL,'2021-05-11 04:58:29','2021-05-11 04:58:29',15,'6c244acd-cf1c-458c-8f8c-59deafef5cdc'),(161079,161057,NULL,8,3,NULL,'2021-05-11 04:58:29','2021-05-11 04:58:29',16,'766efba7-6ca4-40a7-871b-72557cfff92e'),(161081,161057,NULL,8,3,NULL,'2021-05-11 04:58:29','2021-05-11 04:58:29',17,'c04317a1-e254-4841-accd-1151ae90f98d'),(161083,161057,NULL,8,2,NULL,'2021-05-11 04:58:29','2021-05-11 04:58:29',18,'fae9fe60-5ea6-4d45-85d3-ba51a4b415e5'),(161084,161057,NULL,8,3,NULL,'2021-05-11 04:58:29','2021-05-11 04:58:29',19,'493cb9e6-e103-4e72-a921-3ec407eac22b'),(161086,161057,NULL,8,3,NULL,'2021-05-11 04:58:29','2021-05-11 04:58:29',20,'1123df52-e209-45f3-98c1-421536338f13'),(161088,161057,NULL,8,3,NULL,'2021-05-11 04:58:29','2021-05-11 04:58:29',21,'eb118f87-3e1a-46e9-94c5-73cc8aa0cfee'),(161090,161057,NULL,8,2,NULL,'2021-05-11 04:58:29','2021-05-11 04:58:29',22,'2624099e-5e6a-48f8-a986-3ab37eb228a7'),(161091,161057,NULL,8,3,NULL,'2021-05-11 04:58:29','2021-05-11 04:58:29',23,'c62fbfb2-48ce-462a-9395-deaf1a447804'),(161094,161057,NULL,8,2,NULL,'2021-05-11 04:58:29','2021-05-11 04:58:29',24,'030a9722-1e8a-4581-be74-c323f34d2d44'),(161095,161057,NULL,8,15,NULL,'2021-05-11 04:58:29','2021-05-11 04:58:29',25,'c946d2ec-092e-4331-bf26-5dacd23d9e6d'),(161097,161057,NULL,8,2,NULL,'2021-05-11 04:58:29','2021-05-11 04:58:29',26,'705f66dd-e761-415d-89bc-d18809229a32'),(161098,161057,NULL,8,3,NULL,'2021-05-11 04:58:29','2021-05-11 04:58:29',27,'ab6775c2-3f7d-4158-83aa-5cdb2a8b426b'),(161099,161057,NULL,8,3,NULL,'2021-05-11 04:58:29','2021-05-11 04:58:29',28,'57a930ea-f32b-4663-acf1-29660826f295'),(161110,146248,NULL,8,2,0,'2021-05-11 05:22:16','2021-05-11 05:22:16',1,'a54e9adb-1a11-41b3-9d3d-512a54b17258'),(161111,146248,NULL,8,3,0,'2021-05-11 05:22:16','2021-05-11 05:22:16',2,'0729afae-2f9d-49a0-bd73-da553883ec98'),(161112,146248,NULL,8,2,0,'2021-05-11 05:22:16','2021-05-11 05:22:16',3,'7b4f7658-ec01-4ab1-b609-990b0ae97334'),(161113,146248,NULL,8,3,0,'2021-05-11 05:22:16','2021-05-11 05:22:16',4,'72966f93-1ef7-4a9c-ae8a-8d22f84d68f9'),(161115,161114,NULL,8,2,NULL,'2021-05-11 05:22:17','2021-05-11 05:22:17',1,'1fb1d528-8bb8-4725-8a97-264eb85da03a'),(161116,161114,NULL,8,3,NULL,'2021-05-11 05:22:17','2021-05-11 05:22:17',2,'0d4d2fa0-5313-4a10-9409-04f257ffcfc5'),(161117,161114,NULL,8,2,NULL,'2021-05-11 05:22:17','2021-05-11 05:22:17',3,'3f6128dc-5b0c-42c2-aa32-de1cf33066f0'),(161118,161114,NULL,8,3,NULL,'2021-05-11 05:22:17','2021-05-11 05:22:17',4,'2d412b12-eddc-444b-889b-5678d03a55cd'),(161124,146248,NULL,8,2,NULL,'2021-05-11 05:22:23','2021-05-11 05:22:23',1,'798997b2-6b90-43e3-8568-3f00c542bf48'),(161125,146248,NULL,8,3,NULL,'2021-05-11 05:22:23','2021-05-11 05:22:23',2,'9ab82ccc-352d-4192-b7c6-58dd12d54e72'),(161126,146248,NULL,8,2,NULL,'2021-05-11 05:22:23','2021-05-11 05:22:23',3,'6ef52bea-bcb4-4db0-9537-7ba688ed744a'),(161127,146248,NULL,8,3,NULL,'2021-05-11 05:22:23','2021-05-11 05:22:23',4,'631f9913-dfb3-42ff-b357-470c096f18ae'),(161129,161128,NULL,8,2,NULL,'2021-05-11 05:22:23','2021-05-11 05:22:23',1,'4b11cadb-9437-4524-9db7-4b4c6e2f6e34'),(161130,161128,NULL,8,3,NULL,'2021-05-11 05:22:23','2021-05-11 05:22:23',2,'7f773cd2-dec6-477a-a09c-5384d6b11ea9'),(161131,161128,NULL,8,2,NULL,'2021-05-11 05:22:23','2021-05-11 05:22:23',3,'f969dcae-2156-4288-afbf-3064f2e63007'),(161132,161128,NULL,8,3,NULL,'2021-05-11 05:22:23','2021-05-11 05:22:23',4,'aa1906aa-604c-4590-8442-5f65c0998c50'),(161134,161133,NULL,8,2,NULL,'2021-05-11 05:22:27','2021-05-11 05:22:27',1,'5665302d-995c-4396-9099-df44789e6925'),(161135,161133,NULL,8,3,NULL,'2021-05-11 05:22:27','2021-05-11 05:22:27',2,'58aaf121-cecf-4085-a4fa-3cefbc03f147'),(161136,161133,NULL,8,2,NULL,'2021-05-11 05:22:27','2021-05-11 05:22:27',3,'768286d4-63ea-49dc-9340-a2cac5c48f23'),(161137,161133,NULL,8,3,NULL,'2021-05-11 05:22:27','2021-05-11 05:22:27',4,'ea73ceba-7474-4f94-8bf1-4ac2fe3cf790'),(161139,161138,NULL,8,2,NULL,'2021-05-11 05:37:57','2021-05-11 05:37:57',1,'0292340e-5644-46e0-a191-26c8ac6edf5c'),(161140,161138,NULL,8,3,NULL,'2021-05-11 05:37:57','2021-05-11 05:37:57',2,'5572ae9a-56d7-4069-9fb8-35ff3a8d1be4'),(161141,161138,NULL,8,2,NULL,'2021-05-11 05:37:57','2021-05-11 05:37:57',3,'66eef035-9905-4f3c-8d7c-d16f709df31c'),(161142,161138,NULL,8,3,NULL,'2021-05-11 05:37:57','2021-05-11 05:37:57',4,'92b90077-9459-4cb4-b011-92aa271d135c'),(161145,161138,NULL,8,2,NULL,'2021-05-11 05:37:57','2021-05-11 05:37:57',5,'52f86cb4-3371-478b-b1fc-aedc4ef661fe'),(161146,161138,NULL,8,3,NULL,'2021-05-11 05:37:57','2021-05-11 05:37:57',6,'8b11becd-8315-42bc-b209-7bbd992af5f4'),(161148,161138,NULL,8,2,NULL,'2021-05-11 05:37:57','2021-05-11 05:37:57',7,'01c16e04-6026-419a-9258-32b15bf7de8b'),(161149,161138,NULL,8,3,NULL,'2021-05-11 05:37:57','2021-05-11 05:37:57',8,'2c1207ba-0ec4-443d-b025-e997e1fb7922'),(161151,161138,NULL,8,2,NULL,'2021-05-11 05:37:57','2021-05-11 05:37:57',9,'277d0248-47d6-4e01-aa1a-752864d66583'),(161152,161138,NULL,8,3,NULL,'2021-05-11 05:37:57','2021-05-11 05:37:57',10,'1dfcf266-8cf5-4ba6-857f-e312d0ec9ab3'),(161153,161138,NULL,8,16,NULL,'2021-05-11 05:37:57','2021-05-11 05:37:57',11,'fd1d93b5-9d1f-409f-a5d5-9c181ea89a64'),(161154,161138,NULL,8,2,NULL,'2021-05-11 05:37:57','2021-05-11 05:37:57',12,'9da88075-ad53-4443-a64d-3014f6bbbc4e'),(161155,161138,NULL,8,3,NULL,'2021-05-11 05:37:57','2021-05-11 05:37:57',13,'8139f13a-8df3-4d2c-8b83-4e5149ef22bf'),(161157,161138,NULL,8,2,NULL,'2021-05-11 05:37:57','2021-05-11 05:37:57',14,'11bfc397-e018-40ee-a967-2b7dc86df50e'),(161158,161138,NULL,8,3,NULL,'2021-05-11 05:37:57','2021-05-11 05:37:57',15,'27b793d0-4bd1-4f27-a2bf-17e30187d291'),(161160,161138,NULL,8,3,NULL,'2021-05-11 05:37:57','2021-05-11 05:37:57',16,'a5c7f952-7e2d-4488-b20d-b9f77f2cee34'),(161162,161138,NULL,8,3,NULL,'2021-05-11 05:37:57','2021-05-11 05:37:57',17,'74feaf32-e2c5-4988-bb55-798bb4322e4a'),(161164,161138,NULL,8,2,NULL,'2021-05-11 05:37:57','2021-05-11 05:37:57',18,'91ee9af5-0893-4933-bc52-4411ab26988d'),(161165,161138,NULL,8,3,NULL,'2021-05-11 05:37:57','2021-05-11 05:37:57',19,'a7a897df-9671-41eb-945e-31598e623d15'),(161167,161138,NULL,8,3,NULL,'2021-05-11 05:37:57','2021-05-11 05:37:57',20,'a2437790-9f49-4f24-b65a-6c135cc59ea3'),(161169,161138,NULL,8,3,NULL,'2021-05-11 05:37:57','2021-05-11 05:37:57',21,'c8e4f372-eee6-4720-be19-d98f074db8f3'),(161171,161138,NULL,8,2,NULL,'2021-05-11 05:37:57','2021-05-11 05:37:57',22,'7703ea39-66ed-4dfa-a3d1-3867be0e3678'),(161172,161138,NULL,8,3,NULL,'2021-05-11 05:37:57','2021-05-11 05:37:57',23,'94968c3f-f18c-4380-b9f8-86b70b719861'),(161175,161138,NULL,8,2,NULL,'2021-05-11 05:37:57','2021-05-11 05:37:57',24,'577177bc-c3f3-4afd-84e8-ee1c38b88e10'),(161176,161138,NULL,8,15,NULL,'2021-05-11 05:37:57','2021-05-11 05:37:57',25,'97289f97-c9dd-41f0-8c3e-231903e126e7'),(161178,161138,NULL,8,2,NULL,'2021-05-11 05:37:57','2021-05-11 05:37:57',26,'753c109e-053c-4cd6-8b9f-10a76a52bbf8'),(161179,161138,NULL,8,3,NULL,'2021-05-11 05:37:57','2021-05-11 05:37:57',27,'2180d003-9068-4212-ba6a-9ba78e198801'),(161180,161138,NULL,8,3,NULL,'2021-05-11 05:37:57','2021-05-11 05:37:57',28,'4f255ba1-06d2-4c6a-a151-a1b8e5fee053'),(161228,21115,NULL,8,2,NULL,'2021-05-11 05:43:04','2021-05-11 05:43:04',1,'f028fcf5-2c94-4951-9afa-8bf68b64b97c'),(161229,21115,NULL,8,3,NULL,'2021-05-11 05:43:04','2021-05-11 05:43:04',2,'66985e85-9168-45e9-a6ca-e6e611ed741b'),(161230,21115,NULL,8,2,NULL,'2021-05-11 05:43:04','2021-05-11 05:43:04',3,'72e3b79d-4315-4d8d-8ea0-009536c2c870'),(161231,21115,NULL,8,3,NULL,'2021-05-11 05:43:04','2021-05-11 05:43:04',4,'80cbbc25-0ed7-44b9-b00d-a26132d2f69a'),(161234,21115,NULL,8,2,NULL,'2021-05-11 05:43:04','2021-05-11 05:43:04',5,'1c998f02-716f-4f4b-a4f9-2d9843e15a13'),(161235,21115,NULL,8,3,NULL,'2021-05-11 05:43:04','2021-05-11 05:43:04',6,'178385e7-3918-48ba-b0e2-8aec1a9f389a'),(161237,21115,NULL,8,2,NULL,'2021-05-11 05:43:04','2021-05-11 05:43:04',7,'1cf81bfd-b361-4a5a-bdb2-660f43bb4d6e'),(161238,21115,NULL,8,3,NULL,'2021-05-11 05:43:04','2021-05-11 05:43:04',8,'9651d10c-aaf6-47b9-a3ac-311e32cd3d21'),(161240,21115,NULL,8,2,NULL,'2021-05-11 05:43:04','2021-05-11 05:43:04',9,'98b77c90-520f-4773-9a36-d172e34a0c8e'),(161241,21115,NULL,8,3,NULL,'2021-05-11 05:43:04','2021-05-11 05:43:04',10,'7706b61e-c4b8-4fda-ac02-2fb5103f5da3'),(161242,21115,NULL,8,16,NULL,'2021-05-11 05:43:04','2021-05-11 05:43:04',11,'f01d6e0d-a60e-4f42-bbbe-6cc48fff7a27'),(161243,21115,NULL,8,2,NULL,'2021-05-11 05:43:04','2021-05-11 05:43:04',12,'5313c821-6f5a-4197-b57b-1e09e976c559'),(161244,21115,NULL,8,3,NULL,'2021-05-11 05:43:04','2021-05-11 05:43:04',13,'dab40f9b-7077-4d18-9218-e3d774f931d8'),(161246,21115,NULL,8,2,NULL,'2021-05-11 05:43:04','2021-05-11 05:43:04',14,'12499fe5-f611-46d8-bf66-dec51f537788'),(161247,21115,NULL,8,3,NULL,'2021-05-11 05:43:04','2021-05-11 05:43:04',15,'642ce330-c76e-400c-b876-376b3ca4b2aa'),(161249,21115,NULL,8,3,NULL,'2021-05-11 05:43:04','2021-05-11 05:43:04',16,'dbea6e07-228a-4945-b903-68d0b4f89819'),(161251,21115,NULL,8,3,NULL,'2021-05-11 05:43:04','2021-05-11 05:43:04',17,'48c30925-d7fb-4831-8c3a-c05134b4614e'),(161253,21115,NULL,8,2,NULL,'2021-05-11 05:43:04','2021-05-11 05:43:04',18,'f1267ea0-7ba5-4b8e-9cad-36f9247596da'),(161254,21115,NULL,8,3,NULL,'2021-05-11 05:43:04','2021-05-11 05:43:04',19,'fc428856-64c5-4293-bf7f-36b63dc9f800'),(161256,21115,NULL,8,3,NULL,'2021-05-11 05:43:04','2021-05-11 05:43:04',20,'2067fa8c-2d1a-4114-aa50-6346710ae42f'),(161258,21115,NULL,8,3,NULL,'2021-05-11 05:43:04','2021-05-11 05:43:04',21,'a8cdb31b-68b1-4521-a90c-a58df7190cfa'),(161260,21115,NULL,8,2,NULL,'2021-05-11 05:43:04','2021-05-11 05:43:04',22,'60114f28-38ef-4706-8dd6-b2f292bfa8ee'),(161261,21115,NULL,8,3,NULL,'2021-05-11 05:43:04','2021-05-11 05:43:04',23,'4acd178d-c5e5-41ed-9e48-9be8a24ffac9'),(161264,21115,NULL,8,2,NULL,'2021-05-11 05:43:04','2021-05-11 05:43:04',24,'ae420357-247c-4c21-abd8-4496e2c6524f'),(161265,21115,NULL,8,15,NULL,'2021-05-11 05:43:04','2021-05-11 05:43:04',25,'9b4e1867-e2d7-436f-ae7b-5711761e857f'),(161267,21115,NULL,8,2,NULL,'2021-05-11 05:43:04','2021-05-11 05:43:04',26,'d8a94b52-893f-4f7c-aab0-d654b140db35'),(161268,21115,NULL,8,3,NULL,'2021-05-11 05:43:04','2021-05-11 05:43:04',27,'171e81ac-9be9-422b-9fa9-3090c88ca5b8'),(161269,21115,NULL,8,3,NULL,'2021-05-11 05:43:04','2021-05-11 05:43:04',28,'ca43ec53-3c4a-4234-8027-06b99f170221'),(161273,161272,NULL,8,2,NULL,'2021-05-11 05:43:05','2021-05-11 05:43:05',1,'42cf9ff1-1053-45f0-9fa0-1aa9e77dee0c'),(161274,161272,NULL,8,3,NULL,'2021-05-11 05:43:06','2021-05-11 05:43:06',2,'d9ff9cc0-284a-41d2-a7d9-82c5106c7256'),(161275,161272,NULL,8,2,NULL,'2021-05-11 05:43:06','2021-05-11 05:43:06',3,'e43c5d7e-f39c-4efb-8067-37aa30fb8364'),(161276,161272,NULL,8,3,NULL,'2021-05-11 05:43:06','2021-05-11 05:43:06',4,'ba07c1fe-1694-4742-bec2-0a0f1c0ded20'),(161279,161272,NULL,8,2,NULL,'2021-05-11 05:43:06','2021-05-11 05:43:06',5,'4c809381-b242-4f99-883d-b64adffc1509'),(161280,161272,NULL,8,3,NULL,'2021-05-11 05:43:06','2021-05-11 05:43:06',6,'3e20d39b-ce75-4594-ab77-473092cd4a07'),(161282,161272,NULL,8,2,NULL,'2021-05-11 05:43:06','2021-05-11 05:43:06',7,'b7fc7d6f-29a2-45b3-a13a-7d4f0628fa2e'),(161283,161272,NULL,8,3,NULL,'2021-05-11 05:43:06','2021-05-11 05:43:06',8,'72c7cf6f-e4b7-4e48-9ffa-25a1d1f9b057'),(161285,161272,NULL,8,2,NULL,'2021-05-11 05:43:06','2021-05-11 05:43:06',9,'4560b2d9-725a-4e29-8b12-6e8f648fae52'),(161286,161272,NULL,8,3,NULL,'2021-05-11 05:43:06','2021-05-11 05:43:06',10,'f7839255-36e6-41a9-9ae0-726977b19141'),(161287,161272,NULL,8,16,NULL,'2021-05-11 05:43:06','2021-05-11 05:43:06',11,'bff5bc86-3ac3-47af-af4e-9ea0d59edb29'),(161288,161272,NULL,8,2,NULL,'2021-05-11 05:43:06','2021-05-11 05:43:06',12,'0d333f47-ab00-4770-b993-1ab9d35ffe14'),(161289,161272,NULL,8,3,NULL,'2021-05-11 05:43:06','2021-05-11 05:43:06',13,'355b1942-5452-4485-a4a5-e237a29418bc'),(161291,161272,NULL,8,2,NULL,'2021-05-11 05:43:06','2021-05-11 05:43:06',14,'fca28c3b-4bdb-4d1c-bd22-55b37663388b'),(161292,161272,NULL,8,3,NULL,'2021-05-11 05:43:06','2021-05-11 05:43:06',15,'597bdfef-6bd7-43e4-b1f1-ec4e0b63d6ba'),(161294,161272,NULL,8,3,NULL,'2021-05-11 05:43:06','2021-05-11 05:43:06',16,'600144b2-426b-4b1e-a908-606671ea7d95'),(161296,161272,NULL,8,3,NULL,'2021-05-11 05:43:06','2021-05-11 05:43:06',17,'c3d5d0ae-3ae1-4b8c-8299-fa2bfc949db5'),(161298,161272,NULL,8,2,NULL,'2021-05-11 05:43:06','2021-05-11 05:43:06',18,'4e2c63e6-79f4-42ca-977c-ac90e2882b39'),(161299,161272,NULL,8,3,NULL,'2021-05-11 05:43:06','2021-05-11 05:43:06',19,'e1c7f0ae-3d71-46d8-9fd5-f7fef1efa92a'),(161301,161272,NULL,8,3,NULL,'2021-05-11 05:43:06','2021-05-11 05:43:06',20,'e750effb-f123-4fea-a181-6209abc88aa7'),(161303,161272,NULL,8,3,NULL,'2021-05-11 05:43:06','2021-05-11 05:43:06',21,'edebae71-be47-4b6f-aded-9aa779c4d61b'),(161305,161272,NULL,8,2,NULL,'2021-05-11 05:43:06','2021-05-11 05:43:06',22,'8ff68d9a-0bef-4caf-92df-0bacdf08960f'),(161306,161272,NULL,8,3,NULL,'2021-05-11 05:43:06','2021-05-11 05:43:06',23,'515943af-9b88-4e28-87f4-5404c8be2bc5'),(161309,161272,NULL,8,2,NULL,'2021-05-11 05:43:06','2021-05-11 05:43:06',24,'4df70eed-a211-40df-8619-a58929ad0d61'),(161310,161272,NULL,8,15,NULL,'2021-05-11 05:43:06','2021-05-11 05:43:06',25,'a29c5e43-96f9-4969-9d02-9ff1374b41a0'),(161312,161272,NULL,8,2,NULL,'2021-05-11 05:43:06','2021-05-11 05:43:06',26,'08601794-dc4a-46be-8ea7-76759a0ca369'),(161313,161272,NULL,8,3,NULL,'2021-05-11 05:43:06','2021-05-11 05:43:06',27,'889c01b3-af47-43dd-b08f-f6f186f37042'),(161314,161272,NULL,8,3,NULL,'2021-05-11 05:43:06','2021-05-11 05:43:06',28,'320c8a43-6540-49a8-b50a-93e0ad7ff9c5'),(161318,161317,NULL,8,2,NULL,'2021-05-11 05:47:44','2021-05-11 05:47:44',1,'d02f98e2-8738-437c-9c3e-0a8f89cc02ff'),(161319,161317,NULL,8,3,NULL,'2021-05-11 05:47:44','2021-05-11 05:47:44',2,'762d13a6-b690-4e17-b128-acbd02f9850f'),(161320,161317,NULL,8,2,NULL,'2021-05-11 05:47:44','2021-05-11 05:47:44',3,'3b7d2c26-17d9-405e-b40a-c755a0a4081f'),(161321,161317,NULL,8,3,NULL,'2021-05-11 05:47:44','2021-05-11 05:47:44',4,'e4ecf251-09a2-4364-bbf8-1bee7705344f'),(161324,161317,NULL,8,2,NULL,'2021-05-11 05:47:44','2021-05-11 05:47:44',5,'a10568b8-9c1b-475c-9821-34c9c0c245e3'),(161325,161317,NULL,8,3,NULL,'2021-05-11 05:47:44','2021-05-11 05:47:44',6,'57866ba9-2cd3-4176-a859-a3b09aafc156'),(161327,161317,NULL,8,2,NULL,'2021-05-11 05:47:44','2021-05-11 05:47:44',7,'dd59d437-623e-4d7c-b32b-9f2b40a0b787'),(161328,161317,NULL,8,3,NULL,'2021-05-11 05:47:44','2021-05-11 05:47:44',8,'9a0f1b30-21ce-4583-8e9a-e4b7bebcc892'),(161330,161317,NULL,8,2,NULL,'2021-05-11 05:47:44','2021-05-11 05:47:44',9,'c64000be-a052-4ae8-9916-5215893e0758'),(161331,161317,NULL,8,3,NULL,'2021-05-11 05:47:44','2021-05-11 05:47:44',10,'03c57ea6-1684-411f-802a-a0e6bac1a6f7'),(161332,161317,NULL,8,16,NULL,'2021-05-11 05:47:44','2021-05-11 05:47:44',11,'f47cb1bc-cc21-4831-9f5a-295e3124b638'),(161333,161317,NULL,8,2,NULL,'2021-05-11 05:47:44','2021-05-11 05:47:44',12,'585fcba4-2394-4d62-930e-233fa382f58b'),(161334,161317,NULL,8,3,NULL,'2021-05-11 05:47:44','2021-05-11 05:47:44',13,'15324a16-2648-4c52-96b0-c1fd725268d8'),(161336,161317,NULL,8,2,NULL,'2021-05-11 05:47:44','2021-05-11 05:47:44',14,'7eae6d21-060c-4d6a-9590-bfc6664123ed'),(161337,161317,NULL,8,3,NULL,'2021-05-11 05:47:45','2021-05-11 05:47:45',15,'73dd37a9-e407-46c2-8b4d-9309e812b8cb'),(161339,161317,NULL,8,3,NULL,'2021-05-11 05:47:45','2021-05-11 05:47:45',16,'bb4141d7-e0bd-42b4-bb75-76489549594e'),(161341,161317,NULL,8,3,NULL,'2021-05-11 05:47:45','2021-05-11 05:47:45',17,'c3fdb1c5-b9b5-47b0-b6cc-5275fc416c2b'),(161343,161317,NULL,8,2,NULL,'2021-05-11 05:47:45','2021-05-11 05:47:45',18,'101565d7-199a-4de2-972a-57b0fe093919'),(161344,161317,NULL,8,3,NULL,'2021-05-11 05:47:45','2021-05-11 05:47:45',19,'482aa193-40fa-4315-aa0b-2705c010732a'),(161346,161317,NULL,8,3,NULL,'2021-05-11 05:47:45','2021-05-11 05:47:45',20,'bee43454-dc80-4607-8f91-a99b39c19803'),(161348,161317,NULL,8,3,NULL,'2021-05-11 05:47:45','2021-05-11 05:47:45',21,'9bf04e7c-6b46-49c3-9c7e-98dc54f3033c'),(161350,161317,NULL,8,2,NULL,'2021-05-11 05:47:45','2021-05-11 05:47:45',22,'c3d6c58e-f1b0-4d83-8d41-a08227b94434'),(161351,161317,NULL,8,3,NULL,'2021-05-11 05:47:45','2021-05-11 05:47:45',23,'5df32e3d-5fc3-441c-b35d-588e62922db5'),(161354,161317,NULL,8,2,NULL,'2021-05-11 05:47:45','2021-05-11 05:47:45',24,'216d81fc-a860-484f-85e2-4b5c8daa03a9'),(161355,161317,NULL,8,15,NULL,'2021-05-11 05:47:45','2021-05-11 05:47:45',25,'babea83a-cdda-4251-ab59-d491e0a40180'),(161357,161317,NULL,8,2,NULL,'2021-05-11 05:47:45','2021-05-11 05:47:45',26,'c18584d4-318c-4caf-8578-e76703a7af21'),(161358,161317,NULL,8,3,NULL,'2021-05-11 05:47:45','2021-05-11 05:47:45',27,'92936d75-6466-40be-aa10-f1f48030b0b5'),(161359,161317,NULL,8,3,NULL,'2021-05-11 05:47:45','2021-05-11 05:47:45',28,'5ea3b39d-19aa-4803-aa76-a03f6726de12'),(161442,161440,NULL,8,2,NULL,'2021-05-13 00:49:48','2021-05-13 00:49:48',1,'a3db13d8-0f3e-4622-83dc-358da8d05809'),(161443,161440,NULL,8,3,NULL,'2021-05-13 00:49:48','2021-05-13 00:49:48',2,'dbaeb067-1d9f-4338-a322-f5ba9d3488ea'),(161445,161440,NULL,8,3,NULL,'2021-05-13 00:49:48','2021-05-13 00:49:48',3,'b1311bb7-645f-4cf1-9126-934b8ed2ec39'),(161447,161440,NULL,8,2,NULL,'2021-05-13 00:49:48','2021-05-13 00:49:48',4,'19cb745e-9537-41e9-96aa-838514614956'),(161448,161440,NULL,8,3,NULL,'2021-05-13 00:49:48','2021-05-13 00:49:48',5,'a5a86f02-6a95-4c8a-84ed-ccdd2bdf024b'),(161449,161440,NULL,8,21,NULL,'2021-05-13 00:49:48','2021-05-13 00:49:48',6,'e03615d6-27bb-49d6-9f8d-47502b13a6e1'),(161456,161440,NULL,8,2,NULL,'2021-05-13 00:49:48','2021-05-13 00:49:48',7,'0f13119d-eca4-4812-9609-de452ff69363'),(161457,161440,NULL,8,3,NULL,'2021-05-13 00:49:48','2021-05-13 00:49:48',8,'5f5bf950-9265-472b-8e6e-85f8998053a8'),(161473,161472,NULL,8,2,NULL,'2021-05-13 04:11:39','2021-05-13 04:11:39',1,'38d8d213-8994-48f5-8b5c-361d53dc0868'),(161474,161472,NULL,8,3,NULL,'2021-05-13 04:11:39','2021-05-13 04:11:39',2,'deb82603-259a-47f0-87a5-e8b77c7a9073'),(161475,161472,NULL,8,21,NULL,'2021-05-13 04:11:39','2021-05-13 04:11:39',3,'065c735c-a0e3-43e8-9072-97883c8d6588'),(161478,161472,NULL,8,2,NULL,'2021-05-13 04:11:39','2021-05-13 04:11:39',4,'01c03689-27d7-4dc0-81f9-8a207f4b15e7'),(161479,161472,NULL,8,3,NULL,'2021-05-13 04:11:39','2021-05-13 04:11:39',5,'43bf5701-3326-45d9-a989-b22985e4bdc1'),(161480,161472,NULL,8,4,NULL,'2021-05-13 04:11:39','2021-05-13 04:11:39',6,'bf79a81b-7baa-4f7e-884b-880a6718b557'),(161481,161472,NULL,8,3,NULL,'2021-05-13 04:11:39','2021-05-13 04:11:39',7,'48acaebf-9bdf-4944-88ea-78cfd8d396de'),(161482,161472,NULL,8,12,NULL,'2021-05-13 04:11:39','2021-05-13 04:11:39',8,'3a18b982-a7fa-4c97-b609-a5769c210d5a'),(161984,161983,NULL,8,2,NULL,'2021-05-13 04:27:01','2021-05-13 04:27:01',1,'b71e599f-de02-45dc-ba20-9e310b9c508f'),(161985,161983,NULL,8,3,NULL,'2021-05-13 04:27:01','2021-05-13 04:27:01',2,'33bcfdd6-442e-4d1e-b674-8783b12a0547'),(161986,161983,NULL,8,2,NULL,'2021-05-13 04:27:01','2021-05-13 04:27:01',3,'52c6915b-36a1-4225-85f6-8339eeec979f'),(161987,161983,NULL,8,3,NULL,'2021-05-13 04:27:01','2021-05-13 04:27:01',4,'c2fa3bf2-5755-451a-914e-c0d8d8d19beb'),(161988,161983,NULL,8,2,NULL,'2021-05-13 04:27:01','2021-05-13 04:27:01',5,'624aea07-f4f7-44c7-a35c-565fc6d5870f'),(161989,161983,NULL,8,3,NULL,'2021-05-13 04:27:01','2021-05-13 04:27:01',6,'c7137966-8dcf-4bdc-b5df-f5510e7ad515'),(161990,161983,NULL,8,2,NULL,'2021-05-13 04:27:01','2021-05-13 04:27:01',7,'c9076f71-c982-4c8e-be49-71141f92075b'),(161991,161983,NULL,8,3,NULL,'2021-05-13 04:27:01','2021-05-13 04:27:01',8,'64b19270-8b11-4846-8afd-4ce5614660e3'),(161993,161983,NULL,8,12,NULL,'2021-05-13 04:27:01','2021-05-13 04:27:01',9,'9bbc86ff-338d-4b63-9d35-3b692cdcb2b6'),(161995,161994,NULL,8,2,NULL,'2021-05-13 04:27:05','2021-05-13 04:27:05',1,'f5511284-766e-43f1-99fe-64f6b818ab8a'),(161996,161994,NULL,8,3,NULL,'2021-05-13 04:27:05','2021-05-13 04:27:05',2,'ca29d175-5f60-4758-8518-9007e5ee5150'),(161997,161994,NULL,8,2,NULL,'2021-05-13 04:27:05','2021-05-13 04:27:05',3,'0d4dcac5-7526-430d-9d5f-7f379393fdf9'),(161998,161994,NULL,8,3,NULL,'2021-05-13 04:27:05','2021-05-13 04:27:05',4,'cee2e479-3d46-4dc4-b224-8aee51b70d5c'),(161999,161994,NULL,8,2,NULL,'2021-05-13 04:27:05','2021-05-13 04:27:05',5,'ecb33022-0234-42a8-911d-db98f531d05b'),(162000,161994,NULL,8,3,NULL,'2021-05-13 04:27:05','2021-05-13 04:27:05',6,'b09b1f3c-5e66-4233-a391-5400e1e6d707'),(162001,161994,NULL,8,2,NULL,'2021-05-13 04:27:05','2021-05-13 04:27:05',7,'6202b7c2-4e9c-4afd-9bcc-d0085d7f2578'),(162002,161994,NULL,8,3,NULL,'2021-05-13 04:27:05','2021-05-13 04:27:05',8,'3199a960-828e-410d-a08c-79072a992948'),(162004,161994,NULL,8,12,NULL,'2021-05-13 04:27:05','2021-05-13 04:27:05',9,'86ca689f-e91a-4093-ba80-01953b362da7'),(162006,162005,NULL,8,2,NULL,'2021-05-13 04:28:38','2021-05-13 04:28:38',1,'262d05ae-6c2a-4712-9cf3-ccd49650234b'),(162007,162005,NULL,8,3,NULL,'2021-05-13 04:28:38','2021-05-13 04:28:38',2,'13d529d3-b2c1-455c-97e8-1eadb6dda3a2'),(162008,162005,NULL,8,2,NULL,'2021-05-13 04:28:38','2021-05-13 04:28:38',3,'b2aab2ff-3940-4170-8fd5-567bb99c9397'),(162009,162005,NULL,8,7,NULL,'2021-05-13 04:28:38','2021-05-13 04:28:38',4,'b4a45db8-9cda-4146-bda0-5263647ddd85'),(162010,162005,NULL,8,5,NULL,'2021-05-13 04:28:38','2021-05-13 04:28:38',5,'7b238652-84e7-4747-9b44-4274463dd55d'),(162011,162005,NULL,8,2,NULL,'2021-05-13 04:28:38','2021-05-13 04:28:38',6,'4ce89f38-af77-48b1-9e83-998a90e72636'),(162012,162005,NULL,8,3,NULL,'2021-05-13 04:28:38','2021-05-13 04:28:38',7,'900a3b6f-b28d-44bb-8841-0803965bc9ec'),(162013,162005,NULL,8,12,NULL,'2021-05-13 04:28:38','2021-05-13 04:28:38',8,'c6ffdb20-2dc2-43f2-8860-e501a6bdd5d2'),(162014,162005,NULL,8,2,NULL,'2021-05-13 04:28:38','2021-05-13 04:28:38',9,'3d408f94-a38e-4f99-8be9-ded5691334a8'),(162015,162005,NULL,8,9,NULL,'2021-05-13 04:28:38','2021-05-13 04:28:38',10,'878c4dd6-0930-4e0b-97f4-7e655e0e127c'),(162016,162005,NULL,8,2,NULL,'2021-05-13 04:28:38','2021-05-13 04:28:38',11,'9b3fb43f-a297-43ff-97f0-196b6f47a9cf'),(162017,162005,NULL,8,9,NULL,'2021-05-13 04:28:38','2021-05-13 04:28:38',12,'21345929-d57d-4dbc-b440-b1407489f91f'),(162019,162018,NULL,8,2,NULL,'2021-05-13 04:29:56','2021-05-13 04:29:56',1,'34330bd0-4855-41b3-9016-005f1190b8df'),(162020,162018,NULL,8,3,NULL,'2021-05-13 04:29:56','2021-05-13 04:29:56',2,'ff314970-f7a9-42cd-8809-3f1470b7d418'),(162021,162018,NULL,8,2,NULL,'2021-05-13 04:29:56','2021-05-13 04:29:56',3,'91898611-3d5a-4403-ada5-cdd7f567fcdd'),(162022,162018,NULL,8,3,NULL,'2021-05-13 04:29:56','2021-05-13 04:29:56',4,'e6888ec6-5cd2-408c-8b9d-ce4811c14c7c'),(162023,162018,NULL,8,2,NULL,'2021-05-13 04:29:56','2021-05-13 04:29:56',5,'3e55a23a-e5f1-4c9a-9795-b188dbb28870'),(162024,162018,NULL,8,3,NULL,'2021-05-13 04:29:56','2021-05-13 04:29:56',6,'e61449ff-3356-4bfc-a1cf-55bec0483f27'),(162025,162018,NULL,8,2,NULL,'2021-05-13 04:29:56','2021-05-13 04:29:56',7,'b2d5c989-aba3-406c-8be6-f45eef4eb914'),(162026,162018,NULL,8,3,NULL,'2021-05-13 04:29:56','2021-05-13 04:29:56',8,'827e1c34-0e83-43f9-a743-3edd1d619f3b'),(162118,162117,NULL,8,2,NULL,'2021-05-18 00:53:18','2021-05-18 00:53:18',1,'92ae005b-b306-42ca-bd92-04ef0a259f72'),(162119,162117,NULL,8,21,NULL,'2021-05-18 00:53:18','2021-05-18 00:53:18',2,'62c4e5ea-7683-4e06-8d29-9f6fb038f10c'),(162122,162117,NULL,8,21,NULL,'2021-05-18 00:53:18','2021-05-18 00:53:18',3,'cbbff169-b89b-4951-b75c-08828608f5fc'),(162134,162133,NULL,8,2,NULL,'2021-05-18 00:54:18','2021-05-18 00:54:18',1,'9eb8a0db-d0e7-4f5c-bc1f-af49f5d1f4a8'),(162135,162133,NULL,8,21,NULL,'2021-05-18 00:54:18','2021-05-18 00:54:18',2,'34ace3e5-09c7-4be1-bc6d-f7ef806d71db'),(162138,162133,NULL,8,21,NULL,'2021-05-18 00:54:18','2021-05-18 00:54:18',3,'199422a8-20e9-4109-9880-e72baedb14b3'),(162260,162259,NULL,8,2,NULL,'2021-05-18 04:24:37','2021-05-18 04:24:37',1,'3570eefc-49e6-4ccc-b8dc-86d6f2f67448'),(162261,162259,NULL,8,3,NULL,'2021-05-18 04:24:37','2021-05-18 04:24:37',2,'3372bce0-8fe2-4af4-b180-d6155b4db79e'),(162262,162259,NULL,8,3,NULL,'2021-05-18 04:24:37','2021-05-18 04:24:37',3,'892ad242-b964-48aa-adad-2c4449561a6f'),(162263,162259,NULL,8,16,NULL,'2021-05-18 04:24:37','2021-05-18 04:24:37',4,'bfa43f64-ad16-47f7-9226-b8555909b7e3'),(162264,162259,NULL,8,2,NULL,'2021-05-18 04:24:37','2021-05-18 04:24:37',5,'5fdbbdcc-13fa-480e-8d55-13ddc872c6b1'),(162265,162259,NULL,8,3,NULL,'2021-05-18 04:24:37','2021-05-18 04:24:37',6,'db3cf2ea-d4cb-4357-9cde-c74a1ea1ce4d'),(162266,162259,NULL,8,7,NULL,'2021-05-18 04:24:37','2021-05-18 04:24:37',7,'31908c92-e3a2-40e1-b2c3-1e6a4087cfb3'),(162268,162267,NULL,8,2,NULL,'2021-05-18 04:24:41','2021-05-18 04:24:41',1,'00870ae9-204f-4910-8f0e-8245cb2ec0a5'),(162269,162267,NULL,8,3,NULL,'2021-05-18 04:24:41','2021-05-18 04:24:41',2,'45f4d72c-17ae-4b3a-a5a5-b76ce6fb17f1'),(162270,162267,NULL,8,3,NULL,'2021-05-18 04:24:41','2021-05-18 04:24:41',3,'5652d578-7738-46d3-bc42-d42dd6cc2ac0'),(162271,162267,NULL,8,16,NULL,'2021-05-18 04:24:41','2021-05-18 04:24:41',4,'22854fba-7a84-4cad-b0b9-f9f3b825327e'),(162272,162267,NULL,8,2,NULL,'2021-05-18 04:24:41','2021-05-18 04:24:41',5,'9f62d8da-302b-47d2-84c9-328c03a12de1'),(162273,162267,NULL,8,3,NULL,'2021-05-18 04:24:41','2021-05-18 04:24:41',6,'b0b9ae30-1be0-40c3-96c6-cfd390cd5470'),(162274,162267,NULL,8,7,NULL,'2021-05-18 04:24:41','2021-05-18 04:24:41',7,'20834bd3-ef5c-4da9-b578-55990c738f29'),(162308,162307,NULL,8,2,NULL,'2021-05-18 04:30:05','2021-05-18 04:30:05',1,'240053c4-141c-4193-b7da-324f220615d9'),(162309,162307,NULL,8,3,NULL,'2021-05-18 04:30:05','2021-05-18 04:30:05',2,'88f1762c-6638-454a-94ed-2eda7a2a5edb'),(162310,162307,NULL,8,16,NULL,'2021-05-18 04:30:05','2021-05-18 04:30:05',3,'209db7d6-439f-46e7-bed9-d0e719ecbc99'),(162311,162307,NULL,8,3,NULL,'2021-05-18 04:30:05','2021-05-18 04:30:05',4,'16b3523c-c6c0-4420-983d-ad8704e3fc1c'),(162312,162307,NULL,8,16,NULL,'2021-05-18 04:30:05','2021-05-18 04:30:05',5,'7aa060a8-8fd2-4c31-bbab-7b4050c6cba2'),(162313,162307,NULL,8,2,NULL,'2021-05-18 04:30:05','2021-05-18 04:30:05',6,'8b734c3f-f947-41f9-90bb-af062fc16069'),(162314,162307,NULL,8,3,NULL,'2021-05-18 04:30:05','2021-05-18 04:30:05',7,'975cad51-efad-472b-86be-79cf287ac0c1'),(162315,162307,NULL,8,7,NULL,'2021-05-18 04:30:05','2021-05-18 04:30:05',8,'da4f0903-2fb1-4ad3-a7f5-6a9f1b12718c'),(162317,162316,NULL,8,2,NULL,'2021-05-18 04:30:10','2021-05-18 04:30:10',1,'c3dabd0f-b6c4-4d29-8901-df1921eb6fa3'),(162318,162316,NULL,8,3,NULL,'2021-05-18 04:30:10','2021-05-18 04:30:10',2,'5482ad16-c705-4d8d-a130-ab5792a2fa53'),(162319,162316,NULL,8,16,NULL,'2021-05-18 04:30:10','2021-05-18 04:30:10',3,'f3267a95-d1a2-4d21-a646-114b649b3fdf'),(162320,162316,NULL,8,3,NULL,'2021-05-18 04:30:10','2021-05-18 04:30:10',4,'3062507b-05d7-4f5d-91fd-e5f26f584586'),(162321,162316,NULL,8,16,NULL,'2021-05-18 04:30:10','2021-05-18 04:30:10',5,'e4cde7d4-699a-4a6a-b506-0c6d84089111'),(162322,162316,NULL,8,2,NULL,'2021-05-18 04:30:10','2021-05-18 04:30:10',6,'d471bcfe-4d00-45d5-98f4-4aaa384781b6'),(162323,162316,NULL,8,3,NULL,'2021-05-18 04:30:10','2021-05-18 04:30:10',7,'0d537de0-883b-441b-baca-89f4b93dc0f3'),(162324,162316,NULL,8,7,NULL,'2021-05-18 04:30:10','2021-05-18 04:30:10',8,'b86c67d9-bf32-4e95-a284-8d08c578de85'),(162353,162352,NULL,8,2,NULL,'2021-05-18 06:15:57','2021-05-18 06:15:57',1,'8ff77aa5-1e9f-4aaf-8f4a-e8c12bbf18ae'),(162354,162352,NULL,8,3,NULL,'2021-05-18 06:15:57','2021-05-18 06:15:57',2,'8467213e-8a96-4647-9ddd-04282b481e7b'),(162355,162352,NULL,8,2,NULL,'2021-05-18 06:15:57','2021-05-18 06:15:57',3,'44cff967-5a16-488f-ae33-3ce060eda896'),(162356,162352,NULL,8,3,NULL,'2021-05-18 06:15:57','2021-05-18 06:15:57',4,'55079cf7-f765-4b40-b71a-7e3935aa25bd'),(162361,162352,NULL,8,4,NULL,'2021-05-18 06:15:57','2021-05-18 06:15:57',5,'fd837330-90e0-4264-bcad-669e2e04a301'),(162362,162352,NULL,8,3,NULL,'2021-05-18 06:15:57','2021-05-18 06:15:57',6,'88eb58d1-c686-4f63-aed2-9ef48403fd17'),(162367,162352,NULL,8,4,NULL,'2021-05-18 06:15:57','2021-05-18 06:15:57',7,'cea32942-aef6-4bae-8fe3-63dc5d9d2b96'),(162368,162352,NULL,8,3,NULL,'2021-05-18 06:15:57','2021-05-18 06:15:57',8,'13229c4d-d8a3-428a-b0eb-92cb4809b08e'),(162372,162352,NULL,8,2,NULL,'2021-05-18 06:15:57','2021-05-18 06:15:57',9,'c6945528-317a-424c-bb9e-7361a9b32cf0'),(162373,162352,NULL,8,3,NULL,'2021-05-18 06:15:57','2021-05-18 06:15:57',10,'f4f7756c-cdcf-45f0-a220-9730de1646e1'),(162374,162352,NULL,8,2,NULL,'2021-05-18 06:15:57','2021-05-18 06:15:57',11,'cc7139e0-e22f-4cf3-8fd3-bd7f0870bdf8'),(162375,162352,NULL,8,3,NULL,'2021-05-18 06:15:58','2021-05-18 06:15:58',12,'99a89807-86ac-4743-8042-1e89c218a894'),(162377,162352,NULL,8,2,NULL,'2021-05-18 06:15:58','2021-05-18 06:15:58',13,'a7a325e3-33e0-433e-a1f4-1344a6a3d712'),(162378,162352,NULL,8,3,NULL,'2021-05-18 06:15:58','2021-05-18 06:15:58',14,'671baf7c-277a-495b-b32a-2ff7be6dc45f'),(162384,162352,NULL,8,2,NULL,'2021-05-18 06:15:58','2021-05-18 06:15:58',15,'67630ec9-642e-43b7-b38b-c52a8638f4cb'),(162385,162352,NULL,8,3,NULL,'2021-05-18 06:15:58','2021-05-18 06:15:58',16,'169cb88e-ba6a-4442-a0da-9611b0fbd7d5'),(162386,162352,NULL,8,16,NULL,'2021-05-18 06:15:58','2021-05-18 06:15:58',17,'06136595-5045-4a86-a883-44ea693fc9af'),(162387,162352,NULL,8,2,NULL,'2021-05-18 06:15:58','2021-05-18 06:15:58',18,'bb79d2e0-bd7a-477f-a34c-0190f8ff954b'),(162388,162352,NULL,8,3,NULL,'2021-05-18 06:15:58','2021-05-18 06:15:58',19,'b52b818b-33d1-47db-8f07-0f597667db67'),(162392,162352,NULL,8,3,NULL,'2021-05-18 06:15:58','2021-05-18 06:15:58',20,'63023845-f699-4460-8d50-09323d21c8a1'),(162422,162421,NULL,8,2,NULL,'2021-05-18 23:30:59','2021-05-18 23:30:59',1,'869e3f82-7f0f-45c6-9437-50df91f512b4'),(162423,162421,NULL,8,3,NULL,'2021-05-18 23:30:59','2021-05-18 23:30:59',2,'4e50d872-a21a-47cb-b57b-6c13985c0bed'),(162424,162421,NULL,8,2,NULL,'2021-05-18 23:30:59','2021-05-18 23:30:59',3,'81ab918d-ae56-4489-8eb6-7eabbbeb8416'),(162425,162421,NULL,8,3,NULL,'2021-05-18 23:30:59','2021-05-18 23:30:59',4,'95bb9092-c2b4-4f3c-a331-a4817e545bd4'),(162429,162421,NULL,8,2,NULL,'2021-05-18 23:30:59','2021-05-18 23:30:59',5,'b725c825-84c5-4b80-9538-b2352c604940'),(162430,162421,NULL,8,3,NULL,'2021-05-18 23:30:59','2021-05-18 23:30:59',6,'d14a5954-a126-4fc4-ad0c-6fd630dfc789'),(162434,162432,NULL,8,2,NULL,'2021-05-18 23:41:16','2021-05-18 23:41:16',1,'e4f514bc-abeb-4dd3-b37d-8334e9887bc8'),(162435,162432,NULL,8,3,NULL,'2021-05-18 23:41:16','2021-05-18 23:41:16',2,'9578db28-74a7-4bf0-8f29-f166363e1cc5'),(162437,162432,NULL,8,3,NULL,'2021-05-18 23:41:16','2021-05-18 23:41:16',3,'c8125109-4a1a-413b-9530-92ea657d1980'),(162439,162432,NULL,8,2,NULL,'2021-05-18 23:41:16','2021-05-18 23:41:16',4,'b9b8690b-87d6-48d8-8d33-2c388d3172dd'),(162440,162432,NULL,8,3,NULL,'2021-05-18 23:41:16','2021-05-18 23:41:16',5,'69923b04-1a1b-4e9b-8fd7-8f8a968eb554'),(162441,162432,NULL,8,21,NULL,'2021-05-18 23:41:16','2021-05-18 23:41:16',6,'68cb85a6-d144-4b7f-80d0-3817984ee75f'),(162448,162432,NULL,8,2,NULL,'2021-05-18 23:41:17','2021-05-18 23:41:17',7,'a704f7c3-66c3-4b4c-ad1a-07f2a5a4abc4'),(162449,162432,NULL,8,3,NULL,'2021-05-18 23:41:17','2021-05-18 23:41:17',8,'907a34a0-d533-4d5a-b658-c48d6010cad8'),(162469,162468,NULL,8,2,NULL,'2021-05-19 00:50:46','2021-05-19 00:50:46',1,'24b6984d-cff0-45c2-b2ce-bce2208d8d44'),(162470,162468,NULL,8,3,NULL,'2021-05-19 00:50:46','2021-05-19 00:50:46',2,'8b423b81-43f8-43d9-baea-f39faae635ef'),(162474,162468,NULL,8,2,NULL,'2021-05-19 00:50:46','2021-05-19 00:50:46',3,'85c31587-6481-46d8-855f-68993c5892ac'),(162475,162468,NULL,8,3,NULL,'2021-05-19 00:50:46','2021-05-19 00:50:46',4,'d8130ab4-b185-4ba1-b50b-2abb259f36e6'),(162477,162468,NULL,8,2,NULL,'2021-05-19 00:50:46','2021-05-19 00:50:46',5,'01e7dac8-4e99-425f-a0c4-95d969f43f99'),(162478,162468,NULL,8,3,NULL,'2021-05-19 00:50:46','2021-05-19 00:50:46',6,'54d4ac15-3d4d-4406-9cc4-828d65eb167d'),(162480,162468,NULL,8,2,NULL,'2021-05-19 00:50:46','2021-05-19 00:50:46',7,'a7f385b1-04ea-4353-83cb-a9ab197e196b'),(162481,162468,NULL,8,3,NULL,'2021-05-19 00:50:46','2021-05-19 00:50:46',8,'d56988bb-3f7e-4e2c-af6b-6fe8742b666b'),(162483,162468,NULL,8,3,NULL,'2021-05-19 00:50:46','2021-05-19 00:50:46',9,'2220907e-13e9-49c9-be79-4d75379670c2'),(162489,162468,NULL,8,3,NULL,'2021-05-19 00:50:46','2021-05-19 00:50:46',10,'78cadc35-39e2-4d7e-b72d-2f4188656c87'),(162493,162468,NULL,8,2,NULL,'2021-05-19 00:50:46','2021-05-19 00:50:46',11,'61d11765-330f-4c42-86f3-c7394a72e1d4'),(162494,162468,NULL,8,3,NULL,'2021-05-19 00:50:46','2021-05-19 00:50:46',12,'aa008eb3-61d2-4f98-a477-c8d29e7a84f7'),(162498,162468,NULL,8,2,NULL,'2021-05-19 00:50:46','2021-05-19 00:50:46',13,'979c3326-0787-4d2b-a6d4-b219f8534420'),(162499,162468,NULL,8,3,NULL,'2021-05-19 00:50:46','2021-05-19 00:50:46',14,'c19386b7-3c69-47bf-a9d9-7d112b1a4411'),(162500,162468,NULL,8,7,NULL,'2021-05-19 00:50:46','2021-05-19 00:50:46',15,'3e815da4-34ac-479e-8788-35e6601a62e5'),(162538,155313,NULL,8,2,0,'2021-05-19 01:15:53','2021-05-19 01:15:53',4,'785b44b6-88d8-4a0e-8b2a-2ab1c24cae5d'),(162539,155313,NULL,8,3,0,'2021-05-19 01:15:53','2021-05-19 01:15:53',5,'f9c2475c-d000-47c0-8405-bbc4594c29f5'),(162541,155313,NULL,8,3,0,'2021-05-19 01:15:53','2021-05-19 01:15:53',6,'da174757-5d57-4582-860b-94df29413371'),(162543,155313,NULL,8,2,0,'2021-05-19 01:15:53','2021-05-19 01:15:53',1,'5820b969-743a-4889-890b-4036a06bafb5'),(162544,155313,NULL,8,3,0,'2021-05-19 01:15:53','2021-05-19 01:15:53',2,'cf255ee2-4450-42a1-b729-c0a0ea90d0b7'),(162545,155313,NULL,8,21,0,'2021-05-19 01:15:53','2021-05-19 01:15:53',3,'7faf4f26-ce70-41df-a5f1-e2c36ec5d75c'),(162552,155313,NULL,8,2,0,'2021-05-19 01:15:53','2021-05-19 01:15:53',7,'464fbd54-d561-4587-805a-80a07624133e'),(162553,155313,NULL,8,3,0,'2021-05-19 01:15:53','2021-05-19 01:15:53',8,'5f33dd7b-5ddf-498d-9539-7825164c5108'),(162558,162556,NULL,8,2,NULL,'2021-05-19 01:15:53','2021-05-19 01:15:53',4,'5a86c376-99cd-418d-99ff-be134e12a840'),(162559,162556,NULL,8,3,NULL,'2021-05-19 01:15:53','2021-05-19 01:15:53',5,'72450c3b-2b62-4dc4-8191-6f8c6d09f9fe'),(162561,162556,NULL,8,3,NULL,'2021-05-19 01:15:53','2021-05-19 01:15:53',6,'aac801d1-0fcf-4530-afac-eedeb41bfe39'),(162563,162556,NULL,8,2,NULL,'2021-05-19 01:15:53','2021-05-19 01:15:53',1,'c3891ead-5f6d-4665-95e9-c9e7413f5c27'),(162564,162556,NULL,8,3,NULL,'2021-05-19 01:15:53','2021-05-19 01:15:53',2,'4c62382a-10da-4de9-b644-fead440c62f9'),(162565,162556,NULL,8,21,NULL,'2021-05-19 01:15:54','2021-05-19 01:15:54',3,'072d901c-a4a9-42ba-929c-2a69ba14daf9'),(162572,162556,NULL,8,2,NULL,'2021-05-19 01:15:54','2021-05-19 01:15:54',7,'5a209610-b3dc-4f04-98bb-de9f5103d031'),(162573,162556,NULL,8,3,NULL,'2021-05-19 01:15:54','2021-05-19 01:15:54',8,'f6a362a7-3b01-4947-a479-cb10d3dcb579'),(162597,155313,NULL,8,2,0,'2021-05-19 01:17:15','2021-05-19 01:17:15',4,'b9cc2ac2-7083-42d4-b521-d8e2c3b3f5f0'),(162598,155313,NULL,8,3,0,'2021-05-19 01:17:15','2021-05-19 01:17:15',5,'c28c438b-8b9a-4fe3-8291-e2d7ed8c777e'),(162600,155313,NULL,8,3,0,'2021-05-19 01:17:16','2021-05-19 01:17:16',6,'b8980671-f073-48fb-8c12-fbd769c846f1'),(162602,155313,NULL,8,2,0,'2021-05-19 01:17:16','2021-05-19 01:17:16',1,'c4370dec-6abc-4a79-a5d7-80c0134c46d0'),(162603,155313,NULL,8,3,0,'2021-05-19 01:17:16','2021-05-19 01:17:16',2,'0528d96f-2cfd-41ae-9360-663025976cf4'),(162604,155313,NULL,8,21,0,'2021-05-19 01:17:16','2021-05-19 01:17:16',3,'32f2219f-db56-4766-8c72-119a2ddb6f66'),(162611,155313,NULL,8,2,0,'2021-05-19 01:17:16','2021-05-19 01:17:16',7,'b4b3bbee-25fe-49c9-9e89-67e580702266'),(162612,155313,NULL,8,3,0,'2021-05-19 01:17:16','2021-05-19 01:17:16',8,'174e7808-84f9-4d09-9ee6-82b32701f686'),(162617,162615,NULL,8,2,NULL,'2021-05-19 01:17:16','2021-05-19 01:17:16',4,'0bd2a20c-9f15-45e6-b60c-d9a5655cc987'),(162618,162615,NULL,8,3,NULL,'2021-05-19 01:17:16','2021-05-19 01:17:16',5,'53d4d062-bc40-4916-8e4a-15e108362f98'),(162620,162615,NULL,8,3,NULL,'2021-05-19 01:17:16','2021-05-19 01:17:16',6,'b480e009-908f-4176-8932-98ca7a4831ca'),(162622,162615,NULL,8,2,NULL,'2021-05-19 01:17:16','2021-05-19 01:17:16',1,'7e2ea520-97dc-4185-ac79-91aaea4b369c'),(162623,162615,NULL,8,3,NULL,'2021-05-19 01:17:16','2021-05-19 01:17:16',2,'3f08604c-f087-4707-91cf-756db49e96ca'),(162624,162615,NULL,8,21,NULL,'2021-05-19 01:17:16','2021-05-19 01:17:16',3,'e64ea1a9-82a2-4130-87aa-420b06d5e21c'),(162631,162615,NULL,8,2,NULL,'2021-05-19 01:17:17','2021-05-19 01:17:17',7,'1938f8b1-0c90-4b4a-989f-aec51822dd9b'),(162632,162615,NULL,8,3,NULL,'2021-05-19 01:17:17','2021-05-19 01:17:17',8,'cc912eb8-da63-46bc-a74c-15db4760ff59'),(162656,155313,NULL,8,2,0,'2021-05-19 01:18:12','2021-05-19 01:18:12',4,'46662e3d-4aa7-4f81-b05f-80552a0a6da7'),(162657,155313,NULL,8,3,0,'2021-05-19 01:18:12','2021-05-19 01:18:12',5,'60163816-e779-4a7b-8b3c-1a88e1ea5a79'),(162659,155313,NULL,8,3,0,'2021-05-19 01:18:12','2021-05-19 01:18:12',6,'54f2debb-1b68-4f2d-97fa-e351bcf05368'),(162661,155313,NULL,8,2,0,'2021-05-19 01:18:12','2021-05-19 01:18:12',1,'18b98228-5bfd-4643-a720-a8437ffb3eca'),(162662,155313,NULL,8,3,0,'2021-05-19 01:18:12','2021-05-19 01:18:12',2,'f9fef10e-1210-4fb4-b28b-b4bc25cf127a'),(162663,155313,NULL,8,21,0,'2021-05-19 01:18:12','2021-05-19 01:18:12',3,'1e09985f-b6fe-4ef6-b0d0-849238ec611a'),(162670,155313,NULL,8,2,0,'2021-05-19 01:18:12','2021-05-19 01:18:12',7,'e1668055-dd58-499d-93c6-1de08a8067d3'),(162671,155313,NULL,8,3,0,'2021-05-19 01:18:12','2021-05-19 01:18:12',8,'e891af10-cfa5-4128-9ebb-5e37a80d440b'),(162676,162674,NULL,8,2,NULL,'2021-05-19 01:18:12','2021-05-19 01:18:12',4,'ff2ef11a-10e2-458a-bea6-570fbded28a0'),(162677,162674,NULL,8,3,NULL,'2021-05-19 01:18:12','2021-05-19 01:18:12',5,'7652d7e4-47b2-4767-b2cd-26abfe20980d'),(162679,162674,NULL,8,3,NULL,'2021-05-19 01:18:12','2021-05-19 01:18:12',6,'f8a990bb-db10-40ee-a39e-def9e6497411'),(162681,162674,NULL,8,2,NULL,'2021-05-19 01:18:12','2021-05-19 01:18:12',1,'4392022b-06d6-4546-95cb-cf997cb7cb03'),(162682,162674,NULL,8,3,NULL,'2021-05-19 01:18:12','2021-05-19 01:18:12',2,'7d24329e-306e-4867-94a1-fb2f413fc428'),(162683,162674,NULL,8,21,NULL,'2021-05-19 01:18:12','2021-05-19 01:18:12',3,'678f0fbb-c4dd-4a7f-8591-878cfc0758e7'),(162690,162674,NULL,8,2,NULL,'2021-05-19 01:18:13','2021-05-19 01:18:13',7,'243c59c2-dcca-41aa-81dc-015c34e0e5ad'),(162691,162674,NULL,8,3,NULL,'2021-05-19 01:18:13','2021-05-19 01:18:13',8,'c211f822-0f05-4864-8c17-a966d25b1eb5'),(162696,162694,NULL,8,2,NULL,'2021-05-19 01:18:47','2021-05-19 01:18:47',4,'19a7931c-e4c2-41df-9a73-a258c578f5fe'),(162697,162694,NULL,8,3,NULL,'2021-05-19 01:18:47','2021-05-19 01:18:47',5,'811f656a-1ac4-4c37-9445-a09f12368308'),(162699,162694,NULL,8,3,NULL,'2021-05-19 01:18:47','2021-05-19 01:18:47',6,'9a8ae96a-cbcd-4efd-85ed-0647d62fbe29'),(162701,162694,NULL,8,2,NULL,'2021-05-19 01:18:47','2021-05-19 01:18:47',1,'12e39d03-8ac7-45fd-a30b-604156d0591b'),(162702,162694,NULL,8,3,NULL,'2021-05-19 01:18:47','2021-05-19 01:18:47',2,'3831c92b-4a64-41d3-bece-ba8d1df21440'),(162703,162694,NULL,8,21,NULL,'2021-05-19 01:18:47','2021-05-19 01:18:47',3,'32c93dec-eeda-4db6-aee4-152a29e45afe'),(162710,162694,NULL,8,2,NULL,'2021-05-19 01:18:47','2021-05-19 01:18:47',7,'5f2a8548-0c58-4743-94ad-a490feb82e23'),(162711,162694,NULL,8,3,NULL,'2021-05-19 01:18:47','2021-05-19 01:18:47',8,'457886e1-96f5-4be8-914f-de0ba61ad238'),(162716,162714,NULL,8,2,NULL,'2021-05-19 01:19:12','2021-05-19 01:19:12',1,'42dc33be-8ca7-468c-be7a-93e7d05806a0'),(162717,162714,NULL,8,3,NULL,'2021-05-19 01:19:12','2021-05-19 01:19:12',2,'bf7f9379-99e9-41a7-bc16-0a6997ac0b49'),(162718,162714,NULL,8,21,NULL,'2021-05-19 01:19:12','2021-05-19 01:19:12',3,'1f4f263d-3d62-4655-89e0-e58304b93162'),(162725,162714,NULL,8,2,NULL,'2021-05-19 01:19:13','2021-05-19 01:19:13',4,'4a400667-7872-4d12-af33-3e1694e4eff8'),(162726,162714,NULL,8,3,NULL,'2021-05-19 01:19:13','2021-05-19 01:19:13',5,'84469b71-9398-407d-b1be-00e121b7ad6e'),(162728,162714,NULL,8,3,NULL,'2021-05-19 01:19:13','2021-05-19 01:19:13',6,'82a7f75f-6c42-4b1e-a29c-035c308c43eb'),(162730,162714,NULL,8,2,NULL,'2021-05-19 01:19:13','2021-05-19 01:19:13',7,'7523174c-65e1-41cf-b747-c7ebe30a5a78'),(162731,162714,NULL,8,3,NULL,'2021-05-19 01:19:13','2021-05-19 01:19:13',8,'24bb4a35-17be-4723-ae23-4483ba0af567'),(162755,155313,NULL,8,2,0,'2021-05-19 01:20:05','2021-05-19 01:20:05',4,'df0d1ab5-5bb5-4ed0-817c-03691f779e98'),(162756,155313,NULL,8,3,0,'2021-05-19 01:20:05','2021-05-19 01:20:05',5,'3f88a635-ea3e-4943-8660-3450d556d555'),(162758,155313,NULL,8,3,0,'2021-05-19 01:20:05','2021-05-19 01:20:05',6,'6bc0e640-24a8-4b16-9d49-b686571b5dd6'),(162760,155313,NULL,8,2,0,'2021-05-19 01:20:05','2021-05-19 01:20:05',1,'fe204633-0aec-4956-9663-ef22a5585086'),(162761,155313,NULL,8,3,0,'2021-05-19 01:20:05','2021-05-19 01:20:05',2,'5f771110-f836-44ae-966c-967b1e826954'),(162762,155313,NULL,8,21,0,'2021-05-19 01:20:05','2021-05-19 01:20:05',3,'083871e8-e204-400d-a05e-9aa4eb9b0a03'),(162769,155313,NULL,8,2,0,'2021-05-19 01:20:05','2021-05-19 01:20:05',7,'7f5733d3-cea9-4a57-9553-29ad926636d2'),(162770,155313,NULL,8,3,0,'2021-05-19 01:20:05','2021-05-19 01:20:05',8,'dc7d29cb-3ace-4bfb-9429-ecec19e3830c'),(162775,162773,NULL,8,2,NULL,'2021-05-19 01:20:05','2021-05-19 01:20:05',4,'a37ce8df-734a-48fc-ae36-3070dbf8bedc'),(162776,162773,NULL,8,3,NULL,'2021-05-19 01:20:05','2021-05-19 01:20:05',5,'d24bddcf-9a8a-49da-9402-e2950d20ede2'),(162778,162773,NULL,8,3,NULL,'2021-05-19 01:20:06','2021-05-19 01:20:06',6,'cb986352-6b58-46dc-a9dc-8685179cd2df'),(162780,162773,NULL,8,2,NULL,'2021-05-19 01:20:06','2021-05-19 01:20:06',1,'d30d21bd-fcbe-425e-b629-de217d9b414f'),(162781,162773,NULL,8,3,NULL,'2021-05-19 01:20:06','2021-05-19 01:20:06',2,'7f8ac8a6-c05d-44c3-9556-552ae77a33f0'),(162782,162773,NULL,8,21,NULL,'2021-05-19 01:20:06','2021-05-19 01:20:06',3,'26efc373-c374-4be1-85d1-78d77347ad8f'),(162789,162773,NULL,8,2,NULL,'2021-05-19 01:20:06','2021-05-19 01:20:06',7,'c0da7e49-e7c5-420e-a521-8b5d3610b4d7'),(162790,162773,NULL,8,3,NULL,'2021-05-19 01:20:06','2021-05-19 01:20:06',8,'cc0e7ac7-451b-4af1-ab33-460c98bb1e94'),(162795,162793,NULL,8,2,NULL,'2021-05-19 01:20:10','2021-05-19 01:20:10',4,'1db4d58f-69a4-451e-810c-b0125082a566'),(162796,162793,NULL,8,3,NULL,'2021-05-19 01:20:10','2021-05-19 01:20:10',5,'3a3868a1-6946-4a20-9a51-f17e59ca169c'),(162798,162793,NULL,8,3,NULL,'2021-05-19 01:20:10','2021-05-19 01:20:10',6,'f4d7bcdc-64bf-4234-9b0b-c00a411ea5a4'),(162800,162793,NULL,8,2,NULL,'2021-05-19 01:20:10','2021-05-19 01:20:10',1,'1fca204c-f393-4c7b-bf90-d6b07917e24e'),(162801,162793,NULL,8,3,NULL,'2021-05-19 01:20:10','2021-05-19 01:20:10',2,'fa5171d3-a6b8-4182-8d7c-7dcb44e6c563'),(162802,162793,NULL,8,21,NULL,'2021-05-19 01:20:10','2021-05-19 01:20:10',3,'29eb612a-e27a-4366-b609-c9f70ae4e16d'),(162809,162793,NULL,8,2,NULL,'2021-05-19 01:20:10','2021-05-19 01:20:10',7,'3d8bc9bd-e02a-4c54-a95e-4a73983354b0'),(162810,162793,NULL,8,3,NULL,'2021-05-19 01:20:10','2021-05-19 01:20:10',8,'47383b03-a013-4468-8954-4501c9f2ad6d'),(162833,155313,NULL,8,2,0,'2021-05-19 01:25:13','2021-05-19 01:25:13',1,'5b4e795a-2900-4bd9-9965-904b946648db'),(162834,155313,NULL,8,3,0,'2021-05-19 01:25:13','2021-05-19 01:25:13',2,'bf10a57d-d0de-4ba8-972e-2e8259a3d605'),(162836,155313,NULL,8,3,0,'2021-05-19 01:25:13','2021-05-19 01:25:13',3,'98164007-8a57-4e6d-8c95-e2a6d7ff4498'),(162838,155313,NULL,8,2,0,'2021-05-19 01:25:13','2021-05-19 01:25:13',4,'70a67621-4079-4d6d-8b53-68d5a46502a7'),(162839,155313,NULL,8,3,0,'2021-05-19 01:25:13','2021-05-19 01:25:13',5,'8d5a7092-eb9e-4404-9649-24dbdc93817b'),(162840,155313,NULL,8,21,0,'2021-05-19 01:25:13','2021-05-19 01:25:13',6,'dc3e62a3-020b-49fe-9af3-04a5b1ea008c'),(162847,155313,NULL,8,2,0,'2021-05-19 01:25:13','2021-05-19 01:25:13',7,'332fc305-96d4-49a3-885b-eadb4c6d25bb'),(162848,155313,NULL,8,3,0,'2021-05-19 01:25:13','2021-05-19 01:25:13',8,'e6b2392c-3ad7-4b3b-8554-eedb8e46ee0b'),(162852,162851,NULL,8,2,NULL,'2021-05-19 01:25:14','2021-05-19 01:25:14',1,'64c9b337-4ef2-4bad-a1e8-f53f2c7f2968'),(162853,162851,NULL,8,3,NULL,'2021-05-19 01:25:14','2021-05-19 01:25:14',2,'5b90ad23-82d4-4a19-bfc7-13bacaa04a65'),(162855,162851,NULL,8,3,NULL,'2021-05-19 01:25:14','2021-05-19 01:25:14',3,'16d76f1b-c857-4654-b32d-55c7eea83371'),(162857,162851,NULL,8,2,NULL,'2021-05-19 01:25:14','2021-05-19 01:25:14',4,'86b63941-6e8f-4b20-b88a-b478c2173346'),(162858,162851,NULL,8,3,NULL,'2021-05-19 01:25:14','2021-05-19 01:25:14',5,'acbadd01-4ac3-4c22-af46-b74995699c61'),(162859,162851,NULL,8,21,NULL,'2021-05-19 01:25:14','2021-05-19 01:25:14',6,'6260f8ad-d44e-4994-b459-78eee74ab2f7'),(162866,162851,NULL,8,2,NULL,'2021-05-19 01:25:14','2021-05-19 01:25:14',7,'a77f8145-4aae-42e4-9021-ce758ce03be4'),(162867,162851,NULL,8,3,NULL,'2021-05-19 01:25:14','2021-05-19 01:25:14',8,'5a97b852-692d-4596-b38f-79dee17af3bd'),(162871,162870,NULL,8,2,NULL,'2021-05-19 01:25:20','2021-05-19 01:25:20',1,'fcd93f97-8b42-4b3b-8535-ef2922c586f9'),(162872,162870,NULL,8,3,NULL,'2021-05-19 01:25:20','2021-05-19 01:25:20',2,'9b09c36c-592e-4e6b-9536-30d1973be6b5'),(162874,162870,NULL,8,3,NULL,'2021-05-19 01:25:20','2021-05-19 01:25:20',3,'9b132262-a8b0-43b8-9083-ca9d1a3a7d98'),(162876,162870,NULL,8,2,NULL,'2021-05-19 01:25:20','2021-05-19 01:25:20',4,'90bcf353-54ae-4351-9a8d-5ef75371ae97'),(162877,162870,NULL,8,3,NULL,'2021-05-19 01:25:20','2021-05-19 01:25:20',5,'3cbe049d-7b7d-49fa-8b22-0ed1b12a8625'),(162878,162870,NULL,8,21,NULL,'2021-05-19 01:25:20','2021-05-19 01:25:20',6,'625a99ad-5d28-41ac-af89-2ea7b994c908'),(162885,162870,NULL,8,2,NULL,'2021-05-19 01:25:20','2021-05-19 01:25:20',7,'5d5f4348-8fc6-4db4-b559-090d047cfd2f'),(162886,162870,NULL,8,3,NULL,'2021-05-19 01:25:20','2021-05-19 01:25:20',8,'2cd6777d-6a1c-401d-b9ca-c391fa00f151'),(162914,155313,NULL,8,2,0,'2021-05-19 01:30:30','2021-05-19 01:30:30',1,'9c5e76ce-7cb8-4f97-a2e9-a8f4817766b7'),(162915,155313,NULL,8,3,0,'2021-05-19 01:30:30','2021-05-19 01:30:30',2,'36e308c8-2d95-42c0-b1fb-3eeb1f699ed7'),(162917,155313,NULL,8,3,0,'2021-05-19 01:30:30','2021-05-19 01:30:30',3,'a386831a-b8ba-4219-860b-85e27ee80650'),(162919,155313,NULL,8,2,0,'2021-05-19 01:30:30','2021-05-19 01:30:30',4,'fbc93a26-aa3a-411f-a944-297b1a68ffbf'),(162920,155313,NULL,8,3,0,'2021-05-19 01:30:30','2021-05-19 01:30:30',5,'71a1015c-a53e-4a8b-9dbc-23d075adc423'),(162921,155313,NULL,8,21,0,'2021-05-19 01:30:30','2021-05-19 01:30:30',6,'887b3854-1a63-4797-8f26-4b5f4c7fde8e'),(162928,155313,NULL,8,2,0,'2021-05-19 01:30:30','2021-05-19 01:30:30',7,'e1ba425d-7305-4396-82ba-cb4ef4e17172'),(162929,155313,NULL,8,3,0,'2021-05-19 01:30:30','2021-05-19 01:30:30',8,'d4fb5521-cf84-449d-9bca-c0f1368f30c5'),(162934,162932,NULL,8,2,NULL,'2021-05-19 01:30:31','2021-05-19 01:30:31',1,'98319d82-4182-4e42-b638-85b11c214de7'),(162935,162932,NULL,8,3,NULL,'2021-05-19 01:30:31','2021-05-19 01:30:31',2,'12c11de1-171b-4baf-b707-aa510b653689'),(162937,162932,NULL,8,3,NULL,'2021-05-19 01:30:31','2021-05-19 01:30:31',3,'ed1b45ec-fe33-4999-804a-abcaf0fb3814'),(162939,162932,NULL,8,2,NULL,'2021-05-19 01:30:31','2021-05-19 01:30:31',4,'74fd29f5-da06-4c98-a93c-33d0a2cc079d'),(162940,162932,NULL,8,3,NULL,'2021-05-19 01:30:31','2021-05-19 01:30:31',5,'b2fa7ec2-5458-4a5b-8ff6-bf04006e8b92'),(162941,162932,NULL,8,21,NULL,'2021-05-19 01:30:31','2021-05-19 01:30:31',6,'8421253e-4fbb-4358-9ab3-c6fb19008a8b'),(162948,162932,NULL,8,2,NULL,'2021-05-19 01:30:32','2021-05-19 01:30:32',7,'a72ce7d2-2b4d-4ce5-a4ed-d8149d0c0f66'),(162949,162932,NULL,8,3,NULL,'2021-05-19 01:30:32','2021-05-19 01:30:32',8,'20d6e656-0bd5-4a91-a6ff-5a8445a7a68d'),(162954,162952,NULL,8,2,NULL,'2021-05-19 01:31:34','2021-05-19 01:31:34',1,'47335140-6afb-40ec-a959-1e8f223ce5a0'),(162955,162952,NULL,8,3,NULL,'2021-05-19 01:31:34','2021-05-19 01:31:34',2,'38600ec0-855a-48fb-9ae4-8b3770160220'),(162957,162952,NULL,8,3,NULL,'2021-05-19 01:31:34','2021-05-19 01:31:34',3,'21532d07-288d-4d46-93ea-21209606d063'),(162959,162952,NULL,8,2,NULL,'2021-05-19 01:31:34','2021-05-19 01:31:34',4,'a0551f30-5014-4cf9-b215-bf200dce73bf'),(162960,162952,NULL,8,3,NULL,'2021-05-19 01:31:35','2021-05-19 01:31:35',5,'e27e08f5-57a3-4494-b177-827e259ea86e'),(162961,162952,NULL,8,21,NULL,'2021-05-19 01:31:35','2021-05-19 01:31:35',6,'164b5ceb-9d95-4fd0-93a3-f95f080550dc'),(162968,162952,NULL,8,2,NULL,'2021-05-19 01:31:35','2021-05-19 01:31:35',7,'832ac5fe-9575-429a-90ec-5c87542214ca'),(162969,162952,NULL,8,3,NULL,'2021-05-19 01:31:35','2021-05-19 01:31:35',8,'b7c1ad71-c65e-40d6-b154-592a74d90c02'),(162993,155313,NULL,8,2,0,'2021-05-19 01:36:50','2021-05-19 01:36:50',4,'092384dd-123b-4724-af85-0b7120eea168'),(162994,155313,NULL,8,3,0,'2021-05-19 01:36:50','2021-05-19 01:36:50',5,'db9c253f-4130-40d5-bcfb-4c6440480041'),(162996,155313,NULL,8,2,0,'2021-05-19 01:36:50','2021-05-19 01:36:50',1,'cfe66fc2-be2d-4438-9f88-018dfb13e43d'),(162997,155313,NULL,8,3,0,'2021-05-19 01:36:50','2021-05-19 01:36:50',2,'91bb6dc4-ac5e-4c36-986d-20ec52e7200c'),(162998,155313,NULL,8,21,0,'2021-05-19 01:36:50','2021-05-19 01:36:50',3,'cc87dce3-b1ec-4d7c-8530-d54950883cee'),(163005,155313,NULL,8,2,0,'2021-05-19 01:36:50','2021-05-19 01:36:50',6,'8e8b0a20-c122-497e-b422-ad0cd540d01e'),(163006,155313,NULL,8,3,0,'2021-05-19 01:36:51','2021-05-19 01:36:51',7,'9f0c561e-ff30-4b24-85e8-19f8c1b99339'),(163011,163009,NULL,8,2,NULL,'2021-05-19 01:36:51','2021-05-19 01:36:51',4,'db1b2b3a-8e74-4ee8-8c92-e694255d07a5'),(163012,163009,NULL,8,3,NULL,'2021-05-19 01:36:51','2021-05-19 01:36:51',5,'4ce9806a-be85-4fdc-b133-b89219a81323'),(163014,163009,NULL,8,2,NULL,'2021-05-19 01:36:51','2021-05-19 01:36:51',1,'349b6450-6b75-434d-97ff-6607600e6ea5'),(163015,163009,NULL,8,3,NULL,'2021-05-19 01:36:51','2021-05-19 01:36:51',2,'66143239-c4f9-4bfc-8976-fd0d7be71539'),(163016,163009,NULL,8,21,NULL,'2021-05-19 01:36:51','2021-05-19 01:36:51',3,'bf803fe6-196c-4e84-8b41-28d3e3afa1d9'),(163023,163009,NULL,8,2,NULL,'2021-05-19 01:36:51','2021-05-19 01:36:51',6,'7e488dc5-38a4-4f84-b62b-28de3930ddf3'),(163024,163009,NULL,8,3,NULL,'2021-05-19 01:36:51','2021-05-19 01:36:51',7,'8e3fef89-d5f8-4e44-a8c5-e5ad6a07149a'),(163029,163027,NULL,8,2,NULL,'2021-05-19 01:36:58','2021-05-19 01:36:58',4,'b8820880-9d9e-4396-8d04-442c42d7fd83'),(163030,163027,NULL,8,3,NULL,'2021-05-19 01:36:58','2021-05-19 01:36:58',5,'6b252d69-cc5a-462d-90eb-168603d0ec67'),(163032,163027,NULL,8,2,NULL,'2021-05-19 01:36:58','2021-05-19 01:36:58',1,'6dceaf96-57fa-4b0d-9b77-9239cae8d84f'),(163033,163027,NULL,8,3,NULL,'2021-05-19 01:36:58','2021-05-19 01:36:58',2,'d854a109-6fa5-496a-b512-e6adf0152291'),(163034,163027,NULL,8,21,NULL,'2021-05-19 01:36:58','2021-05-19 01:36:58',3,'b4c694c6-63dd-4ef6-89ab-6a071532ec98'),(163041,163027,NULL,8,2,NULL,'2021-05-19 01:36:58','2021-05-19 01:36:58',6,'8d907263-93a2-4988-a30c-362124ccdb28'),(163042,163027,NULL,8,3,NULL,'2021-05-19 01:36:58','2021-05-19 01:36:58',7,'ee844dd3-d51f-418a-9c24-41e9413726a7'),(163045,155313,NULL,8,2,0,'2021-05-19 01:39:35','2021-05-19 01:39:35',4,'e123e23d-c8e0-40d0-835b-b860c23e1330'),(163046,155313,NULL,8,3,0,'2021-05-19 01:39:35','2021-05-19 01:39:35',5,'b662893e-0b0b-4170-aa8c-559ced2f604e'),(163050,163048,NULL,8,2,NULL,'2021-05-19 01:39:35','2021-05-19 01:39:35',1,'de41367b-2d70-45b7-9264-4d3b063f4aa6'),(163051,163048,NULL,8,3,NULL,'2021-05-19 01:39:35','2021-05-19 01:39:35',2,'4c5ae78b-127f-4069-b056-bcfb1f22beaa'),(163052,163048,NULL,8,21,NULL,'2021-05-19 01:39:35','2021-05-19 01:39:35',3,'b23a1670-56f4-43a5-8997-66b645d8c599'),(163059,163048,NULL,8,2,NULL,'2021-05-19 01:39:36','2021-05-19 01:39:36',4,'6f447948-df46-4296-b38f-9bbbe316cc28'),(163060,163048,NULL,8,3,NULL,'2021-05-19 01:39:36','2021-05-19 01:39:36',5,'efaae85f-163b-405b-a003-5d99aa5664e4'),(163062,163048,NULL,8,2,NULL,'2021-05-19 01:39:36','2021-05-19 01:39:36',6,'ec7b13db-bdc8-41b5-b93f-bbf80f8f5bfc'),(163063,163048,NULL,8,3,NULL,'2021-05-19 01:39:36','2021-05-19 01:39:36',7,'2f61abd4-c5f6-4a81-8451-a5d7154bac58'),(163085,155313,NULL,8,2,NULL,'2021-05-19 01:40:44','2021-05-19 01:40:44',1,'6bee238a-b11c-4cde-bffa-4f5c62e8da81'),(163086,155313,NULL,8,3,NULL,'2021-05-19 01:40:44','2021-05-19 01:40:44',2,'55d7a402-91b6-4fac-bccd-40b3a50a4fe4'),(163087,155313,NULL,8,21,NULL,'2021-05-19 01:40:44','2021-05-19 01:40:44',3,'d31c789a-7b9c-4247-8fc6-b77abff48cb3'),(163094,155313,NULL,8,2,NULL,'2021-05-19 01:40:44','2021-05-19 01:40:44',4,'5004ec97-01f4-4976-b80a-bc5b30870acd'),(163095,155313,NULL,8,3,NULL,'2021-05-19 01:40:44','2021-05-19 01:40:44',5,'479dc432-4be4-45d5-ba40-23f095aa8c78'),(163097,155313,NULL,8,2,NULL,'2021-05-19 01:40:44','2021-05-19 01:40:44',6,'b8138b3c-330d-4255-bd95-cae527519440'),(163098,155313,NULL,8,3,NULL,'2021-05-19 01:40:44','2021-05-19 01:40:44',7,'90ac09d2-ea7f-4b32-a01b-b8cf44f11af0'),(163103,163101,NULL,8,2,NULL,'2021-05-19 01:40:44','2021-05-19 01:40:44',1,'a0203a7a-df82-4484-9f18-e69f90f8431d'),(163104,163101,NULL,8,3,NULL,'2021-05-19 01:40:44','2021-05-19 01:40:44',2,'63ea9bac-941c-4ca4-905f-a38391706535'),(163105,163101,NULL,8,21,NULL,'2021-05-19 01:40:44','2021-05-19 01:40:44',3,'2fc1c834-02cf-4f9e-820c-609c4db95548'),(163112,163101,NULL,8,2,NULL,'2021-05-19 01:40:45','2021-05-19 01:40:45',4,'36674e4f-1292-4e04-a30c-6afd5543c9da'),(163113,163101,NULL,8,3,NULL,'2021-05-19 01:40:45','2021-05-19 01:40:45',5,'4ce907e2-dfc6-4316-a0dc-11e6a29ffb17'),(163115,163101,NULL,8,2,NULL,'2021-05-19 01:40:45','2021-05-19 01:40:45',6,'2a5df31d-5ce1-4ee2-a96e-efcc9e7c0853'),(163116,163101,NULL,8,3,NULL,'2021-05-19 01:40:45','2021-05-19 01:40:45',7,'5d6c37f4-9bdb-4e4c-bbdf-c6c691bc6923'),(163121,163119,NULL,8,2,NULL,'2021-05-19 01:40:52','2021-05-19 01:40:52',1,'1b3fe975-8402-4ce9-9919-be10d246c43c'),(163122,163119,NULL,8,3,NULL,'2021-05-19 01:40:52','2021-05-19 01:40:52',2,'46fc0c83-1873-4b63-a35f-c2f4f4181844'),(163123,163119,NULL,8,21,NULL,'2021-05-19 01:40:52','2021-05-19 01:40:52',3,'eec0e588-d962-4624-b460-23aed3841a60'),(163130,163119,NULL,8,2,NULL,'2021-05-19 01:40:52','2021-05-19 01:40:52',4,'0645bf9f-ad8d-4144-9018-90c57d9517a0'),(163131,163119,NULL,8,3,NULL,'2021-05-19 01:40:52','2021-05-19 01:40:52',5,'060e47f2-147f-4162-b335-39358d8a124a'),(163133,163119,NULL,8,2,NULL,'2021-05-19 01:40:52','2021-05-19 01:40:52',6,'6eafeba3-a8b0-465e-9247-820893136573'),(163134,163119,NULL,8,3,NULL,'2021-05-19 01:40:52','2021-05-19 01:40:52',7,'f6b294dd-bc5b-4821-a109-6729e93341ce');
/*!40000 ALTER TABLE `neoblocks` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `neoblockstructures`
--

LOCK TABLES `neoblockstructures` WRITE;
/*!40000 ALTER TABLE `neoblockstructures` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `neoblockstructures` VALUES (1255,1267,6786,1,8,'2020-03-02 06:39:18','2020-03-02 06:39:18','49f87544-19be-4b0e-b157-c36568cced99'),(2696,2708,18021,1,8,'2020-03-03 04:28:43','2020-03-03 04:28:43','fe7813f7-b3d6-4018-a028-560e8c614cf6'),(2698,2710,18044,1,8,'2020-03-03 04:29:04','2020-03-03 04:29:04','129a8a2d-9776-4e09-bd62-1d142d62ffd3'),(3001,3013,20183,1,8,'2020-03-06 01:14:57','2020-03-06 01:14:57','77db7b3c-18ad-4167-bc79-a71a83603b66'),(3003,3016,20195,1,8,'2020-03-06 03:23:12','2020-03-06 03:23:12','e8ef3b2b-d324-4a01-baf2-d60a9022e12c'),(3150,3163,21092,1,8,'2020-04-07 05:29:27','2020-04-07 05:29:27','aa7d694e-c712-46e2-a5e3-70b455069800'),(3152,3165,21104,1,8,'2020-04-07 05:37:44','2020-04-07 05:37:44','f12f7ea7-be5e-4172-8585-083a47545ebd'),(3164,3177,21124,1,8,'2020-04-14 04:49:21','2020-04-14 04:49:21','5dff7285-0c92-479d-852d-126e2090517a'),(3244,3257,21373,1,8,'2020-04-14 05:47:35','2020-04-14 05:47:35','a82546ee-7c2b-4c93-8c8d-60aaef7cfd80'),(3245,3258,21384,1,8,'2020-04-14 05:48:12','2020-04-14 05:48:12','1958fe2d-f7e2-4f65-90d0-267a7f89c590'),(3254,3267,21904,1,8,'2020-04-24 01:21:52','2020-04-24 01:21:52','697a1778-3b75-4aa8-8302-2cb9e48f76d9'),(3255,3268,21915,1,8,'2020-04-24 01:27:38','2020-04-24 01:27:38','4c637293-3cd3-4192-91e8-a20085c3c220'),(3263,3276,21976,1,8,'2020-04-24 05:44:41','2020-04-24 05:44:41','6ea306e2-ee8c-4a1a-a545-bc9dee98a773'),(3319,3332,22296,1,8,'2020-04-24 06:32:40','2020-04-24 06:32:40','843ceab9-5660-44ac-a376-1f3abbeb3609'),(3325,3338,22331,1,8,'2020-04-27 01:48:08','2020-04-27 01:48:08','997aad00-ec7a-4de1-a1da-ce9e02884939'),(3334,3347,22404,1,8,'2020-04-27 06:18:05','2020-04-27 06:18:05','e99fecab-69eb-4598-a179-9d628fe85839'),(3338,3351,22421,1,8,'2020-04-27 06:23:28','2020-04-27 06:23:28','9cf63b8f-13fa-47c8-a079-edd2853eb8a9'),(3340,3353,22427,1,8,'2020-04-27 06:30:44','2020-04-27 06:30:44','eee28e6b-cd7d-4d2f-9bcd-0cc094e3390f'),(4243,4256,27859,1,8,'2020-05-12 00:14:36','2020-05-12 00:14:36','c88c74e5-db7b-4dda-9b2e-5b9be1017029'),(4244,4257,27888,1,8,'2020-05-12 00:23:23','2020-05-12 00:23:23','a26e0488-fa14-4282-92ea-aa42be18ec97'),(4257,4270,27971,1,8,'2020-05-12 02:44:50','2020-05-12 02:44:50','756e7531-2459-40ed-8416-a11a779f92a3'),(4260,4273,27996,1,8,'2020-05-12 02:51:13','2020-05-12 02:51:13','c02167f9-fd94-4635-9386-21eb428d9be2'),(5943,5956,38114,1,8,'2020-05-19 05:28:02','2020-05-19 05:28:02','34fd54e1-1caf-4650-9788-a804488c3be8'),(6801,6814,45250,1,8,'2020-05-22 06:02:45','2020-05-22 06:02:45','2ba1304b-96f8-46cb-89bd-5bc0ba445020'),(6803,6816,45265,1,8,'2020-05-22 06:04:34','2020-05-22 06:04:34','b5a70014-9abe-4b17-a70f-0404788a2a49'),(7123,7136,48168,1,8,'2020-05-26 03:58:32','2020-05-26 03:58:32','8aae3396-04de-41fe-8e8c-0ebca2327a45'),(9849,9864,74279,1,8,'2020-06-12 04:21:03','2020-06-12 04:21:03','403595b8-c615-4e2f-92ac-db24886597f9'),(11209,11224,87592,1,8,'2020-06-17 06:21:06','2020-06-17 06:21:06','0cbdecd5-f291-4819-abd4-a77817ddcfd9'),(11214,11229,87609,1,8,'2020-06-17 06:23:50','2020-06-17 06:23:50','d197efe6-1d5f-4414-bff1-a87541ae7af4'),(11215,11230,87613,1,8,'2020-06-17 06:35:41','2020-06-17 06:35:41','3f7f5798-bfc6-4c83-846c-f800501562b0'),(11926,11941,94437,1,8,'2020-06-29 04:30:04','2020-06-29 04:30:04','a8ff4bfa-a164-4ea9-8671-e1d7d31784a5'),(14112,14127,21876,1,8,'2020-09-09 05:17:46','2020-09-09 05:17:46','f93b32cd-6194-4a77-9059-5acbd4c0af15'),(15071,15086,120599,1,8,'2020-10-30 05:27:03','2020-10-30 05:27:03','5d0159d0-6c62-4560-86ae-1b56cec190c5'),(15072,15087,120605,1,8,'2020-10-30 05:27:37','2020-10-30 05:27:37','27051ed7-e50c-422e-b816-0957b612a828'),(15075,15090,94467,1,8,'2020-10-30 05:29:06','2020-10-30 05:29:06','4706acf2-179a-4ea0-8764-7a3b617825cd'),(15077,15092,120620,1,8,'2020-10-30 05:29:07','2020-10-30 05:29:07','df6fa70a-a6b4-4d7d-8db0-4c5c708440e7'),(17022,17037,17998,1,8,'2021-03-12 06:35:58','2021-03-12 06:35:58','4d433e74-90ca-4b25-91ef-dd1c4b4db707'),(17025,17040,140087,1,8,'2021-03-12 06:36:07','2021-03-12 06:36:07','cd98cc05-25a7-4712-bb43-426a56e3c88b'),(17030,17045,140187,1,8,'2021-03-12 06:44:52','2021-03-12 06:44:52','bba790a0-9cee-4761-ae5e-349d6ab25ed3'),(17151,17166,141353,1,8,'2021-03-16 05:21:54','2021-03-16 05:21:54','64c15580-f9fd-481f-9259-4ef04e85c0d5'),(17153,17168,141362,1,8,'2021-03-16 05:22:44','2021-03-16 05:22:44','9d5f4872-805b-4fcf-84b6-92f9907f2795'),(17186,17201,142323,1,8,'2021-03-16 05:44:26','2021-03-16 05:44:26','01d1622c-3eda-4c6f-ba68-7fad49436ac9'),(17187,17202,142291,1,8,'2021-03-16 05:44:41','2021-03-16 05:44:41','e6aeebd2-a211-4f7e-9234-f7220a4d070e'),(17199,17214,142644,1,8,'2021-03-17 00:23:17','2021-03-17 00:23:17','f756aadd-fc7b-4e8c-a024-7889229f8d6d'),(17201,17216,142676,1,8,'2021-03-17 00:48:06','2021-03-17 00:48:06','091f64e1-945b-4c7e-a444-2788af10ef3b'),(17203,17218,142710,1,8,'2021-03-17 01:49:49','2021-03-17 01:49:49','585875b3-ffc3-43b3-8c98-7fc703aa0997'),(17252,17267,142949,1,8,'2021-03-17 03:04:00','2021-03-17 03:04:00','87ae124b-6167-4152-95ff-824e5eaac368'),(17258,17273,143093,1,8,'2021-03-17 03:18:12','2021-03-17 03:18:12','7f3fa513-83d4-42f0-8846-d3781ac4e688'),(17281,17296,143241,1,8,'2021-03-18 00:13:47','2021-03-18 00:13:47','95872561-f65d-4406-a26e-75b7d21263f9'),(17283,17298,143273,1,8,'2021-03-18 00:15:04','2021-03-18 00:15:04','b92a9522-53cb-40bb-bff3-e174d5d8b17d'),(17287,17302,143305,1,8,'2021-03-18 00:25:12','2021-03-18 00:25:12','fbe02298-b414-4151-9092-75061a33f40e'),(17330,17345,143536,1,8,'2021-03-18 00:34:42','2021-03-18 00:34:42','0469dd1f-accc-48f8-919f-02d6ea69a0b0'),(17333,17348,143556,1,8,'2021-03-18 00:34:43','2021-03-18 00:34:43','885d4b51-1fcb-452f-bf6e-672eab28967c'),(17339,17354,143659,1,8,'2021-03-18 00:46:57','2021-03-18 00:46:57','4946191d-36b5-4c3b-a025-6facee4d64d2'),(17347,17362,143921,1,8,'2021-03-18 01:50:37','2021-03-18 01:50:37','22c07a8a-b441-47df-a168-7e571cfe064e'),(17348,17363,143959,1,8,'2021-03-18 01:50:39','2021-03-18 01:50:39','b18c20d1-53fc-44cd-8a3a-b0bf22cbb2e3'),(17352,17367,144129,1,8,'2021-03-22 01:47:55','2021-03-22 01:47:55','41582c51-bfd4-4743-b1ea-d451eb542ac7'),(17354,17369,144147,1,8,'2021-03-22 01:47:58','2021-03-22 01:47:58','29fd4cdc-4f38-41d8-b0d5-f245e30b34b9'),(17359,17374,144188,1,8,'2021-03-22 02:17:25','2021-03-22 02:17:25','2f0732af-8262-4cd4-ac5f-5ae42e14be97'),(17360,17375,144200,1,8,'2021-03-22 02:17:28','2021-03-22 02:17:28','d1672776-3ef7-4cd9-8845-067e847e14f5'),(17361,17376,144218,1,8,'2021-03-22 03:39:19','2021-03-22 03:39:19','fc3e3a36-708d-439c-a6be-db6a2c14151b'),(17362,17377,144251,1,8,'2021-03-22 06:21:42','2021-03-22 06:21:42','d5b53b0b-b41d-4c75-89b9-85fed9727d0d'),(17367,17382,144379,1,8,'2021-03-23 06:19:54','2021-03-23 06:19:54','692ad533-3549-4137-b79e-eb6cd79ecc3f'),(17369,17384,144393,1,8,'2021-03-23 06:19:57','2021-03-23 06:19:57','67709b0b-1ade-424d-830f-9d709a524f66'),(17371,17386,144423,1,8,'2021-03-23 23:34:29','2021-03-23 23:34:29','90aaafae-bb2c-467e-9886-372855ce2fc9'),(17376,17391,144456,1,8,'2021-03-24 00:49:54','2021-03-24 00:49:54','eaf421ea-edde-4d1c-9647-41a1109bf25f'),(17380,17395,144476,1,8,'2021-03-24 00:55:38','2021-03-24 00:55:38','00239338-e8ad-4fdc-8008-2618a2cad70a'),(17381,17396,144483,1,8,'2021-03-24 00:58:49','2021-03-24 00:58:49','89bb0e7f-6e75-4607-b30b-5833972b92e6'),(17382,17397,144673,1,8,'2021-03-24 05:22:41','2021-03-24 05:22:41','74b89659-0c3b-456b-9955-f679f7da8c89'),(17407,17422,144926,1,8,'2021-03-24 05:59:36','2021-03-24 05:59:36','59a456a9-021c-41d5-b04c-7b5bc42f010e'),(17409,17424,144933,1,8,'2021-03-24 05:59:40','2021-03-24 05:59:40','99e6adc3-4c13-4718-b9ae-df985336cab6'),(17410,17425,144940,1,8,'2021-03-24 05:59:40','2021-03-24 05:59:40','5d655d6d-a6cc-44dd-9a13-aeb7ea66f7cd'),(17411,17426,144961,1,8,'2021-03-25 01:07:06','2021-03-25 01:07:06','f9a0c4d7-5cef-4bf5-b9fb-e5528bdb6764'),(17415,17430,145004,1,8,'2021-03-25 05:20:34','2021-03-25 05:20:34','839916aa-23c3-4f3d-a422-21a97f98a3dd'),(17416,17431,145016,1,8,'2021-03-25 05:20:36','2021-03-25 05:20:36','5afecadb-e41e-4a34-ab25-0976596f5d48'),(17417,17432,145046,1,8,'2021-03-26 00:22:32','2021-03-26 00:22:32','0bf16f0b-e0aa-4198-a42e-e1ddb825277f'),(17418,17433,145059,1,8,'2021-03-26 00:24:10','2021-03-26 00:24:10','0c1a5fdc-3c6a-4e5e-98e3-26af70454181'),(17422,17437,145098,1,8,'2021-03-26 00:46:19','2021-03-26 00:46:19','93c86bbb-14b7-47bd-b5ef-ebf911996d22'),(17424,17439,145108,1,8,'2021-03-26 00:46:25','2021-03-26 00:46:25','5326675c-0eb9-4629-98df-13f90880ac4b'),(17429,17444,145156,1,8,'2021-03-26 01:10:12','2021-03-26 01:10:12','92eb1d3f-6569-40be-ab4f-a9d708d59872'),(17430,17445,145171,1,8,'2021-03-26 01:10:17','2021-03-26 01:10:17','da55e17c-04c6-4e6e-a5a2-e190bd5b2eeb'),(17434,17449,145206,1,8,'2021-03-26 01:58:03','2021-03-26 01:58:03','c6bc7f20-9ef2-406c-bfd5-61f5ebd12162'),(17435,17450,145216,1,8,'2021-03-26 01:58:10','2021-03-26 01:58:10','52781413-bc4f-48f3-af5b-3f5d27a62a8f'),(17439,17454,145300,1,8,'2021-03-26 01:59:53','2021-03-26 01:59:53','86486690-01d6-4c16-8d1b-f03da796f93b'),(17441,17456,145337,1,8,'2021-03-26 01:59:55','2021-03-26 01:59:55','1824ea0a-3e4d-4717-ae81-324121a1504e'),(17446,17461,145441,1,8,'2021-03-26 02:04:10','2021-03-26 02:04:10','b9b5f588-7f00-4e6c-b824-575392283358'),(17448,17463,145476,1,8,'2021-03-26 02:24:43','2021-03-26 02:24:43','c4f6d50c-6598-410d-aef5-f4323865b333'),(17450,17465,145515,1,8,'2021-03-26 03:14:03','2021-03-26 03:14:03','65f49711-aae5-4a0d-84ed-3b84e94f4e18'),(17492,17507,145729,1,8,'2021-03-26 05:41:27','2021-03-26 05:41:27','fca398c8-85ce-4216-912b-4836f6b70864'),(17634,17649,146253,1,8,'2021-03-26 06:07:09','2021-03-26 06:07:09','591566a1-92ba-429c-af99-13ba249aa422'),(17635,17650,146258,1,8,'2021-03-26 06:07:09','2021-03-26 06:07:09','f330492a-9561-496f-8259-4e01a5816f26'),(17638,17653,146303,1,8,'2021-03-26 06:10:29','2021-03-26 06:10:29','e4aa130b-54a8-413e-b536-2815873dfa88'),(17643,17658,146347,1,8,'2021-03-26 06:11:35','2021-03-26 06:11:35','208c1b48-9800-4658-a3eb-256f24fc3e0e'),(17644,17659,146352,1,8,'2021-03-26 06:11:38','2021-03-26 06:11:38','93bb6d78-2e24-4b70-b097-60eacfb073e1'),(17649,17664,146386,1,8,'2021-03-26 06:15:33','2021-03-26 06:15:33','7f394bf1-4e61-447e-9a78-dd85cc455b7b'),(17650,17665,146391,1,8,'2021-03-26 06:15:36','2021-03-26 06:15:36','357b9f71-2f78-4106-8351-d378674c58a0'),(17651,17666,146396,1,8,'2021-03-26 06:16:07','2021-03-26 06:16:07','62ffd1e6-3ead-413a-9351-33daf9dde400'),(17654,17669,146422,1,8,'2021-03-26 06:16:48','2021-03-26 06:16:48','3acee0ca-c2ec-481a-84b2-24095b88f923'),(17657,17672,146442,1,8,'2021-03-26 06:16:50','2021-03-26 06:16:50','afc00bd3-086a-474b-9e63-47624e6cd5a6'),(17658,17673,146462,1,8,'2021-03-26 06:19:31','2021-03-26 06:19:31','fed3ab38-ba6d-42cb-b6e2-4fc72d6aadae'),(17663,17678,146521,1,8,'2021-03-26 06:20:31','2021-03-26 06:20:31','31f33807-e830-4aa7-9737-b206619021e5'),(17668,17683,146564,1,8,'2021-03-26 06:30:54','2021-03-26 06:30:54','675242ca-798b-4f25-b170-da5dfaa9818b'),(17670,17685,146576,1,8,'2021-03-26 06:31:18','2021-03-26 06:31:18','e7252f67-f277-4df7-9299-96bfc1366249'),(17672,17687,146590,1,8,'2021-03-29 00:32:25','2021-03-29 00:32:25','7274fe3f-8299-493f-baa0-819ffa8f8436'),(17674,17689,146603,1,8,'2021-03-29 00:47:22','2021-03-29 00:47:22','dbc4de87-bcd8-4bc3-9e7c-421855e294ab'),(17678,17693,146649,1,8,'2021-03-29 00:47:50','2021-03-29 00:47:50','2df7972b-8d7c-49a4-944f-b857be3011d3'),(17683,17698,146738,1,8,'2021-03-29 00:50:06','2021-03-29 00:50:06','f1a80fa1-be33-48ea-b6f4-916ad1a72b32'),(17685,17700,146773,1,8,'2021-03-29 01:18:18','2021-03-29 01:18:18','7f4906ca-e3b5-4cde-aed5-7e6f9ec49b1f'),(17691,17706,146820,1,8,'2021-03-29 01:57:01','2021-03-29 01:57:01','d65a606f-f927-4253-bd9c-65235f2d6454'),(17692,17707,146830,1,8,'2021-03-29 01:57:04','2021-03-29 01:57:04','35bea779-703f-4a22-a944-952cb264b666'),(17693,17708,146840,1,8,'2021-03-29 02:50:38','2021-03-29 02:50:38','37169775-8027-4b33-882a-c7b715d0627b'),(17699,17714,146903,1,8,'2021-03-29 03:00:52','2021-03-29 03:00:52','677a3b27-e301-4c6d-8117-2bf9bb400193'),(17700,17715,146924,1,8,'2021-03-29 03:00:55','2021-03-29 03:00:55','1ae22912-701c-478d-9c04-69848ea87a35'),(17701,17716,146968,1,8,'2021-03-29 06:14:54','2021-03-29 06:14:54','d82a6192-f716-4ce2-9b92-1ee179a23caa'),(17703,17718,147004,1,8,'2021-03-29 06:42:47','2021-03-29 06:42:47','6572a26b-b1ff-48de-9461-03ac38a5274c'),(17705,17720,147034,1,8,'2021-03-29 22:43:25','2021-03-29 22:43:25','30ef3bc2-10db-4cd1-b488-1536d58fc64c'),(17707,17722,147078,1,8,'2021-03-30 03:29:27','2021-03-30 03:29:27','c922d09d-3d61-4dd0-a524-4232d80bed1b'),(17708,17723,147088,1,8,'2021-03-30 22:50:33','2021-03-30 22:50:33','b1618188-daac-4a62-8847-89a2c1e866d6'),(17744,17759,148305,1,8,'2021-03-31 06:17:02','2021-03-31 06:17:02','669cf97a-abc6-4456-bf27-663f5ccc5f4a'),(17746,17761,148344,1,8,'2021-03-31 06:18:22','2021-03-31 06:18:22','622916b8-ca6a-4d13-ab44-a480c36eba7e'),(17753,17768,148521,1,8,'2021-03-31 06:26:39','2021-03-31 06:26:39','0cf47def-3f2f-4ab1-80ac-4856da5e5705'),(17768,17783,148735,1,8,'2021-03-31 23:29:36','2021-03-31 23:29:36','1c8503f7-4a97-4ebc-8fe7-a7a1e5684836'),(17769,17784,148747,1,8,'2021-03-31 23:29:38','2021-03-31 23:29:38','f7f29cef-8945-4e44-a3a5-d3c06d11f566'),(17772,17787,148987,1,8,'2021-04-05 23:31:10','2021-04-05 23:31:10','6a5a3f8a-96f3-4bfb-8342-7ba2da22db9f'),(17778,17793,149027,1,8,'2021-04-06 01:19:35','2021-04-06 01:19:35','d5beff28-6efc-4cdc-a9d5-d9c5abd18c84'),(17792,17807,149138,1,8,'2021-04-06 02:15:11','2021-04-06 02:15:11','47695226-aaab-4ff8-bd13-1cd557802607'),(17793,17808,149178,1,8,'2021-04-06 02:15:14','2021-04-06 02:15:14','2e00a3ef-f740-4d08-9aa0-29829e15879c'),(17800,17815,149269,1,8,'2021-04-06 02:51:41','2021-04-06 02:51:41','72da5778-7a31-4a4f-92b9-2b9308e7e213'),(17802,17817,149278,1,8,'2021-04-06 03:28:58','2021-04-06 03:28:58','90ba7a86-e655-4f58-b313-5174a8ec49ae'),(17804,17819,149287,1,8,'2021-04-06 03:30:24','2021-04-06 03:30:24','8e313e9b-d597-405c-a7b7-e40de4713949'),(17806,17821,149296,1,8,'2021-04-06 03:40:01','2021-04-06 03:40:01','1d0f3000-6788-48eb-ba61-498cbfb609e1'),(17809,17824,149009,1,8,'2021-04-06 04:29:37','2021-04-06 04:29:37','59640f9d-0c45-4183-a60b-a602b13389e5'),(17812,17827,149245,1,8,'2021-04-06 04:40:02','2021-04-06 04:40:02','43ba3b9c-55bb-4528-b84b-592a9861241d'),(17814,17829,149324,1,8,'2021-04-06 07:05:23','2021-04-06 07:05:23','f67c8a37-8ee8-4f6a-bb52-49be31afed67'),(17816,17831,149342,1,8,'2021-04-07 00:57:15','2021-04-07 00:57:15','2ea24f14-95bf-4bae-9c11-34a5639d78fa'),(17818,17833,149358,1,8,'2021-04-07 01:18:03','2021-04-07 01:18:03','6edff935-dd8d-4c56-b57d-5aade8bb2bc8'),(17823,17838,149465,1,8,'2021-04-07 01:20:16','2021-04-07 01:20:16','9e712e48-cc3b-4307-b507-1f6b9be2127d'),(17824,17839,149501,1,8,'2021-04-07 01:20:19','2021-04-07 01:20:19','154a31b2-89ba-4f92-a60b-95e84a7cc9f4'),(17834,17849,149738,1,8,'2021-04-07 01:30:01','2021-04-07 01:30:01','2adaa2c7-34bc-4aa3-a221-fc8a169a5ec7'),(17835,17850,149771,1,8,'2021-04-07 01:30:04','2021-04-07 01:30:04','8cdfdd97-cec4-473b-b1ac-de398252313d'),(17896,17911,150033,1,8,'2021-04-07 02:11:52','2021-04-07 02:11:52','ad9a5221-2163-47b6-a2ee-38cdd133217e'),(17898,17913,150072,1,8,'2021-04-07 02:12:46','2021-04-07 02:12:46','a8ef9d25-9498-4b9d-ac46-53cbf56c2466'),(17900,17915,150111,1,8,'2021-04-07 02:14:21','2021-04-07 02:14:21','12c3e2b3-b8f7-47b6-9980-8d72c9035514'),(17902,17917,150166,1,8,'2021-04-08 03:51:37','2021-04-08 03:51:37','650dfd5e-3e92-49f1-8460-1119ad357cd2'),(17903,17918,150171,1,8,'2021-04-08 03:52:51','2021-04-08 03:52:51','20064907-e331-4bbd-9e18-1ec522e49057'),(17904,17919,150197,1,8,'2021-04-08 05:53:22','2021-04-08 05:53:22','c3264fd4-7146-4aee-afd2-f76c688ccd3f'),(17909,17924,150298,1,8,'2021-04-08 23:06:35','2021-04-08 23:06:35','cdb86686-3ce7-4e6e-a705-73f343682d06'),(17911,17926,150336,1,8,'2021-04-09 07:08:46','2021-04-09 07:08:46','044a6110-dd58-46af-a17f-3fedc2512622'),(17913,17928,150376,1,8,'2021-04-11 04:21:25','2021-04-11 04:21:25','6c234af5-5e1f-4a7b-8283-016b4253a26e'),(17918,17933,150459,1,8,'2021-04-12 00:41:32','2021-04-12 00:41:32','5ba70c84-7833-4690-9399-90d499512995'),(17919,17934,150471,1,8,'2021-04-12 00:41:34','2021-04-12 00:41:34','e94f8d1f-d6a6-4f61-a7a7-3dcbf42db1d3'),(17923,17938,150588,1,8,'2021-04-12 04:43:59','2021-04-12 04:43:59','5f00ba36-13fe-4553-9998-0eec8cfb523d'),(17924,17939,150627,1,8,'2021-04-12 04:44:02','2021-04-12 04:44:02','3424de7e-6e0d-486c-88b5-841ff8eca659'),(17931,17946,21685,1,8,'2021-04-12 05:36:07','2021-04-12 05:36:07','edf8ea8e-e9e2-4c4b-815b-b50720672760'),(17936,17951,150736,1,8,'2021-04-12 05:43:06','2021-04-12 05:43:06','2466057d-5f50-4ef6-a3e0-968d4cbddb9b'),(17937,17952,150755,1,8,'2021-04-12 05:43:09','2021-04-12 05:43:09','31b10b44-f9e8-41cb-b977-980c7339ec81'),(17942,17957,21862,1,8,'2021-04-12 05:48:38','2021-04-12 05:48:38','e29b216d-cd96-4edf-a7e8-3480b9dee605'),(17944,17959,150797,1,8,'2021-04-12 05:48:41','2021-04-12 05:48:41','975ccc04-a257-46cf-966f-e7e3357631ce'),(17945,17960,150804,1,8,'2021-04-12 05:48:48','2021-04-12 05:48:48','0d472393-6beb-4c70-8128-0e195af3aaa3'),(17955,17970,150834,1,8,'2021-04-12 05:53:45','2021-04-12 05:53:45','7746bd27-4277-4a72-919d-e808bcca4fcb'),(17956,17971,150839,1,8,'2021-04-12 05:53:47','2021-04-12 05:53:47','fa2c587f-b867-4cdc-b07a-ee5a1e703ee1'),(17963,17978,150862,1,8,'2021-04-12 05:56:52','2021-04-12 05:56:52','b86d5266-de1c-47f3-bebb-2406ee839563'),(17964,17979,150870,1,8,'2021-04-12 05:56:57','2021-04-12 05:56:57','06c22ee4-70fb-4a25-915b-5fb3f977be1f'),(17981,17996,151018,1,8,'2021-04-13 06:20:47','2021-04-13 06:20:47','4da2e7ce-a19e-4858-85b3-1ccb2f0567c3'),(17982,17997,151055,1,8,'2021-04-13 06:21:04','2021-04-13 06:21:04','2e3b7460-0674-41c3-8de3-ca286faae894'),(17986,18001,151140,1,8,'2021-04-14 01:48:01','2021-04-14 01:48:01','ebe936d3-b309-4125-a471-c95fd71eb6b1'),(17988,18003,151252,1,8,'2021-04-20 03:47:16','2021-04-20 03:47:16','3c27ebec-ed00-4704-884f-c704e195d299'),(17992,18007,151371,1,8,'2021-04-20 05:21:24','2021-04-20 05:21:24','de1f334d-a8e4-43d6-9506-ce1fc0db358b'),(17994,18009,151411,1,8,'2021-04-20 05:21:39','2021-04-20 05:21:39','9e4851cd-5195-40aa-9090-aa231389354c'),(17996,18011,151458,1,8,'2021-04-20 06:15:12','2021-04-20 06:15:12','9d6db93d-1469-48ac-a102-f461bb72c584'),(17998,18013,151495,1,8,'2021-04-22 00:36:48','2021-04-22 00:36:48','ae067e9e-d245-4883-8a98-d18874b04cd4'),(17999,18014,151511,1,8,'2021-04-22 00:41:56','2021-04-22 00:41:56','516b064e-1592-4192-ae76-b4a8414c69b9'),(18000,18015,151528,1,8,'2021-04-22 00:48:47','2021-04-22 00:48:47','2f4fa78e-0caf-4eb7-92e7-72bcf886667e'),(18008,18023,151660,1,8,'2021-04-22 05:25:02','2021-04-22 05:25:02','7ff0e9b6-880d-4018-b2b2-8a99c2b9824d'),(18012,18027,151819,1,8,'2021-04-22 05:34:59','2021-04-22 05:34:59','2276b7c9-d39b-481b-81f2-3c5ee4586355'),(18013,18028,151870,1,8,'2021-04-22 05:35:06','2021-04-22 05:35:06','eaaad479-8d5e-4fc0-a1ab-3935c9328ec2'),(18017,18032,151946,1,8,'2021-04-22 06:28:12','2021-04-22 06:28:12','2fbef3fd-4680-4bb9-ac28-6371f20e18d2'),(18018,18033,151956,1,8,'2021-04-22 06:29:25','2021-04-22 06:29:25','a2ba6e73-bc27-44ed-8978-5fc5cc02b4e7'),(18019,18034,151968,1,8,'2021-04-22 06:39:46','2021-04-22 06:39:46','949b91ce-1816-449d-be39-79dc99dfa26a'),(18021,18036,151982,1,8,'2021-04-22 23:40:08','2021-04-22 23:40:08','43d81ffa-a39c-44d4-8c54-b07b4633fea5'),(18022,18037,151992,1,8,'2021-04-22 23:49:07','2021-04-22 23:49:07','4d8545f6-0c48-4fda-8ca0-de865f6e3994'),(18026,18041,152056,1,8,'2021-04-23 06:12:45','2021-04-23 06:12:45','aa391a35-f244-4167-9c6f-48b65b8e3d71'),(18027,18042,152082,1,8,'2021-04-23 06:13:02','2021-04-23 06:13:02','1aeb7cb0-57cd-4192-a708-aa31ebcfeead'),(18054,18069,152264,1,8,'2021-04-23 06:29:23','2021-04-23 06:29:23','0080a1fd-4b83-4d9e-94cd-f4f3cfb0133b'),(18096,18111,152513,1,8,'2021-04-23 06:44:06','2021-04-23 06:44:06','9929acbe-e243-442d-8ad7-8621d776c54a'),(18097,18112,152557,1,8,'2021-04-23 06:44:14','2021-04-23 06:44:14','f681cdd4-6da5-49ff-9b99-b91baafaee61'),(18103,18118,152652,1,8,'2021-04-23 06:51:49','2021-04-23 06:51:49','38a7cc70-fab5-4518-a20a-f64f2dea33bd'),(18104,18119,152678,1,8,'2021-04-23 06:51:51','2021-04-23 06:51:51','ede8569f-0ea6-4f07-93a2-d8258ae2a73d'),(18105,18120,152706,1,8,'2021-04-23 22:47:57','2021-04-23 22:47:57','c1e0e081-f9f6-4459-95c5-884517c912d2'),(18107,18122,152783,1,8,'2021-04-27 03:55:07','2021-04-27 03:55:07','a794053b-8882-4bbe-b1e2-af9f2c70a9df'),(18111,18126,152846,1,8,'2021-04-27 04:02:52','2021-04-27 04:02:52','b20e7fa9-29d1-45cc-a59d-517cd5311be8'),(18113,18128,152865,1,8,'2021-04-27 04:04:43','2021-04-27 04:04:43','0819a68a-45b4-445e-8b14-9e6bf440dc4e'),(18124,18139,152945,1,8,'2021-04-27 04:50:33','2021-04-27 04:50:33','6ea5a36b-d015-4bbe-a0d0-9f53fb0d611c'),(18125,18140,152964,1,8,'2021-04-27 04:50:37','2021-04-27 04:50:37','f1fa8e32-3dce-4eb1-a11b-caa190e801b3'),(18128,18143,152983,1,8,'2021-04-27 04:56:33','2021-04-27 04:56:33','2708f418-fe69-42bc-ae22-607c889d8d58'),(18133,18148,153036,1,8,'2021-04-27 05:20:34','2021-04-27 05:20:34','cc105495-6abc-4801-9197-fc42e871c1f1'),(18138,18153,153145,1,8,'2021-04-27 05:56:07','2021-04-27 05:56:07','64295ba2-1524-473d-bca7-39185f6e5c8e'),(18139,18154,153186,1,8,'2021-04-27 05:56:11','2021-04-27 05:56:11','d29e5ba3-dfbb-45db-89d7-709879aab34e'),(18142,18157,153227,1,8,'2021-04-27 06:35:01','2021-04-27 06:35:01','72e55d1c-ea0f-4855-bb49-2b9d9913cf5e'),(18144,18159,153342,1,8,'2021-04-29 01:10:25','2021-04-29 01:10:25','a475c5f2-ac29-4459-9896-f32d09214ce9'),(18148,18163,153434,1,8,'2021-04-30 01:10:18','2021-04-30 01:10:18','d5590c70-8036-4799-b274-b9996bd1433b'),(18149,18164,153461,1,8,'2021-04-30 01:10:21','2021-04-30 01:10:21','6968f018-c785-4329-9c2f-1bc2f38d209f'),(18153,18168,153579,1,8,'2021-04-30 01:18:25','2021-04-30 01:18:25','0a5092c8-471f-4535-9683-1d6c2921bf06'),(18155,18170,153623,1,8,'2021-04-30 01:19:59','2021-04-30 01:19:59','579a3ffb-c0ea-4eb5-99b1-c36a3dda2d46'),(18157,18172,153667,1,8,'2021-04-30 01:20:39','2021-04-30 01:20:39','6675b232-a884-4c1d-b745-bc84482c213c'),(18162,18177,153834,1,8,'2021-04-30 02:02:41','2021-04-30 02:02:41','1d68ead7-ef2e-419d-8a54-5566a2f5ceed'),(18164,18179,153899,1,8,'2021-04-30 02:37:01','2021-04-30 02:37:01','27d6a66a-01fb-4635-96e8-ae0e9f792b7b'),(18166,18181,154003,1,8,'2021-05-04 03:00:33','2021-05-04 03:00:33','14cbab31-528c-4b71-838f-3f75495a3727'),(18177,18192,154024,1,8,'2021-05-04 05:32:37','2021-05-04 05:32:37','5573b3d9-4a4f-4f4b-b2bc-9ecaeeab0a0e'),(18180,18195,154046,1,8,'2021-05-04 06:17:55','2021-05-04 06:17:55','4f49e635-c07f-420d-9755-9689998341fc'),(18182,18197,154135,1,8,'2021-05-05 04:37:24','2021-05-05 04:37:24','523961c2-ebe2-4f68-9d75-a5f11964c201'),(18184,18199,154174,1,8,'2021-05-06 05:07:01','2021-05-06 05:07:01','1ec491ac-f5cc-486a-bafe-405742aa80b5'),(18189,18204,154352,1,8,'2021-05-07 00:42:05','2021-05-07 00:42:05','5df9c317-38bc-41ea-88c0-bd0f6393ce99'),(18194,18209,154398,1,8,'2021-05-07 01:05:31','2021-05-07 01:05:31','4eca385a-3320-4605-9e99-a28d9d3f6bf7'),(18196,18211,154414,1,8,'2021-05-07 01:05:39','2021-05-07 01:05:39','c2c75108-22d6-4324-a6cf-912552f3e83b'),(18304,18319,155333,1,8,'2021-05-07 05:30:16','2021-05-07 05:30:16','2672168b-6138-4b48-98cc-98821d27d9da'),(18326,18341,19204,1,8,'2021-05-07 05:36:40','2021-05-07 05:36:40','20507712-d4ef-41ae-b554-23d9ab17580c'),(18328,18343,156797,1,8,'2021-05-07 05:36:43','2021-05-07 05:36:43','3a603bf6-87f4-4238-990e-c04a897a8a00'),(18329,18344,156864,1,8,'2021-05-07 05:36:46','2021-05-07 05:36:46','30eea491-e303-4733-92ef-8d44714b51a4'),(18334,18349,156937,1,8,'2021-05-07 05:59:11','2021-05-07 05:59:11','3e204c74-cd4d-4b2a-8891-7f7010799b2f'),(18335,18350,156964,1,8,'2021-05-07 05:59:32','2021-05-07 05:59:32','53b9a956-c306-4a50-ad84-18b0f115c9b7'),(18336,18351,157009,1,8,'2021-05-10 00:44:07','2021-05-10 00:44:07','deba4c3f-5599-4243-9ba6-d96ed3c7e36f'),(18338,18353,157025,1,8,'2021-05-10 00:45:51','2021-05-10 00:45:51','2aadac5f-8c03-455e-9d4f-adf2cf09ee56'),(18342,18357,157128,1,8,'2021-05-10 23:12:04','2021-05-10 23:12:04','c60ee56a-b1c7-46d6-afde-c410d220274d'),(18344,18359,157169,1,8,'2021-05-10 23:12:11','2021-05-10 23:12:11','aa8dfdb9-0b06-4f4e-9ec6-8f1349dff0a5'),(18377,18392,158523,1,8,'2021-05-11 01:42:43','2021-05-11 01:42:43','dd4813df-0c71-4d50-bba9-ce18626e11d2'),(18378,18393,158569,1,8,'2021-05-11 01:42:47','2021-05-11 01:42:47','79a6a8ab-244f-43cc-aaf8-5a430d54c058'),(18405,18420,158744,1,8,'2021-05-11 01:50:59','2021-05-11 01:50:59','6fcca769-9e0b-4616-b882-3604250a8486'),(18407,18422,158790,1,8,'2021-05-11 01:51:34','2021-05-11 01:51:34','1da9f992-3b8c-450c-ae24-38e812f80de6'),(18411,18426,158876,1,8,'2021-05-11 01:51:49','2021-05-11 01:51:49','dd79bcde-5dc2-4daf-b5fe-7689a2f2b90a'),(18413,18428,158917,1,8,'2021-05-11 01:51:53','2021-05-11 01:51:53','405a870c-7931-4e12-bc58-e81d001329e9'),(18418,18433,159051,1,8,'2021-05-11 01:53:07','2021-05-11 01:53:07','b6c6779f-65dc-44d4-8f5e-9ece376e5f54'),(18421,18436,159097,1,8,'2021-05-11 01:55:31','2021-05-11 01:55:31','64c9dc5f-045f-4291-adef-313f0d713fd3'),(18428,18443,159340,1,8,'2021-05-11 02:22:44','2021-05-11 02:22:44','10ca0bac-22b5-4cb9-af69-fc580d5d1611'),(18430,18445,159386,1,8,'2021-05-11 02:23:37','2021-05-11 02:23:37','37bcf80f-103e-49ee-88be-a247b3c2d3ff'),(18452,18467,160049,1,8,'2021-05-11 02:38:10','2021-05-11 02:38:10','ff70e0b8-b0ab-4c7a-9906-6e8a32bf1973'),(18453,18468,160082,1,8,'2021-05-11 02:38:14','2021-05-11 02:38:14','19c10f50-af15-4444-9bf9-f8a6791b9bec'),(18460,18475,160204,1,8,'2021-05-11 04:33:18','2021-05-11 04:33:18','fec1d88a-dcd0-49ce-b852-2d43cccc54cc'),(18461,18476,160245,1,8,'2021-05-11 04:33:20','2021-05-11 04:33:20','5ee18368-a669-4cd4-815d-c7f4e0483634'),(18462,18477,160286,1,8,'2021-05-11 04:33:22','2021-05-11 04:33:22','ea5d333f-d60b-464a-985a-f52d9279f4d5'),(18465,18480,160327,1,8,'2021-05-11 04:38:44','2021-05-11 04:38:44','89182136-202b-4de5-8466-f565e6afe812'),(18470,18485,160398,1,8,'2021-05-11 04:44:58','2021-05-11 04:44:58','0148bcde-8136-4a27-9985-60bf6593e1cd'),(18471,18486,160412,1,8,'2021-05-11 04:45:00','2021-05-11 04:45:00','d3b9e629-dba5-427c-93c0-682e15ddf76b'),(18477,18492,160445,1,8,'2021-05-11 04:48:20','2021-05-11 04:48:20','819bfd3a-d76e-4f2a-bfcc-a6c489614c40'),(18478,18493,160452,1,8,'2021-05-11 04:48:24','2021-05-11 04:48:24','0935fc9b-b00d-4465-8cd6-8d064e41444b'),(18492,18507,161012,1,8,'2021-05-11 04:58:24','2021-05-11 04:58:24','84e1f8ad-3e45-4c7c-83ca-89be84285824'),(18494,18509,161057,1,8,'2021-05-11 04:58:29','2021-05-11 04:58:29','aefeffff-9959-49b6-bd6a-21e3a9ecb5db'),(18500,18515,161114,1,8,'2021-05-11 05:22:19','2021-05-11 05:22:19','fe303947-4820-4829-817a-c770cc3bf2ac'),(18502,18517,146248,1,8,'2021-05-11 05:22:23','2021-05-11 05:22:23','66b9c1a3-1962-4e00-9f83-cf560200f22c'),(18504,18519,161128,1,8,'2021-05-11 05:22:25','2021-05-11 05:22:25','8d455e3f-c144-4a0a-8748-1b523456d7f2'),(18505,18520,161133,1,8,'2021-05-11 05:22:29','2021-05-11 05:22:29','4d1bf883-0f63-4cfb-ad87-ae6e630e1b35'),(18506,18521,161138,1,8,'2021-05-11 05:37:59','2021-05-11 05:37:59','e1fbfc75-30a9-41c6-bec1-45f1f490fbd9'),(18509,18524,21115,1,8,'2021-05-11 05:43:05','2021-05-11 05:43:05','3f9cc16e-838b-4b83-bd5d-ffae9994b99c'),(18511,18526,161272,1,8,'2021-05-11 05:43:10','2021-05-11 05:43:10','8ce23690-77d0-4ef1-9f8d-26f4c3af01b6'),(18513,18528,161317,1,8,'2021-05-11 05:47:46','2021-05-11 05:47:46','d3234cce-ecb0-46cb-b1e8-aa536830f011'),(18515,18530,161440,1,8,'2021-05-13 00:49:49','2021-05-13 00:49:49','5825941a-a93f-443e-87b5-511166eb9cbb'),(18516,18531,161472,1,8,'2021-05-13 04:11:40','2021-05-13 04:11:40','7dea294c-d8cc-4dc1-8f6b-aa72aae3b808'),(18568,18583,161983,1,8,'2021-05-13 04:27:04','2021-05-13 04:27:04','871547c1-96b1-4b63-88b8-139098113ebb'),(18569,18584,161994,1,8,'2021-05-13 04:27:05','2021-05-13 04:27:05','1fc90ab3-fee3-4fa6-962b-12ab28ab4aa0'),(18572,18587,162005,1,8,'2021-05-13 04:28:40','2021-05-13 04:28:40','e5e8c805-3af7-46c0-b1b8-bae17f197f0e'),(18575,18590,162018,1,8,'2021-05-13 04:29:57','2021-05-13 04:29:57','26e48ed3-07e0-4ce5-acdd-b12f331d2c09'),(18577,18592,162117,1,8,'2021-05-18 00:53:19','2021-05-18 00:53:19','3972dcef-9a0d-45ae-ac82-8f185f9218c8'),(18578,18593,162133,1,8,'2021-05-18 00:54:19','2021-05-18 00:54:19','f7f8904d-e9f5-4f26-bc49-10b98010a589'),(18583,18598,162206,1,8,'2021-05-18 01:14:15','2021-05-18 01:14:15','6dd17ce9-b59f-4db7-ba47-46a0ef0984e9'),(18584,18599,162214,1,8,'2021-05-18 03:08:31','2021-05-18 03:08:31','dfd3983f-ea08-472f-9748-2155b812a3d9'),(18586,18601,162187,1,8,'2021-05-18 03:11:08','2021-05-18 03:11:08','f9f5764b-b106-4c2c-adfe-ef317e84e744'),(18589,18604,162155,1,8,'2021-05-18 03:18:17','2021-05-18 03:18:17','7933126a-9ca8-41f2-ad43-9de6f6984882'),(18596,18611,162259,1,8,'2021-05-18 04:24:40','2021-05-18 04:24:40','19bf6642-2489-4277-a14d-a6833815e56f'),(18597,18612,162267,1,8,'2021-05-18 04:24:43','2021-05-18 04:24:43','ab959fb8-39e4-443c-9b06-6e1f3af92870'),(18605,18620,162307,1,8,'2021-05-18 04:30:08','2021-05-18 04:30:08','3fff0272-46c6-40f2-8106-90099eee47db'),(18606,18621,162316,1,8,'2021-05-18 04:30:11','2021-05-18 04:30:11','20161570-dcf3-461a-aaaf-cb921af7197b'),(18613,18628,162339,1,8,'2021-05-18 05:13:19','2021-05-18 05:13:19','06021ba2-935c-423e-9940-9f8da3997b9a'),(18614,18629,162352,1,8,'2021-05-18 06:15:58','2021-05-18 06:15:58','f86cb40f-35a1-4f04-9736-05adf463b788'),(18618,18633,162421,1,8,'2021-05-18 23:31:01','2021-05-18 23:31:01','87a6c23a-02d2-4966-a53b-d4362495310f'),(18620,18635,162432,1,8,'2021-05-18 23:41:19','2021-05-18 23:41:19','d8fc8eb5-ee01-4a04-9161-2b9829eb9e90'),(18621,18636,162468,1,8,'2021-05-19 00:50:48','2021-05-19 00:50:48','12f74e01-fc47-4e71-8120-6e463f6276ed'),(18624,18639,162177,1,8,'2021-05-19 00:58:36','2021-05-19 00:58:36','eec47a33-f455-4e87-ab73-c06b3d8fd076'),(18627,18642,162202,1,8,'2021-05-19 01:06:48','2021-05-19 01:06:48','6c720c91-3bbe-4bf6-9318-0264834aa798'),(18632,18647,162556,1,8,'2021-05-19 01:15:56','2021-05-19 01:15:56','cf09a340-f3d9-4cdb-9946-17bd84acf93d'),(18636,18651,162615,1,8,'2021-05-19 01:17:19','2021-05-19 01:17:19','67c218a1-ad5b-431e-a7e6-750edda6f626'),(18640,18655,162674,1,8,'2021-05-19 01:18:15','2021-05-19 01:18:15','e5c91995-5914-46aa-84ab-8e5f99baa67a'),(18641,18656,162694,1,8,'2021-05-19 01:18:48','2021-05-19 01:18:48','9f2b5830-a990-4530-a448-4ebcfe65d9ce'),(18642,18657,162714,1,8,'2021-05-19 01:19:14','2021-05-19 01:19:14','4e5f713f-1ac0-4ffc-9c36-17440db41596'),(18646,18661,162773,1,8,'2021-05-19 01:20:08','2021-05-19 01:20:08','5a59e150-d820-4e49-9bc3-72d007dd9db4'),(18647,18662,162793,1,8,'2021-05-19 01:20:11','2021-05-19 01:20:11','82385c37-b2ba-479f-9752-eff518d1310d'),(18652,18667,162851,1,8,'2021-05-19 01:25:17','2021-05-19 01:25:17','2e026600-fa30-422e-a371-2da1826f9c33'),(18653,18668,162870,1,8,'2021-05-19 01:25:20','2021-05-19 01:25:20','521cc5e3-3719-4765-a9ba-c57b6e48c615'),(18657,18672,162932,1,8,'2021-05-19 01:30:34','2021-05-19 01:30:34','f3bc78b3-5b86-4f9f-ae3f-77b3ee693820'),(18658,18673,162952,1,8,'2021-05-19 01:31:36','2021-05-19 01:31:36','0e76a5e1-4bbe-4c51-b907-2b8f246a578d'),(18663,18678,163009,1,8,'2021-05-19 01:36:53','2021-05-19 01:36:53','73f4f57e-1128-4830-b503-8ed869ebee89'),(18664,18679,163027,1,8,'2021-05-19 01:36:59','2021-05-19 01:36:59','984eab59-4328-4406-8c19-2d72633315ec'),(18666,18681,163048,1,8,'2021-05-19 01:39:37','2021-05-19 01:39:37','c7b618a2-fef6-49d3-be7a-657f7b6a4dd0'),(18668,18683,155313,1,8,'2021-05-19 01:40:44','2021-05-19 01:40:44','27980c6c-7568-4e7f-8048-8ec3980ca3e8'),(18670,18685,163101,1,8,'2021-05-19 01:40:47','2021-05-19 01:40:47','c4b78136-8ff2-44b3-8f6e-f02f23d40396'),(18671,18686,163119,1,8,'2021-05-19 01:40:53','2021-05-19 01:40:53','cc8cf54c-bb75-49ae-93aa-ca52d7fdc670');
/*!40000 ALTER TABLE `neoblockstructures` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `neoblocktypegroups`
--

LOCK TABLES `neoblocktypegroups` WRITE;
/*!40000 ALTER TABLE `neoblocktypegroups` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `neoblocktypegroups` VALUES (120,8,'Regular',2,'2020-05-25 02:07:49','2020-05-25 02:07:49','fe99c039-b89e-43f8-8df6-6f88430da734'),(121,8,'Related',11,'2020-05-25 02:07:49','2020-05-25 02:07:49','b3cf2269-d335-446e-9648-eed36054486f');
/*!40000 ALTER TABLE `neoblocktypegroups` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `neoblocktypes`
--

LOCK TABLES `neoblocktypes` WRITE;
/*!40000 ALTER TABLE `neoblocktypes` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `neoblocktypes` VALUES (2,8,10,'Section','pageSection',0,0,0,'[\"richText\",\"lineBreak\",\"image\",\"video\",\"regularCards\",\"textMedia\",\"splitScreen\",\"eventSearch\",\"cards\",\"tiles\",\"columns\",\"download\",\"linkList\",\"events\",\"news\",\"programs\",\"team\",\"form\"]',1,1,'2019-08-22 05:05:49','2020-05-25 01:57:27','8a2594e5-ca5f-4cd2-8150-21a1183728e6'),(3,8,9,'Rich Text','richText',0,0,0,'',0,3,'2019-08-22 05:06:57','2020-01-07 00:08:41','f3913e70-36ab-4437-9e17-64185cff1327'),(4,8,NULL,'Line break','lineBreak',0,0,0,'',0,4,'2019-08-23 04:31:47','2020-01-07 00:08:41','6e694453-a68b-4cbc-897e-956b4e2b3980'),(5,8,NULL,'Cards','cards',0,0,0,'',0,12,'2019-08-23 05:30:16','2020-05-25 01:57:27','301d1c9f-8f37-4bc0-a38a-59dd86329457'),(6,8,12,'Image','image',0,0,0,'',0,5,'2019-08-23 06:52:23','2020-01-07 00:08:41','13c357c2-5275-46c6-99b3-4a0cb432aac9'),(7,8,13,'Tiles','tiles',0,0,0,'',0,13,'2019-08-27 06:03:41','2020-05-25 01:57:27','a070e0b2-9d38-46b2-aaa6-f56d820cb15c'),(8,8,14,'Columns','columns',0,0,0,'',0,14,'2019-08-27 07:29:39','2020-05-25 01:57:27','134000bd-62f0-4941-ad9e-785e92b21267'),(9,8,20,'Text & media','textMedia',0,0,0,'',0,8,'2019-09-12 00:03:57','2020-01-07 00:08:41','cbbc8a2e-39b4-4c4b-99bd-989209ba896d'),(10,30,NULL,'Footer column','footerColumn',0,0,0,'[\"footerMenu\"]',1,1,'2019-10-04 00:38:06','2019-10-04 04:52:54','6e815083-5765-43e7-8645-cb79b7733195'),(11,30,24,'Footer menu','footerMenu',0,0,0,'',0,2,'2019-10-04 00:38:06','2019-10-04 04:52:54','78e574e7-9007-4971-b17a-769473141f93'),(12,8,32,'Download','download',0,0,0,'',0,15,'2019-10-08 02:48:45','2020-05-25 01:57:27','69907a70-187c-4a7a-a6ce-23b5216bdb70'),(14,8,37,'Video','video',0,0,0,'',0,6,'2019-10-09 00:49:14','2020-01-07 00:08:41','9708783a-739d-4cfb-bd36-0a719550f68e'),(15,8,38,'Split screen','splitScreen',0,0,0,'',0,9,'2019-10-09 05:33:36','2020-01-07 00:08:41','9eac44ab-1fa5-4fc3-9d22-d2ec8b8b8f3b'),(16,8,39,'Link list','linkList',0,0,0,'',0,16,'2019-10-09 06:54:44','2020-05-25 01:57:27','d5bde427-c97e-4042-81b0-668c719a25bc'),(17,8,45,'Events','events',0,0,0,'',0,17,'2019-10-16 05:26:09','2020-05-25 01:57:27','98655b20-b12d-496d-a87d-b6b3e2e73b8a'),(18,8,46,'Programs carousel','programs',0,0,0,'',0,19,'2019-10-16 05:50:57','2020-05-25 01:57:27','e1e05e5b-15f6-43cf-bb76-bc09ac4128f7'),(19,8,49,'News','news',0,0,0,'',0,18,'2019-12-18 06:16:00','2020-05-25 01:57:27','3696009b-505b-4c24-8229-ed001808354f'),(20,8,50,'Team','team',0,0,0,'',0,20,'2020-01-06 23:08:54','2020-05-25 01:57:27','c7952742-9adf-4d85-b48f-31cdfbd34379'),(21,8,51,'Cards','regularCards',0,0,0,'',0,7,'2020-01-06 23:56:49','2020-01-07 00:08:41','6d21d43a-c587-465b-9dbe-ed34287147e9'),(22,84,52,'Column','column',0,0,0,'',1,1,'2020-01-07 00:00:00','2020-01-07 00:00:00','fd720eab-eff6-486d-8538-8d0aab83fe85'),(23,8,60,'Form','form',0,0,0,'',0,21,'2020-05-11 04:16:48','2020-05-25 01:57:27','75dcbff2-4d43-4db2-b17f-392423ed0635'),(24,8,61,'Event search','eventSearch',0,0,0,'',0,10,'2020-05-25 01:57:13','2020-05-25 01:57:27','0a6aa693-af4d-4dcb-9d1c-c4532a1f8e9a');
/*!40000 ALTER TABLE `neoblocktypes` 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 (1,'feed-me','5.0.5','4.4.0','2021-04-05 23:40:11','2021-04-05 23:40:11','2023-04-11 01:53:36','e096002b-8661-40a4-83ef-44a57561e675'),(3,'image-optimize','dev-develop-v4','1.0.0','2021-04-08 03:10:37','2021-04-08 03:10:37','2023-04-11 01:53:36','c2e5063a-2eb7-407b-a847-b5c4ac1ab8f2'),(4,'sprig','2.5.1','1.0.1','2021-04-08 03:11:18','2021-04-08 03:11:18','2023-04-11 01:53:36','b7f0b709-425a-4164-b6ec-a3c74bda9ec4'),(5,'freeform','4.0.7','4.2.2','2021-04-20 06:16:23','2021-04-20 06:16:23','2023-04-11 01:53:36','8e4e1f7b-06c2-4c84-ae51-8e7ecb21d3a9'),(6,'redactor','3.0.3','2.3.0','2021-05-14 06:15:39','2021-05-14 06:15:39','2023-04-11 01:53:36','02117e1b-a63b-46b1-ae69-afaa1d6a7198'),(7,'super-table','3.0.7','3.0.0','2021-05-14 06:17:26','2021-05-14 06:17:26','2023-04-11 01:53:36','0650fa01-d99f-43d4-bff9-70e4c4ba8098'),(8,'dospaces','2.0.0','2.0.0','2021-06-03 04:05:58','2021-06-03 04:05:58','2023-04-11 01:53:36','6b805d7f-9776-4b69-ad61-4b8a9d8bbd46'),(9,'api2pdf','0.5.0','0.1.0','2021-06-13 23:30:17','2021-06-13 23:30:17','2022-05-17 23:14:09','e01324c1-5f5a-476c-a6b3-a58a31fb0a3b'),(10,'vizy','2.0.12','0.9.0','2021-07-12 06:48:35','2021-07-12 06:48:35','2023-04-11 01:53:36','2e4fe287-81b0-464b-bea2-dd5b36149459'),(11,'blitz','4.4.0','4.4.0','2021-10-18 07:19:13','2021-10-18 07:19:13','2023-04-11 01:53:36','27da0200-91bb-4d88-b4b7-a9767b5cb83e'),(13,'seomatic','4.0.20','3.0.11','2021-11-09 01:12:26','2021-11-09 01:12:26','2023-04-11 01:53:36','69fe17b2-069b-42ba-af31-4ec37caa356a'),(14,'manytomany','1.0.2.2','1.0.2','2022-05-09 03:30:34','2022-05-09 03:30:34','2022-05-17 23:14:09','577652b2-1e6e-4e15-bc4e-6d4da4bf593f');
/*!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 ('categoryGroups.069a7d0a-be68-4833-9385-e2804d215d07.defaultPlacement','\"end\"'),('categoryGroups.069a7d0a-be68-4833-9385-e2804d215d07.fieldLayouts.4831aee9-ccbb-4e5f-bc26-5bcd5b950f16.tabs.0.elements.0.autocapitalize','true'),('categoryGroups.069a7d0a-be68-4833-9385-e2804d215d07.fieldLayouts.4831aee9-ccbb-4e5f-bc26-5bcd5b950f16.tabs.0.elements.0.autocomplete','false'),('categoryGroups.069a7d0a-be68-4833-9385-e2804d215d07.fieldLayouts.4831aee9-ccbb-4e5f-bc26-5bcd5b950f16.tabs.0.elements.0.autocorrect','true'),('categoryGroups.069a7d0a-be68-4833-9385-e2804d215d07.fieldLayouts.4831aee9-ccbb-4e5f-bc26-5bcd5b950f16.tabs.0.elements.0.class','null'),('categoryGroups.069a7d0a-be68-4833-9385-e2804d215d07.fieldLayouts.4831aee9-ccbb-4e5f-bc26-5bcd5b950f16.tabs.0.elements.0.disabled','false'),('categoryGroups.069a7d0a-be68-4833-9385-e2804d215d07.fieldLayouts.4831aee9-ccbb-4e5f-bc26-5bcd5b950f16.tabs.0.elements.0.id','null'),('categoryGroups.069a7d0a-be68-4833-9385-e2804d215d07.fieldLayouts.4831aee9-ccbb-4e5f-bc26-5bcd5b950f16.tabs.0.elements.0.instructions','null'),('categoryGroups.069a7d0a-be68-4833-9385-e2804d215d07.fieldLayouts.4831aee9-ccbb-4e5f-bc26-5bcd5b950f16.tabs.0.elements.0.label','null'),('categoryGroups.069a7d0a-be68-4833-9385-e2804d215d07.fieldLayouts.4831aee9-ccbb-4e5f-bc26-5bcd5b950f16.tabs.0.elements.0.max','null'),('categoryGroups.069a7d0a-be68-4833-9385-e2804d215d07.fieldLayouts.4831aee9-ccbb-4e5f-bc26-5bcd5b950f16.tabs.0.elements.0.min','null'),('categoryGroups.069a7d0a-be68-4833-9385-e2804d215d07.fieldLayouts.4831aee9-ccbb-4e5f-bc26-5bcd5b950f16.tabs.0.elements.0.name','null'),('categoryGroups.069a7d0a-be68-4833-9385-e2804d215d07.fieldLayouts.4831aee9-ccbb-4e5f-bc26-5bcd5b950f16.tabs.0.elements.0.orientation','null'),('categoryGroups.069a7d0a-be68-4833-9385-e2804d215d07.fieldLayouts.4831aee9-ccbb-4e5f-bc26-5bcd5b950f16.tabs.0.elements.0.placeholder','null'),('categoryGroups.069a7d0a-be68-4833-9385-e2804d215d07.fieldLayouts.4831aee9-ccbb-4e5f-bc26-5bcd5b950f16.tabs.0.elements.0.readonly','false'),('categoryGroups.069a7d0a-be68-4833-9385-e2804d215d07.fieldLayouts.4831aee9-ccbb-4e5f-bc26-5bcd5b950f16.tabs.0.elements.0.requirable','false'),('categoryGroups.069a7d0a-be68-4833-9385-e2804d215d07.fieldLayouts.4831aee9-ccbb-4e5f-bc26-5bcd5b950f16.tabs.0.elements.0.size','null'),('categoryGroups.069a7d0a-be68-4833-9385-e2804d215d07.fieldLayouts.4831aee9-ccbb-4e5f-bc26-5bcd5b950f16.tabs.0.elements.0.step','null'),('categoryGroups.069a7d0a-be68-4833-9385-e2804d215d07.fieldLayouts.4831aee9-ccbb-4e5f-bc26-5bcd5b950f16.tabs.0.elements.0.tip','null'),('categoryGroups.069a7d0a-be68-4833-9385-e2804d215d07.fieldLayouts.4831aee9-ccbb-4e5f-bc26-5bcd5b950f16.tabs.0.elements.0.title','null'),('categoryGroups.069a7d0a-be68-4833-9385-e2804d215d07.fieldLayouts.4831aee9-ccbb-4e5f-bc26-5bcd5b950f16.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\TitleField\"'),('categoryGroups.069a7d0a-be68-4833-9385-e2804d215d07.fieldLayouts.4831aee9-ccbb-4e5f-bc26-5bcd5b950f16.tabs.0.elements.0.warning','null'),('categoryGroups.069a7d0a-be68-4833-9385-e2804d215d07.fieldLayouts.4831aee9-ccbb-4e5f-bc26-5bcd5b950f16.tabs.0.elements.0.width','100'),('categoryGroups.069a7d0a-be68-4833-9385-e2804d215d07.fieldLayouts.4831aee9-ccbb-4e5f-bc26-5bcd5b950f16.tabs.0.name','\"Content\"'),('categoryGroups.069a7d0a-be68-4833-9385-e2804d215d07.fieldLayouts.4831aee9-ccbb-4e5f-bc26-5bcd5b950f16.tabs.0.sortOrder','1'),('categoryGroups.069a7d0a-be68-4833-9385-e2804d215d07.handle','\"company\"'),('categoryGroups.069a7d0a-be68-4833-9385-e2804d215d07.name','\"Company\"'),('categoryGroups.069a7d0a-be68-4833-9385-e2804d215d07.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.hasUrls','true'),('categoryGroups.069a7d0a-be68-4833-9385-e2804d215d07.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.template','\"brandaudit/search\"'),('categoryGroups.069a7d0a-be68-4833-9385-e2804d215d07.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.uriFormat','\"brandaudit/company/{slug}\"'),('categoryGroups.069a7d0a-be68-4833-9385-e2804d215d07.structure.maxLevels','null'),('categoryGroups.069a7d0a-be68-4833-9385-e2804d215d07.structure.uid','\"898e584e-54ec-4064-b4dc-711fd19ef1c9\"'),('categoryGroups.1bc6714f-5786-433d-b7dd-879fbc8767b7.defaultPlacement','\"end\"'),('categoryGroups.1bc6714f-5786-433d-b7dd-879fbc8767b7.fieldLayouts.5f49eefa-5e21-4a15-87ab-f8889789afc9.tabs.0.elements.0.autocapitalize','true'),('categoryGroups.1bc6714f-5786-433d-b7dd-879fbc8767b7.fieldLayouts.5f49eefa-5e21-4a15-87ab-f8889789afc9.tabs.0.elements.0.autocomplete','false'),('categoryGroups.1bc6714f-5786-433d-b7dd-879fbc8767b7.fieldLayouts.5f49eefa-5e21-4a15-87ab-f8889789afc9.tabs.0.elements.0.autocorrect','true'),('categoryGroups.1bc6714f-5786-433d-b7dd-879fbc8767b7.fieldLayouts.5f49eefa-5e21-4a15-87ab-f8889789afc9.tabs.0.elements.0.class','null'),('categoryGroups.1bc6714f-5786-433d-b7dd-879fbc8767b7.fieldLayouts.5f49eefa-5e21-4a15-87ab-f8889789afc9.tabs.0.elements.0.disabled','false'),('categoryGroups.1bc6714f-5786-433d-b7dd-879fbc8767b7.fieldLayouts.5f49eefa-5e21-4a15-87ab-f8889789afc9.tabs.0.elements.0.id','null'),('categoryGroups.1bc6714f-5786-433d-b7dd-879fbc8767b7.fieldLayouts.5f49eefa-5e21-4a15-87ab-f8889789afc9.tabs.0.elements.0.instructions','null'),('categoryGroups.1bc6714f-5786-433d-b7dd-879fbc8767b7.fieldLayouts.5f49eefa-5e21-4a15-87ab-f8889789afc9.tabs.0.elements.0.label','null'),('categoryGroups.1bc6714f-5786-433d-b7dd-879fbc8767b7.fieldLayouts.5f49eefa-5e21-4a15-87ab-f8889789afc9.tabs.0.elements.0.max','null'),('categoryGroups.1bc6714f-5786-433d-b7dd-879fbc8767b7.fieldLayouts.5f49eefa-5e21-4a15-87ab-f8889789afc9.tabs.0.elements.0.min','null'),('categoryGroups.1bc6714f-5786-433d-b7dd-879fbc8767b7.fieldLayouts.5f49eefa-5e21-4a15-87ab-f8889789afc9.tabs.0.elements.0.name','null'),('categoryGroups.1bc6714f-5786-433d-b7dd-879fbc8767b7.fieldLayouts.5f49eefa-5e21-4a15-87ab-f8889789afc9.tabs.0.elements.0.orientation','null'),('categoryGroups.1bc6714f-5786-433d-b7dd-879fbc8767b7.fieldLayouts.5f49eefa-5e21-4a15-87ab-f8889789afc9.tabs.0.elements.0.placeholder','null'),('categoryGroups.1bc6714f-5786-433d-b7dd-879fbc8767b7.fieldLayouts.5f49eefa-5e21-4a15-87ab-f8889789afc9.tabs.0.elements.0.readonly','false'),('categoryGroups.1bc6714f-5786-433d-b7dd-879fbc8767b7.fieldLayouts.5f49eefa-5e21-4a15-87ab-f8889789afc9.tabs.0.elements.0.requirable','false'),('categoryGroups.1bc6714f-5786-433d-b7dd-879fbc8767b7.fieldLayouts.5f49eefa-5e21-4a15-87ab-f8889789afc9.tabs.0.elements.0.size','null'),('categoryGroups.1bc6714f-5786-433d-b7dd-879fbc8767b7.fieldLayouts.5f49eefa-5e21-4a15-87ab-f8889789afc9.tabs.0.elements.0.step','null'),('categoryGroups.1bc6714f-5786-433d-b7dd-879fbc8767b7.fieldLayouts.5f49eefa-5e21-4a15-87ab-f8889789afc9.tabs.0.elements.0.tip','null'),('categoryGroups.1bc6714f-5786-433d-b7dd-879fbc8767b7.fieldLayouts.5f49eefa-5e21-4a15-87ab-f8889789afc9.tabs.0.elements.0.title','null'),('categoryGroups.1bc6714f-5786-433d-b7dd-879fbc8767b7.fieldLayouts.5f49eefa-5e21-4a15-87ab-f8889789afc9.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\TitleField\"'),('categoryGroups.1bc6714f-5786-433d-b7dd-879fbc8767b7.fieldLayouts.5f49eefa-5e21-4a15-87ab-f8889789afc9.tabs.0.elements.0.warning','null'),('categoryGroups.1bc6714f-5786-433d-b7dd-879fbc8767b7.fieldLayouts.5f49eefa-5e21-4a15-87ab-f8889789afc9.tabs.0.elements.0.width','100'),('categoryGroups.1bc6714f-5786-433d-b7dd-879fbc8767b7.fieldLayouts.5f49eefa-5e21-4a15-87ab-f8889789afc9.tabs.0.name','\"Content\"'),('categoryGroups.1bc6714f-5786-433d-b7dd-879fbc8767b7.fieldLayouts.5f49eefa-5e21-4a15-87ab-f8889789afc9.tabs.0.sortOrder','1'),('categoryGroups.1bc6714f-5786-433d-b7dd-879fbc8767b7.handle','\"resourceCategories\"'),('categoryGroups.1bc6714f-5786-433d-b7dd-879fbc8767b7.name','\"Resource categories\"'),('categoryGroups.1bc6714f-5786-433d-b7dd-879fbc8767b7.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.hasUrls','true'),('categoryGroups.1bc6714f-5786-433d-b7dd-879fbc8767b7.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.template','null'),('categoryGroups.1bc6714f-5786-433d-b7dd-879fbc8767b7.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.uriFormat','\"resource-categories/{slug}\"'),('categoryGroups.1bc6714f-5786-433d-b7dd-879fbc8767b7.structure.maxLevels','null'),('categoryGroups.1bc6714f-5786-433d-b7dd-879fbc8767b7.structure.uid','\"efaa06f9-b815-41c3-8a55-40909f7a040a\"'),('categoryGroups.73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba.defaultPlacement','\"end\"'),('categoryGroups.73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba.fieldLayouts.4573ae3b-6537-4229-8e3b-f45437c0b61b.tabs.0.elements.0.autocapitalize','true'),('categoryGroups.73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba.fieldLayouts.4573ae3b-6537-4229-8e3b-f45437c0b61b.tabs.0.elements.0.autocomplete','false'),('categoryGroups.73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba.fieldLayouts.4573ae3b-6537-4229-8e3b-f45437c0b61b.tabs.0.elements.0.autocorrect','true'),('categoryGroups.73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba.fieldLayouts.4573ae3b-6537-4229-8e3b-f45437c0b61b.tabs.0.elements.0.class','null'),('categoryGroups.73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba.fieldLayouts.4573ae3b-6537-4229-8e3b-f45437c0b61b.tabs.0.elements.0.disabled','false'),('categoryGroups.73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba.fieldLayouts.4573ae3b-6537-4229-8e3b-f45437c0b61b.tabs.0.elements.0.id','null'),('categoryGroups.73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba.fieldLayouts.4573ae3b-6537-4229-8e3b-f45437c0b61b.tabs.0.elements.0.instructions','null'),('categoryGroups.73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba.fieldLayouts.4573ae3b-6537-4229-8e3b-f45437c0b61b.tabs.0.elements.0.label','null'),('categoryGroups.73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba.fieldLayouts.4573ae3b-6537-4229-8e3b-f45437c0b61b.tabs.0.elements.0.max','null'),('categoryGroups.73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba.fieldLayouts.4573ae3b-6537-4229-8e3b-f45437c0b61b.tabs.0.elements.0.min','null'),('categoryGroups.73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba.fieldLayouts.4573ae3b-6537-4229-8e3b-f45437c0b61b.tabs.0.elements.0.name','null'),('categoryGroups.73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba.fieldLayouts.4573ae3b-6537-4229-8e3b-f45437c0b61b.tabs.0.elements.0.orientation','null'),('categoryGroups.73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba.fieldLayouts.4573ae3b-6537-4229-8e3b-f45437c0b61b.tabs.0.elements.0.placeholder','null'),('categoryGroups.73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba.fieldLayouts.4573ae3b-6537-4229-8e3b-f45437c0b61b.tabs.0.elements.0.readonly','false'),('categoryGroups.73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba.fieldLayouts.4573ae3b-6537-4229-8e3b-f45437c0b61b.tabs.0.elements.0.requirable','false'),('categoryGroups.73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba.fieldLayouts.4573ae3b-6537-4229-8e3b-f45437c0b61b.tabs.0.elements.0.size','null'),('categoryGroups.73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba.fieldLayouts.4573ae3b-6537-4229-8e3b-f45437c0b61b.tabs.0.elements.0.step','null'),('categoryGroups.73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba.fieldLayouts.4573ae3b-6537-4229-8e3b-f45437c0b61b.tabs.0.elements.0.tip','null'),('categoryGroups.73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba.fieldLayouts.4573ae3b-6537-4229-8e3b-f45437c0b61b.tabs.0.elements.0.title','null'),('categoryGroups.73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba.fieldLayouts.4573ae3b-6537-4229-8e3b-f45437c0b61b.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\TitleField\"'),('categoryGroups.73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba.fieldLayouts.4573ae3b-6537-4229-8e3b-f45437c0b61b.tabs.0.elements.0.warning','null'),('categoryGroups.73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba.fieldLayouts.4573ae3b-6537-4229-8e3b-f45437c0b61b.tabs.0.elements.0.width','100'),('categoryGroups.73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba.fieldLayouts.4573ae3b-6537-4229-8e3b-f45437c0b61b.tabs.0.name','\"Content\"'),('categoryGroups.73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba.fieldLayouts.4573ae3b-6537-4229-8e3b-f45437c0b61b.tabs.0.sortOrder','1'),('categoryGroups.73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba.handle','\"sectorCategories\"'),('categoryGroups.73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba.name','\"Sector categories\"'),('categoryGroups.73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.hasUrls','true'),('categoryGroups.73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.template','\"category/index\"'),('categoryGroups.73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.uriFormat','\"sector-categories/{slug}\"'),('categoryGroups.73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba.structure.maxLevels','null'),('categoryGroups.73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba.structure.uid','\"b9614edc-04a9-49be-8778-80c2cb32006d\"'),('categoryGroups.cfd21061-ac1a-4fa4-adba-02a314e45cb2.defaultPlacement','\"end\"'),('categoryGroups.cfd21061-ac1a-4fa4-adba-02a314e45cb2.fieldLayouts.8a588cb8-740e-4f52-9ee2-705bc248b8aa.tabs.0.elements.0.autocapitalize','true'),('categoryGroups.cfd21061-ac1a-4fa4-adba-02a314e45cb2.fieldLayouts.8a588cb8-740e-4f52-9ee2-705bc248b8aa.tabs.0.elements.0.autocomplete','false'),('categoryGroups.cfd21061-ac1a-4fa4-adba-02a314e45cb2.fieldLayouts.8a588cb8-740e-4f52-9ee2-705bc248b8aa.tabs.0.elements.0.autocorrect','true'),('categoryGroups.cfd21061-ac1a-4fa4-adba-02a314e45cb2.fieldLayouts.8a588cb8-740e-4f52-9ee2-705bc248b8aa.tabs.0.elements.0.class','null'),('categoryGroups.cfd21061-ac1a-4fa4-adba-02a314e45cb2.fieldLayouts.8a588cb8-740e-4f52-9ee2-705bc248b8aa.tabs.0.elements.0.disabled','false'),('categoryGroups.cfd21061-ac1a-4fa4-adba-02a314e45cb2.fieldLayouts.8a588cb8-740e-4f52-9ee2-705bc248b8aa.tabs.0.elements.0.id','null'),('categoryGroups.cfd21061-ac1a-4fa4-adba-02a314e45cb2.fieldLayouts.8a588cb8-740e-4f52-9ee2-705bc248b8aa.tabs.0.elements.0.instructions','null'),('categoryGroups.cfd21061-ac1a-4fa4-adba-02a314e45cb2.fieldLayouts.8a588cb8-740e-4f52-9ee2-705bc248b8aa.tabs.0.elements.0.label','null'),('categoryGroups.cfd21061-ac1a-4fa4-adba-02a314e45cb2.fieldLayouts.8a588cb8-740e-4f52-9ee2-705bc248b8aa.tabs.0.elements.0.max','null'),('categoryGroups.cfd21061-ac1a-4fa4-adba-02a314e45cb2.fieldLayouts.8a588cb8-740e-4f52-9ee2-705bc248b8aa.tabs.0.elements.0.min','null'),('categoryGroups.cfd21061-ac1a-4fa4-adba-02a314e45cb2.fieldLayouts.8a588cb8-740e-4f52-9ee2-705bc248b8aa.tabs.0.elements.0.name','null'),('categoryGroups.cfd21061-ac1a-4fa4-adba-02a314e45cb2.fieldLayouts.8a588cb8-740e-4f52-9ee2-705bc248b8aa.tabs.0.elements.0.orientation','null'),('categoryGroups.cfd21061-ac1a-4fa4-adba-02a314e45cb2.fieldLayouts.8a588cb8-740e-4f52-9ee2-705bc248b8aa.tabs.0.elements.0.placeholder','null'),('categoryGroups.cfd21061-ac1a-4fa4-adba-02a314e45cb2.fieldLayouts.8a588cb8-740e-4f52-9ee2-705bc248b8aa.tabs.0.elements.0.readonly','false'),('categoryGroups.cfd21061-ac1a-4fa4-adba-02a314e45cb2.fieldLayouts.8a588cb8-740e-4f52-9ee2-705bc248b8aa.tabs.0.elements.0.requirable','false'),('categoryGroups.cfd21061-ac1a-4fa4-adba-02a314e45cb2.fieldLayouts.8a588cb8-740e-4f52-9ee2-705bc248b8aa.tabs.0.elements.0.size','null'),('categoryGroups.cfd21061-ac1a-4fa4-adba-02a314e45cb2.fieldLayouts.8a588cb8-740e-4f52-9ee2-705bc248b8aa.tabs.0.elements.0.step','null'),('categoryGroups.cfd21061-ac1a-4fa4-adba-02a314e45cb2.fieldLayouts.8a588cb8-740e-4f52-9ee2-705bc248b8aa.tabs.0.elements.0.tip','null'),('categoryGroups.cfd21061-ac1a-4fa4-adba-02a314e45cb2.fieldLayouts.8a588cb8-740e-4f52-9ee2-705bc248b8aa.tabs.0.elements.0.title','null'),('categoryGroups.cfd21061-ac1a-4fa4-adba-02a314e45cb2.fieldLayouts.8a588cb8-740e-4f52-9ee2-705bc248b8aa.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\TitleField\"'),('categoryGroups.cfd21061-ac1a-4fa4-adba-02a314e45cb2.fieldLayouts.8a588cb8-740e-4f52-9ee2-705bc248b8aa.tabs.0.elements.0.warning','null'),('categoryGroups.cfd21061-ac1a-4fa4-adba-02a314e45cb2.fieldLayouts.8a588cb8-740e-4f52-9ee2-705bc248b8aa.tabs.0.elements.0.width','100'),('categoryGroups.cfd21061-ac1a-4fa4-adba-02a314e45cb2.fieldLayouts.8a588cb8-740e-4f52-9ee2-705bc248b8aa.tabs.0.name','\"Content\"'),('categoryGroups.cfd21061-ac1a-4fa4-adba-02a314e45cb2.fieldLayouts.8a588cb8-740e-4f52-9ee2-705bc248b8aa.tabs.0.sortOrder','1'),('categoryGroups.cfd21061-ac1a-4fa4-adba-02a314e45cb2.handle','\"servicesCategories\"'),('categoryGroups.cfd21061-ac1a-4fa4-adba-02a314e45cb2.name','\"Services categories\"'),('categoryGroups.cfd21061-ac1a-4fa4-adba-02a314e45cb2.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.hasUrls','true'),('categoryGroups.cfd21061-ac1a-4fa4-adba-02a314e45cb2.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.template','\"category/index\"'),('categoryGroups.cfd21061-ac1a-4fa4-adba-02a314e45cb2.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.uriFormat','\"services-categories/{slug}\"'),('categoryGroups.cfd21061-ac1a-4fa4-adba-02a314e45cb2.structure.maxLevels','null'),('categoryGroups.cfd21061-ac1a-4fa4-adba-02a314e45cb2.structure.uid','\"26e075ff-eb66-4528-8ba3-0d8bd4bb5a8b\"'),('dateModified','1678067058'),('email.fromEmail','\"digital@newwordorder.com.au\"'),('email.fromName','\"NWO Starter\"'),('email.transportType','\"craft\\\\mail\\\\transportadapters\\\\Sendmail\"'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.0.elements.0.autocapitalize','true'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.0.elements.0.autocomplete','false'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.0.elements.0.autocorrect','true'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.0.elements.0.class','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.0.elements.0.disabled','false'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.0.elements.0.id','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.0.elements.0.instructions','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.0.elements.0.label','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.0.elements.0.max','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.0.elements.0.min','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.0.elements.0.name','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.0.elements.0.orientation','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.0.elements.0.placeholder','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.0.elements.0.readonly','false'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.0.elements.0.requirable','false'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.0.elements.0.size','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.0.elements.0.step','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.0.elements.0.tip','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.0.elements.0.title','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.0.elements.0.warning','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.0.elements.0.width','100'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.0.elements.1.fieldUid','\"a5a982f3-8c85-4f6a-bc53-40ca9d61afbf\"'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.0.elements.1.instructions','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.0.elements.1.label','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.0.elements.1.required','false'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.0.elements.1.tip','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.0.elements.1.warning','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.0.elements.1.width','100'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.0.name','\"Content\"'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.0.sortOrder','1'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.0.fieldUid','\"d4f97e13-677b-40d7-a802-929455984b64\"'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.0.instructions','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.0.label','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.0.required','false'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.0.tip','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.0.warning','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.0.width','100'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.1.fieldUid','\"687c0549-de46-424f-8727-7b5546c11752\"'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.1.instructions','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.1.label','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.1.required','false'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.1.tip','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.1.warning','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.1.width','100'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.2.fieldUid','\"543fd936-b820-4ae9-93f7-e0577abe2fab\"'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.2.instructions','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.2.label','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.2.required','false'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.2.tip','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.2.warning','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.2.width','100'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.3.fieldUid','\"24041ec2-da5f-4ff4-82b3-6aba2005647a\"'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.3.instructions','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.3.label','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.3.required','false'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.3.tip','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.3.warning','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.3.width','100'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.4.fieldUid','\"42f55576-0f06-49ff-bc18-627c979de526\"'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.4.instructions','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.4.label','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.4.required','false'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.4.tip','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.4.warning','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.elements.4.width','100'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.name','\"SEO\"'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.fieldLayouts.7e8e6a6d-fdc4-4d6b-aa91-d850c95fddf1.tabs.1.sortOrder','2'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.handle','\"aboutUs\"'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.hasTitleField','false'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.name','\"About us\"'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.section','\"90098b77-7cc0-440f-b64c-27d247c69b07\"'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.sortOrder','1'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.titleFormat','\"{section.name|raw}\"'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.titleTranslationKeyFormat','null'),('entryTypes.086a93c7-a41d-43b4-a54f-921ef87da6ae.titleTranslationMethod','\"site\"'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.0.autocapitalize','true'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.0.autocomplete','false'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.0.autocorrect','true'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.0.class','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.0.disabled','false'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.0.id','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.0.instructions','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.0.label','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.0.max','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.0.min','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.0.name','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.0.orientation','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.0.placeholder','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.0.readonly','false'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.0.requirable','false'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.0.size','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.0.step','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.0.tip','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.0.title','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.0.warning','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.0.width','100'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.1.fieldUid','\"0a95ad86-a2ee-4a11-9a13-65c1f09f0df5\"'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.1.instructions','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.1.label','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.1.required','false'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.1.tip','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.1.warning','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.1.width','100'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.2.fieldUid','\"ac4071b5-babb-4fdc-b080-3c0d83e33548\"'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.2.instructions','\"\"'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.2.label','\"Header image\"'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.2.required','\"\"'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.2.tip','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.2.warning','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.2.width','100'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.3.fieldUid','\"5df89179-62c7-4128-ba15-c49e9690a573\"'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.3.instructions','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.3.label','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.3.required','false'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.3.tip','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.3.warning','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.3.width','100'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.4.fieldUid','\"a5a982f3-8c85-4f6a-bc53-40ca9d61afbf\"'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.4.instructions','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.4.label','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.4.required','false'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.4.tip','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.4.warning','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.elements.4.width','100'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.name','\"Content\"'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.0.sortOrder','1'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.0.fieldUid','\"d4f97e13-677b-40d7-a802-929455984b64\"'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.0.instructions','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.0.label','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.0.required','false'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.0.tip','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.0.warning','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.0.width','100'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.1.fieldUid','\"687c0549-de46-424f-8727-7b5546c11752\"'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.1.instructions','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.1.label','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.1.required','false'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.1.tip','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.1.warning','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.1.width','100'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.2.fieldUid','\"543fd936-b820-4ae9-93f7-e0577abe2fab\"'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.2.instructions','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.2.label','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.2.required','false'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.2.tip','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.2.warning','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.2.width','100'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.3.fieldUid','\"24041ec2-da5f-4ff4-82b3-6aba2005647a\"'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.3.instructions','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.3.label','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.3.required','false'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.3.tip','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.3.warning','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.3.width','100'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.4.fieldUid','\"42f55576-0f06-49ff-bc18-627c979de526\"'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.4.instructions','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.4.label','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.4.required','false'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.4.tip','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.4.warning','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.elements.4.width','100'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.name','\"SEO\"'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.fieldLayouts.02df1f40-681b-4c8f-b2e3-6b2488894ac7.tabs.1.sortOrder','2'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.handle','\"articles\"'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.hasTitleField','true'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.name','\"Articles\"'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.section','\"a649cddf-ac92-414a-8d24-cff4dcfeb45e\"'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.sortOrder','1'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.titleFormat','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.titleTranslationKeyFormat','null'),('entryTypes.2d747d18-dd10-42b6-9af7-e2a166985c9f.titleTranslationMethod','\"site\"'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.fieldLayouts.7112d78b-ff1d-408f-b89a-eb8299dae02a.tabs.0.elements.0.autocapitalize','true'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.fieldLayouts.7112d78b-ff1d-408f-b89a-eb8299dae02a.tabs.0.elements.0.autocomplete','false'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.fieldLayouts.7112d78b-ff1d-408f-b89a-eb8299dae02a.tabs.0.elements.0.autocorrect','true'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.fieldLayouts.7112d78b-ff1d-408f-b89a-eb8299dae02a.tabs.0.elements.0.class','null'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.fieldLayouts.7112d78b-ff1d-408f-b89a-eb8299dae02a.tabs.0.elements.0.disabled','false'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.fieldLayouts.7112d78b-ff1d-408f-b89a-eb8299dae02a.tabs.0.elements.0.id','null'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.fieldLayouts.7112d78b-ff1d-408f-b89a-eb8299dae02a.tabs.0.elements.0.instructions','null'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.fieldLayouts.7112d78b-ff1d-408f-b89a-eb8299dae02a.tabs.0.elements.0.label','null'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.fieldLayouts.7112d78b-ff1d-408f-b89a-eb8299dae02a.tabs.0.elements.0.max','null'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.fieldLayouts.7112d78b-ff1d-408f-b89a-eb8299dae02a.tabs.0.elements.0.min','null'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.fieldLayouts.7112d78b-ff1d-408f-b89a-eb8299dae02a.tabs.0.elements.0.name','null'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.fieldLayouts.7112d78b-ff1d-408f-b89a-eb8299dae02a.tabs.0.elements.0.orientation','null'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.fieldLayouts.7112d78b-ff1d-408f-b89a-eb8299dae02a.tabs.0.elements.0.placeholder','null'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.fieldLayouts.7112d78b-ff1d-408f-b89a-eb8299dae02a.tabs.0.elements.0.readonly','false'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.fieldLayouts.7112d78b-ff1d-408f-b89a-eb8299dae02a.tabs.0.elements.0.requirable','false'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.fieldLayouts.7112d78b-ff1d-408f-b89a-eb8299dae02a.tabs.0.elements.0.size','null'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.fieldLayouts.7112d78b-ff1d-408f-b89a-eb8299dae02a.tabs.0.elements.0.step','null'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.fieldLayouts.7112d78b-ff1d-408f-b89a-eb8299dae02a.tabs.0.elements.0.tip','null'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.fieldLayouts.7112d78b-ff1d-408f-b89a-eb8299dae02a.tabs.0.elements.0.title','null'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.fieldLayouts.7112d78b-ff1d-408f-b89a-eb8299dae02a.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.fieldLayouts.7112d78b-ff1d-408f-b89a-eb8299dae02a.tabs.0.elements.0.warning','null'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.fieldLayouts.7112d78b-ff1d-408f-b89a-eb8299dae02a.tabs.0.elements.0.width','100'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.fieldLayouts.7112d78b-ff1d-408f-b89a-eb8299dae02a.tabs.0.elements.1.fieldUid','\"a5a982f3-8c85-4f6a-bc53-40ca9d61afbf\"'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.fieldLayouts.7112d78b-ff1d-408f-b89a-eb8299dae02a.tabs.0.elements.1.instructions','null'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.fieldLayouts.7112d78b-ff1d-408f-b89a-eb8299dae02a.tabs.0.elements.1.label','null'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.fieldLayouts.7112d78b-ff1d-408f-b89a-eb8299dae02a.tabs.0.elements.1.required','false'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.fieldLayouts.7112d78b-ff1d-408f-b89a-eb8299dae02a.tabs.0.elements.1.tip','null'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.fieldLayouts.7112d78b-ff1d-408f-b89a-eb8299dae02a.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.fieldLayouts.7112d78b-ff1d-408f-b89a-eb8299dae02a.tabs.0.elements.1.warning','null'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.fieldLayouts.7112d78b-ff1d-408f-b89a-eb8299dae02a.tabs.0.elements.1.width','100'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.fieldLayouts.7112d78b-ff1d-408f-b89a-eb8299dae02a.tabs.0.name','\"Content\"'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.fieldLayouts.7112d78b-ff1d-408f-b89a-eb8299dae02a.tabs.0.sortOrder','1'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.handle','\"updateDetails\"'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.hasTitleField','false'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.name','\"Update details\"'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.section','\"2dd11b6c-8f0f-45ca-ba26-9ad3d1d670db\"'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.sortOrder','1'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.titleFormat','\"{section.name|raw}\"'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.titleTranslationKeyFormat','null'),('entryTypes.35beece6-b6ea-44b2-adc6-bce32c1165de.titleTranslationMethod','\"site\"'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.0.autocapitalize','true'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.0.autocomplete','false'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.0.autocorrect','true'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.0.class','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.0.disabled','false'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.0.id','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.0.instructions','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.0.label','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.0.max','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.0.min','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.0.name','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.0.orientation','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.0.placeholder','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.0.readonly','false'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.0.requirable','false'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.0.size','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.0.step','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.0.tip','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.0.title','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.0.warning','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.0.width','100'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.1.heading','\"Income\"'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\Heading\"'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.10.fieldUid','\"805eaf66-af57-453c-a73e-c4db8393b9eb\"'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.10.instructions','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.10.label','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.10.required','false'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.10.tip','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.10.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.10.warning','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.10.width','100'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.2.fieldUid','\"a28227a7-60b7-44a9-8bb3-cd123f79875e\"'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.2.instructions','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.2.label','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.2.required','false'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.2.tip','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.2.warning','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.2.width','100'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.3.heading','\"Expenses\"'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\Heading\"'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.4.fieldUid','\"f68e0fd0-2ad7-4416-b9d1-ae48f49e33d8\"'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.4.instructions','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.4.label','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.4.required','false'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.4.tip','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.4.warning','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.4.width','50'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.5.fieldUid','\"e68f08fa-4e2a-4590-8cc5-07f7fa015bfb\"'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.5.instructions','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.5.label','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.5.required','false'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.5.tip','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.5.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.5.warning','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.5.width','50'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.6.heading','\"Totals\"'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.6.type','\"craft\\\\fieldlayoutelements\\\\Heading\"'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.7.fieldUid','\"fcfcedf6-24b6-4050-a9ca-21e4d7b5a8f4\"'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.7.instructions','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.7.label','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.7.required','false'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.7.tip','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.7.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.7.warning','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.7.width','100'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.8.fieldUid','\"23642e4f-de6f-4254-877c-4007ee2aec3f\"'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.8.instructions','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.8.label','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.8.required','false'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.8.tip','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.8.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.8.warning','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.8.width','100'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.9.heading','\"Monthly budget\"'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.elements.9.type','\"craft\\\\fieldlayoutelements\\\\Heading\"'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.name','\"Content\"'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.fieldLayouts.b19a91cd-ce57-4057-845a-8c7b151b4b6a.tabs.0.sortOrder','1'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.handle','\"reports\"'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.hasTitleField','true'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.name','\"Reports\"'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.section','\"846db8d3-82f8-4432-92d2-39c6b7baa1b3\"'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.sortOrder','1'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.titleFormat','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.titleTranslationKeyFormat','null'),('entryTypes.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74.titleTranslationMethod','\"site\"'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.fieldLayouts.7baa16b6-afc3-4b8b-a487-de5f8c336eb8.tabs.0.elements.0.autocapitalize','true'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.fieldLayouts.7baa16b6-afc3-4b8b-a487-de5f8c336eb8.tabs.0.elements.0.autocomplete','false'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.fieldLayouts.7baa16b6-afc3-4b8b-a487-de5f8c336eb8.tabs.0.elements.0.autocorrect','true'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.fieldLayouts.7baa16b6-afc3-4b8b-a487-de5f8c336eb8.tabs.0.elements.0.class','null'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.fieldLayouts.7baa16b6-afc3-4b8b-a487-de5f8c336eb8.tabs.0.elements.0.disabled','false'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.fieldLayouts.7baa16b6-afc3-4b8b-a487-de5f8c336eb8.tabs.0.elements.0.id','null'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.fieldLayouts.7baa16b6-afc3-4b8b-a487-de5f8c336eb8.tabs.0.elements.0.instructions','null'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.fieldLayouts.7baa16b6-afc3-4b8b-a487-de5f8c336eb8.tabs.0.elements.0.label','null'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.fieldLayouts.7baa16b6-afc3-4b8b-a487-de5f8c336eb8.tabs.0.elements.0.max','null'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.fieldLayouts.7baa16b6-afc3-4b8b-a487-de5f8c336eb8.tabs.0.elements.0.min','null'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.fieldLayouts.7baa16b6-afc3-4b8b-a487-de5f8c336eb8.tabs.0.elements.0.name','null'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.fieldLayouts.7baa16b6-afc3-4b8b-a487-de5f8c336eb8.tabs.0.elements.0.orientation','null'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.fieldLayouts.7baa16b6-afc3-4b8b-a487-de5f8c336eb8.tabs.0.elements.0.placeholder','null'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.fieldLayouts.7baa16b6-afc3-4b8b-a487-de5f8c336eb8.tabs.0.elements.0.readonly','false'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.fieldLayouts.7baa16b6-afc3-4b8b-a487-de5f8c336eb8.tabs.0.elements.0.requirable','false'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.fieldLayouts.7baa16b6-afc3-4b8b-a487-de5f8c336eb8.tabs.0.elements.0.size','null'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.fieldLayouts.7baa16b6-afc3-4b8b-a487-de5f8c336eb8.tabs.0.elements.0.step','null'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.fieldLayouts.7baa16b6-afc3-4b8b-a487-de5f8c336eb8.tabs.0.elements.0.tip','null'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.fieldLayouts.7baa16b6-afc3-4b8b-a487-de5f8c336eb8.tabs.0.elements.0.title','null'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.fieldLayouts.7baa16b6-afc3-4b8b-a487-de5f8c336eb8.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.fieldLayouts.7baa16b6-afc3-4b8b-a487-de5f8c336eb8.tabs.0.elements.0.warning','null'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.fieldLayouts.7baa16b6-afc3-4b8b-a487-de5f8c336eb8.tabs.0.elements.0.width','100'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.fieldLayouts.7baa16b6-afc3-4b8b-a487-de5f8c336eb8.tabs.0.elements.1.fieldUid','\"a5a982f3-8c85-4f6a-bc53-40ca9d61afbf\"'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.fieldLayouts.7baa16b6-afc3-4b8b-a487-de5f8c336eb8.tabs.0.elements.1.instructions','null'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.fieldLayouts.7baa16b6-afc3-4b8b-a487-de5f8c336eb8.tabs.0.elements.1.label','null'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.fieldLayouts.7baa16b6-afc3-4b8b-a487-de5f8c336eb8.tabs.0.elements.1.required','false'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.fieldLayouts.7baa16b6-afc3-4b8b-a487-de5f8c336eb8.tabs.0.elements.1.tip','null'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.fieldLayouts.7baa16b6-afc3-4b8b-a487-de5f8c336eb8.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.fieldLayouts.7baa16b6-afc3-4b8b-a487-de5f8c336eb8.tabs.0.elements.1.warning','null'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.fieldLayouts.7baa16b6-afc3-4b8b-a487-de5f8c336eb8.tabs.0.elements.1.width','100'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.fieldLayouts.7baa16b6-afc3-4b8b-a487-de5f8c336eb8.tabs.0.name','\"Content\"'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.fieldLayouts.7baa16b6-afc3-4b8b-a487-de5f8c336eb8.tabs.0.sortOrder','1'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.handle','\"privacyPolicy\"'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.hasTitleField','false'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.name','\"Privacy policy\"'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.section','\"06c54559-a0bd-4b67-9fc8-80660f0c54f9\"'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.sortOrder','1'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.titleFormat','\"{section.name|raw}\"'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.titleTranslationKeyFormat','null'),('entryTypes.699dc9e3-e9f1-413a-9e92-bcb8082671ef.titleTranslationMethod','\"site\"'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.elements.0.autocapitalize','true'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.elements.0.autocomplete','false'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.elements.0.autocorrect','true'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.elements.0.class','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.elements.0.disabled','false'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.elements.0.id','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.elements.0.instructions','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.elements.0.label','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.elements.0.max','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.elements.0.min','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.elements.0.name','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.elements.0.orientation','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.elements.0.placeholder','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.elements.0.readonly','false'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.elements.0.requirable','false'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.elements.0.size','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.elements.0.step','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.elements.0.tip','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.elements.0.title','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.elements.0.uid','\"5add5b7d-6be5-4657-ab62-ddbf75e38444\"'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.elements.0.warning','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.elements.0.width','100'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.elements.1.fieldUid','\"a5a982f3-8c85-4f6a-bc53-40ca9d61afbf\"'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.elements.1.instructions','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.elements.1.label','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.elements.1.required','false'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.elements.1.tip','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.elements.1.uid','\"b015293c-2953-4188-8a74-8849ec97d3c4\"'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.elements.1.warning','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.elements.1.width','100'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.name','\"Content\"'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.0.uid','\"1217954c-e2d0-45b6-ace8-d62b7c7c302c\"'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.0.fieldUid','\"d4f97e13-677b-40d7-a802-929455984b64\"'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.0.instructions','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.0.label','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.0.required','false'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.0.tip','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.0.uid','\"5aee1241-9687-4281-810c-8f2a08aa9e5a\"'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.0.warning','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.0.width','100'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.1.fieldUid','\"687c0549-de46-424f-8727-7b5546c11752\"'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.1.instructions','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.1.label','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.1.required','false'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.1.tip','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.1.uid','\"65eda6a6-eeaa-4dc2-bf39-73ff956bc98e\"'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.1.warning','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.1.width','100'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.2.fieldUid','\"543fd936-b820-4ae9-93f7-e0577abe2fab\"'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.2.instructions','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.2.label','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.2.required','false'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.2.tip','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.2.uid','\"2326774e-445b-4189-9627-9eae4e36d9a1\"'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.2.warning','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.2.width','100'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.3.fieldUid','\"24041ec2-da5f-4ff4-82b3-6aba2005647a\"'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.3.instructions','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.3.label','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.3.required','false'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.3.tip','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.3.uid','\"bf045135-9e68-46b8-aeb8-eabf8b514f9f\"'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.3.warning','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.3.width','100'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.4.fieldUid','\"42f55576-0f06-49ff-bc18-627c979de526\"'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.4.instructions','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.4.label','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.4.required','false'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.4.tip','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.4.uid','\"66bad9f0-e426-4c0f-9c84-2e7616a73926\"'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.4.warning','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.elements.4.width','100'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.name','\"SEO\"'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.fieldLayouts.6e9fcefc-73a7-4da4-9557-6bdf1bca1ec6.tabs.1.uid','\"7cf570a1-7c32-4840-8515-f729df899106\"'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.handle','\"careers\"'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.hasTitleField','false'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.name','\"Careers\"'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.section','\"f05a5cc5-d31f-45a1-9412-037b742553a8\"'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.sortOrder','1'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.titleFormat','\"{section.name|raw}\"'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.titleTranslationKeyFormat','null'),('entryTypes.7581d339-bf7d-428c-86b0-bdd628dfef2e.titleTranslationMethod','\"site\"'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.0.elements.0.autocapitalize','true'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.0.elements.0.autocomplete','false'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.0.elements.0.autocorrect','true'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.0.elements.0.class','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.0.elements.0.disabled','false'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.0.elements.0.id','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.0.elements.0.instructions','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.0.elements.0.label','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.0.elements.0.max','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.0.elements.0.min','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.0.elements.0.name','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.0.elements.0.orientation','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.0.elements.0.placeholder','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.0.elements.0.readonly','false'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.0.elements.0.requirable','false'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.0.elements.0.size','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.0.elements.0.step','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.0.elements.0.tip','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.0.elements.0.title','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.0.elements.0.warning','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.0.elements.0.width','100'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.0.elements.1.fieldUid','\"a5a982f3-8c85-4f6a-bc53-40ca9d61afbf\"'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.0.elements.1.instructions','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.0.elements.1.label','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.0.elements.1.required','false'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.0.elements.1.tip','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.0.elements.1.warning','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.0.elements.1.width','100'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.0.name','\"Content\"'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.0.sortOrder','1'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.0.fieldUid','\"d4f97e13-677b-40d7-a802-929455984b64\"'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.0.instructions','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.0.label','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.0.required','false'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.0.tip','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.0.warning','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.0.width','100'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.1.fieldUid','\"687c0549-de46-424f-8727-7b5546c11752\"'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.1.instructions','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.1.label','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.1.required','false'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.1.tip','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.1.warning','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.1.width','100'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.2.fieldUid','\"543fd936-b820-4ae9-93f7-e0577abe2fab\"'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.2.instructions','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.2.label','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.2.required','false'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.2.tip','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.2.warning','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.2.width','100'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.3.fieldUid','\"24041ec2-da5f-4ff4-82b3-6aba2005647a\"'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.3.instructions','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.3.label','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.3.required','false'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.3.tip','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.3.warning','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.3.width','100'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.4.fieldUid','\"42f55576-0f06-49ff-bc18-627c979de526\"'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.4.instructions','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.4.label','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.4.required','false'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.4.tip','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.4.warning','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.elements.4.width','100'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.name','\"SEO\"'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.fieldLayouts.1f90b522-820f-4e71-8aa3-a9c5b48d7326.tabs.1.sortOrder','2'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.handle','\"contact\"'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.hasTitleField','false'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.name','\"Contact \"'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.section','\"a0ddfe68-96f9-46b1-a989-31cbcde47626\"'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.sortOrder','1'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.titleFormat','\"{section.name|raw}\"'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.titleTranslationKeyFormat','null'),('entryTypes.87388b9a-25e4-4627-bf28-0312074ff5bd.titleTranslationMethod','\"site\"'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.fieldLayouts.070325fc-9637-4278-adad-f41de72595ea.tabs.0.elements.0.autocapitalize','true'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.fieldLayouts.070325fc-9637-4278-adad-f41de72595ea.tabs.0.elements.0.autocomplete','false'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.fieldLayouts.070325fc-9637-4278-adad-f41de72595ea.tabs.0.elements.0.autocorrect','true'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.fieldLayouts.070325fc-9637-4278-adad-f41de72595ea.tabs.0.elements.0.class','null'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.fieldLayouts.070325fc-9637-4278-adad-f41de72595ea.tabs.0.elements.0.disabled','false'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.fieldLayouts.070325fc-9637-4278-adad-f41de72595ea.tabs.0.elements.0.id','null'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.fieldLayouts.070325fc-9637-4278-adad-f41de72595ea.tabs.0.elements.0.instructions','null'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.fieldLayouts.070325fc-9637-4278-adad-f41de72595ea.tabs.0.elements.0.label','null'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.fieldLayouts.070325fc-9637-4278-adad-f41de72595ea.tabs.0.elements.0.max','null'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.fieldLayouts.070325fc-9637-4278-adad-f41de72595ea.tabs.0.elements.0.min','null'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.fieldLayouts.070325fc-9637-4278-adad-f41de72595ea.tabs.0.elements.0.name','null'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.fieldLayouts.070325fc-9637-4278-adad-f41de72595ea.tabs.0.elements.0.orientation','null'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.fieldLayouts.070325fc-9637-4278-adad-f41de72595ea.tabs.0.elements.0.placeholder','null'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.fieldLayouts.070325fc-9637-4278-adad-f41de72595ea.tabs.0.elements.0.readonly','false'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.fieldLayouts.070325fc-9637-4278-adad-f41de72595ea.tabs.0.elements.0.requirable','false'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.fieldLayouts.070325fc-9637-4278-adad-f41de72595ea.tabs.0.elements.0.size','null'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.fieldLayouts.070325fc-9637-4278-adad-f41de72595ea.tabs.0.elements.0.step','null'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.fieldLayouts.070325fc-9637-4278-adad-f41de72595ea.tabs.0.elements.0.tip','null'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.fieldLayouts.070325fc-9637-4278-adad-f41de72595ea.tabs.0.elements.0.title','null'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.fieldLayouts.070325fc-9637-4278-adad-f41de72595ea.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.fieldLayouts.070325fc-9637-4278-adad-f41de72595ea.tabs.0.elements.0.warning','null'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.fieldLayouts.070325fc-9637-4278-adad-f41de72595ea.tabs.0.elements.0.width','100'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.fieldLayouts.070325fc-9637-4278-adad-f41de72595ea.tabs.0.elements.1.fieldUid','\"a5a982f3-8c85-4f6a-bc53-40ca9d61afbf\"'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.fieldLayouts.070325fc-9637-4278-adad-f41de72595ea.tabs.0.elements.1.instructions','null'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.fieldLayouts.070325fc-9637-4278-adad-f41de72595ea.tabs.0.elements.1.label','null'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.fieldLayouts.070325fc-9637-4278-adad-f41de72595ea.tabs.0.elements.1.required','false'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.fieldLayouts.070325fc-9637-4278-adad-f41de72595ea.tabs.0.elements.1.tip','null'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.fieldLayouts.070325fc-9637-4278-adad-f41de72595ea.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.fieldLayouts.070325fc-9637-4278-adad-f41de72595ea.tabs.0.elements.1.warning','null'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.fieldLayouts.070325fc-9637-4278-adad-f41de72595ea.tabs.0.elements.1.width','100'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.fieldLayouts.070325fc-9637-4278-adad-f41de72595ea.tabs.0.name','\"Content\"'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.fieldLayouts.070325fc-9637-4278-adad-f41de72595ea.tabs.0.sortOrder','1'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.handle','\"termsAndConditions\"'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.hasTitleField','false'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.name','\"Terms and conditions\"'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.section','\"9d16c38d-02f8-4ef4-9c55-897a45744518\"'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.sortOrder','1'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.titleFormat','\"{section.name|raw}\"'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.titleTranslationKeyFormat','null'),('entryTypes.96713950-85e1-4428-8c0f-a77811771d67.titleTranslationMethod','\"site\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.0.autocapitalize','true'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.0.autocomplete','false'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.0.autocorrect','true'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.0.class','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.0.disabled','false'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.0.id','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.0.instructions','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.0.label','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.0.max','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.0.min','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.0.name','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.0.orientation','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.0.placeholder','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.0.readonly','false'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.0.requirable','false'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.0.size','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.0.step','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.0.tip','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.0.title','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.0.uid','\"43262f10-b000-4ccd-8a6c-f650f02c83c6\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.0.warning','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.0.width','75'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.1.fieldUid','\"4772b900-f086-421b-9298-9380f296a971\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.1.instructions','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.1.label','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.1.required','false'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.1.tip','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.1.uid','\"0cf871d9-74b1-41ca-87c0-807c93b46709\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.1.warning','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.1.width','25'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.10.fieldUid','\"5f5f0671-b681-4818-942e-b5b46842906c\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.10.instructions','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.10.label','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.10.required','false'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.10.tip','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.10.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.10.uid','\"0490f151-0eff-4a53-a8cd-dc91757c75e3\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.10.warning','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.10.width','25'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.11.type','\"craft\\\\fieldlayoutelements\\\\HorizontalRule\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.11.uid','\"74ac3255-e80a-4e4e-a60f-75b65f08602c\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.12.fieldUid','\"a5a982f3-8c85-4f6a-bc53-40ca9d61afbf\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.12.instructions','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.12.label','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.12.required','false'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.12.tip','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.12.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.12.uid','\"33cbde52-57c4-4dea-a723-f2d6d8cebc29\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.12.warning','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.12.width','100'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.2.fieldUid','\"872244dc-f181-4b82-8df8-20a59d62654c\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.2.instructions','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.2.label','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.2.required','false'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.2.tip','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.2.uid','\"947913ca-064b-4543-bb39-7b29a8d4a8a3\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.2.warning','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.2.width','100'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\HorizontalRule\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.3.uid','\"c1560e28-511f-4f9b-a919-f8c619f38be5\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.4.fieldUid','\"79eb82a7-865b-4011-9a91-56b285226a2d\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.4.instructions','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.4.label','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.4.required','false'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.4.tip','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.4.uid','\"cf37f2c3-d28d-4223-b989-8e3c0fbeb645\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.4.warning','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.4.width','100'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.5.type','\"craft\\\\fieldlayoutelements\\\\HorizontalRule\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.5.uid','\"49d10b02-65dd-4840-a945-a04fc90c4581\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.6.fieldUid','\"ac330e35-980d-4c71-9fd8-4c4edd58140b\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.6.instructions','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.6.label','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.6.required','false'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.6.tip','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.6.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.6.uid','\"97d18182-3e34-4a26-a78b-567db5d57504\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.6.warning','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.6.width','100'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.7.type','\"craft\\\\fieldlayoutelements\\\\HorizontalRule\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.7.uid','\"bcff48d1-64e3-432c-8de6-6d9b81e29cce\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.8.fieldUid','\"ac4071b5-babb-4fdc-b080-3c0d83e33548\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.8.instructions','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.8.label','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.8.required','true'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.8.tip','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.8.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.8.uid','\"ce7738ca-afed-4ed2-aa46-dbe182351071\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.8.warning','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.8.width','100'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.9.fieldUid','\"5df89179-62c7-4128-ba15-c49e9690a573\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.9.instructions','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.9.label','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.9.required','false'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.9.tip','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.9.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.9.uid','\"32c078b3-01c0-482e-a4cd-5da0f1355758\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.9.warning','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.elements.9.width','25'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.name','\"Content\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.0.uid','\"6e7078c8-c0cc-4c77-8c17-5da4dafeac41\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.0.fieldUid','\"d4f97e13-677b-40d7-a802-929455984b64\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.0.instructions','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.0.label','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.0.required','false'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.0.tip','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.0.uid','\"63ab5c8d-c978-4260-b636-9af4ca7a1520\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.0.warning','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.0.width','100'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.1.fieldUid','\"687c0549-de46-424f-8727-7b5546c11752\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.1.instructions','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.1.label','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.1.required','false'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.1.tip','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.1.uid','\"686fd255-fbe9-4ac3-9cf1-d9378dd7985d\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.1.warning','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.1.width','100'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.2.fieldUid','\"543fd936-b820-4ae9-93f7-e0577abe2fab\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.2.instructions','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.2.label','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.2.required','false'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.2.tip','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.2.uid','\"fa86f2cf-606a-4c19-8138-7221096d37b5\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.2.warning','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.2.width','100'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.3.fieldUid','\"24041ec2-da5f-4ff4-82b3-6aba2005647a\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.3.instructions','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.3.label','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.3.required','false'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.3.tip','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.3.uid','\"76aca29d-1226-4b72-a5db-7bb469c98004\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.3.warning','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.3.width','100'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.4.fieldUid','\"42f55576-0f06-49ff-bc18-627c979de526\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.4.instructions','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.4.label','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.4.required','false'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.4.tip','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.4.uid','\"d33d50dc-3e57-4b80-ae76-888d7f709287\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.4.warning','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.elements.4.width','100'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.name','\"SEO\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.fieldLayouts.ef2f1140-3917-4ae9-9989-7fab13f0b27f.tabs.1.uid','\"a4aaca3d-3200-4470-a7b2-573b96975cbb\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.handle','\"work\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.hasTitleField','true'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.name','\"Work\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.section','\"6683638f-50e1-4d95-9996-a6e6b3aabff9\"'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.sortOrder','1'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.titleFormat','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.titleTranslationKeyFormat','null'),('entryTypes.afa15877-78bf-4b63-8526-70c324e0886b.titleTranslationMethod','\"site\"'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.0.elements.0.autocapitalize','true'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.0.elements.0.autocomplete','false'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.0.elements.0.autocorrect','true'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.0.elements.0.class','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.0.elements.0.disabled','false'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.0.elements.0.id','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.0.elements.0.instructions','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.0.elements.0.label','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.0.elements.0.max','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.0.elements.0.min','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.0.elements.0.name','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.0.elements.0.orientation','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.0.elements.0.placeholder','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.0.elements.0.readonly','false'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.0.elements.0.requirable','false'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.0.elements.0.size','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.0.elements.0.step','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.0.elements.0.tip','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.0.elements.0.title','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.0.elements.0.warning','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.0.elements.0.width','100'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.0.elements.1.fieldUid','\"d49f872f-4325-4ed2-b381-4eb04d0a576b\"'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.0.elements.1.instructions','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.0.elements.1.label','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.0.elements.1.required','false'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.0.elements.1.tip','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.0.elements.1.warning','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.0.elements.1.width','100'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.0.name','\"Content\"'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.0.sortOrder','1'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.0.fieldUid','\"d4f97e13-677b-40d7-a802-929455984b64\"'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.0.instructions','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.0.label','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.0.required','false'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.0.tip','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.0.warning','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.0.width','100'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.1.fieldUid','\"687c0549-de46-424f-8727-7b5546c11752\"'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.1.instructions','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.1.label','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.1.required','false'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.1.tip','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.1.warning','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.1.width','100'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.2.fieldUid','\"543fd936-b820-4ae9-93f7-e0577abe2fab\"'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.2.instructions','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.2.label','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.2.required','false'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.2.tip','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.2.warning','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.2.width','100'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.3.fieldUid','\"24041ec2-da5f-4ff4-82b3-6aba2005647a\"'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.3.instructions','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.3.label','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.3.required','false'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.3.tip','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.3.warning','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.3.width','100'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.4.fieldUid','\"42f55576-0f06-49ff-bc18-627c979de526\"'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.4.instructions','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.4.label','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.4.required','false'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.4.tip','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.4.warning','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.elements.4.width','100'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.name','\"SEO\"'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.fieldLayouts.56de0a70-8a67-46b1-9171-7d0615fe69da.tabs.1.sortOrder','2'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.handle','\"home\"'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.hasTitleField','false'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.name','\"Home\"'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.section','\"a3eaf7c8-edf3-45b3-a471-6fa0f26714a4\"'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.sortOrder','1'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.titleFormat','\"{section.name|raw}\"'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.titleTranslationKeyFormat','null'),('entryTypes.b78190de-5858-4b45-b26f-5df67ce780f9.titleTranslationMethod','\"site\"'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elementCondition','null'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.0.autocapitalize','true'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.0.autocomplete','false'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.0.autocorrect','true'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.0.class','null'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.0.disabled','false'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.0.elementCondition','null'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.0.id','null'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.0.instructions','null'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.0.label','null'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.0.max','null'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.0.min','null'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.0.name','null'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.0.orientation','null'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.0.placeholder','null'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.0.readonly','false'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.0.requirable','false'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.0.size','null'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.0.step','null'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.0.tip','null'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.0.title','null'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.0.uid','\"3f2a8f95-dbf0-46aa-bd49-e99794d16c0b\"'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.0.userCondition','null'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.0.warning','null'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.0.width','100'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.1.elementCondition','null'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.1.fieldUid','\"a5a982f3-8c85-4f6a-bc53-40ca9d61afbf\"'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.1.instructions','null'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.1.label','null'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.1.required','false'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.1.tip','null'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.1.uid','\"e20411fa-c304-48ec-9f8b-9d34466491da\"'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.1.userCondition','null'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.1.warning','null'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.elements.1.width','100'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.name','\"Content\"'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.uid','\"417b5119-a59a-49a9-bc19-c4817f238337\"'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.fieldLayouts.8edb0572-e47c-44eb-91a8-a07556cf389c.tabs.0.userCondition','null'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.handle','\"updateDetailsCopy\"'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.hasTitleField','false'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.name','\"Update details copy\"'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.section','\"69e4dc6d-9a04-4461-a794-9f65af0b82a5\"'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.sortOrder','1'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.titleFormat','\"{section.name|raw}\"'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.titleTranslationKeyFormat','null'),('entryTypes.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28.titleTranslationMethod','\"site\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elementCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.0.autocapitalize','true'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.0.autocomplete','false'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.0.autocorrect','true'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.0.class','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.0.disabled','false'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.0.elementCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.0.id','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.0.instructions','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.0.label','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.0.max','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.0.min','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.0.name','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.0.orientation','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.0.placeholder','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.0.readonly','false'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.0.requirable','false'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.0.size','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.0.step','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.0.tip','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.0.title','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.0.uid','\"19e09451-f040-4cc0-a31f-ee4f500aa3cb\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.0.userCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.0.warning','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.0.width','100'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.1.elementCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.1.fieldUid','\"872244dc-f181-4b82-8df8-20a59d62654c\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.1.instructions','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.1.label','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.1.required','false'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.1.tip','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.1.uid','\"7763acbe-bb3f-45f1-b4c3-d24547dccfb2\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.1.userCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.1.warning','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.1.width','100'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.2.elementCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.2.fieldUid','\"79eb82a7-865b-4011-9a91-56b285226a2d\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.2.instructions','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.2.label','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.2.required','false'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.2.tip','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.2.uid','\"a6ef0b84-4f7d-4124-b5f4-ca79c3b1960f\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.2.userCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.2.warning','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.2.width','100'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.3.elementCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.3.fieldUid','\"a5a982f3-8c85-4f6a-bc53-40ca9d61afbf\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.3.instructions','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.3.label','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.3.required','false'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.3.tip','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.3.uid','\"40874984-2cbb-49ff-82ef-dd93506c25e2\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.3.userCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.3.warning','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.3.width','100'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.4.elementCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\HorizontalRule\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.4.uid','\"7f00ce49-5128-4ea5-bd41-5ad7598b116c\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.4.userCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.5.elementCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.5.fieldUid','\"e7ac7afe-110f-424b-8df7-cf443f223406\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.5.instructions','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.5.label','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.5.required','false'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.5.tip','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.5.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.5.uid','\"84ffb62b-802b-4304-a335-23f391e51725\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.5.userCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.5.warning','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.5.width','100'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.6.elementCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.6.fieldUid','\"862d1737-5597-46a1-b258-ff7ce4042cd3\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.6.instructions','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.6.label','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.6.required','false'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.6.tip','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.6.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.6.uid','\"a5a2c2dd-d95a-43ce-b404-1875e381d6de\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.6.userCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.6.warning','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.6.width','100'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.7.elementCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.7.fieldUid','\"3c72aff9-f829-44b4-9d47-b4c571d6607e\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.7.instructions','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.7.label','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.7.required','false'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.7.tip','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.7.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.7.uid','\"c473c061-be87-4d51-835e-e927bf3f9c3e\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.7.userCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.7.warning','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.7.width','100'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.8.elementCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.8.fieldUid','\"0b66a65f-3e3d-40b8-b271-c462745f3c3f\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.8.instructions','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.8.label','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.8.required','false'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.8.tip','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.8.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.8.uid','\"f1958c10-d282-4299-a37f-5b01144d3cc7\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.8.userCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.8.warning','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.8.width','100'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.9.elementCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.9.fieldUid','\"6566ff95-a04d-47e8-b107-3d2222680acf\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.9.instructions','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.9.label','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.9.required','false'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.9.tip','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.9.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.9.uid','\"b8856e98-02bb-437a-b45b-82f5c542663d\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.9.userCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.9.warning','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.elements.9.width','100'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.name','\"Content\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.uid','\"1e4686ee-3714-4a7c-a876-b4bdb70e4dd9\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.0.userCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elementCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.0.elementCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.0.fieldUid','\"d4f97e13-677b-40d7-a802-929455984b64\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.0.instructions','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.0.label','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.0.required','false'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.0.tip','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.0.uid','\"004603a7-5e3a-4d94-b264-e9057e463295\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.0.userCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.0.warning','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.0.width','100'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.1.elementCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.1.fieldUid','\"687c0549-de46-424f-8727-7b5546c11752\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.1.instructions','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.1.label','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.1.required','false'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.1.tip','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.1.uid','\"ed640a4f-9533-43e1-b2c9-346b2d9c2862\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.1.userCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.1.warning','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.1.width','100'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.2.elementCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.2.fieldUid','\"543fd936-b820-4ae9-93f7-e0577abe2fab\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.2.instructions','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.2.label','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.2.required','false'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.2.tip','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.2.uid','\"46c8d853-5b5f-48ad-aeb8-7e92d5afc124\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.2.userCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.2.warning','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.2.width','100'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.3.elementCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.3.fieldUid','\"24041ec2-da5f-4ff4-82b3-6aba2005647a\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.3.instructions','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.3.label','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.3.required','false'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.3.tip','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.3.uid','\"1efaf851-411f-48b0-a037-946386ba6921\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.3.userCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.3.warning','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.3.width','100'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.4.elementCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.4.fieldUid','\"42f55576-0f06-49ff-bc18-627c979de526\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.4.instructions','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.4.label','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.4.required','false'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.4.tip','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.4.uid','\"cd9f717f-092c-4911-8b78-217b75854da2\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.4.userCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.4.warning','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.elements.4.width','100'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.name','\"SEO\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.uid','\"2f7ecb02-22e0-46aa-9087-5fa98482fdbb\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.fieldLayouts.22ad5874-a33e-42f4-a3b2-862bcb6c8b37.tabs.1.userCondition','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.handle','\"default\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.hasTitleField','true'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.name','\"Default\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.section','\"ca64ab62-fc10-4034-9c0e-298f6ad47b21\"'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.sortOrder','1'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.titleFormat','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.titleTranslationKeyFormat','null'),('entryTypes.c1be37f3-ce5d-480f-9bcc-84281061c574.titleTranslationMethod','\"site\"'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.fieldLayouts.0405c97e-1fda-456e-9a6e-e62a118681ee.tabs.0.elements.0.autocapitalize','true'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.fieldLayouts.0405c97e-1fda-456e-9a6e-e62a118681ee.tabs.0.elements.0.autocomplete','false'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.fieldLayouts.0405c97e-1fda-456e-9a6e-e62a118681ee.tabs.0.elements.0.autocorrect','true'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.fieldLayouts.0405c97e-1fda-456e-9a6e-e62a118681ee.tabs.0.elements.0.class','null'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.fieldLayouts.0405c97e-1fda-456e-9a6e-e62a118681ee.tabs.0.elements.0.disabled','false'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.fieldLayouts.0405c97e-1fda-456e-9a6e-e62a118681ee.tabs.0.elements.0.id','null'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.fieldLayouts.0405c97e-1fda-456e-9a6e-e62a118681ee.tabs.0.elements.0.instructions','null'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.fieldLayouts.0405c97e-1fda-456e-9a6e-e62a118681ee.tabs.0.elements.0.label','null'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.fieldLayouts.0405c97e-1fda-456e-9a6e-e62a118681ee.tabs.0.elements.0.max','null'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.fieldLayouts.0405c97e-1fda-456e-9a6e-e62a118681ee.tabs.0.elements.0.min','null'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.fieldLayouts.0405c97e-1fda-456e-9a6e-e62a118681ee.tabs.0.elements.0.name','null'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.fieldLayouts.0405c97e-1fda-456e-9a6e-e62a118681ee.tabs.0.elements.0.orientation','null'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.fieldLayouts.0405c97e-1fda-456e-9a6e-e62a118681ee.tabs.0.elements.0.placeholder','null'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.fieldLayouts.0405c97e-1fda-456e-9a6e-e62a118681ee.tabs.0.elements.0.readonly','false'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.fieldLayouts.0405c97e-1fda-456e-9a6e-e62a118681ee.tabs.0.elements.0.requirable','false'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.fieldLayouts.0405c97e-1fda-456e-9a6e-e62a118681ee.tabs.0.elements.0.size','null'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.fieldLayouts.0405c97e-1fda-456e-9a6e-e62a118681ee.tabs.0.elements.0.step','null'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.fieldLayouts.0405c97e-1fda-456e-9a6e-e62a118681ee.tabs.0.elements.0.tip','null'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.fieldLayouts.0405c97e-1fda-456e-9a6e-e62a118681ee.tabs.0.elements.0.title','null'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.fieldLayouts.0405c97e-1fda-456e-9a6e-e62a118681ee.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.fieldLayouts.0405c97e-1fda-456e-9a6e-e62a118681ee.tabs.0.elements.0.warning','null'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.fieldLayouts.0405c97e-1fda-456e-9a6e-e62a118681ee.tabs.0.elements.0.width','100'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.fieldLayouts.0405c97e-1fda-456e-9a6e-e62a118681ee.tabs.0.elements.1.fieldUid','\"f4eb2f46-8e77-46c1-97fe-2bdcdeb4c582\"'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.fieldLayouts.0405c97e-1fda-456e-9a6e-e62a118681ee.tabs.0.elements.1.instructions','null'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.fieldLayouts.0405c97e-1fda-456e-9a6e-e62a118681ee.tabs.0.elements.1.label','null'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.fieldLayouts.0405c97e-1fda-456e-9a6e-e62a118681ee.tabs.0.elements.1.required','false'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.fieldLayouts.0405c97e-1fda-456e-9a6e-e62a118681ee.tabs.0.elements.1.tip','null'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.fieldLayouts.0405c97e-1fda-456e-9a6e-e62a118681ee.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.fieldLayouts.0405c97e-1fda-456e-9a6e-e62a118681ee.tabs.0.elements.1.warning','null'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.fieldLayouts.0405c97e-1fda-456e-9a6e-e62a118681ee.tabs.0.elements.1.width','100'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.fieldLayouts.0405c97e-1fda-456e-9a6e-e62a118681ee.tabs.0.name','\"Content\"'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.fieldLayouts.0405c97e-1fda-456e-9a6e-e62a118681ee.tabs.0.sortOrder','1'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.handle','\"emailSigs\"'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.hasTitleField','false'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.name','\"Email sigs\"'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.section','\"628d994f-ad6a-4dc8-a55d-d6611dfc364b\"'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.sortOrder','1'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.titleFormat','\"{section.name|raw}\"'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.titleTranslationKeyFormat','null'),('entryTypes.d1f7515c-43ef-4878-b92c-f8e25e4e21d2.titleTranslationMethod','\"site\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.0.autocapitalize','true'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.0.autocomplete','false'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.0.autocorrect','true'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.0.class','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.0.disabled','false'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.0.id','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.0.instructions','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.0.label','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.0.max','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.0.min','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.0.name','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.0.orientation','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.0.placeholder','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.0.readonly','false'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.0.requirable','false'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.0.size','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.0.step','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.0.tip','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.0.title','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\entries\\\\EntryTitleField\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.0.warning','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.0.width','100'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.1.heading','\"Part A\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\Heading\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.10.fieldUid','\"184a3cee-6b8f-43b2-a1c2-15e0920bc40a\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.10.instructions','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.10.label','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.10.required','false'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.10.tip','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.10.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.10.warning','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.10.width','100'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.11.fieldUid','\"38b64a4b-dfbd-4f5b-a1a7-a5e1d5dc6d5c\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.11.instructions','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.11.label','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.11.required','false'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.11.tip','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.11.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.11.warning','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.11.width','100'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.12.fieldUid','\"4c3b5ed6-52bc-439a-8a01-77b49f19abc9\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.12.instructions','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.12.label','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.12.required','false'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.12.tip','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.12.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.12.warning','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.12.width','100'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.13.fieldUid','\"6e255f23-a127-4ba3-aada-80c15787c41c\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.13.instructions','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.13.label','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.13.required','false'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.13.tip','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.13.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.13.warning','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.13.width','100'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.14.fieldUid','\"c4967892-52de-4701-96d6-2c2a06e6d47c\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.14.instructions','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.14.label','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.14.required','false'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.14.tip','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.14.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.14.warning','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.14.width','100'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.15.fieldUid','\"2b13a963-ee44-4811-817d-abb9e3a5833b\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.15.instructions','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.15.label','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.15.required','false'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.15.tip','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.15.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.15.warning','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.15.width','100'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.16.fieldUid','\"d545dd13-412a-49ee-9c3e-e4f359054850\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.16.instructions','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.16.label','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.16.required','false'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.16.tip','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.16.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.16.warning','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.16.width','100'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.17.fieldUid','\"e752f760-0ca6-48e7-8efc-0453ac18ced7\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.17.instructions','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.17.label','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.17.required','false'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.17.tip','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.17.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.17.warning','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.17.width','100'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.18.fieldUid','\"f1e93f83-edeb-49fc-be13-10e88d0e52e1\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.18.instructions','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.18.label','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.18.required','false'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.18.tip','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.18.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.18.warning','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.18.width','100'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.19.fieldUid','\"31c9c26c-caa5-4dbe-8878-310224cc8712\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.19.instructions','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.19.label','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.19.required','false'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.19.tip','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.19.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.19.warning','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.19.width','100'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.2.fieldUid','\"a52e3a14-549c-4d8d-ac07-344f3ef99152\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.2.instructions','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.2.label','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.2.required','false'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.2.tip','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.2.warning','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.2.width','100'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.20.fieldUid','\"40e3cd37-08cd-446a-9032-b0b3087d2fb9\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.20.instructions','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.20.label','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.20.required','false'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.20.tip','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.20.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.20.warning','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.20.width','100'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.21.fieldUid','\"d18bb60b-1374-45fc-9f7a-8836cba975c2\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.21.instructions','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.21.label','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.21.required','false'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.21.tip','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.21.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.21.warning','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.21.width','100'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.22.fieldUid','\"166692c6-ff38-4a39-9b37-b3b39ccbb191\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.22.instructions','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.22.label','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.22.required','false'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.22.tip','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.22.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.22.warning','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.22.width','100'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.23.heading','\"Part C\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.23.type','\"craft\\\\fieldlayoutelements\\\\Heading\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.24.fieldUid','\"a1f430b2-c028-4c12-9f6b-e150f70c1180\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.24.instructions','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.24.label','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.24.required','false'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.24.tip','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.24.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.24.warning','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.24.width','100'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.25.fieldUid','\"0e8e2297-d68a-468e-b544-879164ce3c80\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.25.instructions','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.25.label','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.25.required','false'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.25.tip','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.25.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.25.warning','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.25.width','100'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.26.fieldUid','\"13610740-a1b4-444d-9e45-5610874d09cf\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.26.instructions','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.26.label','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.26.required','false'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.26.tip','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.26.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.26.warning','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.26.width','100'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.27.heading','\"Part D\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.27.type','\"craft\\\\fieldlayoutelements\\\\Heading\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.28.fieldUid','\"d7979c8a-d87b-409d-8c05-fa64e62b86b1\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.28.instructions','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.28.label','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.28.required','false'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.28.tip','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.28.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.28.warning','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.28.width','100'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.3.fieldUid','\"22448697-4341-4b80-bda7-9fc403a0f86a\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.3.instructions','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.3.label','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.3.required','false'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.3.tip','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.3.warning','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.3.width','100'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.4.fieldUid','\"c4eb0e22-1cb4-48bf-93e9-2bc22719bd40\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.4.instructions','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.4.label','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.4.required','false'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.4.tip','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.4.warning','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.4.width','100'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.5.fieldUid','\"093b401e-620c-46a6-9868-44c5c118b7fc\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.5.instructions','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.5.label','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.5.required','false'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.5.tip','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.5.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.5.warning','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.5.width','100'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.6.fieldUid','\"cafab2ca-5789-4f06-ad5d-6078f78fb5d9\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.6.instructions','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.6.label','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.6.required','false'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.6.tip','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.6.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.6.warning','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.6.width','100'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.7.fieldUid','\"d6df2896-4499-43ee-97c1-0ff16e3072d0\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.7.instructions','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.7.label','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.7.required','false'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.7.tip','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.7.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.7.warning','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.7.width','100'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.8.heading','\"Part B\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.8.type','\"craft\\\\fieldlayoutelements\\\\Heading\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.9.fieldUid','\"58300ceb-06bc-4d88-bb83-e9e90cbda3cd\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.9.instructions','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.9.label','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.9.required','false'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.9.tip','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.9.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.9.warning','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.elements.9.width','100'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.name','\"Content\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.fieldLayouts.1e4bc53a-c3eb-4f02-aeea-d89955e6f5c0.tabs.0.sortOrder','1'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.handle','\"audits\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.hasTitleField','true'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.name','\"Audits\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.section','\"1e439968-7658-40fc-b32c-b180f0cf7dd6\"'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.sortOrder','1'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.titleFormat','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.titleTranslationKeyFormat','null'),('entryTypes.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66.titleTranslationMethod','\"site\"'),('fieldGroups.2b60406c-5779-47b4-bfe7-7fbc8096df95.name','\"Users\"'),('fieldGroups.34d088ed-ef16-496c-9634-85e5d8581aa0.name','\"Invoices\"'),('fieldGroups.4065deaf-bfe6-4913-8ecf-ce7325eb4452.name','\"Dashboard\"'),('fieldGroups.581f3b95-4fdd-4b29-a806-753edb34ee8c.name','\"Reports\"'),('fieldGroups.80fbe8fd-2c62-448d-ad9f-7a54ff848431.name','\"Jobs\"'),('fieldGroups.84d29012-402c-44d3-8599-938ab66e3b97.name','\"Quotes\"'),('fieldGroups.949c24d0-491b-49e0-8802-dfed8158b301.name','\"Audits\"'),('fieldGroups.9c07c80e-a4f6-4e46-a7c2-e7d5839f2aea.name','\"Home fields\"'),('fieldGroups.a401651e-3e05-4a6d-adf0-8019688b630a.name','\"SEO\"'),('fieldGroups.a93becfb-6496-4b2f-93d5-cf2691ada3d7.name','\"Vizy Fields\"'),('fieldGroups.c38e2159-46dc-46e1-bc98-42bfb5da312f.name','\"Common\"'),('fieldGroups.d73b1e0a-7e53-4ebb-b0e7-af18eb450e07.name','\"CTA Fields\"'),('fieldGroups.f43e2891-333d-49b3-a9db-3e8569344d15.name','\"Work\"'),('fields.0900cdc7-fd64-4e21-add2-512c734998de.columnSuffix','null'),('fields.0900cdc7-fd64-4e21-add2-512c734998de.contentColumnType','\"text\"'),('fields.0900cdc7-fd64-4e21-add2-512c734998de.fieldGroup','\"581f3b95-4fdd-4b29-a806-753edb34ee8c\"'),('fields.0900cdc7-fd64-4e21-add2-512c734998de.handle','\"interestIncome\"'),('fields.0900cdc7-fd64-4e21-add2-512c734998de.instructions','\"\"'),('fields.0900cdc7-fd64-4e21-add2-512c734998de.name','\"Interest income\"'),('fields.0900cdc7-fd64-4e21-add2-512c734998de.searchable','false'),('fields.0900cdc7-fd64-4e21-add2-512c734998de.settings.byteLimit','null'),('fields.0900cdc7-fd64-4e21-add2-512c734998de.settings.charLimit','null'),('fields.0900cdc7-fd64-4e21-add2-512c734998de.settings.code','\"\"'),('fields.0900cdc7-fd64-4e21-add2-512c734998de.settings.columnType','null'),('fields.0900cdc7-fd64-4e21-add2-512c734998de.settings.initialRows','\"4\"'),('fields.0900cdc7-fd64-4e21-add2-512c734998de.settings.multiline','\"\"'),('fields.0900cdc7-fd64-4e21-add2-512c734998de.settings.placeholder','null'),('fields.0900cdc7-fd64-4e21-add2-512c734998de.settings.uiMode','\"normal\"'),('fields.0900cdc7-fd64-4e21-add2-512c734998de.translationKeyFormat','null'),('fields.0900cdc7-fd64-4e21-add2-512c734998de.translationMethod','\"none\"'),('fields.0900cdc7-fd64-4e21-add2-512c734998de.type','\"craft\\\\fields\\\\PlainText\"'),('fields.093b401e-620c-46a6-9868-44c5c118b7fc.columnSuffix','null'),('fields.093b401e-620c-46a6-9868-44c5c118b7fc.contentColumnType','\"text\"'),('fields.093b401e-620c-46a6-9868-44c5c118b7fc.fieldGroup','\"949c24d0-491b-49e0-8802-dfed8158b301\"'),('fields.093b401e-620c-46a6-9868-44c5c118b7fc.handle','\"cultureHowDoYouAndYourPeopleThinkAndBehaveAtWork\"'),('fields.093b401e-620c-46a6-9868-44c5c118b7fc.instructions','\"\"'),('fields.093b401e-620c-46a6-9868-44c5c118b7fc.name','\"Culture â How do you and your people think and behave at work?\"'),('fields.093b401e-620c-46a6-9868-44c5c118b7fc.searchable','false'),('fields.093b401e-620c-46a6-9868-44c5c118b7fc.settings.byteLimit','null'),('fields.093b401e-620c-46a6-9868-44c5c118b7fc.settings.charLimit','null'),('fields.093b401e-620c-46a6-9868-44c5c118b7fc.settings.code','\"\"'),('fields.093b401e-620c-46a6-9868-44c5c118b7fc.settings.columnType','null'),('fields.093b401e-620c-46a6-9868-44c5c118b7fc.settings.initialRows','\"4\"'),('fields.093b401e-620c-46a6-9868-44c5c118b7fc.settings.multiline','\"1\"'),('fields.093b401e-620c-46a6-9868-44c5c118b7fc.settings.placeholder','null'),('fields.093b401e-620c-46a6-9868-44c5c118b7fc.settings.uiMode','\"normal\"'),('fields.093b401e-620c-46a6-9868-44c5c118b7fc.translationKeyFormat','null'),('fields.093b401e-620c-46a6-9868-44c5c118b7fc.translationMethod','\"none\"'),('fields.093b401e-620c-46a6-9868-44c5c118b7fc.type','\"craft\\\\fields\\\\PlainText\"'),('fields.0a95ad86-a2ee-4a11-9a13-65c1f09f0df5.columnSuffix','null'),('fields.0a95ad86-a2ee-4a11-9a13-65c1f09f0df5.contentColumnType','\"string\"'),('fields.0a95ad86-a2ee-4a11-9a13-65c1f09f0df5.fieldGroup','\"c38e2159-46dc-46e1-bc98-42bfb5da312f\"'),('fields.0a95ad86-a2ee-4a11-9a13-65c1f09f0df5.handle','\"bgFeatureHoverImage\"'),('fields.0a95ad86-a2ee-4a11-9a13-65c1f09f0df5.instructions','\"\"'),('fields.0a95ad86-a2ee-4a11-9a13-65c1f09f0df5.name','\"BG Feature hover image\"'),('fields.0a95ad86-a2ee-4a11-9a13-65c1f09f0df5.searchable','false'),('fields.0a95ad86-a2ee-4a11-9a13-65c1f09f0df5.settings.allowedKinds.0','\"image\"'),('fields.0a95ad86-a2ee-4a11-9a13-65c1f09f0df5.settings.allowSelfRelations','false'),('fields.0a95ad86-a2ee-4a11-9a13-65c1f09f0df5.settings.allowUploads','true'),('fields.0a95ad86-a2ee-4a11-9a13-65c1f09f0df5.settings.defaultUploadLocationSource','\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('fields.0a95ad86-a2ee-4a11-9a13-65c1f09f0df5.settings.defaultUploadLocationSubpath','\"\"'),('fields.0a95ad86-a2ee-4a11-9a13-65c1f09f0df5.settings.limit','\"1\"'),('fields.0a95ad86-a2ee-4a11-9a13-65c1f09f0df5.settings.localizeRelations','false'),('fields.0a95ad86-a2ee-4a11-9a13-65c1f09f0df5.settings.previewMode','\"full\"'),('fields.0a95ad86-a2ee-4a11-9a13-65c1f09f0df5.settings.restrictFiles','\"1\"'),('fields.0a95ad86-a2ee-4a11-9a13-65c1f09f0df5.settings.selectionLabel','\"Add a feature bg image\"'),('fields.0a95ad86-a2ee-4a11-9a13-65c1f09f0df5.settings.showSiteMenu','false'),('fields.0a95ad86-a2ee-4a11-9a13-65c1f09f0df5.settings.showUnpermittedFiles','false'),('fields.0a95ad86-a2ee-4a11-9a13-65c1f09f0df5.settings.showUnpermittedVolumes','false'),('fields.0a95ad86-a2ee-4a11-9a13-65c1f09f0df5.settings.singleUploadLocationSource','\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('fields.0a95ad86-a2ee-4a11-9a13-65c1f09f0df5.settings.singleUploadLocationSubpath','\"\"'),('fields.0a95ad86-a2ee-4a11-9a13-65c1f09f0df5.settings.source','null'),('fields.0a95ad86-a2ee-4a11-9a13-65c1f09f0df5.settings.sources','\"*\"'),('fields.0a95ad86-a2ee-4a11-9a13-65c1f09f0df5.settings.targetSiteId','null'),('fields.0a95ad86-a2ee-4a11-9a13-65c1f09f0df5.settings.useSingleFolder','false'),('fields.0a95ad86-a2ee-4a11-9a13-65c1f09f0df5.settings.validateRelatedElements','false'),('fields.0a95ad86-a2ee-4a11-9a13-65c1f09f0df5.settings.viewMode','\"list\"'),('fields.0a95ad86-a2ee-4a11-9a13-65c1f09f0df5.translationKeyFormat','null'),('fields.0a95ad86-a2ee-4a11-9a13-65c1f09f0df5.translationMethod','\"site\"'),('fields.0a95ad86-a2ee-4a11-9a13-65c1f09f0df5.type','\"craft\\\\fields\\\\Assets\"'),('fields.0b66a65f-3e3d-40b8-b271-c462745f3c3f.columnSuffix','\"rmxaccom\"'),('fields.0b66a65f-3e3d-40b8-b271-c462745f3c3f.contentColumnType','\"text\"'),('fields.0b66a65f-3e3d-40b8-b271-c462745f3c3f.fieldGroup','\"d73b1e0a-7e53-4ebb-b0e7-af18eb450e07\"'),('fields.0b66a65f-3e3d-40b8-b271-c462745f3c3f.handle','\"calloutButtonText\"'),('fields.0b66a65f-3e3d-40b8-b271-c462745f3c3f.instructions','\"\"'),('fields.0b66a65f-3e3d-40b8-b271-c462745f3c3f.name','\"Callout button text\"'),('fields.0b66a65f-3e3d-40b8-b271-c462745f3c3f.searchable','false'),('fields.0b66a65f-3e3d-40b8-b271-c462745f3c3f.settings.byteLimit','null'),('fields.0b66a65f-3e3d-40b8-b271-c462745f3c3f.settings.charLimit','null'),('fields.0b66a65f-3e3d-40b8-b271-c462745f3c3f.settings.code','\"\"'),('fields.0b66a65f-3e3d-40b8-b271-c462745f3c3f.settings.columnType','null'),('fields.0b66a65f-3e3d-40b8-b271-c462745f3c3f.settings.initialRows','\"4\"'),('fields.0b66a65f-3e3d-40b8-b271-c462745f3c3f.settings.multiline','\"\"'),('fields.0b66a65f-3e3d-40b8-b271-c462745f3c3f.settings.placeholder','null'),('fields.0b66a65f-3e3d-40b8-b271-c462745f3c3f.settings.uiMode','\"normal\"'),('fields.0b66a65f-3e3d-40b8-b271-c462745f3c3f.translationKeyFormat','null'),('fields.0b66a65f-3e3d-40b8-b271-c462745f3c3f.translationMethod','\"none\"'),('fields.0b66a65f-3e3d-40b8-b271-c462745f3c3f.type','\"craft\\\\fields\\\\PlainText\"'),('fields.0bbcc717-57ca-4d29-b399-c400de0b3c74.columnSuffix','null'),('fields.0bbcc717-57ca-4d29-b399-c400de0b3c74.contentColumnType','\"text\"'),('fields.0bbcc717-57ca-4d29-b399-c400de0b3c74.fieldGroup','\"84d29012-402c-44d3-8599-938ab66e3b97\"'),('fields.0bbcc717-57ca-4d29-b399-c400de0b3c74.handle','\"quoteStatus\"'),('fields.0bbcc717-57ca-4d29-b399-c400de0b3c74.instructions','\"\"'),('fields.0bbcc717-57ca-4d29-b399-c400de0b3c74.name','\"Quote status\"'),('fields.0bbcc717-57ca-4d29-b399-c400de0b3c74.searchable','true'),('fields.0bbcc717-57ca-4d29-b399-c400de0b3c74.settings.byteLimit','null'),('fields.0bbcc717-57ca-4d29-b399-c400de0b3c74.settings.charLimit','null'),('fields.0bbcc717-57ca-4d29-b399-c400de0b3c74.settings.code','\"\"'),('fields.0bbcc717-57ca-4d29-b399-c400de0b3c74.settings.columnType','null'),('fields.0bbcc717-57ca-4d29-b399-c400de0b3c74.settings.initialRows','\"4\"'),('fields.0bbcc717-57ca-4d29-b399-c400de0b3c74.settings.multiline','\"\"'),('fields.0bbcc717-57ca-4d29-b399-c400de0b3c74.settings.placeholder','null'),('fields.0bbcc717-57ca-4d29-b399-c400de0b3c74.settings.uiMode','\"normal\"'),('fields.0bbcc717-57ca-4d29-b399-c400de0b3c74.translationKeyFormat','null'),('fields.0bbcc717-57ca-4d29-b399-c400de0b3c74.translationMethod','\"none\"'),('fields.0bbcc717-57ca-4d29-b399-c400de0b3c74.type','\"craft\\\\fields\\\\PlainText\"'),('fields.0e8e2297-d68a-468e-b544-879164ce3c80.columnSuffix','null'),('fields.0e8e2297-d68a-468e-b544-879164ce3c80.contentColumnType','\"text\"'),('fields.0e8e2297-d68a-468e-b544-879164ce3c80.fieldGroup','\"949c24d0-491b-49e0-8802-dfed8158b301\"'),('fields.0e8e2297-d68a-468e-b544-879164ce3c80.handle','\"whatCanYourBrandAchieveForYourOrganisation\"'),('fields.0e8e2297-d68a-468e-b544-879164ce3c80.instructions','\"\"'),('fields.0e8e2297-d68a-468e-b544-879164ce3c80.name','\"Opportunities â What can your brand achieve for your business/organisation?\"'),('fields.0e8e2297-d68a-468e-b544-879164ce3c80.searchable','false'),('fields.0e8e2297-d68a-468e-b544-879164ce3c80.settings.byteLimit','null'),('fields.0e8e2297-d68a-468e-b544-879164ce3c80.settings.charLimit','null'),('fields.0e8e2297-d68a-468e-b544-879164ce3c80.settings.code','\"\"'),('fields.0e8e2297-d68a-468e-b544-879164ce3c80.settings.columnType','null'),('fields.0e8e2297-d68a-468e-b544-879164ce3c80.settings.initialRows','\"4\"'),('fields.0e8e2297-d68a-468e-b544-879164ce3c80.settings.multiline','\"1\"'),('fields.0e8e2297-d68a-468e-b544-879164ce3c80.settings.placeholder','null'),('fields.0e8e2297-d68a-468e-b544-879164ce3c80.settings.uiMode','\"normal\"'),('fields.0e8e2297-d68a-468e-b544-879164ce3c80.translationKeyFormat','null'),('fields.0e8e2297-d68a-468e-b544-879164ce3c80.translationMethod','\"none\"'),('fields.0e8e2297-d68a-468e-b544-879164ce3c80.type','\"craft\\\\fields\\\\PlainText\"'),('fields.13610740-a1b4-444d-9e45-5610874d09cf.columnSuffix','null'),('fields.13610740-a1b4-444d-9e45-5610874d09cf.contentColumnType','\"text\"'),('fields.13610740-a1b4-444d-9e45-5610874d09cf.fieldGroup','\"949c24d0-491b-49e0-8802-dfed8158b301\"'),('fields.13610740-a1b4-444d-9e45-5610874d09cf.handle','\"whatNeedsToBeDone\"'),('fields.13610740-a1b4-444d-9e45-5610874d09cf.instructions','\"\"'),('fields.13610740-a1b4-444d-9e45-5610874d09cf.name','\"Outcomes â What needs to be done as a result of this audit?\"'),('fields.13610740-a1b4-444d-9e45-5610874d09cf.searchable','false'),('fields.13610740-a1b4-444d-9e45-5610874d09cf.settings.byteLimit','null'),('fields.13610740-a1b4-444d-9e45-5610874d09cf.settings.charLimit','null'),('fields.13610740-a1b4-444d-9e45-5610874d09cf.settings.code','\"\"'),('fields.13610740-a1b4-444d-9e45-5610874d09cf.settings.columnType','null'),('fields.13610740-a1b4-444d-9e45-5610874d09cf.settings.initialRows','\"4\"'),('fields.13610740-a1b4-444d-9e45-5610874d09cf.settings.multiline','\"1\"'),('fields.13610740-a1b4-444d-9e45-5610874d09cf.settings.placeholder','null'),('fields.13610740-a1b4-444d-9e45-5610874d09cf.settings.uiMode','\"normal\"'),('fields.13610740-a1b4-444d-9e45-5610874d09cf.translationKeyFormat','null'),('fields.13610740-a1b4-444d-9e45-5610874d09cf.translationMethod','\"none\"'),('fields.13610740-a1b4-444d-9e45-5610874d09cf.type','\"craft\\\\fields\\\\PlainText\"'),('fields.13c5a484-996f-4429-a612-5b251409ca6f.columnSuffix','\"qxsclyly\"'),('fields.13c5a484-996f-4429-a612-5b251409ca6f.contentColumnType','\"text\"'),('fields.13c5a484-996f-4429-a612-5b251409ca6f.fieldGroup','\"a93becfb-6496-4b2f-93d5-cf2691ada3d7\"'),('fields.13c5a484-996f-4429-a612-5b251409ca6f.handle','\"spacer\"'),('fields.13c5a484-996f-4429-a612-5b251409ca6f.instructions','null'),('fields.13c5a484-996f-4429-a612-5b251409ca6f.name','\"Spacer\"'),('fields.13c5a484-996f-4429-a612-5b251409ca6f.searchable','false'),('fields.13c5a484-996f-4429-a612-5b251409ca6f.settings.byteLimit','null'),('fields.13c5a484-996f-4429-a612-5b251409ca6f.settings.charLimit','null'),('fields.13c5a484-996f-4429-a612-5b251409ca6f.settings.code','false'),('fields.13c5a484-996f-4429-a612-5b251409ca6f.settings.columnType','null'),('fields.13c5a484-996f-4429-a612-5b251409ca6f.settings.initialRows','4'),('fields.13c5a484-996f-4429-a612-5b251409ca6f.settings.multiline','false'),('fields.13c5a484-996f-4429-a612-5b251409ca6f.settings.placeholder','null'),('fields.13c5a484-996f-4429-a612-5b251409ca6f.settings.uiMode','\"normal\"'),('fields.13c5a484-996f-4429-a612-5b251409ca6f.translationKeyFormat','null'),('fields.13c5a484-996f-4429-a612-5b251409ca6f.translationMethod','\"none\"'),('fields.13c5a484-996f-4429-a612-5b251409ca6f.type','\"craft\\\\fields\\\\PlainText\"'),('fields.166692c6-ff38-4a39-9b37-b3b39ccbb191.columnSuffix','null'),('fields.166692c6-ff38-4a39-9b37-b3b39ccbb191.contentColumnType','\"text\"'),('fields.166692c6-ff38-4a39-9b37-b3b39ccbb191.fieldGroup','\"949c24d0-491b-49e0-8802-dfed8158b301\"'),('fields.166692c6-ff38-4a39-9b37-b3b39ccbb191.handle','\"whatCampaignsWillTellYourStory\"'),('fields.166692c6-ff38-4a39-9b37-b3b39ccbb191.instructions','\"\"'),('fields.166692c6-ff38-4a39-9b37-b3b39ccbb191.name','\"Campaigns â What campaigns will tell your story and call people to action\"'),('fields.166692c6-ff38-4a39-9b37-b3b39ccbb191.searchable','false'),('fields.166692c6-ff38-4a39-9b37-b3b39ccbb191.settings.byteLimit','null'),('fields.166692c6-ff38-4a39-9b37-b3b39ccbb191.settings.charLimit','null'),('fields.166692c6-ff38-4a39-9b37-b3b39ccbb191.settings.code','\"\"'),('fields.166692c6-ff38-4a39-9b37-b3b39ccbb191.settings.columnType','null'),('fields.166692c6-ff38-4a39-9b37-b3b39ccbb191.settings.initialRows','\"4\"'),('fields.166692c6-ff38-4a39-9b37-b3b39ccbb191.settings.multiline','\"1\"'),('fields.166692c6-ff38-4a39-9b37-b3b39ccbb191.settings.placeholder','null'),('fields.166692c6-ff38-4a39-9b37-b3b39ccbb191.settings.uiMode','\"normal\"'),('fields.166692c6-ff38-4a39-9b37-b3b39ccbb191.translationKeyFormat','null'),('fields.166692c6-ff38-4a39-9b37-b3b39ccbb191.translationMethod','\"none\"'),('fields.166692c6-ff38-4a39-9b37-b3b39ccbb191.type','\"craft\\\\fields\\\\PlainText\"'),('fields.1691aec8-4743-44f9-a98b-885fa512cd5d.columnSuffix','null'),('fields.1691aec8-4743-44f9-a98b-885fa512cd5d.contentColumnType','\"text\"'),('fields.1691aec8-4743-44f9-a98b-885fa512cd5d.fieldGroup','\"581f3b95-4fdd-4b29-a806-753edb34ee8c\"'),('fields.1691aec8-4743-44f9-a98b-885fa512cd5d.handle','\"clientMediaServiceFeesCommission\"'),('fields.1691aec8-4743-44f9-a98b-885fa512cd5d.instructions','\"\"'),('fields.1691aec8-4743-44f9-a98b-885fa512cd5d.name','\"Client - media service fees (commission)\"'),('fields.1691aec8-4743-44f9-a98b-885fa512cd5d.searchable','false'),('fields.1691aec8-4743-44f9-a98b-885fa512cd5d.settings.byteLimit','null'),('fields.1691aec8-4743-44f9-a98b-885fa512cd5d.settings.charLimit','null'),('fields.1691aec8-4743-44f9-a98b-885fa512cd5d.settings.code','\"\"'),('fields.1691aec8-4743-44f9-a98b-885fa512cd5d.settings.columnType','null'),('fields.1691aec8-4743-44f9-a98b-885fa512cd5d.settings.initialRows','\"4\"'),('fields.1691aec8-4743-44f9-a98b-885fa512cd5d.settings.multiline','\"\"'),('fields.1691aec8-4743-44f9-a98b-885fa512cd5d.settings.placeholder','null'),('fields.1691aec8-4743-44f9-a98b-885fa512cd5d.settings.uiMode','\"normal\"'),('fields.1691aec8-4743-44f9-a98b-885fa512cd5d.translationKeyFormat','null'),('fields.1691aec8-4743-44f9-a98b-885fa512cd5d.translationMethod','\"none\"'),('fields.1691aec8-4743-44f9-a98b-885fa512cd5d.type','\"craft\\\\fields\\\\PlainText\"'),('fields.184a3cee-6b8f-43b2-a1c2-15e0920bc40a.columnSuffix','null'),('fields.184a3cee-6b8f-43b2-a1c2-15e0920bc40a.contentColumnType','\"text\"'),('fields.184a3cee-6b8f-43b2-a1c2-15e0920bc40a.fieldGroup','\"949c24d0-491b-49e0-8802-dfed8158b301\"'),('fields.184a3cee-6b8f-43b2-a1c2-15e0920bc40a.handle','\"yourBrandStandsFor\"'),('fields.184a3cee-6b8f-43b2-a1c2-15e0920bc40a.instructions','\"\"'),('fields.184a3cee-6b8f-43b2-a1c2-15e0920bc40a.name','\"Your brand stands for:\"'),('fields.184a3cee-6b8f-43b2-a1c2-15e0920bc40a.searchable','false'),('fields.184a3cee-6b8f-43b2-a1c2-15e0920bc40a.settings.byteLimit','null'),('fields.184a3cee-6b8f-43b2-a1c2-15e0920bc40a.settings.charLimit','null'),('fields.184a3cee-6b8f-43b2-a1c2-15e0920bc40a.settings.code','\"\"'),('fields.184a3cee-6b8f-43b2-a1c2-15e0920bc40a.settings.columnType','null'),('fields.184a3cee-6b8f-43b2-a1c2-15e0920bc40a.settings.initialRows','\"4\"'),('fields.184a3cee-6b8f-43b2-a1c2-15e0920bc40a.settings.multiline','\"1\"'),('fields.184a3cee-6b8f-43b2-a1c2-15e0920bc40a.settings.placeholder','null'),('fields.184a3cee-6b8f-43b2-a1c2-15e0920bc40a.settings.uiMode','\"normal\"'),('fields.184a3cee-6b8f-43b2-a1c2-15e0920bc40a.translationKeyFormat','null'),('fields.184a3cee-6b8f-43b2-a1c2-15e0920bc40a.translationMethod','\"none\"'),('fields.184a3cee-6b8f-43b2-a1c2-15e0920bc40a.type','\"craft\\\\fields\\\\PlainText\"'),('fields.184f942b-fb9d-48cd-baaa-612f5e9a18c0.columnSuffix','null'),('fields.184f942b-fb9d-48cd-baaa-612f5e9a18c0.contentColumnType','\"text\"'),('fields.184f942b-fb9d-48cd-baaa-612f5e9a18c0.fieldGroup','\"80fbe8fd-2c62-448d-ad9f-7a54ff848431\"'),('fields.184f942b-fb9d-48cd-baaa-612f5e9a18c0.handle','\"jobStatusId\"'),('fields.184f942b-fb9d-48cd-baaa-612f5e9a18c0.instructions','\"\"'),('fields.184f942b-fb9d-48cd-baaa-612f5e9a18c0.name','\"Job status id\"'),('fields.184f942b-fb9d-48cd-baaa-612f5e9a18c0.searchable','true'),('fields.184f942b-fb9d-48cd-baaa-612f5e9a18c0.settings.byteLimit','null'),('fields.184f942b-fb9d-48cd-baaa-612f5e9a18c0.settings.charLimit','null'),('fields.184f942b-fb9d-48cd-baaa-612f5e9a18c0.settings.code','\"\"'),('fields.184f942b-fb9d-48cd-baaa-612f5e9a18c0.settings.columnType','null'),('fields.184f942b-fb9d-48cd-baaa-612f5e9a18c0.settings.initialRows','\"4\"'),('fields.184f942b-fb9d-48cd-baaa-612f5e9a18c0.settings.multiline','\"\"'),('fields.184f942b-fb9d-48cd-baaa-612f5e9a18c0.settings.placeholder','null'),('fields.184f942b-fb9d-48cd-baaa-612f5e9a18c0.settings.uiMode','\"normal\"'),('fields.184f942b-fb9d-48cd-baaa-612f5e9a18c0.translationKeyFormat','null'),('fields.184f942b-fb9d-48cd-baaa-612f5e9a18c0.translationMethod','\"none\"'),('fields.184f942b-fb9d-48cd-baaa-612f5e9a18c0.type','\"craft\\\\fields\\\\PlainText\"'),('fields.1dfaede0-905a-4132-a18f-104b40af2718.columnSuffix','null'),('fields.1dfaede0-905a-4132-a18f-104b40af2718.contentColumnType','\"text\"'),('fields.1dfaede0-905a-4132-a18f-104b40af2718.fieldGroup','\"2b60406c-5779-47b4-bfe7-7fbc8096df95\"'),('fields.1dfaede0-905a-4132-a18f-104b40af2718.handle','\"linkedin\"'),('fields.1dfaede0-905a-4132-a18f-104b40af2718.instructions','\"\"'),('fields.1dfaede0-905a-4132-a18f-104b40af2718.name','\"LinkedIn\"'),('fields.1dfaede0-905a-4132-a18f-104b40af2718.searchable','false'),('fields.1dfaede0-905a-4132-a18f-104b40af2718.settings.byteLimit','null'),('fields.1dfaede0-905a-4132-a18f-104b40af2718.settings.charLimit','null'),('fields.1dfaede0-905a-4132-a18f-104b40af2718.settings.code','\"\"'),('fields.1dfaede0-905a-4132-a18f-104b40af2718.settings.columnType','null'),('fields.1dfaede0-905a-4132-a18f-104b40af2718.settings.initialRows','\"4\"'),('fields.1dfaede0-905a-4132-a18f-104b40af2718.settings.multiline','\"\"'),('fields.1dfaede0-905a-4132-a18f-104b40af2718.settings.placeholder','null'),('fields.1dfaede0-905a-4132-a18f-104b40af2718.settings.uiMode','\"normal\"'),('fields.1dfaede0-905a-4132-a18f-104b40af2718.translationKeyFormat','null'),('fields.1dfaede0-905a-4132-a18f-104b40af2718.translationMethod','\"none\"'),('fields.1dfaede0-905a-4132-a18f-104b40af2718.type','\"craft\\\\fields\\\\PlainText\"'),('fields.22448697-4341-4b80-bda7-9fc403a0f86a.columnSuffix','null'),('fields.22448697-4341-4b80-bda7-9fc403a0f86a.contentColumnType','\"text\"'),('fields.22448697-4341-4b80-bda7-9fc403a0f86a.fieldGroup','\"949c24d0-491b-49e0-8802-dfed8158b301\"'),('fields.22448697-4341-4b80-bda7-9fc403a0f86a.handle','\"customersWhoDoesYourBrandExistToServe\"'),('fields.22448697-4341-4b80-bda7-9fc403a0f86a.instructions','\"\"'),('fields.22448697-4341-4b80-bda7-9fc403a0f86a.name','\"Customers â Who does your brand exist to serve?\"'),('fields.22448697-4341-4b80-bda7-9fc403a0f86a.searchable','false'),('fields.22448697-4341-4b80-bda7-9fc403a0f86a.settings.byteLimit','null'),('fields.22448697-4341-4b80-bda7-9fc403a0f86a.settings.charLimit','null'),('fields.22448697-4341-4b80-bda7-9fc403a0f86a.settings.code','\"\"'),('fields.22448697-4341-4b80-bda7-9fc403a0f86a.settings.columnType','null'),('fields.22448697-4341-4b80-bda7-9fc403a0f86a.settings.initialRows','\"4\"'),('fields.22448697-4341-4b80-bda7-9fc403a0f86a.settings.multiline','\"1\"'),('fields.22448697-4341-4b80-bda7-9fc403a0f86a.settings.placeholder','null'),('fields.22448697-4341-4b80-bda7-9fc403a0f86a.settings.uiMode','\"normal\"'),('fields.22448697-4341-4b80-bda7-9fc403a0f86a.translationKeyFormat','null'),('fields.22448697-4341-4b80-bda7-9fc403a0f86a.translationMethod','\"none\"'),('fields.22448697-4341-4b80-bda7-9fc403a0f86a.type','\"craft\\\\fields\\\\PlainText\"'),('fields.23642e4f-de6f-4254-877c-4007ee2aec3f.columnSuffix','null'),('fields.23642e4f-de6f-4254-877c-4007ee2aec3f.contentColumnType','\"text\"'),('fields.23642e4f-de6f-4254-877c-4007ee2aec3f.fieldGroup','\"581f3b95-4fdd-4b29-a806-753edb34ee8c\"'),('fields.23642e4f-de6f-4254-877c-4007ee2aec3f.handle','\"netProfit\"'),('fields.23642e4f-de6f-4254-877c-4007ee2aec3f.instructions','\"\"'),('fields.23642e4f-de6f-4254-877c-4007ee2aec3f.name','\"Net profit\"'),('fields.23642e4f-de6f-4254-877c-4007ee2aec3f.searchable','false'),('fields.23642e4f-de6f-4254-877c-4007ee2aec3f.settings.byteLimit','null'),('fields.23642e4f-de6f-4254-877c-4007ee2aec3f.settings.charLimit','null'),('fields.23642e4f-de6f-4254-877c-4007ee2aec3f.settings.code','\"\"'),('fields.23642e4f-de6f-4254-877c-4007ee2aec3f.settings.columnType','null'),('fields.23642e4f-de6f-4254-877c-4007ee2aec3f.settings.initialRows','\"4\"'),('fields.23642e4f-de6f-4254-877c-4007ee2aec3f.settings.multiline','\"\"'),('fields.23642e4f-de6f-4254-877c-4007ee2aec3f.settings.placeholder','null'),('fields.23642e4f-de6f-4254-877c-4007ee2aec3f.settings.uiMode','\"normal\"'),('fields.23642e4f-de6f-4254-877c-4007ee2aec3f.translationKeyFormat','null'),('fields.23642e4f-de6f-4254-877c-4007ee2aec3f.translationMethod','\"none\"'),('fields.23642e4f-de6f-4254-877c-4007ee2aec3f.type','\"craft\\\\fields\\\\PlainText\"'),('fields.24041ec2-da5f-4ff4-82b3-6aba2005647a.columnSuffix','\"ddonlfex\"'),('fields.24041ec2-da5f-4ff4-82b3-6aba2005647a.contentColumnType','\"string\"'),('fields.24041ec2-da5f-4ff4-82b3-6aba2005647a.fieldGroup','\"a401651e-3e05-4a6d-adf0-8019688b630a\"'),('fields.24041ec2-da5f-4ff4-82b3-6aba2005647a.handle','\"seoImage\"'),('fields.24041ec2-da5f-4ff4-82b3-6aba2005647a.instructions','\"\"'),('fields.24041ec2-da5f-4ff4-82b3-6aba2005647a.name','\"SEO Image\"'),('fields.24041ec2-da5f-4ff4-82b3-6aba2005647a.searchable','false'),('fields.24041ec2-da5f-4ff4-82b3-6aba2005647a.settings.allowedKinds.0','\"image\"'),('fields.24041ec2-da5f-4ff4-82b3-6aba2005647a.settings.allowSelfRelations','false'),('fields.24041ec2-da5f-4ff4-82b3-6aba2005647a.settings.allowUploads','true'),('fields.24041ec2-da5f-4ff4-82b3-6aba2005647a.settings.defaultUploadLocationSource','\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('fields.24041ec2-da5f-4ff4-82b3-6aba2005647a.settings.defaultUploadLocationSubpath','\"\"'),('fields.24041ec2-da5f-4ff4-82b3-6aba2005647a.settings.limit','\"1\"'),('fields.24041ec2-da5f-4ff4-82b3-6aba2005647a.settings.localizeRelations','false'),('fields.24041ec2-da5f-4ff4-82b3-6aba2005647a.settings.previewMode','\"full\"'),('fields.24041ec2-da5f-4ff4-82b3-6aba2005647a.settings.restrictFiles','\"1\"'),('fields.24041ec2-da5f-4ff4-82b3-6aba2005647a.settings.selectionLabel','\"\"'),('fields.24041ec2-da5f-4ff4-82b3-6aba2005647a.settings.showSiteMenu','true'),('fields.24041ec2-da5f-4ff4-82b3-6aba2005647a.settings.showUnpermittedFiles','false'),('fields.24041ec2-da5f-4ff4-82b3-6aba2005647a.settings.showUnpermittedVolumes','false'),('fields.24041ec2-da5f-4ff4-82b3-6aba2005647a.settings.singleUploadLocationSource','\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('fields.24041ec2-da5f-4ff4-82b3-6aba2005647a.settings.singleUploadLocationSubpath','\"\"'),('fields.24041ec2-da5f-4ff4-82b3-6aba2005647a.settings.source','null'),('fields.24041ec2-da5f-4ff4-82b3-6aba2005647a.settings.sources.0','\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('fields.24041ec2-da5f-4ff4-82b3-6aba2005647a.settings.targetSiteId','null'),('fields.24041ec2-da5f-4ff4-82b3-6aba2005647a.settings.useSingleFolder','false'),('fields.24041ec2-da5f-4ff4-82b3-6aba2005647a.settings.validateRelatedElements','false'),('fields.24041ec2-da5f-4ff4-82b3-6aba2005647a.settings.viewMode','\"list\"'),('fields.24041ec2-da5f-4ff4-82b3-6aba2005647a.translationKeyFormat','null'),('fields.24041ec2-da5f-4ff4-82b3-6aba2005647a.translationMethod','\"site\"'),('fields.24041ec2-da5f-4ff4-82b3-6aba2005647a.type','\"craft\\\\fields\\\\Assets\"'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.columnSuffix','null'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.contentColumnType','\"string\"'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.fieldGroup','\"2b60406c-5779-47b4-bfe7-7fbc8096df95\"'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.handle','\"aboutUsImage\"'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.instructions','null'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.name','\"About Us Image\"'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.searchable','false'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.settings.allowedKinds','null'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.settings.allowSelfRelations','false'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.settings.allowSubfolders','false'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.settings.allowUploads','true'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.settings.defaultUploadLocationSource','\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.settings.defaultUploadLocationSubpath','null'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.settings.localizeRelations','false'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.settings.maxRelations','1'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.settings.minRelations','null'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.settings.previewMode','\"full\"'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.settings.restrictedDefaultUploadSubpath','null'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.settings.restrictedLocationSource','\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.settings.restrictedLocationSubpath','null'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.settings.restrictFiles','false'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.settings.restrictLocation','false'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.settings.selectionCondition.__assoc__.0.0','\"elementType\"'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.settings.selectionCondition.__assoc__.0.1','\"craft\\\\elements\\\\Asset\"'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.settings.selectionCondition.__assoc__.1.0','\"fieldContext\"'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.settings.selectionCondition.__assoc__.1.1','\"global\"'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.settings.selectionCondition.__assoc__.2.0','\"class\"'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.settings.selectionCondition.__assoc__.2.1','\"craft\\\\elements\\\\conditions\\\\assets\\\\AssetCondition\"'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.settings.selectionLabel','null'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.settings.showSiteMenu','true'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.settings.showUnpermittedFiles','false'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.settings.showUnpermittedVolumes','false'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.settings.source','null'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.settings.sources','\"*\"'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.settings.targetSiteId','null'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.settings.validateRelatedElements','false'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.settings.viewMode','\"list\"'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.translationKeyFormat','null'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.translationMethod','\"site\"'),('fields.241ab405-efc4-472d-a5a8-f23edb2ad1da.type','\"craft\\\\fields\\\\Assets\"'),('fields.251bd910-0905-4b47-a898-34ed6e7d587a.columnSuffix','null'),('fields.251bd910-0905-4b47-a898-34ed6e7d587a.contentColumnType','\"text\"'),('fields.251bd910-0905-4b47-a898-34ed6e7d587a.fieldGroup','\"80fbe8fd-2c62-448d-ad9f-7a54ff848431\"'),('fields.251bd910-0905-4b47-a898-34ed6e7d587a.handle','\"jobStartDate\"'),('fields.251bd910-0905-4b47-a898-34ed6e7d587a.instructions','\"\"'),('fields.251bd910-0905-4b47-a898-34ed6e7d587a.name','\"Job start date\"'),('fields.251bd910-0905-4b47-a898-34ed6e7d587a.searchable','false'),('fields.251bd910-0905-4b47-a898-34ed6e7d587a.settings.byteLimit','null'),('fields.251bd910-0905-4b47-a898-34ed6e7d587a.settings.charLimit','null'),('fields.251bd910-0905-4b47-a898-34ed6e7d587a.settings.code','\"\"'),('fields.251bd910-0905-4b47-a898-34ed6e7d587a.settings.columnType','null'),('fields.251bd910-0905-4b47-a898-34ed6e7d587a.settings.initialRows','\"4\"'),('fields.251bd910-0905-4b47-a898-34ed6e7d587a.settings.multiline','\"\"'),('fields.251bd910-0905-4b47-a898-34ed6e7d587a.settings.placeholder','null'),('fields.251bd910-0905-4b47-a898-34ed6e7d587a.settings.uiMode','\"normal\"'),('fields.251bd910-0905-4b47-a898-34ed6e7d587a.translationKeyFormat','null'),('fields.251bd910-0905-4b47-a898-34ed6e7d587a.translationMethod','\"none\"'),('fields.251bd910-0905-4b47-a898-34ed6e7d587a.type','\"craft\\\\fields\\\\PlainText\"'),('fields.259b13de-40f8-49c1-8e5f-0fedf2ddefe3.columnSuffix','null'),('fields.259b13de-40f8-49c1-8e5f-0fedf2ddefe3.contentColumnType','\"text\"'),('fields.259b13de-40f8-49c1-8e5f-0fedf2ddefe3.fieldGroup','\"80fbe8fd-2c62-448d-ad9f-7a54ff848431\"'),('fields.259b13de-40f8-49c1-8e5f-0fedf2ddefe3.handle','\"department\"'),('fields.259b13de-40f8-49c1-8e5f-0fedf2ddefe3.instructions','\"\"'),('fields.259b13de-40f8-49c1-8e5f-0fedf2ddefe3.name','\"Department\"'),('fields.259b13de-40f8-49c1-8e5f-0fedf2ddefe3.searchable','false'),('fields.259b13de-40f8-49c1-8e5f-0fedf2ddefe3.settings.byteLimit','null'),('fields.259b13de-40f8-49c1-8e5f-0fedf2ddefe3.settings.charLimit','null'),('fields.259b13de-40f8-49c1-8e5f-0fedf2ddefe3.settings.code','\"\"'),('fields.259b13de-40f8-49c1-8e5f-0fedf2ddefe3.settings.columnType','null'),('fields.259b13de-40f8-49c1-8e5f-0fedf2ddefe3.settings.initialRows','\"4\"'),('fields.259b13de-40f8-49c1-8e5f-0fedf2ddefe3.settings.multiline','\"\"'),('fields.259b13de-40f8-49c1-8e5f-0fedf2ddefe3.settings.placeholder','null'),('fields.259b13de-40f8-49c1-8e5f-0fedf2ddefe3.settings.uiMode','\"normal\"'),('fields.259b13de-40f8-49c1-8e5f-0fedf2ddefe3.translationKeyFormat','null'),('fields.259b13de-40f8-49c1-8e5f-0fedf2ddefe3.translationMethod','\"none\"'),('fields.259b13de-40f8-49c1-8e5f-0fedf2ddefe3.type','\"craft\\\\fields\\\\PlainText\"'),('fields.2718313e-9a95-48a0-b8f2-d08ccd8f2323.columnSuffix','null'),('fields.2718313e-9a95-48a0-b8f2-d08ccd8f2323.contentColumnType','\"string\"'),('fields.2718313e-9a95-48a0-b8f2-d08ccd8f2323.fieldGroup','\"a93becfb-6496-4b2f-93d5-cf2691ada3d7\"'),('fields.2718313e-9a95-48a0-b8f2-d08ccd8f2323.handle','\"buttons\"'),('fields.2718313e-9a95-48a0-b8f2-d08ccd8f2323.instructions','\"\"'),('fields.2718313e-9a95-48a0-b8f2-d08ccd8f2323.name','\"Buttons\"'),('fields.2718313e-9a95-48a0-b8f2-d08ccd8f2323.searchable','false'),('fields.2718313e-9a95-48a0-b8f2-d08ccd8f2323.settings.contentTable','\"{{%matrixcontent_buttons_1}}\"'),('fields.2718313e-9a95-48a0-b8f2-d08ccd8f2323.settings.maxBlocks','\"\"'),('fields.2718313e-9a95-48a0-b8f2-d08ccd8f2323.settings.minBlocks','\"\"'),('fields.2718313e-9a95-48a0-b8f2-d08ccd8f2323.settings.propagationKeyFormat','null'),('fields.2718313e-9a95-48a0-b8f2-d08ccd8f2323.settings.propagationMethod','\"all\"'),('fields.2718313e-9a95-48a0-b8f2-d08ccd8f2323.translationKeyFormat','null'),('fields.2718313e-9a95-48a0-b8f2-d08ccd8f2323.translationMethod','\"site\"'),('fields.2718313e-9a95-48a0-b8f2-d08ccd8f2323.type','\"craft\\\\fields\\\\Matrix\"'),('fields.2a1ced72-67ce-4040-840f-35e2320e6440.columnSuffix','null'),('fields.2a1ced72-67ce-4040-840f-35e2320e6440.contentColumnType','\"string\"'),('fields.2a1ced72-67ce-4040-840f-35e2320e6440.fieldGroup','\"80fbe8fd-2c62-448d-ad9f-7a54ff848431\"'),('fields.2a1ced72-67ce-4040-840f-35e2320e6440.handle','\"invoices\"'),('fields.2a1ced72-67ce-4040-840f-35e2320e6440.instructions','\"\"'),('fields.2a1ced72-67ce-4040-840f-35e2320e6440.name','\"Invoices\"'),('fields.2a1ced72-67ce-4040-840f-35e2320e6440.searchable','false'),('fields.2a1ced72-67ce-4040-840f-35e2320e6440.settings.allowSelfRelations','false'),('fields.2a1ced72-67ce-4040-840f-35e2320e6440.settings.limit','\"\"'),('fields.2a1ced72-67ce-4040-840f-35e2320e6440.settings.localizeRelations','false'),('fields.2a1ced72-67ce-4040-840f-35e2320e6440.settings.selectionLabel','\"\"'),('fields.2a1ced72-67ce-4040-840f-35e2320e6440.settings.showSiteMenu','false'),('fields.2a1ced72-67ce-4040-840f-35e2320e6440.settings.source','null'),('fields.2a1ced72-67ce-4040-840f-35e2320e6440.settings.sources.0','\"section:8c3cdb18-3061-4d32-8f77-f0250c021ce9\"'),('fields.2a1ced72-67ce-4040-840f-35e2320e6440.settings.targetSiteId','null'),('fields.2a1ced72-67ce-4040-840f-35e2320e6440.settings.validateRelatedElements','false'),('fields.2a1ced72-67ce-4040-840f-35e2320e6440.settings.viewMode','null'),('fields.2a1ced72-67ce-4040-840f-35e2320e6440.translationKeyFormat','null'),('fields.2a1ced72-67ce-4040-840f-35e2320e6440.translationMethod','\"site\"'),('fields.2a1ced72-67ce-4040-840f-35e2320e6440.type','\"craft\\\\fields\\\\Entries\"'),('fields.2b0da6af-b729-4f32-8f99-6eb8dddc7424.columnSuffix','null'),('fields.2b0da6af-b729-4f32-8f99-6eb8dddc7424.contentColumnType','\"text\"'),('fields.2b0da6af-b729-4f32-8f99-6eb8dddc7424.fieldGroup','\"f43e2891-333d-49b3-a9db-3e8569344d15\"'),('fields.2b0da6af-b729-4f32-8f99-6eb8dddc7424.handle','\"challenge\"'),('fields.2b0da6af-b729-4f32-8f99-6eb8dddc7424.instructions','\"\"'),('fields.2b0da6af-b729-4f32-8f99-6eb8dddc7424.name','\"Challenge\"'),('fields.2b0da6af-b729-4f32-8f99-6eb8dddc7424.searchable','false'),('fields.2b0da6af-b729-4f32-8f99-6eb8dddc7424.settings.byteLimit','null'),('fields.2b0da6af-b729-4f32-8f99-6eb8dddc7424.settings.charLimit','null'),('fields.2b0da6af-b729-4f32-8f99-6eb8dddc7424.settings.code','\"\"'),('fields.2b0da6af-b729-4f32-8f99-6eb8dddc7424.settings.columnType','null'),('fields.2b0da6af-b729-4f32-8f99-6eb8dddc7424.settings.initialRows','\"4\"'),('fields.2b0da6af-b729-4f32-8f99-6eb8dddc7424.settings.multiline','\"1\"'),('fields.2b0da6af-b729-4f32-8f99-6eb8dddc7424.settings.placeholder','null'),('fields.2b0da6af-b729-4f32-8f99-6eb8dddc7424.settings.uiMode','\"normal\"'),('fields.2b0da6af-b729-4f32-8f99-6eb8dddc7424.translationKeyFormat','null'),('fields.2b0da6af-b729-4f32-8f99-6eb8dddc7424.translationMethod','\"none\"'),('fields.2b0da6af-b729-4f32-8f99-6eb8dddc7424.type','\"craft\\\\fields\\\\PlainText\"'),('fields.2b13a963-ee44-4811-817d-abb9e3a5833b.columnSuffix','null'),('fields.2b13a963-ee44-4811-817d-abb9e3a5833b.contentColumnType','\"text\"'),('fields.2b13a963-ee44-4811-817d-abb9e3a5833b.fieldGroup','\"949c24d0-491b-49e0-8802-dfed8158b301\"'),('fields.2b13a963-ee44-4811-817d-abb9e3a5833b.handle','\"marketsWeCompeteIn\"'),('fields.2b13a963-ee44-4811-817d-abb9e3a5833b.instructions','\"\"'),('fields.2b13a963-ee44-4811-817d-abb9e3a5833b.name','\"Markets we compete in:\"'),('fields.2b13a963-ee44-4811-817d-abb9e3a5833b.searchable','false'),('fields.2b13a963-ee44-4811-817d-abb9e3a5833b.settings.byteLimit','null'),('fields.2b13a963-ee44-4811-817d-abb9e3a5833b.settings.charLimit','null'),('fields.2b13a963-ee44-4811-817d-abb9e3a5833b.settings.code','\"\"'),('fields.2b13a963-ee44-4811-817d-abb9e3a5833b.settings.columnType','null'),('fields.2b13a963-ee44-4811-817d-abb9e3a5833b.settings.initialRows','\"4\"'),('fields.2b13a963-ee44-4811-817d-abb9e3a5833b.settings.multiline','\"1\"'),('fields.2b13a963-ee44-4811-817d-abb9e3a5833b.settings.placeholder','null'),('fields.2b13a963-ee44-4811-817d-abb9e3a5833b.settings.uiMode','\"normal\"'),('fields.2b13a963-ee44-4811-817d-abb9e3a5833b.translationKeyFormat','null'),('fields.2b13a963-ee44-4811-817d-abb9e3a5833b.translationMethod','\"none\"'),('fields.2b13a963-ee44-4811-817d-abb9e3a5833b.type','\"craft\\\\fields\\\\PlainText\"'),('fields.2e37c678-c8e7-4c06-9e32-bdebf9bc20dd.columnSuffix','\"fmfbjwsp\"'),('fields.2e37c678-c8e7-4c06-9e32-bdebf9bc20dd.contentColumnType','\"datetime\"'),('fields.2e37c678-c8e7-4c06-9e32-bdebf9bc20dd.fieldGroup','\"84d29012-402c-44d3-8599-938ab66e3b97\"'),('fields.2e37c678-c8e7-4c06-9e32-bdebf9bc20dd.handle','\"quoteFinalisedDate\"'),('fields.2e37c678-c8e7-4c06-9e32-bdebf9bc20dd.instructions','\"\"'),('fields.2e37c678-c8e7-4c06-9e32-bdebf9bc20dd.name','\"Quote finalised date\"'),('fields.2e37c678-c8e7-4c06-9e32-bdebf9bc20dd.searchable','true'),('fields.2e37c678-c8e7-4c06-9e32-bdebf9bc20dd.settings.max','null'),('fields.2e37c678-c8e7-4c06-9e32-bdebf9bc20dd.settings.min','null'),('fields.2e37c678-c8e7-4c06-9e32-bdebf9bc20dd.settings.minuteIncrement','\"30\"'),('fields.2e37c678-c8e7-4c06-9e32-bdebf9bc20dd.settings.showDate','true'),('fields.2e37c678-c8e7-4c06-9e32-bdebf9bc20dd.settings.showTime','false'),('fields.2e37c678-c8e7-4c06-9e32-bdebf9bc20dd.settings.showTimeZone','false'),('fields.2e37c678-c8e7-4c06-9e32-bdebf9bc20dd.translationKeyFormat','null'),('fields.2e37c678-c8e7-4c06-9e32-bdebf9bc20dd.translationMethod','\"none\"'),('fields.2e37c678-c8e7-4c06-9e32-bdebf9bc20dd.type','\"craft\\\\fields\\\\Date\"'),('fields.31c9c26c-caa5-4dbe-8878-310224cc8712.columnSuffix','null'),('fields.31c9c26c-caa5-4dbe-8878-310224cc8712.contentColumnType','\"text\"'),('fields.31c9c26c-caa5-4dbe-8878-310224cc8712.fieldGroup','\"949c24d0-491b-49e0-8802-dfed8158b301\"'),('fields.31c9c26c-caa5-4dbe-8878-310224cc8712.handle','\"ourVisualBrandingNeedsTo\"'),('fields.31c9c26c-caa5-4dbe-8878-310224cc8712.instructions','\"\"'),('fields.31c9c26c-caa5-4dbe-8878-310224cc8712.name','\"Our visual branding needs to:\"'),('fields.31c9c26c-caa5-4dbe-8878-310224cc8712.searchable','false'),('fields.31c9c26c-caa5-4dbe-8878-310224cc8712.settings.byteLimit','null'),('fields.31c9c26c-caa5-4dbe-8878-310224cc8712.settings.charLimit','null'),('fields.31c9c26c-caa5-4dbe-8878-310224cc8712.settings.code','\"\"'),('fields.31c9c26c-caa5-4dbe-8878-310224cc8712.settings.columnType','null'),('fields.31c9c26c-caa5-4dbe-8878-310224cc8712.settings.initialRows','\"4\"'),('fields.31c9c26c-caa5-4dbe-8878-310224cc8712.settings.multiline','\"1\"'),('fields.31c9c26c-caa5-4dbe-8878-310224cc8712.settings.placeholder','null'),('fields.31c9c26c-caa5-4dbe-8878-310224cc8712.settings.uiMode','\"normal\"'),('fields.31c9c26c-caa5-4dbe-8878-310224cc8712.translationKeyFormat','null'),('fields.31c9c26c-caa5-4dbe-8878-310224cc8712.translationMethod','\"none\"'),('fields.31c9c26c-caa5-4dbe-8878-310224cc8712.type','\"craft\\\\fields\\\\PlainText\"'),('fields.35aed318-770b-43fa-962d-b399cb414533.columnSuffix','null'),('fields.35aed318-770b-43fa-962d-b399cb414533.contentColumnType','\"text\"'),('fields.35aed318-770b-43fa-962d-b399cb414533.fieldGroup','\"581f3b95-4fdd-4b29-a806-753edb34ee8c\"'),('fields.35aed318-770b-43fa-962d-b399cb414533.handle','\"managementFee\"'),('fields.35aed318-770b-43fa-962d-b399cb414533.instructions','\"\"'),('fields.35aed318-770b-43fa-962d-b399cb414533.name','\"Management fee\"'),('fields.35aed318-770b-43fa-962d-b399cb414533.searchable','false'),('fields.35aed318-770b-43fa-962d-b399cb414533.settings.byteLimit','null'),('fields.35aed318-770b-43fa-962d-b399cb414533.settings.charLimit','null'),('fields.35aed318-770b-43fa-962d-b399cb414533.settings.code','\"\"'),('fields.35aed318-770b-43fa-962d-b399cb414533.settings.columnType','null'),('fields.35aed318-770b-43fa-962d-b399cb414533.settings.initialRows','\"4\"'),('fields.35aed318-770b-43fa-962d-b399cb414533.settings.multiline','\"\"'),('fields.35aed318-770b-43fa-962d-b399cb414533.settings.placeholder','null'),('fields.35aed318-770b-43fa-962d-b399cb414533.settings.uiMode','\"normal\"'),('fields.35aed318-770b-43fa-962d-b399cb414533.translationKeyFormat','null'),('fields.35aed318-770b-43fa-962d-b399cb414533.translationMethod','\"none\"'),('fields.35aed318-770b-43fa-962d-b399cb414533.type','\"craft\\\\fields\\\\PlainText\"'),('fields.38294ab1-63f4-4f92-a2b3-a2b21100f2d6.columnSuffix','\"eyolpzxf\"'),('fields.38294ab1-63f4-4f92-a2b3-a2b21100f2d6.contentColumnType','\"text\"'),('fields.38294ab1-63f4-4f92-a2b3-a2b21100f2d6.fieldGroup','\"34d088ed-ef16-496c-9634-85e5d8581aa0\"'),('fields.38294ab1-63f4-4f92-a2b3-a2b21100f2d6.handle','\"invoiceIdWorkbook\"'),('fields.38294ab1-63f4-4f92-a2b3-a2b21100f2d6.instructions','\"\"'),('fields.38294ab1-63f4-4f92-a2b3-a2b21100f2d6.name','\"Invoice ID (Workbook)\"'),('fields.38294ab1-63f4-4f92-a2b3-a2b21100f2d6.searchable','true'),('fields.38294ab1-63f4-4f92-a2b3-a2b21100f2d6.settings.byteLimit','null'),('fields.38294ab1-63f4-4f92-a2b3-a2b21100f2d6.settings.charLimit','null'),('fields.38294ab1-63f4-4f92-a2b3-a2b21100f2d6.settings.code','\"\"'),('fields.38294ab1-63f4-4f92-a2b3-a2b21100f2d6.settings.columnType','null'),('fields.38294ab1-63f4-4f92-a2b3-a2b21100f2d6.settings.initialRows','\"4\"'),('fields.38294ab1-63f4-4f92-a2b3-a2b21100f2d6.settings.multiline','\"\"'),('fields.38294ab1-63f4-4f92-a2b3-a2b21100f2d6.settings.placeholder','null'),('fields.38294ab1-63f4-4f92-a2b3-a2b21100f2d6.settings.uiMode','\"normal\"'),('fields.38294ab1-63f4-4f92-a2b3-a2b21100f2d6.translationKeyFormat','null'),('fields.38294ab1-63f4-4f92-a2b3-a2b21100f2d6.translationMethod','\"none\"'),('fields.38294ab1-63f4-4f92-a2b3-a2b21100f2d6.type','\"craft\\\\fields\\\\PlainText\"'),('fields.38b64a4b-dfbd-4f5b-a1a7-a5e1d5dc6d5c.columnSuffix','null'),('fields.38b64a4b-dfbd-4f5b-a1a7-a5e1d5dc6d5c.contentColumnType','\"text\"'),('fields.38b64a4b-dfbd-4f5b-a1a7-a5e1d5dc6d5c.fieldGroup','\"949c24d0-491b-49e0-8802-dfed8158b301\"'),('fields.38b64a4b-dfbd-4f5b-a1a7-a5e1d5dc6d5c.handle','\"ourPast\"'),('fields.38b64a4b-dfbd-4f5b-a1a7-a5e1d5dc6d5c.instructions','\"\"'),('fields.38b64a4b-dfbd-4f5b-a1a7-a5e1d5dc6d5c.name','\"Our past:\"'),('fields.38b64a4b-dfbd-4f5b-a1a7-a5e1d5dc6d5c.searchable','false'),('fields.38b64a4b-dfbd-4f5b-a1a7-a5e1d5dc6d5c.settings.byteLimit','null'),('fields.38b64a4b-dfbd-4f5b-a1a7-a5e1d5dc6d5c.settings.charLimit','null'),('fields.38b64a4b-dfbd-4f5b-a1a7-a5e1d5dc6d5c.settings.code','\"\"'),('fields.38b64a4b-dfbd-4f5b-a1a7-a5e1d5dc6d5c.settings.columnType','null'),('fields.38b64a4b-dfbd-4f5b-a1a7-a5e1d5dc6d5c.settings.initialRows','\"4\"'),('fields.38b64a4b-dfbd-4f5b-a1a7-a5e1d5dc6d5c.settings.multiline','\"1\"'),('fields.38b64a4b-dfbd-4f5b-a1a7-a5e1d5dc6d5c.settings.placeholder','null'),('fields.38b64a4b-dfbd-4f5b-a1a7-a5e1d5dc6d5c.settings.uiMode','\"normal\"'),('fields.38b64a4b-dfbd-4f5b-a1a7-a5e1d5dc6d5c.translationKeyFormat','null'),('fields.38b64a4b-dfbd-4f5b-a1a7-a5e1d5dc6d5c.translationMethod','\"none\"'),('fields.38b64a4b-dfbd-4f5b-a1a7-a5e1d5dc6d5c.type','\"craft\\\\fields\\\\PlainText\"'),('fields.39b06f94-8ee0-4222-8a17-b527852aec1b.columnSuffix','null'),('fields.39b06f94-8ee0-4222-8a17-b527852aec1b.contentColumnType','\"string\"'),('fields.39b06f94-8ee0-4222-8a17-b527852aec1b.fieldGroup','\"a93becfb-6496-4b2f-93d5-cf2691ada3d7\"'),('fields.39b06f94-8ee0-4222-8a17-b527852aec1b.handle','\"videos\"'),('fields.39b06f94-8ee0-4222-8a17-b527852aec1b.instructions','\"\"'),('fields.39b06f94-8ee0-4222-8a17-b527852aec1b.name','\"Videos\"'),('fields.39b06f94-8ee0-4222-8a17-b527852aec1b.searchable','false'),('fields.39b06f94-8ee0-4222-8a17-b527852aec1b.settings.contentTable','\"{{%matrixcontent_videos}}\"'),('fields.39b06f94-8ee0-4222-8a17-b527852aec1b.settings.maxBlocks','\"\"'),('fields.39b06f94-8ee0-4222-8a17-b527852aec1b.settings.minBlocks','\"\"'),('fields.39b06f94-8ee0-4222-8a17-b527852aec1b.settings.propagationKeyFormat','null'),('fields.39b06f94-8ee0-4222-8a17-b527852aec1b.settings.propagationMethod','\"all\"'),('fields.39b06f94-8ee0-4222-8a17-b527852aec1b.translationKeyFormat','null'),('fields.39b06f94-8ee0-4222-8a17-b527852aec1b.translationMethod','\"site\"'),('fields.39b06f94-8ee0-4222-8a17-b527852aec1b.type','\"craft\\\\fields\\\\Matrix\"'),('fields.3c72aff9-f829-44b4-9d47-b4c571d6607e.columnSuffix','\"krjdawju\"'),('fields.3c72aff9-f829-44b4-9d47-b4c571d6607e.contentColumnType','\"text\"'),('fields.3c72aff9-f829-44b4-9d47-b4c571d6607e.fieldGroup','\"d73b1e0a-7e53-4ebb-b0e7-af18eb450e07\"'),('fields.3c72aff9-f829-44b4-9d47-b4c571d6607e.handle','\"calloutText\"'),('fields.3c72aff9-f829-44b4-9d47-b4c571d6607e.instructions','\"\"'),('fields.3c72aff9-f829-44b4-9d47-b4c571d6607e.name','\"Callout text\"'),('fields.3c72aff9-f829-44b4-9d47-b4c571d6607e.searchable','false'),('fields.3c72aff9-f829-44b4-9d47-b4c571d6607e.settings.byteLimit','null'),('fields.3c72aff9-f829-44b4-9d47-b4c571d6607e.settings.charLimit','null'),('fields.3c72aff9-f829-44b4-9d47-b4c571d6607e.settings.code','\"\"'),('fields.3c72aff9-f829-44b4-9d47-b4c571d6607e.settings.columnType','null'),('fields.3c72aff9-f829-44b4-9d47-b4c571d6607e.settings.initialRows','\"4\"'),('fields.3c72aff9-f829-44b4-9d47-b4c571d6607e.settings.multiline','\"1\"'),('fields.3c72aff9-f829-44b4-9d47-b4c571d6607e.settings.placeholder','null'),('fields.3c72aff9-f829-44b4-9d47-b4c571d6607e.settings.uiMode','\"normal\"'),('fields.3c72aff9-f829-44b4-9d47-b4c571d6607e.translationKeyFormat','null'),('fields.3c72aff9-f829-44b4-9d47-b4c571d6607e.translationMethod','\"none\"'),('fields.3c72aff9-f829-44b4-9d47-b4c571d6607e.type','\"craft\\\\fields\\\\PlainText\"'),('fields.40ae3e60-3464-41d0-bb64-32671fc7f5e9.columnSuffix','null'),('fields.40ae3e60-3464-41d0-bb64-32671fc7f5e9.contentColumnType','\"string\"'),('fields.40ae3e60-3464-41d0-bb64-32671fc7f5e9.fieldGroup','\"2b60406c-5779-47b4-bfe7-7fbc8096df95\"'),('fields.40ae3e60-3464-41d0-bb64-32671fc7f5e9.handle','\"company\"'),('fields.40ae3e60-3464-41d0-bb64-32671fc7f5e9.instructions','\"\"'),('fields.40ae3e60-3464-41d0-bb64-32671fc7f5e9.name','\"Company\"'),('fields.40ae3e60-3464-41d0-bb64-32671fc7f5e9.searchable','false'),('fields.40ae3e60-3464-41d0-bb64-32671fc7f5e9.settings.allowLimit','false'),('fields.40ae3e60-3464-41d0-bb64-32671fc7f5e9.settings.allowMultipleSources','false'),('fields.40ae3e60-3464-41d0-bb64-32671fc7f5e9.settings.allowSelfRelations','false'),('fields.40ae3e60-3464-41d0-bb64-32671fc7f5e9.settings.branchLimit','\"1\"'),('fields.40ae3e60-3464-41d0-bb64-32671fc7f5e9.settings.limit','null'),('fields.40ae3e60-3464-41d0-bb64-32671fc7f5e9.settings.localizeRelations','false'),('fields.40ae3e60-3464-41d0-bb64-32671fc7f5e9.settings.selectionLabel','\"Add a company\"'),('fields.40ae3e60-3464-41d0-bb64-32671fc7f5e9.settings.showSiteMenu','false'),('fields.40ae3e60-3464-41d0-bb64-32671fc7f5e9.settings.source','\"group:069a7d0a-be68-4833-9385-e2804d215d07\"'),('fields.40ae3e60-3464-41d0-bb64-32671fc7f5e9.settings.sources','\"*\"'),('fields.40ae3e60-3464-41d0-bb64-32671fc7f5e9.settings.targetSiteId','null'),('fields.40ae3e60-3464-41d0-bb64-32671fc7f5e9.settings.validateRelatedElements','false'),('fields.40ae3e60-3464-41d0-bb64-32671fc7f5e9.settings.viewMode','null'),('fields.40ae3e60-3464-41d0-bb64-32671fc7f5e9.translationKeyFormat','null'),('fields.40ae3e60-3464-41d0-bb64-32671fc7f5e9.translationMethod','\"site\"'),('fields.40ae3e60-3464-41d0-bb64-32671fc7f5e9.type','\"craft\\\\fields\\\\Categories\"'),('fields.40e3cd37-08cd-446a-9032-b0b3087d2fb9.columnSuffix','null'),('fields.40e3cd37-08cd-446a-9032-b0b3087d2fb9.contentColumnType','\"text\"'),('fields.40e3cd37-08cd-446a-9032-b0b3087d2fb9.fieldGroup','\"949c24d0-491b-49e0-8802-dfed8158b301\"'),('fields.40e3cd37-08cd-446a-9032-b0b3087d2fb9.handle','\"existingMaterialsInclude\"'),('fields.40e3cd37-08cd-446a-9032-b0b3087d2fb9.instructions','\"\"'),('fields.40e3cd37-08cd-446a-9032-b0b3087d2fb9.name','\"Existing materials include:\"'),('fields.40e3cd37-08cd-446a-9032-b0b3087d2fb9.searchable','false'),('fields.40e3cd37-08cd-446a-9032-b0b3087d2fb9.settings.byteLimit','null'),('fields.40e3cd37-08cd-446a-9032-b0b3087d2fb9.settings.charLimit','null'),('fields.40e3cd37-08cd-446a-9032-b0b3087d2fb9.settings.code','\"\"'),('fields.40e3cd37-08cd-446a-9032-b0b3087d2fb9.settings.columnType','null'),('fields.40e3cd37-08cd-446a-9032-b0b3087d2fb9.settings.initialRows','\"4\"'),('fields.40e3cd37-08cd-446a-9032-b0b3087d2fb9.settings.multiline','\"1\"'),('fields.40e3cd37-08cd-446a-9032-b0b3087d2fb9.settings.placeholder','null'),('fields.40e3cd37-08cd-446a-9032-b0b3087d2fb9.settings.uiMode','\"normal\"'),('fields.40e3cd37-08cd-446a-9032-b0b3087d2fb9.translationKeyFormat','null'),('fields.40e3cd37-08cd-446a-9032-b0b3087d2fb9.translationMethod','\"none\"'),('fields.40e3cd37-08cd-446a-9032-b0b3087d2fb9.type','\"craft\\\\fields\\\\PlainText\"'),('fields.415f2296-3b63-48a1-b5a2-8eb1154b94dd.columnSuffix','\"xomkrqll\"'),('fields.415f2296-3b63-48a1-b5a2-8eb1154b94dd.contentColumnType','\"text\"'),('fields.415f2296-3b63-48a1-b5a2-8eb1154b94dd.fieldGroup','\"34d088ed-ef16-496c-9634-85e5d8581aa0\"'),('fields.415f2296-3b63-48a1-b5a2-8eb1154b94dd.handle','\"invoiceTotal\"'),('fields.415f2296-3b63-48a1-b5a2-8eb1154b94dd.instructions','\"\"'),('fields.415f2296-3b63-48a1-b5a2-8eb1154b94dd.name','\"Invoice total\"'),('fields.415f2296-3b63-48a1-b5a2-8eb1154b94dd.searchable','false'),('fields.415f2296-3b63-48a1-b5a2-8eb1154b94dd.settings.byteLimit','null'),('fields.415f2296-3b63-48a1-b5a2-8eb1154b94dd.settings.charLimit','null'),('fields.415f2296-3b63-48a1-b5a2-8eb1154b94dd.settings.code','\"\"'),('fields.415f2296-3b63-48a1-b5a2-8eb1154b94dd.settings.columnType','null'),('fields.415f2296-3b63-48a1-b5a2-8eb1154b94dd.settings.initialRows','\"4\"'),('fields.415f2296-3b63-48a1-b5a2-8eb1154b94dd.settings.multiline','\"\"'),('fields.415f2296-3b63-48a1-b5a2-8eb1154b94dd.settings.placeholder','null'),('fields.415f2296-3b63-48a1-b5a2-8eb1154b94dd.settings.uiMode','\"normal\"'),('fields.415f2296-3b63-48a1-b5a2-8eb1154b94dd.translationKeyFormat','null'),('fields.415f2296-3b63-48a1-b5a2-8eb1154b94dd.translationMethod','\"none\"'),('fields.415f2296-3b63-48a1-b5a2-8eb1154b94dd.type','\"craft\\\\fields\\\\PlainText\"'),('fields.4233d145-1d79-49a5-931e-effdeec7d786.columnSuffix','null'),('fields.4233d145-1d79-49a5-931e-effdeec7d786.contentColumnType','\"text\"'),('fields.4233d145-1d79-49a5-931e-effdeec7d786.fieldGroup','\"f43e2891-333d-49b3-a9db-3e8569344d15\"'),('fields.4233d145-1d79-49a5-931e-effdeec7d786.handle','\"introduction\"'),('fields.4233d145-1d79-49a5-931e-effdeec7d786.instructions','\"\"'),('fields.4233d145-1d79-49a5-931e-effdeec7d786.name','\"Introduction\"'),('fields.4233d145-1d79-49a5-931e-effdeec7d786.searchable','false'),('fields.4233d145-1d79-49a5-931e-effdeec7d786.settings.byteLimit','null'),('fields.4233d145-1d79-49a5-931e-effdeec7d786.settings.charLimit','null'),('fields.4233d145-1d79-49a5-931e-effdeec7d786.settings.code','\"\"'),('fields.4233d145-1d79-49a5-931e-effdeec7d786.settings.columnType','null'),('fields.4233d145-1d79-49a5-931e-effdeec7d786.settings.initialRows','\"4\"'),('fields.4233d145-1d79-49a5-931e-effdeec7d786.settings.multiline','\"1\"'),('fields.4233d145-1d79-49a5-931e-effdeec7d786.settings.placeholder','null'),('fields.4233d145-1d79-49a5-931e-effdeec7d786.settings.uiMode','\"normal\"'),('fields.4233d145-1d79-49a5-931e-effdeec7d786.translationKeyFormat','null'),('fields.4233d145-1d79-49a5-931e-effdeec7d786.translationMethod','\"none\"'),('fields.4233d145-1d79-49a5-931e-effdeec7d786.type','\"craft\\\\fields\\\\PlainText\"'),('fields.42f55576-0f06-49ff-bc18-627c979de526.columnSuffix','\"leeelags\"'),('fields.42f55576-0f06-49ff-bc18-627c979de526.contentColumnType','\"text\"'),('fields.42f55576-0f06-49ff-bc18-627c979de526.fieldGroup','\"a401651e-3e05-4a6d-adf0-8019688b630a\"'),('fields.42f55576-0f06-49ff-bc18-627c979de526.handle','\"seoImageDescription\"'),('fields.42f55576-0f06-49ff-bc18-627c979de526.instructions','\"\"'),('fields.42f55576-0f06-49ff-bc18-627c979de526.name','\"SEO Image description\"'),('fields.42f55576-0f06-49ff-bc18-627c979de526.searchable','false'),('fields.42f55576-0f06-49ff-bc18-627c979de526.settings.byteLimit','null'),('fields.42f55576-0f06-49ff-bc18-627c979de526.settings.charLimit','null'),('fields.42f55576-0f06-49ff-bc18-627c979de526.settings.code','\"\"'),('fields.42f55576-0f06-49ff-bc18-627c979de526.settings.columnType','null'),('fields.42f55576-0f06-49ff-bc18-627c979de526.settings.initialRows','\"4\"'),('fields.42f55576-0f06-49ff-bc18-627c979de526.settings.multiline','\"\"'),('fields.42f55576-0f06-49ff-bc18-627c979de526.settings.placeholder','null'),('fields.42f55576-0f06-49ff-bc18-627c979de526.settings.uiMode','\"normal\"'),('fields.42f55576-0f06-49ff-bc18-627c979de526.translationKeyFormat','null'),('fields.42f55576-0f06-49ff-bc18-627c979de526.translationMethod','\"none\"'),('fields.42f55576-0f06-49ff-bc18-627c979de526.type','\"craft\\\\fields\\\\PlainText\"'),('fields.4772b900-f086-421b-9298-9380f296a971.columnSuffix','\"rctoxzik\"'),('fields.4772b900-f086-421b-9298-9380f296a971.contentColumnType','\"boolean\"'),('fields.4772b900-f086-421b-9298-9380f296a971.fieldGroup','\"f43e2891-333d-49b3-a9db-3e8569344d15\"'),('fields.4772b900-f086-421b-9298-9380f296a971.handle','\"featuredWork\"'),('fields.4772b900-f086-421b-9298-9380f296a971.instructions','\"\"'),('fields.4772b900-f086-421b-9298-9380f296a971.name','\"Featured work\"'),('fields.4772b900-f086-421b-9298-9380f296a971.searchable','false'),('fields.4772b900-f086-421b-9298-9380f296a971.settings.default','false'),('fields.4772b900-f086-421b-9298-9380f296a971.settings.offLabel','null'),('fields.4772b900-f086-421b-9298-9380f296a971.settings.onLabel','null'),('fields.4772b900-f086-421b-9298-9380f296a971.translationKeyFormat','null'),('fields.4772b900-f086-421b-9298-9380f296a971.translationMethod','\"none\"'),('fields.4772b900-f086-421b-9298-9380f296a971.type','\"craft\\\\fields\\\\Lightswitch\"'),('fields.4c3b5ed6-52bc-439a-8a01-77b49f19abc9.columnSuffix','null'),('fields.4c3b5ed6-52bc-439a-8a01-77b49f19abc9.contentColumnType','\"text\"'),('fields.4c3b5ed6-52bc-439a-8a01-77b49f19abc9.fieldGroup','\"949c24d0-491b-49e0-8802-dfed8158b301\"'),('fields.4c3b5ed6-52bc-439a-8a01-77b49f19abc9.handle','\"ourFuture\"'),('fields.4c3b5ed6-52bc-439a-8a01-77b49f19abc9.instructions','\"\"'),('fields.4c3b5ed6-52bc-439a-8a01-77b49f19abc9.name','\"Our future:\"'),('fields.4c3b5ed6-52bc-439a-8a01-77b49f19abc9.searchable','false'),('fields.4c3b5ed6-52bc-439a-8a01-77b49f19abc9.settings.byteLimit','null'),('fields.4c3b5ed6-52bc-439a-8a01-77b49f19abc9.settings.charLimit','null'),('fields.4c3b5ed6-52bc-439a-8a01-77b49f19abc9.settings.code','\"\"'),('fields.4c3b5ed6-52bc-439a-8a01-77b49f19abc9.settings.columnType','null'),('fields.4c3b5ed6-52bc-439a-8a01-77b49f19abc9.settings.initialRows','\"4\"'),('fields.4c3b5ed6-52bc-439a-8a01-77b49f19abc9.settings.multiline','\"1\"'),('fields.4c3b5ed6-52bc-439a-8a01-77b49f19abc9.settings.placeholder','null'),('fields.4c3b5ed6-52bc-439a-8a01-77b49f19abc9.settings.uiMode','\"normal\"'),('fields.4c3b5ed6-52bc-439a-8a01-77b49f19abc9.translationKeyFormat','null'),('fields.4c3b5ed6-52bc-439a-8a01-77b49f19abc9.translationMethod','\"none\"'),('fields.4c3b5ed6-52bc-439a-8a01-77b49f19abc9.type','\"craft\\\\fields\\\\PlainText\"'),('fields.4dbe6d3b-ba49-4a8d-a5c3-e83eebb3c207.columnSuffix','null'),('fields.4dbe6d3b-ba49-4a8d-a5c3-e83eebb3c207.contentColumnType','\"string\"'),('fields.4dbe6d3b-ba49-4a8d-a5c3-e83eebb3c207.fieldGroup','\"c38e2159-46dc-46e1-bc98-42bfb5da312f\"'),('fields.4dbe6d3b-ba49-4a8d-a5c3-e83eebb3c207.handle','\"resourceCategories\"'),('fields.4dbe6d3b-ba49-4a8d-a5c3-e83eebb3c207.instructions','\"\"'),('fields.4dbe6d3b-ba49-4a8d-a5c3-e83eebb3c207.name','\"Resource categories\"'),('fields.4dbe6d3b-ba49-4a8d-a5c3-e83eebb3c207.searchable','false'),('fields.4dbe6d3b-ba49-4a8d-a5c3-e83eebb3c207.settings.allowLimit','false'),('fields.4dbe6d3b-ba49-4a8d-a5c3-e83eebb3c207.settings.allowMultipleSources','false'),('fields.4dbe6d3b-ba49-4a8d-a5c3-e83eebb3c207.settings.allowSelfRelations','false'),('fields.4dbe6d3b-ba49-4a8d-a5c3-e83eebb3c207.settings.branchLimit','\"\"'),('fields.4dbe6d3b-ba49-4a8d-a5c3-e83eebb3c207.settings.limit','null'),('fields.4dbe6d3b-ba49-4a8d-a5c3-e83eebb3c207.settings.localizeRelations','false'),('fields.4dbe6d3b-ba49-4a8d-a5c3-e83eebb3c207.settings.selectionLabel','\"\"'),('fields.4dbe6d3b-ba49-4a8d-a5c3-e83eebb3c207.settings.showSiteMenu','false'),('fields.4dbe6d3b-ba49-4a8d-a5c3-e83eebb3c207.settings.source','\"group:1bc6714f-5786-433d-b7dd-879fbc8767b7\"'),('fields.4dbe6d3b-ba49-4a8d-a5c3-e83eebb3c207.settings.sources','\"*\"'),('fields.4dbe6d3b-ba49-4a8d-a5c3-e83eebb3c207.settings.targetSiteId','null'),('fields.4dbe6d3b-ba49-4a8d-a5c3-e83eebb3c207.settings.validateRelatedElements','false'),('fields.4dbe6d3b-ba49-4a8d-a5c3-e83eebb3c207.settings.viewMode','null'),('fields.4dbe6d3b-ba49-4a8d-a5c3-e83eebb3c207.translationKeyFormat','null'),('fields.4dbe6d3b-ba49-4a8d-a5c3-e83eebb3c207.translationMethod','\"site\"'),('fields.4dbe6d3b-ba49-4a8d-a5c3-e83eebb3c207.type','\"craft\\\\fields\\\\Categories\"'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.columnSuffix','null'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.contentColumnType','\"string\"'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.fieldGroup','\"a93becfb-6496-4b2f-93d5-cf2691ada3d7\"'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.handle','\"backgroundColour\"'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.instructions','\"\"'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.name','\"Background colour\"'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.searchable','false'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.settings.optgroups','true'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.settings.options.0.__assoc__.0.0','\"label\"'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.settings.options.0.__assoc__.0.1','\"White\"'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.settings.options.0.__assoc__.1.0','\"value\"'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.settings.options.0.__assoc__.1.1','\"bg-white\"'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.settings.options.0.__assoc__.2.0','\"default\"'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.settings.options.0.__assoc__.2.1','\"1\"'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.settings.options.1.__assoc__.0.0','\"label\"'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.settings.options.1.__assoc__.0.1','\"Red\"'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.settings.options.1.__assoc__.1.0','\"value\"'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.settings.options.1.__assoc__.1.1','\"bg-red\"'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.settings.options.1.__assoc__.2.0','\"default\"'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.settings.options.1.__assoc__.2.1','\"\"'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.settings.options.2.__assoc__.0.0','\"label\"'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.settings.options.2.__assoc__.0.1','\"Black\"'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.settings.options.2.__assoc__.1.0','\"value\"'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.settings.options.2.__assoc__.1.1','\"bg-black\"'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.settings.options.2.__assoc__.2.0','\"default\"'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.settings.options.2.__assoc__.2.1','\"\"'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.settings.options.3.__assoc__.0.0','\"label\"'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.settings.options.3.__assoc__.0.1','\"Green\"'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.settings.options.3.__assoc__.1.0','\"value\"'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.settings.options.3.__assoc__.1.1','\"bg-green\"'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.settings.options.3.__assoc__.2.0','\"default\"'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.settings.options.3.__assoc__.2.1','\"\"'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.translationKeyFormat','null'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.translationMethod','\"none\"'),('fields.53022aef-ff21-4e7f-970a-cb210544fb32.type','\"craft\\\\fields\\\\Dropdown\"'),('fields.543fd936-b820-4ae9-93f7-e0577abe2fab.columnSuffix','\"ywurqquw\"'),('fields.543fd936-b820-4ae9-93f7-e0577abe2fab.contentColumnType','\"text\"'),('fields.543fd936-b820-4ae9-93f7-e0577abe2fab.fieldGroup','\"a401651e-3e05-4a6d-adf0-8019688b630a\"'),('fields.543fd936-b820-4ae9-93f7-e0577abe2fab.handle','\"seoKeywords\"'),('fields.543fd936-b820-4ae9-93f7-e0577abe2fab.instructions','\"\"'),('fields.543fd936-b820-4ae9-93f7-e0577abe2fab.name','\"SEO Keywords\"'),('fields.543fd936-b820-4ae9-93f7-e0577abe2fab.searchable','false'),('fields.543fd936-b820-4ae9-93f7-e0577abe2fab.settings.byteLimit','null'),('fields.543fd936-b820-4ae9-93f7-e0577abe2fab.settings.charLimit','null'),('fields.543fd936-b820-4ae9-93f7-e0577abe2fab.settings.code','\"\"'),('fields.543fd936-b820-4ae9-93f7-e0577abe2fab.settings.columnType','null'),('fields.543fd936-b820-4ae9-93f7-e0577abe2fab.settings.initialRows','\"4\"'),('fields.543fd936-b820-4ae9-93f7-e0577abe2fab.settings.multiline','\"\"'),('fields.543fd936-b820-4ae9-93f7-e0577abe2fab.settings.placeholder','null'),('fields.543fd936-b820-4ae9-93f7-e0577abe2fab.settings.uiMode','\"normal\"'),('fields.543fd936-b820-4ae9-93f7-e0577abe2fab.translationKeyFormat','null'),('fields.543fd936-b820-4ae9-93f7-e0577abe2fab.translationMethod','\"none\"'),('fields.543fd936-b820-4ae9-93f7-e0577abe2fab.type','\"craft\\\\fields\\\\PlainText\"'),('fields.58300ceb-06bc-4d88-bb83-e9e90cbda3cd.columnSuffix','null'),('fields.58300ceb-06bc-4d88-bb83-e9e90cbda3cd.contentColumnType','\"text\"'),('fields.58300ceb-06bc-4d88-bb83-e9e90cbda3cd.fieldGroup','\"949c24d0-491b-49e0-8802-dfed8158b301\"'),('fields.58300ceb-06bc-4d88-bb83-e9e90cbda3cd.handle','\"yourBrandIs\"'),('fields.58300ceb-06bc-4d88-bb83-e9e90cbda3cd.instructions','\"\"'),('fields.58300ceb-06bc-4d88-bb83-e9e90cbda3cd.name','\"Your brand is:\"'),('fields.58300ceb-06bc-4d88-bb83-e9e90cbda3cd.searchable','false'),('fields.58300ceb-06bc-4d88-bb83-e9e90cbda3cd.settings.byteLimit','null'),('fields.58300ceb-06bc-4d88-bb83-e9e90cbda3cd.settings.charLimit','null'),('fields.58300ceb-06bc-4d88-bb83-e9e90cbda3cd.settings.code','\"\"'),('fields.58300ceb-06bc-4d88-bb83-e9e90cbda3cd.settings.columnType','null'),('fields.58300ceb-06bc-4d88-bb83-e9e90cbda3cd.settings.initialRows','\"4\"'),('fields.58300ceb-06bc-4d88-bb83-e9e90cbda3cd.settings.multiline','\"1\"'),('fields.58300ceb-06bc-4d88-bb83-e9e90cbda3cd.settings.placeholder','null'),('fields.58300ceb-06bc-4d88-bb83-e9e90cbda3cd.settings.uiMode','\"normal\"'),('fields.58300ceb-06bc-4d88-bb83-e9e90cbda3cd.translationKeyFormat','null'),('fields.58300ceb-06bc-4d88-bb83-e9e90cbda3cd.translationMethod','\"none\"'),('fields.58300ceb-06bc-4d88-bb83-e9e90cbda3cd.type','\"craft\\\\fields\\\\PlainText\"'),('fields.5df89179-62c7-4128-ba15-c49e9690a573.columnSuffix','null'),('fields.5df89179-62c7-4128-ba15-c49e9690a573.contentColumnType','\"string\"'),('fields.5df89179-62c7-4128-ba15-c49e9690a573.fieldGroup','\"c38e2159-46dc-46e1-bc98-42bfb5da312f\"'),('fields.5df89179-62c7-4128-ba15-c49e9690a573.handle','\"serviceCategories\"'),('fields.5df89179-62c7-4128-ba15-c49e9690a573.instructions','\"\"'),('fields.5df89179-62c7-4128-ba15-c49e9690a573.name','\"Service categories\"'),('fields.5df89179-62c7-4128-ba15-c49e9690a573.searchable','false'),('fields.5df89179-62c7-4128-ba15-c49e9690a573.settings.allowLimit','false'),('fields.5df89179-62c7-4128-ba15-c49e9690a573.settings.allowMultipleSources','false'),('fields.5df89179-62c7-4128-ba15-c49e9690a573.settings.allowSelfRelations','false'),('fields.5df89179-62c7-4128-ba15-c49e9690a573.settings.branchLimit','\"\"'),('fields.5df89179-62c7-4128-ba15-c49e9690a573.settings.limit','null'),('fields.5df89179-62c7-4128-ba15-c49e9690a573.settings.localizeRelations','false'),('fields.5df89179-62c7-4128-ba15-c49e9690a573.settings.selectionLabel','\"\"'),('fields.5df89179-62c7-4128-ba15-c49e9690a573.settings.showSiteMenu','false'),('fields.5df89179-62c7-4128-ba15-c49e9690a573.settings.source','\"group:cfd21061-ac1a-4fa4-adba-02a314e45cb2\"'),('fields.5df89179-62c7-4128-ba15-c49e9690a573.settings.sources','\"*\"'),('fields.5df89179-62c7-4128-ba15-c49e9690a573.settings.targetSiteId','null'),('fields.5df89179-62c7-4128-ba15-c49e9690a573.settings.validateRelatedElements','false'),('fields.5df89179-62c7-4128-ba15-c49e9690a573.settings.viewMode','null'),('fields.5df89179-62c7-4128-ba15-c49e9690a573.translationKeyFormat','null'),('fields.5df89179-62c7-4128-ba15-c49e9690a573.translationMethod','\"site\"'),('fields.5df89179-62c7-4128-ba15-c49e9690a573.type','\"craft\\\\fields\\\\Categories\"'),('fields.5f5f0671-b681-4818-942e-b5b46842906c.columnSuffix','null'),('fields.5f5f0671-b681-4818-942e-b5b46842906c.contentColumnType','\"string\"'),('fields.5f5f0671-b681-4818-942e-b5b46842906c.fieldGroup','\"c38e2159-46dc-46e1-bc98-42bfb5da312f\"'),('fields.5f5f0671-b681-4818-942e-b5b46842906c.handle','\"sectorCategories\"'),('fields.5f5f0671-b681-4818-942e-b5b46842906c.instructions','\"\"'),('fields.5f5f0671-b681-4818-942e-b5b46842906c.name','\"Sector categories\"'),('fields.5f5f0671-b681-4818-942e-b5b46842906c.searchable','false'),('fields.5f5f0671-b681-4818-942e-b5b46842906c.settings.allowLimit','false'),('fields.5f5f0671-b681-4818-942e-b5b46842906c.settings.allowMultipleSources','false'),('fields.5f5f0671-b681-4818-942e-b5b46842906c.settings.allowSelfRelations','false'),('fields.5f5f0671-b681-4818-942e-b5b46842906c.settings.branchLimit','\"\"'),('fields.5f5f0671-b681-4818-942e-b5b46842906c.settings.limit','null'),('fields.5f5f0671-b681-4818-942e-b5b46842906c.settings.localizeRelations','false'),('fields.5f5f0671-b681-4818-942e-b5b46842906c.settings.selectionLabel','\"Add a sector\"'),('fields.5f5f0671-b681-4818-942e-b5b46842906c.settings.showSiteMenu','false'),('fields.5f5f0671-b681-4818-942e-b5b46842906c.settings.source','\"group:73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba\"'),('fields.5f5f0671-b681-4818-942e-b5b46842906c.settings.sources','\"*\"'),('fields.5f5f0671-b681-4818-942e-b5b46842906c.settings.targetSiteId','null'),('fields.5f5f0671-b681-4818-942e-b5b46842906c.settings.validateRelatedElements','false'),('fields.5f5f0671-b681-4818-942e-b5b46842906c.settings.viewMode','null'),('fields.5f5f0671-b681-4818-942e-b5b46842906c.translationKeyFormat','null'),('fields.5f5f0671-b681-4818-942e-b5b46842906c.translationMethod','\"site\"'),('fields.5f5f0671-b681-4818-942e-b5b46842906c.type','\"craft\\\\fields\\\\Categories\"'),('fields.60ebe24e-8f1d-4a91-8758-cb4c9260c9ea.columnSuffix','null'),('fields.60ebe24e-8f1d-4a91-8758-cb4c9260c9ea.contentColumnType','\"text\"'),('fields.60ebe24e-8f1d-4a91-8758-cb4c9260c9ea.fieldGroup','\"581f3b95-4fdd-4b29-a806-753edb34ee8c\"'),('fields.60ebe24e-8f1d-4a91-8758-cb4c9260c9ea.handle','\"miscellaneousIncome\"'),('fields.60ebe24e-8f1d-4a91-8758-cb4c9260c9ea.instructions','\"\"'),('fields.60ebe24e-8f1d-4a91-8758-cb4c9260c9ea.name','\"Miscellaneous income\"'),('fields.60ebe24e-8f1d-4a91-8758-cb4c9260c9ea.searchable','false'),('fields.60ebe24e-8f1d-4a91-8758-cb4c9260c9ea.settings.byteLimit','null'),('fields.60ebe24e-8f1d-4a91-8758-cb4c9260c9ea.settings.charLimit','null'),('fields.60ebe24e-8f1d-4a91-8758-cb4c9260c9ea.settings.code','\"\"'),('fields.60ebe24e-8f1d-4a91-8758-cb4c9260c9ea.settings.columnType','null'),('fields.60ebe24e-8f1d-4a91-8758-cb4c9260c9ea.settings.initialRows','\"4\"'),('fields.60ebe24e-8f1d-4a91-8758-cb4c9260c9ea.settings.multiline','\"\"'),('fields.60ebe24e-8f1d-4a91-8758-cb4c9260c9ea.settings.placeholder','null'),('fields.60ebe24e-8f1d-4a91-8758-cb4c9260c9ea.settings.uiMode','\"normal\"'),('fields.60ebe24e-8f1d-4a91-8758-cb4c9260c9ea.translationKeyFormat','null'),('fields.60ebe24e-8f1d-4a91-8758-cb4c9260c9ea.translationMethod','\"none\"'),('fields.60ebe24e-8f1d-4a91-8758-cb4c9260c9ea.type','\"craft\\\\fields\\\\PlainText\"'),('fields.623b5dfa-9faa-4bff-8ba4-05003825dff6.columnSuffix','null'),('fields.623b5dfa-9faa-4bff-8ba4-05003825dff6.contentColumnType','\"text\"'),('fields.623b5dfa-9faa-4bff-8ba4-05003825dff6.fieldGroup','\"f43e2891-333d-49b3-a9db-3e8569344d15\"'),('fields.623b5dfa-9faa-4bff-8ba4-05003825dff6.handle','\"deliverables\"'),('fields.623b5dfa-9faa-4bff-8ba4-05003825dff6.instructions','\"\"'),('fields.623b5dfa-9faa-4bff-8ba4-05003825dff6.name','\"Deliverables\"'),('fields.623b5dfa-9faa-4bff-8ba4-05003825dff6.searchable','false'),('fields.623b5dfa-9faa-4bff-8ba4-05003825dff6.settings.byteLimit','null'),('fields.623b5dfa-9faa-4bff-8ba4-05003825dff6.settings.charLimit','null'),('fields.623b5dfa-9faa-4bff-8ba4-05003825dff6.settings.code','\"\"'),('fields.623b5dfa-9faa-4bff-8ba4-05003825dff6.settings.columnType','null'),('fields.623b5dfa-9faa-4bff-8ba4-05003825dff6.settings.initialRows','\"4\"'),('fields.623b5dfa-9faa-4bff-8ba4-05003825dff6.settings.multiline','\"1\"'),('fields.623b5dfa-9faa-4bff-8ba4-05003825dff6.settings.placeholder','null'),('fields.623b5dfa-9faa-4bff-8ba4-05003825dff6.settings.uiMode','\"normal\"'),('fields.623b5dfa-9faa-4bff-8ba4-05003825dff6.translationKeyFormat','null'),('fields.623b5dfa-9faa-4bff-8ba4-05003825dff6.translationMethod','\"none\"'),('fields.623b5dfa-9faa-4bff-8ba4-05003825dff6.type','\"craft\\\\fields\\\\PlainText\"'),('fields.626f21db-f3f8-49c9-a099-c2416899ef4c.columnSuffix','\"piacylig\"'),('fields.626f21db-f3f8-49c9-a099-c2416899ef4c.contentColumnType','\"string\"'),('fields.626f21db-f3f8-49c9-a099-c2416899ef4c.fieldGroup','\"2b60406c-5779-47b4-bfe7-7fbc8096df95\"'),('fields.626f21db-f3f8-49c9-a099-c2416899ef4c.handle','\"highlightColour\"'),('fields.626f21db-f3f8-49c9-a099-c2416899ef4c.instructions','\"\"'),('fields.626f21db-f3f8-49c9-a099-c2416899ef4c.name','\"Highlight colour\"'),('fields.626f21db-f3f8-49c9-a099-c2416899ef4c.searchable','false'),('fields.626f21db-f3f8-49c9-a099-c2416899ef4c.settings.optgroups','true'),('fields.626f21db-f3f8-49c9-a099-c2416899ef4c.settings.options.0.__assoc__.0.0','\"label\"'),('fields.626f21db-f3f8-49c9-a099-c2416899ef4c.settings.options.0.__assoc__.0.1','\"Green\"'),('fields.626f21db-f3f8-49c9-a099-c2416899ef4c.settings.options.0.__assoc__.1.0','\"value\"'),('fields.626f21db-f3f8-49c9-a099-c2416899ef4c.settings.options.0.__assoc__.1.1','\"green\"'),('fields.626f21db-f3f8-49c9-a099-c2416899ef4c.settings.options.0.__assoc__.2.0','\"default\"'),('fields.626f21db-f3f8-49c9-a099-c2416899ef4c.settings.options.0.__assoc__.2.1','\"1\"'),('fields.626f21db-f3f8-49c9-a099-c2416899ef4c.settings.options.1.__assoc__.0.0','\"label\"'),('fields.626f21db-f3f8-49c9-a099-c2416899ef4c.settings.options.1.__assoc__.0.1','\"Red\"'),('fields.626f21db-f3f8-49c9-a099-c2416899ef4c.settings.options.1.__assoc__.1.0','\"value\"'),('fields.626f21db-f3f8-49c9-a099-c2416899ef4c.settings.options.1.__assoc__.1.1','\"red\"'),('fields.626f21db-f3f8-49c9-a099-c2416899ef4c.settings.options.1.__assoc__.2.0','\"default\"'),('fields.626f21db-f3f8-49c9-a099-c2416899ef4c.settings.options.1.__assoc__.2.1','\"\"'),('fields.626f21db-f3f8-49c9-a099-c2416899ef4c.settings.options.2.__assoc__.0.0','\"label\"'),('fields.626f21db-f3f8-49c9-a099-c2416899ef4c.settings.options.2.__assoc__.0.1','\"Blue\"'),('fields.626f21db-f3f8-49c9-a099-c2416899ef4c.settings.options.2.__assoc__.1.0','\"value\"'),('fields.626f21db-f3f8-49c9-a099-c2416899ef4c.settings.options.2.__assoc__.1.1','\"blue\"'),('fields.626f21db-f3f8-49c9-a099-c2416899ef4c.settings.options.2.__assoc__.2.0','\"default\"'),('fields.626f21db-f3f8-49c9-a099-c2416899ef4c.settings.options.2.__assoc__.2.1','\"\"'),('fields.626f21db-f3f8-49c9-a099-c2416899ef4c.translationKeyFormat','null'),('fields.626f21db-f3f8-49c9-a099-c2416899ef4c.translationMethod','\"none\"'),('fields.626f21db-f3f8-49c9-a099-c2416899ef4c.type','\"craft\\\\fields\\\\Dropdown\"'),('fields.6408d08c-b0b4-4b5b-823f-c0e500745591.columnSuffix','null'),('fields.6408d08c-b0b4-4b5b-823f-c0e500745591.contentColumnType','\"text\"'),('fields.6408d08c-b0b4-4b5b-823f-c0e500745591.fieldGroup','\"84d29012-402c-44d3-8599-938ab66e3b97\"'),('fields.6408d08c-b0b4-4b5b-823f-c0e500745591.handle','\"jobPriceId\"'),('fields.6408d08c-b0b4-4b5b-823f-c0e500745591.instructions','\"\"'),('fields.6408d08c-b0b4-4b5b-823f-c0e500745591.name','\"Job price id\"'),('fields.6408d08c-b0b4-4b5b-823f-c0e500745591.searchable','true'),('fields.6408d08c-b0b4-4b5b-823f-c0e500745591.settings.byteLimit','null'),('fields.6408d08c-b0b4-4b5b-823f-c0e500745591.settings.charLimit','null'),('fields.6408d08c-b0b4-4b5b-823f-c0e500745591.settings.code','\"\"'),('fields.6408d08c-b0b4-4b5b-823f-c0e500745591.settings.columnType','null'),('fields.6408d08c-b0b4-4b5b-823f-c0e500745591.settings.initialRows','\"4\"'),('fields.6408d08c-b0b4-4b5b-823f-c0e500745591.settings.multiline','\"\"'),('fields.6408d08c-b0b4-4b5b-823f-c0e500745591.settings.placeholder','null'),('fields.6408d08c-b0b4-4b5b-823f-c0e500745591.settings.uiMode','\"normal\"'),('fields.6408d08c-b0b4-4b5b-823f-c0e500745591.translationKeyFormat','null'),('fields.6408d08c-b0b4-4b5b-823f-c0e500745591.translationMethod','\"none\"'),('fields.6408d08c-b0b4-4b5b-823f-c0e500745591.type','\"craft\\\\fields\\\\PlainText\"'),('fields.6566ff95-a04d-47e8-b107-3d2222680acf.columnSuffix','\"tkecsjfi\"'),('fields.6566ff95-a04d-47e8-b107-3d2222680acf.contentColumnType','\"string(255)\"'),('fields.6566ff95-a04d-47e8-b107-3d2222680acf.fieldGroup','\"d73b1e0a-7e53-4ebb-b0e7-af18eb450e07\"'),('fields.6566ff95-a04d-47e8-b107-3d2222680acf.handle','\"calloutButtonUrl\"'),('fields.6566ff95-a04d-47e8-b107-3d2222680acf.instructions','\"\"'),('fields.6566ff95-a04d-47e8-b107-3d2222680acf.name','\"Callout button URL\"'),('fields.6566ff95-a04d-47e8-b107-3d2222680acf.searchable','false'),('fields.6566ff95-a04d-47e8-b107-3d2222680acf.settings.maxLength','\"255\"'),('fields.6566ff95-a04d-47e8-b107-3d2222680acf.settings.placeholder','null'),('fields.6566ff95-a04d-47e8-b107-3d2222680acf.settings.types.0','\"url\"'),('fields.6566ff95-a04d-47e8-b107-3d2222680acf.settings.types.1','\"tel\"'),('fields.6566ff95-a04d-47e8-b107-3d2222680acf.settings.types.2','\"email\"'),('fields.6566ff95-a04d-47e8-b107-3d2222680acf.translationKeyFormat','null'),('fields.6566ff95-a04d-47e8-b107-3d2222680acf.translationMethod','\"none\"'),('fields.6566ff95-a04d-47e8-b107-3d2222680acf.type','\"craft\\\\fields\\\\Url\"'),('fields.67b36868-9b9f-4ac0-b5d2-6585f5876af2.columnSuffix','\"wpcbzido\"'),('fields.67b36868-9b9f-4ac0-b5d2-6585f5876af2.contentColumnType','\"text\"'),('fields.67b36868-9b9f-4ac0-b5d2-6585f5876af2.fieldGroup','\"a93becfb-6496-4b2f-93d5-cf2691ada3d7\"'),('fields.67b36868-9b9f-4ac0-b5d2-6585f5876af2.handle','\"codeOutput\"'),('fields.67b36868-9b9f-4ac0-b5d2-6585f5876af2.instructions','\"\"'),('fields.67b36868-9b9f-4ac0-b5d2-6585f5876af2.name','\"Code output\"'),('fields.67b36868-9b9f-4ac0-b5d2-6585f5876af2.searchable','false'),('fields.67b36868-9b9f-4ac0-b5d2-6585f5876af2.settings.byteLimit','null'),('fields.67b36868-9b9f-4ac0-b5d2-6585f5876af2.settings.charLimit','null'),('fields.67b36868-9b9f-4ac0-b5d2-6585f5876af2.settings.code','\"\"'),('fields.67b36868-9b9f-4ac0-b5d2-6585f5876af2.settings.columnType','null'),('fields.67b36868-9b9f-4ac0-b5d2-6585f5876af2.settings.initialRows','\"4\"'),('fields.67b36868-9b9f-4ac0-b5d2-6585f5876af2.settings.multiline','\"1\"'),('fields.67b36868-9b9f-4ac0-b5d2-6585f5876af2.settings.placeholder','null'),('fields.67b36868-9b9f-4ac0-b5d2-6585f5876af2.settings.uiMode','\"normal\"'),('fields.67b36868-9b9f-4ac0-b5d2-6585f5876af2.translationKeyFormat','null'),('fields.67b36868-9b9f-4ac0-b5d2-6585f5876af2.translationMethod','\"none\"'),('fields.67b36868-9b9f-4ac0-b5d2-6585f5876af2.type','\"craft\\\\fields\\\\PlainText\"'),('fields.687c0549-de46-424f-8727-7b5546c11752.columnSuffix','\"iqinnjkp\"'),('fields.687c0549-de46-424f-8727-7b5546c11752.contentColumnType','\"text\"'),('fields.687c0549-de46-424f-8727-7b5546c11752.fieldGroup','\"a401651e-3e05-4a6d-adf0-8019688b630a\"'),('fields.687c0549-de46-424f-8727-7b5546c11752.handle','\"seoDescription\"'),('fields.687c0549-de46-424f-8727-7b5546c11752.instructions','\"\"'),('fields.687c0549-de46-424f-8727-7b5546c11752.name','\"SEO Description\"'),('fields.687c0549-de46-424f-8727-7b5546c11752.searchable','false'),('fields.687c0549-de46-424f-8727-7b5546c11752.settings.byteLimit','null'),('fields.687c0549-de46-424f-8727-7b5546c11752.settings.charLimit','null'),('fields.687c0549-de46-424f-8727-7b5546c11752.settings.code','\"\"'),('fields.687c0549-de46-424f-8727-7b5546c11752.settings.columnType','null'),('fields.687c0549-de46-424f-8727-7b5546c11752.settings.initialRows','\"4\"'),('fields.687c0549-de46-424f-8727-7b5546c11752.settings.multiline','\"\"'),('fields.687c0549-de46-424f-8727-7b5546c11752.settings.placeholder','null'),('fields.687c0549-de46-424f-8727-7b5546c11752.settings.uiMode','\"normal\"'),('fields.687c0549-de46-424f-8727-7b5546c11752.translationKeyFormat','null'),('fields.687c0549-de46-424f-8727-7b5546c11752.translationMethod','\"none\"'),('fields.687c0549-de46-424f-8727-7b5546c11752.type','\"craft\\\\fields\\\\PlainText\"'),('fields.6e255f23-a127-4ba3-aada-80c15787c41c.columnSuffix','null'),('fields.6e255f23-a127-4ba3-aada-80c15787c41c.contentColumnType','\"text\"'),('fields.6e255f23-a127-4ba3-aada-80c15787c41c.fieldGroup','\"949c24d0-491b-49e0-8802-dfed8158b301\"'),('fields.6e255f23-a127-4ba3-aada-80c15787c41c.handle','\"ourCurrentBrandsAndTheirPlaceInTheOverallArchitecture\"'),('fields.6e255f23-a127-4ba3-aada-80c15787c41c.instructions','\"\"'),('fields.6e255f23-a127-4ba3-aada-80c15787c41c.name','\"Our current brands and their place in the overall architecture:\"'),('fields.6e255f23-a127-4ba3-aada-80c15787c41c.searchable','false'),('fields.6e255f23-a127-4ba3-aada-80c15787c41c.settings.byteLimit','null'),('fields.6e255f23-a127-4ba3-aada-80c15787c41c.settings.charLimit','null'),('fields.6e255f23-a127-4ba3-aada-80c15787c41c.settings.code','\"\"'),('fields.6e255f23-a127-4ba3-aada-80c15787c41c.settings.columnType','null'),('fields.6e255f23-a127-4ba3-aada-80c15787c41c.settings.initialRows','\"4\"'),('fields.6e255f23-a127-4ba3-aada-80c15787c41c.settings.multiline','\"1\"'),('fields.6e255f23-a127-4ba3-aada-80c15787c41c.settings.placeholder','null'),('fields.6e255f23-a127-4ba3-aada-80c15787c41c.settings.uiMode','\"normal\"'),('fields.6e255f23-a127-4ba3-aada-80c15787c41c.translationKeyFormat','null'),('fields.6e255f23-a127-4ba3-aada-80c15787c41c.translationMethod','\"none\"'),('fields.6e255f23-a127-4ba3-aada-80c15787c41c.type','\"craft\\\\fields\\\\PlainText\"'),('fields.747348e3-38bd-461d-b1ff-416c6764f72e.columnSuffix','null'),('fields.747348e3-38bd-461d-b1ff-416c6764f72e.contentColumnType','\"text\"'),('fields.747348e3-38bd-461d-b1ff-416c6764f72e.fieldGroup','\"c38e2159-46dc-46e1-bc98-42bfb5da312f\"'),('fields.747348e3-38bd-461d-b1ff-416c6764f72e.handle','\"heading\"'),('fields.747348e3-38bd-461d-b1ff-416c6764f72e.instructions','\"\"'),('fields.747348e3-38bd-461d-b1ff-416c6764f72e.name','\"Heading\"'),('fields.747348e3-38bd-461d-b1ff-416c6764f72e.searchable','false'),('fields.747348e3-38bd-461d-b1ff-416c6764f72e.settings.byteLimit','null'),('fields.747348e3-38bd-461d-b1ff-416c6764f72e.settings.charLimit','null'),('fields.747348e3-38bd-461d-b1ff-416c6764f72e.settings.code','\"\"'),('fields.747348e3-38bd-461d-b1ff-416c6764f72e.settings.columnType','null'),('fields.747348e3-38bd-461d-b1ff-416c6764f72e.settings.initialRows','\"4\"'),('fields.747348e3-38bd-461d-b1ff-416c6764f72e.settings.multiline','\"\"'),('fields.747348e3-38bd-461d-b1ff-416c6764f72e.settings.placeholder','null'),('fields.747348e3-38bd-461d-b1ff-416c6764f72e.settings.uiMode','\"normal\"'),('fields.747348e3-38bd-461d-b1ff-416c6764f72e.translationKeyFormat','null'),('fields.747348e3-38bd-461d-b1ff-416c6764f72e.translationMethod','\"none\"'),('fields.747348e3-38bd-461d-b1ff-416c6764f72e.type','\"craft\\\\fields\\\\PlainText\"'),('fields.75d393b8-1fa4-4ab6-9034-a9e3ffd1944e.columnSuffix','null'),('fields.75d393b8-1fa4-4ab6-9034-a9e3ffd1944e.contentColumnType','\"string\"'),('fields.75d393b8-1fa4-4ab6-9034-a9e3ffd1944e.fieldGroup','\"84d29012-402c-44d3-8599-938ab66e3b97\"'),('fields.75d393b8-1fa4-4ab6-9034-a9e3ffd1944e.handle','\"job\"'),('fields.75d393b8-1fa4-4ab6-9034-a9e3ffd1944e.instructions','\"\"'),('fields.75d393b8-1fa4-4ab6-9034-a9e3ffd1944e.name','\"Job\"'),('fields.75d393b8-1fa4-4ab6-9034-a9e3ffd1944e.searchable','false'),('fields.75d393b8-1fa4-4ab6-9034-a9e3ffd1944e.settings.singleField','\"193\"'),('fields.75d393b8-1fa4-4ab6-9034-a9e3ffd1944e.settings.source.__assoc__.0.0','\"value\"'),('fields.75d393b8-1fa4-4ab6-9034-a9e3ffd1944e.settings.source.__assoc__.0.1','\"2\"'),('fields.75d393b8-1fa4-4ab6-9034-a9e3ffd1944e.settings.source.__assoc__.1.0','\"type\"'),('fields.75d393b8-1fa4-4ab6-9034-a9e3ffd1944e.settings.source.__assoc__.1.1','\"section\"'),('fields.75d393b8-1fa4-4ab6-9034-a9e3ffd1944e.translationKeyFormat','null'),('fields.75d393b8-1fa4-4ab6-9034-a9e3ffd1944e.translationMethod','\"none\"'),('fields.75d393b8-1fa4-4ab6-9034-a9e3ffd1944e.type','\"Page8\\\\ManyToMany\\\\fields\\\\ManyToManyField\"'),('fields.79eb82a7-865b-4011-9a91-56b285226a2d.columnSuffix','null'),('fields.79eb82a7-865b-4011-9a91-56b285226a2d.contentColumnType','\"text\"'),('fields.79eb82a7-865b-4011-9a91-56b285226a2d.fieldGroup','\"f43e2891-333d-49b3-a9db-3e8569344d15\"'),('fields.79eb82a7-865b-4011-9a91-56b285226a2d.handle','\"story\"'),('fields.79eb82a7-865b-4011-9a91-56b285226a2d.instructions','\"\"'),('fields.79eb82a7-865b-4011-9a91-56b285226a2d.name','\"Story\"'),('fields.79eb82a7-865b-4011-9a91-56b285226a2d.searchable','false'),('fields.79eb82a7-865b-4011-9a91-56b285226a2d.settings.byteLimit','null'),('fields.79eb82a7-865b-4011-9a91-56b285226a2d.settings.charLimit','null'),('fields.79eb82a7-865b-4011-9a91-56b285226a2d.settings.code','\"\"'),('fields.79eb82a7-865b-4011-9a91-56b285226a2d.settings.columnType','null'),('fields.79eb82a7-865b-4011-9a91-56b285226a2d.settings.initialRows','\"4\"'),('fields.79eb82a7-865b-4011-9a91-56b285226a2d.settings.multiline','\"1\"'),('fields.79eb82a7-865b-4011-9a91-56b285226a2d.settings.placeholder','null'),('fields.79eb82a7-865b-4011-9a91-56b285226a2d.settings.uiMode','\"normal\"'),('fields.79eb82a7-865b-4011-9a91-56b285226a2d.translationKeyFormat','null'),('fields.79eb82a7-865b-4011-9a91-56b285226a2d.translationMethod','\"none\"'),('fields.79eb82a7-865b-4011-9a91-56b285226a2d.type','\"craft\\\\fields\\\\PlainText\"'),('fields.7be6fff5-de42-48e7-8e63-20dcdf66967e.columnSuffix','null'),('fields.7be6fff5-de42-48e7-8e63-20dcdf66967e.contentColumnType','\"text\"'),('fields.7be6fff5-de42-48e7-8e63-20dcdf66967e.fieldGroup','\"581f3b95-4fdd-4b29-a806-753edb34ee8c\"'),('fields.7be6fff5-de42-48e7-8e63-20dcdf66967e.handle','\"transferFundsFromNwo\"'),('fields.7be6fff5-de42-48e7-8e63-20dcdf66967e.instructions','\"\"'),('fields.7be6fff5-de42-48e7-8e63-20dcdf66967e.name','\"Transfer funds from NWO\"'),('fields.7be6fff5-de42-48e7-8e63-20dcdf66967e.searchable','false'),('fields.7be6fff5-de42-48e7-8e63-20dcdf66967e.settings.byteLimit','null'),('fields.7be6fff5-de42-48e7-8e63-20dcdf66967e.settings.charLimit','null'),('fields.7be6fff5-de42-48e7-8e63-20dcdf66967e.settings.code','\"\"'),('fields.7be6fff5-de42-48e7-8e63-20dcdf66967e.settings.columnType','null'),('fields.7be6fff5-de42-48e7-8e63-20dcdf66967e.settings.initialRows','\"4\"'),('fields.7be6fff5-de42-48e7-8e63-20dcdf66967e.settings.multiline','\"\"'),('fields.7be6fff5-de42-48e7-8e63-20dcdf66967e.settings.placeholder','null'),('fields.7be6fff5-de42-48e7-8e63-20dcdf66967e.settings.uiMode','\"normal\"'),('fields.7be6fff5-de42-48e7-8e63-20dcdf66967e.translationKeyFormat','null'),('fields.7be6fff5-de42-48e7-8e63-20dcdf66967e.translationMethod','\"none\"'),('fields.7be6fff5-de42-48e7-8e63-20dcdf66967e.type','\"craft\\\\fields\\\\PlainText\"'),('fields.805eaf66-af57-453c-a73e-c4db8393b9eb.columnSuffix','\"yjuoknoj\"'),('fields.805eaf66-af57-453c-a73e-c4db8393b9eb.contentColumnType','\"text\"'),('fields.805eaf66-af57-453c-a73e-c4db8393b9eb.fieldGroup','\"581f3b95-4fdd-4b29-a806-753edb34ee8c\"'),('fields.805eaf66-af57-453c-a73e-c4db8393b9eb.handle','\"monthlyBudget\"'),('fields.805eaf66-af57-453c-a73e-c4db8393b9eb.instructions','\"\"'),('fields.805eaf66-af57-453c-a73e-c4db8393b9eb.name','\"Monthly budget\"'),('fields.805eaf66-af57-453c-a73e-c4db8393b9eb.searchable','false'),('fields.805eaf66-af57-453c-a73e-c4db8393b9eb.settings.byteLimit','null'),('fields.805eaf66-af57-453c-a73e-c4db8393b9eb.settings.charLimit','null'),('fields.805eaf66-af57-453c-a73e-c4db8393b9eb.settings.code','\"\"'),('fields.805eaf66-af57-453c-a73e-c4db8393b9eb.settings.columnType','null'),('fields.805eaf66-af57-453c-a73e-c4db8393b9eb.settings.initialRows','\"4\"'),('fields.805eaf66-af57-453c-a73e-c4db8393b9eb.settings.multiline','\"\"'),('fields.805eaf66-af57-453c-a73e-c4db8393b9eb.settings.placeholder','null'),('fields.805eaf66-af57-453c-a73e-c4db8393b9eb.settings.uiMode','\"normal\"'),('fields.805eaf66-af57-453c-a73e-c4db8393b9eb.translationKeyFormat','null'),('fields.805eaf66-af57-453c-a73e-c4db8393b9eb.translationMethod','\"none\"'),('fields.805eaf66-af57-453c-a73e-c4db8393b9eb.type','\"craft\\\\fields\\\\PlainText\"'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.columnSuffix','null'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.contentColumnType','\"string\"'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.fieldGroup','\"2b60406c-5779-47b4-bfe7-7fbc8096df95\"'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.handle','\"mainPageImage\"'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.instructions','null'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.name','\"Main Page Image\"'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.searchable','false'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.settings.allowedKinds','null'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.settings.allowSelfRelations','false'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.settings.allowSubfolders','false'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.settings.allowUploads','true'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.settings.defaultUploadLocationSource','\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.settings.defaultUploadLocationSubpath','null'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.settings.localizeRelations','false'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.settings.maxRelations','1'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.settings.minRelations','null'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.settings.previewMode','\"full\"'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.settings.restrictedDefaultUploadSubpath','null'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.settings.restrictedLocationSource','\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.settings.restrictedLocationSubpath','null'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.settings.restrictFiles','false'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.settings.restrictLocation','false'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.settings.selectionCondition.__assoc__.0.0','\"elementType\"'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.settings.selectionCondition.__assoc__.0.1','\"craft\\\\elements\\\\Asset\"'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.settings.selectionCondition.__assoc__.1.0','\"fieldContext\"'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.settings.selectionCondition.__assoc__.1.1','\"global\"'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.settings.selectionCondition.__assoc__.2.0','\"class\"'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.settings.selectionCondition.__assoc__.2.1','\"craft\\\\elements\\\\conditions\\\\assets\\\\AssetCondition\"'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.settings.selectionLabel','null'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.settings.showSiteMenu','true'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.settings.showUnpermittedFiles','false'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.settings.showUnpermittedVolumes','false'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.settings.source','null'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.settings.sources','\"*\"'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.settings.targetSiteId','null'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.settings.validateRelatedElements','false'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.settings.viewMode','\"list\"'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.translationKeyFormat','null'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.translationMethod','\"site\"'),('fields.819e9bb3-711d-4ca1-aa03-f00b24f3b68a.type','\"craft\\\\fields\\\\Assets\"'),('fields.84123ace-0f1d-44e9-98cb-e3477880bdf2.columnSuffix','\"bjyckywk\"'),('fields.84123ace-0f1d-44e9-98cb-e3477880bdf2.contentColumnType','\"text\"'),('fields.84123ace-0f1d-44e9-98cb-e3477880bdf2.fieldGroup','\"84d29012-402c-44d3-8599-938ab66e3b97\"'),('fields.84123ace-0f1d-44e9-98cb-e3477880bdf2.handle','\"quoteIdWorkbook\"'),('fields.84123ace-0f1d-44e9-98cb-e3477880bdf2.instructions','\"\"'),('fields.84123ace-0f1d-44e9-98cb-e3477880bdf2.name','\"Quote ID (Workbook)\"'),('fields.84123ace-0f1d-44e9-98cb-e3477880bdf2.searchable','true'),('fields.84123ace-0f1d-44e9-98cb-e3477880bdf2.settings.byteLimit','null'),('fields.84123ace-0f1d-44e9-98cb-e3477880bdf2.settings.charLimit','null'),('fields.84123ace-0f1d-44e9-98cb-e3477880bdf2.settings.code','\"\"'),('fields.84123ace-0f1d-44e9-98cb-e3477880bdf2.settings.columnType','null'),('fields.84123ace-0f1d-44e9-98cb-e3477880bdf2.settings.initialRows','\"4\"'),('fields.84123ace-0f1d-44e9-98cb-e3477880bdf2.settings.multiline','\"\"'),('fields.84123ace-0f1d-44e9-98cb-e3477880bdf2.settings.placeholder','null'),('fields.84123ace-0f1d-44e9-98cb-e3477880bdf2.settings.uiMode','\"normal\"'),('fields.84123ace-0f1d-44e9-98cb-e3477880bdf2.translationKeyFormat','null'),('fields.84123ace-0f1d-44e9-98cb-e3477880bdf2.translationMethod','\"none\"'),('fields.84123ace-0f1d-44e9-98cb-e3477880bdf2.type','\"craft\\\\fields\\\\PlainText\"'),('fields.848da9c8-54d6-4536-ba5a-d88c4e8f06f2.columnSuffix','null'),('fields.848da9c8-54d6-4536-ba5a-d88c4e8f06f2.contentColumnType','\"text\"'),('fields.848da9c8-54d6-4536-ba5a-d88c4e8f06f2.fieldGroup','\"949c24d0-491b-49e0-8802-dfed8158b301\"'),('fields.848da9c8-54d6-4536-ba5a-d88c4e8f06f2.handle','\"toolsWhatCollateralToolsAndApplicationsDoYouHaveNeed\"'),('fields.848da9c8-54d6-4536-ba5a-d88c4e8f06f2.instructions','\"\"'),('fields.848da9c8-54d6-4536-ba5a-d88c4e8f06f2.name','\"Tools â What collateral, tools and applications do you have/need?\"'),('fields.848da9c8-54d6-4536-ba5a-d88c4e8f06f2.searchable','false'),('fields.848da9c8-54d6-4536-ba5a-d88c4e8f06f2.settings.byteLimit','null'),('fields.848da9c8-54d6-4536-ba5a-d88c4e8f06f2.settings.charLimit','null'),('fields.848da9c8-54d6-4536-ba5a-d88c4e8f06f2.settings.code','\"\"'),('fields.848da9c8-54d6-4536-ba5a-d88c4e8f06f2.settings.columnType','null'),('fields.848da9c8-54d6-4536-ba5a-d88c4e8f06f2.settings.initialRows','\"4\"'),('fields.848da9c8-54d6-4536-ba5a-d88c4e8f06f2.settings.multiline','\"1\"'),('fields.848da9c8-54d6-4536-ba5a-d88c4e8f06f2.settings.placeholder','null'),('fields.848da9c8-54d6-4536-ba5a-d88c4e8f06f2.settings.uiMode','\"normal\"'),('fields.848da9c8-54d6-4536-ba5a-d88c4e8f06f2.translationKeyFormat','null'),('fields.848da9c8-54d6-4536-ba5a-d88c4e8f06f2.translationMethod','\"none\"'),('fields.848da9c8-54d6-4536-ba5a-d88c4e8f06f2.type','\"craft\\\\fields\\\\PlainText\"'),('fields.862d1737-5597-46a1-b258-ff7ce4042cd3.columnSuffix','\"tcitknuf\"'),('fields.862d1737-5597-46a1-b258-ff7ce4042cd3.contentColumnType','\"text\"'),('fields.862d1737-5597-46a1-b258-ff7ce4042cd3.fieldGroup','\"d73b1e0a-7e53-4ebb-b0e7-af18eb450e07\"'),('fields.862d1737-5597-46a1-b258-ff7ce4042cd3.handle','\"calloutHeading\"'),('fields.862d1737-5597-46a1-b258-ff7ce4042cd3.instructions','\"\"'),('fields.862d1737-5597-46a1-b258-ff7ce4042cd3.name','\"Callout heading\"'),('fields.862d1737-5597-46a1-b258-ff7ce4042cd3.searchable','false'),('fields.862d1737-5597-46a1-b258-ff7ce4042cd3.settings.byteLimit','null'),('fields.862d1737-5597-46a1-b258-ff7ce4042cd3.settings.charLimit','null'),('fields.862d1737-5597-46a1-b258-ff7ce4042cd3.settings.code','\"\"'),('fields.862d1737-5597-46a1-b258-ff7ce4042cd3.settings.columnType','null'),('fields.862d1737-5597-46a1-b258-ff7ce4042cd3.settings.initialRows','\"4\"'),('fields.862d1737-5597-46a1-b258-ff7ce4042cd3.settings.multiline','\"\"'),('fields.862d1737-5597-46a1-b258-ff7ce4042cd3.settings.placeholder','null'),('fields.862d1737-5597-46a1-b258-ff7ce4042cd3.settings.uiMode','\"normal\"'),('fields.862d1737-5597-46a1-b258-ff7ce4042cd3.translationKeyFormat','null'),('fields.862d1737-5597-46a1-b258-ff7ce4042cd3.translationMethod','\"none\"'),('fields.862d1737-5597-46a1-b258-ff7ce4042cd3.type','\"craft\\\\fields\\\\PlainText\"'),('fields.872244dc-f181-4b82-8df8-20a59d62654c.columnSuffix','null'),('fields.872244dc-f181-4b82-8df8-20a59d62654c.contentColumnType','\"text\"'),('fields.872244dc-f181-4b82-8df8-20a59d62654c.fieldGroup','\"f43e2891-333d-49b3-a9db-3e8569344d15\"'),('fields.872244dc-f181-4b82-8df8-20a59d62654c.handle','\"headline\"'),('fields.872244dc-f181-4b82-8df8-20a59d62654c.instructions','\"\"'),('fields.872244dc-f181-4b82-8df8-20a59d62654c.name','\"Headline\"'),('fields.872244dc-f181-4b82-8df8-20a59d62654c.searchable','false'),('fields.872244dc-f181-4b82-8df8-20a59d62654c.settings.byteLimit','null'),('fields.872244dc-f181-4b82-8df8-20a59d62654c.settings.charLimit','null'),('fields.872244dc-f181-4b82-8df8-20a59d62654c.settings.code','\"\"'),('fields.872244dc-f181-4b82-8df8-20a59d62654c.settings.columnType','null'),('fields.872244dc-f181-4b82-8df8-20a59d62654c.settings.initialRows','\"4\"'),('fields.872244dc-f181-4b82-8df8-20a59d62654c.settings.multiline','\"\"'),('fields.872244dc-f181-4b82-8df8-20a59d62654c.settings.placeholder','null'),('fields.872244dc-f181-4b82-8df8-20a59d62654c.settings.uiMode','\"normal\"'),('fields.872244dc-f181-4b82-8df8-20a59d62654c.translationKeyFormat','null'),('fields.872244dc-f181-4b82-8df8-20a59d62654c.translationMethod','\"none\"'),('fields.872244dc-f181-4b82-8df8-20a59d62654c.type','\"craft\\\\fields\\\\PlainText\"'),('fields.8901092b-9bbb-4611-8248-b4256a21515b.columnSuffix','null'),('fields.8901092b-9bbb-4611-8248-b4256a21515b.contentColumnType','\"text\"'),('fields.8901092b-9bbb-4611-8248-b4256a21515b.fieldGroup','\"581f3b95-4fdd-4b29-a806-753edb34ee8c\"'),('fields.8901092b-9bbb-4611-8248-b4256a21515b.handle','\"ryderStRentalIncome\"'),('fields.8901092b-9bbb-4611-8248-b4256a21515b.instructions','\"\"'),('fields.8901092b-9bbb-4611-8248-b4256a21515b.name','\"Ryder St - Rental income\"'),('fields.8901092b-9bbb-4611-8248-b4256a21515b.searchable','false'),('fields.8901092b-9bbb-4611-8248-b4256a21515b.settings.byteLimit','null'),('fields.8901092b-9bbb-4611-8248-b4256a21515b.settings.charLimit','null'),('fields.8901092b-9bbb-4611-8248-b4256a21515b.settings.code','\"\"'),('fields.8901092b-9bbb-4611-8248-b4256a21515b.settings.columnType','null'),('fields.8901092b-9bbb-4611-8248-b4256a21515b.settings.initialRows','\"4\"'),('fields.8901092b-9bbb-4611-8248-b4256a21515b.settings.multiline','\"\"'),('fields.8901092b-9bbb-4611-8248-b4256a21515b.settings.placeholder','null'),('fields.8901092b-9bbb-4611-8248-b4256a21515b.settings.uiMode','\"normal\"'),('fields.8901092b-9bbb-4611-8248-b4256a21515b.translationKeyFormat','null'),('fields.8901092b-9bbb-4611-8248-b4256a21515b.translationMethod','\"none\"'),('fields.8901092b-9bbb-4611-8248-b4256a21515b.type','\"craft\\\\fields\\\\PlainText\"'),('fields.8d0c05a9-7304-4d7d-8254-106c8e855268.columnSuffix','null'),('fields.8d0c05a9-7304-4d7d-8254-106c8e855268.contentColumnType','\"text\"'),('fields.8d0c05a9-7304-4d7d-8254-106c8e855268.fieldGroup','\"581f3b95-4fdd-4b29-a806-753edb34ee8c\"'),('fields.8d0c05a9-7304-4d7d-8254-106c8e855268.handle','\"totalOtherIncome\"'),('fields.8d0c05a9-7304-4d7d-8254-106c8e855268.instructions','\"\"'),('fields.8d0c05a9-7304-4d7d-8254-106c8e855268.name','\"Total other income\"'),('fields.8d0c05a9-7304-4d7d-8254-106c8e855268.searchable','false'),('fields.8d0c05a9-7304-4d7d-8254-106c8e855268.settings.byteLimit','null'),('fields.8d0c05a9-7304-4d7d-8254-106c8e855268.settings.charLimit','null'),('fields.8d0c05a9-7304-4d7d-8254-106c8e855268.settings.code','\"\"'),('fields.8d0c05a9-7304-4d7d-8254-106c8e855268.settings.columnType','null'),('fields.8d0c05a9-7304-4d7d-8254-106c8e855268.settings.initialRows','\"4\"'),('fields.8d0c05a9-7304-4d7d-8254-106c8e855268.settings.multiline','\"\"'),('fields.8d0c05a9-7304-4d7d-8254-106c8e855268.settings.placeholder','null'),('fields.8d0c05a9-7304-4d7d-8254-106c8e855268.settings.uiMode','\"normal\"'),('fields.8d0c05a9-7304-4d7d-8254-106c8e855268.translationKeyFormat','null'),('fields.8d0c05a9-7304-4d7d-8254-106c8e855268.translationMethod','\"none\"'),('fields.8d0c05a9-7304-4d7d-8254-106c8e855268.type','\"craft\\\\fields\\\\PlainText\"'),('fields.90cf930b-ef6f-426e-8c28-8187ff63ab71.columnSuffix','\"oqogbzio\"'),('fields.90cf930b-ef6f-426e-8c28-8187ff63ab71.contentColumnType','\"text\"'),('fields.90cf930b-ef6f-426e-8c28-8187ff63ab71.fieldGroup','\"4065deaf-bfe6-4913-8ecf-ce7325eb4452\"'),('fields.90cf930b-ef6f-426e-8c28-8187ff63ab71.handle','\"annualRevenueTarget\"'),('fields.90cf930b-ef6f-426e-8c28-8187ff63ab71.instructions','\"\"'),('fields.90cf930b-ef6f-426e-8c28-8187ff63ab71.name','\"Annual revenue target\"'),('fields.90cf930b-ef6f-426e-8c28-8187ff63ab71.searchable','false'),('fields.90cf930b-ef6f-426e-8c28-8187ff63ab71.settings.byteLimit','null'),('fields.90cf930b-ef6f-426e-8c28-8187ff63ab71.settings.charLimit','null'),('fields.90cf930b-ef6f-426e-8c28-8187ff63ab71.settings.code','\"\"'),('fields.90cf930b-ef6f-426e-8c28-8187ff63ab71.settings.columnType','null'),('fields.90cf930b-ef6f-426e-8c28-8187ff63ab71.settings.initialRows','\"4\"'),('fields.90cf930b-ef6f-426e-8c28-8187ff63ab71.settings.multiline','\"\"'),('fields.90cf930b-ef6f-426e-8c28-8187ff63ab71.settings.placeholder','null'),('fields.90cf930b-ef6f-426e-8c28-8187ff63ab71.settings.uiMode','\"normal\"'),('fields.90cf930b-ef6f-426e-8c28-8187ff63ab71.translationKeyFormat','null'),('fields.90cf930b-ef6f-426e-8c28-8187ff63ab71.translationMethod','\"none\"'),('fields.90cf930b-ef6f-426e-8c28-8187ff63ab71.type','\"craft\\\\fields\\\\PlainText\"'),('fields.9256a612-e8fd-49c9-b167-0766caa328ae.columnSuffix','null'),('fields.9256a612-e8fd-49c9-b167-0766caa328ae.contentColumnType','\"string\"'),('fields.9256a612-e8fd-49c9-b167-0766caa328ae.fieldGroup','\"f43e2891-333d-49b3-a9db-3e8569344d15\"'),('fields.9256a612-e8fd-49c9-b167-0766caa328ae.handle','\"deliverableTags\"'),('fields.9256a612-e8fd-49c9-b167-0766caa328ae.instructions','\"\"'),('fields.9256a612-e8fd-49c9-b167-0766caa328ae.name','\"Deliverable tags\"'),('fields.9256a612-e8fd-49c9-b167-0766caa328ae.searchable','false'),('fields.9256a612-e8fd-49c9-b167-0766caa328ae.settings.allowLimit','false'),('fields.9256a612-e8fd-49c9-b167-0766caa328ae.settings.allowMultipleSources','false'),('fields.9256a612-e8fd-49c9-b167-0766caa328ae.settings.allowSelfRelations','false'),('fields.9256a612-e8fd-49c9-b167-0766caa328ae.settings.limit','null'),('fields.9256a612-e8fd-49c9-b167-0766caa328ae.settings.localizeRelations','false'),('fields.9256a612-e8fd-49c9-b167-0766caa328ae.settings.selectionLabel','\"\"'),('fields.9256a612-e8fd-49c9-b167-0766caa328ae.settings.showSiteMenu','false'),('fields.9256a612-e8fd-49c9-b167-0766caa328ae.settings.source','\"taggroup:b4ffdba8-651f-4b6a-930e-be68fb926f28\"'),('fields.9256a612-e8fd-49c9-b167-0766caa328ae.settings.sources','\"*\"'),('fields.9256a612-e8fd-49c9-b167-0766caa328ae.settings.targetSiteId','null'),('fields.9256a612-e8fd-49c9-b167-0766caa328ae.settings.validateRelatedElements','false'),('fields.9256a612-e8fd-49c9-b167-0766caa328ae.settings.viewMode','null'),('fields.9256a612-e8fd-49c9-b167-0766caa328ae.translationKeyFormat','null'),('fields.9256a612-e8fd-49c9-b167-0766caa328ae.translationMethod','\"site\"'),('fields.9256a612-e8fd-49c9-b167-0766caa328ae.type','\"craft\\\\fields\\\\Tags\"'),('fields.92c09e52-b844-43db-a6b2-fd92e20638b7.columnSuffix','null'),('fields.92c09e52-b844-43db-a6b2-fd92e20638b7.contentColumnType','\"string\"'),('fields.92c09e52-b844-43db-a6b2-fd92e20638b7.fieldGroup','\"a93becfb-6496-4b2f-93d5-cf2691ada3d7\"'),('fields.92c09e52-b844-43db-a6b2-fd92e20638b7.handle','\"sectionHeight\"'),('fields.92c09e52-b844-43db-a6b2-fd92e20638b7.instructions','\"\"'),('fields.92c09e52-b844-43db-a6b2-fd92e20638b7.name','\"Section height\"'),('fields.92c09e52-b844-43db-a6b2-fd92e20638b7.searchable','false'),('fields.92c09e52-b844-43db-a6b2-fd92e20638b7.settings.optgroups','true'),('fields.92c09e52-b844-43db-a6b2-fd92e20638b7.settings.options.0.__assoc__.0.0','\"label\"'),('fields.92c09e52-b844-43db-a6b2-fd92e20638b7.settings.options.0.__assoc__.0.1','\"Auto\"'),('fields.92c09e52-b844-43db-a6b2-fd92e20638b7.settings.options.0.__assoc__.1.0','\"value\"'),('fields.92c09e52-b844-43db-a6b2-fd92e20638b7.settings.options.0.__assoc__.1.1','\"h-auto\"'),('fields.92c09e52-b844-43db-a6b2-fd92e20638b7.settings.options.0.__assoc__.2.0','\"default\"'),('fields.92c09e52-b844-43db-a6b2-fd92e20638b7.settings.options.0.__assoc__.2.1','\"\"'),('fields.92c09e52-b844-43db-a6b2-fd92e20638b7.settings.options.1.__assoc__.0.0','\"label\"'),('fields.92c09e52-b844-43db-a6b2-fd92e20638b7.settings.options.1.__assoc__.0.1','\"Screen\"'),('fields.92c09e52-b844-43db-a6b2-fd92e20638b7.settings.options.1.__assoc__.1.0','\"value\"'),('fields.92c09e52-b844-43db-a6b2-fd92e20638b7.settings.options.1.__assoc__.1.1','\"h-screen\"'),('fields.92c09e52-b844-43db-a6b2-fd92e20638b7.settings.options.1.__assoc__.2.0','\"default\"'),('fields.92c09e52-b844-43db-a6b2-fd92e20638b7.settings.options.1.__assoc__.2.1','\"\"'),('fields.92c09e52-b844-43db-a6b2-fd92e20638b7.translationKeyFormat','null'),('fields.92c09e52-b844-43db-a6b2-fd92e20638b7.translationMethod','\"none\"'),('fields.92c09e52-b844-43db-a6b2-fd92e20638b7.type','\"craft\\\\fields\\\\Dropdown\"'),('fields.a172791e-53b7-44eb-b87b-ab304cd1588f.columnSuffix','null'),('fields.a172791e-53b7-44eb-b87b-ab304cd1588f.contentColumnType','\"string\"'),('fields.a172791e-53b7-44eb-b87b-ab304cd1588f.fieldGroup','\"a93becfb-6496-4b2f-93d5-cf2691ada3d7\"'),('fields.a172791e-53b7-44eb-b87b-ab304cd1588f.handle','\"accordionContent\"'),('fields.a172791e-53b7-44eb-b87b-ab304cd1588f.instructions','null'),('fields.a172791e-53b7-44eb-b87b-ab304cd1588f.name','\"Accordion content\"'),('fields.a172791e-53b7-44eb-b87b-ab304cd1588f.searchable','false'),('fields.a172791e-53b7-44eb-b87b-ab304cd1588f.settings.contentTable','\"{{%matrixcontent_accordioncontent}}\"'),('fields.a172791e-53b7-44eb-b87b-ab304cd1588f.settings.maxBlocks','null'),('fields.a172791e-53b7-44eb-b87b-ab304cd1588f.settings.minBlocks','null'),('fields.a172791e-53b7-44eb-b87b-ab304cd1588f.settings.propagationKeyFormat','null'),('fields.a172791e-53b7-44eb-b87b-ab304cd1588f.settings.propagationMethod','\"all\"'),('fields.a172791e-53b7-44eb-b87b-ab304cd1588f.translationKeyFormat','null'),('fields.a172791e-53b7-44eb-b87b-ab304cd1588f.translationMethod','\"site\"'),('fields.a172791e-53b7-44eb-b87b-ab304cd1588f.type','\"craft\\\\fields\\\\Matrix\"'),('fields.a1f430b2-c028-4c12-9f6b-e150f70c1180.columnSuffix','null'),('fields.a1f430b2-c028-4c12-9f6b-e150f70c1180.contentColumnType','\"text\"'),('fields.a1f430b2-c028-4c12-9f6b-e150f70c1180.fieldGroup','\"949c24d0-491b-49e0-8802-dfed8158b301\"'),('fields.a1f430b2-c028-4c12-9f6b-e150f70c1180.handle','\"promiseWhatCanShouldDoCustomersExpectFromYou\"'),('fields.a1f430b2-c028-4c12-9f6b-e150f70c1180.instructions','\"\"'),('fields.a1f430b2-c028-4c12-9f6b-e150f70c1180.name','\"Promise â What can/should/do customers expect from you?\"'),('fields.a1f430b2-c028-4c12-9f6b-e150f70c1180.searchable','false'),('fields.a1f430b2-c028-4c12-9f6b-e150f70c1180.settings.byteLimit','null'),('fields.a1f430b2-c028-4c12-9f6b-e150f70c1180.settings.charLimit','null'),('fields.a1f430b2-c028-4c12-9f6b-e150f70c1180.settings.code','\"\"'),('fields.a1f430b2-c028-4c12-9f6b-e150f70c1180.settings.columnType','null'),('fields.a1f430b2-c028-4c12-9f6b-e150f70c1180.settings.initialRows','\"4\"'),('fields.a1f430b2-c028-4c12-9f6b-e150f70c1180.settings.multiline','\"1\"'),('fields.a1f430b2-c028-4c12-9f6b-e150f70c1180.settings.placeholder','null'),('fields.a1f430b2-c028-4c12-9f6b-e150f70c1180.settings.uiMode','\"normal\"'),('fields.a1f430b2-c028-4c12-9f6b-e150f70c1180.translationKeyFormat','null'),('fields.a1f430b2-c028-4c12-9f6b-e150f70c1180.translationMethod','\"none\"'),('fields.a1f430b2-c028-4c12-9f6b-e150f70c1180.type','\"craft\\\\fields\\\\PlainText\"'),('fields.a28227a7-60b7-44a9-8bb3-cd123f79875e.columnSuffix','null'),('fields.a28227a7-60b7-44a9-8bb3-cd123f79875e.contentColumnType','\"text\"'),('fields.a28227a7-60b7-44a9-8bb3-cd123f79875e.fieldGroup','\"581f3b95-4fdd-4b29-a806-753edb34ee8c\"'),('fields.a28227a7-60b7-44a9-8bb3-cd123f79875e.handle','\"totalTradingIncome\"'),('fields.a28227a7-60b7-44a9-8bb3-cd123f79875e.instructions','\"\"'),('fields.a28227a7-60b7-44a9-8bb3-cd123f79875e.name','\"Total income\"'),('fields.a28227a7-60b7-44a9-8bb3-cd123f79875e.searchable','false'),('fields.a28227a7-60b7-44a9-8bb3-cd123f79875e.settings.byteLimit','null'),('fields.a28227a7-60b7-44a9-8bb3-cd123f79875e.settings.charLimit','null'),('fields.a28227a7-60b7-44a9-8bb3-cd123f79875e.settings.code','\"\"'),('fields.a28227a7-60b7-44a9-8bb3-cd123f79875e.settings.columnType','null'),('fields.a28227a7-60b7-44a9-8bb3-cd123f79875e.settings.initialRows','\"4\"'),('fields.a28227a7-60b7-44a9-8bb3-cd123f79875e.settings.multiline','\"\"'),('fields.a28227a7-60b7-44a9-8bb3-cd123f79875e.settings.placeholder','null'),('fields.a28227a7-60b7-44a9-8bb3-cd123f79875e.settings.uiMode','\"normal\"'),('fields.a28227a7-60b7-44a9-8bb3-cd123f79875e.translationKeyFormat','null'),('fields.a28227a7-60b7-44a9-8bb3-cd123f79875e.translationMethod','\"none\"'),('fields.a28227a7-60b7-44a9-8bb3-cd123f79875e.type','\"craft\\\\fields\\\\PlainText\"'),('fields.a52e3a14-549c-4d8d-ac07-344f3ef99152.columnSuffix','null'),('fields.a52e3a14-549c-4d8d-ac07-344f3ef99152.contentColumnType','\"text\"'),('fields.a52e3a14-549c-4d8d-ac07-344f3ef99152.fieldGroup','\"949c24d0-491b-49e0-8802-dfed8158b301\"'),('fields.a52e3a14-549c-4d8d-ac07-344f3ef99152.handle','\"purposeWhyDoesYourBrandExist\"'),('fields.a52e3a14-549c-4d8d-ac07-344f3ef99152.instructions','\"\"'),('fields.a52e3a14-549c-4d8d-ac07-344f3ef99152.name','\"Purpose â Why does your brand exist?\"'),('fields.a52e3a14-549c-4d8d-ac07-344f3ef99152.searchable','false'),('fields.a52e3a14-549c-4d8d-ac07-344f3ef99152.settings.byteLimit','null'),('fields.a52e3a14-549c-4d8d-ac07-344f3ef99152.settings.charLimit','null'),('fields.a52e3a14-549c-4d8d-ac07-344f3ef99152.settings.code','\"\"'),('fields.a52e3a14-549c-4d8d-ac07-344f3ef99152.settings.columnType','null'),('fields.a52e3a14-549c-4d8d-ac07-344f3ef99152.settings.initialRows','\"4\"'),('fields.a52e3a14-549c-4d8d-ac07-344f3ef99152.settings.multiline','\"1\"'),('fields.a52e3a14-549c-4d8d-ac07-344f3ef99152.settings.placeholder','null'),('fields.a52e3a14-549c-4d8d-ac07-344f3ef99152.settings.uiMode','\"normal\"'),('fields.a52e3a14-549c-4d8d-ac07-344f3ef99152.translationKeyFormat','null'),('fields.a52e3a14-549c-4d8d-ac07-344f3ef99152.translationMethod','\"none\"'),('fields.a52e3a14-549c-4d8d-ac07-344f3ef99152.type','\"craft\\\\fields\\\\PlainText\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.columnSuffix','null'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.contentColumnType','\"text\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.fieldGroup','\"a93becfb-6496-4b2f-93d5-cf2691ada3d7\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.handle','\"flexibleLayout\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.instructions','null'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.name','\"Flexible layout\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.searchable','true'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.availableTransforms','\"*\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.availableVolumes','\"*\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.columnType','\"text\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.configSelectionMode','\"choose\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.defaultTransform','\"\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.0.0','\"id\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.0.1','\"group-up8Yi44dOW\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.1.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.1.1','\"Content sections\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.0','\"blockTypes\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.0.0','\"id\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.0.1','\"type-0jFlVakMTB\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.1.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.1.1','\"Text section builder\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.2.0','\"handle\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.2.1','\"textSection\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.3.0','\"icon\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.3.1.__assoc__.0.0','\"label\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.3.1.__assoc__.0.1','\"Pen Square\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.3.1.__assoc__.1.0','\"value\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.3.1.__assoc__.1.1','\"pen-square-solid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.4.0','\"template\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.4.1','\"_vizypartials/_textSection.twig\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.5.0','\"enabled\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.5.1','true'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.6.0','\"layoutUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.6.1','\"ba014523-5ac5-4c8d-b146-013bb53bcdf0\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.0','\"layoutConfig\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.0','\"tabs\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.0.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.0.1','\"CONTENT\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.1.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.1.1','\"960037f1-53d7-4d93-8fe1-8f7cac0fab0e\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.0','\"elements\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.6.1','50'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.7.1','\"bd8f8a30-4df6-4eca-a77b-1c89b8013751\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.8.1','\"92c09e52-b844-43db-a6b2-fd92e20638b7\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.6.1','50'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.7.1','\"796c653d-b744-417a-befa-0a0dd58ea492\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.8.1','\"53022aef-ff21-4e7f-970a-cb210544fb32\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.6.1','100'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.7.1','\"4005e54b-d2eb-4034-8ec9-2b1454fb347f\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.8.1','\"da858be0-dc01-44ea-9fc5-f9c6848cc9af\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.3.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.3.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.3.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.3.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.3.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.3.__assoc__.6.1','100'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.3.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.3.__assoc__.7.1','\"a40df637-319b-46d1-9085-2d23844fb9b0\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.3.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.3.__assoc__.8.1','\"2718313e-9a95-48a0-b8f2-d08ccd8f2323\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.1.__assoc__.0.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.1.__assoc__.0.1','\"METADATA\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.1.__assoc__.1.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.1.__assoc__.1.1','\"3787aef1-2764-4db0-bf77-e0388557f8cc\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.0','\"elements\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.6.1','100'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.7.1','\"7326f992-2435-4f32-b304-a5a83ffec845\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.0.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.8.1','\"c9806c08-39e9-4277-ba95-708404c27b4c\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.0.0','\"id\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.0.1','\"type-ajNEqfqsEA\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.1.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.1.1','\"People grid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.2.0','\"handle\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.2.1','\"peopleGrid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.3.0','\"icon\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.3.1.__assoc__.0.0','\"label\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.3.1.__assoc__.0.1','\"User\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.3.1.__assoc__.1.0','\"value\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.3.1.__assoc__.1.1','\"user-solid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.4.0','\"template\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.4.1','\"_vizypartials/_userGrid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.5.0','\"enabled\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.5.1','true'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.6.0','\"layoutUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.6.1','\"12e55a1e-108b-4ad5-98cf-e23f3e9b5852\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.7.0','\"layoutConfig\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.7.1.__assoc__.0.0','\"tabs\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.7.1.__assoc__.0.1.0.__assoc__.0.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.7.1.__assoc__.0.1.0.__assoc__.0.1','\"METADATA\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.7.1.__assoc__.0.1.0.__assoc__.1.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.7.1.__assoc__.0.1.0.__assoc__.1.1','\"a83d977c-818d-4e5a-a984-30e743493485\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.0','\"elements\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.6.1','100'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.7.1','\"660e536a-3b1f-453d-94b0-bef94094990f\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.8.1','\"c9806c08-39e9-4277-ba95-708404c27b4c\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.7.1.__assoc__.0.1.1.__assoc__.0.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.7.1.__assoc__.0.1.1.__assoc__.0.1','\"CONTENT\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.7.1.__assoc__.0.1.1.__assoc__.1.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.7.1.__assoc__.0.1.1.__assoc__.1.1','\"fe74f651-35b6-4615-bc75-39f27c084123\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.0','\"elements\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.6.1','100'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.7.1','\"1d0aa5b1-9982-42da-8584-b7916952ba7a\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.1.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.8.1','\"ac330e35-980d-4c71-9fd8-4c4edd58140b\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.0.0','\"id\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.0.1','\"type-Ax8fnuTi2u\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.1.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.1.1','\"Image slideshow\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.2.0','\"handle\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.2.1','\"imageSlideshow\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.3.0','\"icon\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.3.1.__assoc__.0.0','\"label\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.3.1.__assoc__.0.1','\"Images\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.3.1.__assoc__.1.0','\"value\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.3.1.__assoc__.1.1','\"images-solid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.4.0','\"template\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.4.1','\"_vizypartials/_imageSlideshow.twig\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.5.0','\"enabled\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.5.1','true'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.6.0','\"layoutUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.6.1','\"b757e220-fb65-4fce-a081-c93399bbb0a7\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.7.0','\"layoutConfig\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.7.1.__assoc__.0.0','\"tabs\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.7.1.__assoc__.0.1.0.__assoc__.0.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.7.1.__assoc__.0.1.0.__assoc__.0.1','\"CONTENT\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.7.1.__assoc__.0.1.0.__assoc__.1.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.7.1.__assoc__.0.1.0.__assoc__.1.1','\"15731807-e2e5-4084-b271-5654beb01f89\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.0','\"elements\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.6.1','100'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.7.1','\"cd43546e-aa2e-4e9b-9014-381c97b38878\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.10.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.8.1','\"b2e01efa-50e7-49b4-8c2c-33ec9581cb1b\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.0.0','\"id\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.0.1','\"type-s0nVisNYi6\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.1.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.1.1','\"Spacer\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.2.0','\"handle\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.2.1','\"spacer\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.3.0','\"icon\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.3.1.__assoc__.0.0','\"label\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.3.1.__assoc__.0.1','\"Alternate Arrows Vertical\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.3.1.__assoc__.1.0','\"value\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.3.1.__assoc__.1.1','\"arrows-alt-v-solid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.4.0','\"template\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.4.1','\"_vizypartials/_spacer.twig\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.5.0','\"enabled\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.5.1','true'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.6.0','\"layoutUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.6.1','\"934829d8-9be9-45dc-a404-630590254f82\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.7.0','\"layoutConfig\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.7.1.__assoc__.0.0','\"tabs\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.7.1.__assoc__.0.1.0.__assoc__.0.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.7.1.__assoc__.0.1.0.__assoc__.0.1','\"CONTENT\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.7.1.__assoc__.0.1.0.__assoc__.1.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.7.1.__assoc__.0.1.0.__assoc__.1.1','\"bba08531-fc60-4299-a42d-18d4e4f5c552\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.0','\"elements\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.6.1','100'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.7.1','\"f92a35f8-e430-4610-b08e-9e779fc40e28\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.8.1','\"13c5a484-996f-4429-a612-5b251409ca6f\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.7.1.__assoc__.0.1.1.__assoc__.0.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.7.1.__assoc__.0.1.1.__assoc__.0.1','\"METADATA\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.7.1.__assoc__.0.1.1.__assoc__.1.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.7.1.__assoc__.0.1.1.__assoc__.1.1','\"3eeaca9e-9a96-4118-ae62-fcc4497cfafe\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.0','\"elements\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.6.1','100'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.7.1','\"82883027-96e3-4c44-ac8c-99c786f69954\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.11.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.8.1','\"c9806c08-39e9-4277-ba95-708404c27b4c\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.0.0','\"id\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.0.1','\"type-rG4w99hwoM\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.1.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.1.1','\"Accordion content\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.2.0','\"handle\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.2.1','\"accordionContent\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.3.0','\"icon\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.3.1.__assoc__.0.0','\"label\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.3.1.__assoc__.0.1','\"Bars\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.3.1.__assoc__.1.0','\"value\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.3.1.__assoc__.1.1','\"bars-solid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.4.0','\"template\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.4.1','\"_vizypartials/_accordionContent.twig\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.5.0','\"enabled\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.5.1','true'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.6.0','\"layoutUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.6.1','\"68882123-3c38-402c-b566-bb6545c825ad\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.7.0','\"layoutConfig\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.7.1.__assoc__.0.0','\"tabs\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.7.1.__assoc__.0.1.0.__assoc__.0.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.7.1.__assoc__.0.1.0.__assoc__.0.1','\"CONTENT\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.7.1.__assoc__.0.1.0.__assoc__.1.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.7.1.__assoc__.0.1.0.__assoc__.1.1','\"9f67686c-99dd-4a2b-afe8-d50826464aaa\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.0','\"elements\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.6.1','100'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.7.1','\"2e953b06-eedb-4c9d-ba1e-70a991c5527f\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.8.1','\"a172791e-53b7-44eb-b87b-ab304cd1588f\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.7.1.__assoc__.0.1.1.__assoc__.0.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.7.1.__assoc__.0.1.1.__assoc__.0.1','\"METADATA\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.7.1.__assoc__.0.1.1.__assoc__.1.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.7.1.__assoc__.0.1.1.__assoc__.1.1','\"c559034d-47a3-4e44-81f3-a365e32ae0f3\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.0','\"elements\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.6.1','100'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.7.1','\"a0c88134-9454-48a2-8a72-7e7755c4b2aa\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.12.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.8.1','\"c9806c08-39e9-4277-ba95-708404c27b4c\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.0.0','\"id\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.0.1','\"type-MfLI96vuT8\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.1.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.1.1','\"Logo cloud\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.2.0','\"handle\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.2.1','\"logoCloud\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.3.0','\"icon\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.3.1.__assoc__.0.0','\"label\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.3.1.__assoc__.0.1','\"Büromöbel-Experte GmbH & Co. KG.\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.3.1.__assoc__.1.0','\"value\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.3.1.__assoc__.1.1','\"buromobelexperte-brands\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.4.0','\"template\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.4.1','\"_vizypartials/_logoCloud\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.5.0','\"enabled\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.5.1','true'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.6.0','\"layoutUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.6.1','\"2da7908c-edff-430a-8a23-96f17ebb813c\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.0','\"layoutConfig\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.0','\"tabs\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.0.__assoc__.0.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.0.__assoc__.0.1','\"METADATA\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.0.__assoc__.1.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.0.__assoc__.1.1','\"76b3409e-ff7a-48a2-b65d-0192d0ac0022\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.0','\"elements\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.6.1','100'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.7.1','\"12461671-fa05-4363-a92b-603a12a50aa6\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.8.1','\"c9806c08-39e9-4277-ba95-708404c27b4c\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.1.__assoc__.0.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.1.__assoc__.0.1','\"CONTENT\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.1.__assoc__.1.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.1.__assoc__.1.1','\"ebedcc73-9303-469f-916c-7018d638c8bd\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.0','\"elements\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.6.1','100'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.7.1','\"f85b2904-0c18-420d-9d78-9beb068063ed\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.8.1','\"747348e3-38bd-461d-b1ff-416c6764f72e\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.1.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.1.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.1.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.1.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.1.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.1.__assoc__.6.1','100'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.1.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.1.__assoc__.7.1','\"c165bb0f-0dd7-48f2-a146-76ba27a6eab6\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.1.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.2.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.1.__assoc__.8.1','\"b2e01efa-50e7-49b4-8c2c-33ec9581cb1b\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.0.0','\"id\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.0.1','\"type-JIUNKK7uSu\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.1.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.1.1','\"Form\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.2.0','\"handle\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.2.1','\"form\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.3.0','\"icon\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.3.1.__assoc__.0.0','\"label\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.3.1.__assoc__.0.1','\"Envelope Open-text\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.3.1.__assoc__.1.0','\"value\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.3.1.__assoc__.1.1','\"envelope-open-text-solid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.4.0','\"template\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.4.1','\"_vizypartials/_freeformForm\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.5.0','\"enabled\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.5.1','true'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.6.0','\"layoutUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.6.1','\"2dff07d9-38f4-464b-a02a-e87706db0292\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.0','\"layoutConfig\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.0','\"tabs\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.0.__assoc__.0.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.0.__assoc__.0.1','\"CONTENT\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.0.__assoc__.1.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.0.__assoc__.1.1','\"3c545868-c5a0-4663-a367-3ee771c1beff\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.0','\"elements\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.6.1','100'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.7.1','\"0defd852-19f0-41e4-b1b2-02207878d0c6\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.8.1','\"aa219c56-4619-45c0-ace9-c07d18e43d2f\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.6.1','100'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.7.1','\"41df6e67-8837-4115-9e65-7841f595348d\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.8.1','\"53022aef-ff21-4e7f-970a-cb210544fb32\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.1.__assoc__.0.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.1.__assoc__.0.1','\"METADATA\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.1.__assoc__.1.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.1.__assoc__.1.1','\"671b6b72-98a2-4279-8f67-3834717a3621\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.0','\"elements\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.6.1','100'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.7.1','\"acd77784-24db-49dc-8b54-8751642aabfb\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.3.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.8.1','\"c9806c08-39e9-4277-ba95-708404c27b4c\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.0.0','\"id\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.0.1','\"type-K9ZnVvlNxN\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.1.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.1.1','\"Callout\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.2.0','\"handle\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.2.1','\"callout\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.3.0','\"icon\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.3.1.__assoc__.0.0','\"label\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.3.1.__assoc__.0.1','\"quote-right\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.3.1.__assoc__.1.0','\"value\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.3.1.__assoc__.1.1','\"quote-right-solid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.4.0','\"template\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.4.1','\"_vizypartials/_callout\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.5.0','\"enabled\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.5.1','true'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.6.0','\"layoutUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.6.1','\"647d6fba-67d9-478e-8e66-548e237fe9c0\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.0','\"layoutConfig\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.0','\"tabs\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.0.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.0.1','\"CONTENT\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.1.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.1.1','\"36da9804-42f4-401e-a80e-4e6fe5b3f593\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.0','\"elements\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.6.1','100'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.7.1','\"09dfbb09-6f4a-419d-9958-2f6317359057\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.8.1','\"747348e3-38bd-461d-b1ff-416c6764f72e\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.6.1','100'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.7.1','\"f15e7fbb-e9df-49ee-b05e-0a71b99c9f00\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.8.1','\"e6a934e5-14f7-4866-82bb-e3c114038533\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.6.1','50'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.7.1','\"f7d93f83-5082-46ea-b2ad-ad38764ce473\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.8.1','\"92c09e52-b844-43db-a6b2-fd92e20638b7\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.3.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.3.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.3.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.3.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.3.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.3.__assoc__.6.1','25'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.3.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.3.__assoc__.7.1','\"62f55f02-1c7e-4709-91d2-e49d5bbd8fa2\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.3.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.3.__assoc__.8.1','\"53022aef-ff21-4e7f-970a-cb210544fb32\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.4.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.4.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.4.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.4.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.4.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.4.__assoc__.6.1','25'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.4.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.4.__assoc__.7.1','\"3588a012-60f9-482d-b9bf-4c654fc536f2\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.4.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.4.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.4.__assoc__.8.1','\"fe3d3e20-0b76-438f-af52-0b90f4cf6099\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.0.0','\"id\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.0.1','\"type-zgzhmh66J7\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.1.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.1.1','\"Markdown\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.2.0','\"handle\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.2.1','\"markdown\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.3.0','\"icon\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.3.1.__assoc__.0.0','\"label\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.3.1.__assoc__.0.1','\"Markdown\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.3.1.__assoc__.1.0','\"value\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.3.1.__assoc__.1.1','\"markdown-brands\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.4.0','\"template\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.4.1','\"_vizypartials/_richText\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.5.0','\"enabled\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.5.1','true'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.6.0','\"layoutUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.6.1','\"80d0e735-9c05-45a6-ba97-02bcae2dfcb2\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.0','\"layoutConfig\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.0','\"tabs\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.0.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.0.1','\"CONTENT\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.1.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.1.1','\"674a2b8b-13e0-4907-9c4a-e0fa252d5bf7\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.0','\"elements\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.6.1','50'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.7.1','\"b03cc690-016c-48d8-8058-77f925c5846a\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.8.1','\"53022aef-ff21-4e7f-970a-cb210544fb32\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.6.1','50'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.7.1','\"12849553-6ed0-4869-ba00-c2ee16ecd39a\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.8.1','\"92c09e52-b844-43db-a6b2-fd92e20638b7\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.6.1','100'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.7.1','\"685f87a1-b8bd-4a95-9a1b-be5e4500af14\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.8.1','\"e6a934e5-14f7-4866-82bb-e3c114038533\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.1.__assoc__.0.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.1.__assoc__.0.1','\"METADATA\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.1.__assoc__.1.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.1.__assoc__.1.1','\"37fa2be2-782f-493b-ab8a-e2c580f00d20\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.0','\"elements\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.6.1','100'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.7.1','\"5169c9b4-0f8c-4c82-b2f8-79f0ceae3366\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.5.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.8.1','\"c9806c08-39e9-4277-ba95-708404c27b4c\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.0.0','\"id\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.0.1','\"type-xgBpfxj8HD\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.1.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.1.1','\"Full width image\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.2.0','\"handle\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.2.1','\"fullWidthImage\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.3.0','\"icon\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.3.1.__assoc__.0.0','\"label\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.3.1.__assoc__.0.1','\"Image\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.3.1.__assoc__.1.0','\"value\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.3.1.__assoc__.1.1','\"image-solid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.4.0','\"template\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.4.1','\"_vizypartials/_fullWidthImage\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.5.0','\"enabled\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.5.1','true'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.6.0','\"layoutUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.6.1','\"ad819334-922d-4539-8259-5a79df116e87\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.7.0','\"layoutConfig\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.7.1.__assoc__.0.0','\"tabs\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.7.1.__assoc__.0.1.0.__assoc__.0.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.7.1.__assoc__.0.1.0.__assoc__.0.1','\"CONTENT\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.7.1.__assoc__.0.1.0.__assoc__.1.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.7.1.__assoc__.0.1.0.__assoc__.1.1','\"352c432b-ec78-435f-94a0-65b85acc64f0\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.0','\"elements\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.6.1','100'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.7.1','\"5158a62d-11b7-41f7-8982-90fb4e2237bb\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.6.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.8.1','\"b2e01efa-50e7-49b4-8c2c-33ec9581cb1b\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.0.0','\"id\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.0.1','\"type-RVIt4Msytq\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.1.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.1.1','\"Video grid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.2.0','\"handle\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.2.1','\"videoGrid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.3.0','\"icon\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.3.1.__assoc__.0.0','\"label\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.3.1.__assoc__.0.1','\"Photo Video\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.3.1.__assoc__.1.0','\"value\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.3.1.__assoc__.1.1','\"photo-video-solid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.4.0','\"template\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.4.1','\"_vizypartials/_videoGrid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.5.0','\"enabled\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.5.1','true'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.6.0','\"layoutUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.6.1','\"a4ed14d4-fcf4-46c9-bf15-afc06ffcbc87\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.7.0','\"layoutConfig\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.7.1.__assoc__.0.0','\"tabs\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.7.1.__assoc__.0.1.0.__assoc__.0.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.7.1.__assoc__.0.1.0.__assoc__.0.1','\"CONTENT\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.7.1.__assoc__.0.1.0.__assoc__.1.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.7.1.__assoc__.0.1.0.__assoc__.1.1','\"131507f7-43f7-41a4-aa68-ffb5872cd249\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.0','\"elements\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.6.1','100'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.7.1','\"75b70dbc-e054-4cb0-9ebf-6fbe4c03c1e4\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.7.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.8.1','\"39b06f94-8ee0-4222-8a17-b527852aec1b\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.0.0','\"id\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.0.1','\"type-WIIM7FjPXS\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.1.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.1.1','\"Text and media\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.2.0','\"handle\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.2.1','\"textAndMedia\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.3.0','\"icon\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.3.1.__assoc__.0.0','\"label\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.3.1.__assoc__.0.1','\"Photo Video\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.3.1.__assoc__.1.0','\"value\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.3.1.__assoc__.1.1','\"photo-video-solid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.4.0','\"template\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.4.1','\"_vizypartials/_textAndMedia\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.5.0','\"enabled\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.5.1','true'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.6.0','\"layoutUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.6.1','\"f286c5ff-7a88-456a-80ff-5bf83a4e40d0\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.0','\"layoutConfig\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.0','\"tabs\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.0.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.0.1','\"CONTENT\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.1.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.1.1','\"1a25437f-8981-4c4d-bc8a-0a7884597e7b\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.0','\"elements\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.6.1','50'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.7.1','\"a8c541a4-1dbe-4739-a5b5-2dc0e0ae44b5\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.8.1','\"b2e01efa-50e7-49b4-8c2c-33ec9581cb1b\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.6.1','50'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.7.1','\"a869e072-817a-4904-826f-22e67a4f9b79\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.8.1','\"cf34f699-cd72-4f21-8dc0-13f2a6d993ef\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.6.1','100'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.7.1','\"cbe8afec-4712-4d23-8bd4-861bae0a7cb5\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.8.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.2.__assoc__.8.1','\"da858be0-dc01-44ea-9fc5-f9c6848cc9af\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.0.0','\"id\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.0.1','\"type-GjaQopZ8Ed\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.1.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.1.1','\"Code block\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.2.0','\"handle\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.2.1','\"codeBlock\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.3.0','\"icon\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.3.1.__assoc__.0.0','\"label\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.3.1.__assoc__.0.1','\"Laptop Code\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.3.1.__assoc__.1.0','\"value\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.3.1.__assoc__.1.1','\"laptop-code-solid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.4.0','\"template\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.4.1','\"_vizypartials/_codeBlock\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.5.0','\"enabled\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.5.1','true'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.6.0','\"layoutUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.6.1','\"64cf1b94-24dd-474c-9d4c-a1eecd1ee6d9\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.0','\"layoutConfig\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.0','\"tabs\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.0.__assoc__.0.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.0.__assoc__.0.1','\"CONTENT\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.0.__assoc__.1.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.0.__assoc__.1.1','\"1c998b8d-7958-40f8-bcbd-99006934f28c\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.0','\"elements\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.6.1','100'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.7.1','\"dccaa976-cd06-4657-8d16-59805c50e452\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.0.__assoc__.8.1','\"67b36868-9b9f-4ac0-b5d2-6585f5876af2\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.6.1','100'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.7.1','\"d438a09d-c82a-4a4d-9780-54ec03487399\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.0.__assoc__.2.1.1.__assoc__.8.1','\"53022aef-ff21-4e7f-970a-cb210544fb32\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.1.__assoc__.0.0','\"name\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.1.__assoc__.0.1','\"METADATA\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.1.__assoc__.1.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.1.__assoc__.1.1','\"f3d135a3-ffac-49b2-8239-33234d9d6e19\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.0','\"elements\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.0.0','\"type\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.0.1','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.5.0','\"required\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.5.1','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.6.0','\"width\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.6.1','100'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.7.0','\"uid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.7.1','\"8865a755-f236-4f2a-a8e9-709e36a4a664\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.8.0','\"fieldUid\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.fieldData.0.__assoc__.2.1.9.__assoc__.7.1.__assoc__.0.1.1.__assoc__.2.1.0.__assoc__.8.1','\"c9806c08-39e9-4277-ba95-708404c27b4c\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.manualConfig','\"\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.showUnpermittedFiles','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.showUnpermittedVolumes','false'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.trimEmptyParagraphs','true'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.settings.vizyConfig','\"\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.translationKeyFormat','null'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.translationMethod','\"none\"'),('fields.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf.type','\"verbb\\\\vizy\\\\fields\\\\VizyField\"'),('fields.a8f8633d-52f9-4c47-b299-0eb6625cf341.columnSuffix','\"qocjnghn\"'),('fields.a8f8633d-52f9-4c47-b299-0eb6625cf341.contentColumnType','\"text\"'),('fields.a8f8633d-52f9-4c47-b299-0eb6625cf341.fieldGroup','\"34d088ed-ef16-496c-9634-85e5d8581aa0\"'),('fields.a8f8633d-52f9-4c47-b299-0eb6625cf341.handle','\"invoiceHeadline\"'),('fields.a8f8633d-52f9-4c47-b299-0eb6625cf341.instructions','\"\"'),('fields.a8f8633d-52f9-4c47-b299-0eb6625cf341.name','\"Invoice headline\"'),('fields.a8f8633d-52f9-4c47-b299-0eb6625cf341.searchable','false'),('fields.a8f8633d-52f9-4c47-b299-0eb6625cf341.settings.byteLimit','null'),('fields.a8f8633d-52f9-4c47-b299-0eb6625cf341.settings.charLimit','null'),('fields.a8f8633d-52f9-4c47-b299-0eb6625cf341.settings.code','\"\"'),('fields.a8f8633d-52f9-4c47-b299-0eb6625cf341.settings.columnType','null'),('fields.a8f8633d-52f9-4c47-b299-0eb6625cf341.settings.initialRows','\"4\"'),('fields.a8f8633d-52f9-4c47-b299-0eb6625cf341.settings.multiline','\"\"'),('fields.a8f8633d-52f9-4c47-b299-0eb6625cf341.settings.placeholder','null'),('fields.a8f8633d-52f9-4c47-b299-0eb6625cf341.settings.uiMode','\"normal\"'),('fields.a8f8633d-52f9-4c47-b299-0eb6625cf341.translationKeyFormat','null'),('fields.a8f8633d-52f9-4c47-b299-0eb6625cf341.translationMethod','\"none\"'),('fields.a8f8633d-52f9-4c47-b299-0eb6625cf341.type','\"craft\\\\fields\\\\PlainText\"'),('fields.aa219c56-4619-45c0-ace9-c07d18e43d2f.columnSuffix','null'),('fields.aa219c56-4619-45c0-ace9-c07d18e43d2f.contentColumnType','\"integer\"'),('fields.aa219c56-4619-45c0-ace9-c07d18e43d2f.fieldGroup','\"c38e2159-46dc-46e1-bc98-42bfb5da312f\"'),('fields.aa219c56-4619-45c0-ace9-c07d18e43d2f.handle','\"freeformForm\"'),('fields.aa219c56-4619-45c0-ace9-c07d18e43d2f.instructions','\"\"'),('fields.aa219c56-4619-45c0-ace9-c07d18e43d2f.name','\"Freeform Form\"'),('fields.aa219c56-4619-45c0-ace9-c07d18e43d2f.searchable','false'),('fields.aa219c56-4619-45c0-ace9-c07d18e43d2f.translationKeyFormat','null'),('fields.aa219c56-4619-45c0-ace9-c07d18e43d2f.translationMethod','\"none\"'),('fields.aa219c56-4619-45c0-ace9-c07d18e43d2f.type','\"Solspace\\\\Freeform\\\\FieldTypes\\\\FormFieldType\"'),('fields.aa7cd983-d717-4e90-bce8-4fafcb0c37aa.columnSuffix','null'),('fields.aa7cd983-d717-4e90-bce8-4fafcb0c37aa.contentColumnType','\"string\"'),('fields.aa7cd983-d717-4e90-bce8-4fafcb0c37aa.fieldGroup','\"2b60406c-5779-47b4-bfe7-7fbc8096df95\"'),('fields.aa7cd983-d717-4e90-bce8-4fafcb0c37aa.handle','\"questions\"'),('fields.aa7cd983-d717-4e90-bce8-4fafcb0c37aa.instructions','\"\"'),('fields.aa7cd983-d717-4e90-bce8-4fafcb0c37aa.name','\"Questions\"'),('fields.aa7cd983-d717-4e90-bce8-4fafcb0c37aa.searchable','false'),('fields.aa7cd983-d717-4e90-bce8-4fafcb0c37aa.settings.contentTable','\"{{%matrixcontent_questions}}\"'),('fields.aa7cd983-d717-4e90-bce8-4fafcb0c37aa.settings.maxBlocks','\"\"'),('fields.aa7cd983-d717-4e90-bce8-4fafcb0c37aa.settings.minBlocks','\"\"'),('fields.aa7cd983-d717-4e90-bce8-4fafcb0c37aa.settings.propagationKeyFormat','null'),('fields.aa7cd983-d717-4e90-bce8-4fafcb0c37aa.settings.propagationMethod','\"all\"'),('fields.aa7cd983-d717-4e90-bce8-4fafcb0c37aa.translationKeyFormat','null'),('fields.aa7cd983-d717-4e90-bce8-4fafcb0c37aa.translationMethod','\"site\"'),('fields.aa7cd983-d717-4e90-bce8-4fafcb0c37aa.type','\"craft\\\\fields\\\\Matrix\"'),('fields.ac330e35-980d-4c71-9fd8-4c4edd58140b.columnSuffix','null'),('fields.ac330e35-980d-4c71-9fd8-4c4edd58140b.contentColumnType','\"string\"'),('fields.ac330e35-980d-4c71-9fd8-4c4edd58140b.fieldGroup','\"f43e2891-333d-49b3-a9db-3e8569344d15\"'),('fields.ac330e35-980d-4c71-9fd8-4c4edd58140b.handle','\"relatedTeamMembers\"'),('fields.ac330e35-980d-4c71-9fd8-4c4edd58140b.instructions','\"\"'),('fields.ac330e35-980d-4c71-9fd8-4c4edd58140b.name','\"Related team members\"'),('fields.ac330e35-980d-4c71-9fd8-4c4edd58140b.searchable','false'),('fields.ac330e35-980d-4c71-9fd8-4c4edd58140b.settings.allowSelfRelations','false'),('fields.ac330e35-980d-4c71-9fd8-4c4edd58140b.settings.limit','\"\"'),('fields.ac330e35-980d-4c71-9fd8-4c4edd58140b.settings.localizeRelations','false'),('fields.ac330e35-980d-4c71-9fd8-4c4edd58140b.settings.selectionLabel','\"Add a team member\"'),('fields.ac330e35-980d-4c71-9fd8-4c4edd58140b.settings.showSiteMenu','true'),('fields.ac330e35-980d-4c71-9fd8-4c4edd58140b.settings.source','null'),('fields.ac330e35-980d-4c71-9fd8-4c4edd58140b.settings.sources.0','\"admins\"'),('fields.ac330e35-980d-4c71-9fd8-4c4edd58140b.settings.sources.1','\"group:23b92378-5094-4e5b-9831-346803f914f0\"'),('fields.ac330e35-980d-4c71-9fd8-4c4edd58140b.settings.targetSiteId','null'),('fields.ac330e35-980d-4c71-9fd8-4c4edd58140b.settings.validateRelatedElements','false'),('fields.ac330e35-980d-4c71-9fd8-4c4edd58140b.settings.viewMode','null'),('fields.ac330e35-980d-4c71-9fd8-4c4edd58140b.translationKeyFormat','null'),('fields.ac330e35-980d-4c71-9fd8-4c4edd58140b.translationMethod','\"site\"'),('fields.ac330e35-980d-4c71-9fd8-4c4edd58140b.type','\"craft\\\\fields\\\\Users\"'),('fields.ac4071b5-babb-4fdc-b080-3c0d83e33548.columnSuffix','null'),('fields.ac4071b5-babb-4fdc-b080-3c0d83e33548.contentColumnType','\"string\"'),('fields.ac4071b5-babb-4fdc-b080-3c0d83e33548.fieldGroup','\"c38e2159-46dc-46e1-bc98-42bfb5da312f\"'),('fields.ac4071b5-babb-4fdc-b080-3c0d83e33548.handle','\"globalImage\"'),('fields.ac4071b5-babb-4fdc-b080-3c0d83e33548.instructions','\"This is the image that is used throughout the website for SEO and other sections of the site\"'),('fields.ac4071b5-babb-4fdc-b080-3c0d83e33548.name','\"Global image\"'),('fields.ac4071b5-babb-4fdc-b080-3c0d83e33548.searchable','false'),('fields.ac4071b5-babb-4fdc-b080-3c0d83e33548.settings.allowedKinds.0','\"image\"'),('fields.ac4071b5-babb-4fdc-b080-3c0d83e33548.settings.allowSelfRelations','false'),('fields.ac4071b5-babb-4fdc-b080-3c0d83e33548.settings.allowUploads','true'),('fields.ac4071b5-babb-4fdc-b080-3c0d83e33548.settings.defaultUploadLocationSource','\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('fields.ac4071b5-babb-4fdc-b080-3c0d83e33548.settings.defaultUploadLocationSubpath','\"\"'),('fields.ac4071b5-babb-4fdc-b080-3c0d83e33548.settings.limit','\"1\"'),('fields.ac4071b5-babb-4fdc-b080-3c0d83e33548.settings.localizeRelations','false'),('fields.ac4071b5-babb-4fdc-b080-3c0d83e33548.settings.previewMode','\"full\"'),('fields.ac4071b5-babb-4fdc-b080-3c0d83e33548.settings.restrictFiles','\"1\"'),('fields.ac4071b5-babb-4fdc-b080-3c0d83e33548.settings.selectionLabel','\"\"'),('fields.ac4071b5-babb-4fdc-b080-3c0d83e33548.settings.showSiteMenu','false'),('fields.ac4071b5-babb-4fdc-b080-3c0d83e33548.settings.showUnpermittedFiles','false'),('fields.ac4071b5-babb-4fdc-b080-3c0d83e33548.settings.showUnpermittedVolumes','false'),('fields.ac4071b5-babb-4fdc-b080-3c0d83e33548.settings.singleUploadLocationSource','\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('fields.ac4071b5-babb-4fdc-b080-3c0d83e33548.settings.singleUploadLocationSubpath','\"\"'),('fields.ac4071b5-babb-4fdc-b080-3c0d83e33548.settings.source','null'),('fields.ac4071b5-babb-4fdc-b080-3c0d83e33548.settings.sources','\"*\"'),('fields.ac4071b5-babb-4fdc-b080-3c0d83e33548.settings.targetSiteId','null'),('fields.ac4071b5-babb-4fdc-b080-3c0d83e33548.settings.useSingleFolder','false'),('fields.ac4071b5-babb-4fdc-b080-3c0d83e33548.settings.validateRelatedElements','false'),('fields.ac4071b5-babb-4fdc-b080-3c0d83e33548.settings.viewMode','\"list\"'),('fields.ac4071b5-babb-4fdc-b080-3c0d83e33548.translationKeyFormat','null'),('fields.ac4071b5-babb-4fdc-b080-3c0d83e33548.translationMethod','\"site\"'),('fields.ac4071b5-babb-4fdc-b080-3c0d83e33548.type','\"craft\\\\fields\\\\Assets\"'),('fields.b0db5971-ba40-4f4c-852e-0e19540f2f4e.columnSuffix','\"dlunslbe\"'),('fields.b0db5971-ba40-4f4c-852e-0e19540f2f4e.contentColumnType','\"text\"'),('fields.b0db5971-ba40-4f4c-852e-0e19540f2f4e.fieldGroup','\"34d088ed-ef16-496c-9634-85e5d8581aa0\"'),('fields.b0db5971-ba40-4f4c-852e-0e19540f2f4e.handle','\"invoiceStatus\"'),('fields.b0db5971-ba40-4f4c-852e-0e19540f2f4e.instructions','\"\"'),('fields.b0db5971-ba40-4f4c-852e-0e19540f2f4e.name','\"Invoice status\"'),('fields.b0db5971-ba40-4f4c-852e-0e19540f2f4e.searchable','true'),('fields.b0db5971-ba40-4f4c-852e-0e19540f2f4e.settings.byteLimit','null'),('fields.b0db5971-ba40-4f4c-852e-0e19540f2f4e.settings.charLimit','null'),('fields.b0db5971-ba40-4f4c-852e-0e19540f2f4e.settings.code','\"\"'),('fields.b0db5971-ba40-4f4c-852e-0e19540f2f4e.settings.columnType','null'),('fields.b0db5971-ba40-4f4c-852e-0e19540f2f4e.settings.initialRows','\"4\"'),('fields.b0db5971-ba40-4f4c-852e-0e19540f2f4e.settings.multiline','\"\"'),('fields.b0db5971-ba40-4f4c-852e-0e19540f2f4e.settings.placeholder','null'),('fields.b0db5971-ba40-4f4c-852e-0e19540f2f4e.settings.uiMode','\"normal\"'),('fields.b0db5971-ba40-4f4c-852e-0e19540f2f4e.translationKeyFormat','null'),('fields.b0db5971-ba40-4f4c-852e-0e19540f2f4e.translationMethod','\"none\"'),('fields.b0db5971-ba40-4f4c-852e-0e19540f2f4e.type','\"craft\\\\fields\\\\PlainText\"'),('fields.b290a2bb-e7c0-444e-a198-911268436c94.columnSuffix','null'),('fields.b290a2bb-e7c0-444e-a198-911268436c94.contentColumnType','\"string\"'),('fields.b290a2bb-e7c0-444e-a198-911268436c94.fieldGroup','\"c38e2159-46dc-46e1-bc98-42bfb5da312f\"'),('fields.b290a2bb-e7c0-444e-a198-911268436c94.handle','\"clientTags\"'),('fields.b290a2bb-e7c0-444e-a198-911268436c94.instructions','\"\"'),('fields.b290a2bb-e7c0-444e-a198-911268436c94.name','\"Client tags\"'),('fields.b290a2bb-e7c0-444e-a198-911268436c94.searchable','false'),('fields.b290a2bb-e7c0-444e-a198-911268436c94.settings.allowLimit','false'),('fields.b290a2bb-e7c0-444e-a198-911268436c94.settings.allowMultipleSources','false'),('fields.b290a2bb-e7c0-444e-a198-911268436c94.settings.allowSelfRelations','false'),('fields.b290a2bb-e7c0-444e-a198-911268436c94.settings.limit','null'),('fields.b290a2bb-e7c0-444e-a198-911268436c94.settings.localizeRelations','false'),('fields.b290a2bb-e7c0-444e-a198-911268436c94.settings.selectionLabel','\"Add a client tag\"'),('fields.b290a2bb-e7c0-444e-a198-911268436c94.settings.showSiteMenu','false'),('fields.b290a2bb-e7c0-444e-a198-911268436c94.settings.source','\"taggroup:f9f7ea29-3116-431c-b030-ca588113a389\"'),('fields.b290a2bb-e7c0-444e-a198-911268436c94.settings.sources','\"*\"'),('fields.b290a2bb-e7c0-444e-a198-911268436c94.settings.targetSiteId','null'),('fields.b290a2bb-e7c0-444e-a198-911268436c94.settings.validateRelatedElements','false'),('fields.b290a2bb-e7c0-444e-a198-911268436c94.settings.viewMode','null'),('fields.b290a2bb-e7c0-444e-a198-911268436c94.translationKeyFormat','null'),('fields.b290a2bb-e7c0-444e-a198-911268436c94.translationMethod','\"site\"'),('fields.b290a2bb-e7c0-444e-a198-911268436c94.type','\"craft\\\\fields\\\\Tags\"'),('fields.b2e01efa-50e7-49b4-8c2c-33ec9581cb1b.columnSuffix','null'),('fields.b2e01efa-50e7-49b4-8c2c-33ec9581cb1b.contentColumnType','\"string\"'),('fields.b2e01efa-50e7-49b4-8c2c-33ec9581cb1b.fieldGroup','\"c38e2159-46dc-46e1-bc98-42bfb5da312f\"'),('fields.b2e01efa-50e7-49b4-8c2c-33ec9581cb1b.handle','\"images\"'),('fields.b2e01efa-50e7-49b4-8c2c-33ec9581cb1b.instructions','\"\"'),('fields.b2e01efa-50e7-49b4-8c2c-33ec9581cb1b.name','\"Images\"'),('fields.b2e01efa-50e7-49b4-8c2c-33ec9581cb1b.searchable','false'),('fields.b2e01efa-50e7-49b4-8c2c-33ec9581cb1b.settings.allowedKinds.0','\"image\"'),('fields.b2e01efa-50e7-49b4-8c2c-33ec9581cb1b.settings.allowSelfRelations','false'),('fields.b2e01efa-50e7-49b4-8c2c-33ec9581cb1b.settings.allowUploads','true'),('fields.b2e01efa-50e7-49b4-8c2c-33ec9581cb1b.settings.defaultUploadLocationSource','\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('fields.b2e01efa-50e7-49b4-8c2c-33ec9581cb1b.settings.defaultUploadLocationSubpath','\"\"'),('fields.b2e01efa-50e7-49b4-8c2c-33ec9581cb1b.settings.limit','\"\"'),('fields.b2e01efa-50e7-49b4-8c2c-33ec9581cb1b.settings.localizeRelations','false'),('fields.b2e01efa-50e7-49b4-8c2c-33ec9581cb1b.settings.previewMode','\"full\"'),('fields.b2e01efa-50e7-49b4-8c2c-33ec9581cb1b.settings.restrictFiles','\"1\"'),('fields.b2e01efa-50e7-49b4-8c2c-33ec9581cb1b.settings.selectionLabel','\"Add an image\"'),('fields.b2e01efa-50e7-49b4-8c2c-33ec9581cb1b.settings.showSiteMenu','false'),('fields.b2e01efa-50e7-49b4-8c2c-33ec9581cb1b.settings.showUnpermittedFiles','false'),('fields.b2e01efa-50e7-49b4-8c2c-33ec9581cb1b.settings.showUnpermittedVolumes','false'),('fields.b2e01efa-50e7-49b4-8c2c-33ec9581cb1b.settings.singleUploadLocationSource','\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('fields.b2e01efa-50e7-49b4-8c2c-33ec9581cb1b.settings.singleUploadLocationSubpath','\"\"'),('fields.b2e01efa-50e7-49b4-8c2c-33ec9581cb1b.settings.source','null'),('fields.b2e01efa-50e7-49b4-8c2c-33ec9581cb1b.settings.sources','\"*\"'),('fields.b2e01efa-50e7-49b4-8c2c-33ec9581cb1b.settings.targetSiteId','null'),('fields.b2e01efa-50e7-49b4-8c2c-33ec9581cb1b.settings.useSingleFolder','false'),('fields.b2e01efa-50e7-49b4-8c2c-33ec9581cb1b.settings.validateRelatedElements','false'),('fields.b2e01efa-50e7-49b4-8c2c-33ec9581cb1b.settings.viewMode','\"list\"'),('fields.b2e01efa-50e7-49b4-8c2c-33ec9581cb1b.translationKeyFormat','null'),('fields.b2e01efa-50e7-49b4-8c2c-33ec9581cb1b.translationMethod','\"site\"'),('fields.b2e01efa-50e7-49b4-8c2c-33ec9581cb1b.type','\"craft\\\\fields\\\\Assets\"'),('fields.b7459780-8fb3-442d-a23b-15dd5d93cdeb.columnSuffix','null'),('fields.b7459780-8fb3-442d-a23b-15dd5d93cdeb.contentColumnType','\"text\"'),('fields.b7459780-8fb3-442d-a23b-15dd5d93cdeb.fieldGroup','\"2b60406c-5779-47b4-bfe7-7fbc8096df95\"'),('fields.b7459780-8fb3-442d-a23b-15dd5d93cdeb.handle','\"biography\"'),('fields.b7459780-8fb3-442d-a23b-15dd5d93cdeb.instructions','\"\"'),('fields.b7459780-8fb3-442d-a23b-15dd5d93cdeb.name','\"Biography\"'),('fields.b7459780-8fb3-442d-a23b-15dd5d93cdeb.searchable','false'),('fields.b7459780-8fb3-442d-a23b-15dd5d93cdeb.settings.byteLimit','null'),('fields.b7459780-8fb3-442d-a23b-15dd5d93cdeb.settings.charLimit','null'),('fields.b7459780-8fb3-442d-a23b-15dd5d93cdeb.settings.code','\"\"'),('fields.b7459780-8fb3-442d-a23b-15dd5d93cdeb.settings.columnType','null'),('fields.b7459780-8fb3-442d-a23b-15dd5d93cdeb.settings.initialRows','\"4\"'),('fields.b7459780-8fb3-442d-a23b-15dd5d93cdeb.settings.multiline','\"1\"'),('fields.b7459780-8fb3-442d-a23b-15dd5d93cdeb.settings.placeholder','null'),('fields.b7459780-8fb3-442d-a23b-15dd5d93cdeb.settings.uiMode','\"normal\"'),('fields.b7459780-8fb3-442d-a23b-15dd5d93cdeb.translationKeyFormat','null'),('fields.b7459780-8fb3-442d-a23b-15dd5d93cdeb.translationMethod','\"none\"'),('fields.b7459780-8fb3-442d-a23b-15dd5d93cdeb.type','\"craft\\\\fields\\\\PlainText\"'),('fields.b77c813f-b3a9-44ef-b3ba-0536e7b07c31.columnSuffix','null'),('fields.b77c813f-b3a9-44ef-b3ba-0536e7b07c31.contentColumnType','\"text\"'),('fields.b77c813f-b3a9-44ef-b3ba-0536e7b07c31.fieldGroup','\"80fbe8fd-2c62-448d-ad9f-7a54ff848431\"'),('fields.b77c813f-b3a9-44ef-b3ba-0536e7b07c31.handle','\"clientName\"'),('fields.b77c813f-b3a9-44ef-b3ba-0536e7b07c31.instructions','\"\"'),('fields.b77c813f-b3a9-44ef-b3ba-0536e7b07c31.name','\"Client Name\"'),('fields.b77c813f-b3a9-44ef-b3ba-0536e7b07c31.searchable','true'),('fields.b77c813f-b3a9-44ef-b3ba-0536e7b07c31.settings.byteLimit','null'),('fields.b77c813f-b3a9-44ef-b3ba-0536e7b07c31.settings.charLimit','null'),('fields.b77c813f-b3a9-44ef-b3ba-0536e7b07c31.settings.code','\"\"'),('fields.b77c813f-b3a9-44ef-b3ba-0536e7b07c31.settings.columnType','null'),('fields.b77c813f-b3a9-44ef-b3ba-0536e7b07c31.settings.initialRows','\"4\"'),('fields.b77c813f-b3a9-44ef-b3ba-0536e7b07c31.settings.multiline','\"\"'),('fields.b77c813f-b3a9-44ef-b3ba-0536e7b07c31.settings.placeholder','null'),('fields.b77c813f-b3a9-44ef-b3ba-0536e7b07c31.settings.uiMode','\"normal\"'),('fields.b77c813f-b3a9-44ef-b3ba-0536e7b07c31.translationKeyFormat','null'),('fields.b77c813f-b3a9-44ef-b3ba-0536e7b07c31.translationMethod','\"none\"'),('fields.b77c813f-b3a9-44ef-b3ba-0536e7b07c31.type','\"craft\\\\fields\\\\PlainText\"'),('fields.bd8711eb-5703-444d-a375-6c42404136d8.columnSuffix','null'),('fields.bd8711eb-5703-444d-a375-6c42404136d8.contentColumnType','\"text\"'),('fields.bd8711eb-5703-444d-a375-6c42404136d8.fieldGroup','\"80fbe8fd-2c62-448d-ad9f-7a54ff848431\"'),('fields.bd8711eb-5703-444d-a375-6c42404136d8.handle','\"jobIdWorkbook\"'),('fields.bd8711eb-5703-444d-a375-6c42404136d8.instructions','\"\"'),('fields.bd8711eb-5703-444d-a375-6c42404136d8.name','\"Job ID (Workbook)\"'),('fields.bd8711eb-5703-444d-a375-6c42404136d8.searchable','true'),('fields.bd8711eb-5703-444d-a375-6c42404136d8.settings.byteLimit','null'),('fields.bd8711eb-5703-444d-a375-6c42404136d8.settings.charLimit','null'),('fields.bd8711eb-5703-444d-a375-6c42404136d8.settings.code','\"\"'),('fields.bd8711eb-5703-444d-a375-6c42404136d8.settings.columnType','null'),('fields.bd8711eb-5703-444d-a375-6c42404136d8.settings.initialRows','\"4\"'),('fields.bd8711eb-5703-444d-a375-6c42404136d8.settings.multiline','\"\"'),('fields.bd8711eb-5703-444d-a375-6c42404136d8.settings.placeholder','null'),('fields.bd8711eb-5703-444d-a375-6c42404136d8.settings.uiMode','\"normal\"'),('fields.bd8711eb-5703-444d-a375-6c42404136d8.translationKeyFormat','null'),('fields.bd8711eb-5703-444d-a375-6c42404136d8.translationMethod','\"none\"'),('fields.bd8711eb-5703-444d-a375-6c42404136d8.type','\"craft\\\\fields\\\\PlainText\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.columnSuffix','null'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.contentColumnType','\"text\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.fieldGroup','\"c38e2159-46dc-46e1-bc98-42bfb5da312f\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.handle','\"optimisedImage\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.instructions','\"\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.name','\"Optimised image\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.searchable','false'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.displayDominantColorPalette','\"1\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.displayLazyLoadPlaceholderImages','\"1\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.displayOptimizedImageVariants','\"1\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.fieldVolumeSettings.__assoc__.0.0','\"upload\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.fieldVolumeSettings.__assoc__.0.1','\"*\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.ignoreFilesOfType.0','\"image/gif\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.0.__assoc__.0.0','\"width\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.0.__assoc__.0.1','\"1536\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.0.__assoc__.1.0','\"useAspectRatio\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.0.__assoc__.1.1','\"\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.0.__assoc__.2.0','\"aspectRatioX\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.0.__assoc__.2.1','\"16\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.0.__assoc__.3.0','\"aspectRatioY\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.0.__assoc__.3.1','\"9\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.0.__assoc__.4.0','\"retinaSizes\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.0.__assoc__.4.1.0','\"1\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.0.__assoc__.4.1.1','\"2\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.0.__assoc__.5.0','\"quality\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.0.__assoc__.5.1','\"82\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.0.__assoc__.6.0','\"format\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.0.__assoc__.6.1','\"\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.1.__assoc__.0.0','\"width\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.1.__assoc__.0.1','\"1280\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.1.__assoc__.1.0','\"useAspectRatio\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.1.__assoc__.1.1','\"\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.1.__assoc__.2.0','\"aspectRatioX\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.1.__assoc__.2.1','\"16\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.1.__assoc__.3.0','\"aspectRatioY\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.1.__assoc__.3.1','\"9\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.1.__assoc__.4.0','\"retinaSizes\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.1.__assoc__.4.1.0','\"1\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.1.__assoc__.4.1.1','\"2\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.1.__assoc__.5.0','\"quality\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.1.__assoc__.5.1','\"82\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.1.__assoc__.6.0','\"format\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.1.__assoc__.6.1','\"\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.2.__assoc__.0.0','\"width\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.2.__assoc__.0.1','\"1024\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.2.__assoc__.1.0','\"useAspectRatio\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.2.__assoc__.1.1','\"\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.2.__assoc__.2.0','\"aspectRatioX\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.2.__assoc__.2.1','\"16\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.2.__assoc__.3.0','\"aspectRatioY\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.2.__assoc__.3.1','\"9\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.2.__assoc__.4.0','\"retinaSizes\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.2.__assoc__.4.1.0','\"1\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.2.__assoc__.4.1.1','\"2\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.2.__assoc__.5.0','\"quality\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.2.__assoc__.5.1','\"82\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.2.__assoc__.6.0','\"format\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.2.__assoc__.6.1','\"\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.3.__assoc__.0.0','\"width\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.3.__assoc__.0.1','\"768\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.3.__assoc__.1.0','\"useAspectRatio\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.3.__assoc__.1.1','\"\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.3.__assoc__.2.0','\"aspectRatioX\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.3.__assoc__.2.1','\"4\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.3.__assoc__.3.0','\"aspectRatioY\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.3.__assoc__.3.1','\"3\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.3.__assoc__.4.0','\"retinaSizes\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.3.__assoc__.4.1.0','\"1\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.3.__assoc__.4.1.1','\"2\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.3.__assoc__.5.0','\"quality\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.3.__assoc__.5.1','\"82\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.3.__assoc__.6.0','\"format\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.3.__assoc__.6.1','\"\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.4.__assoc__.0.0','\"width\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.4.__assoc__.0.1','\"640\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.4.__assoc__.1.0','\"useAspectRatio\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.4.__assoc__.1.1','\"\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.4.__assoc__.2.0','\"aspectRatioX\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.4.__assoc__.2.1','\"4\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.4.__assoc__.3.0','\"aspectRatioY\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.4.__assoc__.3.1','\"3\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.4.__assoc__.4.0','\"retinaSizes\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.4.__assoc__.4.1.0','\"1\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.4.__assoc__.4.1.1','\"2\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.4.__assoc__.5.0','\"quality\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.4.__assoc__.5.1','\"82\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.4.__assoc__.6.0','\"format\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.settings.variants.4.__assoc__.6.1','\"\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.translationKeyFormat','null'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.translationMethod','\"none\"'),('fields.befeea26-c25e-40e1-83f3-10a26b46af54.type','\"nystudio107\\\\imageoptimize\\\\fields\\\\OptimizedImages\"'),('fields.c4967892-52de-4701-96d6-2c2a06e6d47c.columnSuffix','null'),('fields.c4967892-52de-4701-96d6-2c2a06e6d47c.contentColumnType','\"text\"'),('fields.c4967892-52de-4701-96d6-2c2a06e6d47c.fieldGroup','\"949c24d0-491b-49e0-8802-dfed8158b301\"'),('fields.c4967892-52de-4701-96d6-2c2a06e6d47c.handle','\"voiceWhatDoesYourBrandSoundLike\"'),('fields.c4967892-52de-4701-96d6-2c2a06e6d47c.instructions','\"\"'),('fields.c4967892-52de-4701-96d6-2c2a06e6d47c.name','\"Voice â What does your brand sound like\"'),('fields.c4967892-52de-4701-96d6-2c2a06e6d47c.searchable','false'),('fields.c4967892-52de-4701-96d6-2c2a06e6d47c.settings.byteLimit','null'),('fields.c4967892-52de-4701-96d6-2c2a06e6d47c.settings.charLimit','null'),('fields.c4967892-52de-4701-96d6-2c2a06e6d47c.settings.code','\"\"'),('fields.c4967892-52de-4701-96d6-2c2a06e6d47c.settings.columnType','null'),('fields.c4967892-52de-4701-96d6-2c2a06e6d47c.settings.initialRows','\"4\"'),('fields.c4967892-52de-4701-96d6-2c2a06e6d47c.settings.multiline','\"1\"'),('fields.c4967892-52de-4701-96d6-2c2a06e6d47c.settings.placeholder','null'),('fields.c4967892-52de-4701-96d6-2c2a06e6d47c.settings.uiMode','\"normal\"'),('fields.c4967892-52de-4701-96d6-2c2a06e6d47c.translationKeyFormat','null'),('fields.c4967892-52de-4701-96d6-2c2a06e6d47c.translationMethod','\"none\"'),('fields.c4967892-52de-4701-96d6-2c2a06e6d47c.type','\"craft\\\\fields\\\\PlainText\"'),('fields.c4eb0e22-1cb4-48bf-93e9-2bc22719bd40.columnSuffix','null'),('fields.c4eb0e22-1cb4-48bf-93e9-2bc22719bd40.contentColumnType','\"text\"'),('fields.c4eb0e22-1cb4-48bf-93e9-2bc22719bd40.fieldGroup','\"949c24d0-491b-49e0-8802-dfed8158b301\"'),('fields.c4eb0e22-1cb4-48bf-93e9-2bc22719bd40.handle','\"valuesWhatDoYouStandForAndHowDoYouOperate\"'),('fields.c4eb0e22-1cb4-48bf-93e9-2bc22719bd40.instructions','\"\"'),('fields.c4eb0e22-1cb4-48bf-93e9-2bc22719bd40.name','\"Values â What do you stand for and how do you operate?\"'),('fields.c4eb0e22-1cb4-48bf-93e9-2bc22719bd40.searchable','false'),('fields.c4eb0e22-1cb4-48bf-93e9-2bc22719bd40.settings.byteLimit','null'),('fields.c4eb0e22-1cb4-48bf-93e9-2bc22719bd40.settings.charLimit','null'),('fields.c4eb0e22-1cb4-48bf-93e9-2bc22719bd40.settings.code','\"\"'),('fields.c4eb0e22-1cb4-48bf-93e9-2bc22719bd40.settings.columnType','null'),('fields.c4eb0e22-1cb4-48bf-93e9-2bc22719bd40.settings.initialRows','\"4\"'),('fields.c4eb0e22-1cb4-48bf-93e9-2bc22719bd40.settings.multiline','\"1\"'),('fields.c4eb0e22-1cb4-48bf-93e9-2bc22719bd40.settings.placeholder','null'),('fields.c4eb0e22-1cb4-48bf-93e9-2bc22719bd40.settings.uiMode','\"normal\"'),('fields.c4eb0e22-1cb4-48bf-93e9-2bc22719bd40.translationKeyFormat','null'),('fields.c4eb0e22-1cb4-48bf-93e9-2bc22719bd40.translationMethod','\"none\"'),('fields.c4eb0e22-1cb4-48bf-93e9-2bc22719bd40.type','\"craft\\\\fields\\\\PlainText\"'),('fields.c9806c08-39e9-4277-ba95-708404c27b4c.columnSuffix','null'),('fields.c9806c08-39e9-4277-ba95-708404c27b4c.contentColumnType','\"text\"'),('fields.c9806c08-39e9-4277-ba95-708404c27b4c.fieldGroup','\"a93becfb-6496-4b2f-93d5-cf2691ada3d7\"'),('fields.c9806c08-39e9-4277-ba95-708404c27b4c.handle','\"sectionTitle\"'),('fields.c9806c08-39e9-4277-ba95-708404c27b4c.instructions','\"\"'),('fields.c9806c08-39e9-4277-ba95-708404c27b4c.name','\"Section title\"'),('fields.c9806c08-39e9-4277-ba95-708404c27b4c.searchable','false'),('fields.c9806c08-39e9-4277-ba95-708404c27b4c.settings.byteLimit','null'),('fields.c9806c08-39e9-4277-ba95-708404c27b4c.settings.charLimit','null'),('fields.c9806c08-39e9-4277-ba95-708404c27b4c.settings.code','\"\"'),('fields.c9806c08-39e9-4277-ba95-708404c27b4c.settings.columnType','null'),('fields.c9806c08-39e9-4277-ba95-708404c27b4c.settings.initialRows','\"4\"'),('fields.c9806c08-39e9-4277-ba95-708404c27b4c.settings.multiline','\"\"'),('fields.c9806c08-39e9-4277-ba95-708404c27b4c.settings.placeholder','null'),('fields.c9806c08-39e9-4277-ba95-708404c27b4c.settings.uiMode','\"normal\"'),('fields.c9806c08-39e9-4277-ba95-708404c27b4c.translationKeyFormat','null'),('fields.c9806c08-39e9-4277-ba95-708404c27b4c.translationMethod','\"none\"'),('fields.c9806c08-39e9-4277-ba95-708404c27b4c.type','\"craft\\\\fields\\\\PlainText\"'),('fields.ca583aae-f20e-44f7-889c-684e700e84f4.columnSuffix','\"srzybvbu\"'),('fields.ca583aae-f20e-44f7-889c-684e700e84f4.contentColumnType','\"text\"'),('fields.ca583aae-f20e-44f7-889c-684e700e84f4.fieldGroup','\"84d29012-402c-44d3-8599-938ab66e3b97\"'),('fields.ca583aae-f20e-44f7-889c-684e700e84f4.handle','\"quoteProbability\"'),('fields.ca583aae-f20e-44f7-889c-684e700e84f4.instructions','\"\"'),('fields.ca583aae-f20e-44f7-889c-684e700e84f4.name','\"Quote probability\"'),('fields.ca583aae-f20e-44f7-889c-684e700e84f4.searchable','true'),('fields.ca583aae-f20e-44f7-889c-684e700e84f4.settings.byteLimit','null'),('fields.ca583aae-f20e-44f7-889c-684e700e84f4.settings.charLimit','null'),('fields.ca583aae-f20e-44f7-889c-684e700e84f4.settings.code','\"\"'),('fields.ca583aae-f20e-44f7-889c-684e700e84f4.settings.columnType','null'),('fields.ca583aae-f20e-44f7-889c-684e700e84f4.settings.initialRows','\"4\"'),('fields.ca583aae-f20e-44f7-889c-684e700e84f4.settings.multiline','\"\"'),('fields.ca583aae-f20e-44f7-889c-684e700e84f4.settings.placeholder','null'),('fields.ca583aae-f20e-44f7-889c-684e700e84f4.settings.uiMode','\"normal\"'),('fields.ca583aae-f20e-44f7-889c-684e700e84f4.translationKeyFormat','null'),('fields.ca583aae-f20e-44f7-889c-684e700e84f4.translationMethod','\"none\"'),('fields.ca583aae-f20e-44f7-889c-684e700e84f4.type','\"craft\\\\fields\\\\PlainText\"'),('fields.cafab2ca-5789-4f06-ad5d-6078f78fb5d9.columnSuffix','null'),('fields.cafab2ca-5789-4f06-ad5d-6078f78fb5d9.contentColumnType','\"text\"'),('fields.cafab2ca-5789-4f06-ad5d-6078f78fb5d9.fieldGroup','\"949c24d0-491b-49e0-8802-dfed8158b301\"'),('fields.cafab2ca-5789-4f06-ad5d-6078f78fb5d9.handle','\"yourPeople\"'),('fields.cafab2ca-5789-4f06-ad5d-6078f78fb5d9.instructions','\"\"'),('fields.cafab2ca-5789-4f06-ad5d-6078f78fb5d9.name','\"Your people:\"'),('fields.cafab2ca-5789-4f06-ad5d-6078f78fb5d9.searchable','false'),('fields.cafab2ca-5789-4f06-ad5d-6078f78fb5d9.settings.byteLimit','null'),('fields.cafab2ca-5789-4f06-ad5d-6078f78fb5d9.settings.charLimit','null'),('fields.cafab2ca-5789-4f06-ad5d-6078f78fb5d9.settings.code','\"\"'),('fields.cafab2ca-5789-4f06-ad5d-6078f78fb5d9.settings.columnType','null'),('fields.cafab2ca-5789-4f06-ad5d-6078f78fb5d9.settings.initialRows','\"4\"'),('fields.cafab2ca-5789-4f06-ad5d-6078f78fb5d9.settings.multiline','\"1\"'),('fields.cafab2ca-5789-4f06-ad5d-6078f78fb5d9.settings.placeholder','null'),('fields.cafab2ca-5789-4f06-ad5d-6078f78fb5d9.settings.uiMode','\"normal\"'),('fields.cafab2ca-5789-4f06-ad5d-6078f78fb5d9.translationKeyFormat','null'),('fields.cafab2ca-5789-4f06-ad5d-6078f78fb5d9.translationMethod','\"none\"'),('fields.cafab2ca-5789-4f06-ad5d-6078f78fb5d9.type','\"craft\\\\fields\\\\PlainText\"'),('fields.cf34f699-cd72-4f21-8dc0-13f2a6d993ef.columnSuffix','\"ofeozuyc\"'),('fields.cf34f699-cd72-4f21-8dc0-13f2a6d993ef.contentColumnType','\"string\"'),('fields.cf34f699-cd72-4f21-8dc0-13f2a6d993ef.fieldGroup','\"a93becfb-6496-4b2f-93d5-cf2691ada3d7\"'),('fields.cf34f699-cd72-4f21-8dc0-13f2a6d993ef.handle','\"mediaAlignment\"'),('fields.cf34f699-cd72-4f21-8dc0-13f2a6d993ef.instructions','\"\"'),('fields.cf34f699-cd72-4f21-8dc0-13f2a6d993ef.name','\"Media alignment\"'),('fields.cf34f699-cd72-4f21-8dc0-13f2a6d993ef.searchable','false'),('fields.cf34f699-cd72-4f21-8dc0-13f2a6d993ef.settings.optgroups','true'),('fields.cf34f699-cd72-4f21-8dc0-13f2a6d993ef.settings.options.0.__assoc__.0.0','\"label\"'),('fields.cf34f699-cd72-4f21-8dc0-13f2a6d993ef.settings.options.0.__assoc__.0.1','\"left\"'),('fields.cf34f699-cd72-4f21-8dc0-13f2a6d993ef.settings.options.0.__assoc__.1.0','\"value\"'),('fields.cf34f699-cd72-4f21-8dc0-13f2a6d993ef.settings.options.0.__assoc__.1.1','\"Left\"'),('fields.cf34f699-cd72-4f21-8dc0-13f2a6d993ef.settings.options.0.__assoc__.2.0','\"default\"'),('fields.cf34f699-cd72-4f21-8dc0-13f2a6d993ef.settings.options.0.__assoc__.2.1','\"\"'),('fields.cf34f699-cd72-4f21-8dc0-13f2a6d993ef.settings.options.1.__assoc__.0.0','\"label\"'),('fields.cf34f699-cd72-4f21-8dc0-13f2a6d993ef.settings.options.1.__assoc__.0.1','\"right\"'),('fields.cf34f699-cd72-4f21-8dc0-13f2a6d993ef.settings.options.1.__assoc__.1.0','\"value\"'),('fields.cf34f699-cd72-4f21-8dc0-13f2a6d993ef.settings.options.1.__assoc__.1.1','\"Right\"'),('fields.cf34f699-cd72-4f21-8dc0-13f2a6d993ef.settings.options.1.__assoc__.2.0','\"default\"'),('fields.cf34f699-cd72-4f21-8dc0-13f2a6d993ef.settings.options.1.__assoc__.2.1','\"\"'),('fields.cf34f699-cd72-4f21-8dc0-13f2a6d993ef.translationKeyFormat','null'),('fields.cf34f699-cd72-4f21-8dc0-13f2a6d993ef.translationMethod','\"none\"'),('fields.cf34f699-cd72-4f21-8dc0-13f2a6d993ef.type','\"craft\\\\fields\\\\Dropdown\"'),('fields.d18bb60b-1374-45fc-9f7a-8836cba975c2.columnSuffix','null'),('fields.d18bb60b-1374-45fc-9f7a-8836cba975c2.contentColumnType','\"text\"'),('fields.d18bb60b-1374-45fc-9f7a-8836cba975c2.fieldGroup','\"949c24d0-491b-49e0-8802-dfed8158b301\"'),('fields.d18bb60b-1374-45fc-9f7a-8836cba975c2.handle','\"newNeedsInclude\"'),('fields.d18bb60b-1374-45fc-9f7a-8836cba975c2.instructions','\"\"'),('fields.d18bb60b-1374-45fc-9f7a-8836cba975c2.name','\"New needs include:\"'),('fields.d18bb60b-1374-45fc-9f7a-8836cba975c2.searchable','false'),('fields.d18bb60b-1374-45fc-9f7a-8836cba975c2.settings.byteLimit','null'),('fields.d18bb60b-1374-45fc-9f7a-8836cba975c2.settings.charLimit','null'),('fields.d18bb60b-1374-45fc-9f7a-8836cba975c2.settings.code','\"\"'),('fields.d18bb60b-1374-45fc-9f7a-8836cba975c2.settings.columnType','null'),('fields.d18bb60b-1374-45fc-9f7a-8836cba975c2.settings.initialRows','\"4\"'),('fields.d18bb60b-1374-45fc-9f7a-8836cba975c2.settings.multiline','\"1\"'),('fields.d18bb60b-1374-45fc-9f7a-8836cba975c2.settings.placeholder','null'),('fields.d18bb60b-1374-45fc-9f7a-8836cba975c2.settings.uiMode','\"normal\"'),('fields.d18bb60b-1374-45fc-9f7a-8836cba975c2.translationKeyFormat','null'),('fields.d18bb60b-1374-45fc-9f7a-8836cba975c2.translationMethod','\"none\"'),('fields.d18bb60b-1374-45fc-9f7a-8836cba975c2.type','\"craft\\\\fields\\\\PlainText\"'),('fields.d3a8c8b6-f737-460c-81dc-9818db4a2627.columnSuffix','null'),('fields.d3a8c8b6-f737-460c-81dc-9818db4a2627.contentColumnType','\"string\"'),('fields.d3a8c8b6-f737-460c-81dc-9818db4a2627.fieldGroup','\"c38e2159-46dc-46e1-bc98-42bfb5da312f\"'),('fields.d3a8c8b6-f737-460c-81dc-9818db4a2627.handle','\"contentBuilder\"'),('fields.d3a8c8b6-f737-460c-81dc-9818db4a2627.instructions','\"\"'),('fields.d3a8c8b6-f737-460c-81dc-9818db4a2627.name','\"Content builder\"'),('fields.d3a8c8b6-f737-460c-81dc-9818db4a2627.searchable','false'),('fields.d3a8c8b6-f737-460c-81dc-9818db4a2627.settings.contentTable','\"{{%matrixcontent_contentbuilder}}\"'),('fields.d3a8c8b6-f737-460c-81dc-9818db4a2627.settings.maxBlocks','\"\"'),('fields.d3a8c8b6-f737-460c-81dc-9818db4a2627.settings.minBlocks','\"\"'),('fields.d3a8c8b6-f737-460c-81dc-9818db4a2627.settings.propagationKeyFormat','null'),('fields.d3a8c8b6-f737-460c-81dc-9818db4a2627.settings.propagationMethod','\"all\"'),('fields.d3a8c8b6-f737-460c-81dc-9818db4a2627.translationKeyFormat','null'),('fields.d3a8c8b6-f737-460c-81dc-9818db4a2627.translationMethod','\"site\"'),('fields.d3a8c8b6-f737-460c-81dc-9818db4a2627.type','\"craft\\\\fields\\\\Matrix\"'),('fields.d49f872f-4325-4ed2-b381-4eb04d0a576b.columnSuffix','null'),('fields.d49f872f-4325-4ed2-b381-4eb04d0a576b.contentColumnType','\"string\"'),('fields.d49f872f-4325-4ed2-b381-4eb04d0a576b.fieldGroup','\"9c07c80e-a4f6-4e46-a7c2-e7d5839f2aea\"'),('fields.d49f872f-4325-4ed2-b381-4eb04d0a576b.handle','\"homepageSlideshow\"'),('fields.d49f872f-4325-4ed2-b381-4eb04d0a576b.instructions','\"\"'),('fields.d49f872f-4325-4ed2-b381-4eb04d0a576b.name','\"Homepage slideshow\"'),('fields.d49f872f-4325-4ed2-b381-4eb04d0a576b.searchable','false'),('fields.d49f872f-4325-4ed2-b381-4eb04d0a576b.settings.contentTable','\"{{%matrixcontent_homepageslideshow}}\"'),('fields.d49f872f-4325-4ed2-b381-4eb04d0a576b.settings.maxBlocks','\"\"'),('fields.d49f872f-4325-4ed2-b381-4eb04d0a576b.settings.minBlocks','\"\"'),('fields.d49f872f-4325-4ed2-b381-4eb04d0a576b.settings.propagationKeyFormat','null'),('fields.d49f872f-4325-4ed2-b381-4eb04d0a576b.settings.propagationMethod','\"all\"'),('fields.d49f872f-4325-4ed2-b381-4eb04d0a576b.translationKeyFormat','null'),('fields.d49f872f-4325-4ed2-b381-4eb04d0a576b.translationMethod','\"site\"'),('fields.d49f872f-4325-4ed2-b381-4eb04d0a576b.type','\"craft\\\\fields\\\\Matrix\"'),('fields.d4f97e13-677b-40d7-a802-929455984b64.columnSuffix','\"ltukvako\"'),('fields.d4f97e13-677b-40d7-a802-929455984b64.contentColumnType','\"text\"'),('fields.d4f97e13-677b-40d7-a802-929455984b64.fieldGroup','\"a401651e-3e05-4a6d-adf0-8019688b630a\"'),('fields.d4f97e13-677b-40d7-a802-929455984b64.handle','\"seoTitle\"'),('fields.d4f97e13-677b-40d7-a802-929455984b64.instructions','\"\"'),('fields.d4f97e13-677b-40d7-a802-929455984b64.name','\"SEO Title\"'),('fields.d4f97e13-677b-40d7-a802-929455984b64.searchable','false'),('fields.d4f97e13-677b-40d7-a802-929455984b64.settings.byteLimit','null'),('fields.d4f97e13-677b-40d7-a802-929455984b64.settings.charLimit','null'),('fields.d4f97e13-677b-40d7-a802-929455984b64.settings.code','\"\"'),('fields.d4f97e13-677b-40d7-a802-929455984b64.settings.columnType','null'),('fields.d4f97e13-677b-40d7-a802-929455984b64.settings.initialRows','\"4\"'),('fields.d4f97e13-677b-40d7-a802-929455984b64.settings.multiline','\"\"'),('fields.d4f97e13-677b-40d7-a802-929455984b64.settings.placeholder','null'),('fields.d4f97e13-677b-40d7-a802-929455984b64.settings.uiMode','\"normal\"'),('fields.d4f97e13-677b-40d7-a802-929455984b64.translationKeyFormat','null'),('fields.d4f97e13-677b-40d7-a802-929455984b64.translationMethod','\"none\"'),('fields.d4f97e13-677b-40d7-a802-929455984b64.type','\"craft\\\\fields\\\\PlainText\"'),('fields.d545dd13-412a-49ee-9c3e-e4f359054850.columnSuffix','null'),('fields.d545dd13-412a-49ee-9c3e-e4f359054850.contentColumnType','\"text\"'),('fields.d545dd13-412a-49ee-9c3e-e4f359054850.fieldGroup','\"949c24d0-491b-49e0-8802-dfed8158b301\"'),('fields.d545dd13-412a-49ee-9c3e-e4f359054850.handle','\"competitors\"'),('fields.d545dd13-412a-49ee-9c3e-e4f359054850.instructions','\"\"'),('fields.d545dd13-412a-49ee-9c3e-e4f359054850.name','\"Competitors:\"'),('fields.d545dd13-412a-49ee-9c3e-e4f359054850.searchable','false'),('fields.d545dd13-412a-49ee-9c3e-e4f359054850.settings.byteLimit','null'),('fields.d545dd13-412a-49ee-9c3e-e4f359054850.settings.charLimit','null'),('fields.d545dd13-412a-49ee-9c3e-e4f359054850.settings.code','\"\"'),('fields.d545dd13-412a-49ee-9c3e-e4f359054850.settings.columnType','null'),('fields.d545dd13-412a-49ee-9c3e-e4f359054850.settings.initialRows','\"4\"'),('fields.d545dd13-412a-49ee-9c3e-e4f359054850.settings.multiline','\"1\"'),('fields.d545dd13-412a-49ee-9c3e-e4f359054850.settings.placeholder','null'),('fields.d545dd13-412a-49ee-9c3e-e4f359054850.settings.uiMode','\"normal\"'),('fields.d545dd13-412a-49ee-9c3e-e4f359054850.translationKeyFormat','null'),('fields.d545dd13-412a-49ee-9c3e-e4f359054850.translationMethod','\"none\"'),('fields.d545dd13-412a-49ee-9c3e-e4f359054850.type','\"craft\\\\fields\\\\PlainText\"'),('fields.d6df2896-4499-43ee-97c1-0ff16e3072d0.columnSuffix','null'),('fields.d6df2896-4499-43ee-97c1-0ff16e3072d0.contentColumnType','\"text\"'),('fields.d6df2896-4499-43ee-97c1-0ff16e3072d0.fieldGroup','\"949c24d0-491b-49e0-8802-dfed8158b301\"'),('fields.d6df2896-4499-43ee-97c1-0ff16e3072d0.handle','\"yourCustomers\"'),('fields.d6df2896-4499-43ee-97c1-0ff16e3072d0.instructions','\"\"'),('fields.d6df2896-4499-43ee-97c1-0ff16e3072d0.name','\"Your customers:\"'),('fields.d6df2896-4499-43ee-97c1-0ff16e3072d0.searchable','false'),('fields.d6df2896-4499-43ee-97c1-0ff16e3072d0.settings.byteLimit','null'),('fields.d6df2896-4499-43ee-97c1-0ff16e3072d0.settings.charLimit','null'),('fields.d6df2896-4499-43ee-97c1-0ff16e3072d0.settings.code','\"\"'),('fields.d6df2896-4499-43ee-97c1-0ff16e3072d0.settings.columnType','null'),('fields.d6df2896-4499-43ee-97c1-0ff16e3072d0.settings.initialRows','\"4\"'),('fields.d6df2896-4499-43ee-97c1-0ff16e3072d0.settings.multiline','\"1\"'),('fields.d6df2896-4499-43ee-97c1-0ff16e3072d0.settings.placeholder','null'),('fields.d6df2896-4499-43ee-97c1-0ff16e3072d0.settings.uiMode','\"normal\"'),('fields.d6df2896-4499-43ee-97c1-0ff16e3072d0.translationKeyFormat','null'),('fields.d6df2896-4499-43ee-97c1-0ff16e3072d0.translationMethod','\"none\"'),('fields.d6df2896-4499-43ee-97c1-0ff16e3072d0.type','\"craft\\\\fields\\\\PlainText\"'),('fields.d7979c8a-d87b-409d-8c05-fa64e62b86b1.columnSuffix','null'),('fields.d7979c8a-d87b-409d-8c05-fa64e62b86b1.contentColumnType','\"text\"'),('fields.d7979c8a-d87b-409d-8c05-fa64e62b86b1.fieldGroup','\"949c24d0-491b-49e0-8802-dfed8158b301\"'),('fields.d7979c8a-d87b-409d-8c05-fa64e62b86b1.handle','\"budgets\"'),('fields.d7979c8a-d87b-409d-8c05-fa64e62b86b1.instructions','\"\"'),('fields.d7979c8a-d87b-409d-8c05-fa64e62b86b1.name','\"Budgets â If youâre completing this form outside of a commissioned project, and budgets and pricing are in your remit, what have you got allocated towards this work, roughly or specifically?\"'),('fields.d7979c8a-d87b-409d-8c05-fa64e62b86b1.searchable','false'),('fields.d7979c8a-d87b-409d-8c05-fa64e62b86b1.settings.byteLimit','null'),('fields.d7979c8a-d87b-409d-8c05-fa64e62b86b1.settings.charLimit','null'),('fields.d7979c8a-d87b-409d-8c05-fa64e62b86b1.settings.code','\"\"'),('fields.d7979c8a-d87b-409d-8c05-fa64e62b86b1.settings.columnType','null'),('fields.d7979c8a-d87b-409d-8c05-fa64e62b86b1.settings.initialRows','\"4\"'),('fields.d7979c8a-d87b-409d-8c05-fa64e62b86b1.settings.multiline','\"1\"'),('fields.d7979c8a-d87b-409d-8c05-fa64e62b86b1.settings.placeholder','null'),('fields.d7979c8a-d87b-409d-8c05-fa64e62b86b1.settings.uiMode','\"normal\"'),('fields.d7979c8a-d87b-409d-8c05-fa64e62b86b1.translationKeyFormat','null'),('fields.d7979c8a-d87b-409d-8c05-fa64e62b86b1.translationMethod','\"none\"'),('fields.d7979c8a-d87b-409d-8c05-fa64e62b86b1.type','\"craft\\\\fields\\\\PlainText\"'),('fields.da858be0-dc01-44ea-9fc5-f9c6848cc9af.columnSuffix','null'),('fields.da858be0-dc01-44ea-9fc5-f9c6848cc9af.contentColumnType','\"string\"'),('fields.da858be0-dc01-44ea-9fc5-f9c6848cc9af.fieldGroup','\"a93becfb-6496-4b2f-93d5-cf2691ada3d7\"'),('fields.da858be0-dc01-44ea-9fc5-f9c6848cc9af.handle','\"textBuilder\"'),('fields.da858be0-dc01-44ea-9fc5-f9c6848cc9af.instructions','\"\"'),('fields.da858be0-dc01-44ea-9fc5-f9c6848cc9af.name','\"Text builder\"'),('fields.da858be0-dc01-44ea-9fc5-f9c6848cc9af.searchable','false'),('fields.da858be0-dc01-44ea-9fc5-f9c6848cc9af.settings.contentTable','\"{{%matrixcontent_textbuilder}}\"'),('fields.da858be0-dc01-44ea-9fc5-f9c6848cc9af.settings.maxBlocks','\"\"'),('fields.da858be0-dc01-44ea-9fc5-f9c6848cc9af.settings.minBlocks','\"\"'),('fields.da858be0-dc01-44ea-9fc5-f9c6848cc9af.settings.propagationKeyFormat','null'),('fields.da858be0-dc01-44ea-9fc5-f9c6848cc9af.settings.propagationMethod','\"all\"'),('fields.da858be0-dc01-44ea-9fc5-f9c6848cc9af.translationKeyFormat','null'),('fields.da858be0-dc01-44ea-9fc5-f9c6848cc9af.translationMethod','\"site\"'),('fields.da858be0-dc01-44ea-9fc5-f9c6848cc9af.type','\"craft\\\\fields\\\\Matrix\"'),('fields.dee3103c-72a1-4431-9401-9980ed81d1cd.columnSuffix','null'),('fields.dee3103c-72a1-4431-9401-9980ed81d1cd.contentColumnType','\"text\"'),('fields.dee3103c-72a1-4431-9401-9980ed81d1cd.fieldGroup','\"2b60406c-5779-47b4-bfe7-7fbc8096df95\"'),('fields.dee3103c-72a1-4431-9401-9980ed81d1cd.handle','\"position\"'),('fields.dee3103c-72a1-4431-9401-9980ed81d1cd.instructions','\"\"'),('fields.dee3103c-72a1-4431-9401-9980ed81d1cd.name','\"Position\"'),('fields.dee3103c-72a1-4431-9401-9980ed81d1cd.searchable','false'),('fields.dee3103c-72a1-4431-9401-9980ed81d1cd.settings.byteLimit','null'),('fields.dee3103c-72a1-4431-9401-9980ed81d1cd.settings.charLimit','null'),('fields.dee3103c-72a1-4431-9401-9980ed81d1cd.settings.code','\"\"'),('fields.dee3103c-72a1-4431-9401-9980ed81d1cd.settings.columnType','null'),('fields.dee3103c-72a1-4431-9401-9980ed81d1cd.settings.initialRows','\"4\"'),('fields.dee3103c-72a1-4431-9401-9980ed81d1cd.settings.multiline','\"\"'),('fields.dee3103c-72a1-4431-9401-9980ed81d1cd.settings.placeholder','null'),('fields.dee3103c-72a1-4431-9401-9980ed81d1cd.settings.uiMode','\"normal\"'),('fields.dee3103c-72a1-4431-9401-9980ed81d1cd.translationKeyFormat','null'),('fields.dee3103c-72a1-4431-9401-9980ed81d1cd.translationMethod','\"none\"'),('fields.dee3103c-72a1-4431-9401-9980ed81d1cd.type','\"craft\\\\fields\\\\PlainText\"'),('fields.e0bfd99a-993b-47d0-963d-ef7c179942bc.columnSuffix','null'),('fields.e0bfd99a-993b-47d0-963d-ef7c179942bc.contentColumnType','\"text\"'),('fields.e0bfd99a-993b-47d0-963d-ef7c179942bc.fieldGroup','\"80fbe8fd-2c62-448d-ad9f-7a54ff848431\"'),('fields.e0bfd99a-993b-47d0-963d-ef7c179942bc.handle','\"jobEndDate\"'),('fields.e0bfd99a-993b-47d0-963d-ef7c179942bc.instructions','\"\"'),('fields.e0bfd99a-993b-47d0-963d-ef7c179942bc.name','\"Job end date\"'),('fields.e0bfd99a-993b-47d0-963d-ef7c179942bc.searchable','false'),('fields.e0bfd99a-993b-47d0-963d-ef7c179942bc.settings.byteLimit','null'),('fields.e0bfd99a-993b-47d0-963d-ef7c179942bc.settings.charLimit','null'),('fields.e0bfd99a-993b-47d0-963d-ef7c179942bc.settings.code','\"\"'),('fields.e0bfd99a-993b-47d0-963d-ef7c179942bc.settings.columnType','null'),('fields.e0bfd99a-993b-47d0-963d-ef7c179942bc.settings.initialRows','\"4\"'),('fields.e0bfd99a-993b-47d0-963d-ef7c179942bc.settings.multiline','\"\"'),('fields.e0bfd99a-993b-47d0-963d-ef7c179942bc.settings.placeholder','null'),('fields.e0bfd99a-993b-47d0-963d-ef7c179942bc.settings.uiMode','\"normal\"'),('fields.e0bfd99a-993b-47d0-963d-ef7c179942bc.translationKeyFormat','null'),('fields.e0bfd99a-993b-47d0-963d-ef7c179942bc.translationMethod','\"none\"'),('fields.e0bfd99a-993b-47d0-963d-ef7c179942bc.type','\"craft\\\\fields\\\\PlainText\"'),('fields.e68f08fa-4e2a-4590-8cc5-07f7fa015bfb.columnSuffix','null'),('fields.e68f08fa-4e2a-4590-8cc5-07f7fa015bfb.contentColumnType','\"text\"'),('fields.e68f08fa-4e2a-4590-8cc5-07f7fa015bfb.fieldGroup','\"581f3b95-4fdd-4b29-a806-753edb34ee8c\"'),('fields.e68f08fa-4e2a-4590-8cc5-07f7fa015bfb.handle','\"totalOperatingExpenses\"'),('fields.e68f08fa-4e2a-4590-8cc5-07f7fa015bfb.instructions','\"\"'),('fields.e68f08fa-4e2a-4590-8cc5-07f7fa015bfb.name','\"Total operating expenses\"'),('fields.e68f08fa-4e2a-4590-8cc5-07f7fa015bfb.searchable','false'),('fields.e68f08fa-4e2a-4590-8cc5-07f7fa015bfb.settings.byteLimit','null'),('fields.e68f08fa-4e2a-4590-8cc5-07f7fa015bfb.settings.charLimit','null'),('fields.e68f08fa-4e2a-4590-8cc5-07f7fa015bfb.settings.code','\"\"'),('fields.e68f08fa-4e2a-4590-8cc5-07f7fa015bfb.settings.columnType','null'),('fields.e68f08fa-4e2a-4590-8cc5-07f7fa015bfb.settings.initialRows','\"4\"'),('fields.e68f08fa-4e2a-4590-8cc5-07f7fa015bfb.settings.multiline','\"\"'),('fields.e68f08fa-4e2a-4590-8cc5-07f7fa015bfb.settings.placeholder','null'),('fields.e68f08fa-4e2a-4590-8cc5-07f7fa015bfb.settings.uiMode','\"normal\"'),('fields.e68f08fa-4e2a-4590-8cc5-07f7fa015bfb.translationKeyFormat','null'),('fields.e68f08fa-4e2a-4590-8cc5-07f7fa015bfb.translationMethod','\"none\"'),('fields.e68f08fa-4e2a-4590-8cc5-07f7fa015bfb.type','\"craft\\\\fields\\\\PlainText\"'),('fields.e6a934e5-14f7-4866-82bb-e3c114038533.columnSuffix','\"mmqrahtq\"'),('fields.e6a934e5-14f7-4866-82bb-e3c114038533.contentColumnType','\"text\"'),('fields.e6a934e5-14f7-4866-82bb-e3c114038533.fieldGroup','\"c38e2159-46dc-46e1-bc98-42bfb5da312f\"'),('fields.e6a934e5-14f7-4866-82bb-e3c114038533.handle','\"plainText\"'),('fields.e6a934e5-14f7-4866-82bb-e3c114038533.instructions','\"\"'),('fields.e6a934e5-14f7-4866-82bb-e3c114038533.name','\"Plain text\"'),('fields.e6a934e5-14f7-4866-82bb-e3c114038533.searchable','false'),('fields.e6a934e5-14f7-4866-82bb-e3c114038533.settings.byteLimit','null'),('fields.e6a934e5-14f7-4866-82bb-e3c114038533.settings.charLimit','null'),('fields.e6a934e5-14f7-4866-82bb-e3c114038533.settings.code','\"\"'),('fields.e6a934e5-14f7-4866-82bb-e3c114038533.settings.columnType','null'),('fields.e6a934e5-14f7-4866-82bb-e3c114038533.settings.initialRows','\"4\"'),('fields.e6a934e5-14f7-4866-82bb-e3c114038533.settings.multiline','\"1\"'),('fields.e6a934e5-14f7-4866-82bb-e3c114038533.settings.placeholder','null'),('fields.e6a934e5-14f7-4866-82bb-e3c114038533.settings.uiMode','\"normal\"'),('fields.e6a934e5-14f7-4866-82bb-e3c114038533.translationKeyFormat','null'),('fields.e6a934e5-14f7-4866-82bb-e3c114038533.translationMethod','\"none\"'),('fields.e6a934e5-14f7-4866-82bb-e3c114038533.type','\"craft\\\\fields\\\\PlainText\"'),('fields.e6b4c3f6-bdd0-48df-834f-892582227089.columnSuffix','null'),('fields.e6b4c3f6-bdd0-48df-834f-892582227089.contentColumnType','\"text\"'),('fields.e6b4c3f6-bdd0-48df-834f-892582227089.fieldGroup','\"581f3b95-4fdd-4b29-a806-753edb34ee8c\"'),('fields.e6b4c3f6-bdd0-48df-834f-892582227089.handle','\"atoCashFlowBoost\"'),('fields.e6b4c3f6-bdd0-48df-834f-892582227089.instructions','\"\"'),('fields.e6b4c3f6-bdd0-48df-834f-892582227089.name','\"ATO Cash Flow Boost\"'),('fields.e6b4c3f6-bdd0-48df-834f-892582227089.searchable','false'),('fields.e6b4c3f6-bdd0-48df-834f-892582227089.settings.byteLimit','null'),('fields.e6b4c3f6-bdd0-48df-834f-892582227089.settings.charLimit','null'),('fields.e6b4c3f6-bdd0-48df-834f-892582227089.settings.code','\"\"'),('fields.e6b4c3f6-bdd0-48df-834f-892582227089.settings.columnType','null'),('fields.e6b4c3f6-bdd0-48df-834f-892582227089.settings.initialRows','\"4\"'),('fields.e6b4c3f6-bdd0-48df-834f-892582227089.settings.multiline','\"\"'),('fields.e6b4c3f6-bdd0-48df-834f-892582227089.settings.placeholder','null'),('fields.e6b4c3f6-bdd0-48df-834f-892582227089.settings.uiMode','\"normal\"'),('fields.e6b4c3f6-bdd0-48df-834f-892582227089.translationKeyFormat','null'),('fields.e6b4c3f6-bdd0-48df-834f-892582227089.translationMethod','\"none\"'),('fields.e6b4c3f6-bdd0-48df-834f-892582227089.type','\"craft\\\\fields\\\\PlainText\"'),('fields.e752f760-0ca6-48e7-8efc-0453ac18ced7.columnSuffix','null'),('fields.e752f760-0ca6-48e7-8efc-0453ac18ced7.contentColumnType','\"text\"'),('fields.e752f760-0ca6-48e7-8efc-0453ac18ced7.fieldGroup','\"949c24d0-491b-49e0-8802-dfed8158b301\"'),('fields.e752f760-0ca6-48e7-8efc-0453ac18ced7.handle','\"contemporariesOrganisationsSimilarToUsOrThatWeAdmire\"'),('fields.e752f760-0ca6-48e7-8efc-0453ac18ced7.instructions','\"\"'),('fields.e752f760-0ca6-48e7-8efc-0453ac18ced7.name','\"Contemporaries - organisations similar to us or that we admire:\"'),('fields.e752f760-0ca6-48e7-8efc-0453ac18ced7.searchable','false'),('fields.e752f760-0ca6-48e7-8efc-0453ac18ced7.settings.byteLimit','null'),('fields.e752f760-0ca6-48e7-8efc-0453ac18ced7.settings.charLimit','null'),('fields.e752f760-0ca6-48e7-8efc-0453ac18ced7.settings.code','\"\"'),('fields.e752f760-0ca6-48e7-8efc-0453ac18ced7.settings.columnType','null'),('fields.e752f760-0ca6-48e7-8efc-0453ac18ced7.settings.initialRows','\"4\"'),('fields.e752f760-0ca6-48e7-8efc-0453ac18ced7.settings.multiline','\"1\"'),('fields.e752f760-0ca6-48e7-8efc-0453ac18ced7.settings.placeholder','null'),('fields.e752f760-0ca6-48e7-8efc-0453ac18ced7.settings.uiMode','\"normal\"'),('fields.e752f760-0ca6-48e7-8efc-0453ac18ced7.translationKeyFormat','null'),('fields.e752f760-0ca6-48e7-8efc-0453ac18ced7.translationMethod','\"none\"'),('fields.e752f760-0ca6-48e7-8efc-0453ac18ced7.type','\"craft\\\\fields\\\\PlainText\"'),('fields.e7ac7afe-110f-424b-8df7-cf443f223406.columnSuffix','\"kossowoo\"'),('fields.e7ac7afe-110f-424b-8df7-cf443f223406.contentColumnType','\"boolean\"'),('fields.e7ac7afe-110f-424b-8df7-cf443f223406.fieldGroup','\"d73b1e0a-7e53-4ebb-b0e7-af18eb450e07\"'),('fields.e7ac7afe-110f-424b-8df7-cf443f223406.handle','\"showCta\"'),('fields.e7ac7afe-110f-424b-8df7-cf443f223406.instructions','null'),('fields.e7ac7afe-110f-424b-8df7-cf443f223406.name','\"Show CTA\"'),('fields.e7ac7afe-110f-424b-8df7-cf443f223406.searchable','false'),('fields.e7ac7afe-110f-424b-8df7-cf443f223406.settings.default','true'),('fields.e7ac7afe-110f-424b-8df7-cf443f223406.settings.offLabel','null'),('fields.e7ac7afe-110f-424b-8df7-cf443f223406.settings.onLabel','null'),('fields.e7ac7afe-110f-424b-8df7-cf443f223406.translationKeyFormat','null'),('fields.e7ac7afe-110f-424b-8df7-cf443f223406.translationMethod','\"none\"'),('fields.e7ac7afe-110f-424b-8df7-cf443f223406.type','\"craft\\\\fields\\\\Lightswitch\"'),('fields.ea79d3f5-08a1-4d12-a91d-4ada485b36ac.columnSuffix','null'),('fields.ea79d3f5-08a1-4d12-a91d-4ada485b36ac.contentColumnType','\"integer(10)\"'),('fields.ea79d3f5-08a1-4d12-a91d-4ada485b36ac.fieldGroup','\"80fbe8fd-2c62-448d-ad9f-7a54ff848431\"'),('fields.ea79d3f5-08a1-4d12-a91d-4ada485b36ac.handle','\"clientIdWorkbook\"'),('fields.ea79d3f5-08a1-4d12-a91d-4ada485b36ac.instructions','\"\"'),('fields.ea79d3f5-08a1-4d12-a91d-4ada485b36ac.name','\"Client ID (Workbook)\"'),('fields.ea79d3f5-08a1-4d12-a91d-4ada485b36ac.searchable','false'),('fields.ea79d3f5-08a1-4d12-a91d-4ada485b36ac.settings.decimals','0'),('fields.ea79d3f5-08a1-4d12-a91d-4ada485b36ac.settings.defaultValue','null'),('fields.ea79d3f5-08a1-4d12-a91d-4ada485b36ac.settings.max','null'),('fields.ea79d3f5-08a1-4d12-a91d-4ada485b36ac.settings.min','\"0\"'),('fields.ea79d3f5-08a1-4d12-a91d-4ada485b36ac.settings.prefix','null'),('fields.ea79d3f5-08a1-4d12-a91d-4ada485b36ac.settings.previewCurrency','\"\"'),('fields.ea79d3f5-08a1-4d12-a91d-4ada485b36ac.settings.previewFormat','\"none\"'),('fields.ea79d3f5-08a1-4d12-a91d-4ada485b36ac.settings.size','null'),('fields.ea79d3f5-08a1-4d12-a91d-4ada485b36ac.settings.suffix','null'),('fields.ea79d3f5-08a1-4d12-a91d-4ada485b36ac.translationKeyFormat','null'),('fields.ea79d3f5-08a1-4d12-a91d-4ada485b36ac.translationMethod','\"none\"'),('fields.ea79d3f5-08a1-4d12-a91d-4ada485b36ac.type','\"craft\\\\fields\\\\Number\"'),('fields.ed801c91-9db1-4e25-8880-7452aec486df.columnSuffix','null'),('fields.ed801c91-9db1-4e25-8880-7452aec486df.contentColumnType','\"string\"'),('fields.ed801c91-9db1-4e25-8880-7452aec486df.fieldGroup','\"80fbe8fd-2c62-448d-ad9f-7a54ff848431\"'),('fields.ed801c91-9db1-4e25-8880-7452aec486df.handle','\"quotes\"'),('fields.ed801c91-9db1-4e25-8880-7452aec486df.instructions','\"\"'),('fields.ed801c91-9db1-4e25-8880-7452aec486df.name','\"Quotes\"'),('fields.ed801c91-9db1-4e25-8880-7452aec486df.searchable','false'),('fields.ed801c91-9db1-4e25-8880-7452aec486df.settings.allowSelfRelations','false'),('fields.ed801c91-9db1-4e25-8880-7452aec486df.settings.limit','\"\"'),('fields.ed801c91-9db1-4e25-8880-7452aec486df.settings.localizeRelations','false'),('fields.ed801c91-9db1-4e25-8880-7452aec486df.settings.selectionLabel','\"\"'),('fields.ed801c91-9db1-4e25-8880-7452aec486df.settings.showSiteMenu','true'),('fields.ed801c91-9db1-4e25-8880-7452aec486df.settings.source','null'),('fields.ed801c91-9db1-4e25-8880-7452aec486df.settings.sources.0','\"section:459600f7-51dd-44b9-8000-48e7b8fbc7af\"'),('fields.ed801c91-9db1-4e25-8880-7452aec486df.settings.targetSiteId','null'),('fields.ed801c91-9db1-4e25-8880-7452aec486df.settings.validateRelatedElements','false'),('fields.ed801c91-9db1-4e25-8880-7452aec486df.settings.viewMode','null'),('fields.ed801c91-9db1-4e25-8880-7452aec486df.translationKeyFormat','null'),('fields.ed801c91-9db1-4e25-8880-7452aec486df.translationMethod','\"site\"'),('fields.ed801c91-9db1-4e25-8880-7452aec486df.type','\"craft\\\\fields\\\\Entries\"'),('fields.f1e93f83-edeb-49fc-be13-10e88d0e52e1.columnSuffix','null'),('fields.f1e93f83-edeb-49fc-be13-10e88d0e52e1.contentColumnType','\"text\"'),('fields.f1e93f83-edeb-49fc-be13-10e88d0e52e1.fieldGroup','\"949c24d0-491b-49e0-8802-dfed8158b301\"'),('fields.f1e93f83-edeb-49fc-be13-10e88d0e52e1.handle','\"customersAndTheirWantsNeedsInclude\"'),('fields.f1e93f83-edeb-49fc-be13-10e88d0e52e1.instructions','\"\"'),('fields.f1e93f83-edeb-49fc-be13-10e88d0e52e1.name','\"Customers (and their wants/needs) include:\"'),('fields.f1e93f83-edeb-49fc-be13-10e88d0e52e1.searchable','false'),('fields.f1e93f83-edeb-49fc-be13-10e88d0e52e1.settings.byteLimit','null'),('fields.f1e93f83-edeb-49fc-be13-10e88d0e52e1.settings.charLimit','null'),('fields.f1e93f83-edeb-49fc-be13-10e88d0e52e1.settings.code','\"\"'),('fields.f1e93f83-edeb-49fc-be13-10e88d0e52e1.settings.columnType','null'),('fields.f1e93f83-edeb-49fc-be13-10e88d0e52e1.settings.initialRows','\"4\"'),('fields.f1e93f83-edeb-49fc-be13-10e88d0e52e1.settings.multiline','\"1\"'),('fields.f1e93f83-edeb-49fc-be13-10e88d0e52e1.settings.placeholder','null'),('fields.f1e93f83-edeb-49fc-be13-10e88d0e52e1.settings.uiMode','\"normal\"'),('fields.f1e93f83-edeb-49fc-be13-10e88d0e52e1.translationKeyFormat','null'),('fields.f1e93f83-edeb-49fc-be13-10e88d0e52e1.translationMethod','\"none\"'),('fields.f1e93f83-edeb-49fc-be13-10e88d0e52e1.type','\"craft\\\\fields\\\\PlainText\"'),('fields.f4eb2f46-8e77-46c1-97fe-2bdcdeb4c582.columnSuffix','null'),('fields.f4eb2f46-8e77-46c1-97fe-2bdcdeb4c582.contentColumnType','\"text\"'),('fields.f4eb2f46-8e77-46c1-97fe-2bdcdeb4c582.fieldGroup','\"c38e2159-46dc-46e1-bc98-42bfb5da312f\"'),('fields.f4eb2f46-8e77-46c1-97fe-2bdcdeb4c582.handle','\"richText\"'),('fields.f4eb2f46-8e77-46c1-97fe-2bdcdeb4c582.instructions','\"\"'),('fields.f4eb2f46-8e77-46c1-97fe-2bdcdeb4c582.name','\"Rich text\"'),('fields.f4eb2f46-8e77-46c1-97fe-2bdcdeb4c582.searchable','false'),('fields.f4eb2f46-8e77-46c1-97fe-2bdcdeb4c582.settings.availableTransforms','\"*\"'),('fields.f4eb2f46-8e77-46c1-97fe-2bdcdeb4c582.settings.availableVolumes','\"*\"'),('fields.f4eb2f46-8e77-46c1-97fe-2bdcdeb4c582.settings.cleanupHtml','true'),('fields.f4eb2f46-8e77-46c1-97fe-2bdcdeb4c582.settings.columnType','\"text\"'),('fields.f4eb2f46-8e77-46c1-97fe-2bdcdeb4c582.settings.configSelectionMode','\"choose\"'),('fields.f4eb2f46-8e77-46c1-97fe-2bdcdeb4c582.settings.defaultTransform','\"\"'),('fields.f4eb2f46-8e77-46c1-97fe-2bdcdeb4c582.settings.manualConfig','\"\"'),('fields.f4eb2f46-8e77-46c1-97fe-2bdcdeb4c582.settings.purifierConfig','\"\"'),('fields.f4eb2f46-8e77-46c1-97fe-2bdcdeb4c582.settings.purifyHtml','\"1\"'),('fields.f4eb2f46-8e77-46c1-97fe-2bdcdeb4c582.settings.redactorConfig','\"\"'),('fields.f4eb2f46-8e77-46c1-97fe-2bdcdeb4c582.settings.removeEmptyTags','\"1\"'),('fields.f4eb2f46-8e77-46c1-97fe-2bdcdeb4c582.settings.removeInlineStyles','\"1\"'),('fields.f4eb2f46-8e77-46c1-97fe-2bdcdeb4c582.settings.removeNbsp','\"1\"'),('fields.f4eb2f46-8e77-46c1-97fe-2bdcdeb4c582.settings.showHtmlButtonForNonAdmins','\"\"'),('fields.f4eb2f46-8e77-46c1-97fe-2bdcdeb4c582.settings.showUnpermittedFiles','false'),('fields.f4eb2f46-8e77-46c1-97fe-2bdcdeb4c582.settings.showUnpermittedVolumes','false'),('fields.f4eb2f46-8e77-46c1-97fe-2bdcdeb4c582.settings.uiMode','\"enlarged\"'),('fields.f4eb2f46-8e77-46c1-97fe-2bdcdeb4c582.translationKeyFormat','null'),('fields.f4eb2f46-8e77-46c1-97fe-2bdcdeb4c582.translationMethod','\"none\"'),('fields.f4eb2f46-8e77-46c1-97fe-2bdcdeb4c582.type','\"craft\\\\redactor\\\\Field\"'),('fields.f665cbb7-c2d1-48a1-a4e7-059b51337b56.columnSuffix','null'),('fields.f665cbb7-c2d1-48a1-a4e7-059b51337b56.contentColumnType','\"text\"'),('fields.f665cbb7-c2d1-48a1-a4e7-059b51337b56.fieldGroup','\"84d29012-402c-44d3-8599-938ab66e3b97\"'),('fields.f665cbb7-c2d1-48a1-a4e7-059b51337b56.handle','\"quotedAmount\"'),('fields.f665cbb7-c2d1-48a1-a4e7-059b51337b56.instructions','\"\"'),('fields.f665cbb7-c2d1-48a1-a4e7-059b51337b56.name','\"Quoted amount\"'),('fields.f665cbb7-c2d1-48a1-a4e7-059b51337b56.searchable','false'),('fields.f665cbb7-c2d1-48a1-a4e7-059b51337b56.settings.byteLimit','null'),('fields.f665cbb7-c2d1-48a1-a4e7-059b51337b56.settings.charLimit','null'),('fields.f665cbb7-c2d1-48a1-a4e7-059b51337b56.settings.code','\"\"'),('fields.f665cbb7-c2d1-48a1-a4e7-059b51337b56.settings.columnType','null'),('fields.f665cbb7-c2d1-48a1-a4e7-059b51337b56.settings.initialRows','\"4\"'),('fields.f665cbb7-c2d1-48a1-a4e7-059b51337b56.settings.multiline','\"\"'),('fields.f665cbb7-c2d1-48a1-a4e7-059b51337b56.settings.placeholder','null'),('fields.f665cbb7-c2d1-48a1-a4e7-059b51337b56.settings.uiMode','\"normal\"'),('fields.f665cbb7-c2d1-48a1-a4e7-059b51337b56.translationKeyFormat','null'),('fields.f665cbb7-c2d1-48a1-a4e7-059b51337b56.translationMethod','\"none\"'),('fields.f665cbb7-c2d1-48a1-a4e7-059b51337b56.type','\"craft\\\\fields\\\\PlainText\"'),('fields.f68e0fd0-2ad7-4416-b9d1-ae48f49e33d8.columnSuffix','null'),('fields.f68e0fd0-2ad7-4416-b9d1-ae48f49e33d8.contentColumnType','\"text\"'),('fields.f68e0fd0-2ad7-4416-b9d1-ae48f49e33d8.fieldGroup','\"581f3b95-4fdd-4b29-a806-753edb34ee8c\"'),('fields.f68e0fd0-2ad7-4416-b9d1-ae48f49e33d8.handle','\"totalCostOfSales\"'),('fields.f68e0fd0-2ad7-4416-b9d1-ae48f49e33d8.instructions','\"\"'),('fields.f68e0fd0-2ad7-4416-b9d1-ae48f49e33d8.name','\"Total cost of sales\"'),('fields.f68e0fd0-2ad7-4416-b9d1-ae48f49e33d8.searchable','false'),('fields.f68e0fd0-2ad7-4416-b9d1-ae48f49e33d8.settings.byteLimit','null'),('fields.f68e0fd0-2ad7-4416-b9d1-ae48f49e33d8.settings.charLimit','null'),('fields.f68e0fd0-2ad7-4416-b9d1-ae48f49e33d8.settings.code','\"\"'),('fields.f68e0fd0-2ad7-4416-b9d1-ae48f49e33d8.settings.columnType','null'),('fields.f68e0fd0-2ad7-4416-b9d1-ae48f49e33d8.settings.initialRows','\"4\"'),('fields.f68e0fd0-2ad7-4416-b9d1-ae48f49e33d8.settings.multiline','\"\"'),('fields.f68e0fd0-2ad7-4416-b9d1-ae48f49e33d8.settings.placeholder','null'),('fields.f68e0fd0-2ad7-4416-b9d1-ae48f49e33d8.settings.uiMode','\"normal\"'),('fields.f68e0fd0-2ad7-4416-b9d1-ae48f49e33d8.translationKeyFormat','null'),('fields.f68e0fd0-2ad7-4416-b9d1-ae48f49e33d8.translationMethod','\"none\"'),('fields.f68e0fd0-2ad7-4416-b9d1-ae48f49e33d8.type','\"craft\\\\fields\\\\PlainText\"'),('fields.fcfcedf6-24b6-4050-a9ca-21e4d7b5a8f4.columnSuffix','null'),('fields.fcfcedf6-24b6-4050-a9ca-21e4d7b5a8f4.contentColumnType','\"text\"'),('fields.fcfcedf6-24b6-4050-a9ca-21e4d7b5a8f4.fieldGroup','\"581f3b95-4fdd-4b29-a806-753edb34ee8c\"'),('fields.fcfcedf6-24b6-4050-a9ca-21e4d7b5a8f4.handle','\"grossProfit\"'),('fields.fcfcedf6-24b6-4050-a9ca-21e4d7b5a8f4.instructions','\"\"'),('fields.fcfcedf6-24b6-4050-a9ca-21e4d7b5a8f4.name','\"Gross profit\"'),('fields.fcfcedf6-24b6-4050-a9ca-21e4d7b5a8f4.searchable','false'),('fields.fcfcedf6-24b6-4050-a9ca-21e4d7b5a8f4.settings.byteLimit','null'),('fields.fcfcedf6-24b6-4050-a9ca-21e4d7b5a8f4.settings.charLimit','null'),('fields.fcfcedf6-24b6-4050-a9ca-21e4d7b5a8f4.settings.code','\"\"'),('fields.fcfcedf6-24b6-4050-a9ca-21e4d7b5a8f4.settings.columnType','null'),('fields.fcfcedf6-24b6-4050-a9ca-21e4d7b5a8f4.settings.initialRows','\"4\"'),('fields.fcfcedf6-24b6-4050-a9ca-21e4d7b5a8f4.settings.multiline','\"\"'),('fields.fcfcedf6-24b6-4050-a9ca-21e4d7b5a8f4.settings.placeholder','null'),('fields.fcfcedf6-24b6-4050-a9ca-21e4d7b5a8f4.settings.uiMode','\"normal\"'),('fields.fcfcedf6-24b6-4050-a9ca-21e4d7b5a8f4.translationKeyFormat','null'),('fields.fcfcedf6-24b6-4050-a9ca-21e4d7b5a8f4.translationMethod','\"none\"'),('fields.fcfcedf6-24b6-4050-a9ca-21e4d7b5a8f4.type','\"craft\\\\fields\\\\PlainText\"'),('fields.fd75f783-02b6-45db-b73f-348fd6a59016.columnSuffix','null'),('fields.fd75f783-02b6-45db-b73f-348fd6a59016.contentColumnType','\"string\"'),('fields.fd75f783-02b6-45db-b73f-348fd6a59016.fieldGroup','\"949c24d0-491b-49e0-8802-dfed8158b301\"'),('fields.fd75f783-02b6-45db-b73f-348fd6a59016.handle','\"relatedUser\"'),('fields.fd75f783-02b6-45db-b73f-348fd6a59016.instructions','\"\"'),('fields.fd75f783-02b6-45db-b73f-348fd6a59016.name','\"Related user\"'),('fields.fd75f783-02b6-45db-b73f-348fd6a59016.searchable','false'),('fields.fd75f783-02b6-45db-b73f-348fd6a59016.settings.allowSelfRelations','false'),('fields.fd75f783-02b6-45db-b73f-348fd6a59016.settings.limit','\"1\"'),('fields.fd75f783-02b6-45db-b73f-348fd6a59016.settings.localizeRelations','false'),('fields.fd75f783-02b6-45db-b73f-348fd6a59016.settings.selectionLabel','\"Add a user\"'),('fields.fd75f783-02b6-45db-b73f-348fd6a59016.settings.showSiteMenu','false'),('fields.fd75f783-02b6-45db-b73f-348fd6a59016.settings.source','null'),('fields.fd75f783-02b6-45db-b73f-348fd6a59016.settings.sources','\"*\"'),('fields.fd75f783-02b6-45db-b73f-348fd6a59016.settings.targetSiteId','null'),('fields.fd75f783-02b6-45db-b73f-348fd6a59016.settings.validateRelatedElements','false'),('fields.fd75f783-02b6-45db-b73f-348fd6a59016.settings.viewMode','null'),('fields.fd75f783-02b6-45db-b73f-348fd6a59016.translationKeyFormat','null'),('fields.fd75f783-02b6-45db-b73f-348fd6a59016.translationMethod','\"site\"'),('fields.fd75f783-02b6-45db-b73f-348fd6a59016.type','\"craft\\\\fields\\\\Users\"'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.columnSuffix','\"mwnqrgtq\"'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.contentColumnType','\"string\"'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.fieldGroup','\"c38e2159-46dc-46e1-bc98-42bfb5da312f\"'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.handle','\"textColour\"'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.instructions','\"\"'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.name','\"Text colour\"'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.searchable','false'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.settings.optgroups','true'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.settings.options.0.__assoc__.0.0','\"label\"'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.settings.options.0.__assoc__.0.1','\"Black\"'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.settings.options.0.__assoc__.1.0','\"value\"'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.settings.options.0.__assoc__.1.1','\"text-black\"'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.settings.options.0.__assoc__.2.0','\"default\"'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.settings.options.0.__assoc__.2.1','\"1\"'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.settings.options.1.__assoc__.0.0','\"label\"'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.settings.options.1.__assoc__.0.1','\"White\"'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.settings.options.1.__assoc__.1.0','\"value\"'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.settings.options.1.__assoc__.1.1','\"text-white\"'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.settings.options.1.__assoc__.2.0','\"default\"'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.settings.options.1.__assoc__.2.1','\"\"'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.settings.options.2.__assoc__.0.0','\"label\"'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.settings.options.2.__assoc__.0.1','\"Red\"'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.settings.options.2.__assoc__.1.0','\"value\"'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.settings.options.2.__assoc__.1.1','\"text-red\"'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.settings.options.2.__assoc__.2.0','\"default\"'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.settings.options.2.__assoc__.2.1','\"\"'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.settings.options.3.__assoc__.0.0','\"label\"'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.settings.options.3.__assoc__.0.1','\"Green\"'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.settings.options.3.__assoc__.1.0','\"value\"'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.settings.options.3.__assoc__.1.1','\"text-green\"'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.settings.options.3.__assoc__.2.0','\"default\"'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.settings.options.3.__assoc__.2.1','\"\"'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.translationKeyFormat','null'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.translationMethod','\"none\"'),('fields.fe3d3e20-0b76-438f-af52-0b90f4cf6099.type','\"craft\\\\fields\\\\Dropdown\"'),('fields.ffe371e5-6f1c-4f7e-8c29-3b53a7b68c9c.columnSuffix','null'),('fields.ffe371e5-6f1c-4f7e-8c29-3b53a7b68c9c.contentColumnType','\"string\"'),('fields.ffe371e5-6f1c-4f7e-8c29-3b53a7b68c9c.fieldGroup','\"f43e2891-333d-49b3-a9db-3e8569344d15\"'),('fields.ffe371e5-6f1c-4f7e-8c29-3b53a7b68c9c.handle','\"layoutBuilder\"'),('fields.ffe371e5-6f1c-4f7e-8c29-3b53a7b68c9c.instructions','\"\"'),('fields.ffe371e5-6f1c-4f7e-8c29-3b53a7b68c9c.name','\"Layout builder\"'),('fields.ffe371e5-6f1c-4f7e-8c29-3b53a7b68c9c.searchable','false'),('fields.ffe371e5-6f1c-4f7e-8c29-3b53a7b68c9c.settings.contentTable','\"{{%matrixcontent_layoutbuilder}}\"'),('fields.ffe371e5-6f1c-4f7e-8c29-3b53a7b68c9c.settings.maxBlocks','\"\"'),('fields.ffe371e5-6f1c-4f7e-8c29-3b53a7b68c9c.settings.minBlocks','\"\"'),('fields.ffe371e5-6f1c-4f7e-8c29-3b53a7b68c9c.settings.propagationKeyFormat','null'),('fields.ffe371e5-6f1c-4f7e-8c29-3b53a7b68c9c.settings.propagationMethod','\"all\"'),('fields.ffe371e5-6f1c-4f7e-8c29-3b53a7b68c9c.translationKeyFormat','null'),('fields.ffe371e5-6f1c-4f7e-8c29-3b53a7b68c9c.translationMethod','\"site\"'),('fields.ffe371e5-6f1c-4f7e-8c29-3b53a7b68c9c.type','\"craft\\\\fields\\\\Matrix\"'),('fs.upload.hasUrls','true'),('fs.upload.name','\"Upload\"'),('fs.upload.settings.bucket','\"$DO_BUCKET\"'),('fs.upload.settings.contentDisposition','\"\"'),('fs.upload.settings.endpoint','\"$DO_ENDPOINT\"'),('fs.upload.settings.expires','\"3 months\"'),('fs.upload.settings.keyId','\"$DO_ACCESS_KEY\"'),('fs.upload.settings.region','\"$DO_REGION\"'),('fs.upload.settings.secret','\"$DO_SECRET_KEY\"'),('fs.upload.settings.subfolder','\"nwo/uploads\"'),('fs.upload.type','\"vaersaagod\\\\dospaces\\\\Fs\"'),('fs.upload.url','\"$DO_BASE_URL\"'),('globalSets.5511d39d-a282-4557-8bf2-6a3c6f93bd15.fieldLayouts.39c50d88-fa96-4798-8740-eaf4c783b643.tabs.0.elements.0.fieldUid','\"ac330e35-980d-4c71-9fd8-4c4edd58140b\"'),('globalSets.5511d39d-a282-4557-8bf2-6a3c6f93bd15.fieldLayouts.39c50d88-fa96-4798-8740-eaf4c783b643.tabs.0.elements.0.instructions','null'),('globalSets.5511d39d-a282-4557-8bf2-6a3c6f93bd15.fieldLayouts.39c50d88-fa96-4798-8740-eaf4c783b643.tabs.0.elements.0.label','null'),('globalSets.5511d39d-a282-4557-8bf2-6a3c6f93bd15.fieldLayouts.39c50d88-fa96-4798-8740-eaf4c783b643.tabs.0.elements.0.required','false'),('globalSets.5511d39d-a282-4557-8bf2-6a3c6f93bd15.fieldLayouts.39c50d88-fa96-4798-8740-eaf4c783b643.tabs.0.elements.0.tip','null'),('globalSets.5511d39d-a282-4557-8bf2-6a3c6f93bd15.fieldLayouts.39c50d88-fa96-4798-8740-eaf4c783b643.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('globalSets.5511d39d-a282-4557-8bf2-6a3c6f93bd15.fieldLayouts.39c50d88-fa96-4798-8740-eaf4c783b643.tabs.0.elements.0.warning','null'),('globalSets.5511d39d-a282-4557-8bf2-6a3c6f93bd15.fieldLayouts.39c50d88-fa96-4798-8740-eaf4c783b643.tabs.0.elements.0.width','100'),('globalSets.5511d39d-a282-4557-8bf2-6a3c6f93bd15.fieldLayouts.39c50d88-fa96-4798-8740-eaf4c783b643.tabs.0.name','\"Related people\"'),('globalSets.5511d39d-a282-4557-8bf2-6a3c6f93bd15.fieldLayouts.39c50d88-fa96-4798-8740-eaf4c783b643.tabs.0.sortOrder','1'),('globalSets.5511d39d-a282-4557-8bf2-6a3c6f93bd15.handle','\"peopleNavigation\"'),('globalSets.5511d39d-a282-4557-8bf2-6a3c6f93bd15.name','\"People Navigation\"'),('globalSets.5511d39d-a282-4557-8bf2-6a3c6f93bd15.sortOrder','2'),('globalSets.67a8fc88-4afd-4f2a-a30e-29cf12e725c4.fieldLayouts.7a57034c-f60a-481f-8eb4-0581f32545ca.tabs.0.elements.0.fieldUid','\"4233d145-1d79-49a5-931e-effdeec7d786\"'),('globalSets.67a8fc88-4afd-4f2a-a30e-29cf12e725c4.fieldLayouts.7a57034c-f60a-481f-8eb4-0581f32545ca.tabs.0.elements.0.instructions','null'),('globalSets.67a8fc88-4afd-4f2a-a30e-29cf12e725c4.fieldLayouts.7a57034c-f60a-481f-8eb4-0581f32545ca.tabs.0.elements.0.label','null'),('globalSets.67a8fc88-4afd-4f2a-a30e-29cf12e725c4.fieldLayouts.7a57034c-f60a-481f-8eb4-0581f32545ca.tabs.0.elements.0.required','false'),('globalSets.67a8fc88-4afd-4f2a-a30e-29cf12e725c4.fieldLayouts.7a57034c-f60a-481f-8eb4-0581f32545ca.tabs.0.elements.0.tip','null'),('globalSets.67a8fc88-4afd-4f2a-a30e-29cf12e725c4.fieldLayouts.7a57034c-f60a-481f-8eb4-0581f32545ca.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('globalSets.67a8fc88-4afd-4f2a-a30e-29cf12e725c4.fieldLayouts.7a57034c-f60a-481f-8eb4-0581f32545ca.tabs.0.elements.0.warning','null'),('globalSets.67a8fc88-4afd-4f2a-a30e-29cf12e725c4.fieldLayouts.7a57034c-f60a-481f-8eb4-0581f32545ca.tabs.0.elements.0.width','100'),('globalSets.67a8fc88-4afd-4f2a-a30e-29cf12e725c4.fieldLayouts.7a57034c-f60a-481f-8eb4-0581f32545ca.tabs.0.name','\"CONTENT\"'),('globalSets.67a8fc88-4afd-4f2a-a30e-29cf12e725c4.fieldLayouts.7a57034c-f60a-481f-8eb4-0581f32545ca.tabs.0.sortOrder','1'),('globalSets.67a8fc88-4afd-4f2a-a30e-29cf12e725c4.handle','\"workPage\"'),('globalSets.67a8fc88-4afd-4f2a-a30e-29cf12e725c4.name','\"Work page\"'),('globalSets.67a8fc88-4afd-4f2a-a30e-29cf12e725c4.sortOrder','3'),('globalSets.aca77878-4bdc-4c0b-90a5-a7bdc826888c.fieldLayouts.af40bbbf-f576-46b6-99c7-c6b43ef1fe58.tabs.0.elements.0.fieldUid','\"90cf930b-ef6f-426e-8c28-8187ff63ab71\"'),('globalSets.aca77878-4bdc-4c0b-90a5-a7bdc826888c.fieldLayouts.af40bbbf-f576-46b6-99c7-c6b43ef1fe58.tabs.0.elements.0.instructions','null'),('globalSets.aca77878-4bdc-4c0b-90a5-a7bdc826888c.fieldLayouts.af40bbbf-f576-46b6-99c7-c6b43ef1fe58.tabs.0.elements.0.label','null'),('globalSets.aca77878-4bdc-4c0b-90a5-a7bdc826888c.fieldLayouts.af40bbbf-f576-46b6-99c7-c6b43ef1fe58.tabs.0.elements.0.required','false'),('globalSets.aca77878-4bdc-4c0b-90a5-a7bdc826888c.fieldLayouts.af40bbbf-f576-46b6-99c7-c6b43ef1fe58.tabs.0.elements.0.tip','null'),('globalSets.aca77878-4bdc-4c0b-90a5-a7bdc826888c.fieldLayouts.af40bbbf-f576-46b6-99c7-c6b43ef1fe58.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('globalSets.aca77878-4bdc-4c0b-90a5-a7bdc826888c.fieldLayouts.af40bbbf-f576-46b6-99c7-c6b43ef1fe58.tabs.0.elements.0.warning','null'),('globalSets.aca77878-4bdc-4c0b-90a5-a7bdc826888c.fieldLayouts.af40bbbf-f576-46b6-99c7-c6b43ef1fe58.tabs.0.elements.0.width','100'),('globalSets.aca77878-4bdc-4c0b-90a5-a7bdc826888c.fieldLayouts.af40bbbf-f576-46b6-99c7-c6b43ef1fe58.tabs.0.name','\"CONTENT\"'),('globalSets.aca77878-4bdc-4c0b-90a5-a7bdc826888c.fieldLayouts.af40bbbf-f576-46b6-99c7-c6b43ef1fe58.tabs.0.sortOrder','1'),('globalSets.aca77878-4bdc-4c0b-90a5-a7bdc826888c.handle','\"dashboardGlobals\"'),('globalSets.aca77878-4bdc-4c0b-90a5-a7bdc826888c.name','\"Dashboard Globals\"'),('globalSets.aca77878-4bdc-4c0b-90a5-a7bdc826888c.sortOrder','5'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.0.fieldUid','\"d4f97e13-677b-40d7-a802-929455984b64\"'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.0.instructions','null'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.0.label','null'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.0.required','false'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.0.tip','null'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.0.warning','null'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.0.width','100'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.1.fieldUid','\"687c0549-de46-424f-8727-7b5546c11752\"'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.1.instructions','null'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.1.label','null'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.1.required','false'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.1.tip','null'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.1.warning','null'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.1.width','100'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.2.fieldUid','\"543fd936-b820-4ae9-93f7-e0577abe2fab\"'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.2.instructions','null'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.2.label','null'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.2.required','false'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.2.tip','null'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.2.warning','null'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.2.width','100'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.3.fieldUid','\"24041ec2-da5f-4ff4-82b3-6aba2005647a\"'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.3.instructions','null'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.3.label','null'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.3.required','false'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.3.tip','null'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.3.warning','null'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.3.width','100'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.4.fieldUid','\"42f55576-0f06-49ff-bc18-627c979de526\"'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.4.instructions','null'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.4.label','null'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.4.required','false'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.4.tip','null'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.4.warning','null'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.elements.4.width','100'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.name','\"SEO\"'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.fieldLayouts.bf2560d2-6a11-4dc8-8f67-ed5b66b19d56.tabs.0.sortOrder','1'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.handle','\"seoGlobal\"'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.name','\"SEO Global\"'),('globalSets.afd1eab8-39ff-4942-9c34-eb8f18d0d991.sortOrder','4'),('graphql.publicToken.enabled','true'),('graphql.publicToken.expiryDate','null'),('graphql.schemas.fc33a64a-8bcf-4c5c-889a-426c4fa84f92.isPublic','true'),('graphql.schemas.fc33a64a-8bcf-4c5c-889a-426c4fa84f92.name','\"Public Schema\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.field','\"d3a8c8b6-f737-460c-81dc-9818db4a2627\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fieldLayouts.94789ff5-2af5-43d7-9582-d04b51a7b9cb.tabs.0.elements.0.fieldUid','\"770f3d77-08c1-4282-b12a-3c697292efa9\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fieldLayouts.94789ff5-2af5-43d7-9582-d04b51a7b9cb.tabs.0.elements.0.instructions','null'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fieldLayouts.94789ff5-2af5-43d7-9582-d04b51a7b9cb.tabs.0.elements.0.label','null'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fieldLayouts.94789ff5-2af5-43d7-9582-d04b51a7b9cb.tabs.0.elements.0.required','false'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fieldLayouts.94789ff5-2af5-43d7-9582-d04b51a7b9cb.tabs.0.elements.0.tip','null'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fieldLayouts.94789ff5-2af5-43d7-9582-d04b51a7b9cb.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fieldLayouts.94789ff5-2af5-43d7-9582-d04b51a7b9cb.tabs.0.elements.0.warning','null'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fieldLayouts.94789ff5-2af5-43d7-9582-d04b51a7b9cb.tabs.0.elements.0.width','100'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fieldLayouts.94789ff5-2af5-43d7-9582-d04b51a7b9cb.tabs.0.elements.1.fieldUid','\"220d8796-98ec-428f-aa21-9f7faca714c1\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fieldLayouts.94789ff5-2af5-43d7-9582-d04b51a7b9cb.tabs.0.elements.1.instructions','null'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fieldLayouts.94789ff5-2af5-43d7-9582-d04b51a7b9cb.tabs.0.elements.1.label','null'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fieldLayouts.94789ff5-2af5-43d7-9582-d04b51a7b9cb.tabs.0.elements.1.required','false'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fieldLayouts.94789ff5-2af5-43d7-9582-d04b51a7b9cb.tabs.0.elements.1.tip','null'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fieldLayouts.94789ff5-2af5-43d7-9582-d04b51a7b9cb.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fieldLayouts.94789ff5-2af5-43d7-9582-d04b51a7b9cb.tabs.0.elements.1.warning','null'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fieldLayouts.94789ff5-2af5-43d7-9582-d04b51a7b9cb.tabs.0.elements.1.width','100'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fieldLayouts.94789ff5-2af5-43d7-9582-d04b51a7b9cb.tabs.0.elements.2.fieldUid','\"2dd50c30-6391-406d-b248-13583fb7cf85\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fieldLayouts.94789ff5-2af5-43d7-9582-d04b51a7b9cb.tabs.0.elements.2.instructions','null'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fieldLayouts.94789ff5-2af5-43d7-9582-d04b51a7b9cb.tabs.0.elements.2.label','null'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fieldLayouts.94789ff5-2af5-43d7-9582-d04b51a7b9cb.tabs.0.elements.2.required','false'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fieldLayouts.94789ff5-2af5-43d7-9582-d04b51a7b9cb.tabs.0.elements.2.tip','null'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fieldLayouts.94789ff5-2af5-43d7-9582-d04b51a7b9cb.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fieldLayouts.94789ff5-2af5-43d7-9582-d04b51a7b9cb.tabs.0.elements.2.warning','null'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fieldLayouts.94789ff5-2af5-43d7-9582-d04b51a7b9cb.tabs.0.elements.2.width','100'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fieldLayouts.94789ff5-2af5-43d7-9582-d04b51a7b9cb.tabs.0.name','\"Content\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fieldLayouts.94789ff5-2af5-43d7-9582-d04b51a7b9cb.tabs.0.sortOrder','1'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.220d8796-98ec-428f-aa21-9f7faca714c1.columnSuffix','null'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.220d8796-98ec-428f-aa21-9f7faca714c1.contentColumnType','\"text\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.220d8796-98ec-428f-aa21-9f7faca714c1.fieldGroup','null'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.220d8796-98ec-428f-aa21-9f7faca714c1.handle','\"heading\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.220d8796-98ec-428f-aa21-9f7faca714c1.instructions','\"\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.220d8796-98ec-428f-aa21-9f7faca714c1.name','\"Heading\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.220d8796-98ec-428f-aa21-9f7faca714c1.searchable','false'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.220d8796-98ec-428f-aa21-9f7faca714c1.settings.byteLimit','null'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.220d8796-98ec-428f-aa21-9f7faca714c1.settings.charLimit','null'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.220d8796-98ec-428f-aa21-9f7faca714c1.settings.code','\"\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.220d8796-98ec-428f-aa21-9f7faca714c1.settings.columnType','null'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.220d8796-98ec-428f-aa21-9f7faca714c1.settings.initialRows','\"4\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.220d8796-98ec-428f-aa21-9f7faca714c1.settings.multiline','\"\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.220d8796-98ec-428f-aa21-9f7faca714c1.settings.placeholder','null'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.220d8796-98ec-428f-aa21-9f7faca714c1.settings.uiMode','\"normal\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.220d8796-98ec-428f-aa21-9f7faca714c1.translationKeyFormat','null'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.220d8796-98ec-428f-aa21-9f7faca714c1.translationMethod','\"none\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.220d8796-98ec-428f-aa21-9f7faca714c1.type','\"craft\\\\fields\\\\PlainText\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.2dd50c30-6391-406d-b248-13583fb7cf85.columnSuffix','null'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.2dd50c30-6391-406d-b248-13583fb7cf85.contentColumnType','\"string\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.2dd50c30-6391-406d-b248-13583fb7cf85.fieldGroup','null'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.2dd50c30-6391-406d-b248-13583fb7cf85.handle','\"gridItems\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.2dd50c30-6391-406d-b248-13583fb7cf85.instructions','\"\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.2dd50c30-6391-406d-b248-13583fb7cf85.name','\"Grid items\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.2dd50c30-6391-406d-b248-13583fb7cf85.searchable','false'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.2dd50c30-6391-406d-b248-13583fb7cf85.settings.columns.__assoc__.0.0','\"c0dca123-dde4-44c4-ab97-10e1ebe80aee\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.2dd50c30-6391-406d-b248-13583fb7cf85.settings.columns.__assoc__.0.1.__assoc__.0.0','\"width\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.2dd50c30-6391-406d-b248-13583fb7cf85.settings.columns.__assoc__.0.1.__assoc__.0.1','\"\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.2dd50c30-6391-406d-b248-13583fb7cf85.settings.columns.__assoc__.1.0','\"217aa381-87e0-4450-aff2-a051ada343b6\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.2dd50c30-6391-406d-b248-13583fb7cf85.settings.columns.__assoc__.1.1.__assoc__.0.0','\"width\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.2dd50c30-6391-406d-b248-13583fb7cf85.settings.columns.__assoc__.1.1.__assoc__.0.1','\"\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.2dd50c30-6391-406d-b248-13583fb7cf85.settings.contentTable','\"{{%stc_9_griditems}}\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.2dd50c30-6391-406d-b248-13583fb7cf85.settings.fieldLayout','\"row\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.2dd50c30-6391-406d-b248-13583fb7cf85.settings.maxRows','\"\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.2dd50c30-6391-406d-b248-13583fb7cf85.settings.minRows','\"\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.2dd50c30-6391-406d-b248-13583fb7cf85.settings.placeholderKey','null'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.2dd50c30-6391-406d-b248-13583fb7cf85.settings.propagationMethod','\"all\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.2dd50c30-6391-406d-b248-13583fb7cf85.settings.selectionLabel','\"\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.2dd50c30-6391-406d-b248-13583fb7cf85.settings.staticField','\"\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.2dd50c30-6391-406d-b248-13583fb7cf85.translationKeyFormat','null'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.2dd50c30-6391-406d-b248-13583fb7cf85.translationMethod','\"site\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.2dd50c30-6391-406d-b248-13583fb7cf85.type','\"verbb\\\\supertable\\\\fields\\\\SuperTableField\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.770f3d77-08c1-4282-b12a-3c697292efa9.columnSuffix','null'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.770f3d77-08c1-4282-b12a-3c697292efa9.contentColumnType','\"text\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.770f3d77-08c1-4282-b12a-3c697292efa9.fieldGroup','null'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.770f3d77-08c1-4282-b12a-3c697292efa9.handle','\"sectionHeading\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.770f3d77-08c1-4282-b12a-3c697292efa9.instructions','\"\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.770f3d77-08c1-4282-b12a-3c697292efa9.name','\"Section heading\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.770f3d77-08c1-4282-b12a-3c697292efa9.searchable','false'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.770f3d77-08c1-4282-b12a-3c697292efa9.settings.byteLimit','null'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.770f3d77-08c1-4282-b12a-3c697292efa9.settings.charLimit','null'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.770f3d77-08c1-4282-b12a-3c697292efa9.settings.code','\"\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.770f3d77-08c1-4282-b12a-3c697292efa9.settings.columnType','null'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.770f3d77-08c1-4282-b12a-3c697292efa9.settings.initialRows','\"4\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.770f3d77-08c1-4282-b12a-3c697292efa9.settings.multiline','\"\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.770f3d77-08c1-4282-b12a-3c697292efa9.settings.placeholder','null'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.770f3d77-08c1-4282-b12a-3c697292efa9.settings.uiMode','\"normal\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.770f3d77-08c1-4282-b12a-3c697292efa9.translationKeyFormat','null'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.770f3d77-08c1-4282-b12a-3c697292efa9.translationMethod','\"none\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.fields.770f3d77-08c1-4282-b12a-3c697292efa9.type','\"craft\\\\fields\\\\PlainText\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.handle','\"redBackgroundGridList\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.name','\"Red background grid list\"'),('matrixBlockTypes.07b5b98c-b69c-4c6a-96c2-3812d50793da.sortOrder','2'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.field','\"ffe371e5-6f1c-4f7e-8c29-3b53a7b68c9c\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fieldLayouts.75904a8b-e1fc-4225-ae1d-f221ad640d73.tabs.0.elements.0.fieldUid','\"5e95989b-6f85-4379-aa15-ef9aa773b105\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fieldLayouts.75904a8b-e1fc-4225-ae1d-f221ad640d73.tabs.0.elements.0.instructions','null'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fieldLayouts.75904a8b-e1fc-4225-ae1d-f221ad640d73.tabs.0.elements.0.label','null'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fieldLayouts.75904a8b-e1fc-4225-ae1d-f221ad640d73.tabs.0.elements.0.required','false'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fieldLayouts.75904a8b-e1fc-4225-ae1d-f221ad640d73.tabs.0.elements.0.tip','null'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fieldLayouts.75904a8b-e1fc-4225-ae1d-f221ad640d73.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fieldLayouts.75904a8b-e1fc-4225-ae1d-f221ad640d73.tabs.0.elements.0.warning','null'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fieldLayouts.75904a8b-e1fc-4225-ae1d-f221ad640d73.tabs.0.elements.0.width','100'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fieldLayouts.75904a8b-e1fc-4225-ae1d-f221ad640d73.tabs.0.elements.1.fieldUid','\"ab0f389a-49ce-49a1-8ac5-e9b5a6d5f550\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fieldLayouts.75904a8b-e1fc-4225-ae1d-f221ad640d73.tabs.0.elements.1.instructions','null'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fieldLayouts.75904a8b-e1fc-4225-ae1d-f221ad640d73.tabs.0.elements.1.label','null'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fieldLayouts.75904a8b-e1fc-4225-ae1d-f221ad640d73.tabs.0.elements.1.required','false'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fieldLayouts.75904a8b-e1fc-4225-ae1d-f221ad640d73.tabs.0.elements.1.tip','null'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fieldLayouts.75904a8b-e1fc-4225-ae1d-f221ad640d73.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fieldLayouts.75904a8b-e1fc-4225-ae1d-f221ad640d73.tabs.0.elements.1.warning','null'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fieldLayouts.75904a8b-e1fc-4225-ae1d-f221ad640d73.tabs.0.elements.1.width','100'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fieldLayouts.75904a8b-e1fc-4225-ae1d-f221ad640d73.tabs.0.elements.2.fieldUid','\"dd7b1a59-c33e-465d-aa9a-46634169f8d6\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fieldLayouts.75904a8b-e1fc-4225-ae1d-f221ad640d73.tabs.0.elements.2.instructions','null'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fieldLayouts.75904a8b-e1fc-4225-ae1d-f221ad640d73.tabs.0.elements.2.label','null'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fieldLayouts.75904a8b-e1fc-4225-ae1d-f221ad640d73.tabs.0.elements.2.required','false'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fieldLayouts.75904a8b-e1fc-4225-ae1d-f221ad640d73.tabs.0.elements.2.tip','null'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fieldLayouts.75904a8b-e1fc-4225-ae1d-f221ad640d73.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fieldLayouts.75904a8b-e1fc-4225-ae1d-f221ad640d73.tabs.0.elements.2.warning','null'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fieldLayouts.75904a8b-e1fc-4225-ae1d-f221ad640d73.tabs.0.elements.2.width','100'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fieldLayouts.75904a8b-e1fc-4225-ae1d-f221ad640d73.tabs.0.name','\"Content\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fieldLayouts.75904a8b-e1fc-4225-ae1d-f221ad640d73.tabs.0.sortOrder','1'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.5e95989b-6f85-4379-aa15-ef9aa773b105.columnSuffix','null'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.5e95989b-6f85-4379-aa15-ef9aa773b105.contentColumnType','\"text\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.5e95989b-6f85-4379-aa15-ef9aa773b105.fieldGroup','null'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.5e95989b-6f85-4379-aa15-ef9aa773b105.handle','\"heading\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.5e95989b-6f85-4379-aa15-ef9aa773b105.instructions','\"\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.5e95989b-6f85-4379-aa15-ef9aa773b105.name','\"Heading\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.5e95989b-6f85-4379-aa15-ef9aa773b105.searchable','false'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.5e95989b-6f85-4379-aa15-ef9aa773b105.settings.byteLimit','null'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.5e95989b-6f85-4379-aa15-ef9aa773b105.settings.charLimit','null'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.5e95989b-6f85-4379-aa15-ef9aa773b105.settings.code','\"\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.5e95989b-6f85-4379-aa15-ef9aa773b105.settings.columnType','null'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.5e95989b-6f85-4379-aa15-ef9aa773b105.settings.initialRows','\"4\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.5e95989b-6f85-4379-aa15-ef9aa773b105.settings.multiline','\"\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.5e95989b-6f85-4379-aa15-ef9aa773b105.settings.placeholder','null'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.5e95989b-6f85-4379-aa15-ef9aa773b105.settings.uiMode','\"normal\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.5e95989b-6f85-4379-aa15-ef9aa773b105.translationKeyFormat','null'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.5e95989b-6f85-4379-aa15-ef9aa773b105.translationMethod','\"none\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.5e95989b-6f85-4379-aa15-ef9aa773b105.type','\"craft\\\\fields\\\\PlainText\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.ab0f389a-49ce-49a1-8ac5-e9b5a6d5f550.columnSuffix','null'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.ab0f389a-49ce-49a1-8ac5-e9b5a6d5f550.contentColumnType','\"text\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.ab0f389a-49ce-49a1-8ac5-e9b5a6d5f550.fieldGroup','null'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.ab0f389a-49ce-49a1-8ac5-e9b5a6d5f550.handle','\"text\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.ab0f389a-49ce-49a1-8ac5-e9b5a6d5f550.instructions','\"\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.ab0f389a-49ce-49a1-8ac5-e9b5a6d5f550.name','\"Text\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.ab0f389a-49ce-49a1-8ac5-e9b5a6d5f550.searchable','false'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.ab0f389a-49ce-49a1-8ac5-e9b5a6d5f550.settings.byteLimit','null'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.ab0f389a-49ce-49a1-8ac5-e9b5a6d5f550.settings.charLimit','null'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.ab0f389a-49ce-49a1-8ac5-e9b5a6d5f550.settings.code','\"\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.ab0f389a-49ce-49a1-8ac5-e9b5a6d5f550.settings.columnType','null'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.ab0f389a-49ce-49a1-8ac5-e9b5a6d5f550.settings.initialRows','\"4\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.ab0f389a-49ce-49a1-8ac5-e9b5a6d5f550.settings.multiline','\"1\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.ab0f389a-49ce-49a1-8ac5-e9b5a6d5f550.settings.placeholder','null'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.ab0f389a-49ce-49a1-8ac5-e9b5a6d5f550.settings.uiMode','\"normal\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.ab0f389a-49ce-49a1-8ac5-e9b5a6d5f550.translationKeyFormat','null'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.ab0f389a-49ce-49a1-8ac5-e9b5a6d5f550.translationMethod','\"none\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.ab0f389a-49ce-49a1-8ac5-e9b5a6d5f550.type','\"craft\\\\fields\\\\PlainText\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.dd7b1a59-c33e-465d-aa9a-46634169f8d6.columnSuffix','\"gjpgbrsz\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.dd7b1a59-c33e-465d-aa9a-46634169f8d6.contentColumnType','\"string\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.dd7b1a59-c33e-465d-aa9a-46634169f8d6.fieldGroup','null'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.dd7b1a59-c33e-465d-aa9a-46634169f8d6.handle','\"height\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.dd7b1a59-c33e-465d-aa9a-46634169f8d6.instructions','\"\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.dd7b1a59-c33e-465d-aa9a-46634169f8d6.name','\"Height\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.dd7b1a59-c33e-465d-aa9a-46634169f8d6.searchable','false'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.dd7b1a59-c33e-465d-aa9a-46634169f8d6.settings.optgroups','true'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.dd7b1a59-c33e-465d-aa9a-46634169f8d6.settings.options.0.__assoc__.0.0','\"label\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.dd7b1a59-c33e-465d-aa9a-46634169f8d6.settings.options.0.__assoc__.0.1','\"Screen\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.dd7b1a59-c33e-465d-aa9a-46634169f8d6.settings.options.0.__assoc__.1.0','\"value\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.dd7b1a59-c33e-465d-aa9a-46634169f8d6.settings.options.0.__assoc__.1.1','\"h-screen\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.dd7b1a59-c33e-465d-aa9a-46634169f8d6.settings.options.0.__assoc__.2.0','\"default\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.dd7b1a59-c33e-465d-aa9a-46634169f8d6.settings.options.0.__assoc__.2.1','\"1\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.dd7b1a59-c33e-465d-aa9a-46634169f8d6.settings.options.1.__assoc__.0.0','\"label\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.dd7b1a59-c33e-465d-aa9a-46634169f8d6.settings.options.1.__assoc__.0.1','\"Auto\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.dd7b1a59-c33e-465d-aa9a-46634169f8d6.settings.options.1.__assoc__.1.0','\"value\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.dd7b1a59-c33e-465d-aa9a-46634169f8d6.settings.options.1.__assoc__.1.1','\"h-auto\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.dd7b1a59-c33e-465d-aa9a-46634169f8d6.settings.options.1.__assoc__.2.0','\"default\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.dd7b1a59-c33e-465d-aa9a-46634169f8d6.settings.options.1.__assoc__.2.1','\"\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.dd7b1a59-c33e-465d-aa9a-46634169f8d6.translationKeyFormat','null'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.dd7b1a59-c33e-465d-aa9a-46634169f8d6.translationMethod','\"none\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.fields.dd7b1a59-c33e-465d-aa9a-46634169f8d6.type','\"craft\\\\fields\\\\Dropdown\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.handle','\"leadText\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.name','\"Lead text\"'),('matrixBlockTypes.1730f29f-dfa8-4229-867a-844a7a23c120.sortOrder','1'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.field','\"d3a8c8b6-f737-460c-81dc-9818db4a2627\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.elements.0.fieldUid','\"bef58c8d-9ae2-4638-b1b8-52a74de9326d\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.elements.0.instructions','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.elements.0.label','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.elements.0.required','false'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.elements.0.tip','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.elements.0.warning','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.elements.0.width','100'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.elements.1.fieldUid','\"197aad2d-e3a7-4594-82e2-5f317df1786e\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.elements.1.instructions','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.elements.1.label','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.elements.1.required','false'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.elements.1.tip','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.elements.1.warning','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.elements.1.width','100'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.elements.2.fieldUid','\"5c172524-13c3-43d8-a0c0-45c25cf3fede\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.elements.2.instructions','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.elements.2.label','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.elements.2.required','false'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.elements.2.tip','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.elements.2.warning','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.elements.2.width','100'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.elements.3.fieldUid','\"ef1558a2-4bac-4ea9-8c1e-3d4a432d72db\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.elements.3.instructions','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.elements.3.label','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.elements.3.required','false'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.elements.3.tip','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.elements.3.warning','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.elements.3.width','100'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.name','\"Content\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fieldLayouts.d9c5ea31-02de-40ba-94fe-5d02bed27d76.tabs.0.sortOrder','1'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.197aad2d-e3a7-4594-82e2-5f317df1786e.columnSuffix','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.197aad2d-e3a7-4594-82e2-5f317df1786e.contentColumnType','\"text\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.197aad2d-e3a7-4594-82e2-5f317df1786e.fieldGroup','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.197aad2d-e3a7-4594-82e2-5f317df1786e.handle','\"heading\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.197aad2d-e3a7-4594-82e2-5f317df1786e.instructions','\"\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.197aad2d-e3a7-4594-82e2-5f317df1786e.name','\"Heading\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.197aad2d-e3a7-4594-82e2-5f317df1786e.searchable','false'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.197aad2d-e3a7-4594-82e2-5f317df1786e.settings.byteLimit','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.197aad2d-e3a7-4594-82e2-5f317df1786e.settings.charLimit','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.197aad2d-e3a7-4594-82e2-5f317df1786e.settings.code','\"\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.197aad2d-e3a7-4594-82e2-5f317df1786e.settings.columnType','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.197aad2d-e3a7-4594-82e2-5f317df1786e.settings.initialRows','\"4\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.197aad2d-e3a7-4594-82e2-5f317df1786e.settings.multiline','\"\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.197aad2d-e3a7-4594-82e2-5f317df1786e.settings.placeholder','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.197aad2d-e3a7-4594-82e2-5f317df1786e.settings.uiMode','\"normal\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.197aad2d-e3a7-4594-82e2-5f317df1786e.translationKeyFormat','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.197aad2d-e3a7-4594-82e2-5f317df1786e.translationMethod','\"none\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.197aad2d-e3a7-4594-82e2-5f317df1786e.type','\"craft\\\\fields\\\\PlainText\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.5c172524-13c3-43d8-a0c0-45c25cf3fede.columnSuffix','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.5c172524-13c3-43d8-a0c0-45c25cf3fede.contentColumnType','\"text\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.5c172524-13c3-43d8-a0c0-45c25cf3fede.fieldGroup','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.5c172524-13c3-43d8-a0c0-45c25cf3fede.handle','\"text\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.5c172524-13c3-43d8-a0c0-45c25cf3fede.instructions','\"\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.5c172524-13c3-43d8-a0c0-45c25cf3fede.name','\"Text\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.5c172524-13c3-43d8-a0c0-45c25cf3fede.searchable','false'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.5c172524-13c3-43d8-a0c0-45c25cf3fede.settings.byteLimit','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.5c172524-13c3-43d8-a0c0-45c25cf3fede.settings.charLimit','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.5c172524-13c3-43d8-a0c0-45c25cf3fede.settings.code','\"\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.5c172524-13c3-43d8-a0c0-45c25cf3fede.settings.columnType','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.5c172524-13c3-43d8-a0c0-45c25cf3fede.settings.initialRows','\"4\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.5c172524-13c3-43d8-a0c0-45c25cf3fede.settings.multiline','\"1\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.5c172524-13c3-43d8-a0c0-45c25cf3fede.settings.placeholder','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.5c172524-13c3-43d8-a0c0-45c25cf3fede.settings.uiMode','\"normal\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.5c172524-13c3-43d8-a0c0-45c25cf3fede.translationKeyFormat','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.5c172524-13c3-43d8-a0c0-45c25cf3fede.translationMethod','\"none\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.5c172524-13c3-43d8-a0c0-45c25cf3fede.type','\"craft\\\\fields\\\\PlainText\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.bef58c8d-9ae2-4638-b1b8-52a74de9326d.columnSuffix','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.bef58c8d-9ae2-4638-b1b8-52a74de9326d.contentColumnType','\"text\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.bef58c8d-9ae2-4638-b1b8-52a74de9326d.fieldGroup','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.bef58c8d-9ae2-4638-b1b8-52a74de9326d.handle','\"sectionHeading\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.bef58c8d-9ae2-4638-b1b8-52a74de9326d.instructions','\"\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.bef58c8d-9ae2-4638-b1b8-52a74de9326d.name','\"Section Heading\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.bef58c8d-9ae2-4638-b1b8-52a74de9326d.searchable','false'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.bef58c8d-9ae2-4638-b1b8-52a74de9326d.settings.byteLimit','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.bef58c8d-9ae2-4638-b1b8-52a74de9326d.settings.charLimit','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.bef58c8d-9ae2-4638-b1b8-52a74de9326d.settings.code','\"\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.bef58c8d-9ae2-4638-b1b8-52a74de9326d.settings.columnType','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.bef58c8d-9ae2-4638-b1b8-52a74de9326d.settings.initialRows','\"4\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.bef58c8d-9ae2-4638-b1b8-52a74de9326d.settings.multiline','\"\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.bef58c8d-9ae2-4638-b1b8-52a74de9326d.settings.placeholder','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.bef58c8d-9ae2-4638-b1b8-52a74de9326d.settings.uiMode','\"normal\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.bef58c8d-9ae2-4638-b1b8-52a74de9326d.translationKeyFormat','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.bef58c8d-9ae2-4638-b1b8-52a74de9326d.translationMethod','\"none\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.bef58c8d-9ae2-4638-b1b8-52a74de9326d.type','\"craft\\\\fields\\\\PlainText\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.ef1558a2-4bac-4ea9-8c1e-3d4a432d72db.columnSuffix','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.ef1558a2-4bac-4ea9-8c1e-3d4a432d72db.contentColumnType','\"string\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.ef1558a2-4bac-4ea9-8c1e-3d4a432d72db.fieldGroup','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.ef1558a2-4bac-4ea9-8c1e-3d4a432d72db.handle','\"links\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.ef1558a2-4bac-4ea9-8c1e-3d4a432d72db.instructions','\"\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.ef1558a2-4bac-4ea9-8c1e-3d4a432d72db.name','\"Links\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.ef1558a2-4bac-4ea9-8c1e-3d4a432d72db.searchable','false'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.ef1558a2-4bac-4ea9-8c1e-3d4a432d72db.settings.columns.__assoc__.0.0','\"78dae584-8470-46cf-9d9d-81753f0c8a47\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.ef1558a2-4bac-4ea9-8c1e-3d4a432d72db.settings.columns.__assoc__.0.1.__assoc__.0.0','\"width\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.ef1558a2-4bac-4ea9-8c1e-3d4a432d72db.settings.columns.__assoc__.0.1.__assoc__.0.1','\"\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.ef1558a2-4bac-4ea9-8c1e-3d4a432d72db.settings.columns.__assoc__.1.0','\"f362a4cd-9c43-453d-84e5-dc8d9efa0b9f\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.ef1558a2-4bac-4ea9-8c1e-3d4a432d72db.settings.columns.__assoc__.1.1.__assoc__.0.0','\"width\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.ef1558a2-4bac-4ea9-8c1e-3d4a432d72db.settings.columns.__assoc__.1.1.__assoc__.0.1','\"\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.ef1558a2-4bac-4ea9-8c1e-3d4a432d72db.settings.columns.__assoc__.2.0','\"a51c75e9-07f7-42af-b360-cf8e55df3da3\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.ef1558a2-4bac-4ea9-8c1e-3d4a432d72db.settings.columns.__assoc__.2.1.__assoc__.0.0','\"width\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.ef1558a2-4bac-4ea9-8c1e-3d4a432d72db.settings.columns.__assoc__.2.1.__assoc__.0.1','\"\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.ef1558a2-4bac-4ea9-8c1e-3d4a432d72db.settings.contentTable','\"{{%stc_8_links}}\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.ef1558a2-4bac-4ea9-8c1e-3d4a432d72db.settings.fieldLayout','\"table\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.ef1558a2-4bac-4ea9-8c1e-3d4a432d72db.settings.maxRows','\"\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.ef1558a2-4bac-4ea9-8c1e-3d4a432d72db.settings.minRows','\"\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.ef1558a2-4bac-4ea9-8c1e-3d4a432d72db.settings.placeholderKey','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.ef1558a2-4bac-4ea9-8c1e-3d4a432d72db.settings.propagationMethod','\"all\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.ef1558a2-4bac-4ea9-8c1e-3d4a432d72db.settings.selectionLabel','\"\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.ef1558a2-4bac-4ea9-8c1e-3d4a432d72db.settings.staticField','\"\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.ef1558a2-4bac-4ea9-8c1e-3d4a432d72db.translationKeyFormat','null'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.ef1558a2-4bac-4ea9-8c1e-3d4a432d72db.translationMethod','\"site\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.fields.ef1558a2-4bac-4ea9-8c1e-3d4a432d72db.type','\"verbb\\\\supertable\\\\fields\\\\SuperTableField\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.handle','\"fullWidthHeadingAndText\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.name','\"Full width heading and text\"'),('matrixBlockTypes.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b.sortOrder','1'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.field','\"ffe371e5-6f1c-4f7e-8c29-3b53a7b68c9c\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.elements.0.fieldUid','\"3c4c718b-a839-4321-9287-6fa138fa90e9\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.elements.0.instructions','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.elements.0.label','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.elements.0.required','false'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.elements.0.tip','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.elements.0.warning','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.elements.0.width','100'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.elements.1.fieldUid','\"527a67b5-8e0e-46fc-8f16-537cebae9312\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.elements.1.instructions','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.elements.1.label','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.elements.1.required','false'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.elements.1.tip','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.elements.1.warning','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.elements.1.width','100'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.elements.2.fieldUid','\"d1b968be-6a38-4c3d-bc2e-67168feefab3\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.elements.2.instructions','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.elements.2.label','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.elements.2.required','false'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.elements.2.tip','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.elements.2.warning','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.elements.2.width','100'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.elements.3.fieldUid','\"f2facc33-1ac4-4d0e-b0ea-3995063e5892\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.elements.3.instructions','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.elements.3.label','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.elements.3.required','false'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.elements.3.tip','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.elements.3.warning','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.elements.3.width','100'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.name','\"Content\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fieldLayouts.9c62d064-fdfb-4185-8bc9-2eb773403e1d.tabs.0.sortOrder','1'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.3c4c718b-a839-4321-9287-6fa138fa90e9.columnSuffix','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.3c4c718b-a839-4321-9287-6fa138fa90e9.contentColumnType','\"string\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.3c4c718b-a839-4321-9287-6fa138fa90e9.fieldGroup','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.3c4c718b-a839-4321-9287-6fa138fa90e9.handle','\"image\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.3c4c718b-a839-4321-9287-6fa138fa90e9.instructions','\"\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.3c4c718b-a839-4321-9287-6fa138fa90e9.name','\"Image\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.3c4c718b-a839-4321-9287-6fa138fa90e9.searchable','false'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.3c4c718b-a839-4321-9287-6fa138fa90e9.settings.allowedKinds.0','\"image\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.3c4c718b-a839-4321-9287-6fa138fa90e9.settings.allowSelfRelations','false'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.3c4c718b-a839-4321-9287-6fa138fa90e9.settings.allowUploads','true'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.3c4c718b-a839-4321-9287-6fa138fa90e9.settings.defaultUploadLocationSource','\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.3c4c718b-a839-4321-9287-6fa138fa90e9.settings.defaultUploadLocationSubpath','\"\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.3c4c718b-a839-4321-9287-6fa138fa90e9.settings.limit','\"1\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.3c4c718b-a839-4321-9287-6fa138fa90e9.settings.localizeRelations','false'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.3c4c718b-a839-4321-9287-6fa138fa90e9.settings.previewMode','\"full\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.3c4c718b-a839-4321-9287-6fa138fa90e9.settings.restrictFiles','\"1\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.3c4c718b-a839-4321-9287-6fa138fa90e9.settings.selectionLabel','\"Add an image\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.3c4c718b-a839-4321-9287-6fa138fa90e9.settings.showSiteMenu','true'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.3c4c718b-a839-4321-9287-6fa138fa90e9.settings.showUnpermittedFiles','false'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.3c4c718b-a839-4321-9287-6fa138fa90e9.settings.showUnpermittedVolumes','false'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.3c4c718b-a839-4321-9287-6fa138fa90e9.settings.singleUploadLocationSource','\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.3c4c718b-a839-4321-9287-6fa138fa90e9.settings.singleUploadLocationSubpath','\"\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.3c4c718b-a839-4321-9287-6fa138fa90e9.settings.source','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.3c4c718b-a839-4321-9287-6fa138fa90e9.settings.sources','\"*\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.3c4c718b-a839-4321-9287-6fa138fa90e9.settings.targetSiteId','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.3c4c718b-a839-4321-9287-6fa138fa90e9.settings.useSingleFolder','false'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.3c4c718b-a839-4321-9287-6fa138fa90e9.settings.validateRelatedElements','false'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.3c4c718b-a839-4321-9287-6fa138fa90e9.settings.viewMode','\"large\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.3c4c718b-a839-4321-9287-6fa138fa90e9.translationKeyFormat','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.3c4c718b-a839-4321-9287-6fa138fa90e9.translationMethod','\"site\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.3c4c718b-a839-4321-9287-6fa138fa90e9.type','\"craft\\\\fields\\\\Assets\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.527a67b5-8e0e-46fc-8f16-537cebae9312.columnSuffix','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.527a67b5-8e0e-46fc-8f16-537cebae9312.contentColumnType','\"text\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.527a67b5-8e0e-46fc-8f16-537cebae9312.fieldGroup','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.527a67b5-8e0e-46fc-8f16-537cebae9312.handle','\"heading\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.527a67b5-8e0e-46fc-8f16-537cebae9312.instructions','\"\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.527a67b5-8e0e-46fc-8f16-537cebae9312.name','\"Heading\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.527a67b5-8e0e-46fc-8f16-537cebae9312.searchable','false'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.527a67b5-8e0e-46fc-8f16-537cebae9312.settings.byteLimit','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.527a67b5-8e0e-46fc-8f16-537cebae9312.settings.charLimit','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.527a67b5-8e0e-46fc-8f16-537cebae9312.settings.code','\"\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.527a67b5-8e0e-46fc-8f16-537cebae9312.settings.columnType','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.527a67b5-8e0e-46fc-8f16-537cebae9312.settings.initialRows','\"4\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.527a67b5-8e0e-46fc-8f16-537cebae9312.settings.multiline','\"\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.527a67b5-8e0e-46fc-8f16-537cebae9312.settings.placeholder','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.527a67b5-8e0e-46fc-8f16-537cebae9312.settings.uiMode','\"normal\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.527a67b5-8e0e-46fc-8f16-537cebae9312.translationKeyFormat','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.527a67b5-8e0e-46fc-8f16-537cebae9312.translationMethod','\"none\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.527a67b5-8e0e-46fc-8f16-537cebae9312.type','\"craft\\\\fields\\\\PlainText\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.d1b968be-6a38-4c3d-bc2e-67168feefab3.columnSuffix','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.d1b968be-6a38-4c3d-bc2e-67168feefab3.contentColumnType','\"text\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.d1b968be-6a38-4c3d-bc2e-67168feefab3.fieldGroup','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.d1b968be-6a38-4c3d-bc2e-67168feefab3.handle','\"text\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.d1b968be-6a38-4c3d-bc2e-67168feefab3.instructions','\"\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.d1b968be-6a38-4c3d-bc2e-67168feefab3.name','\"Text\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.d1b968be-6a38-4c3d-bc2e-67168feefab3.searchable','false'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.d1b968be-6a38-4c3d-bc2e-67168feefab3.settings.byteLimit','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.d1b968be-6a38-4c3d-bc2e-67168feefab3.settings.charLimit','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.d1b968be-6a38-4c3d-bc2e-67168feefab3.settings.code','\"\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.d1b968be-6a38-4c3d-bc2e-67168feefab3.settings.columnType','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.d1b968be-6a38-4c3d-bc2e-67168feefab3.settings.initialRows','\"4\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.d1b968be-6a38-4c3d-bc2e-67168feefab3.settings.multiline','\"1\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.d1b968be-6a38-4c3d-bc2e-67168feefab3.settings.placeholder','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.d1b968be-6a38-4c3d-bc2e-67168feefab3.settings.uiMode','\"normal\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.d1b968be-6a38-4c3d-bc2e-67168feefab3.translationKeyFormat','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.d1b968be-6a38-4c3d-bc2e-67168feefab3.translationMethod','\"none\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.d1b968be-6a38-4c3d-bc2e-67168feefab3.type','\"craft\\\\fields\\\\PlainText\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.f2facc33-1ac4-4d0e-b0ea-3995063e5892.columnSuffix','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.f2facc33-1ac4-4d0e-b0ea-3995063e5892.contentColumnType','\"string\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.f2facc33-1ac4-4d0e-b0ea-3995063e5892.fieldGroup','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.f2facc33-1ac4-4d0e-b0ea-3995063e5892.handle','\"imageAlignment\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.f2facc33-1ac4-4d0e-b0ea-3995063e5892.instructions','\"\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.f2facc33-1ac4-4d0e-b0ea-3995063e5892.name','\"Image alignment\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.f2facc33-1ac4-4d0e-b0ea-3995063e5892.searchable','false'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.f2facc33-1ac4-4d0e-b0ea-3995063e5892.settings.optgroups','true'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.f2facc33-1ac4-4d0e-b0ea-3995063e5892.settings.options.0.__assoc__.0.0','\"label\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.f2facc33-1ac4-4d0e-b0ea-3995063e5892.settings.options.0.__assoc__.0.1','\"Left\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.f2facc33-1ac4-4d0e-b0ea-3995063e5892.settings.options.0.__assoc__.1.0','\"value\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.f2facc33-1ac4-4d0e-b0ea-3995063e5892.settings.options.0.__assoc__.1.1','\"left\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.f2facc33-1ac4-4d0e-b0ea-3995063e5892.settings.options.0.__assoc__.2.0','\"default\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.f2facc33-1ac4-4d0e-b0ea-3995063e5892.settings.options.0.__assoc__.2.1','\"\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.f2facc33-1ac4-4d0e-b0ea-3995063e5892.settings.options.1.__assoc__.0.0','\"label\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.f2facc33-1ac4-4d0e-b0ea-3995063e5892.settings.options.1.__assoc__.0.1','\"Right\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.f2facc33-1ac4-4d0e-b0ea-3995063e5892.settings.options.1.__assoc__.1.0','\"value\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.f2facc33-1ac4-4d0e-b0ea-3995063e5892.settings.options.1.__assoc__.1.1','\"right\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.f2facc33-1ac4-4d0e-b0ea-3995063e5892.settings.options.1.__assoc__.2.0','\"default\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.f2facc33-1ac4-4d0e-b0ea-3995063e5892.settings.options.1.__assoc__.2.1','\"\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.f2facc33-1ac4-4d0e-b0ea-3995063e5892.translationKeyFormat','null'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.f2facc33-1ac4-4d0e-b0ea-3995063e5892.translationMethod','\"none\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.fields.f2facc33-1ac4-4d0e-b0ea-3995063e5892.type','\"craft\\\\fields\\\\Dropdown\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.handle','\"imageAndText\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.name','\"Image and text\"'),('matrixBlockTypes.3a7a615c-5c19-4d35-bc53-13c7cfa59291.sortOrder','4'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.field','\"d3a8c8b6-f737-460c-81dc-9818db4a2627\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.elements.0.fieldUid','\"179540f3-7f8c-4c10-bb48-99fead63ee70\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.elements.0.instructions','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.elements.0.label','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.elements.0.required','false'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.elements.0.tip','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.elements.0.warning','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.elements.0.width','100'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.elements.1.fieldUid','\"5085f403-52b3-4b38-b10c-4bff77776af1\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.elements.1.instructions','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.elements.1.label','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.elements.1.required','false'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.elements.1.tip','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.elements.1.warning','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.elements.1.width','100'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.elements.2.fieldUid','\"23152e7a-37c2-41e9-9df3-9892c2a4a2f6\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.elements.2.instructions','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.elements.2.label','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.elements.2.required','false'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.elements.2.tip','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.elements.2.warning','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.elements.2.width','100'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.elements.3.fieldUid','\"40ca8672-9409-48d1-b0f8-0a728dcd8497\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.elements.3.instructions','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.elements.3.label','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.elements.3.required','false'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.elements.3.tip','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.elements.3.warning','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.elements.3.width','100'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.name','\"Content\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fieldLayouts.91369206-e180-4343-bf58-e09a4ab3cf33.tabs.0.sortOrder','1'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.179540f3-7f8c-4c10-bb48-99fead63ee70.columnSuffix','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.179540f3-7f8c-4c10-bb48-99fead63ee70.contentColumnType','\"text\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.179540f3-7f8c-4c10-bb48-99fead63ee70.fieldGroup','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.179540f3-7f8c-4c10-bb48-99fead63ee70.handle','\"sectionHeading\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.179540f3-7f8c-4c10-bb48-99fead63ee70.instructions','\"\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.179540f3-7f8c-4c10-bb48-99fead63ee70.name','\"Section heading\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.179540f3-7f8c-4c10-bb48-99fead63ee70.searchable','false'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.179540f3-7f8c-4c10-bb48-99fead63ee70.settings.byteLimit','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.179540f3-7f8c-4c10-bb48-99fead63ee70.settings.charLimit','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.179540f3-7f8c-4c10-bb48-99fead63ee70.settings.code','\"\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.179540f3-7f8c-4c10-bb48-99fead63ee70.settings.columnType','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.179540f3-7f8c-4c10-bb48-99fead63ee70.settings.initialRows','\"4\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.179540f3-7f8c-4c10-bb48-99fead63ee70.settings.multiline','\"\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.179540f3-7f8c-4c10-bb48-99fead63ee70.settings.placeholder','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.179540f3-7f8c-4c10-bb48-99fead63ee70.settings.uiMode','\"normal\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.179540f3-7f8c-4c10-bb48-99fead63ee70.translationKeyFormat','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.179540f3-7f8c-4c10-bb48-99fead63ee70.translationMethod','\"none\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.179540f3-7f8c-4c10-bb48-99fead63ee70.type','\"craft\\\\fields\\\\PlainText\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.23152e7a-37c2-41e9-9df3-9892c2a4a2f6.columnSuffix','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.23152e7a-37c2-41e9-9df3-9892c2a4a2f6.contentColumnType','\"text\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.23152e7a-37c2-41e9-9df3-9892c2a4a2f6.fieldGroup','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.23152e7a-37c2-41e9-9df3-9892c2a4a2f6.handle','\"text\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.23152e7a-37c2-41e9-9df3-9892c2a4a2f6.instructions','\"\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.23152e7a-37c2-41e9-9df3-9892c2a4a2f6.name','\"Text\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.23152e7a-37c2-41e9-9df3-9892c2a4a2f6.searchable','false'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.23152e7a-37c2-41e9-9df3-9892c2a4a2f6.settings.byteLimit','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.23152e7a-37c2-41e9-9df3-9892c2a4a2f6.settings.charLimit','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.23152e7a-37c2-41e9-9df3-9892c2a4a2f6.settings.code','\"\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.23152e7a-37c2-41e9-9df3-9892c2a4a2f6.settings.columnType','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.23152e7a-37c2-41e9-9df3-9892c2a4a2f6.settings.initialRows','\"4\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.23152e7a-37c2-41e9-9df3-9892c2a4a2f6.settings.multiline','\"1\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.23152e7a-37c2-41e9-9df3-9892c2a4a2f6.settings.placeholder','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.23152e7a-37c2-41e9-9df3-9892c2a4a2f6.settings.uiMode','\"normal\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.23152e7a-37c2-41e9-9df3-9892c2a4a2f6.translationKeyFormat','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.23152e7a-37c2-41e9-9df3-9892c2a4a2f6.translationMethod','\"none\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.23152e7a-37c2-41e9-9df3-9892c2a4a2f6.type','\"craft\\\\fields\\\\PlainText\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.40ca8672-9409-48d1-b0f8-0a728dcd8497.columnSuffix','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.40ca8672-9409-48d1-b0f8-0a728dcd8497.contentColumnType','\"string\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.40ca8672-9409-48d1-b0f8-0a728dcd8497.fieldGroup','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.40ca8672-9409-48d1-b0f8-0a728dcd8497.handle','\"links\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.40ca8672-9409-48d1-b0f8-0a728dcd8497.instructions','\"\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.40ca8672-9409-48d1-b0f8-0a728dcd8497.name','\"Links\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.40ca8672-9409-48d1-b0f8-0a728dcd8497.searchable','false'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.40ca8672-9409-48d1-b0f8-0a728dcd8497.settings.columns.__assoc__.0.0','\"24127c19-929c-4799-a4fc-addd0c9b8839\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.40ca8672-9409-48d1-b0f8-0a728dcd8497.settings.columns.__assoc__.0.1.__assoc__.0.0','\"width\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.40ca8672-9409-48d1-b0f8-0a728dcd8497.settings.columns.__assoc__.0.1.__assoc__.0.1','\"\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.40ca8672-9409-48d1-b0f8-0a728dcd8497.settings.columns.__assoc__.1.0','\"b341277d-8bc1-411b-a87f-845f206f54b8\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.40ca8672-9409-48d1-b0f8-0a728dcd8497.settings.columns.__assoc__.1.1.__assoc__.0.0','\"width\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.40ca8672-9409-48d1-b0f8-0a728dcd8497.settings.columns.__assoc__.1.1.__assoc__.0.1','\"\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.40ca8672-9409-48d1-b0f8-0a728dcd8497.settings.columns.__assoc__.2.0','\"0598f256-b692-400e-ab10-a3abbe55e729\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.40ca8672-9409-48d1-b0f8-0a728dcd8497.settings.columns.__assoc__.2.1.__assoc__.0.0','\"width\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.40ca8672-9409-48d1-b0f8-0a728dcd8497.settings.columns.__assoc__.2.1.__assoc__.0.1','\"\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.40ca8672-9409-48d1-b0f8-0a728dcd8497.settings.contentTable','\"{{%stc_11_links}}\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.40ca8672-9409-48d1-b0f8-0a728dcd8497.settings.fieldLayout','\"table\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.40ca8672-9409-48d1-b0f8-0a728dcd8497.settings.maxRows','\"\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.40ca8672-9409-48d1-b0f8-0a728dcd8497.settings.minRows','\"\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.40ca8672-9409-48d1-b0f8-0a728dcd8497.settings.placeholderKey','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.40ca8672-9409-48d1-b0f8-0a728dcd8497.settings.propagationMethod','\"all\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.40ca8672-9409-48d1-b0f8-0a728dcd8497.settings.selectionLabel','\"\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.40ca8672-9409-48d1-b0f8-0a728dcd8497.settings.staticField','\"\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.40ca8672-9409-48d1-b0f8-0a728dcd8497.translationKeyFormat','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.40ca8672-9409-48d1-b0f8-0a728dcd8497.translationMethod','\"site\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.40ca8672-9409-48d1-b0f8-0a728dcd8497.type','\"verbb\\\\supertable\\\\fields\\\\SuperTableField\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.5085f403-52b3-4b38-b10c-4bff77776af1.columnSuffix','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.5085f403-52b3-4b38-b10c-4bff77776af1.contentColumnType','\"text\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.5085f403-52b3-4b38-b10c-4bff77776af1.fieldGroup','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.5085f403-52b3-4b38-b10c-4bff77776af1.handle','\"heading\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.5085f403-52b3-4b38-b10c-4bff77776af1.instructions','\"\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.5085f403-52b3-4b38-b10c-4bff77776af1.name','\"Heading\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.5085f403-52b3-4b38-b10c-4bff77776af1.searchable','false'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.5085f403-52b3-4b38-b10c-4bff77776af1.settings.byteLimit','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.5085f403-52b3-4b38-b10c-4bff77776af1.settings.charLimit','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.5085f403-52b3-4b38-b10c-4bff77776af1.settings.code','\"\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.5085f403-52b3-4b38-b10c-4bff77776af1.settings.columnType','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.5085f403-52b3-4b38-b10c-4bff77776af1.settings.initialRows','\"4\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.5085f403-52b3-4b38-b10c-4bff77776af1.settings.multiline','\"\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.5085f403-52b3-4b38-b10c-4bff77776af1.settings.placeholder','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.5085f403-52b3-4b38-b10c-4bff77776af1.settings.uiMode','\"normal\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.5085f403-52b3-4b38-b10c-4bff77776af1.translationKeyFormat','null'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.5085f403-52b3-4b38-b10c-4bff77776af1.translationMethod','\"none\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.fields.5085f403-52b3-4b38-b10c-4bff77776af1.type','\"craft\\\\fields\\\\PlainText\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.handle','\"headingLeftTextRight\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.name','\"Heading left text right\"'),('matrixBlockTypes.41b88cf5-a28a-4471-8fe0-f33496141d18.sortOrder','4'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.field','\"a172791e-53b7-44eb-b87b-ab304cd1588f\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.0.fieldUid','\"a2b9e04a-db16-44c3-95a7-6a037f194622\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.0.instructions','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.0.label','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.0.required','false'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.0.tip','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.0.uid','\"e761755d-3ee2-4e9c-81d5-b1170df46ae9\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.0.warning','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.0.width','100'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.1.fieldUid','\"a2199a45-7aa1-467d-a19c-76a79bb943a2\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.1.instructions','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.1.label','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.1.required','false'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.1.tip','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.1.uid','\"7db7427a-cea6-41b8-ae69-ff9b7e138d0f\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.1.warning','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.1.width','100'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.2.fieldUid','\"4ecf14fc-9c8a-4f62-b669-927408ddea33\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.2.instructions','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.2.label','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.2.required','false'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.2.tip','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.2.uid','\"20869919-55e9-4be2-8ca4-06f68f2392fd\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.2.warning','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.2.width','50'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.3.fieldUid','\"45f624eb-f394-4fb8-a0f1-1bf9e8ebcc1e\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.3.instructions','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.3.label','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.3.required','false'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.3.tip','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.3.uid','\"222a7090-97fe-4459-bb20-483b62a31e19\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.3.warning','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.elements.3.width','50'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.name','\"Content\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fieldLayouts.c69dcfaf-9963-446c-a9ce-b765c044cd38.tabs.0.uid','\"d755c55b-3340-44b3-b4df-4bc56258b45a\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.45f624eb-f394-4fb8-a0f1-1bf9e8ebcc1e.columnSuffix','\"zbzseplm\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.45f624eb-f394-4fb8-a0f1-1bf9e8ebcc1e.contentColumnType','\"text\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.45f624eb-f394-4fb8-a0f1-1bf9e8ebcc1e.fieldGroup','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.45f624eb-f394-4fb8-a0f1-1bf9e8ebcc1e.handle','\"buttonUrl\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.45f624eb-f394-4fb8-a0f1-1bf9e8ebcc1e.instructions','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.45f624eb-f394-4fb8-a0f1-1bf9e8ebcc1e.name','\"Button URL\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.45f624eb-f394-4fb8-a0f1-1bf9e8ebcc1e.searchable','false'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.45f624eb-f394-4fb8-a0f1-1bf9e8ebcc1e.settings.byteLimit','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.45f624eb-f394-4fb8-a0f1-1bf9e8ebcc1e.settings.charLimit','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.45f624eb-f394-4fb8-a0f1-1bf9e8ebcc1e.settings.code','false'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.45f624eb-f394-4fb8-a0f1-1bf9e8ebcc1e.settings.columnType','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.45f624eb-f394-4fb8-a0f1-1bf9e8ebcc1e.settings.initialRows','4'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.45f624eb-f394-4fb8-a0f1-1bf9e8ebcc1e.settings.multiline','false'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.45f624eb-f394-4fb8-a0f1-1bf9e8ebcc1e.settings.placeholder','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.45f624eb-f394-4fb8-a0f1-1bf9e8ebcc1e.settings.uiMode','\"normal\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.45f624eb-f394-4fb8-a0f1-1bf9e8ebcc1e.translationKeyFormat','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.45f624eb-f394-4fb8-a0f1-1bf9e8ebcc1e.translationMethod','\"none\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.45f624eb-f394-4fb8-a0f1-1bf9e8ebcc1e.type','\"craft\\\\fields\\\\PlainText\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.4ecf14fc-9c8a-4f62-b669-927408ddea33.columnSuffix','\"wwfbjvap\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.4ecf14fc-9c8a-4f62-b669-927408ddea33.contentColumnType','\"text\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.4ecf14fc-9c8a-4f62-b669-927408ddea33.fieldGroup','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.4ecf14fc-9c8a-4f62-b669-927408ddea33.handle','\"buttonText\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.4ecf14fc-9c8a-4f62-b669-927408ddea33.instructions','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.4ecf14fc-9c8a-4f62-b669-927408ddea33.name','\"Button text\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.4ecf14fc-9c8a-4f62-b669-927408ddea33.searchable','false'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.4ecf14fc-9c8a-4f62-b669-927408ddea33.settings.byteLimit','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.4ecf14fc-9c8a-4f62-b669-927408ddea33.settings.charLimit','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.4ecf14fc-9c8a-4f62-b669-927408ddea33.settings.code','false'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.4ecf14fc-9c8a-4f62-b669-927408ddea33.settings.columnType','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.4ecf14fc-9c8a-4f62-b669-927408ddea33.settings.initialRows','4'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.4ecf14fc-9c8a-4f62-b669-927408ddea33.settings.multiline','false'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.4ecf14fc-9c8a-4f62-b669-927408ddea33.settings.placeholder','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.4ecf14fc-9c8a-4f62-b669-927408ddea33.settings.uiMode','\"normal\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.4ecf14fc-9c8a-4f62-b669-927408ddea33.translationKeyFormat','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.4ecf14fc-9c8a-4f62-b669-927408ddea33.translationMethod','\"none\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.4ecf14fc-9c8a-4f62-b669-927408ddea33.type','\"craft\\\\fields\\\\PlainText\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2199a45-7aa1-467d-a19c-76a79bb943a2.columnSuffix','\"eroezkpc\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2199a45-7aa1-467d-a19c-76a79bb943a2.contentColumnType','\"text\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2199a45-7aa1-467d-a19c-76a79bb943a2.fieldGroup','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2199a45-7aa1-467d-a19c-76a79bb943a2.handle','\"accordionText\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2199a45-7aa1-467d-a19c-76a79bb943a2.instructions','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2199a45-7aa1-467d-a19c-76a79bb943a2.name','\"Text\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2199a45-7aa1-467d-a19c-76a79bb943a2.searchable','false'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2199a45-7aa1-467d-a19c-76a79bb943a2.settings.byteLimit','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2199a45-7aa1-467d-a19c-76a79bb943a2.settings.charLimit','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2199a45-7aa1-467d-a19c-76a79bb943a2.settings.code','false'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2199a45-7aa1-467d-a19c-76a79bb943a2.settings.columnType','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2199a45-7aa1-467d-a19c-76a79bb943a2.settings.initialRows','4'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2199a45-7aa1-467d-a19c-76a79bb943a2.settings.multiline','true'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2199a45-7aa1-467d-a19c-76a79bb943a2.settings.placeholder','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2199a45-7aa1-467d-a19c-76a79bb943a2.settings.uiMode','\"normal\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2199a45-7aa1-467d-a19c-76a79bb943a2.translationKeyFormat','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2199a45-7aa1-467d-a19c-76a79bb943a2.translationMethod','\"none\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2199a45-7aa1-467d-a19c-76a79bb943a2.type','\"craft\\\\fields\\\\PlainText\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2b9e04a-db16-44c3-95a7-6a037f194622.columnSuffix','\"incqkijn\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2b9e04a-db16-44c3-95a7-6a037f194622.contentColumnType','\"text\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2b9e04a-db16-44c3-95a7-6a037f194622.fieldGroup','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2b9e04a-db16-44c3-95a7-6a037f194622.handle','\"accordionTitle\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2b9e04a-db16-44c3-95a7-6a037f194622.instructions','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2b9e04a-db16-44c3-95a7-6a037f194622.name','\"Title\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2b9e04a-db16-44c3-95a7-6a037f194622.searchable','false'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2b9e04a-db16-44c3-95a7-6a037f194622.settings.byteLimit','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2b9e04a-db16-44c3-95a7-6a037f194622.settings.charLimit','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2b9e04a-db16-44c3-95a7-6a037f194622.settings.code','false'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2b9e04a-db16-44c3-95a7-6a037f194622.settings.columnType','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2b9e04a-db16-44c3-95a7-6a037f194622.settings.initialRows','4'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2b9e04a-db16-44c3-95a7-6a037f194622.settings.multiline','false'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2b9e04a-db16-44c3-95a7-6a037f194622.settings.placeholder','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2b9e04a-db16-44c3-95a7-6a037f194622.settings.uiMode','\"normal\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2b9e04a-db16-44c3-95a7-6a037f194622.translationKeyFormat','null'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2b9e04a-db16-44c3-95a7-6a037f194622.translationMethod','\"none\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.fields.a2b9e04a-db16-44c3-95a7-6a037f194622.type','\"craft\\\\fields\\\\PlainText\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.handle','\"accordionBlock\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.name','\"Accordion block\"'),('matrixBlockTypes.43d21cba-9078-4e32-9e49-fa0d66991417.sortOrder','1'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.field','\"da858be0-dc01-44ea-9fc5-f9c6848cc9af\"'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fieldLayouts.60d88983-e650-4c59-a67e-c24e2b1dd65f.tabs.0.elements.0.fieldUid','\"38bbf5f7-e29c-40bd-b218-155ad667ea9a\"'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fieldLayouts.60d88983-e650-4c59-a67e-c24e2b1dd65f.tabs.0.elements.0.instructions','null'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fieldLayouts.60d88983-e650-4c59-a67e-c24e2b1dd65f.tabs.0.elements.0.label','null'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fieldLayouts.60d88983-e650-4c59-a67e-c24e2b1dd65f.tabs.0.elements.0.required','false'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fieldLayouts.60d88983-e650-4c59-a67e-c24e2b1dd65f.tabs.0.elements.0.tip','null'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fieldLayouts.60d88983-e650-4c59-a67e-c24e2b1dd65f.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fieldLayouts.60d88983-e650-4c59-a67e-c24e2b1dd65f.tabs.0.elements.0.warning','null'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fieldLayouts.60d88983-e650-4c59-a67e-c24e2b1dd65f.tabs.0.elements.0.width','100'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fieldLayouts.60d88983-e650-4c59-a67e-c24e2b1dd65f.tabs.0.name','\"Content\"'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fieldLayouts.60d88983-e650-4c59-a67e-c24e2b1dd65f.tabs.0.sortOrder','1'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fields.38bbf5f7-e29c-40bd-b218-155ad667ea9a.columnSuffix','null'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fields.38bbf5f7-e29c-40bd-b218-155ad667ea9a.contentColumnType','\"string\"'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fields.38bbf5f7-e29c-40bd-b218-155ad667ea9a.fieldGroup','null'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fields.38bbf5f7-e29c-40bd-b218-155ad667ea9a.handle','\"gridItems\"'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fields.38bbf5f7-e29c-40bd-b218-155ad667ea9a.instructions','\"\"'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fields.38bbf5f7-e29c-40bd-b218-155ad667ea9a.name','\"Grid items\"'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fields.38bbf5f7-e29c-40bd-b218-155ad667ea9a.searchable','false'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fields.38bbf5f7-e29c-40bd-b218-155ad667ea9a.settings.columns.__assoc__.0.0','\"f9da4ffb-4690-4f0b-8f08-456b5e29ffc9\"'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fields.38bbf5f7-e29c-40bd-b218-155ad667ea9a.settings.columns.__assoc__.0.1.__assoc__.0.0','\"width\"'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fields.38bbf5f7-e29c-40bd-b218-155ad667ea9a.settings.columns.__assoc__.0.1.__assoc__.0.1','\"\"'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fields.38bbf5f7-e29c-40bd-b218-155ad667ea9a.settings.columns.__assoc__.1.0','\"5307644b-cc96-4639-8586-e174e883f664\"'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fields.38bbf5f7-e29c-40bd-b218-155ad667ea9a.settings.columns.__assoc__.1.1.__assoc__.0.0','\"width\"'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fields.38bbf5f7-e29c-40bd-b218-155ad667ea9a.settings.columns.__assoc__.1.1.__assoc__.0.1','\"\"'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fields.38bbf5f7-e29c-40bd-b218-155ad667ea9a.settings.contentTable','\"{{%stc_16_griditems}}\"'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fields.38bbf5f7-e29c-40bd-b218-155ad667ea9a.settings.fieldLayout','\"table\"'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fields.38bbf5f7-e29c-40bd-b218-155ad667ea9a.settings.maxRows','\"\"'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fields.38bbf5f7-e29c-40bd-b218-155ad667ea9a.settings.minRows','\"\"'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fields.38bbf5f7-e29c-40bd-b218-155ad667ea9a.settings.placeholderKey','null'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fields.38bbf5f7-e29c-40bd-b218-155ad667ea9a.settings.propagationMethod','\"all\"'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fields.38bbf5f7-e29c-40bd-b218-155ad667ea9a.settings.selectionLabel','\"\"'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fields.38bbf5f7-e29c-40bd-b218-155ad667ea9a.settings.staticField','\"\"'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fields.38bbf5f7-e29c-40bd-b218-155ad667ea9a.translationKeyFormat','null'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fields.38bbf5f7-e29c-40bd-b218-155ad667ea9a.translationMethod','\"site\"'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.fields.38bbf5f7-e29c-40bd-b218-155ad667ea9a.type','\"verbb\\\\supertable\\\\fields\\\\SuperTableField\"'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.handle','\"textGrid\"'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.name','\"Text grid\"'),('matrixBlockTypes.63e3d1ea-0cba-42ce-934a-2f0c718081e5.sortOrder','3'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.field','\"da858be0-dc01-44ea-9fc5-f9c6848cc9af\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fieldLayouts.ce277dc9-46da-461f-9b05-e2ee8f78e6c1.tabs.0.elements.0.fieldUid','\"c6376f0f-5d56-4141-9432-c72576928262\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fieldLayouts.ce277dc9-46da-461f-9b05-e2ee8f78e6c1.tabs.0.elements.0.instructions','null'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fieldLayouts.ce277dc9-46da-461f-9b05-e2ee8f78e6c1.tabs.0.elements.0.label','null'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fieldLayouts.ce277dc9-46da-461f-9b05-e2ee8f78e6c1.tabs.0.elements.0.required','false'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fieldLayouts.ce277dc9-46da-461f-9b05-e2ee8f78e6c1.tabs.0.elements.0.tip','null'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fieldLayouts.ce277dc9-46da-461f-9b05-e2ee8f78e6c1.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fieldLayouts.ce277dc9-46da-461f-9b05-e2ee8f78e6c1.tabs.0.elements.0.warning','null'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fieldLayouts.ce277dc9-46da-461f-9b05-e2ee8f78e6c1.tabs.0.elements.0.width','100'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fieldLayouts.ce277dc9-46da-461f-9b05-e2ee8f78e6c1.tabs.0.elements.1.fieldUid','\"3628cf27-3ad7-4e27-9726-9a2cd25bef29\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fieldLayouts.ce277dc9-46da-461f-9b05-e2ee8f78e6c1.tabs.0.elements.1.instructions','null'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fieldLayouts.ce277dc9-46da-461f-9b05-e2ee8f78e6c1.tabs.0.elements.1.label','null'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fieldLayouts.ce277dc9-46da-461f-9b05-e2ee8f78e6c1.tabs.0.elements.1.required','false'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fieldLayouts.ce277dc9-46da-461f-9b05-e2ee8f78e6c1.tabs.0.elements.1.tip','null'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fieldLayouts.ce277dc9-46da-461f-9b05-e2ee8f78e6c1.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fieldLayouts.ce277dc9-46da-461f-9b05-e2ee8f78e6c1.tabs.0.elements.1.warning','null'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fieldLayouts.ce277dc9-46da-461f-9b05-e2ee8f78e6c1.tabs.0.elements.1.width','100'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fieldLayouts.ce277dc9-46da-461f-9b05-e2ee8f78e6c1.tabs.0.elements.2.fieldUid','\"f88d9485-eb10-492f-bce3-4fa0d28804b3\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fieldLayouts.ce277dc9-46da-461f-9b05-e2ee8f78e6c1.tabs.0.elements.2.instructions','null'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fieldLayouts.ce277dc9-46da-461f-9b05-e2ee8f78e6c1.tabs.0.elements.2.label','null'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fieldLayouts.ce277dc9-46da-461f-9b05-e2ee8f78e6c1.tabs.0.elements.2.required','false'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fieldLayouts.ce277dc9-46da-461f-9b05-e2ee8f78e6c1.tabs.0.elements.2.tip','null'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fieldLayouts.ce277dc9-46da-461f-9b05-e2ee8f78e6c1.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fieldLayouts.ce277dc9-46da-461f-9b05-e2ee8f78e6c1.tabs.0.elements.2.warning','null'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fieldLayouts.ce277dc9-46da-461f-9b05-e2ee8f78e6c1.tabs.0.elements.2.width','100'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fieldLayouts.ce277dc9-46da-461f-9b05-e2ee8f78e6c1.tabs.0.name','\"Content\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fieldLayouts.ce277dc9-46da-461f-9b05-e2ee8f78e6c1.tabs.0.sortOrder','1'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.3628cf27-3ad7-4e27-9726-9a2cd25bef29.columnSuffix','null'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.3628cf27-3ad7-4e27-9726-9a2cd25bef29.contentColumnType','\"string\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.3628cf27-3ad7-4e27-9726-9a2cd25bef29.fieldGroup','null'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.3628cf27-3ad7-4e27-9726-9a2cd25bef29.handle','\"headingColour\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.3628cf27-3ad7-4e27-9726-9a2cd25bef29.instructions','\"\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.3628cf27-3ad7-4e27-9726-9a2cd25bef29.name','\"Heading colour\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.3628cf27-3ad7-4e27-9726-9a2cd25bef29.searchable','false'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.3628cf27-3ad7-4e27-9726-9a2cd25bef29.settings.optgroups','true'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.3628cf27-3ad7-4e27-9726-9a2cd25bef29.settings.options.0.__assoc__.0.0','\"label\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.3628cf27-3ad7-4e27-9726-9a2cd25bef29.settings.options.0.__assoc__.0.1','\"Black\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.3628cf27-3ad7-4e27-9726-9a2cd25bef29.settings.options.0.__assoc__.1.0','\"value\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.3628cf27-3ad7-4e27-9726-9a2cd25bef29.settings.options.0.__assoc__.1.1','\"text-black\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.3628cf27-3ad7-4e27-9726-9a2cd25bef29.settings.options.0.__assoc__.2.0','\"default\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.3628cf27-3ad7-4e27-9726-9a2cd25bef29.settings.options.0.__assoc__.2.1','\"1\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.3628cf27-3ad7-4e27-9726-9a2cd25bef29.settings.options.1.__assoc__.0.0','\"label\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.3628cf27-3ad7-4e27-9726-9a2cd25bef29.settings.options.1.__assoc__.0.1','\"Red\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.3628cf27-3ad7-4e27-9726-9a2cd25bef29.settings.options.1.__assoc__.1.0','\"value\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.3628cf27-3ad7-4e27-9726-9a2cd25bef29.settings.options.1.__assoc__.1.1','\"text-red\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.3628cf27-3ad7-4e27-9726-9a2cd25bef29.settings.options.1.__assoc__.2.0','\"default\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.3628cf27-3ad7-4e27-9726-9a2cd25bef29.settings.options.1.__assoc__.2.1','\"\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.3628cf27-3ad7-4e27-9726-9a2cd25bef29.settings.options.2.__assoc__.0.0','\"label\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.3628cf27-3ad7-4e27-9726-9a2cd25bef29.settings.options.2.__assoc__.0.1','\"White\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.3628cf27-3ad7-4e27-9726-9a2cd25bef29.settings.options.2.__assoc__.1.0','\"value\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.3628cf27-3ad7-4e27-9726-9a2cd25bef29.settings.options.2.__assoc__.1.1','\"text-white\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.3628cf27-3ad7-4e27-9726-9a2cd25bef29.settings.options.2.__assoc__.2.0','\"default\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.3628cf27-3ad7-4e27-9726-9a2cd25bef29.settings.options.2.__assoc__.2.1','\"\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.3628cf27-3ad7-4e27-9726-9a2cd25bef29.translationKeyFormat','null'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.3628cf27-3ad7-4e27-9726-9a2cd25bef29.translationMethod','\"none\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.3628cf27-3ad7-4e27-9726-9a2cd25bef29.type','\"craft\\\\fields\\\\Dropdown\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.c6376f0f-5d56-4141-9432-c72576928262.columnSuffix','null'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.c6376f0f-5d56-4141-9432-c72576928262.contentColumnType','\"text\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.c6376f0f-5d56-4141-9432-c72576928262.fieldGroup','null'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.c6376f0f-5d56-4141-9432-c72576928262.handle','\"headingText\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.c6376f0f-5d56-4141-9432-c72576928262.instructions','\"\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.c6376f0f-5d56-4141-9432-c72576928262.name','\"Heading text\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.c6376f0f-5d56-4141-9432-c72576928262.searchable','false'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.c6376f0f-5d56-4141-9432-c72576928262.settings.byteLimit','null'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.c6376f0f-5d56-4141-9432-c72576928262.settings.charLimit','null'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.c6376f0f-5d56-4141-9432-c72576928262.settings.code','\"\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.c6376f0f-5d56-4141-9432-c72576928262.settings.columnType','null'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.c6376f0f-5d56-4141-9432-c72576928262.settings.initialRows','\"1\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.c6376f0f-5d56-4141-9432-c72576928262.settings.multiline','\"1\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.c6376f0f-5d56-4141-9432-c72576928262.settings.placeholder','null'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.c6376f0f-5d56-4141-9432-c72576928262.settings.uiMode','\"normal\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.c6376f0f-5d56-4141-9432-c72576928262.translationKeyFormat','null'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.c6376f0f-5d56-4141-9432-c72576928262.translationMethod','\"none\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.c6376f0f-5d56-4141-9432-c72576928262.type','\"craft\\\\fields\\\\PlainText\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.f88d9485-eb10-492f-bce3-4fa0d28804b3.columnSuffix','null'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.f88d9485-eb10-492f-bce3-4fa0d28804b3.contentColumnType','\"string\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.f88d9485-eb10-492f-bce3-4fa0d28804b3.fieldGroup','null'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.f88d9485-eb10-492f-bce3-4fa0d28804b3.handle','\"headingSize\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.f88d9485-eb10-492f-bce3-4fa0d28804b3.instructions','\"\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.f88d9485-eb10-492f-bce3-4fa0d28804b3.name','\"Heading size\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.f88d9485-eb10-492f-bce3-4fa0d28804b3.searchable','false'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.f88d9485-eb10-492f-bce3-4fa0d28804b3.settings.optgroups','true'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.f88d9485-eb10-492f-bce3-4fa0d28804b3.settings.options.0.__assoc__.0.0','\"label\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.f88d9485-eb10-492f-bce3-4fa0d28804b3.settings.options.0.__assoc__.0.1','\"Headline\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.f88d9485-eb10-492f-bce3-4fa0d28804b3.settings.options.0.__assoc__.1.0','\"value\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.f88d9485-eb10-492f-bce3-4fa0d28804b3.settings.options.0.__assoc__.1.1','\"text-5xl\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.f88d9485-eb10-492f-bce3-4fa0d28804b3.settings.options.0.__assoc__.2.0','\"default\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.f88d9485-eb10-492f-bce3-4fa0d28804b3.settings.options.0.__assoc__.2.1','\"1\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.f88d9485-eb10-492f-bce3-4fa0d28804b3.settings.options.1.__assoc__.0.0','\"label\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.f88d9485-eb10-492f-bce3-4fa0d28804b3.settings.options.1.__assoc__.0.1','\"Subheading\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.f88d9485-eb10-492f-bce3-4fa0d28804b3.settings.options.1.__assoc__.1.0','\"value\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.f88d9485-eb10-492f-bce3-4fa0d28804b3.settings.options.1.__assoc__.1.1','\"text-2xl\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.f88d9485-eb10-492f-bce3-4fa0d28804b3.settings.options.1.__assoc__.2.0','\"default\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.f88d9485-eb10-492f-bce3-4fa0d28804b3.settings.options.1.__assoc__.2.1','\"\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.f88d9485-eb10-492f-bce3-4fa0d28804b3.translationKeyFormat','null'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.f88d9485-eb10-492f-bce3-4fa0d28804b3.translationMethod','\"none\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.fields.f88d9485-eb10-492f-bce3-4fa0d28804b3.type','\"craft\\\\fields\\\\Dropdown\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.handle','\"heading\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.name','\"Heading\"'),('matrixBlockTypes.6b5a81ec-42b1-4118-9fa5-8b6360723b30.sortOrder','1'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.field','\"ffe371e5-6f1c-4f7e-8c29-3b53a7b68c9c\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fieldLayouts.606d748d-1242-42ca-846e-81c011c679fb.tabs.0.elements.0.fieldUid','\"6c8a7226-ca63-4b58-afac-82141c809448\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fieldLayouts.606d748d-1242-42ca-846e-81c011c679fb.tabs.0.elements.0.instructions','null'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fieldLayouts.606d748d-1242-42ca-846e-81c011c679fb.tabs.0.elements.0.label','null'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fieldLayouts.606d748d-1242-42ca-846e-81c011c679fb.tabs.0.elements.0.required','false'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fieldLayouts.606d748d-1242-42ca-846e-81c011c679fb.tabs.0.elements.0.tip','null'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fieldLayouts.606d748d-1242-42ca-846e-81c011c679fb.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fieldLayouts.606d748d-1242-42ca-846e-81c011c679fb.tabs.0.elements.0.warning','null'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fieldLayouts.606d748d-1242-42ca-846e-81c011c679fb.tabs.0.elements.0.width','100'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fieldLayouts.606d748d-1242-42ca-846e-81c011c679fb.tabs.0.elements.1.fieldUid','\"370b7c67-675e-4aa3-b3a6-5d1700429c35\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fieldLayouts.606d748d-1242-42ca-846e-81c011c679fb.tabs.0.elements.1.instructions','null'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fieldLayouts.606d748d-1242-42ca-846e-81c011c679fb.tabs.0.elements.1.label','null'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fieldLayouts.606d748d-1242-42ca-846e-81c011c679fb.tabs.0.elements.1.required','false'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fieldLayouts.606d748d-1242-42ca-846e-81c011c679fb.tabs.0.elements.1.tip','null'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fieldLayouts.606d748d-1242-42ca-846e-81c011c679fb.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fieldLayouts.606d748d-1242-42ca-846e-81c011c679fb.tabs.0.elements.1.warning','null'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fieldLayouts.606d748d-1242-42ca-846e-81c011c679fb.tabs.0.elements.1.width','100'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fieldLayouts.606d748d-1242-42ca-846e-81c011c679fb.tabs.0.elements.2.fieldUid','\"8df2b5cb-f0f5-47a2-b2b1-c77cbf1b2979\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fieldLayouts.606d748d-1242-42ca-846e-81c011c679fb.tabs.0.elements.2.instructions','null'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fieldLayouts.606d748d-1242-42ca-846e-81c011c679fb.tabs.0.elements.2.label','null'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fieldLayouts.606d748d-1242-42ca-846e-81c011c679fb.tabs.0.elements.2.required','false'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fieldLayouts.606d748d-1242-42ca-846e-81c011c679fb.tabs.0.elements.2.tip','null'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fieldLayouts.606d748d-1242-42ca-846e-81c011c679fb.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fieldLayouts.606d748d-1242-42ca-846e-81c011c679fb.tabs.0.elements.2.warning','null'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fieldLayouts.606d748d-1242-42ca-846e-81c011c679fb.tabs.0.elements.2.width','100'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fieldLayouts.606d748d-1242-42ca-846e-81c011c679fb.tabs.0.name','\"Content\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fieldLayouts.606d748d-1242-42ca-846e-81c011c679fb.tabs.0.sortOrder','1'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.370b7c67-675e-4aa3-b3a6-5d1700429c35.columnSuffix','null'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.370b7c67-675e-4aa3-b3a6-5d1700429c35.contentColumnType','\"text\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.370b7c67-675e-4aa3-b3a6-5d1700429c35.fieldGroup','null'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.370b7c67-675e-4aa3-b3a6-5d1700429c35.handle','\"text\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.370b7c67-675e-4aa3-b3a6-5d1700429c35.instructions','\"\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.370b7c67-675e-4aa3-b3a6-5d1700429c35.name','\"Text\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.370b7c67-675e-4aa3-b3a6-5d1700429c35.searchable','false'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.370b7c67-675e-4aa3-b3a6-5d1700429c35.settings.availableTransforms','\"*\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.370b7c67-675e-4aa3-b3a6-5d1700429c35.settings.availableVolumes','\"*\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.370b7c67-675e-4aa3-b3a6-5d1700429c35.settings.cleanupHtml','true'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.370b7c67-675e-4aa3-b3a6-5d1700429c35.settings.columnType','\"text\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.370b7c67-675e-4aa3-b3a6-5d1700429c35.settings.configSelectionMode','\"choose\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.370b7c67-675e-4aa3-b3a6-5d1700429c35.settings.defaultTransform','\"\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.370b7c67-675e-4aa3-b3a6-5d1700429c35.settings.manualConfig','\"\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.370b7c67-675e-4aa3-b3a6-5d1700429c35.settings.purifierConfig','\"\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.370b7c67-675e-4aa3-b3a6-5d1700429c35.settings.purifyHtml','\"1\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.370b7c67-675e-4aa3-b3a6-5d1700429c35.settings.redactorConfig','\"\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.370b7c67-675e-4aa3-b3a6-5d1700429c35.settings.removeEmptyTags','\"1\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.370b7c67-675e-4aa3-b3a6-5d1700429c35.settings.removeInlineStyles','\"1\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.370b7c67-675e-4aa3-b3a6-5d1700429c35.settings.removeNbsp','\"1\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.370b7c67-675e-4aa3-b3a6-5d1700429c35.settings.showHtmlButtonForNonAdmins','\"\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.370b7c67-675e-4aa3-b3a6-5d1700429c35.settings.showUnpermittedFiles','false'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.370b7c67-675e-4aa3-b3a6-5d1700429c35.settings.showUnpermittedVolumes','false'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.370b7c67-675e-4aa3-b3a6-5d1700429c35.settings.uiMode','\"enlarged\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.370b7c67-675e-4aa3-b3a6-5d1700429c35.translationKeyFormat','null'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.370b7c67-675e-4aa3-b3a6-5d1700429c35.translationMethod','\"none\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.370b7c67-675e-4aa3-b3a6-5d1700429c35.type','\"craft\\\\redactor\\\\Field\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.6c8a7226-ca63-4b58-afac-82141c809448.columnSuffix','null'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.6c8a7226-ca63-4b58-afac-82141c809448.contentColumnType','\"text\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.6c8a7226-ca63-4b58-afac-82141c809448.fieldGroup','null'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.6c8a7226-ca63-4b58-afac-82141c809448.handle','\"heading\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.6c8a7226-ca63-4b58-afac-82141c809448.instructions','\"\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.6c8a7226-ca63-4b58-afac-82141c809448.name','\"Heading\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.6c8a7226-ca63-4b58-afac-82141c809448.searchable','false'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.6c8a7226-ca63-4b58-afac-82141c809448.settings.byteLimit','null'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.6c8a7226-ca63-4b58-afac-82141c809448.settings.charLimit','null'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.6c8a7226-ca63-4b58-afac-82141c809448.settings.code','\"\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.6c8a7226-ca63-4b58-afac-82141c809448.settings.columnType','null'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.6c8a7226-ca63-4b58-afac-82141c809448.settings.initialRows','\"4\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.6c8a7226-ca63-4b58-afac-82141c809448.settings.multiline','\"\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.6c8a7226-ca63-4b58-afac-82141c809448.settings.placeholder','null'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.6c8a7226-ca63-4b58-afac-82141c809448.settings.uiMode','\"normal\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.6c8a7226-ca63-4b58-afac-82141c809448.translationKeyFormat','null'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.6c8a7226-ca63-4b58-afac-82141c809448.translationMethod','\"none\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.6c8a7226-ca63-4b58-afac-82141c809448.type','\"craft\\\\fields\\\\PlainText\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.8df2b5cb-f0f5-47a2-b2b1-c77cbf1b2979.columnSuffix','null'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.8df2b5cb-f0f5-47a2-b2b1-c77cbf1b2979.contentColumnType','\"string\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.8df2b5cb-f0f5-47a2-b2b1-c77cbf1b2979.fieldGroup','null'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.8df2b5cb-f0f5-47a2-b2b1-c77cbf1b2979.handle','\"height\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.8df2b5cb-f0f5-47a2-b2b1-c77cbf1b2979.instructions','\"\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.8df2b5cb-f0f5-47a2-b2b1-c77cbf1b2979.name','\"Height\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.8df2b5cb-f0f5-47a2-b2b1-c77cbf1b2979.searchable','false'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.8df2b5cb-f0f5-47a2-b2b1-c77cbf1b2979.settings.optgroups','true'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.8df2b5cb-f0f5-47a2-b2b1-c77cbf1b2979.settings.options.0.__assoc__.0.0','\"label\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.8df2b5cb-f0f5-47a2-b2b1-c77cbf1b2979.settings.options.0.__assoc__.0.1','\"Screen\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.8df2b5cb-f0f5-47a2-b2b1-c77cbf1b2979.settings.options.0.__assoc__.1.0','\"value\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.8df2b5cb-f0f5-47a2-b2b1-c77cbf1b2979.settings.options.0.__assoc__.1.1','\"h-screen\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.8df2b5cb-f0f5-47a2-b2b1-c77cbf1b2979.settings.options.0.__assoc__.2.0','\"default\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.8df2b5cb-f0f5-47a2-b2b1-c77cbf1b2979.settings.options.0.__assoc__.2.1','\"1\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.8df2b5cb-f0f5-47a2-b2b1-c77cbf1b2979.settings.options.1.__assoc__.0.0','\"label\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.8df2b5cb-f0f5-47a2-b2b1-c77cbf1b2979.settings.options.1.__assoc__.0.1','\"Auto\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.8df2b5cb-f0f5-47a2-b2b1-c77cbf1b2979.settings.options.1.__assoc__.1.0','\"value\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.8df2b5cb-f0f5-47a2-b2b1-c77cbf1b2979.settings.options.1.__assoc__.1.1','\"h-auto\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.8df2b5cb-f0f5-47a2-b2b1-c77cbf1b2979.settings.options.1.__assoc__.2.0','\"default\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.8df2b5cb-f0f5-47a2-b2b1-c77cbf1b2979.settings.options.1.__assoc__.2.1','\"\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.8df2b5cb-f0f5-47a2-b2b1-c77cbf1b2979.translationKeyFormat','null'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.8df2b5cb-f0f5-47a2-b2b1-c77cbf1b2979.translationMethod','\"none\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.fields.8df2b5cb-f0f5-47a2-b2b1-c77cbf1b2979.type','\"craft\\\\fields\\\\Dropdown\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.handle','\"headingAndText\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.name','\"Heading and text\"'),('matrixBlockTypes.6bf3dbc1-ec4b-4a10-896f-37727eed41d0.sortOrder','2'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.field','\"ffe371e5-6f1c-4f7e-8c29-3b53a7b68c9c\"'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fieldLayouts.ff81a284-a773-478c-aa87-248acb3bbcaa.tabs.0.elements.0.fieldUid','\"4c837697-9892-435a-bb35-4cf13274c77e\"'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fieldLayouts.ff81a284-a773-478c-aa87-248acb3bbcaa.tabs.0.elements.0.instructions','null'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fieldLayouts.ff81a284-a773-478c-aa87-248acb3bbcaa.tabs.0.elements.0.label','null'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fieldLayouts.ff81a284-a773-478c-aa87-248acb3bbcaa.tabs.0.elements.0.required','false'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fieldLayouts.ff81a284-a773-478c-aa87-248acb3bbcaa.tabs.0.elements.0.tip','null'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fieldLayouts.ff81a284-a773-478c-aa87-248acb3bbcaa.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fieldLayouts.ff81a284-a773-478c-aa87-248acb3bbcaa.tabs.0.elements.0.warning','null'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fieldLayouts.ff81a284-a773-478c-aa87-248acb3bbcaa.tabs.0.elements.0.width','100'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fieldLayouts.ff81a284-a773-478c-aa87-248acb3bbcaa.tabs.0.name','\"Content\"'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fieldLayouts.ff81a284-a773-478c-aa87-248acb3bbcaa.tabs.0.sortOrder','1'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fields.4c837697-9892-435a-bb35-4cf13274c77e.columnSuffix','null'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fields.4c837697-9892-435a-bb35-4cf13274c77e.contentColumnType','\"string\"'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fields.4c837697-9892-435a-bb35-4cf13274c77e.fieldGroup','null'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fields.4c837697-9892-435a-bb35-4cf13274c77e.handle','\"image\"'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fields.4c837697-9892-435a-bb35-4cf13274c77e.instructions','\"\"'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fields.4c837697-9892-435a-bb35-4cf13274c77e.name','\"Image\"'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fields.4c837697-9892-435a-bb35-4cf13274c77e.searchable','false'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fields.4c837697-9892-435a-bb35-4cf13274c77e.settings.allowedKinds','null'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fields.4c837697-9892-435a-bb35-4cf13274c77e.settings.allowSelfRelations','false'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fields.4c837697-9892-435a-bb35-4cf13274c77e.settings.allowUploads','true'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fields.4c837697-9892-435a-bb35-4cf13274c77e.settings.defaultUploadLocationSource','\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fields.4c837697-9892-435a-bb35-4cf13274c77e.settings.defaultUploadLocationSubpath','\"\"'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fields.4c837697-9892-435a-bb35-4cf13274c77e.settings.limit','\"1\"'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fields.4c837697-9892-435a-bb35-4cf13274c77e.settings.localizeRelations','false'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fields.4c837697-9892-435a-bb35-4cf13274c77e.settings.previewMode','\"full\"'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fields.4c837697-9892-435a-bb35-4cf13274c77e.settings.restrictFiles','\"\"'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fields.4c837697-9892-435a-bb35-4cf13274c77e.settings.selectionLabel','\"Add an image\"'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fields.4c837697-9892-435a-bb35-4cf13274c77e.settings.showSiteMenu','true'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fields.4c837697-9892-435a-bb35-4cf13274c77e.settings.showUnpermittedFiles','false'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fields.4c837697-9892-435a-bb35-4cf13274c77e.settings.showUnpermittedVolumes','false'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fields.4c837697-9892-435a-bb35-4cf13274c77e.settings.singleUploadLocationSource','\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fields.4c837697-9892-435a-bb35-4cf13274c77e.settings.singleUploadLocationSubpath','\"\"'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fields.4c837697-9892-435a-bb35-4cf13274c77e.settings.source','null'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fields.4c837697-9892-435a-bb35-4cf13274c77e.settings.sources','\"*\"'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fields.4c837697-9892-435a-bb35-4cf13274c77e.settings.targetSiteId','null'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fields.4c837697-9892-435a-bb35-4cf13274c77e.settings.useSingleFolder','false'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fields.4c837697-9892-435a-bb35-4cf13274c77e.settings.validateRelatedElements','false'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fields.4c837697-9892-435a-bb35-4cf13274c77e.settings.viewMode','\"list\"'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fields.4c837697-9892-435a-bb35-4cf13274c77e.translationKeyFormat','null'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fields.4c837697-9892-435a-bb35-4cf13274c77e.translationMethod','\"site\"'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.fields.4c837697-9892-435a-bb35-4cf13274c77e.type','\"craft\\\\fields\\\\Assets\"'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.handle','\"fullWidthImage\"'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.name','\"Full width image\"'),('matrixBlockTypes.6c95d4e7-93ce-402c-a1b9-684e2bf42065.sortOrder','3'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.field','\"ffe371e5-6f1c-4f7e-8c29-3b53a7b68c9c\"'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fieldLayouts.f8508a1d-ee00-469d-8130-ea5f5b7dbb83.tabs.0.elements.0.fieldUid','\"9ee799af-6ab1-42fb-94b3-a70acd370f9b\"'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fieldLayouts.f8508a1d-ee00-469d-8130-ea5f5b7dbb83.tabs.0.elements.0.instructions','null'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fieldLayouts.f8508a1d-ee00-469d-8130-ea5f5b7dbb83.tabs.0.elements.0.label','null'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fieldLayouts.f8508a1d-ee00-469d-8130-ea5f5b7dbb83.tabs.0.elements.0.required','false'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fieldLayouts.f8508a1d-ee00-469d-8130-ea5f5b7dbb83.tabs.0.elements.0.tip','null'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fieldLayouts.f8508a1d-ee00-469d-8130-ea5f5b7dbb83.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fieldLayouts.f8508a1d-ee00-469d-8130-ea5f5b7dbb83.tabs.0.elements.0.warning','null'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fieldLayouts.f8508a1d-ee00-469d-8130-ea5f5b7dbb83.tabs.0.elements.0.width','100'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fieldLayouts.f8508a1d-ee00-469d-8130-ea5f5b7dbb83.tabs.0.name','\"Content\"'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fieldLayouts.f8508a1d-ee00-469d-8130-ea5f5b7dbb83.tabs.0.sortOrder','1'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fields.9ee799af-6ab1-42fb-94b3-a70acd370f9b.columnSuffix','null'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fields.9ee799af-6ab1-42fb-94b3-a70acd370f9b.contentColumnType','\"string\"'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fields.9ee799af-6ab1-42fb-94b3-a70acd370f9b.fieldGroup','null'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fields.9ee799af-6ab1-42fb-94b3-a70acd370f9b.handle','\"videos\"'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fields.9ee799af-6ab1-42fb-94b3-a70acd370f9b.instructions','\"\"'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fields.9ee799af-6ab1-42fb-94b3-a70acd370f9b.name','\"Videos\"'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fields.9ee799af-6ab1-42fb-94b3-a70acd370f9b.searchable','false'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fields.9ee799af-6ab1-42fb-94b3-a70acd370f9b.settings.columns.__assoc__.0.0','\"9d14a3af-2493-422b-8fc8-60b496e17204\"'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fields.9ee799af-6ab1-42fb-94b3-a70acd370f9b.settings.columns.__assoc__.0.1.__assoc__.0.0','\"width\"'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fields.9ee799af-6ab1-42fb-94b3-a70acd370f9b.settings.columns.__assoc__.0.1.__assoc__.0.1','\"\"'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fields.9ee799af-6ab1-42fb-94b3-a70acd370f9b.settings.columns.__assoc__.1.0','\"9d09a28d-571e-4cd9-a199-2d3342cf815a\"'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fields.9ee799af-6ab1-42fb-94b3-a70acd370f9b.settings.columns.__assoc__.1.1.__assoc__.0.0','\"width\"'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fields.9ee799af-6ab1-42fb-94b3-a70acd370f9b.settings.columns.__assoc__.1.1.__assoc__.0.1','\"\"'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fields.9ee799af-6ab1-42fb-94b3-a70acd370f9b.settings.contentTable','\"{{%stc_7_videos_1}}\"'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fields.9ee799af-6ab1-42fb-94b3-a70acd370f9b.settings.fieldLayout','\"row\"'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fields.9ee799af-6ab1-42fb-94b3-a70acd370f9b.settings.maxRows','\"\"'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fields.9ee799af-6ab1-42fb-94b3-a70acd370f9b.settings.minRows','\"\"'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fields.9ee799af-6ab1-42fb-94b3-a70acd370f9b.settings.placeholderKey','null'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fields.9ee799af-6ab1-42fb-94b3-a70acd370f9b.settings.propagationMethod','\"all\"'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fields.9ee799af-6ab1-42fb-94b3-a70acd370f9b.settings.selectionLabel','\"\"'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fields.9ee799af-6ab1-42fb-94b3-a70acd370f9b.settings.staticField','\"\"'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fields.9ee799af-6ab1-42fb-94b3-a70acd370f9b.translationKeyFormat','null'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fields.9ee799af-6ab1-42fb-94b3-a70acd370f9b.translationMethod','\"site\"'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.fields.9ee799af-6ab1-42fb-94b3-a70acd370f9b.type','\"verbb\\\\supertable\\\\fields\\\\SuperTableField\"'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.handle','\"videoGrid\"'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.name','\"Video grid\"'),('matrixBlockTypes.7b0e68fa-80c5-4fc1-9936-d797141eb9df.sortOrder','5'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.field','\"39b06f94-8ee0-4222-8a17-b527852aec1b\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fieldLayouts.d414fc10-d6a1-452f-af4c-687a53c4b0ef.tabs.0.elements.0.fieldUid','\"e04edda4-4166-46d2-891a-1de94a6efe73\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fieldLayouts.d414fc10-d6a1-452f-af4c-687a53c4b0ef.tabs.0.elements.0.instructions','null'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fieldLayouts.d414fc10-d6a1-452f-af4c-687a53c4b0ef.tabs.0.elements.0.label','null'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fieldLayouts.d414fc10-d6a1-452f-af4c-687a53c4b0ef.tabs.0.elements.0.required','false'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fieldLayouts.d414fc10-d6a1-452f-af4c-687a53c4b0ef.tabs.0.elements.0.tip','null'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fieldLayouts.d414fc10-d6a1-452f-af4c-687a53c4b0ef.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fieldLayouts.d414fc10-d6a1-452f-af4c-687a53c4b0ef.tabs.0.elements.0.warning','null'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fieldLayouts.d414fc10-d6a1-452f-af4c-687a53c4b0ef.tabs.0.elements.0.width','100'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fieldLayouts.d414fc10-d6a1-452f-af4c-687a53c4b0ef.tabs.0.elements.1.fieldUid','\"c617866b-d457-4084-ad7d-07b1ee8fca3e\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fieldLayouts.d414fc10-d6a1-452f-af4c-687a53c4b0ef.tabs.0.elements.1.instructions','null'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fieldLayouts.d414fc10-d6a1-452f-af4c-687a53c4b0ef.tabs.0.elements.1.label','null'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fieldLayouts.d414fc10-d6a1-452f-af4c-687a53c4b0ef.tabs.0.elements.1.required','false'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fieldLayouts.d414fc10-d6a1-452f-af4c-687a53c4b0ef.tabs.0.elements.1.tip','null'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fieldLayouts.d414fc10-d6a1-452f-af4c-687a53c4b0ef.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fieldLayouts.d414fc10-d6a1-452f-af4c-687a53c4b0ef.tabs.0.elements.1.warning','null'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fieldLayouts.d414fc10-d6a1-452f-af4c-687a53c4b0ef.tabs.0.elements.1.width','100'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fieldLayouts.d414fc10-d6a1-452f-af4c-687a53c4b0ef.tabs.0.name','\"Content\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fieldLayouts.d414fc10-d6a1-452f-af4c-687a53c4b0ef.tabs.0.sortOrder','1'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.c617866b-d457-4084-ad7d-07b1ee8fca3e.columnSuffix','\"ohcnrvnx\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.c617866b-d457-4084-ad7d-07b1ee8fca3e.contentColumnType','\"text\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.c617866b-d457-4084-ad7d-07b1ee8fca3e.fieldGroup','null'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.c617866b-d457-4084-ad7d-07b1ee8fca3e.handle','\"videoCode\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.c617866b-d457-4084-ad7d-07b1ee8fca3e.instructions','\"\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.c617866b-d457-4084-ad7d-07b1ee8fca3e.name','\"Video code\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.c617866b-d457-4084-ad7d-07b1ee8fca3e.searchable','false'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.c617866b-d457-4084-ad7d-07b1ee8fca3e.settings.byteLimit','null'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.c617866b-d457-4084-ad7d-07b1ee8fca3e.settings.charLimit','null'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.c617866b-d457-4084-ad7d-07b1ee8fca3e.settings.code','\"\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.c617866b-d457-4084-ad7d-07b1ee8fca3e.settings.columnType','null'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.c617866b-d457-4084-ad7d-07b1ee8fca3e.settings.initialRows','\"4\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.c617866b-d457-4084-ad7d-07b1ee8fca3e.settings.multiline','\"\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.c617866b-d457-4084-ad7d-07b1ee8fca3e.settings.placeholder','null'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.c617866b-d457-4084-ad7d-07b1ee8fca3e.settings.uiMode','\"normal\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.c617866b-d457-4084-ad7d-07b1ee8fca3e.translationKeyFormat','null'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.c617866b-d457-4084-ad7d-07b1ee8fca3e.translationMethod','\"none\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.c617866b-d457-4084-ad7d-07b1ee8fca3e.type','\"craft\\\\fields\\\\PlainText\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.e04edda4-4166-46d2-891a-1de94a6efe73.columnSuffix','null'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.e04edda4-4166-46d2-891a-1de94a6efe73.contentColumnType','\"string\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.e04edda4-4166-46d2-891a-1de94a6efe73.fieldGroup','null'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.e04edda4-4166-46d2-891a-1de94a6efe73.handle','\"videoPlaceholderImage\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.e04edda4-4166-46d2-891a-1de94a6efe73.instructions','\"\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.e04edda4-4166-46d2-891a-1de94a6efe73.name','\"Video placeholder image\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.e04edda4-4166-46d2-891a-1de94a6efe73.searchable','false'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.e04edda4-4166-46d2-891a-1de94a6efe73.settings.allowedKinds.0','\"image\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.e04edda4-4166-46d2-891a-1de94a6efe73.settings.allowSelfRelations','false'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.e04edda4-4166-46d2-891a-1de94a6efe73.settings.allowUploads','true'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.e04edda4-4166-46d2-891a-1de94a6efe73.settings.defaultUploadLocationSource','\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.e04edda4-4166-46d2-891a-1de94a6efe73.settings.defaultUploadLocationSubpath','\"\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.e04edda4-4166-46d2-891a-1de94a6efe73.settings.limit','\"1\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.e04edda4-4166-46d2-891a-1de94a6efe73.settings.localizeRelations','false'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.e04edda4-4166-46d2-891a-1de94a6efe73.settings.previewMode','\"full\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.e04edda4-4166-46d2-891a-1de94a6efe73.settings.restrictFiles','\"1\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.e04edda4-4166-46d2-891a-1de94a6efe73.settings.selectionLabel','\"\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.e04edda4-4166-46d2-891a-1de94a6efe73.settings.showSiteMenu','false'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.e04edda4-4166-46d2-891a-1de94a6efe73.settings.showUnpermittedFiles','false'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.e04edda4-4166-46d2-891a-1de94a6efe73.settings.showUnpermittedVolumes','false'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.e04edda4-4166-46d2-891a-1de94a6efe73.settings.singleUploadLocationSource','\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.e04edda4-4166-46d2-891a-1de94a6efe73.settings.singleUploadLocationSubpath','\"\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.e04edda4-4166-46d2-891a-1de94a6efe73.settings.source','null'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.e04edda4-4166-46d2-891a-1de94a6efe73.settings.sources','\"*\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.e04edda4-4166-46d2-891a-1de94a6efe73.settings.targetSiteId','null'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.e04edda4-4166-46d2-891a-1de94a6efe73.settings.useSingleFolder','false'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.e04edda4-4166-46d2-891a-1de94a6efe73.settings.validateRelatedElements','false'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.e04edda4-4166-46d2-891a-1de94a6efe73.settings.viewMode','\"list\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.e04edda4-4166-46d2-891a-1de94a6efe73.translationKeyFormat','null'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.e04edda4-4166-46d2-891a-1de94a6efe73.translationMethod','\"site\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.fields.e04edda4-4166-46d2-891a-1de94a6efe73.type','\"craft\\\\fields\\\\Assets\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.handle','\"videos\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.name','\"Videos\"'),('matrixBlockTypes.85ab7ac3-f71c-43d5-9d93-0c661816749f.sortOrder','1'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.field','\"d3a8c8b6-f737-460c-81dc-9818db4a2627\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fieldLayouts.dcae440e-4f30-46b8-aa61-2fd248287e32.tabs.0.elements.0.fieldUid','\"27dedcaa-afc3-459d-83c3-18e8f90465d8\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fieldLayouts.dcae440e-4f30-46b8-aa61-2fd248287e32.tabs.0.elements.0.instructions','null'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fieldLayouts.dcae440e-4f30-46b8-aa61-2fd248287e32.tabs.0.elements.0.label','null'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fieldLayouts.dcae440e-4f30-46b8-aa61-2fd248287e32.tabs.0.elements.0.required','false'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fieldLayouts.dcae440e-4f30-46b8-aa61-2fd248287e32.tabs.0.elements.0.tip','null'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fieldLayouts.dcae440e-4f30-46b8-aa61-2fd248287e32.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fieldLayouts.dcae440e-4f30-46b8-aa61-2fd248287e32.tabs.0.elements.0.warning','null'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fieldLayouts.dcae440e-4f30-46b8-aa61-2fd248287e32.tabs.0.elements.0.width','100'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fieldLayouts.dcae440e-4f30-46b8-aa61-2fd248287e32.tabs.0.elements.1.fieldUid','\"3989c2aa-8903-4a90-be5a-7ce7a8bd8113\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fieldLayouts.dcae440e-4f30-46b8-aa61-2fd248287e32.tabs.0.elements.1.instructions','null'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fieldLayouts.dcae440e-4f30-46b8-aa61-2fd248287e32.tabs.0.elements.1.label','null'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fieldLayouts.dcae440e-4f30-46b8-aa61-2fd248287e32.tabs.0.elements.1.required','false'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fieldLayouts.dcae440e-4f30-46b8-aa61-2fd248287e32.tabs.0.elements.1.tip','null'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fieldLayouts.dcae440e-4f30-46b8-aa61-2fd248287e32.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fieldLayouts.dcae440e-4f30-46b8-aa61-2fd248287e32.tabs.0.elements.1.warning','null'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fieldLayouts.dcae440e-4f30-46b8-aa61-2fd248287e32.tabs.0.elements.1.width','100'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fieldLayouts.dcae440e-4f30-46b8-aa61-2fd248287e32.tabs.0.elements.2.fieldUid','\"8fbcbc2d-119a-412d-97e8-fec9e88d9418\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fieldLayouts.dcae440e-4f30-46b8-aa61-2fd248287e32.tabs.0.elements.2.instructions','null'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fieldLayouts.dcae440e-4f30-46b8-aa61-2fd248287e32.tabs.0.elements.2.label','null'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fieldLayouts.dcae440e-4f30-46b8-aa61-2fd248287e32.tabs.0.elements.2.required','false'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fieldLayouts.dcae440e-4f30-46b8-aa61-2fd248287e32.tabs.0.elements.2.tip','null'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fieldLayouts.dcae440e-4f30-46b8-aa61-2fd248287e32.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fieldLayouts.dcae440e-4f30-46b8-aa61-2fd248287e32.tabs.0.elements.2.warning','null'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fieldLayouts.dcae440e-4f30-46b8-aa61-2fd248287e32.tabs.0.elements.2.width','100'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fieldLayouts.dcae440e-4f30-46b8-aa61-2fd248287e32.tabs.0.name','\"Content\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fieldLayouts.dcae440e-4f30-46b8-aa61-2fd248287e32.tabs.0.sortOrder','1'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.27dedcaa-afc3-459d-83c3-18e8f90465d8.columnSuffix','null'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.27dedcaa-afc3-459d-83c3-18e8f90465d8.contentColumnType','\"text\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.27dedcaa-afc3-459d-83c3-18e8f90465d8.fieldGroup','null'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.27dedcaa-afc3-459d-83c3-18e8f90465d8.handle','\"sectionHeading\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.27dedcaa-afc3-459d-83c3-18e8f90465d8.instructions','\"\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.27dedcaa-afc3-459d-83c3-18e8f90465d8.name','\"Section heading\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.27dedcaa-afc3-459d-83c3-18e8f90465d8.searchable','false'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.27dedcaa-afc3-459d-83c3-18e8f90465d8.settings.byteLimit','null'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.27dedcaa-afc3-459d-83c3-18e8f90465d8.settings.charLimit','null'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.27dedcaa-afc3-459d-83c3-18e8f90465d8.settings.code','\"\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.27dedcaa-afc3-459d-83c3-18e8f90465d8.settings.columnType','null'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.27dedcaa-afc3-459d-83c3-18e8f90465d8.settings.initialRows','\"4\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.27dedcaa-afc3-459d-83c3-18e8f90465d8.settings.multiline','\"\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.27dedcaa-afc3-459d-83c3-18e8f90465d8.settings.placeholder','null'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.27dedcaa-afc3-459d-83c3-18e8f90465d8.settings.uiMode','\"normal\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.27dedcaa-afc3-459d-83c3-18e8f90465d8.translationKeyFormat','null'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.27dedcaa-afc3-459d-83c3-18e8f90465d8.translationMethod','\"none\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.27dedcaa-afc3-459d-83c3-18e8f90465d8.type','\"craft\\\\fields\\\\PlainText\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.3989c2aa-8903-4a90-be5a-7ce7a8bd8113.columnSuffix','null'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.3989c2aa-8903-4a90-be5a-7ce7a8bd8113.contentColumnType','\"text\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.3989c2aa-8903-4a90-be5a-7ce7a8bd8113.fieldGroup','null'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.3989c2aa-8903-4a90-be5a-7ce7a8bd8113.handle','\"heading\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.3989c2aa-8903-4a90-be5a-7ce7a8bd8113.instructions','\"\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.3989c2aa-8903-4a90-be5a-7ce7a8bd8113.name','\"Heading\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.3989c2aa-8903-4a90-be5a-7ce7a8bd8113.searchable','false'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.3989c2aa-8903-4a90-be5a-7ce7a8bd8113.settings.byteLimit','null'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.3989c2aa-8903-4a90-be5a-7ce7a8bd8113.settings.charLimit','null'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.3989c2aa-8903-4a90-be5a-7ce7a8bd8113.settings.code','\"\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.3989c2aa-8903-4a90-be5a-7ce7a8bd8113.settings.columnType','null'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.3989c2aa-8903-4a90-be5a-7ce7a8bd8113.settings.initialRows','\"4\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.3989c2aa-8903-4a90-be5a-7ce7a8bd8113.settings.multiline','\"\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.3989c2aa-8903-4a90-be5a-7ce7a8bd8113.settings.placeholder','null'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.3989c2aa-8903-4a90-be5a-7ce7a8bd8113.settings.uiMode','\"normal\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.3989c2aa-8903-4a90-be5a-7ce7a8bd8113.translationKeyFormat','null'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.3989c2aa-8903-4a90-be5a-7ce7a8bd8113.translationMethod','\"none\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.3989c2aa-8903-4a90-be5a-7ce7a8bd8113.type','\"craft\\\\fields\\\\PlainText\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.8fbcbc2d-119a-412d-97e8-fec9e88d9418.columnSuffix','null'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.8fbcbc2d-119a-412d-97e8-fec9e88d9418.contentColumnType','\"string\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.8fbcbc2d-119a-412d-97e8-fec9e88d9418.fieldGroup','null'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.8fbcbc2d-119a-412d-97e8-fec9e88d9418.handle','\"logos\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.8fbcbc2d-119a-412d-97e8-fec9e88d9418.instructions','\"\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.8fbcbc2d-119a-412d-97e8-fec9e88d9418.name','\"Logos\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.8fbcbc2d-119a-412d-97e8-fec9e88d9418.searchable','false'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.8fbcbc2d-119a-412d-97e8-fec9e88d9418.settings.columns.__assoc__.0.0','\"77c63b72-1a12-4ae0-8e77-1c8281529861\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.8fbcbc2d-119a-412d-97e8-fec9e88d9418.settings.columns.__assoc__.0.1.__assoc__.0.0','\"width\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.8fbcbc2d-119a-412d-97e8-fec9e88d9418.settings.columns.__assoc__.0.1.__assoc__.0.1','\"\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.8fbcbc2d-119a-412d-97e8-fec9e88d9418.settings.columns.__assoc__.1.0','\"0b0d85f7-4358-42e8-9beb-96291582f0ef\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.8fbcbc2d-119a-412d-97e8-fec9e88d9418.settings.columns.__assoc__.1.1.__assoc__.0.0','\"width\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.8fbcbc2d-119a-412d-97e8-fec9e88d9418.settings.columns.__assoc__.1.1.__assoc__.0.1','\"\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.8fbcbc2d-119a-412d-97e8-fec9e88d9418.settings.contentTable','\"{{%stc_12_logos}}\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.8fbcbc2d-119a-412d-97e8-fec9e88d9418.settings.fieldLayout','\"table\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.8fbcbc2d-119a-412d-97e8-fec9e88d9418.settings.maxRows','\"\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.8fbcbc2d-119a-412d-97e8-fec9e88d9418.settings.minRows','\"\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.8fbcbc2d-119a-412d-97e8-fec9e88d9418.settings.placeholderKey','null'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.8fbcbc2d-119a-412d-97e8-fec9e88d9418.settings.propagationMethod','\"all\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.8fbcbc2d-119a-412d-97e8-fec9e88d9418.settings.selectionLabel','\"\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.8fbcbc2d-119a-412d-97e8-fec9e88d9418.settings.staticField','\"\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.8fbcbc2d-119a-412d-97e8-fec9e88d9418.translationKeyFormat','null'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.8fbcbc2d-119a-412d-97e8-fec9e88d9418.translationMethod','\"site\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.fields.8fbcbc2d-119a-412d-97e8-fec9e88d9418.type','\"verbb\\\\supertable\\\\fields\\\\SuperTableField\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.handle','\"logoCloud\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.name','\"Logo cloud\"'),('matrixBlockTypes.9c8e3dce-6c96-444a-adc7-7a811e3e2422.sortOrder','5'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.field','\"2718313e-9a95-48a0-b8f2-d08ccd8f2323\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.0.fieldUid','\"8adf4bb2-35da-47dc-b397-78ad436fafaf\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.0.instructions','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.0.label','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.0.required','false'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.0.tip','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.0.warning','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.0.width','100'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.1.fieldUid','\"5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.1.instructions','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.1.label','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.1.required','false'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.1.tip','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.1.warning','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.1.width','100'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.2.fieldUid','\"85f5f339-ed01-43a1-94b9-771aee87b786\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.2.instructions','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.2.label','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.2.required','false'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.2.tip','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.2.warning','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.2.width','100'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.3.fieldUid','\"69757833-f906-4261-bc37-340e59416a60\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.3.instructions','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.3.label','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.3.required','false'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.3.tip','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.3.warning','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.3.width','100'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.4.fieldUid','\"82986907-d153-492e-b87b-4c7898ad9a45\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.4.instructions','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.4.label','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.4.required','false'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.4.tip','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.4.warning','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.4.width','100'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.5.fieldUid','\"f78040ea-09e5-4ebd-b1e2-e08df257a5da\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.5.instructions','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.5.label','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.5.required','false'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.5.tip','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.5.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.5.warning','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.elements.5.width','100'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.name','\"Content\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fieldLayouts.b1a873a0-d2b0-4853-9426-ac51535f08cb.tabs.0.sortOrder','1'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3.columnSuffix','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3.contentColumnType','\"string\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3.fieldGroup','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3.handle','\"buttonImage\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3.instructions','\"If you want to use an image instead of text for the button, upload it here\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3.name','\"Button image\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3.searchable','false'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3.settings.allowedKinds.0','\"image\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3.settings.allowSelfRelations','false'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3.settings.allowUploads','true'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3.settings.defaultUploadLocationSource','\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3.settings.defaultUploadLocationSubpath','\"\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3.settings.limit','\"1\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3.settings.localizeRelations','false'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3.settings.previewMode','\"full\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3.settings.restrictFiles','\"1\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3.settings.selectionLabel','\"Add button image\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3.settings.showSiteMenu','false'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3.settings.showUnpermittedFiles','false'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3.settings.showUnpermittedVolumes','false'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3.settings.singleUploadLocationSource','\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3.settings.singleUploadLocationSubpath','\"\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3.settings.source','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3.settings.sources','\"*\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3.settings.targetSiteId','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3.settings.useSingleFolder','false'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3.settings.validateRelatedElements','false'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3.settings.viewMode','\"list\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3.translationKeyFormat','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3.translationMethod','\"site\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3.type','\"craft\\\\fields\\\\Assets\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.69757833-f906-4261-bc37-340e59416a60.columnSuffix','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.69757833-f906-4261-bc37-340e59416a60.contentColumnType','\"text\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.69757833-f906-4261-bc37-340e59416a60.fieldGroup','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.69757833-f906-4261-bc37-340e59416a60.handle','\"externalLink\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.69757833-f906-4261-bc37-340e59416a60.instructions','\"\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.69757833-f906-4261-bc37-340e59416a60.name','\"External link\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.69757833-f906-4261-bc37-340e59416a60.searchable','false'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.69757833-f906-4261-bc37-340e59416a60.settings.byteLimit','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.69757833-f906-4261-bc37-340e59416a60.settings.charLimit','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.69757833-f906-4261-bc37-340e59416a60.settings.code','\"\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.69757833-f906-4261-bc37-340e59416a60.settings.columnType','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.69757833-f906-4261-bc37-340e59416a60.settings.initialRows','\"4\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.69757833-f906-4261-bc37-340e59416a60.settings.multiline','\"\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.69757833-f906-4261-bc37-340e59416a60.settings.placeholder','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.69757833-f906-4261-bc37-340e59416a60.settings.uiMode','\"normal\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.69757833-f906-4261-bc37-340e59416a60.translationKeyFormat','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.69757833-f906-4261-bc37-340e59416a60.translationMethod','\"none\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.69757833-f906-4261-bc37-340e59416a60.type','\"craft\\\\fields\\\\PlainText\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.82986907-d153-492e-b87b-4c7898ad9a45.columnSuffix','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.82986907-d153-492e-b87b-4c7898ad9a45.contentColumnType','\"string\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.82986907-d153-492e-b87b-4c7898ad9a45.fieldGroup','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.82986907-d153-492e-b87b-4c7898ad9a45.handle','\"buttonStyle\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.82986907-d153-492e-b87b-4c7898ad9a45.instructions','\"\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.82986907-d153-492e-b87b-4c7898ad9a45.name','\"Button style\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.82986907-d153-492e-b87b-4c7898ad9a45.searchable','false'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.82986907-d153-492e-b87b-4c7898ad9a45.settings.optgroups','true'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.82986907-d153-492e-b87b-4c7898ad9a45.settings.options.0.__assoc__.0.0','\"label\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.82986907-d153-492e-b87b-4c7898ad9a45.settings.options.0.__assoc__.0.1','\"Outline\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.82986907-d153-492e-b87b-4c7898ad9a45.settings.options.0.__assoc__.1.0','\"value\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.82986907-d153-492e-b87b-4c7898ad9a45.settings.options.0.__assoc__.1.1','\"outline\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.82986907-d153-492e-b87b-4c7898ad9a45.settings.options.0.__assoc__.2.0','\"default\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.82986907-d153-492e-b87b-4c7898ad9a45.settings.options.0.__assoc__.2.1','\"1\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.82986907-d153-492e-b87b-4c7898ad9a45.settings.options.1.__assoc__.0.0','\"label\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.82986907-d153-492e-b87b-4c7898ad9a45.settings.options.1.__assoc__.0.1','\"Link\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.82986907-d153-492e-b87b-4c7898ad9a45.settings.options.1.__assoc__.1.0','\"value\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.82986907-d153-492e-b87b-4c7898ad9a45.settings.options.1.__assoc__.1.1','\"link\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.82986907-d153-492e-b87b-4c7898ad9a45.settings.options.1.__assoc__.2.0','\"default\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.82986907-d153-492e-b87b-4c7898ad9a45.settings.options.1.__assoc__.2.1','\"\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.82986907-d153-492e-b87b-4c7898ad9a45.settings.options.2.__assoc__.0.0','\"label\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.82986907-d153-492e-b87b-4c7898ad9a45.settings.options.2.__assoc__.0.1','\"Link list\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.82986907-d153-492e-b87b-4c7898ad9a45.settings.options.2.__assoc__.1.0','\"value\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.82986907-d153-492e-b87b-4c7898ad9a45.settings.options.2.__assoc__.1.1','\"linkList\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.82986907-d153-492e-b87b-4c7898ad9a45.settings.options.2.__assoc__.2.0','\"default\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.82986907-d153-492e-b87b-4c7898ad9a45.settings.options.2.__assoc__.2.1','\"\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.82986907-d153-492e-b87b-4c7898ad9a45.translationKeyFormat','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.82986907-d153-492e-b87b-4c7898ad9a45.translationMethod','\"none\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.82986907-d153-492e-b87b-4c7898ad9a45.type','\"craft\\\\fields\\\\Dropdown\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.85f5f339-ed01-43a1-94b9-771aee87b786.columnSuffix','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.85f5f339-ed01-43a1-94b9-771aee87b786.contentColumnType','\"string\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.85f5f339-ed01-43a1-94b9-771aee87b786.fieldGroup','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.85f5f339-ed01-43a1-94b9-771aee87b786.handle','\"internalLink\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.85f5f339-ed01-43a1-94b9-771aee87b786.instructions','\"\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.85f5f339-ed01-43a1-94b9-771aee87b786.name','\"Internal link\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.85f5f339-ed01-43a1-94b9-771aee87b786.searchable','false'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.85f5f339-ed01-43a1-94b9-771aee87b786.settings.allowSelfRelations','false'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.85f5f339-ed01-43a1-94b9-771aee87b786.settings.limit','\"1\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.85f5f339-ed01-43a1-94b9-771aee87b786.settings.localizeRelations','false'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.85f5f339-ed01-43a1-94b9-771aee87b786.settings.selectionLabel','\"Create a link to an entry\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.85f5f339-ed01-43a1-94b9-771aee87b786.settings.showSiteMenu','true'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.85f5f339-ed01-43a1-94b9-771aee87b786.settings.source','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.85f5f339-ed01-43a1-94b9-771aee87b786.settings.sources.0','\"section:a649cddf-ac92-414a-8d24-cff4dcfeb45e\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.85f5f339-ed01-43a1-94b9-771aee87b786.settings.sources.1','\"singles\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.85f5f339-ed01-43a1-94b9-771aee87b786.settings.sources.2','\"section:6683638f-50e1-4d95-9996-a6e6b3aabff9\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.85f5f339-ed01-43a1-94b9-771aee87b786.settings.targetSiteId','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.85f5f339-ed01-43a1-94b9-771aee87b786.settings.validateRelatedElements','false'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.85f5f339-ed01-43a1-94b9-771aee87b786.settings.viewMode','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.85f5f339-ed01-43a1-94b9-771aee87b786.translationKeyFormat','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.85f5f339-ed01-43a1-94b9-771aee87b786.translationMethod','\"site\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.85f5f339-ed01-43a1-94b9-771aee87b786.type','\"craft\\\\fields\\\\Entries\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.8adf4bb2-35da-47dc-b397-78ad436fafaf.columnSuffix','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.8adf4bb2-35da-47dc-b397-78ad436fafaf.contentColumnType','\"text\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.8adf4bb2-35da-47dc-b397-78ad436fafaf.fieldGroup','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.8adf4bb2-35da-47dc-b397-78ad436fafaf.handle','\"buttonText\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.8adf4bb2-35da-47dc-b397-78ad436fafaf.instructions','\"\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.8adf4bb2-35da-47dc-b397-78ad436fafaf.name','\"Button text\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.8adf4bb2-35da-47dc-b397-78ad436fafaf.searchable','false'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.8adf4bb2-35da-47dc-b397-78ad436fafaf.settings.byteLimit','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.8adf4bb2-35da-47dc-b397-78ad436fafaf.settings.charLimit','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.8adf4bb2-35da-47dc-b397-78ad436fafaf.settings.code','\"\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.8adf4bb2-35da-47dc-b397-78ad436fafaf.settings.columnType','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.8adf4bb2-35da-47dc-b397-78ad436fafaf.settings.initialRows','\"4\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.8adf4bb2-35da-47dc-b397-78ad436fafaf.settings.multiline','\"\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.8adf4bb2-35da-47dc-b397-78ad436fafaf.settings.placeholder','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.8adf4bb2-35da-47dc-b397-78ad436fafaf.settings.uiMode','\"normal\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.8adf4bb2-35da-47dc-b397-78ad436fafaf.translationKeyFormat','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.8adf4bb2-35da-47dc-b397-78ad436fafaf.translationMethod','\"none\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.8adf4bb2-35da-47dc-b397-78ad436fafaf.type','\"craft\\\\fields\\\\PlainText\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.columnSuffix','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.contentColumnType','\"string\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.fieldGroup','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.handle','\"buttonColour\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.instructions','\"\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.name','\"Button colour\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.searchable','false'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.settings.optgroups','true'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.settings.options.0.__assoc__.0.0','\"label\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.settings.options.0.__assoc__.0.1','\"Black\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.settings.options.0.__assoc__.1.0','\"value\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.settings.options.0.__assoc__.1.1','\"black\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.settings.options.0.__assoc__.2.0','\"default\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.settings.options.0.__assoc__.2.1','\"1\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.settings.options.1.__assoc__.0.0','\"label\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.settings.options.1.__assoc__.0.1','\"Red\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.settings.options.1.__assoc__.1.0','\"value\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.settings.options.1.__assoc__.1.1','\"red\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.settings.options.1.__assoc__.2.0','\"default\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.settings.options.1.__assoc__.2.1','\"\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.settings.options.2.__assoc__.0.0','\"label\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.settings.options.2.__assoc__.0.1','\"White\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.settings.options.2.__assoc__.1.0','\"value\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.settings.options.2.__assoc__.1.1','\"white\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.settings.options.2.__assoc__.2.0','\"default\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.settings.options.2.__assoc__.2.1','\"\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.settings.options.3.__assoc__.0.0','\"label\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.settings.options.3.__assoc__.0.1','\"Green\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.settings.options.3.__assoc__.1.0','\"value\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.settings.options.3.__assoc__.1.1','\"green\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.settings.options.3.__assoc__.2.0','\"default\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.settings.options.3.__assoc__.2.1','\"\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.translationKeyFormat','null'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.translationMethod','\"none\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.fields.f78040ea-09e5-4ebd-b1e2-e08df257a5da.type','\"craft\\\\fields\\\\Dropdown\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.handle','\"buttons\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.name','\"Buttons\"'),('matrixBlockTypes.a0c5cc5d-7235-4c9b-804b-23a836279f84.sortOrder','1'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.field','\"d3a8c8b6-f737-460c-81dc-9818db4a2627\"'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fieldLayouts.86f6c809-4b0f-46b9-ab12-c340bd3391d2.tabs.0.elements.0.fieldUid','\"76c09769-e160-4cff-b43f-81533d470637\"'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fieldLayouts.86f6c809-4b0f-46b9-ab12-c340bd3391d2.tabs.0.elements.0.instructions','null'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fieldLayouts.86f6c809-4b0f-46b9-ab12-c340bd3391d2.tabs.0.elements.0.label','null'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fieldLayouts.86f6c809-4b0f-46b9-ab12-c340bd3391d2.tabs.0.elements.0.required','false'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fieldLayouts.86f6c809-4b0f-46b9-ab12-c340bd3391d2.tabs.0.elements.0.tip','null'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fieldLayouts.86f6c809-4b0f-46b9-ab12-c340bd3391d2.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fieldLayouts.86f6c809-4b0f-46b9-ab12-c340bd3391d2.tabs.0.elements.0.warning','null'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fieldLayouts.86f6c809-4b0f-46b9-ab12-c340bd3391d2.tabs.0.elements.0.width','100'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fieldLayouts.86f6c809-4b0f-46b9-ab12-c340bd3391d2.tabs.0.elements.1.fieldUid','\"b76e39f4-0e1a-4d62-8e53-12e86f7e7705\"'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fieldLayouts.86f6c809-4b0f-46b9-ab12-c340bd3391d2.tabs.0.elements.1.instructions','null'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fieldLayouts.86f6c809-4b0f-46b9-ab12-c340bd3391d2.tabs.0.elements.1.label','null'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fieldLayouts.86f6c809-4b0f-46b9-ab12-c340bd3391d2.tabs.0.elements.1.required','false'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fieldLayouts.86f6c809-4b0f-46b9-ab12-c340bd3391d2.tabs.0.elements.1.tip','null'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fieldLayouts.86f6c809-4b0f-46b9-ab12-c340bd3391d2.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fieldLayouts.86f6c809-4b0f-46b9-ab12-c340bd3391d2.tabs.0.elements.1.warning','null'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fieldLayouts.86f6c809-4b0f-46b9-ab12-c340bd3391d2.tabs.0.elements.1.width','100'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fieldLayouts.86f6c809-4b0f-46b9-ab12-c340bd3391d2.tabs.0.name','\"Content\"'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fieldLayouts.86f6c809-4b0f-46b9-ab12-c340bd3391d2.tabs.0.sortOrder','1'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.76c09769-e160-4cff-b43f-81533d470637.columnSuffix','null'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.76c09769-e160-4cff-b43f-81533d470637.contentColumnType','\"text\"'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.76c09769-e160-4cff-b43f-81533d470637.fieldGroup','null'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.76c09769-e160-4cff-b43f-81533d470637.handle','\"sectionHeading\"'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.76c09769-e160-4cff-b43f-81533d470637.instructions','\"\"'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.76c09769-e160-4cff-b43f-81533d470637.name','\"Section heading\"'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.76c09769-e160-4cff-b43f-81533d470637.searchable','false'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.76c09769-e160-4cff-b43f-81533d470637.settings.byteLimit','null'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.76c09769-e160-4cff-b43f-81533d470637.settings.charLimit','null'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.76c09769-e160-4cff-b43f-81533d470637.settings.code','\"\"'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.76c09769-e160-4cff-b43f-81533d470637.settings.columnType','null'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.76c09769-e160-4cff-b43f-81533d470637.settings.initialRows','\"4\"'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.76c09769-e160-4cff-b43f-81533d470637.settings.multiline','\"\"'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.76c09769-e160-4cff-b43f-81533d470637.settings.placeholder','null'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.76c09769-e160-4cff-b43f-81533d470637.settings.uiMode','\"normal\"'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.76c09769-e160-4cff-b43f-81533d470637.translationKeyFormat','null'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.76c09769-e160-4cff-b43f-81533d470637.translationMethod','\"none\"'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.76c09769-e160-4cff-b43f-81533d470637.type','\"craft\\\\fields\\\\PlainText\"'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.b76e39f4-0e1a-4d62-8e53-12e86f7e7705.columnSuffix','null'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.b76e39f4-0e1a-4d62-8e53-12e86f7e7705.contentColumnType','\"string\"'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.b76e39f4-0e1a-4d62-8e53-12e86f7e7705.fieldGroup','null'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.b76e39f4-0e1a-4d62-8e53-12e86f7e7705.handle','\"relatedPeople\"'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.b76e39f4-0e1a-4d62-8e53-12e86f7e7705.instructions','\"\"'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.b76e39f4-0e1a-4d62-8e53-12e86f7e7705.name','\"Related people\"'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.b76e39f4-0e1a-4d62-8e53-12e86f7e7705.searchable','false'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.b76e39f4-0e1a-4d62-8e53-12e86f7e7705.settings.allowSelfRelations','false'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.b76e39f4-0e1a-4d62-8e53-12e86f7e7705.settings.limit','\"\"'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.b76e39f4-0e1a-4d62-8e53-12e86f7e7705.settings.localizeRelations','false'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.b76e39f4-0e1a-4d62-8e53-12e86f7e7705.settings.selectionLabel','\"Add a user\"'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.b76e39f4-0e1a-4d62-8e53-12e86f7e7705.settings.showSiteMenu','true'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.b76e39f4-0e1a-4d62-8e53-12e86f7e7705.settings.source','null'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.b76e39f4-0e1a-4d62-8e53-12e86f7e7705.settings.sources.0','\"group:23b92378-5094-4e5b-9831-346803f914f0\"'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.b76e39f4-0e1a-4d62-8e53-12e86f7e7705.settings.targetSiteId','null'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.b76e39f4-0e1a-4d62-8e53-12e86f7e7705.settings.validateRelatedElements','false'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.b76e39f4-0e1a-4d62-8e53-12e86f7e7705.settings.viewMode','null'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.b76e39f4-0e1a-4d62-8e53-12e86f7e7705.translationKeyFormat','null'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.b76e39f4-0e1a-4d62-8e53-12e86f7e7705.translationMethod','\"site\"'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.fields.b76e39f4-0e1a-4d62-8e53-12e86f7e7705.type','\"craft\\\\fields\\\\Users\"'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.handle','\"peopleGrid\"'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.name','\"People grid\"'),('matrixBlockTypes.a717fd1e-e201-40af-a6ad-93f6c3492eac.sortOrder','3'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.field','\"aa7cd983-d717-4e90-bce8-4fafcb0c37aa\"'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fieldLayouts.4295a878-33a4-4058-b3f3-0bd927c8478c.tabs.0.elements.0.fieldUid','\"73446925-4ff5-472c-a475-71d853f84501\"'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fieldLayouts.4295a878-33a4-4058-b3f3-0bd927c8478c.tabs.0.elements.0.instructions','null'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fieldLayouts.4295a878-33a4-4058-b3f3-0bd927c8478c.tabs.0.elements.0.label','null'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fieldLayouts.4295a878-33a4-4058-b3f3-0bd927c8478c.tabs.0.elements.0.required','false'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fieldLayouts.4295a878-33a4-4058-b3f3-0bd927c8478c.tabs.0.elements.0.tip','null'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fieldLayouts.4295a878-33a4-4058-b3f3-0bd927c8478c.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fieldLayouts.4295a878-33a4-4058-b3f3-0bd927c8478c.tabs.0.elements.0.warning','null'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fieldLayouts.4295a878-33a4-4058-b3f3-0bd927c8478c.tabs.0.elements.0.width','100'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fieldLayouts.4295a878-33a4-4058-b3f3-0bd927c8478c.tabs.0.elements.1.fieldUid','\"a7b7b38d-f6b5-4bee-9df7-164e3e5516d9\"'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fieldLayouts.4295a878-33a4-4058-b3f3-0bd927c8478c.tabs.0.elements.1.instructions','null'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fieldLayouts.4295a878-33a4-4058-b3f3-0bd927c8478c.tabs.0.elements.1.label','null'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fieldLayouts.4295a878-33a4-4058-b3f3-0bd927c8478c.tabs.0.elements.1.required','false'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fieldLayouts.4295a878-33a4-4058-b3f3-0bd927c8478c.tabs.0.elements.1.tip','null'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fieldLayouts.4295a878-33a4-4058-b3f3-0bd927c8478c.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fieldLayouts.4295a878-33a4-4058-b3f3-0bd927c8478c.tabs.0.elements.1.warning','null'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fieldLayouts.4295a878-33a4-4058-b3f3-0bd927c8478c.tabs.0.elements.1.width','100'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fieldLayouts.4295a878-33a4-4058-b3f3-0bd927c8478c.tabs.0.name','\"Content\"'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fieldLayouts.4295a878-33a4-4058-b3f3-0bd927c8478c.tabs.0.sortOrder','1'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.73446925-4ff5-472c-a475-71d853f84501.columnSuffix','null'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.73446925-4ff5-472c-a475-71d853f84501.contentColumnType','\"text\"'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.73446925-4ff5-472c-a475-71d853f84501.fieldGroup','null'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.73446925-4ff5-472c-a475-71d853f84501.handle','\"question\"'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.73446925-4ff5-472c-a475-71d853f84501.instructions','\"\"'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.73446925-4ff5-472c-a475-71d853f84501.name','\"Question\"'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.73446925-4ff5-472c-a475-71d853f84501.searchable','false'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.73446925-4ff5-472c-a475-71d853f84501.settings.byteLimit','null'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.73446925-4ff5-472c-a475-71d853f84501.settings.charLimit','null'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.73446925-4ff5-472c-a475-71d853f84501.settings.code','\"\"'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.73446925-4ff5-472c-a475-71d853f84501.settings.columnType','null'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.73446925-4ff5-472c-a475-71d853f84501.settings.initialRows','\"4\"'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.73446925-4ff5-472c-a475-71d853f84501.settings.multiline','\"\"'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.73446925-4ff5-472c-a475-71d853f84501.settings.placeholder','null'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.73446925-4ff5-472c-a475-71d853f84501.settings.uiMode','\"normal\"'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.73446925-4ff5-472c-a475-71d853f84501.translationKeyFormat','null'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.73446925-4ff5-472c-a475-71d853f84501.translationMethod','\"none\"'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.73446925-4ff5-472c-a475-71d853f84501.type','\"craft\\\\fields\\\\PlainText\"'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.a7b7b38d-f6b5-4bee-9df7-164e3e5516d9.columnSuffix','null'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.a7b7b38d-f6b5-4bee-9df7-164e3e5516d9.contentColumnType','\"text\"'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.a7b7b38d-f6b5-4bee-9df7-164e3e5516d9.fieldGroup','null'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.a7b7b38d-f6b5-4bee-9df7-164e3e5516d9.handle','\"answer\"'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.a7b7b38d-f6b5-4bee-9df7-164e3e5516d9.instructions','\"\"'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.a7b7b38d-f6b5-4bee-9df7-164e3e5516d9.name','\"Answer\"'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.a7b7b38d-f6b5-4bee-9df7-164e3e5516d9.searchable','false'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.a7b7b38d-f6b5-4bee-9df7-164e3e5516d9.settings.byteLimit','null'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.a7b7b38d-f6b5-4bee-9df7-164e3e5516d9.settings.charLimit','null'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.a7b7b38d-f6b5-4bee-9df7-164e3e5516d9.settings.code','\"\"'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.a7b7b38d-f6b5-4bee-9df7-164e3e5516d9.settings.columnType','null'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.a7b7b38d-f6b5-4bee-9df7-164e3e5516d9.settings.initialRows','\"4\"'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.a7b7b38d-f6b5-4bee-9df7-164e3e5516d9.settings.multiline','\"1\"'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.a7b7b38d-f6b5-4bee-9df7-164e3e5516d9.settings.placeholder','null'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.a7b7b38d-f6b5-4bee-9df7-164e3e5516d9.settings.uiMode','\"normal\"'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.a7b7b38d-f6b5-4bee-9df7-164e3e5516d9.translationKeyFormat','null'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.a7b7b38d-f6b5-4bee-9df7-164e3e5516d9.translationMethod','\"none\"'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.fields.a7b7b38d-f6b5-4bee-9df7-164e3e5516d9.type','\"craft\\\\fields\\\\PlainText\"'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.handle','\"question\"'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.name','\"Question\"'),('matrixBlockTypes.e4d4d511-380f-4c4a-b432-9296ba9d0bb2.sortOrder','1'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.field','\"d49f872f-4325-4ed2-b381-4eb04d0a576b\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fieldLayouts.a5ca87d8-ab9a-4950-8d3e-b6e32434fb96.tabs.0.elements.0.fieldUid','\"2f7ba8f5-ccf1-403a-af0a-faa7fd49b841\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fieldLayouts.a5ca87d8-ab9a-4950-8d3e-b6e32434fb96.tabs.0.elements.0.instructions','null'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fieldLayouts.a5ca87d8-ab9a-4950-8d3e-b6e32434fb96.tabs.0.elements.0.label','null'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fieldLayouts.a5ca87d8-ab9a-4950-8d3e-b6e32434fb96.tabs.0.elements.0.required','false'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fieldLayouts.a5ca87d8-ab9a-4950-8d3e-b6e32434fb96.tabs.0.elements.0.tip','null'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fieldLayouts.a5ca87d8-ab9a-4950-8d3e-b6e32434fb96.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fieldLayouts.a5ca87d8-ab9a-4950-8d3e-b6e32434fb96.tabs.0.elements.0.warning','null'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fieldLayouts.a5ca87d8-ab9a-4950-8d3e-b6e32434fb96.tabs.0.elements.0.width','100'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fieldLayouts.a5ca87d8-ab9a-4950-8d3e-b6e32434fb96.tabs.0.elements.1.fieldUid','\"2d326ffa-82ec-4671-87b5-b5c79c1ae26b\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fieldLayouts.a5ca87d8-ab9a-4950-8d3e-b6e32434fb96.tabs.0.elements.1.instructions','null'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fieldLayouts.a5ca87d8-ab9a-4950-8d3e-b6e32434fb96.tabs.0.elements.1.label','null'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fieldLayouts.a5ca87d8-ab9a-4950-8d3e-b6e32434fb96.tabs.0.elements.1.required','false'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fieldLayouts.a5ca87d8-ab9a-4950-8d3e-b6e32434fb96.tabs.0.elements.1.tip','null'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fieldLayouts.a5ca87d8-ab9a-4950-8d3e-b6e32434fb96.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fieldLayouts.a5ca87d8-ab9a-4950-8d3e-b6e32434fb96.tabs.0.elements.1.warning','null'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fieldLayouts.a5ca87d8-ab9a-4950-8d3e-b6e32434fb96.tabs.0.elements.1.width','100'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fieldLayouts.a5ca87d8-ab9a-4950-8d3e-b6e32434fb96.tabs.0.elements.2.fieldUid','\"c2767866-99f0-4732-a314-d9167998c803\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fieldLayouts.a5ca87d8-ab9a-4950-8d3e-b6e32434fb96.tabs.0.elements.2.instructions','null'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fieldLayouts.a5ca87d8-ab9a-4950-8d3e-b6e32434fb96.tabs.0.elements.2.label','null'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fieldLayouts.a5ca87d8-ab9a-4950-8d3e-b6e32434fb96.tabs.0.elements.2.required','false'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fieldLayouts.a5ca87d8-ab9a-4950-8d3e-b6e32434fb96.tabs.0.elements.2.tip','null'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fieldLayouts.a5ca87d8-ab9a-4950-8d3e-b6e32434fb96.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fieldLayouts.a5ca87d8-ab9a-4950-8d3e-b6e32434fb96.tabs.0.elements.2.warning','null'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fieldLayouts.a5ca87d8-ab9a-4950-8d3e-b6e32434fb96.tabs.0.elements.2.width','100'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fieldLayouts.a5ca87d8-ab9a-4950-8d3e-b6e32434fb96.tabs.0.name','\"Content\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fieldLayouts.a5ca87d8-ab9a-4950-8d3e-b6e32434fb96.tabs.0.sortOrder','1'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2d326ffa-82ec-4671-87b5-b5c79c1ae26b.columnSuffix','null'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2d326ffa-82ec-4671-87b5-b5c79c1ae26b.contentColumnType','\"text\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2d326ffa-82ec-4671-87b5-b5c79c1ae26b.fieldGroup','null'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2d326ffa-82ec-4671-87b5-b5c79c1ae26b.handle','\"lessText\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2d326ffa-82ec-4671-87b5-b5c79c1ae26b.instructions','\"\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2d326ffa-82ec-4671-87b5-b5c79c1ae26b.name','\"Less text\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2d326ffa-82ec-4671-87b5-b5c79c1ae26b.searchable','false'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2d326ffa-82ec-4671-87b5-b5c79c1ae26b.settings.availableTransforms','\"*\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2d326ffa-82ec-4671-87b5-b5c79c1ae26b.settings.availableVolumes','\"*\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2d326ffa-82ec-4671-87b5-b5c79c1ae26b.settings.cleanupHtml','true'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2d326ffa-82ec-4671-87b5-b5c79c1ae26b.settings.columnType','\"text\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2d326ffa-82ec-4671-87b5-b5c79c1ae26b.settings.configSelectionMode','\"choose\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2d326ffa-82ec-4671-87b5-b5c79c1ae26b.settings.defaultTransform','\"\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2d326ffa-82ec-4671-87b5-b5c79c1ae26b.settings.manualConfig','\"\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2d326ffa-82ec-4671-87b5-b5c79c1ae26b.settings.purifierConfig','\"\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2d326ffa-82ec-4671-87b5-b5c79c1ae26b.settings.purifyHtml','\"1\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2d326ffa-82ec-4671-87b5-b5c79c1ae26b.settings.redactorConfig','\"\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2d326ffa-82ec-4671-87b5-b5c79c1ae26b.settings.removeEmptyTags','\"1\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2d326ffa-82ec-4671-87b5-b5c79c1ae26b.settings.removeInlineStyles','\"\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2d326ffa-82ec-4671-87b5-b5c79c1ae26b.settings.removeNbsp','\"1\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2d326ffa-82ec-4671-87b5-b5c79c1ae26b.settings.showHtmlButtonForNonAdmins','\"\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2d326ffa-82ec-4671-87b5-b5c79c1ae26b.settings.showUnpermittedFiles','false'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2d326ffa-82ec-4671-87b5-b5c79c1ae26b.settings.showUnpermittedVolumes','false'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2d326ffa-82ec-4671-87b5-b5c79c1ae26b.settings.uiMode','\"enlarged\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2d326ffa-82ec-4671-87b5-b5c79c1ae26b.translationKeyFormat','null'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2d326ffa-82ec-4671-87b5-b5c79c1ae26b.translationMethod','\"none\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2d326ffa-82ec-4671-87b5-b5c79c1ae26b.type','\"craft\\\\redactor\\\\Field\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2f7ba8f5-ccf1-403a-af0a-faa7fd49b841.columnSuffix','null'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2f7ba8f5-ccf1-403a-af0a-faa7fd49b841.contentColumnType','\"text\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2f7ba8f5-ccf1-403a-af0a-faa7fd49b841.fieldGroup','null'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2f7ba8f5-ccf1-403a-af0a-faa7fd49b841.handle','\"moreText\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2f7ba8f5-ccf1-403a-af0a-faa7fd49b841.instructions','\"\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2f7ba8f5-ccf1-403a-af0a-faa7fd49b841.name','\"More text\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2f7ba8f5-ccf1-403a-af0a-faa7fd49b841.searchable','false'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2f7ba8f5-ccf1-403a-af0a-faa7fd49b841.settings.availableTransforms','\"*\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2f7ba8f5-ccf1-403a-af0a-faa7fd49b841.settings.availableVolumes','\"*\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2f7ba8f5-ccf1-403a-af0a-faa7fd49b841.settings.cleanupHtml','true'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2f7ba8f5-ccf1-403a-af0a-faa7fd49b841.settings.columnType','\"text\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2f7ba8f5-ccf1-403a-af0a-faa7fd49b841.settings.configSelectionMode','\"choose\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2f7ba8f5-ccf1-403a-af0a-faa7fd49b841.settings.defaultTransform','\"\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2f7ba8f5-ccf1-403a-af0a-faa7fd49b841.settings.manualConfig','\"\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2f7ba8f5-ccf1-403a-af0a-faa7fd49b841.settings.purifierConfig','\"\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2f7ba8f5-ccf1-403a-af0a-faa7fd49b841.settings.purifyHtml','\"1\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2f7ba8f5-ccf1-403a-af0a-faa7fd49b841.settings.redactorConfig','\"\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2f7ba8f5-ccf1-403a-af0a-faa7fd49b841.settings.removeEmptyTags','\"1\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2f7ba8f5-ccf1-403a-af0a-faa7fd49b841.settings.removeInlineStyles','\"\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2f7ba8f5-ccf1-403a-af0a-faa7fd49b841.settings.removeNbsp','\"1\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2f7ba8f5-ccf1-403a-af0a-faa7fd49b841.settings.showHtmlButtonForNonAdmins','\"\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2f7ba8f5-ccf1-403a-af0a-faa7fd49b841.settings.showUnpermittedFiles','false'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2f7ba8f5-ccf1-403a-af0a-faa7fd49b841.settings.showUnpermittedVolumes','false'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2f7ba8f5-ccf1-403a-af0a-faa7fd49b841.settings.uiMode','\"enlarged\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2f7ba8f5-ccf1-403a-af0a-faa7fd49b841.translationKeyFormat','null'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2f7ba8f5-ccf1-403a-af0a-faa7fd49b841.translationMethod','\"none\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.2f7ba8f5-ccf1-403a-af0a-faa7fd49b841.type','\"craft\\\\redactor\\\\Field\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.c2767866-99f0-4732-a314-d9167998c803.columnSuffix','null'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.c2767866-99f0-4732-a314-d9167998c803.contentColumnType','\"string\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.c2767866-99f0-4732-a314-d9167998c803.fieldGroup','null'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.c2767866-99f0-4732-a314-d9167998c803.handle','\"relatedProject\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.c2767866-99f0-4732-a314-d9167998c803.instructions','\"\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.c2767866-99f0-4732-a314-d9167998c803.name','\"Related project\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.c2767866-99f0-4732-a314-d9167998c803.searchable','false'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.c2767866-99f0-4732-a314-d9167998c803.settings.allowSelfRelations','false'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.c2767866-99f0-4732-a314-d9167998c803.settings.limit','\"1\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.c2767866-99f0-4732-a314-d9167998c803.settings.localizeRelations','false'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.c2767866-99f0-4732-a314-d9167998c803.settings.selectionLabel','\"Relate a project\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.c2767866-99f0-4732-a314-d9167998c803.settings.showSiteMenu','true'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.c2767866-99f0-4732-a314-d9167998c803.settings.source','null'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.c2767866-99f0-4732-a314-d9167998c803.settings.sources.0','\"section:6683638f-50e1-4d95-9996-a6e6b3aabff9\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.c2767866-99f0-4732-a314-d9167998c803.settings.targetSiteId','null'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.c2767866-99f0-4732-a314-d9167998c803.settings.validateRelatedElements','false'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.c2767866-99f0-4732-a314-d9167998c803.settings.viewMode','null'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.c2767866-99f0-4732-a314-d9167998c803.translationKeyFormat','null'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.c2767866-99f0-4732-a314-d9167998c803.translationMethod','\"site\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.fields.c2767866-99f0-4732-a314-d9167998c803.type','\"craft\\\\fields\\\\Entries\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.handle','\"homepageSlideshow\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.name','\"Homepage slideshow\"'),('matrixBlockTypes.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6.sortOrder','1'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.field','\"da858be0-dc01-44ea-9fc5-f9c6848cc9af\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fieldLayouts.c63307f7-50bc-411a-91ca-6eb85cfffc1e.tabs.0.elements.0.fieldUid','\"674ed020-679c-47d4-b702-aa9f9d0810dd\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fieldLayouts.c63307f7-50bc-411a-91ca-6eb85cfffc1e.tabs.0.elements.0.instructions','null'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fieldLayouts.c63307f7-50bc-411a-91ca-6eb85cfffc1e.tabs.0.elements.0.label','null'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fieldLayouts.c63307f7-50bc-411a-91ca-6eb85cfffc1e.tabs.0.elements.0.required','false'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fieldLayouts.c63307f7-50bc-411a-91ca-6eb85cfffc1e.tabs.0.elements.0.tip','null'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fieldLayouts.c63307f7-50bc-411a-91ca-6eb85cfffc1e.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fieldLayouts.c63307f7-50bc-411a-91ca-6eb85cfffc1e.tabs.0.elements.0.warning','null'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fieldLayouts.c63307f7-50bc-411a-91ca-6eb85cfffc1e.tabs.0.elements.0.width','100'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fieldLayouts.c63307f7-50bc-411a-91ca-6eb85cfffc1e.tabs.0.elements.1.fieldUid','\"668a3788-1102-4bcf-9687-ca83a0a95500\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fieldLayouts.c63307f7-50bc-411a-91ca-6eb85cfffc1e.tabs.0.elements.1.instructions','null'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fieldLayouts.c63307f7-50bc-411a-91ca-6eb85cfffc1e.tabs.0.elements.1.label','null'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fieldLayouts.c63307f7-50bc-411a-91ca-6eb85cfffc1e.tabs.0.elements.1.required','false'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fieldLayouts.c63307f7-50bc-411a-91ca-6eb85cfffc1e.tabs.0.elements.1.tip','null'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fieldLayouts.c63307f7-50bc-411a-91ca-6eb85cfffc1e.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fieldLayouts.c63307f7-50bc-411a-91ca-6eb85cfffc1e.tabs.0.elements.1.warning','null'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fieldLayouts.c63307f7-50bc-411a-91ca-6eb85cfffc1e.tabs.0.elements.1.width','50'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fieldLayouts.c63307f7-50bc-411a-91ca-6eb85cfffc1e.tabs.0.elements.2.fieldUid','\"dbbe7fd3-520b-4886-b77f-e0a7904f9c8d\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fieldLayouts.c63307f7-50bc-411a-91ca-6eb85cfffc1e.tabs.0.elements.2.instructions','null'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fieldLayouts.c63307f7-50bc-411a-91ca-6eb85cfffc1e.tabs.0.elements.2.label','null'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fieldLayouts.c63307f7-50bc-411a-91ca-6eb85cfffc1e.tabs.0.elements.2.required','false'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fieldLayouts.c63307f7-50bc-411a-91ca-6eb85cfffc1e.tabs.0.elements.2.tip','null'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fieldLayouts.c63307f7-50bc-411a-91ca-6eb85cfffc1e.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fieldLayouts.c63307f7-50bc-411a-91ca-6eb85cfffc1e.tabs.0.elements.2.warning','null'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fieldLayouts.c63307f7-50bc-411a-91ca-6eb85cfffc1e.tabs.0.elements.2.width','50'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fieldLayouts.c63307f7-50bc-411a-91ca-6eb85cfffc1e.tabs.0.name','\"Content\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fieldLayouts.c63307f7-50bc-411a-91ca-6eb85cfffc1e.tabs.0.sortOrder','1'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.columnSuffix','null'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.contentColumnType','\"string\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.fieldGroup','null'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.handle','\"textSize\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.instructions','\"\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.name','\"Text size\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.searchable','false'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.settings.optgroups','true'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.settings.options.0.__assoc__.0.0','\"label\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.settings.options.0.__assoc__.0.1','\"Small\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.settings.options.0.__assoc__.1.0','\"value\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.settings.options.0.__assoc__.1.1','\"text-sm\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.settings.options.0.__assoc__.2.0','\"default\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.settings.options.0.__assoc__.2.1','\"\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.settings.options.1.__assoc__.0.0','\"label\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.settings.options.1.__assoc__.0.1','\"Normal\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.settings.options.1.__assoc__.1.0','\"value\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.settings.options.1.__assoc__.1.1','\"text-base\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.settings.options.1.__assoc__.2.0','\"default\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.settings.options.1.__assoc__.2.1','\"1\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.settings.options.2.__assoc__.0.0','\"label\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.settings.options.2.__assoc__.0.1','\"Large\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.settings.options.2.__assoc__.1.0','\"value\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.settings.options.2.__assoc__.1.1','\"text-lg\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.settings.options.2.__assoc__.2.0','\"default\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.settings.options.2.__assoc__.2.1','\"\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.settings.options.3.__assoc__.0.0','\"label\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.settings.options.3.__assoc__.0.1','\"Extra large\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.settings.options.3.__assoc__.1.0','\"value\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.settings.options.3.__assoc__.1.1','\"text-xl\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.settings.options.3.__assoc__.2.0','\"default\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.settings.options.3.__assoc__.2.1','\"\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.translationKeyFormat','null'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.translationMethod','\"none\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.668a3788-1102-4bcf-9687-ca83a0a95500.type','\"craft\\\\fields\\\\Dropdown\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.674ed020-679c-47d4-b702-aa9f9d0810dd.columnSuffix','null'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.674ed020-679c-47d4-b702-aa9f9d0810dd.contentColumnType','\"text\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.674ed020-679c-47d4-b702-aa9f9d0810dd.fieldGroup','null'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.674ed020-679c-47d4-b702-aa9f9d0810dd.handle','\"text\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.674ed020-679c-47d4-b702-aa9f9d0810dd.instructions','\"This field uses markdown. You can see a markdown cheat sheet https://www.markdownguide.org/basic-syntax/. Markdown seems hard at first, but it is the cleanest way to offer flexibility to manage text fields that need some styling.\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.674ed020-679c-47d4-b702-aa9f9d0810dd.name','\"Text\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.674ed020-679c-47d4-b702-aa9f9d0810dd.searchable','false'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.674ed020-679c-47d4-b702-aa9f9d0810dd.settings.byteLimit','null'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.674ed020-679c-47d4-b702-aa9f9d0810dd.settings.charLimit','null'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.674ed020-679c-47d4-b702-aa9f9d0810dd.settings.code','\"\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.674ed020-679c-47d4-b702-aa9f9d0810dd.settings.columnType','null'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.674ed020-679c-47d4-b702-aa9f9d0810dd.settings.initialRows','\"4\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.674ed020-679c-47d4-b702-aa9f9d0810dd.settings.multiline','\"1\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.674ed020-679c-47d4-b702-aa9f9d0810dd.settings.placeholder','null'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.674ed020-679c-47d4-b702-aa9f9d0810dd.settings.uiMode','\"normal\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.674ed020-679c-47d4-b702-aa9f9d0810dd.translationKeyFormat','null'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.674ed020-679c-47d4-b702-aa9f9d0810dd.translationMethod','\"none\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.674ed020-679c-47d4-b702-aa9f9d0810dd.type','\"craft\\\\fields\\\\PlainText\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.columnSuffix','null'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.contentColumnType','\"string\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.fieldGroup','null'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.handle','\"textColour\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.instructions','\"\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.name','\"Text colour\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.searchable','false'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.settings.optgroups','true'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.settings.options.0.__assoc__.0.0','\"label\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.settings.options.0.__assoc__.0.1','\"Black\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.settings.options.0.__assoc__.1.0','\"value\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.settings.options.0.__assoc__.1.1','\"text-black\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.settings.options.0.__assoc__.2.0','\"default\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.settings.options.0.__assoc__.2.1','\"1\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.settings.options.1.__assoc__.0.0','\"label\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.settings.options.1.__assoc__.0.1','\"White\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.settings.options.1.__assoc__.1.0','\"value\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.settings.options.1.__assoc__.1.1','\"text-white\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.settings.options.1.__assoc__.2.0','\"default\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.settings.options.1.__assoc__.2.1','\"\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.settings.options.2.__assoc__.0.0','\"label\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.settings.options.2.__assoc__.0.1','\"Red\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.settings.options.2.__assoc__.1.0','\"value\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.settings.options.2.__assoc__.1.1','\"text-red\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.settings.options.2.__assoc__.2.0','\"default\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.settings.options.2.__assoc__.2.1','\"\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.settings.options.3.__assoc__.0.0','\"label\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.settings.options.3.__assoc__.0.1','\"Green\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.settings.options.3.__assoc__.1.0','\"value\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.settings.options.3.__assoc__.1.1','\"text-green\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.settings.options.3.__assoc__.2.0','\"default\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.settings.options.3.__assoc__.2.1','\"\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.translationKeyFormat','null'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.translationMethod','\"none\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.fields.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d.type','\"craft\\\\fields\\\\Dropdown\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.handle','\"text\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.name','\"Text\"'),('matrixBlockTypes.f5d467dc-d887-430b-ac23-9ab8f97a2321.sortOrder','2'),('meta.__names__.0598f256-b692-400e-ab10-a3abbe55e729','\"External link\"'),('meta.__names__.069a7d0a-be68-4833-9385-e2804d215d07','\"Company\"'),('meta.__names__.06c54559-a0bd-4b67-9fc8-80660f0c54f9','\"Privacy policy\"'),('meta.__names__.07b5b98c-b69c-4c6a-96c2-3812d50793da','\"Red background grid list\"'),('meta.__names__.086a93c7-a41d-43b4-a54f-921ef87da6ae','\"About us\"'),('meta.__names__.0900cdc7-fd64-4e21-add2-512c734998de','\"Interest income\"'),('meta.__names__.093b401e-620c-46a6-9868-44c5c118b7fc','\"Culture â How do you and your people think and behave at work?\"'),('meta.__names__.0a95ad86-a2ee-4a11-9a13-65c1f09f0df5','\"BG Feature hover image\"'),('meta.__names__.0b0d85f7-4358-42e8-9beb-96291582f0ef','\"Link\"'),('meta.__names__.0b66a65f-3e3d-40b8-b271-c462745f3c3f','\"Callout button text\"'),('meta.__names__.0bbcc717-57ca-4d29-b399-c400de0b3c74','\"Quote status\"'),('meta.__names__.0e8e2297-d68a-468e-b544-879164ce3c80','\"Opportunities â What can your brand achieve for your business/organisation?\"'),('meta.__names__.13610740-a1b4-444d-9e45-5610874d09cf','\"Outcomes â What needs to be done as a result of this audit?\"'),('meta.__names__.13c5a484-996f-4429-a612-5b251409ca6f','\"Spacer\"'),('meta.__names__.166692c6-ff38-4a39-9b37-b3b39ccbb191','\"Campaigns â What campaigns will tell your story and call people to action\"'),('meta.__names__.1691aec8-4743-44f9-a98b-885fa512cd5d','\"Client - media service fees (commission)\"'),('meta.__names__.1730f29f-dfa8-4229-867a-844a7a23c120','\"Lead text\"'),('meta.__names__.179540f3-7f8c-4c10-bb48-99fead63ee70','\"Section heading\"'),('meta.__names__.184a3cee-6b8f-43b2-a1c2-15e0920bc40a','\"Your brand stands for:\"'),('meta.__names__.184f942b-fb9d-48cd-baaa-612f5e9a18c0','\"Job status id\"'),('meta.__names__.197aad2d-e3a7-4594-82e2-5f317df1786e','\"Heading\"'),('meta.__names__.1bc6714f-5786-433d-b7dd-879fbc8767b7','\"Resource categories\"'),('meta.__names__.1dfaede0-905a-4132-a18f-104b40af2718','\"LinkedIn\"'),('meta.__names__.1e439968-7658-40fc-b32c-b180f0cf7dd6','\"Audits\"'),('meta.__names__.217aa381-87e0-4450-aff2-a051ada343b6','\"Text\"'),('meta.__names__.220d8796-98ec-428f-aa21-9f7faca714c1','\"Heading\"'),('meta.__names__.22448697-4341-4b80-bda7-9fc403a0f86a','\"Customers â Who does your brand exist to serve?\"'),('meta.__names__.23152e7a-37c2-41e9-9df3-9892c2a4a2f6','\"Text\"'),('meta.__names__.23642e4f-de6f-4254-877c-4007ee2aec3f','\"Net profit\"'),('meta.__names__.23b92378-5094-4e5b-9831-346803f914f0','\"NWO Staff\"'),('meta.__names__.24041ec2-da5f-4ff4-82b3-6aba2005647a','\"SEO Image\"'),('meta.__names__.24127c19-929c-4799-a4fc-addd0c9b8839','\"Link text\"'),('meta.__names__.241ab405-efc4-472d-a5a8-f23edb2ad1da','\"About Us Image\"'),('meta.__names__.251bd910-0905-4b47-a898-34ed6e7d587a','\"Job start date\"'),('meta.__names__.259b13de-40f8-49c1-8e5f-0fedf2ddefe3','\"Department\"'),('meta.__names__.2718313e-9a95-48a0-b8f2-d08ccd8f2323','\"Buttons\"'),('meta.__names__.27dedcaa-afc3-459d-83c3-18e8f90465d8','\"Section heading\"'),('meta.__names__.2a1ced72-67ce-4040-840f-35e2320e6440','\"Invoices\"'),('meta.__names__.2b0da6af-b729-4f32-8f99-6eb8dddc7424','\"Challenge\"'),('meta.__names__.2b13a963-ee44-4811-817d-abb9e3a5833b','\"Markets we compete in:\"'),('meta.__names__.2b60406c-5779-47b4-bfe7-7fbc8096df95','\"Users\"'),('meta.__names__.2cd59aa2-1868-419f-8385-f7dfbb2a9e0b','\"Full width heading and text\"'),('meta.__names__.2d326ffa-82ec-4671-87b5-b5c79c1ae26b','\"Less text\"'),('meta.__names__.2d747d18-dd10-42b6-9af7-e2a166985c9f','\"Articles\"'),('meta.__names__.2dd11b6c-8f0f-45ca-ba26-9ad3d1d670db','\"Update details\"'),('meta.__names__.2dd50c30-6391-406d-b248-13583fb7cf85','\"Grid items\"'),('meta.__names__.2e37c678-c8e7-4c06-9e32-bdebf9bc20dd','\"Quote finalised date\"'),('meta.__names__.2f7ba8f5-ccf1-403a-af0a-faa7fd49b841','\"More text\"'),('meta.__names__.31c9c26c-caa5-4dbe-8878-310224cc8712','\"Our visual branding needs to:\"'),('meta.__names__.34d088ed-ef16-496c-9634-85e5d8581aa0','\"Invoices\"'),('meta.__names__.35aed318-770b-43fa-962d-b399cb414533','\"Management fee\"'),('meta.__names__.35beece6-b6ea-44b2-adc6-bce32c1165de','\"Update details\"'),('meta.__names__.3628cf27-3ad7-4e27-9726-9a2cd25bef29','\"Heading colour\"'),('meta.__names__.370b7c67-675e-4aa3-b3a6-5d1700429c35','\"Text\"'),('meta.__names__.38294ab1-63f4-4f92-a2b3-a2b21100f2d6','\"Invoice ID (Workbook)\"'),('meta.__names__.38b64a4b-dfbd-4f5b-a1a7-a5e1d5dc6d5c','\"Our past:\"'),('meta.__names__.38bbf5f7-e29c-40bd-b218-155ad667ea9a','\"Grid items\"'),('meta.__names__.3989c2aa-8903-4a90-be5a-7ce7a8bd8113','\"Heading\"'),('meta.__names__.39b06f94-8ee0-4222-8a17-b527852aec1b','\"Videos\"'),('meta.__names__.39b88f8d-6448-4a93-ab67-54498561aae6','\"Audit user\"'),('meta.__names__.3a7a615c-5c19-4d35-bc53-13c7cfa59291','\"Image and text\"'),('meta.__names__.3a9b9e18-307c-4141-9d5d-6ffb8ff7be74','\"Reports\"'),('meta.__names__.3c4c718b-a839-4321-9287-6fa138fa90e9','\"Image\"'),('meta.__names__.3c72aff9-f829-44b4-9d47-b4c571d6607e','\"Callout text\"'),('meta.__names__.4065deaf-bfe6-4913-8ecf-ce7325eb4452','\"Dashboard\"'),('meta.__names__.40ae3e60-3464-41d0-bb64-32671fc7f5e9','\"Company\"'),('meta.__names__.40ca8672-9409-48d1-b0f8-0a728dcd8497','\"Links\"'),('meta.__names__.40e3cd37-08cd-446a-9032-b0b3087d2fb9','\"Existing materials include:\"'),('meta.__names__.415f2296-3b63-48a1-b5a2-8eb1154b94dd','\"Invoice total\"'),('meta.__names__.41b88cf5-a28a-4471-8fe0-f33496141d18','\"Heading left text right\"'),('meta.__names__.4233d145-1d79-49a5-931e-effdeec7d786','\"Introduction\"'),('meta.__names__.42f55576-0f06-49ff-bc18-627c979de526','\"SEO Image description\"'),('meta.__names__.43d21cba-9078-4e32-9e49-fa0d66991417','\"Accordion block\"'),('meta.__names__.45f624eb-f394-4fb8-a0f1-1bf9e8ebcc1e','\"Button URL\"'),('meta.__names__.4772b900-f086-421b-9298-9380f296a971','\"Featured work\"'),('meta.__names__.4c3b5ed6-52bc-439a-8a01-77b49f19abc9','\"Our future:\"'),('meta.__names__.4c837697-9892-435a-bb35-4cf13274c77e','\"Image\"'),('meta.__names__.4dbe6d3b-ba49-4a8d-a5c3-e83eebb3c207','\"Resource categories\"'),('meta.__names__.4ecf14fc-9c8a-4f62-b669-927408ddea33','\"Button text\"'),('meta.__names__.5085f403-52b3-4b38-b10c-4bff77776af1','\"Heading\"'),('meta.__names__.527a67b5-8e0e-46fc-8f16-537cebae9312','\"Heading\"'),('meta.__names__.53022aef-ff21-4e7f-970a-cb210544fb32','\"Background colour\"'),('meta.__names__.5307644b-cc96-4639-8586-e174e883f664','\"Text\"'),('meta.__names__.543fd936-b820-4ae9-93f7-e0577abe2fab','\"SEO Keywords\"'),('meta.__names__.5511d39d-a282-4557-8bf2-6a3c6f93bd15','\"People Navigation\"'),('meta.__names__.581f3b95-4fdd-4b29-a806-753edb34ee8c','\"Reports\"'),('meta.__names__.58300ceb-06bc-4d88-bb83-e9e90cbda3cd','\"Your brand is:\"'),('meta.__names__.5c172524-13c3-43d8-a0c0-45c25cf3fede','\"Text\"'),('meta.__names__.5df89179-62c7-4128-ba15-c49e9690a573','\"Service categories\"'),('meta.__names__.5e4c0541-d6b1-4fdf-9ee6-f2d35e158de3','\"Button image\"'),('meta.__names__.5e95989b-6f85-4379-aa15-ef9aa773b105','\"Heading\"'),('meta.__names__.5f5f0671-b681-4818-942e-b5b46842906c','\"Sector categories\"'),('meta.__names__.60ebe24e-8f1d-4a91-8758-cb4c9260c9ea','\"Miscellaneous income\"'),('meta.__names__.623b5dfa-9faa-4bff-8ba4-05003825dff6','\"Deliverables\"'),('meta.__names__.626f21db-f3f8-49c9-a099-c2416899ef4c','\"Highlight colour\"'),('meta.__names__.628d994f-ad6a-4dc8-a55d-d6611dfc364b','\"Email sigs\"'),('meta.__names__.63e3d1ea-0cba-42ce-934a-2f0c718081e5','\"Text grid\"'),('meta.__names__.6408d08c-b0b4-4b5b-823f-c0e500745591','\"Job price id\"'),('meta.__names__.6566ff95-a04d-47e8-b107-3d2222680acf','\"Callout button URL\"'),('meta.__names__.6683638f-50e1-4d95-9996-a6e6b3aabff9','\"Work\"'),('meta.__names__.668a3788-1102-4bcf-9687-ca83a0a95500','\"Text size\"'),('meta.__names__.674ed020-679c-47d4-b702-aa9f9d0810dd','\"Text\"'),('meta.__names__.67a8fc88-4afd-4f2a-a30e-29cf12e725c4','\"Work page\"'),('meta.__names__.67b36868-9b9f-4ac0-b5d2-6585f5876af2','\"Code output\"'),('meta.__names__.687c0549-de46-424f-8727-7b5546c11752','\"SEO Description\"'),('meta.__names__.69757833-f906-4261-bc37-340e59416a60','\"External link\"'),('meta.__names__.699dc9e3-e9f1-413a-9e92-bcb8082671ef','\"Privacy policy\"'),('meta.__names__.69e4dc6d-9a04-4461-a794-9f65af0b82a5','\"Update details copy\"'),('meta.__names__.6b5a81ec-42b1-4118-9fa5-8b6360723b30','\"Heading\"'),('meta.__names__.6bf3dbc1-ec4b-4a10-896f-37727eed41d0','\"Heading and text\"'),('meta.__names__.6c8a7226-ca63-4b58-afac-82141c809448','\"Heading\"'),('meta.__names__.6c95d4e7-93ce-402c-a1b9-684e2bf42065','\"Full width image\"'),('meta.__names__.6e255f23-a127-4ba3-aada-80c15787c41c','\"Our current brands and their place in the overall architecture:\"'),('meta.__names__.73446925-4ff5-472c-a475-71d853f84501','\"Question\"'),('meta.__names__.73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba','\"Sector categories\"'),('meta.__names__.747348e3-38bd-461d-b1ff-416c6764f72e','\"Heading\"'),('meta.__names__.7581d339-bf7d-428c-86b0-bdd628dfef2e','\"Careers\"'),('meta.__names__.75d393b8-1fa4-4ab6-9034-a9e3ffd1944e','\"Job\"'),('meta.__names__.76c09769-e160-4cff-b43f-81533d470637','\"Section heading\"'),('meta.__names__.770f3d77-08c1-4282-b12a-3c697292efa9','\"Section heading\"'),('meta.__names__.77c63b72-1a12-4ae0-8e77-1c8281529861','\"Logo\"'),('meta.__names__.78dae584-8470-46cf-9d9d-81753f0c8a47','\"Link text\"'),('meta.__names__.79eb82a7-865b-4011-9a91-56b285226a2d','\"Story\"'),('meta.__names__.7b0e68fa-80c5-4fc1-9936-d797141eb9df','\"Video grid\"'),('meta.__names__.7be6fff5-de42-48e7-8e63-20dcdf66967e','\"Transfer funds from NWO\"'),('meta.__names__.805eaf66-af57-453c-a73e-c4db8393b9eb','\"Monthly budget\"'),('meta.__names__.80fbe8fd-2c62-448d-ad9f-7a54ff848431','\"Jobs\"'),('meta.__names__.819e9bb3-711d-4ca1-aa03-f00b24f3b68a','\"Main Page Image\"'),('meta.__names__.82986907-d153-492e-b87b-4c7898ad9a45','\"Button style\"'),('meta.__names__.84123ace-0f1d-44e9-98cb-e3477880bdf2','\"Quote ID (Workbook)\"'),('meta.__names__.846db8d3-82f8-4432-92d2-39c6b7baa1b3','\"Reports\"'),('meta.__names__.848da9c8-54d6-4536-ba5a-d88c4e8f06f2','\"Tools â What collateral, tools and applications do you have/need?\"'),('meta.__names__.84d29012-402c-44d3-8599-938ab66e3b97','\"Quotes\"'),('meta.__names__.85ab7ac3-f71c-43d5-9d93-0c661816749f','\"Videos\"'),('meta.__names__.85f5f339-ed01-43a1-94b9-771aee87b786','\"Internal link\"'),('meta.__names__.862d1737-5597-46a1-b258-ff7ce4042cd3','\"Callout heading\"'),('meta.__names__.872244dc-f181-4b82-8df8-20a59d62654c','\"Headline\"'),('meta.__names__.87388b9a-25e4-4627-bf28-0312074ff5bd','\"Contact \"'),('meta.__names__.873ea5aa-dc28-4da2-b4ca-d8ec958b6638','\"Upload\"'),('meta.__names__.8901092b-9bbb-4611-8248-b4256a21515b','\"Ryder St - Rental income\"'),('meta.__names__.8adf4bb2-35da-47dc-b397-78ad436fafaf','\"Button text\"'),('meta.__names__.8d0c05a9-7304-4d7d-8254-106c8e855268','\"Total other income\"'),('meta.__names__.8df2b5cb-f0f5-47a2-b2b1-c77cbf1b2979','\"Height\"'),('meta.__names__.8fbcbc2d-119a-412d-97e8-fec9e88d9418','\"Logos\"'),('meta.__names__.90098b77-7cc0-440f-b64c-27d247c69b07','\"About us\"'),('meta.__names__.90cf930b-ef6f-426e-8c28-8187ff63ab71','\"Annual revenue target\"'),('meta.__names__.9256a612-e8fd-49c9-b167-0766caa328ae','\"Deliverable tags\"'),('meta.__names__.92c09e52-b844-43db-a6b2-fd92e20638b7','\"Section height\"'),('meta.__names__.949c24d0-491b-49e0-8802-dfed8158b301','\"Audits\"'),('meta.__names__.96713950-85e1-4428-8c0f-a77811771d67','\"Terms and conditions\"'),('meta.__names__.9c07c80e-a4f6-4e46-a7c2-e7d5839f2aea','\"Home fields\"'),('meta.__names__.9c8e3dce-6c96-444a-adc7-7a811e3e2422','\"Logo cloud\"'),('meta.__names__.9d09a28d-571e-4cd9-a199-2d3342cf815a','\"Video code\"'),('meta.__names__.9d14a3af-2493-422b-8fc8-60b496e17204','\"Video placeholder image\"'),('meta.__names__.9d16c38d-02f8-4ef4-9c55-897a45744518','\"Terms and conditions\"'),('meta.__names__.9ee799af-6ab1-42fb-94b3-a70acd370f9b','\"Videos\"'),('meta.__names__.a0c5cc5d-7235-4c9b-804b-23a836279f84','\"Buttons\"'),('meta.__names__.a0ddfe68-96f9-46b1-a989-31cbcde47626','\"Contact \"'),('meta.__names__.a172791e-53b7-44eb-b87b-ab304cd1588f','\"Accordion content\"'),('meta.__names__.a1f430b2-c028-4c12-9f6b-e150f70c1180','\"Promise â What can/should/do customers expect from you?\"'),('meta.__names__.a2199a45-7aa1-467d-a19c-76a79bb943a2','\"Text\"'),('meta.__names__.a28227a7-60b7-44a9-8bb3-cd123f79875e','\"Total income\"'),('meta.__names__.a2b9e04a-db16-44c3-95a7-6a037f194622','\"Title\"'),('meta.__names__.a3eaf7c8-edf3-45b3-a471-6fa0f26714a4','\"Home\"'),('meta.__names__.a401651e-3e05-4a6d-adf0-8019688b630a','\"SEO\"'),('meta.__names__.a51c75e9-07f7-42af-b360-cf8e55df3da3','\"External link\"'),('meta.__names__.a52e3a14-549c-4d8d-ac07-344f3ef99152','\"Purpose â Why does your brand exist?\"'),('meta.__names__.a5a982f3-8c85-4f6a-bc53-40ca9d61afbf','\"Flexible layout\"'),('meta.__names__.a649cddf-ac92-414a-8d24-cff4dcfeb45e','\"Articles\"'),('meta.__names__.a717fd1e-e201-40af-a6ad-93f6c3492eac','\"People grid\"'),('meta.__names__.a7b7b38d-f6b5-4bee-9df7-164e3e5516d9','\"Answer\"'),('meta.__names__.a8f8633d-52f9-4c47-b299-0eb6625cf341','\"Invoice headline\"'),('meta.__names__.a93becfb-6496-4b2f-93d5-cf2691ada3d7','\"Vizy Fields\"'),('meta.__names__.aa219c56-4619-45c0-ace9-c07d18e43d2f','\"Freeform Form\"'),('meta.__names__.aa7cd983-d717-4e90-bce8-4fafcb0c37aa','\"Questions\"'),('meta.__names__.ab0f389a-49ce-49a1-8ac5-e9b5a6d5f550','\"Text\"'),('meta.__names__.ac330e35-980d-4c71-9fd8-4c4edd58140b','\"Related team members\"'),('meta.__names__.ac4071b5-babb-4fdc-b080-3c0d83e33548','\"Global image\"'),('meta.__names__.aca77878-4bdc-4c0b-90a5-a7bdc826888c','\"Dashboard Globals\"'),('meta.__names__.afa15877-78bf-4b63-8526-70c324e0886b','\"Work\"'),('meta.__names__.afd1eab8-39ff-4942-9c34-eb8f18d0d991','\"SEO Global\"'),('meta.__names__.b0db5971-ba40-4f4c-852e-0e19540f2f4e','\"Invoice status\"'),('meta.__names__.b290a2bb-e7c0-444e-a198-911268436c94','\"Client tags\"'),('meta.__names__.b2e01efa-50e7-49b4-8c2c-33ec9581cb1b','\"Images\"'),('meta.__names__.b341277d-8bc1-411b-a87f-845f206f54b8','\"Internal link\"'),('meta.__names__.b4ffdba8-651f-4b6a-930e-be68fb926f28','\"Deliverable tags\"'),('meta.__names__.b7459780-8fb3-442d-a23b-15dd5d93cdeb','\"Biography\"'),('meta.__names__.b76e39f4-0e1a-4d62-8e53-12e86f7e7705','\"Related people\"'),('meta.__names__.b77c813f-b3a9-44ef-b3ba-0536e7b07c31','\"Client Name\"'),('meta.__names__.b78190de-5858-4b45-b26f-5df67ce780f9','\"Home\"'),('meta.__names__.b8b68166-cefa-4d7e-9ec0-9ed4e7246d28','\"Update details copy\"'),('meta.__names__.bd8711eb-5703-444d-a375-6c42404136d8','\"Job ID (Workbook)\"'),('meta.__names__.bef58c8d-9ae2-4638-b1b8-52a74de9326d','\"Section Heading\"'),('meta.__names__.befeea26-c25e-40e1-83f3-10a26b46af54','\"Optimised image\"'),('meta.__names__.c0dca123-dde4-44c4-ab97-10e1ebe80aee','\"Heading\"'),('meta.__names__.c1be37f3-ce5d-480f-9bcc-84281061c574','\"Default\"'),('meta.__names__.c2767866-99f0-4732-a314-d9167998c803','\"Related project\"'),('meta.__names__.c38e2159-46dc-46e1-bc98-42bfb5da312f','\"Common\"'),('meta.__names__.c4967892-52de-4701-96d6-2c2a06e6d47c','\"Voice â What does your brand sound like\"'),('meta.__names__.c4eb0e22-1cb4-48bf-93e9-2bc22719bd40','\"Values â What do you stand for and how do you operate?\"'),('meta.__names__.c617866b-d457-4084-ad7d-07b1ee8fca3e','\"Video code\"'),('meta.__names__.c6376f0f-5d56-4141-9432-c72576928262','\"Heading text\"'),('meta.__names__.c9806c08-39e9-4277-ba95-708404c27b4c','\"Section title\"'),('meta.__names__.ca583aae-f20e-44f7-889c-684e700e84f4','\"Quote probability\"'),('meta.__names__.ca64ab62-fc10-4034-9c0e-298f6ad47b21','\"Landing pages\"'),('meta.__names__.cafab2ca-5789-4f06-ad5d-6078f78fb5d9','\"Your people:\"'),('meta.__names__.cf34f699-cd72-4f21-8dc0-13f2a6d993ef','\"Media alignment\"'),('meta.__names__.cfd21061-ac1a-4fa4-adba-02a314e45cb2','\"Services categories\"'),('meta.__names__.d18bb60b-1374-45fc-9f7a-8836cba975c2','\"New needs include:\"'),('meta.__names__.d1b968be-6a38-4c3d-bc2e-67168feefab3','\"Text\"'),('meta.__names__.d1f7515c-43ef-4878-b92c-f8e25e4e21d2','\"Email sigs\"'),('meta.__names__.d3a8c8b6-f737-460c-81dc-9818db4a2627','\"Content builder\"'),('meta.__names__.d49f872f-4325-4ed2-b381-4eb04d0a576b','\"Homepage slideshow\"'),('meta.__names__.d4f97e13-677b-40d7-a802-929455984b64','\"SEO Title\"'),('meta.__names__.d545dd13-412a-49ee-9c3e-e4f359054850','\"Competitors:\"'),('meta.__names__.d6df2896-4499-43ee-97c1-0ff16e3072d0','\"Your customers:\"'),('meta.__names__.d73b1e0a-7e53-4ebb-b0e7-af18eb450e07','\"CTA Fields\"'),('meta.__names__.d7979c8a-d87b-409d-8c05-fa64e62b86b1','\"Budgets â If youâre completing this form outside of a commissioned project, and budgets and pricing are in your remit, what have you got allocated towards this work, roughly or specifically?\"'),('meta.__names__.da858be0-dc01-44ea-9fc5-f9c6848cc9af','\"Text builder\"'),('meta.__names__.dbbe7fd3-520b-4886-b77f-e0a7904f9c8d','\"Text colour\"'),('meta.__names__.dd515d4e-0208-4937-a527-6d49106e0848','\"NWO Starter\"'),('meta.__names__.dd7b1a59-c33e-465d-aa9a-46634169f8d6','\"Height\"'),('meta.__names__.dee3103c-72a1-4431-9401-9980ed81d1cd','\"Position\"'),('meta.__names__.e04edda4-4166-46d2-891a-1de94a6efe73','\"Video placeholder image\"'),('meta.__names__.e0bfd99a-993b-47d0-963d-ef7c179942bc','\"Job end date\"'),('meta.__names__.e4d4d511-380f-4c4a-b432-9296ba9d0bb2','\"Question\"'),('meta.__names__.e68f08fa-4e2a-4590-8cc5-07f7fa015bfb','\"Total operating expenses\"'),('meta.__names__.e6a934e5-14f7-4866-82bb-e3c114038533','\"Plain text\"'),('meta.__names__.e6b4c3f6-bdd0-48df-834f-892582227089','\"ATO Cash Flow Boost\"'),('meta.__names__.e752f760-0ca6-48e7-8efc-0453ac18ced7','\"Contemporaries - organisations similar to us or that we admire:\"'),('meta.__names__.e7ac7afe-110f-424b-8df7-cf443f223406','\"Show CTA\"'),('meta.__names__.e9f3bbb0-9ad3-4e9b-bd4e-820f20147dc6','\"Homepage slideshow\"'),('meta.__names__.ea79d3f5-08a1-4d12-a91d-4ada485b36ac','\"Client ID (Workbook)\"'),('meta.__names__.ebdab6d2-e5d6-44c1-ab5a-8e51460cbd66','\"Audits\"'),('meta.__names__.ed801c91-9db1-4e25-8880-7452aec486df','\"Quotes\"'),('meta.__names__.ef1558a2-4bac-4ea9-8c1e-3d4a432d72db','\"Links\"'),('meta.__names__.efe29d64-a5a8-4d37-a3c8-a1b7c7f5c580','\"Xero Reports\"'),('meta.__names__.f05a5cc5-d31f-45a1-9412-037b742553a8','\"Careers\"'),('meta.__names__.f1e93f83-edeb-49fc-be13-10e88d0e52e1','\"Customers (and their wants/needs) include:\"'),('meta.__names__.f2facc33-1ac4-4d0e-b0ea-3995063e5892','\"Image alignment\"'),('meta.__names__.f31d7621-e371-4c0e-ba64-e91d19fa4fcf','\"NWO Starter\"'),('meta.__names__.f362a4cd-9c43-453d-84e5-dc8d9efa0b9f','\"Internal link\"'),('meta.__names__.f43e2891-333d-49b3-a9db-3e8569344d15','\"Work\"'),('meta.__names__.f4eb2f46-8e77-46c1-97fe-2bdcdeb4c582','\"Rich text\"'),('meta.__names__.f5d467dc-d887-430b-ac23-9ab8f97a2321','\"Text\"'),('meta.__names__.f665cbb7-c2d1-48a1-a4e7-059b51337b56','\"Quoted amount\"'),('meta.__names__.f68e0fd0-2ad7-4416-b9d1-ae48f49e33d8','\"Total cost of sales\"'),('meta.__names__.f78040ea-09e5-4ebd-b1e2-e08df257a5da','\"Button colour\"'),('meta.__names__.f88d9485-eb10-492f-bce3-4fa0d28804b3','\"Heading size\"'),('meta.__names__.f9da4ffb-4690-4f0b-8f08-456b5e29ffc9','\"Heading\"'),('meta.__names__.f9f7ea29-3116-431c-b030-ca588113a389','\"Client tags\"'),('meta.__names__.fc33a64a-8bcf-4c5c-889a-426c4fa84f92','\"Public Schema\"'),('meta.__names__.fcfcedf6-24b6-4050-a9ca-21e4d7b5a8f4','\"Gross profit\"'),('meta.__names__.fd75f783-02b6-45db-b73f-348fd6a59016','\"Related user\"'),('meta.__names__.fe3d3e20-0b76-438f-af52-0b90f4cf6099','\"Text colour\"'),('meta.__names__.ffe371e5-6f1c-4f7e-8c29-3b53a7b68c9c','\"Layout builder\"'),('oauthClient.apps.efe29d64-a5a8-4d37-a3c8-a1b7c7f5c580.clientId','\"$XEROCLIENT\"'),('oauthClient.apps.efe29d64-a5a8-4d37-a3c8-a1b7c7f5c580.clientSecret','\"$XEROSECRET\"'),('oauthClient.apps.efe29d64-a5a8-4d37-a3c8-a1b7c7f5c580.handle','\"xeroReports\"'),('oauthClient.apps.efe29d64-a5a8-4d37-a3c8-a1b7c7f5c580.name','\"Xero Reports\"'),('oauthClient.apps.efe29d64-a5a8-4d37-a3c8-a1b7c7f5c580.provider','\"modules\\\\xeroreportsmodule\\\\xeroProvider\"'),('oauthClient.apps.efe29d64-a5a8-4d37-a3c8-a1b7c7f5c580.scopes','\"openid,email,profile,offline_access,accounting.reports.read\"'),('oauthClient.apps.efe29d64-a5a8-4d37-a3c8-a1b7c7f5c580.urlAuthorize','\"https://login.xero.com/identity/connect/authorize\"'),('plugins.api2pdf.edition','\"standard\"'),('plugins.api2pdf.enabled','true'),('plugins.api2pdf.schemaVersion','\"0.1.0\"'),('plugins.api2pdf.settings.apiKey','\"$API2PDF\"'),('plugins.blitz.edition','\"standard\"'),('plugins.blitz.enabled','true'),('plugins.blitz.licenseKey','\"8BF7PTS70B7U2EKLGO89W52X\"'),('plugins.blitz.schemaVersion','\"4.2.0\"'),('plugins.blitz.settings.apiKey','\"\"'),('plugins.blitz.settings.cacheControlHeader','\"public, s-maxage=31536000, max-age=0\"'),('plugins.blitz.settings.cacheDuration','null'),('plugins.blitz.settings.cacheElementQueries','true'),('plugins.blitz.settings.cacheElements','true'),('plugins.blitz.settings.cacheGeneratorSettings.__assoc__.0.0','\"concurrency\"'),('plugins.blitz.settings.cacheGeneratorSettings.__assoc__.0.1','\"3\"'),('plugins.blitz.settings.cacheGeneratorType','\"putyourlightson\\\\blitz\\\\drivers\\\\generators\\\\HttpGenerator\"'),('plugins.blitz.settings.cacheNonHtmlResponses','false'),('plugins.blitz.settings.cachePurgerType','\"putyourlightson\\\\blitz\\\\drivers\\\\purgers\\\\DummyPurger\"'),('plugins.blitz.settings.cacheStorageSettings.__assoc__.0.0','\"folderPath\"'),('plugins.blitz.settings.cacheStorageSettings.__assoc__.0.1','\"@webroot/cache/blitz\"'),('plugins.blitz.settings.cacheStorageSettings.__assoc__.1.0','\"createGzipFiles\"'),('plugins.blitz.settings.cacheStorageSettings.__assoc__.1.1','\"\"'),('plugins.blitz.settings.cacheStorageSettings.__assoc__.2.0','\"createBrotliFiles\"'),('plugins.blitz.settings.cacheStorageSettings.__assoc__.2.1','\"\"'),('plugins.blitz.settings.cacheStorageType','\"putyourlightson\\\\blitz\\\\drivers\\\\storage\\\\FileStorage\"'),('plugins.blitz.settings.cachingEnabled','false'),('plugins.blitz.settings.debug','false'),('plugins.blitz.settings.deployerType','\"putyourlightson\\\\blitz\\\\drivers\\\\deployers\\\\DummyDeployer\"'),('plugins.blitz.settings.driverJobPriority','100'),('plugins.blitz.settings.excludedQueryStringParams.0.__assoc__.0.0','\"queryStringParam\"'),('plugins.blitz.settings.excludedQueryStringParams.0.__assoc__.0.1','\"gclid\"'),('plugins.blitz.settings.excludedQueryStringParams.1.__assoc__.0.0','\"queryStringParam\"'),('plugins.blitz.settings.excludedQueryStringParams.1.__assoc__.0.1','\"fbclid\"'),('plugins.blitz.settings.generatePagesWithQueryStringParams','true'),('plugins.blitz.settings.hintsEnabled','true'),('plugins.blitz.settings.includedQueryStringParams.0.__assoc__.0.0','\"queryStringParam\"'),('plugins.blitz.settings.includedQueryStringParams.0.__assoc__.0.1','\".*\"'),('plugins.blitz.settings.includedUriPatterns.1.__assoc__.0.0','\"uriPattern\"'),('plugins.blitz.settings.includedUriPatterns.1.__assoc__.0.1','\"\"'),('plugins.blitz.settings.includedUriPatterns.2.__assoc__.0.0','\"uriPattern\"'),('plugins.blitz.settings.includedUriPatterns.2.__assoc__.0.1','\"/about\"'),('plugins.blitz.settings.includedUriPatterns.3.__assoc__.0.0','\"uriPattern\"'),('plugins.blitz.settings.includedUriPatterns.3.__assoc__.0.1','\"/people/\"'),('plugins.blitz.settings.includedUriPatterns.4.__assoc__.0.0','\"uriPattern\"'),('plugins.blitz.settings.includedUriPatterns.4.__assoc__.0.1','\"people\"'),('plugins.blitz.settings.includedUriPatterns.5.__assoc__.0.0','\"uriPattern\"'),('plugins.blitz.settings.includedUriPatterns.5.__assoc__.0.1','\"work\"'),('plugins.blitz.settings.injectScriptEvent','\"DOMContentLoaded\"'),('plugins.blitz.settings.integrations.0','\"putyourlightson\\\\blitz\\\\drivers\\\\integrations\\\\CommerceIntegration\"'),('plugins.blitz.settings.integrations.1','\"putyourlightson\\\\blitz\\\\drivers\\\\integrations\\\\FeedMeIntegration\"'),('plugins.blitz.settings.integrations.2','\"putyourlightson\\\\blitz\\\\drivers\\\\integrations\\\\SeomaticIntegration\"'),('plugins.blitz.settings.maxRetryAttempts','10'),('plugins.blitz.settings.mutexTimeout','1'),('plugins.blitz.settings.outputComments','true'),('plugins.blitz.settings.queryStringCaching','0'),('plugins.blitz.settings.queueJobTtr','300'),('plugins.blitz.settings.refreshCacheAutomaticallyForGlobals','true'),('plugins.blitz.settings.refreshCacheJobPriority','10'),('plugins.blitz.settings.refreshCacheWhenElementMovedInStructure','true'),('plugins.blitz.settings.refreshCacheWhenElementSavedNotLive','false'),('plugins.blitz.settings.refreshCacheWhenElementSavedUnchanged','false'),('plugins.blitz.settings.refreshMode','3'),('plugins.blitz.settings.sendPoweredByHeader','true'),('plugins.dospaces.edition','\"standard\"'),('plugins.dospaces.enabled','true'),('plugins.dospaces.schemaVersion','\"2.0.0\"'),('plugins.feed-me.edition','\"standard\"'),('plugins.feed-me.enabled','true'),('plugins.feed-me.schemaVersion','\"4.4.0\"'),('plugins.freeform.edition','\"pro\"'),('plugins.freeform.enabled','true'),('plugins.freeform.licenseKey','\"QD3H0TJ7VD2FBTOSE39S4XIN\"'),('plugins.freeform.schemaVersion','\"4.2.2\"'),('plugins.freeform.settings.ajaxByDefault','true'),('plugins.freeform.settings.alertNotificationRecipients','\"\"'),('plugins.freeform.settings.autoScroll','true'),('plugins.freeform.settings.autoScrollToErrors','true'),('plugins.freeform.settings.badgeType','\"all\"'),('plugins.freeform.settings.blockedEmails','null'),('plugins.freeform.settings.blockedEmailsError','\"Invalid Email Address\"'),('plugins.freeform.settings.blockedIpAddresses','null'),('plugins.freeform.settings.blockedKeywords','null'),('plugins.freeform.settings.blockedKeywordsError','\"Invalid Entry Data\"'),('plugins.freeform.settings.bypassSpamCheckOnLoggedInUsers','false'),('plugins.freeform.settings.clientDigestFrequency','1'),('plugins.freeform.settings.clientDigestRecipients','\"\"'),('plugins.freeform.settings.customErrorMessage','null'),('plugins.freeform.settings.customHoneypotName','null'),('plugins.freeform.settings.defaultTemplates','true'),('plugins.freeform.settings.defaultView','\"dashboard\"'),('plugins.freeform.settings.digestFrequency','1'),('plugins.freeform.settings.digestOnlyOnProduction','false'),('plugins.freeform.settings.digestRecipients','\"\"'),('plugins.freeform.settings.displayFeed','true'),('plugins.freeform.settings.emailTemplateDirectory','null'),('plugins.freeform.settings.exportLabels','false'),('plugins.freeform.settings.fieldDisplayOrder','\"name\"'),('plugins.freeform.settings.fillWithGet','false'),('plugins.freeform.settings.footerScripts','false'),('plugins.freeform.settings.formattingTemplate','\"tailwind-1.twig\"'),('plugins.freeform.settings.formFieldShowOnlyAllowedForms','false'),('plugins.freeform.settings.formSubmitDisable','true'),('plugins.freeform.settings.formSubmitExpiration','null'),('plugins.freeform.settings.formTemplateDirectory','\"_freeformTemplates\"'),('plugins.freeform.settings.freeformHoneypot','true'),('plugins.freeform.settings.freeformHoneypotEnhancement','false'),('plugins.freeform.settings.hideBannerDemo','false'),('plugins.freeform.settings.hideBannerOldFreeform','false'),('plugins.freeform.settings.minimumSubmitTime','null'),('plugins.freeform.settings.pluginName','\"\"'),('plugins.freeform.settings.purgableSpamAgeInDays','null'),('plugins.freeform.settings.purgableSubmissionAgeInDays','null'),('plugins.freeform.settings.purgableUnfinalizedAssetAgeInMinutes','180'),('plugins.freeform.settings.recaptchaBehaviour','\"display_error\"'),('plugins.freeform.settings.recaptchaEnabled','\"1\"'),('plugins.freeform.settings.recaptchaErrorMessage','\"Please verify that you are not a robot.\"'),('plugins.freeform.settings.recaptchaKey','\"$RECAPTCHA_SITE_KEY\"'),('plugins.freeform.settings.recaptchaLazyLoad','\"\"'),('plugins.freeform.settings.recaptchaMinScore','\"0.5\"'),('plugins.freeform.settings.recaptchaSecret','\"$RECAPTCAH_SECRET_KEY\"'),('plugins.freeform.settings.recaptchaSize','\"normal\"'),('plugins.freeform.settings.recaptchaTheme','\"light\"'),('plugins.freeform.settings.recaptchaType','\"v3\"'),('plugins.freeform.settings.rememberPageSubmitOrder','true'),('plugins.freeform.settings.removeNewlines','false'),('plugins.freeform.settings.renderFormHtmlInCpViews','true'),('plugins.freeform.settings.salesforce_client_id','null'),('plugins.freeform.settings.salesforce_client_secret','null'),('plugins.freeform.settings.salesforce_password','null'),('plugins.freeform.settings.salesforce_username','null'),('plugins.freeform.settings.saveFormSessionLimit','10'),('plugins.freeform.settings.saveFormTtl','30'),('plugins.freeform.settings.scriptInsertLocation','\"footer\"'),('plugins.freeform.settings.scriptInsertType','\"pointers\"'),('plugins.freeform.settings.sessionContext','\"payload\"'),('plugins.freeform.settings.sessionContextCount','100'),('plugins.freeform.settings.sessionContextSecret','\"\"'),('plugins.freeform.settings.sessionContextTimeToLiveMinutes','180'),('plugins.freeform.settings.sessionEntryMaxCount','50'),('plugins.freeform.settings.sessionEntryTTL','10800'),('plugins.freeform.settings.showErrorsForBlockedEmails','false'),('plugins.freeform.settings.showErrorsForBlockedKeywords','false'),('plugins.freeform.settings.showTutorial','false'),('plugins.freeform.settings.spamFolderEnabled','true'),('plugins.freeform.settings.spamProtectionBehaviour','\"simulate_success\"'),('plugins.freeform.settings.submissionThrottlingCount','null'),('plugins.freeform.settings.submissionThrottlingTimeFrame','null'),('plugins.freeform.settings.successTemplateDirectory','null'),('plugins.freeform.settings.twigInHtml','true'),('plugins.freeform.settings.twigInHtmlIsolatedMode','true'),('plugins.freeform.settings.updateSearchIndexes','true'),('plugins.image-optimize.edition','\"standard\"'),('plugins.image-optimize.enabled','true'),('plugins.image-optimize.licenseKey','\"1FEJX79C9J2R6HWK7SG9VOAF\"'),('plugins.image-optimize.schemaVersion','\"1.0.0\"'),('plugins.image-optimize.settings.allowUpScaledImageVariants','false'),('plugins.image-optimize.settings.assetVolumeSubFolders','true'),('plugins.image-optimize.settings.autoSharpenScaledImages','true'),('plugins.image-optimize.settings.capSilhouetteSvgSize','true'),('plugins.image-optimize.settings.createColorPalette','true'),('plugins.image-optimize.settings.createPlaceholderSilhouettes','false'),('plugins.image-optimize.settings.imageTransformTypeSettings.__assoc__.0.0','\"nystudio107\\\\imageoptimizeimgix\\\\imagetransforms\\\\ImgixImageTransform\"'),('plugins.image-optimize.settings.imageTransformTypeSettings.__assoc__.0.1.__assoc__.0.0','\"domain\"'),('plugins.image-optimize.settings.imageTransformTypeSettings.__assoc__.0.1.__assoc__.0.1','\"\"'),('plugins.image-optimize.settings.imageTransformTypeSettings.__assoc__.0.1.__assoc__.1.0','\"apiKey\"'),('plugins.image-optimize.settings.imageTransformTypeSettings.__assoc__.0.1.__assoc__.1.1','\"\"'),('plugins.image-optimize.settings.imageTransformTypeSettings.__assoc__.0.1.__assoc__.2.0','\"securityToken\"'),('plugins.image-optimize.settings.imageTransformTypeSettings.__assoc__.0.1.__assoc__.2.1','\"\"'),('plugins.image-optimize.settings.imageTransformTypeSettings.__assoc__.0.1.__assoc__.3.0','\"unsharpMask\"'),('plugins.image-optimize.settings.imageTransformTypeSettings.__assoc__.0.1.__assoc__.3.1','\"20\"'),('plugins.image-optimize.settings.imageTransformTypeSettings.__assoc__.1.0','\"nystudio107\\\\imageoptimizesharp\\\\imagetransforms\\\\SharpImageTransform\"'),('plugins.image-optimize.settings.imageTransformTypeSettings.__assoc__.1.1.__assoc__.0.0','\"baseUrl\"'),('plugins.image-optimize.settings.imageTransformTypeSettings.__assoc__.1.1.__assoc__.0.1','\"\"'),('plugins.image-optimize.settings.imageTransformTypeSettings.__assoc__.2.0','\"nystudio107\\\\imageoptimizethumbor\\\\imagetransforms\\\\ThumborImageTransform\"'),('plugins.image-optimize.settings.imageTransformTypeSettings.__assoc__.2.1.__assoc__.0.0','\"baseUrl\"'),('plugins.image-optimize.settings.imageTransformTypeSettings.__assoc__.2.1.__assoc__.0.1','\"\"'),('plugins.image-optimize.settings.imageTransformTypeSettings.__assoc__.2.1.__assoc__.1.0','\"securityKey\"'),('plugins.image-optimize.settings.imageTransformTypeSettings.__assoc__.2.1.__assoc__.1.1','\"\"'),('plugins.image-optimize.settings.lowerQualityRetinaImageVariants','false'),('plugins.image-optimize.settings.sharpenScaledImagePercentage','50'),('plugins.image-optimize.settings.transformClass','\"nystudio107\\\\imageoptimize\\\\imagetransforms\\\\CraftImageTransform\"'),('plugins.manytomany.edition','\"standard\"'),('plugins.manytomany.enabled','true'),('plugins.manytomany.schemaVersion','\"1.0.2\"'),('plugins.redactor.edition','\"standard\"'),('plugins.redactor.enabled','true'),('plugins.redactor.schemaVersion','\"2.3.0\"'),('plugins.seomatic.edition','\"standard\"'),('plugins.seomatic.enabled','true'),('plugins.seomatic.licenseKey','\"F7MGFY7IKCVILV08RRNXEO7I\"'),('plugins.seomatic.schemaVersion','\"3.0.11\"'),('plugins.sprig.edition','\"standard\"'),('plugins.sprig.enabled','true'),('plugins.sprig.schemaVersion','\"1.0.1\"'),('plugins.super-table.edition','\"standard\"'),('plugins.super-table.enabled','true'),('plugins.super-table.schemaVersion','\"3.0.0\"'),('plugins.vizy.edition','\"standard\"'),('plugins.vizy.enabled','true'),('plugins.vizy.licenseKey','\"VRH8BPL5J75NW4AERYOASC5Q\"'),('plugins.vizy.schemaVersion','\"0.9.0\"'),('routes.18a7788e-347e-43b1-8274-e7295c7354f3.siteUid','null'),('routes.18a7788e-347e-43b1-8274-e7295c7354f3.sortOrder','1'),('routes.18a7788e-347e-43b1-8274-e7295c7354f3.template','\"people/_entry\"'),('routes.18a7788e-347e-43b1-8274-e7295c7354f3.uriParts.0','\"people/\"'),('routes.18a7788e-347e-43b1-8274-e7295c7354f3.uriParts.1.0','\"slug\"'),('routes.18a7788e-347e-43b1-8274-e7295c7354f3.uriParts.1.1','\"[^\\\\/]+\"'),('routes.18a7788e-347e-43b1-8274-e7295c7354f3.uriPattern','\"people/<slug:[^\\\\/]+>\"'),('routes.21f3ba6d-b54b-40dd-9758-bb92d4f7d76f.siteUid','null'),('routes.21f3ba6d-b54b-40dd-9758-bb92d4f7d76f.sortOrder','2'),('routes.21f3ba6d-b54b-40dd-9758-bb92d4f7d76f.template','\"user/login\"'),('routes.21f3ba6d-b54b-40dd-9758-bb92d4f7d76f.uriParts.0','\"user/login\"'),('routes.21f3ba6d-b54b-40dd-9758-bb92d4f7d76f.uriPattern','\"user/login\"'),('sections.06c54559-a0bd-4b67-9fc8-80660f0c54f9.defaultPlacement','\"end\"'),('sections.06c54559-a0bd-4b67-9fc8-80660f0c54f9.enableVersioning','true'),('sections.06c54559-a0bd-4b67-9fc8-80660f0c54f9.handle','\"privacyPolicy\"'),('sections.06c54559-a0bd-4b67-9fc8-80660f0c54f9.name','\"Privacy policy\"'),('sections.06c54559-a0bd-4b67-9fc8-80660f0c54f9.previewTargets.0.__assoc__.0.0','\"label\"'),('sections.06c54559-a0bd-4b67-9fc8-80660f0c54f9.previewTargets.0.__assoc__.0.1','\"Primary entry page\"'),('sections.06c54559-a0bd-4b67-9fc8-80660f0c54f9.previewTargets.0.__assoc__.1.0','\"urlFormat\"'),('sections.06c54559-a0bd-4b67-9fc8-80660f0c54f9.previewTargets.0.__assoc__.1.1','\"{url}\"'),('sections.06c54559-a0bd-4b67-9fc8-80660f0c54f9.previewTargets.0.__assoc__.2.0','\"refresh\"'),('sections.06c54559-a0bd-4b67-9fc8-80660f0c54f9.previewTargets.0.__assoc__.2.1','\"1\"'),('sections.06c54559-a0bd-4b67-9fc8-80660f0c54f9.propagationMethod','\"all\"'),('sections.06c54559-a0bd-4b67-9fc8-80660f0c54f9.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.enabledByDefault','true'),('sections.06c54559-a0bd-4b67-9fc8-80660f0c54f9.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.hasUrls','true'),('sections.06c54559-a0bd-4b67-9fc8-80660f0c54f9.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.template','\"privacy-policy/_entry\"'),('sections.06c54559-a0bd-4b67-9fc8-80660f0c54f9.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.uriFormat','\"privacy-policy\"'),('sections.06c54559-a0bd-4b67-9fc8-80660f0c54f9.type','\"single\"'),('sections.1e439968-7658-40fc-b32c-b180f0cf7dd6.defaultPlacement','\"end\"'),('sections.1e439968-7658-40fc-b32c-b180f0cf7dd6.enableVersioning','true'),('sections.1e439968-7658-40fc-b32c-b180f0cf7dd6.handle','\"audits\"'),('sections.1e439968-7658-40fc-b32c-b180f0cf7dd6.name','\"Audits\"'),('sections.1e439968-7658-40fc-b32c-b180f0cf7dd6.previewTargets.0.__assoc__.0.0','\"label\"'),('sections.1e439968-7658-40fc-b32c-b180f0cf7dd6.previewTargets.0.__assoc__.0.1','\"Primary entry page\"'),('sections.1e439968-7658-40fc-b32c-b180f0cf7dd6.previewTargets.0.__assoc__.1.0','\"urlFormat\"'),('sections.1e439968-7658-40fc-b32c-b180f0cf7dd6.previewTargets.0.__assoc__.1.1','\"{url}\"'),('sections.1e439968-7658-40fc-b32c-b180f0cf7dd6.previewTargets.0.__assoc__.2.0','\"refresh\"'),('sections.1e439968-7658-40fc-b32c-b180f0cf7dd6.previewTargets.0.__assoc__.2.1','\"1\"'),('sections.1e439968-7658-40fc-b32c-b180f0cf7dd6.propagationMethod','\"all\"'),('sections.1e439968-7658-40fc-b32c-b180f0cf7dd6.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.enabledByDefault','true'),('sections.1e439968-7658-40fc-b32c-b180f0cf7dd6.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.hasUrls','true'),('sections.1e439968-7658-40fc-b32c-b180f0cf7dd6.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.template','\"brandaudit/form\"'),('sections.1e439968-7658-40fc-b32c-b180f0cf7dd6.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.uriFormat','\"brandaudit/{slug}\"'),('sections.1e439968-7658-40fc-b32c-b180f0cf7dd6.type','\"channel\"'),('sections.2dd11b6c-8f0f-45ca-ba26-9ad3d1d670db.defaultPlacement','\"end\"'),('sections.2dd11b6c-8f0f-45ca-ba26-9ad3d1d670db.enableVersioning','true'),('sections.2dd11b6c-8f0f-45ca-ba26-9ad3d1d670db.handle','\"updateDetails\"'),('sections.2dd11b6c-8f0f-45ca-ba26-9ad3d1d670db.name','\"Update details\"'),('sections.2dd11b6c-8f0f-45ca-ba26-9ad3d1d670db.previewTargets.0.__assoc__.0.0','\"label\"'),('sections.2dd11b6c-8f0f-45ca-ba26-9ad3d1d670db.previewTargets.0.__assoc__.0.1','\"Primary entry page\"'),('sections.2dd11b6c-8f0f-45ca-ba26-9ad3d1d670db.previewTargets.0.__assoc__.1.0','\"urlFormat\"'),('sections.2dd11b6c-8f0f-45ca-ba26-9ad3d1d670db.previewTargets.0.__assoc__.1.1','\"{url}\"'),('sections.2dd11b6c-8f0f-45ca-ba26-9ad3d1d670db.previewTargets.0.__assoc__.2.0','\"refresh\"'),('sections.2dd11b6c-8f0f-45ca-ba26-9ad3d1d670db.previewTargets.0.__assoc__.2.1','\"1\"'),('sections.2dd11b6c-8f0f-45ca-ba26-9ad3d1d670db.propagationMethod','\"all\"'),('sections.2dd11b6c-8f0f-45ca-ba26-9ad3d1d670db.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.enabledByDefault','true'),('sections.2dd11b6c-8f0f-45ca-ba26-9ad3d1d670db.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.hasUrls','true'),('sections.2dd11b6c-8f0f-45ca-ba26-9ad3d1d670db.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.template','\"update-details/_entry\"'),('sections.2dd11b6c-8f0f-45ca-ba26-9ad3d1d670db.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.uriFormat','\"update-details\"'),('sections.2dd11b6c-8f0f-45ca-ba26-9ad3d1d670db.type','\"single\"'),('sections.628d994f-ad6a-4dc8-a55d-d6611dfc364b.defaultPlacement','\"end\"'),('sections.628d994f-ad6a-4dc8-a55d-d6611dfc364b.enableVersioning','true'),('sections.628d994f-ad6a-4dc8-a55d-d6611dfc364b.handle','\"emailSigs\"'),('sections.628d994f-ad6a-4dc8-a55d-d6611dfc364b.name','\"Email sigs\"'),('sections.628d994f-ad6a-4dc8-a55d-d6611dfc364b.previewTargets.0.__assoc__.0.0','\"label\"'),('sections.628d994f-ad6a-4dc8-a55d-d6611dfc364b.previewTargets.0.__assoc__.0.1','\"Primary entry page\"'),('sections.628d994f-ad6a-4dc8-a55d-d6611dfc364b.previewTargets.0.__assoc__.1.0','\"urlFormat\"'),('sections.628d994f-ad6a-4dc8-a55d-d6611dfc364b.previewTargets.0.__assoc__.1.1','\"{url}\"'),('sections.628d994f-ad6a-4dc8-a55d-d6611dfc364b.previewTargets.0.__assoc__.2.0','\"refresh\"'),('sections.628d994f-ad6a-4dc8-a55d-d6611dfc364b.previewTargets.0.__assoc__.2.1','\"1\"'),('sections.628d994f-ad6a-4dc8-a55d-d6611dfc364b.propagationMethod','\"all\"'),('sections.628d994f-ad6a-4dc8-a55d-d6611dfc364b.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.enabledByDefault','true'),('sections.628d994f-ad6a-4dc8-a55d-d6611dfc364b.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.hasUrls','true'),('sections.628d994f-ad6a-4dc8-a55d-d6611dfc364b.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.template','\"email-signatures/_entry\"'),('sections.628d994f-ad6a-4dc8-a55d-d6611dfc364b.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.uriFormat','\"email-sigs\"'),('sections.628d994f-ad6a-4dc8-a55d-d6611dfc364b.type','\"single\"'),('sections.6683638f-50e1-4d95-9996-a6e6b3aabff9.defaultPlacement','\"end\"'),('sections.6683638f-50e1-4d95-9996-a6e6b3aabff9.enableVersioning','true'),('sections.6683638f-50e1-4d95-9996-a6e6b3aabff9.handle','\"work\"'),('sections.6683638f-50e1-4d95-9996-a6e6b3aabff9.name','\"Work\"'),('sections.6683638f-50e1-4d95-9996-a6e6b3aabff9.previewTargets.0.__assoc__.0.0','\"label\"'),('sections.6683638f-50e1-4d95-9996-a6e6b3aabff9.previewTargets.0.__assoc__.0.1','\"Primary entry page\"'),('sections.6683638f-50e1-4d95-9996-a6e6b3aabff9.previewTargets.0.__assoc__.1.0','\"urlFormat\"'),('sections.6683638f-50e1-4d95-9996-a6e6b3aabff9.previewTargets.0.__assoc__.1.1','\"{url}\"'),('sections.6683638f-50e1-4d95-9996-a6e6b3aabff9.previewTargets.0.__assoc__.2.0','\"refresh\"'),('sections.6683638f-50e1-4d95-9996-a6e6b3aabff9.previewTargets.0.__assoc__.2.1','\"1\"'),('sections.6683638f-50e1-4d95-9996-a6e6b3aabff9.propagationMethod','\"all\"'),('sections.6683638f-50e1-4d95-9996-a6e6b3aabff9.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.enabledByDefault','true'),('sections.6683638f-50e1-4d95-9996-a6e6b3aabff9.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.hasUrls','true'),('sections.6683638f-50e1-4d95-9996-a6e6b3aabff9.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.template','\"work/_entry\"'),('sections.6683638f-50e1-4d95-9996-a6e6b3aabff9.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.uriFormat','\"work/{slug}\"'),('sections.6683638f-50e1-4d95-9996-a6e6b3aabff9.type','\"channel\"'),('sections.69e4dc6d-9a04-4461-a794-9f65af0b82a5.defaultPlacement','\"end\"'),('sections.69e4dc6d-9a04-4461-a794-9f65af0b82a5.enableVersioning','true'),('sections.69e4dc6d-9a04-4461-a794-9f65af0b82a5.handle','\"updateDetailsCopy\"'),('sections.69e4dc6d-9a04-4461-a794-9f65af0b82a5.name','\"Update details copy\"'),('sections.69e4dc6d-9a04-4461-a794-9f65af0b82a5.previewTargets.0.__assoc__.0.0','\"label\"'),('sections.69e4dc6d-9a04-4461-a794-9f65af0b82a5.previewTargets.0.__assoc__.0.1','\"Primary entry page\"'),('sections.69e4dc6d-9a04-4461-a794-9f65af0b82a5.previewTargets.0.__assoc__.1.0','\"urlFormat\"'),('sections.69e4dc6d-9a04-4461-a794-9f65af0b82a5.previewTargets.0.__assoc__.1.1','\"{url}\"'),('sections.69e4dc6d-9a04-4461-a794-9f65af0b82a5.previewTargets.0.__assoc__.2.0','\"refresh\"'),('sections.69e4dc6d-9a04-4461-a794-9f65af0b82a5.previewTargets.0.__assoc__.2.1','\"1\"'),('sections.69e4dc6d-9a04-4461-a794-9f65af0b82a5.propagationMethod','\"all\"'),('sections.69e4dc6d-9a04-4461-a794-9f65af0b82a5.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.enabledByDefault','true'),('sections.69e4dc6d-9a04-4461-a794-9f65af0b82a5.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.hasUrls','true'),('sections.69e4dc6d-9a04-4461-a794-9f65af0b82a5.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.template','\"update-details/_entry\"'),('sections.69e4dc6d-9a04-4461-a794-9f65af0b82a5.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.uriFormat','\"update-details-copy\"'),('sections.69e4dc6d-9a04-4461-a794-9f65af0b82a5.type','\"single\"'),('sections.846db8d3-82f8-4432-92d2-39c6b7baa1b3.defaultPlacement','\"end\"'),('sections.846db8d3-82f8-4432-92d2-39c6b7baa1b3.enableVersioning','true'),('sections.846db8d3-82f8-4432-92d2-39c6b7baa1b3.handle','\"reports\"'),('sections.846db8d3-82f8-4432-92d2-39c6b7baa1b3.name','\"Reports\"'),('sections.846db8d3-82f8-4432-92d2-39c6b7baa1b3.previewTargets.0.__assoc__.0.0','\"label\"'),('sections.846db8d3-82f8-4432-92d2-39c6b7baa1b3.previewTargets.0.__assoc__.0.1','\"Primary entry page\"'),('sections.846db8d3-82f8-4432-92d2-39c6b7baa1b3.previewTargets.0.__assoc__.1.0','\"urlFormat\"'),('sections.846db8d3-82f8-4432-92d2-39c6b7baa1b3.previewTargets.0.__assoc__.1.1','\"{url}\"'),('sections.846db8d3-82f8-4432-92d2-39c6b7baa1b3.previewTargets.0.__assoc__.2.0','\"refresh\"'),('sections.846db8d3-82f8-4432-92d2-39c6b7baa1b3.previewTargets.0.__assoc__.2.1','\"1\"'),('sections.846db8d3-82f8-4432-92d2-39c6b7baa1b3.propagationMethod','\"all\"'),('sections.846db8d3-82f8-4432-92d2-39c6b7baa1b3.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.enabledByDefault','true'),('sections.846db8d3-82f8-4432-92d2-39c6b7baa1b3.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.hasUrls','true'),('sections.846db8d3-82f8-4432-92d2-39c6b7baa1b3.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.template','\"reports/_entry\"'),('sections.846db8d3-82f8-4432-92d2-39c6b7baa1b3.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.uriFormat','\"reports/{slug}\"'),('sections.846db8d3-82f8-4432-92d2-39c6b7baa1b3.type','\"channel\"'),('sections.90098b77-7cc0-440f-b64c-27d247c69b07.defaultPlacement','\"end\"'),('sections.90098b77-7cc0-440f-b64c-27d247c69b07.enableVersioning','true'),('sections.90098b77-7cc0-440f-b64c-27d247c69b07.handle','\"aboutUs\"'),('sections.90098b77-7cc0-440f-b64c-27d247c69b07.name','\"About us\"'),('sections.90098b77-7cc0-440f-b64c-27d247c69b07.previewTargets.0.__assoc__.0.0','\"label\"'),('sections.90098b77-7cc0-440f-b64c-27d247c69b07.previewTargets.0.__assoc__.0.1','\"Primary entry page\"'),('sections.90098b77-7cc0-440f-b64c-27d247c69b07.previewTargets.0.__assoc__.1.0','\"urlFormat\"'),('sections.90098b77-7cc0-440f-b64c-27d247c69b07.previewTargets.0.__assoc__.1.1','\"{url}\"'),('sections.90098b77-7cc0-440f-b64c-27d247c69b07.previewTargets.0.__assoc__.2.0','\"refresh\"'),('sections.90098b77-7cc0-440f-b64c-27d247c69b07.previewTargets.0.__assoc__.2.1','\"1\"'),('sections.90098b77-7cc0-440f-b64c-27d247c69b07.propagationMethod','\"all\"'),('sections.90098b77-7cc0-440f-b64c-27d247c69b07.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.enabledByDefault','true'),('sections.90098b77-7cc0-440f-b64c-27d247c69b07.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.hasUrls','true'),('sections.90098b77-7cc0-440f-b64c-27d247c69b07.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.template','\"about-us/_entry\"'),('sections.90098b77-7cc0-440f-b64c-27d247c69b07.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.uriFormat','\"about\"'),('sections.90098b77-7cc0-440f-b64c-27d247c69b07.type','\"single\"'),('sections.9d16c38d-02f8-4ef4-9c55-897a45744518.defaultPlacement','\"end\"'),('sections.9d16c38d-02f8-4ef4-9c55-897a45744518.enableVersioning','true'),('sections.9d16c38d-02f8-4ef4-9c55-897a45744518.handle','\"termsAndConditions\"'),('sections.9d16c38d-02f8-4ef4-9c55-897a45744518.name','\"Terms and conditions\"'),('sections.9d16c38d-02f8-4ef4-9c55-897a45744518.previewTargets.0.__assoc__.0.0','\"label\"'),('sections.9d16c38d-02f8-4ef4-9c55-897a45744518.previewTargets.0.__assoc__.0.1','\"Primary entry page\"'),('sections.9d16c38d-02f8-4ef4-9c55-897a45744518.previewTargets.0.__assoc__.1.0','\"urlFormat\"'),('sections.9d16c38d-02f8-4ef4-9c55-897a45744518.previewTargets.0.__assoc__.1.1','\"{url}\"'),('sections.9d16c38d-02f8-4ef4-9c55-897a45744518.previewTargets.0.__assoc__.2.0','\"refresh\"'),('sections.9d16c38d-02f8-4ef4-9c55-897a45744518.previewTargets.0.__assoc__.2.1','\"1\"'),('sections.9d16c38d-02f8-4ef4-9c55-897a45744518.propagationMethod','\"all\"'),('sections.9d16c38d-02f8-4ef4-9c55-897a45744518.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.enabledByDefault','true'),('sections.9d16c38d-02f8-4ef4-9c55-897a45744518.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.hasUrls','true'),('sections.9d16c38d-02f8-4ef4-9c55-897a45744518.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.template','\"about-us/_entry\"'),('sections.9d16c38d-02f8-4ef4-9c55-897a45744518.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.uriFormat','\"terms-and-conditions\"'),('sections.9d16c38d-02f8-4ef4-9c55-897a45744518.type','\"single\"'),('sections.a0ddfe68-96f9-46b1-a989-31cbcde47626.defaultPlacement','\"end\"'),('sections.a0ddfe68-96f9-46b1-a989-31cbcde47626.enableVersioning','true'),('sections.a0ddfe68-96f9-46b1-a989-31cbcde47626.handle','\"contact\"'),('sections.a0ddfe68-96f9-46b1-a989-31cbcde47626.name','\"Contact \"'),('sections.a0ddfe68-96f9-46b1-a989-31cbcde47626.previewTargets.0.__assoc__.0.0','\"label\"'),('sections.a0ddfe68-96f9-46b1-a989-31cbcde47626.previewTargets.0.__assoc__.0.1','\"Primary entry page\"'),('sections.a0ddfe68-96f9-46b1-a989-31cbcde47626.previewTargets.0.__assoc__.1.0','\"urlFormat\"'),('sections.a0ddfe68-96f9-46b1-a989-31cbcde47626.previewTargets.0.__assoc__.1.1','\"{url}\"'),('sections.a0ddfe68-96f9-46b1-a989-31cbcde47626.previewTargets.0.__assoc__.2.0','\"refresh\"'),('sections.a0ddfe68-96f9-46b1-a989-31cbcde47626.previewTargets.0.__assoc__.2.1','\"1\"'),('sections.a0ddfe68-96f9-46b1-a989-31cbcde47626.propagationMethod','\"all\"'),('sections.a0ddfe68-96f9-46b1-a989-31cbcde47626.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.enabledByDefault','true'),('sections.a0ddfe68-96f9-46b1-a989-31cbcde47626.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.hasUrls','true'),('sections.a0ddfe68-96f9-46b1-a989-31cbcde47626.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.template','\"contact/_entry\"'),('sections.a0ddfe68-96f9-46b1-a989-31cbcde47626.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.uriFormat','\"contact\"'),('sections.a0ddfe68-96f9-46b1-a989-31cbcde47626.type','\"single\"'),('sections.a3eaf7c8-edf3-45b3-a471-6fa0f26714a4.defaultPlacement','\"end\"'),('sections.a3eaf7c8-edf3-45b3-a471-6fa0f26714a4.enableVersioning','true'),('sections.a3eaf7c8-edf3-45b3-a471-6fa0f26714a4.handle','\"home\"'),('sections.a3eaf7c8-edf3-45b3-a471-6fa0f26714a4.name','\"Home\"'),('sections.a3eaf7c8-edf3-45b3-a471-6fa0f26714a4.previewTargets.0.__assoc__.0.0','\"label\"'),('sections.a3eaf7c8-edf3-45b3-a471-6fa0f26714a4.previewTargets.0.__assoc__.0.1','\"Primary entry page\"'),('sections.a3eaf7c8-edf3-45b3-a471-6fa0f26714a4.previewTargets.0.__assoc__.1.0','\"urlFormat\"'),('sections.a3eaf7c8-edf3-45b3-a471-6fa0f26714a4.previewTargets.0.__assoc__.1.1','\"{url}\"'),('sections.a3eaf7c8-edf3-45b3-a471-6fa0f26714a4.previewTargets.0.__assoc__.2.0','\"refresh\"'),('sections.a3eaf7c8-edf3-45b3-a471-6fa0f26714a4.previewTargets.0.__assoc__.2.1','\"1\"'),('sections.a3eaf7c8-edf3-45b3-a471-6fa0f26714a4.propagationMethod','\"all\"'),('sections.a3eaf7c8-edf3-45b3-a471-6fa0f26714a4.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.enabledByDefault','true'),('sections.a3eaf7c8-edf3-45b3-a471-6fa0f26714a4.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.hasUrls','true'),('sections.a3eaf7c8-edf3-45b3-a471-6fa0f26714a4.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.template','\"index\"'),('sections.a3eaf7c8-edf3-45b3-a471-6fa0f26714a4.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.uriFormat','\"__home__\"'),('sections.a3eaf7c8-edf3-45b3-a471-6fa0f26714a4.type','\"single\"'),('sections.a649cddf-ac92-414a-8d24-cff4dcfeb45e.defaultPlacement','\"end\"'),('sections.a649cddf-ac92-414a-8d24-cff4dcfeb45e.enableVersioning','true'),('sections.a649cddf-ac92-414a-8d24-cff4dcfeb45e.handle','\"articles\"'),('sections.a649cddf-ac92-414a-8d24-cff4dcfeb45e.name','\"Articles\"'),('sections.a649cddf-ac92-414a-8d24-cff4dcfeb45e.previewTargets.0.__assoc__.0.0','\"label\"'),('sections.a649cddf-ac92-414a-8d24-cff4dcfeb45e.previewTargets.0.__assoc__.0.1','\"Primary entry page\"'),('sections.a649cddf-ac92-414a-8d24-cff4dcfeb45e.previewTargets.0.__assoc__.1.0','\"urlFormat\"'),('sections.a649cddf-ac92-414a-8d24-cff4dcfeb45e.previewTargets.0.__assoc__.1.1','\"{url}\"'),('sections.a649cddf-ac92-414a-8d24-cff4dcfeb45e.previewTargets.0.__assoc__.2.0','\"refresh\"'),('sections.a649cddf-ac92-414a-8d24-cff4dcfeb45e.previewTargets.0.__assoc__.2.1','\"1\"'),('sections.a649cddf-ac92-414a-8d24-cff4dcfeb45e.propagationMethod','\"all\"'),('sections.a649cddf-ac92-414a-8d24-cff4dcfeb45e.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.enabledByDefault','true'),('sections.a649cddf-ac92-414a-8d24-cff4dcfeb45e.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.hasUrls','true'),('sections.a649cddf-ac92-414a-8d24-cff4dcfeb45e.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.template','\"articles/_entry\"'),('sections.a649cddf-ac92-414a-8d24-cff4dcfeb45e.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.uriFormat','\"articles/{slug}\"'),('sections.a649cddf-ac92-414a-8d24-cff4dcfeb45e.type','\"channel\"'),('sections.ca64ab62-fc10-4034-9c0e-298f6ad47b21.defaultPlacement','\"end\"'),('sections.ca64ab62-fc10-4034-9c0e-298f6ad47b21.enableVersioning','true'),('sections.ca64ab62-fc10-4034-9c0e-298f6ad47b21.handle','\"landingPages\"'),('sections.ca64ab62-fc10-4034-9c0e-298f6ad47b21.name','\"Landing pages\"'),('sections.ca64ab62-fc10-4034-9c0e-298f6ad47b21.previewTargets.0.__assoc__.0.0','\"label\"'),('sections.ca64ab62-fc10-4034-9c0e-298f6ad47b21.previewTargets.0.__assoc__.0.1','\"Primary entry page\"'),('sections.ca64ab62-fc10-4034-9c0e-298f6ad47b21.previewTargets.0.__assoc__.1.0','\"urlFormat\"'),('sections.ca64ab62-fc10-4034-9c0e-298f6ad47b21.previewTargets.0.__assoc__.1.1','\"{url}\"'),('sections.ca64ab62-fc10-4034-9c0e-298f6ad47b21.previewTargets.0.__assoc__.2.0','\"refresh\"'),('sections.ca64ab62-fc10-4034-9c0e-298f6ad47b21.previewTargets.0.__assoc__.2.1','\"1\"'),('sections.ca64ab62-fc10-4034-9c0e-298f6ad47b21.propagationMethod','\"all\"'),('sections.ca64ab62-fc10-4034-9c0e-298f6ad47b21.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.enabledByDefault','true'),('sections.ca64ab62-fc10-4034-9c0e-298f6ad47b21.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.hasUrls','true'),('sections.ca64ab62-fc10-4034-9c0e-298f6ad47b21.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.template','\"landing-pages/_entry\"'),('sections.ca64ab62-fc10-4034-9c0e-298f6ad47b21.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.uriFormat','\"lp/{slug}\"'),('sections.ca64ab62-fc10-4034-9c0e-298f6ad47b21.type','\"channel\"'),('sections.f05a5cc5-d31f-45a1-9412-037b742553a8.defaultPlacement','\"end\"'),('sections.f05a5cc5-d31f-45a1-9412-037b742553a8.enableVersioning','true'),('sections.f05a5cc5-d31f-45a1-9412-037b742553a8.handle','\"careers\"'),('sections.f05a5cc5-d31f-45a1-9412-037b742553a8.name','\"Careers\"'),('sections.f05a5cc5-d31f-45a1-9412-037b742553a8.previewTargets.0.__assoc__.0.0','\"label\"'),('sections.f05a5cc5-d31f-45a1-9412-037b742553a8.previewTargets.0.__assoc__.0.1','\"Primary entry page\"'),('sections.f05a5cc5-d31f-45a1-9412-037b742553a8.previewTargets.0.__assoc__.1.0','\"urlFormat\"'),('sections.f05a5cc5-d31f-45a1-9412-037b742553a8.previewTargets.0.__assoc__.1.1','\"{url}\"'),('sections.f05a5cc5-d31f-45a1-9412-037b742553a8.previewTargets.0.__assoc__.2.0','\"refresh\"'),('sections.f05a5cc5-d31f-45a1-9412-037b742553a8.previewTargets.0.__assoc__.2.1','\"1\"'),('sections.f05a5cc5-d31f-45a1-9412-037b742553a8.propagationMethod','\"all\"'),('sections.f05a5cc5-d31f-45a1-9412-037b742553a8.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.enabledByDefault','true'),('sections.f05a5cc5-d31f-45a1-9412-037b742553a8.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.hasUrls','true'),('sections.f05a5cc5-d31f-45a1-9412-037b742553a8.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.template','\"careers/_entry\"'),('sections.f05a5cc5-d31f-45a1-9412-037b742553a8.siteSettings.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.uriFormat','\"careers\"'),('sections.f05a5cc5-d31f-45a1-9412-037b742553a8.type','\"single\"'),('siteGroups.dd515d4e-0208-4937-a527-6d49106e0848.name','\"NWO Starter\"'),('sites.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.baseUrl','\"$PRIMARY_SITE_URL\"'),('sites.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.enabled','true'),('sites.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.handle','\"default\"'),('sites.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.hasUrls','true'),('sites.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.language','\"en-AU\"'),('sites.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.name','\"NWO Starter\"'),('sites.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.primary','true'),('sites.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.siteGroup','\"dd515d4e-0208-4937-a527-6d49106e0848\"'),('sites.f31d7621-e371-4c0e-ba64-e91d19fa4fcf.sortOrder','1'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.field','\"38bbf5f7-e29c-40bd-b218-155ad667ea9a\"'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fieldLayouts.aad614a3-dd82-4760-980b-6507e557ef1f.tabs.0.elements.0.fieldUid','\"f9da4ffb-4690-4f0b-8f08-456b5e29ffc9\"'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fieldLayouts.aad614a3-dd82-4760-980b-6507e557ef1f.tabs.0.elements.0.instructions','null'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fieldLayouts.aad614a3-dd82-4760-980b-6507e557ef1f.tabs.0.elements.0.label','null'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fieldLayouts.aad614a3-dd82-4760-980b-6507e557ef1f.tabs.0.elements.0.required','false'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fieldLayouts.aad614a3-dd82-4760-980b-6507e557ef1f.tabs.0.elements.0.tip','null'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fieldLayouts.aad614a3-dd82-4760-980b-6507e557ef1f.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fieldLayouts.aad614a3-dd82-4760-980b-6507e557ef1f.tabs.0.elements.0.warning','null'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fieldLayouts.aad614a3-dd82-4760-980b-6507e557ef1f.tabs.0.elements.0.width','100'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fieldLayouts.aad614a3-dd82-4760-980b-6507e557ef1f.tabs.0.elements.1.fieldUid','\"5307644b-cc96-4639-8586-e174e883f664\"'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fieldLayouts.aad614a3-dd82-4760-980b-6507e557ef1f.tabs.0.elements.1.instructions','null'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fieldLayouts.aad614a3-dd82-4760-980b-6507e557ef1f.tabs.0.elements.1.label','null'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fieldLayouts.aad614a3-dd82-4760-980b-6507e557ef1f.tabs.0.elements.1.required','false'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fieldLayouts.aad614a3-dd82-4760-980b-6507e557ef1f.tabs.0.elements.1.tip','null'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fieldLayouts.aad614a3-dd82-4760-980b-6507e557ef1f.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fieldLayouts.aad614a3-dd82-4760-980b-6507e557ef1f.tabs.0.elements.1.warning','null'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fieldLayouts.aad614a3-dd82-4760-980b-6507e557ef1f.tabs.0.elements.1.width','100'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fieldLayouts.aad614a3-dd82-4760-980b-6507e557ef1f.tabs.0.name','\"Content\"'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fieldLayouts.aad614a3-dd82-4760-980b-6507e557ef1f.tabs.0.sortOrder','1'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.5307644b-cc96-4639-8586-e174e883f664.columnSuffix','null'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.5307644b-cc96-4639-8586-e174e883f664.contentColumnType','\"text\"'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.5307644b-cc96-4639-8586-e174e883f664.fieldGroup','null'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.5307644b-cc96-4639-8586-e174e883f664.handle','\"text\"'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.5307644b-cc96-4639-8586-e174e883f664.instructions','\"\"'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.5307644b-cc96-4639-8586-e174e883f664.name','\"Text\"'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.5307644b-cc96-4639-8586-e174e883f664.searchable','false'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.5307644b-cc96-4639-8586-e174e883f664.settings.byteLimit','null'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.5307644b-cc96-4639-8586-e174e883f664.settings.charLimit','null'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.5307644b-cc96-4639-8586-e174e883f664.settings.code','\"\"'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.5307644b-cc96-4639-8586-e174e883f664.settings.columnType','null'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.5307644b-cc96-4639-8586-e174e883f664.settings.initialRows','\"4\"'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.5307644b-cc96-4639-8586-e174e883f664.settings.multiline','\"1\"'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.5307644b-cc96-4639-8586-e174e883f664.settings.placeholder','null'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.5307644b-cc96-4639-8586-e174e883f664.settings.uiMode','\"normal\"'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.5307644b-cc96-4639-8586-e174e883f664.translationKeyFormat','null'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.5307644b-cc96-4639-8586-e174e883f664.translationMethod','\"none\"'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.5307644b-cc96-4639-8586-e174e883f664.type','\"craft\\\\fields\\\\PlainText\"'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.f9da4ffb-4690-4f0b-8f08-456b5e29ffc9.columnSuffix','null'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.f9da4ffb-4690-4f0b-8f08-456b5e29ffc9.contentColumnType','\"text\"'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.f9da4ffb-4690-4f0b-8f08-456b5e29ffc9.fieldGroup','null'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.f9da4ffb-4690-4f0b-8f08-456b5e29ffc9.handle','\"heading\"'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.f9da4ffb-4690-4f0b-8f08-456b5e29ffc9.instructions','\"\"'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.f9da4ffb-4690-4f0b-8f08-456b5e29ffc9.name','\"Heading\"'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.f9da4ffb-4690-4f0b-8f08-456b5e29ffc9.searchable','false'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.f9da4ffb-4690-4f0b-8f08-456b5e29ffc9.settings.byteLimit','null'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.f9da4ffb-4690-4f0b-8f08-456b5e29ffc9.settings.charLimit','null'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.f9da4ffb-4690-4f0b-8f08-456b5e29ffc9.settings.code','\"\"'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.f9da4ffb-4690-4f0b-8f08-456b5e29ffc9.settings.columnType','null'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.f9da4ffb-4690-4f0b-8f08-456b5e29ffc9.settings.initialRows','\"4\"'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.f9da4ffb-4690-4f0b-8f08-456b5e29ffc9.settings.multiline','\"\"'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.f9da4ffb-4690-4f0b-8f08-456b5e29ffc9.settings.placeholder','null'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.f9da4ffb-4690-4f0b-8f08-456b5e29ffc9.settings.uiMode','\"normal\"'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.f9da4ffb-4690-4f0b-8f08-456b5e29ffc9.translationKeyFormat','null'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.f9da4ffb-4690-4f0b-8f08-456b5e29ffc9.translationMethod','\"none\"'),('superTableBlockTypes.0ff78a3e-28e9-41dd-b794-188081cdccf7.fields.f9da4ffb-4690-4f0b-8f08-456b5e29ffc9.type','\"craft\\\\fields\\\\PlainText\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.field','\"ef1558a2-4bac-4ea9-8c1e-3d4a432d72db\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fieldLayouts.ae6c76d5-988f-42a9-a782-4760e93187fa.tabs.0.elements.0.fieldUid','\"78dae584-8470-46cf-9d9d-81753f0c8a47\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fieldLayouts.ae6c76d5-988f-42a9-a782-4760e93187fa.tabs.0.elements.0.instructions','null'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fieldLayouts.ae6c76d5-988f-42a9-a782-4760e93187fa.tabs.0.elements.0.label','null'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fieldLayouts.ae6c76d5-988f-42a9-a782-4760e93187fa.tabs.0.elements.0.required','false'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fieldLayouts.ae6c76d5-988f-42a9-a782-4760e93187fa.tabs.0.elements.0.tip','null'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fieldLayouts.ae6c76d5-988f-42a9-a782-4760e93187fa.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fieldLayouts.ae6c76d5-988f-42a9-a782-4760e93187fa.tabs.0.elements.0.warning','null'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fieldLayouts.ae6c76d5-988f-42a9-a782-4760e93187fa.tabs.0.elements.0.width','100'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fieldLayouts.ae6c76d5-988f-42a9-a782-4760e93187fa.tabs.0.elements.1.fieldUid','\"f362a4cd-9c43-453d-84e5-dc8d9efa0b9f\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fieldLayouts.ae6c76d5-988f-42a9-a782-4760e93187fa.tabs.0.elements.1.instructions','null'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fieldLayouts.ae6c76d5-988f-42a9-a782-4760e93187fa.tabs.0.elements.1.label','null'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fieldLayouts.ae6c76d5-988f-42a9-a782-4760e93187fa.tabs.0.elements.1.required','false'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fieldLayouts.ae6c76d5-988f-42a9-a782-4760e93187fa.tabs.0.elements.1.tip','null'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fieldLayouts.ae6c76d5-988f-42a9-a782-4760e93187fa.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fieldLayouts.ae6c76d5-988f-42a9-a782-4760e93187fa.tabs.0.elements.1.warning','null'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fieldLayouts.ae6c76d5-988f-42a9-a782-4760e93187fa.tabs.0.elements.1.width','100'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fieldLayouts.ae6c76d5-988f-42a9-a782-4760e93187fa.tabs.0.elements.2.fieldUid','\"a51c75e9-07f7-42af-b360-cf8e55df3da3\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fieldLayouts.ae6c76d5-988f-42a9-a782-4760e93187fa.tabs.0.elements.2.instructions','null'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fieldLayouts.ae6c76d5-988f-42a9-a782-4760e93187fa.tabs.0.elements.2.label','null'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fieldLayouts.ae6c76d5-988f-42a9-a782-4760e93187fa.tabs.0.elements.2.required','false'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fieldLayouts.ae6c76d5-988f-42a9-a782-4760e93187fa.tabs.0.elements.2.tip','null'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fieldLayouts.ae6c76d5-988f-42a9-a782-4760e93187fa.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fieldLayouts.ae6c76d5-988f-42a9-a782-4760e93187fa.tabs.0.elements.2.warning','null'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fieldLayouts.ae6c76d5-988f-42a9-a782-4760e93187fa.tabs.0.elements.2.width','100'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fieldLayouts.ae6c76d5-988f-42a9-a782-4760e93187fa.tabs.0.name','\"Content\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fieldLayouts.ae6c76d5-988f-42a9-a782-4760e93187fa.tabs.0.sortOrder','1'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.78dae584-8470-46cf-9d9d-81753f0c8a47.columnSuffix','null'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.78dae584-8470-46cf-9d9d-81753f0c8a47.contentColumnType','\"text\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.78dae584-8470-46cf-9d9d-81753f0c8a47.fieldGroup','null'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.78dae584-8470-46cf-9d9d-81753f0c8a47.handle','\"linkText\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.78dae584-8470-46cf-9d9d-81753f0c8a47.instructions','\"\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.78dae584-8470-46cf-9d9d-81753f0c8a47.name','\"Link text\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.78dae584-8470-46cf-9d9d-81753f0c8a47.searchable','false'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.78dae584-8470-46cf-9d9d-81753f0c8a47.settings.byteLimit','null'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.78dae584-8470-46cf-9d9d-81753f0c8a47.settings.charLimit','null'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.78dae584-8470-46cf-9d9d-81753f0c8a47.settings.code','\"\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.78dae584-8470-46cf-9d9d-81753f0c8a47.settings.columnType','null'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.78dae584-8470-46cf-9d9d-81753f0c8a47.settings.initialRows','\"4\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.78dae584-8470-46cf-9d9d-81753f0c8a47.settings.multiline','\"\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.78dae584-8470-46cf-9d9d-81753f0c8a47.settings.placeholder','null'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.78dae584-8470-46cf-9d9d-81753f0c8a47.settings.uiMode','\"normal\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.78dae584-8470-46cf-9d9d-81753f0c8a47.translationKeyFormat','null'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.78dae584-8470-46cf-9d9d-81753f0c8a47.translationMethod','\"none\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.78dae584-8470-46cf-9d9d-81753f0c8a47.type','\"craft\\\\fields\\\\PlainText\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.a51c75e9-07f7-42af-b360-cf8e55df3da3.columnSuffix','null'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.a51c75e9-07f7-42af-b360-cf8e55df3da3.contentColumnType','\"text\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.a51c75e9-07f7-42af-b360-cf8e55df3da3.fieldGroup','null'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.a51c75e9-07f7-42af-b360-cf8e55df3da3.handle','\"externalLink\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.a51c75e9-07f7-42af-b360-cf8e55df3da3.instructions','\"\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.a51c75e9-07f7-42af-b360-cf8e55df3da3.name','\"External link\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.a51c75e9-07f7-42af-b360-cf8e55df3da3.searchable','false'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.a51c75e9-07f7-42af-b360-cf8e55df3da3.settings.byteLimit','null'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.a51c75e9-07f7-42af-b360-cf8e55df3da3.settings.charLimit','null'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.a51c75e9-07f7-42af-b360-cf8e55df3da3.settings.code','\"\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.a51c75e9-07f7-42af-b360-cf8e55df3da3.settings.columnType','null'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.a51c75e9-07f7-42af-b360-cf8e55df3da3.settings.initialRows','\"4\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.a51c75e9-07f7-42af-b360-cf8e55df3da3.settings.multiline','\"\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.a51c75e9-07f7-42af-b360-cf8e55df3da3.settings.placeholder','null'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.a51c75e9-07f7-42af-b360-cf8e55df3da3.settings.uiMode','\"normal\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.a51c75e9-07f7-42af-b360-cf8e55df3da3.translationKeyFormat','null'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.a51c75e9-07f7-42af-b360-cf8e55df3da3.translationMethod','\"none\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.a51c75e9-07f7-42af-b360-cf8e55df3da3.type','\"craft\\\\fields\\\\PlainText\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.f362a4cd-9c43-453d-84e5-dc8d9efa0b9f.columnSuffix','null'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.f362a4cd-9c43-453d-84e5-dc8d9efa0b9f.contentColumnType','\"string\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.f362a4cd-9c43-453d-84e5-dc8d9efa0b9f.fieldGroup','null'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.f362a4cd-9c43-453d-84e5-dc8d9efa0b9f.handle','\"internalLink\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.f362a4cd-9c43-453d-84e5-dc8d9efa0b9f.instructions','\"\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.f362a4cd-9c43-453d-84e5-dc8d9efa0b9f.name','\"Internal link\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.f362a4cd-9c43-453d-84e5-dc8d9efa0b9f.searchable','false'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.f362a4cd-9c43-453d-84e5-dc8d9efa0b9f.settings.allowSelfRelations','false'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.f362a4cd-9c43-453d-84e5-dc8d9efa0b9f.settings.limit','\"1\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.f362a4cd-9c43-453d-84e5-dc8d9efa0b9f.settings.localizeRelations','false'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.f362a4cd-9c43-453d-84e5-dc8d9efa0b9f.settings.selectionLabel','\"Add a link\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.f362a4cd-9c43-453d-84e5-dc8d9efa0b9f.settings.showSiteMenu','true'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.f362a4cd-9c43-453d-84e5-dc8d9efa0b9f.settings.source','null'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.f362a4cd-9c43-453d-84e5-dc8d9efa0b9f.settings.sources','\"*\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.f362a4cd-9c43-453d-84e5-dc8d9efa0b9f.settings.targetSiteId','null'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.f362a4cd-9c43-453d-84e5-dc8d9efa0b9f.settings.validateRelatedElements','false'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.f362a4cd-9c43-453d-84e5-dc8d9efa0b9f.settings.viewMode','null'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.f362a4cd-9c43-453d-84e5-dc8d9efa0b9f.translationKeyFormat','null'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.f362a4cd-9c43-453d-84e5-dc8d9efa0b9f.translationMethod','\"site\"'),('superTableBlockTypes.22a36585-ad97-42d7-a505-6b6569ec8558.fields.f362a4cd-9c43-453d-84e5-dc8d9efa0b9f.type','\"craft\\\\fields\\\\Entries\"'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.field','\"8fbcbc2d-119a-412d-97e8-fec9e88d9418\"'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fieldLayouts.958e4a82-6b87-432e-8653-3294477af38b.tabs.0.elements.0.fieldUid','\"77c63b72-1a12-4ae0-8e77-1c8281529861\"'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fieldLayouts.958e4a82-6b87-432e-8653-3294477af38b.tabs.0.elements.0.instructions','null'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fieldLayouts.958e4a82-6b87-432e-8653-3294477af38b.tabs.0.elements.0.label','null'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fieldLayouts.958e4a82-6b87-432e-8653-3294477af38b.tabs.0.elements.0.required','false'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fieldLayouts.958e4a82-6b87-432e-8653-3294477af38b.tabs.0.elements.0.tip','null'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fieldLayouts.958e4a82-6b87-432e-8653-3294477af38b.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fieldLayouts.958e4a82-6b87-432e-8653-3294477af38b.tabs.0.elements.0.warning','null'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fieldLayouts.958e4a82-6b87-432e-8653-3294477af38b.tabs.0.elements.0.width','100'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fieldLayouts.958e4a82-6b87-432e-8653-3294477af38b.tabs.0.elements.1.fieldUid','\"0b0d85f7-4358-42e8-9beb-96291582f0ef\"'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fieldLayouts.958e4a82-6b87-432e-8653-3294477af38b.tabs.0.elements.1.instructions','null'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fieldLayouts.958e4a82-6b87-432e-8653-3294477af38b.tabs.0.elements.1.label','null'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fieldLayouts.958e4a82-6b87-432e-8653-3294477af38b.tabs.0.elements.1.required','false'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fieldLayouts.958e4a82-6b87-432e-8653-3294477af38b.tabs.0.elements.1.tip','null'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fieldLayouts.958e4a82-6b87-432e-8653-3294477af38b.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fieldLayouts.958e4a82-6b87-432e-8653-3294477af38b.tabs.0.elements.1.warning','null'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fieldLayouts.958e4a82-6b87-432e-8653-3294477af38b.tabs.0.elements.1.width','100'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fieldLayouts.958e4a82-6b87-432e-8653-3294477af38b.tabs.0.name','\"Content\"'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fieldLayouts.958e4a82-6b87-432e-8653-3294477af38b.tabs.0.sortOrder','1'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.0b0d85f7-4358-42e8-9beb-96291582f0ef.columnSuffix','null'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.0b0d85f7-4358-42e8-9beb-96291582f0ef.contentColumnType','\"text\"'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.0b0d85f7-4358-42e8-9beb-96291582f0ef.fieldGroup','null'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.0b0d85f7-4358-42e8-9beb-96291582f0ef.handle','\"logoLink\"'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.0b0d85f7-4358-42e8-9beb-96291582f0ef.instructions','\"\"'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.0b0d85f7-4358-42e8-9beb-96291582f0ef.name','\"Link\"'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.0b0d85f7-4358-42e8-9beb-96291582f0ef.searchable','false'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.0b0d85f7-4358-42e8-9beb-96291582f0ef.settings.byteLimit','null'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.0b0d85f7-4358-42e8-9beb-96291582f0ef.settings.charLimit','null'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.0b0d85f7-4358-42e8-9beb-96291582f0ef.settings.code','\"\"'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.0b0d85f7-4358-42e8-9beb-96291582f0ef.settings.columnType','null'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.0b0d85f7-4358-42e8-9beb-96291582f0ef.settings.initialRows','\"4\"'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.0b0d85f7-4358-42e8-9beb-96291582f0ef.settings.multiline','\"\"'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.0b0d85f7-4358-42e8-9beb-96291582f0ef.settings.placeholder','null'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.0b0d85f7-4358-42e8-9beb-96291582f0ef.settings.uiMode','\"normal\"'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.0b0d85f7-4358-42e8-9beb-96291582f0ef.translationKeyFormat','null'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.0b0d85f7-4358-42e8-9beb-96291582f0ef.translationMethod','\"none\"'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.0b0d85f7-4358-42e8-9beb-96291582f0ef.type','\"craft\\\\fields\\\\PlainText\"'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.77c63b72-1a12-4ae0-8e77-1c8281529861.columnSuffix','null'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.77c63b72-1a12-4ae0-8e77-1c8281529861.contentColumnType','\"string\"'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.77c63b72-1a12-4ae0-8e77-1c8281529861.fieldGroup','null'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.77c63b72-1a12-4ae0-8e77-1c8281529861.handle','\"logo\"'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.77c63b72-1a12-4ae0-8e77-1c8281529861.instructions','\"\"'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.77c63b72-1a12-4ae0-8e77-1c8281529861.name','\"Logo\"'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.77c63b72-1a12-4ae0-8e77-1c8281529861.searchable','false'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.77c63b72-1a12-4ae0-8e77-1c8281529861.settings.allowedKinds.0','\"image\"'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.77c63b72-1a12-4ae0-8e77-1c8281529861.settings.allowSelfRelations','false'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.77c63b72-1a12-4ae0-8e77-1c8281529861.settings.allowUploads','true'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.77c63b72-1a12-4ae0-8e77-1c8281529861.settings.defaultUploadLocationSource','\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.77c63b72-1a12-4ae0-8e77-1c8281529861.settings.defaultUploadLocationSubpath','\"\"'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.77c63b72-1a12-4ae0-8e77-1c8281529861.settings.limit','\"1\"'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.77c63b72-1a12-4ae0-8e77-1c8281529861.settings.localizeRelations','false'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.77c63b72-1a12-4ae0-8e77-1c8281529861.settings.previewMode','\"full\"'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.77c63b72-1a12-4ae0-8e77-1c8281529861.settings.restrictFiles','\"1\"'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.77c63b72-1a12-4ae0-8e77-1c8281529861.settings.selectionLabel','\"Add a logo\"'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.77c63b72-1a12-4ae0-8e77-1c8281529861.settings.showSiteMenu','true'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.77c63b72-1a12-4ae0-8e77-1c8281529861.settings.showUnpermittedFiles','false'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.77c63b72-1a12-4ae0-8e77-1c8281529861.settings.showUnpermittedVolumes','false'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.77c63b72-1a12-4ae0-8e77-1c8281529861.settings.singleUploadLocationSource','\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.77c63b72-1a12-4ae0-8e77-1c8281529861.settings.singleUploadLocationSubpath','\"\"'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.77c63b72-1a12-4ae0-8e77-1c8281529861.settings.source','null'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.77c63b72-1a12-4ae0-8e77-1c8281529861.settings.sources','\"*\"'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.77c63b72-1a12-4ae0-8e77-1c8281529861.settings.targetSiteId','null'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.77c63b72-1a12-4ae0-8e77-1c8281529861.settings.useSingleFolder','false'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.77c63b72-1a12-4ae0-8e77-1c8281529861.settings.validateRelatedElements','false'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.77c63b72-1a12-4ae0-8e77-1c8281529861.settings.viewMode','\"list\"'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.77c63b72-1a12-4ae0-8e77-1c8281529861.translationKeyFormat','null'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.77c63b72-1a12-4ae0-8e77-1c8281529861.translationMethod','\"site\"'),('superTableBlockTypes.3b5acc45-812e-43a1-8f5c-67a64af02e02.fields.77c63b72-1a12-4ae0-8e77-1c8281529861.type','\"craft\\\\fields\\\\Assets\"'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.field','\"9ee799af-6ab1-42fb-94b3-a70acd370f9b\"'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fieldLayouts.de4f903e-de01-4744-a300-e2219ac56f0c.tabs.0.elements.0.fieldUid','\"9d14a3af-2493-422b-8fc8-60b496e17204\"'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fieldLayouts.de4f903e-de01-4744-a300-e2219ac56f0c.tabs.0.elements.0.instructions','null'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fieldLayouts.de4f903e-de01-4744-a300-e2219ac56f0c.tabs.0.elements.0.label','null'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fieldLayouts.de4f903e-de01-4744-a300-e2219ac56f0c.tabs.0.elements.0.required','false'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fieldLayouts.de4f903e-de01-4744-a300-e2219ac56f0c.tabs.0.elements.0.tip','null'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fieldLayouts.de4f903e-de01-4744-a300-e2219ac56f0c.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fieldLayouts.de4f903e-de01-4744-a300-e2219ac56f0c.tabs.0.elements.0.warning','null'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fieldLayouts.de4f903e-de01-4744-a300-e2219ac56f0c.tabs.0.elements.0.width','100'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fieldLayouts.de4f903e-de01-4744-a300-e2219ac56f0c.tabs.0.elements.1.fieldUid','\"9d09a28d-571e-4cd9-a199-2d3342cf815a\"'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fieldLayouts.de4f903e-de01-4744-a300-e2219ac56f0c.tabs.0.elements.1.instructions','null'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fieldLayouts.de4f903e-de01-4744-a300-e2219ac56f0c.tabs.0.elements.1.label','null'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fieldLayouts.de4f903e-de01-4744-a300-e2219ac56f0c.tabs.0.elements.1.required','false'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fieldLayouts.de4f903e-de01-4744-a300-e2219ac56f0c.tabs.0.elements.1.tip','null'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fieldLayouts.de4f903e-de01-4744-a300-e2219ac56f0c.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fieldLayouts.de4f903e-de01-4744-a300-e2219ac56f0c.tabs.0.elements.1.warning','null'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fieldLayouts.de4f903e-de01-4744-a300-e2219ac56f0c.tabs.0.elements.1.width','100'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fieldLayouts.de4f903e-de01-4744-a300-e2219ac56f0c.tabs.0.name','\"Content\"'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fieldLayouts.de4f903e-de01-4744-a300-e2219ac56f0c.tabs.0.sortOrder','1'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d09a28d-571e-4cd9-a199-2d3342cf815a.columnSuffix','null'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d09a28d-571e-4cd9-a199-2d3342cf815a.contentColumnType','\"text\"'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d09a28d-571e-4cd9-a199-2d3342cf815a.fieldGroup','null'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d09a28d-571e-4cd9-a199-2d3342cf815a.handle','\"videoCode\"'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d09a28d-571e-4cd9-a199-2d3342cf815a.instructions','\"\"'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d09a28d-571e-4cd9-a199-2d3342cf815a.name','\"Video code\"'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d09a28d-571e-4cd9-a199-2d3342cf815a.searchable','false'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d09a28d-571e-4cd9-a199-2d3342cf815a.settings.byteLimit','null'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d09a28d-571e-4cd9-a199-2d3342cf815a.settings.charLimit','null'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d09a28d-571e-4cd9-a199-2d3342cf815a.settings.code','\"\"'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d09a28d-571e-4cd9-a199-2d3342cf815a.settings.columnType','null'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d09a28d-571e-4cd9-a199-2d3342cf815a.settings.initialRows','\"4\"'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d09a28d-571e-4cd9-a199-2d3342cf815a.settings.multiline','\"1\"'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d09a28d-571e-4cd9-a199-2d3342cf815a.settings.placeholder','null'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d09a28d-571e-4cd9-a199-2d3342cf815a.settings.uiMode','\"normal\"'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d09a28d-571e-4cd9-a199-2d3342cf815a.translationKeyFormat','null'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d09a28d-571e-4cd9-a199-2d3342cf815a.translationMethod','\"none\"'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d09a28d-571e-4cd9-a199-2d3342cf815a.type','\"craft\\\\fields\\\\PlainText\"'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d14a3af-2493-422b-8fc8-60b496e17204.columnSuffix','null'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d14a3af-2493-422b-8fc8-60b496e17204.contentColumnType','\"string\"'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d14a3af-2493-422b-8fc8-60b496e17204.fieldGroup','null'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d14a3af-2493-422b-8fc8-60b496e17204.handle','\"videoPlaceholderImage\"'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d14a3af-2493-422b-8fc8-60b496e17204.instructions','\"\"'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d14a3af-2493-422b-8fc8-60b496e17204.name','\"Video placeholder image\"'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d14a3af-2493-422b-8fc8-60b496e17204.searchable','false'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d14a3af-2493-422b-8fc8-60b496e17204.settings.allowedKinds','null'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d14a3af-2493-422b-8fc8-60b496e17204.settings.allowSelfRelations','false'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d14a3af-2493-422b-8fc8-60b496e17204.settings.allowUploads','true'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d14a3af-2493-422b-8fc8-60b496e17204.settings.defaultUploadLocationSource','\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d14a3af-2493-422b-8fc8-60b496e17204.settings.defaultUploadLocationSubpath','\"\"'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d14a3af-2493-422b-8fc8-60b496e17204.settings.limit','\"1\"'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d14a3af-2493-422b-8fc8-60b496e17204.settings.localizeRelations','false'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d14a3af-2493-422b-8fc8-60b496e17204.settings.previewMode','\"full\"'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d14a3af-2493-422b-8fc8-60b496e17204.settings.restrictFiles','\"\"'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d14a3af-2493-422b-8fc8-60b496e17204.settings.selectionLabel','\"Add a placeholder image\"'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d14a3af-2493-422b-8fc8-60b496e17204.settings.showSiteMenu','true'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d14a3af-2493-422b-8fc8-60b496e17204.settings.showUnpermittedFiles','false'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d14a3af-2493-422b-8fc8-60b496e17204.settings.showUnpermittedVolumes','false'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d14a3af-2493-422b-8fc8-60b496e17204.settings.singleUploadLocationSource','\"volume:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d14a3af-2493-422b-8fc8-60b496e17204.settings.singleUploadLocationSubpath','\"\"'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d14a3af-2493-422b-8fc8-60b496e17204.settings.source','null'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d14a3af-2493-422b-8fc8-60b496e17204.settings.sources','\"*\"'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d14a3af-2493-422b-8fc8-60b496e17204.settings.targetSiteId','null'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d14a3af-2493-422b-8fc8-60b496e17204.settings.useSingleFolder','false'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d14a3af-2493-422b-8fc8-60b496e17204.settings.validateRelatedElements','false'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d14a3af-2493-422b-8fc8-60b496e17204.settings.viewMode','\"list\"'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d14a3af-2493-422b-8fc8-60b496e17204.translationKeyFormat','null'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d14a3af-2493-422b-8fc8-60b496e17204.translationMethod','\"site\"'),('superTableBlockTypes.a682c5d8-5ed9-44ea-be04-ed916c59d271.fields.9d14a3af-2493-422b-8fc8-60b496e17204.type','\"craft\\\\fields\\\\Assets\"'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.field','\"2dd50c30-6391-406d-b248-13583fb7cf85\"'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fieldLayouts.d1275cec-0d01-49a6-b412-91a4cee1f73f.tabs.0.elements.0.fieldUid','\"c0dca123-dde4-44c4-ab97-10e1ebe80aee\"'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fieldLayouts.d1275cec-0d01-49a6-b412-91a4cee1f73f.tabs.0.elements.0.instructions','null'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fieldLayouts.d1275cec-0d01-49a6-b412-91a4cee1f73f.tabs.0.elements.0.label','null'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fieldLayouts.d1275cec-0d01-49a6-b412-91a4cee1f73f.tabs.0.elements.0.required','false'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fieldLayouts.d1275cec-0d01-49a6-b412-91a4cee1f73f.tabs.0.elements.0.tip','null'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fieldLayouts.d1275cec-0d01-49a6-b412-91a4cee1f73f.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fieldLayouts.d1275cec-0d01-49a6-b412-91a4cee1f73f.tabs.0.elements.0.warning','null'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fieldLayouts.d1275cec-0d01-49a6-b412-91a4cee1f73f.tabs.0.elements.0.width','100'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fieldLayouts.d1275cec-0d01-49a6-b412-91a4cee1f73f.tabs.0.elements.1.fieldUid','\"217aa381-87e0-4450-aff2-a051ada343b6\"'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fieldLayouts.d1275cec-0d01-49a6-b412-91a4cee1f73f.tabs.0.elements.1.instructions','null'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fieldLayouts.d1275cec-0d01-49a6-b412-91a4cee1f73f.tabs.0.elements.1.label','null'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fieldLayouts.d1275cec-0d01-49a6-b412-91a4cee1f73f.tabs.0.elements.1.required','false'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fieldLayouts.d1275cec-0d01-49a6-b412-91a4cee1f73f.tabs.0.elements.1.tip','null'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fieldLayouts.d1275cec-0d01-49a6-b412-91a4cee1f73f.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fieldLayouts.d1275cec-0d01-49a6-b412-91a4cee1f73f.tabs.0.elements.1.warning','null'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fieldLayouts.d1275cec-0d01-49a6-b412-91a4cee1f73f.tabs.0.elements.1.width','100'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fieldLayouts.d1275cec-0d01-49a6-b412-91a4cee1f73f.tabs.0.name','\"Content\"'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fieldLayouts.d1275cec-0d01-49a6-b412-91a4cee1f73f.tabs.0.sortOrder','1'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.217aa381-87e0-4450-aff2-a051ada343b6.columnSuffix','null'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.217aa381-87e0-4450-aff2-a051ada343b6.contentColumnType','\"text\"'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.217aa381-87e0-4450-aff2-a051ada343b6.fieldGroup','null'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.217aa381-87e0-4450-aff2-a051ada343b6.handle','\"text\"'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.217aa381-87e0-4450-aff2-a051ada343b6.instructions','\"\"'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.217aa381-87e0-4450-aff2-a051ada343b6.name','\"Text\"'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.217aa381-87e0-4450-aff2-a051ada343b6.searchable','false'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.217aa381-87e0-4450-aff2-a051ada343b6.settings.byteLimit','null'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.217aa381-87e0-4450-aff2-a051ada343b6.settings.charLimit','null'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.217aa381-87e0-4450-aff2-a051ada343b6.settings.code','\"\"'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.217aa381-87e0-4450-aff2-a051ada343b6.settings.columnType','null'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.217aa381-87e0-4450-aff2-a051ada343b6.settings.initialRows','\"4\"'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.217aa381-87e0-4450-aff2-a051ada343b6.settings.multiline','\"1\"'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.217aa381-87e0-4450-aff2-a051ada343b6.settings.placeholder','null'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.217aa381-87e0-4450-aff2-a051ada343b6.settings.uiMode','\"normal\"'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.217aa381-87e0-4450-aff2-a051ada343b6.translationKeyFormat','null'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.217aa381-87e0-4450-aff2-a051ada343b6.translationMethod','\"none\"'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.217aa381-87e0-4450-aff2-a051ada343b6.type','\"craft\\\\fields\\\\PlainText\"'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.c0dca123-dde4-44c4-ab97-10e1ebe80aee.columnSuffix','null'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.c0dca123-dde4-44c4-ab97-10e1ebe80aee.contentColumnType','\"text\"'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.c0dca123-dde4-44c4-ab97-10e1ebe80aee.fieldGroup','null'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.c0dca123-dde4-44c4-ab97-10e1ebe80aee.handle','\"heading\"'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.c0dca123-dde4-44c4-ab97-10e1ebe80aee.instructions','\"\"'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.c0dca123-dde4-44c4-ab97-10e1ebe80aee.name','\"Heading\"'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.c0dca123-dde4-44c4-ab97-10e1ebe80aee.searchable','false'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.c0dca123-dde4-44c4-ab97-10e1ebe80aee.settings.byteLimit','null'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.c0dca123-dde4-44c4-ab97-10e1ebe80aee.settings.charLimit','null'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.c0dca123-dde4-44c4-ab97-10e1ebe80aee.settings.code','\"\"'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.c0dca123-dde4-44c4-ab97-10e1ebe80aee.settings.columnType','null'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.c0dca123-dde4-44c4-ab97-10e1ebe80aee.settings.initialRows','\"4\"'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.c0dca123-dde4-44c4-ab97-10e1ebe80aee.settings.multiline','\"\"'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.c0dca123-dde4-44c4-ab97-10e1ebe80aee.settings.placeholder','null'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.c0dca123-dde4-44c4-ab97-10e1ebe80aee.settings.uiMode','\"normal\"'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.c0dca123-dde4-44c4-ab97-10e1ebe80aee.translationKeyFormat','null'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.c0dca123-dde4-44c4-ab97-10e1ebe80aee.translationMethod','\"none\"'),('superTableBlockTypes.cabf6e30-d8bb-4032-9f16-4e631d02d93c.fields.c0dca123-dde4-44c4-ab97-10e1ebe80aee.type','\"craft\\\\fields\\\\PlainText\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.field','\"40ca8672-9409-48d1-b0f8-0a728dcd8497\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fieldLayouts.12ac6e15-9137-4891-9d97-d205269a802a.tabs.0.elements.0.fieldUid','\"24127c19-929c-4799-a4fc-addd0c9b8839\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fieldLayouts.12ac6e15-9137-4891-9d97-d205269a802a.tabs.0.elements.0.instructions','null'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fieldLayouts.12ac6e15-9137-4891-9d97-d205269a802a.tabs.0.elements.0.label','null'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fieldLayouts.12ac6e15-9137-4891-9d97-d205269a802a.tabs.0.elements.0.required','false'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fieldLayouts.12ac6e15-9137-4891-9d97-d205269a802a.tabs.0.elements.0.tip','null'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fieldLayouts.12ac6e15-9137-4891-9d97-d205269a802a.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fieldLayouts.12ac6e15-9137-4891-9d97-d205269a802a.tabs.0.elements.0.warning','null'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fieldLayouts.12ac6e15-9137-4891-9d97-d205269a802a.tabs.0.elements.0.width','100'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fieldLayouts.12ac6e15-9137-4891-9d97-d205269a802a.tabs.0.elements.1.fieldUid','\"b341277d-8bc1-411b-a87f-845f206f54b8\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fieldLayouts.12ac6e15-9137-4891-9d97-d205269a802a.tabs.0.elements.1.instructions','null'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fieldLayouts.12ac6e15-9137-4891-9d97-d205269a802a.tabs.0.elements.1.label','null'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fieldLayouts.12ac6e15-9137-4891-9d97-d205269a802a.tabs.0.elements.1.required','false'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fieldLayouts.12ac6e15-9137-4891-9d97-d205269a802a.tabs.0.elements.1.tip','null'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fieldLayouts.12ac6e15-9137-4891-9d97-d205269a802a.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fieldLayouts.12ac6e15-9137-4891-9d97-d205269a802a.tabs.0.elements.1.warning','null'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fieldLayouts.12ac6e15-9137-4891-9d97-d205269a802a.tabs.0.elements.1.width','100'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fieldLayouts.12ac6e15-9137-4891-9d97-d205269a802a.tabs.0.elements.2.fieldUid','\"0598f256-b692-400e-ab10-a3abbe55e729\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fieldLayouts.12ac6e15-9137-4891-9d97-d205269a802a.tabs.0.elements.2.instructions','null'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fieldLayouts.12ac6e15-9137-4891-9d97-d205269a802a.tabs.0.elements.2.label','null'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fieldLayouts.12ac6e15-9137-4891-9d97-d205269a802a.tabs.0.elements.2.required','false'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fieldLayouts.12ac6e15-9137-4891-9d97-d205269a802a.tabs.0.elements.2.tip','null'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fieldLayouts.12ac6e15-9137-4891-9d97-d205269a802a.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fieldLayouts.12ac6e15-9137-4891-9d97-d205269a802a.tabs.0.elements.2.warning','null'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fieldLayouts.12ac6e15-9137-4891-9d97-d205269a802a.tabs.0.elements.2.width','100'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fieldLayouts.12ac6e15-9137-4891-9d97-d205269a802a.tabs.0.name','\"Content\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fieldLayouts.12ac6e15-9137-4891-9d97-d205269a802a.tabs.0.sortOrder','1'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.0598f256-b692-400e-ab10-a3abbe55e729.columnSuffix','null'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.0598f256-b692-400e-ab10-a3abbe55e729.contentColumnType','\"text\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.0598f256-b692-400e-ab10-a3abbe55e729.fieldGroup','null'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.0598f256-b692-400e-ab10-a3abbe55e729.handle','\"externalLink\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.0598f256-b692-400e-ab10-a3abbe55e729.instructions','\"\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.0598f256-b692-400e-ab10-a3abbe55e729.name','\"External link\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.0598f256-b692-400e-ab10-a3abbe55e729.searchable','false'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.0598f256-b692-400e-ab10-a3abbe55e729.settings.byteLimit','null'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.0598f256-b692-400e-ab10-a3abbe55e729.settings.charLimit','null'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.0598f256-b692-400e-ab10-a3abbe55e729.settings.code','\"\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.0598f256-b692-400e-ab10-a3abbe55e729.settings.columnType','null'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.0598f256-b692-400e-ab10-a3abbe55e729.settings.initialRows','\"4\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.0598f256-b692-400e-ab10-a3abbe55e729.settings.multiline','\"\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.0598f256-b692-400e-ab10-a3abbe55e729.settings.placeholder','null'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.0598f256-b692-400e-ab10-a3abbe55e729.settings.uiMode','\"normal\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.0598f256-b692-400e-ab10-a3abbe55e729.translationKeyFormat','null'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.0598f256-b692-400e-ab10-a3abbe55e729.translationMethod','\"none\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.0598f256-b692-400e-ab10-a3abbe55e729.type','\"craft\\\\fields\\\\PlainText\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.24127c19-929c-4799-a4fc-addd0c9b8839.columnSuffix','null'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.24127c19-929c-4799-a4fc-addd0c9b8839.contentColumnType','\"text\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.24127c19-929c-4799-a4fc-addd0c9b8839.fieldGroup','null'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.24127c19-929c-4799-a4fc-addd0c9b8839.handle','\"linkText\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.24127c19-929c-4799-a4fc-addd0c9b8839.instructions','\"\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.24127c19-929c-4799-a4fc-addd0c9b8839.name','\"Link text\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.24127c19-929c-4799-a4fc-addd0c9b8839.searchable','false'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.24127c19-929c-4799-a4fc-addd0c9b8839.settings.byteLimit','null'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.24127c19-929c-4799-a4fc-addd0c9b8839.settings.charLimit','null'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.24127c19-929c-4799-a4fc-addd0c9b8839.settings.code','\"\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.24127c19-929c-4799-a4fc-addd0c9b8839.settings.columnType','null'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.24127c19-929c-4799-a4fc-addd0c9b8839.settings.initialRows','\"4\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.24127c19-929c-4799-a4fc-addd0c9b8839.settings.multiline','\"\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.24127c19-929c-4799-a4fc-addd0c9b8839.settings.placeholder','null'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.24127c19-929c-4799-a4fc-addd0c9b8839.settings.uiMode','\"normal\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.24127c19-929c-4799-a4fc-addd0c9b8839.translationKeyFormat','null'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.24127c19-929c-4799-a4fc-addd0c9b8839.translationMethod','\"none\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.24127c19-929c-4799-a4fc-addd0c9b8839.type','\"craft\\\\fields\\\\PlainText\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.b341277d-8bc1-411b-a87f-845f206f54b8.columnSuffix','null'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.b341277d-8bc1-411b-a87f-845f206f54b8.contentColumnType','\"string\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.b341277d-8bc1-411b-a87f-845f206f54b8.fieldGroup','null'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.b341277d-8bc1-411b-a87f-845f206f54b8.handle','\"internalLink\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.b341277d-8bc1-411b-a87f-845f206f54b8.instructions','\"\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.b341277d-8bc1-411b-a87f-845f206f54b8.name','\"Internal link\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.b341277d-8bc1-411b-a87f-845f206f54b8.searchable','false'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.b341277d-8bc1-411b-a87f-845f206f54b8.settings.allowSelfRelations','false'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.b341277d-8bc1-411b-a87f-845f206f54b8.settings.limit','\"1\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.b341277d-8bc1-411b-a87f-845f206f54b8.settings.localizeRelations','false'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.b341277d-8bc1-411b-a87f-845f206f54b8.settings.selectionLabel','\"Add a link\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.b341277d-8bc1-411b-a87f-845f206f54b8.settings.showSiteMenu','true'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.b341277d-8bc1-411b-a87f-845f206f54b8.settings.source','null'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.b341277d-8bc1-411b-a87f-845f206f54b8.settings.sources','\"*\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.b341277d-8bc1-411b-a87f-845f206f54b8.settings.targetSiteId','null'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.b341277d-8bc1-411b-a87f-845f206f54b8.settings.validateRelatedElements','false'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.b341277d-8bc1-411b-a87f-845f206f54b8.settings.viewMode','null'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.b341277d-8bc1-411b-a87f-845f206f54b8.translationKeyFormat','null'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.b341277d-8bc1-411b-a87f-845f206f54b8.translationMethod','\"site\"'),('superTableBlockTypes.e14f1850-2264-4e3b-85fc-f0fc7ad7b17b.fields.b341277d-8bc1-411b-a87f-845f206f54b8.type','\"craft\\\\fields\\\\Entries\"'),('system.edition','\"pro\"'),('system.live','true'),('system.name','\"NWO\"'),('system.retryDuration','null'),('system.schemaVersion','\"4.0.0.9\"'),('system.timeZone','\"Australia/Brisbane\"'),('tagGroups.b4ffdba8-651f-4b6a-930e-be68fb926f28.fieldLayouts.71638eed-7bdf-49a1-a531-423218098a2c.tabs.0.elements.0.autocapitalize','true'),('tagGroups.b4ffdba8-651f-4b6a-930e-be68fb926f28.fieldLayouts.71638eed-7bdf-49a1-a531-423218098a2c.tabs.0.elements.0.autocomplete','false'),('tagGroups.b4ffdba8-651f-4b6a-930e-be68fb926f28.fieldLayouts.71638eed-7bdf-49a1-a531-423218098a2c.tabs.0.elements.0.autocorrect','true'),('tagGroups.b4ffdba8-651f-4b6a-930e-be68fb926f28.fieldLayouts.71638eed-7bdf-49a1-a531-423218098a2c.tabs.0.elements.0.class','null'),('tagGroups.b4ffdba8-651f-4b6a-930e-be68fb926f28.fieldLayouts.71638eed-7bdf-49a1-a531-423218098a2c.tabs.0.elements.0.disabled','false'),('tagGroups.b4ffdba8-651f-4b6a-930e-be68fb926f28.fieldLayouts.71638eed-7bdf-49a1-a531-423218098a2c.tabs.0.elements.0.id','null'),('tagGroups.b4ffdba8-651f-4b6a-930e-be68fb926f28.fieldLayouts.71638eed-7bdf-49a1-a531-423218098a2c.tabs.0.elements.0.instructions','null'),('tagGroups.b4ffdba8-651f-4b6a-930e-be68fb926f28.fieldLayouts.71638eed-7bdf-49a1-a531-423218098a2c.tabs.0.elements.0.label','null'),('tagGroups.b4ffdba8-651f-4b6a-930e-be68fb926f28.fieldLayouts.71638eed-7bdf-49a1-a531-423218098a2c.tabs.0.elements.0.max','null'),('tagGroups.b4ffdba8-651f-4b6a-930e-be68fb926f28.fieldLayouts.71638eed-7bdf-49a1-a531-423218098a2c.tabs.0.elements.0.min','null'),('tagGroups.b4ffdba8-651f-4b6a-930e-be68fb926f28.fieldLayouts.71638eed-7bdf-49a1-a531-423218098a2c.tabs.0.elements.0.name','null'),('tagGroups.b4ffdba8-651f-4b6a-930e-be68fb926f28.fieldLayouts.71638eed-7bdf-49a1-a531-423218098a2c.tabs.0.elements.0.orientation','null'),('tagGroups.b4ffdba8-651f-4b6a-930e-be68fb926f28.fieldLayouts.71638eed-7bdf-49a1-a531-423218098a2c.tabs.0.elements.0.placeholder','null'),('tagGroups.b4ffdba8-651f-4b6a-930e-be68fb926f28.fieldLayouts.71638eed-7bdf-49a1-a531-423218098a2c.tabs.0.elements.0.readonly','false'),('tagGroups.b4ffdba8-651f-4b6a-930e-be68fb926f28.fieldLayouts.71638eed-7bdf-49a1-a531-423218098a2c.tabs.0.elements.0.requirable','false'),('tagGroups.b4ffdba8-651f-4b6a-930e-be68fb926f28.fieldLayouts.71638eed-7bdf-49a1-a531-423218098a2c.tabs.0.elements.0.size','null'),('tagGroups.b4ffdba8-651f-4b6a-930e-be68fb926f28.fieldLayouts.71638eed-7bdf-49a1-a531-423218098a2c.tabs.0.elements.0.step','null'),('tagGroups.b4ffdba8-651f-4b6a-930e-be68fb926f28.fieldLayouts.71638eed-7bdf-49a1-a531-423218098a2c.tabs.0.elements.0.tip','null'),('tagGroups.b4ffdba8-651f-4b6a-930e-be68fb926f28.fieldLayouts.71638eed-7bdf-49a1-a531-423218098a2c.tabs.0.elements.0.title','null'),('tagGroups.b4ffdba8-651f-4b6a-930e-be68fb926f28.fieldLayouts.71638eed-7bdf-49a1-a531-423218098a2c.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\TitleField\"'),('tagGroups.b4ffdba8-651f-4b6a-930e-be68fb926f28.fieldLayouts.71638eed-7bdf-49a1-a531-423218098a2c.tabs.0.elements.0.warning','null'),('tagGroups.b4ffdba8-651f-4b6a-930e-be68fb926f28.fieldLayouts.71638eed-7bdf-49a1-a531-423218098a2c.tabs.0.elements.0.width','100'),('tagGroups.b4ffdba8-651f-4b6a-930e-be68fb926f28.fieldLayouts.71638eed-7bdf-49a1-a531-423218098a2c.tabs.0.name','\"Content\"'),('tagGroups.b4ffdba8-651f-4b6a-930e-be68fb926f28.fieldLayouts.71638eed-7bdf-49a1-a531-423218098a2c.tabs.0.sortOrder','1'),('tagGroups.b4ffdba8-651f-4b6a-930e-be68fb926f28.handle','\"deliverableTags\"'),('tagGroups.b4ffdba8-651f-4b6a-930e-be68fb926f28.name','\"Deliverable tags\"'),('tagGroups.f9f7ea29-3116-431c-b030-ca588113a389.fieldLayouts.ef3eff9c-8dda-46c3-869b-d9db1c276057.tabs.0.elements.0.autocapitalize','true'),('tagGroups.f9f7ea29-3116-431c-b030-ca588113a389.fieldLayouts.ef3eff9c-8dda-46c3-869b-d9db1c276057.tabs.0.elements.0.autocomplete','false'),('tagGroups.f9f7ea29-3116-431c-b030-ca588113a389.fieldLayouts.ef3eff9c-8dda-46c3-869b-d9db1c276057.tabs.0.elements.0.autocorrect','true'),('tagGroups.f9f7ea29-3116-431c-b030-ca588113a389.fieldLayouts.ef3eff9c-8dda-46c3-869b-d9db1c276057.tabs.0.elements.0.class','null'),('tagGroups.f9f7ea29-3116-431c-b030-ca588113a389.fieldLayouts.ef3eff9c-8dda-46c3-869b-d9db1c276057.tabs.0.elements.0.disabled','false'),('tagGroups.f9f7ea29-3116-431c-b030-ca588113a389.fieldLayouts.ef3eff9c-8dda-46c3-869b-d9db1c276057.tabs.0.elements.0.id','null'),('tagGroups.f9f7ea29-3116-431c-b030-ca588113a389.fieldLayouts.ef3eff9c-8dda-46c3-869b-d9db1c276057.tabs.0.elements.0.instructions','null'),('tagGroups.f9f7ea29-3116-431c-b030-ca588113a389.fieldLayouts.ef3eff9c-8dda-46c3-869b-d9db1c276057.tabs.0.elements.0.label','null'),('tagGroups.f9f7ea29-3116-431c-b030-ca588113a389.fieldLayouts.ef3eff9c-8dda-46c3-869b-d9db1c276057.tabs.0.elements.0.max','null'),('tagGroups.f9f7ea29-3116-431c-b030-ca588113a389.fieldLayouts.ef3eff9c-8dda-46c3-869b-d9db1c276057.tabs.0.elements.0.min','null'),('tagGroups.f9f7ea29-3116-431c-b030-ca588113a389.fieldLayouts.ef3eff9c-8dda-46c3-869b-d9db1c276057.tabs.0.elements.0.name','null'),('tagGroups.f9f7ea29-3116-431c-b030-ca588113a389.fieldLayouts.ef3eff9c-8dda-46c3-869b-d9db1c276057.tabs.0.elements.0.orientation','null'),('tagGroups.f9f7ea29-3116-431c-b030-ca588113a389.fieldLayouts.ef3eff9c-8dda-46c3-869b-d9db1c276057.tabs.0.elements.0.placeholder','null'),('tagGroups.f9f7ea29-3116-431c-b030-ca588113a389.fieldLayouts.ef3eff9c-8dda-46c3-869b-d9db1c276057.tabs.0.elements.0.readonly','false'),('tagGroups.f9f7ea29-3116-431c-b030-ca588113a389.fieldLayouts.ef3eff9c-8dda-46c3-869b-d9db1c276057.tabs.0.elements.0.requirable','false'),('tagGroups.f9f7ea29-3116-431c-b030-ca588113a389.fieldLayouts.ef3eff9c-8dda-46c3-869b-d9db1c276057.tabs.0.elements.0.size','null'),('tagGroups.f9f7ea29-3116-431c-b030-ca588113a389.fieldLayouts.ef3eff9c-8dda-46c3-869b-d9db1c276057.tabs.0.elements.0.step','null'),('tagGroups.f9f7ea29-3116-431c-b030-ca588113a389.fieldLayouts.ef3eff9c-8dda-46c3-869b-d9db1c276057.tabs.0.elements.0.tip','null'),('tagGroups.f9f7ea29-3116-431c-b030-ca588113a389.fieldLayouts.ef3eff9c-8dda-46c3-869b-d9db1c276057.tabs.0.elements.0.title','null'),('tagGroups.f9f7ea29-3116-431c-b030-ca588113a389.fieldLayouts.ef3eff9c-8dda-46c3-869b-d9db1c276057.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\TitleField\"'),('tagGroups.f9f7ea29-3116-431c-b030-ca588113a389.fieldLayouts.ef3eff9c-8dda-46c3-869b-d9db1c276057.tabs.0.elements.0.warning','null'),('tagGroups.f9f7ea29-3116-431c-b030-ca588113a389.fieldLayouts.ef3eff9c-8dda-46c3-869b-d9db1c276057.tabs.0.elements.0.width','100'),('tagGroups.f9f7ea29-3116-431c-b030-ca588113a389.fieldLayouts.ef3eff9c-8dda-46c3-869b-d9db1c276057.tabs.0.name','\"Content\"'),('tagGroups.f9f7ea29-3116-431c-b030-ca588113a389.fieldLayouts.ef3eff9c-8dda-46c3-869b-d9db1c276057.tabs.0.sortOrder','1'),('tagGroups.f9f7ea29-3116-431c-b030-ca588113a389.handle','\"clientTags\"'),('tagGroups.f9f7ea29-3116-431c-b030-ca588113a389.name','\"Client tags\"'),('users.allowPublicRegistration','false'),('users.deactivateByDefault','false'),('users.defaultGroup','\"\"'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elementCondition','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.0.elementCondition','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.0.fieldUid','\"241ab405-efc4-472d-a5a8-f23edb2ad1da\"'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.0.instructions','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.0.label','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.0.required','false'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.0.tip','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.0.uid','\"290738d2-df66-4ba3-ae5a-dbb16ceefe57\"'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.0.userCondition','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.0.warning','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.0.width','100'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.1.elementCondition','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.1.fieldUid','\"819e9bb3-711d-4ca1-aa03-f00b24f3b68a\"'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.1.instructions','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.1.label','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.1.required','false'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.1.tip','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.1.uid','\"9aebbd09-5e96-49b4-ba66-2ffab8ee1d66\"'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.1.userCondition','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.1.warning','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.1.width','100'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.2.elementCondition','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.2.fieldUid','\"dee3103c-72a1-4431-9401-9980ed81d1cd\"'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.2.instructions','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.2.label','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.2.required','false'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.2.tip','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.2.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.2.uid','\"b9fa7052-3ed3-4922-b8e4-ea6396e5328a\"'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.2.userCondition','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.2.warning','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.2.width','100'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.3.elementCondition','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.3.fieldUid','\"1dfaede0-905a-4132-a18f-104b40af2718\"'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.3.instructions','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.3.label','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.3.required','false'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.3.tip','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.3.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.3.uid','\"a8c3868b-5011-4b19-becc-3c7383a17e0c\"'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.3.userCondition','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.3.warning','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.3.width','100'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.4.elementCondition','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.4.fieldUid','\"626f21db-f3f8-49c9-a099-c2416899ef4c\"'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.4.instructions','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.4.label','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.4.required','false'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.4.tip','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.4.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.4.uid','\"f94172f8-7a12-4f86-a95d-098b27eb3b22\"'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.4.userCondition','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.4.warning','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.4.width','100'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.5.elementCondition','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.5.fieldUid','\"b7459780-8fb3-442d-a23b-15dd5d93cdeb\"'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.5.instructions','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.5.label','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.5.required','false'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.5.tip','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.5.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.5.uid','\"01c44199-6134-46ea-be73-c86c14d970c8\"'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.5.userCondition','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.5.warning','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.5.width','100'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.6.elementCondition','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.6.fieldUid','\"aa7cd983-d717-4e90-bce8-4fafcb0c37aa\"'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.6.instructions','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.6.label','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.6.required','false'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.6.tip','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.6.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.6.uid','\"2affa06c-5f85-43fc-8a8c-4c4850a5cc3d\"'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.6.userCondition','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.6.warning','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.6.width','100'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.7.elementCondition','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.7.fieldUid','\"40ae3e60-3464-41d0-bb64-32671fc7f5e9\"'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.7.instructions','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.7.label','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.7.required','false'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.7.tip','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.7.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.7.uid','\"8cabc050-546b-4322-9714-f0e9a933eec0\"'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.7.userCondition','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.7.warning','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.7.width','100'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.8.elementCondition','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.8.type','\"craft\\\\fieldlayoutelements\\\\HorizontalRule\"'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.8.uid','\"289347e5-b348-447b-8042-7e6fccfa1ad7\"'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.elements.8.userCondition','null'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.name','\"User fields\"'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.uid','\"5e3dd4ac-b623-456e-af23-bb89d4ce8d2e\"'),('users.fieldLayouts.906efdea-c886-4f79-9de2-58bc2b8efd35.tabs.0.userCondition','null'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.description','\"\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.handle','\"nwoStaff\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.name','\"NWO Staff\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.0','\"accesssitewhensystemisoff\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.1','\"accesscpwhensystemisoff\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.10','\"assignusergroup:39b88f8d-6448-4a93-ab67-54498561aae6\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.11','\"administrateusers\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.12','\"impersonateusers\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.13','\"editusers\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.14','\"deleteusers\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.15','\"deletepeerentrydrafts:90098b77-7cc0-440f-b64c-27d247c69b07\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.16','\"createentries:a649cddf-ac92-414a-8d24-cff4dcfeb45e\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.17','\"deleteentries:a649cddf-ac92-414a-8d24-cff4dcfeb45e\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.18','\"deletepeerentries:a649cddf-ac92-414a-8d24-cff4dcfeb45e\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.19','\"deletepeerentrydrafts:a649cddf-ac92-414a-8d24-cff4dcfeb45e\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.2','\"performupdates\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.20','\"deletepeerentrydrafts:a0ddfe68-96f9-46b1-a989-31cbcde47626\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.21','\"createentries:6683638f-50e1-4d95-9996-a6e6b3aabff9\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.22','\"deleteentries:6683638f-50e1-4d95-9996-a6e6b3aabff9\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.23','\"deletepeerentries:6683638f-50e1-4d95-9996-a6e6b3aabff9\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.24','\"deletepeerentrydrafts:6683638f-50e1-4d95-9996-a6e6b3aabff9\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.25','\"editglobalset:5511d39d-a282-4557-8bf2-6a3c6f93bd15\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.26','\"editglobalset:67a8fc88-4afd-4f2a-a30e-29cf12e725c4\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.27','\"freeform-dashboardaccess\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.28','\"freeform-submissionsread\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.29','\"freeform-submissionsread:1\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.3','\"accessplugin-feed-me\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.30','\"freeform-submissionsreadindividual\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.31','\"freeform-submissionsmanage\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.32','\"freeform-submissionsmanage:1\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.33','\"freeform-submissionsmanageindividual\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.34','\"freeform-submissionsaccess\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.35','\"freeform-formscreate\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.36','\"freeform-formsdelete\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.37','\"freeform-formsmanage\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.38','\"freeform-formsmanage:1\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.39','\"freeform-formsmanageindividual\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.4','\"accessplugin-freeform\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.40','\"freeform-formsaccess\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.41','\"freeform-fieldsmanage\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.42','\"freeform-fieldsaccess\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.43','\"freeform-notificationsmanage\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.44','\"freeform-notificationsaccess\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.45','\"freeform-access-quick-export\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.46','\"freeform-pro-exportprofilesmanage\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.47','\"freeform-pro-exportprofilesaccess\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.48','\"freeform-settingsaccess\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.49','\"freeform-resources\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.5','\"accessplugin-sprig\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.50','\"viewassets:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.51','\"saveassets:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.52','\"deleteassets:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.53','\"replacefiles:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.54','\"editimages:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.55','\"viewpeerassets:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.56','\"savepeerassets:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.57','\"replacepeerfiles:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.58','\"deletepeerassets:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.59','\"editpeerimages:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.6','\"accesscp\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.60','\"createfolders:873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.61','\"viewcategories:1bc6714f-5786-433d-b7dd-879fbc8767b7\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.62','\"savecategories:1bc6714f-5786-433d-b7dd-879fbc8767b7\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.63','\"deletecategories:1bc6714f-5786-433d-b7dd-879fbc8767b7\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.64','\"viewpeercategorydrafts:1bc6714f-5786-433d-b7dd-879fbc8767b7\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.65','\"savepeercategorydrafts:1bc6714f-5786-433d-b7dd-879fbc8767b7\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.66','\"deletepeercategorydrafts:1bc6714f-5786-433d-b7dd-879fbc8767b7\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.67','\"viewcategories:73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.68','\"savecategories:73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.69','\"deletecategories:73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.7','\"registerusers\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.70','\"viewpeercategorydrafts:73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.71','\"savepeercategorydrafts:73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.72','\"deletepeercategorydrafts:73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.73','\"viewcategories:cfd21061-ac1a-4fa4-adba-02a314e45cb2\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.74','\"savecategories:cfd21061-ac1a-4fa4-adba-02a314e45cb2\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.75','\"deletecategories:cfd21061-ac1a-4fa4-adba-02a314e45cb2\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.76','\"viewpeercategorydrafts:cfd21061-ac1a-4fa4-adba-02a314e45cb2\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.77','\"savepeercategorydrafts:cfd21061-ac1a-4fa4-adba-02a314e45cb2\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.78','\"deletepeercategorydrafts:cfd21061-ac1a-4fa4-adba-02a314e45cb2\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.79','\"viewentries:90098b77-7cc0-440f-b64c-27d247c69b07\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.8','\"moderateusers\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.80','\"saveentries:90098b77-7cc0-440f-b64c-27d247c69b07\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.81','\"viewpeerentrydrafts:90098b77-7cc0-440f-b64c-27d247c69b07\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.82','\"savepeerentrydrafts:90098b77-7cc0-440f-b64c-27d247c69b07\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.83','\"viewentries:a649cddf-ac92-414a-8d24-cff4dcfeb45e\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.84','\"saveentries:a649cddf-ac92-414a-8d24-cff4dcfeb45e\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.85','\"viewpeerentrydrafts:a649cddf-ac92-414a-8d24-cff4dcfeb45e\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.86','\"savepeerentrydrafts:a649cddf-ac92-414a-8d24-cff4dcfeb45e\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.87','\"viewpeerentries:a649cddf-ac92-414a-8d24-cff4dcfeb45e\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.88','\"savepeerentries:a649cddf-ac92-414a-8d24-cff4dcfeb45e\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.89','\"viewentries:a0ddfe68-96f9-46b1-a989-31cbcde47626\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.9','\"assignuserpermissions\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.90','\"saveentries:a0ddfe68-96f9-46b1-a989-31cbcde47626\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.91','\"viewpeerentrydrafts:a0ddfe68-96f9-46b1-a989-31cbcde47626\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.92','\"savepeerentrydrafts:a0ddfe68-96f9-46b1-a989-31cbcde47626\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.93','\"viewentries:6683638f-50e1-4d95-9996-a6e6b3aabff9\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.94','\"saveentries:6683638f-50e1-4d95-9996-a6e6b3aabff9\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.95','\"viewpeerentrydrafts:6683638f-50e1-4d95-9996-a6e6b3aabff9\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.96','\"savepeerentrydrafts:6683638f-50e1-4d95-9996-a6e6b3aabff9\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.97','\"viewpeerentries:6683638f-50e1-4d95-9996-a6e6b3aabff9\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.98','\"savepeerentries:6683638f-50e1-4d95-9996-a6e6b3aabff9\"'),('users.groups.23b92378-5094-4e5b-9831-346803f914f0.permissions.99','\"assignusergroup:23b92378-5094-4e5b-9831-346803f914f0\"'),('users.groups.39b88f8d-6448-4a93-ab67-54498561aae6.description','\"\"'),('users.groups.39b88f8d-6448-4a93-ab67-54498561aae6.handle','\"auditUser\"'),('users.groups.39b88f8d-6448-4a93-ab67-54498561aae6.name','\"Audit user\"'),('users.groups.39b88f8d-6448-4a93-ab67-54498561aae6.permissions.0','\"createentries:1e439968-7658-40fc-b32c-b180f0cf7dd6\"'),('users.groups.39b88f8d-6448-4a93-ab67-54498561aae6.permissions.1','\"deleteentries:1e439968-7658-40fc-b32c-b180f0cf7dd6\"'),('users.groups.39b88f8d-6448-4a93-ab67-54498561aae6.permissions.2','\"viewentries:1e439968-7658-40fc-b32c-b180f0cf7dd6\"'),('users.groups.39b88f8d-6448-4a93-ab67-54498561aae6.permissions.3','\"saveentries:1e439968-7658-40fc-b32c-b180f0cf7dd6\"'),('users.groups.39b88f8d-6448-4a93-ab67-54498561aae6.permissions.4','\"assignusergroup:39b88f8d-6448-4a93-ab67-54498561aae6\"'),('users.photoSubpath','null'),('users.photoVolumeUid','\"873ea5aa-dc28-4da2-b4ca-d8ec958b6638\"'),('users.requireEmailVerification','true'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.fieldLayouts.d736ab1c-0bca-4562-b114-e7fe95fd7a24.tabs.0.elements.0.autocapitalize','true'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.fieldLayouts.d736ab1c-0bca-4562-b114-e7fe95fd7a24.tabs.0.elements.0.autocomplete','false'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.fieldLayouts.d736ab1c-0bca-4562-b114-e7fe95fd7a24.tabs.0.elements.0.autocorrect','true'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.fieldLayouts.d736ab1c-0bca-4562-b114-e7fe95fd7a24.tabs.0.elements.0.class','null'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.fieldLayouts.d736ab1c-0bca-4562-b114-e7fe95fd7a24.tabs.0.elements.0.disabled','false'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.fieldLayouts.d736ab1c-0bca-4562-b114-e7fe95fd7a24.tabs.0.elements.0.id','null'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.fieldLayouts.d736ab1c-0bca-4562-b114-e7fe95fd7a24.tabs.0.elements.0.instructions','null'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.fieldLayouts.d736ab1c-0bca-4562-b114-e7fe95fd7a24.tabs.0.elements.0.label','null'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.fieldLayouts.d736ab1c-0bca-4562-b114-e7fe95fd7a24.tabs.0.elements.0.max','null'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.fieldLayouts.d736ab1c-0bca-4562-b114-e7fe95fd7a24.tabs.0.elements.0.min','null'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.fieldLayouts.d736ab1c-0bca-4562-b114-e7fe95fd7a24.tabs.0.elements.0.name','null'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.fieldLayouts.d736ab1c-0bca-4562-b114-e7fe95fd7a24.tabs.0.elements.0.orientation','null'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.fieldLayouts.d736ab1c-0bca-4562-b114-e7fe95fd7a24.tabs.0.elements.0.placeholder','null'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.fieldLayouts.d736ab1c-0bca-4562-b114-e7fe95fd7a24.tabs.0.elements.0.readonly','false'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.fieldLayouts.d736ab1c-0bca-4562-b114-e7fe95fd7a24.tabs.0.elements.0.requirable','false'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.fieldLayouts.d736ab1c-0bca-4562-b114-e7fe95fd7a24.tabs.0.elements.0.size','null'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.fieldLayouts.d736ab1c-0bca-4562-b114-e7fe95fd7a24.tabs.0.elements.0.step','null'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.fieldLayouts.d736ab1c-0bca-4562-b114-e7fe95fd7a24.tabs.0.elements.0.tip','null'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.fieldLayouts.d736ab1c-0bca-4562-b114-e7fe95fd7a24.tabs.0.elements.0.title','null'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.fieldLayouts.d736ab1c-0bca-4562-b114-e7fe95fd7a24.tabs.0.elements.0.type','\"craft\\\\fieldlayoutelements\\\\assets\\\\AssetTitleField\"'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.fieldLayouts.d736ab1c-0bca-4562-b114-e7fe95fd7a24.tabs.0.elements.0.warning','null'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.fieldLayouts.d736ab1c-0bca-4562-b114-e7fe95fd7a24.tabs.0.elements.0.width','100'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.fieldLayouts.d736ab1c-0bca-4562-b114-e7fe95fd7a24.tabs.0.elements.1.fieldUid','\"befeea26-c25e-40e1-83f3-10a26b46af54\"'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.fieldLayouts.d736ab1c-0bca-4562-b114-e7fe95fd7a24.tabs.0.elements.1.instructions','null'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.fieldLayouts.d736ab1c-0bca-4562-b114-e7fe95fd7a24.tabs.0.elements.1.label','null'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.fieldLayouts.d736ab1c-0bca-4562-b114-e7fe95fd7a24.tabs.0.elements.1.required','false'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.fieldLayouts.d736ab1c-0bca-4562-b114-e7fe95fd7a24.tabs.0.elements.1.tip','null'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.fieldLayouts.d736ab1c-0bca-4562-b114-e7fe95fd7a24.tabs.0.elements.1.type','\"craft\\\\fieldlayoutelements\\\\CustomField\"'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.fieldLayouts.d736ab1c-0bca-4562-b114-e7fe95fd7a24.tabs.0.elements.1.warning','null'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.fieldLayouts.d736ab1c-0bca-4562-b114-e7fe95fd7a24.tabs.0.elements.1.width','100'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.fieldLayouts.d736ab1c-0bca-4562-b114-e7fe95fd7a24.tabs.0.name','\"Content\"'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.fieldLayouts.d736ab1c-0bca-4562-b114-e7fe95fd7a24.tabs.0.sortOrder','1'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.fs','\"upload\"'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.handle','\"upload\"'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.hasUrls','true'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.name','\"Upload\"'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.sortOrder','0'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.titleTranslationKeyFormat','null'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.titleTranslationMethod','\"site\"'),('volumes.873ea5aa-dc28-4da2-b4ca-d8ec958b6638.url','\"$DO_BASE_URL\"');
/*!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;
INSERT INTO `queue` VALUES (562102,'queue','O:34:\"craft\\queue\\jobs\\UpdateSearchIndex\":7:{s:11:\"elementType\";s:20:\"craft\\elements\\Entry\";s:9:\"elementId\";i:143082;s:6:\"siteId\";i:1;s:12:\"fieldHandles\";a:12:{i:0;s:8:\"headline\";i:1;s:5:\"story\";i:2;s:14:\"flexibleLayout\";i:3;s:14:\"calloutHeading\";i:4;s:11:\"calloutText\";i:5;s:17:\"calloutButtonText\";i:6;s:16:\"calloutButtonUrl\";i:7;s:8:\"seoTitle\";i:8;s:14:\"seoDescription\";i:9;s:11:\"seoKeywords\";i:10;s:8:\"seoImage\";i:11;s:19:\"seoImageDescription\";}s:11:\"description\";N;s:30:\"\0craft\\queue\\BaseJob\0_progress\";i:0;s:35:\"\0craft\\queue\\BaseJob\0_progressLabel\";N;}','t9n:[\"app\",\"Updating search indexes\"]',1677463702,300,0,2048,'2023-02-27 02:09:23',1677463763,100,NULL,1,1,'2023-02-27 02:09:23','An exception has been thrown during the rendering of a template (\"session_set_cookie_params(): Session cookie parameters cannot be changed after headers have already been sent\").'),(562104,'queue','O:34:\"craft\\queue\\jobs\\UpdateSearchIndex\":7:{s:11:\"elementType\";s:20:\"craft\\elements\\Entry\";s:9:\"elementId\";i:143082;s:6:\"siteId\";i:1;s:12:\"fieldHandles\";a:1:{i:0;s:14:\"flexibleLayout\";}s:11:\"description\";N;s:30:\"\0craft\\queue\\BaseJob\0_progress\";i:0;s:35:\"\0craft\\queue\\BaseJob\0_progressLabel\";N;}','t9n:[\"app\",\"Updating search indexes\"]',1677463888,300,0,2048,'2023-02-27 02:13:25',1677464005,100,NULL,1,1,'2023-02-27 02:13:25','An exception has been thrown during the rendering of a template (\"session_set_cookie_params(): Session cookie parameters cannot be changed after headers have already been sent\").'),(562111,'queue','O:34:\"craft\\queue\\jobs\\UpdateSearchIndex\":7:{s:11:\"elementType\";s:20:\"craft\\elements\\Entry\";s:9:\"elementId\";i:143080;s:6:\"siteId\";i:1;s:12:\"fieldHandles\";a:12:{i:0;s:8:\"headline\";i:1;s:5:\"story\";i:2;s:14:\"flexibleLayout\";i:3;s:14:\"calloutHeading\";i:4;s:11:\"calloutText\";i:5;s:17:\"calloutButtonText\";i:6;s:16:\"calloutButtonUrl\";i:7;s:8:\"seoTitle\";i:8;s:14:\"seoDescription\";i:9;s:11:\"seoKeywords\";i:10;s:8:\"seoImage\";i:11;s:19:\"seoImageDescription\";}s:11:\"description\";N;s:30:\"\0craft\\queue\\BaseJob\0_progress\";i:0;s:35:\"\0craft\\queue\\BaseJob\0_progressLabel\";N;}','t9n:[\"app\",\"Updating search indexes\"]',1677464198,300,0,2048,'2023-02-27 02:16:39',1677464199,100,NULL,1,1,'2023-02-27 02:16:40','An exception has been thrown during the rendering of a template (\"session_set_cookie_params(): Session cookie parameters cannot be changed after headers have already been sent\").'),(562131,'queue','O:34:\"craft\\queue\\jobs\\UpdateSearchIndex\":7:{s:11:\"elementType\";s:20:\"craft\\elements\\Entry\";s:9:\"elementId\";i:143080;s:6:\"siteId\";i:1;s:12:\"fieldHandles\";a:12:{i:0;s:8:\"headline\";i:1;s:5:\"story\";i:2;s:14:\"flexibleLayout\";i:3;s:14:\"calloutHeading\";i:4;s:11:\"calloutText\";i:5;s:17:\"calloutButtonText\";i:6;s:16:\"calloutButtonUrl\";i:7;s:8:\"seoTitle\";i:8;s:14:\"seoDescription\";i:9;s:11:\"seoKeywords\";i:10;s:8:\"seoImage\";i:11;s:19:\"seoImageDescription\";}s:11:\"description\";N;s:30:\"\0craft\\queue\\BaseJob\0_progress\";i:0;s:35:\"\0craft\\queue\\BaseJob\0_progressLabel\";N;}','t9n:[\"app\",\"Updating search indexes\"]',1677464947,300,0,2048,'2023-02-27 02:29:09',1677464949,100,NULL,1,1,'2023-02-27 02:29:09','An exception has been thrown during the rendering of a template (\"session_set_cookie_params(): Session cookie parameters cannot be changed after headers have already been sent\").'),(562176,'queue','O:34:\"craft\\queue\\jobs\\UpdateSearchIndex\":7:{s:11:\"elementType\";s:20:\"craft\\elements\\Entry\";s:9:\"elementId\";i:143080;s:6:\"siteId\";i:1;s:12:\"fieldHandles\";a:12:{i:0;s:8:\"headline\";i:1;s:5:\"story\";i:2;s:14:\"flexibleLayout\";i:3;s:14:\"calloutHeading\";i:4;s:11:\"calloutText\";i:5;s:17:\"calloutButtonText\";i:6;s:16:\"calloutButtonUrl\";i:7;s:8:\"seoTitle\";i:8;s:14:\"seoDescription\";i:9;s:11:\"seoKeywords\";i:10;s:8:\"seoImage\";i:11;s:19:\"seoImageDescription\";}s:11:\"description\";N;s:30:\"\0craft\\queue\\BaseJob\0_progress\";i:0;s:35:\"\0craft\\queue\\BaseJob\0_progressLabel\";N;}','t9n:[\"app\",\"Updating search indexes\"]',1677568162,300,0,2048,'2023-02-28 07:09:23',1677568163,100,NULL,1,1,'2023-02-28 07:09:23','An exception has been thrown during the rendering of a template (\"session_set_cookie_params(): Session cookie parameters cannot be changed after headers have already been sent\").'),(562207,'queue','O:34:\"craft\\queue\\jobs\\UpdateSearchIndex\":7:{s:11:\"elementType\";s:20:\"craft\\elements\\Entry\";s:9:\"elementId\";i:143080;s:6:\"siteId\";i:1;s:12:\"fieldHandles\";a:12:{i:0;s:8:\"headline\";i:1;s:5:\"story\";i:2;s:14:\"flexibleLayout\";i:3;s:14:\"calloutHeading\";i:4;s:11:\"calloutText\";i:5;s:17:\"calloutButtonText\";i:6;s:16:\"calloutButtonUrl\";i:7;s:8:\"seoTitle\";i:8;s:14:\"seoDescription\";i:9;s:11:\"seoKeywords\";i:10;s:8:\"seoImage\";i:11;s:19:\"seoImageDescription\";}s:11:\"description\";N;s:30:\"\0craft\\queue\\BaseJob\0_progress\";i:0;s:35:\"\0craft\\queue\\BaseJob\0_progressLabel\";N;}','t9n:[\"app\",\"Updating search indexes\"]',1677632976,300,0,2048,'2023-03-01 01:09:38',1677632978,100,NULL,1,1,'2023-03-01 01:09:38','An exception has been thrown during the rendering of a template (\"session_set_cookie_params(): Session cookie parameters cannot be changed after headers have already been sent\").'),(562216,'queue','O:34:\"craft\\queue\\jobs\\UpdateSearchIndex\":7:{s:11:\"elementType\";s:20:\"craft\\elements\\Entry\";s:9:\"elementId\";i:143080;s:6:\"siteId\";i:1;s:12:\"fieldHandles\";a:12:{i:0;s:8:\"headline\";i:1;s:5:\"story\";i:2;s:14:\"flexibleLayout\";i:3;s:14:\"calloutHeading\";i:4;s:11:\"calloutText\";i:5;s:17:\"calloutButtonText\";i:6;s:16:\"calloutButtonUrl\";i:7;s:8:\"seoTitle\";i:8;s:14:\"seoDescription\";i:9;s:11:\"seoKeywords\";i:10;s:8:\"seoImage\";i:11;s:19:\"seoImageDescription\";}s:11:\"description\";N;s:30:\"\0craft\\queue\\BaseJob\0_progress\";i:0;s:35:\"\0craft\\queue\\BaseJob\0_progressLabel\";N;}','t9n:[\"app\",\"Updating search indexes\"]',1677633004,300,0,2048,'2023-03-01 01:11:33',1677633093,100,NULL,1,1,'2023-03-01 01:11:33','An exception has been thrown during the rendering of a template (\"session_set_cookie_params(): Session cookie parameters cannot be changed after headers have already been sent\").'),(562225,'queue','O:34:\"craft\\queue\\jobs\\UpdateSearchIndex\":7:{s:11:\"elementType\";s:20:\"craft\\elements\\Entry\";s:9:\"elementId\";i:143080;s:6:\"siteId\";i:1;s:12:\"fieldHandles\";a:13:{i:0;s:8:\"headline\";i:1;s:5:\"story\";i:2;s:14:\"flexibleLayout\";i:3;s:7:\"showCta\";i:4;s:14:\"calloutHeading\";i:5;s:11:\"calloutText\";i:6;s:17:\"calloutButtonText\";i:7;s:16:\"calloutButtonUrl\";i:8;s:8:\"seoTitle\";i:9;s:14:\"seoDescription\";i:10;s:11:\"seoKeywords\";i:11;s:8:\"seoImage\";i:12;s:19:\"seoImageDescription\";}s:11:\"description\";N;s:30:\"\0craft\\queue\\BaseJob\0_progress\";i:0;s:35:\"\0craft\\queue\\BaseJob\0_progressLabel\";N;}','t9n:[\"app\",\"Updating search indexes\"]',1677636745,300,0,2048,'2023-03-01 02:19:08',1677637148,100,NULL,1,1,'2023-03-01 02:19:08','An exception has been thrown during the rendering of a template (\"session_set_cookie_params(): Session cookie parameters cannot be changed after headers have already been sent\").'),(562233,'queue','O:34:\"craft\\queue\\jobs\\UpdateSearchIndex\":7:{s:11:\"elementType\";s:20:\"craft\\elements\\Entry\";s:9:\"elementId\";i:143080;s:6:\"siteId\";i:1;s:12:\"fieldHandles\";a:13:{i:0;s:8:\"headline\";i:1;s:5:\"story\";i:2;s:14:\"flexibleLayout\";i:3;s:7:\"showCta\";i:4;s:14:\"calloutHeading\";i:5;s:11:\"calloutText\";i:6;s:17:\"calloutButtonText\";i:7;s:16:\"calloutButtonUrl\";i:8;s:8:\"seoTitle\";i:9;s:14:\"seoDescription\";i:10;s:11:\"seoKeywords\";i:11;s:8:\"seoImage\";i:12;s:19:\"seoImageDescription\";}s:11:\"description\";N;s:30:\"\0craft\\queue\\BaseJob\0_progress\";i:0;s:35:\"\0craft\\queue\\BaseJob\0_progressLabel\";N;}','t9n:[\"app\",\"Updating search indexes\"]',1677637558,300,0,2048,'2023-03-01 02:26:01',1677637561,100,NULL,1,1,'2023-03-01 02:26:01','An exception has been thrown during the rendering of a template (\"session_set_cookie_params(): Session cookie parameters cannot be changed after headers have already been sent\").'),(562239,'queue','O:34:\"craft\\queue\\jobs\\UpdateSearchIndex\":7:{s:11:\"elementType\";s:20:\"craft\\elements\\Entry\";s:9:\"elementId\";i:143080;s:6:\"siteId\";i:1;s:12:\"fieldHandles\";a:13:{i:0;s:8:\"headline\";i:1;s:5:\"story\";i:2;s:14:\"flexibleLayout\";i:3;s:7:\"showCta\";i:4;s:14:\"calloutHeading\";i:5;s:11:\"calloutText\";i:6;s:17:\"calloutButtonText\";i:7;s:16:\"calloutButtonUrl\";i:8;s:8:\"seoTitle\";i:9;s:14:\"seoDescription\";i:10;s:11:\"seoKeywords\";i:11;s:8:\"seoImage\";i:12;s:19:\"seoImageDescription\";}s:11:\"description\";N;s:30:\"\0craft\\queue\\BaseJob\0_progress\";i:0;s:35:\"\0craft\\queue\\BaseJob\0_progressLabel\";N;}','t9n:[\"app\",\"Updating search indexes\"]',1677637594,300,0,2048,'2023-03-01 02:26:36',1677637596,100,NULL,1,1,'2023-03-01 02:26:36','An exception has been thrown during the rendering of a template (\"session_set_cookie_params(): Session cookie parameters cannot be changed after headers have already been sent\").'),(562838,'queue','O:34:\"craft\\queue\\jobs\\UpdateSearchIndex\":7:{s:11:\"elementType\";s:20:\"craft\\elements\\Entry\";s:9:\"elementId\";i:143127;s:6:\"siteId\";i:1;s:12:\"fieldHandles\";a:13:{i:0;s:8:\"headline\";i:1;s:5:\"story\";i:2;s:14:\"flexibleLayout\";i:3;s:7:\"showCta\";i:4;s:14:\"calloutHeading\";i:5;s:11:\"calloutText\";i:6;s:17:\"calloutButtonText\";i:7;s:16:\"calloutButtonUrl\";i:8;s:8:\"seoTitle\";i:9;s:14:\"seoDescription\";i:10;s:11:\"seoKeywords\";i:11;s:8:\"seoImage\";i:12;s:19:\"seoImageDescription\";}s:11:\"description\";N;s:30:\"\0craft\\queue\\BaseJob\0_progress\";i:0;s:35:\"\0craft\\queue\\BaseJob\0_progressLabel\";N;}','t9n:[\"app\",\"Updating search indexes\"]',1678407556,300,0,2048,'2023-03-10 00:20:26',1678407626,100,NULL,1,1,'2023-03-10 00:20:26','An exception has been thrown during the rendering of a template (\"session_set_cookie_params(): Session cookie parameters cannot be changed after headers have already been sent\").');
/*!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 (75,64,16639,NULL,16629,1,'2021-05-17 06:03:02','2021-05-17 06:03:02','73a6a164-30aa-42b9-b3bd-177ad0212351'),(76,64,16640,NULL,16630,1,'2021-05-17 06:03:02','2021-05-17 06:03:02','ccc5d204-798d-4bee-81a1-b8d581ae51b8'),(83,64,16655,NULL,16629,1,'2021-05-17 06:05:33','2021-05-17 06:05:33','f2b63ca7-7470-44a8-a7e2-6ea8fd96fb8b'),(84,64,16656,NULL,16630,1,'2021-05-17 06:05:33','2021-05-17 06:05:33','100f9f8a-7249-44fb-90ad-838ef0906af3'),(85,64,16658,NULL,16648,1,'2021-05-17 06:05:33','2021-05-17 06:05:33','759b5e13-0d40-4e06-a64b-473087245196'),(153,64,16744,NULL,16629,1,'2021-05-17 06:17:10','2021-05-17 06:17:10','25a08b66-7bca-4b35-be57-a59079ff729e'),(154,64,16745,NULL,16630,1,'2021-05-17 06:17:10','2021-05-17 06:17:10','0b1b1aef-47ab-4a71-ad94-bd489b7b9c39'),(155,64,16747,NULL,16648,1,'2021-05-17 06:17:10','2021-05-17 06:17:10','13018dc9-e32a-464b-ac5e-24617b176b3f'),(156,64,16748,NULL,16665,1,'2021-05-17 06:17:10','2021-05-17 06:17:10','218dbfef-8fd6-45be-a11d-8d4aeeeba5b4'),(157,64,16749,NULL,16669,1,'2021-05-17 06:17:10','2021-05-17 06:17:10','6807ed6b-d7a2-4824-a1db-319b001bff1a'),(158,64,16750,NULL,16675,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','e89b12ac-2058-491a-a832-00434cf8cdc4'),(159,64,16751,NULL,16683,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','2a5ca3dc-d3c6-4de3-a1b4-5bac7bff974d'),(160,64,16752,NULL,16693,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','0536f582-5e9c-4217-a6c9-f84f2173cfe5'),(161,64,16753,NULL,16705,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','01359fdd-d89e-4a0e-811f-25c16dae5a2a'),(162,64,16754,NULL,16719,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','1ba3737e-a7bd-47ba-bc94-b9227171ad04'),(163,64,16755,NULL,16735,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','c121e060-3645-480e-b383-845f2d4b4c41'),(164,64,16757,NULL,16629,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','9864e005-2758-462e-8ef6-4b5623b7cb69'),(165,64,16758,NULL,16630,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','3e20426a-7a17-4eaa-b984-91e6f0d56178'),(166,64,16760,NULL,16648,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','94af625e-25cd-477d-9b05-5493ac35e445'),(167,64,16761,NULL,16665,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','f0121cd2-3c92-45b1-b124-52b8de230d73'),(168,64,16762,NULL,16669,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','c279e2b0-4561-4699-856a-6e0e425d646a'),(169,64,16763,NULL,16675,1,'2021-05-17 06:17:11','2021-05-17 06:17:11','4340f70a-b6ab-4b04-9173-7f554b75ce0e'),(170,64,16764,NULL,16683,1,'2021-05-17 06:17:12','2021-05-17 06:17:12','9f9630cc-dbaa-4918-9228-b5d2c5ce1a77'),(171,64,16765,NULL,16693,1,'2021-05-17 06:17:12','2021-05-17 06:17:12','83cee1b0-589d-4576-9fe2-3203a34d7dbe'),(172,64,16766,NULL,16705,1,'2021-05-17 06:17:12','2021-05-17 06:17:12','0eefc309-c716-4ef2-b991-9071ba30474d'),(173,64,16767,NULL,16719,1,'2021-05-17 06:17:12','2021-05-17 06:17:12','7c041855-df26-4540-adf0-f975087bef86'),(174,64,16768,NULL,16735,1,'2021-05-17 06:17:12','2021-05-17 06:17:12','b6488dfd-e8dc-4fc4-ae4b-7a4009cb925b'),(175,64,16770,NULL,16629,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','c571d1b3-8bff-4033-8a7d-2e93a623ad43'),(176,64,16771,NULL,16630,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','f588b520-5615-400e-bcc2-c57402c49ade'),(177,64,16773,NULL,16648,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','8c1cfdf4-5764-4c52-a31f-cf1dfbcc2599'),(178,64,16774,NULL,16665,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','3433d74d-5e14-4d86-a01c-d999444f52e1'),(179,64,16775,NULL,16669,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','bfc24074-ffa6-4053-b944-498d11fec6a8'),(180,64,16776,NULL,16675,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','9481dd2e-7702-46f5-aec6-c6a7aac3c81a'),(181,64,16777,NULL,16683,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','d1299ac4-3b67-49d4-8ffc-56524edd8cba'),(182,64,16778,NULL,16693,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','63d6a589-8a3c-4e24-ad16-34a882dba7a5'),(183,64,16779,NULL,16705,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','b690aa6e-abe4-4038-83a1-978ca3a7cdaf'),(184,64,16780,NULL,16719,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','b01ed9e5-3fad-4d42-af0e-c62f2995b3df'),(185,64,16781,NULL,16735,1,'2021-05-17 06:49:14','2021-05-17 06:49:14','6bf999d3-d4c4-4a6f-97ab-ceec3d39524b'),(186,69,16571,NULL,16693,1,'2021-05-17 06:58:02','2021-05-17 06:58:02','476f5064-d8ba-4e6e-bbab-58ba3f13bcba'),(187,69,16782,NULL,16693,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','a5047666-cc64-4157-bbc7-d4eeccf06520'),(188,64,16783,NULL,16629,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','4e5991ba-e812-4b3d-b763-8335782bdaad'),(189,64,16784,NULL,16630,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','a6126675-c5e0-44ad-905e-4216f83100a0'),(190,64,16786,NULL,16648,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','00180a52-e20a-4637-af85-d1362ec0ed3f'),(191,64,16787,NULL,16665,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','02be8780-df2b-405a-8670-68918dc94321'),(192,64,16788,NULL,16669,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','4ce3fe2b-9185-4fd2-add1-b122a90f2f0a'),(193,64,16789,NULL,16675,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','539ce4dc-5e1f-471d-95b7-cd53873bcea9'),(194,64,16790,NULL,16683,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','593ef2a1-b96c-4670-ac1e-ebe2e3f8dfe2'),(195,64,16791,NULL,16693,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','ab196ca7-a4de-4bae-9a9a-7381b08d8507'),(196,64,16792,NULL,16705,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','1ea06c78-4726-4684-afaf-b31fccaa819b'),(197,64,16793,NULL,16719,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','2700630d-76f7-4a5f-812e-642a935e5096'),(198,64,16794,NULL,16735,1,'2021-05-17 06:58:03','2021-05-17 06:58:03','ff449d00-482d-47c1-a91c-064170a1ed83'),(199,70,16571,NULL,16795,1,'2021-05-17 07:01:01','2021-05-17 07:01:01','b321018b-b299-4567-b220-0d197b29f4b0'),(200,69,16796,NULL,16693,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','66ec50d4-c374-48e8-9e24-a136014c3bf7'),(201,70,16796,NULL,16795,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','13910ac4-a9af-4fa5-bebd-f8bb8591af48'),(202,64,16797,NULL,16629,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','225c261a-8118-4dfd-b6c0-58b322c21389'),(203,64,16798,NULL,16630,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','8c268fe7-baad-453c-b1f9-894d8c14e4e1'),(204,64,16800,NULL,16648,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','0c992d2a-47bd-4133-81ca-0643cb1b6b0c'),(205,64,16801,NULL,16665,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','28bbc739-3521-4463-b055-0be12786e125'),(206,64,16802,NULL,16669,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','ffc20477-f052-4eb6-9c4e-a6fe9da3bd52'),(207,64,16803,NULL,16675,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','c6a72af4-f096-4a77-bcff-d2706401b9ae'),(208,64,16804,NULL,16683,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','3fbfd646-2748-49d1-b0cf-738b2d417d9e'),(209,64,16805,NULL,16693,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','3a160643-2493-4a2c-8d0f-a20e573298c2'),(210,64,16806,NULL,16705,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','f4c8120d-9f57-43f0-9f1a-67d472925fbd'),(211,64,16807,NULL,16719,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','4bfe0d17-a209-4098-9f68-4efc50e15015'),(212,64,16808,NULL,16735,1,'2021-05-17 07:01:02','2021-05-17 07:01:02','cd2f5156-951b-4a9f-b050-bbb3a9533803'),(214,69,16810,NULL,16693,1,'2021-05-17 23:37:52','2021-05-17 23:37:52','74cfa97e-4385-4380-a9ce-6b4eb7c030aa'),(215,70,16810,NULL,16795,1,'2021-05-17 23:37:52','2021-05-17 23:37:52','e56f49ae-a409-4653-8a26-d16dd757ef6e'),(217,64,16811,NULL,16629,1,'2021-05-17 23:37:53','2021-05-17 23:37:53','6831e0d8-4210-4791-8e54-637acd47c7f9'),(218,64,16812,NULL,16630,1,'2021-05-17 23:37:53','2021-05-17 23:37:53','7e7c22db-bc4c-4331-9908-52068c36dcd8'),(219,64,16814,NULL,16648,1,'2021-05-17 23:37:53','2021-05-17 23:37:53','6a3ad612-924e-491d-be94-1eca846b7ff4'),(220,64,16815,NULL,16665,1,'2021-05-17 23:37:53','2021-05-17 23:37:53','60cd3b8e-7054-4fd5-b83f-eb3054538853'),(221,64,16816,NULL,16669,1,'2021-05-17 23:37:53','2021-05-17 23:37:53','b3eba0ad-1883-4499-8f8c-3877bf6b9322'),(222,64,16817,NULL,16675,1,'2021-05-17 23:37:53','2021-05-17 23:37:53','068b2a32-639a-49d5-a9ae-9c3426049bdd'),(223,64,16818,NULL,16683,1,'2021-05-17 23:37:53','2021-05-17 23:37:53','59e6b522-de4d-4c65-bca9-d5174999c079'),(224,64,16819,NULL,16693,1,'2021-05-17 23:37:53','2021-05-17 23:37:53','3c684334-63f6-4e3d-988a-a1c3e202f7b2'),(225,64,16820,NULL,16705,1,'2021-05-17 23:37:53','2021-05-17 23:37:53','5ff52129-702f-42da-9a71-13321d41190d'),(226,64,16821,NULL,16719,1,'2021-05-17 23:37:53','2021-05-17 23:37:53','c08ca4fc-1e80-4ba7-83d5-e8b59426fa1c'),(227,64,16822,NULL,16735,1,'2021-05-17 23:37:53','2021-05-17 23:37:53','218729f9-f325-4998-9736-bf62499ef9bf'),(230,69,16828,NULL,16824,1,'2021-05-17 23:41:01','2021-05-17 23:41:01','5270f899-a856-4a03-932f-d17c1db6148f'),(232,69,16830,NULL,16824,1,'2021-05-17 23:41:01','2021-05-17 23:41:01','7cc28c5e-2b9f-48d2-8b7e-d411c2da2f58'),(233,64,16831,NULL,16826,1,'2021-05-17 23:41:01','2021-05-17 23:41:01','8cb5dbe9-2242-4009-adf9-7d7bf3c2d88c'),(234,69,16832,NULL,16824,1,'2021-05-17 23:43:09','2021-05-17 23:43:09','8cc30d15-e305-4575-98b8-8e780e77b215'),(235,64,16833,NULL,16826,1,'2021-05-17 23:43:09','2021-05-17 23:43:09','892fdaa4-4501-4252-8923-2f5043f60b2f'),(236,70,16828,NULL,16834,1,'2021-05-17 23:43:51','2021-05-17 23:43:51','1fa7d337-96fa-434f-a082-8bd2ff3497b4'),(238,69,16836,NULL,16824,1,'2021-05-17 23:43:51','2021-05-17 23:43:51','44f67f86-840c-492e-ab0c-606fb8cd5a63'),(239,70,16836,NULL,16834,1,'2021-05-17 23:43:51','2021-05-17 23:43:51','d1dd39da-e614-48f0-9a97-6366e21df100'),(241,64,16837,NULL,16826,1,'2021-05-17 23:43:51','2021-05-17 23:43:51','67e82980-ab9e-4989-aee3-a034f6078dd3'),(243,69,16841,NULL,16824,1,'2021-05-17 23:46:42','2021-05-17 23:46:42','92743ab9-eaf5-4533-ae69-fcc32b5a055b'),(244,70,16841,NULL,16834,1,'2021-05-17 23:46:42','2021-05-17 23:46:42','6400a0d0-b6de-44fa-b9a2-ca07d5ce4427'),(246,64,16842,NULL,16839,1,'2021-05-17 23:46:42','2021-05-17 23:46:42','7082ca4d-b5a0-499d-b927-21533c2133fb'),(247,69,16844,NULL,16824,1,'2021-05-17 23:48:09','2021-05-17 23:48:09','33fd3b38-30eb-4c43-825d-5c98f8ba0dc1'),(248,70,16844,NULL,16834,1,'2021-05-17 23:48:09','2021-05-17 23:48:09','4b9661a9-3da7-4d06-bb60-7c0a74e16142'),(250,64,16845,NULL,16839,1,'2021-05-17 23:48:10','2021-05-17 23:48:10','22a25953-1dd7-4ab7-9891-46038ac28d06'),(252,69,16848,NULL,16824,1,'2021-05-17 23:51:22','2021-05-17 23:51:22','2ebc74e0-f4a5-4c55-83be-c29fcca736f3'),(253,70,16848,NULL,16834,1,'2021-05-17 23:51:22','2021-05-17 23:51:22','aaf2385c-3e19-4661-942b-994113fe8324'),(255,64,16849,NULL,16839,1,'2021-05-17 23:51:22','2021-05-17 23:51:22','5fc6a152-f6f4-4779-ba2d-abc3f0b9e8af'),(257,69,16852,NULL,16824,1,'2021-05-17 23:54:40','2021-05-17 23:54:40','30bf4013-d15f-49e1-be6b-e3f5fdf594a9'),(258,70,16852,NULL,16834,1,'2021-05-17 23:54:40','2021-05-17 23:54:40','8a5e9d85-a4e0-4dae-a653-40b5c7b41a0f'),(260,64,16853,NULL,16839,1,'2021-05-17 23:54:40','2021-05-17 23:54:40','5756826c-3308-47cb-9342-80371768c21a'),(262,69,16856,NULL,16824,1,'2021-05-18 00:01:20','2021-05-18 00:01:20','f503fe49-1f50-4405-9f59-64e19dbd35e5'),(263,70,16856,NULL,16834,1,'2021-05-18 00:01:20','2021-05-18 00:01:20','35180ad3-7a55-4270-bd11-557acb652dba'),(265,64,16857,NULL,16839,1,'2021-05-18 00:01:20','2021-05-18 00:01:20','22d0ac04-c1f7-4e41-be0e-065b1322facd'),(267,69,16861,NULL,16824,1,'2021-05-18 00:07:48','2021-05-18 00:07:48','2a495f5f-1b53-40e0-bc68-4848c136c1a7'),(268,70,16861,NULL,16834,1,'2021-05-18 00:07:48','2021-05-18 00:07:48','35edd807-ca95-43ae-b514-575aa066964f'),(271,64,16862,NULL,16839,1,'2021-05-18 00:07:48','2021-05-18 00:07:48','82adad7d-ad2a-427f-be02-c04ee5bc30ce'),(644,73,17603,NULL,16866,1,'2021-05-18 03:20:48','2021-05-18 03:20:48','710aede0-526b-4f84-b060-149b26ea1bbd'),(645,73,17603,NULL,16867,2,'2021-05-18 03:20:48','2021-05-18 03:20:48','c1d2ecde-c8ae-403a-a7c3-657a7c7cec24'),(646,73,17603,NULL,16869,3,'2021-05-18 03:20:48','2021-05-18 03:20:48','5cc8b6fd-7117-4e8b-b348-76f98d2a71db'),(647,73,17603,NULL,16870,4,'2021-05-18 03:20:48','2021-05-18 03:20:48','43b174bb-14c8-4ec8-8c06-977fbd97f91b'),(648,73,17603,NULL,17600,5,'2021-05-18 03:20:48','2021-05-18 03:20:48','aad4c84d-8a0d-4207-8d2a-cb463c86689c'),(649,73,17603,NULL,17601,6,'2021-05-18 03:20:48','2021-05-18 03:20:48','a291fe9d-c544-4554-b185-0c1bc07bc39c'),(650,73,17603,NULL,17602,7,'2021-05-18 03:20:48','2021-05-18 03:20:48','7555bc2f-b18a-4c10-a17d-e697fa971aac'),(651,73,17604,NULL,16866,1,'2021-05-18 03:20:48','2021-05-18 03:20:48','ba48ef63-358b-4924-b22a-cbb9846cbfe9'),(652,73,17604,NULL,16867,2,'2021-05-18 03:20:48','2021-05-18 03:20:48','e6d65154-ffce-4f69-a637-e9e33c45a8fc'),(653,73,17604,NULL,16869,3,'2021-05-18 03:20:48','2021-05-18 03:20:48','b0b58c06-ef07-4fd7-ae89-9b927aee9e60'),(654,73,17604,NULL,16870,4,'2021-05-18 03:20:48','2021-05-18 03:20:48','65e7e56c-a90a-44b9-8744-3d3810428c69'),(655,73,17604,NULL,17600,5,'2021-05-18 03:20:48','2021-05-18 03:20:48','f2aaa8aa-f899-46bc-8fad-206f5e3c9094'),(656,73,17604,NULL,17601,6,'2021-05-18 03:20:48','2021-05-18 03:20:48','6e886ffc-441d-4868-a838-a461f4402c2e'),(657,73,17604,NULL,17602,7,'2021-05-18 03:20:48','2021-05-18 03:20:48','f74d1088-e71c-4cea-b210-a94b62516c97'),(658,73,17608,NULL,16867,1,'2021-05-18 03:20:48','2021-05-18 03:20:48','9ab8965f-4c85-4338-b8c5-c23e44e03f2d'),(659,73,17608,NULL,16870,2,'2021-05-18 03:20:48','2021-05-18 03:20:48','89c7f1ed-9c1f-44e7-9c95-4b4dedf3dc38'),(660,73,17608,NULL,17605,3,'2021-05-18 03:20:48','2021-05-18 03:20:48','b1009736-dad8-4bde-abcc-6c39e11e5953'),(661,73,17608,NULL,17606,4,'2021-05-18 03:20:48','2021-05-18 03:20:48','ae2e33a0-ecdc-4ca2-8d18-41c2bbd4118c'),(662,73,17608,NULL,17607,5,'2021-05-18 03:20:48','2021-05-18 03:20:48','0e3205d2-ce57-4ed2-91b2-79e132fb38ff'),(663,73,17609,NULL,16867,1,'2021-05-18 03:20:48','2021-05-18 03:20:48','2243149c-1a95-4c03-8685-2dd8a028d4a8'),(664,73,17609,NULL,16870,2,'2021-05-18 03:20:48','2021-05-18 03:20:48','045a72af-e0d7-4bc2-9c82-5f2e33ee0841'),(665,73,17609,NULL,17605,3,'2021-05-18 03:20:48','2021-05-18 03:20:48','495b2022-4f23-4a01-8a20-7861b6566046'),(666,73,17609,NULL,17606,4,'2021-05-18 03:20:48','2021-05-18 03:20:48','a3b9aff2-24f1-4789-93c9-a50f2494e642'),(667,73,17609,NULL,17607,5,'2021-05-18 03:20:48','2021-05-18 03:20:48','45c5f743-fe73-4a10-bd35-ed0e9a4e6573'),(668,73,17611,NULL,16867,1,'2021-05-18 03:20:48','2021-05-18 03:20:48','bfc2874c-279f-468d-9ae6-cb7d805565f7'),(669,73,17611,NULL,16880,2,'2021-05-18 03:20:48','2021-05-18 03:20:48','6db10c35-0632-490c-b34a-ed9abb81900d'),(670,73,17611,NULL,16881,3,'2021-05-18 03:20:48','2021-05-18 03:20:48','53a08347-9ce8-432f-a826-e1ba3d74250a'),(671,73,17611,NULL,16882,4,'2021-05-18 03:20:48','2021-05-18 03:20:48','b6a6d3b8-5b77-4d1d-8562-5d789280b9f8'),(672,73,17611,NULL,17610,5,'2021-05-18 03:20:48','2021-05-18 03:20:48','e6610d64-f7d4-45b4-b5fe-1fd554b91e08'),(673,73,17612,NULL,16867,1,'2021-05-18 03:20:48','2021-05-18 03:20:48','26243c69-a562-44cc-acaf-c5d9f8aa2d24'),(674,73,17612,NULL,16880,2,'2021-05-18 03:20:48','2021-05-18 03:20:48','83e8ea37-3482-42ee-aab3-f337479655a5'),(675,73,17612,NULL,16881,3,'2021-05-18 03:20:48','2021-05-18 03:20:48','dc019cf0-0bbc-4066-886b-a3d0e266e344'),(676,73,17612,NULL,16882,4,'2021-05-18 03:20:48','2021-05-18 03:20:48','dd900523-5795-4053-baaf-d0378beeaecc'),(677,73,17612,NULL,17610,5,'2021-05-18 03:20:48','2021-05-18 03:20:48','785e6e60-de3c-4618-aedb-ccf40cabb43e'),(678,73,17613,NULL,16867,1,'2021-05-18 03:20:49','2021-05-18 03:20:49','9bfbdfc0-ad49-4cf4-bac0-35285b74ba2b'),(679,73,17613,NULL,16886,2,'2021-05-18 03:20:49','2021-05-18 03:20:49','941c2b62-b342-41a0-ad48-bf6a83a48838'),(680,73,17613,NULL,16887,3,'2021-05-18 03:20:49','2021-05-18 03:20:49','e24f20a6-5d04-4be8-8fed-29503a411704'),(681,73,17613,NULL,16888,4,'2021-05-18 03:20:49','2021-05-18 03:20:49','8be7b5cf-b51f-4105-b10a-4e2415a88f3a'),(682,73,17613,NULL,16889,5,'2021-05-18 03:20:49','2021-05-18 03:20:49','0b457c3f-e892-4b28-a88d-3fbc40e4f4c1'),(683,73,17614,NULL,16867,1,'2021-05-18 03:20:49','2021-05-18 03:20:49','89fba358-e60f-4b75-819b-0c85cfe4e770'),(684,73,17614,NULL,16886,2,'2021-05-18 03:20:49','2021-05-18 03:20:49','749b0b97-7545-4ee9-b5a0-79a76cddc3c3'),(685,73,17614,NULL,16887,3,'2021-05-18 03:20:49','2021-05-18 03:20:49','f483521c-18b3-4e48-802e-f12a7f66f85d'),(686,73,17614,NULL,16888,4,'2021-05-18 03:20:49','2021-05-18 03:20:49','cdf677a3-055a-469f-981b-0a0b032a5467'),(687,73,17614,NULL,16889,5,'2021-05-18 03:20:49','2021-05-18 03:20:49','6a892d4c-22e2-4e1b-8b7d-c573cbae4cc7'),(688,73,17615,NULL,16867,1,'2021-05-18 03:20:49','2021-05-18 03:20:49','3cb4233c-539f-4a78-8e7f-c8db919813b6'),(689,73,17615,NULL,16881,2,'2021-05-18 03:20:49','2021-05-18 03:20:49','013cdaa9-aa75-48f3-bfb9-93a6c468f6aa'),(690,73,17615,NULL,16889,3,'2021-05-18 03:20:49','2021-05-18 03:20:49','aa0d876f-f20e-4cea-96b1-71a8311204fc'),(691,73,17615,NULL,16892,4,'2021-05-18 03:20:49','2021-05-18 03:20:49','5a5e17ed-4be1-4bd3-9a10-c04093edd407'),(692,73,17615,NULL,16893,5,'2021-05-18 03:20:49','2021-05-18 03:20:49','d8f93a53-4ede-4038-8974-d485a5617c4f'),(693,73,17616,NULL,16867,1,'2021-05-18 03:20:49','2021-05-18 03:20:49','4b781579-2c8b-4067-a0fc-f9c12d21e9cc'),(694,73,17616,NULL,16881,2,'2021-05-18 03:20:49','2021-05-18 03:20:49','ff465c92-d1f3-4702-b59f-a424a9f19bbe'),(695,73,17616,NULL,16889,3,'2021-05-18 03:20:49','2021-05-18 03:20:49','bad57e33-3787-4d67-a1ca-a5e9941cd6e5'),(696,73,17616,NULL,16892,4,'2021-05-18 03:20:49','2021-05-18 03:20:49','8b5febab-bde5-4d57-b5dd-df944bc1967b'),(697,73,17616,NULL,16893,5,'2021-05-18 03:20:49','2021-05-18 03:20:49','077c1e2e-7190-4e8d-b1c0-b318d7b80ae2'),(698,73,17617,NULL,16867,1,'2021-05-18 03:20:49','2021-05-18 03:20:49','c70a96be-6d10-4391-96bf-b1005aa1d5f7'),(699,73,17617,NULL,16880,2,'2021-05-18 03:20:49','2021-05-18 03:20:49','413f5931-d778-46d9-8286-73ea9ab680cf'),(700,73,17617,NULL,16881,3,'2021-05-18 03:20:49','2021-05-18 03:20:49','765061bb-0ca8-4513-b1b9-c7ab7625011d'),(701,73,17617,NULL,16896,4,'2021-05-18 03:20:49','2021-05-18 03:20:49','302a8e9f-b652-4674-a976-c8fcaccccf98'),(702,73,17617,NULL,16897,5,'2021-05-18 03:20:49','2021-05-18 03:20:49','14307877-d3cd-4fc1-9b8e-a415b3b7abb0'),(703,73,17618,NULL,16867,1,'2021-05-18 03:20:49','2021-05-18 03:20:49','b2c7bb9a-2c87-4375-b180-49a77671ecb0'),(704,73,17618,NULL,16880,2,'2021-05-18 03:20:49','2021-05-18 03:20:49','275850bd-d4ce-4254-8e30-fa6741f6d2ca'),(705,73,17618,NULL,16881,3,'2021-05-18 03:20:49','2021-05-18 03:20:49','d3e73898-f5ce-48b9-a5e0-e9f033cedeff'),(706,73,17618,NULL,16896,4,'2021-05-18 03:20:49','2021-05-18 03:20:49','b0049bc1-fa7c-4ede-a8e5-40397f05e740'),(707,73,17618,NULL,16897,5,'2021-05-18 03:20:49','2021-05-18 03:20:49','b613ec22-1f21-43e0-8691-815268a19a3b'),(708,73,17621,NULL,16867,1,'2021-05-18 03:20:49','2021-05-18 03:20:49','8f8870fc-3e64-4643-9c16-9bd30b291025'),(709,73,17621,NULL,16870,2,'2021-05-18 03:20:49','2021-05-18 03:20:49','459c69fa-9acf-4b1a-87ea-8033739022a1'),(710,73,17621,NULL,16900,3,'2021-05-18 03:20:49','2021-05-18 03:20:49','d1bf09f3-79a3-4cbe-aeec-c44bf3721355'),(711,73,17621,NULL,16901,4,'2021-05-18 03:20:49','2021-05-18 03:20:49','54d194a7-c866-4306-9298-821830d4c330'),(712,73,17621,NULL,16903,5,'2021-05-18 03:20:49','2021-05-18 03:20:49','a96f8522-c4c4-4d6f-814b-a39a7540b766'),(713,73,17621,NULL,17619,6,'2021-05-18 03:20:49','2021-05-18 03:20:49','1c0e1568-68d4-4e04-ab16-f6c31eef2683'),(714,73,17621,NULL,17620,7,'2021-05-18 03:20:49','2021-05-18 03:20:49','8028363b-29b4-47b5-8f06-e956b64baa28'),(715,73,17622,NULL,16867,1,'2021-05-18 03:20:50','2021-05-18 03:20:50','1fbf9376-4eac-4240-8359-4caca6274f14'),(716,73,17622,NULL,16870,2,'2021-05-18 03:20:50','2021-05-18 03:20:50','d9642d8b-c55c-443d-a02f-8392207cd0d1'),(717,73,17622,NULL,16900,3,'2021-05-18 03:20:50','2021-05-18 03:20:50','d7faf34d-76a4-4cc0-ab7d-2d14a4bac4bc'),(718,73,17622,NULL,16901,4,'2021-05-18 03:20:50','2021-05-18 03:20:50','723ae648-8d11-415d-a9d3-e1b04cb259e6'),(719,73,17622,NULL,16903,5,'2021-05-18 03:20:50','2021-05-18 03:20:50','4b3bf197-ccc4-43c0-8fee-56e806c49a31'),(720,73,17622,NULL,17619,6,'2021-05-18 03:20:50','2021-05-18 03:20:50','463b2c18-426d-49f7-81f6-1cb159773947'),(721,73,17622,NULL,17620,7,'2021-05-18 03:20:50','2021-05-18 03:20:50','59fdd593-a2af-4a46-85f2-300fe43f2a17'),(722,73,17623,NULL,16867,1,'2021-05-18 03:20:50','2021-05-18 03:20:50','bbd8f926-cffa-4404-b58d-fa0f6fbd8b55'),(723,73,17623,NULL,16881,2,'2021-05-18 03:20:50','2021-05-18 03:20:50','48f9a513-90ed-4ae0-b5d3-b144f2146b26'),(724,73,17623,NULL,16886,3,'2021-05-18 03:20:50','2021-05-18 03:20:50','795417f9-40f4-4c5a-a205-598fdd856028'),(725,73,17623,NULL,16889,4,'2021-05-18 03:20:50','2021-05-18 03:20:50','5aaba15c-3d42-4aed-a81a-3f4faf1df4c1'),(726,73,17623,NULL,16892,5,'2021-05-18 03:20:50','2021-05-18 03:20:50','ce267a95-3450-436f-baff-5fcb37987652'),(727,73,17623,NULL,16907,6,'2021-05-18 03:20:50','2021-05-18 03:20:50','d74ff3d8-369d-40c6-97d2-97f84b626482'),(728,73,17623,NULL,16908,7,'2021-05-18 03:20:50','2021-05-18 03:20:50','5004fdf8-88a7-4e62-b3ba-7ef191dab645'),(729,73,17623,NULL,17607,8,'2021-05-18 03:20:50','2021-05-18 03:20:50','ea328a99-3631-4c08-ac60-13fbbea1c858'),(730,73,17624,NULL,16867,1,'2021-05-18 03:20:50','2021-05-18 03:20:50','d136fe73-9317-4bda-89ba-9a742d4e59f2'),(731,73,17624,NULL,16881,2,'2021-05-18 03:20:50','2021-05-18 03:20:50','a528777a-d4ae-4535-b3cd-97ba12158890'),(732,73,17624,NULL,16886,3,'2021-05-18 03:20:50','2021-05-18 03:20:50','636492f6-c59a-43b7-ab70-0d33eb85c6e9'),(733,73,17624,NULL,16889,4,'2021-05-18 03:20:50','2021-05-18 03:20:50','3813358b-6640-4a0b-af28-4263f3994c94'),(734,73,17624,NULL,16892,5,'2021-05-18 03:20:50','2021-05-18 03:20:50','d7a50292-7ab2-41f8-ac84-0c212e724d5e'),(735,73,17624,NULL,16907,6,'2021-05-18 03:20:50','2021-05-18 03:20:50','88db26ed-90ca-4ab7-9f02-28dfe5bd4603'),(736,73,17624,NULL,16908,7,'2021-05-18 03:20:50','2021-05-18 03:20:50','1216cfc6-4449-4c5a-b747-6e2a65964d32'),(737,73,17624,NULL,17607,8,'2021-05-18 03:20:50','2021-05-18 03:20:50','7f432155-68fc-48fd-9386-60c40ec2b4d8'),(738,73,17626,NULL,16870,1,'2021-05-18 03:20:50','2021-05-18 03:20:50','c697d904-ce17-4830-89ec-9c441bb9d54f'),(739,73,17626,NULL,16908,2,'2021-05-18 03:20:50','2021-05-18 03:20:50','29519063-4942-4722-b50e-fb7b0cdb9d3e'),(740,73,17626,NULL,16911,3,'2021-05-18 03:20:50','2021-05-18 03:20:50','37d0c533-c99a-45c2-9ea5-d752680ef366'),(741,73,17626,NULL,17619,4,'2021-05-18 03:20:50','2021-05-18 03:20:50','b992cc8e-2433-48dc-a61d-f45d1d04eeb1'),(742,73,17626,NULL,17620,5,'2021-05-18 03:20:50','2021-05-18 03:20:50','c396b13e-906d-48f5-942f-55cf8910ddc2'),(743,73,17626,NULL,17625,6,'2021-05-18 03:20:50','2021-05-18 03:20:50','45e52e96-27fc-47be-9898-8e36f3ae2e52'),(744,73,17627,NULL,16870,1,'2021-05-18 03:20:50','2021-05-18 03:20:50','e98bccb4-2dcf-4afc-ae28-d657b1a45a48'),(745,73,17627,NULL,16908,2,'2021-05-18 03:20:50','2021-05-18 03:20:50','bd1041a6-8bf8-49ac-97f9-1176f90450bd'),(746,73,17627,NULL,16911,3,'2021-05-18 03:20:50','2021-05-18 03:20:50','b7a7605c-a14e-4648-a55d-634123610f18'),(747,73,17627,NULL,17619,4,'2021-05-18 03:20:50','2021-05-18 03:20:50','ef04ea03-c760-4662-97fb-bd5e6f8dc85c'),(748,73,17627,NULL,17620,5,'2021-05-18 03:20:50','2021-05-18 03:20:50','ac2a13cf-b313-4809-9647-d5d5f441cc23'),(749,73,17627,NULL,17625,6,'2021-05-18 03:20:50','2021-05-18 03:20:50','42086671-2c3b-44a9-9130-7d39d3f3f766'),(750,73,17628,NULL,16867,1,'2021-05-18 03:20:50','2021-05-18 03:20:50','959538e4-8b58-4f79-a500-8ff840dab36e'),(751,73,17628,NULL,16880,2,'2021-05-18 03:20:50','2021-05-18 03:20:50','b6ffe2df-44bd-4981-a30a-b55e873b96bc'),(752,73,17628,NULL,16892,3,'2021-05-18 03:20:50','2021-05-18 03:20:50','b6e94d49-db5e-4039-b345-bb8665b48ba5'),(753,73,17628,NULL,16896,4,'2021-05-18 03:20:50','2021-05-18 03:20:50','73443c48-c8f2-41c4-940c-c15682899feb'),(754,73,17628,NULL,16897,5,'2021-05-18 03:20:50','2021-05-18 03:20:50','48bd1724-744c-425f-b6c3-8a4eb668284b'),(755,73,17628,NULL,16915,6,'2021-05-18 03:20:50','2021-05-18 03:20:50','5240c942-043b-4aa3-8651-bc93e0f5a403'),(756,73,17629,NULL,16867,1,'2021-05-18 03:20:50','2021-05-18 03:20:50','0d3a607a-2192-447f-bfef-5286fbf3c5fc'),(757,73,17629,NULL,16880,2,'2021-05-18 03:20:50','2021-05-18 03:20:50','597bb75c-6a6d-47ad-b8fa-fc726611f045'),(758,73,17629,NULL,16892,3,'2021-05-18 03:20:50','2021-05-18 03:20:50','292731d8-f434-4c94-af46-610c64415169'),(759,73,17629,NULL,16896,4,'2021-05-18 03:20:50','2021-05-18 03:20:50','d6bc5b03-0837-4cc9-a018-b470ed3627c8'),(760,73,17629,NULL,16897,5,'2021-05-18 03:20:50','2021-05-18 03:20:50','c00283f0-de6e-42f8-aa8d-fd1d60f98dda'),(761,73,17629,NULL,16915,6,'2021-05-18 03:20:50','2021-05-18 03:20:50','7490f4c5-2e9e-4d85-9775-421d3ff92646'),(762,73,17631,NULL,16867,1,'2021-05-18 03:20:51','2021-05-18 03:20:51','ad1b9841-b9dd-4a0e-8bf8-b36690fd9bbd'),(763,73,17631,NULL,16870,2,'2021-05-18 03:20:51','2021-05-18 03:20:51','1395f156-4bbc-49ea-9751-13ed585fea6a'),(764,73,17631,NULL,16892,3,'2021-05-18 03:20:51','2021-05-18 03:20:51','7f387d2a-5497-4e79-9c20-400db5f3b519'),(765,73,17631,NULL,16901,4,'2021-05-18 03:20:51','2021-05-18 03:20:51','9b668d5b-0e42-4505-9993-90bd34d4a7b1'),(766,73,17631,NULL,16918,5,'2021-05-18 03:20:51','2021-05-18 03:20:51','3839a8f3-5ddb-4668-8096-a2fb71184a41'),(767,73,17631,NULL,16920,6,'2021-05-18 03:20:51','2021-05-18 03:20:51','089eca9f-e2db-4ea6-8fd9-12f48d11d58c'),(768,73,17631,NULL,17630,7,'2021-05-18 03:20:51','2021-05-18 03:20:51','c4454624-3f9a-4db7-ae33-7a7935dcdc06'),(769,73,17632,NULL,16867,1,'2021-05-18 03:20:51','2021-05-18 03:20:51','1b02f0f0-d8ad-4618-9196-bb270d0612db'),(770,73,17632,NULL,16870,2,'2021-05-18 03:20:51','2021-05-18 03:20:51','a0a43e09-8b04-4a84-b2bc-06daab4a0385'),(771,73,17632,NULL,16892,3,'2021-05-18 03:20:51','2021-05-18 03:20:51','556f34f0-8da1-4181-8e06-a07529c0e560'),(772,73,17632,NULL,16901,4,'2021-05-18 03:20:51','2021-05-18 03:20:51','280d2783-5eab-4da3-928d-ee596681aecb'),(773,73,17632,NULL,16918,5,'2021-05-18 03:20:51','2021-05-18 03:20:51','1506508b-6cc7-4e96-83b0-a7d332446c25'),(774,73,17632,NULL,16920,6,'2021-05-18 03:20:51','2021-05-18 03:20:51','6decb592-26bf-4892-a7f0-3ce3b55649b0'),(775,73,17632,NULL,17630,7,'2021-05-18 03:20:51','2021-05-18 03:20:51','234730f5-7365-4c86-ac77-33fd9f102a87'),(776,73,17633,NULL,16867,1,'2021-05-18 03:20:51','2021-05-18 03:20:51','f1819564-e144-4a19-b1e5-d45311aa28fa'),(777,73,17633,NULL,16880,2,'2021-05-18 03:20:51','2021-05-18 03:20:51','386e988d-ab7b-497d-b3fd-43838446ad81'),(778,73,17633,NULL,16886,3,'2021-05-18 03:20:51','2021-05-18 03:20:51','7e4220e0-5f57-4a68-9dfc-30190f4b2ece'),(779,73,17633,NULL,16889,4,'2021-05-18 03:20:51','2021-05-18 03:20:51','32ec98cf-dc20-4118-9a02-507e5951fa09'),(780,73,17633,NULL,16897,5,'2021-05-18 03:20:51','2021-05-18 03:20:51','65ea67af-b00d-42b7-997c-8ec594b61ff0'),(781,73,17633,NULL,16908,6,'2021-05-18 03:20:51','2021-05-18 03:20:51','82b2ac26-b481-418c-b028-a13d64c7082b'),(782,73,17633,NULL,16923,7,'2021-05-18 03:20:51','2021-05-18 03:20:51','fcb26201-9899-43d1-810d-90405b82b458'),(783,73,17634,NULL,16867,1,'2021-05-18 03:20:51','2021-05-18 03:20:51','61305ad8-d4e0-4ed4-96d2-0f15a6c84adf'),(784,73,17634,NULL,16880,2,'2021-05-18 03:20:51','2021-05-18 03:20:51','7b828196-7291-447f-acbd-ab4b45855bfc'),(785,73,17634,NULL,16886,3,'2021-05-18 03:20:51','2021-05-18 03:20:51','44257dbd-7964-4c42-9c7a-9eb8d3743cbe'),(786,73,17634,NULL,16889,4,'2021-05-18 03:20:51','2021-05-18 03:20:51','3bf7024b-48b1-4ef0-9046-b78bc16d62eb'),(787,73,17634,NULL,16897,5,'2021-05-18 03:20:51','2021-05-18 03:20:51','858c7f4f-06ec-4f24-9bf4-f008e99ea936'),(788,73,17634,NULL,16908,6,'2021-05-18 03:20:51','2021-05-18 03:20:51','8e48f445-0d8a-4d5b-8286-f39dc37b89d7'),(789,73,17634,NULL,16923,7,'2021-05-18 03:20:51','2021-05-18 03:20:51','31378240-77ac-444a-afbd-72cf7b8e5e46'),(790,73,17635,NULL,16867,1,'2021-05-18 03:20:51','2021-05-18 03:20:51','3782bb37-7a65-4d29-96fc-ad3c313e43f4'),(791,73,17635,NULL,16869,2,'2021-05-18 03:20:51','2021-05-18 03:20:51','241ee200-3cac-40f2-8920-67664fe9ffe8'),(792,73,17635,NULL,16903,3,'2021-05-18 03:20:51','2021-05-18 03:20:51','71036785-a236-4a54-bf06-4d6a6e889db8'),(793,73,17635,NULL,16908,4,'2021-05-18 03:20:51','2021-05-18 03:20:51','83788792-c121-4885-8199-d9bbaddd6dd4'),(794,73,17635,NULL,16923,5,'2021-05-18 03:20:51','2021-05-18 03:20:51','aa9fe565-bbc5-4a15-9be6-9d234410d52b'),(795,73,17635,NULL,16926,6,'2021-05-18 03:20:51','2021-05-18 03:20:51','9d117342-f054-4478-ac66-cedfa31fba5a'),(796,73,17635,NULL,16927,7,'2021-05-18 03:20:51','2021-05-18 03:20:51','225e4e0d-aab3-4e6a-b0b3-902199fec8d8'),(797,73,17635,NULL,17607,8,'2021-05-18 03:20:51','2021-05-18 03:20:51','70c12e4b-c0d6-4054-9d5a-45ebe82268b8'),(798,73,17636,NULL,16867,1,'2021-05-18 03:20:51','2021-05-18 03:20:51','b28559b1-1e87-4c8b-8fcd-33407bc0402c'),(799,73,17636,NULL,16869,2,'2021-05-18 03:20:51','2021-05-18 03:20:51','04cb7ff0-26e1-4061-afcc-8a5729411fd2'),(800,73,17636,NULL,16903,3,'2021-05-18 03:20:51','2021-05-18 03:20:51','308b01cc-e21e-4dfb-88db-2a77eab6faad'),(801,73,17636,NULL,16908,4,'2021-05-18 03:20:51','2021-05-18 03:20:51','73fd5ada-64d1-425d-9e1a-6eb7b7551f78'),(802,73,17636,NULL,16923,5,'2021-05-18 03:20:51','2021-05-18 03:20:51','f96afa53-f720-40d3-963d-1494fb7b262c'),(803,73,17636,NULL,16926,6,'2021-05-18 03:20:51','2021-05-18 03:20:51','a80f301f-9bd0-49b7-a478-2c105c068db0'),(804,73,17636,NULL,16927,7,'2021-05-18 03:20:51','2021-05-18 03:20:51','5ca719a0-2a48-439b-b0ab-5e054351efb8'),(805,73,17636,NULL,17607,8,'2021-05-18 03:20:51','2021-05-18 03:20:51','eb09c1c2-bbfe-44f8-8f82-7b4cc01e4642'),(806,73,17638,NULL,16867,1,'2021-05-18 03:20:51','2021-05-18 03:20:51','e57d5b58-4749-47fc-9c03-dbfd6751a402'),(807,73,17638,NULL,16908,2,'2021-05-18 03:20:51','2021-05-18 03:20:51','69699f5a-ad38-4f2f-966d-e4f4a88ec4ba'),(808,73,17638,NULL,16911,3,'2021-05-18 03:20:51','2021-05-18 03:20:51','8fd4a47b-c05e-4f4f-a934-7b1762924fb5'),(809,73,17638,NULL,16930,4,'2021-05-18 03:20:51','2021-05-18 03:20:51','af333cd0-a611-42b9-ac43-207b41f67215'),(810,73,17638,NULL,16931,5,'2021-05-18 03:20:51','2021-05-18 03:20:51','041eef40-ccb7-4221-b3ab-55f17a2b03a7'),(811,73,17638,NULL,16932,6,'2021-05-18 03:20:51','2021-05-18 03:20:51','86eaf8d1-1f48-41a2-ad9f-3bbc67390d97'),(812,73,17638,NULL,17607,7,'2021-05-18 03:20:51','2021-05-18 03:20:51','266a8fc4-4b79-4e64-b058-7690964f2364'),(813,73,17638,NULL,17637,8,'2021-05-18 03:20:51','2021-05-18 03:20:51','e64f475e-9cc2-495a-9059-f1d225f38931'),(814,73,17639,NULL,16867,1,'2021-05-18 03:20:51','2021-05-18 03:20:51','7f6c6f21-9d8a-4e3e-bdb2-6bc8fa6aed89'),(815,73,17639,NULL,16908,2,'2021-05-18 03:20:51','2021-05-18 03:20:51','a192b20c-708d-4f34-a941-8bbd192fd48b'),(816,73,17639,NULL,16911,3,'2021-05-18 03:20:51','2021-05-18 03:20:51','28c9f40f-03ce-48c5-915f-67a0082c00d5'),(817,73,17639,NULL,16930,4,'2021-05-18 03:20:51','2021-05-18 03:20:51','80c21aa4-a029-4014-8f60-755cfd86307d'),(818,73,17639,NULL,16931,5,'2021-05-18 03:20:51','2021-05-18 03:20:51','6f552ee5-aba3-4d9b-913a-d33c786e4f20'),(819,73,17639,NULL,16932,6,'2021-05-18 03:20:51','2021-05-18 03:20:51','4e2c76e2-9515-413b-8742-1d656777c7b7'),(820,73,17639,NULL,17607,7,'2021-05-18 03:20:51','2021-05-18 03:20:51','7720097f-47fd-4e16-a80c-18c25d7c6bae'),(821,73,17639,NULL,17637,8,'2021-05-18 03:20:51','2021-05-18 03:20:51','7e116f6a-be23-4b53-ae5a-f44a270d0f3c'),(822,73,17642,NULL,16867,1,'2021-05-18 03:20:52','2021-05-18 03:20:52','e8fc4ad2-97df-41c4-91dd-eadaec8ee8da'),(823,73,17642,NULL,16889,2,'2021-05-18 03:20:52','2021-05-18 03:20:52','3ccfad95-20d8-4fda-a587-08eaaf6bad9c'),(824,73,17642,NULL,16911,3,'2021-05-18 03:20:52','2021-05-18 03:20:52','2c9a5b59-2e70-47ec-a849-17ff3e63b331'),(825,73,17642,NULL,16937,4,'2021-05-18 03:20:52','2021-05-18 03:20:52','e82f7536-b925-4afe-beb0-bc7e559c3edc'),(826,73,17642,NULL,16938,5,'2021-05-18 03:20:52','2021-05-18 03:20:52','861e3059-3a3a-4938-9b6d-0b596a28374a'),(827,73,17642,NULL,17640,6,'2021-05-18 03:20:52','2021-05-18 03:20:52','bf30c9b9-be65-4c3f-9c5b-a37f619b8760'),(828,73,17642,NULL,17641,7,'2021-05-18 03:20:52','2021-05-18 03:20:52','39f9b3b0-b1e6-4f78-a623-893d8c86673a'),(829,73,17643,NULL,16867,1,'2021-05-18 03:20:52','2021-05-18 03:20:52','74ce1d85-efa8-45ac-b9fc-f389882a5912'),(830,73,17643,NULL,16889,2,'2021-05-18 03:20:52','2021-05-18 03:20:52','45e3d544-4462-45fa-8b86-a830c142ff29'),(831,73,17643,NULL,16911,3,'2021-05-18 03:20:52','2021-05-18 03:20:52','27ebf690-50a0-42d3-9abc-275bde24285e'),(832,73,17643,NULL,16937,4,'2021-05-18 03:20:52','2021-05-18 03:20:52','a3862291-761e-433d-b003-d1e4df8ea156'),(833,73,17643,NULL,16938,5,'2021-05-18 03:20:52','2021-05-18 03:20:52','3fee0763-41bc-4e1a-824f-675943fea61d'),(834,73,17643,NULL,17640,6,'2021-05-18 03:20:52','2021-05-18 03:20:52','66c01340-2181-4be5-9d75-2c7be3f3a3ed'),(835,73,17643,NULL,17641,7,'2021-05-18 03:20:52','2021-05-18 03:20:52','8b3ebe44-abbe-4111-9506-2e99eeac9bfa'),(836,73,17644,NULL,16867,1,'2021-05-18 03:20:52','2021-05-18 03:20:52','a6d95cb5-0e39-4b84-bfbc-cd60d5750e72'),(837,73,17644,NULL,16869,2,'2021-05-18 03:20:52','2021-05-18 03:20:52','9c758f18-a6d1-4964-a8c7-cb68ec7ef1b8'),(838,73,17644,NULL,16907,3,'2021-05-18 03:20:52','2021-05-18 03:20:52','ba765d0a-2feb-4fe3-99d1-cadc2a9d8bad'),(839,73,17644,NULL,16908,4,'2021-05-18 03:20:52','2021-05-18 03:20:52','53a800d8-1573-49c6-949d-d01d80ce2d95'),(840,73,17644,NULL,16911,5,'2021-05-18 03:20:52','2021-05-18 03:20:52','c06eaf1f-be77-417d-bb3b-7122c382f007'),(841,73,17644,NULL,16930,6,'2021-05-18 03:20:52','2021-05-18 03:20:52','20f38723-f18c-44bc-af07-0e592070a7bd'),(842,73,17644,NULL,16931,7,'2021-05-18 03:20:52','2021-05-18 03:20:52','7b3989ee-ee8a-4f3c-9173-c154c2845229'),(843,73,17644,NULL,16942,8,'2021-05-18 03:20:52','2021-05-18 03:20:52','cd5fe190-4b35-4460-a802-2478ad21b859'),(844,73,17644,NULL,17630,9,'2021-05-18 03:20:52','2021-05-18 03:20:52','7d64a33f-30e6-4e95-8534-8806d6026b2c'),(845,73,17645,NULL,16867,1,'2021-05-18 03:20:52','2021-05-18 03:20:52','073e5e1c-cf89-41c2-bda2-0b1b5c4e59fc'),(846,73,17645,NULL,16869,2,'2021-05-18 03:20:52','2021-05-18 03:20:52','0604749a-6146-453d-8a2a-c0a343634c28'),(847,73,17645,NULL,16907,3,'2021-05-18 03:20:52','2021-05-18 03:20:52','13f279a3-d073-487c-9c0c-fdcc59badc50'),(848,73,17645,NULL,16908,4,'2021-05-18 03:20:52','2021-05-18 03:20:52','abf400ec-de2e-431e-a691-201b4a67d075'),(849,73,17645,NULL,16911,5,'2021-05-18 03:20:52','2021-05-18 03:20:52','702ac6d6-0fea-4fe4-899a-fad8ea5bac5c'),(850,73,17645,NULL,16930,6,'2021-05-18 03:20:52','2021-05-18 03:20:52','d3847207-a19c-4ac3-b5e1-67fcd1d6f779'),(851,73,17645,NULL,16931,7,'2021-05-18 03:20:52','2021-05-18 03:20:52','7e51d5ae-7b11-4be8-8a12-83a02ff95fbb'),(852,73,17645,NULL,16942,8,'2021-05-18 03:20:52','2021-05-18 03:20:52','4fe6e740-cd16-48dc-8333-f62e21cae90c'),(853,73,17645,NULL,17630,9,'2021-05-18 03:20:52','2021-05-18 03:20:52','872b5c9e-140c-49f1-9e9b-cb069dea4946'),(854,73,17646,NULL,16867,1,'2021-05-18 03:20:52','2021-05-18 03:20:52','66dee588-19c8-4598-b391-ddf72fff58d0'),(855,73,17646,NULL,16870,2,'2021-05-18 03:20:52','2021-05-18 03:20:52','17a5ba0d-ccfa-4b43-941f-15a6a09abb42'),(856,73,17646,NULL,16880,3,'2021-05-18 03:20:52','2021-05-18 03:20:52','e66dcbe8-331d-427a-82cb-0e2b907f8c34'),(857,73,17646,NULL,16892,4,'2021-05-18 03:20:52','2021-05-18 03:20:52','a4cf087c-deaa-4922-9b2f-4907cc397e51'),(858,73,17647,NULL,16867,1,'2021-05-18 03:20:52','2021-05-18 03:20:52','644a18da-39a3-4020-afbd-624db2ace8c6'),(859,73,17647,NULL,16870,2,'2021-05-18 03:20:52','2021-05-18 03:20:52','9ad71784-7a0d-49a3-bfa1-68738a647cb1'),(860,73,17647,NULL,16880,3,'2021-05-18 03:20:52','2021-05-18 03:20:52','d2c9b771-ca81-4b01-ab4a-9ffba435cc14'),(861,73,17647,NULL,16892,4,'2021-05-18 03:20:52','2021-05-18 03:20:52','d06bb442-30d3-43f3-b5df-6d12c8215503'),(862,73,17648,NULL,16867,1,'2021-05-18 03:20:52','2021-05-18 03:20:52','bd8d2f2d-4648-4337-b2f5-4f75094b00b5'),(863,73,17648,NULL,16880,2,'2021-05-18 03:20:52','2021-05-18 03:20:52','60a86c4a-4ddf-4cd1-9564-61bb37ef7770'),(864,73,17648,NULL,16908,3,'2021-05-18 03:20:52','2021-05-18 03:20:52','d98624f5-8521-4ce8-a8a4-22bdcd53d4ca'),(865,73,17648,NULL,16947,4,'2021-05-18 03:20:52','2021-05-18 03:20:52','de183952-6d53-4744-b8df-7a0402c770ba'),(866,73,17648,NULL,17606,5,'2021-05-18 03:20:52','2021-05-18 03:20:52','9e4420ff-624b-4c2b-a3aa-5ee0ed695529'),(867,73,17648,NULL,17607,6,'2021-05-18 03:20:52','2021-05-18 03:20:52','8f64103c-ef39-497b-907e-0be6ea7336ee'),(868,73,17649,NULL,16867,1,'2021-05-18 03:20:53','2021-05-18 03:20:53','a77da2e5-56cc-458f-a138-bf928aaa0cbb'),(869,73,17649,NULL,16880,2,'2021-05-18 03:20:53','2021-05-18 03:20:53','7bf0ebe7-9e67-455c-a5bf-2bc4a904325b'),(870,73,17649,NULL,16908,3,'2021-05-18 03:20:53','2021-05-18 03:20:53','95feeff9-0f07-45d6-b28e-2ecbd5e2e315'),(871,73,17649,NULL,16947,4,'2021-05-18 03:20:53','2021-05-18 03:20:53','2b1c71ba-c60d-4680-bbb0-bab0f854d30d'),(872,73,17649,NULL,17606,5,'2021-05-18 03:20:53','2021-05-18 03:20:53','cda4c885-80db-40e6-b190-566b66389df8'),(873,73,17649,NULL,17607,6,'2021-05-18 03:20:53','2021-05-18 03:20:53','e5fd3eb8-61b2-4d7d-9bf9-5484b914f90b'),(874,73,17650,NULL,16867,1,'2021-05-18 03:20:53','2021-05-18 03:20:53','8097dbf9-e403-4bbf-9da1-39d653ce64b5'),(875,73,17650,NULL,16880,2,'2021-05-18 03:20:53','2021-05-18 03:20:53','2fe70640-5553-42bb-8ac5-bce22673279c'),(876,73,17650,NULL,16908,3,'2021-05-18 03:20:53','2021-05-18 03:20:53','0e7acfaf-2dbf-4fe0-b603-a3e068af71cf'),(877,73,17650,NULL,16911,4,'2021-05-18 03:20:53','2021-05-18 03:20:53','8c7c955e-f7fb-44fb-b62f-904373929672'),(878,73,17650,NULL,16931,5,'2021-05-18 03:20:53','2021-05-18 03:20:53','f70d1d66-c611-4a38-8c0e-df38d0621d3b'),(879,73,17650,NULL,16937,6,'2021-05-18 03:20:53','2021-05-18 03:20:53','d0f76b57-3421-4e2d-89e3-765bf40b1038'),(880,73,17650,NULL,16950,7,'2021-05-18 03:20:53','2021-05-18 03:20:53','7ef932e0-6154-4af6-860a-1b7f0b6221ac'),(881,73,17651,NULL,16867,1,'2021-05-18 03:20:53','2021-05-18 03:20:53','31459d63-d001-467a-93a2-42994c802230'),(882,73,17651,NULL,16880,2,'2021-05-18 03:20:53','2021-05-18 03:20:53','0204927a-6419-4fbd-b17b-f7bc94750e31'),(883,73,17651,NULL,16908,3,'2021-05-18 03:20:53','2021-05-18 03:20:53','6eb06082-31a5-4dc5-a5e3-55f97151fcdc'),(884,73,17651,NULL,16911,4,'2021-05-18 03:20:53','2021-05-18 03:20:53','56a9fadf-e8de-47fd-8b06-fb6ed365677b'),(885,73,17651,NULL,16931,5,'2021-05-18 03:20:53','2021-05-18 03:20:53','dd08f4a6-00ee-4590-8c87-7e86dd53a2a1'),(886,73,17651,NULL,16937,6,'2021-05-18 03:20:53','2021-05-18 03:20:53','96b83ef9-d52a-4f77-9b0e-61bf6b44581f'),(887,73,17651,NULL,16950,7,'2021-05-18 03:20:53','2021-05-18 03:20:53','38443ee4-0c5f-46ad-8bb3-1359490e0d84'),(888,73,17652,NULL,16867,1,'2021-05-18 03:20:53','2021-05-18 03:20:53','359ae944-509c-4c1b-882c-379bc5800bf0'),(889,73,17652,NULL,16869,2,'2021-05-18 03:20:53','2021-05-18 03:20:53','9c386588-7394-4d55-a63d-7a42bca004ad'),(890,73,17652,NULL,16870,3,'2021-05-18 03:20:53','2021-05-18 03:20:53','f9da552e-5afc-466d-99fd-f7b2bcccc7b3'),(891,73,17652,NULL,16903,4,'2021-05-18 03:20:53','2021-05-18 03:20:53','cc8f86d8-8b3a-4834-9fa2-b77e3f3b894d'),(892,73,17652,NULL,16953,5,'2021-05-18 03:20:53','2021-05-18 03:20:53','6a47411a-df38-4902-ab05-79d2cc5655f7'),(893,73,17652,NULL,16954,6,'2021-05-18 03:20:53','2021-05-18 03:20:53','b55b7c9b-d491-4f6e-91eb-817115822720'),(894,73,17652,NULL,16955,7,'2021-05-18 03:20:53','2021-05-18 03:20:53','f9d3b4d5-1525-4b02-801c-76b5e229b735'),(895,73,17652,NULL,16956,8,'2021-05-18 03:20:53','2021-05-18 03:20:53','68e028eb-9ed5-485d-a884-085a8140d9d5'),(896,73,17653,NULL,16867,1,'2021-05-18 03:20:53','2021-05-18 03:20:53','101b6694-5181-45a3-b9ff-ae3c7d083b4f'),(897,73,17653,NULL,16869,2,'2021-05-18 03:20:53','2021-05-18 03:20:53','7f0f1dc1-281b-47d0-b43a-b9028996f673'),(898,73,17653,NULL,16870,3,'2021-05-18 03:20:53','2021-05-18 03:20:53','d0ebb9e4-87d1-4b55-9818-0584f86e897c'),(899,73,17653,NULL,16903,4,'2021-05-18 03:20:53','2021-05-18 03:20:53','4de2d99c-33e2-4368-957f-c2dc74f2c5bf'),(900,73,17653,NULL,16953,5,'2021-05-18 03:20:53','2021-05-18 03:20:53','97080ad3-fdec-45df-9be1-b7dd24f0afca'),(901,73,17653,NULL,16954,6,'2021-05-18 03:20:53','2021-05-18 03:20:53','137ae08a-ec4a-496e-aae9-36bcc330b0d5'),(902,73,17653,NULL,16955,7,'2021-05-18 03:20:53','2021-05-18 03:20:53','696cee29-b93e-4a86-902c-b50fbe4a98e3'),(903,73,17653,NULL,16956,8,'2021-05-18 03:20:53','2021-05-18 03:20:53','c41508d2-d37c-48b0-9095-e60a61662a5c'),(904,73,17654,NULL,16866,1,'2021-05-18 03:20:53','2021-05-18 03:20:53','a35c6630-0163-4cc7-a469-a76f123cbbdc'),(905,73,17654,NULL,16867,2,'2021-05-18 03:20:53','2021-05-18 03:20:53','ffde61bf-9e6c-49eb-9100-c6c74df1bd2f'),(906,73,17654,NULL,16870,3,'2021-05-18 03:20:53','2021-05-18 03:20:53','6abf72db-e53f-4c36-b2b9-abb9e2356157'),(907,73,17654,NULL,16880,4,'2021-05-18 03:20:53','2021-05-18 03:20:53','ade9eeb4-f9f4-43bb-b822-eca3bc827928'),(908,73,17654,NULL,16908,5,'2021-05-18 03:20:53','2021-05-18 03:20:53','f90d4f95-7c3e-4d2a-8f26-b0799e35064f'),(909,73,17654,NULL,16920,6,'2021-05-18 03:20:53','2021-05-18 03:20:53','850db2be-ccb4-4723-a274-947635e2ed26'),(910,73,17654,NULL,16959,7,'2021-05-18 03:20:53','2021-05-18 03:20:53','87690547-a1a3-4462-b407-4c6a70a1cbc2'),(911,73,17654,NULL,16960,8,'2021-05-18 03:20:53','2021-05-18 03:20:53','57570b19-3167-4827-b3fa-4e5780bef996'),(912,73,17655,NULL,16866,1,'2021-05-18 03:20:53','2021-05-18 03:20:53','01ac8771-4d35-455d-8c45-6de440018ab2'),(913,73,17655,NULL,16867,2,'2021-05-18 03:20:53','2021-05-18 03:20:53','1bdd5d83-38da-40ef-a486-a9b46254b347'),(914,73,17655,NULL,16870,3,'2021-05-18 03:20:53','2021-05-18 03:20:53','7f9b6041-787e-4d73-9474-8d4b9601ee92'),(915,73,17655,NULL,16880,4,'2021-05-18 03:20:53','2021-05-18 03:20:53','642ea2cb-62ee-4ff6-a7c6-b08c00a46599'),(916,73,17655,NULL,16908,5,'2021-05-18 03:20:53','2021-05-18 03:20:53','d5ab63b1-39e9-4622-b8ec-6c77ac99404b'),(917,73,17655,NULL,16920,6,'2021-05-18 03:20:53','2021-05-18 03:20:53','3373048a-ab27-48ee-9d51-0abd121d250e'),(918,73,17655,NULL,16959,7,'2021-05-18 03:20:53','2021-05-18 03:20:53','cab04dc6-e18d-4d7b-af0d-a2316096aeb1'),(919,73,17655,NULL,16960,8,'2021-05-18 03:20:53','2021-05-18 03:20:53','0947274a-6816-4cce-adb9-d7d19f0b1f18'),(920,73,17660,NULL,16911,1,'2021-05-18 03:20:54','2021-05-18 03:20:54','b7c22933-4248-4895-a69c-cbef6dcbb98d'),(921,73,17660,NULL,16931,2,'2021-05-18 03:20:54','2021-05-18 03:20:54','8da5b5e9-84d6-4d69-b296-3de6b2d1a4f0'),(922,73,17660,NULL,17619,3,'2021-05-18 03:20:54','2021-05-18 03:20:54','c70a7bce-30a5-43c7-8161-2fb650319e59'),(923,73,17660,NULL,17656,4,'2021-05-18 03:20:54','2021-05-18 03:20:54','1aa0edfa-ad16-4477-9190-a985738f0fd9'),(924,73,17660,NULL,17657,5,'2021-05-18 03:20:54','2021-05-18 03:20:54','fe80527b-b406-4f97-9bee-4690795b4c44'),(925,73,17660,NULL,17658,6,'2021-05-18 03:20:54','2021-05-18 03:20:54','02a958e3-42e5-4818-9125-98cd68d20b6d'),(926,73,17660,NULL,17659,7,'2021-05-18 03:20:54','2021-05-18 03:20:54','f62fb796-87e5-4f2a-b9e9-18b76fd20473'),(927,73,17661,NULL,16911,1,'2021-05-18 03:20:54','2021-05-18 03:20:54','b0e6d18a-6119-4fe8-9d4c-a39ebf97f16d'),(928,73,17661,NULL,16931,2,'2021-05-18 03:20:54','2021-05-18 03:20:54','152ded66-fc60-49f0-89ae-d54cbb200295'),(929,73,17661,NULL,17619,3,'2021-05-18 03:20:54','2021-05-18 03:20:54','2f667ab8-9a8a-4f56-8432-4df216cfe85f'),(930,73,17661,NULL,17656,4,'2021-05-18 03:20:54','2021-05-18 03:20:54','a2c33693-7ad8-49db-9c38-256e24348385'),(931,73,17661,NULL,17657,5,'2021-05-18 03:20:54','2021-05-18 03:20:54','786c3082-0684-4fff-8309-e351b9467d8a'),(932,73,17661,NULL,17658,6,'2021-05-18 03:20:54','2021-05-18 03:20:54','4e1a5e18-c134-4620-afff-1055efb605cc'),(933,73,17661,NULL,17659,7,'2021-05-18 03:20:54','2021-05-18 03:20:54','963b05e5-eac7-40b1-912f-42ac34f5c5e4'),(934,73,17662,NULL,16867,1,'2021-05-18 03:20:54','2021-05-18 03:20:54','ee43a305-831f-4cc7-81d6-8640d994f75e'),(935,73,17662,NULL,16869,2,'2021-05-18 03:20:54','2021-05-18 03:20:54','3ec21b35-bd55-4c19-9e1c-ddf53bc3b738'),(936,73,17662,NULL,16911,3,'2021-05-18 03:20:54','2021-05-18 03:20:54','a5618c70-1497-41d2-8c06-195be88a6c49'),(937,73,17662,NULL,16969,4,'2021-05-18 03:20:54','2021-05-18 03:20:54','80708ce5-ae64-46bc-9c2c-778eee845d55'),(938,73,17662,NULL,16970,5,'2021-05-18 03:20:54','2021-05-18 03:20:54','21182804-8978-4f20-976e-f2c78e921134'),(939,73,17662,NULL,16971,6,'2021-05-18 03:20:54','2021-05-18 03:20:54','b9d35e71-4304-422d-b8b7-549ed3fb8343'),(940,73,17662,NULL,16972,7,'2021-05-18 03:20:54','2021-05-18 03:20:54','6d12112b-2e25-4e52-89d3-e294da031a16'),(941,73,17662,NULL,16973,8,'2021-05-18 03:20:54','2021-05-18 03:20:54','854ce169-fbf7-4c89-b238-fc890fecfaae'),(942,73,17662,NULL,16974,9,'2021-05-18 03:20:54','2021-05-18 03:20:54','e9e5fad3-b3e0-4428-8995-dcd68705904b'),(943,73,17663,NULL,16867,1,'2021-05-18 03:20:54','2021-05-18 03:20:54','42ac64a1-2d12-4016-8fbb-0c8e67064cbb'),(944,73,17663,NULL,16869,2,'2021-05-18 03:20:54','2021-05-18 03:20:54','2f027698-7822-40af-893d-943648ba5acb'),(945,73,17663,NULL,16911,3,'2021-05-18 03:20:54','2021-05-18 03:20:54','dfb89f0e-0c5f-4d45-a8fe-746804338d61'),(946,73,17663,NULL,16969,4,'2021-05-18 03:20:54','2021-05-18 03:20:54','e45a2f0f-d768-41fa-8823-a626d56abdea'),(947,73,17663,NULL,16970,5,'2021-05-18 03:20:54','2021-05-18 03:20:54','a7572b3d-b90a-46c6-a62d-cc7951c2e33f'),(948,73,17663,NULL,16971,6,'2021-05-18 03:20:54','2021-05-18 03:20:54','3a719588-bf23-403e-ae75-d4a36c9ec8ef'),(949,73,17663,NULL,16972,7,'2021-05-18 03:20:54','2021-05-18 03:20:54','a9193078-7517-4614-8000-ff26c06c8b47'),(950,73,17663,NULL,16973,8,'2021-05-18 03:20:54','2021-05-18 03:20:54','5a5fb53b-9e6f-4efc-b7a2-a188b0644a60'),(951,73,17663,NULL,16974,9,'2021-05-18 03:20:54','2021-05-18 03:20:54','10cc9eca-bf73-48a9-b477-799f5e3a0d2a'),(952,73,17664,NULL,16867,1,'2021-05-18 03:20:55','2021-05-18 03:20:55','24221205-8f27-4bdf-915f-3ffa349a2769'),(953,73,17664,NULL,16911,2,'2021-05-18 03:20:55','2021-05-18 03:20:55','7f34f6ec-ec17-4115-a9b9-3600de324bf5'),(954,73,17664,NULL,16977,3,'2021-05-18 03:20:55','2021-05-18 03:20:55','99676a22-b0b7-48bb-86b6-76d917e59b05'),(955,73,17665,NULL,16867,1,'2021-05-18 03:20:55','2021-05-18 03:20:55','9a3e315b-451d-4afc-9605-b8c52cbeeafd'),(956,73,17665,NULL,16911,2,'2021-05-18 03:20:55','2021-05-18 03:20:55','c98dc1e3-ffd1-4a49-aad1-d4e49a96b00b'),(957,73,17665,NULL,16977,3,'2021-05-18 03:20:55','2021-05-18 03:20:55','ab668647-91cb-455a-aa91-fb409f6c079a'),(958,73,17666,NULL,16867,1,'2021-05-18 03:20:55','2021-05-18 03:20:55','f9be62ca-4f8e-4620-8344-ce8f49c6a6d2'),(959,73,17667,NULL,16867,1,'2021-05-18 03:20:55','2021-05-18 03:20:55','768290f4-e7dc-42ee-8474-1c7484a5e830'),(960,73,17668,NULL,16867,1,'2021-05-18 03:20:55','2021-05-18 03:20:55','ea2b7108-cd5f-4fef-aed7-4218a6044397'),(961,73,17668,NULL,16911,2,'2021-05-18 03:20:55','2021-05-18 03:20:55','f67cfb6e-d58a-457a-b239-8597f1e66375'),(962,73,17669,NULL,16867,1,'2021-05-18 03:20:56','2021-05-18 03:20:56','b77ae4f9-21b9-4d2f-9f89-1714dd191c73'),(963,73,17669,NULL,16911,2,'2021-05-18 03:20:56','2021-05-18 03:20:56','e6e90993-440e-4364-a6b0-e51209bb3fc2'),(964,73,17670,NULL,16867,1,'2021-05-18 03:20:56','2021-05-18 03:20:56','e5f17f2e-d316-4175-bdad-68e7e1799a73'),(965,73,17670,NULL,16911,2,'2021-05-18 03:20:56','2021-05-18 03:20:56','e0b22be6-8dea-409e-a36b-38fc89deba41'),(966,73,17670,NULL,16937,3,'2021-05-18 03:20:56','2021-05-18 03:20:56','6493bdd7-d4ec-4fd7-99c4-6b16434af96e'),(967,73,17671,NULL,16867,1,'2021-05-18 03:20:56','2021-05-18 03:20:56','edc0eb3e-ce71-40b6-8d1f-c602ca779505'),(968,73,17671,NULL,16911,2,'2021-05-18 03:20:56','2021-05-18 03:20:56','3eb54e0a-aa7b-46a2-867a-6f31c162fa90'),(969,73,17671,NULL,16937,3,'2021-05-18 03:20:56','2021-05-18 03:20:56','ce9c6254-fa69-420d-a06f-b6311cc59f48'),(970,73,17672,NULL,16867,1,'2021-05-18 03:20:56','2021-05-18 03:20:56','1135cab7-2b33-471b-b7d0-e581b4d6e60b'),(971,73,17673,NULL,16867,1,'2021-05-18 03:20:56','2021-05-18 03:20:56','e312ce70-aa4e-48e6-8b1e-aa801973850f'),(972,73,17674,NULL,16867,1,'2021-05-18 03:20:56','2021-05-18 03:20:56','6265b171-ce49-4459-a819-8d1814f17e90'),(973,73,17674,NULL,16911,2,'2021-05-18 03:20:56','2021-05-18 03:20:56','ba5fdd8a-ad07-411f-b023-a70fc945e8a5'),(974,73,17674,NULL,16977,3,'2021-05-18 03:20:56','2021-05-18 03:20:56','907496bb-8b63-484e-95cd-1be9beff2e4a'),(975,73,17675,NULL,16867,1,'2021-05-18 03:20:56','2021-05-18 03:20:56','6226c462-6a68-415f-bea6-29c255ce97bf'),(976,73,17675,NULL,16911,2,'2021-05-18 03:20:56','2021-05-18 03:20:56','44787a20-0cc1-4b1e-b313-9c5a61d5a23b'),(977,73,17675,NULL,16977,3,'2021-05-18 03:20:56','2021-05-18 03:20:56','5c5854f2-0cca-4492-8875-6cb6d37bd0e9'),(978,73,17676,NULL,16867,1,'2021-05-18 03:20:56','2021-05-18 03:20:56','a4075976-1096-48ac-baf3-80509f2f4cb1'),(979,73,17676,NULL,16869,2,'2021-05-18 03:20:56','2021-05-18 03:20:56','2abec558-df17-4561-87f2-9258aeaeb786'),(980,73,17677,NULL,16867,1,'2021-05-18 03:20:56','2021-05-18 03:20:56','3c66e717-3877-43a6-84bf-7a5835583dcc'),(981,73,17677,NULL,16869,2,'2021-05-18 03:20:56','2021-05-18 03:20:56','0cc7808e-d2f0-4484-ae92-08a84a5dcb47'),(982,73,17678,NULL,16867,1,'2021-05-18 03:20:56','2021-05-18 03:20:56','2af5d152-389f-4908-8a70-809c1d6d965d'),(983,73,17678,NULL,16869,2,'2021-05-18 03:20:56','2021-05-18 03:20:56','a78e29bc-7999-492d-8c0d-7cf7bd80dd21'),(984,73,17679,NULL,16867,1,'2021-05-18 03:20:57','2021-05-18 03:20:57','71f44297-eceb-4149-83b8-bec8a55d8b05'),(985,73,17679,NULL,16869,2,'2021-05-18 03:20:57','2021-05-18 03:20:57','ab2b297e-5d11-405b-b5e9-04fe5e1e0d74'),(986,73,17680,NULL,16937,1,'2021-05-18 03:20:57','2021-05-18 03:20:57','4480d594-51f4-4f3f-be36-70c6ce4d4d8b'),(987,73,17681,NULL,16937,1,'2021-05-18 03:20:57','2021-05-18 03:20:57','920432dd-e8cb-4e49-8812-f88a4e3916ba'),(988,73,17682,NULL,16867,1,'2021-05-18 03:20:57','2021-05-18 03:20:57','e8d08d8c-a060-4096-8cf8-038aec560f63'),(989,73,17683,NULL,16867,1,'2021-05-18 03:20:57','2021-05-18 03:20:57','a973b671-28c3-40f8-9294-03bd19a0ba24'),(990,73,17684,NULL,16867,1,'2021-05-18 03:20:57','2021-05-18 03:20:57','10aaef6b-0e5c-4796-9434-a0c6e7fde3c8'),(991,73,17685,NULL,16867,1,'2021-05-18 03:20:57','2021-05-18 03:20:57','d5d763a5-23c9-4cdc-a81f-f11364080467'),(992,73,17686,NULL,16937,1,'2021-05-18 03:20:57','2021-05-18 03:20:57','637b84f7-d9fa-4c20-b565-106a14e76277'),(993,73,17687,NULL,16937,1,'2021-05-18 03:20:57','2021-05-18 03:20:57','69a4ac92-80a5-4153-a307-7375177a352e'),(994,73,17688,NULL,16911,1,'2021-05-18 03:20:58','2021-05-18 03:20:58','99c79638-5a53-4fd5-9a8b-f3fc230baf7f'),(995,73,17689,NULL,16911,1,'2021-05-18 03:20:58','2021-05-18 03:20:58','66d9e4fe-88d3-4a08-a035-a28b4c0aceeb'),(996,73,17690,NULL,16937,1,'2021-05-18 03:20:58','2021-05-18 03:20:58','aead4887-6d73-4bf7-b27b-9f77a1611468'),(997,73,17691,NULL,16937,1,'2021-05-18 03:20:58','2021-05-18 03:20:58','3e0262cd-3b78-47da-9442-7b45c7dff2f6'),(998,73,17692,NULL,16867,1,'2021-05-18 03:20:58','2021-05-18 03:20:58','9f79d4c5-a8a3-41bc-b378-357aef6b8c30'),(999,73,17692,NULL,16931,2,'2021-05-18 03:20:58','2021-05-18 03:20:58','db975c42-8088-42a8-81e8-e41f5bf2bd93'),(1000,73,17693,NULL,16867,1,'2021-05-18 03:20:58','2021-05-18 03:20:58','fe2a99ea-ad8f-4aa8-9ae0-8100bce026ee'),(1001,73,17693,NULL,16931,2,'2021-05-18 03:20:58','2021-05-18 03:20:58','f6110367-49a3-42ed-9817-4c5871b6d035'),(1038,69,17807,NULL,17105,1,'2021-05-18 03:44:18','2021-05-18 03:44:18','16db03af-5c03-47f8-81da-c413076e9573'),(1039,73,17807,NULL,16867,1,'2021-05-18 03:44:18','2021-05-18 03:44:18','534edfed-c7ec-43ef-8dc9-58ecc996f15a'),(1040,73,17807,NULL,16931,2,'2021-05-18 03:44:18','2021-05-18 03:44:18','9ae801da-982e-4748-b8c5-80a9ccebe6da'),(1041,69,17690,NULL,17743,1,'2021-05-18 03:45:31','2021-05-18 03:45:31','c895d6b8-8105-4f73-8c26-84c373eeb643'),(1042,69,17808,NULL,17743,1,'2021-05-18 03:45:31','2021-05-18 03:45:31','7994f35b-95ae-4af6-8d35-9484708d489f'),(1043,73,17808,NULL,16937,1,'2021-05-18 03:45:31','2021-05-18 03:45:31','d05c6817-dfdd-453b-90de-183cba314392'),(1044,69,17688,NULL,17089,1,'2021-05-18 03:46:06','2021-05-18 03:46:06','c2e1b2e7-9012-420d-9f98-cdea55a52900'),(1045,69,17809,NULL,17089,1,'2021-05-18 03:46:06','2021-05-18 03:46:06','6b3a3822-7e73-4f53-8128-e14e911695b8'),(1046,73,17809,NULL,16911,1,'2021-05-18 03:46:06','2021-05-18 03:46:06','32db87c8-e662-494d-b0fe-ee01c707387d'),(1047,69,17686,NULL,17166,1,'2021-05-18 03:46:30','2021-05-18 03:46:30','faedd4bc-3170-45e4-9a5e-3882395b71f0'),(1048,69,17810,NULL,17166,1,'2021-05-18 03:46:30','2021-05-18 03:46:30','4c655ef7-ee81-465d-bba2-e4f7e3815b99'),(1049,73,17810,NULL,16937,1,'2021-05-18 03:46:30','2021-05-18 03:46:30','23271684-dc82-4d98-95ef-fb9b4b9337b3'),(1051,69,17812,NULL,17811,1,'2021-05-18 03:48:02','2021-05-18 03:48:02','0f6b3a5f-28f7-4c9c-a24f-5d63198e85a7'),(1052,73,17812,NULL,16867,1,'2021-05-18 03:48:02','2021-05-18 03:48:02','9eda34d0-2b28-4c20-ac61-7df387997b9f'),(1053,69,17682,NULL,17167,1,'2021-05-18 03:48:36','2021-05-18 03:48:36','fc7db400-77ba-49d4-8dba-b69b95f964e7'),(1054,69,17813,NULL,17167,1,'2021-05-18 03:48:36','2021-05-18 03:48:36','68666876-d2f7-4ef6-97e8-cbb3a4af3347'),(1055,73,17813,NULL,16867,1,'2021-05-18 03:48:36','2021-05-18 03:48:36','0d7cbe1d-cf53-4627-99da-cdcdb6f6374b'),(1057,69,17814,NULL,17168,1,'2021-05-18 03:49:00','2021-05-18 03:49:00','8bcd1bc3-6317-405b-9f8d-2dee37853997'),(1058,73,17814,NULL,16937,1,'2021-05-18 03:49:00','2021-05-18 03:49:00','4e127448-723f-4754-b53b-b318cec27dfa'),(1060,69,17816,NULL,17815,1,'2021-05-18 03:49:52','2021-05-18 03:49:52','f1ffac97-16a0-45bc-9393-fd8fe282c45c'),(1061,73,17816,NULL,16867,1,'2021-05-18 03:49:52','2021-05-18 03:49:52','b650637f-d235-48fa-8ffc-c84471a1ed39'),(1062,73,17816,NULL,16869,2,'2021-05-18 03:49:52','2021-05-18 03:49:52','528cfe69-4ed0-4b4b-a021-852ccab93507'),(1063,69,17676,NULL,17169,1,'2021-05-18 03:50:22','2021-05-18 03:50:22','c709a8cf-7b80-4c18-82ea-193a95932cb7'),(1064,69,17817,NULL,17169,1,'2021-05-18 03:50:22','2021-05-18 03:50:22','cf500642-9937-4d38-ae23-0cee9fd49da1'),(1065,73,17817,NULL,16867,1,'2021-05-18 03:50:22','2021-05-18 03:50:22','f4236207-e6b9-4394-b3c9-1b580dfeecf5'),(1066,73,17817,NULL,16869,2,'2021-05-18 03:50:22','2021-05-18 03:50:22','d1a4bd58-cb26-4f71-b200-e8ba023e86c1'),(1067,69,17674,NULL,17818,1,'2021-05-18 03:51:16','2021-05-18 03:51:16','ad77e480-7dc8-44f2-818c-5e3965f38201'),(1068,69,17819,NULL,17818,1,'2021-05-18 03:51:16','2021-05-18 03:51:16','fdc192ee-f907-438b-a8e1-3ef6b1903be0'),(1069,73,17819,NULL,16867,1,'2021-05-18 03:51:16','2021-05-18 03:51:16','d50c9c0c-7c11-4ea0-92ca-16abbd162e0e'),(1070,73,17819,NULL,16911,2,'2021-05-18 03:51:16','2021-05-18 03:51:16','aaf5a88f-d389-42b8-beef-8ce754197a39'),(1071,73,17819,NULL,16977,3,'2021-05-18 03:51:16','2021-05-18 03:51:16','fad8138d-32c2-41ba-b558-b650e49544e7'),(1072,69,17672,NULL,17425,1,'2021-05-18 03:52:25','2021-05-18 03:52:25','e26bb0ed-3ca3-4a4f-bd07-241cc683e356'),(1073,69,17820,NULL,17425,1,'2021-05-18 03:52:25','2021-05-18 03:52:25','c3a460bf-740e-4e49-b872-c51947cf71c7'),(1074,73,17820,NULL,16867,1,'2021-05-18 03:52:25','2021-05-18 03:52:25','6e417ea3-0b1e-43a5-9714-57ce76206842'),(1075,69,17670,NULL,17430,1,'2021-05-18 03:54:13','2021-05-18 03:54:13','81d4f116-2042-4da6-b60b-95f712c3b55f'),(1076,69,17821,NULL,17430,1,'2021-05-18 03:54:13','2021-05-18 03:54:13','c060faad-f257-4ed7-8869-b21d9b79d176'),(1077,73,17821,NULL,16867,1,'2021-05-18 03:54:13','2021-05-18 03:54:13','05681502-4653-447e-ad0f-13db760fb600'),(1078,73,17821,NULL,16911,2,'2021-05-18 03:54:13','2021-05-18 03:54:13','d5342329-1e1f-4960-a673-4183e43a1af4'),(1079,73,17821,NULL,16937,3,'2021-05-18 03:54:13','2021-05-18 03:54:13','5340b80a-b83d-440f-9cb3-564f5810ab3f'),(1080,69,17668,NULL,17428,1,'2021-05-18 03:55:28','2021-05-18 03:55:28','8dfcec6e-5fba-4b96-9afc-e6626d7feb18'),(1081,69,17822,NULL,17428,1,'2021-05-18 03:55:28','2021-05-18 03:55:28','feb2f335-e740-47e9-b205-7cf1b5aec8ee'),(1082,73,17822,NULL,16867,1,'2021-05-18 03:55:28','2021-05-18 03:55:28','d0744e45-5bd7-440b-ad52-621d21521890'),(1083,73,17822,NULL,16911,2,'2021-05-18 03:55:28','2021-05-18 03:55:28','769a44c1-6390-472f-80ac-8a4f39728b2c'),(1084,69,17666,NULL,17429,1,'2021-05-18 03:56:17','2021-05-18 03:56:17','8e6f3f82-7627-45ec-a456-a21f1ab98859'),(1085,69,17823,NULL,17429,1,'2021-05-18 03:56:17','2021-05-18 03:56:17','97de8c20-2267-4db8-a9f7-8fb2116f20b5'),(1086,73,17823,NULL,16867,1,'2021-05-18 03:56:17','2021-05-18 03:56:17','5f197d32-6867-433c-b76e-57293b7e539b'),(1087,69,17664,NULL,17182,1,'2021-05-18 03:56:55','2021-05-18 03:56:55','0712f2c7-122a-43fd-83fd-6e01cb11ce50'),(1088,69,17824,NULL,17182,1,'2021-05-18 03:56:55','2021-05-18 03:56:55','78ff81ca-20d5-48a0-823d-b4a36284a6fd'),(1089,73,17824,NULL,16867,1,'2021-05-18 03:56:55','2021-05-18 03:56:55','4858badb-7d91-48da-96eb-e61ec0fbefa9'),(1090,73,17824,NULL,16911,2,'2021-05-18 03:56:55','2021-05-18 03:56:55','b9ecc7ef-260f-4b1d-9b75-d3ecc21750ea'),(1091,73,17824,NULL,16977,3,'2021-05-18 03:56:55','2021-05-18 03:56:55','320b909b-b92c-4e49-9b44-79ada752564e'),(1092,69,17662,NULL,17432,1,'2021-05-18 04:00:05','2021-05-18 04:00:05','b33cd992-569a-4426-8a86-0c86219eed65'),(1093,69,17825,NULL,17432,1,'2021-05-18 04:00:05','2021-05-18 04:00:05','c4e1b51f-3a43-4124-9f39-43697826891f'),(1094,73,17825,NULL,16867,1,'2021-05-18 04:00:05','2021-05-18 04:00:05','1283161a-8cd3-4fc6-beee-7f3f6f96f3cc'),(1095,73,17825,NULL,16869,2,'2021-05-18 04:00:05','2021-05-18 04:00:05','62998402-1954-4b70-944f-87db4d36d5b0'),(1096,73,17825,NULL,16911,3,'2021-05-18 04:00:05','2021-05-18 04:00:05','b51a9078-a137-415a-a307-fddbd3217d97'),(1097,73,17825,NULL,16969,4,'2021-05-18 04:00:05','2021-05-18 04:00:05','a0465b4b-7c6f-4fee-960a-1303cb123cb2'),(1098,73,17825,NULL,16970,5,'2021-05-18 04:00:05','2021-05-18 04:00:05','b18b2976-d258-426e-93d4-e4b7529af7f1'),(1099,73,17825,NULL,16971,6,'2021-05-18 04:00:05','2021-05-18 04:00:05','c9cc227a-1d8c-41b8-bc69-2f5b04a25688'),(1100,73,17825,NULL,16972,7,'2021-05-18 04:00:05','2021-05-18 04:00:05','00b22638-5d1d-4a7a-b1e7-33c407bd73e1'),(1101,73,17825,NULL,16973,8,'2021-05-18 04:00:05','2021-05-18 04:00:05','ca23fe6b-6c89-4d76-a8ee-28d6141e98ff'),(1102,73,17825,NULL,16974,9,'2021-05-18 04:00:05','2021-05-18 04:00:05','441f9dcc-7b46-4f13-b548-a979cee47b19'),(1103,69,17660,NULL,17431,1,'2021-05-18 04:00:53','2021-05-18 04:00:53','0ed0a608-f18d-45c4-905c-9144b6ec0b0e'),(1104,69,17826,NULL,17431,1,'2021-05-18 04:00:53','2021-05-18 04:00:53','47f6870a-4b3d-4716-81ae-03ac660ba4cb'),(1105,73,17826,NULL,16911,1,'2021-05-18 04:00:53','2021-05-18 04:00:53','697354e3-4c76-4ada-8138-cc3c3814f529'),(1106,73,17826,NULL,16931,2,'2021-05-18 04:00:53','2021-05-18 04:00:53','c0a1ae9a-c683-43c8-84e2-74e9bf861300'),(1107,73,17826,NULL,17619,3,'2021-05-18 04:00:53','2021-05-18 04:00:53','0858f45f-8a47-4374-afc0-6df8856f4cdb'),(1108,73,17826,NULL,17656,4,'2021-05-18 04:00:53','2021-05-18 04:00:53','63b75d0b-b070-4000-86b9-3beee8829b31'),(1109,73,17826,NULL,17657,5,'2021-05-18 04:00:53','2021-05-18 04:00:53','662db888-80a1-4bf4-b693-9ff62484a3d8'),(1110,73,17826,NULL,17658,6,'2021-05-18 04:00:53','2021-05-18 04:00:53','b5074762-fe68-4ddc-80af-b76063137425'),(1111,73,17826,NULL,17659,7,'2021-05-18 04:00:53','2021-05-18 04:00:53','5e460b40-2110-4cf1-ac73-1646bddf8d4b'),(1112,69,17654,NULL,17433,1,'2021-05-18 04:01:45','2021-05-18 04:01:45','d4d9370c-382f-4a13-b59f-86c18a44fe47'),(1113,69,17827,NULL,17433,1,'2021-05-18 04:01:45','2021-05-18 04:01:45','bce0a3e5-b9a9-4ef7-9cc0-9ed2b1910468'),(1114,73,17827,NULL,16866,1,'2021-05-18 04:01:45','2021-05-18 04:01:45','d1360210-2a04-4285-86ed-1516f8b2208d'),(1115,73,17827,NULL,16867,2,'2021-05-18 04:01:45','2021-05-18 04:01:45','265c4cbf-332d-4fd4-934d-a7f092025c8c'),(1116,73,17827,NULL,16870,3,'2021-05-18 04:01:45','2021-05-18 04:01:45','ba47af54-7e52-4ec0-9eb5-bd1e97eaa438'),(1117,73,17827,NULL,16880,4,'2021-05-18 04:01:45','2021-05-18 04:01:45','716781d8-2e49-41db-b8cd-90f28a22f8a1'),(1118,73,17827,NULL,16908,5,'2021-05-18 04:01:45','2021-05-18 04:01:45','62adeb9e-a27b-4be4-bce8-4dc1ed9dc02e'),(1119,73,17827,NULL,16920,6,'2021-05-18 04:01:45','2021-05-18 04:01:45','c55f82ec-3017-469d-a9d3-5f5f659d75b5'),(1120,73,17827,NULL,16959,7,'2021-05-18 04:01:45','2021-05-18 04:01:45','0eb98bae-f80f-422d-bb9d-403df86e614b'),(1121,73,17827,NULL,16960,8,'2021-05-18 04:01:45','2021-05-18 04:01:45','3223ccfe-3c69-4dac-84e0-9b16cdbc21a5'),(1122,69,17652,NULL,17434,1,'2021-05-18 04:02:23','2021-05-18 04:02:23','0ecfb695-3880-4264-b20d-7471cf8bce7c'),(1123,69,17828,NULL,17434,1,'2021-05-18 04:02:23','2021-05-18 04:02:23','79251671-1a65-49b0-ac00-58332de2abd5'),(1124,73,17828,NULL,16867,1,'2021-05-18 04:02:23','2021-05-18 04:02:23','b258688d-490f-4d5f-a03e-e27b0395127b'),(1125,73,17828,NULL,16869,2,'2021-05-18 04:02:23','2021-05-18 04:02:23','cf2ce57f-cc16-4ad7-ab95-c9a38f2f76f4'),(1126,73,17828,NULL,16870,3,'2021-05-18 04:02:23','2021-05-18 04:02:23','afd199ef-1e0c-4fb5-86c3-c04f857ea26d'),(1127,73,17828,NULL,16903,4,'2021-05-18 04:02:23','2021-05-18 04:02:23','1add78a5-c1fb-4fe7-bd4f-1e98c8be4c4c'),(1128,73,17828,NULL,16953,5,'2021-05-18 04:02:23','2021-05-18 04:02:23','904dc572-daa3-4afe-bfdd-d3c072ef7c77'),(1129,73,17828,NULL,16954,6,'2021-05-18 04:02:23','2021-05-18 04:02:23','9ca8c6bf-9ac4-45be-a915-4a1dc38ca4d5'),(1130,73,17828,NULL,16955,7,'2021-05-18 04:02:23','2021-05-18 04:02:23','e97c3637-fd47-4f13-a461-fd519f0de8a1'),(1131,73,17828,NULL,16956,8,'2021-05-18 04:02:23','2021-05-18 04:02:23','7b28eca3-974d-45b9-ba33-18fbbda727de'),(1132,69,17648,NULL,17435,1,'2021-05-18 04:03:05','2021-05-18 04:03:05','e05f4d24-2faa-48dd-9dca-51aaf9bae144'),(1133,69,17829,NULL,17435,1,'2021-05-18 04:03:05','2021-05-18 04:03:05','0b7b609c-03ba-401a-a2be-13cdb57f854a'),(1134,73,17829,NULL,16867,1,'2021-05-18 04:03:05','2021-05-18 04:03:05','425353a7-324c-47da-9f31-1c2867211907'),(1135,73,17829,NULL,16880,2,'2021-05-18 04:03:05','2021-05-18 04:03:05','142eb259-e562-4b01-ac77-7deed2e54944'),(1136,73,17829,NULL,16908,3,'2021-05-18 04:03:05','2021-05-18 04:03:05','ef818e31-325c-41be-9764-1b851d8f8dbf'),(1137,73,17829,NULL,16947,4,'2021-05-18 04:03:05','2021-05-18 04:03:05','702a6e56-40a1-4a04-b477-507c1658ec83'),(1138,73,17829,NULL,17606,5,'2021-05-18 04:03:05','2021-05-18 04:03:05','57fb10bc-be9e-41d4-83ae-a45ff2b8756a'),(1139,73,17829,NULL,17607,6,'2021-05-18 04:03:05','2021-05-18 04:03:05','1fa2094f-bbba-4e0d-9a8d-6d90c347fc08'),(1141,69,17830,NULL,17453,1,'2021-05-18 04:03:49','2021-05-18 04:03:49','66fa0ea9-45ad-4853-940f-3f9b330b2e94'),(1142,73,17830,NULL,16867,1,'2021-05-18 04:03:49','2021-05-18 04:03:49','2a10854a-f2bf-42d0-9726-55cc934b9426'),(1143,73,17830,NULL,16880,2,'2021-05-18 04:03:49','2021-05-18 04:03:49','ae8f58a1-264e-4a2a-bc90-517f4999a911'),(1144,73,17830,NULL,16908,3,'2021-05-18 04:03:49','2021-05-18 04:03:49','e5544e9d-b995-42ba-b475-f30165169ffc'),(1145,73,17830,NULL,16911,4,'2021-05-18 04:03:49','2021-05-18 04:03:49','936c0199-2a7a-419f-ac27-5b1ba4c6c798'),(1146,73,17830,NULL,16931,5,'2021-05-18 04:03:49','2021-05-18 04:03:49','b0ef15ff-f3b0-458d-85dd-7cb57dcec87b'),(1147,73,17830,NULL,16937,6,'2021-05-18 04:03:49','2021-05-18 04:03:49','78618f30-0646-4e4e-9810-643b9519fb36'),(1148,73,17830,NULL,16950,7,'2021-05-18 04:03:49','2021-05-18 04:03:49','de6fc035-0c4b-4e57-89b5-57597c0a7704'),(1150,69,17831,NULL,17436,1,'2021-05-18 04:04:32','2021-05-18 04:04:32','453ddfc6-2a4f-4fe1-828b-64cb03e1ee38'),(1151,73,17831,NULL,16867,1,'2021-05-18 04:04:32','2021-05-18 04:04:32','b087c5e8-74b0-4f9d-87d9-11ad4890fdbe'),(1152,73,17831,NULL,16870,2,'2021-05-18 04:04:32','2021-05-18 04:04:32','4198668c-85a0-41ae-8912-6d58439d3659'),(1153,73,17831,NULL,16880,3,'2021-05-18 04:04:32','2021-05-18 04:04:32','225a2ce5-0966-42fb-8f0e-7a74b5366f85'),(1154,73,17831,NULL,16892,4,'2021-05-18 04:04:32','2021-05-18 04:04:32','5283262d-2896-4023-8e87-10dafc44ffb3'),(1155,69,17644,NULL,17437,1,'2021-05-18 04:05:05','2021-05-18 04:05:05','f721d2eb-f1e9-4cc2-88b0-3688b37df7b6'),(1156,69,17832,NULL,17437,1,'2021-05-18 04:05:05','2021-05-18 04:05:05','de83c378-77e7-4f73-a1fd-d832d6e91283'),(1157,73,17832,NULL,16867,1,'2021-05-18 04:05:05','2021-05-18 04:05:05','1b577847-2146-4483-ada3-bdc1414be57a'),(1158,73,17832,NULL,16869,2,'2021-05-18 04:05:05','2021-05-18 04:05:05','5a04c9ab-4c97-44de-a680-62273f75ba8c'),(1159,73,17832,NULL,16907,3,'2021-05-18 04:05:05','2021-05-18 04:05:05','c78f5fa4-e0f5-4e19-89a9-b457a2992a4d'),(1160,73,17832,NULL,16908,4,'2021-05-18 04:05:05','2021-05-18 04:05:05','645b4a9e-9d80-4041-bfcf-47498a3fda02'),(1161,73,17832,NULL,16911,5,'2021-05-18 04:05:05','2021-05-18 04:05:05','43f90979-c253-4a1c-9a37-11134a3ddecf'),(1162,73,17832,NULL,16930,6,'2021-05-18 04:05:05','2021-05-18 04:05:05','c51ba362-b91c-4a99-b039-831b5d1a37f2'),(1163,73,17832,NULL,16931,7,'2021-05-18 04:05:05','2021-05-18 04:05:05','11a592d3-6fa1-4cb8-9011-a3f4fabb874b'),(1164,73,17832,NULL,16942,8,'2021-05-18 04:05:05','2021-05-18 04:05:05','29f7471c-0b88-44e5-acb4-2982310e8c54'),(1165,73,17832,NULL,17630,9,'2021-05-18 04:05:05','2021-05-18 04:05:05','19b693cc-03b4-4775-9986-f62dc9394eb8'),(1166,69,17635,NULL,17438,1,'2021-05-18 04:05:43','2021-05-18 04:05:43','ed1de97e-d3ab-4a0b-84d9-492edf5bf911'),(1167,69,17833,NULL,17438,1,'2021-05-18 04:05:43','2021-05-18 04:05:43','3adb61ec-335c-4b78-a784-bd0c784e05ad'),(1168,73,17833,NULL,16867,1,'2021-05-18 04:05:43','2021-05-18 04:05:43','fd2c4c0f-7194-473a-a76b-8d626d435f2d'),(1169,73,17833,NULL,16869,2,'2021-05-18 04:05:43','2021-05-18 04:05:43','4857f187-d6ac-47c0-b354-09139016992f'),(1170,73,17833,NULL,16903,3,'2021-05-18 04:05:43','2021-05-18 04:05:43','1fdfccb9-17a3-45b1-a370-0db992e3de04'),(1171,73,17833,NULL,16908,4,'2021-05-18 04:05:43','2021-05-18 04:05:43','23e258f8-493c-4140-81ec-79b688bde95a'),(1172,73,17833,NULL,16923,5,'2021-05-18 04:05:43','2021-05-18 04:05:43','e0b211d0-722c-4821-a62d-99e94ed224be'),(1173,73,17833,NULL,16926,6,'2021-05-18 04:05:43','2021-05-18 04:05:43','5db0c260-4d2f-463a-b557-dabe49dd17a5'),(1174,73,17833,NULL,16927,7,'2021-05-18 04:05:43','2021-05-18 04:05:43','7d42da89-0819-46f5-a5a3-f8ce9ed545dd'),(1175,73,17833,NULL,17607,8,'2021-05-18 04:05:43','2021-05-18 04:05:43','8f93aa0d-87e5-4bf5-8ac3-e03795e4eb09'),(1176,69,17642,NULL,17439,1,'2021-05-18 04:06:44','2021-05-18 04:06:44','c5805a5f-d4d3-48bd-be76-18cec9bc5120'),(1177,69,17834,NULL,17439,1,'2021-05-18 04:06:44','2021-05-18 04:06:44','84b6985c-0152-4be3-91e7-c174d0d824f7'),(1178,73,17834,NULL,16867,1,'2021-05-18 04:06:44','2021-05-18 04:06:44','1cff0a42-0cc2-4246-a2f3-6b9217a39f0b'),(1179,73,17834,NULL,16889,2,'2021-05-18 04:06:44','2021-05-18 04:06:44','af86e4aa-7c70-40e1-979f-66acfe57ae6b'),(1180,73,17834,NULL,16911,3,'2021-05-18 04:06:44','2021-05-18 04:06:44','6c92fb64-a978-4b05-93be-f1e32e4c3c19'),(1181,73,17834,NULL,16937,4,'2021-05-18 04:06:44','2021-05-18 04:06:44','de245146-5858-4267-9889-33e3fb172fc2'),(1182,73,17834,NULL,16938,5,'2021-05-18 04:06:44','2021-05-18 04:06:44','a85088de-4cd1-46f6-8f7b-dbcd56f7a378'),(1183,73,17834,NULL,17640,6,'2021-05-18 04:06:44','2021-05-18 04:06:44','7e0bdd49-4edb-406b-9564-f9db2ae08fc0'),(1184,73,17834,NULL,17641,7,'2021-05-18 04:06:44','2021-05-18 04:06:44','b61f422b-3be1-4a5b-afb3-719c64ee4fab'),(1185,69,17638,NULL,17440,1,'2021-05-18 04:07:42','2021-05-18 04:07:42','aab32b0c-5dbb-46f1-85c0-5821a63e7c62'),(1186,69,17835,NULL,17440,1,'2021-05-18 04:07:42','2021-05-18 04:07:42','76351afb-4f2b-4758-ab59-7d5194881003'),(1187,73,17835,NULL,16867,1,'2021-05-18 04:07:42','2021-05-18 04:07:42','d3856354-23a0-414e-8d7d-4fcc832ca711'),(1188,73,17835,NULL,16908,2,'2021-05-18 04:07:42','2021-05-18 04:07:42','682a23fc-9763-46dc-97f0-7896f3642b97'),(1189,73,17835,NULL,16911,3,'2021-05-18 04:07:42','2021-05-18 04:07:42','aa6eecea-09d2-40b2-99cd-8c7f22c297a1'),(1190,73,17835,NULL,16930,4,'2021-05-18 04:07:42','2021-05-18 04:07:42','751895b2-82c5-4fd4-b099-46f54e08b5af'),(1191,73,17835,NULL,16931,5,'2021-05-18 04:07:42','2021-05-18 04:07:42','354ee26e-9a1c-477d-bb46-a2514ebd4ff3'),(1192,73,17835,NULL,16932,6,'2021-05-18 04:07:42','2021-05-18 04:07:42','f5700835-0e75-461d-8143-beaeff2fbc26'),(1193,73,17835,NULL,17607,7,'2021-05-18 04:07:42','2021-05-18 04:07:42','23415e6a-11f8-4602-b726-7f1fd25e05ed'),(1194,73,17835,NULL,17637,8,'2021-05-18 04:07:42','2021-05-18 04:07:42','345a1fee-875e-4beb-bddc-f1159509c140'),(1195,69,17633,NULL,17442,1,'2021-05-18 04:08:21','2021-05-18 04:08:21','b1eb3d90-727b-4ee3-b9f5-401cc12dc931'),(1196,69,17836,NULL,17442,1,'2021-05-18 04:08:21','2021-05-18 04:08:21','46f75e8b-8d49-4f67-9107-460800782f2a'),(1197,73,17836,NULL,16867,1,'2021-05-18 04:08:21','2021-05-18 04:08:21','67b71819-f073-4b36-9c9e-50917c9996b8'),(1198,73,17836,NULL,16880,2,'2021-05-18 04:08:21','2021-05-18 04:08:21','90897b5d-8290-4f9b-b790-e4909866fb9d'),(1199,73,17836,NULL,16886,3,'2021-05-18 04:08:21','2021-05-18 04:08:21','eb3c8f26-765d-4737-8c47-a5ac6c6a0227'),(1200,73,17836,NULL,16889,4,'2021-05-18 04:08:21','2021-05-18 04:08:21','201a5b07-767a-4238-9841-5f448c353ae2'),(1201,73,17836,NULL,16897,5,'2021-05-18 04:08:21','2021-05-18 04:08:21','a8138814-d678-4ef4-a8e4-994a3128efef'),(1202,73,17836,NULL,16908,6,'2021-05-18 04:08:21','2021-05-18 04:08:21','c26ec57b-c31b-495d-86e6-2fc98c231268'),(1203,73,17836,NULL,16923,7,'2021-05-18 04:08:21','2021-05-18 04:08:21','4d733955-ec03-4284-af80-50b9a1654404'),(1204,69,17631,NULL,17441,1,'2021-05-18 04:08:57','2021-05-18 04:08:57','a2b0cc91-fd38-4cba-bd14-fb03cc4ba4ec'),(1205,69,17837,NULL,17441,1,'2021-05-18 04:08:57','2021-05-18 04:08:57','256452eb-8b4e-49f9-9176-977b8a4ec272'),(1206,73,17837,NULL,16867,1,'2021-05-18 04:08:57','2021-05-18 04:08:57','276ed166-e500-464f-a9ae-0fd6f2e96a00'),(1207,73,17837,NULL,16870,2,'2021-05-18 04:08:57','2021-05-18 04:08:57','bee79408-1924-4b35-8d16-d96f69e89127'),(1208,73,17837,NULL,16892,3,'2021-05-18 04:08:57','2021-05-18 04:08:57','24d5e839-0fa9-404a-9d8a-388d645610bb'),(1209,73,17837,NULL,16901,4,'2021-05-18 04:08:57','2021-05-18 04:08:57','3d6ee9ed-7529-44d5-b39d-17980fa277bb'),(1210,73,17837,NULL,16918,5,'2021-05-18 04:08:57','2021-05-18 04:08:57','38d3b11a-f759-4c9e-bfc9-663927f46af2'),(1211,73,17837,NULL,16920,6,'2021-05-18 04:08:57','2021-05-18 04:08:57','dd05ed87-c2a8-4189-a0f6-470ceda2b58f'),(1212,73,17837,NULL,17630,7,'2021-05-18 04:08:57','2021-05-18 04:08:57','90f4b4a5-e4b2-403c-ad3c-2b4fb097199e'),(1213,69,17628,NULL,17443,1,'2021-05-18 04:09:35','2021-05-18 04:09:35','b399c271-a699-4379-8cfe-11322dc90a6b'),(1214,69,17838,NULL,17443,1,'2021-05-18 04:09:35','2021-05-18 04:09:35','b882ea6a-89f5-470a-92bb-10946e3886b0'),(1215,73,17838,NULL,16867,1,'2021-05-18 04:09:35','2021-05-18 04:09:35','68d46639-56d3-4501-8b56-1c64b1bd4134'),(1216,73,17838,NULL,16880,2,'2021-05-18 04:09:35','2021-05-18 04:09:35','dc5e5890-f8ae-482f-9880-178ae58da807'),(1217,73,17838,NULL,16892,3,'2021-05-18 04:09:35','2021-05-18 04:09:35','ba4dc1f3-60d7-4c97-8b38-156e575a3b63'),(1218,73,17838,NULL,16896,4,'2021-05-18 04:09:35','2021-05-18 04:09:35','ea8692af-4b62-4332-a421-f0b4f780eb32'),(1219,73,17838,NULL,16897,5,'2021-05-18 04:09:35','2021-05-18 04:09:35','6bdb4965-f81b-4d26-b14b-fb3aed907801'),(1220,73,17838,NULL,16915,6,'2021-05-18 04:09:35','2021-05-18 04:09:35','3f0637aa-e4cc-4803-af81-dff84c142065'),(1221,69,17626,NULL,17444,1,'2021-05-18 04:10:15','2021-05-18 04:10:15','ce0d015e-558e-48ec-aba3-863c4885d1fe'),(1222,69,17839,NULL,17444,1,'2021-05-18 04:10:15','2021-05-18 04:10:15','2715599d-1d5d-4303-8cd4-77cd320a73f5'),(1223,73,17839,NULL,16870,1,'2021-05-18 04:10:15','2021-05-18 04:10:15','82caf423-f858-4e7a-9c51-a58f0aac1f06'),(1224,73,17839,NULL,16908,2,'2021-05-18 04:10:15','2021-05-18 04:10:15','1f4e5240-def1-47d5-aaf4-c2ea1706ea27'),(1225,73,17839,NULL,16911,3,'2021-05-18 04:10:15','2021-05-18 04:10:15','1e1dee09-0cfd-40a5-9a3f-093118f6d43c'),(1226,73,17839,NULL,17619,4,'2021-05-18 04:10:15','2021-05-18 04:10:15','111237ed-4e54-44ca-ad36-70ad0fcf125d'),(1227,73,17839,NULL,17620,5,'2021-05-18 04:10:15','2021-05-18 04:10:15','3d2b3980-b119-467b-81f2-c494605b74e8'),(1228,73,17839,NULL,17625,6,'2021-05-18 04:10:15','2021-05-18 04:10:15','210a3ae7-4bff-49a7-a0d3-f1726c26cedb'),(1229,69,17621,NULL,17445,1,'2021-05-18 04:11:10','2021-05-18 04:11:10','367e6d6a-16e0-4474-a8f8-1368b93bbc63'),(1230,69,17840,NULL,17445,1,'2021-05-18 04:11:10','2021-05-18 04:11:10','c14af7a7-7546-4677-95ac-5da9d1d0d7f6'),(1231,73,17840,NULL,16867,1,'2021-05-18 04:11:10','2021-05-18 04:11:10','6d944972-a9c1-4dd8-8a6e-24f42f154c78'),(1232,73,17840,NULL,16870,2,'2021-05-18 04:11:10','2021-05-18 04:11:10','23f59fc3-76c4-4fcc-b2a0-2a349bbeb577'),(1233,73,17840,NULL,16900,3,'2021-05-18 04:11:10','2021-05-18 04:11:10','b2f8d057-e9e7-4276-8ef5-d3e0b3b90a36'),(1234,73,17840,NULL,16901,4,'2021-05-18 04:11:10','2021-05-18 04:11:10','6bf4dbe4-00c4-4c45-abc9-59de67395e16'),(1235,73,17840,NULL,16903,5,'2021-05-18 04:11:10','2021-05-18 04:11:10','bab522d9-16d3-42cf-ad0c-b8a78a4c3c81'),(1236,73,17840,NULL,17619,6,'2021-05-18 04:11:10','2021-05-18 04:11:10','83c96245-3dc4-4d33-99ae-341c099b75ec'),(1237,73,17840,NULL,17620,7,'2021-05-18 04:11:10','2021-05-18 04:11:10','96d27aa3-f138-4c5c-9d63-8e3122d1bf31'),(1238,69,17623,NULL,17446,1,'2021-05-18 04:11:52','2021-05-18 04:11:52','a59d29ef-d7ac-4305-ab81-ce3fd1e2a4aa'),(1239,69,17841,NULL,17446,1,'2021-05-18 04:11:52','2021-05-18 04:11:52','faee5295-81e1-48f9-bd2a-5cb6b03bce3e'),(1240,73,17841,NULL,16867,1,'2021-05-18 04:11:52','2021-05-18 04:11:52','1aca611a-d7c5-48fc-a383-886d5cdd0aea'),(1241,73,17841,NULL,16881,2,'2021-05-18 04:11:52','2021-05-18 04:11:52','245b34ce-1bd9-476e-afa9-6ab0374174d4'),(1242,73,17841,NULL,16886,3,'2021-05-18 04:11:52','2021-05-18 04:11:52','81534d08-ad94-4486-8ee9-deea15e07acf'),(1243,73,17841,NULL,16889,4,'2021-05-18 04:11:52','2021-05-18 04:11:52','894e0242-19ab-4945-a670-6bccfc1717ff'),(1244,73,17841,NULL,16892,5,'2021-05-18 04:11:52','2021-05-18 04:11:52','871c93e6-e5bf-40ee-9dd6-4178e7ef41f6'),(1245,73,17841,NULL,16907,6,'2021-05-18 04:11:52','2021-05-18 04:11:52','eab21d2d-6106-4d71-b292-26d2a3a39f87'),(1246,73,17841,NULL,16908,7,'2021-05-18 04:11:52','2021-05-18 04:11:52','8ec1c895-990d-45a8-a981-33a35c97ea39'),(1247,73,17841,NULL,17607,8,'2021-05-18 04:11:52','2021-05-18 04:11:52','e69516f6-0287-430c-a2c0-17f671103cc3'),(1248,69,17617,NULL,17447,1,'2021-05-18 04:12:33','2021-05-18 04:12:33','c140458a-25b8-4b5c-93e4-b145ebf490ba'),(1249,69,17842,NULL,17447,1,'2021-05-18 04:12:33','2021-05-18 04:12:33','60c2bca1-bc5a-40f8-ad57-7a21eda7841b'),(1250,73,17842,NULL,16867,1,'2021-05-18 04:12:33','2021-05-18 04:12:33','1fa93b5f-cd12-40f0-bc58-2c0a0ed3e31c'),(1251,73,17842,NULL,16880,2,'2021-05-18 04:12:33','2021-05-18 04:12:33','274306d0-0714-43cd-bef9-6c9c73c47bf7'),(1252,73,17842,NULL,16881,3,'2021-05-18 04:12:33','2021-05-18 04:12:33','7e584080-fe5c-4e34-8855-4d32b343dd37'),(1253,73,17842,NULL,16896,4,'2021-05-18 04:12:33','2021-05-18 04:12:33','6540ba05-a29c-4f57-889e-390a07ca5491'),(1254,73,17842,NULL,16897,5,'2021-05-18 04:12:33','2021-05-18 04:12:33','4b61e4cf-ab92-4a87-809a-612ce3ef62b7'),(1255,69,17615,NULL,17448,1,'2021-05-18 04:13:08','2021-05-18 04:13:08','a69d5605-012e-4bdd-96c1-31d994524c29'),(1256,69,17843,NULL,17448,1,'2021-05-18 04:13:08','2021-05-18 04:13:08','0e885227-aac3-4a08-9b78-a6b48fa7c8e1'),(1257,73,17843,NULL,16867,1,'2021-05-18 04:13:08','2021-05-18 04:13:08','6420808d-88a2-402c-ad8d-1f1c334a53ca'),(1258,73,17843,NULL,16881,2,'2021-05-18 04:13:08','2021-05-18 04:13:08','0247827f-5080-469a-822d-32d433a58f34'),(1259,73,17843,NULL,16889,3,'2021-05-18 04:13:08','2021-05-18 04:13:08','b9d7aed8-66db-4be7-a246-bf4aecb9c829'),(1260,73,17843,NULL,16892,4,'2021-05-18 04:13:08','2021-05-18 04:13:08','15a3a698-1826-4778-8d3e-f020b6d1baba'),(1261,73,17843,NULL,16893,5,'2021-05-18 04:13:08','2021-05-18 04:13:08','53d5aa8a-3fff-446d-951f-3ceaab7907a0'),(1262,69,17613,NULL,17449,1,'2021-05-18 04:13:41','2021-05-18 04:13:41','7027543d-b7db-497c-8778-ea81b2c4ce17'),(1263,69,17844,NULL,17449,1,'2021-05-18 04:13:41','2021-05-18 04:13:41','1f9d53b0-79a3-4e27-b451-fb77800202d1'),(1264,73,17844,NULL,16867,1,'2021-05-18 04:13:41','2021-05-18 04:13:41','8b231657-ac34-48ec-8219-79d0a5d9c583'),(1265,73,17844,NULL,16886,2,'2021-05-18 04:13:41','2021-05-18 04:13:41','59954727-d4ab-4489-9376-049bdae47073'),(1266,73,17844,NULL,16887,3,'2021-05-18 04:13:41','2021-05-18 04:13:41','126a09d7-9136-4399-a6ce-c53e604db773'),(1267,73,17844,NULL,16888,4,'2021-05-18 04:13:41','2021-05-18 04:13:41','059d00d3-ea57-405c-acbb-8caa3b675a77'),(1268,73,17844,NULL,16889,5,'2021-05-18 04:13:41','2021-05-18 04:13:41','5999dfda-89eb-4916-ba78-d0847e072f55'),(1269,69,17611,NULL,17450,1,'2021-05-18 04:14:19','2021-05-18 04:14:19','624b0f05-1ba3-41af-8c89-9084dc4cd392'),(1270,69,17845,NULL,17450,1,'2021-05-18 04:14:19','2021-05-18 04:14:19','7a2ec52d-f2b0-4a7a-8021-ec7dda75220c'),(1271,73,17845,NULL,16867,1,'2021-05-18 04:14:19','2021-05-18 04:14:19','6f095099-a8f7-4389-9ff5-4930967c0d96'),(1272,73,17845,NULL,16880,2,'2021-05-18 04:14:19','2021-05-18 04:14:19','182c0869-1eba-4183-9758-460ee5dbc217'),(1273,73,17845,NULL,16881,3,'2021-05-18 04:14:19','2021-05-18 04:14:19','887bd703-1adc-4ea9-bfeb-6cf4d730d15e'),(1274,73,17845,NULL,16882,4,'2021-05-18 04:14:19','2021-05-18 04:14:19','02b3ab7b-51c4-4014-bcd0-162818d0dbdd'),(1275,73,17845,NULL,17610,5,'2021-05-18 04:14:19','2021-05-18 04:14:19','53df5177-c027-47da-96d3-6c0f6d6b4e03'),(1276,69,17608,NULL,17451,1,'2021-05-18 04:14:57','2021-05-18 04:14:57','ed4f1403-c3fe-44c4-8df5-695eb704e150'),(1277,69,17846,NULL,17451,1,'2021-05-18 04:14:57','2021-05-18 04:14:57','7518f674-09cd-4105-97e6-9a1e22cd1dc3'),(1278,73,17846,NULL,16867,1,'2021-05-18 04:14:57','2021-05-18 04:14:57','fe1df150-0fef-48ad-8a93-4190fbd5fc45'),(1279,73,17846,NULL,16870,2,'2021-05-18 04:14:57','2021-05-18 04:14:57','0cc19dd4-3d1e-43da-95d3-81e5d94ec738'),(1280,73,17846,NULL,17605,3,'2021-05-18 04:14:57','2021-05-18 04:14:57','cfd702cb-b146-4268-9d4c-fd95b400127f'),(1281,73,17846,NULL,17606,4,'2021-05-18 04:14:57','2021-05-18 04:14:57','b2f23add-15e3-45d1-a009-4c41c0c457a7'),(1282,73,17846,NULL,17607,5,'2021-05-18 04:14:57','2021-05-18 04:14:57','9a5cc222-1c05-44e4-9950-31634f23e16d'),(1283,69,17603,NULL,17452,1,'2021-05-18 04:15:29','2021-05-18 04:15:29','eb0ceac0-7097-44f4-af35-aa9afb0f01f5'),(1284,69,17847,NULL,17452,1,'2021-05-18 04:15:29','2021-05-18 04:15:29','ad5e2207-e53c-4e81-9c58-cbcffe6b94f2'),(1285,73,17847,NULL,16866,1,'2021-05-18 04:15:29','2021-05-18 04:15:29','1970b984-bba0-45d3-8a4f-0174b7121567'),(1286,73,17847,NULL,16867,2,'2021-05-18 04:15:29','2021-05-18 04:15:29','db2586c2-404f-4f63-ab72-ef8321d25af3'),(1287,73,17847,NULL,16869,3,'2021-05-18 04:15:29','2021-05-18 04:15:29','0c980b24-b8b1-4c67-9ccc-33a19ddbcb2b'),(1288,73,17847,NULL,16870,4,'2021-05-18 04:15:29','2021-05-18 04:15:29','271a0709-4360-47c6-8997-ad44d92ebffc'),(1289,73,17847,NULL,17600,5,'2021-05-18 04:15:29','2021-05-18 04:15:29','5972f62e-b901-411c-acd2-9028727c3899'),(1290,73,17847,NULL,17601,6,'2021-05-18 04:15:29','2021-05-18 04:15:29','aefdb2a9-227d-42e9-8c3a-881905d59b35'),(1291,73,17847,NULL,17602,7,'2021-05-18 04:15:29','2021-05-18 04:15:29','fe1beff0-0cbe-43be-a0a3-44e258b2c868'),(1323,79,16571,NULL,17875,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','412704d5-f9d6-411b-a4a1-3fcad54864df'),(1325,79,16571,NULL,1,2,'2021-06-01 07:20:12','2022-05-30 01:45:01','859e1d57-8986-42fa-8f59-39fe2dbed1e0'),(1326,79,16571,NULL,17954,3,'2021-06-01 07:20:12','2022-05-30 01:45:01','efba435d-1dc5-43b0-a976-5285e792c78d'),(1327,79,17977,NULL,17875,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','9188cd7e-35ad-41e3-9b1c-7b5b8b07f6f2'),(1329,79,17977,NULL,1,3,'2021-06-01 07:20:12','2021-06-01 07:20:12','e53b03a3-4893-4731-91d7-de723bc9e547'),(1330,79,17977,NULL,17954,4,'2021-06-01 07:20:12','2021-06-01 07:20:12','0a972527-57ae-4b17-a3f7-6673c6e5834f'),(1331,69,17977,NULL,16693,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','93ea264b-9eb3-4f2c-a007-c5d79b6b3b1f'),(1332,70,17977,NULL,16795,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','5821dd3c-34fc-49b9-8db8-33e36467d570'),(1333,64,17978,NULL,16629,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','c71ad7cb-0045-4f53-abff-76c5dc720291'),(1334,64,17979,NULL,16630,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','bff4f667-0d9d-4512-9c0c-6d714685ce8f'),(1335,64,17981,NULL,16648,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','7036f483-016e-4472-9beb-e4a48e935ce7'),(1336,64,17982,NULL,16665,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','dbf98b20-9b4b-4d8e-a6ac-b947b62b983d'),(1337,64,17983,NULL,16669,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','d2199c89-259a-472d-8dee-ed50fae411b9'),(1338,64,17984,NULL,16675,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','84836fb2-96bb-48be-9cfc-63cf83089ef5'),(1339,64,17985,NULL,16683,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','cd6650fc-6005-4300-9db9-4a65e22884c0'),(1340,64,17986,NULL,16693,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','f01df624-a1a7-4906-864e-795c5c004d58'),(1341,64,17987,NULL,16705,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','083e97ba-8825-4997-899c-ae32fb025fec'),(1342,64,17988,NULL,16719,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','e8076f60-3b3f-484c-b1d4-03c43b51d2b8'),(1343,64,17989,NULL,16735,1,'2021-06-01 07:20:12','2021-06-01 07:20:12','28141caf-481d-4ff2-ae16-bbbe51ea6f44'),(1344,69,18003,NULL,16824,1,'2021-06-03 05:19:19','2021-06-03 05:19:19','9fedc694-fa44-4ef3-aa9d-475c543e2aae'),(1345,70,18003,NULL,16834,1,'2021-06-03 05:19:19','2021-06-03 05:19:19','d1c2af0f-d910-40ba-83c9-a36968b59b94'),(1346,64,18004,NULL,16839,1,'2021-06-03 05:19:19','2021-06-03 05:19:19','7064c793-8e25-4521-a0d8-ead7938765ab'),(1359,69,18021,NULL,16824,1,'2021-06-03 05:22:27','2021-06-03 05:22:27','73902269-5be9-40f1-84ab-e1542745c228'),(1360,70,18021,NULL,16834,1,'2021-06-03 05:22:27','2021-06-03 05:22:27','7ed9bca9-44a5-4eea-864a-7c39c3fb98ac'),(1361,64,18022,NULL,17780,1,'2021-06-03 05:22:27','2021-06-03 05:22:27','246fd00c-1928-44bb-9044-bc5ddf7b8f6a'),(1362,64,18024,NULL,17784,1,'2021-06-03 05:22:27','2021-06-03 05:22:27','c92c3832-a64a-4e2a-91b2-3be2cc3556d2'),(1363,64,18025,NULL,16838,1,'2021-06-03 05:22:27','2021-06-03 05:22:27','2f374f0d-cc52-4f00-b3a2-e9e37daba08c'),(1365,69,18027,NULL,16824,1,'2021-06-03 05:27:17','2021-06-03 05:27:17','29dc2bfa-ccc0-464a-b619-8f6e78972863'),(1366,70,18027,NULL,16834,1,'2021-06-03 05:27:17','2021-06-03 05:27:17','79b76080-0786-43b9-a6c3-df2e4a63b46a'),(1367,64,18028,NULL,17780,1,'2021-06-03 05:27:17','2021-06-03 05:27:17','22ccc3a8-c654-4e0b-89c9-6dcbd180a457'),(1368,64,18030,NULL,17784,1,'2021-06-03 05:27:17','2021-06-03 05:27:17','414337b3-e63a-425d-9422-c17db6121ceb'),(1369,64,18031,NULL,16838,1,'2021-06-03 05:27:18','2021-06-03 05:27:18','40983714-5aa4-401e-b1eb-1bbf696d8ac9'),(1370,86,18032,NULL,16840,1,'2021-06-03 05:27:18','2021-06-03 05:27:18','0cfedfd8-79b1-44e4-9123-0ce0ea86a24e'),(1371,90,16828,NULL,18033,1,'2021-06-03 05:55:32','2021-06-03 05:55:32','b5e8a2db-36bd-420e-bac1-04cb4b479972'),(1372,69,18034,NULL,16824,1,'2021-06-03 05:55:32','2021-06-03 05:55:32','df81619a-e8b2-4b39-89db-9e7bfaf54dfb'),(1373,70,18034,NULL,16834,1,'2021-06-03 05:55:32','2021-06-03 05:55:32','63d2ce20-b1ce-48ea-ac80-8ea673a1bd39'),(1374,90,18034,NULL,18033,1,'2021-06-03 05:55:32','2021-06-03 05:55:32','e3b8d494-f10f-4d13-b6e1-dd205107ae06'),(1375,64,18035,NULL,17780,1,'2021-06-03 05:55:32','2021-06-03 05:55:32','1af8789e-79eb-43bd-93f5-3ae343067a76'),(1376,64,18037,NULL,17784,1,'2021-06-03 05:55:32','2021-06-03 05:55:32','87e3a912-ad40-4250-bcc3-170807514dcd'),(1377,64,18038,NULL,16838,1,'2021-06-03 05:55:32','2021-06-03 05:55:32','8fb86103-f625-4a1e-9069-fadaf7329ed9'),(1378,86,18039,NULL,16840,1,'2021-06-03 05:55:32','2021-06-03 05:55:32','a557e7b5-5c2c-416b-a1d7-24ac48a6fb17'),(1379,90,16828,NULL,18040,2,'2021-06-03 05:56:53','2021-06-03 05:56:53','0101b9ae-5e1a-4320-8143-5141135fff89'),(1380,90,16828,NULL,18041,3,'2021-06-03 05:56:53','2021-06-03 05:56:53','88dfc7dc-027f-4586-aa93-c53ccc5099e7'),(1381,90,16828,NULL,18042,4,'2021-06-03 05:56:53','2021-06-03 05:56:53','a7f54d95-1902-486b-a379-b05a8850984f'),(1382,90,16828,NULL,18043,5,'2021-06-03 05:56:53','2021-06-03 05:56:53','a229084e-7770-4cf2-8964-288c244e705f'),(1383,90,16828,NULL,18044,6,'2021-06-03 05:56:53','2021-06-03 05:56:53','5d8e3b56-bf59-4afc-b352-c54d734a33a6'),(1384,90,16828,NULL,18045,7,'2021-06-03 05:56:53','2021-06-03 05:56:53','551c8b2c-b537-423a-bbae-596d4f62f811'),(1385,90,16828,NULL,18046,8,'2021-06-03 05:56:53','2021-06-03 05:56:53','1b89f842-20a9-4d7d-9d2f-a21b0b71fa06'),(1386,90,16828,NULL,18047,9,'2021-06-03 05:56:53','2021-06-03 05:56:53','a0dc7685-1001-40c1-abff-e6a932a6e80e'),(1387,90,16828,NULL,18048,10,'2021-06-03 05:56:53','2021-06-03 05:56:53','59e75375-fced-44d3-afc8-f60a63f85da5'),(1388,90,16828,NULL,18049,11,'2021-06-03 05:56:53','2021-06-03 05:56:53','a1653c9e-b2b2-456a-990b-6191e4eef3c1'),(1389,90,16828,NULL,18050,12,'2021-06-03 05:56:53','2021-06-03 05:56:53','e7dabe54-55fd-49b3-a26c-0dc696a5121e'),(1390,69,18051,NULL,16824,1,'2021-06-03 05:56:53','2021-06-03 05:56:53','7169bdce-7597-4c19-a03c-34567e129e2c'),(1391,70,18051,NULL,16834,1,'2021-06-03 05:56:53','2021-06-03 05:56:53','1815c471-e5c5-4861-8cd0-4a14c6f18fca'),(1392,90,18051,NULL,18033,1,'2021-06-03 05:56:53','2021-06-03 05:56:53','fa9eada2-fb33-439d-96db-a021d7b77721'),(1393,90,18051,NULL,18040,2,'2021-06-03 05:56:53','2021-06-03 05:56:53','2a6091c0-bdc0-4308-9332-cb88d878c664'),(1394,90,18051,NULL,18041,3,'2021-06-03 05:56:53','2021-06-03 05:56:53','26f2e261-3af1-43f0-ae47-5212c7add72d'),(1395,90,18051,NULL,18042,4,'2021-06-03 05:56:53','2021-06-03 05:56:53','2d13fcf8-bef6-45a0-81d5-3c5fd24b4dc4'),(1396,90,18051,NULL,18043,5,'2021-06-03 05:56:53','2021-06-03 05:56:53','f3340337-3e4d-4378-8ffa-5ef84aa7f4fc'),(1397,90,18051,NULL,18044,6,'2021-06-03 05:56:53','2021-06-03 05:56:53','0bb42e5e-cd41-434f-832b-1811fc13ff06'),(1398,90,18051,NULL,18045,7,'2021-06-03 05:56:53','2021-06-03 05:56:53','e2eab9b4-fa69-4d2b-be7c-0c7d96963891'),(1399,90,18051,NULL,18046,8,'2021-06-03 05:56:53','2021-06-03 05:56:53','c56702f8-1eb6-4b0b-b4c0-c2fdfd68f290'),(1400,90,18051,NULL,18047,9,'2021-06-03 05:56:53','2021-06-03 05:56:53','dab8162c-2fba-4f12-8fb5-e8996b66fa95'),(1401,90,18051,NULL,18048,10,'2021-06-03 05:56:53','2021-06-03 05:56:53','b0db8696-2163-4a0e-8c32-c9cadbed55b6'),(1402,90,18051,NULL,18049,11,'2021-06-03 05:56:53','2021-06-03 05:56:53','ce2cfd12-5a9f-411d-8adc-77ace23fe61c'),(1403,90,18051,NULL,18050,12,'2021-06-03 05:56:53','2021-06-03 05:56:53','2f93bea1-d5a5-4fd3-ac00-269b6222846a'),(1404,64,18052,NULL,17780,1,'2021-06-03 05:56:54','2021-06-03 05:56:54','6d2f23aa-c47c-464d-8cc2-1dcf19e4dcf1'),(1405,64,18054,NULL,17784,1,'2021-06-03 05:56:54','2021-06-03 05:56:54','7e868f30-479d-47d8-a555-42774e0a51e8'),(1406,64,18055,NULL,16838,1,'2021-06-03 05:56:54','2021-06-03 05:56:54','01058f15-855f-4679-8284-c90573ae3c2a'),(1407,86,18056,NULL,16840,1,'2021-06-03 05:56:54','2021-06-03 05:56:54','2f3af519-aa9a-4986-b5f8-9e335105145c'),(1428,85,16828,NULL,17966,2,'2021-06-03 06:11:00','2021-08-26 23:27:01','41ed0aa9-ca4d-4bec-90cd-6e22e3f8736b'),(1429,84,16828,NULL,18057,1,'2021-06-03 06:11:00','2021-06-03 06:11:00','606dfa3e-8cf7-4059-a8d6-a6971df429ad'),(1434,69,18071,NULL,16824,1,'2021-06-03 06:11:01','2021-06-03 06:11:01','a204dd17-8351-45c7-94e8-1cdcec022818'),(1435,70,18071,NULL,16834,1,'2021-06-03 06:11:01','2021-06-03 06:11:01','ead60b83-17d1-4927-8113-fb3aa5bcbdcf'),(1436,90,18071,NULL,18033,1,'2021-06-03 06:11:01','2021-06-03 06:11:01','2001bec9-0cfb-4a61-ab75-4700b1043568'),(1437,90,18071,NULL,18040,2,'2021-06-03 06:11:01','2021-06-03 06:11:01','93ee99a9-7b14-4862-b438-4b670a5b5072'),(1438,90,18071,NULL,18041,3,'2021-06-03 06:11:01','2021-06-03 06:11:01','afe372f7-21fa-40b7-8d48-08953041d1ea'),(1439,90,18071,NULL,18042,4,'2021-06-03 06:11:01','2021-06-03 06:11:01','9f04ad1e-88cc-4d60-b8cd-e13f40d0cde7'),(1440,90,18071,NULL,18043,5,'2021-06-03 06:11:01','2021-06-03 06:11:01','5fffec46-27a9-4655-a9f4-b8eadfd633cf'),(1441,90,18071,NULL,18044,6,'2021-06-03 06:11:01','2021-06-03 06:11:01','c5faa040-a2b8-46bd-94a4-1c80032e4121'),(1442,90,18071,NULL,18045,7,'2021-06-03 06:11:01','2021-06-03 06:11:01','d8cb1837-77a1-4d18-95a8-b304ad53fa03'),(1443,90,18071,NULL,18046,8,'2021-06-03 06:11:01','2021-06-03 06:11:01','5659191f-09ea-40ae-ac67-e70c3369ec0c'),(1444,90,18071,NULL,18047,9,'2021-06-03 06:11:01','2021-06-03 06:11:01','0da8ca46-e80d-45ae-973b-6688feca23d8'),(1445,90,18071,NULL,18048,10,'2021-06-03 06:11:01','2021-06-03 06:11:01','9913b264-9d5c-4ec9-8580-413ace21dc71'),(1446,90,18071,NULL,18049,11,'2021-06-03 06:11:01','2021-06-03 06:11:01','9dddbcc7-efa4-4243-a92b-d21a4c892b93'),(1447,90,18071,NULL,18050,12,'2021-06-03 06:11:01','2021-06-03 06:11:01','575bfc2d-3e22-4584-b973-b1bf97aca93a'),(1448,85,18071,NULL,17966,1,'2021-06-03 06:11:01','2021-06-03 06:11:01','263dbb1b-7046-4833-86e6-fcea908211f5'),(1449,84,18071,NULL,18057,1,'2021-06-03 06:11:01','2021-06-03 06:11:01','afeb2c84-2e37-4019-b4a9-9309f1639bec'),(1450,64,18072,NULL,17780,1,'2021-06-03 06:11:01','2021-06-03 06:11:01','1c6420e4-b7c9-4f28-9103-33d51abca572'),(1451,64,18074,NULL,17784,1,'2021-06-03 06:11:01','2021-06-03 06:11:01','e4f7bb55-0f34-402f-b6fe-b6c50d519298'),(1452,64,18075,NULL,16838,1,'2021-06-03 06:11:01','2021-06-03 06:11:01','2f67bc30-e863-47cb-839f-b79bb6237df3'),(1453,86,18076,NULL,16840,1,'2021-06-03 06:11:01','2021-06-03 06:11:01','c1eaeb10-032e-435d-9b19-8f6e4a3ff589'),(1454,69,18077,NULL,16824,1,'2021-06-03 06:12:30','2021-06-03 06:12:30','656f97ab-be5f-44f2-af43-ecce72867fb6'),(1455,70,18077,NULL,16834,1,'2021-06-03 06:12:30','2021-06-03 06:12:30','1e6de7eb-759d-4d46-9e90-ace92b20af01'),(1456,90,18077,NULL,18033,1,'2021-06-03 06:12:30','2021-06-03 06:12:30','59f8cefc-1041-4050-8d40-436cf43a9810'),(1457,90,18077,NULL,18040,2,'2021-06-03 06:12:30','2021-06-03 06:12:30','68c412ef-fd86-4f82-a402-91d88e2f53de'),(1458,90,18077,NULL,18041,3,'2021-06-03 06:12:30','2021-06-03 06:12:30','407796bb-e6a0-485d-a435-fa2c7e709339'),(1459,90,18077,NULL,18042,4,'2021-06-03 06:12:30','2021-06-03 06:12:30','b1f4129f-b317-4310-811a-38663aca19bd'),(1460,90,18077,NULL,18043,5,'2021-06-03 06:12:30','2021-06-03 06:12:30','ba23b6ab-c318-406c-88e7-8d1b72ac3151'),(1461,90,18077,NULL,18044,6,'2021-06-03 06:12:30','2021-06-03 06:12:30','419bad82-8909-41d8-8e15-d0f3ced8c8a1'),(1462,90,18077,NULL,18045,7,'2021-06-03 06:12:30','2021-06-03 06:12:30','5d2b392e-822a-477b-9f6c-b907c75eb6c9'),(1463,90,18077,NULL,18046,8,'2021-06-03 06:12:30','2021-06-03 06:12:30','3478107f-e42c-4b25-848e-1f9bca0f43a8'),(1464,90,18077,NULL,18047,9,'2021-06-03 06:12:30','2021-06-03 06:12:30','416660d6-ccfc-4d88-b981-881ca2abbf48'),(1465,90,18077,NULL,18048,10,'2021-06-03 06:12:30','2021-06-03 06:12:30','a839d210-5cb8-4500-98f4-5dbf208ea44d'),(1466,90,18077,NULL,18049,11,'2021-06-03 06:12:30','2021-06-03 06:12:30','d717d0c0-c878-44e1-96fd-668d093d2a63'),(1467,90,18077,NULL,18050,12,'2021-06-03 06:12:30','2021-06-03 06:12:30','1d52180b-e9b8-4d68-a823-91a9823dc3d5'),(1468,85,18077,NULL,17966,1,'2021-06-03 06:12:30','2021-06-03 06:12:30','ecd56602-cdc4-4c36-9eed-fd00d03aba79'),(1469,84,18077,NULL,18057,1,'2021-06-03 06:12:30','2021-06-03 06:12:30','c0b0f796-1cf4-42a3-a4a3-d447260aa109'),(1470,64,18078,NULL,17780,1,'2021-06-03 06:12:30','2021-06-03 06:12:30','0c85addb-69b9-43ab-a0cf-382d04fb2d76'),(1471,64,18080,NULL,17784,1,'2021-06-03 06:12:30','2021-06-03 06:12:30','30438500-5904-4308-9058-6aadf9a9a090'),(1472,64,18081,NULL,16838,1,'2021-06-03 06:12:30','2021-06-03 06:12:30','08104a9e-4ce8-4a9b-8b9c-01c849443e38'),(1473,86,18082,NULL,16840,1,'2021-06-03 06:12:30','2021-06-03 06:12:30','ae7affd9-77d8-4ac5-a639-78d5321cfc80'),(1500,69,18097,NULL,16824,1,'2021-06-03 06:13:45','2021-06-03 06:13:45','653e4e69-7955-4195-8663-6f74e1259228'),(1501,70,18097,NULL,16834,1,'2021-06-03 06:13:45','2021-06-03 06:13:45','9c6775df-1ce3-41e0-8611-528605ec9f7a'),(1502,90,18097,NULL,18033,1,'2021-06-03 06:13:45','2021-06-03 06:13:45','15cb6e96-abb3-44bb-951f-6e0c51ad135b'),(1503,90,18097,NULL,18040,2,'2021-06-03 06:13:45','2021-06-03 06:13:45','22dc6584-95c5-49d5-bb2e-6fa6b092d6ae'),(1504,90,18097,NULL,18041,3,'2021-06-03 06:13:45','2021-06-03 06:13:45','674f900c-b259-4752-af07-d3e0bd697986'),(1505,90,18097,NULL,18042,4,'2021-06-03 06:13:45','2021-06-03 06:13:45','f9e57ccd-98ca-4799-82ba-c9259cbdf28b'),(1506,90,18097,NULL,18043,5,'2021-06-03 06:13:45','2021-06-03 06:13:45','8185c53d-91e4-444d-98fd-66f7a127de84'),(1507,90,18097,NULL,18044,6,'2021-06-03 06:13:45','2021-06-03 06:13:45','ac7a7d9a-4e55-4f99-9a7e-5d4694d0ea98'),(1508,90,18097,NULL,18045,7,'2021-06-03 06:13:45','2021-06-03 06:13:45','bfff87dd-cd41-4884-a2a6-14c80598b1f6'),(1509,90,18097,NULL,18046,8,'2021-06-03 06:13:45','2021-06-03 06:13:45','5e8c5cdd-412d-4ba5-adf9-f23cf7e908b4'),(1510,90,18097,NULL,18047,9,'2021-06-03 06:13:45','2021-06-03 06:13:45','9763c9f7-a51a-4e86-8a10-ec9974f816e9'),(1511,90,18097,NULL,18048,10,'2021-06-03 06:13:45','2021-06-03 06:13:45','2c8b9baa-764b-46e3-a843-f03f1190c407'),(1512,90,18097,NULL,18049,11,'2021-06-03 06:13:45','2021-06-03 06:13:45','bdd6d7b3-67a1-4fa8-ba54-4fae6e84660a'),(1513,90,18097,NULL,18050,12,'2021-06-03 06:13:45','2021-06-03 06:13:45','73ac2c70-b36e-4fe9-a85c-98c0828f4676'),(1514,85,18097,NULL,17966,1,'2021-06-03 06:13:45','2021-06-03 06:13:45','d2bd5f51-7145-4ab9-a834-664c954399bb'),(1515,84,18097,NULL,18057,1,'2021-06-03 06:13:45','2021-06-03 06:13:45','4aa53393-5f99-44df-8e32-a2fbe710c912'),(1516,64,18098,NULL,17780,1,'2021-06-03 06:13:45','2021-06-03 06:13:45','8d783c09-eca3-4ea6-88e4-42633a403dbd'),(1517,64,18099,NULL,16839,1,'2021-06-03 06:13:45','2021-06-03 06:13:45','913a15d7-67fa-4915-a64d-74c51416519a'),(1518,64,18101,NULL,17784,1,'2021-06-03 06:13:45','2021-06-03 06:13:45','a393e274-6ab7-4337-b6d5-899f9c11f38f'),(1519,64,18102,NULL,16838,1,'2021-06-03 06:13:45','2021-06-03 06:13:45','7ff99236-99b7-405e-b093-9a727cbd9566'),(1520,86,18103,NULL,16840,1,'2021-06-03 06:13:45','2021-06-03 06:13:45','28b13c23-c21e-4415-b1fc-18c430c81659'),(1531,70,18109,NULL,17855,1,'2021-06-03 06:15:55','2021-06-03 06:15:55','4cf7ad8e-94b6-49b3-9ebc-89160db27f6a'),(1532,90,18109,NULL,18040,1,'2021-06-03 06:15:55','2021-06-03 06:15:55','6328f0fb-6bad-44f1-a2c6-9492ded84758'),(1533,90,18109,NULL,18041,2,'2021-06-03 06:15:55','2021-06-03 06:15:55','8dc824e4-7d12-4d22-8434-8e5556425593'),(1534,90,18109,NULL,18042,3,'2021-06-03 06:15:55','2021-06-03 06:15:55','a81ecdb0-375f-425c-8273-007fffbe8628'),(1535,90,18109,NULL,18104,4,'2021-06-03 06:15:55','2021-06-03 06:15:55','93591991-26d6-4b73-a94b-99f3f9917507'),(1536,90,18109,NULL,18043,5,'2021-06-03 06:15:55','2021-06-03 06:15:55','1ec08d23-c1e3-4d66-9184-9cac66b6d016'),(1537,90,18109,NULL,18046,6,'2021-06-03 06:15:55','2021-06-03 06:15:55','1c9fe254-11e4-4937-8cc9-2c6ba953c406'),(1538,90,18109,NULL,18105,7,'2021-06-03 06:15:55','2021-06-03 06:15:55','444ac0eb-61ff-4a62-b045-1a1ef0727d35'),(1539,90,18109,NULL,18106,8,'2021-06-03 06:15:55','2021-06-03 06:15:55','3de2b45a-6747-4a58-bc3a-61e14a54b175'),(1540,90,18109,NULL,18107,9,'2021-06-03 06:15:55','2021-06-03 06:15:55','29e0db85-6693-440c-8e14-dd61c020400e'),(1541,90,18109,NULL,18108,10,'2021-06-03 06:15:55','2021-06-03 06:15:55','d4895075-f918-46b8-bc68-0e4a6f56d11d'),(1542,70,18110,NULL,17855,1,'2021-06-03 06:15:56','2021-06-03 06:15:56','e7e3d59e-2fed-4775-9154-1224cf27ccd3'),(1543,90,18110,NULL,18040,1,'2021-06-03 06:15:56','2021-06-03 06:15:56','ab1438a8-47e2-4866-ba09-90a4c57a54d5'),(1544,90,18110,NULL,18041,2,'2021-06-03 06:15:56','2021-06-03 06:15:56','ce451370-f522-45bc-a8cd-91cd8d74c1af'),(1545,90,18110,NULL,18042,3,'2021-06-03 06:15:56','2021-06-03 06:15:56','e4df2a74-be37-4b6a-9607-4cf12aca1cd9'),(1546,90,18110,NULL,18104,4,'2021-06-03 06:15:56','2021-06-03 06:15:56','1b116fb3-4031-4778-bf0c-e9132c5cde49'),(1547,90,18110,NULL,18043,5,'2021-06-03 06:15:56','2021-06-03 06:15:56','6efa02ca-c6c6-4d2e-a9fc-29ffc8e33cc7'),(1548,90,18110,NULL,18046,6,'2021-06-03 06:15:56','2021-06-03 06:15:56','ffcee7c0-7020-430c-a505-71729eb5982c'),(1549,90,18110,NULL,18105,7,'2021-06-03 06:15:56','2021-06-03 06:15:56','9b40331d-e34a-4b88-9fff-4e071e808ab7'),(1550,90,18110,NULL,18106,8,'2021-06-03 06:15:56','2021-06-03 06:15:56','ab29d482-a990-4f08-85fb-a65b22692f29'),(1551,90,18110,NULL,18107,9,'2021-06-03 06:15:56','2021-06-03 06:15:56','7028b49a-e602-4773-8116-0bff02b6cc86'),(1552,90,18110,NULL,18108,10,'2021-06-03 06:15:56','2021-06-03 06:15:56','3dcadc44-9ae2-4a02-b39c-17edb67279fc'),(1564,70,18112,NULL,17855,1,'2021-06-03 06:16:26','2021-06-03 06:16:26','17e16c62-ccc4-49a3-9c29-4bcc9963ad77'),(1565,90,18112,NULL,18040,1,'2021-06-03 06:16:26','2021-06-03 06:16:26','6b9f904e-3183-44ce-ab22-8b17e8458211'),(1566,90,18112,NULL,18041,2,'2021-06-03 06:16:26','2021-06-03 06:16:26','4ee372c0-9f89-42e9-b000-333eac94f07c'),(1567,90,18112,NULL,18042,3,'2021-06-03 06:16:26','2021-06-03 06:16:26','a16bd40e-0a18-4d6d-b697-4fcf0d94c33c'),(1568,90,18112,NULL,18104,4,'2021-06-03 06:16:26','2021-06-03 06:16:26','770abcde-b334-48e3-b3fe-5acebdeeac85'),(1569,90,18112,NULL,18043,5,'2021-06-03 06:16:26','2021-06-03 06:16:26','26dc3127-74ff-4ce4-be3e-0712eadeacc8'),(1570,90,18112,NULL,18046,6,'2021-06-03 06:16:26','2021-06-03 06:16:26','ea84cbcb-6c32-42e8-8780-9c6ecb0320ec'),(1571,90,18112,NULL,18105,7,'2021-06-03 06:16:26','2021-06-03 06:16:26','6c7280d5-3659-484f-8864-79e74aa4b96b'),(1572,90,18112,NULL,18106,8,'2021-06-03 06:16:26','2021-06-03 06:16:26','8ae6cd19-fe9d-410a-b0c0-2fe130ad6608'),(1573,90,18112,NULL,18107,9,'2021-06-03 06:16:26','2021-06-03 06:16:26','91d1a364-ac92-40c5-89a9-22de37c6af84'),(1574,90,18112,NULL,18108,10,'2021-06-03 06:16:26','2021-06-03 06:16:26','8758a409-a623-4c03-a079-4c3351a6c5cf'),(1575,70,18113,NULL,17855,1,'2021-06-03 06:16:30','2021-06-03 06:16:30','20cf8ed2-20d6-44e2-a510-c952bbd7f96e'),(1576,90,18113,NULL,18040,1,'2021-06-03 06:16:30','2021-06-03 06:16:30','fee29de7-fc0d-4ae8-99fd-302cd20bf5f2'),(1577,90,18113,NULL,18041,2,'2021-06-03 06:16:30','2021-06-03 06:16:30','595907a8-779e-4272-b510-04de34e70c65'),(1578,90,18113,NULL,18042,3,'2021-06-03 06:16:30','2021-06-03 06:16:30','034d254d-d00d-4fb1-9999-9c65d98dbdb7'),(1579,90,18113,NULL,18104,4,'2021-06-03 06:16:30','2021-06-03 06:16:30','9dc1a86c-d0d4-4328-98b5-c0904f14b308'),(1580,90,18113,NULL,18043,5,'2021-06-03 06:16:30','2021-06-03 06:16:30','6b19f8ca-74cc-4942-a331-a9a164830cd4'),(1581,90,18113,NULL,18046,6,'2021-06-03 06:16:30','2021-06-03 06:16:30','0bd2e9f8-f983-4cdb-ab5b-e56e97ff83c1'),(1582,90,18113,NULL,18105,7,'2021-06-03 06:16:30','2021-06-03 06:16:30','21b73634-8df9-43ab-a4b4-23c9188319a6'),(1583,90,18113,NULL,18106,8,'2021-06-03 06:16:30','2021-06-03 06:16:30','377661ef-8777-4c61-b470-97fdc1b1be30'),(1584,90,18113,NULL,18107,9,'2021-06-03 06:16:30','2021-06-03 06:16:30','e60a5bc3-4d1f-4b3c-8bbb-0ab5c987bf42'),(1585,90,18113,NULL,18108,10,'2021-06-03 06:16:30','2021-06-03 06:16:30','d3ee2ccd-6f78-4b76-aa63-ac94bf42a742'),(1595,70,18122,NULL,17857,1,'2021-06-03 06:17:38','2021-06-03 06:17:38','9e60ef10-af60-4fe5-8704-f7ddd1ebc405'),(1596,90,18122,NULL,18114,1,'2021-06-03 06:17:38','2021-06-03 06:17:38','58b567f7-3d94-44e3-aa74-bb71ee5b3345'),(1597,90,18122,NULL,18115,2,'2021-06-03 06:17:38','2021-06-03 06:17:38','8bea2ac4-1786-41ed-8f69-3727996b1c67'),(1598,90,18122,NULL,18116,3,'2021-06-03 06:17:38','2021-06-03 06:17:38','1c0edd24-5498-4b70-875a-31acbdfaaf59'),(1599,90,18122,NULL,18040,4,'2021-06-03 06:17:38','2021-06-03 06:17:38','4bf3dea5-53d4-4f65-8b23-f7289661a263'),(1600,90,18122,NULL,18117,5,'2021-06-03 06:17:38','2021-06-03 06:17:38','f680f4c4-e092-4922-91a2-60caf82b9c44'),(1601,90,18122,NULL,18118,6,'2021-06-03 06:17:38','2021-06-03 06:17:38','a57c95de-535c-4777-90d7-2358930337c3'),(1602,90,18122,NULL,18119,7,'2021-06-03 06:17:38','2021-06-03 06:17:38','a618aeef-01f1-4b50-9fd7-b11e11ca544a'),(1603,90,18122,NULL,18120,8,'2021-06-03 06:17:38','2021-06-03 06:17:38','a340507b-4de6-4ec9-8cc2-ae5a4e39cdf6'),(1604,90,18122,NULL,18121,9,'2021-06-03 06:17:38','2021-06-03 06:17:38','dbe4ef15-814c-4e3d-8b8d-d91da33b570e'),(1605,70,18123,NULL,17857,1,'2021-06-03 06:17:38','2021-06-03 06:17:38','e049b948-514f-44a8-9290-39f50c6c2d7f'),(1606,90,18123,NULL,18114,1,'2021-06-03 06:17:38','2021-06-03 06:17:38','69530ccb-2ccc-40bd-a108-7852cdb9e096'),(1607,90,18123,NULL,18115,2,'2021-06-03 06:17:38','2021-06-03 06:17:38','46872945-c1c8-486e-8db6-4a5a96e9a897'),(1608,90,18123,NULL,18116,3,'2021-06-03 06:17:38','2021-06-03 06:17:38','99e8278b-d7a8-4992-abbf-4f90f2e2a1a2'),(1609,90,18123,NULL,18040,4,'2021-06-03 06:17:38','2021-06-03 06:17:38','42fbb2b6-92b3-4002-8a78-4196bd45f873'),(1610,90,18123,NULL,18117,5,'2021-06-03 06:17:38','2021-06-03 06:17:38','5f0a7551-f885-46d3-a4d5-a9fbc8a40220'),(1611,90,18123,NULL,18118,6,'2021-06-03 06:17:38','2021-06-03 06:17:38','e4e2a1b0-dc2a-4756-a764-7cb123f28d39'),(1612,90,18123,NULL,18119,7,'2021-06-03 06:17:38','2021-06-03 06:17:38','75cef02b-8080-45c1-9812-52635c68b0ee'),(1613,90,18123,NULL,18120,8,'2021-06-03 06:17:38','2021-06-03 06:17:38','3828ac2e-7fc8-4ecc-b7db-10ae9dc14fe0'),(1614,90,18123,NULL,18121,9,'2021-06-03 06:17:38','2021-06-03 06:17:38','3de2e7c2-3672-45e9-a34c-05835a0c2e42'),(1615,70,18124,NULL,17857,1,'2021-06-03 06:17:42','2021-06-03 06:17:42','d2e6e7fd-290b-4813-b181-c68481561d23'),(1616,90,18124,NULL,18114,1,'2021-06-03 06:17:42','2021-06-03 06:17:42','d442563a-9376-42e3-98b2-0b2aa8e47310'),(1617,90,18124,NULL,18115,2,'2021-06-03 06:17:42','2021-06-03 06:17:42','d5ee4fea-25aa-42d8-b61b-fe894be0d482'),(1618,90,18124,NULL,18116,3,'2021-06-03 06:17:42','2021-06-03 06:17:42','800c8cbd-2971-4485-90ba-9905279c6d86'),(1619,90,18124,NULL,18040,4,'2021-06-03 06:17:42','2021-06-03 06:17:42','f2facdbb-fafd-45dd-9c2b-c599090723bf'),(1620,90,18124,NULL,18117,5,'2021-06-03 06:17:42','2021-06-03 06:17:42','2a78aa48-8913-4aa3-8807-7fc0b57eaed4'),(1621,90,18124,NULL,18118,6,'2021-06-03 06:17:42','2021-06-03 06:17:42','c67a75f2-36ca-4622-a2b8-41ba5df34cff'),(1622,90,18124,NULL,18119,7,'2021-06-03 06:17:42','2021-06-03 06:17:42','f931bdc6-5370-41de-8ea7-33809f1ca320'),(1623,90,18124,NULL,18120,8,'2021-06-03 06:17:42','2021-06-03 06:17:42','716dcebd-8812-4aae-ad01-e54ef90d0b14'),(1624,90,18124,NULL,18121,9,'2021-06-03 06:17:42','2021-06-03 06:17:42','99a5c8c1-c4bb-49ab-8552-81033adb62ac'),(1636,70,18126,NULL,17857,1,'2021-06-03 22:51:16','2021-06-03 22:51:16','5b556e7f-59d9-414d-b261-b53258679064'),(1637,90,18126,NULL,18114,1,'2021-06-03 22:51:16','2021-06-03 22:51:16','e07dfa4f-35fe-4c79-8c59-5e76b9cf7220'),(1638,90,18126,NULL,18116,2,'2021-06-03 22:51:16','2021-06-03 22:51:16','716a436f-7926-4139-afc9-5764806eabf1'),(1639,90,18126,NULL,18040,3,'2021-06-03 22:51:16','2021-06-03 22:51:16','8e25b51c-45d1-40da-afb2-f64771fabb6a'),(1640,90,18126,NULL,18118,4,'2021-06-03 22:51:16','2021-06-03 22:51:16','01f94543-87db-42df-8b09-d26798d67abe'),(1641,90,18126,NULL,18117,5,'2021-06-03 22:51:16','2021-06-03 22:51:16','b4a05ccd-9384-4f1d-9b17-be959969e5e9'),(1642,90,18126,NULL,18105,6,'2021-06-03 22:51:16','2021-06-03 22:51:16','07122033-6b7d-4aa9-84cc-3fc8c7e6d642'),(1643,90,18126,NULL,18120,7,'2021-06-03 22:51:16','2021-06-03 22:51:16','958f763a-eb85-430a-8b90-96b1a19b1044'),(1644,90,18126,NULL,18121,8,'2021-06-03 22:51:16','2021-06-03 22:51:16','f3898223-8cea-4a86-b5f5-c3c1ce8f5596'),(1645,90,18126,NULL,18125,9,'2021-06-03 22:51:16','2021-06-03 22:51:16','cf44ed85-6d31-42af-9175-b00e391c44fd'),(1646,90,18126,NULL,18043,10,'2021-06-03 22:51:16','2021-06-03 22:51:16','b8e014fd-2872-48fd-93b4-4bfb3173d820'),(1647,90,18126,NULL,18046,11,'2021-06-03 22:51:16','2021-06-03 22:51:16','f5688412-d696-4761-925d-e6f4cda38e84'),(1648,70,18127,NULL,17857,1,'2021-06-03 22:51:16','2021-06-03 22:51:16','05e7f953-0bfa-4432-bd9c-41accaec7fbc'),(1649,90,18127,NULL,18114,1,'2021-06-03 22:51:16','2021-06-03 22:51:16','52d7b007-7fba-4755-be0f-5aadd4a26fe2'),(1650,90,18127,NULL,18116,2,'2021-06-03 22:51:16','2021-06-03 22:51:16','3e967a5a-9cef-4c96-b93a-4271c0fc1076'),(1651,90,18127,NULL,18040,3,'2021-06-03 22:51:16','2021-06-03 22:51:16','94a94299-1421-42c6-a087-01b191df7865'),(1652,90,18127,NULL,18118,4,'2021-06-03 22:51:16','2021-06-03 22:51:16','5a8c8053-e7ff-4c61-bffb-5e75f213b856'),(1653,90,18127,NULL,18117,5,'2021-06-03 22:51:16','2021-06-03 22:51:16','6b72e985-c7a8-40a9-a8bf-0dcf41c0dca8'),(1654,90,18127,NULL,18105,6,'2021-06-03 22:51:16','2021-06-03 22:51:16','765633e8-d15a-4eba-bfdc-26ba4ac8b289'),(1655,90,18127,NULL,18120,7,'2021-06-03 22:51:16','2021-06-03 22:51:16','b0dd9547-a24a-45e5-bb93-254cd990ff02'),(1656,90,18127,NULL,18121,8,'2021-06-03 22:51:16','2021-06-03 22:51:16','08b6373f-45d3-44d8-b2fa-0cbe45fd3753'),(1657,90,18127,NULL,18125,9,'2021-06-03 22:51:16','2021-06-03 22:51:16','f1a852ee-7e32-46ca-93b9-e518934ef5be'),(1658,90,18127,NULL,18043,10,'2021-06-03 22:51:16','2021-06-03 22:51:16','8c7c90fe-a715-4819-99c3-63d04cdff0c0'),(1659,90,18127,NULL,18046,11,'2021-06-03 22:51:16','2021-06-03 22:51:16','af5f1b32-2b6c-4ac5-9cec-1c89367a483d'),(1660,70,18128,NULL,17857,1,'2021-06-03 22:51:20','2021-06-03 22:51:20','91e4cc69-fac4-42fc-a404-73ef9eb552f9'),(1661,90,18128,NULL,18114,1,'2021-06-03 22:51:20','2021-06-03 22:51:20','af2796d3-872f-4ce6-9862-638c815ef493'),(1662,90,18128,NULL,18116,2,'2021-06-03 22:51:20','2021-06-03 22:51:20','650a6b8d-b416-43ec-9aa5-e2df6e049cce'),(1663,90,18128,NULL,18040,3,'2021-06-03 22:51:20','2021-06-03 22:51:20','bad771aa-fdab-4f4a-bb6e-82854a8c6b40'),(1664,90,18128,NULL,18118,4,'2021-06-03 22:51:20','2021-06-03 22:51:20','346c936f-6c18-4796-91ae-b4fb4525926f'),(1665,90,18128,NULL,18117,5,'2021-06-03 22:51:20','2021-06-03 22:51:20','83428cde-98c5-4187-8b22-5b5e514dc915'),(1666,90,18128,NULL,18105,6,'2021-06-03 22:51:20','2021-06-03 22:51:20','be9be6cd-6c66-4cf3-a17f-75f388361bb3'),(1667,90,18128,NULL,18120,7,'2021-06-03 22:51:20','2021-06-03 22:51:20','6aeb4201-3e5e-43c8-9d1d-95ffa3817ff6'),(1668,90,18128,NULL,18121,8,'2021-06-03 22:51:20','2021-06-03 22:51:20','0f7f39b3-5a83-4887-8328-e92f6811bb23'),(1669,90,18128,NULL,18125,9,'2021-06-03 22:51:20','2021-06-03 22:51:20','4a233c99-cb26-4886-bb77-220d6382d9b0'),(1670,90,18128,NULL,18043,10,'2021-06-03 22:51:20','2021-06-03 22:51:20','dec76737-c395-49d2-8035-bbaf44a8fb00'),(1671,90,18128,NULL,18046,11,'2021-06-03 22:51:20','2021-06-03 22:51:20','f81596f9-230e-4379-adc5-6cef93772172'),(1710,70,18139,NULL,17857,1,'2021-06-03 23:01:25','2021-06-03 23:01:25','17ce8b94-dc14-4ec0-ab04-40e3cb539671'),(1711,90,18139,NULL,18129,1,'2021-06-03 23:01:25','2021-06-03 23:01:25','6ebe98ac-3486-4503-8921-a8348701e5a8'),(1712,90,18139,NULL,18130,2,'2021-06-03 23:01:25','2021-06-03 23:01:25','0223ccce-9f3c-46fe-b6d7-77f22a558392'),(1713,90,18139,NULL,18131,3,'2021-06-03 23:01:25','2021-06-03 23:01:25','54e34e00-cbee-4514-8dab-d4bbf79abe90'),(1714,90,18139,NULL,18132,4,'2021-06-03 23:01:25','2021-06-03 23:01:25','16154b66-9971-476c-b2f2-06997209ceef'),(1715,90,18139,NULL,18133,5,'2021-06-03 23:01:25','2021-06-03 23:01:25','38437a21-0f7b-4121-89ae-6f1b5e0dedc0'),(1716,90,18139,NULL,18134,6,'2021-06-03 23:01:25','2021-06-03 23:01:25','5449788a-0568-4969-a373-05ec9418d369'),(1717,90,18139,NULL,18135,7,'2021-06-03 23:01:25','2021-06-03 23:01:25','dbe19f9b-c15c-4185-a571-8c77abe8bee3'),(1718,70,18140,NULL,17857,1,'2021-06-03 23:01:25','2021-06-03 23:01:25','3558233b-0884-4d57-88d1-3963cb3ebb59'),(1719,90,18140,NULL,18129,1,'2021-06-03 23:01:25','2021-06-03 23:01:25','1b5edd10-a0fd-4c83-8081-8da0799c7bc4'),(1720,90,18140,NULL,18130,2,'2021-06-03 23:01:25','2021-06-03 23:01:25','254b0265-1c70-44ed-9a6f-d273043059ca'),(1721,90,18140,NULL,18131,3,'2021-06-03 23:01:25','2021-06-03 23:01:25','d0fae1d3-257c-4db3-8425-9f01a61ef7b8'),(1722,90,18140,NULL,18132,4,'2021-06-03 23:01:25','2021-06-03 23:01:25','42de6df8-3037-47ef-9f86-584a89fda98e'),(1723,90,18140,NULL,18133,5,'2021-06-03 23:01:25','2021-06-03 23:01:25','4fe8c2c7-2eb1-40bf-a077-b850fafcf127'),(1724,90,18140,NULL,18134,6,'2021-06-03 23:01:25','2021-06-03 23:01:25','6fe2b6dc-6b52-4b43-8c82-439b25c0cb38'),(1725,90,18140,NULL,18135,7,'2021-06-03 23:01:25','2021-06-03 23:01:25','ea092523-bb17-4855-8dc8-9822e10fd1c5'),(1726,70,18141,NULL,17857,1,'2021-06-03 23:01:29','2021-06-03 23:01:29','bac9d229-761f-4e27-80eb-bb294b6535e6'),(1727,90,18141,NULL,18129,1,'2021-06-03 23:01:29','2021-06-03 23:01:29','392ae683-ed12-4088-ad5f-377e4750d7f6'),(1728,90,18141,NULL,18130,2,'2021-06-03 23:01:29','2021-06-03 23:01:29','fb01353c-f2b6-44b0-a591-2b88ca6a858b'),(1729,90,18141,NULL,18131,3,'2021-06-03 23:01:29','2021-06-03 23:01:29','3503ec32-0f02-4242-8601-dbb10a1106ef'),(1730,90,18141,NULL,18132,4,'2021-06-03 23:01:29','2021-06-03 23:01:29','b35cf733-d5e7-48db-9eff-1ed135f390a8'),(1731,90,18141,NULL,18133,5,'2021-06-03 23:01:29','2021-06-03 23:01:29','60d4671d-52bc-4878-893d-ca951463a5bf'),(1732,90,18141,NULL,18134,6,'2021-06-03 23:01:29','2021-06-03 23:01:29','83c705e6-4992-40cb-8e2b-35b02e7853db'),(1733,90,18141,NULL,18135,7,'2021-06-03 23:01:29','2021-06-03 23:01:29','911a2325-736e-4794-a2e9-8ae4f8588e38'),(1741,70,18142,NULL,17862,1,'2021-06-03 23:02:15','2021-06-03 23:02:15','505c39aa-0aca-4466-879d-20a045438da1'),(1742,90,18142,NULL,18114,1,'2021-06-03 23:02:15','2021-06-03 23:02:15','6fc1e1a4-bfef-4366-894f-db3ecdb2ac6b'),(1743,90,18142,NULL,18115,2,'2021-06-03 23:02:15','2021-06-03 23:02:15','59d9205f-eda2-4bc0-82c7-67b2f2174949'),(1744,90,18142,NULL,18040,3,'2021-06-03 23:02:15','2021-06-03 23:02:15','a375e95e-2b9c-461f-87d8-6a2ce2e37c49'),(1745,90,18142,NULL,18042,4,'2021-06-03 23:02:15','2021-06-03 23:02:15','aceafb59-f772-414c-ad92-a96383869475'),(1746,90,18142,NULL,18041,5,'2021-06-03 23:02:15','2021-06-03 23:02:15','80a5ad10-04cf-414f-bba7-344bc15cef76'),(1747,90,18142,NULL,18105,6,'2021-06-03 23:02:15','2021-06-03 23:02:15','0897d634-df0c-49a0-a053-17b36cda4344'),(1748,90,18142,NULL,18120,7,'2021-06-03 23:02:15','2021-06-03 23:02:15','a16d9177-8eda-4768-be30-0a49b099174d'),(1749,70,18143,NULL,17862,1,'2021-06-03 23:02:15','2021-06-03 23:02:15','67ad1c3b-bc6a-4162-a95f-e8cdf2378866'),(1750,90,18143,NULL,18114,1,'2021-06-03 23:02:15','2021-06-03 23:02:15','22418dae-fc31-4a8c-b7be-4fa49793a310'),(1751,90,18143,NULL,18115,2,'2021-06-03 23:02:15','2021-06-03 23:02:15','9c238370-4546-4775-8969-e19d013ac7df'),(1752,90,18143,NULL,18040,3,'2021-06-03 23:02:15','2021-06-03 23:02:15','148ae0dd-ea8f-4065-8207-9386d09380dc'),(1753,90,18143,NULL,18042,4,'2021-06-03 23:02:15','2021-06-03 23:02:15','19b824c5-4c20-4f75-937c-22f2432772b1'),(1754,90,18143,NULL,18041,5,'2021-06-03 23:02:15','2021-06-03 23:02:15','b57789b0-2926-4c00-9213-1c8a1c14838f'),(1755,90,18143,NULL,18105,6,'2021-06-03 23:02:15','2021-06-03 23:02:15','e2f81d84-3edb-48c5-91cd-7200c7a47f17'),(1756,90,18143,NULL,18120,7,'2021-06-03 23:02:15','2021-06-03 23:02:15','c5c4fa2a-79f7-46cc-910b-41559c0a87cf'),(1757,70,18144,NULL,17862,1,'2021-06-03 23:02:19','2021-06-03 23:02:19','42f3f68a-d288-452f-962c-eec986899068'),(1758,90,18144,NULL,18114,1,'2021-06-03 23:02:19','2021-06-03 23:02:19','4e07df14-871d-4ff6-be88-fd8f7f0b289c'),(1759,90,18144,NULL,18115,2,'2021-06-03 23:02:19','2021-06-03 23:02:19','fe2485f9-908d-4c47-94e6-a58d8cf0467b'),(1760,90,18144,NULL,18040,3,'2021-06-03 23:02:19','2021-06-03 23:02:19','addfa4a2-04f7-4deb-9317-7be76569525a'),(1761,90,18144,NULL,18042,4,'2021-06-03 23:02:19','2021-06-03 23:02:19','9be99523-1367-4537-ba86-35ba0311536e'),(1762,90,18144,NULL,18041,5,'2021-06-03 23:02:19','2021-06-03 23:02:19','d8a08cd3-4adb-421f-8a6f-12b7138fa0e6'),(1763,90,18144,NULL,18105,6,'2021-06-03 23:02:19','2021-06-03 23:02:19','9b57636b-5474-4832-9bb6-e9798b2b4a2a'),(1764,90,18144,NULL,18120,7,'2021-06-03 23:02:19','2021-06-03 23:02:19','9e9445e0-dd8f-4138-8605-a01116f75eb6'),(1792,70,18156,NULL,17868,1,'2021-06-03 23:04:04','2021-06-03 23:04:04','b110b727-aece-4272-8573-30ef93b83f71'),(1793,90,18156,NULL,18149,1,'2021-06-03 23:04:04','2021-06-03 23:04:04','2afac288-7c0f-4d28-ba04-e1a8f6e0f113'),(1794,90,18156,NULL,18150,2,'2021-06-03 23:04:04','2021-06-03 23:04:04','1bf6db3f-204b-46fa-a314-6cf942cb69a0'),(1795,90,18156,NULL,18105,3,'2021-06-03 23:04:04','2021-06-03 23:04:04','2c3201d3-169c-4c31-8c29-29510fd90c75'),(1796,90,18156,NULL,18151,4,'2021-06-03 23:04:04','2021-06-03 23:04:04','c00dd2cf-7294-45bd-8094-a76eb3e1dfd3'),(1797,90,18156,NULL,18152,5,'2021-06-03 23:04:04','2021-06-03 23:04:04','b5499774-2263-47bd-a10f-1d120252b684'),(1798,90,18156,NULL,18153,6,'2021-06-03 23:04:04','2021-06-03 23:04:04','039d0e64-ec4c-4abb-a093-e99ee00cf679'),(1799,90,18156,NULL,18154,7,'2021-06-03 23:04:04','2021-06-03 23:04:04','73dbf41a-74de-4fb1-a302-69823ca5774d'),(1800,90,18156,NULL,18155,8,'2021-06-03 23:04:04','2021-06-03 23:04:04','5b4c5462-c81c-4774-a1fd-6af82111cc46'),(1801,70,18157,NULL,17868,1,'2021-06-03 23:04:04','2021-06-03 23:04:04','fc57d0ce-b1e1-405c-a461-9ab612e2d292'),(1802,90,18157,NULL,18149,1,'2021-06-03 23:04:04','2021-06-03 23:04:04','8944f32d-d0b5-45e9-abfe-93e9421aba38'),(1803,90,18157,NULL,18150,2,'2021-06-03 23:04:04','2021-06-03 23:04:04','6aa69147-50b7-4b14-843c-bd72556fc815'),(1804,90,18157,NULL,18105,3,'2021-06-03 23:04:04','2021-06-03 23:04:04','85ffa8b8-5a94-4c95-9fb8-4905878df790'),(1805,90,18157,NULL,18151,4,'2021-06-03 23:04:04','2021-06-03 23:04:04','5ecef9ee-35f9-430c-8a69-2df7916032ee'),(1806,90,18157,NULL,18152,5,'2021-06-03 23:04:04','2021-06-03 23:04:04','0ea92816-29fb-4e26-85ea-cbfbf33c7d1b'),(1807,90,18157,NULL,18153,6,'2021-06-03 23:04:04','2021-06-03 23:04:04','0352b035-caa3-42fd-a12a-700bff9e3b59'),(1808,90,18157,NULL,18154,7,'2021-06-03 23:04:04','2021-06-03 23:04:04','9f964677-3fa3-4b46-ac2d-9451262423a2'),(1809,90,18157,NULL,18155,8,'2021-06-03 23:04:04','2021-06-03 23:04:04','5ccf2326-0f25-403f-9af9-bb5070b0c1bc'),(1810,70,18158,NULL,17868,1,'2021-06-03 23:04:08','2021-06-03 23:04:08','59f7cd2e-3394-42af-8f94-a1642edb9027'),(1811,90,18158,NULL,18149,1,'2021-06-03 23:04:08','2021-06-03 23:04:08','4e3932a6-b200-4084-83b9-5d3a07f79258'),(1812,90,18158,NULL,18150,2,'2021-06-03 23:04:08','2021-06-03 23:04:08','bbbc5266-2bef-4c76-ac8e-6c751f58454c'),(1813,90,18158,NULL,18105,3,'2021-06-03 23:04:08','2021-06-03 23:04:08','01749527-de28-4dc0-93eb-28550e784bba'),(1814,90,18158,NULL,18151,4,'2021-06-03 23:04:08','2021-06-03 23:04:08','37518534-2a9e-4b56-ae5e-18b8e48e7123'),(1815,90,18158,NULL,18152,5,'2021-06-03 23:04:08','2021-06-03 23:04:08','d84106ea-6026-4aaf-9f45-48962daa8564'),(1816,90,18158,NULL,18153,6,'2021-06-03 23:04:08','2021-06-03 23:04:08','0e8923c7-e5f2-4f72-9011-d532c81ca5ec'),(1817,90,18158,NULL,18154,7,'2021-06-03 23:04:08','2021-06-03 23:04:08','f484836a-4d4c-41d6-9b48-1309d11df055'),(1818,90,18158,NULL,18155,8,'2021-06-03 23:04:08','2021-06-03 23:04:08','8beee3cb-a16d-43a9-91b5-d4e6571def0b'),(1825,70,18164,NULL,17857,1,'2021-06-03 23:05:05','2021-06-03 23:05:05','b11bd82e-1399-4e33-bae4-2f57d1f12745'),(1826,90,18164,NULL,18159,1,'2021-06-03 23:05:05','2021-06-03 23:05:05','7417d584-b3d9-4daa-9fa1-5fb15c362a30'),(1827,90,18164,NULL,18160,2,'2021-06-03 23:05:05','2021-06-03 23:05:05','96e88bdd-9e99-4602-bc93-0a87c3103e7d'),(1828,90,18164,NULL,18161,3,'2021-06-03 23:05:05','2021-06-03 23:05:05','ee45593a-9954-4ec2-a915-5699f23996e4'),(1829,90,18164,NULL,18105,4,'2021-06-03 23:05:05','2021-06-03 23:05:05','c2762cdf-639f-4e03-8948-c8afe2238ea0'),(1830,90,18164,NULL,18162,5,'2021-06-03 23:05:05','2021-06-03 23:05:05','83290e60-71d5-45e9-9bc5-0cb1c2198436'),(1831,90,18164,NULL,18163,6,'2021-06-03 23:05:05','2021-06-03 23:05:05','d5e4934e-df17-491c-998d-e1d5bade545b'),(1832,70,18165,NULL,17857,1,'2021-06-03 23:05:05','2021-06-03 23:05:05','88e8bc51-af03-407e-9a7b-1d657873484b'),(1833,90,18165,NULL,18159,1,'2021-06-03 23:05:05','2021-06-03 23:05:05','651125ae-a795-4549-92ff-65cbcecadd2f'),(1834,90,18165,NULL,18160,2,'2021-06-03 23:05:05','2021-06-03 23:05:05','78e0f8f0-d0ea-475f-a272-9797c696f1fb'),(1835,90,18165,NULL,18161,3,'2021-06-03 23:05:05','2021-06-03 23:05:05','f0b9bead-d525-483e-954f-82dd2016fe22'),(1836,90,18165,NULL,18105,4,'2021-06-03 23:05:05','2021-06-03 23:05:05','f6cc70cb-f5ae-486d-931d-94ebc239657c'),(1837,90,18165,NULL,18162,5,'2021-06-03 23:05:05','2021-06-03 23:05:05','5dd340a9-0a5b-44fc-a0da-147d37abcd5b'),(1838,90,18165,NULL,18163,6,'2021-06-03 23:05:05','2021-06-03 23:05:05','e4686a84-476d-4290-a303-809a28ab22f5'),(1839,70,18166,NULL,17857,1,'2021-06-03 23:05:09','2021-06-03 23:05:09','e625d7fe-ad94-4a9b-9656-d5b990b05612'),(1840,90,18166,NULL,18159,1,'2021-06-03 23:05:09','2021-06-03 23:05:09','a5065867-0d66-4f7a-8db3-943439009531'),(1841,90,18166,NULL,18160,2,'2021-06-03 23:05:09','2021-06-03 23:05:09','c945bc06-294f-4e12-a8a7-3b5b2bc67a47'),(1842,90,18166,NULL,18161,3,'2021-06-03 23:05:09','2021-06-03 23:05:09','f54193f0-dfb9-42a1-8297-016ce775f9ec'),(1843,90,18166,NULL,18105,4,'2021-06-03 23:05:09','2021-06-03 23:05:09','45371711-40b4-493a-bd15-86552352f302'),(1844,90,18166,NULL,18162,5,'2021-06-03 23:05:09','2021-06-03 23:05:09','83935f66-44b8-4133-944e-bc92ffc51af7'),(1845,90,18166,NULL,18163,6,'2021-06-03 23:05:09','2021-06-03 23:05:09','a454ec74-6249-4bf4-bf56-ce9c96feb0da'),(1855,70,18168,NULL,17857,1,'2021-06-03 23:06:10','2021-06-03 23:06:10','c202bd35-dd61-43de-827b-26e4664830d9'),(1856,90,18168,NULL,18040,1,'2021-06-03 23:06:10','2021-06-03 23:06:10','dcbf9685-15b3-45a3-bc8d-56773d49c871'),(1857,90,18168,NULL,18167,2,'2021-06-03 23:06:10','2021-06-03 23:06:10','ab055f38-68f6-409a-bd92-9d5d904e5ee1'),(1858,90,18168,NULL,18043,3,'2021-06-03 23:06:10','2021-06-03 23:06:10','f02146e7-e56c-478b-8d40-34b25aaca4f2'),(1859,90,18168,NULL,18045,4,'2021-06-03 23:06:10','2021-06-03 23:06:10','37d8b703-655c-4557-8bbe-4d6e68d7defd'),(1860,90,18168,NULL,18046,5,'2021-06-03 23:06:10','2021-06-03 23:06:10','352bd42b-bb00-4afb-b9f8-a897a046f768'),(1861,90,18168,NULL,18047,6,'2021-06-03 23:06:10','2021-06-03 23:06:10','2824c053-68f4-40b3-aa9b-568c355184ff'),(1862,90,18168,NULL,18120,7,'2021-06-03 23:06:10','2021-06-03 23:06:10','608beb92-ed0b-4572-b7e3-9338190a92c6'),(1863,90,18168,NULL,18121,8,'2021-06-03 23:06:10','2021-06-03 23:06:10','ac55439a-0db5-41e9-97f4-80ea3ced3e12'),(1864,90,18168,NULL,18105,9,'2021-06-03 23:06:10','2021-06-03 23:06:10','e899071c-7c16-4e37-8f10-c6d22d646e24'),(1865,70,18169,NULL,17857,1,'2021-06-03 23:06:10','2021-06-03 23:06:10','85a67b5d-f145-406d-bbda-909105bd7ddd'),(1866,90,18169,NULL,18040,1,'2021-06-03 23:06:10','2021-06-03 23:06:10','3ef6b4ae-b6a0-40cb-9ba0-dc5b50f8a31c'),(1867,90,18169,NULL,18167,2,'2021-06-03 23:06:10','2021-06-03 23:06:10','e2f3126c-c5f7-4828-8f31-11a0059b4d92'),(1868,90,18169,NULL,18043,3,'2021-06-03 23:06:10','2021-06-03 23:06:10','20f3df33-8c25-4888-a29c-5dcefc56d8fb'),(1869,90,18169,NULL,18045,4,'2021-06-03 23:06:10','2021-06-03 23:06:10','a8379f95-c132-4d41-9ad6-8424cbe6b42e'),(1870,90,18169,NULL,18046,5,'2021-06-03 23:06:10','2021-06-03 23:06:10','5d3b507b-1e62-430a-8540-8af0c4d26df4'),(1871,90,18169,NULL,18047,6,'2021-06-03 23:06:10','2021-06-03 23:06:10','2016d238-7b32-4144-9cd1-a4d8533afbee'),(1872,90,18169,NULL,18120,7,'2021-06-03 23:06:10','2021-06-03 23:06:10','f6fa25b0-4afe-47cb-a59b-0c13a6e7de02'),(1873,90,18169,NULL,18121,8,'2021-06-03 23:06:10','2021-06-03 23:06:10','033b87d3-832e-4f90-9a3f-b027357c16fb'),(1874,90,18169,NULL,18105,9,'2021-06-03 23:06:10','2021-06-03 23:06:10','dc1f3612-5324-4d0f-a0f4-7379b0b2d3f6'),(1875,70,18170,NULL,17857,1,'2021-06-03 23:06:13','2021-06-03 23:06:13','681a1134-52b8-4af1-9ee2-c769189b14d1'),(1876,90,18170,NULL,18040,1,'2021-06-03 23:06:13','2021-06-03 23:06:13','ba804095-c150-4a3a-854a-976c81ec1a17'),(1877,90,18170,NULL,18167,2,'2021-06-03 23:06:13','2021-06-03 23:06:13','58fe871d-2daa-4538-862b-0bcfc6baa082'),(1878,90,18170,NULL,18043,3,'2021-06-03 23:06:13','2021-06-03 23:06:13','1f566358-ef0f-44fb-828f-2b819a1992ed'),(1879,90,18170,NULL,18045,4,'2021-06-03 23:06:13','2021-06-03 23:06:13','0330d0eb-7da7-4085-b083-fb4eeb77c9c1'),(1880,90,18170,NULL,18046,5,'2021-06-03 23:06:13','2021-06-03 23:06:13','9db777d7-31c5-45e9-92ba-bf62dc998cfb'),(1881,90,18170,NULL,18047,6,'2021-06-03 23:06:13','2021-06-03 23:06:13','bd150778-ad57-4553-ac4b-9aa1d4730f48'),(1882,90,18170,NULL,18120,7,'2021-06-03 23:06:13','2021-06-03 23:06:13','a32433f1-bd38-4698-8496-91f51915d00f'),(1883,90,18170,NULL,18121,8,'2021-06-03 23:06:13','2021-06-03 23:06:13','dc748151-42a5-4419-b22d-ab58212c960b'),(1884,90,18170,NULL,18105,9,'2021-06-03 23:06:13','2021-06-03 23:06:13','ba744e8f-947b-4fd5-a862-5ca831dca3fd'),(1890,70,18176,NULL,17872,1,'2021-06-03 23:07:00','2021-06-03 23:07:00','5cac13e1-44fe-47ed-8efe-dabbbfeb9246'),(1891,90,18176,NULL,18171,1,'2021-06-03 23:07:00','2021-06-03 23:07:00','11af07f3-8a2c-412e-bc9f-863477d50848'),(1892,90,18176,NULL,18172,2,'2021-06-03 23:07:00','2021-06-03 23:07:00','b298f978-5756-4502-81e8-19304672f9b5'),(1893,90,18176,NULL,18173,3,'2021-06-03 23:07:00','2021-06-03 23:07:00','cce06ee9-cd2d-43c5-bef5-525578f82b81'),(1894,90,18176,NULL,18174,4,'2021-06-03 23:07:00','2021-06-03 23:07:00','031193ed-093b-4406-aa56-bf60515078bf'),(1895,90,18176,NULL,18175,5,'2021-06-03 23:07:00','2021-06-03 23:07:00','ae378a0b-1343-411f-8807-64ccde054722'),(1896,70,18177,NULL,17872,1,'2021-06-03 23:07:00','2021-06-03 23:07:00','7f78f51a-8783-44aa-b837-35bc9bae8a60'),(1897,90,18177,NULL,18171,1,'2021-06-03 23:07:00','2021-06-03 23:07:00','6c47c9df-4216-4fc8-be57-db6f03d9ab25'),(1898,90,18177,NULL,18172,2,'2021-06-03 23:07:00','2021-06-03 23:07:00','ea3aaf9f-2596-4103-972c-64754d94bb55'),(1899,90,18177,NULL,18173,3,'2021-06-03 23:07:00','2021-06-03 23:07:00','e83273b6-a9b3-4fe5-9b3c-d4b147106692'),(1900,90,18177,NULL,18174,4,'2021-06-03 23:07:00','2021-06-03 23:07:00','3175f041-189a-4023-8cdd-1cdabd14e175'),(1901,90,18177,NULL,18175,5,'2021-06-03 23:07:00','2021-06-03 23:07:00','c5472553-9a99-4d7d-a290-0286d264db99'),(1902,70,18178,NULL,17872,1,'2021-06-03 23:07:04','2021-06-03 23:07:04','0cf4b965-7cc5-4361-8718-d63631938210'),(1903,90,18178,NULL,18171,1,'2021-06-03 23:07:04','2021-06-03 23:07:04','53c07f99-982e-4bdf-8c99-8f70dc9c1d10'),(1904,90,18178,NULL,18172,2,'2021-06-03 23:07:04','2021-06-03 23:07:04','a872e15c-3933-4bd8-bf0f-ab803ecd77f6'),(1905,90,18178,NULL,18173,3,'2021-06-03 23:07:04','2021-06-03 23:07:04','1474294f-4b93-4319-8570-15c669b6c2a7'),(1906,90,18178,NULL,18174,4,'2021-06-03 23:07:04','2021-06-03 23:07:04','3a308272-b4b7-49f4-82eb-c7b6433a136d'),(1907,90,18178,NULL,18175,5,'2021-06-03 23:07:04','2021-06-03 23:07:04','bad739bf-a9d7-46ad-bab5-cd91931df2e6'),(2079,70,18338,NULL,17855,1,'2021-06-09 23:34:56','2021-06-09 23:34:56','20cc44c0-28f5-4a4c-beba-702cf2a4276a'),(2080,90,18338,NULL,18040,1,'2021-06-09 23:34:56','2021-06-09 23:34:56','8eb79991-5ff2-4121-9177-7bd41770733a'),(2081,90,18338,NULL,18041,2,'2021-06-09 23:34:56','2021-06-09 23:34:56','6d180446-e1d9-490e-9e38-10190f580c02'),(2082,90,18338,NULL,18042,3,'2021-06-09 23:34:56','2021-06-09 23:34:56','baf83204-20ca-442c-993b-4a6123545ab2'),(2083,90,18338,NULL,18104,4,'2021-06-09 23:34:56','2021-06-09 23:34:56','3314734f-e9a9-4df0-8397-d238077f705f'),(2084,90,18338,NULL,18043,5,'2021-06-09 23:34:56','2021-06-09 23:34:56','a9a630d0-6401-4c73-89dc-e96de7a07d32'),(2085,90,18338,NULL,18046,6,'2021-06-09 23:34:56','2021-06-09 23:34:56','9cc818b1-2cd0-4ee5-a620-2c6c7d1ce934'),(2086,90,18338,NULL,18105,7,'2021-06-09 23:34:56','2021-06-09 23:34:56','b2e937d8-7349-42c4-ba82-f9246d72a28e'),(2087,90,18338,NULL,18106,8,'2021-06-09 23:34:56','2021-06-09 23:34:56','d5c316d7-698d-4177-b99c-89185286365c'),(2088,90,18338,NULL,18107,9,'2021-06-09 23:34:56','2021-06-09 23:34:56','93a77f7e-ecff-406f-beb2-fbd9dfc51014'),(2089,90,18338,NULL,18108,10,'2021-06-09 23:34:56','2021-06-09 23:34:56','dedc2e09-d165-46a5-a3ea-47e6be08566c'),(2098,70,18348,NULL,17855,1,'2021-06-09 23:35:01','2021-06-09 23:35:01','5d17c9f9-f60d-4966-b927-ae210df25c97'),(2099,90,18348,NULL,18040,1,'2021-06-09 23:35:01','2021-06-09 23:35:01','9b3acbb9-3b97-4a6f-8826-3aeddbfa0b25'),(2100,90,18348,NULL,18041,2,'2021-06-09 23:35:01','2021-06-09 23:35:01','0efd2b4c-bf8d-4ac9-8763-ea14d729b06c'),(2101,90,18348,NULL,18042,3,'2021-06-09 23:35:01','2021-06-09 23:35:01','4570005d-fb48-482e-936f-52f570a231db'),(2102,90,18348,NULL,18104,4,'2021-06-09 23:35:01','2021-06-09 23:35:01','c08d7854-d7ab-437f-b188-cd7a38a6e404'),(2103,90,18348,NULL,18043,5,'2021-06-09 23:35:01','2021-06-09 23:35:01','5f13db4a-28d7-40f6-a1ff-56777d2af762'),(2104,90,18348,NULL,18046,6,'2021-06-09 23:35:01','2021-06-09 23:35:01','db7d6082-4aaa-4fc4-b312-5c7c10b42143'),(2105,90,18348,NULL,18105,7,'2021-06-09 23:35:01','2021-06-09 23:35:01','e3e73a8a-62ce-4a76-bb0a-bc2d27462058'),(2106,90,18348,NULL,18106,8,'2021-06-09 23:35:01','2021-06-09 23:35:01','1d344e1d-b154-4d7d-934f-fb088b50a5da'),(2107,90,18348,NULL,18107,9,'2021-06-09 23:35:01','2021-06-09 23:35:01','e664b7e2-ddff-496e-a22a-52068fb69f42'),(2108,90,18348,NULL,18108,10,'2021-06-09 23:35:01','2021-06-09 23:35:01','788e6c35-bd09-4a8c-9336-293074a0876f'),(2132,70,18369,NULL,17857,1,'2021-06-09 23:36:05','2021-06-09 23:36:05','ebc94a94-abeb-463e-9ded-a332bc9410d9'),(2133,90,18369,NULL,18114,1,'2021-06-09 23:36:05','2021-06-09 23:36:05','1a6408d0-f009-4dfb-be71-5c168af34eb3'),(2134,90,18369,NULL,18115,2,'2021-06-09 23:36:05','2021-06-09 23:36:05','93bce35c-d81c-4d8c-8047-59d129e601cc'),(2135,90,18369,NULL,18116,3,'2021-06-09 23:36:05','2021-06-09 23:36:05','df5fc43b-956a-4463-966d-1d56a1fdfae9'),(2136,90,18369,NULL,18040,4,'2021-06-09 23:36:05','2021-06-09 23:36:05','63b3c64a-1478-49a5-99d9-b950bfcdec3a'),(2137,90,18369,NULL,18117,5,'2021-06-09 23:36:05','2021-06-09 23:36:05','56449a5e-4072-46ec-abea-8f3f2e8f9232'),(2138,90,18369,NULL,18118,6,'2021-06-09 23:36:05','2021-06-09 23:36:05','4ef1053a-1d52-4e70-a4f2-f7163cada712'),(2139,90,18369,NULL,18119,7,'2021-06-09 23:36:05','2021-06-09 23:36:05','d715e5a4-29c6-410c-9408-dec3f3721cf4'),(2140,90,18369,NULL,18120,8,'2021-06-09 23:36:05','2021-06-09 23:36:05','bc149fa9-4155-4df2-a5bd-7ef24ea0250e'),(2141,90,18369,NULL,18121,9,'2021-06-09 23:36:05','2021-06-09 23:36:05','c6e8c400-e981-4943-9d1b-aea439661335'),(2267,70,18538,NULL,17857,1,'2021-06-09 23:44:53','2021-06-09 23:44:53','0685795b-ad49-4885-bc6e-8d06ef2063f6'),(2268,90,18538,NULL,18114,1,'2021-06-09 23:44:53','2021-06-09 23:44:53','f8888ccc-6b0c-45de-b4c4-89d8bc3b10a8'),(2269,90,18538,NULL,18115,2,'2021-06-09 23:44:53','2021-06-09 23:44:53','de07da13-7a62-425c-95ec-a947f31df143'),(2270,90,18538,NULL,18116,3,'2021-06-09 23:44:53','2021-06-09 23:44:53','83011c4c-d926-472a-84f5-b0c10dfc4326'),(2271,90,18538,NULL,18040,4,'2021-06-09 23:44:53','2021-06-09 23:44:53','0d93b03d-e1b5-4a93-bb54-5ecf6c3f69a0'),(2272,90,18538,NULL,18117,5,'2021-06-09 23:44:53','2021-06-09 23:44:53','1e44fd24-b529-4a86-837d-9fbe21ed0ba3'),(2273,90,18538,NULL,18118,6,'2021-06-09 23:44:53','2021-06-09 23:44:53','e3f386ab-2afd-4747-91bd-7e79a208c782'),(2274,90,18538,NULL,18119,7,'2021-06-09 23:44:53','2021-06-09 23:44:53','023e561c-8d97-4f3e-83d2-f34b7e4c841b'),(2275,90,18538,NULL,18120,8,'2021-06-09 23:44:53','2021-06-09 23:44:53','f79c6211-80f0-427e-af58-56f71ee30ebc'),(2276,90,18538,NULL,18121,9,'2021-06-09 23:44:53','2021-06-09 23:44:53','380321a6-bb90-4164-985e-ea5b7914bd51'),(2285,70,18550,NULL,17857,1,'2021-06-09 23:44:59','2021-06-09 23:44:59','06687e90-0adb-4d50-b163-d54888a9a554'),(2286,90,18550,NULL,18114,1,'2021-06-09 23:44:59','2021-06-09 23:44:59','889787bd-e551-48c3-8c3c-c604034e9591'),(2287,90,18550,NULL,18115,2,'2021-06-09 23:44:59','2021-06-09 23:44:59','1d1a5317-b2fe-4ba8-8ecc-03ab1afb7f2c'),(2288,90,18550,NULL,18116,3,'2021-06-09 23:44:59','2021-06-09 23:44:59','2bdfc2a1-e425-47ac-b3b8-be6996a66c35'),(2289,90,18550,NULL,18040,4,'2021-06-09 23:44:59','2021-06-09 23:44:59','aab403f9-9eee-49cc-88f6-88ef24e0c4c2'),(2290,90,18550,NULL,18117,5,'2021-06-09 23:44:59','2021-06-09 23:44:59','e4b417cf-c8f4-415e-8532-45e0ee3c364a'),(2291,90,18550,NULL,18118,6,'2021-06-09 23:44:59','2021-06-09 23:44:59','b00d05ac-0733-41e0-8e8d-0150b9a97ddf'),(2292,90,18550,NULL,18119,7,'2021-06-09 23:44:59','2021-06-09 23:44:59','c0d7c824-0585-4aff-9e16-b0538ec3ae80'),(2293,90,18550,NULL,18120,8,'2021-06-09 23:44:59','2021-06-09 23:44:59','b8a7de00-bacd-4131-8610-c24227436db4'),(2294,90,18550,NULL,18121,9,'2021-06-09 23:44:59','2021-06-09 23:44:59','8222aac1-9797-42f1-8bd7-177951b5f7f2'),(2305,70,18562,NULL,17855,1,'2021-06-09 23:45:20','2021-06-09 23:45:20','5c04a69c-6285-47f3-af29-b4a586129047'),(2306,90,18562,NULL,18040,1,'2021-06-09 23:45:21','2021-06-09 23:45:21','653ff264-9f83-46d5-a5df-f239795877e2'),(2307,90,18562,NULL,18041,2,'2021-06-09 23:45:21','2021-06-09 23:45:21','705572b0-45f8-4288-9241-9eb5a4c90023'),(2308,90,18562,NULL,18042,3,'2021-06-09 23:45:21','2021-06-09 23:45:21','44fb35a4-a793-433c-b53a-4d9d36e75b1a'),(2309,90,18562,NULL,18104,4,'2021-06-09 23:45:21','2021-06-09 23:45:21','8e3022cd-471b-4341-9344-80e8b64d7214'),(2310,90,18562,NULL,18043,5,'2021-06-09 23:45:21','2021-06-09 23:45:21','dc238185-922d-4589-87cb-ce72bf60c3b5'),(2311,90,18562,NULL,18046,6,'2021-06-09 23:45:21','2021-06-09 23:45:21','d2a40812-1e97-495b-96af-c1b46c34c7eb'),(2312,90,18562,NULL,18105,7,'2021-06-09 23:45:21','2021-06-09 23:45:21','0d1ebf9f-02af-4bc6-bc90-9940b263d2a8'),(2313,90,18562,NULL,18106,8,'2021-06-09 23:45:21','2021-06-09 23:45:21','b08ba4f6-276c-46ec-8842-425270489df8'),(2314,90,18562,NULL,18107,9,'2021-06-09 23:45:21','2021-06-09 23:45:21','ddefd386-a172-4b95-a3b0-de1d7881be5e'),(2315,90,18562,NULL,18108,10,'2021-06-09 23:45:21','2021-06-09 23:45:21','0f2103d6-afe5-48be-b6f6-527fbbca2674'),(2326,70,18572,NULL,17857,1,'2021-06-09 23:45:55','2021-06-09 23:45:55','2cb1918a-c754-4b7f-b84d-1dd915e612de'),(2327,90,18572,NULL,18114,1,'2021-06-09 23:45:55','2021-06-09 23:45:55','850528d9-4731-4966-aa27-e2229a62b3fb'),(2328,90,18572,NULL,18115,2,'2021-06-09 23:45:55','2021-06-09 23:45:55','ad3a515f-c611-4799-9347-e79f84e3f0a9'),(2329,90,18572,NULL,18116,3,'2021-06-09 23:45:55','2021-06-09 23:45:55','89cc4b47-8a5c-45fa-b567-2f97e5d259ae'),(2330,90,18572,NULL,18040,4,'2021-06-09 23:45:55','2021-06-09 23:45:55','6ad3b42d-206f-4bf1-818c-1a92a7d9be91'),(2331,90,18572,NULL,18117,5,'2021-06-09 23:45:55','2021-06-09 23:45:55','80a8aeb9-20d8-4d56-8c36-4bd0ac6dfaf6'),(2332,90,18572,NULL,18118,6,'2021-06-09 23:45:55','2021-06-09 23:45:55','7c108e8b-5337-4465-a89c-781d7936a22e'),(2333,90,18572,NULL,18119,7,'2021-06-09 23:45:55','2021-06-09 23:45:55','0d12204c-5892-43cc-9a31-05c831af9c3c'),(2334,90,18572,NULL,18120,8,'2021-06-09 23:45:55','2021-06-09 23:45:55','5aec9ab1-1c24-4ed9-8ea7-cf77a97ca385'),(2335,90,18572,NULL,18121,9,'2021-06-09 23:45:55','2021-06-09 23:45:55','bdca6990-cebd-4cdc-8ca3-14cf9c072519'),(2376,69,18126,NULL,18584,1,'2021-06-09 23:50:03','2021-06-09 23:50:03','95d7f19e-539b-4f94-a9b2-5dce03551af3'),(2381,69,18626,NULL,18584,1,'2021-06-09 23:50:04','2021-06-09 23:50:04','034f2bb3-01af-44fa-97e1-bace92009c71'),(2382,70,18626,NULL,17857,1,'2021-06-09 23:50:04','2021-06-09 23:50:04','0dba807b-3088-489a-868c-0c8ffa9e6502'),(2383,90,18626,NULL,18114,1,'2021-06-09 23:50:04','2021-06-09 23:50:04','c92a8480-ca1c-43f2-811a-ed836cfb0573'),(2384,90,18626,NULL,18116,2,'2021-06-09 23:50:04','2021-06-09 23:50:04','c9aef012-e8c5-4d2a-8622-fd16b7fcac91'),(2385,90,18626,NULL,18040,3,'2021-06-09 23:50:04','2021-06-09 23:50:04','0cef8e11-e0bb-45f8-bd0e-2828c6c12884'),(2386,90,18626,NULL,18118,4,'2021-06-09 23:50:04','2021-06-09 23:50:04','b0dbd735-44f8-4207-b247-71d0c97fd238'),(2387,90,18626,NULL,18117,5,'2021-06-09 23:50:04','2021-06-09 23:50:04','802683f2-e089-49f5-8cef-4cb3607588fe'),(2388,90,18626,NULL,18105,6,'2021-06-09 23:50:04','2021-06-09 23:50:04','20d78c33-3dce-4986-a32a-9de98dc6ac4c'),(2389,90,18626,NULL,18120,7,'2021-06-09 23:50:04','2021-06-09 23:50:04','dfca0e4e-5f3a-404e-b463-cf310f0082c1'),(2390,90,18626,NULL,18121,8,'2021-06-09 23:50:04','2021-06-09 23:50:04','6395c887-eaa6-419c-ad90-7502fcdadcd2'),(2391,90,18626,NULL,18125,9,'2021-06-09 23:50:04','2021-06-09 23:50:04','ddb27935-a737-4301-b0f3-06507927b2d9'),(2392,90,18626,NULL,18043,10,'2021-06-09 23:50:04','2021-06-09 23:50:04','13f212ea-8918-4eec-979b-ffc8fe5d4c18'),(2393,90,18626,NULL,18046,11,'2021-06-09 23:50:04','2021-06-09 23:50:04','5a18cf56-608f-479a-9495-4d91bb408331'),(2394,64,18627,NULL,18584,1,'2021-06-09 23:50:04','2021-06-09 23:50:04','6cb96332-a5f1-424e-96a3-5299d8129141'),(2395,64,18629,NULL,18597,1,'2021-06-09 23:50:04','2021-06-09 23:50:04','66e9a17c-a3e4-4667-a7cb-903dedd1ce1e'),(2396,64,18630,NULL,18598,1,'2021-06-09 23:50:04','2021-06-09 23:50:04','05507910-f543-496e-b253-b42874bd42aa'),(2397,64,18631,NULL,18599,1,'2021-06-09 23:50:04','2021-06-09 23:50:04','34d9b6a7-1aae-4394-a82e-74278838823f'),(2398,69,18632,NULL,18584,1,'2021-06-09 23:50:10','2021-06-09 23:50:10','6ab7e4ce-17ab-42d5-858b-5a8bcffb23f5'),(2399,70,18632,NULL,17857,1,'2021-06-09 23:50:10','2021-06-09 23:50:10','d9a8e1de-f2c2-465e-82eb-7f3448e1fac3'),(2400,90,18632,NULL,18114,1,'2021-06-09 23:50:10','2021-06-09 23:50:10','65a3b0b0-a835-43e6-8851-5a6c1679e660'),(2401,90,18632,NULL,18116,2,'2021-06-09 23:50:10','2021-06-09 23:50:10','a8608461-3940-4a51-99db-169b9fc55955'),(2402,90,18632,NULL,18040,3,'2021-06-09 23:50:10','2021-06-09 23:50:10','bc01f790-e1ce-40c9-ab9b-3f5af96a67e4'),(2403,90,18632,NULL,18118,4,'2021-06-09 23:50:10','2021-06-09 23:50:10','5be93795-c3ab-47b5-b2c7-095ab8167887'),(2404,90,18632,NULL,18117,5,'2021-06-09 23:50:10','2021-06-09 23:50:10','91ebbfc8-aa4a-4e9f-a739-4695844f4ca9'),(2405,90,18632,NULL,18105,6,'2021-06-09 23:50:10','2021-06-09 23:50:10','70117628-c926-477d-8589-4eebbb351608'),(2406,90,18632,NULL,18120,7,'2021-06-09 23:50:10','2021-06-09 23:50:10','8a200c20-dd57-4d8b-b727-fbffddc77bd9'),(2407,90,18632,NULL,18121,8,'2021-06-09 23:50:10','2021-06-09 23:50:10','0f27134d-d056-4819-860f-936c2bdecca9'),(2408,90,18632,NULL,18125,9,'2021-06-09 23:50:10','2021-06-09 23:50:10','314beff7-b656-48c7-b929-4e6ec0656a2c'),(2409,90,18632,NULL,18043,10,'2021-06-09 23:50:10','2021-06-09 23:50:10','2a651e5f-80ff-43fb-b06b-d1b46dc261e8'),(2410,90,18632,NULL,18046,11,'2021-06-09 23:50:10','2021-06-09 23:50:10','031b63ff-c499-4bf7-8692-9053fad78ecf'),(2411,64,18633,NULL,18584,1,'2021-06-09 23:50:10','2021-06-09 23:50:10','430032d9-d020-44c6-9bb5-e78dd2b76a15'),(2412,64,18635,NULL,18597,1,'2021-06-09 23:50:10','2021-06-09 23:50:10','ca573d19-6606-4405-a33c-6d7c9ce1582a'),(2413,64,18636,NULL,18598,1,'2021-06-09 23:50:10','2021-06-09 23:50:10','797322a2-7982-4739-933a-eedcf9722b6e'),(2414,64,18637,NULL,18599,1,'2021-06-09 23:50:10','2021-06-09 23:50:10','504fee3c-f103-4fae-9185-2d2ba629c0ab'),(2701,69,19014,NULL,18653,1,'2021-06-10 01:54:28','2021-06-10 01:54:28','3828f3b9-e9c5-48f2-a536-263b1acb75ec'),(2702,70,19014,NULL,17868,1,'2021-06-10 01:54:28','2021-06-10 01:54:28','eeb9c8b0-e994-4edd-9dc3-f4f8ef6a00c4'),(2703,90,19014,NULL,18149,1,'2021-06-10 01:54:28','2021-06-10 01:54:28','f1619903-8836-43f6-9400-468078582c94'),(2704,90,19014,NULL,18150,2,'2021-06-10 01:54:28','2021-06-10 01:54:28','829a7c26-a40f-4c37-9578-a9a5f9352b0a'),(2705,90,19014,NULL,18105,3,'2021-06-10 01:54:28','2021-06-10 01:54:28','79625fd0-6989-48ab-879b-668d404dd0c1'),(2706,90,19014,NULL,18151,4,'2021-06-10 01:54:28','2021-06-10 01:54:28','f2328ba0-744a-4058-9fee-2e1be344e799'),(2707,90,19014,NULL,18152,5,'2021-06-10 01:54:28','2021-06-10 01:54:28','dcb1c378-639b-46f3-a633-20896bbf4eb8'),(2708,90,19014,NULL,18153,6,'2021-06-10 01:54:28','2021-06-10 01:54:28','4ee19c06-816d-493f-8fd5-a2426631c9df'),(2709,90,19014,NULL,18154,7,'2021-06-10 01:54:28','2021-06-10 01:54:28','9913fbfc-afc3-4d67-b8d0-dcbbdc068a20'),(2710,90,19014,NULL,18155,8,'2021-06-10 01:54:28','2021-06-10 01:54:28','0454e1d0-a23d-4687-9bc3-3e11c919f566'),(2711,93,19016,NULL,18653,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','bd814865-d921-4a7e-b273-5ceb5acc5a46'),(2712,64,19018,NULL,18638,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','067b1762-5038-4c08-ba20-ee879ae7ff14'),(2713,64,19019,NULL,18639,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','3a53aea9-ec7b-41a6-b94e-d6c79d81ec60'),(2714,64,19020,NULL,18640,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','8409f81d-636a-4411-8f51-740a7a4f7f6c'),(2715,64,19021,NULL,18641,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','d4ee35d7-af94-402a-b2ce-ccfb1f443f26'),(2716,64,19022,NULL,18642,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','0cbab450-7cab-4595-b3b6-4916f8c5cf6e'),(2717,64,19023,NULL,18643,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','5ba81ef9-ba1c-49d4-ae9e-6aa2ed208729'),(2718,64,19024,NULL,18644,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','03e4015b-187a-4cc4-8783-388c229b5b20'),(2719,64,19025,NULL,18645,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','ec20e48f-dc54-4a8a-8bf9-72f160dbe841'),(2720,64,19026,NULL,18646,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','04f956f7-58a1-4284-af8f-673b2e0fb7d4'),(2721,64,19027,NULL,18647,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','e9d1a3c3-8541-4f14-b865-697223eb27e8'),(2722,64,19028,NULL,18648,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','18be8923-929a-4a63-8df0-8d8940ba6f89'),(2723,64,19029,NULL,18649,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','7b60b03b-035c-4fdc-a2b7-53fd912f39a0'),(2724,64,19030,NULL,18650,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','60364b90-2cf4-4080-bf68-c0c1c8ad450f'),(2725,64,19031,NULL,18651,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','13c35e85-1cac-4d2a-a393-2541783ce92c'),(2726,64,19032,NULL,18652,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','e07c9fe4-5643-429a-96a6-6682ce415984'),(2727,69,19033,NULL,18653,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','90565588-ddaa-4aab-a3b4-02f1b7fafc24'),(2728,70,19033,NULL,17868,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','e656df39-66c9-4647-8284-3464d8a8dfdd'),(2729,90,19033,NULL,18149,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','425931e3-d610-457b-8330-4fdc60697464'),(2730,90,19033,NULL,18150,2,'2021-06-10 01:54:38','2021-06-10 01:54:38','162fb119-f3a3-4a10-9391-9402d3ab720a'),(2731,90,19033,NULL,18105,3,'2021-06-10 01:54:38','2021-06-10 01:54:38','88939626-569f-447b-95e0-ea34b08d5737'),(2732,90,19033,NULL,18151,4,'2021-06-10 01:54:38','2021-06-10 01:54:38','f39c204b-b24e-496f-bce6-42657fa28baa'),(2733,90,19033,NULL,18152,5,'2021-06-10 01:54:38','2021-06-10 01:54:38','1411951a-ea1b-4b72-9e86-93ed90fc65f4'),(2734,90,19033,NULL,18153,6,'2021-06-10 01:54:38','2021-06-10 01:54:38','1c65cc3c-60e1-4058-8192-65264cd54ea3'),(2735,90,19033,NULL,18154,7,'2021-06-10 01:54:38','2021-06-10 01:54:38','3e9a4994-01ff-481d-ac73-5dbb7edcd4ed'),(2736,90,19033,NULL,18155,8,'2021-06-10 01:54:38','2021-06-10 01:54:38','017ee561-5fa9-4e7a-af67-6e16da5c4afa'),(2737,93,19035,NULL,18653,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','a089cb9e-2d95-4219-b925-8d9167874dd7'),(2738,64,19037,NULL,18638,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','359b7a50-779d-44d0-8897-f26579074f69'),(2739,64,19038,NULL,18639,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','8dde10a8-979d-4fe4-9ac2-4a76d9a80fe9'),(2740,64,19039,NULL,18640,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','81dbd81a-a1db-4ab7-a104-15e43c824de9'),(2741,64,19040,NULL,18641,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','49161a1f-76bf-45fa-b8da-1fb706a708a7'),(2742,64,19041,NULL,18642,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','79af3b62-4d0c-4d47-af1e-d1ecef6ddb41'),(2743,64,19042,NULL,18643,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','859d678c-5afa-4990-89dd-3fb2543137b8'),(2744,64,19043,NULL,18644,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','c6d7a48e-bc19-4bcc-9494-29d162badb1b'),(2745,64,19044,NULL,18645,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','1eedd790-3ced-4092-936a-d30ccf7bdb89'),(2746,64,19045,NULL,18646,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','01f680d6-1803-4d1d-9a03-eee6b4162202'),(2747,64,19046,NULL,18647,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','a97b6dc8-7525-4de3-9059-6aab04c2d5a1'),(2748,64,19047,NULL,18648,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','a9d3e9cb-616b-48f1-b073-b2f9f876ac33'),(2749,64,19048,NULL,18649,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','b5162e8f-ad02-4479-8c83-8ced8c7b9503'),(2750,64,19049,NULL,18650,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','dd0c3603-cbff-4070-8b5f-ffd850d9d75e'),(2751,64,19050,NULL,18651,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','d27dca6e-cd16-47b1-a31b-e591f5292345'),(2752,64,19051,NULL,18652,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','f847390c-4adc-431c-ab4a-31cd19d096fc'),(2781,69,19093,NULL,19060,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','50ae3715-380a-4863-afe3-6d28a61450d6'),(2782,70,19093,NULL,17857,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','6c067269-6384-4375-8c41-5855af27686d'),(2783,90,19093,NULL,18114,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','d424080f-9f9d-48de-8cd8-636e37f4a0f1'),(2784,90,19093,NULL,18115,2,'2021-06-10 04:26:08','2021-06-10 04:26:08','0d9c0677-3d2b-4a3d-a20b-f7cedbc4af1a'),(2785,90,19093,NULL,18116,3,'2021-06-10 04:26:08','2021-06-10 04:26:08','e82b4cb0-4b28-40f8-8493-75b5497ee236'),(2786,90,19093,NULL,18040,4,'2021-06-10 04:26:08','2021-06-10 04:26:08','1f2ae4ce-88bc-4ac3-9ff5-d07ffcbf2c6b'),(2787,90,19093,NULL,18117,5,'2021-06-10 04:26:08','2021-06-10 04:26:08','866db68e-a11c-428d-9ee7-b3e1ca9c0755'),(2788,90,19093,NULL,18118,6,'2021-06-10 04:26:08','2021-06-10 04:26:08','2d1f1d05-024a-42c1-ac81-020a7d20f5a9'),(2789,90,19093,NULL,18119,7,'2021-06-10 04:26:08','2021-06-10 04:26:08','22c9ae80-a8cc-403a-a3fd-8b8aab843f8c'),(2790,90,19093,NULL,18120,8,'2021-06-10 04:26:08','2021-06-10 04:26:08','952c7c75-8b97-4b2b-9270-05163e408897'),(2791,90,19093,NULL,18121,9,'2021-06-10 04:26:08','2021-06-10 04:26:08','963baa64-f1a6-44b7-95e2-66befbd2902e'),(2792,64,19094,NULL,19060,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','69ca1111-1ebb-496e-bed1-93999cf98b00'),(2793,64,19096,NULL,19061,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','c5da5671-0f5f-4d67-982e-e689877beece'),(2794,64,19097,NULL,19062,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','c4d9120e-679d-42b6-a712-449ceaad4d99'),(2795,93,19099,NULL,19081,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','9884daa1-79a0-4b27-a1f2-d8bc7b08778f'),(2796,93,19101,NULL,19064,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','1c86ea29-f543-46dc-b8b0-63c9880a64e8'),(2797,93,19102,NULL,19066,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','d91cf9be-e05c-40c0-a038-c9acbf48f16b'),(2798,93,19103,NULL,19067,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','5457fa14-2be4-4569-b92c-36f57bd3988b'),(2799,93,19104,NULL,19068,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','ac932f2c-e557-4a6b-b91a-6a1e9606f209'),(2800,69,19105,NULL,19060,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','42ef8bee-0df0-4501-a56d-17a38418fc8c'),(2801,70,19105,NULL,17857,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','77c7218d-50d9-4720-812a-c26358c1e681'),(2802,90,19105,NULL,18114,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','a3d73838-3ad4-4a2f-9779-d1295bfb6501'),(2803,90,19105,NULL,18115,2,'2021-06-10 04:26:13','2021-06-10 04:26:13','8eb38185-7128-4ee5-bb5c-6f3811fc9b44'),(2804,90,19105,NULL,18116,3,'2021-06-10 04:26:13','2021-06-10 04:26:13','2291f572-0c7e-4806-8b7b-7012a33858ce'),(2805,90,19105,NULL,18040,4,'2021-06-10 04:26:13','2021-06-10 04:26:13','661bf274-be24-48e5-a804-c306a563a5ea'),(2806,90,19105,NULL,18117,5,'2021-06-10 04:26:13','2021-06-10 04:26:13','96e66ba4-dbdc-44cf-8713-1a8eaf95649e'),(2807,90,19105,NULL,18118,6,'2021-06-10 04:26:13','2021-06-10 04:26:13','883438b2-a45b-4f72-8344-e022c72fa188'),(2808,90,19105,NULL,18119,7,'2021-06-10 04:26:13','2021-06-10 04:26:13','c81fde9e-29f5-4ccf-a279-9f2ce283bf8e'),(2809,90,19105,NULL,18120,8,'2021-06-10 04:26:13','2021-06-10 04:26:13','e789db4a-f3c1-4ce9-be28-ba38175af00b'),(2810,90,19105,NULL,18121,9,'2021-06-10 04:26:13','2021-06-10 04:26:13','0559857f-9754-46a5-9479-e2ce506888b3'),(2811,64,19106,NULL,19060,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','1f2ed3c7-d656-4ad7-9439-74625dfe1f87'),(2812,64,19108,NULL,19061,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','33dd27fc-fc7e-4e8a-8e92-e96dcc988db0'),(2813,64,19109,NULL,19062,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','c93919e5-0a30-4c86-b837-9862c2aac678'),(2814,93,19111,NULL,19081,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','003a9402-c2c1-42fa-9d09-37cb78c814b6'),(2815,93,19113,NULL,19064,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','a764488f-cfb1-4ddd-804e-6c2c1ce9b333'),(2816,93,19114,NULL,19066,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','df8664e6-1f1e-4918-91f3-d214d23499f0'),(2817,93,19115,NULL,19067,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','1ff3958d-50f0-48a2-ba4b-af68af8268e5'),(2818,93,19116,NULL,19068,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','bf02f9e0-4366-45da-800e-a1d79543a4dc'),(2848,69,19136,NULL,19052,1,'2021-06-10 04:27:36','2021-06-10 04:27:36','2ce0fcdd-f66b-4606-a1b7-4f86652307e2'),(2849,70,19136,NULL,17855,1,'2021-06-10 04:27:36','2021-06-10 04:27:36','53ae09ed-f630-46a3-a5a7-7307b3faa0a6'),(2850,90,19136,NULL,18040,1,'2021-06-10 04:27:36','2021-06-10 04:27:36','0f1cc90e-852f-489b-879d-0a2577852d28'),(2851,90,19136,NULL,18041,2,'2021-06-10 04:27:36','2021-06-10 04:27:36','56e818f0-5fbd-4224-a674-2e4e9d34a04c'),(2852,90,19136,NULL,18042,3,'2021-06-10 04:27:36','2021-06-10 04:27:36','c1d82ac6-0e14-4c8f-aee4-d2ae133ab5a8'),(2853,90,19136,NULL,18104,4,'2021-06-10 04:27:36','2021-06-10 04:27:36','4247e5c7-bb83-4f1d-b191-390b3b82a417'),(2854,90,19136,NULL,18043,5,'2021-06-10 04:27:36','2021-06-10 04:27:36','797fe568-dd42-4f39-b1ac-bb0e88d30c60'),(2855,90,19136,NULL,18046,6,'2021-06-10 04:27:36','2021-06-10 04:27:36','99cff8b5-a634-433f-81df-9f251affadf9'),(2856,90,19136,NULL,18105,7,'2021-06-10 04:27:36','2021-06-10 04:27:36','d2b2a7ad-7874-4db7-b783-88420c6d72e1'),(2857,90,19136,NULL,18106,8,'2021-06-10 04:27:36','2021-06-10 04:27:36','c150c781-1dae-4a22-a67b-3808a56fae5c'),(2858,90,19136,NULL,18107,9,'2021-06-10 04:27:36','2021-06-10 04:27:36','e99b0b0d-54b8-4bb8-9b2f-fb5eb7ce03de'),(2859,90,19136,NULL,18108,10,'2021-06-10 04:27:36','2021-06-10 04:27:36','512a1c08-3b78-4144-bdcc-38ce9d74f5c1'),(2860,64,19137,NULL,19052,1,'2021-06-10 04:27:36','2021-06-10 04:27:36','6c913515-a289-4511-9823-a0d982affcb8'),(2861,64,19139,NULL,19053,1,'2021-06-10 04:27:37','2021-06-10 04:27:37','0c0a0ae0-e1b2-4ca5-a736-726ef8bbd963'),(2862,64,19140,NULL,19054,1,'2021-06-10 04:27:37','2021-06-10 04:27:37','a8d08052-a07a-482f-8f7b-735cf736f296'),(2863,64,19141,NULL,19055,1,'2021-06-10 04:27:37','2021-06-10 04:27:37','22794a74-acc7-480b-b793-b007a757bf13'),(2864,64,19142,NULL,19056,1,'2021-06-10 04:27:37','2021-06-10 04:27:37','64d6a029-cb20-4695-999f-1560c637767a'),(2865,64,19143,NULL,19057,1,'2021-06-10 04:27:37','2021-06-10 04:27:37','faaf7748-8f10-43d9-b3b3-61f5d78a0b03'),(2866,64,19144,NULL,19058,1,'2021-06-10 04:27:37','2021-06-10 04:27:37','9de9efe0-5038-4559-926e-b94cb52d4660'),(2867,64,19145,NULL,19059,1,'2021-06-10 04:27:37','2021-06-10 04:27:37','9b2ce484-5334-4351-9051-095c92f0b663'),(2868,69,19146,NULL,19052,1,'2021-06-10 04:27:41','2021-06-10 04:27:41','bb0723ae-238f-4feb-82cc-34005d2c4e9a'),(2869,70,19146,NULL,17855,1,'2021-06-10 04:27:41','2021-06-10 04:27:41','4d266348-9936-453c-8cc9-81323d76dc5f'),(2870,90,19146,NULL,18040,1,'2021-06-10 04:27:41','2021-06-10 04:27:41','79fc1605-5982-4240-8e43-e1eb40497290'),(2871,90,19146,NULL,18041,2,'2021-06-10 04:27:41','2021-06-10 04:27:41','3e8a8023-66e1-493f-9278-804b4945189b'),(2872,90,19146,NULL,18042,3,'2021-06-10 04:27:41','2021-06-10 04:27:41','92363ccb-8d8a-4c4a-8378-d64fff9ae868'),(2873,90,19146,NULL,18104,4,'2021-06-10 04:27:41','2021-06-10 04:27:41','7db84c35-87c3-4725-ab89-b7348fcd8d02'),(2874,90,19146,NULL,18043,5,'2021-06-10 04:27:41','2021-06-10 04:27:41','7b06ca8d-df30-408f-9609-fbe57676a4b5'),(2875,90,19146,NULL,18046,6,'2021-06-10 04:27:41','2021-06-10 04:27:41','d80a4e99-aded-4240-9478-f5316f3a2237'),(2876,90,19146,NULL,18105,7,'2021-06-10 04:27:41','2021-06-10 04:27:41','833a43fe-a5bd-4b88-8459-7c4240c9592a'),(2877,90,19146,NULL,18106,8,'2021-06-10 04:27:41','2021-06-10 04:27:41','e502ad61-c6ec-477c-a73f-7fcf3f64d980'),(2878,90,19146,NULL,18107,9,'2021-06-10 04:27:41','2021-06-10 04:27:41','94ba34cc-a797-4f48-af45-6d386f1abf66'),(2879,90,19146,NULL,18108,10,'2021-06-10 04:27:41','2021-06-10 04:27:41','d681d5ea-80ee-4b2e-8232-c19d5cf59499'),(2880,64,19147,NULL,19052,1,'2021-06-10 04:27:41','2021-06-10 04:27:41','6a9e9ba8-3139-4866-89f5-673e250fd1ad'),(2881,64,19149,NULL,19053,1,'2021-06-10 04:27:41','2021-06-10 04:27:41','28e7649e-84fa-4241-8da4-d00b91e888c2'),(2882,64,19150,NULL,19054,1,'2021-06-10 04:27:41','2021-06-10 04:27:41','ea5e34e0-70d5-49bf-abff-2a05b74277df'),(2883,64,19151,NULL,19055,1,'2021-06-10 04:27:41','2021-06-10 04:27:41','d23d2207-08b6-4d7b-843a-3d2cd41867d0'),(2884,64,19152,NULL,19056,1,'2021-06-10 04:27:41','2021-06-10 04:27:41','b39c549b-3926-4285-ba02-d93c60a540aa'),(2885,64,19153,NULL,19057,1,'2021-06-10 04:27:41','2021-06-10 04:27:41','5fe4943a-5c24-4b96-b66a-fdffb117154d'),(2886,64,19154,NULL,19058,1,'2021-06-10 04:27:41','2021-06-10 04:27:41','74dec990-f9e3-457e-8598-b02f4a74c704'),(2887,64,19155,NULL,19059,1,'2021-06-10 04:27:41','2021-06-10 04:27:41','9c131067-93ec-4a68-8e16-9c8cc11dc5e7'),(2896,120,1,NULL,19167,1,'2021-06-11 00:31:55','2021-06-11 00:31:55','d21da53c-9484-4d4e-afd5-ee9b6d8eb37c'),(2897,120,19176,NULL,19175,1,'2021-06-11 01:36:22','2021-06-11 01:36:22','28ee8ee6-6784-4e39-81bc-966d435071d2'),(2898,120,19179,NULL,19175,1,'2021-06-11 01:42:05','2021-06-11 01:42:05','d84dadc1-1f52-4244-955f-38e19688c895'),(2899,120,19185,NULL,19175,1,'2021-06-11 01:47:49','2021-06-11 01:47:49','a354a61c-8c62-43bd-9c8a-e4a155c434f2'),(2900,120,19191,NULL,19175,1,'2021-06-11 04:54:21','2021-06-11 04:54:21','eed5598c-574f-4d40-9404-d219639044e4'),(2901,120,19197,NULL,19196,1,'2021-06-13 23:21:06','2021-06-13 23:21:06','89b74f13-9601-42d7-b8ca-0c8f869c90e0'),(2902,120,17875,NULL,19167,1,'2021-06-15 04:51:03','2021-06-15 04:51:03','3cc275ee-cf8c-46c4-aa61-16170ed88085'),(3471,141,21289,NULL,21085,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','6d6d9d58-9da3-47c2-9c8d-23ede3d0cb17'),(3472,141,21290,NULL,21084,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','a7f706ae-108d-4b2c-b9ac-f077d754747f'),(3473,141,21291,NULL,21082,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','bfb4d204-098f-41be-8de3-eaf2d7d8f661'),(3474,141,21292,NULL,21079,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','8bd3fc20-816a-4961-9965-d6361db7bbb5'),(3475,141,21293,NULL,21075,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','1e40ab2b-cccd-44ad-8ba5-8b584beee946'),(3476,141,21294,NULL,21076,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','e3d22c8d-8732-4aa8-a3cd-f23d1443e3da'),(3477,79,21296,NULL,17956,1,'2021-06-21 06:03:35','2021-06-21 06:03:35','9f33fcc9-1635-432d-a717-02a4698134e1'),(3478,79,21296,NULL,17954,2,'2021-06-21 06:03:35','2021-06-21 06:03:35','b482e8f3-06d9-496a-b890-440c01101dc7'),(3480,79,21296,NULL,17875,7,'2021-06-21 06:03:35','2023-03-09 04:33:13','8d4769f3-7409-48f8-9dbb-8420536bd898'),(3481,79,21296,NULL,17996,9,'2021-06-21 06:03:35','2023-03-09 04:33:13','65f25f0c-96d4-4308-8f9b-4d8e5cdad186'),(3482,79,21296,NULL,17899,6,'2021-06-21 06:03:35','2021-06-21 06:03:35','0a63603a-afd4-4fa5-aebf-dd5c02a205dd'),(3483,79,21296,NULL,17941,15,'2021-06-21 06:03:35','2023-03-09 04:32:27','9e2c905a-2c70-4602-9197-57807aa1e828'),(3484,79,21296,NULL,17881,11,'2021-06-21 06:03:35','2023-03-09 04:33:13','8990025e-aa59-4f6f-8fdb-0dc84718790e'),(3487,79,21296,NULL,17934,4,'2021-06-21 06:03:35','2023-03-09 04:33:13','95ec4d85-f50e-4039-8434-cc02425fe249'),(3489,79,21296,NULL,17887,12,'2021-06-21 06:03:35','2023-03-09 04:33:13','d58dd0a8-1a0c-4438-a2ab-189005ae952d'),(3503,141,21388,NULL,21085,1,'2021-07-12 23:11:47','2021-07-12 23:11:47','46f7bd75-b7fc-46d9-ba34-efc5616cfe25'),(3504,141,21389,NULL,21084,1,'2021-07-12 23:11:47','2021-07-12 23:11:47','46f54757-31a8-49c6-b424-aa5dfef61a8b'),(3505,141,21390,NULL,21082,1,'2021-07-12 23:11:47','2021-07-12 23:11:47','3f16cc22-3b26-45c2-ba62-f3e9bc97ed8e'),(3506,141,21391,NULL,21079,1,'2021-07-12 23:11:47','2021-07-12 23:11:47','665e0662-09bc-4dd2-9a54-67cfb4c802ce'),(3507,141,21392,NULL,21075,1,'2021-07-12 23:11:47','2021-07-12 23:11:47','387753d3-8ca6-40f9-b821-2f002be7f3aa'),(3508,141,21393,NULL,21076,1,'2021-07-12 23:11:47','2021-07-12 23:11:47','3023935a-1bbd-4021-b3fb-848ab1024a7c'),(3522,141,21415,NULL,21085,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','d2109223-3576-4145-9a7a-fdc53f35f7bd'),(3523,141,21416,NULL,21084,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','38e54f05-a3ca-4384-b5e7-a9cdcbe0865c'),(3524,141,21417,NULL,21082,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','fe1ccf01-b542-45d7-bf2d-dcea157414aa'),(3525,141,21418,NULL,21079,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','0e4baaa4-50ed-48b8-a211-10b710f85cf3'),(3526,141,21419,NULL,21075,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','2eb1abb8-2372-40d2-aeb1-f724b1fdc3c5'),(3527,141,21420,NULL,21076,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','97d7ffd3-8f55-4525-b06e-a5825a374698'),(3541,141,21442,NULL,21085,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','e1dd9749-5172-4613-8f3a-edeab316c1fe'),(3542,141,21443,NULL,21084,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','f04c5f57-edfd-4b07-9cea-e7ea6f1edd6f'),(3543,141,21444,NULL,21082,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','29195efc-55dd-4972-b874-860e37d1acc3'),(3544,141,21445,NULL,21079,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','a4f8cf1f-8c80-44e3-baf2-11a1dca74e65'),(3545,141,21446,NULL,21075,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','19766f16-9faa-4c01-8651-ae83d86bef29'),(3546,141,21447,NULL,21076,1,'2021-07-12 23:15:09','2021-07-12 23:15:09','68d76780-a44c-489c-818b-7078728cf0c2'),(3598,141,21522,NULL,21085,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','6fde984e-afd9-4e8a-8597-b5154c2c5252'),(3599,141,21523,NULL,21084,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','e87d64f7-b660-434f-ad7b-6cb6d2d860ec'),(3600,141,21524,NULL,21082,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','02a57792-7803-43ec-a595-95928a1c0a81'),(3601,141,21525,NULL,21079,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','9c65a78d-4b0c-4e25-9b66-3735c38f3b00'),(3602,141,21526,NULL,21075,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','fcd597f1-00fa-4f89-8546-9a60ddb25c3c'),(3603,141,21527,NULL,21076,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','39e938a8-f13b-4db0-85e6-878267b6da06'),(3617,141,21549,NULL,21085,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','de31cae5-4973-4128-bed2-4109c293b784'),(3618,141,21550,NULL,21084,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','f2bddcb8-798e-4549-9cef-020229c8b353'),(3619,141,21551,NULL,21082,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','e029aecf-fe90-4ec0-b467-428461f04681'),(3620,141,21552,NULL,21079,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','39bf0788-d400-4203-9bcc-604b94902a7c'),(3621,141,21553,NULL,21075,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','eabf69f4-ff5c-4851-9cee-523c8a75a5c9'),(3622,141,21554,NULL,21076,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','abe5d360-0f8f-43ae-923d-ee40c538a17a'),(3636,141,21576,NULL,21085,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','98835d2d-dc8c-4971-ad6c-da28b7b058db'),(3637,141,21577,NULL,21084,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','e32b70c6-0641-49a8-a664-72c14c05426b'),(3638,141,21578,NULL,21082,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','9cb8f323-e424-4539-8a14-a012a1785805'),(3639,141,21579,NULL,21079,1,'2021-07-12 23:46:01','2021-07-12 23:46:01','7c1c2424-d3ac-4751-91a1-bb7162abcfdb'),(3640,141,21580,NULL,21075,1,'2021-07-12 23:46:01','2021-07-12 23:46:01','c0d6b08c-fb1c-45d2-a720-fca926968fe1'),(3641,141,21581,NULL,21076,1,'2021-07-12 23:46:01','2021-07-12 23:46:01','44f8ef4e-962f-4438-ad3a-356177020544'),(3655,141,21603,NULL,21085,1,'2021-07-12 23:48:23','2021-07-12 23:48:23','b67af05a-68b7-4a84-87d1-5aaa1c5fcd8f'),(3656,141,21604,NULL,21084,1,'2021-07-12 23:48:24','2021-07-12 23:48:24','b8dc177f-6d9f-4ce8-848e-03068adae0b7'),(3657,141,21605,NULL,21082,1,'2021-07-12 23:48:24','2021-07-12 23:48:24','6f1f7972-a9f9-4ec9-9815-30bac8605ba8'),(3658,141,21606,NULL,21079,1,'2021-07-12 23:48:24','2021-07-12 23:48:24','1fc1b48c-3bdc-4724-81e4-1334389946d3'),(3659,141,21607,NULL,21075,1,'2021-07-12 23:48:24','2021-07-12 23:48:24','ebe20691-8ded-4763-9eb1-28ca57983f80'),(3660,141,21608,NULL,21076,1,'2021-07-12 23:48:24','2021-07-12 23:48:24','5b81e71d-33ba-42cd-add1-8e026f219ef4'),(3674,141,21630,NULL,21085,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','1f5e7b7c-2ea6-45c3-b825-aa540fa2d4d0'),(3675,141,21631,NULL,21084,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','a575c5b0-9dad-4550-ad23-75d9ee4e68d0'),(3676,141,21632,NULL,21082,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','22e8fffc-6c4e-44ba-8cbc-fa89702ef036'),(3677,141,21633,NULL,21079,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','244b12f9-b519-4618-8f49-23669c357040'),(3678,141,21634,NULL,21075,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','b86b5df0-4d4b-4258-89bb-4da3a60811ce'),(3679,141,21635,NULL,21076,1,'2021-07-12 23:49:00','2021-07-12 23:49:00','fd8fe7d8-0bca-4d92-b9b6-7c1d3e3f80cf'),(3693,141,21657,NULL,21085,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','c513a792-e903-47a9-961b-521f4493d771'),(3694,141,21658,NULL,21084,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','a45b3e79-adbe-45f3-bf0f-6733578c6f4a'),(3695,141,21659,NULL,21082,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','a61acae0-4d61-48b2-bc26-7139633dc798'),(3696,141,21660,NULL,21079,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','b8a4f7cf-ed63-406d-9632-f3fc2904a7ab'),(3697,141,21661,NULL,21075,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','41d05e38-c16f-4a7c-96b9-c8dad763c02b'),(3698,141,21662,NULL,21076,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','42661644-c662-4b9b-82de-08b48229a693'),(3712,141,21684,NULL,21085,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','e6b1f9c1-7aaf-4890-92e3-11c1e9eb7e51'),(3713,141,21685,NULL,21084,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','2bc55fee-444e-428a-9b32-f4420106c051'),(3714,141,21686,NULL,21082,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','db4ccf81-f6eb-40da-ae59-7ab984bbefca'),(3715,141,21687,NULL,21079,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','b3af4c2c-da49-4240-98f8-985679d2d25c'),(3716,141,21688,NULL,21075,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','4bc1b44b-766d-49e3-85d2-882fcbe8b82d'),(3717,141,21689,NULL,21076,1,'2021-07-12 23:56:19','2021-07-12 23:56:19','4ed728de-ea51-4d9c-a2e7-39468c73319a'),(3731,141,21711,NULL,21085,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','6daafc53-57e4-4466-8951-92744715a520'),(3732,141,21712,NULL,21084,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','c646f91a-0122-47ec-a02e-4df088a78bcf'),(3733,141,21713,NULL,21082,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','f35f614d-fe15-4a2f-9cff-291be379c8ed'),(3734,141,21714,NULL,21079,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','21f9cf2c-c9a3-4025-b9cf-9f73dab23a37'),(3735,141,21715,NULL,21075,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','fb58dedf-d46d-4716-8d24-08229a20bf5f'),(3736,141,21716,NULL,21076,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','4f0178cc-8590-4128-82c4-b69ac7249bbb'),(3750,141,21738,NULL,21085,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','e4d2f050-5185-4d7b-adee-a14bec2cb032'),(3751,141,21739,NULL,21084,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','1ed64e20-fd53-4cc3-b677-b54ff7719fc2'),(3752,141,21740,NULL,21082,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','1c0ee9ce-8355-4b2d-87db-000ad765ead2'),(3753,141,21741,NULL,21079,1,'2021-07-12 23:58:24','2021-07-12 23:58:24','35c489e3-ff3c-4034-8f66-f837626a19cf'),(3754,141,21742,NULL,21075,1,'2021-07-12 23:58:24','2021-07-12 23:58:24','3638c7a3-14ec-4b00-a4ed-085548be9242'),(3755,141,21743,NULL,21076,1,'2021-07-12 23:58:24','2021-07-12 23:58:24','08c8111b-e01f-4ee0-a4ec-ca80f3751873'),(3775,132,21779,NULL,17956,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','9669a46b-61ab-43af-91c6-45feebd913e6'),(3776,132,21779,NULL,17954,2,'2021-07-13 00:07:17','2021-07-13 00:07:17','1067f68a-e482-43f4-b1ff-5307a89be40e'),(3777,132,21779,NULL,17893,3,'2021-07-13 00:07:17','2021-07-13 00:07:17','8d7dad00-bad8-4a0e-844b-3d3d2b4fcc39'),(3778,132,21779,NULL,17875,4,'2021-07-13 00:07:17','2021-07-13 00:07:17','69fb4328-d9fa-42b3-b4c7-e43f994ec025'),(3779,132,21779,NULL,17996,5,'2021-07-13 00:07:17','2021-07-13 00:07:17','9323fce2-19f3-4b11-b128-011af5c98348'),(3780,132,21779,NULL,17899,6,'2021-07-13 00:07:17','2021-07-13 00:07:17','a3e6c6b5-5051-477c-9a0b-31a41682f9bf'),(3781,132,21779,NULL,17881,7,'2021-07-13 00:07:17','2021-07-13 00:07:17','0e3f9925-e63f-4800-8829-e078cd97d5b3'),(3784,132,21779,NULL,17934,10,'2021-07-13 00:07:17','2021-07-13 00:07:17','b633e085-65a6-415b-bc79-ca1ac4318744'),(3785,132,21779,NULL,1,11,'2021-07-13 00:07:17','2021-07-13 00:07:17','3da1ec5a-ea2f-458b-acf3-fd6c8ef37e58'),(3786,132,21779,NULL,17887,12,'2021-07-13 00:07:17','2021-07-13 00:07:17','8367387a-c1a7-4beb-9e48-125d1ac61268'),(3787,132,21779,NULL,17941,13,'2021-07-13 00:07:17','2021-07-13 00:07:17','10b1584b-c855-46fc-b15c-668df9554c4a'),(3788,141,21791,NULL,21085,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','36e023f6-945c-474a-9510-de026e68e108'),(3789,141,21792,NULL,21084,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','94befb5e-da87-4dba-8089-bcac25a08b9a'),(3790,141,21793,NULL,21082,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','e283a767-05d5-439c-a0c4-1943bf679394'),(3791,141,21794,NULL,21079,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','04d35f01-aaed-46fe-991b-1c01a38d7572'),(3792,141,21795,NULL,21075,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','ea123be9-5e83-4f3d-9c6a-2d0cbe611fd1'),(3793,141,21796,NULL,21076,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','b5fb448b-f9b2-4895-aac4-134d3f8f4cf8'),(3807,141,21818,NULL,21085,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','052aad35-8317-4d44-9b39-405c89d3b238'),(3808,141,21819,NULL,21084,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','d652b173-6d09-4ee5-a0d3-17d42597e727'),(3809,141,21820,NULL,21082,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','0eb83cb1-2f81-4b92-a522-1e339ac0b957'),(3810,141,21821,NULL,21079,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','3478ad61-48e5-4376-a15a-2a2b81297111'),(3811,141,21822,NULL,21075,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','a95e0aeb-4251-42c2-9865-2af8345db5b5'),(3812,141,21823,NULL,21076,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','fbd09f25-b567-4a49-95eb-5975ef33a801'),(3845,141,21872,NULL,21085,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','f39c23e5-fd80-4790-91ae-5734da2e3a0c'),(3846,141,21873,NULL,21084,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','8273f2c6-7299-4510-9df6-549a6ad3d586'),(3847,141,21874,NULL,21082,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','3fb58463-f588-444b-9899-b943ed1e86f7'),(3848,141,21875,NULL,21079,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','94e3305b-10b2-457b-83f0-99978f5cc9fe'),(3849,141,21876,NULL,21075,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','798f5280-711c-4fa7-a171-ee01bc7fdd77'),(3850,141,21877,NULL,21076,1,'2021-07-13 00:12:33','2021-07-13 00:12:33','019be7f1-0ad1-4c00-937c-c973648a1ec7'),(3868,79,21936,NULL,17875,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','c9464bcf-4a19-4d81-9a61-9b20a9f4d094'),(3870,79,21936,NULL,1,3,'2021-07-16 01:16:05','2021-07-16 01:16:05','14ad3759-7e0f-4c82-8879-08fa0954fe11'),(3871,79,21936,NULL,17954,4,'2021-07-16 01:16:05','2021-07-16 01:16:05','1150d0bf-ef05-4723-9800-2a0dde8803dc'),(3872,69,21936,NULL,16693,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','93a23dbd-7851-4ca2-a794-463822411956'),(3873,70,21936,NULL,16795,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','ed8cf8f7-8f28-4c7c-89c2-b88e9d79c76d'),(3874,64,21937,NULL,16629,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','a3533a2d-d61e-4a01-8908-e5e7b22b1b1a'),(3875,64,21938,NULL,16630,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','3faaeaed-5b83-4de8-8cb8-cbf3eb04303a'),(3876,64,21940,NULL,16648,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','e657ddc4-ba3b-494b-879e-57d0b4e3d04d'),(3877,64,21941,NULL,16665,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','10d90c31-f326-4b72-8ddc-b53ee1ddbd03'),(3878,64,21942,NULL,16669,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','49ca2570-a21b-4b26-8197-043615adbbe9'),(3879,64,21943,NULL,16675,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','acb948a8-625a-4529-abb3-072e411adf45'),(3880,64,21944,NULL,16683,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','930b060b-3d32-40c9-aeb7-0cafe2bbbc58'),(3881,64,21945,NULL,16693,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','1f13dedd-2650-425e-aea2-4a80f0d62d19'),(3882,64,21946,NULL,16705,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','a78cf06f-8fbb-4ef1-83e6-96425238726c'),(3883,64,21947,NULL,16719,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','c43afbe9-bb22-4be5-a7af-e7b699f0b22d'),(3884,64,21948,NULL,16735,1,'2021-07-16 01:16:05','2021-07-16 01:16:05','b6f7a119-cb69-42f3-8158-93a0ed67bff4'),(3909,69,21960,NULL,16824,1,'2021-07-16 01:17:55','2021-07-16 01:17:55','f1a31d58-c872-4f03-81e9-a7e0202db83a'),(3910,70,21960,NULL,16834,1,'2021-07-16 01:17:55','2021-07-16 01:17:55','56e387af-ec9b-4502-a565-c99c38a0b3f2'),(3911,90,21960,NULL,18033,1,'2021-07-16 01:17:55','2021-07-16 01:17:55','78c241df-82cc-4242-a74d-1ff48544cdc2'),(3912,90,21960,NULL,18040,2,'2021-07-16 01:17:55','2021-07-16 01:17:55','21048d4b-8b27-4d8a-8b8c-d7254bf0dc83'),(3913,90,21960,NULL,18041,3,'2021-07-16 01:17:55','2021-07-16 01:17:55','a1abcc7a-39e8-4de5-ae53-ede5564eb2c1'),(3914,90,21960,NULL,18042,4,'2021-07-16 01:17:55','2021-07-16 01:17:55','93b5a5c6-51fa-4299-ac49-5373a3b78714'),(3915,90,21960,NULL,18043,5,'2021-07-16 01:17:55','2021-07-16 01:17:55','1d70391b-c27b-48af-97ed-0a82cabe04e9'),(3916,90,21960,NULL,18044,6,'2021-07-16 01:17:55','2021-07-16 01:17:55','81c211b5-e466-44b1-962f-6e53fa0a2e6f'),(3917,90,21960,NULL,18045,7,'2021-07-16 01:17:55','2021-07-16 01:17:55','014dc52c-62e9-4431-a634-6a39baaeee94'),(3918,90,21960,NULL,18046,8,'2021-07-16 01:17:55','2021-07-16 01:17:55','4168d830-d0c3-48e3-b0af-626402162d06'),(3919,90,21960,NULL,18047,9,'2021-07-16 01:17:55','2021-07-16 01:17:55','58ceb1d1-f632-40c2-a7a4-1e074028a308'),(3920,90,21960,NULL,18048,10,'2021-07-16 01:17:55','2021-07-16 01:17:55','34a37fc7-431c-4b88-86fc-43d54593b1bc'),(3921,90,21960,NULL,18049,11,'2021-07-16 01:17:55','2021-07-16 01:17:55','e967bfa9-9a47-4704-b4fa-4d53b053ae3c'),(3922,90,21960,NULL,18050,12,'2021-07-16 01:17:55','2021-07-16 01:17:55','1e656e92-4614-47ca-94a1-bf0b8aac564b'),(3923,85,21960,NULL,17966,1,'2021-07-16 01:17:55','2021-07-16 01:17:55','e6838d9d-bb20-45df-a627-671f28a6936e'),(3924,84,21960,NULL,18057,1,'2021-07-16 01:17:55','2021-07-16 01:17:55','47135270-3620-49fa-8c96-a4fbfc05eeee'),(3925,64,21961,NULL,17780,1,'2021-07-16 01:17:55','2021-07-16 01:17:55','f65d7b46-f00c-44a6-97b5-63e8bda756f2'),(3926,64,21962,NULL,16839,1,'2021-07-16 01:17:55','2021-07-16 01:17:55','802c1402-73ac-407b-ad0d-68b1c1c802d2'),(3927,64,21964,NULL,17784,1,'2021-07-16 01:17:55','2021-07-16 01:17:55','441318dd-e32c-4382-8e0d-01c5543c5ca6'),(3928,64,21965,NULL,16838,1,'2021-07-16 01:17:55','2021-07-16 01:17:55','c58c87cd-b810-483f-8453-e9b366c6898f'),(3929,64,21966,NULL,16840,1,'2021-07-16 01:17:55','2021-07-16 01:17:55','3247247a-83b7-4fcb-a872-41f124804591'),(3947,69,21973,NULL,18584,1,'2021-07-16 01:36:04','2021-07-16 01:36:04','b1775ab5-e1df-4797-8f68-02eb1ab49c41'),(3948,70,21973,NULL,17857,1,'2021-07-16 01:36:04','2021-07-16 01:36:04','c4e608a3-3f28-4f7f-bc9d-c9a8a1d155dd'),(3949,90,21973,NULL,18114,1,'2021-07-16 01:36:04','2021-07-16 01:36:04','300b752e-e60d-449b-a809-3fc1dcabdb17'),(3950,90,21973,NULL,18116,2,'2021-07-16 01:36:04','2021-07-16 01:36:04','8c1639a1-22f0-4877-aabc-329683c2fd7c'),(3951,90,21973,NULL,18040,3,'2021-07-16 01:36:04','2021-07-16 01:36:04','c61bae82-2877-4fa3-b061-b0838511ed4e'),(3952,90,21973,NULL,18118,4,'2021-07-16 01:36:04','2021-07-16 01:36:04','69ae7ea1-7d92-482b-9aad-5a9ca232bbc1'),(3953,90,21973,NULL,18117,5,'2021-07-16 01:36:04','2021-07-16 01:36:04','38b7789a-6d4e-4c33-9323-b5ebaa9f100a'),(3954,90,21973,NULL,18105,6,'2021-07-16 01:36:04','2021-07-16 01:36:04','38793714-436b-48bc-8882-00b55b50403d'),(3955,90,21973,NULL,18120,7,'2021-07-16 01:36:04','2021-07-16 01:36:04','77e8431c-6e6e-4a2a-b6e6-24b01ef67150'),(3956,90,21973,NULL,18121,8,'2021-07-16 01:36:04','2021-07-16 01:36:04','2b9c0083-42d1-43e5-8ab7-98a879c76ef1'),(3957,90,21973,NULL,18125,9,'2021-07-16 01:36:04','2021-07-16 01:36:04','e74d54aa-1fc8-43b2-8666-36e0d9850f2f'),(3958,90,21973,NULL,18043,10,'2021-07-16 01:36:04','2021-07-16 01:36:04','5c53b49c-0052-45f8-b93a-66cb8c3d79a9'),(3959,90,21973,NULL,18046,11,'2021-07-16 01:36:04','2021-07-16 01:36:04','7f7dcfa2-3466-4dc8-b2e4-d6cd657ff786'),(3960,64,21974,NULL,18584,1,'2021-07-16 01:36:04','2021-07-16 01:36:04','3409c78a-9064-43cb-a513-6c25daf97d90'),(3961,64,21976,NULL,18597,1,'2021-07-16 01:36:04','2021-07-16 01:36:04','cd167d4c-a8eb-4ced-b031-94c7e6467d4f'),(3962,64,21977,NULL,18598,1,'2021-07-16 01:36:04','2021-07-16 01:36:04','dd35ba07-40c7-44b9-a171-c429964e267f'),(3963,64,21978,NULL,18599,1,'2021-07-16 01:36:04','2021-07-16 01:36:04','aa8559c3-6a88-4dd1-8c78-9464940b95f5'),(3986,85,18139,NULL,17970,4,'2021-07-16 01:41:34','2021-09-03 00:54:26','7b9ad2ea-c177-4e1e-bb76-93aeccc97a78'),(3987,84,18139,NULL,18057,1,'2021-07-16 01:41:34','2021-07-16 01:41:34','7b114a70-bb44-4964-9a82-22a5c23eb1e6'),(3990,69,22006,NULL,21979,1,'2021-07-16 01:41:34','2021-07-16 01:41:34','5e4d32ff-0a47-4974-a0b4-af336dcfb255'),(3991,70,22006,NULL,17857,1,'2021-07-16 01:41:34','2021-07-16 01:41:34','5af74fe1-140f-44ef-b643-d97a5cd07017'),(3992,90,22006,NULL,18129,1,'2021-07-16 01:41:34','2021-07-16 01:41:34','8161346a-8436-4cec-be6e-97b950327e25'),(3993,90,22006,NULL,18130,2,'2021-07-16 01:41:34','2021-07-16 01:41:34','0b3c6ebc-d47d-478b-8725-4c0bbaf2d970'),(3994,90,22006,NULL,18131,3,'2021-07-16 01:41:34','2021-07-16 01:41:34','f04922bb-0c88-45eb-9919-06754a22e27d'),(3995,90,22006,NULL,18132,4,'2021-07-16 01:41:34','2021-07-16 01:41:34','2368113b-c35d-429e-8e6e-d986b82d4f3c'),(3996,90,22006,NULL,18133,5,'2021-07-16 01:41:34','2021-07-16 01:41:34','6de05aec-908c-4266-bc3a-95daf1a65e5c'),(3997,90,22006,NULL,18134,6,'2021-07-16 01:41:34','2021-07-16 01:41:34','6cf00d72-2b09-4e0f-9e3f-f19d2b9a3b01'),(3998,90,22006,NULL,18135,7,'2021-07-16 01:41:34','2021-07-16 01:41:34','66aca957-9d43-4912-a78d-2755851a6e95'),(3999,85,22006,NULL,17970,1,'2021-07-16 01:41:34','2021-07-16 01:41:34','e1cc27b5-726b-4d95-8476-60d9a7f202e0'),(4000,84,22006,NULL,18057,1,'2021-07-16 01:41:34','2021-07-16 01:41:34','ca8faa8b-2505-4dff-b3c2-73c1f8b93e64'),(4001,64,22007,NULL,21979,1,'2021-07-16 01:41:34','2021-07-16 01:41:34','619bb9fe-47fb-4a79-b387-2ec8bf3892cc'),(4002,64,22009,NULL,21999,1,'2021-07-16 01:41:34','2021-07-16 01:41:34','acbf106c-7ced-48da-a32e-0ccb2c4cfbc5'),(4026,69,18142,NULL,22011,1,'2021-07-16 01:49:52','2021-07-16 01:49:52','c74f9ce1-f8d6-4768-95c1-4eac3d1c528b'),(4027,85,18142,NULL,17966,2,'2021-07-16 01:49:52','2021-08-26 23:22:04','45b0ee72-c8e7-42fb-af4d-f69ad48135b0'),(4028,84,18142,NULL,18057,1,'2021-07-16 01:49:52','2021-07-16 01:49:52','17bc9d0d-0d52-4a50-b02b-736e3ba22185'),(4032,69,22041,NULL,22011,1,'2021-07-16 01:49:52','2021-07-16 01:49:52','72eabbe0-ff56-4209-8b08-6fac2b25d2a8'),(4033,70,22041,NULL,17862,1,'2021-07-16 01:49:52','2021-07-16 01:49:52','47c1f076-0d32-46c6-b285-17491bd450a1'),(4034,90,22041,NULL,18114,1,'2021-07-16 01:49:52','2021-07-16 01:49:52','d54ed3ac-5432-4318-acc6-8a3595afa3d6'),(4035,90,22041,NULL,18115,2,'2021-07-16 01:49:52','2021-07-16 01:49:52','9800bf96-c2e2-4c4a-aa6b-f2d15070126f'),(4036,90,22041,NULL,18040,3,'2021-07-16 01:49:52','2021-07-16 01:49:52','c42d7b53-9d3d-44ba-b016-c9ee52cd1c6b'),(4037,90,22041,NULL,18042,4,'2021-07-16 01:49:52','2021-07-16 01:49:52','eca977e5-54cb-4651-b453-c9217e594260'),(4038,90,22041,NULL,18041,5,'2021-07-16 01:49:52','2021-07-16 01:49:52','4cf2aa43-cb1f-4265-ad73-5ffd69353262'),(4039,90,22041,NULL,18105,6,'2021-07-16 01:49:52','2021-07-16 01:49:52','6e9e265c-8e6e-43a3-9bec-92d11a70e2fe'),(4040,90,22041,NULL,18120,7,'2021-07-16 01:49:52','2021-07-16 01:49:52','57f3ad4c-c5ac-4922-9d63-67542d1376be'),(4041,85,22041,NULL,17966,1,'2021-07-16 01:49:52','2021-07-16 01:49:52','e8ce2b12-65db-485c-9772-dcb97f7a2525'),(4042,84,22041,NULL,18057,1,'2021-07-16 01:49:52','2021-07-16 01:49:52','c0bd5ce0-58b5-40aa-bf50-5c4acfa411a6'),(4043,64,22042,NULL,22011,1,'2021-07-16 01:49:52','2021-07-16 01:49:52','a9ba45c7-e112-44ad-a0f5-7cc9132d00eb'),(4044,64,22044,NULL,22010,1,'2021-07-16 01:49:52','2021-07-16 01:49:52','c504cb87-2eaf-41a7-8f2e-69f24d218eef'),(4045,64,22045,NULL,22012,1,'2021-07-16 01:49:52','2021-07-16 01:49:52','7fdcb77e-8e7d-4ef8-a014-eac06afc3e4f'),(4060,69,22051,NULL,22011,1,'2021-07-16 01:50:07','2021-07-16 01:50:07','76afda71-35e3-4a55-ad96-10d2dd0ad7c7'),(4061,70,22051,NULL,17862,1,'2021-07-16 01:50:07','2021-07-16 01:50:07','a4745ae4-0dbe-41fc-83a8-255c7197bb12'),(4062,90,22051,NULL,18114,1,'2021-07-16 01:50:07','2021-07-16 01:50:07','6b38d57b-ef1f-4139-a62d-16ec6d5d7664'),(4063,90,22051,NULL,18115,2,'2021-07-16 01:50:07','2021-07-16 01:50:07','80a46d29-a7c6-4844-b4c4-ed0168879056'),(4064,90,22051,NULL,18040,3,'2021-07-16 01:50:07','2021-07-16 01:50:07','1c86a0ac-50ae-4b7f-b174-ce3bab9ebec3'),(4065,90,22051,NULL,18042,4,'2021-07-16 01:50:07','2021-07-16 01:50:07','c784985e-5d27-4e46-ab00-f831359df841'),(4066,90,22051,NULL,18041,5,'2021-07-16 01:50:07','2021-07-16 01:50:07','49338b37-1542-4134-a85a-af031781144c'),(4067,90,22051,NULL,18105,6,'2021-07-16 01:50:07','2021-07-16 01:50:07','5eff8731-be32-492e-84fe-745d495e861c'),(4068,90,22051,NULL,18120,7,'2021-07-16 01:50:07','2021-07-16 01:50:07','f7437411-f796-469e-9a3e-3b79cb7b743a'),(4069,85,22051,NULL,17966,1,'2021-07-16 01:50:07','2021-07-16 01:50:07','f2af4149-d9d9-46d9-8849-65923442d49e'),(4070,84,22051,NULL,18057,1,'2021-07-16 01:50:07','2021-07-16 01:50:07','524a0407-290d-4e1d-a0e8-154d610d4f38'),(4071,64,22052,NULL,22011,1,'2021-07-16 01:50:07','2021-07-16 01:50:07','9f4024df-676d-46cc-ad8e-d1a897dba1df'),(4072,64,22054,NULL,22010,1,'2021-07-16 01:50:07','2021-07-16 01:50:07','2d52fb3e-0a6e-4f07-888b-16d3abd885b0'),(4073,64,22055,NULL,22012,1,'2021-07-16 01:50:07','2021-07-16 01:50:07','21e75d86-bae8-4484-a79e-d42e484f7db7'),(4087,69,22060,NULL,21979,1,'2021-07-16 01:50:19','2021-07-16 01:50:19','45c76728-0c9f-4852-884f-13cef23490e9'),(4088,70,22060,NULL,17857,1,'2021-07-16 01:50:19','2021-07-16 01:50:19','420d72a3-0290-4730-a74d-889a6b659274'),(4089,90,22060,NULL,18129,1,'2021-07-16 01:50:19','2021-07-16 01:50:19','8464f618-8a6b-4b53-ba04-6bcec8dd6e0a'),(4090,90,22060,NULL,18130,2,'2021-07-16 01:50:19','2021-07-16 01:50:19','a4256a1f-13f2-45f5-9566-97836b954039'),(4091,90,22060,NULL,18131,3,'2021-07-16 01:50:19','2021-07-16 01:50:19','b961538c-b91a-4efe-a39d-f7a44274c83d'),(4092,90,22060,NULL,18132,4,'2021-07-16 01:50:19','2021-07-16 01:50:19','56af171d-3f83-4e39-a2e3-44ec4a346a16'),(4093,90,22060,NULL,18133,5,'2021-07-16 01:50:19','2021-07-16 01:50:19','7faa6fff-05fa-4ca2-81e3-166827b384a5'),(4094,90,22060,NULL,18134,6,'2021-07-16 01:50:19','2021-07-16 01:50:19','76ed12fd-f53b-410e-a9d0-8f7ef4135ade'),(4095,90,22060,NULL,18135,7,'2021-07-16 01:50:19','2021-07-16 01:50:19','ec91bb06-1538-41e4-894e-1b0d06805c1a'),(4096,85,22060,NULL,17970,1,'2021-07-16 01:50:19','2021-07-16 01:50:19','ea329862-5959-4068-a152-4b6fbcb34fd3'),(4097,84,22060,NULL,18057,1,'2021-07-16 01:50:19','2021-07-16 01:50:19','4800aee3-656b-4211-b997-16744e0e8a7c'),(4098,64,22061,NULL,21979,1,'2021-07-16 01:50:19','2021-07-16 01:50:19','a94e9c07-28a2-4bd9-87c9-d8b2c58ed489'),(4099,64,22063,NULL,21999,1,'2021-07-16 01:50:19','2021-07-16 01:50:19','fb18f8d2-ddc2-4b77-9de3-d6b04d56ed65'),(4134,69,22099,NULL,22084,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','683db972-af46-4e26-be1f-a55921c65a1d'),(4135,70,22099,NULL,17868,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','acde50fb-f6a4-4160-895b-a082530da4b9'),(4136,90,22099,NULL,18149,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','91423b72-20f9-4150-87e8-c0895b95c1e4'),(4137,90,22099,NULL,18150,2,'2021-07-16 01:57:58','2021-07-16 01:57:58','01b4ed32-9a72-4a1f-9677-147d3f89fa4a'),(4138,90,22099,NULL,18105,3,'2021-07-16 01:57:58','2021-07-16 01:57:58','ab1c356e-46a4-471a-84ea-03098f57048c'),(4139,90,22099,NULL,18151,4,'2021-07-16 01:57:58','2021-07-16 01:57:58','583744fc-abb1-4bf7-9ed0-2ef6cafa1512'),(4140,90,22099,NULL,18152,5,'2021-07-16 01:57:58','2021-07-16 01:57:58','8aed0e78-e5f5-4ddb-9087-6336232834a3'),(4141,90,22099,NULL,18153,6,'2021-07-16 01:57:58','2021-07-16 01:57:58','eeeec67a-68a3-4fd4-a0ec-da021373938f'),(4142,90,22099,NULL,18154,7,'2021-07-16 01:57:58','2021-07-16 01:57:58','fff2bfd4-17b8-4dff-ab61-5b5569b9855d'),(4143,90,22099,NULL,18155,8,'2021-07-16 01:57:58','2021-07-16 01:57:58','2508a9dd-a215-401e-b0d6-941ea13726a8'),(4144,93,22101,NULL,22084,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','dc158692-378a-4645-a5b7-aa15d7e0bdd3'),(4145,64,22103,NULL,22083,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','be367e56-a335-4951-921a-215706641d17'),(4146,64,22104,NULL,22085,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','3a52a0d1-bd1a-4afe-adf6-a0e3bcc10d1e'),(4147,64,22105,NULL,18640,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','2964186f-3ca8-4ad3-92fd-9dcd31130194'),(4148,64,22106,NULL,18641,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','cbba78c3-3c8b-4f47-8c1f-00d9e8380e63'),(4149,64,22107,NULL,18642,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','480296f2-99a2-465d-b768-869e8c6dfee0'),(4150,64,22108,NULL,18643,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','84f66e7d-c402-4a8a-bcd4-c54133b40457'),(4151,64,22109,NULL,18644,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','0462d1a7-3b93-4785-bef0-20892ad4b867'),(4152,64,22110,NULL,18645,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','41f2bce2-b644-4e9c-a480-c7336e415da8'),(4153,64,22111,NULL,18646,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','d2504250-4668-4f48-aa87-e25b860d6fbf'),(4154,64,22112,NULL,18647,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','6d1b0f14-7aaf-4f64-a234-c9992f0ef6b1'),(4155,64,22113,NULL,18648,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','e62b66b6-f3b0-4343-9625-e52a62383722'),(4156,64,22114,NULL,18649,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','99908776-ef98-4628-a692-e3dbaa3e7166'),(4157,64,22115,NULL,18650,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','c14efb84-5c2e-4b21-9c03-3588b7e32450'),(4158,64,22116,NULL,18651,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','42d4088a-a93a-4cdb-9d1d-4a3b1b6995f9'),(4159,64,22117,NULL,18652,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','0b9eef13-f026-4ee4-b609-ae4efa369841'),(4188,69,22139,NULL,22084,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','9b2c21a4-e1e7-4883-a437-e6334f824ab1'),(4189,70,22139,NULL,17868,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','4a464ff9-a076-4e5b-a5be-699c8e503772'),(4190,90,22139,NULL,18149,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','fa2369ea-2962-4ffb-8965-fa7fa9640082'),(4191,90,22139,NULL,18150,2,'2021-07-16 01:58:24','2021-07-16 01:58:24','cbb7b3e5-9c28-4d0d-b48f-68a8fead709f'),(4192,90,22139,NULL,18105,3,'2021-07-16 01:58:24','2021-07-16 01:58:24','4764a15b-34be-420e-b549-cf7bb80c1919'),(4193,90,22139,NULL,18151,4,'2021-07-16 01:58:24','2021-07-16 01:58:24','53a1069b-7a2c-4df5-b3d3-c4a3f950a9a3'),(4194,90,22139,NULL,18152,5,'2021-07-16 01:58:24','2021-07-16 01:58:24','6b55f19e-f33c-4c4a-a85c-99df4e323572'),(4195,90,22139,NULL,18153,6,'2021-07-16 01:58:24','2021-07-16 01:58:24','4c22605a-d792-4ad6-b1d4-2e546ea3b10a'),(4196,90,22139,NULL,18154,7,'2021-07-16 01:58:24','2021-07-16 01:58:24','1439d046-9fd6-4527-9550-9a6c63a03e5e'),(4197,90,22139,NULL,18155,8,'2021-07-16 01:58:24','2021-07-16 01:58:24','99767295-0d11-4f8c-b286-cb657f9b50e4'),(4198,93,22141,NULL,22084,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','58d6ca6b-6e51-4ee8-80ac-5bf2f3aa5689'),(4199,64,22143,NULL,22083,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','12eeeb81-fff6-4e96-a4a1-0c50337b075e'),(4200,64,22144,NULL,22085,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','fee707b8-1694-49fd-ae25-48a0bcf279d5'),(4201,64,22145,NULL,18640,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','4872e0e6-fea0-44d3-8a20-30b509e60e1e'),(4202,64,22146,NULL,18641,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','b8ce3c43-99b2-4386-aeab-ec5ab2655c38'),(4203,64,22147,NULL,18642,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','0cea0eb9-c106-4b67-9a23-5fe6b456ed3e'),(4204,64,22148,NULL,18643,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','09ef5dd3-af2a-4292-bce0-c441462d4587'),(4205,64,22149,NULL,18644,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','82f1b593-df9c-4109-b384-e86ab7d47591'),(4206,64,22150,NULL,18645,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','cc2a1419-ee3c-49b5-a2a3-c12d61111927'),(4207,64,22151,NULL,18646,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','91c2327a-8a07-4e3c-a2fe-00111663e96e'),(4208,64,22152,NULL,18647,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','e71bf1b3-7a3e-4c11-ae8f-dc3b437d0fed'),(4209,64,22153,NULL,18648,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','021cb0e4-9876-44e7-a48e-92145976055f'),(4210,64,22154,NULL,18649,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','785a6945-5f79-4aa4-b3ca-a09f1c7552c0'),(4211,64,22155,NULL,18650,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','13d611d5-41bb-4646-b018-a7ea43b60bf4'),(4212,64,22156,NULL,18651,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','4d1d7d0f-c5d3-40ad-9dc3-fa60a73c54ce'),(4213,64,22157,NULL,18652,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','1f51d0eb-f4b8-491a-bd5d-104b564712ad'),(4241,69,18168,NULL,22160,1,'2021-07-16 03:07:32','2021-07-16 03:07:32','52e241a2-9551-4d50-912a-f38eab37a416'),(4245,69,22195,NULL,22160,1,'2021-07-16 03:07:32','2021-07-16 03:07:32','156f7452-a3da-45c3-a60a-44d9b94f348f'),(4246,70,22195,NULL,17857,1,'2021-07-16 03:07:32','2021-07-16 03:07:32','c464b618-7b9b-46b1-93d3-dbaf8ab26671'),(4247,90,22195,NULL,18040,1,'2021-07-16 03:07:32','2021-07-16 03:07:32','6d26c7fc-90e8-46d9-9dc4-b78c43de8040'),(4248,90,22195,NULL,18167,2,'2021-07-16 03:07:32','2021-07-16 03:07:32','28f25fd3-3725-4f42-822f-5448548d3451'),(4249,90,22195,NULL,18043,3,'2021-07-16 03:07:32','2021-07-16 03:07:32','f9137dcd-fc7e-4710-b021-5d4a9fe620c7'),(4250,90,22195,NULL,18045,4,'2021-07-16 03:07:32','2021-07-16 03:07:32','7bd89400-13b4-4c95-8f43-591ebf5f31fe'),(4251,90,22195,NULL,18046,5,'2021-07-16 03:07:32','2021-07-16 03:07:32','c08d7172-45af-44ca-9d23-281e680d91f3'),(4252,90,22195,NULL,18047,6,'2021-07-16 03:07:32','2021-07-16 03:07:32','aacb5360-d65c-4726-8161-ebe9e88d6981'),(4253,90,22195,NULL,18120,7,'2021-07-16 03:07:32','2021-07-16 03:07:32','2ad878ba-0019-4cb2-b6dc-878a508e60db'),(4254,90,22195,NULL,18121,8,'2021-07-16 03:07:32','2021-07-16 03:07:32','30b8a753-f00d-44b8-8ae5-189306c41f8a'),(4255,90,22195,NULL,18105,9,'2021-07-16 03:07:32','2021-07-16 03:07:32','b832a08d-6800-4a83-9b54-efae910b3f9d'),(4256,64,22196,NULL,22160,1,'2021-07-16 03:07:32','2021-07-16 03:07:32','2f22c399-7709-458b-8a64-b74b6bb194b1'),(4257,64,22198,NULL,22160,1,'2021-07-16 03:07:33','2021-07-16 03:07:33','d7360e22-749c-4831-87cb-e9a5a8bf08dc'),(4258,64,22199,NULL,22158,1,'2021-07-16 03:07:33','2021-07-16 03:07:33','4a2e3120-7396-4dc8-ab81-dde27e609786'),(4273,69,22205,NULL,22160,1,'2021-07-16 03:10:46','2021-07-16 03:10:46','82729f58-2a93-47c3-ad27-012a53146f22'),(4274,70,22205,NULL,17857,1,'2021-07-16 03:10:46','2021-07-16 03:10:46','38eda0e0-8501-4781-91b8-17d7f4066b17'),(4275,90,22205,NULL,18040,1,'2021-07-16 03:10:46','2021-07-16 03:10:46','f6dc79ae-390b-4f95-81b8-4007f8bde464'),(4276,90,22205,NULL,18167,2,'2021-07-16 03:10:46','2021-07-16 03:10:46','2991f5f2-48de-48e5-8613-b3376eeab6a6'),(4277,90,22205,NULL,18043,3,'2021-07-16 03:10:46','2021-07-16 03:10:46','e486025f-8f37-4d62-bf15-d20e1af0fdae'),(4278,90,22205,NULL,18045,4,'2021-07-16 03:10:46','2021-07-16 03:10:46','5a48ce29-ed9f-4a4d-b281-4c6b20a9599f'),(4279,90,22205,NULL,18046,5,'2021-07-16 03:10:46','2021-07-16 03:10:46','324de073-c428-4240-8cb3-d7a6d20ba6d2'),(4280,90,22205,NULL,18047,6,'2021-07-16 03:10:46','2021-07-16 03:10:46','a82b905d-eb0d-4d3b-8986-ffabd7eb09e2'),(4281,90,22205,NULL,18120,7,'2021-07-16 03:10:46','2021-07-16 03:10:46','8fb546d1-a85d-409f-9186-446d0ed3de52'),(4282,90,22205,NULL,18121,8,'2021-07-16 03:10:46','2021-07-16 03:10:46','1ba32d47-7c00-486a-9b9a-dbb50157a4d1'),(4283,90,22205,NULL,18105,9,'2021-07-16 03:10:46','2021-07-16 03:10:46','a0b7f9c6-a1cd-4bc9-a458-bd8ce70d313e'),(4284,64,22206,NULL,22160,1,'2021-07-16 03:10:46','2021-07-16 03:10:46','93cf8ce9-e487-4dff-ba3d-6fcb789c44f0'),(4285,64,22208,NULL,22160,1,'2021-07-16 03:10:46','2021-07-16 03:10:46','d7c68034-7216-426b-b7d7-e6ad51f240fb'),(4286,64,22209,NULL,22158,1,'2021-07-16 03:10:46','2021-07-16 03:10:46','f990b51a-859e-49c3-bf0b-d2d25699d7d2'),(4288,85,22210,NULL,17969,3,'2021-07-16 03:19:07','2021-08-26 23:20:47','04e0a941-da10-492f-a156-18ed55333f0b'),(4311,69,22266,NULL,22211,1,'2021-07-16 03:23:11','2021-07-16 03:23:11','85e308c1-3dab-4f00-b160-780b3a5ea018'),(4312,85,22266,NULL,17969,1,'2021-07-16 03:23:11','2021-07-16 03:23:11','432e8034-1c08-4a39-9bf8-80d9e033361e'),(4313,64,22267,NULL,22211,1,'2021-07-16 03:23:11','2021-07-16 03:23:11','1f87ddbe-a17e-4fa3-98c8-7ccd854191d0'),(4317,69,22279,NULL,22211,1,'2021-07-16 03:53:04','2021-07-16 03:53:04','3eee6259-9313-40ce-b036-f32ad4b1d75d'),(4318,85,22279,NULL,17969,1,'2021-07-16 03:53:04','2021-07-16 03:53:04','d95e4260-ded4-4418-95b3-8fd75853620f'),(4319,64,22280,NULL,22211,1,'2021-07-16 03:53:04','2021-07-16 03:53:04','8c1851a0-1749-4af8-866a-b5dc982978e5'),(4325,69,22296,NULL,22211,1,'2021-07-16 03:55:48','2021-07-16 03:55:48','d59f3a1b-8e38-4b60-8256-f7a3e590c71a'),(4326,85,22296,NULL,17969,1,'2021-07-16 03:55:48','2021-07-16 03:55:48','33e6ebbf-4495-4673-9ed7-69a509771b28'),(4327,64,22297,NULL,22211,1,'2021-07-16 03:55:48','2021-07-16 03:55:48','44bd1594-8d8f-4404-adf0-fad09507baf2'),(4334,69,22311,NULL,22211,1,'2021-07-16 03:57:20','2021-07-16 03:57:20','2b21d177-74ee-4d99-bcbb-a278e1275b8f'),(4335,85,22311,NULL,17969,1,'2021-07-16 03:57:20','2021-07-16 03:57:20','ce7e7ff3-997a-4641-b329-d28f65f72b0f'),(4336,64,22312,NULL,22211,1,'2021-07-16 03:57:20','2021-07-16 03:57:20','53b3bcfa-0b42-4b68-9bae-41639bc183c9'),(4337,93,22315,NULL,22303,1,'2021-07-16 03:57:20','2021-07-16 03:57:20','a16fa996-ecad-41f3-b058-fde6ecfd6189'),(4344,70,22210,NULL,22317,1,'2021-07-16 04:08:00','2021-07-16 04:08:00','66ab70d0-f97d-459e-8a19-7ff6e3041bf8'),(4346,69,22326,NULL,22211,1,'2021-07-16 04:08:00','2021-07-16 04:08:00','1b61c4b9-4106-4a24-b915-6206bb619553'),(4347,70,22326,NULL,22317,1,'2021-07-16 04:08:00','2021-07-16 04:08:00','6223b261-08d6-45bf-8d08-6e19db13cc24'),(4348,85,22326,NULL,17969,1,'2021-07-16 04:08:00','2021-07-16 04:08:00','0af794bf-59d2-4ea5-abee-31d43d99b645'),(4349,64,22327,NULL,22211,1,'2021-07-16 04:08:00','2021-07-16 04:08:00','c2752985-f81f-4012-9307-c12a48214d9c'),(4350,93,22330,NULL,22303,1,'2021-07-16 04:08:00','2021-07-16 04:08:00','da98b236-7d80-49ac-9b72-399421b7f9f6'),(4351,69,22332,NULL,22211,1,'2021-07-16 04:09:55','2021-07-16 04:09:55','8e6a9127-0596-4c3f-bc7c-af47de7e5efc'),(4352,70,22332,NULL,22317,1,'2021-07-16 04:09:55','2021-07-16 04:09:55','d01b92a5-5498-4e96-b4cf-b32788b3ca69'),(4353,85,22332,NULL,17969,1,'2021-07-16 04:09:55','2021-07-16 04:09:55','c30a6596-3319-4560-a2ff-4b2ffb754817'),(4354,64,22333,NULL,22211,1,'2021-07-16 04:09:55','2021-07-16 04:09:55','b181aef9-4ec3-4420-a50e-bd1e2b3fb332'),(4355,93,22336,NULL,22303,1,'2021-07-16 04:09:55','2021-07-16 04:09:55','3cf536d9-dd32-487a-91ed-cf92b24d006b'),(4361,69,22375,NULL,22211,1,'2021-07-16 04:25:30','2021-07-16 04:25:30','6a402437-4531-484e-8a93-53ce37474f08'),(4362,70,22375,NULL,22317,1,'2021-07-16 04:25:30','2021-07-16 04:25:30','d5051af9-e304-412f-b9ea-a2a857142bba'),(4363,85,22375,NULL,17969,1,'2021-07-16 04:25:30','2021-07-16 04:25:30','465ffdde-2e03-4753-9f6c-49753187d712'),(4364,64,22376,NULL,22211,1,'2021-07-16 04:25:30','2021-07-16 04:25:30','c82749c8-c78f-4c58-9ef8-9b289140b096'),(4369,69,22398,NULL,22211,1,'2021-07-16 05:01:46','2021-07-16 05:01:46','fd6d7fed-b2af-4996-b38a-932811dacd59'),(4370,70,22398,NULL,22317,1,'2021-07-16 05:01:46','2021-07-16 05:01:46','1a8f7b14-2d86-49c8-a081-73959435e4ff'),(4371,85,22398,NULL,17969,1,'2021-07-16 05:01:46','2021-07-16 05:01:46','9a738acf-1808-42fe-bef8-6b2965d70b55'),(4372,64,22399,NULL,22211,1,'2021-07-16 05:01:46','2021-07-16 05:01:46','035ad9bc-7acf-4c23-a999-270ce2592c6e'),(4377,69,22420,NULL,22211,1,'2021-07-16 05:27:15','2021-07-16 05:27:15','4767f8c2-5468-40e5-a735-22d308c4688f'),(4378,70,22420,NULL,22317,1,'2021-07-16 05:27:15','2021-07-16 05:27:15','af7e19ef-7663-4020-a339-8736005e737d'),(4379,85,22420,NULL,17969,1,'2021-07-16 05:27:15','2021-07-16 05:27:15','6e922818-f356-4cb5-8add-1ad3b6138d66'),(4380,64,22421,NULL,22211,1,'2021-07-16 05:27:15','2021-07-16 05:27:15','e62e7045-6015-467d-9011-431d5ffa2f1b'),(4385,69,22440,NULL,22211,1,'2021-07-16 05:33:06','2021-07-16 05:33:06','691d5ae0-dfa4-4252-b4a1-99731e4420ec'),(4386,70,22440,NULL,22317,1,'2021-07-16 05:33:06','2021-07-16 05:33:06','65d19eed-60c2-4ab7-877e-d2d07a2f1530'),(4387,85,22440,NULL,17969,1,'2021-07-16 05:33:06','2021-07-16 05:33:06','9ae25b05-598f-4b56-a867-7a0329c907a3'),(4391,69,22442,NULL,22211,1,'2021-07-16 05:37:58','2021-07-16 05:37:58','7c2bd4f4-71e1-42d8-b9d4-7969f6d645f0'),(4392,70,22442,NULL,22317,1,'2021-07-16 05:37:58','2021-07-16 05:37:58','61c61ec5-f035-450e-9fc2-8463d6660073'),(4393,85,22442,NULL,17969,1,'2021-07-16 05:37:58','2021-07-16 05:37:58','a4b8f862-b50d-4a93-a9d0-0c8acb92a66a'),(4397,69,22444,NULL,22211,1,'2021-07-16 05:43:18','2021-07-16 05:43:18','e27d48ef-ae1f-4266-86b3-da6308b2569b'),(4398,70,22444,NULL,22317,1,'2021-07-16 05:43:18','2021-07-16 05:43:18','e878bba3-ab2f-4730-a02c-8c6ec7c9e78c'),(4399,85,22444,NULL,17969,1,'2021-07-16 05:43:18','2021-07-16 05:43:18','5e60b5f4-f6aa-4f3c-81c3-c631c3ecba22'),(4413,69,22449,NULL,21979,1,'2021-07-16 05:46:03','2021-07-16 05:46:03','9f218ed9-1e0e-46c8-bdb6-3368bd927978'),(4414,70,22449,NULL,17857,1,'2021-07-16 05:46:03','2021-07-16 05:46:03','47fb53f4-47c7-480e-af21-d279bcacb84b'),(4415,90,22449,NULL,18129,1,'2021-07-16 05:46:03','2021-07-16 05:46:03','5064e961-4240-4f53-81c1-b216565a3ebc'),(4416,90,22449,NULL,18130,2,'2021-07-16 05:46:03','2021-07-16 05:46:03','1b0ad681-3960-4673-a829-9e2890437c16'),(4417,90,22449,NULL,18131,3,'2021-07-16 05:46:03','2021-07-16 05:46:03','9aea34df-a97c-4208-bc90-175972dfc0b8'),(4418,90,22449,NULL,18132,4,'2021-07-16 05:46:03','2021-07-16 05:46:03','3aee28c3-839e-45ec-93ca-cff5dbb78d8b'),(4419,90,22449,NULL,18133,5,'2021-07-16 05:46:03','2021-07-16 05:46:03','b7af2c13-65cd-4ee0-8410-ec61f728640b'),(4420,90,22449,NULL,18134,6,'2021-07-16 05:46:03','2021-07-16 05:46:03','5b5e4113-3abc-4170-9c49-19ecaff223ae'),(4421,90,22449,NULL,18135,7,'2021-07-16 05:46:03','2021-07-16 05:46:03','0bb8480f-efd6-4877-9cb9-50f87b7607e0'),(4422,85,22449,NULL,17970,1,'2021-07-16 05:46:03','2021-07-16 05:46:03','d7c2d6d2-046c-4192-9f20-58d333c73496'),(4423,84,22449,NULL,18057,1,'2021-07-16 05:46:03','2021-07-16 05:46:03','fb2869ca-3e0d-4f81-a427-b29e039239a8'),(4438,69,22455,NULL,22011,1,'2021-07-16 05:47:20','2021-07-16 05:47:20','1a9ed491-33b3-499c-aeba-5a74d001c0ce'),(4439,70,22455,NULL,17862,1,'2021-07-16 05:47:20','2021-07-16 05:47:20','49f29e35-95b8-4dfb-b4e2-c5bc0faa1d36'),(4440,90,22455,NULL,18114,1,'2021-07-16 05:47:20','2021-07-16 05:47:20','cecd6f89-92cb-4fd4-8188-72919de6d864'),(4441,90,22455,NULL,18115,2,'2021-07-16 05:47:20','2021-07-16 05:47:20','e9280fbf-32c7-48f6-a426-c13fb56a4d1b'),(4442,90,22455,NULL,18040,3,'2021-07-16 05:47:20','2021-07-16 05:47:20','f026d9a1-d55e-4389-b245-7edd75d65fc1'),(4443,90,22455,NULL,18042,4,'2021-07-16 05:47:20','2021-07-16 05:47:20','95baf275-da91-4af9-badd-24fb492226b5'),(4444,90,22455,NULL,18041,5,'2021-07-16 05:47:20','2021-07-16 05:47:20','b62c0f51-c606-48b9-a613-18a3366a27be'),(4445,90,22455,NULL,18105,6,'2021-07-16 05:47:20','2021-07-16 05:47:20','14263e49-46f0-46e3-84ae-1761003f7990'),(4446,90,22455,NULL,18120,7,'2021-07-16 05:47:20','2021-07-16 05:47:20','1c47cee9-cfc2-473e-a713-883c4e750341'),(4447,85,22455,NULL,17966,1,'2021-07-16 05:47:20','2021-07-16 05:47:20','e82b3e81-7c0f-4223-8b8d-1d8fa3a72a7e'),(4448,84,22455,NULL,18057,1,'2021-07-16 05:47:20','2021-07-16 05:47:20','1c978a9f-ecc9-4825-9b44-b4fb8352c22b'),(4463,69,22461,NULL,22160,1,'2021-07-16 05:49:16','2021-07-16 05:49:16','863873f8-e0f3-4bd8-aa82-96832d3bbe21'),(4464,70,22461,NULL,17857,1,'2021-07-16 05:49:16','2021-07-16 05:49:16','2c1f6a87-0de2-4692-975d-44f920eb1cc4'),(4465,90,22461,NULL,18040,1,'2021-07-16 05:49:16','2021-07-16 05:49:16','62c1a8fc-ccff-414a-bd67-cd579f8c0ba2'),(4466,90,22461,NULL,18167,2,'2021-07-16 05:49:16','2021-07-16 05:49:16','53e1dc6e-28f4-4aa3-bca3-24f2272c31aa'),(4467,90,22461,NULL,18043,3,'2021-07-16 05:49:16','2021-07-16 05:49:16','803d91d1-2d34-4a5e-afe4-041a64ad1ac9'),(4468,90,22461,NULL,18045,4,'2021-07-16 05:49:16','2021-07-16 05:49:16','c141ee8f-c0b5-4044-912b-ef57338af11a'),(4469,90,22461,NULL,18046,5,'2021-07-16 05:49:16','2021-07-16 05:49:16','af0884f6-ef87-4c2d-9741-071fcfc2c0b8'),(4470,90,22461,NULL,18047,6,'2021-07-16 05:49:16','2021-07-16 05:49:16','1fdf2357-1362-4158-82ed-841f3c86357c'),(4471,90,22461,NULL,18120,7,'2021-07-16 05:49:16','2021-07-16 05:49:16','c111dbf0-4d94-4271-93d8-53fde455bc19'),(4472,90,22461,NULL,18121,8,'2021-07-16 05:49:16','2021-07-16 05:49:16','61219fc9-a95b-4d70-89e7-464a926e15a4'),(4473,90,22461,NULL,18105,9,'2021-07-16 05:49:16','2021-07-16 05:49:16','44602935-9a4c-4d26-8e19-f6edb067e369'),(4500,69,22481,NULL,22084,1,'2021-07-16 05:51:53','2021-07-16 05:51:53','03cf1e56-0e8e-4c9b-8abd-844636a7ea51'),(4501,70,22481,NULL,17868,1,'2021-07-16 05:51:53','2021-07-16 05:51:53','0113e373-ea1f-43b1-8fa3-acf264cc0c0d'),(4502,90,22481,NULL,18149,1,'2021-07-16 05:51:53','2021-07-16 05:51:53','6fa4f6c0-3701-4140-8600-2c045cd0cbd7'),(4503,90,22481,NULL,18150,2,'2021-07-16 05:51:53','2021-07-16 05:51:53','a427ae5a-5e1c-4c1d-90c7-684e4e051212'),(4504,90,22481,NULL,18105,3,'2021-07-16 05:51:53','2021-07-16 05:51:53','72a9cedb-c35f-41f4-92fb-d05f3ebf2ad5'),(4505,90,22481,NULL,18151,4,'2021-07-16 05:51:53','2021-07-16 05:51:53','28ab898d-bb16-4335-b258-7c4ba15088cb'),(4506,90,22481,NULL,18152,5,'2021-07-16 05:51:53','2021-07-16 05:51:53','1e45a006-adcd-471e-aa2d-7130e61e7d1e'),(4507,90,22481,NULL,18153,6,'2021-07-16 05:51:53','2021-07-16 05:51:53','d49dade9-6e81-4a35-b786-0b00622fdb64'),(4508,90,22481,NULL,18154,7,'2021-07-16 05:51:53','2021-07-16 05:51:53','f1c44592-5b96-4bf9-aafd-1948633a34cc'),(4509,90,22481,NULL,18155,8,'2021-07-16 05:51:53','2021-07-16 05:51:53','f42201ec-2c2c-491a-bfbb-0b669ce281b0'),(4510,69,22482,NULL,22084,1,'2021-07-16 05:52:30','2021-07-16 05:52:30','adad912d-6dbf-47bc-9ed8-998c0c9ffcde'),(4511,70,22482,NULL,17868,1,'2021-07-16 05:52:30','2021-07-16 05:52:30','b93e1d47-a306-435c-8840-8f67e62fb036'),(4512,90,22482,NULL,18149,1,'2021-07-16 05:52:30','2021-07-16 05:52:30','3ccd8469-ca78-46f4-90d6-06ac8c3947a5'),(4513,90,22482,NULL,18150,2,'2021-07-16 05:52:30','2021-07-16 05:52:30','c77c18d2-a26f-4cad-bc6b-7028f0716885'),(4514,90,22482,NULL,18105,3,'2021-07-16 05:52:30','2021-07-16 05:52:30','5488aa3b-0db9-4c7c-9083-14b785448f70'),(4515,90,22482,NULL,18151,4,'2021-07-16 05:52:30','2021-07-16 05:52:30','76762c85-0bf2-48b4-8ce7-07b3681ae0fe'),(4516,90,22482,NULL,18152,5,'2021-07-16 05:52:30','2021-07-16 05:52:30','59b21661-98db-4c0b-affe-49f1c2a06f8e'),(4517,90,22482,NULL,18153,6,'2021-07-16 05:52:30','2021-07-16 05:52:30','12eb96e3-f5d2-4829-905c-d8abe414b380'),(4518,90,22482,NULL,18154,7,'2021-07-16 05:52:30','2021-07-16 05:52:30','e3e9cc20-9121-4fb7-90f2-165db8e56566'),(4519,90,22482,NULL,18155,8,'2021-07-16 05:52:30','2021-07-16 05:52:30','307da54c-9568-4ce2-9c0d-75c0a34bb2cf'),(4537,69,22489,NULL,18584,1,'2021-07-16 05:54:32','2021-07-16 05:54:32','12d830d9-0d62-41a5-9fd6-c195a3914214'),(4538,70,22489,NULL,17857,1,'2021-07-16 05:54:32','2021-07-16 05:54:32','1097b7ca-3a3d-440f-af51-69ae48dbfbe6'),(4539,90,22489,NULL,18114,1,'2021-07-16 05:54:32','2021-07-16 05:54:32','f014b660-51f5-4389-b89b-ce8ae9b1a1eb'),(4540,90,22489,NULL,18116,2,'2021-07-16 05:54:32','2021-07-16 05:54:32','6cbc69d7-1289-491e-93da-40f58259fb6f'),(4541,90,22489,NULL,18040,3,'2021-07-16 05:54:32','2021-07-16 05:54:32','22e7a6ce-6476-4b5b-946e-75794862a13e'),(4542,90,22489,NULL,18118,4,'2021-07-16 05:54:32','2021-07-16 05:54:32','d33edb3a-ea4a-4332-848f-18f5e4f3614e'),(4543,90,22489,NULL,18117,5,'2021-07-16 05:54:32','2021-07-16 05:54:32','49f532f2-b182-4c12-a1fc-55a3138b936f'),(4544,90,22489,NULL,18105,6,'2021-07-16 05:54:32','2021-07-16 05:54:32','781eac19-65cb-4ef5-8058-0df33e5f63fc'),(4545,90,22489,NULL,18120,7,'2021-07-16 05:54:32','2021-07-16 05:54:32','d5eb63db-3ca0-4d73-9066-bc8b66a79779'),(4546,90,22489,NULL,18121,8,'2021-07-16 05:54:32','2021-07-16 05:54:32','f02e5c29-873b-4495-949b-9a5090ad9977'),(4547,90,22489,NULL,18125,9,'2021-07-16 05:54:32','2021-07-16 05:54:32','9ddca5ae-089f-4863-ad82-4ec5b39b99d8'),(4548,90,22489,NULL,18043,10,'2021-07-16 05:54:32','2021-07-16 05:54:32','50e82cff-6afc-4193-8e06-78d2c35bd5b1'),(4549,90,22489,NULL,18046,11,'2021-07-16 05:54:32','2021-07-16 05:54:32','b822dcf3-24fc-4943-93a8-ed448dc8a84e'),(4569,69,22502,NULL,19060,1,'2021-07-16 05:59:13','2021-07-16 05:59:13','30f0daeb-3363-4252-965e-f99328d5d864'),(4570,70,22502,NULL,17857,1,'2021-07-16 05:59:13','2021-07-16 05:59:13','6b663db2-a062-4fe9-8d5b-b817ba01a462'),(4571,90,22502,NULL,18114,1,'2021-07-16 05:59:13','2021-07-16 05:59:13','b3c0af72-cee4-4184-8ac0-38a406e3ff16'),(4572,90,22502,NULL,18115,2,'2021-07-16 05:59:13','2021-07-16 05:59:13','e2f10835-95a7-418f-905e-abad5ec43a2a'),(4573,90,22502,NULL,18116,3,'2021-07-16 05:59:13','2021-07-16 05:59:13','66ce90bc-991c-413f-a405-44967d3c094c'),(4574,90,22502,NULL,18040,4,'2021-07-16 05:59:13','2021-07-16 05:59:13','9a624359-6483-400e-b8b1-12eef0f88d04'),(4575,90,22502,NULL,18117,5,'2021-07-16 05:59:13','2021-07-16 05:59:13','c33f8f6e-e154-4127-b217-1ea99cca7817'),(4576,90,22502,NULL,18118,6,'2021-07-16 05:59:13','2021-07-16 05:59:13','3aeb1025-d713-45d3-b335-df72cd5e402d'),(4577,90,22502,NULL,18119,7,'2021-07-16 05:59:13','2021-07-16 05:59:13','f5fbfed1-2ad0-47b5-aa6a-edf28b353ebc'),(4578,90,22502,NULL,18120,8,'2021-07-16 05:59:13','2021-07-16 05:59:13','5628134e-d701-43ae-a6d1-7817052c0d62'),(4579,90,22502,NULL,18121,9,'2021-07-16 05:59:13','2021-07-16 05:59:13','ee4caadb-2971-4476-8447-467ffcfc8b03'),(4600,69,22513,NULL,19052,1,'2021-07-16 06:00:44','2021-07-16 06:00:44','49d42f68-4d2a-4bf4-989a-42b8cb76ac84'),(4601,70,22513,NULL,17855,1,'2021-07-16 06:00:44','2021-07-16 06:00:44','047b0ec6-7ffe-44f1-bc23-9583079b4b73'),(4602,90,22513,NULL,18040,1,'2021-07-16 06:00:44','2021-07-16 06:00:44','756c3ac4-84b0-47b7-b341-f7576b61d946'),(4603,90,22513,NULL,18041,2,'2021-07-16 06:00:44','2021-07-16 06:00:44','3da69370-290b-4d29-aa1e-144b10c92676'),(4604,90,22513,NULL,18042,3,'2021-07-16 06:00:44','2021-07-16 06:00:44','8f473cbe-b432-4c2f-a368-d4f9ed069286'),(4605,90,22513,NULL,18104,4,'2021-07-16 06:00:44','2021-07-16 06:00:44','a13e15a7-2ac6-41da-8fa3-a61263878aba'),(4606,90,22513,NULL,18043,5,'2021-07-16 06:00:44','2021-07-16 06:00:44','23f7a72b-0020-4128-be73-cd02969ddb9a'),(4607,90,22513,NULL,18046,6,'2021-07-16 06:00:44','2021-07-16 06:00:44','9d60100f-575a-41f5-a02c-60d74430b825'),(4608,90,22513,NULL,18105,7,'2021-07-16 06:00:44','2021-07-16 06:00:44','915fa44a-d6dd-4c46-8fb6-581cb96884d6'),(4609,90,22513,NULL,18106,8,'2021-07-16 06:00:44','2021-07-16 06:00:44','d827e57e-254a-4cef-b4ea-c83341695356'),(4610,90,22513,NULL,18107,9,'2021-07-16 06:00:44','2021-07-16 06:00:44','02fe6f83-883b-4aac-943c-bbffa92cd436'),(4611,90,22513,NULL,18108,10,'2021-07-16 06:00:44','2021-07-16 06:00:44','36f4643f-001b-4472-828b-4413e0cfd3ea'),(4612,69,22514,NULL,19052,1,'2021-07-16 06:01:47','2021-07-16 06:01:47','975561b6-78e0-4d64-9cb6-7a2503f93063'),(4613,70,22514,NULL,17855,1,'2021-07-16 06:01:47','2021-07-16 06:01:47','94f7c14f-4d05-4ecb-b2d4-ce47b55aa5cf'),(4614,90,22514,NULL,18040,1,'2021-07-16 06:01:47','2021-07-16 06:01:47','a4965151-6f5e-4851-915f-da00cdb118fd'),(4615,90,22514,NULL,18041,2,'2021-07-16 06:01:47','2021-07-16 06:01:47','b8e0ef84-7ca0-4a73-bd7c-d74422ca79d4'),(4616,90,22514,NULL,18042,3,'2021-07-16 06:01:47','2021-07-16 06:01:47','ea9baf93-2f9d-4ed0-b8fc-e18d8fe817d5'),(4617,90,22514,NULL,18104,4,'2021-07-16 06:01:47','2021-07-16 06:01:47','af11dfed-fc6c-4058-a766-aed196e81a90'),(4618,90,22514,NULL,18043,5,'2021-07-16 06:01:47','2021-07-16 06:01:47','65549405-cf14-4822-93db-35ea50fb7563'),(4619,90,22514,NULL,18046,6,'2021-07-16 06:01:47','2021-07-16 06:01:47','e3759380-3d42-426e-917c-df0bf2d59133'),(4620,90,22514,NULL,18105,7,'2021-07-16 06:01:47','2021-07-16 06:01:47','16fccb28-7292-4ab8-a8ac-0621a53dc9ca'),(4621,90,22514,NULL,18106,8,'2021-07-16 06:01:47','2021-07-16 06:01:47','9a509841-d049-4db4-911e-8bbdd2bf3701'),(4622,90,22514,NULL,18107,9,'2021-07-16 06:01:47','2021-07-16 06:01:47','66ecfeac-222f-4e55-90fa-b9db13477a54'),(4623,90,22514,NULL,18108,10,'2021-07-16 06:01:47','2021-07-16 06:01:47','78717397-059d-44a8-91f5-9b085557b1d4'),(4645,69,22522,NULL,16824,1,'2021-07-16 06:04:48','2021-07-16 06:04:48','72988dfa-21a2-451f-8b45-73ce4644585e'),(4646,70,22522,NULL,16834,1,'2021-07-16 06:04:48','2021-07-16 06:04:48','9fd32369-bc5f-486e-a5ec-cbea822b75ee'),(4647,90,22522,NULL,18033,1,'2021-07-16 06:04:48','2021-07-16 06:04:48','eb081050-2dcb-401b-a28a-b42f6b5fde00'),(4648,90,22522,NULL,18040,2,'2021-07-16 06:04:48','2021-07-16 06:04:48','0c6694fd-4222-46cf-add3-6e6e8bebcba9'),(4649,90,22522,NULL,18041,3,'2021-07-16 06:04:48','2021-07-16 06:04:48','8419b175-078f-4d85-9b8e-b32d1dd24d66'),(4650,90,22522,NULL,18042,4,'2021-07-16 06:04:48','2021-07-16 06:04:48','3e3a965e-b33d-4339-a022-55df8802d26f'),(4651,90,22522,NULL,18043,5,'2021-07-16 06:04:48','2021-07-16 06:04:48','0ce5a386-c6f8-4660-b1ba-34ed1e18cbf0'),(4652,90,22522,NULL,18044,6,'2021-07-16 06:04:48','2021-07-16 06:04:48','3e578d39-e62a-4b56-9be5-4a99e3aa52fe'),(4653,90,22522,NULL,18045,7,'2021-07-16 06:04:48','2021-07-16 06:04:48','3ce37c9b-3079-4e59-ad39-df7ad1509e78'),(4654,90,22522,NULL,18046,8,'2021-07-16 06:04:48','2021-07-16 06:04:48','5b22ba6d-fe80-4569-b158-2eaa6daee8db'),(4655,90,22522,NULL,18047,9,'2021-07-16 06:04:48','2021-07-16 06:04:48','298158ee-1525-44fe-8434-ab10b0d177ba'),(4656,90,22522,NULL,18048,10,'2021-07-16 06:04:48','2021-07-16 06:04:48','4e0d2687-088a-4688-9d64-4dcf16606215'),(4657,90,22522,NULL,18049,11,'2021-07-16 06:04:48','2021-07-16 06:04:48','3b5fa038-a1ad-442c-a297-e85542468899'),(4658,90,22522,NULL,18050,12,'2021-07-16 06:04:48','2021-07-16 06:04:48','4f13e49f-9e16-40dd-9e02-b7c97292d5ec'),(4659,85,22522,NULL,17966,1,'2021-07-16 06:04:48','2021-07-16 06:04:48','5d0624d9-1057-4f0a-8d67-d147b321f3f9'),(4660,84,22522,NULL,18057,1,'2021-07-16 06:04:48','2021-07-16 06:04:48','6145c24a-c701-47de-bbde-f5623af46021'),(4677,69,22524,NULL,16824,1,'2021-07-16 06:05:41','2021-07-16 06:05:41','53cc12bd-8319-404d-a9c7-4ef8f47ea30b'),(4678,70,22524,NULL,16834,1,'2021-07-16 06:05:41','2021-07-16 06:05:41','7a79d82f-2c47-4544-933d-bee9fc5befca'),(4679,90,22524,NULL,18033,1,'2021-07-16 06:05:41','2021-07-16 06:05:41','64c461d5-688c-4445-b585-42ebc983e670'),(4680,90,22524,NULL,18040,2,'2021-07-16 06:05:41','2021-07-16 06:05:41','a132c21b-bc30-4dd0-85b8-e6600664ce6d'),(4681,90,22524,NULL,18041,3,'2021-07-16 06:05:41','2021-07-16 06:05:41','647d3e97-610a-4c8a-8b18-d46525ba1c8f'),(4682,90,22524,NULL,18042,4,'2021-07-16 06:05:41','2021-07-16 06:05:41','12622fd9-036c-4f8d-9841-d182cf925459'),(4683,90,22524,NULL,18043,5,'2021-07-16 06:05:41','2021-07-16 06:05:41','0527ab8b-c3d5-4739-bc22-820fc53d917d'),(4684,90,22524,NULL,18044,6,'2021-07-16 06:05:41','2021-07-16 06:05:41','bf66033e-9fec-4cc4-b287-71db8d3103b6'),(4685,90,22524,NULL,18045,7,'2021-07-16 06:05:41','2021-07-16 06:05:41','1e73b3f8-7c28-4e82-aa91-3c78ed4f8358'),(4686,90,22524,NULL,18046,8,'2021-07-16 06:05:41','2021-07-16 06:05:41','8d262245-c3ea-4410-a0bf-ba1bcc45f06c'),(4687,90,22524,NULL,18047,9,'2021-07-16 06:05:41','2021-07-16 06:05:41','2d37a749-90c3-452c-97fb-0e754b7f2826'),(4688,90,22524,NULL,18048,10,'2021-07-16 06:05:41','2021-07-16 06:05:41','8bce91e7-bc4b-4a49-8eed-e99aa5e73cf5'),(4689,90,22524,NULL,18049,11,'2021-07-16 06:05:41','2021-07-16 06:05:41','8a6b0f70-21b8-4deb-a06e-616b16cce736'),(4690,90,22524,NULL,18050,12,'2021-07-16 06:05:41','2021-07-16 06:05:41','2e0e41fd-2b49-4f00-abab-4d55efe4209d'),(4691,85,22524,NULL,17966,1,'2021-07-16 06:05:41','2021-07-16 06:05:41','46ae27c0-81fa-4b41-8830-38b4efa830cf'),(4692,84,22524,NULL,18057,1,'2021-07-16 06:05:41','2021-07-16 06:05:41','5e4cf4af-7b46-487b-995e-49e81c08955f'),(4709,69,22526,NULL,16824,1,'2021-07-16 06:07:33','2021-07-16 06:07:33','8d99b900-7eff-4a40-aa7a-cba89de91e30'),(4710,70,22526,NULL,16834,1,'2021-07-16 06:07:34','2021-07-16 06:07:34','c757c13f-3c12-402b-b9ee-680f61c1dfe0'),(4711,90,22526,NULL,18033,1,'2021-07-16 06:07:34','2021-07-16 06:07:34','05f739f6-faf7-464c-bedd-9eca2bcade1f'),(4712,90,22526,NULL,18040,2,'2021-07-16 06:07:34','2021-07-16 06:07:34','e0246fa5-0a7e-4fe0-907a-70e8730c3269'),(4713,90,22526,NULL,18041,3,'2021-07-16 06:07:34','2021-07-16 06:07:34','3fe08df4-8f5a-429c-9b4a-53aad33f6ef5'),(4714,90,22526,NULL,18042,4,'2021-07-16 06:07:34','2021-07-16 06:07:34','9fced8dc-eed6-44a9-9e44-2d266d4ed700'),(4715,90,22526,NULL,18043,5,'2021-07-16 06:07:34','2021-07-16 06:07:34','9501ae75-b7ed-4853-b197-f0dd9de6c58b'),(4716,90,22526,NULL,18044,6,'2021-07-16 06:07:34','2021-07-16 06:07:34','4dfbf7ee-32bf-48a4-af01-694203959f3c'),(4717,90,22526,NULL,18045,7,'2021-07-16 06:07:34','2021-07-16 06:07:34','31fd9773-94da-4d6c-8b5b-83f223cdeeb5'),(4718,90,22526,NULL,18046,8,'2021-07-16 06:07:34','2021-07-16 06:07:34','4546e59f-c010-490b-b968-492a5b508892'),(4719,90,22526,NULL,18047,9,'2021-07-16 06:07:34','2021-07-16 06:07:34','390870c3-3000-48f6-b0ea-81ebce821781'),(4720,90,22526,NULL,18048,10,'2021-07-16 06:07:34','2021-07-16 06:07:34','d8554fb1-d97a-4004-84ca-4ad7e8fae7c8'),(4721,90,22526,NULL,18049,11,'2021-07-16 06:07:34','2021-07-16 06:07:34','24a3cde5-074d-4595-8341-a6451128c73f'),(4722,90,22526,NULL,18050,12,'2021-07-16 06:07:34','2021-07-16 06:07:34','bac60c82-a866-4bce-b0cf-30eb94de46e0'),(4723,85,22526,NULL,17966,1,'2021-07-16 06:07:34','2021-07-16 06:07:34','462c2516-bc6b-49ea-81c1-868614bfe65d'),(4724,84,22526,NULL,18057,1,'2021-07-16 06:07:34','2021-07-16 06:07:34','9a77128a-4152-49a0-afa4-6dcce3d33dbe'),(4736,69,22528,NULL,19060,1,'2021-07-16 06:18:20','2021-07-16 06:18:20','3bd285dc-9e64-49ea-ade1-290539bec32e'),(4737,70,22528,NULL,17857,1,'2021-07-16 06:18:20','2021-07-16 06:18:20','3ccc7d6f-2da1-4636-b037-52e12886076a'),(4738,90,22528,NULL,18114,1,'2021-07-16 06:18:20','2021-07-16 06:18:20','8df47913-874d-43bc-9d4b-2349578598b4'),(4739,90,22528,NULL,18115,2,'2021-07-16 06:18:20','2021-07-16 06:18:20','9f153839-5c5c-4afd-92ff-b18a899d1bfa'),(4740,90,22528,NULL,18116,3,'2021-07-16 06:18:20','2021-07-16 06:18:20','058eb737-c6c4-43a7-ac4a-a1545e223d5d'),(4741,90,22528,NULL,18040,4,'2021-07-16 06:18:20','2021-07-16 06:18:20','78edac52-3ce3-442c-bdb7-cef77137198b'),(4742,90,22528,NULL,18117,5,'2021-07-16 06:18:20','2021-07-16 06:18:20','72d4bf1e-4ff6-4249-8a0e-548cf2af53a5'),(4743,90,22528,NULL,18118,6,'2021-07-16 06:18:20','2021-07-16 06:18:20','3bc629b0-363e-4b4f-96b2-a271e2cfda99'),(4744,90,22528,NULL,18119,7,'2021-07-16 06:18:20','2021-07-16 06:18:20','4e438c14-edc6-411b-9b64-0c9e81fadb7f'),(4745,90,22528,NULL,18120,8,'2021-07-16 06:18:20','2021-07-16 06:18:20','31b5810b-26db-4b28-8a2e-80eee627c184'),(4746,90,22528,NULL,18121,9,'2021-07-16 06:18:20','2021-07-16 06:18:20','3e6eb2b8-028b-4560-9d7e-e7027b51bb62'),(4759,69,18122,NULL,19066,1,'2021-07-16 07:15:35','2021-07-16 07:15:35','cc25cd88-025c-47ac-9287-4238b72eac5b'),(4760,69,22530,NULL,19066,1,'2021-07-16 07:15:35','2021-07-16 07:15:35','6e0a427c-fe87-4c43-8b4f-cdbb8529a0ad'),(4761,70,22530,NULL,17857,1,'2021-07-16 07:15:35','2021-07-16 07:15:35','70deaf9f-7062-43f0-89f2-775723dfe17c'),(4762,90,22530,NULL,18114,1,'2021-07-16 07:15:35','2021-07-16 07:15:35','b4fc8cf6-28e4-4725-b90d-4cb216053b8a'),(4763,90,22530,NULL,18115,2,'2021-07-16 07:15:35','2021-07-16 07:15:35','f0f024d8-2bec-4a1f-ac49-7bb763514819'),(4764,90,22530,NULL,18116,3,'2021-07-16 07:15:35','2021-07-16 07:15:35','4d186f66-a9c9-4e90-8a7c-35f6385d716a'),(4765,90,22530,NULL,18040,4,'2021-07-16 07:15:35','2021-07-16 07:15:35','18eb0bea-6df4-4761-b9dd-e4aada85d0c7'),(4766,90,22530,NULL,18117,5,'2021-07-16 07:15:35','2021-07-16 07:15:35','b697cab4-3fcd-4851-a179-0e9c82d8f14e'),(4767,90,22530,NULL,18118,6,'2021-07-16 07:15:35','2021-07-16 07:15:35','b76e877d-a627-4bb8-8afb-717d790ce75d'),(4768,90,22530,NULL,18119,7,'2021-07-16 07:15:35','2021-07-16 07:15:35','83e81e03-ad8e-4fc3-a7e9-e2cb1bdc207c'),(4769,90,22530,NULL,18120,8,'2021-07-16 07:15:35','2021-07-16 07:15:35','1de4c931-5f1b-48a4-bb5e-2eef157818e9'),(4770,90,22530,NULL,18121,9,'2021-07-16 07:15:35','2021-07-16 07:15:35','cacf8ad4-045f-40d9-a93e-89373d3211d6'),(4774,69,22532,NULL,22211,1,'2021-07-16 07:23:19','2021-07-16 07:23:19','fa674646-bb4e-42dc-a91b-de93ee3d1dfa'),(4775,70,22532,NULL,22317,1,'2021-07-16 07:23:19','2021-07-16 07:23:19','5260f371-52ce-48a9-b373-d2e92a5e2ce6'),(4776,85,22532,NULL,17969,1,'2021-07-16 07:23:19','2021-07-16 07:23:19','49c0c182-1d85-43c3-9cd3-2ae36d492113'),(4780,69,22534,NULL,22211,1,'2021-07-16 10:25:14','2021-07-16 10:25:14','871b30a3-e0c2-4398-b3e4-bc5946495445'),(4781,70,22534,NULL,22317,1,'2021-07-16 10:25:14','2021-07-16 10:25:14','9768b90f-d0ed-4fb8-a190-ab2c07986606'),(4782,85,22534,NULL,17969,1,'2021-07-16 10:25:14','2021-07-16 10:25:14','783ad679-805f-4ef2-ba31-f92a1270bc68'),(4783,69,22535,NULL,22211,1,'2021-07-16 10:26:43','2021-07-16 10:26:43','99964b61-4dd1-49a1-94c3-97cfb637983d'),(4784,70,22535,NULL,22317,1,'2021-07-16 10:26:43','2021-07-16 10:26:43','6cab9f9f-5b63-4d1c-8f82-04218372f948'),(4785,85,22535,NULL,17969,1,'2021-07-16 10:26:43','2021-07-16 10:26:43','8525f669-43e3-4b69-bccd-4b6145955c0b'),(4789,69,22537,NULL,22211,1,'2021-07-16 10:54:02','2021-07-16 10:54:02','12f5642d-1e88-4ed3-94fe-2497e96a6547'),(4790,70,22537,NULL,22317,1,'2021-07-16 10:54:02','2021-07-16 10:54:02','a71239be-4fd9-4929-8bbe-54bea0ce989f'),(4791,85,22537,NULL,17969,1,'2021-07-16 10:54:02','2021-07-16 10:54:02','c11901a4-8897-4739-8b07-5f330ac88d13'),(4795,69,22539,NULL,22211,1,'2021-07-16 11:00:57','2021-07-16 11:00:57','770079b1-dbaa-48da-8dbd-f86031465733'),(4796,70,22539,NULL,22317,1,'2021-07-16 11:00:57','2021-07-16 11:00:57','e74888dc-0418-43f7-b82f-03445271bbdf'),(4797,85,22539,NULL,17969,1,'2021-07-16 11:00:57','2021-07-16 11:00:57','ac1880d6-5014-469e-bb4d-80e1e3523454'),(4801,69,22541,NULL,22211,1,'2021-07-16 11:10:03','2021-07-16 11:10:03','22e85713-d291-4c9b-9a5f-fcaffb8bee0f'),(4802,70,22541,NULL,22317,1,'2021-07-16 11:10:03','2021-07-16 11:10:03','4abd477a-a871-482a-95ed-b23cbc2e9c9f'),(4803,85,22541,NULL,17969,1,'2021-07-16 11:10:03','2021-07-16 11:10:03','fd1c6608-9589-4c0a-945e-9f16b3f7d5e4'),(4808,69,22210,NULL,27826,1,'2021-07-21 23:27:44','2021-07-21 23:27:44','47d5df1d-9eef-4bed-b43c-e065bd81db33'),(4809,69,27827,NULL,27826,1,'2021-07-21 23:27:44','2021-07-21 23:27:44','3f4e13cb-2c40-4bf1-b0a5-4ba8d4973021'),(4810,70,27827,NULL,22317,1,'2021-07-21 23:27:44','2021-07-21 23:27:44','1fefd746-0190-4922-8ca2-37ef3afe007f'),(4811,85,27827,NULL,17969,1,'2021-07-21 23:27:44','2021-07-21 23:27:44','de704d74-411d-4579-b67a-d556b2812552'),(4882,184,27854,NULL,17105,1,'2021-07-22 05:14:54','2021-07-22 05:14:54','fc4431a8-300c-426f-8d01-b969a84d3979'),(4883,69,27854,NULL,17105,1,'2021-07-22 05:14:54','2021-07-22 05:14:54','ce8df517-2a02-4259-a2f0-d6dff17cab40'),(4886,184,17690,NULL,17743,1,'2021-07-22 05:16:05','2021-07-22 05:16:05','c9bf6fe9-a82f-4d4d-b498-08d14eff81ec'),(4887,184,27856,NULL,17743,1,'2021-07-22 05:16:05','2021-07-22 05:16:05','939275cd-2141-4919-939e-aadf627526f3'),(4888,69,27856,NULL,17743,1,'2021-07-22 05:16:05','2021-07-22 05:16:05','03de073d-f595-469f-9075-bdfbbb33f587'),(4889,184,27857,NULL,17743,1,'2021-07-22 05:19:49','2021-07-22 05:19:49','6647ecc8-d7a8-4539-93d2-8f681b3c9bc2'),(4890,69,27857,NULL,17743,1,'2021-07-22 05:19:49','2021-07-22 05:19:49','dbeaf493-e1b5-4bce-bd42-4cf12c430ca0'),(4893,184,17688,NULL,17089,1,'2021-07-22 05:20:42','2021-07-22 05:20:42','ec9ca242-28f8-4cce-a225-eeb729eb81af'),(4894,184,27859,NULL,17089,1,'2021-07-22 05:20:42','2021-07-22 05:20:42','f4a60778-6e65-48a0-9517-9c9adad30664'),(4895,69,27859,NULL,17089,1,'2021-07-22 05:20:42','2021-07-22 05:20:42','6e752ec7-284f-4258-966b-3e39558abba0'),(4898,184,17686,NULL,17166,1,'2021-07-22 05:30:30','2021-07-22 05:30:30','07ba3919-80b7-456b-82e6-101bd363c4e5'),(4899,184,27861,NULL,17166,1,'2021-07-22 05:30:30','2021-07-22 05:30:30','d165e7d3-4147-419b-bb91-50ea27dced1c'),(4900,69,27861,NULL,17166,1,'2021-07-22 05:30:30','2021-07-22 05:30:30','1227e476-2145-4238-81f0-a42836a8f547'),(4904,69,27864,NULL,17811,1,'2021-07-22 05:33:33','2021-07-22 05:33:33','2805b1e1-1093-47c4-b8cc-90d869385267'),(4907,184,17682,NULL,17167,1,'2021-07-22 05:34:28','2021-07-22 05:34:28','0c22769b-7d6b-4939-bd34-6b554aa1c0af'),(4908,184,27866,NULL,17167,1,'2021-07-22 05:34:28','2021-07-22 05:34:28','b03d4443-6435-4b30-9726-13e4289bcbfd'),(4909,69,27866,NULL,17167,1,'2021-07-22 05:34:28','2021-07-22 05:34:28','12c4af02-01aa-4cec-9e2c-af4c2ac1a07f'),(4912,184,27868,NULL,17167,1,'2021-07-22 05:35:48','2021-07-22 05:35:48','4f8fe571-6ac4-4ff7-ab3a-deda2f5dc4f1'),(4913,69,27868,NULL,17167,1,'2021-07-22 05:35:48','2021-07-22 05:35:48','3421123f-2d1d-4212-95da-982034fd496c'),(4917,184,27870,NULL,17168,1,'2021-07-22 05:38:16','2021-07-22 05:38:16','69c2fa89-c9ce-4f72-8f16-db2ca18d1eac'),(4918,69,27870,NULL,17168,1,'2021-07-22 05:38:16','2021-07-22 05:38:16','92b6cb5e-e927-4d08-b98d-a461b335d8c1'),(4923,184,27873,NULL,17743,1,'2021-07-22 05:52:23','2021-07-22 05:52:23','8b831d9e-de19-4264-9422-5146c749b1ab'),(4924,69,27873,NULL,17743,1,'2021-07-22 05:52:23','2021-07-22 05:52:23','5c2da8e5-7b7b-4ade-9d3b-a2281e17c398'),(4925,184,27874,NULL,17166,1,'2021-07-22 05:55:18','2021-07-22 05:55:18','dc97cda3-2a7e-4fd2-a8c3-d84b4c5cbaa1'),(4926,69,27874,NULL,17166,1,'2021-07-22 05:55:18','2021-07-22 05:55:18','4373dfbc-07fb-48ff-a058-12d2ad95c63c'),(4929,184,27876,NULL,17166,1,'2021-07-22 05:56:43','2021-07-22 05:56:43','78880adc-a3a9-48cd-b8f9-3ea8d665c94d'),(4930,69,27876,NULL,17166,1,'2021-07-22 05:56:43','2021-07-22 05:56:43','c9b4ee1c-a99e-4649-ad3a-0362ded547f3'),(4932,69,27878,NULL,17811,1,'2021-07-22 05:57:58','2021-07-22 05:57:58','03161949-424c-4e78-aace-dfbafb35f965'),(4935,184,27880,NULL,17743,1,'2021-07-22 05:59:20','2021-07-22 05:59:20','059259dd-93fa-4717-af97-473cc40c1302'),(4936,69,27880,NULL,17743,1,'2021-07-22 05:59:20','2021-07-22 05:59:20','4fe38d16-6141-4c1b-956d-93cba311cc96'),(4939,184,27882,NULL,17168,1,'2021-07-22 06:04:40','2021-07-22 06:04:40','76683d1c-3539-489b-a217-b90a25a766b3'),(4940,69,27882,NULL,17168,1,'2021-07-22 06:04:40','2021-07-22 06:04:40','9f349129-c08d-4a9e-97de-c1aa03e169cd'),(4943,184,27884,NULL,17168,1,'2021-07-22 06:05:23','2021-07-22 06:05:23','5b7c1356-82ef-4061-aa2e-1c77b59f10e3'),(4944,69,27884,NULL,17168,1,'2021-07-22 06:05:23','2021-07-22 06:05:23','eef81c11-88c5-4471-9d49-d77b7a5b48fc'),(4947,184,27886,NULL,17168,1,'2021-07-22 06:07:24','2021-07-22 06:07:24','f4329bd8-6d4f-4699-8016-a7a778d7cc59'),(4948,69,27886,NULL,17168,1,'2021-07-22 06:07:24','2021-07-22 06:07:24','90cadd73-bc98-421f-8c25-47ca753a5c3d'),(4951,184,27888,NULL,17167,1,'2021-07-22 06:08:55','2021-07-22 06:08:55','1e7dec41-88a4-4eca-b510-59fb7c98c913'),(4952,69,27888,NULL,17167,1,'2021-07-22 06:08:55','2021-07-22 06:08:55','ddd67b96-bcee-41f9-a0ee-3acafcefae7b'),(4953,184,27889,NULL,17167,1,'2021-07-22 06:09:31','2021-07-22 06:09:31','502b95f7-35eb-45b7-85ef-9b24cf80f04b'),(4954,69,27889,NULL,17167,1,'2021-07-22 06:09:31','2021-07-22 06:09:31','baa9de16-47ab-4629-964b-fd862dde4df1'),(4967,184,27894,NULL,17168,1,'2021-07-22 06:21:57','2021-07-22 06:21:57','93356612-71b4-429d-a818-6fbfde7910fa'),(4968,69,27894,NULL,17168,1,'2021-07-22 06:21:57','2021-07-22 06:21:57','12e8bbf2-beb4-4929-b505-a326092cf0b8'),(4971,184,27896,NULL,17089,1,'2021-07-22 09:36:18','2021-07-22 09:36:18','8b74adfc-1a18-4397-b0ce-d2aa4cfcadd8'),(4972,69,27896,NULL,17089,1,'2021-07-22 09:36:18','2021-07-22 09:36:18','4f147d84-efb2-4571-be6d-b6b57c976276'),(4975,184,27898,NULL,17166,1,'2021-07-22 09:37:59','2021-07-22 09:37:59','c4f400e9-ede9-4908-b3e2-6b74cde927be'),(4976,69,27898,NULL,17166,1,'2021-07-22 09:37:59','2021-07-22 09:37:59','d4eb720e-9aa2-4ed4-a4c5-15c5c3edbfa8'),(4978,69,27900,NULL,17811,1,'2021-07-22 09:39:46','2021-07-22 09:39:46','c64c9370-8b97-4cde-aadd-7909aff5256a'),(5001,184,27914,NULL,17105,1,'2021-07-22 09:43:45','2021-07-22 09:43:45','f8378e3a-5019-4d62-be1c-b69d8e28af36'),(5002,69,27914,NULL,17105,1,'2021-07-22 09:43:45','2021-07-22 09:43:45','2993c4a4-6a33-46b2-a3bb-daa7f930c7a8'),(5033,184,27926,NULL,17105,1,'2021-07-22 23:34:54','2021-07-22 23:34:54','aed90cc1-a27d-4270-88e7-2791992622e4'),(5034,69,27926,NULL,17105,1,'2021-07-22 23:34:54','2021-07-22 23:34:54','b144108c-484d-44d7-b947-801ca81f525c'),(5037,184,27928,NULL,17743,1,'2021-07-22 23:36:59','2021-07-22 23:36:59','a75f724b-db13-4bee-a06c-1778709dc6ee'),(5038,69,27928,NULL,17743,1,'2021-07-22 23:36:59','2021-07-22 23:36:59','8ac7c799-cbe4-4e7c-a0ba-f1d81e2b8c9f'),(5041,184,27930,NULL,17743,1,'2021-07-22 23:38:56','2021-07-22 23:38:56','6f49e043-2777-443f-8525-b6bba1f5352b'),(5042,69,27930,NULL,17743,1,'2021-07-22 23:38:56','2021-07-22 23:38:56','abe88686-67a6-452d-9742-eff4766e1217'),(5071,184,27948,NULL,17105,1,'2021-07-23 00:37:48','2021-07-23 00:37:48','9daca31b-15c0-48bd-aa24-20bad6764af3'),(5072,69,27948,NULL,17105,1,'2021-07-23 00:37:48','2021-07-23 00:37:48','31d04ec3-95b7-454c-ad76-7047737dbda5'),(5073,184,27949,NULL,17743,1,'2021-07-23 00:38:08','2021-07-23 00:38:08','78342a6e-30bf-4321-85ed-c950e0aa797b'),(5074,69,27949,NULL,17743,1,'2021-07-23 00:38:08','2021-07-23 00:38:08','f6163407-7add-4e73-9bf6-320fa1b641b7'),(5077,184,27951,NULL,17089,1,'2021-07-23 00:40:50','2021-07-23 00:40:50','34087578-fd26-4c55-8c72-b683c228c6a7'),(5078,69,27951,NULL,17089,1,'2021-07-23 00:40:50','2021-07-23 00:40:50','c372a000-1af0-405c-91be-cc8c200db1ae'),(5079,184,27952,NULL,17089,1,'2021-07-23 00:42:25','2021-07-23 00:42:25','21a4bf4b-8bad-4be4-ad58-879c00e1e727'),(5080,69,27952,NULL,17089,1,'2021-07-23 00:42:25','2021-07-23 00:42:25','f0434a24-bc7a-4dee-8fd4-ddff02e828a3'),(5081,184,27953,NULL,17089,1,'2021-07-23 00:42:43','2021-07-23 00:42:43','83492c66-8e6f-4aa8-97d9-ffcc19f588d5'),(5082,69,27953,NULL,17089,1,'2021-07-23 00:42:43','2021-07-23 00:42:43','2c57a354-618b-4387-b03d-458dbe0ab6b1'),(5085,184,27955,NULL,17166,1,'2021-07-23 00:43:48','2021-07-23 00:43:48','8b7ea37b-4bf1-49e1-a893-50414c956312'),(5086,69,27955,NULL,17166,1,'2021-07-23 00:43:48','2021-07-23 00:43:48','98ed0263-083d-4010-b741-cc6766315cad'),(5088,69,27957,NULL,17811,1,'2021-07-23 00:45:38','2021-07-23 00:45:38','b61caa2b-1965-490b-bc12-c7b61e878ddf'),(5091,184,27959,NULL,17167,1,'2021-07-23 00:47:31','2021-07-23 00:47:31','1e473304-ab60-41fc-9ff9-938965971e5a'),(5092,69,27959,NULL,17167,1,'2021-07-23 00:47:31','2021-07-23 00:47:31','4865c3ac-979e-404e-b2f3-634576d4c462'),(5095,184,27961,NULL,17168,1,'2021-07-23 00:49:19','2021-07-23 00:49:19','45a14e37-0a07-487e-82f1-c28a43a27d1d'),(5096,69,27961,NULL,17168,1,'2021-07-23 00:49:19','2021-07-23 00:49:19','1a298cb0-1651-46fa-9d8f-d334dc29c91d'),(5098,69,27963,NULL,17815,1,'2021-07-23 00:58:41','2021-07-23 00:58:41','429cc8db-79c8-4723-8d4e-439e07de8824'),(5100,69,27965,NULL,17169,1,'2021-07-23 01:06:04','2021-07-23 01:06:04','00a604f5-239b-4148-a2f1-80adf509fee8'),(5102,69,27967,NULL,17818,1,'2021-07-23 01:08:24','2021-07-23 01:08:24','e3ed2af5-a27e-498c-85f6-36d81cee2bbb'),(5104,69,27969,NULL,17818,1,'2021-07-23 01:10:23','2021-07-23 01:10:23','1d5695c4-870d-4c28-ad30-35639f21c136'),(5106,69,27971,NULL,17425,1,'2021-07-23 01:13:29','2021-07-23 01:13:29','aded7652-a59e-40c1-8d22-448c2d02961c'),(5108,69,27973,NULL,17430,1,'2021-07-23 01:16:03','2021-07-23 01:16:03','c2a41c63-78ca-4b1a-9f2f-d2b82c92b7e1'),(5110,69,27975,NULL,17428,1,'2021-07-23 01:17:51','2021-07-23 01:17:51','8aee4ea5-97fd-49ce-a181-afe170ebae16'),(5113,69,27978,NULL,17429,1,'2021-07-23 01:24:26','2021-07-23 01:24:26','6db68bc5-523b-4367-b88f-37e648fd58cf'),(5115,69,27980,NULL,17429,1,'2021-07-23 01:36:15','2021-07-23 01:36:15','7f70d4f0-c233-4a1d-aa10-ff788f0a0d48'),(5117,69,27982,NULL,17182,1,'2021-07-23 01:41:34','2021-07-23 01:41:34','82017ef6-7406-4de7-9bb3-b318e1fee7c6'),(5119,69,27984,NULL,17432,1,'2021-07-23 01:43:48','2021-07-23 01:43:48','ec8b8d9a-1626-4518-a993-68d86e25204a'),(5121,69,27986,NULL,17431,1,'2021-07-23 01:47:24','2021-07-23 01:47:24','fa429c91-cef1-4100-aa0e-9bdce43fc3e9'),(5123,69,27988,NULL,17433,1,'2021-07-23 01:49:44','2021-07-23 01:49:44','13c1d92f-7027-4de7-8283-1782b8e9374d'),(5125,69,27990,NULL,17434,1,'2021-07-23 01:52:04','2021-07-23 01:52:04','00fea818-75f9-4352-b251-1ab097e4cf5a'),(5127,69,27992,NULL,17435,1,'2021-07-23 02:57:11','2021-07-23 02:57:11','1b9ce125-c35f-4b33-9b70-bc8db1659471'),(5129,69,27994,NULL,17453,1,'2021-07-23 02:59:41','2021-07-23 02:59:41','ebbcb436-6c22-4600-81f8-e146f2c22751'),(5131,69,27996,NULL,17436,1,'2021-07-23 03:01:34','2021-07-23 03:01:34','dfb6004d-d094-4929-85bb-8cba8214d927'),(5133,69,27998,NULL,17437,1,'2021-07-23 03:04:26','2021-07-23 03:04:26','688fe0b6-0da1-4147-b872-ba465bf7ae43'),(5135,69,28000,NULL,17437,1,'2021-07-23 03:06:02','2021-07-23 03:06:02','d2078edf-c957-47f3-b729-5e53a25f0388'),(5137,69,28002,NULL,17438,1,'2021-07-23 03:08:45','2021-07-23 03:08:45','bda161d2-db77-471f-ba6a-e4318b0b37f0'),(5139,69,28004,NULL,17439,1,'2021-07-23 03:12:29','2021-07-23 03:12:29','92db1ba2-7cf6-45c8-9c8a-1e7e21f3853e'),(5141,69,28006,NULL,17440,1,'2021-07-23 03:13:18','2021-07-23 03:13:18','82120051-6615-4069-b7af-2a86a2e11544'),(5143,69,28008,NULL,17442,1,'2021-07-23 03:14:01','2021-07-23 03:14:01','bf75d639-d223-4a36-89ff-99e245c5dd05'),(5145,69,28010,NULL,17440,1,'2021-07-23 03:14:11','2021-07-23 03:14:11','284651ef-ec02-45d3-a63d-5ffa5244322d'),(5147,69,28012,NULL,17441,1,'2021-07-23 03:14:59','2021-07-23 03:14:59','a7763755-8dbc-4e2c-9e89-18a13b2f422e'),(5149,69,28014,NULL,17443,1,'2021-07-23 03:19:27','2021-07-23 03:19:27','57f6b8a8-f844-4452-8fc9-fbb17d85d580'),(5151,69,28016,NULL,17444,1,'2021-07-23 03:20:39','2021-07-23 03:20:39','691cec38-1de9-485b-92b4-7a704d36a367'),(5153,69,28018,NULL,17445,1,'2021-07-23 03:22:12','2021-07-23 03:22:12','972cb292-5cc7-4a34-b687-4e4f5e26dead'),(5155,69,28020,NULL,17446,1,'2021-07-23 03:26:01','2021-07-23 03:26:01','c68c716d-295f-45a1-b71c-c60e54638246'),(5157,69,28022,NULL,17447,1,'2021-07-23 03:26:58','2021-07-23 03:26:58','0aff1322-3e18-40d5-adf2-930471f13beb'),(5159,69,28024,NULL,17448,1,'2021-07-23 03:27:34','2021-07-23 03:27:34','d3a7bae1-39d2-4d7f-a56e-8c6f9904ab8f'),(5161,69,28026,NULL,17449,1,'2021-07-23 03:30:27','2021-07-23 03:30:27','862b1786-179d-40a9-86fe-29b884992a85'),(5163,69,28028,NULL,17450,1,'2021-07-23 03:32:57','2021-07-23 03:32:57','23cede51-d173-4c82-8ea7-2825369bfab6'),(5165,69,28030,NULL,17451,1,'2021-07-23 03:34:21','2021-07-23 03:34:21','3b863bb6-7cb1-43cb-9545-5c42e8121213'),(5167,69,28032,NULL,17452,1,'2021-07-23 03:34:56','2021-07-23 03:34:56','7749bb78-b5da-4557-aec5-3e87942e7dca'),(5194,184,28040,NULL,28041,1,'2021-07-23 05:43:38','2021-07-23 05:43:38','bdf9e4ca-7fa6-4185-90f7-8c7e2dc06640'),(5195,69,28040,NULL,28041,1,'2021-07-23 05:46:54','2021-07-23 05:46:54','128555cd-d295-4cb2-8826-640276cfb388'),(5196,85,28040,NULL,17971,4,'2021-07-23 05:49:21','2021-07-23 05:52:07','cab9cad7-935d-4b19-a6c7-5f3d81c619fd'),(5197,85,28040,NULL,17966,2,'2021-07-23 05:51:57','2021-07-23 05:52:07','89854f77-0cd1-4409-9fb5-01ef512921ca'),(5198,85,28040,NULL,17968,3,'2021-07-23 05:52:03','2021-07-23 05:52:07','5a8b6d83-ddc3-4e17-a0bc-ef64c4b4a910'),(5199,85,28040,NULL,17964,1,'2021-07-23 05:52:07','2021-07-23 05:52:07','15ad29fc-3cdd-4bfb-bdad-6dd4e0add8f7'),(5200,184,28042,NULL,28041,1,'2021-07-23 06:18:47','2021-07-23 06:18:47','8735be6c-e6bc-450f-93fd-3fa4ae081aa2'),(5201,69,28042,NULL,28041,1,'2021-07-23 06:18:47','2021-07-23 06:18:47','27399352-9bf3-4115-ab21-afb8bdc0e176'),(5202,85,28042,NULL,17964,1,'2021-07-23 06:18:47','2021-07-23 06:18:47','c2fbe204-d120-425f-abdb-70d5595382ac'),(5203,85,28042,NULL,17966,2,'2021-07-23 06:18:47','2021-07-23 06:18:47','3b07dacb-8860-4dc1-9197-477fb2154793'),(5204,85,28042,NULL,17968,3,'2021-07-23 06:18:47','2021-07-23 06:18:47','2f912246-0297-4d42-a827-b2178650babf'),(5205,85,28042,NULL,17971,4,'2021-07-23 06:18:47','2021-07-23 06:18:47','551949ce-abd4-4da2-9258-57d136e44fd2'),(5206,69,28043,NULL,17452,1,'2021-07-23 06:19:14','2021-07-23 06:19:14','bf4dfaa5-c5e4-4415-a590-8136898ce219'),(5207,69,28044,NULL,17451,1,'2021-07-23 06:19:14','2021-07-23 06:19:14','b24735aa-b358-4a3a-b831-24f8fd7107f2'),(5208,69,28045,NULL,17450,1,'2021-07-23 06:19:14','2021-07-23 06:19:14','cdfec53e-ef96-42ac-80b0-f5756219b9b1'),(5209,69,28046,NULL,17449,1,'2021-07-23 06:19:15','2021-07-23 06:19:15','54bf94a1-e05d-4cd4-a9b7-c932eee04e53'),(5210,69,28047,NULL,17448,1,'2021-07-23 06:19:15','2021-07-23 06:19:15','4259ac22-b350-41ef-a9a7-7dd47ee0daca'),(5211,69,28048,NULL,17447,1,'2021-07-23 06:19:15','2021-07-23 06:19:15','d9aad9fb-0ea1-464c-8736-bce8f1a9e758'),(5212,69,28049,NULL,17445,1,'2021-07-23 06:19:15','2021-07-23 06:19:15','8f7113bc-2313-44b1-bca5-949cdcc9af6f'),(5213,69,28050,NULL,17446,1,'2021-07-23 06:19:15','2021-07-23 06:19:15','d526d4b9-9bde-4a36-b670-1b9d4c70ea33'),(5214,69,28051,NULL,17444,1,'2021-07-23 06:19:15','2021-07-23 06:19:15','544a27ca-404e-47d3-9c9f-8ab39c563173'),(5215,69,28052,NULL,17443,1,'2021-07-23 06:19:16','2021-07-23 06:19:16','5da2afe0-e3a8-40a9-a003-457653471644'),(5216,69,28053,NULL,17441,1,'2021-07-23 06:19:16','2021-07-23 06:19:16','d8850aca-0aa4-4e91-9c54-212e67c3bbce'),(5217,69,28054,NULL,17442,1,'2021-07-23 06:19:16','2021-07-23 06:19:16','731c9baf-7a82-432d-b7dc-c413e0c991b4'),(5218,69,28055,NULL,17438,1,'2021-07-23 06:19:16','2021-07-23 06:19:16','d4677d99-5750-4190-9945-7012cd2f94ae'),(5219,69,28056,NULL,17440,1,'2021-07-23 06:19:16','2021-07-23 06:19:16','cd034d4e-f08d-4318-9a62-f9183ffcc494'),(5220,69,28057,NULL,17439,1,'2021-07-23 06:19:16','2021-07-23 06:19:16','8c77e34c-a9d1-47f9-8cb1-e02cf590b69d'),(5221,69,28058,NULL,17437,1,'2021-07-23 06:19:17','2021-07-23 06:19:17','b8f9225d-fc83-4468-b4a0-c2443536b677'),(5222,69,28059,NULL,17436,1,'2021-07-23 06:19:17','2021-07-23 06:19:17','1338468c-a25e-47ef-b52e-c587866cac1c'),(5223,69,28060,NULL,17435,1,'2021-07-23 06:19:17','2021-07-23 06:19:17','9b55bac2-caa1-4214-9d27-99861c2402c5'),(5224,69,28061,NULL,17453,1,'2021-07-23 06:19:17','2021-07-23 06:19:17','62457bd6-6fb2-43a4-9f23-bbfcff9b71dc'),(5225,69,28062,NULL,17434,1,'2021-07-23 06:19:17','2021-07-23 06:19:17','ae108674-5aab-4f25-9bea-71fba4455c03'),(5226,69,28063,NULL,17433,1,'2021-07-23 06:19:18','2021-07-23 06:19:18','13dd5317-686d-4cb8-9df1-f85223f01a04'),(5227,69,28064,NULL,17431,1,'2021-07-23 06:19:18','2021-07-23 06:19:18','3f9f77d4-a917-4f57-bcaf-c3951382facd'),(5228,69,28065,NULL,17432,1,'2021-07-23 06:19:18','2021-07-23 06:19:18','dc80e4a5-e8d2-4d5c-9114-4e590e515057'),(5229,69,28066,NULL,17182,1,'2021-07-23 06:19:18','2021-07-23 06:19:18','204f1f9d-5b57-489d-aacb-3537969dbf80'),(5230,69,28067,NULL,17429,1,'2021-07-23 06:19:18','2021-07-23 06:19:18','fd8311c0-ab0b-4aaf-b7d0-58293c0f3dbc'),(5231,69,28068,NULL,17428,1,'2021-07-23 06:19:18','2021-07-23 06:19:18','0a54634d-2176-4f12-8709-f2bfdcbda496'),(5232,69,28069,NULL,17430,1,'2021-07-23 06:19:19','2021-07-23 06:19:19','4a96a201-9b69-4f20-a477-5bf78ac6bb8b'),(5233,69,28070,NULL,17425,1,'2021-07-23 06:19:19','2021-07-23 06:19:19','600dba72-07fc-4f4f-a098-3436c274545a'),(5234,69,28071,NULL,17818,1,'2021-07-23 06:19:19','2021-07-23 06:19:19','7233cac0-84a6-407d-96ac-a07aefca2198'),(5235,69,28072,NULL,17169,1,'2021-07-23 06:19:19','2021-07-23 06:19:19','a09cf8db-c0d1-4772-88e5-064af0ddcdc8'),(5236,69,28073,NULL,17815,1,'2021-07-23 06:19:19','2021-07-23 06:19:19','da5f562d-dc3c-4047-bb32-4d464bc54ef4'),(5237,184,28074,NULL,17168,1,'2021-07-23 06:19:20','2021-07-23 06:19:20','330a1891-b5b0-45b0-adbc-15e77fe9c45e'),(5238,69,28074,NULL,17168,1,'2021-07-23 06:19:20','2021-07-23 06:19:20','79ff96bb-0d3b-4097-9638-9edcffc6932f'),(5239,184,28075,NULL,17167,1,'2021-07-23 06:19:20','2021-07-23 06:19:20','f55ea628-8741-44c7-9860-a65db3b422b0'),(5240,69,28075,NULL,17167,1,'2021-07-23 06:19:20','2021-07-23 06:19:20','6afac438-8f14-40c1-9cd1-4154ee209911'),(5241,69,28076,NULL,17811,1,'2021-07-23 06:19:20','2021-07-23 06:19:20','e20b5e3d-0800-4ae7-895f-fd94a43ffd9d'),(5242,184,28077,NULL,17166,1,'2021-07-23 06:19:20','2021-07-23 06:19:20','f5eb1849-5d7c-4eb5-b8de-bd42bf2aacfc'),(5243,69,28077,NULL,17166,1,'2021-07-23 06:19:20','2021-07-23 06:19:20','f3a98129-0a09-4564-802a-be0d1c85d32e'),(5244,184,28078,NULL,17089,1,'2021-07-23 06:19:21','2021-07-23 06:19:21','20db9446-b548-4c22-b923-49d2167687ef'),(5245,69,28078,NULL,17089,1,'2021-07-23 06:19:21','2021-07-23 06:19:21','754e1e28-393e-4657-ae30-0da0ae205c26'),(5246,184,28079,NULL,17743,1,'2021-07-23 06:19:21','2021-07-23 06:19:21','256cbac2-d413-41d0-8d5d-f570be00ad54'),(5247,69,28079,NULL,17743,1,'2021-07-23 06:19:21','2021-07-23 06:19:21','d6ca3346-1a16-444d-92b0-5be8f5fb28a9'),(5248,184,28080,NULL,17105,1,'2021-07-23 06:19:21','2021-07-23 06:19:21','a7b29b3a-85d1-4711-9576-b84cd7caf2b0'),(5249,69,28080,NULL,17105,1,'2021-07-23 06:19:21','2021-07-23 06:19:21','874342ce-567a-4887-933d-93a904846a89'),(5252,184,28082,NULL,17105,1,'2021-07-23 06:26:23','2021-07-23 06:26:23','5a669ec9-3a9b-4b17-a7c0-63763af6977b'),(5253,69,28082,NULL,17105,1,'2021-07-23 06:26:23','2021-07-23 06:26:23','7226d359-69d0-4884-9999-28492e40144c'),(5260,184,28084,NULL,17105,1,'2021-07-23 06:27:18','2021-07-23 06:27:18','252ae2cb-3282-4ffa-9a6c-e13cf04846b1'),(5261,69,28084,NULL,17105,1,'2021-07-23 06:27:18','2021-07-23 06:27:18','1712f611-2cbb-4838-85db-81f5597d2b59'),(5262,85,28084,NULL,17965,1,'2021-07-23 06:27:18','2021-07-23 06:27:18','d069ebcb-87d0-4ede-af2f-ef06849d9777'),(5263,85,28084,NULL,17971,2,'2021-07-23 06:27:18','2021-07-23 06:27:18','9c29ef03-0737-4826-947d-a74846fcdec3'),(5264,184,28085,NULL,17105,1,'2021-07-23 06:28:16','2021-07-23 06:28:16','1277db7a-4def-4e19-b018-9efd1aae3cee'),(5265,69,28085,NULL,17105,1,'2021-07-23 06:28:16','2021-07-23 06:28:16','5d376fa3-b033-4534-bd79-e56b443afd99'),(5266,85,28085,NULL,17965,1,'2021-07-23 06:28:16','2021-07-23 06:28:16','1b4e66b1-f75e-4c6b-bf02-698d379af60e'),(5267,85,28085,NULL,17971,2,'2021-07-23 06:28:16','2021-07-23 06:28:16','c3de8b62-8a21-4014-940a-e149d92e3679'),(5270,184,28087,NULL,17089,1,'2021-07-23 06:33:59','2021-07-23 06:33:59','95a17041-eb7c-4861-844b-aa53e4de3eb5'),(5271,69,28087,NULL,17089,1,'2021-07-23 06:33:59','2021-07-23 06:33:59','b27e0917-dece-4eec-a516-b952591d2afb'),(5274,184,28089,NULL,17167,1,'2021-07-23 06:47:17','2021-07-23 06:47:17','f2221b1d-594c-4f23-b0e1-f344a4655655'),(5275,69,28089,NULL,17167,1,'2021-07-23 06:47:17','2021-07-23 06:47:17','8915e7d9-e4e3-4095-a43a-7319a6bc33d0'),(5281,85,17680,NULL,17964,1,'2021-07-23 06:49:43','2021-07-23 06:49:43','8bd0021b-7ee3-4760-8d3f-ba3896524ab8'),(5282,85,17680,NULL,17970,2,'2021-07-23 06:49:43','2021-07-23 06:49:43','4f252d86-704b-4df4-8de9-4cce33d1c3a9'),(5283,85,17680,NULL,17971,3,'2021-07-23 06:49:43','2021-07-23 06:49:43','826ae06f-3788-4c17-9eed-8a3a4aca8fc6'),(5284,184,28091,NULL,17168,1,'2021-07-23 06:49:43','2021-07-23 06:49:43','a2f93545-53bd-462e-bdf7-c533b2644ec1'),(5285,69,28091,NULL,17168,1,'2021-07-23 06:49:43','2021-07-23 06:49:43','498530c0-92f0-4887-a0ac-79bec96b6df4'),(5286,85,28091,NULL,17964,1,'2021-07-23 06:49:43','2021-07-23 06:49:43','4e6a93b7-816d-414e-8a85-17ebfd5fc779'),(5287,85,28091,NULL,17970,2,'2021-07-23 06:49:43','2021-07-23 06:49:43','626d8ddb-1a96-4268-8902-886231a17865'),(5288,85,28091,NULL,17971,3,'2021-07-23 06:49:43','2021-07-23 06:49:43','d9210a59-748a-4a5c-bce9-f021894628c4'),(5299,85,17684,NULL,17964,1,'2021-07-23 06:55:08','2021-07-23 06:55:08','09261597-4d6a-4032-b44f-a07151800b37'),(5300,85,17684,NULL,17965,2,'2021-07-23 06:55:08','2021-07-23 06:55:08','c1fd718c-e2ff-430f-9c29-384d044a4725'),(5301,69,28095,NULL,28094,1,'2021-07-23 06:55:08','2021-07-23 06:55:08','38b18138-91f8-4db9-a9ff-e1d88137b236'),(5302,85,28095,NULL,17964,1,'2021-07-23 06:55:08','2021-07-23 06:55:08','94cd9d20-7f82-4d9d-b4bc-b16fa44015ca'),(5303,85,28095,NULL,17965,2,'2021-07-23 06:55:08','2021-07-23 06:55:08','658f6e16-b615-4c03-8a65-8cda1fccd3f8'),(5310,184,17684,NULL,28097,1,'2021-07-23 06:57:34','2021-07-23 06:57:34','f909be23-91f1-46c3-8440-23991fff4e54'),(5311,69,17684,NULL,28097,1,'2021-07-23 06:57:34','2021-07-23 06:57:34','b7712417-8f8b-408f-a76a-ac92c27f355c'),(5312,184,28098,NULL,28097,1,'2021-07-23 06:57:34','2021-07-23 06:57:34','d6f87af1-0345-4bdb-b62e-eb8ab4587e71'),(5313,69,28098,NULL,28097,1,'2021-07-23 06:57:34','2021-07-23 06:57:34','6bbfd332-aa69-457b-96fb-8756e77c0956'),(5314,85,28098,NULL,17964,1,'2021-07-23 06:57:34','2021-07-23 06:57:34','bb80ccff-ad1e-4ac4-a700-fa1224ab8de8'),(5315,85,28098,NULL,17965,2,'2021-07-23 06:57:34','2021-07-23 06:57:34','44d3b45e-50e4-4e81-8157-30e09ad74a69'),(5316,184,28099,NULL,17168,1,'2021-07-23 06:57:53','2021-07-23 06:57:53','76911a20-7b11-4830-b027-2c33e0353ba3'),(5317,69,28099,NULL,17168,1,'2021-07-23 06:57:53','2021-07-23 06:57:53','7225ab01-bc41-41d8-8534-6bde48caf690'),(5318,85,28099,NULL,17964,1,'2021-07-23 06:57:53','2021-07-23 06:57:53','3f7ef402-a8ad-4326-ad72-37cff0c3f3b8'),(5319,85,28099,NULL,17970,2,'2021-07-23 06:57:53','2021-07-23 06:57:53','76c37d3e-691d-4e25-a718-2194805bfd83'),(5320,85,28099,NULL,17971,3,'2021-07-23 06:57:53','2021-07-23 06:57:53','eb231208-0a66-4c14-a9ba-932c1da1aaec'),(5328,184,17678,NULL,28101,1,'2021-07-23 07:26:56','2021-07-23 07:26:56','8a64848b-84e4-41d8-9ef9-b2e880c6923d'),(5329,69,17678,NULL,28101,1,'2021-07-23 07:26:56','2021-07-23 07:26:56','4f0f2a62-205a-4181-9a6b-04d661ff0479'),(5330,85,17678,NULL,17964,1,'2021-07-23 07:26:56','2021-07-23 07:26:56','b1963931-147b-457e-8b42-b31d4a98ca6a'),(5331,85,17678,NULL,17965,2,'2021-07-23 07:26:56','2021-07-23 07:26:56','11e5ab6c-954a-4107-a2b1-ebb1a917d7ef'),(5332,85,17678,NULL,17966,3,'2021-07-23 07:26:56','2021-07-23 07:26:56','84f29e61-b7d2-4da1-83a1-ba1947e7ec6e'),(5333,85,17678,NULL,17968,4,'2021-07-23 07:26:56','2021-07-23 07:26:56','88df6ab9-42ff-4fb5-b6de-98ca1cd4ac2c'),(5334,184,28102,NULL,28101,1,'2021-07-23 07:26:56','2021-07-23 07:26:56','81160783-35cf-4860-8d53-a6f7427edbb3'),(5335,69,28102,NULL,28101,1,'2021-07-23 07:26:56','2021-07-23 07:26:56','81610cd2-85dc-40ad-937c-645cb6ce3ed6'),(5336,85,28102,NULL,17964,1,'2021-07-23 07:26:56','2021-07-23 07:26:56','eaec389e-012b-4ae9-9878-d6b2ff7c94bf'),(5337,85,28102,NULL,17965,2,'2021-07-23 07:26:56','2021-07-23 07:26:56','000bff99-fd1b-4f6b-8574-3cdae6b59d0a'),(5338,85,28102,NULL,17966,3,'2021-07-23 07:26:56','2021-07-23 07:26:56','1c2c4764-fc5e-4c01-90d2-122dbf5e66dd'),(5339,85,28102,NULL,17968,4,'2021-07-23 07:26:56','2021-07-23 07:26:56','e6da63f4-e337-48f2-b2eb-7e8316c388b0'),(5340,184,30411,NULL,28041,1,'2021-07-30 01:23:04','2021-07-30 01:23:04','e8e3f46e-ae0f-45de-b7f4-ba6957bed857'),(5341,69,30411,NULL,28041,1,'2021-07-30 01:23:04','2021-07-30 01:23:04','ac8fa875-3dd2-4355-95c2-dbbc951e77e9'),(5342,85,30411,NULL,17964,1,'2021-07-30 01:23:04','2021-07-30 01:23:04','68beceb0-80e7-48d3-815a-4aa6518f229f'),(5343,85,30411,NULL,17966,2,'2021-07-30 01:23:04','2021-07-30 01:23:04','e0b76959-afd2-4674-871d-e758e986c79f'),(5344,85,30411,NULL,17968,3,'2021-07-30 01:23:04','2021-07-30 01:23:04','17738b8e-c734-426c-a229-200b3c9bf352'),(5345,85,30411,NULL,17971,4,'2021-07-30 01:23:04','2021-07-30 01:23:04','ce035e78-fcc7-4661-bab8-db5bb60edb2a'),(5348,184,30413,NULL,17089,1,'2021-07-30 01:25:54','2021-07-30 01:25:54','71748e1e-7d9c-4432-b8f1-e07b3780177a'),(5349,69,30413,NULL,17089,1,'2021-07-30 01:25:54','2021-07-30 01:25:54','a22bb765-0502-4325-b56b-afa4d6231910'),(5354,184,30415,NULL,28097,1,'2021-07-30 01:29:29','2021-07-30 01:29:29','fe7d396e-d8b6-49c5-b3d3-884e721ed1a7'),(5355,69,30415,NULL,28097,1,'2021-07-30 01:29:29','2021-07-30 01:29:29','eeaaa3bf-4001-4972-9c01-74f73486ff44'),(5356,85,30415,NULL,17964,1,'2021-07-30 01:29:29','2021-07-30 01:29:29','c581e878-4efc-491e-9589-c927dc71fea3'),(5357,85,30415,NULL,17965,2,'2021-07-30 01:29:29','2021-07-30 01:29:29','597b2f5f-ecc4-4d39-a5dc-231db6b4b137'),(5360,184,30417,NULL,17743,1,'2021-07-30 01:43:13','2021-07-30 01:43:13','c59d98e8-70e3-404f-b71c-77a7c2f5a2a8'),(5361,69,30417,NULL,17743,1,'2021-07-30 01:43:13','2021-07-30 01:43:13','b94fa605-020e-462c-86ca-48148a440629'),(5362,184,30418,NULL,17743,1,'2021-07-30 01:43:29','2021-07-30 01:43:29','7033c152-71f5-4cba-adf2-989f6fd353b1'),(5363,69,30418,NULL,17743,1,'2021-07-30 01:43:29','2021-07-30 01:43:29','fd5f8309-ad1d-446e-92b0-b1b50f4bfb91'),(5364,184,30419,NULL,17168,1,'2021-07-30 01:44:03','2021-07-30 01:44:03','89b1e26c-8a90-4878-bd65-fb4cf8bc86b4'),(5365,69,30419,NULL,17168,1,'2021-07-30 01:44:03','2021-07-30 01:44:03','aeb6ce7f-beeb-4b18-8e68-313722d1851b'),(5366,85,30419,NULL,17964,1,'2021-07-30 01:44:03','2021-07-30 01:44:03','d5f3dc54-92eb-48d7-bf19-f6bb0c2ad26a'),(5367,85,30419,NULL,17970,2,'2021-07-30 01:44:03','2021-07-30 01:44:03','9e32ae68-09ec-4f6f-aef9-59fbceed34ae'),(5368,85,30419,NULL,17971,3,'2021-07-30 01:44:03','2021-07-30 01:44:03','aa13a46c-cb21-49af-8d4a-0fc088ad6307'),(5369,184,30420,NULL,17743,1,'2021-07-30 01:44:40','2021-07-30 01:44:40','93246164-5b38-4b71-adff-5369c2c0da42'),(5370,69,30420,NULL,17743,1,'2021-07-30 01:44:40','2021-07-30 01:44:40','855eeaf2-0332-46ad-a940-8b0d1fb8e340'),(5373,184,30422,NULL,17166,1,'2021-07-30 02:03:25','2021-07-30 02:03:25','cb740630-4164-483e-8f8b-b5606ef0960b'),(5374,69,30422,NULL,17166,1,'2021-07-30 02:03:25','2021-07-30 02:03:25','199d97fc-71be-4568-9e47-60233ddb68ef'),(5375,184,30423,NULL,17166,1,'2021-07-30 02:03:43','2021-07-30 02:03:43','e121836a-07b7-46e9-b6ad-34cfffd759c7'),(5376,69,30423,NULL,17166,1,'2021-07-30 02:03:43','2021-07-30 02:03:43','87ab8f23-59bd-4430-abef-2d892ae2f91b'),(5377,70,30427,NULL,30428,1,'2021-08-06 06:54:12','2021-08-06 06:54:12','14cdf723-c703-4ec1-bbe1-a23649902aa8'),(5378,85,30427,NULL,17966,3,'2021-08-06 06:55:56','2021-08-06 06:58:44','83f74b9f-f3d2-419b-bd37-a9b0d3a05f73'),(5379,85,30427,NULL,17964,1,'2021-08-06 06:56:01','2021-08-06 06:56:01','d4c2e3ea-a050-4cc6-a176-af27d8a6b31b'),(5380,85,30427,NULL,17965,2,'2021-08-06 06:58:44','2021-08-06 06:58:44','9f665c1b-3289-4c8c-8597-3037f57fa219'),(5381,85,30427,NULL,17969,5,'2021-08-06 06:58:53','2021-08-26 23:19:35','b9167c4a-3cb4-4814-b3ac-80cd4b3df382'),(5383,85,30427,NULL,17971,6,'2021-08-06 06:59:04','2021-08-06 06:59:04','4fc7a6a6-1eac-42e3-9543-7b1cc48bc091'),(5384,70,30429,NULL,30428,1,'2021-08-06 07:05:52','2021-08-06 07:05:52','38a13f48-c6a1-43cd-b467-f1bd82fe454a'),(5385,85,30429,NULL,17964,1,'2021-08-06 07:05:52','2021-08-06 07:05:52','539fb79d-34fb-498f-a5c1-816a736e4ea0'),(5386,85,30429,NULL,17965,2,'2021-08-06 07:05:52','2021-08-06 07:05:52','4c0358c1-add8-41f1-92c2-bc3fc4458bf3'),(5387,85,30429,NULL,17966,3,'2021-08-06 07:05:52','2021-08-06 07:05:52','964f6c6e-e5dc-4a33-8f73-4aa2182f42c7'),(5388,85,30429,NULL,17969,4,'2021-08-06 07:05:52','2021-08-06 07:05:52','1a4558c0-2f9e-44fc-8ac3-4d126a22f8e1'),(5389,85,30429,NULL,17970,5,'2021-08-06 07:05:52','2021-08-06 07:05:52','88296bf4-81db-4677-b340-ecd3f4b856bf'),(5390,85,30429,NULL,17971,6,'2021-08-06 07:05:52','2021-08-06 07:05:52','d04630ca-66ed-41ee-bf25-a001f7a21b09'),(5398,70,30431,NULL,30428,1,'2021-08-06 07:11:15','2021-08-06 07:11:15','dd9552e8-57b7-4106-bc41-e8d98013238c'),(5399,85,30431,NULL,17964,1,'2021-08-06 07:11:15','2021-08-06 07:11:15','20bcd561-6e32-4256-a653-25548f4c1a98'),(5400,85,30431,NULL,17965,2,'2021-08-06 07:11:15','2021-08-06 07:11:15','f4063905-d9d3-4553-8675-317ef9a6e018'),(5401,85,30431,NULL,17966,3,'2021-08-06 07:11:15','2021-08-06 07:11:15','c28cdb70-9fa7-40d4-a4b9-92a23b338fcb'),(5402,85,30431,NULL,17969,4,'2021-08-06 07:11:15','2021-08-06 07:11:15','a89b49da-fbf9-44db-8126-bf70c329cb7f'),(5403,85,30431,NULL,17970,5,'2021-08-06 07:11:15','2021-08-06 07:11:15','43e50cb6-6b1e-4c61-980d-60fa3d7876dc'),(5404,85,30431,NULL,17971,6,'2021-08-06 07:11:15','2021-08-06 07:11:15','b9f0ec88-21d5-4560-830f-81e095c0241d'),(5437,69,30427,NULL,30441,1,'2021-08-12 03:41:27','2021-08-12 03:41:27','cc104ffe-1292-4fa3-bd5d-c3ba9debf6b4'),(5438,69,30442,NULL,30441,1,'2021-08-12 03:41:27','2021-08-12 03:41:27','8350ae95-6af6-4bd9-96c0-d713e8548ab3'),(5439,70,30442,NULL,30428,1,'2021-08-12 03:41:27','2021-08-12 03:41:27','ee3e94b6-0608-4577-9672-7c19258d8290'),(5440,85,30442,NULL,17964,1,'2021-08-12 03:41:27','2021-08-12 03:41:27','e6df9281-5a8b-4ee8-b2e8-46279334a271'),(5441,85,30442,NULL,17965,2,'2021-08-12 03:41:27','2021-08-12 03:41:27','e454938c-8bc2-4b4f-b52c-25f4d6d8dd5a'),(5442,85,30442,NULL,17966,3,'2021-08-12 03:41:27','2021-08-12 03:41:27','1d39a4cd-61c4-4e88-9b39-19bb35137679'),(5443,85,30442,NULL,17969,4,'2021-08-12 03:41:27','2021-08-12 03:41:27','f0b98f37-a74b-4bee-a11c-020a29e95116'),(5444,85,30442,NULL,17970,5,'2021-08-12 03:41:27','2021-08-12 03:41:27','b32ae81a-8b58-4365-add4-50d91bc7a980'),(5445,85,30442,NULL,17971,6,'2021-08-12 03:41:27','2021-08-12 03:41:27','001fd85e-0ab7-4a9f-9348-43f6dd995d12'),(5454,69,30450,NULL,30441,1,'2021-08-12 04:01:48','2021-08-12 04:01:48','bda70065-81dd-4e92-9cea-acd01a5b523d'),(5455,70,30450,NULL,30428,1,'2021-08-12 04:01:48','2021-08-12 04:01:48','53ed0489-5ec6-40ec-bd3a-e83dbfc76bcc'),(5456,85,30450,NULL,17964,1,'2021-08-12 04:01:48','2021-08-12 04:01:48','fb4fb07e-de92-441f-8696-444a644ad141'),(5457,85,30450,NULL,17965,2,'2021-08-12 04:01:48','2021-08-12 04:01:48','d554a06b-3f22-4ff9-880a-ff4cd97ee292'),(5458,85,30450,NULL,17966,3,'2021-08-12 04:01:48','2021-08-12 04:01:48','2da477e5-803d-4549-9daf-4609439f3219'),(5459,85,30450,NULL,17969,4,'2021-08-12 04:01:48','2021-08-12 04:01:48','f636d828-e58c-474c-bcae-6a85a528d3e5'),(5460,85,30450,NULL,17970,5,'2021-08-12 04:01:48','2021-08-12 04:01:48','ba2715ad-e76a-4155-865a-a9fb7edf5722'),(5461,85,30450,NULL,17971,6,'2021-08-12 04:01:48','2021-08-12 04:01:48','5c696c93-b4e8-49ad-980d-fa524ee2b8c7'),(5470,69,30452,NULL,30441,1,'2021-08-12 04:42:21','2021-08-12 04:42:21','fa8cb7bb-d269-4f0c-9c35-6fbd86a1cc9c'),(5471,70,30452,NULL,30428,1,'2021-08-12 04:42:21','2021-08-12 04:42:21','b87521fd-5537-406d-a10a-435de5bb67d8'),(5472,85,30452,NULL,17964,1,'2021-08-12 04:42:21','2021-08-12 04:42:21','13ae5e3c-02a1-4e7e-8c3d-2da6a0570ae0'),(5473,85,30452,NULL,17965,2,'2021-08-12 04:42:21','2021-08-12 04:42:21','92f7710d-0805-4f74-b4a8-20fbd0269a9d'),(5474,85,30452,NULL,17966,3,'2021-08-12 04:42:21','2021-08-12 04:42:21','1a8adf4f-518e-480e-869b-d20f83801d0a'),(5475,85,30452,NULL,17969,4,'2021-08-12 04:42:21','2021-08-12 04:42:21','7ce0ae03-220f-4c68-bc73-d142b447c07c'),(5476,85,30452,NULL,17970,5,'2021-08-12 04:42:21','2021-08-12 04:42:21','2f5fcd66-8a2a-499a-9b96-75acc0784226'),(5477,85,30452,NULL,17971,6,'2021-08-12 04:42:21','2021-08-12 04:42:21','1399db94-41ba-43ba-8911-9f0ba6482145'),(5480,184,30454,NULL,17089,1,'2021-08-13 04:45:47','2021-08-13 04:45:47','cfbcf823-da75-479c-b416-e4c029399f2a'),(5481,69,30454,NULL,17089,1,'2021-08-13 04:45:47','2021-08-13 04:45:47','c3b0db41-b02e-4744-80e8-6941a61d726a'),(5484,184,30456,NULL,17089,1,'2021-08-13 04:46:40','2021-08-13 04:46:40','ea25bd4c-a1a9-4549-8aa0-95c584619a0c'),(5485,69,30456,NULL,17089,1,'2021-08-13 04:46:40','2021-08-13 04:46:40','ea5f3e4d-b0b7-42cc-807e-62593883568e'),(5488,184,30458,NULL,17167,1,'2021-08-13 04:53:52','2021-08-13 04:53:52','77e9d05c-086d-4e07-a594-a8619e6809bb'),(5489,69,30458,NULL,17167,1,'2021-08-13 04:53:52','2021-08-13 04:53:52','fd2c5278-8e5e-4678-a03e-4e9932222731'),(5492,184,30460,NULL,17167,1,'2021-08-13 04:54:39','2021-08-13 04:54:39','306f8a4d-b0a6-466f-9d29-bedb9bcee1dc'),(5493,69,30460,NULL,17167,1,'2021-08-13 04:54:39','2021-08-13 04:54:39','3c10af4a-32a1-46e0-b11b-5e029554cd69'),(5500,184,30462,NULL,28101,1,'2021-08-13 04:56:17','2021-08-13 04:56:17','173b7108-0ded-47ed-99ff-8dd397f53d60'),(5501,69,30462,NULL,28101,1,'2021-08-13 04:56:17','2021-08-13 04:56:17','94bfebd3-15fa-4f9e-873c-80b9520ac180'),(5502,85,30462,NULL,17964,1,'2021-08-13 04:56:17','2021-08-13 04:56:17','ea5713da-a69f-4756-9bb0-69593491f153'),(5503,85,30462,NULL,17965,2,'2021-08-13 04:56:17','2021-08-13 04:56:17','3d538cb2-fe3e-4848-a8a9-9d34b057628e'),(5504,85,30462,NULL,17966,3,'2021-08-13 04:56:17','2021-08-13 04:56:17','dd874ad2-0999-442f-9bd2-46aedff2793f'),(5505,85,30462,NULL,17968,4,'2021-08-13 04:56:17','2021-08-13 04:56:17','a429a1ff-6981-4243-9c10-eb7d3584c698'),(5512,184,30464,NULL,28101,1,'2021-08-13 04:56:59','2021-08-13 04:56:59','377689d0-43ac-4c57-b238-295f73d7de64'),(5513,69,30464,NULL,28101,1,'2021-08-13 04:56:59','2021-08-13 04:56:59','6835fb3c-5b84-4874-8fe9-2215a07c10d4'),(5514,85,30464,NULL,17964,1,'2021-08-13 04:56:59','2021-08-13 04:56:59','59e5a67b-1bc3-4f1b-a6c4-6d13963598cf'),(5515,85,30464,NULL,17965,2,'2021-08-13 04:56:59','2021-08-13 04:56:59','2300d4c8-6412-43c7-b745-14a77840a4fd'),(5516,85,30464,NULL,17966,3,'2021-08-13 04:56:59','2021-08-13 04:56:59','540a6e45-4afa-4ab0-9d8f-42632dfb4e9e'),(5517,85,30464,NULL,17968,4,'2021-08-13 04:56:59','2021-08-13 04:56:59','3cd58237-7ca3-4c33-aa35-56cb894dab2b'),(5524,184,30466,NULL,28101,1,'2021-08-13 04:57:53','2021-08-13 04:57:53','9e7b9bae-1bef-44df-bc9a-cf1757812ab2'),(5525,69,30466,NULL,28101,1,'2021-08-13 04:57:53','2021-08-13 04:57:53','2fbe0f05-93d3-4228-a039-311b9dc57b90'),(5526,85,30466,NULL,17964,1,'2021-08-13 04:57:53','2021-08-13 04:57:53','0b018de7-183f-431d-9e55-8cc7262fbf21'),(5527,85,30466,NULL,17965,2,'2021-08-13 04:57:53','2021-08-13 04:57:53','dd4c17eb-5d50-4b74-a271-0503de497c53'),(5528,85,30466,NULL,17966,3,'2021-08-13 04:57:53','2021-08-13 04:57:53','ad03acbb-6247-40a6-8c29-8da4908edef5'),(5529,85,30466,NULL,17968,4,'2021-08-13 04:57:53','2021-08-13 04:57:53','56caa8d3-12ed-48da-8a5e-d9caeafd5d4c'),(5532,184,30468,NULL,17166,1,'2021-08-13 06:46:55','2021-08-13 06:46:55','4765de85-0f46-4167-8ead-6b0b56611a69'),(5533,69,30468,NULL,17166,1,'2021-08-13 06:46:55','2021-08-13 06:46:55','e401fa56-c5fe-48af-8875-8eebb2de7ac2'),(5536,184,30470,NULL,17166,1,'2021-08-13 06:47:41','2021-08-13 06:47:41','2c8ebf06-5483-4656-8be8-9f2b645389e9'),(5537,69,30470,NULL,17166,1,'2021-08-13 06:47:41','2021-08-13 06:47:41','7dacbf23-a10f-4356-ae86-0590c6dea0e7'),(5547,85,30427,NULL,17968,4,'2021-08-26 23:19:35','2021-08-26 23:19:35','da30c2b2-0afa-4fbe-b67f-45acb89be4b1'),(5548,69,38101,NULL,30441,1,'2021-08-26 23:19:36','2021-08-26 23:19:36','829e7456-e5cf-44b8-b360-0eef5422ada0'),(5549,70,38101,NULL,30428,1,'2021-08-26 23:19:36','2021-08-26 23:19:36','edaeee2f-53f1-4930-8c0e-9ba7f7f9b4fa'),(5550,85,38101,NULL,17964,1,'2021-08-26 23:19:36','2021-08-26 23:19:36','372b8d99-2a3e-44e6-926d-bf0dea8165f3'),(5551,85,38101,NULL,17965,2,'2021-08-26 23:19:36','2021-08-26 23:19:36','8f274da4-0c42-4ab8-b124-ac63520f25b4'),(5552,85,38101,NULL,17966,3,'2021-08-26 23:19:36','2021-08-26 23:19:36','8a3a8115-b05e-47f0-b2ec-226ffad4b5f2'),(5553,85,38101,NULL,17968,4,'2021-08-26 23:19:36','2021-08-26 23:19:36','5d77d572-a858-46e7-bd16-34d31c83e25a'),(5554,85,38101,NULL,17969,5,'2021-08-26 23:19:36','2021-08-26 23:19:36','ddfb7658-8e82-45b1-9f90-727eb816117c'),(5555,85,38101,NULL,17971,6,'2021-08-26 23:19:36','2021-08-26 23:19:36','a075ca2e-d449-4bf5-96a5-fb8ea3281f2d'),(5569,85,18156,NULL,17964,1,'2021-08-26 23:20:15','2021-08-26 23:20:15','e7618661-c797-4f9e-9361-502575a29e39'),(5570,85,18156,NULL,17965,2,'2021-08-26 23:20:15','2021-08-26 23:20:15','0eaeb206-fb28-4862-9deb-b0dd75e865d9'),(5571,85,18156,NULL,17969,3,'2021-08-26 23:20:15','2021-08-26 23:20:15','0e7f788b-e53f-4746-95e6-ef53065a3573'),(5572,69,38103,NULL,22084,1,'2021-08-26 23:20:15','2021-08-26 23:20:15','fe9805f5-6da3-4a0c-92d6-ab342023bb7c'),(5573,70,38103,NULL,17868,1,'2021-08-26 23:20:15','2021-08-26 23:20:15','034ec934-88e5-4985-aefa-ca0fa4bb1308'),(5574,90,38103,NULL,18149,1,'2021-08-26 23:20:15','2021-08-26 23:20:15','33010c55-5b04-4483-8aba-ba18ee18016d'),(5575,90,38103,NULL,18150,2,'2021-08-26 23:20:15','2021-08-26 23:20:15','0c8ce62e-dd06-43b5-b057-973960df4f4b'),(5576,90,38103,NULL,18105,3,'2021-08-26 23:20:15','2021-08-26 23:20:15','26283c09-308e-487b-b1fe-52a99021bb76'),(5577,90,38103,NULL,18151,4,'2021-08-26 23:20:15','2021-08-26 23:20:15','6c562065-edea-4851-a45b-aa8c30a5f34f'),(5578,90,38103,NULL,18152,5,'2021-08-26 23:20:15','2021-08-26 23:20:15','f838d678-f3a1-495d-83d0-d711ec47e775'),(5579,90,38103,NULL,18153,6,'2021-08-26 23:20:15','2021-08-26 23:20:15','bd736e90-3e0a-4033-b9c7-2e741e3d32a7'),(5580,90,38103,NULL,18154,7,'2021-08-26 23:20:15','2021-08-26 23:20:15','051449fc-08b4-42d5-9f6b-fc1501bc3007'),(5581,90,38103,NULL,18155,8,'2021-08-26 23:20:15','2021-08-26 23:20:15','0b30907f-c2c9-4780-880a-23929f9e44e4'),(5582,85,38103,NULL,17964,1,'2021-08-26 23:20:15','2021-08-26 23:20:15','bb37dd13-d9dd-41e4-a7a6-49b1571a0a0f'),(5583,85,38103,NULL,17965,2,'2021-08-26 23:20:15','2021-08-26 23:20:15','ab2fd507-8e4b-45d9-91dc-06e80cf63f0b'),(5584,85,38103,NULL,17969,3,'2021-08-26 23:20:15','2021-08-26 23:20:15','6341cfa6-3b02-4aaf-ac52-306f75b37c7b'),(5588,85,22210,NULL,17964,1,'2021-08-26 23:20:47','2021-08-26 23:20:47','8d3ee44c-b7e9-463d-92d4-ab34b27cd98a'),(5589,85,22210,NULL,17966,2,'2021-08-26 23:20:47','2021-08-26 23:20:47','ee39659f-064c-4166-a419-73063ffa3b0a'),(5590,69,38104,NULL,27826,1,'2021-08-26 23:20:47','2021-08-26 23:20:47','1972ad0f-457a-4816-a1b3-f8b70806e78c'),(5591,70,38104,NULL,22317,1,'2021-08-26 23:20:47','2021-08-26 23:20:47','fe086103-60bc-4fc1-a7e0-b92741d7c0d4'),(5592,85,38104,NULL,17964,1,'2021-08-26 23:20:47','2021-08-26 23:20:47','2c1efad3-7c9c-44ef-8b17-44a42541a7df'),(5593,85,38104,NULL,17966,2,'2021-08-26 23:20:47','2021-08-26 23:20:47','5d35fad8-3848-4f95-ad7d-ad34a5f65ee9'),(5594,85,38104,NULL,17969,3,'2021-08-26 23:20:47','2021-08-26 23:20:47','bd22b567-cf6e-4bda-a0d2-f6965f3ae145'),(5610,85,18139,NULL,17964,1,'2021-08-26 23:21:32','2021-08-26 23:21:32','fc513ac6-8b3c-4452-8425-502be6dacc23'),(5611,85,18139,NULL,17965,2,'2021-08-26 23:21:32','2021-08-26 23:21:32','c36d99b3-6184-4ec5-a345-4ab2a183d45e'),(5612,85,18139,NULL,17971,5,'2021-08-26 23:21:32','2021-09-03 00:54:26','cb930711-2ec7-492f-9de0-c0cd2339da2a'),(5613,69,38106,NULL,21979,1,'2021-08-26 23:21:32','2021-08-26 23:21:32','6a3a99bd-d311-46cb-9625-01c8e6a38c07'),(5614,70,38106,NULL,17857,1,'2021-08-26 23:21:32','2021-08-26 23:21:32','d71cca13-c3e2-4772-b747-e395a4f6e6b7'),(5615,90,38106,NULL,18129,1,'2021-08-26 23:21:32','2021-08-26 23:21:32','b91a9ad1-8a18-4b7c-9c15-2bbe2c1f21e0'),(5616,90,38106,NULL,18130,2,'2021-08-26 23:21:32','2021-08-26 23:21:32','45112e6d-f650-4cb9-93ca-f07bc7d7a3f6'),(5617,90,38106,NULL,18131,3,'2021-08-26 23:21:32','2021-08-26 23:21:32','0d0e705b-9264-4498-90fc-47ad5396898d'),(5618,90,38106,NULL,18132,4,'2021-08-26 23:21:32','2021-08-26 23:21:32','6cb4f6c7-d51e-40a9-90c4-2b55911b2115'),(5619,90,38106,NULL,18133,5,'2021-08-26 23:21:32','2021-08-26 23:21:32','24a72e97-33c7-4535-b83b-5c8bc79b5e01'),(5620,90,38106,NULL,18134,6,'2021-08-26 23:21:32','2021-08-26 23:21:32','62a1f6ba-9994-410c-aa1b-e8a18df86ca2'),(5621,90,38106,NULL,18135,7,'2021-08-26 23:21:32','2021-08-26 23:21:32','7fc6521e-77b9-4351-b917-81e6a1911558'),(5622,85,38106,NULL,17964,1,'2021-08-26 23:21:32','2021-08-26 23:21:32','a086b0c1-155f-4f90-a1a3-327fa2a4c231'),(5623,85,38106,NULL,17965,2,'2021-08-26 23:21:32','2021-08-26 23:21:32','62f35014-e8b6-45f4-bd9a-065dbd0c5754'),(5624,85,38106,NULL,17970,3,'2021-08-26 23:21:32','2021-08-26 23:21:32','3da9dc2f-89bf-460e-a1f3-0ed7be1aa5b1'),(5625,85,38106,NULL,17971,4,'2021-08-26 23:21:32','2021-08-26 23:21:32','38f30250-a65e-4926-b4d7-78111199ade2'),(5626,84,38106,NULL,18057,1,'2021-08-26 23:21:32','2021-08-26 23:21:32','5d0d99d7-d4e0-4546-8cdd-165649d6ec0f'),(5640,85,18142,NULL,17964,1,'2021-08-26 23:22:04','2021-08-26 23:22:04','4af06ff0-904d-4cc7-b4cd-071b5bc95ff8'),(5641,85,18142,NULL,17967,3,'2021-08-26 23:22:04','2021-08-26 23:22:04','0409ce0a-18cc-4fb2-97ec-b8a2fd70575e'),(5642,69,38108,NULL,22011,1,'2021-08-26 23:22:04','2021-08-26 23:22:04','1fd09865-e73e-43bd-be74-1b2947001df8'),(5643,70,38108,NULL,17862,1,'2021-08-26 23:22:04','2021-08-26 23:22:04','d3930dc6-7664-47af-ac98-e300557aca9e'),(5644,90,38108,NULL,18114,1,'2021-08-26 23:22:04','2021-08-26 23:22:04','24e3152b-0f55-4048-a917-4fc71528463f'),(5645,90,38108,NULL,18115,2,'2021-08-26 23:22:04','2021-08-26 23:22:04','a71d5c7f-3c0d-48e5-be38-d836b3cc89da'),(5646,90,38108,NULL,18040,3,'2021-08-26 23:22:04','2021-08-26 23:22:04','a86425ea-4d61-4296-9f41-14fa19300d37'),(5647,90,38108,NULL,18042,4,'2021-08-26 23:22:04','2021-08-26 23:22:04','b60d4bfb-cda6-44d1-9b79-1ef2fb05518a'),(5648,90,38108,NULL,18041,5,'2021-08-26 23:22:04','2021-08-26 23:22:04','f15e4844-f7e0-47e7-94f3-9a9ce81306e2'),(5649,90,38108,NULL,18105,6,'2021-08-26 23:22:04','2021-08-26 23:22:04','e8e1a99e-aa5e-49cb-9de1-abf310f0f2d6'),(5650,90,38108,NULL,18120,7,'2021-08-26 23:22:04','2021-08-26 23:22:04','cffbbbf7-1dfe-487b-8e27-eaef0980b93f'),(5651,85,38108,NULL,17964,1,'2021-08-26 23:22:04','2021-08-26 23:22:04','8ca2f021-06c1-41c9-9e54-b27cce5b8773'),(5652,85,38108,NULL,17966,2,'2021-08-26 23:22:04','2021-08-26 23:22:04','d55340e9-a79d-4e38-9a4e-6a9cd779ac9c'),(5653,85,38108,NULL,17967,3,'2021-08-26 23:22:04','2021-08-26 23:22:04','e6e3ea27-174c-404d-9ebc-75d23ebc47d8'),(5654,84,38108,NULL,18057,1,'2021-08-26 23:22:04','2021-08-26 23:22:04','a7266fe2-534e-4415-b78b-3cbfe6b187a4'),(5670,85,18168,NULL,17964,1,'2021-08-26 23:22:51','2021-08-26 23:22:51','17059c24-44b1-49b4-a95b-33c5b46cfaab'),(5671,85,18168,NULL,17966,2,'2021-08-26 23:22:51','2021-08-26 23:22:51','f0f3151d-3f4c-40df-81bf-3cfb5f8ddd27'),(5672,85,18168,NULL,17967,3,'2021-08-26 23:22:51','2021-08-26 23:22:51','b2cfc490-9e95-4615-ac9f-152592c0adab'),(5673,85,18168,NULL,17969,4,'2021-08-26 23:22:51','2021-08-26 23:22:51','162f8e1b-60a3-4dc5-b8b6-2fd137d7b7f6'),(5674,69,38110,NULL,22160,1,'2021-08-26 23:22:51','2021-08-26 23:22:51','311e74a7-3ac5-46ae-a294-d4ba81af182d'),(5675,70,38110,NULL,17857,1,'2021-08-26 23:22:51','2021-08-26 23:22:51','83dda131-1f90-4132-8b28-50e689aeeaa2'),(5676,90,38110,NULL,18040,1,'2021-08-26 23:22:51','2021-08-26 23:22:51','2f10768e-7526-4e7d-b3f8-41ab56a992c9'),(5677,90,38110,NULL,18167,2,'2021-08-26 23:22:51','2021-08-26 23:22:51','01887319-10e1-47a2-90c5-634ef866b6cf'),(5678,90,38110,NULL,18043,3,'2021-08-26 23:22:51','2021-08-26 23:22:51','c5528678-695d-4b00-bc63-96e0b5be0dc0'),(5679,90,38110,NULL,18045,4,'2021-08-26 23:22:51','2021-08-26 23:22:51','18096125-7d42-4a26-8ac1-0eb961cdc062'),(5680,90,38110,NULL,18046,5,'2021-08-26 23:22:51','2021-08-26 23:22:51','e94c1805-85a3-469f-bba8-af1265b2a27f'),(5681,90,38110,NULL,18047,6,'2021-08-26 23:22:51','2021-08-26 23:22:51','b1d1ac99-8b3b-469a-80e0-57f986710a05'),(5682,90,38110,NULL,18120,7,'2021-08-26 23:22:51','2021-08-26 23:22:51','39e5deb6-d6dd-4024-bed8-8b5f1c67540f'),(5683,90,38110,NULL,18121,8,'2021-08-26 23:22:51','2021-08-26 23:22:51','594399a8-7e71-4575-9c0d-3763ba137716'),(5684,90,38110,NULL,18105,9,'2021-08-26 23:22:51','2021-08-26 23:22:51','d209251a-2d59-4c40-ac8f-76a5ba470ad1'),(5685,85,38110,NULL,17964,1,'2021-08-26 23:22:51','2021-08-26 23:22:51','6ae4cefc-7e27-41c5-be4e-bbde3d709a6f'),(5686,85,38110,NULL,17966,2,'2021-08-26 23:22:51','2021-08-26 23:22:51','30f27dbd-4904-4bea-b5e9-a0b00e9b132c'),(5687,85,38110,NULL,17967,3,'2021-08-26 23:22:51','2021-08-26 23:22:51','d712d56c-c8b0-4ca6-8cdd-a179bb602cdf'),(5688,85,38110,NULL,17969,4,'2021-08-26 23:22:51','2021-08-26 23:22:51','30210403-c879-4868-96be-6599a05f01cd'),(5705,69,38112,NULL,22084,1,'2021-08-26 23:23:27','2021-08-26 23:23:27','85f063b8-0dd8-4f83-bcc9-481c157fa2f8'),(5706,70,38112,NULL,17868,1,'2021-08-26 23:23:27','2021-08-26 23:23:27','02c475af-52e5-447b-a2ec-8bbaa8e8233b'),(5707,90,38112,NULL,18149,1,'2021-08-26 23:23:27','2021-08-26 23:23:27','3e5c6eb4-7d0f-428a-bbec-4471f6491240'),(5708,90,38112,NULL,18150,2,'2021-08-26 23:23:27','2021-08-26 23:23:27','56634d19-e3ef-4337-b050-6f9d5adaecc4'),(5709,90,38112,NULL,18105,3,'2021-08-26 23:23:27','2021-08-26 23:23:27','9ff26191-0291-4898-8812-d0b457981578'),(5710,90,38112,NULL,18151,4,'2021-08-26 23:23:27','2021-08-26 23:23:27','4b915fff-a202-4cea-8ce5-c07eec9ae819'),(5711,90,38112,NULL,18152,5,'2021-08-26 23:23:27','2021-08-26 23:23:27','c78a795d-0573-49dc-9056-363482ff79e5'),(5712,90,38112,NULL,18153,6,'2021-08-26 23:23:27','2021-08-26 23:23:27','233473f6-da24-414a-9031-aa955673956f'),(5713,90,38112,NULL,18154,7,'2021-08-26 23:23:27','2021-08-26 23:23:27','f8666f92-5a22-4e6a-8b5a-56af729f2ab1'),(5714,90,38112,NULL,18155,8,'2021-08-26 23:23:27','2021-08-26 23:23:27','31ffe4b6-2d4a-45e9-9b66-0611fe913630'),(5715,85,38112,NULL,17964,1,'2021-08-26 23:23:27','2021-08-26 23:23:27','c7f69554-f9b7-4814-b14f-99144cebe069'),(5716,85,38112,NULL,17965,2,'2021-08-26 23:23:27','2021-08-26 23:23:27','166c7747-895f-4316-a5fa-7d6064d8ada8'),(5717,85,38112,NULL,17969,3,'2021-08-26 23:23:27','2021-08-26 23:23:27','df9686e1-50b6-4e24-877e-288e47c062e8'),(5739,85,18126,NULL,17964,1,'2021-08-26 23:24:04','2021-08-26 23:24:04','6b27f6bd-7d59-4a25-b938-bd6bb58e4f22'),(5740,85,18126,NULL,17965,2,'2021-08-26 23:24:04','2021-08-26 23:24:04','cbb446c9-107e-4e4b-ae0c-d0cc153edc89'),(5741,85,18126,NULL,17966,3,'2021-08-26 23:24:04','2021-08-26 23:24:04','258b1d42-cefe-4202-9220-06470dd43c90'),(5742,85,18126,NULL,17967,4,'2021-08-26 23:24:04','2021-08-26 23:24:04','12155d12-09e4-456d-91a6-be660ce10d81'),(5743,85,18126,NULL,17968,5,'2021-08-26 23:24:04','2021-08-26 23:24:04','11f18fed-28eb-4460-8ede-868abba32395'),(5744,85,18126,NULL,17969,6,'2021-08-26 23:24:04','2021-08-26 23:24:04','d1e5e446-c151-43d7-8e82-578b4468c669'),(5745,85,18126,NULL,17970,7,'2021-08-26 23:24:04','2021-08-26 23:24:04','4cc0d3dd-9ef9-4d5e-9a2e-28a727dad04e'),(5746,85,18126,NULL,17971,8,'2021-08-26 23:24:04','2021-08-26 23:24:04','23ee92d1-a51b-4977-86c5-387350a83378'),(5747,69,38114,NULL,18584,1,'2021-08-26 23:24:05','2021-08-26 23:24:05','19461bc8-1168-4482-9cad-fa9819c3b58f'),(5748,70,38114,NULL,17857,1,'2021-08-26 23:24:05','2021-08-26 23:24:05','31d7f6f3-577a-4890-ba69-358326c5e60d'),(5749,90,38114,NULL,18114,1,'2021-08-26 23:24:05','2021-08-26 23:24:05','e8a7bc67-1fa1-4cd7-8421-6a010c20f13b'),(5750,90,38114,NULL,18116,2,'2021-08-26 23:24:05','2021-08-26 23:24:05','b83580c9-72a2-4649-927f-d81b7f512096'),(5751,90,38114,NULL,18040,3,'2021-08-26 23:24:05','2021-08-26 23:24:05','74387979-1d9b-4155-b1de-4bdd67688fa0'),(5752,90,38114,NULL,18118,4,'2021-08-26 23:24:05','2021-08-26 23:24:05','fcc829fb-c036-4570-b697-a58eb5235024'),(5753,90,38114,NULL,18117,5,'2021-08-26 23:24:05','2021-08-26 23:24:05','9525f389-2bfc-4b74-a542-22077458e32f'),(5754,90,38114,NULL,18105,6,'2021-08-26 23:24:05','2021-08-26 23:24:05','47aeab7b-206e-4abd-b3a7-bd412c6e476d'),(5755,90,38114,NULL,18120,7,'2021-08-26 23:24:05','2021-08-26 23:24:05','a14adac7-11ab-472a-aecb-74921e3241c0'),(5756,90,38114,NULL,18121,8,'2021-08-26 23:24:05','2021-08-26 23:24:05','faa1984b-1da7-40ad-9e7f-27f57a0f629e'),(5757,90,38114,NULL,18125,9,'2021-08-26 23:24:05','2021-08-26 23:24:05','92493ca4-95de-403e-9918-528986aef992'),(5758,90,38114,NULL,18043,10,'2021-08-26 23:24:05','2021-08-26 23:24:05','3430d4ff-ac35-4cd0-b7b9-4b5779ef3da2'),(5759,90,38114,NULL,18046,11,'2021-08-26 23:24:05','2021-08-26 23:24:05','680fca4b-639b-455d-a35d-b7206219f718'),(5760,85,38114,NULL,17964,1,'2021-08-26 23:24:05','2021-08-26 23:24:05','1bb3c202-2348-4e96-86e7-2f0ad70d0835'),(5761,85,38114,NULL,17965,2,'2021-08-26 23:24:05','2021-08-26 23:24:05','ba032415-37ef-451f-806c-92d6a6ee7672'),(5762,85,38114,NULL,17966,3,'2021-08-26 23:24:05','2021-08-26 23:24:05','4959c17a-a046-45b2-a318-d57f75ccb843'),(5763,85,38114,NULL,17967,4,'2021-08-26 23:24:05','2021-08-26 23:24:05','052e029f-1bd8-42d5-b875-8682231a12c1'),(5764,85,38114,NULL,17968,5,'2021-08-26 23:24:05','2021-08-26 23:24:05','ad8e5323-d4cc-4e29-9245-db7110a261ed'),(5765,85,38114,NULL,17969,6,'2021-08-26 23:24:05','2021-08-26 23:24:05','6ec786bf-f186-47f1-b370-490d35ce3f91'),(5766,85,38114,NULL,17970,7,'2021-08-26 23:24:05','2021-08-26 23:24:05','9368a772-2b3a-4c5a-a675-5696aae86556'),(5767,85,38114,NULL,17971,8,'2021-08-26 23:24:05','2021-08-26 23:24:05','f5e22f6b-359a-4b1e-9de2-94cd0f5ac6b5'),(5786,85,18122,NULL,17964,1,'2021-08-26 23:24:34','2021-08-26 23:24:34','ef448db3-0c22-4f41-86c1-712477454ddd'),(5787,85,18122,NULL,17965,2,'2021-08-26 23:24:34','2021-08-26 23:24:34','3e0a4e6c-973d-4698-bb3b-83644485903d'),(5788,85,18122,NULL,17966,3,'2021-08-26 23:24:34','2021-08-26 23:24:34','10d59e5d-f3bd-4b32-9714-97fbca0b5d87'),(5789,85,18122,NULL,17967,4,'2021-08-26 23:24:34','2021-08-26 23:24:34','5c1675c5-818b-474d-b295-e4f12a52d223'),(5790,85,18122,NULL,17968,5,'2021-08-26 23:24:34','2021-08-26 23:24:34','cfbcd39a-2ac9-4b0a-a500-4890e67abc92'),(5791,85,18122,NULL,17969,6,'2021-08-26 23:24:34','2021-08-26 23:24:34','f5648366-22ec-42fb-bb50-66d5be762498'),(5792,85,18122,NULL,17970,7,'2021-08-26 23:24:34','2021-08-26 23:24:34','7d866899-ad32-43d4-9155-f21fcae6e09b'),(5793,69,38116,NULL,19066,1,'2021-08-26 23:24:34','2021-08-26 23:24:34','a6821a2c-7a08-4da4-b1de-9d30596dad1e'),(5794,70,38116,NULL,17857,1,'2021-08-26 23:24:34','2021-08-26 23:24:34','8b067b7f-0ff2-4394-99d7-57b1f8484f18'),(5795,90,38116,NULL,18114,1,'2021-08-26 23:24:34','2021-08-26 23:24:34','64a6966b-b0e4-4675-8007-2402f806f630'),(5796,90,38116,NULL,18115,2,'2021-08-26 23:24:34','2021-08-26 23:24:34','157dbf6c-4df3-467c-ae79-4bbfc27e8e2a'),(5797,90,38116,NULL,18116,3,'2021-08-26 23:24:34','2021-08-26 23:24:34','35c833cc-0205-4c71-aa06-8503f4b37b87'),(5798,90,38116,NULL,18040,4,'2021-08-26 23:24:34','2021-08-26 23:24:34','647fe5b3-83f8-43b0-9397-49c29170f63e'),(5799,90,38116,NULL,18117,5,'2021-08-26 23:24:34','2021-08-26 23:24:34','72ac770d-a48a-4574-a026-b0ba96ef7f29'),(5800,90,38116,NULL,18118,6,'2021-08-26 23:24:34','2021-08-26 23:24:34','740f2b64-1614-4d3a-82d3-c66b1d97dec0'),(5801,90,38116,NULL,18119,7,'2021-08-26 23:24:34','2021-08-26 23:24:34','845cb3dc-4b7f-4740-83d2-b5a23b2bcf71'),(5802,90,38116,NULL,18120,8,'2021-08-26 23:24:34','2021-08-26 23:24:34','57194ee0-68e1-47d0-b0f2-4f86530bb804'),(5803,90,38116,NULL,18121,9,'2021-08-26 23:24:34','2021-08-26 23:24:34','b4559d82-e798-4702-bea5-2dfdb4e42de4'),(5804,85,38116,NULL,17964,1,'2021-08-26 23:24:34','2021-08-26 23:24:34','3fd0aafb-8e02-4d07-979d-72357edf1ac1'),(5805,85,38116,NULL,17965,2,'2021-08-26 23:24:34','2021-08-26 23:24:34','7b912bb6-02b3-419a-aa83-965a4ad928dc'),(5806,85,38116,NULL,17966,3,'2021-08-26 23:24:34','2021-08-26 23:24:34','029f7084-b113-4dc3-b2ee-1216445a0f39'),(5807,85,38116,NULL,17967,4,'2021-08-26 23:24:34','2021-08-26 23:24:34','40bc4a2f-3de0-41d3-8f25-9221c60301e7'),(5808,85,38116,NULL,17968,5,'2021-08-26 23:24:34','2021-08-26 23:24:34','59c45bd3-0694-4174-ae72-534c594aa9a9'),(5809,85,38116,NULL,17969,6,'2021-08-26 23:24:34','2021-08-26 23:24:34','f64049de-326d-4565-a7fb-0087da8c8f4b'),(5810,85,38116,NULL,17970,7,'2021-08-26 23:24:34','2021-08-26 23:24:34','3bf7a722-a3c4-450e-add2-db81f617b692'),(5829,85,18109,NULL,17964,1,'2021-08-26 23:25:21','2021-08-26 23:25:21','6e1c00a4-b66e-41f2-bc32-6f20721555bb'),(5830,85,18109,NULL,17965,2,'2021-08-26 23:25:21','2021-08-26 23:25:21','5a85add8-f285-444d-b09e-3a50f167f28b'),(5831,85,18109,NULL,17966,3,'2021-08-26 23:25:21','2021-08-26 23:25:21','fee780bd-b3ba-4b6f-9431-cc39eebddada'),(5832,85,18109,NULL,17967,4,'2021-08-26 23:25:21','2021-08-26 23:25:21','3dcddb9c-5bb8-4961-8885-bab4192ebbe5'),(5833,85,18109,NULL,17968,5,'2021-08-26 23:25:21','2021-08-26 23:25:21','f653cfb3-a51b-4de6-a6d5-8e9e0852660b'),(5834,85,18109,NULL,17969,6,'2021-08-26 23:25:21','2021-08-26 23:25:21','aeca5c4f-c526-4e91-825a-45c096041341'),(5835,69,38118,NULL,19052,1,'2021-08-26 23:25:22','2021-08-26 23:25:22','2eaa030a-52b6-41c2-95db-52a7a133dfc1'),(5836,70,38118,NULL,17855,1,'2021-08-26 23:25:22','2021-08-26 23:25:22','0a13d86a-428a-4c33-b9bc-94d5d533af51'),(5837,90,38118,NULL,18040,1,'2021-08-26 23:25:22','2021-08-26 23:25:22','64e68860-9802-4107-9465-8c7b06b7ee54'),(5838,90,38118,NULL,18041,2,'2021-08-26 23:25:22','2021-08-26 23:25:22','1cd4a000-8639-439b-b565-496cee1c7977'),(5839,90,38118,NULL,18042,3,'2021-08-26 23:25:22','2021-08-26 23:25:22','41ed55d8-5bd8-403d-b0fb-0be5c582dcac'),(5840,90,38118,NULL,18104,4,'2021-08-26 23:25:22','2021-08-26 23:25:22','6ffa3bbf-6767-4350-a7f8-3829327ebdcd'),(5841,90,38118,NULL,18043,5,'2021-08-26 23:25:22','2021-08-26 23:25:22','80092b45-94fd-4a58-bec2-a611aabd9e0d'),(5842,90,38118,NULL,18046,6,'2021-08-26 23:25:22','2021-08-26 23:25:22','55ab83cb-a467-4382-bd97-9774889b1f69'),(5843,90,38118,NULL,18105,7,'2021-08-26 23:25:22','2021-08-26 23:25:22','27e363c6-8d26-474e-bef6-122a26732e3b'),(5844,90,38118,NULL,18106,8,'2021-08-26 23:25:22','2021-08-26 23:25:22','7e27d20a-bbe1-4d6d-9805-87e644555062'),(5845,90,38118,NULL,18107,9,'2021-08-26 23:25:22','2021-08-26 23:25:22','2b075c13-a479-4da1-b88d-27b5821aafc8'),(5846,90,38118,NULL,18108,10,'2021-08-26 23:25:22','2021-08-26 23:25:22','c65da0bb-4e21-488f-b4ff-bce09d742837'),(5847,85,38118,NULL,17964,1,'2021-08-26 23:25:22','2021-08-26 23:25:22','b9e019f0-6821-47d1-a3ed-f9fd9983bfae'),(5848,85,38118,NULL,17965,2,'2021-08-26 23:25:22','2021-08-26 23:25:22','f63f44e6-256e-4bea-95ce-2dde8d390b3b'),(5849,85,38118,NULL,17966,3,'2021-08-26 23:25:22','2021-08-26 23:25:22','e47736e6-e1cd-4fca-a297-2d274d93706c'),(5850,85,38118,NULL,17967,4,'2021-08-26 23:25:22','2021-08-26 23:25:22','22da1b91-0579-475a-9c09-989449f87d2a'),(5851,85,38118,NULL,17968,5,'2021-08-26 23:25:22','2021-08-26 23:25:22','647bdad3-441e-41f3-af5f-ef16105e869c'),(5852,85,38118,NULL,17969,6,'2021-08-26 23:25:22','2021-08-26 23:25:22','fa2f7eed-79e3-41dc-b15b-10fd8d24f718'),(5874,85,16828,NULL,17964,1,'2021-08-26 23:27:01','2021-08-26 23:27:01','294995b5-bc1e-40ba-9951-6a00d3a867c3'),(5875,85,16828,NULL,17967,3,'2021-08-26 23:27:01','2021-08-26 23:27:01','cbbbfef6-9065-458f-a2a9-d9c0be604831'),(5876,85,16828,NULL,17969,4,'2021-08-26 23:27:01','2021-08-26 23:27:01','6ff50126-084e-4dcb-95e3-06793cfa3ce4'),(5877,85,16828,NULL,17970,5,'2021-08-26 23:27:01','2021-08-26 23:27:01','3e86f066-0a94-4c16-8c01-37b2c4da1e20'),(5878,85,16828,NULL,17971,6,'2021-08-26 23:27:01','2021-08-26 23:27:01','e71a408f-e639-45fa-838b-fd9109d326ba'),(5879,69,38120,NULL,16824,1,'2021-08-26 23:27:01','2021-08-26 23:27:01','c8d875ec-b29b-4e31-a5a2-eef751109318'),(5880,70,38120,NULL,16834,1,'2021-08-26 23:27:01','2021-08-26 23:27:01','ef763d98-95ee-40b9-b877-f642cbec309d'),(5881,90,38120,NULL,18033,1,'2021-08-26 23:27:01','2021-08-26 23:27:01','d900f226-f140-4d38-adab-5a280c6d4d65'),(5882,90,38120,NULL,18040,2,'2021-08-26 23:27:01','2021-08-26 23:27:01','5f951631-1d6e-406a-9d35-9f4ba1a901a3'),(5883,90,38120,NULL,18041,3,'2021-08-26 23:27:01','2021-08-26 23:27:01','952a4fe8-93b6-45b2-bcb7-406cea54e321'),(5884,90,38120,NULL,18042,4,'2021-08-26 23:27:01','2021-08-26 23:27:01','f842d649-9953-45da-92ba-4e8696aa57d4'),(5885,90,38120,NULL,18043,5,'2021-08-26 23:27:01','2021-08-26 23:27:01','cc7d970c-a5cb-410e-846c-fd832975011e'),(5886,90,38120,NULL,18044,6,'2021-08-26 23:27:01','2021-08-26 23:27:01','4fa93d52-0bc1-45ac-a7c5-745b9651a8b0'),(5887,90,38120,NULL,18045,7,'2021-08-26 23:27:01','2021-08-26 23:27:01','a58a100a-bf94-44b2-87c8-3c83917b40f7'),(5888,90,38120,NULL,18046,8,'2021-08-26 23:27:01','2021-08-26 23:27:01','42f23392-4013-430f-82a4-1e494918d341'),(5889,90,38120,NULL,18047,9,'2021-08-26 23:27:01','2021-08-26 23:27:01','de9231e7-d729-4c90-b561-f46c69adade3'),(5890,90,38120,NULL,18048,10,'2021-08-26 23:27:01','2021-08-26 23:27:01','1228087e-de5b-4ab2-a2f7-5ce315cfb31b'),(5891,90,38120,NULL,18049,11,'2021-08-26 23:27:01','2021-08-26 23:27:01','d20833e2-fbbc-4514-9793-6452bdc926a4'),(5892,90,38120,NULL,18050,12,'2021-08-26 23:27:01','2021-08-26 23:27:01','5f2115cd-a499-4d86-ab21-9034e06aa4fc'),(5893,85,38120,NULL,17964,1,'2021-08-26 23:27:01','2021-08-26 23:27:01','8037480f-7118-48d5-8bb8-10397d73e891'),(5894,85,38120,NULL,17966,2,'2021-08-26 23:27:01','2021-08-26 23:27:01','70d03886-b9ed-4756-aca2-31eefafdf909'),(5895,85,38120,NULL,17967,3,'2021-08-26 23:27:01','2021-08-26 23:27:01','b55b0c2e-6098-4a6a-b4a7-f530ae227d1e'),(5896,85,38120,NULL,17969,4,'2021-08-26 23:27:01','2021-08-26 23:27:01','cab4528d-a9b5-4e4a-bdcc-4a93f5704b6e'),(5897,85,38120,NULL,17970,5,'2021-08-26 23:27:01','2021-08-26 23:27:01','d49fbe83-4d92-426a-a1f0-e31609f94b74'),(5898,85,38120,NULL,17971,6,'2021-08-26 23:27:01','2021-08-26 23:27:01','09dede66-0de4-470d-a473-6abe3ad2329d'),(5899,84,38120,NULL,18057,1,'2021-08-26 23:27:01','2021-08-26 23:27:01','8186a3f4-b678-4d3a-a6a5-a3f1129877c7'),(5900,69,38121,NULL,38123,1,'2021-08-26 23:33:09','2021-08-26 23:33:09','43ac23d6-9555-4fdf-aaef-f83a12fb6cfd'),(5901,69,38124,NULL,38123,1,'2021-08-26 23:33:16','2021-08-26 23:33:16','331d31bf-28dd-48f0-b17e-68ba918f4f83'),(5904,70,38121,NULL,38125,1,'2021-08-26 23:34:11','2021-08-26 23:34:11','e994dbd6-32c8-42fa-9a50-2f075fef1e5b'),(5905,69,38127,NULL,38123,1,'2021-08-26 23:34:11','2021-08-26 23:34:11','e696be87-8c8e-4579-a3ae-62d4e60bbafc'),(5906,70,38127,NULL,38125,1,'2021-08-26 23:34:11','2021-08-26 23:34:11','07de7cee-782f-4a79-b866-ab3a37f32ba9'),(5909,69,38132,NULL,38123,1,'2021-08-26 23:50:11','2021-08-26 23:50:11','cad6b659-a281-4f2c-971f-da5f7c91063c'),(5910,70,38132,NULL,38125,1,'2021-08-26 23:50:11','2021-08-26 23:50:11','7faa62a1-703c-40b1-9d09-719bd1d1e386'),(5915,85,38121,NULL,17964,1,'2021-08-27 00:05:53','2021-08-27 00:05:53','2479102c-2907-4c71-bbf0-c27c2d3775b0'),(5916,85,38121,NULL,17966,3,'2021-08-27 00:05:53','2021-09-03 05:40:34','4918bac7-0f11-408e-8b5c-41340100e7d5'),(5917,69,38135,NULL,38123,1,'2021-08-27 00:05:53','2021-08-27 00:05:53','cc289080-7e1d-4186-a8e8-738ce3e421e4'),(5918,70,38135,NULL,38125,1,'2021-08-27 00:05:53','2021-08-27 00:05:53','6dff5a8c-5605-4ce4-8ee7-43c4321e8952'),(5919,85,38135,NULL,17964,1,'2021-08-27 00:05:53','2021-08-27 00:05:53','5e44f046-a6b2-4649-b333-bfc29853dad0'),(5920,85,38135,NULL,17966,2,'2021-08-27 00:05:53','2021-08-27 00:05:53','3c928510-b327-4567-8d87-e7e670fabf3f'),(5941,79,30427,NULL,17875,1,'2021-09-03 00:15:59','2021-09-03 00:15:59','4f69ac7f-afad-448f-abe7-b330744f4509'),(5942,79,30427,NULL,17887,2,'2021-09-03 00:15:59','2021-09-03 00:15:59','29a0c39f-66b8-494a-a03d-fd83b47d5eb0'),(5943,79,30427,NULL,17899,3,'2021-09-03 00:15:59','2021-09-03 00:15:59','c9a8813d-2d49-406b-8305-54f788c8b201'),(5946,79,30427,NULL,17934,4,'2021-09-03 00:15:59','2022-05-30 01:32:36','58d09af5-7cb6-4781-a0de-39f711199881'),(5947,79,30427,NULL,17941,5,'2021-09-03 00:15:59','2022-05-30 01:32:36','6fd0c7e1-3fc1-4cd0-a3f4-29e76b069d9f'),(5948,79,30427,NULL,1,6,'2021-09-03 00:15:59','2022-05-30 01:32:36','3ec7b228-2db2-4ea9-9559-21b998eea184'),(5949,79,30427,NULL,17954,7,'2021-09-03 00:15:59','2022-05-30 01:32:36','4f86816f-e15a-495d-8550-ef4729e0c7a2'),(5950,79,30427,NULL,17956,8,'2021-09-03 00:15:59','2022-05-30 01:32:36','100c65b0-9911-4389-909a-c6740d540a04'),(5951,79,30427,NULL,17996,9,'2021-09-03 00:15:59','2022-05-30 01:32:36','6d498aca-6850-47f3-ba5c-d6d0f10c9f50'),(5952,84,30427,NULL,38157,1,'2021-09-03 00:15:59','2021-09-03 00:15:59','d11aafa2-6abc-493c-96e6-4cc0b8349dbd'),(5953,79,38162,NULL,17875,1,'2021-09-03 00:15:59','2021-09-03 00:15:59','4e388b6e-3148-4464-b3e4-784f1ef2a0bb'),(5954,79,38162,NULL,17887,2,'2021-09-03 00:15:59','2021-09-03 00:15:59','fda342b9-ec92-4d74-b8e6-a9337ce2f0f5'),(5955,79,38162,NULL,17899,3,'2021-09-03 00:15:59','2021-09-03 00:15:59','64b269e0-2a16-4147-a707-0c5c190175d6'),(5958,79,38162,NULL,17934,6,'2021-09-03 00:15:59','2021-09-03 00:15:59','739753c4-c0b8-48f8-921d-05e28f98ead5'),(5959,79,38162,NULL,17941,7,'2021-09-03 00:15:59','2021-09-03 00:15:59','22b17aa6-30ba-404c-8ab8-e1bcd236f466'),(5960,79,38162,NULL,1,8,'2021-09-03 00:15:59','2021-09-03 00:15:59','65208ce0-00b5-4f03-9389-b80e9e454747'),(5961,79,38162,NULL,17954,9,'2021-09-03 00:15:59','2021-09-03 00:15:59','7fec8f1a-4f3e-4eb7-af2c-1541dc082a80'),(5962,79,38162,NULL,17956,10,'2021-09-03 00:15:59','2021-09-03 00:15:59','ced4c226-2bf8-475c-8de0-fa428dac383a'),(5963,79,38162,NULL,17996,11,'2021-09-03 00:15:59','2021-09-03 00:15:59','fbc4db6c-ed70-4735-bddd-c05238a9e462'),(5964,69,38162,NULL,30441,1,'2021-09-03 00:15:59','2021-09-03 00:15:59','0622400b-c44f-46a1-b85b-9e6ee7f5f2d5'),(5965,85,38162,NULL,17964,1,'2021-09-03 00:15:59','2021-09-03 00:15:59','ea8e6d1a-ec46-40bf-9c0d-8633f36e211b'),(5966,85,38162,NULL,17965,2,'2021-09-03 00:15:59','2021-09-03 00:15:59','1855f531-e43b-4f30-96a5-c14ed3b0626c'),(5967,85,38162,NULL,17966,3,'2021-09-03 00:15:59','2021-09-03 00:15:59','a42e8dec-8726-4e90-9663-d5191565e956'),(5968,85,38162,NULL,17968,4,'2021-09-03 00:15:59','2021-09-03 00:15:59','9d183818-fb96-440b-95d5-28db0252579d'),(5969,85,38162,NULL,17969,5,'2021-09-03 00:15:59','2021-09-03 00:15:59','2eac0187-c2d9-4b04-891b-29075b542051'),(5970,85,38162,NULL,17971,6,'2021-09-03 00:15:59','2021-09-03 00:15:59','aecc9faa-dd81-4f43-b031-5adf61da93c9'),(5971,84,38162,NULL,38157,1,'2021-09-03 00:15:59','2021-09-03 00:15:59','ebfe597c-2163-4905-90a5-7265d918de55'),(5979,85,22210,NULL,17970,4,'2021-09-03 00:43:42','2021-09-03 00:43:42','5bf3098d-1f86-473a-9f34-5a9e49ea4927'),(5980,85,22210,NULL,17971,5,'2021-09-03 00:43:42','2021-09-03 00:43:42','b761b8fa-c772-4862-b6c2-675574c8c8cb'),(5981,84,22210,NULL,38159,1,'2021-09-03 00:43:42','2021-09-03 00:43:42','920af030-6a43-4e7e-b780-fe6682671f1f'),(5982,69,38164,NULL,27826,1,'2021-09-03 00:43:42','2021-09-03 00:43:42','f781989e-2021-40e1-8181-b3e698059ee8'),(5983,85,38164,NULL,17964,1,'2021-09-03 00:43:42','2021-09-03 00:43:42','9b311e85-b21a-46c9-a06c-f31333116985'),(5984,85,38164,NULL,17966,2,'2021-09-03 00:43:42','2021-09-03 00:43:42','44279664-2a4e-4e9c-aee8-a962e9c87046'),(5985,85,38164,NULL,17969,3,'2021-09-03 00:43:42','2021-09-03 00:43:42','48d4865a-8d02-43f7-ae0b-47e69d095ebe'),(5986,85,38164,NULL,17970,4,'2021-09-03 00:43:42','2021-09-03 00:43:42','5532ba0a-9fe8-4075-9dec-42035ad33d5e'),(5987,85,38164,NULL,17971,5,'2021-09-03 00:43:42','2021-09-03 00:43:42','ec9dc2e4-34e3-49ad-a307-03221a59aef0'),(5988,84,38164,NULL,38159,1,'2021-09-03 00:43:42','2021-09-03 00:43:42','35274db1-c1ee-4d8a-8bef-a6156c5dca0f'),(6002,79,18139,NULL,17881,1,'2021-09-03 00:54:26','2022-05-30 01:34:51','8a5b72f8-40aa-4d2d-83b7-12f96a3773d2'),(6003,79,18139,NULL,1,2,'2021-09-03 00:54:26','2022-05-30 01:34:51','75e5f9aa-28de-4256-82b6-00ec5debd65f'),(6004,79,18139,NULL,17954,3,'2021-09-03 00:54:26','2022-05-30 01:34:51','95a2c3fc-2b3a-47b8-82af-a6f9aea872c5'),(6005,85,18139,NULL,17968,3,'2021-09-03 00:54:26','2021-09-03 00:54:26','b57e31b4-3ba2-440c-a263-4dc988dadb7c'),(6006,84,18139,NULL,38160,2,'2021-09-03 00:54:26','2021-09-03 00:54:26','37da8b02-739d-412f-b748-c4947f49a402'),(6008,79,38166,NULL,17881,2,'2021-09-03 00:54:26','2021-09-03 00:54:26','e6efd699-b2e1-496b-beda-3600049ea161'),(6009,79,38166,NULL,1,3,'2021-09-03 00:54:26','2021-09-03 00:54:26','53188ef9-617f-4943-84a8-878ccc2945b7'),(6010,79,38166,NULL,17954,4,'2021-09-03 00:54:26','2021-09-03 00:54:26','fcffdcbd-293c-43bf-a9d6-282c05bc3e19'),(6011,69,38166,NULL,21979,1,'2021-09-03 00:54:26','2021-09-03 00:54:26','1e55a237-eb51-471b-b14a-7203822e24a8'),(6012,85,38166,NULL,17964,1,'2021-09-03 00:54:26','2021-09-03 00:54:26','25399f30-4a1b-4a0b-96e8-251d3a92bc13'),(6013,85,38166,NULL,17965,2,'2021-09-03 00:54:26','2021-09-03 00:54:26','625d8aac-44ef-40ea-9aac-cb71b2698618'),(6014,85,38166,NULL,17968,3,'2021-09-03 00:54:26','2021-09-03 00:54:26','709b10a3-990e-4dec-8604-fb3b7bffbf92'),(6015,85,38166,NULL,17970,4,'2021-09-03 00:54:26','2021-09-03 00:54:26','d20f8508-ce18-420f-880f-26aba9011258'),(6016,85,38166,NULL,17971,5,'2021-09-03 00:54:26','2021-09-03 00:54:26','6632766d-8e1d-4def-a610-e25eb9d5f6d0'),(6017,84,38166,NULL,18057,1,'2021-09-03 00:54:26','2021-09-03 00:54:26','f9f8e374-0b9a-4542-b27d-d0eb41bb897f'),(6018,84,38166,NULL,38160,2,'2021-09-03 00:54:26','2021-09-03 00:54:26','9a17c568-cd56-4695-98aa-e488cdb04370'),(6019,69,38167,NULL,16824,1,'2021-09-03 01:21:27','2021-09-03 01:21:27','cda4a08d-8d8f-4420-aa5b-f68251f29058'),(6020,85,38167,NULL,17964,1,'2021-09-03 01:21:27','2021-09-03 01:21:27','5f4ab07e-8de4-4892-8cac-87e889ec5049'),(6021,85,38167,NULL,17966,2,'2021-09-03 01:21:27','2021-09-03 01:21:27','9c8f3827-fa14-4e47-bdfd-7358a4fc4db2'),(6022,85,38167,NULL,17967,3,'2021-09-03 01:21:27','2021-09-03 01:21:27','04a31f29-e677-4bba-9a97-207120acc003'),(6023,85,38167,NULL,17969,4,'2021-09-03 01:21:27','2021-09-03 01:21:27','b622ec00-82e1-4df2-ab38-11556d6968c5'),(6024,85,38167,NULL,17970,5,'2021-09-03 01:21:27','2021-09-03 01:21:27','6fa12a05-279a-4a5a-a217-a746b1995ded'),(6025,85,38167,NULL,17971,6,'2021-09-03 01:21:27','2021-09-03 01:21:27','19d169d2-c9c0-4f5d-9202-dfec6b279cb1'),(6026,84,38167,NULL,18057,1,'2021-09-03 01:21:27','2021-09-03 01:21:27','9c8218aa-d100-4b1a-833e-ea77af292bd4'),(6027,69,38168,NULL,19052,1,'2021-09-03 01:21:28','2021-09-03 01:21:28','9f4c8e1e-85dd-4646-b57e-a9f7e6671b53'),(6028,85,38168,NULL,17964,1,'2021-09-03 01:21:28','2021-09-03 01:21:28','45c09e2b-e2be-47c9-aa25-bde4d98a1977'),(6029,85,38168,NULL,17965,2,'2021-09-03 01:21:28','2021-09-03 01:21:28','3b367c91-bf59-44a1-802e-7346147968ae'),(6030,85,38168,NULL,17966,3,'2021-09-03 01:21:28','2021-09-03 01:21:28','83955e4b-ae3e-42e1-8082-156307dd4241'),(6031,85,38168,NULL,17967,4,'2021-09-03 01:21:28','2021-09-03 01:21:28','97e97dc3-7cbb-480c-8eda-96bfe646fab0'),(6032,85,38168,NULL,17968,5,'2021-09-03 01:21:28','2021-09-03 01:21:28','5fd9263e-9afd-4f4d-bc17-82f5942606b2'),(6033,85,38168,NULL,17969,6,'2021-09-03 01:21:28','2021-09-03 01:21:28','127b1b45-c64c-4332-9f91-ba8bba5c20cb'),(6034,69,38169,NULL,19066,1,'2021-09-03 01:21:29','2021-09-03 01:21:29','3b47a84e-e979-4f72-a753-d86e973bec93'),(6035,85,38169,NULL,17964,1,'2021-09-03 01:21:29','2021-09-03 01:21:29','2103ca6e-1abf-4820-bf9f-af6bf713e94e'),(6036,85,38169,NULL,17965,2,'2021-09-03 01:21:29','2021-09-03 01:21:29','ac2fc1e1-3d4b-4172-a6d8-8a3bc2e82167'),(6037,85,38169,NULL,17966,3,'2021-09-03 01:21:29','2021-09-03 01:21:29','bf88b6b9-7b9e-4202-8800-c8ed6c841a51'),(6038,85,38169,NULL,17967,4,'2021-09-03 01:21:29','2021-09-03 01:21:29','80cc76ba-66d9-4931-98c7-05627b9e3d0b'),(6039,85,38169,NULL,17968,5,'2021-09-03 01:21:29','2021-09-03 01:21:29','cb39ec80-2352-42ed-8671-821e0cc81a19'),(6040,85,38169,NULL,17969,6,'2021-09-03 01:21:29','2021-09-03 01:21:29','e4ac7f29-b822-4de9-a9d1-914d88144be5'),(6041,85,38169,NULL,17970,7,'2021-09-03 01:21:29','2021-09-03 01:21:29','f4e88d5d-480f-4f31-bfda-2ca432e20821'),(6042,69,38170,NULL,18584,1,'2021-09-03 01:21:29','2021-09-03 01:21:29','09fd7e28-86d5-4530-895f-ad96d03ce411'),(6043,85,38170,NULL,17964,1,'2021-09-03 01:21:29','2021-09-03 01:21:29','789b9932-dadb-40ab-8622-71c54c721ccc'),(6044,85,38170,NULL,17965,2,'2021-09-03 01:21:29','2021-09-03 01:21:29','40764044-1a9d-4ff9-b77e-baccfd6f2971'),(6045,85,38170,NULL,17966,3,'2021-09-03 01:21:29','2021-09-03 01:21:29','c5f9ab3a-eab4-4242-af4f-368a240f3198'),(6046,85,38170,NULL,17967,4,'2021-09-03 01:21:29','2021-09-03 01:21:29','c6d052d7-f920-4b29-b5a3-b0af9cb0f5fc'),(6047,85,38170,NULL,17968,5,'2021-09-03 01:21:29','2021-09-03 01:21:29','8aae7c95-4dde-4585-b663-1e662667a8c6'),(6048,85,38170,NULL,17969,6,'2021-09-03 01:21:29','2021-09-03 01:21:29','e23b4bbf-0d4a-485a-ada8-82d31af281ce'),(6049,85,38170,NULL,17970,7,'2021-09-03 01:21:29','2021-09-03 01:21:29','29490d49-1a4b-4b0e-a3cb-9f0634311f0a'),(6050,85,38170,NULL,17971,8,'2021-09-03 01:21:29','2021-09-03 01:21:29','86b6ccef-b8f7-4984-bd00-e38ce4080c44'),(6051,69,38171,NULL,22011,1,'2021-09-03 01:21:29','2021-09-03 01:21:29','a963f4ee-3584-4956-8d72-bd0b4978cddc'),(6052,85,38171,NULL,17964,1,'2021-09-03 01:21:29','2021-09-03 01:21:29','90f83a75-d0b0-4925-9536-9b9bcbf089e2'),(6053,85,38171,NULL,17966,2,'2021-09-03 01:21:29','2021-09-03 01:21:29','ef139fc4-2cda-4fb1-8833-518ce4e58cf4'),(6054,85,38171,NULL,17967,3,'2021-09-03 01:21:29','2021-09-03 01:21:29','fb009407-cd1f-4fd1-ba2e-3c28c2a1f76d'),(6055,84,38171,NULL,18057,1,'2021-09-03 01:21:29','2021-09-03 01:21:29','71a17e5e-0643-4489-ab11-bdd9f94f9c57'),(6056,69,38172,NULL,22084,1,'2021-09-03 01:21:30','2021-09-03 01:21:30','bf8363f4-6309-4a3e-af1a-b230d89938d7'),(6057,85,38172,NULL,17964,1,'2021-09-03 01:21:30','2021-09-03 01:21:30','1365e9a2-63f8-45f9-9670-94ae04068dba'),(6058,85,38172,NULL,17965,2,'2021-09-03 01:21:30','2021-09-03 01:21:30','06d575c4-abb0-4f49-9c8c-92acaae04012'),(6059,85,38172,NULL,17969,3,'2021-09-03 01:21:30','2021-09-03 01:21:30','da14ecd1-070d-42f9-a98d-085efca051e7'),(6060,69,38173,NULL,22160,1,'2021-09-03 01:21:30','2021-09-03 01:21:30','ac493fbe-0e30-43fe-bc1e-2f9701636409'),(6061,85,38173,NULL,17964,1,'2021-09-03 01:21:30','2021-09-03 01:21:30','39beba26-469c-4a9a-a828-0584d6533b4e'),(6062,85,38173,NULL,17966,2,'2021-09-03 01:21:30','2021-09-03 01:21:30','d059faf7-8f4d-4e56-a471-d3ab10aec8bc'),(6063,85,38173,NULL,17967,3,'2021-09-03 01:21:30','2021-09-03 01:21:30','af3275fa-f48d-4739-80d2-95d92f9798b2'),(6064,85,38173,NULL,17969,4,'2021-09-03 01:21:30','2021-09-03 01:21:30','e30d7e9e-9810-4056-b062-4d38d08f53cb'),(6065,69,38174,NULL,38123,1,'2021-09-03 01:21:31','2021-09-03 01:21:31','00e54b67-0b84-42a2-967a-fe1e3634b985'),(6066,85,38174,NULL,17964,1,'2021-09-03 01:21:31','2021-09-03 01:21:31','50e438bb-295e-42d4-8ea3-af581177ac06'),(6067,85,38174,NULL,17966,2,'2021-09-03 01:21:31','2021-09-03 01:21:31','6fe1119d-711e-42c9-aab7-770368482b70'),(6074,84,18142,NULL,38160,2,'2021-09-03 01:34:27','2021-09-03 01:34:27','8e2d9c58-8455-4ca5-8097-5699a1872ed1'),(6075,69,38176,NULL,22011,1,'2021-09-03 01:34:27','2021-09-03 01:34:27','07778228-6df7-47c0-bb91-80b7be7bb1a9'),(6076,85,38176,NULL,17964,1,'2021-09-03 01:34:27','2021-09-03 01:34:27','ec2bafd5-e90a-41bc-8626-156bc7c6cb70'),(6077,85,38176,NULL,17966,2,'2021-09-03 01:34:27','2021-09-03 01:34:27','4f408e50-839f-40fc-a422-26a4db23ed65'),(6078,85,38176,NULL,17967,3,'2021-09-03 01:34:27','2021-09-03 01:34:27','76ff9644-b7fc-48a1-a772-1fc33aae0703'),(6079,84,38176,NULL,18057,1,'2021-09-03 01:34:27','2021-09-03 01:34:27','bdd63d22-fe09-4d2c-9f29-14cdca62cc4e'),(6080,84,38176,NULL,38160,2,'2021-09-03 01:34:27','2021-09-03 01:34:27','837d9cf0-202c-4dc2-aac9-05ccbaa39bf4'),(6092,79,18142,NULL,17875,1,'2021-09-03 01:35:46','2021-09-03 01:35:46','a81be02b-46dd-4c61-95d3-7137c00bbb9f'),(6094,79,18142,NULL,17934,2,'2021-09-03 01:35:46','2022-05-30 01:36:15','72f1a740-14fe-457b-b6bb-7a19418fb31b'),(6095,79,18142,NULL,17881,3,'2021-09-03 01:35:46','2022-05-30 01:36:15','660235f3-7e15-42c8-b843-6126c59ab594'),(6096,79,18142,NULL,17956,4,'2021-09-03 01:35:46','2022-05-30 01:36:15','d174ebb4-4ede-4282-bad3-c453fa58ce32'),(6097,79,38178,NULL,17875,1,'2021-09-03 01:35:46','2021-09-03 01:35:46','c20992d8-c00d-409a-b556-2ac1fda89c15'),(6099,79,38178,NULL,17934,3,'2021-09-03 01:35:46','2021-09-03 01:35:46','eb60288d-4f29-4360-b8e0-598e7b557ffb'),(6100,79,38178,NULL,17881,4,'2021-09-03 01:35:46','2021-09-03 01:35:46','4e27514b-e283-4367-aefc-02f69367d6e1'),(6101,79,38178,NULL,17956,5,'2021-09-03 01:35:46','2021-09-03 01:35:46','300340c0-f323-4e55-9b75-e595906b658e'),(6102,69,38178,NULL,22011,1,'2021-09-03 01:35:46','2021-09-03 01:35:46','1f4b6392-c739-4578-abf6-86be94478e7a'),(6103,85,38178,NULL,17964,1,'2021-09-03 01:35:46','2021-09-03 01:35:46','a2447e0f-f16f-4655-8cbe-4c3e2ea3b939'),(6104,85,38178,NULL,17966,2,'2021-09-03 01:35:46','2021-09-03 01:35:46','9d908e67-2594-432e-8f97-f664a000f436'),(6105,85,38178,NULL,17967,3,'2021-09-03 01:35:46','2021-09-03 01:35:46','c72bf3a7-db79-4746-8a95-f850e3083007'),(6106,84,38178,NULL,18057,1,'2021-09-03 01:35:46','2021-09-03 01:35:46','df778d14-70c2-4cd4-993b-6ec6e069e893'),(6107,84,38178,NULL,38160,2,'2021-09-03 01:35:46','2021-09-03 01:35:46','f2d14553-a54e-4459-85a3-92e304cd78c0'),(6108,79,38179,NULL,17875,1,'2021-09-03 01:35:54','2021-09-03 01:35:54','2682d823-a62a-438b-a39d-ee33fd5e15a9'),(6110,79,38179,NULL,17934,3,'2021-09-03 01:35:54','2021-09-03 01:35:54','f0c098cc-5781-49f6-ac5a-88106d023332'),(6111,79,38179,NULL,17881,4,'2021-09-03 01:35:54','2021-09-03 01:35:54','41c0e707-aa77-41ef-945d-2ee29b714330'),(6112,79,38179,NULL,17956,5,'2021-09-03 01:35:54','2021-09-03 01:35:54','a8da6df2-5449-4770-97fc-6de23d4171d8'),(6113,69,38179,NULL,22011,1,'2021-09-03 01:35:54','2021-09-03 01:35:54','27e4e36f-fa88-4217-81d5-cbf5f2ebcacf'),(6114,85,38179,NULL,17964,1,'2021-09-03 01:35:54','2021-09-03 01:35:54','1fd2c622-b635-4c19-a79b-2477fef81c7d'),(6115,85,38179,NULL,17966,2,'2021-09-03 01:35:54','2021-09-03 01:35:54','f5381a45-9923-4f9e-a05c-e9e4317223fd'),(6116,85,38179,NULL,17967,3,'2021-09-03 01:35:54','2021-09-03 01:35:54','3786e1f6-a052-41d0-b7e2-0ccec8891045'),(6117,84,38179,NULL,18057,1,'2021-09-03 01:35:54','2021-09-03 01:35:54','fca1011c-3829-42d9-bdd6-80b7b2f56fb8'),(6118,84,38179,NULL,38160,2,'2021-09-03 01:35:54','2021-09-03 01:35:54','38d764e6-3cbd-423c-97d9-b4d6c672a1bb'),(6132,79,18168,NULL,17875,1,'2021-09-03 01:52:31','2021-09-03 01:52:31','f6894a49-e42c-4fd9-8ee9-67c55d668b3e'),(6135,79,18168,NULL,17934,2,'2021-09-03 01:52:31','2022-05-30 01:37:10','4fa8476c-8016-4df5-b0d2-91a1837ca07a'),(6136,79,18168,NULL,17954,3,'2021-09-03 01:52:31','2022-05-30 01:37:10','ab483b5c-81d6-4034-81c6-441d97db6257'),(6137,79,18168,NULL,17956,4,'2021-09-03 01:52:31','2022-05-30 01:37:10','bae19336-e689-412d-ab7e-89141501ee20'),(6138,85,18168,NULL,17970,5,'2021-09-03 01:52:31','2021-09-03 01:52:31','07b9dcd3-9728-45e5-a507-56deb3fd0c98'),(6139,85,18168,NULL,17971,6,'2021-09-03 01:52:31','2021-09-03 01:52:31','3fc89de9-b03c-46a5-b346-a3e3009d9c57'),(6140,79,38181,NULL,17875,1,'2021-09-03 01:52:31','2021-09-03 01:52:31','2742b90b-d450-4778-a3fe-b0c4a9464a13'),(6143,79,38181,NULL,17934,4,'2021-09-03 01:52:31','2021-09-03 01:52:31','08e23b91-996a-4531-b55b-5233964aec2a'),(6144,79,38181,NULL,17954,5,'2021-09-03 01:52:31','2021-09-03 01:52:31','c6fc0931-0d3a-4b5f-b8e6-646db186f8d8'),(6145,79,38181,NULL,17956,6,'2021-09-03 01:52:31','2021-09-03 01:52:31','600fc740-c997-4f58-90fc-dcbcb1f947a8'),(6146,69,38181,NULL,22160,1,'2021-09-03 01:52:31','2021-09-03 01:52:31','53c23daa-f513-4b7d-830b-3289d9967af9'),(6147,85,38181,NULL,17964,1,'2021-09-03 01:52:31','2021-09-03 01:52:31','9b5be7ca-d9cc-4210-823a-9a8ab3e49c6f'),(6148,85,38181,NULL,17966,2,'2021-09-03 01:52:31','2021-09-03 01:52:31','5445c5f0-d767-4786-8ea9-8d184069cd40'),(6149,85,38181,NULL,17967,3,'2021-09-03 01:52:31','2021-09-03 01:52:31','a9631272-06e7-446f-93b0-8789bfc6bc9b'),(6150,85,38181,NULL,17969,4,'2021-09-03 01:52:31','2021-09-03 01:52:31','abfaf4e1-7ac5-43ea-aaaa-78694aa1df3a'),(6151,85,38181,NULL,17970,5,'2021-09-03 01:52:31','2021-09-03 01:52:31','bfa4c241-77bf-4bf4-9dd1-b765178c6472'),(6152,85,38181,NULL,17971,6,'2021-09-03 01:52:31','2021-09-03 01:52:31','8bfcad58-8260-4bdf-a004-6c4be68f5699'),(6153,79,38182,NULL,17875,1,'2021-09-03 01:52:38','2021-09-03 01:52:38','9c8694c5-5523-4d19-a15a-2025061d4a67'),(6156,79,38182,NULL,17934,4,'2021-09-03 01:52:38','2021-09-03 01:52:38','c69ebfba-ffa1-4f61-ad46-3f004d9aedbe'),(6157,79,38182,NULL,17954,5,'2021-09-03 01:52:38','2021-09-03 01:52:38','f9b1e230-5146-45cc-9ff6-a2ffa11bbb1b'),(6158,79,38182,NULL,17956,6,'2021-09-03 01:52:38','2021-09-03 01:52:38','e575deb5-34e2-4319-84e5-5d9d0840c56a'),(6159,69,38182,NULL,22160,1,'2021-09-03 01:52:38','2021-09-03 01:52:38','53683942-91d6-4101-a87b-5b19cd268f44'),(6160,85,38182,NULL,17964,1,'2021-09-03 01:52:38','2021-09-03 01:52:38','f5735612-c4f5-46af-b449-a1f69827b3b0'),(6161,85,38182,NULL,17966,2,'2021-09-03 01:52:38','2021-09-03 01:52:38','67ccf25a-7973-42c8-b5e4-4d1dea6a37d4'),(6162,85,38182,NULL,17967,3,'2021-09-03 01:52:38','2021-09-03 01:52:38','1bafe5eb-dca5-40b6-95e3-f83f6cb43e89'),(6163,85,38182,NULL,17969,4,'2021-09-03 01:52:38','2021-09-03 01:52:38','0c9a6f88-4de8-4589-ba3c-427bb0e1b4da'),(6164,85,38182,NULL,17970,5,'2021-09-03 01:52:38','2021-09-03 01:52:38','ee76722e-88f9-41aa-8e32-ebf254330bb1'),(6165,85,38182,NULL,17971,6,'2021-09-03 01:52:38','2021-09-03 01:52:38','eb49b378-244b-48d0-bbeb-a8f0887c2679'),(6178,79,18156,NULL,17875,1,'2021-09-03 02:00:34','2021-09-03 02:00:34','7ab6012f-0097-4e48-b502-769d15bb5167'),(6180,79,18156,NULL,17934,2,'2021-09-03 02:00:34','2022-05-30 01:39:39','0c561277-35ea-4397-b045-697a4138426a'),(6181,79,18156,NULL,17881,3,'2021-09-03 02:00:34','2022-05-30 01:39:39','81354c5c-28d3-444c-9a10-c266531738ab'),(6182,79,18156,NULL,17954,4,'2021-09-03 02:00:34','2022-05-30 01:39:39','ec87a154-2c4f-4c62-a8df-cfc5695d21cb'),(6183,79,18156,NULL,17956,5,'2021-09-03 02:00:34','2022-05-30 01:39:39','c9304eef-6037-42d9-b18e-d3c876ac7f78'),(6184,85,18156,NULL,17970,4,'2021-09-03 02:00:34','2021-09-03 02:00:34','93d0cde2-e5db-4d8e-a185-51d69da9fae7'),(6185,85,18156,NULL,17971,5,'2021-09-03 02:00:34','2021-09-03 02:00:34','556846f2-4314-4e0e-8e37-725dcd2cd065'),(6186,79,38184,NULL,17875,1,'2021-09-03 02:00:34','2021-09-03 02:00:34','0d53c242-2bfd-475d-9549-e6563b3a4757'),(6188,79,38184,NULL,17934,3,'2021-09-03 02:00:34','2021-09-03 02:00:34','bad6a29a-55fd-4bf6-ac46-e845937bbc8c'),(6189,79,38184,NULL,17881,4,'2021-09-03 02:00:34','2021-09-03 02:00:34','36989c27-f622-426c-a839-7d9862775fcf'),(6190,79,38184,NULL,17954,5,'2021-09-03 02:00:34','2021-09-03 02:00:34','db94ed2d-5661-4547-aa56-94f29925ed20'),(6191,79,38184,NULL,17956,6,'2021-09-03 02:00:34','2021-09-03 02:00:34','a1945820-22d0-46ec-80fa-75718241f86e'),(6192,69,38184,NULL,22084,1,'2021-09-03 02:00:34','2021-09-03 02:00:34','2aa64d1e-25a4-431e-8f00-7e731f91b86f'),(6193,85,38184,NULL,17964,1,'2021-09-03 02:00:34','2021-09-03 02:00:34','d0b58cc3-4c25-4679-b8e6-3a519dc13d59'),(6194,85,38184,NULL,17965,2,'2021-09-03 02:00:34','2021-09-03 02:00:34','34f6be79-3ce2-4b54-b220-4107532796a4'),(6195,85,38184,NULL,17969,3,'2021-09-03 02:00:34','2021-09-03 02:00:34','e9f27cee-b736-417a-a844-a05199212914'),(6196,85,38184,NULL,17970,4,'2021-09-03 02:00:34','2021-09-03 02:00:34','1355f4ae-36d1-4f54-b4fe-fa904d0c4e76'),(6197,85,38184,NULL,17971,5,'2021-09-03 02:00:34','2021-09-03 02:00:34','2422aae2-0068-403b-82f5-0c29360a2c23'),(6211,84,18156,NULL,38161,1,'2021-09-03 02:00:54','2021-09-03 02:00:54','92d1d794-13a7-4ff4-af09-509ee421f7b5'),(6212,79,38186,NULL,17875,1,'2021-09-03 02:00:54','2021-09-03 02:00:54','9f8616b5-365c-4c9f-8e98-7ce279977116'),(6214,79,38186,NULL,17934,3,'2021-09-03 02:00:54','2021-09-03 02:00:54','0a788574-72df-41f6-846d-d093a513ec2f'),(6215,79,38186,NULL,17881,4,'2021-09-03 02:00:54','2021-09-03 02:00:54','50ab4295-770f-41c6-9a90-3d2d9376359d'),(6216,79,38186,NULL,17954,5,'2021-09-03 02:00:54','2021-09-03 02:00:54','90056c09-645b-434a-9c17-18703068b7a9'),(6217,79,38186,NULL,17956,6,'2021-09-03 02:00:54','2021-09-03 02:00:54','b274a117-ecba-4bff-96a7-77b14c84b2e5'),(6218,69,38186,NULL,22084,1,'2021-09-03 02:00:54','2021-09-03 02:00:54','c7d495b4-99f4-4576-9ba1-8e3dbba65b95'),(6219,85,38186,NULL,17964,1,'2021-09-03 02:00:54','2021-09-03 02:00:54','20389f73-0ba8-4bbb-8545-48b5f0b8bc87'),(6220,85,38186,NULL,17965,2,'2021-09-03 02:00:54','2021-09-03 02:00:54','d563b834-cae3-43e8-a7fa-a9860bfebb7d'),(6221,85,38186,NULL,17969,3,'2021-09-03 02:00:54','2021-09-03 02:00:54','04dbdb4d-ec02-425c-9fc0-abcd2e00ee65'),(6222,85,38186,NULL,17970,4,'2021-09-03 02:00:54','2021-09-03 02:00:54','f453be23-af18-428c-9ae1-b9a8464a37c7'),(6223,85,38186,NULL,17971,5,'2021-09-03 02:00:54','2021-09-03 02:00:54','d092f7d5-aa15-43b7-a3f5-c68bc6a1aea7'),(6224,84,38186,NULL,38161,1,'2021-09-03 02:00:54','2021-09-03 02:00:54','6a7cc309-a8da-487b-9af6-a5266888e854'),(6225,79,38187,NULL,17875,1,'2021-09-03 02:01:01','2021-09-03 02:01:01','4bcd999d-a215-4f3e-8e96-9730646ee100'),(6227,79,38187,NULL,17934,3,'2021-09-03 02:01:01','2021-09-03 02:01:01','e2bd1c8a-037c-49e9-8ac6-e74572a0e2f2'),(6228,79,38187,NULL,17881,4,'2021-09-03 02:01:01','2021-09-03 02:01:01','ff57b4af-41dc-46d1-ab88-3ed3304d7023'),(6229,79,38187,NULL,17954,5,'2021-09-03 02:01:01','2021-09-03 02:01:01','a3971ab6-2fbb-4ea9-8f54-fb39e720182e'),(6230,79,38187,NULL,17956,6,'2021-09-03 02:01:01','2021-09-03 02:01:01','c1139af1-7917-4039-b065-832c549e88c8'),(6231,69,38187,NULL,22084,1,'2021-09-03 02:01:01','2021-09-03 02:01:01','89e0a905-ffcf-4288-9955-b858dfb54dc7'),(6232,85,38187,NULL,17964,1,'2021-09-03 02:01:01','2021-09-03 02:01:01','70d3ecf6-7953-498d-b723-8317a0376235'),(6233,85,38187,NULL,17965,2,'2021-09-03 02:01:01','2021-09-03 02:01:01','63ef34fc-f0e7-4d6f-9018-6284a998f508'),(6234,85,38187,NULL,17969,3,'2021-09-03 02:01:01','2021-09-03 02:01:01','0dc7640d-4e94-4f94-8efa-6602420ef8b9'),(6235,85,38187,NULL,17970,4,'2021-09-03 02:01:01','2021-09-03 02:01:01','125b4b6c-358b-4f64-b478-373276948fa2'),(6236,85,38187,NULL,17971,5,'2021-09-03 02:01:01','2021-09-03 02:01:01','d3a71375-d6fa-47b7-a738-ea4356004c88'),(6237,84,38187,NULL,38161,1,'2021-09-03 02:01:01','2021-09-03 02:01:01','c58d2cb1-970d-494a-817e-05b34492b5ea'),(6271,79,18122,NULL,17875,1,'2021-09-03 02:08:55','2021-09-03 02:08:55','15dfd723-3a6b-48f1-aa2e-27a83bd07cf7'),(6272,79,18122,NULL,21898,2,'2021-09-03 02:08:55','2021-09-03 02:08:55','30048395-1121-4773-9331-36c7a8bfa162'),(6275,79,18122,NULL,17934,3,'2021-09-03 02:08:55','2022-05-30 01:41:22','6a3a80e7-8343-4061-a50d-32c87d934502'),(6276,79,18122,NULL,1,4,'2021-09-03 02:08:55','2022-05-30 01:41:22','f27f8d3a-4d35-4c9d-9a62-ba8a661af0c1'),(6277,79,18122,NULL,17954,5,'2021-09-03 02:08:55','2022-05-30 01:41:22','f5c7ffec-444e-42cf-951b-8a2b64b29516'),(6278,79,18122,NULL,17956,6,'2021-09-03 02:08:55','2022-05-30 01:41:22','dee1fc99-7ce1-492e-8b8b-e3fae7be6cfc'),(6279,84,18122,NULL,18057,1,'2021-09-03 02:08:55','2021-09-03 02:08:55','caba342f-d1ac-4006-a688-7c911e35d755'),(6280,84,18122,NULL,38160,2,'2021-09-03 02:08:55','2021-09-03 02:08:55','42f1c83f-df4d-415b-a5d7-9d8400240a0f'),(6281,79,38190,NULL,17875,1,'2021-09-03 02:08:55','2021-09-03 02:08:55','5d07a5bd-6f3a-47af-9d98-efa200dffd20'),(6282,79,38190,NULL,21898,2,'2021-09-03 02:08:55','2021-09-03 02:08:55','acc575c5-2dad-4d80-91db-5bca81a5366d'),(6285,79,38190,NULL,17934,5,'2021-09-03 02:08:55','2021-09-03 02:08:55','edff1c97-846a-4804-b764-a592bc403b0a'),(6286,79,38190,NULL,1,6,'2021-09-03 02:08:55','2021-09-03 02:08:55','22f9caf2-2047-49bd-b068-65532216742e'),(6287,79,38190,NULL,17954,7,'2021-09-03 02:08:55','2021-09-03 02:08:55','040166a4-0082-463d-8852-c22ff61dceef'),(6288,79,38190,NULL,17956,8,'2021-09-03 02:08:55','2021-09-03 02:08:55','f3aaaef8-15bd-4aca-be63-a6af7efacc61'),(6289,69,38190,NULL,19066,1,'2021-09-03 02:08:55','2021-09-03 02:08:55','f5d1fb14-6f92-42bd-a420-22be1656b713'),(6290,85,38190,NULL,17964,1,'2021-09-03 02:08:55','2021-09-03 02:08:55','48aca3c3-c794-465d-8632-a6cc3989cddd'),(6291,85,38190,NULL,17965,2,'2021-09-03 02:08:55','2021-09-03 02:08:55','5b8be174-7f01-4a0f-a89d-d57487b31431'),(6292,85,38190,NULL,17966,3,'2021-09-03 02:08:55','2021-09-03 02:08:55','067863ab-6fcd-4f14-87d3-040530264e69'),(6293,85,38190,NULL,17967,4,'2021-09-03 02:08:55','2021-09-03 02:08:55','49263086-6b0e-4f67-8f3a-d092e59e43ed'),(6294,85,38190,NULL,17968,5,'2021-09-03 02:08:55','2021-09-03 02:08:55','7950517a-3a14-477a-a7e0-c3b2573e1d25'),(6295,85,38190,NULL,17969,6,'2021-09-03 02:08:55','2021-09-03 02:08:55','773f40e0-e8f5-46ce-aa05-5bb02d0a1cd5'),(6296,85,38190,NULL,17970,7,'2021-09-03 02:08:55','2021-09-03 02:08:55','39e180fc-c78a-46ae-8a77-42ac12db9207'),(6297,84,38190,NULL,18057,1,'2021-09-03 02:08:55','2021-09-03 02:08:55','f1c74237-46af-4a04-8a09-b9117663985b'),(6298,84,38190,NULL,38160,2,'2021-09-03 02:08:55','2021-09-03 02:08:55','0d4d7183-7808-44ee-a6e9-ea3faf62651a'),(6317,79,38192,NULL,17875,1,'2021-09-03 03:29:11','2021-09-03 03:29:11','42f80a0e-6d36-4814-9d54-c108ca4f608d'),(6318,79,38192,NULL,21898,2,'2021-09-03 03:29:11','2021-09-03 03:29:11','60c29eaa-192c-4a6e-b6f9-68c7c0b94cdb'),(6321,79,38192,NULL,17934,5,'2021-09-03 03:29:11','2021-09-03 03:29:11','364dd5b4-7b37-44d8-9ac1-8d457c78c1ad'),(6322,79,38192,NULL,1,6,'2021-09-03 03:29:11','2021-09-03 03:29:11','f78e2b48-bf5d-460b-8d83-e722b34997da'),(6323,79,38192,NULL,17954,7,'2021-09-03 03:29:11','2021-09-03 03:29:11','27b53168-45aa-4a30-991d-12067baa6ccc'),(6324,79,38192,NULL,17956,8,'2021-09-03 03:29:11','2021-09-03 03:29:11','efa77a7f-4ed7-4dae-af3c-c7c5149ebc12'),(6325,69,38192,NULL,19066,1,'2021-09-03 03:29:11','2021-09-03 03:29:11','5418eebb-38be-403a-90d5-b1256874ef97'),(6326,85,38192,NULL,17964,1,'2021-09-03 03:29:11','2021-09-03 03:29:11','1d137ae9-7fff-427f-ace9-7ef6f35e83fe'),(6327,85,38192,NULL,17965,2,'2021-09-03 03:29:11','2021-09-03 03:29:11','bbd3491d-5ff5-41bb-af7e-00383c98ea2a'),(6328,85,38192,NULL,17966,3,'2021-09-03 03:29:11','2021-09-03 03:29:11','45a3490d-8b3f-4a36-ab2b-760a43e7b00a'),(6329,85,38192,NULL,17967,4,'2021-09-03 03:29:11','2021-09-03 03:29:11','fafdcf6d-4e76-434f-aeef-317515da4061'),(6330,85,38192,NULL,17968,5,'2021-09-03 03:29:11','2021-09-03 03:29:11','49a7d9ef-9f47-4944-beb6-f02a527ae2b0'),(6331,85,38192,NULL,17969,6,'2021-09-03 03:29:11','2021-09-03 03:29:11','16fba0c2-ff65-44a1-a98f-32b03bfec869'),(6332,85,38192,NULL,17970,7,'2021-09-03 03:29:11','2021-09-03 03:29:11','b0863d40-db0f-48ef-a80b-8b29ad6e6754'),(6333,84,38192,NULL,18057,1,'2021-09-03 03:29:11','2021-09-03 03:29:11','cfe02185-d99d-422c-8839-0b3343453468'),(6334,84,38192,NULL,38160,2,'2021-09-03 03:29:11','2021-09-03 03:29:11','9d6b70d6-e860-4a99-af8c-4bd9f3b1c2e0'),(6335,79,38193,NULL,17875,1,'2021-09-03 03:29:28','2021-09-03 03:29:28','6f8b0ac2-8943-41db-b7bd-64f49978beee'),(6336,79,38193,NULL,21898,2,'2021-09-03 03:29:28','2021-09-03 03:29:28','dc092790-2d31-442d-b9d2-28c1e01d879e'),(6339,79,38193,NULL,17934,5,'2021-09-03 03:29:28','2021-09-03 03:29:28','fb49ee1d-d97f-4549-a4ae-698ec189703b'),(6340,79,38193,NULL,1,6,'2021-09-03 03:29:28','2021-09-03 03:29:28','f3fc84e8-b827-4043-b1e9-96eb417ea1e2'),(6341,79,38193,NULL,17954,7,'2021-09-03 03:29:28','2021-09-03 03:29:28','0c14f320-03d6-4ecd-a05a-8736d3aa6273'),(6342,79,38193,NULL,17956,8,'2021-09-03 03:29:28','2021-09-03 03:29:28','9a18daef-bab7-4b58-a0ca-a6e1d47b8aa9'),(6343,69,38193,NULL,19066,1,'2021-09-03 03:29:28','2021-09-03 03:29:28','ac183a3d-dc08-4184-9885-cd0b75b73636'),(6344,85,38193,NULL,17964,1,'2021-09-03 03:29:28','2021-09-03 03:29:28','6685d6fc-e0fa-4e24-ad95-98e232063318'),(6345,85,38193,NULL,17965,2,'2021-09-03 03:29:28','2021-09-03 03:29:28','55e3d995-c18b-4de3-ae3e-6510b236364c'),(6346,85,38193,NULL,17966,3,'2021-09-03 03:29:28','2021-09-03 03:29:28','ff235c76-0315-4c05-931f-84398aee8be8'),(6347,85,38193,NULL,17967,4,'2021-09-03 03:29:28','2021-09-03 03:29:28','56bdd408-e77e-47b4-8482-d370fa3cdb0c'),(6348,85,38193,NULL,17968,5,'2021-09-03 03:29:28','2021-09-03 03:29:28','ec7be4d1-a7d1-4359-ac4e-2922fc2003d2'),(6349,85,38193,NULL,17969,6,'2021-09-03 03:29:28','2021-09-03 03:29:28','f8764eed-afcd-4cbc-b91c-312c567aa0f3'),(6350,85,38193,NULL,17970,7,'2021-09-03 03:29:28','2021-09-03 03:29:28','5ded83a6-5d50-4c10-9611-8a0e0e46fd56'),(6351,84,38193,NULL,18057,1,'2021-09-03 03:29:28','2021-09-03 03:29:28','c159f807-9d64-4ef7-8b92-d40d6c4e0ca9'),(6352,84,38193,NULL,38160,2,'2021-09-03 03:29:28','2021-09-03 03:29:28','5d69c927-def1-46c2-98f4-a217f455d61c'),(6362,84,18109,NULL,18057,1,'2021-09-03 04:00:14','2021-09-03 04:00:14','543518c9-d839-4e89-8a13-d38d50af109e'),(6363,84,18109,NULL,38161,2,'2021-09-03 04:00:14','2021-09-03 04:00:14','f3d9930d-2669-461e-bba0-f544c02358fc'),(6364,69,38195,NULL,19052,1,'2021-09-03 04:00:15','2021-09-03 04:00:15','a7115043-75d8-4987-8731-45645235c0f3'),(6365,85,38195,NULL,17964,1,'2021-09-03 04:00:15','2021-09-03 04:00:15','6903e047-a560-421c-a2a2-cecd099daf51'),(6366,85,38195,NULL,17965,2,'2021-09-03 04:00:15','2021-09-03 04:00:15','4a64a234-4cb0-4b5f-ac50-a89afe744228'),(6367,85,38195,NULL,17966,3,'2021-09-03 04:00:15','2021-09-03 04:00:15','1dbed866-afc5-4194-b378-116e26556cab'),(6368,85,38195,NULL,17967,4,'2021-09-03 04:00:15','2021-09-03 04:00:15','5f58a14d-0204-4f36-a53e-570dde4bc734'),(6369,85,38195,NULL,17968,5,'2021-09-03 04:00:15','2021-09-03 04:00:15','f695fced-5f19-4571-a0f1-45803b2569c0'),(6370,85,38195,NULL,17969,6,'2021-09-03 04:00:15','2021-09-03 04:00:15','619b3fcb-68ac-4f98-9753-83e51165394d'),(6371,84,38195,NULL,18057,1,'2021-09-03 04:00:15','2021-09-03 04:00:15','e5eb5a99-542b-423a-863a-0326b7a9efd8'),(6372,84,38195,NULL,38161,2,'2021-09-03 04:00:15','2021-09-03 04:00:15','8e5f54dd-ef59-4645-a7d3-afba2e993add'),(6373,69,38196,NULL,19052,1,'2021-09-03 04:00:26','2021-09-03 04:00:26','ac05fbd1-4d19-43c0-bead-cdbc1fd17b25'),(6374,85,38196,NULL,17964,1,'2021-09-03 04:00:26','2021-09-03 04:00:26','91cec345-6447-43b2-8cfd-dd4fc0723e50'),(6375,85,38196,NULL,17965,2,'2021-09-03 04:00:26','2021-09-03 04:00:26','8f08195a-0c8f-4661-8f93-59fce96733ce'),(6376,85,38196,NULL,17966,3,'2021-09-03 04:00:26','2021-09-03 04:00:26','64ae8766-2a06-4ef4-aade-fa994f79de36'),(6377,85,38196,NULL,17967,4,'2021-09-03 04:00:26','2021-09-03 04:00:26','67638cc9-6710-4ea9-8943-51fcfa3287c5'),(6378,85,38196,NULL,17968,5,'2021-09-03 04:00:26','2021-09-03 04:00:26','45b4c40b-1639-4924-a56c-ab73f7c02261'),(6379,85,38196,NULL,17969,6,'2021-09-03 04:00:26','2021-09-03 04:00:26','4c9b1eff-996c-4e9e-a96a-377782c45796'),(6380,84,38196,NULL,18057,1,'2021-09-03 04:00:26','2021-09-03 04:00:26','5fce3966-dd01-444d-93ff-6c7c57f0c3d7'),(6381,84,38196,NULL,38161,2,'2021-09-03 04:00:26','2021-09-03 04:00:26','c82759ae-3dbb-49a5-b9d0-fbcc545dec4a'),(6398,79,16828,NULL,17875,1,'2021-09-03 05:07:10','2021-09-03 05:07:10','6b02072d-4569-45d5-8053-c057417ee918'),(6399,79,16828,NULL,17899,2,'2021-09-03 05:07:10','2021-09-03 05:07:10','0c8a32ea-4725-4cbe-86fd-7d029f26e32f'),(6402,79,16828,NULL,17934,3,'2021-09-03 05:07:10','2022-05-30 01:44:13','a1fd9234-a326-4f24-bda4-432770006db1'),(6403,79,16828,NULL,17941,4,'2021-09-03 05:07:10','2022-05-30 01:44:13','9e003521-4ded-4557-b245-4de5386057dc'),(6404,79,16828,NULL,17954,5,'2021-09-03 05:07:10','2022-05-30 01:44:13','7ebc6fba-da36-46d5-ab35-9dc75f1271f7'),(6405,79,16828,NULL,17996,6,'2021-09-03 05:07:10','2022-05-30 01:44:13','abda8300-e315-4938-b891-3df34fe6df3d'),(6406,79,39378,NULL,17875,1,'2021-09-03 05:07:10','2021-09-03 05:07:10','e24f8b74-1272-4fcb-83e2-312078096a94'),(6407,79,39378,NULL,17899,2,'2021-09-03 05:07:10','2021-09-03 05:07:10','424f134f-4d7f-49a7-bdf3-69ee71ee571d'),(6410,79,39378,NULL,17934,5,'2021-09-03 05:07:10','2021-09-03 05:07:10','04ab2c97-2321-4bfb-bbbc-42d8862011a6'),(6411,79,39378,NULL,17941,6,'2021-09-03 05:07:10','2021-09-03 05:07:10','3f6824d3-4fc0-46fb-aa2d-b56df15d65b0'),(6412,79,39378,NULL,17954,7,'2021-09-03 05:07:10','2021-09-03 05:07:10','ac90aad2-aa3d-4a82-a1eb-e2e28ac3f7b3'),(6413,79,39378,NULL,17996,8,'2021-09-03 05:07:10','2021-09-03 05:07:10','d0dda1ef-07c0-4d32-8d5e-e0c4872aa47c'),(6414,69,39378,NULL,16824,1,'2021-09-03 05:07:10','2021-09-03 05:07:10','88b5f52a-d945-4abd-9822-e08325e8bd99'),(6415,85,39378,NULL,17964,1,'2021-09-03 05:07:10','2021-09-03 05:07:10','46218ba0-941e-45f8-8ccd-fe6717e72ec9'),(6416,85,39378,NULL,17966,2,'2021-09-03 05:07:10','2021-09-03 05:07:10','2a4cb461-7f0f-4551-8d1d-179a5e3e5202'),(6417,85,39378,NULL,17967,3,'2021-09-03 05:07:10','2021-09-03 05:07:10','838faa70-9184-4e01-a4b0-16374ab11b96'),(6418,85,39378,NULL,17969,4,'2021-09-03 05:07:10','2021-09-03 05:07:10','3dca3966-cf40-4f8b-9ffb-d186531b49a0'),(6419,85,39378,NULL,17970,5,'2021-09-03 05:07:10','2021-09-03 05:07:10','dea0b209-180f-407d-ab5c-6b596825d7bf'),(6420,85,39378,NULL,17971,6,'2021-09-03 05:07:10','2021-09-03 05:07:10','4f9a1f3f-b7e1-4145-a994-7281c5227c6f'),(6421,84,39378,NULL,18057,1,'2021-09-03 05:07:10','2021-09-03 05:07:10','99aef44b-a524-4938-ad1b-74f264bf1e97'),(6422,79,39501,NULL,17875,1,'2021-09-03 05:07:32','2021-09-03 05:07:32','1b0abc90-ced4-4dfa-99db-af76d7aecde6'),(6423,79,39501,NULL,17899,2,'2021-09-03 05:07:32','2021-09-03 05:07:32','6b9be90a-0728-4734-9cc7-423763624999'),(6426,79,39501,NULL,17934,5,'2021-09-03 05:07:32','2021-09-03 05:07:32','693975b0-f174-4d53-a975-98d67b4aae9f'),(6427,79,39501,NULL,17941,6,'2021-09-03 05:07:32','2021-09-03 05:07:32','5b8ca143-6145-4104-8dee-beaa22c91b9f'),(6428,79,39501,NULL,17954,7,'2021-09-03 05:07:32','2021-09-03 05:07:32','e4ade915-dff8-49af-98ae-9650af66cecd'),(6429,79,39501,NULL,17996,8,'2021-09-03 05:07:32','2021-09-03 05:07:32','eb3d7d70-4296-407c-a5e7-407d9d75b05f'),(6430,69,39501,NULL,16824,1,'2021-09-03 05:07:33','2021-09-03 05:07:33','6397640e-bdd5-4af4-ae4a-f56d8de6a72e'),(6431,85,39501,NULL,17964,1,'2021-09-03 05:07:33','2021-09-03 05:07:33','90f81fd2-b24b-4ef3-bbd2-18df2b1261f5'),(6432,85,39501,NULL,17966,2,'2021-09-03 05:07:33','2021-09-03 05:07:33','77f88254-db23-4f9d-91dc-b2045abac9f1'),(6433,85,39501,NULL,17967,3,'2021-09-03 05:07:33','2021-09-03 05:07:33','a36bac43-6d72-4f92-8628-a85dea786042'),(6434,85,39501,NULL,17969,4,'2021-09-03 05:07:33','2021-09-03 05:07:33','309178e5-4cb3-4672-8c3c-137b268b6fe7'),(6435,85,39501,NULL,17970,5,'2021-09-03 05:07:33','2021-09-03 05:07:33','948c978d-4ba8-4033-91fe-f4fb6fbd8a31'),(6436,85,39501,NULL,17971,6,'2021-09-03 05:07:33','2021-09-03 05:07:33','65481a8e-06f2-4306-bc41-a33a7ff64af2'),(6437,84,39501,NULL,18057,1,'2021-09-03 05:07:33','2021-09-03 05:07:33','1682fa97-02ca-411a-adc4-0d34dbdc21df'),(6454,79,40453,NULL,17875,1,'2021-09-03 05:17:17','2021-09-03 05:17:17','ad4f6b3b-5306-44b2-ad3b-e057c3230efb'),(6455,79,40453,NULL,17899,2,'2021-09-03 05:17:17','2021-09-03 05:17:17','b9c1606e-4c5c-4345-bc26-b56f9b02b397'),(6458,79,40453,NULL,17934,5,'2021-09-03 05:17:17','2021-09-03 05:17:17','3bb8cb0f-13a0-4127-a93c-c2a8d643c11e'),(6459,79,40453,NULL,17941,6,'2021-09-03 05:17:17','2021-09-03 05:17:17','20df1219-7407-4d06-8c47-85decfe6ea95'),(6460,79,40453,NULL,17954,7,'2021-09-03 05:17:17','2021-09-03 05:17:17','520fa919-6ff1-41eb-a45f-4704388ed6ab'),(6461,79,40453,NULL,17996,8,'2021-09-03 05:17:17','2021-09-03 05:17:17','a86ddc0e-6e58-4470-8bc6-c10dae2e2d1f'),(6462,69,40453,NULL,16824,1,'2021-09-03 05:17:17','2021-09-03 05:17:17','6b56fb01-d9f1-42cd-af79-10a9596d39db'),(6463,85,40453,NULL,17964,1,'2021-09-03 05:17:17','2021-09-03 05:17:17','b1e8238f-6fa4-4597-9df2-0cebebbc79f9'),(6464,85,40453,NULL,17966,2,'2021-09-03 05:17:17','2021-09-03 05:17:17','17c4264c-3543-4093-9776-d74cc5ba7b09'),(6465,85,40453,NULL,17967,3,'2021-09-03 05:17:17','2021-09-03 05:17:17','0860c329-53b4-4222-a24b-e64189d53d5a'),(6466,85,40453,NULL,17969,4,'2021-09-03 05:17:17','2021-09-03 05:17:17','eb638cd1-fa45-4ed5-879f-acd0a01f25d4'),(6467,85,40453,NULL,17970,5,'2021-09-03 05:17:17','2021-09-03 05:17:17','aeee90a3-c74b-4bb3-99a1-5e8f81b288aa'),(6468,85,40453,NULL,17971,6,'2021-09-03 05:17:17','2021-09-03 05:17:17','84e001b5-c14f-44de-8835-50b244e37657'),(6469,84,40453,NULL,18057,1,'2021-09-03 05:17:17','2021-09-03 05:17:17','60ff3360-9292-4b90-8dcc-c452d2180e13'),(6486,79,38121,NULL,17875,1,'2021-09-03 05:40:34','2021-09-03 05:40:34','078ffc4d-c19a-441d-83f5-1eb1ec87a6a1'),(6489,79,38121,NULL,17934,4,'2021-09-03 05:40:34','2021-09-03 05:40:34','e7e94b21-9501-4f0a-9fc9-e83d88544aae'),(6490,79,38121,NULL,30433,5,'2021-09-03 05:40:34','2021-09-03 05:40:34','241aed5c-822b-45e6-bfc7-a429434d3c4f'),(6491,79,38121,NULL,1,6,'2021-09-03 05:40:34','2021-09-03 05:40:34','fc1c8368-92d2-4d5b-a8a0-7beb0bbd2027'),(6492,79,38121,NULL,17954,7,'2021-09-03 05:40:34','2021-09-03 05:40:34','cb3d6086-7866-4f83-872a-ef7b5f93c84a'),(6493,79,38121,NULL,17956,8,'2021-09-03 05:40:34','2021-09-03 05:40:34','4a08119d-e808-43ce-ba60-5753badcfb36'),(6494,85,38121,NULL,17965,2,'2021-09-03 05:40:34','2021-09-03 05:40:34','c27ca9bb-fbf2-497f-ac9c-f06d2dbb97b1'),(6495,85,38121,NULL,17968,4,'2021-09-03 05:40:34','2021-09-03 05:40:34','cbf1c352-9af7-4599-ad1d-372b1bd46b53'),(6496,85,38121,NULL,17970,5,'2021-09-03 05:40:34','2021-09-03 05:40:34','92d76bd6-1cfb-4874-80de-71a68aff8b20'),(6497,85,38121,NULL,17971,6,'2021-09-03 05:40:34','2021-09-03 05:40:34','9ee0e135-1f68-48a5-9983-2c67487b144d'),(6498,84,38121,NULL,38157,1,'2021-09-03 05:40:34','2021-09-03 05:40:34','eeb41726-14ef-49d0-8290-54dacc3dcc6b'),(6499,79,40493,NULL,17875,1,'2021-09-03 05:40:34','2021-09-03 05:40:34','010161c2-b35e-4252-ac68-c06e2a4006d8'),(6502,79,40493,NULL,17934,4,'2021-09-03 05:40:34','2021-09-03 05:40:34','9d9bbd6f-6e2f-4352-8e1b-d92b6622b49f'),(6503,79,40493,NULL,30433,5,'2021-09-03 05:40:34','2021-09-03 05:40:34','483bdcb8-4d0b-493d-a7d0-53bcbbc5f64f'),(6504,79,40493,NULL,1,6,'2021-09-03 05:40:34','2021-09-03 05:40:34','f798901b-a560-4880-8de7-a68f62b9cc4d'),(6505,79,40493,NULL,17954,7,'2021-09-03 05:40:34','2021-09-03 05:40:34','51540406-8028-4759-bc09-2b1cc0adcc5f'),(6506,79,40493,NULL,17956,8,'2021-09-03 05:40:34','2021-09-03 05:40:34','088a8513-f9c5-467d-a1d9-0c140c10d933'),(6507,69,40493,NULL,38123,1,'2021-09-03 05:40:34','2021-09-03 05:40:34','5ac37de9-0e1c-415e-b160-e75c7b6d3e1e'),(6508,85,40493,NULL,17964,1,'2021-09-03 05:40:34','2021-09-03 05:40:34','63d6ec11-1c76-4002-a912-55f07f310a4c'),(6509,85,40493,NULL,17965,2,'2021-09-03 05:40:34','2021-09-03 05:40:34','c69330d2-df39-470d-8e14-2603e7a9828d'),(6510,85,40493,NULL,17966,3,'2021-09-03 05:40:34','2021-09-03 05:40:34','864ab834-4a4c-4f6d-931d-5351c8efea80'),(6511,85,40493,NULL,17968,4,'2021-09-03 05:40:34','2021-09-03 05:40:34','198564bc-6755-4e3c-9ba8-9770b92d885e'),(6512,85,40493,NULL,17970,5,'2021-09-03 05:40:34','2021-09-03 05:40:34','21fd6077-8a63-42ee-931c-0dcf433fa727'),(6513,85,40493,NULL,17971,6,'2021-09-03 05:40:34','2021-09-03 05:40:34','ad6e945b-58d3-4917-b18c-fb0ff6dbb68f'),(6514,84,40493,NULL,38157,1,'2021-09-03 05:40:34','2021-09-03 05:40:34','723ecea6-c6e1-449d-b698-a7fd38de0abd'),(6515,79,40494,NULL,17875,1,'2021-09-03 05:40:44','2021-09-03 05:40:44','df99994c-25dd-4a45-a4f4-caeaab51526f'),(6518,79,40494,NULL,17934,4,'2021-09-03 05:40:44','2021-09-03 05:40:44','d3bab520-70d2-464a-b3bd-55a0b1c91d13'),(6519,79,40494,NULL,30433,5,'2021-09-03 05:40:44','2021-09-03 05:40:44','cba7c9af-4da3-4dec-ac8a-d7e2005d2ea6'),(6520,79,40494,NULL,1,6,'2021-09-03 05:40:44','2021-09-03 05:40:44','59a30f4a-9db3-403d-a42d-a0ad127c5e85'),(6521,79,40494,NULL,17954,7,'2021-09-03 05:40:44','2021-09-03 05:40:44','23a3f455-e71f-432d-8abd-faeffb4d2c27'),(6522,79,40494,NULL,17956,8,'2021-09-03 05:40:44','2021-09-03 05:40:44','fd54f045-2d19-4ca4-abaa-9b1930c35869'),(6523,69,40494,NULL,38123,1,'2021-09-03 05:40:44','2021-09-03 05:40:44','7e9a8cfe-f0a0-4705-83da-060ae213e71d'),(6524,85,40494,NULL,17964,1,'2021-09-03 05:40:44','2021-09-03 05:40:44','4412c6fd-7875-4ae8-875a-c6173bdd31a9'),(6525,85,40494,NULL,17965,2,'2021-09-03 05:40:44','2021-09-03 05:40:44','b73bce06-408c-42cd-92f4-2a8c91dd81c5'),(6526,85,40494,NULL,17966,3,'2021-09-03 05:40:44','2021-09-03 05:40:44','72ec0ee1-82c1-4e62-8615-083a2cee6c7d'),(6527,85,40494,NULL,17968,4,'2021-09-03 05:40:44','2021-09-03 05:40:44','adcc9bb2-f791-4d03-9c45-c2e0ace22f6d'),(6528,85,40494,NULL,17970,5,'2021-09-03 05:40:44','2021-09-03 05:40:44','09501b95-9fc7-41d4-94ab-703952b93439'),(6529,85,40494,NULL,17971,6,'2021-09-03 05:40:44','2021-09-03 05:40:44','62be88ca-8b9a-42fc-a656-2609b296a854'),(6530,84,40494,NULL,38157,1,'2021-09-03 05:40:44','2021-09-03 05:40:44','3cf32fc8-6e2b-40af-9d3e-0c6209f59985'),(6547,79,40496,NULL,17875,1,'2021-09-03 05:49:35','2021-09-03 05:49:35','583728e6-49d6-45d0-8540-07f3824287e3'),(6548,79,40496,NULL,17899,2,'2021-09-03 05:49:35','2021-09-03 05:49:35','f5c6da7e-d73e-4f55-9341-7442a0b2f293'),(6551,79,40496,NULL,17934,5,'2021-09-03 05:49:35','2021-09-03 05:49:35','40c6a538-075f-4179-a996-acda28a3ffff'),(6552,79,40496,NULL,17941,6,'2021-09-03 05:49:35','2021-09-03 05:49:35','522b602d-94c1-47cb-96f2-e893dfa5c4e4'),(6553,79,40496,NULL,17954,7,'2021-09-03 05:49:35','2021-09-03 05:49:35','1f9bc12c-fc60-47a9-b782-8bd84df1e88c'),(6554,79,40496,NULL,17996,8,'2021-09-03 05:49:35','2021-09-03 05:49:35','a204f7aa-bc9b-4fb5-97d1-8e88179d03d5'),(6555,69,40496,NULL,16824,1,'2021-09-03 05:49:35','2021-09-03 05:49:35','4f62f9fd-d551-4797-ae76-fcbbb97f2b82'),(6556,85,40496,NULL,17964,1,'2021-09-03 05:49:35','2021-09-03 05:49:35','73ba17f9-7328-4d02-b49c-ea9580afe48b'),(6557,85,40496,NULL,17966,2,'2021-09-03 05:49:35','2021-09-03 05:49:35','471dbed0-5b5f-4c98-9fee-e1eff865007b'),(6558,85,40496,NULL,17967,3,'2021-09-03 05:49:35','2021-09-03 05:49:35','86e97b34-31b2-4548-8538-4dd90ce3a1f4'),(6559,85,40496,NULL,17969,4,'2021-09-03 05:49:35','2021-09-03 05:49:35','14fa549d-2ced-4baa-96f5-48c946b2f430'),(6560,85,40496,NULL,17970,5,'2021-09-03 05:49:35','2021-09-03 05:49:35','dbdfbd77-55b8-4586-bbce-60bc36689edc'),(6561,85,40496,NULL,17971,6,'2021-09-03 05:49:35','2021-09-03 05:49:35','2390be04-fd00-44f3-b318-fe5163618b4f'),(6562,84,40496,NULL,18057,1,'2021-09-03 05:49:35','2021-09-03 05:49:35','f7f86f4e-43c6-4ece-ac22-43c0a4a6d172'),(6574,79,40501,NULL,17956,1,'2021-09-03 06:06:05','2021-09-03 06:06:05','d5398dc5-14ca-4d96-bd5f-f1b2e9300f11'),(6575,85,40501,NULL,17964,1,'2021-09-03 06:06:32','2021-09-03 06:06:32','b371a7eb-2073-410a-89e4-108203342b94'),(6576,85,40501,NULL,17968,2,'2021-09-03 06:06:32','2021-09-03 06:06:32','d2f93d4f-1eb3-4545-a1b5-f3c7e16b8867'),(6577,84,40501,NULL,18057,1,'2021-09-03 06:06:43','2021-09-03 06:06:43','4f2a4cb2-35fc-456e-9874-d0d46655ad5d'),(6578,84,40501,NULL,38160,2,'2021-09-03 06:06:43','2021-09-03 06:06:43','ca4b679e-fdb2-4dad-98f8-ef7c22db84a9'),(6579,79,18164,NULL,17887,1,'2021-09-03 06:10:44','2021-09-03 06:10:44','91886a4a-f190-460b-b16b-74f519d95882'),(6580,79,18164,NULL,17893,2,'2021-09-03 06:10:44','2021-09-03 06:10:44','db0dc6bf-903f-4470-aa18-88bf09af72c9'),(6581,79,18164,NULL,21898,3,'2021-09-03 06:10:44','2021-09-03 06:10:44','15613806-6e2d-4151-adc3-1c8abf22662f'),(6583,79,18164,NULL,17881,4,'2021-09-03 06:10:44','2022-05-30 01:38:27','1e5bd9e1-01a5-4f27-b326-6bd5b5dc5f47'),(6584,79,18164,NULL,17956,5,'2021-09-03 06:10:44','2022-05-30 01:38:27','f6f0e8f9-ecfa-4d86-8625-fa1e50d28301'),(6585,85,18164,NULL,17964,1,'2021-09-03 06:10:44','2021-09-03 06:10:44','7378c97f-b95a-43aa-8c77-ac2ca591b5e9'),(6586,85,18164,NULL,17968,2,'2021-09-03 06:10:44','2021-09-03 06:10:44','53312937-4f89-49f9-a2db-53029b2dd72e'),(6587,84,18164,NULL,18057,1,'2021-09-03 06:10:44','2021-09-03 06:10:44','7a90e72c-9fc6-4c22-af9c-229f521f6525'),(6588,84,18164,NULL,38159,2,'2021-09-03 06:10:44','2021-09-03 06:10:44','5ebb1275-3b24-4910-98e4-5c6b2bd758a5'),(6589,84,18164,NULL,38160,3,'2021-09-03 06:10:44','2021-09-03 06:10:44','85243dcd-f4e4-40fb-89f3-e237f93e84b0'),(6590,79,40503,NULL,17887,1,'2021-09-03 06:10:44','2021-09-03 06:10:44','c30e8066-9ca4-4f44-9f08-30ef9c456705'),(6591,79,40503,NULL,17893,2,'2021-09-03 06:10:44','2021-09-03 06:10:44','4f9e85c2-4ee3-4504-a0d5-d14f123d9f01'),(6592,79,40503,NULL,21898,3,'2021-09-03 06:10:44','2021-09-03 06:10:44','a45f12f5-c647-4461-9939-4835c95d7e01'),(6594,79,40503,NULL,17881,5,'2021-09-03 06:10:44','2021-09-03 06:10:44','03514d36-350f-4d47-8c3a-142c20e443f3'),(6595,79,40503,NULL,17956,6,'2021-09-03 06:10:44','2021-09-03 06:10:44','a4970ddc-75ba-4d25-b061-28de11b2c8e8'),(6596,85,40503,NULL,17964,1,'2021-09-03 06:10:44','2021-09-03 06:10:44','b020bd52-0fb7-4030-8c2f-b6f9cf8e4a76'),(6597,85,40503,NULL,17968,2,'2021-09-03 06:10:44','2021-09-03 06:10:44','bde9b441-587d-4316-b32c-dbcfa719404e'),(6598,84,40503,NULL,18057,1,'2021-09-03 06:10:44','2021-09-03 06:10:44','3f1769ed-dabe-4c63-b22f-657c423125a6'),(6599,84,40503,NULL,38159,2,'2021-09-03 06:10:44','2021-09-03 06:10:44','5a21222c-a109-4178-b72b-0c1a1e439f1e'),(6600,84,40503,NULL,38160,3,'2021-09-03 06:10:44','2021-09-03 06:10:44','5ede725a-3f05-43c6-beaa-5b7a0a004a57'),(6601,79,40504,NULL,17875,1,'2021-09-03 06:29:30','2021-09-03 06:29:30','262c3c47-a296-489f-ba58-a17622ac9cd1'),(6602,79,40504,NULL,17887,2,'2021-09-03 06:29:30','2021-09-03 06:29:30','e0070197-4eb0-4974-8014-925b8b9dffd8'),(6603,79,40504,NULL,17899,3,'2021-09-03 06:29:30','2021-09-03 06:29:30','00162be2-1d37-4849-bf18-ae780155c4ce'),(6606,79,40504,NULL,17934,4,'2021-09-03 06:29:30','2022-05-30 01:31:34','f29d89a6-1d0a-47c5-ace5-8b67c56bff37'),(6607,79,40504,NULL,17941,5,'2021-09-03 06:29:30','2022-05-30 01:31:34','86c69755-6abb-49fc-843c-36afa1ad06ad'),(6608,79,40504,NULL,1,6,'2021-09-03 06:29:30','2022-05-30 01:31:34','1a5825e8-871a-43f0-a0b2-74b6ad78f37a'),(6609,79,40504,NULL,17956,7,'2021-09-03 06:29:30','2022-05-30 01:31:34','a4533da4-1dd6-432c-a505-728ccc128dc5'),(6610,79,40504,NULL,17996,8,'2021-09-03 06:29:30','2022-05-30 01:31:34','73de5503-ae50-4597-a3a7-ef932de757e4'),(6611,85,40504,NULL,17964,1,'2021-09-03 06:31:36','2021-09-03 06:31:36','c63ff6b1-699b-4d57-808d-aa0bb734aa17'),(6612,85,40504,NULL,17965,2,'2021-09-03 06:31:36','2021-09-03 06:31:36','175f5bad-3557-4cb2-bea9-a70bea2cc4ee'),(6613,85,40504,NULL,17966,3,'2021-09-03 06:31:36','2021-09-03 06:31:36','333ead0e-f48b-4f39-b8de-cc920c8269a1'),(6614,85,40504,NULL,17968,4,'2021-09-03 06:31:36','2021-09-03 06:31:36','6b9c318e-514c-497e-9d68-79e65794e22c'),(6615,85,40504,NULL,17969,5,'2021-09-03 06:31:36','2021-09-03 06:31:36','d5388ae1-6eee-460d-bada-4f22dff0547c'),(6616,85,40504,NULL,17970,6,'2021-09-03 06:31:36','2021-09-03 06:31:36','4260cca0-e679-4d67-b13a-8d54a0a4f1ca'),(6617,85,40504,NULL,17971,7,'2021-09-03 06:31:36','2021-09-03 06:31:36','235e7954-0cb8-4e5d-88f0-4dd5ffd98974'),(6618,84,40504,NULL,38160,1,'2021-09-03 06:31:44','2021-09-03 06:31:44','8badfdda-de59-4677-a258-213b336e9b24'),(6619,79,40505,NULL,17875,1,'2021-09-03 06:36:49','2021-09-03 06:36:49','82401a7c-3815-4f37-9aa4-fb2854779b7c'),(6620,79,40505,NULL,17887,2,'2021-09-03 06:36:49','2021-09-03 06:36:49','16cc9530-777f-4208-b093-46ba05d0808c'),(6621,79,40505,NULL,17899,3,'2021-09-03 06:36:49','2021-09-03 06:36:49','252afcb6-b99c-407b-924d-2b4c985348f4'),(6623,79,40505,NULL,17934,5,'2021-09-03 06:36:49','2021-09-03 06:36:49','45a815bd-7255-4464-9fc4-30b2c95addae'),(6624,79,40505,NULL,17941,6,'2021-09-03 06:36:49','2021-09-03 06:36:49','496e4bce-c6e3-4cb8-9583-46e3dba4ce54'),(6625,79,40505,NULL,1,7,'2021-09-03 06:36:49','2021-09-03 06:36:49','567368c7-2a2b-4b6e-bf70-f529a7c4f53c'),(6626,79,40505,NULL,17956,8,'2021-09-03 06:36:49','2021-09-03 06:36:49','aba2dfbe-d5ea-4f5b-be9f-34b93e577efa'),(6627,79,40505,NULL,17996,9,'2021-09-03 06:36:49','2021-09-03 06:36:49','685b6246-bc61-48cb-bc5e-1bbde206b23d'),(6628,85,40505,NULL,17964,1,'2021-09-03 06:36:49','2021-09-03 06:36:49','a6d947ca-d82a-4a71-8a0a-4de788d282e4'),(6629,85,40505,NULL,17965,2,'2021-09-03 06:36:49','2021-09-03 06:36:49','cb8efb07-53d1-4e9c-9aab-e4f667287a5e'),(6630,85,40505,NULL,17966,3,'2021-09-03 06:36:49','2021-09-03 06:36:49','ac5401b2-8363-4549-ac30-38b7c8c30e28'),(6631,85,40505,NULL,17968,4,'2021-09-03 06:36:49','2021-09-03 06:36:49','178ffd2b-ab74-45b1-8837-662c365df97e'),(6632,85,40505,NULL,17969,5,'2021-09-03 06:36:49','2021-09-03 06:36:49','f07c4836-443e-44f3-a9bc-8e843fcbd16a'),(6633,85,40505,NULL,17970,6,'2021-09-03 06:36:49','2021-09-03 06:36:49','7799de52-3639-4ee5-b37d-56c9d70ee63a'),(6634,85,40505,NULL,17971,7,'2021-09-03 06:36:49','2021-09-03 06:36:49','92f69edd-42d0-4266-bdb8-9d2995200639'),(6635,84,40505,NULL,38160,1,'2021-09-03 06:36:49','2021-09-03 06:36:49','e0e34c94-f9c9-41d9-bf0b-39b5820e02ca'),(6636,79,40506,NULL,17875,1,'2021-09-03 06:55:15','2021-09-03 06:55:15','0aa005ca-ed71-4c3b-950b-c312d0f27a0a'),(6639,79,40506,NULL,17934,2,'2021-09-03 06:55:15','2022-05-30 01:29:36','a69ad1d2-6e9d-4d49-84d1-55b37c77a09a'),(6640,79,40506,NULL,17956,3,'2021-09-03 06:55:15','2022-05-30 01:29:36','4742bb76-b54e-40e2-ba50-ebd920e1a181'),(6641,85,40506,NULL,17964,1,'2021-09-03 06:55:31','2021-09-03 06:55:31','c76498ba-5a49-461f-99a1-ac8c2599b82d'),(6642,85,40506,NULL,17966,2,'2021-09-03 06:55:31','2021-09-03 06:55:31','d06bf193-5fac-45d6-9e4d-f5878e11cbdc'),(6643,85,40506,NULL,17968,3,'2021-09-03 06:55:31','2021-09-03 06:55:31','6079a0f3-1746-4749-9592-266fd2187288'),(6644,85,40506,NULL,17970,4,'2021-09-03 06:55:31','2021-09-03 06:55:31','ac3bcfa3-b111-47b8-b602-492eaafe537a'),(6645,85,40506,NULL,17971,5,'2021-09-03 06:55:31','2021-09-03 06:55:31','757d4373-139c-44d7-b55e-d2a23dde9944'),(6646,84,40506,NULL,38157,1,'2021-09-03 06:55:37','2021-09-03 06:55:37','79b7bcf6-8828-4589-a10a-bff599131daa'),(6647,79,40507,NULL,17875,1,'2021-09-03 07:15:30','2021-09-03 07:15:30','81a05da7-2350-4584-a10f-d94cd056340b'),(6650,79,40507,NULL,17934,4,'2021-09-03 07:15:30','2021-09-03 07:15:30','543022db-571f-41df-9fed-50d12c7de72f'),(6651,79,40507,NULL,17956,5,'2021-09-03 07:15:30','2021-09-03 07:15:30','66e8e8dc-6b40-49c3-88ac-efeff298dde2'),(6652,85,40507,NULL,17964,1,'2021-09-03 07:15:30','2021-09-03 07:15:30','f343c232-fc40-4842-8306-4f37548c37ce'),(6653,85,40507,NULL,17966,2,'2021-09-03 07:15:30','2021-09-03 07:15:30','064d57a5-ec84-4f57-97ff-cb1dfa379dcb'),(6654,85,40507,NULL,17968,3,'2021-09-03 07:15:30','2021-09-03 07:15:30','88ad866e-abc3-4afb-8fc6-d3f8edd27bf2'),(6655,85,40507,NULL,17970,4,'2021-09-03 07:15:30','2021-09-03 07:15:30','3b4e1165-7d00-4d41-aca1-bc01805d9b83'),(6656,85,40507,NULL,17971,5,'2021-09-03 07:15:30','2021-09-03 07:15:30','1daa5e79-f916-4f4e-9c6a-a5afdeb12155'),(6657,84,40507,NULL,38157,1,'2021-09-03 07:15:30','2021-09-03 07:15:30','02c51593-de69-46d2-8c18-151f3fa80bcc'),(6677,79,44837,NULL,17875,1,'2021-09-10 01:08:19','2021-09-10 01:08:19','ce2009a8-91f5-4902-a7c7-61ca40d1bf13'),(6679,79,44837,NULL,17934,2,'2021-09-10 01:08:19','2022-05-16 04:02:10','4822b3ba-c002-4d87-a04a-71007381ceb5'),(6680,79,44837,NULL,17954,3,'2021-09-10 01:08:19','2022-05-16 04:02:10','8ab1135d-b2c4-44d5-896f-b9685740f8d4'),(6681,79,44837,NULL,17956,4,'2021-09-10 01:08:19','2022-05-16 04:02:10','e65b1b58-6c37-4050-af28-624d9a96e992'),(6682,85,44837,NULL,17964,1,'2021-09-10 01:08:35','2021-09-10 01:08:35','848c3fcf-33a6-422c-8cd4-a0795142b953'),(6683,85,44837,NULL,17965,2,'2021-09-10 01:08:35','2021-09-10 01:08:35','24667007-a873-4266-a49a-a6f0765c2627'),(6684,85,44837,NULL,17966,3,'2021-09-10 01:08:35','2021-09-10 01:08:35','969ecd61-0c27-43a9-b39a-211affa5bbc1'),(6685,85,44837,NULL,17968,4,'2021-09-10 01:08:35','2021-09-10 01:08:35','71284221-671b-4403-ba4a-ba59f469e1be'),(6686,85,44837,NULL,17969,5,'2021-09-10 01:08:35','2021-09-10 01:08:35','675519a3-7add-4b5f-b787-ff0653585374'),(6687,85,44837,NULL,17971,6,'2021-09-10 01:08:35','2021-09-10 01:08:35','664d6f2d-345b-4c89-93d8-9b2df6fecc55'),(6688,84,44837,NULL,38159,1,'2021-09-10 01:08:41','2021-09-10 01:08:41','9a65d708-195b-4aaa-bca6-b98350a31076'),(6689,79,44838,NULL,17875,1,'2021-09-10 01:16:41','2021-09-10 01:16:41','806a6285-33ad-45cb-a44d-b06165aa112c'),(6691,79,44838,NULL,17934,3,'2021-09-10 01:16:41','2021-09-10 01:16:41','5a7ba800-976d-4df8-ba19-16494fa16d88'),(6692,79,44838,NULL,17954,4,'2021-09-10 01:16:41','2021-09-10 01:16:41','f5fdafbb-88ca-4361-9748-f9590ed66c54'),(6693,79,44838,NULL,17956,5,'2021-09-10 01:16:41','2021-09-10 01:16:41','609eab30-bc11-408c-993e-b18f10df9ac4'),(6694,85,44838,NULL,17964,1,'2021-09-10 01:16:41','2021-09-10 01:16:41','81cb40c5-8465-4380-b984-6a778833a88e'),(6695,85,44838,NULL,17965,2,'2021-09-10 01:16:41','2021-09-10 01:16:41','59ad9110-5166-43e1-bb16-abdb5547d6a6'),(6696,85,44838,NULL,17966,3,'2021-09-10 01:16:41','2021-09-10 01:16:41','646ad4a0-87d7-44de-9d21-6b32e478d9ba'),(6697,85,44838,NULL,17968,4,'2021-09-10 01:16:41','2021-09-10 01:16:41','06902fa0-38e3-4454-a873-44e06a448d72'),(6698,85,44838,NULL,17969,5,'2021-09-10 01:16:41','2021-09-10 01:16:41','cce67f7f-2959-4724-9f67-d0d9567fe315'),(6699,85,44838,NULL,17971,6,'2021-09-10 01:16:41','2021-09-10 01:16:41','80215cbd-89d7-4b30-97da-6f8cf56f6cf8'),(6700,84,44838,NULL,38159,1,'2021-09-10 01:16:41','2021-09-10 01:16:41','42780a99-1de5-4f4d-8081-b6b8051a28eb'),(6712,79,44840,NULL,17887,1,'2021-09-10 01:18:35','2021-09-10 01:18:35','18feb132-f07b-4c5f-98dc-baea6f9a38e4'),(6713,79,44840,NULL,17893,2,'2021-09-10 01:18:35','2021-09-10 01:18:35','24eece5c-bd2c-4773-a66a-039d246c0f8c'),(6714,79,44840,NULL,21898,3,'2021-09-10 01:18:35','2021-09-10 01:18:35','31896a69-f005-45d3-830a-6518325aaa87'),(6716,79,44840,NULL,17881,5,'2021-09-10 01:18:35','2021-09-10 01:18:35','c5a831b0-027f-427c-a24d-b555fd5ea183'),(6717,79,44840,NULL,17956,6,'2021-09-10 01:18:35','2021-09-10 01:18:35','cf16c135-b29b-4201-990a-9a35aa432abb'),(6718,85,44840,NULL,17964,1,'2021-09-10 01:18:35','2021-09-10 01:18:35','077f7a5f-5a77-40d3-b234-ea98b9cd1658'),(6719,85,44840,NULL,17968,2,'2021-09-10 01:18:35','2021-09-10 01:18:35','91ec509c-9688-4897-9541-73dce2d4e95b'),(6720,84,44840,NULL,18057,1,'2021-09-10 01:18:35','2021-09-10 01:18:35','64754f0c-0943-4e6c-af27-586cbbce9d49'),(6721,84,44840,NULL,38159,2,'2021-09-10 01:18:35','2021-09-10 01:18:35','e0840cd9-a4e6-4361-b965-9f85db313b2f'),(6722,84,44840,NULL,38160,3,'2021-09-10 01:18:35','2021-09-10 01:18:35','14e38ba5-f686-47e1-be02-cf2a4bdbff95'),(6723,79,44841,NULL,17875,1,'2021-09-10 01:19:40','2021-09-10 01:19:40','db303778-7e2e-4114-889d-da1dbc2ff466'),(6725,79,44841,NULL,17881,2,'2021-09-10 01:19:40','2022-05-30 01:24:58','b3c74652-d605-4b7e-840c-0780df926ba0'),(6726,79,44841,NULL,1,3,'2021-09-10 01:19:40','2022-05-30 01:24:58','1e83f3dc-d548-4a50-b52f-de9df2a46dd0'),(6727,79,44841,NULL,17954,4,'2021-09-10 01:19:40','2022-05-30 01:24:58','91b92020-4bc1-4ed5-9aec-6e7a5ef20bb9'),(6728,79,44841,NULL,17956,5,'2021-09-10 01:19:40','2022-05-30 01:24:58','93c96709-9eb1-4229-a96f-1b3076f5bf16'),(6729,85,44841,NULL,17964,1,'2021-09-10 01:19:56','2021-09-10 01:19:56','7864b4c1-3331-4511-91c4-5119bee8875f'),(6730,85,44841,NULL,17968,2,'2021-09-10 01:19:56','2021-09-10 01:19:56','224e8cbb-b0d4-471c-be2d-171001e8c3bc'),(6731,85,44841,NULL,17970,3,'2021-09-10 01:19:56','2021-09-10 01:19:56','7120e5c5-65df-40b2-ad0e-5fb8f6356823'),(6732,85,44841,NULL,17971,4,'2021-09-10 01:19:56','2021-09-10 01:19:56','c53bce03-2079-442e-a3ee-1aeba6069d69'),(6733,84,44841,NULL,18057,1,'2021-09-10 01:20:03','2021-09-10 01:20:03','24688e18-4eed-4029-ad9e-7374277dabd3'),(6734,84,44841,NULL,38160,2,'2021-09-10 01:20:03','2021-09-10 01:20:03','5c09f90a-c7ed-4104-9c39-b2998054b751'),(6735,79,44842,NULL,17875,1,'2021-09-10 01:21:43','2021-09-10 01:21:43','670a5889-d40e-4371-b059-a28bb606780d'),(6737,79,44842,NULL,17881,3,'2021-09-10 01:21:43','2021-09-10 01:21:43','eb3902ce-d5be-42c8-a137-37c786d1305d'),(6738,79,44842,NULL,1,4,'2021-09-10 01:21:43','2021-09-10 01:21:43','98b18e90-527b-4b8e-b6ae-23f2ce9705ca'),(6739,79,44842,NULL,17954,5,'2021-09-10 01:21:43','2021-09-10 01:21:43','e8688c9e-7a04-4ed3-97d0-555c7d00f48f'),(6740,79,44842,NULL,17956,6,'2021-09-10 01:21:43','2021-09-10 01:21:43','c65ee1f5-6af5-4988-af71-06f591f3df6b'),(6741,85,44842,NULL,17964,1,'2021-09-10 01:21:43','2021-09-10 01:21:43','a73ea347-6021-4639-8f71-d3f5aee76711'),(6742,85,44842,NULL,17968,2,'2021-09-10 01:21:43','2021-09-10 01:21:43','bf49a1ae-8f40-4277-ab9f-988f8e445146'),(6743,85,44842,NULL,17970,3,'2021-09-10 01:21:43','2021-09-10 01:21:43','e19d724f-ba91-4d45-aeb2-ee3eb6b5068e'),(6744,85,44842,NULL,17971,4,'2021-09-10 01:21:43','2021-09-10 01:21:43','58fe6670-dfdf-4035-a725-7887c0669388'),(6745,84,44842,NULL,18057,1,'2021-09-10 01:21:43','2021-09-10 01:21:43','7145b2e0-c9d6-48fc-b8b7-5b200dd4236f'),(6746,84,44842,NULL,38160,2,'2021-09-10 01:21:43','2021-09-10 01:21:43','babc013c-eeae-484d-93e5-be5cbedd817d'),(6747,79,44843,NULL,17875,1,'2021-09-10 01:25:36','2021-09-10 01:25:36','26b632b1-be1e-4662-bc88-1e153bd9185a'),(6748,79,44843,NULL,17934,2,'2021-09-10 01:25:36','2021-09-10 01:25:36','4c481a86-159d-4917-a9d6-699418d6a398'),(6749,79,44843,NULL,17954,3,'2021-09-10 01:25:36','2021-09-10 01:25:36','5606660c-68dc-46dc-ba6d-b3d9c56db642'),(6750,79,44843,NULL,17956,4,'2021-09-10 01:25:36','2021-09-10 01:25:36','01a0b0b2-4ce1-49b9-af5a-3fb4af1fdc54'),(6751,85,44843,NULL,17964,1,'2021-09-10 01:25:49','2021-09-10 01:25:49','5ae6f3da-66e4-4e66-8023-1a33ef0ac69b'),(6752,85,44843,NULL,17966,2,'2021-09-10 01:25:49','2021-09-10 01:25:49','2f5a73c1-4c68-4b3f-9342-4dc33ef31097'),(6753,85,44843,NULL,17967,3,'2021-09-10 01:25:49','2021-09-10 01:25:49','b2d37b05-c5d0-4953-bf2f-8d03be8c56ba'),(6754,85,44843,NULL,17968,4,'2021-09-10 01:25:49','2021-09-10 01:25:49','60dcb8f5-1f0f-4ed2-b97a-eee5b0b8e58c'),(6755,85,44843,NULL,17970,5,'2021-09-10 01:25:49','2021-09-10 01:25:49','a92e874d-d988-4f96-a73c-b095c08b9b9c'),(6756,85,44843,NULL,17971,6,'2021-09-10 01:25:49','2021-09-10 01:25:49','8fe6cc21-77c9-4cb7-8c6a-c96112fcfc1a'),(6757,84,44843,NULL,18057,1,'2021-09-10 01:26:03','2021-09-10 01:26:03','e80c1184-f2be-4c49-b17b-9d9dd0e3341e'),(6758,84,44843,NULL,38160,2,'2021-09-10 01:26:03','2021-09-10 01:26:03','47657b39-05da-4745-8d41-ce9bdc17f592'),(6759,79,44844,NULL,17875,1,'2021-09-10 01:28:12','2021-09-10 01:28:12','8ec8b0b0-a7ea-467a-9fb6-989b28766fa1'),(6760,79,44844,NULL,17934,2,'2021-09-10 01:28:12','2021-09-10 01:28:12','dbcff045-90e2-4efe-87d1-8353610e35d7'),(6761,79,44844,NULL,17954,3,'2021-09-10 01:28:12','2021-09-10 01:28:12','511d07a1-d5f9-4655-ac41-ccb59d6c2a57'),(6762,79,44844,NULL,17956,4,'2021-09-10 01:28:12','2021-09-10 01:28:12','589a05ef-4f19-4162-adb8-8f224a448172'),(6763,85,44844,NULL,17964,1,'2021-09-10 01:28:12','2021-09-10 01:28:12','f661e80d-97c9-4822-87a6-15d50bd7e82f'),(6764,85,44844,NULL,17966,2,'2021-09-10 01:28:12','2021-09-10 01:28:12','b7f41b03-6c6c-4f81-900b-41bc583031dd'),(6765,85,44844,NULL,17967,3,'2021-09-10 01:28:12','2021-09-10 01:28:12','b0b9e0da-b331-43d4-bdc0-b68f43a03f40'),(6766,85,44844,NULL,17968,4,'2021-09-10 01:28:12','2021-09-10 01:28:12','2d21f37d-4e01-41ae-b116-705a3995d323'),(6767,85,44844,NULL,17970,5,'2021-09-10 01:28:12','2021-09-10 01:28:12','d22d0f05-89f0-4283-a329-f75dfda7f391'),(6768,85,44844,NULL,17971,6,'2021-09-10 01:28:12','2021-09-10 01:28:12','5cc42351-0864-455a-932e-e6265d82b8a8'),(6769,84,44844,NULL,18057,1,'2021-09-10 01:28:12','2021-09-10 01:28:12','af250881-8433-4bc5-b23c-e26414ddc8e0'),(6770,84,44844,NULL,38160,2,'2021-09-10 01:28:12','2021-09-10 01:28:12','1c03751f-f807-4b8b-8daf-30678c80268c'),(6771,79,44845,NULL,17875,1,'2021-09-10 01:30:23','2021-09-10 01:30:23','1f479ef8-11a6-4138-8ac4-5f15945502a8'),(6772,79,44845,NULL,17954,2,'2021-09-10 01:30:23','2021-09-10 01:30:23','476042ed-263b-416a-9b0e-a1e53d838e74'),(6773,85,44845,NULL,17964,1,'2021-09-10 01:30:36','2021-09-10 01:30:36','e00efff5-109e-40c2-ba5c-d194b154be85'),(6774,85,44845,NULL,17966,2,'2021-09-10 01:30:36','2021-09-10 01:30:36','42494182-188e-4e5a-9792-5916cd98fd3d'),(6775,85,44845,NULL,17968,3,'2021-09-10 01:30:36','2021-09-10 01:30:36','a2895880-b754-4067-8c8f-aaf1a397ef1e'),(6776,85,44845,NULL,17970,4,'2021-09-10 01:30:36','2021-09-10 01:30:36','cbaefa28-4449-4480-94fa-f3ef3ce42586'),(6777,85,44845,NULL,17971,5,'2021-09-10 01:30:36','2021-09-10 01:30:36','a78be755-269e-47b9-860a-844b1a571d51'),(6778,84,44845,NULL,18057,1,'2021-09-10 01:30:42','2021-09-10 01:30:42','2a1a82ee-8d2b-4745-a180-77f57f3db365'),(6779,79,44846,NULL,17875,1,'2021-09-10 01:37:29','2021-09-10 01:37:29','29967bcf-b9d8-459a-83a7-e495939387b7'),(6780,79,44846,NULL,17954,2,'2021-09-10 01:37:29','2021-09-10 01:37:29','1c91ffb4-ca0f-426c-873d-5eb54538cd30'),(6781,85,44846,NULL,17964,1,'2021-09-10 01:37:29','2021-09-10 01:37:29','cd6a77e8-2ce0-44d3-8648-ada0bbbbb997'),(6782,85,44846,NULL,17966,2,'2021-09-10 01:37:29','2021-09-10 01:37:29','bf3caf02-0e91-4df0-9c02-1eb8e2e1a33f'),(6783,85,44846,NULL,17968,3,'2021-09-10 01:37:29','2021-09-10 01:37:29','af5f058b-7d74-43a9-8999-be001465ccec'),(6784,85,44846,NULL,17970,4,'2021-09-10 01:37:29','2021-09-10 01:37:29','75697743-952d-48e9-8b09-56a4b7065f7d'),(6785,85,44846,NULL,17971,5,'2021-09-10 01:37:29','2021-09-10 01:37:29','aade3252-3592-48de-8ebe-285769293ca2'),(6786,84,44846,NULL,18057,1,'2021-09-10 01:37:29','2021-09-10 01:37:29','4c767089-4931-4250-9349-cd9966b1765f'),(6806,79,44848,NULL,17875,1,'2021-09-10 01:37:37','2021-09-10 01:37:37','a27c8ae8-2397-4752-afca-e143b3ffc5e8'),(6807,79,44848,NULL,17887,2,'2021-09-10 01:37:37','2021-09-10 01:37:37','b05c91d2-cfb7-406b-b6be-12485ccec88a'),(6808,79,44848,NULL,17899,3,'2021-09-10 01:37:37','2021-09-10 01:37:37','e865fae0-efd0-46fa-92e5-982912989cef'),(6811,79,44848,NULL,17934,6,'2021-09-10 01:37:37','2021-09-10 01:37:37','db72b113-829a-41f2-ac68-5e6536729c86'),(6812,79,44848,NULL,17941,7,'2021-09-10 01:37:37','2021-09-10 01:37:37','99bc3e1d-4166-424f-b08b-f23229942f04'),(6813,79,44848,NULL,1,8,'2021-09-10 01:37:37','2021-09-10 01:37:37','88b6c7f8-47b1-4733-99ec-244373e1d08d'),(6814,79,44848,NULL,17954,9,'2021-09-10 01:37:37','2021-09-10 01:37:37','a0227f5b-3a97-4263-b6b7-d7ff549cf873'),(6815,79,44848,NULL,17956,10,'2021-09-10 01:37:37','2021-09-10 01:37:37','2ac67103-e792-4c02-8a9c-8e590fbeb94d'),(6816,79,44848,NULL,17996,11,'2021-09-10 01:37:37','2021-09-10 01:37:37','c4327681-c994-4d7e-96c4-006da0c74a49'),(6817,69,44848,NULL,30441,1,'2021-09-10 01:37:37','2021-09-10 01:37:37','0b70e8c8-1369-452c-aa77-60f8a1602ca4'),(6818,85,44848,NULL,17964,1,'2021-09-10 01:37:37','2021-09-10 01:37:37','4ffacf0e-c3a9-4710-af64-13955c94c031'),(6819,85,44848,NULL,17965,2,'2021-09-10 01:37:37','2021-09-10 01:37:37','7357fe98-486e-48a5-b677-12f8da686b00'),(6820,85,44848,NULL,17966,3,'2021-09-10 01:37:37','2021-09-10 01:37:37','5d160aa0-3512-42f9-8e64-f762371e7260'),(6821,85,44848,NULL,17968,4,'2021-09-10 01:37:37','2021-09-10 01:37:37','0597ac50-15f7-4a93-ae69-e8ab1ece5b50'),(6822,85,44848,NULL,17969,5,'2021-09-10 01:37:37','2021-09-10 01:37:37','70bfc927-7387-4bc3-a1af-c5773d5820e1'),(6823,85,44848,NULL,17971,6,'2021-09-10 01:37:37','2021-09-10 01:37:37','9d86974c-b246-45bd-806b-1c775dd6827c'),(6824,84,44848,NULL,38157,1,'2021-09-10 01:37:37','2021-09-10 01:37:37','dd4a2714-00d3-41e0-819d-d232885926ed'),(6838,79,44849,NULL,17875,1,'2021-09-10 01:40:44','2021-09-10 01:40:44','dea54fe0-5d1d-416a-b096-c5db81116183'),(6839,79,44849,NULL,17881,2,'2021-09-10 01:40:44','2021-09-10 01:40:44','60e05531-88a1-4f2c-b747-52a31a785708'),(6840,79,44849,NULL,1,3,'2021-09-10 01:40:44','2021-09-10 01:40:44','4e6587f9-6ab3-4beb-8b93-33ed1fdb33f0'),(6841,79,44849,NULL,17954,4,'2021-09-10 01:40:44','2021-09-10 01:40:44','67767143-fbdb-4d67-ab71-207157e06233'),(6842,79,44849,NULL,17956,5,'2021-09-10 01:40:44','2021-09-10 01:40:44','200a07e6-5ae0-4b12-b294-dcf3feccdffb'),(6856,79,44852,NULL,17875,1,'2021-09-10 01:41:20','2021-09-10 01:41:20','99d5210f-2daa-4354-b477-23f201b69b8c'),(6859,79,44852,NULL,17934,4,'2021-09-10 01:41:20','2021-09-10 01:41:20','5faf0c2b-c66b-439e-be84-a6ce921e39d2'),(6860,79,44852,NULL,17954,5,'2021-09-10 01:41:20','2021-09-10 01:41:20','4b22463f-e73e-4c27-8291-f77403336823'),(6861,79,44852,NULL,17956,6,'2021-09-10 01:41:20','2021-09-10 01:41:20','247f0cdb-3199-49bb-a2ff-d5284c7a6577'),(6862,69,44852,NULL,22160,1,'2021-09-10 01:41:20','2021-09-10 01:41:20','3293288b-a0fd-4c17-b2fe-e899bb726788'),(6863,85,44852,NULL,17964,1,'2021-09-10 01:41:20','2021-09-10 01:41:20','bdd36883-9d78-4da6-8a42-9b8ab3307a99'),(6864,85,44852,NULL,17966,2,'2021-09-10 01:41:20','2021-09-10 01:41:20','1f5bc70e-a5fa-4904-8b94-14d2cd999629'),(6865,85,44852,NULL,17967,3,'2021-09-10 01:41:20','2021-09-10 01:41:20','262e8bc0-2a08-4bb6-8626-a7ab2fd49c16'),(6866,85,44852,NULL,17969,4,'2021-09-10 01:41:20','2021-09-10 01:41:20','6060f89c-a2eb-40fd-b0e9-d188f1780307'),(6867,85,44852,NULL,17970,5,'2021-09-10 01:41:20','2021-09-10 01:41:20','123bdb32-8fe7-40a4-ad6b-0277283c33d0'),(6868,85,44852,NULL,17971,6,'2021-09-10 01:41:20','2021-09-10 01:41:20','1e9e027a-f182-46ad-aa4a-17243acac576'),(6882,79,44854,NULL,17875,1,'2021-09-10 01:43:09','2021-09-10 01:43:09','11f6f1ef-c14b-4df2-ae38-be0b7726be80'),(6885,79,44854,NULL,17934,4,'2021-09-10 01:43:09','2021-09-10 01:43:09','ed6d2859-692c-4e4d-acc1-abb7e6d23a39'),(6886,79,44854,NULL,17954,5,'2021-09-10 01:43:09','2021-09-10 01:43:09','741a03c0-35a1-4769-8a53-e793b8603130'),(6887,79,44854,NULL,17956,6,'2021-09-10 01:43:09','2021-09-10 01:43:09','5dc991cf-bf7b-49d7-a48b-12df1e911fa5'),(6888,69,44854,NULL,22160,1,'2021-09-10 01:43:09','2021-09-10 01:43:09','3da4f94e-0b05-4d63-9486-7f904ca7836c'),(6889,85,44854,NULL,17964,1,'2021-09-10 01:43:09','2021-09-10 01:43:09','70bb1c72-4cd4-4e30-9cea-5b3b44337abc'),(6890,85,44854,NULL,17966,2,'2021-09-10 01:43:09','2021-09-10 01:43:09','c7c776bf-e0ec-466b-88ab-fc74093e7ac5'),(6891,85,44854,NULL,17967,3,'2021-09-10 01:43:09','2021-09-10 01:43:09','d53cb62a-779a-47e2-bbe6-c53687979c64'),(6892,85,44854,NULL,17969,4,'2021-09-10 01:43:09','2021-09-10 01:43:09','b173cb7a-7d67-4034-be8b-ca0c56b013c9'),(6893,85,44854,NULL,17970,5,'2021-09-10 01:43:09','2021-09-10 01:43:09','501fbaf6-2ae7-4a9d-991f-4658c7bcc57e'),(6894,85,44854,NULL,17971,6,'2021-09-10 01:43:09','2021-09-10 01:43:09','0510ff64-5e61-405f-ab05-3421dd7dd740'),(6895,85,44849,NULL,17964,1,'2021-09-10 01:43:21','2021-09-10 01:43:21','70374884-d09b-4c7d-8336-61c880203bba'),(6896,85,44849,NULL,17965,2,'2021-09-10 01:43:21','2021-09-10 01:43:21','3cd74711-834d-42a4-9679-baa6e73cc80a'),(6897,85,44849,NULL,17970,3,'2021-09-10 01:43:21','2021-09-10 01:43:21','7a30d90f-06aa-45c7-8981-fd211aeb206a'),(6898,85,44849,NULL,17971,4,'2021-09-10 01:43:21','2021-09-10 01:43:21','b9a0c1bb-5083-48dc-b2aa-ebd9abc751f5'),(6918,79,44856,NULL,17875,1,'2021-09-10 01:43:47','2021-09-10 01:43:47','ff41ec11-671d-4699-9976-cbd647749c83'),(6919,79,44856,NULL,17887,2,'2021-09-10 01:43:47','2021-09-10 01:43:47','0da1f8e0-1b19-4a17-8246-7004bf976f65'),(6920,79,44856,NULL,17899,3,'2021-09-10 01:43:47','2021-09-10 01:43:47','bce3e150-7d0a-47f4-bde5-94d520b8db67'),(6923,79,44856,NULL,17934,6,'2021-09-10 01:43:47','2021-09-10 01:43:47','96f2a3e0-d8cc-4a38-a4ce-31400cb911d7'),(6924,79,44856,NULL,17941,7,'2021-09-10 01:43:47','2021-09-10 01:43:47','e2d3c919-0aed-4c65-8f7b-2d197c42d1d0'),(6925,79,44856,NULL,1,8,'2021-09-10 01:43:47','2021-09-10 01:43:47','0da6bcd6-e9fd-4dc2-82b8-87fe8f14b9a8'),(6926,79,44856,NULL,17954,9,'2021-09-10 01:43:47','2021-09-10 01:43:47','5866819e-ebfd-499b-a64f-45db84ea8ea4'),(6927,79,44856,NULL,17956,10,'2021-09-10 01:43:47','2021-09-10 01:43:47','c671b1f3-4bad-43ca-bce6-fedc75398861'),(6928,79,44856,NULL,17996,11,'2021-09-10 01:43:47','2021-09-10 01:43:47','370429aa-a689-43e3-8d55-a6dc855e3e95'),(6929,69,44856,NULL,30441,1,'2021-09-10 01:43:47','2021-09-10 01:43:47','89cbf308-87dd-49ad-badf-4226104ad670'),(6930,85,44856,NULL,17964,1,'2021-09-10 01:43:47','2021-09-10 01:43:47','ab5dc781-1837-4f97-b225-301114f4631d'),(6931,85,44856,NULL,17965,2,'2021-09-10 01:43:47','2021-09-10 01:43:47','f5418080-eb5b-46d6-a7f9-28cc47d3bcbe'),(6932,85,44856,NULL,17966,3,'2021-09-10 01:43:47','2021-09-10 01:43:47','82d19a03-78ab-453b-b43f-4929dca320bc'),(6933,85,44856,NULL,17968,4,'2021-09-10 01:43:47','2021-09-10 01:43:47','d60eb131-1eba-4f29-8786-cb48fcd638fc'),(6934,85,44856,NULL,17969,5,'2021-09-10 01:43:47','2021-09-10 01:43:47','a0213dbb-130c-44fe-b82b-ec03713969b5'),(6935,85,44856,NULL,17971,6,'2021-09-10 01:43:47','2021-09-10 01:43:47','31234ee2-6b57-4716-9db3-ef8cdcbbad7a'),(6936,84,44856,NULL,38157,1,'2021-09-10 01:43:47','2021-09-10 01:43:47','e2f285f8-ec4e-4b98-82d0-c5490191a485'),(6956,79,44858,NULL,17875,1,'2021-09-10 01:45:52','2021-09-10 01:45:52','37bef68e-0729-489e-a4fd-f5e2cdaf104b'),(6957,79,44858,NULL,17887,2,'2021-09-10 01:45:52','2021-09-10 01:45:52','cd92fccf-b255-402a-bca6-c40a97e232db'),(6958,79,44858,NULL,17899,3,'2021-09-10 01:45:52','2021-09-10 01:45:52','a7c6cf64-16bd-413d-beb8-03238a6a242d'),(6961,79,44858,NULL,17934,6,'2021-09-10 01:45:52','2021-09-10 01:45:52','a21183a5-c831-45fb-a435-822a093ebe27'),(6962,79,44858,NULL,17941,7,'2021-09-10 01:45:52','2021-09-10 01:45:52','6137d2bb-8c74-4b09-a3e3-f31c79f3b38c'),(6963,79,44858,NULL,1,8,'2021-09-10 01:45:52','2021-09-10 01:45:52','3b6a8851-e8e4-4427-8722-d981220a65d1'),(6964,79,44858,NULL,17954,9,'2021-09-10 01:45:52','2021-09-10 01:45:52','464da300-c751-4997-9169-ffa08c25f286'),(6965,79,44858,NULL,17956,10,'2021-09-10 01:45:52','2021-09-10 01:45:52','8187cee5-0866-4ef8-be0e-ed3e882e4c19'),(6966,79,44858,NULL,17996,11,'2021-09-10 01:45:52','2021-09-10 01:45:52','849050fe-294d-456a-a2fe-cf6159b79a94'),(6967,69,44858,NULL,30441,1,'2021-09-10 01:45:52','2021-09-10 01:45:52','24de724a-1815-4716-82cc-3e88ec6ee0dd'),(6968,85,44858,NULL,17964,1,'2021-09-10 01:45:52','2021-09-10 01:45:52','363d29e2-c045-4d23-be97-f93af276f046'),(6969,85,44858,NULL,17965,2,'2021-09-10 01:45:52','2021-09-10 01:45:52','3dd5da63-284d-4c16-9530-97cd6de5389d'),(6970,85,44858,NULL,17966,3,'2021-09-10 01:45:52','2021-09-10 01:45:52','ed4c2572-1bc1-444c-92cc-a8349388488d'),(6971,85,44858,NULL,17968,4,'2021-09-10 01:45:52','2021-09-10 01:45:52','3e1cecd8-ea0d-42e1-9282-83009a4c028c'),(6972,85,44858,NULL,17969,5,'2021-09-10 01:45:52','2021-09-10 01:45:52','a197a459-9a33-4f2a-89e9-00997416ba3c'),(6973,85,44858,NULL,17971,6,'2021-09-10 01:45:52','2021-09-10 01:45:52','58eeef69-943a-4034-bf80-c439ca80806d'),(6974,84,44858,NULL,38157,1,'2021-09-10 01:45:52','2021-09-10 01:45:52','2cb00cf8-9cec-408a-9bee-f76c7bb0be96'),(6975,84,44849,NULL,38158,1,'2021-09-10 01:46:19','2021-09-10 01:46:19','6abff43a-da02-48a4-aea7-260122c2afd0'),(6976,79,44859,NULL,17875,1,'2021-09-10 01:46:57','2021-09-10 01:46:57','d4398df7-6701-43d7-b2a7-c102ebd8e828'),(6977,79,44859,NULL,17881,2,'2021-09-10 01:46:57','2021-09-10 01:46:57','0a607e86-6994-4d5d-8554-d315fd536640'),(6978,79,44859,NULL,1,3,'2021-09-10 01:46:57','2021-09-10 01:46:57','d2f0edaa-6e95-4a2e-923e-68156bcc53aa'),(6979,79,44859,NULL,17954,4,'2021-09-10 01:46:57','2021-09-10 01:46:57','dce14f51-6c6b-42d4-8aa1-b653f87fdd36'),(6980,79,44859,NULL,17956,5,'2021-09-10 01:46:57','2021-09-10 01:46:57','1e682fc3-3f3f-4b0f-aa95-349ce656934b'),(6981,85,44859,NULL,17964,1,'2021-09-10 01:46:57','2021-09-10 01:46:57','c12d5788-1bff-4241-a7ca-ea4e323e43a4'),(6982,85,44859,NULL,17965,2,'2021-09-10 01:46:57','2021-09-10 01:46:57','94e8421f-47e6-44d3-9779-6afa09be44ec'),(6983,85,44859,NULL,17970,3,'2021-09-10 01:46:57','2021-09-10 01:46:57','4599fc96-6ad9-4621-81d0-f19f729c568d'),(6984,85,44859,NULL,17971,4,'2021-09-10 01:46:57','2021-09-10 01:46:57','398ddcce-37a8-4a7d-8c83-173f7327cca4'),(6985,84,44859,NULL,38158,1,'2021-09-10 01:46:57','2021-09-10 01:46:57','17508ae6-5ce1-4344-99e5-273c49ab7234'),(6995,69,44861,NULL,19052,1,'2021-09-10 01:47:53','2021-09-10 01:47:53','c0a8dc62-3dbb-4210-acd0-0c4d3a1e5f11'),(6996,85,44861,NULL,17964,1,'2021-09-10 01:47:53','2021-09-10 01:47:53','c192e81e-12a2-4c64-bcc8-72f79a35a857'),(6997,85,44861,NULL,17965,2,'2021-09-10 01:47:53','2021-09-10 01:47:53','12695cda-6a91-4bfd-82af-0b9fac08799b'),(6998,85,44861,NULL,17966,3,'2021-09-10 01:47:53','2021-09-10 01:47:53','ad62abd1-9dd5-45db-88ac-5e5add3eb300'),(6999,85,44861,NULL,17967,4,'2021-09-10 01:47:53','2021-09-10 01:47:53','f55c2e89-f81d-4f11-9df2-634f7c695f75'),(7000,85,44861,NULL,17968,5,'2021-09-10 01:47:53','2021-09-10 01:47:53','88ead4d4-4f35-4fcf-9efe-4185ddcd3663'),(7001,85,44861,NULL,17969,6,'2021-09-10 01:47:53','2021-09-10 01:47:53','80a08711-cbd7-4eef-b819-92c7bc932019'),(7002,84,44861,NULL,18057,1,'2021-09-10 01:47:53','2021-09-10 01:47:53','1933bb34-c014-4dd5-a7e1-14df84938c69'),(7003,84,44861,NULL,38161,2,'2021-09-10 01:47:53','2021-09-10 01:47:53','f6e8bd4e-8933-4ed4-b00c-1f303fe39bc1'),(7021,85,44862,NULL,17964,1,'2021-09-10 01:48:55','2021-09-10 01:48:55','6a521670-6ec7-4c29-a89a-6d724d6ff4e4'),(7022,85,44862,NULL,17966,2,'2021-09-10 01:48:55','2021-09-10 01:48:55','348ef59a-a0d5-4cc5-98c4-cbd720d554ef'),(7023,85,44862,NULL,17969,3,'2021-09-10 01:48:55','2021-09-10 01:48:55','fce2762c-9226-4e52-956b-9a95551dc372'),(7024,85,44862,NULL,17971,4,'2021-09-10 01:48:55','2021-09-10 01:48:55','93c53dbe-8b7d-4e08-a243-f48431504a48'),(7025,84,44862,NULL,18057,1,'2021-09-10 01:49:01','2021-09-10 01:49:01','de5ed4a4-c369-41ba-82dc-0bc9b0b2fd17'),(7042,79,44866,NULL,17875,1,'2021-09-10 01:50:38','2021-09-10 01:50:38','632d9e35-5d34-49ef-a2e1-5cd8d9409ae1'),(7043,79,44866,NULL,17899,2,'2021-09-10 01:50:38','2021-09-10 01:50:38','1b93a105-c2c9-41a1-af1a-954c6f61949a'),(7046,79,44866,NULL,17934,5,'2021-09-10 01:50:38','2021-09-10 01:50:38','c814ee74-cff9-4fcb-ba81-47553280d91e'),(7047,79,44866,NULL,17941,6,'2021-09-10 01:50:38','2021-09-10 01:50:38','5481ef6e-efb0-4382-9bad-d28a14b608ab'),(7048,79,44866,NULL,17954,7,'2021-09-10 01:50:38','2021-09-10 01:50:38','2bf1e3c9-5f89-4795-a3e3-1f6a83ca537a'),(7049,79,44866,NULL,17996,8,'2021-09-10 01:50:38','2021-09-10 01:50:38','f597d9b5-665b-4104-b025-969c03c67be2'),(7050,69,44866,NULL,16824,1,'2021-09-10 01:50:38','2021-09-10 01:50:38','8f8cb029-61b1-4870-851c-0bab493e1510'),(7051,85,44866,NULL,17964,1,'2021-09-10 01:50:38','2021-09-10 01:50:38','579e692f-f488-4948-a859-ba3be8e3e55b'),(7052,85,44866,NULL,17966,2,'2021-09-10 01:50:38','2021-09-10 01:50:38','49ae8006-d31e-466b-8d02-81ae53f28c56'),(7053,85,44866,NULL,17967,3,'2021-09-10 01:50:38','2021-09-10 01:50:38','f2c04c23-e93a-452a-b468-b5b928f466fb'),(7054,85,44866,NULL,17969,4,'2021-09-10 01:50:38','2021-09-10 01:50:38','9188a071-1d57-40a4-905f-853dfb30d025'),(7055,85,44866,NULL,17970,5,'2021-09-10 01:50:38','2021-09-10 01:50:38','00bc7ef6-779b-43dc-9c00-7ba8575670ed'),(7056,85,44866,NULL,17971,6,'2021-09-10 01:50:38','2021-09-10 01:50:38','5dc62e8e-b084-4220-b698-bdc58712bd7f'),(7057,84,44866,NULL,18057,1,'2021-09-10 01:50:38','2021-09-10 01:50:38','4bbcbd90-6628-4f4f-a566-3e46acd67ee4'),(7074,85,44869,NULL,17964,1,'2021-09-10 01:52:46','2021-09-10 01:52:46','fe649ce7-53c6-4c67-bef6-453df21026a3'),(7075,85,44869,NULL,17966,2,'2021-09-10 01:52:46','2021-09-10 01:52:46','b87ffa0b-7ba1-4e0c-bbc6-d183951cd9ac'),(7076,85,44869,NULL,17969,3,'2021-09-10 01:52:46','2021-09-10 01:52:46','933e0a0a-080d-4e9e-867e-e6ba87e8f83d'),(7077,85,44869,NULL,17971,4,'2021-09-10 01:52:46','2021-09-10 01:52:46','e9d52709-56e5-424f-bb4f-c8f12ec9e9fd'),(7078,84,44869,NULL,18057,1,'2021-09-10 01:52:46','2021-09-10 01:52:46','b6594051-8d1b-4ba0-9850-469c510ba5ae'),(7079,79,44870,NULL,17875,1,'2021-09-10 01:53:07','2021-09-10 01:53:07','af07b10c-2ea6-4c98-9e89-303b5749a820'),(7080,79,44870,NULL,17899,2,'2021-09-10 01:53:07','2021-09-10 01:53:07','f4d95dc7-2abc-42ca-9f84-241cd4cef344'),(7083,79,44870,NULL,17934,5,'2021-09-10 01:53:07','2021-09-10 01:53:07','b2c55b8f-1fba-4aad-b416-2d382d3f7432'),(7084,79,44870,NULL,17941,6,'2021-09-10 01:53:07','2021-09-10 01:53:07','824ae0f5-57d8-4837-b77f-71ace7371bd4'),(7085,79,44870,NULL,17954,7,'2021-09-10 01:53:07','2021-09-10 01:53:07','260acca9-1353-495d-8d9f-68a3fc9ddc00'),(7086,79,44870,NULL,17996,8,'2021-09-10 01:53:07','2021-09-10 01:53:07','e958e40a-5284-49f4-97cf-3ab0ded07c4a'),(7087,69,44870,NULL,16824,1,'2021-09-10 01:53:07','2021-09-10 01:53:07','10393701-86f7-465a-8d60-cfa58fc675b1'),(7088,85,44870,NULL,17964,1,'2021-09-10 01:53:07','2021-09-10 01:53:07','4797fa2f-2af7-4991-a547-21d9f153fa8c'),(7089,85,44870,NULL,17966,2,'2021-09-10 01:53:07','2021-09-10 01:53:07','aaa4ba47-ddc7-4792-ade9-b262e4098ac7'),(7090,85,44870,NULL,17967,3,'2021-09-10 01:53:07','2021-09-10 01:53:07','365a2bc6-b4a0-4dbb-bf49-54ab1999fc84'),(7091,85,44870,NULL,17969,4,'2021-09-10 01:53:07','2021-09-10 01:53:07','d952850a-b503-49f8-a8e6-7c94c3e49a2c'),(7092,85,44870,NULL,17970,5,'2021-09-10 01:53:07','2021-09-10 01:53:07','6dbdc5fa-3982-4dee-b05a-33f3fbfe0cba'),(7093,85,44870,NULL,17971,6,'2021-09-10 01:53:07','2021-09-10 01:53:07','ed5d64d4-ad74-4df4-a3ad-513751a362bb'),(7094,84,44870,NULL,18057,1,'2021-09-10 01:53:07','2021-09-10 01:53:07','3b37f65d-05d0-4eb5-8fee-4d795102efc9'),(7112,79,44872,NULL,17875,1,'2021-09-10 01:54:33','2021-09-10 01:54:33','0975248d-9fa1-48a5-a083-60e09aaac0b4'),(7113,79,44872,NULL,17887,2,'2021-09-10 01:54:33','2021-09-10 01:54:33','9008a3b4-9748-4802-aeca-944b01eeb9b8'),(7114,79,44872,NULL,17899,3,'2021-09-10 01:54:33','2021-09-10 01:54:33','1217c2de-d7c3-433f-ac14-b2e082eff87c'),(7116,79,44872,NULL,17934,5,'2021-09-10 01:54:33','2021-09-10 01:54:33','2f60fd58-5f55-4cea-800d-6c5a346d3004'),(7117,79,44872,NULL,17941,6,'2021-09-10 01:54:33','2021-09-10 01:54:33','467fc93b-66a1-4465-aabd-42592b380101'),(7118,79,44872,NULL,1,7,'2021-09-10 01:54:33','2021-09-10 01:54:33','cc7a2439-61f7-477d-b16c-53ffb4f1150c'),(7119,79,44872,NULL,17956,8,'2021-09-10 01:54:33','2021-09-10 01:54:33','7529a62c-d671-493f-b0d2-d7d639db96db'),(7120,79,44872,NULL,17996,9,'2021-09-10 01:54:33','2021-09-10 01:54:33','22b804ca-a0c9-40c0-9ec5-7a30db582573'),(7121,85,44872,NULL,17964,1,'2021-09-10 01:54:33','2021-09-10 01:54:33','67f504bf-d3ef-4957-8505-2a760962b740'),(7122,85,44872,NULL,17965,2,'2021-09-10 01:54:33','2021-09-10 01:54:33','f65ca3cf-d4b3-4a15-b770-781fe824dc6a'),(7123,85,44872,NULL,17966,3,'2021-09-10 01:54:33','2021-09-10 01:54:33','3e501b25-53b2-4ddd-a1e3-3f53cacb32a8'),(7124,85,44872,NULL,17968,4,'2021-09-10 01:54:33','2021-09-10 01:54:33','b5066ae8-7b79-43ff-a69b-7a6c00526b95'),(7125,85,44872,NULL,17969,5,'2021-09-10 01:54:33','2021-09-10 01:54:33','988516a8-94bb-4c5f-b806-7170432d4c23'),(7126,85,44872,NULL,17970,6,'2021-09-10 01:54:33','2021-09-10 01:54:33','0e90500c-ba06-41f2-ad98-e9a66042f449'),(7127,85,44872,NULL,17971,7,'2021-09-10 01:54:33','2021-09-10 01:54:33','fde48b5f-ecbb-4769-b477-ff8dac16d757'),(7128,84,44872,NULL,38160,1,'2021-09-10 01:54:33','2021-09-10 01:54:33','12666d96-b351-4c8b-bfbf-23d145a5a574'),(7146,79,44877,NULL,17875,1,'2021-09-10 01:57:45','2021-09-10 01:57:45','069318a4-8d00-427a-a62c-d9776f0f6745'),(7148,79,44877,NULL,17934,3,'2021-09-10 01:57:45','2021-09-10 01:57:45','31892c1b-18eb-4822-85eb-15e9b535aca7'),(7149,79,44877,NULL,17954,4,'2021-09-10 01:57:45','2021-09-10 01:57:45','1646039c-b15b-47ec-8a28-1cc76a6eeef6'),(7150,79,44877,NULL,17956,5,'2021-09-10 01:57:45','2021-09-10 01:57:45','bb4b7f54-563f-4892-b26d-c34c7ee34b91'),(7151,85,44877,NULL,17964,1,'2021-09-10 01:57:45','2021-09-10 01:57:45','b7b7fb3c-8fdb-4a65-affd-cbbef3ea415d'),(7152,85,44877,NULL,17965,2,'2021-09-10 01:57:45','2021-09-10 01:57:45','d3b52ba6-f3fa-46c2-b0f5-22dae32012f5'),(7153,85,44877,NULL,17966,3,'2021-09-10 01:57:45','2021-09-10 01:57:45','00139c13-7b06-4ef4-85a7-78ea0ae9f051'),(7154,85,44877,NULL,17968,4,'2021-09-10 01:57:45','2021-09-10 01:57:45','047b67d3-189c-4482-b954-0923a7d0266a'),(7155,85,44877,NULL,17969,5,'2021-09-10 01:57:45','2021-09-10 01:57:45','3685fdbd-f145-4472-bcf9-c9412cbce4bc'),(7156,85,44877,NULL,17971,6,'2021-09-10 01:57:45','2021-09-10 01:57:45','3630d142-fa03-47b6-90e6-07870b6be79b'),(7157,84,44877,NULL,38159,1,'2021-09-10 01:57:45','2021-09-10 01:57:45','2a3e34f4-b07c-4ad2-af7c-9b3cf2e5ec70'),(7228,191,44967,NULL,30427,1,'2021-09-10 02:02:41','2021-09-10 02:02:41','8f41da2d-0c7e-4e81-9895-4c58b50b6790'),(7230,191,44969,NULL,18109,1,'2021-09-10 02:02:41','2021-09-10 02:02:41','05a74d30-d128-420f-a7d9-1b6ea100bc48'),(7231,191,44970,NULL,16828,1,'2021-09-10 02:02:41','2021-09-10 02:02:41','8ceada60-c026-4f8e-981c-f28131bbc018'),(7232,191,44971,NULL,40504,1,'2021-09-10 02:02:41','2021-09-10 02:02:41','6bb7d22e-f553-4621-ab2c-78b446875f58'),(7233,191,44973,NULL,30427,1,'2021-09-10 02:02:41','2021-09-10 02:02:41','ce2d3ae3-4b3b-496e-ba9a-5ddd5894e0b4'),(7234,191,44974,NULL,18122,1,'2021-09-10 02:02:41','2021-09-10 02:02:41','f604e78d-fb7d-486d-a073-405e777b50b8'),(7235,191,44975,NULL,18109,1,'2021-09-10 02:02:41','2021-09-10 02:02:41','65f10527-65a1-41ee-8a6e-180a01e06566'),(7236,191,44976,NULL,16828,1,'2021-09-10 02:02:41','2021-09-10 02:02:41','b20e2816-bd99-4dd1-8879-b636bd7052df'),(7237,191,44977,NULL,40504,1,'2021-09-10 02:02:41','2021-09-10 02:02:41','e943630a-6312-49bc-9aa4-8c05e13d5644'),(7238,79,16571,NULL,17881,4,'2021-09-10 02:05:36','2022-05-30 01:45:01','32a1d66f-5263-46d6-b94d-7e3a26a2df32'),(7239,79,16571,NULL,17956,5,'2021-09-10 02:05:36','2022-05-30 01:45:01','43f7bb87-5eb1-45fc-8d25-708085390d2e'),(7240,85,16571,NULL,17964,1,'2021-09-10 02:05:36','2021-09-10 02:05:36','f59ca887-01d5-4a84-8b59-1056d90228da'),(7241,85,16571,NULL,17965,2,'2021-09-10 02:05:36','2021-09-10 02:05:36','1637ac3f-fdef-4c35-80e2-ae809bda60d2'),(7242,85,16571,NULL,17966,3,'2021-09-10 02:05:36','2021-09-10 02:05:36','3e026e08-5d3c-49dd-8b1a-481ca2b4bb64'),(7243,85,16571,NULL,17969,4,'2021-09-10 02:05:36','2021-09-10 02:05:36','56246933-8868-417e-beb7-282603ad1380'),(7244,85,16571,NULL,17970,5,'2021-09-10 02:05:36','2021-09-10 02:05:36','ec575eed-c8ce-4170-bc2f-5c1c3403a60d'),(7245,85,16571,NULL,17971,6,'2021-09-10 02:05:36','2021-09-10 02:05:36','0345e1f8-06d9-4edc-8d19-09b9be111970'),(7246,84,16571,NULL,38158,1,'2021-09-10 02:05:36','2021-09-10 02:05:36','a28ca955-db9d-49e4-89b5-afc23bd50713'),(7247,79,44978,NULL,17875,1,'2021-09-10 02:05:36','2021-09-10 02:05:36','0bb0e7dd-bc1c-45ea-804e-2e1ad1b7b5cf'),(7249,79,44978,NULL,1,3,'2021-09-10 02:05:36','2021-09-10 02:05:36','18d63fa4-b367-40e1-97a3-469ce7011773'),(7250,79,44978,NULL,17954,4,'2021-09-10 02:05:36','2021-09-10 02:05:36','358d0ec4-6a1d-44fa-9436-1b9bfae7ffec'),(7251,79,44978,NULL,17881,5,'2021-09-10 02:05:36','2021-09-10 02:05:36','76d03240-5995-4fe1-a614-a580eb139b0d'),(7252,79,44978,NULL,17956,6,'2021-09-10 02:05:36','2021-09-10 02:05:36','ce0f7609-ffbe-4556-823a-571a4043a3b8'),(7253,69,44978,NULL,16693,1,'2021-09-10 02:05:36','2021-09-10 02:05:36','5f7646f5-a1f2-4c4a-b147-1d04f1379250'),(7254,85,44978,NULL,17964,1,'2021-09-10 02:05:36','2021-09-10 02:05:36','46fdd1b5-8a49-4a49-97fc-7cbf56630d80'),(7255,85,44978,NULL,17965,2,'2021-09-10 02:05:36','2021-09-10 02:05:36','41dbcab3-ffbe-44f0-9664-1b737943644d'),(7256,85,44978,NULL,17966,3,'2021-09-10 02:05:36','2021-09-10 02:05:36','119cfcd7-b0cd-43d3-9e91-f99df451a864'),(7257,85,44978,NULL,17969,4,'2021-09-10 02:05:36','2021-09-10 02:05:36','25da3da4-c1d9-46cd-800a-05803400aa37'),(7258,85,44978,NULL,17970,5,'2021-09-10 02:05:36','2021-09-10 02:05:36','9522897a-94df-459e-9606-e170511c48d2'),(7259,85,44978,NULL,17971,6,'2021-09-10 02:05:36','2021-09-10 02:05:36','1e790af2-b5c3-4d7e-a0e5-fcce860bb0f8'),(7260,84,44978,NULL,38158,1,'2021-09-10 02:05:36','2021-09-10 02:05:36','295e4362-dba7-46a0-86f1-a0e269ce28df'),(7275,79,44980,NULL,17875,1,'2021-09-10 02:05:54','2021-09-10 02:05:54','24910702-2038-48ab-9475-0d359fedbd79'),(7277,79,44980,NULL,1,3,'2021-09-10 02:05:54','2021-09-10 02:05:54','a83696f7-093f-4fa2-9457-37a8a7bbeabf'),(7278,79,44980,NULL,17954,4,'2021-09-10 02:05:54','2021-09-10 02:05:54','7315dc55-fd4c-470b-968e-4f4d45f2d56a'),(7279,79,44980,NULL,17881,5,'2021-09-10 02:05:54','2021-09-10 02:05:54','21c7be4b-2873-4e39-b52f-031a1b262d2a'),(7280,79,44980,NULL,17956,6,'2021-09-10 02:05:54','2021-09-10 02:05:54','ac1ee9b3-fc5d-4470-8f63-48aa063ef6b9'),(7281,69,44980,NULL,16693,1,'2021-09-10 02:05:54','2021-09-10 02:05:54','dc218eef-d88f-4ce2-ac1f-f3518ec3ca0e'),(7282,85,44980,NULL,17964,1,'2021-09-10 02:05:54','2021-09-10 02:05:54','65f3a026-d172-4d30-a1cf-c2fb7154e8d6'),(7283,85,44980,NULL,17965,2,'2021-09-10 02:05:54','2021-09-10 02:05:54','344a0fd6-2216-45e2-a9cb-3ddfe8ce2746'),(7284,85,44980,NULL,17966,3,'2021-09-10 02:05:54','2021-09-10 02:05:54','bf011027-4123-4cc6-83af-e0ed19b4edc7'),(7285,85,44980,NULL,17969,4,'2021-09-10 02:05:54','2021-09-10 02:05:54','b48c5412-fefe-438e-bf53-97a356f1af29'),(7286,85,44980,NULL,17970,5,'2021-09-10 02:05:54','2021-09-10 02:05:54','5e2c601d-0097-4228-8bfd-7eea1c2d412b'),(7287,85,44980,NULL,17971,6,'2021-09-10 02:05:54','2021-09-10 02:05:54','80efca82-8c62-4b3d-b9ec-138662ce08c7'),(7288,84,44980,NULL,38158,1,'2021-09-10 02:05:54','2021-09-10 02:05:54','14f010f7-da19-4628-98dd-fcafb95abc93'),(7289,79,44981,NULL,17875,1,'2021-09-10 02:08:57','2021-09-10 02:08:57','64df0142-e9be-4028-92c8-0aab0f1b2170'),(7290,79,44981,NULL,17954,2,'2021-09-10 02:08:57','2021-09-10 02:08:57','eae5dc08-368b-4fe3-b723-f7df797ee085'),(7291,85,44981,NULL,17965,2,'2021-09-10 02:09:13','2021-09-10 02:09:24','6aee75ef-aed5-489d-b799-d0202e794d18'),(7292,85,44981,NULL,17966,3,'2021-09-10 02:09:13','2021-09-10 02:09:24','1845b6ea-8a90-4430-a0cc-5061f1f1ca44'),(7293,85,44981,NULL,17970,5,'2021-09-10 02:09:13','2021-09-10 02:09:24','7ca080f2-3e7e-48ba-89f7-508edc0dabec'),(7294,85,44981,NULL,17971,6,'2021-09-10 02:09:13','2021-09-10 02:09:24','659b41f9-98a7-4c89-b59d-ae7548ecb484'),(7295,85,44981,NULL,17969,4,'2021-09-10 02:09:20','2021-09-10 02:09:24','c9909c36-2e4c-4891-820b-b009fef44ca7'),(7296,85,44981,NULL,17964,1,'2021-09-10 02:09:25','2021-09-10 02:09:25','fe4ce44b-921e-4f01-b017-c1bf488d1c24'),(7297,84,44981,NULL,38158,1,'2021-09-10 02:09:33','2021-09-10 02:09:33','435df041-a0b4-45c1-9a19-23c8d8caf57c'),(7298,79,44982,NULL,17875,1,'2021-09-10 02:10:02','2021-09-10 02:10:02','2a37dabd-e33a-4de8-b361-936295e4c059'),(7299,79,44982,NULL,17954,2,'2021-09-10 02:10:02','2021-09-10 02:10:02','da3d9ed1-18e9-4e43-a61d-5710ca478d3c'),(7300,85,44982,NULL,17964,1,'2021-09-10 02:10:02','2021-09-10 02:10:02','530cac6b-fcd3-49b2-9a95-0b8845297010'),(7301,85,44982,NULL,17965,2,'2021-09-10 02:10:02','2021-09-10 02:10:02','118deb9e-7064-4ed9-8693-6728aa2d1047'),(7302,85,44982,NULL,17966,3,'2021-09-10 02:10:02','2021-09-10 02:10:02','b4204980-ab34-4228-b589-4ff03cdbeb87'),(7303,85,44982,NULL,17969,4,'2021-09-10 02:10:02','2021-09-10 02:10:02','eead207e-e2f3-4bd3-883f-2aed563a5938'),(7304,85,44982,NULL,17970,5,'2021-09-10 02:10:02','2021-09-10 02:10:02','c06bf4a5-cb92-4810-9962-d9cdaef69d6e'),(7305,85,44982,NULL,17971,6,'2021-09-10 02:10:02','2021-09-10 02:10:02','8c06d5c3-1d5b-4b29-840f-bb10b04a0c47'),(7306,84,44982,NULL,38158,1,'2021-09-10 02:10:02','2021-09-10 02:10:02','e7d71c71-22a9-46d7-8f78-1f85991706f6'),(7307,79,44983,NULL,17875,1,'2021-09-10 02:12:49','2021-09-10 02:12:49','71de0191-2ef7-48a0-9426-8cafc9b67b2c'),(7308,79,44983,NULL,17954,2,'2021-09-10 02:12:49','2021-09-10 02:12:49','c35bdfdf-8bc7-411e-a787-68030c48ef33'),(7309,85,44983,NULL,17964,1,'2021-09-10 02:13:02','2021-09-10 02:13:02','0597bd8b-c29e-449c-86b5-b9a54fa6bbe9'),(7311,85,44983,NULL,17966,2,'2021-09-10 02:13:02','2021-09-10 02:13:17','54e2b6f6-4629-457c-8150-8770929b1af6'),(7312,85,44983,NULL,17967,3,'2021-09-10 02:13:02','2021-09-10 02:13:17','35667321-40ac-4902-88e4-b105bcc0ef2a'),(7313,85,44983,NULL,17968,4,'2021-09-10 02:13:02','2021-09-10 02:13:17','3e4190be-8725-4a44-9105-549392b216a5'),(7314,85,44983,NULL,17969,5,'2021-09-10 02:13:02','2021-09-10 02:13:17','c0b3009a-9147-4b35-af42-7828ba00db37'),(7315,85,44983,NULL,17970,6,'2021-09-10 02:13:02','2021-09-10 02:13:17','3398f06d-aad6-4303-ac8b-0542b5be8435'),(7316,85,44983,NULL,17971,7,'2021-09-10 02:13:02','2021-09-10 02:13:17','c86b949a-5784-4d9b-98c3-d28c1d98f51f'),(7317,84,44983,NULL,18057,1,'2021-09-10 02:13:12','2021-09-10 02:13:12','634b66ae-e5c4-4b0a-8046-3135212ddaf2'),(7318,79,44984,NULL,17875,1,'2021-09-10 02:13:28','2021-09-10 02:13:28','78826882-1c91-46b1-9e62-c54f7368e000'),(7319,79,44984,NULL,17954,2,'2021-09-10 02:13:28','2021-09-10 02:13:28','fa2bf18b-40e9-4fe5-8423-f96a4da06151'),(7320,85,44984,NULL,17964,1,'2021-09-10 02:13:28','2021-09-10 02:13:28','62dd752b-2579-4ffd-8b1c-51cfeea3728b'),(7321,85,44984,NULL,17966,2,'2021-09-10 02:13:28','2021-09-10 02:13:28','071469b3-30c3-4a71-add7-41b1ec275f34'),(7322,85,44984,NULL,17967,3,'2021-09-10 02:13:28','2021-09-10 02:13:28','f15ee97f-8578-481a-9bef-c3ab1f6aa3a3'),(7323,85,44984,NULL,17968,4,'2021-09-10 02:13:28','2021-09-10 02:13:28','b306b50d-650f-408d-aab2-17e92eb09679'),(7324,85,44984,NULL,17969,5,'2021-09-10 02:13:28','2021-09-10 02:13:28','59298b50-01bf-441c-bb2a-d80ca8f6ee09'),(7325,85,44984,NULL,17970,6,'2021-09-10 02:13:28','2021-09-10 02:13:28','656e5993-8bef-4b53-9772-b456e2c26183'),(7326,85,44984,NULL,17971,7,'2021-09-10 02:13:28','2021-09-10 02:13:28','37bae66f-6b84-4c55-a3bc-6fc40558beab'),(7327,84,44984,NULL,18057,1,'2021-09-10 02:13:28','2021-09-10 02:13:28','bb9145e4-cca2-47a5-8f96-68f02f951d7f'),(7328,85,44985,NULL,17964,1,'2021-09-10 02:15:39','2021-09-10 02:15:39','9f91a890-6908-4a64-9e0d-f3c02bcd705c'),(7329,85,44985,NULL,17965,2,'2021-09-10 02:15:39','2021-09-10 02:15:39','6a811b87-2ed5-46b0-b21d-c34ae784bf5d'),(7330,85,44985,NULL,17970,3,'2021-09-10 02:15:39','2021-09-10 02:15:39','c79f83fb-20da-43fd-9c0e-1f50fbb18ecc'),(7331,85,44985,NULL,17971,4,'2021-09-10 02:15:39','2021-09-10 02:15:39','b38e795b-8ec3-4328-9cab-080215ad8e7e'),(7332,84,44985,NULL,38160,1,'2021-09-10 02:15:47','2021-09-10 02:15:47','96ab50b6-37f7-4d07-af5e-205ac36aec45'),(7333,79,44985,NULL,17875,1,'2021-09-10 02:15:55','2021-09-10 02:15:55','fb6bdc19-2e80-4aa5-92d8-c80757659c62'),(7334,79,44985,NULL,17954,2,'2021-09-10 02:15:55','2021-09-10 02:15:55','4f0be0ef-8d11-483a-acda-6f68b37f0362'),(7335,79,44986,NULL,17875,1,'2021-09-10 02:15:58','2021-09-10 02:15:58','b75202e3-19dc-48f7-a0ec-fb698f59c567'),(7336,79,44986,NULL,17954,2,'2021-09-10 02:15:58','2021-09-10 02:15:58','becfacc1-90c0-4f4e-ada5-6c226510efde'),(7337,85,44986,NULL,17964,1,'2021-09-10 02:15:58','2021-09-10 02:15:58','04a6f043-9d18-4569-b7f2-98f991f1254e'),(7338,85,44986,NULL,17965,2,'2021-09-10 02:15:58','2021-09-10 02:15:58','18b7d2f4-89e6-4eb8-9edd-3131a50afcf6'),(7339,85,44986,NULL,17970,3,'2021-09-10 02:15:58','2021-09-10 02:15:58','c45af40d-3bc6-4457-aa23-c624ac738e78'),(7340,85,44986,NULL,17971,4,'2021-09-10 02:15:58','2021-09-10 02:15:58','d64c6d31-3832-47c8-b215-5e845a6f74e3'),(7341,84,44986,NULL,38160,1,'2021-09-10 02:15:58','2021-09-10 02:15:58','31547e20-0d22-4fbc-8ba5-4a786912dc75'),(7342,79,44987,NULL,17875,1,'2021-09-10 02:20:16','2021-09-10 02:20:16','e7068d03-8752-4972-8548-436f63abc4c7'),(7344,79,44987,NULL,17934,3,'2021-09-10 02:20:16','2021-09-10 02:20:16','ebdb38f4-2a65-4ed6-a53f-cf33bc12a865'),(7345,79,44987,NULL,17881,4,'2021-09-10 02:20:16','2021-09-10 02:20:16','6a462662-1581-4aa5-ac5a-7a9111e11c7b'),(7346,79,44987,NULL,1,5,'2021-09-10 02:20:16','2021-09-10 02:20:16','12c88bff-dd25-4529-a896-d3a12b057201'),(7347,79,44987,NULL,17956,6,'2021-09-10 02:20:16','2021-09-10 02:20:16','f7567209-b34d-4295-aae4-a3aba9b2c67e'),(7348,85,44987,NULL,17964,1,'2021-09-10 02:20:28','2021-09-10 02:20:28','68990e0d-5cc0-49e8-a67b-351b772173c4'),(7349,85,44987,NULL,17965,2,'2021-09-10 02:20:28','2021-09-10 02:20:28','7977be70-d346-4f5b-b8a0-317bfc5886f4'),(7350,85,44987,NULL,17966,3,'2021-09-10 02:20:28','2021-09-10 02:20:28','86ea9ccc-7d08-47fd-b6c3-8dcb11c73120'),(7352,85,44987,NULL,17970,4,'2021-09-10 02:20:28','2021-09-10 02:20:32','4ec5e441-a9b6-499a-9254-e5538472016b'),(7353,85,44987,NULL,17971,5,'2021-09-10 02:20:28','2021-09-10 02:20:32','c068ae47-9125-4dea-82b4-bd5220cf65ee'),(7354,84,44987,NULL,38157,1,'2021-09-10 02:20:39','2021-09-10 02:20:39','94520781-76ee-4f32-820b-2e91a7a4517d'),(7374,79,44989,NULL,17875,1,'2021-09-10 02:22:58','2021-09-10 02:22:58','6cb201eb-90c3-48db-baac-a6079b9afd09'),(7375,79,44989,NULL,17887,2,'2021-09-10 02:22:58','2021-09-10 02:22:58','42863b04-4354-4a71-b0be-e5a2429cf9c8'),(7376,79,44989,NULL,17899,3,'2021-09-10 02:22:58','2021-09-10 02:22:58','da3ca88d-0850-48ee-ac39-2d9b730772ee'),(7378,79,44989,NULL,17934,5,'2021-09-10 02:22:58','2021-09-10 02:22:58','6092f3a9-bf7f-42cd-9175-c7636e911f43'),(7379,79,44989,NULL,17941,6,'2021-09-10 02:22:58','2021-09-10 02:22:58','249e2cbc-b0f8-48a0-b2a2-f18e1943bf04'),(7380,79,44989,NULL,1,7,'2021-09-10 02:22:58','2021-09-10 02:22:58','60d8ee98-c5e2-4b09-a697-cdb69afb763f'),(7381,79,44989,NULL,17956,8,'2021-09-10 02:22:58','2021-09-10 02:22:58','ea978a11-4909-46b3-a048-7e2142baad97'),(7382,79,44989,NULL,17996,9,'2021-09-10 02:22:58','2021-09-10 02:22:58','88ffb0c4-e2e0-4f97-a270-84845a27b84c'),(7383,69,44989,NULL,44878,1,'2021-09-10 02:22:58','2021-09-10 02:22:58','ac21e4c8-7032-498c-a318-ac7784a73845'),(7384,85,44989,NULL,17964,1,'2021-09-10 02:22:58','2021-09-10 02:22:58','062db1d9-7d48-4478-9d1d-67fb1fdac989'),(7385,85,44989,NULL,17965,2,'2021-09-10 02:22:58','2021-09-10 02:22:58','479a176e-f966-4cfc-94b9-a58802cd4bf1'),(7386,85,44989,NULL,17966,3,'2021-09-10 02:22:58','2021-09-10 02:22:58','f4a86f45-1ab9-426b-b1c0-4d0d5d4bdeba'),(7387,85,44989,NULL,17968,4,'2021-09-10 02:22:58','2021-09-10 02:22:58','d3f94fed-c364-483f-a441-1ef70ef2c114'),(7388,85,44989,NULL,17969,5,'2021-09-10 02:22:58','2021-09-10 02:22:58','b038d427-a268-4b49-bbfd-518f1ae06277'),(7389,85,44989,NULL,17970,6,'2021-09-10 02:22:58','2021-09-10 02:22:58','d91aa946-6e5b-4fe0-9e9d-5f0fe0cc1df4'),(7390,85,44989,NULL,17971,7,'2021-09-10 02:22:58','2021-09-10 02:22:58','007d5cad-8cb6-4e2c-afdf-1b74859192c0'),(7391,84,44989,NULL,38160,1,'2021-09-10 02:22:58','2021-09-10 02:22:58','dcbc168f-05b3-4d2c-a0bf-9c46904c75ea'),(7397,191,44997,NULL,30427,1,'2021-09-10 02:23:39','2021-09-10 02:23:39','5a313c17-2823-4e47-9cd0-4fbcf67ed5f5'),(7398,191,44998,NULL,18122,1,'2021-09-10 02:23:39','2021-09-10 02:23:39','e8f9567b-c673-471a-8828-52d0d75d7fc0'),(7399,191,44999,NULL,18109,1,'2021-09-10 02:23:39','2021-09-10 02:23:39','48f2c237-28f5-4cc1-98da-95320ac313f4'),(7400,191,45000,NULL,16828,1,'2021-09-10 02:23:39','2021-09-10 02:23:39','46c1e5fe-64a3-49c7-94ab-275560bc04a0'),(7401,191,45001,NULL,40504,1,'2021-09-10 02:23:39','2021-09-10 02:23:39','6758c26a-19f4-40dd-b397-e0e65c531cb3'),(7407,191,45009,NULL,30427,1,'2021-09-10 02:25:54','2021-09-10 02:25:54','c449a67b-fa7c-4b26-9562-aa58c1e7692c'),(7408,191,45010,NULL,18122,1,'2021-09-10 02:25:54','2021-09-10 02:25:54','963fc7a1-61c4-441a-abd2-8c1633750d7a'),(7409,191,45011,NULL,18109,1,'2021-09-10 02:25:54','2021-09-10 02:25:54','9eef4dcf-3f83-4374-a2d0-98212d92a064'),(7410,191,45012,NULL,16828,1,'2021-09-10 02:25:54','2021-09-10 02:25:54','b459bd5a-a3aa-4232-aa41-2084149a318d'),(7411,191,45013,NULL,40504,1,'2021-09-10 02:25:54','2021-09-10 02:25:54','ffd9e0e7-6787-4573-a200-8f2b6809653e'),(7417,191,45021,NULL,30427,1,'2021-09-10 02:26:16','2021-09-10 02:26:16','55182c89-d743-47a1-bb18-913bc489dec6'),(7418,191,45022,NULL,18122,1,'2021-09-10 02:26:16','2021-09-10 02:26:16','f4be0cc3-2562-4f97-a274-dfb7a6ac066a'),(7419,191,45023,NULL,18109,1,'2021-09-10 02:26:16','2021-09-10 02:26:16','71172444-c1ba-4d03-bb20-b97dc03dccda'),(7420,191,45024,NULL,16828,1,'2021-09-10 02:26:16','2021-09-10 02:26:16','b9a875a7-a32d-4dd3-bc92-c234c51aa8d2'),(7421,191,45025,NULL,40504,1,'2021-09-10 02:26:16','2021-09-10 02:26:16','21fc2bbe-f363-4624-bcc2-e73b757bf56d'),(7427,191,45033,NULL,30427,1,'2021-09-10 02:28:15','2021-09-10 02:28:15','a79202cb-cd9c-4f9d-b3a7-5c3855442573'),(7428,191,45034,NULL,18122,1,'2021-09-10 02:28:15','2021-09-10 02:28:15','23b2a575-38b0-441c-a882-6581d8607645'),(7429,191,45035,NULL,18109,1,'2021-09-10 02:28:15','2021-09-10 02:28:15','16259fc6-6624-43a2-a218-374b89faa9eb'),(7430,191,45036,NULL,16828,1,'2021-09-10 02:28:15','2021-09-10 02:28:15','f596dde6-308e-4112-ad70-4b662a36ee47'),(7431,191,45037,NULL,40504,1,'2021-09-10 02:28:15','2021-09-10 02:28:15','f8de1e0c-d918-4bb4-9c77-1d4098710373'),(7437,191,45045,NULL,30427,1,'2021-09-10 02:28:45','2021-09-10 02:28:45','51aaa04e-f40d-4892-81dd-da8077cfc47d'),(7438,191,45046,NULL,18122,1,'2021-09-10 02:28:45','2021-09-10 02:28:45','33238c2a-6ae8-4c57-8345-f03d546d2a03'),(7439,191,45047,NULL,18109,1,'2021-09-10 02:28:45','2021-09-10 02:28:45','8ed08c8b-8bfd-422c-b42a-e1468ffd8bf9'),(7440,191,45048,NULL,16828,1,'2021-09-10 02:28:45','2021-09-10 02:28:45','b33f89cf-5dcc-4c70-bbe7-7372f2dc3dac'),(7441,191,45049,NULL,40504,1,'2021-09-10 02:28:45','2021-09-10 02:28:45','0c673594-5625-49b7-9616-bd0b1194f2ae'),(7447,191,45057,NULL,30427,1,'2021-09-10 02:30:52','2021-09-10 02:30:52','36d50728-4f7b-482e-bfd2-982df2282139'),(7448,191,45058,NULL,18122,1,'2021-09-10 02:30:52','2021-09-10 02:30:52','4f76c556-2341-4db5-b671-6f90e8393b37'),(7449,191,45059,NULL,18109,1,'2021-09-10 02:30:52','2021-09-10 02:30:52','7ad951c1-47ce-4b6a-bd5f-138d9b3c5f88'),(7450,191,45060,NULL,16828,1,'2021-09-10 02:30:52','2021-09-10 02:30:52','4f0f99ec-4798-47d2-91dc-eb42de6cfbb0'),(7451,191,45061,NULL,40504,1,'2021-09-10 02:30:52','2021-09-10 02:30:52','a3559674-4458-448d-8a01-b62c0618bb92'),(7457,191,45069,NULL,30427,1,'2021-09-10 02:31:08','2021-09-10 02:31:08','5db1b1d5-3c0d-482f-8f90-6d17c9ee8ef9'),(7458,191,45070,NULL,18122,1,'2021-09-10 02:31:08','2021-09-10 02:31:08','6d2e2a94-c4b6-4114-94f3-1cd6f3698b29'),(7459,191,45071,NULL,18109,1,'2021-09-10 02:31:08','2021-09-10 02:31:08','88eae980-c57d-4994-bfa4-dd6cae3dae97'),(7460,191,45072,NULL,16828,1,'2021-09-10 02:31:08','2021-09-10 02:31:08','adc0cd4c-430d-4d2a-a046-623a0124401c'),(7461,191,45073,NULL,40504,1,'2021-09-10 02:31:08','2021-09-10 02:31:08','8ef5e4a3-6ede-4230-b970-bc03436d7a79'),(7467,191,45081,NULL,30427,1,'2021-09-10 02:31:42','2021-09-10 02:31:42','b2b732e5-0f41-413d-8d50-72f3ab0a52cc'),(7468,191,45082,NULL,18122,1,'2021-09-10 02:31:42','2021-09-10 02:31:42','8dfd41c3-d50b-4050-8b79-4393637cf0fe'),(7469,191,45083,NULL,18109,1,'2021-09-10 02:31:42','2021-09-10 02:31:42','643a0938-67dd-41d0-8f75-599bda663075'),(7470,191,45084,NULL,16828,1,'2021-09-10 02:31:42','2021-09-10 02:31:42','5edf8609-fba5-40a7-9ff7-1ca598979c24'),(7471,191,45085,NULL,40504,1,'2021-09-10 02:31:42','2021-09-10 02:31:42','84a3c042-285f-4922-9c06-12a4bb2f2f0a'),(7477,191,45093,NULL,30427,1,'2021-09-10 02:32:15','2021-09-10 02:32:15','1d07fe2b-514d-42ff-b5d2-a32233aad5e7'),(7478,191,45094,NULL,18122,1,'2021-09-10 02:32:15','2021-09-10 02:32:15','3c5d2173-7af6-46bb-971c-bde4ecc99b3f'),(7479,191,45095,NULL,18109,1,'2021-09-10 02:32:15','2021-09-10 02:32:15','d77ed58f-f1b6-4274-96b2-d9048eba8049'),(7480,191,45096,NULL,16828,1,'2021-09-10 02:32:15','2021-09-10 02:32:15','757c0496-1fe3-4d01-b479-177def1fc7f5'),(7481,191,45097,NULL,40504,1,'2021-09-10 02:32:15','2021-09-10 02:32:15','32f97e9f-e31d-42c1-afc9-f096c0886273'),(7487,191,45105,NULL,30427,1,'2021-09-10 02:32:28','2021-09-10 02:32:28','528df08e-5638-499a-b91b-1a81092706e1'),(7488,191,45106,NULL,18122,1,'2021-09-10 02:32:28','2021-09-10 02:32:28','eecfff1d-ccf8-4c30-bef1-8c95628c7c7f'),(7489,191,45107,NULL,18109,1,'2021-09-10 02:32:28','2021-09-10 02:32:28','5b544643-fd58-4673-96c5-cdf1abac847b'),(7490,191,45108,NULL,16828,1,'2021-09-10 02:32:28','2021-09-10 02:32:28','ac414858-3050-47f5-ac4e-9a5423d5409d'),(7491,191,45109,NULL,40504,1,'2021-09-10 02:32:29','2021-09-10 02:32:29','2db62dbc-e781-402b-b764-ca2ba5495b31'),(7497,191,45117,NULL,30427,1,'2021-09-10 02:33:18','2021-09-10 02:33:18','00b4f926-fe6d-4468-abb4-b44128a627b9'),(7498,191,45118,NULL,18122,1,'2021-09-10 02:33:18','2021-09-10 02:33:18','5f324fd4-35f9-4b14-a880-827640b65f45'),(7499,191,45119,NULL,18109,1,'2021-09-10 02:33:18','2021-09-10 02:33:18','508dcf50-5d95-44bf-bbe2-73773dd12b12'),(7500,191,45120,NULL,16828,1,'2021-09-10 02:33:18','2021-09-10 02:33:18','24deb773-24cd-4d7e-8808-4e4523627804'),(7501,191,45121,NULL,40504,1,'2021-09-10 02:33:18','2021-09-10 02:33:18','5237f779-be36-49d0-8fab-60dcc208b755'),(7507,191,45129,NULL,30427,1,'2021-09-10 02:34:41','2021-09-10 02:34:41','2f64fbac-b030-4474-bd99-7319bba7c83a'),(7508,191,45130,NULL,18122,1,'2021-09-10 02:34:41','2021-09-10 02:34:41','f11e0f20-a3ec-4047-95a8-856784c90346'),(7509,191,45131,NULL,18109,1,'2021-09-10 02:34:41','2021-09-10 02:34:41','c189fedb-afc4-49d4-8916-4a80f9d1a261'),(7510,191,45132,NULL,16828,1,'2021-09-10 02:34:41','2021-09-10 02:34:41','095d5f61-99f8-4184-95a7-53a375ec43d5'),(7511,191,45133,NULL,40504,1,'2021-09-10 02:34:41','2021-09-10 02:34:41','5e49f405-4cd0-43ef-919c-174486422113'),(7517,191,45141,NULL,30427,1,'2021-09-10 02:35:45','2021-09-10 02:35:45','4e83d530-c008-4eda-93f4-2f2371637ee3'),(7518,191,45142,NULL,18122,1,'2021-09-10 02:35:45','2021-09-10 02:35:45','7ed45556-fbf3-4772-8010-608a2fe1a681'),(7519,191,45143,NULL,18109,1,'2021-09-10 02:35:45','2021-09-10 02:35:45','20bc2230-b2e8-474c-898f-d0027e1b447a'),(7520,191,45144,NULL,16828,1,'2021-09-10 02:35:45','2021-09-10 02:35:45','d8552303-f219-44f1-8ab9-7066467437e8'),(7521,191,45145,NULL,40504,1,'2021-09-10 02:35:45','2021-09-10 02:35:45','2c4fcfb7-415e-4e9c-b56a-1c44a1709de2'),(7527,191,45153,NULL,30427,1,'2021-09-10 02:36:19','2021-09-10 02:36:19','60dcc4e0-bf52-4192-8dbd-b90647560299'),(7528,191,45154,NULL,18122,1,'2021-09-10 02:36:19','2021-09-10 02:36:19','f679ea43-7548-4a51-9421-ea408265935c'),(7529,191,45155,NULL,18109,1,'2021-09-10 02:36:19','2021-09-10 02:36:19','fc01d28b-d9fc-4e95-8bda-4e78817797ee'),(7530,191,45156,NULL,16828,1,'2021-09-10 02:36:19','2021-09-10 02:36:19','15b28d3d-2d62-4dfa-b702-2390e0f92f79'),(7531,191,45157,NULL,40504,1,'2021-09-10 02:36:19','2021-09-10 02:36:19','43f93253-35cb-43cc-9477-d285f66e8c6a'),(7537,191,45165,NULL,30427,1,'2021-09-10 02:36:39','2021-09-10 02:36:39','ec5c3854-c764-40bb-96fa-f5f4c9fbcf7a'),(7538,191,45166,NULL,18122,1,'2021-09-10 02:36:39','2021-09-10 02:36:39','90ed6fad-f837-4763-be38-24a678c69805'),(7539,191,45167,NULL,18109,1,'2021-09-10 02:36:39','2021-09-10 02:36:39','51930b7e-b031-4a91-8fef-9d17e256a206'),(7540,191,45168,NULL,16828,1,'2021-09-10 02:36:39','2021-09-10 02:36:39','43d9717e-63de-4469-ae0f-268383e9bebc'),(7541,191,45169,NULL,40504,1,'2021-09-10 02:36:39','2021-09-10 02:36:39','a9bd6720-2b13-473d-9923-54b6b54bd239'),(7547,191,45177,NULL,30427,1,'2021-09-10 03:08:20','2021-09-10 03:08:20','f39b7ebe-3c5c-4300-9761-114de6bb8883'),(7548,191,45178,NULL,18122,1,'2021-09-10 03:08:21','2021-09-10 03:08:21','62f1b79b-0319-43d1-8f09-24fd45f6aac1'),(7549,191,45179,NULL,18109,1,'2021-09-10 03:08:21','2021-09-10 03:08:21','04f40a38-f992-4aeb-9e81-cf19ae04de6c'),(7550,191,45180,NULL,16828,1,'2021-09-10 03:08:21','2021-09-10 03:08:21','6e148127-17b2-4d18-9bc5-d9028f4d0ba3'),(7551,191,45181,NULL,40504,1,'2021-09-10 03:08:21','2021-09-10 03:08:21','a4265ac9-40ec-4d9a-80e3-d929bdc0fc91'),(7557,191,45189,NULL,30427,1,'2021-09-10 03:10:52','2021-09-10 03:10:52','2ca91ea0-2075-4282-830d-7051bfc7c72f'),(7558,191,45190,NULL,18122,1,'2021-09-10 03:10:53','2021-09-10 03:10:53','6c7e02cf-8a09-41f6-b4ae-27286a522b42'),(7559,191,45191,NULL,18109,1,'2021-09-10 03:10:53','2021-09-10 03:10:53','99d87010-4800-4b3f-9e01-7ac7ce5e47b7'),(7560,191,45192,NULL,16828,1,'2021-09-10 03:10:53','2021-09-10 03:10:53','ec14f2d2-3cfa-49eb-be08-b33b3d966fd1'),(7561,191,45193,NULL,40504,1,'2021-09-10 03:10:53','2021-09-10 03:10:53','59a73c06-8e8d-4efb-9719-bd4e24528891'),(7567,191,45201,NULL,30427,1,'2021-09-10 03:11:43','2021-09-10 03:11:43','6ceadd29-366b-4df6-80b0-1d1e1e7f6b19'),(7568,191,45202,NULL,18109,1,'2021-09-10 03:11:43','2021-09-10 03:11:43','c4625c68-09f1-45e5-b6fb-201e61d4b2bc'),(7569,191,45203,NULL,16828,1,'2021-09-10 03:11:43','2021-09-10 03:11:43','3ec7a719-987f-4b92-ba57-f3146442cccd'),(7570,191,45204,NULL,40504,1,'2021-09-10 03:11:43','2021-09-10 03:11:43','426160ba-89ab-47f7-bebe-bef28a860379'),(7587,79,45207,NULL,17875,1,'2021-09-10 03:14:48','2021-09-10 03:14:48','c8833abe-52d2-41d1-b4db-d131e3c77e9e'),(7590,79,45207,NULL,17934,4,'2021-09-10 03:14:48','2021-09-10 03:14:48','35d5fae6-9bb3-4b45-b8c4-52ad9e2b8d13'),(7591,79,45207,NULL,30433,5,'2021-09-10 03:14:48','2021-09-10 03:14:48','bed6ab5c-8c8e-4d61-aa96-538604aca0c2'),(7592,79,45207,NULL,1,6,'2021-09-10 03:14:48','2021-09-10 03:14:48','f11e857a-ba5d-4a73-a627-ba47fc477b23'),(7593,79,45207,NULL,17954,7,'2021-09-10 03:14:48','2021-09-10 03:14:48','0e11ac83-73f4-489c-b0a8-30cb05b2775d'),(7594,79,45207,NULL,17956,8,'2021-09-10 03:14:48','2021-09-10 03:14:48','257154bc-6744-4827-a55a-2d7e8cfa7da0'),(7595,69,45207,NULL,38123,1,'2021-09-10 03:14:48','2021-09-10 03:14:48','72d7827e-9375-47df-965b-7764748f720f'),(7596,85,45207,NULL,17964,1,'2021-09-10 03:14:48','2021-09-10 03:14:48','6983ad13-6b0d-47e9-8757-a9c14d4e492e'),(7597,85,45207,NULL,17965,2,'2021-09-10 03:14:48','2021-09-10 03:14:48','80255ad3-5612-41db-99f2-c4c071f62075'),(7598,85,45207,NULL,17966,3,'2021-09-10 03:14:48','2021-09-10 03:14:48','9bb8be6c-c8ec-47fd-80aa-9b6c78b9c3e8'),(7599,85,45207,NULL,17968,4,'2021-09-10 03:14:48','2021-09-10 03:14:48','9c044588-a701-48b9-a247-9bb48c088be9'),(7600,85,45207,NULL,17970,5,'2021-09-10 03:14:48','2021-09-10 03:14:48','e5369cb7-4cb0-43ea-b5e9-05584a38f69c'),(7601,85,45207,NULL,17971,6,'2021-09-10 03:14:48','2021-09-10 03:14:48','5979455c-7518-4ded-a24e-2be137401e40'),(7602,84,45207,NULL,38157,1,'2021-09-10 03:14:48','2021-09-10 03:14:48','4c727ee2-2686-4359-a326-35bc55dd59cc'),(7614,79,45213,NULL,17875,1,'2021-09-10 05:09:45','2021-09-10 05:09:45','171c8680-b2ad-41c3-9e40-a3b45ab842b3'),(7616,79,45213,NULL,17934,3,'2021-09-10 05:09:45','2021-09-10 05:09:45','5e3fdff4-a5f9-4e92-a36e-0b1cbab4e971'),(7617,79,45213,NULL,17881,4,'2021-09-10 05:09:45','2021-09-10 05:09:45','e1af9b5c-1a09-4ff6-8025-3a6409deca27'),(7618,79,45213,NULL,1,5,'2021-09-10 05:09:45','2021-09-10 05:09:45','b3169609-56f9-4b68-ab80-415cecffb418'),(7619,79,45213,NULL,17956,6,'2021-09-10 05:09:45','2021-09-10 05:09:45','22cd27ec-0581-48c1-a7cb-b00f04bf48bb'),(7620,85,45213,NULL,17964,1,'2021-09-10 05:09:45','2021-09-10 05:09:45','da1ebf36-8c3d-415e-9f23-721ba7658c8d'),(7621,85,45213,NULL,17965,2,'2021-09-10 05:09:45','2021-09-10 05:09:45','b15c4403-5742-4af0-b8e5-cc89dc1980f2'),(7622,85,45213,NULL,17966,3,'2021-09-10 05:09:45','2021-09-10 05:09:45','ad3363b2-667c-4d27-93c7-cbeef8917ffe'),(7623,85,45213,NULL,17970,4,'2021-09-10 05:09:45','2021-09-10 05:09:45','da2edef2-72c5-4c5a-b66a-0ab662733394'),(7624,85,45213,NULL,17971,5,'2021-09-10 05:09:45','2021-09-10 05:09:45','56deb40d-dbdb-42e8-b4a6-7427c490f601'),(7625,84,45213,NULL,38157,1,'2021-09-10 05:09:45','2021-09-10 05:09:45','6d334444-3f06-4f3f-9a55-b2cc26234e55'),(7626,79,45214,NULL,17875,1,'2021-09-10 05:20:55','2021-09-10 05:20:55','19548ac1-8ef0-44ce-9786-5fe46e81432e'),(7627,79,45214,NULL,17954,2,'2021-09-10 05:20:55','2021-09-10 05:20:55','ba9f416b-21f2-4349-b53e-6ee8532cdfd7'),(7628,85,45214,NULL,17964,1,'2021-09-10 05:22:38','2021-09-10 05:22:38','83742a76-33a2-460b-86a0-11a53b3f4b03'),(7629,85,45214,NULL,17965,2,'2021-09-10 05:22:38','2021-09-10 05:22:38','9540979c-7d84-4756-8981-ae56d6b3928f'),(7630,85,45214,NULL,17970,3,'2021-09-10 05:22:38','2021-09-10 05:22:38','0cc5475f-e2a9-4d5e-8a84-a4a6c56545b7'),(7631,84,45214,NULL,38161,1,'2021-09-10 05:22:48','2021-09-10 05:22:48','0f411ef0-4ea9-4545-88b6-e16cb92fdff0'),(7632,79,45215,NULL,17875,1,'2021-09-10 05:27:40','2021-09-10 05:27:40','31699de5-7068-4bce-9d99-acca72f0eb18'),(7633,79,45215,NULL,17954,2,'2021-09-10 05:27:40','2021-09-10 05:27:40','842cc662-27ee-437b-998a-5ebc523466c4'),(7634,85,45215,NULL,17964,1,'2021-09-10 05:27:40','2021-09-10 05:27:40','e9e24f8c-4e0b-4229-a16b-470a5db3981b'),(7635,85,45215,NULL,17965,2,'2021-09-10 05:27:40','2021-09-10 05:27:40','c8751faf-37a7-4776-b558-ae160b816b1e'),(7636,85,45215,NULL,17970,3,'2021-09-10 05:27:40','2021-09-10 05:27:40','57316d80-25f5-4af7-aeca-62092a50ad66'),(7637,84,45215,NULL,38161,1,'2021-09-10 05:27:40','2021-09-10 05:27:40','7420d06b-192c-453f-b7ae-ebcbf4951067'),(7638,85,45218,NULL,17964,1,'2021-09-10 05:50:52','2021-09-10 05:50:52','abec6b14-2e54-45de-b4e2-8ec4b4605bf5'),(7639,85,45218,NULL,17968,2,'2021-09-10 05:50:52','2021-09-10 05:50:52','b4b47da2-3037-4902-a53d-a0995673df7a'),(7640,85,45218,NULL,17969,3,'2021-09-10 05:50:52','2021-09-10 05:50:52','cd74e12d-0a3a-4594-954d-182d599a081a'),(7641,84,45218,NULL,18057,1,'2021-09-10 05:51:03','2021-09-10 05:51:03','9ecdcca7-f4e9-4cad-ad30-e156452766fc'),(7642,79,45218,NULL,17954,1,'2021-09-10 06:01:48','2021-09-10 06:01:48','b9006169-f0b5-4e71-9ca4-564690333a54'),(7643,79,45218,NULL,17956,2,'2021-09-10 06:01:48','2021-09-10 06:01:48','94610f30-8e20-486f-b5a1-6d54450c3f87'),(7644,79,45219,NULL,17954,1,'2021-09-10 06:01:58','2021-09-10 06:01:58','32cab802-42ce-4b5c-8098-633e2a301e64'),(7645,79,45219,NULL,17956,2,'2021-09-10 06:01:58','2021-09-10 06:01:58','a6b049fa-e9de-4af2-9eb4-0f9b714fff3a'),(7646,85,45219,NULL,17964,1,'2021-09-10 06:01:58','2021-09-10 06:01:58','ba26bbfd-4de1-4e4c-ba67-ce220ac513db'),(7647,85,45219,NULL,17968,2,'2021-09-10 06:01:58','2021-09-10 06:01:58','e4e06c7f-bd99-49a2-be32-194120fda377'),(7648,85,45219,NULL,17969,3,'2021-09-10 06:01:58','2021-09-10 06:01:58','0576ae57-a5ff-4e68-b28b-3dd20473b92d'),(7649,84,45219,NULL,18057,1,'2021-09-10 06:01:58','2021-09-10 06:01:58','4a8cf2d3-d656-4d78-9a4e-41d9ef34b6e4'),(7650,79,45220,NULL,17875,1,'2021-09-10 06:04:19','2021-09-10 06:04:19','6c061fc9-6aee-4d03-8fb0-c856f4894d34'),(7651,79,45220,NULL,17954,2,'2021-09-10 06:04:19','2021-09-10 06:04:19','517eb004-0405-4034-ad04-a980143dd3a0'),(7652,79,45220,NULL,17956,3,'2021-09-10 06:04:19','2021-09-10 06:04:19','2a681027-1587-414d-b2d5-9289d437d0c1'),(7653,85,45220,NULL,17965,1,'2021-09-10 06:04:33','2021-09-10 06:04:33','3f0f4025-81a0-446f-8ff2-7c78c965e780'),(7654,85,45220,NULL,17968,2,'2021-09-10 06:04:33','2021-09-10 06:04:33','c0bc7228-8b2f-4594-a30c-0108112e93d2'),(7655,84,45220,NULL,18057,1,'2021-09-10 06:04:44','2021-09-10 06:04:44','29d8351f-b82d-4390-9904-e47fffe740c9'),(7656,79,45221,NULL,17875,1,'2021-09-10 06:04:48','2021-09-10 06:04:48','ffc13689-645c-4881-b77a-5a25a38536bd'),(7657,79,45221,NULL,17954,2,'2021-09-10 06:04:48','2021-09-10 06:04:48','7b8c3613-4e81-4566-a00d-d992102dc930'),(7658,79,45221,NULL,17956,3,'2021-09-10 06:04:48','2021-09-10 06:04:48','c6dde365-ea5a-40e8-8a02-2e1b1782dd5a'),(7659,85,45221,NULL,17965,1,'2021-09-10 06:04:48','2021-09-10 06:04:48','4d48c626-67be-4ba0-b70c-79c47b439bb0'),(7660,85,45221,NULL,17968,2,'2021-09-10 06:04:48','2021-09-10 06:04:48','a83d7753-c74f-4cd5-bca5-149e9da2b24f'),(7661,84,45221,NULL,18057,1,'2021-09-10 06:04:48','2021-09-10 06:04:48','7b1fc60b-76a7-433d-ab50-7312367147d1'),(7662,79,45222,NULL,17875,1,'2021-09-10 06:08:34','2021-09-10 06:08:34','9f40f4e5-69ed-4c09-9dc6-2989864f5b3d'),(7663,79,45222,NULL,17954,2,'2021-09-10 06:08:34','2021-09-10 06:08:34','9bd67888-b9d3-4950-9cdb-3d97fb83e0ea'),(7664,79,45222,NULL,17956,3,'2021-09-10 06:08:34','2021-09-10 06:08:34','0bed1306-8426-4d96-89c8-5d1690624d96'),(7665,85,45222,NULL,17964,1,'2021-09-10 06:08:50','2021-09-10 06:08:50','873bab5b-7ca2-4cd4-aa79-b754a6d923fe'),(7666,85,45222,NULL,17965,2,'2021-09-10 06:08:50','2021-09-10 06:08:50','903b3169-ddee-469b-bcf7-343684a9e94e'),(7667,85,45222,NULL,17966,3,'2021-09-10 06:08:50','2021-09-10 06:08:50','effbd6c2-7670-42c4-a0bc-69dcc86000c9'),(7668,85,45222,NULL,17967,4,'2021-09-10 06:08:50','2021-09-10 06:08:50','29c5104f-ee1c-4997-bdd2-a512dfc04087'),(7669,85,45222,NULL,17968,5,'2021-09-10 06:08:50','2021-09-10 06:08:50','618dbeeb-c528-4655-9b97-71f0cff4f599'),(7670,85,45222,NULL,17970,6,'2021-09-10 06:08:50','2021-09-10 06:08:50','a5c0599c-6f87-4b57-9e58-1ead52f769a6'),(7671,85,45222,NULL,17971,7,'2021-09-10 06:08:50','2021-09-10 06:08:50','15e18e52-ae55-4ccc-91b0-7cb8c80df59a'),(7672,120,45225,NULL,45224,1,'2021-09-10 06:08:52','2021-09-10 06:08:52','6aed5e03-2cdd-4f9c-873e-8caf809c4d30'),(7673,84,45222,NULL,18057,1,'2021-09-10 06:08:57','2021-09-10 06:08:57','15b56d10-80b4-4448-a2a2-f5b0632a1dbd'),(7674,120,45223,NULL,45224,1,'2021-09-10 06:09:10','2021-09-10 06:09:10','36e0dea4-9498-4d3d-a979-41eca7249e1b'),(7675,120,45226,NULL,45224,1,'2021-09-10 06:09:41','2021-09-10 06:09:41','86044131-fac9-473a-84dc-5b64a01b2526'),(7676,79,45227,NULL,17875,1,'2021-09-10 06:13:14','2021-09-10 06:13:14','da3ac64b-100f-459e-96ef-b0f37cc1253d'),(7677,79,45227,NULL,17954,2,'2021-09-10 06:13:14','2021-09-10 06:13:14','b88fff87-6dfa-4c66-8e99-c03d7eed66e6'),(7678,79,45227,NULL,17956,3,'2021-09-10 06:13:14','2021-09-10 06:13:14','e34ed033-b78c-40c0-b9e4-86d8273ea928'),(7679,85,45227,NULL,17964,1,'2021-09-10 06:13:15','2021-09-10 06:13:15','db994534-963a-4485-a91c-1a94891017bf'),(7680,85,45227,NULL,17965,2,'2021-09-10 06:13:15','2021-09-10 06:13:15','d0ae20ca-4151-406f-817c-678911351549'),(7681,85,45227,NULL,17966,3,'2021-09-10 06:13:15','2021-09-10 06:13:15','e9ab12eb-fb26-45ac-a7fb-b92e0f7d4505'),(7682,85,45227,NULL,17967,4,'2021-09-10 06:13:15','2021-09-10 06:13:15','692634e6-66fc-4ea9-8a1e-25331a375f1d'),(7683,85,45227,NULL,17968,5,'2021-09-10 06:13:15','2021-09-10 06:13:15','db6853e7-490b-44a6-9829-02db42eb6052'),(7684,85,45227,NULL,17970,6,'2021-09-10 06:13:15','2021-09-10 06:13:15','38ba0b7a-dc2f-42b0-87bc-ce72ec6f5f39'),(7685,85,45227,NULL,17971,7,'2021-09-10 06:13:15','2021-09-10 06:13:15','cb0d20ed-780e-4191-826b-010822c4ce91'),(7686,84,45227,NULL,18057,1,'2021-09-10 06:13:15','2021-09-10 06:13:15','b0955c9f-4198-44f9-8ca3-38b5e0c6d8a6'),(7698,84,18126,NULL,18057,1,'2021-09-10 07:00:56','2021-09-10 07:00:56','1031e669-d360-46db-b585-aa479114fc09'),(7699,84,18126,NULL,38160,2,'2021-09-10 07:00:56','2021-09-10 07:00:56','b5110342-7ff4-48a4-8c49-c97cb4396ecb'),(7700,69,45229,NULL,18584,1,'2021-09-10 07:00:56','2021-09-10 07:00:56','ff9decb8-5330-46f6-afc5-6777c87ceafe'),(7701,85,45229,NULL,17964,1,'2021-09-10 07:00:56','2021-09-10 07:00:56','3fa55f41-2401-4881-9095-26170f12616c'),(7702,85,45229,NULL,17965,2,'2021-09-10 07:00:56','2021-09-10 07:00:56','4ab0d3aa-119a-4273-95f9-d0d137bf7933'),(7703,85,45229,NULL,17966,3,'2021-09-10 07:00:56','2021-09-10 07:00:56','fb286949-4544-4c5e-bdfd-091bc2af2d03'),(7704,85,45229,NULL,17967,4,'2021-09-10 07:00:56','2021-09-10 07:00:56','a37d37f5-a209-40d8-838d-d7df028f99fe'),(7705,85,45229,NULL,17968,5,'2021-09-10 07:00:56','2021-09-10 07:00:56','2e955ea4-9e35-4fd2-86e1-ca8ecea893bc'),(7706,85,45229,NULL,17969,6,'2021-09-10 07:00:56','2021-09-10 07:00:56','d433b3ad-f3f9-4caf-b2a3-d4767f9cd41e'),(7707,85,45229,NULL,17970,7,'2021-09-10 07:00:56','2021-09-10 07:00:56','43665023-4718-4343-be73-272faae21f77'),(7708,85,45229,NULL,17971,8,'2021-09-10 07:00:56','2021-09-10 07:00:56','725b158f-d0f7-4441-8e70-844802c91bf4'),(7709,84,45229,NULL,18057,1,'2021-09-10 07:00:56','2021-09-10 07:00:56','acb57fde-7415-4369-87bf-59e8131c69a5'),(7710,84,45229,NULL,38160,2,'2021-09-10 07:00:56','2021-09-10 07:00:56','d80517c3-fac7-46f8-993f-ea9cc1d85969'),(7711,69,45230,NULL,18584,1,'2021-09-10 07:01:05','2021-09-10 07:01:05','734c2ec4-dab3-40a3-8982-e5ff889dfc22'),(7712,85,45230,NULL,17964,1,'2021-09-10 07:01:05','2021-09-10 07:01:05','00a45093-f3ed-4c22-bd66-769482b08bd0'),(7713,85,45230,NULL,17965,2,'2021-09-10 07:01:05','2021-09-10 07:01:05','9ed392df-ac5d-4636-bd46-341ef0f46b1c'),(7714,85,45230,NULL,17966,3,'2021-09-10 07:01:05','2021-09-10 07:01:05','9a0cf585-8377-424a-bf97-cbc8703ec201'),(7715,85,45230,NULL,17967,4,'2021-09-10 07:01:05','2021-09-10 07:01:05','774cbfa0-5845-46c6-a337-3afb3bc3322d'),(7716,85,45230,NULL,17968,5,'2021-09-10 07:01:05','2021-09-10 07:01:05','64e2a597-71bb-464b-a2fc-620f3751354d'),(7717,85,45230,NULL,17969,6,'2021-09-10 07:01:05','2021-09-10 07:01:05','045e4f68-dbce-4e56-aa30-ae5ce8606666'),(7718,85,45230,NULL,17970,7,'2021-09-10 07:01:05','2021-09-10 07:01:05','47f23f69-fb45-4f2a-97cb-e49d41e4f8a7'),(7719,85,45230,NULL,17971,8,'2021-09-10 07:01:05','2021-09-10 07:01:05','ca9f12d9-ed62-4db6-b502-be26714fec75'),(7720,84,45230,NULL,18057,1,'2021-09-10 07:01:05','2021-09-10 07:01:05','4ec7aa39-f568-4b89-9bb4-ceea087e4d44'),(7721,84,45230,NULL,38160,2,'2021-09-10 07:01:05','2021-09-10 07:01:05','a6a2fd1d-095a-47d8-81af-09150950240c'),(7740,79,45232,NULL,17875,1,'2021-09-10 07:10:55','2021-09-10 07:10:55','1289438b-3e88-48d5-9774-8c1b21272212'),(7741,79,45232,NULL,17887,2,'2021-09-10 07:10:55','2021-09-10 07:10:55','8efb632a-0bab-4365-9c21-62a879aea083'),(7742,79,45232,NULL,17899,3,'2021-09-10 07:10:55','2021-09-10 07:10:55','7dc0b14a-29d0-47f0-b96f-fd468d1653bd'),(7744,79,45232,NULL,17934,5,'2021-09-10 07:10:55','2021-09-10 07:10:55','30de7b99-3989-4b2e-962d-cedbf989280b'),(7745,79,45232,NULL,17941,6,'2021-09-10 07:10:55','2021-09-10 07:10:55','ecc7f733-61fc-4e12-91cf-c2bbec840178'),(7746,79,45232,NULL,1,7,'2021-09-10 07:10:55','2021-09-10 07:10:55','1eacbe21-d6d4-42e9-84a3-902fc69a8494'),(7747,79,45232,NULL,17956,8,'2021-09-10 07:10:55','2021-09-10 07:10:55','ab4cc5c0-bc12-44ef-8562-7dc227575347'),(7748,79,45232,NULL,17996,9,'2021-09-10 07:10:55','2021-09-10 07:10:55','6cbc1e22-a5d6-4438-a804-1d6667573fc2'),(7749,69,45232,NULL,44878,1,'2021-09-10 07:10:55','2021-09-10 07:10:55','b14ee587-8e9d-4195-9bbf-d74c9179b335'),(7750,85,45232,NULL,17964,1,'2021-09-10 07:10:55','2021-09-10 07:10:55','ef3fb8c7-d031-40f9-9643-7e8a135cb4b2'),(7751,85,45232,NULL,17965,2,'2021-09-10 07:10:55','2021-09-10 07:10:55','a5e7b94b-157e-43cf-8fb3-47a775a8f95e'),(7752,85,45232,NULL,17966,3,'2021-09-10 07:10:55','2021-09-10 07:10:55','9ff06653-91a2-43fc-9aa9-aaad1c36bffb'),(7753,85,45232,NULL,17968,4,'2021-09-10 07:10:55','2021-09-10 07:10:55','6d1d9a79-6a5e-4a99-bf59-874d5796dfb8'),(7754,85,45232,NULL,17969,5,'2021-09-10 07:10:55','2021-09-10 07:10:55','7f723de2-7b5b-4e31-b7b3-ebb8c3db693c'),(7755,85,45232,NULL,17970,6,'2021-09-10 07:10:55','2021-09-10 07:10:55','b87e8a09-f31e-41c9-b234-b5cf03f8b0e4'),(7756,85,45232,NULL,17971,7,'2021-09-10 07:10:55','2021-09-10 07:10:55','9ec404ae-c9a0-4f4e-b79e-76dfa1628a37'),(7757,84,45232,NULL,38160,1,'2021-09-10 07:10:55','2021-09-10 07:10:55','e50b2243-cfea-4488-8d91-d8d15c899397'),(7765,69,45234,NULL,27826,1,'2021-09-10 07:11:44','2021-09-10 07:11:44','7210be37-0a2b-4a1c-97c8-c23cf42f9593'),(7766,85,45234,NULL,17964,1,'2021-09-10 07:11:44','2021-09-10 07:11:44','46d956ed-20f6-4503-b8b3-707a7b229f04'),(7767,85,45234,NULL,17966,2,'2021-09-10 07:11:44','2021-09-10 07:11:44','b2e76ff6-c2e9-400b-a899-eca12906e144'),(7768,85,45234,NULL,17969,3,'2021-09-10 07:11:44','2021-09-10 07:11:44','1108d00f-89c0-4cb4-9421-81f1f63dd616'),(7769,85,45234,NULL,17970,4,'2021-09-10 07:11:44','2021-09-10 07:11:44','3a2e8b4e-75ff-469b-a30c-385d9a468bc2'),(7770,85,45234,NULL,17971,5,'2021-09-10 07:11:44','2021-09-10 07:11:44','82d1f567-576f-4369-9492-b75aa4e24a26'),(7771,84,45234,NULL,38159,1,'2021-09-10 07:11:44','2021-09-10 07:11:44','f4f5484f-3944-4e2b-b27e-8b3e7f9f5e56'),(7776,191,45251,NULL,30427,1,'2021-09-10 07:17:03','2021-09-10 07:17:03','c94de78c-d702-41d1-8f04-4eef679808c6'),(7777,191,45252,NULL,18109,1,'2021-09-10 07:17:03','2021-09-10 07:17:03','9c883fda-44bd-460c-8f97-3570cf066693'),(7778,191,45253,NULL,16828,1,'2021-09-10 07:17:03','2021-09-10 07:17:03','a97beaa4-91a4-44c2-a84d-e2025d13c6cb'),(7779,191,45254,NULL,40504,1,'2021-09-10 07:17:03','2021-09-10 07:17:03','d9ca639a-9d2f-4bc5-927d-f70b929d6766'),(7785,191,45249,NULL,18122,1,'2021-09-10 07:17:17','2021-09-10 07:17:17','9a736d04-69f0-4e60-a19f-3ac3295462eb'),(7786,191,45263,NULL,30427,1,'2021-09-10 07:17:17','2021-09-10 07:17:17','790d731e-493d-4eee-9a55-a3d621a89a37'),(7787,191,45264,NULL,18109,1,'2021-09-10 07:17:17','2021-09-10 07:17:17','e93979d8-6aa6-4411-af76-bfed5c203a3b'),(7788,191,45265,NULL,16828,1,'2021-09-10 07:17:17','2021-09-10 07:17:17','f3ac7d69-65d6-420c-accc-87ceacfe0768'),(7789,191,45266,NULL,40504,1,'2021-09-10 07:17:17','2021-09-10 07:17:17','5170548a-34e9-4188-85f3-600fa0f4c782'),(7790,191,45267,NULL,18122,1,'2021-09-10 07:17:17','2021-09-10 07:17:17','eee3bdc5-544f-4d06-92a0-498d0cefdc9f'),(7796,191,45275,NULL,18122,1,'2021-09-10 07:18:35','2021-09-10 07:18:35','4e2b6a3a-7b60-48ed-8e96-a36c84acd591'),(7797,191,45276,NULL,30427,1,'2021-09-10 07:18:35','2021-09-10 07:18:35','b8d493eb-e2e5-4a60-aded-d51fa94a57ec'),(7798,191,45277,NULL,18109,1,'2021-09-10 07:18:35','2021-09-10 07:18:35','1e44f137-264f-4088-b100-53a793c5d83c'),(7799,191,45278,NULL,16828,1,'2021-09-10 07:18:35','2021-09-10 07:18:35','33821ba4-ddaf-403b-82ec-236a98489443'),(7800,191,45279,NULL,40504,1,'2021-09-10 07:18:36','2021-09-10 07:18:36','1cf1fad3-0e97-496c-a547-aeb965beda26'),(7806,191,45287,NULL,18122,1,'2021-09-10 07:18:53','2021-09-10 07:18:53','a37e07b9-7722-4e8f-8da7-e0ce4e1013fd'),(7807,191,45288,NULL,30427,1,'2021-09-10 07:18:53','2021-09-10 07:18:53','a1e56c60-55df-47b5-9e9e-93f639b84808'),(7808,191,45289,NULL,18109,1,'2021-09-10 07:18:53','2021-09-10 07:18:53','d0e1090b-2713-458c-9eb7-3cfb4a21a98f'),(7809,191,45290,NULL,16828,1,'2021-09-10 07:18:53','2021-09-10 07:18:53','28b4863c-4ee0-4b90-ad80-e0e3b68f07c9'),(7810,191,45291,NULL,40504,1,'2021-09-10 07:18:53','2021-09-10 07:18:53','2e8ea3dd-31fa-49a4-8dbe-69345f8f4d88'),(7811,120,17956,NULL,19167,1,'2021-09-13 04:29:42','2021-09-13 04:29:42','7fcbbaa2-1741-4e95-934e-5da0d1f0905d'),(7817,191,45310,NULL,18122,1,'2021-09-13 22:24:13','2021-09-13 22:24:13','2fe481cb-cfac-49cf-8fdc-ba62db137ade'),(7818,191,45311,NULL,30427,1,'2021-09-13 22:24:13','2021-09-13 22:24:13','79256de8-5285-4a65-b0fe-c1188070517b'),(7819,191,45312,NULL,18109,1,'2021-09-13 22:24:13','2021-09-13 22:24:13','152e1702-2bd8-4881-817f-ac2d01a0deeb'),(7820,191,45313,NULL,16828,1,'2021-09-13 22:24:13','2021-09-13 22:24:13','e029ea2a-ab6e-4f87-b497-fe29afe778d4'),(7821,191,45314,NULL,40504,1,'2021-09-13 22:24:14','2021-09-13 22:24:14','8656fbe6-445c-4547-bb89-fe775bb0f3d5'),(7833,69,45324,NULL,18584,1,'2021-09-14 01:25:34','2021-09-14 01:25:34','c309731e-4806-4f04-8c3f-d146a18e4667'),(7834,85,45324,NULL,17964,1,'2021-09-14 01:25:34','2021-09-14 01:25:34','bc775fc8-97ad-41f2-9ef6-e43b72f5b737'),(7835,85,45324,NULL,17965,2,'2021-09-14 01:25:34','2021-09-14 01:25:34','af395d08-cc49-4577-9608-326dcd66462e'),(7836,85,45324,NULL,17966,3,'2021-09-14 01:25:34','2021-09-14 01:25:34','1f32b590-e23c-48a9-8a48-c14bbea9b24b'),(7837,85,45324,NULL,17967,4,'2021-09-14 01:25:34','2021-09-14 01:25:34','a28e9d66-b8e2-417e-8ad1-c166122ac225'),(7838,85,45324,NULL,17968,5,'2021-09-14 01:25:34','2021-09-14 01:25:34','62f14e92-27d7-4408-b08f-b5f8af7726ad'),(7839,85,45324,NULL,17969,6,'2021-09-14 01:25:34','2021-09-14 01:25:34','0467510e-57ae-461b-aeba-30c97c67955e'),(7840,85,45324,NULL,17970,7,'2021-09-14 01:25:34','2021-09-14 01:25:34','bec7a9a4-21c0-4971-941b-89f7870a51d2'),(7841,85,45324,NULL,17971,8,'2021-09-14 01:25:34','2021-09-14 01:25:34','45bfeb2e-1fb7-45d5-89fe-0c272e12535e'),(7842,84,45324,NULL,18057,1,'2021-09-14 01:25:34','2021-09-14 01:25:34','4ddfaf85-77d8-4e7e-b42b-1f34b9a0e7c6'),(7843,84,45324,NULL,38160,2,'2021-09-14 01:25:34','2021-09-14 01:25:34','f5dc3224-e7d5-4cf9-9890-2d09d31fff95'),(7844,79,45326,NULL,17887,1,'2021-09-14 01:27:58','2021-09-14 01:27:58','a4f9bae1-f88a-41b7-95e5-45d34b2d98f9'),(7845,79,45326,NULL,17893,2,'2021-09-14 01:27:58','2021-09-14 01:27:58','9c263696-7ba9-4602-ac20-a209ae056b51'),(7846,79,45326,NULL,21898,3,'2021-09-14 01:27:58','2021-09-14 01:27:58','2cc8f9ee-2873-4805-86c9-c30d4e36b4d8'),(7848,79,45326,NULL,17881,5,'2021-09-14 01:27:58','2021-09-14 01:27:58','62cc0231-f567-41b9-92ed-930be1a5d407'),(7849,79,45326,NULL,17956,6,'2021-09-14 01:27:58','2021-09-14 01:27:58','e4805e5a-945c-474c-a48d-adc2a602c802'),(7850,85,45326,NULL,17964,1,'2021-09-14 01:27:58','2021-09-14 01:27:58','70b30102-a0ae-4095-92e3-0c2c754756cb'),(7851,85,45326,NULL,17968,2,'2021-09-14 01:27:58','2021-09-14 01:27:58','54e1cbc0-7625-4c49-a7e1-68173a8aa95c'),(7852,84,45326,NULL,18057,1,'2021-09-14 01:27:58','2021-09-14 01:27:58','e3817ec8-ff0a-4cba-a245-511a3dfed21d'),(7853,84,45326,NULL,38159,2,'2021-09-14 01:27:58','2021-09-14 01:27:58','fd81620a-0bca-4ddd-9a1b-7d993f763f08'),(7854,84,45326,NULL,38160,3,'2021-09-14 01:27:58','2021-09-14 01:27:58','95cdb87b-1202-46c9-9fa2-f9f4ea7ea687'),(7856,79,45327,NULL,17875,1,'2021-09-14 01:28:52','2021-09-14 01:28:52','f87333c9-05d3-4a4c-9998-62e18eb69962'),(7857,79,45327,NULL,17887,2,'2021-09-14 01:28:52','2021-09-14 01:28:52','4ac090ed-b78e-439e-b95e-0ab39ea279c0'),(7858,79,45327,NULL,17899,3,'2021-09-14 01:28:52','2021-09-14 01:28:52','31ac21d7-2199-4b72-9c2b-de7abd1c617a'),(7860,79,45327,NULL,17934,5,'2021-09-14 01:28:52','2021-09-14 01:28:52','16eb6e93-2311-4194-a671-47a539647ccd'),(7861,79,45327,NULL,17941,6,'2021-09-14 01:28:52','2021-09-14 01:28:52','d75284af-1e78-4b46-91a1-91e3cdb2abb3'),(7862,79,45327,NULL,1,7,'2021-09-14 01:28:52','2021-09-14 01:28:52','ee187b7e-43e8-409c-af22-a1ef4fce1f97'),(7863,79,45327,NULL,17956,8,'2021-09-14 01:28:52','2021-09-14 01:28:52','eb2b1a48-441f-4c07-abee-803ef73ef4d2'),(7864,79,45327,NULL,17996,9,'2021-09-14 01:28:52','2021-09-14 01:28:52','d10d957d-e829-4632-bbdc-6cdb07d587ca'),(7865,69,45327,NULL,44878,1,'2021-09-14 01:28:52','2021-09-14 01:28:52','14cc4d96-836f-4ec0-b7de-9074d431a570'),(7866,85,45327,NULL,17964,1,'2021-09-14 01:28:52','2021-09-14 01:28:52','89e448ec-90d0-4513-b9b5-ed414e072ef6'),(7867,85,45327,NULL,17965,2,'2021-09-14 01:28:52','2021-09-14 01:28:52','c42e0b7d-0686-42a5-9173-9a5fb9255b83'),(7868,85,45327,NULL,17966,3,'2021-09-14 01:28:52','2021-09-14 01:28:52','019c8c85-1cf7-49ec-8b80-bf69194e6113'),(7869,85,45327,NULL,17968,4,'2021-09-14 01:28:52','2021-09-14 01:28:52','b2345c95-7e89-440b-8cc3-862a489839b1'),(7870,85,45327,NULL,17969,5,'2021-09-14 01:28:52','2021-09-14 01:28:52','5d3d65ad-b619-4823-9985-b1c2cc383c03'),(7871,85,45327,NULL,17970,6,'2021-09-14 01:28:52','2021-09-14 01:28:52','a482bfb2-5d02-46f0-bbe2-3cd3fff36535'),(7872,85,45327,NULL,17971,7,'2021-09-14 01:28:52','2021-09-14 01:28:52','d3b0cc24-05cb-4294-a787-2dc08655b5d7'),(7873,84,45327,NULL,38160,1,'2021-09-14 01:28:52','2021-09-14 01:28:52','3e8f2762-c625-4224-be54-455b926f4a65'),(7885,79,45331,NULL,17875,1,'2021-09-14 04:03:09','2021-09-14 04:03:09','0b075520-d34f-4751-90da-42c671ded2a6'),(7888,79,45331,NULL,17934,4,'2021-09-14 04:03:09','2021-09-14 04:03:09','c7c5df63-31fd-4dad-af4c-872da1059cb3'),(7889,79,45331,NULL,17956,5,'2021-09-14 04:03:09','2021-09-14 04:03:09','5b38c9a1-c363-401d-8f29-20f2b29ffe31'),(7890,85,45331,NULL,17964,1,'2021-09-14 04:03:09','2021-09-14 04:03:09','9afda79f-c0e6-41d3-8ab1-b150d87f3a61'),(7891,85,45331,NULL,17966,2,'2021-09-14 04:03:09','2021-09-14 04:03:09','78d9ac2a-e59e-42f9-9184-21a8006c8a4e'),(7892,85,45331,NULL,17968,3,'2021-09-14 04:03:09','2021-09-14 04:03:09','48e82136-2fcc-4889-98a6-acf72f8db842'),(7893,85,45331,NULL,17970,4,'2021-09-14 04:03:09','2021-09-14 04:03:09','55b55a3a-c0d2-4571-9c96-c8d349ab9e9c'),(7894,85,45331,NULL,17971,5,'2021-09-14 04:03:09','2021-09-14 04:03:09','b9d788f1-559f-40a0-8d2b-26606de76caf'),(7895,84,45331,NULL,38157,1,'2021-09-14 04:03:09','2021-09-14 04:03:09','9bdf6993-2782-40e2-9cc4-ab302e31ce29'),(7907,79,45334,NULL,17875,1,'2021-09-14 04:09:15','2021-09-14 04:09:15','7b05e385-e361-4d48-8ba7-4f84443fb5c6'),(7910,79,45334,NULL,17934,4,'2021-09-14 04:09:15','2021-09-14 04:09:15','bb20e703-cfab-4a50-80de-a05578501ab1'),(7911,79,45334,NULL,17956,5,'2021-09-14 04:09:15','2021-09-14 04:09:15','33fa0349-6cd8-4f55-9395-5fa10eafa533'),(7912,85,45334,NULL,17964,1,'2021-09-14 04:09:15','2021-09-14 04:09:15','b58f753f-eb26-428e-96cf-34172698ef39'),(7913,85,45334,NULL,17966,2,'2021-09-14 04:09:15','2021-09-14 04:09:15','9037b21c-f367-47cb-a40f-a69da93491b1'),(7914,85,45334,NULL,17968,3,'2021-09-14 04:09:15','2021-09-14 04:09:15','714761c2-ccdb-48e0-bccc-ff0668f53058'),(7915,85,45334,NULL,17970,4,'2021-09-14 04:09:15','2021-09-14 04:09:15','fb214b97-975d-47bd-94af-aaed5f693425'),(7916,85,45334,NULL,17971,5,'2021-09-14 04:09:15','2021-09-14 04:09:15','ec793f75-4039-47d9-b07c-890038fe7fe0'),(7917,84,45334,NULL,38157,1,'2021-09-14 04:09:15','2021-09-14 04:09:15','6aa07ebb-c54f-454a-86ba-e11924cbbfbc'),(7930,79,45342,NULL,17875,1,'2021-09-14 07:26:29','2021-09-14 07:26:29','7f37b19b-5d7f-4c90-b3bb-7afc180438c6'),(7932,79,45342,NULL,17934,3,'2021-09-14 07:26:29','2021-09-14 07:26:29','c4faa177-fe93-4710-98c2-9213b69cd669'),(7933,79,45342,NULL,17954,4,'2021-09-14 07:26:29','2021-09-14 07:26:29','b4f11d3a-f489-4418-9a95-1a736d77b415'),(7934,79,45342,NULL,17956,5,'2021-09-14 07:26:29','2021-09-14 07:26:29','b99b3ae1-edb1-4680-98ae-884af705fee9'),(7935,85,45342,NULL,17964,1,'2021-09-14 07:26:29','2021-09-14 07:26:29','bc63ac3c-07ff-4919-8357-b02447c16e8e'),(7936,85,45342,NULL,17965,2,'2021-09-14 07:26:29','2021-09-14 07:26:29','c343a9cc-b147-4e0f-9186-c228263ec9d1'),(7937,85,45342,NULL,17966,3,'2021-09-14 07:26:29','2021-09-14 07:26:29','0e1c0282-2ca6-4dd6-a969-90c968fa277a'),(7938,85,45342,NULL,17968,4,'2021-09-14 07:26:29','2021-09-14 07:26:29','8a287bdc-52d8-4bad-a242-6c7669c49f76'),(7939,85,45342,NULL,17969,5,'2021-09-14 07:26:29','2021-09-14 07:26:29','4a19e0bc-cc8b-420a-adc4-eecafdc8432f'),(7940,85,45342,NULL,17971,6,'2021-09-14 07:26:29','2021-09-14 07:26:29','ecbb99ee-5060-4ed8-9078-4f8aec38a16e'),(7941,84,45342,NULL,38159,1,'2021-09-14 07:26:29','2021-09-14 07:26:29','6030f2e3-1ff2-4373-9fda-70f3809430e6'),(7954,79,47633,NULL,17875,1,'2021-09-16 01:31:06','2021-09-16 01:31:06','aace05cb-6e5b-4004-a7e5-0a31bc8e6bb8'),(7956,79,47633,NULL,17934,3,'2021-09-16 01:31:06','2021-09-16 01:31:06','5d47a1aa-f3f1-44e8-b046-70186f87199f'),(7957,79,47633,NULL,17954,4,'2021-09-16 01:31:06','2021-09-16 01:31:06','295152f6-d34b-4616-9fa9-9809fb422932'),(7958,79,47633,NULL,17956,5,'2021-09-16 01:31:06','2021-09-16 01:31:06','c17bd29f-0351-458f-be12-0d3e61094cc2'),(7959,85,47633,NULL,17964,1,'2021-09-16 01:31:06','2021-09-16 01:31:06','87e47643-0ce6-4b35-968b-e443a55dc0b0'),(7960,85,47633,NULL,17965,2,'2021-09-16 01:31:06','2021-09-16 01:31:06','50631e3b-5b17-4d95-be2b-afee1578901e'),(7961,85,47633,NULL,17966,3,'2021-09-16 01:31:06','2021-09-16 01:31:06','e2fbf0fc-dc46-47e5-85ed-2e85accde508'),(7962,85,47633,NULL,17968,4,'2021-09-16 01:31:06','2021-09-16 01:31:06','838c4c13-41c0-47f3-a377-9fb64c492dd4'),(7963,85,47633,NULL,17969,5,'2021-09-16 01:31:06','2021-09-16 01:31:06','0a702ab3-e849-449d-8825-81fafbf6bbab'),(7964,85,47633,NULL,17971,6,'2021-09-16 01:31:06','2021-09-16 01:31:06','5446ddcf-ee7c-4890-a0d6-bfc57aacce30'),(7965,84,47633,NULL,38159,1,'2021-09-16 01:31:06','2021-09-16 01:31:06','dfc63f1e-36e4-478f-8932-5ccee660be50'),(7980,79,47644,NULL,17875,1,'2021-09-16 23:47:19','2021-09-16 23:47:19','7f0add5f-f6c3-400a-abef-e891a3307b68'),(7982,79,47644,NULL,1,3,'2021-09-16 23:47:19','2021-09-16 23:47:19','03465003-e199-404c-8346-dc2761f1a516'),(7983,79,47644,NULL,17954,4,'2021-09-16 23:47:19','2021-09-16 23:47:19','13291403-4e35-4b35-93f7-06cd55b9dc9a'),(7984,79,47644,NULL,17881,5,'2021-09-16 23:47:19','2021-09-16 23:47:19','503b14b5-e1ea-4756-b0d7-cb272fe3073e'),(7985,79,47644,NULL,17956,6,'2021-09-16 23:47:19','2021-09-16 23:47:19','56ce9d0e-ee29-4408-b5e5-fa68cf95fdb2'),(7986,69,47644,NULL,16693,1,'2021-09-16 23:47:19','2021-09-16 23:47:19','89747cbd-ffb4-46d6-903a-621581b128b5'),(7987,85,47644,NULL,17964,1,'2021-09-16 23:47:19','2021-09-16 23:47:19','9a635987-1b98-4ea4-b669-e679def320c6'),(7988,85,47644,NULL,17965,2,'2021-09-16 23:47:19','2021-09-16 23:47:19','e517aff5-27e3-4df6-9fc3-38e5dacf1f43'),(7989,85,47644,NULL,17966,3,'2021-09-16 23:47:19','2021-09-16 23:47:19','3e932d92-169b-4052-9f69-a2092615742e'),(7990,85,47644,NULL,17969,4,'2021-09-16 23:47:19','2021-09-16 23:47:19','1bff576a-d70d-4eaa-a3b8-9f899d039d15'),(7991,85,47644,NULL,17970,5,'2021-09-16 23:47:19','2021-09-16 23:47:19','4e0036d7-281b-4d45-af4a-3f85918276ba'),(7992,85,47644,NULL,17971,6,'2021-09-16 23:47:19','2021-09-16 23:47:19','536664dd-ee30-486b-aeed-cbebda6d1f45'),(7993,84,47644,NULL,38158,1,'2021-09-16 23:47:19','2021-09-16 23:47:19','fe70c838-e962-463b-a627-04e4a6c270d9'),(8008,79,47646,NULL,17875,1,'2021-09-16 23:51:52','2021-09-16 23:51:52','6724f32d-773e-4dea-8a1a-f5505ddd6bd9'),(8010,79,47646,NULL,1,3,'2021-09-16 23:51:52','2021-09-16 23:51:52','24fdf9f8-29e6-43a4-95c8-0697d455a4d6'),(8011,79,47646,NULL,17954,4,'2021-09-16 23:51:52','2021-09-16 23:51:52','2c8ab542-6bd1-4066-8d0e-5f304e8428cf'),(8012,79,47646,NULL,17881,5,'2021-09-16 23:51:52','2021-09-16 23:51:52','50611fca-fe6d-4c56-b53d-d2100f08ff43'),(8013,79,47646,NULL,17956,6,'2021-09-16 23:51:52','2021-09-16 23:51:52','8b7d309c-3a1b-41f9-bbef-10bd6a88c072'),(8014,69,47646,NULL,16693,1,'2021-09-16 23:51:52','2021-09-16 23:51:52','461b30b3-1324-473d-b23d-2e8776f5832e'),(8015,85,47646,NULL,17964,1,'2021-09-16 23:51:52','2021-09-16 23:51:52','1a08d32d-bf5c-42a4-9edd-732062d8aac5'),(8016,85,47646,NULL,17965,2,'2021-09-16 23:51:52','2021-09-16 23:51:52','51170577-e0cd-4766-a55e-c0b4d6097bec'),(8017,85,47646,NULL,17966,3,'2021-09-16 23:51:52','2021-09-16 23:51:52','3cdb5c01-9e63-4829-b8d2-6566a5636f98'),(8018,85,47646,NULL,17969,4,'2021-09-16 23:51:52','2021-09-16 23:51:52','fd7f0272-3c96-4312-9e47-d5e50f276e1e'),(8019,85,47646,NULL,17970,5,'2021-09-16 23:51:52','2021-09-16 23:51:52','a3c6e58d-fc2b-4525-babe-b1caa60840bb'),(8020,85,47646,NULL,17971,6,'2021-09-16 23:51:52','2021-09-16 23:51:52','df6a5cc2-5d1d-49f0-bbe6-514eaf5f4083'),(8021,84,47646,NULL,38158,1,'2021-09-16 23:51:52','2021-09-16 23:51:52','45a69656-970a-4e54-918e-30b97a43d242'),(8033,79,47648,NULL,17875,1,'2021-09-17 01:17:20','2021-09-17 01:17:20','22049003-908b-4185-aad9-c50c551c96cd'),(8036,79,47648,NULL,17934,4,'2021-09-17 01:17:20','2021-09-17 01:17:20','04a112bd-6aa3-4fcc-9b82-a339605cf346'),(8037,79,47648,NULL,17956,5,'2021-09-17 01:17:20','2021-09-17 01:17:20','1f43dd29-b42b-4865-bbe7-8f83e046f7f4'),(8038,85,47648,NULL,17964,1,'2021-09-17 01:17:20','2021-09-17 01:17:20','17a571b6-5dd1-4daf-a4f7-20c1109bf19e'),(8039,85,47648,NULL,17966,2,'2021-09-17 01:17:20','2021-09-17 01:17:20','1a378017-1dce-4fc6-8dc1-61eafdae2b7c'),(8040,85,47648,NULL,17968,3,'2021-09-17 01:17:20','2021-09-17 01:17:20','704e91a1-3bd3-4a1e-b3b6-6b9db5879c9a'),(8041,85,47648,NULL,17970,4,'2021-09-17 01:17:20','2021-09-17 01:17:20','b640d2b0-8ef8-4a5e-949b-00fffe26a620'),(8042,85,47648,NULL,17971,5,'2021-09-17 01:17:20','2021-09-17 01:17:20','51a32ba0-2607-4a38-a184-6f60cd0bf34f'),(8043,84,47648,NULL,38157,1,'2021-09-17 01:17:20','2021-09-17 01:17:20','5be276d1-2091-4973-b3cf-9a83eb35b575'),(8055,79,47650,NULL,17875,1,'2021-09-17 02:22:50','2021-09-17 02:22:50','95d3225b-a904-4f6d-8bf1-dea39394b13d'),(8058,79,47650,NULL,17934,4,'2021-09-17 02:22:50','2021-09-17 02:22:50','14d2f9a2-e72b-4e57-8e7c-324305a64629'),(8059,79,47650,NULL,17956,5,'2021-09-17 02:22:50','2021-09-17 02:22:50','982ab6b8-f934-4611-b865-887f4768012a'),(8060,85,47650,NULL,17964,1,'2021-09-17 02:22:50','2021-09-17 02:22:50','5871672c-da83-4ae1-8172-5316377c9b17'),(8061,85,47650,NULL,17966,2,'2021-09-17 02:22:50','2021-09-17 02:22:50','8b3b18e0-cdbb-4db6-95af-3a65030c86e9'),(8062,85,47650,NULL,17968,3,'2021-09-17 02:22:50','2021-09-17 02:22:50','d45f6eb1-0ef0-4320-8d91-219a701edc08'),(8063,85,47650,NULL,17970,4,'2021-09-17 02:22:50','2021-09-17 02:22:50','353a8729-4817-42ee-bf8e-4e9f48e9d3ec'),(8064,85,47650,NULL,17971,5,'2021-09-17 02:22:50','2021-09-17 02:22:50','346b8747-9249-45e0-b12a-e17ed1d5005f'),(8065,84,47650,NULL,38157,1,'2021-09-17 02:22:50','2021-09-17 02:22:50','c3b63136-4132-4799-a9f0-aa64aaa8d7e5'),(8077,79,47652,NULL,17887,1,'2021-09-17 04:07:32','2021-09-17 04:07:32','38327820-34c9-49e3-8bdb-211150d34441'),(8078,79,47652,NULL,17893,2,'2021-09-17 04:07:32','2021-09-17 04:07:32','f05d53ed-0a85-4155-a362-be8828b68511'),(8079,79,47652,NULL,21898,3,'2021-09-17 04:07:32','2021-09-17 04:07:32','24eabbf7-9e06-46e1-939b-22d14aba9edd'),(8081,79,47652,NULL,17881,5,'2021-09-17 04:07:32','2021-09-17 04:07:32','fe8bd3bb-935d-44b8-bfad-b83cf49957ae'),(8082,79,47652,NULL,17956,6,'2021-09-17 04:07:32','2021-09-17 04:07:32','c910ed71-e8c5-417c-889e-3093398a692e'),(8083,85,47652,NULL,17964,1,'2021-09-17 04:07:32','2021-09-17 04:07:32','5533baa9-6b5e-4824-ab8b-0638074ea6b3'),(8084,85,47652,NULL,17968,2,'2021-09-17 04:07:32','2021-09-17 04:07:32','6825a689-1f00-4c0a-b806-956cc7816b3f'),(8085,84,47652,NULL,18057,1,'2021-09-17 04:07:32','2021-09-17 04:07:32','5226bf2f-f857-44d7-9ffb-287a579d7a36'),(8086,84,47652,NULL,38159,2,'2021-09-17 04:07:32','2021-09-17 04:07:32','70b66a6d-cd1a-44d3-8b6e-1a7b87b33412'),(8087,84,47652,NULL,38160,3,'2021-09-17 04:07:32','2021-09-17 04:07:32','71872eda-e322-4b09-a2ec-4775bf73531f'),(8096,79,47664,NULL,17875,1,'2021-09-17 06:01:05','2021-09-17 06:01:05','7d74aeb5-671d-4664-9dd8-cd931b0f93ee'),(8097,79,47664,NULL,17954,2,'2021-09-17 06:01:05','2021-09-17 06:01:05','4e26bd75-4e89-4681-9a7b-c5b470e39e96'),(8098,85,47664,NULL,17964,1,'2021-09-17 06:01:05','2021-09-17 06:01:05','2c1cfbdb-f54e-4d13-a468-5ef6504cf0ed'),(8099,85,47664,NULL,17966,2,'2021-09-17 06:01:05','2021-09-17 06:01:05','2ddf9d91-bcd8-45eb-9741-464c2bc60c92'),(8100,85,47664,NULL,17968,3,'2021-09-17 06:01:05','2021-09-17 06:01:05','9fe1e222-3a13-4dac-a71c-1922fc821b0b'),(8101,85,47664,NULL,17970,4,'2021-09-17 06:01:05','2021-09-17 06:01:05','f3918189-21ea-4bad-8607-391875f7c60d'),(8102,85,47664,NULL,17971,5,'2021-09-17 06:01:05','2021-09-17 06:01:05','71091571-d9d2-401c-80a8-ccd937fe704a'),(8103,84,47664,NULL,18057,1,'2021-09-17 06:01:05','2021-09-17 06:01:05','b6cc2c4c-6df8-4eda-9cc1-04506ba81d39'),(8104,79,47665,NULL,17875,1,'2021-09-17 06:01:30','2021-09-17 06:01:30','34b77ed4-dcfa-4c1c-9c48-9f82454da420'),(8107,79,47665,NULL,17934,4,'2021-09-17 06:01:30','2021-09-17 06:01:30','547a6dcb-02b1-411e-9a6f-da92caabd639'),(8108,79,47665,NULL,17956,5,'2021-09-17 06:01:30','2021-09-17 06:01:30','7a436730-0bb5-4e3d-998c-2088d229fba0'),(8109,85,47665,NULL,17964,1,'2021-09-17 06:01:30','2021-09-17 06:01:30','837b1e91-eceb-4f67-923b-bcbc791819a4'),(8110,85,47665,NULL,17966,2,'2021-09-17 06:01:30','2021-09-17 06:01:30','5192d041-d7f7-497d-b05b-38a686d3b44b'),(8111,85,47665,NULL,17968,3,'2021-09-17 06:01:30','2021-09-17 06:01:30','c72ddd29-0d98-41fc-92f2-52213a634ce5'),(8112,85,47665,NULL,17970,4,'2021-09-17 06:01:30','2021-09-17 06:01:30','c40e1503-3936-49c7-8495-31faab311ba4'),(8113,85,47665,NULL,17971,5,'2021-09-17 06:01:30','2021-09-17 06:01:30','2d03f0ff-c1df-4429-ac49-f823849777db'),(8114,84,47665,NULL,38157,1,'2021-09-17 06:01:30','2021-09-17 06:01:30','ab880169-15b4-42b6-9762-c46dd8d653c3'),(8126,69,47667,NULL,18584,1,'2021-09-17 06:08:04','2021-09-17 06:08:04','c880a24c-502c-4e9d-a012-9f04911f4b3f'),(8127,85,47667,NULL,17964,1,'2021-09-17 06:08:04','2021-09-17 06:08:04','2463dbd7-36f0-4e27-9737-5c0df6261075'),(8128,85,47667,NULL,17965,2,'2021-09-17 06:08:04','2021-09-17 06:08:04','5d99fffc-cdf3-4c3b-b38e-a34835a2c116'),(8129,85,47667,NULL,17966,3,'2021-09-17 06:08:04','2021-09-17 06:08:04','361d1fdc-211b-4b4a-a321-d15a16efc68a'),(8130,85,47667,NULL,17967,4,'2021-09-17 06:08:04','2021-09-17 06:08:04','6d1a843f-f0e0-4133-b5e3-77b653149323'),(8131,85,47667,NULL,17968,5,'2021-09-17 06:08:04','2021-09-17 06:08:04','88df3ad8-c32a-4b9f-81f2-030bec9360c3'),(8132,85,47667,NULL,17969,6,'2021-09-17 06:08:04','2021-09-17 06:08:04','e034f23b-1a87-4d6e-beba-5276ae0fcfca'),(8133,85,47667,NULL,17970,7,'2021-09-17 06:08:04','2021-09-17 06:08:04','55a4546e-8c8c-454e-b2d6-47dfcb8a132c'),(8134,85,47667,NULL,17971,8,'2021-09-17 06:08:04','2021-09-17 06:08:04','478b6e13-a9cf-43fb-82f3-8b9fb20a2374'),(8135,84,47667,NULL,18057,1,'2021-09-17 06:08:04','2021-09-17 06:08:04','5664f605-2f62-456d-8e0a-31c4d188552d'),(8136,84,47667,NULL,38160,2,'2021-09-17 06:08:04','2021-09-17 06:08:04','e328790a-3cd3-418d-b426-0ae4ab2d1e1a'),(8153,79,47669,NULL,17875,1,'2021-09-17 06:11:09','2021-09-17 06:11:09','e958c62e-bc8d-4718-8cf1-cd93b29e160c'),(8154,79,47669,NULL,17899,2,'2021-09-17 06:11:09','2021-09-17 06:11:09','6aeff60a-0770-42aa-aaa9-28030fa892aa'),(8157,79,47669,NULL,17934,5,'2021-09-17 06:11:09','2021-09-17 06:11:09','7e920367-d661-459b-991a-fb89c0a33fd7'),(8158,79,47669,NULL,17941,6,'2021-09-17 06:11:09','2021-09-17 06:11:09','4f2eb65c-7cc7-4340-9dd4-748a0962e1b1'),(8159,79,47669,NULL,17954,7,'2021-09-17 06:11:09','2021-09-17 06:11:09','9232cd9f-a0da-4289-909a-396b002faee7'),(8160,79,47669,NULL,17996,8,'2021-09-17 06:11:09','2021-09-17 06:11:09','a02b69c6-3a13-476c-bc3e-9b4438057bf7'),(8161,69,47669,NULL,16824,1,'2021-09-17 06:11:09','2021-09-17 06:11:09','46ab891b-e7af-4d95-b5fa-81462a07dabc'),(8162,85,47669,NULL,17964,1,'2021-09-17 06:11:09','2021-09-17 06:11:09','70096b66-e841-4349-b429-54b2b10b338a'),(8163,85,47669,NULL,17966,2,'2021-09-17 06:11:09','2021-09-17 06:11:09','76afc5b6-ab11-4471-9d14-23daf192beca'),(8164,85,47669,NULL,17967,3,'2021-09-17 06:11:09','2021-09-17 06:11:09','e39654d3-7e2c-4b93-8995-a1ca94b04115'),(8165,85,47669,NULL,17969,4,'2021-09-17 06:11:09','2021-09-17 06:11:09','8af20b7d-8dba-43e5-af2f-bd3a5b131aee'),(8166,85,47669,NULL,17970,5,'2021-09-17 06:11:09','2021-09-17 06:11:09','2c2b14ef-bc23-4a5f-b50c-01e557cf014f'),(8167,85,47669,NULL,17971,6,'2021-09-17 06:11:09','2021-09-17 06:11:09','f0fa35bf-9072-44b6-8c6c-0675828c4704'),(8168,84,47669,NULL,18057,1,'2021-09-17 06:11:09','2021-09-17 06:11:09','7b968463-d89d-4908-865e-ef8fa440d9d0'),(8182,79,47684,NULL,17875,1,'2021-09-17 06:28:19','2021-09-17 06:28:19','233e56c0-3fce-478e-b1a9-e95fc0d4b3e2'),(8184,79,47684,NULL,17934,3,'2021-09-17 06:28:19','2021-09-17 06:28:19','3a6933d7-64ff-4cda-83b8-0b83e57e85d5'),(8185,79,47684,NULL,17881,4,'2021-09-17 06:28:19','2021-09-17 06:28:19','9717149c-a6a9-44e2-bbbb-13effd7c1134'),(8186,79,47684,NULL,17954,5,'2021-09-17 06:28:19','2021-09-17 06:28:19','0347ba2f-c86e-4981-80fd-fbfe8fd0dc2b'),(8187,79,47684,NULL,17956,6,'2021-09-17 06:28:19','2021-09-17 06:28:19','21007a72-771d-483d-a1ad-4224630390a2'),(8188,69,47684,NULL,22084,1,'2021-09-17 06:28:19','2021-09-17 06:28:19','212d581a-e509-4842-953b-18f41c79b2f5'),(8189,85,47684,NULL,17964,1,'2021-09-17 06:28:19','2021-09-17 06:28:19','e5eca3d5-1101-49b4-a0b6-c8382e71cb79'),(8190,85,47684,NULL,17965,2,'2021-09-17 06:28:19','2021-09-17 06:28:19','51dd3f64-d72b-44c5-974a-d30ce830af69'),(8191,85,47684,NULL,17969,3,'2021-09-17 06:28:19','2021-09-17 06:28:19','d7408f71-b8fa-4c7c-8f70-ce4a5b2377ca'),(8192,85,47684,NULL,17970,4,'2021-09-17 06:28:19','2021-09-17 06:28:19','25ffc14a-c4b1-4be7-b598-3d692ec50330'),(8193,85,47684,NULL,17971,5,'2021-09-17 06:28:19','2021-09-17 06:28:19','1b0a16ca-20da-432c-810b-f2e994df6083'),(8194,84,47684,NULL,38161,1,'2021-09-17 06:28:19','2021-09-17 06:28:19','e8da757a-3c29-4de1-84ae-dad0cc4275c0'),(8211,79,47686,NULL,17875,1,'2021-09-17 07:03:48','2021-09-17 07:03:48','8a140640-b816-490e-bfd4-8c726fdb83b1'),(8212,79,47686,NULL,17899,2,'2021-09-17 07:03:48','2021-09-17 07:03:48','6ca381ef-3372-47f6-9b39-58b51f1c9a02'),(8215,79,47686,NULL,17934,5,'2021-09-17 07:03:48','2021-09-17 07:03:48','7799e3ea-24c8-46fb-a228-cf0b525c192c'),(8216,79,47686,NULL,17941,6,'2021-09-17 07:03:48','2021-09-17 07:03:48','1514ac66-f95d-4293-8068-f03dac04d55f'),(8217,79,47686,NULL,17954,7,'2021-09-17 07:03:48','2021-09-17 07:03:48','75f50b11-b3d3-41a4-b02d-784f42bc4e7f'),(8218,79,47686,NULL,17996,8,'2021-09-17 07:03:48','2021-09-17 07:03:48','4763ade4-5d72-42a8-aa4e-99ea245fcda7'),(8219,69,47686,NULL,16824,1,'2021-09-17 07:03:49','2021-09-17 07:03:49','9bcfd63b-0e46-4a11-bd5e-22e3e4592e4b'),(8220,85,47686,NULL,17964,1,'2021-09-17 07:03:49','2021-09-17 07:03:49','85fc981c-c345-4edb-8663-55f0e4b878bb'),(8221,85,47686,NULL,17966,2,'2021-09-17 07:03:49','2021-09-17 07:03:49','1622951b-3139-4484-91e2-2cab086adb6c'),(8222,85,47686,NULL,17967,3,'2021-09-17 07:03:49','2021-09-17 07:03:49','01c233b5-6587-4c5f-ab84-78299a230737'),(8223,85,47686,NULL,17969,4,'2021-09-17 07:03:49','2021-09-17 07:03:49','ed61a491-8a86-40cd-aae8-911c6d5aeb8e'),(8224,85,47686,NULL,17970,5,'2021-09-17 07:03:49','2021-09-17 07:03:49','b675a9ac-2374-4fb1-917e-80781af14eea'),(8225,85,47686,NULL,17971,6,'2021-09-17 07:03:49','2021-09-17 07:03:49','99fd9c89-bbd4-46b9-9a83-e4f2d592746d'),(8226,84,47686,NULL,18057,1,'2021-09-17 07:03:49','2021-09-17 07:03:49','31f4c575-6369-48e3-984c-c89591b92340'),(8227,79,47687,NULL,17875,1,'2021-09-17 07:23:17','2021-09-17 07:23:17','c836ef6e-d84b-4421-a43a-9d920b98e5d0'),(8228,79,47687,NULL,17887,2,'2021-09-17 07:23:17','2021-09-17 07:23:17','481a7669-48aa-4285-a006-04defd0a4e89'),(8229,79,47687,NULL,17899,3,'2021-09-17 07:23:17','2021-09-17 07:23:17','e121bcdc-a45d-4af8-8ac5-9c089129ebcb'),(8232,79,47687,NULL,17934,6,'2021-09-17 07:23:17','2021-09-17 07:23:17','3deab153-93b3-44ba-aedf-f270bfa07bcb'),(8233,79,47687,NULL,17941,7,'2021-09-17 07:23:17','2021-09-17 07:23:17','5657a8bc-271b-4887-9abd-b64cae5ae7c1'),(8234,79,47687,NULL,1,8,'2021-09-17 07:23:17','2021-09-17 07:23:17','b2fdb884-62d8-4a28-b5b0-08c49cd46058'),(8235,79,47687,NULL,17954,9,'2021-09-17 07:23:17','2021-09-17 07:23:17','39597c4e-b2a9-4fdf-9d96-5873a1d78eaa'),(8236,79,47687,NULL,17956,10,'2021-09-17 07:23:17','2021-09-17 07:23:17','378dc096-cfdb-48d6-93a8-bc2bbc636784'),(8237,79,47687,NULL,17996,11,'2021-09-17 07:23:17','2021-09-17 07:23:17','7112750c-9143-4fd6-94b5-0dd82299fe2a'),(8238,69,47687,NULL,30441,1,'2021-09-17 07:23:17','2021-09-17 07:23:17','6b9baab3-fc46-4a48-b649-50a6ab7dc435'),(8239,85,47687,NULL,17964,1,'2021-09-17 07:23:17','2021-09-17 07:23:17','f7968f42-f0f3-4766-8d39-395748ba412f'),(8240,85,47687,NULL,17965,2,'2021-09-17 07:23:17','2021-09-17 07:23:17','1f163c3e-cfb9-459d-a7b8-c092c080285d'),(8241,85,47687,NULL,17966,3,'2021-09-17 07:23:17','2021-09-17 07:23:17','62ff972e-9310-4f9a-9e99-fb7f9567c7f4'),(8242,85,47687,NULL,17968,4,'2021-09-17 07:23:17','2021-09-17 07:23:17','f460fbac-a39b-4ecd-941e-41cdb9ad67b9'),(8243,85,47687,NULL,17969,5,'2021-09-17 07:23:17','2021-09-17 07:23:17','6039ebc0-fb98-424c-8cca-d97452416526'),(8244,85,47687,NULL,17971,6,'2021-09-17 07:23:17','2021-09-17 07:23:17','d534d5bb-c4be-42fa-8d5d-65987f8e8cd6'),(8245,84,47687,NULL,38157,1,'2021-09-17 07:23:17','2021-09-17 07:23:17','b614eb9a-a89d-4b76-8187-4ab4d9fd985c'),(8257,79,47689,NULL,17875,1,'2021-09-17 07:24:50','2021-09-17 07:24:50','1253d4b9-f3e0-46b5-bfcb-93a9be4aedbb'),(8259,79,47689,NULL,17934,3,'2021-09-17 07:24:50','2021-09-17 07:24:50','4c085466-51b2-4574-b225-ec02cafb2bd7'),(8260,79,47689,NULL,17881,4,'2021-09-17 07:24:50','2021-09-17 07:24:50','4f3cb346-ed08-4404-90a6-15e840afbc46'),(8261,79,47689,NULL,17956,5,'2021-09-17 07:24:50','2021-09-17 07:24:50','94d39199-04dd-4e9a-894d-fda37d18f320'),(8262,69,47689,NULL,22011,1,'2021-09-17 07:24:50','2021-09-17 07:24:50','c496c366-34a3-4e75-bd90-2ead57ea5436'),(8263,85,47689,NULL,17964,1,'2021-09-17 07:24:50','2021-09-17 07:24:50','c1c1a9d6-4c86-4752-b235-e445c32b7540'),(8264,85,47689,NULL,17966,2,'2021-09-17 07:24:50','2021-09-17 07:24:50','23352075-6d0f-4c47-848f-f58dfbfbcb02'),(8265,85,47689,NULL,17967,3,'2021-09-17 07:24:50','2021-09-17 07:24:50','54896ec9-e178-4e92-8a2c-71fb736a4a80'),(8266,84,47689,NULL,18057,1,'2021-09-17 07:24:50','2021-09-17 07:24:50','97af6f4e-d318-49f7-83ab-9f76190cae0e'),(8267,84,47689,NULL,38160,2,'2021-09-17 07:24:50','2021-09-17 07:24:50','982f025f-e1c3-46e8-b176-45fc5b1b10f1'),(8277,69,47691,NULL,19052,1,'2021-09-17 07:36:08','2021-09-17 07:36:08','e64b162e-a8ff-410b-89e4-b2298b6a4ddf'),(8278,85,47691,NULL,17964,1,'2021-09-17 07:36:08','2021-09-17 07:36:08','73c8c834-203b-4e4c-a6ea-386465b60b75'),(8279,85,47691,NULL,17965,2,'2021-09-17 07:36:08','2021-09-17 07:36:08','46a1f120-7028-42d2-960b-173f1f49079d'),(8280,85,47691,NULL,17966,3,'2021-09-17 07:36:08','2021-09-17 07:36:08','24ecd71b-4b8d-4124-9861-c36f17caea9a'),(8281,85,47691,NULL,17967,4,'2021-09-17 07:36:08','2021-09-17 07:36:08','a988baa6-5684-46de-8238-b7a8a09b59e1'),(8282,85,47691,NULL,17968,5,'2021-09-17 07:36:08','2021-09-17 07:36:08','a2313377-4a31-4130-9233-1d6da9ade765'),(8283,85,47691,NULL,17969,6,'2021-09-17 07:36:08','2021-09-17 07:36:08','22696dc4-4381-4d47-bc6d-275868a3032c'),(8284,84,47691,NULL,18057,1,'2021-09-17 07:36:08','2021-09-17 07:36:08','20843c50-3b03-4110-9b7a-98b61980f5dc'),(8285,84,47691,NULL,38161,2,'2021-09-17 07:36:08','2021-09-17 07:36:08','12b5269c-ec7b-476a-bbba-d146924450bd'),(8286,79,47692,NULL,17875,1,'2021-09-20 02:12:29','2021-09-20 02:12:29','21adc7aa-315f-452e-bc3a-96dc7a6c9b5d'),(8287,79,47692,NULL,17954,2,'2021-09-20 02:12:29','2021-09-20 02:12:29','5c96c885-4422-40e2-bba6-d80361e4aeb7'),(8288,79,47692,NULL,17956,3,'2021-09-20 02:12:29','2021-09-20 02:12:29','1f86488b-39a4-4d69-bb9c-b45a93d5abc7'),(8289,85,47692,NULL,17964,1,'2021-09-20 02:12:29','2021-09-20 02:12:29','37f793ff-7b3c-4f7e-b9ee-6399a7b0bdd1'),(8290,85,47692,NULL,17965,2,'2021-09-20 02:12:29','2021-09-20 02:12:29','7c011ede-962c-42fb-a44f-eb0a0fb20ce4'),(8291,85,47692,NULL,17966,3,'2021-09-20 02:12:29','2021-09-20 02:12:29','ef73fa05-43ad-47e8-951c-735d004ebe99'),(8292,85,47692,NULL,17967,4,'2021-09-20 02:12:29','2021-09-20 02:12:29','33d665d2-23db-426c-abdf-41e4ce8470e9'),(8293,85,47692,NULL,17968,5,'2021-09-20 02:12:29','2021-09-20 02:12:29','865b7442-e8a4-43fb-874a-3581782cc1ab'),(8294,85,47692,NULL,17970,6,'2021-09-20 02:12:29','2021-09-20 02:12:29','565e67b8-1492-4207-b1d3-361e3633bddf'),(8295,85,47692,NULL,17971,7,'2021-09-20 02:12:29','2021-09-20 02:12:29','d4fc8e0d-8c56-48d0-826f-83bce1d7b03f'),(8296,84,47692,NULL,18057,1,'2021-09-20 02:12:29','2021-09-20 02:12:29','9e263084-9b11-4627-a242-0fb20f41e8ae'),(8316,79,47695,NULL,17875,1,'2021-09-21 01:01:47','2021-09-21 01:01:47','aeb43e51-2e67-4280-9eda-c667dc69c469'),(8317,79,47695,NULL,17887,2,'2021-09-21 01:01:47','2021-09-21 01:01:47','62aef510-5493-445f-bbe7-456a02ce6b4e'),(8318,79,47695,NULL,17899,3,'2021-09-21 01:01:47','2021-09-21 01:01:47','06b652fa-f10f-4ba2-b7de-6ae9ccbf120a'),(8321,79,47695,NULL,17934,6,'2021-09-21 01:01:47','2021-09-21 01:01:47','2e5f03b5-b251-4f7b-b3b0-255bddcb91d1'),(8322,79,47695,NULL,17941,7,'2021-09-21 01:01:47','2021-09-21 01:01:47','ed412256-764d-4c7c-99f4-398d051f1cc0'),(8323,79,47695,NULL,1,8,'2021-09-21 01:01:47','2021-09-21 01:01:47','652a808a-4d95-4373-85c7-ff9c84430f5d'),(8324,79,47695,NULL,17954,9,'2021-09-21 01:01:47','2021-09-21 01:01:47','36b71cbf-4714-4067-84dd-00805f4ed255'),(8325,79,47695,NULL,17956,10,'2021-09-21 01:01:47','2021-09-21 01:01:47','246885b8-c922-4707-8b91-a9a98b4afbdf'),(8326,79,47695,NULL,17996,11,'2021-09-21 01:01:47','2021-09-21 01:01:47','56907be7-ccab-4064-978e-c0aa87535d8c'),(8327,69,47695,NULL,30441,1,'2021-09-21 01:01:47','2021-09-21 01:01:47','a85e1889-b111-46ee-be6a-4f914cc2afc5'),(8328,85,47695,NULL,17964,1,'2021-09-21 01:01:47','2021-09-21 01:01:47','7b9bb234-ecca-4e3e-8c04-5fdae4d9abbc'),(8329,85,47695,NULL,17965,2,'2021-09-21 01:01:47','2021-09-21 01:01:47','a447a56b-8cc4-4732-8a48-d7e5f90e708f'),(8330,85,47695,NULL,17966,3,'2021-09-21 01:01:47','2021-09-21 01:01:47','784878dc-c06d-4545-a060-a9383be7f535'),(8331,85,47695,NULL,17968,4,'2021-09-21 01:01:47','2021-09-21 01:01:47','13618e95-6299-48d1-8c63-eba963930b13'),(8332,85,47695,NULL,17969,5,'2021-09-21 01:01:47','2021-09-21 01:01:47','9baf63b1-ba9c-4219-9062-e9b39ee0e24e'),(8333,85,47695,NULL,17971,6,'2021-09-21 01:01:47','2021-09-21 01:01:47','3f9e7c88-640a-41a2-8c44-da3abe43821b'),(8334,84,47695,NULL,38157,1,'2021-09-21 01:01:47','2021-09-21 01:01:47','19706ad7-78df-4b56-8aa4-884cbbeca07c'),(8348,79,47707,NULL,17875,1,'2021-09-21 03:03:40','2021-09-21 03:03:40','961ff788-6830-4b02-95dd-d6bcaf9e2983'),(8350,79,47707,NULL,17934,3,'2021-09-21 03:03:40','2021-09-21 03:03:40','29539394-ef11-426d-b461-f80f1b4cce97'),(8351,79,47707,NULL,17881,4,'2021-09-21 03:03:40','2021-09-21 03:03:40','c16feb70-3920-4b0e-8aaf-88dcb034aeb2'),(8352,79,47707,NULL,17954,5,'2021-09-21 03:03:40','2021-09-21 03:03:40','c38039f2-e0ad-482d-b332-35b783d36917'),(8353,79,47707,NULL,17956,6,'2021-09-21 03:03:40','2021-09-21 03:03:40','1e484ac5-79e4-4975-9321-7b74b2f39349'),(8354,69,47707,NULL,22084,1,'2021-09-21 03:03:40','2021-09-21 03:03:40','17ebea0e-0b0f-47b0-904b-47faf858e546'),(8355,85,47707,NULL,17964,1,'2021-09-21 03:03:40','2021-09-21 03:03:40','59682457-da0f-48e0-9b46-7be65d6c0afc'),(8356,85,47707,NULL,17965,2,'2021-09-21 03:03:40','2021-09-21 03:03:40','617c43d4-28cb-4256-b04b-de39b545a86d'),(8357,85,47707,NULL,17969,3,'2021-09-21 03:03:40','2021-09-21 03:03:40','f0e0ac04-1867-4225-8cc2-1c23b9e9187c'),(8358,85,47707,NULL,17970,4,'2021-09-21 03:03:40','2021-09-21 03:03:40','38b941b5-80a5-44ce-b6e4-38fe525bc6f3'),(8359,85,47707,NULL,17971,5,'2021-09-21 03:03:40','2021-09-21 03:03:40','f4c5067d-dc33-429f-88d2-f07f662a77c0'),(8360,84,47707,NULL,38161,1,'2021-09-21 03:03:40','2021-09-21 03:03:40','768d0d76-bb68-4bca-8d31-6dc67b545e1c'),(8374,79,47713,NULL,17875,1,'2021-09-21 03:07:39','2021-09-21 03:07:39','684c0a21-36ff-42b8-a907-370b48aaee08'),(8376,79,47713,NULL,17934,3,'2021-09-21 03:07:39','2021-09-21 03:07:39','5e7cd7ab-91e6-4e42-aa30-da3c3105aa13'),(8377,79,47713,NULL,17881,4,'2021-09-21 03:07:39','2021-09-21 03:07:39','b33448b8-296a-4ec4-b061-da49141b91e8'),(8378,79,47713,NULL,17954,5,'2021-09-21 03:07:39','2021-09-21 03:07:39','274a7908-3feb-4d0d-a367-010f67ca9802'),(8379,79,47713,NULL,17956,6,'2021-09-21 03:07:39','2021-09-21 03:07:39','28f0c5e5-f752-470f-afe7-74fb208032b6'),(8380,69,47713,NULL,22084,1,'2021-09-21 03:07:39','2021-09-21 03:07:39','8b485d8d-dcf5-4f03-9ad0-31d03a633a24'),(8381,85,47713,NULL,17964,1,'2021-09-21 03:07:39','2021-09-21 03:07:39','fd38a45b-8364-4b83-be5a-55743e67c0c9'),(8382,85,47713,NULL,17965,2,'2021-09-21 03:07:39','2021-09-21 03:07:39','266cc26d-9f1e-4774-9ab8-ee0e7194d8dc'),(8383,85,47713,NULL,17969,3,'2021-09-21 03:07:39','2021-09-21 03:07:39','83a7c00e-3a1d-4a9d-b0d5-eb86ff7e2c36'),(8384,85,47713,NULL,17970,4,'2021-09-21 03:07:39','2021-09-21 03:07:39','d9d24fcf-1e8d-4d67-894c-0cf78c304fc5'),(8385,85,47713,NULL,17971,5,'2021-09-21 03:07:39','2021-09-21 03:07:39','c222cbcd-6ca9-48a1-a248-59d292e448c5'),(8386,84,47713,NULL,38161,1,'2021-09-21 03:07:39','2021-09-21 03:07:39','7f18278a-477f-4636-8ccb-d2d55230168f'),(8400,79,47716,NULL,17875,1,'2021-09-21 03:11:03','2021-09-21 03:11:03','f098c00b-98b3-434f-928d-7b013ac09d3b'),(8402,79,47716,NULL,17934,3,'2021-09-21 03:11:03','2021-09-21 03:11:03','fadf822d-ea5d-4760-9a4c-4bcad5db1478'),(8403,79,47716,NULL,17881,4,'2021-09-21 03:11:03','2021-09-21 03:11:03','50be7fe9-eae4-48b1-9821-b2758be93ead'),(8404,79,47716,NULL,17954,5,'2021-09-21 03:11:03','2021-09-21 03:11:03','f75bbf3b-d72d-44d5-972e-9deece81b5f2'),(8405,79,47716,NULL,17956,6,'2021-09-21 03:11:03','2021-09-21 03:11:03','17d20e7d-8c38-45d6-a294-40791a942d1e'),(8406,69,47716,NULL,22084,1,'2021-09-21 03:11:03','2021-09-21 03:11:03','cd3e8ec7-7c94-4bc9-8522-a97d3c11497b'),(8407,85,47716,NULL,17964,1,'2021-09-21 03:11:03','2021-09-21 03:11:03','863a448f-4231-4e55-857f-64b26d0a46aa'),(8408,85,47716,NULL,17965,2,'2021-09-21 03:11:03','2021-09-21 03:11:03','713bece7-9f84-420b-8508-106893027b79'),(8409,85,47716,NULL,17969,3,'2021-09-21 03:11:03','2021-09-21 03:11:03','40ec3e93-3b13-41ee-b3d5-dc301c25e39c'),(8410,85,47716,NULL,17970,4,'2021-09-21 03:11:03','2021-09-21 03:11:03','18f68d6f-83ec-48bd-ad1d-79d17e565d39'),(8411,85,47716,NULL,17971,5,'2021-09-21 03:11:03','2021-09-21 03:11:03','9a573fdc-a8a0-467d-96e2-a5a7cdd74b4c'),(8412,84,47716,NULL,38161,1,'2021-09-21 03:11:03','2021-09-21 03:11:03','a99b4dbd-5a01-4de3-8513-2cd29280d06f'),(8426,79,47718,NULL,17875,1,'2021-09-21 03:13:10','2021-09-21 03:13:10','beebdf0e-f49f-4167-b16d-2ce7722ed05d'),(8429,79,47718,NULL,17934,4,'2021-09-21 03:13:10','2021-09-21 03:13:10','5c6f6f6f-e16f-4335-9cec-e1e5acb2eb31'),(8430,79,47718,NULL,17954,5,'2021-09-21 03:13:10','2021-09-21 03:13:10','11033650-00a0-4378-ab87-169434688ab7'),(8431,79,47718,NULL,17956,6,'2021-09-21 03:13:10','2021-09-21 03:13:10','9afa13b6-be09-451e-b70e-c3241340e320'),(8432,69,47718,NULL,22160,1,'2021-09-21 03:13:10','2021-09-21 03:13:10','c231af84-51e0-4b13-a4cd-f858411db260'),(8433,85,47718,NULL,17964,1,'2021-09-21 03:13:10','2021-09-21 03:13:10','3fc8d086-578f-4a85-8999-e663206c195e'),(8434,85,47718,NULL,17966,2,'2021-09-21 03:13:10','2021-09-21 03:13:10','0d0c95bf-51f7-49c4-948b-468c5ff27065'),(8435,85,47718,NULL,17967,3,'2021-09-21 03:13:10','2021-09-21 03:13:10','0da568ee-f316-42b8-be01-b35eb7b90a9c'),(8436,85,47718,NULL,17969,4,'2021-09-21 03:13:10','2021-09-21 03:13:10','6a32e615-e274-4b4e-a5dc-cde8c37ae036'),(8437,85,47718,NULL,17970,5,'2021-09-21 03:13:10','2021-09-21 03:13:10','7ebc8037-565b-47ab-a3bc-4e5488b58002'),(8438,85,47718,NULL,17971,6,'2021-09-21 03:13:10','2021-09-21 03:13:10','1aa37998-4a59-4800-bb42-24bf2757e44f'),(8446,69,47721,NULL,27826,1,'2021-09-21 03:20:52','2021-09-21 03:20:52','184cf669-8a8a-4fd7-9c84-bf5017367597'),(8447,85,47721,NULL,17964,1,'2021-09-21 03:20:52','2021-09-21 03:20:52','3bdafbfa-bcc1-470b-9172-0f86d9f0915c'),(8448,85,47721,NULL,17966,2,'2021-09-21 03:20:52','2021-09-21 03:20:52','a3c57f63-7fc6-4de9-8d6a-6a1f5a7fb491'),(8449,85,47721,NULL,17969,3,'2021-09-21 03:20:52','2021-09-21 03:20:52','1f1bcbeb-6aa2-497d-879f-aca0ef9fbdf7'),(8450,85,47721,NULL,17970,4,'2021-09-21 03:20:52','2021-09-21 03:20:52','7539346e-9533-41f4-bfde-271f5c326b5c'),(8451,85,47721,NULL,17971,5,'2021-09-21 03:20:52','2021-09-21 03:20:52','dc21c7e6-0186-43ca-9ecf-e7a4ab7b2383'),(8452,84,47721,NULL,38159,1,'2021-09-21 03:20:52','2021-09-21 03:20:52','89afd31b-b4b5-4d71-9498-1b376d10f0fa'),(8462,69,47731,NULL,19052,1,'2021-09-21 03:51:47','2021-09-21 03:51:47','6adfcd4e-ae41-4245-ad76-17a46979f853'),(8463,85,47731,NULL,17964,1,'2021-09-21 03:51:47','2021-09-21 03:51:47','099a72f9-ebcc-4493-831b-64177c381c9d'),(8464,85,47731,NULL,17965,2,'2021-09-21 03:51:47','2021-09-21 03:51:47','cd1b575f-5b64-4958-9dcc-948105406122'),(8465,85,47731,NULL,17966,3,'2021-09-21 03:51:47','2021-09-21 03:51:47','9ae01eac-ed23-4098-8ae9-bb64eeda099e'),(8466,85,47731,NULL,17967,4,'2021-09-21 03:51:47','2021-09-21 03:51:47','dd6f3545-61d7-4df2-ba34-44a6e0fdd5e6'),(8467,85,47731,NULL,17968,5,'2021-09-21 03:51:47','2021-09-21 03:51:47','749d82fa-8d65-4134-89dc-427adcc3c782'),(8468,85,47731,NULL,17969,6,'2021-09-21 03:51:47','2021-09-21 03:51:47','eb02e686-26da-4651-8c3a-455b11bf7762'),(8469,84,47731,NULL,18057,1,'2021-09-21 03:51:47','2021-09-21 03:51:47','da1d3cb3-2db4-42ba-adef-135d56f786ac'),(8470,84,47731,NULL,38161,2,'2021-09-21 03:51:47','2021-09-21 03:51:47','23bee9db-6dcb-4dcc-8572-72e523eb9e91'),(8480,69,47735,NULL,19052,1,'2021-09-21 03:56:00','2021-09-21 03:56:00','e9f4042a-bb72-4c48-be07-a829aa050d24'),(8481,85,47735,NULL,17964,1,'2021-09-21 03:56:00','2021-09-21 03:56:00','115b6d34-7f5d-4e18-b3f2-19f4f3b0b1f2'),(8482,85,47735,NULL,17965,2,'2021-09-21 03:56:00','2021-09-21 03:56:00','c22229ca-e236-450f-bd57-3233512ca617'),(8483,85,47735,NULL,17966,3,'2021-09-21 03:56:00','2021-09-21 03:56:00','8ac866b5-7e84-47cf-9657-618c74ec0f68'),(8484,85,47735,NULL,17967,4,'2021-09-21 03:56:00','2021-09-21 03:56:00','4d9f5652-5038-4300-a968-da55c6633457'),(8485,85,47735,NULL,17968,5,'2021-09-21 03:56:00','2021-09-21 03:56:00','97f41376-862c-41b1-a7d0-3a0412e5c69e'),(8486,85,47735,NULL,17969,6,'2021-09-21 03:56:00','2021-09-21 03:56:00','f2bb5c6c-9452-4539-b7e7-61aec646c8cc'),(8487,84,47735,NULL,18057,1,'2021-09-21 03:56:00','2021-09-21 03:56:00','804dafd8-98eb-4135-92e8-c7def2337b0c'),(8488,84,47735,NULL,38161,2,'2021-09-21 03:56:00','2021-09-21 03:56:00','f6f56331-990c-4418-ab01-07ac2a6be245'),(8505,79,47743,NULL,17875,1,'2021-09-21 04:50:15','2021-09-21 04:50:15','b78fc56f-ffd2-465e-a211-8729d7fa8e49'),(8508,79,47743,NULL,17934,4,'2021-09-21 04:50:15','2021-09-21 04:50:15','d3379cd2-282d-4d02-bced-d6689a94ccf6'),(8509,79,47743,NULL,30433,5,'2021-09-21 04:50:15','2021-09-21 04:50:15','7497a3cf-d051-4c56-bd10-8fdbf5a2bab6'),(8510,79,47743,NULL,1,6,'2021-09-21 04:50:15','2021-09-21 04:50:15','d50d7f2f-7a2f-4964-a6c6-7c49096960e3'),(8511,79,47743,NULL,17954,7,'2021-09-21 04:50:15','2021-09-21 04:50:15','621317cd-375e-4748-b4bf-745b9a5220e3'),(8512,79,47743,NULL,17956,8,'2021-09-21 04:50:15','2021-09-21 04:50:15','d1521de8-c8ea-47d5-8686-8b2c8953b43e'),(8513,69,47743,NULL,38123,1,'2021-09-21 04:50:15','2021-09-21 04:50:15','2abbcf29-8ecc-491c-a8db-abaf1e5df703'),(8514,85,47743,NULL,17964,1,'2021-09-21 04:50:15','2021-09-21 04:50:15','1f642c73-7d52-49fe-b800-999fdb88828d'),(8515,85,47743,NULL,17965,2,'2021-09-21 04:50:15','2021-09-21 04:50:15','c0690bee-22a7-430f-b04c-66f139a92a2f'),(8516,85,47743,NULL,17966,3,'2021-09-21 04:50:15','2021-09-21 04:50:15','ca6d9aa2-cd09-4432-ab4e-5efc8127c590'),(8517,85,47743,NULL,17968,4,'2021-09-21 04:50:15','2021-09-21 04:50:15','ba5894c8-ecd1-4bc1-bb4e-d21e17b1720d'),(8518,85,47743,NULL,17970,5,'2021-09-21 04:50:15','2021-09-21 04:50:15','c3263890-c55d-4093-9a31-c5da4f82d89c'),(8519,85,47743,NULL,17971,6,'2021-09-21 04:50:15','2021-09-21 04:50:15','b39df7b4-0dc6-4cb7-a5f5-051e26e5c6b4'),(8520,84,47743,NULL,38157,1,'2021-09-21 04:50:15','2021-09-21 04:50:15','74b1dbce-0fe8-461b-9e19-4493bb6e34ef'),(8533,79,47747,NULL,17875,1,'2021-09-21 05:10:16','2021-09-21 05:10:16','7d1229fc-f947-4074-a171-d5efea7ee405'),(8535,79,47747,NULL,17881,3,'2021-09-21 05:10:16','2021-09-21 05:10:16','89c021f9-f2c5-488e-a427-d14215a4bf58'),(8536,79,47747,NULL,1,4,'2021-09-21 05:10:16','2021-09-21 05:10:16','31af42cf-a22d-4f48-9b69-b072b5c8f67d'),(8537,79,47747,NULL,17954,5,'2021-09-21 05:10:16','2021-09-21 05:10:16','e7c9fb3a-5ab6-4d2a-ab64-141338ce931b'),(8538,79,47747,NULL,17956,6,'2021-09-21 05:10:16','2021-09-21 05:10:16','a4c5df21-a741-4c0c-8eba-02e8049cc307'),(8539,85,47747,NULL,17964,1,'2021-09-21 05:10:16','2021-09-21 05:10:16','7e67ea39-9338-4730-8149-7f824f30c9d2'),(8540,85,47747,NULL,17968,2,'2021-09-21 05:10:16','2021-09-21 05:10:16','5fd4340a-5bec-461a-b53c-898f5ec00a9d'),(8541,85,47747,NULL,17970,3,'2021-09-21 05:10:16','2021-09-21 05:10:16','7cbb3fcf-acbf-417a-aa72-529376dc66b7'),(8542,85,47747,NULL,17971,4,'2021-09-21 05:10:16','2021-09-21 05:10:16','5e4adda7-7a08-4ee9-a66d-d8bbb530d423'),(8543,84,47747,NULL,18057,1,'2021-09-21 05:10:16','2021-09-21 05:10:16','b2c31283-bc51-498d-8d1f-788d4b134311'),(8544,84,47747,NULL,38160,2,'2021-09-21 05:10:16','2021-09-21 05:10:16','7cb63bea-8e94-4d85-a618-3e6fe11d8452'),(8557,79,47753,NULL,17875,1,'2021-09-21 05:42:17','2021-09-21 05:42:17','851d586d-85bb-42b4-837b-a31ede04e27d'),(8558,79,47753,NULL,17934,2,'2021-09-21 05:42:17','2021-09-21 05:42:17','4777407b-370a-4c69-83eb-959dca9c4b1e'),(8559,79,47753,NULL,17954,3,'2021-09-21 05:42:17','2021-09-21 05:42:17','0149bcb6-98cd-478c-9150-40861abffb68'),(8560,79,47753,NULL,17956,4,'2021-09-21 05:42:17','2021-09-21 05:42:17','eb2bc9cc-5713-4398-aec4-cdc981c99d45'),(8561,85,47753,NULL,17964,1,'2021-09-21 05:42:17','2021-09-21 05:42:17','e50e1bbf-e24d-4ff7-b31b-29e571a13733'),(8562,85,47753,NULL,17966,2,'2021-09-21 05:42:17','2021-09-21 05:42:17','bd466154-6014-429f-a179-cf94abbc16f5'),(8563,85,47753,NULL,17967,3,'2021-09-21 05:42:17','2021-09-21 05:42:17','3fce08ea-a60b-401c-85f0-15cb9c77dc40'),(8564,85,47753,NULL,17968,4,'2021-09-21 05:42:17','2021-09-21 05:42:17','a1b045f2-3217-4a1d-b0dd-940f371db7d3'),(8565,85,47753,NULL,17970,5,'2021-09-21 05:42:17','2021-09-21 05:42:17','9c46ae97-9512-4200-b088-f60fd155ff44'),(8566,85,47753,NULL,17971,6,'2021-09-21 05:42:17','2021-09-21 05:42:17','b7530ac0-15aa-437e-8ad3-764fe547cfe8'),(8567,84,47753,NULL,18057,1,'2021-09-21 05:42:17','2021-09-21 05:42:17','085854d1-c624-45e1-90e8-03e1b38f8b98'),(8568,84,47753,NULL,38160,2,'2021-09-21 05:42:17','2021-09-21 05:42:17','6b13a896-bdb8-4374-a6d5-5c14cd1054c0'),(8579,79,47760,NULL,17875,1,'2021-09-21 06:01:18','2021-09-21 06:01:18','5f0d9410-a292-49cc-98a8-f4b9fa494aaa'),(8580,79,47760,NULL,17881,2,'2021-09-21 06:01:18','2021-09-21 06:01:18','75e172ad-7b96-4cd9-bbad-572b78845ca4'),(8581,79,47760,NULL,1,3,'2021-09-21 06:01:18','2021-09-21 06:01:18','97637463-6f3f-4fd3-8977-c7d9d62a81f1'),(8582,79,47760,NULL,17954,4,'2021-09-21 06:01:18','2021-09-21 06:01:18','120ad69b-f67f-4316-b46a-fb368628ffa7'),(8583,79,47760,NULL,17956,5,'2021-09-21 06:01:18','2021-09-21 06:01:18','0d8e7656-d7eb-4b87-bd4a-14311b0747dd'),(8584,85,47760,NULL,17964,1,'2021-09-21 06:01:18','2021-09-21 06:01:18','c740fcee-6c15-4d05-ab0f-1817413e27ed'),(8585,85,47760,NULL,17965,2,'2021-09-21 06:01:18','2021-09-21 06:01:18','7bbd1fd7-418a-4ff7-adea-066c9ad142a6'),(8586,85,47760,NULL,17970,3,'2021-09-21 06:01:18','2021-09-21 06:01:18','60affec8-321a-4553-a858-e88729145e24'),(8587,85,47760,NULL,17971,4,'2021-09-21 06:01:18','2021-09-21 06:01:18','3910330f-0dd0-4697-8c27-5b7b66e77608'),(8588,84,47760,NULL,38158,1,'2021-09-21 06:01:18','2021-09-21 06:01:18','7f48da7c-1446-4cfa-9d3c-5698bc08ceff'),(8599,79,47765,NULL,17875,1,'2021-09-21 06:05:29','2021-09-21 06:05:29','2cb4b6c5-2ed5-4d14-a89a-e74b2d1c18dd'),(8600,79,47765,NULL,17881,2,'2021-09-21 06:05:29','2021-09-21 06:05:29','52dbf70d-aa13-4c48-8b42-3dc6c0e51b46'),(8601,79,47765,NULL,1,3,'2021-09-21 06:05:29','2021-09-21 06:05:29','d91721c0-2f7f-4dd9-92f2-7f5a71aa0981'),(8602,79,47765,NULL,17954,4,'2021-09-21 06:05:29','2021-09-21 06:05:29','d00625f7-969f-4ddb-ab95-5212f1e41132'),(8603,79,47765,NULL,17956,5,'2021-09-21 06:05:29','2021-09-21 06:05:29','4d587244-72ad-4286-a164-cc56879624fc'),(8604,85,47765,NULL,17964,1,'2021-09-21 06:05:29','2021-09-21 06:05:29','0557160c-9410-4ae1-be5d-5d9035af7b65'),(8605,85,47765,NULL,17965,2,'2021-09-21 06:05:29','2021-09-21 06:05:29','beee80ac-d004-4cbd-b468-7d060db45de1'),(8606,85,47765,NULL,17970,3,'2021-09-21 06:05:29','2021-09-21 06:05:29','bb9796b1-3f46-479d-bf87-f6cfcff100e4'),(8607,85,47765,NULL,17971,4,'2021-09-21 06:05:29','2021-09-21 06:05:29','d6830aa2-e48c-4811-856b-5b0b6c8142c4'),(8608,84,47765,NULL,38158,1,'2021-09-21 06:05:29','2021-09-21 06:05:29','db291fda-888e-4c54-84f3-2ecf9e3bf645'),(8614,85,47769,NULL,17964,1,'2021-09-21 06:36:27','2021-09-21 06:36:27','51a7f1a0-bcf3-483b-9660-ac79ebeff0f7'),(8615,85,47769,NULL,17966,2,'2021-09-21 06:36:27','2021-09-21 06:36:27','a58f0c52-02aa-48b8-949c-6537a3956989'),(8616,85,47769,NULL,17969,3,'2021-09-21 06:36:27','2021-09-21 06:36:27','25ea823e-c7e4-4674-8f39-7ae307ffe4aa'),(8617,85,47769,NULL,17971,4,'2021-09-21 06:36:27','2021-09-21 06:36:27','2cacdc17-d9ef-480b-95b0-75a5641a3460'),(8618,84,47769,NULL,18057,1,'2021-09-21 06:36:27','2021-09-21 06:36:27','a34ccd63-2b7d-41d0-a955-4e854526070f'),(8628,79,47771,NULL,17875,1,'2021-09-21 06:39:30','2021-09-21 06:39:30','163edb73-b9d7-47b4-a4cb-3bd8334d0acf'),(8629,79,47771,NULL,17954,2,'2021-09-21 06:39:30','2021-09-21 06:39:30','3a738057-a223-4afb-b9fe-70745de8b4e3'),(8630,85,47771,NULL,17964,1,'2021-09-21 06:39:30','2021-09-21 06:39:30','9702e9a2-5e92-4b84-a65c-54de980bc0ca'),(8631,85,47771,NULL,17965,2,'2021-09-21 06:39:30','2021-09-21 06:39:30','e2b639f2-77de-46db-b25f-ef214029236f'),(8632,85,47771,NULL,17966,3,'2021-09-21 06:39:30','2021-09-21 06:39:30','169db59c-1179-4f68-bb67-bd7828d6ba63'),(8633,85,47771,NULL,17969,4,'2021-09-21 06:39:30','2021-09-21 06:39:30','e36098a3-8729-4749-a00a-b4aef9b4127b'),(8634,85,47771,NULL,17970,5,'2021-09-21 06:39:30','2021-09-21 06:39:30','5aab6c08-9466-4391-ae26-fb4ff2422fac'),(8635,85,47771,NULL,17971,6,'2021-09-21 06:39:30','2021-09-21 06:39:30','889c58bd-7a15-466e-8dd8-31c27ff98eb1'),(8636,84,47771,NULL,38158,1,'2021-09-21 06:39:30','2021-09-21 06:39:30','c93ac1db-d382-4469-b1f3-baa5a5bbb95c'),(8646,79,47774,NULL,17875,1,'2021-09-21 07:06:57','2021-09-21 07:06:57','4fd677b5-7b54-40e0-becd-e0ce159f4fcf'),(8647,79,47774,NULL,17954,2,'2021-09-21 07:06:57','2021-09-21 07:06:57','0af16791-75a4-48d2-90d2-603e1711dc7f'),(8648,85,47774,NULL,17964,1,'2021-09-21 07:06:57','2021-09-21 07:06:57','22e3d460-b573-46a8-bb56-58ed7407b41f'),(8649,85,47774,NULL,17965,2,'2021-09-21 07:06:57','2021-09-21 07:06:57','bbe71bdb-cc41-42bc-872a-e5a01b192706'),(8650,85,47774,NULL,17966,3,'2021-09-21 07:06:57','2021-09-21 07:06:57','f169129b-0a1c-4ba9-b81f-28951226b8fb'),(8651,85,47774,NULL,17969,4,'2021-09-21 07:06:57','2021-09-21 07:06:57','e7c2bd15-632e-4db9-a441-0424e8e76b1b'),(8652,85,47774,NULL,17970,5,'2021-09-21 07:06:57','2021-09-21 07:06:57','ead72556-f7a8-4050-89cd-05dd826bbe97'),(8653,85,47774,NULL,17971,6,'2021-09-21 07:06:57','2021-09-21 07:06:57','16f8eac8-83c1-45b0-8ef8-101760e20814'),(8654,84,47774,NULL,38158,1,'2021-09-21 07:06:57','2021-09-21 07:06:57','58b44eb4-5234-433b-bfb4-0c22b5b20256'),(8655,79,47775,NULL,17875,1,'2021-09-21 07:07:48','2021-09-21 07:07:48','4d31ff79-5ca6-4cd5-a998-21d223492873'),(8656,79,47775,NULL,17954,2,'2021-09-21 07:07:48','2021-09-21 07:07:48','f1cf3a40-13f2-480b-a550-75180f09b836'),(8657,85,47775,NULL,17964,1,'2021-09-21 07:07:48','2021-09-21 07:07:48','a8f05f6b-80bc-4ee0-99fa-b9347866484d'),(8658,85,47775,NULL,17965,2,'2021-09-21 07:07:48','2021-09-21 07:07:48','7eaad1e3-e02a-44ff-87f0-fa03c7581a35'),(8659,85,47775,NULL,17966,3,'2021-09-21 07:07:48','2021-09-21 07:07:48','df42a1a5-53c2-4f3a-8560-0355472a4130'),(8660,85,47775,NULL,17969,4,'2021-09-21 07:07:48','2021-09-21 07:07:48','4e9667c5-e128-4c34-b2ad-bc029458a71d'),(8661,85,47775,NULL,17970,5,'2021-09-21 07:07:48','2021-09-21 07:07:48','9eff681a-307e-404d-912b-03e2d11dc6ea'),(8662,85,47775,NULL,17971,6,'2021-09-21 07:07:48','2021-09-21 07:07:48','fdf7d9fc-d3a9-48d2-b378-3c854a35acb3'),(8663,84,47775,NULL,38158,1,'2021-09-21 07:07:48','2021-09-21 07:07:48','00adf44a-392e-4810-a11b-905a8be77ead'),(8664,79,47776,NULL,17875,1,'2021-09-21 07:28:53','2021-09-21 07:28:53','afa6169a-5d7e-4b87-9c8f-944b6539bb44'),(8666,79,47776,NULL,17881,3,'2021-09-21 07:28:53','2021-09-21 07:28:53','7444c2f8-fc20-4fc1-a56c-2a4fc5dd8bd1'),(8667,79,47776,NULL,1,4,'2021-09-21 07:28:53','2021-09-21 07:28:53','63d1b52b-e15d-4762-81c1-b0fa88165d9f'),(8668,79,47776,NULL,17954,5,'2021-09-21 07:28:53','2021-09-21 07:28:53','01899949-8ba7-4dd2-a53c-ec3161df92f2'),(8669,79,47776,NULL,17956,6,'2021-09-21 07:28:53','2021-09-21 07:28:53','912786e0-71d2-4783-b4b2-249af253d968'),(8670,85,47776,NULL,17964,1,'2021-09-21 07:28:53','2021-09-21 07:28:53','8dc566aa-650b-40ac-9ff5-41a8ea962fbe'),(8671,85,47776,NULL,17968,2,'2021-09-21 07:28:53','2021-09-21 07:28:53','8be94057-fc29-4565-887f-0bcda9bfe818'),(8672,85,47776,NULL,17970,3,'2021-09-21 07:28:53','2021-09-21 07:28:53','c585e8a5-a45a-45bc-984a-b08cee374a54'),(8673,85,47776,NULL,17971,4,'2021-09-21 07:28:53','2021-09-21 07:28:53','5b8ea1f0-0830-4e23-bb7c-196a0fa8b287'),(8674,84,47776,NULL,18057,1,'2021-09-21 07:28:53','2021-09-21 07:28:53','1e3d6d02-20c1-48d5-adc7-9164687c3200'),(8675,84,47776,NULL,38160,2,'2021-09-21 07:28:53','2021-09-21 07:28:53','c45dc1ae-e1c3-426c-a9f3-02dc4805a609'),(8676,69,47777,NULL,17446,1,'2021-09-22 00:02:04','2021-09-22 00:02:04','202be66f-d1f5-43fc-a0d1-47178b4dd22b'),(8677,69,47778,NULL,17437,1,'2021-09-22 00:02:05','2021-09-22 00:02:05','09f41d40-77d4-4c1a-8e50-fe7622f40dd8'),(8678,69,47779,NULL,17436,1,'2021-09-22 00:02:05','2021-09-22 00:02:05','8081685c-ca76-417a-b0c8-52633881a665'),(8679,69,47780,NULL,17433,1,'2021-09-22 00:02:05','2021-09-22 00:02:05','7cf3feb0-e6b3-43a9-b2b6-eaeee2d889ad'),(8680,69,47781,NULL,17431,1,'2021-09-22 00:02:05','2021-09-22 00:02:05','aeeb952b-f14c-41d6-9fe2-f64ecc783767'),(8681,184,47782,NULL,17168,1,'2021-09-22 00:02:06','2021-09-22 00:02:06','47dfa97c-7711-4990-a0fe-e6c564db779e'),(8682,69,47782,NULL,17168,1,'2021-09-22 00:02:06','2021-09-22 00:02:06','499c6f68-ace9-4aee-8b4d-58b5232855c6'),(8683,85,47782,NULL,17964,1,'2021-09-22 00:02:06','2021-09-22 00:02:06','6a529a4f-203a-4786-98c9-c5a2092a734a'),(8684,85,47782,NULL,17970,2,'2021-09-22 00:02:06','2021-09-22 00:02:06','92430d9e-6e58-4f01-97db-40d53688d651'),(8685,85,47782,NULL,17971,3,'2021-09-22 00:02:06','2021-09-22 00:02:06','c832646f-f352-45d5-a240-9f787ca6f148'),(8686,184,47783,NULL,17168,1,'2021-09-22 00:02:45','2021-09-22 00:02:45','f1ee038a-0ada-4e6d-b95e-84174ea046c3'),(8687,69,47783,NULL,17168,1,'2021-09-22 00:02:45','2021-09-22 00:02:45','dca4702e-a2da-4b41-85b7-ba8fcf5c764d'),(8688,85,47783,NULL,17964,1,'2021-09-22 00:02:45','2021-09-22 00:02:45','a851e359-0416-4d18-805b-9ffe978dc351'),(8689,85,47783,NULL,17970,2,'2021-09-22 00:02:45','2021-09-22 00:02:45','a6293325-482b-477a-bba3-6f38af88f80d'),(8690,85,47783,NULL,17971,3,'2021-09-22 00:02:45','2021-09-22 00:02:45','6a9c1f5c-8d43-4e6f-b66c-59b72c8905c8'),(8697,184,47785,NULL,28041,1,'2021-09-22 00:10:23','2021-09-22 00:10:23','7ad09c22-27a6-4b83-ae94-a43f03733a47'),(8698,69,47785,NULL,28041,1,'2021-09-22 00:10:23','2021-09-22 00:10:23','79b0904b-7d64-41d7-bfbb-9df91c78119b'),(8699,85,47785,NULL,17964,1,'2021-09-22 00:10:23','2021-09-22 00:10:23','efb477ce-433e-47f6-9a35-7e5e625253bd'),(8700,85,47785,NULL,17966,2,'2021-09-22 00:10:23','2021-09-22 00:10:23','c16bd796-ec7a-457d-8fab-5bac93112af0'),(8701,85,47785,NULL,17968,3,'2021-09-22 00:10:23','2021-09-22 00:10:23','117a88bb-a4a7-48da-b32f-3c7e689be8f9'),(8702,85,47785,NULL,17971,4,'2021-09-22 00:10:23','2021-09-22 00:10:23','385f4a72-8b1f-4680-b6f9-98d271db8fe4'),(8707,184,47787,NULL,17105,1,'2021-09-22 00:11:31','2021-09-22 00:11:31','0c80c4cc-67f3-4ac4-a5be-3bd65056b9cf'),(8708,69,47787,NULL,17105,1,'2021-09-22 00:11:31','2021-09-22 00:11:31','44f1c9d9-e621-4655-96d1-46b41255e118'),(8709,85,47787,NULL,17965,1,'2021-09-22 00:11:31','2021-09-22 00:11:31','add01fb1-e2a1-4d03-a5c3-20edf945cce4'),(8710,85,47787,NULL,17971,2,'2021-09-22 00:11:31','2021-09-22 00:11:31','dc42a129-ad1d-4372-96c5-05776451f7a3'),(8711,184,47788,NULL,17743,1,'2021-09-22 00:13:55','2021-09-22 00:13:55','18425599-8be0-4d3c-8390-3848dcb5ebb9'),(8712,69,47788,NULL,17743,1,'2021-09-22 00:13:55','2021-09-22 00:13:55','54156e94-6850-4dd2-a263-a0d6972454e5'),(8713,184,47789,NULL,17089,1,'2021-09-22 00:15:45','2021-09-22 00:15:45','a4ec63f0-153c-4aae-99c4-50e23b2f6a8f'),(8714,69,47789,NULL,17089,1,'2021-09-22 00:15:45','2021-09-22 00:15:45','51db22ea-ac7c-4350-b5c5-baaeee246004'),(8717,184,47791,NULL,17166,1,'2021-09-22 00:21:51','2021-09-22 00:21:51','2b44b741-c758-46b8-89e9-72ff3cfcc66b'),(8718,69,47791,NULL,17166,1,'2021-09-22 00:21:51','2021-09-22 00:21:51','1315bb8d-7a10-44a9-b09f-a48572f00d89'),(8719,184,47792,NULL,28097,1,'2021-09-22 00:23:34','2021-09-22 00:23:34','45d8704a-00b2-4a4c-81f2-fb8f51beaf86'),(8720,69,47792,NULL,28097,1,'2021-09-22 00:23:34','2021-09-22 00:23:34','66c9ad8d-f0fb-4dc7-9534-5ce60ec484d3'),(8721,85,47792,NULL,17964,1,'2021-09-22 00:23:34','2021-09-22 00:23:34','8d95f247-e0fe-42a3-b2c3-c9b777f478b6'),(8722,85,47792,NULL,17965,2,'2021-09-22 00:23:34','2021-09-22 00:23:34','cf86b191-63f7-4d7c-8938-f411db24c7f0'),(8723,184,47793,NULL,17167,1,'2021-09-22 00:25:28','2021-09-22 00:25:28','5c05aaef-5ab8-4c33-81b2-788208fdf672'),(8724,69,47793,NULL,17167,1,'2021-09-22 00:25:28','2021-09-22 00:25:28','18c11d68-e15c-478d-b3bf-f49b6649d189'),(8730,184,47795,NULL,17168,1,'2021-09-22 00:29:50','2021-09-22 00:29:50','34fd5ded-cc03-4274-a8f2-209530e5edcf'),(8731,69,47795,NULL,17168,1,'2021-09-22 00:29:50','2021-09-22 00:29:50','4e3ad413-86df-4bd9-a5cd-683cd85b005f'),(8732,85,47795,NULL,17964,1,'2021-09-22 00:29:50','2021-09-22 00:29:50','1f85a04b-9ea5-4168-b92e-2e9f269a1c23'),(8733,85,47795,NULL,17970,2,'2021-09-22 00:29:50','2021-09-22 00:29:50','d977879c-0371-469d-a88d-5d5bfe1015dc'),(8734,85,47795,NULL,17971,3,'2021-09-22 00:29:50','2021-09-22 00:29:50','c41cad2b-bf5a-4b0a-b108-492303083cb0'),(8735,184,47796,NULL,28101,1,'2021-09-22 00:35:00','2021-09-22 00:35:00','714aa345-50f8-4774-8d8e-429c2846d68b'),(8736,69,47796,NULL,28101,1,'2021-09-22 00:35:00','2021-09-22 00:35:00','e9c48501-e825-4805-9b90-35066f89d1c2'),(8737,85,47796,NULL,17964,1,'2021-09-22 00:35:00','2021-09-22 00:35:00','a85f0fea-f37b-4eff-84ef-1cfe21211b7c'),(8738,85,47796,NULL,17965,2,'2021-09-22 00:35:00','2021-09-22 00:35:00','212a764b-f7be-4387-90b3-c1bc751fcbda'),(8739,85,47796,NULL,17966,3,'2021-09-22 00:35:00','2021-09-22 00:35:00','0549685f-c0b9-4bd7-abc9-c04ac2c3ca28'),(8740,85,47796,NULL,17968,4,'2021-09-22 00:35:00','2021-09-22 00:35:00','81ef5c8b-96a1-4555-b17b-1d39ac2b401e'),(8742,69,47798,NULL,17431,1,'2021-09-22 00:40:44','2021-09-22 00:40:44','933a78b7-b01b-4d19-af38-61013ee30f34'),(8744,69,47800,NULL,17433,1,'2021-09-22 00:49:41','2021-09-22 00:49:41','c7cfcd3c-f9cb-43ec-b684-1c1a2ffec9fc'),(8746,69,47802,NULL,17436,1,'2021-09-22 01:04:24','2021-09-22 01:04:24','336d297d-3fe2-4e18-ac3a-3ff3b524be26'),(8748,69,47804,NULL,17437,1,'2021-09-22 01:47:15','2021-09-22 01:47:15','978f5fe8-c38f-411c-8fbc-fb2841d9403c'),(8750,69,47806,NULL,17446,1,'2021-09-22 01:51:12','2021-09-22 01:51:12','b680f298-6525-4c44-a3db-3212fe1f2f2d'),(8752,69,47808,NULL,17446,1,'2021-09-22 01:51:29','2021-09-22 01:51:29','7470e076-bfda-42c2-98d9-dd6ef93a7db9'),(8754,79,21296,NULL,30433,14,'2021-09-23 06:16:24','2023-03-09 04:33:13','e765093f-e8bf-43cd-abe9-0246b87d4d09'),(8773,79,47989,NULL,17875,1,'2021-09-23 23:14:08','2021-09-23 23:14:08','2b391a75-3851-479b-b84a-e24b72ca35ed'),(8774,79,47989,NULL,21898,2,'2021-09-23 23:14:08','2021-09-23 23:14:08','b6f157b8-1176-4c11-b50f-430c9df630ca'),(8777,79,47989,NULL,17934,5,'2021-09-23 23:14:08','2021-09-23 23:14:08','79d66cd5-9af5-4fc3-a46f-17522c09c549'),(8778,79,47989,NULL,1,6,'2021-09-23 23:14:08','2021-09-23 23:14:08','9676729c-4980-464f-9e1e-dfebab72c65b'),(8779,79,47989,NULL,17954,7,'2021-09-23 23:14:08','2021-09-23 23:14:08','e31a92c4-88a9-4d9f-bb1b-e51105de505c'),(8780,79,47989,NULL,17956,8,'2021-09-23 23:14:08','2021-09-23 23:14:08','ebfefe70-bad1-43c2-9555-7845c9691fd8'),(8781,69,47989,NULL,19066,1,'2021-09-23 23:14:08','2021-09-23 23:14:08','4d0584d7-db08-4e98-80fb-9f80e9069bab'),(8782,85,47989,NULL,17964,1,'2021-09-23 23:14:08','2021-09-23 23:14:08','e0c3cd38-e39a-42e4-b15c-31857582a335'),(8783,85,47989,NULL,17965,2,'2021-09-23 23:14:08','2021-09-23 23:14:08','7a4a2237-2d4d-4d0d-91a1-521734117c8a'),(8784,85,47989,NULL,17966,3,'2021-09-23 23:14:08','2021-09-23 23:14:08','11e04f72-2595-44d7-bac7-ea702d1b8832'),(8785,85,47989,NULL,17967,4,'2021-09-23 23:14:08','2021-09-23 23:14:08','a30eeec5-1e42-4952-b456-c9e4e05e4a64'),(8786,85,47989,NULL,17968,5,'2021-09-23 23:14:08','2021-09-23 23:14:08','e74058be-47f5-4e37-976c-93d8491cd5cf'),(8787,85,47989,NULL,17969,6,'2021-09-23 23:14:08','2021-09-23 23:14:08','21e60529-90b6-482c-81f3-9a40a2046489'),(8788,85,47989,NULL,17970,7,'2021-09-23 23:14:08','2021-09-23 23:14:08','a4e2aa53-78bf-41fa-8450-760fbb3daa45'),(8789,84,47989,NULL,18057,1,'2021-09-23 23:14:08','2021-09-23 23:14:08','cb946857-a50a-4fb5-8288-0c04c33375d9'),(8790,84,47989,NULL,38160,2,'2021-09-23 23:14:08','2021-09-23 23:14:08','1219960c-8911-44bf-8ae0-f56dd3e3a86a'),(8801,79,47993,NULL,17875,1,'2021-09-24 01:36:46','2021-09-24 01:36:46','6994c808-e77b-41cc-b65f-fff76d31f342'),(8802,79,47993,NULL,17881,2,'2021-09-24 01:36:46','2021-09-24 01:36:46','06ae30c3-3fee-4cfc-85db-424657526196'),(8803,79,47993,NULL,1,3,'2021-09-24 01:36:46','2021-09-24 01:36:46','b42a9d36-b5e3-4731-b823-a629a5484cfe'),(8804,79,47993,NULL,17954,4,'2021-09-24 01:36:46','2021-09-24 01:36:46','fc5e8563-3520-45b4-9975-0735d05499c6'),(8805,79,47993,NULL,17956,5,'2021-09-24 01:36:46','2021-09-24 01:36:46','31a2d756-b525-4351-8985-0e5abf00aa83'),(8806,85,47993,NULL,17964,1,'2021-09-24 01:36:46','2021-09-24 01:36:46','88e7fe82-cf7e-4616-af40-74cc244d7ca2'),(8807,85,47993,NULL,17965,2,'2021-09-24 01:36:46','2021-09-24 01:36:46','0508ff6d-e3c0-4ea7-a9f2-9482e447485e'),(8808,85,47993,NULL,17970,3,'2021-09-24 01:36:46','2021-09-24 01:36:46','c9136a8f-f3b0-4815-97ad-e072e6a33252'),(8809,85,47993,NULL,17971,4,'2021-09-24 01:36:46','2021-09-24 01:36:46','e45ad8ac-a4c7-40d9-b1d1-f67acb5e8cf6'),(8810,84,47993,NULL,38158,1,'2021-09-24 01:36:46','2021-09-24 01:36:46','0b803cf9-5feb-4949-bb84-738b36ba441a'),(8816,85,47995,NULL,17964,1,'2021-09-24 01:38:36','2021-09-24 01:38:36','7cc2f7c3-c9f7-439a-aa82-79d54d1de05b'),(8817,85,47995,NULL,17966,2,'2021-09-24 01:38:36','2021-09-24 01:38:36','33fd6758-03b5-43e7-9cf0-ddd7dfc9bdf7'),(8818,85,47995,NULL,17969,3,'2021-09-24 01:38:36','2021-09-24 01:38:36','6b904418-38bc-4e2d-844a-0e19032211b6'),(8819,85,47995,NULL,17971,4,'2021-09-24 01:38:36','2021-09-24 01:38:36','2afc42f5-6b65-4d4c-81b4-9d5d0bf0509f'),(8820,84,47995,NULL,18057,1,'2021-09-24 01:38:36','2021-09-24 01:38:36','adc83a7a-3190-4bd5-938b-18e79433d6d1'),(8830,79,47998,NULL,17875,1,'2021-09-24 02:01:06','2021-09-24 02:01:06','83d8bd5c-f7eb-4dbe-b2f5-f257b87f4008'),(8831,79,47998,NULL,17954,2,'2021-09-24 02:01:06','2021-09-24 02:01:06','ae9882f6-0cc7-4e70-8686-71f46f215cf4'),(8832,85,47998,NULL,17964,1,'2021-09-24 02:01:06','2021-09-24 02:01:06','f5b3153f-511d-47ae-87b2-9cce8776b4bd'),(8833,85,47998,NULL,17965,2,'2021-09-24 02:01:06','2021-09-24 02:01:06','f471165f-9989-4522-ae8c-9747789de00d'),(8834,85,47998,NULL,17966,3,'2021-09-24 02:01:06','2021-09-24 02:01:06','8ff3591d-c177-4631-ac5f-953d8c331309'),(8835,85,47998,NULL,17969,4,'2021-09-24 02:01:06','2021-09-24 02:01:06','378339e6-1b23-426a-bc30-f9703a617163'),(8836,85,47998,NULL,17970,5,'2021-09-24 02:01:06','2021-09-24 02:01:06','0f35579a-c2cc-4ff2-91b0-e0a540d06253'),(8837,85,47998,NULL,17971,6,'2021-09-24 02:01:06','2021-09-24 02:01:06','a43df3d4-e98a-4217-afcb-444959b89868'),(8838,84,47998,NULL,38158,1,'2021-09-24 02:01:06','2021-09-24 02:01:06','51d07223-6590-401c-93ce-199c965b3a61'),(8848,184,48004,NULL,28041,1,'2021-09-24 04:59:43','2021-09-24 04:59:43','076764da-deff-4556-803b-af73e1e434da'),(8849,69,48004,NULL,28041,1,'2021-09-24 04:59:43','2021-09-24 04:59:43','6a03febd-3779-4d6b-bad8-174c3daa72ef'),(8850,85,48004,NULL,17964,1,'2021-09-24 04:59:43','2021-09-24 04:59:43','f17be2aa-d365-4e4d-942f-90ed45dc61a7'),(8851,85,48004,NULL,17966,2,'2021-09-24 04:59:43','2021-09-24 04:59:43','12697ff8-4eb7-46c1-950b-fd1841d4ad2c'),(8852,85,48004,NULL,17968,3,'2021-09-24 04:59:43','2021-09-24 04:59:43','3e297fda-7e02-4fda-805f-69bde3eda4ba'),(8853,85,48004,NULL,17971,4,'2021-09-24 04:59:43','2021-09-24 04:59:43','92c6c752-9507-4f70-9fe6-ad5b51fd3b17'),(8864,85,48003,NULL,17965,1,'2021-09-24 05:09:38','2021-09-24 05:09:38','2a92eec9-e009-4f50-8b2b-ffa8d7bc3a02'),(8865,69,48008,NULL,48007,1,'2021-09-24 05:09:38','2021-09-24 05:09:38','1bca807d-5c5f-49a9-8ac2-f51ce0532c33'),(8866,85,48008,NULL,17965,1,'2021-09-24 05:09:38','2021-09-24 05:09:38','7a7dafe3-41c9-431b-acab-9843948d7a8f'),(8869,69,48010,NULL,48007,1,'2021-09-24 05:39:08','2021-09-24 05:39:08','b086ac52-7d31-41ca-9686-0a2c164d77b7'),(8870,85,48010,NULL,17965,1,'2021-09-24 05:39:08','2021-09-24 05:39:08','c915a956-6a2d-4e56-a855-d6075cb4adb7'),(8875,79,48016,NULL,17875,1,'2021-09-24 07:20:40','2021-09-24 07:20:40','fd5fefbe-f6f3-40db-b1aa-0f1162226761'),(8876,79,48016,NULL,17954,2,'2021-09-24 07:20:40','2021-09-24 07:20:40','91f4ab56-39d2-40fb-8dbf-31ec34ddd217'),(8877,79,48016,NULL,17956,3,'2021-09-24 07:20:40','2021-09-24 07:20:40','3fe65c6f-1cfd-4644-b42b-940a184679ee'),(8878,85,48016,NULL,17964,1,'2021-09-24 07:20:40','2021-09-24 07:20:40','3304930a-c605-4505-bbf0-2da895b3bee1'),(8879,85,48016,NULL,17965,2,'2021-09-24 07:20:40','2021-09-24 07:20:40','e105766f-66c2-469c-94d9-af6c234ccb3b'),(8880,85,48016,NULL,17966,3,'2021-09-24 07:20:40','2021-09-24 07:20:40','3c4bc7a6-a33d-4251-8aef-76c10236504d'),(8881,85,48016,NULL,17967,4,'2021-09-24 07:20:40','2021-09-24 07:20:40','53386789-4669-4b12-bb0b-505cd50179d9'),(8882,85,48016,NULL,17968,5,'2021-09-24 07:20:40','2021-09-24 07:20:40','e2504c93-7199-4661-b347-3208e1359c98'),(8883,85,48016,NULL,17970,6,'2021-09-24 07:20:40','2021-09-24 07:20:40','850446a1-af92-4914-9cde-4117709d9484'),(8884,85,48016,NULL,17971,7,'2021-09-24 07:20:40','2021-09-24 07:20:40','5ca36163-9ce5-43e5-bee3-483ffa9dfae6'),(8885,84,48016,NULL,18057,1,'2021-09-24 07:20:40','2021-09-24 07:20:40','407c7584-69e2-4be1-82ce-5189b0a84a4f'),(8953,69,48131,NULL,48007,1,'2021-09-27 01:13:47','2021-09-27 01:13:47','bb926c42-3eaa-42ce-b715-317e9bd64f68'),(8954,85,48131,NULL,17965,1,'2021-09-27 01:13:47','2021-09-27 01:13:47','5751a1e8-70e9-4aeb-8268-2eb96bc301d8'),(8955,69,48134,NULL,17437,1,'2021-09-27 01:15:26','2021-09-27 01:15:26','e5b91fbe-955e-49f7-9d71-22655b70d890'),(8967,79,48149,NULL,17875,1,'2021-09-27 02:01:51','2021-09-27 02:01:51','c4c138f2-6ecf-415c-9796-677a2090176d'),(8968,79,48149,NULL,17954,2,'2021-09-27 02:01:51','2021-09-27 02:01:51','377ac438-39ed-490d-9d23-2f017ba2d305'),(8969,79,48149,NULL,17956,3,'2021-09-27 02:01:51','2021-09-27 02:01:51','60ecd8dd-890b-4aee-afd5-373e48bfa321'),(8970,85,48149,NULL,17964,1,'2021-09-27 02:01:51','2021-09-27 02:01:51','bf6be739-d750-4a15-8f20-0232185bd8b8'),(8971,85,48149,NULL,17965,2,'2021-09-27 02:01:51','2021-09-27 02:01:51','0466533d-d503-4767-b509-c854ae3cbec8'),(8972,85,48149,NULL,17966,3,'2021-09-27 02:01:51','2021-09-27 02:01:51','803e9799-f013-481b-a753-80fe0651c9a5'),(8973,85,48149,NULL,17967,4,'2021-09-27 02:01:51','2021-09-27 02:01:51','20a45cd0-df6a-4bf0-b794-f099544a50d7'),(8974,85,48149,NULL,17968,5,'2021-09-27 02:01:51','2021-09-27 02:01:51','ecdb1def-789e-47de-b6c8-c5485bea1a90'),(8975,85,48149,NULL,17970,6,'2021-09-27 02:01:51','2021-09-27 02:01:51','63018054-f8b4-4e74-9a71-ff991a7062ee'),(8976,85,48149,NULL,17971,7,'2021-09-27 02:01:51','2021-09-27 02:01:51','785b6a50-ec38-4a26-ad6d-f88199f0d11d'),(8977,84,48149,NULL,18057,1,'2021-09-27 02:01:51','2021-09-27 02:01:51','f84e1fc5-fd17-4311-8512-47864ca7599d'),(8984,79,48151,NULL,17875,1,'2021-09-27 02:02:07','2021-09-27 02:02:07','66b4a1f6-db80-4724-8939-aade85193743'),(8985,79,48151,NULL,17954,2,'2021-09-27 02:02:07','2021-09-27 02:02:07','6f8dd2c6-1460-41cd-90d9-86f915146d15'),(8986,79,48151,NULL,17956,3,'2021-09-27 02:02:07','2021-09-27 02:02:07','75e969da-9958-4529-b6c4-18becf50ec54'),(8987,85,48151,NULL,17965,1,'2021-09-27 02:02:07','2021-09-27 02:02:07','0cb5661f-ea83-4038-af41-c391db0a33ed'),(8988,85,48151,NULL,17968,2,'2021-09-27 02:02:07','2021-09-27 02:02:07','5153c2aa-b231-42cb-8de8-a9f552eed2ef'),(8989,84,48151,NULL,18057,1,'2021-09-27 02:02:07','2021-09-27 02:02:07','a15ca9c0-375d-446f-8a20-e1cfbbed27cd'),(8997,79,48153,NULL,17875,1,'2021-09-27 02:02:40','2021-09-27 02:02:40','f08159e2-bbd5-408e-9674-d7066023a824'),(8998,79,48153,NULL,17954,2,'2021-09-27 02:02:40','2021-09-27 02:02:40','0d5b3100-aa0e-4228-a66c-4317a85fd4c1'),(8999,85,48153,NULL,17964,1,'2021-09-27 02:02:40','2021-09-27 02:02:40','e21e5d59-48f2-443b-9cd7-c890585ba742'),(9000,85,48153,NULL,17965,2,'2021-09-27 02:02:40','2021-09-27 02:02:40','f1760d23-2c21-40e7-9329-745a1c044329'),(9001,85,48153,NULL,17970,3,'2021-09-27 02:02:40','2021-09-27 02:02:40','121fca59-9a68-4779-b843-7cd2e1594d7c'),(9002,85,48153,NULL,17971,4,'2021-09-27 02:02:40','2021-09-27 02:02:40','aa508200-7700-43ea-9ac5-8f478623cb45'),(9003,84,48153,NULL,38160,1,'2021-09-27 02:02:40','2021-09-27 02:02:40','2dbb0d2d-df0d-48a2-b706-0cb1bed6a0a7'),(9014,79,48155,NULL,17875,1,'2021-09-27 02:02:53','2021-09-27 02:02:53','28f3fac1-bdca-4936-babc-1cf85c522d29'),(9015,79,48155,NULL,17954,2,'2021-09-27 02:02:53','2021-09-27 02:02:53','3fd5c82f-3594-478b-9a13-a22d6291fbc9'),(9016,85,48155,NULL,17964,1,'2021-09-27 02:02:53','2021-09-27 02:02:53','3dc28e54-f19f-43e2-9aaf-30f21e932442'),(9017,85,48155,NULL,17966,2,'2021-09-27 02:02:53','2021-09-27 02:02:53','a9eed252-30fa-48d1-b691-be6b398146d1'),(9018,85,48155,NULL,17967,3,'2021-09-27 02:02:53','2021-09-27 02:02:53','6a300418-8467-4b4c-8bcb-78a27bf2107f'),(9019,85,48155,NULL,17968,4,'2021-09-27 02:02:53','2021-09-27 02:02:53','7d6b0fa0-37b7-4814-b022-cd09442af642'),(9020,85,48155,NULL,17969,5,'2021-09-27 02:02:53','2021-09-27 02:02:53','d8e21e7b-7ef1-4e91-8599-aa90a6f76675'),(9021,85,48155,NULL,17970,6,'2021-09-27 02:02:53','2021-09-27 02:02:53','605943b8-49f9-424c-8217-53569bdd8956'),(9022,85,48155,NULL,17971,7,'2021-09-27 02:02:53','2021-09-27 02:02:53','be00cb0d-af70-472f-8c58-3978095386bb'),(9023,84,48155,NULL,18057,1,'2021-09-27 02:02:53','2021-09-27 02:02:53','a5226225-f943-437d-a2be-140f9b2d2bd4'),(9030,79,48158,NULL,17875,1,'2021-09-27 02:03:03','2021-09-27 02:03:03','c51a5d6b-36a4-4aef-92b6-882e421c8bfa'),(9031,79,48158,NULL,17954,2,'2021-09-27 02:03:03','2021-09-27 02:03:03','5cff229c-0fe2-40d8-917d-47d50ca648a2'),(9032,85,48158,NULL,17964,1,'2021-09-27 02:03:03','2021-09-27 02:03:03','adf0d167-82e3-4f8e-acad-0664e64ac2d8'),(9033,85,48158,NULL,17965,2,'2021-09-27 02:03:03','2021-09-27 02:03:03','651237e7-93af-464b-8d00-e2a13bfd7620'),(9034,85,48158,NULL,17970,3,'2021-09-27 02:03:03','2021-09-27 02:03:03','18a1b86c-f413-4f11-be6f-1f80e5effb1d'),(9035,84,48158,NULL,38161,1,'2021-09-27 02:03:03','2021-09-27 02:03:03','02d9b801-e55a-4f30-8012-523b4395db7c'),(9048,79,48160,NULL,17875,1,'2021-09-27 02:03:16','2021-09-27 02:03:16','45677d61-fef3-4470-b1ca-80932afea037'),(9050,79,48160,NULL,17934,3,'2021-09-27 02:03:16','2021-09-27 02:03:16','9af25d93-416e-4e32-8028-63ee2a74c49f'),(9051,79,48160,NULL,17881,4,'2021-09-27 02:03:16','2021-09-27 02:03:16','e8ed4e7e-591c-4778-a589-a4df2f306ab4'),(9052,79,48160,NULL,1,5,'2021-09-27 02:03:16','2021-09-27 02:03:16','1c601487-ea44-4afe-ade9-3a467c77e078'),(9053,79,48160,NULL,17956,6,'2021-09-27 02:03:16','2021-09-27 02:03:16','28a7a82d-23bb-42b7-9288-6629dacc4a2f'),(9054,85,48160,NULL,17964,1,'2021-09-27 02:03:16','2021-09-27 02:03:16','e98b3009-3f22-45e7-872d-a077d2ef7082'),(9055,85,48160,NULL,17965,2,'2021-09-27 02:03:16','2021-09-27 02:03:16','7fd20d2c-ee36-4623-ac8f-cb0c30102c50'),(9056,85,48160,NULL,17966,3,'2021-09-27 02:03:16','2021-09-27 02:03:16','6f57da96-cf12-43a7-b8c7-8497c10ab355'),(9057,85,48160,NULL,17970,4,'2021-09-27 02:03:16','2021-09-27 02:03:16','d049c29f-7e43-4e33-a96b-8b855cfcc9ae'),(9058,85,48160,NULL,17971,5,'2021-09-27 02:03:16','2021-09-27 02:03:16','47c1837b-e9e7-4b17-b589-767397f90322'),(9059,84,48160,NULL,38157,1,'2021-09-27 02:03:16','2021-09-27 02:03:16','4e390327-ea0d-42e6-b98e-b90ec4799b24'),(9060,85,48161,NULL,17964,1,'2021-09-27 02:03:39','2021-09-27 02:03:39','48be9ebe-8e2b-4ae3-8f5b-69302682aa7b'),(9061,85,48161,NULL,17966,2,'2021-09-27 02:03:39','2021-09-27 02:03:39','ecffc7bf-c2b6-49fc-bc05-ff007635462c'),(9062,85,48161,NULL,17969,3,'2021-09-27 02:03:39','2021-09-27 02:03:39','37b62b17-70f3-4ad3-853d-07fdb1066167'),(9063,85,48161,NULL,17971,4,'2021-09-27 02:03:39','2021-09-27 02:03:39','6e80cd52-87c1-4064-9da5-ff99223a1c3a'),(9064,84,48161,NULL,18057,1,'2021-09-27 02:03:39','2021-09-27 02:03:39','4360bdbc-6940-4e03-9fa1-437f27c652ed'),(9077,69,18164,NULL,48162,1,'2021-09-27 02:11:26','2021-09-27 02:11:26','d10420f3-7ebe-49ca-813c-6f270a5eb439'),(9078,79,48164,NULL,17887,1,'2021-09-27 02:11:26','2021-09-27 02:11:26','bf7b7fa0-3076-4081-b1a1-b557a77e7b5d'),(9079,79,48164,NULL,17893,2,'2021-09-27 02:11:26','2021-09-27 02:11:26','bd494811-28c3-496e-904a-c3db8beb269d'),(9080,79,48164,NULL,21898,3,'2021-09-27 02:11:26','2021-09-27 02:11:26','6bc4b2eb-b1b0-4fb6-a283-78afb7b34eb9'),(9082,79,48164,NULL,17881,5,'2021-09-27 02:11:26','2021-09-27 02:11:26','e8de883b-98b5-4647-a04d-b7f30fdc80f8'),(9083,79,48164,NULL,17956,6,'2021-09-27 02:11:26','2021-09-27 02:11:26','9c505e14-2eae-4d40-9418-ec1e902cab9b'),(9084,69,48164,NULL,48162,1,'2021-09-27 02:11:26','2021-09-27 02:11:26','b952b139-ac60-48a8-b887-23b7330d4406'),(9085,85,48164,NULL,17964,1,'2021-09-27 02:11:26','2021-09-27 02:11:26','a03e57cd-deda-47d6-a331-812750f93383'),(9086,85,48164,NULL,17968,2,'2021-09-27 02:11:26','2021-09-27 02:11:26','7f3d5099-c366-43bb-a80f-0b199c325ee6'),(9087,84,48164,NULL,18057,1,'2021-09-27 02:11:26','2021-09-27 02:11:26','fc2c8a7d-7656-46cb-99ed-7143051ab043'),(9088,84,48164,NULL,38159,2,'2021-09-27 02:11:26','2021-09-27 02:11:26','b77f4605-557f-4c60-b34c-e8e9230abd1c'),(9089,84,48164,NULL,38160,3,'2021-09-27 02:11:26','2021-09-27 02:11:26','4fb9558a-d8bc-4c7f-9eaa-be358819cc94'),(9090,79,48165,NULL,17887,1,'2021-09-27 02:12:24','2021-09-27 02:12:24','e50d2afc-c698-4e87-a8b3-d568768ed184'),(9091,79,48165,NULL,17893,2,'2021-09-27 02:12:24','2021-09-27 02:12:24','b43d809b-f4aa-4ab6-977a-d153ff31b2a1'),(9092,79,48165,NULL,21898,3,'2021-09-27 02:12:24','2021-09-27 02:12:24','ef879a80-0ced-4d2d-8b69-fcfb2c623d62'),(9094,79,48165,NULL,17881,5,'2021-09-27 02:12:24','2021-09-27 02:12:24','94bd0eb2-038f-4f39-816e-5e2c5e6e20d4'),(9095,79,48165,NULL,17956,6,'2021-09-27 02:12:24','2021-09-27 02:12:24','122d82ba-1a1c-43fc-abae-e32eec5f224c'),(9096,69,48165,NULL,48162,1,'2021-09-27 02:12:24','2021-09-27 02:12:24','bc23e24c-0cb7-47dd-8d23-d2104eb2521a'),(9097,85,48165,NULL,17964,1,'2021-09-27 02:12:24','2021-09-27 02:12:24','054e6f5c-18a9-41e8-9cbb-8963972d75f1'),(9098,85,48165,NULL,17968,2,'2021-09-27 02:12:24','2021-09-27 02:12:24','51f6fde0-b3eb-4376-99ec-e774e1fd5d4f'),(9099,84,48165,NULL,18057,1,'2021-09-27 02:12:24','2021-09-27 02:12:24','6ab25c66-f44e-48a7-ad38-b06a2481092a'),(9100,84,48165,NULL,38159,2,'2021-09-27 02:12:24','2021-09-27 02:12:24','9cde8521-6329-464d-a1de-ddec81113eeb'),(9101,84,48165,NULL,38160,3,'2021-09-27 02:12:24','2021-09-27 02:12:24','196ffaaf-81fa-4fbd-8b16-b5994a754961'),(9113,79,48168,NULL,17875,1,'2021-09-27 02:19:38','2021-09-27 02:19:38','b7faea0f-20bc-48eb-9a33-c162f98fa4e5'),(9114,79,48168,NULL,17954,2,'2021-09-27 02:19:38','2021-09-27 02:19:38','866b7975-2ac9-461e-98b1-b6205c059524'),(9115,69,48168,NULL,48166,1,'2021-09-27 02:19:38','2021-09-27 02:19:38','03886437-a17a-4bb5-b6d7-616ab016ee72'),(9116,85,48168,NULL,17964,1,'2021-09-27 02:19:38','2021-09-27 02:19:38','fc5d23ac-6ec3-40e7-8abd-bc905c6ae01e'),(9117,85,48168,NULL,17965,2,'2021-09-27 02:19:38','2021-09-27 02:19:38','45fa0bf0-fdab-42c5-ac2f-74bbdc8d2507'),(9118,85,48168,NULL,17966,3,'2021-09-27 02:19:38','2021-09-27 02:19:38','803a74c1-9790-4805-9794-490e798e75a1'),(9119,85,48168,NULL,17969,4,'2021-09-27 02:19:38','2021-09-27 02:19:38','21106559-100a-41ec-a010-3cf7e077daa5'),(9120,85,48168,NULL,17970,5,'2021-09-27 02:19:38','2021-09-27 02:19:38','af04a738-ff2a-4285-b145-a5524e7827fc'),(9121,85,48168,NULL,17971,6,'2021-09-27 02:19:38','2021-09-27 02:19:38','0e6dc1f6-a030-4e7b-9db7-5d60370d41dd'),(9122,84,48168,NULL,38158,1,'2021-09-27 02:19:38','2021-09-27 02:19:38','3843b391-5903-44ea-8e7e-9cd48ff55b90'),(9135,79,48172,NULL,17875,1,'2021-09-27 02:36:32','2021-09-27 02:36:32','6944a701-4740-4324-9176-4b98a442afa9'),(9136,79,48172,NULL,17954,2,'2021-09-27 02:36:32','2021-09-27 02:36:32','6bf0363d-7418-4d09-bbe1-adf3c99d67b2'),(9137,69,48172,NULL,48171,1,'2021-09-27 02:36:32','2021-09-27 02:36:32','f77985af-b8d4-4010-a307-eb4fb9beec6e'),(9138,85,48172,NULL,17964,1,'2021-09-27 02:36:32','2021-09-27 02:36:32','a86c5e06-8c71-4f30-a4be-541701492b77'),(9139,85,48172,NULL,17965,2,'2021-09-27 02:36:32','2021-09-27 02:36:32','7b0d05cf-41cb-4ae9-94f2-c5fcd8c219b3'),(9140,85,48172,NULL,17966,3,'2021-09-27 02:36:32','2021-09-27 02:36:32','f5fe41aa-b0d3-4b83-aa46-8ac9f199889c'),(9141,85,48172,NULL,17969,4,'2021-09-27 02:36:32','2021-09-27 02:36:32','e46bf81f-8f1e-44f3-9265-e8fe95c372f7'),(9142,85,48172,NULL,17970,5,'2021-09-27 02:36:32','2021-09-27 02:36:32','b460104c-cacc-40d5-931e-55a06f4dc3bf'),(9143,85,48172,NULL,17971,6,'2021-09-27 02:36:32','2021-09-27 02:36:32','480bf72d-113f-4c5c-9d63-9c9c714c3d16'),(9144,84,48172,NULL,38158,1,'2021-09-27 02:36:32','2021-09-27 02:36:32','ec7cafe7-b693-4651-ada2-acf96f6f6630'),(9156,69,44981,NULL,48176,1,'2021-09-27 02:38:37','2021-09-27 02:38:37','805b3b2c-33bf-40a2-b7c5-4f1da0c08a2b'),(9157,79,48177,NULL,17875,1,'2021-09-27 02:38:37','2021-09-27 02:38:37','be5d9799-80fa-4edb-8343-af2216fec712'),(9158,79,48177,NULL,17954,2,'2021-09-27 02:38:37','2021-09-27 02:38:37','2c79232d-70c8-42cd-8800-1d733fbb5a8d'),(9159,69,48177,NULL,48176,1,'2021-09-27 02:38:37','2021-09-27 02:38:37','e9bd2460-8f49-47b7-874e-ea8d968e6d1d'),(9160,85,48177,NULL,17964,1,'2021-09-27 02:38:37','2021-09-27 02:38:37','a98b8330-e67d-4d1d-a2fa-31c3a2fa2ed6'),(9161,85,48177,NULL,17965,2,'2021-09-27 02:38:37','2021-09-27 02:38:37','e292c101-3ad5-4af1-9e5b-147905da1577'),(9162,85,48177,NULL,17966,3,'2021-09-27 02:38:37','2021-09-27 02:38:37','924143c0-7fb9-4ac8-b14a-b4799c114876'),(9163,85,48177,NULL,17969,4,'2021-09-27 02:38:37','2021-09-27 02:38:37','204260cb-0c37-40ca-9401-618b5512d6b1'),(9164,85,48177,NULL,17970,5,'2021-09-27 02:38:37','2021-09-27 02:38:37','e02e7c28-a884-4759-86dc-7a3394a529d6'),(9165,85,48177,NULL,17971,6,'2021-09-27 02:38:37','2021-09-27 02:38:37','d69649aa-f438-4056-83dc-a4fcc7d513fd'),(9166,84,48177,NULL,38158,1,'2021-09-27 02:38:37','2021-09-27 02:38:37','1f4d9049-a5be-4f2d-a848-cdd2244ecf73'),(9173,79,48179,NULL,17954,1,'2021-09-27 02:39:14','2021-09-27 02:39:14','5fa093e1-7a93-41ba-bd69-5fb2959b4917'),(9174,79,48179,NULL,17956,2,'2021-09-27 02:39:14','2021-09-27 02:39:14','e3e1d73d-cb21-4679-ab79-232bdb29a814'),(9175,85,48179,NULL,17964,1,'2021-09-27 02:39:14','2021-09-27 02:39:14','c20d5e26-3def-4d33-9fcc-59f926adabed'),(9176,85,48179,NULL,17968,2,'2021-09-27 02:39:14','2021-09-27 02:39:14','80460f2a-7f2e-48d4-97ea-3d59c7764775'),(9177,85,48179,NULL,17969,3,'2021-09-27 02:39:14','2021-09-27 02:39:14','57a17503-d8ad-431f-b27a-0f614f03a251'),(9178,84,48179,NULL,18057,1,'2021-09-27 02:39:14','2021-09-27 02:39:14','4a41350b-fa25-4576-9950-f5bf8c1ef588'),(9185,69,44862,NULL,48180,1,'2021-09-27 02:42:07','2021-09-27 02:42:07','9ec4b089-9eb0-4089-8315-2eec250281f5'),(9186,69,48182,NULL,48180,1,'2021-09-27 02:42:07','2021-09-27 02:42:07','65888160-0133-4cdb-8df2-6a8be9a3b3ce'),(9187,85,48182,NULL,17964,1,'2021-09-27 02:42:07','2021-09-27 02:42:07','e6ae1372-d907-45d7-95b5-b29ea08e1bfc'),(9188,85,48182,NULL,17966,2,'2021-09-27 02:42:07','2021-09-27 02:42:07','152131e0-5be3-45dc-a169-8f2a3c908cc6'),(9189,85,48182,NULL,17969,3,'2021-09-27 02:42:07','2021-09-27 02:42:07','514b2b4f-979a-4ebd-b99e-2d2acf955ccc'),(9190,85,48182,NULL,17971,4,'2021-09-27 02:42:07','2021-09-27 02:42:07','713c61a3-ce7a-4e18-b641-24313ec4deca'),(9191,84,48182,NULL,18057,1,'2021-09-27 02:42:07','2021-09-27 02:42:07','fb3e14a3-0ddb-4ce3-81ef-c58ac99fc157'),(9203,69,44849,NULL,48184,1,'2021-09-27 02:46:51','2021-09-27 02:46:51','fb3443bd-3ae4-4d82-ad08-ac0d99a8a7f8'),(9204,79,48186,NULL,17875,1,'2021-09-27 02:46:51','2021-09-27 02:46:51','6907b6c6-75ed-474a-917f-965994f9b4ec'),(9205,79,48186,NULL,17881,2,'2021-09-27 02:46:51','2021-09-27 02:46:51','c710957e-7cde-40d4-88e5-1942ce3c49bf'),(9206,79,48186,NULL,1,3,'2021-09-27 02:46:51','2021-09-27 02:46:51','543901cf-6435-4851-8453-8765c3aaef03'),(9207,79,48186,NULL,17954,4,'2021-09-27 02:46:51','2021-09-27 02:46:51','252d35da-db11-49df-be37-549eb71dd001'),(9208,79,48186,NULL,17956,5,'2021-09-27 02:46:51','2021-09-27 02:46:51','0ac625ed-56df-429a-b8ec-2916872290dc'),(9209,69,48186,NULL,48184,1,'2021-09-27 02:46:51','2021-09-27 02:46:51','d353a474-c654-48bb-8619-cc9a539e394a'),(9210,85,48186,NULL,17964,1,'2021-09-27 02:46:51','2021-09-27 02:46:51','690d221a-3cdb-4e23-b6d5-eada3896303a'),(9211,85,48186,NULL,17965,2,'2021-09-27 02:46:51','2021-09-27 02:46:51','3aeca6d8-68aa-437a-8450-38926b8613af'),(9212,85,48186,NULL,17970,3,'2021-09-27 02:46:51','2021-09-27 02:46:51','2950c850-329c-4b8c-973d-61d83dc78ca3'),(9213,85,48186,NULL,17971,4,'2021-09-27 02:46:51','2021-09-27 02:46:51','758517f3-b21d-4f3f-996c-c9314814ae4a'),(9214,84,48186,NULL,38158,1,'2021-09-27 02:46:51','2021-09-27 02:46:51','5cfb3e13-b8c2-4b72-a6f1-edbe843595b7'),(9226,69,48003,NULL,48366,1,'2021-09-27 06:53:04','2021-09-27 06:53:04','cf1a7116-c8bb-49d8-988d-ff9677dc0a0b'),(9227,69,48367,NULL,48366,1,'2021-09-27 06:53:04','2021-09-27 06:53:04','a192fba6-6010-41ed-b0ee-e2cd3f537510'),(9228,85,48367,NULL,17965,1,'2021-09-27 06:53:04','2021-09-27 06:53:04','f41d5eae-5760-453d-93f4-12be67b5e3a3'),(9229,69,48376,NULL,17436,1,'2021-09-27 22:51:43','2021-09-27 22:51:43','4ea54406-3c70-487e-a0c3-a167bfd50e62'),(9233,85,17660,NULL,17968,1,'2021-09-27 22:53:36','2021-09-27 22:53:36','5e84a778-2ade-45a4-ab23-b8d889b33a1e'),(9234,85,17660,NULL,17971,2,'2021-09-27 22:53:36','2021-09-27 22:53:36','e75d81bc-acf2-4574-9e1e-8a1cdb842948'),(9235,69,48378,NULL,17431,1,'2021-09-27 22:53:36','2021-09-27 22:53:36','cfcdb381-d1eb-4038-8998-56905d0b816b'),(9236,85,48378,NULL,17968,1,'2021-09-27 22:53:36','2021-09-27 22:53:36','a80bbde8-2777-4d39-95b8-ca63f63d3a44'),(9237,85,48378,NULL,17971,2,'2021-09-27 22:53:36','2021-09-27 22:53:36','8915dccf-b911-4a48-adfb-c0cf7b842b9c'),(9238,184,48379,NULL,28101,1,'2021-09-27 22:53:58','2021-09-27 22:53:58','c5bcb91b-cca3-4c9b-8bb6-3b72e8ab3d72'),(9239,69,48379,NULL,28101,1,'2021-09-27 22:53:58','2021-09-27 22:53:58','0a3e918d-228a-479b-9621-736fda46c390'),(9240,85,48379,NULL,17964,1,'2021-09-27 22:53:58','2021-09-27 22:53:58','7fc3d6af-dc47-43a9-9c85-df3652cf4fb6'),(9241,85,48379,NULL,17965,2,'2021-09-27 22:53:58','2021-09-27 22:53:58','8164ab3f-35c4-4193-af51-ac7cea6cc4a5'),(9242,85,48379,NULL,17966,3,'2021-09-27 22:53:58','2021-09-27 22:53:58','52d7dcf7-117b-449d-97db-fe85d5108546'),(9243,85,48379,NULL,17968,4,'2021-09-27 22:53:58','2021-09-27 22:53:58','b32cd790-3e32-4966-aa56-7d2b41726907'),(9244,184,48380,NULL,28101,1,'2021-09-27 22:54:36','2021-09-27 22:54:36','6558ace1-ff2a-44f9-9672-f2d85a6ce796'),(9245,69,48380,NULL,28101,1,'2021-09-27 22:54:36','2021-09-27 22:54:36','ee697116-74fb-4c97-9be5-8ed1129a4c07'),(9246,85,48380,NULL,17964,1,'2021-09-27 22:54:36','2021-09-27 22:54:36','1a6b67d3-cc5b-4099-9f93-50c94e8dbb4d'),(9247,85,48380,NULL,17965,2,'2021-09-27 22:54:36','2021-09-27 22:54:36','ec64f786-6179-4724-b35f-06ffc34cca15'),(9248,85,48380,NULL,17966,3,'2021-09-27 22:54:36','2021-09-27 22:54:36','ee50cf60-606c-4d74-b546-c27476bd37af'),(9249,85,48380,NULL,17968,4,'2021-09-27 22:54:36','2021-09-27 22:54:36','45ff686c-db95-4ecc-9488-3c77b7e8fb66'),(9254,85,17654,NULL,17964,1,'2021-09-27 22:55:06','2021-09-27 22:55:06','977786c1-1e12-49df-b469-142d888d6d11'),(9255,85,17654,NULL,17968,2,'2021-09-27 22:55:06','2021-09-27 22:55:06','e7e4d73a-9bc9-4a35-89b8-17696c4e17ab'),(9256,69,48382,NULL,17433,1,'2021-09-27 22:55:06','2021-09-27 22:55:06','1b678b7f-0fd5-457b-9b8f-066bcaedf9ff'),(9257,85,48382,NULL,17964,1,'2021-09-27 22:55:06','2021-09-27 22:55:06','0b62937b-5cc8-4424-b255-466ad5fd2a2b'),(9258,85,48382,NULL,17968,2,'2021-09-27 22:55:06','2021-09-27 22:55:06','bb36d12f-dc10-4ead-9388-0f19b05bcfd6'),(9263,85,17646,NULL,17964,1,'2021-09-27 22:55:36','2021-09-27 22:55:36','7057590e-5941-4fda-b5f3-948c63894385'),(9264,85,17646,NULL,17965,2,'2021-09-27 22:55:36','2021-09-27 22:55:36','bba420ae-8aaa-47ec-8012-da8cd585d94d'),(9265,85,17646,NULL,17971,3,'2021-09-27 22:55:36','2021-09-27 22:55:36','5b3f43ae-ce16-4e78-94f2-cb3b29094db0'),(9266,69,48384,NULL,17436,1,'2021-09-27 22:55:36','2021-09-27 22:55:36','46620140-c4a6-47a4-8cf5-10bd8711c948'),(9267,85,48384,NULL,17964,1,'2021-09-27 22:55:36','2021-09-27 22:55:36','48abad37-0d3f-426e-aa63-b9edf1df7f1e'),(9268,85,48384,NULL,17965,2,'2021-09-27 22:55:36','2021-09-27 22:55:36','d58b23e8-dd6e-4f5f-80e6-05c9b151b06f'),(9269,85,48384,NULL,17971,3,'2021-09-27 22:55:36','2021-09-27 22:55:36','5873c8d2-273d-4af7-ac9d-c23051360abb'),(9274,85,17644,NULL,17964,1,'2021-09-27 22:57:34','2021-09-27 22:57:34','353685f1-991a-40f8-b43e-2df6b54ca641'),(9275,85,17644,NULL,17965,2,'2021-09-27 22:57:34','2021-09-27 22:57:34','78ff01af-c00f-4aba-bfc8-93a97112462e'),(9276,85,17644,NULL,17971,3,'2021-09-27 22:57:34','2021-09-27 22:57:34','7cfe1839-3864-4a53-a6fc-7d971026b5f0'),(9277,69,48386,NULL,17437,1,'2021-09-27 22:57:34','2021-09-27 22:57:34','324d2719-7343-4a5c-98c6-57d6b51cacb6'),(9278,85,48386,NULL,17964,1,'2021-09-27 22:57:34','2021-09-27 22:57:34','32b07e52-3366-4e74-bd43-410076ad45f5'),(9279,85,48386,NULL,17965,2,'2021-09-27 22:57:34','2021-09-27 22:57:34','42077b99-edd2-4b3a-8319-d36df04cad9e'),(9280,85,48386,NULL,17971,3,'2021-09-27 22:57:34','2021-09-27 22:57:34','7052b365-a9ee-4544-baca-e1c2cd3ca17a'),(9284,85,48003,NULL,17968,2,'2021-09-27 22:57:51','2021-09-27 22:57:51','f8b53726-a8e9-4e7c-a528-6562c40e26b3'),(9285,69,48388,NULL,48366,1,'2021-09-27 22:57:51','2021-09-27 22:57:51','c4b0b59d-0332-4502-a1b6-a50caaada023'),(9286,85,48388,NULL,17965,1,'2021-09-27 22:57:51','2021-09-27 22:57:51','01ba79b5-d8c1-4fea-a4f6-7d8ae97fbc44'),(9287,85,48388,NULL,17968,2,'2021-09-27 22:57:51','2021-09-27 22:57:51','6df0d5d3-498a-4df5-a3d6-30c571332069'),(9305,184,48393,NULL,28041,1,'2021-09-27 22:58:28','2021-09-27 22:58:28','4d0b6d15-a285-41a5-bf8f-601dc6d30ec4'),(9306,69,48393,NULL,28041,1,'2021-09-27 22:58:29','2021-09-27 22:58:29','c6d6f72b-bf2a-4c86-b749-a29fcb77916a'),(9307,85,48393,NULL,17964,1,'2021-09-27 22:58:29','2021-09-27 22:58:29','ce7e0c5f-ccfe-417c-b437-d22eea5c168b'),(9308,85,48393,NULL,17966,2,'2021-09-27 22:58:29','2021-09-27 22:58:29','04216967-171b-45ed-9227-f797be21e6ca'),(9309,85,48393,NULL,17968,3,'2021-09-27 22:58:29','2021-09-27 22:58:29','fb7a8341-02ce-468b-9d1d-3ceb0140bbc4'),(9310,85,48393,NULL,17971,4,'2021-09-27 22:58:29','2021-09-27 22:58:29','5a37eb26-0ec5-413c-953c-a389d6bb6b29'),(9315,184,48003,NULL,48366,1,'2021-09-27 22:58:41','2021-09-27 22:58:41','fc62f835-66dc-4838-87c4-105d090364fb'),(9316,184,48395,NULL,48366,1,'2021-09-27 22:58:42','2021-09-27 22:58:42','ebdc22d6-95ee-458e-94f8-fbd0b357e010'),(9317,69,48395,NULL,48366,1,'2021-09-27 22:58:42','2021-09-27 22:58:42','88ccbafa-423e-440b-8764-ede5c0bd4273'),(9318,85,48395,NULL,17965,1,'2021-09-27 22:58:42','2021-09-27 22:58:42','c0adb157-58f2-4615-af10-2014edaaaf1f'),(9319,85,48395,NULL,17968,2,'2021-09-27 22:58:42','2021-09-27 22:58:42','9f05c968-baec-4c97-9d8d-5cd57a8979f5'),(9320,184,48396,NULL,17105,1,'2021-09-27 22:58:49','2021-09-27 22:58:49','a3676f2e-5aea-42e3-9228-d3b0183af43f'),(9321,69,48396,NULL,17105,1,'2021-09-27 22:58:49','2021-09-27 22:58:49','0ec820ef-dca3-4a88-a22e-9563fe6e60c6'),(9322,85,48396,NULL,17965,1,'2021-09-27 22:58:49','2021-09-27 22:58:49','269ce0ef-b209-4a31-8d73-24676f8a52a4'),(9323,85,48396,NULL,17971,2,'2021-09-27 22:58:49','2021-09-27 22:58:49','775f8841-a2f8-4db2-9fda-343f3f2dde16'),(9324,184,48397,NULL,28101,1,'2021-09-27 22:58:58','2021-09-27 22:58:58','b13f58c3-4e3e-4259-88cb-7c45863da704'),(9325,69,48397,NULL,28101,1,'2021-09-27 22:58:58','2021-09-27 22:58:58','8605d402-15de-43c5-a794-48ba068e008c'),(9326,85,48397,NULL,17964,1,'2021-09-27 22:58:58','2021-09-27 22:58:58','d66f0372-1e42-458b-9411-06f987bd57fc'),(9327,85,48397,NULL,17965,2,'2021-09-27 22:58:58','2021-09-27 22:58:58','593e8633-5c3c-4210-9506-54b1d3dc3cad'),(9328,85,48397,NULL,17966,3,'2021-09-27 22:58:58','2021-09-27 22:58:58','1ccff2a7-d8a7-4760-b62f-405ddbc41f41'),(9329,85,48397,NULL,17968,4,'2021-09-27 22:58:58','2021-09-27 22:58:58','662331a0-bc2c-4fd0-b254-1affe176f4e6'),(9330,69,48398,NULL,17431,1,'2021-09-27 23:00:38','2021-09-27 23:00:38','644be5b5-43b0-4bfe-a21c-b885053cb32d'),(9331,85,48398,NULL,17968,1,'2021-09-27 23:00:38','2021-09-27 23:00:38','81c2bb8c-fc2e-408f-9f9f-3094361329e3'),(9332,85,48398,NULL,17971,2,'2021-09-27 23:00:38','2021-09-27 23:00:38','bcf81d90-4cdc-4ba2-9a92-84021df27b73'),(9333,69,48399,NULL,17433,1,'2021-09-27 23:01:03','2021-09-27 23:01:03','d493fdd1-7b35-4d39-b310-4be314eb75af'),(9334,85,48399,NULL,17964,1,'2021-09-27 23:01:03','2021-09-27 23:01:03','4629034c-e6f3-4a93-9d4c-19baa881c749'),(9335,85,48399,NULL,17968,2,'2021-09-27 23:01:03','2021-09-27 23:01:03','6efff805-a649-4183-8d59-ad48284ed1ca'),(9342,184,48401,NULL,17436,1,'2021-09-27 23:01:35','2021-09-27 23:01:35','c9037979-ef3e-4a28-a582-3f56956e5ae6'),(9343,69,48401,NULL,17436,1,'2021-09-27 23:01:35','2021-09-27 23:01:35','ba19f4f7-c75a-4905-80c8-9b47d9a29126'),(9344,85,48401,NULL,17964,1,'2021-09-27 23:01:35','2021-09-27 23:01:35','9e36f0e8-ebea-4228-b573-9078da099234'),(9345,85,48401,NULL,17965,2,'2021-09-27 23:01:35','2021-09-27 23:01:35','84050fe9-ea40-4c8b-8819-fb5dca71533c'),(9346,85,48401,NULL,17971,3,'2021-09-27 23:01:35','2021-09-27 23:01:35','a9fadef7-2e7e-4fb5-8bd3-86fbee94e34f'),(9351,184,17660,NULL,17431,1,'2021-09-27 23:02:00','2021-09-27 23:02:00','05d9a995-7936-4555-80e7-c4316ca20323'),(9352,184,48403,NULL,17431,1,'2021-09-27 23:02:00','2021-09-27 23:02:00','13072f32-9c35-4fb2-b169-b1d06f4fab79'),(9353,69,48403,NULL,17431,1,'2021-09-27 23:02:00','2021-09-27 23:02:00','78c593e1-6f0b-4f88-9475-e899998c4261'),(9354,85,48403,NULL,17968,1,'2021-09-27 23:02:00','2021-09-27 23:02:00','4390fbf7-7e72-48b7-aa23-b311c0fafafe'),(9355,85,48403,NULL,17971,2,'2021-09-27 23:02:00','2021-09-27 23:02:00','37ebaf01-706a-4830-8299-3712aa8e5af3'),(9360,184,17654,NULL,17433,1,'2021-09-27 23:02:16','2021-09-27 23:02:16','f8a04f01-9b03-45dc-987a-14be422d3235'),(9361,184,48405,NULL,17433,1,'2021-09-27 23:02:16','2021-09-27 23:02:16','7992b017-fddb-48e0-92e8-aec85d83a486'),(9362,69,48405,NULL,17433,1,'2021-09-27 23:02:16','2021-09-27 23:02:16','6932bcee-99c8-4329-a9ef-6e3a57e57101'),(9363,85,48405,NULL,17964,1,'2021-09-27 23:02:16','2021-09-27 23:02:16','cae2ea23-614a-47e7-a049-1cd4263196f1'),(9364,85,48405,NULL,17968,2,'2021-09-27 23:02:16','2021-09-27 23:02:16','4057014b-145d-4f3d-80bd-2d997714f3d6'),(9365,184,48406,NULL,17436,1,'2021-09-27 23:02:26','2021-09-27 23:02:26','cf039f2e-dea4-4ab4-8797-7ba582e2ac06'),(9366,69,48406,NULL,17436,1,'2021-09-27 23:02:26','2021-09-27 23:02:26','8929a350-c5df-40e4-9eba-2b8faf7a1a2d'),(9367,85,48406,NULL,17964,1,'2021-09-27 23:02:26','2021-09-27 23:02:26','50cd5068-18da-4994-9915-5bdf22a99c3e'),(9368,85,48406,NULL,17965,2,'2021-09-27 23:02:26','2021-09-27 23:02:26','c059dc45-37ea-4bbb-b95f-f7d605168978'),(9369,85,48406,NULL,17971,3,'2021-09-27 23:02:26','2021-09-27 23:02:26','7eaeec3b-8be1-4a99-b2fa-132071677c58'),(9375,184,17644,NULL,17437,1,'2021-09-27 23:03:06','2021-09-27 23:03:06','0290e42d-22ef-458a-88af-1ef1aa8e7301'),(9376,184,48408,NULL,17437,1,'2021-09-27 23:03:06','2021-09-27 23:03:06','f42e2082-c929-48cf-9194-050a8386a072'),(9377,69,48408,NULL,17437,1,'2021-09-27 23:03:06','2021-09-27 23:03:06','c96112c1-1dac-46b0-8033-37bdf85b75e9'),(9378,85,48408,NULL,17964,1,'2021-09-27 23:03:06','2021-09-27 23:03:06','eab1bd21-f347-4535-b588-e0a57bfd10a0'),(9379,85,48408,NULL,17965,2,'2021-09-27 23:03:06','2021-09-27 23:03:06','e9bd6086-db82-42e0-990c-cb63864290a5'),(9380,85,48408,NULL,17971,3,'2021-09-27 23:03:06','2021-09-27 23:03:06','bbc79c85-c1fa-498a-a8e2-506b6e087cf5'),(9383,184,17623,NULL,17446,1,'2021-09-27 23:03:26','2021-09-27 23:03:26','7b9649f7-d811-471e-95e9-b717a7a2c925'),(9384,184,48410,NULL,17446,1,'2021-09-27 23:03:26','2021-09-27 23:03:26','dec0a7ef-a5d7-40f8-ae8a-5034479b0266'),(9385,69,48410,NULL,17446,1,'2021-09-27 23:03:26','2021-09-27 23:03:26','474e5e89-f4e0-445d-8098-336b06d0d130'),(9388,85,48411,NULL,17964,1,'2021-09-27 23:12:39','2021-09-27 23:12:39','427da028-3e83-479a-b5df-7ae643cada5d'),(9389,85,48411,NULL,17970,2,'2021-09-27 23:12:39','2021-09-27 23:12:39','bc613408-870f-4da9-9c30-174ba0bf43b9'),(9390,85,48411,NULL,17971,3,'2021-09-27 23:12:39','2021-09-27 23:12:39','a7e2ce6f-f8a7-49c9-b4ae-3352622bb598'),(9398,184,17680,NULL,48413,1,'2021-09-28 00:16:18','2021-09-28 00:16:18','e63aed83-bb4b-4798-be9b-3e85464e4f45'),(9399,69,17680,NULL,48414,1,'2021-09-28 00:16:18','2021-09-28 00:16:18','4ee68d98-a339-4a1e-9cbd-5cd15e63f778'),(9400,184,48415,NULL,48413,1,'2021-09-28 00:16:19','2021-09-28 00:16:19','a12551e8-1567-4231-82a6-0dbc825cc467'),(9401,69,48415,NULL,48414,1,'2021-09-28 00:16:19','2021-09-28 00:16:19','e41a6f48-10ab-4462-9ee3-9fc4e042268c'),(9402,85,48415,NULL,17964,1,'2021-09-28 00:16:19','2021-09-28 00:16:19','161372e0-6642-478f-af9c-8b0d3d06d290'),(9403,85,48415,NULL,17970,2,'2021-09-28 00:16:19','2021-09-28 00:16:19','9030897b-b037-4c71-b4ed-8d9c30b6e006'),(9404,85,48415,NULL,17971,3,'2021-09-28 00:16:19','2021-09-28 00:16:19','b7c428c4-864b-4fe6-bbcc-35151e5457bc'),(9488,69,44845,NULL,48452,1,'2021-09-28 07:11:32','2021-09-28 07:11:32','204b57e3-2375-46b3-a9b8-395dfdd3e4f0'),(9489,79,48454,NULL,17875,1,'2021-09-28 07:11:33','2021-09-28 07:11:33','1c532e84-315e-4dae-8144-536b97bc6678'),(9490,79,48454,NULL,17954,2,'2021-09-28 07:11:33','2021-09-28 07:11:33','dad5d587-eb20-4f72-8d5e-964c1e67ee1c'),(9491,69,48454,NULL,48452,1,'2021-09-28 07:11:33','2021-09-28 07:11:33','4e7a4af5-8850-479a-a6f8-98b2ed26a1d0'),(9492,85,48454,NULL,17964,1,'2021-09-28 07:11:33','2021-09-28 07:11:33','be58637a-397b-4a5f-929d-cad66d7aeaba'),(9493,85,48454,NULL,17966,2,'2021-09-28 07:11:33','2021-09-28 07:11:33','362c7eb1-9fcf-4640-aca6-4634d21f0e2c'),(9494,85,48454,NULL,17968,3,'2021-09-28 07:11:33','2021-09-28 07:11:33','629fc4b5-4328-43d0-be90-ecefbb117464'),(9495,85,48454,NULL,17970,4,'2021-09-28 07:11:33','2021-09-28 07:11:33','2a21ddc5-dea5-4bea-bb49-ef262a491f7c'),(9496,85,48454,NULL,17971,5,'2021-09-28 07:11:33','2021-09-28 07:11:33','6c427d66-9559-4d4d-a677-c88934ba8edb'),(9497,84,48454,NULL,18057,1,'2021-09-28 07:11:33','2021-09-28 07:11:33','c5f97205-b82f-4818-9d49-9fdd28ae8e1a'),(9498,79,48475,NULL,17875,1,'2021-09-28 07:27:43','2021-09-28 07:27:43','44784289-f4ad-4820-b5bf-0ab78c1b431e'),(9499,79,48475,NULL,17934,2,'2021-09-28 07:27:43','2021-09-28 07:27:43','c907b209-d41e-4cf9-bbc1-b98e97ad8e1e'),(9500,79,48475,NULL,17954,3,'2021-09-28 07:27:43','2021-09-28 07:27:43','2a1af7f8-e1a8-4c5e-947e-80b6d943297a'),(9501,79,48475,NULL,17956,4,'2021-09-28 07:27:43','2021-09-28 07:27:43','1c0f1a01-f9ea-4b72-bb7c-5d933f0c2aa8'),(9502,85,48475,NULL,17964,1,'2021-09-28 07:27:43','2021-09-28 07:27:43','bb67c33f-9d37-423e-b21a-667bcede7a9f'),(9503,85,48475,NULL,17966,2,'2021-09-28 07:27:43','2021-09-28 07:27:43','04b443da-1391-49af-9e41-4a9a1e7ccf50'),(9504,85,48475,NULL,17967,3,'2021-09-28 07:27:43','2021-09-28 07:27:43','22232303-83fc-4053-b94e-118e34932597'),(9505,85,48475,NULL,17968,4,'2021-09-28 07:27:43','2021-09-28 07:27:43','4573a091-b20c-4933-b9d3-090d96a7086b'),(9506,85,48475,NULL,17970,5,'2021-09-28 07:27:43','2021-09-28 07:27:43','e3091923-9890-49ee-8655-addc9ed2105c'),(9507,85,48475,NULL,17971,6,'2021-09-28 07:27:43','2021-09-28 07:27:43','359028ce-376a-4536-bd2b-4dc0f21fecd1'),(9508,84,48475,NULL,18057,1,'2021-09-28 07:27:43','2021-09-28 07:27:43','7c5c1e16-5991-4a87-9841-8812598d5bbe'),(9509,84,48475,NULL,38160,2,'2021-09-28 07:27:43','2021-09-28 07:27:43','a4e29950-34fb-44de-966c-62e87652b27f'),(9523,69,44843,NULL,48476,1,'2021-09-28 07:28:52','2021-09-28 07:28:52','dd9a3ffc-10a9-443a-b100-8e419f55c015'),(9524,79,48478,NULL,17875,1,'2021-09-28 07:28:53','2021-09-28 07:28:53','4e5b45a6-b097-4933-94fc-8148ddd285af'),(9525,79,48478,NULL,17934,2,'2021-09-28 07:28:53','2021-09-28 07:28:53','2b43fe0c-18b3-4568-ab5f-4ec3ce2e3784'),(9526,79,48478,NULL,17954,3,'2021-09-28 07:28:53','2021-09-28 07:28:53','cb64eec4-12da-444d-8ce7-7874763d4d50'),(9527,79,48478,NULL,17956,4,'2021-09-28 07:28:53','2021-09-28 07:28:53','ab2e3c5c-4d27-4a5d-8cca-d56e8da1b0f7'),(9528,69,48478,NULL,48476,1,'2021-09-28 07:28:53','2021-09-28 07:28:53','6f2155de-f88a-460f-94a5-d6ff0e835ab1'),(9529,85,48478,NULL,17964,1,'2021-09-28 07:28:53','2021-09-28 07:28:53','68629497-cd09-4556-ac91-ce192783c74a'),(9530,85,48478,NULL,17966,2,'2021-09-28 07:28:53','2021-09-28 07:28:53','cc3a8648-535e-4745-aed6-9d64569482ff'),(9531,85,48478,NULL,17967,3,'2021-09-28 07:28:53','2021-09-28 07:28:53','53cb808b-1753-4ba0-b119-559f544c61a7'),(9532,85,48478,NULL,17968,4,'2021-09-28 07:28:53','2021-09-28 07:28:53','c66e0ca0-6ad9-4fea-aeed-6a647e577859'),(9533,85,48478,NULL,17970,5,'2021-09-28 07:28:53','2021-09-28 07:28:53','141558e4-8d32-420e-9b04-abafd3be6f45'),(9534,85,48478,NULL,17971,6,'2021-09-28 07:28:53','2021-09-28 07:28:53','ede348b7-28f7-4d1b-970f-c49b3e691e49'),(9535,84,48478,NULL,18057,1,'2021-09-28 07:28:53','2021-09-28 07:28:53','ed62ef02-b7fa-43d7-9925-f810f0d98f00'),(9536,84,48478,NULL,38160,2,'2021-09-28 07:28:53','2021-09-28 07:28:53','3400e3f1-b416-4788-9eb0-d8813ba045fb'),(9550,69,44841,NULL,48532,1,'2021-09-30 03:36:52','2021-09-30 03:36:52','17068957-3f9b-474d-806c-8f772f52208a'),(9551,79,48534,NULL,17875,1,'2021-09-30 03:36:52','2021-09-30 03:36:52','6c9212af-5846-43b4-9035-403975d0f57a'),(9553,79,48534,NULL,17881,3,'2021-09-30 03:36:52','2021-09-30 03:36:52','01c59b49-a131-48b0-936b-ad444844dd01'),(9554,79,48534,NULL,1,4,'2021-09-30 03:36:52','2021-09-30 03:36:52','4107a59d-de4a-49a7-8177-bf38d2d44a82'),(9555,79,48534,NULL,17954,5,'2021-09-30 03:36:52','2021-09-30 03:36:52','cae424fd-14c0-42c7-9efb-d2c9b83a88b6'),(9556,79,48534,NULL,17956,6,'2021-09-30 03:36:52','2021-09-30 03:36:52','50b20fd3-0a70-4dd4-971c-fba6b191c74e'),(9557,69,48534,NULL,48532,1,'2021-09-30 03:36:52','2021-09-30 03:36:52','bf3a692c-90a1-4080-923d-3b6a074f3cfc'),(9558,85,48534,NULL,17964,1,'2021-09-30 03:36:52','2021-09-30 03:36:52','16e25e05-fdd7-4585-a0e8-4e89eb879917'),(9559,85,48534,NULL,17968,2,'2021-09-30 03:36:52','2021-09-30 03:36:52','fa4ebd2a-1b39-4f73-b0f6-87d021f21b92'),(9560,85,48534,NULL,17970,3,'2021-09-30 03:36:52','2021-09-30 03:36:52','6a8d64ab-4693-4c8e-9e55-3e9506e79fd4'),(9561,85,48534,NULL,17971,4,'2021-09-30 03:36:52','2021-09-30 03:36:52','218a25a6-5680-4d54-a704-4378d5ed7d4a'),(9562,84,48534,NULL,18057,1,'2021-09-30 03:36:52','2021-09-30 03:36:52','33067d3f-48c3-4bf6-86d4-29b28c5e9203'),(9563,84,48534,NULL,38160,2,'2021-09-30 03:36:52','2021-09-30 03:36:52','207ab1e5-dad0-4935-806f-a62b05e21808'),(9577,69,44837,NULL,48535,1,'2021-09-30 03:43:12','2021-09-30 03:43:12','769cfdd2-54ce-4d61-8189-bb1c93983c31'),(9578,79,48537,NULL,17875,1,'2021-09-30 03:43:13','2021-09-30 03:43:13','beeca75e-85f8-4e99-89b9-7f6a92e85f11'),(9580,79,48537,NULL,17934,3,'2021-09-30 03:43:13','2021-09-30 03:43:13','fa94f96e-c8e2-49e1-9a34-6341df45ace5'),(9581,79,48537,NULL,17954,4,'2021-09-30 03:43:13','2021-09-30 03:43:13','26ee2949-4a45-4883-b5d4-9cfd2a45eb72'),(9582,79,48537,NULL,17956,5,'2021-09-30 03:43:13','2021-09-30 03:43:13','0e76a52d-da64-41d6-9a5b-845fcf5add27'),(9583,69,48537,NULL,48535,1,'2021-09-30 03:43:13','2021-09-30 03:43:13','116fa213-a477-4eb6-bf76-b93363a9ef5c'),(9584,85,48537,NULL,17964,1,'2021-09-30 03:43:13','2021-09-30 03:43:13','5dd15262-141c-43ca-8005-ba11f35f53e6'),(9585,85,48537,NULL,17965,2,'2021-09-30 03:43:13','2021-09-30 03:43:13','d99a120e-d8d5-4f52-9e8d-840d05d3e933'),(9586,85,48537,NULL,17966,3,'2021-09-30 03:43:13','2021-09-30 03:43:13','8b0956fd-3279-4728-8eea-b2f298507255'),(9587,85,48537,NULL,17968,4,'2021-09-30 03:43:13','2021-09-30 03:43:13','3b004217-1438-4b9e-85ce-67371eb36ca6'),(9588,85,48537,NULL,17969,5,'2021-09-30 03:43:13','2021-09-30 03:43:13','239104b6-9d31-44d8-acca-df63fc7b5861'),(9589,85,48537,NULL,17971,6,'2021-09-30 03:43:13','2021-09-30 03:43:13','602ab0e8-a902-4cd8-8d0c-4767f29560b1'),(9590,84,48537,NULL,38159,1,'2021-09-30 03:43:13','2021-09-30 03:43:13','03355084-a1bc-4fc7-9fc2-37d6fbad4766'),(9603,69,40506,NULL,48538,1,'2021-09-30 03:47:30','2021-09-30 03:47:30','ebe68389-fb1e-42f6-971d-cbebea60c2d9'),(9604,79,48540,NULL,17875,1,'2021-09-30 03:47:30','2021-09-30 03:47:30','73766478-f01a-420b-af50-9df274a90ae4'),(9607,79,48540,NULL,17934,4,'2021-09-30 03:47:30','2021-09-30 03:47:30','55950884-ce08-4a4c-ab4e-eba1721c8d62'),(9608,79,48540,NULL,17956,5,'2021-09-30 03:47:30','2021-09-30 03:47:30','ce388f68-81f3-4822-908d-0c3e3799de3c'),(9609,69,48540,NULL,48538,1,'2021-09-30 03:47:30','2021-09-30 03:47:30','02f6c498-2a81-47d2-9de5-1bdbc1fa41ea'),(9610,85,48540,NULL,17964,1,'2021-09-30 03:47:30','2021-09-30 03:47:30','a9174f48-55f8-4c7b-ad5b-700ebf73cc3a'),(9611,85,48540,NULL,17966,2,'2021-09-30 03:47:30','2021-09-30 03:47:30','1dcb3af5-c06d-4ee2-8d00-c3c705cc4436'),(9612,85,48540,NULL,17968,3,'2021-09-30 03:47:30','2021-09-30 03:47:30','d66e6bcc-2506-447b-8a4b-63e02f27b7cc'),(9613,85,48540,NULL,17970,4,'2021-09-30 03:47:30','2021-09-30 03:47:30','e118617c-e93b-4d8d-99a6-12f9fabfeca1'),(9614,85,48540,NULL,17971,5,'2021-09-30 03:47:30','2021-09-30 03:47:30','585ba012-520f-4d55-9dad-44a88f40ddfb'),(9615,84,48540,NULL,38157,1,'2021-09-30 03:47:30','2021-09-30 03:47:30','253f74b2-cc62-409c-9a45-33ecc6c9077c'),(9617,69,18176,NULL,48541,1,'2021-09-30 03:51:18','2021-09-30 03:51:18','44880298-2f15-4bcd-aadb-fb5dad094c73'),(9618,69,48543,NULL,48541,1,'2021-09-30 03:51:18','2021-09-30 03:51:18','20b10e64-63d9-4bba-a4ba-c61237e34f8d'),(9634,79,48546,NULL,17875,1,'2021-09-30 03:54:04','2021-09-30 03:54:04','b605bba5-e32b-4bcc-8ffe-397b82de2def'),(9636,79,48546,NULL,17934,3,'2021-09-30 03:54:04','2021-09-30 03:54:04','fdd02a53-6c3b-464a-9be6-cefc822730b9'),(9637,79,48546,NULL,17881,4,'2021-09-30 03:54:04','2021-09-30 03:54:04','ddf9c695-aa61-4793-98fd-ec00d2605534'),(9638,79,48546,NULL,17954,5,'2021-09-30 03:54:04','2021-09-30 03:54:04','45743848-d967-4edd-9df7-898a2e65767b'),(9639,79,48546,NULL,17956,6,'2021-09-30 03:54:04','2021-09-30 03:54:04','eac0e74c-1a5a-43b0-88e8-b207be2a3ef5'),(9640,69,48546,NULL,48545,1,'2021-09-30 03:54:04','2021-09-30 03:54:04','3f4a5625-5098-4243-bec5-22c1e4f9628e'),(9641,85,48546,NULL,17964,1,'2021-09-30 03:54:04','2021-09-30 03:54:04','6d2c1725-c3da-426c-974d-fa61eb9f2441'),(9642,85,48546,NULL,17965,2,'2021-09-30 03:54:04','2021-09-30 03:54:04','3021be69-9fc9-41ae-9a38-1986c58b52c5'),(9643,85,48546,NULL,17969,3,'2021-09-30 03:54:04','2021-09-30 03:54:04','f19a682c-287f-4ad6-9271-70744ee39194'),(9644,85,48546,NULL,17970,4,'2021-09-30 03:54:04','2021-09-30 03:54:04','36a5c663-ea4d-45f3-acc8-37b723b5c8f0'),(9645,85,48546,NULL,17971,5,'2021-09-30 03:54:04','2021-09-30 03:54:04','6c7a1440-000d-4809-9cdb-edcf93c26a8c'),(9646,84,48546,NULL,38161,1,'2021-09-30 03:54:04','2021-09-30 03:54:04','0020b96f-07bc-44e7-a8bd-b381f7f81985'),(9763,191,51531,NULL,18156,1,'2021-10-01 01:02:35','2021-10-01 01:02:35','85dd485d-7fc6-4fd8-a665-c74b98207aba'),(9764,191,51534,NULL,18122,1,'2021-10-01 01:02:35','2021-10-01 01:02:35','cdb45877-2db8-43e6-b39b-323640ada11a'),(9765,191,51535,NULL,30427,1,'2021-10-01 01:02:36','2021-10-01 01:02:36','ada0a29e-2aa2-4c80-bfff-97f0f481c8d3'),(9766,191,51536,NULL,18109,1,'2021-10-01 01:02:36','2021-10-01 01:02:36','596ded54-79ff-4b95-85a4-137d93db3acb'),(9767,191,51537,NULL,16828,1,'2021-10-01 01:02:36','2021-10-01 01:02:36','e4333963-fd9c-4f47-8028-b2a315c4a5b2'),(9768,191,51539,NULL,40504,1,'2021-10-01 01:02:36','2021-10-01 01:02:36','8e68a3ce-f846-47f4-b0cf-c5e577e7a6fa'),(9769,191,51540,NULL,18156,1,'2021-10-01 01:02:36','2021-10-01 01:02:36','9b2518a8-63e9-4cd6-9bdd-c20c5ad11bb5'),(9776,191,51671,NULL,18122,1,'2021-10-01 01:03:20','2021-10-01 01:03:20','12db1063-c684-4b07-b736-d0fd6eca8f36'),(9777,191,51672,NULL,30427,1,'2021-10-01 01:03:20','2021-10-01 01:03:20','9e346c72-ad61-42ed-9e5d-894e592b10c8'),(9778,191,51673,NULL,18109,1,'2021-10-01 01:03:20','2021-10-01 01:03:20','616a023f-1bdb-41f6-9e3e-d3920f9cb2c2'),(9779,191,51674,NULL,16828,1,'2021-10-01 01:03:20','2021-10-01 01:03:20','3336a2a8-27b5-48a8-aebd-5b945200a6de'),(9780,191,51675,NULL,40504,1,'2021-10-01 01:03:20','2021-10-01 01:03:20','d5001aba-a3ab-47a0-97f8-d830b7f9092c'),(9781,191,51676,NULL,18156,1,'2021-10-01 01:03:20','2021-10-01 01:03:20','58f2e7a9-1372-4273-b2ec-3a0ebb7175b3'),(9790,191,51873,NULL,18156,1,'2021-10-01 01:04:10','2021-10-01 01:04:10','7177e5c2-6c26-419b-aa15-f588245fc60c'),(9791,191,51875,NULL,18122,1,'2021-10-01 01:04:10','2021-10-01 01:04:10','1ca6d56f-df72-45cd-a409-e9387174c49a'),(9792,191,51876,NULL,30427,1,'2021-10-01 01:04:10','2021-10-01 01:04:10','dce703b0-86b9-4941-aa77-756fae03b11d'),(9793,191,51877,NULL,18109,1,'2021-10-01 01:04:10','2021-10-01 01:04:10','ee3bb4fc-c8c3-4a07-ab22-ee5d975afb4c'),(9794,191,51878,NULL,16828,1,'2021-10-01 01:04:10','2021-10-01 01:04:10','9758e5a7-e9aa-462c-97f3-541ab97def8c'),(9795,191,51879,NULL,40504,1,'2021-10-01 01:04:10','2021-10-01 01:04:10','9980bfbd-c96e-45be-ac40-9bfe44957df1'),(17024,85,58762,NULL,17964,1,'2021-10-01 06:51:23','2021-10-01 06:51:23','0eeba4bd-7699-428c-8aa1-42577bb336e4'),(17025,85,58762,NULL,17965,2,'2021-10-01 06:51:23','2021-10-01 06:51:23','69ce87a3-a991-4546-a9a0-845b09d384e8'),(17026,85,58762,NULL,17970,3,'2021-10-01 06:51:23','2021-10-01 06:51:23','e298ee99-78cf-4fe8-bdbb-6ff65332c3b5'),(17027,85,58762,NULL,17971,4,'2021-10-01 06:51:23','2021-10-01 06:51:23','cc3b86b9-e97d-448f-b8aa-aac22ec9eec5'),(17028,84,58762,NULL,38158,1,'2021-10-01 06:51:29','2021-10-01 06:51:29','a898eaa8-cd3c-4f52-9ed2-683b050a583c'),(17029,85,58763,NULL,17964,1,'2021-10-08 02:09:53','2021-10-08 02:09:53','478a797f-1993-430e-8187-79f0b30747ac'),(17030,85,58763,NULL,17965,2,'2021-10-08 02:09:53','2021-10-08 02:09:53','821abfc4-24e9-40ce-9653-4322e777d46a'),(17031,85,58763,NULL,17970,3,'2021-10-08 02:09:53','2021-10-08 02:09:53','394f3333-f13a-4c17-8341-1e85661fb01c'),(17032,85,58763,NULL,17971,4,'2021-10-08 02:09:53','2021-10-08 02:09:53','9085d97b-fb50-4d29-beb5-e774badc3169'),(17033,84,58763,NULL,38158,1,'2021-10-08 02:09:53','2021-10-08 02:09:53','d422be60-223c-4bff-8559-321b6dc01f22'),(17034,79,58769,NULL,17875,1,'2021-10-14 05:45:58','2021-10-14 05:45:58','5bed54d2-8976-4ffc-a9b4-b3b18a130b4f'),(17035,79,58769,NULL,17954,2,'2021-10-14 05:45:58','2021-10-14 05:45:58','de06ad9b-851a-468f-9f07-5fe008f9e55b'),(17036,85,58769,NULL,17964,1,'2021-10-14 05:45:58','2021-10-14 05:45:58','9e92ee04-0495-4c68-a5db-d56b3f40f74d'),(17037,85,58769,NULL,17966,2,'2021-10-14 05:45:58','2021-10-14 05:45:58','4bcb277d-d3de-4957-84e5-a4eff3f5e4db'),(17038,85,58769,NULL,17967,3,'2021-10-14 05:45:58','2021-10-14 05:45:58','eb41d1b7-bb26-401c-b2a3-08682eb2e78a'),(17039,85,58769,NULL,17968,4,'2021-10-14 05:45:58','2021-10-14 05:45:58','680924f9-9ff8-4098-a410-7f32ce6bdf0a'),(17040,85,58769,NULL,17969,5,'2021-10-14 05:45:58','2021-10-14 05:45:58','abcc2e9b-9329-485e-97e9-0a8bee0f1b6a'),(17041,85,58769,NULL,17970,6,'2021-10-14 05:45:58','2021-10-14 05:45:58','c710bf0a-28ee-438c-b97c-5b4c75ac6e5c'),(17042,85,58769,NULL,17971,7,'2021-10-14 05:45:58','2021-10-14 05:45:58','f4a4aeea-b118-445e-a496-9f541d26adde'),(17043,84,58769,NULL,18057,1,'2021-10-14 05:45:58','2021-10-14 05:45:58','20eaf87c-ee7d-4d9a-9b1c-bf3e4d3b1ab4'),(17044,79,58770,NULL,17875,1,'2021-10-14 05:48:03','2021-10-14 05:48:03','8ddfa590-a4d1-41c1-a5ca-a74afa91475e'),(17045,79,58770,NULL,17954,2,'2021-10-14 05:48:03','2021-10-14 05:48:03','85825ed2-1133-4e5f-be7a-947c6aa71ab4'),(17046,79,58770,NULL,17956,3,'2021-10-14 05:48:03','2021-10-14 05:48:03','1a46542a-1ae6-475a-9fcd-f92baee40cc1'),(17047,85,58770,NULL,17964,1,'2021-10-14 05:48:03','2021-10-14 05:48:03','77007bc5-517d-414e-b47e-779edb658cd6'),(17048,85,58770,NULL,17965,2,'2021-10-14 05:48:03','2021-10-14 05:48:03','87ce855d-6a37-42a3-974f-e06e702bf10b'),(17049,85,58770,NULL,17966,3,'2021-10-14 05:48:03','2021-10-14 05:48:03','bd54d13b-6de2-4e78-8c6f-071806700bd3'),(17050,85,58770,NULL,17967,4,'2021-10-14 05:48:03','2021-10-14 05:48:03','b84dcb1a-bc3e-48ac-8bc3-e68a80e75f03'),(17051,85,58770,NULL,17968,5,'2021-10-14 05:48:03','2021-10-14 05:48:03','a22d808b-05b8-42f7-a88f-de23944f36f5'),(17052,85,58770,NULL,17970,6,'2021-10-14 05:48:03','2021-10-14 05:48:03','5bbba266-141a-4d79-8838-969a748b07b6'),(17053,85,58770,NULL,17971,7,'2021-10-14 05:48:03','2021-10-14 05:48:03','609035cb-ffd0-4310-b1f2-d7695ae5f7c4'),(17054,84,58770,NULL,18057,1,'2021-10-14 05:48:03','2021-10-14 05:48:03','b6df8315-5eba-4a30-a536-e2feed55f417'),(20066,69,18156,NULL,61819,1,'2021-10-18 04:17:46','2021-10-18 04:17:46','2e579591-fce6-4293-a90b-4afb5a4a3c4c'),(20067,79,61820,NULL,17875,1,'2021-10-18 04:17:46','2021-10-18 04:17:46','805fc444-74f4-4220-8a3a-f58366778954'),(20069,79,61820,NULL,17934,3,'2021-10-18 04:17:46','2021-10-18 04:17:46','9ba3dda7-1e1d-4111-bb33-29da2475098b'),(20070,79,61820,NULL,17881,4,'2021-10-18 04:17:46','2021-10-18 04:17:46','f2893191-7866-4e0f-b952-b6b320bcfc94'),(20071,79,61820,NULL,17954,5,'2021-10-18 04:17:46','2021-10-18 04:17:46','1813fc41-4be7-4526-b4c9-2471754fd0cd'),(20072,79,61820,NULL,17956,6,'2021-10-18 04:17:46','2021-10-18 04:17:46','70a4798f-a108-4108-87c8-2c5b9540a4ac'),(20073,69,61820,NULL,61819,1,'2021-10-18 04:17:46','2021-10-18 04:17:46','ae767e58-dfb0-4e01-8ccc-6c3eff2897f3'),(20074,85,61820,NULL,17964,1,'2021-10-18 04:17:46','2021-10-18 04:17:46','b49b2a99-e176-455d-995d-72cf072401a4'),(20075,85,61820,NULL,17965,2,'2021-10-18 04:17:46','2021-10-18 04:17:46','84b6ddac-ee65-4859-800e-b3cd2d4eda00'),(20076,85,61820,NULL,17969,3,'2021-10-18 04:17:46','2021-10-18 04:17:46','32686a74-b712-476b-bd5a-89df0230d5fb'),(20077,85,61820,NULL,17970,4,'2021-10-18 04:17:46','2021-10-18 04:17:46','2f45dda2-65c9-402f-a0ae-1a2a472acc74'),(20078,85,61820,NULL,17971,5,'2021-10-18 04:17:46','2021-10-18 04:17:46','0f552147-210e-4ead-96cb-c6ee36acb27b'),(20079,84,61820,NULL,38161,1,'2021-10-18 04:17:46','2021-10-18 04:17:46','014fd928-ccac-4b14-97db-f2ba04d24695'),(20095,79,18109,NULL,17934,1,'2021-10-18 04:50:02','2021-10-18 04:50:02','cf579ee8-da77-4874-a78f-049827412053'),(20096,79,18109,NULL,17875,2,'2021-10-18 04:50:02','2021-10-18 04:50:02','7c9044f3-0d67-4cdc-b2c9-cd86b8989875'),(20098,79,18109,NULL,17954,3,'2021-10-18 04:50:02','2022-05-30 01:42:50','8413a725-1c71-4fd0-af52-d5a143b39167'),(20099,79,18109,NULL,17956,4,'2021-10-18 04:50:02','2022-05-30 01:42:50','ef5a7b2d-c7d8-4ad9-ad44-b42c2b469001'),(20100,69,18109,NULL,61823,1,'2021-10-18 04:50:02','2021-10-18 04:50:02','e128716c-1e32-42d4-8d1c-1b1d00d003ce'),(20101,79,61824,NULL,17934,1,'2021-10-18 04:50:02','2021-10-18 04:50:02','a613442d-e994-40a4-ad1a-603aeb2e600f'),(20102,79,61824,NULL,17875,2,'2021-10-18 04:50:02','2021-10-18 04:50:02','48959bf5-ea5b-474e-9ef7-a1f268af1205'),(20104,79,61824,NULL,17954,4,'2021-10-18 04:50:02','2021-10-18 04:50:02','6768657f-20a3-4267-81a2-89aa5a582d28'),(20105,79,61824,NULL,17956,5,'2021-10-18 04:50:02','2021-10-18 04:50:02','ed320d72-bde8-45b6-9ef9-cc6f59ed546c'),(20106,69,61824,NULL,61823,1,'2021-10-18 04:50:02','2021-10-18 04:50:02','75a58b3f-d019-4076-bab5-4759cd2df0df'),(20107,85,61824,NULL,17964,1,'2021-10-18 04:50:02','2021-10-18 04:50:02','0d587b83-242b-4a76-94dd-01dbfa3fb815'),(20108,85,61824,NULL,17965,2,'2021-10-18 04:50:02','2021-10-18 04:50:02','59f313c3-2001-42c4-be65-b4c33d18f6e3'),(20109,85,61824,NULL,17966,3,'2021-10-18 04:50:02','2021-10-18 04:50:02','3e345c4c-8390-4430-9fc9-60cd25cb0e66'),(20110,85,61824,NULL,17967,4,'2021-10-18 04:50:02','2021-10-18 04:50:02','f09ea8e1-5ef4-4f62-86b2-ca7b1818c5a6'),(20111,85,61824,NULL,17968,5,'2021-10-18 04:50:02','2021-10-18 04:50:02','833838ae-ddd7-47a3-a663-1e3042bc1d61'),(20112,85,61824,NULL,17969,6,'2021-10-18 04:50:02','2021-10-18 04:50:02','e0689888-9dad-4645-8b5e-319d45844551'),(20113,84,61824,NULL,18057,1,'2021-10-18 04:50:02','2021-10-18 04:50:02','e053be31-fdd1-4001-a2d7-1bcf42b15b87'),(20114,84,61824,NULL,38161,2,'2021-10-18 04:50:02','2021-10-18 04:50:02','2b30e474-c7c2-43ee-8877-4af6d6f79993'),(20134,69,40504,NULL,61826,1,'2021-10-18 04:54:06','2021-10-18 04:54:06','f0458b44-644a-42be-930d-33dad4f616c7'),(20135,79,61827,NULL,17875,1,'2021-10-18 04:54:06','2021-10-18 04:54:06','237d92b1-3c29-4da2-8a40-d2bc36b9d695'),(20136,79,61827,NULL,17887,2,'2021-10-18 04:54:06','2021-10-18 04:54:06','67cf1ee5-8a02-4c50-a404-bb36c73697ce'),(20137,79,61827,NULL,17899,3,'2021-10-18 04:54:06','2021-10-18 04:54:06','6f310875-ddc1-4991-9bc7-4541e43f19ba'),(20139,79,61827,NULL,17934,5,'2021-10-18 04:54:06','2021-10-18 04:54:06','b8d6c164-73b7-48ce-b7cb-32cbab6f89a5'),(20140,79,61827,NULL,17941,6,'2021-10-18 04:54:06','2021-10-18 04:54:06','b67129c0-cdd0-4b86-83f8-c0f5902f9cef'),(20141,79,61827,NULL,1,7,'2021-10-18 04:54:06','2021-10-18 04:54:06','f602099e-21a0-494b-be44-00ac3dae9167'),(20142,79,61827,NULL,17956,8,'2021-10-18 04:54:06','2021-10-18 04:54:06','da719254-afb3-4d19-aa26-0cf809d6f27a'),(20143,79,61827,NULL,17996,9,'2021-10-18 04:54:06','2021-10-18 04:54:06','075b76c0-598a-437a-80ce-19006ceb597c'),(20144,69,61827,NULL,61826,1,'2021-10-18 04:54:06','2021-10-18 04:54:06','fe4c93e2-e787-4ba9-b98d-611fd2606025'),(20145,85,61827,NULL,17964,1,'2021-10-18 04:54:06','2021-10-18 04:54:06','58df2f90-ce21-48d2-ab04-2110f26d0e65'),(20146,85,61827,NULL,17965,2,'2021-10-18 04:54:06','2021-10-18 04:54:06','0ac86540-a997-44dd-bc70-b1b7f1ef2034'),(20147,85,61827,NULL,17966,3,'2021-10-18 04:54:06','2021-10-18 04:54:06','346848ed-f7f7-44de-a730-2b0780503a81'),(20148,85,61827,NULL,17968,4,'2021-10-18 04:54:06','2021-10-18 04:54:06','5ed2a44f-9a1a-43a3-9fdd-455e877d8d3c'),(20149,85,61827,NULL,17969,5,'2021-10-18 04:54:06','2021-10-18 04:54:06','458555da-7147-4cf0-a792-cb6248fb9fad'),(20150,85,61827,NULL,17970,6,'2021-10-18 04:54:06','2021-10-18 04:54:06','4fac149c-99f6-4511-bf20-437f8c3ed40d'),(20151,85,61827,NULL,17971,7,'2021-10-18 04:54:06','2021-10-18 04:54:06','e89b9342-3357-4d87-b982-3d11c3ac49ca'),(20152,84,61827,NULL,38160,1,'2021-10-18 04:54:06','2021-10-18 04:54:06','d008f863-f9c1-4f7f-bdda-2e4c88859c69'),(20167,79,61831,NULL,17934,1,'2021-10-18 06:20:17','2021-10-18 06:20:17','a8e84003-b839-4826-84c4-3de683b4e5e2'),(20168,79,61831,NULL,17875,2,'2021-10-18 06:20:17','2021-10-18 06:20:17','35ffe35e-7e04-4a62-a7af-b1eecbbefa0a'),(20170,79,61831,NULL,17954,4,'2021-10-18 06:20:17','2021-10-18 06:20:17','73a30513-c0db-453b-b189-e990a8826a6c'),(20171,79,61831,NULL,17956,5,'2021-10-18 06:20:17','2021-10-18 06:20:17','3b50df17-7d7a-422d-ba2d-e8364ca389e2'),(20172,69,61831,NULL,61823,1,'2021-10-18 06:20:17','2021-10-18 06:20:17','8bcc3af2-93f9-479c-92fd-b8746ed367c5'),(20173,85,61831,NULL,17964,1,'2021-10-18 06:20:17','2021-10-18 06:20:17','1c06dd97-35ba-4a41-bc7c-2f7dc4a2996e'),(20174,85,61831,NULL,17965,2,'2021-10-18 06:20:17','2021-10-18 06:20:17','c059ea53-55ed-4264-88f8-466e377e5e16'),(20175,85,61831,NULL,17966,3,'2021-10-18 06:20:17','2021-10-18 06:20:17','6f917a2b-a910-4f17-8a9c-63c143e3514d'),(20176,85,61831,NULL,17967,4,'2021-10-18 06:20:17','2021-10-18 06:20:17','4b519e84-4a2f-48ac-b445-d88fccf1e472'),(20177,85,61831,NULL,17968,5,'2021-10-18 06:20:17','2021-10-18 06:20:17','862c15df-d875-4f6e-9a3f-9be4375dfacc'),(20178,85,61831,NULL,17969,6,'2021-10-18 06:20:17','2021-10-18 06:20:17','94eefa80-7d4f-481d-8008-93aee046f8da'),(20179,84,61831,NULL,18057,1,'2021-10-18 06:20:17','2021-10-18 06:20:17','36f20641-4898-41f6-84fa-566aabe781f5'),(20180,84,61831,NULL,38161,2,'2021-10-18 06:20:17','2021-10-18 06:20:17','971b1a87-6bda-46bc-b70e-47f0bcd1aa56'),(20197,79,61833,NULL,17875,1,'2021-10-18 06:53:58','2021-10-18 06:53:58','55ab17e4-6db6-4549-b1a6-f198d5b89623'),(20200,79,61833,NULL,17934,4,'2021-10-18 06:53:58','2021-10-18 06:53:58','813bd871-2082-4eb0-8efb-684261af1ee3'),(20201,79,61833,NULL,30433,5,'2021-10-18 06:53:58','2021-10-18 06:53:58','23a55768-ca31-43d0-a3cd-7224c35ecabc'),(20202,79,61833,NULL,1,6,'2021-10-18 06:53:58','2021-10-18 06:53:58','7cbab1e0-3bd6-435b-a689-e0681ab97cc3'),(20203,79,61833,NULL,17954,7,'2021-10-18 06:53:58','2021-10-18 06:53:58','b1a85e95-24ea-4a5f-8c38-9b3abc4b0c90'),(20204,79,61833,NULL,17956,8,'2021-10-18 06:53:58','2021-10-18 06:53:58','8dfb6beb-fffb-46bd-b793-3f207e6e6a0f'),(20205,69,61833,NULL,38123,1,'2021-10-18 06:53:58','2021-10-18 06:53:58','fd587f91-3f3d-454a-b23d-aa23dd4358d2'),(20206,85,61833,NULL,17964,1,'2021-10-18 06:53:58','2021-10-18 06:53:58','fe0737d2-c0ee-4159-96b4-c9d670e9c024'),(20207,85,61833,NULL,17965,2,'2021-10-18 06:53:58','2021-10-18 06:53:58','5dc20e21-47ce-47e3-8c15-491ee58cb556'),(20208,85,61833,NULL,17966,3,'2021-10-18 06:53:58','2021-10-18 06:53:58','8d57c7c2-f7c8-4ed9-a139-dee92b06bce1'),(20209,85,61833,NULL,17968,4,'2021-10-18 06:53:58','2021-10-18 06:53:58','e7c07c96-43e4-4ec6-a8e6-3936deeedb1c'),(20210,85,61833,NULL,17970,5,'2021-10-18 06:53:58','2021-10-18 06:53:58','a8fc1725-eef8-4cb5-b9f0-0c0eb5a9d6ea'),(20211,85,61833,NULL,17971,6,'2021-10-18 06:53:58','2021-10-18 06:53:58','4a458212-b5e3-46a6-834a-8298affb8cf2'),(20212,84,61833,NULL,38157,1,'2021-10-18 06:53:58','2021-10-18 06:53:58','404a0ac5-da7f-4c94-b495-d61e54c14840'),(20226,79,61845,NULL,17875,1,'2021-10-18 07:16:09','2021-10-18 07:16:09','0b1ae22c-bbe9-4c62-a262-32b9df2e2b23'),(20228,79,61845,NULL,17934,3,'2021-10-18 07:16:09','2021-10-18 07:16:09','e8386d4a-b519-410f-88f5-f56a1753e22f'),(20229,79,61845,NULL,17881,4,'2021-10-18 07:16:09','2021-10-18 07:16:09','2a0a7a3f-719e-49ac-86ab-ac6851309c12'),(20230,79,61845,NULL,17954,5,'2021-10-18 07:16:09','2021-10-18 07:16:09','d9bcca06-1a95-4627-bebd-4cc2233b30d5'),(20231,79,61845,NULL,17956,6,'2021-10-18 07:16:09','2021-10-18 07:16:09','3430b8bf-f9dd-4d6f-9fa7-cce491e55bc6'),(20232,69,61845,NULL,61819,1,'2021-10-18 07:16:09','2021-10-18 07:16:09','55e857db-7329-4057-b6a3-83c5ddfbed02'),(20233,85,61845,NULL,17964,1,'2021-10-18 07:16:09','2021-10-18 07:16:09','9796ec32-7428-492a-bf1a-fe40214f5697'),(20234,85,61845,NULL,17965,2,'2021-10-18 07:16:09','2021-10-18 07:16:09','45478864-4ff4-46b6-bac1-599972afe97c'),(20235,85,61845,NULL,17969,3,'2021-10-18 07:16:09','2021-10-18 07:16:09','17dc36fb-dbcb-461e-abf7-f48f9e3ea51c'),(20236,85,61845,NULL,17970,4,'2021-10-18 07:16:09','2021-10-18 07:16:09','3ee81645-e7a6-46e2-8b21-9ca44a893b19'),(20237,85,61845,NULL,17971,5,'2021-10-18 07:16:09','2021-10-18 07:16:09','60f53ff8-e824-4c83-aadc-e348c1a4a145'),(20238,84,61845,NULL,38161,1,'2021-10-18 07:16:09','2021-10-18 07:16:09','6af36146-67ff-4c50-a437-4fa1861bd278'),(20252,79,61848,NULL,17875,1,'2021-10-18 07:27:33','2021-10-18 07:27:33','7cb78389-bd45-423f-8fef-f28ef57c0879'),(20254,79,61848,NULL,17934,3,'2021-10-18 07:27:33','2021-10-18 07:27:33','b27b9433-1df7-4a66-a585-5e0a93c0c6fb'),(20255,79,61848,NULL,17881,4,'2021-10-18 07:27:33','2021-10-18 07:27:33','ce983143-b517-44fb-93a2-3b73e0daf7aa'),(20256,79,61848,NULL,17954,5,'2021-10-18 07:27:33','2021-10-18 07:27:33','a0885f73-d97c-4604-b6a7-b043a7010bad'),(20257,79,61848,NULL,17956,6,'2021-10-18 07:27:33','2021-10-18 07:27:33','c050e68a-96b2-4a57-8ece-2c22dc2d8f82'),(20258,69,61848,NULL,61819,1,'2021-10-18 07:27:33','2021-10-18 07:27:33','8fbbd719-ecc3-4571-906f-466a62d922c5'),(20259,85,61848,NULL,17964,1,'2021-10-18 07:27:33','2021-10-18 07:27:33','f7626a91-065a-462e-8b2d-9c5470d9b763'),(20260,85,61848,NULL,17965,2,'2021-10-18 07:27:33','2021-10-18 07:27:33','47441de1-7631-4379-a81d-dd3f32eb0cbd'),(20261,85,61848,NULL,17969,3,'2021-10-18 07:27:33','2021-10-18 07:27:33','a3250b5a-2069-420d-8bfc-265ca57c2cfc'),(20262,85,61848,NULL,17970,4,'2021-10-18 07:27:33','2021-10-18 07:27:33','afd846b4-2aa0-465e-b72c-eed4e9a39218'),(20263,85,61848,NULL,17971,5,'2021-10-18 07:27:33','2021-10-18 07:27:33','faa4c5dd-e40b-4b87-b84b-81a5fe813ea5'),(20264,84,61848,NULL,38161,1,'2021-10-18 07:27:33','2021-10-18 07:27:33','586a28dc-262c-41b7-aa58-6179abb2c6d6'),(20265,79,61849,NULL,17875,1,'2021-10-18 07:29:57','2021-10-18 07:29:57','fb87a0f0-f963-45d2-b212-6a32dcac18ef'),(20267,79,61849,NULL,17934,3,'2021-10-18 07:29:57','2021-10-18 07:29:57','80810817-c3af-48bd-a72f-a99163991d7d'),(20268,79,61849,NULL,17881,4,'2021-10-18 07:29:57','2021-10-18 07:29:57','99d21860-4c6e-438a-ab5e-68d44ff4c712'),(20269,79,61849,NULL,17954,5,'2021-10-18 07:29:57','2021-10-18 07:29:57','f6d010f3-f7e7-4937-9cb5-dd652ab47bd7'),(20270,79,61849,NULL,17956,6,'2021-10-18 07:29:57','2021-10-18 07:29:57','7e5b6daf-0dec-42e2-be5a-aa4bea5e9086'),(20271,69,61849,NULL,61819,1,'2021-10-18 07:29:57','2021-10-18 07:29:57','24dc84b7-3667-4e6d-9cb1-2ec51cfcde4a'),(20272,85,61849,NULL,17964,1,'2021-10-18 07:29:57','2021-10-18 07:29:57','bb991a17-e258-4e33-a36c-a0ddd82dfeba'),(20273,85,61849,NULL,17965,2,'2021-10-18 07:29:57','2021-10-18 07:29:57','98b11654-c757-40d2-b420-3b3bf784745c'),(20274,85,61849,NULL,17969,3,'2021-10-18 07:29:57','2021-10-18 07:29:57','d07fc84f-8dcf-47b9-a030-9dfd0affec2a'),(20275,85,61849,NULL,17970,4,'2021-10-18 07:29:57','2021-10-18 07:29:57','7d109695-b0cc-42b2-8d0a-72ef44386c0d'),(20276,85,61849,NULL,17971,5,'2021-10-18 07:29:57','2021-10-18 07:29:57','0364ccbc-3075-46d2-ad46-ea892e52c91d'),(20277,84,61849,NULL,38161,1,'2021-10-18 07:29:57','2021-10-18 07:29:57','95163eea-4f32-4d65-bf72-67150983fc54'),(20291,79,61852,NULL,17875,1,'2021-10-18 07:36:35','2021-10-18 07:36:35','10dfa33f-8730-4247-a513-d71bdf1c546a'),(20293,79,61852,NULL,17934,3,'2021-10-18 07:36:35','2021-10-18 07:36:35','aae66556-1e6f-45fd-8b5a-7029b89f6e41'),(20294,79,61852,NULL,17881,4,'2021-10-18 07:36:35','2021-10-18 07:36:35','47ed0f33-80b1-42d8-9c1a-e43d8c465ebb'),(20295,79,61852,NULL,17954,5,'2021-10-18 07:36:35','2021-10-18 07:36:35','984f2d3d-4d96-4a10-9ae1-e1f83d34ce67'),(20296,79,61852,NULL,17956,6,'2021-10-18 07:36:35','2021-10-18 07:36:35','c58e3e6b-6483-41fd-90dc-177ae2c54ec3'),(20297,69,61852,NULL,61819,1,'2021-10-18 07:36:35','2021-10-18 07:36:35','c582026e-ba45-4397-ad12-c91ecd599b08'),(20298,85,61852,NULL,17964,1,'2021-10-18 07:36:35','2021-10-18 07:36:35','75b532ee-43f7-4d47-8669-1e017b35f747'),(20299,85,61852,NULL,17965,2,'2021-10-18 07:36:35','2021-10-18 07:36:35','74800fc9-0f55-4999-9cef-38778bbafe64'),(20300,85,61852,NULL,17969,3,'2021-10-18 07:36:35','2021-10-18 07:36:35','5eecc047-8fcb-4b95-ac45-21f0e8c404bb'),(20301,85,61852,NULL,17970,4,'2021-10-18 07:36:35','2021-10-18 07:36:35','d01e47a6-0cd9-4a31-99a7-81a33bb32925'),(20302,85,61852,NULL,17971,5,'2021-10-18 07:36:35','2021-10-18 07:36:35','e8a5b645-8ccc-4fd6-9e0f-8c4d79144797'),(20303,84,61852,NULL,38161,1,'2021-10-18 07:36:35','2021-10-18 07:36:35','7e9a23a8-bb6a-4662-a21f-14958e9b797a'),(32703,79,73927,NULL,17875,1,'2021-10-19 11:27:41','2021-10-19 11:27:41','942cd31a-6f07-4e07-95b6-c2ba590c029f'),(32705,79,73927,NULL,17934,3,'2021-10-19 11:27:41','2021-10-19 11:27:41','87d22fd8-6d9a-47cd-9c1c-0403e251de79'),(32706,79,73927,NULL,17881,4,'2021-10-19 11:27:41','2021-10-19 11:27:41','c1dcaf19-3c9a-471e-a2fc-0762295e5615'),(32707,79,73927,NULL,17954,5,'2021-10-19 11:27:41','2021-10-19 11:27:41','1153e86b-d0cd-46d1-bfc2-7d744202f444'),(32708,79,73927,NULL,17956,6,'2021-10-19 11:27:41','2021-10-19 11:27:41','462f3322-c7b2-4b28-8c04-14d1f88b559d'),(32709,69,73927,NULL,61819,1,'2021-10-19 11:27:41','2021-10-19 11:27:41','cf634945-7b50-4206-913e-f2a4e43d9ea7'),(32710,85,73927,NULL,17964,1,'2021-10-19 11:27:41','2021-10-19 11:27:41','e7495f6a-5564-46b4-aea1-7eee47444639'),(32711,85,73927,NULL,17965,2,'2021-10-19 11:27:41','2021-10-19 11:27:41','3e8afea8-800e-42c7-8e7b-78681779cc26'),(32712,85,73927,NULL,17969,3,'2021-10-19 11:27:41','2021-10-19 11:27:41','5ff69b59-19ae-4a10-9d7e-27516143f127'),(32713,85,73927,NULL,17970,4,'2021-10-19 11:27:41','2021-10-19 11:27:41','232edadd-168a-4fec-8b34-eb5f6c7fd9fc'),(32714,85,73927,NULL,17971,5,'2021-10-19 11:27:41','2021-10-19 11:27:41','c88e2fe5-ae2e-40e7-b7f5-3ea7b093c55e'),(32715,84,73927,NULL,38161,1,'2021-10-19 11:27:41','2021-10-19 11:27:41','319a9b9f-963c-4640-9c4d-8292729919da'),(32729,79,73930,NULL,17875,1,'2021-10-19 11:31:42','2021-10-19 11:31:42','efc1213c-51cd-4ae3-bd09-fd51b045720c'),(32731,79,73930,NULL,17934,3,'2021-10-19 11:31:42','2021-10-19 11:31:42','3d976a18-9208-421f-9838-42d06fc21460'),(32732,79,73930,NULL,17881,4,'2021-10-19 11:31:42','2021-10-19 11:31:42','8dd2c56a-6115-482c-ace6-ea3889fb9cce'),(32733,79,73930,NULL,17954,5,'2021-10-19 11:31:42','2021-10-19 11:31:42','9af57e5b-7f62-43f9-8411-759e6f95104e'),(32734,79,73930,NULL,17956,6,'2021-10-19 11:31:42','2021-10-19 11:31:42','6ff865c9-4885-490e-9874-33b270eef51a'),(32735,69,73930,NULL,61819,1,'2021-10-19 11:31:42','2021-10-19 11:31:42','11dd36ac-caab-474b-87bc-4301c0da5e19'),(32736,85,73930,NULL,17964,1,'2021-10-19 11:31:42','2021-10-19 11:31:42','0f9b9f04-3106-404c-ba23-fddc792ad69e'),(32737,85,73930,NULL,17965,2,'2021-10-19 11:31:42','2021-10-19 11:31:42','8a0a27d9-1353-4d63-b2c7-dfd05017114e'),(32738,85,73930,NULL,17969,3,'2021-10-19 11:31:42','2021-10-19 11:31:42','e041dc0a-2c86-46a2-8236-a458d1ca30b9'),(32739,85,73930,NULL,17970,4,'2021-10-19 11:31:42','2021-10-19 11:31:42','b7742a0e-7b3d-4936-9654-08cf070df9e4'),(32740,85,73930,NULL,17971,5,'2021-10-19 11:31:42','2021-10-19 11:31:42','c5f14a28-87fe-4a3c-b37b-e0d14343dd10'),(32741,84,73930,NULL,38161,1,'2021-10-19 11:31:42','2021-10-19 11:31:42','28e89611-c720-4765-81f6-9180e1541068'),(32755,79,73942,NULL,17875,1,'2021-10-20 03:48:10','2021-10-20 03:48:10','b4232ad9-d03e-4e22-b938-d812b8dec8bf'),(32757,79,73942,NULL,17934,3,'2021-10-20 03:48:10','2021-10-20 03:48:10','c1c8243f-9dea-4acf-bef1-fc818edd144c'),(32758,79,73942,NULL,17881,4,'2021-10-20 03:48:10','2021-10-20 03:48:10','9648ce1f-22ae-4ae4-a893-f2daace00620'),(32759,79,73942,NULL,17954,5,'2021-10-20 03:48:10','2021-10-20 03:48:10','e4dcfe8a-062e-4508-9bea-1d4862840365'),(32760,79,73942,NULL,17956,6,'2021-10-20 03:48:10','2021-10-20 03:48:10','daf063b1-52fe-477c-81d6-4d22e0e2652b'),(32761,69,73942,NULL,61819,1,'2021-10-20 03:48:10','2021-10-20 03:48:10','425e7ebd-55bb-4e38-ab82-8cb6e42d7981'),(32762,85,73942,NULL,17964,1,'2021-10-20 03:48:10','2021-10-20 03:48:10','3f8d7567-0fef-44b2-8287-b73701223b21'),(32763,85,73942,NULL,17965,2,'2021-10-20 03:48:10','2021-10-20 03:48:10','3fa603fa-4d66-45f9-8578-12863d18f1b1'),(32764,85,73942,NULL,17969,3,'2021-10-20 03:48:10','2021-10-20 03:48:10','c96fb1d9-d97b-412e-a817-74d895bc7403'),(32765,85,73942,NULL,17970,4,'2021-10-20 03:48:10','2021-10-20 03:48:10','c9e88df3-cfb3-46c1-b683-53f121ae6979'),(32766,85,73942,NULL,17971,5,'2021-10-20 03:48:10','2021-10-20 03:48:10','ec4f38e2-0a45-44fd-8daf-605271ed9bfa'),(32767,84,73942,NULL,38161,1,'2021-10-20 03:48:10','2021-10-20 03:48:10','5de78166-f1f3-40f0-90c3-58170165b4cf'),(32781,79,73944,NULL,17875,1,'2021-10-20 03:49:12','2021-10-20 03:49:12','7b0acaa6-130f-4666-ba68-5596156a87f4'),(32783,79,73944,NULL,17934,3,'2021-10-20 03:49:12','2021-10-20 03:49:12','c21ec2e5-ee9a-4ca6-962e-18965fb7a80f'),(32784,79,73944,NULL,17881,4,'2021-10-20 03:49:12','2021-10-20 03:49:12','c8b2c17b-6edc-495d-8778-8cff5c7aaca9'),(32785,79,73944,NULL,17954,5,'2021-10-20 03:49:12','2021-10-20 03:49:12','e00ec63f-c98c-42bd-8c21-1be04f469d03'),(32786,79,73944,NULL,17956,6,'2021-10-20 03:49:12','2021-10-20 03:49:12','0554fcea-4a92-44ac-bcc0-1d94c6bdfdef'),(32787,69,73944,NULL,61819,1,'2021-10-20 03:49:12','2021-10-20 03:49:12','9caccc3f-8df6-4d7c-897a-5a9da9f4ae19'),(32788,85,73944,NULL,17964,1,'2021-10-20 03:49:12','2021-10-20 03:49:12','461e60b6-4dfc-41cc-9028-d67f083310dd'),(32789,85,73944,NULL,17965,2,'2021-10-20 03:49:12','2021-10-20 03:49:12','628dd000-82fa-4288-bd69-a733e4f5b7c5'),(32790,85,73944,NULL,17969,3,'2021-10-20 03:49:12','2021-10-20 03:49:12','485a9e70-2e24-41f4-955f-dc4bfa9b9a05'),(32791,85,73944,NULL,17970,4,'2021-10-20 03:49:12','2021-10-20 03:49:12','1ef14431-e357-4b60-90e9-7496eadd93d2'),(32792,85,73944,NULL,17971,5,'2021-10-20 03:49:12','2021-10-20 03:49:12','dbf195d8-36e8-4cbd-b2d4-1d601d0ea825'),(32793,84,73944,NULL,38161,1,'2021-10-20 03:49:12','2021-10-20 03:49:12','598ae384-1fd1-4344-b042-837a09f925f7'),(32807,79,73946,NULL,17875,1,'2021-10-20 03:49:33','2021-10-20 03:49:33','9b87250b-14fb-434c-8bc3-ee0c8cc7222e'),(32809,79,73946,NULL,17934,3,'2021-10-20 03:49:33','2021-10-20 03:49:33','93b642cb-0b82-4930-a24f-5831685f02f2'),(32810,79,73946,NULL,17881,4,'2021-10-20 03:49:33','2021-10-20 03:49:33','c2581d2a-67cf-4aac-8cac-1a7dc9060e5e'),(32811,79,73946,NULL,17954,5,'2021-10-20 03:49:33','2021-10-20 03:49:33','d949108d-b0ab-4e39-9796-c5b98753f46b'),(32812,79,73946,NULL,17956,6,'2021-10-20 03:49:33','2021-10-20 03:49:33','283f49b7-eaf0-47f0-b68c-2d90c34ac700'),(32813,69,73946,NULL,61819,1,'2021-10-20 03:49:33','2021-10-20 03:49:33','a0f951de-7f21-4f1f-b90d-979437b2feb2'),(32814,85,73946,NULL,17964,1,'2021-10-20 03:49:33','2021-10-20 03:49:33','237b9de9-65bd-415c-9b2f-11c3499fc2f7'),(32815,85,73946,NULL,17965,2,'2021-10-20 03:49:33','2021-10-20 03:49:33','7b613750-7b9e-4431-ac88-97efd3dc742b'),(32816,85,73946,NULL,17969,3,'2021-10-20 03:49:33','2021-10-20 03:49:33','658d8b3b-4289-457d-963e-5aa0b8bedf70'),(32817,85,73946,NULL,17970,4,'2021-10-20 03:49:33','2021-10-20 03:49:33','711bc089-fbf4-4746-b4ce-fe4a6e09730b'),(32818,85,73946,NULL,17971,5,'2021-10-20 03:49:33','2021-10-20 03:49:33','2ab68507-5a2f-4858-95e3-403be91fe7aa'),(32819,84,73946,NULL,38161,1,'2021-10-20 03:49:33','2021-10-20 03:49:33','d953c4fc-765a-4dc3-be9e-b669c2809bbb'),(32833,79,73949,NULL,17875,1,'2021-10-20 04:31:19','2021-10-20 04:31:19','69dfff30-f93b-4ddc-808e-fa8bacc588e5'),(32835,79,73949,NULL,17934,3,'2021-10-20 04:31:19','2021-10-20 04:31:19','50d42509-ca93-4e22-863f-30a00b452df2'),(32836,79,73949,NULL,17881,4,'2021-10-20 04:31:19','2021-10-20 04:31:19','3a37a5d2-7a24-48e8-ab66-8c99c2e0f4d7'),(32837,79,73949,NULL,17954,5,'2021-10-20 04:31:19','2021-10-20 04:31:19','fc9f9b4d-9043-4a29-8605-433511d57ec2'),(32838,79,73949,NULL,17956,6,'2021-10-20 04:31:19','2021-10-20 04:31:19','e1d10094-5143-43ef-bb7b-9fa66f0414ac'),(32839,69,73949,NULL,61819,1,'2021-10-20 04:31:19','2021-10-20 04:31:19','66ee75d5-73c6-4e49-82cf-858ba1549b9b'),(32840,85,73949,NULL,17964,1,'2021-10-20 04:31:19','2021-10-20 04:31:19','a2560748-9bcf-4b5f-b63c-a09f9a77ce56'),(32841,85,73949,NULL,17965,2,'2021-10-20 04:31:19','2021-10-20 04:31:19','ce09a972-1ea1-482d-98fe-2eca6e62f9c5'),(32842,85,73949,NULL,17969,3,'2021-10-20 04:31:19','2021-10-20 04:31:19','8718a66c-d5b6-4e03-9759-26c666a4792a'),(32843,85,73949,NULL,17970,4,'2021-10-20 04:31:19','2021-10-20 04:31:19','3e686d50-74d6-4b0f-99e3-cd4b41cf4bb5'),(32844,85,73949,NULL,17971,5,'2021-10-20 04:31:19','2021-10-20 04:31:19','de3d3786-2f01-402b-ae49-8797824666b8'),(32845,84,73949,NULL,38161,1,'2021-10-20 04:31:19','2021-10-20 04:31:19','6e64c5d6-c0e7-4791-be61-44b680a18002'),(32859,79,73951,NULL,17875,1,'2021-10-20 04:32:46','2021-10-20 04:32:46','8245684e-efcf-46c3-96c1-e0d153713334'),(32861,79,73951,NULL,17934,3,'2021-10-20 04:32:46','2021-10-20 04:32:46','d081f1d2-e720-455b-ab97-d31b3dafa77e'),(32862,79,73951,NULL,17881,4,'2021-10-20 04:32:46','2021-10-20 04:32:46','df1eb597-a55b-46f5-bd5e-cb7de9b99169'),(32863,79,73951,NULL,17954,5,'2021-10-20 04:32:46','2021-10-20 04:32:46','1c3c36e0-6819-46f8-9006-b02526c5e14c'),(32864,79,73951,NULL,17956,6,'2021-10-20 04:32:46','2021-10-20 04:32:46','4eba6d61-dafc-4da8-b696-d6ff52bbd482'),(32865,69,73951,NULL,61819,1,'2021-10-20 04:32:46','2021-10-20 04:32:46','b2c85167-f90b-4ab5-9766-545afab9da9e'),(32866,85,73951,NULL,17964,1,'2021-10-20 04:32:46','2021-10-20 04:32:46','aedb1162-c8b6-4117-be69-5837d207cf69'),(32867,85,73951,NULL,17965,2,'2021-10-20 04:32:46','2021-10-20 04:32:46','e45aaeda-7222-4db2-b509-d63b535a5812'),(32868,85,73951,NULL,17969,3,'2021-10-20 04:32:46','2021-10-20 04:32:46','1572ddeb-86e5-42d6-bdad-eafafeaecaae'),(32869,85,73951,NULL,17970,4,'2021-10-20 04:32:46','2021-10-20 04:32:46','6390fc21-2b31-4665-af34-6b8f285cb60b'),(32870,85,73951,NULL,17971,5,'2021-10-20 04:32:46','2021-10-20 04:32:46','a7fc9f96-310b-4506-853d-8337774a30cf'),(32871,84,73951,NULL,38161,1,'2021-10-20 04:32:46','2021-10-20 04:32:46','2822d190-7f1c-4c4c-958f-c35c9ea20a06'),(32878,191,73960,NULL,18156,1,'2021-11-08 02:53:18','2021-11-08 02:53:18','9c810de6-04d4-4169-9611-173804e62961'),(32879,191,73961,NULL,18122,1,'2021-11-08 02:53:18','2021-11-08 02:53:18','2d03bddc-6b21-4486-856b-33060baf33a1'),(32880,191,73962,NULL,30427,1,'2021-11-08 02:53:18','2021-11-08 02:53:18','cdca0763-5d89-4af1-bd5d-7f6c7e540449'),(32881,191,73963,NULL,18109,1,'2021-11-08 02:53:18','2021-11-08 02:53:18','02af718a-cfe4-42da-997a-1d809697c893'),(32882,191,73964,NULL,16828,1,'2021-11-08 02:53:18','2021-11-08 02:53:18','b51f408f-12a4-4123-b82c-cb4abb7926ed'),(32883,191,73965,NULL,40504,1,'2021-11-08 02:53:18','2021-11-08 02:53:18','fc860e33-8708-44d5-af8b-0bc30e235c78'),(32890,191,73974,NULL,18156,1,'2021-11-08 02:53:33','2021-11-08 02:53:33','89d36896-1a40-41d6-8588-cac1d586999c'),(32891,191,73975,NULL,18122,1,'2021-11-08 02:53:34','2021-11-08 02:53:34','50f589d0-7858-4538-96e8-b7a9fe733956'),(32892,191,73976,NULL,30427,1,'2021-11-08 02:53:34','2021-11-08 02:53:34','11e635ff-b1fd-48b0-9c06-2d4a4ef86e5c'),(32893,191,73977,NULL,18109,1,'2021-11-08 02:53:34','2021-11-08 02:53:34','fb6f128d-21ff-40a9-b905-bc10d750354d'),(32894,191,73978,NULL,16828,1,'2021-11-08 02:53:34','2021-11-08 02:53:34','7f74e640-6eca-4873-a852-ab6a24e6d057'),(32895,191,73979,NULL,40504,1,'2021-11-08 02:53:34','2021-11-08 02:53:34','cbb9a93a-a6ac-4643-b20c-d6f18ae58fc9'),(32902,191,73988,NULL,18156,1,'2021-11-08 02:54:17','2021-11-08 02:54:17','8e623ba3-9e2f-4101-ac92-c949e398580c'),(32903,191,73989,NULL,18122,1,'2021-11-08 02:54:17','2021-11-08 02:54:17','4afe841c-a072-4502-880e-b190b26f0912'),(32904,191,73990,NULL,30427,1,'2021-11-08 02:54:17','2021-11-08 02:54:17','288d209e-e902-48ff-95c8-74215b3f1f9e'),(32905,191,73991,NULL,18109,1,'2021-11-08 02:54:17','2021-11-08 02:54:17','fb21a5ec-b8e6-4d93-891c-86f6c84b2f37'),(32906,191,73992,NULL,16828,1,'2021-11-08 02:54:17','2021-11-08 02:54:17','2abf233e-3472-44c2-9bcd-847ea56159f7'),(32907,191,73993,NULL,40504,1,'2021-11-08 02:54:17','2021-11-08 02:54:17','1afc2bea-9749-4cef-a7fb-fef7ff06ede7'),(32927,79,74001,NULL,17875,1,'2021-11-08 02:58:58','2021-11-08 02:58:58','040b69bf-7b7b-4880-a216-817fe5cae6a2'),(32928,79,74001,NULL,17887,2,'2021-11-08 02:58:58','2021-11-08 02:58:58','05b911b3-7ec8-4b05-9d20-e6954a87ca89'),(32929,79,74001,NULL,17899,3,'2021-11-08 02:58:58','2021-11-08 02:58:58','38a7a9f9-397d-4750-8d0a-a21e52e38386'),(32932,79,74001,NULL,17934,6,'2021-11-08 02:58:58','2021-11-08 02:58:58','4ce39408-71ed-464e-84bd-e9c0b9d63517'),(32933,79,74001,NULL,17941,7,'2021-11-08 02:58:58','2021-11-08 02:58:58','b546b012-c653-4a27-b734-60d57478a317'),(32934,79,74001,NULL,1,8,'2021-11-08 02:58:58','2021-11-08 02:58:58','89ac509e-4c2f-4c02-af07-92685a385855'),(32935,79,74001,NULL,17954,9,'2021-11-08 02:58:58','2021-11-08 02:58:58','13503077-45d9-4782-9f66-4b25368265ab'),(32936,79,74001,NULL,17956,10,'2021-11-08 02:58:58','2021-11-08 02:58:58','4b79997d-b839-45dd-8c87-6441b0a59fcb'),(32937,79,74001,NULL,17996,11,'2021-11-08 02:58:58','2021-11-08 02:58:58','86e00b6e-f066-482c-9040-444d84c62d8a'),(32938,69,74001,NULL,30441,1,'2021-11-08 02:58:58','2021-11-08 02:58:58','0064ffe2-6e94-4a43-9122-2646779c27f6'),(32939,85,74001,NULL,17964,1,'2021-11-08 02:58:58','2021-11-08 02:58:58','987df7ee-6de5-4fbf-b32a-84e5a4e9d511'),(32940,85,74001,NULL,17965,2,'2021-11-08 02:58:58','2021-11-08 02:58:58','a823d4e0-6dc8-4f3a-8c60-4e5c786fcefe'),(32941,85,74001,NULL,17966,3,'2021-11-08 02:58:58','2021-11-08 02:58:58','58cb843d-e984-4923-a3f3-e41550f7931c'),(32942,85,74001,NULL,17968,4,'2021-11-08 02:58:58','2021-11-08 02:58:58','d8854694-9ff4-4ea3-a0cd-604ece7b3766'),(32943,85,74001,NULL,17969,5,'2021-11-08 02:58:58','2021-11-08 02:58:58','6307b747-e406-4239-b7ad-accc9a45caf4'),(32944,85,74001,NULL,17971,6,'2021-11-08 02:58:58','2021-11-08 02:58:58','6644d28b-1c30-405e-bbc3-7b3d744315cc'),(32945,84,74001,NULL,38157,1,'2021-11-08 02:58:58','2021-11-08 02:58:58','65951c4d-0cf3-4794-a95d-7d81cf8ac812'),(32952,69,74003,NULL,48180,1,'2021-11-08 02:59:42','2021-11-08 02:59:42','53d6fc7b-e83c-49f0-922e-ca65f9b16992'),(32953,85,74003,NULL,17964,1,'2021-11-08 02:59:42','2021-11-08 02:59:42','5b59fc37-fc0f-48c0-9de6-782708da95fa'),(32954,85,74003,NULL,17966,2,'2021-11-08 02:59:42','2021-11-08 02:59:42','8eb02466-41e7-4259-978e-d90bf2b63b5c'),(32955,85,74003,NULL,17969,3,'2021-11-08 02:59:42','2021-11-08 02:59:42','abd84d24-4bbc-4329-96f9-2a673a59aceb'),(32956,85,74003,NULL,17971,4,'2021-11-08 02:59:42','2021-11-08 02:59:42','deb365ba-2f5c-4fd7-863d-f2fd1af1d0ed'),(32957,84,74003,NULL,18057,1,'2021-11-08 02:59:42','2021-11-08 02:59:42','55d9cc79-f840-4109-ad6f-2d52b32a9e7f'),(32976,79,74005,NULL,17875,1,'2021-11-08 03:00:34','2021-11-08 03:00:34','b923bd79-25c2-45da-972a-fe70e7bbd697'),(32977,79,74005,NULL,17887,2,'2021-11-08 03:00:34','2021-11-08 03:00:34','f9bb01b8-742e-47e5-bd73-6ee7c412bea0'),(32978,79,74005,NULL,17899,3,'2021-11-08 03:00:34','2021-11-08 03:00:34','747e2bd3-f9be-489e-b3c8-ceb96a8089d2'),(32980,79,74005,NULL,17934,5,'2021-11-08 03:00:34','2021-11-08 03:00:34','472351fc-a9c4-4d7f-9737-ab809604fea6'),(32981,79,74005,NULL,17941,6,'2021-11-08 03:00:34','2021-11-08 03:00:34','2494192a-3178-42a3-b832-50f15b4e916e'),(32982,79,74005,NULL,1,7,'2021-11-08 03:00:34','2021-11-08 03:00:34','92492526-8734-4fa5-bf6b-19b30c6c8f08'),(32983,79,74005,NULL,17956,8,'2021-11-08 03:00:34','2021-11-08 03:00:34','2df351cb-64bd-4177-9fa7-ccac1b748cc8'),(32984,79,74005,NULL,17996,9,'2021-11-08 03:00:34','2021-11-08 03:00:34','e2218ebf-d07b-4478-b3e0-7a4d93ef86ac'),(32985,69,74005,NULL,61826,1,'2021-11-08 03:00:34','2021-11-08 03:00:34','5e8a3e47-debc-42ca-bafa-34331ee12107'),(32986,85,74005,NULL,17964,1,'2021-11-08 03:00:34','2021-11-08 03:00:34','e79ea4a5-315f-4441-acda-90690e8023be'),(32987,85,74005,NULL,17965,2,'2021-11-08 03:00:34','2021-11-08 03:00:34','0b799c62-a802-4a8d-b20d-70bab37fadf3'),(32988,85,74005,NULL,17966,3,'2021-11-08 03:00:34','2021-11-08 03:00:34','46110fc3-8e6d-4adb-85f9-bf02c8d9839f'),(32989,85,74005,NULL,17968,4,'2021-11-08 03:00:34','2021-11-08 03:00:34','369b6a6c-21cf-4771-8a76-f06238f17812'),(32990,85,74005,NULL,17969,5,'2021-11-08 03:00:34','2021-11-08 03:00:34','62438aba-6b41-41cc-802f-9e819214bff9'),(32991,85,74005,NULL,17970,6,'2021-11-08 03:00:34','2021-11-08 03:00:34','a37a32e8-311d-421b-9467-8dcdd7210478'),(32992,85,74005,NULL,17971,7,'2021-11-08 03:00:34','2021-11-08 03:00:34','b0d5bffa-b083-40f9-a4bd-8850f48117fe'),(32993,84,74005,NULL,38160,1,'2021-11-08 03:00:34','2021-11-08 03:00:34','7b7b46ad-7c1b-4488-a9e8-58cbe553886a'),(33012,79,74007,NULL,17875,1,'2021-11-08 03:01:28','2021-11-08 03:01:28','2712477e-c864-43e8-8c3e-d9c59296ae89'),(33013,79,74007,NULL,17887,2,'2021-11-08 03:01:28','2021-11-08 03:01:28','d332f741-ea12-4f6f-8339-2f4cad31c163'),(33014,79,74007,NULL,17899,3,'2021-11-08 03:01:28','2021-11-08 03:01:28','5a093893-8ce8-494b-bf61-3c4df68b1d04'),(33016,79,74007,NULL,17934,5,'2021-11-08 03:01:28','2021-11-08 03:01:28','3367ab8d-1f49-45ba-9afb-59433c620f1a'),(33017,79,74007,NULL,17941,6,'2021-11-08 03:01:28','2021-11-08 03:01:28','f5ec9856-ef22-40da-b194-31fcf2d2b190'),(33018,79,74007,NULL,1,7,'2021-11-08 03:01:28','2021-11-08 03:01:28','34fb2e7e-ad42-4e3f-9e7f-cf7e6a0133c0'),(33019,79,74007,NULL,17956,8,'2021-11-08 03:01:28','2021-11-08 03:01:28','46a8a8ff-da09-472d-9b60-52fe8f2dbad2'),(33020,79,74007,NULL,17996,9,'2021-11-08 03:01:28','2021-11-08 03:01:28','36e1d095-f183-499a-9481-fd19f50cf080'),(33021,69,74007,NULL,61826,1,'2021-11-08 03:01:28','2021-11-08 03:01:28','e46244b1-89f5-482e-9852-ec528aa4f7c1'),(33022,85,74007,NULL,17964,1,'2021-11-08 03:01:28','2021-11-08 03:01:28','501ef332-640a-4623-bf98-e2c18c33276a'),(33023,85,74007,NULL,17965,2,'2021-11-08 03:01:28','2021-11-08 03:01:28','af367e9e-7afe-4760-ae6a-2914f8d8c34e'),(33024,85,74007,NULL,17966,3,'2021-11-08 03:01:28','2021-11-08 03:01:28','535c676c-af6b-4dc7-9a13-722cbfa950f3'),(33025,85,74007,NULL,17968,4,'2021-11-08 03:01:28','2021-11-08 03:01:28','2645468e-f605-45c5-ad37-fc23db610ae4'),(33026,85,74007,NULL,17969,5,'2021-11-08 03:01:28','2021-11-08 03:01:28','cae3a752-8de3-4ca5-b9b0-963fd74208ca'),(33027,85,74007,NULL,17970,6,'2021-11-08 03:01:28','2021-11-08 03:01:28','27387155-0340-4785-ab96-ca362c9d4042'),(33028,85,74007,NULL,17971,7,'2021-11-08 03:01:28','2021-11-08 03:01:28','fd8f108a-347f-4a06-8265-3f63a9a03835'),(33029,84,74007,NULL,38160,1,'2021-11-08 03:01:28','2021-11-08 03:01:28','3dd3749d-f19c-457b-9236-c846a18ee239'),(33048,79,74009,NULL,17875,1,'2021-11-08 03:16:16','2021-11-08 03:16:16','a64aa771-ef79-4cb2-b94a-0df62a056172'),(33049,79,74009,NULL,17887,2,'2021-11-08 03:16:16','2021-11-08 03:16:16','3ad23af0-9181-45f5-a228-e5929a46c72b'),(33050,79,74009,NULL,17899,3,'2021-11-08 03:16:16','2021-11-08 03:16:16','e90a1c54-42c0-4294-a551-10ec64533762'),(33052,79,74009,NULL,17934,5,'2021-11-08 03:16:16','2021-11-08 03:16:16','92e1f87f-f291-4aa3-980f-ff0318acdd1a'),(33053,79,74009,NULL,17941,6,'2021-11-08 03:16:16','2021-11-08 03:16:16','70391273-22ca-489e-82a5-189ce80a470a'),(33054,79,74009,NULL,1,7,'2021-11-08 03:16:16','2021-11-08 03:16:16','c2a0a296-8491-44c2-b2ba-1b1e79cc45c4'),(33055,79,74009,NULL,17956,8,'2021-11-08 03:16:16','2021-11-08 03:16:16','1cd04d7e-7c48-4387-b415-77bd332dc26a'),(33056,79,74009,NULL,17996,9,'2021-11-08 03:16:16','2021-11-08 03:16:16','e3259858-a895-487a-a6ea-93b2691fe35d'),(33057,69,74009,NULL,61826,1,'2021-11-08 03:16:16','2021-11-08 03:16:16','eb26d308-e060-4bc0-aef7-e0896003d4ef'),(33058,85,74009,NULL,17964,1,'2021-11-08 03:16:16','2021-11-08 03:16:16','2cda310c-2335-47ed-99a9-ddfe60a75712'),(33059,85,74009,NULL,17965,2,'2021-11-08 03:16:16','2021-11-08 03:16:16','c700b8ec-12b8-4a30-a292-04395a603c61'),(33060,85,74009,NULL,17966,3,'2021-11-08 03:16:16','2021-11-08 03:16:16','65386a32-0028-4cde-8b84-68700db23e24'),(33061,85,74009,NULL,17968,4,'2021-11-08 03:16:16','2021-11-08 03:16:16','c9677716-bd98-48e9-9a33-8473e61341ac'),(33062,85,74009,NULL,17969,5,'2021-11-08 03:16:16','2021-11-08 03:16:16','b4d0e581-8f28-425d-8082-d0df9c7ac36d'),(33063,85,74009,NULL,17970,6,'2021-11-08 03:16:16','2021-11-08 03:16:16','97e5b8c9-f6a2-4693-aa92-7c70cb3c70fd'),(33064,85,74009,NULL,17971,7,'2021-11-08 03:16:16','2021-11-08 03:16:16','2cbaca43-6351-48d1-bc71-703c1129a2f0'),(33065,84,74009,NULL,38160,1,'2021-11-08 03:16:16','2021-11-08 03:16:16','dc42e58d-103c-413d-87fd-5c93b573223c'),(33084,79,74011,NULL,17875,1,'2021-11-08 04:06:49','2021-11-08 04:06:49','3e5683d3-8b70-4cdf-9a56-ca52fdd722cc'),(33085,79,74011,NULL,17887,2,'2021-11-08 04:06:49','2021-11-08 04:06:49','a0e5a0d4-bdee-4786-a2a8-db9ace0fdba9'),(33086,79,74011,NULL,17899,3,'2021-11-08 04:06:49','2021-11-08 04:06:49','89348539-b7d4-4a5a-8bd1-409783469ce7'),(33088,79,74011,NULL,17934,5,'2021-11-08 04:06:49','2021-11-08 04:06:49','bad9d29b-ed0f-43ac-ac1f-1687c8bf5325'),(33089,79,74011,NULL,17941,6,'2021-11-08 04:06:49','2021-11-08 04:06:49','0f358d8a-7d26-4164-a098-05d1a80284cf'),(33090,79,74011,NULL,1,7,'2021-11-08 04:06:49','2021-11-08 04:06:49','701d183b-d08d-4476-887e-01acb153d2c6'),(33091,79,74011,NULL,17956,8,'2021-11-08 04:06:49','2021-11-08 04:06:49','dc3ba5c3-105f-4b51-a43e-6282bbe4f48f'),(33092,79,74011,NULL,17996,9,'2021-11-08 04:06:49','2021-11-08 04:06:49','9a94efa9-66c2-42fd-9a72-f728bad2ff02'),(33093,69,74011,NULL,61826,1,'2021-11-08 04:06:49','2021-11-08 04:06:49','4936ba66-aed8-4e69-b25b-fe5e6c741af1'),(33094,85,74011,NULL,17964,1,'2021-11-08 04:06:49','2021-11-08 04:06:49','5f38b242-5f5a-4c56-aa94-1cb06d8ac1b9'),(33095,85,74011,NULL,17965,2,'2021-11-08 04:06:49','2021-11-08 04:06:49','21b1d9c8-3e2c-49c8-9fbb-24c953ffa0a2'),(33096,85,74011,NULL,17966,3,'2021-11-08 04:06:49','2021-11-08 04:06:49','6e5e8f18-587d-461f-9881-059d3f939e1e'),(33097,85,74011,NULL,17968,4,'2021-11-08 04:06:49','2021-11-08 04:06:49','ee47ab66-1a6d-424d-b7d8-ecd4bd898c44'),(33098,85,74011,NULL,17969,5,'2021-11-08 04:06:49','2021-11-08 04:06:49','231b526f-1f45-415b-84be-3447c8604c05'),(33099,85,74011,NULL,17970,6,'2021-11-08 04:06:49','2021-11-08 04:06:49','f50cd640-3ad3-4c71-948b-a4508b6e1376'),(33100,85,74011,NULL,17971,7,'2021-11-08 04:06:49','2021-11-08 04:06:49','00bbae1b-650e-4430-b632-f735f4006a0b'),(33101,84,74011,NULL,38160,1,'2021-11-08 04:06:49','2021-11-08 04:06:49','ebcac9ef-c6a1-4ba9-886f-876c67f07cb6'),(33120,79,74013,NULL,17875,1,'2021-11-08 04:08:25','2021-11-08 04:08:25','10609bb9-9998-4381-ad1d-a0f6fa2041de'),(33121,79,74013,NULL,17887,2,'2021-11-08 04:08:25','2021-11-08 04:08:25','adda7d68-b7ef-4440-a5df-d010924803a2'),(33122,79,74013,NULL,17899,3,'2021-11-08 04:08:25','2021-11-08 04:08:25','c2305ded-254b-4696-8a11-a91b8eb3e0b8'),(33124,79,74013,NULL,17934,5,'2021-11-08 04:08:25','2021-11-08 04:08:25','d96731a8-e217-4efb-bea5-f3b36f802a71'),(33125,79,74013,NULL,17941,6,'2021-11-08 04:08:25','2021-11-08 04:08:25','778a2a55-3a76-4352-a1f2-2aab9d782c41'),(33126,79,74013,NULL,1,7,'2021-11-08 04:08:25','2021-11-08 04:08:25','ebf293a3-ef76-4779-a80c-f71a436341cd'),(33127,79,74013,NULL,17956,8,'2021-11-08 04:08:25','2021-11-08 04:08:25','f82480e8-11c9-4394-b269-b151bb4a819d'),(33128,79,74013,NULL,17996,9,'2021-11-08 04:08:25','2021-11-08 04:08:25','8b59686f-f401-4de3-8a11-f17580869892'),(33129,69,74013,NULL,61826,1,'2021-11-08 04:08:25','2021-11-08 04:08:25','05fc0c97-db3e-44e7-ab48-8bda6d5d32f8'),(33130,85,74013,NULL,17964,1,'2021-11-08 04:08:25','2021-11-08 04:08:25','884047d9-a2cc-4b79-8e55-118a94922585'),(33131,85,74013,NULL,17965,2,'2021-11-08 04:08:25','2021-11-08 04:08:25','ca0d556c-ef15-4307-8e80-c30d06e52b6c'),(33132,85,74013,NULL,17966,3,'2021-11-08 04:08:25','2021-11-08 04:08:25','d78c8fc5-a212-4cca-a087-2fdb185561f0'),(33133,85,74013,NULL,17968,4,'2021-11-08 04:08:25','2021-11-08 04:08:25','ccb9e4df-a95f-4329-9f1a-526e26bbc3f4'),(33134,85,74013,NULL,17969,5,'2021-11-08 04:08:25','2021-11-08 04:08:25','dc47ee6e-f641-45e3-bd27-e9a61476c118'),(33135,85,74013,NULL,17970,6,'2021-11-08 04:08:25','2021-11-08 04:08:25','2e19d30d-6152-4111-89d6-4731a66d6c29'),(33136,85,74013,NULL,17971,7,'2021-11-08 04:08:25','2021-11-08 04:08:25','11bcd5e4-1040-4581-83a5-8d1db93d123a'),(33137,84,74013,NULL,38160,1,'2021-11-08 04:08:25','2021-11-08 04:08:25','e08beb2c-8b03-4dc5-93ac-580990b46559'),(33154,79,74015,NULL,17875,1,'2021-11-08 04:09:06','2021-11-08 04:09:06','3408e51b-a2e9-463f-817e-8f4f676aca57'),(33157,79,74015,NULL,17934,4,'2021-11-08 04:09:06','2021-11-08 04:09:06','d8fbad5c-b212-443d-a52c-4fc65508198a'),(33158,79,74015,NULL,30433,5,'2021-11-08 04:09:06','2021-11-08 04:09:06','bd83c9e8-73c2-471d-99df-4f148477d857'),(33159,79,74015,NULL,1,6,'2021-11-08 04:09:06','2021-11-08 04:09:06','8a327cfa-0b93-412a-ad64-5a392329aa81'),(33160,79,74015,NULL,17954,7,'2021-11-08 04:09:06','2021-11-08 04:09:06','c42bcd73-b3cf-4861-8c13-4856a28717ed'),(33161,79,74015,NULL,17956,8,'2021-11-08 04:09:06','2021-11-08 04:09:06','9f608fe8-2edc-4df8-837d-6fda3a612200'),(33162,69,74015,NULL,38123,1,'2021-11-08 04:09:06','2021-11-08 04:09:06','28cf402c-3005-4413-8ce8-62e38e7596ae'),(33163,85,74015,NULL,17964,1,'2021-11-08 04:09:06','2021-11-08 04:09:06','0fd15830-de56-4432-a37d-cc4252007640'),(33164,85,74015,NULL,17965,2,'2021-11-08 04:09:06','2021-11-08 04:09:06','8d951f7b-f308-4a53-bd68-2092c2fb468c'),(33165,85,74015,NULL,17966,3,'2021-11-08 04:09:06','2021-11-08 04:09:06','37658832-9282-4569-a2c5-60242d78f49c'),(33166,85,74015,NULL,17968,4,'2021-11-08 04:09:06','2021-11-08 04:09:06','5b28fc64-dcbc-4942-98d0-c225f75bba79'),(33167,85,74015,NULL,17970,5,'2021-11-08 04:09:06','2021-11-08 04:09:06','6469c98e-b155-4cda-91ba-3ad4dbcde002'),(33168,85,74015,NULL,17971,6,'2021-11-08 04:09:06','2021-11-08 04:09:06','a4caf64f-00b1-4ffb-be4c-844bb4d96b89'),(33169,84,74015,NULL,38157,1,'2021-11-08 04:09:06','2021-11-08 04:09:06','503a4e6b-42d2-4d44-8376-71123b555903'),(33183,79,74017,NULL,17881,2,'2021-11-08 04:09:43','2021-11-08 04:09:43','55b97a4b-585f-4035-bced-f01dce193714'),(33184,79,74017,NULL,1,3,'2021-11-08 04:09:43','2021-11-08 04:09:43','5ec40d26-73ad-4e17-b084-a9eab6e4dae2'),(33185,79,74017,NULL,17954,4,'2021-11-08 04:09:43','2021-11-08 04:09:43','8fc1cf4a-1fe4-4a79-8296-37333e04efd8'),(33186,69,74017,NULL,21979,1,'2021-11-08 04:09:43','2021-11-08 04:09:43','4b472de6-8710-42b5-aa22-00b21b7b22e8'),(33187,85,74017,NULL,17964,1,'2021-11-08 04:09:43','2021-11-08 04:09:43','9735ac3f-92f1-4214-8748-fc32858e65c4'),(33188,85,74017,NULL,17965,2,'2021-11-08 04:09:43','2021-11-08 04:09:43','08dd78ec-ee42-42fd-9bd0-7fc09115ae32'),(33189,85,74017,NULL,17968,3,'2021-11-08 04:09:43','2021-11-08 04:09:43','67783d65-c64d-45f2-b326-96ba2460ea5a'),(33190,85,74017,NULL,17970,4,'2021-11-08 04:09:43','2021-11-08 04:09:43','73b06320-57bf-4f49-9fc9-2f5ede26fd64'),(33191,85,74017,NULL,17971,5,'2021-11-08 04:09:43','2021-11-08 04:09:43','744e8d15-577d-4f94-9b51-08469f09d078'),(33192,84,74017,NULL,18057,1,'2021-11-08 04:09:43','2021-11-08 04:09:43','d30a33bd-c91e-4cc9-a688-b1d6a7742f19'),(33193,84,74017,NULL,38160,2,'2021-11-08 04:09:43','2021-11-08 04:09:43','bd89cc06-3b7b-4471-ab1a-17304a5a9d0e'),(33206,79,74019,NULL,17887,1,'2021-11-08 04:11:30','2021-11-08 04:11:30','348bff8d-e581-4c7c-8e06-c87ff3086d99'),(33207,79,74019,NULL,17893,2,'2021-11-08 04:11:30','2021-11-08 04:11:30','cc894d9c-ff4f-421e-9753-c7047d9af059'),(33208,79,74019,NULL,21898,3,'2021-11-08 04:11:30','2021-11-08 04:11:30','2ef6c5f4-0e4b-4f62-95ac-f2ca1d7f9470'),(33210,79,74019,NULL,17881,5,'2021-11-08 04:11:30','2021-11-08 04:11:30','eaceb3d0-083d-4fd4-a72f-e7093271674f'),(33211,79,74019,NULL,17956,6,'2021-11-08 04:11:30','2021-11-08 04:11:30','fac3cb6c-9651-41ef-901a-d8ca2d339565'),(33212,69,74019,NULL,48162,1,'2021-11-08 04:11:30','2021-11-08 04:11:30','68cd0ed1-e86c-42a8-bb41-674a0cfd82e9'),(33213,85,74019,NULL,17964,1,'2021-11-08 04:11:30','2021-11-08 04:11:30','3c6415c5-ec90-4f15-a368-71b9cb1fb57f'),(33214,85,74019,NULL,17968,2,'2021-11-08 04:11:30','2021-11-08 04:11:30','58aba44c-c3aa-4940-8f19-d00870f1fa38'),(33215,84,74019,NULL,18057,1,'2021-11-08 04:11:30','2021-11-08 04:11:30','03cfd9d6-5027-4e56-b0dc-3bd28433434a'),(33216,84,74019,NULL,38159,2,'2021-11-08 04:11:30','2021-11-08 04:11:30','af3ade4b-4158-451d-8e10-a91a43832f8f'),(33217,84,74019,NULL,38160,3,'2021-11-08 04:11:30','2021-11-08 04:11:30','0ae99c98-5281-4a76-acb2-d50532c2cb73'),(33219,69,74021,NULL,48541,1,'2021-11-08 04:12:09','2021-11-08 04:12:09','40d6c7de-2484-40e9-a3d2-ee05ad4b7249'),(33238,79,74023,NULL,17875,1,'2021-11-08 04:12:53','2021-11-08 04:12:53','143931a3-646f-4f7d-a60f-fcf1976ea715'),(33239,79,74023,NULL,21898,2,'2021-11-08 04:12:53','2021-11-08 04:12:53','8ca55389-4bf7-4483-acda-f46f69765dba'),(33242,79,74023,NULL,17934,5,'2021-11-08 04:12:53','2021-11-08 04:12:53','4dfefcbc-c111-415a-84e1-ee529240819a'),(33243,79,74023,NULL,1,6,'2021-11-08 04:12:53','2021-11-08 04:12:53','ae099fe0-2a8c-448d-b42d-b980105cfc9c'),(33244,79,74023,NULL,17954,7,'2021-11-08 04:12:53','2021-11-08 04:12:53','166d8110-aedf-4863-8885-5097896a170a'),(33245,79,74023,NULL,17956,8,'2021-11-08 04:12:53','2021-11-08 04:12:53','3614ae74-d6c3-4509-80ca-5fda8b6cd471'),(33246,69,74023,NULL,19066,1,'2021-11-08 04:12:53','2021-11-08 04:12:53','b8281b6f-4b9a-43c4-aebb-5493b839375f'),(33247,85,74023,NULL,17964,1,'2021-11-08 04:12:53','2021-11-08 04:12:53','50b82cf9-8277-41a7-879f-536c8c851cc2'),(33248,85,74023,NULL,17965,2,'2021-11-08 04:12:53','2021-11-08 04:12:53','1bd463a7-f76c-4dea-8f0b-61e352aed7eb'),(33249,85,74023,NULL,17966,3,'2021-11-08 04:12:53','2021-11-08 04:12:53','94dea2f8-5c89-45d8-a289-72c96abc71c6'),(33250,85,74023,NULL,17967,4,'2021-11-08 04:12:53','2021-11-08 04:12:53','9f2f7db4-42d7-4adf-9cc8-42359fccc388'),(33251,85,74023,NULL,17968,5,'2021-11-08 04:12:53','2021-11-08 04:12:53','4fb91c53-b9a7-4a13-9a4c-f820c666039f'),(33252,85,74023,NULL,17969,6,'2021-11-08 04:12:53','2021-11-08 04:12:53','855949b0-8d45-40d0-b4f0-8e89749a5698'),(33253,85,74023,NULL,17970,7,'2021-11-08 04:12:53','2021-11-08 04:12:53','d2a55b3f-6c44-4ce0-9d84-8f50f461c4d9'),(33254,84,74023,NULL,18057,1,'2021-11-08 04:12:53','2021-11-08 04:12:53','a9ce4020-fdfd-4ad9-9752-282195094c0b'),(33255,84,74023,NULL,38160,2,'2021-11-08 04:12:53','2021-11-08 04:12:53','01c3d7b2-6b26-49bb-9de9-f850a35dd683'),(33285,69,74027,NULL,27826,1,'2021-11-08 04:14:01','2021-11-08 04:14:01','10d24234-c933-4e86-bcd4-b83226ef18ee'),(33286,85,74027,NULL,17964,1,'2021-11-08 04:14:01','2021-11-08 04:14:01','eae2210c-32c1-4b35-94aa-a9676db6f654'),(33287,85,74027,NULL,17966,2,'2021-11-08 04:14:01','2021-11-08 04:14:01','4837b93b-5063-4707-bcbd-65341c2209e3'),(33288,85,74027,NULL,17969,3,'2021-11-08 04:14:01','2021-11-08 04:14:01','f04448fb-f35c-493d-a624-f079eb7ecf59'),(33289,85,74027,NULL,17970,4,'2021-11-08 04:14:01','2021-11-08 04:14:01','98a2fa01-e0f7-4cd5-ac7a-a2fb7a779a06'),(33290,85,74027,NULL,17971,5,'2021-11-08 04:14:01','2021-11-08 04:14:01','15775035-9ae2-478a-8580-b51db4232378'),(33291,84,74027,NULL,38159,1,'2021-11-08 04:14:01','2021-11-08 04:14:01','6725318a-97ba-4a29-9677-def3f74b1cf3'),(33299,69,74029,NULL,27826,1,'2021-11-08 04:14:56','2021-11-08 04:14:56','4ffc8fcd-806c-4b46-8332-e2b9acca5f2d'),(33300,85,74029,NULL,17964,1,'2021-11-08 04:14:56','2021-11-08 04:14:56','cdc2d316-15b7-42f0-b086-f50fb13c6f0b'),(33301,85,74029,NULL,17966,2,'2021-11-08 04:14:56','2021-11-08 04:14:56','8192f126-4253-4581-b513-50053b7c5ca0'),(33302,85,74029,NULL,17969,3,'2021-11-08 04:14:56','2021-11-08 04:14:56','cc932967-757b-408b-a5f7-2a38a5db0a24'),(33303,85,74029,NULL,17970,4,'2021-11-08 04:14:56','2021-11-08 04:14:56','5e7eef5d-7044-48e5-b3bc-060a4a565824'),(33304,85,74029,NULL,17971,5,'2021-11-08 04:14:56','2021-11-08 04:14:56','ea57018b-0788-4d03-88f9-8de31d7eaba3'),(33305,84,74029,NULL,38159,1,'2021-11-08 04:14:56','2021-11-08 04:14:56','c85a2631-9817-467a-b4a6-0ae1f1cd80b7'),(33325,79,74032,NULL,17875,1,'2021-11-08 04:17:49','2021-11-08 04:17:49','33cfd8de-c8eb-4eb0-beb9-a22343251825'),(33328,79,74032,NULL,17934,4,'2021-11-08 04:17:49','2021-11-08 04:17:49','6cad339e-ac82-4ccc-92a4-9eb9d05ce4cc'),(33329,79,74032,NULL,17956,5,'2021-11-08 04:17:49','2021-11-08 04:17:49','82d04185-8e70-4b4f-90c9-9e28286e5c26'),(33330,69,74032,NULL,48538,1,'2021-11-08 04:17:49','2021-11-08 04:17:49','a64e0d95-4c62-4846-ad50-616277c51f05'),(33331,85,74032,NULL,17964,1,'2021-11-08 04:17:49','2021-11-08 04:17:49','1826ef9b-760b-4742-9c8f-ed5b4ab664fe'),(33332,85,74032,NULL,17966,2,'2021-11-08 04:17:49','2021-11-08 04:17:49','cfb12600-b047-4af5-9319-5691475ed879'),(33333,85,74032,NULL,17968,3,'2021-11-08 04:17:49','2021-11-08 04:17:49','da6373e0-da61-4fe4-aa2f-1c6d602fd40e'),(33334,85,74032,NULL,17970,4,'2021-11-08 04:17:49','2021-11-08 04:17:49','5dc98295-6db6-475b-963d-59d00dfaaf5d'),(33335,85,74032,NULL,17971,5,'2021-11-08 04:17:49','2021-11-08 04:17:49','475c2e07-4df0-4e92-a3ed-7aee9aab2248'),(33336,84,74032,NULL,38157,1,'2021-11-08 04:17:49','2021-11-08 04:17:49','16d190ee-da43-4197-8aa5-b6aed10778d6'),(33337,191,74053,NULL,18156,1,'2021-11-09 00:40:15','2021-11-09 00:40:15','85dc9ad9-f14f-40df-8216-396f29b69a6a'),(33338,191,74054,NULL,18122,1,'2021-11-09 00:40:16','2021-11-09 00:40:16','bb3f3869-9a5e-491c-bc34-926e714dfeee'),(33339,191,74055,NULL,30427,1,'2021-11-09 00:40:16','2021-11-09 00:40:16','b2542fda-3233-4942-955a-6db9bbb5fbcd'),(33340,191,74056,NULL,18109,1,'2021-11-09 00:40:16','2021-11-09 00:40:16','8b3c142e-b82c-4768-a97b-005c5bab0900'),(33341,191,74057,NULL,16828,1,'2021-11-09 00:40:16','2021-11-09 00:40:16','51a293f1-234c-49e0-8af7-9de555144edd'),(33342,191,74058,NULL,40504,1,'2021-11-09 00:40:16','2021-11-09 00:40:16','d61e7cff-08a8-45c0-8231-71e37fbeb3bf'),(33349,191,74070,NULL,18156,1,'2021-11-09 01:19:36','2021-11-09 01:19:36','c3f989a7-d3f1-473f-b7f2-fe591e932913'),(33350,191,74071,NULL,18122,1,'2021-11-09 01:19:36','2021-11-09 01:19:36','50180c53-19db-4e64-b607-128d430ac9ac'),(33351,191,74072,NULL,30427,1,'2021-11-09 01:19:36','2021-11-09 01:19:36','f11fc693-5758-4f4d-ae65-6fe51a768386'),(33352,191,74073,NULL,18109,1,'2021-11-09 01:19:36','2021-11-09 01:19:36','dbda5875-a193-4622-a07c-2962ab68155b'),(33353,191,74074,NULL,16828,1,'2021-11-09 01:19:36','2021-11-09 01:19:36','052d6632-b2fc-41dc-9edc-6e91a8a1690e'),(33354,191,74075,NULL,40504,1,'2021-11-09 01:19:36','2021-11-09 01:19:36','bf6fe4e6-113f-4976-b863-3af17cd2a729'),(33355,191,74077,NULL,18156,1,'2021-11-09 01:20:07','2021-11-09 01:20:07','81e136e1-21d8-43f9-8e77-6a2622fd7088'),(33356,191,74078,NULL,18122,1,'2021-11-09 01:20:07','2021-11-09 01:20:07','e3e81850-3824-4272-9723-b37a2f0b3654'),(33357,191,74079,NULL,30427,1,'2021-11-09 01:20:07','2021-11-09 01:20:07','e347280e-9a39-4864-92bf-54f265c3387a'),(33358,191,74080,NULL,18109,1,'2021-11-09 01:20:07','2021-11-09 01:20:07','5bb04b74-c5e9-4079-8817-b1f1985f1bd1'),(33359,191,74081,NULL,16828,1,'2021-11-09 01:20:07','2021-11-09 01:20:07','abe7ea13-843d-4a69-b010-005fa1a3fa75'),(33360,191,74082,NULL,40504,1,'2021-11-09 01:20:07','2021-11-09 01:20:07','e25eedca-941e-49ec-8efc-7dd04b3d4145'),(33383,191,74099,NULL,18156,1,'2021-11-09 01:32:16','2021-11-09 01:32:16','9dfadf38-8924-428d-a15d-a719f66cc13a'),(33384,191,74100,NULL,18122,1,'2021-11-09 01:32:16','2021-11-09 01:32:16','459bc75c-c0e5-42af-b89d-2093e18fc6c2'),(33385,191,74101,NULL,30427,1,'2021-11-09 01:32:16','2021-11-09 01:32:16','9d64400e-1af4-4f6f-a500-94b804216704'),(33386,191,74102,NULL,18109,1,'2021-11-09 01:32:16','2021-11-09 01:32:16','b4670aa4-b61e-45ed-8c76-fcf16cd0464f'),(33387,191,74103,NULL,16828,1,'2021-11-09 01:32:17','2021-11-09 01:32:17','63a1a6e2-d672-463f-8051-723d919dcf92'),(33388,191,74104,NULL,40504,1,'2021-11-09 01:32:17','2021-11-09 01:32:17','fad09fbf-6d55-4994-b93d-2dee429f41fd'),(33394,198,48003,NULL,48366,1,'2021-11-09 01:39:33','2021-11-09 01:39:33','70a77d51-efec-484c-bc69-81d3dcaee156'),(33395,184,74107,NULL,48366,1,'2021-11-09 01:39:33','2021-11-09 01:39:33','2f20b895-8623-47a5-9882-82ed6cf8f585'),(33396,69,74107,NULL,48366,1,'2021-11-09 01:39:33','2021-11-09 01:39:33','a4129b1c-6266-4621-b985-0c82cd1ace77'),(33397,85,74107,NULL,17965,1,'2021-11-09 01:39:33','2021-11-09 01:39:33','c8815fce-4419-4905-af00-cdfd7a226839'),(33398,85,74107,NULL,17968,2,'2021-11-09 01:39:33','2021-11-09 01:39:33','633e79c2-1ea5-4860-964c-7b830ca04a30'),(33399,198,74107,NULL,48366,1,'2021-11-09 01:39:33','2021-11-09 01:39:33','2cb443c2-a6f0-406e-b340-6651637bec16'),(33406,184,74109,NULL,28041,1,'2021-11-09 01:49:48','2021-11-09 01:49:48','f363afad-048a-4ef2-97d0-b59f5cb65d9c'),(33407,69,74109,NULL,28041,1,'2021-11-09 01:49:48','2021-11-09 01:49:48','3ab31a31-7754-4fef-b5a4-4bbfaf770704'),(33408,85,74109,NULL,17964,1,'2021-11-09 01:49:48','2021-11-09 01:49:48','e146d773-4c0f-431d-8cee-bd2f1dd85e2f'),(33409,85,74109,NULL,17966,2,'2021-11-09 01:49:48','2021-11-09 01:49:48','3dd537d3-afce-4c7d-9406-bc59e30ff7e1'),(33410,85,74109,NULL,17968,3,'2021-11-09 01:49:48','2021-11-09 01:49:48','c4c1032b-aa7e-4152-bcfa-60496019689e'),(33411,85,74109,NULL,17971,4,'2021-11-09 01:49:48','2021-11-09 01:49:48','2f373e11-217c-40fe-a9f8-8185eb3d490e'),(33419,198,28040,NULL,28041,1,'2021-11-09 01:53:02','2021-11-09 01:53:02','9f485084-bf1a-4881-8f9a-cffc49228f3d'),(33420,184,74111,NULL,28041,1,'2021-11-09 01:53:02','2021-11-09 01:53:02','3fab6fdc-76fe-4ae5-9cb6-111668076af4'),(33421,69,74111,NULL,28041,1,'2021-11-09 01:53:02','2021-11-09 01:53:02','f7a9a1ec-4be6-4d1c-9032-e0a49c5439fa'),(33422,85,74111,NULL,17964,1,'2021-11-09 01:53:02','2021-11-09 01:53:02','76491adf-a8e1-4b8a-b9f3-d192837dfaf0'),(33423,85,74111,NULL,17966,2,'2021-11-09 01:53:02','2021-11-09 01:53:02','496d47f6-e42b-46e9-bd8e-24da8e109cd1'),(33424,85,74111,NULL,17968,3,'2021-11-09 01:53:02','2021-11-09 01:53:02','88dc2720-b4b7-4f24-b535-28f5fd4cc36d'),(33425,85,74111,NULL,17971,4,'2021-11-09 01:53:02','2021-11-09 01:53:02','9199c05e-4114-4fc0-892f-abb028199e43'),(33426,198,74111,NULL,28041,1,'2021-11-09 01:53:02','2021-11-09 01:53:02','4d5f3ee6-fdb5-4c20-9a8b-fbc91821c227'),(33431,184,74113,NULL,17105,1,'2021-11-09 01:54:49','2021-11-09 01:54:49','d96f42c3-5b8a-412f-9410-c13b3a48d974'),(33432,69,74113,NULL,17105,1,'2021-11-09 01:54:49','2021-11-09 01:54:49','3be24314-8942-4a88-8c2b-ba12301adf23'),(33433,85,74113,NULL,17965,1,'2021-11-09 01:54:49','2021-11-09 01:54:49','549760eb-1eff-45e7-80bc-b58c04940cca'),(33434,85,74113,NULL,17971,2,'2021-11-09 01:54:49','2021-11-09 01:54:49','8362e9ac-829c-4a64-8e19-b29c5f240c82'),(33441,184,74115,NULL,17105,1,'2021-11-09 01:55:40','2021-11-09 01:55:40','bbc83441-a169-48e4-82db-79a0bd065629'),(33442,69,74115,NULL,17105,1,'2021-11-09 01:55:40','2021-11-09 01:55:40','b5d546b6-28c1-4c60-b09e-9877beef8a59'),(33443,85,74115,NULL,17965,1,'2021-11-09 01:55:40','2021-11-09 01:55:40','f9230ded-1999-4c31-bf72-762af8755745'),(33444,85,74115,NULL,17971,2,'2021-11-09 01:55:40','2021-11-09 01:55:40','00cf278e-9c6c-492f-8b4f-af8fb544087d'),(33445,198,74115,NULL,17105,1,'2021-11-09 01:55:40','2021-11-09 01:55:40','b97f5b80-b270-4ad1-88a6-722d9d8ebfbc'),(33449,198,17690,NULL,17743,1,'2021-11-09 01:56:33','2021-11-09 01:56:33','84eefb78-d044-4ae4-9663-2c2541ede7d2'),(33450,184,74117,NULL,17743,1,'2021-11-09 01:56:33','2021-11-09 01:56:33','98fe9cbc-ff23-4b62-b421-0c49111ad861'),(33451,69,74117,NULL,17743,1,'2021-11-09 01:56:33','2021-11-09 01:56:33','022d362e-a5ca-4be8-a3a4-fb24bb1a6eb2'),(33452,198,74117,NULL,17743,1,'2021-11-09 01:56:33','2021-11-09 01:56:33','5ec96d85-0aa2-49ce-9374-7319be31cade'),(33456,198,17688,NULL,17089,1,'2021-11-09 01:57:07','2021-11-09 01:57:07','2cae106d-e035-4373-9e8c-00f3b220af97'),(33457,184,74119,NULL,17089,1,'2021-11-09 01:57:07','2021-11-09 01:57:07','a1177275-8254-444d-858d-86fc45d14815'),(33458,69,74119,NULL,17089,1,'2021-11-09 01:57:07','2021-11-09 01:57:07','960bc6a5-e90e-4dd0-afd9-a30aef171570'),(33459,198,74119,NULL,17089,1,'2021-11-09 01:57:07','2021-11-09 01:57:07','48904de3-f69b-4f7b-95f5-cb6883266ff0'),(33463,198,17686,NULL,17166,1,'2021-11-09 01:57:32','2021-11-09 01:57:32','a7413952-1feb-4269-8a7b-70f3c0bea78b'),(33464,184,74121,NULL,17166,1,'2021-11-09 01:57:32','2021-11-09 01:57:32','2cab8051-2614-4c43-a704-a878d8910652'),(33465,69,74121,NULL,17166,1,'2021-11-09 01:57:32','2021-11-09 01:57:32','0aeda726-16d7-4a3e-8dd3-d77fec07fc6c'),(33466,198,74121,NULL,17166,1,'2021-11-09 01:57:32','2021-11-09 01:57:32','66fcc924-92f0-4c8c-a455-04e5dc24436c'),(33472,198,17684,NULL,28097,1,'2021-11-09 01:58:03','2021-11-09 01:58:03','6ea70f92-4ffb-4ce1-af36-691dc0e9e275'),(33473,184,74123,NULL,28097,1,'2021-11-09 01:58:03','2021-11-09 01:58:03','fce1f614-f3ad-4103-96d2-ca05880382f8'),(33474,69,74123,NULL,28097,1,'2021-11-09 01:58:03','2021-11-09 01:58:03','2868e226-5e45-44d6-9b9f-ed3f373e6dcc'),(33475,85,74123,NULL,17964,1,'2021-11-09 01:58:03','2021-11-09 01:58:03','b7dfebb9-61db-4d53-b7a1-1d5d972542ce'),(33476,85,74123,NULL,17965,2,'2021-11-09 01:58:03','2021-11-09 01:58:03','43cd793b-3f11-4fca-82d6-3ccd860bf9ef'),(33477,198,74123,NULL,28097,1,'2021-11-09 01:58:03','2021-11-09 01:58:03','afe438ea-2619-4215-bcd2-3392b6f26e95'),(33481,198,17682,NULL,17167,1,'2021-11-09 01:58:38','2021-11-09 01:58:38','60e25275-b9c6-42b6-9fd5-385660fad391'),(33482,184,74125,NULL,17167,1,'2021-11-09 01:58:38','2021-11-09 01:58:38','a8ca6a33-83ca-4e12-bf75-67c1401a6cb6'),(33483,69,74125,NULL,17167,1,'2021-11-09 01:58:38','2021-11-09 01:58:38','9941a1c0-72f0-45be-b5f6-cbf7a369f547'),(33484,198,74125,NULL,17167,1,'2021-11-09 01:58:38','2021-11-09 01:58:38','aebad029-8911-4c9a-8580-0b6c31a4f580'),(33491,198,17680,NULL,48413,1,'2021-11-09 01:59:29','2021-11-09 01:59:29','29e30f2b-b8a0-4c83-a91d-f07aedbb44cb'),(33492,184,74127,NULL,48413,1,'2021-11-09 01:59:29','2021-11-09 01:59:29','8a59f510-5dc6-452a-a63b-d794e0c32ff4'),(33493,69,74127,NULL,48414,1,'2021-11-09 01:59:29','2021-11-09 01:59:29','e11c476e-e438-4b8a-90e4-098b9d3a0c04'),(33494,85,74127,NULL,17964,1,'2021-11-09 01:59:29','2021-11-09 01:59:29','9db02c91-f4f2-4a2e-be39-31b4dfe9b4e6'),(33495,85,74127,NULL,17970,2,'2021-11-09 01:59:29','2021-11-09 01:59:29','702e7324-0eea-4bcb-af63-72a77eb3e939'),(33496,85,74127,NULL,17971,3,'2021-11-09 01:59:29','2021-11-09 01:59:29','3958204d-91da-4e0d-9764-88f31ed00ce5'),(33497,198,74127,NULL,48413,1,'2021-11-09 01:59:29','2021-11-09 01:59:29','4d467627-1670-4a65-b2d8-f7a63ebd1365'),(33505,198,17678,NULL,28101,1,'2021-11-09 01:59:54','2021-11-09 01:59:54','4c8824ce-e364-4c22-9d46-65ee4a9dac71'),(33506,184,74129,NULL,28101,1,'2021-11-09 01:59:54','2021-11-09 01:59:54','f76e61b6-37b2-4863-9f41-c85e33dbc330'),(33507,69,74129,NULL,28101,1,'2021-11-09 01:59:54','2021-11-09 01:59:54','4c3cf302-cfd7-402d-84c0-a915913e675b'),(33508,85,74129,NULL,17964,1,'2021-11-09 01:59:54','2021-11-09 01:59:54','f27397d2-3d2f-4ebb-ab09-0e8bd7ce8093'),(33509,85,74129,NULL,17965,2,'2021-11-09 01:59:54','2021-11-09 01:59:54','6def7583-acd6-4253-bcea-137784213371'),(33510,85,74129,NULL,17966,3,'2021-11-09 01:59:54','2021-11-09 01:59:54','3555c215-6f15-4341-a4c8-d332fd58c4be'),(33511,85,74129,NULL,17968,4,'2021-11-09 01:59:54','2021-11-09 01:59:54','634c0029-3e31-4fac-832d-b3da9507df70'),(33512,198,74129,NULL,28101,1,'2021-11-09 01:59:54','2021-11-09 01:59:54','5ae3fbe8-df29-4489-86a2-ab4f08129a8b'),(33518,198,17660,NULL,17431,1,'2021-11-09 02:00:48','2021-11-09 02:00:48','75232261-4b0a-40cf-9447-7ac14905506f'),(33519,184,74131,NULL,17431,1,'2021-11-09 02:00:48','2021-11-09 02:00:48','248c7ce7-844a-49d4-b003-603f739b231c'),(33520,69,74131,NULL,17431,1,'2021-11-09 02:00:48','2021-11-09 02:00:48','9aef486b-267d-4d97-8807-ab4fc4569299'),(33521,85,74131,NULL,17968,1,'2021-11-09 02:00:48','2021-11-09 02:00:48','e05ae026-56a5-469e-972c-cb8cc12fa200'),(33522,85,74131,NULL,17971,2,'2021-11-09 02:00:48','2021-11-09 02:00:48','35352c02-2a5f-4896-ac94-3b16f6826bbd'),(33523,198,74131,NULL,17431,1,'2021-11-09 02:00:48','2021-11-09 02:00:48','78ce954b-6549-4168-b861-2eee7374f300'),(33529,198,17654,NULL,17433,1,'2021-11-09 02:01:18','2021-11-09 02:01:18','b5878f69-86f1-4b12-a429-10b6f44f6008'),(33530,184,74133,NULL,17433,1,'2021-11-09 02:01:18','2021-11-09 02:01:18','7d55defb-7f3a-4050-842f-29338a4bf1da'),(33531,69,74133,NULL,17433,1,'2021-11-09 02:01:19','2021-11-09 02:01:19','4be7f7fb-b9c2-4fb7-8ec5-3cabbac13a51'),(33532,85,74133,NULL,17964,1,'2021-11-09 02:01:19','2021-11-09 02:01:19','d738fb11-3182-4125-90ab-9e29358a765a'),(33533,85,74133,NULL,17968,2,'2021-11-09 02:01:19','2021-11-09 02:01:19','ce43be8f-33f6-41db-a71f-cd54cdf8c03b'),(33534,198,74133,NULL,17433,1,'2021-11-09 02:01:19','2021-11-09 02:01:19','c6796dfb-f959-474c-ae14-4d717298b176'),(33542,184,74135,NULL,17436,1,'2021-11-09 02:01:53','2021-11-09 02:01:53','78b72d6d-7c88-4738-a229-d4e8fc363bf7'),(33543,69,74135,NULL,17436,1,'2021-11-09 02:01:53','2021-11-09 02:01:53','ee94625a-f514-4e20-9ae8-5a7d0e5e6adf'),(33544,85,74135,NULL,17964,1,'2021-11-09 02:01:53','2021-11-09 02:01:53','5f8c981e-442e-4937-bb43-2556eeed2cad'),(33545,85,74135,NULL,17965,2,'2021-11-09 02:01:53','2021-11-09 02:01:53','a713fe14-a87c-4344-b761-f2c80004ac30'),(33546,85,74135,NULL,17971,3,'2021-11-09 02:01:53','2021-11-09 02:01:53','6e793a0e-b591-40c7-99d4-ef33ceaf53b9'),(33547,198,74135,NULL,17436,1,'2021-11-09 02:01:53','2021-11-09 02:01:53','5601a94a-d0ff-46a3-9a68-adc1a3aedb66'),(33554,198,17644,NULL,17437,1,'2021-11-09 02:02:27','2021-11-09 02:02:27','c182a278-42fe-4829-8bfc-375f2a70baef'),(33555,184,74137,NULL,17437,1,'2021-11-09 02:02:27','2021-11-09 02:02:27','3f9731de-f2be-4785-aa2f-cd1d84c4fb96'),(33556,69,74137,NULL,17437,1,'2021-11-09 02:02:27','2021-11-09 02:02:27','b7256d2b-b36f-4e3b-9b53-180fc3c272cd'),(33557,85,74137,NULL,17964,1,'2021-11-09 02:02:27','2021-11-09 02:02:27','d2f64b4c-2956-4bb3-852a-5953f011d78e'),(33558,85,74137,NULL,17965,2,'2021-11-09 02:02:27','2021-11-09 02:02:27','06fa2e21-23f3-4259-913f-c1bd1852715e'),(33559,85,74137,NULL,17971,3,'2021-11-09 02:02:27','2021-11-09 02:02:27','e512965e-c0bb-49c9-b77e-c3a06f484257'),(33560,198,74137,NULL,17437,1,'2021-11-09 02:02:27','2021-11-09 02:02:27','45c79f6b-ad99-4ccc-8852-7b24982927e1'),(33564,198,17623,NULL,17446,1,'2021-11-09 02:03:06','2021-11-09 02:03:06','672409eb-847f-4ddc-bbd8-39043f710d89'),(33565,184,74139,NULL,17446,1,'2021-11-09 02:03:06','2021-11-09 02:03:06','d2da0b1a-accc-4583-b5b8-5e0ce4f64686'),(33566,69,74139,NULL,17446,1,'2021-11-09 02:03:06','2021-11-09 02:03:06','d6378ab9-6e5b-4631-87f8-f1406789f06d'),(33567,198,74139,NULL,17446,1,'2021-11-09 02:03:06','2021-11-09 02:03:06','14de67a8-0d6c-464a-8e84-2f4551d16882'),(33604,198,44981,NULL,48176,1,'2021-11-09 02:05:30','2021-11-09 02:05:30','5aa28b87-a611-475e-b7a6-955dfdce3df6'),(33605,79,74143,NULL,17875,1,'2021-11-09 02:05:30','2021-11-09 02:05:30','a1bc6ce0-c28b-4391-83aa-6815ff82a070'),(33606,79,74143,NULL,17954,2,'2021-11-09 02:05:30','2021-11-09 02:05:30','33d520e3-fc3e-4c25-a19d-7965324ccb30'),(33607,69,74143,NULL,48176,1,'2021-11-09 02:05:30','2021-11-09 02:05:30','0b97454b-e35f-4ec9-b865-00eb998eba7a'),(33608,85,74143,NULL,17964,1,'2021-11-09 02:05:30','2021-11-09 02:05:30','408854c5-aa20-4c9f-a3d3-736732458831'),(33609,85,74143,NULL,17965,2,'2021-11-09 02:05:30','2021-11-09 02:05:30','4f14074c-0223-4fa7-9b00-4b2dd551e995'),(33610,85,74143,NULL,17966,3,'2021-11-09 02:05:30','2021-11-09 02:05:30','d284b941-b7b1-4b65-b274-fc9a1f507aee'),(33611,85,74143,NULL,17969,4,'2021-11-09 02:05:30','2021-11-09 02:05:30','040e472f-6ea5-4a64-84a0-2574608e6195'),(33612,85,74143,NULL,17970,5,'2021-11-09 02:05:30','2021-11-09 02:05:30','1d1a0d1a-2e16-4cd5-a9ac-50390b186c0c'),(33613,85,74143,NULL,17971,6,'2021-11-09 02:05:30','2021-11-09 02:05:30','9ae245e7-17d4-45b2-8a2d-7ae08e6a3fde'),(33614,84,74143,NULL,38158,1,'2021-11-09 02:05:30','2021-11-09 02:05:30','f7644a3f-102b-40d9-b85f-b7ba720364fd'),(33615,198,74143,NULL,48176,1,'2021-11-09 02:05:30','2021-11-09 02:05:30','f4a4e87b-249a-43b8-abe5-b3deadacb8b5'),(33623,198,44862,NULL,48180,1,'2021-11-09 02:06:04','2021-11-09 02:06:04','54c98aae-ab3b-4608-9328-a7e43d3361e2'),(33624,69,74145,NULL,48180,1,'2021-11-09 02:06:04','2021-11-09 02:06:04','c5fc5fd5-7f67-45dd-a71f-e285e5b55fa7'),(33625,85,74145,NULL,17964,1,'2021-11-09 02:06:04','2021-11-09 02:06:04','cafc80d9-1e87-41c3-8fa7-b19e9b8e7d4f'),(33626,85,74145,NULL,17966,2,'2021-11-09 02:06:04','2021-11-09 02:06:04','c31d70b9-cbbe-4908-ab73-573c2fe686b9'),(33627,85,74145,NULL,17969,3,'2021-11-09 02:06:04','2021-11-09 02:06:04','bea88325-50b8-44e4-916c-5836dd8c6a43'),(33628,85,74145,NULL,17971,4,'2021-11-09 02:06:04','2021-11-09 02:06:04','3b8f8c2d-f22d-457f-8fa1-1967fee29a25'),(33629,84,74145,NULL,18057,1,'2021-11-09 02:06:04','2021-11-09 02:06:04','fe87c043-ff86-483c-88d5-2a59de86f887'),(33630,198,74145,NULL,48180,1,'2021-11-09 02:06:04','2021-11-09 02:06:04','dd6c299c-7938-48f3-bb46-7a59ff8f9c6d'),(33643,198,44849,NULL,48184,1,'2021-11-09 02:06:46','2021-11-09 02:06:46','cbe27250-6e2f-4cb3-a4c3-50d82c49dabf'),(33644,79,74147,NULL,17875,1,'2021-11-09 02:06:47','2021-11-09 02:06:47','842bbb5d-0b9c-4be9-b118-ab6bf6434863'),(33645,79,74147,NULL,17881,2,'2021-11-09 02:06:47','2021-11-09 02:06:47','2904c0f7-fcae-4cfb-a675-3f40630945b0'),(33646,79,74147,NULL,1,3,'2021-11-09 02:06:47','2021-11-09 02:06:47','6b19516b-dab6-4f60-9601-7dbfcfd7a614'),(33647,79,74147,NULL,17954,4,'2021-11-09 02:06:47','2021-11-09 02:06:47','3455511a-2a9d-4b0c-a5ad-a1c4b46cb002'),(33648,79,74147,NULL,17956,5,'2021-11-09 02:06:47','2021-11-09 02:06:47','b6f22eb9-dcf7-4adb-8d8c-5b6fd8e23109'),(33649,69,74147,NULL,48184,1,'2021-11-09 02:06:47','2021-11-09 02:06:47','9d8737fb-e55c-4198-abbf-4eb081a0ff47'),(33650,85,74147,NULL,17964,1,'2021-11-09 02:06:47','2021-11-09 02:06:47','d4cffd5a-437e-4403-b617-24bf540f1d2c'),(33651,85,74147,NULL,17965,2,'2021-11-09 02:06:47','2021-11-09 02:06:47','03dafda1-d098-4581-8b5b-6f2682ac97fa'),(33652,85,74147,NULL,17970,3,'2021-11-09 02:06:47','2021-11-09 02:06:47','8510e608-5fb4-4465-aeb9-0c50bc4f5504'),(33653,85,74147,NULL,17971,4,'2021-11-09 02:06:47','2021-11-09 02:06:47','dece74ac-ccf5-4531-a386-a88a49fb008c'),(33654,84,74147,NULL,38158,1,'2021-11-09 02:06:47','2021-11-09 02:06:47','cebea16b-2732-4107-bde4-a4f46b3f523e'),(33655,198,74147,NULL,48184,1,'2021-11-09 02:06:47','2021-11-09 02:06:47','7d327836-b2dc-4a25-861d-33913e47d831'),(33666,198,44845,NULL,48452,1,'2021-11-09 02:07:46','2021-11-09 02:07:46','156d3461-9f05-45da-9b6f-cd239fe0abda'),(33667,79,74149,NULL,17875,1,'2021-11-09 02:07:46','2021-11-09 02:07:46','63eb501f-3f34-4e42-bb55-d0548450bb1d'),(33668,79,74149,NULL,17954,2,'2021-11-09 02:07:46','2021-11-09 02:07:46','6975c0e5-d707-4702-82f7-64047d66e189'),(33669,69,74149,NULL,48452,1,'2021-11-09 02:07:47','2021-11-09 02:07:47','81024753-f339-4fd5-821d-304fe751714d'),(33670,85,74149,NULL,17964,1,'2021-11-09 02:07:47','2021-11-09 02:07:47','f7d52605-f1c2-4cda-bf21-73274453b575'),(33671,85,74149,NULL,17966,2,'2021-11-09 02:07:47','2021-11-09 02:07:47','a2e2386a-e00b-4681-ac50-366fb2148616'),(33672,85,74149,NULL,17968,3,'2021-11-09 02:07:47','2021-11-09 02:07:47','734bda71-fd68-4bad-a86a-ac21c38050c2'),(33673,85,74149,NULL,17970,4,'2021-11-09 02:07:47','2021-11-09 02:07:47','c8704973-0c1c-4640-9188-f7d1e4d96f22'),(33674,85,74149,NULL,17971,5,'2021-11-09 02:07:47','2021-11-09 02:07:47','ced1d90c-2187-47b0-968f-26d1664e8a91'),(33675,84,74149,NULL,18057,1,'2021-11-09 02:07:47','2021-11-09 02:07:47','bb89d263-7cfb-48d0-92b7-affaa1a4e4dd'),(33676,198,74149,NULL,48452,1,'2021-11-09 02:07:47','2021-11-09 02:07:47','7caea5e5-b46d-459d-8ac5-8554aad95d1d'),(33677,79,21296,NULL,17921,5,'2021-11-09 05:49:01','2023-03-09 04:33:13','771f6970-dc58-4ce3-8b5b-8adf67037ecb'),(33678,79,74168,NULL,17887,1,'2021-11-11 01:05:47','2021-11-11 01:05:47','c2d617e2-d451-4069-ade8-bb4b30055b37'),(33679,79,74168,NULL,17893,2,'2021-11-11 01:05:47','2021-11-11 01:05:47','62b5e96b-5cce-4c60-a76e-29bb4d471bad'),(33680,79,74168,NULL,21898,3,'2021-11-11 01:05:47','2021-11-11 01:05:47','f17c2925-6568-4c2c-9b85-55d756ba58c6'),(33682,79,74168,NULL,17881,5,'2021-11-11 01:05:47','2021-11-11 01:05:47','79792049-8bef-4501-8c96-ba237da4a09c'),(33683,79,74168,NULL,17956,6,'2021-11-11 01:05:47','2021-11-11 01:05:47','36924331-accc-4228-ad4d-5ca0ffc4571b'),(33684,69,74168,NULL,48162,1,'2021-11-11 01:05:47','2021-11-11 01:05:47','597b05f5-5a18-4e1f-baab-65d239719d26'),(33685,85,74168,NULL,17964,1,'2021-11-11 01:05:47','2021-11-11 01:05:47','65b461bf-ee65-4e0e-93b5-bfc603fcf8bf'),(33686,85,74168,NULL,17968,2,'2021-11-11 01:05:47','2021-11-11 01:05:47','3b7923c6-12f1-4868-9331-4d1cd05f53b5'),(33687,84,74168,NULL,18057,1,'2021-11-11 01:05:47','2021-11-11 01:05:47','a470def0-a624-41be-893c-183a916ef930'),(33688,84,74168,NULL,38159,2,'2021-11-11 01:05:47','2021-11-11 01:05:47','2a4696c2-3443-4e1e-9107-d9fd7c948b31'),(33689,84,74168,NULL,38160,3,'2021-11-11 01:05:47','2021-11-11 01:05:47','5fbdc2d2-e163-4e73-9584-e13bcf939415'),(33696,191,74177,NULL,18156,1,'2021-11-12 03:23:08','2021-11-12 03:23:08','fd52e8d7-70e5-44c8-9a6d-c5c998740a78'),(33697,191,74178,NULL,18122,1,'2021-11-12 03:23:08','2021-11-12 03:23:08','9ae90fdc-5ca6-4adf-be51-aaf851763330'),(33698,191,74179,NULL,30427,1,'2021-11-12 03:23:08','2021-11-12 03:23:08','d5c56b53-475a-489e-b90c-d57b8998630e'),(33699,191,74180,NULL,18109,1,'2021-11-12 03:23:08','2021-11-12 03:23:08','99c03582-9b0f-4a31-a54e-56ee0d8b98ed'),(33700,191,74181,NULL,16828,1,'2021-11-12 03:23:08','2021-11-12 03:23:08','f2cb78bd-f447-4b3b-853e-6f92dffd81e9'),(33701,191,74182,NULL,40504,1,'2021-11-12 03:23:08','2021-11-12 03:23:08','215c4b1e-21c1-4b49-8664-ff6595e0e80a'),(33708,191,74191,NULL,18156,1,'2021-11-12 03:23:35','2021-11-12 03:23:35','b3f3cfd5-b623-4b39-b523-3717dc58d4e5'),(33709,191,74192,NULL,18122,1,'2021-11-12 03:23:35','2021-11-12 03:23:35','d2e8e3a1-6970-4234-a7a9-d225f6c9a9ea'),(33710,191,74193,NULL,30427,1,'2021-11-12 03:23:35','2021-11-12 03:23:35','75735f91-ebab-4f18-a74d-c4cf3f56f3f9'),(33711,191,74194,NULL,18109,1,'2021-11-12 03:23:35','2021-11-12 03:23:35','9f29349e-50fb-4440-822a-769a1fb15127'),(33712,191,74195,NULL,16828,1,'2021-11-12 03:23:35','2021-11-12 03:23:35','bbe92cb6-5bde-4698-ab03-15e308b99a39'),(33713,191,74196,NULL,40504,1,'2021-11-12 03:23:35','2021-11-12 03:23:35','7e4d6633-57d3-4c68-b0ef-7b2985d39514'),(33720,191,74205,NULL,18156,1,'2021-11-12 03:23:52','2021-11-12 03:23:52','4ff151d9-18bb-4846-bd11-681038482b1f'),(33721,191,74206,NULL,18122,1,'2021-11-12 03:23:52','2021-11-12 03:23:52','ec524d55-ff3e-47b5-ab3d-ac9d7f82e75a'),(33722,191,74207,NULL,30427,1,'2021-11-12 03:23:52','2021-11-12 03:23:52','5515e18f-ea24-4b60-b3ed-1b7e5e457ba7'),(33723,191,74208,NULL,18109,1,'2021-11-12 03:23:52','2021-11-12 03:23:52','4afb6df4-6977-4601-9ac4-2d62566d1bae'),(33724,191,74209,NULL,16828,1,'2021-11-12 03:23:52','2021-11-12 03:23:52','fa0530a3-c49c-4925-9940-50f764638ef7'),(33725,191,74210,NULL,40504,1,'2021-11-12 03:23:52','2021-11-12 03:23:52','2265d3a0-1d6a-43a7-8eec-87120d4d4658'),(33726,191,74212,NULL,18156,1,'2021-11-12 03:24:13','2021-11-12 03:24:13','a488b0af-b621-4627-9aef-78752daaf395'),(33727,191,74213,NULL,18122,1,'2021-11-12 03:24:13','2021-11-12 03:24:13','ecf826b8-c7de-438f-8b32-f58e58879f71'),(33728,191,74214,NULL,30427,1,'2021-11-12 03:24:13','2021-11-12 03:24:13','2d785f3a-2fb0-4cbc-afe1-4ace71b43753'),(33729,191,74215,NULL,18109,1,'2021-11-12 03:24:13','2021-11-12 03:24:13','59111e8f-44d1-4155-a4aa-76ed8818e004'),(33730,191,74216,NULL,16828,1,'2021-11-12 03:24:13','2021-11-12 03:24:13','05b6ce53-89c4-4d09-9428-f285f6ae618b'),(33731,191,74217,NULL,40504,1,'2021-11-12 03:24:13','2021-11-12 03:24:13','758396e5-0cf4-447d-9350-1ffd5a42acd6'),(33738,191,74232,NULL,18156,1,'2021-11-12 03:41:09','2021-11-12 03:41:09','8e0b5267-2098-44a0-a9e0-d8e0b7c0fbd8'),(33739,191,74233,NULL,18122,1,'2021-11-12 03:41:09','2021-11-12 03:41:09','74f5850d-50d8-4fd6-9a25-7ec8bc983c6d'),(33740,191,74234,NULL,30427,1,'2021-11-12 03:41:09','2021-11-12 03:41:09','036b92ea-66e4-4f1e-9f31-265123a7bdb6'),(33741,191,74235,NULL,18109,1,'2021-11-12 03:41:09','2021-11-12 03:41:09','a449a1f5-abb9-4a6c-99b6-784f4c50bb0e'),(33742,191,74236,NULL,16828,1,'2021-11-12 03:41:09','2021-11-12 03:41:09','1071c643-6394-4673-9611-3fe97a7e10ed'),(33743,191,74237,NULL,40504,1,'2021-11-12 03:41:09','2021-11-12 03:41:09','b25f46ea-0914-425c-8258-60e361d092a3'),(33750,191,74246,NULL,18156,1,'2021-11-12 03:41:37','2021-11-12 03:41:37','bca4a13c-40c4-4445-a62c-7c5738dab810'),(33751,191,74247,NULL,18122,1,'2021-11-12 03:41:37','2021-11-12 03:41:37','deb3bee5-a902-42ee-8f9d-92f75070b40d'),(33752,191,74248,NULL,30427,1,'2021-11-12 03:41:37','2021-11-12 03:41:37','5f5cda26-93ce-4947-b320-eab07dee1965'),(33753,191,74249,NULL,18109,1,'2021-11-12 03:41:38','2021-11-12 03:41:38','360622d0-f9bf-4e94-acc2-fcc9633831c9'),(33754,191,74250,NULL,16828,1,'2021-11-12 03:41:38','2021-11-12 03:41:38','4d028063-23d7-4548-a17d-6eea1290d0cc'),(33755,191,74251,NULL,40504,1,'2021-11-12 03:41:38','2021-11-12 03:41:38','00eaa7d2-8494-4b90-9878-9fbfb41bb327'),(33768,191,74257,NULL,18156,1,'2021-11-15 01:17:30','2021-11-15 01:17:30','c4abc09f-2b1f-4a77-bcb9-561af1c2b941'),(33769,191,74258,NULL,18122,1,'2021-11-15 01:17:30','2021-11-15 01:17:30','ba8eb4a5-2989-4d0c-b3d6-27eef9805f5f'),(33770,191,74259,NULL,30427,1,'2021-11-15 01:17:30','2021-11-15 01:17:30','4249b97b-a360-437c-9462-1d95e2d94373'),(33771,191,74260,NULL,18109,1,'2021-11-15 01:17:30','2021-11-15 01:17:30','f342dde3-a938-4d90-bf29-f56dc47005a9'),(33772,191,74261,NULL,16828,1,'2021-11-15 01:17:30','2021-11-15 01:17:30','dfbee6a8-81ca-4942-865a-6c95ee5e57c5'),(33773,191,74262,NULL,40504,1,'2021-11-15 01:17:30','2021-11-15 01:17:30','79e48dac-ceea-4242-a496-c1cde4e163e2'),(33774,191,74266,NULL,18156,1,'2021-11-15 01:17:39','2021-11-15 01:17:39','8978dba2-2ce4-4305-8f6a-235d5fdce36a'),(33775,191,74267,NULL,18122,1,'2021-11-15 01:17:39','2021-11-15 01:17:39','b90dcbb7-9fbb-4bd6-bea2-c735ca54f2aa'),(33776,191,74268,NULL,30427,1,'2021-11-15 01:17:39','2021-11-15 01:17:39','2dd7b479-3c3b-430c-ab4a-b7e8e8921545'),(33777,191,74269,NULL,18109,1,'2021-11-15 01:17:39','2021-11-15 01:17:39','9c6cc041-a846-40d8-8795-0d8895e44ec4'),(33778,191,74270,NULL,16828,1,'2021-11-15 01:17:39','2021-11-15 01:17:39','54c5f664-350c-463d-9a90-1b4cd5b2e741'),(33779,191,74271,NULL,40504,1,'2021-11-15 01:17:39','2021-11-15 01:17:39','c8d898d2-d2c6-47f7-ad0e-055f8014db68'),(49918,198,87613,NULL,87584,1,'2021-12-10 01:13:40','2021-12-10 01:13:40','5ac2d8d6-15e1-410c-8b6e-4a2916dec7c8'),(49920,198,87615,NULL,87584,1,'2021-12-10 01:32:12','2021-12-10 01:32:12','0adf273f-37dd-4939-890e-8f03679be60d'),(49922,198,87617,NULL,87584,1,'2021-12-10 01:33:17','2021-12-10 01:33:17','ed269d03-68f6-4f29-af1e-1f78be86566c'),(49924,198,87619,NULL,87584,1,'2021-12-10 01:49:51','2021-12-10 01:49:51','63690ea1-0898-478b-a304-ae18420564c0'),(49926,198,87623,NULL,87584,1,'2021-12-10 01:59:34','2021-12-10 01:59:34','b7f941a1-b495-4ded-b237-3db7c705558e'),(49928,198,87625,NULL,87584,1,'2021-12-10 03:20:24','2021-12-10 03:20:24','5b30431e-82e5-44a0-ba64-4213898f6291'),(49930,198,87627,NULL,87584,1,'2021-12-10 03:27:21','2021-12-10 03:27:21','43514721-4168-4899-8ac9-e4102aaff70f'),(49933,198,87608,NULL,87602,1,'2021-12-10 03:32:42','2021-12-10 03:32:42','95676a2f-e8f7-4e35-9e1e-9fc09d5d00ba'),(49934,198,87629,NULL,87602,1,'2021-12-10 03:32:43','2021-12-10 03:32:43','c7caaa5e-7dac-4768-b203-6bb62492b0aa'),(49937,198,87632,NULL,87602,1,'2021-12-10 03:35:22','2021-12-10 03:35:22','fdec4a02-cba3-44b4-bfc6-303a70b614cb'),(57516,85,94201,NULL,17964,1,'2021-12-21 04:45:32','2021-12-21 04:45:32','498c05d3-db09-45b1-abc7-ad85cc675122'),(57517,85,94201,NULL,17965,2,'2021-12-21 04:45:32','2021-12-21 04:45:32','2aaef458-c0f4-4ed6-8270-ae084a9ee67a'),(57518,85,94201,NULL,17970,3,'2021-12-21 04:45:32','2021-12-21 04:45:32','cfa9a45d-a520-48d6-b1e7-56d3b2b619b1'),(57519,85,94201,NULL,17971,4,'2021-12-21 04:45:32','2021-12-21 04:45:32','19eb1354-5222-4a07-97d2-ed8883300cc1'),(57520,84,94201,NULL,38158,1,'2021-12-21 04:45:32','2021-12-21 04:45:32','92b8bff2-8fcf-4a4c-adb0-60365b70021d'),(57521,85,94207,NULL,17964,1,'2022-01-06 06:52:11','2022-01-06 06:52:11','fa135e72-7ded-4d2d-a314-19f543c842a3'),(57522,85,94207,NULL,17965,2,'2022-01-06 06:52:11','2022-01-06 06:52:11','f6d5e8b0-a335-4def-9569-889fcd514b76'),(57523,85,94207,NULL,17970,3,'2022-01-06 06:52:11','2022-01-06 06:52:11','35c415df-cf6f-4e13-b746-38f913dfd677'),(57524,85,94207,NULL,17971,4,'2022-01-06 06:52:11','2022-01-06 06:52:11','86c16bed-00fb-487c-b108-02f5d9fbca29'),(57525,84,94207,NULL,38158,1,'2022-01-06 06:52:11','2022-01-06 06:52:11','701cee6d-720f-479d-a24a-639b8f07a2aa'),(57531,85,94217,NULL,17964,1,'2022-01-07 01:43:10','2022-01-07 01:43:10','f101cd2e-cf6f-4b6b-9a10-9a53b0437516'),(57532,85,94217,NULL,17965,2,'2022-01-07 01:43:10','2022-01-07 01:43:10','f4c8496e-84f0-4284-a352-d7e46b6b1107'),(57533,85,94217,NULL,17970,3,'2022-01-07 01:43:10','2022-01-07 01:43:10','50c1e075-70cf-4484-8e2e-b52fa28eca6e'),(57534,85,94217,NULL,17971,4,'2022-01-07 01:43:10','2022-01-07 01:43:10','29a8caed-5e50-444f-b003-8a1765daa56a'),(57535,84,94217,NULL,38158,1,'2022-01-07 01:43:10','2022-01-07 01:43:10','5f7a0c86-0b23-4142-b21e-6a1fe2abf66d'),(57541,85,94222,NULL,17964,1,'2022-01-07 01:55:42','2022-01-07 01:55:42','e0070101-3c4f-4222-a3ac-7d98ccfa1ffe'),(57542,85,94222,NULL,17965,2,'2022-01-07 01:55:42','2022-01-07 01:55:42','cbba13fc-0ed1-432a-9f1d-b0879b058e80'),(57543,85,94222,NULL,17970,3,'2022-01-07 01:55:42','2022-01-07 01:55:42','076ec342-845a-44b9-9dfd-a256835ef89e'),(57544,85,94222,NULL,17971,4,'2022-01-07 01:55:42','2022-01-07 01:55:42','efed86ba-590d-4bff-ae8f-82a9997eb50c'),(57545,84,94222,NULL,38158,1,'2022-01-07 01:55:42','2022-01-07 01:55:42','af0d7fd9-80b5-48c4-ac7b-0ec766613673'),(60638,79,21296,NULL,97259,8,'2022-01-27 22:27:05','2023-03-09 04:33:13','cea3d3e5-c1ee-49ab-9942-dff18b3db8e3'),(60654,79,97274,NULL,17875,1,'2022-01-30 04:05:12','2022-01-30 04:05:12','0ee7be23-a46f-494c-9907-b33a6dc7c70c'),(60656,79,97274,NULL,17934,3,'2022-01-30 04:05:12','2022-01-30 04:05:12','bf264932-efcf-4b11-a6b8-a60aa4af856b'),(60657,79,97274,NULL,30433,4,'2022-01-30 04:05:12','2022-01-30 04:05:12','3245d2c7-8e0b-4269-be1e-56a4fa6b53a0'),(60658,79,97274,NULL,1,5,'2022-01-30 04:05:12','2022-01-30 04:05:12','ae2f9340-b024-465e-bf97-a90e0efaf04c'),(60659,79,97274,NULL,17954,6,'2022-01-30 04:05:12','2022-01-30 04:05:12','dc65cfa1-c93f-4dfd-abcc-3c3701b4548b'),(60660,79,97274,NULL,17956,7,'2022-01-30 04:05:12','2022-01-30 04:05:12','b14573ec-4edc-45f1-b9c0-7278192b5e48'),(60661,69,97274,NULL,38123,1,'2022-01-30 04:05:12','2022-01-30 04:05:12','9f2c6de6-619b-4ef2-924d-c3204b05990a'),(60662,85,97274,NULL,17964,1,'2022-01-30 04:05:12','2022-01-30 04:05:12','e35cbc42-8692-4622-9d7a-663c1074bd37'),(60663,85,97274,NULL,17965,2,'2022-01-30 04:05:12','2022-01-30 04:05:12','b6b2f211-1779-40fa-b3d5-e369ad1d6940'),(60664,85,97274,NULL,17966,3,'2022-01-30 04:05:12','2022-01-30 04:05:12','cad03edf-566e-4a5e-8a69-b3b0c9747efd'),(60665,85,97274,NULL,17968,4,'2022-01-30 04:05:12','2022-01-30 04:05:12','dfaabb9d-43b7-4418-bf3d-e08b6d5df2f6'),(60666,85,97274,NULL,17970,5,'2022-01-30 04:05:12','2022-01-30 04:05:12','25eae49f-11f0-480a-b780-768efb9eab9e'),(60667,85,97274,NULL,17971,6,'2022-01-30 04:05:12','2022-01-30 04:05:12','43fd4acc-a939-4424-88cc-90d28b4d33d9'),(60668,84,97274,NULL,38157,1,'2022-01-30 04:05:12','2022-01-30 04:05:12','e8999215-2dbf-46cb-84a8-a7710def0521'),(60674,85,97276,NULL,17964,1,'2022-02-08 03:26:34','2022-02-08 03:26:34','e856bbfe-f4bd-4855-8bc6-957c7b135db9'),(60675,85,97276,NULL,17965,2,'2022-02-08 03:26:34','2022-02-08 03:26:34','da128f1e-94b8-4884-ade3-56685f71855d'),(60676,85,97276,NULL,17970,3,'2022-02-08 03:26:34','2022-02-08 03:26:34','7b633d34-39ed-4ab8-9107-40569e2b2bac'),(60677,85,97276,NULL,17971,4,'2022-02-08 03:26:34','2022-02-08 03:26:34','c286ee73-16a7-435f-8978-36c1ffee6c1d'),(60678,84,97276,NULL,38158,1,'2022-02-08 03:26:34','2022-02-08 03:26:34','72c66463-cdd4-4c8d-811e-ebb7cb9f1b3e'),(60684,85,97278,NULL,17964,1,'2022-02-08 03:37:36','2022-02-08 03:37:36','52e17177-0383-4739-9dcd-e22f88e567fc'),(60685,85,97278,NULL,17965,2,'2022-02-08 03:37:36','2022-02-08 03:37:36','68098ddd-0469-4584-96e2-08ba108ec579'),(60686,85,97278,NULL,17970,3,'2022-02-08 03:37:36','2022-02-08 03:37:36','0fe8dc44-7672-48b2-abe9-3556fe315756'),(60687,85,97278,NULL,17971,4,'2022-02-08 03:37:36','2022-02-08 03:37:36','7ad2753c-f694-457b-8628-3f845d75b744'),(60688,84,97278,NULL,38158,1,'2022-02-08 03:37:36','2022-02-08 03:37:36','c0b0cb7a-e630-4520-b8ba-e02f5a763679'),(60694,85,97280,NULL,17964,1,'2022-02-08 03:38:29','2022-02-08 03:38:29','d17c1376-6618-45d2-8e95-fb2c14c96dce'),(60695,85,97280,NULL,17965,2,'2022-02-08 03:38:29','2022-02-08 03:38:29','d97c196a-2c8d-4089-9f5e-1c0804079bd6'),(60696,85,97280,NULL,17970,3,'2022-02-08 03:38:29','2022-02-08 03:38:29','78097459-8fc2-4d5d-9cf2-c5451e768530'),(60697,85,97280,NULL,17971,4,'2022-02-08 03:38:29','2022-02-08 03:38:29','f6d1a606-f32e-4edf-91fe-9ce244884bc9'),(60698,84,97280,NULL,38158,1,'2022-02-08 03:38:29','2022-02-08 03:38:29','7a73e150-90be-426a-abe3-34fb54dd305d'),(60709,85,97283,NULL,17964,1,'2022-02-08 03:42:40','2022-02-08 03:42:40','770fe23a-ccf2-4418-85b1-313c17363d9e'),(60710,85,97283,NULL,17965,2,'2022-02-08 03:42:40','2022-02-08 03:42:40','785a3601-9a1a-4d29-9675-24b145eabf95'),(60711,85,97283,NULL,17970,3,'2022-02-08 03:42:40','2022-02-08 03:42:40','7db8fb0c-9865-417a-9e2a-ed9e5c2fb58c'),(60712,85,97283,NULL,17971,4,'2022-02-08 03:42:40','2022-02-08 03:42:40','0d1fce32-71bf-47b7-98ec-e715c68fc2d6'),(60713,84,97283,NULL,38158,1,'2022-02-08 03:42:40','2022-02-08 03:42:40','87df7874-b389-46b0-9fae-5ee56a1a0a8b'),(60714,85,97284,NULL,17964,1,'2022-02-08 03:43:45','2022-02-08 03:43:45','4179f4d2-1e59-4900-82e3-0b34d1033617'),(60715,85,97284,NULL,17965,2,'2022-02-08 03:43:45','2022-02-08 03:43:45','51f905b3-ba60-40fc-a017-0fc1f11cd75e'),(60716,85,97284,NULL,17970,3,'2022-02-08 03:43:45','2022-02-08 03:43:45','8cb528a9-7de2-4183-b3c5-e4a8c6293e2a'),(60717,85,97284,NULL,17971,4,'2022-02-08 03:43:45','2022-02-08 03:43:45','73c72df8-ea8c-469b-9f63-c80e273323d3'),(60718,84,97284,NULL,38158,1,'2022-02-08 03:43:45','2022-02-08 03:43:45','58d073ac-9f0d-4927-b35b-863c93c97630'),(60725,198,58762,NULL,94210,1,'2022-02-08 03:47:18','2022-02-08 03:47:18','374dd6aa-5501-4f6c-89a1-74fe2e1631ba'),(60726,85,97286,NULL,17964,1,'2022-02-08 03:47:18','2022-02-08 03:47:18','af15682e-5083-479c-9717-0faa146ab8e8'),(60727,85,97286,NULL,17965,2,'2022-02-08 03:47:18','2022-02-08 03:47:18','2ad02032-c958-4450-9b4c-be73a482c356'),(60728,85,97286,NULL,17970,3,'2022-02-08 03:47:18','2022-02-08 03:47:18','7f82aac8-146e-4084-b8cf-77c0066f65f4'),(60729,85,97286,NULL,17971,4,'2022-02-08 03:47:18','2022-02-08 03:47:18','e7b46660-8187-47a4-a866-51539acbec7c'),(60730,84,97286,NULL,38158,1,'2022-02-08 03:47:18','2022-02-08 03:47:18','717be69c-8f68-45c9-8d21-101df45a3ebd'),(60731,198,97286,NULL,94210,1,'2022-02-08 03:47:18','2022-02-08 03:47:18','ba676a3f-7de5-43cb-a2f6-cbf2a2cf773e'),(60739,69,58762,NULL,94210,1,'2022-02-09 00:57:55','2022-02-09 00:57:55','d0b516f4-b35d-4065-8ce3-307f6701c79c'),(60740,69,97390,NULL,94210,1,'2022-02-09 00:57:55','2022-02-09 00:57:55','9d6ff33f-7efa-457b-8356-2d81f669d394'),(60741,85,97390,NULL,17964,1,'2022-02-09 00:57:55','2022-02-09 00:57:55','dc110434-8f14-450a-8097-91d7d9e4d4c2'),(60742,85,97390,NULL,17965,2,'2022-02-09 00:57:55','2022-02-09 00:57:55','05ed2142-d26c-4c6f-898e-1cf21b02e6d7'),(60743,85,97390,NULL,17970,3,'2022-02-09 00:57:55','2022-02-09 00:57:55','5f610c4a-ae7e-400f-9666-4e2cea0858ee'),(60744,85,97390,NULL,17971,4,'2022-02-09 00:57:55','2022-02-09 00:57:55','3d723fe3-1fa6-4efb-89d4-3412245154d5'),(60745,84,97390,NULL,38158,1,'2022-02-09 00:57:55','2022-02-09 00:57:55','89bfdb19-bc96-46d9-a368-f2a385aeb5d2'),(60746,198,97390,NULL,94210,1,'2022-02-09 00:57:55','2022-02-09 00:57:55','ed1c4306-7b83-44fb-9775-73052df73ab1'),(89861,191,120624,NULL,18156,1,'2022-02-23 02:56:20','2022-02-23 02:56:20','9f422525-94a5-4481-924f-db04cf28aece'),(89862,191,120625,NULL,18122,1,'2022-02-23 02:56:20','2022-02-23 02:56:20','14fa385d-e36c-4d04-8591-30188c8f627d'),(89863,191,120626,NULL,30427,1,'2022-02-23 02:56:20','2022-02-23 02:56:20','9fe375fb-d91b-4201-86e9-0bdaf26b775a'),(89864,191,120627,NULL,18109,1,'2022-02-23 02:56:20','2022-02-23 02:56:20','d907fd01-644e-439b-8192-395aa3428d16'),(89865,191,120628,NULL,16828,1,'2022-02-23 02:56:20','2022-02-23 02:56:20','c7884e3e-5a40-44ac-bcff-9fb3552edd42'),(89866,191,120629,NULL,40504,1,'2022-02-23 02:56:20','2022-02-23 02:56:20','03a31c26-0469-479b-9163-ba9b67f2204c'),(115050,79,139967,NULL,17934,1,'2022-04-21 04:01:59','2022-04-21 04:01:59','ef4dd6bb-06d1-4a75-846b-0dcf9b432a98'),(115051,79,139967,NULL,17875,2,'2022-04-21 04:01:59','2022-04-21 04:01:59','05c5a1f3-4063-4957-bc3d-739bbf78ce59'),(115052,79,139967,NULL,17954,3,'2022-04-21 04:01:59','2022-04-21 04:01:59','f199adb4-0ae3-4235-973c-5574117d100b'),(115053,79,139967,NULL,17956,4,'2022-04-21 04:01:59','2022-04-21 04:01:59','ac395a33-cf23-421c-a79d-b062ca5549e3'),(115055,85,139967,NULL,17964,1,'2022-04-21 04:01:59','2022-04-21 04:01:59','92ad7311-704c-42bd-9a6a-346b0603bf18'),(115056,85,139967,NULL,17965,2,'2022-04-21 04:01:59','2022-04-21 04:01:59','cb00748c-c2ab-4824-99f9-eefddb990e3f'),(115057,85,139967,NULL,17966,3,'2022-04-21 04:01:59','2022-04-21 04:01:59','ae555428-bfb3-4f93-9283-9c7d32d64d60'),(115058,85,139967,NULL,17967,4,'2022-04-21 04:01:59','2022-04-21 04:01:59','b9a3f777-dcaa-475a-bcc0-f8318755eb7e'),(115059,85,139967,NULL,17968,5,'2022-04-21 04:01:59','2022-04-21 04:01:59','07d9990c-e928-4a46-b744-924631bda561'),(115060,85,139967,NULL,17969,6,'2022-04-21 04:01:59','2022-04-21 04:01:59','1fae766c-ff98-4e8c-831a-dd6fd4d26f44'),(115061,84,139967,NULL,18057,1,'2022-04-21 04:01:59','2022-04-21 04:01:59','4bfbdccc-2dd9-422d-a860-ae1bd7a64802'),(115062,84,139967,NULL,38161,2,'2022-04-21 04:01:59','2022-04-21 04:01:59','b9329ac0-8aff-4711-bba8-13e99c08ff66'),(115063,79,139968,NULL,17934,1,'2022-04-21 04:02:00','2022-04-21 04:02:00','844f4424-9abf-464f-b495-b15cbdee2b51'),(115064,79,139968,NULL,17875,2,'2022-04-21 04:02:00','2022-04-21 04:02:00','14243cfa-6c29-404f-ae91-c19b292c13a5'),(115065,79,139968,NULL,17954,3,'2022-04-21 04:02:00','2022-04-21 04:02:00','b1ca6776-360a-4d83-9165-e369438d6a1d'),(115066,79,139968,NULL,17956,4,'2022-04-21 04:02:00','2022-04-21 04:02:00','1e25d4d6-d283-45e7-ac05-10422e4d9a7d'),(115067,69,139968,NULL,61823,1,'2022-04-21 04:02:00','2022-04-21 04:02:00','198476fb-fae9-495a-80eb-2a1536d042ed'),(115068,85,139968,NULL,17964,1,'2022-04-21 04:02:00','2022-04-21 04:02:00','fa24c3ae-e9f5-4980-9a22-e40491179447'),(115069,85,139968,NULL,17965,2,'2022-04-21 04:02:00','2022-04-21 04:02:00','214dc817-760d-434d-8efa-47303eebd054'),(115070,85,139968,NULL,17966,3,'2022-04-21 04:02:00','2022-04-21 04:02:00','fa6133f1-113d-4fae-84b1-a8a8b0c89b7e'),(115071,85,139968,NULL,17967,4,'2022-04-21 04:02:00','2022-04-21 04:02:00','0c58d74b-b9cc-4be0-825e-0716b9c4015d'),(115072,85,139968,NULL,17968,5,'2022-04-21 04:02:00','2022-04-21 04:02:00','fd7db499-ca82-4742-a55a-e3531f200468'),(115073,85,139968,NULL,17969,6,'2022-04-21 04:02:00','2022-04-21 04:02:00','f4313ce0-0f06-45fe-b848-32e24388ad13'),(115074,84,139968,NULL,18057,1,'2022-04-21 04:02:00','2022-04-21 04:02:00','abccabb7-fc11-4bb8-80a8-aede1364d188'),(115075,84,139968,NULL,38161,2,'2022-04-21 04:02:00','2022-04-21 04:02:00','37c8c7b7-ad35-4539-8aa8-a3852df2d88c'),(115089,79,139970,NULL,17934,1,'2022-04-21 04:09:31','2022-04-21 04:09:31','e154b89b-66b4-479a-a5cf-93402183016d'),(115090,79,139970,NULL,17875,2,'2022-04-21 04:09:31','2022-04-21 04:09:31','a1fffe92-d644-4f68-a865-e7843a64611c'),(115091,79,139970,NULL,17954,3,'2022-04-21 04:09:31','2022-04-21 04:09:31','e46eac96-5b6e-477d-8d6d-6b6ccd68f091'),(115092,79,139970,NULL,17956,4,'2022-04-21 04:09:31','2022-04-21 04:09:31','fa3f7fb3-7a9e-4891-9ff4-9ac2be7145bb'),(115093,85,139970,NULL,17964,1,'2022-04-21 04:09:31','2022-04-21 04:09:31','b9ad242a-56db-4c97-976e-d62b23d5301d'),(115094,85,139970,NULL,17965,2,'2022-04-21 04:09:31','2022-04-21 04:09:31','b92d0c78-60c8-4c8d-b25f-1f0837d50a3e'),(115095,85,139970,NULL,17966,3,'2022-04-21 04:09:31','2022-04-21 04:09:31','70416787-6c01-4d9e-8007-de5675fd9cf3'),(115096,85,139970,NULL,17967,4,'2022-04-21 04:09:31','2022-04-21 04:09:31','ee44ae18-9687-417f-b61f-89a346df1357'),(115097,85,139970,NULL,17968,5,'2022-04-21 04:09:31','2022-04-21 04:09:31','48614ef5-e95b-4868-bd55-f336ae5676c4'),(115098,85,139970,NULL,17969,6,'2022-04-21 04:09:31','2022-04-21 04:09:31','a3c11794-69eb-43c8-b5ab-c5965e4997e2'),(115099,84,139970,NULL,18057,1,'2022-04-21 04:09:31','2022-04-21 04:09:31','7c9a7ccc-ab35-4e2b-9d86-e94af193dce5'),(115100,84,139970,NULL,38161,2,'2022-04-21 04:09:31','2022-04-21 04:09:31','ba0a573c-4947-4254-8a77-b7b084bb3a14'),(115113,79,139972,NULL,17934,1,'2022-04-21 04:16:36','2022-04-21 04:16:36','584b7156-9188-4a6e-925f-cb49025f9c99'),(115114,79,139972,NULL,17875,2,'2022-04-21 04:16:36','2022-04-21 04:16:36','f75c8df0-ad9b-4dd0-97ee-89b9868831fd'),(115115,79,139972,NULL,17954,3,'2022-04-21 04:16:36','2022-04-21 04:16:36','aec1f4d3-6dfd-4795-913b-685f581747fc'),(115116,79,139972,NULL,17956,4,'2022-04-21 04:16:36','2022-04-21 04:16:36','a101a5a7-5671-4295-8b5a-2ee9998f26ff'),(115117,85,139972,NULL,17964,1,'2022-04-21 04:16:36','2022-04-21 04:16:36','7629f341-64f5-475c-82a0-23df49718be6'),(115118,85,139972,NULL,17965,2,'2022-04-21 04:16:36','2022-04-21 04:16:36','93a66903-5401-4b29-bfb0-19e7600cf33e'),(115119,85,139972,NULL,17966,3,'2022-04-21 04:16:36','2022-04-21 04:16:36','df50395b-f73b-4881-a122-8d84d6f7b95a'),(115120,85,139972,NULL,17967,4,'2022-04-21 04:16:36','2022-04-21 04:16:36','779e77ac-c597-482a-9851-ace329279f30'),(115121,85,139972,NULL,17968,5,'2022-04-21 04:16:36','2022-04-21 04:16:36','5b5f8184-5cb9-4477-bb95-5eb165403a81'),(115122,85,139972,NULL,17969,6,'2022-04-21 04:16:36','2022-04-21 04:16:36','2c5c60bf-5c2c-4367-93c3-6c661759e3d5'),(115123,84,139972,NULL,18057,1,'2022-04-21 04:16:36','2022-04-21 04:16:36','dc452716-9c46-48f7-8f49-f15e38694aab'),(115124,84,139972,NULL,38161,2,'2022-04-21 04:16:36','2022-04-21 04:16:36','cd0afe3a-7545-4116-8706-bae88a9a69cd'),(115125,79,139973,NULL,17875,1,'2022-04-21 04:17:13','2022-04-21 04:17:13','aab03b5b-4bb9-44b8-a6f5-ab8f7abaa82c'),(115126,79,139973,NULL,17887,2,'2022-04-21 04:17:13','2022-04-21 04:17:13','6f7941cd-1e92-4064-99ab-258e0c26c56b'),(115127,79,139973,NULL,17899,3,'2022-04-21 04:17:13','2022-04-21 04:17:13','dfe2a945-5c42-46f4-adf2-9dcee07a822b'),(115128,79,139973,NULL,17934,4,'2022-04-21 04:17:13','2022-04-21 04:17:13','0cf5adaa-fbdc-40ce-9371-938e9ca0465e'),(115129,79,139973,NULL,17941,5,'2022-04-21 04:17:13','2022-04-21 04:17:13','a863fe94-82f4-40ec-99bc-a3a56f5f126e'),(115130,79,139973,NULL,1,6,'2022-04-21 04:17:13','2022-04-21 04:17:13','3d512bae-a315-470e-8d77-dec2ce474024'),(115131,79,139973,NULL,17956,7,'2022-04-21 04:17:13','2022-04-21 04:17:13','bd315b07-f7a3-40b2-81aa-a9862abf00a5'),(115132,79,139973,NULL,17996,8,'2022-04-21 04:17:13','2022-04-21 04:17:13','506b3cce-4e63-49fc-951d-da596af11161'),(115133,69,139973,NULL,61826,1,'2022-04-21 04:17:13','2022-04-21 04:17:13','a47f9508-3ee7-4c5a-95b8-e30798379f62'),(115134,85,139973,NULL,17964,1,'2022-04-21 04:17:13','2022-04-21 04:17:13','37a63d54-cf0a-4d26-8e3e-e7c7f703d6de'),(115135,85,139973,NULL,17965,2,'2022-04-21 04:17:13','2022-04-21 04:17:13','1d823d84-ae60-44a5-852b-638518bab0e7'),(115136,85,139973,NULL,17966,3,'2022-04-21 04:17:13','2022-04-21 04:17:13','bf5ea6ed-b719-4da8-bc29-447120c74076'),(115137,85,139973,NULL,17968,4,'2022-04-21 04:17:13','2022-04-21 04:17:13','f9d5c0d2-58d9-447b-bff2-dd6e32e5ba8d'),(115138,85,139973,NULL,17969,5,'2022-04-21 04:17:13','2022-04-21 04:17:13','27d78189-e9f2-40b3-905b-6d313288c936'),(115139,85,139973,NULL,17970,6,'2022-04-21 04:17:13','2022-04-21 04:17:13','f83e1f80-3c23-4410-96e5-88a430a0f315'),(115140,85,139973,NULL,17971,7,'2022-04-21 04:17:13','2022-04-21 04:17:13','242f02bb-2e4d-4dd8-b974-8843ef53daf1'),(115141,84,139973,NULL,38160,1,'2022-04-21 04:17:13','2022-04-21 04:17:13','41e82c28-1db2-4392-84e8-c438cae78bbb'),(115154,79,139979,NULL,17934,1,'2022-04-21 05:52:06','2022-04-21 05:52:06','cf3c1e3a-1dff-4734-b582-faecd68cf283'),(115155,79,139979,NULL,17875,2,'2022-04-21 05:52:06','2022-04-21 05:52:06','4ce4d948-0180-4eef-8817-aae73e4932c6'),(115156,79,139979,NULL,17954,3,'2022-04-21 05:52:06','2022-04-21 05:52:06','fe997414-736c-45b5-ab17-7a6129610052'),(115157,79,139979,NULL,17956,4,'2022-04-21 05:52:06','2022-04-21 05:52:06','d86f2d07-9507-4a4e-978c-b05d540e9aa5'),(115158,85,139979,NULL,17964,1,'2022-04-21 05:52:06','2022-04-21 05:52:06','ad66820f-23b5-40de-ba0b-9a4b1807953d'),(115159,85,139979,NULL,17965,2,'2022-04-21 05:52:06','2022-04-21 05:52:06','c2ddd8f4-c46e-41cb-a8d1-a9d56cb0150b'),(115160,85,139979,NULL,17966,3,'2022-04-21 05:52:06','2022-04-21 05:52:06','bdf52cc5-5f85-4f0e-87e6-bc24416407ea'),(115161,85,139979,NULL,17967,4,'2022-04-21 05:52:06','2022-04-21 05:52:06','72581c31-1df3-4121-8fe4-032ed8a2c617'),(115162,85,139979,NULL,17968,5,'2022-04-21 05:52:06','2022-04-21 05:52:06','316e6e06-6a13-49fa-aceb-1b3e7ae91437'),(115163,85,139979,NULL,17969,6,'2022-04-21 05:52:06','2022-04-21 05:52:06','686ff781-5acd-4aee-b30e-8418f31778e9'),(115164,84,139979,NULL,18057,1,'2022-04-21 05:52:06','2022-04-21 05:52:06','be131a03-d5e7-4d5a-8560-6bf3501714b0'),(115165,84,139979,NULL,38161,2,'2022-04-21 05:52:06','2022-04-21 05:52:06','ab766bd4-2b3b-456a-818f-64128b64513f'),(115178,79,139981,NULL,17934,1,'2022-04-21 05:53:07','2022-04-21 05:53:07','735e4663-a1be-4d29-8216-b633168c985b'),(115179,79,139981,NULL,17875,2,'2022-04-21 05:53:07','2022-04-21 05:53:07','ae27fba2-99c7-4703-b643-43a912efc167'),(115180,79,139981,NULL,17954,3,'2022-04-21 05:53:07','2022-04-21 05:53:07','087ad01c-f788-4a2e-9429-c667a5036b22'),(115181,79,139981,NULL,17956,4,'2022-04-21 05:53:07','2022-04-21 05:53:07','345ac54e-2640-4929-affd-f87b5ca70176'),(115182,85,139981,NULL,17964,1,'2022-04-21 05:53:07','2022-04-21 05:53:07','d981ea1a-7f96-452d-b813-e8b1f790564c'),(115183,85,139981,NULL,17965,2,'2022-04-21 05:53:07','2022-04-21 05:53:07','1bedc0b6-e8af-459e-8fa1-0043a3b19afc'),(115184,85,139981,NULL,17966,3,'2022-04-21 05:53:07','2022-04-21 05:53:07','8bfe1c3e-8425-45c4-88df-ba118553c6ad'),(115185,85,139981,NULL,17967,4,'2022-04-21 05:53:07','2022-04-21 05:53:07','2bd82bd1-a82d-448b-9a4c-2ad31ffa777d'),(115186,85,139981,NULL,17968,5,'2022-04-21 05:53:07','2022-04-21 05:53:07','918581d1-6523-46da-b323-37fe1e21d369'),(115187,85,139981,NULL,17969,6,'2022-04-21 05:53:07','2022-04-21 05:53:07','1f24da4a-af67-4ad9-825a-5e2218dcca54'),(115188,84,139981,NULL,18057,1,'2022-04-21 05:53:07','2022-04-21 05:53:07','516fa299-1d07-4365-ac69-1f1f3805c6c2'),(115189,84,139981,NULL,38161,2,'2022-04-21 05:53:07','2022-04-21 05:53:07','9e415756-fdd7-4e05-b132-6861963a0cf3'),(115202,79,139983,NULL,17934,1,'2022-04-21 05:56:43','2022-04-21 05:56:43','3e9f0cad-e1c7-4f2e-98a5-4f54188cd252'),(115203,79,139983,NULL,17875,2,'2022-04-21 05:56:43','2022-04-21 05:56:43','20e6f851-59cc-4072-a157-bb55a456fdf7'),(115204,79,139983,NULL,17954,3,'2022-04-21 05:56:43','2022-04-21 05:56:43','57171481-19c1-42a7-945f-eb21d3166cd0'),(115205,79,139983,NULL,17956,4,'2022-04-21 05:56:43','2022-04-21 05:56:43','61bf2508-0257-4b32-a824-c722aa56e5c4'),(115206,85,139983,NULL,17964,1,'2022-04-21 05:56:43','2022-04-21 05:56:43','5b593b8f-16ed-44db-a6ba-e63d8622129f'),(115207,85,139983,NULL,17965,2,'2022-04-21 05:56:43','2022-04-21 05:56:43','ec3ec008-7072-4195-8498-7ca9b06abf3f'),(115208,85,139983,NULL,17966,3,'2022-04-21 05:56:43','2022-04-21 05:56:43','bfcce21a-b0ea-4c9a-987f-5b274e5354ac'),(115209,85,139983,NULL,17967,4,'2022-04-21 05:56:43','2022-04-21 05:56:43','decebf3f-006b-4083-8440-f8098acec9ae'),(115210,85,139983,NULL,17968,5,'2022-04-21 05:56:43','2022-04-21 05:56:43','932f21cb-e655-4377-8984-e527f9d1b4b6'),(115211,85,139983,NULL,17969,6,'2022-04-21 05:56:43','2022-04-21 05:56:43','fb722c5a-e56a-465a-b5bf-cdbc252fc3d0'),(115212,84,139983,NULL,18057,1,'2022-04-21 05:56:43','2022-04-21 05:56:43','ea68dea2-030d-42a5-993a-f6b77224f4ea'),(115213,84,139983,NULL,38161,2,'2022-04-21 05:56:43','2022-04-21 05:56:43','d2656162-f0b2-4a5a-9144-08f148260e3a'),(115226,79,139985,NULL,17934,1,'2022-04-21 05:59:36','2022-04-21 05:59:36','2dd37caa-c832-4146-9ad1-1cfcdd7cb2ee'),(115227,79,139985,NULL,17875,2,'2022-04-21 05:59:36','2022-04-21 05:59:36','2c560f60-ad5c-466f-ac4f-460e65189a97'),(115228,79,139985,NULL,17954,3,'2022-04-21 05:59:36','2022-04-21 05:59:36','6eb0c036-3a10-4d3d-b746-0eefd4e1004a'),(115229,79,139985,NULL,17956,4,'2022-04-21 05:59:36','2022-04-21 05:59:36','d7b29b24-b417-4ecb-a996-b5a5499b353f'),(115230,85,139985,NULL,17964,1,'2022-04-21 05:59:36','2022-04-21 05:59:36','ab472908-c403-4a7d-a0e6-bf3fb6b12425'),(115231,85,139985,NULL,17965,2,'2022-04-21 05:59:36','2022-04-21 05:59:36','a698cfa9-7f9e-461e-89e3-de9ecdf0257a'),(115232,85,139985,NULL,17966,3,'2022-04-21 05:59:36','2022-04-21 05:59:36','8e77487d-e7c0-4709-b7b6-c4a746601b33'),(115233,85,139985,NULL,17967,4,'2022-04-21 05:59:36','2022-04-21 05:59:36','15f16ff2-a417-44ee-a985-adc13d928bb4'),(115234,85,139985,NULL,17968,5,'2022-04-21 05:59:36','2022-04-21 05:59:36','e4d55fc7-0742-43c8-b7c0-3c77375c830f'),(115235,85,139985,NULL,17969,6,'2022-04-21 05:59:36','2022-04-21 05:59:36','0ccc8e4e-e9df-4743-8752-c9ee918f036a'),(115236,84,139985,NULL,18057,1,'2022-04-21 05:59:36','2022-04-21 05:59:36','abb75a8e-946d-4a51-be34-89701f461a12'),(115237,84,139985,NULL,38161,2,'2022-04-21 05:59:36','2022-04-21 05:59:36','0f7d6f51-c23b-412f-a33b-5b37051353fb'),(115250,79,139987,NULL,17934,1,'2022-04-21 06:23:49','2022-04-21 06:23:49','7c1ecf01-0f31-4ad7-88b6-a5fbb910be83'),(115251,79,139987,NULL,17875,2,'2022-04-21 06:23:49','2022-04-21 06:23:49','9c7daeea-de49-4033-af37-10159adf4710'),(115252,79,139987,NULL,17954,3,'2022-04-21 06:23:49','2022-04-21 06:23:49','2b8c9309-d771-45b8-b1b9-c75cf2202a7b'),(115253,79,139987,NULL,17956,4,'2022-04-21 06:23:49','2022-04-21 06:23:49','b8848c01-83ab-43df-a39e-4cd4ff5e3232'),(115254,85,139987,NULL,17964,1,'2022-04-21 06:23:49','2022-04-21 06:23:49','ef53e432-da82-452f-84f2-c51ca8e051ca'),(115255,85,139987,NULL,17965,2,'2022-04-21 06:23:49','2022-04-21 06:23:49','e88b43d3-c439-44b0-bbcc-7b8fe76eada7'),(115256,85,139987,NULL,17966,3,'2022-04-21 06:23:49','2022-04-21 06:23:49','ea4f6cda-d3f8-4e24-8c66-6b3fa3647c8c'),(115257,85,139987,NULL,17967,4,'2022-04-21 06:23:49','2022-04-21 06:23:49','6cb4627c-5b0a-4c0a-b624-19ed66865de7'),(115258,85,139987,NULL,17968,5,'2022-04-21 06:23:49','2022-04-21 06:23:49','c753bff7-e429-4744-bb6c-56af18db9a85'),(115259,85,139987,NULL,17969,6,'2022-04-21 06:23:49','2022-04-21 06:23:49','c54fbeea-a15b-4515-92b4-b5c949266384'),(115260,84,139987,NULL,18057,1,'2022-04-21 06:23:49','2022-04-21 06:23:49','334d3f1f-3842-49e8-94f0-25571d7f1156'),(115261,84,139987,NULL,38161,2,'2022-04-21 06:23:49','2022-04-21 06:23:49','1b308214-14c5-4e40-85c6-fa03d6e9f951'),(115274,79,139989,NULL,17934,1,'2022-04-26 01:35:00','2022-04-26 01:35:00','790df040-b697-4da7-b755-9ae39f6f918b'),(115275,79,139989,NULL,17875,2,'2022-04-26 01:35:00','2022-04-26 01:35:00','5ea96b0f-6ab6-4936-aef5-e19af28e4201'),(115276,79,139989,NULL,17954,3,'2022-04-26 01:35:00','2022-04-26 01:35:00','2091b8c6-d39f-4b70-bc00-59e4c8587369'),(115277,79,139989,NULL,17956,4,'2022-04-26 01:35:00','2022-04-26 01:35:00','834436df-78b7-4303-8616-57afa5ad7815'),(115278,85,139989,NULL,17964,1,'2022-04-26 01:35:00','2022-04-26 01:35:00','fe7fc71c-95c1-4763-84a8-74e59b16a4ea'),(115279,85,139989,NULL,17965,2,'2022-04-26 01:35:00','2022-04-26 01:35:00','eb0ca220-e353-484c-9b61-b4adde57170a'),(115280,85,139989,NULL,17966,3,'2022-04-26 01:35:00','2022-04-26 01:35:00','64c68a62-bf04-4ae7-add0-8e20a8ed4c80'),(115281,85,139989,NULL,17967,4,'2022-04-26 01:35:00','2022-04-26 01:35:00','d9c4306d-7216-47d1-987b-fe68ba6dede3'),(115282,85,139989,NULL,17968,5,'2022-04-26 01:35:00','2022-04-26 01:35:00','9bb812f8-52f8-4696-b08f-50d9c30d212e'),(115283,85,139989,NULL,17969,6,'2022-04-26 01:35:00','2022-04-26 01:35:00','7542fe43-dd29-4ea3-ae5d-cd10fa588921'),(115284,84,139989,NULL,18057,1,'2022-04-26 01:35:00','2022-04-26 01:35:00','b41bd3ae-ba74-47fd-b081-5f8af609b947'),(115285,84,139989,NULL,38161,2,'2022-04-26 01:35:00','2022-04-26 01:35:00','71e59b26-483c-475d-a2a1-81533fe2df59'),(115514,79,140013,NULL,17875,1,'2022-05-05 23:48:56','2022-05-05 23:48:56','80b804ee-4e22-43b1-ac19-49d98ad9e24d'),(115526,79,140013,NULL,17996,2,'2022-05-05 23:48:56','2022-05-05 23:49:43','20accea1-55dd-43fa-b281-1ae20e55c9a6'),(115527,79,140014,NULL,17875,1,'2022-05-05 23:52:17','2022-05-05 23:52:17','b26e093a-805b-412f-969b-912e065a0454'),(115528,79,140014,NULL,17996,2,'2022-05-05 23:52:17','2022-05-05 23:52:17','0b770b55-8e42-483c-af3e-d35cb5d00099'),(115531,79,140016,NULL,17875,1,'2022-05-06 00:20:33','2022-05-06 00:20:33','93b2a34c-2008-4e1d-9ca6-fe88a2727e6a'),(115532,79,140016,NULL,17996,2,'2022-05-06 00:20:33','2022-05-06 00:20:33','c258a5a0-43d1-4f56-80d2-7bf14e73dce9'),(115535,79,140018,NULL,17875,1,'2022-05-06 00:21:23','2022-05-06 00:21:23','bb744b17-73d6-4c30-9ce5-43797baa667e'),(115536,79,140018,NULL,17996,2,'2022-05-06 00:21:23','2022-05-06 00:21:23','8179a44a-ca88-4e08-9095-947ea85c8f24'),(115539,79,140020,NULL,17875,1,'2022-05-06 00:23:13','2022-05-06 00:23:13','85c495c3-309f-4ddf-8664-051e7e1e5890'),(115540,79,140020,NULL,17996,2,'2022-05-06 00:23:13','2022-05-06 00:23:13','f8ec58ce-99d1-450f-877f-275e63a3074d'),(115543,79,140022,NULL,17875,1,'2022-05-06 00:24:49','2022-05-06 00:24:49','c9f2ee90-fc32-46d7-bd66-df2c0404b7d4'),(115544,79,140022,NULL,17996,2,'2022-05-06 00:24:49','2022-05-06 00:24:49','59a9138b-c963-4867-9414-860771868443'),(115547,79,140024,NULL,17875,1,'2022-05-06 00:45:00','2022-05-06 00:45:00','a756217f-9951-4cec-8fce-6416bd1794f6'),(115548,79,140024,NULL,17996,2,'2022-05-06 00:45:00','2022-05-06 00:45:00','3eb7435b-1996-443b-a31a-da45bf00f047'),(115549,79,140025,NULL,17875,1,'2022-05-06 00:45:42','2022-05-06 00:45:42','b3fdf0dd-e093-403b-bd85-3f694b1b9d6c'),(115550,79,140025,NULL,17996,2,'2022-05-06 00:45:42','2022-05-06 00:45:42','1789e12c-91c6-410a-8888-3e31eb6aee50'),(115553,79,140027,NULL,17875,1,'2022-05-06 00:46:55','2022-05-06 00:46:55','5a4f9814-0ebc-466c-b465-1b7c6fc820f4'),(115554,79,140027,NULL,17996,2,'2022-05-06 00:46:55','2022-05-06 00:46:55','973786d5-c1ac-415d-a873-9b4f7b55e209'),(115557,79,140029,NULL,17875,1,'2022-05-06 00:47:13','2022-05-06 00:47:13','b124405b-9ed3-4ad3-9b21-4f003eb36b5f'),(115558,79,140029,NULL,17996,2,'2022-05-06 00:47:13','2022-05-06 00:47:13','4ba5b390-fe15-44a2-ab80-bf690b916ee5'),(115561,79,140031,NULL,17875,1,'2022-05-06 00:48:08','2022-05-06 00:48:08','e78f89de-1906-4058-9074-e23da196ca14'),(115562,79,140031,NULL,17996,2,'2022-05-06 00:48:08','2022-05-06 00:48:08','46751288-38e7-4c58-8f10-659fb6a5c2a0'),(115563,69,140032,NULL,27826,1,'2022-05-06 00:48:46','2022-05-06 00:48:46','acccac0e-768c-4537-bcd1-6b39bc733f23'),(115564,85,140032,NULL,17964,1,'2022-05-06 00:48:46','2022-05-06 00:48:46','b06a6561-1d14-4964-ae00-05a90a24e254'),(115565,85,140032,NULL,17966,2,'2022-05-06 00:48:46','2022-05-06 00:48:46','39813d6c-3670-4e7e-8adf-50174a220ef2'),(115566,85,140032,NULL,17969,3,'2022-05-06 00:48:46','2022-05-06 00:48:46','a7317f4c-b845-4caf-9360-363b6d39b730'),(115567,85,140032,NULL,17970,4,'2022-05-06 00:48:46','2022-05-06 00:48:46','3fb6eaa7-c962-4658-b6da-67c4518b6e1b'),(115568,85,140032,NULL,17971,5,'2022-05-06 00:48:46','2022-05-06 00:48:46','2bcbcd57-1fbc-407d-9531-911a51dc8b92'),(115569,84,140032,NULL,38159,1,'2022-05-06 00:48:46','2022-05-06 00:48:46','aa2e4b23-39c5-44b9-ae5d-789fd3d4baf6'),(115572,79,140034,NULL,17875,1,'2022-05-06 00:49:41','2022-05-06 00:49:41','ca849258-3d4d-4ba6-8a81-8a926a775c25'),(115573,79,140034,NULL,17996,2,'2022-05-06 00:49:41','2022-05-06 00:49:41','a8fd80a0-fc19-42a4-9a3c-69ff6be412a9'),(115576,79,140036,NULL,17875,1,'2022-05-06 00:50:13','2022-05-06 00:50:13','4958dd4a-cc34-4688-b58d-2cd98d4d1a78'),(115577,79,140036,NULL,17996,2,'2022-05-06 00:50:13','2022-05-06 00:50:13','96548c51-5366-44d0-9a1c-aa24e76829ee'),(115580,79,140038,NULL,17875,1,'2022-05-06 00:50:23','2022-05-06 00:50:23','0233dfcb-df59-4999-aca7-b6f524729d55'),(115581,79,140038,NULL,17996,2,'2022-05-06 00:50:23','2022-05-06 00:50:23','87f9c495-5bbf-4d2d-95b5-6338818b987a'),(115584,79,140040,NULL,17875,1,'2022-05-06 00:50:54','2022-05-06 00:50:54','9dd0421c-0aec-4940-b664-3bb6ea35eb78'),(115585,79,140040,NULL,17996,2,'2022-05-06 00:50:54','2022-05-06 00:50:54','8c82e45d-92b2-4f28-be28-36dea19d1d68'),(115588,79,140042,NULL,17875,1,'2022-05-06 00:51:48','2022-05-06 00:51:48','3050fa52-9c6d-4512-b6eb-f381a3dcac7b'),(115589,79,140042,NULL,17996,2,'2022-05-06 00:51:48','2022-05-06 00:51:48','87ac7bda-ae5e-467d-97e8-bfefd6e56ff9'),(115592,79,140044,NULL,17875,1,'2022-05-06 00:52:39','2022-05-06 00:52:39','0a6b7dcf-bc0a-4779-92d3-46cee1d3729c'),(115593,79,140044,NULL,17996,2,'2022-05-06 00:52:39','2022-05-06 00:52:39','7afe5796-49d6-4ef2-90c5-5b44119f200f'),(115594,79,140045,NULL,17875,1,'2022-05-06 00:52:56','2022-05-06 00:52:56','c37e287a-28aa-4261-bda6-7f16e9718445'),(115595,79,140045,NULL,17996,2,'2022-05-06 00:52:56','2022-05-06 00:52:56','01c78549-9410-4b8a-ad47-96f1c50ba875'),(115598,79,140047,NULL,17875,1,'2022-05-06 00:54:04','2022-05-06 00:54:04','1b175844-2dcc-401e-85c2-579e2df5ff1c'),(115599,79,140047,NULL,17996,2,'2022-05-06 00:54:04','2022-05-06 00:54:04','84b9cd74-7098-4b62-81c4-b9309f8e8d74'),(115602,79,140049,NULL,17875,1,'2022-05-06 00:57:20','2022-05-06 00:57:20','210f1cc3-cb5b-4dfc-9c98-04b8084e1b48'),(115603,79,140049,NULL,17996,2,'2022-05-06 00:57:20','2022-05-06 00:57:20','78fea084-2923-4c85-baa9-25c8dd05eef9'),(115606,79,140051,NULL,17875,1,'2022-05-06 01:07:35','2022-05-06 01:07:35','23ce61c9-d56b-45bc-945c-9fc476022c4c'),(115607,79,140051,NULL,17996,2,'2022-05-06 01:07:35','2022-05-06 01:07:35','34c91fbb-6353-4101-a5ed-65166c5b8c4b'),(115610,79,140053,NULL,17875,1,'2022-05-09 02:55:19','2022-05-09 02:55:19','e40f134b-56e1-4893-9bd6-4f419adb7bc2'),(115611,79,140053,NULL,17996,2,'2022-05-09 02:55:19','2022-05-09 02:55:19','df7791a3-5273-4a4f-a788-d4777fb75998'),(115614,79,140055,NULL,17875,1,'2022-05-09 03:32:34','2022-05-09 03:32:34','ae16e610-dca5-438f-aa9b-ae3b4f2e1e24'),(115615,79,140055,NULL,17996,2,'2022-05-09 03:32:34','2022-05-09 03:32:34','a01d2230-7cb4-45c2-8487-2aa037aa437d'),(115619,69,140013,NULL,140057,1,'2022-05-09 03:38:16','2022-05-09 03:38:16','73015596-ce76-4d98-b6ab-f320ba036a58'),(115620,79,140058,NULL,17875,1,'2022-05-09 03:38:16','2022-05-09 03:38:16','a81838bc-ce6b-4c96-9d43-650fe440211f'),(115621,79,140058,NULL,17996,2,'2022-05-09 03:38:16','2022-05-09 03:38:16','724d074c-9fd9-44a8-a2cb-e96a4290025d'),(115622,69,140058,NULL,140057,1,'2022-05-09 03:38:16','2022-05-09 03:38:16','4ee2ab99-5f4c-4e55-ad42-483d99db64ae'),(115797,79,140105,NULL,17875,1,'2022-05-12 03:26:42','2022-05-12 03:26:42','6ce790a3-63b1-4715-bc13-ba736fc471b0'),(115798,79,140105,NULL,17996,2,'2022-05-12 03:26:42','2022-05-12 03:26:42','7445162b-840f-4240-ab5e-92c7ce8d4b41'),(115799,69,140105,NULL,140057,1,'2022-05-12 03:26:42','2022-05-12 03:26:42','0bc9509d-b806-49d1-9069-b6de4949fd27'),(115803,79,140109,NULL,17875,1,'2022-05-12 07:42:41','2022-05-12 07:42:41','ddfc0995-deba-480a-981d-97312a12105d'),(115804,79,140109,NULL,17996,2,'2022-05-12 07:42:41','2022-05-12 07:42:41','cf287d25-ac25-44f1-a599-12da05be8e92'),(115805,69,140109,NULL,140057,1,'2022-05-12 07:42:41','2022-05-12 07:42:41','87abe38a-25fb-43bf-a6c1-a34df3b5d083'),(115809,79,140111,NULL,17875,1,'2022-05-13 00:03:12','2022-05-13 00:03:12','f85b4323-fe09-4c53-8e2a-9f54ab9c60a0'),(115810,79,140111,NULL,17996,2,'2022-05-13 00:03:12','2022-05-13 00:03:12','981ded2e-e529-4782-81b4-b43e18bfd748'),(115811,69,140111,NULL,140057,1,'2022-05-13 00:03:12','2022-05-13 00:03:12','95ae37b5-c20d-4327-b266-f78f5e0e163a'),(115824,79,140113,NULL,17875,1,'2022-05-16 04:02:10','2022-05-16 04:02:10','bbfdf24a-f972-48e4-a7a1-25a37b1bb310'),(115825,79,140113,NULL,17934,2,'2022-05-16 04:02:10','2022-05-16 04:02:10','3ba96442-2423-428a-8ca8-56b605d54f62'),(115826,79,140113,NULL,17954,3,'2022-05-16 04:02:10','2022-05-16 04:02:10','3ee60c71-f9ab-412d-b5e8-56d5730294b3'),(115827,79,140113,NULL,17956,4,'2022-05-16 04:02:10','2022-05-16 04:02:10','3661fd53-1b18-4f34-bfa3-613559c021c5'),(115828,69,140113,NULL,48535,1,'2022-05-16 04:02:10','2022-05-16 04:02:10','f03af9ea-07b9-437c-85b3-a8d0c917cae4'),(115829,85,140113,NULL,17964,1,'2022-05-16 04:02:10','2022-05-16 04:02:10','b6a6f970-4658-4fa1-a3ca-17af0ebbca6d'),(115830,85,140113,NULL,17965,2,'2022-05-16 04:02:10','2022-05-16 04:02:10','de3ff6e0-2283-41ef-9c38-0c713a97112e'),(115831,85,140113,NULL,17966,3,'2022-05-16 04:02:10','2022-05-16 04:02:10','d24960e4-5647-4174-9f59-52907a4b0569'),(115832,85,140113,NULL,17968,4,'2022-05-16 04:02:10','2022-05-16 04:02:10','4a2491a4-c577-4cc5-bbdb-c007cc1ee967'),(115833,85,140113,NULL,17969,5,'2022-05-16 04:02:10','2022-05-16 04:02:10','6c303cf4-3c2f-417c-a104-5a8b0ae3584a'),(115834,85,140113,NULL,17971,6,'2022-05-16 04:02:10','2022-05-16 04:02:10','2fe2b918-7479-42ba-9cdd-de7075395e7d'),(115835,84,140113,NULL,38159,1,'2022-05-16 04:02:10','2022-05-16 04:02:10','9b47b921-9c79-4073-8288-b05fb512cbe1'),(115848,79,140115,NULL,17875,1,'2022-05-16 04:02:36','2022-05-16 04:02:36','7ba41ebd-09ca-473a-8c2c-ac9c34fab786'),(115849,79,140115,NULL,17934,2,'2022-05-16 04:02:36','2022-05-16 04:02:36','95d2250f-5cf3-41b3-a61e-0ec82861cbfb'),(115850,79,140115,NULL,17954,3,'2022-05-16 04:02:36','2022-05-16 04:02:36','488488f8-4f1d-4680-93e2-47454d8eb14c'),(115851,79,140115,NULL,17956,4,'2022-05-16 04:02:36','2022-05-16 04:02:36','4ac2a541-dedd-4742-b8a5-9648c632c1e2'),(115852,69,140115,NULL,48535,1,'2022-05-16 04:02:36','2022-05-16 04:02:36','f41c4d67-463f-4151-89ee-6e8636f6a2ea'),(115853,85,140115,NULL,17964,1,'2022-05-16 04:02:36','2022-05-16 04:02:36','0f146260-3878-423e-ab75-29c143bf61aa'),(115854,85,140115,NULL,17965,2,'2022-05-16 04:02:36','2022-05-16 04:02:36','1aaffd09-2717-4550-8071-4031ec733067'),(115855,85,140115,NULL,17966,3,'2022-05-16 04:02:36','2022-05-16 04:02:36','8449862d-362e-4de4-ad0c-e45ae2ab5dce'),(115856,85,140115,NULL,17968,4,'2022-05-16 04:02:36','2022-05-16 04:02:36','bc855b45-89e9-40b4-999c-6dd7c6cc8351'),(115857,85,140115,NULL,17969,5,'2022-05-16 04:02:36','2022-05-16 04:02:36','5376e0db-f1ae-4c0d-884d-d7c72c74a579'),(115858,85,140115,NULL,17971,6,'2022-05-16 04:02:36','2022-05-16 04:02:36','b13dc8ae-9980-4b47-9bb2-d0c2f177cf91'),(115859,84,140115,NULL,38159,1,'2022-05-16 04:02:36','2022-05-16 04:02:36','c56aa1ff-e0d3-4809-927d-a80e16cdd5cf'),(115872,79,140117,NULL,17875,1,'2022-05-16 04:03:16','2022-05-16 04:03:16','980718eb-27c1-46b3-b8b1-1bf3b5e9df56'),(115873,79,140117,NULL,17934,2,'2022-05-16 04:03:16','2022-05-16 04:03:16','48ebc45a-a34e-476f-80c6-2b20f7c54c12'),(115874,79,140117,NULL,17954,3,'2022-05-16 04:03:16','2022-05-16 04:03:16','a52a8a56-e1e7-40e8-a485-a6e1dea62d42'),(115875,79,140117,NULL,17956,4,'2022-05-16 04:03:16','2022-05-16 04:03:16','a83d293f-268a-4b36-b2be-a3b4a454e073'),(115876,69,140117,NULL,48535,1,'2022-05-16 04:03:16','2022-05-16 04:03:16','0a3e1413-63d7-4a4c-9003-46a6168d6308'),(115877,85,140117,NULL,17964,1,'2022-05-16 04:03:16','2022-05-16 04:03:16','8882a0b6-ae4b-491d-ba3e-f382c3ea3ff7'),(115878,85,140117,NULL,17965,2,'2022-05-16 04:03:16','2022-05-16 04:03:16','b84c00d0-dd68-4d08-952e-8ea5fe64d2c3'),(115879,85,140117,NULL,17966,3,'2022-05-16 04:03:16','2022-05-16 04:03:16','9dac7b8f-6231-4e8f-a472-b329a51b45b8'),(115880,85,140117,NULL,17968,4,'2022-05-16 04:03:16','2022-05-16 04:03:16','99cd14fa-2e35-4830-8488-ac5962b4a905'),(115881,85,140117,NULL,17969,5,'2022-05-16 04:03:16','2022-05-16 04:03:16','6c9e6b60-e4ce-4f25-afd6-404860274036'),(115882,85,140117,NULL,17971,6,'2022-05-16 04:03:16','2022-05-16 04:03:16','29c8d026-daa3-4acd-bcf4-20f7d56a7b5d'),(115883,84,140117,NULL,38159,1,'2022-05-16 04:03:16','2022-05-16 04:03:16','11c2d323-8d15-4caf-8cd3-85f2e6a622ac'),(115896,79,140119,NULL,17875,1,'2022-05-16 04:04:22','2022-05-16 04:04:22','2322d4d0-e0d7-4116-b23e-1ea5aca7305a'),(115897,79,140119,NULL,17934,2,'2022-05-16 04:04:22','2022-05-16 04:04:22','cbc2ba20-1b3e-4e9d-a6e5-578403cdd48d'),(115898,79,140119,NULL,17954,3,'2022-05-16 04:04:22','2022-05-16 04:04:22','1541fe09-abcf-4aa9-b535-62055c26a473'),(115899,79,140119,NULL,17956,4,'2022-05-16 04:04:22','2022-05-16 04:04:22','072ae760-e12c-4d74-9172-befc93ab5459'),(115900,69,140119,NULL,48535,1,'2022-05-16 04:04:22','2022-05-16 04:04:22','04f346ab-3698-468c-9e95-f3776384a836'),(115901,85,140119,NULL,17964,1,'2022-05-16 04:04:22','2022-05-16 04:04:22','c989ed9f-934f-44c9-b470-0f5f523f3d6f'),(115902,85,140119,NULL,17965,2,'2022-05-16 04:04:22','2022-05-16 04:04:22','6800999c-a6ab-4095-bc49-f49afdde311d'),(115903,85,140119,NULL,17966,3,'2022-05-16 04:04:22','2022-05-16 04:04:22','f3724964-55bf-46a1-b983-33c650be78a8'),(115904,85,140119,NULL,17968,4,'2022-05-16 04:04:22','2022-05-16 04:04:22','3b0471a2-34c0-4c02-9502-5ae62af2ccee'),(115905,85,140119,NULL,17969,5,'2022-05-16 04:04:22','2022-05-16 04:04:22','01a6d4e4-ce17-4e8b-8918-3f1873a9136a'),(115906,85,140119,NULL,17971,6,'2022-05-16 04:04:22','2022-05-16 04:04:22','966f409d-d8c8-4ad0-baa9-05c4d7e0577b'),(115907,84,140119,NULL,38159,1,'2022-05-16 04:04:22','2022-05-16 04:04:22','188ba298-38c3-4e13-b1c4-d09739b97ad7'),(115920,79,140121,NULL,17875,1,'2022-05-16 04:28:37','2022-05-16 04:28:37','c020349e-2e36-4d71-9a23-83e9f2832a9c'),(115921,79,140121,NULL,17996,2,'2022-05-16 04:28:37','2022-05-16 04:28:37','bbe5a98d-0b2e-4a7f-b2ce-3732d172be7e'),(115922,69,140121,NULL,140057,1,'2022-05-16 04:28:37','2022-05-16 04:28:37','a784128a-9da3-4b71-a0d9-4fa8b21d1e51'),(115923,191,140130,NULL,18156,1,'2022-05-17 23:19:16','2022-05-17 23:19:16','2a0f11c1-d14b-46bf-be65-07744db7445f'),(115924,191,140131,NULL,18122,1,'2022-05-17 23:19:16','2022-05-17 23:19:16','fc4b3c77-34f6-4f36-8b5a-de2cb68ad2da'),(115925,191,140132,NULL,30427,1,'2022-05-17 23:19:16','2022-05-17 23:19:16','e3d7655d-497b-486c-affe-969b9bd5dc0d'),(115926,191,140133,NULL,18109,1,'2022-05-17 23:19:16','2022-05-17 23:19:16','827a6221-b9dd-4ec7-8cd7-e555555b56f5'),(115927,191,140134,NULL,16828,1,'2022-05-17 23:19:16','2022-05-17 23:19:16','2beb7dd6-308d-4b42-86e9-d26b0fa7b456'),(115928,191,140135,NULL,40504,1,'2022-05-17 23:19:16','2022-05-17 23:19:16','102f7bdd-4177-4c4f-9be0-a0021573e60e'),(115932,79,140146,NULL,17875,1,'2022-05-18 00:47:09','2022-05-18 00:47:09','691de897-3ab1-43e8-a6d6-c681eeebe683'),(115933,79,140146,NULL,17996,2,'2022-05-18 00:47:09','2022-05-18 00:47:09','e4511200-a376-431c-9297-585130e2c093'),(115934,69,140146,NULL,140057,1,'2022-05-18 00:47:09','2022-05-18 00:47:09','f6c6413c-0b84-462f-8f3a-07c3094fc84b'),(115938,79,140148,NULL,17875,1,'2022-05-18 00:51:56','2022-05-18 00:51:56','7b423afe-7133-425d-a477-b05009967531'),(115939,79,140148,NULL,17996,2,'2022-05-18 00:51:56','2022-05-18 00:51:56','34bc0a8a-55d9-489e-b97b-344c1cfb1f4d'),(115940,69,140148,NULL,140057,1,'2022-05-18 00:51:56','2022-05-18 00:51:56','edd5225f-e55b-4dc0-b934-3a6060b355d8'),(115958,184,140157,NULL,28041,1,'2022-05-30 01:17:28','2022-05-30 01:17:28','582b3ce7-85ea-4cf3-8623-5dd61d9d42e4'),(115959,69,140157,NULL,28041,1,'2022-05-30 01:17:28','2022-05-30 01:17:28','c24c3531-0791-4e74-bd48-8a89b303d454'),(115960,85,140157,NULL,17964,1,'2022-05-30 01:17:28','2022-05-30 01:17:28','bd5a8098-1ac5-41d9-8400-ce9b8949a966'),(115961,85,140157,NULL,17966,2,'2022-05-30 01:17:28','2022-05-30 01:17:28','826ba9c1-9478-4cd3-b97c-586b75ddfc9c'),(115962,85,140157,NULL,17968,3,'2022-05-30 01:17:28','2022-05-30 01:17:28','4201fca2-3f33-47ec-89e9-e5744bba5648'),(115963,85,140157,NULL,17971,4,'2022-05-30 01:17:28','2022-05-30 01:17:28','9a734d10-01c7-4613-80c3-4853c80e13f4'),(115964,198,140157,NULL,28041,1,'2022-05-30 01:17:28','2022-05-30 01:17:28','d106a020-229d-483b-8798-7f4ed29675fa'),(115970,184,140159,NULL,48366,1,'2022-05-30 01:17:47','2022-05-30 01:17:47','63dfc293-44e9-4fe1-899a-7e819649c04f'),(115971,69,140159,NULL,48366,1,'2022-05-30 01:17:47','2022-05-30 01:17:47','046df0df-538a-4504-b4d5-93e125da0f4d'),(115972,85,140159,NULL,17965,1,'2022-05-30 01:17:47','2022-05-30 01:17:47','fd1f393b-45f3-4510-b2e0-f42263db7898'),(115973,85,140159,NULL,17968,2,'2022-05-30 01:17:47','2022-05-30 01:17:47','6bb73f64-892f-41b5-b754-d53c56ff063b'),(115974,198,140159,NULL,48366,1,'2022-05-30 01:17:47','2022-05-30 01:17:47','8482f047-e746-4f7c-9c2f-9f1447ecba30'),(115975,184,140160,NULL,17105,1,'2022-05-30 01:18:11','2022-05-30 01:18:11','bf0f0b9e-491c-4a82-a7aa-55bf6db7cce5'),(115976,69,140160,NULL,17105,1,'2022-05-30 01:18:11','2022-05-30 01:18:11','c9e1d684-1b63-4845-b6fc-55bdbe2d72d2'),(115977,85,140160,NULL,17965,1,'2022-05-30 01:18:11','2022-05-30 01:18:11','7594e256-1794-4e3a-9c97-b64a38d0dbd8'),(115978,85,140160,NULL,17971,2,'2022-05-30 01:18:11','2022-05-30 01:18:11','f4a8d50c-6db3-4721-8569-1a7fe1159388'),(115979,198,140160,NULL,17105,1,'2022-05-30 01:18:11','2022-05-30 01:18:11','e2d9ea53-ce8d-4f4c-a585-d236afe576a5'),(115983,184,140162,NULL,17743,1,'2022-05-30 01:18:23','2022-05-30 01:18:23','f2cfbdbf-717c-4bbf-a5c1-2c0c4603d7b9'),(115984,69,140162,NULL,17743,1,'2022-05-30 01:18:23','2022-05-30 01:18:23','93a93b0b-6de8-4079-a7f3-551bf329c19c'),(115985,198,140162,NULL,17743,1,'2022-05-30 01:18:23','2022-05-30 01:18:23','7103512b-0efc-4200-90ac-a9d4219a1bb7'),(115986,184,140163,NULL,17089,1,'2022-05-30 01:18:33','2022-05-30 01:18:33','ffdb0972-0048-4240-8624-8cf7dbe5f1fe'),(115987,69,140163,NULL,17089,1,'2022-05-30 01:18:33','2022-05-30 01:18:33','c5d2d81b-75f9-4dc4-9ae2-48e67e8065f1'),(115988,198,140163,NULL,17089,1,'2022-05-30 01:18:33','2022-05-30 01:18:33','eaef37e3-68e6-4808-b596-c862ea87719e'),(115992,184,140165,NULL,17166,1,'2022-05-30 01:18:46','2022-05-30 01:18:46','9cdc7cc3-e5b4-42b6-bbaa-9c47be71c56e'),(115993,69,140165,NULL,17166,1,'2022-05-30 01:18:46','2022-05-30 01:18:46','600215d3-f81b-4d4d-8e7c-38861bc72bd1'),(115994,198,140165,NULL,17166,1,'2022-05-30 01:18:47','2022-05-30 01:18:47','bc2b1047-1811-4a49-a27c-e696d1da55d6'),(115995,184,140166,NULL,28097,1,'2022-05-30 01:18:57','2022-05-30 01:18:57','cedd8aa3-f082-439a-81e7-c46bf3f1d4da'),(115996,69,140166,NULL,28097,1,'2022-05-30 01:18:57','2022-05-30 01:18:57','3f410923-69c9-4878-9f80-fcb35c3ad1b3'),(115997,85,140166,NULL,17964,1,'2022-05-30 01:18:57','2022-05-30 01:18:57','3b42cf32-c5c3-4a44-b076-176ae44d6982'),(115998,85,140166,NULL,17965,2,'2022-05-30 01:18:57','2022-05-30 01:18:57','24ef89e9-a5cc-494a-9ade-fc315efbd96e'),(115999,198,140166,NULL,28097,1,'2022-05-30 01:18:57','2022-05-30 01:18:57','0f363db7-3585-4f40-84eb-3b5b674f2b8f'),(116003,184,140168,NULL,17167,1,'2022-05-30 01:19:07','2022-05-30 01:19:07','35e60dac-8009-426b-b7f5-5f5bb925585d'),(116004,69,140168,NULL,17167,1,'2022-05-30 01:19:07','2022-05-30 01:19:07','7b1acd27-9c6a-440e-9538-281f821bc636'),(116005,198,140168,NULL,17167,1,'2022-05-30 01:19:07','2022-05-30 01:19:07','4bb559ae-74a7-4b31-9ff4-a50410e534b7'),(116006,184,140169,NULL,28101,1,'2022-05-30 01:19:18','2022-05-30 01:19:18','53f959b8-0adc-43b6-b26f-e50ba86d458d'),(116007,69,140169,NULL,28101,1,'2022-05-30 01:19:18','2022-05-30 01:19:18','fc414320-6cd7-4f3d-a50e-e8066014cbd3'),(116008,85,140169,NULL,17964,1,'2022-05-30 01:19:18','2022-05-30 01:19:18','56057a95-c128-406f-bd83-29ccca8265a7'),(116009,85,140169,NULL,17965,2,'2022-05-30 01:19:18','2022-05-30 01:19:18','b335d06e-85a7-4f65-bafe-8777d3aec747'),(116010,85,140169,NULL,17966,3,'2022-05-30 01:19:18','2022-05-30 01:19:18','0a156e0b-d739-4834-927a-ca6ce2792a5d'),(116011,85,140169,NULL,17968,4,'2022-05-30 01:19:18','2022-05-30 01:19:18','1ccc4826-5d0a-4f7e-a42b-74d364ebb568'),(116012,198,140169,NULL,28101,1,'2022-05-30 01:19:18','2022-05-30 01:19:18','a0de6532-3bb1-4fc8-b5b8-7e41fba169ab'),(116013,184,140170,NULL,17431,1,'2022-05-30 01:19:30','2022-05-30 01:19:30','144ea731-8ac4-4bce-bf7b-16b404083791'),(116014,69,140170,NULL,17431,1,'2022-05-30 01:19:30','2022-05-30 01:19:30','f9f73212-82c0-4066-8aff-7ce4462ecfa9'),(116015,85,140170,NULL,17968,1,'2022-05-30 01:19:30','2022-05-30 01:19:30','0ac899b1-1eba-4810-bd7c-60803689d390'),(116016,85,140170,NULL,17971,2,'2022-05-30 01:19:30','2022-05-30 01:19:30','f1bf241f-ce81-4a28-8f15-4e4305ad91cf'),(116017,198,140170,NULL,17431,1,'2022-05-30 01:19:30','2022-05-30 01:19:30','127c5834-7074-4fba-a650-3910950ade0b'),(116018,184,140171,NULL,17433,1,'2022-05-30 01:19:40','2022-05-30 01:19:40','610df887-8db0-4c81-8a25-04daea17104e'),(116019,69,140171,NULL,17433,1,'2022-05-30 01:19:40','2022-05-30 01:19:40','5d93b381-3350-454b-b1f9-e6c3b9885483'),(116020,85,140171,NULL,17964,1,'2022-05-30 01:19:40','2022-05-30 01:19:40','9b191a8f-31ff-4c8d-84e8-526ef7c0c548'),(116021,85,140171,NULL,17968,2,'2022-05-30 01:19:40','2022-05-30 01:19:40','81911131-48a2-4567-b719-b0ab1cecae5b'),(116022,198,140171,NULL,17433,1,'2022-05-30 01:19:40','2022-05-30 01:19:40','c30e90c6-1a3d-407d-8dac-bb184e84dfcc'),(116023,184,140172,NULL,17436,1,'2022-05-30 01:19:53','2022-05-30 01:19:53','18f0c8fa-5b66-4a36-8024-7f3b22d459c6'),(116024,69,140172,NULL,17436,1,'2022-05-30 01:19:53','2022-05-30 01:19:53','4e426474-ba52-42f6-ab0a-aad9f22850fb'),(116025,85,140172,NULL,17964,1,'2022-05-30 01:19:53','2022-05-30 01:19:53','c1cb74cf-62b2-4bc2-b9f4-e312311aaeca'),(116026,85,140172,NULL,17965,2,'2022-05-30 01:19:53','2022-05-30 01:19:53','ef1d46d2-9e8e-4f42-8458-2dc4f526f9b0'),(116027,85,140172,NULL,17971,3,'2022-05-30 01:19:53','2022-05-30 01:19:53','b5a76e71-b292-43f9-8a1a-60e278fe610d'),(116028,198,140172,NULL,17436,1,'2022-05-30 01:19:53','2022-05-30 01:19:53','b050c407-11ec-4154-9439-a74f219d4b8d'),(116029,184,140173,NULL,17437,1,'2022-05-30 01:20:04','2022-05-30 01:20:04','4fa42c30-b9af-4d98-aed4-4d3268fe036d'),(116030,69,140173,NULL,17437,1,'2022-05-30 01:20:04','2022-05-30 01:20:04','0ca7a741-05cc-48ac-bec5-b6c33b2a7a6c'),(116031,85,140173,NULL,17964,1,'2022-05-30 01:20:04','2022-05-30 01:20:04','c113ea5f-19a2-44d3-ba01-6810fa309fcb'),(116032,85,140173,NULL,17965,2,'2022-05-30 01:20:04','2022-05-30 01:20:04','ab1395e6-901d-4cf6-9498-9957e20c0659'),(116033,85,140173,NULL,17971,3,'2022-05-30 01:20:04','2022-05-30 01:20:04','d08c8fe6-5fe5-475f-9017-4f00c5fe90b6'),(116034,198,140173,NULL,17437,1,'2022-05-30 01:20:04','2022-05-30 01:20:04','cfce284b-8a99-4bc5-ae68-4f74cc360281'),(116035,184,140174,NULL,17446,1,'2022-05-30 01:20:14','2022-05-30 01:20:14','51b6a077-717c-4893-a8c0-0ec49256cf74'),(116036,69,140174,NULL,17446,1,'2022-05-30 01:20:14','2022-05-30 01:20:14','1907c18e-c72d-47b1-ac17-e90a36e9a834'),(116037,198,140174,NULL,17446,1,'2022-05-30 01:20:14','2022-05-30 01:20:14','e1848c61-3470-4d28-8a32-f680567cb77c'),(116041,79,140176,NULL,17875,1,'2022-05-30 01:20:27','2022-05-30 01:20:27','2550481e-39fc-4ddc-b808-a12272182d81'),(116042,79,140176,NULL,17996,2,'2022-05-30 01:20:27','2022-05-30 01:20:27','f8d641c8-9e8d-44b8-b219-acb24a23b082'),(116043,69,140176,NULL,140057,1,'2022-05-30 01:20:27','2022-05-30 01:20:27','00dfee7d-6180-4d12-8a9c-fb3bb2921983'),(116051,69,140178,NULL,94210,1,'2022-05-30 01:20:35','2022-05-30 01:20:35','57d988f8-a3d7-496a-a22a-483853f6ee19'),(116052,85,140178,NULL,17964,1,'2022-05-30 01:20:35','2022-05-30 01:20:35','c3231cd2-0d37-4fe0-8679-c26b247506c2'),(116053,85,140178,NULL,17965,2,'2022-05-30 01:20:35','2022-05-30 01:20:35','6a8ecdf8-d839-4498-a24c-af9caf3d78aa'),(116054,85,140178,NULL,17970,3,'2022-05-30 01:20:35','2022-05-30 01:20:35','bcd07845-7c57-4a2c-b4c1-51b24669ed81'),(116055,85,140178,NULL,17971,4,'2022-05-30 01:20:35','2022-05-30 01:20:35','f3816dcc-2797-4cf7-a655-228eddb0d156'),(116056,84,140178,NULL,38158,1,'2022-05-30 01:20:35','2022-05-30 01:20:35','8697c9fc-60a7-4d68-88e6-43246db2aec8'),(116057,198,140178,NULL,94210,1,'2022-05-30 01:20:35','2022-05-30 01:20:35','f0f77314-8b39-4690-a8de-d9fed14df075'),(116070,79,140180,NULL,17875,1,'2022-05-30 01:21:54','2022-05-30 01:21:54','bf95eec2-e691-4455-af22-433bccecd487'),(116071,79,140180,NULL,17954,2,'2022-05-30 01:21:54','2022-05-30 01:21:54','368609f8-aa6b-4cea-a48f-83a0a8ccd789'),(116072,69,140180,NULL,48176,1,'2022-05-30 01:21:54','2022-05-30 01:21:54','0fef59e2-cd3a-4835-85d9-168ca3d44e86'),(116073,85,140180,NULL,17964,1,'2022-05-30 01:21:54','2022-05-30 01:21:54','b6480cc0-fd8f-4c34-a8ef-40ae1ec2bbca'),(116074,85,140180,NULL,17965,2,'2022-05-30 01:21:54','2022-05-30 01:21:54','5631961c-ff39-4070-875b-7230cd17e0d7'),(116075,85,140180,NULL,17966,3,'2022-05-30 01:21:54','2022-05-30 01:21:54','a0715ea5-8d7d-4246-8640-35de5379195d'),(116076,85,140180,NULL,17969,4,'2022-05-30 01:21:54','2022-05-30 01:21:54','167f292c-3384-4dcf-8396-85ef33139a0c'),(116077,85,140180,NULL,17970,5,'2022-05-30 01:21:54','2022-05-30 01:21:54','d3734a99-8ebe-49b1-acf5-c39da22a54b1'),(116078,85,140180,NULL,17971,6,'2022-05-30 01:21:54','2022-05-30 01:21:54','0d63502d-ec98-4b45-8342-6e9b0ad5416e'),(116079,84,140180,NULL,38158,1,'2022-05-30 01:21:54','2022-05-30 01:21:54','d661dc07-246a-4a2e-830c-480d333025eb'),(116080,198,140180,NULL,48176,1,'2022-05-30 01:21:54','2022-05-30 01:21:54','67d2bd6c-09c7-43d9-b02d-c46d86249535'),(116081,69,140181,NULL,48180,1,'2022-05-30 01:22:14','2022-05-30 01:22:14','98c400ae-d2bd-49ad-9c49-c2900f5535f5'),(116082,85,140181,NULL,17964,1,'2022-05-30 01:22:14','2022-05-30 01:22:14','f4fc9e77-135d-4886-923f-f7eb27af1d6e'),(116083,85,140181,NULL,17966,2,'2022-05-30 01:22:14','2022-05-30 01:22:14','acec6fde-361c-4496-839d-57ae6ed8793c'),(116084,85,140181,NULL,17969,3,'2022-05-30 01:22:14','2022-05-30 01:22:14','1d9a6e1e-a667-4a73-8856-017a98ae8816'),(116085,85,140181,NULL,17971,4,'2022-05-30 01:22:14','2022-05-30 01:22:14','752b4587-3d85-400f-9b1e-64f9211deb21'),(116086,84,140181,NULL,18057,1,'2022-05-30 01:22:14','2022-05-30 01:22:14','f549e7ef-f01e-4012-9a34-3766eea8e2eb'),(116087,198,140181,NULL,48180,1,'2022-05-30 01:22:14','2022-05-30 01:22:14','395fff8a-8f39-441d-9199-8f9e783bd7ce'),(116088,79,140182,NULL,17875,1,'2022-05-30 01:22:34','2022-05-30 01:22:34','57cc5a69-b9b2-40a5-844a-29b31868ef70'),(116089,79,140182,NULL,17881,2,'2022-05-30 01:22:34','2022-05-30 01:22:34','19c81daf-9322-40e3-bfbb-d9d6ac684748'),(116090,79,140182,NULL,1,3,'2022-05-30 01:22:34','2022-05-30 01:22:34','9cee05b8-df72-4bcd-bd7b-bafe63d65028'),(116091,79,140182,NULL,17954,4,'2022-05-30 01:22:34','2022-05-30 01:22:34','9c46299d-9d80-4af9-a2bd-c15d3b41b05f'),(116092,79,140182,NULL,17956,5,'2022-05-30 01:22:34','2022-05-30 01:22:34','b77d1dfd-15d9-4c7f-a703-0e7ae8a2f4de'),(116093,69,140182,NULL,48184,1,'2022-05-30 01:22:34','2022-05-30 01:22:34','e64d0321-67d3-4c39-931c-0fc4392d5642'),(116094,85,140182,NULL,17964,1,'2022-05-30 01:22:34','2022-05-30 01:22:34','ca01eece-8fdb-4246-a4cc-bcc7ebf12132'),(116095,85,140182,NULL,17965,2,'2022-05-30 01:22:34','2022-05-30 01:22:34','c66f5d1f-e97a-4fd1-8266-f1c29650f72e'),(116096,85,140182,NULL,17970,3,'2022-05-30 01:22:34','2022-05-30 01:22:34','9cf09ccd-3fbd-44b4-b4df-7ea4c762de83'),(116097,85,140182,NULL,17971,4,'2022-05-30 01:22:34','2022-05-30 01:22:34','4982c10d-1901-4bd5-8487-66755983f604'),(116098,84,140182,NULL,38158,1,'2022-05-30 01:22:34','2022-05-30 01:22:34','e8d3b52b-d3f5-4619-bde7-788250805d63'),(116099,198,140182,NULL,48184,1,'2022-05-30 01:22:34','2022-05-30 01:22:34','6bd20454-6724-4642-a8fe-1bdd8f2d6c99'),(116100,79,140183,NULL,17875,1,'2022-05-30 01:22:36','2022-05-30 01:22:36','f9e254ba-3d0e-41c2-8cfd-f4564854c95e'),(116101,79,140183,NULL,17881,2,'2022-05-30 01:22:36','2022-05-30 01:22:36','d32b7ab0-7097-49b0-bb4c-980b814630d2'),(116102,79,140183,NULL,1,3,'2022-05-30 01:22:36','2022-05-30 01:22:36','e8d5ccb3-dd1c-485a-a77c-e03a790bece1'),(116103,79,140183,NULL,17954,4,'2022-05-30 01:22:36','2022-05-30 01:22:36','f5d83fb4-d67f-4f7f-af83-2f2814d0eab3'),(116104,79,140183,NULL,17956,5,'2022-05-30 01:22:36','2022-05-30 01:22:36','6ec9a897-2fa0-46a6-8104-e4d1c415d8b2'),(116105,69,140183,NULL,48184,1,'2022-05-30 01:22:36','2022-05-30 01:22:36','8d570a7b-69b9-48ea-84ac-2172a9a9035e'),(116106,85,140183,NULL,17964,1,'2022-05-30 01:22:36','2022-05-30 01:22:36','f5f93e43-b1db-499a-a7e3-40e41e0852f2'),(116107,85,140183,NULL,17965,2,'2022-05-30 01:22:36','2022-05-30 01:22:36','165220cb-fdd1-4372-924b-0a4b3e64ad72'),(116108,85,140183,NULL,17970,3,'2022-05-30 01:22:36','2022-05-30 01:22:36','77e01670-8e16-48bf-ac40-513528595cbb'),(116109,85,140183,NULL,17971,4,'2022-05-30 01:22:36','2022-05-30 01:22:36','ff8d7dae-8beb-4561-a70d-0f3dd80afdc3'),(116110,84,140183,NULL,38158,1,'2022-05-30 01:22:36','2022-05-30 01:22:36','3cb43e8c-0f8f-4444-8d6b-da0b367ede02'),(116111,198,140183,NULL,48184,1,'2022-05-30 01:22:36','2022-05-30 01:22:36','6aa133b3-752c-42ca-8647-ea8336c0515d'),(116112,79,140184,NULL,17875,1,'2022-05-30 01:22:52','2022-05-30 01:22:52','0cf21327-6181-4d38-b893-50e2b300eaec'),(116113,79,140184,NULL,17954,2,'2022-05-30 01:22:52','2022-05-30 01:22:52','579e0e64-b7c0-4557-98f2-4adea92b00da'),(116114,69,140184,NULL,48452,1,'2022-05-30 01:22:52','2022-05-30 01:22:52','690f1c6d-b7cc-40e3-b72f-5653b9504eba'),(116115,85,140184,NULL,17964,1,'2022-05-30 01:22:52','2022-05-30 01:22:52','cbe068d1-b3c8-433b-8a29-ae4387f34c88'),(116116,85,140184,NULL,17966,2,'2022-05-30 01:22:52','2022-05-30 01:22:52','976b9624-c00c-415c-a4fa-64305cce6a1c'),(116117,85,140184,NULL,17968,3,'2022-05-30 01:22:52','2022-05-30 01:22:52','a8283738-01cf-4ee1-81a6-6ed3157bd9ba'),(116118,85,140184,NULL,17970,4,'2022-05-30 01:22:52','2022-05-30 01:22:52','e7570bf4-1705-4da7-be83-9cae5ede9ad0'),(116119,85,140184,NULL,17971,5,'2022-05-30 01:22:52','2022-05-30 01:22:52','f5877f00-a3c8-4de2-9888-1dfe5f023806'),(116120,84,140184,NULL,18057,1,'2022-05-30 01:22:52','2022-05-30 01:22:52','a097be9b-b34a-44fa-ae99-061cc8b1268c'),(116121,198,140184,NULL,48452,1,'2022-05-30 01:22:52','2022-05-30 01:22:52','765152cc-3c1d-4e7e-a0a8-346cb5dc0e6a'),(116122,79,140185,NULL,17875,1,'2022-05-30 01:23:12','2022-05-30 01:23:12','00bb9354-f7de-4e74-bca4-dd9ca8330cc4'),(116123,79,140185,NULL,17934,2,'2022-05-30 01:23:12','2022-05-30 01:23:12','642d9bcc-7234-47c2-aa7e-e541cff96136'),(116124,79,140185,NULL,17954,3,'2022-05-30 01:23:12','2022-05-30 01:23:12','8a82f2b1-563e-4b66-bf9a-41e3006225c4'),(116125,79,140185,NULL,17956,4,'2022-05-30 01:23:12','2022-05-30 01:23:12','d19b7a9e-e45a-4fe3-8cd8-a7d03b7154cf'),(116126,69,140185,NULL,48476,1,'2022-05-30 01:23:12','2022-05-30 01:23:12','deba30c5-b40b-4550-9334-b3a62bd1fa22'),(116127,85,140185,NULL,17964,1,'2022-05-30 01:23:12','2022-05-30 01:23:12','8a5e0891-ae30-43c1-911b-ada2734d7888'),(116128,85,140185,NULL,17966,2,'2022-05-30 01:23:12','2022-05-30 01:23:12','167f66a3-3279-4983-af5f-1b33525376c0'),(116129,85,140185,NULL,17967,3,'2022-05-30 01:23:12','2022-05-30 01:23:12','8a777726-dab6-4c9b-96a2-7794fada3f45'),(116130,85,140185,NULL,17968,4,'2022-05-30 01:23:12','2022-05-30 01:23:12','58e98d08-4792-4b6a-a0e0-87d4f6f389ac'),(116131,85,140185,NULL,17970,5,'2022-05-30 01:23:12','2022-05-30 01:23:12','f547388d-c30a-491d-8745-e6a30cda6552'),(116132,85,140185,NULL,17971,6,'2022-05-30 01:23:12','2022-05-30 01:23:12','da375dbb-4fac-4045-908f-945cc757b0e1'),(116133,84,140185,NULL,18057,1,'2022-05-30 01:23:12','2022-05-30 01:23:12','1fd6937e-323f-4670-9d84-a1a28b0151d0'),(116134,84,140185,NULL,38160,2,'2022-05-30 01:23:12','2022-05-30 01:23:12','d2d71488-b7d1-414b-841a-6c77bd19a5fa'),(116149,198,44843,NULL,48476,1,'2022-05-30 01:24:10','2022-05-30 01:24:10','1210de2f-93e4-4991-93c5-8d5950374e45'),(116150,79,140187,NULL,17875,1,'2022-05-30 01:24:10','2022-05-30 01:24:10','c95d9042-b0f6-48fd-a80b-883519df2cfe'),(116151,79,140187,NULL,17934,2,'2022-05-30 01:24:10','2022-05-30 01:24:10','f63a5a51-1c13-4318-a42f-5e8384ae8213'),(116152,79,140187,NULL,17954,3,'2022-05-30 01:24:10','2022-05-30 01:24:10','86dbf3fb-459a-4e20-9d5b-0e5a4ef8aced'),(116153,79,140187,NULL,17956,4,'2022-05-30 01:24:10','2022-05-30 01:24:10','66220256-6eab-471f-971c-b8aac66f3abb'),(116154,69,140187,NULL,48476,1,'2022-05-30 01:24:10','2022-05-30 01:24:10','269ae440-3be4-4441-9c68-861a1bbf93d7'),(116155,85,140187,NULL,17964,1,'2022-05-30 01:24:10','2022-05-30 01:24:10','23db5324-0d63-4f19-9147-fec87816d81d'),(116156,85,140187,NULL,17966,2,'2022-05-30 01:24:10','2022-05-30 01:24:10','c03f1150-49de-49cf-af46-76abe2e60d68'),(116157,85,140187,NULL,17967,3,'2022-05-30 01:24:10','2022-05-30 01:24:10','9fa54f93-9b91-4386-b2d9-8de7d753e32f'),(116158,85,140187,NULL,17968,4,'2022-05-30 01:24:10','2022-05-30 01:24:10','25ef1792-2b05-4a7c-8645-6e6ab7c0404f'),(116159,85,140187,NULL,17970,5,'2022-05-30 01:24:10','2022-05-30 01:24:10','742c6174-05a5-4b73-9cd3-660272c9a847'),(116160,85,140187,NULL,17971,6,'2022-05-30 01:24:10','2022-05-30 01:24:10','a8fceadd-3e57-48ae-91e5-fd8d34292b0d'),(116161,84,140187,NULL,18057,1,'2022-05-30 01:24:10','2022-05-30 01:24:10','c7d1df7e-0574-4f20-88ba-7be0089a45e9'),(116162,84,140187,NULL,38160,2,'2022-05-30 01:24:10','2022-05-30 01:24:10','807caec0-a785-43e3-aff8-d54f0660909d'),(116163,198,140187,NULL,48476,1,'2022-05-30 01:24:10','2022-05-30 01:24:10','32afb35e-35a3-4c62-9d1f-ef8c42f762a7'),(116177,198,44841,NULL,48532,1,'2022-05-30 01:24:58','2022-05-30 01:24:58','d80e64c3-bbf4-46c3-a212-a9e020e8d8a7'),(116178,79,140189,NULL,17875,1,'2022-05-30 01:24:58','2022-05-30 01:24:58','56c78595-f4cc-44d2-b430-9ffabdf84170'),(116179,79,140189,NULL,17881,2,'2022-05-30 01:24:58','2022-05-30 01:24:58','8b971a4e-b18e-4fca-a431-a6e2087a0068'),(116180,79,140189,NULL,1,3,'2022-05-30 01:24:58','2022-05-30 01:24:58','5e86dd0a-0bc2-4e3a-9369-833cb53cdb22'),(116181,79,140189,NULL,17954,4,'2022-05-30 01:24:58','2022-05-30 01:24:58','ce2037b4-b427-434f-a068-a5d062e07b58'),(116182,79,140189,NULL,17956,5,'2022-05-30 01:24:58','2022-05-30 01:24:58','f0647f4a-c33e-4e57-814b-ab26aee356bb'),(116183,69,140189,NULL,48532,1,'2022-05-30 01:24:58','2022-05-30 01:24:58','672aa40c-e461-49fe-ac42-f0c2836e2a53'),(116184,85,140189,NULL,17964,1,'2022-05-30 01:24:58','2022-05-30 01:24:58','f64ad6de-6cce-4059-acdf-d39b11dfdc73'),(116185,85,140189,NULL,17968,2,'2022-05-30 01:24:58','2022-05-30 01:24:58','d8a568f8-877e-48a5-9abf-530b9c2d6e7c'),(116186,85,140189,NULL,17970,3,'2022-05-30 01:24:58','2022-05-30 01:24:58','bb01d314-e75f-467a-a70b-d5591f710d48'),(116187,85,140189,NULL,17971,4,'2022-05-30 01:24:58','2022-05-30 01:24:58','e16e3500-2f51-47de-a7fa-bd53dfae0c6a'),(116188,84,140189,NULL,18057,1,'2022-05-30 01:24:58','2022-05-30 01:24:58','f9852ad2-dab5-4cd0-987d-98c17b8e18ee'),(116189,84,140189,NULL,38160,2,'2022-05-30 01:24:58','2022-05-30 01:24:58','51fc6451-4817-4276-b6e2-fbbc227230ea'),(116190,198,140189,NULL,48532,1,'2022-05-30 01:24:58','2022-05-30 01:24:58','d9258401-8657-4aa7-8b21-b9a15456322a'),(116203,79,140191,NULL,17875,1,'2022-05-30 01:26:47','2022-05-30 01:26:47','e9e2c703-401d-45f4-8988-878554c3257f'),(116204,79,140191,NULL,17934,2,'2022-05-30 01:26:47','2022-05-30 01:26:47','b294b445-03fd-4268-8f85-ea2bdf31bf33'),(116205,79,140191,NULL,17954,3,'2022-05-30 01:26:47','2022-05-30 01:26:47','aacaca50-f7ad-4836-beb4-d2779b6db672'),(116206,79,140191,NULL,17956,4,'2022-05-30 01:26:47','2022-05-30 01:26:47','94b5fb52-a090-4c76-a20f-92be174ddd80'),(116207,69,140191,NULL,48535,1,'2022-05-30 01:26:47','2022-05-30 01:26:47','e73b4bd2-1340-4145-abd3-eee69d2181e2'),(116208,85,140191,NULL,17964,1,'2022-05-30 01:26:47','2022-05-30 01:26:47','9a672b02-b0d5-470b-98b6-46978d689690'),(116209,85,140191,NULL,17965,2,'2022-05-30 01:26:47','2022-05-30 01:26:47','3c66680e-4748-47ca-a53b-e1f587259da8'),(116210,85,140191,NULL,17966,3,'2022-05-30 01:26:47','2022-05-30 01:26:47','98ce8bf7-0608-4c9f-af2b-f1aeddfdf9af'),(116211,85,140191,NULL,17968,4,'2022-05-30 01:26:47','2022-05-30 01:26:47','cd67ff62-90f6-4fec-b32a-dc2fcf847939'),(116212,85,140191,NULL,17969,5,'2022-05-30 01:26:47','2022-05-30 01:26:47','33704a3e-2039-477d-bf1b-02ec9a38a3af'),(116213,85,140191,NULL,17971,6,'2022-05-30 01:26:47','2022-05-30 01:26:47','e43d7c8b-3a96-4efb-955a-93975de11038'),(116214,84,140191,NULL,38159,1,'2022-05-30 01:26:47','2022-05-30 01:26:47','e335fba6-e1bb-473a-8189-c26568a3769e'),(116227,79,140193,NULL,17875,1,'2022-05-30 01:28:56','2022-05-30 01:28:56','62a79074-b8d9-4775-8009-52a45d40375d'),(116228,79,140193,NULL,17934,2,'2022-05-30 01:28:56','2022-05-30 01:28:56','24f6a83b-9a78-4e86-953d-b7f889dcb94c'),(116229,79,140193,NULL,17954,3,'2022-05-30 01:28:56','2022-05-30 01:28:56','2f79222e-810d-4dd8-8747-40573f3f643a'),(116230,79,140193,NULL,17956,4,'2022-05-30 01:28:56','2022-05-30 01:28:56','2b149896-5c80-4c52-b181-72ff6e6ccd90'),(116231,69,140193,NULL,48535,1,'2022-05-30 01:28:56','2022-05-30 01:28:56','c1a8ace8-b7d5-4505-8d9d-b182051cdee5'),(116232,85,140193,NULL,17964,1,'2022-05-30 01:28:56','2022-05-30 01:28:56','88a83492-c856-41e7-b0ed-9a0fc65ae045'),(116233,85,140193,NULL,17965,2,'2022-05-30 01:28:56','2022-05-30 01:28:56','6898158f-4ea9-407b-8a32-76adc4a11dbb'),(116234,85,140193,NULL,17966,3,'2022-05-30 01:28:56','2022-05-30 01:28:56','51213237-0a7b-44f2-a89e-10e8c875b158'),(116235,85,140193,NULL,17968,4,'2022-05-30 01:28:56','2022-05-30 01:28:56','f9f73027-ac19-4971-9aa1-5c42defdafc7'),(116236,85,140193,NULL,17969,5,'2022-05-30 01:28:56','2022-05-30 01:28:56','3b10f004-8e08-4ad7-8755-f2df56ee952a'),(116237,85,140193,NULL,17971,6,'2022-05-30 01:28:56','2022-05-30 01:28:56','ab17c79d-b5b6-40c8-bb7b-88b4c12624dc'),(116238,84,140193,NULL,38159,1,'2022-05-30 01:28:56','2022-05-30 01:28:56','3e57addf-8324-4e8a-8773-424d3a3ece9c'),(116250,198,40506,NULL,48538,1,'2022-05-30 01:29:36','2022-05-30 01:29:36','b249f08f-2178-451e-b0b9-ca75a6bb9b70'),(116251,79,140195,NULL,17875,1,'2022-05-30 01:29:36','2022-05-30 01:29:36','e49f21b7-d731-43cf-9883-16f8f723655e'),(116252,79,140195,NULL,17934,2,'2022-05-30 01:29:36','2022-05-30 01:29:36','78e458c7-5b0d-48e8-9f16-a54457294f56'),(116253,79,140195,NULL,17956,3,'2022-05-30 01:29:36','2022-05-30 01:29:36','3fdb831b-5538-43c7-9f42-9c5d0824a05d'),(116254,69,140195,NULL,48538,1,'2022-05-30 01:29:36','2022-05-30 01:29:36','2e389cc8-6f93-4f47-8b6c-9b44d7a520f9'),(116255,85,140195,NULL,17964,1,'2022-05-30 01:29:36','2022-05-30 01:29:36','06c1b555-4943-4736-a7a3-83ce7a26235c'),(116256,85,140195,NULL,17966,2,'2022-05-30 01:29:36','2022-05-30 01:29:36','a0c01a75-846f-43bc-b6d0-b12d586939c6'),(116257,85,140195,NULL,17968,3,'2022-05-30 01:29:36','2022-05-30 01:29:36','0c87683d-9865-4a4f-b5f3-5927612abe96'),(116258,85,140195,NULL,17970,4,'2022-05-30 01:29:36','2022-05-30 01:29:36','e7007e45-8bb3-45d9-9182-151b336f6836'),(116259,85,140195,NULL,17971,5,'2022-05-30 01:29:36','2022-05-30 01:29:36','acf9d0d7-cd9f-4204-98bc-7b8bf3bef073'),(116260,84,140195,NULL,38157,1,'2022-05-30 01:29:36','2022-05-30 01:29:36','3bc3b3fd-fa62-42ed-a364-c76b981d3d10'),(116261,198,140195,NULL,48538,1,'2022-05-30 01:29:36','2022-05-30 01:29:36','61b722d3-0b16-42fa-860c-69b8a2b7f594'),(116275,198,44837,NULL,48535,1,'2022-05-30 01:30:24','2022-05-30 01:30:24','de20c800-2b10-4b6c-84fa-a1a195c3ad49'),(116276,79,140197,NULL,17875,1,'2022-05-30 01:30:24','2022-05-30 01:30:24','20f0d9ee-27b5-41d7-a37d-064094d2b713'),(116277,79,140197,NULL,17934,2,'2022-05-30 01:30:24','2022-05-30 01:30:24','0086d7bd-1372-4e13-a0f6-28dc2cad1137'),(116278,79,140197,NULL,17954,3,'2022-05-30 01:30:24','2022-05-30 01:30:24','63b2e224-925f-489b-b76a-1b64a8d7f1bd'),(116279,79,140197,NULL,17956,4,'2022-05-30 01:30:24','2022-05-30 01:30:24','41a96050-2870-461f-afbb-d4bae1f03c13'),(116280,69,140197,NULL,48535,1,'2022-05-30 01:30:24','2022-05-30 01:30:24','83039f0e-5994-4782-9610-edb7978e2838'),(116281,85,140197,NULL,17964,1,'2022-05-30 01:30:24','2022-05-30 01:30:24','d1efeb36-95cc-4c0d-8311-9919bb21500e'),(116282,85,140197,NULL,17965,2,'2022-05-30 01:30:24','2022-05-30 01:30:24','7d6ef38c-ed16-4b17-ab55-65ca25d01328'),(116283,85,140197,NULL,17966,3,'2022-05-30 01:30:24','2022-05-30 01:30:24','a1ebf01f-ad3b-4c49-9755-55e03f84aae7'),(116284,85,140197,NULL,17968,4,'2022-05-30 01:30:24','2022-05-30 01:30:24','bb2b8b77-768d-423a-a49c-6e42b2311189'),(116285,85,140197,NULL,17969,5,'2022-05-30 01:30:24','2022-05-30 01:30:24','c06e849c-776e-4b3b-84e6-4b400503bfdc'),(116286,85,140197,NULL,17971,6,'2022-05-30 01:30:24','2022-05-30 01:30:24','d3a95b45-9b64-4a59-9c4b-582b96b70629'),(116287,84,140197,NULL,38159,1,'2022-05-30 01:30:24','2022-05-30 01:30:24','4a20b620-70a8-470a-b577-e7a3b3a2cd3d'),(116288,198,140197,NULL,48535,1,'2022-05-30 01:30:24','2022-05-30 01:30:24','28e66cc3-41a9-4c06-b225-bf9812d760ed'),(116307,198,40504,NULL,61826,1,'2022-05-30 01:31:34','2022-05-30 01:31:34','e9d127bd-beb3-4997-8e0d-d562879a6d25'),(116308,79,140199,NULL,17875,1,'2022-05-30 01:31:34','2022-05-30 01:31:34','e10ead0d-d04c-4c96-8de9-a198d4f73f7d'),(116309,79,140199,NULL,17887,2,'2022-05-30 01:31:34','2022-05-30 01:31:34','7ee452dd-7f10-44ff-a2e0-cfe6fdab8264'),(116310,79,140199,NULL,17899,3,'2022-05-30 01:31:34','2022-05-30 01:31:34','8acae331-dbf3-4d4d-b690-201160a710f1'),(116311,79,140199,NULL,17934,4,'2022-05-30 01:31:34','2022-05-30 01:31:34','c34b90b8-f8fc-41fa-8274-e82569e0bae3'),(116312,79,140199,NULL,17941,5,'2022-05-30 01:31:34','2022-05-30 01:31:34','93c9aa84-1e6a-489a-848d-df7f9e5b06b1'),(116313,79,140199,NULL,1,6,'2022-05-30 01:31:34','2022-05-30 01:31:34','4373e134-f021-48dc-8f74-bf01012cddd2'),(116314,79,140199,NULL,17956,7,'2022-05-30 01:31:34','2022-05-30 01:31:34','aa78a269-3279-4686-aa72-5873f05158ba'),(116315,79,140199,NULL,17996,8,'2022-05-30 01:31:34','2022-05-30 01:31:34','7789dfdb-9a05-49c9-8002-c8c40921b74c'),(116316,69,140199,NULL,61826,1,'2022-05-30 01:31:34','2022-05-30 01:31:34','0d58d3e0-70e8-4619-89e6-81c7245ba639'),(116317,85,140199,NULL,17964,1,'2022-05-30 01:31:34','2022-05-30 01:31:34','75ada933-2a6f-496b-90a1-c24d343aee6c'),(116318,85,140199,NULL,17965,2,'2022-05-30 01:31:34','2022-05-30 01:31:34','30cc8185-bdf0-43c3-a1f5-e9b011991c2e'),(116319,85,140199,NULL,17966,3,'2022-05-30 01:31:34','2022-05-30 01:31:34','5e6f0820-37d4-4059-9ca6-9a9f2cd9c2a8'),(116320,85,140199,NULL,17968,4,'2022-05-30 01:31:34','2022-05-30 01:31:34','042accc7-1ab2-4794-b7cf-015ff507b7c4'),(116321,85,140199,NULL,17969,5,'2022-05-30 01:31:34','2022-05-30 01:31:34','a9d5c95c-9bd0-4a29-ae05-264b0adf4dac'),(116322,85,140199,NULL,17970,6,'2022-05-30 01:31:34','2022-05-30 01:31:34','8198f204-1d92-4a6f-975e-47a20a829f8c'),(116323,85,140199,NULL,17971,7,'2022-05-30 01:31:34','2022-05-30 01:31:34','1f17ab95-e714-426a-a0bc-2be6764a50c7'),(116324,84,140199,NULL,38160,1,'2022-05-30 01:31:34','2022-05-30 01:31:34','dda061d8-3e8a-4c8b-b3c5-5006ad397999'),(116325,198,140199,NULL,61826,1,'2022-05-30 01:31:34','2022-05-30 01:31:34','156da5ec-f1b1-4caa-9901-9de22b672d85'),(116344,198,30427,NULL,30441,1,'2022-05-30 01:32:36','2022-05-30 01:32:36','5a6684fd-a061-4e97-a1dc-9f306a7fe819'),(116345,79,140201,NULL,17875,1,'2022-05-30 01:32:37','2022-05-30 01:32:37','78d47cbc-96e1-4847-801b-addbe090eceb'),(116346,79,140201,NULL,17887,2,'2022-05-30 01:32:37','2022-05-30 01:32:37','02c36609-e1bf-4a7a-9063-bf9a90b0176d'),(116347,79,140201,NULL,17899,3,'2022-05-30 01:32:37','2022-05-30 01:32:37','ef63e945-d7c8-40cd-8c43-7a47d1c72af8'),(116348,79,140201,NULL,17934,4,'2022-05-30 01:32:37','2022-05-30 01:32:37','d48d3375-93af-4f18-bd0e-a8c783a2e902'),(116349,79,140201,NULL,17941,5,'2022-05-30 01:32:37','2022-05-30 01:32:37','94bb7b05-a72d-46f4-98fd-f7b287eb849f'),(116350,79,140201,NULL,1,6,'2022-05-30 01:32:37','2022-05-30 01:32:37','0833f742-51ec-47a2-af76-4c8bcdaa2a70'),(116351,79,140201,NULL,17954,7,'2022-05-30 01:32:37','2022-05-30 01:32:37','7882552e-25a9-4611-baa2-6b5a4bfce975'),(116352,79,140201,NULL,17956,8,'2022-05-30 01:32:37','2022-05-30 01:32:37','e6bfe570-508f-414b-a345-7a69d1a41f1d'),(116353,79,140201,NULL,17996,9,'2022-05-30 01:32:37','2022-05-30 01:32:37','a1e051ab-024a-4991-bd1c-5fcce500e367'),(116354,69,140201,NULL,30441,1,'2022-05-30 01:32:37','2022-05-30 01:32:37','a6ebf199-edaa-44cc-8ac8-610923b3eccc'),(116355,85,140201,NULL,17964,1,'2022-05-30 01:32:37','2022-05-30 01:32:37','51b9593e-3ad7-46d5-b0bd-e15e2f32f10d'),(116356,85,140201,NULL,17965,2,'2022-05-30 01:32:37','2022-05-30 01:32:37','ab012a1f-c30b-4c83-a591-00067de90972'),(116357,85,140201,NULL,17966,3,'2022-05-30 01:32:37','2022-05-30 01:32:37','671a8769-5d5d-4607-bd95-e4a5f67a1704'),(116358,85,140201,NULL,17968,4,'2022-05-30 01:32:37','2022-05-30 01:32:37','503522d9-0961-451f-ae3f-5b9de0a5d8aa'),(116359,85,140201,NULL,17969,5,'2022-05-30 01:32:37','2022-05-30 01:32:37','a44b0c02-2ced-48f1-9b20-510563986da0'),(116360,85,140201,NULL,17971,6,'2022-05-30 01:32:37','2022-05-30 01:32:37','db8845d7-14f2-4531-ae88-feff10bd6da5'),(116361,84,140201,NULL,38157,1,'2022-05-30 01:32:37','2022-05-30 01:32:37','63d5e3ec-34fb-446c-acb3-eb28bf45b2a9'),(116362,198,140201,NULL,30441,1,'2022-05-30 01:32:37','2022-05-30 01:32:37','a2fd14f2-7353-43f5-a66e-23abd063cb37'),(116417,79,140205,NULL,17875,1,'2022-05-30 01:33:15','2022-05-30 01:33:15','d7fe9d2a-1c20-4181-8d89-65b28a7e0e54'),(116418,79,140205,NULL,17887,2,'2022-05-30 01:33:15','2022-05-30 01:33:15','88d1a669-8187-4ad1-8e5f-ce694af67701'),(116419,79,140205,NULL,17899,3,'2022-05-30 01:33:15','2022-05-30 01:33:15','595f0601-6d64-4988-95ca-7d0905a75150'),(116420,79,140205,NULL,17934,4,'2022-05-30 01:33:15','2022-05-30 01:33:15','293f789e-d003-4afb-9d19-0715b196a91d'),(116421,79,140205,NULL,17941,5,'2022-05-30 01:33:15','2022-05-30 01:33:15','747c4395-ad3e-4f20-87a3-091c35c21ded'),(116422,79,140205,NULL,1,6,'2022-05-30 01:33:15','2022-05-30 01:33:15','49ee458f-4137-4d56-8feb-9babfc8fab25'),(116423,79,140205,NULL,17954,7,'2022-05-30 01:33:15','2022-05-30 01:33:15','561baae0-6564-439a-9e93-4813debcfbe1'),(116424,79,140205,NULL,17956,8,'2022-05-30 01:33:15','2022-05-30 01:33:15','67e9781d-f1ad-48b8-9371-6ab50bec1453'),(116425,79,140205,NULL,17996,9,'2022-05-30 01:33:15','2022-05-30 01:33:15','2fbde9e8-a7c3-4a1c-a201-f65b9fd852a0'),(116426,69,140205,NULL,30441,1,'2022-05-30 01:33:15','2022-05-30 01:33:15','43816f34-56a9-4a3d-aa90-971e5c120812'),(116427,85,140205,NULL,17964,1,'2022-05-30 01:33:15','2022-05-30 01:33:15','f2609bcf-87a0-493c-9735-c6cdb919d207'),(116428,85,140205,NULL,17965,2,'2022-05-30 01:33:15','2022-05-30 01:33:15','a00b5d93-29e3-40c7-9b83-3ee62eb87b96'),(116429,85,140205,NULL,17966,3,'2022-05-30 01:33:15','2022-05-30 01:33:15','815a515f-6cc5-4f13-803e-8dd0a81ef1d5'),(116430,85,140205,NULL,17968,4,'2022-05-30 01:33:15','2022-05-30 01:33:15','636fca9b-3aa6-4849-a362-b2d4433015d9'),(116431,85,140205,NULL,17969,5,'2022-05-30 01:33:15','2022-05-30 01:33:15','7ccf9fe9-d7ea-41ba-99dd-2441dabcf6f6'),(116432,85,140205,NULL,17971,6,'2022-05-30 01:33:15','2022-05-30 01:33:15','b4bd9029-301c-4263-a1e3-345ee2a4c6fe'),(116433,84,140205,NULL,38157,1,'2022-05-30 01:33:15','2022-05-30 01:33:15','272fbb35-c455-4b79-979e-51c83a691cb2'),(116434,198,140205,NULL,30441,1,'2022-05-30 01:33:15','2022-05-30 01:33:15','72d6ab27-a44c-4ce6-bbb3-bf6c0127949a'),(116436,198,22210,NULL,27826,1,'2022-05-30 01:34:00','2022-05-30 01:34:00','50384418-2337-4fbf-b2b1-b013fbcfd8f0'),(116437,69,140206,NULL,27826,1,'2022-05-30 01:34:00','2022-05-30 01:34:00','ea5f27b8-063d-46cb-9cc7-4aaee3f70fba'),(116438,85,140206,NULL,17964,1,'2022-05-30 01:34:00','2022-05-30 01:34:00','7dda2bbf-71fe-410a-b598-c8de64b4da4b'),(116439,85,140206,NULL,17966,2,'2022-05-30 01:34:00','2022-05-30 01:34:00','f32e7806-b980-492b-af1c-0c097ba2a106'),(116440,85,140206,NULL,17969,3,'2022-05-30 01:34:00','2022-05-30 01:34:00','bf5b9b26-eb66-433b-ad02-76718390ab8f'),(116441,85,140206,NULL,17970,4,'2022-05-30 01:34:00','2022-05-30 01:34:00','450b7912-f459-47c1-bdc2-ec9c2eb007cd'),(116442,85,140206,NULL,17971,5,'2022-05-30 01:34:00','2022-05-30 01:34:00','b3167759-8b79-42e0-8e87-2e134e63f71a'),(116443,84,140206,NULL,38159,1,'2022-05-30 01:34:00','2022-05-30 01:34:00','c4822f76-6e98-4b0a-a3d0-396a1aef5e1b'),(116444,198,140206,NULL,27826,1,'2022-05-30 01:34:00','2022-05-30 01:34:00','7211528d-533c-4866-a46e-e29fd488025d'),(116458,79,140208,NULL,17881,1,'2022-05-30 01:34:51','2022-05-30 01:34:51','6e7cc950-9578-4b8a-b381-744f445d2944'),(116459,79,140208,NULL,1,2,'2022-05-30 01:34:51','2022-05-30 01:34:51','e211064c-997e-407f-82f2-ed69f50b446b'),(116460,79,140208,NULL,17954,3,'2022-05-30 01:34:51','2022-05-30 01:34:51','f9ed7a84-c915-41ae-8d93-9ae71aa14314'),(116461,69,140208,NULL,21979,1,'2022-05-30 01:34:52','2022-05-30 01:34:52','78ab7725-fa06-4db9-9cc4-ef12fc8a8768'),(116462,85,140208,NULL,17964,1,'2022-05-30 01:34:52','2022-05-30 01:34:52','c5c09f6f-26fd-4ba0-b073-5a6b723b2730'),(116463,85,140208,NULL,17965,2,'2022-05-30 01:34:52','2022-05-30 01:34:52','3f78e03d-d201-427f-b8f9-bf56fea9e23f'),(116464,85,140208,NULL,17968,3,'2022-05-30 01:34:52','2022-05-30 01:34:52','503bf36c-42e8-4586-ac23-2672d7f8c25b'),(116465,85,140208,NULL,17970,4,'2022-05-30 01:34:52','2022-05-30 01:34:52','fe894ef0-5aba-47d3-afb9-a557d2c03ce5'),(116466,85,140208,NULL,17971,5,'2022-05-30 01:34:52','2022-05-30 01:34:52','760d810d-86cd-405e-a39d-dc2829fae200'),(116467,84,140208,NULL,18057,1,'2022-05-30 01:34:52','2022-05-30 01:34:52','80d02e4b-33a3-4eee-a086-88808abedd6c'),(116468,84,140208,NULL,38160,2,'2022-05-30 01:34:52','2022-05-30 01:34:52','2bdb553f-641e-4ce9-aa39-d69f9a8de54a'),(116469,198,140208,NULL,21979,1,'2022-05-30 01:34:52','2022-05-30 01:34:52','fc511df4-39e2-49ff-9430-5e284582e3e5'),(116482,198,18142,NULL,17753,1,'2022-05-30 01:36:15','2022-05-30 01:36:15','cc922fc8-0b9c-468f-bea2-adae43471183'),(116483,79,140210,NULL,17875,1,'2022-05-30 01:36:15','2022-05-30 01:36:15','5eefed65-a8b6-46c0-9667-007202fe850c'),(116484,79,140210,NULL,17934,2,'2022-05-30 01:36:15','2022-05-30 01:36:15','e62ef6ac-cec7-4562-8b86-898262fc0ed5'),(116485,79,140210,NULL,17881,3,'2022-05-30 01:36:15','2022-05-30 01:36:15','2aba47fb-164d-4071-a14e-fc06d428eb5e'),(116486,79,140210,NULL,17956,4,'2022-05-30 01:36:15','2022-05-30 01:36:15','ce2d68c4-82be-48ec-90eb-a8f1e567521f'),(116487,69,140210,NULL,22011,1,'2022-05-30 01:36:15','2022-05-30 01:36:15','e4d28432-6b2c-49bf-98ff-ac2617c18a44'),(116488,85,140210,NULL,17964,1,'2022-05-30 01:36:15','2022-05-30 01:36:15','62440e25-d08a-4c1f-8552-0097b811c1c7'),(116489,85,140210,NULL,17966,2,'2022-05-30 01:36:15','2022-05-30 01:36:15','674ba6af-bf38-4b75-ae0c-2ee8163c25f6'),(116490,85,140210,NULL,17967,3,'2022-05-30 01:36:15','2022-05-30 01:36:15','14b294ff-b885-40ef-96c8-2c468236ca89'),(116491,84,140210,NULL,18057,1,'2022-05-30 01:36:15','2022-05-30 01:36:15','abbf441b-3dd0-42ea-9762-29989224c280'),(116492,84,140210,NULL,38160,2,'2022-05-30 01:36:15','2022-05-30 01:36:15','8b28a0e9-f2c8-454a-aada-802617045daf'),(116493,198,140210,NULL,17753,1,'2022-05-30 01:36:15','2022-05-30 01:36:15','97bbdf9f-7499-4149-b339-541683f34d2a'),(116506,198,18168,NULL,22160,1,'2022-05-30 01:37:10','2022-05-30 01:37:10','ebeffeb4-c90b-417c-bb56-f1d45bb05195'),(116507,79,140212,NULL,17875,1,'2022-05-30 01:37:10','2022-05-30 01:37:10','7a5a957a-ee3a-47ba-89de-e4d0cb20a994'),(116508,79,140212,NULL,17934,2,'2022-05-30 01:37:10','2022-05-30 01:37:10','002680d8-b52a-4951-84b6-94eb57fc32e5'),(116509,79,140212,NULL,17954,3,'2022-05-30 01:37:10','2022-05-30 01:37:10','447512eb-7783-4bfe-9c80-f7718886936e'),(116510,79,140212,NULL,17956,4,'2022-05-30 01:37:10','2022-05-30 01:37:10','27a6209f-c9c4-4770-801c-e6ffa651b2be'),(116511,69,140212,NULL,22160,1,'2022-05-30 01:37:10','2022-05-30 01:37:10','556b6acc-4d52-4081-802a-bdb98b254e46'),(116512,85,140212,NULL,17964,1,'2022-05-30 01:37:10','2022-05-30 01:37:10','1406df46-e804-4ad3-859a-9196883e047e'),(116513,85,140212,NULL,17966,2,'2022-05-30 01:37:10','2022-05-30 01:37:10','33dd77fa-a7bc-4ce7-b0f6-ecac1ee855ab'),(116514,85,140212,NULL,17967,3,'2022-05-30 01:37:10','2022-05-30 01:37:10','2c6d973e-0ed6-4974-a8c3-bb6a00a7bee8'),(116515,85,140212,NULL,17969,4,'2022-05-30 01:37:10','2022-05-30 01:37:10','3e76baf5-1678-4b64-b7ab-10f896c235df'),(116516,85,140212,NULL,17970,5,'2022-05-30 01:37:10','2022-05-30 01:37:10','7cd0f046-beb2-414a-b798-c550dcedd4b5'),(116517,85,140212,NULL,17971,6,'2022-05-30 01:37:10','2022-05-30 01:37:10','5953a43a-78ee-40cf-a177-92bb4b0d8a53'),(116518,198,140212,NULL,22160,1,'2022-05-30 01:37:10','2022-05-30 01:37:10','c02553f7-e9f7-4ff7-b3f4-b88cdb378662'),(116521,198,18176,NULL,48541,1,'2022-05-30 01:37:38','2022-05-30 01:37:38','e7f46a81-b898-4c60-b626-c49d9be56021'),(116522,69,140214,NULL,48541,1,'2022-05-30 01:37:38','2022-05-30 01:37:38','6b91b70c-6759-470f-a074-64776e0a5655'),(116523,198,140214,NULL,48541,1,'2022-05-30 01:37:38','2022-05-30 01:37:38','b5dff5e2-0774-4d74-862d-bb996cb9813a'),(116536,198,18164,NULL,48162,1,'2022-05-30 01:38:27','2022-05-30 01:38:27','a3335a88-9cd5-4474-8458-7b6c907a7140'),(116537,79,140216,NULL,17887,1,'2022-05-30 01:38:27','2022-05-30 01:38:27','702f45c0-5b49-40b3-b4e4-b15addc89deb'),(116538,79,140216,NULL,17893,2,'2022-05-30 01:38:27','2022-05-30 01:38:27','97baf69e-4677-47f2-b3ae-d18bd68077e7'),(116539,79,140216,NULL,21898,3,'2022-05-30 01:38:27','2022-05-30 01:38:27','de42545b-9409-489f-b35c-c4c12780eb4f'),(116540,79,140216,NULL,17881,4,'2022-05-30 01:38:27','2022-05-30 01:38:27','962f9d09-eb3a-40f6-934d-4fc9679bffad'),(116541,79,140216,NULL,17956,5,'2022-05-30 01:38:27','2022-05-30 01:38:27','c5844dd2-0d18-4311-8695-8e42518f735f'),(116542,69,140216,NULL,48162,1,'2022-05-30 01:38:27','2022-05-30 01:38:27','36673ef2-9a5d-4512-b577-2e71141570dd'),(116543,85,140216,NULL,17964,1,'2022-05-30 01:38:27','2022-05-30 01:38:27','98892ede-3c6c-47ad-935c-91c915633b2e'),(116544,85,140216,NULL,17968,2,'2022-05-30 01:38:27','2022-05-30 01:38:27','7e41c6f3-a7d0-4872-bc07-1620f5a0531e'),(116545,84,140216,NULL,18057,1,'2022-05-30 01:38:27','2022-05-30 01:38:27','125ccbf7-1b2c-4fb3-8854-ede7902e2e73'),(116546,84,140216,NULL,38159,2,'2022-05-30 01:38:27','2022-05-30 01:38:27','793f40fd-6f69-401d-abea-c54fb8e5d305'),(116547,84,140216,NULL,38160,3,'2022-05-30 01:38:27','2022-05-30 01:38:27','46d29e8e-63a4-4860-9d51-6d00c9934edc'),(116548,198,140216,NULL,48162,1,'2022-05-30 01:38:27','2022-05-30 01:38:27','25432f04-f199-4963-b55b-3b08cb8afc48'),(116562,198,18156,NULL,61819,1,'2022-05-30 01:39:39','2022-05-30 01:39:39','dc7a5891-0a74-492d-9d10-b426b193d16c'),(116563,79,140218,NULL,17875,1,'2022-05-30 01:39:39','2022-05-30 01:39:39','364d195a-bba0-4d09-945b-4efce57c9dad'),(116564,79,140218,NULL,17934,2,'2022-05-30 01:39:39','2022-05-30 01:39:39','8bfd3fe0-bf4a-4e0b-94c3-3629b2394c38'),(116565,79,140218,NULL,17881,3,'2022-05-30 01:39:39','2022-05-30 01:39:39','91bfb174-f8b5-4f1d-acc4-80a3e2dc64e1'),(116566,79,140218,NULL,17954,4,'2022-05-30 01:39:39','2022-05-30 01:39:39','61824087-4f9a-4447-b4bf-979449089bc5'),(116567,79,140218,NULL,17956,5,'2022-05-30 01:39:39','2022-05-30 01:39:39','5a4acb28-6dd0-449e-a0f6-6f68e7bf6abf'),(116568,69,140218,NULL,61819,1,'2022-05-30 01:39:39','2022-05-30 01:39:39','d92702ba-e350-403b-b37a-6db001e7630a'),(116569,85,140218,NULL,17964,1,'2022-05-30 01:39:39','2022-05-30 01:39:39','7e3f2c7a-5205-4166-8dfa-ffff48adfee3'),(116570,85,140218,NULL,17965,2,'2022-05-30 01:39:39','2022-05-30 01:39:39','564d1642-f9ed-4871-a94e-ccad2e628d95'),(116571,85,140218,NULL,17969,3,'2022-05-30 01:39:39','2022-05-30 01:39:39','7b345807-63e4-4126-a7a9-cc52a48c7bf6'),(116572,85,140218,NULL,17970,4,'2022-05-30 01:39:39','2022-05-30 01:39:39','7205ae9b-9bc1-4a66-a302-40880f0f7065'),(116573,85,140218,NULL,17971,5,'2022-05-30 01:39:39','2022-05-30 01:39:39','4e4a5011-4cf7-44ce-8b2c-7140278a4644'),(116574,84,140218,NULL,38161,1,'2022-05-30 01:39:39','2022-05-30 01:39:39','bc25085a-7073-40bf-8887-80d7d2e4676f'),(116575,198,140218,NULL,61819,1,'2022-05-30 01:39:39','2022-05-30 01:39:39','1d9a739a-67f1-47cc-94ce-9b607b3fbc1b'),(116588,198,18126,NULL,18584,1,'2022-05-30 01:40:48','2022-05-30 01:40:48','aac040bc-c7e1-4143-ae0c-47f3658305c6'),(116589,69,140220,NULL,18584,1,'2022-05-30 01:40:48','2022-05-30 01:40:48','0a28cc1f-9265-4ff0-bf40-f494bdca289a'),(116590,85,140220,NULL,17964,1,'2022-05-30 01:40:48','2022-05-30 01:40:48','a5132223-5aed-406e-b04d-3d9cc91c1d5e'),(116591,85,140220,NULL,17965,2,'2022-05-30 01:40:48','2022-05-30 01:40:48','3915a4f2-33a2-4ad0-947d-b6f374955170'),(116592,85,140220,NULL,17966,3,'2022-05-30 01:40:48','2022-05-30 01:40:48','f6937657-7918-4124-83ba-3f5d122e53d6'),(116593,85,140220,NULL,17967,4,'2022-05-30 01:40:48','2022-05-30 01:40:48','3fb6fbd9-1a34-4d98-862f-44f55e637e7d'),(116594,85,140220,NULL,17968,5,'2022-05-30 01:40:48','2022-05-30 01:40:48','8ba54dad-1adc-4c52-a6e9-e5a7bda0222b'),(116595,85,140220,NULL,17969,6,'2022-05-30 01:40:48','2022-05-30 01:40:48','9de7bc29-2ada-45b2-ae24-d00868c44dd0'),(116596,85,140220,NULL,17970,7,'2022-05-30 01:40:48','2022-05-30 01:40:48','378ae893-5639-4a46-b881-1bc477df6d1b'),(116597,85,140220,NULL,17971,8,'2022-05-30 01:40:48','2022-05-30 01:40:48','94152236-2329-45da-b202-eea9c8cb5e32'),(116598,84,140220,NULL,18057,1,'2022-05-30 01:40:48','2022-05-30 01:40:48','e2603570-3368-4a40-9cbb-3aa059804753'),(116599,84,140220,NULL,38160,2,'2022-05-30 01:40:48','2022-05-30 01:40:48','3000acb1-5ede-4dc3-9e3d-d16c93d9d9ce'),(116600,198,140220,NULL,18584,1,'2022-05-30 01:40:48','2022-05-30 01:40:48','bfc79620-8c26-45b3-8d4a-a4963c0e9c35'),(116618,198,18122,NULL,19066,1,'2022-05-30 01:41:22','2022-05-30 01:41:22','92397a5a-68b7-4646-8320-5eedb0b5d41e'),(116619,79,140222,NULL,17875,1,'2022-05-30 01:41:22','2022-05-30 01:41:22','e25977fd-3cef-4f64-82d6-7967952bfd8b'),(116620,79,140222,NULL,21898,2,'2022-05-30 01:41:22','2022-05-30 01:41:22','a360adc6-f643-4081-a343-76833fcf8676'),(116621,79,140222,NULL,17934,3,'2022-05-30 01:41:22','2022-05-30 01:41:22','41c3e3cf-c230-46c6-a516-69932a3f0d45'),(116622,79,140222,NULL,1,4,'2022-05-30 01:41:22','2022-05-30 01:41:22','2aa8b99f-bdd3-4b0f-bc8e-4e718ce21f55'),(116623,79,140222,NULL,17954,5,'2022-05-30 01:41:22','2022-05-30 01:41:22','6fb73407-8c3e-410b-8277-8adc61c9c5e5'),(116624,79,140222,NULL,17956,6,'2022-05-30 01:41:22','2022-05-30 01:41:22','2eb1a1c4-4a66-4096-9c1c-40222b2a96c6'),(116625,69,140222,NULL,19066,1,'2022-05-30 01:41:22','2022-05-30 01:41:22','dfefacef-4be6-4fde-a9c7-27b029466e08'),(116626,85,140222,NULL,17964,1,'2022-05-30 01:41:22','2022-05-30 01:41:22','cab1ce1e-af17-494e-9a9a-11025d650ac2'),(116627,85,140222,NULL,17965,2,'2022-05-30 01:41:22','2022-05-30 01:41:22','beb41cba-a62c-4a49-88a5-4d8906266c4f'),(116628,85,140222,NULL,17966,3,'2022-05-30 01:41:22','2022-05-30 01:41:22','a42d5187-ac10-4fc7-b0ed-bdde4542e802'),(116629,85,140222,NULL,17967,4,'2022-05-30 01:41:22','2022-05-30 01:41:22','eca50214-54f6-492a-97ca-f158c3ed0f09'),(116630,85,140222,NULL,17968,5,'2022-05-30 01:41:22','2022-05-30 01:41:22','ea6625cf-25cb-4746-ade5-c3783ef646db'),(116631,85,140222,NULL,17969,6,'2022-05-30 01:41:22','2022-05-30 01:41:22','fd97a66e-7ab1-42b6-bcd1-ed9d86f16d7b'),(116632,85,140222,NULL,17970,7,'2022-05-30 01:41:22','2022-05-30 01:41:22','5208e6e9-d24e-4f92-a93d-c1fb85ec5e1f'),(116633,84,140222,NULL,18057,1,'2022-05-30 01:41:22','2022-05-30 01:41:22','35bc7f97-a7ed-443d-ae93-0e9079cdd309'),(116634,84,140222,NULL,38160,2,'2022-05-30 01:41:22','2022-05-30 01:41:22','10ee1c4b-1f18-4c73-aa8f-f46cd43c0ef3'),(116635,198,140222,NULL,19066,1,'2022-05-30 01:41:22','2022-05-30 01:41:22','7b0c4e0e-494c-4849-9c0e-645f214d26cb'),(116650,69,139967,NULL,139975,1,'2022-05-30 01:42:16','2022-05-30 01:42:16','6971c307-c0ac-4d03-a5a1-294a8938991a'),(116651,198,139967,NULL,139975,1,'2022-05-30 01:42:16','2022-05-30 01:42:16','b47dd304-73eb-4d49-a95a-e1bfb60b79ca'),(116652,79,140224,NULL,17934,1,'2022-05-30 01:42:16','2022-05-30 01:42:16','a5f77fba-fb49-4c21-9b01-928134e87a89'),(116653,79,140224,NULL,17875,2,'2022-05-30 01:42:16','2022-05-30 01:42:16','4567c5e7-fd35-42f1-b492-40e5f2719d55'),(116654,79,140224,NULL,17954,3,'2022-05-30 01:42:16','2022-05-30 01:42:16','632775f3-08f1-48ee-a725-84b831326111'),(116655,79,140224,NULL,17956,4,'2022-05-30 01:42:16','2022-05-30 01:42:16','6740f466-ea8c-428a-adf7-d17cbbc593d6'),(116656,69,140224,NULL,139975,1,'2022-05-30 01:42:16','2022-05-30 01:42:16','1334d87b-4a38-48bd-ba49-5f3c3911edfb'),(116657,85,140224,NULL,17964,1,'2022-05-30 01:42:16','2022-05-30 01:42:16','6c4ebf61-bc36-442a-804e-abf94921dfa6'),(116658,85,140224,NULL,17965,2,'2022-05-30 01:42:16','2022-05-30 01:42:16','b54090b3-7cb6-4986-9545-dc6e58d29a74'),(116659,85,140224,NULL,17966,3,'2022-05-30 01:42:16','2022-05-30 01:42:16','2e7bb6c7-29cd-4f00-9866-fb23438ed577'),(116660,85,140224,NULL,17967,4,'2022-05-30 01:42:16','2022-05-30 01:42:16','e06f18e6-494a-4ac2-98f6-495258a0339d'),(116661,85,140224,NULL,17968,5,'2022-05-30 01:42:16','2022-05-30 01:42:16','2ebe6b3e-2950-4cee-9826-4c017258dd33'),(116662,85,140224,NULL,17969,6,'2022-05-30 01:42:16','2022-05-30 01:42:16','2b6be902-5f7f-4293-ad78-de87465deaa6'),(116663,84,140224,NULL,18057,1,'2022-05-30 01:42:16','2022-05-30 01:42:16','1ed148bc-3232-43f3-bc2b-944d1b933ed8'),(116664,84,140224,NULL,38161,2,'2022-05-30 01:42:16','2022-05-30 01:42:16','478d581f-32dd-40c6-be09-6381bcf163ec'),(116665,198,140224,NULL,139975,1,'2022-05-30 01:42:16','2022-05-30 01:42:16','2c00b46f-59ca-408d-b9f2-e51a9222f275'),(116680,198,18109,NULL,61823,1,'2022-05-30 01:42:50','2022-05-30 01:42:50','3eefd03d-7017-43ff-8a99-5d34d57d7c71'),(116681,79,140226,NULL,17934,1,'2022-05-30 01:42:50','2022-05-30 01:42:50','8fb64df1-4552-435a-980a-b8eaa613ed8e'),(116682,79,140226,NULL,17875,2,'2022-05-30 01:42:50','2022-05-30 01:42:50','ba87d311-d446-4273-a78b-464d1281de00'),(116683,79,140226,NULL,17954,3,'2022-05-30 01:42:50','2022-05-30 01:42:50','be177aa1-13bb-42e3-a1b9-6a8d226bb442'),(116684,79,140226,NULL,17956,4,'2022-05-30 01:42:50','2022-05-30 01:42:50','0ae2e16a-fbb5-4e3c-b0a0-ca7352a01354'),(116685,69,140226,NULL,61823,1,'2022-05-30 01:42:50','2022-05-30 01:42:50','6db1d918-09d2-4203-a9aa-53ad89b8dbd7'),(116686,85,140226,NULL,17964,1,'2022-05-30 01:42:50','2022-05-30 01:42:50','241f6649-0173-4e3b-b2ed-0489a1944450'),(116687,85,140226,NULL,17965,2,'2022-05-30 01:42:50','2022-05-30 01:42:50','1a17dadb-0dc7-4783-8c3b-b4d7c30eff2a'),(116688,85,140226,NULL,17966,3,'2022-05-30 01:42:50','2022-05-30 01:42:50','ed8a40fe-09aa-42d4-89af-18e98994730d'),(116689,85,140226,NULL,17967,4,'2022-05-30 01:42:50','2022-05-30 01:42:50','662cbb73-b5a3-4e5a-a2e4-3bf478bd05c7'),(116690,85,140226,NULL,17968,5,'2022-05-30 01:42:50','2022-05-30 01:42:50','a37aea32-9472-425e-bd85-639dc94728ec'),(116691,85,140226,NULL,17969,6,'2022-05-30 01:42:50','2022-05-30 01:42:50','fd15919d-b29d-46f3-a2c9-9978659ab8e9'),(116692,84,140226,NULL,18057,1,'2022-05-30 01:42:50','2022-05-30 01:42:50','da968454-1b37-4572-a136-da8ab0b78113'),(116693,84,140226,NULL,38161,2,'2022-05-30 01:42:50','2022-05-30 01:42:50','c08db485-4f36-472e-aa2c-f4ad60dcdf59'),(116694,198,140226,NULL,61823,1,'2022-05-30 01:42:50','2022-05-30 01:42:50','ed424830-d0a8-4b54-afa0-38d79db73b01'),(116741,198,16828,NULL,16824,1,'2022-05-30 01:44:13','2022-05-30 01:44:13','a12bcf48-4dd6-4ea9-9608-1a23ca8aba6b'),(116742,79,140230,NULL,17875,1,'2022-05-30 01:44:13','2022-05-30 01:44:13','bfdea906-130e-464a-b463-0c2a978429e3'),(116743,79,140230,NULL,17899,2,'2022-05-30 01:44:13','2022-05-30 01:44:13','e4f4d96c-c220-4b5c-b2e7-eda1fb039da6'),(116744,79,140230,NULL,17934,3,'2022-05-30 01:44:13','2022-05-30 01:44:13','fbff544d-8bb2-4bb3-9066-6333911108d5'),(116745,79,140230,NULL,17941,4,'2022-05-30 01:44:13','2022-05-30 01:44:13','d6cf16cd-bd11-427e-90cd-4d6e9990d894'),(116746,79,140230,NULL,17954,5,'2022-05-30 01:44:13','2022-05-30 01:44:13','63c5635e-6e52-4f5a-beb0-6480d7c2a258'),(116747,79,140230,NULL,17996,6,'2022-05-30 01:44:13','2022-05-30 01:44:13','80796457-0410-4c6e-ab5c-ea563274283b'),(116748,69,140230,NULL,16824,1,'2022-05-30 01:44:13','2022-05-30 01:44:13','fd4b8546-8e31-4f1c-a0ee-bfe5b539729d'),(116749,85,140230,NULL,17964,1,'2022-05-30 01:44:13','2022-05-30 01:44:13','4ca87d70-93e6-4f58-a3eb-bdccb5b46e2d'),(116750,85,140230,NULL,17966,2,'2022-05-30 01:44:13','2022-05-30 01:44:13','3983671c-1d5d-4d4a-81da-42d92e94393e'),(116751,85,140230,NULL,17967,3,'2022-05-30 01:44:13','2022-05-30 01:44:13','db833e68-5088-42a8-b860-df8e48e029e7'),(116752,85,140230,NULL,17969,4,'2022-05-30 01:44:13','2022-05-30 01:44:13','2f625cb5-dde3-4fdc-9ead-b6385c84042f'),(116753,85,140230,NULL,17970,5,'2022-05-30 01:44:13','2022-05-30 01:44:13','a6c3bf9b-d2d2-430c-aa94-703541d9f655'),(116754,85,140230,NULL,17971,6,'2022-05-30 01:44:13','2022-05-30 01:44:13','44f31b6d-dfd2-455b-9ba4-2b79c5c2a1bc'),(116755,84,140230,NULL,18057,1,'2022-05-30 01:44:13','2022-05-30 01:44:13','a5c0685c-c4e3-4d37-a81c-138de41a6273'),(116756,198,140230,NULL,16824,1,'2022-05-30 01:44:13','2022-05-30 01:44:13','f5550015-ca6e-40b9-aae9-00e1910cf82a'),(116771,198,16571,NULL,16693,1,'2022-05-30 01:45:01','2022-05-30 01:45:01','1ff7a8e3-b79a-412d-b709-732b1e52f659'),(116772,79,140232,NULL,17875,1,'2022-05-30 01:45:01','2022-05-30 01:45:01','12fe57b9-dd08-4363-9bb7-e939a80f48d8'),(116773,79,140232,NULL,1,2,'2022-05-30 01:45:01','2022-05-30 01:45:01','45d88b72-08d5-459f-9ca9-67660b43805b'),(116774,79,140232,NULL,17954,3,'2022-05-30 01:45:01','2022-05-30 01:45:01','682d59a0-f60b-4805-b9f2-3e67f786b534'),(116775,79,140232,NULL,17881,4,'2022-05-30 01:45:01','2022-05-30 01:45:01','5ae112ef-057a-40fa-84c3-7bc18f891560'),(116776,79,140232,NULL,17956,5,'2022-05-30 01:45:01','2022-05-30 01:45:01','34c69e78-5feb-404c-ab11-a08f4ceb4230'),(116777,69,140232,NULL,16693,1,'2022-05-30 01:45:01','2022-05-30 01:45:01','f6f4c9a2-38a0-43c0-9837-4d5c47b47095'),(116778,85,140232,NULL,17964,1,'2022-05-30 01:45:01','2022-05-30 01:45:01','bae0f25d-a3f0-4c81-a405-37d07cbaefad'),(116779,85,140232,NULL,17965,2,'2022-05-30 01:45:01','2022-05-30 01:45:01','bfdd5bfb-7849-4cad-a3c4-9804d14cf177'),(116780,85,140232,NULL,17966,3,'2022-05-30 01:45:01','2022-05-30 01:45:01','fd4f857c-9b7f-4926-b7b0-489e47e72c0d'),(116781,85,140232,NULL,17969,4,'2022-05-30 01:45:01','2022-05-30 01:45:01','485a385d-6477-4042-9c52-3d3448d3444a'),(116782,85,140232,NULL,17970,5,'2022-05-30 01:45:01','2022-05-30 01:45:01','c84ddcef-7d4f-4e56-bd92-5b1d150ecfff'),(116783,85,140232,NULL,17971,6,'2022-05-30 01:45:01','2022-05-30 01:45:01','15208fdc-0bfa-4620-9b0c-5d685a2bef9f'),(116784,84,140232,NULL,38158,1,'2022-05-30 01:45:01','2022-05-30 01:45:01','25de267f-bd99-42f9-a1a5-99b507e68fca'),(116785,198,140232,NULL,16693,1,'2022-05-30 01:45:01','2022-05-30 01:45:01','a82db422-d5cb-4f0e-8ba9-8bf88c363f3f'),(116786,79,140233,NULL,17875,1,'2022-05-31 04:26:01','2022-05-31 04:26:01','842efdac-dab2-4319-9fbd-fba56c7ae7eb'),(116787,79,140233,NULL,17996,2,'2022-05-31 04:26:01','2022-05-31 04:26:01','e20018ad-e3f5-4758-8cb2-71d0f20d4f1b'),(116788,69,140233,NULL,140057,1,'2022-05-31 04:26:01','2022-05-31 04:26:01','160a9893-355a-4b99-927f-2e61c1c22405'),(116793,69,140060,NULL,140080,1,'2022-06-02 03:48:39','2022-06-02 03:48:39','818548c7-a3e3-4b1c-b97d-88082f92c5af'),(116794,69,140245,NULL,140080,1,'2022-06-02 03:48:39','2022-06-02 03:48:39','8eb4e999-afb4-4f56-8259-3e3e8ea9a7c8'),(116796,79,140427,NULL,17875,1,'2022-06-12 23:56:38','2022-06-12 23:56:38','5ad4d0eb-b09e-4529-a9d6-0d14a3e08603'),(116797,79,140427,NULL,17996,2,'2022-06-12 23:56:38','2022-06-12 23:56:38','73911477-cfc0-413b-bac5-371ee876682f'),(116798,69,140427,NULL,140057,1,'2022-06-12 23:56:38','2022-06-12 23:56:38','45b2008e-3c27-4b71-9439-bbc34e599fa9'),(116802,79,140516,NULL,17875,1,'2022-06-19 22:46:14','2022-06-19 22:46:14','8ccd584f-b4f2-4231-8241-41750d1ede55'),(116803,79,140516,NULL,17996,2,'2022-06-19 22:46:14','2022-06-19 22:46:14','bafec0a5-d9ff-44ca-894e-3d976f6671da'),(116804,69,140516,NULL,140057,1,'2022-06-19 22:46:14','2022-06-19 22:46:14','e300fd56-56fc-4b39-8f45-aadf3b15be92'),(116870,198,30411,NULL,28041,1,'2022-06-22 23:52:09','2022-06-22 23:52:09','d3579302-f65c-410c-b3e4-3238d457a060'),(116924,79,141486,NULL,17875,1,'2022-06-28 00:17:02','2022-06-28 00:17:02','0f88470f-5ab9-4e90-9445-a79cb4060bce'),(116925,79,141486,NULL,17954,2,'2022-06-28 00:17:02','2022-06-28 00:17:02','57cd9cf0-e085-4713-9229-436e5268e255'),(116926,79,141486,NULL,17956,3,'2022-06-28 00:17:02','2022-06-28 00:17:02','2da8f908-7027-4db8-a2d6-3fa000bc0704'),(116927,69,141486,NULL,48550,1,'2022-06-28 00:17:02','2022-06-28 00:17:02','ba31bf81-3eae-4ad4-9f5a-092128164421'),(116928,85,141486,NULL,17964,1,'2022-06-28 00:17:02','2022-06-28 00:17:02','9330adde-2614-4c6e-8194-b6f2cc985a95'),(116929,85,141486,NULL,17965,2,'2022-06-28 00:17:02','2022-06-28 00:17:02','3b450a53-d8af-4579-bc5d-18d6d7d70964'),(116930,85,141486,NULL,17966,3,'2022-06-28 00:17:02','2022-06-28 00:17:02','88890257-43b0-4ab9-af8f-c9f5e58770f5'),(116931,85,141486,NULL,17967,4,'2022-06-28 00:17:02','2022-06-28 00:17:02','3717a031-e3ee-4bcf-bb80-44925576deed'),(116932,85,141486,NULL,17968,5,'2022-06-28 00:17:02','2022-06-28 00:17:02','1b1c0f7f-e67c-400a-8046-aa186cd34418'),(116933,85,141486,NULL,17970,6,'2022-06-28 00:17:02','2022-06-28 00:17:02','5e54b9cc-a573-4926-9fbc-1b1a5d361dd3'),(116934,85,141486,NULL,17971,7,'2022-06-28 00:17:02','2022-06-28 00:17:02','239ba310-def9-453d-b5f0-ef8be9a85622'),(116935,198,141486,NULL,48550,1,'2022-06-28 00:17:02','2022-06-28 00:17:02','96e934bb-7546-4c40-97e0-17c9773b6ce5'),(116936,79,141487,NULL,17875,1,'2022-06-28 00:17:03','2022-06-28 00:17:03','12a9750a-69e8-4308-910b-fe8dec11dd0a'),(116937,79,141487,NULL,17954,2,'2022-06-28 00:17:03','2022-06-28 00:17:03','9b3defd1-5703-4e7d-90fe-350662553a9e'),(116938,79,141487,NULL,17956,3,'2022-06-28 00:17:03','2022-06-28 00:17:03','3e0883e4-9fa3-4dc4-b422-558befc567e9'),(116939,69,141487,NULL,48550,1,'2022-06-28 00:17:03','2022-06-28 00:17:03','b954aef4-0670-485e-aaf9-229723bd5bce'),(116940,85,141487,NULL,17964,1,'2022-06-28 00:17:03','2022-06-28 00:17:03','bc9fb342-be71-496e-882b-6c50ec431e6a'),(116941,85,141487,NULL,17965,2,'2022-06-28 00:17:03','2022-06-28 00:17:03','3842997a-c04f-4f1e-b1ae-adaccdf1cdbb'),(116942,85,141487,NULL,17966,3,'2022-06-28 00:17:03','2022-06-28 00:17:03','add5daa4-73b2-4e58-bfbf-8e1220c0f8f6'),(116943,85,141487,NULL,17967,4,'2022-06-28 00:17:03','2022-06-28 00:17:03','df3c08ae-073e-43ef-94c6-211b20d6e5e0'),(116944,85,141487,NULL,17968,5,'2022-06-28 00:17:03','2022-06-28 00:17:03','d15a58af-9bbe-497d-a508-7d170b2a3b41'),(116945,85,141487,NULL,17970,6,'2022-06-28 00:17:03','2022-06-28 00:17:03','a82aa845-9f36-4375-a6be-0073a0f5189a'),(116946,85,141487,NULL,17971,7,'2022-06-28 00:17:03','2022-06-28 00:17:03','537543ba-19b5-4dc4-89c7-10493496cddf'),(116947,198,141487,NULL,48550,1,'2022-06-28 00:17:03','2022-06-28 00:17:03','f75cfe1b-61f5-4515-bb4e-2305b193610d'),(116949,69,141489,NULL,17453,1,'2022-06-28 00:22:49','2022-06-28 00:22:49','2b398adc-dd5e-419c-b913-e758dcdde8dd'),(116950,69,141490,NULL,17453,1,'2022-06-28 00:23:53','2022-06-28 00:23:53','d4b47fab-2994-444c-ae0f-16e5081072e7'),(116970,69,141494,NULL,140080,1,'2022-06-28 00:39:50','2022-06-28 00:39:50','95b2488f-eafc-443a-910a-7c6d99dc4a9a'),(116972,69,141496,NULL,140080,1,'2022-06-28 00:45:37','2022-06-28 00:45:37','a86a4eae-2b0d-4377-93d7-da17223eeb16'),(117041,69,141533,NULL,141535,1,'2022-06-29 01:46:40','2022-06-29 01:46:40','ed7d222e-47bd-4ef3-a760-e194f196705a'),(117046,184,141533,NULL,141538,1,'2022-06-29 01:56:55','2022-06-29 01:56:55','457bbaa8-353b-4256-9301-0e19046df100'),(117047,198,141533,NULL,141535,1,'2022-06-29 01:56:55','2022-06-29 01:56:55','350cf192-9ba2-4562-9ba6-e48b0111e9ed'),(117066,69,141493,NULL,141522,1,'2022-06-29 02:23:00','2022-06-29 02:23:00','8e537aab-f4be-422f-8a90-ff82566a10a8'),(117067,198,141493,NULL,141522,1,'2022-06-29 02:23:00','2022-06-29 02:23:00','fa2f6bdc-1930-454c-a789-1902d67fe628'),(117068,69,141550,NULL,141522,1,'2022-06-29 02:23:00','2022-06-29 02:23:00','320a7068-20c1-4d99-a1e4-4b9c81e07fa8'),(117069,198,141550,NULL,141522,1,'2022-06-29 02:23:00','2022-06-29 02:23:00','c5918ea4-9da9-413f-ab17-f64070731b2a'),(117072,69,141551,NULL,141522,1,'2022-06-29 02:23:52','2022-06-29 02:23:52','2c449351-5ddb-4545-a839-d837babe3d10'),(117073,198,141551,NULL,141522,1,'2022-06-29 02:23:52','2022-06-29 02:23:52','3e0a5c3b-995b-462d-bdc1-ca4fe527af32'),(117086,79,141553,NULL,17875,1,'2022-06-29 02:24:04','2022-06-29 02:24:04','b83979be-d6e9-480d-b6bf-d8c43b02a223'),(117087,79,141553,NULL,17954,2,'2022-06-29 02:24:04','2022-06-29 02:24:04','de94628e-6952-43d0-ac06-8353d48ce869'),(117088,79,141553,NULL,17956,3,'2022-06-29 02:24:04','2022-06-29 02:24:04','487e5dce-30cc-471a-9a07-b0aece0895d2'),(117089,69,141553,NULL,48550,1,'2022-06-29 02:24:04','2022-06-29 02:24:04','76e0b638-4b6c-4311-a163-d9c443f79bf0'),(117090,85,141553,NULL,17964,1,'2022-06-29 02:24:04','2022-06-29 02:24:04','7c334325-36af-4ac1-a07a-79113b14fe60'),(117091,85,141553,NULL,17965,2,'2022-06-29 02:24:04','2022-06-29 02:24:04','3fe1691b-8c66-4a1f-b0d4-eb24d59336d1'),(117092,85,141553,NULL,17966,3,'2022-06-29 02:24:04','2022-06-29 02:24:04','b4b1145a-46e2-4d7b-8bb1-59f25c01c73c'),(117093,85,141553,NULL,17967,4,'2022-06-29 02:24:04','2022-06-29 02:24:04','70e41aa7-e80a-4b89-a205-5f52cc99768a'),(117094,85,141553,NULL,17968,5,'2022-06-29 02:24:04','2022-06-29 02:24:04','0c9bce74-f7e2-4b71-8ebf-ad075b6c45bb'),(117095,85,141553,NULL,17970,6,'2022-06-29 02:24:04','2022-06-29 02:24:04','c93d719f-7378-4034-bf69-80901c55a3a6'),(117096,85,141553,NULL,17971,7,'2022-06-29 02:24:04','2022-06-29 02:24:04','3cca7f89-0e5e-4cbc-8d49-ac1cc31cdd44'),(117097,198,141553,NULL,48550,1,'2022-06-29 02:24:04','2022-06-29 02:24:04','03585f01-6fa7-4bd1-beb9-58abdb4e1a07'),(117098,69,141554,NULL,140080,1,'2022-06-29 02:24:20','2022-06-29 02:24:20','e4f2dc28-01bc-4897-8b2d-e10cb9e47371'),(117101,69,141556,NULL,141522,1,'2022-06-29 02:24:35','2022-06-29 02:24:35','0f7b3ee7-fa0f-4701-8b36-9e25c9781698'),(117102,198,141556,NULL,141522,1,'2022-06-29 02:24:35','2022-06-29 02:24:35','4527953f-22f6-4541-aa2a-40520273e96b'),(117105,69,141558,NULL,141522,1,'2022-06-29 03:24:16','2022-06-29 03:24:16','929f2cca-93c6-4c24-989e-6788ee5eb917'),(117106,198,141558,NULL,141522,1,'2022-06-29 03:24:16','2022-06-29 03:24:16','147a24b1-d867-4f5f-88ff-d940d6233dde'),(117109,69,141560,NULL,141522,1,'2022-06-29 03:26:33','2022-06-29 03:26:33','d729705e-e45d-4a53-bd35-d79d30d80c16'),(117110,198,141560,NULL,141522,1,'2022-06-29 03:26:33','2022-06-29 03:26:33','e82411f1-0316-45f8-87bc-d1586bdebe59'),(117113,69,141562,NULL,141522,1,'2022-06-29 03:36:53','2022-06-29 03:36:53','7eb34059-47ba-4bdd-a883-87a751034ba4'),(117114,198,141562,NULL,141522,1,'2022-06-29 03:36:53','2022-06-29 03:36:53','e71bf3c6-a2fa-42ac-b524-2f94c50047e2'),(117126,69,141567,NULL,141522,1,'2022-06-29 04:05:49','2022-06-29 04:05:49','1e8950d4-1267-42ca-b6be-4c3301ec52b8'),(117127,198,141567,NULL,141522,1,'2022-06-29 04:05:49','2022-06-29 04:05:49','ad8c1b01-4853-43fa-9685-a7f2aedb2663'),(117130,69,141569,NULL,141522,1,'2022-06-29 04:06:22','2022-06-29 04:06:22','bb39b77f-1cfc-475d-803a-df5754db0213'),(117131,198,141569,NULL,141522,1,'2022-06-29 04:06:22','2022-06-29 04:06:22','be27256c-866c-4f0c-8073-eaa2db64c140'),(117135,184,141571,NULL,17167,1,'2022-06-29 04:08:55','2022-06-29 04:08:55','aa58dd42-6b31-448f-89b2-ffb49808612b'),(117136,69,141571,NULL,17167,1,'2022-06-29 04:08:55','2022-06-29 04:08:55','0fe1b6f1-4bb2-47be-b0ec-41cfdb5c5e5e'),(117137,198,141571,NULL,17167,1,'2022-06-29 04:08:55','2022-06-29 04:08:55','0dfcbfe4-cf2e-4ed4-bfb0-2d1051ff8036'),(117140,69,141573,NULL,141522,1,'2022-06-29 04:11:15','2022-06-29 04:11:15','62ed0ff9-557a-4a9d-83f2-9881427ec7ae'),(117141,198,141573,NULL,141522,1,'2022-06-29 04:11:15','2022-06-29 04:11:15','a59cd5f1-6a08-4483-8c56-920f30d8bf84'),(117142,69,141574,NULL,141522,1,'2022-06-29 06:01:22','2022-06-29 06:01:22','a00fb6b0-d98e-405e-b9ed-511712976641'),(117143,198,141574,NULL,141522,1,'2022-06-29 06:01:22','2022-06-29 06:01:22','b0a50c90-c29d-4a1b-bf65-fcfb51bc4115'),(117147,184,141576,NULL,17167,1,'2022-06-30 03:06:09','2022-06-30 03:06:09','36aaf97c-2ace-4a9b-a656-9a60638b3b5e'),(117148,69,141576,NULL,17167,1,'2022-06-30 03:06:09','2022-06-30 03:06:09','80d01019-c430-4b34-a4ef-c203bea967d3'),(117149,198,141576,NULL,17167,1,'2022-06-30 03:06:09','2022-06-30 03:06:09','3ec67f05-043e-427f-b151-345e6ce10252'),(117153,184,141578,NULL,17167,1,'2022-06-30 03:06:50','2022-06-30 03:06:50','38539989-73c7-4b5a-acbe-4b52f64d9fc7'),(117154,69,141578,NULL,17167,1,'2022-06-30 03:06:50','2022-06-30 03:06:50','05c16adb-5b01-4b03-8fd3-754cd65abf4d'),(117155,198,141578,NULL,17167,1,'2022-06-30 03:06:50','2022-06-30 03:06:50','a910e0a8-e24d-4cfd-b842-4b393a88090e'),(117165,69,141582,NULL,141535,1,'2022-06-30 05:31:01','2022-06-30 05:31:01','bdac2577-da7c-4b25-96b3-6449ea78c58a'),(117166,198,141582,NULL,141535,1,'2022-06-30 05:31:01','2022-06-30 05:31:01','c419d1b0-c0c2-494a-85d0-54eafd4c5713'),(117174,184,141582,NULL,141538,1,'2022-06-30 05:32:35','2022-06-30 05:32:35','fede800c-5837-4cb3-8c24-2d760ad15a93'),(117175,79,141586,NULL,17881,1,'2022-07-04 01:16:48','2022-07-04 01:16:48','ec9c9268-902e-4c4c-aa52-c216f461522e'),(117176,79,141586,NULL,1,2,'2022-07-04 01:16:48','2022-07-04 01:16:48','d857bc6b-1d63-4eab-ae86-a6278601e878'),(117177,79,141586,NULL,17954,3,'2022-07-04 01:16:48','2022-07-04 01:16:48','34288725-8a50-4a39-a3f4-bdc5965c94c3'),(117178,69,141586,NULL,21979,1,'2022-07-04 01:16:48','2022-07-04 01:16:48','ec1edb9a-3569-4541-8b1d-9fb8789f6c54'),(117179,85,141586,NULL,17964,1,'2022-07-04 01:16:48','2022-07-04 01:16:48','10752572-ed3b-4826-918e-c74322c6fe5c'),(117180,85,141586,NULL,17965,2,'2022-07-04 01:16:48','2022-07-04 01:16:48','5b5531d9-0929-45e5-b8dd-0cf8d3a541a1'),(117181,85,141586,NULL,17968,3,'2022-07-04 01:16:48','2022-07-04 01:16:48','f0eaf073-a0d2-4ca7-be1a-65603bbd4ef8'),(117182,85,141586,NULL,17970,4,'2022-07-04 01:16:48','2022-07-04 01:16:48','a0962cee-027b-400c-b6e7-a84c85b28d0a'),(117183,85,141586,NULL,17971,5,'2022-07-04 01:16:48','2022-07-04 01:16:48','9addb759-9dc2-46ec-a95a-e298d8de6688'),(117184,84,141586,NULL,18057,1,'2022-07-04 01:16:48','2022-07-04 01:16:48','00b7d210-f1bf-4125-a30f-53e78da74490'),(117185,84,141586,NULL,38160,2,'2022-07-04 01:16:48','2022-07-04 01:16:48','ab02a824-e246-4fea-b999-db69d06e0fd1'),(117186,198,141586,NULL,21979,1,'2022-07-04 01:16:48','2022-07-04 01:16:48','a2dd387e-d501-4a50-bd7c-51f8de8082ef'),(117187,79,141587,NULL,17881,1,'2022-07-04 01:16:49','2022-07-04 01:16:49','d61d542e-3c4e-474f-b82a-e05b2754d073'),(117188,79,141587,NULL,1,2,'2022-07-04 01:16:49','2022-07-04 01:16:49','fc16166d-8716-430e-af89-00561ceb2c5e'),(117189,79,141587,NULL,17954,3,'2022-07-04 01:16:49','2022-07-04 01:16:49','6c6a3a07-ca57-4890-92a3-5bfc1d393ef8'),(117190,69,141587,NULL,21979,1,'2022-07-04 01:16:49','2022-07-04 01:16:49','1aa686e9-02d6-4afe-93a6-c930bef9e2e3'),(117191,85,141587,NULL,17964,1,'2022-07-04 01:16:49','2022-07-04 01:16:49','7f49857b-a518-4817-bf34-fc95e8d00cd3'),(117192,85,141587,NULL,17965,2,'2022-07-04 01:16:49','2022-07-04 01:16:49','b7a59719-d1dd-4c4d-bb89-f8c1ff25f105'),(117193,85,141587,NULL,17968,3,'2022-07-04 01:16:49','2022-07-04 01:16:49','b86c9889-5b2c-4633-bb2c-2e893e63fb6c'),(117194,85,141587,NULL,17970,4,'2022-07-04 01:16:49','2022-07-04 01:16:49','11a567ad-b0b9-41d7-a96c-1dbf41c829e4'),(117195,85,141587,NULL,17971,5,'2022-07-04 01:16:49','2022-07-04 01:16:49','91ef2392-5d1b-4dec-a633-102a8a1545b1'),(117196,84,141587,NULL,18057,1,'2022-07-04 01:16:49','2022-07-04 01:16:49','f7513a82-31bc-4db2-97f3-126b218c351a'),(117197,84,141587,NULL,38160,2,'2022-07-04 01:16:49','2022-07-04 01:16:49','a2d87732-0c58-46b1-9b65-b303d79ce756'),(117198,198,141587,NULL,21979,1,'2022-07-04 01:16:49','2022-07-04 01:16:49','b47f3cd2-6b78-471b-b191-8a673dd10611'),(117211,79,141589,NULL,17881,1,'2022-07-04 01:22:26','2022-07-04 01:22:26','20611fe1-d4dc-41b7-a0c6-4a1597711ac1'),(117212,79,141589,NULL,1,2,'2022-07-04 01:22:26','2022-07-04 01:22:26','eea023f9-0be4-4708-a58b-d67aeb5184ea'),(117213,79,141589,NULL,17954,3,'2022-07-04 01:22:26','2022-07-04 01:22:26','5a0a2256-d5b0-4a8e-8256-49d1d0236695'),(117214,85,141589,NULL,17964,1,'2022-07-04 01:22:26','2022-07-04 01:22:26','281a26bf-6552-4600-97c9-ec6166fed866'),(117215,85,141589,NULL,17965,2,'2022-07-04 01:22:26','2022-07-04 01:22:26','1b6b6312-ed45-47fc-9575-3808730953c0'),(117216,85,141589,NULL,17968,3,'2022-07-04 01:22:26','2022-07-04 01:22:26','63f26a88-ff7d-47ff-a66b-6e57ffcb5f92'),(117217,85,141589,NULL,17970,4,'2022-07-04 01:22:26','2022-07-04 01:22:26','1b96cea0-96d1-4fcf-a00f-5e04291c5544'),(117218,85,141589,NULL,17971,5,'2022-07-04 01:22:26','2022-07-04 01:22:26','b3195d8c-3c33-4d67-a639-a00ad3bbcc93'),(117219,84,141589,NULL,18057,1,'2022-07-04 01:22:26','2022-07-04 01:22:26','7c074bcf-cf30-49d5-9604-e4f1326f5a2b'),(117220,84,141589,NULL,38160,2,'2022-07-04 01:22:26','2022-07-04 01:22:26','7aba8e47-5c6d-45d2-9436-22f34f51eb85'),(117221,198,141589,NULL,21979,1,'2022-07-04 01:22:26','2022-07-04 01:22:26','869dd295-d14a-49e7-a265-430e16028af5'),(117235,79,141592,NULL,17881,1,'2022-07-04 01:25:07','2022-07-04 01:25:07','ef60f81b-8836-41ec-9f06-fbebfba2f660'),(117236,79,141592,NULL,1,2,'2022-07-04 01:25:07','2022-07-04 01:25:07','6bca0178-354d-421a-be05-68d14d2bc259'),(117237,79,141592,NULL,17954,3,'2022-07-04 01:25:07','2022-07-04 01:25:07','d920f162-937e-4dd3-a6eb-2a3ee47de0cc'),(117238,85,141592,NULL,17964,1,'2022-07-04 01:25:07','2022-07-04 01:25:07','b27bfbea-10a5-4969-9958-73dc3e715a4d'),(117239,85,141592,NULL,17965,2,'2022-07-04 01:25:07','2022-07-04 01:25:07','b779205f-f6f5-4956-a9a4-064ef451a579'),(117240,85,141592,NULL,17968,3,'2022-07-04 01:25:07','2022-07-04 01:25:07','af0e08b3-1f84-468e-b66c-ba3f500bcf96'),(117241,85,141592,NULL,17970,4,'2022-07-04 01:25:07','2022-07-04 01:25:07','cfe364b7-f195-4f6b-a8c1-e1329de3acd8'),(117242,85,141592,NULL,17971,5,'2022-07-04 01:25:07','2022-07-04 01:25:07','ba75b209-d490-4c5e-9c86-745438ab0538'),(117243,84,141592,NULL,18057,1,'2022-07-04 01:25:07','2022-07-04 01:25:07','6c430e76-601f-4ea1-b021-61f7125b2e1e'),(117244,84,141592,NULL,38160,2,'2022-07-04 01:25:07','2022-07-04 01:25:07','a2d80daf-544c-4448-81cf-ab1669791ea0'),(117245,198,141592,NULL,21979,1,'2022-07-04 01:25:07','2022-07-04 01:25:07','0320f84f-81dc-407d-9de4-033cd15ee406'),(117259,79,141597,NULL,17881,1,'2022-07-04 07:06:50','2022-07-04 07:06:50','10aa8b47-39a6-46ba-921f-c514545c98c3'),(117260,79,141597,NULL,1,2,'2022-07-04 07:06:50','2022-07-04 07:06:50','b4accea5-c321-42c3-a8ae-41c2053d85e6'),(117261,79,141597,NULL,17954,3,'2022-07-04 07:06:50','2022-07-04 07:06:50','ee63df30-c9db-47d8-ac43-e3976c667780'),(117262,69,141597,NULL,141596,1,'2022-07-04 07:06:50','2022-07-04 07:06:50','367beb9a-30b8-4fba-ad66-4e6c02ee200b'),(117263,85,141597,NULL,17964,1,'2022-07-04 07:06:50','2022-07-04 07:06:50','2ca157fd-0c20-464b-8369-c4a5d1417a16'),(117264,85,141597,NULL,17965,2,'2022-07-04 07:06:50','2022-07-04 07:06:50','5743e3f7-b7dd-4a31-a897-b115d8827542'),(117265,85,141597,NULL,17968,3,'2022-07-04 07:06:50','2022-07-04 07:06:50','d9f5c80f-e50e-4714-a385-c300efe2f988'),(117266,85,141597,NULL,17970,4,'2022-07-04 07:06:50','2022-07-04 07:06:50','984957e9-7aea-4468-b78d-fcb98840769c'),(117267,85,141597,NULL,17971,5,'2022-07-04 07:06:50','2022-07-04 07:06:50','a180bcee-1bcf-4dfc-937e-c33e96e021c5'),(117268,84,141597,NULL,18057,1,'2022-07-04 07:06:50','2022-07-04 07:06:50','7440d30c-af76-4932-9ec6-d1d68e217237'),(117269,84,141597,NULL,38160,2,'2022-07-04 07:06:50','2022-07-04 07:06:50','81b625f2-2795-42ae-8e08-ceed5743113c'),(117270,198,141597,NULL,21979,1,'2022-07-04 07:06:50','2022-07-04 07:06:50','06849018-3708-4b77-a1bc-14644a61aabc'),(117283,79,141600,NULL,17881,1,'2022-07-04 07:10:55','2022-07-04 07:10:55','6cd0f5d0-1392-4f86-8faf-32bbab69d5f7'),(117284,79,141600,NULL,1,2,'2022-07-04 07:10:55','2022-07-04 07:10:55','370f4ec9-9db1-45e9-b8e2-418ee053967a'),(117285,79,141600,NULL,17954,3,'2022-07-04 07:10:55','2022-07-04 07:10:55','b64ea9ca-3bed-42ae-921f-46c12dc2e611'),(117286,69,141600,NULL,141596,1,'2022-07-04 07:10:55','2022-07-04 07:10:55','4df82a89-4632-4ed3-b70a-95f6ca2744c3'),(117287,85,141600,NULL,17964,1,'2022-07-04 07:10:55','2022-07-04 07:10:55','f85eed79-e691-4ecc-8392-9dcaaa3bfe65'),(117288,85,141600,NULL,17965,2,'2022-07-04 07:10:55','2022-07-04 07:10:55','6dd448ac-2cb5-4244-99cc-c092068e6cb1'),(117289,85,141600,NULL,17968,3,'2022-07-04 07:10:55','2022-07-04 07:10:55','92b8dc82-e477-4ef2-99ba-dfff1733a7fa'),(117290,85,141600,NULL,17970,4,'2022-07-04 07:10:55','2022-07-04 07:10:55','2f449a00-581b-4401-929a-55922562a50b'),(117291,85,141600,NULL,17971,5,'2022-07-04 07:10:55','2022-07-04 07:10:55','78966ac6-068a-4564-8cc2-3f220d5263a8'),(117292,84,141600,NULL,18057,1,'2022-07-04 07:10:55','2022-07-04 07:10:55','f788cabe-dce4-494c-a6b4-b3851d191a6d'),(117293,84,141600,NULL,38160,2,'2022-07-04 07:10:55','2022-07-04 07:10:55','6568ceb8-84dd-4fe4-95de-831e4ddbfe52'),(117294,198,141600,NULL,21979,1,'2022-07-04 07:10:55','2022-07-04 07:10:55','5c166ae4-cac1-4005-ae02-93faf29401d0'),(117307,79,141603,NULL,17881,1,'2022-07-04 07:19:08','2022-07-04 07:19:08','ec12e502-7ccf-49ac-ab77-976c338b8544'),(117308,79,141603,NULL,1,2,'2022-07-04 07:19:08','2022-07-04 07:19:08','950e3e7b-14ab-48a8-a506-f1f34b6ee53d'),(117309,79,141603,NULL,17954,3,'2022-07-04 07:19:08','2022-07-04 07:19:08','c6687c99-bf0e-4343-8f09-b9174a77724c'),(117310,69,141603,NULL,141596,1,'2022-07-04 07:19:08','2022-07-04 07:19:08','c55b1437-646c-4287-be4b-45e6de7c65e3'),(117311,85,141603,NULL,17964,1,'2022-07-04 07:19:08','2022-07-04 07:19:08','4f66dfee-2c8e-46b8-8b27-d3e22fff8ad6'),(117312,85,141603,NULL,17965,2,'2022-07-04 07:19:08','2022-07-04 07:19:08','821211ed-84f6-4cfe-9d27-08a479fe33b4'),(117313,85,141603,NULL,17968,3,'2022-07-04 07:19:08','2022-07-04 07:19:08','690b5ea4-9a59-45fc-9505-8cd02915dabc'),(117314,85,141603,NULL,17970,4,'2022-07-04 07:19:08','2022-07-04 07:19:08','7c04bdc7-088a-46dc-8854-f912aadb730c'),(117315,85,141603,NULL,17971,5,'2022-07-04 07:19:08','2022-07-04 07:19:08','56b7c29f-fe25-4ebf-b7c8-b0b0a7422354'),(117316,84,141603,NULL,18057,1,'2022-07-04 07:19:08','2022-07-04 07:19:08','3201a9e7-78d9-4e39-8f64-99e3bd885824'),(117317,84,141603,NULL,38160,2,'2022-07-04 07:19:08','2022-07-04 07:19:08','8a188979-5bc9-4ac4-9c71-313eb3b167a0'),(117318,198,141603,NULL,21979,1,'2022-07-04 07:19:08','2022-07-04 07:19:08','f43b9a97-c8af-4a33-8286-353a2b92c5cf'),(117319,79,141604,NULL,17881,1,'2022-07-04 07:19:20','2022-07-04 07:19:20','2c16af2b-23b6-4d01-8e6d-78e3409b6189'),(117320,79,141604,NULL,1,2,'2022-07-04 07:19:20','2022-07-04 07:19:20','5ab83f88-aab3-409c-888b-ea01dc4e816a'),(117321,79,141604,NULL,17954,3,'2022-07-04 07:19:20','2022-07-04 07:19:20','6b619a72-336f-442e-9b6a-521af21214b9'),(117322,69,141604,NULL,141596,1,'2022-07-04 07:19:20','2022-07-04 07:19:20','a7b6ba9a-0809-4e79-99e1-9dc083d3d8fe'),(117323,85,141604,NULL,17964,1,'2022-07-04 07:19:20','2022-07-04 07:19:20','61b30c7d-dda7-4566-9281-b6caca6f7ab0'),(117324,85,141604,NULL,17965,2,'2022-07-04 07:19:20','2022-07-04 07:19:20','80d6ac5f-6b91-4dd9-bbb8-4911d6b5b92e'),(117325,85,141604,NULL,17968,3,'2022-07-04 07:19:20','2022-07-04 07:19:20','8de38011-602f-4b44-96bb-a59e04626785'),(117326,85,141604,NULL,17970,4,'2022-07-04 07:19:20','2022-07-04 07:19:20','c78a22d4-3ecb-4e20-9192-f4aa549d1dcd'),(117327,85,141604,NULL,17971,5,'2022-07-04 07:19:20','2022-07-04 07:19:20','d0453d85-2250-4788-b759-ae8d919f388c'),(117328,84,141604,NULL,18057,1,'2022-07-04 07:19:20','2022-07-04 07:19:20','34de0691-25c6-494f-83fa-563afd9f4c6e'),(117329,84,141604,NULL,38160,2,'2022-07-04 07:19:20','2022-07-04 07:19:20','07106267-8a10-4b52-90e4-09f1f3073acc'),(117330,198,141604,NULL,21979,1,'2022-07-04 07:19:20','2022-07-04 07:19:20','34446a49-8fe3-4e1e-89e8-34bfde69ab4c'),(117343,79,141606,NULL,17881,1,'2022-07-04 07:31:23','2022-07-04 07:31:23','4181561d-b50a-4a93-9ccf-2d3a1de0f903'),(117344,79,141606,NULL,1,2,'2022-07-04 07:31:23','2022-07-04 07:31:23','70edbfbf-8b01-45a0-9e05-4c2356f4857e'),(117345,79,141606,NULL,17954,3,'2022-07-04 07:31:23','2022-07-04 07:31:23','79b05614-970f-4101-aa48-25264926b591'),(117346,69,141606,NULL,141596,1,'2022-07-04 07:31:23','2022-07-04 07:31:23','ecc79f97-d766-4268-adec-b3371e5a5f0c'),(117347,85,141606,NULL,17964,1,'2022-07-04 07:31:23','2022-07-04 07:31:23','cf455fb8-7c78-4818-bbc0-efa605c0f3a3'),(117348,85,141606,NULL,17965,2,'2022-07-04 07:31:23','2022-07-04 07:31:23','b5180479-b2ec-4c45-9b4c-d41645a3df34'),(117349,85,141606,NULL,17968,3,'2022-07-04 07:31:23','2022-07-04 07:31:23','2a72aa4d-e158-4f44-a693-62b7ea5b34cb'),(117350,85,141606,NULL,17970,4,'2022-07-04 07:31:23','2022-07-04 07:31:23','bafb920d-738b-47d3-a19f-1ea9c3f86aa2'),(117351,85,141606,NULL,17971,5,'2022-07-04 07:31:23','2022-07-04 07:31:23','6e5b6ffe-71c2-468f-8303-dbc801108a86'),(117352,84,141606,NULL,18057,1,'2022-07-04 07:31:23','2022-07-04 07:31:23','8f620943-148c-4635-96ad-04b361626be1'),(117353,84,141606,NULL,38160,2,'2022-07-04 07:31:23','2022-07-04 07:31:23','59221408-be0a-4a46-bed7-4ccc331be1ba'),(117354,198,141606,NULL,21979,1,'2022-07-04 07:31:23','2022-07-04 07:31:23','9ac00c33-7c94-4412-be55-08d3395c603c'),(117355,69,141607,NULL,17453,1,'2022-07-05 05:41:43','2022-07-05 05:41:43','ad53e757-5b4b-4ddb-a8e0-52dabe519d06'),(117356,69,141608,NULL,141522,1,'2022-07-05 05:49:47','2022-07-05 05:49:47','ce52ee41-864d-49e2-8f81-72b760f0c611'),(117357,198,141608,NULL,141522,1,'2022-07-05 05:49:47','2022-07-05 05:49:47','705a8a02-6ff6-429a-ac87-73ffbd605b83'),(117360,69,141610,NULL,141522,1,'2022-07-07 02:07:42','2022-07-07 02:07:42','b4081986-4731-4e80-9ef7-960f66694a14'),(117361,198,141610,NULL,141522,1,'2022-07-07 02:07:42','2022-07-07 02:07:42','e55b834a-6cfa-4fd4-93ef-87c9a008c114'),(117364,69,141612,NULL,141522,1,'2022-07-07 02:12:54','2022-07-07 02:12:54','e26ef1ca-70b3-4529-beca-873b098d0777'),(117365,198,141612,NULL,141522,1,'2022-07-07 02:12:54','2022-07-07 02:12:54','1e4e2281-f594-4451-b018-ad2e99b5c365'),(117378,79,141614,NULL,17881,1,'2022-07-07 02:20:26','2022-07-07 02:20:26','940b226d-acfa-43b8-96ec-406cfc3165d5'),(117379,79,141614,NULL,1,2,'2022-07-07 02:20:26','2022-07-07 02:20:26','259c99e1-0e96-4615-97fc-666969431d72'),(117380,79,141614,NULL,17954,3,'2022-07-07 02:20:26','2022-07-07 02:20:26','2965078a-e58f-46a4-90d5-dea8f8285ef5'),(117381,69,141614,NULL,141596,1,'2022-07-07 02:20:26','2022-07-07 02:20:26','fe66c989-bfd5-4829-829d-c6224d063079'),(117382,85,141614,NULL,17964,1,'2022-07-07 02:20:26','2022-07-07 02:20:26','f3de27dc-5fc4-4f41-b863-2e1c3c58db02'),(117383,85,141614,NULL,17965,2,'2022-07-07 02:20:26','2022-07-07 02:20:26','7d21421f-8528-4ea1-be86-3c441c0ea975'),(117384,85,141614,NULL,17968,3,'2022-07-07 02:20:26','2022-07-07 02:20:26','8dc5ae23-7b8b-4cd7-9617-12f07e4d1bbc'),(117385,85,141614,NULL,17970,4,'2022-07-07 02:20:26','2022-07-07 02:20:26','2ed0e70a-ad2e-405c-9e51-2e57a5b1ec5e'),(117386,85,141614,NULL,17971,5,'2022-07-07 02:20:26','2022-07-07 02:20:26','cd39d016-ef80-4e96-96ce-d2c353305625'),(117387,84,141614,NULL,18057,1,'2022-07-07 02:20:26','2022-07-07 02:20:26','b7412a87-4258-4b91-a449-9a52adb0841c'),(117388,84,141614,NULL,38160,2,'2022-07-07 02:20:26','2022-07-07 02:20:26','b9cbd3dd-60de-4d5b-a35e-a02526b30229'),(117389,198,141614,NULL,21979,1,'2022-07-07 02:20:26','2022-07-07 02:20:26','216cfe2a-0538-4209-8c06-ca77607567e3'),(117402,69,141625,NULL,17453,1,'2022-07-11 01:48:54','2022-07-11 01:48:54','bef291dc-4f71-45e6-917d-a60147f2c814'),(117415,79,141629,NULL,17881,1,'2022-07-13 04:32:08','2022-07-13 04:32:08','6b17130a-1c86-45fa-b60e-4c28df2b72d0'),(117416,79,141629,NULL,1,2,'2022-07-13 04:32:08','2022-07-13 04:32:08','11ce0674-1e52-46cc-8b13-a0acf099405a'),(117417,79,141629,NULL,17954,3,'2022-07-13 04:32:08','2022-07-13 04:32:08','20518c6e-218f-4a8a-8fdd-57bd1b80237d'),(117418,69,141629,NULL,141596,1,'2022-07-13 04:32:08','2022-07-13 04:32:08','831f2c2c-d76a-41ae-b202-ccde83375362'),(117419,85,141629,NULL,17964,1,'2022-07-13 04:32:08','2022-07-13 04:32:08','a167a763-15de-4529-9733-838d25d9700c'),(117420,85,141629,NULL,17965,2,'2022-07-13 04:32:08','2022-07-13 04:32:08','369834e8-d2c1-4139-be57-397f78ced928'),(117421,85,141629,NULL,17968,3,'2022-07-13 04:32:08','2022-07-13 04:32:08','7f2174a0-a1b1-46f4-8636-1111fe8f5b95'),(117422,85,141629,NULL,17970,4,'2022-07-13 04:32:08','2022-07-13 04:32:08','760a8efd-83e5-40ba-890a-13d37ea8eef3'),(117423,85,141629,NULL,17971,5,'2022-07-13 04:32:08','2022-07-13 04:32:08','14d9be5f-861a-4cf2-affe-079454a4d88f'),(117424,84,141629,NULL,18057,1,'2022-07-13 04:32:08','2022-07-13 04:32:08','f89b3d0e-3251-4629-8b9c-fab130dd5416'),(117425,84,141629,NULL,38160,2,'2022-07-13 04:32:08','2022-07-13 04:32:08','a3104551-1a21-412f-a934-7a88753c3643'),(117426,198,141629,NULL,21979,1,'2022-07-13 04:32:08','2022-07-13 04:32:08','78e28d81-3f31-45d1-a9f8-2dec57987c59'),(117441,69,17650,NULL,141632,1,'2022-07-18 03:34:46','2022-07-18 03:34:46','fc500bab-0ab6-4087-a055-9ee7032df2da'),(117442,69,141633,NULL,141632,1,'2022-07-18 03:34:46','2022-07-18 03:34:46','b194bc81-cb66-45dd-a123-2d1ed303171a'),(117444,69,141635,NULL,141632,1,'2022-07-18 04:21:30','2022-07-18 04:21:30','fc54d281-fff7-4a31-b02c-c6843c9c627a'),(117446,69,141637,NULL,141632,1,'2022-07-18 04:21:58','2022-07-18 04:21:58','e5695955-fcd0-4b18-8463-5def956eff96'),(117507,79,141662,NULL,17934,1,'2022-07-26 00:49:16','2022-07-26 00:49:16','44099094-8200-4096-838a-c17b5da64894'),(117508,79,141662,NULL,17875,2,'2022-07-26 00:49:16','2022-07-26 00:49:16','6f08fa3a-2d29-4b42-8da7-d86725604a51'),(117509,79,141662,NULL,17954,3,'2022-07-26 00:49:16','2022-07-26 00:49:16','de09edd3-4758-4a98-b579-a2765a7ce163'),(117510,79,141662,NULL,17956,4,'2022-07-26 00:49:16','2022-07-26 00:49:16','090b493a-c56a-4b1c-b10e-19972bb88934'),(117511,69,141662,NULL,140086,1,'2022-07-26 00:49:16','2022-07-26 00:49:16','78d69a9d-cdd6-460f-8ec6-30246c5d8727'),(117512,85,141662,NULL,17964,1,'2022-07-26 00:49:16','2022-07-26 00:49:16','f654a935-64a1-44aa-a8bb-ae68cb4f4133'),(117513,85,141662,NULL,17965,2,'2022-07-26 00:49:16','2022-07-26 00:49:16','1e84fec3-f456-48fd-9162-0f00d83669e9'),(117514,85,141662,NULL,17966,3,'2022-07-26 00:49:16','2022-07-26 00:49:16','31ad59f3-82d1-478e-b8cb-f7db0f25059a'),(117515,85,141662,NULL,17967,4,'2022-07-26 00:49:16','2022-07-26 00:49:16','a01d3261-dc57-4628-b0cc-bf22df3a9fbb'),(117516,85,141662,NULL,17968,5,'2022-07-26 00:49:16','2022-07-26 00:49:16','2e33014c-507c-4250-a225-72187e6a3b73'),(117517,85,141662,NULL,17969,6,'2022-07-26 00:49:16','2022-07-26 00:49:16','2313ac2f-5013-4243-8352-ef4b40c21741'),(117518,84,141662,NULL,18057,1,'2022-07-26 00:49:16','2022-07-26 00:49:16','803dbee7-7e83-4af6-abb1-f1ba38b82737'),(117519,84,141662,NULL,38161,2,'2022-07-26 00:49:16','2022-07-26 00:49:16','19c868bf-7c3d-4fce-9434-45367ab33269'),(117520,198,141662,NULL,140086,1,'2022-07-26 00:49:16','2022-07-26 00:49:16','633e6e5b-2653-4053-a58c-475321358b73'),(117521,79,141663,NULL,17934,1,'2022-07-26 00:49:17','2022-07-26 00:49:17','0cd3bfd7-995b-470d-a5e6-6d1012e7112b'),(117522,79,141663,NULL,17875,2,'2022-07-26 00:49:17','2022-07-26 00:49:17','d53bdf95-def4-498f-86a0-ae9b748ad940'),(117523,79,141663,NULL,17954,3,'2022-07-26 00:49:17','2022-07-26 00:49:17','6b6a84af-e20c-421c-8bed-903706b13707'),(117524,79,141663,NULL,17956,4,'2022-07-26 00:49:17','2022-07-26 00:49:17','3b732a73-de7b-4663-9c74-16abd1b2f793'),(117525,69,141663,NULL,140086,1,'2022-07-26 00:49:17','2022-07-26 00:49:17','43ada78a-3f88-4d86-9552-2c31d1d2fed7'),(117526,85,141663,NULL,17964,1,'2022-07-26 00:49:17','2022-07-26 00:49:17','8955c03c-c375-4b2d-adeb-3ff37a1d003d'),(117527,85,141663,NULL,17965,2,'2022-07-26 00:49:17','2022-07-26 00:49:17','92e3ac14-9f5e-4c27-a3fd-e6bdb4c136f6'),(117528,85,141663,NULL,17966,3,'2022-07-26 00:49:17','2022-07-26 00:49:17','3cc07627-396a-4e9e-b593-1e7ef90c0399'),(117529,85,141663,NULL,17967,4,'2022-07-26 00:49:17','2022-07-26 00:49:17','ede46a46-d62b-48b9-99ca-c63bc133fbea'),(117530,85,141663,NULL,17968,5,'2022-07-26 00:49:17','2022-07-26 00:49:17','a1e7dfc5-4845-4fb4-a0ea-b1e77c48f1f8'),(117531,85,141663,NULL,17969,6,'2022-07-26 00:49:17','2022-07-26 00:49:17','20c47c2c-34d7-4301-b322-1c0cdb44c858'),(117532,84,141663,NULL,18057,1,'2022-07-26 00:49:17','2022-07-26 00:49:17','79e4756a-a40a-4992-8636-994b72a69dbf'),(117533,84,141663,NULL,38161,2,'2022-07-26 00:49:17','2022-07-26 00:49:17','0f1db1e2-dbff-42df-be18-0b694e941a88'),(117534,198,141663,NULL,140086,1,'2022-07-26 00:49:17','2022-07-26 00:49:17','213e8d27-81b8-41e0-a75b-ca1eedc56109'),(117710,69,141693,NULL,141632,1,'2022-07-26 04:07:27','2022-07-26 04:07:27','cf8f76a9-f6b5-41f6-8b45-295a25f410cf'),(117728,79,141725,NULL,17875,1,'2022-07-26 05:29:13','2022-07-26 05:29:13','6188a0cb-6dff-470e-841f-363c1628b90a'),(117729,79,141725,NULL,17934,2,'2022-07-26 05:29:13','2022-07-26 05:29:13','d0c4ef18-291d-4b2a-829a-f45950711a64'),(117733,85,141725,NULL,17964,1,'2022-07-26 05:29:13','2022-07-26 05:29:13','1cb415da-504f-4b18-8490-363542768b4f'),(117734,85,141725,NULL,17966,2,'2022-07-26 05:29:13','2022-07-26 05:29:13','38e69ba1-c188-4f0a-9178-daea4dd77163'),(117735,85,141725,NULL,17967,3,'2022-07-26 05:29:13','2022-07-26 05:29:13','b5f31f8e-b9a1-4a8b-98af-2e6302d62fc8'),(117737,84,141725,NULL,38160,1,'2022-07-26 05:29:13','2022-09-15 06:42:56','1d22623f-417f-413a-a297-fed5caed4f24'),(117739,79,141726,NULL,17875,1,'2022-07-26 05:29:14','2022-07-26 05:29:14','81c6e089-ee55-452c-ba2f-e9463647713e'),(117740,79,141726,NULL,17934,2,'2022-07-26 05:29:14','2022-07-26 05:29:14','e2ba2360-6575-4f7d-9a4c-4aabd5c017fd'),(117741,79,141726,NULL,17881,3,'2022-07-26 05:29:14','2022-07-26 05:29:14','e94c0b10-ad6c-45d4-b54a-d46605ee5905'),(117742,79,141726,NULL,17956,4,'2022-07-26 05:29:14','2022-07-26 05:29:14','8665d33f-0a66-4e4f-a389-7b2982787b6c'),(117743,69,141726,NULL,22011,1,'2022-07-26 05:29:14','2022-07-26 05:29:14','ff89db32-0eb3-4d4f-94b9-d6a318318392'),(117744,85,141726,NULL,17964,1,'2022-07-26 05:29:14','2022-07-26 05:29:14','43c58dfc-6a97-4779-a620-7d76bc5727aa'),(117745,85,141726,NULL,17966,2,'2022-07-26 05:29:14','2022-07-26 05:29:14','72f63d08-97ea-4fe2-92f9-12b7bbda8acb'),(117746,85,141726,NULL,17967,3,'2022-07-26 05:29:14','2022-07-26 05:29:14','c73bb68a-a72d-4fd9-835b-b9c3a39a4ede'),(117747,84,141726,NULL,18057,1,'2022-07-26 05:29:14','2022-07-26 05:29:14','2f055012-ef31-4ccc-ba31-a1e1f1dc66c0'),(117748,84,141726,NULL,38160,2,'2022-07-26 05:29:14','2022-07-26 05:29:14','0728c059-f813-4ca1-8ada-db54996ed457'),(117749,198,141726,NULL,17753,1,'2022-07-26 05:29:14','2022-07-26 05:29:14','a693ae79-bc70-49e1-8715-d36653cfc416'),(117761,79,141728,NULL,17875,1,'2022-07-26 05:31:16','2022-07-26 05:31:16','ce314011-78a8-41f7-8bc9-717937ac1844'),(117762,79,141728,NULL,17934,2,'2022-07-26 05:31:16','2022-07-26 05:31:16','472db9ef-8c0b-4b33-aa6a-bbb8d3470578'),(117763,79,141728,NULL,17881,3,'2022-07-26 05:31:16','2022-07-26 05:31:16','83d5a991-cdb8-455b-b3ab-ca7a5f0dce2b'),(117764,79,141728,NULL,17956,4,'2022-07-26 05:31:16','2022-07-26 05:31:16','127e2b2d-9db6-48bf-bced-abb1f666b325'),(117765,69,141728,NULL,22011,1,'2022-07-26 05:31:16','2022-07-26 05:31:16','322f3554-6322-4966-a4f7-4e1cf0428d87'),(117766,85,141728,NULL,17964,1,'2022-07-26 05:31:16','2022-07-26 05:31:16','74e58168-c334-4e6a-8777-370fe655e4bf'),(117767,85,141728,NULL,17966,2,'2022-07-26 05:31:16','2022-07-26 05:31:16','19edca17-91a0-43df-b3d6-628bc583ecac'),(117768,85,141728,NULL,17967,3,'2022-07-26 05:31:16','2022-07-26 05:31:16','f0201fdd-46a0-4307-98df-4c547565193f'),(117769,84,141728,NULL,18057,1,'2022-07-26 05:31:16','2022-07-26 05:31:16','719d3f52-826e-4faa-bac1-7eb0a990379e'),(117770,84,141728,NULL,38160,2,'2022-07-26 05:31:16','2022-07-26 05:31:16','d8baa9a6-4c4f-4c9d-9035-1ea77b9f7c77'),(117771,198,141728,NULL,17753,1,'2022-07-26 05:31:16','2022-07-26 05:31:16','a9b23ca5-526d-4844-896e-7d1229f93193'),(117783,79,141730,NULL,17875,1,'2022-07-26 05:31:58','2022-07-26 05:31:58','93531dfc-a846-4203-b04c-4fbaaa2e2ae0'),(117784,79,141730,NULL,17934,2,'2022-07-26 05:31:58','2022-07-26 05:31:58','717954cb-33fb-41aa-ae0a-acb3b040820d'),(117785,79,141730,NULL,17881,3,'2022-07-26 05:31:58','2022-07-26 05:31:58','672d4ffe-a16e-4a25-8242-ec3d00924f7c'),(117786,79,141730,NULL,17956,4,'2022-07-26 05:31:58','2022-07-26 05:31:58','83446d16-65e1-4e8f-9d9e-73df9df11023'),(117787,69,141730,NULL,22011,1,'2022-07-26 05:31:58','2022-07-26 05:31:58','c30144a5-7ca7-4799-b0a9-d36bce6cfab5'),(117788,85,141730,NULL,17964,1,'2022-07-26 05:31:58','2022-07-26 05:31:58','5fe965e9-a6b8-4bba-9513-bd1a9c68c3e9'),(117789,85,141730,NULL,17966,2,'2022-07-26 05:31:58','2022-07-26 05:31:58','c6624355-ef5b-45a9-82b7-3bb15736bb1c'),(117790,85,141730,NULL,17967,3,'2022-07-26 05:31:58','2022-07-26 05:31:58','07a64d8b-2d2a-4bcb-9093-48eed06c1d97'),(117791,84,141730,NULL,18057,1,'2022-07-26 05:31:58','2022-07-26 05:31:58','3d5f26e1-e3f5-4014-a02c-4ff57e5099fd'),(117792,84,141730,NULL,38160,2,'2022-07-26 05:31:58','2022-07-26 05:31:58','f03d8fca-46db-456b-880a-76aa8d431ba6'),(117793,198,141730,NULL,17753,1,'2022-07-26 05:31:58','2022-07-26 05:31:58','326f4c9f-a160-435b-9a59-0eaa2c7ed284'),(117811,79,141746,NULL,17875,1,'2022-07-26 07:01:23','2022-07-26 07:01:23','749002c1-7808-4062-b534-aa37a3a64a16'),(117812,79,141746,NULL,17934,2,'2022-07-26 07:01:23','2022-07-26 07:01:23','b3bd7380-6acf-4c04-b380-9e2afa6ab98a'),(117813,79,141746,NULL,17881,3,'2022-07-26 07:01:23','2022-07-26 07:01:23','b81a3aa8-c996-4992-8218-b4dceaa30fde'),(117814,79,141746,NULL,17956,4,'2022-07-26 07:01:23','2022-07-26 07:01:23','f30d5daa-013e-400a-b9dc-ad7854228784'),(117815,69,141746,NULL,22011,1,'2022-07-26 07:01:23','2022-07-26 07:01:23','5d43d536-62e5-4f2c-bb40-eeb56fcffb08'),(117816,85,141746,NULL,17964,1,'2022-07-26 07:01:23','2022-07-26 07:01:23','d620c0c1-3fcf-4f48-829b-e44e28534332'),(117817,85,141746,NULL,17966,2,'2022-07-26 07:01:23','2022-07-26 07:01:23','b62d3240-75ca-4b60-adb8-6e5c1827f0ba'),(117818,85,141746,NULL,17967,3,'2022-07-26 07:01:23','2022-07-26 07:01:23','c403d190-c2fe-4af4-95b5-27ab938595aa'),(117819,84,141746,NULL,18057,1,'2022-07-26 07:01:23','2022-07-26 07:01:23','17739416-bce9-4e29-8e42-a814850a7a3d'),(117820,84,141746,NULL,38160,2,'2022-07-26 07:01:23','2022-07-26 07:01:23','0cbff91f-05c1-46b2-8628-dd63e77cdab2'),(117821,198,141746,NULL,17753,1,'2022-07-26 07:01:23','2022-07-26 07:01:23','c5327b07-3ccd-4ed8-b75c-f43295341846'),(117833,79,141748,NULL,17875,1,'2022-07-26 07:02:27','2022-07-26 07:02:27','0b4f9227-52c2-4f17-921a-1f275509bb4e'),(117834,79,141748,NULL,17934,2,'2022-07-26 07:02:27','2022-07-26 07:02:27','2543ffb3-6c44-42bd-95b3-73886f320e52'),(117835,79,141748,NULL,17881,3,'2022-07-26 07:02:27','2022-07-26 07:02:27','158818ca-0f77-4d6d-ba15-0af7b95d5fc0'),(117836,79,141748,NULL,17956,4,'2022-07-26 07:02:27','2022-07-26 07:02:27','5fa5a95f-651c-4986-be6f-46ec74b01f4a'),(117837,69,141748,NULL,22011,1,'2022-07-26 07:02:27','2022-07-26 07:02:27','182fffdf-a08c-40b4-b260-7e305d855132'),(117838,85,141748,NULL,17964,1,'2022-07-26 07:02:27','2022-07-26 07:02:27','9e58e986-fcf5-4102-a4dd-78e82cac7d13'),(117839,85,141748,NULL,17966,2,'2022-07-26 07:02:27','2022-07-26 07:02:27','744b828d-ab00-4636-9d3c-fe81274dc890'),(117840,85,141748,NULL,17967,3,'2022-07-26 07:02:27','2022-07-26 07:02:27','d72406de-a73c-4ad0-818f-7081d46b69e0'),(117841,84,141748,NULL,18057,1,'2022-07-26 07:02:27','2022-07-26 07:02:27','aad3cad2-6d4f-46de-bce1-ee8e01fd31e6'),(117842,84,141748,NULL,38160,2,'2022-07-26 07:02:27','2022-07-26 07:02:27','149e1fd9-084b-47a0-84f9-dc9981db3e70'),(117843,198,141748,NULL,17753,1,'2022-07-26 07:02:27','2022-07-26 07:02:27','90711a38-1704-49db-b283-7d0ee2d279a0'),(117855,79,141750,NULL,17875,1,'2022-07-26 07:02:55','2022-07-26 07:02:55','530b62e3-10f0-4a47-a74c-c12b931c0367'),(117856,79,141750,NULL,17934,2,'2022-07-26 07:02:55','2022-07-26 07:02:55','50403932-5afc-4af2-a008-0a0fab5a2f00'),(117857,79,141750,NULL,17881,3,'2022-07-26 07:02:55','2022-07-26 07:02:55','5ab05be5-904f-4ba9-85c8-85ea2c1ba358'),(117858,79,141750,NULL,17956,4,'2022-07-26 07:02:55','2022-07-26 07:02:55','67edb5b9-88ad-4284-b0d2-d946ec4406cb'),(117859,69,141750,NULL,22011,1,'2022-07-26 07:02:55','2022-07-26 07:02:55','639dbb3d-08df-4cb0-b1bc-3a5c8a7b913c'),(117860,85,141750,NULL,17964,1,'2022-07-26 07:02:55','2022-07-26 07:02:55','e0a1238f-adb4-40e9-8e32-cb1e19e91270'),(117861,85,141750,NULL,17966,2,'2022-07-26 07:02:55','2022-07-26 07:02:55','b79b562b-a525-4cdc-a29a-a19e0ba285c8'),(117862,85,141750,NULL,17967,3,'2022-07-26 07:02:55','2022-07-26 07:02:55','85bc854a-f4f5-481e-88bc-a436148e7d78'),(117863,84,141750,NULL,18057,1,'2022-07-26 07:02:55','2022-07-26 07:02:55','ef51ac50-9d65-44e6-92b0-38180a5f1791'),(117864,84,141750,NULL,38160,2,'2022-07-26 07:02:55','2022-07-26 07:02:55','a9cbd078-d0b1-4d8d-99e1-e1ba783ddb1f'),(117865,198,141750,NULL,17753,1,'2022-07-26 07:02:55','2022-07-26 07:02:55','48cd852e-285d-45fe-91b2-1f3f9b8d4e7d'),(117878,69,141725,NULL,141742,1,'2022-07-26 07:03:20','2022-07-26 07:03:20','f3b473d1-d764-4842-a0db-202cedce4bdd'),(117879,79,141752,NULL,17875,1,'2022-07-26 07:03:20','2022-07-26 07:03:20','e3c93b08-9c93-4ac8-b3df-3f655149e6b6'),(117880,79,141752,NULL,17934,2,'2022-07-26 07:03:20','2022-07-26 07:03:20','0107b5b5-8485-4ac1-9eca-f85aa898f889'),(117881,79,141752,NULL,17881,3,'2022-07-26 07:03:20','2022-07-26 07:03:20','9be249be-8426-4ced-9e39-c8e0cd80d869'),(117882,79,141752,NULL,17956,4,'2022-07-26 07:03:20','2022-07-26 07:03:20','e3be631f-5342-4b51-8eed-263b39f823ec'),(117883,69,141752,NULL,141742,1,'2022-07-26 07:03:20','2022-07-26 07:03:20','be7bbd5b-b771-4bad-9a2c-5b4ce73bcba9'),(117884,85,141752,NULL,17964,1,'2022-07-26 07:03:20','2022-07-26 07:03:20','41e4d3d5-cbf2-4e05-bb8e-531b87af65a8'),(117885,85,141752,NULL,17966,2,'2022-07-26 07:03:20','2022-07-26 07:03:20','b03a7097-e6ae-4f1a-9009-567170116dc7'),(117886,85,141752,NULL,17967,3,'2022-07-26 07:03:20','2022-07-26 07:03:20','ea59a090-875e-44ce-85fd-6ace15fbd960'),(117887,84,141752,NULL,18057,1,'2022-07-26 07:03:20','2022-07-26 07:03:20','99e69905-263c-4011-beb1-eb66f806964e'),(117888,84,141752,NULL,38160,2,'2022-07-26 07:03:20','2022-07-26 07:03:20','90aec6ee-7c56-4bbe-842e-ebfe083faa39'),(117889,198,141752,NULL,17753,1,'2022-07-26 07:03:20','2022-07-26 07:03:20','c98c30ca-83d1-4dfd-9350-4a8da83944fd'),(117901,79,141754,NULL,17875,1,'2022-07-26 07:04:20','2022-07-26 07:04:20','2fce3297-b002-45a2-8939-40facca63a63'),(117902,79,141754,NULL,17934,2,'2022-07-26 07:04:20','2022-07-26 07:04:20','e78c772c-0d65-4b46-9fb9-87828210afee'),(117903,79,141754,NULL,17881,3,'2022-07-26 07:04:20','2022-07-26 07:04:20','18170021-7063-4aaa-a029-4c1e6b00fac8'),(117904,79,141754,NULL,17956,4,'2022-07-26 07:04:20','2022-07-26 07:04:20','700af892-1adf-48f4-bb00-d30ac7de7299'),(117905,69,141754,NULL,141742,1,'2022-07-26 07:04:20','2022-07-26 07:04:20','cfb0ee79-6483-448b-afe4-cd6cc16019d4'),(117906,85,141754,NULL,17964,1,'2022-07-26 07:04:20','2022-07-26 07:04:20','66bbb8f6-84ad-4d6a-8eb0-156cde71ad60'),(117907,85,141754,NULL,17966,2,'2022-07-26 07:04:20','2022-07-26 07:04:20','368a488e-4b1f-463c-a273-43ecd35bc8ca'),(117908,85,141754,NULL,17967,3,'2022-07-26 07:04:20','2022-07-26 07:04:20','4376522f-0206-4751-9fb9-8360613c22f3'),(117909,84,141754,NULL,18057,1,'2022-07-26 07:04:20','2022-07-26 07:04:20','37eab045-36c5-44a9-abb9-758489bc7465'),(117910,84,141754,NULL,38160,2,'2022-07-26 07:04:20','2022-07-26 07:04:20','a63ab3fd-4738-4ec6-a2cd-149813082954'),(117911,198,141754,NULL,17753,1,'2022-07-26 07:04:20','2022-07-26 07:04:20','b3520e56-783b-47cc-a2f2-70fe40c82551'),(117923,79,141756,NULL,17875,1,'2022-07-26 07:05:12','2022-07-26 07:05:12','2ec5dc4e-02b7-40dc-bdf2-29ed673e19b3'),(117924,79,141756,NULL,17934,2,'2022-07-26 07:05:12','2022-07-26 07:05:12','b048341f-a722-4a2f-879d-5ccb26c01809'),(117925,79,141756,NULL,17881,3,'2022-07-26 07:05:12','2022-07-26 07:05:12','0e63512c-79ab-4c72-b0f3-6d978efab42b'),(117926,79,141756,NULL,17956,4,'2022-07-26 07:05:12','2022-07-26 07:05:12','a4bee656-4abb-439e-b4c5-6fef4a063365'),(117927,69,141756,NULL,141742,1,'2022-07-26 07:05:12','2022-07-26 07:05:12','c1fa697e-c544-47b4-8f28-286260364672'),(117928,85,141756,NULL,17964,1,'2022-07-26 07:05:12','2022-07-26 07:05:12','e1f023ff-2f5b-45c9-afdd-16dc78a0291c'),(117929,85,141756,NULL,17966,2,'2022-07-26 07:05:12','2022-07-26 07:05:12','23970a6f-8120-4581-896d-347a6c060933'),(117930,85,141756,NULL,17967,3,'2022-07-26 07:05:12','2022-07-26 07:05:12','179211f7-e4e3-4b02-a69d-92e0e5930db1'),(117931,84,141756,NULL,18057,1,'2022-07-26 07:05:12','2022-07-26 07:05:12','1578162c-2cee-4047-936a-8ae2079912f3'),(117932,84,141756,NULL,38160,2,'2022-07-26 07:05:12','2022-07-26 07:05:12','5904c89b-d8e1-4e12-9590-89279bd0af92'),(117933,198,141756,NULL,17753,1,'2022-07-26 07:05:12','2022-07-26 07:05:12','016aeb0b-4af7-4346-91ce-33974fe1cd93'),(117946,198,141725,NULL,141758,1,'2022-07-26 07:06:10','2022-07-26 07:06:10','dea4a5d0-7a0b-4322-a84a-43e70b1e0da4'),(117947,79,141759,NULL,17875,1,'2022-07-26 07:06:10','2022-07-26 07:06:10','9db7937c-2f39-4721-bf46-6a4dbfc46050'),(117948,79,141759,NULL,17934,2,'2022-07-26 07:06:10','2022-07-26 07:06:10','1975da29-c6b3-4a3c-8b64-422067a44bfd'),(117949,79,141759,NULL,17881,3,'2022-07-26 07:06:10','2022-07-26 07:06:10','98a1b5df-039b-4cf1-9ff7-23633e6c1879'),(117950,79,141759,NULL,17956,4,'2022-07-26 07:06:10','2022-07-26 07:06:10','8fb7eeba-cc61-4d49-8708-7d6851298765'),(117951,69,141759,NULL,141742,1,'2022-07-26 07:06:10','2022-07-26 07:06:10','d888136d-fb6a-48e0-96c2-c1c48ad4ca4e'),(117952,85,141759,NULL,17964,1,'2022-07-26 07:06:10','2022-07-26 07:06:10','1b783bce-63af-4441-a396-11da4e7c3ab7'),(117953,85,141759,NULL,17966,2,'2022-07-26 07:06:10','2022-07-26 07:06:10','65b405ba-beb7-4a16-9d46-97289e9d04eb'),(117954,85,141759,NULL,17967,3,'2022-07-26 07:06:10','2022-07-26 07:06:10','f76d48c2-ca6c-41fa-890c-fd8f47c184a4'),(117955,84,141759,NULL,18057,1,'2022-07-26 07:06:10','2022-07-26 07:06:10','92378b30-f643-4980-9e19-4aa6123f5596'),(117956,84,141759,NULL,38160,2,'2022-07-26 07:06:10','2022-07-26 07:06:10','3a8293ac-d4ba-4f0c-85f1-708f93eae906'),(117957,198,141759,NULL,141758,1,'2022-07-26 07:06:10','2022-07-26 07:06:10','70aad02e-b039-4365-833d-68b9d8928b38'),(117969,79,141761,NULL,17875,1,'2022-07-26 07:06:26','2022-07-26 07:06:26','ec98aec2-4420-4691-b984-b4bb444edc81'),(117970,79,141761,NULL,17934,2,'2022-07-26 07:06:26','2022-07-26 07:06:26','1dfa16c1-b6d1-48ba-ae47-dab2a93dec67'),(117971,79,141761,NULL,17881,3,'2022-07-26 07:06:26','2022-07-26 07:06:26','248c3baa-9aa3-4a61-be3b-8303f6713975'),(117972,79,141761,NULL,17956,4,'2022-07-26 07:06:26','2022-07-26 07:06:26','bd365db2-097c-4219-b654-d1f16b8a601d'),(117973,69,141761,NULL,141742,1,'2022-07-26 07:06:26','2022-07-26 07:06:26','5eba624c-79b3-48dc-bbea-3ad2e2136d24'),(117974,85,141761,NULL,17964,1,'2022-07-26 07:06:26','2022-07-26 07:06:26','953d5756-20e4-4095-ae39-97443a44ab29'),(117975,85,141761,NULL,17966,2,'2022-07-26 07:06:26','2022-07-26 07:06:26','e2db455b-7df2-4285-9ca9-76dcfcc088f9'),(117976,85,141761,NULL,17967,3,'2022-07-26 07:06:26','2022-07-26 07:06:26','21b80457-bd6f-4efd-81ab-b6689eb8bfc8'),(117977,84,141761,NULL,18057,1,'2022-07-26 07:06:26','2022-07-26 07:06:26','9ca17443-3c62-4788-acd3-9cba810dae00'),(117978,84,141761,NULL,38160,2,'2022-07-26 07:06:26','2022-07-26 07:06:26','7f9e4e9a-8f69-4b14-b63b-8e2b8d47ae5d'),(117979,198,141761,NULL,141758,1,'2022-07-26 07:06:26','2022-07-26 07:06:26','cbf9b5c9-98b9-43c3-9aa1-1f8977d4a895'),(117991,79,141763,NULL,17875,1,'2022-07-26 07:06:43','2022-07-26 07:06:43','5f2a9c6d-99e1-44da-ad50-a7f2b7d919cf'),(117992,79,141763,NULL,17934,2,'2022-07-26 07:06:43','2022-07-26 07:06:43','fb15e4d7-ed67-46f4-953a-337a91f30b5b'),(117993,79,141763,NULL,17881,3,'2022-07-26 07:06:43','2022-07-26 07:06:43','c2e4b12a-1bb0-4d12-a0dc-49a9f1266041'),(117994,79,141763,NULL,17956,4,'2022-07-26 07:06:43','2022-07-26 07:06:43','b3a5f32d-0d3b-4dfd-9f11-455376408444'),(117995,69,141763,NULL,141742,1,'2022-07-26 07:06:43','2022-07-26 07:06:43','de6d64d5-eb50-421a-b0eb-3cd66bb8d514'),(117996,85,141763,NULL,17964,1,'2022-07-26 07:06:43','2022-07-26 07:06:43','66efb0ac-0d4e-427a-9b10-3f125401e0a3'),(117997,85,141763,NULL,17966,2,'2022-07-26 07:06:43','2022-07-26 07:06:43','8a37afdf-9708-477e-8e05-3f5e10ed8d1a'),(117998,85,141763,NULL,17967,3,'2022-07-26 07:06:43','2022-07-26 07:06:43','9af4b422-30cb-4640-8e68-f3419735cc9a'),(117999,84,141763,NULL,18057,1,'2022-07-26 07:06:43','2022-07-26 07:06:43','51213fd5-d079-42d4-a324-49c6f44cf830'),(118000,84,141763,NULL,38160,2,'2022-07-26 07:06:43','2022-07-26 07:06:43','c38b9e5d-4597-4e29-adfd-27f182d54e4a'),(118001,198,141763,NULL,141758,1,'2022-07-26 07:06:43','2022-07-26 07:06:43','b000904b-5e1a-4ab8-ae3f-71b468f5da04'),(118036,79,141770,NULL,17875,1,'2022-07-27 04:47:14','2022-07-27 04:47:14','83a3502f-4278-4e8a-b711-9b8cfdb97f72'),(118037,79,141770,NULL,17934,2,'2022-07-27 04:47:14','2022-07-27 04:47:14','8fa6de73-83df-4fd5-a14c-7548402332e0'),(118038,79,141770,NULL,17881,3,'2022-07-27 04:47:14','2022-07-27 04:47:14','0a2077b5-0fbe-4842-9ba7-b6fc39b516e7'),(118039,79,141770,NULL,17956,4,'2022-07-27 04:47:14','2022-07-27 04:47:14','230b6116-3607-4695-a0a6-002a78190d9c'),(118040,69,141770,NULL,141742,1,'2022-07-27 04:47:14','2022-07-27 04:47:14','dd86c036-f57d-4cb3-8dc7-39870248270f'),(118041,85,141770,NULL,17964,1,'2022-07-27 04:47:14','2022-07-27 04:47:14','ac44546a-6945-4075-8dac-25130f571afb'),(118042,85,141770,NULL,17966,2,'2022-07-27 04:47:14','2022-07-27 04:47:14','3930c77e-ad76-413f-af47-56262b922616'),(118043,85,141770,NULL,17967,3,'2022-07-27 04:47:14','2022-07-27 04:47:14','231627d4-712e-4851-89e2-a1d7069275c5'),(118044,84,141770,NULL,18057,1,'2022-07-27 04:47:14','2022-07-27 04:47:14','8c1afc93-b3be-442e-b4ff-b6548a1fea76'),(118045,84,141770,NULL,38160,2,'2022-07-27 04:47:14','2022-07-27 04:47:14','f33e619e-aacf-494f-94cf-ab0fdc38d74f'),(118046,198,141770,NULL,141758,1,'2022-07-27 04:47:14','2022-07-27 04:47:14','2d3e2408-3607-4da4-adaf-9d5efe6b5fcc'),(118058,79,141772,NULL,17875,1,'2022-07-27 06:09:37','2022-07-27 06:09:37','deedaf45-7616-4090-9f96-5e27dfc9cc38'),(118059,79,141772,NULL,17934,2,'2022-07-27 06:09:37','2022-07-27 06:09:37','1db9b463-e45b-47b7-af3e-621baf2b0e49'),(118060,79,141772,NULL,17881,3,'2022-07-27 06:09:37','2022-07-27 06:09:37','fe7d70d8-553a-4263-9dd7-0425f584c11a'),(118061,79,141772,NULL,17956,4,'2022-07-27 06:09:37','2022-07-27 06:09:37','b6abe6c1-02c2-4ab4-b72b-248b3b0321f8'),(118062,69,141772,NULL,141742,1,'2022-07-27 06:09:37','2022-07-27 06:09:37','b5492d05-86c7-4579-8607-7fce129ce280'),(118063,85,141772,NULL,17964,1,'2022-07-27 06:09:37','2022-07-27 06:09:37','859a0bd9-313e-4362-b1d0-fbfe9eb8e3b2'),(118064,85,141772,NULL,17966,2,'2022-07-27 06:09:37','2022-07-27 06:09:37','68b663e0-4560-4242-b2a8-266cea4f8a43'),(118065,85,141772,NULL,17967,3,'2022-07-27 06:09:37','2022-07-27 06:09:37','4eaa76ca-a5f4-4481-badd-7f7331f47724'),(118066,84,141772,NULL,18057,1,'2022-07-27 06:09:37','2022-07-27 06:09:37','086cae0c-f5a5-44a4-ac82-ae05fd4f2d7d'),(118067,84,141772,NULL,38160,2,'2022-07-27 06:09:37','2022-07-27 06:09:37','4402eead-6dda-44d2-8f97-6844069cecae'),(118068,198,141772,NULL,141758,1,'2022-07-27 06:09:37','2022-07-27 06:09:37','9ce15d3f-6037-46bd-9e28-9ec7b2180474'),(118080,79,141776,NULL,17875,1,'2022-07-28 04:11:35','2022-07-28 04:11:35','579ee98b-2618-449d-827e-341e0d5f9800'),(118081,79,141776,NULL,17996,2,'2022-07-28 04:11:35','2022-07-28 04:11:35','6809dc9e-7446-48b0-a711-ed5cd363f445'),(118082,69,141776,NULL,140057,1,'2022-07-28 04:11:35','2022-07-28 04:11:35','7112e639-0970-4ef5-b406-41e0e09c729d'),(118083,79,141777,NULL,17875,1,'2022-07-28 04:14:23','2022-07-28 04:14:23','8bbad972-f620-485b-8d69-a6071c5e0490'),(118084,79,141777,NULL,17934,2,'2022-07-28 04:14:23','2022-07-28 04:14:23','d3acfada-eaa7-4839-bf43-e9134eeb7290'),(118085,79,141777,NULL,17881,3,'2022-07-28 04:14:23','2022-07-28 04:14:23','352ab92e-9b1e-4992-888c-fb81ca04d597'),(118086,79,141777,NULL,17956,4,'2022-07-28 04:14:23','2022-07-28 04:14:23','8db6645e-e089-42bf-8f08-67888897331b'),(118087,69,141777,NULL,141742,1,'2022-07-28 04:14:23','2022-07-28 04:14:23','d0d6e043-f05b-4d6b-a932-516191e8b2b7'),(118088,85,141777,NULL,17964,1,'2022-07-28 04:14:23','2022-07-28 04:14:23','b07bef1c-6100-41a7-ae4b-266b90d9deb1'),(118089,85,141777,NULL,17966,2,'2022-07-28 04:14:23','2022-07-28 04:14:23','f0bc0f6c-4cec-45f2-a321-51580e92225b'),(118090,85,141777,NULL,17967,3,'2022-07-28 04:14:23','2022-07-28 04:14:23','3ed6cce1-d86a-493d-a940-8b22276b5034'),(118091,84,141777,NULL,18057,1,'2022-07-28 04:14:23','2022-07-28 04:14:23','14d6c0c1-d100-4aa5-a772-3e66084e3178'),(118092,84,141777,NULL,38160,2,'2022-07-28 04:14:23','2022-07-28 04:14:23','a1c77dae-3713-4d43-8622-6b8c40f2f9c3'),(118093,198,141777,NULL,141758,1,'2022-07-28 04:14:23','2022-07-28 04:14:23','2a16fe5e-176a-408c-84a3-b8200d0ee289'),(118094,79,141778,NULL,17875,1,'2022-07-28 04:20:15','2022-07-28 04:20:15','2a4b0037-c0ef-41a9-b30f-c62c35205b13'),(118095,79,141778,NULL,17934,2,'2022-07-28 04:20:15','2022-07-28 04:20:15','85f89bd5-51c6-4c95-80cf-d679c69bfc73'),(118096,79,141778,NULL,17881,3,'2022-07-28 04:20:15','2022-07-28 04:20:15','68ef42a7-bc74-4441-ae6e-10051e1d96e1'),(118097,79,141778,NULL,17956,4,'2022-07-28 04:20:15','2022-07-28 04:20:15','e54c82a6-d498-41b8-af90-3cb6945b1501'),(118098,69,141778,NULL,141742,1,'2022-07-28 04:20:15','2022-07-28 04:20:15','8b304662-106f-47be-a584-6c607c92544f'),(118099,85,141778,NULL,17964,1,'2022-07-28 04:20:15','2022-07-28 04:20:15','c1480550-b610-40cc-925e-b0dd528b0f17'),(118100,85,141778,NULL,17966,2,'2022-07-28 04:20:15','2022-07-28 04:20:15','bf070b3b-2bb8-431f-b312-e4d015540b27'),(118101,85,141778,NULL,17967,3,'2022-07-28 04:20:15','2022-07-28 04:20:15','2332ce59-dfb3-4f1a-8897-04ca2141f086'),(118102,84,141778,NULL,18057,1,'2022-07-28 04:20:15','2022-07-28 04:20:15','1649ac3d-5bd2-48af-b065-7c7f4adb837a'),(118103,84,141778,NULL,38160,2,'2022-07-28 04:20:15','2022-07-28 04:20:15','eb77c31e-b1a0-4394-bc1a-0af88fc1e2b9'),(118104,198,141778,NULL,141758,1,'2022-07-28 04:20:15','2022-07-28 04:20:15','e01affc9-fa6e-41d2-af05-56c3563814a5'),(118122,79,141784,NULL,17875,1,'2022-07-28 04:50:06','2022-07-28 04:50:06','f3511962-61de-4ed2-b509-80b36d0ba778'),(118123,79,141784,NULL,17934,2,'2022-07-28 04:50:06','2022-07-28 04:50:06','6eaf5b24-2599-4e45-89b4-848d9466eaf4'),(118124,79,141784,NULL,17881,3,'2022-07-28 04:50:06','2022-07-28 04:50:06','a035a45a-115c-45fe-9930-dd0925166c70'),(118125,79,141784,NULL,17956,4,'2022-07-28 04:50:06','2022-07-28 04:50:06','8e9c56cf-8468-4805-8c3d-3d1d08ef6db2'),(118126,69,141784,NULL,141742,1,'2022-07-28 04:50:06','2022-07-28 04:50:06','c4093f13-0a08-4319-8c6d-1d716504a405'),(118127,85,141784,NULL,17964,1,'2022-07-28 04:50:06','2022-07-28 04:50:06','8f4bdbdc-fe87-4850-bb48-efec747c6dc8'),(118128,85,141784,NULL,17966,2,'2022-07-28 04:50:06','2022-07-28 04:50:06','ed402d2e-8801-4a88-8ccc-ac2b10a894f0'),(118129,85,141784,NULL,17967,3,'2022-07-28 04:50:06','2022-07-28 04:50:06','85e979eb-d6d6-492d-82b9-10c1c4f1d232'),(118130,84,141784,NULL,18057,1,'2022-07-28 04:50:06','2022-07-28 04:50:06','a7e73b9f-9101-4b72-a786-f7f88e361932'),(118131,84,141784,NULL,38160,2,'2022-07-28 04:50:06','2022-07-28 04:50:06','d8eaa2ed-3941-4263-bda6-175fc86661c3'),(118132,198,141784,NULL,141758,1,'2022-07-28 04:50:06','2022-07-28 04:50:06','a8f35faf-f759-44ed-90f1-c2e4068d12c8'),(118144,79,141786,NULL,17875,1,'2022-07-28 04:51:51','2022-07-28 04:51:51','0957f613-c893-47b2-8ad5-60bbe90f4597'),(118145,79,141786,NULL,17934,2,'2022-07-28 04:51:51','2022-07-28 04:51:51','54d5fa93-40d2-4f41-859f-85a5bd88ca71'),(118146,79,141786,NULL,17881,3,'2022-07-28 04:51:51','2022-07-28 04:51:51','fb6546df-c7b7-44a1-8e1a-a773a133bdb4'),(118147,79,141786,NULL,17956,4,'2022-07-28 04:51:51','2022-07-28 04:51:51','3d9afba1-3c64-4086-b234-35314e2d5c3f'),(118148,69,141786,NULL,141742,1,'2022-07-28 04:51:51','2022-07-28 04:51:51','1f08946c-5d6a-4210-a209-0283c29e2281'),(118149,85,141786,NULL,17964,1,'2022-07-28 04:51:51','2022-07-28 04:51:51','3572c6db-8957-42a1-a7c3-9f93756fa972'),(118150,85,141786,NULL,17966,2,'2022-07-28 04:51:51','2022-07-28 04:51:51','e6d31893-d70f-4887-80b1-b4253d7b9271'),(118151,85,141786,NULL,17967,3,'2022-07-28 04:51:51','2022-07-28 04:51:51','8f985df7-48cc-48d7-b5bc-3dd60330c684'),(118152,84,141786,NULL,18057,1,'2022-07-28 04:51:51','2022-07-28 04:51:51','ef7aa1e7-cd02-46d7-9e3c-078307224610'),(118153,84,141786,NULL,38160,2,'2022-07-28 04:51:51','2022-07-28 04:51:51','a1ee56a7-2166-4991-975f-9967ae466bc7'),(118154,198,141786,NULL,141758,1,'2022-07-28 04:51:51','2022-07-28 04:51:51','fd28b7d8-3c81-4a7b-b0aa-5ae1a3fd54c4'),(118166,79,141788,NULL,17875,1,'2022-07-28 04:52:25','2022-07-28 04:52:25','a58df5d9-0e58-4926-939c-0a4f2d3be2af'),(118167,79,141788,NULL,17934,2,'2022-07-28 04:52:25','2022-07-28 04:52:25','79836801-f61e-43ee-afd6-6d82d854448e'),(118168,79,141788,NULL,17881,3,'2022-07-28 04:52:25','2022-07-28 04:52:25','c261d881-81a9-4861-b97f-eccef9cedccc'),(118169,79,141788,NULL,17956,4,'2022-07-28 04:52:25','2022-07-28 04:52:25','367e71b4-03ad-4c85-b7af-0fd63aecfd22'),(118170,69,141788,NULL,141742,1,'2022-07-28 04:52:25','2022-07-28 04:52:25','3dc4ec06-20c1-4041-acc2-d07790b74416'),(118171,85,141788,NULL,17964,1,'2022-07-28 04:52:25','2022-07-28 04:52:25','1159566e-a749-4e70-b614-eac8333f2a2f'),(118172,85,141788,NULL,17966,2,'2022-07-28 04:52:25','2022-07-28 04:52:25','534d3709-7fc9-4a37-ae4d-752d0b2597e9'),(118173,85,141788,NULL,17967,3,'2022-07-28 04:52:25','2022-07-28 04:52:25','8fce05db-7d78-4543-b95a-80a9cd1a7d76'),(118174,84,141788,NULL,18057,1,'2022-07-28 04:52:25','2022-07-28 04:52:25','39cb28b9-8b15-4dab-ae15-e8f78f53214e'),(118175,84,141788,NULL,38160,2,'2022-07-28 04:52:25','2022-07-28 04:52:25','2367ca28-3de7-4d42-be3f-4b5b09501f39'),(118176,198,141788,NULL,141758,1,'2022-07-28 04:52:25','2022-07-28 04:52:25','52555f03-7976-463c-891d-8f426cb1bb7e'),(118188,79,141790,NULL,17875,1,'2022-07-28 04:52:58','2022-07-28 04:52:58','2eb97842-d06b-4134-977d-2b22105a9c5c'),(118189,79,141790,NULL,17934,2,'2022-07-28 04:52:58','2022-07-28 04:52:58','707816bb-602d-4409-a362-7e1719e6f278'),(118190,79,141790,NULL,17881,3,'2022-07-28 04:52:58','2022-07-28 04:52:58','2427f6e2-3439-480e-91e7-5c27965918a9'),(118191,79,141790,NULL,17956,4,'2022-07-28 04:52:58','2022-07-28 04:52:58','0ab06ea6-3e11-4d30-82b6-246bbf151548'),(118192,69,141790,NULL,141742,1,'2022-07-28 04:52:58','2022-07-28 04:52:58','fb513668-99f6-4e32-9ab4-4643e1417b91'),(118193,85,141790,NULL,17964,1,'2022-07-28 04:52:58','2022-07-28 04:52:58','f7ad6d0f-7df2-47c0-a3d8-186e51e46745'),(118194,85,141790,NULL,17966,2,'2022-07-28 04:52:58','2022-07-28 04:52:58','51d35f7f-e50f-4bf0-996f-c16e511e9e97'),(118195,85,141790,NULL,17967,3,'2022-07-28 04:52:58','2022-07-28 04:52:58','90e094bf-2cdc-47fe-bc08-4af4c22acd9b'),(118196,84,141790,NULL,18057,1,'2022-07-28 04:52:58','2022-07-28 04:52:58','27309dd3-765d-445f-8912-6eecd28382b9'),(118197,84,141790,NULL,38160,2,'2022-07-28 04:52:58','2022-07-28 04:52:58','45ebb695-9e58-4c07-86f7-ab5dbbc162a2'),(118198,198,141790,NULL,141758,1,'2022-07-28 04:52:58','2022-07-28 04:52:58','bcdcff05-519a-4cb5-a0e0-43a0403c696e'),(118200,69,141792,NULL,141632,1,'2022-07-28 04:53:42','2022-07-28 04:53:42','9c0eabee-28f7-4e4e-a2e1-29702e211cb0'),(118202,69,141794,NULL,141632,1,'2022-07-28 05:25:57','2022-07-28 05:25:57','37f6a0a7-34c9-4ab1-9ab0-d742f58d0186'),(118216,79,141798,NULL,17875,1,'2022-08-02 00:05:50','2022-08-02 00:05:50','0b90620a-32f4-451f-a64e-079e7f660de8'),(118217,79,141798,NULL,17934,2,'2022-08-02 00:05:50','2022-08-02 00:05:50','8dbeeb91-1760-4a2c-a91a-113284e8ba20'),(118218,79,141798,NULL,17881,3,'2022-08-02 00:05:50','2022-08-02 00:05:50','6bde64c4-01a0-4550-8eef-2d6e6af17cc9'),(118219,79,141798,NULL,17954,4,'2022-08-02 00:05:50','2022-08-02 00:05:50','3cf38d8c-0fb4-4d16-8f88-57d23490afa2'),(118220,79,141798,NULL,17956,5,'2022-08-02 00:05:50','2022-08-02 00:05:50','1dcb0ead-eb81-4eee-83ef-2d47fde3a1e7'),(118221,69,141798,NULL,61819,1,'2022-08-02 00:05:50','2022-08-02 00:05:50','d0b0a022-9f19-47f2-835e-2e213a621a65'),(118222,85,141798,NULL,17964,1,'2022-08-02 00:05:50','2022-08-02 00:05:50','c3230aa8-e3fa-42dd-a317-c82871e0d20c'),(118223,85,141798,NULL,17965,2,'2022-08-02 00:05:50','2022-08-02 00:05:50','b27d7d24-2fe4-4c07-9233-21c17c7b365b'),(118224,85,141798,NULL,17969,3,'2022-08-02 00:05:50','2022-08-02 00:05:50','a800b66d-9e6a-47f1-bd86-8f978779abbc'),(118225,85,141798,NULL,17970,4,'2022-08-02 00:05:50','2022-08-02 00:05:50','c41b61d0-140a-4dd7-9788-cbd6bd3b36a1'),(118226,85,141798,NULL,17971,5,'2022-08-02 00:05:50','2022-08-02 00:05:50','42e9a80b-9824-43f5-898b-d1b92760764a'),(118227,84,141798,NULL,38161,1,'2022-08-02 00:05:50','2022-08-02 00:05:50','f6098add-92a3-4243-82fb-11b85849308a'),(118228,198,141798,NULL,61819,1,'2022-08-02 00:05:50','2022-08-02 00:05:50','a02a20cb-53f4-429d-8c20-a95e7d250562'),(118242,79,141800,NULL,17875,1,'2022-08-02 00:14:10','2022-08-02 00:14:10','2ea4eb14-409e-41e0-b314-2016d48cf411'),(118243,79,141800,NULL,17934,2,'2022-08-02 00:14:10','2022-08-02 00:14:10','a0c51b7b-e698-445e-9c11-b152728b2f26'),(118244,79,141800,NULL,17881,3,'2022-08-02 00:14:10','2022-08-02 00:14:10','4a2685b0-a554-43f5-80d1-b5462c2dca54'),(118245,79,141800,NULL,17954,4,'2022-08-02 00:14:10','2022-08-02 00:14:10','17874f96-24ad-458f-9dac-3d317b124f45'),(118246,79,141800,NULL,17956,5,'2022-08-02 00:14:10','2022-08-02 00:14:10','a040672b-83d4-4efb-abe6-8a84df97575a'),(118247,69,141800,NULL,61819,1,'2022-08-02 00:14:10','2022-08-02 00:14:10','72093046-5dbd-44e9-9135-99ddf4fa108c'),(118248,85,141800,NULL,17964,1,'2022-08-02 00:14:10','2022-08-02 00:14:10','bf78a0c7-73d8-4540-bda6-739e030a7e7d'),(118249,85,141800,NULL,17965,2,'2022-08-02 00:14:10','2022-08-02 00:14:10','fa27e82c-587c-4c88-af57-e2225db53fea'),(118250,85,141800,NULL,17969,3,'2022-08-02 00:14:10','2022-08-02 00:14:10','59cb85db-5a74-4a53-b72d-e984ed66915e'),(118251,85,141800,NULL,17970,4,'2022-08-02 00:14:10','2022-08-02 00:14:10','b5750eeb-75eb-4d6c-b676-f39f55208bc6'),(118252,85,141800,NULL,17971,5,'2022-08-02 00:14:10','2022-08-02 00:14:10','f55a3bae-555a-4f48-bbaf-5accb1be890e'),(118253,84,141800,NULL,38161,1,'2022-08-02 00:14:10','2022-08-02 00:14:10','808dd36d-2103-4b17-ad5c-d7b6e742e3a3'),(118254,198,141800,NULL,61819,1,'2022-08-02 00:14:10','2022-08-02 00:14:10','17267669-9639-4807-a5fd-c60ba0e007ed'),(118268,79,141807,NULL,17875,1,'2022-08-02 00:32:40','2022-08-02 00:32:40','d0841ac6-0369-45cb-91ee-484e69b7d3fd'),(118269,79,141807,NULL,17934,2,'2022-08-02 00:32:40','2022-08-02 00:32:40','f67fdc63-5db6-48b5-97db-d44b67779cd5'),(118270,79,141807,NULL,17881,3,'2022-08-02 00:32:40','2022-08-02 00:32:40','1f91a5d8-06d2-4477-9ba9-8e8bfe919ad4'),(118271,79,141807,NULL,17954,4,'2022-08-02 00:32:40','2022-08-02 00:32:40','d22766cb-1aaf-40e7-82fe-3a71e6e69c39'),(118272,79,141807,NULL,17956,5,'2022-08-02 00:32:40','2022-08-02 00:32:40','7a876b77-c227-4f9b-af53-d0f0b6a433c4'),(118273,69,141807,NULL,61819,1,'2022-08-02 00:32:40','2022-08-02 00:32:40','66ee813a-9a24-4a91-b479-cd295d0e82d5'),(118274,85,141807,NULL,17964,1,'2022-08-02 00:32:40','2022-08-02 00:32:40','0c87203c-ef84-49e3-ad67-eac3adf6532b'),(118275,85,141807,NULL,17965,2,'2022-08-02 00:32:40','2022-08-02 00:32:40','f054f56b-78f2-4920-aa5c-65ca0d1fa481'),(118276,85,141807,NULL,17969,3,'2022-08-02 00:32:40','2022-08-02 00:32:40','b6b58e8a-e431-41e2-850c-766f0b9f2b70'),(118277,85,141807,NULL,17970,4,'2022-08-02 00:32:40','2022-08-02 00:32:40','1d1c74ae-e081-4a38-8fdb-ac3c97cc7bba'),(118278,85,141807,NULL,17971,5,'2022-08-02 00:32:40','2022-08-02 00:32:40','4a5a7bdf-90a8-45b2-876e-64d0d4621caa'),(118279,84,141807,NULL,38161,1,'2022-08-02 00:32:40','2022-08-02 00:32:40','199d1bd6-537f-4ab8-9591-1ad69452d0df'),(118280,198,141807,NULL,61819,1,'2022-08-02 00:32:40','2022-08-02 00:32:40','a648cba7-54d8-4223-88b3-ff0d1157c892'),(118294,79,141809,NULL,17875,1,'2022-08-02 03:43:02','2022-08-02 03:43:02','e0529db6-370a-4f23-81f6-5d9466629a58'),(118295,79,141809,NULL,17934,2,'2022-08-02 03:43:02','2022-08-02 03:43:02','61d0e182-ec10-4304-afcd-dfcbfb917fcd'),(118296,79,141809,NULL,17881,3,'2022-08-02 03:43:02','2022-08-02 03:43:02','29ab78f2-d964-46d7-81e9-74ae2c073a43'),(118297,79,141809,NULL,17954,4,'2022-08-02 03:43:02','2022-08-02 03:43:02','3e8dd431-1722-4604-9315-8106360b0ec8'),(118298,79,141809,NULL,17956,5,'2022-08-02 03:43:02','2022-08-02 03:43:02','ab62294c-0ff9-4a54-831c-c75bd1b3bbf6'),(118299,69,141809,NULL,61819,1,'2022-08-02 03:43:02','2022-08-02 03:43:02','f7c865d5-7d82-460c-89bf-3a302bc4dc94'),(118300,85,141809,NULL,17964,1,'2022-08-02 03:43:02','2022-08-02 03:43:02','67a50fdf-ef6f-4bad-92d8-8b9e5a01799b'),(118301,85,141809,NULL,17965,2,'2022-08-02 03:43:02','2022-08-02 03:43:02','5032c77a-4bfd-4b18-9962-28bfe56a999d'),(118302,85,141809,NULL,17969,3,'2022-08-02 03:43:02','2022-08-02 03:43:02','26ea4dfa-d10c-4149-bc63-0ca0988baf3c'),(118303,85,141809,NULL,17970,4,'2022-08-02 03:43:02','2022-08-02 03:43:02','4dd69706-bae2-4c60-bd8d-ecbcd87aa2a7'),(118304,85,141809,NULL,17971,5,'2022-08-02 03:43:02','2022-08-02 03:43:02','8bdb9764-7acc-4652-bf55-8ea83b0665e7'),(118305,84,141809,NULL,38161,1,'2022-08-02 03:43:02','2022-08-02 03:43:02','07dd644f-a435-4d13-b47b-d287c3fe401c'),(118306,198,141809,NULL,61819,1,'2022-08-02 03:43:02','2022-08-02 03:43:02','5ca1a443-fc92-4589-9ded-3b72f709a408'),(118307,79,141811,NULL,17875,1,'2022-08-05 05:36:54','2022-08-05 05:36:54','2a012dff-ee5e-4268-be1b-a0b14f6daa92'),(118308,79,141811,NULL,17954,2,'2022-08-05 05:36:54','2022-08-05 05:36:54','f38c7146-d396-4ed1-8cc2-65f2a2d90dea'),(118309,79,141811,NULL,17956,3,'2022-08-05 05:36:54','2022-08-05 05:36:54','cdd4e24d-6c7c-4eef-b797-4b0c99ed25dc'),(118310,69,141811,NULL,48550,1,'2022-08-05 05:36:54','2022-08-05 05:36:54','0a087b6f-9b9b-43b4-9016-6ec459edf0aa'),(118311,85,141811,NULL,17964,1,'2022-08-05 05:36:54','2022-08-05 05:36:54','868c93fe-da25-4033-b28f-9b15f3e47934'),(118312,85,141811,NULL,17965,2,'2022-08-05 05:36:54','2022-08-05 05:36:54','e991430f-fe76-4552-9858-f4204ad957a8'),(118313,85,141811,NULL,17966,3,'2022-08-05 05:36:54','2022-08-05 05:36:54','53a4319b-bbfb-4237-929d-56a1c03bdbee'),(118314,85,141811,NULL,17967,4,'2022-08-05 05:36:54','2022-08-05 05:36:54','5aa010a0-4308-4385-a456-36466d70e641'),(118315,85,141811,NULL,17968,5,'2022-08-05 05:36:54','2022-08-05 05:36:54','89ee6178-df24-48e4-89c1-527b59294581'),(118316,85,141811,NULL,17970,6,'2022-08-05 05:36:54','2022-08-05 05:36:54','346ff84e-bf36-405d-9852-7d63be145248'),(118317,85,141811,NULL,17971,7,'2022-08-05 05:36:54','2022-08-05 05:36:54','7371921e-ac14-4947-bc6b-a19933cd80f8'),(118318,198,141811,NULL,48550,1,'2022-08-05 05:36:54','2022-08-05 05:36:54','7a7bc6a4-8c22-4a73-b1e6-f3cd8192e762'),(118320,198,140246,NULL,94211,1,'2022-08-05 06:09:43','2022-08-05 06:09:43','14510686-1858-4fc7-87fe-de8ef5e7ce0e'),(118321,198,141816,NULL,94211,1,'2022-08-05 06:09:43','2022-08-05 06:09:43','332e25e5-58a7-40f0-9c1e-d87884d1f0c8'),(118326,85,140060,NULL,17965,1,'2022-08-08 06:14:50','2022-08-08 06:14:50','8c42d4e5-ef57-4a19-8811-cae076195d2c'),(118327,85,140060,NULL,17970,2,'2022-08-08 06:14:50','2022-08-08 06:14:50','8ae90b80-2b36-4d56-b2e4-fc54b407835f'),(118328,84,140060,NULL,38159,1,'2022-08-08 06:14:50','2022-08-08 06:14:50','1ea37f29-4fb7-4f0f-b9a2-ff50fbd9812e'),(118329,69,141820,NULL,140080,1,'2022-08-08 06:14:50','2022-08-08 06:14:50','450a53a9-fbd8-445d-b19c-fefc753987cc'),(118330,85,141820,NULL,17965,1,'2022-08-08 06:14:50','2022-08-08 06:14:50','99ef9e0a-143e-4412-919a-0a887fef2541'),(118331,85,141820,NULL,17970,2,'2022-08-08 06:14:50','2022-08-08 06:14:50','fbc718b1-ff07-488e-a30f-762d01a868d4'),(118332,84,141820,NULL,38159,1,'2022-08-08 06:14:50','2022-08-08 06:14:50','692a9a06-737e-4d86-be15-6cde75e935c6'),(118336,85,141493,NULL,17966,1,'2022-08-08 06:16:07','2022-08-08 06:16:07','2e194ca0-d34e-43f1-a21a-e10b88fd25c2'),(118337,85,141493,NULL,17969,2,'2022-08-08 06:16:07','2022-08-08 06:16:07','c3ab19ab-be45-4071-abd1-934fea53f7f4'),(118338,85,141493,NULL,17970,3,'2022-08-08 06:16:07','2022-08-08 06:16:07','b6a00dbb-c11d-4a8b-9d9b-e82ee2a2ab56'),(118339,69,141821,NULL,141522,1,'2022-08-08 06:16:07','2022-08-08 06:16:07','93df351f-b108-4872-a235-fe3971dc9387'),(118340,85,141821,NULL,17966,1,'2022-08-08 06:16:07','2022-08-08 06:16:07','9c5fcdb8-61b2-4b7e-b694-40ff05e5d946'),(118341,85,141821,NULL,17969,2,'2022-08-08 06:16:07','2022-08-08 06:16:07','e0234d24-978d-4ef7-baa1-70ae27d5f4e0'),(118342,85,141821,NULL,17970,3,'2022-08-08 06:16:07','2022-08-08 06:16:07','6f582bd7-fa99-477e-9126-1c852b5706e2'),(118343,198,141821,NULL,141522,1,'2022-08-08 06:16:07','2022-08-08 06:16:07','8c94aac9-6440-4289-aefe-f49118bfc793'),(118356,79,141823,NULL,17875,1,'2022-08-08 06:16:57','2022-08-08 06:16:57','13d93e85-7256-4122-b9d2-2216ffddbe24'),(118357,79,141823,NULL,17954,2,'2022-08-08 06:16:57','2022-08-08 06:16:57','fe60dea4-d597-4e51-9eb0-da2ad7e2621c'),(118358,79,141823,NULL,17956,3,'2022-08-08 06:16:57','2022-08-08 06:16:57','af0c84c5-57b6-474d-869f-d8bf9f73bdfc'),(118359,69,141823,NULL,48550,1,'2022-08-08 06:16:57','2022-08-08 06:16:57','502166e0-312f-4b11-a2c1-ac466df53b7c'),(118360,85,141823,NULL,17964,1,'2022-08-08 06:16:57','2022-08-08 06:16:57','0cafbcdc-40fd-4aed-b2c3-bfe55c9acea3'),(118361,85,141823,NULL,17965,2,'2022-08-08 06:16:57','2022-08-08 06:16:57','4be459e7-148c-40a4-b69e-084049052b44'),(118362,85,141823,NULL,17966,3,'2022-08-08 06:16:57','2022-08-08 06:16:57','643528c6-f4fb-435b-a0ef-bcc4bfe1c89d'),(118363,85,141823,NULL,17967,4,'2022-08-08 06:16:57','2022-08-08 06:16:57','11996d58-50ab-46de-8c81-ac65cca52e61'),(118364,85,141823,NULL,17968,5,'2022-08-08 06:16:57','2022-08-08 06:16:57','47447606-1161-49ee-9970-b12c38f0f321'),(118365,85,141823,NULL,17970,6,'2022-08-08 06:16:57','2022-08-08 06:16:57','e96c7028-eeeb-40e8-87e3-f305d8038920'),(118366,85,141823,NULL,17971,7,'2022-08-08 06:16:57','2022-08-08 06:16:57','78b0a591-047d-43a1-9867-83d480e7611d'),(118367,198,141823,NULL,48550,1,'2022-08-08 06:16:57','2022-08-08 06:16:57','03391d80-0bd6-4994-965a-67bbb72c0b3f'),(118380,79,141825,NULL,17875,1,'2022-08-08 06:17:27','2022-08-08 06:17:27','8e888cef-76c0-4b7a-899b-039ed8030627'),(118381,79,141825,NULL,17954,2,'2022-08-08 06:17:27','2022-08-08 06:17:27','92927ceb-9ed1-4411-9c9f-013bc67c2210'),(118382,79,141825,NULL,17956,3,'2022-08-08 06:17:27','2022-08-08 06:17:27','58391f46-4e18-4486-bf98-2c27e35279bf'),(118383,69,141825,NULL,48550,1,'2022-08-08 06:17:27','2022-08-08 06:17:27','2af530a1-eaf1-47a8-97c5-4fb7918167c4'),(118384,85,141825,NULL,17964,1,'2022-08-08 06:17:27','2022-08-08 06:17:27','275f3f7d-9b8d-4b6c-9396-52d04881fadd'),(118385,85,141825,NULL,17965,2,'2022-08-08 06:17:27','2022-08-08 06:17:27','db22b141-d479-46c8-808b-9412f4682710'),(118386,85,141825,NULL,17966,3,'2022-08-08 06:17:27','2022-08-08 06:17:27','1ba0e52c-3a7c-4543-bc49-636e32f52039'),(118387,85,141825,NULL,17967,4,'2022-08-08 06:17:27','2022-08-08 06:17:27','9b783a58-cbfc-432e-98cc-5fa5131a6d1d'),(118388,85,141825,NULL,17968,5,'2022-08-08 06:17:27','2022-08-08 06:17:27','db253d1c-63ec-4c7c-a8bd-5996359d3f7f'),(118389,85,141825,NULL,17970,6,'2022-08-08 06:17:27','2022-08-08 06:17:27','648e8331-1437-47f2-8169-c380005b532a'),(118390,85,141825,NULL,17971,7,'2022-08-08 06:17:27','2022-08-08 06:17:27','92244405-5fff-4c03-9195-d7e4b0e44820'),(118391,198,141825,NULL,48550,1,'2022-08-08 06:17:27','2022-08-08 06:17:27','42fb6a0c-c5c6-49a4-bf31-9cfdb0d1f70e'),(118396,69,141827,NULL,140080,1,'2022-08-08 06:19:28','2022-08-08 06:19:28','23d438bb-6410-470d-8a12-61a23bebc006'),(118397,85,141827,NULL,17965,1,'2022-08-08 06:19:28','2022-08-08 06:19:28','66d45a86-4f34-4c58-b75f-e273f9b9d24d'),(118398,85,141827,NULL,17970,2,'2022-08-08 06:19:28','2022-08-08 06:19:28','f6780cf1-ffed-4fdc-92ed-36459f6d8235'),(118399,84,141827,NULL,38159,1,'2022-08-08 06:19:28','2022-08-08 06:19:28','9cb623b8-0e7a-420f-847f-19d34fbbbbf1'),(118410,79,141829,NULL,17875,1,'2022-08-08 06:19:55','2022-08-08 06:19:55','a6536c82-12d9-45e1-9fbf-2b474fa55322'),(118411,79,141829,NULL,17954,2,'2022-08-08 06:19:55','2022-08-08 06:19:55','ace1056c-e063-4541-b66a-f8f0576ae31f'),(118412,69,141829,NULL,48452,1,'2022-08-08 06:19:55','2022-08-08 06:19:55','d4510968-d3fc-40a6-a162-46d2cdf74b2f'),(118413,85,141829,NULL,17964,1,'2022-08-08 06:19:55','2022-08-08 06:19:55','7b21aa0b-404c-42a5-9663-ff60e203e53b'),(118414,85,141829,NULL,17966,2,'2022-08-08 06:19:55','2022-08-08 06:19:55','9480f3b2-93c5-483e-8eb1-c1af4e0d84a3'),(118415,85,141829,NULL,17968,3,'2022-08-08 06:19:55','2022-08-08 06:19:55','0d912f59-8ddb-46e3-8f67-cefe38f48f27'),(118416,85,141829,NULL,17970,4,'2022-08-08 06:19:55','2022-08-08 06:19:55','e440b52e-6e73-458b-8b22-b1c8e1f9f97e'),(118417,85,141829,NULL,17971,5,'2022-08-08 06:19:55','2022-08-08 06:19:55','1536e033-0865-4020-b61d-9ef6613bb93c'),(118418,84,141829,NULL,18057,1,'2022-08-08 06:19:55','2022-08-08 06:19:55','c22f4ac7-547e-4596-924e-cd78186dd283'),(118419,198,141829,NULL,48452,1,'2022-08-08 06:19:55','2022-08-08 06:19:55','6bfe585d-f213-423b-bb4f-5f2041d6ed47'),(118434,79,141831,NULL,17875,1,'2022-08-08 06:20:26','2022-08-08 06:20:26','b5444860-0654-43f6-8c52-41b831c4fb06'),(118435,79,141831,NULL,17934,2,'2022-08-08 06:20:26','2022-08-08 06:20:26','96085b7b-52d1-4e98-8a9e-995abeb29f17'),(118436,79,141831,NULL,17954,3,'2022-08-08 06:20:26','2022-08-08 06:20:26','8ef0212b-0ea0-4de3-9521-6a6a669fcc6c'),(118437,79,141831,NULL,17956,4,'2022-08-08 06:20:26','2022-08-08 06:20:26','25b02e2d-a084-44bd-84d4-c1be4f2df6c1'),(118438,69,141831,NULL,48476,1,'2022-08-08 06:20:26','2022-08-08 06:20:26','9b4b4944-be42-47c7-be13-078ccdc15071'),(118439,85,141831,NULL,17964,1,'2022-08-08 06:20:26','2022-08-08 06:20:26','9387f736-2126-40ec-8406-2fb712d2afb2'),(118440,85,141831,NULL,17966,2,'2022-08-08 06:20:26','2022-08-08 06:20:26','4cb870a4-a254-4fd6-a2ca-44ca34e68573'),(118441,85,141831,NULL,17967,3,'2022-08-08 06:20:26','2022-08-08 06:20:26','068d6014-229e-4d63-a6fd-91c9702ba9fb'),(118442,85,141831,NULL,17968,4,'2022-08-08 06:20:26','2022-08-08 06:20:26','6775d208-2776-4cfe-b88a-3d0b751b98c1'),(118443,85,141831,NULL,17970,5,'2022-08-08 06:20:26','2022-08-08 06:20:26','d71fb688-2323-4abe-af84-68284d5afa1a'),(118444,85,141831,NULL,17971,6,'2022-08-08 06:20:26','2022-08-08 06:20:26','79a68c3f-8836-4757-ac36-d6ec22a02a28'),(118445,84,141831,NULL,18057,1,'2022-08-08 06:20:26','2022-08-08 06:20:26','a891c2ef-e33c-448c-979d-35dd7ed23926'),(118446,84,141831,NULL,38160,2,'2022-08-08 06:20:26','2022-08-08 06:20:26','fb2c48c7-d270-4065-ac31-9a9f5eb7a892'),(118447,198,141831,NULL,48476,1,'2022-08-08 06:20:26','2022-08-08 06:20:26','0c6324bd-0539-49cc-8a0e-470a2e26b9e3'),(118452,69,141833,NULL,140080,1,'2022-08-08 06:21:21','2022-08-08 06:21:21','024e36e7-3f71-42e1-84f5-7b24865162a2'),(118453,85,141833,NULL,17965,1,'2022-08-08 06:21:21','2022-08-08 06:21:21','be1f3b89-5cc3-4cdb-9f8a-740beb87c576'),(118454,85,141833,NULL,17970,2,'2022-08-08 06:21:21','2022-08-08 06:21:21','c55ad33a-5911-481b-bda0-496ee2b79246'),(118455,84,141833,NULL,38159,1,'2022-08-08 06:21:21','2022-08-08 06:21:21','b6156a98-6c81-4628-b6ba-bbb97d7c6259'),(118468,79,141835,NULL,17875,1,'2022-08-08 06:22:13','2022-08-08 06:22:13','d659488a-7c14-4e6e-b6a1-2a54f0ddcb19'),(118469,79,141835,NULL,17881,2,'2022-08-08 06:22:13','2022-08-08 06:22:13','1e09a270-1c2a-41da-acc6-9e28386dd3bc'),(118470,79,141835,NULL,1,3,'2022-08-08 06:22:13','2022-08-08 06:22:13','c3c4b25b-5443-4a1a-a06a-8dca5b9ab40a'),(118471,79,141835,NULL,17954,4,'2022-08-08 06:22:13','2022-08-08 06:22:13','1725330b-5060-4873-b83d-0fa919e669ef'),(118472,79,141835,NULL,17956,5,'2022-08-08 06:22:13','2022-08-08 06:22:13','4e49641a-3623-462b-a9b7-a43b9afb6f63'),(118473,69,141835,NULL,48184,1,'2022-08-08 06:22:13','2022-08-08 06:22:13','f22a8c18-1455-4af5-8758-e6fc85f0d96d'),(118474,85,141835,NULL,17964,1,'2022-08-08 06:22:13','2022-08-08 06:22:13','9688eaa1-bc03-40b0-8ca4-9351bd2f1b82'),(118475,85,141835,NULL,17965,2,'2022-08-08 06:22:13','2022-08-08 06:22:13','9f14ff34-a2a1-4005-bd87-a7435f33170a'),(118476,85,141835,NULL,17970,3,'2022-08-08 06:22:13','2022-08-08 06:22:13','76d32818-563d-4dd2-aada-8c9839b49590'),(118477,85,141835,NULL,17971,4,'2022-08-08 06:22:13','2022-08-08 06:22:13','227578fc-91c7-4075-a60c-6abbf5a5b12e'),(118478,84,141835,NULL,38158,1,'2022-08-08 06:22:13','2022-08-08 06:22:13','7fecfc59-99de-491b-b45a-f70a3c73a083'),(118479,198,141835,NULL,48184,1,'2022-08-08 06:22:13','2022-08-08 06:22:13','19e0a42f-7f3d-421d-8d78-f02521b6f584'),(118484,69,141837,NULL,140080,1,'2022-08-08 06:22:47','2022-08-08 06:22:47','65399b5d-06ef-4a6d-bb32-b75a90f6385d'),(118485,85,141837,NULL,17965,1,'2022-08-08 06:22:47','2022-08-08 06:22:47','9a1c1965-31c0-4fca-b9d3-98b8b8b2bf23'),(118486,85,141837,NULL,17970,2,'2022-08-08 06:22:47','2022-08-08 06:22:47','bf411cdb-b7fb-44e0-8d10-cabd967d6ac4'),(118487,84,141837,NULL,38159,1,'2022-08-08 06:22:47','2022-08-08 06:22:47','876ddd38-ecb6-477b-85d9-13f94e5386fa'),(118501,79,141839,NULL,17875,1,'2022-08-08 06:23:47','2022-08-08 06:23:47','56b960a0-4fed-4fb6-adcc-ccf205a62e8f'),(118502,79,141839,NULL,17934,2,'2022-08-08 06:23:47','2022-08-08 06:23:47','1f061772-098d-455f-828e-0c57457bf4f1'),(118503,79,141839,NULL,17954,3,'2022-08-08 06:23:47','2022-08-08 06:23:47','d68869d8-3a7d-4800-917c-7447da0c7e2b'),(118504,79,141839,NULL,17956,4,'2022-08-08 06:23:47','2022-08-08 06:23:47','262180ea-c14f-4b40-ab28-77b844d81da9'),(118505,69,141839,NULL,48535,1,'2022-08-08 06:23:48','2022-08-08 06:23:48','2a693772-eeac-41ff-967c-c606698896b4'),(118506,85,141839,NULL,17964,1,'2022-08-08 06:23:48','2022-08-08 06:23:48','8ce4cd55-65ce-4e85-b218-de6e2c73a727'),(118507,85,141839,NULL,17965,2,'2022-08-08 06:23:48','2022-08-08 06:23:48','ab22fc91-4149-4bf7-8f6c-908a6707fcc2'),(118508,85,141839,NULL,17966,3,'2022-08-08 06:23:48','2022-08-08 06:23:48','273ed972-a704-4c03-920a-a8b413bdc286'),(118509,85,141839,NULL,17968,4,'2022-08-08 06:23:48','2022-08-08 06:23:48','8d3c286f-1a8e-4d95-9fd3-f77749004dcd'),(118510,85,141839,NULL,17969,5,'2022-08-08 06:23:48','2022-08-08 06:23:48','85bbad9d-7c14-4588-addc-cc087cac4317'),(118511,85,141839,NULL,17971,6,'2022-08-08 06:23:48','2022-08-08 06:23:48','922a1bd8-768b-48da-84fd-29ce1447ac18'),(118512,84,141839,NULL,38159,1,'2022-08-08 06:23:48','2022-08-08 06:23:48','8c93138a-1d6e-4cfb-a473-d49883ad0928'),(118513,198,141839,NULL,48535,1,'2022-08-08 06:23:48','2022-08-08 06:23:48','b339e281-827d-4ea0-8ded-de38b1491057'),(118525,79,141841,NULL,17875,1,'2022-08-08 06:24:22','2022-08-08 06:24:22','45f42495-35cb-40c0-9d8c-c93488eb4e87'),(118526,79,141841,NULL,17934,2,'2022-08-08 06:24:22','2022-08-08 06:24:22','cad5f94b-22f0-4598-9c84-11335328aad1'),(118527,79,141841,NULL,17956,3,'2022-08-08 06:24:22','2022-08-08 06:24:22','0c0012a5-a004-45bb-91e6-ebd71b44dfee'),(118528,69,141841,NULL,48538,1,'2022-08-08 06:24:22','2022-08-08 06:24:22','a244b29b-ca4d-4705-98f1-9337fd838b88'),(118529,85,141841,NULL,17964,1,'2022-08-08 06:24:22','2022-08-08 06:24:22','4292a22e-c242-4d78-9a74-a794f2b04512'),(118530,85,141841,NULL,17966,2,'2022-08-08 06:24:22','2022-08-08 06:24:22','730a55d8-9fb6-40ec-ab37-b92975af4acc'),(118531,85,141841,NULL,17968,3,'2022-08-08 06:24:22','2022-08-08 06:24:22','ccdd1545-810a-4270-a0c0-5c1a634436ae'),(118532,85,141841,NULL,17970,4,'2022-08-08 06:24:22','2022-08-08 06:24:22','15ae26cd-b7b9-4d01-9873-9f07f902861a'),(118533,85,141841,NULL,17971,5,'2022-08-08 06:24:22','2022-08-08 06:24:22','87db09f6-c6bd-4807-a6ad-344fffe8b924'),(118534,84,141841,NULL,38157,1,'2022-08-08 06:24:22','2022-08-08 06:24:22','23940004-e864-461e-bc7a-cb1ac03f600a'),(118535,198,141841,NULL,48538,1,'2022-08-08 06:24:22','2022-08-08 06:24:22','89b8626c-a884-4b37-b83f-47362458ce3c'),(118547,79,141843,NULL,17875,1,'2022-08-08 06:26:22','2022-08-08 06:26:22','9b43521f-d03a-4b0d-96a6-8bd1f229428b'),(118548,79,141843,NULL,17934,2,'2022-08-08 06:26:22','2022-08-08 06:26:22','a21ee7c2-b60f-4e1b-b4eb-94e05b0935d3'),(118549,79,141843,NULL,17956,3,'2022-08-08 06:26:22','2022-08-08 06:26:22','7b07f881-223c-4718-8ae4-8dd36b1094d3'),(118550,69,141843,NULL,48538,1,'2022-08-08 06:26:22','2022-08-08 06:26:22','ebb76d88-d684-4b16-b516-8dbe4011e020'),(118551,85,141843,NULL,17964,1,'2022-08-08 06:26:22','2022-08-08 06:26:22','89e0ab68-f530-4bf6-87c9-401e4caab33d'),(118552,85,141843,NULL,17966,2,'2022-08-08 06:26:22','2022-08-08 06:26:22','7f4a0312-128f-4c00-8924-39b3e5bbf543'),(118553,85,141843,NULL,17968,3,'2022-08-08 06:26:22','2022-08-08 06:26:22','70bd0943-16cc-47fb-8957-00285b922993'),(118554,85,141843,NULL,17970,4,'2022-08-08 06:26:22','2022-08-08 06:26:22','be95ad9f-b5f0-45d7-b5ac-2a07c55022f0'),(118555,85,141843,NULL,17971,5,'2022-08-08 06:26:22','2022-08-08 06:26:22','609f9b9c-683c-4c96-8a05-e013ab92e668'),(118556,84,141843,NULL,38157,1,'2022-08-08 06:26:22','2022-08-08 06:26:22','c4157046-10d5-40c4-acb6-ed1ec76f3b77'),(118557,198,141843,NULL,48538,1,'2022-08-08 06:26:22','2022-08-08 06:26:22','4c38e568-cab6-4505-96a5-737b765c47e3'),(118576,79,141845,NULL,17875,1,'2022-08-08 06:26:59','2022-08-08 06:26:59','cbc388c6-0d13-4405-b7e7-3de058c134d8'),(118577,79,141845,NULL,17887,2,'2022-08-08 06:26:59','2022-08-08 06:26:59','2fdafac4-0a8b-41be-9d52-d94545bd7ad8'),(118578,79,141845,NULL,17899,3,'2022-08-08 06:26:59','2022-08-08 06:26:59','1cabe4f8-7aac-489a-9cf7-f72a84543708'),(118579,79,141845,NULL,17934,4,'2022-08-08 06:26:59','2022-08-08 06:26:59','a0244504-aabb-4664-9d49-5cb754c3bd7a'),(118580,79,141845,NULL,17941,5,'2022-08-08 06:26:59','2022-08-08 06:26:59','cab90cc9-459e-4370-9a93-ce671169a3aa'),(118581,79,141845,NULL,1,6,'2022-08-08 06:26:59','2022-08-08 06:26:59','120f5381-5e13-401d-8b91-613a4b7ffaed'),(118582,79,141845,NULL,17956,7,'2022-08-08 06:26:59','2022-08-08 06:26:59','99d4bb3a-35f3-4ce1-8c7c-e7bc3484d90c'),(118583,79,141845,NULL,17996,8,'2022-08-08 06:26:59','2022-08-08 06:26:59','d6949f0b-6e00-4421-b936-c10d4bae6cd5'),(118584,69,141845,NULL,61826,1,'2022-08-08 06:26:59','2022-08-08 06:26:59','93c20517-592a-40a0-b918-6429619f010d'),(118585,85,141845,NULL,17964,1,'2022-08-08 06:26:59','2022-08-08 06:26:59','c5085cd4-f303-49e8-967b-c86c3670d24f'),(118586,85,141845,NULL,17965,2,'2022-08-08 06:26:59','2022-08-08 06:26:59','4b9457e7-e510-496d-9666-23a9798bdb70'),(118587,85,141845,NULL,17966,3,'2022-08-08 06:26:59','2022-08-08 06:26:59','64d09997-da45-477b-b5f5-80659cdad19c'),(118588,85,141845,NULL,17968,4,'2022-08-08 06:26:59','2022-08-08 06:26:59','ca547fc4-82a0-4239-883c-0baa3f188cb6'),(118589,85,141845,NULL,17969,5,'2022-08-08 06:26:59','2022-08-08 06:26:59','4d25ac6f-7c7b-4da4-8974-7d7071f35e8e'),(118590,85,141845,NULL,17970,6,'2022-08-08 06:26:59','2022-08-08 06:26:59','10f05eaf-88c3-42e2-962d-fa9fcce8c85c'),(118591,85,141845,NULL,17971,7,'2022-08-08 06:26:59','2022-08-08 06:26:59','7a1c5fe5-2e56-437a-ba07-784d9f8c69dd'),(118592,84,141845,NULL,38160,1,'2022-08-08 06:26:59','2022-08-08 06:26:59','5e989fa9-d0fa-4751-805a-eff989346559'),(118593,198,141845,NULL,61826,1,'2022-08-08 06:26:59','2022-08-08 06:26:59','362d9b9c-f3d4-4f26-b386-618f6bb1e07e'),(118595,79,141846,NULL,17875,1,'2022-08-08 06:27:49','2022-08-08 06:27:49','529214e0-201e-45f1-b7b2-7cafe9d5f516'),(118596,79,141846,NULL,17887,2,'2022-08-08 06:27:49','2022-08-08 06:27:49','b578bb66-6e88-4a0b-bc1d-2f2f722be7fc'),(118597,79,141846,NULL,17899,3,'2022-08-08 06:27:49','2022-08-08 06:27:49','c4f1efe4-4ae9-4e45-b057-ad9200d67790'),(118598,79,141846,NULL,17934,4,'2022-08-08 06:27:49','2022-08-08 06:27:49','58457178-d678-45ef-946d-4a237867700b'),(118599,79,141846,NULL,17941,5,'2022-08-08 06:27:49','2022-08-08 06:27:49','26e64c68-1f7b-451f-91a9-82b927b83137'),(118600,79,141846,NULL,1,6,'2022-08-08 06:27:49','2022-08-08 06:27:49','71f0dc04-b6ae-40b3-9556-e278bb8c4a92'),(118601,79,141846,NULL,17954,7,'2022-08-08 06:27:49','2022-08-08 06:27:49','48b7350b-a4db-42b5-922f-57e2400bc06e'),(118602,79,141846,NULL,17956,8,'2022-08-08 06:27:49','2022-08-08 06:27:49','8c9167cc-a9e6-4932-a891-d94910e4ce4b'),(118603,79,141846,NULL,17996,9,'2022-08-08 06:27:49','2022-08-08 06:27:49','aad644b4-ca41-4d3e-9f2d-ef9a8a7401ea'),(118604,69,141846,NULL,30441,1,'2022-08-08 06:27:49','2022-08-08 06:27:49','03fca4d1-8076-4223-b5d4-22f378e11460'),(118605,85,141846,NULL,17964,1,'2022-08-08 06:27:49','2022-08-08 06:27:49','c089ae54-aff0-4236-9f73-867b8568b656'),(118606,85,141846,NULL,17965,2,'2022-08-08 06:27:49','2022-08-08 06:27:49','3c4188d2-45e1-4777-8fc7-d22e41b5f60f'),(118607,85,141846,NULL,17966,3,'2022-08-08 06:27:49','2022-08-08 06:27:49','5514bbc9-ee54-4284-9450-5bab7b69c89e'),(118608,85,141846,NULL,17968,4,'2022-08-08 06:27:49','2022-08-08 06:27:49','f2ae742e-c225-49fe-9fe5-45ffd52725d6'),(118609,85,141846,NULL,17969,5,'2022-08-08 06:27:49','2022-08-08 06:27:49','e5deda26-e079-4c30-9d66-c2c5dac4966b'),(118610,85,141846,NULL,17971,6,'2022-08-08 06:27:49','2022-08-08 06:27:49','c2a4112b-6f62-4d60-a35e-fa06764bab24'),(118611,84,141846,NULL,38157,1,'2022-08-08 06:27:49','2022-08-08 06:27:49','785482e0-c1a2-4ea0-8396-7adbf7169a8d'),(118612,198,141846,NULL,30441,1,'2022-08-08 06:27:49','2022-08-08 06:27:49','51b91673-c07e-4282-928f-eb601ee351df'),(118621,69,141848,NULL,27826,1,'2022-08-08 06:28:55','2022-08-08 06:28:55','782bea3a-4e9c-445b-931e-107971514e49'),(118622,85,141848,NULL,17964,1,'2022-08-08 06:28:55','2022-08-08 06:28:55','884b9311-7f9b-40b4-96fc-29a89b08e712'),(118623,85,141848,NULL,17966,2,'2022-08-08 06:28:55','2022-08-08 06:28:55','dac6be82-fd1c-495f-80a2-114df1470a40'),(118624,85,141848,NULL,17969,3,'2022-08-08 06:28:55','2022-08-08 06:28:55','5048108b-1106-43f7-995f-1433b6140df5'),(118625,85,141848,NULL,17970,4,'2022-08-08 06:28:55','2022-08-08 06:28:55','4ae5ef8a-1dcf-4a4e-9f55-78afdba82d41'),(118626,85,141848,NULL,17971,5,'2022-08-08 06:28:55','2022-08-08 06:28:55','22cd2262-a56e-4306-810b-fab5cede6286'),(118627,84,141848,NULL,38159,1,'2022-08-08 06:28:55','2022-08-08 06:28:55','fa8d8233-8dec-4ad0-b646-d84979036bbb'),(118628,198,141848,NULL,27826,1,'2022-08-08 06:28:55','2022-08-08 06:28:55','a187b3b5-f455-4b98-be18-577c36673b2c'),(118637,69,141850,NULL,27826,1,'2022-08-08 06:29:38','2022-08-08 06:29:38','7088795e-b470-4fa3-9aed-256a2831070d'),(118638,85,141850,NULL,17964,1,'2022-08-08 06:29:38','2022-08-08 06:29:38','ac0d0bcb-e421-4997-b62b-9c4f123f0b99'),(118639,85,141850,NULL,17966,2,'2022-08-08 06:29:38','2022-08-08 06:29:38','ccd94148-e1e6-4d7f-9fa0-2055a09ae4a2'),(118640,85,141850,NULL,17969,3,'2022-08-08 06:29:38','2022-08-08 06:29:38','94e9b46c-02a6-493d-908f-c127413561fd'),(118641,85,141850,NULL,17970,4,'2022-08-08 06:29:38','2022-08-08 06:29:38','6ca8d22e-3c77-48fe-914b-27d48cd39d90'),(118642,85,141850,NULL,17971,5,'2022-08-08 06:29:38','2022-08-08 06:29:38','be9093f0-876f-4dc0-904d-554e93ad12d5'),(118643,84,141850,NULL,38159,1,'2022-08-08 06:29:38','2022-08-08 06:29:38','d3f9ee77-6a47-486b-b074-7604e24d8481'),(118644,198,141850,NULL,27826,1,'2022-08-08 06:29:38','2022-08-08 06:29:38','b866a12c-4706-4fb8-8517-dbd4cf7b6071'),(118653,69,141852,NULL,27826,1,'2022-08-08 06:30:06','2022-08-08 06:30:06','dac92e18-7455-4511-80e1-05cc1c558d22'),(118654,85,141852,NULL,17964,1,'2022-08-08 06:30:06','2022-08-08 06:30:06','3c48bf7b-d052-4bef-8bbf-9d8715db0b53'),(118655,85,141852,NULL,17966,2,'2022-08-08 06:30:06','2022-08-08 06:30:06','1c168e09-0211-4d4f-a45b-c34eed64408d'),(118656,85,141852,NULL,17969,3,'2022-08-08 06:30:06','2022-08-08 06:30:06','a8c7853e-19e7-47ff-bdb9-1362b07ef3c0'),(118657,85,141852,NULL,17970,4,'2022-08-08 06:30:06','2022-08-08 06:30:06','eeade8de-2fce-4745-97c8-e53f15217f5c'),(118658,85,141852,NULL,17971,5,'2022-08-08 06:30:06','2022-08-08 06:30:06','78e2556f-f61b-4c43-ab01-2c85a77c5d02'),(118659,84,141852,NULL,38159,1,'2022-08-08 06:30:06','2022-08-08 06:30:06','ad613a7b-fe11-4b0e-a1fe-65953f630720'),(118660,198,141852,NULL,27826,1,'2022-08-08 06:30:06','2022-08-08 06:30:06','26d39ab6-43c8-4374-a282-ea1a79656ab6'),(118662,84,18168,NULL,18057,1,'2022-08-08 06:30:58','2022-08-08 06:30:58','adacbaa6-e257-47e1-acb5-58559d87dd9c'),(118663,84,18168,NULL,38160,2,'2022-08-08 06:30:58','2022-08-08 06:30:58','e9b4e841-a388-4fed-bc1a-7f8ef9248339'),(118664,79,141853,NULL,17875,1,'2022-08-08 06:30:58','2022-08-08 06:30:58','3bc05e8f-f433-4d58-adbd-8c15e26c2c91'),(118665,79,141853,NULL,17934,2,'2022-08-08 06:30:58','2022-08-08 06:30:58','564529b7-2279-4ea9-ba9f-c960c608ed21'),(118666,79,141853,NULL,17954,3,'2022-08-08 06:30:58','2022-08-08 06:30:58','864f310b-59e3-4fce-a979-78f7970d97d4'),(118667,79,141853,NULL,17956,4,'2022-08-08 06:30:58','2022-08-08 06:30:58','b7034a4b-dd6c-4feb-96e5-b5da14ffd2af'),(118668,69,141853,NULL,22160,1,'2022-08-08 06:30:58','2022-08-08 06:30:58','e59afdfa-30df-44ef-9d02-b65c56170ba4'),(118669,85,141853,NULL,17964,1,'2022-08-08 06:30:58','2022-08-08 06:30:58','04918438-64f2-4b11-b4bc-631e5d90b998'),(118670,85,141853,NULL,17966,2,'2022-08-08 06:30:58','2022-08-08 06:30:58','e4d946f2-6dac-4039-ad07-ce50b0a06eb1'),(118671,85,141853,NULL,17967,3,'2022-08-08 06:30:58','2022-08-08 06:30:58','03859827-c0fc-4d0f-ac7c-1c24e23f75fc'),(118672,85,141853,NULL,17969,4,'2022-08-08 06:30:58','2022-08-08 06:30:58','be045f2b-3fb5-4e85-95b5-0da7d41a3da3'),(118673,85,141853,NULL,17970,5,'2022-08-08 06:30:58','2022-08-08 06:30:58','17f63cdb-6da2-44c4-a413-19ead3e7414e'),(118674,85,141853,NULL,17971,6,'2022-08-08 06:30:58','2022-08-08 06:30:58','19b99ed2-9f41-4b5b-816a-7a4d7c177ff0'),(118675,84,141853,NULL,18057,1,'2022-08-08 06:30:58','2022-08-08 06:30:58','c6b04975-1f76-44d2-a9cf-a24b5410d2f8'),(118676,84,141853,NULL,38160,2,'2022-08-08 06:30:58','2022-08-08 06:30:58','df2f7ff8-344b-4ec6-bf15-8a169fe6f71b'),(118677,198,141853,NULL,22160,1,'2022-08-08 06:30:58','2022-08-08 06:30:58','e767f36b-2533-4e78-95de-570b13eb479d'),(118678,69,40501,NULL,48541,1,'2022-08-08 06:31:28','2022-08-08 06:31:28','6ab02f3c-5858-4e16-af6e-a12f5d7b8f13'),(118679,198,40501,NULL,48541,1,'2022-08-08 06:31:28','2022-08-08 06:31:28','849d7525-0a00-45d4-a3c7-6718554dc157'),(118693,79,141855,NULL,17875,1,'2022-08-08 06:35:10','2022-08-08 06:35:10','46904e4b-7ed8-468a-a026-974f113b9808'),(118694,79,141855,NULL,17934,2,'2022-08-08 06:35:10','2022-08-08 06:35:10','ff934546-1065-4117-8e24-d0dba7c99a62'),(118695,79,141855,NULL,17881,3,'2022-08-08 06:35:10','2022-08-08 06:35:10','f88b7987-33fb-43b7-8680-7d48a67f1f1b'),(118696,79,141855,NULL,17954,4,'2022-08-08 06:35:10','2022-08-08 06:35:10','050e831d-eace-40bc-aeb8-824928d71916'),(118697,79,141855,NULL,17956,5,'2022-08-08 06:35:10','2022-08-08 06:35:10','50bb5e8a-fb43-4254-95fc-6eb5cecd3095'),(118698,69,141855,NULL,61819,1,'2022-08-08 06:35:10','2022-08-08 06:35:10','bab23640-2a6b-47b8-9628-6755821c76c6'),(118699,85,141855,NULL,17964,1,'2022-08-08 06:35:10','2022-08-08 06:35:10','b7283fea-8390-4fc7-be36-1c8434c099f0'),(118700,85,141855,NULL,17965,2,'2022-08-08 06:35:10','2022-08-08 06:35:10','b9195e11-90fe-4824-8e81-3ef45e0c64fa'),(118701,85,141855,NULL,17969,3,'2022-08-08 06:35:10','2022-08-08 06:35:10','35ba14bd-0dc2-4d46-9f41-bf31aa8178b4'),(118702,85,141855,NULL,17970,4,'2022-08-08 06:35:10','2022-08-08 06:35:10','054dcbf5-b980-45c0-8828-fcc81c9456ca'),(118703,85,141855,NULL,17971,5,'2022-08-08 06:35:10','2022-08-08 06:35:10','62a40487-0298-4867-b56c-178a7ceb6f0f'),(118704,84,141855,NULL,38161,1,'2022-08-08 06:35:10','2022-08-08 06:35:10','7e6f0f6f-ac63-4740-b2c5-6361c31b894b'),(118705,198,141855,NULL,61819,1,'2022-08-08 06:35:10','2022-08-08 06:35:10','3f29a479-3e42-4839-8653-3b6f2d2b350f'),(118718,69,141857,NULL,18584,1,'2022-08-08 06:38:54','2022-08-08 06:38:54','53aa2843-e093-48d7-8034-46c18f9c72f9'),(118719,85,141857,NULL,17964,1,'2022-08-08 06:38:54','2022-08-08 06:38:54','b9e082a9-a691-46a2-8390-33fe334ad2e8'),(118720,85,141857,NULL,17965,2,'2022-08-08 06:38:54','2022-08-08 06:38:54','94787c37-cf0c-4aa3-9e14-faaca6e44ffb'),(118721,85,141857,NULL,17966,3,'2022-08-08 06:38:54','2022-08-08 06:38:54','7d2fe1d0-d133-4d25-aa8a-2104fa542d7b'),(118722,85,141857,NULL,17967,4,'2022-08-08 06:38:54','2022-08-08 06:38:54','907b871a-30e5-4be7-943c-273f2d930f32'),(118723,85,141857,NULL,17968,5,'2022-08-08 06:38:54','2022-08-08 06:38:54','0b61513d-5048-4c6d-8b01-dbf6d9b3aa2c'),(118724,85,141857,NULL,17969,6,'2022-08-08 06:38:54','2022-08-08 06:38:54','b42f232e-e24b-493a-b51b-f4b05bdf77fc'),(118725,85,141857,NULL,17970,7,'2022-08-08 06:38:54','2022-08-08 06:38:54','45978810-ebb6-4f2e-95a5-cadc99505d61'),(118726,85,141857,NULL,17971,8,'2022-08-08 06:38:54','2022-08-08 06:38:54','dbedc512-243c-4972-b8c7-de8839f1f25b'),(118727,84,141857,NULL,18057,1,'2022-08-08 06:38:54','2022-08-08 06:38:54','8c89d781-5615-4d22-926f-59b1ade95e42'),(118728,84,141857,NULL,38160,2,'2022-08-08 06:38:54','2022-08-08 06:38:54','e952fc77-a4c3-455d-bedf-495c7ca2ec92'),(118729,198,141857,NULL,18584,1,'2022-08-08 06:38:54','2022-08-08 06:38:54','77f86c5c-0823-4736-abde-d478a776e81e'),(118742,69,141859,NULL,18584,1,'2022-08-08 06:39:23','2022-08-08 06:39:23','d4f2a7f8-f933-4d63-96d7-2468cfd168d9'),(118743,85,141859,NULL,17964,1,'2022-08-08 06:39:23','2022-08-08 06:39:23','dc75f744-d2ec-4213-972b-e937e41b5bc8'),(118744,85,141859,NULL,17965,2,'2022-08-08 06:39:23','2022-08-08 06:39:23','665b0fc2-0c73-459b-9800-54a7085291a5'),(118745,85,141859,NULL,17966,3,'2022-08-08 06:39:23','2022-08-08 06:39:23','592fa81e-0c85-492b-be93-70bed3591ffb'),(118746,85,141859,NULL,17967,4,'2022-08-08 06:39:23','2022-08-08 06:39:23','95453f2a-1987-4a73-bc86-b3abcf6db4cb'),(118747,85,141859,NULL,17968,5,'2022-08-08 06:39:23','2022-08-08 06:39:23','26591fd8-06f6-407d-a2c6-514fcc4330e4'),(118748,85,141859,NULL,17969,6,'2022-08-08 06:39:23','2022-08-08 06:39:23','b491a3ef-ac44-4998-99ed-390a7252be28'),(118749,85,141859,NULL,17970,7,'2022-08-08 06:39:23','2022-08-08 06:39:23','7e4071ea-a6ad-45ff-9029-3d41cdde9fda'),(118750,85,141859,NULL,17971,8,'2022-08-08 06:39:23','2022-08-08 06:39:23','eb273817-b4e8-4893-b300-0681f45d5d3f'),(118751,84,141859,NULL,18057,1,'2022-08-08 06:39:23','2022-08-08 06:39:23','bc5b3b99-333f-4453-8d23-e3e1a4c5c96d'),(118752,84,141859,NULL,38160,2,'2022-08-08 06:39:23','2022-08-08 06:39:23','9dd97943-82c2-45e7-a334-25c591243182'),(118753,198,141859,NULL,18584,1,'2022-08-08 06:39:23','2022-08-08 06:39:23','6f70d83a-644d-4a53-b6ce-7fcba6b79e27'),(118771,79,141861,NULL,17875,1,'2022-08-08 06:40:24','2022-08-08 06:40:24','961e1d04-9e1a-429e-8eda-b03c883e1580'),(118772,79,141861,NULL,21898,2,'2022-08-08 06:40:24','2022-08-08 06:40:24','bcf7d942-734a-4d59-a1cf-0d504049b553'),(118773,79,141861,NULL,17934,3,'2022-08-08 06:40:24','2022-08-08 06:40:24','50098791-03a9-4ea5-95e8-435ca95d30bc'),(118774,79,141861,NULL,1,4,'2022-08-08 06:40:24','2022-08-08 06:40:24','862b53e2-9494-4cd5-b986-85d46bf06fae'),(118775,79,141861,NULL,17954,5,'2022-08-08 06:40:24','2022-08-08 06:40:24','734b1e2f-cb90-4e62-830c-ad7edf0cfeef'),(118776,79,141861,NULL,17956,6,'2022-08-08 06:40:24','2022-08-08 06:40:24','b0f6812b-f699-48a4-a87a-b399f5fda2b7'),(118777,69,141861,NULL,19066,1,'2022-08-08 06:40:24','2022-08-08 06:40:24','29ced896-d4ff-483f-9268-1c9d1c59827c'),(118778,85,141861,NULL,17964,1,'2022-08-08 06:40:24','2022-08-08 06:40:24','7eac020a-e346-4f99-8e4e-b11cb9c44a17'),(118779,85,141861,NULL,17965,2,'2022-08-08 06:40:24','2022-08-08 06:40:24','da2a7f20-83f7-4401-abfb-a61f9fad22ea'),(118780,85,141861,NULL,17966,3,'2022-08-08 06:40:24','2022-08-08 06:40:24','7369816a-c988-4991-a926-a1bc35186d62'),(118781,85,141861,NULL,17967,4,'2022-08-08 06:40:24','2022-08-08 06:40:24','1eb5533b-7700-457d-80f8-db55e9d38441'),(118782,85,141861,NULL,17968,5,'2022-08-08 06:40:24','2022-08-08 06:40:24','75962490-6ec5-4a66-9cd8-689606044195'),(118783,85,141861,NULL,17969,6,'2022-08-08 06:40:24','2022-08-08 06:40:24','04a87877-9088-4601-bf5f-029f1783294a'),(118784,85,141861,NULL,17970,7,'2022-08-08 06:40:24','2022-08-08 06:40:24','0ddf9879-c4ff-45ce-b77d-89e460169cdc'),(118785,84,141861,NULL,18057,1,'2022-08-08 06:40:24','2022-08-08 06:40:24','9ca1152f-4dec-4571-aa08-05b437d117c7'),(118786,84,141861,NULL,38160,2,'2022-08-08 06:40:24','2022-08-08 06:40:24','1782fd27-4423-4bc1-83a9-b8f2ac96593c'),(118787,198,141861,NULL,19066,1,'2022-08-08 06:40:24','2022-08-08 06:40:24','d8946d1a-78df-4906-8ec1-ec334bcb1a1c'),(118805,79,141863,NULL,17875,1,'2022-08-08 06:41:22','2022-08-08 06:41:22','76f3cd81-6977-4b86-8144-e0e187758e57'),(118806,79,141863,NULL,21898,2,'2022-08-08 06:41:22','2022-08-08 06:41:22','9f1c2706-9372-4e04-9ec8-d80f803be1e1'),(118807,79,141863,NULL,17934,3,'2022-08-08 06:41:22','2022-08-08 06:41:22','b05688eb-3646-4dc9-b165-bef992905bf9'),(118808,79,141863,NULL,1,4,'2022-08-08 06:41:22','2022-08-08 06:41:22','7c07faeb-aa91-4329-99d7-67c9eb9f7253'),(118809,79,141863,NULL,17954,5,'2022-08-08 06:41:22','2022-08-08 06:41:22','43e45f47-8eec-4ce1-a52e-d14853a97b4b'),(118810,79,141863,NULL,17956,6,'2022-08-08 06:41:22','2022-08-08 06:41:22','9510b0ad-0922-4b4b-a043-bcf3fccbb044'),(118811,69,141863,NULL,19066,1,'2022-08-08 06:41:22','2022-08-08 06:41:22','870fa622-5fcc-45e4-b8b7-5e04327a793a'),(118812,85,141863,NULL,17964,1,'2022-08-08 06:41:22','2022-08-08 06:41:22','1c9ab58f-0813-4866-9a9a-16d9ceb19689'),(118813,85,141863,NULL,17965,2,'2022-08-08 06:41:22','2022-08-08 06:41:22','d67244b8-01c3-47f9-80ce-273b15ba74d8'),(118814,85,141863,NULL,17966,3,'2022-08-08 06:41:22','2022-08-08 06:41:22','f51d00d7-6824-4cf9-9e46-5e769e521b43'),(118815,85,141863,NULL,17967,4,'2022-08-08 06:41:22','2022-08-08 06:41:22','c4e4bee2-75cc-4e53-bb3c-b4950ce1cb8e'),(118816,85,141863,NULL,17968,5,'2022-08-08 06:41:22','2022-08-08 06:41:22','6f161258-912e-4146-a21c-3e9bc6c0df40'),(118817,85,141863,NULL,17969,6,'2022-08-08 06:41:22','2022-08-08 06:41:22','64c8bc70-6598-4c30-90ba-c3635e61e91b'),(118818,85,141863,NULL,17970,7,'2022-08-08 06:41:22','2022-08-08 06:41:22','20e411a9-2c16-4b34-8526-c7d79fbec10d'),(118819,84,141863,NULL,18057,1,'2022-08-08 06:41:22','2022-08-08 06:41:22','f4490fcf-970c-4933-a54f-786dc6948706'),(118820,84,141863,NULL,38160,2,'2022-08-08 06:41:22','2022-08-08 06:41:22','8e86f8e9-37d1-4586-8b1c-a6287a22d80b'),(118821,198,141863,NULL,19066,1,'2022-08-08 06:41:22','2022-08-08 06:41:22','0d490a7c-28ba-46a4-8e1b-5ba98acb2cf2'),(118836,79,141865,NULL,17934,1,'2022-08-08 06:42:15','2022-08-08 06:42:15','b83fd472-fe60-4551-bc63-5947ed940528'),(118837,79,141865,NULL,17875,2,'2022-08-08 06:42:15','2022-08-08 06:42:15','acc0fee3-ef34-45a2-b8c1-e4958d5d0cd3'),(118838,79,141865,NULL,17954,3,'2022-08-08 06:42:15','2022-08-08 06:42:15','e76dc5f2-6a31-49ed-a5cd-c8ccbadeaddd'),(118839,79,141865,NULL,17956,4,'2022-08-08 06:42:15','2022-08-08 06:42:15','fd8156a1-d574-4cc0-9ed4-8c80e0d84d9a'),(118840,69,141865,NULL,140086,1,'2022-08-08 06:42:15','2022-08-08 06:42:15','3192d48b-6f51-4d99-8014-f75fe28a49dc'),(118841,85,141865,NULL,17964,1,'2022-08-08 06:42:15','2022-08-08 06:42:15','63958dcb-c1a5-43af-b3c2-f4ef026aaa18'),(118842,85,141865,NULL,17965,2,'2022-08-08 06:42:15','2022-08-08 06:42:15','b582c86d-c8f3-432b-a61a-6d010530b171'),(118843,85,141865,NULL,17966,3,'2022-08-08 06:42:15','2022-08-08 06:42:15','4c0efac6-af7e-48d8-ad1d-c75ee6dc256b'),(118844,85,141865,NULL,17967,4,'2022-08-08 06:42:15','2022-08-08 06:42:15','df85b042-101f-4928-a695-f7ade45ae72d'),(118845,85,141865,NULL,17968,5,'2022-08-08 06:42:15','2022-08-08 06:42:15','c3ce2ed5-7821-403d-8aa6-0eac89144d1e'),(118846,85,141865,NULL,17969,6,'2022-08-08 06:42:15','2022-08-08 06:42:15','9d34d894-42d3-491b-9cb0-b5cbb38ab276'),(118847,84,141865,NULL,18057,1,'2022-08-08 06:42:15','2022-08-08 06:42:15','ef21bbad-bb10-4712-b048-e8fdc077d0bc'),(118848,84,141865,NULL,38161,2,'2022-08-08 06:42:15','2022-08-08 06:42:15','29a34705-0502-4a68-aa3a-d06f50f1147b'),(118849,198,141865,NULL,140086,1,'2022-08-08 06:42:15','2022-08-08 06:42:15','5f5bea39-cc74-4450-bde7-752af650ffcf'),(118864,79,141867,NULL,17934,1,'2022-08-08 06:42:29','2022-08-08 06:42:29','d8a7de80-362e-4b68-ae39-a381429da71e'),(118865,79,141867,NULL,17875,2,'2022-08-08 06:42:29','2022-08-08 06:42:29','b60c24ca-ae4c-4dbd-9208-53125fa44d3a'),(118866,79,141867,NULL,17954,3,'2022-08-08 06:42:29','2022-08-08 06:42:29','fbcaf23a-6f7e-4e02-ad81-f902bebcfe6e'),(118867,79,141867,NULL,17956,4,'2022-08-08 06:42:29','2022-08-08 06:42:29','070fe7a4-0f70-4985-bfa8-419d9b38e95e'),(118868,69,141867,NULL,140086,1,'2022-08-08 06:42:29','2022-08-08 06:42:29','d022b72c-7323-4d51-bd91-e75140fe873a'),(118869,85,141867,NULL,17964,1,'2022-08-08 06:42:29','2022-08-08 06:42:29','76ea82bf-a2c3-4a6a-97f7-30d0761fdf0e'),(118870,85,141867,NULL,17965,2,'2022-08-08 06:42:29','2022-08-08 06:42:29','02065651-b9b1-4cc9-bd23-203cd487f30c'),(118871,85,141867,NULL,17966,3,'2022-08-08 06:42:29','2022-08-08 06:42:29','7aca9bbf-8418-4afd-9818-793177502c53'),(118872,85,141867,NULL,17967,4,'2022-08-08 06:42:29','2022-08-08 06:42:29','e0703c94-8a5a-4889-8998-5463534bba83'),(118873,85,141867,NULL,17968,5,'2022-08-08 06:42:29','2022-08-08 06:42:29','dde861f7-12d9-4b4a-886a-f42318383552'),(118874,85,141867,NULL,17969,6,'2022-08-08 06:42:29','2022-08-08 06:42:29','9a7cf4be-10ea-45ca-92e4-60c04f194d4a'),(118875,84,141867,NULL,18057,1,'2022-08-08 06:42:29','2022-08-08 06:42:29','b242bc49-1996-4424-9a4a-f51a6e7fd26e'),(118876,84,141867,NULL,38161,2,'2022-08-08 06:42:29','2022-08-08 06:42:29','4280055d-1295-42d6-9ae5-e07d1fc8e90d'),(118877,198,141867,NULL,140086,1,'2022-08-08 06:42:29','2022-08-08 06:42:29','0faac889-9388-4fd0-9705-b020216cd131'),(118892,79,141869,NULL,17934,1,'2022-08-08 06:42:58','2022-08-08 06:42:58','5f52d565-ec57-4bae-85dd-74f78cfb72d6'),(118893,79,141869,NULL,17875,2,'2022-08-08 06:42:58','2022-08-08 06:42:58','eaf6b713-9aa5-426b-8f14-306e9b082d48'),(118894,79,141869,NULL,17954,3,'2022-08-08 06:42:58','2022-08-08 06:42:58','c6c33609-8d61-4126-b1ea-871eb4093123'),(118895,79,141869,NULL,17956,4,'2022-08-08 06:42:58','2022-08-08 06:42:58','a0dd8eed-087c-49c4-b7cc-2a6433292cbb'),(118896,69,141869,NULL,140086,1,'2022-08-08 06:42:58','2022-08-08 06:42:58','60b7208c-0f7b-4000-97f6-8a79d9afffaa'),(118897,85,141869,NULL,17964,1,'2022-08-08 06:42:58','2022-08-08 06:42:58','3910c143-b2ba-428c-bb53-984e3c73fc0f'),(118898,85,141869,NULL,17965,2,'2022-08-08 06:42:58','2022-08-08 06:42:58','35e60a01-8108-4316-8093-c6605b540594'),(118899,85,141869,NULL,17966,3,'2022-08-08 06:42:58','2022-08-08 06:42:58','94aa4e48-280c-4b69-a933-f06edff398f4'),(118900,85,141869,NULL,17967,4,'2022-08-08 06:42:58','2022-08-08 06:42:58','7ae2ca3f-85b1-491f-93d8-ccbfd2ad792c'),(118901,85,141869,NULL,17968,5,'2022-08-08 06:42:58','2022-08-08 06:42:58','0d7ab421-6853-4b62-84ec-be354b0ee191'),(118902,85,141869,NULL,17969,6,'2022-08-08 06:42:58','2022-08-08 06:42:58','cb4b1da3-ea88-4423-a2c6-8f6d88dd1af1'),(118903,84,141869,NULL,18057,1,'2022-08-08 06:42:58','2022-08-08 06:42:58','69c72a12-808d-4375-b3e3-de8cfbf85769'),(118904,84,141869,NULL,38161,2,'2022-08-08 06:42:58','2022-08-08 06:42:58','3f49a2fd-8761-4706-86be-daf21b478a05'),(118905,198,141869,NULL,140086,1,'2022-08-08 06:42:58','2022-08-08 06:42:58','97104cbe-1fbb-4c5e-9591-4d37a3f1f0a6'),(118938,79,141872,NULL,17934,1,'2022-08-08 06:44:50','2022-08-08 06:44:50','662d1bb0-44bf-48bf-afb1-232b2fc924d3'),(118939,79,141872,NULL,17875,2,'2022-08-08 06:44:50','2022-08-08 06:44:50','5ea116eb-459c-4f42-a350-b3c0fcd46e02'),(118940,79,141872,NULL,17954,3,'2022-08-08 06:44:50','2022-08-08 06:44:50','4ea89cfc-fa35-4893-a4b2-dbc947d28a20'),(118941,79,141872,NULL,17956,4,'2022-08-08 06:44:50','2022-08-08 06:44:50','6c932dbd-bb2d-443a-a2c4-cdf5078a52e4'),(118942,69,141872,NULL,140086,1,'2022-08-08 06:44:50','2022-08-08 06:44:50','d299325a-7c7c-4b8c-ac1c-5c87507a9b31'),(118943,85,141872,NULL,17964,1,'2022-08-08 06:44:50','2022-08-08 06:44:50','3b06eb04-348d-49f6-9469-a737b5f6aedd'),(118944,85,141872,NULL,17965,2,'2022-08-08 06:44:50','2022-08-08 06:44:50','a3e38b84-fd49-4002-ba4c-58ed137e6075'),(118945,85,141872,NULL,17966,3,'2022-08-08 06:44:50','2022-08-08 06:44:50','7b2f2835-5823-473b-8e3f-b837465763ee'),(118946,85,141872,NULL,17967,4,'2022-08-08 06:44:50','2022-08-08 06:44:50','a767b754-6e47-489c-9728-adb8c0dc4b4e'),(118947,85,141872,NULL,17968,5,'2022-08-08 06:44:50','2022-08-08 06:44:50','dd14b337-904f-4efd-8798-c77fd154c93e'),(118948,85,141872,NULL,17969,6,'2022-08-08 06:44:50','2022-08-08 06:44:50','9ed7d290-7081-4fd4-bf56-49b348568355'),(118949,84,141872,NULL,18057,1,'2022-08-08 06:44:50','2022-08-08 06:44:50','67985ed0-dcf5-4ff3-a582-2d49a1b4a52b'),(118950,84,141872,NULL,38161,2,'2022-08-08 06:44:50','2022-08-08 06:44:50','2fb873f3-06dd-45b5-8115-89cfd66b854e'),(118951,198,141872,NULL,140086,1,'2022-08-08 06:44:50','2022-08-08 06:44:50','be3236ba-4cdd-4d8e-8aa0-63bceb753cf8'),(118952,79,141873,NULL,17875,1,'2022-08-08 06:45:00','2022-08-08 06:45:00','b67d08c6-0b4b-4dfc-a5c0-52b5d37f3251'),(118953,79,141873,NULL,17887,2,'2022-08-08 06:45:00','2022-08-08 06:45:00','169be87c-3bad-4f39-9fa0-e4491344759f'),(118954,79,141873,NULL,17899,3,'2022-08-08 06:45:00','2022-08-08 06:45:00','964a96d7-700f-41ce-82b7-6341a8b46f6e'),(118955,79,141873,NULL,17934,4,'2022-08-08 06:45:00','2022-08-08 06:45:00','ab15d653-c47b-4b4a-9a38-60d67abcbe4f'),(118956,79,141873,NULL,17941,5,'2022-08-08 06:45:00','2022-08-08 06:45:00','549b6db9-7f79-47ce-bed2-3252b898e614'),(118957,79,141873,NULL,1,6,'2022-08-08 06:45:00','2022-08-08 06:45:00','9df061ef-c305-42d8-b113-c7ff7074dcc7'),(118958,79,141873,NULL,17956,7,'2022-08-08 06:45:00','2022-08-08 06:45:00','d6f3a755-2691-4e34-a371-4b91dbcd5415'),(118959,79,141873,NULL,17996,8,'2022-08-08 06:45:00','2022-08-08 06:45:00','59c4a382-1f7a-4d1b-89c7-5aa690622dfa'),(118960,69,141873,NULL,61826,1,'2022-08-08 06:45:00','2022-08-08 06:45:00','47806821-a732-41c4-a644-15ac3f9e37e0'),(118961,85,141873,NULL,17964,1,'2022-08-08 06:45:00','2022-08-08 06:45:00','6b258722-7332-4b8c-b3e8-e4f9c9c011a2'),(118962,85,141873,NULL,17965,2,'2022-08-08 06:45:00','2022-08-08 06:45:00','2327bd21-004f-40f8-bab1-98700eb6adce'),(118963,85,141873,NULL,17966,3,'2022-08-08 06:45:00','2022-08-08 06:45:00','d738b545-e27d-4cd3-bb09-e9b15ce8a074'),(118964,85,141873,NULL,17968,4,'2022-08-08 06:45:00','2022-08-08 06:45:00','cd04d119-6865-45b9-b8e2-996ac33c07df'),(118965,85,141873,NULL,17969,5,'2022-08-08 06:45:00','2022-08-08 06:45:00','ff2a871d-5486-404c-8a1e-1bfc4def4c00'),(118966,85,141873,NULL,17970,6,'2022-08-08 06:45:00','2022-08-08 06:45:00','fcdf36d0-7e06-4464-83ca-6d4c75ce99b9'),(118967,85,141873,NULL,17971,7,'2022-08-08 06:45:00','2022-08-08 06:45:00','330fa71a-b838-4523-b683-8a35285a54eb'),(118968,84,141873,NULL,38160,1,'2022-08-08 06:45:00','2022-08-08 06:45:00','585de29c-6642-4029-9a12-49f57c02858f'),(118969,198,141873,NULL,61826,1,'2022-08-08 06:45:00','2022-08-08 06:45:00','f25003e7-8373-4aca-aa4a-3ae20ab0afee'),(118984,79,141875,NULL,17934,1,'2022-08-08 06:45:37','2022-08-08 06:45:37','da5870ca-4680-4c4b-84ef-8de972fce69f'),(118985,79,141875,NULL,17875,2,'2022-08-08 06:45:37','2022-08-08 06:45:37','86e84acc-7eb1-4cc9-9bbd-9bde630dc1c0'),(118986,79,141875,NULL,17954,3,'2022-08-08 06:45:37','2022-08-08 06:45:37','c80d5b59-2891-432d-b368-48862010232d'),(118987,79,141875,NULL,17956,4,'2022-08-08 06:45:37','2022-08-08 06:45:37','671ebb93-38e0-4287-82af-0f5bff4b82f2'),(118988,69,141875,NULL,139975,1,'2022-08-08 06:45:37','2022-08-08 06:45:37','a2ab2288-e660-456e-b169-60314aed0958'),(118989,85,141875,NULL,17964,1,'2022-08-08 06:45:37','2022-08-08 06:45:37','768586b2-c467-4a0a-b713-5bf5ea10271e'),(118990,85,141875,NULL,17965,2,'2022-08-08 06:45:37','2022-08-08 06:45:37','09bfeb7b-555a-4181-a48e-6ca235f088ae'),(118991,85,141875,NULL,17966,3,'2022-08-08 06:45:37','2022-08-08 06:45:37','3e95cf5c-4b83-4df5-ab96-47bed506f64e'),(118992,85,141875,NULL,17967,4,'2022-08-08 06:45:37','2022-08-08 06:45:37','1c19c41e-ad2c-407a-b68f-d2201e9213f8'),(118993,85,141875,NULL,17968,5,'2022-08-08 06:45:37','2022-08-08 06:45:37','1a7e4300-fcb4-420a-8781-72f72223873a'),(118994,85,141875,NULL,17969,6,'2022-08-08 06:45:37','2022-08-08 06:45:37','bb7c320c-fb33-48ba-b17c-c2bc1fdc2f2c'),(118995,84,141875,NULL,18057,1,'2022-08-08 06:45:37','2022-08-08 06:45:37','c16dc93b-0234-4814-9d45-42b81643bc57'),(118996,84,141875,NULL,38161,2,'2022-08-08 06:45:37','2022-08-08 06:45:37','099eb7f7-4c33-45a8-8383-1fd9bd5f132e'),(118997,198,141875,NULL,139975,1,'2022-08-08 06:45:37','2022-08-08 06:45:37','26787ef2-0b6e-4c4a-ba52-fa62595c71f9'),(119012,79,141877,NULL,17934,1,'2022-08-08 06:46:01','2022-08-08 06:46:01','bbadef9e-b35a-4786-a4f5-0601da654463'),(119013,79,141877,NULL,17875,2,'2022-08-08 06:46:01','2022-08-08 06:46:01','6c6313f5-f7c5-47f1-86ed-9f73415abc02'),(119014,79,141877,NULL,17954,3,'2022-08-08 06:46:01','2022-08-08 06:46:01','19d86497-3829-4759-afd4-bf5a47fd7f6f'),(119015,79,141877,NULL,17956,4,'2022-08-08 06:46:01','2022-08-08 06:46:01','d3a44942-af65-42da-8e7b-1d8d17834473'),(119016,69,141877,NULL,139975,1,'2022-08-08 06:46:01','2022-08-08 06:46:01','ce9010bb-f088-42b3-90f3-929f12af4111'),(119017,85,141877,NULL,17964,1,'2022-08-08 06:46:01','2022-08-08 06:46:01','363f297d-0fdd-42a0-8c83-603c1f3115ff'),(119018,85,141877,NULL,17965,2,'2022-08-08 06:46:01','2022-08-08 06:46:01','47717e65-a123-4906-a9d3-448b7a93e1d1'),(119019,85,141877,NULL,17966,3,'2022-08-08 06:46:01','2022-08-08 06:46:01','481ba99c-908a-4c40-a990-73c89ecd6f6b'),(119020,85,141877,NULL,17967,4,'2022-08-08 06:46:01','2022-08-08 06:46:01','d52ae124-4dfa-4e97-b628-47266fa17a7a'),(119021,85,141877,NULL,17968,5,'2022-08-08 06:46:01','2022-08-08 06:46:01','e52a2022-6034-45b6-bc2b-15f54652e46a'),(119022,85,141877,NULL,17969,6,'2022-08-08 06:46:01','2022-08-08 06:46:01','481af920-b404-42b2-b183-18b66603ccfe'),(119023,84,141877,NULL,18057,1,'2022-08-08 06:46:01','2022-08-08 06:46:01','e4c203ae-b8c2-43c1-a386-18eb58e89381'),(119024,84,141877,NULL,38161,2,'2022-08-08 06:46:01','2022-08-08 06:46:01','cb05ac44-5116-4df2-9c38-eab93b684da7'),(119025,198,141877,NULL,139975,1,'2022-08-08 06:46:01','2022-08-08 06:46:01','e93f157a-ce70-4195-917a-9150c2f90ea0'),(119040,79,141879,NULL,17934,1,'2022-08-08 06:46:50','2022-08-08 06:46:50','c56bdf55-a503-48ce-8a9b-2c49f01dcd33'),(119041,79,141879,NULL,17875,2,'2022-08-08 06:46:50','2022-08-08 06:46:50','437d9616-4e78-4225-b083-a89ca8150b4e'),(119042,79,141879,NULL,17954,3,'2022-08-08 06:46:50','2022-08-08 06:46:50','d1d7ccf4-7014-4d3b-a15b-3c451dc4908d'),(119043,79,141879,NULL,17956,4,'2022-08-08 06:46:50','2022-08-08 06:46:50','a0f7e245-73e5-4ab9-b2f9-e71bd0839cb4'),(119044,69,141879,NULL,61823,1,'2022-08-08 06:46:50','2022-08-08 06:46:50','17a5b653-4ce4-4fbf-a999-940866c886b8'),(119045,85,141879,NULL,17964,1,'2022-08-08 06:46:50','2022-08-08 06:46:50','4671f73b-9aa1-419d-8064-64d8ecf709c3'),(119046,85,141879,NULL,17965,2,'2022-08-08 06:46:50','2022-08-08 06:46:50','99d3d66e-615f-4e2c-9af9-0880e20460b7'),(119047,85,141879,NULL,17966,3,'2022-08-08 06:46:50','2022-08-08 06:46:50','147ceadb-0aa6-49ba-93ac-9ab46940e591'),(119048,85,141879,NULL,17967,4,'2022-08-08 06:46:50','2022-08-08 06:46:50','e2ddd7bf-2722-4a66-8b24-c05832fb7d61'),(119049,85,141879,NULL,17968,5,'2022-08-08 06:46:50','2022-08-08 06:46:50','2b6c63d0-23aa-408f-8365-8c26721ce3c5'),(119050,85,141879,NULL,17969,6,'2022-08-08 06:46:50','2022-08-08 06:46:50','b080b70c-685b-4f72-9e08-b39df635453f'),(119051,84,141879,NULL,18057,1,'2022-08-08 06:46:50','2022-08-08 06:46:50','63b2c900-adce-4291-a85e-cb8c1bc2f646'),(119052,84,141879,NULL,38161,2,'2022-08-08 06:46:50','2022-08-08 06:46:50','266cd557-4bb5-4797-9401-ddecb78acca7'),(119053,198,141879,NULL,61823,1,'2022-08-08 06:46:50','2022-08-08 06:46:50','967e7b2c-e1e4-4641-93cb-9efd59c12931'),(119068,79,141881,NULL,17875,1,'2022-08-08 06:48:26','2022-08-08 06:48:26','cb99d0e6-490e-4e40-abf9-d75189cf8a77'),(119069,79,141881,NULL,1,2,'2022-08-08 06:48:26','2022-08-08 06:48:26','2f3ee5c4-559b-4ad8-9e8f-6365fb151e18'),(119070,79,141881,NULL,17954,3,'2022-08-08 06:48:26','2022-08-08 06:48:26','04593051-a6b6-41a5-aba9-6be9d36ace8a'),(119071,79,141881,NULL,17881,4,'2022-08-08 06:48:26','2022-08-08 06:48:26','86e810ab-5d10-45c0-b7b1-d3d9587e8258'),(119072,79,141881,NULL,17956,5,'2022-08-08 06:48:26','2022-08-08 06:48:26','0432cbfd-ca5e-4a49-90bf-e3f3c6396049'),(119073,69,141881,NULL,16693,1,'2022-08-08 06:48:26','2022-08-08 06:48:26','8435a5a5-6081-4ed8-b5d2-397d778b0585'),(119074,85,141881,NULL,17964,1,'2022-08-08 06:48:26','2022-08-08 06:48:26','bb41c694-1ddc-47fa-a9c1-33152e75f025'),(119075,85,141881,NULL,17965,2,'2022-08-08 06:48:26','2022-08-08 06:48:26','4641c8f7-be77-4b57-9e1d-d355491d54d5'),(119076,85,141881,NULL,17966,3,'2022-08-08 06:48:26','2022-08-08 06:48:26','abfcbb60-d136-4123-bfb2-d68eaf0ccc40'),(119077,85,141881,NULL,17969,4,'2022-08-08 06:48:26','2022-08-08 06:48:26','8bd8ed6a-dec4-48fa-9445-851961a5d766'),(119078,85,141881,NULL,17970,5,'2022-08-08 06:48:26','2022-08-08 06:48:26','f5db2c7c-557b-41b2-9d46-011bfc5255e9'),(119079,85,141881,NULL,17971,6,'2022-08-08 06:48:26','2022-08-08 06:48:26','1c1857c1-f2b6-4ccb-8532-82e32835ca3b'),(119080,84,141881,NULL,38158,1,'2022-08-08 06:48:26','2022-08-08 06:48:26','3c5ed329-e966-4376-8692-8def8b874ffe'),(119081,198,141881,NULL,16693,1,'2022-08-08 06:48:26','2022-08-08 06:48:26','31850a50-53c6-4461-ab45-7b5bd55df13c'),(119097,79,141883,NULL,17875,1,'2022-08-08 06:49:19','2022-08-08 06:49:19','da90b3fb-5a3c-4d5a-96b2-471e0aeb3556'),(119098,79,141883,NULL,17899,2,'2022-08-08 06:49:19','2022-08-08 06:49:19','65dc9b14-9cfa-43a2-acfe-891b45ce535b'),(119099,79,141883,NULL,17934,3,'2022-08-08 06:49:19','2022-08-08 06:49:19','de88213e-01e7-40b7-b25d-bba04d306508'),(119100,79,141883,NULL,17941,4,'2022-08-08 06:49:19','2022-08-08 06:49:19','97155c55-495a-45a3-bf08-6d905262c425'),(119101,79,141883,NULL,17954,5,'2022-08-08 06:49:19','2022-08-08 06:49:19','29c8639a-2050-48f1-a03f-8166e29bb81c'),(119102,79,141883,NULL,17996,6,'2022-08-08 06:49:19','2022-08-08 06:49:19','7e7cd85a-b814-4969-8966-accad3d5a3d7'),(119103,69,141883,NULL,16824,1,'2022-08-08 06:49:19','2022-08-08 06:49:19','227495a5-3c88-40ad-b575-8a4e496ded7d'),(119104,85,141883,NULL,17964,1,'2022-08-08 06:49:19','2022-08-08 06:49:19','227f1c97-4361-4dfe-b1f4-d795f0b18ef9'),(119105,85,141883,NULL,17966,2,'2022-08-08 06:49:19','2022-08-08 06:49:19','9dfc8fd7-0028-401d-8ee8-b88f474b9539'),(119106,85,141883,NULL,17967,3,'2022-08-08 06:49:19','2022-08-08 06:49:19','7e651d83-def9-46e1-923a-09f75d636348'),(119107,85,141883,NULL,17969,4,'2022-08-08 06:49:19','2022-08-08 06:49:19','95b312a4-195d-4187-abf4-3564eb4f6d19'),(119108,85,141883,NULL,17970,5,'2022-08-08 06:49:19','2022-08-08 06:49:19','9e9b6575-2953-432f-a615-2178b4d6a93b'),(119109,85,141883,NULL,17971,6,'2022-08-08 06:49:19','2022-08-08 06:49:19','a682dfc3-cb27-4e42-b96a-1c7957999689'),(119110,84,141883,NULL,18057,1,'2022-08-08 06:49:19','2022-08-08 06:49:19','3b54e9af-cff6-49a1-a49d-9c3e6b994a1f'),(119111,198,141883,NULL,16824,1,'2022-08-08 06:49:19','2022-08-08 06:49:19','70ee379d-50b3-4dbc-87f1-5029a9411975'),(119127,79,141885,NULL,17875,1,'2022-08-08 06:49:44','2022-08-08 06:49:44','78e6c254-2d1d-4d37-8053-8e0b26c65e5a'),(119128,79,141885,NULL,17899,2,'2022-08-08 06:49:44','2022-08-08 06:49:44','f411e3be-312b-4098-b60f-5d762e8e380a'),(119129,79,141885,NULL,17934,3,'2022-08-08 06:49:44','2022-08-08 06:49:44','5353f878-127c-41b9-801c-348435451080'),(119130,79,141885,NULL,17941,4,'2022-08-08 06:49:44','2022-08-08 06:49:44','64182429-5a91-44f2-9ddb-9f17969b7576'),(119131,79,141885,NULL,17954,5,'2022-08-08 06:49:44','2022-08-08 06:49:44','ef026821-4d14-45ba-8238-ab78e92ab082'),(119132,79,141885,NULL,17996,6,'2022-08-08 06:49:44','2022-08-08 06:49:44','97825d43-21ed-4cb8-8d25-e5f7ebfd4424'),(119133,69,141885,NULL,16824,1,'2022-08-08 06:49:44','2022-08-08 06:49:44','43eee338-7ece-4ffb-894c-d23b15b8667a'),(119134,85,141885,NULL,17964,1,'2022-08-08 06:49:44','2022-08-08 06:49:44','3d2096ac-0d9a-4d7f-97d8-948abf677e72'),(119135,85,141885,NULL,17966,2,'2022-08-08 06:49:44','2022-08-08 06:49:44','a1a86e4e-94a7-4c86-9069-a4f1105fb424'),(119136,85,141885,NULL,17967,3,'2022-08-08 06:49:44','2022-08-08 06:49:44','a6ff0252-3472-4315-8fc4-b32b5db84d1f'),(119137,85,141885,NULL,17969,4,'2022-08-08 06:49:44','2022-08-08 06:49:44','68445e38-1ec4-4658-9bd7-a4254225914a'),(119138,85,141885,NULL,17970,5,'2022-08-08 06:49:44','2022-08-08 06:49:44','8847c80e-7277-4f80-88d5-9a93a5e335eb'),(119139,85,141885,NULL,17971,6,'2022-08-08 06:49:44','2022-08-08 06:49:44','e9c12b7c-8ca4-4cc9-9fe1-7a449d8bfdc4'),(119140,84,141885,NULL,18057,1,'2022-08-08 06:49:44','2022-08-08 06:49:44','2f53b27b-5f2c-4cff-911f-0595a0407db2'),(119141,198,141885,NULL,16824,1,'2022-08-08 06:49:44','2022-08-08 06:49:44','3a8a8003-8831-43a2-b348-71458c0942b7'),(119157,79,141887,NULL,17875,1,'2022-08-08 06:50:03','2022-08-08 06:50:03','1d3fe508-042d-4062-b603-20bfb30917ab'),(119158,79,141887,NULL,17899,2,'2022-08-08 06:50:03','2022-08-08 06:50:03','db9e38ff-db2b-48f6-9336-cc47cf753a6a'),(119159,79,141887,NULL,17934,3,'2022-08-08 06:50:03','2022-08-08 06:50:03','a5837ae0-fd98-4fa7-80e2-f528598c7328'),(119160,79,141887,NULL,17941,4,'2022-08-08 06:50:03','2022-08-08 06:50:03','f388dc2a-2e5c-431f-aa16-d4c8e85f1320'),(119161,79,141887,NULL,17954,5,'2022-08-08 06:50:03','2022-08-08 06:50:03','320a1c4a-5f7b-4f2b-839b-1362a9a7f79e'),(119162,79,141887,NULL,17996,6,'2022-08-08 06:50:03','2022-08-08 06:50:03','9bc4227d-b984-43a7-99aa-9f6f368c3077'),(119163,69,141887,NULL,16824,1,'2022-08-08 06:50:03','2022-08-08 06:50:03','079d8349-ed34-4c4a-8d23-65501f26a31c'),(119164,85,141887,NULL,17964,1,'2022-08-08 06:50:03','2022-08-08 06:50:03','d436067b-37fe-4b95-9413-76a5d54e2bef'),(119165,85,141887,NULL,17966,2,'2022-08-08 06:50:03','2022-08-08 06:50:03','b467687e-34cd-447d-aeec-fa20cca5d5a9'),(119166,85,141887,NULL,17967,3,'2022-08-08 06:50:03','2022-08-08 06:50:03','510fdb26-8b23-4a30-8c1d-b50aecc3cd59'),(119167,85,141887,NULL,17969,4,'2022-08-08 06:50:03','2022-08-08 06:50:03','68737982-21e7-498a-bc93-f57fb78fafb8'),(119168,85,141887,NULL,17970,5,'2022-08-08 06:50:03','2022-08-08 06:50:03','b668ee86-e833-4427-b77b-4856fef7d2bf'),(119169,85,141887,NULL,17971,6,'2022-08-08 06:50:03','2022-08-08 06:50:03','9064af08-acf5-405b-8ca7-d2c41e6c80ae'),(119170,84,141887,NULL,18057,1,'2022-08-08 06:50:03','2022-08-08 06:50:03','3fd7f6b5-a8ee-473e-940c-760f3e3012a5'),(119171,198,141887,NULL,16824,1,'2022-08-08 06:50:03','2022-08-08 06:50:03','477b5133-3c1a-440b-a68a-a71ce9be0f07'),(119187,79,141889,NULL,17875,1,'2022-08-08 06:50:14','2022-08-08 06:50:14','eb3eedd4-43a0-466e-99ac-28bc4143e314'),(119188,79,141889,NULL,17899,2,'2022-08-08 06:50:14','2022-08-08 06:50:14','14a50df6-f375-4fb3-a0cc-1b09324e3aa2'),(119189,79,141889,NULL,17934,3,'2022-08-08 06:50:14','2022-08-08 06:50:14','22cd742e-cc9e-4032-8a6d-8932fc8c4059'),(119190,79,141889,NULL,17941,4,'2022-08-08 06:50:14','2022-08-08 06:50:14','bbf458c4-30c5-4ee0-b77b-d770b55d16aa'),(119191,79,141889,NULL,17954,5,'2022-08-08 06:50:14','2022-08-08 06:50:14','f90ee3fb-31d4-4ae8-9896-024759e34e57'),(119192,79,141889,NULL,17996,6,'2022-08-08 06:50:14','2022-08-08 06:50:14','8b2475b7-44d2-47a1-a6f2-924cce396f77'),(119193,69,141889,NULL,16824,1,'2022-08-08 06:50:14','2022-08-08 06:50:14','1c17513a-6850-417c-813e-2f040b7ad79e'),(119194,85,141889,NULL,17964,1,'2022-08-08 06:50:14','2022-08-08 06:50:14','a254202e-b265-42cc-9219-0e97074c54eb'),(119195,85,141889,NULL,17966,2,'2022-08-08 06:50:14','2022-08-08 06:50:14','ad08733e-0f84-495b-9ebc-5704ece9b4a9'),(119196,85,141889,NULL,17967,3,'2022-08-08 06:50:14','2022-08-08 06:50:14','a2fcf07e-e8ed-427d-bde5-45ed6135139c'),(119197,85,141889,NULL,17969,4,'2022-08-08 06:50:14','2022-08-08 06:50:14','ad8149bd-d521-4f81-a090-982d7e0b8e05'),(119198,85,141889,NULL,17970,5,'2022-08-08 06:50:14','2022-08-08 06:50:14','c01cabef-649b-4588-880e-bd1a35ed74cb'),(119199,85,141889,NULL,17971,6,'2022-08-08 06:50:14','2022-08-08 06:50:14','f6c49791-b3fb-426d-95b0-9a1146651115'),(119200,84,141889,NULL,18057,1,'2022-08-08 06:50:14','2022-08-08 06:50:14','f2f6133b-a99f-48c5-b137-6c25ba9ad42f'),(119201,198,141889,NULL,16824,1,'2022-08-08 06:50:14','2022-08-08 06:50:14','1e279bc4-ca6c-4e67-9f31-79ff03620c2d'),(119217,79,141891,NULL,17875,1,'2022-08-08 06:51:20','2022-08-08 06:51:20','95d388e2-17bf-4b03-9649-c56f4df39734'),(119218,79,141891,NULL,17899,2,'2022-08-08 06:51:20','2022-08-08 06:51:20','ff17df16-1829-474a-845e-ed1c736384be'),(119219,79,141891,NULL,17934,3,'2022-08-08 06:51:20','2022-08-08 06:51:20','239b4b73-3900-49b8-a2db-1dd01a05b8d4'),(119220,79,141891,NULL,17941,4,'2022-08-08 06:51:20','2022-08-08 06:51:20','d8510723-1748-4690-9f35-e439e3ecdf50'),(119221,79,141891,NULL,17954,5,'2022-08-08 06:51:20','2022-08-08 06:51:20','42bf7a37-8c3b-4dee-8f6e-fa82db2a6a5d'),(119222,79,141891,NULL,17996,6,'2022-08-08 06:51:20','2022-08-08 06:51:20','b913ccd4-a46b-41a2-93e1-9ea867eabb6b'),(119223,69,141891,NULL,16824,1,'2022-08-08 06:51:20','2022-08-08 06:51:20','fd4e6628-7be5-4c79-86a3-52a86a595961'),(119224,85,141891,NULL,17964,1,'2022-08-08 06:51:20','2022-08-08 06:51:20','9ca5a46d-2c93-4fa9-a2ee-59ebd21913b9'),(119225,85,141891,NULL,17966,2,'2022-08-08 06:51:20','2022-08-08 06:51:20','93d48c81-7268-4ebc-9cea-b2bdcb6e05d3'),(119226,85,141891,NULL,17967,3,'2022-08-08 06:51:20','2022-08-08 06:51:20','37da5460-4701-444f-b153-f6a1e0caf6da'),(119227,85,141891,NULL,17969,4,'2022-08-08 06:51:20','2022-08-08 06:51:20','7cf03bfa-5e94-4d39-b801-41f792b58359'),(119228,85,141891,NULL,17970,5,'2022-08-08 06:51:20','2022-08-08 06:51:20','c97a16de-f6e3-4c39-b3e7-52e1aad5ba13'),(119229,85,141891,NULL,17971,6,'2022-08-08 06:51:20','2022-08-08 06:51:20','062e1747-026f-4fba-a173-ad05235ce0c0'),(119230,84,141891,NULL,18057,1,'2022-08-08 06:51:20','2022-08-08 06:51:20','d0832752-71ca-4fe6-9324-747d30b48ef5'),(119231,198,141891,NULL,16824,1,'2022-08-08 06:51:20','2022-08-08 06:51:20','e12f1d77-f5ad-43ef-a36c-8d2c4cc691a6'),(119253,184,141897,NULL,48366,1,'2022-08-08 06:54:40','2022-08-08 06:54:40','ae4c8f2e-61e3-4435-ab5b-8964d5e4d9cd'),(119254,69,141897,NULL,48366,1,'2022-08-08 06:54:40','2022-08-08 06:54:40','26863e7a-b9c9-49e1-ae5f-f7097da311de'),(119255,85,141897,NULL,17965,1,'2022-08-08 06:54:40','2022-08-08 06:54:40','b7693729-8332-4c9d-87af-e9a289cee0c9'),(119256,85,141897,NULL,17968,2,'2022-08-08 06:54:40','2022-08-08 06:54:40','3b15089d-1ce1-46f8-8766-326b56b0b810'),(119257,198,141897,NULL,48366,1,'2022-08-08 06:54:40','2022-08-08 06:54:40','8e3a330e-ec0e-47fe-bd1c-dfa1ff37e52f'),(119263,184,141899,NULL,48366,1,'2022-08-08 06:55:20','2022-08-08 06:55:20','b8df44ff-a6e3-40a2-807f-f589e9e68d5e'),(119264,69,141899,NULL,48366,1,'2022-08-08 06:55:20','2022-08-08 06:55:20','fef6e8d3-7d1d-46b5-8966-f3610f1f31e5'),(119265,85,141899,NULL,17965,1,'2022-08-08 06:55:20','2022-08-08 06:55:20','d71e5b5b-c85d-400e-9de3-dc49df90435b'),(119266,85,141899,NULL,17968,2,'2022-08-08 06:55:20','2022-08-08 06:55:20','fc359711-2ec9-4874-a622-3f1992b2de76'),(119267,198,141899,NULL,48366,1,'2022-08-08 06:55:20','2022-08-08 06:55:20','02e90509-599a-4204-9c29-823958ee4054'),(119273,184,141901,NULL,48366,1,'2022-08-08 06:56:04','2022-08-08 06:56:04','c2aea782-2c5a-4a95-82db-71329ebdfdff'),(119274,69,141901,NULL,48366,1,'2022-08-08 06:56:04','2022-08-08 06:56:04','a6f9da4e-fa63-4bb8-b0eb-f2a64a24b398'),(119275,85,141901,NULL,17965,1,'2022-08-08 06:56:04','2022-08-08 06:56:04','f0123eb3-f7a4-4404-97e6-32e576e269a1'),(119276,85,141901,NULL,17968,2,'2022-08-08 06:56:04','2022-08-08 06:56:04','a2ce25de-9e4c-46dd-98ce-2dc089e58f5b'),(119277,198,141901,NULL,48366,1,'2022-08-08 06:56:04','2022-08-08 06:56:04','ec550d10-393b-40dd-912b-a01832cd1029'),(119278,184,141902,NULL,28097,1,'2022-08-08 06:59:41','2022-08-08 06:59:41','cbb877df-0b7d-48b6-9840-574b524e03ea'),(119279,69,141902,NULL,28097,1,'2022-08-08 06:59:41','2022-08-08 06:59:41','271e2aeb-fe22-41b4-bae5-2ef45213766b'),(119280,85,141902,NULL,17964,1,'2022-08-08 06:59:41','2022-08-08 06:59:41','edc97169-237c-41cf-b7d4-4ee003a4bc5b'),(119281,85,141902,NULL,17965,2,'2022-08-08 06:59:41','2022-08-08 06:59:41','ad450113-9b2f-4cac-8795-6bbac529c7f6'),(119282,198,141902,NULL,28097,1,'2022-08-08 06:59:41','2022-08-08 06:59:41','a5836793-55cc-44b6-ad24-9a146016a947'),(119288,184,141904,NULL,17431,1,'2022-08-08 07:02:05','2022-08-08 07:02:05','8a956a49-dd42-4ff8-9b6b-0936fdeba495'),(119289,69,141904,NULL,17431,1,'2022-08-08 07:02:05','2022-08-08 07:02:05','ac740a40-3672-4708-8262-1ba478e242ce'),(119290,85,141904,NULL,17968,1,'2022-08-08 07:02:05','2022-08-08 07:02:05','45fc23c9-d299-4278-8a7e-73d7c1e695ba'),(119291,85,141904,NULL,17971,2,'2022-08-08 07:02:05','2022-08-08 07:02:05','c7be56ba-c7f0-4f12-9362-ac56a658ca57'),(119292,198,141904,NULL,17431,1,'2022-08-08 07:02:05','2022-08-08 07:02:05','c7b80fc7-8713-42c0-a3d2-01880464a226'),(119294,69,141906,NULL,141632,1,'2022-08-08 07:03:56','2022-08-08 07:03:56','a2099b12-09cd-4179-8a3a-d55d8a030137'),(119296,69,141908,NULL,141632,1,'2022-08-08 07:04:07','2022-08-08 07:04:07','ab940028-062c-4cce-8a47-95b7e3272d46'),(119303,184,141910,NULL,17437,1,'2022-08-08 07:05:22','2022-08-08 07:05:22','b1a71c6f-9688-4559-81e2-08df12936664'),(119304,69,141910,NULL,17437,1,'2022-08-08 07:05:22','2022-08-08 07:05:22','f9a28b6d-73c0-4b17-8885-c10cb0c2b6e1'),(119305,85,141910,NULL,17964,1,'2022-08-08 07:05:22','2022-08-08 07:05:22','d09deba1-9465-479b-9edf-fdbc0297a7ca'),(119306,85,141910,NULL,17965,2,'2022-08-08 07:05:22','2022-08-08 07:05:22','7ce4445c-adae-46cf-b289-59220c582937'),(119307,85,141910,NULL,17971,3,'2022-08-08 07:05:22','2022-08-08 07:05:22','9a75bb51-4531-4fda-a853-dbf9b4baee3d'),(119308,198,141910,NULL,17437,1,'2022-08-08 07:05:22','2022-08-08 07:05:22','aa4230d2-2eb4-41f9-9ed4-2b1d019243db'),(119310,198,141912,NULL,94211,1,'2022-08-08 07:07:49','2022-08-08 07:07:49','95fc5293-282a-4224-800c-0d4b6a631b68'),(119311,198,141913,NULL,94211,1,'2022-08-08 07:07:53','2022-08-08 07:07:53','65d3648f-78a7-45f6-9c21-51b8f89aa8cb'),(119314,69,141921,NULL,48541,1,'2022-08-09 00:06:09','2022-08-09 00:06:09','856b2e06-84aa-416e-b024-26b32482881f'),(119315,198,141921,NULL,48541,1,'2022-08-09 00:06:09','2022-08-09 00:06:09','2e19d330-d423-4126-823f-a6a124fe7a48'),(119331,79,141923,NULL,17875,1,'2022-08-09 00:07:42','2022-08-09 00:07:42','4fbb1a5b-c4ad-4cf5-a43a-3588ca451adf'),(119332,79,141923,NULL,17899,2,'2022-08-09 00:07:42','2022-08-09 00:07:42','6871c285-1526-4a23-9de2-2e1d5a0229c0'),(119333,79,141923,NULL,17934,3,'2022-08-09 00:07:42','2022-08-09 00:07:42','152e50ab-15ca-475b-830e-0ad8a8dec3aa'),(119334,79,141923,NULL,17941,4,'2022-08-09 00:07:42','2022-08-09 00:07:42','6d5809de-0866-42c4-8b62-97ff9461e5c3'),(119335,79,141923,NULL,17954,5,'2022-08-09 00:07:42','2022-08-09 00:07:42','16051433-0614-4a7f-a336-1563d1ed56f9'),(119336,79,141923,NULL,17996,6,'2022-08-09 00:07:42','2022-08-09 00:07:42','dec95081-f730-43bb-8165-17d761ee2117'),(119337,69,141923,NULL,16824,1,'2022-08-09 00:07:42','2022-08-09 00:07:42','098c4981-b48a-49b0-9096-3cbdda938077'),(119338,85,141923,NULL,17964,1,'2022-08-09 00:07:42','2022-08-09 00:07:42','84dc6e68-7973-46fa-b6b4-7173dfde0545'),(119339,85,141923,NULL,17966,2,'2022-08-09 00:07:42','2022-08-09 00:07:42','4df2f90d-8281-4990-87e9-515ce58f2116'),(119340,85,141923,NULL,17967,3,'2022-08-09 00:07:42','2022-08-09 00:07:42','4a2cdf2a-0756-451e-bca9-267d484f833f'),(119341,85,141923,NULL,17969,4,'2022-08-09 00:07:42','2022-08-09 00:07:42','bd6b1541-c607-401c-8c21-3482cc71ba2f'),(119342,85,141923,NULL,17970,5,'2022-08-09 00:07:42','2022-08-09 00:07:42','9b3993fe-a19e-49d3-99d6-79dcbc5ebce2'),(119343,85,141923,NULL,17971,6,'2022-08-09 00:07:42','2022-08-09 00:07:42','90f6f31d-0044-4c8d-8170-1411a80202ef'),(119344,84,141923,NULL,18057,1,'2022-08-09 00:07:42','2022-08-09 00:07:42','3bcb3a66-41c6-4b38-ad41-aac5f9f4b9d8'),(119345,198,141923,NULL,16824,1,'2022-08-09 00:07:42','2022-08-09 00:07:42','df45b01b-8939-48de-b1d3-5629525b0757'),(119364,79,141927,NULL,17875,1,'2022-08-12 03:38:44','2022-08-12 03:38:44','5a2ef4b1-2671-46ff-b170-f606eb8278d9'),(119365,79,141927,NULL,17996,2,'2022-08-12 03:38:44','2022-08-12 03:38:44','3c1e6f07-a5a4-434c-8dcc-9db4fa7930b6'),(119366,69,141927,NULL,140057,1,'2022-08-12 03:38:44','2022-08-12 03:38:44','afef2a9c-23b6-4188-9692-0f3ccb6c46b3'),(119378,79,141929,NULL,17875,1,'2022-08-12 03:45:04','2022-08-12 03:45:04','935c2481-9723-4ab7-959e-a3585d875d9e'),(119379,79,141929,NULL,17954,2,'2022-08-12 03:45:04','2022-08-12 03:45:04','e986468c-147d-4d74-a544-06c94924fe08'),(119380,69,141929,NULL,48176,1,'2022-08-12 03:45:04','2022-08-12 03:45:04','be24d8e5-0c8c-4465-b7f4-814dd0c4d60c'),(119381,85,141929,NULL,17964,1,'2022-08-12 03:45:04','2022-08-12 03:45:04','72e87dc0-32df-4afe-8d14-d5e011972b8e'),(119382,85,141929,NULL,17965,2,'2022-08-12 03:45:04','2022-08-12 03:45:04','53db22d7-5624-44e0-915c-36ebb1b2abb1'),(119383,85,141929,NULL,17966,3,'2022-08-12 03:45:04','2022-08-12 03:45:04','08acf000-200c-492d-81c1-28c70e34fd3a'),(119384,85,141929,NULL,17969,4,'2022-08-12 03:45:04','2022-08-12 03:45:04','b2ee47d5-6abd-41c6-8fa5-bfee6192a5f7'),(119385,85,141929,NULL,17970,5,'2022-08-12 03:45:04','2022-08-12 03:45:04','c6c2786d-d7fb-4f93-90bd-1290366e97b2'),(119386,85,141929,NULL,17971,6,'2022-08-12 03:45:04','2022-08-12 03:45:04','35350a35-0486-4a3c-8690-ebed8024d5d9'),(119387,84,141929,NULL,38158,1,'2022-08-12 03:45:04','2022-08-12 03:45:04','695b7fff-106d-470b-904f-58c518584512'),(119388,198,141929,NULL,48176,1,'2022-08-12 03:45:04','2022-08-12 03:45:04','e2d5592c-c823-41de-ac0f-628c0f18d33e'),(119407,79,141931,NULL,17875,1,'2022-08-12 03:45:45','2022-08-12 03:45:45','c5a193fe-ec41-4b6f-8202-a0ebbf812bf4'),(119408,79,141931,NULL,17887,2,'2022-08-12 03:45:45','2022-08-12 03:45:45','7c146808-f527-488a-b24a-82190dfecadd'),(119409,79,141931,NULL,17899,3,'2022-08-12 03:45:45','2022-08-12 03:45:45','5a6d8067-2449-4824-9240-1ed64f6bca00'),(119410,79,141931,NULL,17934,4,'2022-08-12 03:45:45','2022-08-12 03:45:45','1aa28a21-2636-4df2-bb6a-152724474bb9'),(119411,79,141931,NULL,17941,5,'2022-08-12 03:45:45','2022-08-12 03:45:45','e44f59ea-5b95-4565-b876-7ae530cc2fd1'),(119412,79,141931,NULL,1,6,'2022-08-12 03:45:45','2022-08-12 03:45:45','557da5f4-b471-4ae2-be1b-c665d851fe7f'),(119413,79,141931,NULL,17954,7,'2022-08-12 03:45:45','2022-08-12 03:45:45','2b4bac1c-ddc5-4a99-8d91-1fb29d618bde'),(119414,79,141931,NULL,17956,8,'2022-08-12 03:45:45','2022-08-12 03:45:45','e616e445-935c-48fa-ab95-faf7451836f7'),(119415,79,141931,NULL,17996,9,'2022-08-12 03:45:45','2022-08-12 03:45:45','912973ce-e30a-4dfb-9827-5fec48688305'),(119416,69,141931,NULL,30441,1,'2022-08-12 03:45:45','2022-08-12 03:45:45','caf1e2c9-21a5-447d-9d25-73ff2dfff1a7'),(119417,85,141931,NULL,17964,1,'2022-08-12 03:45:45','2022-08-12 03:45:45','16a6c107-55e5-46d1-9eec-9ff6083f2102'),(119418,85,141931,NULL,17965,2,'2022-08-12 03:45:45','2022-08-12 03:45:45','73288682-2f33-4dd4-8fac-f5d15228d07d'),(119419,85,141931,NULL,17966,3,'2022-08-12 03:45:45','2022-08-12 03:45:45','6733fd87-d4f9-4933-a023-26703e0d4182'),(119420,85,141931,NULL,17968,4,'2022-08-12 03:45:45','2022-08-12 03:45:45','79a933dc-5d68-4778-8f0f-f18032bdf5b4'),(119421,85,141931,NULL,17969,5,'2022-08-12 03:45:45','2022-08-12 03:45:45','7e387615-9c51-422b-929e-2708898d4493'),(119422,85,141931,NULL,17971,6,'2022-08-12 03:45:45','2022-08-12 03:45:45','57b746e2-35d2-4944-b7b6-e0459e647f4c'),(119423,84,141931,NULL,38157,1,'2022-08-12 03:45:45','2022-08-12 03:45:45','c5a9a0b4-ef12-4d6d-8ed9-ad77b875786a'),(119424,198,141931,NULL,30441,1,'2022-08-12 03:45:45','2022-08-12 03:45:45','f84f8ced-c38e-40d2-a154-281a73088a4d'),(119443,79,141933,NULL,17875,1,'2022-08-12 03:46:35','2022-08-12 03:46:35','a8f93341-71bd-4d07-bc25-9c8c3a397fb6'),(119444,79,141933,NULL,17887,2,'2022-08-12 03:46:35','2022-08-12 03:46:35','4dfdd3f3-651b-4d88-85f8-1dd17c5f3704'),(119445,79,141933,NULL,17899,3,'2022-08-12 03:46:35','2022-08-12 03:46:35','e423678b-f7e3-48ce-96c3-4d1491163a0e'),(119446,79,141933,NULL,17934,4,'2022-08-12 03:46:35','2022-08-12 03:46:35','cc27e91a-3caf-430b-b147-d655322cfd24'),(119447,79,141933,NULL,17941,5,'2022-08-12 03:46:35','2022-08-12 03:46:35','c67b3443-57ef-45af-b36a-eeabe5fcaf1a'),(119448,79,141933,NULL,1,6,'2022-08-12 03:46:35','2022-08-12 03:46:35','1ae2fdf3-0e95-46f0-8c5b-13502bd89718'),(119449,79,141933,NULL,17956,7,'2022-08-12 03:46:35','2022-08-12 03:46:35','9642a7a6-9a20-41f1-a95c-392f78a3fd35'),(119450,79,141933,NULL,17996,8,'2022-08-12 03:46:35','2022-08-12 03:46:35','f2ff78e2-8767-4795-847a-57bf2e08d9f7'),(119451,69,141933,NULL,61826,1,'2022-08-12 03:46:35','2022-08-12 03:46:35','e553647c-d798-46a3-91a0-42f63a8e3ef7'),(119452,85,141933,NULL,17964,1,'2022-08-12 03:46:35','2022-08-12 03:46:35','35f17ea3-62b4-451f-9775-0d1a784697f2'),(119453,85,141933,NULL,17965,2,'2022-08-12 03:46:35','2022-08-12 03:46:35','5b8fdb09-73df-4a4b-a07e-48e4bdefedf0'),(119454,85,141933,NULL,17966,3,'2022-08-12 03:46:35','2022-08-12 03:46:35','e4572aaa-80cf-4e9a-b5d6-418f6300530e'),(119455,85,141933,NULL,17968,4,'2022-08-12 03:46:35','2022-08-12 03:46:35','fe49f1cc-7b1a-4a7e-b1ba-58edc8db4d89'),(119456,85,141933,NULL,17969,5,'2022-08-12 03:46:35','2022-08-12 03:46:35','441f0b29-fa5f-44e6-a6a9-6739abc479b8'),(119457,85,141933,NULL,17970,6,'2022-08-12 03:46:35','2022-08-12 03:46:35','a5dc2472-cb12-4a16-b166-47daaaaebf3f'),(119458,85,141933,NULL,17971,7,'2022-08-12 03:46:35','2022-08-12 03:46:35','1355553a-9c1c-466c-8d5a-383e5b804c55'),(119459,84,141933,NULL,38160,1,'2022-08-12 03:46:35','2022-08-12 03:46:35','3ead1907-4e54-4f2f-9f8c-64959f4d6262'),(119460,198,141933,NULL,61826,1,'2022-08-12 03:46:35','2022-08-12 03:46:35','eb946610-04af-4874-8cd9-b091a53fe816'),(119475,79,141935,NULL,17875,1,'2022-08-12 03:46:46','2022-08-12 03:46:46','a57df285-f7fd-4ccd-85b4-4047903164f6'),(119476,79,141935,NULL,1,2,'2022-08-12 03:46:46','2022-08-12 03:46:46','5c08f9fc-b987-4a94-9f1e-e741e7d7ad46'),(119477,79,141935,NULL,17954,3,'2022-08-12 03:46:46','2022-08-12 03:46:46','ba251b83-3624-45ad-9049-917a8792526f'),(119478,79,141935,NULL,17881,4,'2022-08-12 03:46:46','2022-08-12 03:46:46','bc8252e5-028b-4bac-a73d-5154d9b03cbb'),(119479,79,141935,NULL,17956,5,'2022-08-12 03:46:46','2022-08-12 03:46:46','fcf8c53d-b956-4b8d-8c7b-6d5db6510de0'),(119480,69,141935,NULL,16693,1,'2022-08-12 03:46:46','2022-08-12 03:46:46','137b9295-f4ad-46c7-ab99-f29a74af4cad'),(119481,85,141935,NULL,17964,1,'2022-08-12 03:46:46','2022-08-12 03:46:46','22512abc-3eca-4091-92ae-cf55472166ed'),(119482,85,141935,NULL,17965,2,'2022-08-12 03:46:46','2022-08-12 03:46:46','8decd0d4-12c2-4c63-9127-94a2ce957454'),(119483,85,141935,NULL,17966,3,'2022-08-12 03:46:46','2022-08-12 03:46:46','064657ae-e9b1-440e-bde3-c5b4016e216e'),(119484,85,141935,NULL,17969,4,'2022-08-12 03:46:46','2022-08-12 03:46:46','a9ea4a71-0436-4b77-8580-883b5382ddda'),(119485,85,141935,NULL,17970,5,'2022-08-12 03:46:46','2022-08-12 03:46:46','db6ccb2b-4e27-4041-a80b-11690d066f14'),(119486,85,141935,NULL,17971,6,'2022-08-12 03:46:46','2022-08-12 03:46:46','34e5fc12-6caa-4b50-a164-b51f19d4a089'),(119487,84,141935,NULL,38158,1,'2022-08-12 03:46:46','2022-08-12 03:46:46','07d8d074-a973-435c-92e7-1c99e9de5909'),(119488,198,141935,NULL,16693,1,'2022-08-12 03:46:46','2022-08-12 03:46:46','345e4261-4509-47a4-ae2a-9e0a858eb435'),(119502,79,141937,NULL,17875,1,'2022-08-12 03:46:53','2022-08-12 03:46:53','90ca5d98-e011-4e3b-9e58-884fe4d51c8d'),(119503,79,141937,NULL,17934,2,'2022-08-12 03:46:53','2022-08-12 03:46:53','e8bf646a-057c-48d1-9291-29ec965e79ba'),(119504,79,141937,NULL,17881,3,'2022-08-12 03:46:53','2022-08-12 03:46:53','7c548d35-0f51-47fc-a808-d03bf1c8aa9e'),(119505,79,141937,NULL,17954,4,'2022-08-12 03:46:53','2022-08-12 03:46:53','a7b5a85b-93e7-47c5-ba76-d079baac58cb'),(119506,79,141937,NULL,17956,5,'2022-08-12 03:46:53','2022-08-12 03:46:53','991c72e7-8d4d-4e25-8960-bd2cda93610f'),(119507,69,141937,NULL,61819,1,'2022-08-12 03:46:53','2022-08-12 03:46:53','b8ed0e7c-ac2d-4703-8e6a-65f1fb1c92d6'),(119508,85,141937,NULL,17964,1,'2022-08-12 03:46:53','2022-08-12 03:46:53','da155faa-82b2-4a02-84a3-8cc88169ae6d'),(119509,85,141937,NULL,17965,2,'2022-08-12 03:46:53','2022-08-12 03:46:53','724a4124-4a96-4285-ad09-c59e428ab44b'),(119510,85,141937,NULL,17969,3,'2022-08-12 03:46:53','2022-08-12 03:46:53','57cc0d85-27a9-4ebe-b893-934b155706e0'),(119511,85,141937,NULL,17970,4,'2022-08-12 03:46:53','2022-08-12 03:46:53','29a8454f-ed0a-4dde-a9c8-d6fda3875879'),(119512,85,141937,NULL,17971,5,'2022-08-12 03:46:53','2022-08-12 03:46:53','5fda58f1-a013-4c8b-ac0f-88ff6ef9a96e'),(119513,84,141937,NULL,38161,1,'2022-08-12 03:46:53','2022-08-12 03:46:53','9609471e-7f40-4d77-9067-109c34b64d6d'),(119514,198,141937,NULL,61819,1,'2022-08-12 03:46:53','2022-08-12 03:46:53','88490928-e70a-4691-aaf6-d37ac76bdbc8'),(119515,79,141938,NULL,17875,1,'2022-08-12 03:47:29','2022-08-12 03:47:29','89074c35-fa0a-4a4a-abac-1adfaaf50e88'),(119516,79,141938,NULL,17899,2,'2022-08-12 03:47:29','2022-08-12 03:47:29','20686b39-b476-4ff8-87f6-552a11814902'),(119517,79,141938,NULL,17934,3,'2022-08-12 03:47:29','2022-08-12 03:47:29','1bed4d5c-e2af-4061-b864-8174165760c3'),(119518,79,141938,NULL,17941,4,'2022-08-12 03:47:29','2022-08-12 03:47:29','a1dc7f1d-ad32-4b86-97d6-8fbe131a6521'),(119519,79,141938,NULL,17954,5,'2022-08-12 03:47:29','2022-08-12 03:47:29','1edbb539-f4a3-44de-a544-a82d91fb9884'),(119520,79,141938,NULL,17996,6,'2022-08-12 03:47:29','2022-08-12 03:47:29','c319ef41-9e0f-4062-95ef-bb9ce0b3a894'),(119521,69,141938,NULL,16824,1,'2022-08-12 03:47:29','2022-08-12 03:47:29','351675b6-1104-4fe2-b4a9-048dc620dd9e'),(119522,85,141938,NULL,17964,1,'2022-08-12 03:47:29','2022-08-12 03:47:29','2241e4d3-db03-4678-b061-59e772b53a9d'),(119523,85,141938,NULL,17966,2,'2022-08-12 03:47:29','2022-08-12 03:47:29','86a14282-7484-4a3f-993c-c41586e9e7d1'),(119524,85,141938,NULL,17967,3,'2022-08-12 03:47:29','2022-08-12 03:47:29','5e2da129-da5a-4de8-8b5c-207696282707'),(119525,85,141938,NULL,17969,4,'2022-08-12 03:47:29','2022-08-12 03:47:29','5324be64-3bd4-406d-a8b8-99a118826370'),(119526,85,141938,NULL,17970,5,'2022-08-12 03:47:29','2022-08-12 03:47:29','a869adce-9f16-4aa9-bb6a-d6af1f28db3e'),(119527,85,141938,NULL,17971,6,'2022-08-12 03:47:29','2022-08-12 03:47:29','e96dd90c-a58f-409f-bb74-2033f0ca6e09'),(119528,84,141938,NULL,18057,1,'2022-08-12 03:47:29','2022-08-12 03:47:29','f81888db-d522-4b70-9ae8-a3ef7f0199b4'),(119529,198,141938,NULL,16824,1,'2022-08-12 03:47:29','2022-08-12 03:47:29','ee1c348e-f1dd-43a8-8077-5a939ee2c9a1'),(119542,79,141940,NULL,17881,1,'2022-08-12 03:50:34','2022-08-12 03:50:34','b88c4ef1-314f-4f32-8569-d06617338450'),(119543,79,141940,NULL,1,2,'2022-08-12 03:50:34','2022-08-12 03:50:34','2afd3d5d-7134-41e8-8592-f0de3ee5cf10'),(119544,79,141940,NULL,17954,3,'2022-08-12 03:50:34','2022-08-12 03:50:34','65391142-e18a-42c2-b01b-88038fca109f'),(119545,69,141940,NULL,141596,1,'2022-08-12 03:50:34','2022-08-12 03:50:34','9b343c44-731f-4c38-baca-8060e0573310'),(119546,85,141940,NULL,17964,1,'2022-08-12 03:50:34','2022-08-12 03:50:34','5f94743b-63a5-4236-bc0a-52707b4c05df'),(119547,85,141940,NULL,17965,2,'2022-08-12 03:50:34','2022-08-12 03:50:34','6a1a79f9-8c17-4517-9f26-ae655243b6b6'),(119548,85,141940,NULL,17968,3,'2022-08-12 03:50:34','2022-08-12 03:50:34','feecdc8d-6f01-4a58-a87a-376556f01207'),(119549,85,141940,NULL,17970,4,'2022-08-12 03:50:34','2022-08-12 03:50:34','799ccf21-6395-4a6d-bdd6-9cc0d8d32dca'),(119550,85,141940,NULL,17971,5,'2022-08-12 03:50:34','2022-08-12 03:50:34','41bddcb2-74cb-4c86-ac8c-1e222634dc8d'),(119551,84,141940,NULL,18057,1,'2022-08-12 03:50:34','2022-08-12 03:50:34','bda49c00-f93e-45a8-9af8-14ca17f4c207'),(119552,84,141940,NULL,38160,2,'2022-08-12 03:50:34','2022-08-12 03:50:34','f4588e8e-7c0e-429b-a421-b05c3c54064f'),(119565,198,18139,NULL,141596,1,'2022-08-12 03:51:25','2022-08-12 03:51:25','eef148e0-52f0-465a-9059-ce14bd9f12c3'),(119566,79,141942,NULL,17881,1,'2022-08-12 03:51:25','2022-08-12 03:51:25','9cf53f08-26bc-4e42-a879-76c218b6d08c'),(119567,79,141942,NULL,1,2,'2022-08-12 03:51:25','2022-08-12 03:51:25','8c81cd6c-8e3d-499c-981c-43530ecc910c'),(119568,79,141942,NULL,17954,3,'2022-08-12 03:51:25','2022-08-12 03:51:25','d26fdf74-d6ab-46d9-a2de-91a3204f9df7'),(119569,69,141942,NULL,141596,1,'2022-08-12 03:51:25','2022-08-12 03:51:25','470a5a9d-6289-4400-ab6f-01b3f7d1871d'),(119570,85,141942,NULL,17964,1,'2022-08-12 03:51:25','2022-08-12 03:51:25','4609614d-81ee-4498-bec4-d4c25bd8c315'),(119571,85,141942,NULL,17965,2,'2022-08-12 03:51:25','2022-08-12 03:51:25','2ca43ef4-b34f-456b-825a-458e314f370a'),(119572,85,141942,NULL,17968,3,'2022-08-12 03:51:25','2022-08-12 03:51:25','66b0a4cb-0fc0-429f-9f28-a92e441690e9'),(119573,85,141942,NULL,17970,4,'2022-08-12 03:51:25','2022-08-12 03:51:25','b3439cb8-c40a-4e9f-80ab-32cd39e4625a'),(119574,85,141942,NULL,17971,5,'2022-08-12 03:51:25','2022-08-12 03:51:25','580130f8-facf-461a-a682-dbbc1e2fe0cd'),(119575,84,141942,NULL,18057,1,'2022-08-12 03:51:25','2022-08-12 03:51:25','6fb7dd3c-37fb-4410-ba20-a5d59ea31eae'),(119576,84,141942,NULL,38160,2,'2022-08-12 03:51:25','2022-08-12 03:51:25','844190c4-7f95-4e64-86b5-9ae0180ced30'),(119577,198,141942,NULL,141596,1,'2022-08-12 03:51:25','2022-08-12 03:51:25','225b1a36-8476-4809-abc8-e178d20c07df'),(119592,79,141944,NULL,17934,1,'2022-08-15 02:54:41','2022-08-15 02:54:41','044fbdb2-62bd-42e4-bd07-aa08e5358d00'),(119593,79,141944,NULL,17875,2,'2022-08-15 02:54:41','2022-08-15 02:54:41','92a59042-ddf4-404f-904f-eb15f253f71f'),(119594,79,141944,NULL,17954,3,'2022-08-15 02:54:41','2022-08-15 02:54:41','d870f2e8-7581-4cb2-a8a0-40352c1ec429'),(119595,79,141944,NULL,17956,4,'2022-08-15 02:54:41','2022-08-15 02:54:41','4bf7950f-f243-4aab-a569-b22cacbe80be'),(119596,69,141944,NULL,139975,1,'2022-08-15 02:54:41','2022-08-15 02:54:41','a1c63343-70fd-46f5-9b91-c0455828be3b'),(119597,85,141944,NULL,17964,1,'2022-08-15 02:54:41','2022-08-15 02:54:41','73db1ebf-2a48-46f9-b859-15cde779feb9'),(119598,85,141944,NULL,17965,2,'2022-08-15 02:54:41','2022-08-15 02:54:41','b754b83d-719a-4031-87ca-78e531a1e924'),(119599,85,141944,NULL,17966,3,'2022-08-15 02:54:41','2022-08-15 02:54:41','9a637306-e9b5-4ae3-b50b-2fba243b4abb'),(119600,85,141944,NULL,17967,4,'2022-08-15 02:54:41','2022-08-15 02:54:41','340692fe-5221-442f-a034-6c01b6bbe1ce'),(119601,85,141944,NULL,17968,5,'2022-08-15 02:54:41','2022-08-15 02:54:41','86e321e8-5670-4660-91e2-34b784f0af25'),(119602,85,141944,NULL,17969,6,'2022-08-15 02:54:41','2022-08-15 02:54:41','3b52bd66-adde-4441-ae22-bbfacb9c655d'),(119603,84,141944,NULL,18057,1,'2022-08-15 02:54:41','2022-08-15 02:54:41','f3a208be-49b8-406d-bd78-9a0ca61330e1'),(119604,84,141944,NULL,38161,2,'2022-08-15 02:54:41','2022-08-15 02:54:41','f95b451c-c52d-4600-97c9-b4309656f16b'),(119605,198,141944,NULL,139975,1,'2022-08-15 02:54:41','2022-08-15 02:54:41','7c3e5382-2c8f-4bd3-855b-e610293ef539'),(119606,69,141925,NULL,141945,1,'2022-08-15 05:27:51','2022-08-15 05:27:51','a4ac9584-fb91-472d-b7c5-f597ff8ff053'),(119607,69,141949,NULL,141945,1,'2022-08-15 05:32:55','2022-08-15 05:32:55','48dbb26d-ef02-4e54-876c-f43d00fd4cb4'),(119610,69,141952,NULL,141945,1,'2022-08-15 05:39:07','2022-08-15 05:39:07','782b378a-2c6d-4b29-8780-5667760118bf'),(119611,69,141953,NULL,141945,1,'2022-08-15 05:39:25','2022-08-15 05:39:25','dd23dccf-9556-431d-b1a3-c38e0132d806'),(119613,79,141955,NULL,17881,1,'2022-08-15 05:55:07','2022-08-15 05:55:07','6b933c29-59af-4520-b61f-8cbed6dd72b0'),(119614,79,141955,NULL,1,2,'2022-08-15 05:55:07','2022-08-15 05:55:07','a2e02a6a-ee15-4882-9857-f13563e715d8'),(119615,79,141955,NULL,17954,3,'2022-08-15 05:55:07','2022-08-15 05:55:07','7fed57e6-940d-49fe-9fd7-2ae11ce8c3a9'),(119616,69,141955,NULL,141596,1,'2022-08-15 05:55:07','2022-08-15 05:55:07','c4ca0d91-4c86-4b5c-b7eb-948325baabf1'),(119617,85,141955,NULL,17964,1,'2022-08-15 05:55:07','2022-08-15 05:55:07','76e51a8e-15ab-4329-a58b-aab166af47de'),(119618,85,141955,NULL,17965,2,'2022-08-15 05:55:07','2022-08-15 05:55:07','c4263821-dbd9-47cd-96d0-74396bc7cfda'),(119619,85,141955,NULL,17968,3,'2022-08-15 05:55:07','2022-08-15 05:55:07','fd053c6b-7996-46df-be7e-8ee790356acb'),(119620,85,141955,NULL,17970,4,'2022-08-15 05:55:07','2022-08-15 05:55:07','f2ae0bc5-cb08-466d-a909-8b3491d33355'),(119621,85,141955,NULL,17971,5,'2022-08-15 05:55:07','2022-08-15 05:55:07','6164e24c-96d6-4481-9385-6f067eaf98b5'),(119622,84,141955,NULL,18057,1,'2022-08-15 05:55:07','2022-08-15 05:55:07','27198fca-ddba-4966-9061-7c4becd9e557'),(119623,84,141955,NULL,38160,2,'2022-08-15 05:55:07','2022-08-15 05:55:07','5ae88d46-473b-4934-bbf6-75b7aafb7b4e'),(119624,198,141955,NULL,141596,1,'2022-08-15 05:55:07','2022-08-15 05:55:07','0fda4699-fab9-4ebb-8117-033ec285a71d'),(119628,184,141958,NULL,141538,1,'2022-08-16 04:33:47','2022-08-16 04:33:47','18acd41a-c973-43e6-9ae0-15e6359732cd'),(119629,69,141958,NULL,141535,1,'2022-08-16 04:33:47','2022-08-16 04:33:47','a4a8c511-5991-41a1-a495-0db93eee526d'),(119630,198,141958,NULL,141535,1,'2022-08-16 04:33:47','2022-08-16 04:33:47','91cbec11-a8ae-4a09-a43e-93733d183b96'),(119634,184,141960,NULL,141538,1,'2022-08-16 04:38:12','2022-08-16 04:38:12','7f9715ba-84e0-4c73-b816-fb738cceb43e'),(119635,69,141960,NULL,141535,1,'2022-08-16 04:38:12','2022-08-16 04:38:12','eaae053b-a54d-4c59-ac92-b828fa89ecab'),(119636,198,141960,NULL,141535,1,'2022-08-16 04:38:12','2022-08-16 04:38:12','8e8ba673-20ef-4db9-b4c1-38d6fe83cb63'),(119643,184,141968,NULL,17436,1,'2022-08-16 07:22:28','2022-08-16 07:22:28','14d1e827-c487-44ca-b219-afe0adb1ef3d'),(119644,69,141968,NULL,17436,1,'2022-08-16 07:22:28','2022-08-16 07:22:28','4949b804-61bd-4aec-81cf-bf232999e7df'),(119645,85,141968,NULL,17964,1,'2022-08-16 07:22:28','2022-08-16 07:22:28','40b08b7d-79e1-4d97-9954-a8ca3ba838c2'),(119646,85,141968,NULL,17965,2,'2022-08-16 07:22:28','2022-08-16 07:22:28','1677b4b7-a8d5-4df7-a0bb-19d61a919fd5'),(119647,85,141968,NULL,17971,3,'2022-08-16 07:22:28','2022-08-16 07:22:28','27b6c165-ec02-4abf-af63-2a58f730a755'),(119648,198,141968,NULL,17436,1,'2022-08-16 07:22:28','2022-08-16 07:22:28','9d03682c-de01-436f-986c-a2c3a829831f'),(119655,184,141970,NULL,17436,1,'2022-08-16 07:22:41','2022-08-16 07:22:41','50894846-c4b5-414c-97af-dffdff6b7e62'),(119656,69,141970,NULL,17436,1,'2022-08-16 07:22:41','2022-08-16 07:22:41','2635d441-98ce-4bd0-8772-6f312b591ae9'),(119657,85,141970,NULL,17964,1,'2022-08-16 07:22:41','2022-08-16 07:22:41','8b36f716-a759-4850-8f1e-c8efeb009efa'),(119658,85,141970,NULL,17965,2,'2022-08-16 07:22:41','2022-08-16 07:22:41','b7704bf2-b7cc-4ab1-8a3f-ebb60e680845'),(119659,85,141970,NULL,17971,3,'2022-08-16 07:22:41','2022-08-16 07:22:41','ccaef176-d54a-4d31-8dab-8005a716a272'),(119660,198,141970,NULL,17436,1,'2022-08-16 07:22:41','2022-08-16 07:22:41','565d639b-6ba6-4c48-b937-aee289e6d870'),(119662,79,141971,NULL,17881,1,'2022-08-16 23:16:52','2022-08-16 23:16:52','8a62c08a-0901-489f-a403-eb9c601f1ad8'),(119663,79,141971,NULL,1,2,'2022-08-16 23:16:52','2022-08-16 23:16:52','f3492f9e-48af-4ac0-920c-91128df92c80'),(119664,79,141971,NULL,17954,3,'2022-08-16 23:16:52','2022-08-16 23:16:52','2f57ad89-9894-468f-a7e0-c48eb60b89b7'),(119665,69,141971,NULL,141596,1,'2022-08-16 23:16:52','2022-08-16 23:16:52','f975acf3-3993-4474-aff9-5de1fecfced7'),(119666,85,141971,NULL,17964,1,'2022-08-16 23:16:52','2022-08-16 23:16:52','e46494f5-d3d7-4750-a572-790224f905eb'),(119667,85,141971,NULL,17965,2,'2022-08-16 23:16:52','2022-08-16 23:16:52','fc751ad2-18e2-42c9-ba63-a16b66eceb73'),(119668,85,141971,NULL,17968,3,'2022-08-16 23:16:52','2022-08-16 23:16:52','1d7c11fb-cffb-4181-a605-aa2e7747d4e0'),(119669,85,141971,NULL,17970,4,'2022-08-16 23:16:52','2022-08-16 23:16:52','7200fe3f-bc4d-40e7-94d1-2dfa02dfd4ec'),(119670,85,141971,NULL,17971,5,'2022-08-16 23:16:52','2022-08-16 23:16:52','a23e95ae-3d04-47a4-9790-aa3dc982f94c'),(119671,84,141971,NULL,18057,1,'2022-08-16 23:16:52','2022-08-16 23:16:52','f20fb7f0-ec7c-4897-969d-11d25e07bf1b'),(119672,84,141971,NULL,38160,2,'2022-08-16 23:16:52','2022-08-16 23:16:52','848f8ca3-2cfe-4fff-85a9-a7a9ddc35629'),(119673,198,141971,NULL,141596,1,'2022-08-16 23:16:52','2022-08-16 23:16:52','55eca941-d991-4666-b443-744425e7fb7f'),(119674,184,141972,NULL,17436,1,'2022-08-17 02:35:27','2022-08-17 02:35:27','c448b26f-75b0-422d-8daa-5c896118d105'),(119675,69,141972,NULL,17436,1,'2022-08-17 02:35:27','2022-08-17 02:35:27','27ceed16-618f-4320-9011-3e2e551ad66e'),(119676,85,141972,NULL,17964,1,'2022-08-17 02:35:27','2022-08-17 02:35:27','a394c539-e64d-4ab3-930e-3c8d2f3b2027'),(119677,85,141972,NULL,17965,2,'2022-08-17 02:35:27','2022-08-17 02:35:27','b9222f11-8ec3-4282-bc6e-834d6349099f'),(119678,85,141972,NULL,17971,3,'2022-08-17 02:35:27','2022-08-17 02:35:27','4e7de2c5-a12f-4f3e-a6e0-1f272323d770'),(119679,198,141972,NULL,17436,1,'2022-08-17 02:35:27','2022-08-17 02:35:27','bcd92db5-7848-461d-ae6a-64f12209bdca'),(119692,79,141974,NULL,17881,1,'2022-08-17 02:36:37','2022-08-17 02:36:37','04a3ef25-084a-40a4-98f5-4b0306a73f2b'),(119693,79,141974,NULL,1,2,'2022-08-17 02:36:37','2022-08-17 02:36:37','f9e08e44-d627-4156-8f25-6a61dbadf464'),(119694,79,141974,NULL,17954,3,'2022-08-17 02:36:37','2022-08-17 02:36:37','8746f825-ecbf-478e-8c9b-48f87c173bd2'),(119695,69,141974,NULL,141596,1,'2022-08-17 02:36:37','2022-08-17 02:36:37','45ca3e19-065d-4c5c-b646-59fb3ff7e6a2'),(119696,85,141974,NULL,17964,1,'2022-08-17 02:36:37','2022-08-17 02:36:37','e72d468f-1e61-4354-9645-8d0f5f50e374'),(119697,85,141974,NULL,17965,2,'2022-08-17 02:36:37','2022-08-17 02:36:37','6df2d720-b5e1-4a70-b440-70415ac67818'),(119698,85,141974,NULL,17968,3,'2022-08-17 02:36:37','2022-08-17 02:36:37','93cb597e-aaa8-4b3c-a201-22e031640d2d'),(119699,85,141974,NULL,17970,4,'2022-08-17 02:36:37','2022-08-17 02:36:37','529d1722-9fba-4935-acc0-2b9062e2e395'),(119700,85,141974,NULL,17971,5,'2022-08-17 02:36:37','2022-08-17 02:36:37','640c7e35-b09b-4a02-9bb1-187fb2b45a37'),(119701,84,141974,NULL,18057,1,'2022-08-17 02:36:37','2022-08-17 02:36:37','34c12c0c-1d15-4704-a112-3b2f12d254e6'),(119702,84,141974,NULL,38160,2,'2022-08-17 02:36:37','2022-08-17 02:36:37','9cb5b27b-9f43-41f6-abc6-e82dd218147d'),(119703,198,141974,NULL,141596,1,'2022-08-17 02:36:37','2022-08-17 02:36:37','3c1ea76b-5480-4130-8768-ba868c831df2'),(119704,69,141975,NULL,141945,1,'2022-08-17 04:14:48','2022-08-17 04:14:48','d7b7ee6e-1f28-42bc-8599-a7b735bed4cc'),(119714,184,17646,NULL,141977,1,'2022-08-17 04:38:29','2022-08-17 04:38:29','78ab99b1-dea3-4c24-9152-c99ad4460a55'),(119715,69,17646,NULL,141977,1,'2022-08-17 04:38:29','2022-08-17 04:38:29','d6cc5fda-59f2-4ff5-b95d-4b005f329414'),(119716,198,17646,NULL,141977,1,'2022-08-17 04:38:29','2022-08-17 04:38:29','36f3498c-0719-4813-8b05-8dba86b740a0'),(119717,184,141978,NULL,141977,1,'2022-08-17 04:38:29','2022-08-17 04:38:29','831111d5-f406-415c-93bd-5c7a40a35524'),(119718,69,141978,NULL,141977,1,'2022-08-17 04:38:29','2022-08-17 04:38:29','e48467c8-8877-4a52-b34f-f820b68c5112'),(119719,85,141978,NULL,17964,1,'2022-08-17 04:38:29','2022-08-17 04:38:29','3e7c2120-d62e-4762-ba1c-e55e05629140'),(119720,85,141978,NULL,17965,2,'2022-08-17 04:38:29','2022-08-17 04:38:29','1abba865-d0eb-4339-bfb6-585a7450dd81'),(119721,85,141978,NULL,17971,3,'2022-08-17 04:38:29','2022-08-17 04:38:29','e0bab7fd-8a43-4daf-84f8-0b71061d166e'),(119722,198,141978,NULL,141977,1,'2022-08-17 04:38:29','2022-08-17 04:38:29','f5bcdf95-dfe7-4e1c-82bf-aeed7ca5996b'),(119729,184,141980,NULL,141977,1,'2022-08-17 04:38:56','2022-08-17 04:38:56','85c56031-c8da-479f-858d-dff14a50e4d2'),(119730,69,141980,NULL,141977,1,'2022-08-17 04:38:56','2022-08-17 04:38:56','c7ed20e7-be61-458e-949a-0a7a37d5c242'),(119731,85,141980,NULL,17964,1,'2022-08-17 04:38:56','2022-08-17 04:38:56','ff75fe6c-58d1-4633-a78f-8532782fec56'),(119732,85,141980,NULL,17965,2,'2022-08-17 04:38:56','2022-08-17 04:38:56','4bbc1c72-805c-4d8b-8741-ae92a931ef94'),(119733,85,141980,NULL,17971,3,'2022-08-17 04:38:56','2022-08-17 04:38:56','958cd2a1-c28c-4d4a-adcd-a8e40a31eef6'),(119734,198,141980,NULL,141977,1,'2022-08-17 04:38:56','2022-08-17 04:38:56','db9e85bd-94cf-4604-9832-ab57086da7ad'),(119741,184,141982,NULL,141977,1,'2022-08-17 04:54:11','2022-08-17 04:54:11','5ba7d26c-2edf-43b5-9d2c-78069b41debd'),(119742,69,141982,NULL,141977,1,'2022-08-17 04:54:11','2022-08-17 04:54:11','5f6eac40-f793-4f73-ae8f-ce3f5e6253fb'),(119743,85,141982,NULL,17964,1,'2022-08-17 04:54:11','2022-08-17 04:54:11','7ac4253e-5b0f-4c10-8a08-5d05de19b959'),(119744,85,141982,NULL,17965,2,'2022-08-17 04:54:11','2022-08-17 04:54:11','2b8e9c69-f098-4850-8733-6bc398c11690'),(119745,85,141982,NULL,17971,3,'2022-08-17 04:54:11','2022-08-17 04:54:11','8d3ea9b6-3f1e-4cbc-9090-7175ab46c5a0'),(119746,198,141982,NULL,141977,1,'2022-08-17 04:54:11','2022-08-17 04:54:11','15b94e12-05a8-4ac7-847f-ff83011a831b'),(119753,184,141984,NULL,141977,1,'2022-08-17 04:58:00','2022-08-17 04:58:00','95ec7e9f-32a4-414e-be04-5547add18d90'),(119754,69,141984,NULL,141977,1,'2022-08-17 04:58:00','2022-08-17 04:58:00','f213f0ce-fbe3-4148-b794-0a62ddd8dcfb'),(119755,85,141984,NULL,17964,1,'2022-08-17 04:58:00','2022-08-17 04:58:00','0daaa990-5b4f-41d0-a181-453b8234727c'),(119756,85,141984,NULL,17965,2,'2022-08-17 04:58:00','2022-08-17 04:58:00','3c55af30-b05f-443a-bf79-6d540aa8c4ea'),(119757,85,141984,NULL,17971,3,'2022-08-17 04:58:00','2022-08-17 04:58:00','30433de2-880b-422b-ad10-c554e0f65bc2'),(119758,198,141984,NULL,141977,1,'2022-08-17 04:58:00','2022-08-17 04:58:00','0816f618-d910-47d1-9523-a6ac75f4c3b9'),(119765,184,141986,NULL,141977,1,'2022-08-17 05:00:36','2022-08-17 05:00:36','b826a0c3-f638-4d2d-bb8f-ad7a71de3db3'),(119766,69,141986,NULL,141977,1,'2022-08-17 05:00:36','2022-08-17 05:00:36','cec56ffd-7407-4d1e-a1cc-0bfe4bdf28df'),(119767,85,141986,NULL,17964,1,'2022-08-17 05:00:36','2022-08-17 05:00:36','a7fe1ebb-c871-4ea1-8ea4-efdbae06a979'),(119768,85,141986,NULL,17965,2,'2022-08-17 05:00:36','2022-08-17 05:00:36','c96bfbaa-3899-4a5a-9709-c42232cb7c4b'),(119769,85,141986,NULL,17971,3,'2022-08-17 05:00:36','2022-08-17 05:00:36','8d914856-64d8-4d93-83f8-a3a216ea7f2f'),(119770,198,141986,NULL,141977,1,'2022-08-17 05:00:36','2022-08-17 05:00:36','54c3895a-5c24-46b1-94e7-0f74ee6868b6'),(119771,184,141987,NULL,141977,1,'2022-08-17 05:10:17','2022-08-17 05:10:17','d803d14f-ee89-470f-9922-3e3487da91df'),(119772,69,141987,NULL,141977,1,'2022-08-17 05:10:17','2022-08-17 05:10:17','2a5c6c05-9d0a-4f59-8609-089008864a1d'),(119773,85,141987,NULL,17964,1,'2022-08-17 05:10:17','2022-08-17 05:10:17','47ec5512-3ce3-4e1a-88ac-d5391311e6c0'),(119774,85,141987,NULL,17965,2,'2022-08-17 05:10:17','2022-08-17 05:10:17','63c6d676-bc32-4998-8d35-d05375b164f9'),(119775,85,141987,NULL,17971,3,'2022-08-17 05:10:17','2022-08-17 05:10:17','cd6ee4dd-bda1-42f6-b4aa-f0a54f619a1c'),(119776,198,141987,NULL,141977,1,'2022-08-17 05:10:17','2022-08-17 05:10:17','24fb2aca-8417-4d05-8af2-afa068c2e2f5'),(119783,184,141989,NULL,141977,1,'2022-08-17 05:10:50','2022-08-17 05:10:50','0d06f8df-f413-4509-9d56-f59f6b3726b4'),(119784,69,141989,NULL,141977,1,'2022-08-17 05:10:50','2022-08-17 05:10:50','75db3be1-00a9-42bb-9ac3-643a17a75eb8'),(119785,85,141989,NULL,17964,1,'2022-08-17 05:10:50','2022-08-17 05:10:50','63772c7b-4f68-4850-8762-51fd9a6f4aa1'),(119786,85,141989,NULL,17965,2,'2022-08-17 05:10:50','2022-08-17 05:10:50','803496fe-b0fb-4b5a-9f37-1d8e01216135'),(119787,85,141989,NULL,17971,3,'2022-08-17 05:10:50','2022-08-17 05:10:50','3f2bc812-8950-4168-9296-c164c21ce862'),(119788,198,141989,NULL,141977,1,'2022-08-17 05:10:50','2022-08-17 05:10:50','91e5b8fc-5f96-4ef6-bca7-17163b39c68c'),(119791,198,17650,NULL,141632,1,'2022-08-17 05:11:34','2022-08-17 05:11:34','cae4a294-4653-4fe6-abaa-6a9f5882e300'),(119792,69,141991,NULL,141632,1,'2022-08-17 05:11:34','2022-08-17 05:11:34','53daf78d-c21a-4837-83c1-97da64fbc2ba'),(119793,198,141991,NULL,141632,1,'2022-08-17 05:11:34','2022-08-17 05:11:34','939d17d3-751d-414b-914a-06d9d88f5096'),(119800,184,141993,NULL,141977,1,'2022-08-17 05:12:56','2022-08-17 05:12:56','8ac84ef1-9c4f-45bc-b3d8-3b117137303c'),(119801,69,141993,NULL,141977,1,'2022-08-17 05:12:56','2022-08-17 05:12:56','50c4c05b-e420-4703-ab0a-646032dc466b'),(119802,85,141993,NULL,17964,1,'2022-08-17 05:12:56','2022-08-17 05:12:56','ff45cd62-473a-4c31-89df-8d861ddd3f92'),(119803,85,141993,NULL,17965,2,'2022-08-17 05:12:56','2022-08-17 05:12:56','40271a38-c241-4d69-8216-f80311bc1820'),(119804,85,141993,NULL,17971,3,'2022-08-17 05:12:56','2022-08-17 05:12:56','350cbc56-3fb7-4489-815f-9e3d625e54fa'),(119805,198,141993,NULL,141977,1,'2022-08-17 05:12:56','2022-08-17 05:12:56','32428101-a8ee-4cd5-858f-0bb6de43bb5c'),(119832,79,141997,NULL,17875,1,'2022-08-17 22:14:55','2022-08-17 22:14:55','04e381cb-2ab2-4d18-997a-ff4295fa461c'),(119833,79,141997,NULL,17881,2,'2022-08-17 22:14:55','2022-08-17 22:14:55','1c94a38a-1db1-440e-868f-830f579e76c4'),(119834,79,141997,NULL,1,3,'2022-08-17 22:14:55','2022-08-17 22:14:55','7a0ef74b-89de-4204-b25b-7ffa30bee0e7'),(119835,79,141997,NULL,17954,4,'2022-08-17 22:14:55','2022-08-17 22:14:55','993b975d-f957-4716-ac33-049b3a236539'),(119836,79,141997,NULL,17956,5,'2022-08-17 22:14:55','2022-08-17 22:14:55','51a9dd52-b2af-4d8a-aa1f-246cd17c57af'),(119837,69,141997,NULL,48532,1,'2022-08-17 22:14:55','2022-08-17 22:14:55','ea76c73c-73f4-410c-a64e-681c0f113154'),(119838,85,141997,NULL,17964,1,'2022-08-17 22:14:55','2022-08-17 22:14:55','8a10692c-086b-496e-9bd1-2de682e7f9df'),(119839,85,141997,NULL,17968,2,'2022-08-17 22:14:55','2022-08-17 22:14:55','1e8ce530-c5a8-4f1e-851a-d26509e3da4c'),(119840,85,141997,NULL,17970,3,'2022-08-17 22:14:55','2022-08-17 22:14:55','53b4b664-0ffb-4af9-a6a9-25d8326891ed'),(119841,85,141997,NULL,17971,4,'2022-08-17 22:14:55','2022-08-17 22:14:55','bc81c549-ad2a-4849-8d97-822e95cfe8fe'),(119842,84,141997,NULL,18057,1,'2022-08-17 22:14:55','2022-08-17 22:14:55','f7033538-ef1d-4e31-9fba-97585bf29892'),(119843,84,141997,NULL,38160,2,'2022-08-17 22:14:55','2022-08-17 22:14:55','0b4a95a0-7099-4da3-a2ae-4e67107ea4b4'),(119844,198,141997,NULL,48532,1,'2022-08-17 22:14:55','2022-08-17 22:14:55','1e4f61d8-8505-497a-8f25-05451272a3b9'),(119845,69,141999,NULL,141945,1,'2022-08-18 07:06:55','2022-08-18 07:06:55','b4164cc2-55b4-4529-b683-950571c3f776'),(119848,198,141925,NULL,141998,1,'2022-08-18 07:07:33','2022-08-18 07:07:33','efd9553c-c732-4226-bcf1-8eca890a953a'),(119849,69,142001,NULL,141945,1,'2022-08-18 07:07:33','2022-08-18 07:07:33','49e7d5fe-7040-44b8-8221-8a09d17f6ae1'),(119850,198,142001,NULL,141998,1,'2022-08-18 07:07:33','2022-08-18 07:07:33','b7c0e144-e590-48e0-b509-15bb2163ee6c'),(119860,79,141925,NULL,17875,1,'2022-08-18 07:09:49','2022-08-18 07:09:49','db50b6ca-059e-4a5b-95cd-c5e1f4731519'),(119861,79,141925,NULL,17934,2,'2022-08-18 07:09:49','2022-08-18 07:09:49','6aa3aaa9-31ef-4292-bfbb-50e53846fde6'),(119862,79,141925,NULL,17941,3,'2022-08-18 07:09:49','2022-08-18 07:09:49','faaa4ddb-d8d8-48a5-918b-7fb60c3cb596'),(119863,79,141925,NULL,97259,4,'2022-08-18 07:09:49','2022-08-18 07:09:49','2c0a4e89-1857-48fd-9ebf-3c0977f9f6ac'),(119864,79,141925,NULL,17954,5,'2022-08-18 07:09:49','2022-08-18 07:09:49','19d72f73-4918-4624-80e8-833ce39f5f10'),(119865,79,141925,NULL,17956,6,'2022-08-18 07:09:49','2022-08-18 07:09:49','f6b00a78-1290-4da9-8d74-3d5fc4ea9493'),(119866,79,141925,NULL,17996,7,'2022-08-18 07:09:49','2022-08-18 07:09:49','232854c6-895a-4453-be2d-07dae4ca7a94'),(119867,79,142003,NULL,17875,1,'2022-08-18 07:09:49','2022-08-18 07:09:49','09f31111-a40b-43e0-aaf3-52da9ce24b76'),(119868,79,142003,NULL,17934,2,'2022-08-18 07:09:49','2022-08-18 07:09:49','39b70063-a1c6-4d89-8729-dd0fc4a01ef8'),(119869,79,142003,NULL,17941,3,'2022-08-18 07:09:49','2022-08-18 07:09:49','a51403f6-e442-4431-a62c-a5d7b0914ff5'),(119870,79,142003,NULL,97259,4,'2022-08-18 07:09:49','2022-08-18 07:09:49','51c987b6-b9f8-45b2-9bd4-2a18faeeed62'),(119871,79,142003,NULL,17954,5,'2022-08-18 07:09:49','2022-08-18 07:09:49','55bf69e9-e67f-4688-a6ab-8bf40c7c646d'),(119872,79,142003,NULL,17956,6,'2022-08-18 07:09:49','2022-08-18 07:09:49','4b6b6f19-d978-4147-8b3e-db7cdc7fd70d'),(119873,79,142003,NULL,17996,7,'2022-08-18 07:09:49','2022-08-18 07:09:49','226aeb24-afd4-4041-811e-30bf62298fa5'),(119874,69,142003,NULL,141945,1,'2022-08-18 07:09:49','2022-08-18 07:09:49','54fb2173-b7ef-4891-a879-55a328912c00'),(119875,198,142003,NULL,141998,1,'2022-08-18 07:09:49','2022-08-18 07:09:49','1bc08ccf-ba81-4562-8104-75297d2aad5d'),(119876,79,142004,NULL,17881,1,'2022-08-18 07:10:03','2022-08-18 07:10:03','baaccb32-e67a-4b46-bafd-361643041bc0'),(119877,79,142004,NULL,1,2,'2022-08-18 07:10:03','2022-08-18 07:10:03','902fc2a0-1104-42a0-a3aa-36e73c05644d'),(119878,79,142004,NULL,17954,3,'2022-08-18 07:10:03','2022-08-18 07:10:03','87144091-cc9c-43d7-8816-e4b317ce184b'),(119879,69,142004,NULL,141596,1,'2022-08-18 07:10:03','2022-08-18 07:10:03','53f3b941-09ae-433b-a62a-e76cd0a5f855'),(119880,85,142004,NULL,17964,1,'2022-08-18 07:10:03','2022-08-18 07:10:03','eccd956e-b071-4f05-9f89-1ae884fe2373'),(119881,85,142004,NULL,17965,2,'2022-08-18 07:10:03','2022-08-18 07:10:03','141dcd37-3bbb-4859-9a18-6be0c9dce702'),(119882,85,142004,NULL,17968,3,'2022-08-18 07:10:03','2022-08-18 07:10:03','aa01bf05-e377-490d-ac5d-3ae18c0904f1'),(119883,85,142004,NULL,17970,4,'2022-08-18 07:10:03','2022-08-18 07:10:03','f211b32c-d78f-4d5a-9aa9-9a1e41fc89fb'),(119884,85,142004,NULL,17971,5,'2022-08-18 07:10:03','2022-08-18 07:10:03','5cfee330-f1c5-4ceb-a100-9deae2808677'),(119885,84,142004,NULL,18057,1,'2022-08-18 07:10:03','2022-08-18 07:10:03','eea50111-299b-47c5-8834-aa798fe0a017'),(119886,84,142004,NULL,38160,2,'2022-08-18 07:10:03','2022-08-18 07:10:03','65124fa7-45f7-4dae-bfa4-a874a7ff6de7'),(119887,198,142004,NULL,141596,1,'2022-08-18 07:10:03','2022-08-18 07:10:03','55dde17b-a6ee-4656-8a19-466390518ac2'),(119900,79,142006,NULL,17881,1,'2022-08-18 07:10:20','2022-08-18 07:10:20','a4e20678-3809-4714-abd2-1bb6eccc78f8'),(119901,79,142006,NULL,1,2,'2022-08-18 07:10:20','2022-08-18 07:10:20','6e0ff037-6c14-4401-aba0-b3d80dfe1e61'),(119902,79,142006,NULL,17954,3,'2022-08-18 07:10:20','2022-08-18 07:10:20','d25ba1f3-937a-4ba7-bbac-6889556aef20'),(119903,69,142006,NULL,141596,1,'2022-08-18 07:10:20','2022-08-18 07:10:20','9301f39e-0402-4393-a0b9-725374379bb5'),(119904,85,142006,NULL,17964,1,'2022-08-18 07:10:20','2022-08-18 07:10:20','b2e5e9f7-5d50-48ee-a48f-5d3a403e2632'),(119905,85,142006,NULL,17965,2,'2022-08-18 07:10:20','2022-08-18 07:10:20','2e815866-5855-4956-b873-40c0e5a0c5a9'),(119906,85,142006,NULL,17968,3,'2022-08-18 07:10:20','2022-08-18 07:10:20','74aa5144-f7f9-4131-b379-e451d7b4d9f6'),(119907,85,142006,NULL,17970,4,'2022-08-18 07:10:20','2022-08-18 07:10:20','ae80e410-1d27-4fe9-b2f0-3082c9c7a4fb'),(119908,85,142006,NULL,17971,5,'2022-08-18 07:10:20','2022-08-18 07:10:20','4faa5870-e1e8-40a8-99d9-feadeb86b2d7'),(119909,84,142006,NULL,18057,1,'2022-08-18 07:10:20','2022-08-18 07:10:20','b93152f6-c256-49d8-8838-8dc29fb66f89'),(119910,84,142006,NULL,38160,2,'2022-08-18 07:10:20','2022-08-18 07:10:20','1bbe05a4-581a-4293-b9fe-e96180a2833e'),(119911,198,142006,NULL,141596,1,'2022-08-18 07:10:20','2022-08-18 07:10:20','a56f12ba-b741-4883-8584-749a1759f8c9'),(119925,79,18139,NULL,17875,4,'2022-08-18 07:11:09','2022-08-18 07:11:09','8748f41d-7f9b-4e09-b119-f83311ad2181'),(119926,79,142008,NULL,17881,1,'2022-08-18 07:11:09','2022-08-18 07:11:09','e4e7f308-8621-4fc5-b45e-9b3437971ea7'),(119927,79,142008,NULL,1,2,'2022-08-18 07:11:09','2022-08-18 07:11:09','cbc01551-0b0e-43e6-b09f-0110a8b857bd'),(119928,79,142008,NULL,17954,3,'2022-08-18 07:11:09','2022-08-18 07:11:09','441feb6a-9986-4fb4-bf16-9438fd70ade8'),(119929,79,142008,NULL,17875,4,'2022-08-18 07:11:09','2022-08-18 07:11:09','797844c4-2dfe-43ef-9681-8fc06392576a'),(119930,69,142008,NULL,141596,1,'2022-08-18 07:11:09','2022-08-18 07:11:09','8ed5b016-e763-4476-ad62-2527bae1134d'),(119931,85,142008,NULL,17964,1,'2022-08-18 07:11:09','2022-08-18 07:11:09','965fa45d-d123-4695-9f62-c28bd9784a74'),(119932,85,142008,NULL,17965,2,'2022-08-18 07:11:09','2022-08-18 07:11:09','9af86ea9-7308-4c3c-acbd-6fe81a1d72a8'),(119933,85,142008,NULL,17968,3,'2022-08-18 07:11:09','2022-08-18 07:11:09','a9d0ac44-4996-47f2-9920-9f322d96f1b6'),(119934,85,142008,NULL,17970,4,'2022-08-18 07:11:09','2022-08-18 07:11:09','ad1c6f75-ba6d-44ac-aac1-f51fba0da72f'),(119935,85,142008,NULL,17971,5,'2022-08-18 07:11:09','2022-08-18 07:11:09','c60c65eb-5be9-4548-afba-cd8bfd2db946'),(119936,84,142008,NULL,18057,1,'2022-08-18 07:11:09','2022-08-18 07:11:09','73e4530b-8b6e-4265-ac23-717f8799008f'),(119937,84,142008,NULL,38160,2,'2022-08-18 07:11:09','2022-08-18 07:11:09','e8995a97-e8fb-4c66-83a2-72ecc939affa'),(119938,198,142008,NULL,141596,1,'2022-08-18 07:11:09','2022-08-18 07:11:09','973ea814-c9a8-436a-9e56-fdf1cf633062'),(119953,69,18139,NULL,142011,1,'2022-08-18 07:21:46','2022-08-18 07:21:46','a0833d80-8413-45cb-ad7d-cd0c54737fbe'),(119954,79,142012,NULL,17881,1,'2022-08-18 07:21:46','2022-08-18 07:21:46','6d4e34b9-bc15-423d-a36b-c668bba94070'),(119955,79,142012,NULL,1,2,'2022-08-18 07:21:46','2022-08-18 07:21:46','3fba49a2-01c8-4015-88a2-781519dd746c'),(119956,79,142012,NULL,17954,3,'2022-08-18 07:21:46','2022-08-18 07:21:46','76f3d714-3f02-4bef-a3cf-792d3a66b487'),(119957,79,142012,NULL,17875,4,'2022-08-18 07:21:46','2022-08-18 07:21:46','d5043dd7-c9a4-401d-8b60-f9277b06f35a'),(119958,69,142012,NULL,142011,1,'2022-08-18 07:21:46','2022-08-18 07:21:46','07acfb09-e613-404f-b8dc-fc8cb8283505'),(119959,85,142012,NULL,17964,1,'2022-08-18 07:21:46','2022-08-18 07:21:46','5e594f46-72c8-4947-831f-0aba3a1d8720'),(119960,85,142012,NULL,17965,2,'2022-08-18 07:21:46','2022-08-18 07:21:46','f01116ff-897c-4788-b0cc-6addbf2ba76a'),(119961,85,142012,NULL,17968,3,'2022-08-18 07:21:46','2022-08-18 07:21:46','8898b224-3864-465a-ae08-7a2ae8f53a5f'),(119962,85,142012,NULL,17970,4,'2022-08-18 07:21:46','2022-08-18 07:21:46','6040af5c-1e98-46f9-abef-84011e0a23e1'),(119963,85,142012,NULL,17971,5,'2022-08-18 07:21:46','2022-08-18 07:21:46','47315350-222a-44a9-bdd6-1513f695c62f'),(119964,84,142012,NULL,18057,1,'2022-08-18 07:21:46','2022-08-18 07:21:46','5a49dc46-a5a8-41b9-878e-f950c5f22131'),(119965,84,142012,NULL,38160,2,'2022-08-18 07:21:46','2022-08-18 07:21:46','05309750-ca33-4474-bd06-3b3e9bb9a9c4'),(119966,198,142012,NULL,141596,1,'2022-08-18 07:21:46','2022-08-18 07:21:46','0b35cc72-61ef-4a07-8303-53e60da4ab4d'),(119980,79,142015,NULL,17881,1,'2022-08-18 07:25:17','2022-08-18 07:25:17','cf3c9684-29e8-4dc5-b105-8b6057cd303c'),(119981,79,142015,NULL,1,2,'2022-08-18 07:25:17','2022-08-18 07:25:17','d8bfcb8b-49e9-4dbc-bfe0-231da36de921'),(119982,79,142015,NULL,17954,3,'2022-08-18 07:25:17','2022-08-18 07:25:17','6c57a21d-c2b0-4f34-b152-77ff04375ce2'),(119983,79,142015,NULL,17875,4,'2022-08-18 07:25:17','2022-08-18 07:25:17','b15d7c77-6f55-4ee7-8bb9-eb396322cd18'),(119984,69,142015,NULL,142011,1,'2022-08-18 07:25:17','2022-08-18 07:25:17','2ab2e458-4dd5-484d-b7a0-3363f99eced0'),(119985,85,142015,NULL,17964,1,'2022-08-18 07:25:17','2022-08-18 07:25:17','7255b008-703d-4627-8bc5-25b581fb76ef'),(119986,85,142015,NULL,17965,2,'2022-08-18 07:25:17','2022-08-18 07:25:17','420ba04c-89f7-4886-b4d4-c0304eedbf34'),(119987,85,142015,NULL,17968,3,'2022-08-18 07:25:17','2022-08-18 07:25:17','87062f52-1a51-46a0-8bf2-d4aedeb31a26'),(119988,85,142015,NULL,17970,4,'2022-08-18 07:25:17','2022-08-18 07:25:17','049f5810-678a-4682-a9ef-047b01eecd18'),(119989,85,142015,NULL,17971,5,'2022-08-18 07:25:17','2022-08-18 07:25:17','ba0b14cb-05c9-457b-9bc4-d4597bf11bcc'),(119990,84,142015,NULL,18057,1,'2022-08-18 07:25:17','2022-08-18 07:25:17','1e1b9657-4554-455b-b55d-94aa66535d53'),(119991,84,142015,NULL,38160,2,'2022-08-18 07:25:17','2022-08-18 07:25:17','d63926c2-eedc-40fb-b699-c1ccb743ecb4'),(119992,198,142015,NULL,141596,1,'2022-08-18 07:25:17','2022-08-18 07:25:17','683a1c43-614f-408d-9728-506ca9feebb9'),(120006,79,142017,NULL,17881,1,'2022-08-18 07:27:53','2022-08-18 07:27:53','fb81d593-029c-4261-b04a-d81038c28c73'),(120007,79,142017,NULL,1,2,'2022-08-18 07:27:53','2022-08-18 07:27:53','f59d9e36-a178-41c7-822a-885a499a5626'),(120008,79,142017,NULL,17954,3,'2022-08-18 07:27:53','2022-08-18 07:27:53','1809ffd5-954b-4ab9-80dd-7d0d45e9dfcd'),(120009,79,142017,NULL,17875,4,'2022-08-18 07:27:53','2022-08-18 07:27:53','9d47125d-4bb5-42c3-ad02-0c6356815873'),(120010,69,142017,NULL,142011,1,'2022-08-18 07:27:53','2022-08-18 07:27:53','3dbdc854-c09d-45d0-aec7-28762ecccf6a'),(120011,85,142017,NULL,17964,1,'2022-08-18 07:27:53','2022-08-18 07:27:53','ef186fb2-8903-4c21-b7ca-4ed5af27097b'),(120012,85,142017,NULL,17965,2,'2022-08-18 07:27:53','2022-08-18 07:27:53','0a14cdbe-9f14-4ddf-a69f-fff282b6f61d'),(120013,85,142017,NULL,17968,3,'2022-08-18 07:27:53','2022-08-18 07:27:53','f5b37c0d-6be8-403a-88b6-2afa101fba75'),(120014,85,142017,NULL,17970,4,'2022-08-18 07:27:53','2022-08-18 07:27:53','bd607e22-4ac2-476a-a873-caa48db1ca7c'),(120015,85,142017,NULL,17971,5,'2022-08-18 07:27:53','2022-08-18 07:27:53','e92f7ae3-03d9-46ad-a42a-b62f13b378e4'),(120016,84,142017,NULL,18057,1,'2022-08-18 07:27:53','2022-08-18 07:27:53','f5093586-40bf-4a73-9753-2412471e7492'),(120017,84,142017,NULL,38160,2,'2022-08-18 07:27:53','2022-08-18 07:27:53','2039aa49-e97e-4287-b8b9-b262e58344ac'),(120018,198,142017,NULL,141596,1,'2022-08-18 07:27:53','2022-08-18 07:27:53','5a975cb6-b0e2-4b99-b895-608281457dcf'),(120028,79,142019,NULL,17875,1,'2022-08-18 21:47:11','2022-08-18 21:47:11','e4d4f79f-35cc-4004-be8f-33343cfadda1'),(120029,79,142019,NULL,17934,2,'2022-08-18 21:47:11','2022-08-18 21:47:11','6a98ce4b-294f-41f9-84c6-d03bd1b646e9'),(120030,79,142019,NULL,17941,3,'2022-08-18 21:47:11','2022-08-18 21:47:11','00daa094-2fbd-42bb-918d-7ed7d8cdb5ec'),(120031,79,142019,NULL,97259,4,'2022-08-18 21:47:11','2022-08-18 21:47:11','0a0d6e36-876d-466e-97dc-edf950cb439b'),(120032,79,142019,NULL,17954,5,'2022-08-18 21:47:11','2022-08-18 21:47:11','a6f2a7ec-5122-439c-ba86-e70be46ebb91'),(120033,79,142019,NULL,17956,6,'2022-08-18 21:47:11','2022-08-18 21:47:11','a4a2321d-3026-46c7-9eff-ea488cd1f08c'),(120034,79,142019,NULL,17996,7,'2022-08-18 21:47:11','2022-08-18 21:47:11','0fea6416-1b51-4faf-9297-e025f142fe42'),(120035,69,142019,NULL,141945,1,'2022-08-18 21:47:11','2022-08-18 21:47:11','3176a599-b1aa-4fc7-aa11-df3aae9d9871'),(120036,198,142019,NULL,141998,1,'2022-08-18 21:47:11','2022-08-18 21:47:11','081261c2-7dad-4e54-acad-51404597190e'),(120046,79,142021,NULL,17875,1,'2022-08-19 03:55:02','2022-08-19 03:55:02','4f47c821-6a62-4c58-aa85-c30c5cb3bfc9'),(120047,79,142021,NULL,17934,2,'2022-08-19 03:55:02','2022-08-19 03:55:02','bbe15165-7bd1-47c6-bc4c-74096411b21c'),(120048,79,142021,NULL,17941,3,'2022-08-19 03:55:02','2022-08-19 03:55:02','0a259f62-03d7-49fc-8642-fef1ac5c7355'),(120049,79,142021,NULL,97259,4,'2022-08-19 03:55:02','2022-08-19 03:55:02','b33d9cb8-3e00-4549-bf08-079a4195bd4f'),(120050,79,142021,NULL,17954,5,'2022-08-19 03:55:02','2022-08-19 03:55:02','2dac1b1c-a978-44d0-81cd-1751daa6f6d6'),(120051,79,142021,NULL,17956,6,'2022-08-19 03:55:02','2022-08-19 03:55:02','619e3f2a-0d15-43b7-a78c-658361c9e5bb'),(120052,79,142021,NULL,17996,7,'2022-08-19 03:55:02','2022-08-19 03:55:02','4b8bcbc9-8ca1-4634-ba8f-331721c29266'),(120053,69,142021,NULL,141945,1,'2022-08-19 03:55:02','2022-08-19 03:55:02','a50e6d4c-f540-4eb2-a38c-be86f8705ba7'),(120054,198,142021,NULL,141998,1,'2022-08-19 03:55:02','2022-08-19 03:55:02','b639408c-daa5-469d-b60a-907a8be73053'),(120064,79,142023,NULL,17875,1,'2022-08-19 03:58:24','2022-08-19 03:58:24','39569a1d-784b-4d88-a4c9-6e96faae45db'),(120065,79,142023,NULL,17934,2,'2022-08-19 03:58:24','2022-08-19 03:58:24','0a31a6c7-04c8-4512-8dde-c06bca9bcf8c'),(120066,79,142023,NULL,17941,3,'2022-08-19 03:58:24','2022-08-19 03:58:24','5f051807-8c02-46fc-bda7-af4f85a5f164'),(120067,79,142023,NULL,97259,4,'2022-08-19 03:58:24','2022-08-19 03:58:24','2846102a-50b5-4936-941a-df4cac1b0806'),(120068,79,142023,NULL,17954,5,'2022-08-19 03:58:24','2022-08-19 03:58:24','6a855ff3-327f-44a0-af5a-2a33816132f2'),(120069,79,142023,NULL,17956,6,'2022-08-19 03:58:24','2022-08-19 03:58:24','00feba76-9d46-41d5-a4dd-3b96f0d9d05e'),(120070,79,142023,NULL,17996,7,'2022-08-19 03:58:24','2022-08-19 03:58:24','da79b055-904e-44ff-9e5e-b72e40b2dc76'),(120071,69,142023,NULL,141945,1,'2022-08-19 03:58:24','2022-08-19 03:58:24','ccf00e7a-1aab-4f51-9aea-bcb9c355e055'),(120072,198,142023,NULL,141998,1,'2022-08-19 03:58:24','2022-08-19 03:58:24','72d5a732-7895-4bd0-a092-dd82b72b6b8f'),(120082,79,142025,NULL,17875,1,'2022-08-19 04:01:42','2022-08-19 04:01:42','59b32bf9-3485-4596-9370-40e502fe0119'),(120083,79,142025,NULL,17934,2,'2022-08-19 04:01:42','2022-08-19 04:01:42','0d04e138-db60-4b26-9019-be4d1a28e394'),(120084,79,142025,NULL,17941,3,'2022-08-19 04:01:42','2022-08-19 04:01:42','a2687de4-349e-4b45-acfe-9b24fdec66d9'),(120085,79,142025,NULL,97259,4,'2022-08-19 04:01:42','2022-08-19 04:01:42','f1ef17b9-d76a-4483-8d11-a1e7c78f9208'),(120086,79,142025,NULL,17954,5,'2022-08-19 04:01:42','2022-08-19 04:01:42','60f31d36-4f83-4038-8e7c-e9a08692eac2'),(120087,79,142025,NULL,17956,6,'2022-08-19 04:01:42','2022-08-19 04:01:42','70d081d6-1023-4e14-8f25-78a61c50ad33'),(120088,79,142025,NULL,17996,7,'2022-08-19 04:01:42','2022-08-19 04:01:42','d51ba940-6fb1-46dd-96c4-3f70f58e3238'),(120089,69,142025,NULL,141945,1,'2022-08-19 04:01:42','2022-08-19 04:01:42','f6dc3b69-5b9e-462a-8295-031d84a472b1'),(120090,198,142025,NULL,141998,1,'2022-08-19 04:01:42','2022-08-19 04:01:42','82546510-a7f5-435e-8136-17cb124e6e1d'),(120119,184,142029,NULL,141977,1,'2022-08-22 06:14:16','2022-08-22 06:14:16','b548c750-a615-4be7-aced-3b748dd6ed7a'),(120120,69,142029,NULL,141977,1,'2022-08-22 06:14:16','2022-08-22 06:14:16','a4cabed5-eb95-4411-886a-976bf72d54c3'),(120121,85,142029,NULL,17964,1,'2022-08-22 06:14:16','2022-08-22 06:14:16','9a853839-759b-4197-a069-cc5b60c5d09d'),(120122,85,142029,NULL,17965,2,'2022-08-22 06:14:16','2022-08-22 06:14:16','782f0602-5b3c-4f0e-a595-937a2edd00a8'),(120123,85,142029,NULL,17971,3,'2022-08-22 06:14:16','2022-08-22 06:14:16','ebdf5dca-3274-4f53-bf40-1d48c0eb067a'),(120124,198,142029,NULL,141977,1,'2022-08-22 06:14:16','2022-08-22 06:14:16','ff44665d-2df6-430e-aa3a-c103c3597e4b'),(120125,79,142030,NULL,17881,1,'2022-08-22 23:27:44','2022-08-22 23:27:44','645b2df3-f015-4c5b-a231-77b193c55546'),(120126,79,142030,NULL,1,2,'2022-08-22 23:27:44','2022-08-22 23:27:44','f1344947-ea08-40b7-8b57-ae8ae7bff386'),(120127,79,142030,NULL,17954,3,'2022-08-22 23:27:44','2022-08-22 23:27:44','ef898d3b-2813-42d4-8356-e4d7bedf569d'),(120128,79,142030,NULL,17875,4,'2022-08-22 23:27:44','2022-08-22 23:27:44','72dd2c74-6a39-4974-864c-5e5030213c58'),(120129,69,142030,NULL,142011,1,'2022-08-22 23:27:44','2022-08-22 23:27:44','1c565500-87ee-4308-8fbf-bc3668960f43'),(120130,85,142030,NULL,17964,1,'2022-08-22 23:27:44','2022-08-22 23:27:44','e7b45688-d6cc-4672-aec5-626cf2587fe6'),(120131,85,142030,NULL,17965,2,'2022-08-22 23:27:44','2022-08-22 23:27:44','0d3b66f3-7c6c-40f6-9672-141b6fd6cf55'),(120132,85,142030,NULL,17968,3,'2022-08-22 23:27:44','2022-08-22 23:27:44','7797412b-5632-4f9e-ab0f-d35c0c28445a'),(120133,85,142030,NULL,17970,4,'2022-08-22 23:27:44','2022-08-22 23:27:44','acf11651-44a1-4e1a-a108-ed1309cc7fff'),(120134,85,142030,NULL,17971,5,'2022-08-22 23:27:44','2022-08-22 23:27:44','e30fe27b-d50f-4f68-a3b3-1f80b955d325'),(120135,84,142030,NULL,18057,1,'2022-08-22 23:27:44','2022-08-22 23:27:44','95c208f2-25d9-4efe-b6e9-621dd3932b4d'),(120136,84,142030,NULL,38160,2,'2022-08-22 23:27:44','2022-08-22 23:27:44','2ff4ea16-0438-452f-a318-fd38909032a1'),(120137,198,142030,NULL,141596,1,'2022-08-22 23:27:44','2022-08-22 23:27:44','dec52121-d121-4aeb-9a40-fe8f988c9aa0'),(120164,79,142033,NULL,17875,1,'2022-08-24 01:12:15','2022-08-24 01:12:15','78f3dc31-a427-49ec-b57d-08643dc8a38d'),(120165,79,142033,NULL,17881,2,'2022-08-24 01:12:15','2022-08-24 01:12:15','7177539c-6fda-4464-8e9d-4b57233b6db3'),(120166,79,142033,NULL,1,3,'2022-08-24 01:12:15','2022-08-24 01:12:15','9a6cc0b3-f186-4805-a688-90f310b1fe14'),(120167,79,142033,NULL,17954,4,'2022-08-24 01:12:15','2022-08-24 01:12:15','ecc241e1-0753-4a1f-bc99-26bf54bc54c9'),(120168,79,142033,NULL,17956,5,'2022-08-24 01:12:15','2022-08-24 01:12:15','f01ccd27-88d5-4063-8a6c-573b2a42a1cf'),(120169,69,142033,NULL,48532,1,'2022-08-24 01:12:15','2022-08-24 01:12:15','b5ce6a2b-2f21-45a1-ab58-78f2b59e3593'),(120170,85,142033,NULL,17964,1,'2022-08-24 01:12:15','2022-08-24 01:12:15','37f100e0-5be2-4a43-9609-fc1d35fe8860'),(120171,85,142033,NULL,17968,2,'2022-08-24 01:12:15','2022-08-24 01:12:15','c2aec150-2bee-4bdf-adbc-9f5922af3ca5'),(120172,85,142033,NULL,17970,3,'2022-08-24 01:12:15','2022-08-24 01:12:15','9333db50-f5a1-43a9-95f9-6af10c1f5c9d'),(120173,85,142033,NULL,17971,4,'2022-08-24 01:12:15','2022-08-24 01:12:15','efdfe5e9-ee24-420f-b5a4-926c5c878cf4'),(120174,84,142033,NULL,18057,1,'2022-08-24 01:12:15','2022-08-24 01:12:15','7d553dc8-6ffa-4955-ba83-e10e6170c9e0'),(120175,84,142033,NULL,38160,2,'2022-08-24 01:12:15','2022-08-24 01:12:15','3ebee5a6-cf8f-4dc6-be36-343c22e5c3e8'),(120176,198,142033,NULL,48532,1,'2022-08-24 01:12:15','2022-08-24 01:12:15','5df935a8-8c12-4033-b9d7-252781a3a385'),(120177,79,142034,NULL,17875,1,'2022-08-24 01:14:05','2022-08-24 01:14:05','679efecf-5e9f-44b6-9340-88c16a3b883c'),(120178,79,142034,NULL,17881,2,'2022-08-24 01:14:05','2022-08-24 01:14:05','204df46d-fc32-4714-9b10-022717f4703f'),(120179,79,142034,NULL,1,3,'2022-08-24 01:14:05','2022-08-24 01:14:05','c0622d4c-8079-4fe2-bfda-0b407388fde5'),(120180,79,142034,NULL,17954,4,'2022-08-24 01:14:05','2022-08-24 01:14:05','89e8a2b1-2ff8-428c-9d2c-54c2157e161f'),(120181,79,142034,NULL,17956,5,'2022-08-24 01:14:05','2022-08-24 01:14:05','ea710deb-0246-4ebc-8752-b940ed7bc685'),(120182,69,142034,NULL,48532,1,'2022-08-24 01:14:05','2022-08-24 01:14:05','0d8252fd-b858-4b58-b372-dcd6d7ea342e'),(120183,85,142034,NULL,17964,1,'2022-08-24 01:14:05','2022-08-24 01:14:05','1856b2fd-9231-4467-8dec-b782d917ad7b'),(120184,85,142034,NULL,17968,2,'2022-08-24 01:14:05','2022-08-24 01:14:05','d7ccc9d4-92a3-4703-b31c-e03489705a0c'),(120185,85,142034,NULL,17970,3,'2022-08-24 01:14:05','2022-08-24 01:14:05','a8ea0b3d-5f6e-4bba-bf16-d308cee6a560'),(120186,85,142034,NULL,17971,4,'2022-08-24 01:14:05','2022-08-24 01:14:05','68193a7a-039c-476a-aa38-6408ec14f279'),(120187,84,142034,NULL,18057,1,'2022-08-24 01:14:05','2022-08-24 01:14:05','7708e8c5-366c-4c30-9d0a-f81ec697b0a6'),(120188,84,142034,NULL,38160,2,'2022-08-24 01:14:05','2022-08-24 01:14:05','bc358cf3-4253-452c-aa1d-9263df213952'),(120189,198,142034,NULL,48532,1,'2022-08-24 01:14:05','2022-08-24 01:14:05','2ddabf13-1c22-4c7f-bc81-0112554f2c61'),(120190,79,142035,NULL,17875,1,'2022-08-24 01:14:57','2022-08-24 01:14:57','d290c1d4-2883-4f73-92b5-e6def396c1bb'),(120191,79,142035,NULL,17881,2,'2022-08-24 01:14:57','2022-08-24 01:14:57','8477378c-aeb3-4f13-9205-7e6808355e1a'),(120192,79,142035,NULL,1,3,'2022-08-24 01:14:57','2022-08-24 01:14:57','9c7de5bc-bc00-4f22-a879-35ea0f7434d0'),(120193,79,142035,NULL,17954,4,'2022-08-24 01:14:57','2022-08-24 01:14:57','8483d0ed-6315-40ff-823e-ef19ca2185d4'),(120194,79,142035,NULL,17956,5,'2022-08-24 01:14:57','2022-08-24 01:14:57','5a17abaf-a75e-4ab6-be66-29fe5b530723'),(120195,69,142035,NULL,48532,1,'2022-08-24 01:14:57','2022-08-24 01:14:57','6def6362-5550-4c26-a248-0fdd4b2588d5'),(120196,85,142035,NULL,17964,1,'2022-08-24 01:14:57','2022-08-24 01:14:57','7ec82b77-da25-4d16-a7bc-c9e2a8ca858e'),(120197,85,142035,NULL,17968,2,'2022-08-24 01:14:57','2022-08-24 01:14:57','73e09e74-c3e7-44a4-8f5c-f1d89d181e06'),(120198,85,142035,NULL,17970,3,'2022-08-24 01:14:57','2022-08-24 01:14:57','5b004110-b4c5-4cd2-988f-69b02ff41b2c'),(120199,85,142035,NULL,17971,4,'2022-08-24 01:14:57','2022-08-24 01:14:57','c0a39da7-1cbe-4f32-a92f-00f3283979ac'),(120200,84,142035,NULL,18057,1,'2022-08-24 01:14:57','2022-08-24 01:14:57','7f544047-a658-41ca-be4a-7126e80cb739'),(120201,84,142035,NULL,38160,2,'2022-08-24 01:14:57','2022-08-24 01:14:57','0c792ae6-5904-47d3-adf6-4aed12c282a9'),(120202,198,142035,NULL,48532,1,'2022-08-24 01:14:57','2022-08-24 01:14:57','25b3da5b-34c2-4c85-978d-c9035d7165c6'),(120203,69,142036,NULL,141522,1,'2022-08-24 06:39:06','2022-08-24 06:39:06','4ebff054-bf2c-4abf-87ed-ab9fc2e04683'),(120204,85,142036,NULL,17966,1,'2022-08-24 06:39:06','2022-08-24 06:39:06','2b7c8fc9-fde9-4f9f-bb5e-1c8febd56e2d'),(120205,85,142036,NULL,17969,2,'2022-08-24 06:39:06','2022-08-24 06:39:06','b96c7517-5c56-4481-b89d-3207e76c6e19'),(120206,85,142036,NULL,17970,3,'2022-08-24 06:39:06','2022-08-24 06:39:06','5c89b749-1ed2-4775-a557-a9f69e12322b'),(120207,198,142036,NULL,141522,1,'2022-08-24 06:39:06','2022-08-24 06:39:06','1f47c4df-8a36-4dcc-9e24-086114e07ef7'),(120208,79,142037,NULL,17875,1,'2022-08-24 06:52:57','2022-08-24 06:52:57','a493bac7-e445-437c-b0cd-e29887f2804c'),(120209,79,142037,NULL,17934,2,'2022-08-24 06:52:57','2022-08-24 06:52:57','eb8d7ce5-fed9-4dfa-933f-2a5dc6597285'),(120210,79,142037,NULL,17881,3,'2022-08-24 06:52:57','2022-08-24 06:52:57','334a78ad-e99f-4d52-bd0c-d4c0532cf61e'),(120211,79,142037,NULL,1,4,'2022-08-24 06:52:57','2022-08-24 06:52:57','b9e361d4-2613-4042-a903-9f2174987b72'),(120212,79,142037,NULL,17956,5,'2022-08-24 06:52:57','2022-08-24 06:52:57','1bb9220e-8b67-42c2-8bba-aa0c5e5e2e9a'),(120213,85,142037,NULL,17964,1,'2022-08-24 06:52:57','2022-08-24 06:52:57','cd796eb5-38b2-4c83-8bf2-1b176e8ee912'),(120214,85,142037,NULL,17965,2,'2022-08-24 06:52:57','2022-08-24 06:52:57','99d3fc68-1168-4e6d-b44b-999e30aa7d30'),(120215,85,142037,NULL,17966,3,'2022-08-24 06:52:57','2022-08-24 06:52:57','57cdf2ea-220b-4582-b9fb-c03e7576f20c'),(120216,85,142037,NULL,17970,4,'2022-08-24 06:52:57','2022-08-24 06:52:57','304d1e44-d15e-4e2e-941f-2107ab20357d'),(120217,85,142037,NULL,17971,5,'2022-08-24 06:52:57','2022-08-24 06:52:57','3c0be8db-fa24-455d-b106-eeef69065ea8'),(120218,84,142037,NULL,38157,1,'2022-08-24 06:52:57','2022-08-24 06:52:57','0232397a-7ad6-479f-8c82-147656b66c7b'),(120219,79,142038,NULL,17875,1,'2022-08-24 07:11:53','2022-08-24 07:11:53','83131b8a-313c-4f82-bcfa-ab8eb2a38bd0'),(120220,79,142038,NULL,17934,2,'2022-08-24 07:11:53','2022-08-24 07:11:53','575e39bf-58d9-4039-a1ed-a33c7090afba'),(120221,79,142038,NULL,17956,3,'2022-08-24 07:11:53','2022-08-24 07:11:53','0653745a-d81e-4e64-ab40-e232c5f5f612'),(120222,69,142038,NULL,48538,1,'2022-08-24 07:11:53','2022-08-24 07:11:53','061c6fee-8849-4101-bdad-e440012e592a'),(120223,85,142038,NULL,17964,1,'2022-08-24 07:11:53','2022-08-24 07:11:53','4ec05bcc-6374-4549-8d66-f3ac7fc5131a'),(120224,85,142038,NULL,17966,2,'2022-08-24 07:11:53','2022-08-24 07:11:53','c2aea1b8-d5f6-416b-a4b9-b310479c719f'),(120225,85,142038,NULL,17968,3,'2022-08-24 07:11:53','2022-08-24 07:11:53','6fefe70f-5a9e-4743-b473-7fef6f050d6d'),(120226,85,142038,NULL,17970,4,'2022-08-24 07:11:53','2022-08-24 07:11:53','8c14ef04-097c-47b2-80de-1c00902506e2'),(120227,85,142038,NULL,17971,5,'2022-08-24 07:11:53','2022-08-24 07:11:53','93162814-0fb1-43d4-a9c5-72ba9d18d285'),(120228,84,142038,NULL,38157,1,'2022-08-24 07:11:53','2022-08-24 07:11:53','98195393-990b-4e7a-b5c3-e1db0369f371'),(120229,198,142038,NULL,48538,1,'2022-08-24 07:11:53','2022-08-24 07:11:53','15272dc6-bdcf-4c14-9d61-c736a9f63ed8'),(120230,184,142041,NULL,141538,1,'2022-08-25 02:23:49','2022-08-25 02:23:49','e3b7460b-c906-4d9f-958b-5707d92d88ba'),(120231,69,142041,NULL,141535,1,'2022-08-25 02:23:49','2022-08-25 02:23:49','99aeca22-a0c8-4dc5-9b56-5f97491aea98'),(120232,198,142041,NULL,141535,1,'2022-08-25 02:23:49','2022-08-25 02:23:49','4e4935cf-f4f3-432f-9b50-4d746b11ff54'),(120236,184,142043,NULL,141538,1,'2022-08-25 02:27:21','2022-08-25 02:27:21','95348e21-4f6b-4b3c-8488-778b3d521b98'),(120237,69,142043,NULL,141535,1,'2022-08-25 02:27:21','2022-08-25 02:27:21','1d1f8cda-c1de-4cc0-a7be-d8a6d56628c7'),(120238,198,142043,NULL,141535,1,'2022-08-25 02:27:21','2022-08-25 02:27:21','2ac0ed02-5d6e-4ff7-b24f-0a7f90754365'),(120242,184,142045,NULL,141538,1,'2022-08-25 02:27:33','2022-08-25 02:27:33','8d76bab4-fcb9-4d03-bd2d-f4e9b9635afd'),(120243,69,142045,NULL,141535,1,'2022-08-25 02:27:33','2022-08-25 02:27:33','825fa233-0999-48b9-8d02-b7cdcdf9980e'),(120244,198,142045,NULL,141535,1,'2022-08-25 02:27:33','2022-08-25 02:27:33','056ce438-0559-475e-a919-e56fb7493147'),(120248,184,142047,NULL,141538,1,'2022-08-25 02:27:45','2022-08-25 02:27:45','4b67491c-4703-43f0-98ed-744a0cdef516'),(120249,69,142047,NULL,141535,1,'2022-08-25 02:27:45','2022-08-25 02:27:45','814cecaa-b8fa-4148-9be5-2fa0dedbeaef'),(120250,198,142047,NULL,141535,1,'2022-08-25 02:27:45','2022-08-25 02:27:45','92126bbe-c17f-4c9d-933e-3f6c2d0400d7'),(120263,79,142050,NULL,17875,1,'2022-08-25 02:31:17','2022-08-25 02:31:17','8c88d372-d08a-473c-8636-64dccaa76786'),(120264,79,142050,NULL,17934,2,'2022-08-25 02:31:17','2022-08-25 02:31:17','b1519afc-dc55-4580-8674-af162743e35e'),(120265,79,142050,NULL,17941,3,'2022-08-25 02:31:17','2022-08-25 02:31:17','346589ad-d151-4dd0-abb9-5b12c33ac193'),(120266,79,142050,NULL,97259,4,'2022-08-25 02:31:17','2022-08-25 02:31:17','bd36f1fc-b912-45db-9d29-70980a99e638'),(120267,79,142050,NULL,17954,5,'2022-08-25 02:31:17','2022-08-25 02:31:17','d2088c55-4d3a-4afd-a66f-f49ee05edf2b'),(120268,79,142050,NULL,17956,6,'2022-08-25 02:31:17','2022-08-25 02:31:17','f18aef6d-b227-47aa-851f-697f0049d59a'),(120269,79,142050,NULL,17996,7,'2022-08-25 02:31:17','2022-08-25 02:31:17','02b7a30a-6e1d-4d21-a6b2-6febcf8e5f50'),(120270,69,142050,NULL,141945,1,'2022-08-25 02:31:17','2022-08-25 02:31:17','4d128f12-338e-4a1c-b9ce-5dcb76794f91'),(120271,198,142050,NULL,141998,1,'2022-08-25 02:31:17','2022-08-25 02:31:17','0e4934e6-e16e-43f6-9dfa-bdc37ac30017'),(120272,79,142051,NULL,17875,1,'2022-08-25 02:31:26','2022-08-25 02:31:26','5a6466db-01bf-4d7a-88ef-8e2f80c0f19d'),(120273,79,142051,NULL,17934,2,'2022-08-25 02:31:26','2022-08-25 02:31:26','925989f1-4e87-4ff5-ad08-df8151d9887b'),(120274,79,142051,NULL,17941,3,'2022-08-25 02:31:26','2022-08-25 02:31:26','dc6e8a61-660b-44ea-a970-f4e2c2b4567f'),(120275,79,142051,NULL,97259,4,'2022-08-25 02:31:26','2022-08-25 02:31:26','dab34c23-95ca-4105-9562-e4256fbd32ae'),(120276,79,142051,NULL,17954,5,'2022-08-25 02:31:26','2022-08-25 02:31:26','388e9af8-d5da-48c2-9894-33f724890ef1'),(120277,79,142051,NULL,17956,6,'2022-08-25 02:31:26','2022-08-25 02:31:26','55df058a-f04b-43b0-a70d-9cc732383f41'),(120278,79,142051,NULL,17996,7,'2022-08-25 02:31:26','2022-08-25 02:31:26','d1e45e78-5b14-4485-a12e-7acce17aa797'),(120279,69,142051,NULL,141945,1,'2022-08-25 02:31:26','2022-08-25 02:31:26','736a3218-c60b-45b8-805f-207e60b786ce'),(120280,198,142051,NULL,141998,1,'2022-08-25 02:31:26','2022-08-25 02:31:26','944ef225-7f71-41b5-a2c1-062052c51b8b'),(120294,79,142053,NULL,17881,1,'2022-08-25 02:33:32','2022-08-25 02:33:32','a041cd0e-bc77-4043-bfdc-5a7701a74840'),(120295,79,142053,NULL,1,2,'2022-08-25 02:33:32','2022-08-25 02:33:32','c74566a0-458d-4c7a-b91d-e62c0f115ebb'),(120296,79,142053,NULL,17954,3,'2022-08-25 02:33:32','2022-08-25 02:33:32','c375418a-f9ba-4235-95c9-84fd9516eaf1'),(120297,79,142053,NULL,17875,4,'2022-08-25 02:33:32','2022-08-25 02:33:32','9fc2ea62-0c01-4fbb-9632-1a52fa9b0efe'),(120298,69,142053,NULL,142011,1,'2022-08-25 02:33:32','2022-08-25 02:33:32','ee83f0f9-abe2-4a99-8757-9ef0f32f32de'),(120299,85,142053,NULL,17964,1,'2022-08-25 02:33:32','2022-08-25 02:33:32','d36e869a-40c7-4cc8-acac-f4357a66712d'),(120300,85,142053,NULL,17965,2,'2022-08-25 02:33:32','2022-08-25 02:33:32','b553512e-8b79-4917-941a-203109ba7451'),(120301,85,142053,NULL,17968,3,'2022-08-25 02:33:32','2022-08-25 02:33:32','2db19c73-9c07-4052-b434-2280c1d7f07d'),(120302,85,142053,NULL,17970,4,'2022-08-25 02:33:32','2022-08-25 02:33:32','b577de87-fe93-4cf8-b80b-f615e233444a'),(120303,85,142053,NULL,17971,5,'2022-08-25 02:33:32','2022-08-25 02:33:32','e4f340de-5389-4b47-a2e1-805153bdb29f'),(120304,84,142053,NULL,18057,1,'2022-08-25 02:33:32','2022-08-25 02:33:32','5a05d59c-f35c-43b8-8b73-37b2d27ae33f'),(120305,84,142053,NULL,38160,2,'2022-08-25 02:33:32','2022-08-25 02:33:32','3f5925db-ee31-4ecc-9a68-616c25ad1b8b'),(120306,198,142053,NULL,141596,1,'2022-08-25 02:33:32','2022-08-25 02:33:32','3369adfc-4c9b-4ceb-b495-86e73cdcc0db'),(120313,184,142056,NULL,141977,1,'2022-08-25 02:41:37','2022-08-25 02:41:37','0dc2063b-3e82-4194-a9d1-c952baa6aad8'),(120314,69,142056,NULL,141977,1,'2022-08-25 02:41:37','2022-08-25 02:41:37','b3b83ac4-8505-4df7-ac58-5a5359d7472e'),(120315,85,142056,NULL,17964,1,'2022-08-25 02:41:37','2022-08-25 02:41:37','5a85d280-96e6-445c-96d4-8d00b0eb8ddb'),(120316,85,142056,NULL,17965,2,'2022-08-25 02:41:37','2022-08-25 02:41:37','ffa3da39-4747-4dff-bd41-d2d3c5e74f62'),(120317,85,142056,NULL,17971,3,'2022-08-25 02:41:37','2022-08-25 02:41:37','db060755-634b-4581-9692-29597a7cc7ce'),(120318,198,142056,NULL,141977,1,'2022-08-25 02:41:38','2022-08-25 02:41:38','e3157264-a893-4316-a7ff-54b17268fd8c'),(120325,184,142059,NULL,141977,1,'2022-08-25 04:23:30','2022-08-25 04:23:30','70e7a98b-e677-4298-bc85-ed98fe00edc5'),(120326,69,142059,NULL,141977,1,'2022-08-25 04:23:30','2022-08-25 04:23:30','4d5e0944-59a4-4640-a02a-1ee65ae016df'),(120327,85,142059,NULL,17964,1,'2022-08-25 04:23:30','2022-08-25 04:23:30','49e0ae12-ba6f-42a2-872b-eb11bec45fbc'),(120328,85,142059,NULL,17965,2,'2022-08-25 04:23:30','2022-08-25 04:23:30','e6c4f979-b069-4938-955a-b7b09ffa592d'),(120329,85,142059,NULL,17971,3,'2022-08-25 04:23:30','2022-08-25 04:23:30','10ea63c3-497c-41fb-b13a-63541941c66e'),(120330,198,142059,NULL,141977,1,'2022-08-25 04:23:30','2022-08-25 04:23:30','923c5f2f-fe3e-4b71-909b-fb3939fe7b2b'),(120344,79,142061,NULL,17881,1,'2022-08-25 04:29:46','2022-08-25 04:29:46','7381c16f-79ce-45e4-b6da-b773ea784f3d'),(120345,79,142061,NULL,1,2,'2022-08-25 04:29:46','2022-08-25 04:29:46','9a245643-db51-462e-bd36-5cdc86be9b0f'),(120346,79,142061,NULL,17954,3,'2022-08-25 04:29:46','2022-08-25 04:29:46','ecda3ae9-dbc6-4468-b679-8a9ec780a75a'),(120347,79,142061,NULL,17875,4,'2022-08-25 04:29:46','2022-08-25 04:29:46','5b557689-497c-481f-bb75-ca59d5181f87'),(120348,69,142061,NULL,142011,1,'2022-08-25 04:29:46','2022-08-25 04:29:46','665d7509-a372-47a2-8cb0-dfca01fe41c1'),(120349,85,142061,NULL,17964,1,'2022-08-25 04:29:46','2022-08-25 04:29:46','3fecd94e-0dcb-44f5-9a87-af1a4187d890'),(120350,85,142061,NULL,17965,2,'2022-08-25 04:29:46','2022-08-25 04:29:46','3a495ce2-7d49-4622-bb93-9b05a8bdfc6b'),(120351,85,142061,NULL,17968,3,'2022-08-25 04:29:46','2022-08-25 04:29:46','38fb83c2-0d80-41f6-9abf-8df6233afd08'),(120352,85,142061,NULL,17970,4,'2022-08-25 04:29:46','2022-08-25 04:29:46','c5131368-a8f8-466e-ae7b-07be27793850'),(120353,85,142061,NULL,17971,5,'2022-08-25 04:29:46','2022-08-25 04:29:46','7db1eff6-fac9-4bab-9197-521792fcca28'),(120354,84,142061,NULL,18057,1,'2022-08-25 04:29:46','2022-08-25 04:29:46','ecbfa40f-c82c-4e67-be67-05ef13e5110c'),(120355,84,142061,NULL,38160,2,'2022-08-25 04:29:46','2022-08-25 04:29:46','7fa54068-4380-469b-9f4c-64dcd5713a7c'),(120356,198,142061,NULL,141596,1,'2022-08-25 04:29:46','2022-08-25 04:29:46','500033ed-4c87-4ce2-8880-e6d01a6ee668'),(120357,184,142062,NULL,141538,1,'2022-08-25 04:31:06','2022-08-25 04:31:06','6fbfe0fb-76ca-4590-809f-227485770075'),(120358,69,142062,NULL,141535,1,'2022-08-25 04:31:06','2022-08-25 04:31:06','9b0cb233-8a4b-47b2-bd24-78cb41bcf151'),(120359,198,142062,NULL,141535,1,'2022-08-25 04:31:06','2022-08-25 04:31:06','e3fb40cb-939d-4ea9-afa6-06524ecb3621'),(120366,184,142064,NULL,141977,1,'2022-08-25 04:36:54','2022-08-25 04:36:54','9c68b116-0846-4577-9499-084b7a4d4368'),(120367,69,142064,NULL,141977,1,'2022-08-25 04:36:54','2022-08-25 04:36:54','ce6efc5d-6ac6-4382-b5e2-df0aa214be27'),(120368,85,142064,NULL,17964,1,'2022-08-25 04:36:54','2022-08-25 04:36:54','8cf722f6-075c-402c-9926-b637779cf74d'),(120369,85,142064,NULL,17965,2,'2022-08-25 04:36:54','2022-08-25 04:36:54','bd9f0d0d-badd-4a09-b81b-51040a71fd6b'),(120370,85,142064,NULL,17971,3,'2022-08-25 04:36:54','2022-08-25 04:36:54','f27ea961-6900-4960-8d47-9d50f165f6a4'),(120371,198,142064,NULL,141977,1,'2022-08-25 04:36:54','2022-08-25 04:36:54','f2433658-eb76-4eab-8c51-6723a620a222'),(120372,79,142066,NULL,17881,1,'2022-08-25 21:34:36','2022-08-25 21:34:36','0cc54d1d-311c-4ffc-8299-bc37c1afec7e'),(120373,79,142066,NULL,1,2,'2022-08-25 21:34:36','2022-08-25 21:34:36','18fad7ac-650f-4fe6-a85e-ddd4091e3cb4'),(120374,79,142066,NULL,17954,3,'2022-08-25 21:34:36','2022-08-25 21:34:36','eba99517-fde5-472a-a689-69e713c5bfcb'),(120375,79,142066,NULL,17875,4,'2022-08-25 21:34:36','2022-08-25 21:34:36','139dc55e-61e5-4a2e-99e4-ea0ddb7d9aac'),(120376,69,142066,NULL,142011,1,'2022-08-25 21:34:36','2022-08-25 21:34:36','4cb50ec6-6c92-4b31-9686-b559fc66cedb'),(120377,85,142066,NULL,17964,1,'2022-08-25 21:34:36','2022-08-25 21:34:36','3f408d4a-de05-4b5f-af34-c236c07a6440'),(120378,85,142066,NULL,17965,2,'2022-08-25 21:34:36','2022-08-25 21:34:36','b4f29c9d-a745-4c4e-bb83-db1b3ceba96c'),(120379,85,142066,NULL,17968,3,'2022-08-25 21:34:36','2022-08-25 21:34:36','70c0b1b9-9945-4165-9bb1-fdef09a05ade'),(120380,85,142066,NULL,17970,4,'2022-08-25 21:34:36','2022-08-25 21:34:36','a7ccb214-b25f-4e19-b479-b7ed2e5fc9cb'),(120381,85,142066,NULL,17971,5,'2022-08-25 21:34:36','2022-08-25 21:34:36','e6b21f20-dea7-4201-a433-e1740afecf10'),(120382,84,142066,NULL,18057,1,'2022-08-25 21:34:36','2022-08-25 21:34:36','6c173153-c95f-4a63-8fd2-83106bfde0c2'),(120383,84,142066,NULL,38160,2,'2022-08-25 21:34:36','2022-08-25 21:34:36','c2f9a9a2-5706-473f-a69e-f5c68f235530'),(120384,198,142066,NULL,141596,1,'2022-08-25 21:34:36','2022-08-25 21:34:36','0903f717-493f-4e10-abf7-a550620ac477'),(120385,79,142067,NULL,17881,1,'2022-08-30 00:13:28','2022-08-30 00:13:28','16db5334-a9b7-4688-bcbf-b983c7bbebb3'),(120386,79,142067,NULL,1,2,'2022-08-30 00:13:28','2022-08-30 00:13:28','2a60f030-4c8c-4588-81d3-2644d95f59c7'),(120387,79,142067,NULL,17954,3,'2022-08-30 00:13:28','2022-08-30 00:13:28','a1d5c268-d193-4ee1-a3ef-e5ce9526f977'),(120388,79,142067,NULL,17875,4,'2022-08-30 00:13:28','2022-08-30 00:13:28','816400b7-4b5c-46a7-8346-092c9b8ca7b7'),(120389,69,142067,NULL,142011,1,'2022-08-30 00:13:28','2022-08-30 00:13:28','a8a83fbb-1c7f-41a0-88e6-8d38bc706a8e'),(120390,85,142067,NULL,17964,1,'2022-08-30 00:13:28','2022-08-30 00:13:28','83d14ac4-dbef-4e2c-a0a6-18218b5975c2'),(120391,85,142067,NULL,17965,2,'2022-08-30 00:13:28','2022-08-30 00:13:28','4ca92ada-e1b8-435a-82e8-82d48f450ed5'),(120392,85,142067,NULL,17968,3,'2022-08-30 00:13:28','2022-08-30 00:13:28','00984f2d-30e0-494f-9085-4b3fbb5e9378'),(120393,85,142067,NULL,17970,4,'2022-08-30 00:13:28','2022-08-30 00:13:28','d611dc2d-8aaa-415b-9f3a-51218b2e2987'),(120394,85,142067,NULL,17971,5,'2022-08-30 00:13:28','2022-08-30 00:13:28','b87bbae8-2c72-4890-bb95-09eaf5525b01'),(120395,84,142067,NULL,18057,1,'2022-08-30 00:13:28','2022-08-30 00:13:28','629a0297-fddd-4156-801c-2e5a63a0a0b7'),(120396,84,142067,NULL,38160,2,'2022-08-30 00:13:28','2022-08-30 00:13:28','de17d1f4-b8aa-4179-a5a7-8e38ae55b8b4'),(120397,198,142067,NULL,141596,1,'2022-08-30 00:13:28','2022-08-30 00:13:28','45a9bac4-d57b-4afc-8ed0-843a6e250c45'),(120411,79,142069,NULL,17881,1,'2022-08-30 00:13:40','2022-08-30 00:13:40','9cbb2da0-6eb6-4104-8639-0c3a81980f83'),(120412,79,142069,NULL,1,2,'2022-08-30 00:13:40','2022-08-30 00:13:40','c6206528-397d-4ff1-a1c4-44cf2ba8c960'),(120413,79,142069,NULL,17954,3,'2022-08-30 00:13:40','2022-08-30 00:13:40','96b5fabc-cc2e-49cf-9d35-b6a109f4faaa'),(120414,79,142069,NULL,17875,4,'2022-08-30 00:13:40','2022-08-30 00:13:40','14e17036-781d-43f3-a30b-df6a75d91084'),(120415,69,142069,NULL,142011,1,'2022-08-30 00:13:40','2022-08-30 00:13:40','4b9b4199-c17b-4597-9a5a-b45294d61478'),(120416,85,142069,NULL,17964,1,'2022-08-30 00:13:40','2022-08-30 00:13:40','1cf8133d-a55f-42ce-8a21-ece665533a05'),(120417,85,142069,NULL,17965,2,'2022-08-30 00:13:40','2022-08-30 00:13:40','ab62e5f3-bd07-4b19-a8de-ef7b728fcd16'),(120418,85,142069,NULL,17968,3,'2022-08-30 00:13:40','2022-08-30 00:13:40','f52aaaca-3f18-48e9-8f69-d4b3d4fad1c8'),(120419,85,142069,NULL,17970,4,'2022-08-30 00:13:40','2022-08-30 00:13:40','a7f74132-25fd-4a9a-952e-e5347eb4856d'),(120420,85,142069,NULL,17971,5,'2022-08-30 00:13:40','2022-08-30 00:13:40','8c7ddd0a-bb7a-4c64-afdf-60ef8d85b646'),(120421,84,142069,NULL,18057,1,'2022-08-30 00:13:40','2022-08-30 00:13:40','3434ee86-ac4d-4965-a12d-b16cb0fc9201'),(120422,84,142069,NULL,38160,2,'2022-08-30 00:13:40','2022-08-30 00:13:40','19309908-6507-4950-82b3-64368dc4b1ca'),(120423,198,142069,NULL,141596,1,'2022-08-30 00:13:40','2022-08-30 00:13:40','84e95966-5f68-4fdf-8cba-064124586a4a'),(120427,184,142071,NULL,141538,1,'2022-09-05 06:28:39','2022-09-05 06:28:39','8805ce38-4c1f-4a61-a707-260d5427845e'),(120428,69,142071,NULL,141535,1,'2022-09-05 06:28:39','2022-09-05 06:28:39','dd419236-8b34-4e95-ac28-836508bc126c'),(120429,198,142071,NULL,141535,1,'2022-09-05 06:28:39','2022-09-05 06:28:39','e5d52cf9-93e3-4eef-9115-6a51845f245a'),(120431,69,142253,NULL,142252,1,'2022-09-12 03:52:09','2022-09-12 03:52:09','0dffdccb-3378-4e29-bccb-1a7ac18fd5ca'),(120433,69,142255,NULL,142252,1,'2022-09-12 03:53:08','2022-09-12 03:53:08','a1379c01-e6ad-489e-aed5-752b45165f11'),(120435,69,142257,NULL,142252,1,'2022-09-12 03:53:27','2022-09-12 03:53:27','ee89a9ab-316c-45b5-bed8-6a42b7b75149'),(120437,69,142265,NULL,142252,1,'2022-09-13 04:22:17','2022-09-13 04:22:17','b960ed6f-9217-4502-af3d-c20c48555361'),(120439,69,142267,NULL,142252,1,'2022-09-13 04:22:43','2022-09-13 04:22:43','67b2c455-7e74-4510-837c-c3e4d3d41ec1'),(120441,69,142269,NULL,142252,1,'2022-09-13 04:23:05','2022-09-13 04:23:05','25a97e4d-53c8-4349-a4df-e9e22ff400c5'),(120443,69,142271,NULL,142252,1,'2022-09-13 04:27:46','2022-09-13 04:27:46','d7c5e0fc-2b44-4962-b1cf-b13bf66f3913'),(120445,69,142273,NULL,142252,1,'2022-09-13 04:29:41','2022-09-13 04:29:41','9e2f956d-f29c-496e-ba92-5de724aeea62'),(120447,69,142275,NULL,142252,1,'2022-09-13 04:40:08','2022-09-13 04:40:08','5997d490-5c37-4c19-9456-b64fabedf4d1'),(120462,79,142278,NULL,17881,1,'2022-09-13 23:01:24','2022-09-13 23:01:24','5b4edc28-33c9-48e1-9fd9-4f18e7edd43b'),(120463,79,142278,NULL,1,2,'2022-09-13 23:01:24','2022-09-13 23:01:24','c2bd6c78-cfc7-4fe3-9cc6-3871d5ab4030'),(120464,79,142278,NULL,17954,3,'2022-09-13 23:01:24','2022-09-13 23:01:24','eceedef0-43dd-49c5-a639-39bf62fe919a'),(120465,79,142278,NULL,17875,4,'2022-09-13 23:01:24','2022-09-13 23:01:24','5c61dc3c-4205-4aa9-8ac5-87614171fe94'),(120466,69,142278,NULL,142011,1,'2022-09-13 23:01:24','2022-09-13 23:01:24','17b0f53e-e855-4555-b5eb-fbcc4995d552'),(120467,85,142278,NULL,17964,1,'2022-09-13 23:01:24','2022-09-13 23:01:24','1e5781fc-4ee2-4620-b437-6b0b2cad2f5b'),(120468,85,142278,NULL,17965,2,'2022-09-13 23:01:24','2022-09-13 23:01:24','45cfbe72-68a2-4670-bec9-2e363b5478c5'),(120469,85,142278,NULL,17968,3,'2022-09-13 23:01:24','2022-09-13 23:01:24','e08548bb-3bae-4bf4-9f61-2f40008ae58b'),(120470,85,142278,NULL,17970,4,'2022-09-13 23:01:24','2022-09-13 23:01:24','b6310433-7dce-41bf-87ab-c612c0682715'),(120471,85,142278,NULL,17971,5,'2022-09-13 23:01:24','2022-09-13 23:01:24','ed360aeb-20c3-40a1-9171-e7de01ed92d4'),(120472,84,142278,NULL,18057,1,'2022-09-13 23:01:24','2022-09-13 23:01:24','9504ad32-d380-413f-8834-59cdd97d9664'),(120473,84,142278,NULL,38160,2,'2022-09-13 23:01:24','2022-09-13 23:01:24','890faf1f-b519-46e5-a66a-bed9dd58b6e7'),(120474,198,142278,NULL,141596,1,'2022-09-13 23:01:24','2022-09-13 23:01:24','b5ae06bf-f325-4b9d-9848-263ccb8f6e65'),(120488,79,142280,NULL,17881,1,'2022-09-13 23:03:11','2022-09-13 23:03:11','52406297-a492-4212-8946-e2b9cd9fc9dd'),(120489,79,142280,NULL,1,2,'2022-09-13 23:03:11','2022-09-13 23:03:11','85d6c0f9-d345-4148-bd1b-186d1abc03f0'),(120490,79,142280,NULL,17954,3,'2022-09-13 23:03:11','2022-09-13 23:03:11','d37988c8-5a6e-410e-b1ec-903d48ce8350'),(120491,79,142280,NULL,17875,4,'2022-09-13 23:03:11','2022-09-13 23:03:11','9ea49637-279f-4a0e-aa8d-1f638860ad71'),(120492,69,142280,NULL,142011,1,'2022-09-13 23:03:11','2022-09-13 23:03:11','f7db1094-bde7-426a-88f5-3eb00ac69a40'),(120493,85,142280,NULL,17964,1,'2022-09-13 23:03:11','2022-09-13 23:03:11','255088fe-0068-496b-9e3c-414954262d23'),(120494,85,142280,NULL,17965,2,'2022-09-13 23:03:11','2022-09-13 23:03:11','acbcc7b0-7d06-46ea-b396-9970172b8d3c'),(120495,85,142280,NULL,17968,3,'2022-09-13 23:03:11','2022-09-13 23:03:11','2a96361f-735e-4cd7-8201-b2905fa7431b'),(120496,85,142280,NULL,17970,4,'2022-09-13 23:03:11','2022-09-13 23:03:11','f49596af-1bb2-4925-9d39-c364e9db894c'),(120497,85,142280,NULL,17971,5,'2022-09-13 23:03:11','2022-09-13 23:03:11','bc80d3c3-3a9e-43f2-a4e8-b236b1f5fa21'),(120498,84,142280,NULL,18057,1,'2022-09-13 23:03:11','2022-09-13 23:03:11','0afd6876-a5f2-4191-a96c-ef489906a84e'),(120499,84,142280,NULL,38160,2,'2022-09-13 23:03:11','2022-09-13 23:03:11','c75aa43b-0b59-4c9a-88ec-754e826cee89'),(120500,198,142280,NULL,141596,1,'2022-09-13 23:03:11','2022-09-13 23:03:11','3c39ec2e-4274-47fd-87b9-6d971f205a00'),(120506,184,142375,NULL,48362,1,'2022-09-15 01:40:32','2022-09-15 01:40:32','bfbb9e96-5a38-4177-bcaa-30cb448df837'),(120507,69,142375,NULL,48362,1,'2022-09-15 01:40:32','2022-09-15 01:40:32','aaa1e534-301c-458f-8ba2-921555425a74'),(120508,85,142375,NULL,17964,1,'2022-09-15 01:40:32','2022-09-15 01:40:32','11a154bd-fb37-40ee-890a-0cb0f834a90c'),(120509,85,142375,NULL,17967,2,'2022-09-15 01:40:32','2022-09-15 01:40:32','c6e0719b-22a0-4e9d-a39f-e5e357ca6e3a'),(120510,198,142375,NULL,48362,1,'2022-09-15 01:40:32','2022-09-15 01:40:32','3d42a73a-1c1f-487d-933d-5cf31ad9e25d'),(120511,184,142376,NULL,48362,1,'2022-09-15 01:40:33','2022-09-15 01:40:33','a6a9fff1-29b5-4cea-b05d-60ad090357bc'),(120512,69,142376,NULL,48362,1,'2022-09-15 01:40:33','2022-09-15 01:40:33','ff013f8d-7916-4659-9acc-4f09633f4d53'),(120513,85,142376,NULL,17964,1,'2022-09-15 01:40:33','2022-09-15 01:40:33','e81cfa8d-7590-463c-b934-708b52cf9221'),(120514,85,142376,NULL,17967,2,'2022-09-15 01:40:33','2022-09-15 01:40:33','88cbed1e-c57d-4b60-8934-5e9fe7f6f98f'),(120515,198,142376,NULL,48362,1,'2022-09-15 01:40:33','2022-09-15 01:40:33','d1fa49fa-07a7-4279-98c4-2078d9d5e4dc'),(120516,184,142377,NULL,48362,1,'2022-09-15 01:40:38','2022-09-15 01:40:38','5714acb0-913f-4177-ac5b-e272f969fc34'),(120517,69,142377,NULL,48362,1,'2022-09-15 01:40:38','2022-09-15 01:40:38','d31d9f39-7b40-4fb0-846e-33c659095f1b'),(120518,85,142377,NULL,17964,1,'2022-09-15 01:40:38','2022-09-15 01:40:38','581a2082-783d-4493-ac70-6eba5289bd7c'),(120519,85,142377,NULL,17967,2,'2022-09-15 01:40:38','2022-09-15 01:40:38','c252bf8e-b9e0-4ed0-8475-82f202177a01'),(120520,198,142377,NULL,48362,1,'2022-09-15 01:40:38','2022-09-15 01:40:38','3a9a9ae9-49fd-4c0a-9082-0bb66d122bbe'),(120534,79,142382,NULL,17875,1,'2022-09-15 06:42:56','2022-09-15 06:42:56','40303526-961d-4606-b499-4b12d161d275'),(120535,79,142382,NULL,17934,2,'2022-09-15 06:42:56','2022-09-15 06:42:56','0e9a104f-be50-41d2-b253-c40be6c79930'),(120536,69,142382,NULL,141742,1,'2022-09-15 06:42:56','2022-09-15 06:42:56','1cecafa8-efb5-4dca-84c6-65783d353bb1'),(120537,85,142382,NULL,17964,1,'2022-09-15 06:42:56','2022-09-15 06:42:56','e1d86d94-68ba-4fd5-a3d4-0819afd33d27'),(120538,85,142382,NULL,17966,2,'2022-09-15 06:42:56','2022-09-15 06:42:56','257d464e-55fa-41d8-94bf-148c20761311'),(120539,85,142382,NULL,17967,3,'2022-09-15 06:42:56','2022-09-15 06:42:56','2c9b9dfc-f189-4f57-b65d-d1fee2e0d68a'),(120540,84,142382,NULL,38160,1,'2022-09-15 06:42:56','2022-09-15 06:42:56','d48d18ca-cc29-4383-b315-a3732001485b'),(120541,198,142382,NULL,141758,1,'2022-09-15 06:42:56','2022-09-15 06:42:56','b9f45576-7c02-4b80-a461-e2b2c659d190'),(120550,79,142384,NULL,17875,1,'2022-09-15 06:44:00','2022-09-15 06:44:00','3ee67f4a-f330-4cd6-8f9f-48814823532b'),(120551,79,142384,NULL,17934,2,'2022-09-15 06:44:00','2022-09-15 06:44:00','a66a33d6-024f-4e11-b336-976bde3918d8'),(120552,69,142384,NULL,141742,1,'2022-09-15 06:44:00','2022-09-15 06:44:00','4ec74f95-be66-4853-8e18-817c2707c6fe'),(120553,85,142384,NULL,17964,1,'2022-09-15 06:44:00','2022-09-15 06:44:00','cff293f9-ea15-4ebc-9826-476a1550a6a8'),(120554,85,142384,NULL,17966,2,'2022-09-15 06:44:00','2022-09-15 06:44:00','515fa8f5-7f50-4ff3-978b-93e1611c344c'),(120555,85,142384,NULL,17967,3,'2022-09-15 06:44:00','2022-09-15 06:44:00','cb5b20aa-e002-47ff-a638-897a4079fdec'),(120556,84,142384,NULL,38160,1,'2022-09-15 06:44:00','2022-09-15 06:44:00','a9469894-fdfe-4b57-b366-2d76d25f9879'),(120557,198,142384,NULL,141758,1,'2022-09-15 06:44:00','2022-09-15 06:44:00','715c57d6-932f-4993-b4f8-8ced2c82b72d'),(120566,79,142386,NULL,17875,1,'2022-09-15 06:50:18','2022-09-15 06:50:18','0ed1f72d-1f63-4b98-b6d1-35176ff30844'),(120567,79,142386,NULL,17934,2,'2022-09-15 06:50:18','2022-09-15 06:50:18','681ed817-8395-48d0-b8c9-36a5c6ea201c'),(120568,69,142386,NULL,141742,1,'2022-09-15 06:50:18','2022-09-15 06:50:18','34a00622-31e3-4e05-b228-13646b85dfb9'),(120569,85,142386,NULL,17964,1,'2022-09-15 06:50:18','2022-09-15 06:50:18','b1c463d4-58e5-44c5-83bc-9d6c3094b859'),(120570,85,142386,NULL,17966,2,'2022-09-15 06:50:18','2022-09-15 06:50:18','492d1251-0e0c-4dfa-a371-b8350d6138f8'),(120571,85,142386,NULL,17967,3,'2022-09-15 06:50:18','2022-09-15 06:50:18','2410efb7-638f-4add-a624-c41f82fa6111'),(120572,84,142386,NULL,38160,1,'2022-09-15 06:50:18','2022-09-15 06:50:18','c1a1a93c-d634-4285-bb79-db9d74929a29'),(120573,198,142386,NULL,141758,1,'2022-09-15 06:50:18','2022-09-15 06:50:18','3e9b927c-8703-4041-845e-6c1cd0dcd78b'),(120574,198,142387,NULL,48362,1,'2022-09-15 23:02:05','2022-09-15 23:02:05','e50ee1f9-e699-4eed-879d-5ad437c9823f'),(120579,79,21296,NULL,141616,3,'2022-09-19 05:41:24','2023-03-09 04:33:13','527062bd-83fb-4ddd-991b-a93a42f9629c'),(120580,79,21296,NULL,141642,13,'2022-09-19 05:41:24','2023-03-09 04:33:13','9cbe1eaf-1be9-496f-bc18-2da46170a2b1'),(120668,69,48011,NULL,142564,1,'2022-09-20 03:33:02','2022-09-20 03:33:02','632bcb8d-8fee-495d-8c3d-080bed84a87f'),(120669,198,48011,NULL,142566,1,'2022-09-20 03:33:02','2022-09-20 03:33:02','1aad80ca-5195-421a-b0e6-ff57837a22a9'),(120670,69,142567,NULL,142564,1,'2022-09-20 03:33:02','2022-09-20 03:33:02','0085554b-7d27-4a62-aaef-a448e8b46e61'),(120671,198,142567,NULL,142566,1,'2022-09-20 03:33:02','2022-09-20 03:33:02','386b93f2-f14e-4ced-953a-57e867126873'),(120674,69,142569,NULL,142564,1,'2022-09-20 03:33:36','2022-09-20 03:33:36','215bda47-2159-4929-a3b9-639d9cd7a112'),(120675,198,142569,NULL,142566,1,'2022-09-20 03:33:36','2022-09-20 03:33:36','38979e6a-08d9-4eb2-a7c2-67a1531e4749'),(120679,184,142572,NULL,141538,1,'2022-09-20 04:39:11','2022-09-20 04:39:11','588d94e2-a3fe-4439-8413-19712b17d1ee'),(120680,69,142572,NULL,141535,1,'2022-09-20 04:39:11','2022-09-20 04:39:11','1537f0a2-ce20-4278-bcc0-aa6190b092a8'),(120681,198,142572,NULL,141535,1,'2022-09-20 04:39:11','2022-09-20 04:39:11','79015b17-b111-4bc4-ad66-3c35d7a0a6eb'),(120685,184,142574,NULL,141538,1,'2022-09-20 04:39:22','2022-09-20 04:39:22','24c3f31e-5c8b-44a3-919d-f3637b6bf5a8'),(120686,69,142574,NULL,141535,1,'2022-09-20 04:39:22','2022-09-20 04:39:22','26d82cab-a933-4edc-8d03-2222812bd253'),(120687,198,142574,NULL,141535,1,'2022-09-20 04:39:22','2022-09-20 04:39:22','847e3397-7cf1-4c48-af1b-7dc34c61b5dd'),(120691,184,142576,NULL,141538,1,'2022-09-20 04:39:58','2022-09-20 04:39:58','3851795c-7fa1-43f1-afc6-2e89d2be8913'),(120692,69,142576,NULL,141535,1,'2022-09-20 04:39:58','2022-09-20 04:39:58','e842861f-b97e-4dbb-8133-eb10fc2b94e6'),(120693,198,142576,NULL,141535,1,'2022-09-20 04:39:58','2022-09-20 04:39:58','de87d10e-72c6-4094-8f5b-95f6f99c1d7b'),(120697,184,142578,NULL,141538,1,'2022-09-20 04:40:51','2022-09-20 04:40:51','4653764d-6514-4df8-ae35-27d689b46cdc'),(120698,69,142578,NULL,141535,1,'2022-09-20 04:40:51','2022-09-20 04:40:51','4019c613-4073-403e-aaff-fbdd24452083'),(120699,198,142578,NULL,141535,1,'2022-09-20 04:40:51','2022-09-20 04:40:51','b9532d84-be3f-47f9-b828-2a999a374ff5'),(120700,184,142579,NULL,141538,1,'2022-09-20 04:48:05','2022-09-20 04:48:05','ed59780b-6846-4750-bde3-ec1f97de7ecd'),(120701,69,142579,NULL,141535,1,'2022-09-20 04:48:05','2022-09-20 04:48:05','1924d606-9529-4c52-a9fa-5076da6f7368'),(120702,198,142579,NULL,141535,1,'2022-09-20 04:48:05','2022-09-20 04:48:05','58a978b3-fc31-4659-93dd-8c87a718e3bf'),(120706,184,142581,NULL,141538,1,'2022-09-20 04:48:20','2022-09-20 04:48:20','2753bae5-61d5-449e-9be0-9f9938ad5cc9'),(120707,69,142581,NULL,141535,1,'2022-09-20 04:48:20','2022-09-20 04:48:20','afb838ee-3b49-400a-b85b-96f464d7021b'),(120708,198,142581,NULL,141535,1,'2022-09-20 04:48:20','2022-09-20 04:48:20','ee13ab23-8a8a-4419-a143-f9a17977de9d'),(120711,69,142582,NULL,142564,1,'2022-09-20 05:03:15','2022-09-20 05:03:15','33c6b29b-8363-4799-b55a-5acb2af260e0'),(120712,198,142582,NULL,142566,1,'2022-09-20 05:03:15','2022-09-20 05:03:15','27cdaf61-3e4e-4114-8b39-5c116ba500cd'),(120716,184,142584,NULL,141538,1,'2022-09-20 05:03:44','2022-09-20 05:03:44','b1fd68c1-520b-416c-af1c-72e6308cafe9'),(120717,69,142584,NULL,141535,1,'2022-09-20 05:03:44','2022-09-20 05:03:44','9ce81e0c-bfd5-4cab-afed-0fdef984375d'),(120718,198,142584,NULL,141535,1,'2022-09-20 05:03:44','2022-09-20 05:03:44','9e447e2e-4188-4279-8c6a-e164ddf84841'),(120719,69,142585,NULL,142252,1,'2022-09-20 07:28:51','2022-09-20 07:28:51','58f08948-9d42-4a56-b66f-41251ec1e604'),(120722,69,142588,NULL,142564,1,'2022-09-20 07:41:05','2022-09-20 07:41:05','6d3144cc-5cac-46f2-84a3-308e225fcfa8'),(120723,198,142588,NULL,142566,1,'2022-09-20 07:41:05','2022-09-20 07:41:05','c3e6da9b-c9d4-4be8-aefd-3034b0ecf98f'),(120726,69,142590,NULL,142564,1,'2022-09-20 07:41:50','2022-09-20 07:41:50','6c426f35-ae65-405b-9224-b9adb292ec8f'),(120727,198,142590,NULL,142566,1,'2022-09-20 07:41:50','2022-09-20 07:41:50','294cb93d-c094-42fc-9d0d-f8f80611546b'),(120730,69,142592,NULL,142564,1,'2022-09-20 07:42:30','2022-09-20 07:42:30','45e1455b-2031-4d59-b4e2-40276acc3d91'),(120731,198,142592,NULL,142566,1,'2022-09-20 07:42:30','2022-09-20 07:42:30','f3b3328e-1658-4c93-91ad-61be944fbfb3'),(120734,69,142594,NULL,142564,1,'2022-09-20 21:44:14','2022-09-20 21:44:14','c4fd2477-855f-4d77-b4ef-18cdbc108e66'),(120735,198,142594,NULL,142566,1,'2022-09-20 21:44:14','2022-09-20 21:44:14','9af4fc76-dd34-42bf-9d94-16cf95e818dd'),(120738,69,142600,NULL,142564,1,'2022-09-21 01:02:40','2022-09-21 01:02:40','55a153c8-6788-44b7-921e-abc9fcacf439'),(120739,198,142600,NULL,142566,1,'2022-09-21 01:02:40','2022-09-21 01:02:40','8aba64eb-0551-41c2-8578-6e5de2cf4489'),(120742,69,142602,NULL,142564,1,'2022-09-21 01:03:56','2022-09-21 01:03:56','7e119e8d-f117-4eb0-8ff7-ab5ca2773ae5'),(120743,198,142602,NULL,142566,1,'2022-09-21 01:03:56','2022-09-21 01:03:56','fc1a68fc-2c91-4adf-b53e-baa1492724dc'),(120744,69,142603,NULL,142252,1,'2022-09-27 05:42:02','2022-09-27 05:42:02','388f2c4c-5066-451e-8ff6-220ca3fb017d'),(120748,184,142606,NULL,141538,1,'2022-09-28 04:54:01','2022-09-28 04:54:01','ff75346d-5f3f-4729-b484-936b7d315f54'),(120749,69,142606,NULL,141535,1,'2022-09-28 04:54:01','2022-09-28 04:54:01','3b7deeff-7a91-46f6-ab67-fec821961c96'),(120750,198,142606,NULL,141535,1,'2022-09-28 04:54:01','2022-09-28 04:54:01','59ad40da-2e8a-4ab2-916e-31bd209adb92'),(120754,184,142608,NULL,141538,1,'2022-09-28 05:02:57','2022-09-28 05:02:57','306c36bd-a416-45b6-aa8b-4043800f3ea0'),(120755,69,142608,NULL,141535,1,'2022-09-28 05:02:57','2022-09-28 05:02:57','e956f7c1-01bc-41eb-bfdb-0e8dc8d30911'),(120756,198,142608,NULL,141535,1,'2022-09-28 05:02:57','2022-09-28 05:02:57','33368d5e-3db4-4630-ab7f-a6e8b755f009'),(120760,184,142610,NULL,141538,1,'2022-09-28 05:04:20','2022-09-28 05:04:20','eaf9f830-3367-4e3b-a9bb-778f72224eb1'),(120761,69,142610,NULL,141535,1,'2022-09-28 05:04:20','2022-09-28 05:04:20','93e00ee3-3ca5-4cc6-b63e-9c40ad2f820e'),(120762,198,142610,NULL,141535,1,'2022-09-28 05:04:20','2022-09-28 05:04:20','7157b8a7-edc9-4a9e-a2a4-ff832824194b'),(120766,184,142612,NULL,141538,1,'2022-09-28 05:05:38','2022-09-28 05:05:38','8b7da5ce-bc46-48ed-8f5c-31ce2d32aaf8'),(120767,69,142612,NULL,141535,1,'2022-09-28 05:05:38','2022-09-28 05:05:38','a7a32744-4c17-4c79-bc33-ea2fba915b84'),(120768,198,142612,NULL,141535,1,'2022-09-28 05:05:38','2022-09-28 05:05:38','4216a894-68cf-43ee-8bb1-5e45dd4aa995'),(120772,184,142614,NULL,141538,1,'2022-09-28 05:06:14','2022-09-28 05:06:14','883fbc11-64ad-4209-9a8d-82846d643356'),(120773,69,142614,NULL,141535,1,'2022-09-28 05:06:14','2022-09-28 05:06:14','0342fac5-d309-4ccb-b811-28e3b7d03ed9'),(120774,198,142614,NULL,141535,1,'2022-09-28 05:06:14','2022-09-28 05:06:14','45c9b783-57f9-4260-bb5b-c1789ffcdf37'),(120778,184,142616,NULL,141538,1,'2022-09-28 05:06:28','2022-09-28 05:06:28','13c061f8-5556-4585-bc86-46b0d687ca65'),(120779,69,142616,NULL,141535,1,'2022-09-28 05:06:28','2022-09-28 05:06:28','e84e9d79-7537-437d-abce-9171c93cc5a3'),(120780,198,142616,NULL,141535,1,'2022-09-28 05:06:28','2022-09-28 05:06:28','0a27839b-f700-48a6-9f31-6678b943c4de'),(120806,69,142629,NULL,142564,1,'2022-09-28 06:41:58','2022-09-28 06:41:58','3b6cfd78-e78b-4d2f-8f93-c6ec66af8861'),(120807,198,142629,NULL,142566,1,'2022-09-28 06:41:58','2022-09-28 06:41:58','adddbee6-e572-4da5-971b-263f6b6db49c'),(120809,69,142631,NULL,142252,1,'2022-09-28 06:45:26','2022-09-28 06:45:26','6059c4db-5999-49a0-a8d6-a3663b7a780c'),(120813,184,142633,NULL,141538,1,'2022-09-28 06:52:52','2022-09-28 06:52:52','92dc4e9a-3c82-4885-b9f1-2eac2c2d07aa'),(120814,69,142633,NULL,141535,1,'2022-09-28 06:52:52','2022-09-28 06:52:52','4a71e5dc-43d9-4211-9495-7a251502eced'),(120815,198,142633,NULL,141535,1,'2022-09-28 06:52:52','2022-09-28 06:52:52','058fc0f3-f830-4c12-bec3-b2f1cf857517'),(120823,184,142637,NULL,141538,1,'2022-09-28 06:54:59','2022-09-28 06:54:59','00db20e6-1b5e-48c3-928c-da98b7739913'),(120824,69,142637,NULL,141535,1,'2022-09-28 06:54:59','2022-09-28 06:54:59','16b12470-155d-4e2c-b60b-24408649942f'),(120825,198,142637,NULL,141535,1,'2022-09-28 06:54:59','2022-09-28 06:54:59','6dbcfebc-25b4-43b0-ad85-c10542ee423b'),(120829,184,142639,NULL,141538,1,'2022-09-28 06:55:46','2022-09-28 06:55:46','d4f41b36-2c69-47d0-a252-170ffdf1f751'),(120830,69,142639,NULL,141535,1,'2022-09-28 06:55:46','2022-09-28 06:55:46','be053427-6126-4453-b0f6-f7e17d4c9b2e'),(120831,198,142639,NULL,141535,1,'2022-09-28 06:55:46','2022-09-28 06:55:46','2f588b80-c91e-4fe3-924b-d5ce95026065'),(120833,69,142641,NULL,142252,1,'2022-09-29 00:19:47','2022-09-29 00:19:47','cc66b973-c62f-4c01-b55c-edc7a64fc97b'),(120843,184,142672,NULL,17105,1,'2022-10-04 21:55:54','2022-10-04 21:55:54','915bf9f0-2800-4fab-999e-30bec98ec8eb'),(120844,69,142672,NULL,17105,1,'2022-10-04 21:55:54','2022-10-04 21:55:54','b3598103-00e0-4224-9dc5-0ea3f54019d9'),(120845,85,142672,NULL,17965,1,'2022-10-04 21:55:54','2022-10-04 21:55:54','610d8d47-0f8a-4f58-b269-175c4386448f'),(120846,85,142672,NULL,17971,2,'2022-10-04 21:55:54','2022-10-04 21:55:54','9e3be5e9-be17-48f2-bed9-58bfd33845a6'),(120847,198,142672,NULL,17105,1,'2022-10-04 21:55:54','2022-10-04 21:55:54','df17d0b9-a718-4b2f-b12e-70a5577d07d0'),(120859,184,142675,NULL,142674,1,'2022-10-04 21:57:49','2022-10-04 21:57:49','e59cc1f9-7e86-4689-9572-10907b32ac9f'),(120860,69,142675,NULL,142674,1,'2022-10-04 21:57:49','2022-10-04 21:57:49','a4698afe-8211-4007-b892-9dcc7fcf5c4b'),(120861,85,142675,NULL,17965,1,'2022-10-04 21:57:49','2022-10-04 21:57:49','99e21b16-c4d0-4e80-83fd-159f81af331f'),(120862,85,142675,NULL,17971,2,'2022-10-04 21:57:49','2022-10-04 21:57:49','ba26a169-85e6-4fbf-b9e7-5f74f88f0dd0'),(120863,198,142675,NULL,142674,1,'2022-10-04 21:57:49','2022-10-04 21:57:49','4ec26205-0992-4d8e-96c2-8f63ac47af29'),(120864,69,142676,NULL,142252,1,'2022-10-05 03:53:27','2022-10-05 03:53:27','6f710fa7-8f17-4b3a-9e00-01a4fa9eef01'),(120865,69,142677,NULL,142252,1,'2022-10-05 03:53:28','2022-10-05 03:53:28','9f62ccfb-8806-4192-b98d-d46ed2d9f710'),(120872,184,142684,NULL,142674,1,'2022-10-09 21:35:20','2022-10-09 21:35:20','d983202f-c510-405a-801a-236d99175e21'),(120873,69,142684,NULL,142674,1,'2022-10-09 21:35:20','2022-10-09 21:35:20','fdba5a43-8c94-421e-8322-6555beebdd6d'),(120874,85,142684,NULL,17965,1,'2022-10-09 21:35:20','2022-10-09 21:35:20','491920db-2dbb-4087-9892-4957797976d0'),(120875,85,142684,NULL,17971,2,'2022-10-09 21:35:20','2022-10-09 21:35:20','2e812fb6-7b57-4453-ba80-7a42cb7d2e4f'),(120876,198,142684,NULL,142674,1,'2022-10-09 21:35:20','2022-10-09 21:35:20','761c55ed-a27d-4e4e-9464-a83e38b1f6ab'),(120882,184,142686,NULL,142674,1,'2022-10-09 21:35:41','2022-10-09 21:35:41','336f8c84-9e49-43ad-a138-500749989e1e'),(120883,69,142686,NULL,142674,1,'2022-10-09 21:35:41','2022-10-09 21:35:41','391206c7-94da-4390-9a97-5697d06a9c0d'),(120884,85,142686,NULL,17965,1,'2022-10-09 21:35:41','2022-10-09 21:35:41','7b893c11-dcc1-4d7a-b1da-0040793cbdc0'),(120885,85,142686,NULL,17971,2,'2022-10-09 21:35:41','2022-10-09 21:35:41','e5e4e6ba-da36-47b4-8ba5-dc19b641229f'),(120886,198,142686,NULL,142674,1,'2022-10-09 21:35:41','2022-10-09 21:35:41','0ac3d555-7db5-4b68-918f-e53d21d3fe06'),(120892,184,142688,NULL,142674,1,'2022-10-09 21:35:58','2022-10-09 21:35:58','ef3d16fd-3e43-4244-8477-9b47ff918459'),(120893,69,142688,NULL,142674,1,'2022-10-09 21:35:58','2022-10-09 21:35:58','6b1ba444-390f-48a5-aa6d-8a8911d2cc76'),(120894,85,142688,NULL,17965,1,'2022-10-09 21:35:58','2022-10-09 21:35:58','b9409c3e-f18a-41c9-864d-3dbd094539d0'),(120895,85,142688,NULL,17971,2,'2022-10-09 21:35:58','2022-10-09 21:35:58','eba3bd4f-be9e-4a59-9096-6af432cb0c52'),(120896,198,142688,NULL,142674,1,'2022-10-09 21:35:58','2022-10-09 21:35:58','40de2813-c342-4af7-94d9-cd03e44124e8'),(120902,184,142690,NULL,142674,1,'2022-10-09 21:36:39','2022-10-09 21:36:39','9f29d1fa-ed34-46c5-a61b-992181a851fe'),(120903,69,142690,NULL,142674,1,'2022-10-09 21:36:39','2022-10-09 21:36:39','e32f62e0-7e90-4830-b25d-df2750adf9ed'),(120904,85,142690,NULL,17965,1,'2022-10-09 21:36:39','2022-10-09 21:36:39','0b7872d7-e7c4-4db5-b62d-50ce80b6e588'),(120905,85,142690,NULL,17971,2,'2022-10-09 21:36:39','2022-10-09 21:36:39','b7b965b1-71a2-431e-9db5-1edbcb889a00'),(120906,198,142690,NULL,142674,1,'2022-10-09 21:36:39','2022-10-09 21:36:39','278c0b07-1d72-40f2-ba59-add73464142d'),(120912,184,142692,NULL,142674,1,'2022-10-09 21:37:04','2022-10-09 21:37:04','b6c82697-9195-4a22-bbb9-1c90b45a183a'),(120913,69,142692,NULL,142674,1,'2022-10-09 21:37:04','2022-10-09 21:37:04','bb250c01-24e0-420e-a4f0-d69ca9f2b830'),(120914,85,142692,NULL,17965,1,'2022-10-09 21:37:04','2022-10-09 21:37:04','83ed5788-198d-49cb-9423-13f1d0631183'),(120915,85,142692,NULL,17971,2,'2022-10-09 21:37:04','2022-10-09 21:37:04','51dc87c2-3976-44a4-8981-ccc8e9edf29b'),(120916,198,142692,NULL,142674,1,'2022-10-09 21:37:04','2022-10-09 21:37:04','2a0043c0-67f6-4d22-be3a-74c9007e2969'),(120922,184,142694,NULL,142674,1,'2022-10-09 21:37:34','2022-10-09 21:37:34','95a25681-9239-445c-8396-04d5b871fcb2'),(120923,69,142694,NULL,142674,1,'2022-10-09 21:37:34','2022-10-09 21:37:34','144b6292-8589-46af-9412-4b831e0fa271'),(120924,85,142694,NULL,17965,1,'2022-10-09 21:37:34','2022-10-09 21:37:34','43a49755-01dd-46eb-8f6a-f401f37a10d0'),(120925,85,142694,NULL,17971,2,'2022-10-09 21:37:34','2022-10-09 21:37:34','7f7286b4-1956-4d8d-8afd-1abcff0b50d8'),(120926,198,142694,NULL,142674,1,'2022-10-09 21:37:34','2022-10-09 21:37:34','4f3499e8-0cf5-4e73-9560-12f138275ded'),(120932,184,142696,NULL,142674,1,'2022-10-09 21:39:09','2022-10-09 21:39:09','8f70617c-c410-473d-b2bf-784ecaf3bcb4'),(120933,69,142696,NULL,142674,1,'2022-10-09 21:39:09','2022-10-09 21:39:09','a1d9e7e1-592f-41c3-b66d-98c05f2e05fb'),(120934,85,142696,NULL,17965,1,'2022-10-09 21:39:09','2022-10-09 21:39:09','92cc4d89-8d25-4806-87a5-8348f4e4f99b'),(120935,85,142696,NULL,17971,2,'2022-10-09 21:39:09','2022-10-09 21:39:09','178258a1-7216-4d9e-a066-c4104eb5e898'),(120936,198,142696,NULL,142674,1,'2022-10-09 21:39:09','2022-10-09 21:39:09','20104730-8e6e-47b9-96c5-55d83718d8b1'),(120937,184,142697,NULL,142674,1,'2022-10-09 21:39:43','2022-10-09 21:39:43','48aa4cb4-d6db-4330-96ca-6b24d700570f'),(120938,69,142697,NULL,142674,1,'2022-10-09 21:39:43','2022-10-09 21:39:43','96290932-f9e5-4d8b-822c-ad8de199b0ac'),(120939,85,142697,NULL,17965,1,'2022-10-09 21:39:43','2022-10-09 21:39:43','1da6cadb-b328-4397-a2b3-7f2a11f307a7'),(120940,85,142697,NULL,17971,2,'2022-10-09 21:39:43','2022-10-09 21:39:43','2e991ed6-9ca0-4c31-8380-34243f9ee719'),(120941,198,142697,NULL,142674,1,'2022-10-09 21:39:43','2022-10-09 21:39:43','f63046df-c653-4c6a-bfc1-e48e7e2bd696'),(120944,69,142705,NULL,142653,1,'2022-10-12 06:29:18','2022-10-12 06:29:18','327870d2-95a9-4017-8507-261ac6f7c1dd'),(120946,69,142706,NULL,142653,1,'2022-10-12 06:38:26','2022-10-12 06:38:26','c8307dac-dffe-402b-8a0d-2d2db830feef'),(120947,69,142707,NULL,142653,1,'2022-10-12 06:38:57','2022-10-12 06:38:57','ab2720f1-5d1f-4e56-93b5-4421b0e1c1b1'),(120948,69,142708,NULL,142653,1,'2022-10-12 06:39:01','2022-10-12 06:39:01','4666e9e9-c5e9-44e3-9b32-8d1636049096'),(120950,69,142710,NULL,142653,1,'2022-10-12 06:39:19','2022-10-12 06:39:19','fb4e6054-0529-430f-85b0-fb448cd565df'),(120952,198,142711,NULL,94211,1,'2022-10-13 23:32:45','2022-10-13 23:32:45','856fdf9a-3bbc-4101-b8de-ce48304e95ed'),(120953,198,142712,NULL,94211,1,'2022-10-13 23:33:08','2022-10-13 23:33:08','48b0ccac-faa0-44e4-abd4-73425872ea69'),(120955,198,142714,NULL,94211,1,'2022-10-13 23:34:58','2022-10-13 23:34:58','41e45148-879c-43d4-9d9b-94bec19ccfb1'),(120958,69,142718,NULL,142443,1,'2022-10-18 00:44:20','2022-10-18 00:44:20','f54fdaac-c730-47b2-b722-dc293e320672'),(120959,198,142718,NULL,142451,1,'2022-10-18 00:44:20','2022-10-18 00:44:20','9018d033-8270-46b8-86ce-47fd629fdf63'),(120966,69,142722,NULL,142443,1,'2022-10-18 00:50:13','2022-10-18 00:50:13','bcce62ff-6639-40fe-9526-d50082a48bc6'),(120967,198,142722,NULL,142451,1,'2022-10-18 00:50:13','2022-10-18 00:50:13','867fb683-dd9d-42e7-9859-4fb8f576fe89'),(120968,69,142723,NULL,142443,1,'2022-10-18 00:50:14','2022-10-18 00:50:14','ba2b22b8-d353-4f09-8f92-7bb29434bf1f'),(120969,198,142723,NULL,142451,1,'2022-10-18 00:50:14','2022-10-18 00:50:14','e0274731-7e6b-44a9-8071-bf00daf87167'),(120970,69,142724,NULL,142443,1,'2022-10-18 00:50:59','2022-10-18 00:50:59','2cd6b6fa-a302-4f40-b26d-7055cf0343ba'),(120971,198,142724,NULL,142451,1,'2022-10-18 00:51:00','2022-10-18 00:51:00','8c3c3232-708a-4647-8484-3253f164c28c'),(120974,69,142726,NULL,142443,1,'2022-10-18 00:51:49','2022-10-18 00:51:49','2168afd8-cb54-4ae9-aa69-4eb8df0e39b7'),(120975,198,142726,NULL,142451,1,'2022-10-18 00:51:49','2022-10-18 00:51:49','baa7466d-6afe-40b3-aeda-ae8472c769d8'),(120978,69,142728,NULL,142443,1,'2022-10-18 00:54:02','2022-10-18 00:54:02','6ae67436-3fbb-4331-80a2-dd693933ee6c'),(120979,198,142728,NULL,142451,1,'2022-10-18 00:54:02','2022-10-18 00:54:02','4be3d244-2fcd-4a04-8ba1-5a72e81f5a21'),(120982,69,142730,NULL,142443,1,'2022-10-18 00:57:16','2022-10-18 00:57:16','7fb8a152-0889-46f3-a383-5369556ff4bf'),(120983,198,142730,NULL,142451,1,'2022-10-18 00:57:16','2022-10-18 00:57:16','0b34e280-7acc-473d-9543-4d7abbd11b49'),(120986,69,142732,NULL,142443,1,'2022-10-18 00:57:59','2022-10-18 00:57:59','3265dcd6-6568-47d5-8e55-6f0183ae4a59'),(120987,198,142732,NULL,142451,1,'2022-10-18 00:57:59','2022-10-18 00:57:59','3a024383-a484-49b4-905b-1dc9d1a2c78f'),(120990,69,142734,NULL,142443,1,'2022-10-18 00:59:35','2022-10-18 00:59:35','cee992cd-34a8-4d3a-a85b-e3242b7f5a39'),(120991,198,142734,NULL,142451,1,'2022-10-18 00:59:35','2022-10-18 00:59:35','842d5655-05a6-4905-b366-687d7be27df4'),(120997,85,142717,NULL,17964,1,'2022-10-18 01:02:30','2022-10-18 01:02:30','3a8b6674-b602-4b02-b971-393488fab8af'),(120998,85,142717,NULL,17965,2,'2022-10-18 01:02:30','2022-10-18 01:02:30','1c19d204-b719-4499-a2a3-785ee1414957'),(120999,85,142717,NULL,17966,3,'2022-10-18 01:02:30','2022-10-18 01:02:30','bf2db791-8425-4414-bc83-4ba508762504'),(121000,69,142736,NULL,142443,1,'2022-10-18 01:02:30','2022-10-18 01:02:30','f54af903-0c12-498c-b0d6-91411d361f7e'),(121001,85,142736,NULL,17964,1,'2022-10-18 01:02:30','2022-10-18 01:02:30','ca3e44e5-7b8a-4f76-8654-9390299bb5f8'),(121002,85,142736,NULL,17965,2,'2022-10-18 01:02:30','2022-10-18 01:02:30','67e9e8a2-e6be-4661-a391-11e65ea8b44a'),(121003,85,142736,NULL,17966,3,'2022-10-18 01:02:30','2022-10-18 01:02:30','09552f6d-5df4-47b5-a7be-c44f8666dd43'),(121004,198,142736,NULL,142451,1,'2022-10-18 01:02:30','2022-10-18 01:02:30','84153a0e-de9d-42df-af63-e257e9634300'),(121010,69,142738,NULL,142443,1,'2022-10-18 01:06:33','2022-10-18 01:06:33','a7ad75b5-c587-487d-9ccb-10516d37a6f4'),(121011,85,142738,NULL,17964,1,'2022-10-18 01:06:33','2022-10-18 01:06:33','f72ca9b3-aa7d-40fd-b17a-50aaf230867b'),(121012,85,142738,NULL,17965,2,'2022-10-18 01:06:33','2022-10-18 01:06:33','36c9043b-cced-40db-ad31-d08d6dbf7554'),(121013,85,142738,NULL,17966,3,'2022-10-18 01:06:33','2022-10-18 01:06:33','2936dee8-cf1c-4ee9-89c4-e3dbba412fea'),(121014,198,142738,NULL,142451,1,'2022-10-18 01:06:33','2022-10-18 01:06:33','32e236b4-556e-411d-b535-5503f45ef252'),(121020,69,142740,NULL,142443,1,'2022-10-18 01:09:54','2022-10-18 01:09:54','fbbefaaa-ae84-4379-b6aa-c796cc813026'),(121021,85,142740,NULL,17964,1,'2022-10-18 01:09:54','2022-10-18 01:09:54','c2c118eb-3fb9-4798-acc5-2b49fa8bd5ed'),(121022,85,142740,NULL,17965,2,'2022-10-18 01:09:54','2022-10-18 01:09:54','3e3d9276-a484-4994-b661-914002744d8d'),(121023,85,142740,NULL,17966,3,'2022-10-18 01:09:54','2022-10-18 01:09:54','74b64b7a-6e49-41ce-b9ea-14e81a699e81'),(121024,198,142740,NULL,142451,1,'2022-10-18 01:09:54','2022-10-18 01:09:54','1b8ec39d-ebd4-474c-a17d-9190034c2104'),(121030,69,142742,NULL,142443,1,'2022-10-18 01:10:48','2022-10-18 01:10:48','02062f8b-d72d-41e1-a166-2d12d3b5816d'),(121031,85,142742,NULL,17964,1,'2022-10-18 01:10:48','2022-10-18 01:10:48','80595f03-889a-4ae9-8d6d-471fbb731921'),(121032,85,142742,NULL,17965,2,'2022-10-18 01:10:48','2022-10-18 01:10:48','d3e69eb1-b109-46c6-8902-c768b3c1984b'),(121033,85,142742,NULL,17966,3,'2022-10-18 01:10:48','2022-10-18 01:10:48','236fae87-09f0-40b6-b35e-6b90881cb4a5'),(121034,198,142742,NULL,142451,1,'2022-10-18 01:10:48','2022-10-18 01:10:48','0b1d4e0c-7062-437c-ba31-8f7c8e3de38f'),(121040,69,142744,NULL,142443,1,'2022-10-18 01:12:29','2022-10-18 01:12:29','205ce934-4c07-49ac-ab3c-9e2c59e11ec6'),(121041,85,142744,NULL,17964,1,'2022-10-18 01:12:29','2022-10-18 01:12:29','10f50688-4a03-489d-8001-23df85e2eda1'),(121042,85,142744,NULL,17965,2,'2022-10-18 01:12:29','2022-10-18 01:12:29','c51e2fdd-1e7f-4d21-9c2f-4e3f2be9b108'),(121043,85,142744,NULL,17966,3,'2022-10-18 01:12:29','2022-10-18 01:12:29','cbcda3bc-5da6-4f4c-87d0-80d7e5bda016'),(121044,198,142744,NULL,142451,1,'2022-10-18 01:12:29','2022-10-18 01:12:29','4592f446-6e04-41ef-8be6-8c421d4cc80f'),(121050,69,142746,NULL,142443,1,'2022-10-18 01:14:22','2022-10-18 01:14:22','46082d20-45eb-4556-abbe-c71769b1e0da'),(121051,85,142746,NULL,17964,1,'2022-10-18 01:14:22','2022-10-18 01:14:22','8596653b-a3bc-465f-9319-bd63b738165f'),(121052,85,142746,NULL,17965,2,'2022-10-18 01:14:22','2022-10-18 01:14:22','09382cbb-1a35-46e1-a2af-f5bd10501d48'),(121053,85,142746,NULL,17966,3,'2022-10-18 01:14:22','2022-10-18 01:14:22','4cb424e0-76c4-4028-bd0c-ed4277366664'),(121054,198,142746,NULL,142451,1,'2022-10-18 01:14:22','2022-10-18 01:14:22','d5b57363-04df-421f-ac27-1b922898accd'),(121060,69,142748,NULL,142443,1,'2022-10-18 01:15:47','2022-10-18 01:15:47','6b6631bd-11cb-47e3-8aa3-fddd99217be9'),(121061,85,142748,NULL,17964,1,'2022-10-18 01:15:47','2022-10-18 01:15:47','4430d88d-1ee7-4e28-a770-3431b1f2c7cc'),(121062,85,142748,NULL,17965,2,'2022-10-18 01:15:47','2022-10-18 01:15:47','2e9bbd4d-7bc8-4e81-babf-345e267706bb'),(121063,85,142748,NULL,17966,3,'2022-10-18 01:15:47','2022-10-18 01:15:47','0f150f21-9922-49bc-9d5b-f2785dbdbbde'),(121064,198,142748,NULL,142451,1,'2022-10-18 01:15:47','2022-10-18 01:15:47','1bdff869-1ecf-40f7-9012-c6c755df6f99'),(121070,69,142750,NULL,142443,1,'2022-10-18 01:17:28','2022-10-18 01:17:28','b9b90a4a-ad08-4a96-81f3-07b158740288'),(121071,85,142750,NULL,17964,1,'2022-10-18 01:17:28','2022-10-18 01:17:28','7d6db659-a80c-418a-9c39-740bd32495c7'),(121072,85,142750,NULL,17965,2,'2022-10-18 01:17:28','2022-10-18 01:17:28','990cc6b6-0ce0-471e-8435-8f865f5f98fa'),(121073,85,142750,NULL,17966,3,'2022-10-18 01:17:28','2022-10-18 01:17:28','cdaa8c76-3fc5-402b-adeb-99cfbee5ee3a'),(121074,198,142750,NULL,142451,1,'2022-10-18 01:17:28','2022-10-18 01:17:28','a3b388d5-a627-4181-89fb-ea9180ec8f8a'),(121075,69,142751,NULL,142443,1,'2022-10-18 01:24:52','2022-10-18 01:24:52','690e366a-4f76-4704-aa02-03ce167a497a'),(121076,85,142751,NULL,17964,1,'2022-10-18 01:24:52','2022-10-18 01:24:52','94cc2158-6111-4979-bebe-0d4daaf979f4'),(121077,85,142751,NULL,17965,2,'2022-10-18 01:24:52','2022-10-18 01:24:52','98a0fced-b785-44cd-88c5-e22ca908397f'),(121078,85,142751,NULL,17966,3,'2022-10-18 01:24:52','2022-10-18 01:24:52','1b3f77f2-6745-4803-b7e9-c3fa6fecd333'),(121079,198,142751,NULL,142451,1,'2022-10-18 01:24:52','2022-10-18 01:24:52','3cf918b2-9d4c-4f0a-a0f1-f188ba6cc086'),(121085,69,142753,NULL,142443,1,'2022-10-18 01:26:50','2022-10-18 01:26:50','8a767ae3-910c-463b-978b-36d213a313fe'),(121086,85,142753,NULL,17964,1,'2022-10-18 01:26:50','2022-10-18 01:26:50','134612a6-cb3f-4699-9a6c-bddd30760933'),(121087,85,142753,NULL,17965,2,'2022-10-18 01:26:50','2022-10-18 01:26:50','5d2e84e1-bcde-4969-8f9a-f8eff44da65c'),(121088,85,142753,NULL,17966,3,'2022-10-18 01:26:50','2022-10-18 01:26:50','d7993e2c-1672-4d4a-9a6c-4a779ffacce6'),(121089,198,142753,NULL,142451,1,'2022-10-18 01:26:50','2022-10-18 01:26:50','f2c493f8-38b3-49d8-bf52-bfbbf6de21f2'),(121090,69,142754,NULL,142443,1,'2022-10-18 01:27:32','2022-10-18 01:27:32','57871a2c-1002-4ab9-ab92-d4c163089361'),(121091,85,142754,NULL,17964,1,'2022-10-18 01:27:32','2022-10-18 01:27:32','a7b4474f-dcff-4c65-822e-6e589ee5bca9'),(121092,85,142754,NULL,17965,2,'2022-10-18 01:27:32','2022-10-18 01:27:32','ccfa820d-cc67-474f-9e61-188d59de9108'),(121093,85,142754,NULL,17966,3,'2022-10-18 01:27:32','2022-10-18 01:27:32','fe2cbc10-6e63-4fae-94c7-4e2757d52da5'),(121094,198,142754,NULL,142451,1,'2022-10-18 01:27:32','2022-10-18 01:27:32','23444fbe-0a13-4400-b39b-e4da2e3fc32a'),(121095,79,142755,NULL,17875,1,'2022-10-18 04:05:07','2022-10-18 04:05:07','d48500ce-63f1-45fa-8a95-13f0b27315da'),(121096,79,142755,NULL,17899,2,'2022-10-18 04:05:07','2022-10-18 04:05:07','67049c31-1a26-457c-bfda-278e69d6f0c8'),(121097,79,142755,NULL,17934,3,'2022-10-18 04:05:07','2022-10-18 04:05:07','388718e6-024c-48d3-9117-b6788180f4cb'),(121098,79,142755,NULL,17941,4,'2022-10-18 04:05:07','2022-10-18 04:05:07','2693798f-d04f-41fb-87cb-7fd5894cb2a0'),(121099,79,142755,NULL,17954,5,'2022-10-18 04:05:07','2022-10-18 04:05:07','c59d5e2f-2c88-408e-bdab-90c077ae7831'),(121100,79,142755,NULL,17996,6,'2022-10-18 04:05:07','2022-10-18 04:05:07','b1a289d1-515d-4bb3-9af8-645ec7fca422'),(121101,69,142755,NULL,16824,1,'2022-10-18 04:05:07','2022-10-18 04:05:07','f13597d1-d68b-4871-8841-f2544eea9f67'),(121102,85,142755,NULL,17964,1,'2022-10-18 04:05:07','2022-10-18 04:05:07','1589e65c-9d8e-4498-8377-eab452657717'),(121103,85,142755,NULL,17966,2,'2022-10-18 04:05:07','2022-10-18 04:05:07','d973f471-551b-4ed2-9f99-1018af4cdb2e'),(121104,85,142755,NULL,17967,3,'2022-10-18 04:05:07','2022-10-18 04:05:07','ebd9f0ed-d0f7-41ee-947e-b6d5f35ec78e'),(121105,85,142755,NULL,17969,4,'2022-10-18 04:05:07','2022-10-18 04:05:07','02f0c0ad-2c6c-4aa9-8a0a-ac4e782508b4'),(121106,85,142755,NULL,17970,5,'2022-10-18 04:05:07','2022-10-18 04:05:07','213f9fbf-e412-4b4d-8fcb-727c64c53642'),(121107,85,142755,NULL,17971,6,'2022-10-18 04:05:07','2022-10-18 04:05:07','d248b306-1fb4-478f-9f92-e3f9774e8dc7'),(121108,84,142755,NULL,18057,1,'2022-10-18 04:05:07','2022-10-18 04:05:07','e5dc87ad-8461-4e9f-aefe-0de48b79172f'),(121109,198,142755,NULL,16824,1,'2022-10-18 04:05:07','2022-10-18 04:05:07','4ebd9420-f50c-44dc-909e-69198750b22b'),(121110,69,142756,NULL,18584,1,'2022-10-18 04:05:09','2022-10-18 04:05:09','f06b8c1b-166e-4cf9-ab49-ea59f233c2ac'),(121111,85,142756,NULL,17964,1,'2022-10-18 04:05:09','2022-10-18 04:05:09','ccb79ab3-cf1b-4f9a-ab2a-b89cc545c965'),(121112,85,142756,NULL,17965,2,'2022-10-18 04:05:09','2022-10-18 04:05:09','c4ddfcff-71e2-4423-9d2a-fe6933d7f88f'),(121113,85,142756,NULL,17966,3,'2022-10-18 04:05:09','2022-10-18 04:05:09','f1a7d6fb-9894-43e3-a7d8-ffad5a37aedc'),(121114,85,142756,NULL,17967,4,'2022-10-18 04:05:09','2022-10-18 04:05:09','109eec9c-45b1-44f4-9d21-eade75b29417'),(121115,85,142756,NULL,17968,5,'2022-10-18 04:05:09','2022-10-18 04:05:09','e9d5f938-6703-4fb6-9149-9a7b28aa5acd'),(121116,85,142756,NULL,17969,6,'2022-10-18 04:05:09','2022-10-18 04:05:09','49217052-2e4c-48ff-9407-42df2148839d'),(121117,85,142756,NULL,17970,7,'2022-10-18 04:05:09','2022-10-18 04:05:09','251f0635-d419-4b67-841e-b2b8cfa36b92'),(121118,85,142756,NULL,17971,8,'2022-10-18 04:05:09','2022-10-18 04:05:09','39128c29-75a9-482d-8683-0510ef7bfeec'),(121119,84,142756,NULL,18057,1,'2022-10-18 04:05:09','2022-10-18 04:05:09','963534d0-95df-430f-b825-9b0cd3251672'),(121120,84,142756,NULL,38160,2,'2022-10-18 04:05:09','2022-10-18 04:05:09','0557fc68-9b8d-47f5-8d40-f55c409e6285'),(121121,198,142756,NULL,18584,1,'2022-10-18 04:05:09','2022-10-18 04:05:09','93017198-1957-4b04-bc99-8d506942b3b6'),(121125,184,142758,NULL,141538,1,'2022-10-18 22:57:54','2022-10-18 22:57:54','3e145990-b432-4e9b-bb1e-4eece5e23830'),(121126,69,142758,NULL,141535,1,'2022-10-18 22:57:54','2022-10-18 22:57:54','5ba5e590-449a-4c90-a7e1-87eea217585a'),(121127,198,142758,NULL,141535,1,'2022-10-18 22:57:54','2022-10-18 22:57:54','b3207a2e-d395-493b-991c-979fddcba5fc'),(121130,69,142760,NULL,142564,1,'2022-10-18 23:19:48','2022-10-18 23:19:48','9a2409cd-aa87-4d09-be1f-dc300c7300a1'),(121131,198,142760,NULL,142566,1,'2022-10-18 23:19:48','2022-10-18 23:19:48','a83b5377-e715-4988-af71-df369ccfb599'),(121134,69,142762,NULL,142564,1,'2022-10-18 23:24:16','2022-10-18 23:24:16','dd0e62dc-95b4-4984-a591-8a9b07c27a96'),(121135,198,142762,NULL,142566,1,'2022-10-18 23:24:16','2022-10-18 23:24:16','ed75f676-ab67-46c7-8a40-6a2988fd9b05'),(121138,69,142765,NULL,142564,1,'2022-10-18 23:38:11','2022-10-18 23:38:11','f518654b-ff42-42e5-b00e-86c36fddd684'),(121139,198,142765,NULL,142566,1,'2022-10-18 23:38:11','2022-10-18 23:38:11','64ac40c0-e91b-428e-9041-f419ca681aa0'),(121142,69,142767,NULL,142564,1,'2022-10-18 23:39:41','2022-10-18 23:39:41','dfcc6e3a-53cb-4d4c-9736-cc47cb207175'),(121143,198,142767,NULL,142566,1,'2022-10-18 23:39:41','2022-10-18 23:39:41','9b722465-0052-4fd9-924a-28ee1144af13'),(121146,69,142769,NULL,142564,1,'2022-10-18 23:40:20','2022-10-18 23:40:20','4dad8412-e48e-406a-843a-3c6ddfd2bf5e'),(121147,198,142769,NULL,142566,1,'2022-10-18 23:40:20','2022-10-18 23:40:20','ff43d64f-df27-486d-b7ee-3d8847774fcd'),(121150,69,142771,NULL,142564,1,'2022-10-19 03:57:14','2022-10-19 03:57:14','a60a1df5-afed-428a-8c39-284ab8056d08'),(121151,198,142771,NULL,142566,1,'2022-10-19 03:57:14','2022-10-19 03:57:14','642eb850-d874-4a89-88d1-9794ed77b135'),(121155,184,142773,NULL,141538,1,'2022-10-19 03:57:28','2022-10-19 03:57:28','4d1a7f42-e1c6-476f-87c5-5d9e6b31eaa4'),(121156,69,142773,NULL,141535,1,'2022-10-19 03:57:28','2022-10-19 03:57:28','5139df71-850f-4151-af01-810895fd16a1'),(121157,198,142773,NULL,141535,1,'2022-10-19 03:57:28','2022-10-19 03:57:28','79da6fcd-166e-4153-b349-20418b81da66'),(121166,184,142717,NULL,142776,1,'2022-10-20 00:46:10','2022-10-20 00:46:10','c2e6dfab-1e43-4c75-b597-3dd0f1c969a8'),(121167,198,142717,NULL,142777,1,'2022-10-20 00:46:10','2022-10-20 00:46:10','cc944536-e871-4263-8aff-c5123f7c3efc'),(121168,184,142778,NULL,142776,1,'2022-10-20 00:46:10','2022-10-20 00:46:10','6528cb0c-47bf-4bd0-9a41-aac90284b4d1'),(121169,85,142778,NULL,17964,1,'2022-10-20 00:46:10','2022-10-20 00:46:10','5665a1bd-12fd-488c-a689-e43856c01dc9'),(121170,85,142778,NULL,17965,2,'2022-10-20 00:46:10','2022-10-20 00:46:10','da6292c4-32b2-49b5-bde9-3ea132244a11'),(121171,85,142778,NULL,17966,3,'2022-10-20 00:46:10','2022-10-20 00:46:10','75593cc6-875d-4865-b109-c1cbd6fc517c'),(121172,198,142778,NULL,142777,1,'2022-10-20 00:46:10','2022-10-20 00:46:10','e12c82fe-ca9a-4560-9052-35bd2f9ec0d9'),(121173,184,142779,NULL,142776,1,'2022-10-20 00:46:16','2022-10-20 00:46:16','2c74ab96-2d5a-4556-9eaa-d7398d2ca00f'),(121174,85,142779,NULL,17964,1,'2022-10-20 00:46:16','2022-10-20 00:46:16','a6ffe06b-69ba-45a8-b12d-ca14017684ff'),(121175,85,142779,NULL,17965,2,'2022-10-20 00:46:16','2022-10-20 00:46:16','110abf8b-a737-441f-ba5c-8a79475efa6e'),(121176,85,142779,NULL,17966,3,'2022-10-20 00:46:16','2022-10-20 00:46:16','aeb18a90-908c-4edf-9eb5-89ab6fc7d1b7'),(121177,198,142779,NULL,142777,1,'2022-10-20 00:46:16','2022-10-20 00:46:16','71eae72b-289b-4d42-bf79-7ae4491da991'),(121178,69,142779,NULL,142776,1,'2022-10-20 00:46:39','2022-10-20 00:46:39','6bffa99a-f682-439d-a2b6-aaf4a5bd965e'),(121179,69,142780,NULL,142252,1,'2022-10-20 04:36:59','2022-10-20 04:36:59','64279493-8347-431b-9241-f2f53016908e'),(121181,198,142784,NULL,94211,1,'2022-10-21 03:32:12','2022-10-21 03:32:12','8b521762-b88e-4e30-8f0b-fda1aa92cedf'),(121183,198,142786,NULL,94211,1,'2022-10-21 03:47:31','2022-10-21 03:47:31','847e14a0-f788-4896-9726-8805f31069e4'),(121184,198,142787,NULL,94211,1,'2022-10-21 03:56:40','2022-10-21 03:56:40','4e1e823f-92e9-4c89-9a47-93c80b3ab2ba'),(121185,198,142788,NULL,94211,1,'2022-10-21 03:56:53','2022-10-21 03:56:53','525abb78-2e68-4675-a06a-4450932b78bd'),(121186,198,142789,NULL,94211,1,'2022-10-21 03:57:13','2022-10-21 03:57:13','2bae5f98-becd-4ee6-a5f6-f999b546b484'),(121187,198,142790,NULL,94211,1,'2022-10-21 04:05:41','2022-10-21 04:05:41','250f6743-9120-428b-8bc8-bc1883fcb737'),(121189,198,142792,NULL,94211,1,'2022-10-21 04:10:06','2022-10-21 04:10:06','4d346d80-13b0-46fd-9fb5-2e0c330e9694'),(121191,198,142794,NULL,94211,1,'2022-10-21 04:10:41','2022-10-21 04:10:41','41f88a51-d914-4150-81a2-ca808d602385'),(121193,198,142796,NULL,94211,1,'2022-10-21 04:18:21','2022-10-21 04:18:21','85ad7016-f36e-4f6a-985c-5a1c22798105'),(121199,85,142799,NULL,17965,1,'2022-10-21 05:20:56','2022-10-21 05:20:56','3a41061b-1031-4a59-829a-7220070afabf'),(121200,85,142799,NULL,17971,2,'2022-10-21 05:20:56','2022-10-21 05:20:56','bdef5444-110f-47ab-bca6-dc9639fa0c67'),(121203,69,142801,NULL,142802,1,'2022-10-21 06:40:35','2022-10-21 06:40:35','4bfdcec5-136a-445b-953f-44840df7edf3'),(121204,69,142803,NULL,142802,1,'2022-10-21 07:19:36','2022-10-21 07:19:36','00d6511a-9f8c-4fc8-8e54-d72e2d1e4e02'),(121205,85,142804,NULL,17965,1,'2022-10-23 22:57:26','2022-10-23 22:57:26','eaca8d92-b86f-42d3-8198-b4931cc490fb'),(121206,85,142804,NULL,17971,2,'2022-10-23 22:57:26','2022-10-23 22:57:26','dca2e5e3-ebaf-4df4-9918-f1a7a75def46'),(121207,184,142805,NULL,141538,1,'2022-10-23 23:00:20','2022-10-23 23:00:20','d1db3267-ba1e-4bc8-ab30-596aada8f087'),(121208,69,142805,NULL,141535,1,'2022-10-23 23:00:20','2022-10-23 23:00:20','78d106cc-c0b2-4ec4-9aa6-fca2fcb87ab6'),(121209,198,142805,NULL,141535,1,'2022-10-23 23:00:20','2022-10-23 23:00:20','0b630bcc-1edc-47f0-afb9-85345616501f'),(121212,69,142258,NULL,142807,1,'2022-10-23 23:50:15','2022-10-23 23:50:15','a6824b9e-bd8e-40a2-9634-57ee5accdfa7'),(121213,69,142808,NULL,142807,1,'2022-10-23 23:50:15','2022-10-23 23:50:15','cdf1efb1-2aae-4669-b854-19f664714472'),(121215,69,142811,NULL,142807,1,'2022-10-23 23:55:08','2022-10-23 23:55:08','aeda3750-b2f2-43a9-8893-b121bd3ede70'),(121217,69,142814,NULL,142807,1,'2022-10-23 23:58:00','2022-10-23 23:58:00','739b3648-0f98-4775-9dff-1b56a89c0102'),(121219,69,142817,NULL,142807,1,'2022-10-24 00:00:09','2022-10-24 00:00:09','4d517049-c26c-43aa-a61b-0161e907a77a'),(121224,69,142820,NULL,142819,1,'2022-10-24 00:25:59','2022-10-24 00:25:59','4698ded0-ccc3-49ed-a133-56d25b574508'),(121230,69,142826,NULL,142564,1,'2022-10-24 01:32:43','2022-10-24 01:32:43','cf32d0f6-3b3c-4a23-b850-bef37253a8e8'),(121231,198,142826,NULL,142566,1,'2022-10-24 01:32:43','2022-10-24 01:32:43','ab853bc9-6f74-4b3b-9179-cc7bc146c476'),(121234,69,142828,NULL,142564,1,'2022-10-24 01:33:05','2022-10-24 01:33:05','a29600cf-c653-4c65-b8b8-0565c7176e9f'),(121235,198,142828,NULL,142566,1,'2022-10-24 01:33:05','2022-10-24 01:33:05','8b72f423-ef98-49fa-b836-b6bfb7417626'),(121240,184,17692,NULL,142831,1,'2022-10-24 06:46:27','2022-10-24 06:46:27','186bd68a-40a3-48bf-b290-7e4a1fff2aa5'),(121241,69,17692,NULL,142830,1,'2022-10-24 06:46:27','2022-10-24 06:46:27','423e0221-f2c9-42b7-b14e-f5d9ab7dd95d'),(121242,184,142832,NULL,142831,1,'2022-10-24 06:46:27','2022-10-24 06:46:27','e5814942-48f5-455a-b291-613d53e65ac1'),(121243,69,142832,NULL,142830,1,'2022-10-24 06:46:27','2022-10-24 06:46:27','458c447b-8432-4a4b-b4f0-693b196f05f8'),(121244,69,142833,NULL,142838,1,'2022-10-25 03:29:25','2022-10-25 03:29:25','a95d4257-bdd1-4a1e-ad9c-8edefe0bd868'),(121245,69,142839,NULL,142838,1,'2022-10-25 03:29:29','2022-10-25 03:29:29','ad901752-a230-484f-abe2-03f7e2eee682'),(121246,69,142840,NULL,142838,1,'2022-10-25 03:33:47','2022-10-25 03:33:47','5c517e33-24fd-439a-9503-a14dc6b3bd5d'),(121247,69,142841,NULL,142564,1,'2022-10-25 03:43:56','2022-10-25 03:43:56','a14cc6ef-5823-405c-aa48-78023219ae13'),(121248,198,142841,NULL,142566,1,'2022-10-25 03:43:56','2022-10-25 03:43:56','56f0d0d8-1b73-4e00-a8fa-ce87ec7b1418'),(121249,184,142844,NULL,142831,1,'2022-10-25 22:47:48','2022-10-25 22:47:48','5211a64b-566f-4903-8374-6cb78f52838e'),(121250,69,142844,NULL,142830,1,'2022-10-25 22:47:48','2022-10-25 22:47:48','bb888e63-5b6a-4c8a-bdaf-46e96b9b7214'),(121254,184,142846,NULL,141538,1,'2022-10-25 22:49:49','2022-10-25 22:49:49','43901085-f5e2-4f91-842c-a452bb9b426d'),(121255,69,142846,NULL,141535,1,'2022-10-25 22:49:49','2022-10-25 22:49:49','835e20f9-2465-4d93-8f68-03998e576c3b'),(121256,198,142846,NULL,141535,1,'2022-10-25 22:49:49','2022-10-25 22:49:49','0f2842a4-80bb-4e39-aed2-f3d678a57334'),(121258,69,142873,NULL,142807,1,'2022-10-27 04:16:32','2022-10-27 04:16:32','90864ead-dfea-4b40-b617-9460e84434f3'),(121267,184,142847,NULL,142876,1,'2022-11-03 05:32:10','2022-11-03 05:32:10','5629b1a2-f95d-4b26-b2f9-c9c1ee1e9c23'),(121268,69,142847,NULL,142877,1,'2022-11-03 05:32:10','2022-11-03 05:32:10','e348b473-7546-4389-88e2-6e498fb1d70a'),(121269,184,142878,NULL,142876,1,'2022-11-03 05:32:10','2022-11-03 05:32:10','9187d6a0-b1e4-4470-8623-ef125f96adfc'),(121270,69,142878,NULL,142877,1,'2022-11-03 05:32:10','2022-11-03 05:32:10','14c8140d-0cc1-4796-a6d3-4569e535b8ed'),(121273,184,142880,NULL,142876,1,'2022-11-03 05:32:42','2022-11-03 05:32:42','45ed1892-8af3-4292-87cd-32f599d5f7af'),(121274,69,142880,NULL,142877,1,'2022-11-03 05:32:42','2022-11-03 05:32:42','d2f22551-8e56-41db-b9d2-c34f84505eb5'),(121278,198,142847,NULL,142876,1,'2022-11-03 05:33:05','2022-11-03 05:33:05','4c0b95a1-f157-4277-acb3-72a719f18ffe'),(121279,184,142882,NULL,142876,1,'2022-11-03 05:33:05','2022-11-03 05:33:05','13820599-44d4-4150-b5df-af61c24796bc'),(121280,69,142882,NULL,142877,1,'2022-11-03 05:33:05','2022-11-03 05:33:05','8965d03b-7861-4e88-8a74-ddcd193cebc0'),(121281,198,142882,NULL,142876,1,'2022-11-03 05:33:05','2022-11-03 05:33:05','0846e39e-707b-4ce9-8795-8efb1a4bb18f'),(121282,184,142883,NULL,142876,1,'2022-11-03 05:33:11','2022-11-03 05:33:11','09084292-3a2e-4298-9ab7-9c37b50cfe75'),(121283,69,142883,NULL,142877,1,'2022-11-03 05:33:11','2022-11-03 05:33:11','c29ba51e-12c4-4ffb-8101-62dde7053103'),(121284,198,142883,NULL,142876,1,'2022-11-03 05:33:11','2022-11-03 05:33:11','0d54f7d2-10ad-4807-9a5c-31873d97570f'),(121291,184,142886,NULL,142876,1,'2022-11-03 05:49:19','2022-11-03 05:49:19','e18875e5-ea60-47db-aa18-fd4a4998877d'),(121292,69,142886,NULL,142877,1,'2022-11-03 05:49:19','2022-11-03 05:49:19','36eaf992-13e3-419e-9c6f-f9e38a16340a'),(121293,198,142886,NULL,142876,1,'2022-11-03 05:49:19','2022-11-03 05:49:19','b9608e2f-f8a6-4324-8d89-9b0e12e59e75'),(121297,184,142889,NULL,142876,1,'2022-11-03 05:52:24','2022-11-03 05:52:24','4dc5dd03-4e78-476d-8989-2a9d8db7f511'),(121298,69,142889,NULL,142877,1,'2022-11-03 05:52:24','2022-11-03 05:52:24','4b8c8660-9738-4679-9a1b-bc2b0069be1a'),(121299,198,142889,NULL,142876,1,'2022-11-03 05:52:24','2022-11-03 05:52:24','31fbf579-c410-42b6-9d0a-fc8ef85c394d'),(121303,184,142891,NULL,142876,1,'2022-11-03 05:52:48','2022-11-03 05:52:48','9ab53920-f942-4272-a8b2-d68605f6c6bf'),(121304,69,142891,NULL,142877,1,'2022-11-03 05:52:48','2022-11-03 05:52:48','b328414e-490c-49eb-9ee6-d1e417f147cc'),(121305,198,142891,NULL,142876,1,'2022-11-03 05:52:48','2022-11-03 05:52:48','69b690b1-f971-4401-b437-3a93c0afb94f'),(121306,184,142892,NULL,142876,1,'2022-11-04 03:52:23','2022-11-04 03:52:23','faec06f2-7f3e-4779-a8aa-ef704dcc27d3'),(121307,69,142892,NULL,142877,1,'2022-11-04 03:52:23','2022-11-04 03:52:23','db7adbab-6536-4f6f-bca0-4ea22388611b'),(121308,198,142892,NULL,142876,1,'2022-11-04 03:52:23','2022-11-04 03:52:23','1478cf74-bac5-4f8b-9420-82581ac7ccff'),(121312,184,142894,NULL,142876,1,'2022-11-04 03:53:18','2022-11-04 03:53:18','07909e74-bccf-41b9-864c-ef0ac4201409'),(121313,69,142894,NULL,142877,1,'2022-11-04 03:53:18','2022-11-04 03:53:18','8ca3ff85-6568-4031-89bb-ca38be04fbbc'),(121314,198,142894,NULL,142876,1,'2022-11-04 03:53:18','2022-11-04 03:53:18','6022323a-a358-4b12-9dde-9d6a61acd699'),(121316,69,142896,NULL,142802,1,'2022-11-04 04:01:06','2022-11-04 04:01:06','f8b52392-75ba-4ddc-a9bf-6b644b984d40'),(121320,184,142898,NULL,142876,1,'2022-11-04 04:05:05','2022-11-04 04:05:05','33e6a7f7-7514-42bb-9eae-9c9d683d7b9a'),(121321,69,142898,NULL,142877,1,'2022-11-04 04:05:05','2022-11-04 04:05:05','afe1ad49-f6a9-4bfd-b89c-5930f831ec20'),(121322,198,142898,NULL,142876,1,'2022-11-04 04:05:05','2022-11-04 04:05:05','f7395b6a-75e5-4326-9e0a-b6b0def7f003'),(121323,184,142899,NULL,142876,1,'2022-11-04 04:08:35','2022-11-04 04:08:35','e2c371ad-a56a-4569-8a55-7d48506efcbc'),(121324,69,142899,NULL,142877,1,'2022-11-04 04:08:35','2022-11-04 04:08:35','6984ddeb-d4b1-46e7-b0e5-ee2cc38375eb'),(121325,198,142899,NULL,142876,1,'2022-11-04 04:08:35','2022-11-04 04:08:35','41ca740e-59af-4365-9cfd-15aac01df7d0'),(121326,184,142900,NULL,142876,1,'2022-11-04 04:08:42','2022-11-04 04:08:42','b522eac2-a83c-4426-9e1c-3146160fb976'),(121327,69,142900,NULL,142877,1,'2022-11-04 04:08:42','2022-11-04 04:08:42','0189d16e-1221-4dd4-8373-f31787e3e500'),(121328,198,142900,NULL,142876,1,'2022-11-04 04:08:42','2022-11-04 04:08:42','3de82c41-b8d4-40d3-acb8-0f22e19ae2ca'),(121332,184,142908,NULL,141538,1,'2022-11-07 05:01:35','2022-11-07 05:01:35','3e263869-5ab7-4ca5-8a5b-bc07445f14d3'),(121333,69,142908,NULL,141535,1,'2022-11-07 05:01:35','2022-11-07 05:01:35','7d7a603f-3295-4a11-bb9e-50bfdef0dcb3'),(121334,198,142908,NULL,141535,1,'2022-11-07 05:01:35','2022-11-07 05:01:35','8c40ca75-84c2-4d2d-a6d7-3b78e973eff1'),(121338,184,142910,NULL,141538,1,'2022-11-07 05:01:52','2022-11-07 05:01:52','d536a2dc-5c95-40dd-b607-3ae3d2636700'),(121339,69,142910,NULL,141535,1,'2022-11-07 05:01:52','2022-11-07 05:01:52','6c190c33-d104-41e3-9cb7-742b9f79b3f0'),(121340,198,142910,NULL,141535,1,'2022-11-07 05:01:52','2022-11-07 05:01:52','a59c4207-59f0-4983-9450-c8124c17344a'),(121342,69,142901,NULL,142911,1,'2022-11-07 05:06:23','2022-11-07 05:06:23','dd70176f-74d3-4506-80c3-a8456f3611f1'),(121343,69,142913,NULL,142911,1,'2022-11-07 05:06:23','2022-11-07 05:06:23','1caa5ee9-c9d6-4922-a35f-6833df5346f6'),(121344,69,142914,NULL,142911,1,'2022-11-07 05:18:15','2022-11-07 05:18:15','b6f77a70-f073-4955-8ffe-ebb11eeb5bd2'),(121348,184,142916,NULL,141538,1,'2022-11-07 05:22:37','2022-11-07 05:22:37','934f9574-12fa-4d60-be61-8338e8cf0362'),(121349,69,142916,NULL,141535,1,'2022-11-07 05:22:37','2022-11-07 05:22:37','e65cd258-6faf-4998-822b-5141517f1127'),(121350,198,142916,NULL,141535,1,'2022-11-07 05:22:37','2022-11-07 05:22:37','2ede3340-0e54-4391-b11f-823ad397df0f'),(121351,184,142917,NULL,141538,1,'2022-11-07 05:23:32','2022-11-07 05:23:32','028bf1ea-12f7-48a1-bb3f-bb1c80275b28'),(121352,69,142917,NULL,141535,1,'2022-11-07 05:23:32','2022-11-07 05:23:32','b87dc1d6-ba49-487b-9528-b05e47e47d69'),(121353,198,142917,NULL,141535,1,'2022-11-07 05:23:32','2022-11-07 05:23:32','d4ac6181-f563-440f-982a-3f4b7db948e7'),(121357,184,142919,NULL,141538,1,'2022-11-07 05:23:50','2022-11-07 05:23:50','d2d29765-4372-41b3-ad49-c5c3f8af3641'),(121358,69,142919,NULL,141535,1,'2022-11-07 05:23:50','2022-11-07 05:23:50','4b91ff9a-1113-442b-aeea-c49650daadb0'),(121359,198,142919,NULL,141535,1,'2022-11-07 05:23:50','2022-11-07 05:23:50','dbd6de3f-75e8-45c5-8692-496ed497872a'),(121363,184,142921,NULL,141538,1,'2022-11-07 05:24:05','2022-11-07 05:24:05','0b080ada-3c18-4ffc-a2ca-41f06d724e91'),(121364,69,142921,NULL,141535,1,'2022-11-07 05:24:05','2022-11-07 05:24:05','8b881c4a-f532-4d30-80bf-903a43cec8d5'),(121365,198,142921,NULL,141535,1,'2022-11-07 05:24:05','2022-11-07 05:24:05','61ea2421-6160-4490-8276-f92f72129ee8'),(121369,184,142923,NULL,142876,1,'2022-11-08 02:58:40','2022-11-08 02:58:40','a7634e1c-8b0c-44e2-8414-c8456e44f352'),(121370,69,142923,NULL,142877,1,'2022-11-08 02:58:40','2022-11-08 02:58:40','ea19b3e2-9ced-44d2-af0a-649e65c08f1e'),(121371,198,142923,NULL,142876,1,'2022-11-08 02:58:40','2022-11-08 02:58:40','0e876736-7630-4f9f-a536-adafb8b6cfed'),(121375,184,142931,NULL,141538,1,'2022-11-10 00:21:24','2022-11-10 00:21:24','8c9e95dd-4c33-4bd2-9e4c-fdd2da7095b6'),(121376,69,142931,NULL,141535,1,'2022-11-10 00:21:24','2022-11-10 00:21:24','378f10d5-e37a-40c7-8591-2ece203e9343'),(121377,198,142931,NULL,141535,1,'2022-11-10 00:21:24','2022-11-10 00:21:24','c7964dc0-8475-43a5-a44d-c2be0f2b5fa8'),(121381,184,142933,NULL,141538,1,'2022-11-10 00:21:46','2022-11-10 00:21:46','adb1612e-6c87-41de-b884-e409d0b11941'),(121382,69,142933,NULL,141535,1,'2022-11-10 00:21:46','2022-11-10 00:21:46','f34bbd25-e353-4c34-ac41-f8c7215e989d'),(121383,198,142933,NULL,141535,1,'2022-11-10 00:21:46','2022-11-10 00:21:46','1292ffa4-5efa-402e-952b-13e8f59c383a'),(121387,184,142936,NULL,141538,1,'2022-11-11 00:38:25','2022-11-11 00:38:25','86fbbee2-e9bd-413a-8a77-4a526bfa3efb'),(121388,69,142936,NULL,141535,1,'2022-11-11 00:38:25','2022-11-11 00:38:25','41eda808-8818-432f-b71c-fc849e71d702'),(121389,198,142936,NULL,141535,1,'2022-11-11 00:38:25','2022-11-11 00:38:25','3aeef50b-9112-434e-9ccd-de14482f1336'),(121396,184,142940,NULL,141538,1,'2022-11-11 00:41:23','2022-11-11 00:41:23','0e463a30-90b9-44a1-a12e-1816ad185050'),(121397,69,142940,NULL,141535,1,'2022-11-11 00:41:23','2022-11-11 00:41:23','34f8140c-aa4c-409c-adc4-ec52894c1b28'),(121398,198,142940,NULL,141535,1,'2022-11-11 00:41:23','2022-11-11 00:41:23','f13d5b3a-d86d-4bda-921a-687b90e72f3c'),(121402,184,142942,NULL,141538,1,'2022-11-11 00:43:21','2022-11-11 00:43:21','a74aa4bb-8a30-42ed-92ee-857904583a58'),(121403,69,142942,NULL,141535,1,'2022-11-11 00:43:21','2022-11-11 00:43:21','38a5c1f0-2bfc-4842-9094-9b25d1e776f6'),(121404,198,142942,NULL,141535,1,'2022-11-11 00:43:21','2022-11-11 00:43:21','1dcd75c6-c14b-482a-9338-7d13ebf1994e'),(121407,69,142954,NULL,142564,1,'2022-11-15 05:38:30','2022-11-15 05:38:30','cace1997-e3eb-4a4a-ad52-b665419f31d3'),(121408,198,142954,NULL,142566,1,'2022-11-15 05:38:30','2022-11-15 05:38:30','1fa63448-53d1-43ca-84fb-49cc670a5c40'),(121414,198,142901,NULL,142911,1,'2022-11-16 03:44:31','2022-11-16 03:44:31','f2ee97c9-8e92-4827-ae85-956de4ddddea'),(121415,69,142957,NULL,142911,1,'2022-11-16 03:44:31','2022-11-16 03:44:31','c8598ddf-f5f8-438e-9057-26ede7c54079'),(121416,198,142957,NULL,142911,1,'2022-11-16 03:44:31','2022-11-16 03:44:31','b2ff6897-78b6-454d-80bf-6e5294aed3ab'),(121417,184,142958,NULL,142876,1,'2022-11-16 03:48:54','2022-11-16 03:48:54','1e6803b1-ad99-40dc-96ca-bcaaf092a709'),(121418,69,142958,NULL,142877,1,'2022-11-16 03:48:54','2022-11-16 03:48:54','acd2528b-7d68-43d1-9e20-5b915e374acf'),(121419,198,142958,NULL,142876,1,'2022-11-16 03:48:54','2022-11-16 03:48:54','085caa5e-aeaa-44a3-b8d9-da8fe88d940f'),(121422,69,142960,NULL,142911,1,'2022-11-16 22:13:39','2022-11-16 22:13:39','f9dd4dd0-ce94-4be3-8247-8bb5a791636f'),(121423,198,142960,NULL,142911,1,'2022-11-16 22:13:39','2022-11-16 22:13:39','19b5a6ad-1f54-4b78-838c-4e9d7461e3e3'),(121426,69,142962,NULL,142911,1,'2022-11-16 22:15:23','2022-11-16 22:15:23','86120c3c-5e47-41c9-b93c-f0356e537198'),(121427,198,142962,NULL,142911,1,'2022-11-16 22:15:23','2022-11-16 22:15:23','631b2f51-a05f-41eb-bdcf-11e1f192c436'),(121431,198,142258,NULL,142807,1,'2022-11-16 22:16:13','2022-11-16 22:16:13','d535a9cf-b14d-47bb-9726-0b5ce3fddcc8'),(121432,69,142964,NULL,142807,1,'2022-11-16 22:16:13','2022-11-16 22:16:13','72881056-d6a1-4d7c-8b1c-6772170f668a'),(121433,198,142964,NULL,142807,1,'2022-11-16 22:16:13','2022-11-16 22:16:13','3095e8ef-a725-427f-b00e-bec15c8a3f61'),(121436,198,142676,NULL,142252,1,'2022-11-16 22:16:43','2022-11-16 22:16:43','4c744dcc-aa13-4825-8db7-c28d04f954ae'),(121437,69,142966,NULL,142252,1,'2022-11-16 22:16:43','2022-11-16 22:16:43','72624456-7c9a-4fd6-87c1-013d204731bc'),(121438,198,142966,NULL,142252,1,'2022-11-16 22:16:43','2022-11-16 22:16:43','ea616443-5e47-44fc-b457-6bee8f9ba4ac'),(121439,79,142967,NULL,17875,1,'2022-11-16 22:16:59','2022-11-16 22:16:59','5c7d9280-9306-4ab9-8d51-4300c50eba03'),(121440,79,142967,NULL,17934,2,'2022-11-16 22:16:59','2022-11-16 22:16:59','5d94ef4a-e89c-4c14-b1b3-c723c35b37b4'),(121441,79,142967,NULL,17941,3,'2022-11-16 22:16:59','2022-11-16 22:16:59','58be786e-de2b-4c7b-8a97-89a5eddc6e4c'),(121442,79,142967,NULL,97259,4,'2022-11-16 22:16:59','2022-11-16 22:16:59','56867843-5171-47d4-96fc-0d8ebb52d007'),(121443,79,142967,NULL,17954,5,'2022-11-16 22:16:59','2022-11-16 22:16:59','accdd99d-aaab-4e97-a16d-8b51228b3d04'),(121444,79,142967,NULL,17956,6,'2022-11-16 22:16:59','2022-11-16 22:16:59','203b6263-27ec-472d-a90b-e356f37d8c7f'),(121445,79,142967,NULL,17996,7,'2022-11-16 22:16:59','2022-11-16 22:16:59','5b1ee6b9-18e6-421d-9e5e-7919db409627'),(121446,69,142967,NULL,141945,1,'2022-11-16 22:16:59','2022-11-16 22:16:59','2efbefe8-7a28-4e54-811d-75633db2e4c8'),(121447,198,142967,NULL,141998,1,'2022-11-16 22:16:59','2022-11-16 22:16:59','aac95737-f3e5-4b83-b8a7-477411a43160'),(121448,79,142968,NULL,17875,1,'2022-11-16 22:17:08','2022-11-16 22:17:08','6f93eecf-cfeb-4af3-af87-255e5ce0b351'),(121449,79,142968,NULL,17934,2,'2022-11-16 22:17:08','2022-11-16 22:17:08','11df14ca-2b95-4b29-a6bf-f889f1d1e9f2'),(121450,69,142968,NULL,141742,1,'2022-11-16 22:17:08','2022-11-16 22:17:08','d2d402c3-557c-4829-97f2-fe783544997a'),(121451,85,142968,NULL,17964,1,'2022-11-16 22:17:08','2022-11-16 22:17:08','d967f0ac-8707-4f4f-91c1-baa47fbfa2a0'),(121452,85,142968,NULL,17966,2,'2022-11-16 22:17:08','2022-11-16 22:17:08','a914b34c-74db-4e87-8b36-4440a1b95434'),(121453,85,142968,NULL,17967,3,'2022-11-16 22:17:08','2022-11-16 22:17:08','1c50775f-8584-43f0-b44d-9553de607d5f'),(121454,84,142968,NULL,38160,1,'2022-11-16 22:17:08','2022-11-16 22:17:08','bd9a802a-ae80-4694-b61d-87dc5a8faee3'),(121455,198,142968,NULL,141758,1,'2022-11-16 22:17:08','2022-11-16 22:17:08','a906c7f5-36fe-4426-a4cf-7f38784858c3'),(121458,198,142833,NULL,142838,1,'2022-11-16 22:18:05','2022-11-16 22:18:05','bf0e273e-20c1-4e50-99b6-6b1e3cf06c91'),(121459,69,142972,NULL,142838,1,'2022-11-16 22:18:05','2022-11-16 22:18:05','fb27ae20-61ce-4848-8a6b-e8f18ad80d8f'),(121460,198,142972,NULL,142838,1,'2022-11-16 22:18:05','2022-11-16 22:18:05','4d5a3a9c-4e71-48d3-af34-5ec5565de661'),(121461,69,142973,NULL,142911,1,'2022-11-16 22:18:54','2022-11-16 22:18:54','1ef229bc-38d6-4843-83e7-674707e8b893'),(121462,198,142973,NULL,142911,1,'2022-11-16 22:18:54','2022-11-16 22:18:54','f04b4be5-6de3-4840-b30f-45e5b277e37f'),(121463,184,142974,NULL,141538,1,'2022-11-16 22:27:09','2022-11-16 22:27:09','c603370a-d85f-4618-b436-6a287918d747'),(121464,69,142974,NULL,141535,1,'2022-11-16 22:27:09','2022-11-16 22:27:09','ad0bdf10-20d0-45c9-afa1-be2c89f2f852'),(121465,198,142974,NULL,141535,1,'2022-11-16 22:27:09','2022-11-16 22:27:09','307506c1-f84d-461c-b19e-1baf248825bf'),(121469,184,142976,NULL,141538,1,'2022-11-16 22:27:43','2022-11-16 22:27:43','1465c333-5a68-4dd4-8b72-a669a7fbe271'),(121470,69,142976,NULL,141535,1,'2022-11-16 22:27:43','2022-11-16 22:27:43','3bde1ce7-a65d-403a-8d06-bccc95d68c44'),(121471,198,142976,NULL,141535,1,'2022-11-16 22:27:43','2022-11-16 22:27:43','59b13fdb-d438-4e8a-9465-007b0dbcbd04'),(121472,198,142840,NULL,142838,1,'2022-11-16 22:45:24','2022-11-16 22:45:24','4d6edc97-a5ae-4710-94c9-a140011bb6c4'),(121473,69,142977,NULL,142252,1,'2022-11-16 23:52:10','2022-11-16 23:52:10','691296a2-13a6-4d54-846b-bff3ccb94d5a'),(121474,198,142977,NULL,142252,1,'2022-11-16 23:52:10','2022-11-16 23:52:10','be328335-53c2-4915-81d0-a0ce7167b5d6'),(121476,69,142979,NULL,142978,1,'2022-11-17 00:07:32','2022-11-17 00:07:32','e2ae9d17-d35d-4da0-90c2-edb36e60ccd9'),(121477,85,142979,NULL,17967,1,'2022-11-17 00:07:32','2022-11-17 00:07:32','2eab634f-14dc-452a-8c11-326f1316ad14'),(121478,85,142979,NULL,17968,2,'2022-11-17 00:07:32','2022-11-17 00:07:32','8bc83f8e-5c17-4147-bd89-091b28975845'),(121479,85,142979,NULL,17969,3,'2022-11-17 00:07:32','2022-11-17 00:07:32','16bb7dee-6379-4119-acc8-b6c761e59277'),(121480,85,142979,NULL,17971,4,'2022-11-17 00:07:32','2022-11-17 00:07:32','10348d2a-4f98-4656-a101-138a2ebc1b4e'),(121481,84,142979,NULL,18057,1,'2022-11-17 00:07:32','2022-11-17 00:07:32','5896fbb4-61a0-4a04-b7dd-635b879f3603'),(121482,84,142979,NULL,38157,2,'2022-11-17 00:07:32','2022-11-17 00:07:32','5b20540d-8502-4c6f-8c70-a1775eca3647'),(121499,69,142982,NULL,142978,1,'2022-11-17 00:10:40','2022-11-17 00:10:40','bb2bb385-135f-4507-95d2-7b3bdd8f7c44'),(121500,85,142982,NULL,17967,1,'2022-11-17 00:10:40','2022-11-17 00:10:40','b1129472-857b-4c76-92de-2540660b783c'),(121501,85,142982,NULL,17968,2,'2022-11-17 00:10:40','2022-11-17 00:10:40','7561e83d-ec00-4212-914a-9b42414887e2'),(121502,85,142982,NULL,17969,3,'2022-11-17 00:10:40','2022-11-17 00:10:40','7fbb3d32-7c7b-437f-89b6-ccb853d39317'),(121503,85,142982,NULL,17971,4,'2022-11-17 00:10:40','2022-11-17 00:10:40','0d8a3b98-1aa9-473d-a477-c97a791c206e'),(121504,84,142982,NULL,18057,1,'2022-11-17 00:10:40','2022-11-17 00:10:40','b62c84c4-2dea-4419-a47f-001e841ce959'),(121505,84,142982,NULL,38157,2,'2022-11-17 00:10:40','2022-11-17 00:10:40','cd214c02-603f-49d8-87a6-d3fae54cae7a'),(121506,198,142982,NULL,142978,1,'2022-11-17 00:10:40','2022-11-17 00:10:40','7d736abc-96c6-4b10-b2bd-b1be0ff8732c'),(121509,69,142986,NULL,142564,1,'2022-11-17 00:15:43','2022-11-17 00:15:43','f03c26d6-0b96-4188-afe9-0cae2e8621f7'),(121510,198,142986,NULL,142566,1,'2022-11-17 00:15:43','2022-11-17 00:15:43','23307138-275f-4c79-8eaf-7a769abdc779'),(121511,69,142987,NULL,142564,1,'2022-11-17 00:15:49','2022-11-17 00:15:49','8e0b3687-d5cb-4be5-9177-a048ab248e66'),(121512,198,142987,NULL,142566,1,'2022-11-17 00:15:49','2022-11-17 00:15:49','6fb25e48-00a5-4aff-8364-5eb48a8fa47c'),(121515,69,142989,NULL,142564,1,'2022-11-17 00:21:53','2022-11-17 00:21:53','a34f1d17-837a-4177-86a7-7c6993950304'),(121516,198,142989,NULL,142566,1,'2022-11-17 00:21:53','2022-11-17 00:21:53','e8be8000-69e1-4771-9cf2-e504c2b7dd5b'),(121518,69,142990,NULL,142978,1,'2022-11-17 04:05:50','2022-11-17 04:05:50','0bef0e7a-4db1-4c59-95f1-f211e81a0aad'),(121519,85,142990,NULL,17967,1,'2022-11-17 04:05:50','2022-11-17 04:05:50','e9134b68-7b1e-41bf-b821-7124826689b9'),(121520,85,142990,NULL,17968,2,'2022-11-17 04:05:50','2022-11-17 04:05:50','8f547ea1-c65a-4e27-92ef-d896f7e84e81'),(121521,85,142990,NULL,17969,3,'2022-11-17 04:05:50','2022-11-17 04:05:50','167a7fca-52ca-497a-b3b7-006bac58dcff'),(121522,85,142990,NULL,17971,4,'2022-11-17 04:05:50','2022-11-17 04:05:50','5ecdfa0b-93d2-498d-96e8-21a623cdee84'),(121523,84,142990,NULL,18057,1,'2022-11-17 04:05:50','2022-11-17 04:05:50','2041d651-9053-4f52-8c29-4e3eacee0923'),(121524,84,142990,NULL,38157,2,'2022-11-17 04:05:50','2022-11-17 04:05:50','481d6a30-22c1-47e2-b91c-cce269b75f8d'),(121525,198,142990,NULL,142978,1,'2022-11-17 04:05:50','2022-11-17 04:05:50','4b16879c-277b-4475-8624-0170f3de7983'),(121534,69,142992,NULL,142978,1,'2022-11-17 05:54:20','2022-11-17 05:54:20','6e2bf613-b10b-4aa7-8f78-3a0503663fd1'),(121535,85,142992,NULL,17967,1,'2022-11-17 05:54:20','2022-11-17 05:54:20','5afc45cf-a26e-462b-bbb8-557304f022ae'),(121536,85,142992,NULL,17968,2,'2022-11-17 05:54:20','2022-11-17 05:54:20','eef8a221-cd2f-4af3-bc39-e15c189d184e'),(121537,85,142992,NULL,17969,3,'2022-11-17 05:54:20','2022-11-17 05:54:20','4f35747d-ad4f-46e8-a7af-4a532016a551'),(121538,85,142992,NULL,17971,4,'2022-11-17 05:54:20','2022-11-17 05:54:20','484f1082-212b-4061-9feb-9c8ce0db1675'),(121539,84,142992,NULL,18057,1,'2022-11-17 05:54:20','2022-11-17 05:54:20','83d0c915-cbb8-4c7c-bb2b-cf58743ecaf2'),(121540,84,142992,NULL,38157,2,'2022-11-17 05:54:20','2022-11-17 05:54:20','dcfd0691-159b-4c9c-978d-a8b277d89c77'),(121541,198,142992,NULL,142978,1,'2022-11-17 05:54:20','2022-11-17 05:54:20','40579afd-726b-4496-ae26-288cf4b6361e'),(121544,69,143001,NULL,142911,1,'2022-11-18 06:02:24','2022-11-18 06:02:24','11e88ef7-6656-43ac-b42b-54ebbc1ac35e'),(121545,198,143001,NULL,142911,1,'2022-11-18 06:02:24','2022-11-18 06:02:24','db5545be-d022-4510-a849-3c93eca22696'),(121548,69,143004,NULL,142911,1,'2022-11-18 06:03:52','2022-11-18 06:03:52','73b7f270-331c-47c5-98b5-ac8003a467b2'),(121549,198,143004,NULL,142911,1,'2022-11-18 06:03:52','2022-11-18 06:03:52','3f8a51d8-1831-4c23-b806-53b3b00a12fc'),(121550,69,143005,NULL,142978,1,'2022-11-18 06:43:09','2022-11-18 06:43:09','8904004a-272b-4a57-8464-b2cd3829b375'),(121551,85,143005,NULL,17967,1,'2022-11-18 06:43:09','2022-11-18 06:43:09','fb9d8b16-5990-4cc1-b23a-e91c6d42169b'),(121552,85,143005,NULL,17968,2,'2022-11-18 06:43:09','2022-11-18 06:43:09','9ddf299b-f217-4733-bf56-4d7120607687'),(121553,85,143005,NULL,17969,3,'2022-11-18 06:43:09','2022-11-18 06:43:09','e2af1269-c030-4348-8ea1-133f6ef9d6a8'),(121554,85,143005,NULL,17971,4,'2022-11-18 06:43:09','2022-11-18 06:43:09','2343870a-aee1-4587-8554-1a9a2c5c1a38'),(121555,84,143005,NULL,18057,1,'2022-11-18 06:43:09','2022-11-18 06:43:09','6b812a37-d71e-493f-bf1e-90f18cd9f432'),(121556,84,143005,NULL,38157,2,'2022-11-18 06:43:09','2022-11-18 06:43:09','d2d23a40-3a24-4efc-a659-61349ca91838'),(121557,198,143005,NULL,142978,1,'2022-11-18 06:43:09','2022-11-18 06:43:09','edbbc63b-0582-44e0-bab2-bc27d5764a0b'),(121560,69,143007,NULL,142911,1,'2022-11-22 21:32:43','2022-11-22 21:32:43','be94356e-a7a7-448d-b7be-9239273c46f8'),(121561,198,143007,NULL,142911,1,'2022-11-22 21:32:43','2022-11-22 21:32:43','16b7bfe3-85e1-4bb4-8acc-98af821e805f'),(121564,69,143009,NULL,142911,1,'2022-11-22 21:32:49','2022-11-22 21:32:49','a35c636e-2665-4896-bfcb-d4d466e03214'),(121565,198,143009,NULL,142911,1,'2022-11-22 21:32:49','2022-11-22 21:32:49','64eae47c-89e6-447a-aa24-c8f68abf0797'),(121574,69,143011,NULL,142978,1,'2022-11-22 21:37:02','2022-11-22 21:37:02','ccf28803-7a44-4e42-9435-40740311f2aa'),(121575,85,143011,NULL,17967,1,'2022-11-22 21:37:02','2022-11-22 21:37:02','c359faf4-e281-475b-9d9c-7e80527453f4'),(121576,85,143011,NULL,17968,2,'2022-11-22 21:37:02','2022-11-22 21:37:02','5c82e9f2-73e6-4cf3-a002-1f06426e2699'),(121577,85,143011,NULL,17969,3,'2022-11-22 21:37:02','2022-11-22 21:37:02','779fc77f-7ec2-48e6-807d-cf4375d96531'),(121578,85,143011,NULL,17971,4,'2022-11-22 21:37:02','2022-11-22 21:37:02','2695635f-7cd5-4401-a73b-4a8d0f7e8d45'),(121579,84,143011,NULL,18057,1,'2022-11-22 21:37:02','2022-11-22 21:37:02','71af5d62-de73-4701-9075-46b486baec59'),(121580,84,143011,NULL,38157,2,'2022-11-22 21:37:02','2022-11-22 21:37:02','8801857f-6554-4aa2-87d9-997c8bfe9b71'),(121581,198,143011,NULL,142978,1,'2022-11-22 21:37:02','2022-11-22 21:37:02','489d8bb0-a23f-4059-9cb3-636d3115acd7'),(121590,69,143013,NULL,142978,1,'2022-11-22 21:38:15','2022-11-22 21:38:15','2c22f62b-8aed-45fe-9e3b-86f8d732f991'),(121591,85,143013,NULL,17967,1,'2022-11-22 21:38:15','2022-11-22 21:38:15','97ebecd6-df13-4682-866d-610e6f66f77e'),(121592,85,143013,NULL,17968,2,'2022-11-22 21:38:15','2022-11-22 21:38:15','10bfc369-1159-4bd6-8d1e-7672f20073a2'),(121593,85,143013,NULL,17969,3,'2022-11-22 21:38:15','2022-11-22 21:38:15','2fe143a8-a47b-491b-a81e-7c85dc9fc60e'),(121594,85,143013,NULL,17971,4,'2022-11-22 21:38:15','2022-11-22 21:38:15','55e6a8db-0a9a-4a65-8e3c-86032d1baf82'),(121595,84,143013,NULL,18057,1,'2022-11-22 21:38:15','2022-11-22 21:38:15','f21a7f0a-cd09-4113-bd6c-7d4250ae6142'),(121596,84,143013,NULL,38157,2,'2022-11-22 21:38:15','2022-11-22 21:38:15','f3810052-6dfc-41c0-860c-3b1e77fbebe1'),(121597,198,143013,NULL,142978,1,'2022-11-22 21:38:15','2022-11-22 21:38:15','3f367930-b4b6-4f83-9515-24cf145b506d'),(121601,184,143015,NULL,141538,1,'2022-11-22 21:40:46','2022-11-22 21:40:46','098daa21-e330-4ee2-aac2-22c1cbd45664'),(121602,69,143015,NULL,141535,1,'2022-11-22 21:40:46','2022-11-22 21:40:46','29eec2bc-b0d2-417f-83d9-444dd4cab886'),(121603,198,143015,NULL,141535,1,'2022-11-22 21:40:46','2022-11-22 21:40:46','5271eadd-19b0-433e-aed8-415da2b5f8e0'),(121604,79,143017,NULL,17875,1,'2022-11-25 04:38:45','2022-11-25 04:38:45','81c72b78-88e3-439b-a2ad-a29d4ea3fc35'),(121605,79,143017,NULL,17887,2,'2022-11-25 04:38:45','2022-11-25 04:38:45','147fb4f2-08aa-4c4c-9e35-94ab070fdc67'),(121606,79,143017,NULL,17899,3,'2022-11-25 04:38:45','2022-11-25 04:38:45','a9edc8a1-6903-4372-a76d-5321f6db3336'),(121607,79,143017,NULL,17934,4,'2022-11-25 04:38:45','2022-11-25 04:38:45','0c809bd6-7703-4d6c-aef0-8d159dc777c0'),(121608,79,143017,NULL,17941,5,'2022-11-25 04:38:45','2022-11-25 04:38:45','a6184bdb-a387-4bb0-a4be-0868de390d29'),(121609,79,143017,NULL,1,6,'2022-11-25 04:38:45','2022-11-25 04:38:45','bc6916e4-1fd4-4dae-b935-fd72ceeb8f6d'),(121610,79,143017,NULL,17956,7,'2022-11-25 04:38:45','2022-11-25 04:38:45','3806156d-0a5e-4d34-bb9d-e23ee9df2de5'),(121611,79,143017,NULL,17996,8,'2022-11-25 04:38:45','2022-11-25 04:38:45','e59b942b-fe5e-456c-858c-cfe3741a07db'),(121612,69,143017,NULL,61826,1,'2022-11-25 04:38:45','2022-11-25 04:38:45','ebc0ed9d-f9ac-4e6d-9b08-601eee5275df'),(121613,85,143017,NULL,17964,1,'2022-11-25 04:38:45','2022-11-25 04:38:45','0b661225-b86a-4bd1-8708-bd4e149ca778'),(121614,85,143017,NULL,17965,2,'2022-11-25 04:38:45','2022-11-25 04:38:45','c6471b78-4c2f-4c6d-9877-b3258e59c388'),(121615,85,143017,NULL,17966,3,'2022-11-25 04:38:45','2022-11-25 04:38:45','fc9ed4c9-4251-4783-82ba-577fa67a747f'),(121616,85,143017,NULL,17968,4,'2022-11-25 04:38:45','2022-11-25 04:38:45','e765c722-7203-42f7-b2a1-1eb02bd55e14'),(121617,85,143017,NULL,17969,5,'2022-11-25 04:38:45','2022-11-25 04:38:45','3ba4767a-28de-4db2-b20a-cd2ee4231487'),(121618,85,143017,NULL,17970,6,'2022-11-25 04:38:45','2022-11-25 04:38:45','a235c5f7-2f59-4be1-8b04-bca93ceba236'),(121619,85,143017,NULL,17971,7,'2022-11-25 04:38:45','2022-11-25 04:38:45','b0883f14-e44a-4c8a-af1b-453e4c62104d'),(121620,84,143017,NULL,38160,1,'2022-11-25 04:38:45','2022-11-25 04:38:45','dba10fcb-df8d-4426-baba-dd5229263d24'),(121621,198,143017,NULL,61826,1,'2022-11-25 04:38:45','2022-11-25 04:38:45','6cfb0fc7-fe9c-4c45-8467-dddfa47dbdfe'),(121622,79,143018,NULL,17875,1,'2022-11-25 04:39:02','2022-11-25 04:39:02','74b724a2-2e29-45a2-85f3-a242a53b5b8f'),(121623,79,143018,NULL,17934,2,'2022-11-25 04:39:02','2022-11-25 04:39:02','d2c45155-dbd2-46c2-9d1b-b26a0aab100d'),(121624,69,143018,NULL,141742,1,'2022-11-25 04:39:02','2022-11-25 04:39:02','5d9dd69d-efbe-4f78-ab69-f09da3c10594'),(121625,85,143018,NULL,17964,1,'2022-11-25 04:39:02','2022-11-25 04:39:02','7c10b006-3331-42b0-95a1-b1d3bd075883'),(121626,85,143018,NULL,17966,2,'2022-11-25 04:39:02','2022-11-25 04:39:02','38f2530e-c1ee-40e9-bde6-4ba8192837a1'),(121627,85,143018,NULL,17967,3,'2022-11-25 04:39:02','2022-11-25 04:39:02','05140353-0022-4a71-8728-2fe9ae167766'),(121628,84,143018,NULL,38160,1,'2022-11-25 04:39:02','2022-11-25 04:39:02','a197d83e-165c-4fc6-8c2c-c954d5b7d7ef'),(121629,198,143018,NULL,141758,1,'2022-11-25 04:39:02','2022-11-25 04:39:02','697ea715-2161-4fc1-9098-7bac19f1ef56'),(121633,184,143020,NULL,142876,1,'2022-11-25 05:02:43','2022-11-25 05:02:43','b74aede6-ced1-40c3-bfab-3b7f281d2c12'),(121634,69,143020,NULL,142877,1,'2022-11-25 05:02:43','2022-11-25 05:02:43','895dda62-3d97-4f11-b87d-743824a3622d'),(121635,198,143020,NULL,142876,1,'2022-11-25 05:02:43','2022-11-25 05:02:43','5b87b140-13b7-469f-880b-efa991915cac'),(121636,198,143022,NULL,87602,1,'2022-11-25 05:13:44','2022-11-25 05:13:44','e13677e7-1737-4e7a-9464-ca9e9f5a3933'),(121645,69,143026,NULL,142978,1,'2022-11-25 05:54:23','2022-11-25 05:54:23','ad67395e-40fd-4632-9394-2f6e9add34d1'),(121646,85,143026,NULL,17967,1,'2022-11-25 05:54:23','2022-11-25 05:54:23','01f237b0-f0bf-48f5-b3f3-f3b9e8796f87'),(121647,85,143026,NULL,17968,2,'2022-11-25 05:54:23','2022-11-25 05:54:23','5dd7c2ef-dab4-4c9f-80f3-d544cde4b1e6'),(121648,85,143026,NULL,17969,3,'2022-11-25 05:54:23','2022-11-25 05:54:23','4dc1bc9f-9135-4773-ba22-4f9d68fcfd28'),(121649,85,143026,NULL,17971,4,'2022-11-25 05:54:23','2022-11-25 05:54:23','cf1cfb68-fee1-4ce0-b178-741b43b0ce4a'),(121650,84,143026,NULL,18057,1,'2022-11-25 05:54:23','2022-11-25 05:54:23','cc2d004e-4dae-42bc-ab34-cad19ceeb0da'),(121651,84,143026,NULL,38157,2,'2022-11-25 05:54:23','2022-11-25 05:54:23','f93794c6-4896-417f-b07b-32830bb317ab'),(121652,198,143026,NULL,142978,1,'2022-11-25 05:54:23','2022-11-25 05:54:23','4963522a-7f54-4ad5-b30e-8f0f0b96f351'),(121660,184,143028,NULL,28101,1,'2022-11-28 23:23:03','2022-11-28 23:23:03','46c660ed-81ea-463f-bc26-b2d9cc06a05a'),(121661,69,143028,NULL,28101,1,'2022-11-28 23:23:03','2022-11-28 23:23:03','73626991-ab25-4523-b0f3-6d3d27f2a28d'),(121662,85,143028,NULL,17964,1,'2022-11-28 23:23:03','2022-11-28 23:23:03','02492805-da71-408b-b74d-313555575f76'),(121663,85,143028,NULL,17965,2,'2022-11-28 23:23:03','2022-11-28 23:23:03','468d0eb5-48f4-4c0f-9497-013e92f3a525'),(121664,85,143028,NULL,17966,3,'2022-11-28 23:23:03','2022-11-28 23:23:03','0674338a-7c62-4283-bf95-e557898df031'),(121665,85,143028,NULL,17968,4,'2022-11-28 23:23:03','2022-11-28 23:23:03','3ab413e0-3425-4092-96b9-fff3675a6f3a'),(121666,198,143028,NULL,28101,1,'2022-11-28 23:23:03','2022-11-28 23:23:03','063d426a-3dcc-4e9c-b701-0b2e09c987de'),(121667,79,21296,NULL,142716,10,'2022-12-01 04:27:06','2023-03-09 04:33:13','ac6eb425-5fb9-44aa-94e9-8aa565d851c8'),(121668,79,21296,NULL,142039,16,'2022-12-01 04:27:06','2023-03-09 04:32:27','97d6dcb3-3d44-4a80-bbc0-b69ebbd39694'),(121669,198,143021,NULL,143032,1,'2022-12-01 06:22:36','2022-12-01 06:22:36','d0dde543-f763-410a-bab8-e0949dd0b0bb'),(121670,198,143042,NULL,143032,1,'2022-12-01 06:59:16','2022-12-01 06:59:16','e0991e83-ae85-4820-b622-0e06b987526a'),(121672,198,143044,NULL,143032,1,'2022-12-01 06:59:56','2022-12-01 06:59:56','8a1ba3c3-cf81-4823-8eef-94ba66068e91'),(121674,198,143046,NULL,143032,1,'2022-12-01 07:04:19','2022-12-01 07:04:19','8bb5cc3f-a9e0-430e-af9a-8d65cc44e824'),(121676,198,143048,NULL,143032,1,'2022-12-01 07:05:06','2022-12-01 07:05:06','ed4b0282-9cc2-473c-a1d5-7cb513d46803'),(121678,198,143050,NULL,143032,1,'2022-12-01 07:05:22','2022-12-01 07:05:22','5a7f2286-ddd7-4a6c-9f50-2965153230b4'),(121679,79,143057,NULL,17875,1,'2022-12-20 00:34:43','2022-12-20 00:34:43','42eef902-2cd8-4ad8-a2e3-2a7ca1e1b36f'),(121680,79,143057,NULL,17934,2,'2022-12-20 00:34:43','2022-12-20 00:34:43','7b063ae8-dcc2-4b22-b6f2-af0418718f10'),(121681,69,143057,NULL,141742,1,'2022-12-20 00:34:43','2022-12-20 00:34:43','db850969-6432-4013-b953-955417b2707b'),(121682,85,143057,NULL,17964,1,'2022-12-20 00:34:43','2022-12-20 00:34:43','e4d1280e-2633-4ae3-84b8-af73942bc96e'),(121683,85,143057,NULL,17966,2,'2022-12-20 00:34:43','2022-12-20 00:34:43','8176b949-d1dd-4886-b334-1a9c64b8ebd6'),(121684,85,143057,NULL,17967,3,'2022-12-20 00:34:43','2022-12-20 00:34:43','8935bb40-6028-4a09-876d-178261d93bf1'),(121685,84,143057,NULL,38160,1,'2022-12-20 00:34:43','2022-12-20 00:34:43','a341a897-78e6-420e-a37b-d662d31d8a91'),(121686,198,143057,NULL,141758,1,'2022-12-20 00:34:43','2022-12-20 00:34:43','f61f8cf1-a76b-4b03-9652-8bf4627627e1'),(121688,220,17875,NULL,143101,1,'2023-03-06 01:46:54','2023-03-06 01:46:54','abbff29e-8e64-44bc-80ab-22d84f35d301'),(121689,198,143103,NULL,94211,1,'2023-03-09 03:19:26','2023-03-09 03:19:26','9b0d785f-de4e-4783-bad1-eb5eb07b4753'),(121690,198,143104,NULL,143032,1,'2023-03-09 03:22:02','2023-03-09 03:22:02','390d17de-5183-48b6-8b70-9ff0a8a1edf2'),(121691,69,143105,NULL,142978,1,'2023-03-09 03:22:09','2023-03-09 03:22:09','fd39f7e8-9d02-4a93-99f2-92f56efe9042'),(121692,85,143105,NULL,17967,1,'2023-03-09 03:22:09','2023-03-09 03:22:09','cf372e9c-6229-4442-a1d5-59562c2d93b0'),(121693,85,143105,NULL,17968,2,'2023-03-09 03:22:09','2023-03-09 03:22:09','333f0a6c-3945-4354-baef-7d8189b32015'),(121694,85,143105,NULL,17969,3,'2023-03-09 03:22:09','2023-03-09 03:22:09','883aae5d-69e7-4dc6-a352-311586b2bbb1'),(121695,85,143105,NULL,17971,4,'2023-03-09 03:22:09','2023-03-09 03:22:09','4f3c7742-debe-41bd-b940-f55cb374c072'),(121696,84,143105,NULL,18057,1,'2023-03-09 03:22:09','2023-03-09 03:22:09','86ee8a7e-889a-4c0d-ae3a-66599d977c77'),(121697,84,143105,NULL,38157,2,'2023-03-09 03:22:09','2023-03-09 03:22:09','a1579bbd-951e-4e82-b28e-01309fa3dd23'),(121698,198,143105,NULL,142978,1,'2023-03-09 03:22:09','2023-03-09 03:22:09','70f6e7db-9150-441b-b1a3-f12418a4eead'),(121699,69,143106,NULL,142911,1,'2023-03-09 03:22:20','2023-03-09 03:22:20','f690a695-da02-4eb0-abf7-d2478291d01c'),(121700,198,143106,NULL,142911,1,'2023-03-09 03:22:20','2023-03-09 03:22:20','28e15b8e-751a-4222-b259-6c2dd219d40d'),(121701,69,143107,NULL,142807,1,'2023-03-09 03:22:33','2023-03-09 03:22:33','172af5e6-cb2e-41ed-950c-da2287686918'),(121702,198,143107,NULL,142807,1,'2023-03-09 03:22:33','2023-03-09 03:22:33','fb1b4175-1d94-47c7-9162-4a79d016e8ba'),(121703,69,143108,NULL,142564,1,'2023-03-09 03:22:48','2023-03-09 03:22:48','27d70f9c-ed59-4373-915b-611dd9174497'),(121704,198,143108,NULL,142566,1,'2023-03-09 03:22:48','2023-03-09 03:22:48','f5ac11b2-c093-45b4-8274-43c7397c8a1d'),(121705,184,143109,NULL,141538,1,'2023-03-09 03:30:21','2023-03-09 03:30:21','41ef768e-8ade-45b3-adc7-2b37581c9d84'),(121706,69,143109,NULL,141535,1,'2023-03-09 03:30:21','2023-03-09 03:30:21','12e92f40-cdb6-412c-853e-8f0d67258023'),(121707,198,143109,NULL,141535,1,'2023-03-09 03:30:21','2023-03-09 03:30:21','93da677f-5a42-439f-892c-d2e015c6b4e3'),(121708,198,143110,NULL,87602,1,'2023-03-09 03:31:15','2023-03-09 03:31:15','63e7af6d-bd35-4fa0-a252-896d6045baae'),(121709,69,143111,NULL,142252,1,'2023-03-09 03:31:31','2023-03-09 03:31:31','8b5e5eca-4f26-47c9-be80-2fc464abeab5'),(121710,198,143111,NULL,142252,1,'2023-03-09 03:31:31','2023-03-09 03:31:31','163f68e6-f0ce-4ba4-8f3d-27a801bca334'),(121711,79,143112,NULL,17875,1,'2023-03-09 03:31:38','2023-03-09 03:31:38','3b7dafd8-313b-41c0-852e-63441c871559'),(121712,79,143112,NULL,17934,2,'2023-03-09 03:31:38','2023-03-09 03:31:38','869fc5c3-57e9-4da9-a1d2-c797204352e7'),(121713,79,143112,NULL,17941,3,'2023-03-09 03:31:38','2023-03-09 03:31:38','2da29dd9-4bf6-4c8a-8b9a-42d17c9f345b'),(121714,79,143112,NULL,97259,4,'2023-03-09 03:31:38','2023-03-09 03:31:38','d7952467-446a-4120-b55e-dcdfc0908462'),(121715,79,143112,NULL,17954,5,'2023-03-09 03:31:38','2023-03-09 03:31:38','263112d3-0214-44dc-8ebe-b5723321b5ab'),(121716,79,143112,NULL,17956,6,'2023-03-09 03:31:38','2023-03-09 03:31:38','36580cb8-c254-4c0a-8f8b-9644623b0481'),(121717,79,143112,NULL,17996,7,'2023-03-09 03:31:38','2023-03-09 03:31:38','92d7392f-7813-4fa9-ae5a-3a85cf0cb680'),(121718,69,143112,NULL,141945,1,'2023-03-09 03:31:38','2023-03-09 03:31:38','ff7c22f2-0bb3-43c6-95ac-b13bccbfd53b'),(121719,198,143112,NULL,141998,1,'2023-03-09 03:31:38','2023-03-09 03:31:38','5ffdac59-2d8d-4a55-92d9-eb4900579d1f'),(121720,79,143113,NULL,17875,1,'2023-03-09 03:31:42','2023-03-09 03:31:42','d7133926-bc0d-48ed-8362-c83c3cd98f91'),(121721,79,143113,NULL,17934,2,'2023-03-09 03:31:42','2023-03-09 03:31:42','780ca31b-ab4f-45a2-b8a2-72d6d28c653a'),(121722,69,143113,NULL,141742,1,'2023-03-09 03:31:42','2023-03-09 03:31:42','3ec8f540-67f1-4ff8-a7c1-4fbb296440bd'),(121723,85,143113,NULL,17964,1,'2023-03-09 03:31:42','2023-03-09 03:31:42','f376b6ad-43b7-4112-9cc6-7037e0f00caa'),(121724,85,143113,NULL,17966,2,'2023-03-09 03:31:42','2023-03-09 03:31:42','5a3e6b97-d903-4409-84d5-bbb0e93fa812'),(121725,85,143113,NULL,17967,3,'2023-03-09 03:31:42','2023-03-09 03:31:42','eea4ce3f-aaec-4936-a506-6faaea7e7637'),(121726,84,143113,NULL,38160,1,'2023-03-09 03:31:42','2023-03-09 03:31:42','3c500398-c8ca-414f-ae34-be830ef17792'),(121727,198,143113,NULL,141758,1,'2023-03-09 03:31:42','2023-03-09 03:31:42','508b1bfd-6add-4f1b-ba5b-4ec329a570ae'),(121728,69,143114,NULL,141522,1,'2023-03-09 03:31:44','2023-03-09 03:31:44','50c8b459-59cb-48fd-ac5f-d13cddc42b79'),(121729,85,143114,NULL,17966,1,'2023-03-09 03:31:44','2023-03-09 03:31:44','a410d235-74f8-48d3-bcdc-f2257b4f9feb'),(121730,85,143114,NULL,17969,2,'2023-03-09 03:31:44','2023-03-09 03:31:44','bedfff6a-9a73-4845-ab1f-597335755361'),(121731,85,143114,NULL,17970,3,'2023-03-09 03:31:44','2023-03-09 03:31:44','0c0b7690-28bf-4bb0-bae8-04c800e175ea'),(121732,198,143114,NULL,141522,1,'2023-03-09 03:31:44','2023-03-09 03:31:44','50e6f9ff-7d20-49b5-97c1-00e524388b55'),(121733,79,143115,NULL,17881,1,'2023-03-09 03:31:46','2023-03-09 03:31:46','52a4ba66-a0f1-41a7-8f0d-863943a83373'),(121734,79,143115,NULL,1,2,'2023-03-09 03:31:46','2023-03-09 03:31:46','5f68a9a2-3f19-413e-8e74-4a61837f15e9'),(121735,79,143115,NULL,17954,3,'2023-03-09 03:31:46','2023-03-09 03:31:46','03751ee6-9dd0-4ce2-a575-16a6ebeae141'),(121736,79,143115,NULL,17875,4,'2023-03-09 03:31:46','2023-03-09 03:31:46','e405e63d-747c-428f-9cea-e2a6b04ff73a'),(121737,69,143115,NULL,142011,1,'2023-03-09 03:31:46','2023-03-09 03:31:46','9f63bae1-d858-4eb8-b436-57026102c168'),(121738,85,143115,NULL,17964,1,'2023-03-09 03:31:46','2023-03-09 03:31:46','e7a041c0-77ae-4449-aab8-125fb945b8a3'),(121739,85,143115,NULL,17965,2,'2023-03-09 03:31:46','2023-03-09 03:31:46','c43ba755-f6e2-487e-a031-019379a173cc'),(121740,85,143115,NULL,17968,3,'2023-03-09 03:31:46','2023-03-09 03:31:46','70ee5b4e-ed95-46cd-9bed-647b59a5fee4'),(121741,85,143115,NULL,17970,4,'2023-03-09 03:31:46','2023-03-09 03:31:46','29557258-6655-4a72-b7a7-4f37e195e9e2'),(121742,85,143115,NULL,17971,5,'2023-03-09 03:31:46','2023-03-09 03:31:46','9d903629-6532-4b94-adce-500e52fa4764'),(121743,84,143115,NULL,18057,1,'2023-03-09 03:31:46','2023-03-09 03:31:46','b62671f9-631d-45c2-8682-8f48cb4c7084'),(121744,84,143115,NULL,38160,2,'2023-03-09 03:31:46','2023-03-09 03:31:46','b1c207ee-9102-4765-b226-afbbc207de0e'),(121745,198,143115,NULL,141596,1,'2023-03-09 03:31:46','2023-03-09 03:31:46','71dab0de-045b-4f35-984a-304b3854e32e'),(121746,69,143116,NULL,140080,1,'2023-03-09 03:31:51','2023-03-09 03:31:51','b6839ebf-d047-40d8-aaab-446bf9b5ad3a'),(121747,85,143116,NULL,17965,1,'2023-03-09 03:31:51','2023-03-09 03:31:51','d21f855c-f5e9-498f-a99e-dd5e5898c8ba'),(121748,85,143116,NULL,17970,2,'2023-03-09 03:31:51','2023-03-09 03:31:51','4f455d19-c055-4038-8fef-44701b8c44de'),(121749,84,143116,NULL,38159,1,'2023-03-09 03:31:51','2023-03-09 03:31:51','a3efc392-eedc-46d2-a2ab-c8e92d7ac514'),(121750,79,143117,NULL,17875,1,'2023-03-09 03:31:54','2023-03-09 03:31:54','f131c147-66a0-4338-be64-f942249b1dfd'),(121751,79,143117,NULL,17996,2,'2023-03-09 03:31:54','2023-03-09 03:31:54','20862d8a-0c30-4b67-9987-9b86c6931387'),(121752,69,143117,NULL,140057,1,'2023-03-09 03:31:54','2023-03-09 03:31:54','852c422f-3f02-4c33-9593-c2471d9e2c74'),(121756,184,143133,NULL,141538,1,'2023-03-27 06:15:11','2023-03-27 06:15:11','6e8ec1a9-88c9-483c-899b-7b646946d345'),(121757,69,143133,NULL,141535,1,'2023-03-27 06:15:11','2023-03-27 06:15:11','b5dc8db3-8b22-4ed2-bce0-89a3690b2ff7'),(121758,198,143133,NULL,141535,1,'2023-03-27 06:15:11','2023-03-27 06:15:11','95ebc7cc-d05f-4c26-acd9-ef7edb7ead2b'),(121762,184,143136,NULL,141538,1,'2023-03-28 06:35:26','2023-03-28 06:35:26','db13617c-2c34-4c49-9e61-551c53fc075b'),(121763,69,143136,NULL,141535,1,'2023-03-28 06:35:26','2023-03-28 06:35:26','7f4ce1ec-49a4-434d-8e1d-bf31282d5a24'),(121764,198,143136,NULL,141535,1,'2023-03-28 06:35:26','2023-03-28 06:35:26','c54101db-968d-4e40-873d-fd26727fe727'),(121768,184,143138,NULL,141538,1,'2023-03-28 06:37:02','2023-03-28 06:37:02','cc893eef-17d2-4334-bcb6-a2334eb416c1'),(121769,69,143138,NULL,141535,1,'2023-03-28 06:37:02','2023-03-28 06:37:02','b4db6fff-00f6-455e-80da-b92db411d724'),(121770,198,143138,NULL,141535,1,'2023-03-28 06:37:02','2023-03-28 06:37:02','8c629d24-53aa-432a-8264-386f7a0ca6bf'),(121776,184,143139,NULL,143145,1,'2023-03-29 03:54:12','2023-03-29 03:54:12','8abfe620-1d6f-45c5-8072-7b0e5fc35ca0'),(121777,69,143139,NULL,143145,1,'2023-03-29 03:54:12','2023-03-29 03:54:12','e41dfb42-5156-4eb3-aa1b-d1aa0b402807'),(121778,184,143146,NULL,143145,1,'2023-03-29 03:54:12','2023-03-29 03:54:12','67134edd-3ac0-4381-a004-7e019515bb4d'),(121779,69,143146,NULL,143145,1,'2023-03-29 03:54:12','2023-03-29 03:54:12','0f14320a-1f31-4eb0-927a-0cca26988494'),(121782,184,143148,NULL,143145,1,'2023-03-29 03:54:44','2023-03-29 03:54:44','3638baf5-257b-48e7-8376-c834694a46b8'),(121783,69,143148,NULL,143145,1,'2023-03-29 03:54:44','2023-03-29 03:54:44','a6e67a7e-786b-4ee5-83fe-9c9cc2683bef'),(121786,184,143150,NULL,143145,1,'2023-03-29 03:55:34','2023-03-29 03:55:34','65f7842b-3bc8-4ba0-afea-733afc5530c4'),(121787,69,143150,NULL,143145,1,'2023-03-29 03:55:34','2023-03-29 03:55:34','82ac59bd-8cce-4ba8-a359-2d6a7df1e77b'),(121791,184,143152,NULL,141538,1,'2023-03-29 21:39:04','2023-03-29 21:39:04','1303452a-fed7-4393-95b6-69b3ab456ed8'),(121792,69,143152,NULL,141535,1,'2023-03-29 21:39:04','2023-03-29 21:39:04','0f7b50d4-0b0f-4536-913e-4ce008e57add'),(121793,198,143152,NULL,141535,1,'2023-03-29 21:39:04','2023-03-29 21:39:04','18ed24e7-7ca4-4b4d-bde3-e7a348bcc4a6'),(121794,69,143153,NULL,142978,1,'2023-03-30 06:24:07','2023-03-30 06:24:07','c01e02b6-0a91-4e1b-98d5-0a53c2c9102e'),(121795,85,143153,NULL,17967,1,'2023-03-30 06:24:07','2023-03-30 06:24:07','8e325280-acf2-4674-a1e2-e2357ac5e696'),(121796,85,143153,NULL,17968,2,'2023-03-30 06:24:07','2023-03-30 06:24:07','d91081b1-d167-4860-9b33-18106c6ff0c4'),(121797,85,143153,NULL,17969,3,'2023-03-30 06:24:07','2023-03-30 06:24:07','28c127b5-1b36-430c-88a6-2041c9f3bf4d'),(121798,85,143153,NULL,17971,4,'2023-03-30 06:24:07','2023-03-30 06:24:07','df490271-b239-4def-8837-48b8148c2550'),(121799,84,143153,NULL,18057,1,'2023-03-30 06:24:07','2023-03-30 06:24:07','0634a1ff-202e-4fe3-b7c1-1553a53dd8a5'),(121800,84,143153,NULL,38157,2,'2023-03-30 06:24:07','2023-03-30 06:24:07','2499e3a7-28a5-4f33-9624-1ff014e0a1af'),(121801,198,143153,NULL,142978,1,'2023-03-30 06:24:07','2023-03-30 06:24:07','4a947044-d632-4e64-8dc7-9236a4dac62e'),(121802,69,143154,NULL,142978,1,'2023-03-30 06:24:08','2023-03-30 06:24:08','6b6f513b-feb1-42f1-81ba-bdbf612be5f6'),(121803,85,143154,NULL,17967,1,'2023-03-30 06:24:08','2023-03-30 06:24:08','954028d6-97d8-4af6-a3f9-59b16c7a19d3'),(121804,85,143154,NULL,17968,2,'2023-03-30 06:24:08','2023-03-30 06:24:08','7953eb7f-e390-41a0-8e21-63f9d309731d'),(121805,85,143154,NULL,17969,3,'2023-03-30 06:24:08','2023-03-30 06:24:08','c3206e4f-ba3e-4cc1-8736-264f2ebbba88'),(121806,85,143154,NULL,17971,4,'2023-03-30 06:24:08','2023-03-30 06:24:08','67a57b11-45ae-40a8-9eb6-442c543fe181'),(121807,84,143154,NULL,18057,1,'2023-03-30 06:24:08','2023-03-30 06:24:08','2915ff0a-414a-4990-b4ee-5d654d035900'),(121808,84,143154,NULL,38157,2,'2023-03-30 06:24:08','2023-03-30 06:24:08','ffbb035d-c270-49ce-8f7f-5947e8cf33dd'),(121809,198,143154,NULL,142978,1,'2023-03-30 06:24:08','2023-03-30 06:24:08','cdceb114-3bfc-4276-85b9-7e6806fd6cd8'),(121818,198,143156,NULL,142978,1,'2023-03-30 06:26:19','2023-03-30 06:26:19','d5f9dd70-2e11-4a13-9d6f-e3283e97c860'),(121827,85,142875,NULL,17964,1,'2023-03-30 23:05:47','2023-03-30 23:05:47','892d0a49-07d3-45b0-b0f6-0d3d8e95773c'),(121828,85,142875,NULL,17965,2,'2023-03-30 23:05:47','2023-03-30 23:05:47','93255e0a-1252-4842-8b44-957856911629'),(121829,85,142875,NULL,17970,3,'2023-03-30 23:05:47','2023-03-30 23:05:47','5376477a-caa9-44d4-9bdf-5da1ef0a72e1'),(121830,84,142875,NULL,38159,1,'2023-03-30 23:05:47','2023-03-30 23:05:47','98d990cc-d4ef-427f-ab29-7fe200f36bc8'),(121831,85,143159,NULL,17964,1,'2023-03-30 23:05:47','2023-03-30 23:05:47','70df44da-4419-4003-bb68-e7dbb19fb2f6'),(121832,85,143159,NULL,17965,2,'2023-03-30 23:05:47','2023-03-30 23:05:47','465303a0-742e-4645-8444-7ed34b4080e6'),(121833,85,143159,NULL,17970,3,'2023-03-30 23:05:47','2023-03-30 23:05:47','e291df4c-c4b3-4008-b05d-41f8e8c0812d'),(121834,84,143159,NULL,38159,1,'2023-03-30 23:05:47','2023-03-30 23:05:47','d5175d4b-ccac-48c9-a8bc-7ffe74d8efed'),(121835,198,143159,NULL,142978,1,'2023-03-30 23:05:47','2023-03-30 23:05:47','e6301fe3-9b70-418b-9a20-ed16f4424c1e'),(121839,198,143139,NULL,143145,1,'2023-03-30 23:07:15','2023-03-30 23:07:15','f8494985-e95f-4044-a600-97dea355405a'),(121840,184,143161,NULL,143145,1,'2023-03-30 23:07:15','2023-03-30 23:07:15','a3791efd-46fd-4253-8595-9b9a5b72e4f7'),(121841,69,143161,NULL,143145,1,'2023-03-30 23:07:15','2023-03-30 23:07:15','72c9232f-49fa-41ce-a6a8-6276955a065a'),(121842,198,143161,NULL,143145,1,'2023-03-30 23:07:15','2023-03-30 23:07:15','41be2809-aa51-44e1-8cd0-02134b986bf2'),(121843,184,143162,NULL,141538,1,'2023-03-30 23:07:38','2023-03-30 23:07:38','a56f03ed-f460-49ca-8d6d-1a33c3ee3ab6'),(121844,69,143162,NULL,141535,1,'2023-03-30 23:07:38','2023-03-30 23:07:38','51e67460-93ed-460e-b7d3-6bafc2cbb53b'),(121845,198,143162,NULL,141535,1,'2023-03-30 23:07:38','2023-03-30 23:07:38','cbd249ed-97c4-4311-9ba4-4a67938ece38'),(121849,184,143164,NULL,141538,1,'2023-03-30 23:08:01','2023-03-30 23:08:01','e7d26e6f-9cf8-4bd7-a112-f99c6259dce4'),(121850,69,143164,NULL,141535,1,'2023-03-30 23:08:01','2023-03-30 23:08:01','0a0c79a9-ba6d-4eda-9960-58f6e71c0843'),(121851,198,143164,NULL,141535,1,'2023-03-30 23:08:01','2023-03-30 23:08:01','93611536-1216-49ee-9d5f-6a11ccb0170a'),(121857,85,143166,NULL,17964,1,'2023-03-30 23:09:32','2023-03-30 23:09:32','8acf6cba-a759-4d2f-9048-6d0044610799'),(121858,85,143166,NULL,17965,2,'2023-03-30 23:09:32','2023-03-30 23:09:32','730bc8d3-b496-4ca1-a797-4f8ed5c240e8'),(121859,85,143166,NULL,17970,3,'2023-03-30 23:09:32','2023-03-30 23:09:32','30be56ff-8dab-4b55-b3fd-a502ffd7ff94'),(121860,84,143166,NULL,38159,1,'2023-03-30 23:09:32','2023-03-30 23:09:32','0f19bb88-5942-4b7a-9cdd-b85712426035'),(121861,69,143167,NULL,142911,1,'2023-03-30 23:09:41','2023-03-30 23:09:41','a69e7f87-c98c-47f1-804c-4c6d8aa35034'),(121862,198,143167,NULL,142911,1,'2023-03-30 23:09:41','2023-03-30 23:09:41','52f8be49-9a14-4c63-a770-0e849b803206'),(121863,69,143168,NULL,142807,1,'2023-03-30 23:09:50','2023-03-30 23:09:50','8cc4eb97-9138-41fa-b85c-e6318303c3fb'),(121864,198,143168,NULL,142807,1,'2023-03-30 23:09:50','2023-03-30 23:09:50','a1a042aa-7280-40b8-b1f7-4c7f073f7cfb'),(121865,69,143170,NULL,142838,1,'2023-03-30 23:10:06','2023-03-30 23:10:06','c0e6664e-3a7c-4523-809a-f69648f1c34a'),(121866,198,143170,NULL,142838,1,'2023-03-30 23:10:06','2023-03-30 23:10:06','a8057e8e-4903-4ea2-8daa-5f1fb9536205'),(121872,69,142875,NULL,143172,1,'2023-03-31 01:01:04','2023-03-31 01:01:04','d062b967-eb70-46ab-94be-ba0f7e77276f'),(121873,69,143179,NULL,143172,1,'2023-03-31 01:01:04','2023-03-31 01:01:04','b335374f-c605-491f-9bc8-66d482e12c38'),(121874,85,143179,NULL,17964,1,'2023-03-31 01:01:04','2023-03-31 01:01:04','f158474b-99fb-428b-815b-7e5a35ff6455'),(121875,85,143179,NULL,17965,2,'2023-03-31 01:01:04','2023-03-31 01:01:04','c889167c-abb7-475a-8211-225dca45ecc2'),(121876,85,143179,NULL,17970,3,'2023-03-31 01:01:04','2023-03-31 01:01:04','5abcb1db-6717-4bad-90b1-cf2dc60d01ee'),(121877,84,143179,NULL,38159,1,'2023-03-31 01:01:04','2023-03-31 01:01:04','5f0404ae-a7ed-4829-a74d-4a19def9db8b'),(121883,69,143182,NULL,143172,1,'2023-03-31 01:04:25','2023-03-31 01:04:25','0d1b673c-877b-4cb5-a0ad-b78740514f53'),(121884,85,143182,NULL,17964,1,'2023-03-31 01:04:25','2023-03-31 01:04:25','1d31e320-0720-4bf8-aa85-01877a3f8dd2'),(121885,85,143182,NULL,17965,2,'2023-03-31 01:04:25','2023-03-31 01:04:25','c172c150-d722-4d9b-bcbf-23df95afd52b'),(121886,85,143182,NULL,17970,3,'2023-03-31 01:04:25','2023-03-31 01:04:25','2b1f2616-9790-40c9-b357-d04e5016ab9a'),(121887,84,143182,NULL,38159,1,'2023-03-31 01:04:25','2023-03-31 01:04:25','6246ddb5-8fb2-4d1d-ad3e-406a58fbab57'),(121893,69,143185,NULL,143172,1,'2023-03-31 01:06:07','2023-03-31 01:06:07','4276f58b-be4c-41e3-93cb-dc4ba8a181a9'),(121894,85,143185,NULL,17964,1,'2023-03-31 01:06:07','2023-03-31 01:06:07','bedc1f16-c1c4-4d5f-bc93-82b3b37c698a'),(121895,85,143185,NULL,17965,2,'2023-03-31 01:06:07','2023-03-31 01:06:07','ff3201df-cd9c-4f33-b980-f17f4e406cbe'),(121896,85,143185,NULL,17970,3,'2023-03-31 01:06:07','2023-03-31 01:06:07','c47d226b-c121-4345-9c8b-e119da196545'),(121897,84,143185,NULL,38159,1,'2023-03-31 01:06:07','2023-03-31 01:06:07','f8c6dca5-3600-4900-a961-e8eaaf41ea74'),(121903,69,143188,NULL,143172,1,'2023-03-31 01:07:20','2023-03-31 01:07:20','57363e18-8451-4812-bc10-e4cdcda2dfc7'),(121904,85,143188,NULL,17964,1,'2023-03-31 01:07:20','2023-03-31 01:07:20','279743ad-f7c4-4b5e-aba7-0c08d8288aa2'),(121905,85,143188,NULL,17965,2,'2023-03-31 01:07:20','2023-03-31 01:07:20','591f5806-47db-43e0-abea-005693fcf316'),(121906,85,143188,NULL,17970,3,'2023-03-31 01:07:20','2023-03-31 01:07:20','6d674ab0-671b-4cbe-921b-412cbbd04fde'),(121907,84,143188,NULL,38159,1,'2023-03-31 01:07:20','2023-03-31 01:07:20','e4514d9f-3a6f-4927-a41e-0158d35b44fa'),(121913,69,143191,NULL,143172,1,'2023-03-31 01:12:51','2023-03-31 01:12:51','8a2ccc1d-999d-45e9-b1ab-fbe240ed59ff'),(121914,85,143191,NULL,17964,1,'2023-03-31 01:12:51','2023-03-31 01:12:51','c8a75001-1bbb-48e7-979a-dea9f69da535'),(121915,85,143191,NULL,17965,2,'2023-03-31 01:12:51','2023-03-31 01:12:51','75f944b6-23a3-4e1d-a33f-d9eb9a0fba38'),(121916,85,143191,NULL,17970,3,'2023-03-31 01:12:51','2023-03-31 01:12:51','7e51c05b-05eb-4d4a-924e-01494827952c'),(121917,84,143191,NULL,38159,1,'2023-03-31 01:12:51','2023-03-31 01:12:51','29e46a2a-346f-4861-ab16-699c6f627066'),(121923,69,143193,NULL,143172,1,'2023-03-31 01:15:51','2023-03-31 01:15:51','820872ad-9ed8-4cdf-b5ce-d4225fe31dd2'),(121924,85,143193,NULL,17964,1,'2023-03-31 01:15:51','2023-03-31 01:15:51','fa1e87ad-3b52-4a48-a7a2-2957e965e2dc'),(121925,85,143193,NULL,17965,2,'2023-03-31 01:15:51','2023-03-31 01:15:51','4eb5cb6c-24a0-412e-a066-80eff4cbefa7'),(121926,85,143193,NULL,17970,3,'2023-03-31 01:15:51','2023-03-31 01:15:51','24f30337-4a8a-42d2-bca6-e3f108a03d07'),(121927,84,143193,NULL,38159,1,'2023-03-31 01:15:51','2023-03-31 01:15:51','f33c0582-8e05-4065-a1da-407a62c54b6b'),(121933,69,143195,NULL,143172,1,'2023-03-31 01:21:14','2023-03-31 01:21:14','ab0e1b38-8e9c-4c8a-80f1-76c1ac15951c'),(121934,85,143195,NULL,17964,1,'2023-03-31 01:21:14','2023-03-31 01:21:14','ccd54075-4d93-423e-8e5e-a50f0fc7a9ca'),(121935,85,143195,NULL,17965,2,'2023-03-31 01:21:14','2023-03-31 01:21:14','9850b07c-1999-4075-bda6-fb604f7113e6'),(121936,85,143195,NULL,17970,3,'2023-03-31 01:21:14','2023-03-31 01:21:14','acb99117-47d7-4c44-b865-d8a01446176b'),(121937,84,143195,NULL,38159,1,'2023-03-31 01:21:14','2023-03-31 01:21:14','eeda244b-a2a6-4851-a412-8de734ab00c9'),(121944,198,142875,NULL,143177,1,'2023-03-31 01:21:57','2023-03-31 01:21:57','b8a19212-5d1f-429c-b42c-43033f95e832'),(121945,69,143197,NULL,143172,1,'2023-03-31 01:21:57','2023-03-31 01:21:57','414b0fd3-7007-49df-8931-4792f185b05e'),(121946,85,143197,NULL,17964,1,'2023-03-31 01:21:57','2023-03-31 01:21:57','4484a481-88b5-46a6-8870-22671bc87f06'),(121947,85,143197,NULL,17965,2,'2023-03-31 01:21:57','2023-03-31 01:21:57','4a1f96ce-ffe1-4353-b071-0e9a59b24196'),(121948,85,143197,NULL,17970,3,'2023-03-31 01:21:57','2023-03-31 01:21:57','f803b8c4-5fd1-4273-8507-bb364e44e2d1'),(121949,84,143197,NULL,38159,1,'2023-03-31 01:21:57','2023-03-31 01:21:57','ca68d928-160b-4936-ba16-5686377c5507'),(121950,198,143197,NULL,143177,1,'2023-03-31 01:21:57','2023-03-31 01:21:57','28c36737-9943-4308-a97f-7a47d88b5e03'),(121957,69,143199,NULL,143172,1,'2023-03-31 01:26:04','2023-03-31 01:26:04','e179cd9e-2dbe-43a2-aaa7-0e38e1cde7b5'),(121958,85,143199,NULL,17964,1,'2023-03-31 01:26:04','2023-03-31 01:26:04','d9c3ffe5-f698-4ae5-90ed-d2f7aa5d97ff'),(121959,85,143199,NULL,17965,2,'2023-03-31 01:26:04','2023-03-31 01:26:04','a7b2b166-1501-4e80-8c72-12452ba795c8'),(121960,85,143199,NULL,17970,3,'2023-03-31 01:26:04','2023-03-31 01:26:04','0f8e3e32-adf2-4934-be81-57f8e9c4a251'),(121961,84,143199,NULL,38159,1,'2023-03-31 01:26:04','2023-03-31 01:26:04','fce74eec-887c-49b8-a495-83ff1389d139'),(121962,198,143199,NULL,143177,1,'2023-03-31 01:26:04','2023-03-31 01:26:04','a4d17f6a-c858-48a9-bbc6-f8d1bed3f2c6'),(121966,184,143201,NULL,143145,1,'2023-03-31 01:26:43','2023-03-31 01:26:43','a0150e2d-dd13-4cac-b6e6-4d5e4eb7899a'),(121967,69,143201,NULL,143145,1,'2023-03-31 01:26:43','2023-03-31 01:26:43','6ea61529-8f53-4bcb-b2b0-15aa5e56e8e4'),(121968,198,143201,NULL,143145,1,'2023-03-31 01:26:43','2023-03-31 01:26:43','545ed582-c739-44e2-b209-ee09b31e5719'),(121975,69,143203,NULL,143172,1,'2023-03-31 02:13:32','2023-03-31 02:13:32','7d679782-5d24-4e71-8252-b886143aeef0'),(121976,85,143203,NULL,17964,1,'2023-03-31 02:13:32','2023-03-31 02:13:32','b95e0859-7d47-496c-be83-806ea417d7b9'),(121977,85,143203,NULL,17965,2,'2023-03-31 02:13:32','2023-03-31 02:13:32','fb844fef-fa3e-4bd5-b2ec-8be85a1ae6fa'),(121978,85,143203,NULL,17970,3,'2023-03-31 02:13:32','2023-03-31 02:13:32','9d2a104a-941c-44f0-a470-d79b5ce4f611'),(121979,84,143203,NULL,38159,1,'2023-03-31 02:13:32','2023-03-31 02:13:32','80294ea6-7543-4b2a-96d2-891bb775d7ab'),(121980,198,143203,NULL,143177,1,'2023-03-31 02:13:32','2023-03-31 02:13:32','93988a05-27a2-4b91-9694-8dcc9ddbd003'),(121984,184,143205,NULL,143145,1,'2023-03-31 02:15:01','2023-03-31 02:15:01','69eb0bdc-ad18-4caf-ad3d-c7e6a2a0b284'),(121985,69,143205,NULL,143145,1,'2023-03-31 02:15:01','2023-03-31 02:15:01','bea58bb8-3f2b-4788-859e-a99a1f1257e2'),(121986,198,143205,NULL,143145,1,'2023-03-31 02:15:01','2023-03-31 02:15:01','ae2a85c9-554b-4d8f-a549-71e4c02127ec'),(121990,184,143207,NULL,143145,1,'2023-03-31 03:39:21','2023-03-31 03:39:21','d280846d-af77-4064-b61a-5d08ef5dea3a'),(121991,69,143207,NULL,143145,1,'2023-03-31 03:39:21','2023-03-31 03:39:21','194d7ed5-ef41-4a2d-9714-7b153ca6e67f'),(121992,198,143207,NULL,143145,1,'2023-03-31 03:39:21','2023-03-31 03:39:21','4d2e2e79-e7b0-475a-80bb-2ebc1459b930'),(121996,184,143209,NULL,143145,1,'2023-03-31 03:40:13','2023-03-31 03:40:13','73844d51-e0c2-4bbd-8cff-c0a7447fc401'),(121997,69,143209,NULL,143145,1,'2023-03-31 03:40:13','2023-03-31 03:40:13','68de3eee-32d2-4cfd-a352-369d59d72d93'),(121998,198,143209,NULL,143145,1,'2023-03-31 03:40:13','2023-03-31 03:40:13','674549e1-5faf-43f6-b101-46a022c61f7f'),(122002,184,143211,NULL,143145,1,'2023-03-31 03:40:31','2023-03-31 03:40:31','0e5b73e1-8003-4fd5-a919-684e8f0f7887'),(122003,69,143211,NULL,143145,1,'2023-03-31 03:40:31','2023-03-31 03:40:31','85a3f749-e7d3-4d51-89c7-6f053a55c573'),(122004,198,143211,NULL,143145,1,'2023-03-31 03:40:31','2023-03-31 03:40:31','0f6d3bb3-0220-4266-9aa1-60431096dfdf'),(122011,69,143213,NULL,143172,1,'2023-03-31 03:42:53','2023-03-31 03:42:53','45a94e29-be53-480a-8366-652e5f808fda'),(122012,85,143213,NULL,17964,1,'2023-03-31 03:42:53','2023-03-31 03:42:53','a144af3c-417c-4583-9d2a-adef9336b748'),(122013,85,143213,NULL,17965,2,'2023-03-31 03:42:53','2023-03-31 03:42:53','97183020-531f-420e-8c95-59d482e38ac9'),(122014,85,143213,NULL,17970,3,'2023-03-31 03:42:53','2023-03-31 03:42:53','a1e8b17d-7575-4ac9-8556-44aab533c42b'),(122015,84,143213,NULL,38159,1,'2023-03-31 03:42:53','2023-03-31 03:42:53','902b1fe0-0efa-4aaa-a343-29e7bf92110d'),(122016,198,143213,NULL,143177,1,'2023-03-31 03:42:53','2023-03-31 03:42:53','a98bef8d-5937-4d09-8ebd-c92c541d618c'),(122020,184,143215,NULL,141538,1,'2023-03-31 03:43:14','2023-03-31 03:43:14','7c31d2ea-7a54-4c98-afd8-c2002ae4e2a4'),(122021,69,143215,NULL,141535,1,'2023-03-31 03:43:14','2023-03-31 03:43:14','b5c5cd97-bce0-4ce1-837d-faf26a12f1e9'),(122022,198,143215,NULL,141535,1,'2023-03-31 03:43:14','2023-03-31 03:43:14','7544a1e7-c927-42da-9c4e-8b06b7b9286d'),(122026,184,143217,NULL,141538,1,'2023-03-31 03:44:09','2023-03-31 03:44:09','0b0366e2-6bde-472b-bf8c-7bd23cc5a5c2'),(122027,69,143217,NULL,141535,1,'2023-03-31 03:44:09','2023-03-31 03:44:09','d5dd5a73-5121-45f7-bb73-13f9d4b95412'),(122028,198,143217,NULL,141535,1,'2023-03-31 03:44:09','2023-03-31 03:44:09','ae8bfd8e-7683-42fb-bf2b-2c882c1fc79c'),(122032,184,143219,NULL,141538,1,'2023-03-31 03:56:54','2023-03-31 03:56:54','e42a0a20-b3f7-45c4-960c-941b88ba0f85'),(122033,69,143219,NULL,141535,1,'2023-03-31 03:56:54','2023-03-31 03:56:54','b2483165-acfd-4b45-87fd-194f6c7dcd92'),(122034,198,143219,NULL,141535,1,'2023-03-31 03:56:54','2023-03-31 03:56:54','8c802484-9b33-4421-a908-1bf59058501d'),(122038,184,143221,NULL,143145,1,'2023-03-31 03:59:36','2023-03-31 03:59:36','8dbc5d29-d5ff-4782-a349-63905307ffd2'),(122039,69,143221,NULL,143145,1,'2023-03-31 03:59:36','2023-03-31 03:59:36','d33002e5-1aa6-470f-838b-0c133af2d8f0'),(122040,198,143221,NULL,143145,1,'2023-03-31 03:59:36','2023-03-31 03:59:36','98078c66-5484-4f9e-b0bb-078e6a564654'),(122041,184,143222,NULL,142876,1,'2023-04-03 01:07:55','2023-04-03 01:07:55','7f6daad4-186b-40c1-823f-df75a862beab'),(122042,69,143222,NULL,142877,1,'2023-04-03 01:07:55','2023-04-03 01:07:55','4b2d703c-efaf-4a50-8562-4907a9b446b8'),(122043,198,143222,NULL,142876,1,'2023-04-03 01:07:55','2023-04-03 01:07:55','259a2bc1-2e1d-4a1e-855d-66201c0288df'),(122047,184,143224,NULL,142876,1,'2023-04-03 01:08:12','2023-04-03 01:08:12','b01d6a53-ba5b-4e51-b9f6-0de72738ce4a'),(122048,69,143224,NULL,142877,1,'2023-04-03 01:08:12','2023-04-03 01:08:12','ff60d54f-9c9c-466e-bb0f-7af5716accaf'),(122049,198,143224,NULL,142876,1,'2023-04-03 01:08:12','2023-04-03 01:08:12','4b2545f2-deb6-4201-8845-88525a0ad523');
/*!40000 ALTER TABLE `relations` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `retour_redirects`
--

LOCK TABLES `retour_redirects` WRITE;
/*!40000 ALTER TABLE `retour_redirects` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `retour_redirects` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `retour_static_redirects`
--

LOCK TABLES `retour_static_redirects` WRITE;
/*!40000 ALTER TABLE `retour_static_redirects` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `retour_static_redirects` VALUES (1,'2020-07-06 01:24:58','2020-07-06 01:24:58','1d3265fe-a14a-406a-a437-193878c8706a',NULL,0,1,'/team/libby-dunstan-1','/team/libby-dunstan-1','pathonly','exactmatch','/team/libby-dunstan',301,0,NULL),(2,'2020-07-06 04:42:29','2021-05-16 19:07:11','7ae06b8b-973a-4589-8b1a-fca2e82509c4',NULL,0,1,'/page/news-and-events/latest-news/covid-19-information','/page/news-and-events/latest-news/covid-19-information','pathonly','exactmatch','https://brisbanenorthphn.org.au/covid-19',301,73,'2021-05-16 19:07:11'),(3,'2020-07-06 04:44:18','2021-05-18 11:03:13','d2e92840-25f4-4cb5-ba38-b717fe9d5ba0',NULL,0,1,'/page/news-and-events/latest-news/covid-19-information/fever-clinic-information/','/page/news-and-events/latest-news/covid-19-information/fever-clinic-information/','pathonly','exactmatch','https://brisbanenorthphn.org.au/covid-19',301,1022,'2021-05-18 11:03:13'),(4,'2020-07-06 04:47:21','2020-07-06 04:47:21','cef7cc0b-40cf-46bb-a988-4e3b01216c9b',NULL,0,1,'https://brisbanenorthphn.org.au/page/news-and-events/latest-news/covid-19-information/covid-19-resources-for-health-professionals/','https://brisbanenorthphn.org.au/page/news-and-events/latest-news/covid-19-information/covid-19-resources-for-health-professionals/','pathonly','exactmatch','https://brisbanenorthphn.org.au/covid-19',301,0,NULL),(5,'2020-07-06 04:54:10','2020-07-06 04:56:55','4985071d-ca3f-47a5-9814-f6242b31c29f',NULL,0,1,'https://brisbanenorthphn.org.au/page/news-and-events/latest-news/covid-19-information/access-to-surgical-masks-for-general-practice-and-pharmacies/','https://brisbanenorthphn.org.au/page/news-and-events/latest-news/covid-19-information/access-to-surgical-masks-for-general-practice-and-pharmacies/','pathonly','exactmatch','https://brisbanenorthphn.org.au/covid-19/mask-distribution',301,0,NULL),(6,'2020-07-06 04:55:40','2020-07-06 04:55:40','ea455bc9-bd56-4de5-8fe9-0d10b6e21b67',NULL,0,1,'https://brisbanenorthphn.org.au/page/news-and-events/latest-news/covid-19-information/information-for-aged-care-providers/','https://brisbanenorthphn.org.au/page/news-and-events/latest-news/covid-19-information/information-for-aged-care-providers/','pathonly','exactmatch','https://brisbanenorthphn.org.au/covid-19',301,0,NULL),(7,'2020-07-06 04:56:35','2020-07-06 04:56:35','bf459cae-20e8-4b78-ba08-0e979ca8f360',NULL,0,1,'https://brisbanenorthphn.org.au/page/news-and-events/latest-news/covid-19-information/information-for-phn-funded-service-providers/','https://brisbanenorthphn.org.au/page/news-and-events/latest-news/covid-19-information/information-for-phn-funded-service-providers/','pathonly','exactmatch','https://brisbanenorthphn.org.au/covid-19/information-for-providers',301,0,NULL),(8,'2020-07-06 04:57:35','2020-07-06 04:57:35','d616dbdd-8584-440b-842c-6a1a77149bd6',NULL,0,1,'https://brisbanenorthphn.org.au/page/news-and-events/latest-news/covid-19-information/information-for-our-community/','https://brisbanenorthphn.org.au/page/news-and-events/latest-news/covid-19-information/information-for-our-community/','pathonly','exactmatch','https://brisbanenorthphn.org.au/covid-19/information-for-our-community',301,0,NULL),(9,'2020-07-10 06:32:24','2020-07-10 06:36:12','6e175997-64b8-4502-b47c-6aacbdb9811e',NULL,0,1,'/page/health-professionals/referral-and-patient-management/Hospital+eReferral+Templates/','/page/health-professionals/referral-and-patient-management/Hospital+eReferral+Templates/','pathonly','exactmatch','https://brisbanenorthphn.org.au/practice-support/referral-and-patient-management',301,0,NULL),(10,'2020-07-12 22:16:22','2020-07-12 22:36:12','87c2f4e0-cabc-41fb-8f03-5a114490c529',NULL,0,1,'/brisbanenorthphn.org.au/page/health-professionals/referral-and-patient-management/Hospital+eReferral+Templates','/brisbanenorthphn.org.au/page/health-professionals/referral-and-patient-management/Hospital+eReferral+Templates','pathonly','exactmatch','/brisbanenorthphn.org.au/practice-support/referral-and-patient-management',301,0,NULL),(11,'2020-07-12 22:17:04','2021-05-19 03:08:13','a15419ed-ca92-4951-8185-3c14315fc220',NULL,0,1,'/page/health-professionals/referral-and-patient-management/Hospital eReferral Templates/','/page/health-professionals/referral-and-patient-management/Hospital eReferral Templates/','pathonly','exactmatch','/practice-support/referral-and-patient-management',301,3466,'2021-05-19 03:08:13'),(12,'2020-07-13 01:14:21','2020-07-13 01:14:21','f98f2491-5346-4dad-8937-8ee6ca0cf923',NULL,0,1,'/brisbanenorthphn.org.au/news/patient-information-resource-now-available-for-those-accessing-the-ndis','/brisbanenorthphn.org.au/news/patient-information-resource-now-available-for-those-accessing-the-ndis','pathonly','exactmatch','https://brisbanenorthphn.org.au/practice-support/national-disability-insurance-scheme',301,0,NULL),(14,'2020-07-14 05:31:56','2020-07-14 05:31:56','61deb432-0853-4284-849c-4038497c41af',NULL,0,1,'/our-programs/its-safe-to-see-your-gp','/our-programs/its-safe-to-see-your-gp','pathonly','exactmatch','/our-programs/safetoseegp',301,0,NULL),(15,'2020-07-16 01:20:04','2021-05-18 21:22:14','bd476958-0a8a-44d4-9c54-c91c3351b888',NULL,0,1,'https://brisbanenorthphn.org.au/yearinreview','https://brisbanenorthphn.org.au/yearinreview','fullurl','exactmatch','http://yearinreview.brisbanenorthphn.org.au',301,968,'2021-05-18 21:22:14'),(16,'2020-07-16 04:56:27','2021-05-15 09:14:56','cb5c008d-45f8-4dfb-ae5c-75963bd15549',NULL,0,1,'/page/about/careers','/page/about/careers','pathonly','exactmatch','/about/careers',301,372,'2021-05-15 09:14:56'),(17,'2020-07-16 04:57:49','2021-05-19 02:07:51','cf5e87e4-873f-4ccc-b90e-1a522627be2d',NULL,0,1,'/page/about/careers/','/page/about/careers/','pathonly','exactmatch','/about/careers/',301,606,'2021-05-19 02:07:51'),(18,'2020-07-19 22:48:20','2021-05-17 03:32:53','408bd801-83f3-44e0-9559-95c189af1049',NULL,0,1,'/position-type/exec-manager','/position-type/exec-manager','pathonly','exactmatch','/position-type/executive-manager',301,22,'2021-05-17 03:32:53'),(23,'2020-08-10 23:33:19','2020-08-10 23:33:23','7e8222e4-4203-404e-bddf-79e7875dfe6c',NULL,0,1,'/our-programs/aged-and-community-care-1','/our-programs/aged-and-community-care-1','pathonly','exactmatch','/our-programs/aged-and-community-care',301,1,'2020-08-10 23:33:23'),(24,'2020-08-20 22:21:14','2020-08-20 22:21:14','2935b23f-b92b-43c9-b7ad-b40c7ae704f9',NULL,0,1,'/brisbanenorthphn.org.au/page/news-and-events/latest-news/were-moving/','/brisbanenorthphn.org.au/page/news-and-events/latest-news/were-moving/','pathonly','exactmatch','/brisbanenorthphn.org.au/',301,0,NULL),(25,'2020-08-24 23:56:49','2020-08-24 23:56:49','5edbf226-f4f3-4241-a3d2-e7c1cb37fac3',NULL,0,1,'/brisbanenorthphn.org.au/page/news-andevents/latest-news/covid-19-information/fever-clinic-information/','/brisbanenorthphn.org.au/page/news-andevents/latest-news/covid-19-information/fever-clinic-information/','pathonly','exactmatch','/brisbanenorthphn.org.au/covid-19',301,0,NULL),(26,'2020-08-25 01:15:05','2021-05-19 02:43:05','85babee1-34a6-473d-98c5-4ffa27505aa0',NULL,0,1,'/about/careers','/about/careers','pathonly','exactmatch','/about/careers-1',301,1028,'2021-05-19 02:43:05'),(27,'2020-09-07 02:32:17','2021-05-18 15:05:43','3d63a882-a96c-448a-abea-2d7ff49c043c',NULL,0,1,'/covid-19/mask-distribution','/covid-19/mask-distribution','pathonly','exactmatch','/covid-19/ppe',301,304,'2021-05-18 15:05:43'),(28,'2020-09-07 04:28:50','2020-09-07 04:29:07','612973b6-b13e-495a-8687-f87b7590b750',NULL,0,1,'https://brisbanenorthphn.org.au/covid-19/covid-19/mask-distribution','https://brisbanenorthphn.org.au/covid-19/covid-19/mask-distribution','pathonly','exactmatch','https://brisbanenorthphn.org.au/covid-19/ppe',301,0,NULL),(29,'2020-09-09 04:01:45','2020-09-09 04:01:45','ecc2d184-198b-428e-b178-9a414bfbc66d',NULL,0,1,'/events/paediatric-masterclass-for-general-practice-1-2','/events/paediatric-masterclass-for-general-practice-1-2','pathonly','exactmatch','/events/paediatric-masterclass-for-general-practice-thriving-in-adolescence-part-2',301,0,NULL),(30,'2020-09-09 04:02:59','2020-09-09 04:02:59','f0d3e311-8749-4871-b71a-d1156189a843',NULL,0,1,'/events/paediatric-masterclass-for-general-practice-3','/events/paediatric-masterclass-for-general-practice-3','pathonly','exactmatch','/events/paediatric-masterclass-for-general-practice-thriving-in-adolescence',301,0,NULL),(31,'2020-09-09 04:03:32','2020-09-09 04:03:32','8e67379c-f43d-4c58-a45b-7880af9c88cc',NULL,0,1,'/events/paediatric-masterclass-for-general-practice','/events/paediatric-masterclass-for-general-practice','pathonly','exactmatch','/events/paediatric-masterclass-for-general-practice-the-first-2000-days',301,0,NULL),(32,'2020-09-09 04:03:52','2020-09-09 04:03:52','5ef40c50-72e4-41ac-807f-ab6f71e69cb8',NULL,0,1,'/events/paediatric-masterclass-for-general-practice-1','/events/paediatric-masterclass-for-general-practice-1','pathonly','exactmatch','/events/paediatric-masterclass-for-general-practice-the-first-2000-days-part-1',301,0,NULL),(33,'2020-09-09 04:04:46','2020-09-09 04:04:46','a5c729ae-010c-4c4a-a1d2-f77b37a8f923',NULL,0,1,'/events/paediatric-masterclass-for-general-practice-2','/events/paediatric-masterclass-for-general-practice-2','pathonly','exactmatch','/events/paediatric-masterclass-for-general-practice-primary-school-years',301,0,NULL),(34,'2020-09-09 04:05:03','2020-09-09 04:05:03','c8d75a14-0259-4f84-8d06-ba7ae819ad0d',NULL,0,1,'/events/paediatric-masterclass-for-general-practice-1-1','/events/paediatric-masterclass-for-general-practice-1-1','pathonly','exactmatch','/events/paediatric-masterclass-for-general-practice-primary-school-years-part-2',301,0,NULL),(35,'2020-09-21 05:34:51','2020-09-21 05:35:05','670a8f2c-af40-45f6-ad39-aa29733fc05d',NULL,0,1,'/events/gp-smart-referral-webinar','/events/gp-smart-referral-webinar','pathonly','exactmatch','/events/gpsr-webinar',301,1,'2020-09-21 05:35:05'),(36,'2020-09-21 22:58:18','2021-05-14 14:16:25','7856b8bf-03af-468c-aef1-aecb0b282dda',NULL,0,1,'/jobs/rn','/jobs/rn','pathonly','exactmatch','/jobs/registered-nurse-3',301,71,'2021-05-14 14:16:25'),(37,'2020-09-29 02:57:03','2021-05-12 04:14:48','eabe3da9-f016-4bef-adaa-1fd18666b258',NULL,0,1,'/team/executive-manager-health-systems-improvement','/team/executive-manager-health-systems-improvement','pathonly','exactmatch','/team/rachelle-foreman',301,46,'2021-05-12 04:14:48'),(38,'2020-10-02 04:11:42','2020-10-12 06:23:24','5e9dabde-2a6f-4f53-bea4-66a98d49a13f',NULL,0,1,'/brisbanenorthphn.org.au/content/Document/Statement_20of_20Intent_PHN_SIGNED_20BY_20ANITA.pdf','/brisbanenorthphn.org.au/content/Document/Statement_20of_20Intent_PHN_SIGNED_20BY_20ANITA.pdf','fullurl','exactmatch','/brisbanenorthphn.org.au/about/reconciliation-action-plan',301,0,NULL),(39,'2020-10-21 03:13:12','2020-10-21 03:13:12','10f44ed6-d820-4c87-8c77-ac55abc30027',NULL,0,1,'/media-1','/media-1','pathonly','exactmatch','/media/media-releases-1',301,0,NULL),(40,'2020-10-21 03:13:38','2020-10-21 03:13:38','9d16eb2f-ddf7-4667-8943-5c280c810bc0',NULL,0,1,'/media/media-releases-1','/media/media-releases-1','pathonly','exactmatch','/media/media-releases',301,0,NULL),(41,'2020-10-26 05:57:37','2020-10-26 05:57:37','b2ab2028-81d7-4aff-9a8d-4a5ff89f47c1',NULL,0,1,'/media/press-coverage','/media/press-coverage','pathonly','exactmatch','/media/in-the-news',301,0,NULL),(42,'2020-10-27 05:16:45','2020-10-27 05:41:31','32943969-38ec-486b-a839-2a7bd91f5a0d',NULL,0,1,'/news-events/newsletters/partners-in-health/partners-in-health-september-2020-1','/news-events/newsletters/partners-in-health/partners-in-health-september-2020-1','pathonly','exactmatch','/news-events/newsletters/partners-in-health/partners-in-health-august',301,0,NULL),(43,'2020-10-27 05:46:16','2021-01-11 03:25:01','008f5032-798b-493e-91c2-9caaa1201fc0',NULL,0,1,'/news-events/newsletters/partners-in-health/partners-in-health-october-2020-1','/news-events/newsletters/partners-in-health/partners-in-health-october-2020-1','pathonly','exactmatch','/news-events/newsletters/partners-in-health/partners-in-health-november-2020-1',301,0,NULL),(44,'2020-10-27 05:46:29','2020-10-27 05:46:29','4c23e2f2-8d25-45e6-a5dc-6ee5fcabd985',NULL,0,1,'/news-events/newsletters/partners-in-health/partners-in-health-august','/news-events/newsletters/partners-in-health/partners-in-health-august','pathonly','exactmatch','/news-events/newsletters/partners-in-health/partners-in-health-august-2020',301,0,NULL),(45,'2020-11-04 04:30:50','2020-11-04 04:30:50','8e488407-b279-4863-a75c-54e6ff9e6d01',NULL,0,1,'/jobs/project-officer-lived-experience-networks-1','/jobs/project-officer-lived-experience-networks-1','pathonly','exactmatch','/jobs/program-support-officer-knowledge-planning-and-performance',301,0,NULL),(46,'2020-11-16 01:18:37','2020-11-16 01:18:37','aefc773a-e532-4a0f-b77c-3aede5005c75',NULL,0,1,'/events/beyond-the-pandemic-the-health-systems-support-to-covid-long-haulers-1-1-1-1','/events/beyond-the-pandemic-the-health-systems-support-to-covid-long-haulers-1-1-1-1','pathonly','exactmatch','/events/beyond-the-pandemic',301,0,NULL),(47,'2020-11-16 01:23:31','2020-11-16 01:23:31','2886245b-2df1-468c-8b00-b7f2afacaa23',NULL,0,1,'/events/beyond-the-pandemic-the-health-systems-support-to-covid-long-haulers-1','/events/beyond-the-pandemic-the-health-systems-support-to-covid-long-haulers-1','pathonly','exactmatch','/events/beyond-the-pandemic-1',301,0,NULL),(48,'2020-11-16 01:23:41','2020-11-16 01:23:41','5916bd43-656f-4f18-9dc5-100188267f70',NULL,0,1,'/events/beyond-the-pandemic-the-health-systems-support-to-covid-long-haulers-1-1','/events/beyond-the-pandemic-the-health-systems-support-to-covid-long-haulers-1-1','pathonly','exactmatch','/events/beyond-the-pandemic-2',301,0,NULL),(49,'2020-11-16 01:23:47','2020-11-16 01:23:47','184fc755-2711-4203-8607-df1ddf46d795',NULL,0,1,'/events/beyond-the-pandemic-the-health-systems-support-to-covid-long-haulers-1-1-1','/events/beyond-the-pandemic-the-health-systems-support-to-covid-long-haulers-1-1-1','pathonly','exactmatch','/events/beyond-the-pandemic-3',301,0,NULL),(50,'2020-12-16 23:25:51','2021-05-16 01:31:51','b337f922-d87b-46ec-8030-ab0d9fc7903e',NULL,0,1,'/news/opening-of-headspace-strathpine-to-improve-youth-mental-health-services','/news/opening-of-headspace-strathpine-to-improve-youth-mental-health-services','pathonly','exactmatch','/news/new-headspace-strathpine-centre-opens-according-to-plan',301,167,'2021-05-16 01:31:51'),(51,'2020-12-16 23:27:35','2021-05-09 03:19:49','1828d2ea-5e13-4d30-bc59-2e0130e0ca0d',NULL,0,1,'/news/a-joint-protocol-renewed','/news/a-joint-protocol-renewed','pathonly','exactmatch','/news/joint-protocol-renewed',301,62,'2021-05-09 03:19:49'),(52,'2020-12-20 23:21:26','2020-12-20 23:21:26','a2f8e9bb-d4c8-4fad-8240-223d4e9eed9c',NULL,0,1,'/news-events/2020-health-alerts','/news-events/2020-health-alerts','pathonly','exactmatch','/news-events/health-alerts/2020-health-alerts',301,0,NULL),(53,'2021-01-11 03:28:46','2021-01-11 03:28:46','df29e666-f904-40ad-8bd8-9b484120938f',NULL,0,1,'/news-events/newsletters/partners-in-health/partners-in-health-november-2020-1-1','/news-events/newsletters/partners-in-health/partners-in-health-november-2020-1-1','pathonly','exactmatch','/news-events/newsletters/partners-in-health/partners-in-health-december-2020-1-1',301,0,NULL),(54,'2021-01-12 05:08:07','2021-02-19 09:38:45','6b03902f-0e2a-4eee-83c1-522fa4a18499',NULL,0,1,'/events/gp-smart-referral-information-and-training','/events/gp-smart-referral-information-and-training','pathonly','exactmatch','/events/gpsr',301,6,'2021-02-19 09:38:45'),(55,'2021-01-13 05:11:18','2021-05-16 10:25:55','1855a1f7-772d-49be-96f7-ae32905614b8',NULL,0,1,'/jobs/practice-nurse-3','/jobs/practice-nurse-3','pathonly','exactmatch','/jobs/medical-receptionist---casual',301,53,'2021-05-16 10:25:55'),(56,'2021-01-15 00:13:24','2021-01-15 00:13:24','850fcf82-fbc7-465d-826b-e9215b66ff9f',NULL,0,1,'/disclaimer-anytimehealthadvice','/disclaimer-anytimehealthadvice','pathonly','exactmatch','/disclaimer/disclaimer-anytimehealthadvice',301,0,NULL),(57,'2021-01-15 00:13:48','2021-01-15 00:13:48','d4ab2fb0-623d-4999-a2d1-e1da4f36df97',NULL,0,1,'/disclaimer/disclaimer-anytimehealthadvice','/disclaimer/disclaimer-anytimehealthadvice','pathonly','exactmatch','/disclaimer/anytimehealthadvice',301,0,NULL),(58,'2021-02-05 02:05:22','2021-05-18 21:14:00','e9fb8710-ed25-4871-9fa6-25663789a06d',NULL,0,1,'/media/multimedia/anytime-health-advice-campaign','/media/multimedia/anytime-health-advice-campaign','pathonly','exactmatch','/media/multimedia/anytime-health-advice-materials',301,116,'2021-05-18 21:14:00'),(60,'2021-02-19 02:35:45','2021-04-21 15:26:15','fffe92a5-6c05-458d-a0a5-f7b6d4651ca0',NULL,0,1,'/news/new-headspace-strathpine-centre-opens-according-to-plan-1','/news/new-headspace-strathpine-centre-opens-according-to-plan-1','pathonly','exactmatch','/news/new-headspace-strathpine-centre-opens-according-to-plan',301,3,'2021-04-21 15:26:15'),(61,'2021-03-01 00:21:00','2021-05-19 02:59:22','186c3cda-0477-4619-8f36-bd38eb078fc9',NULL,0,1,'/content/Document/Statement of Intent_PHN_SIGNED BY ANITA.pdf','/content/Document/Statement of Intent_PHN_SIGNED BY ANITA.pdf','pathonly','exactmatch','https://brisbanenorthphn.org.au/about/reconciliation-action-plan',301,3350,'2021-05-19 02:59:22'),(62,'2021-03-17 03:52:42','2021-03-17 03:52:42','bbe800b4-6bbd-4189-a2f4-28e1ffa96703',NULL,0,1,'/jobs/gp-position-available-kallangur-1','/jobs/gp-position-available-kallangur-1','pathonly','exactmatch','/jobs/psychologist-kallangur',301,0,NULL),(63,'2021-04-06 00:11:15','2021-05-08 18:28:26','328cc2e0-c8f1-409d-82f3-f552647171b9',NULL,0,1,'/news/local-practice-manager-receives-early-jab-as-phase-1b-rolls-out','/news/local-practice-manager-receives-early-jab-as-phase-1b-rolls-out','pathonly','exactmatch','/news/local-practice-manager-receives-jab-as-phase-1b-rolls-out',301,16,'2021-05-08 18:28:26');
/*!40000 ALTER TABLE `retour_static_redirects` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `retour_stats`
--

LOCK TABLES `retour_stats` WRITE;
/*!40000 ALTER TABLE `retour_stats` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `retour_stats` VALUES (6,'2020-07-06 00:57:31','2021-05-19 01:57:42','1bdb6fe4-b076-4b5e-a179-e5ce03b9de8d',1,'/content/Document/dist/swiper.js','https://www.brisbanenorthphn.org.au/content/Document/Pathways/DASS_21_Scoring.pdf','203.217.8.123','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36','Template not found: content/Document/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5766,'2021-05-19 01:57:42',0),(20,'2020-07-06 01:00:40','2021-05-18 06:26:58','a83f9fb6-3c5e-4ec8-9361-c0760ad831af',1,'/content/Document/BNPHN_Understanding_Your_Role_NDIS_GP_Toolkit_May2018_FINAL_WEB.pdf','','131.242.9.4','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36 Edg/90.0.818.62','Template not found: content/Document/BNPHN_Understanding_Your_Role_NDIS_GP_Toolkit_May2018_FINAL_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1323,'2021-05-18 06:26:58',0),(22,'2020-07-06 01:02:52','2021-05-18 19:51:44','ddb61f7d-985c-4e29-9fef-e36591a90d28',1,'/page/health-professionals/pathways-program/','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/pathways-program','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,611,'2021-05-18 19:51:44',0),(25,'2020-07-06 01:03:46','2021-05-19 03:08:25','03f10cb0-32e7-4c1c-8e5e-ef36299543d7',1,'/our-programs/dist/swiper.js','https://brisbanenorthphn.org.au/our-programs/mental-health-services/brisbane-mind-and-brisbane-mind4kids','103.87.254.78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','Template not found: our-programs/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,15424,'2021-05-19 03:08:25',0),(27,'2020-07-06 01:07:11','2021-05-19 02:59:22','f8ceed20-e0a7-4976-9c8c-321cfd8dad9f',1,'/content/Document/Statement of Intent_PHN_SIGNED BY ANITA.pdf','','20.38.186.153','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','Template not found: content/Document/Statement of Intent_PHN_SIGNED BY ANITA.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9445,'2021-05-19 02:59:22',1),(32,'2020-07-06 01:08:50','2021-05-19 01:30:49','65c3fcc3-b01b-4cfa-b48c-b293a1339f2c',1,'/page/health-professionals/Local Positions Vacant/','','17.121.113.100','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','Template not found: page/health-professionals/Local Positions Vacant','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,817,'2021-05-19 01:30:49',0),(44,'2020-07-06 01:15:47','2021-05-19 01:57:41','ac6016be-a7ce-46a4-9761-0e4bf05b1ec0',1,'/content/Document/Pathways/DASS_21_Scoring.pdf','','203.217.8.123','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36','Template not found: content/Document/Pathways/DASS_21_Scoring.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3012,'2021-05-19 01:57:41',0),(65,'2020-07-06 01:29:04','2021-05-19 03:08:13','e4868e2a-10c5-4b25-99d6-def847453fdf',1,'/page/health-professionals/referral-and-patient-management/Hospital eReferral Templates/','','103.139.104.203','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Safari/605.1.15','Template not found: page/health-professionals/referral-and-patient-management/Hospital eReferral Templates','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3606,'2021-05-19 03:08:13',1),(151,'2020-07-06 02:20:33','2021-05-18 23:00:48','1a64505c-6694-4b83-b95a-bd45031526e6',1,'/page/news-and-events/latest-news/covid-19-information/','','120.146.189.90','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','Template not found: page/news-and-events/latest-news/covid-19-information','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1464,'2021-05-18 23:00:48',0),(154,'2020-07-06 02:20:43','2021-05-18 11:03:13','5885ed61-abf0-49c4-a6e9-0ca24f973b76',1,'/page/news-and-events/latest-news/covid-19-information/fever-clinic-information/','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/latest-news/covid-19-information/fever-clinic-information','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1050,'2021-05-18 11:03:13',1),(234,'2020-07-06 03:13:27','2021-05-18 17:10:28','1e5857cb-5ab0-4578-b516-1919589a5f1c',1,'/page/health-professionals/mental-health-services/','','157.55.39.116','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/mental-health-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,692,'2021-05-18 17:10:28',0),(4263,'2020-07-13 00:32:35','2021-05-18 15:26:34','76554bdf-027d-4c25-99b8-394df6089a0e',1,'/ads.txt','','66.249.68.29','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: ads.txt','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,905,'2021-05-18 15:26:34',0),(7046,'2020-07-20 23:41:33','2021-05-18 21:22:14','e96fd220-2310-4314-999e-8ee675d4d5d4',1,'https://brisbanenorthphn.org.au/yearinreview','','217.19.225.103','Mozilla/5.0 (compatible; OhDear/1.1; +https://ohdear.app/checker; Run 5173959411)','Template not found: yearinreview','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,958,'2021-05-18 21:22:14',1),(13599,'2020-08-11 07:22:55','2021-05-17 19:01:18','2713f996-7b2e-4d49-b0c1-b897bedfa745',1,'/yearinreview/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,396,'2021-05-17 19:01:18',0),(14981,'2020-08-17 01:30:46','2021-05-19 02:59:40','b472f232-6f21-405b-a141-43a5dfa38c22',1,'/news-events/dist/swiper.js','https://brisbanenorthphn.org.au/news-events/newsletters/partners-in-health','165.86.81.71','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','Template not found: news-events/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1569,'2021-05-19 02:59:40',0),(15485,'2020-08-18 10:57:36','2021-05-13 03:25:19','bfd10ae1-fe1d-40aa-83f6-0070985522e8',1,'/news/brisbanenorthphn.org.au/covid-19','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: news/brisbanenorthphn.org.au/covid-19','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,313,'2021-05-13 03:25:19',0),(16404,'2020-08-21 23:46:00','2021-04-12 00:41:39','3234ed7a-0f25-433b-a761-db1eb729025a',1,'/content/Document/Engagement/GUI_Complaints and feedback policy for website.pdf','','103.87.254.78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36','Template not found: content/Document/Engagement/GUI_Complaints and feedback policy for website.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,281,'2021-04-12 00:41:39',0),(16555,'2020-08-22 11:45:12','2021-05-03 04:21:36','bd681bd4-baf7-4999-b431-9083033ba740',1,'/page/about/our-team/directors','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/about/our-team/directors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,276,'2021-05-03 04:21:36',0),(17694,'2020-08-25 00:16:23','2021-05-18 03:24:14','21f44b48-bd1a-4b46-b0e1-823cd98a6eab',1,'/page/health-professionals/dist/swiper.js','https://www.brisbanenorthphn.org.au/page/health-professionals/Local+Positions+Vacant/','49.182.7.14','Mozilla/5.0 (Linux; Android 11; SM-N975F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.210 Mobile Safari/537.36','Template not found: page/health-professionals/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,609,'2021-05-18 03:24:14',0),(17717,'2020-08-25 01:22:18','2021-05-19 02:43:05','db43f360-1347-442f-a00b-109237f0b5b3',1,'/about/careers','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: about/careers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1028,'2021-05-19 02:43:05',1),(24648,'2020-09-24 01:57:05','2021-05-17 16:15:57','aecaa922-30f9-4d0f-8285-11346c0fa4ce',1,'/content/Document/Pathways/Mental State Examination.pdf','','1.127.19.222','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','Template not found: content/Document/Pathways/Mental State Examination.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,873,'2021-05-17 16:15:57',0),(33906,'2020-10-28 11:04:52','2021-05-13 07:53:44','09d66bb3-b3f6-48a5-86b5-1ac38fadfc1e',1,'/events/gpsr-webinar','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/gpsr-webinar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,260,'2021-05-13 07:53:44',0),(34588,'2020-10-30 20:08:25','2021-05-17 08:31:00','c37f1562-6239-42ba-b981-0638d2d22e10',1,'/content/document/pathways/pathways_parenthandout.pdf','','40.77.167.45','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/document/pathways/pathways_parenthandout.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,248,'2021-05-17 08:31:00',0),(37008,'2020-11-07 01:04:53','2021-05-16 12:58:53','41b6f26e-3ddd-4675-bbf3-d1c6bdcdc189',1,'/page/health-professionals/community-care/','','157.90.181.206','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','Template not found: page/health-professionals/community-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,293,'2021-05-16 12:58:53',0),(39679,'2020-11-13 14:35:49','2021-05-18 12:13:20','3d257f52-291f-47a8-95d2-3c8f5d18944a',1,'/page/health-professionals/ndis/','','157.55.39.101','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/ndis','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,302,'2021-05-18 12:13:20',0),(41466,'2020-11-20 09:16:38','2021-05-15 02:53:00','56553755-73f7-4fc0-9d61-dd6f9f129bf6',1,'/page/about/our-team/','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/our-team','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,94,'2021-05-15 02:53:00',0),(42761,'2020-11-25 06:20:39','2021-05-19 02:34:01','98ea14ba-4e61-4ebd-8445-1c207e19e2cd',1,'/page/news-and-events/latest-news/handy-hotline-for-mental-health-service-navigation/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/latest-news/handy-hotline-for-mental-health-service-navigation','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,120,'2021-05-19 02:34:01',0),(43236,'2020-11-26 20:33:53','2021-05-18 11:24:06','885eb873-ba7f-4ac8-bf13-6daa7ca7af4a',1,'/content/Image/Page Banners/Banner_homepage_coronavirusv4.jpg','','173.252.95.40','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: content/Image/Page Banners/Banner_homepage_coronavirusv4.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,257,'2021-05-18 11:24:06',0),(43310,'2020-11-27 01:44:21','2021-05-18 10:10:57','ef3bfffe-edc4-4acc-8bf2-ebf45ecf3895',1,'/page/about/our-region/','','188.34.206.66','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36','Template not found: page/about/our-region','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,180,'2021-05-18 10:10:57',0),(43440,'2020-11-27 11:07:07','2021-05-18 11:31:36','ac2a537b-d6bd-4828-8bb3-42d28a0cd23e',1,'/page/news-and-events/events/archive/common-challenges-in-primary-care-education-series-–-community-health-–-a-gp’s-guide/','','173.212.222.108','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/archive/common-challenges-in-primary-care-education-series-–-community-health-–-a-gp’s-guide','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,59,'2021-05-18 11:31:36',0),(43596,'2020-11-28 03:47:45','2021-05-18 10:41:33','a7814ec3-e302-4d6b-a2fa-314f11a44149',1,'/news-events/newsletters/dist/swiper.js','https://brisbanenorthphn.org.au/news-events/newsletters/partners-in-health/partners-in-health-august-2020','115.188.161.36','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','Template not found: news-events/newsletters/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,143,'2021-05-18 10:41:33',0),(44349,'2020-12-01 15:17:09','2021-05-16 10:01:39','e8b14ba5-bc2d-4fe8-ae38-c60cb1bee203',1,'/page/disclaimer/','','62.210.188.216','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)','Template not found: page/disclaimer','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,134,'2021-05-16 10:01:39',0),(45269,'2020-12-06 10:14:02','2021-05-14 09:06:47','2ec821ae-5f83-417a-8402-c860ba0577ce',1,'/','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Page not found.','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/web/Application.php',581,169,'2021-05-14 09:06:47',0),(45485,'2020-12-07 04:32:42','2021-05-05 23:01:23','0638cef1-da2d-49db-86af-a424338bee24',1,'/.well-known/openpgpkey/policy','','185.70.40.35','GuzzleHttp/7','Template not found: .well-known/openpgpkey/policy','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,73,'2021-05-05 23:01:23',0),(45838,'2020-12-08 05:30:17','2021-05-12 20:52:13','cb01a68a-1c36-466c-9c5a-15326915095e',1,'/media/Opening of headspace Strathpine to improve youth mental health services','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: media/Opening of headspace Strathpine to improve youth mental health services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,154,'2021-05-12 20:52:13',0),(45888,'2020-12-08 10:31:39','2021-05-18 09:21:37','2631bb13-cbb1-40d8-8c1d-be5e897b230f',1,'/favicon.png','','17.121.114.239','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','Template not found: favicon.png','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,249,'2021-05-18 09:21:37',0),(46017,'2020-12-08 19:10:31','2021-05-19 01:07:50','1633a5a6-b859-40c7-b510-45835be1f1f5',1,'/page/health-professionals/mental-health-services/alcohol-and-other-drug-treatment-services/','','17.121.115.146','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','Template not found: page/health-professionals/mental-health-services/alcohol-and-other-drug-treatment-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,63,'2021-05-19 01:07:50',0),(46299,'2020-12-09 17:01:09','2021-05-19 00:31:37','e4321159-c59e-4c31-9376-30d8a3009deb',1,'/practice-support/dist/swiper.js','https://brisbanenorthphn.org.au/practice-support/referral-and-patient-management/my-health-for-life','180.150.45.174','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','Template not found: practice-support/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,262,'2021-05-19 00:31:37',0),(46355,'2020-12-09 22:24:54','2021-05-18 14:55:48','ed5d172d-f7e8-46e5-a0e2-aae3046fb660',1,'/page/health-professionals/team-care-coordination/','','157.55.39.98','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/team-care-coordination','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,138,'2021-05-18 14:55:48',0),(46417,'2020-12-10 04:24:23','2021-05-18 09:45:32','b6fa9f3a-f54f-4a4e-9b7a-f5484fc50470',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/brisbane-mind/','','138.217.160.20','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.128 Safari/537.36','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services/brisbane-mind','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,156,'2021-05-18 09:45:32',0),(46418,'2020-12-10 04:24:28','2021-05-16 12:58:34','c6507b13-e12f-4055-868d-04cb9940b4ee',1,'/page/health-professionals/mental-health-services/partners-in-recovery/','','35.189.0.46','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','Template not found: page/health-professionals/mental-health-services/partners-in-recovery','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,247,'2021-05-16 12:58:34',0),(46587,'2020-12-10 06:55:32','2021-05-17 19:35:57','7caaeb44-fa1e-4fa9-beb2-8f509f966903',1,'/page/about/commissioning/consortium-and-commissioning-toolkit/','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/commissioning/consortium-and-commissioning-toolkit','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,137,'2021-05-17 19:35:57',0),(48347,'2020-12-17 05:06:24','2021-05-18 06:09:07','4b25a605-1b79-479f-bda3-1e6c1c21e5f1',1,'/Publications/Network Link/Issues/2021/1. January/planningforwellbeing.org.au','','40.77.167.15','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: Publications/Network Link/Issues/2021/1. January/planningforwellbeing.org.au','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,134,'2021-05-18 06:09:07',0),(49852,'2020-12-19 09:41:26','2021-05-19 01:47:29','9787c204-4e68-4bde-a3dd-61849c56cdac',1,'/scripts/image.php','','40.77.167.16','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: scripts/image.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1839,'2021-05-19 01:47:29',0),(49934,'2020-12-19 23:16:20','2021-05-17 07:19:07','7edc5caf-a47e-441d-8a13-5d0a00b281e9',1,'/page/dist/swiper.js','https://www.brisbanenorthphn.org.au/page/home/metro-north-health-forum','114.119.131.207','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,188,'2021-05-17 07:19:07',0),(50003,'2020-12-20 05:46:00','2021-05-12 03:48:20','4bd69503-02e3-4e26-9568-3c123f7508db',1,'/page/health-professionals/referral-and-patient-management/other-ereferral-templates/','','144.76.60.198','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/health-professionals/referral-and-patient-management/other-ereferral-templates','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,73,'2021-05-12 03:48:20',0),(50019,'2020-12-20 07:03:14','2021-05-17 13:26:26','cb739065-d900-493a-9b05-bded86f12faa',1,'/page/news-and-events/latest-news/','','40.77.167.15','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,130,'2021-05-17 13:26:26',0),(50029,'2020-12-20 07:22:09','2021-05-16 22:58:36','b8da9199-e123-4412-9f18-60b17ce7e79f',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-–-narangba-doctors/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-–-narangba-doctors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,173,'2021-05-16 22:58:36',0),(50045,'2020-12-20 09:37:25','2021-05-18 06:26:59','790a40ac-0840-4a87-8e56-5cc4117953ef',1,'/content/dist/swiper.js','https://www.brisbanenorthphn.org.au/content/Document/BNPHN_Understanding_Your_Role_NDIS_GP_Toolkit_May2018_FINAL_WEB.pdf','131.242.9.4','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36 Edg/90.0.818.62','Template not found: content/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1627,'2021-05-18 06:26:59',0),(50108,'2020-12-20 16:51:28','2021-05-19 01:03:46','c4399736-e74f-4886-af28-691e662d7a21',1,'/content/Document/Templates/SaAS-PACS-INFOSHEET.pdf','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Templates/SaAS-PACS-INFOSHEET.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,112,'2021-05-19 01:03:46',0),(50140,'2020-12-20 22:26:59','2021-05-16 23:03:23','5c11d9a1-7d36-4c6a-8f65-0e45e725f4d5',1,'/page/health-professionals/community-care/geriatric-outreach-assessment-service/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/health-professionals/community-care/geriatric-outreach-assessment-service','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,193,'2021-05-16 23:03:23',0),(50163,'2020-12-20 22:35:45','2021-05-16 23:27:52','b0a2f427-a4a2-4293-8c08-76f3d370fb4e',1,'/page/news-and-events/events/upcoming/‘my-health-record-in-pharmacy’-workshop---lutwyche/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/‘my-health-record-in-pharmacy’-workshop---lutwyche','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,56,'2021-05-16 23:27:52',0),(50182,'2020-12-20 23:43:31','2021-05-19 01:57:02','9e9a853f-ef8a-4f34-a827-b29c23cd3f16',1,'/content/Document/Statement%20of%20Intent_PHN_SIGNED%20BY%20ANITA.pdf','http://www.brisbanenorthphn.org.au/content/Document/Statement%2520of%2520Intent_PHN_SIGNED%2520BY%2520ANITA.pdf','3.84.147.102','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36','Template not found: content/Document/Statement of Intent_PHN_SIGNED BY ANITA.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,605,'2021-05-19 01:57:02',0),(50186,'2020-12-21 00:03:29','2021-05-19 02:34:59','04f91cbf-bc43-4f80-8e15-89861d5f0056',1,'/about/cmVjb25jaW','','20.46.108.116','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36','Template not found: about/cmVjb25jaW','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2559,'2021-05-19 02:34:59',0),(50219,'2020-12-21 05:32:01','2021-05-19 02:08:58','301dba08-4788-4a1b-b80a-222d14ed4875',1,'/users/dist/swiper.js','https://brisbanenorthphn.org.au/users/job/create','59.100.211.162','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','Template not found: users/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,308,'2021-05-19 02:08:58',0),(50234,'2020-12-22 05:13:06','2021-05-18 23:45:20','ba1b08eb-f71c-46d1-9def-4673f566d658',1,'/page/news-and-events/health-alerts/','','40.77.167.35','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/health-alerts','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,91,'2021-05-18 23:45:20',0),(50259,'2020-12-22 11:59:41','2021-05-18 21:15:49','e2539694-ba47-459d-ba9b-c54db7fc0de1',1,'/yearinreview','','217.19.225.103','Mozilla/5.0 (compatible; OhDear/1.1; +https://ohdear.app/checker; Run 5173959411)','Template not found: yearinreview','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,208,'2021-05-18 21:15:49',0),(50263,'2020-12-22 12:30:48','2021-05-18 18:53:28','09f01ff4-4473-4ef7-bb5f-a1799b94ca0f',1,'/wp-login.php','','119.29.159.20','Apache-HttpClient/4.5.2 (Java/1.8.0_161)','Template not found: wp-login.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,780,'2021-05-18 18:53:28',0),(50288,'2020-12-22 17:50:00','2021-04-23 06:12:07','d0ffe802-422c-4dfa-b551-61a597d1bb40',1,'/content/Document/Specialists List_RBWH_4_11.pdf','','168.119.11.187','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Safari/605.1.15','Template not found: content/Document/Specialists List_RBWH_4_11.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,25,'2021-04-23 06:12:07',0),(50341,'2020-12-23 01:04:51','2021-05-16 12:06:12','6d5d5d42-1972-4c30-b4da-9bf0d8742850',1,'/page/news-and-events/events/','','66.249.69.33','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,207,'2021-05-16 12:06:12',0),(50392,'2020-12-23 04:54:12','2021-05-17 11:09:02','4451753b-f3bb-4ddc-9ea9-d85f609f28bd',1,'/content/Document/Pathways/CEWT 1-4 YEARS.pdf','','49.199.218.27','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Safari/605.1.15','Template not found: content/Document/Pathways/CEWT 1-4 YEARS.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,95,'2021-05-17 11:09:02',0),(50417,'2020-12-23 06:43:01','2021-05-17 06:09:34','a757715c-9d91-4a08-a87d-279083a782ad',1,'/page/health-professionals/mental-health-services/dist/swiper.js','https://www.brisbanenorthphn.org.au/page/health-professionals/mental-health-services/brisbane-mind4kids/','103.87.254.78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','Template not found: page/health-professionals/mental-health-services/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,87,'2021-05-17 06:09:34',0),(50443,'2020-12-23 08:40:31','2021-05-16 10:00:59','123cedba-9577-4742-9b10-0c16474ef8a9',1,'/page/contact-us/','','62.210.188.216','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)','Template not found: page/contact-us','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,272,'2021-05-16 10:00:59',0),(50486,'2020-12-23 13:54:41','2021-05-13 06:59:34','c2d6e379-4d44-4304-b602-6c889f337350',1,'/content/Document/PHN MBS resource_final_2016_2.pdf','','66.249.66.152','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/PHN MBS resource_final_2016_2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,157,'2021-05-13 06:59:34',0),(50578,'2020-12-23 22:00:14','2021-05-16 10:06:34','9c00f5a0-b25e-4b1d-b9dd-68038d1cf3e1',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/','','62.210.188.216','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,143,'2021-05-16 10:06:34',0),(50811,'2020-12-25 02:48:28','2021-05-18 10:25:31','80849b1c-848b-4d87-8ef3-218062e4fc32',1,'/page/health-professionals/community-care/palliative-care/','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/community-care/palliative-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,47,'2021-05-18 10:25:31',0),(51002,'2020-12-26 01:41:39','2021-05-16 13:49:38','40e3121a-2113-4f2d-bcf7-79dafc1022ff',1,'/page/contact-us','','185.191.171.15','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)','Template not found: page/contact-us','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,99,'2021-05-16 13:49:38',0),(51308,'2020-12-28 06:50:00','2021-05-12 16:31:03','d9dc810c-48a2-4dca-a9c1-dc760da915a9',1,'//.env','','143.198.114.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0','Template not found: .env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,61,'2021-05-12 16:31:03',0),(51503,'2020-12-30 00:01:31','2021-05-17 06:25:43','be0501a6-ef05-45bb-93ba-5f357b132aca',1,'/page/health-professionals/immunisation/resources/','','103.87.254.78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','Template not found: page/health-professionals/immunisation/resources','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,109,'2021-05-17 06:25:43',0),(51862,'2021-01-01 15:04:50','2021-05-13 01:58:23','d2929ece-7567-4f6e-88e4-7003c04d7c20',1,'/page/about/our-team/senior-staff/','','66.249.66.154','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/about/our-team/senior-staff','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,59,'2021-05-13 01:58:23',0),(53364,'2021-01-12 23:55:27','2021-05-16 01:31:51','da79c46b-69fd-4888-b03a-f2ee07a0c7fa',1,'/news/opening-of-headspace-strathpine-to-improve-youth-mental-health-services','https://brisbanenorthclassic.communityhealthpathways.org/228400.htm','202.124.113.82','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko','Template not found: news/opening-of-headspace-strathpine-to-improve-youth-mental-health-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,105,'2021-05-16 01:31:51',1),(53404,'2021-01-13 05:32:16','2021-05-15 01:41:40','c4a96c69-de84-4851-8c32-5f7f514cd6f5',1,'/.well-known/apple-app-site-association','https://brisbanenorthphn.org.au/','35.238.94.223','Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Mobile Safari/537.36 PTST/210514.195132','Template not found: .well-known/apple-app-site-association','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,49,'2021-05-15 01:41:40',0),(53459,'2021-01-13 11:17:00','2021-05-09 16:30:17','11850f8d-a769-492b-ad4a-b42d38575926',1,'/content/Document/Brisbane MIND Group Therapy Listing Feb 19 V1.pdf','http://www.brisbanenorthphn.org.au/content/Document/Brisbane%20MIND%20Group%20Therapy%20Listing%20Feb%2019%20V1.pdf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Brisbane MIND Group Therapy Listing Feb 19 V1.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-09 16:30:17',0),(53632,'2021-01-14 06:35:21','2021-05-17 12:10:59','31e2447c-91a0-48b7-9687-8a8ed4a4bd36',1,'/our-programs/aged-and-community-care/dist/swiper.js','','40.77.188.144','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b','Template not found: our-programs/aged-and-community-care/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,99,'2021-05-17 12:10:59',0),(53693,'2021-01-14 16:30:47','2021-05-17 06:25:44','76772a42-375f-4166-a2ed-209cf4915aed',1,'/page/health-professionals/immunisation/dist/swiper.js','https://www.brisbanenorthphn.org.au/page/health-professionals/immunisation/resources/','103.87.254.78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','Template not found: page/health-professionals/immunisation/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,67,'2021-05-17 06:25:44',0),(53943,'2021-01-15 09:56:20','2021-05-13 08:57:29','a6524db1-767d-4d03-9115-bdfb492f877d',1,'/page/about/commissioning/','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/commissioning','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,67,'2021-05-13 08:57:29',0),(54032,'2021-01-15 21:49:22','2021-05-12 19:02:25','1d5bcc16-8d06-4bb7-a210-ad7d2903b1c0',1,'/content/Document/Pathways/Orebro_Questionnaire.pdf','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/Orebro_Questionnaire.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,77,'2021-05-12 19:02:25',0),(54060,'2021-01-16 01:24:59','2021-05-16 01:35:14','780c9ba9-7395-43d0-bd78-227e751c55e7',1,'/content/Document/Templates/Brisbane MIND/Brisbane MIND Provider SummaryV1_HP formatted.pdf','http://www.brisbanenorthphn.org.au/content/Document/Templates/Brisbane%20MIND/Brisbane%20MIND%20Provider%20SummaryV1_HP%20formatted.pdf','202.124.113.82','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko','Template not found: content/Document/Templates/Brisbane MIND/Brisbane MIND Provider SummaryV1_HP formatted.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,54,'2021-05-16 01:35:14',0),(54140,'2021-01-16 13:21:51','2021-05-12 22:52:30','845b2ccf-a947-46e7-83c1-6736b7f22f88',1,'/.git/config','','139.162.174.45','lkxscan/v0.1.0 (+https://leakix.net) l9explore/v1.0.0 (+https://github.com/LeakIX/l9explore)','Template not found: .git/config','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,35,'2021-05-12 22:52:30',0),(54240,'2021-01-16 23:38:44','2021-05-16 21:17:23','be4e501d-e132-4feb-ad9a-63e362192a16',1,'/page/news-and-events/latest-news/kenmore-clinics-swings-into-action/','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/kenmore-clinics-swings-into-action','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,14,'2021-05-16 21:17:23',0),(54341,'2021-01-17 14:21:39','2021-05-11 14:17:29','123e177f-3ae0-412c-8188-6c4e2ff1159b',1,'/content/Document/Templates/4.5/Specialists List_Caboolture Hospital_4.5 (DRAFT).pdf','','88.198.90.9','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36','Template not found: content/Document/Templates/4.5/Specialists List_Caboolture Hospital_4.5 (DRAFT).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,24,'2021-05-11 14:17:29',0),(54452,'2021-01-18 06:04:57','2021-05-16 05:41:46','3ec16f35-3c3b-4f35-86fc-6e25bb32951f',1,'/jobs/general-practitioner-vr-doctor','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/general-practitioner-vr-doctor','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,44,'2021-05-16 05:41:46',0),(54625,'2021-01-19 05:55:54','2021-05-17 10:15:47','178075cf-df6c-4f7e-b6ea-9a567d3360c1',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/brisbane-mind4kids-0---11-years','','173.252.87.13','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services/brisbane-mind4kids-0---11-years','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,66,'2021-05-17 10:15:47',0),(54635,'2021-01-19 07:15:06','2021-05-17 22:17:59','a8204dd4-c295-4dd9-8a6c-9dce7741637c',1,'/wordpress/wp-admin/','http://brisbanenorthphn.org.au/','173.254.104.205','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','Template not found: wordpress/wp-admin','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-17 22:17:59',0),(54674,'2021-01-19 16:53:58','2021-05-11 22:28:19','14f15bbf-2116-415f-98da-e1cd170ed182',1,'/events/pallipharm-workshop-5','https://www.caresearch.com.au/','144.140.229.78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.75 Safari/537.36','Template not found: events/pallipharm-workshop-5','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,333,'2021-05-11 22:28:19',0),(54733,'2021-01-20 02:05:08','2021-05-18 09:16:02','1e961b2b-dcc0-450e-8f0e-d2b8c0ff91d5',1,'/page/health-professionals/Medical Assisting/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Medical Assisting','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,37,'2021-05-18 09:16:02',0),(54737,'2021-01-20 03:13:58','2021-05-16 07:47:23','eaadac5a-2c93-41a3-b385-0dca5c634f6e',1,'/page/news-and-events/latest-news/new-five-year-healthcare-plan-for-older-people/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/new-five-year-healthcare-plan-for-older-people','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,44,'2021-05-16 07:47:23',0),(54781,'2021-01-20 06:32:48','2021-05-09 05:10:20','ba4deecf-743a-47ae-a680-19a0949483f4',1,'/content/Document/Network Link_12_December_FINAL_WEB_LOWRES.pdf','https://www.brisbanenorthphn.org.au/content/Document/Network%20Link_12_December_FINAL_WEB_LOWRES.pdf','46.148.206.226','Mozilla/5.0 (Windows NT 10.0; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36 Edg/83.0.478.25','Template not found: content/Document/Network Link_12_December_FINAL_WEB_LOWRES.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,25,'2021-05-09 05:10:20',0),(54863,'2021-01-20 16:00:59','2021-05-17 18:23:05','e7a52b7e-4ba8-4b51-9c2b-fa0ddcdd9b2f',1,'/content/Document/Pathways/Pre-test probability of CAD based on symptoms sex and age_link.pdf','','173.252.83.17','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: content/Document/Pathways/Pre-test probability of CAD based on symptoms sex and age_link.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,89,'2021-05-17 18:23:05',0),(54891,'2021-01-20 18:56:27','2021-05-17 21:38:33','31db471b-59ce-438b-aca4-1e6b1d0fdebc',1,'/page/news-and-events/events/upcoming/boom-days-–-maternal-fetal-medicine-and-basics-of-obstetric-medicine-conference/','','144.76.118.82','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/boom-days-–-maternal-fetal-medicine-and-basics-of-obstetric-medicine-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,41,'2021-05-17 21:38:33',0),(54892,'2021-01-20 18:56:51','2021-05-17 21:38:37','114c91d2-ec07-4393-ac86-df0b7e74c674',1,'/page/news-and-events/events/upcoming/flattening-the-curve-of-mental-ill-health’-webinar-series-2-16-june/','','144.76.118.82','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/flattening-the-curve-of-mental-ill-health’-webinar-series-2-16-june','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,49,'2021-05-17 21:38:37',0),(54893,'2021-01-20 18:57:18','2021-05-17 21:38:42','a9a4a8b4-a7b1-426d-bfe0-a7c44e8e7420',1,'/page/news-and-events/events/upcoming/healthy-eating-activity-and-lifestyle-heal™-facilitator-training/','','144.76.118.82','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/healthy-eating-activity-and-lifestyle-heal™-facilitator-training','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,44,'2021-05-17 21:38:42',0),(54894,'2021-01-20 18:57:42','2021-05-17 21:38:47','6a717221-9a13-4c33-a8a5-ae1e54e892d4',1,'/page/news-and-events/events/upcoming/parkinson’s-disease-and-device-assisted-therapy-education-day/','','144.76.118.82','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/parkinson’s-disease-and-device-assisted-therapy-education-day','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,41,'2021-05-17 21:38:47',0),(54895,'2021-01-20 18:57:58','2021-05-17 21:38:53','830af90a-4b7d-4ee5-80d5-b593f2a3fa42',1,'/page/news-and-events/latest-news/brisbane-north-phn’s-covid-19-response/','','144.76.118.82','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/brisbane-north-phn’s-covid-19-response','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,47,'2021-05-17 21:38:53',0),(54896,'2021-01-20 18:58:19','2021-05-17 21:38:57','304688c7-dddf-4103-a563-b66045f81a10',1,'/page/news-and-events/latest-news/practice-incentives-program-pip-quality-improvement-qi-incentive-payment-update-–-november-2019/','','144.76.118.82','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/practice-incentives-program-pip-quality-improvement-qi-incentive-payment-update-–-november-2019','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,52,'2021-05-17 21:38:57',0),(54973,'2021-01-21 04:44:29','2021-05-16 09:58:08','e2294231-c90b-422c-b1c2-d2b5cc89bed4',1,'/jobs/program-support-officer-knowledge-planning-and-performance','','62.210.188.216','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)','Template not found: jobs/program-support-officer-knowledge-planning-and-performance','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,21,'2021-05-16 09:58:08',0),(54974,'2021-01-21 04:44:43','2021-05-18 05:04:22','32a30bab-4fa3-4713-960e-b1180605f5a0',1,'/position-type/dist/swiper.js','https://brisbanenorthphn.org.au/position-type/practice-nurse/p2','103.87.254.78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','Template not found: position-type/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,194,'2021-05-18 05:04:22',0),(54985,'2021-01-21 06:13:30','2021-05-07 11:14:31','0ec72053-581a-498a-bf39-7312bce178ef',1,'/content/Document/Palliative_Care_Support Pathway_v1_0_Feb2017_WEB.pdf','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Palliative_Care_Support Pathway_v1_0_Feb2017_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,42,'2021-05-07 11:14:31',0),(55022,'2021-01-21 12:09:21','2021-05-13 23:37:58','8a52b387-d54a-4cfe-bf30-e0b4857bd321',1,'/bush-fires','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: bush-fires','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,91,'2021-05-13 23:37:58',0),(55023,'2021-01-21 12:14:19','2021-05-10 23:24:13','d5a501fa-6e25-4910-8361-234984c11174',1,'/jobs/medical-receptionist-5','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/medical-receptionist-5','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,74,'2021-05-10 23:24:13',0),(55028,'2021-01-21 12:37:18','2021-05-18 22:19:57','38c1cb5e-e987-468d-876f-7b868d9332cc',1,'/jobs/casual-registered-nurse','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/casual-registered-nurse','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,50,'2021-05-18 22:19:57',0),(55065,'2021-01-21 18:15:50','2021-05-16 01:24:00','d17efbbf-af89-4dbd-96c7-685231db4753',1,'/page/news-and-events/latest-news/after-hours-medical-help-made-easier/','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/after-hours-medical-help-made-easier','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,44,'2021-05-16 01:24:00',0),(55093,'2021-01-21 21:38:31','2021-05-18 19:58:01','ec60bb7e-f341-4ebf-bbcb-ede1ddbcd7a4',1,'/page/health-professionals/referral-and-patient-management/','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/referral-and-patient-management','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,57,'2021-05-18 19:58:01',0),(55095,'2021-01-21 22:07:53','2021-05-14 01:30:10','7f9991ea-5f17-4e57-9caf-3fb7056f413e',1,'/page/health-professionals/mental-health-services/services-for-people-with-severe-mental-illness/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/services-for-people-with-severe-mental-illness','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,53,'2021-05-14 01:30:10',0),(55102,'2021-01-21 23:14:42','2021-05-17 17:25:22','589b0dd5-52f1-42da-a727-2f63e1072048',1,'/page/health-professionals/','','157.90.181.206','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','Template not found: page/health-professionals','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,69,'2021-05-17 17:25:22',0),(55132,'2021-01-22 02:01:17','2021-05-18 08:54:04','d4808421-05cd-4b68-b061-6ad660112b37',1,'/img/logo.png','','66.220.149.49','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: img/logo.png','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,93,'2021-05-18 08:54:04',0),(55177,'2021-01-22 07:01:26','2021-05-16 08:14:05','53ba0903-3b84-4494-9fcd-9e225c3e720b',1,'/page/news-and-events/latest-news/palliative-care-scholarships-upskill-local-nursing-workforce/','','185.191.171.38','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)','Template not found: page/news-and-events/latest-news/palliative-care-scholarships-upskill-local-nursing-workforce','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,41,'2021-05-16 08:14:05',0),(55249,'2021-01-22 18:45:07','2021-05-12 03:46:18','2a4ec3d7-c93f-46be-b8bb-de9e0ff8b05a',1,'/page/health-professionals/closing-the-gap/','','144.76.60.198','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/health-professionals/closing-the-gap','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,32,'2021-05-12 03:46:18',0),(55261,'2021-01-22 21:13:51','2021-05-13 10:40:05','bfbc0437-8326-447a-bea6-e711e1c32f11',1,'/content/Document/Healthy@Home_Profile_Feb2016_FINAL_lowres.pdf','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Healthy@Home_Profile_Feb2016_FINAL_lowres.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,22,'2021-05-13 10:40:05',0),(55353,'2021-01-23 13:36:43','2021-05-15 07:30:10','95778f8d-2786-4445-bcb0-0bd38a283647',1,'/content/Document/Pathways/Medicare Cards in Australia.pdf','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Medicare Cards in Australia.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,34,'2021-05-15 07:30:10',0),(55610,'2021-01-25 02:43:58','2021-05-19 02:38:25','4170a681-c303-42cd-8055-743cd4adc2db',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/brisbane-mind4kids-0---11-years/','','203.194.47.73','Mozilla/5.0 (iPhone; CPU iPhone OS 14_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1 Mobile/15E148 Safari/604.1','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services/brisbane-mind4kids-0---11-years','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,111,'2021-05-19 02:38:25',0),(55700,'2021-01-25 08:00:36','2021-05-12 03:25:07','9074f3e6-9167-4cc2-8fe8-1417ce27c8e2',1,'/content/Document/LINK G_Patient handouts.pdf','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/LINK G_Patient handouts.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,19,'2021-05-12 03:25:07',0),(55708,'2021-01-25 10:07:01','2021-05-19 01:30:14','9030ee86-9693-420c-8b31-359ea6161df3',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---everton-hills/','','17.121.113.100','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---everton-hills','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,25,'2021-05-19 01:30:14',0),(55907,'2021-01-27 03:12:32','2021-05-17 23:18:34','393adf3c-e315-4d7e-a0aa-27a4e553829a',1,'/jobs/clinical-nurse-team-care-coordination','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/clinical-nurse-team-care-coordination','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,65,'2021-05-17 23:18:34',0),(55967,'2021-01-27 16:03:56','2021-05-15 10:17:30','baf39eb2-3aa5-4a29-8439-ecb7a54a63a0',1,'/jobs/corrie-st-medical-clinic-weekday-weekend-positions-available-vr-non-vr-welcome-to-apply','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/corrie-st-medical-clinic-weekday-weekend-positions-available-vr-non-vr-welcome-to-apply','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,55,'2021-05-15 10:17:30',0),(56034,'2021-01-28 12:05:32','2021-05-09 20:17:27','f489f0ad-4073-4550-8c0c-cf94621ea04d',1,'/page/news-and-events/latest-news/the-pip-quality-improvement-incentive-has-started/humanservices.gov.au/hpos','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/the-pip-quality-improvement-incentive-has-started/humanservices.gov.au/hpos','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,79,'2021-05-09 20:17:27',0),(56067,'2021-01-28 22:47:30','2021-05-16 10:25:56','e799e4ca-5bdf-4b0b-ab8d-def60cdf4fa5',1,'/jobs/medical-receptionist---casual','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/medical-receptionist---casual','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,76,'2021-05-16 10:25:56',0),(56212,'2021-01-30 07:31:22','2021-05-04 22:16:54','23b742fe-d104-43e5-a0bf-208c1e6780bf',1,'/page/about/our-planning/','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/our-planning','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,14,'2021-05-04 22:16:54',0),(56679,'2021-02-02 15:04:34','2021-05-14 15:10:26','f2bcdd06-521f-458d-8d01-b87720ae46f3',1,'/jobs/pebble-beach-medical-centre-practice-nurse','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/pebble-beach-medical-centre-practice-nurse','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,53,'2021-05-14 15:10:26',0),(56685,'2021-02-02 17:11:40','2021-05-18 20:00:19','fefa5250-113c-44bf-b2c8-aad6b91fd435',1,'/content/Image/GP with older patient - low res.jpg','','66.249.68.29','Googlebot-Image/1.0','Template not found: content/Image/GP with older patient - low res.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,31,'2021-05-18 20:00:19',0),(56687,'2021-02-02 17:46:42','2021-04-21 18:14:04','8b4a90af-1c35-4feb-9102-2b9694dd0891',1,'//storage/.env','','180.252.57.115','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36','Template not found: storage/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-04-21 18:14:04',0),(56688,'2021-02-02 17:46:48','2021-04-21 18:14:07','a7b1f7e1-49bc-4c70-9a16-a0610b53a767',1,'//public/.env','','180.252.57.115','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36','Template not found: public/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-04-21 18:14:07',0),(56901,'2021-02-04 04:36:14','2021-05-18 03:35:44','710d671f-5db6-4aba-90bb-b17f1c529117',1,'/jobs/locum-opportunity','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/locum-opportunity','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,39,'2021-05-18 03:35:44',0),(56910,'2021-02-04 09:07:57','2021-04-24 00:42:01','5b69da80-715e-4fe6-ab7e-15586c614ad9',1,'/content/Document/Templates/V5.1 Jan 2018/Specialist lists/Specialists List_Caboolture Hospital_5_1.pdf','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/V5.1 Jan 2018/Specialist lists/Specialists List_Caboolture Hospital_5_1.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-04-24 00:42:01',0),(56989,'2021-02-05 02:18:25','2021-05-18 21:14:00','b6a8a96e-915e-496d-947c-801d75c383bc',1,'/media/multimedia/anytime-health-advice-campaign','','217.19.225.103','Mozilla/5.0 (compatible; OhDear/1.1; +https://ohdear.app/checker; Run 5173959411)','Template not found: media/multimedia/anytime-health-advice-campaign','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,116,'2021-05-18 21:14:00',1),(56996,'2021-02-05 05:39:21','2021-05-19 00:46:14','4ef6ea9f-cf8d-49f1-9652-17c13a414dd8',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---wavell-heights/','','17.121.114.6','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---wavell-heights','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-19 00:46:14',0),(56997,'2021-02-05 07:03:10','2021-05-10 01:38:48','d2ace32b-5629-4642-aa39-88182f0ff887',1,'/page/health-professionals/mental-health-services/brisbane-mind/','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/brisbane-mind','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,22,'2021-05-10 01:38:48',0),(57023,'2021-02-05 15:19:51','2021-05-17 08:47:18','099f11c8-cecb-4201-a59c-761227b89156',1,'/events/curing-hepatitis-c-in-primary-care','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/curing-hepatitis-c-in-primary-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,43,'2021-05-17 08:47:18',0),(57080,'2021-02-06 16:56:58','2021-05-18 22:01:18','2b5d11a3-1934-4d78-8b1c-5e95e196088b',1,'/page/health-professionals/Local Positions Vacant/other-health-professional---hamilton/','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/other-health-professional---hamilton','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,14,'2021-05-18 22:01:18',0),(57107,'2021-02-06 22:52:42','2021-05-18 09:18:45','802f7646-22de-4478-b785-6b32c269a9f0',1,'/content/Image/News Images/suicide banner.jpg','','69.171.251.11','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: content/Image/News Images/suicide banner.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,64,'2021-05-18 09:18:45',0),(57130,'2021-02-07 02:05:45','2021-05-14 14:11:45','d14172a8-7086-4ef5-956b-a262fe11f174',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---brighton/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---brighton','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,16,'2021-05-14 14:11:45',0),(57137,'2021-02-07 03:32:28','2021-05-16 07:38:36','879b03e2-d69f-44fa-9eab-a2fa1901175d',1,'/page/news-and-events/latest-news/gp-input-sought-for-national-suicide-prevention-trial/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/gp-input-sought-for-national-suicide-prevention-trial','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,22,'2021-05-16 07:38:36',0),(57193,'2021-02-07 06:33:39','2021-05-13 01:23:52','be19213c-bc40-4df8-a6c2-efdbffc378ed',1,'/vod-type-id-3-type--area-香港-year--star--state--order-addtime.html','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type--area-香港-year--star--state--order-addtime.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-13 01:23:52',0),(57321,'2021-02-07 20:57:35','2021-05-12 17:09:59','ea7a0257-0a7f-41bf-9e35-b99b43f2f2f5',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---bridgeman-downs/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---bridgeman-downs','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-12 17:09:59',0),(57336,'2021-02-07 23:04:29','2021-05-10 11:59:09','504fa600-284e-40a1-a258-60c7258ab64c',1,'/page/health-professionals/community-care/dist/swiper.js','https://www.brisbanenorthphn.org.au/page/health-professionals/community-care/yellow-envelope/','110.32.245.20','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36 Edg/90.0.818.56','Template not found: page/health-professionals/community-care/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,27,'2021-05-10 11:59:09',0),(57359,'2021-02-07 23:37:16','2021-05-11 03:43:17','c3456944-f013-4bc5-a917-3029b9be855f',1,'/page/home/style-guide/tab-listing/item-1/','','134.195.89.70','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/home/style-guide/tab-listing/item-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-11 03:43:17',0),(57466,'2021-02-07 23:51:02','2021-05-05 01:09:08','5a18f97d-4f95-4a70-93ba-729a8fa0d816',1,'/page/news-and-events/latest-news/changes-to-spirometry-medicare-benefits-schedule-item-numbers/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/changes-to-spirometry-medicare-benefits-schedule-item-numbers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,24,'2021-05-05 01:09:08',0),(57469,'2021-02-07 23:51:30','2021-05-01 04:02:44','b5fff223-ce24-430c-826c-e1a490ae5f6a',1,'/page/news-and-events/latest-news/conference-scholarship-for-outstanding-medical-student/','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/conference-scholarship-for-outstanding-medical-student','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-01 04:02:44',0),(57474,'2021-02-07 23:52:08','2021-05-17 05:12:20','fdd47805-8115-4ec2-9184-14c08c2fbb11',1,'/page/news-and-events/latest-news/copd-project-in-focus-for-lung-health-awareness/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/copd-project-in-focus-for-lung-health-awareness','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,25,'2021-05-17 05:12:20',0),(57495,'2021-02-08 04:03:16','2021-05-18 02:17:15','bf764f06-cbc0-4494-afa2-24eb50d32c75',1,'/content/Document/Templates/Brisbane MIND/New mental health services in Brisbane North 2019.pdf','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Templates/Brisbane MIND/New mental health services in Brisbane North 2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,32,'2021-05-18 02:17:15',0),(57519,'2021-02-08 06:28:18','2021-05-13 17:45:05','fe1a5783-23ff-46fa-9b27-3e5ba59fdf8c',1,'/data/admin/allowurl.txt','','39.103.221.53','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:48.0) Gecko/20100101 Firefox/48.0','Template not found: data/admin/allowurl.txt','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,37,'2021-05-13 17:45:05',0),(57542,'2021-02-08 07:07:42','2021-05-12 17:25:27','91fb3c7c-aace-4f33-8bb2-fd3c133ebee6',1,'/page/health-professionals/mental-health-services/brisbane-mind/carers-and-consumers/','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/brisbane-mind/carers-and-consumers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,17,'2021-05-12 17:25:27',0),(57543,'2021-02-08 07:08:24','2021-05-13 21:56:55','f96c6f52-6a25-4048-a13f-98289e8d48dd',1,'/page/health-professionals/mental-health-services/brisbane-mind/information-for-gps/','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/brisbane-mind/information-for-gps','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,14,'2021-05-13 21:56:55',0),(57544,'2021-02-08 07:09:25','2021-05-14 01:58:41','e4b6bb56-c3e7-43e8-9726-8f0e2b59ca2f',1,'/page/health-professionals/mental-health-services/brisbane-mind/information-for-providers/','','144.76.38.10','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/health-professionals/mental-health-services/brisbane-mind/information-for-providers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-14 01:58:41',0),(57550,'2021-02-08 07:23:47','2021-05-10 09:54:39','2eed7d26-ab59-4cfa-ab2d-166f4fe2ddd4',1,'/page/health-professionals/referral-and-patient-management/directories/national-health-service-directory/','','95.217.228.46','\'Mozilla/5.0 (compatible; Seekport Crawler; http://seekport.com/\'','Template not found: page/health-professionals/referral-and-patient-management/directories/national-health-service-directory','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,14,'2021-05-10 09:54:39',0),(57552,'2021-02-08 07:27:04','2021-05-18 17:27:13','4f0da222-c3b0-4c26-a270-dd8fd4bceb27',1,'/page/health-professionals/multicultural-health/','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/multicultural-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,23,'2021-05-18 17:27:13',0),(57592,'2021-02-08 10:45:54','2021-05-02 10:37:22','4341a48a-fdd1-4465-832a-19e86dd8a72b',1,'/fckeditor/editor/filemanager/connectors/php/upload.php','','20.64.86.156','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0','Template not found: fckeditor/editor/filemanager/connectors/php/upload.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,16,'2021-05-02 10:37:22',0),(57616,'2021-02-08 16:38:49','2021-05-18 13:49:33','ca40bedd-895b-4060-8c89-11f927885ce2',1,'/yearinreview/connecting-communities-to-primary-care/','','157.55.39.23','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: yearinreview/connecting-communities-to-primary-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,52,'2021-05-18 13:49:33',0),(57632,'2021-02-08 20:45:22','2021-05-18 17:08:01','434e5d52-4810-4d2d-893d-136c10626084',1,'/img/location-map1.png','','66.249.68.2','Googlebot-Image/1.0','Template not found: img/location-map1.png','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,31,'2021-05-18 17:08:01',0),(57633,'2021-02-08 20:54:05','2021-05-18 00:05:41','84a3a5fb-01cb-4b7d-b251-f18f012a9036',1,'/.well-known/security.txt','http://brisbanenorthphn.org.au/.well-known/security.txt','64.227.50.5','Go-http-client/1.1','Template not found: .well-known/security.txt','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,62,'2021-05-18 00:05:41',0),(57662,'2021-02-09 01:33:08','2021-04-29 19:12:53','692ff50c-6c52-49d1-9647-ebb53b8a82aa',1,'/jobs/ft-pt-male-gp-required-in-new-farm-area','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/ft-pt-male-gp-required-in-new-farm-area','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,33,'2021-04-29 19:12:53',0),(57716,'2021-02-09 09:13:49','2021-05-17 20:42:08','59ca8ddc-1e2c-4c64-8d4a-f741cf828e96',1,'/page/health-professionals/my-health-for-life/eoi-for-my-health-for-life-providers-now-open/','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/my-health-for-life/eoi-for-my-health-for-life-providers-now-open','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,20,'2021-05-17 20:42:08',0),(57787,'2021-02-10 03:45:11','2021-04-10 21:56:49','e991081f-5397-4142-94e2-4af33d685ee7',1,'/page/news-and-events/latest-news/gp-smart-referrals-proving-popular-in-brisbane-north/','','66.220.149.25','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: page/news-and-events/latest-news/gp-smart-referrals-proving-popular-in-brisbane-north','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,18,'2021-04-10 21:56:49',0),(57809,'2021-02-10 07:08:03','2021-05-19 02:48:19','4d532694-ed19-4704-87f8-6cd2906918aa',1,'/page/about/our-team/primary-care-liaison-officers/','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/our-team/primary-care-liaison-officers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,38,'2021-05-19 02:48:19',0),(57817,'2021-02-10 09:20:33','2021-05-06 17:47:52','0271c8c8-e62a-425b-ada4-2a5600c24a26',1,'/content/Document/Media Releases/151126 - Brisbane North PHN will play significant role in mental health reform.pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%20Releases/151126%20-%20Brisbane%20North%20PHN%20will%20play%20significant%20role%20in%20mental%20health%20reform.pdf','34.94.141.43','Go-http-client/1.1','Template not found: content/Document/Media Releases/151126 - Brisbane North PHN will play significant role in mental health reform.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-06 17:47:52',0),(57879,'2021-02-11 03:17:27','2021-04-10 23:47:46','a4c29cbc-ffcb-4e36-ae90-81cb913d014d',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---sandgate/','','66.249.65.31','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---sandgate','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-04-10 23:47:46',0),(57893,'2021-02-11 08:48:46','2021-05-14 11:22:18','b6ab3898-d595-4a8e-8b22-24ec59655837',1,'/page/home/quicklinks/brisbane-mind/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/home/quicklinks/brisbane-mind','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,19,'2021-05-14 11:22:18',0),(57894,'2021-02-11 08:48:59','2021-05-14 08:53:42','d3714b4e-8ed9-4ac0-950e-ee8d7d288504',1,'/page/home/quicklinks/hospital-ereferral-templates/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/home/quicklinks/hospital-ereferral-templates','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,36,'2021-05-14 08:53:42',0),(58000,'2021-02-11 19:18:57','2021-05-16 07:51:33','7dd37bcf-7a92-4643-8f4c-a8c4a8e81a5e',1,'/page/news-and-events/latest-news/the-pip-quality-improvement-incentive-has-started/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/the-pip-quality-improvement-incentive-has-started','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-16 07:51:33',0),(58010,'2021-02-11 20:05:58','2021-05-18 00:17:27','b88f5169-bbf8-4bb6-8b78-1e3bc69e56ad',1,'/page/health-professionals/digital-health/health-provider-portal-the-viewer/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/digital-health/health-provider-portal-the-viewer','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,24,'2021-05-18 00:17:27',0),(58042,'2021-02-11 23:17:30','2021-05-11 21:24:52','f043555c-aa61-4c3a-8fb9-1a92fc59b54e',1,'/page/health-professionals/digital-health/telehealth/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/digital-health/telehealth','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,23,'2021-05-11 21:24:52',0),(58044,'2021-02-11 23:26:16','2021-05-17 01:47:15','c0409227-65fc-4046-a734-f5c2f629c516',1,'/page/publications/subscribe/','','103.87.254.78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','Template not found: page/publications/subscribe','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,45,'2021-05-17 01:47:15',0),(58048,'2021-02-11 23:31:36','2021-05-18 07:05:42','da09db5b-0d40-4e6f-a9c0-bb1f37948832',1,'/content/Document/LIS_Aged Care Network List_v1_0.pdf','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/LIS_Aged Care Network List_v1_0.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,42,'2021-05-18 07:05:42',0),(58090,'2021-02-12 02:43:53','2021-04-24 01:05:59','63bb7b15-d5da-4b7d-af62-112839e8e2a7',1,'/content/Document/Events/Reenable_150902_rheumatology.pdf','','178.63.51.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:82.0) Gecko/20100101 Firefox/82.0','Template not found: content/Document/Events/Reenable_150902_rheumatology.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,18,'2021-04-24 01:05:59',0),(58128,'2021-02-12 09:02:14','2021-05-18 18:32:49','78867389-0caa-4e5d-935f-3b7061ded665',1,'/jobs/vr-skin-doctor','','40.77.167.35','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/vr-skin-doctor','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,26,'2021-05-18 18:32:49',0),(58209,'2021-02-13 04:26:36','2021-05-12 20:51:55','6ee56715-29c5-486b-b496-59b67e9a4dd9',1,'/page/news-and-events/','','66.249.68.93','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-12 20:51:55',0),(58296,'2021-02-13 23:44:43','2021-05-17 18:45:43','e2b82d09-5e03-4603-a999-f4867a613468',1,'/content/Document/Pathways/CEWT 5-11 YEARS.pdf','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/CEWT 5-11 YEARS.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,44,'2021-05-17 18:45:43',0),(58409,'2021-02-15 19:08:10','2021-05-17 20:52:55','095cfe6f-0168-43c5-b9ca-2bccf7f70ce9',1,'/events/traffic-lights-sexual-behaviours-in-children-and-young-people-1','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/traffic-lights-sexual-behaviours-in-children-and-young-people-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,48,'2021-05-17 20:52:55',0),(58493,'2021-02-17 05:12:47','2021-05-07 04:00:01','25f7e322-5e91-4bc7-90e2-8fb4e33a8c7d',1,'/content/Document/Templates/Brisbane MIND/Brisbane MIND Plus referral through HealthPathwaysV3 - HP Formatted(1).pdf','','66.249.68.31','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Templates/Brisbane MIND/Brisbane MIND Plus referral through HealthPathwaysV3 - HP Formatted(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,20,'2021-05-07 04:00:01',0),(58539,'2021-02-17 17:27:42','2021-04-21 18:14:01','15edd22c-5b45-412f-9752-0fc39fab3499',1,'//vendor/.env','','180.252.57.115','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36','Template not found: vendor/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-04-21 18:14:01',0),(58552,'2021-02-17 22:38:27','2021-05-15 17:40:29','f5454776-eaf0-47f6-8481-e2129172377a',1,'/events/covax-and-beyond-practice-manager-and-practice-nurse-q-a-session','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/covax-and-beyond-practice-manager-and-practice-nurse-q-a-session','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,56,'2021-05-15 17:40:29',0),(58574,'2021-02-18 06:44:15','2021-05-03 03:25:42','5d53b51b-b02a-4e03-a505-a2bbdf8b035a',1,'/page/health-professionals/Local Positions Vacant/allied-health-professionals/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/allied-health-professionals','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,15,'2021-05-03 03:25:42',0),(58575,'2021-02-18 07:34:37','2021-04-19 22:11:27','fc580cff-25ab-4fd5-9b95-b51b0377a742',1,'/content/Document/Reports/FIN_AAWP_NPSM 18-19_181114 WEB (1).pdf','http://www.brisbanenorthphn.org.au/content/Document/Reports/FIN_AAWP_NPSM%2018-19_181114%20WEB%20(1).pdf','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/Reports/FIN_AAWP_NPSM 18-19_181114 WEB (1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-04-19 22:11:27',0),(58584,'2021-02-18 12:54:58','2021-05-02 14:10:06','f6d0523a-e937-448d-84be-414c04df2e9e',1,'/page/health-professionals/Local Positions Vacant/practice-manager---bellbowrie/','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-manager---bellbowrie','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-02 14:10:06',0),(58591,'2021-02-18 14:29:08','2021-05-12 14:35:33','e2f1e5a2-33e7-4e86-8413-99a9b1a73a60',1,'/content/Document/Pathways/LINK','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/LINK','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,19,'2021-05-12 14:35:33',0),(58605,'2021-02-18 18:38:38','2021-04-11 17:06:27','365640bd-2fea-40be-8c49-f38c2fce832a',1,'/content/Document/Events/CDSP North Brisbane 1 June 2019.pdf','','207.46.13.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/CDSP North Brisbane 1 June 2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-11 17:06:27',0),(58638,'2021-02-19 04:17:28','2021-05-18 01:42:31','4bccbe2c-bd60-47c7-a411-661fae62c5f3',1,'/page/health-professionals/digital-health/','','40.77.167.15','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/digital-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,18,'2021-05-18 01:42:31',0),(58659,'2021-02-19 08:46:29','2021-05-18 11:39:36','641cad32-8665-4a2b-8de7-a50dfbe44bba',1,'/jobs/majellan-medical-centre-scarborough-experience-practice-nurse','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/majellan-medical-centre-scarborough-experience-practice-nurse','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,39,'2021-05-18 11:39:36',0),(58675,'2021-02-19 12:47:38','2021-05-13 17:37:20','43b6df95-5af9-4567-b1c2-0fdea2eb5f80',1,'/events/hepatitis-b-nursing-addressing-the-silent-epidemic-in-primary-care','','66.249.66.216','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: events/hepatitis-b-nursing-addressing-the-silent-epidemic-in-primary-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,20,'2021-05-13 17:37:20',0),(58688,'2021-02-19 16:09:01','2021-05-18 03:20:17','04fb670a-cf85-43a0-8fd3-3575bbcc8bc2',1,'/jobs/several-gp-positions-in-morayfield-and-southbank','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/several-gp-positions-in-morayfield-and-southbank','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,19,'2021-05-18 03:20:17',0),(58718,'2021-02-20 01:34:15','2021-05-15 16:46:43','a56539c2-c0a1-4c37-94ca-14a733b23c81',1,'/events/digital-health-tools-for-specialist-practices-panel-discussion','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/digital-health-tools-for-specialist-practices-panel-discussion','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,21,'2021-05-15 16:46:43',0),(58724,'2021-02-20 03:28:07','2021-05-12 04:55:06','35949ed2-9cfc-497c-bac6-342f33f2864f',1,'/events/assessment-and-management-of-neck-and-upper-back-pain','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/assessment-and-management-of-neck-and-upper-back-pain','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,47,'2021-05-12 04:55:06',0),(58765,'2021-02-20 16:02:50','2021-05-17 16:58:18','d7af1f44-d2df-4371-8ab0-caadc41d36f5',1,'/events/tsp-10k-run36','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/tsp-10k-run36','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,22,'2021-05-17 16:58:18',0),(58897,'2021-02-22 03:54:37','2021-05-11 17:57:02','0ba67fed-71ea-49a8-8367-e832ffbb33d0',1,'/content/Document/Brisbane MIND Group Therapy Services.pdf','','66.249.79.148','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Brisbane MIND Group Therapy Services.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,15,'2021-05-11 17:57:02',0),(58940,'2021-02-22 17:44:08','2021-05-10 23:50:53','05df72f8-f728-4a44-a364-728dd7123c11',1,'/content/Document/Network Link_07_July_FINAL_WEB.pdf','','168.119.69.91','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:83.0) Gecko/20100101 Firefox/83.0','Template not found: content/Document/Network Link_07_July_FINAL_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,14,'2021-05-10 23:50:53',0),(58966,'2021-02-22 23:37:28','2021-05-12 05:39:21','c0e03683-6e3e-4861-944b-f5077b0388a0',1,'/content/Document/MN_Health_Forum_Sponsorship_Exhibition_Prospectus_FINAL(1).pdf','http://www.brisbanenorthphn.org.au/content/Document/MN_Health_Forum_Sponsorship_Exhibition_Prospectus_FINAL(1).pdf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/MN_Health_Forum_Sponsorship_Exhibition_Prospectus_FINAL(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-12 05:39:21',0),(58985,'2021-02-23 05:10:20','2021-05-17 01:47:58','7bd52dcd-39f2-450f-85e8-b037bb95c3eb',1,'/page/about/our-team/primary-care-liaison-officers','','103.87.254.78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','Template not found: page/about/our-team/primary-care-liaison-officers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,17,'2021-05-17 01:47:58',0),(59107,'2021-02-24 14:24:54','2021-05-16 04:30:15','ea05f106-3240-42ce-b705-7cc9b87d546b',1,'/events/the-legal-and-medical-aspects-of-mental-capacity-assessments-in-general-practice','','5.9.144.234','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: events/the-legal-and-medical-aspects-of-mental-capacity-assessments-in-general-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,36,'2021-05-16 04:30:15',0),(59163,'2021-02-25 05:04:13','2021-05-12 02:12:01','0adf24dc-df53-4fde-9129-5cdf3d5efbc0',1,'/content/Document/Mater GP Education Invitation.pdf','http://www.brisbanenorthphn.org.au/content/Document/Mater%20GP%20Education%20Invitation.pdf','35.192.197.124','Go-http-client/1.1','Template not found: content/Document/Mater GP Education Invitation.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-12 02:12:01',0),(59196,'2021-02-25 17:15:31','2021-04-10 18:20:25','8c445bf5-dfe0-4306-97bd-aa45ec320c89',1,'/content/Document/Brisbane MIND Provider List February 2018.pdf','','207.46.13.5','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List February 2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-10 18:20:25',0),(59231,'2021-02-26 08:00:49','2021-05-04 17:47:07','4537b6c8-cfb7-4335-8615-38ce545fbf4b',1,'/content/Document/BNPHN_Strategic_Plan_2020-2023_FINAL.pdf','','66.249.68.93','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/BNPHN_Strategic_Plan_2020-2023_FINAL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-04 17:47:07',0),(59244,'2021-02-26 11:24:49','2021-05-13 18:01:41','d9950ab0-44b9-4e60-9593-4f38b5e827d2',1,'/jobs/general-practitioner-woody-point-1','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/general-practitioner-woody-point-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-13 18:01:41',0),(59264,'2021-02-26 17:37:38','2021-05-18 12:19:20','c6bf7308-519f-418a-aced-046257cc0b24',1,'/events/world-copd-primary-care-webinar','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/world-copd-primary-care-webinar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-18 12:19:20',0),(59267,'2021-02-26 19:02:08','2021-05-14 22:31:39','2f3dd79a-a218-4d15-9587-7780a039cc09',1,'/jobs/medical-receptionist-1','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/medical-receptionist-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,26,'2021-05-14 22:31:39',0),(59276,'2021-02-26 23:26:32','2021-05-12 03:02:18','807abc76-9073-4715-960f-2687fc43414d',1,'/content/Document/CAT4 Road Map Brisbane North PHN 160711.pdf','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/CAT4 Road Map Brisbane North PHN 160711.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-12 03:02:18',0),(59307,'2021-02-27 09:02:48','2021-05-18 14:59:02','2748d75a-3816-47bf-a52b-d35846840eda',1,'/yearinreview/2018-19/wp-content/uploads/2019/11/BNPHN-191016_128_Dr-Srishti-Dutta-2-600x400.jpg','','66.249.68.2','Googlebot-Image/1.0','Template not found: yearinreview/2018-19/wp-content/uploads/2019/11/BNPHN-191016_128_Dr-Srishti-Dutta-2-600x400.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,21,'2021-05-18 14:59:02',0),(59351,'2021-02-27 19:20:21','2021-05-09 03:03:32','5ceb5f17-8414-4cbe-8111-a115300983b1',1,'/jobs/coordinator-i-engagement-and-partnerships','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/coordinator-i-engagement-and-partnerships','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,179,'2021-05-09 03:03:32',0),(59372,'2021-02-28 05:44:11','2021-04-23 23:16:37','34023a10-d4dc-4863-82a2-2cbd83b2eea3',1,'/yearinreview/2017-18/mental-health-suicide-prevention-and-alcohol-and-other-drug-services/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/mental-health-suicide-prevention-and-alcohol-and-other-drug-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-04-23 23:16:37',0),(59379,'2021-02-28 07:17:20','2021-04-11 01:23:00','1ca65e5b-ffcb-418b-bac2-617b99c0cf85',1,'/page/about/careers/service-navigation-coordinator-team-care-coordination/','','207.46.13.106','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers/service-navigation-coordinator-team-care-coordination','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-11 01:23:00',0),(59382,'2021-02-28 07:19:03','2021-04-24 07:46:06','0a692cc7-27c3-423b-8e8f-81c434d7799b',1,'/page/community/Immunisation/phn-responds-to-anti-vax-misinformation/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/community/Immunisation/phn-responds-to-anti-vax-misinformation','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-04-24 07:46:06',0),(59383,'2021-02-28 07:19:13','2021-05-18 01:39:16','190e24cd-4630-4741-b1e1-e648191e3a6b',1,'/page/community/my-mental-health/','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/community/my-mental-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,14,'2021-05-18 01:39:16',0),(59403,'2021-02-28 07:22:13','2021-04-28 20:31:27','a25c853c-5846-4a17-b836-90d83aee6970',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---kippa-ring/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---kippa-ring','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,17,'2021-04-28 20:31:27',0),(59418,'2021-02-28 07:24:11','2021-04-11 15:01:22','fa93ce0a-10b5-497d-8c3c-d7f63095b293',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---brisbane-city/','','207.46.13.43','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---brisbane-city','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-11 15:01:22',0),(59420,'2021-02-28 07:24:39','2021-04-22 23:37:07','9615609f-735b-4642-b489-9c9d787395f7',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---nundah/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---nundah','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-04-22 23:37:07',0),(59449,'2021-02-28 13:58:41','2021-05-14 06:50:48','e32f43c6-f62d-4f03-8bb1-a9b09b80ede8',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---chermside/','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---chermside','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,18,'2021-05-14 06:50:48',0),(59458,'2021-02-28 21:21:44','2021-05-17 03:54:50','fe88116e-8495-41ff-a333-fef933527247',1,'/content/Document/Primary care liaison/MNHHS Paediatrics Ref BP v6_2.rtf','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Primary care liaison/MNHHS Paediatrics Ref BP v6_2.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-17 03:54:50',0),(59468,'2021-03-01 01:36:00','2021-05-11 22:13:21','8af762c7-4efe-434c-a0f1-2f0f5cb890a0',1,'/page/home/metro-north-health-forum-2016','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/metro-north-health-forum-2016','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-11 22:13:21',0),(59469,'2021-03-01 01:44:56','2021-05-18 05:05:50','223d5cdd-7b6b-4ef4-895d-9a977aa15262',1,'/events/implementation-of-telehealth-into-general-practice-cat-1-racgp-6-pdp-acrrm','','173.252.87.12','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: events/implementation-of-telehealth-into-general-practice-cat-1-racgp-6-pdp-acrrm','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,47,'2021-05-18 05:05:50',0),(59478,'2021-03-01 03:48:41','2021-04-19 19:51:04','d34ab0a9-f33e-40b4-93d6-3515832810e0',1,'/content/Document/HealthPathways Program Update August 2017.pdf','http://www.brisbanenorthphn.org.au/content/Document/HealthPathways%20Program%20Update%20August%202017.pdf','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/HealthPathways Program Update August 2017.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-19 19:51:04',0),(59497,'2021-03-01 06:54:30','2021-05-11 18:46:48','b169c3f7-89b8-48b6-97fd-fc01a876af44',1,'/content/Document/Primary care liaison/FIN_A GP\'s Guide to Brisbane North PHN.pdf','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Primary care liaison/FIN_A GP\'s Guide to Brisbane North PHN.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-11 18:46:48',0),(59504,'2021-03-01 08:41:52','2021-05-16 23:54:52','38e4657c-1e60-4cd3-b4ce-1ec9b4dcb15b',1,'/content/Document/Templates/4.6/Specialists List_The Prince Charles Hospital_4_6.pdf','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Templates/4.6/Specialists List_The Prince Charles Hospital_4_6.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,32,'2021-05-16 23:54:52',0),(59509,'2021-03-01 09:40:30','2021-05-15 01:42:27','1c90f09e-ab47-439c-921b-3b377be2e1d4',1,'/android-chrome-192x192.png','https://brisbanenorthphn.org.au/','35.238.94.223','Mozilla/5.0 (Linux; Android 7.0; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4420.0 Mobile Safari/537.36 Chrome-Lighthouse','Template not found: android-chrome-192x192.png','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,28,'2021-05-15 01:42:27',0),(59522,'2021-03-01 13:06:37','2021-05-04 16:34:52','85f19ba2-7eaf-4e9d-9c95-b27da0c7c924',1,'/wp-includes/js/jquery/jquery.js','','116.203.115.76','python-requests/2.24.0','Template not found: wp-includes/js/jquery/jquery.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-04 16:34:52',0),(59523,'2021-03-01 13:06:39','2021-05-02 10:37:03','753b5fd9-f807-45c1-ac5c-62011f4e4897',1,'/administrator/help/en-GB/toc.json','','20.64.86.156','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0','Template not found: administrator/help/en-GB/toc.json','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-02 10:37:03',0),(59524,'2021-03-01 13:06:42','2021-05-02 10:37:05','fe2ea905-6e18-4d20-ae3a-16a856d04d80',1,'/administrator/language/en-GB/install.xml','','20.64.86.156','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0','Template not found: administrator/language/en-GB/install.xml','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-02 10:37:05',0),(59525,'2021-03-01 13:06:44','2021-05-02 10:37:07','0f61c9df-c267-4e9d-bc7a-27c4b6ed4cbe',1,'/plugins/system/debug/debug.xml','','20.64.86.156','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0','Template not found: plugins/system/debug/debug.xml','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-02 10:37:07',0),(59526,'2021-03-01 13:06:47','2021-05-02 11:49:39','93f48e5a-7944-4d14-aefb-5f23bb113f0f',1,'/administrator/','https://brisbanenorthphn.org.au/administrator/','221.149.235.157','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','Template not found: administrator','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,18,'2021-05-02 11:49:39',0),(59527,'2021-03-01 13:06:49','2021-05-02 10:37:10','6d4a2ef0-742f-4459-a399-d8b414a620ef',1,'/misc/ajax.js','','20.64.86.156','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0','Template not found: misc/ajax.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-02 10:37:10',0),(59528,'2021-03-01 13:07:00','2021-05-02 10:37:17','58188a3d-36b3-4d6d-a448-7694bb0e1cc0',1,'/images/editor/separator.gif','','20.64.86.156','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0','Template not found: images/editor/separator.gif','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-02 10:37:17',0),(59529,'2021-03-01 13:07:02','2021-05-02 10:37:19','cb9057cc-d070-468e-a923-59e16e01b532',1,'/js/header-rollup-554.js','','20.64.86.156','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0','Template not found: js/header-rollup-554.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-02 10:37:19',0),(59530,'2021-03-01 13:07:05','2021-05-02 10:37:20','acbe2393-8464-4c3d-978d-7b22f54d6af7',1,'/vendor/phpunit/phpunit/build.xml','','20.64.86.156','Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_8; en-us) AppleWebKit/534.50 (KHTML, like Gecko) Version/5.1 Safari/534.50','Template not found: vendor/phpunit/phpunit/build.xml','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-02 10:37:20',0),(59531,'2021-03-01 13:07:10','2021-05-18 23:14:09','83afc878-a939-4d43-ae85-18553e5e2056',1,'/.env','','35.163.2.156','Go-http-client/1.1','Template not found: .env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,128,'2021-05-18 23:14:09',0),(59536,'2021-03-01 14:33:11','2021-05-15 05:06:02','dd102a50-ba63-478d-bf8c-bb5121b760ee',1,'/page/news-and-events/latest-news/achieving-better-aged-care-for-aboriginal-and-torres-strait-islander-peoples/','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/achieving-better-aged-care-for-aboriginal-and-torres-strait-islander-peoples','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,17,'2021-05-15 05:06:02',0),(59550,'2021-03-01 18:58:54','2021-05-18 07:48:21','2e84bacd-79ff-4481-93c2-e6c57cdc7068',1,'/events/covid-19-implications-challenges-for-those-with-severe-mental-illness-1','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/covid-19-implications-challenges-for-those-with-severe-mental-illness-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-18 07:48:21',0),(59562,'2021-03-01 21:51:40','2021-05-17 14:27:33','bdcbbdf2-d140-439a-b83b-aa5a0a9520ca',1,'/content/Document/Templates/4.5/Specialists List_RBWH_4.5 (DRAFT).pdf','','138.201.11.237','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:83.0) Gecko/20100101 Firefox/83.0','Template not found: content/Document/Templates/4.5/Specialists List_RBWH_4.5 (DRAFT).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,31,'2021-05-17 14:27:33',0),(59570,'2021-03-01 23:13:36','2021-04-27 18:31:26','38021f0d-e6c5-49bd-a9f4-96c824c32289',1,'/page/health-professionals/Local Positions Vacant/casual-medical-receptionist-required---wavell-medical-centre/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/casual-medical-receptionist-required---wavell-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-27 18:31:26',0),(59571,'2021-03-01 23:28:15','2021-04-27 18:25:15','61b6a3af-7cbe-4dc8-9671-374292897456',1,'/content/Document/Neuromonics suppliers Brisbane.pdf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Neuromonics suppliers Brisbane.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-27 18:25:15',0),(59582,'2021-03-02 01:13:00','2021-05-11 03:43:09','6d2b2742-0d63-4ffd-bf19-c2146626bf80',1,'/page/home/style-guide/tab-listing/cultural-awareness-training/','','134.195.89.70','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/home/style-guide/tab-listing/cultural-awareness-training','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-11 03:43:09',0),(59585,'2021-03-02 01:23:54','2021-05-16 07:43:42','00e898eb-1607-48ba-b44d-72aafbefd195',1,'/page/news-and-events/latest-news/launch-of-newaccess-by-beyondblue/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/launch-of-newaccess-by-beyondblue','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,45,'2021-05-16 07:43:42',0),(59590,'2021-03-02 02:45:00','2021-04-11 09:20:08','279276f3-1bfa-4dae-8270-3bca71789043',1,'/events/unplanned-pregnancy-best-practice-counselling','','13.66.139.37','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/unplanned-pregnancy-best-practice-counselling','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,30,'2021-04-11 09:20:08',0),(59592,'2021-03-02 03:31:54','2021-05-18 03:27:09','812224f7-c069-4f59-b851-4ee31645a29f',1,'/content/Document/Specialists List_RBWH_4_10.pdf','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Specialists List_RBWH_4_10.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,20,'2021-05-18 03:27:09',0),(59610,'2021-03-02 05:33:45','2021-05-16 07:47:11','2448aaa3-9746-4a71-a1d3-068d096fc9ba',1,'/page/news-and-events/latest-news/new-chief-executive-for-metro-north-hhs/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/new-chief-executive-for-metro-north-hhs','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,21,'2021-05-16 07:47:11',0),(59624,'2021-03-02 08:09:18','2021-05-16 11:08:24','3dd2f503-8425-4629-8223-a2389b76228d',1,'/jobs/geriatrician','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/geriatrician','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,21,'2021-05-16 11:08:24',0),(59626,'2021-03-02 08:09:31','2021-05-16 14:45:13','6e9e7446-fe3a-443f-98da-2ab33d25a563',1,'/jobs/majellan-medical-centre-scarborough-general-practitioner','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/majellan-medical-centre-scarborough-general-practitioner','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,17,'2021-05-16 14:45:13',0),(59628,'2021-03-02 08:10:07','2021-04-26 03:59:31','0794b51c-6c28-4f15-a12f-aa5f6e1b0553',1,'/jobs/registered-nurse','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/registered-nurse','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-04-26 03:59:31',0),(59637,'2021-03-02 11:14:22','2021-05-12 17:08:25','f04178b9-fcd1-4de7-af94-6fdbbae33907',1,'/content/Document/Brisbane MIND Provider List December 2017(7).pdf','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Brisbane MIND Provider List December 2017(7).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-12 17:08:25',0),(59648,'2021-03-02 14:12:34','2021-05-11 12:28:50','02cb768e-b82e-4f5b-9f60-2e2a16f7c704',1,'/content/Document/Templates/4.7/Specialists List_RBWH_4_7.pdf','','178.63.51.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','Template not found: content/Document/Templates/4.7/Specialists List_RBWH_4_7.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,24,'2021-05-11 12:28:50',0),(59662,'2021-03-02 17:25:35','2021-05-08 06:45:03','7f36a1cb-561e-415f-9350-828d0bebec2b',1,'/content/Document/Templates/SaAS-TCS-INFOSHEET.pdf','','66.249.69.61','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Templates/SaAS-TCS-INFOSHEET.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,40,'2021-05-08 06:45:03',0),(59663,'2021-03-02 17:29:30','2021-05-18 00:02:31','2729773a-9899-40a4-b80e-233acf002854',1,'/css/album.css','','103.37.3.58','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:48.0) Gecko/20100101 Firefox/48.0','Template not found: css/album.css','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-18 00:02:31',0),(59679,'2021-03-02 22:54:33','2021-05-16 09:24:46','fdddba09-45e2-438f-94f5-5fd8059ae627',1,'/page/news-and-events/metro-north-health-forum/','','45.79.217.250','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1 Safari/605.1.15','Template not found: page/news-and-events/metro-north-health-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,37,'2021-05-16 09:24:46',0),(59687,'2021-03-03 00:36:44','2021-05-13 04:15:38','0798993c-e8b2-49e2-b288-38a88b0fe5ef',1,'/media/dist/swiper.js','https://brisbanenorthphn.org.au/media/multimedia/high-resolution-images','27.33.2.36','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','Template not found: media/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,49,'2021-05-13 04:15:38',0),(59705,'2021-03-03 04:47:32','2021-05-12 01:06:22','2cd1afe0-8e38-4644-814f-57cbc0821d4f',1,'/jobs/brisbane-youth-service-sessional-general-practitioner','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/brisbane-youth-service-sessional-general-practitioner','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-12 01:06:22',0),(59714,'2021-03-03 04:48:02','2021-05-15 18:40:00','5070619c-6889-444a-97e6-da78ba9773fc',1,'/jobs/vr-gp-to-replace-dpa-position','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/vr-gp-to-replace-dpa-position','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-15 18:40:00',0),(59728,'2021-03-03 05:19:53','2021-05-18 00:16:20','30dca9f1-cff1-49f3-b0d0-f5b1d3212efb',1,'/page/home/quicklinks/acknowledgement-of-country/','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/quicklinks/acknowledgement-of-country','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,21,'2021-05-18 00:16:20',0),(59729,'2021-03-03 05:20:43','2021-05-10 04:25:49','19254100-b380-47dc-bf9d-15807df37689',1,'/page/home/quicklinks/view-local-positions-vacant/','','144.76.4.41','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/home/quicklinks/view-local-positions-vacant','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-10 04:25:49',0),(59730,'2021-03-03 05:21:08','2021-05-18 00:02:02','100d881b-7fe7-434c-8dec-2ee6c9fe9d9c',1,'/page/home/quicklinks/view-upcoming-events-for-health-care-professionals/','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/quicklinks/view-upcoming-events-for-health-care-professionals','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-18 00:02:02',0),(59731,'2021-03-03 05:21:24','2021-05-11 03:43:34','bebae535-71f8-4402-b34f-4c99148dca81',1,'/page/news/','','134.195.89.70','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-11 03:43:34',0),(59733,'2021-03-03 05:43:51','2021-05-11 03:46:00','e8794f6a-eab8-4172-ba77-bfebe3d5cd96',1,'/page/news-and-events/events/upcoming/2019-aapm-national-conference/','','134.195.89.70','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/2019-aapm-national-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-11 03:46:00',0),(59734,'2021-03-03 05:44:01','2021-05-12 10:00:48','450b87a7-c948-4120-8442-9af486965700',1,'/page/news-and-events/events/upcoming/Advanced-Life-Support-2/','','84.189.28.67','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/Advanced-Life-Support-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-12 10:00:48',0),(59737,'2021-03-03 05:44:39','2021-05-13 02:37:03','20384ab7-e359-47cf-889d-d8c25630151d',1,'/page/news-and-events/events/upcoming/acd-practical-dermoscopy-certificate-online/','','192.99.6.226','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/acd-practical-dermoscopy-certificate-online','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-13 02:37:03',0),(59742,'2021-03-03 05:45:44','2021-05-15 02:29:12','8155484e-7753-4e0f-bb49-4bba9f7848ac',1,'/page/news-and-events/events/upcoming/ama-queensland-annual-conference-2019/','','5.9.77.102','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/ama-queensland-annual-conference-2019','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-15 02:29:12',0),(59774,'2021-03-03 05:52:22','2021-05-11 14:32:18','0a3910d8-4d68-4425-8aac-3363605fa635',1,'/page/news-and-events/events/upcoming/personal-productivity-and-effective-decision-making/','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/personal-productivity-and-effective-decision-making','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-11 14:32:18',0),(59780,'2021-03-03 05:53:35','2021-05-15 23:44:37','b74b69ed-2d29-44ed-aa9f-d9ecc908d1e9',1,'/page/news-and-events/events/upcoming/seasons-for-growth-children-and-young-people-change-loss-and-grief-program-training/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/seasons-for-growth-children-and-young-people-change-loss-and-grief-program-training','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-15 23:44:37',0),(59790,'2021-03-03 05:55:55','2021-05-10 10:18:54','1ecb7df8-9904-494d-9a55-4d1f1c489a36',1,'/page/news-and-events/latest-news/dementia-project-steering-committee-eoi-now-open/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/dementia-project-steering-committee-eoi-now-open','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-10 10:18:54',0),(59813,'2021-03-03 12:45:50','2021-05-13 10:32:31','1c07aa4e-3359-452f-ad6b-86863f8dabce',1,'/jobs/gp-with-special-interest','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/gp-with-special-interest','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-13 10:32:31',0),(59822,'2021-03-03 18:53:47','2021-05-18 12:34:20','f1865595-7003-48d6-88d1-558785da4c1e',1,'/content/Document/Media Releases/180221_Way Back_Redcliffe_Media release_vFINAL.pdf','','66.220.149.27','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: content/Document/Media Releases/180221_Way Back_Redcliffe_Media release_vFINAL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,23,'2021-05-18 12:34:20',0),(59833,'2021-03-03 21:16:44','2021-05-17 09:42:40','ebbd37ef-9a23-4799-b2d1-71e8fd5aae46',1,'/page/news-and-events/latest-news/supporting-community-care-clients-through-the-pandemic','','66.220.149.33','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: page/news-and-events/latest-news/supporting-community-care-clients-through-the-pandemic','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-17 09:42:40',0),(59834,'2021-03-03 21:16:44','2021-05-09 08:12:11','efa55af6-2f95-4fce-a462-c7dd79ecd797',1,'/page/news-and-events/latest-news/first-aboriginal-covid-19-gp-respiratory-clinic-opens-in-queensland','','173.252.87.28','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: page/news-and-events/latest-news/first-aboriginal-covid-19-gp-respiratory-clinic-opens-in-queensland','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,17,'2021-05-09 08:12:11',0),(59840,'2021-03-03 23:08:11','2021-05-16 07:50:47','e9207a00-1027-4ef5-abf9-2912e44c1f48',1,'/page/news-and-events/latest-news/smart-referrals-coming-soon-to-queensland/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/smart-referrals-coming-soon-to-queensland','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,15,'2021-05-16 07:50:47',0),(59846,'2021-03-04 01:20:58','2021-05-11 17:09:47','e8e8fdb8-50ff-4dd5-8348-1305e5073698',1,'/page/news-and-events/dist/swiper.js','https://www.brisbanenorthphn.org.au/page/news-and-events/metro-north-health-forum/','95.217.228.96','\'Mozilla/5.0 (compatible; Seekport Crawler; http://seekport.com/\'','Template not found: page/news-and-events/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-11 17:09:47',0),(59870,'2021-03-04 07:07:34','2021-05-13 02:06:30','f56f51fb-2854-447b-b58b-a80ee5a9ec30',1,'/page/news-and-events/events/upcoming/redicase-training-march/','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/redicase-training-march','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-13 02:06:30',0),(59888,'2021-03-04 08:46:42','2021-05-11 03:42:24','f011cf89-b7cc-4870-97a1-a7efac98c61e',1,'/page/home/style-guide/document-listing/','','134.195.89.70','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/home/style-guide/document-listing','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-11 03:42:24',0),(59903,'2021-03-04 13:47:57','2021-05-18 09:40:17','69b1079f-e7d5-4f09-9c46-0c7769af0359',1,'/dist/swiper.js.map','','157.230.26.53','got (https://github.com/sindresorhus/got)','Template not found: dist/swiper.js.map','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,53,'2021-05-18 09:40:17',0),(59965,'2021-03-04 21:14:44','2021-05-10 08:54:38','893f87f7-7763-43dd-8bf2-4b27edec188c',1,'/content/Document/Planning/FIN_DOHHNATables_141117.pdf','http://www.brisbanenorthphn.org.au/content/Document/Planning/FIN_DOHHNATables_141117.pdf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Planning/FIN_DOHHNATables_141117.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-10 08:54:38',0),(59974,'2021-03-04 23:24:34','2021-04-20 17:30:06','8d8b7650-f1bf-4a53-81d8-e533852a5bdf',1,'/page/health-professionals/Local Positions Vacant/registered-nurse---midway-medical-centre-redcliffe/','','66.249.66.149','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/registered-nurse---midway-medical-centre-redcliffe','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-20 17:30:06',0),(59988,'2021-03-05 00:45:22','2021-05-10 14:11:01','3926fc1b-16a8-4a52-a784-64d16726407f',1,'/page/news-and-events/events/upcoming/annual-junior-doctor-conference-career-expo-2019/','','185.191.171.24','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)','Template not found: page/news-and-events/events/upcoming/annual-junior-doctor-conference-career-expo-2019','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-10 14:11:01',0),(60000,'2021-03-05 02:55:03','2021-05-17 14:39:18','2018005c-934c-4217-ab55-62c1c415271a',1,'/content/Document/MHAOD-service-mag-FINAL-web.pdf','','66.249.68.31','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/MHAOD-service-mag-FINAL-web.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,41,'2021-05-17 14:39:18',0),(60002,'2021-03-05 02:55:22','2021-05-15 12:30:16','5af0490d-3b87-445a-affa-67977d0feda9',1,'/content/Document/From Qld Health/Immunisation e-learning_binder_QH.pdf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/From Qld Health/Immunisation e-learning_binder_QH.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,30,'2021-05-15 12:30:16',0),(60003,'2021-03-05 02:55:23','2021-05-16 22:31:23','eccc06a9-39a9-4a8f-ad41-e146a0e5a012',1,'/content/Document/Pathways/Caregiver Strain Index.pdf','','110.145.157.218','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36 Edg/90.0.818.62','Template not found: content/Document/Pathways/Caregiver Strain Index.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,22,'2021-05-16 22:31:23',0),(60006,'2021-03-05 02:55:47','2021-04-23 12:17:52','7be9084c-6890-42f8-a1ca-41b053ca35a9',1,'/content/Document/CT Coronary Calcium Score.pdf','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/CT Coronary Calcium Score.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-04-23 12:17:52',0),(60007,'2021-03-05 02:55:56','2021-05-03 00:13:56','0723d9a2-6223-4819-9570-3c7b0e01dffc',1,'/content/Document/Brisbane MIND Provider List September 2016 (1).pdf','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List September 2016 (1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-03 00:13:56',0),(60008,'2021-03-05 02:56:04','2021-05-17 00:38:32','31718b79-99d6-448c-87e6-b09a67a28485',1,'/content/Document/Templates/4.4/Specialists List_RBWH_4.4.pdf','','88.198.36.62','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','Template not found: content/Document/Templates/4.4/Specialists List_RBWH_4.4.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,31,'2021-05-17 00:38:32',0),(60011,'2021-03-05 02:56:25','2021-05-03 00:14:46','513840b6-62af-46ed-b915-a311ea33e4c9',1,'/content/Document/Standing Beside You_Invitation_150820.pdf','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Standing Beside You_Invitation_150820.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-03 00:14:46',0),(60029,'2021-03-05 04:21:04','2021-05-03 00:35:15','61f8f2f2-d3e3-42ea-98a0-bdc339902b47',1,'/users/event/dist/swiper.js','https://brisbanenorthphn.org.au/users/event/hepatitis-c-case-discussion-2/edit','49.180.15.196','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','Template not found: users/event/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,28,'2021-05-03 00:35:15',0),(60031,'2021-03-05 04:58:07','2021-05-17 07:28:19','077996ae-9955-484c-b178-fc672ee76018',1,'/jobs/medical-receptionist-part-time','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/medical-receptionist-part-time','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,17,'2021-05-17 07:28:19',0),(60041,'2021-03-05 06:26:53','2021-05-18 07:40:18','3baeed50-0943-4be3-a970-64b23a29456e',1,'/content/Document/Specialists List_Caboolture Hospital_4_11(1).pdf','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Specialists List_Caboolture Hospital_4_11(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,16,'2021-05-18 07:40:18',0),(60054,'2021-03-05 11:58:14','2021-05-16 07:44:07','e646cc02-7b65-41fe-8d9e-3aae676ffe35',1,'/page/news-and-events/latest-news/local-doctor-receives-order-of-australia-medal/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/local-doctor-receives-order-of-australia-medal','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-16 07:44:07',0),(60060,'2021-03-05 13:14:28','2021-05-07 05:31:13','efd6cbdc-5d57-4f98-bcf6-a83bd99ad769',1,'/wp-admin/','http://brisbanenorthphn.org.au/','162.0.209.167','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','Template not found: wp-admin','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-07 05:31:13',0),(60071,'2021-03-05 17:15:20','2021-05-02 00:37:12','30b5044e-cf16-401b-a5ad-fc1759991ff9',1,'/backup/wp-admin/','http://brisbanenorthphn.org.au/','192.185.82.106','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','Template not found: backup/wp-admin','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-02 00:37:12',0),(60073,'2021-03-05 17:19:33','2021-04-12 07:11:17','7bf5b0bf-9eaa-4af2-ab9e-7418f44eaa87',1,'/content/Document/Brisbane MIND Provider List November 2017(2).pdf','','207.46.13.5','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List November 2017(2).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-12 07:11:17',0),(60077,'2021-03-05 17:49:33','2021-05-17 01:23:53','d51b4fa0-9c69-4f8c-88bf-2a3c4139bee2',1,'/content/Document/Events/2017/Exercise Is Medicine Workshop.pdf','','178.63.51.106','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0','Template not found: content/Document/Events/2017/Exercise Is Medicine Workshop.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-17 01:23:53',0),(60081,'2021-03-05 18:22:49','2021-04-30 14:30:24','83e3ab24-46d9-438b-89c2-75cefc525aeb',1,'/page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health-february-2017/','','66.249.68.2','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health-february-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,28,'2021-04-30 14:30:24',0),(60105,'2021-03-06 01:56:25','2021-05-09 09:31:24','c52adc36-ddc8-4078-b84d-5ca422cef338',1,'/yearinreview/improving-outcomes-for-people-with-chronic-conditions/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: yearinreview/improving-outcomes-for-people-with-chronic-conditions','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,37,'2021-05-09 09:31:24',0),(60128,'2021-03-06 08:01:57','2021-05-17 15:50:57','557853af-26bb-4991-9516-2de3afa1e1e7',1,'/yearinreview/closing-the-gap-in-indigenous-health/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: yearinreview/closing-the-gap-in-indigenous-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,30,'2021-05-17 15:50:57',0),(60132,'2021-03-06 08:33:32','2021-05-11 14:51:44','f64c3e2a-96c6-49e3-83e7-fb56e974bea7',1,'/content/Document/Pathways/LINK B_Assessing fitness to drive checklist.pdf','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/LINK B_Assessing fitness to drive checklist.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-11 14:51:44',0),(60135,'2021-03-06 09:36:09','2021-04-30 09:11:46','c960548d-87fd-4163-8e27-e600939d95e5',1,'/page/publications/partners-in-health/partners-in-health---november-2017/','','69.171.249.21','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: page/publications/partners-in-health/partners-in-health---november-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-04-30 09:11:46',0),(60141,'2021-03-06 10:42:07','2021-05-03 11:59:59','3ef6880c-cbf1-47f1-9cb0-2c7505468160',1,'/page/health-professionals/Local Positions Vacant/psychologist-required---holdsworth-house-medical-brisbane/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/psychologist-required---holdsworth-house-medical-brisbane','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-03 11:59:59',0),(60155,'2021-03-06 16:40:39','2021-05-18 18:50:26','d84c6826-919b-4460-9fb1-74501e030e70',1,'/jobs/clinical-project-lead-healthy-ageing','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/clinical-project-lead-healthy-ageing','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-18 18:50:26',0),(60163,'2021-03-06 19:10:30','2021-05-14 19:58:43','b3029742-569e-40c8-bc7c-860900e15f67',1,'/page/news-and-events/events/upcoming/annual-junior-doctor-conference-career-expo-2019','','185.191.171.41','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)','Template not found: page/news-and-events/events/upcoming/annual-junior-doctor-conference-career-expo-2019','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,14,'2021-05-14 19:58:43',0),(60167,'2021-03-06 19:31:20','2021-05-13 05:37:00','16c0f9b7-c6e1-4b0d-b471-3e9e3fea65cb',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---north-lakes/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---north-lakes','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,15,'2021-05-13 05:37:00',0),(60181,'2021-03-06 21:29:21','2021-05-16 12:36:42','4800447d-f704-4c99-a237-0b717eaa078f',1,'/events/pallipharm-workshop-1','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/pallipharm-workshop-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-16 12:36:42',0),(60183,'2021-03-06 21:41:41','2021-05-05 17:42:31','b4f3549c-1240-49c5-8a90-7c57cd97abba',1,'/content/Document/MNHF presentations 2017/Shirley Anastasi - Step up, Step down.pdf','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/MNHF presentations 2017/Shirley Anastasi - Step up, Step down.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-05 17:42:31',0),(60192,'2021-03-06 22:26:20','2021-05-04 01:26:08','9c21483a-4226-4cb9-9ad6-ffefcad52110',1,'/events/qld-mhcc-real-time-real-services-statewide-practice-change','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/qld-mhcc-real-time-real-services-statewide-practice-change','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-04 01:26:08',0),(60199,'2021-03-07 00:03:40','2021-05-03 08:09:11','feb38edc-554e-4dba-a70d-348540819a60',1,'/events/hepatitis-c-in-primary-care','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/hepatitis-c-in-primary-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,17,'2021-05-03 08:09:11',0),(60235,'2021-03-07 08:57:44','2021-05-18 01:02:25','79ef17f3-b483-4f01-92db-aeacec8909a1',1,'/page/news-and-events/latest-news/metro-north-radar-service-now-available/','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/metro-north-radar-service-now-available','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,34,'2021-05-18 01:02:25',0),(60239,'2021-03-07 11:12:59','2021-05-13 16:49:52','976e0435-4f5e-402f-8c00-283a1734bb44',1,'/content/Document/Planning/FIN_AAWP_Core Flexible 18-19_180717 WEB.pdf','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Planning/FIN_AAWP_Core Flexible 18-19_180717 WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-13 16:49:52',0),(60260,'2021-03-07 18:30:17','2021-05-17 10:31:47','0d2046c1-a26d-4b05-9836-aa2902367f06',1,'/page/news-and-events/latest-news/new-mental-health-services-in-brisbane-north/','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/latest-news/new-mental-health-services-in-brisbane-north','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,41,'2021-05-17 10:31:47',0),(60265,'2021-03-07 19:15:47','2021-05-15 01:41:40','70d669af-137b-4d3b-ab24-2748f4486710',1,'/.well-known/assetlinks.json','https://brisbanenorthphn.org.au/','35.238.94.223','Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Mobile Safari/537.36 PTST/210514.195132','Template not found: .well-known/assetlinks.json','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-15 01:41:40',0),(60266,'2021-03-07 19:16:35','2021-05-10 21:13:49','b9fff252-2197-4d12-ac6c-25269e0f62e8',1,'/jobs/banyo-village-medical-centre','','66.249.79.148','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: jobs/banyo-village-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,35,'2021-05-10 21:13:49',0),(60301,'2021-03-08 03:51:45','2021-05-11 13:25:41','d8aba183-b3b1-4e48-a6f5-48da771f2913',1,'/page/health-professionals/mental-health-services','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,25,'2021-05-11 13:25:41',0),(60318,'2021-03-08 07:19:50','2021-05-10 22:07:50','7ccc0424-ce1f-4e0d-83ba-ceb4ddd9fabc',1,'/content/Document/Primary care liaison/MNHHS TPCH Ref v6_2 ZM.rtf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Primary care liaison/MNHHS TPCH Ref v6_2 ZM.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-10 22:07:50',0),(60320,'2021-03-08 08:18:55','2021-05-14 10:39:45','931ae55c-df14-49e1-9392-3326a11e0200',1,'/jobs/registered-nurse-3','','66.249.75.180','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: jobs/registered-nurse-3','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,26,'2021-05-14 10:39:45',0),(60326,'2021-03-08 09:34:23','2021-05-17 02:55:58','bc986c2a-352e-438a-aa0e-c70fb8e75f7c',1,'/page/news-and-events/latest-news/farewell-to-a-trailblazing-community-leader-and-nurse/','','34.230.78.27','bitlybot/3.0 (+http://bit.ly/)','Template not found: page/news-and-events/latest-news/farewell-to-a-trailblazing-community-leader-and-nurse','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,23,'2021-05-17 02:55:58',0),(60359,'2021-03-08 16:02:56','2021-05-07 21:30:56','f102d2b5-0137-47e0-855a-481afb265739',1,'/jobs/program-support-officer-communications-part-time-role','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/program-support-officer-communications-part-time-role','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,83,'2021-05-07 21:30:56',0),(60429,'2021-03-09 08:17:37','2021-05-12 21:51:18','57f875c0-9ecb-41af-9c1e-60d88e823197',1,'/img/footer-about-us.png','','108.174.8.20','LinkedInBot/1.0 (compatible; Mozilla/5.0; Apache-HttpClient +http://www.linkedin.com)','Template not found: img/footer-about-us.png','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-12 21:51:18',0),(60444,'2021-03-09 11:05:41','2021-05-07 23:07:24','4199b04e-1cf3-42d0-847f-61c481bdde26',1,'/page/news-and-events/events/upcoming/Healthyageinexpo-MNHHS/','','66.249.69.61','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/Healthyageinexpo-MNHHS','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-07 23:07:24',0),(60453,'2021-03-09 14:56:34','2021-05-11 13:48:31','e1dd158d-5092-48fb-98fd-6fea98071897',1,'//wp-includes/wlwmanifest.xml','','89.187.187.101','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36','Template not found: wp-includes/wlwmanifest.xml','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,25,'2021-05-11 13:48:31',0),(60454,'2021-03-09 14:56:36','2021-05-11 13:48:32','52ec21b4-4f01-4092-938b-2e7577c9739f',1,'//xmlrpc.php','','89.187.187.101','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36','Template not found: xmlrpc.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,25,'2021-05-11 13:48:32',0),(60455,'2021-03-09 14:56:42','2021-05-11 13:48:35','03cf1f05-a741-4ed0-a04f-c4759c765a44',1,'//blog/wp-includes/wlwmanifest.xml','','89.187.187.101','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36','Template not found: blog/wp-includes/wlwmanifest.xml','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,25,'2021-05-11 13:48:35',0),(60456,'2021-03-09 14:56:47','2021-05-11 13:48:39','8f8ab9a5-906e-4839-85e9-81130340bb60',1,'//web/wp-includes/wlwmanifest.xml','','89.187.187.101','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36','Template not found: web/wp-includes/wlwmanifest.xml','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,25,'2021-05-11 13:48:39',0),(60457,'2021-03-09 14:57:27','2021-05-11 13:48:41','72229076-348c-4007-9fbb-424ed33ef900',1,'//wordpress/wp-includes/wlwmanifest.xml','','89.187.187.101','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36','Template not found: wordpress/wp-includes/wlwmanifest.xml','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,25,'2021-05-11 13:48:41',0),(60458,'2021-03-09 14:57:29','2021-05-11 13:48:43','7ad5f02d-46d5-49f9-b286-89473f18f2a2',1,'//website/wp-includes/wlwmanifest.xml','','89.187.187.101','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36','Template not found: website/wp-includes/wlwmanifest.xml','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,25,'2021-05-11 13:48:43',0),(60459,'2021-03-09 14:57:31','2021-05-11 13:48:43','b417dede-3dd1-444f-9ac9-7890291727f6',1,'//wp/wp-includes/wlwmanifest.xml','','89.187.187.101','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36','Template not found: wp/wp-includes/wlwmanifest.xml','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,25,'2021-05-11 13:48:43',0),(60460,'2021-03-09 14:57:32','2021-05-11 13:48:44','d701eecd-eeed-41cd-8878-353f261af960',1,'//news/wp-includes/wlwmanifest.xml','','89.187.187.101','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36','Template not found: news/wp-includes/wlwmanifest.xml','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,25,'2021-05-11 13:48:44',0),(60461,'2021-03-09 14:57:34','2021-05-11 13:48:45','55603ee1-ff3b-4b68-8912-31bc95a5c501',1,'//2020/wp-includes/wlwmanifest.xml','','89.187.187.101','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36','Template not found: 2020/wp-includes/wlwmanifest.xml','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,17,'2021-05-11 13:48:45',0),(60462,'2021-03-09 14:57:41','2021-05-11 13:48:46','159e0d1f-1b73-4881-9602-13d1717da14b',1,'//2019/wp-includes/wlwmanifest.xml','','89.187.187.101','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36','Template not found: 2019/wp-includes/wlwmanifest.xml','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,24,'2021-05-11 13:48:46',0),(60463,'2021-03-09 14:57:43','2021-05-11 13:48:46','49e450b8-6300-44a4-99c0-bcfc1cdcff71',1,'//shop/wp-includes/wlwmanifest.xml','','89.187.187.101','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36','Template not found: shop/wp-includes/wlwmanifest.xml','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,24,'2021-05-11 13:48:46',0),(60464,'2021-03-09 14:57:45','2021-05-11 13:48:47','fade12cb-c0d8-43d4-8a0f-68dfaad69558',1,'//wp1/wp-includes/wlwmanifest.xml','','89.187.187.101','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36','Template not found: wp1/wp-includes/wlwmanifest.xml','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,25,'2021-05-11 13:48:47',0),(60465,'2021-03-09 14:57:46','2021-05-11 13:48:48','51e117d5-1633-4462-87cd-ca4b801db51c',1,'//test/wp-includes/wlwmanifest.xml','','89.187.187.101','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36','Template not found: test/wp-includes/wlwmanifest.xml','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,25,'2021-05-11 13:48:48',0),(60466,'2021-03-09 14:57:47','2021-05-11 13:48:49','76cc0323-120b-4b42-965c-b3787ac92bec',1,'//wp2/wp-includes/wlwmanifest.xml','','89.187.187.101','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36','Template not found: wp2/wp-includes/wlwmanifest.xml','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,25,'2021-05-11 13:48:49',0),(60467,'2021-03-09 14:57:49','2021-05-11 13:48:50','8b86e858-1e58-4e96-b694-1b155b3ff1a3',1,'//site/wp-includes/wlwmanifest.xml','','89.187.187.101','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36','Template not found: site/wp-includes/wlwmanifest.xml','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,25,'2021-05-11 13:48:50',0),(60468,'2021-03-09 14:57:51','2021-05-11 13:48:50','4a8aa9e6-80e9-4287-af0c-07268ff764c0',1,'//cms/wp-includes/wlwmanifest.xml','','89.187.187.101','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36','Template not found: cms/wp-includes/wlwmanifest.xml','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,25,'2021-05-11 13:48:50',0),(60469,'2021-03-09 14:57:52','2021-05-11 13:48:51','b5b15759-11e2-4ac5-b7ea-6a6680fcc06f',1,'//sito/wp-includes/wlwmanifest.xml','','89.187.187.101','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36','Template not found: sito/wp-includes/wlwmanifest.xml','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,25,'2021-05-11 13:48:51',0),(60518,'2021-03-10 06:04:56','2021-05-11 07:53:17','66681429-64da-4492-9633-eaf5fd480b95',1,'/content/Document/Templates/5.2/Specialists List_Redcliffe Hospital_5_2.pdf','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Templates/5.2/Specialists List_Redcliffe Hospital_5_2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-11 07:53:17',0),(60578,'2021-03-10 17:07:54','2021-05-13 17:26:50','c77e817b-3a4c-4b51-9d79-892c71f4e679',1,'/content/Document/Network Link_07_AUGUST_FINAL_WEB_v2.pdf','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Network Link_07_AUGUST_FINAL_WEB_v2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-13 17:26:50',0),(60587,'2021-03-10 18:55:15','2021-05-16 07:46:38','2d929236-4d20-4042-844e-b7ecdffc5b4c',1,'/page/news-and-events/latest-news/my-health-record-opt-out-date-announced/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/my-health-record-opt-out-date-announced','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,21,'2021-05-16 07:46:38',0),(60600,'2021-03-10 21:08:47','2021-05-17 01:47:59','50f17b95-5c4f-432b-ae1a-f88e5cc56477',1,'/page/about/dist/swiper.js','https://www.brisbanenorthphn.org.au/page/about/our-team/primary-care-liaison-officers','103.87.254.78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','Template not found: page/about/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-17 01:47:59',0),(60640,'2021-03-11 08:57:47','2021-05-09 00:05:06','87d19db9-a7a2-4132-b5da-5cd901e6a0e2',1,'/page/publications/partners-in-health/partners-in-health-march-2018/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/publications/partners-in-health/partners-in-health-march-2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,37,'2021-05-09 00:05:06',0),(60645,'2021-03-11 11:17:49','2021-05-15 08:46:40','5ffeb926-2f9b-47f0-89f7-251f1359f988',1,'/content/Document/Sharon Hodby, Amie Horwood - COPD.pdf','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Sharon Hodby, Amie Horwood - COPD.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-15 08:46:40',0),(60650,'2021-03-11 13:14:13','2021-05-14 10:36:31','b4bd60ec-c0e7-477f-b045-c37d2f6474b5',1,'/content/Document/Pathways/Features of Leg Ulcers_link.pdf','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Features of Leg Ulcers_link.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,27,'2021-05-14 10:36:31',0),(60665,'2021-03-11 18:01:54','2021-05-11 11:25:18','b4d91197-a302-4754-8aea-b83a3def39ae',1,'/content/Document/FAQs _ New Brisbane MIND Software.pdf','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/FAQs _ New Brisbane MIND Software.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-11 11:25:18',0),(60667,'2021-03-11 18:50:11','2021-05-15 11:43:09','aa7f6a95-2000-477a-b0c7-9d048cd9d52e',1,'/page/news-and-events/events/upcoming/north-brisbane-partners-in-recovery-forum-redcliffe/','https://www.brisbanenorthphn.org.au/page/news-and-events/events/upcoming/north-brisbane-partners-in-recovery-forum-redcliffe/','195.2.70.173','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 Edg/83.0.478.37','Template not found: page/news-and-events/events/upcoming/north-brisbane-partners-in-recovery-forum-redcliffe','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-15 11:43:09',0),(60672,'2021-03-11 21:33:10','2021-05-15 10:19:14','faaca862-94e6-4067-99bc-e436ac2a5243',1,'/content/Document/HLT47715-Certificate-IV-in-Medical-Practice-Assisting-Queensland.pdf','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/HLT47715-Certificate-IV-in-Medical-Practice-Assisting-Queensland.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-15 10:19:14',0),(60696,'2021-03-12 04:48:13','2021-05-18 23:34:47','61ed1937-2694-42fa-a0a6-74927aaa8b1f',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---brisbane-city-2/','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---brisbane-city-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,18,'2021-05-18 23:34:47',0),(60717,'2021-03-12 08:37:33','2021-05-16 14:20:41','724957e4-9b12-48a5-8e8f-08e788189967',1,'/content/Document/Templates/TCC/2017/Team Care Coordination eReferral MD 22_08_17.rtf','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Templates/TCC/2017/Team Care Coordination eReferral MD 22_08_17.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-16 14:20:41',0),(60723,'2021-03-12 10:10:48','2021-05-09 12:28:29','c311518c-647e-450d-abcd-8e0495fbc881',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-required---gympie-road-medical-centre/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-required---gympie-road-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-09 12:28:29',0),(60774,'2021-03-12 22:27:15','2021-05-18 23:14:11','5d2a71a4-8199-4005-91d5-01c6db48d4b7',1,'/.git/HEAD','','35.163.2.156','Go-http-client/1.1','Template not found: .git/HEAD','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,15,'2021-05-18 23:14:11',0),(60794,'2021-03-13 02:46:59','2021-05-19 01:13:03','6938163a-d789-4cec-9345-48e1b4f6deeb',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---albany-creek-2/','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---albany-creek-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-19 01:13:03',0),(60838,'2021-03-13 14:35:54','2021-04-24 09:24:49','853ec137-89b2-4ead-acee-3353fa0bf2b5',1,'/yearinreview/a-message-from-the-ceo-and-chair/','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/a-message-from-the-ceo-and-chair','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,25,'2021-04-24 09:24:49',0),(60853,'2021-03-13 18:22:13','2021-05-11 15:38:58','706fc7c5-d95b-48cd-8899-f4d83e091a04',1,'/page/news-and-events/events/upcoming/care-expo/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/care-expo','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-11 15:38:58',0),(60863,'2021-03-13 18:25:47','2021-05-11 03:43:26','ccec0569-87ce-4556-ac28-3176aa382b31',1,'/page/home/style-guide/tab-listing/item-2/','','134.195.89.70','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/home/style-guide/tab-listing/item-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-11 03:43:26',0),(60864,'2021-03-13 18:26:00','2021-05-17 03:16:25','0f158815-3a9e-4c35-b269-7793bb826e37',1,'/page/home/style-guide/tab-listing/','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/style-guide/tab-listing','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-17 03:16:25',0),(60865,'2021-03-13 18:26:05','2021-05-11 03:42:50','4871a854-6418-45ca-95b7-79d2423c2e27',1,'/page/home/style-guide/grid-listing/item-3/','','134.195.89.70','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/home/style-guide/grid-listing/item-3','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-11 03:42:50',0),(60867,'2021-03-13 18:26:16','2021-05-11 03:42:41','70f03fa3-481c-4392-ad58-ce567a15503b',1,'/page/home/style-guide/grid-listing/item-1/','','134.195.89.70','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/home/style-guide/grid-listing/item-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-11 03:42:41',0),(60870,'2021-03-13 18:26:36','2021-05-18 05:54:28','85cbcf73-7bc0-4515-8d39-b364f36c9df4',1,'/page/home/style-guide/','','40.77.167.35','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/home/style-guide','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-18 05:54:28',0),(60871,'2021-03-13 18:27:02','2021-05-05 05:57:02','8475d089-515c-41cc-8eae-101412cbc9d3',1,'/page/home/brands/','','78.46.61.245','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/home/brands','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-05 05:57:02',0),(60873,'2021-03-13 18:27:51','2021-04-22 23:36:19','9faa7512-6cb6-4c96-92f4-af7995e7dd8a',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---toombul/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---toombul','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-04-22 23:36:19',0),(60888,'2021-03-13 18:33:07','2021-05-16 07:42:06','d270dcaf-3ea0-42f6-9e95-164112ea4089',1,'/page/news-and-events/latest-news/improving-the-health-of-children-in-out-of-home-care-in-caboolture/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/improving-the-health-of-children-in-out-of-home-care-in-caboolture','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-16 07:42:06',0),(60889,'2021-03-13 18:33:17','2021-05-16 07:42:34','a0cc4ffc-6e46-45f5-b415-082ca295570f',1,'/page/news-and-events/latest-news/information-exchange-eases-the-national-disability-insurance-scheme-transition/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/information-exchange-eases-the-national-disability-insurance-scheme-transition','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,16,'2021-05-16 07:42:34',0),(60903,'2021-03-13 18:35:09','2021-05-17 16:09:59','449cd6bd-e80d-4d78-a1b2-15dcb34dee20',1,'/page/news-and-events/latest-news/metro-north-health-forum-registrations-open/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/metro-north-health-forum-registrations-open','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-17 16:09:59',0),(60907,'2021-03-13 18:36:06','2021-05-16 07:46:26','af3252eb-6b5d-4a82-8477-0cb022b970ec',1,'/page/news-and-events/latest-news/my-health-record-now-available-for-nine-out-of-ten-of-your-patients/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/my-health-record-now-available-for-nine-out-of-ten-of-your-patients','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-16 07:46:26',0),(60910,'2021-03-13 18:36:32','2021-05-16 07:46:58','12942066-28e2-4102-a976-4b6ffa035324',1,'/page/news-and-events/latest-news/my-health-record-update/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/my-health-record-update','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-16 07:46:58',0),(60913,'2021-03-13 18:37:07','2021-05-16 07:47:42','a007151e-d4d0-4107-994f-c2133a445018',1,'/page/news-and-events/latest-news/new-opportunities-to-enrol-in-medical-assisting-studies/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/new-opportunities-to-enrol-in-medical-assisting-studies','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-16 07:47:42',0),(60914,'2021-03-13 18:37:13','2021-05-16 07:47:49','6d26d35a-1d9a-438c-8fd9-18a5122dffc1',1,'/page/news-and-events/latest-news/new-video-promotes-local-mental-health-services/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/new-video-promotes-local-mental-health-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 07:47:49',0),(60916,'2021-03-13 18:37:23','2021-05-16 07:48:02','d46388ab-0ddb-4058-99b5-44c39b69b9bc',1,'/page/news-and-events/latest-news/non-executive-director-opportunities-available-with-the-phn/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/non-executive-director-opportunities-available-with-the-phn','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-16 07:48:02',0),(60925,'2021-03-13 18:38:23','2021-05-16 07:48:51','05d31395-633e-4c13-b944-92617eb8b272',1,'/page/news-and-events/latest-news/people-vs-machines-and-the-future-of-healthcare/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/people-vs-machines-and-the-future-of-healthcare','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-16 07:48:51',0),(60933,'2021-03-13 18:40:23','2021-05-16 07:50:28','2fd5177c-4baa-408b-ae49-819e96ae2896',1,'/page/news-and-events/latest-news/review-of-health-priorities/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/review-of-health-priorities','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-16 07:50:28',0),(60942,'2021-03-13 18:41:34','2021-05-16 07:51:26','29bf87c4-6701-4a9e-985c-d6a888eec25d',1,'/page/news-and-events/latest-news/talking-through-the-warning-signs-of-suicide/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/talking-through-the-warning-signs-of-suicide','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-16 07:51:26',0),(60944,'2021-03-13 18:42:05','2021-05-14 19:23:51','7093fd69-65cc-4585-a5e4-f152889695f3',1,'/page/news-and-events/latest-news/traditional-ceremony-connects-gubbi-gubbi-babies-to-country/','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/traditional-ceremony-connects-gubbi-gubbi-babies-to-country','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-14 19:23:51',0),(60955,'2021-03-13 18:43:56','2021-04-24 16:24:37','4090c85d-38e1-45e3-8af7-2c16fb0a1273',1,'/page/news-and-events/metro-north-health-forum/2018-metro-north-health-forum/metro-north-health-forum-exhibitors-announced/','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.80 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/metro-north-health-forum/2018-metro-north-health-forum/metro-north-health-forum-exhibitors-announced','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-24 16:24:37',0),(60956,'2021-03-13 18:44:01','2021-04-25 02:51:43','12ea8b7c-e1e3-40e7-a604-c83f56972cd1',1,'/page/news-and-events/metro-north-health-forum/2018-metro-north-health-forum/people-vs-machines-and-the-future-of-healthcare/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/metro-north-health-forum/2018-metro-north-health-forum/people-vs-machines-and-the-future-of-healthcare','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-25 02:51:43',0),(60959,'2021-03-13 18:44:26','2021-05-18 12:07:44','6e03c62a-cbf6-46be-9e9d-380df9656da6',1,'/page/publications/newsletters/advertising-and-promotion/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/newsletters/advertising-and-promotion','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,14,'2021-05-18 12:07:44',0),(60960,'2021-03-13 18:44:53','2021-04-24 09:34:32','436d2cd3-663b-46a4-bc18-6f4552ef3a74',1,'/page/publications/partners-in-health/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/publications/partners-in-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,15,'2021-04-24 09:34:32',0),(60969,'2021-03-13 18:46:19','2021-05-03 12:01:54','358cdcaa-8c95-415d-8049-bf275e02d9a8',1,'/page/publications/partners-in-health/partners-in-health-april-2018/','','173.252.87.3','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: page/publications/partners-in-health/partners-in-health-april-2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,14,'2021-05-03 12:01:54',0),(60975,'2021-03-13 18:49:53','2021-04-22 23:33:28','580ab883-9061-4274-a4c8-3a2812ae8b34',1,'/page/health-professionals/Local Positions Vacant/other-health-professional/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/health-professionals/Local Positions Vacant/other-health-professional','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-04-22 23:33:28',0),(60999,'2021-03-13 19:05:37','2021-05-11 07:31:44','650cb92c-5c2b-40d2-af93-35ae4c8feba7',1,'/page/news-and-events/events/upcoming/trauma-informed-care-and-practice-for-domestic-and-family-violence-services-level-1/','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/trauma-informed-care-and-practice-for-domestic-and-family-violence-services-level-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-11 07:31:44',0),(61002,'2021-03-13 19:06:19','2021-05-17 20:01:04','7b81fe27-b041-4bf2-85ef-1b79fd07add0',1,'/page/news-and-events/latest-news/dementia-diagnosis-on-the-gp-show-podcast','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/dementia-diagnosis-on-the-gp-show-podcast','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-17 20:01:04',0),(61008,'2021-03-13 19:06:55','2021-05-09 17:15:10','db6248f6-df8f-43ca-85af-04feb1db8a24',1,'/page/news-and-events/latest-news/a-visit-from-the-shadow-state-health-minister/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/a-visit-from-the-shadow-state-health-minister','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-09 17:15:10',0),(61016,'2021-03-13 19:08:17','2021-05-03 01:36:49','771721b1-d0ab-4f56-a4b0-b91dc01a7aac',1,'/page/news-and-events/latest-news/clinical-leadership-underpins-alliance-activities/','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/clinical-leadership-underpins-alliance-activities','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-03 01:36:49',0),(61027,'2021-03-13 20:04:18','2021-05-11 09:24:59','52b6c3ac-995e-4109-a132-a7551c9ec666',1,'/content/Document/MNHF presentations 2017/Paula Arro - Consumer, Carer and Peer Participation 170531.pdf','','51.89.208.143','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.16) Gecko/20080702 Firefox/2.0.0.16','Template not found: content/Document/MNHF presentations 2017/Paula Arro - Consumer, Carer and Peer Participation 170531.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-11 09:24:59',0),(61039,'2021-03-14 03:44:20','2021-05-18 23:30:51','2aa465e7-c872-48a9-b603-7391aaf25ef2',1,'/jobs/psychologist-required-private-billing','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/psychologist-required-private-billing','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,21,'2021-05-18 23:30:51',0),(61053,'2021-03-14 06:45:01','2021-05-11 10:35:57','0523766d-91a7-4fc5-b821-a29bf391ba69',1,'/content/Document/Templates/6.1/Specialists List_RBWH_6_1.pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/6.1/Specialists List_RBWH_6_1.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,18,'2021-05-11 10:35:57',0),(61066,'2021-03-14 14:45:35','2021-04-24 06:30:03','6fd35c60-2a82-45eb-ad6d-c8091aa2b66b',1,'/content/Document/SEQ Murri Service Directory v5_9 January 2020.pdf','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/SEQ Murri Service Directory v5_9 January 2020.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-04-24 06:30:03',0),(61070,'2021-03-14 16:11:53','2021-05-10 14:53:52','ee349b7a-d15f-400a-b194-a7a95539533f',1,'/content/Document/Recovery/MHAOD_Recovery_newsletter_February_2019 web.pdf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Recovery/MHAOD_Recovery_newsletter_February_2019 web.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-10 14:53:52',0),(61098,'2021-03-15 01:37:16','2021-04-29 14:42:37','3f6ab1c2-8773-43e9-9340-619bb0a4afbe',1,'/jobs/part-time-position-at-qut-medical-centre-kelvin-grove','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/part-time-position-at-qut-medical-centre-kelvin-grove','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-04-29 14:42:37',0),(61101,'2021-03-15 02:28:09','2021-04-11 02:12:48','352162d1-f3b1-42d1-9c1b-35565538adfb',1,'/page/health-professionals/Local Positions Vacant/vr-gps---fullerton-health/','','207.46.13.43','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/vr-gps---fullerton-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-11 02:12:48',0),(61103,'2021-03-15 02:38:05','2021-05-16 00:42:43','05b59ce7-f4f4-40ba-a14d-72f0a15d131d',1,'/laravel/.env','','142.93.169.146','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: laravel/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-16 00:42:43',0),(61107,'2021-03-15 02:38:20','2021-05-16 00:42:55','71331757-9090-40aa-b956-7a1a98d29fdf',1,'/system/.env','','142.93.169.146','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: system/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 00:42:55',0),(61133,'2021-03-15 10:27:00','2021-05-12 11:27:27','bba7c975-8f48-4015-b550-28fc1ab77afd',1,'/page/news-and-events/latest-news/talking-can-be-healing-in-a-crisis/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/talking-can-be-healing-in-a-crisis','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-12 11:27:27',0),(61134,'2021-03-15 10:36:50','2021-05-05 14:56:57','abd1dd3f-4404-4274-99ee-e9aa0186304f',1,'/content/Document/Brisbane MIND Provider List January 2019(3).pdf','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Brisbane MIND Provider List January 2019(3).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-05 14:56:57',0),(61147,'2021-03-15 13:48:09','2021-05-01 02:55:36','2ad8c2f6-2750-4052-8699-3b031a7825ac',1,'/wp-config.php.2','http://brisbanenorthphn.org.au/wp-config.php.2','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php.2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:36',0),(61148,'2021-03-15 13:48:09','2021-05-01 02:55:38','638b9293-1c7d-4005-8eaf-82e584fbad4c',1,'/wp-config.php.3','http://brisbanenorthphn.org.au/wp-config.php.3','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php.3','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:38',0),(61149,'2021-03-15 13:48:09','2021-05-01 02:55:34','53f90930-47a5-4fea-a363-913cc2dcbcfc',1,'/wp-config.php.swp','http://brisbanenorthphn.org.au/wp-config.php.swp','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php.swp','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:34',0),(61150,'2021-03-15 13:48:10','2021-05-01 02:55:39','fa929e3d-3e79-4127-8ecb-7de6ca0cc871',1,'/wp-config.php.new','http://brisbanenorthphn.org.au/wp-config.php.new','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php.new','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:39',0),(61151,'2021-03-15 13:48:10','2021-05-01 02:55:38','5ed85573-5429-4acf-84c8-3710a919d84d',1,'/wp-config.php.1','http://brisbanenorthphn.org.au/wp-config.php.1','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php.1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:38',0),(61152,'2021-03-15 13:48:10','2021-05-01 02:55:40','740d136b-7888-4baf-b759-0fb995f36dc7',1,'/wp-config.php.save','http://brisbanenorthphn.org.au/wp-config.php.save','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php.save','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-01 02:55:40',0),(61153,'2021-03-15 13:48:10','2021-05-01 02:55:37','1e7aab82-c2e7-4aa3-9985-e0eefc5f0365',1,'/wp-config.php.old','http://brisbanenorthphn.org.au/wp-config.php.old','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php.old','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:37',0),(61154,'2021-03-15 13:48:11','2021-05-01 02:55:33','570ae8fb-2708-49f0-af44-9db946679d98',1,'/wp-config.php.9','http://brisbanenorthphn.org.au/wp-config.php.9','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php.9','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:33',0),(61155,'2021-03-15 13:48:11','2021-05-01 02:55:35','ebfd3abb-b572-4f3c-888f-8e8510f62ce7',1,'/wp-config.php_original','http://brisbanenorthphn.org.au/wp-config.php_original','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php_original','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:35',0),(61156,'2021-03-15 13:48:11','2021-05-01 02:55:33','9c31a83e-da71-4eee-963a-a42e3a860254',1,'/wp-config.php.b','http://brisbanenorthphn.org.au/wp-config.php.b','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php.b','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:33',0),(61157,'2021-03-15 13:48:11','2021-05-01 02:55:42','5578d930-b602-48ca-af3a-0387a197a9ed',1,'/wp-config.php_bak','http://brisbanenorthphn.org.au/wp-config.php_bak','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php_bak','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-01 02:55:42',0),(61158,'2021-03-15 13:48:11','2021-05-01 02:55:36','bbc1a31b-1b9a-4fe6-8fd8-2d30a573c772',1,'/wp-config.php~','http://brisbanenorthphn.org.au/wp-config.php~','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php~','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-01 02:55:36',0),(61159,'2021-03-15 13:48:11','2021-05-01 02:55:40','2753d81c-7f28-42e0-91e8-d00ae3a23d96',1,'/wp-config_good','http://brisbanenorthphn.org.au/wp-config_good','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config_good','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:40',0),(61160,'2021-03-15 13:48:11','2021-05-01 02:55:38','d70ed8ce-cad3-410a-94a1-af8161abdf13',1,'/wp-config.good','http://brisbanenorthphn.org.au/wp-config.good','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.good','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:38',0),(61161,'2021-03-15 13:48:12','2021-05-01 02:55:43','a1265c8e-1b48-4dd5-b4ae-d6ffdfc43c67',1,'/wp-config.php_Old','http://brisbanenorthphn.org.au/wp-config.php_Old','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php_Old','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:43',0),(61162,'2021-03-15 13:48:12','2021-05-01 02:55:41','61ca10c2-7663-474d-986c-928d31331c5b',1,'/wp-config.php.4','http://brisbanenorthphn.org.au/wp-config.php.4','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php.4','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:41',0),(61163,'2021-03-15 13:48:12','2021-05-01 02:55:41','3ea43bb1-7b9e-47f6-b8d5-043ad048b889',1,'/wp-config.php.original','http://brisbanenorthphn.org.au/wp-config.php.original','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php.original','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:41',0),(61164,'2021-03-15 13:48:12','2021-05-01 02:55:41','1b7f7010-8973-46a9-b87c-aa9f21d49bc2',1,'/wp-config.php.orig','http://brisbanenorthphn.org.au/wp-config.php.orig','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php.orig','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:41',0),(61165,'2021-03-15 13:48:13','2021-05-01 02:55:43','ff7b119a-e647-40be-9e1f-198c0d6d2426',1,'/wp-config.php.swn','http://brisbanenorthphn.org.au/wp-config.php.swn','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php.swn','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:43',0),(61166,'2021-03-15 13:48:13','2021-05-01 02:55:40','dca0edd0-9cea-4af2-b106-7a15039cfaed',1,'/wp-config.php.5','http://brisbanenorthphn.org.au/wp-config.php.5','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php.5','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:40',0),(61167,'2021-03-15 13:48:14','2021-05-01 02:55:39','ac2a1fe5-8db6-4b7c-a737-20c13860b06a',1,'/wp-config.php_','http://brisbanenorthphn.org.au/wp-config.php_','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php_','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:39',0),(61168,'2021-03-15 13:48:14','2021-05-01 02:55:42','8d47e10e-1248-46e0-a0db-768c3e3ab05f',1,'/wp-config.php_new','http://brisbanenorthphn.org.au/wp-config.php_new','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php_new','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:42',0),(61169,'2021-03-15 13:48:14','2021-05-01 02:55:40','4cffdf61-6d65-4ee3-bada-854b62406471',1,'/wp-config-good','http://brisbanenorthphn.org.au/wp-config-good','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config-good','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:40',0),(61170,'2021-03-15 13:48:14','2021-05-01 02:55:34','b76f9d2c-f34f-4992-b3e6-0d8558acb792',1,'/wp-config.php.backup','http://brisbanenorthphn.org.au/wp-config.php.backup','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php.backup','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:34',0),(61171,'2021-03-15 13:48:14','2021-05-01 02:55:37','c54e3029-6141-4094-8b5a-41558d48fb17',1,'/wp-config.php.a','http://brisbanenorthphn.org.au/wp-config.php.a','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php.a','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:37',0),(61172,'2021-03-15 13:48:14','2021-05-01 02:55:36','de3ac852-2403-4356-8a70-3e81aa263d40',1,'/wp-config.php_orig','http://brisbanenorthphn.org.au/wp-config.php_orig','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php_orig','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:36',0),(61173,'2021-03-15 13:48:15','2021-05-01 02:55:35','0bf5c66a-169a-4c73-83de-8b80413d89f8',1,'/wp-config.php.0','http://brisbanenorthphn.org.au/wp-config.php.0','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php.0','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:35',0),(61174,'2021-03-15 13:48:15','2021-05-01 02:55:37','3e914418-d56f-4848-9a4b-f2eab4bfae34',1,'/wp-config.php.disabled','http://brisbanenorthphn.org.au/wp-config.php.disabled','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php.disabled','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:37',0),(61175,'2021-03-15 13:48:15','2021-05-01 02:55:33','a9b9788c-469d-4963-9fe3-d578dfe971a4',1,'/wp-config.php.bak','http://brisbanenorthphn.org.au/wp-config.php.bak','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php.bak','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-01 02:55:33',0),(61176,'2021-03-15 13:48:15','2021-05-01 02:55:37','b98832e0-ae65-4b5a-80d4-e43f161b4180',1,'/wp-config.bak','http://brisbanenorthphn.org.au/wp-config.bak','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.bak','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:37',0),(61177,'2021-03-15 13:48:15','2021-05-01 02:55:36','7b7665be-d0a6-45b9-9dec-2d8bca78c11a',1,'/wp-config.php.8','http://brisbanenorthphn.org.au/wp-config.php.8','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php.8','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:36',0),(61178,'2021-03-15 13:48:15','2021-05-01 02:55:34','8ae8acd7-5212-4e47-943e-ac341bf27a54',1,'/wp-config.php-original','http://brisbanenorthphn.org.au/wp-config.php-original','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php-original','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:34',0),(61179,'2021-03-15 13:48:16','2021-05-01 02:55:42','b709c5ad-d6ab-498a-ab5a-dd41ce87defa',1,'/wp-config.php.swo','http://brisbanenorthphn.org.au/wp-config.php.swo','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php.swo','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:42',0),(61180,'2021-03-15 13:48:17','2021-05-01 02:55:39','5583ac75-58dc-40f5-8fbe-f48935922924',1,'/wp-config.php.bk','http://brisbanenorthphn.org.au/wp-config.php.bk','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php.bk','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:39',0),(61181,'2021-03-15 13:48:17','2021-04-12 10:25:44','b3102e46-067a-4495-9466-1ca7d0788713',1,'/wp-config.php.bak1','http://brisbanenorthphn.org.au/wp-config.php.bak1','162.247.74.7','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php.bak1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-12 10:25:44',0),(61182,'2021-03-15 13:48:17','2021-05-01 02:55:41','272a7567-4d23-42db-acf8-fe55d6e04213',1,'/wp-config.php_1','http://brisbanenorthphn.org.au/wp-config.php_1','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php_1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:41',0),(61183,'2021-03-15 13:48:17','2021-05-01 02:55:43','0c5705dc-18cf-44a2-a972-2ac1e99adbff',1,'/wp-config.php-bak','http://brisbanenorthphn.org.au/wp-config.php-bak','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php-bak','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:43',0),(61184,'2021-03-15 13:48:17','2021-04-12 10:25:44','49db81ab-819a-4c21-8fab-eb7bb49b5ce5',1,'/wp-config.php.cust','http://brisbanenorthphn.org.au/wp-config.php.cust','162.247.74.7','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php.cust','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-12 10:25:44',0),(61185,'2021-03-15 13:48:17','2021-05-01 02:55:37','5b114684-1fd1-49ee-a166-09d0e58be173',1,'/wp-config.php.6','http://brisbanenorthphn.org.au/wp-config.php.6','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php.6','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:37',0),(61186,'2021-03-15 13:48:18','2021-05-01 02:55:35','0998a202-1031-4728-a925-3d6a9e5595a3',1,'/wp-config.php.7','http://brisbanenorthphn.org.au/wp-config.php.7','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php.7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:35',0),(61187,'2021-03-15 13:48:18','2021-05-01 02:55:41','4997cb5a-aa19-4748-b2fd-1ddafe5f726b',1,'/wp-config.phporiginal','http://brisbanenorthphn.org.au/wp-config.phporiginal','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.phporiginal','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 02:55:41',0),(61192,'2021-03-15 14:15:30','2021-04-29 08:55:33','1c70c1ac-270f-4fa6-8fa4-e4c8c2bb3579',1,'/jobs/dr-2','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/dr-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-04-29 08:55:33',0),(61195,'2021-03-15 14:32:25','2021-05-11 03:42:33','d94b16c4-c1f0-475d-8237-8187fc8644f4',1,'/page/home/style-guide/document-listing/test-doc-1/','','134.195.89.70','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/home/style-guide/document-listing/test-doc-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-11 03:42:33',0),(61238,'2021-03-16 00:40:24','2021-05-16 14:30:13','0a7559e3-b735-4f12-a372-750d27f596a8',1,'/page/health-professionals/digital-health/health-provider-portal-the-viewer','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/digital-health/health-provider-portal-the-viewer','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-16 14:30:13',0),(61241,'2021-03-16 02:03:40','2021-04-11 01:24:20','d798f0f8-70e7-44ec-8c4e-09e27183331b',1,'/yearinreview/2017-18/wp-content/uploads/2018/11/IMG_1679-e1541991313631.jpg','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/wp-content/uploads/2018/11/IMG_1679-e1541991313631.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-11 01:24:20',0),(61245,'2021-03-16 02:40:56','2021-05-13 02:28:24','72cafc0f-8954-4f6e-b26b-1c0ce377eee9',1,'/position-type/executive-manager','','66.249.66.214','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: position-type/executive-manager','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 02:28:24',0),(61252,'2021-03-16 03:40:34','2021-05-11 17:54:12','345a60b5-7a7f-49fd-a6c3-ccc386d3c3b3',1,'/page/news-and-events/events/upcoming/towards-wellbeing-conference','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/towards-wellbeing-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-11 17:54:12',0),(61264,'2021-03-16 05:13:34','2021-05-14 15:47:28','7db6113c-583f-4a2a-8831-c4768f29d6f4',1,'/page/news-and-events/events/upcoming/australian-association-of-musculoskeletal-medicine-conference','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/australian-association-of-musculoskeletal-medicine-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-14 15:47:28',0),(61265,'2021-03-16 05:16:29','2021-05-07 09:02:12','1fa7256c-1bd4-4b12-a8de-faa94cb82ff2',1,'/content/Document/MNHHS RBWH Referral BP v4_11(2).rtf','http://www.brisbanenorthphn.org.au/content/Document/MNHHS%20RBWH%20Referral%20BP%20v4_11(2).rtf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/MNHHS RBWH Referral BP v4_11(2).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-07 09:02:12',0),(61267,'2021-03-16 05:33:19','2021-05-09 09:23:59','55edfdf9-93f6-4705-9e50-81770231684b',1,'/content/Document/Pathways/Wound Care_Compression Therapy FAQ_link_141001.pdf','','93.158.161.26','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','Template not found: content/Document/Pathways/Wound Care_Compression Therapy FAQ_link_141001.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-09 09:23:59',0),(61268,'2021-03-16 05:41:28','2021-05-15 17:45:14','a50f1667-d19c-439d-8c1e-d82a2b076209',1,'/content/Document/Templates/5.2/Specialists List_RBWH_5_2.pdf','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/5.2/Specialists List_RBWH_5_2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-15 17:45:14',0),(61272,'2021-03-16 05:54:08','2021-05-01 09:20:08','8c44aef1-7117-47af-aa76-b9647c12da13',1,'/events/recalls-reminders-and-cancer-screening-including-integrated-ncsr-access-using-bp-premier-nqphn','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/recalls-reminders-and-cancer-screening-including-integrated-ncsr-access-using-bp-premier-nqphn','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-01 09:20:08',0),(61274,'2021-03-16 06:31:22','2021-05-11 12:28:50','e3fefde6-f17a-4092-b64a-e1894543c17d',1,'/content/Document/GP Invitation final version.pdf','','178.63.51.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Safari/605.1.15','Template not found: content/Document/GP Invitation final version.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-11 12:28:50',0),(61280,'2021-03-16 07:16:46','2021-05-02 18:42:44','dd854655-823c-44e0-a7c6-f7e6e63be100',1,'/events/abc-of-cbt-skills-for-gps','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/abc-of-cbt-skills-for-gps','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-02 18:42:44',0),(61283,'2021-03-16 07:45:50','2021-05-10 01:50:33','477c65e5-9c62-4a44-bd21-e2503f083ba7',1,'/page/health-professionals/ndis/ndis-events-popular-with-local-gps/','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/ndis/ndis-events-popular-with-local-gps','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-10 01:50:33',0),(61318,'2021-03-16 13:52:52','2021-05-15 15:09:26','89b8bcbb-ea8e-4819-8abd-fa4de5a3beb1',1,'/content/Document/Events/2018/Demystifying Osteoporosis Dinner Meeting Invite Template 2pp FINAL-2 MARCH 2018.pdf','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Events/2018/Demystifying Osteoporosis Dinner Meeting Invite Template 2pp FINAL-2 MARCH 2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-15 15:09:26',0),(61319,'2021-03-16 14:40:52','2021-05-11 14:30:17','321d7180-1ccc-402c-9d29-022d8818b4d9',1,'/events/what-works-and-what-doesnt-in-smoking-cessation-patients-and-experts-tell-all','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/what-works-and-what-doesnt-in-smoking-cessation-patients-and-experts-tell-all','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-11 14:30:17',0),(61336,'2021-03-16 17:12:37','2021-05-06 14:26:48','5efa52df-bf95-4bec-a61b-12e81c448f4b',1,'/page/publications/reports-and-plans/other-plans-and-reports','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/reports-and-plans/other-plans-and-reports','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-06 14:26:48',0),(61338,'2021-03-16 17:22:53','2021-05-04 07:44:22','8ab91935-c140-4e2a-a797-222d726e9873',1,'/yearinreview/2018-19/wp-content/uploads/2019/11/Homepage_MAIN-HERO.jpg','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2018-19/wp-content/uploads/2019/11/Homepage_MAIN-HERO.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-04 07:44:22',0),(61340,'2021-03-16 17:49:07','2021-05-18 23:02:53','c443177b-cf99-4ecc-a3ed-85d7ac21b9e7',1,'/events/mental-health-and-wellbeing-in-the-workplace','','157.55.39.116','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/mental-health-and-wellbeing-in-the-workplace','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-18 23:02:53',0),(61354,'2021-03-16 20:15:49','2021-05-18 22:33:27','9246606b-6849-4c30-84d1-7e1e3cc36950',1,'/events/pallipharm-workshop-7','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/pallipharm-workshop-7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,29,'2021-05-18 22:33:27',0),(61369,'2021-03-16 23:12:05','2021-05-01 21:57:59','7111e628-16f4-4d4f-9d30-465cb94f900c',1,'/page/news-and-events/latest-news/public-consultation-infant-pneumococcal-vaccination-schedule-recommendations','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/public-consultation-infant-pneumococcal-vaccination-schedule-recommendations','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-01 21:57:59',0),(61376,'2021-03-17 00:04:45','2021-05-12 22:52:42','9d67ca94-64f4-42d0-8418-e2852a4af092',1,'/jobs/medical-receptionist-4','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/medical-receptionist-4','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-12 22:52:42',0),(61381,'2021-03-17 00:47:32','2021-05-17 20:48:50','e580e1c9-6db7-4255-9d5a-c7b7e18efdab',1,'/page/news-and-events/events/archive/brisbane-north-aged-care-breakfast-forum','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/brisbane-north-aged-care-breakfast-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-17 20:48:50',0),(61386,'2021-03-17 02:08:15','2021-05-15 06:50:56','178b658d-ca34-4434-bcc7-ed478e2ae972',1,'/page/news-and-events/events/upcoming/redicase-training-May1','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/redicase-training-May1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-15 06:50:56',0),(61396,'2021-03-17 04:05:38','2021-05-07 03:11:13','66a213cb-e171-4102-80ee-e855cf9f52ba',1,'/content/Image/Programs/Active @ home web 2.jpg','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Programs/Active @ home web 2.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-07 03:11:13',0),(61398,'2021-03-17 04:32:19','2021-04-22 05:36:56','4d443c1e-53ca-4894-b9f3-6da14c74617c',1,'/yearinreview/2017-18/www.brisbanenorthphn.org.au','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/www.brisbanenorthphn.org.au','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-04-22 05:36:56',0),(61400,'2021-03-17 04:53:00','2021-05-13 10:17:36','d5549103-7151-4b93-9624-600079a5d2ad',1,'/jobs/general-practitioner-griffin','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/general-practitioner-griffin','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-13 10:17:36',0),(61406,'2021-03-17 05:51:52','2021-05-17 21:25:15','1a0c70dd-c4a9-48e6-a95d-95b08e9eddab',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-chermside','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-chermside','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,19,'2021-05-17 21:25:15',0),(61409,'2021-03-17 06:45:36','2021-05-11 13:54:35','1cc4c3c5-612a-4775-88bd-051f8ef40496',1,'/content/Document/Templates/Brisbane MIND/MIND4KiDS Referral PDF V3 (Published).pdf','http://www.brisbanenorthphn.org.au/content/Document/Templates/Brisbane%20MIND/MIND4KiDS%20Referral%20PDF%20V3%20(Published).pdf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Templates/Brisbane MIND/MIND4KiDS Referral PDF V3 (Published).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-11 13:54:35',0),(61412,'2021-03-17 07:12:56','2021-05-14 17:52:58','2d186977-8c06-442d-b88c-c792d8a7322f',1,'/content/Document/Jeff Cheverton Memorial Scholarship 2018 (002).pdf','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Jeff Cheverton Memorial Scholarship 2018 (002).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-14 17:52:58',0),(61415,'2021-03-17 07:22:30','2021-05-14 23:59:03','93723a03-6971-40af-ac1c-485867110492',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---wavell-heights','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---wavell-heights','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-14 23:59:03',0),(61417,'2021-03-17 07:33:40','2021-05-12 09:07:31','22aa9b98-e423-4710-b3ae-e834b894c0d5',1,'/page/news-and-events/events/archive/seasons-for-growth','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/seasons-for-growth','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-12 09:07:31',0),(61427,'2021-03-17 09:58:41','2021-05-19 01:17:36','db96002e-2511-4bcf-b857-c86dd352168a',1,'/page/news-and-events/events/upcoming/mtop-in-general-practice-seminar','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/mtop-in-general-practice-seminar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-19 01:17:36',0),(61438,'2021-03-17 12:32:16','2021-05-08 16:30:20','b68cdece-4965-429e-9d80-a1fa65fbba40',1,'/yearinreview/who-is-brisbane-north-phn','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/who-is-brisbane-north-phn','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-08 16:30:20',0),(61449,'2021-03-17 14:34:06','2021-05-18 02:56:23','b26d71bb-678e-4cab-9de0-b03845bc6346',1,'/content/Image/Events/BNPHN_023.jpg','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Events/BNPHN_023.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-18 02:56:23',0),(61451,'2021-03-17 14:51:43','2021-05-08 02:18:26','d17b33b8-c1d2-4eca-ac57-0d66f171e4d1',1,'/content/Document/Nicole Stormon and Jan Anderson - Dental Services - MNHF2018.pdf','','66.249.69.61','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Nicole Stormon and Jan Anderson - Dental Services - MNHF2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-08 02:18:26',0),(61456,'2021-03-17 16:28:17','2021-05-11 05:54:28','26494ee8-bf8f-4233-9888-605d96798deb',1,'/content/Image/dreamstime_m_912718.jpg','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/dreamstime_m_912718.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-11 05:54:28',0),(61464,'2021-03-17 19:20:46','2021-05-10 13:40:44','bfa40170-9ea8-425b-a5f5-08af0d124877',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---north-lakes','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---north-lakes','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-10 13:40:44',0),(61483,'2021-03-18 01:06:30','2021-04-22 02:21:12','2bb8dc40-5f8e-4fb4-b270-03d98510987f',1,'/content/Document/Tonita_Taylor_2016.jpg','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Tonita_Taylor_2016.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-22 02:21:12',0),(61485,'2021-03-18 01:23:36','2021-05-11 18:21:38','34e8712a-70c4-4c69-988b-5e1b08a6875a',1,'/content/Document/Primary care liaison/FIN_Practice Manager Induction Checklist and Record 2020.pdf','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Primary care liaison/FIN_Practice Manager Induction Checklist and Record 2020.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-11 18:21:38',0),(61494,'2021-03-18 03:01:21','2021-05-17 20:07:13','baf827cb-f959-4181-9ca1-a31353af03f7',1,'/events/hepatitis-b-and-covid-19','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/hepatitis-b-and-covid-19','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-17 20:07:13',0),(61500,'2021-03-18 05:24:32','2021-05-16 10:10:31','03af6760-a0fa-47c2-924e-0204fd1b6719',1,'/jobs/australian-doctors-clinic-psychologist-position-available','','62.210.188.216','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)','Template not found: jobs/australian-doctors-clinic-psychologist-position-available','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-16 10:10:31',0),(61511,'2021-03-18 07:05:31','2021-04-10 21:11:48','99444950-8750-4291-9e10-44888fceeb7e',1,'/content/Document/Network Link_12_December_Web_Final.pdf','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Network Link_12_December_Web_Final.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-10 21:11:48',0),(61525,'2021-03-18 10:46:57','2021-05-18 06:55:26','fabad9a0-9970-4edf-9bf1-deeaa0d7c0f6',1,'/content/document/media releases/151003_pcyc launches healthy bodies, healthy minds program during mental health week.pdf','','207.46.13.74','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/document/media releases/151003_pcyc launches healthy bodies, healthy minds program during mental health week.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-18 06:55:26',0),(61536,'2021-03-18 13:35:05','2021-04-14 13:14:21','c059d982-741f-4c03-a8de-958d7d96a790',1,'/page/news-and-events/events/upcoming/immunisation-catch-up-events-for-practice-nurses---north-lakes-may/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/immunisation-catch-up-events-for-practice-nurses---north-lakes-may','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-14 13:14:21',0),(61553,'2021-03-18 18:47:48','2021-05-07 14:38:30','5b913311-dad7-47c3-bcf8-cc04b0d95582',1,'/content/Document/Pathways/4. Checklist for Reviewing Asthma Action Plan_link_TC_141110.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/4.%20Checklist%20for%20Reviewing%20Asthma%20Action%20Plan_link_TC_141110.pdf','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/Pathways/4. Checklist for Reviewing Asthma Action Plan_link_TC_141110.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-07 14:38:30',0),(61555,'2021-03-18 20:14:02','2021-04-26 23:04:40','b1fedd85-8610-4033-9d8b-a2c882fac1b6',1,'/yearinreview/a-strategic-alliance-with-our-local-hospital-services/www.brisbanenorthphn.org.au','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/a-strategic-alliance-with-our-local-hospital-services/www.brisbanenorthphn.org.au','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-04-26 23:04:40',0),(61564,'2021-03-18 21:51:46','2021-04-22 19:06:58','1b76aa6e-1c03-412c-866c-408bd075690d',1,'/content/Document/Templates/6.2/MNHHS Palliative Ref BP v6_2.rtf','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Templates/6.2/MNHHS Palliative Ref BP v6_2.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-04-22 19:06:58',0),(61567,'2021-03-18 22:22:08','2021-05-15 10:05:56','f851114b-cab7-46f2-bb9b-595308f5511e',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---auchenflower','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---auchenflower','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-15 10:05:56',0),(61582,'2021-03-19 05:11:33','2021-04-23 03:56:28','9b23674a-fc9a-4c69-b569-e139c867d1aa',1,'/events/urology-in-general-practice-2020','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/urology-in-general-practice-2020','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-23 03:56:28',0),(61590,'2021-03-19 06:03:29','2021-04-18 18:38:20','01b8a25d-513f-4784-8bdb-181972f4e748',1,'/page/news-and-events/events/upcoming/wound-workshop--novice-advanced-assessment-and-advanced-debridement/','','13.66.139.65','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/wound-workshop--novice-advanced-assessment-and-advanced-debridement','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-18 18:38:20',0),(61598,'2021-03-19 08:58:54','2021-05-13 14:58:21','d18c4370-c68f-4c35-a2e2-db65b288b169',1,'/page/news-and-events/latest-news/achieving-better-aged-care-for-aboriginal-and-torres-strait-islander-peoples','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/achieving-better-aged-care-for-aboriginal-and-torres-strait-islander-peoples','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-13 14:58:21',0),(61605,'2021-03-19 10:28:01','2021-05-18 06:45:56','619bfe70-104f-4db3-b133-b8d54d2d5914',1,'/page/news-and-events/latest-news/rap-formalises-commitment-to-reconciliation','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/rap-formalises-commitment-to-reconciliation','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-18 06:45:56',0),(61608,'2021-03-19 11:07:28','2021-05-14 13:02:28','0f3ec362-b19c-4361-ad00-5c05328e2718',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---morayfield-wamuran-landsborough','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---morayfield-wamuran-landsborough','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-14 13:02:28',0),(61628,'2021-03-19 16:55:17','2021-05-18 03:01:21','f91f1e08-5f76-467b-9697-e50cec98e6f2',1,'/events/demystifying-osteoporosis','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/demystifying-osteoporosis','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,18,'2021-05-18 03:01:21',0),(61639,'2021-03-19 19:31:57','2021-05-04 04:05:07','73439e6b-93d2-4685-8761-eae81e16c4aa',1,'/page/about/our-planning','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/our-planning','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-04 04:05:07',0),(61643,'2021-03-19 21:30:56','2021-05-09 01:30:03','b2aaa52d-4abe-442c-b691-1b2ee6dc5e1c',1,'/jobs/psychologist-kallangur','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/psychologist-kallangur','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,26,'2021-05-09 01:30:03',0),(61665,'2021-03-20 04:34:02','2021-04-28 23:31:47','275260f1-3fae-425c-a928-54379bd6ec6f',1,'/jobs/general-practitioner-part-time-full-time-chermside','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/general-practitioner-part-time-full-time-chermside','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-04-28 23:31:47',0),(61716,'2021-03-20 15:58:10','2021-05-17 19:05:40','8f26f0f3-1b41-4d59-b3c6-556eb081bc3b',1,'/content/Document/Pathways/Opioid_Risk_Tool.pdf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/Opioid_Risk_Tool.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 19:05:40',0),(61724,'2021-03-20 18:09:19','2021-05-18 11:42:38','6adda19e-3b0d-4384-885a-7506e90af379',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/brisbane-mind-information-for-referrers/eligibility-criteria','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services/brisbane-mind-information-for-referrers/eligibility-criteria','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-18 11:42:38',0),(61740,'2021-03-20 23:48:09','2021-05-05 09:06:12','48af9449-7937-40db-8bfb-0a5c75063065',1,'/yearinreview/2018-19/wp-content/uploads/2019/11/low-intensity.jpg','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2018-19/wp-content/uploads/2019/11/low-intensity.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-05 09:06:12',0),(61749,'2021-03-21 01:34:49','2021-05-18 04:53:22','641eea25-ea5b-4ede-9d66-6b476a57fddb',1,'/content/Document/PLN_Social media toolkit_Metro North Health Forum 2018_180606.pdf','','157.55.39.35','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/PLN_Social media toolkit_Metro North Health Forum 2018_180606.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-18 04:53:22',0),(61752,'2021-03-21 02:36:15','2021-05-18 12:28:36','b104c74b-a12c-4fa8-ac72-91fba9f29b8c',1,'/events/pallipharm-workshop-3','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/pallipharm-workshop-3','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-18 12:28:36',0),(61756,'2021-03-21 03:12:36','2021-05-13 03:40:13','ae2d8d6a-1359-419c-a540-34a5ee347894',1,'/page/news-and-events/latest-news/lgbtiq-sistergirl-and-brotherboy-suicide-prevention','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/lgbtiq-sistergirl-and-brotherboy-suicide-prevention','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-13 03:40:13',0),(61772,'2021-03-21 07:06:32','2021-04-30 07:40:32','d4026564-18c0-4eb3-82ae-ffbed2b4f98d',1,'/events/nutrition-support-program','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/nutrition-support-program','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-30 07:40:32',0),(61786,'2021-03-21 12:57:05','2021-05-07 09:32:45','1fe27fb5-970e-47de-a52e-66ebbd645416',1,'/content/Document/Brisbane MIND Group Listing 2016-17(3).pdf','','93.158.161.26','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','Template not found: content/Document/Brisbane MIND Group Listing 2016-17(3).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-07 09:32:45',0),(61801,'2021-03-21 15:19:32','2021-05-13 10:58:17','77df27f0-4471-4cc0-b5d4-1c0f2efc819b',1,'/content/Document/Primary care liaison/MNHHS COHD Ref v6_2 MD.rtf','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Primary care liaison/MNHHS COHD Ref v6_2 MD.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-13 10:58:17',0),(61832,'2021-03-22 00:08:24','2021-05-06 18:35:48','59c279c7-1bd2-4a87-af8e-6c513e4ae9c4',1,'/events/general-practice-covid-19-update','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/general-practice-covid-19-update','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-06 18:35:48',0),(61943,'2021-03-22 11:09:23','2021-05-13 11:04:34','8c1e7d36-24f6-4c4c-a0f4-df12336bef17',1,'/content/Document/Templates/4.3/MNHHS Maternity Referral ZM v4.3.rtf','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.3/MNHHS Maternity Referral ZM v4.3.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 11:04:34',0),(61949,'2021-03-22 12:03:39','2021-04-10 20:27:53','acfbb81d-6e88-413e-b5cf-371dde0ce79b',1,'/content/Document/Templates/4.5/MNHHS RBWH Referral BP v4.5 160101.rtf','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.5/MNHHS RBWH Referral BP v4.5 160101.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-10 20:27:53',0),(61962,'2021-03-22 15:13:26','2021-05-01 02:55:48','c4b1c916-91c2-43e2-9fb6-e07de381214e',1,'/content/Document/Pathways/LINK D_CBRT Referral form.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/LINK%20D_CBRT%20Referral%20form.pdf','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/Pathways/LINK D_CBRT Referral form.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-01 02:55:48',0),(61975,'2021-03-22 18:15:02','2021-05-12 07:29:26','0d1bc353-01c3-43f8-a859-96a1e307ed81',1,'/page/about/careers/manager-healthy-ageing/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers/manager-healthy-ageing','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 07:29:26',0),(61998,'2021-03-22 23:32:42','2021-05-15 17:06:03','84a1edc8-f54e-4bd6-91c1-3106da9d4119',1,'/content/Document/Primary care liaison/eHealth-PIP-toolkit-BP-reduced-file.pdf','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Primary care liaison/eHealth-PIP-toolkit-BP-reduced-file.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-15 17:06:03',0),(62002,'2021-03-23 00:36:19','2021-04-12 08:07:49','23ccbf37-a5d6-49e9-8663-debbffa1a101',1,'/page/news-and-events/events/archive/emotionally-focussed-family-therapy-efft-healing-relationships-promoting-resilience/','','40.77.167.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/emotionally-focussed-family-therapy-efft-healing-relationships-promoting-resilience','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-12 08:07:49',0),(62030,'2021-03-23 06:14:01','2021-04-10 21:18:28','df97460d-62cf-4b9b-b5a7-5a721f252a83',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-vr-required---moreton-bay-medical-centre/','','13.66.139.37','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-vr-required---moreton-bay-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-10 21:18:28',0),(62032,'2021-03-23 06:39:38','2021-05-01 01:31:47','6e7e2cfd-56ea-43a4-b629-2ad2cfbefddf',1,'/content/Document/LO referral criteria - 09.12.15 LN.pdf','http://www.brisbanenorthphn.org.au/content/Document/LO%20referral%20criteria%20-%2009.12.15%20LN.pdf','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/LO referral criteria - 09.12.15 LN.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-01 01:31:47',0),(62042,'2021-03-23 09:53:17','2021-04-10 19:15:16','e7dc60d3-a540-4842-be66-0825a8666bb4',1,'/xmlrp.php','www.google.com','167.99.235.103','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: xmlrp.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-04-10 19:15:16',0),(62049,'2021-03-23 15:16:44','2021-04-27 20:27:27','8c7a996d-158b-4436-9e77-661ac72218cc',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---morayfield','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---morayfield','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-04-27 20:27:27',0),(62058,'2021-03-23 17:40:12','2021-05-18 09:07:07','9e481858-a14a-45e0-9e68-57d476035e35',1,'/xxxss','','103.37.3.58','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:48.0) Gecko/20100101 Firefox/48.0','Template not found: xxxss','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-18 09:07:07',0),(62060,'2021-03-23 18:22:03','2021-05-16 06:37:40','189cb2f9-40a5-4fc2-a7a6-de7c00f32b6f',1,'/page/news-and-events/events/upcoming/health-consumers-queensland-annual-forum/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/health-consumers-queensland-annual-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-16 06:37:40',0),(62063,'2021-03-23 19:24:28','2021-05-04 18:24:35','f150b124-e114-441a-962f-3d7c2243c1b3',1,'/content/Document/Network Link_1_January_2017_WEB(1).pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%20Link_1_January_2017_WEB(1).pdf','35.186.188.225','Go-http-client/1.1','Template not found: content/Document/Network Link_1_January_2017_WEB(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,14,'2021-05-04 18:24:35',0),(62064,'2021-03-23 19:42:19','2021-05-18 20:15:57','7060f910-4684-4467-97fb-c5a76959f4db',1,'/events/introduction-to-post-abortion-counselling-applied-practice-1','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/introduction-to-post-abortion-counselling-applied-practice-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,30,'2021-05-18 20:15:57',0),(62065,'2021-03-23 19:47:57','2021-05-16 10:16:43','5fc4decf-190e-4757-a4de-2409f00f9430',1,'/events/cpcre-palliative-care-master-class-hepato-care','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/cpcre-palliative-care-master-class-hepato-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,32,'2021-05-16 10:16:43',0),(62075,'2021-03-23 22:35:39','2021-04-23 00:39:18','2e716aed-cb3b-4cf2-9c29-480d6aaddd99',1,'/events/heart-failure-masterclass','','62.210.188.216','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)','Template not found: events/heart-failure-masterclass','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,25,'2021-04-23 00:39:18',0),(62080,'2021-03-23 23:18:11','2021-05-18 02:50:34','5e4189ec-41cb-4ed0-badc-b363da00e68a',1,'/events/wounds-australia-qld-education-evening-a-surgical-approach','','141.168.110.110','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','Template not found: events/wounds-australia-qld-education-evening-a-surgical-approach','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,35,'2021-05-18 02:50:34',0),(62110,'2021-03-24 07:30:17','2021-05-19 00:56:45','dc1ddcf3-b886-4f5f-b7a3-7b33bbb50217',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---banyo/','','17.121.115.35','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---banyo','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-19 00:56:45',0),(62132,'2021-03-24 13:32:16','2021-04-19 06:39:03','bbca313d-ca48-43a4-8784-46d542da4782',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---family-practice---kippa-ring-shopping-centre/','','40.77.167.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---family-practice---kippa-ring-shopping-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-04-19 06:39:03',0),(62137,'2021-03-24 14:49:51','2021-05-17 10:39:39','350a66de-c326-45fe-9fde-4a93082e3d43',1,'/events/fnd-awareness-day','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/fnd-awareness-day','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,82,'2021-05-17 10:39:39',0),(62145,'2021-03-24 16:57:43','2021-05-13 10:22:58','9670d1a7-3312-4acd-9489-fb5697366d12',1,'/page/news-and-events/events/upcoming/trauma-informed-care---introductory-and-advanced-training/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/trauma-informed-care---introductory-and-advanced-training','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-13 10:22:58',0),(62148,'2021-03-24 17:31:09','2021-04-30 18:57:13','10e0f2b7-8347-4215-b9d2-0bd7a8080f0a',1,'/page/news-and-events/events/upcoming/dementia-essentials---provide-support-to-people-living-with-dementia/','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/dementia-essentials---provide-support-to-people-living-with-dementia','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-30 18:57:13',0),(62163,'2021-03-24 20:28:03','2021-05-03 08:46:29','6162d0e2-93ca-433d-b8cf-998b3975f1a4',1,'/content/Document/Pathways/Wound care_wound biopsy_link.pdf','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.130 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Pathways/Wound care_wound biopsy_link.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,15,'2021-05-03 08:46:29',0),(62172,'2021-03-24 20:48:16','2021-04-11 21:33:51','efe88b7b-50d2-4d33-a65d-03ce939d5481',1,'/.hg/hgrc','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: .hg/hgrc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-11 21:33:51',0),(62181,'2021-03-24 21:57:07','2021-04-28 17:13:15','97800d83-e1bd-4710-9ee0-f6848989ab4c',1,'/events/sexual-and-reproductive-health-and-covid-19','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/sexual-and-reproductive-health-and-covid-19','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-28 17:13:15',0),(62201,'2021-03-25 03:22:02','2021-04-11 21:23:40','65433d7c-d610-404f-862e-2bf4da2a5cf2',1,'/content/Document/Templates/4.5/Specialists List_Paediatrics_4.5 (DRAFT).pdf','','207.46.13.5','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.5/Specialists List_Paediatrics_4.5 (DRAFT).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-11 21:23:40',0),(62219,'2021-03-25 08:32:34','2021-05-05 17:33:14','3f9ecf0d-09f7-4fda-b163-40c499f1d8d4',1,'/page/news-and-events/events/archive/flattening-the-curve-of-mental-ill-health’-webinar-series-2-16-june','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/flattening-the-curve-of-mental-ill-health’-webinar-series-2-16-june','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-05 17:33:14',0),(62224,'2021-03-25 09:13:45','2021-05-16 10:38:33','c1de563b-6535-417d-a87d-5952888717a0',1,'/page/news-and-events/latest-news/primary-care-is-key-to-sexual-health','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/primary-care-is-key-to-sexual-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-16 10:38:33',0),(62241,'2021-03-25 14:44:44','2021-05-11 14:20:24','f6f929a2-d4ea-4cc8-a73a-a285a70e030b',1,'/page/news-and-events/events/archive/covid-19-gp-education-online-advice-and-support-for-general-practice','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/covid-19-gp-education-online-advice-and-support-for-general-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-11 14:20:24',0),(62250,'2021-03-25 15:58:51','2021-05-09 19:42:55','3fd75704-558c-48ed-8434-bce816155ce3',1,'/events/diagnosing-dementia-in-general-practice-a-stepwise-approach','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/diagnosing-dementia-in-general-practice-a-stepwise-approach','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-09 19:42:55',0),(62256,'2021-03-25 18:04:20','2021-05-14 13:55:33','54890f5f-fad2-49c6-aa1e-0692a72e15b9',1,'/page/news-and-events/events/upcoming/acd-practical-dermoscopy-certificate-online','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/acd-practical-dermoscopy-certificate-online','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-14 13:55:33',0),(62281,'2021-03-25 23:38:20','2021-05-16 10:08:08','ef27a0cd-4dbb-48d9-8487-254deb9affab',1,'/events/psychological-distress-in-primary-health-care-patients-webinar','','62.210.188.216','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)','Template not found: events/psychological-distress-in-primary-health-care-patients-webinar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-16 10:08:08',0),(62284,'2021-03-25 23:54:32','2021-05-12 11:07:14','660cbab2-f72e-49b2-9830-dfe3d8263e99',1,'/page/news-and-events/events/upcoming/trauma-informed-care-and-practice-in-domestic-and-family-violence-services-level-2/','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/trauma-informed-care-and-practice-in-domestic-and-family-violence-services-level-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-12 11:07:14',0),(62306,'2021-03-26 03:09:15','2021-04-20 05:12:26','8384f0f0-177f-404d-b566-bd80f9f98b1b',1,'/page/news-and-events/2017-news/after-hours-campaign-provides-emergency-alternatives','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/2017-news/after-hours-campaign-provides-emergency-alternatives','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-20 05:12:26',0),(62323,'2021-03-26 07:30:07','2021-05-03 11:05:40','a35da944-9103-43c7-a406-3c515e953ff9',1,'/jobs/ascot-weekend-gp-wanted','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/ascot-weekend-gp-wanted','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-03 11:05:40',0),(62330,'2021-03-26 08:06:37','2021-05-12 13:41:21','45d538de-0ddc-434a-94e6-b4ad924751d3',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---caboolture','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---caboolture','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-12 13:41:21',0),(62340,'2021-03-26 09:32:40','2021-05-08 07:00:11','9d44d2d0-ee6f-4012-921e-6fc7f553eec4',1,'/events/invitation-to-take-part-in-the-3rd-australian-consensus-conference-on-the-prevention-of-osteoporotic-fractures-in-residential-aged-care-facilities-racfs','','66.249.75.184','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: events/invitation-to-take-part-in-the-3rd-australian-consensus-conference-on-the-prevention-of-osteoporotic-fractures-in-residential-aged-care-facilities-racfs','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-08 07:00:11',0),(62344,'2021-03-26 10:23:54','2021-04-29 12:13:50','a690ca80-fb9f-4284-b1a6-551388493d92',1,'/content/Document/vaccine management plan template 170217.docx','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/vaccine management plan template 170217.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,19,'2021-04-29 12:13:50',0),(62356,'2021-03-26 11:27:44','2021-04-25 20:28:29','55611d45-843f-4cdb-b8d5-1f860a430ced',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---ascot','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---ascot','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-25 20:28:29',0),(62359,'2021-03-26 12:12:43','2021-05-10 09:33:10','96c2f88b-f380-4c40-b885-c235281fb477',1,'/page/news-and-events/latest-news/eoi-now-open-for-the-brisbane-north-phn-clinical-council','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/eoi-now-open-for-the-brisbane-north-phn-clinical-council','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-10 09:33:10',0),(62364,'2021-03-26 12:48:07','2021-05-17 16:57:21','bb8bfebd-4f70-40ea-a281-39615c2eb203',1,'/page/health-professionals/Local Positions Vacant/general-medical-practitioner---deception-bay/','','40.77.167.45','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-medical-practitioner---deception-bay','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-17 16:57:21',0),(62421,'2021-03-26 21:16:21','2021-05-18 19:29:15','b6a7ac7d-a6de-47bf-9e4c-592be9705036',1,'/jobs/medical-receptionist-2','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/medical-receptionist-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,18,'2021-05-18 19:29:15',0),(62441,'2021-03-27 00:29:10','2021-05-13 13:13:30','0d8ac233-bf85-4c39-a9dc-eeb276b0ebaa',1,'/content/Document/Events/2019/Metro North Health Forum/DRA_MN_Health_Forum_Program_2019.pdf','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Events/2019/Metro North Health Forum/DRA_MN_Health_Forum_Program_2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-13 13:13:30',0),(62444,'2021-03-27 01:09:03','2021-05-18 03:44:22','cfeb5bdc-8ec6-473a-8093-4022f889080f',1,'/events/childrens-integrated-care-collaborative-showcase-1-integrated-care-in-the-first-2000-days','','157.55.39.23','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/childrens-integrated-care-collaborative-showcase-1-integrated-care-in-the-first-2000-days','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,33,'2021-05-18 03:44:22',0),(62449,'2021-03-27 01:58:29','2021-05-18 04:15:38','b08ee823-ecbf-4ab2-a643-b5665ee70e19',1,'/position-type/clinical-project-lead','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: position-type/clinical-project-lead','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-18 04:15:38',0),(62453,'2021-03-27 03:06:18','2021-05-15 17:44:54','0a1e49fb-5610-4c31-9d45-715d37d3a08d',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---kallangur','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---kallangur','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-15 17:44:54',0),(62473,'2021-03-27 06:48:44','2021-04-11 15:00:01','7f18edb4-df6b-4491-880e-8adb28dc4cb2',1,'/content/Document/MNHHS Maternity Referral MD v4_11(2).rtf','','13.66.139.37','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/MNHHS Maternity Referral MD v4_11(2).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-11 15:00:01',0),(62479,'2021-03-27 07:32:17','2021-05-08 09:36:20','0abd5304-676c-4057-9be3-1df303dea993',1,'/content/Document/panic-disorder.pdf','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/panic-disorder.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-08 09:36:20',0),(62485,'2021-03-27 08:17:18','2021-04-15 01:01:07','46bcdffb-41ee-4d4a-9b6e-b2812d84dd3b',1,'/page/news-and-events/2017-news/brisbane-river-contamination-event','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/2017-news/brisbane-river-contamination-event','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-15 01:01:07',0),(62487,'2021-03-27 09:13:30','2021-05-18 07:13:51','76c342c4-3855-4cd3-b3b9-973973b768fd',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---caboolture','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---caboolture','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-18 07:13:51',0),(62496,'2021-03-27 10:16:14','2021-04-19 17:08:31','532abacf-8ed1-472c-8a64-7b6867d82428',1,'/content/Document/Pathways/LINK Q_Antidepressant discontinuation syndrome.pdf','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/LINK Q_Antidepressant discontinuation syndrome.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-04-19 17:08:31',0),(62506,'2021-03-27 12:14:18','2021-05-18 06:25:11','16d6fe06-c11f-451a-a2a2-b1fd872b11c6',1,'/content/document/brisbane mind provider list september 2017(4).pdf','','40.77.167.15','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/document/brisbane mind provider list september 2017(4).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 06:25:11',0),(62513,'2021-03-27 13:26:10','2021-04-12 04:54:17','aff2f5e8-78b8-457a-9317-c82037e391a6',1,'/page/news-and-events/events/upcoming/2019-national-elder-abuse-conference/','','66.249.65.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.122 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/2019-national-elder-abuse-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-12 04:54:17',0),(62518,'2021-03-27 14:46:07','2021-05-10 19:25:09','852f15b3-52e4-4368-b18a-9245c646c820',1,'/page/news-and-events/events/upcoming/covid-19-pregnancy-and-the-newborn','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/covid-19-pregnancy-and-the-newborn','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-10 19:25:09',0),(62522,'2021-03-27 15:01:31','2021-05-12 20:39:02','9bf72258-ac0d-41f3-bfd1-1f97535ca5f8',1,'/content/Document/Pathways/PSEQ.pdf','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/PSEQ.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-12 20:39:02',0),(62531,'2021-03-27 16:52:45','2021-05-04 09:49:27','af2c5d6a-56ce-42c0-9852-1a55995bfd76',1,'/content/Image/Don Matheson 2017(1).jpg','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Don Matheson 2017(1).jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-04 09:49:27',0),(62544,'2021-03-27 19:15:08','2021-04-28 23:20:10','9c12ba62-554c-4a8d-8d34-ab2ef5dc0c1a',1,'/news/dist/swiper.js','','40.77.167.108','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','Template not found: news/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,18,'2021-04-28 23:20:10',0),(62562,'2021-03-28 00:05:15','2021-05-06 16:01:04','41bfcf1f-0723-4a5d-8511-ba05240cf18f',1,'/content/Document/Pathways/Contraindications for Spirometry_link.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/Contraindications%20for%20Spirometry_link.pdf','35.233.170.71','Go-http-client/1.1','Template not found: content/Document/Pathways/Contraindications for Spirometry_link.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-06 16:01:04',0),(62566,'2021-03-28 00:32:37','2021-05-16 07:32:06','a3af090f-e0e6-4e1c-9145-896fee708350',1,'/page/news-and-events/latest-news/metro-north-health-forum-registrations-open','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/metro-north-health-forum-registrations-open','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 07:32:06',0),(62575,'2021-03-28 03:20:34','2021-05-19 01:43:32','b9b40094-7a43-4f7f-a79f-89194ddf870a',1,'/jobs/psychologist-mental-health-social-worker','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/psychologist-mental-health-social-worker','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-19 01:43:32',0),(62580,'2021-03-28 03:54:46','2021-05-05 15:41:56','7dbcd57e-4ead-47f9-812b-3265caf0db10',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---woodford','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---woodford','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-05 15:41:56',0),(62583,'2021-03-28 04:15:10','2021-04-24 18:13:22','89b0d940-dc98-4897-a2d5-b369a15dba7f',1,'/page/news-and-events/events/archive/doctors-health-what-gps-need-to-know','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/doctors-health-what-gps-need-to-know','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-24 18:13:22',0),(62586,'2021-03-28 04:52:19','2021-04-10 22:13:09','c032223a-4167-4528-85fd-e5f7d195f71a',1,'/page/news-and-events/events/upcoming/ranzco-queensland-branch---gp-upskilling-workshop/','','13.66.139.38','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/ranzco-queensland-branch---gp-upskilling-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-10 22:13:09',0),(62587,'2021-03-28 04:54:23','2021-05-16 08:48:13','6688c633-3378-48ed-9141-2f7a27e690be',1,'/page/news-and-events/latest-news/medical-outreach-trial-delivers-better-healthcare-for-older-people','','173.252.107.1','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: page/news-and-events/latest-news/medical-outreach-trial-delivers-better-healthcare-for-older-people','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-16 08:48:13',0),(62591,'2021-03-28 05:06:20','2021-04-11 07:23:13','d2d9ed83-bcb9-4620-9cf2-19a329595543',1,'/content/Media/Genie v6.2/MNHHS TPCH Referral v6.2_Genie.4W7','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Media/Genie v6.2/MNHHS TPCH Referral v6.2_Genie.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-11 07:23:13',0),(62628,'2021-03-28 05:18:59','2021-05-06 21:54:56','d1045776-f724-469a-ab25-dac1a2fba551',1,'/content/Document/Templates/4.12/MD v4.12/MNHHS RBWH Referral MD v4_12.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.12/MD%20v4.12/MNHHS%20RBWH%20Referral%20MD%20v4_12.rtf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Templates/4.12/MD v4.12/MNHHS RBWH Referral MD v4_12.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-06 21:54:56',0),(62631,'2021-03-28 06:03:54','2021-05-12 22:33:18','cf35b180-3e86-4c83-915d-b4943beee77d',1,'/page/news-and-events/events/upcoming/mtop-in-general-practice-seminar/','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/mtop-in-general-practice-seminar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-12 22:33:18',0),(62641,'2021-03-28 07:12:27','2021-04-28 08:00:26','e8f3f087-1549-42f3-9136-555d2d341536',1,'/page/news-and-events/events/upcoming/dementia-medication-in-primary-care','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/dementia-medication-in-primary-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-04-28 08:00:26',0),(62644,'2021-03-28 07:32:33','2021-04-12 01:28:27','a9cebfc8-3a30-44e2-8f79-fcc25a41cb98',1,'/page/health-professionals/Local Positions Vacant/practice-nurse-manager---albany-creek/','','40.77.167.66','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse-manager---albany-creek','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-12 01:28:27',0),(62654,'2021-03-28 10:55:30','2021-04-25 11:33:22','f19a6b35-236f-40f1-9d69-63af6ddee8bf',1,'/jobs/medical-assistant','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/medical-assistant','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-04-25 11:33:22',0),(62656,'2021-03-28 11:12:53','2021-04-11 20:16:30','8b8b36d0-743b-4dde-a9ef-34cfb4ad6603',1,'/page/news-and-events/events/upcoming/breaking-point-ice-and-methamphetamine-nursing---2-day-conference/','','40.77.167.66','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/breaking-point-ice-and-methamphetamine-nursing---2-day-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-11 20:16:30',0),(62666,'2021-03-28 12:43:25','2021-05-14 19:04:07','d28d7030-3d45-4f45-ba11-47105d9f6e02',1,'/jobs/brisbane-inner-city-best-gp-job-in-brisbane-no-evenings-or-weekend-work-onsite-parking','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/brisbane-inner-city-best-gp-job-in-brisbane-no-evenings-or-weekend-work-onsite-parking','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,26,'2021-05-14 19:04:07',0),(62679,'2021-03-28 14:39:44','2021-05-08 02:38:34','caf925dd-eb8a-4347-8911-b0bb06736798',1,'/content/Document/MNHF presentations 2017/Jeff Rowland - GRACE 170531.pdf','','66.249.69.63','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/MNHF presentations 2017/Jeff Rowland - GRACE 170531.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-08 02:38:34',0),(62706,'2021-03-28 20:11:52','2021-05-08 17:57:47','0b26b7bc-e933-4e7c-807d-9b0924b8def4',1,'/content/Document/Brisbane MIND Provider List July 2018(1).pdf','','66.249.69.61','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Brisbane MIND Provider List July 2018(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-08 17:57:47',0),(62708,'2021-03-28 20:19:32','2021-04-27 09:01:29','adddd51c-fbb3-4b22-9c12-89a8d6c6de60',1,'/page/news-and-events/latest-news/handy-hotline-for-mental-health-service-navigation','http://brisbanenorthphn.org.au/page/news-and-events/latest-news/handy-hotline-for-mental-health-service-navigation','35.210.149.90','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/latest-news/handy-hotline-for-mental-health-service-navigation','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-27 09:01:29',0),(62721,'2021-03-28 22:37:05','2021-04-21 18:35:36','2649234e-e6fb-444e-aefa-5d12b569e595',1,'/page/news-and-events/events/upcoming/ultrasound-in-emergency-medicine','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/ultrasound-in-emergency-medicine','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-21 18:35:36',0),(62723,'2021-03-28 22:41:03','2021-05-11 11:08:06','2d1331d9-ad46-41cc-a4af-393df7d28471',1,'/jobs/medical-receptionist-casual','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/medical-receptionist-casual','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-11 11:08:06',0),(62724,'2021-03-28 22:51:48','2021-05-18 00:39:11','311ad677-3949-4429-ba4c-b5a14f17189a',1,'/page/health-professionals/immunisation/resources/useful-immunisation-links/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/immunisation/resources/useful-immunisation-links','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-18 00:39:11',0),(62730,'2021-03-29 00:16:28','2021-04-12 01:00:33','71724115-b782-4682-9388-14db5cce35dc',1,'/admin/login','','203.91.246.140','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36','Template not found: admin/login','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-04-12 01:00:33',0),(62739,'2021-03-29 02:00:51','2021-04-11 13:19:03','761f7beb-dc3d-4b45-9957-d7aba72b19e1',1,'/page/health-professionals/digital-health/my-health-record/training-and-promotional-resources','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/digital-health/my-health-record/training-and-promotional-resources','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-11 13:19:03',0),(62751,'2021-03-29 04:35:50','2021-05-05 20:35:28','24e9bf90-b916-446e-ae51-81652a52e035',1,'/content/Media/Genie 5.2/MNHHS RBWH Referral v5.2_Genie.4W7.4W7','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Media/Genie 5.2/MNHHS RBWH Referral v5.2_Genie.4W7.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-05 20:35:28',0),(62756,'2021-03-29 04:36:40','2021-05-13 10:50:48','af3fb3fd-747a-45df-8e49-7f37425279ff',1,'/content/Media/Genie V5.1/MNHHS Paediatric v5.1 Genie.4W7.4W7','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Media/Genie V5.1/MNHHS Paediatric v5.1 Genie.4W7.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-13 10:50:48',0),(62767,'2021-03-29 04:58:06','2021-05-09 02:48:22','844626a3-e494-4124-b913-81066113dba2',1,'/page/news-and-events/events/upcoming/electronic-transfer-of-prescriptions-using-bp-premier-including-my-health-record','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/electronic-transfer-of-prescriptions-using-bp-premier-including-my-health-record','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-09 02:48:22',0),(62870,'2021-03-29 08:12:37','2021-04-15 08:37:28','444abb7d-9cb6-4eb1-af49-5c7f3b1d67f8',1,'/asset-manifest.json','https://brisbanenorthphn.org.au/practice-support/find-a-service','35.203.245.120','Mozilla/5.0 (Linux; Android 6.0.1; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3963.0 Mobile Safari/537.36 Chrome-Lighthouse','Template not found: asset-manifest.json','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-04-15 08:37:28',0),(62874,'2021-03-29 09:11:16','2021-05-15 18:11:38','463d0b18-b659-4c14-8f59-8a9bf60b9822',1,'/page/news-and-events/events/upcoming/effective-brief-contact-or-single-session-bereavement','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/effective-brief-contact-or-single-session-bereavement','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-15 18:11:38',0),(62899,'2021-03-29 11:39:28','2021-05-07 12:34:13','40965e44-43bc-4a76-b0de-4b3c38035cae',1,'/page/news-and-events/latest-news/diversity-and-wellness-at-the-brisbane-north-annual-aged-care-forum','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/diversity-and-wellness-at-the-brisbane-north-annual-aged-care-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-07 12:34:13',0),(62900,'2021-03-29 11:43:07','2021-05-18 18:20:20','b3c67f68-83d2-49c2-aedb-941622c425ba',1,'/page/news-and-events/latest-news/local-doctor-receives-order-of-australia-medal','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/local-doctor-receives-order-of-australia-medal','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-18 18:20:20',0),(62901,'2021-03-29 11:53:54','2021-05-18 01:32:05','65f5ccb3-51b4-4402-b6de-fcd34ca91db1',1,'/page/news-and-events/events/upcoming/course-in-wound-closure-may-2020','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/course-in-wound-closure-may-2020','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-18 01:32:05',0),(62915,'2021-03-29 14:05:25','2021-05-08 16:57:40','1fc4fb28-4072-4cd7-9fbf-7dc29a12f719',1,'/page/news-and-events/events/upcoming/working-with-young-people-with-asd-and-comorbid-mental-health-issues','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/working-with-young-people-with-asd-and-comorbid-mental-health-issues','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-08 16:57:40',0),(62916,'2021-03-29 14:15:51','2021-05-11 12:05:50','e00550f5-190f-4118-9467-069a2d862ee7',1,'/page/news-and-events/events/upcoming/Advanced-Life-Support-2','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/Advanced-Life-Support-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-11 12:05:50',0),(62922,'2021-03-29 15:23:00','2021-04-12 08:21:38','0989b72c-16f4-4b5b-8bf7-86728eed3445',1,'/page/news-and-events/events/upcoming/carbohydrate-counting-for-diabetes/','','207.46.13.106','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/carbohydrate-counting-for-diabetes','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-12 08:21:38',0),(62928,'2021-03-29 16:50:56','2021-05-07 04:46:42','dfe5c591-0be3-45be-92c1-c185ff313c21',1,'/content/Document/Primary care liaison/MNHHS Redcliffe Hosp Ref v6_2 MD(1).rtf','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Primary care liaison/MNHHS Redcliffe Hosp Ref v6_2 MD(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-07 04:46:42',0),(62931,'2021-03-29 17:09:41','2021-04-12 10:22:41','d8db8ae1-a3d9-452b-9379-c41084a87f5e',1,'/page/news-and-events/events/upcoming/2-day-iris-indigenous-risk-impact-screen-workshop/','','207.46.13.106','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/2-day-iris-indigenous-risk-impact-screen-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-12 10:22:41',0),(62933,'2021-03-29 17:26:59','2021-05-15 18:31:30','ea7d61f8-b829-4804-b60f-a59524f6eea3',1,'/jobs/weekend-medical-receptionist','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/weekend-medical-receptionist','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-15 18:31:30',0),(62939,'2021-03-29 18:39:38','2021-05-17 11:40:15','fb2b6ac3-4fe3-4e89-90fc-845de3c756d4',1,'/jobs/nurse','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/nurse','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-17 11:40:15',0),(62947,'2021-03-29 19:29:09','2021-05-15 08:10:40','f907048a-89aa-499e-8b0b-a2a61b854ab0',1,'/page/news-and-events/latest-news/gp-input-sought-for-national-suicide-prevention-trial','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/gp-input-sought-for-national-suicide-prevention-trial','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 08:10:40',0),(62977,'2021-03-29 23:40:39','2021-05-18 21:17:16','7063dd3a-726b-41a0-85ac-2cca89178b76',1,'/admin/entries/news/brisbanenorthphn.org.au/covid-19','','217.19.225.103','Mozilla/5.0 (compatible; OhDear/1.1; +https://ohdear.app/checker; Run 5173959411)','Template not found: admin/entries/news/brisbanenorthphn.org.au/covid-19','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,57,'2021-05-18 21:17:16',0),(62984,'2021-03-30 00:36:14','2021-05-14 17:38:43','24867db7-e04b-4e5f-afbb-b342b7a0f39a',1,'/events/wesley-lifeforce-suicide-prevention-workshop-brisbane-north-phn-north-lakes-qld','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/wesley-lifeforce-suicide-prevention-workshop-brisbane-north-phn-north-lakes-qld','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,27,'2021-05-14 17:38:43',0),(62991,'2021-03-30 01:47:07','2021-05-18 05:08:26','3b1712ef-800d-467d-a82c-bce40151cf9d',1,'/page/health-professionals/Local Positions Vacant/practice-nurse','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,16,'2021-05-18 05:08:26',0),(63015,'2021-03-30 07:06:09','2021-05-16 18:24:17','723d9323-040c-4c68-a473-1fd2dbd5509a',1,'/content/Image/IMG_Ken Wyatt MP_Brisbane_170324-1.jpg','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/IMG_Ken Wyatt MP_Brisbane_170324-1.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 18:24:17',0),(63023,'2021-03-30 08:09:53','2021-05-18 19:31:18','063a7893-8128-474f-bd5d-8c84766e7216',1,'/tel:0402162512','https://www.google.com/','34.145.9.201','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Safari/605.1.15','Template not found: tel:0402162512','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,37,'2021-05-18 19:31:18',0),(63029,'2021-03-30 09:09:44','2021-05-19 02:37:21','56fe66dc-2c6b-4e2c-adde-cee719ae8c6c',1,'/tel:0481010075','https://www.google.com/','34.82.177.35','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko','Template not found: tel:0481010075','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,35,'2021-05-19 02:37:21',0),(63030,'2021-03-30 09:09:47','2021-05-18 10:24:47','1f526cf1-1476-4408-b61c-2968cecfdbda',1,'/tel:0734903412','https://www.google.com/','34.127.82.46','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:68.0) Gecko/20100101 Firefox/68.0','Template not found: tel:0734903412','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,36,'2021-05-18 10:24:47',0),(63031,'2021-03-30 09:09:53','2021-05-17 22:13:23','52df4533-902f-4f8b-911e-7d685efa2c94',1,'/tel:0734903446','https://www.google.com/','104.198.12.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Safari/605.1.15','Template not found: tel:0734903446','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,36,'2021-05-17 22:13:23',0),(63042,'2021-03-30 10:50:34','2021-05-17 17:50:34','dcd9a6a3-372a-46af-ae7a-2f67a1dbaa41',1,'/page/news-and-events/latest-news/caboolture-hospital-redevelopment-caters-for-regional-growth/','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/caboolture-hospital-redevelopment-caters-for-regional-growth','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-17 17:50:34',0),(63044,'2021-03-30 11:12:13','2021-05-19 02:37:28','ea6526ee-8315-457d-8405-eb0a72c75bbc',1,'/tel:0402159523','https://www.google.com/','34.82.177.35','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36','Template not found: tel:0402159523','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,40,'2021-05-19 02:37:28',0),(63045,'2021-03-30 11:12:34','2021-05-18 19:31:20','ad5fc538-4e72-4b04-b8b6-9cbcb66c9904',1,'/tel:0734903406','https://www.google.com/','34.145.9.201','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.87 Safari/537.36','Template not found: tel:0734903406','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,48,'2021-05-18 19:31:20',0),(63046,'2021-03-30 11:12:35','2021-05-18 03:18:20','68e66987-a2ca-4ac0-a8de-4fe23973ad27',1,'/tel:0736307325','https://www.google.com/','35.199.149.190','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.1 Safari/605.1.15','Template not found: tel:0736307325','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,42,'2021-05-18 03:18:20',0),(63047,'2021-03-30 11:12:40','2021-05-19 02:37:36','4b43af76-3fea-451a-ae3e-0facb891c936',1,'/tel:0736307347','https://www.google.com/','34.82.177.35','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','Template not found: tel:0736307347','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,48,'2021-05-19 02:37:36',0),(63062,'2021-03-30 12:37:12','2021-04-23 18:32:49','dad1146b-b633-4d83-b5de-5ddb4f4f8b54',1,'/page/health-professionals/medical-assisting','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/medical-assisting','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-23 18:32:49',0),(63064,'2021-03-30 12:49:41','2021-04-26 16:01:12','e5765447-307b-42ad-87b5-af43fd08d468',1,'/content/Document/Planning/DRA-Population_health_snapshot-Brisbane-North-FINAL.pdf','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Planning/DRA-Population_health_snapshot-Brisbane-North-FINAL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-26 16:01:12',0),(63086,'2021-03-30 16:05:48','2021-05-18 06:37:33','92e04c2f-9b04-4b09-b283-089983b71688',1,'/jobs/gp-receptionist-neighbourhood-medical-bardon','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/gp-receptionist-neighbourhood-medical-bardon','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-18 06:37:33',0),(63087,'2021-03-30 16:10:50','2021-04-19 21:43:03','4ea5a3b8-0ade-46bc-8403-d829a6ebe971',1,'/jobs/general-practitioner','','66.249.66.89','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: jobs/general-practitioner','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,24,'2021-04-19 21:43:03',0),(63093,'2021-03-30 17:18:16','2021-05-14 18:28:50','6194d1bb-152f-49c0-a160-b946a9d58e2c',1,'/tel:0734903410','https://www.google.com/','34.82.133.230','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36','Template not found: tel:0734903410','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,33,'2021-05-14 18:28:50',0),(63094,'2021-03-30 17:24:58','2021-05-15 17:42:47','cd85ac7b-e0da-4ce3-a7af-0a57aeb9ba1f',1,'/jobs/hamilton-medical-centre-general-practitioner','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/hamilton-medical-centre-general-practitioner','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,22,'2021-05-15 17:42:47',0),(63095,'2021-03-30 17:34:29','2021-05-14 11:18:21','88879f4f-4ad0-40dd-bb49-4657171b26ff',1,'/events/prime-time-in-t2d-are-gps-ready-for-glp-1s','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/prime-time-in-t2d-are-gps-ready-for-glp-1s','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,19,'2021-05-14 11:18:21',0),(63096,'2021-03-30 17:38:14','2021-04-23 03:23:32','ade7ef41-45b3-4baf-a602-8278b87cf1d3',1,'/content/Document/Pathways/Measure serum BNP node information.pdf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/Measure serum BNP node information.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-23 03:23:32',0),(63103,'2021-03-30 18:38:44','2021-04-18 13:57:02','0e54787f-b188-40b5-abff-f587e41e1dff',1,'/content/Document/Events/2019/INVITATION_Managing stage 3 CKD.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/INVITATION_Managing%20stage%203%20CKD.pdf','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/Events/2019/INVITATION_Managing stage 3 CKD.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-18 13:57:02',0),(63110,'2021-03-30 19:24:14','2021-05-15 20:12:53','8bbdbc5f-b7bd-4100-9150-8940aa788e37',1,'/page/news-and-events/latest-news/director-opportunities-available-at-brisbane-north-phn','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/director-opportunities-available-at-brisbane-north-phn','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-15 20:12:53',0),(63130,'2021-03-30 21:19:16','2021-05-18 20:57:26','5791fdef-e605-4e1d-b941-7e8392dd1522',1,'/jobs/casual-registered-nurse-1','','157.55.39.35','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/casual-registered-nurse-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,27,'2021-05-18 20:57:26',0),(63133,'2021-03-30 21:30:09','2021-05-06 11:09:03','3df6d8a1-3af9-4d92-9b0b-23ca51908580',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist-required---elysian-medical-centre/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist-required---elysian-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-06 11:09:03',0),(63138,'2021-03-30 22:31:24','2021-05-15 15:54:21','aeb4c63e-1179-4565-990b-ae2926c79c58',1,'/events/assessment-and-management-of-low-back-pain','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/assessment-and-management-of-low-back-pain','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-15 15:54:21',0),(63152,'2021-03-31 00:33:27','2021-05-16 11:29:38','2ce932ca-2a4d-4e03-a385-3297ad13104b',1,'/yearinreview/2017-18/wp-content/uploads/2018/11/asian-man-and-young-girl-web.jpg','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/wp-content/uploads/2018/11/asian-man-and-young-girl-web.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 11:29:38',0),(63165,'2021-03-31 04:09:36','2021-04-11 17:52:02','decff014-3dc1-4ce1-80b3-b63780017e70',1,'/page/health-professionals/Local Positions Vacant/consumer-representative-community-palliative-care-collaborative/','','13.66.139.38','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/consumer-representative-community-palliative-care-collaborative','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-11 17:52:02',0),(63168,'2021-03-31 04:33:12','2021-05-03 07:19:36','94a44fdf-69ab-4d3c-9947-13dde73d2a68',1,'/page/news-and-events/events/upcoming/dimensions-of-palliative-care---communication-challenges/','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.130 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/dimensions-of-palliative-care---communication-challenges','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-03 07:19:36',0),(63182,'2021-03-31 06:33:55','2021-05-15 19:36:39','86f191b0-4ee7-4674-af59-8238da2f6b36',1,'/tel:0736307335','https://www.google.com/','104.198.12.145','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','Template not found: tel:0736307335','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,41,'2021-05-15 19:36:39',0),(63218,'2021-03-31 14:37:44','2021-05-14 01:26:14','2047a138-c4f2-468f-a23e-ec28e36923da',1,'/content/Document/Network Link_1_February_2017_WEB.pdf','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Network Link_1_February_2017_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-14 01:26:14',0),(63220,'2021-03-31 14:45:10','2021-05-13 12:14:05','d07acedf-850d-4287-a940-4ebf74a273da',1,'/content/Document/Medicare Rebate for DXA Bone Mineral Density.pdf','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Medicare Rebate for DXA Bone Mineral Density.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-13 12:14:05',0),(63236,'2021-03-31 18:12:00','2021-05-12 23:32:34','fef2a377-93b8-459f-a2be-a5830a91cf83',1,'/page/health-professionals/team-care-coordination/staying-healthy-staying-home','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/team-care-coordination/staying-healthy-staying-home','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 23:32:34',0),(63237,'2021-03-31 18:16:14','2021-05-12 19:59:31','133a0e76-fd8a-4385-b30d-8d7f8f58b53e',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---carseldine/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---carseldine','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-12 19:59:31',0),(63245,'2021-03-31 19:12:55','2021-05-18 20:02:54','c1582eb6-0cf8-49fe-807c-b13e1cc8efc3',1,'/page/news-and-events/latest-news/covid-19-information/information-for-our-community/surgical-masks','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/covid-19-information/information-for-our-community/surgical-masks','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-18 20:02:54',0),(63246,'2021-03-31 19:19:05','2021-05-18 17:48:59','1873a233-59bd-49cc-b3d9-bbf9a925aa9c',1,'/jobs/operations-manager','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/operations-manager','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-18 17:48:59',0),(63247,'2021-03-31 19:25:27','2021-05-07 19:56:47','79c666a8-c247-4673-b8ca-92f72bb46787',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/information-for-providers/redicase-information','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services/information-for-providers/redicase-information','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-07 19:56:47',0),(63253,'2021-03-31 19:54:41','2021-05-14 10:44:48','4aa0a609-416f-4f2e-b4ac-ba15f8cc9151',1,'/jobs/experienced-registered-nurse-for-establised-general-practice','','66.249.75.180','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: jobs/experienced-registered-nurse-for-establised-general-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-14 10:44:48',0),(63274,'2021-04-01 01:21:26','2021-05-17 05:12:26','6e6ca901-8265-4579-829c-3abb6f7eb92c',1,'/events/medicinal-cannabis-keeping-an-open-mind-1','','66.249.79.150','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: events/medicinal-cannabis-keeping-an-open-mind-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,15,'2021-05-17 05:12:26',0),(63277,'2021-04-01 01:40:42','2021-05-03 00:25:16','168b9fdc-d6ed-4e13-a4e1-d660be3492e6',1,'/page/news-and-events/events/upcoming/hepatitis-b-nursing-advanced-management-and-care','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/hepatitis-b-nursing-advanced-management-and-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-03 00:25:16',0),(63279,'2021-04-01 01:53:27','2021-05-17 17:08:23','a5206e54-022c-418d-a971-77e7a9766351',1,'/tel:0481010076','https://www.google.com/','35.203.178.105','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36','Template not found: tel:0481010076','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,41,'2021-05-17 17:08:23',0),(63280,'2021-04-01 01:56:22','2021-04-11 02:14:26','59def617-6e33-40aa-98a9-2d2b00f80daf',1,'/page/news-and-events/latest-','','66.249.65.31','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/latest-','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-11 02:14:26',0),(63282,'2021-04-01 02:28:06','2021-04-17 18:01:35','cff8ce99-4be6-4aff-8ca9-e75ae313d01b',1,'/content/Document/Brisbane MIND Group Listing 2016-17(1).pdf','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Brisbane MIND Group Listing 2016-17(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-04-17 18:01:35',0),(63288,'2021-04-01 03:22:07','2021-05-10 14:26:47','141dd1f6-dcfa-4afa-a0f0-1a475a519ea9',1,'/page/news-and-events/events/upcoming/care-expo','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/care-expo','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-10 14:26:47',0),(63302,'2021-04-01 06:38:25','2021-05-14 14:41:31','6463871f-49c5-431c-9269-53d6f6dd2304',1,'/page/health-professionals/Local Positions Vacant/generalp--albany','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/generalp--albany','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-14 14:41:31',0),(63303,'2021-04-01 07:15:32','2021-04-19 00:02:41','574259ad-9e9d-48db-907d-01357fb68fc9',1,'/.well-known/dnt-policy.txt','','198.199.104.179','python-requests/2.11.0','Template not found: .well-known/dnt-policy.txt','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,18,'2021-04-19 00:02:41',0),(63307,'2021-04-01 08:11:35','2021-04-14 00:47:15','a42963b2-057a-4d89-b19e-3af631b7d466',1,'/page/health-professionals/Local Positions Vacant/rn-required---mcdowall-village-medical-practice/','','207.46.13.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/rn-required---mcdowall-village-medical-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-14 00:47:15',0),(63312,'2021-04-01 11:08:06','2021-05-16 10:31:09','f1a5c35e-e8a0-4997-8dd0-2f03c83bdb58',1,'/jobs/medical-reception-clinic-assistant-1','','66.249.75.180','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: jobs/medical-reception-clinic-assistant-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-16 10:31:09',0),(63329,'2021-04-01 14:06:39','2021-05-18 03:18:18','36c080ae-cb60-4b4b-bbe0-76eb80251054',1,'/tel:0736307334','https://www.google.com/','35.199.149.190','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0','Template not found: tel:0736307334','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,48,'2021-05-18 03:18:18',0),(63341,'2021-04-01 17:01:32','2021-05-14 18:27:40','537e76e1-86b6-4fb2-9e35-0a4287f57d39',1,'/jobs/my-medical-and-dental-centre-hamilton-manager','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/my-medical-and-dental-centre-hamilton-manager','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-14 18:27:40',0),(63346,'2021-04-01 18:16:51','2021-05-14 11:07:33','e2c61d18-bb66-45fb-b2a5-b138c847bf74',1,'/jobs/receptionist','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/receptionist','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,21,'2021-05-14 11:07:33',0),(63353,'2021-04-01 20:38:22','2021-05-07 07:03:32','d1b77dc4-7b2e-4554-9c6d-4a0904c5a9f6',1,'/page/health-professionals/Local Positions Vacant/registered-nurse-required---village-family-practice-samford/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/registered-nurse-required---village-family-practice-samford','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-07 07:03:32',0),(63354,'2021-04-01 20:39:05','2021-05-08 03:46:09','832eaccd-05f1-465b-b6c2-9914a0b5f5ab',1,'/page/news-and-events/latest-news/vaccine-myths-get-medical-mums-makeover','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/vaccine-myths-get-medical-mums-makeover','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-08 03:46:09',0),(63363,'2021-04-01 23:14:34','2021-04-12 00:53:32','7db90c93-8ae2-4b0f-b3bc-9047d27bfa80',1,'/page/news-and-events/events/archive/2018-kidney-supportive-care-symposium/','','13.66.139.95','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/2018-kidney-supportive-care-symposium','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-12 00:53:32',0),(63366,'2021-04-01 23:50:39','2021-05-11 03:43:50','2ad0d722-c201-4757-8b74-a0ccf64aac19',1,'/page/news-and-events/events/archive/','','134.195.89.70','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/archive','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-11 03:43:50',0),(63367,'2021-04-02 00:08:45','2021-05-10 22:02:09','564a6424-51ed-48af-bda6-11b546e83379',1,'/research-survey/feedback-on-health-check-templates-for-aboriginal-and-torres-strait-islander-peoples','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: research-survey/feedback-on-health-check-templates-for-aboriginal-and-torres-strait-islander-peoples','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,16,'2021-05-10 22:02:09',0),(63380,'2021-04-02 01:46:13','2021-05-05 09:13:54','df90c21d-7ba7-4a41-9e1a-3cd567861d96',1,'/content/Document/July_Cab part 2_July 30 2015_for publishing_PHN.pdf','http://www.brisbanenorthphn.org.au/content/Document/July_Cab%20part%202_July%2030%202015_for%20publishing_PHN.pdf','34.94.141.43','Go-http-client/1.1','Template not found: content/Document/July_Cab part 2_July 30 2015_for publishing_PHN.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-05 09:13:54',0),(63392,'2021-04-02 06:15:54','2021-05-14 00:41:49','e03fcdd1-5f04-47ff-ab15-22ba1efaf385',1,'/page/news-and-events/latest-news/karen-refugees-get-a-healthy-start','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/karen-refugees-get-a-healthy-start','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-14 00:41:49',0),(63406,'2021-04-02 10:11:42','2021-05-15 21:51:32','e71b4ba9-3dbc-4d43-92fa-a57dec48aefc',1,'/events/medicinal-cannabis-keeping-an-open-mind','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/medicinal-cannabis-keeping-an-open-mind','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,26,'2021-05-15 21:51:32',0),(63424,'2021-04-02 14:10:59','2021-05-13 00:46:20','13edf1a8-1ef0-4d24-a1ff-1e393da30557',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---narangba','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---narangba','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-13 00:46:20',0),(63428,'2021-04-02 15:10:48','2021-05-17 20:36:11','a14b2d13-d52c-4db4-8ac0-67f72bf6ea5b',1,'/jobs/medical-receptionist-opportunity','','66.249.79.148','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: jobs/medical-receptionist-opportunity','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,35,'2021-05-17 20:36:11',0),(63449,'2021-04-02 19:27:31','2021-05-17 20:31:08','c948dce4-0816-48c4-a050-70fd07ef128e',1,'/jobs/casual-medical-receptionist-1','','66.249.79.150','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: jobs/casual-medical-receptionist-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-17 20:31:08',0),(63456,'2021-04-02 21:00:19','2021-05-03 09:51:29','cef42f03-ab47-47e3-b2e7-4e2b5f99e348',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---mcdowall','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---mcdowall','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-03 09:51:29',0),(63467,'2021-04-02 23:49:01','2021-05-04 06:33:37','adfbc2cc-9d50-47f2-bee4-94868d65318b',1,'/jobs/general-practitioner-nurse-practitioner','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/general-practitioner-nurse-practitioner','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-04 06:33:37',0),(63473,'2021-04-03 01:15:01','2021-05-07 16:42:43','7a4a1864-b599-4aa2-b68f-2e3c1f8e925f',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---everton-park','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---everton-park','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-07 16:42:43',0),(63475,'2021-04-03 01:30:11','2021-05-17 09:26:50','1dd03f53-409c-4294-93fa-5fcaef72446e',1,'/content/Document/Primary care liaison/MNHHS Caboolture Ref BP v6_2(1).rtf','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Primary care liaison/MNHHS Caboolture Ref BP v6_2(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-17 09:26:50',0),(63493,'2021-04-03 05:30:26','2021-04-23 09:11:10','a511d08d-8c5b-46b4-8877-a8d346d8242c',1,'/content/Document/Events/2019/INVITATION Maternity Workshop Final.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/INVITATION%20Maternity%20Workshop%20Final.pdf','34.122.223.89','Go-http-client/1.1','Template not found: content/Document/Events/2019/INVITATION Maternity Workshop Final.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-23 09:11:10',0),(63499,'2021-04-03 06:46:42','2021-05-07 16:54:22','42cb3767-0940-4dae-b957-8a7443145b85',1,'/jobs/dr-1','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/dr-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-07 16:54:22',0),(63508,'2021-04-03 09:12:00','2021-05-11 06:27:03','59fad7d7-d251-4c13-aa60-6100666a94ee',1,'/page/health-professionals/community-care/palliative-care/palliative-care-resources-launched-for-gps-in-north-brisbane-and-moreton-bay','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/community-care/palliative-care/palliative-care-resources-launched-for-gps-in-north-brisbane-and-moreton-bay','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-11 06:27:03',0),(63511,'2021-04-03 09:46:03','2021-05-04 20:40:42','4fdceed0-9961-428c-aecd-6fd6ea94460a',1,'/content/Document/170427_Health alert_PFAS Information for Clinicians(1).pdf','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/170427_Health alert_PFAS Information for Clinicians(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-04 20:40:42',0),(63534,'2021-04-03 14:24:30','2021-04-13 09:36:29','a353e9ed-6a8e-403b-8180-86375a769861',1,'/content/Document/Templates/4.9/MNHHS Caboolture Referral ZM v4_9.rtf','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.9/MNHHS Caboolture Referral ZM v4_9.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-13 09:36:29',0),(63535,'2021-04-03 14:30:22','2021-05-15 21:53:58','358c4b1e-ae35-4962-82e4-42efc1919b85',1,'/jobs/senior-practice-nurse','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/senior-practice-nurse','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-15 21:53:58',0),(63537,'2021-04-03 14:35:00','2021-04-14 10:10:48','28a58ba5-4717-4d1c-9481-c824f32c6198',1,'/content/Document/Templates/4.8/MNHHS Paediatric Referral BP v4_8.rtf','','207.46.13.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.8/MNHHS Paediatric Referral BP v4_8.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-04-14 10:10:48',0),(63539,'2021-04-03 14:41:43','2021-05-05 23:21:02','865a296c-df8b-457a-88ee-7403d1b7ee2a',1,'/page/news-and-events/events/archive/introduction-to-animal-assisted-therapy-for-allied-health-professionals/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/introduction-to-animal-assisted-therapy-for-allied-health-professionals','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-05 23:21:02',0),(63541,'2021-04-03 14:51:06','2021-05-03 18:33:42','0fc4a074-e218-42e6-aa30-e8b5ce4c1891',1,'/jobs/project-officer-lived-experience-networks','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/project-officer-lived-experience-networks','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-03 18:33:42',0),(63543,'2021-04-03 15:03:45','2021-04-10 22:58:12','a71125a6-d7e9-47c4-8e90-9b6c18d86423',1,'/page/about/careers/2-x-general-practice-liaison-officers/','','13.66.139.38','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers/2-x-general-practice-liaison-officers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-10 22:58:12',0),(63552,'2021-04-03 16:40:20','2021-05-14 17:55:55','defa2b86-e042-4d36-95d2-8fa8adfc45e2',1,'/page/news-and-events/latest-news/working-together-to-set-the-health-agenda/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/working-together-to-set-the-health-agenda','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-14 17:55:55',0),(63567,'2021-04-03 18:36:05','2021-04-29 10:49:30','7aa18b46-6f80-4cd0-85f7-64042ea59fef',1,'/page/health-professionals/Local Positions Vacant/sessional-work-for-gps---mater-refugee-complex-care-clinic/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/sessional-work-for-gps---mater-refugee-complex-care-clinic','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-29 10:49:30',0),(63575,'2021-04-03 19:32:29','2021-05-07 22:28:29','719eed48-b20d-47bb-ae14-76f2ca9e4d37',1,'/page/news-and-events/events/upcoming/maternity-workshop---metro-north-gp-alignment-program/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/maternity-workshop---metro-north-gp-alignment-program','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-07 22:28:29',0),(63578,'2021-04-03 19:59:10','2021-04-28 07:25:51','0f2c0e51-738b-44f1-8ef1-e703aae3cb0f',1,'/page/news-and-events/events/archive/managing-gremlins-and-grubs-in-office-based-infection-control/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/managing-gremlins-and-grubs-in-office-based-infection-control','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-28 07:25:51',0),(63600,'2021-04-03 23:31:33','2021-05-01 11:05:37','5205c1ed-f400-48a1-bc94-4de4ed8fa159',1,'/page/health-professionals/Local Positions Vacant/vr-general-practitioner-required---redcliffe-parade-family-medical-practice/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/vr-general-practitioner-required---redcliffe-parade-family-medical-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-01 11:05:37',0),(63603,'2021-04-04 00:24:22','2021-05-17 07:04:45','5296cbcf-eb1a-4caf-8365-5334aa15269e',1,'/jobs/telegraph-road-clinic-registered-nurse','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/telegraph-road-clinic-registered-nurse','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,16,'2021-05-17 07:04:45',0),(63616,'2021-04-04 04:16:33','2021-04-13 16:39:06','4d07181a-16d8-4a12-ad26-550874e29b80',1,'/content/Document/Templates/4.5/MNHHS Redcliffe Referral ZM v4.5 160101.rtf','','207.46.13.11','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.5/MNHHS Redcliffe Referral ZM v4.5 160101.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-13 16:39:06',0),(63618,'2021-04-04 04:38:30','2021-04-13 07:41:19','b75f7d6f-00c7-42a4-8620-edaec68ec4cd',1,'/content/Document/Templates/4.5/MNHHS Caboolture Referral v4.5_.4W7','','78.46.61.245','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: content/Document/Templates/4.5/MNHHS Caboolture Referral v4.5_.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-04-13 07:41:19',0),(63619,'2021-04-04 04:47:44','2021-05-03 20:51:55','512ba24b-b9cd-4f1e-9fe4-7aaa34e18f84',1,'/content/Document/Templates/4.3/MNHHS RBWH Referral MD v4.3.rtf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.3/MNHHS RBWH Referral MD v4.3.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-03 20:51:55',0),(63622,'2021-04-04 05:02:43','2021-05-15 10:34:12','968b3588-5e48-45de-baf7-574b539ed194',1,'/page/about/our-team','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/our-team','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-15 10:34:12',0),(63645,'2021-04-04 11:30:39','2021-05-16 07:40:40','0f849a38-1588-40f4-a520-b35887986e15',1,'/page/news-and-events/events/upcoming/RBWH-hospitalcommunityforum-18september/','','66.249.69.36','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/RBWH-hospitalcommunityforum-18september','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-16 07:40:40',0),(63655,'2021-04-04 14:00:40','2021-04-29 16:17:42','4f7f0a49-bdc2-4f0e-ae9b-ee1279375379',1,'/jobs/exciting-and-different-next-practice-medical-clinic-albion-gp-in-hours-vr-or-after-hours-dws','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/exciting-and-different-next-practice-medical-clinic-albion-gp-in-hours-vr-or-after-hours-dws','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,20,'2021-04-29 16:17:42',0),(63707,'2021-04-05 03:52:46','2021-05-08 04:37:54','602c7a5a-178a-4db9-acfd-3c452c24240e',1,'/jobs/registered-nurse-1','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/registered-nurse-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-08 04:37:54',0),(63718,'2021-04-05 06:08:09','2021-05-18 03:15:59','158e0c97-12fd-4bc8-9f8c-70ffb1ced9b2',1,'/jobs/casual-medical-receptionist','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/casual-medical-receptionist','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-18 03:15:59',0),(63721,'2021-04-05 07:11:51','2021-05-16 06:52:46','5bddfc70-a1be-473d-a929-4e3163f25a00',1,'/jobs/mental-health-program-development-officer','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/mental-health-program-development-officer','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,90,'2021-05-16 06:52:46',0),(63724,'2021-04-05 07:47:35','2021-05-16 22:21:56','ceae93d7-648a-437f-837c-f22917ec38d9',1,'/jobs/general-practitioner-liaison-officer-health-systems-improvement-caboolture-hospital','','66.220.149.42','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: jobs/general-practitioner-liaison-officer-health-systems-improvement-caboolture-hospital','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,53,'2021-05-16 22:21:56',0),(63737,'2021-04-05 09:50:52','2021-05-16 09:17:11','f43dbb12-29f0-4134-ad44-734fbb12c399',1,'/content/Document/Templates/V5.1 Jan 2018/Specialist lists/Specialists List_Paediatrics_5_1.pdf','','66.249.69.36','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Templates/V5.1 Jan 2018/Specialist lists/Specialists List_Paediatrics_5_1.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-16 09:17:11',0),(63749,'2021-04-05 12:48:00','2021-04-22 00:28:31','c90c865e-e8cd-4cb6-9198-c672eaade696',1,'/page/health-professionals/Local Positions Vacant/vr-gp-required-the-infinity-group/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/vr-gp-required-the-infinity-group','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-04-22 00:28:31',0),(63750,'2021-04-05 13:07:01','2021-05-16 15:04:48','8c593755-296f-4719-9c31-a6d13762b3b4',1,'/content/Document/Brisbane MIND Provider List January 2018(10).pdf','','66.249.69.36','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Brisbane MIND Provider List January 2018(10).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 15:04:48',0),(63773,'2021-04-05 17:35:27','2021-05-17 02:52:56','7eaf1099-9984-4ea6-8e7f-bb4223d1ed57',1,'/content/Document/Brisbane MIND Provider List February 2018(1).pdf','','157.55.39.23','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List February 2018(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-17 02:52:56',0),(63778,'2021-04-05 19:16:02','2021-05-13 10:49:02','c1ae4ad5-988a-4104-9473-1beb4d914e56',1,'/page/pathways/lymphoedema/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/pathways/lymphoedema','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 10:49:02',0),(63780,'2021-04-05 19:22:38','2021-04-20 04:43:32','a0bdc2e9-f8e2-4897-8f0b-7189ba5c60be',1,'/page/health-professionals/Local Positions Vacant/registered-nurse-required-morayfield-family-doctors/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/registered-nurse-required-morayfield-family-doctors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-20 04:43:32',0),(63795,'2021-04-05 22:37:12','2021-05-02 04:57:42','bccc790b-801f-431c-964f-b6a24103ec99',1,'/content/Document/Health alerts/20200113_Health alert_Pneumonia cluster.pdf','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Health alerts/20200113_Health alert_Pneumonia cluster.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-02 04:57:42',0),(63807,'2021-04-06 02:08:19','2021-05-18 16:27:25','1f047273-b68f-42e0-a38c-b7ae8fe98b38',1,'/page/pathways/audit-tools/','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/pathways/audit-tools','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 16:27:25',0),(63845,'2021-04-06 11:40:54','2021-05-11 03:44:08','c20dbd28-0dc9-4763-a6d9-b0f1d9c9ec17',1,'/page/news-and-events/events/archive/detecting-and-managing-chronic-kidney-disease/','','134.195.89.70','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/archive/detecting-and-managing-chronic-kidney-disease','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-11 03:44:08',0),(63850,'2021-04-06 12:19:36','2021-05-13 02:42:30','3a2d2d71-9d6a-4dc6-bd4b-e1efb16444d2',1,'/content/Document/PD_Clinical Nurse_TCC_170515.pdf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/PD_Clinical Nurse_TCC_170515.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 02:42:30',0),(63871,'2021-04-06 15:49:41','2021-05-12 14:16:01','4cb28c3c-8b21-4cec-99d1-b651dd64b480',1,'/events/common-challenges-in-primary-care-impacts-of-covid-19-on-chronic-respiratory-disease','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/common-challenges-in-primary-care-impacts-of-covid-19-on-chronic-respiratory-disease','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-12 14:16:01',0),(63901,'2021-04-07 02:45:19','2021-04-29 21:15:40','497f3b90-20f4-4b3d-b883-3e47840210d2',1,'/content/Document/Primary Care Breakfast Nov 2018 (6).pdf','','66.249.68.5','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Primary Care Breakfast Nov 2018 (6).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-29 21:15:40',0),(63919,'2021-04-07 09:47:10','2021-05-19 02:12:09','63f9254c-8741-431d-b990-3addafed1efc',1,'/jobs/neighbourhood-medical-bardon-1','','85.208.98.25','Mozilla/5.0 (compatible; SemrushBot; +http://www.semrush.com/bot.html)','Template not found: jobs/neighbourhood-medical-bardon-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,52,'2021-05-19 02:12:09',0),(63957,'2021-04-07 18:03:34','2021-05-15 16:27:38','60b73c3e-2dd0-4d48-8a00-c3d4b9fec9ec',1,'/events/australasian-stroke-academy-update-on-stroke-prevention-intervention-and-survival','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/australasian-stroke-academy-update-on-stroke-prevention-intervention-and-survival','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,15,'2021-05-15 16:27:38',0),(63987,'2021-04-08 00:37:10','2021-05-11 23:56:04','c3a45a3b-2358-4430-ba76-a23086d2d178',1,'/core/misc/drupal.js','','208.100.26.236','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:68.0) Gecko/20100101 Firefox/68.0','Template not found: core/misc/drupal.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-11 23:56:04',0),(63988,'2021-04-08 00:37:11','2021-05-11 23:56:05','63b4353b-11f0-419a-bce6-d9fdd8269917',1,'/misc/drupal.js','','208.100.26.236','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:68.0) Gecko/20100101 Firefox/68.0','Template not found: misc/drupal.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-11 23:56:05',0),(64002,'2021-04-08 05:45:36','2021-05-17 16:45:35','975392d7-1d3b-44ba-8da0-1fc923e7b227',1,'/content/Document/Network Link/Network_Link_Jan2020_WEB.pdf','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Network Link/Network_Link_Jan2020_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-17 16:45:35',0),(64040,'2021-04-08 16:33:13','2021-04-23 00:37:55','04b8e871-39b4-4745-bfd7-af970dd4f3d6',1,'/events/sexual-health-in-primary','','62.210.188.216','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)','Template not found: events/sexual-health-in-primary','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-04-23 00:37:55',0),(64056,'2021-04-08 21:38:09','2021-05-13 16:37:05','7fc6d8d8-4729-4513-a6ae-3652df9e4807',1,'/content/Document/Pathways/QH_Fax_Template -Audiology- Interactive.pdf','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/QH_Fax_Template -Audiology- Interactive.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-13 16:37:05',0),(64074,'2021-04-09 04:52:49','2021-05-14 14:16:25','addaf94e-2a0b-4b81-aa6c-3f97a59d8c81',1,'/jobs/rn','','66.249.75.182','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: jobs/rn','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-14 14:16:25',1),(64085,'2021-04-09 07:45:26','2021-04-11 01:24:09','702ad7b9-eebf-49fe-921e-e900dd5d059e',1,'/page/news-and-events/events/archive/cross-cultural-competency-training-for-primary-health-providers/','','207.46.13.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/cross-cultural-competency-training-for-primary-health-providers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-11 01:24:09',0),(64087,'2021-04-09 09:40:29','2021-05-04 06:27:04','41831f7b-b310-42a4-8ec1-722100445801',1,'/events/course-in-ear-and-hearing-health','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/course-in-ear-and-hearing-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,15,'2021-05-04 06:27:04',0),(64088,'2021-04-09 09:58:47','2021-04-27 13:21:35','3eccb44d-f877-4199-9298-e8cefb6961c3',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---bellara','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---bellara','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-27 13:21:35',0),(64093,'2021-04-09 10:14:11','2021-04-17 23:32:04','d2331a50-da8d-4e9f-b255-f7ea4f42e938',1,'/content/Document/INVITATION - Management of COPD exacerbations - GP education evening - 30 August 2017.pdf','http://www.brisbanenorthphn.org.au/content/Document/INVITATION%20-%20Management%20of%20COPD%20exacerbations%20-%20GP%20education%20evening%20-%2030%20August%202017.pdf','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/INVITATION - Management of COPD exacerbations - GP education evening - 30 August 2017.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-17 23:32:04',0),(64120,'2021-04-09 15:26:52','2021-05-15 14:50:49','23401a26-0224-47ea-b5f0-7e3063c5d2c6',1,'/content/Document/Network Link/Network Link_May_2019_WEB.pdf','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Network Link/Network Link_May_2019_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-15 14:50:49',0),(64126,'2021-04-09 17:14:23','2021-05-16 04:12:19','534da8b7-ae04-48c8-bcd3-4b0cdf10c2a9',1,'/page/health-professionals/Local Positions Vacant/gp-required-bribie-island-medical-centre-dws-and-457-visa-sponsorship-available/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/gp-required-bribie-island-medical-centre-dws-and-457-visa-sponsorship-available','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 04:12:19',0),(64138,'2021-04-09 19:01:35','2021-04-13 21:18:12','7c426381-faa7-44fa-bad9-3be2c012c036',1,'/page/health-professionals/Local Positions Vacant/allied-health-professional-required---samford-valley-medical-centre/','','207.46.13.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/allied-health-professional-required---samford-valley-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-13 21:18:12',0),(64148,'2021-04-09 20:38:30','2021-05-16 11:23:10','067d7219-f037-4918-860c-b08bac655da9',1,'/jobs/general-practitioner-albany-creek-doctors','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/general-practitioner-albany-creek-doctors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 11:23:10',0),(64150,'2021-04-09 21:13:01','2021-04-11 11:51:34','d189a80e-fe71-4236-b6b9-242aa0751db5',1,'/page/health-professionals/Local Positions Vacant/general-practice-staff-required---turbot-medical-centre/','','207.46.13.43','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practice-staff-required---turbot-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-11 11:51:34',0),(64151,'2021-04-09 21:33:07','2021-04-12 03:38:27','cad3a9e7-7efb-4b00-8265-9f0860e7fef7',1,'/page/health-professionals/Local Positions Vacant/clinical-nurse-community-care-coordination-parental-leave-contract/','','207.46.13.11','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/clinical-nurse-community-care-coordination-parental-leave-contract','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-12 03:38:27',0),(64156,'2021-04-09 22:20:01','2021-04-12 19:18:01','f775e917-0d73-4e60-91a2-9b84e2160a55',1,'/page/health-professionals/Local Positions Vacant/gp-required---ascot-family-practice/','','40.77.167.66','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/gp-required---ascot-family-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-12 19:18:01',0),(64166,'2021-04-10 00:45:42','2021-04-11 21:43:53','b71e36b2-7d3d-4cd4-8c15-1de696b91ec1',1,'/page/health-professionals/Local Positions Vacant/vr-general-practitioner-required---bartchall-medical/','','40.77.167.66','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/vr-general-practitioner-required---bartchall-medical','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-11 21:43:53',0),(64167,'2021-04-10 01:07:26','2021-04-11 23:44:58','2aa975ee-5e59-4b48-9bbf-ee2cb05cdb36',1,'/page/health-professionals/Local Positions Vacant/rn-required---tuh/','','40.77.167.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/rn-required---tuh','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-11 23:44:58',0),(64182,'2021-04-10 03:42:58','2021-05-07 02:21:12','21e188cf-3d3e-4c95-8a0d-b417a43e06b9',1,'/page/health-professionals/Local Positions Vacant/medical-advisorclaims-manager---avant-mutual-group/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/medical-advisorclaims-manager---avant-mutual-group','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-07 02:21:12',0),(64187,'2021-04-10 05:03:05','2021-05-12 13:22:42','323a45bd-08bc-41db-986c-c2f9117dc555',1,'/content/Document/Templates/4.4/Specialists List_The Prince Charles Hospital_4.4.pdf','','78.46.94.83','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:83.0) Gecko/20100101 Firefox/83.0','Template not found: content/Document/Templates/4.4/Specialists List_The Prince Charles Hospital_4.4.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-12 13:22:42',0),(64210,'2021-04-10 10:39:04','2021-04-12 19:18:53','0648e689-ab7b-44b3-8a34-092211a3913f',1,'/content/Document/Brisbane MIND Group Listing 2016-17(8).pdf','','40.77.167.80','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Group Listing 2016-17(8).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-12 19:18:53',0),(64233,'2021-04-10 14:48:16','2021-04-24 08:02:17','49611816-ec3a-4e2d-b053-063bf91cf2d9',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---goodwin-drive-family-medical-centre-bongaree/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---goodwin-drive-family-medical-centre-bongaree','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-04-24 08:02:17',0),(64239,'2021-04-10 18:18:38','2021-05-12 23:55:02','19a6e929-7bc8-4834-a365-422531a3b779',1,'/page/news-and-events/events/upcoming/apna-foundations-of-general-practice-nursing-workshop','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/apna-foundations-of-general-practice-nursing-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-12 23:55:02',0),(64240,'2021-04-10 18:27:32','2021-05-12 00:44:43','a909633e-2d05-4247-b206-e955c61903e9',1,'/content/Document/FORM 2 - Application for Group Therapy Program(2).docx','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/FORM 2 - Application for Group Therapy Program(2).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 00:44:43',0),(64241,'2021-04-10 19:06:59','2021-05-06 16:42:52','df4739bf-ab72-4430-b2ee-3c421ad6940b',1,'/page/news-and-events/latest-news/my-health-for-life-being-put-into-practice','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/my-health-for-life-being-put-into-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-06 16:42:52',0),(64242,'2021-04-10 19:18:55','2021-04-12 08:39:45','f3a95746-e446-4f95-9787-3e5ecc8ef205',1,'/content/Document/Templates/V5.1 Jan 2018/Specialist lists/Specialists List_Maternity_5_1.pdf','','40.77.167.66','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/V5.1 Jan 2018/Specialist lists/Specialists List_Maternity_5_1.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-12 08:39:45',0),(64243,'2021-04-10 20:10:01','2021-04-10 20:10:01','c2aa5f2b-d101-4339-afeb-7c659784984a',1,'/page/news-and-events/events/upcoming/mindframe-plus-workshop-for-suicide-related-services','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/mindframe-plus-workshop-for-suicide-related-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-10 20:10:01',0),(64244,'2021-04-10 20:26:58','2021-05-14 19:42:54','526a3b7a-fbed-4c8f-a558-b257f9482f20',1,'/content/Document/Reports/FINAL_REP_HNA 2019-22_181113(1).pdf','','66.249.69.36','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/Reports/FINAL_REP_HNA 2019-22_181113(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-14 19:42:54',0),(64245,'2021-04-10 20:36:58','2021-05-09 01:06:26','c3507d92-03d1-478f-8b63-f9f7c2be20d0',1,'/content/Document/Position Descriptions/PD_GPLO_Alliance_181203.pdf','http://www.brisbanenorthphn.org.au/content/Document/Position%20Descriptions/PD_GPLO_Alliance_181203.pdf','35.233.203.41','Go-http-client/1.1','Template not found: content/Document/Position Descriptions/PD_GPLO_Alliance_181203.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 01:06:26',0),(64246,'2021-04-10 21:02:24','2021-04-10 21:02:24','d13878ed-d034-4dc4-9cdb-0e13c5671a6d',1,'/page/health-professionals/Local Positions Vacant/experienced-medical-receptionist-required---sandgate-medical-centre/','','40.77.167.66','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/experienced-medical-receptionist-required---sandgate-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-10 21:02:24',0),(64247,'2021-04-10 21:37:53','2021-05-13 18:05:09','2c28de84-1cac-4b00-a08a-32f696565903',1,'/content/Document/Templates/4.12/Specialists Lists/Specialists List_Palliative Care_4_12.pdf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.12/Specialists Lists/Specialists List_Palliative Care_4_12.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 18:05:09',0),(64248,'2021-04-10 22:41:38','2021-04-10 22:41:38','e1512e73-5ab5-43b1-8e75-7c286a3607ae',1,'/fr/model/alexxaferrer/','','207.46.13.11','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: fr/model/alexxaferrer','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-10 22:41:38',0),(64249,'2021-04-10 23:02:04','2021-04-24 07:35:57','6fda37c2-8bf4-4caa-ad07-06e2d6b11033',1,'/page/health-professionals/immunisation/immunisation-catch-up-event-resources/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/immunisation/immunisation-catch-up-event-resources','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-24 07:35:57',0),(64250,'2021-04-11 01:30:09','2021-05-17 06:29:26','42194321-6e60-4b45-ade2-6dc2e486cdf1',1,'/content/Image/Staff/Libby Dunstan_July 2017.jpg','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Staff/Libby Dunstan_July 2017.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 06:29:26',0),(64251,'2021-04-11 02:13:16','2021-05-10 21:10:02','22d956f9-43bb-48b2-b362-34693791efdb',1,'/page/news-and-events/latest-news/news-from-metro-north-public-health-unit','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/news-from-metro-north-public-health-unit','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-10 21:10:02',0),(64252,'2021-04-11 02:26:37','2021-04-11 02:26:37','14bfaede-8e74-4fd7-8d6d-f6e97d5835c1',1,'/page/news-and-events/events/archive/advanced-training-in-suicide-prevention-workshop/','http://www.brisbanenorthphn.org.au/page/news-and-events/events/archive/advanced-training-in-suicide-prevention-workshop/','85.208.98.22','Mozilla/5.0 (compatible; SemrushBot-BA; +http://www.semrush.com/bot.html)','Template not found: page/news-and-events/events/archive/advanced-training-in-suicide-prevention-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 02:26:37',0),(64253,'2021-04-11 02:35:16','2021-05-13 17:33:14','4fca1bc1-8f7b-4fdf-820e-5c6612b98c3d',1,'/page/news-and-events/latest-news/gps-flock-to-the-phns-first-ndis-event','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/gps-flock-to-the-phns-first-ndis-event','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-13 17:33:14',0),(64254,'2021-04-11 03:18:16','2021-05-12 16:31:05','75db80bf-13d6-4042-8fbe-9d0937870a98',1,'/page/news-and-events/events/upcoming/rural-emergency-skills-training','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/rural-emergency-skills-training','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-12 16:31:05',0),(64255,'2021-04-11 03:19:58','2021-04-11 03:19:58','d9b5e284-b34a-436e-a615-d27c7b2113a5',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist-narangba/','','40.77.167.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist-narangba','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 03:19:58',0),(64256,'2021-04-11 04:38:51','2021-05-16 08:40:44','eb254d31-f67b-406c-98e2-8552fc3b376d',1,'/page/health-professionals/Local Positions Vacant/practice-manager-required---smartclinc/','','66.249.69.33','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/practice-manager-required---smartclinc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 08:40:44',0),(64257,'2021-04-11 04:48:48','2021-04-11 04:48:48','2bdea86c-5c80-41a9-a461-7685f1e4ae4c',1,'/page/health-professionals/Local Positions Vacant/casual-registered-nurse---hamilton-medical-centre/','','207.46.13.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/casual-registered-nurse---hamilton-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 04:48:48',0),(64258,'2021-04-11 05:07:39','2021-05-19 00:11:20','fc6d2ad5-d06a-4e73-a271-6af2c31b8b7c',1,'/content/Document/Network Link/Network Link_09_SEPTEMBER_FINAL_WEB.pdf','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Network Link/Network Link_09_SEPTEMBER_FINAL_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-19 00:11:20',0),(64259,'2021-04-11 05:48:12','2021-04-11 05:48:12','9f8b91dd-f26e-426d-8776-cdd8db65b09b',1,'/page/about/careers/clinical-project-lead-care-coordination/','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers/clinical-project-lead-care-coordination','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 05:48:12',0),(64260,'2021-04-11 06:06:45','2021-05-19 03:02:42','b086dfe1-b7bd-4dc7-aa5d-fac4804432a3',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---kenmore-village','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---kenmore-village','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-19 03:02:42',0),(64261,'2021-04-11 07:30:34','2021-05-05 09:16:00','70379e01-ad9c-4b90-be55-5ced2c5af0c8',1,'/page/news-and-events/events/upcoming/course-in-wound-closure-may-2020/','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/course-in-wound-closure-may-2020','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-05 09:16:00',0),(64262,'2021-04-11 07:36:10','2021-05-11 06:11:49','0510dd1c-e9ff-4bf0-ac4a-810ac440d75a',1,'/content/Document/Primary care liaison/MNHHS RBWH Ref v6_2 ZM(1).rtf','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Primary care liaison/MNHHS RBWH Ref v6_2 ZM(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-11 06:11:49',0),(64263,'2021-04-11 07:53:58','2021-04-18 14:00:39','f885d48d-c74a-4767-9abf-e421fa36cb87',1,'/page/health-professionals/Local Positions Vacant/clinical-nurse-required---sunshine-skin-clinic/','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/clinical-nurse-required---sunshine-skin-clinic','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-18 14:00:39',0),(64264,'2021-04-11 08:25:17','2021-04-11 08:25:17','c73c1091-898e-4846-bd50-b43648aba839',1,'/content/Document/Brisbane MIND Provider List January 2018.pdf','','66.249.65.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.122 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Brisbane MIND Provider List January 2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 08:25:17',0),(64265,'2021-04-11 08:59:20','2021-05-05 09:40:35','d3876c7a-93bf-4b9d-90ac-0df5a69f9889',1,'/page/news-and-events/latest-news/my-health-record-opt-out-period-commences','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/my-health-record-opt-out-period-commences','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-05 09:40:35',0),(64266,'2021-04-11 09:38:10','2021-04-24 07:02:15','cceb07d9-b17b-47a5-8dc4-4f0b45dded6a',1,'/content/Document/Templates/6.1/MNHHS Paediatric Ref v6_1 BP.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/MNHHS%20Paediatric%20Ref%20v6_1%20BP.rtf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/MNHHS Paediatric Ref v6_1 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 07:02:15',0),(64267,'2021-04-11 09:40:27','2021-04-17 14:06:20','2648d472-425c-46cb-a174-1389fe0607f5',1,'/page/news-and-events/latest-news/my-health-record-australians-to-decide-on-a-smarter-and-safer-way-to-share-their-important-healthcare-information','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/my-health-record-australians-to-decide-on-a-smarter-and-safer-way-to-share-their-important-healthcare-information','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-17 14:06:20',0),(64268,'2021-04-11 10:00:17','2021-05-01 06:55:58','4ccc719a-8d5b-4688-b322-27194e9b27db',1,'/content/Document/MNHF presentations 2017/Fiona Caniglia and Rachel Watson - Safe Space 170531.pdf','http://www.brisbanenorthphn.org.au/content/Document/MNHF%20presentations%202017/Fiona%20Caniglia%20and%20Rachel%20Watson%20-%20Safe%20Space%20170531.pdf','104.198.141.65','Go-http-client/1.1','Template not found: content/Document/MNHF presentations 2017/Fiona Caniglia and Rachel Watson - Safe Space 170531.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 06:55:58',0),(64269,'2021-04-11 10:13:43','2021-05-04 08:33:21','72dce5c8-ece8-4114-b4d6-cb69eeac4271',1,'/content/Document/Pathways/Table 2_Timed up and go test.pdf','','66.249.68.65','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Pathways/Table 2_Timed up and go test.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-04 08:33:21',0),(64270,'2021-04-11 10:24:15','2021-05-11 21:58:39','5dca53cf-de7c-4d4d-89a0-e17d3b8534a9',1,'/page/about/our-planning/engage-with-us','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/our-planning/engage-with-us','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-11 21:58:39',0),(64271,'2021-04-11 10:44:37','2021-05-12 23:42:54','4cf356bb-57fe-4998-909e-c60609e08a34',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/brisbane-mind4kids','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services/brisbane-mind4kids','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-12 23:42:54',0),(64272,'2021-04-11 10:53:54','2021-05-09 21:19:46','ef37e772-2af5-4918-9620-6a148cee4a93',1,'/page/news-and-events/events/upcoming/training-in-the-management-of-acute-care-needs-of-racf-residents---kaiyar','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/training-in-the-management-of-acute-care-needs-of-racf-residents---kaiyar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-09 21:19:46',0),(64273,'2021-04-11 10:57:07','2021-04-11 10:57:07','8e22fbe6-adde-427d-9183-5390f0e20ffb',1,'/tinymce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: tinymce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:57:07',0),(64274,'2021-04-11 10:57:09','2021-04-11 10:57:09','c4372d4d-8ab5-4a53-aea5-0eb8b4c3610a',1,'/assets/tinymce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: assets/tinymce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:57:09',0),(64275,'2021-04-11 10:57:12','2021-04-11 10:57:12','73a589d4-895a-4aa3-8357-d43aff531f7f',1,'/inc/tinymce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: inc/tinymce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:57:12',0),(64276,'2021-04-11 10:57:15','2021-04-11 10:57:15','1f1b7d25-94a9-4f4a-b764-9a095cc4f7ce',1,'/includes/tinymce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: includes/tinymce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:57:15',0),(64277,'2021-04-11 10:57:18','2021-04-11 10:57:18','8ba94c39-284e-4521-be7a-d974861f1b19',1,'/libs/tinymce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: libs/tinymce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:57:18',0),(64278,'2021-04-11 10:57:21','2021-04-11 10:57:21','87536723-403f-4789-b046-e518989f3733',1,'/scripts/tinymce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: scripts/tinymce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:57:21',0),(64279,'2021-04-11 10:57:24','2021-04-11 10:57:24','f87bc42c-2604-4a1a-83b3-c178048da0c0',1,'/tinymce/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: tinymce/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:57:24',0),(64280,'2021-04-11 10:57:28','2021-04-11 10:57:28','85425208-7a0f-4cd8-a290-bc86f3300a0e',1,'/assets/tinymce/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: assets/tinymce/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:57:28',0),(64281,'2021-04-11 10:57:32','2021-04-11 10:57:32','3d603906-04db-47e1-b0eb-b63bd478e042',1,'/inc/tinymce/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: inc/tinymce/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:57:32',0),(64282,'2021-04-11 10:57:36','2021-04-11 10:57:36','b203dd2e-7bc4-463a-9a89-eec290343bcc',1,'/includes/tinymce/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: includes/tinymce/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:57:36',0),(64283,'2021-04-11 10:57:39','2021-04-11 10:57:39','6e4c96a8-8139-4cbd-9c41-d99d99ec10d5',1,'/libs/tinymce/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: libs/tinymce/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:57:39',0),(64284,'2021-04-11 10:57:43','2021-04-11 10:57:43','6626f98b-d01c-4239-8683-711c9cd64f7a',1,'/scripts/tinymce/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: scripts/tinymce/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:57:43',0),(64285,'2021-04-11 10:57:47','2021-04-11 10:57:47','1e48d2d1-e39c-4e54-9f25-d1275c96d491',1,'/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:57:47',0),(64286,'2021-04-11 10:57:50','2021-04-11 10:57:50','be43fd92-cb24-4d53-bb4e-edbe31b2e60c',1,'/assets/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: assets/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:57:50',0),(64287,'2021-04-11 10:57:54','2021-04-11 10:57:54','d41a6a34-16e7-4682-84d8-e8a217402c82',1,'/inc/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: inc/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:57:54',0),(64288,'2021-04-11 10:57:57','2021-04-11 10:57:57','9c16cf84-42cc-408b-95ff-50d86dffd6e3',1,'/includes/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: includes/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:57:57',0),(64289,'2021-04-11 10:58:01','2021-04-11 10:58:01','acb0000b-f707-45f8-8808-f641c7478c73',1,'/libs/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: libs/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:58:01',0),(64290,'2021-04-11 10:58:04','2021-04-11 10:58:04','d321d100-699e-4bec-bd50-9e0bda543140',1,'/scripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: scripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:58:04',0),(64291,'2021-04-11 10:58:07','2021-04-11 10:58:07','5b1b0a10-3410-467c-93cb-5899631cc150',1,'/jscripts/tinymce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: jscripts/tinymce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:58:07',0),(64292,'2021-04-11 10:58:10','2021-04-11 10:58:10','36727b54-2feb-4e6e-86c8-61cd9fb651de',1,'/assets/jscripts/tinymce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: assets/jscripts/tinymce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:58:10',0),(64293,'2021-04-11 10:58:15','2021-04-11 10:58:15','9958465b-7deb-4a00-a995-98aa6604aba5',1,'/inc/jscripts/tinymce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: inc/jscripts/tinymce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:58:15',0),(64294,'2021-04-11 10:58:18','2021-04-11 10:58:18','8c941524-7eda-4980-b4ed-7ed71a2d5ff3',1,'/includes/jscripts/tinymce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: includes/jscripts/tinymce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:58:18',0),(64295,'2021-04-11 10:58:22','2021-04-11 10:58:22','77e910e3-1d2c-4076-9e2c-2c9a70c96751',1,'/libs/jscripts/tinymce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: libs/jscripts/tinymce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:58:22',0),(64296,'2021-04-11 10:58:25','2021-04-11 10:58:25','87f824f9-c60c-4ec1-a615-fcf635c6b3ab',1,'/scripts/jscripts/tinymce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: scripts/jscripts/tinymce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:58:25',0),(64297,'2021-04-11 10:58:28','2021-04-11 10:58:28','7f996dd8-279a-48e3-be81-24af52ae227b',1,'/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:58:28',0),(64298,'2021-04-11 10:58:31','2021-04-11 10:58:31','19f60dc9-b53c-4f75-a7fd-09d670afb6e3',1,'/assets/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: assets/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:58:31',0),(64299,'2021-04-11 10:58:35','2021-04-11 10:58:35','065e08da-e9a8-4989-80f5-7a6953a1f0e5',1,'/inc/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: inc/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:58:35',0),(64300,'2021-04-11 10:58:38','2021-04-11 10:58:38','e31de38d-2eac-4122-a8fd-58e1af1d83e0',1,'/includes/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: includes/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:58:38',0),(64301,'2021-04-11 10:58:42','2021-04-11 10:58:42','8e159486-2cf2-400c-bd6e-680031e9d276',1,'/libs/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: libs/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:58:42',0),(64302,'2021-04-11 10:58:45','2021-04-11 10:58:45','7046464f-a41a-42ac-ad15-eb41e38fc04a',1,'/scripts/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: scripts/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:58:45',0),(64303,'2021-04-11 10:58:48','2021-04-11 10:58:48','bdd2d453-71e0-4ed1-a343-46e4efb999b0',1,'/js/tinymce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: js/tinymce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:58:48',0),(64304,'2021-04-11 10:58:51','2021-04-11 10:58:51','a2515eee-101a-498a-a914-a56f62ca22ef',1,'/assets/js/tinymce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: assets/js/tinymce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:58:51',0),(64305,'2021-04-11 10:58:54','2021-04-11 10:58:54','ba981a40-d20f-4ef7-94c2-6f5d6e1afb60',1,'/inc/js/tinymce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: inc/js/tinymce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:58:54',0),(64306,'2021-04-11 10:58:58','2021-04-11 10:58:58','2940ff6c-8ca0-4ed1-ab15-0ad851c9d0f2',1,'/includes/js/tinymce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: includes/js/tinymce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:58:58',0),(64307,'2021-04-11 10:59:01','2021-04-11 10:59:01','b01e4a98-bdfc-4a40-bf6c-061f05d7049a',1,'/libs/js/tinymce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: libs/js/tinymce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:59:01',0),(64308,'2021-04-11 10:59:05','2021-04-11 10:59:05','119b1495-28b1-4ac1-a525-412ec6231ecc',1,'/scripts/js/tinymce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: scripts/js/tinymce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:59:05',0),(64309,'2021-04-11 10:59:08','2021-04-11 10:59:08','75b0ec54-8fb7-47bd-8549-0196b81df7cb',1,'/js/tinymce/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: js/tinymce/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:59:08',0),(64310,'2021-04-11 10:59:12','2021-04-11 10:59:12','06e9cae8-8abb-4043-b588-4e6df17a54cb',1,'/assets/js/tinymce/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: assets/js/tinymce/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:59:12',0),(64311,'2021-04-11 10:59:15','2021-04-11 10:59:15','41db4932-1323-46c1-ae4d-b36be413b44a',1,'/inc/js/tinymce/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: inc/js/tinymce/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:59:15',0),(64312,'2021-04-11 10:59:20','2021-04-11 10:59:20','87491533-59bf-4a9b-a0ec-d82a5c8e7f3f',1,'/includes/js/tinymce/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: includes/js/tinymce/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:59:20',0),(64313,'2021-04-11 10:59:23','2021-04-11 10:59:23','a281ac06-a5fd-4440-83cd-24b4e66cb031',1,'/libs/js/tinymce/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: libs/js/tinymce/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:59:23',0),(64314,'2021-04-11 10:59:26','2021-04-11 10:59:26','27b153e9-8ef7-47a1-9373-be9b2559749e',1,'/scripts/js/tinymce/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: scripts/js/tinymce/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:59:26',0),(64315,'2021-04-11 10:59:30','2021-04-11 10:59:30','bf7e7393-6b00-4976-a188-1b9b92583453',1,'/js/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: js/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:59:30',0),(64316,'2021-04-11 10:59:33','2021-04-11 10:59:33','29d054b4-02cd-4f8e-a6cb-b8511142f655',1,'/assets/js/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: assets/js/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:59:33',0),(64317,'2021-04-11 10:59:37','2021-04-11 10:59:37','38780b8b-b44c-4fcc-bb40-ad1ff7607c2d',1,'/inc/js/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: inc/js/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:59:37',0),(64318,'2021-04-11 10:59:41','2021-04-11 10:59:41','cd93d2e0-9de1-4748-bdce-341b8b0ac98d',1,'/includes/js/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: includes/js/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:59:41',0),(64319,'2021-04-11 10:59:44','2021-04-11 10:59:44','2d45060a-5fa7-44ad-a2f1-44daeefad8b4',1,'/libs/js/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: libs/js/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:59:44',0),(64320,'2021-04-11 10:59:47','2021-04-11 10:59:47','6508ff51-7ab5-46f7-86e3-22d4bd697b35',1,'/scripts/js/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: scripts/js/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:59:47',0),(64321,'2021-04-11 10:59:51','2021-04-11 10:59:51','5da68d74-6b61-4be0-935f-7389def02127',1,'/js/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: js/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:59:51',0),(64322,'2021-04-11 10:59:55','2021-04-11 10:59:55','1d9fafc3-0686-40fc-822b-3f6e1441854f',1,'/assets/js/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: assets/js/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:59:55',0),(64323,'2021-04-11 10:59:58','2021-04-11 10:59:58','ddc26ff2-38e3-4e59-a37e-8aedc9728194',1,'/inc/js/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: inc/js/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 10:59:58',0),(64324,'2021-04-11 11:00:02','2021-04-11 11:00:02','946696e3-cc14-403b-a5e9-acc905b42683',1,'/includes/js/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: includes/js/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 11:00:02',0),(64325,'2021-04-11 11:00:06','2021-04-11 11:00:06','13ead651-363b-48df-8c6a-56128b95fbb0',1,'/libs/js/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: libs/js/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 11:00:06',0),(64326,'2021-04-11 11:00:10','2021-04-11 11:00:10','18db0c56-6793-463e-a2ce-826e4c5eb693',1,'/scripts/js/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: scripts/js/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 11:00:10',0),(64327,'2021-04-11 11:00:12','2021-04-11 19:46:32','215f4ec0-5b61-4bd9-9b4d-497f72c8f53c',1,'/page/about/careers/administration-support/','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers/administration-support','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-11 19:46:32',0),(64328,'2021-04-11 11:00:13','2021-04-11 11:00:13','61e41e9f-6f9f-4381-a5c3-426269835b7c',1,'/vendor/js/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: vendor/js/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 11:00:13',0),(64329,'2021-04-11 11:00:17','2021-04-11 11:00:31','11ed31ad-fec6-4356-bac8-61bb775abe0a',1,'/vendor/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: vendor/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-11 11:00:31',0),(64330,'2021-04-11 11:00:21','2021-04-11 11:00:21','f5d1e47f-1b01-422b-9f1f-d9835b3b90b9',1,'/vendor/js/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: vendor/js/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 11:00:21',0),(64331,'2021-04-11 11:00:24','2021-04-11 11:00:24','5d3bc31b-e12a-49ca-9d87-9c395f9d12de',1,'/vendor/js/tinymce/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: vendor/js/tinymce/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 11:00:24',0),(64332,'2021-04-11 11:00:27','2021-04-11 11:00:27','0b87e038-d68d-4e74-8bd9-653b0cfcf2a3',1,'/vendor/js/tinymce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: vendor/js/tinymce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 11:00:27',0),(64333,'2021-04-11 11:00:35','2021-04-11 11:00:35','d766e270-fdc7-47b4-aa43-c29bb1746fc4',1,'/vendor/jscripts/tinymce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: vendor/jscripts/tinymce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 11:00:35',0),(64334,'2021-04-11 11:00:38','2021-04-11 11:00:38','baf02644-13db-4926-9cc6-76422c324ace',1,'/vendor/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: vendor/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 11:00:38',0),(64335,'2021-04-11 11:00:41','2021-04-11 11:00:41','c8fb9158-e1b2-4926-890e-cef3fa094c77',1,'/vendor/tinymce/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: vendor/tinymce/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 11:00:41',0),(64336,'2021-04-11 11:00:44','2021-04-11 11:00:44','72a01c13-99a8-4493-8fa8-cc7e3ec3b748',1,'/vendor/tinymce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: vendor/tinymce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 11:00:44',0),(64337,'2021-04-11 11:00:48','2021-04-11 11:00:48','ede7edf1-fd58-44c3-9df8-f51fc2680f94',1,'/application/js/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: application/js/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 11:00:48',0),(64338,'2021-04-11 11:00:51','2021-04-11 11:01:05','9dc064f5-9270-4280-a057-9e2b9a6f699f',1,'/application/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: application/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-11 11:01:05',0),(64339,'2021-04-11 11:00:54','2021-04-11 11:00:54','fea9ea5e-3040-4799-93a7-57c9ea687d60',1,'/application/js/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: application/js/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 11:00:54',0),(64340,'2021-04-11 11:00:58','2021-04-11 11:00:58','f790d797-1ea4-4e7b-a8b8-cba902a61427',1,'/application/js/tinymce/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: application/js/tinymce/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 11:00:58',0),(64341,'2021-04-11 11:01:01','2021-04-11 11:01:01','b57e90b9-e950-4f98-8754-96736630d25a',1,'/application/js/tinymce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: application/js/tinymce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 11:01:01',0),(64342,'2021-04-11 11:01:08','2021-04-11 11:01:08','08806155-ed8d-403a-8500-ec319ccbd9dd',1,'/application/jscripts/tinymce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: application/jscripts/tinymce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 11:01:08',0),(64343,'2021-04-11 11:01:11','2021-04-11 11:01:11','4c238f7e-12ac-459e-8720-2ce485254c94',1,'/application/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: application/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 11:01:11',0),(64344,'2021-04-11 11:01:14','2021-04-11 11:01:14','823947ce-b7dd-4ae6-b596-169c5ba3d17b',1,'/application/tinymce/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: application/tinymce/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 11:01:14',0),(64345,'2021-04-11 11:01:18','2021-04-11 11:01:18','b692ab5f-2b95-4b4e-af7d-fb38ae8358fc',1,'/application/tinymce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: application/tinymce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 11:01:18',0),(64346,'2021-04-11 11:01:21','2021-04-11 11:01:21','d5795ffd-63c8-4fb0-82a4-618ed591f207',1,'/common/js/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: common/js/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 11:01:21',0),(64347,'2021-04-11 11:01:24','2021-04-11 11:01:38','aad8fbe0-e002-42ad-8747-b9ae7bc15f3a',1,'/common/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: common/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-11 11:01:38',0),(64348,'2021-04-11 11:01:28','2021-04-11 11:01:28','cc37a7f2-e847-4f78-81f1-f733ce93d849',1,'/common/js/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: common/js/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 11:01:28',0),(64349,'2021-04-11 11:01:31','2021-04-11 11:01:31','42ac5d59-3bc5-4bdb-97be-5f50a2b9fff2',1,'/common/js/tinymce/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: common/js/tinymce/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 11:01:31',0),(64350,'2021-04-11 11:01:34','2021-04-11 11:01:34','7a7e54b1-fd28-4d6d-98b8-d57d4eec16f1',1,'/common/js/tinymce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: common/js/tinymce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 11:01:34',0),(64351,'2021-04-11 11:01:41','2021-04-11 11:01:41','860ecb24-11f5-4c14-a359-934295cc8830',1,'/common/jscripts/tinymce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: common/jscripts/tinymce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 11:01:41',0),(64352,'2021-04-11 11:01:44','2021-04-11 11:01:44','7fe874be-e72e-429c-babc-3208dcb994ac',1,'/common/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: common/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 11:01:44',0),(64353,'2021-04-11 11:01:48','2021-04-11 11:01:48','d70a237b-88b5-420f-95ed-4ec0e074a855',1,'/common/tinymce/jscripts/tiny_mce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: common/tinymce/jscripts/tiny_mce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 11:01:48',0),(64354,'2021-04-11 11:01:52','2021-04-11 11:01:52','b9968b11-27aa-42bf-bb93-8e9c08deb4d5',1,'/common/tinymce/tiny_mce.js','','2.57.122.47','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.63 Safari/537.31','Template not found: common/tinymce/tiny_mce.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 11:01:52',0),(64355,'2021-04-11 11:06:09','2021-05-15 12:06:04','371181ad-75c2-4688-86d5-286b06596b87',1,'/page/news-and-events/latest-news/collaborative-improving-care-for-older-people','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/collaborative-improving-care-for-older-people','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 12:06:04',0),(64356,'2021-04-11 11:08:34','2021-05-15 08:13:34','dc319bbd-c4c9-43ea-bcaf-8509f440fd9b',1,'/content/Document/Brisbane MIND Provider List November 2017(4).pdf','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Brisbane MIND Provider List November 2017(4).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 08:13:34',0),(64357,'2021-04-11 11:10:29','2021-04-13 00:33:47','d85a170b-8afb-4482-97e0-9f3988545879',1,'/page/health-professionals/Local Positions Vacant/peer-support-coordinator---queensland-positive-people/','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/peer-support-coordinator---queensland-positive-people','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-13 00:33:47',0),(64358,'2021-04-11 11:39:24','2021-04-11 11:39:24','96b06d32-0d12-4c8c-ad78-0c17b21c368d',1,'/content/Document/Templates/4.5/MNHHS Redcliffe Referral MD v4.5 160101.rtf','','13.66.139.38','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.5/MNHHS Redcliffe Referral MD v4.5 160101.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 11:39:24',0),(64359,'2021-04-11 11:42:53','2021-05-12 17:29:13','082e3abf-a585-4baf-a272-d8f8178c741c',1,'/content/Document/mn-vaccine-management-protocol June 2016.docx','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/mn-vaccine-management-protocol June 2016.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-12 17:29:13',0),(64360,'2021-04-11 11:49:47','2021-04-13 03:25:53','84457081-fc0c-4867-b042-df200aecd40f',1,'/content/Document/Brisbane MIND Provider List February 2019(5).pdf','','207.46.13.11','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List February 2019(5).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-13 03:25:53',0),(64361,'2021-04-11 11:51:06','2021-04-27 07:28:50','e607cba7-4df1-447d-8429-b1ef8be3f1c7',1,'/content/Document/Brisbane MIND Provider List March 2019(3).pdf','','66.249.68.31','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/Brisbane MIND Provider List March 2019(3).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-27 07:28:50',0),(64362,'2021-04-11 12:23:18','2021-05-07 08:59:22','7d6c1eed-f4d7-4b01-b8d5-58301d1bfe01',1,'/content/Document/MR_Events inspire new thinking in mental health_161011.pdf','http://www.brisbanenorthphn.org.au/content/Document/MR_Events%20inspire%20new%20thinking%20in%20mental%20health_161011.pdf','34.94.141.43','Go-http-client/1.1','Template not found: content/Document/MR_Events inspire new thinking in mental health_161011.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 08:59:22',0),(64363,'2021-04-11 12:25:00','2021-04-11 12:25:00','4718ffe7-7627-479b-9955-25a7af66d400',1,'/content/Document/Templates/4.6/MNHHS Palliative Referral BP v4_6.rtf','','13.66.139.37','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.6/MNHHS Palliative Referral BP v4_6.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 12:25:00',0),(64364,'2021-04-11 12:43:00','2021-05-18 09:48:16','e5bfa2b9-241d-4bde-b41b-6de6d03ca331',1,'/page/about/careers/coordinator-regional-assessment-service-ras','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/careers/coordinator-regional-assessment-service-ras','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-18 09:48:16',0),(64365,'2021-04-11 12:51:43','2021-04-27 14:05:39','59a4af85-8859-40df-94b3-1aa2e8df32b0',1,'/page/news-and-events/events/archive/indigenous-risk-impact-screen-iris-2-day-workshop/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/indigenous-risk-impact-screen-iris-2-day-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-27 14:05:39',0),(64366,'2021-04-11 12:55:39','2021-04-24 06:13:18','3a8a43c0-a0a2-4cf4-81cc-880376926d1a',1,'/tel:07 3410 1122','https://www.google.com/','34.82.94.158','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134','Template not found: tel:07 3410 1122','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 06:13:18',0),(64367,'2021-04-11 13:01:11','2021-05-13 20:51:06','3df00c03-3e78-4a62-b0b6-e9dafcf84c02',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---dayboro','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---dayboro','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-13 20:51:06',0),(64368,'2021-04-11 13:16:06','2021-04-11 13:16:06','be66248a-2b15-4709-bfde-f17e425034dc',1,'/jobs/general-practitioner-albany-creek','','207.46.13.106','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/general-practitioner-albany-creek','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 13:16:06',0),(64369,'2021-04-11 13:51:41','2021-05-18 07:51:24','c39a048f-2b1b-4021-9f7a-9a44e0b78db4',1,'/page/news-and-events/latest-news/surveys-reveal-high-praise-for-goas-project','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/surveys-reveal-high-praise-for-goas-project','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-18 07:51:24',0),(64370,'2021-04-11 14:23:18','2021-04-13 06:27:26','18ef26b1-4a28-49b0-98c9-c2bc9d9e989b',1,'/content/Document/pd_commissioning.pdf','','207.46.13.106','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/pd_commissioning.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-13 06:27:26',0),(64371,'2021-04-11 15:04:54','2021-04-11 15:04:54','51a6d9fe-9402-480b-8416-43c68e151fc6',1,'/mifs/.;/services/LogService','','91.241.19.175','Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)','Template not found: mifs/.;/services/LogService','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 15:04:54',0),(64372,'2021-04-11 15:11:15','2021-04-11 15:11:15','df58f9fe-af36-4282-b08a-e575bac5e9c4',1,'/page/news-and-events/events/upcoming/helping-grieving-children-and-adolescents/','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/helping-grieving-children-and-adolescents','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 15:11:15',0),(64373,'2021-04-11 15:16:37','2021-04-11 15:16:37','08dc7693-a27b-4e6f-925e-b3914ccb171f',1,'/de/model/alexxaferrer/','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: de/model/alexxaferrer','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 15:16:37',0),(64374,'2021-04-11 15:20:51','2021-05-17 14:08:49','5dfe83a6-f854-4cf3-9a95-e532bde9a2a1',1,'/content/Document/Brisbane MIND Provider List July 2018(4).pdf','','157.55.39.35','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List July 2018(4).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-17 14:08:49',0),(64375,'2021-04-11 15:24:11','2021-05-06 10:29:49','2ad8e8af-866e-414d-b227-d2b2b1c12541',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---teneriffe','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---teneriffe','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-06 10:29:49',0),(64376,'2021-04-11 15:32:48','2021-04-11 15:32:48','6f7155c0-3663-49da-98f8-02db36bd7315',1,'/content/Document/Templates/4.8/MNHHS TPCH Referral ZM v4_8.rtf','','13.66.139.38','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.8/MNHHS TPCH Referral ZM v4_8.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 15:32:48',0),(64377,'2021-04-11 15:34:32','2021-05-09 04:30:56','524a8515-af92-4efe-8d53-5e8cc49760a1',1,'/content/Document/To Share/INFO_SHEET_Welcome to Brisbane North PHN_2019 final.pdf','http://www.brisbanenorthphn.org.au/content/Document/To%20Share/INFO_SHEET_Welcome%20to%20Brisbane%20North%20PHN_2019%20final.pdf','35.185.207.84','Go-http-client/1.1','Template not found: content/Document/To Share/INFO_SHEET_Welcome to Brisbane North PHN_2019 final.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 04:30:56',0),(64378,'2021-04-11 15:41:38','2021-05-06 15:51:33','5dad38af-a2cb-40a6-8a6d-b9cc410a12d7',1,'/content/Document/Templates/4.3/MNHHS Palliative MD v4.3.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.3/MNHHS%20Palliative%20MD%20v4.3.rtf','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/Templates/4.3/MNHHS Palliative MD v4.3.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 15:51:33',0),(64379,'2021-04-11 15:43:25','2021-04-29 00:54:40','f30391c1-5116-4491-ba39-28ba123fa7f3',1,'/page/news-and-events/latest-news/measles-alert-for-brisbane-180528','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/measles-alert-for-brisbane-180528','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-29 00:54:40',0),(64380,'2021-04-11 15:58:08','2021-04-29 22:46:03','0ebcc802-36fa-4075-8622-dc256e4bb422',1,'/page/news-and-events/latest-news/the-viewer-helps-local-gps-access-hospital-data-for-their-patients','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/the-viewer-helps-local-gps-access-hospital-data-for-their-patients','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-29 22:46:03',0),(64381,'2021-04-11 16:09:18','2021-04-11 16:09:18','73d88cf8-494a-4f70-9a75-0fd8367ac369',1,'/jobs/general-practitioner-lawnton','','207.46.13.11','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/general-practitioner-lawnton','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 16:09:18',0),(64382,'2021-04-11 16:16:47','2021-04-25 00:29:14','331cf7a0-aee7-4de7-b69b-72a01d71443c',1,'/page/news-and-events/latest-news/metro-north-radar-service-now-available','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/metro-north-radar-service-now-available','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-25 00:29:14',0),(64383,'2021-04-11 16:24:23','2021-04-27 10:20:34','66f87126-7a67-4167-b38c-039e2f3b97bf',1,'/content/Document/Templates/4.8/MNHHS Paediatric Referral ZM v4_8.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.8/MNHHS%20Paediatric%20Referral%20ZM%20v4_8.rtf','104.197.140.66','Go-http-client/1.1','Template not found: content/Document/Templates/4.8/MNHHS Paediatric Referral ZM v4_8.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-27 10:20:34',0),(64384,'2021-04-11 16:26:50','2021-05-16 13:26:19','dd96407a-5503-44e1-bfa5-aa071102a036',1,'/content/Document/Palliative care website terms of inclusion_Jun2015.docx','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Palliative care website terms of inclusion_Jun2015.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 13:26:19',0),(64385,'2021-04-11 16:32:52','2021-05-09 15:25:36','cfa7b600-350c-4713-8e9f-9781e389ca50',1,'/content/Document/Templates/4.9/MNHHS Palliative BP v4_9.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.9/MNHHS%20Palliative%20BP%20v4_9.rtf','35.192.197.124','Go-http-client/1.1','Template not found: content/Document/Templates/4.9/MNHHS Palliative BP v4_9.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 15:25:36',0),(64386,'2021-04-11 16:37:44','2021-05-12 23:25:45','b1b6ea3f-9738-4a64-b932-290051e4b657',1,'/page/news-and-events/events/upcoming/understanding-and-responding-to-prolonged-grief-disorder','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/understanding-and-responding-to-prolonged-grief-disorder','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-12 23:25:45',0),(64387,'2021-04-11 16:55:10','2021-05-02 05:01:02','60a72c03-0b49-4cff-afbb-b9429e64547e',1,'/page/health-professionals/Local Positions Vacant/medical receptionist-bowen hills/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/medical receptionist-bowen hills','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-02 05:01:02',0),(64388,'2021-04-11 16:55:59','2021-04-11 16:55:59','b1990d06-98de-4a72-88f5-e8c9cbf038ae',1,'/content/Document/Position Descriptions/PD_MHAOD_PDO_Mental Health Reform team_170911.pdf','','40.77.167.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Position Descriptions/PD_MHAOD_PDO_Mental Health Reform team_170911.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 16:55:59',0),(64389,'2021-04-11 17:04:58','2021-05-06 07:02:45','7ebd57a2-3ace-420d-b9a0-d30bc90a50f6',1,'/content/Document/Pathways/Refugee Health first visit_updated.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/Refugee%20Health%20first%20visit_updated.pdf','35.185.207.84','Go-http-client/1.1','Template not found: content/Document/Pathways/Refugee Health first visit_updated.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-06 07:02:45',0),(64390,'2021-04-11 17:20:09','2021-05-08 12:27:42','0a2eda24-1107-46db-b211-bf2a4851a4d1',1,'/page/news-and-events/latest-news/support-for-dementia-action-week','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/support-for-dementia-action-week','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-08 12:27:42',0),(64391,'2021-04-11 17:36:06','2021-05-12 21:54:30','3b235018-b617-4c98-84fc-cce273f53d65',1,'/page/about/careers/program-support-officer-primary-care-liaison/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers/program-support-officer-primary-care-liaison','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 21:54:30',0),(64392,'2021-04-11 17:43:33','2021-05-17 00:44:45','fc367506-742b-4ad4-bd67-1f4236f56a92',1,'/content/Document/Pneumothorax node 54.pdf','','93.158.161.2','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','Template not found: content/Document/Pneumothorax node 54.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 00:44:45',0),(64393,'2021-04-11 18:39:34','2021-04-27 09:09:23','f285db95-06b6-4a58-8137-8a9471121b77',1,'/content/Document/Templates/4.7/MNHHS Maternity Ref MD v4_7.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.7/MNHHS%20Maternity%20Ref%20MD%20v4_7.rtf','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/Templates/4.7/MNHHS Maternity Ref MD v4_7.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-27 09:09:23',0),(64394,'2021-04-11 18:53:19','2021-05-11 03:43:59','2c81c7dd-0adc-4826-9831-258b4c363ccc',1,'/page/news-and-events/events/archive/assessment-and-management-of-lower-limb-pain/','','134.195.89.70','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/archive/assessment-and-management-of-lower-limb-pain','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 03:43:59',0),(64395,'2021-04-11 18:53:30','2021-05-11 03:44:18','521320fb-89b1-4981-b1b5-8c8da9b3f75f',1,'/page/news-and-events/events/archive/fundamentals-of-wound-management/','','134.195.89.70','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/archive/fundamentals-of-wound-management','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 03:44:18',0),(64396,'2021-04-11 18:53:33','2021-05-12 05:50:22','39f7b8d7-59a2-42ac-bdaf-2ea5de70161e',1,'/page/health-professionals/Local Positions Vacant/vr-general-practioner-required---everton-hills-medical-centre/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/vr-general-practioner-required---everton-hills-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-12 05:50:22',0),(64397,'2021-04-11 18:53:35','2021-05-11 03:44:27','039ba56a-8d76-47c5-997b-aefb40ddf674',1,'/page/news-and-events/events/archive/gp-education-evening-whats-new-in-mental-health-and-alcohol-and-other-drugs/','','134.195.89.70','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/archive/gp-education-evening-whats-new-in-mental-health-and-alcohol-and-other-drugs','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 03:44:27',0),(64398,'2021-04-11 18:53:40','2021-05-11 03:44:35','075fe649-d64a-4c54-acbc-4e5124708248',1,'/page/news-and-events/events/archive/gp-hepatology-and-oncology-workshop/','','134.195.89.70','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/archive/gp-hepatology-and-oncology-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 03:44:35',0),(64399,'2021-04-11 18:53:45','2021-05-11 03:44:46','470af59b-1333-4d17-a28c-cf21e634679f',1,'/page/news-and-events/events/archive/icif-copd-project---gp-active-learning-module---wednesday-evenings-2-of-3/','','134.195.89.70','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/archive/icif-copd-project---gp-active-learning-module---wednesday-evenings-2-of-3','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 03:44:46',0),(64400,'2021-04-11 18:53:51','2021-05-11 03:44:55','a3ef1d2a-35cd-4a49-9667-a1b17b42d115',1,'/page/news-and-events/events/archive/icif-copd-project-gp-alm-saturday/','','134.195.89.70','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/archive/icif-copd-project-gp-alm-saturday','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 03:44:55',0),(64401,'2021-04-11 18:53:56','2021-05-11 03:45:04','ad8872e3-01c1-4af1-9180-019c6badd57a',1,'/page/news-and-events/events/archive/immunisation-catch-up-for-practice-nurses---lutwyche/','','134.195.89.70','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/archive/immunisation-catch-up-for-practice-nurses---lutwyche','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 03:45:04',0),(64402,'2021-04-11 18:54:02','2021-05-11 03:45:12','fb9ad75d-8866-44d1-a25c-8471295602ee',1,'/page/news-and-events/events/archive/immunisation-catch-up-for-practice-nurses---north-lakes/','','134.195.89.70','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/archive/immunisation-catch-up-for-practice-nurses---north-lakes','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 03:45:12',0),(64403,'2021-04-11 18:54:07','2021-05-11 03:45:22','d0efd53d-7266-4e74-9184-4da9189c58c5',1,'/page/news-and-events/events/archive/management-of-lower-leg-ulceration/','','134.195.89.70','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/archive/management-of-lower-leg-ulceration','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 03:45:22',0),(64404,'2021-04-11 18:54:12','2021-05-11 03:45:32','c1a17ad0-ce9a-47c0-9cc9-513c87f93685',1,'/page/news-and-events/events/archive/targeting-anxiety-in-youth/','','134.195.89.70','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/archive/targeting-anxiety-in-youth','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 03:45:32',0),(64405,'2021-04-11 18:54:18','2021-05-11 03:45:42','035911fe-cb69-4f83-a6ed-69e2ecfcb1cf',1,'/page/news-and-events/events/archive/the-healthpathways-conference/','','134.195.89.70','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/archive/the-healthpathways-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 03:45:42',0),(64406,'2021-04-11 18:54:23','2021-05-11 03:45:50','ce60cbcb-b252-446f-8cd0-23cee4d136fc',1,'/page/news-and-events/events/upcoming/2018-primary-health-care-phc-research-conference/','','134.195.89.70','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/2018-primary-health-care-phc-research-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-11 03:45:50',0),(64407,'2021-04-11 18:54:56','2021-04-13 12:31:55','ce1c18d0-9679-4a09-a156-7a267f7875f0',1,'/content/Document/jobs_community-engagement.pdf','','207.46.13.5','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/jobs_community-engagement.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-13 12:31:55',0),(64408,'2021-04-11 19:36:20','2021-04-25 07:08:27','df6e93ca-d2b9-4e02-af1a-20be196246c7',1,'/page/home/style-guide/tab-listing','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/style-guide/tab-listing','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-25 07:08:27',0),(64409,'2021-04-11 19:39:06','2021-05-02 05:00:11','b65c3071-fed2-4e17-a23e-0af06940699a',1,'/page/news-and-events/events/upcoming/improving-end-of-life-care-for-frail-older-people/','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/improving-end-of-life-care-for-frail-older-people','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-02 05:00:11',0),(64410,'2021-04-11 19:52:52','2021-05-13 01:22:52','733dd04d-ffd1-47bc-b5df-402e50948763',1,'/content/Document/Conditions associated with positive ANA results.pdf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Conditions associated with positive ANA results.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-13 01:22:52',0),(64411,'2021-04-11 19:54:42','2021-05-13 00:03:15','c0943430-7f83-45ab-a1c2-6af673d8e2b5',1,'/content/Document/Templates/4.3/MNHHS Maternity outpatient v4.3.4W7','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.3/MNHHS Maternity outpatient v4.3.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-13 00:03:15',0),(64412,'2021-04-11 20:14:53','2021-04-21 21:35:44','cfb9bc0f-f13d-4c64-89dd-d46b5f12c222',1,'/page/health-professionals/Local Positions Vacant/registered-psychologist/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/registered-psychologist','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-21 21:35:44',0),(64413,'2021-04-11 20:28:34','2021-04-11 20:28:34','b930ded4-399b-4a7e-b982-45872584af4d',1,'/content/Document/Brisbane MIND Provider List March 2018.pdf','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List March 2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 20:28:34',0),(64414,'2021-04-11 21:14:21','2021-05-13 01:31:50','b225b377-5cd8-47cf-813c-3c1bf7310e38',1,'/content/Document/Events/Maternity Alignment Flyer.pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/Maternity Alignment Flyer.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 01:31:50',0),(64415,'2021-04-11 21:26:17','2021-04-28 09:04:42','c2d3ef5d-5a70-4171-96ca-9752e36adaff',1,'/page/health-professionals/immunisation/resources/useful-immunisation-links','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/immunisation/resources/useful-immunisation-links','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-28 09:04:42',0),(64416,'2021-04-11 21:30:22','2021-05-18 23:14:12','8286eb9c-52b3-4d4a-ad02-7740c92e13b2',1,'/.svn/entries','','35.163.2.156','Go-http-client/1.1','Template not found: .svn/entries','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 23:14:12',0),(64417,'2021-04-11 21:30:27','2021-04-11 21:30:27','4ff61525-a52c-4050-8d0c-afaecfa9b6d3',1,'/app/.svn/entries','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: app/.svn/entries','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:30:27',0),(64418,'2021-04-11 21:30:33','2021-04-11 21:30:33','56696652-b705-4b52-b441-f325445107af',1,'/.bzr/branch-format','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: .bzr/branch-format','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:30:33',0),(64419,'2021-04-11 21:30:38','2021-04-11 21:30:38','ddaa5c58-49f7-4ec5-8a9e-4382b71d7150',1,'/.bzr/repository/format','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: .bzr/repository/format','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:30:38',0),(64420,'2021-04-11 21:30:45','2021-04-11 21:30:45','fa566ebc-cd45-4485-a002-4fd65ff76500',1,'/app/.bzr/branch-format','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: app/.bzr/branch-format','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:30:45',0),(64421,'2021-04-11 21:30:48','2021-04-11 21:30:48','082b2579-3a94-4662-8f9d-4e6bdbe61a31',1,'/app/.bzr/repository/format','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: app/.bzr/repository/format','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:30:48',0),(64422,'2021-04-11 21:30:52','2021-05-16 00:42:48','a374aca2-af93-4590-aaf9-e04027f47c1a',1,'/admin/.env','','142.93.169.146','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: admin/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 00:42:48',0),(64423,'2021-04-11 21:30:58','2021-04-11 21:30:58','36f33b4d-0477-4fd6-8378-772115f06288',1,'/app/.env','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: app/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:30:58',0),(64424,'2021-04-11 21:31:04','2021-05-01 22:20:35','45b6dab1-a4b7-4ff7-a6bf-4f296b4825e7',1,'/application/.env','','18.209.171.0','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36','Template not found: application/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 22:20:35',0),(64425,'2021-04-11 21:31:08','2021-04-11 21:31:08','8644aa13-4c71-47d8-ae7e-5147ca7f6175',1,'/apps/.env','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: apps/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:31:08',0),(64426,'2021-04-11 21:31:13','2021-04-11 21:31:13','e23f5923-95e6-40c4-ac48-378ac2a6739f',1,'/auth/.env','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: auth/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:31:13',0),(64427,'2021-04-11 21:31:18','2021-04-11 21:31:18','cf882d2f-34fc-45a9-a4d5-8afeb11de085',1,'/back/.env','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: back/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:31:18',0),(64428,'2021-04-11 21:31:23','2021-04-11 21:31:23','042a4d12-e712-4298-91ab-47eb9d4ef3d3',1,'/backend/.env','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: backend/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:31:23',0),(64429,'2021-04-11 21:31:27','2021-04-11 21:31:27','0ed98d4c-239c-4e2d-a0d6-92f568465783',1,'/cli/.env','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: cli/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:31:27',0),(64430,'2021-04-11 21:31:33','2021-04-11 21:31:33','efdb89fb-f23a-4d84-ae61-a16c1719de59',1,'/config/.env','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: config/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:31:33',0),(64431,'2021-04-11 21:31:37','2021-04-11 21:31:37','626e8c0a-2706-401c-b669-428f563f142a',1,'/core/.env','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: core/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:31:37',0),(64432,'2021-04-11 21:31:47','2021-04-11 21:31:47','230cedec-d1ee-4b43-80c5-9f356e869c84',1,'/cp/.env','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: cp/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:31:47',0),(64433,'2021-04-11 21:31:53','2021-04-11 21:31:53','86175b5c-0299-40c4-90a3-bf6044acfd1e',1,'/dependencies/.env','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: dependencies/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:31:53',0),(64434,'2021-04-11 21:31:57','2021-04-11 21:31:57','1c572528-3dfb-4ea2-aca5-14251cc51e3f',1,'/deployment/.env','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: deployment/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:31:57',0),(64435,'2021-04-11 21:32:02','2021-05-01 22:20:36','5a0bb524-b983-422c-8b4d-792854c87fc0',1,'/dev/.env','','18.209.171.0','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36','Template not found: dev/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 22:20:36',0),(64436,'2021-04-11 21:32:08','2021-04-11 21:32:08','f67b878c-1590-41a0-b531-351a03c312ca',1,'/development/.env','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: development/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:32:08',0),(64437,'2021-04-11 21:32:12','2021-04-11 21:32:12','daab9b3b-9e66-46bd-bfbd-98a8c40204b0',1,'/docker/.env','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: docker/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:32:12',0),(64438,'2021-04-11 21:32:18','2021-04-11 21:32:18','568fea8a-2dbf-4cbe-91ab-eca5ffcc446d',1,'/document/.env','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: document/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:32:18',0),(64439,'2021-04-11 21:32:22','2021-04-11 21:32:22','a28841da-2660-4793-a2ca-329a470bccc8',1,'/engine/.env','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: engine/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:32:22',0),(64440,'2021-04-11 21:32:27','2021-04-11 21:32:27','41d40cdb-c132-4e3b-a601-be5349aad484',1,'/framework/.env','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: framework/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:32:27',0),(64441,'2021-04-11 21:32:33','2021-04-11 21:32:33','12818713-3a89-4185-8d90-51e44af7c6f7',1,'/frontend/.env','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: frontend/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:32:33',0),(64442,'2021-04-11 21:32:39','2021-04-11 21:32:39','4ebe4f52-6e32-4e2b-b0b5-63ed41959e6d',1,'/laravel-artisan/.env','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: laravel-artisan/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:32:39',0),(64443,'2021-04-11 21:32:49','2021-04-11 21:32:49','25a0115d-92db-4cb3-a2f1-1bb100ab4212',1,'/local/.env','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: local/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:32:49',0),(64444,'2021-04-11 21:32:54','2021-04-11 21:32:54','2e9dddfa-2124-4914-b949-b97fd35cc4b4',1,'/login/.env','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: login/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:32:54',0),(64445,'2021-04-11 21:32:56','2021-04-11 21:32:56','54a2e980-3ccf-44d8-b391-1c6dfaa9918d',1,'/master/.env','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: master/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:32:56',0),(64446,'2021-04-11 21:33:00','2021-04-11 21:33:00','4fb6bd59-cba8-4edc-a745-b9d93079bc19',1,'/personal/.env','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: personal/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:33:00',0),(64447,'2021-04-11 21:33:04','2021-04-11 21:33:04','f30b4dcf-d2a5-4969-9802-bf6ae1193d91',1,'/private/.env','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: private/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:33:04',0),(64448,'2021-04-11 21:33:08','2021-04-11 21:33:08','1c2e97bf-e12b-4cd3-bee9-223fa74cda2d',1,'/project/.env','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: project/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:33:08',0),(64449,'2021-04-11 21:33:12','2021-04-11 21:33:12','9d340396-52c6-49a9-a6ef-c18e137f42a8',1,'/protected/.env','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: protected/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:33:12',0),(64450,'2021-04-11 21:33:16','2021-04-11 21:33:16','9c3bd8c4-dc59-44bf-addd-f412704ae11d',1,'/rest/.env','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: rest/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:33:16',0),(64451,'2021-04-11 21:33:19','2021-04-11 21:33:19','080b9e5e-6be8-4d99-bd1c-ffe22c9858ec',1,'/server/.env','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: server/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:33:19',0),(64452,'2021-04-11 21:33:22','2021-04-11 21:33:22','c8fddd6b-fd1b-4001-8dbf-65e29ce3d26f',1,'/shared/.env','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: shared/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:33:22',0),(64453,'2021-04-11 21:33:25','2021-04-11 21:33:25','c2cff311-f764-4ac9-8c81-f744c68e8213',1,'/site/.env','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: site/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:33:25',0),(64454,'2021-04-11 21:33:30','2021-04-11 21:33:30','21f2e2cb-682b-4034-b909-431ffcd3465f',1,'/vod_installer/.env','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: vod_installer/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:33:30',0),(64455,'2021-04-11 21:33:33','2021-04-11 21:33:33','50f69cc2-a14e-4cea-a67a-0a3d2dd3a66f',1,'/vue/.env','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: vue/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:33:33',0),(64456,'2021-04-11 21:33:35','2021-04-11 21:33:35','6aa537fb-e054-4845-8981-192c73831c4f',1,'/web/.env','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: web/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:33:35',0),(64457,'2021-04-11 21:33:37','2021-04-11 21:33:37','87d7ea9c-8818-46c3-9a64-b11de8169cac',1,'/.env.production','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: .env.production','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:33:37',0),(64458,'2021-04-11 21:33:39','2021-04-11 21:33:39','0c69aa6c-77d5-4626-921d-7f3359a42699',1,'/.env.prod','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: .env.prod','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:33:39',0),(64459,'2021-04-11 21:33:47','2021-04-11 21:33:47','b9de1e90-efb2-4aa9-8cf6-2e098e77e255',1,'/app/.git/config','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: app/.git/config','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:33:47',0),(64460,'2021-04-11 21:33:49','2021-04-11 21:33:49','e81293fe-5894-4975-abfc-b3d5d5dae3e5',1,'/.hg/requires','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: .hg/requires','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:33:49',0),(64461,'2021-04-11 21:33:52','2021-04-11 21:33:52','ead694f3-79b3-456c-a9cc-69935c38ea02',1,'/app/.hg/requires','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)','Template not found: app/.hg/requires','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:33:52',0),(64462,'2021-04-11 21:40:18','2021-04-11 21:40:18','5f1e257a-f836-4742-85b8-f84247b97ad6',1,'/content/Document/Brisbane MIND Provider List February 2017(5).pdf','','66.249.65.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.122 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Brisbane MIND Provider List February 2017(5).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:40:18',0),(64463,'2021-04-11 21:44:24','2021-04-23 02:13:05','53a7ed36-7f6d-42d5-8ad7-748c815229ba',1,'/page/news-and-events/latest-news/patient-information-resource-now-available-for-those-accessing-the-ndis','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/patient-information-resource-now-available-for-those-accessing-the-ndis','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-23 02:13:05',0),(64464,'2021-04-11 21:46:15','2021-04-11 21:46:15','35f7ec59-7fb4-4469-b5e1-002a4416c71c',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-with-special-interest-gpwsi-in-chronic-kidney-disease---metro-north-hospital-health-service/','','207.46.13.5','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-with-special-interest-gpwsi-in-chronic-kidney-disease---metro-north-hospital-health-service','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:46:15',0),(64465,'2021-04-11 21:47:21','2021-04-11 21:47:21','9213f6fc-56ed-448a-8856-9f6df874bfd5',1,'/events/non-alcoholic-fatty-liver-disease-diagnosing-managing-and-cardiovascular-risks','','207.46.13.106','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/non-alcoholic-fatty-liver-disease-diagnosing-managing-and-cardiovascular-risks','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 21:47:21',0),(64466,'2021-04-11 21:51:15','2021-04-24 19:48:53','34d93436-42a1-446d-b859-364701327123',1,'/page/news-and-events/events/archive/mental-health-skills-training-primary-pathway-workshop/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/mental-health-skills-training-primary-pathway-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 19:48:53',0),(64467,'2021-04-11 22:20:05','2021-04-26 13:28:13','410bd85c-2412-4f37-bfeb-cc621d3340b0',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---narangba','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---narangba','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-26 13:28:13',0),(64468,'2021-04-11 22:22:27','2021-05-12 21:33:10','47dd3b07-0aeb-4ebc-b6a2-889c8aeab32d',1,'/page/health-professionals/Local Positions Vacant/gp-required---atsichs-brisbane/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/gp-required---atsichs-brisbane','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 21:33:10',0),(64469,'2021-04-11 22:29:46','2021-04-19 18:29:24','96bfa12e-0c41-47e5-b3d8-48e3bb08950c',1,'/content/Media/Genie V5.3/MNHHS TPCH Referral v5.3 Genie.4W7','','207.46.13.38','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Media/Genie V5.3/MNHHS TPCH Referral v5.3 Genie.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-19 18:29:24',0),(64470,'2021-04-11 22:37:06','2021-04-22 22:45:28','c214e875-53f5-4af6-9fe6-4cac6edd7814',1,'/page/news-and-events/events/upcoming/skills-for-psychological-recovery-training/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/skills-for-psychological-recovery-training','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-22 22:45:28',0),(64471,'2021-04-11 23:03:47','2021-04-11 23:03:47','ad1cec5a-214d-4f4e-8fc3-d84e4afa394f',1,'/content/Document/ProMBS flyer 2d.pdf','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/ProMBS flyer 2d.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 23:03:47',0),(64472,'2021-04-11 23:23:08','2021-05-16 19:04:25','0d64ff05-35ad-4143-8916-0d72644402e6',1,'/page/news-and-events/events/archive/advanced-life-support-brisbane','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/advanced-life-support-brisbane','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 19:04:25',0),(64473,'2021-04-11 23:27:26','2021-04-11 23:27:26','09aac2f1-4266-4b29-95da-7e2d88eb4244',1,'/page/news-and-events/events/archive/culturally-responsive-health-in-clinical-settings/','','207.46.13.11','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/culturally-responsive-health-in-clinical-settings','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-11 23:27:26',0),(64474,'2021-04-11 23:28:20','2021-05-13 05:31:56','50f5cc1e-8ee2-4d7d-8de2-38e10cc682bf',1,'/content/Document/Events/mngpap-maternity- program with link 170530.pdf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/mngpap-maternity- program with link 170530.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-13 05:31:56',0),(64475,'2021-04-12 00:25:19','2021-05-15 07:01:00','6fbb9382-87b2-4105-a6d2-5b49f1014a9b',1,'/page/health-professionals/Local Positions Vacant/registered-nurse-required---family-practice-at-kallangur/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/registered-nurse-required---family-practice-at-kallangur','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 07:01:00',0),(64476,'2021-04-12 00:34:25','2021-05-15 06:58:19','eab8a783-df97-4681-abd3-96a0492a3c8b',1,'/page/about/careers/clinical-trainer-medical-assisting/','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers/clinical-trainer-medical-assisting','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 06:58:19',0),(64477,'2021-04-12 00:57:51','2021-05-08 05:18:30','39819df5-2bf6-4a83-b963-a354079ddd19',1,'/page/news-and-events/events/upcoming/migrant-and-refugee-reproductive-and-sexual-health-culturally-responsive-clinical-practice','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/migrant-and-refugee-reproductive-and-sexual-health-culturally-responsive-clinical-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-08 05:18:30',0),(64478,'2021-04-12 01:02:34','2021-05-13 05:29:39','8da318a4-3dcb-46f2-87e9-6a6ec2bcefb6',1,'/jobs/general-practitioner-liaison-officer-mental-health','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/general-practitioner-liaison-officer-mental-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-13 05:29:39',0),(64479,'2021-04-12 01:17:32','2021-05-13 06:28:32','b2408fd4-56f3-46fb-aab8-a063ccba8401',1,'/events/urology-prostate-update-psa-and-benign-prostatic-hyperplasia','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/urology-prostate-update-psa-and-benign-prostatic-hyperplasia','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-13 06:28:32',0),(64480,'2021-04-12 01:34:53','2021-04-12 01:34:53','7927e14f-5136-4f6f-8b13-6840a161a5fc',1,'/page/news-and-events/events/upcoming/immunisation-for-at-risk-patients/','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/immunisation-for-at-risk-patients','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 01:34:53',0),(64481,'2021-04-12 01:43:26','2021-04-25 04:07:32','f23b5390-20b5-45a8-b623-f9c6919a339f',1,'/page/contact-us/get-in-touch-with-our-primary-care-liasion-officers','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/contact-us/get-in-touch-with-our-primary-care-liasion-officers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-25 04:07:32',0),(64482,'2021-04-12 01:43:52','2021-04-12 01:43:52','82efedba-284f-4436-860a-e91e544c6141',1,'/content/Document/Templates/4.12/dist/swiper.js','https://www.brisbanenorthphn.org.au/content/Document/Templates/4.12/MD%20v4.12/MNHHS%20RBWH%20Referral%20MD%20v4_12.rtf','165.86.81.72','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','Template not found: content/Document/Templates/4.12/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 01:43:52',0),(64483,'2021-04-12 01:45:34','2021-05-13 05:57:08','03553b8d-b8ae-483e-8c81-77224aeabae7',1,'/content/Document/Venue Map of Victoria Park - Carpark and Marquee.pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Venue Map of Victoria Park - Carpark and Marquee.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 05:57:08',0),(64484,'2021-04-12 02:03:52','2021-05-04 04:10:45','55d6afa7-2102-4da1-aade-79d44a64274c',1,'/content/Image/Events/review-of-health-needs-cropped.jpg','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Events/review-of-health-needs-cropped.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-04 04:10:45',0),(64485,'2021-04-12 02:57:14','2021-04-12 02:57:14','6acfa2d0-e57b-4b05-baa6-b90496fa8289',1,'/content/Document/locallink_8nov.pdf','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/locallink_8nov.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 02:57:14',0),(64486,'2021-04-12 03:03:13','2021-05-12 10:00:44','b5761f3a-80db-4f99-82dc-f32b9261c538',1,'/page/news-and-events/events/upcoming/9th-world-congress-of-melanoma/','','84.189.28.67','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/9th-world-congress-of-melanoma','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 10:00:44',0),(64487,'2021-04-12 03:06:17','2021-04-23 08:31:15','f89330ac-029d-4639-9b7b-e12f0b9884a7',1,'/page/health-professionals/Local Positions Vacant/gp-required-Moreton Bay Medical Centre/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/gp-required-Moreton Bay Medical Centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-23 08:31:15',0),(64488,'2021-04-12 03:12:49','2021-04-12 03:12:49','df93eb00-dcd9-46be-b0d3-e96161fa2519',1,'/content/Document/Leg_ALA measuring forms March 2004.pdf','','207.46.13.106','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Leg_ALA measuring forms March 2004.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 03:12:49',0),(64489,'2021-04-12 03:15:17','2021-04-12 03:15:17','214deec6-19d1-45f0-8447-7064013905c9',1,'/content/Document/Specialists List_Palliative Care_4_11.pdf','','207.46.13.106','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Specialists List_Palliative Care_4_11.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 03:15:17',0),(64490,'2021-04-12 04:07:23','2021-05-08 21:28:22','1d8ce09b-2548-402a-8d01-c36fa1f9b178',1,'/page/news-and-events/events/upcoming/working-therapeutically-with-complex-trauma-clients-level-2','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/working-therapeutically-with-complex-trauma-clients-level-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-08 21:28:22',0),(64491,'2021-04-12 04:12:22','2021-05-06 01:42:37','463ba658-ffd3-44b9-9809-c26cfcda755b',1,'/page/news-and-events/latest-news/clinical-leadership-underpins-alliance-activities','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/clinical-leadership-underpins-alliance-activities','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 01:42:37',0),(64492,'2021-04-12 04:21:21','2021-05-02 08:02:24','4ba9f64f-3a6b-48e4-931c-59e8439cade3',1,'/page/news-and-events/latest-news/rapid-flu-vax-response-at-racfs-amid-pandemic','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/rapid-flu-vax-response-at-racfs-amid-pandemic','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-02 08:02:24',0),(64493,'2021-04-12 04:26:21','2021-04-29 01:00:35','eb215686-fd7c-4617-93e8-b625a62c604d',1,'/events/non-alcoholic-fatty-liver-disease-diagnosing-managing-and-cardiovascular-risks-1-1','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/non-alcoholic-fatty-liver-disease-diagnosing-managing-and-cardiovascular-risks-1-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-29 01:00:35',0),(64494,'2021-04-12 05:24:11','2021-04-12 05:24:11','52785c91-f557-4cab-a6b9-c15e5c91b7c4',1,'/content/Media/MNHHS RBWH Referral v4.6_.4W7','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Media/MNHHS RBWH Referral v4.6_.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 05:24:11',0),(64495,'2021-04-12 05:40:42','2021-05-02 18:13:27','50cc6681-16e8-48cb-ba40-de9df4d38444',1,'/page/news-and-events/events/upcoming/palliative-approach-for-general-practitioners/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/palliative-approach-for-general-practitioners','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-02 18:13:27',0),(64496,'2021-04-12 05:50:40','2021-04-12 05:50:40','adda59bd-3463-4aed-922b-5c037487bfee',1,'/page/news-and-events/latest-news/the-pip-quality-improvement-incentive-has-started/dist/swiper.js','https://www.brisbanenorthphn.org.au/page/news-and-events/latest-news/the-pip-quality-improvement-incentive-has-started/humanservices.gov.au/hpos','103.87.254.78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36','Template not found: page/news-and-events/latest-news/the-pip-quality-improvement-incentive-has-started/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 05:50:40',0),(64497,'2021-04-12 05:58:55','2021-05-15 23:01:12','7f4b134c-3c12-4517-af53-8e983385c1ac',1,'/news/agm-elects-first-indigenous-board-director-1','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: news/agm-elects-first-indigenous-board-director-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,22,'2021-05-15 23:01:12',0),(64498,'2021-04-12 06:20:58','2021-05-13 10:13:00','178057fa-1601-461b-8424-f96f55691314',1,'/page/news-and-events/events/upcoming/occupational-health-symposium---breaking-barriers/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/occupational-health-symposium---breaking-barriers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-13 10:13:00',0),(64499,'2021-04-12 06:31:16','2021-04-13 23:06:19','d6d5c7bd-53f1-43b8-ad0d-f35b9a2fc0f3',1,'/content/Document/resource_antenataltests.pdf','','40.77.167.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/resource_antenataltests.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-13 23:06:19',0),(64500,'2021-04-12 06:35:04','2021-05-13 11:43:36','dfd32e62-d885-4326-84f8-70b9ae312b78',1,'/content/Media/Mental Health Carer NDIS Training.pdf','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Media/Mental Health Carer NDIS Training.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-13 11:43:36',0),(64501,'2021-04-12 06:43:46','2021-04-30 14:57:24','35f7f305-cc3b-4ea5-a3f1-d67c349432f3',1,'/content/Document/MNHHS RBWH Referral v5_2 MD.rtf','http://www.brisbanenorthphn.org.au/content/Document/MNHHS%20RBWH%20Referral%20v5_2%20MD.rtf','34.94.141.43','Go-http-client/1.1','Template not found: content/Document/MNHHS RBWH Referral v5_2 MD.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-30 14:57:24',0),(64502,'2021-04-12 08:10:24','2021-05-17 05:28:11','1d147716-14f4-4005-847e-db841277edb6',1,'/content/Document/Network Link/Network Link_February_2019_WEB.pdf','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Network Link/Network Link_February_2019_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-17 05:28:11',0),(64503,'2021-04-12 08:13:35','2021-04-24 21:18:25','4ed14f75-5dca-4b70-8eb7-48c1d3d2c51f',1,'/page/news-and-events/events/upcoming/unplanned-pregnancy-best-practice-counselling-training','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/unplanned-pregnancy-best-practice-counselling-training','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 21:18:25',0),(64504,'2021-04-12 08:18:27','2021-04-12 08:18:27','b408c91f-5e87-45f4-80dc-ed7383aa7efc',1,'/content/Document/Media Releases/262W4700_Start a conversation_ Find your reasons to stay.PDF','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Media Releases/262W4700_Start a conversation_ Find your reasons to stay.PDF','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 08:18:27',0),(64505,'2021-04-12 08:19:51','2021-04-13 18:51:58','a16e5771-4eac-47c3-82de-4c4a186a7374',1,'/page/news-and-events/events/upcoming/national-interoperability-consultation/','','207.46.13.74','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/national-interoperability-consultation','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-13 18:51:58',0),(64506,'2021-04-12 08:23:34','2021-04-25 01:46:10','4928b4a7-86bd-429b-9f24-299c35e09152',1,'/page/news-and-events/events/upcoming/certificate-1-day-skin-cancer-workshop/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/certificate-1-day-skin-cancer-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-25 01:46:10',0),(64507,'2021-04-12 08:49:41','2021-05-04 23:06:09','eca3d485-3fc6-404d-a619-45b332013e92',1,'/page/news-and-events/latest-news/board-chair-backs-minister-on-flu-vax','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/board-chair-backs-minister-on-flu-vax','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-04 23:06:09',0),(64508,'2021-04-12 09:33:01','2021-05-13 12:49:12','6f51c8b6-f2ea-4a91-bea7-0b7cdaf3c787',1,'/content/Document/FORM 1 - Approved Clinician Referral for Additional Sessions.docx','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/FORM 1 - Approved Clinician Referral for Additional Sessions.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-13 12:49:12',0),(64509,'2021-04-12 10:05:57','2021-05-02 10:37:14','f86b03d0-fb87-4c11-be74-e79ac4463436',1,'/admin/view/javascript/common.js','','20.64.86.156','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0','Template not found: admin/view/javascript/common.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-02 10:37:14',0),(64510,'2021-04-12 10:05:59','2021-05-02 10:37:15','8047d80a-8865-409d-b509-3ad4c3d57df0',1,'/admin/includes/general.js','','20.64.86.156','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0','Template not found: admin/includes/general.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-02 10:37:15',0),(64511,'2021-04-12 10:06:14','2021-05-02 10:37:27','ac6e3122-6700-496a-ae82-756983224fd0',1,'/wp-admin/setup-config.php','','20.64.86.156','python-requests/2.25.1','Template not found: wp-admin/setup-config.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-02 10:37:27',0),(64512,'2021-04-12 10:06:17','2021-05-02 10:37:29','63796152-48ab-4bf5-bb57-3f5e5be91945',1,'/wordpress/wp-admin/setup-config.php','','20.64.86.156','python-requests/2.25.1','Template not found: wordpress/wp-admin/setup-config.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-02 10:37:29',0),(64513,'2021-04-12 10:06:20','2021-05-02 10:37:30','6b66c3d3-69e3-4c97-887c-4261dadca848',1,'/wp/wp-admin/setup-config.php','','20.64.86.156','python-requests/2.25.1','Template not found: wp/wp-admin/setup-config.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-02 10:37:30',0),(64514,'2021-04-12 10:06:23','2021-05-02 10:37:32','17b20d22-d827-489a-a79f-91219bc4edca',1,'/blog/wp-admin/setup-config.php','','20.64.86.156','python-requests/2.25.1','Template not found: blog/wp-admin/setup-config.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-02 10:37:32',0),(64515,'2021-04-12 10:06:26','2021-05-02 10:37:34','a402ba2a-1108-4fe7-ac0e-986c5a3619a6',1,'/test/wp-admin/setup-config.php','','20.64.86.156','python-requests/2.25.1','Template not found: test/wp-admin/setup-config.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-02 10:37:34',0),(64516,'2021-04-12 10:06:29','2021-05-02 10:37:35','0a619086-ae4f-451b-9240-01e106d7613f',1,'/site/wp-admin/setup-config.php','','20.64.86.156','python-requests/2.25.1','Template not found: site/wp-admin/setup-config.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-02 10:37:35',0),(64517,'2021-04-12 10:25:37','2021-05-01 02:55:34','2e676bdc-549f-4304-87e6-5b1eb9269398',1,'/wp-config.php','http://brisbanenorthphn.org.au/wp-config.php','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 02:55:34',0),(64518,'2021-04-12 10:25:38','2021-05-01 02:55:39','0756b103-a037-4bb5-97c1-027cfa16c8b1',1,'/wp-config-backup.txt','http://brisbanenorthphn.org.au/wp-config-backup.txt','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config-backup.txt','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 02:55:39',0),(64519,'2021-04-12 10:25:40','2021-05-01 02:55:38','aa9dda14-7098-475c-b9d8-84615f82155a',1,'/wp—admin/admin—ajax.php','http://brisbanenorthphn.org.au/wp%E2%80%94admin/admin%E2%80%94ajax.php','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Page not found.','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/web/Application.php',581,2,'2021-05-01 02:55:38',0),(64520,'2021-04-12 10:25:40','2021-05-01 02:55:40','f023fe9b-d5d6-41f6-bb34-653c953bfdc7',1,'/wp-config-sample.php','http://brisbanenorthphn.org.au/wp-config-sample.php','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config-sample.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 02:55:40',0),(64521,'2021-04-12 10:25:42','2021-05-01 02:55:36','87efe57d-e804-4b35-83c9-692550424006',1,'/wp-content/plugins/adaptive-images/adaptive-images-script.php','http://brisbanenorthphn.org.au/wp-content/plugins/adaptive-images/adaptive-images-script.php','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-content/plugins/adaptive-images/adaptive-images-script.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 02:55:36',0),(64522,'2021-04-12 10:25:45','2021-05-01 02:55:40','56d01100-110c-4222-850b-fec87e0babc4',1,'/_wpeprivate/config.json','http://brisbanenorthphn.org.au/_wpeprivate/config.json','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Page not found.','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/web/Request.php',1314,2,'2021-05-01 02:55:40',0),(64523,'2021-04-12 10:25:45','2021-05-01 02:55:37','8b3a322d-79e8-43f8-9b85-6d73c1a10a18',1,'/wp-config.php.txt','http://brisbanenorthphn.org.au/wp-config.php.txt','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-config.php.txt','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 02:55:37',0),(64524,'2021-04-12 10:25:45','2021-05-01 02:55:36','3a3ffa80-134f-4a6a-96dd-66dbf5c3db8a',1,'/wp-license.php','http://brisbanenorthphn.org.au/wp-license.php','185.220.101.208','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-license.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 02:55:36',0),(64525,'2021-04-12 10:27:23','2021-04-12 10:27:23','83a6bda1-7336-419c-9a8e-92baa2f365f5',1,'/page/pathways/obesity-in-adults/','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/pathways/obesity-in-adults','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 10:27:23',0),(64526,'2021-04-12 10:31:47','2021-04-30 02:43:21','f7c743fe-8bac-4efd-bf40-5d84a1231ae1',1,'/content/Document/Pathways/salt intake_2013v2.pdf','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/salt intake_2013v2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-30 02:43:21',0),(64527,'2021-04-12 10:35:54','2021-04-12 10:35:54','b7c12ccf-9500-432b-8c8b-1a486be9fe11',1,'/content/Document/Primary care liaison/FIN_A GP\'s Guide to Brisbane North PHN_2020-21 WEB.pdf','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Primary care liaison/FIN_A GP\'s Guide to Brisbane North PHN_2020-21 WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 10:35:54',0),(64528,'2021-04-12 10:42:23','2021-04-12 12:56:35','52b955d5-fc8e-4ce9-b0b1-e1c7e624042f',1,'/content/Document/Brisbane MIND Provider List June 2017(5).pdf','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List June 2017(5).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-12 12:56:35',0),(64529,'2021-04-12 10:51:20','2021-05-16 01:55:56','419c9bad-8d00-42f5-a160-442511119c34',1,'/content/Document/Pathways/Whos_afraid_of_clinical_audit_EOI_2015.pdf','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/Whos_afraid_of_clinical_audit_EOI_2015.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 01:55:56',0),(64530,'2021-04-12 10:51:44','2021-05-17 01:19:30','2db69937-c0b3-496a-aa1d-5a5839580417',1,'/page/news-and-events/2017-news/brisbane-river-contamination-event/','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/2017-news/brisbane-river-contamination-event','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-17 01:19:30',0),(64531,'2021-04-12 10:53:25','2021-05-19 02:21:17','9a6430e8-cc71-4fe5-a418-13996750a430',1,'/page/about/','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,40,'2021-05-19 02:21:17',0),(64532,'2021-04-12 11:02:08','2021-05-13 14:44:20','d8fe3b19-605d-4a00-80ee-79a9c7652ec4',1,'/content/Document/Templates/Brisbane MIND/MIND 4KiDS V3 BP.rtf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/Brisbane MIND/MIND 4KiDS V3 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-13 14:44:20',0),(64533,'2021-04-12 11:03:48','2021-05-16 02:39:03','47de07f7-ac89-4224-ab7e-faaac9173bfd',1,'/page/news-and-events/events/upcoming/common-challenges-in-primary-care-education-series-–-community-health-–-a-gp’s-guide/','','144.76.29.148','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/common-challenges-in-primary-care-education-series-–-community-health-–-a-gp’s-guide','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,14,'2021-05-16 02:39:03',0),(64534,'2021-04-12 11:03:53','2021-05-16 02:39:12','35231516-9e23-44d3-8f09-aefb28ae1b9a',1,'/page/news-and-events/latest-news/gp-respiratory-clinic-rolled-out-to-help-the-region’s-covid-19-effort/','','144.76.29.148','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/gp-respiratory-clinic-rolled-out-to-help-the-region’s-covid-19-effort','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,16,'2021-05-16 02:39:12',0),(64535,'2021-04-12 11:10:29','2021-05-13 07:05:08','51150834-0997-4711-aeae-3284a786d131',1,'/page/health-professionals/digital-health/telehealth','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/digital-health/telehealth','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 07:05:08',0),(64536,'2021-04-12 11:14:38','2021-05-13 14:28:27','18c6e274-ab7e-4579-81af-6204d5d471f9',1,'/content/Document/Templates/V5.1 Jan 2018/MD/MNHHS Maternity v5_1 MD.rtf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/V5.1 Jan 2018/MD/MNHHS Maternity v5_1 MD.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-13 14:28:27',0),(64537,'2021-04-12 11:20:42','2021-05-19 01:11:14','78103090-0e95-45b8-80e4-9333a857fee9',1,'/content/Document/Recovery/National MH-IAR Guidance.pdf','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Recovery/National MH-IAR Guidance.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-19 01:11:14',0),(64538,'2021-04-12 11:28:21','2021-05-03 00:44:38','90a0ea2a-c1ae-42b0-a0af-0b119edc7560',1,'/content/Document/Pathways/Australian cardiovascular risk management_page 5.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/Australian%20cardiovascular%20risk%20management_page%205.pdf','35.186.188.225','Go-http-client/1.1','Template not found: content/Document/Pathways/Australian cardiovascular risk management_page 5.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-03 00:44:38',0),(64539,'2021-04-12 11:49:29','2021-04-20 04:00:41','81b10199-42dc-4342-a7b5-78cd39c0ebb6',1,'/page/news-and-events/latest-news/expression-of-interest---mental-health-alcohol-and-other-drugs-clinical-governance-reference-group','http://brisbanenorthphn.org.au/page/news-and-events/latest-news/expression-of-interest---mental-health-alcohol-and-other-drugs-clinical-governance-reference-group','35.210.222.190','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/latest-news/expression-of-interest---mental-health-alcohol-and-other-drugs-clinical-governance-reference-group','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-20 04:00:41',0),(64540,'2021-04-12 11:54:32','2021-04-30 15:18:02','fc103979-b46e-4d84-9c2b-6dff6f334639',1,'/page/news-and-events/latest-news/focusing-on-the-start-of-life-for-children-in-caboolture','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/focusing-on-the-start-of-life-for-children-in-caboolture','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-04-30 15:18:02',0),(64541,'2021-04-12 11:56:58','2021-04-12 11:56:58','989c8a6b-5b19-411c-8fd3-04496aa18ef8',1,'/page/news-and-events/events/upcoming/putting-together-the-puzzle---stigma-discrimination-and-injecting-drug-use/','','66.249.65.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.122 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/putting-together-the-puzzle---stigma-discrimination-and-injecting-drug-use','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 11:56:58',0),(64542,'2021-04-12 11:59:52','2021-04-12 11:59:52','14da22b5-8a7d-4fec-95cb-df7f589afff1',1,'/page/health-professionals/MHAOD/funded-mental-health-services','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/MHAOD/funded-mental-health-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 11:59:52',0),(64543,'2021-04-12 12:03:17','2021-05-18 20:32:31','0a99733f-cc7c-46dd-b922-c13222ead7ce',1,'/content/Document/LINK H_University Physiotherapy and Exercise Physiology Clinics(1).pdf','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/LINK H_University Physiotherapy and Exercise Physiology Clinics(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,20,'2021-05-18 20:32:31',0),(64544,'2021-04-12 12:16:12','2021-04-28 22:56:52','7752c339-09e8-405a-a9a8-427036981c9b',1,'/page/news-and-events/latest-news/medical-assisting-goes-from-strength-to-strength/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/medical-assisting-goes-from-strength-to-strength','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-28 22:56:52',0),(64545,'2021-04-12 12:21:24','2021-05-10 21:57:37','fc16d288-241e-423c-8bdb-36d3d9710d5e',1,'/jobs/close-to-the-city-gym-on-site-vr-doctor-gp-general-practitioner-indooroopilly-qld-permanent-job','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/close-to-the-city-gym-on-site-vr-doctor-gp-general-practitioner-indooroopilly-qld-permanent-job','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-10 21:57:37',0),(64546,'2021-04-12 12:43:50','2021-05-13 02:41:52','eac49aa5-bfd1-42b4-a576-2ec612f9e411',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---aspley','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---aspley','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-13 02:41:52',0),(64547,'2021-04-12 12:54:26','2021-05-07 12:09:27','f4b37027-84ef-4f4d-ad03-65453c562df1',1,'/page/health-professionals/Local Positions Vacant/casual-registered-nurse-required---dr-khan-surgery/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/casual-registered-nurse-required---dr-khan-surgery','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-07 12:09:27',0),(64548,'2021-04-12 12:54:45','2021-05-17 18:50:13','5c4b1683-6899-4fb5-a6ed-2a3308dfc330',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---windsor','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---windsor','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,15,'2021-05-17 18:50:13',0),(64549,'2021-04-12 12:56:27','2021-05-02 20:35:08','208c39ac-2338-4b24-8acc-97bccf15d051',1,'/page/news-and-events/events/upcoming/herston-healthcare-symposium---gp-forum/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/herston-healthcare-symposium---gp-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-02 20:35:08',0),(64550,'2021-04-12 12:57:18','2021-04-17 12:45:34','2c86b786-c480-4b40-9e15-b579a43e28db',1,'/content/Document/Planning/Brisbane North PHN health priorities 2018-19_FINAL.pdf','http://www.brisbanenorthphn.org.au/content/Document/Planning/Brisbane%20North%20PHN%20health%20priorities%202018-19_FINAL.pdf','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/Planning/Brisbane North PHN health priorities 2018-19_FINAL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-17 12:45:34',0),(64551,'2021-04-12 12:59:47','2021-05-17 18:26:10','0a0c4525-d075-4c90-ba6e-29a78bb92bcb',1,'/content/Document/From Qld Health/20171114 CHQ BNPHN Engagement Protocol 2017 v0_7 with website.pdf','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/From Qld Health/20171114 CHQ BNPHN Engagement Protocol 2017 v0_7 with website.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 18:26:10',0),(64552,'2021-04-12 13:08:57','2021-05-12 20:36:49','dfe6a157-077b-496a-b578-8365183719b1',1,'/jobs/general-practitioner-5','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/general-practitioner-5','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 20:36:49',0),(64553,'2021-04-12 13:12:13','2021-05-18 01:16:37','78654ffd-2e3b-4203-aacb-2deb3e213bcc',1,'/tel:0734903425','https://www.google.com/','34.82.202.137','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36','Template not found: tel:0734903425','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,44,'2021-05-18 01:16:37',0),(64554,'2021-04-12 13:15:51','2021-05-11 16:58:05','a9277f83-7a47-4740-8233-9bdef15bbf59',1,'/events/common-challenges-in-primary-care-it-always-happens-when-no-ones-around-mental-health-aod-crisis-management','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/common-challenges-in-primary-care-it-always-happens-when-no-ones-around-mental-health-aod-crisis-management','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-11 16:58:05',0),(64555,'2021-04-12 13:19:31','2021-05-17 19:59:20','6ec22c5f-39b2-4bfc-a592-a44495e8a569',1,'/events/our-practice-is-eligible-to-deliver-the-covid-19-vaccine-in-phase-1b-what-now','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/our-practice-is-eligible-to-deliver-the-covid-19-vaccine-in-phase-1b-what-now','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-17 19:59:20',0),(64556,'2021-04-12 13:25:45','2021-05-10 17:18:30','6e590f3a-8bfe-48c1-8d2e-640a97d39863',1,'/page/news-and-events/latest-news/alliance-to-co-design-new-model-of-care-for-older-people/','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/alliance-to-co-design-new-model-of-care-for-older-people','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-10 17:18:30',0),(64557,'2021-04-12 13:31:53','2021-05-17 10:59:02','cb6955cc-eeca-4fcf-b657-aa42f21d35ab',1,'/page/news-and-events/latest-news/aged-care-leadership-celebrated','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/aged-care-leadership-celebrated','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-17 10:59:02',0),(64558,'2021-04-12 13:42:03','2021-05-12 11:15:47','099f847b-224d-4aad-899e-5fcc132dab53',1,'/page/health-professionals/team-care-coordination/staying-healthy-staying-home/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/team-care-coordination/staying-healthy-staying-home','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-12 11:15:47',0),(64559,'2021-04-12 13:42:56','2021-05-18 10:44:40','faf2faac-bac6-45af-a1f0-ff52ebf944c2',1,'/jobs/receptionist-supervisor-senior-receptionist','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/receptionist-supervisor-senior-receptionist','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,19,'2021-05-18 10:44:40',0),(64560,'2021-04-12 13:46:30','2021-05-16 16:39:33','daa22e75-48a0-4fa2-99e9-1c79e64275f0',1,'/jobs/vr-gp-required-hamilton','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/vr-gp-required-hamilton','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-16 16:39:33',0),(64561,'2021-04-12 13:47:34','2021-05-15 15:47:56','83ab3313-73c6-4efc-ac24-f6f62e2c59b7',1,'/content/Document/Pathways/LINK C_Screening tools for gait and balance.pdf','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/LINK C_Screening tools for gait and balance.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-15 15:47:56',0),(64562,'2021-04-12 13:49:52','2021-05-15 20:30:28','1523b3bf-f5ab-4ddf-874d-0be410fdf037',1,'/page/health-reform/mental-health-services-and-alcohol-and-other-drug-treatment-services/stepped-care-delivery-framework/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-reform/mental-health-services-and-alcohol-and-other-drug-treatment-services/stepped-care-delivery-framework','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 20:30:28',0),(64563,'2021-04-12 13:57:53','2021-05-13 17:23:56','b103002e-2682-43f7-a340-2bedaeda2b32',1,'/page/news-and-events/latest-news/covid-19-information/information-for-our-community/supporting-vulnerable-communities/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/covid-19-information/information-for-our-community/supporting-vulnerable-communities','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-13 17:23:56',0),(64564,'2021-04-12 13:57:53','2021-05-14 04:34:07','0287bcc1-63d1-4078-b6ae-678227c24639',1,'/content/Document/Templates/V5.1 Jan 2018/Specialist lists/Specialists List_Redcliffe Hospital_5_1.pdf','','66.249.69.39','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Templates/V5.1 Jan 2018/Specialist lists/Specialists List_Redcliffe Hospital_5_1.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-14 04:34:07',0),(64565,'2021-04-12 14:02:25','2021-05-13 10:43:07','b0bf1bd5-599d-4eb0-b903-d40e6ebc0570',1,'/page/news-and-events/latest-news/smart-referrals-coming-soon-to-queensland','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/smart-referrals-coming-soon-to-queensland','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-13 10:43:07',0),(64566,'2021-04-12 14:07:16','2021-04-14 23:18:16','4131df5d-a5a9-489c-a17d-35185ac2ca53',1,'/page/health-professionals/Local Positions Vacant/vr-general-practitioner-required---hamilton-medical-centre/','','207.46.13.106','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/vr-general-practitioner-required---hamilton-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-14 23:18:16',0),(64567,'2021-04-12 14:07:57','2021-05-13 12:14:32','32f1d303-982f-427c-911b-abcbb4a4919b',1,'/page/health-professionals/my-health-for-life/','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/my-health-for-life','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,16,'2021-05-13 12:14:32',0),(64568,'2021-04-12 14:15:29','2021-05-16 21:56:37','3f9eb67b-60c6-44bc-907d-793c330de46c',1,'/page/news-and-events/latest-news/dementia-diagnosis-on-the-gp-show-podcast/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/dementia-diagnosis-on-the-gp-show-podcast','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-16 21:56:37',0),(64569,'2021-04-12 14:17:57','2021-05-11 22:55:39','3aeebc11-efec-48fb-8725-383a84b065ba',1,'/page/news-and-events/events/upcoming/queensland-trauma-symposium/','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/queensland-trauma-symposium','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 22:55:39',0),(64570,'2021-04-12 14:19:47','2021-05-11 14:41:30','f0bc2bdf-9b54-4302-9b99-ec33c20f5bd3',1,'/page/health-professionals/chronic-disease-management','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/chronic-disease-management','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-11 14:41:30',0),(64571,'2021-04-12 14:25:02','2021-05-14 01:44:50','99f71573-8249-414a-b8af-9a3a39ca19c4',1,'/events/gp-alignment-program-maternity-workshop','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/gp-alignment-program-maternity-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-14 01:44:50',0),(64572,'2021-04-12 14:25:26','2021-05-17 23:38:28','f5a38b70-6502-48fb-a177-954b89924802',1,'/page/health-professionals/chronic-disease-management/care-plans-and-templates/','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/chronic-disease-management/care-plans-and-templates','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,20,'2021-05-17 23:38:28',0),(64573,'2021-04-12 14:25:58','2021-05-10 23:12:07','2900aced-79b5-416f-873c-d348dfc74078',1,'/content/Image/banner_page_localpositionsvacant.jpg','','108.174.5.113','LinkedInBot/1.0 (compatible; Mozilla/5.0; Apache-HttpClient +http://www.linkedin.com)','Template not found: content/Image/banner_page_localpositionsvacant.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-10 23:12:07',0),(64574,'2021-04-12 14:29:31','2021-05-13 16:44:54','3e897286-f11f-47f5-8fb0-65c641c0d2ee',1,'/content/Document/Brisbane North PHN Needs Assessment Submission to DOH_November 2016(1).pdf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane North PHN Needs Assessment Submission to DOH_November 2016(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 16:44:54',0),(64575,'2021-04-12 14:30:11','2021-04-20 00:56:56','3d398d0b-24cb-4513-a836-4a4d23964286',1,'/content/Document/FORM 3 - AHP Referral to Group Therapy Program.docx','http://www.brisbanenorthphn.org.au/content/Document/FORM%203%20-%20AHP%20Referral%20to%20Group%20Therapy%20Program.docx','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/FORM 3 - AHP Referral to Group Therapy Program.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-20 00:56:56',0),(64576,'2021-04-12 14:30:55','2021-04-23 00:12:11','ebc61eaf-3c62-48b5-9026-3a69288fe965',1,'/page/news-and-events/events/upcoming/phu-immunisation-catch-up-lutwyche/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/news-and-events/events/upcoming/phu-immunisation-catch-up-lutwyche','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-23 00:12:11',0),(64577,'2021-04-12 14:40:02','2021-05-08 01:58:41','053acc5a-3567-4355-b389-d3b5a8f177a8',1,'/jobs/australian-doctors-clinic-kallangur-female-gp','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/australian-doctors-clinic-kallangur-female-gp','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-08 01:58:41',0),(64578,'2021-04-12 14:46:09','2021-04-14 02:00:45','92e2ca09-453d-469f-a415-960d723dd6f7',1,'/page/news-and-events/events/upcoming/brisbane-into-private-practice-event/','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/brisbane-into-private-practice-event','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-14 02:00:45',0),(64579,'2021-04-12 14:49:51','2021-05-17 20:55:55','31b17b5a-3cf0-40a1-8f4f-086f38e0606a',1,'/page/news-and-events/events/upcoming/immunisation-catch-up-event-for-practice-nurses---north-lakes','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/immunisation-catch-up-event-for-practice-nurses---north-lakes','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 20:55:55',0),(64580,'2021-04-12 14:53:08','2021-04-28 16:05:15','c9af9988-1f3f-40c0-bb3a-33e1682d6392',1,'/page/news-and-events/events/upcoming/hepatitis-c-case-finding-to-practice-nurses/','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/hepatitis-c-case-finding-to-practice-nurses','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-28 16:05:15',0),(64581,'2021-04-12 14:57:29','2021-05-13 13:41:34','0a7d8cb0-4626-4c61-937d-45ca71de9bb2',1,'/jobs/gp-murrumba-downs-70-of-billings-incentives','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/gp-murrumba-downs-70-of-billings-incentives','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-13 13:41:34',0),(64582,'2021-04-12 14:58:54','2021-05-15 14:52:49','d63a0150-ad8c-4333-90d1-9002a2237d4e',1,'/yearinreview/2017-18','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-15 14:52:49',0),(64583,'2021-04-12 15:04:48','2021-05-18 07:28:20','0d33c43d-08b0-45db-951a-3e5c66dc0f44',1,'/page/news-and-events/latest-news/enhancing-the-care-of-patients-with-haematological-conditions/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/enhancing-the-care-of-patients-with-haematological-conditions','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-18 07:28:20',0),(64584,'2021-04-12 15:05:26','2021-05-17 06:35:26','94c22fb2-fea8-46eb-b46c-13e9f8999f31',1,'/page/news-and-events/latest-news/covid-19-information/covid-19-resources-for-health-professionals/','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/covid-19-information/covid-19-resources-for-health-professionals','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,15,'2021-05-17 06:35:26',0),(64585,'2021-04-12 15:09:45','2021-05-19 00:12:00','58088a84-8b27-4311-be13-ffed00d13133',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---bongaree/','','17.121.115.167','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---bongaree','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-19 00:12:00',0),(64586,'2021-04-12 15:20:09','2021-05-11 19:27:41','1b4f9113-b64b-4ef3-96a1-805444d09971',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-brighton-coh','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-brighton-coh','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-11 19:27:41',0),(64587,'2021-04-12 15:20:59','2021-05-10 23:05:08','def0d17e-892d-469e-9253-cef0339b35a0',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---beachmere/','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---beachmere','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-10 23:05:08',0),(64588,'2021-04-12 15:21:33','2021-04-12 15:21:33','96239830-08e2-4c26-8258-86018a82c07a',1,'/events/metformin-then-what-how-to-navigate-the-maze-of-type-2-diabetes-medications','','207.46.13.43','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/metformin-then-what-how-to-navigate-the-maze-of-type-2-diabetes-medications','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 15:21:33',0),(64589,'2021-04-12 15:24:31','2021-05-12 07:10:35','d08a93a0-41fb-4206-9e7f-6e16bbebf2f8',1,'/page/publications/partners-in-health/partners-in-health-december-2016/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/publications/partners-in-health/partners-in-health-december-2016','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-12 07:10:35',0),(64590,'2021-04-12 15:26:13','2021-05-12 05:44:32','dfdacd78-11e8-40f7-9cc4-e4de4c729eb0',1,'/content/Document/Brisbane MIND Provider List September 2016(7).pdf','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Brisbane MIND Provider List September 2016(7).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-12 05:44:32',0),(64591,'2021-04-12 15:29:36','2021-05-17 15:24:12','79957abb-caa8-4d33-a5ef-76f8265626d5',1,'/page/health-professionals/Local Positions Vacant/other-health-professional---kedron/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/other-health-professional---kedron','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-17 15:24:12',0),(64592,'2021-04-12 15:36:35','2021-05-16 07:53:23','44441ee1-55d9-4e08-b986-701b7167d853',1,'/page/publications/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/publications','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-16 07:53:23',0),(64593,'2021-04-12 15:36:36','2021-05-16 07:49:39','bb171b97-0b92-4a24-9113-7a48f3399f3a',1,'/page/about/clinical-council-and-community-advisory-committee/','','148.251.9.145','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/about/clinical-council-and-community-advisory-committee','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 07:49:39',0),(64594,'2021-04-12 15:36:37','2021-05-17 23:01:47','3c3bc512-b766-4ec5-b513-ac4277ba1eb9',1,'/page/home/quicklinks/','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/home/quicklinks','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-17 23:01:47',0),(64595,'2021-04-12 15:36:39','2021-05-17 11:29:48','b7412e2b-dca0-465f-b40c-c1450dae65cb',1,'/page/news-and-events/latest-news/eoi-for-my-health-for-life-providers-now-open/','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/eoi-for-my-health-for-life-providers-now-open','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-17 11:29:48',0),(64596,'2021-04-12 15:36:39','2021-04-24 07:29:10','e76d664d-3539-4094-9762-1b70d2f3e22a',1,'/page/health-reform/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-reform','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 07:29:10',0),(64597,'2021-04-12 15:36:40','2021-04-24 09:57:15','8858d325-70c4-4c85-83fb-9972b404b72e',1,'/page/home/banners/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/home/banners','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-24 09:57:15',0),(64598,'2021-04-12 15:36:42','2021-05-16 21:12:30','0bc772e1-b3b7-46b2-a54f-41e4e0ce83bb',1,'/page/about/our-work/','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/our-work','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-16 21:12:30',0),(64599,'2021-04-12 15:36:42','2021-05-15 19:39:31','55d0cfee-f186-4c66-b203-c68bab60600a',1,'/page/health-reform/health-care-home/','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-reform/health-care-home','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 19:39:31',0),(64600,'2021-04-12 15:36:45','2021-05-17 05:18:34','135c444b-0f5a-4ff6-baf3-90dd28c6b7fe',1,'/page/health-professionals/service-navigator/','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/service-navigator','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 05:18:34',0),(64601,'2021-04-12 15:36:46','2021-05-08 01:54:14','b0cbab76-0afd-4259-ad89-70a96ff53b8c',1,'/page/home/quicklinks/contact-your-primary-care-liaison-officer/','','178.151.245.174','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/home/quicklinks/contact-your-primary-care-liaison-officer','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-08 01:54:14',0),(64602,'2021-04-12 15:36:46','2021-05-17 01:44:44','62b743da-8cb4-42d4-92c1-4151c6b56fb3',1,'/page/news-and-events/latest-news/phn-responds-to-anti-vax-misinformation/','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/phn-responds-to-anti-vax-misinformation','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,16,'2021-05-17 01:44:44',0),(64603,'2021-04-12 15:40:08','2021-05-13 17:15:47','715d3187-d24a-4a8c-8232-3672bc02d95f',1,'/content/Document/Primary care liaison/MNHHS Caboolture Hosp Ref v6_2 MD(1).rtf','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Primary care liaison/MNHHS Caboolture Hosp Ref v6_2 MD(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-13 17:15:47',0),(64604,'2021-04-12 15:51:07','2021-05-16 07:50:07','07c9aa6b-8a8f-4f55-b897-f5ad0d5c8369',1,'/page/news-and-events/events/upcoming/awards---nurses-and-health-professionals-webinar/','','148.251.9.145','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/awards---nurses-and-health-professionals-webinar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 07:50:07',0),(64605,'2021-04-12 15:51:24','2021-05-12 10:00:52','0dd48e73-8227-4499-ab8c-54079376a3ef',1,'/page/news-and-events/events/upcoming/Introduction-To-Animal-Assisted-Therapy-2/','','84.189.28.67','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/Introduction-To-Animal-Assisted-Therapy-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-12 10:00:52',0),(64606,'2021-04-12 15:51:50','2021-05-11 16:04:58','5234c34d-f5d1-4c0a-be21-c25451cd2cae',1,'/content/Image/Banner_news_myhealthrecord.jpg','','66.249.88.67','Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)','Template not found: content/Image/Banner_news_myhealthrecord.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 16:04:58',0),(64607,'2021-04-12 15:55:54','2021-04-12 15:55:54','50cb5a2a-632f-48f3-ac53-38fe92850c7c',1,'/content/Document/Templates/4.4/MNHHS Palliative Referral MD v4.4.rtf','','13.66.139.95','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.4/MNHHS Palliative Referral MD v4.4.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 15:55:54',0),(64608,'2021-04-12 16:00:12','2021-05-10 16:02:56','14781d30-a97b-4d0a-892c-0e01bfc3e6bf',1,'/page/news-and-events/latest-news/queensland-first-trial-aims-to-keep-at-risk-patients-at-home/','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/queensland-first-trial-aims-to-keep-at-risk-patients-at-home','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-10 16:02:56',0),(64609,'2021-04-12 16:01:08','2021-04-12 16:01:08','e0bcdc7d-570f-40da-a01c-bb10cb6bd6e8',1,'/content/Document/Brisbane MIND Provider List March 2019(4).pdf','','207.46.13.5','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List March 2019(4).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 16:01:08',0),(64610,'2021-04-12 16:05:39','2021-05-18 16:21:37','fceea300-3f27-4454-ac42-52b81033df8e',1,'/content/Document/Events/2019/Victoria Park Invite -web.pdf','','40.77.167.15','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2019/Victoria Park Invite -web.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-18 16:21:37',0),(64611,'2021-04-12 16:10:48','2021-05-19 02:30:06','4cd54e01-e791-4dd2-988a-8b1ccafeaa06',1,'/page/news-and-events/events/upcoming/chronic-disease-management-using-best-practice/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/chronic-disease-management-using-best-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-19 02:30:06',0),(64612,'2021-04-12 16:15:49','2021-05-15 12:01:16','7b5985ca-c73a-4863-a2c6-ed0ac3f2d32a',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---brighton','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---brighton','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 12:01:16',0),(64613,'2021-04-12 16:17:32','2021-05-16 22:46:16','01e63dfa-3da4-4e59-857a-e4a5e3264b95',1,'/page/about/careers ','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/about/careers ','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,24,'2021-05-16 22:46:16',0),(64614,'2021-04-12 16:18:34','2021-05-16 22:48:14','92a4dd6f-da1b-4f87-9251-2300d46d80c1',1,'/page/about/careers ','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/about/careers ','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,35,'2021-05-16 22:48:14',0),(64615,'2021-04-12 16:19:18','2021-05-16 22:49:07','bf162737-ef70-4839-91ab-d45aaa73f2dc',1,'/page/about/partnership-protocols/protocol-signals-renewed-commitment-­to-working-together/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/about/partnership-protocols/protocol-signals-renewed-commitment-­to-working-together','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,17,'2021-05-16 22:49:07',0),(64616,'2021-04-12 16:20:05','2021-05-16 22:56:39','d3a8f9cf-0cdb-4598-a3cd-f7035b9d5338',1,'/page/health-professionals/Local Positions Vacant/consult-room-for-wound-care-clinic-–-superpharmacyplus/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/health-professionals/Local Positions Vacant/consult-room-for-wound-care-clinic-–-superpharmacyplus','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,24,'2021-05-16 22:56:39',0),(64617,'2021-04-12 16:21:18','2021-05-16 22:58:00','0eff848a-4487-475c-9d28-b7794872c6bd',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-–-brisbane-cbd/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-–-brisbane-cbd','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,26,'2021-05-16 22:58:00',0),(64618,'2021-04-12 16:22:08','2021-05-16 22:57:31','0539f30b-3304-4887-9c17-55d0d0851e78',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-required-—-griffin-medical-centre/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-required-—-griffin-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,24,'2021-05-16 22:57:31',0),(64619,'2021-04-12 16:23:22','2021-05-16 22:59:37','2c4ba267-334e-49fe-8ce6-443b10c44089',1,'/page/health-professionals/Local Positions Vacant/registered-nurse-endorsed-enrolled-nurse-required-–-griffin-medical-centre/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/health-professionals/Local Positions Vacant/registered-nurse-endorsed-enrolled-nurse-required-–-griffin-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,25,'2021-05-16 22:59:37',0),(64620,'2021-04-12 16:25:04','2021-05-16 23:00:22','1c4460c6-3447-43c7-80eb-151bcc822d99',1,'/page/health-professionals/Local Positions Vacant/vr-general-practitioner-required-—-medical-matters-murrumba-downs/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/health-professionals/Local Positions Vacant/vr-general-practitioner-required-—-medical-matters-murrumba-downs','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,30,'2021-05-16 23:00:22',0),(64621,'2021-04-12 16:25:35','2021-05-12 15:20:33','064a0839-f6a5-46a9-8bf1-921add7c6f50',1,'/page/home/banners/gp-respiratory-clinics-community-assessment-and-fever-clinics','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/banners/gp-respiratory-clinics-community-assessment-and-fever-clinics','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-12 15:20:33',0),(64622,'2021-04-12 16:26:01','2021-05-16 23:01:32','bc874848-ff79-4240-a40c-dd5ad48c282d',1,'/page/health-professionals/Local Positions Vacant/vr-general-practitioner-required-—-redcliffe-medical-centre/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/health-professionals/Local Positions Vacant/vr-general-practitioner-required-—-redcliffe-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,26,'2021-05-16 23:01:32',0),(64623,'2021-04-12 16:29:48','2021-05-16 23:02:14','ea6363a1-1e45-4e50-9886-b7e95ddf70b5',1,'/page/health-professionals/chronic-disease-management/coordinated-veterans’-care-program/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/health-professionals/chronic-disease-management/coordinated-veterans’-care-program','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-16 23:02:14',0),(64624,'2021-04-12 16:30:40','2021-05-18 13:44:35','5e6b522a-2747-45ec-9235-8905735bcb97',1,'/page/health-professionals/immunisation/live-well-age-well-–-vaccinate-for-life/','','157.55.39.23','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/immunisation/live-well-age-well-–-vaccinate-for-life','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,18,'2021-05-18 13:44:35',0),(64625,'2021-04-12 16:30:54','2021-05-16 23:04:33','daec57cb-4ae1-485e-8618-aee4d051561b',1,'/page/health-professionals/mental-health-services/low-intensity-mental-health-services/postnatal-wellbeing-program-recognises-that-life-isn’t-always-peachy/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/health-professionals/mental-health-services/low-intensity-mental-health-services/postnatal-wellbeing-program-recognises-that-life-isn’t-always-peachy','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-16 23:04:33',0),(64626,'2021-04-12 16:31:27','2021-05-16 23:05:52','69555b02-ea62-4537-aa14-8a7b200ce814',1,'/page/news-and-events/events/archive/annual-ama-queensland-conference-–-india/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/archive/annual-ama-queensland-conference-–-india','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-16 23:05:52',0),(64627,'2021-04-12 16:32:01','2021-05-16 23:07:27','ed3c335a-18e8-43a3-9311-abbe4a217a8f',1,'/page/news-and-events/events/archive/concussion-training-day-–-sydney/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/archive/concussion-training-day-–-sydney','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-16 23:07:27',0),(64628,'2021-04-12 16:32:31','2021-05-16 23:08:28','5c63f573-28db-4364-a715-098455e54b38',1,'/page/news-and-events/events/archive/dialectical-behaviour-therapy-skills-training“-part-1---workshop/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/archive/dialectical-behaviour-therapy-skills-training“-part-1---workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-16 23:08:28',0),(64629,'2021-04-12 16:33:17','2021-05-16 23:09:49','ad2c7932-4ae1-4266-a7fd-c2eb02886030',1,'/page/news-and-events/events/archive/gp-breakfast-session-–-metro-north-health-forum/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/archive/gp-breakfast-session-–-metro-north-health-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-16 23:09:49',0),(64630,'2021-04-12 16:33:46','2021-05-16 23:11:06','9e2b4525-6667-4740-a8d0-0da42c3d9bf0',1,'/page/news-and-events/events/archive/north-brisbane-mental-health-expo-–-choose-your-own-adventure/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/archive/north-brisbane-mental-health-expo-–-choose-your-own-adventure','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-16 23:11:06',0),(64631,'2021-04-12 16:34:23','2021-05-16 23:12:12','7941950e-0fbb-42e2-b496-cfbbc84e8530',1,'/page/news-and-events/events/archive/revisiting-whitlam’s-vision-for-health-economists-data-and-efficiency/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/archive/revisiting-whitlam’s-vision-for-health-economists-data-and-efficiency','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-16 23:12:12',0),(64632,'2021-04-12 16:34:58','2021-05-16 23:13:15','1eadfee5-d40d-4a83-9c80-46778a7a3c3f',1,'/page/news-and-events/events/archive/safeguarding-yourself-–-recognising-and-responding-to-vicarious-trauma/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/archive/safeguarding-yourself-–-recognising-and-responding-to-vicarious-trauma','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-16 23:13:15',0),(64633,'2021-04-12 16:35:24','2021-05-16 23:14:50','c0fe2607-eb62-4353-87cd-ebed8354e02f',1,'/page/news-and-events/events/archive/‘my-health-record-in-pharmacy’-workshop-NorthLakes/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/archive/‘my-health-record-in-pharmacy’-workshop-NorthLakes','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-16 23:14:50',0),(64634,'2021-04-12 16:35:51','2021-05-16 23:16:11','17170689-14fa-45ca-80b0-4c4903d19fb6',1,'/page/news-and-events/events/upcoming/concussion-training-day-–-sydney/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/concussion-training-day-–-sydney','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-16 23:16:11',0),(64635,'2021-04-12 16:36:28','2021-05-16 23:17:24','101ba5de-2492-4f2c-971c-3425fab71e39',1,'/page/news-and-events/events/upcoming/dialectical-behaviour-therapy-skills-training“-part-1---workshop/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/dialectical-behaviour-therapy-skills-training“-part-1---workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-16 23:17:24',0),(64636,'2021-04-12 16:36:44','2021-05-16 23:18:04','7d585a5d-6074-4133-b4d0-6dcc5ac85dcb',1,'/page/news-and-events/events/upcoming/domestic-violence-seminar-series---non-lethal-strangulation-best-practice-medical-responses /','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/domestic-violence-seminar-series---non-lethal-strangulation-best-practice-medical-responses ','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,15,'2021-05-16 23:18:04',0),(64637,'2021-04-12 16:37:07','2021-05-16 23:19:50','95df6a26-d480-46b7-9f58-d5d42960710a',1,'/page/news-and-events/events/upcoming/gp-breakfast-session-–-metro-north-health-forum/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/gp-breakfast-session-–-metro-north-health-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-16 23:19:50',0),(64638,'2021-04-12 16:37:28','2021-05-16 23:20:20','f14d07c1-dfdf-46ce-910a-6f31d5891ead',1,'/page/news-and-events/events/upcoming/leveraging-my-health-record-to-improve-practice-workflow-–-a-session-for-practice-managers/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/leveraging-my-health-record-to-improve-practice-workflow-–-a-session-for-practice-managers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-16 23:20:20',0),(64639,'2021-04-12 16:37:36','2021-05-16 23:20:59','959305c9-cd60-4fb4-aed4-c19bfe5913f1',1,'/page/news-and-events/events/upcoming/my-health-record-for-diagnostic-imaging-practices-–-adding-value-to-clinical-care/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/my-health-record-for-diagnostic-imaging-practices-–-adding-value-to-clinical-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-16 23:20:59',0),(64640,'2021-04-12 16:37:55','2021-05-16 23:21:35','9acb1534-21eb-4050-8864-41f04e4e4c10',1,'/page/news-and-events/events/upcoming/my-health-record-for-specialist-practices-–-adding-value-to-clinical-care/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/my-health-record-for-specialist-practices-–-adding-value-to-clinical-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-16 23:21:35',0),(64641,'2021-04-12 16:38:10','2021-05-16 23:22:07','bb37f048-2b90-4e0f-9a56-08833d37b1cb',1,'/page/news-and-events/events/upcoming/my-health-record-–-a-tool-to-support-clinicians-coordinating-care-for-those-with-mental-health-conditions/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/my-health-record-–-a-tool-to-support-clinicians-coordinating-care-for-those-with-mental-health-conditions','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-16 23:22:07',0),(64642,'2021-04-12 16:38:21','2021-05-16 23:22:46','9596af41-7c14-4203-9ea9-b34c0efe26d4',1,'/page/news-and-events/events/upcoming/my-health-record-–-providing-care-in-the-community/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/my-health-record-–-providing-care-in-the-community','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-16 23:22:46',0),(64643,'2021-04-12 16:38:47','2021-05-16 23:24:11','fea9564c-dd06-4067-a3b4-ff3a07be1716',1,'/page/news-and-events/events/upcoming/project-echo®-information-session/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/project-echo®-information-session','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-16 23:24:11',0),(64644,'2021-04-12 16:39:19','2021-05-16 14:49:53','4a202a74-d245-47a8-bdb9-658cb3a8e025',1,'/page/community/immunisation/','','106.11.155.42','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.81 YisouSpider/5.0 Safari/537.36','Template not found: page/community/immunisation','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-16 14:49:53',0),(64645,'2021-04-12 16:39:51','2021-05-10 18:55:22','ff22d081-471b-4c95-b971-11f18df01ca0',1,'/page/health-reform/mental-health-services-and-alcohol-and-other-drug-treatment-services','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-reform/mental-health-services-and-alcohol-and-other-drug-treatment-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-10 18:55:22',0),(64646,'2021-04-12 16:44:58','2021-05-17 00:11:12','c984c659-218c-406a-b2bf-4a25c1628579',1,'/page/news-and-events/latest-news/a-new-pathway-of-antenatal-and-postnatal-care-in-caboolture','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/a-new-pathway-of-antenatal-and-postnatal-care-in-caboolture','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-17 00:11:12',0),(64647,'2021-04-12 16:46:41','2021-05-16 23:25:10','f503cb37-ed93-4d0f-a751-ab21c4a7ef4f',1,'/page/news-and-events/events/upcoming/revisiting-whitlam’s-vision-for-health-economists-data-and-efficiency/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/revisiting-whitlam’s-vision-for-health-economists-data-and-efficiency','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-16 23:25:10',0),(64648,'2021-04-12 16:46:59','2021-05-17 07:48:43','43ea0ba4-2664-4e61-8425-6a9404f88cf9',1,'/page/news-and-events/events/upcoming/safeguarding-yourself-–-recognising-and-responding-to-vicarious-trauma/','','40.77.167.15','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/safeguarding-yourself-–-recognising-and-responding-to-vicarious-trauma','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,14,'2021-05-17 07:48:43',0),(64649,'2021-04-12 16:47:27','2021-05-16 23:28:43','f0c00a67-571b-41c8-bbd1-ccbc602db905',1,'/page/news-and-events/events/upcoming/‘my-health-record-in-pharmacy’-workshop-NorthLakes/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/‘my-health-record-in-pharmacy’-workshop-NorthLakes','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-16 23:28:43',0),(64650,'2021-04-12 16:47:36','2021-05-16 23:29:09','0494a53e-0aad-4a4e-9bb3-372457205d71',1,'/page/news-and-events/latest-news/get-involved-in-the-dementia-quality-enhancement-for-general-practices-project /','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/get-involved-in-the-dementia-quality-enhancement-for-general-practices-project ','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,18,'2021-05-16 23:29:09',0),(64651,'2021-04-12 16:47:46','2021-05-16 23:30:28','a603534b-41c4-4257-8f43-b722382ebf8b',1,'/page/news-and-events/latest-news/inaugural-gp-breakfast-–-great-success/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/inaugural-gp-breakfast-–-great-success','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,32,'2021-05-16 23:30:28',0),(64652,'2021-04-12 16:48:04','2021-05-16 23:30:59','96baeab2-1001-4ec6-93c9-f170e96d9406',1,'/page/news-and-events/latest-news/keynote-speakers-announced-for-this-year’s-metro-north-health-forum/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/keynote-speakers-announced-for-this-year’s-metro-north-health-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,16,'2021-05-16 23:30:59',0),(64653,'2021-04-12 16:48:23','2021-05-16 23:32:01','e8bb5910-8c2f-4675-8ba6-3c24530d4c26',1,'/page/news-and-events/latest-news/pcyc-launches-‘healthy-bodies-healthy-minds’-program-during-mental-health-week/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/pcyc-launches-‘healthy-bodies-healthy-minds’-program-during-mental-health-week','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-16 23:32:01',0),(64654,'2021-04-12 16:48:39','2021-05-14 02:00:30','b7df8ec5-e4d8-457e-a63a-c80d5333b387',1,'/page/news-and-events/2017-news/gps-can-access-a-statement-of-choices-from-the-health-provider-portal/','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/2017-news/gps-can-access-a-statement-of-choices-from-the-health-provider-portal','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-14 02:00:30',0),(64655,'2021-04-12 16:48:39','2021-05-16 23:33:21','d19ba65e-bc9a-4e3c-bf70-85d0dd4555a6',1,'/page/news-and-events/latest-news/phns-take-centre-stage-in-government’s-ice-response/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/phns-take-centre-stage-in-government’s-ice-response','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,14,'2021-05-16 23:33:21',0),(64656,'2021-04-12 16:48:47','2021-05-18 12:34:28','dc229791-8409-4da3-838d-80aab4e5e811',1,'/page/news-and-events/latest-news/postnatal-wellbeing-program-recognises-that-life-isn’t-always-peachy/','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/postnatal-wellbeing-program-recognises-that-life-isn’t-always-peachy','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,23,'2021-05-18 12:34:28',0),(64657,'2021-04-12 16:48:57','2021-05-16 23:34:31','2bd227a0-f31a-4207-9349-3c68ea5b2a78',1,'/page/news-and-events/latest-news/prepare-for-increase-in-cervical-screening-enquiries /','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/prepare-for-increase-in-cervical-screening-enquiries ','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,16,'2021-05-16 23:34:31',0),(64658,'2021-04-12 16:49:07','2021-04-12 16:49:07','6f6cb1a1-f34b-4fde-afb6-f1e3a08d1675',1,'/page/news-and-events/events/archive/magnetic-e-resonance-therapy-brain-treatment/','','66.249.65.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.122 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/archive/magnetic-e-resonance-therapy-brain-treatment','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 16:49:07',0),(64659,'2021-04-12 16:49:09','2021-05-16 23:35:19','5dda0513-c80b-432c-9fc6-2fbfba679d06',1,'/page/news-and-events/latest-news/protocol-signals-renewed-commitment-­to-working-together/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/protocol-signals-renewed-commitment-­to-working-together','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,16,'2021-05-16 23:35:19',0),(64660,'2021-04-12 16:49:14','2021-05-16 23:35:47','e97d29b7-04e1-4c60-9156-e9f1eb8fa8b1',1,'/page/news-and-events/latest-news/review-and-evolve-what’s-next-for-phn-commissioned-services/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/review-and-evolve-what’s-next-for-phn-commissioned-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,17,'2021-05-16 23:35:47',0),(64661,'2021-04-12 16:49:34','2021-05-16 23:36:45','103b3d9f-58ef-4acc-ac81-78283c14b984',1,'/page/news-and-events/latest-news/the-emergency-department-isn’t-always-your-best-option/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/the-emergency-department-isn’t-always-your-best-option','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-16 23:36:45',0),(64662,'2021-04-12 16:49:43','2021-05-16 23:37:13','27e8911b-9c6e-402c-8f90-601c766f7b6c',1,'/page/news-and-events/latest-news/“education-on-my-terms”-warner-gp-shares-experience-with-project-echo®/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/“education-on-my-terms”-warner-gp-shares-experience-with-project-echo®','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-16 23:37:13',0),(64663,'2021-04-12 16:49:52','2021-05-16 23:38:05','0b134962-509b-41ec-ab5b-c0c81cb6a61f',1,'/page/news-and-events/metro-north-health-forum/2017-metro-north-health-forum/inaugural-gp-breakfast-–-great-success/','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/metro-north-health-forum/2017-metro-north-health-forum/inaugural-gp-breakfast-–-great-success','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,14,'2021-05-16 23:38:05',0),(64664,'2021-04-12 16:52:16','2021-05-16 07:47:17','993242e7-04bd-4184-adde-281a88213698',1,'/page/news-and-events/latest-news/new-dementia-friendly-home-opens-in-bray-park/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/new-dementia-friendly-home-opens-in-bray-park','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-16 07:47:17',0),(64665,'2021-04-12 16:55:49','2021-04-18 06:26:49','a44900a7-6f72-4ece-8379-7b7f47c0c591',1,'/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','www.google.com','45.133.1.226','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-18 06:26:49',0),(64666,'2021-04-12 17:01:37','2021-05-10 17:24:50','c7646e2c-0db7-4e97-b0f6-91426506cc32',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---chermside','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---chermside','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-10 17:24:50',0),(64667,'2021-04-12 17:06:47','2021-05-16 14:04:07','6059ab08-5192-43a5-9aee-07713003b15a',1,'/content/Document/Network Link_08_August_2016_WEB.pdf','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Network Link_08_August_2016_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-16 14:04:07',0),(64668,'2021-04-12 17:07:02','2021-05-13 19:33:58','10aa3f53-8c28-476e-8cd2-d0538f70ee65',1,'/content/Document/Events/2018/Invitation - Exercise is Medicine Workshops 2018.pdf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2018/Invitation - Exercise is Medicine Workshops 2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-13 19:33:58',0),(64669,'2021-04-12 17:13:59','2021-04-12 17:13:59','c8ef4552-b6d0-411e-a6bc-8743baad0637',1,'/events/triage-for-non-clinicians-in-general-practice','','40.77.167.80','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/triage-for-non-clinicians-in-general-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 17:13:59',0),(64670,'2021-04-12 17:13:59','2021-05-15 18:05:10','0a1c9378-0dd4-449c-9b06-6858256a050f',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/information-for-providers/redicase-information/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services/information-for-providers/redicase-information','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 18:05:10',0),(64671,'2021-04-12 17:14:00','2021-04-20 08:30:09','28b5be59-a526-4ce9-ba8a-607dacea0f6f',1,'/content/Document/Events/2019/INVITATION - Common challenges in primary care_cancer genetics_PRINTv3.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/INVITATION%20-%20Common%20challenges%20in%20primary%20care_cancer%20genetics_PRINTv3.pdf','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/Events/2019/INVITATION - Common challenges in primary care_cancer genetics_PRINTv3.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-20 08:30:09',0),(64672,'2021-04-12 17:14:01','2021-05-08 01:50:40','cdc6b6d7-e271-4bc2-adbb-de35d8643c45',1,'/events/brain-and-spine-surgery-what-a-gp-needs-to-know','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/brain-and-spine-surgery-what-a-gp-needs-to-know','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-08 01:50:40',0),(64673,'2021-04-12 17:15:29','2021-05-18 16:15:52','c017e160-dfc5-4a6e-b096-367d85edcdab',1,'/page/about/our-reconciliation-action-plan/','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/about/our-reconciliation-action-plan','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,17,'2021-05-18 16:15:52',0),(64674,'2021-04-12 17:16:39','2021-05-16 11:19:19','a3a35d41-ed8e-4c61-8ba1-5ba8fb359e9b',1,'/content/Document/Planning/Joint PHRrefresh 2019 FINAL_WEB.pdf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Planning/Joint PHRrefresh 2019 FINAL_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 11:19:19',0),(64675,'2021-04-12 17:19:12','2021-04-12 17:19:12','406597f7-d7e3-489d-a5c2-e474dcc20b59',1,'/page/health-professionals/Local Positions Vacant/psychologist-expressions-of-interest---holdsworth-house-medical-brisbane/','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/psychologist-expressions-of-interest---holdsworth-house-medical-brisbane','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 17:19:12',0),(64676,'2021-04-12 17:21:55','2021-05-18 04:50:39','45c39217-bc8e-4528-8480-3a2754754ee0',1,'/page/news-and-events/latest-news/have-your-say-on-naming-queenslands-childrens-hospital','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/have-your-say-on-naming-queenslands-childrens-hospital','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 04:50:39',0),(64677,'2021-04-12 17:24:14','2021-05-03 01:17:24','e544f51d-5523-46dc-84b6-63ac81fd4bab',1,'/content/Document/Events/Qld 2017 Beyond Pregnancy and Birth Brisbane May ALM - Flyer.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/Qld%202017%20Beyond%20Pregnancy%20and%20Birth%20Brisbane%20May%20ALM%20-%20Flyer.pdf','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/Events/Qld 2017 Beyond Pregnancy and Birth Brisbane May ALM - Flyer.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-03 01:17:24',0),(64678,'2021-04-12 17:33:40','2021-05-13 18:34:18','b84fa641-d08c-4260-b2cf-e8dc731f8b81',1,'/content/Document/Position Descriptions/PD_Primary Care Liaison Officer_190507 (1).pdf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Position Descriptions/PD_Primary Care Liaison Officer_190507 (1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 18:34:18',0),(64679,'2021-04-12 17:35:36','2021-05-13 19:33:56','3d7cc3e1-a466-4d8c-b8c2-d2ad82d265b6',1,'/pin/674273375438186420/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: pin/674273375438186420','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-13 19:33:56',0),(64680,'2021-04-12 17:40:07','2021-05-13 22:04:08','9e483deb-2645-4210-8c50-598af26ab1dc',1,'/jobs/doctors-at-northgate','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/doctors-at-northgate','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-13 22:04:08',0),(64681,'2021-04-12 17:43:02','2021-05-17 13:29:44','1247db51-7712-4470-9951-6e5df210d5fc',1,'/content/Document/Recovery/BNPHN_Brief_Therapy_Services_A5_FINAL_WEB.pdf','','207.46.13.74','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Recovery/BNPHN_Brief_Therapy_Services_A5_FINAL_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-17 13:29:44',0),(64682,'2021-04-12 17:46:23','2021-04-12 17:47:29','780b0f91-18b5-4faf-a2eb-33b9812b5f48',1,'/wp-content/plugins/ioptimization/IOptimize.php','www.google.com','45.15.143.183','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-content/plugins/ioptimization/IOptimize.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-12 17:47:29',0),(64683,'2021-04-12 17:46:53','2021-04-12 17:46:53','99c051cc-cbc9-4910-9ad7-e220460faa04',1,'/wp-content/index.php','www.google.com','45.15.143.183','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-content/index.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 17:46:53',0),(64684,'2021-04-12 17:47:18','2021-04-12 17:47:37','bcaf9964-ec18-4d46-90f0-635690b41164',1,'/wp-content/plugins/ioptimization/eswvsqemsj.php','www.google.com','45.15.143.183','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-content/plugins/ioptimization/eswvsqemsj.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-12 17:47:37',0),(64685,'2021-04-12 18:02:30','2021-05-12 23:54:49','081a004e-e2e7-4e86-b7d6-f4dd0c0c67d1',1,'/events/prolonged-exposure-therapy-for-ptsd-and-complex-ptsd-9-10-13-november-2020','','66.249.68.36','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: events/prolonged-exposure-therapy-for-ptsd-and-complex-ptsd-9-10-13-november-2020','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 23:54:49',0),(64686,'2021-04-12 18:08:51','2021-05-18 04:24:11','ebc4cfa1-5ecf-4455-9f5a-e662656f2bc4',1,'/page/news-and-events/events/archive/course-in-wound-closure-may-2020','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/course-in-wound-closure-may-2020','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 04:24:11',0),(64687,'2021-04-12 18:19:37','2021-04-12 18:19:37','2b1bf19a-73a7-4c04-b7ed-da2bc78a5e18',1,'/content/Image/Directors staff/PCLOs/WEB_EmyleeTickner(1).jpg','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Directors staff/PCLOs/WEB_EmyleeTickner(1).jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 18:19:37',0),(64688,'2021-04-12 18:24:52','2021-05-13 07:51:06','6e537149-b189-4fe4-93b0-1b829ef077dd',1,'/content/Document/Pathways/How to collect a urine specimen 140829.pdf','','66.249.66.152','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Pathways/How to collect a urine specimen 140829.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,17,'2021-05-13 07:51:06',0),(64689,'2021-04-12 18:28:49','2021-05-18 07:58:31','603685a6-29cb-472b-9297-f87d4ff10b7a',1,'/page/news-and-events/latest-news/palliative-care-scholarships-upskill-local-nursing-workforce','','185.191.171.1','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)','Template not found: page/news-and-events/latest-news/palliative-care-scholarships-upskill-local-nursing-workforce','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-18 07:58:31',0),(64690,'2021-04-12 18:28:57','2021-05-10 16:09:26','e61212c9-09aa-4df2-a904-0408223dac2b',1,'/content/Document/Specialists List_Redcliffe Hospital_4_11.pdf','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Specialists List_Redcliffe Hospital_4_11.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-10 16:09:26',0),(64691,'2021-04-12 18:32:06','2021-04-12 18:32:06','3b36e5cd-3e85-4736-a49d-2fb05a4bd6bc',1,'/content/Document/MNHHS Caboolture Referral ZM v4_11.rtf','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/MNHHS Caboolture Referral ZM v4_11.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 18:32:06',0),(64692,'2021-04-12 18:33:59','2021-04-12 18:33:59','f59e3253-44ac-45ed-900f-5063485d76a1',1,'/page/health-professionals/Local Positions Vacant/board-director---queensland-alliance-for-mental-health','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/board-director---queensland-alliance-for-mental-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 18:33:59',0),(64693,'2021-04-12 18:38:20','2021-05-18 04:50:53','d2b04721-16ec-42fb-aec8-6de6bb5a0c88',1,'/events/management-of-stroke-in-2021-what-a-gp-needs-to-know','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/management-of-stroke-in-2021-what-a-gp-needs-to-know','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 04:50:53',0),(64694,'2021-04-12 18:39:20','2021-05-11 20:36:44','eacc6b1e-a322-4c83-972d-f7e81f2df49d',1,'/page/news-and-events/events/upcoming/hitting-the-mark-in-private-practice/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/hitting-the-mark-in-private-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-11 20:36:44',0),(64695,'2021-04-12 18:39:48','2021-05-07 10:18:50','75d4b6c6-50ea-42ca-8581-47af748ec75f',1,'/yearinreview/coordinated-care-for-older-people/','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: yearinreview/coordinated-care-for-older-people','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-07 10:18:50',0),(64696,'2021-04-12 18:44:42','2021-05-15 06:08:44','34bda5f2-87d0-4693-a60a-302afdfadc6b',1,'/page/health-professionals/Local Positions Vacant/practice-manager---nundah','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-manager---nundah','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-15 06:08:44',0),(64697,'2021-04-12 18:59:57','2021-04-24 08:07:49','e9c534fc-d924-4a4d-b4d7-841769576ee5',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---taigum/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---taigum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-04-24 08:07:49',0),(64698,'2021-04-12 19:00:38','2021-05-14 21:24:40','721f60c8-294c-4f77-b7b6-d50694ddb22d',1,'/events/queensland-health-spirometry-training-refresher-workshop-and-2021-program-1','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/queensland-health-spirometry-training-refresher-workshop-and-2021-program-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-14 21:24:40',0),(64699,'2021-04-12 19:01:39','2021-04-12 19:01:39','013d1b7a-2d32-409b-9e7f-631140bf2250',1,'/C/Users/jenniferd/AppData/Local/Adobe/InDesign/Version 8.0/en_GB/Caches/InDesign ClipboardScrap1.pdf','','66.249.65.29','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: C/Users/jenniferd/AppData/Local/Adobe/InDesign/Version 8.0/en_GB/Caches/InDesign ClipboardScrap1.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 19:01:39',0),(64700,'2021-04-12 19:06:00','2021-04-30 13:54:33','1a642992-ce9f-45a0-b8da-ff34b8187030',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---bridgeman-downs/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---bridgeman-downs','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-30 13:54:33',0),(64701,'2021-04-12 19:08:16','2021-05-06 05:58:25','5a409b5e-1509-4878-9d84-a716f8f36b25',1,'/vod-type-id-3-type--area--year-2016-star--state--order-addtime.html','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type--area--year-2016-star--state--order-addtime.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-06 05:58:25',0),(64702,'2021-04-12 19:18:09','2021-05-18 07:03:19','8ba9e404-d050-4ef5-afbe-561b6a05f9ea',1,'/jobs/wavell-medical-centre','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/wavell-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-18 07:03:19',0),(64703,'2021-04-12 19:22:46','2021-05-16 07:50:37','ac8c2882-5643-4673-81cd-9105d933ff0d',1,'/page/news-and-events/latest-news/seasonal-influenza-vaccine-information/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/seasonal-influenza-vaccine-information','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-16 07:50:37',0),(64704,'2021-04-12 19:24:37','2021-05-14 22:09:30','03986fd4-4753-40b4-8f90-cd4a321888f4',1,'/page/health-professionals/Local Positions Vacant/psychologist---caboolture/','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/psychologist---caboolture','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-14 22:09:30',0),(64705,'2021-04-12 19:29:04','2021-04-16 15:55:50','0ff5ec90-46b5-4eef-bf49-ab52d01fa82b',1,'/content/Document/Templates/4.6/MNHHS TPCH Referral BP v4_6.rtf','','207.46.13.11','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.6/MNHHS TPCH Referral BP v4_6.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-16 15:55:50',0),(64706,'2021-04-12 19:39:13','2021-04-28 10:43:34','344ccf86-07e6-424a-ac15-2a13d658dc57',1,'/jobs/practice-nurse-en-or-uni-student','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/practice-nurse-en-or-uni-student','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-28 10:43:34',0),(64707,'2021-04-12 19:44:46','2021-05-18 00:23:37','749e4079-2eef-40cd-9aa5-38003a4dc747',1,'/page/news-and-events/latest-news/metro-north-hospital-and-health-service-2018-link-innovation-funding-now-open/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/latest-news/metro-north-hospital-and-health-service-2018-link-innovation-funding-now-open','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-18 00:23:37',0),(64708,'2021-04-12 19:51:06','2021-05-09 17:04:17','f76cf980-7bf1-46a5-a2d6-75998c4c8fb6',1,'/page/news-and-events/events/archive/metro-north-gp-alignment-oct-2017/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/metro-north-gp-alignment-oct-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 17:04:17',0),(64709,'2021-04-12 19:54:38','2021-05-14 06:24:44','7690a039-2709-41eb-aa57-c430c9fe0f21',1,'/page/health-professionals/community-care/yellow-envelope','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/community-care/yellow-envelope','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-14 06:24:44',0),(64710,'2021-04-12 19:59:05','2021-05-16 19:29:22','9e5f90fa-aa5f-4205-b5b2-598957f181fd',1,'/content/Document/Templates/4.9/Specialists List_The Prince Charles Hospital_4_9.pdf','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Templates/4.9/Specialists List_The Prince Charles Hospital_4_9.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-16 19:29:22',0),(64711,'2021-04-12 20:08:40','2021-05-13 19:58:11','02c6aad9-9924-4e78-a51f-8b259d654a8c',1,'/yearinreview/2018-19/wp-content/uploads/2018/11/2-friends-web-1-600x400.jpg','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2018-19/wp-content/uploads/2018/11/2-friends-web-1-600x400.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 19:58:11',0),(64712,'2021-04-12 20:09:13','2021-04-12 20:09:13','475cf5d2-4998-42a4-9a55-453e17f6efb0',1,'/page/news-and-events/events/upcoming/magnetic-e-resonance-therapy-brain-treatment/','','66.249.65.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.122 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/magnetic-e-resonance-therapy-brain-treatment','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 20:09:13',0),(64713,'2021-04-12 20:18:21','2021-05-19 02:07:51','d1f477c6-9187-49f4-8f8c-c55bb2ec0a3a',1,'/page/about/careers/','','40.77.167.15','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,37,'2021-05-19 02:07:51',1),(64714,'2021-04-12 20:19:22','2021-05-18 01:18:32','f726c529-05a8-4acd-9e3f-a76d9e933774',1,'/page/health-professionals/Local Positions Vacant/vr-gp---qut','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/vr-gp---qut','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 01:18:32',0),(64715,'2021-04-12 20:24:38','2021-05-02 11:04:34','ebd74026-3403-4f3a-b624-3f08cb9259ca',1,'/page/home/quicklinks/gp-respiratory-clinics-community-assessment-and-fever-clinics','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/quicklinks/gp-respiratory-clinics-community-assessment-and-fever-clinics','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-02 11:04:34',0),(64716,'2021-04-12 20:29:50','2021-05-03 12:34:06','f037f230-e9ac-4f8d-934b-967e8f4e6a40',1,'/page/news-and-events/events/archive/making-paediatric-integrated-care-a-reality','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/making-paediatric-integrated-care-a-reality','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-03 12:34:06',0),(64717,'2021-04-12 20:33:02','2021-04-21 12:00:27','ceb7c3f6-041e-4f7c-9113-3cfc71bfa62a',1,'/events/free-medicinal-cannabis-webinar-keeping-an-open-mind','','5.9.154.69','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: events/free-medicinal-cannabis-webinar-keeping-an-open-mind','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-21 12:00:27',0),(64718,'2021-04-12 20:34:32','2021-05-14 15:40:38','a1a997ae-af4b-4e9d-a7a7-0485dc4b18f5',1,'/page/news-and-events/latest-news/covid-19-information/information-for-our-community','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/covid-19-information/information-for-our-community','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 15:40:38',0),(64719,'2021-04-12 20:36:44','2021-04-16 18:49:12','c10dbbe8-0787-44dd-904f-fa3af4e2e7f1',1,'/content/Document/Training Booklet Public Apr Nov 2017(1).pdf','','66.249.68.29','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/Training Booklet Public Apr Nov 2017(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-16 18:49:12',0),(64720,'2021-04-12 20:56:23','2021-05-18 00:05:48','621707ed-7279-4d10-b196-3ee5a842d782',1,'/security.txt','http://brisbanenorthphn.org.au/security.txt','64.227.50.5','Go-http-client/1.1','Template not found: security.txt','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-18 00:05:48',0),(64721,'2021-04-12 20:56:27','2021-05-09 19:08:03','d241ffcf-90c8-4756-b49a-31de55c0b437',1,'/content/Document/Primary care liaison/FIN_New Practitioner Induction Kit 2020.pdf','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Primary care liaison/FIN_New Practitioner Induction Kit 2020.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-09 19:08:03',0),(64722,'2021-04-12 21:09:17','2021-04-12 21:09:17','437c198c-c89c-4c59-a8b8-25bc94678df6',1,'/fr/model/michaelaforlove/','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: fr/model/michaelaforlove','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 21:09:17',0),(64723,'2021-04-12 21:16:15','2021-05-19 02:37:32','f31cdbf0-6577-45c4-9100-711ef9c32451',1,'/tel:0409026721','https://www.google.com/','34.82.177.35','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36','Template not found: tel:0409026721','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,28,'2021-05-19 02:37:32',0),(64724,'2021-04-12 21:16:25','2021-04-12 21:16:25','691891c4-b656-49bd-ba94-db9e63b3848f',1,'/content/Document/Pathways/Fluid build up heart failure info sheet.pdf','','40.77.167.80','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/Fluid build up heart failure info sheet.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 21:16:25',0),(64725,'2021-04-12 21:20:03','2021-05-06 03:18:14','362c3bbc-e277-4d40-8cc1-280ab78cba65',1,'/page/health-reform/mental-health-services-and-alcohol-and-other-drug-treatment-services/stay-in-touch/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-reform/mental-health-services-and-alcohol-and-other-drug-treatment-services/stay-in-touch','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-06 03:18:14',0),(64726,'2021-04-12 21:22:44','2021-05-12 10:00:56','6278ff95-7c14-4cb0-afdd-434f51a03067',1,'/page/news-and-events/events/upcoming/SP-Care-Pathways-Project-Redcliffe/','','84.189.28.67','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/SP-Care-Pathways-Project-Redcliffe','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 10:00:56',0),(64727,'2021-04-12 21:22:50','2021-05-12 10:01:00','d20b9a9c-983a-4c8d-802b-ba60ccc89be5',1,'/page/news-and-events/events/upcoming/a-multi-disciplinary-approach-to-managing-knee-osteoarthritis-in-the-setting-of-chronic-disease/','','84.189.28.67','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/a-multi-disciplinary-approach-to-managing-knee-osteoarthritis-in-the-setting-of-chronic-disease','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 10:01:00',0),(64728,'2021-04-12 21:22:56','2021-05-18 19:08:12','faa96ffb-8a28-4525-a8a9-afb31ebb3741',1,'/page/news-and-events/events/upcoming/acd-benign-and-precancerous-lesions-certificate-online/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/acd-benign-and-precancerous-lesions-certificate-online','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 19:08:12',0),(64729,'2021-04-12 21:26:03','2021-04-12 21:26:03','dbace450-d845-49a7-9eff-e72b0e838c11',1,'/fr/model/birdiedavis/','','207.46.13.11','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: fr/model/birdiedavis','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 21:26:03',0),(64730,'2021-04-12 21:28:37','2021-04-17 14:44:52','1e736a29-8116-4b8b-aeff-e8d477d102e2',1,'//wp-admin/install.php','','3.238.237.149','Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0','Template not found: wp-admin/install.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-17 14:44:52',0),(64731,'2021-04-12 21:28:38','2021-04-17 14:44:51','4a3aaaf2-496b-4b3e-8503-e9323f275aad',1,'//wp-admin/setup-config.php','','3.238.237.149','Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0','Template not found: wp-admin/setup-config.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-17 14:44:51',0),(64732,'2021-04-12 21:28:40','2021-04-12 21:28:40','0c0f18f7-8be3-412a-84e2-d956c7326d34',1,'//new/wp-admin/install.php','','192.241.154.42','Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: new/wp-admin/install.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 21:28:40',0),(64733,'2021-04-12 21:28:41','2021-05-19 02:16:15','cb39532d-0967-47fc-ba65-fecfbfd6b29f',1,'/page/news-and-events/latest-news/connection-is-key-at-ageing-well-convergence/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/connection-is-key-at-ageing-well-convergence','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-19 02:16:15',0),(64734,'2021-04-12 21:28:42','2021-04-12 21:28:42','d2a5e448-9523-4661-ba6b-bb38be496938',1,'//new/wp-admin/setup-config.php','','192.241.154.42','Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: new/wp-admin/setup-config.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 21:28:42',0),(64735,'2021-04-12 21:28:43','2021-04-12 21:28:43','ba3a11d3-d0c3-49c9-96df-d79ae0b38398',1,'//blog/wp-admin/install.php','','192.241.154.42','Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: blog/wp-admin/install.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 21:28:43',0),(64736,'2021-04-12 21:28:45','2021-04-12 21:28:45','de004624-1b7e-4c38-8d06-7a742456fd2c',1,'//blog/wp-admin/setup-config.php','','192.241.154.42','Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: blog/wp-admin/setup-config.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 21:28:45',0),(64737,'2021-04-12 21:28:46','2021-04-12 21:28:46','dacbe6c2-125c-4bd5-9e0c-22385d6a7922',1,'//blogs/wp-admin/install.php','','192.241.154.42','Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: blogs/wp-admin/install.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 21:28:46',0),(64738,'2021-04-12 21:28:48','2021-04-12 21:28:48','9fad0ab6-a847-44d3-8027-c8f6d5c34704',1,'//blogs/wp-admin/setup-config.php','','192.241.154.42','Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: blogs/wp-admin/setup-config.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 21:28:48',0),(64739,'2021-04-12 21:28:49','2021-04-12 21:28:49','895faf82-0e51-4ab7-8d30-068670ca889a',1,'//demo/wp-admin/install.php','','192.241.154.42','Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: demo/wp-admin/install.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 21:28:49',0),(64740,'2021-04-12 21:28:50','2021-04-12 21:28:50','e5482a48-7c58-41b6-8b93-033e02a64680',1,'//demo/wp-admin/setup-config.php','','192.241.154.42','Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: demo/wp-admin/setup-config.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 21:28:50',0),(64741,'2021-04-12 21:28:52','2021-04-12 21:28:52','8eae0728-d60c-4f2f-8055-8910edc02255',1,'//wp/wp-admin/install.php','','192.241.154.42','Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: wp/wp-admin/install.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 21:28:52',0),(64742,'2021-04-12 21:28:54','2021-04-12 21:28:54','b7e086e6-958c-4a31-9d9c-73ab28a51c03',1,'//wp/wp-admin/setup-config.php','','192.241.154.42','Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: wp/wp-admin/setup-config.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 21:28:54',0),(64743,'2021-04-12 21:28:55','2021-04-12 21:28:55','95a8971e-717d-441f-a482-d0c749b5743c',1,'//wordpress/wp-admin/install.php','','192.241.154.42','Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: wordpress/wp-admin/install.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 21:28:55',0),(64744,'2021-04-12 21:28:57','2021-04-12 21:28:57','8a9f4992-6e1e-49c8-9027-08f3c54e4906',1,'//wordpress/wp-admin/setup-config.php','','192.241.154.42','Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: wordpress/wp-admin/setup-config.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 21:28:57',0),(64745,'2021-04-12 21:28:58','2021-04-12 21:28:58','6ad62763-d01b-41de-b8ac-c27396c48154',1,'//tes/wp-admin/install.php','','192.241.154.42','Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: tes/wp-admin/install.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 21:28:58',0),(64746,'2021-04-12 21:29:01','2021-04-12 21:29:01','0ca017b2-83d1-4274-8a1b-df2f9a4c8579',1,'//tes/wp-admin/setup-config.php','','192.241.154.42','Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: tes/wp-admin/setup-config.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 21:29:01',0),(64747,'2021-04-12 21:29:02','2021-04-12 21:29:02','3fa02dc1-9f8f-4ad5-bd70-ad57408bcaaf',1,'//test/wp-admin/install.php','','192.241.154.42','Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: test/wp-admin/install.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 21:29:02',0),(64748,'2021-04-12 21:29:04','2021-04-12 21:29:04','3a8d4fb6-0e56-488a-933e-84a162bce906',1,'//test/wp-admin/setup-config.php','','192.241.154.42','Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: test/wp-admin/setup-config.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 21:29:04',0),(64749,'2021-04-12 21:29:05','2021-04-12 21:29:05','05410ec7-aaf3-44c2-a96a-59bcc2e1adef',1,'//web/wp-admin/install.php','','192.241.154.42','Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: web/wp-admin/install.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 21:29:05',0),(64750,'2021-04-12 21:29:07','2021-04-12 21:29:07','5779da03-7e71-4837-8c02-4a581d0dc353',1,'//web/wp-admin/setup-config.php','','192.241.154.42','Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: web/wp-admin/setup-config.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 21:29:07',0),(64751,'2021-04-12 21:29:08','2021-04-12 21:29:08','a6af4941-d6c3-4c81-954a-4b3b192320a5',1,'//cms/wp-admin/install.php','','192.241.154.42','Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: cms/wp-admin/install.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 21:29:08',0),(64752,'2021-04-12 21:29:09','2021-04-12 21:29:09','17e5aaa7-9ce2-45a0-8a47-d176c3b1b81d',1,'//cms/wp-admin/setup-config.php','','192.241.154.42','Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: cms/wp-admin/setup-config.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 21:29:09',0),(64753,'2021-04-12 21:29:11','2021-04-12 21:29:11','2a1a1cc9-6fbf-49f5-a807-92f007b6561f',1,'//wp-admin/admin-ajax.php','','192.241.154.42','Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0','Page not found.','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/web/Application.php',581,1,'2021-04-12 21:29:11',0),(64754,'2021-04-12 21:29:12','2021-04-12 21:29:12','cb0bf7e0-ae82-4c23-afc7-04ac145bb042',1,'//wp-admin/','','192.241.154.42','Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: wp-admin','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 21:29:12',0),(64755,'2021-04-12 21:31:55','2021-05-16 19:05:53','ea1df745-47a4-4c0a-81d4-1a385c4e1787',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---village-family-practice-samford/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---village-family-practice-samford','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 19:05:53',0),(64756,'2021-04-12 21:37:41','2021-05-17 20:36:20','8a3d6236-0217-4235-86ff-2789a74bf1d7',1,'/page/news-and-events/events/upcoming/training-in-the-management-of-acute-care-needs-of-racf-residents---marutchi','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/training-in-the-management-of-acute-care-needs-of-racf-residents---marutchi','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 20:36:20',0),(64757,'2021-04-12 21:42:04','2021-05-04 08:13:09','7ff29adc-b26d-41af-ba9f-55402bd9e1a1',1,'/page/news-and-events/latest-news/caboolture-hospital-redevelopment-caters-for-regional-growth','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/caboolture-hospital-redevelopment-caters-for-regional-growth','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-04 08:13:09',0),(64758,'2021-04-12 21:46:35','2021-05-06 18:23:56','58baf42e-5bf4-4726-87b6-02107cd43644',1,'/content/Image/Events/MN Health Forum 2018 stacked.jpg','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Events/MN Health Forum 2018 stacked.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 18:23:56',0),(64759,'2021-04-12 21:58:30','2021-05-16 07:51:49','ae305b03-145c-42bd-b73e-b9979cbf815a',1,'/page/news-and-events/latest-news/this-march-wear-purple-and-support-epilepsy-awareness/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/this-march-wear-purple-and-support-epilepsy-awareness','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 07:51:49',0),(64760,'2021-04-12 22:01:08','2021-05-16 11:02:53','f015835a-6dfb-4585-9f4c-4cfbfa794693',1,'/jobs/registered-nurse-required-for-a-casual-position','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/registered-nurse-required-for-a-casual-position','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-16 11:02:53',0),(64761,'2021-04-12 22:05:11','2021-05-16 01:49:30','1edf4348-a102-4903-b40e-2ba160fe6702',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---sandgate','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---sandgate','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,14,'2021-05-16 01:49:30',0),(64762,'2021-04-12 22:10:49','2021-05-15 13:06:10','37dc122a-576c-47eb-84a8-1520408aebfb',1,'/page/health-professionals/Local Positions Vacant/gp-required---mcdowall-village-medical-practice/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/gp-required---mcdowall-village-medical-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 13:06:10',0),(64763,'2021-04-12 22:16:10','2021-05-06 00:39:40','adead91f-bc2e-4b8d-b1b2-2f16ec7b8955',1,'/page/news-and-events/latest-news/brisbane-north-phn’s-covid-19-response','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/brisbane-north-phn’s-covid-19-response','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-06 00:39:40',0),(64764,'2021-04-12 22:20:39','2021-05-09 14:30:39','2e522c3b-aac7-4385-b35f-eab9d0a151ff',1,'/jobs/psychologist-australian-doctors-clinic-kallangur','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/psychologist-australian-doctors-clinic-kallangur','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,16,'2021-05-09 14:30:39',0),(64765,'2021-04-12 22:22:18','2021-05-15 13:46:20','92206a20-8a05-4c51-97a8-9aeb73da66f0',1,'/jobs/cic-medical-centre','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/cic-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-15 13:46:20',0),(64766,'2021-04-12 22:25:43','2021-05-10 07:33:20','899a8ebb-3a04-4b62-9351-10487ed716fd',1,'/content/Document/Privacy Statement_PHN.pdf','','35.233.170.71','Go-http-client/1.1','Template not found: content/Document/Privacy Statement_PHN.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-10 07:33:20',0),(64767,'2021-04-12 22:31:50','2021-05-15 12:08:27','d80dcf5c-964b-4001-b7be-259d1177128d',1,'/page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health-april-2017/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health-april-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-15 12:08:27',0),(64768,'2021-04-12 22:41:43','2021-05-05 22:54:39','d263a445-2c1c-4ae5-80e5-aeef00399ce7',1,'/content/Document/Primary care liaison/MNHHS RBWH Ref v6_2 MD.rtf','http://www.brisbanenorthphn.org.au/content/Document/Primary%20care%20liaison/MNHHS%20RBWH%20Ref%20v6_2%20MD.rtf','34.94.135.136','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/MNHHS RBWH Ref v6_2 MD.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-05 22:54:39',0),(64769,'2021-04-12 22:46:32','2021-05-16 07:29:21','9442d56e-eccb-456e-aead-d16c05aa7aba',1,'/jobs/part-time-receptionist','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/part-time-receptionist','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 07:29:21',0),(64770,'2021-04-12 22:46:38','2021-04-12 22:46:38','09320cd4-510f-41f0-8b64-566279846105',1,'/jobs/general-practitioner-indooroopilly-family-practice','','207.46.13.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/general-practitioner-indooroopilly-family-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-12 22:46:38',0),(64771,'2021-04-12 23:13:05','2021-05-16 10:40:46','729105c6-e47c-4eca-ad6c-67419052c4c4',1,'/events/immunisation-catch-up-event-for-practice-nurses','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/immunisation-catch-up-event-for-practice-nurses','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,30,'2021-05-16 10:40:46',0),(64772,'2021-04-12 23:18:56','2021-05-16 05:08:00','7727a20d-ab68-4546-88c2-ce90b3abf2a3',1,'/page/about/commissioning/consortium-and-commissioning-toolkit','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/commissioning/consortium-and-commissioning-toolkit','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 05:08:00',0),(64773,'2021-04-12 23:21:07','2021-05-17 03:13:42','fa38fd7c-c3a8-48a5-9f31-c46cf1ad35dd',1,'/page/news-and-events/events/archive/connecting-asthma-care-symposium/','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/connecting-asthma-care-symposium','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-17 03:13:42',0),(64774,'2021-04-12 23:22:13','2021-04-29 19:43:11','526f2378-ef4c-4735-b556-f24249415e6b',1,'/jobs/general-practice-nurse','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/general-practice-nurse','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-29 19:43:11',0),(64775,'2021-04-12 23:23:53','2021-05-16 01:28:35','c8aa40a4-2259-45a7-a3e6-e0e532eec723',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---albany-creek-2','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---albany-creek-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-16 01:28:35',0),(64776,'2021-04-12 23:24:03','2021-05-16 17:18:39','79a1dfce-7b66-4420-abbd-b606aa3cdc3e',1,'/events/pallipharm-workshop-8','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/pallipharm-workshop-8','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,26,'2021-05-16 17:18:39',0),(64777,'2021-04-12 23:28:28','2021-05-06 03:28:55','cc25e2d9-f66a-4cee-b401-45f65ba9ed6d',1,'/page/health-professionals/immunisation/resources/immunisation-catch-up-event-resources/','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/immunisation/resources/immunisation-catch-up-event-resources','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-06 03:28:55',0),(64778,'2021-04-12 23:33:01','2021-04-30 21:31:51','1c2455bf-29f9-47e5-bce5-5ff4deeebef3',1,'/jobs/warner-family-medical-practice-gp-wanted','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/warner-family-medical-practice-gp-wanted','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 21:31:51',0),(64779,'2021-04-12 23:39:04','2021-05-17 01:27:00','3e3f07e8-d8b7-449f-9435-a983b6147791',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/brisbane-mind-information-for-referrers/referral-information','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services/brisbane-mind-information-for-referrers/referral-information','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-17 01:27:00',0),(64780,'2021-04-12 23:45:08','2021-05-16 05:25:34','416fddec-d1c8-49b9-84b5-b6894203269d',1,'/page/health-professionals/Local Positions Vacant/psychologist---chermside','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/psychologist---chermside','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 05:25:34',0),(64781,'2021-04-12 23:50:49','2021-05-14 10:23:57','9963fe6a-4c49-495c-8cd0-243582827ef7',1,'/jobs/general-practitioner-ft-pt-northgate','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/general-practitioner-ft-pt-northgate','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-14 10:23:57',0),(64782,'2021-04-12 23:56:19','2021-05-16 07:40:23','28ecaea7-e201-4607-b80e-9a65e84856b7',1,'/page/news-and-events/latest-news/have-your-say-on-healthcare-plan-for-older-people/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/have-your-say-on-healthcare-plan-for-older-people','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-16 07:40:23',0),(64783,'2021-04-13 00:11:01','2021-05-15 17:14:27','869c2639-9bcd-452e-8d42-b2f90a6854ca',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---kallangur-anzac-ave','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---kallangur-anzac-ave','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-15 17:14:27',0),(64784,'2021-04-13 00:11:15','2021-04-23 14:08:25','16b66605-f101-4630-883d-5722a14fe57a',1,'/page/news-and-events/events/upcoming/covid-19-gp-education-online-advice-and-support-for-general-practice/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.80 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/covid-19-gp-education-online-advice-and-support-for-general-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-23 14:08:25',0),(64785,'2021-04-13 00:11:16','2021-05-12 22:56:44','2817e30d-d897-44c1-8fed-8a25ae7bde05',1,'/page/news-and-events/events/upcoming/dist/swiper.js','https://www.brisbanenorthphn.org.au/page/news-and-events/events/upcoming/quarterly-brisbane-north-aged-care-forum-november-2016---caboolture/','203.221.214.231','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36 Edg/90.0.818.56','Template not found: page/news-and-events/events/upcoming/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 22:56:44',0),(64786,'2021-04-13 00:21:15','2021-04-30 22:21:53','ce51c56a-20c9-4085-bab5-2292b0130b46',1,'/page/news-and-events/latest-news/measles-alert-for-brisbane---27-december-2018','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/measles-alert-for-brisbane---27-december-2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 22:21:53',0),(64787,'2021-04-13 00:25:27','2021-05-19 00:38:46','46cc9dda-1087-4e62-ac67-917d0798ca9d',1,'/events/common-challenges-in-primary-care-assessing-cvd-risk-in-primary-care-and-the-local-assessment-and-management-of-acute-chest-pain','','157.55.39.23','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/common-challenges-in-primary-care-assessing-cvd-risk-in-primary-care-and-the-local-assessment-and-management-of-acute-chest-pain','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-19 00:38:46',0),(64788,'2021-04-13 00:32:12','2021-05-01 13:36:57','d3475222-62ba-4ced-b33e-d4d49eb5ec14',1,'/page/publications/partners-in-health/archive/partners-in-health-2017','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/archive/partners-in-health-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 13:36:57',0),(64789,'2021-04-13 00:37:27','2021-05-16 07:54:30','9008acc2-fce9-46ae-b34e-10bae00c5df1',1,'/page/publications/reports-and-plans/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/publications/reports-and-plans','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-16 07:54:30',0),(64790,'2021-04-13 00:42:40','2021-05-15 10:55:03','5e1c4235-88fc-44a2-8406-0527655d382b',1,'/page/news-and-events/latest-news/preventing-measles-in-our-community','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/preventing-measles-in-our-community','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 10:55:03',0),(64791,'2021-04-13 00:43:15','2021-05-12 05:02:44','f150a269-2a3b-4f8a-a322-8a638010f86f',1,'/page/health-professionals/mental-health-services/aboriginal-and-torres-strait-islander-people/','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/mental-health-services/aboriginal-and-torres-strait-islander-people','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-12 05:02:44',0),(64792,'2021-04-13 00:48:24','2021-05-11 04:16:54','157f197f-adf9-47f9-9e2a-c983b7b1c4ab',1,'/events/demystifying-osteoporosis-an-amgen-educational-event','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/demystifying-osteoporosis-an-amgen-educational-event','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-11 04:16:54',0),(64793,'2021-04-13 00:59:13','2021-05-09 05:48:12','a0c3a6d9-d33c-484c-a616-7297f82aadfb',1,'/content/Document/St Andrew\'s Women\'s Men\'s Health Symposium 2017.pdf','','66.249.64.61','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/St Andrew\'s Women\'s Men\'s Health Symposium 2017.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-09 05:48:12',0),(64794,'2021-04-13 01:04:29','2021-05-15 09:09:24','f451a50f-f455-4221-8e0b-2288ddf9d5ab',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---scarborough/','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---scarborough','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 09:09:24',0),(64795,'2021-04-13 01:10:37','2021-05-16 11:52:49','5fda36d9-6a77-4a36-a677-71f0631e3429',1,'/content/Document/APNA STATE form QLD.pdf','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/APNA STATE form QLD.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 11:52:49',0),(64796,'2021-04-13 01:15:21','2021-05-03 03:57:46','427d159b-a910-46e3-a0c9-29d6ab851858',1,'/page/news-and-events/latest-news/helping-people-find-their-reason-to-stay','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/helping-people-find-their-reason-to-stay','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-03 03:57:46',0),(64797,'2021-04-13 01:16:53','2021-04-16 08:01:58','ece66db4-cafe-43a3-997f-5377ccc3d287',1,'/page/health-professionals/Local Positions Vacant/registered-enrolled-nurse-required---turbot-medical-centre/','','207.46.13.74','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/registered-enrolled-nurse-required---turbot-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-16 08:01:58',0),(64798,'2021-04-13 01:26:49','2021-05-18 08:44:20','97b2d3d5-2784-4976-a31d-44ace32c1693',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-required---better-access-medical-clinic/','','40.77.167.35','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-required---better-access-medical-clinic','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-18 08:44:20',0),(64799,'2021-04-13 01:36:32','2021-05-15 08:41:23','2cef7e8b-4ce9-4f5e-8010-fabf38d9d648',1,'/content/Image/Page Banners/Banner_infoforreffers_page.jpg','','139.218.116.79','Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','Template not found: content/Image/Page Banners/Banner_infoforreffers_page.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 08:41:23',0),(64800,'2021-04-13 01:36:32','2021-05-15 08:41:23','0786e45c-4f50-4581-9a88-f7b7d837e046',1,'/content/Image/dist/swiper.js','https://www.brisbanenorthphn.org.au/content/Image/Page%20Banners/Banner_infoforreffers_page.jpg','139.218.116.79','Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','Template not found: content/Image/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-15 08:41:23',0),(64801,'2021-04-13 01:38:29','2021-05-12 21:40:36','28a2aaec-115a-458b-83ab-f493c973cf1e',1,'/jobs/general-practitioner-bardon-rainworth-medical-centre','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/general-practitioner-bardon-rainworth-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-12 21:40:36',0),(64802,'2021-04-13 01:55:12','2021-05-17 22:24:25','34e1ff61-c331-496a-85bf-1062626024bd',1,'/content/Image/News Images/Drummond, Shaun-preferred.jpg','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Image/News Images/Drummond, Shaun-preferred.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-17 22:24:25',0),(64803,'2021-04-13 02:01:59','2021-05-11 07:17:19','7f576a19-b21b-4ff5-b2fb-6560c6ea8549',1,'/content/Image/hiking.jpg','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/hiking.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-11 07:17:19',0),(64804,'2021-04-13 02:07:31','2021-05-19 02:11:48','39a917e7-9277-4eef-b5ea-49d3e197954e',1,'/content/Document/Recovery/Brisbane MIND Plus referral through HealthPathwaysV3.pdf','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Recovery/Brisbane MIND Plus referral through HealthPathwaysV3.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-19 02:11:48',0),(64805,'2021-04-13 02:19:01','2021-05-16 00:42:49','78687421-c888-4b2f-a0cb-2a82ac93eecd',1,'/vendor/.env','','142.93.169.146','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: vendor/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-16 00:42:49',0),(64806,'2021-04-13 02:19:03','2021-04-25 00:19:49','d398e12c-3fed-4ef3-acd1-c0c71fdafe66',1,'/storage/.env','','185.196.3.93','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36','Template not found: storage/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-04-25 00:19:49',0),(64807,'2021-04-13 02:19:05','2021-05-16 00:42:57','a785bbb6-db27-4476-a20b-530bc7b74cf3',1,'/public/.env','','142.93.169.146','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: public/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-16 00:42:57',0),(64808,'2021-04-13 02:28:53','2021-05-01 23:36:59','360a79cf-9c4a-43b7-827f-f8f0d3e0c95f',1,'/page/news-and-events/latest-news/practice-incentives-program-pip-quality-improvement-qi-incentive-payment-update-–-november-2019','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/practice-incentives-program-pip-quality-improvement-qi-incentive-payment-update-–-november-2019','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 23:36:59',0),(64809,'2021-04-13 02:34:28','2021-05-15 04:30:04','665841fb-99d8-4d0c-9349-3e54c1e556e5',1,'/content/Document/Network Link_09_September_FINAL_WEB_LowRes.pdf','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Network Link_09_September_FINAL_WEB_LowRes.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 04:30:04',0),(64810,'2021-04-13 02:35:47','2021-05-11 17:44:02','d1861418-df77-4718-bc23-3f46d91f1601',1,'/content/Document/Primary care liaison/Specialists List_RBWH_6_2(1).pdf','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Primary care liaison/Specialists List_RBWH_6_2(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-11 17:44:02',0),(64811,'2021-04-13 02:39:58','2021-05-15 16:53:19','c8f550c0-c55f-4dc4-bf96-3575a0d9607b',1,'/content/Document/Pathways/Interpretation of Asthma Score_table to link.pdf','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Interpretation of Asthma Score_table to link.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 16:53:19',0),(64812,'2021-04-13 02:40:10','2021-05-13 05:23:05','8addfd0e-83a5-4a55-9387-2b0b8602d6f8',1,'/content/Document/Templates/SaAS-CCDT-INFOSHEET.pdf','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Templates/SaAS-CCDT-INFOSHEET.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-13 05:23:05',0),(64813,'2021-04-13 02:44:09','2021-05-02 01:39:52','1f5a67ce-bba2-46ed-ac45-d7c66bff718f',1,'/page/health-professionals/Local Positions Vacant/experienced-medical-receptionist---bridgeman-family-practice/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/experienced-medical-receptionist---bridgeman-family-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-02 01:39:52',0),(64814,'2021-04-13 02:50:24','2021-05-12 04:26:38','28c583ba-aa05-4a1d-b4ac-26e0cb4d1543',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---lutwyche/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---lutwyche','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 04:26:38',0),(64815,'2021-04-13 02:55:05','2021-05-10 10:07:39','e3d4a9d3-7f54-4380-b341-c586762eed08',1,'/events/suicide-bereavement-a-conversation-of-lived-experience-webinar','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/suicide-bereavement-a-conversation-of-lived-experience-webinar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-10 10:07:39',0),(64816,'2021-04-13 02:59:58','2021-04-15 08:50:46','83af9228-1e09-4b2e-83b0-2705a28a031b',1,'/content/Document/Brisbane MIND Provider List September 2016(8).pdf','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List September 2016(8).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-15 08:50:46',0),(64817,'2021-04-13 03:08:32','2021-05-12 01:57:56','3fb44193-1c12-4965-a87e-56b315859800',1,'/page/news-and-events/events/upcoming/nextcare-health-conference/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/nextcare-health-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-12 01:57:56',0),(64818,'2021-04-13 03:09:17','2021-04-13 03:09:17','03444878-5e39-4828-8067-f9cabc927803',1,'/page/news-and-events/events/upcoming/arthritis-queensland---19th-annual-health-professionals-seminar/','','66.249.65.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/arthritis-queensland---19th-annual-health-professionals-seminar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 03:09:17',0),(64819,'2021-04-13 03:17:37','2021-05-12 15:55:51','a60b0799-43f7-4802-9731-0d48aced6aaf',1,'/page/news-and-events/latest-news/a-new-pathway-of-antenatal-and-postnatal-care-in-caboolture/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/a-new-pathway-of-antenatal-and-postnatal-care-in-caboolture','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-12 15:55:51',0),(64820,'2021-04-13 03:22:06','2021-05-16 07:39:58','5cc9efcf-ef16-4165-9635-395f507dd34f',1,'/page/news-and-events/latest-news/gpwsi/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/gpwsi','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-16 07:39:58',0),(64821,'2021-04-13 03:24:07','2021-04-13 03:24:07','2c5c5077-f993-43bc-95bd-dc7d69d55c74',1,'/page/health-professionals/Local Positions Vacant/gp-required---kedron-wavell-medical-centre/','','207.46.13.106','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/gp-required---kedron-wavell-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 03:24:07',0),(64822,'2021-04-13 03:26:43','2021-05-15 18:46:37','405b6d33-107a-44ac-906e-8bbbf5bf7128',1,'/page/health-professionals/Local Positions Vacant/vr-skin-doctor---taigum','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/vr-skin-doctor---taigum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-15 18:46:37',0),(64823,'2021-04-13 03:29:27','2021-05-14 22:40:31','5b906e7a-5760-4f49-80f2-759f3b81ef73',1,'/jobs/vr-gp-needed-immediate-start-at-elysian-medical-centre','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/vr-gp-needed-immediate-start-at-elysian-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-14 22:40:31',0),(64824,'2021-04-13 03:37:24','2021-05-13 03:18:22','9983f2e3-3789-4539-950a-c5eeef26e5e4',1,'/content/Document/Paediatric Services Directory - Metro North District_FINAL_v3.0.pdf','','66.249.66.153','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Paediatric Services Directory - Metro North District_FINAL_v3.0.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-13 03:18:22',0),(64825,'2021-04-13 03:42:44','2021-05-16 07:48:25','f0d41f64-aefc-4c53-8483-db584612d97b',1,'/page/news-and-events/latest-news/over-50-gps-receive-maternity-shared-care-training-at-latest-workshop/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/over-50-gps-receive-maternity-shared-care-training-at-latest-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-16 07:48:25',0),(64826,'2021-04-13 03:43:02','2021-05-16 08:46:32','66e98512-5a2b-4dbd-8a58-d6cce8a2a7dc',1,'/page/news-and-events/latest-news/kenmore-clinics-swings-into-action','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/kenmore-clinics-swings-into-action','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 08:46:32',0),(64827,'2021-04-13 03:48:15','2021-05-14 05:09:51','ea76ea22-c245-4ec0-81b3-d1147b3f6525',1,'/content/Document/Planning/FIN_AAWP_Core Flexible 18-19_180717 WEB.docx','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Planning/FIN_AAWP_Core Flexible 18-19_180717 WEB.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-14 05:09:51',0),(64828,'2021-04-13 03:51:07','2021-05-01 08:37:32','be67fd17-54fc-4faa-b7a3-8aad32e6f358',1,'/content/Document/Recovery/New mental health services in Brisbane North 2020_200219-web.pdf','http://www.brisbanenorthphn.org.au/content/Document/Recovery/New%20mental%20health%20services%20in%20Brisbane%20North%202020_200219-web.pdf','34.73.220.108','Go-http-client/1.1','Template not found: content/Document/Recovery/New mental health services in Brisbane North 2020_200219-web.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-01 08:37:32',0),(64829,'2021-04-13 03:55:39','2021-05-17 16:34:56','416e9ee0-b5ce-4c27-8661-6c87c9eed982',1,'/content/Image/Staff/Jeff_Cheverton_2015_4.jpg','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Staff/Jeff_Cheverton_2015_4.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-17 16:34:56',0),(64830,'2021-04-13 04:01:29','2021-05-16 05:30:51','87cc7f3a-541d-4618-8733-0fb6713c6998',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---burpengary','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---burpengary','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 05:30:51',0),(64831,'2021-04-13 04:08:04','2021-05-11 15:31:02','8f602a8f-7466-4d3e-abcc-75c6cc7a56e0',1,'/page/news-and-events/events/upcoming/wesley-lifeforce-suicide-prevention-practice-staff-workshop---chermside-2/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/wesley-lifeforce-suicide-prevention-practice-staff-workshop---chermside-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-11 15:31:02',0),(64832,'2021-04-13 04:09:22','2021-05-06 06:38:14','6fbce416-1d57-40bb-a3a6-43ac74fb5d55',1,'/content/Document/DRA_MNHF_PROGRAM_WEB.pdf','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/DRA_MNHF_PROGRAM_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-06 06:38:14',0),(64833,'2021-04-13 04:20:26','2021-04-30 20:22:36','b7f34139-a56c-47d2-93cd-dfa9297405ce',1,'/content/Document/Engagement/FINAL_REP_HNA 2019-22_Updated After Hours Section_191312 (1).pdf','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Engagement/FINAL_REP_HNA 2019-22_Updated After Hours Section_191312 (1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-30 20:22:36',0),(64834,'2021-04-13 04:20:54','2021-05-17 09:30:48','c80dbeb1-51f8-4d9e-aad3-608be1a4e27a',1,'/page/news-and-events/events/upcoming/what-can-cat-do-for-me-north-lakes/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/what-can-cat-do-for-me-north-lakes','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-17 09:30:48',0),(64835,'2021-04-13 04:26:33','2021-05-18 16:02:32','dbf1154b-cdfa-4896-be17-187aeaa7cb0f',1,'/page/home/style-guide','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/style-guide','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 16:02:32',0),(64836,'2021-04-13 04:32:59','2021-05-08 03:59:41','d093ce7b-1662-49bc-bc5d-d0be05e8c215',1,'/page/news-and-events/events/upcoming/supporting-mental-health-treatment-in-primary-care','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/supporting-mental-health-treatment-in-primary-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-08 03:59:41',0),(64837,'2021-04-13 04:33:03','2021-05-04 22:50:11','5c921489-b823-4191-affc-326dddc43434',1,'/page/news-and-events/events/upcoming/trauma-informed-care-and-practice-working-with-people-with-a-disability/','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/trauma-informed-care-and-practice-working-with-people-with-a-disability','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-04 22:50:11',0),(64838,'2021-04-13 04:33:39','2021-04-14 22:12:56','0733574a-a36d-4a0b-8e55-83af5b3a6595',1,'/page/news-and-events/events/archive/trauma-informed-care-and-practice-working-with-people-with-a-disability/','','207.46.13.5','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/trauma-informed-care-and-practice-working-with-people-with-a-disability','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-14 22:12:56',0),(64839,'2021-04-13 04:37:23','2021-05-16 07:41:53','de4c9653-486c-4a8d-a2f1-3c9cdaf866af',1,'/page/news-and-events/latest-news/home-exercise-cuts-healthcare-need-among-elderly/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/home-exercise-cuts-healthcare-need-among-elderly','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,28,'2021-05-16 07:41:53',0),(64840,'2021-04-13 04:41:22','2021-04-27 10:12:41','5b6058de-c11a-4076-9961-5149ee07a785',1,'/content/Document/Eating and Weight Disorders List.pdf','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Eating and Weight Disorders List.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-27 10:12:41',0),(64841,'2021-04-13 04:44:05','2021-05-14 10:07:31','bb2eb130-73be-42c0-921f-81dde530b426',1,'/content/Document/Maps/Brisbane North PCLOs with map 2019.pdf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Maps/Brisbane North PCLOs with map 2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-14 10:07:31',0),(64842,'2021-04-13 04:50:21','2021-05-07 16:24:15','6b729021-3c41-4263-8e81-4fa8db7f4c35',1,'/page/about/commissioning/commissioning-principles/','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/commissioning/commissioning-principles','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-07 16:24:15',0),(64843,'2021-04-13 04:50:34','2021-04-17 08:17:06','415fbcb7-edde-420a-8f6c-dca350a9a6fe',1,'/content/Document/Media Releases/160420_Health Needs Assessment now available.pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%20Releases/160420_Health%20Needs%20Assessment%20now%20available.pdf','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/Media Releases/160420_Health Needs Assessment now available.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-17 08:17:06',0),(64844,'2021-04-13 05:06:28','2021-05-07 08:09:22','1fdd1db3-c934-46f6-81ad-ea70b3546b76',1,'/content/Document/Templates/4.7/Specialists List_Caboolture Hospital_4_7.pdf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.7/Specialists%20List_Caboolture%20Hospital_4_7.pdf','34.121.182.57','Go-http-client/1.1','Template not found: content/Document/Templates/4.7/Specialists List_Caboolture Hospital_4_7.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-07 08:09:22',0),(64845,'2021-04-13 05:10:26','2021-05-18 23:09:41','9e2e10e8-0acb-411f-b9ef-24c076563209',1,'/page/publications/partners-in-health/partners-in-health---october-2017','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/partners-in-health---october-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 23:09:41',0),(64846,'2021-04-13 05:10:44','2021-05-05 12:29:51','c50d7a1c-1444-41a0-aae1-5bb668d4f89b',1,'/yearinreview/2017-18/wp-content/uploads/2018/11/Aged-care-breakfast-1-1.jpg','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/wp-content/uploads/2018/11/Aged-care-breakfast-1-1.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-05 12:29:51',0),(64847,'2021-04-13 05:14:50','2021-05-03 10:56:37','ff834acb-ef5b-4796-a7c3-99c0ad7c16da',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---north-lakeschermside/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---north-lakeschermside','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-03 10:56:37',0),(64848,'2021-04-13 05:16:53','2021-05-06 05:06:05','3f9977b1-2f6d-4228-8039-72c39b671c22',1,'/events/virtual-jam-joint-musculoskeletal-pain-session','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/virtual-jam-joint-musculoskeletal-pain-session','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-06 05:06:05',0),(64849,'2021-04-13 05:19:07','2021-05-14 05:57:48','2506d8e5-46d1-4087-8b45-4a7e9753ecb9',1,'/content/Document/Brisbane North PHN Advertising Specifications_2015-16.pdf','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane North PHN Advertising Specifications_2015-16.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 05:57:48',0),(64850,'2021-04-13 05:19:51','2021-04-24 08:16:38','f3e9fdf3-7dcf-4a5a-b38e-1721eef3f998',1,'/page/health-professionals/Local Positions Vacant/other-health-care-professional---caboolture/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/other-health-care-professional---caboolture','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 08:16:38',0),(64851,'2021-04-13 05:22:33','2021-05-18 10:24:39','64c05e4f-4bcb-4696-89ae-f7b36ed90d65',1,'/tel:0402159530','https://www.google.com/','34.127.82.46','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36','Template not found: tel:0402159530','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,32,'2021-05-18 10:24:39',0),(64852,'2021-04-13 05:23:13','2021-05-01 00:48:33','929c01c7-56e7-42ff-8f32-18d321a39ff9',1,'/content/Document/Network Link/Network Link_1_January_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%20Link/Network%20Link_1_January_WEB.pdf','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/Network Link/Network Link_1_January_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 00:48:33',0),(64853,'2021-04-13 05:27:15','2021-04-28 06:29:01','fed95835-268d-4d8e-a47e-d5d50d22b5c4',1,'/content/Document/Pathways/Using inhalers and or spacers_link_TC_141112.pdf','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Using inhalers and or spacers_link_TC_141112.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-28 06:29:01',0),(64854,'2021-04-13 05:28:33','2021-05-07 13:25:35','c01b1122-6f67-48c7-9d4b-ebfd4707aba6',1,'/content/Document/COVID-19/COVID-19 Financial support measures for service providers.pdf','http://www.brisbanenorthphn.org.au/content/Document/COVID-19/COVID-19%20Financial%20support%20measures%20for%20service%20providers.pdf','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/COVID-19/COVID-19 Financial support measures for service providers.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-07 13:25:35',0),(64855,'2021-04-13 05:33:23','2021-04-13 05:33:23','3578a20b-78d2-444f-bc67-a9ea7fdcca57',1,'/page/news-and-events/events/upcoming/accreditation-insights-into-racgp-5th-edition-update-support-and-resources---lutwyche/','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/accreditation-insights-into-racgp-5th-edition-update-support-and-resources---lutwyche','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 05:33:23',0),(64856,'2021-04-13 05:33:55','2021-05-05 18:52:23','32ada3b9-8140-4b96-b7f5-45d69472aa9c',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-bribie-island-mc/','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-bribie-island-mc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-05 18:52:23',0),(64857,'2021-04-13 05:35:14','2021-05-13 01:22:11','7c5b66fc-7f2f-410d-b44b-43f36d033f2c',1,'/content/Document/Templates/4.8/Specialists List_RBWH_4_8.pdf','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.8/Specialists List_RBWH_4_8.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-13 01:22:11',0),(64858,'2021-04-13 05:35:15','2021-05-09 11:56:19','392e39a0-2971-469d-b6a1-42568d05a59a',1,'/content/Document/Templates/6.1/MNHHS RBWH Ref v6_1.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/MNHHS%20RBWH%20Ref%20v6_1.rtf','35.192.197.124','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/MNHHS RBWH Ref v6_1.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 11:56:19',0),(64859,'2021-04-13 05:47:01','2021-04-23 16:36:12','56bbe101-7481-4fe3-9182-4e1c0cf6e257',1,'/content/Image/Page Banners/Banner_page_spotlight2.jpg','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Page Banners/Banner_page_spotlight2.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-23 16:36:12',0),(64860,'2021-04-13 05:48:19','2021-05-18 22:43:51','053327fb-b1bb-43fe-8619-af4f3cf99c15',1,'/page/health-professionals/mental-health-services/suicide-prevention-services/','','157.90.181.206','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','Template not found: page/health-professionals/mental-health-services/suicide-prevention-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,24,'2021-05-18 22:43:51',0),(64861,'2021-04-13 05:58:40','2021-05-10 19:54:15','d6bfa534-6531-492c-870d-9369b0312897',1,'/page/home/banners/latest-news-covid-19','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/banners/latest-news-covid-19','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-10 19:54:15',0),(64862,'2021-04-13 05:59:43','2021-04-13 05:59:43','282a67e6-3eb1-4723-a36d-b2a9f58949fa',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/information-for-providers/dist/swiper.js','https://www.brisbanenorthphn.org.au/page/health-professionals/mental-health-services/brisbane-mind-services/information-for-providers/redicase-information/','193.114.98.74','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services/information-for-providers/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 05:59:43',0),(64863,'2021-04-13 06:05:05','2021-05-07 23:58:20','d76bea36-3a03-4ae8-904f-bde246f5a869',1,'/content/Document/Templates/Brisbane MIND/MIND Referral PDF V3 (Published).pdf','http://www.brisbanenorthphn.org.au/content/Document/Templates/Brisbane%20MIND/MIND%20Referral%20PDF%20V3%20(Published).pdf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Templates/Brisbane MIND/MIND Referral PDF V3 (Published).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-07 23:58:20',0),(64864,'2021-04-13 06:21:48','2021-04-23 02:05:02','f9bc2f09-79d6-4b1e-9ffc-49da6fc34b38',1,'/page/about/careers/link-me-trial-participant-enrollment-officer/','','167.114.211.237','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/about/careers/link-me-trial-participant-enrollment-officer','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-23 02:05:02',0),(64865,'2021-04-13 06:30:11','2021-05-15 16:49:00','02b8645d-da05-4d6b-8b28-03bf00588c85',1,'/page/news-and-events/events/upcoming/brisbane-north-annual-aged-care-forum-the-age-of-ageing/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/brisbane-north-annual-aged-care-forum-the-age-of-ageing','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 16:49:00',0),(64866,'2021-04-13 06:36:29','2021-04-25 06:44:06','e587b95c-6b7f-4306-85bc-c68b0584520e',1,'/page/news-and-events/2017-news','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/2017-news','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-25 06:44:06',0),(64867,'2021-04-13 06:50:10','2021-05-15 15:40:49','82c59e32-256a-4168-ac0f-9e02b987a292',1,'/content/Document/Network Link/Network Link_3_March_web.pdf','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Network Link/Network Link_3_March_web.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-15 15:40:49',0),(64868,'2021-04-13 06:55:08','2021-05-08 17:10:37','bb301bfe-305f-42ad-bd99-ac3ae7fb6883',1,'/page/news-and-events/latest-news/registrations-now-open-trajectories-of-dying-workshop','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/registrations-now-open-trajectories-of-dying-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-08 17:10:37',0),(64869,'2021-04-13 06:56:39','2021-04-13 06:56:39','2cf4b69a-f178-4300-a85a-c2d9a0a4c76c',1,'/search/','','84.54.58.82','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0','Template not found: search','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 06:56:39',0),(64870,'2021-04-13 06:59:06','2021-05-05 02:43:59','b510dde9-8aa8-41aa-ab32-10ca18897970',1,'/events/webinar-clinicians-hub-and-model-of-care-for-childhood-obesity','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/webinar-clinicians-hub-and-model-of-care-for-childhood-obesity','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-05 02:43:59',0),(64871,'2021-04-13 07:00:47','2021-04-30 07:38:21','440d7720-3cc7-4736-b6db-be2720a1ef3c',1,'/page/health-professionals/multicultural-health/interpreting-for-allied-health-professionals-program/','','95.91.15.174','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/health-professionals/multicultural-health/interpreting-for-allied-health-professionals-program','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-30 07:38:21',0),(64872,'2021-04-13 07:07:36','2021-05-04 11:50:39','05764b48-b858-4ec0-978f-ac45a8551a62',1,'/content/Image/Page Banners/Banner_page_a kid.jpg','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Page Banners/Banner_page_a kid.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-04 11:50:39',0),(64873,'2021-04-13 07:17:25','2021-05-10 15:31:35','6fc25fa2-f7b8-42ed-8267-fc68f3e603fe',1,'/events/beyond-the-pandemic-2','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/beyond-the-pandemic-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-10 15:31:35',0),(64874,'2021-04-13 07:24:01','2021-05-18 04:52:37','ef4c3eaa-cfef-4eb9-b690-f5481bac8632',1,'/page/home/quicklinks/mental-health-tenders-open/','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/home/quicklinks/mental-health-tenders-open','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-18 04:52:37',0),(64875,'2021-04-13 07:24:40','2021-05-18 10:24:51','b392f8e9-7ecb-4a00-acd6-cb628d732802',1,'/tel:0433641310','https://www.google.com/','34.127.82.46','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','Template not found: tel:0433641310','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,29,'2021-05-18 10:24:51',0),(64876,'2021-04-13 07:28:47','2021-05-18 11:01:32','cc4f26f0-3404-4514-b68f-acab5863f836',1,'/events/a-surgical-approach-at-the-cutting-edge','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/a-surgical-approach-at-the-cutting-edge','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-18 11:01:32',0),(64877,'2021-04-13 07:30:02','2021-05-06 15:24:54','021ae801-31ac-429e-9aae-f877d22a8f49',1,'/content/Document/Brisbane MIND Provider List February 2017(10).pdf','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Brisbane MIND Provider List February 2017(10).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-06 15:24:54',0),(64878,'2021-04-13 07:35:34','2021-05-03 08:23:19','1768e777-37ca-4af5-a5ef-8106277e5f82',1,'/yearinreview/mental-health-suicide-prevention-and-alcohol-and-other-drug-services/','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/mental-health-suicide-prevention-and-alcohol-and-other-drug-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-03 08:23:19',0),(64879,'2021-04-13 07:36:41','2021-05-06 19:34:11','3294a130-3eae-4ac8-b421-e64ffa59186b',1,'/content/Document/Templates/4.5/MNHHS Paediatric Referral v4.5_.4W7','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.5/MNHHS Paediatric Referral v4.5_.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-06 19:34:11',0),(64880,'2021-04-13 07:36:48','2021-05-16 08:28:14','e16071bb-5999-4aac-816a-3d4088cd4e4a',1,'/content/Document/Templates/4.5/MNHHS Redcliffe Referral v4.5_.4W7','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.5/MNHHS Redcliffe Referral v4.5_.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 08:28:14',0),(64881,'2021-04-13 07:36:56','2021-05-10 10:54:04','8c808615-fe20-4a5b-ab0e-33ed7645f98a',1,'/content/Media/MNHHS Caboolture Referral v4.7_.4W7','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Media/MNHHS Caboolture Referral v4.7_.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-10 10:54:04',0),(64882,'2021-04-13 07:37:05','2021-04-13 07:42:22','738fc642-74ae-43fc-af23-8d53762e929e',1,'/content/Media/MNHHS Paediatric Referral v4.7_.4W7','','78.46.61.245','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: content/Media/MNHHS Paediatric Referral v4.7_.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-13 07:42:22',0),(64883,'2021-04-13 07:37:14','2021-04-13 07:42:33','e49f3669-8775-4fbe-bf45-2d5203b79fe3',1,'/content/Media/MNHHS Palliative Care Referral v4.7_.4W7','','78.46.61.245','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: content/Media/MNHHS Palliative Care Referral v4.7_.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-13 07:42:33',0),(64884,'2021-04-13 07:41:27','2021-04-13 07:41:27','2b22ac3c-0381-40e2-aa7c-781f35da0504',1,'/content/Document/Templates/4.5/MNHHS Maternity Referral v4.5_.4W7','','78.46.61.245','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: content/Document/Templates/4.5/MNHHS Maternity Referral v4.5_.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 07:41:27',0),(64885,'2021-04-13 07:41:44','2021-04-13 07:41:44','03e58ced-6e9a-46ca-812e-cfa3f7a2345c',1,'/content/Document/Templates/4.5/MNHHS Palliative Care Referral v4.5_.4W7','','78.46.61.245','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: content/Document/Templates/4.5/MNHHS Palliative Care Referral v4.5_.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 07:41:44',0),(64886,'2021-04-13 07:41:52','2021-04-13 07:41:52','c48018f8-5883-4e72-91a2-d5ce7d141d44',1,'/content/Document/Templates/4.5/MNHHS RBWH Referral v4.5_.4W7','','78.46.61.245','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: content/Document/Templates/4.5/MNHHS RBWH Referral v4.5_.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 07:41:52',0),(64887,'2021-04-13 07:42:13','2021-05-12 19:21:30','f3607b4f-ee6b-493c-8e41-6f862a477036',1,'/content/Media/MNHHS Maternity Referral v4.7_.4W7','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Media/MNHHS Maternity Referral v4.7_.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 19:21:30',0),(64888,'2021-04-13 07:42:42','2021-04-13 07:42:42','1855940a-bfbb-4bd5-a0ac-71516b7165c0',1,'/content/Media/MNHHS RBWH Referral v4.7_.4W7','','78.46.61.245','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: content/Media/MNHHS RBWH Referral v4.7_.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 07:42:42',0),(64889,'2021-04-13 07:42:52','2021-04-13 07:42:52','c2bb6f2a-6fa0-49a5-ba58-781da3af43ce',1,'/content/Media/MNHHS Redcliffe Referral v4.7_.4W7','','78.46.61.245','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: content/Media/MNHHS Redcliffe Referral v4.7_.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 07:42:52',0),(64890,'2021-04-13 07:43:02','2021-05-15 11:02:22','d8b071b8-a8b2-4c7e-bf2c-d9b7a6ff761a',1,'/content/Media/MNHHS TPCH Referral v4.7_.4W7.4W7','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Media/MNHHS TPCH Referral v4.7_.4W7.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-15 11:02:22',0),(64891,'2021-04-13 07:53:18','2021-05-15 04:12:29','2fb9226b-cdc5-4011-abba-df2069147090',1,'/content/Document/Pathways/C-Gyn_6_Investigation_of_intermenstrual_and_postcoital_bleeding_Review_Mar_12.pdf','','116.179.32.164','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','Template not found: content/Document/Pathways/C-Gyn_6_Investigation_of_intermenstrual_and_postcoital_bleeding_Review_Mar_12.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-15 04:12:29',0),(64892,'2021-04-13 08:02:18','2021-05-16 07:50:54','f28b4cbf-73c8-49df-9b62-641c3162de90',1,'/page/news-and-events/latest-news/spotlight-on-alcohol-and-other-drug-services/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/spotlight-on-alcohol-and-other-drug-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-16 07:50:54',0),(64893,'2021-04-13 08:03:21','2021-05-14 18:38:12','5cb33181-58ea-4270-b6ea-409be729473d',1,'/events/using-a-trauma-lens-when-working-with-domestic-and-family-violence','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/using-a-trauma-lens-when-working-with-domestic-and-family-violence','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,15,'2021-05-14 18:38:12',0),(64894,'2021-04-13 08:09:36','2021-05-15 13:33:50','370168a9-179f-4b39-ac63-e754c54b3988',1,'/page/publications/partners-in-health/partners-in-health---february-2018/','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/partners-in-health---february-2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-15 13:33:50',0),(64895,'2021-04-13 08:17:52','2021-05-07 01:13:44','31dcd43d-03c4-4f44-b421-1fa56d527161',1,'/content/Document/Aged-Care-Forum-8Sept.pdf','','40.77.167.36','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Aged-Care-Forum-8Sept.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-07 01:13:44',0),(64896,'2021-04-13 08:22:18','2021-05-15 16:02:12','46a2288c-54cb-40a4-b801-7bc9c9940b2e',1,'/page/about/careers/general-practice-liaison-officer-gplo-the-health-alliance','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/careers/general-practice-liaison-officer-gplo-the-health-alliance','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 16:02:12',0),(64897,'2021-04-13 08:35:03','2021-05-01 13:18:08','b0c8c6ce-fd0b-4a5a-a55a-06d08d7a9cc4',1,'/content/Document/Templates/V5.1 Jan 2018/Best Practice/MNHHS Palliative Ref v5_1_1 BP.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/V5.1%20Jan%202018/Best%20Practice/MNHHS%20Palliative%20Ref%20v5_1_1%20BP.rtf','104.198.141.65','Go-http-client/1.1','Template not found: content/Document/Templates/V5.1 Jan 2018/Best Practice/MNHHS Palliative Ref v5_1_1 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-01 13:18:08',0),(64898,'2021-04-13 08:35:18','2021-05-10 17:46:37','9e0374b9-b4be-44e9-bc47-5603af260fac',1,'/content/Document/Pathways/Cervicogenic Headache_adviceondaily activities including working at a computer_FINAL.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/Cervicogenic%20Headache_adviceondaily%20activities%20including%20working%20at%20a%20computer_FINAL.pdf','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/Pathways/Cervicogenic Headache_adviceondaily activities including working at a computer_FINAL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-10 17:46:37',0),(64899,'2021-04-13 08:40:44','2021-04-30 19:39:08','23fc06ae-ff2d-4edd-b0c7-6a2b005b5a66',1,'/content/Document/Templates/4.9/Specialists List_RBWH_4_9.pdf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.9/Specialists%20List_RBWH_4_9.pdf','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/Templates/4.9/Specialists List_RBWH_4_9.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-30 19:39:08',0),(64900,'2021-04-13 08:47:53','2021-05-13 20:49:43','34dcaabf-f454-4a89-a950-075dfa4ee86a',1,'/page/news-and-events/events/upcoming/private-practice-series-termination-of-employment/','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/private-practice-series-termination-of-employment','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-13 20:49:43',0),(64901,'2021-04-13 08:53:02','2021-05-17 08:25:10','6abe2431-1cdb-4c6a-b350-0bc9979ae499',1,'/page/publications/reports-and-plans/health-needs-assessments/','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/reports-and-plans/health-needs-assessments','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-17 08:25:10',0),(64902,'2021-04-13 08:59:53','2021-04-19 16:55:25','19bdb731-bf9f-4997-9857-62cca9991faa',1,'/content/Document/IMG_1908_People with a lived experience leading change.jpg','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/IMG_1908_People with a lived experience leading change.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-19 16:55:25',0),(64903,'2021-04-13 09:09:15','2021-04-14 01:12:42','46a1bf86-7af5-49b2-937f-a991ccb2c13c',1,'/scripts/image.php/','','150.249.93.83','python-requests/2.11.1','Template not found: scripts/image.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-14 01:12:42',0),(64904,'2021-04-13 09:17:40','2021-04-25 08:07:54','f030859e-ed3b-46f3-ae85-156afbdfb992',1,'/page/news-and-events/latest-news/minister-for-aged-care-visits-morayfield','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/minister-for-aged-care-visits-morayfield','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-25 08:07:54',0),(64905,'2021-04-13 09:23:57','2021-05-07 15:28:53','3bf7de2c-c0b7-4e93-b55b-614db2ea1c07',1,'/jobs/gp-position-full-time-bracken-ridge-qld','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/gp-position-full-time-bracken-ridge-qld','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-07 15:28:53',0),(64906,'2021-04-13 09:26:54','2021-05-18 16:35:29','cef6914f-3a5c-4332-936c-154f7fd08498',1,'/jobs/part-time-team-leader-1','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/part-time-team-leader-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-18 16:35:29',0),(64907,'2021-04-13 09:29:49','2021-05-17 20:47:15','a845a533-5e23-4fff-9223-64a32ee5fcfe',1,'/jobs/part-time-practice-manager-chermside','','157.55.39.35','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/part-time-practice-manager-chermside','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-17 20:47:15',0),(64908,'2021-04-13 09:34:22','2021-05-19 02:04:55','5adefc97-af29-4c70-bbf0-67a719fdf927',1,'/jobs/practice-nurse-medical-receptionist','','157.55.39.35','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/practice-nurse-medical-receptionist','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,16,'2021-05-19 02:04:55',0),(64909,'2021-04-13 09:42:44','2021-04-26 11:15:07','7647d895-545f-4f81-8a20-7a4b8d61fe1f',1,'/events/heal-facilitator-training','','66.249.79.148','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.80 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: events/heal-facilitator-training','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-26 11:15:07',0),(64910,'2021-04-13 09:56:24','2021-05-16 07:53:36','c96159a7-3ce1-45a0-a873-b32939dbfbbf',1,'/page/publications/newsletters/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/publications/newsletters','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-16 07:53:36',0),(64911,'2021-04-13 09:58:06','2021-05-05 00:49:53','dec9f414-0547-4cec-b6b5-11a4eb21c1d7',1,'/content/Document/Pathways/ACU Health Clinic Referral - Brisbane - January15.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/ACU%20Health%20Clinic%20Referral%20-%20Brisbane%20-%20January15.pdf','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/Pathways/ACU Health Clinic Referral - Brisbane - January15.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-05 00:49:53',0),(64912,'2021-04-13 10:02:01','2021-05-11 21:12:18','168b0b8d-4f7d-46af-88eb-1ec6f891cf50',1,'/content/Document/Events/2018/09_10hcvupdateflyerwebinar.pdf','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Events/2018/09_10hcvupdateflyerwebinar.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-11 21:12:18',0),(64913,'2021-04-13 10:07:51','2021-05-07 23:37:33','5a7fa5e8-9b49-431c-9ca5-2bd366a9ace5',1,'/position-type/clinical-nurse','','66.249.75.182','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: position-type/clinical-nurse','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-07 23:37:33',0),(64914,'2021-04-13 10:14:30','2021-05-09 11:18:29','20575055-9061-4bf9-adb1-ab1148573095',1,'/events/focused-psychological-strategies-for-social-workers','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/focused-psychological-strategies-for-social-workers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-09 11:18:29',0),(64915,'2021-04-13 10:19:25','2021-04-15 11:10:31','b7e9cda5-8380-42cf-9421-922fff5652e0',1,'/content/Document/Specialists List_Maternity_4_11.pdf','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Specialists List_Maternity_4_11.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-15 11:10:31',0),(64916,'2021-04-13 10:27:15','2021-05-14 02:54:31','8f9bc549-e5e1-4d6d-93e5-acdc4de6d7f2',1,'/content/Document/Topbar-Brisbane-North-PHN-160711.pdf','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Topbar-Brisbane-North-PHN-160711.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-14 02:54:31',0),(64917,'2021-04-13 10:32:54','2021-05-15 20:24:36','dd158281-9d47-48ef-99de-c5288d6d6ba4',1,'/content/Document/Planning/FIN_DOHHNA Combined_171114.docx','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Planning/FIN_DOHHNA Combined_171114.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 20:24:36',0),(64918,'2021-04-13 10:38:20','2021-04-20 09:24:35','d192d5ea-b508-41f6-8d3f-0dc6af429636',1,'/content/Image/PHN-Facebook-Ads_1200x628_5(1).jpg','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/PHN-Facebook-Ads_1200x628_5(1).jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-20 09:24:35',0),(64919,'2021-04-13 10:49:30','2021-05-14 10:52:47','1c440f50-5834-4442-8695-b98b068bbbab',1,'/content/Document/MNHHS Palliative Referral BP v4_11(2).rtf','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/MNHHS Palliative Referral BP v4_11(2).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-14 10:52:47',0),(64920,'2021-04-13 10:55:26','2021-05-09 17:55:02','ead792ba-10a8-43fa-a288-b6533edde338',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---brisbane','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---brisbane','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 17:55:02',0),(64921,'2021-04-13 11:01:40','2021-05-11 04:44:48','e9553b44-10e7-4781-b4d7-754314181d22',1,'/page/news-and-events/events/upcoming/gp-mental-health-skills-master-class','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/gp-mental-health-skills-master-class','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-11 04:44:48',0),(64922,'2021-04-13 11:06:29','2021-05-18 05:28:04','169e11a3-3372-4229-8e7d-60c903969b59',1,'/content/Document/Brisbane MIND Provider List September 2016 (2).pdf','','40.77.167.45','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List September 2016 (2).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 05:28:04',0),(64923,'2021-04-13 11:07:16','2021-04-13 11:07:16','9017cc95-5112-4bd4-9fc5-4d6eed0b2593',1,'/content/Document/Pathways/HealthPathways Progr','','66.249.65.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Pathways/HealthPathways Progr','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 11:07:16',0),(64924,'2021-04-13 11:08:03','2021-05-15 08:50:16','190e9faf-9c8d-44ee-a7e1-2042738c37eb',1,'/page/health-professionals/Local Positions Vacant/vr-gp---bracken-ridge/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/vr-gp---bracken-ridge','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 08:50:16',0),(64925,'2021-04-13 11:14:39','2021-05-15 17:26:58','30e90740-15f6-4341-be7e-1f9b544d4933',1,'/page/news-and-events/events/upcoming/recognising-diagnosing-and-managing-dementia-in-general-practice/','','66.249.69.63','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/recognising-diagnosing-and-managing-dementia-in-general-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 17:26:58',0),(64926,'2021-04-13 11:14:50','2021-04-13 11:14:50','e8ccbfd1-9561-4ad9-a5ab-38a9e7e00315',1,'/page/health-professionals/Local Positions Vacant/general-practice-manager--mango-hill-bartchall/','','66.249.65.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/general-practice-manager--mango-hill-bartchall','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 11:14:50',0),(64927,'2021-04-13 11:20:49','2021-05-18 02:07:52','8b7c04b6-3eeb-499a-ac70-de8ae6b19e6f',1,'/page/about/careers/reporting-and-database-officer-information-services/','','40.77.167.15','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers/reporting-and-database-officer-information-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 02:07:52',0),(64928,'2021-04-13 11:22:03','2021-05-16 22:01:34','c049740d-bfd1-458e-a280-0e7e1b564911',1,'/content/Document/CNRC - POMIN flyer rego April.pdf','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/CNRC - POMIN flyer rego April.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-16 22:01:34',0),(64929,'2021-04-13 11:23:13','2021-05-12 03:11:34','10cf917c-3a22-4356-ac9f-e2b233af5293',1,'/content/Document/Primary care liaison/VMP 2018 MNPHU.docx','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Primary care liaison/VMP 2018 MNPHU.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 03:11:34',0),(64930,'2021-04-13 11:26:40','2021-05-18 18:27:25','8504d937-8dad-4a71-9bb1-c9840223f83e',1,'/page/news-and-events/latest-news/general-practice-staff-upskill-with-medical-assisting-studies/','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/general-practice-staff-upskill-with-medical-assisting-studies','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-18 18:27:25',0),(64931,'2021-04-13 11:28:02','2021-04-14 22:29:23','17a1577d-566a-465d-b36d-f1dbca8b567d',1,'/content/Document/Brisbane MIND Provider List June 2017.pdf','','40.77.167.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List June 2017.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-14 22:29:23',0),(64932,'2021-04-13 11:31:35','2021-05-06 05:13:12','fe043fde-254f-4922-91ae-c12645ffb780',1,'/content/Document/MNHF presentations 2017/Dr Kannan Natarajan and Elizabeth Davis - Connecting Care through Telehealth 170531.pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/MNHF presentations 2017/Dr Kannan Natarajan and Elizabeth Davis - Connecting Care through Telehealth 170531.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-06 05:13:12',0),(64933,'2021-04-13 11:45:40','2021-05-18 18:24:41','a97d94a7-120f-4247-94a7-55068fbbdc77',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---indooroopilly/','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---indooroopilly','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-18 18:24:41',0),(64934,'2021-04-13 11:51:02','2021-04-13 11:51:02','4a72732c-54b0-4f22-b25b-2e154d5ab5c3',1,'/page/health-professionals/Local Positions Vacant/practice-nurse/','','207.46.13.5','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 11:51:02',0),(64935,'2021-04-13 12:03:03','2021-05-11 23:52:45','f3ce0173-6f12-450f-9273-f50be6ae1a07',1,'/jobs/narangba-doctors','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/narangba-doctors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-11 23:52:45',0),(64936,'2021-04-13 12:04:46','2021-04-13 12:04:46','82bf10f5-27cf-4fa3-9d9c-3d90f8525696',1,'/Applications/Adobe InDesign CC 2017/Adobe InDesign CC 2017.app/Contents/MacOS/Communications and Planning/Current Activities/Communications/Publications/Network Link/Template/2016/Network Link_09_October_2016.pdf','','66.249.65.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: Applications/Adobe InDesign CC 2017/Adobe InDesign CC 2017.app/Contents/MacOS/Communications and Planning/Current Activities/Communications/Publications/Network Link/Template/2016/Network Link_09_October_2016.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 12:04:46',0),(64937,'2021-04-13 12:05:29','2021-05-11 20:38:52','46459614-2283-4e23-a06a-a820d1f50172',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---redcliffe','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---redcliffe','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-11 20:38:52',0),(64938,'2021-04-13 12:17:11','2021-05-18 04:05:08','bac105d8-8923-4298-a0c0-42fdf1255fa9',1,'/xmlrpc.php','','141.168.46.243','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko','Template not found: xmlrpc.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,52,'2021-05-18 04:05:08',0),(64939,'2021-04-13 12:17:51','2021-04-24 22:18:36','cf14ea0b-edc6-4b5e-a148-fb8c36263f8f',1,'/page/news-and-events/2017-news/community-control-remains-key-to-closing-the-gap','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/2017-news/community-control-remains-key-to-closing-the-gap','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 22:18:36',0),(64940,'2021-04-13 12:19:00','2021-04-27 06:24:23','390a9283-4407-477a-bb33-f6b7885d6973',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---auchenflower/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---auchenflower','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-27 06:24:23',0),(64941,'2021-04-13 12:22:17','2021-05-16 07:45:38','1b4b93ca-1f57-46da-9e19-9f80d6e422ae',1,'/page/news-and-events/latest-news/metro-north-health-forum-talking-bout-a-revolution-or-evolution/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/metro-north-health-forum-talking-bout-a-revolution-or-evolution','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,17,'2021-05-16 07:45:38',0),(64942,'2021-04-13 12:29:04','2021-04-14 23:01:21','451a7d8e-32f9-4f44-9537-efe2119f0796',1,'/content/Document/Templates/4.3/MNHHS RBWH Referral BP v4.3.rtf','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.3/MNHHS RBWH Referral BP v4.3.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-14 23:01:21',0),(64943,'2021-04-13 12:37:56','2021-05-12 05:30:47','5addf5d7-20f8-4af2-a28f-9d7e38bec35e',1,'/page/health-professionals/digital-health/my-health-record/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/digital-health/my-health-record','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-12 05:30:47',0),(64944,'2021-04-13 12:42:28','2021-05-13 07:30:09','f1f76c7a-7380-4469-95e1-b91fbc49fb16',1,'/content/Document/COVID-19/COVID-19 Financial support measures for general practice.pdf','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/COVID-19/COVID-19 Financial support measures for general practice.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-13 07:30:09',0),(64945,'2021-04-13 12:55:19','2021-05-02 13:13:42','5529d65c-fc4c-4014-beff-32774a3429cb',1,'/content/Document/Pathways/Red Flag Questionnaire.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/Red%20Flag%20Questionnaire.pdf','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/Pathways/Red Flag Questionnaire.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-02 13:13:42',0),(64946,'2021-04-13 12:59:23','2021-05-13 16:38:58','655133e1-d2c9-443c-899f-0e401a7da838',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---bongaree','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---bongaree','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-13 16:38:58',0),(64947,'2021-04-13 13:02:36','2021-04-18 10:45:55','f9eaa8bb-01e2-4e32-ad44-f70e6d0e7153',1,'/content/Document/Events/awp_vlu_flyer_210915.docx','http://www.brisbanenorthphn.org.au/content/Document/Events/awp_vlu_flyer_210915.docx','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/Events/awp_vlu_flyer_210915.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-18 10:45:55',0),(64948,'2021-04-13 13:15:01','2021-05-12 13:47:57','6700a50f-c761-4244-a261-a384b1725929',1,'/content/Document/Primary care liaison/Specialists List_The Prince Charles Hospital_6_2(2).pdf','http://www.brisbanenorthphn.org.au/content/Document/Primary%20care%20liaison/Specialists%20List_The%20Prince%20Charles%20Hospital_6_2(2).pdf','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/Specialists List_The Prince Charles Hospital_6_2(2).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-12 13:47:57',0),(64949,'2021-04-13 13:19:41','2021-05-03 18:28:53','254d9a20-d16d-4420-98d4-3ded8c3d4e83',1,'/content/Document/Both KFP Dec 2018.pdf','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Both KFP Dec 2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-03 18:28:53',0),(64950,'2021-04-13 13:25:34','2021-05-16 05:54:47','ac735e2c-4995-4bbe-881b-94302b589e22',1,'/page/home/quicklinks/metro-north-refer-your-patient/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/home/quicklinks/metro-north-refer-your-patient','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-16 05:54:47',0),(64951,'2021-04-13 13:28:47','2021-05-02 14:49:43','7b546945-c4e5-454d-9c19-6147a3694089',1,'/jobs/executive-manager-aged-and-community-care-system-improvement','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/executive-manager-aged-and-community-care-system-improvement','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-02 14:49:43',0),(64952,'2021-04-13 13:38:50','2021-05-15 16:03:39','b119415f-b77f-491e-888f-e20fbbbeb940',1,'/page/news-and-events/events/upcoming/icif-copd-project---gp-active-learning-module---wed-pm-1-of-3','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/icif-copd-project---gp-active-learning-module---wed-pm-1-of-3','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-15 16:03:39',0),(64953,'2021-04-13 13:46:28','2021-04-13 13:46:28','399d22d6-b6c1-46e9-81ff-d0c052d66594',1,'/content/Document/Templates/4.12/Specialists Lists/Specialists List_Caboolture Hospital_4_12.pdf','','207.46.13.11','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.12/Specialists Lists/Specialists List_Caboolture Hospital_4_12.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 13:46:28',0),(64954,'2021-04-13 13:52:02','2021-04-16 03:32:10','f09f8e8a-0f48-4e2d-864e-0c2b9cf08a81',1,'/page/news-and-events/events/upcoming/evidence-based-treatment-for-late-life-depression-a-stepped-care-shared-decision-making-approach-to-providing-high-quality-care-to-older-adults/','','207.46.13.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/evidence-based-treatment-for-late-life-depression-a-stepped-care-shared-decision-making-approach-to-providing-high-quality-care-to-older-adults','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-16 03:32:10',0),(64955,'2021-04-13 14:01:08','2021-05-18 08:03:26','deff862a-9b7d-4afc-9364-073c96a66a41',1,'/content/Document/Pathways/HF risk stratification tool.pdf','','157.55.39.35','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/HF risk stratification tool.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-18 08:03:26',0),(64956,'2021-04-13 14:05:42','2021-05-15 03:24:00','5014af1a-5cc1-44a5-b3f1-89652844bea8',1,'/content/Document/Pathways/RBWH Personal Alarm handout 2 page.pdf','','93.158.161.26','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','Template not found: content/Document/Pathways/RBWH Personal Alarm handout 2 page.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-15 03:24:00',0),(64957,'2021-04-13 14:06:23','2021-04-24 08:23:26','ab70dad1-389b-431c-b881-fe040b65953f',1,'/page/health-professionals/Local Positions Vacant/registered-nurse---deception-bay/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/registered-nurse---deception-bay','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 08:23:26',0),(64958,'2021-04-13 14:07:02','2021-05-17 17:54:58','8aae0bc4-91e3-47c3-ab7d-a2861020c3b4',1,'/content/Document/Templates/Combined Palliative Care Referral 10 11 14 v5.pdf','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Templates/Combined Palliative Care Referral 10 11 14 v5.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,16,'2021-05-17 17:54:58',0),(64959,'2021-04-13 14:13:53','2021-05-18 09:02:48','d2106117-50a8-463c-a141-d040683991c9',1,'/page/health-professionals/directories/brisbane-mind-directory/','','207.46.13.74','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/directories/brisbane-mind-directory','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-18 09:02:48',0),(64960,'2021-04-13 14:18:58','2021-05-11 06:33:20','4e85256f-2576-4fda-a998-be16a49c6021',1,'/page/news-and-events/latest-news/board-chair-backs-minister-on-flu-vax/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/board-chair-backs-minister-on-flu-vax','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-11 06:33:20',0),(64961,'2021-04-13 14:19:37','2021-04-13 14:19:37','29560310-1fb2-4790-898b-1f2beadea4c6',1,'/page/news-and-events/events/upcoming/wesley-lifeforce-suicide-prevention-training-workshop','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/wesley-lifeforce-suicide-prevention-training-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 14:19:37',0),(64962,'2021-04-13 14:19:49','2021-05-04 12:09:41','aba1927d-e53a-40b6-b563-80a3bdd2b208',1,'/page/news-and-events/events/upcoming/stepping-stone-to-success/','','78.46.61.245','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/stepping-stone-to-success','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-04 12:09:41',0),(64963,'2021-04-13 14:30:37','2021-05-09 15:34:44','f27ce19c-87d7-490a-a9ce-0f6857108d6e',1,'/content/Document/Templates/4.8/Specialists List_Redcliffe Hospital_4_8.pdf','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Templates/4.8/Specialists List_Redcliffe Hospital_4_8.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-09 15:34:44',0),(64964,'2021-04-13 14:30:37','2021-05-12 05:57:07','832e1245-7d19-4029-866f-ec4fca3c2984',1,'/content/Document/Templates/5.3/Specialists List_Redcliffe Hospital_5_3.pdf','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Templates/5.3/Specialists List_Redcliffe Hospital_5_3.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-12 05:57:07',0),(64965,'2021-04-13 14:40:29','2021-04-13 14:40:29','bcf8e8a3-8d0a-4c0b-8ebe-6ecc2a51bc6c',1,'/C/Users/temp.marketing3/AppData/Local/Adobe/InDesign/Version 11.0/en_US/Caches/InDesign ClipboardScrap1.pdf','','66.249.65.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: C/Users/temp.marketing3/AppData/Local/Adobe/InDesign/Version 11.0/en_US/Caches/InDesign ClipboardScrap1.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 14:40:29',0),(64966,'2021-04-13 14:42:50','2021-05-09 21:18:02','9f82c1b1-058e-4225-b32f-91090a5b435a',1,'/page/news-and-events/events/upcoming/redicase-training-january','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/redicase-training-january','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-09 21:18:02',0),(64967,'2021-04-13 14:45:32','2021-04-13 14:45:32','cb244167-9397-476c-9143-d70e64db30f3',1,'/C/Users/TEMP/AppData/Local/Adobe/InDesign/Version 11.0/en_US/Caches/InDesign ClipboardScrap1.pdf','','66.249.65.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: C/Users/TEMP/AppData/Local/Adobe/InDesign/Version 11.0/en_US/Caches/InDesign ClipboardScrap1.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 14:45:32',0),(64968,'2021-04-13 14:48:56','2021-04-29 16:36:08','ef045902-c741-4f48-96b6-2494dc73baf9',1,'/page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health-march-2017/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health-march-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-04-29 16:36:08',0),(64969,'2021-04-13 14:54:42','2021-05-14 14:10:44','b2375e7e-eb73-4d48-9eb5-2ea9367148f0',1,'/content/Document/Events/2018/SH7June Flyer rego form FINAL.pdf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2018/SH7June Flyer rego form FINAL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-14 14:10:44',0),(64970,'2021-04-13 15:12:45','2021-04-26 03:06:40','a4025cce-f07f-4610-b7b6-7fe4837fa599',1,'/content/Image/NDIS_covers.jpg','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/NDIS_covers.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-26 03:06:40',0),(64971,'2021-04-13 15:18:55','2021-05-18 10:26:25','a3a8aa57-b8b3-4de9-863a-9c2fd1df03ae',1,'/events/the-role-of-digital-health-in-delivering-the-covid-19-vaccine-1','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/the-role-of-digital-health-in-delivering-the-covid-19-vaccine-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 10:26:25',0),(64972,'2021-04-13 15:22:12','2021-04-24 08:19:00','2169ccbc-887e-4d87-8e2e-8f104c5fb4b0',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---everton-hills/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---everton-hills','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-04-24 08:19:00',0),(64973,'2021-04-13 15:25:28','2021-04-30 22:50:05','395115cc-91d5-4a69-aa5a-1e0a1bdadd8a',1,'/events/wound-education-and-clinical-support-program-for-nurses-part-1','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/wound-education-and-clinical-support-program-for-nurses-part-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 22:50:05',0),(64974,'2021-04-13 15:28:03','2021-05-01 11:13:24','488bf2c7-dd1d-4b6c-9c90-62c8ab639a5f',1,'/content/Document/Pathways/HealthPathways Program Update_Jan 2019.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/HealthPathways%20Program%20Update_Jan%202019.pdf','34.94.135.136','Go-http-client/1.1','Template not found: content/Document/Pathways/HealthPathways Program Update_Jan 2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 11:13:24',0),(64975,'2021-04-13 15:30:36','2021-05-14 16:15:57','caadb3e2-04f1-458e-b1e9-dab841deefcd',1,'/content/Document/Templates/4.3/Specialists List Paediatrics 4.3.pdf','','46.4.83.150','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36 OPR/72.0.3815.320','Template not found: content/Document/Templates/4.3/Specialists List Paediatrics 4.3.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-14 16:15:57',0),(64976,'2021-04-13 15:30:37','2021-05-02 06:07:36','c8d350d6-7a87-459d-bcb6-c0d8a0f6d3b7',1,'/content/Document/Brisbane MIND Group Listing 2016-17(10).pdf','http://www.brisbanenorthphn.org.au/content/Document/Brisbane%20MIND%20Group%20Listing%202016-17(10).pdf','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/Brisbane MIND Group Listing 2016-17(10).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-02 06:07:36',0),(64977,'2021-04-13 15:31:33','2021-05-14 22:02:41','3e7d9a2c-0771-49c2-b646-510f1f285c2e',1,'/events/trauma-informed-diversity-awareness-masterclass','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/trauma-informed-diversity-awareness-masterclass','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-14 22:02:41',0),(64978,'2021-04-13 15:46:51','2021-04-24 09:41:02','c1ff34e3-0a3d-4c24-8d5c-841214a9a603',1,'/page/publications/partners-in-health/partners-in-health---january-2018/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/publications/partners-in-health/partners-in-health---january-2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-04-24 09:41:02',0),(64979,'2021-04-13 15:49:12','2021-05-12 05:13:10','273c328b-a3d9-4ea7-910e-c1c019007ab3',1,'/events/cardiac-nursing-assessment-getting-to-the-heart-of-the-matter','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/cardiac-nursing-assessment-getting-to-the-heart-of-the-matter','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-12 05:13:10',0),(64980,'2021-04-13 16:18:27','2021-05-06 23:08:43','6126ee54-da32-4f9f-9df4-110845dc746a',1,'/yearinreview/2017-18/who-is-brisbane-north-phn','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/who-is-brisbane-north-phn','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-06 23:08:43',0),(64981,'2021-04-13 16:20:59','2021-05-11 10:10:13','822e6f74-f924-4285-97d4-6b3268dfb8d5',1,'/events/paediatric-masterclass-for-general-practice-thriving-in-adolescence-part-2','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/paediatric-masterclass-for-general-practice-thriving-in-adolescence-part-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-11 10:10:13',0),(64982,'2021-04-13 16:24:08','2021-05-14 05:42:28','ec3dabe0-7952-4c56-8f67-0660ca505ac4',1,'/jobs/sandgate-medical-centre-medical-receptionist','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/sandgate-medical-centre-medical-receptionist','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,20,'2021-05-14 05:42:28',0),(64983,'2021-04-13 16:29:21','2021-05-14 22:35:51','4d54dca9-1186-451c-954e-9809944ff708',1,'/jobs/practice-nurse-1','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/practice-nurse-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,19,'2021-05-14 22:35:51',0),(64984,'2021-04-13 16:45:21','2021-04-24 10:23:18','664c63f2-62ea-45f0-904b-c2d568d0fac1',1,'/content/Image/News Images/BNPHN_042.jpg','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/News Images/BNPHN_042.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 10:23:18',0),(64985,'2021-04-13 16:46:20','2021-04-13 16:46:20','62fa89a4-dca3-4015-92bd-06a7a03c6022',1,'/page/news-and-events/events/upcoming/introduction-to-counselling-children/','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/introduction-to-counselling-children','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 16:46:20',0),(64986,'2021-04-13 16:48:18','2021-04-15 12:50:29','5c5ee6a0-fa05-4e5c-839d-2f4fea0c356b',1,'/content/Document/Brisbane MIND Group Listing 2016-17(4).pdf','','207.46.13.74','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Group Listing 2016-17(4).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-15 12:50:29',0),(64987,'2021-04-13 16:55:59','2021-05-13 04:53:31','1c49cabe-f7ed-4ef0-9d61-d75048fb3006',1,'/page/health-professionals/mental-health-services/brisbane-mind/carers-and-consumers','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/brisbane-mind/carers-and-consumers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-13 04:53:31',0),(64988,'2021-04-13 17:06:28','2021-04-29 17:34:46','1f290994-c4c2-49f7-b77b-f8298a8e5148',1,'/content/Document/Health alerts/190524_Health Alert_Listeria detection notice for GPs.pdf','http://www.brisbanenorthphn.org.au/content/Document/Health%20alerts/190524_Health%20Alert_Listeria%20detection%20notice%20for%20GPs.pdf','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/Health alerts/190524_Health Alert_Listeria detection notice for GPs.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-29 17:34:46',0),(64989,'2021-04-13 17:23:26','2021-05-11 07:37:49','299afe33-58ed-4029-b85d-ae7305422da9',1,'/page/news-and-events/latest-news/medical-mums/','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/medical-mums','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-11 07:37:49',0),(64990,'2021-04-13 17:29:08','2021-05-19 01:08:15','4470fc37-cad1-450c-96bc-688bccb8a469',1,'/jobs/speech-pathologist','','157.55.39.98','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/speech-pathologist','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,14,'2021-05-19 01:08:15',0),(64991,'2021-04-13 17:33:24','2021-04-16 04:23:57','3c09eaee-0340-469a-9f78-4d2e455bb5c8',1,'/page/news-and-events/events/upcoming/can-we-do-better-than-i-treat-everyone-the-same/','','207.46.13.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/can-we-do-better-than-i-treat-everyone-the-same','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-16 04:23:57',0),(64992,'2021-04-13 17:40:53','2021-05-04 08:55:52','ae0c8f94-22a2-40b3-a187-0b8a14e8c957',1,'/events/paediatric-masterclass-for-general-practice-thriving-in-adolescence','','85.208.98.23','Mozilla/5.0 (compatible; SemrushBot-BA; +http://www.semrush.com/bot.html)','Template not found: events/paediatric-masterclass-for-general-practice-thriving-in-adolescence','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-04 08:55:52',0),(64993,'2021-04-13 17:45:37','2021-05-17 09:20:38','f5e045c8-d0b7-406f-9d97-0d80da660950',1,'/jobs/ft-pt-gps-required-high-patient-demand-supportive-team-environment-ipn-medical-centres-brisbane-north','','66.249.79.150','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: jobs/ft-pt-gps-required-high-patient-demand-supportive-team-environment-ipn-medical-centres-brisbane-north','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-17 09:20:38',0),(64994,'2021-04-13 17:52:39','2021-05-11 07:19:28','b2a98deb-caed-4534-beee-de487c94ca15',1,'/content/Document/Templates/5.2/Specialists List_Palliative Care_5_2.pdf','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Templates/5.2/Specialists List_Palliative Care_5_2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-11 07:19:28',0),(64995,'2021-04-13 17:52:55','2021-04-23 16:38:02','fd9565f3-2faa-437e-a5ab-281f7c451c5a',1,'/content/Document/Pathways/HealthPathways Program Update_Mar 2019.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/HealthPathways%20Program%20Update_Mar%202019.pdf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Pathways/HealthPathways Program Update_Mar 2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-23 16:38:02',0),(64996,'2021-04-13 18:04:26','2021-05-09 02:31:03','17b9f91f-dbb8-4f0d-82f8-7c21a1b3dc96',1,'/page/health-professionals/Local Positions Vacant/registered-nurse---samford','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/registered-nurse---samford','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-09 02:31:03',0),(64997,'2021-04-13 18:11:38','2021-04-13 18:11:38','2bf2664f-326d-4568-9474-c7b6fdfbe716',1,'/content/Document/Position Descriptions/PD_CommissioningandEngagementOfficer_190522.pdf','','207.46.13.106','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Position Descriptions/PD_CommissioningandEngagementOfficer_190522.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 18:11:38',0),(64998,'2021-04-13 18:16:32','2021-05-17 08:40:26','e04ce810-7aea-4c71-83a3-1132ab9c71e9',1,'/page/news-and-events/latest-news/metro-north-health-forum-speakers-set-to-shine','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/metro-north-health-forum-speakers-set-to-shine','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-17 08:40:26',0),(64999,'2021-04-13 18:21:48','2021-05-19 03:13:37','c9db52ef-c238-4a94-85af-5eea94a8c93e',1,'/events/medicare-ethical-billing-for-general-practitioners','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/medicare-ethical-billing-for-general-practitioners','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-19 03:13:37',0),(65000,'2021-04-13 18:24:40','2021-05-15 05:59:09','bebe83ca-a1ff-4591-b8c0-ad22267b1662',1,'/content/Document/Network Link/Network_Link_Apr2020_WEB.pdf','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Network Link/Network_Link_Apr2020_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,30,'2021-05-15 05:59:09',0),(65001,'2021-04-13 18:35:09','2021-05-15 07:16:24','591a89df-4e98-4841-aa7f-6d5497e19e38',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---albany-creek','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---albany-creek','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-15 07:16:24',0),(65002,'2021-04-13 18:38:02','2021-04-13 18:38:02','15d546be-e8e4-4d39-9d71-52543bbdd3a1',1,'/content/Document/Templates/4.4/MNHHS Paediatric Referral BP v4.4.rtf','','207.46.13.5','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.4/MNHHS Paediatric Referral BP v4.4.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 18:38:02',0),(65003,'2021-04-13 18:46:28','2021-05-13 02:37:54','1c241a30-b697-40d9-bae8-a0d81da0112f',1,'/page/news-and-events/events/upcoming/advance-care-planning-workshop-for-nurses/','','192.99.6.226','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/advance-care-planning-workshop-for-nurses','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-13 02:37:54',0),(65004,'2021-04-13 18:46:55','2021-05-14 01:31:28','3b9f9871-17b8-407f-b670-ef80cf75b852',1,'/page/news-and-events/events/upcoming/advanced-life-support/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/advanced-life-support','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-14 01:31:28',0),(65005,'2021-04-13 18:49:38','2021-05-13 05:42:49','92f13e90-34a6-4e3b-a9da-429fd3913ae4',1,'/content/Document/BNPHN_Patient_Information_Booklet_NDIS_Oct2018_B_final_WEB.pdf','','54.37.100.109','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36','Template not found: content/Document/BNPHN_Patient_Information_Booklet_NDIS_Oct2018_B_final_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,19,'2021-05-13 05:42:49',0),(65006,'2021-04-13 19:03:38','2021-05-17 06:54:03','8feba064-b33d-4118-9be9-474064e5852f',1,'/events/genomics-for-gps-prenatal-and-paediatric-genetics-1','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/genomics-for-gps-prenatal-and-paediatric-genetics-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 06:54:03',0),(65007,'2021-04-13 19:08:52','2021-05-14 17:47:36','060e7877-0345-47b6-a50a-618efd845852',1,'/content/Document/Stephen-Duckett-presentation.pdf','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Stephen-Duckett-presentation.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-14 17:47:36',0),(65008,'2021-04-13 19:09:27','2021-05-18 23:25:46','f8c93444-1305-44d1-89db-abab89915282',1,'/page/news-and-events/latest-news/connection-is-key-at-ageing-well-convergence','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/connection-is-key-at-ageing-well-convergence','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-18 23:25:46',0),(65009,'2021-04-13 19:14:33','2021-04-13 19:14:33','878289ef-a4e2-4b9c-9f67-d680e7d3b3f2',1,'/events/social-media-pros-pitfalls','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/social-media-pros-pitfalls','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 19:14:33',0),(65010,'2021-04-13 19:15:27','2021-05-18 05:24:25','9b82d193-6c66-4f44-a18f-96eec68d6a32',1,'/content/Document/Pathways/Screening tools for assessing falls risk.pdf','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Pathways/Screening tools for assessing falls risk.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-18 05:24:25',0),(65011,'2021-04-13 19:17:28','2021-05-12 08:31:14','649b48b8-0bfb-4cf8-b3da-94103c11236e',1,'/content/Document/Brian-Dolan-presentation2.pdf','http://www.brisbanenorthphn.org.au/content/Document/Brian-Dolan-presentation2.pdf','13.237.67.237','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','Template not found: content/Document/Brian-Dolan-presentation2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-12 08:31:14',0),(65012,'2021-04-13 19:20:25','2021-04-30 09:01:19','4462a04a-3541-407f-9270-e112014e661a',1,'/jobs/executive-manager-health-system-improvement','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/executive-manager-health-system-improvement','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-30 09:01:19',0),(65013,'2021-04-13 19:20:47','2021-05-09 12:29:05','9ac97ca0-b85f-41e2-82d3-7f26ac9f73cb',1,'/jobs/registered-nurse-2','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/registered-nurse-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-09 12:29:05',0),(65014,'2021-04-13 19:21:29','2021-05-13 05:01:56','4f70209d-1775-487b-b55c-7bb488fcda10',1,'/jobs/psychologist','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/psychologist','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-13 05:01:56',0),(65015,'2021-04-13 19:25:43','2021-05-13 21:31:30','c692e1c8-f16e-4c8a-a214-c4b99d072b38',1,'/jobs/racecourse-road-health-centre-is-seeking-a-registered-nurse','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/racecourse-road-health-centre-is-seeking-a-registered-nurse','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-13 21:31:30',0),(65016,'2021-04-13 19:32:21','2021-04-30 14:58:11','db5c40a1-d2e0-4c46-bd87-d4f314f90bc2',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-chermside/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-chermside','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-30 14:58:11',0),(65017,'2021-04-13 19:33:17','2021-04-18 15:52:02','1518a1de-b279-4b16-a4ac-332567d1ea68',1,'/content/Document/Guide-to-suicide-prevention-services-web.pdf','http://www.brisbanenorthphn.org.au/content/Document/Guide-to-suicide-prevention-services-web.pdf','95.217.41.194','','Template not found: content/Document/Guide-to-suicide-prevention-services-web.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-18 15:52:02',0),(65018,'2021-04-13 19:46:20','2021-04-13 19:46:20','3139a1e6-e867-4535-a2dd-788a1917bab7',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-required---doctors-dolphins/','','207.46.13.11','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-required---doctors-dolphins','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 19:46:20',0),(65019,'2021-04-13 19:51:01','2021-05-13 09:19:31','1d42a561-8d47-4230-ba5d-1dae43a2094e',1,'/page/about/partnership-protocols/protocol-signals-renewed-commitment-­to-working-together','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/partnership-protocols/protocol-signals-renewed-commitment-­to-working-together','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-13 09:19:31',0),(65020,'2021-04-13 19:54:09','2021-05-18 11:47:26','5dda35da-59db-4d0b-aa72-d7682bc7a5c3',1,'/jobs/vr-gr-ft-pt','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/vr-gr-ft-pt','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,18,'2021-05-18 11:47:26',0),(65021,'2021-04-13 20:08:40','2021-04-30 20:05:27','c05afb2e-97ab-47ac-889c-1f3fa804c27a',1,'/page/news-and-events/events/upcoming/2020-australian-pain-society-40th-annual-scientific-meeting-aps-2020/','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/2020-australian-pain-society-40th-annual-scientific-meeting-aps-2020','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-30 20:05:27',0),(65022,'2021-04-13 20:10:39','2021-05-13 17:57:17','c2a95720-7602-4456-9914-f95a1aa1bb08',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---nundah/','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---nundah','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,16,'2021-05-13 17:57:17',0),(65023,'2021-04-13 20:14:20','2021-05-18 01:00:17','d2ae1086-5f50-4b71-a387-8bbd798ec5a3',1,'/jobs/general-practitioners','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/general-practitioners','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,14,'2021-05-18 01:00:17',0),(65024,'2021-04-13 20:19:02','2021-05-05 06:27:32','64a96a1f-5f38-4935-9603-78755a9ada47',1,'/content/Document/Pathways/pathways_milksoyfreediet.pdf','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Pathways/pathways_milksoyfreediet.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-05 06:27:32',0),(65025,'2021-04-13 20:19:41','2021-05-18 01:41:58','be79f7e9-0f7b-4b7a-bd17-42298aeb3f70',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---fortitude-valley','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---fortitude-valley','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 01:41:58',0),(65026,'2021-04-13 20:26:49','2021-04-13 20:26:49','bb9477ff-78ac-4b61-ac28-022ec20f6240',1,'/wp-includes/css/modules.php','','192.241.154.42','python-requests/2.25.1','Template not found: wp-includes/css/modules.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:26:49',0),(65027,'2021-04-13 20:26:52','2021-05-10 09:53:12','5a56ab55-741b-4568-b937-78ea4d27d631',1,'/wso.php','','192.42.116.26','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.2681.17 Safari/537.36','Template not found: wso.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-10 09:53:12',0),(65028,'2021-04-13 20:26:57','2021-04-13 20:26:57','7022812a-3692-4e98-999b-8dccae0388a7',1,'/wp-content/plugins/upspy/index.php','','192.241.154.42','python-requests/2.25.1','Template not found: wp-content/plugins/upspy/index.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:26:57',0),(65029,'2021-04-13 20:27:00','2021-04-13 20:27:00','6b18bb3b-f1a5-4633-a17b-e5705e66c16d',1,'/wp-content/plugins/ubh/index.php','','192.241.154.42','python-requests/2.25.1','Template not found: wp-content/plugins/ubh/index.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:27:00',0),(65030,'2021-04-13 20:27:04','2021-04-13 20:27:04','8108d1ab-7e1b-4f2b-b625-92cb4315c5af',1,'/wp-content/plugins/vwcleanerplugin/bump.php','','192.241.154.42','python-requests/2.25.1','Template not found: wp-content/plugins/vwcleanerplugin/bump.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:27:04',0),(65031,'2021-04-13 20:27:08','2021-04-13 20:27:08','14a4ddf9-b009-4e71-ad70-cc8c5e84a9c4',1,'/wp-content/plugins/xichang/x.php','','192.241.154.42','python-requests/2.25.1','Template not found: wp-content/plugins/xichang/x.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:27:08',0),(65032,'2021-04-13 20:27:12','2021-04-13 20:27:12','6b59b368-43b1-491d-ac5b-b0d5bb14454f',1,'/wp-content/plugins/html404/index.html','','192.241.154.42','python-requests/2.25.1','Template not found: wp-content/plugins/html404/index.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:27:12',0),(65033,'2021-04-13 20:27:16','2021-04-13 20:27:16','49094bc7-1842-4046-bb6d-228725d49c9f',1,'/wp-admin/shapes.php','','192.241.154.42','python-requests/2.25.1','Template not found: wp-admin/shapes.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:27:16',0),(65034,'2021-04-13 20:27:20','2021-04-13 20:31:07','721f24a8-799d-4a3f-9dca-24b3ce44af77',1,'/olux.php','','192.241.154.42','python-requests/2.25.1','Template not found: olux.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-13 20:31:07',0),(65035,'2021-04-13 20:27:24','2021-05-07 23:07:25','c1d6d653-0c8c-43cf-adec-0f13ffb4b67f',1,'/page/news-and-events/events/upcoming/quarterly-aged-care-breakfast-forum---north-lakes/','','66.249.69.61','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/quarterly-aged-care-breakfast-forum---north-lakes','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 23:07:25',0),(65036,'2021-04-13 20:27:25','2021-04-13 20:31:14','99992c0d-d2b0-465c-862d-de3394eebac5',1,'/indoxploit.php','','192.241.154.42','python-requests/2.25.1','Template not found: indoxploit.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-13 20:31:14',0),(65037,'2021-04-13 20:27:36','2021-04-13 20:31:53','baa79749-90a8-4109-b3da-70b62a3cf394',1,'/up.php','','192.241.154.42','python-requests/2.25.1','Template not found: up.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-13 20:31:53',0),(65038,'2021-04-13 20:27:42','2021-04-13 20:31:57','f5cbb62b-8a4a-4b4f-a998-ba4edb873b1a',1,'/upload.php','','192.241.154.42','python-requests/2.25.1','Template not found: upload.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-13 20:31:57',0),(65039,'2021-04-13 20:27:45','2021-05-14 01:14:14','8f0ecfb5-7d88-4ec7-86ca-2fa0319a760d',1,'/wp-content/uploads/','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: wp-content/uploads','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 01:14:14',0),(65040,'2021-04-13 20:27:49','2021-04-13 20:27:49','7a517a52-bf74-4ed4-a66e-d7c02c1e95fc',1,'/wp-content/uploads/2021/04/','','192.241.154.42','python-requests/2.25.1','Template not found: wp-content/uploads/2021/04','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:27:49',0),(65041,'2021-04-13 20:27:52','2021-04-13 20:32:01','6f386f78-3676-4d86-b372-5565988cff1d',1,'/shell.php','','192.241.154.42','python-requests/2.25.1','Template not found: shell.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-13 20:32:01',0),(65042,'2021-04-13 20:27:57','2021-04-13 20:27:57','4c44fb8f-18bb-43d8-9c78-a2d070a887e8',1,'/wp-admin/network/wp-footer.php','','192.241.154.42','python-requests/2.25.1','Template not found: wp-admin/network/wp-footer.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:27:57',0),(65043,'2021-04-13 20:28:01','2021-04-13 20:28:01','85e9d9ea-097b-40d0-a792-9468e14d10d3',1,'/wp-info.php','','192.241.154.42','python-requests/2.25.1','Template not found: wp-info.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:28:01',0),(65044,'2021-04-13 20:28:05','2021-04-13 20:28:05','ae4e5075-7876-4eb4-b6b9-d4e04dedf0b0',1,'/wp-content/vuln.php','','192.241.154.42','python-requests/2.25.1','Template not found: wp-content/vuln.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:28:05',0),(65045,'2021-04-13 20:28:08','2021-04-13 20:28:08','c670d6c0-4c94-4172-a1bd-0405a39cc005',1,'/upel.php','','192.241.154.42','python-requests/2.25.1','Template not found: upel.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:28:08',0),(65046,'2021-04-13 20:28:12','2021-04-13 20:28:12','b52b9a05-5937-4230-992a-f1c1065df3d9',1,'/wp-content/plugins/ppus/up.php','','192.241.154.42','python-requests/2.25.1','Template not found: wp-content/plugins/ppus/up.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:28:12',0),(65047,'2021-04-13 20:28:17','2021-04-13 20:28:17','c261c77f-c238-4d7e-b15e-7076acc6df32',1,'/098.php','','192.241.154.42','python-requests/2.25.1','Template not found: 098.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:28:17',0),(65048,'2021-04-13 20:28:20','2021-04-13 20:29:39','6671dd33-d20d-4490-b395-5e953f7c82f6',1,'/V5.php','','192.241.154.42','python-requests/2.25.1','Template not found: V5.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-13 20:29:39',0),(65049,'2021-04-13 20:28:24','2021-04-13 20:28:24','1e4ea958-127e-47fe-95af-1b12716e0b20',1,'/new_license.php','','192.241.154.42','python-requests/2.25.1','Template not found: new_license.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:28:24',0),(65050,'2021-04-13 20:28:27','2021-04-13 20:28:27','64f6b5de-d7e4-4317-bc05-a493d3d12da7',1,'/wp-content/plugins/theme-configurator/mini.php','','192.241.154.42','python-requests/2.25.1','Template not found: wp-content/plugins/theme-configurator/mini.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:28:27',0),(65051,'2021-04-13 20:28:31','2021-04-13 20:28:31','6f6fa5f7-7efe-40a9-8f3f-1b54461f5fc6',1,'/wp-content/plugins/widget-logic/mini.php','','192.241.154.42','python-requests/2.25.1','Template not found: wp-content/plugins/widget-logic/mini.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:28:31',0),(65052,'2021-04-13 20:28:38','2021-04-13 20:28:38','69b8dc67-6bc7-41ef-bfd2-e175660f2589',1,'/modules/modules/modules.php','','192.241.154.42','python-requests/2.25.1','Template not found: modules/modules/modules.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:28:38',0),(65053,'2021-04-13 20:28:42','2021-04-13 20:28:42','7d5f7a40-ff24-4c43-bf71-456ee16b4883',1,'/modules/mod_simplefileuploadv1.3/elements/Clean.php','','192.241.154.42','python-requests/2.25.1','Template not found: modules/mod_simplefileuploadv1.3/elements/Clean.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:28:42',0),(65054,'2021-04-13 20:28:45','2021-04-13 20:28:45','dafb8385-0540-4149-a2d2-195d771c86a3',1,'/modules/mod_simplefileuploadv1.3/elements/udd.php','','192.241.154.42','python-requests/2.25.1','Template not found: modules/mod_simplefileuploadv1.3/elements/udd.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:28:45',0),(65055,'2021-04-13 20:28:49','2021-04-13 20:28:49','d7e578b9-f239-47f2-9970-12b46caa4239',1,'/libraries/joomla/css.php','','192.241.154.42','python-requests/2.25.1','Template not found: libraries/joomla/css.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:28:49',0),(65056,'2021-04-13 20:28:52','2021-04-13 20:28:52','715a46c2-c851-4513-b341-c283b16925ec',1,'/libraries/joomla/jmails.php','','192.241.154.42','python-requests/2.25.1','Template not found: libraries/joomla/jmails.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:28:52',0),(65057,'2021-04-13 20:28:56','2021-04-13 20:28:56','9408c707-c545-4d73-b37f-6f341d6f841b',1,'/libraries/joomla/jmail.php','','192.241.154.42','python-requests/2.25.1','Template not found: libraries/joomla/jmail.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:28:56',0),(65058,'2021-04-13 20:29:00','2021-04-13 20:29:00','4e2e0eb5-83f9-466a-9347-dd26f0126ddf',1,'/images/vuln.php','','192.241.154.42','python-requests/2.25.1','Template not found: images/vuln.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:29:00',0),(65059,'2021-04-13 20:29:04','2021-04-13 20:29:04','43635ff7-a3cc-4f66-8a5d-1a1a3a826e3c',1,'/tmp/vuln.php','','192.241.154.42','python-requests/2.25.1','Template not found: tmp/vuln.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:29:04',0),(65060,'2021-04-13 20:29:07','2021-04-13 20:29:07','40d3e0f4-0467-4621-8365-daecfdc0ef8a',1,'/XxX.php','','192.241.154.42','python-requests/2.25.1','Template not found: XxX.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:29:07',0),(65061,'2021-04-13 20:29:11','2021-04-13 20:29:11','7ebeb305-48be-4117-92d4-a8b1f5d671a4',1,'/Marvins.php','','192.241.154.42','python-requests/2.25.1','Template not found: Marvins.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:29:11',0),(65062,'2021-04-13 20:29:15','2021-04-13 20:29:28','056949b1-9492-4692-a4a3-08f6604b4709',1,'/RxR.php','','192.241.154.42','python-requests/2.25.1','Template not found: RxR.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-13 20:29:28',0),(65063,'2021-04-13 20:29:26','2021-05-10 21:47:29','08b79040-f1a8-48c3-9578-be9941b2de3b',1,'/error.php','','31.7.61.189','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.2411.86 Safari/537.36','Template not found: error.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 21:47:29',0),(65064,'2021-04-13 20:29:32','2021-04-13 20:29:32','9bbdec0e-2fb1-4bf9-8b2a-8b8c320f87e8',1,'/components/com_b2jcontact/izoc.php','','192.241.154.42','python-requests/2.25.1','Template not found: components/com_b2jcontact/izoc.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:29:32',0),(65065,'2021-04-13 20:29:35','2021-04-13 20:29:35','b3a20874-6d46-47d3-91e6-b9afdd3002b5',1,'/V3.php','','192.241.154.42','python-requests/2.25.1','Template not found: V3.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:29:35',0),(65066,'2021-04-13 20:29:55','2021-04-13 20:29:55','18938ecb-d729-4693-b194-e4f79132afc1',1,'/administrator/templates/bluestork/index.php','','192.241.154.42','python-requests/2.25.1','Template not found: administrator/templates/bluestork/index.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:29:55',0),(65067,'2021-04-13 20:29:58','2021-04-13 20:29:58','bc09e848-63f2-4071-aa3c-670f89e5fa45',1,'/administrator/templates/bluestork/error.php','','192.241.154.42','python-requests/2.25.1','Template not found: administrator/templates/bluestork/error.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:29:58',0),(65068,'2021-04-13 20:30:01','2021-04-13 20:30:01','2b14c483-7fd9-499f-92f0-b896186912a4',1,'/administrator/templates/hathor/index.php','','192.241.154.42','python-requests/2.25.1','Template not found: administrator/templates/hathor/index.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:30:01',0),(65069,'2021-04-13 20:30:05','2021-04-13 20:30:05','3b6e1bc0-5185-44bb-afb7-60a7ecf42dae',1,'/administrator/templates/hathor/error.php','','192.241.154.42','python-requests/2.25.1','Template not found: administrator/templates/hathor/error.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:30:05',0),(65070,'2021-04-13 20:30:09','2021-04-13 20:30:09','4e50dc19-102c-4e73-b810-98549182bae3',1,'/administrator/templates/isis/index.php','','192.241.154.42','python-requests/2.25.1','Template not found: administrator/templates/isis/index.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:30:09',0),(65071,'2021-04-13 20:30:12','2021-04-13 20:30:12','05844993-99f1-475a-8b66-0077707d3ae2',1,'/administrator/templates/isis/error.php','','192.241.154.42','python-requests/2.25.1','Template not found: administrator/templates/isis/error.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:30:12',0),(65072,'2021-04-13 20:30:15','2021-05-11 14:41:38','3e3cbec8-772e-4941-807e-75f771e259c7',1,'/templates/beez/index.php','','185.220.100.241','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3376.2 Safari/537.36','Template not found: templates/beez/index.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 14:41:38',0),(65073,'2021-04-13 20:30:18','2021-04-13 20:30:18','819bc640-a192-49c0-bfec-57f5c7d03ffb',1,'/templates/ja_purity/index.php','','192.241.154.42','python-requests/2.25.1','Template not found: templates/ja_purity/index.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:30:18',0),(65074,'2021-04-13 20:30:22','2021-04-13 20:30:22','42c16a8b-2171-4ce3-96dc-8a73bb05c500',1,'/templates/rhuk_milkyway/index.php','','192.241.154.42','python-requests/2.25.1','Template not found: templates/rhuk_milkyway/index.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:30:22',0),(65075,'2021-04-13 20:30:26','2021-04-13 20:30:26','09b2ebcb-fe46-48ad-b24c-813cfef347a9',1,'/templates/system/index.php','','192.241.154.42','python-requests/2.25.1','Template not found: templates/system/index.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:30:26',0),(65076,'2021-04-13 20:30:29','2021-04-13 20:30:29','57faadc1-7974-4157-8dae-2f5d2b189852',1,'/templates/system/error.php','','192.241.154.42','python-requests/2.25.1','Template not found: templates/system/error.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:30:29',0),(65077,'2021-04-13 20:30:32','2021-04-13 20:30:32','7d3d793f-df59-4f46-9e63-9dcc5491d14e',1,'/templates/beez3/index.php','','192.241.154.42','python-requests/2.25.1','Template not found: templates/beez3/index.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:30:32',0),(65078,'2021-04-13 20:30:36','2021-04-13 20:30:36','540264e7-315e-4f60-90e2-6506d02fef31',1,'/templates/beez3/error.php','','192.241.154.42','python-requests/2.25.1','Template not found: templates/beez3/error.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:30:36',0),(65079,'2021-04-13 20:30:40','2021-04-13 20:30:40','e32ccad1-fffe-4bce-8e27-c1297ca18572',1,'/templates/beez5/index.php','','192.241.154.42','python-requests/2.25.1','Template not found: templates/beez5/index.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:30:40',0),(65080,'2021-04-13 20:30:44','2021-04-13 20:30:44','2d351cce-71f8-4ccd-a33e-611aa9176e0d',1,'/templates/beez5/error.php','','192.241.154.42','python-requests/2.25.1','Template not found: templates/beez5/error.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:30:44',0),(65081,'2021-04-13 20:30:47','2021-04-13 20:30:47','5f078e80-3f76-4cb1-8cd9-4f12063428f1',1,'/templates/beez_20/index.php','','192.241.154.42','python-requests/2.25.1','Template not found: templates/beez_20/index.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:30:47',0),(65082,'2021-04-13 20:30:50','2021-04-13 20:30:50','d0074429-1e76-4049-ba11-55e7d1a804a5',1,'/templates/beez_20/error.php','','192.241.154.42','python-requests/2.25.1','Template not found: templates/beez_20/error.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:30:50',0),(65083,'2021-04-13 20:30:54','2021-04-13 20:30:54','667beab7-cf51-4949-b316-4c29ad4af9fe',1,'/templates/protostar/index.php','','192.241.154.42','python-requests/2.25.1','Template not found: templates/protostar/index.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:30:54',0),(65084,'2021-04-13 20:30:57','2021-04-13 20:30:57','9abf2bc8-a9ad-4247-a2b5-095497ef17cf',1,'/templates/protostar/error.php','','192.241.154.42','python-requests/2.25.1','Template not found: templates/protostar/error.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:30:57',0),(65085,'2021-04-13 20:30:59','2021-05-18 23:43:56','17b8b65b-8ea4-46b3-bdf3-557aa4323338',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---kenmore','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---kenmore','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-18 23:43:56',0),(65086,'2021-04-13 20:31:01','2021-04-13 20:31:01','9e7d025d-d4c6-4cf5-bbf0-7d19461d138f',1,'/templates/atomic/index.php','','192.241.154.42','python-requests/2.25.1','Template not found: templates/atomic/index.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:31:01',0),(65087,'2021-04-13 20:31:04','2021-04-13 20:31:04','84b67759-1fb1-4201-878b-2063beb548ca',1,'/templates/atomic/error.php','','192.241.154.42','python-requests/2.25.1','Template not found: templates/atomic/error.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:31:04',0),(65088,'2021-04-13 20:31:22','2021-04-13 20:31:22','466cf9d9-9dda-4b97-bf14-55180628f699',1,'/images/','','192.241.154.42','python-requests/2.25.1','Template not found: images','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:31:22',0),(65089,'2021-04-13 20:31:26','2021-05-14 01:14:10','55b9b1df-5d35-4bb7-83d6-d97f96d4500f',1,'/uploads/','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: uploads','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 01:14:10',0),(65090,'2021-04-13 20:31:29','2021-04-13 20:31:29','6aa3ba73-4d2c-4fdf-874a-99eaa50ad938',1,'/img/','','192.241.154.42','python-requests/2.25.1','Template not found: img','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:31:29',0),(65091,'2021-04-13 20:31:32','2021-05-14 01:14:06','d9746859-e321-46f7-b5f4-fe3b0df3d9b5',1,'/upload/','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: upload','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 01:14:06',0),(65092,'2021-04-13 20:31:36','2021-04-13 20:31:36','0adf0baf-e432-4410-8f15-0bd7f542a90c',1,'/gallery/','','192.241.154.42','python-requests/2.25.1','Template not found: gallery','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:31:36',0),(65093,'2021-04-13 20:31:39','2021-05-14 01:14:20','e2ee8912-5018-409b-b6eb-862dbcde07fd',1,'/files/','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: files','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 01:14:20',0),(65094,'2021-04-13 20:31:43','2021-04-13 20:31:43','d2191dc0-ca57-4e01-8791-2332a5ce65a2',1,'/pdf/','','192.241.154.42','python-requests/2.25.1','Template not found: pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:31:43',0),(65095,'2021-04-13 20:31:46','2021-04-13 20:31:46','ff0f87d1-aa29-4b49-b5fd-08250f4040ed',1,'/docs/','','192.241.154.42','python-requests/2.25.1','Template not found: docs','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:31:46',0),(65096,'2021-04-13 20:35:46','2021-04-13 20:35:46','0d69f578-252f-441a-bf95-de2e611ac612',1,'/page/health-professionals/immunisation/resources/vaccine-management-plan-template/','','66.249.65.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/immunisation/resources/vaccine-management-plan-template','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 20:35:46',0),(65097,'2021-04-13 20:37:10','2021-05-09 20:55:37','375e2793-d39c-41c5-a2a9-a84619a2b2cd',1,'/page/news-and-events/latest-news/new-medical-assisting-intake-commences-in-april','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/new-medical-assisting-intake-commences-in-april','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-09 20:55:37',0),(65098,'2021-04-13 20:44:08','2021-05-16 07:51:03','f7ca1ee6-2403-4dd0-a0d4-a27fb02273ef',1,'/page/news-and-events/latest-news/strengthening-communication-during-clinical-handovers/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/strengthening-communication-during-clinical-handovers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-16 07:51:03',0),(65099,'2021-04-13 20:52:30','2021-04-23 00:44:15','53b92d6b-dc2a-4fcb-8bec-3c0001860839',1,'/page/news-and-events/events/upcoming/healing-to-believe-seminar/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/news-and-events/events/upcoming/healing-to-believe-seminar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-23 00:44:15',0),(65100,'2021-04-13 20:54:15','2021-04-28 00:22:27','ea10c7a9-0192-4972-84b6-65bd44c881a6',1,'/jobs/inner-brisbane-private-general-practice-full-time-4-or-5-days','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/inner-brisbane-private-general-practice-full-time-4-or-5-days','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-28 00:22:27',0),(65101,'2021-04-13 21:03:21','2021-05-19 01:20:51','13aefa2a-68a5-4aea-926b-5309a9b2abf7',1,'/content/Document/Brisbane MIND Provider List October 2018.pdf','','157.55.39.35','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List October 2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-19 01:20:51',0),(65102,'2021-04-13 21:17:08','2021-04-25 19:12:56','7e396ee8-6971-43a4-825a-256f35f16fd4',1,'/events/beyond-the-pandemic-1','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/beyond-the-pandemic-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-04-25 19:12:56',0),(65103,'2021-04-13 21:31:42','2021-05-13 06:23:57','c5213807-2b81-49d1-98c2-2919bab7e0f2',1,'/page/health-professionals/referral-and-patient-management/directories/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/referral-and-patient-management/directories','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-13 06:23:57',0),(65104,'2021-04-13 21:42:32','2021-05-14 20:19:31','2226df68-4a8c-4c26-b43d-cbc32da9e218',1,'/content/Document/Templates/4.4/MNHHS Palliative Referral BP v4.4.rtf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.4/MNHHS Palliative Referral BP v4.4.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 20:19:31',0),(65105,'2021-04-13 21:42:45','2021-04-13 21:42:45','7ca0ecbe-5509-40ca-8d87-15069c2e3735',1,'/page/news-and-events/events/upcoming/brisbane-north-allied-health-collaborative-annual-forum/','','66.249.65.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/brisbane-north-allied-health-collaborative-annual-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 21:42:45',0),(65106,'2021-04-13 21:43:48','2021-05-16 01:47:50','ff1b24fa-8bed-41b8-8a69-52ae5055f894',1,'/content/Document/20151130_CHSP_Final report_QUT_AusHSI.pdf','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/20151130_CHSP_Final report_QUT_AusHSI.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-16 01:47:50',0),(65107,'2021-04-13 21:49:55','2021-05-07 02:57:56','be81a784-9669-4d9b-9f9a-4c3cdf460eeb',1,'/events/trauma-awareness-supporting-people-with-a-disability','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/trauma-awareness-supporting-people-with-a-disability','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-07 02:57:56',0),(65108,'2021-04-13 21:53:47','2021-05-14 19:50:08','e692b8f9-49fa-460c-8c4b-6fa2c8b4f479',1,'/page/news-and-events/events/upcoming/most-excellent-adventure-tour-to-the-ration-shed---november-2016/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/most-excellent-adventure-tour-to-the-ration-shed---november-2016','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 19:50:08',0),(65109,'2021-04-13 22:01:34','2021-05-16 21:59:35','40331742-4349-420f-b0df-b92d663c7703',1,'/content/Document/Pathways/RDTU Referral 2015 External CPI2.pdf','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/RDTU Referral 2015 External CPI2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-16 21:59:35',0),(65110,'2021-04-13 22:12:29','2021-05-16 11:38:40','2a11f8d2-55e9-47fc-974b-7c0121b9b2f8',1,'/jobs/part-time-and-full-time-vr-gps-fresh-start-for-2021','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/part-time-and-full-time-vr-gps-fresh-start-for-2021','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,15,'2021-05-16 11:38:40',0),(65111,'2021-04-13 22:16:02','2021-05-17 10:59:14','e9db33ba-4dfb-41fc-b7e0-7ad4030cf09e',1,'/events/specialised-disability-accommodation-sda-open-home-18-pine-street-caboolture-south','','157.55.39.23','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/specialised-disability-accommodation-sda-open-home-18-pine-street-caboolture-south','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-17 10:59:14',0),(65112,'2021-04-13 22:26:03','2021-04-13 22:26:03','c5de0922-5d2d-4835-b799-547087d5dc86',1,'/content/Document/Templates/4.3/MNHHS Paediatric v4.3.4W7','','207.46.13.74','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.3/MNHHS Paediatric v4.3.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 22:26:03',0),(65113,'2021-04-13 22:30:43','2021-05-17 06:09:33','2a489ad3-344d-4907-b167-ba9f97ff5b54',1,'/page/health-professionals/mental-health-services/brisbane-mind4kids/','','103.87.254.78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','Template not found: page/health-professionals/mental-health-services/brisbane-mind4kids','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-17 06:09:33',0),(65114,'2021-04-13 22:30:47','2021-05-10 06:02:26','d7c0142d-642f-4f25-b1da-cb9b7e4c51f9',1,'/page/news-and-events/events/upcoming/hot-topics-gp-update-webinar-mens-health/','https://www.brisbanenorthphn.org.au/page/news-and-events/events/upcoming/hot-topics-gp-update-webinar-mens-health/','188.138.192.154','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4100.3 Safari/537.36','Template not found: page/news-and-events/events/upcoming/hot-topics-gp-update-webinar-mens-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 06:02:26',0),(65115,'2021-04-13 22:30:48','2021-05-16 10:15:29','3198a0ea-4956-4ef2-9e0b-517dcfeee070',1,'/page/health-professionals/mental-health-services/low-intensity-mental-health-services/','','62.210.188.216','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)','Template not found: page/health-professionals/mental-health-services/low-intensity-mental-health-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,15,'2021-05-16 10:15:29',0),(65116,'2021-04-13 22:32:59','2021-04-24 08:21:46','a8ae4363-01f6-4b35-8eb8-677005f42670',1,'/page/health-professionals/Local Positions Vacant/public-health-nursing-opportunities---metro-north-public-health-unit/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/public-health-nursing-opportunities---metro-north-public-health-unit','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 08:21:46',0),(65117,'2021-04-13 22:36:44','2021-05-18 12:08:09','c37361af-33c1-42d3-8f49-3078cf47267f',1,'/page/publications/recovery/recovery---august-2019/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/recovery/recovery---august-2019','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-18 12:08:09',0),(65118,'2021-04-13 22:44:24','2021-05-19 02:38:25','2c2bd12d-87fe-4042-866f-14d88cf1fff7',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/dist/swiper.js','https://www.brisbanenorthphn.org.au/page/health-professionals/mental-health-services/brisbane-mind-services/brisbane-mind4kids-0---11-years/','203.194.47.73','Mozilla/5.0 (iPhone; CPU iPhone OS 14_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1 Mobile/15E148 Safari/604.1','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,20,'2021-05-19 02:38:25',0),(65119,'2021-04-13 22:47:53','2021-05-13 04:14:28','c5a2aa69-a9f3-488e-905d-0dc700e5c52f',1,'/events/in-conversation-with-dr-jeannette-young','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/in-conversation-with-dr-jeannette-young','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-13 04:14:28',0),(65120,'2021-04-13 22:49:25','2021-04-13 22:49:25','0c2fab81-85cb-4fce-a6c9-6f2ddd3ca8f6',1,'/content/Image/Page Banners/Page Banner_TheWayBack2018_01.jpg','','66.249.65.31','Googlebot-Image/1.0','Template not found: content/Image/Page Banners/Page Banner_TheWayBack2018_01.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 22:49:25',0),(65121,'2021-04-13 22:50:24','2021-04-13 22:50:24','ecf6743f-070a-4f1b-93d1-c0778004c34b',1,'/page/news-and-events/latest-news/making-the-case-for-primary-care-reform/','','207.46.13.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/making-the-case-for-primary-care-reform','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-13 22:50:24',0),(65122,'2021-04-13 22:59:31','2021-05-16 10:25:55','f7d07260-d1bb-4e0d-9f29-0bfedd04428f',1,'/jobs/practice-nurse-3','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/practice-nurse-3','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,17,'2021-05-16 10:25:55',1),(65123,'2021-04-13 23:03:58','2021-05-14 22:29:17','4b134694-350e-4e40-8ddd-b40221fef9fc',1,'/page/about/our-committees/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/our-committees','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-14 22:29:17',0),(65124,'2021-04-13 23:04:28','2021-05-09 10:16:29','9469a5b7-e938-4cc0-8623-582dd3fa3c41',1,'/content/Document/Primary care liaison/MNHHS COHD Ref BP v6_2.rtf','http://www.brisbanenorthphn.org.au/content/Document/Primary%20care%20liaison/MNHHS%20COHD%20Ref%20BP%20v6_2.rtf','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/MNHHS COHD Ref BP v6_2.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-09 10:16:29',0),(65125,'2021-04-13 23:07:44','2021-05-16 18:21:12','9e0d9e65-596a-4855-9753-073a6286c7d5',1,'/content/Document/Pathways/Daily weight diary patient information.pdf','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/Daily weight diary patient information.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 18:21:12',0),(65126,'2021-04-13 23:16:54','2021-05-14 21:56:19','843f9343-936b-443b-84ca-6bf3d8c6ae31',1,'/content/Document/Templates/4.12/BP v4.12/MNHHS Caboolture Referral V4_12.rtf','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.12/BP v4.12/MNHHS Caboolture Referral V4_12.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-14 21:56:19',0),(65127,'2021-04-13 23:17:48','2021-04-23 07:18:05','8066d8a3-7a63-4bf0-a29f-6d0a4ccf9e12',1,'/content/Document/Templates/6.2/MNHHS Palliative Ref v6_2 MD.rtf','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Templates/6.2/MNHHS Palliative Ref v6_2 MD.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-23 07:18:05',0),(65128,'2021-04-13 23:23:07','2021-05-17 00:07:00','f5b1f178-8a8e-4999-b43a-157337e037ad',1,'/page/health-professionals/digital-health/my-health-record/what-security-and-access-controls-does-my-health-record-have/','','54.36.148.94','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)','Template not found: page/health-professionals/digital-health/my-health-record/what-security-and-access-controls-does-my-health-record-have','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-17 00:07:00',0),(65129,'2021-04-13 23:23:17','2021-05-16 10:08:22','33036823-a8e1-4b63-9ce4-d9c8d3b4cd12',1,'/page/news-and-events/events/upcoming/brisbane-north-gp-webinar-series-covid-19-update---expert-panel-advice-and-support/','','62.210.188.216','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)','Template not found: page/news-and-events/events/upcoming/brisbane-north-gp-webinar-series-covid-19-update---expert-panel-advice-and-support','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 10:08:22',0),(65130,'2021-04-13 23:23:50','2021-05-18 00:46:04','26bb2d84-5fac-414c-a522-ee934eae4ce1',1,'/events/three-phased-approach-safety-and-stabilisation','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/three-phased-approach-safety-and-stabilisation','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,16,'2021-05-18 00:46:04',0),(65131,'2021-04-13 23:27:18','2021-04-15 18:31:36','bd8a2a76-f84b-416a-a479-3f67ee5fd39b',1,'/content/Document/briskids_faq.pdf','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/briskids_faq.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-15 18:31:36',0),(65132,'2021-04-13 23:46:13','2021-05-06 05:58:03','1ac867da-59fa-4875-9b6b-40db8bd036ef',1,'/vod-type-id-3-type-情感-area--year--star--state--order-addtime.html','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type-情感-area--year--star--state--order-addtime.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-06 05:58:03',0),(65133,'2021-04-13 23:49:15','2021-05-10 08:08:48','9deafc2c-6e59-444d-85d5-559776e0b197',1,'/news/d29ya2luZy','','69.171.249.117','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: news/d29ya2luZy','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-10 08:08:48',0),(65134,'2021-04-13 23:53:51','2021-04-25 19:09:52','b64c025c-c9dd-45dc-b4ac-97c6afc8e072',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---eatons-hill','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---eatons-hill','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-25 19:09:52',0),(65135,'2021-04-13 23:54:30','2021-04-17 11:44:33','0f113ab8-e515-46d9-b04d-e69b72cff2c4',1,'/yearinreview/2017-18/wp-content/uploads/2018/11/Aged-Care-forum-7-Sept-2017-1.jpg','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/wp-content/uploads/2018/11/Aged-Care-forum-7-Sept-2017-1.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-17 11:44:33',0),(65136,'2021-04-14 00:00:12','2021-05-18 11:10:40','31845b43-f90d-4b83-921e-d36879192167',1,'/page/news-and-events/events/upcoming/redicase-training-june/','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/redicase-training-june','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-18 11:10:40',0),(65137,'2021-04-14 00:05:57','2021-05-15 18:52:46','10298676-cdf9-46ac-be05-a68bbe9db7a8',1,'/page/health-professionals/Local Positions Vacant/psychologist---caboolture','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/psychologist---caboolture','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-15 18:52:46',0),(65138,'2021-04-14 00:06:16','2021-04-25 09:50:27','11fb8635-1f2c-4866-8913-08ceabea1491',1,'/content/document/templates/4.3/specialists list palliative care 4.3.pdf','','207.46.13.54','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/document/templates/4.3/specialists list palliative care 4.3.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-25 09:50:27',0),(65139,'2021-04-14 00:14:54','2021-05-14 22:45:31','a64102db-2482-4584-b956-96e3d5f63c81',1,'/page/news-and-events/2017-news/palliative-care-resources-launched-for-gps-in-north-brisbane-and-moreton-bay/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/2017-news/palliative-care-resources-launched-for-gps-in-north-brisbane-and-moreton-bay','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-14 22:45:31',0),(65140,'2021-04-14 00:15:24','2021-05-07 15:53:16','e3817dc2-ffb0-4562-86b5-30934fad5689',1,'/page/news-and-events/events/upcoming/outbreak-management-in-residential-aged-care---how-prepared-are-you/','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/outbreak-management-in-residential-aged-care---how-prepared-are-you','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-07 15:53:16',0),(65141,'2021-04-14 00:19:21','2021-04-14 00:19:21','b817174a-cdfd-473c-aa01-36f369b1f01a',1,'/our-programs/aged-and-community-care/chronic-wound-careCrisp,','','80.72.4.100','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)','Template not found: our-programs/aged-and-community-care/chronic-wound-careCrisp,','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 00:19:21',0),(65142,'2021-04-14 00:27:20','2021-05-12 13:22:53','9f9491b9-7e50-4f93-88ba-dbc56056d0da',1,'/content/Document/Specialists List_The Prince Charles Hospital_4_10.pdf','','78.46.94.83','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:83.0) Gecko/20100101 Firefox/83.0','Template not found: content/Document/Specialists List_The Prince Charles Hospital_4_10.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-12 13:22:53',0),(65143,'2021-04-14 00:39:07','2021-05-05 23:32:11','9de32794-5f83-451a-b783-a17f9dca2bf3',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---beachmere','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---beachmere','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-05 23:32:11',0),(65144,'2021-04-14 00:50:34','2021-05-16 07:48:39','de61246c-d991-4348-951b-e87814611919',1,'/page/news-and-events/latest-news/patient-information-resource-now-available-for-those-accessing-the-ndis/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/patient-information-resource-now-available-for-those-accessing-the-ndis','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-16 07:48:39',0),(65145,'2021-04-14 00:54:12','2021-05-15 00:11:30','e7de793b-592b-4af5-8b8f-f52a4174fb04',1,'/page/about/partnership-protocols/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/partnership-protocols','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 00:11:30',0),(65146,'2021-04-14 00:56:24','2021-05-18 11:15:10','81c41df9-56a5-4a93-94f3-62093fddd34d',1,'/page/news-and-events/latest-news/updated-dementia-directory-for-moreton-bay','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/updated-dementia-directory-for-moreton-bay','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,18,'2021-05-18 11:15:10',0),(65147,'2021-04-14 00:58:43','2021-05-17 16:07:51','e19c2db6-52cd-4d5e-9552-e25a9825763a',1,'/content/Document/Brisbane MIND Provider List August 2018 (1).pdf','','157.55.39.35','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List August 2018 (1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-17 16:07:51',0),(65148,'2021-04-14 01:01:14','2021-05-10 22:08:07','a7558856-bcff-4855-995d-5fd3b8590df1',1,'/content/Document/MS Referral info and service providers.pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/MS Referral info and service providers.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-10 22:08:07',0),(65149,'2021-04-14 01:06:06','2021-05-15 03:35:40','2bbf98d0-57a9-48d9-9e25-83e517be46bf',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---albany-creek','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---albany-creek','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-15 03:35:40',0),(65150,'2021-04-14 01:09:19','2021-05-11 18:33:34','abbd4524-b13c-4bc3-86f7-85194c5a8f1f',1,'/jobs/albany-clinic-is-currently-seeing-a-female-vr-gp-to-fill-a-part-time-role-in-our-practice-the-centre-has-a-well-established-patient-base-is-privately-owned-and-located-in-albany-creek-next-to-albany-creek-village','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/albany-clinic-is-currently-seeing-a-female-vr-gp-to-fill-a-part-time-role-in-our-practice-the-centre-has-a-well-established-patient-base-is-privately-owned-and-located-in-albany-creek-next-to-albany-creek-village','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-11 18:33:34',0),(65151,'2021-04-14 01:16:42','2021-05-17 01:36:00','a0867272-5b10-4809-8c8c-4d3e456ca284',1,'/page/news-and-events/events/upcoming/covid-19-gp-live-webinar-advice-and-support-for-gps-in-racfs','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/covid-19-gp-live-webinar-advice-and-support-for-gps-in-racfs','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 01:36:00',0),(65152,'2021-04-14 01:22:54','2021-05-16 07:52:12','34eacaf5-d14f-4c3c-8074-c00aaa60555e',1,'/page/news-and-events/latest-news/vital-suicide-prevention-service-expanded/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/vital-suicide-prevention-service-expanded','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 07:52:12',0),(65153,'2021-04-14 01:22:58','2021-05-16 07:51:58','97bef089-f681-4873-b5e8-5a502fdd91d3',1,'/page/news-and-events/latest-news/transition-funding-to-bridge-the-gap-for-psychosocial-support/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/transition-funding-to-bridge-the-gap-for-psychosocial-support','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 07:51:58',0),(65154,'2021-04-14 01:28:28','2021-04-27 01:00:06','18e0474b-b1b4-436c-8871-f78b26bdd3a4',1,'/content/Document/Pathways/169169_sulpha.pdf','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/169169_sulpha.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-27 01:00:06',0),(65155,'2021-04-14 01:30:02','2021-04-24 08:13:41','b399ce1a-d645-4a00-b12d-980a4dcac2e0',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---narangba/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---narangba','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-24 08:13:41',0),(65156,'2021-04-14 01:33:59','2021-05-18 23:18:36','627e5683-0f3e-4a77-b270-19c4babd2de2',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---griffin','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---griffin','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-18 23:18:36',0),(65157,'2021-04-14 01:45:12','2021-04-22 13:55:01','e0021799-b156-404f-a6ba-30b47f713abf',1,'/content/Image/banner_page_general3.jpg','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/banner_page_general3.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-22 13:55:01',0),(65158,'2021-04-14 01:49:24','2021-05-02 06:04:48','19ff9fb7-48a6-448f-9afa-d2382adc2546',1,'/content/Document/Templates/6.1/MNHHS RBWH Ref v6_1 BP.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/MNHHS%20RBWH%20Ref%20v6_1%20BP.rtf','34.94.5.119','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/MNHHS RBWH Ref v6_1 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-02 06:04:48',0),(65159,'2021-04-14 01:49:59','2021-04-26 19:56:49','50261339-b835-4b1a-8d70-055334b220f2',1,'/page/health-professionals/immunisation/vaccine-management-plan-template/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/immunisation/vaccine-management-plan-template','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-26 19:56:49',0),(65160,'2021-04-14 01:57:09','2021-05-09 13:09:32','4b5d43c0-6160-44b1-9d25-5f34f8447c69',1,'/page/news-and-events/latest-news/trailblazer-aims-to-improve-indigenous-palliative-care-access/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/trailblazer-aims-to-improve-indigenous-palliative-care-access','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-09 13:09:32',0),(65161,'2021-04-14 02:03:02','2021-04-30 06:38:59','f95e74ec-8c41-41b3-baa1-9917c5dcd447',1,'/content/Document/170123_Public Health Alert_Update_amended_advice_regarding-screening_tests_for_patients_of_Gap_free_Smile_dental_practice.pdf','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/170123_Public Health Alert_Update_amended_advice_regarding-screening_tests_for_patients_of_Gap_free_Smile_dental_practice.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-04-30 06:38:59',0),(65162,'2021-04-14 02:20:23','2021-05-02 20:01:06','e7616206-42e9-4bde-9961-f810dfff64d8',1,'/content/Document/Pathways/Suicide...','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Suicide...','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-02 20:01:06',0),(65163,'2021-04-14 02:20:57','2021-05-08 03:09:30','93ca7758-dc9c-431c-a30e-9cba7eadca05',1,'/content/Document/MR_National report updates child vaccine coverage in Brisbane North_160218.pdf','http://www.brisbanenorthphn.org.au/content/Document/MR_National%20report%20updates%20child%20vaccine%20coverage%20in%20Brisbane%20North_160218.pdf','34.121.182.57','Go-http-client/1.1','Template not found: content/Document/MR_National report updates child vaccine coverage in Brisbane North_160218.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-08 03:09:30',0),(65164,'2021-04-14 02:22:43','2021-05-15 06:19:44','c40435c2-d972-45a9-8f37-efd8aeecc28b',1,'/content/Document/Templates/4.6/MNHHS Palliative Care PractiX v4_6.doc','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.6/MNHHS Palliative Care PractiX v4_6.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 06:19:44',0),(65165,'2021-04-14 02:22:50','2021-05-16 10:04:46','0fb68776-fd21-4812-a88a-437b63501c1a',1,'/page/health-professionals/community-care/chsp/','','62.210.188.216','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)','Template not found: page/health-professionals/community-care/chsp','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,16,'2021-05-16 10:04:46',0),(65166,'2021-04-14 02:26:58','2021-04-14 02:26:58','d66dd29a-58e8-4351-80ec-aaf6004b6eb9',1,'/events/utilising-practice-tools-pine-rivers-local-area-focus','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/utilising-practice-tools-pine-rivers-local-area-focus','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 02:26:58',0),(65167,'2021-04-14 02:48:56','2021-05-18 19:01:04','f0e9622c-609c-4f5c-8188-36bc45c4b30f',1,'/page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health-may-2017/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health-may-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-18 19:01:04',0),(65168,'2021-04-14 02:57:06','2021-04-14 02:57:06','bd8a7bd6-06b0-488d-9a9f-5923e10c2fc1',1,'/content/Document/Communities in control 2017_brochure.pdf','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Communities in control 2017_brochure.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 02:57:06',0),(65169,'2021-04-14 02:57:36','2021-05-08 09:34:13','809aa2a5-dcc6-4b6e-9212-9b207d7935e5',1,'/page/news-and-events/latest-news/covid-19-information/specimen-collection-information-and-n95-mask-availability/','','66.249.69.61','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/latest-news/covid-19-information/specimen-collection-information-and-n95-mask-availability','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-08 09:34:13',0),(65170,'2021-04-14 02:57:37','2021-04-14 02:57:37','2671a2be-5779-4de2-b7f1-fba8e4e89d6a',1,'/page/news-and-events/latest-news/covid-19-information/dist/swiper.js','https://www.brisbanenorthphn.org.au/page/news-and-events/latest-news/covid-19-information/specimen-collection-information-and-n95-mask-availability/','1.156.172.42','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','Template not found: page/news-and-events/latest-news/covid-19-information/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 02:57:37',0),(65171,'2021-04-14 03:06:07','2021-05-04 04:43:28','50afc57c-5fd9-43b3-a3d3-b7d5b21ed275',1,'/content/Document/Pathways/DASS-21.pdf','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/DASS-21.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-04 04:43:28',0),(65172,'2021-04-14 03:09:22','2021-05-12 05:49:07','187ce571-eeca-453b-a890-a5eeee62b16a',1,'/page/community/Immunisation/doctor-dad-joins-medical-mums-immunisation-campaign/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/community/Immunisation/doctor-dad-joins-medical-mums-immunisation-campaign','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-12 05:49:07',0),(65173,'2021-04-14 03:14:50','2021-04-22 22:56:04','60ba649c-0509-4187-9e19-efce34cefa12',1,'/yearinreview/a-strategic-alliance-with-our-local-hospital-services/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: yearinreview/a-strategic-alliance-with-our-local-hospital-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-22 22:56:04',0),(65174,'2021-04-14 03:27:23','2021-05-13 02:11:19','ff512f6b-feab-4efe-aadc-44215152365e',1,'/content/Document/Pathways/Link A_Comparison of Angina Pain.pdf','','207.46.13.54','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/Link A_Comparison of Angina Pain.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-13 02:11:19',0),(65175,'2021-04-14 03:27:33','2021-05-15 01:42:22','b7005b2a-f73d-4278-9f17-aef72f62c9a0',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---woody-point/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---woody-point','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 01:42:22',0),(65176,'2021-04-14 03:48:18','2021-05-14 06:41:09','ed3afbe9-a1fd-4a51-a6a6-174026f29ab5',1,'/page/news-and-events/events/upcoming/parkinson’s-disease-and-device-assisted-therapy-education-day','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/parkinson’s-disease-and-device-assisted-therapy-education-day','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-14 06:41:09',0),(65177,'2021-04-14 03:54:14','2021-05-16 01:47:29','6b9eb345-d084-4e74-b087-1e266e6f3315',1,'/events/kidney-supportive-care-symposium-march-12th-2021','','54.236.33.98','userAgent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Amazonbot/0.1; +https://developer.amazon.com/support/amazonbot)','Template not found: events/kidney-supportive-care-symposium-march-12th-2021','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,15,'2021-05-16 01:47:29',0),(65178,'2021-04-14 03:54:17','2021-05-14 22:33:58','16c82fea-dea8-4a20-a520-71c65929edf3',1,'/events/sti-and-bbv-nursing-management-and-care','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/sti-and-bbv-nursing-management-and-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,16,'2021-05-14 22:33:58',0),(65179,'2021-04-14 03:54:27','2021-04-14 03:54:27','aaf273da-6547-410f-a240-650bf4f13824',1,'/content/Media/MNHHS Caboolture Referral Genie v4(2).11.4W7','','144.76.3.131','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: content/Media/MNHHS Caboolture Referral Genie v4(2).11.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 03:54:27',0),(65180,'2021-04-14 03:54:31','2021-04-14 03:54:31','604d97f1-5ed5-479e-8893-e6e627b1dd37',1,'/content/Media/MNHHS Maternity Referral Genie v4.11.4W7','','144.76.3.131','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: content/Media/MNHHS Maternity Referral Genie v4.11.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 03:54:31',0),(65181,'2021-04-14 03:54:36','2021-04-14 03:54:36','f327a4d4-a447-49e3-86b0-08b7ee0ff56c',1,'/content/Media/MNHHS Palliative Referral Genie v4(1).11.4W7','','144.76.3.131','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: content/Media/MNHHS Palliative Referral Genie v4(1).11.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 03:54:36',0),(65182,'2021-04-14 03:54:41','2021-04-14 03:54:41','27ff34a7-50a1-41e6-9cfc-259f097a215c',1,'/content/Media/MNHHS RBWH Referral Genie v4(1).11.4W7','','144.76.3.131','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: content/Media/MNHHS RBWH Referral Genie v4(1).11.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 03:54:41',0),(65183,'2021-04-14 03:54:45','2021-04-14 03:54:45','f5c932e5-5990-4060-86ca-419852e61dd5',1,'/content/Media/MNHHS Redcliffe Referral Genie v4(1).11.4W7','','144.76.3.131','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: content/Media/MNHHS Redcliffe Referral Genie v4(1).11.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 03:54:45',0),(65184,'2021-04-14 03:54:50','2021-04-14 03:54:50','9d477c29-79b1-4070-9490-338da426f69f',1,'/content/Media/MNHHS TPCH Referral Genie v4(1).11.4W7','','144.76.3.131','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: content/Media/MNHHS TPCH Referral Genie v4(1).11.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 03:54:50',0),(65185,'2021-04-14 03:54:54','2021-04-14 03:54:54','3691f29f-5eb5-4f9a-8764-d60be77673d1',1,'/content/Media/MNHHS TPCH Referral Genie v4.11.4W7','','144.76.3.131','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: content/Media/MNHHS TPCH Referral Genie v4.11.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 03:54:54',0),(65186,'2021-04-14 03:54:59','2021-05-01 23:30:18','c3cb84d8-3e88-437f-8948-bbea7705a0cf',1,'/page/about/careers/coordinator-integration/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers/coordinator-integration','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 23:30:18',0),(65187,'2021-04-14 03:55:03','2021-04-14 03:55:03','964229e8-5f92-4094-aee3-52d44c7b8cee',1,'/page/about/careers/manager-care-coordination/','','144.76.3.131','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/about/careers/manager-care-coordination','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 03:55:03',0),(65188,'2021-04-14 03:55:07','2021-04-14 03:55:07','26041ac3-4d3b-4025-8e5a-33fb69fb9f28',1,'/page/about/careers/program-support-officer-lived-experience-networks/','','144.76.3.131','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/about/careers/program-support-officer-lived-experience-networks','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 03:55:07',0),(65189,'2021-04-14 03:55:17','2021-04-24 08:03:01','4e3d0a06-e882-45db-a86e-b3276d90b73e',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---integrated-care-community-mental-health-and-state-wide-services/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---integrated-care-community-mental-health-and-state-wide-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 08:03:01',0),(65190,'2021-04-14 03:55:21','2021-04-24 08:01:28','dc983064-07af-40b4-a211-91099ba95294',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---dayboro-medical-centre/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---dayboro-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 08:01:28',0),(65191,'2021-04-14 04:05:09','2021-05-05 05:41:55','f208f3a3-4a99-4d39-95ce-b4d9ab57baba',1,'/page/about/our-','','147.135.191.99','Mozilla/5.0 (Linux; Android 4.4.2; en-us; SAMSUNG-SM-G900A Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Version/1.6 Chrome/28.0.1500.94 Mobile Safari/537.36','Template not found: page/about/our-','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-05 05:41:55',0),(65192,'2021-04-14 04:25:52','2021-05-14 13:38:30','a340740b-2ff3-49f8-ad34-b827da7b90dc',1,'/content/Document/Network Link_03_March_FINAL_WEB.pdf','','88.198.36.62','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.67 Safari/537.36 Edg/87.0.664.52','Template not found: content/Document/Network Link_03_March_FINAL_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-14 13:38:30',0),(65193,'2021-04-14 04:30:29','2021-05-19 00:18:03','614cdc17-95aa-4a83-bf26-99e405182170',1,'/page/health-professionals/immunisation/resources/instructional-videos-for-the-australian-immunisation-register','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/immunisation/resources/instructional-videos-for-the-australian-immunisation-register','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-19 00:18:03',0),(65194,'2021-04-14 04:31:43','2021-05-11 12:10:08','0a81d0b7-90f6-48c8-a738-6f41cfde81fe',1,'/content/Document/Events/2018/GoodLifeGoodDeathExpo2018 Sponsorship Prospectus.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2018/GoodLifeGoodDeathExpo2018%20Sponsorship%20Prospectus.pdf','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/Events/2018/GoodLifeGoodDeathExpo2018 Sponsorship Prospectus.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 12:10:08',0),(65195,'2021-04-14 04:34:25','2021-05-11 13:51:39','078af180-1ab9-4dc0-bdca-37ca6b7cba8e',1,'/events/festive-season-science-predicting-preventing-anaphylaxis','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/festive-season-science-predicting-preventing-anaphylaxis','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-11 13:51:39',0),(65196,'2021-04-14 04:45:11','2021-05-07 21:40:59','dfdcddcd-03db-4e97-9b80-309071c2db35',1,'/page/news-and-events/latest-news/stakeholders-progressing-important-work','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/stakeholders-progressing-important-work','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-07 21:40:59',0),(65197,'2021-04-14 05:01:51','2021-05-11 01:40:40','ac8e7e05-0968-4b5d-8711-68f071c01b42',1,'/page/news-and-events/2017-news/funding-boost-for-local-drug-treatment-services/','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/2017-news/funding-boost-for-local-drug-treatment-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-11 01:40:40',0),(65198,'2021-04-14 05:12:09','2021-04-17 10:06:06','963c76e6-dee3-4106-80f9-6e36059fab00',1,'/jobs/ZXhwcmVzc2','','173.252.107.119','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: jobs/ZXhwcmVzc2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-17 10:06:06',0),(65199,'2021-04-14 05:19:21','2021-05-15 03:05:31','f8cbec13-3fc6-4658-a510-7c08e93e085b',1,'/page/news-and-events/events/upcoming/rheumatic-heart-disease-2-day-workshop/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/rheumatic-heart-disease-2-day-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-15 03:05:31',0),(65200,'2021-04-14 05:24:54','2021-04-23 23:28:45','416cab3f-dbac-48ad-9aba-39b347d4e132',1,'/page/news-and-events/latest-news/my-health-record-opt-out-date-announced','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/my-health-record-opt-out-date-announced','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-23 23:28:45',0),(65201,'2021-04-14 05:49:30','2021-05-15 13:13:12','5d5cb3ba-f37d-45ba-9985-f77afd927f4c',1,'/content/Document/Templates/4.12/ZM v4.12/MNHHS Maternity Referral ZM v4_12.rtf','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Templates/4.12/ZM v4.12/MNHHS Maternity Referral ZM v4_12.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-15 13:13:12',0),(65202,'2021-04-14 05:55:50','2021-04-14 05:55:50','bd3b3e84-ceaa-4e74-851c-11ebb75c30ce',1,'/content/Document/Templates/4.4/Specialists List_Palliative Care_4.4.pdf','','207.46.13.11','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.4/Specialists List_Palliative Care_4.4.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 05:55:50',0),(65203,'2021-04-14 06:00:05','2021-04-28 01:40:45','741b0579-83d2-46fa-820c-c40d7d010cc5',1,'/admin/verify-email','','165.225.114.99','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','Template not found: admin/verify-email','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-28 01:40:45',0),(65204,'2021-04-14 06:01:10','2021-05-06 07:00:18','d79d8777-ae62-4531-89a9-46157bb4723c',1,'/content/Document/phobic-disorders.pdf','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/phobic-disorders.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-06 07:00:18',0),(65205,'2021-04-14 06:17:02','2021-05-16 07:40:56','6324d6db-f812-4799-bf95-c330c291bd3e',1,'/page/news-and-events/latest-news/have-your-say-on-planning-for-wellbeing/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/have-your-say-on-planning-for-wellbeing','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-16 07:40:56',0),(65206,'2021-04-14 06:21:48','2021-05-15 20:50:21','8cd31091-b3d9-4916-bdf0-6779103f8c58',1,'/jobs/vr-general-practitioner-1','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/vr-general-practitioner-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-15 20:50:21',0),(65207,'2021-04-14 06:22:48','2021-05-02 11:28:00','cd38c83a-5485-42f8-ac0f-12f5e269f8db',1,'/content/Document/Templates/6.1/MNHHS Redcliffe Ref v6_1.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/MNHHS%20Redcliffe%20Ref%20v6_1.rtf','34.73.220.108','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/MNHHS Redcliffe Ref v6_1.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-02 11:28:00',0),(65208,'2021-04-14 06:23:59','2021-05-12 16:55:20','43609508-5b24-415c-b9ba-5ccb54972a7d',1,'/content/Document/Templates/SaAS-Diabetes-INFOSHEET.pdf','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Templates/SaAS-Diabetes-INFOSHEET.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-12 16:55:20',0),(65209,'2021-04-14 06:24:32','2021-05-15 04:05:44','19a7f4e7-d7a0-4226-a8b6-28ca70b89342',1,'/content/Document/Recovery_newsletter_June_2020.pdf','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Recovery_newsletter_June_2020.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 04:05:44',0),(65210,'2021-04-14 06:26:18','2021-04-16 23:32:39','f7de80c1-6828-4128-b11c-77165e9dd7ed',1,'/page/takingthepulse','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/takingthepulse','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-16 23:32:39',0),(65211,'2021-04-14 06:28:26','2021-05-04 00:07:52','2ae53e9d-47f1-4cf1-bc3c-fca9946f2bc2',1,'/content/Document/Events/2018/Invitation MAA 2018_Brisbane.pdf','','144.76.162.206','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1 Safari/605.1.15','Template not found: content/Document/Events/2018/Invitation MAA 2018_Brisbane.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-04 00:07:52',0),(65212,'2021-04-14 06:30:03','2021-04-14 06:30:03','8db4641f-caf2-44de-b8cf-83a8da7e93f9',1,'/_all_dbs','','91.241.19.175','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:55.0) Gecko/20100101 Firefox/55','Page not found.','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/web/Request.php',1314,1,'2021-04-14 06:30:03',0),(65213,'2021-04-14 06:35:39','2021-05-13 17:28:51','eac648e4-848e-4ae3-945a-94d7e8f8e88b',1,'/page/about/our-team/directors/','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/our-team/directors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-13 17:28:51',0),(65214,'2021-04-14 06:50:56','2021-04-25 10:15:25','d3f276f5-85a3-40f3-a28b-944439b710b1',1,'/page/health-professionals/community-care/palliative-care','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/community-care/palliative-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-25 10:15:25',0),(65215,'2021-04-14 06:50:56','2021-05-18 04:55:13','6541dae9-3334-439f-9ee8-d7ce6af03230',1,'/content/Document/Engagement/Joint PHRrefresh 2019_Final.pdf','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Engagement/Joint PHRrefresh 2019_Final.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-18 04:55:13',0),(65216,'2021-04-14 06:58:55','2021-04-23 05:44:55','63e0ab02-44c4-48d5-9126-4c13003773dc',1,'/page/news-and-events/events/upcoming/acrrms-rural-emergency-skills-training-course','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/acrrms-rural-emergency-skills-training-course','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-23 05:44:55',0),(65217,'2021-04-14 07:12:03','2021-04-14 07:12:03','5c5aef41-5f2c-493b-addc-600234608b56',1,'/events/the-role-of-digital-health-in-delivering-the-covid-19-vaccine','','66.249.65.221','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: events/the-role-of-digital-health-in-delivering-the-covid-19-vaccine','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 07:12:03',0),(65218,'2021-04-14 07:14:35','2021-05-15 06:54:50','8e67f649-4c54-47e3-bab1-f3dae31adb79',1,'/content/Document/Pathways/pathways_copdatsi.pdf','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/pathways_copdatsi.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 06:54:50',0),(65219,'2021-04-14 07:20:25','2021-04-14 07:20:25','f9f6a804-67ad-43b5-a80e-6400f9614733',1,'/events/health-coaching-to-motivate-change','','66.249.65.221','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: events/health-coaching-to-motivate-change','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 07:20:25',0),(65220,'2021-04-14 07:23:35','2021-05-18 13:18:15','5d3f6ee2-34c2-4e3b-b54d-c5e05369fbc5',1,'/page/about/careers/program-support-officer-health-alliance','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/careers/program-support-officer-health-alliance','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 13:18:15',0),(65221,'2021-04-14 07:25:27','2021-05-11 20:55:10','d7bd460d-a16e-42ae-9e5c-cc44a898fc7a',1,'/content/Document/Pathways/LINK C_What is a TIA.pdf','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Pathways/LINK C_What is a TIA.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-11 20:55:10',0),(65222,'2021-04-14 07:37:10','2021-04-14 07:37:10','2b363eb0-0d5d-4825-8092-63b5debd8a5e',1,'/content/Document/Templates/CCSS Qld Referral-Consent Form 20151102.pdf','','66.249.65.221','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Templates/CCSS Qld Referral-Consent Form 20151102.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 07:37:10',0),(65223,'2021-04-14 07:38:49','2021-04-14 07:38:49','2d8f8a43-2d87-4ee2-a892-e812ac00dac8',1,'/page/news-and-events/events/upcoming/discussion-groups-triple-p-provider-training-course/','','207.46.13.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/discussion-groups-triple-p-provider-training-course','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 07:38:49',0),(65224,'2021-04-14 07:44:21','2021-05-13 05:00:43','9a1a9545-2d23-41fe-8589-1dd67eaffa50',1,'/tel:04022016220780','https://www.google.com/','35.197.52.168','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Safari/605.1.15','Template not found: tel:04022016220780','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,18,'2021-05-13 05:00:43',0),(65225,'2021-04-14 07:57:14','2021-05-08 10:25:38','bda5dbf3-bf65-4edd-8c09-13cb5dcffa11',1,'/content/Image/News Images/BNPHN 170307_044.jpg','','66.249.69.63','Googlebot-Image/1.0','Template not found: content/Image/News Images/BNPHN 170307_044.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-08 10:25:38',0),(65226,'2021-04-14 07:57:33','2021-05-04 11:57:17','1da019ab-1845-4f83-99ba-90501494b97f',1,'/jobs/ft-vr-gp-vacated-dws-position-gp-owned-practice-mixed-billing-commutable-to-brisbane-great-team-environment','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/ft-vr-gp-vacated-dws-position-gp-owned-practice-mixed-billing-commutable-to-brisbane-great-team-environment','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-04 11:57:17',0),(65227,'2021-04-14 08:03:18','2021-04-14 08:03:18','9c77fa60-54a7-44f5-8406-d24f4f3f59c0',1,'/content/Document/Brisbane MIND Group Therapy Listing Jan 19 V1(1).pdf','','207.46.13.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Group Therapy Listing Jan 19 V1(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 08:03:18',0),(65228,'2021-04-14 08:11:54','2021-05-05 22:50:30','e7ee5cf4-63e2-4645-be2e-f78000dae9e6',1,'/page/news-and-events/events/upcoming/acrrms-rural-emergency-skills-training-course/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/acrrms-rural-emergency-skills-training-course','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-05 22:50:30',0),(65229,'2021-04-14 08:19:59','2021-04-16 18:44:24','11f48ab9-d3b4-468e-8cbd-dfc164be188f',1,'/content/Document/Brisbane MIND Provider List August 2017(1).pdf','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List August 2017(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-16 18:44:24',0),(65230,'2021-04-14 08:22:48','2021-05-15 08:45:18','45d3831b-b1b0-43a9-b0bf-9c8bfbdc3ab1',1,'/page/about/careers/board-of-director-positions/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers/board-of-director-positions','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-15 08:45:18',0),(65231,'2021-04-14 08:31:57','2021-05-13 12:45:23','879587d6-cf0f-4274-a816-bc2a06002885',1,'/yearinreview/2017-18/wp-content/uploads/2018/11/Screen-Shot-2018-11-09-at-9.38.28-am.png','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/wp-content/uploads/2018/11/Screen-Shot-2018-11-09-at-9.38.28-am.png','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 12:45:23',0),(65232,'2021-04-14 08:35:45','2021-05-10 00:30:15','8840ee7d-aac7-43b7-9e06-05fe0091b54c',1,'/jobs/vr-gp-general-practitioner-immediate-start-family-friendly-area-lawnton-qld-permanent-jobs-full-part-time','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/vr-gp-general-practitioner-immediate-start-family-friendly-area-lawnton-qld-permanent-jobs-full-part-time','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-10 00:30:15',0),(65233,'2021-04-14 08:39:28','2021-05-03 08:41:53','73002d29-31a7-40ac-86ef-796a5b3a14e0',1,'/page/health-professionals/immunisation/resources/instructional-videos-for-the-australian-immunisation-register/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/immunisation/resources/instructional-videos-for-the-australian-immunisation-register','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-03 08:41:53',0),(65234,'2021-04-14 08:59:20','2021-04-14 08:59:20','7e46cb66-966e-463e-aeb3-0b8c3a108fdc',1,'/page/health-professionals/Local Positions Vacant/allied-health-professional---wavell-heights/','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/allied-health-professional---wavell-heights','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 08:59:20',0),(65235,'2021-04-14 09:12:26','2021-05-16 02:02:47','cdf95495-e6ac-4c72-bdf5-4f5f425416e1',1,'/page/news-and-events/latest-news/an-ongoing-commitment-to-collaboration','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/an-ongoing-commitment-to-collaboration','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 02:02:47',0),(65236,'2021-04-14 09:18:33','2021-05-13 04:16:55','643587f4-716f-466a-95ad-0fc7427dfbef',1,'/events/live-web-based-prolonged-exposure-therapy-for-ptsd-and-complex-ptsd-17-18-21-august-2020','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/live-web-based-prolonged-exposure-therapy-for-ptsd-and-complex-ptsd-17-18-21-august-2020','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-13 04:16:55',0),(65237,'2021-04-14 09:35:26','2021-05-12 16:33:47','6771d897-42c6-4133-b161-b1aa1aac0873',1,'/content/Document/Recovery/FIN_1912_Access to PHN commissioned services over the holidays(1).pdf','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Recovery/FIN_1912_Access to PHN commissioned services over the holidays(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-12 16:33:47',0),(65238,'2021-04-14 09:39:44','2021-05-16 04:30:36','ea5e5576-baef-4595-b534-3425811305af',1,'/page/news-and-events/events/upcoming/advanced-life-support-brisbane/','','5.9.144.234','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/advanced-life-support-brisbane','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 04:30:36',0),(65239,'2021-04-14 09:41:33','2021-05-07 18:04:05','3f36ed74-53d9-4b51-b64e-1d3d71ef479f',1,'/jobs/medical-receptionist-bridgeman-downs','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/medical-receptionist-bridgeman-downs','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 18:04:05',0),(65240,'2021-04-14 09:52:08','2021-05-08 20:38:30','9d98c8aa-da7c-409f-883a-c4d915b7d997',1,'/page/news-and-events/events/upcoming/2020-neonatal-seminar/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/2020-neonatal-seminar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-08 20:38:30',0),(65241,'2021-04-14 10:04:23','2021-04-30 20:14:46','aa117e03-778d-43b1-8f3d-0a0cbdbc2c0a',1,'/page/news-and-events/2017-news/jeff-cheverton-memorial-scholarship-2018','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/2017-news/jeff-cheverton-memorial-scholarship-2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-30 20:14:46',0),(65242,'2021-04-14 10:12:27','2021-05-15 02:18:14','d418d902-ed61-427b-a7eb-23f7b615f33f',1,'/jobs/practice-nurse-4','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/practice-nurse-4','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-15 02:18:14',0),(65243,'2021-04-14 10:16:31','2021-05-08 04:20:42','5e4e4b0f-b5cc-454e-849b-61e241001fec',1,'/page/news-and-events/events/upcoming/gastroenterology-and-urology---august-gp-education-evening/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/gastroenterology-and-urology---august-gp-education-evening','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-08 04:20:42',0),(65244,'2021-04-14 10:27:13','2021-05-05 12:06:22','f0da35b8-fdec-4de7-913d-b16b16d6cabd',1,'/content/Document/Planning/BNPHN_MNHHS_Planning_for_Wellness_Regional_Plan_Sep2018_FINAL_WEB(1).pdf','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Planning/BNPHN_MNHHS_Planning_for_Wellness_Regional_Plan_Sep2018_FINAL_WEB(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-05 12:06:22',0),(65245,'2021-04-14 10:28:39','2021-05-15 05:27:14','3124d747-167a-4863-8047-79214e1b78ab',1,'/events/picac-network-breakfast','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/picac-network-breakfast','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-15 05:27:14',0),(65246,'2021-04-14 10:33:28','2021-04-24 11:33:01','314bcd80-2a8e-4e80-808c-9a5cb965ed39',1,'/content/Image/PHN 230218_166.jpg','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/PHN 230218_166.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-24 11:33:01',0),(65247,'2021-04-14 10:39:21','2021-05-18 03:18:06','7db704e7-4e81-4b4c-a275-76321b0b80dd',1,'/page/news-and-events/events/upcoming/common-challenges-in-primary-care-haematology-shared-care','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/common-challenges-in-primary-care-haematology-shared-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 03:18:06',0),(65248,'2021-04-14 10:43:26','2021-04-18 14:35:39','783b0586-b9f0-41b7-b167-84f55e6f468d',1,'/content/Document/Templates/4.6/MNHHS RBWH Ref MD v4_6.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.6/MNHHS%20RBWH%20Ref%20MD%20v4_6.rtf','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/Templates/4.6/MNHHS RBWH Ref MD v4_6.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-18 14:35:39',0),(65249,'2021-04-14 10:43:33','2021-05-04 04:25:17','eef8e90d-02f1-4755-9931-857d1f7375be',1,'/events/is-influenza-gone-for-good-webinar','','185.191.171.39','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)','Template not found: events/is-influenza-gone-for-good-webinar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,20,'2021-05-04 04:25:17',0),(65250,'2021-04-14 10:45:05','2021-05-18 03:13:43','7e069ed9-7bec-4801-ad41-c630c5208d86',1,'/page/health-professionals/Local Positions Vacant/general-practice-representative-qpqc-steering-committee','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practice-representative-qpqc-steering-committee','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-18 03:13:43',0),(65251,'2021-04-14 10:50:42','2021-05-15 17:29:38','6d1164b8-4542-470d-bc07-dab50881c83a',1,'/jobs/redcliffe-medical-clinic','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/redcliffe-medical-clinic','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-15 17:29:38',0),(65252,'2021-04-14 10:53:57','2021-04-16 12:50:39','dfde4ea4-553a-4ca3-91a8-785f478a0256',1,'/content/Document/Templates/4.12/BP v4.12/MNHHS Redcliffe Hospital BP V4_12.rtf','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.12/BP v4.12/MNHHS Redcliffe Hospital BP V4_12.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-16 12:50:39',0),(65253,'2021-04-14 11:06:16','2021-04-28 03:16:17','b5812252-7ed9-44aa-aa67-ef732125b503',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---taigum','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---taigum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-28 03:16:17',0),(65254,'2021-04-14 11:15:19','2021-04-14 11:15:19','8f419c24-311d-490d-ae4b-f3a0b751e64e',1,'/content/Document/MNHHS RBWH Referral PractiX v4_11(2).doc','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/MNHHS RBWH Referral PractiX v4_11(2).doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 11:15:19',0),(65255,'2021-04-14 11:21:44','2021-05-16 07:52:51','f4eda946-920e-4b11-8539-fdf1ec0671a7',1,'/page/news-and-events/metro-north-health-forum/2016-metro-north-health-forum/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/metro-north-health-forum/2016-metro-north-health-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-16 07:52:51',0),(65256,'2021-04-14 11:33:13','2021-05-15 17:39:38','c9b76f15-55c7-4bce-96e5-429dae741fe7',1,'/content/Document/Planning/REP_Joint HNA final_170316.pdf','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Planning/REP_Joint HNA final_170316.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-15 17:39:38',0),(65257,'2021-04-14 11:36:50','2021-05-05 14:49:37','17f33bbe-598b-459f-9c14-bd2eb3d042d6',1,'/content/Document/2016-MPA-flyer MM(1).pdf','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/2016-MPA-flyer MM(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-05 14:49:37',0),(65258,'2021-04-14 11:39:52','2021-05-15 11:38:58','5eb31471-c79b-41a5-9717-bc0956b6f369',1,'/jobs/dr','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/dr','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-15 11:38:58',0),(65259,'2021-04-14 11:40:51','2021-05-06 06:16:50','30582be7-29a0-4859-8c1e-fb926e8681ba',1,'/page/publications/partners-in-health/partners-in-health---february-2018','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/partners-in-health---february-2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-06 06:16:50',0),(65260,'2021-04-14 11:47:46','2021-05-16 03:01:51','31c30d92-76f4-4ab4-b6b9-855c2b24b4b4',1,'/jobs/gps-wanted-burpengary-station-medical-centre','','66.249.75.184','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: jobs/gps-wanted-burpengary-station-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 03:01:51',0),(65261,'2021-04-14 11:50:26','2021-04-28 15:07:26','ac9d82ed-dbdd-457a-922a-74b6d6a53855',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---bridgeman-downs/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---bridgeman-downs','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-28 15:07:26',0),(65262,'2021-04-14 11:53:39','2021-05-18 18:56:46','9dd3ef93-8c36-4bb8-bf6e-39808b2e0659',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/information-for-providers/information-for-providers','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services/information-for-providers/information-for-providers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-18 18:56:46',0),(65263,'2021-04-14 11:59:38','2021-05-08 01:33:31','90ea139b-4dd6-450e-a99a-0caaa162ab7a',1,'/content/Document/Specialists List_Paediatrics_4_11.pdf','','144.76.162.206','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','Template not found: content/Document/Specialists List_Paediatrics_4_11.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-08 01:33:31',0),(65264,'2021-04-14 12:05:19','2021-04-14 12:05:19','affe6c21-8333-4b23-9a5e-60455ca870a3',1,'/content/Document/Alzheimers_FLYER Deception Bay 27th June 2017.pdf','','207.46.13.5','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Alzheimers_FLYER Deception Bay 27th June 2017.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 12:05:19',0),(65265,'2021-04-14 12:10:49','2021-04-25 02:21:11','769dcdb2-dcb7-4690-b63f-3850c4d3fa5b',1,'/page/news-and-events/metro-north-health-forum','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/metro-north-health-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-25 02:21:11',0),(65266,'2021-04-14 12:11:58','2021-05-16 12:59:01','7d82c98b-8c74-45ca-b4d4-1d367768c748',1,'/page/health-reform/mental-health-services-and-alcohol-and-other-drug-treatment-services/','','157.90.181.206','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','Template not found: page/health-reform/mental-health-services-and-alcohol-and-other-drug-treatment-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,21,'2021-05-16 12:59:01',0),(65267,'2021-04-14 12:12:09','2021-05-16 10:07:01','a4b8549d-5ac6-446b-9092-d05831a9b24c',1,'/page/news-and-events/latest-news/health-alert-novel-coronavirus/','','62.210.188.216','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)','Template not found: page/news-and-events/latest-news/health-alert-novel-coronavirus','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,16,'2021-05-16 10:07:01',0),(65268,'2021-04-14 12:12:24','2021-05-13 19:02:54','ac26e184-572b-4aaf-975d-1a4b4d4690de',1,'/page/about/careers/general-practice-liaison-officer-gplo-the-health-alliance/','','157.90.181.206','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','Template not found: page/about/careers/general-practice-liaison-officer-gplo-the-health-alliance','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-13 19:02:54',0),(65269,'2021-04-14 12:12:44','2021-05-16 07:48:14','9efa4633-7d52-4966-bc0e-b044350c82ef',1,'/page/news-and-events/latest-news/on-call-medical-support-for-aged-care-facilities/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/on-call-medical-support-for-aged-care-facilities','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,18,'2021-05-16 07:48:14',0),(65270,'2021-04-14 12:26:12','2021-05-18 20:22:31','271dad96-74f0-45d6-85de-b74a4e271463',1,'/page/news-and-events/metro-north-health-forum/2018-metro-north-health-forum/','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/metro-north-health-forum/2018-metro-north-health-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-18 20:22:31',0),(65271,'2021-04-14 12:30:45','2021-04-16 16:46:04','79ac4638-bc36-4928-94b7-ce875a7b7753',1,'/page/health-professionals/Local Positions Vacant/practice-nurse-required---turbot-street-medical-centre/','','207.46.13.11','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse-required---turbot-street-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-16 16:46:04',0),(65272,'2021-04-14 12:32:37','2021-05-10 18:18:33','7a40f32e-2df3-477d-8023-9af69aad9037',1,'/page/health-professionals/digital-health/my-health-record/accessing-and-uploading-documents','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/digital-health/my-health-record/accessing-and-uploading-documents','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-10 18:18:33',0),(65273,'2021-04-14 12:41:37','2021-04-14 12:41:37','12c3acb5-c15c-4d5d-83bd-573d9b910da5',1,'/content/Document/DRA_PD_Mental Health Navigator_170613.pdf','','207.46.13.74','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/DRA_PD_Mental Health Navigator_170613.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 12:41:37',0),(65274,'2021-04-14 12:44:13','2021-05-14 05:15:53','dbe073e9-4de2-415b-a1b6-2255c0f84786',1,'/content/Document/Events/2019/Metro North Health Forum/DRA_GP_Breakfast_program2019.pdf','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Events/2019/Metro North Health Forum/DRA_GP_Breakfast_program2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-14 05:15:53',0),(65275,'2021-04-14 12:49:59','2021-05-06 16:07:12','a50daabb-29c8-4f68-bb0c-d01af578e422',1,'/page/news-and-events/events/upcoming/ask-the-experts-caring-for-people-with-cvd-during-covid-19-webinar','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/ask-the-experts-caring-for-people-with-cvd-during-covid-19-webinar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-06 16:07:12',0),(65276,'2021-04-14 12:56:04','2021-05-11 21:55:20','ffcce952-53af-4c37-bcad-6c73a934af4d',1,'/page/news-and-events/events/upcoming/pathways-to-care-workshop','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/pathways-to-care-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-11 21:55:20',0),(65277,'2021-04-14 12:59:05','2021-05-14 06:48:50','b120cfcf-e61e-4744-9faa-799c9eff1c2d',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---auchenflower/','https://www.brisbanenorthphn.org.au/page/health-professionals/Local+Positions+Vacant/general-practitioner---auchenflower/','5.188.48.10','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4102.0 Safari/537.36','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---auchenflower','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-14 06:48:50',0),(65278,'2021-04-14 13:08:49','2021-05-10 13:32:15','d6626049-a925-4383-9ee3-2a6696226e46',1,'/content/Document/Pathways/CEWT more than 12 YEARS.pdf','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/CEWT more than 12 YEARS.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-10 13:32:15',0),(65279,'2021-04-14 13:17:12','2021-05-16 07:46:20','3cd23033-201c-4c32-993e-ac933e0950db',1,'/page/news-and-events/latest-news/my-health-record-improving-outcomes-for-people-in-palliative-care/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/my-health-record-improving-outcomes-for-people-in-palliative-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,21,'2021-05-16 07:46:20',0),(65280,'2021-04-14 13:31:34','2021-05-16 22:25:51','8a7ee0f3-caa6-44dc-85f8-dd3fdf4282a1',1,'/content/Document/Events/2019/Rheumatology in Primary Care Flyer V2.pdf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2019/Rheumatology in Primary Care Flyer V2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 22:25:51',0),(65281,'2021-04-14 13:37:28','2021-05-18 04:42:05','a5f6edfa-a45d-414d-8828-d93c349462c0',1,'/page/health-professionals/Local Positions Vacant/physiotherapist-lutwyche','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/physiotherapist-lutwyche','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-18 04:42:05',0),(65282,'2021-04-14 13:43:15','2021-04-14 13:43:15','42d5b7a8-5181-493b-b359-4ab2da3dfac1',1,'/content/Document/Primary care liaison/MNHHS Redcliffe Hosp Ref v6_2 ZM.rtf','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Primary care liaison/MNHHS Redcliffe Hosp Ref v6_2 ZM.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 13:43:15',0),(65283,'2021-04-14 13:45:31','2021-05-02 14:33:39','ad5ae61b-4188-475f-aa8a-dd3fbc4b2a33',1,'/page/health-professionals/Local Positions Vacant/gp-required---albany-clinic/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/gp-required---albany-clinic','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-02 14:33:39',0),(65284,'2021-04-14 13:47:36','2021-05-11 05:59:51','616ed600-ef17-49a3-bf17-1c12d693ba59',1,'/events/bribie-island-after-hours-pilot-project-consultation','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/bribie-island-after-hours-pilot-project-consultation','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-11 05:59:51',0),(65285,'2021-04-14 13:48:11','2021-05-18 19:36:54','dbdff590-0892-40f0-b12b-fc98fe048388',1,'/page/home/metro-north-health-forum/','','157.55.39.129','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/home/metro-north-health-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,25,'2021-05-18 19:36:54',0),(65286,'2021-04-14 13:48:34','2021-05-17 10:16:38','d3d17988-1202-4e01-b977-c5bae887fea7',1,'/page/news-and-events/latest-news/gps-advised-to-enquire-about-silicosis','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/gps-advised-to-enquire-about-silicosis','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-17 10:16:38',0),(65287,'2021-04-14 13:48:35','2021-05-17 12:13:27','26ae4df2-fcaf-4ea7-83db-5124eadc94c3',1,'/content/Document/Brisbane MIND Provider List August 2017(3).pdf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List August 2017(3).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-17 12:13:27',0),(65288,'2021-04-14 13:54:28','2021-04-14 13:54:28','1d45286d-800f-42bc-9215-d060a1e9f6ec',1,'/page/news-and-events/events/archive/tips-and-strategies-in-using-technology-for-mental-health-consultations/','','13.66.139.40','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/tips-and-strategies-in-using-technology-for-mental-health-consultations','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 13:54:28',0),(65289,'2021-04-14 13:54:42','2021-05-15 22:25:16','77c5471b-9327-4e31-984d-b9c0d76a1741',1,'/page/health-professionals/Local Positions Vacant/vr-gp-required---turbot-street-medical-centre/','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/vr-gp-required---turbot-street-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 22:25:16',0),(65290,'2021-04-14 14:04:44','2021-04-29 04:57:30','536f451d-55a4-4b67-9949-02c43fe637b0',1,'/page/news-and-events/events/upcoming/introduction-to-working-therapeutically-with-complex-trauma-clients-level-1/','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/introduction-to-working-therapeutically-with-complex-trauma-clients-level-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-29 04:57:30',0),(65291,'2021-04-14 14:05:10','2021-04-24 19:55:00','c0b0d31c-17f8-4083-8e52-395228218b40',1,'/page/news-and-events/events/archive/the-prince-charles-hospital-cardiology-education-evening/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/the-prince-charles-hospital-cardiology-education-evening','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-24 19:55:00',0),(65292,'2021-04-14 14:10:34','2021-05-17 17:37:15','a0ffe38d-0e7f-4f7b-ba26-7508d5998859',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---kedron/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---kedron','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-17 17:37:15',0),(65293,'2021-04-14 14:20:31','2021-05-17 00:38:32','4bf68a94-f234-4d7d-80b3-d7a371c4aa4a',1,'/content/Document/Templates/4.6/Specialists List_RBWH_4_6.pdf','','88.198.36.62','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','Template not found: content/Document/Templates/4.6/Specialists List_RBWH_4_6.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-17 00:38:32',0),(65294,'2021-04-14 14:36:09','2021-04-14 14:36:09','c37a827f-3c27-4698-96bc-dbbded61632f',1,'/page/news-and-events/events/upcoming/reenable-face-to-face-meeting-inflammatory-arthritis/','','13.66.139.89','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/reenable-face-to-face-meeting-inflammatory-arthritis','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 14:36:09',0),(65295,'2021-04-14 14:48:21','2021-05-14 02:55:10','8214f7b1-03ea-4d56-a895-dd52e92bda1c',1,'/page/news-and-events/events/upcoming/dementia-essentials---provide-support-to-people-living-with-dementia','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/dementia-essentials---provide-support-to-people-living-with-dementia','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-14 02:55:10',0),(65296,'2021-04-14 14:51:39','2021-04-14 14:51:39','1db435b3-913f-48c3-9012-8909616b649e',1,'/yearinreview/2017-18/wp-content/uploads/2018/11/rawpixel-769305-unsplash.jpg','','66.249.65.2','Googlebot-Image/1.0','Template not found: yearinreview/2017-18/wp-content/uploads/2018/11/rawpixel-769305-unsplash.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 14:51:39',0),(65297,'2021-04-14 14:51:47','2021-04-17 21:08:25','634a81bd-5163-4a94-94db-fdfa12a4b62d',1,'/tel:0437 535 501','https://www.google.com/','35.197.111.90','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36','Template not found: tel:0437 535 501','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-17 21:08:25',0),(65298,'2021-04-14 14:53:54','2021-05-16 18:02:57','743ebf5a-4d4e-4639-b18f-6a3e4f9f78c2',1,'/index.php','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Page not found.','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/web/Application.php',581,15,'2021-05-16 18:02:57',0),(65299,'2021-04-14 14:58:14','2021-05-15 12:39:44','fb361f97-52bf-4968-8e68-15253623e249',1,'/content/Document/Pathways/Jet\'s Law Brochure - TMR.pdf','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/Jet\'s Law Brochure - TMR.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 12:39:44',0),(65300,'2021-04-14 15:03:39','2021-05-19 01:03:50','61ba9fb4-01f2-426d-8ee6-412d12971c09',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---kallangur/','','17.121.113.171','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---kallangur','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-19 01:03:50',0),(65301,'2021-04-14 15:16:39','2021-05-15 12:19:03','4a4389cf-cf32-46e9-b4f4-09999089180c',1,'/page/pathways/Behavioural Problems/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/pathways/Behavioural Problems','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-15 12:19:03',0),(65302,'2021-04-14 15:27:54','2021-04-24 01:17:13','0d377b50-ad63-4dfa-a9ba-70296bb68f8e',1,'/page/pathways/cardiovascular-disease-cvd/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/pathways/cardiovascular-disease-cvd','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 01:17:13',0),(65303,'2021-04-14 15:28:48','2021-05-08 08:44:31','4a70466f-72e7-4df5-9a32-aa61c1c22902',1,'/content/Document/Pathways/Link A_Stages of change.pdf','','66.249.69.61','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Pathways/Link A_Stages of change.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-08 08:44:31',0),(65304,'2021-04-14 15:32:05','2021-05-19 02:40:51','2b63822d-55d2-43a7-bfdd-433d2e707126',1,'/page/news-and-events/events/archive/safer-injecting-practices/','','157.55.39.116','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/safer-injecting-practices','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-19 02:40:51',0),(65305,'2021-04-14 15:33:21','2021-05-15 20:24:11','9c61629f-24b9-4a79-b948-9fd0d9571dd7',1,'/page/news-and-events/latest-news/home-exercise-cuts-healthcare-need-among-elderly','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/home-exercise-cuts-healthcare-need-among-elderly','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 20:24:11',0),(65306,'2021-04-14 15:35:00','2021-05-12 01:18:09','2ecc3c1c-8670-47a0-9b72-fbbb9b1af7dd',1,'/page/news-and-events/latest-news/diversity-and-wellness-at-the-brisbane-north-annual-aged-care-forum/','','168.119.11.187','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','Template not found: page/news-and-events/latest-news/diversity-and-wellness-at-the-brisbane-north-annual-aged-care-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-12 01:18:09',0),(65307,'2021-04-14 15:37:10','2021-05-18 10:38:11','c941eb1f-2dc8-4e8d-b319-fa4d09d53f43',1,'/jobs/rn-position','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/rn-position','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-18 10:38:11',0),(65308,'2021-04-14 15:42:07','2021-05-08 08:35:52','bc0f8198-0157-42bb-b97f-774003e7b1b6',1,'/page/news-and-events/latest-news/covid-19-information/covid-19-news-updates/','','66.249.69.61','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/latest-news/covid-19-information/covid-19-news-updates','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-08 08:35:52',0),(65309,'2021-04-14 15:45:04','2021-05-15 13:19:09','ed7ebb57-c033-4943-bdc5-de537e35d7c5',1,'/content/Document/Pathways/Public rehab options.pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/Public rehab options.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-15 13:19:09',0),(65310,'2021-04-14 15:50:16','2021-05-15 12:32:29','51e3f09f-d670-439e-895e-cbba6b3a49df',1,'/content/Document/Pathways/pathways_bestsittingposition.pdf','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/pathways_bestsittingposition.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 12:32:29',0),(65311,'2021-04-14 15:50:54','2021-05-16 04:30:41','fc5e2609-76fc-4ae7-b1df-f763cb79d48e',1,'/page/news-and-events/events/upcoming/advanced-training-in-suicide-prevention/','','5.9.144.234','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/advanced-training-in-suicide-prevention','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-16 04:30:41',0),(65312,'2021-04-14 15:51:06','2021-05-18 21:25:33','2e1ff06a-6a39-4b3e-840e-9c03028eeff1',1,'/page/health-professionals/Local Positions Vacant/registered-nurse-required---excella-medical-centre-nundah/','','40.77.167.15','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/registered-nurse-required---excella-medical-centre-nundah','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 21:25:33',0),(65313,'2021-04-14 16:01:10','2021-05-16 05:59:41','02774e62-d62b-42f3-be19-709d078b4a42',1,'/app-ads.txt','','34.250.9.32','TprAdsTxtCrawler/1.0','Template not found: app-ads.txt','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-16 05:59:41',0),(65314,'2021-04-14 16:05:15','2021-05-09 16:22:59','278db53e-8576-4f3d-9b5a-05c16dc6cd91',1,'/jobs/public-health-nurse-metro-north-public-health-unit','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/public-health-nurse-metro-north-public-health-unit','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-09 16:22:59',0),(65315,'2021-04-14 16:08:47','2021-04-14 16:08:47','e2b96394-a84e-44d5-8c76-fad96bce50cb',1,'/page/home/metro-north-health-forum/robots.txt','http://health2gether.org.au/robots.txt','114.119.152.59','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/metro-north-health-forum/robots.txt','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 16:08:47',0),(65316,'2021-04-14 16:08:48','2021-04-14 16:08:48','c2c1a451-4d2a-484d-b39a-245a1eb2f8e1',1,'/page/home/dist/swiper.js','https://www.brisbanenorthphn.org.au/page/home/metro-north-health-forum/robots.txt','114.119.152.59','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 16:08:48',0),(65317,'2021-04-14 16:10:29','2021-05-16 10:02:05','4362c487-4615-42cd-a70b-902e90eeebff',1,'/events/hygiene-and-infection-prevention-for-non-clinicians','','62.210.188.216','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)','Template not found: events/hygiene-and-infection-prevention-for-non-clinicians','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-16 10:02:05',0),(65318,'2021-04-14 16:22:03','2021-05-15 13:23:57','0d8151a8-572e-4c45-bc9b-ef24f96332fd',1,'/content/Document/Course info sheet_Cert IV in Medical Practice Assisting_UNEP_151002_FINAL.pdf','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Course info sheet_Cert IV in Medical Practice Assisting_UNEP_151002_FINAL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-15 13:23:57',0),(65319,'2021-04-14 16:24:15','2021-05-06 02:40:29','392f2af3-e381-4a96-a2a4-472ad4cfb816',1,'/page/news-and-events/events/upcoming/the-4th-perioperative-patient-blood-management-symposium','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/the-4th-perioperative-patient-blood-management-symposium','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-06 02:40:29',0),(65320,'2021-04-14 16:28:35','2021-05-16 19:10:10','1e6c5418-cea0-450c-8aeb-48306298ef15',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---chermside','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---chermside','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 19:10:10',0),(65321,'2021-04-14 16:38:21','2021-04-22 20:43:05','04c1208d-f426-4bf0-92ac-5829c29971fa',1,'/page/news-and-events/events/upcoming/trauma-informed-birthing','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/trauma-informed-birthing','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-22 20:43:05',0),(65322,'2021-04-14 16:43:47','2021-05-16 21:26:09','700d05c1-1713-4bec-a86a-f784656a6f44',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---burpengary-east','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---burpengary-east','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-16 21:26:09',0),(65323,'2021-04-14 16:44:30','2021-05-15 13:02:03','2df874f2-1647-4c0d-84ad-08449443c9f5',1,'/content/Document/COVID-19/atagi_advice_on_seasonal_influenza_vaccines_in_2020 (3).docx','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/COVID-19/atagi_advice_on_seasonal_influenza_vaccines_in_2020 (3).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 13:02:03',0),(65324,'2021-04-14 16:49:57','2021-05-05 06:32:25','2b56ca0b-8f94-4432-ae89-a0fd546032e9',1,'/content/Image/Page Banners/Banner_page_hotline.jpg','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Page Banners/Banner_page_hotline.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-05 06:32:25',0),(65325,'2021-04-14 16:56:04','2021-05-13 15:44:56','48f649e3-088a-4275-9b4c-d53cb44ef3fc',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---aspley','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---aspley','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-13 15:44:56',0),(65326,'2021-04-14 17:01:47','2021-05-15 10:36:40','b0a172e7-6a82-4995-9f56-2660515cf8a6',1,'/page/news-and-events/2017-news/health-alliance-to-bridge-primary-care-and-hospital-gap','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/2017-news/health-alliance-to-bridge-primary-care-and-hospital-gap','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 10:36:40',0),(65327,'2021-04-14 17:20:31','2021-05-17 04:17:18','4e737693-938f-4b79-b6ee-4b0799bf15d8',1,'/page/news-and-events/events/upcoming/course-in-ear-and-hearing-health/','','148.251.120.201','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/course-in-ear-and-hearing-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-17 04:17:18',0),(65328,'2021-04-14 17:21:45','2021-04-19 23:18:11','574a49fa-c83b-4aa6-a232-ee9f47cfc002',1,'/content/Document/Pathways/B1_Skin_Care.pdf','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/B1_Skin_Care.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-19 23:18:11',0),(65329,'2021-04-14 17:24:26','2021-04-22 04:55:15','44047204-8563-44ac-b18d-8558a901b33d',1,'/content/Document/Specialists List_Redcliffe Hospital_4_10(1).pdf','','178.63.51.106','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','Template not found: content/Document/Specialists List_Redcliffe Hospital_4_10(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-22 04:55:15',0),(65330,'2021-04-14 17:25:30','2021-04-14 17:25:30','dc14286d-96e3-41c1-a456-1f24fab4832e',1,'/content/Document/Specialists List_Paediatrics_4_10.pdf','','66.249.65.29','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/Specialists List_Paediatrics_4_10.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 17:25:30',0),(65331,'2021-04-14 17:26:21','2021-05-15 13:51:55','9932f3f4-3e13-4fd1-b7a4-fb06ebb74216',1,'/content/Document/Templates/4.9/MNHHS Maternity Referral ZM v4_9.rtf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.9/MNHHS Maternity Referral ZM v4_9.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-15 13:51:55',0),(65332,'2021-04-14 17:42:16','2021-04-26 03:22:14','f209fd30-0ae9-4cf6-b9f8-63d2dbd0c207',1,'/content/Document/Pathways/CVDcaseexamples45pdf[1].pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/CVDcaseexamples45pdf%5B1%5D.pdf','35.225.69.75','Go-http-client/1.1','Template not found: content/Document/Pathways/CVDcaseexamples45pdf[1].pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-26 03:22:14',0),(65333,'2021-04-14 17:49:21','2021-04-29 04:46:52','d138b552-0db7-4a50-aa44-a5be94c19a8b',1,'/events/utilising-practice-tools-city-local-area-focus','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: events/utilising-practice-tools-city-local-area-focus','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-29 04:46:52',0),(65334,'2021-04-14 17:53:07','2021-04-25 21:08:43','cb72b426-7042-49c9-8c3b-08f211c43d0f',1,'/page/news-and-events/latest-news/watch-out-measles-is-about','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/watch-out-measles-is-about','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-25 21:08:43',0),(65335,'2021-04-14 17:56:22','2021-05-15 07:19:36','a0764c2d-40da-498c-9d32-6dfac82e432f',1,'/content/Document/Pathways/LINK T_SSRI and Suicide.pdf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/LINK T_SSRI and Suicide.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 07:19:36',0),(65336,'2021-04-14 17:59:17','2021-05-11 18:12:22','2b74a417-ccde-4ba3-bd44-3693a85c5f4c',1,'/page/news-and-events/2017-news/health-alliance-to-bridge-primary-care-and-hospital-gap/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/2017-news/health-alliance-to-bridge-primary-care-and-hospital-gap','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-11 18:12:22',0),(65337,'2021-04-14 18:00:33','2021-05-16 10:18:57','99da68c1-12d1-4d7d-b622-c656573cecaf',1,'/content/Document/Pathways/Conners\' Parent Rating Scale-Revised.pdf','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Conners\' Parent Rating Scale-Revised.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,14,'2021-05-16 10:18:57',0),(65338,'2021-04-14 18:10:07','2021-05-18 10:30:19','a4fdaeb5-1701-43c9-8b3e-9629462338c6',1,'/yearinreview/2017-18/a-message-from-the-ceo-and-chair/','','40.77.167.45','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: yearinreview/2017-18/a-message-from-the-ceo-and-chair','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,14,'2021-05-18 10:30:19',0),(65339,'2021-04-14 18:10:23','2021-05-16 10:16:01','41a50bb9-ff93-47dd-aedc-26ddcd386bd9',1,'/jobs/chermside-sat-vr-gp-19ab-exemption-existing-cliente','','62.210.188.216','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)','Template not found: jobs/chermside-sat-vr-gp-19ab-exemption-existing-cliente','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 10:16:01',0),(65340,'2021-04-14 18:20:45','2021-05-17 00:49:12','5e8ddc5c-f34f-4a6f-9bfd-de6c7b860c7d',1,'/page/news-and-events/latest-news/queensland-phns-sign-agreement-to-improve-indigenous-health/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/queensland-phns-sign-agreement-to-improve-indigenous-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 00:49:12',0),(65341,'2021-04-14 18:27:42','2021-05-03 03:05:49','0f47295f-d2e0-48be-b415-e1209b3fa40d',1,'/page/news-and-events/events/upcoming/managing-vicarious-trauma','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/managing-vicarious-trauma','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-03 03:05:49',0),(65342,'2021-04-14 18:33:50','2021-04-14 18:33:50','10bca90b-7e92-4415-9686-5b05a670561b',1,'/page/news-and-events/latest-news/my-health-record-update','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/my-health-record-update','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 18:33:50',0),(65343,'2021-04-14 18:37:34','2021-05-19 01:37:07','4a801014-3a69-48e3-9613-c89db22634d2',1,'/page/health-professionals/mental-health-services/youth-mental-health-services/','','17.121.112.225','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','Template not found: page/health-professionals/mental-health-services/youth-mental-health-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,25,'2021-05-19 01:37:07',0),(65344,'2021-04-14 18:40:53','2021-05-14 05:17:42','0eb3796b-de00-4770-b91c-d793f34734c1',1,'/content/Document/Specialists List_Maternity_4_10.pdf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Specialists List_Maternity_4_10.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-14 05:17:42',0),(65345,'2021-04-14 18:44:28','2021-05-09 13:35:20','4550d856-bc76-4deb-8017-4a5b499f4368',1,'/news/wp-login.php','','193.142.146.42','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','Template not found: news/wp-login.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-09 13:35:20',0),(65346,'2021-04-14 18:45:59','2021-05-02 05:11:05','997b2bc3-eda4-4421-8750-84cf6df8f292',1,'/page/news-and-events/events/upcoming/wesley-lifeforce-suicide-prevention-gp-and-nurse-workshop---chermside/','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/wesley-lifeforce-suicide-prevention-gp-and-nurse-workshop---chermside','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-02 05:11:05',0),(65347,'2021-04-14 19:00:40','2021-05-13 21:07:36','e7f8e045-98ec-4152-b476-25ce0f74ec18',1,'/page/health-professionals/Local Positions Vacant/practice-manager---bellbowrie','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-manager---bellbowrie','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-13 21:07:36',0),(65348,'2021-04-14 19:00:54','2021-04-15 14:13:20','44ff97c1-df1e-4afe-a277-3cc663b72166',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-caboolture-east-street/','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-caboolture-east-street','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-15 14:13:20',0),(65349,'2021-04-14 19:11:55','2021-04-14 19:11:55','8e439063-426b-4744-976f-754f19feabda',1,'/events/why-osteoporosis-remains-critical-how-to-help-your-patients-stay-fracture-free','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/why-osteoporosis-remains-critical-how-to-help-your-patients-stay-fracture-free','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 19:11:55',0),(65350,'2021-04-14 19:16:49','2021-05-14 16:32:54','35170ff6-6cf3-48b9-9dab-87257049639b',1,'/position-type/general-practice-liaison-officer','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: position-type/general-practice-liaison-officer','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-14 16:32:54',0),(65351,'2021-04-14 19:20:01','2021-04-15 14:20:28','aa2f6c1f-6c76-45d4-a4ed-8d706e62882a',1,'/page/news-and-events/events/upcoming/dementia-essentials-provide-support-to-people-living-with-dementia/','','207.46.13.51','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/dementia-essentials-provide-support-to-people-living-with-dementia','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-15 14:20:28',0),(65352,'2021-04-14 19:21:25','2021-05-16 03:48:14','fc0f12d7-b859-4335-97ec-d190e18bbc06',1,'/page/health-professionals/mental-health-services/brisbane-mind4kids/contact','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/brisbane-mind4kids/contact','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 03:48:14',0),(65353,'2021-04-14 19:24:44','2021-05-15 15:40:13','38821ad8-65ad-4bb1-a544-aed378e5182b',1,'/content/Document/Templates/V5.1 Jan 2018/ZedMed/MNHHS Redcliffe Hospital v5_1 zedmed.rtf','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/V5.1 Jan 2018/ZedMed/MNHHS Redcliffe Hospital v5_1 zedmed.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-15 15:40:13',0),(65354,'2021-04-14 19:27:14','2021-05-03 11:44:47','63dbc858-556c-4ae0-b2ff-b8b511a928c7',1,'/page/news-and-events/latest-news/new-five-year-healthcare-plan-for-older-people','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/new-five-year-healthcare-plan-for-older-people','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-03 11:44:47',0),(65355,'2021-04-14 19:28:13','2021-04-14 19:28:13','08a21f6b-972a-4de3-be59-9e95043174aa',1,'/content/Document/Templates/4.5/MNHHS TPCH Referral v4.5_.4W7','','207.46.13.74','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.5/MNHHS TPCH Referral v4.5_.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 19:28:13',0),(65356,'2021-04-14 19:38:09','2021-05-04 11:58:41','aacb412c-a751-4985-bdbc-de3f3765edfd',1,'/content/Document/PD_Clinical Project Lead_Care Coordination.pdf','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/PD_Clinical Project Lead_Care Coordination.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-04 11:58:41',0),(65357,'2021-04-14 19:39:00','2021-05-11 11:20:42','02540279-bd61-4197-9c62-b518bf5a5921',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---newmarket','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---newmarket','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-11 11:20:42',0),(65358,'2021-04-14 19:44:38','2021-05-15 12:11:51','2d3e2b3a-523d-46be-a731-49426fe561f0',1,'/content/Document/Specialists List_Redcliffe Hospital_4_10.pdf','','46.4.83.150','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.67 Safari/537.36 Edg/87.0.664.55','Template not found: content/Document/Specialists List_Redcliffe Hospital_4_10.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 12:11:51',0),(65359,'2021-04-14 19:45:26','2021-05-07 16:40:00','cf9886dd-6167-4d8f-b81c-874e8ade8af8',1,'/events/using-the-clinician-vaccine-integrated-platform','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/using-the-clinician-vaccine-integrated-platform','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,25,'2021-05-07 16:40:00',0),(65360,'2021-04-14 19:50:06','2021-04-14 19:50:06','877a9234-7a40-4005-88f1-97a9901abdff',1,'/fr/model/gingerbarr/','','207.46.13.11','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: fr/model/gingerbarr','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 19:50:06',0),(65361,'2021-04-14 19:53:55','2021-05-16 06:13:04','8ff35937-5735-4aed-abf9-584139238d23',1,'/content/Document/Network Link/Network Link_January_2019_WEB.pdf','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Network Link/Network Link_January_2019_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-16 06:13:04',0),(65362,'2021-04-14 19:56:12','2021-05-17 02:11:14','e1fa16d0-4bec-4699-ab03-05f61778fb4b',1,'/page/health-professionals/Local Positions Vacant/practice-manager-bongaree','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-manager-bongaree','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 02:11:14',0),(65363,'2021-04-14 20:10:38','2021-05-15 12:31:32','47b353f6-0313-4bfd-ae77-2ff6e879da5d',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---teneriffe/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---teneriffe','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 12:31:32',0),(65364,'2021-04-14 20:18:51','2021-05-14 05:55:41','c9f6c570-9c26-4b30-902f-a525f3a2b95e',1,'/content/Document/Training Booklet Public Apr Nov 2017.pdf','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Training Booklet Public Apr Nov 2017.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-14 05:55:41',0),(65365,'2021-04-14 20:19:02','2021-04-30 08:03:06','1d917e09-4262-46a0-b6d3-d4ad5e0de642',1,'/content/Document/SEQ Murri Service Directory v5_9 January 2020 - User guide.pdf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/SEQ Murri Service Directory v5_9 January 2020 - User guide.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 08:03:06',0),(65366,'2021-04-14 20:25:07','2021-05-17 19:53:12','f799e086-9b35-4a22-89ee-9d65e3767c1b',1,'/page/news-and-events/latest-news/local-resident-and-former-gp-reflects-on-healthy-ageing-at-100','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/local-resident-and-former-gp-reflects-on-healthy-ageing-at-100','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-17 19:53:12',0),(65367,'2021-04-14 20:35:46','2021-05-14 10:36:14','5d812f4a-69e6-44ab-a3d9-e3751a9bc169',1,'/page/publications/recovery/recovery-june-2019','','66.249.69.45','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/publications/recovery/recovery-june-2019','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-14 10:36:14',0),(65368,'2021-04-14 20:45:39','2021-05-18 07:14:58','b8181312-f09d-4fef-a7f3-fe1484a92947',1,'/page/news-and-events/latest-news/call-for-expressions-of-interest-a-gp-representative-for-collaboration-in-mind/','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/call-for-expressions-of-interest-a-gp-representative-for-collaboration-in-mind','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-18 07:14:58',0),(65369,'2021-04-14 20:45:52','2021-05-09 02:37:42','3c270bab-eaa5-48a9-9f9e-ba6056d82bc9',1,'/content/Document/Templates/5.3/MNHHS Redcliffe Hospital 5_3 MD .rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%20Redcliffe%20Hospital%205_3%20MD%20.rtf','35.185.207.84','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS Redcliffe Hospital 5_3 MD .rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 02:37:42',0),(65370,'2021-04-14 20:52:30','2021-05-18 15:56:08','54e76ff8-1ba3-4cec-9d99-7eb6a63a76d5',1,'/page/news-and-events/events/upcoming/lifestyle-medicine-2020/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/lifestyle-medicine-2020','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 15:56:08',0),(65371,'2021-04-14 20:56:17','2021-05-18 16:05:19','03080273-d456-4129-af3d-8d1d791f7611',1,'/jobs/general-practitioner-bongaree','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/general-practitioner-bongaree','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-18 16:05:19',0),(65372,'2021-04-14 20:57:02','2021-05-15 17:02:09','81fc3ad8-c2a4-4740-8bf9-94d8854916ae',1,'/content/Document/Position Descriptions/PD_MHAOD_PDO_200106.pdf','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Position Descriptions/PD_MHAOD_PDO_200106.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-15 17:02:09',0),(65373,'2021-04-14 21:00:53','2021-05-02 17:24:50','f6919318-fe50-483f-baea-03759c549204',1,'/events/diagnosing-dementia-in-general-practice-a-stepwise-approach-1','','66.249.79.146','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: events/diagnosing-dementia-in-general-practice-a-stepwise-approach-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-02 17:24:50',0),(65374,'2021-04-14 21:07:33','2021-05-15 06:53:23','3c19e8ba-ccda-4870-8ce5-f491c488f31d',1,'/page/news-and-events/events/archive/ama-queensland-annual-conference','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/ama-queensland-annual-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 06:53:23',0),(65375,'2021-04-14 21:09:15','2021-05-18 22:43:35','77dca617-0583-4115-a1b4-f7e3bdd6ca8f',1,'/page/health-professionals/refugee-health/','','157.90.181.206','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/)','Template not found: page/health-professionals/refugee-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,21,'2021-05-18 22:43:35',0),(65376,'2021-04-14 21:14:47','2021-05-15 17:05:49','792880e0-021e-41de-8966-616b3f714b56',1,'/content/Document/PD_MHAODProgDevelOffic_160623.pdf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/PD_MHAODProgDevelOffic_160623.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 17:05:49',0),(65377,'2021-04-14 21:22:14','2021-05-16 12:56:16','33117ef6-b781-463b-bda1-daa072623fa7',1,'/page/health-professionals/closing-the-gap/integrated-team-care','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/closing-the-gap/integrated-team-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 12:56:16',0),(65378,'2021-04-14 21:24:57','2021-05-18 09:18:43','d8f1f356-1626-4e41-a92f-7d687e51bcd1',1,'/page/news-and-events/latest-news/new-resource-provides-support-for-carers-following-an-attempted-suicide-of-a-loved-one/','','66.220.149.9','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: page/news-and-events/latest-news/new-resource-provides-support-for-carers-following-an-attempted-suicide-of-a-loved-one','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,18,'2021-05-18 09:18:43',0),(65379,'2021-04-14 21:26:31','2021-05-18 02:34:53','190e4c75-9740-460c-b0ea-d36f72288702',1,'/page/news-and-events/latest-news/updated-dementia-directory-for-moreton-bay/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/updated-dementia-directory-for-moreton-bay','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-18 02:34:53',0),(65380,'2021-04-14 21:34:22','2021-04-14 21:34:22','dc8f739a-5a97-4ca2-8eb9-b9ba11bbd90a',1,'/page/news-and-events/events/upcoming/mastering-patient-care---allergy-and-asthma-2018/','','66.249.65.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/mastering-patient-care---allergy-and-asthma-2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 21:34:22',0),(65381,'2021-04-14 21:42:46','2021-05-12 13:57:57','4b417e0f-c6ef-41cd-9b51-c8b273e95286',1,'/content/Document/Tinnitus Reaction Questionnaire.pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Tinnitus Reaction Questionnaire.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-12 13:57:57',0),(65382,'2021-04-14 21:48:35','2021-05-15 17:43:45','ddcf3e1a-074c-4ea7-8808-621d0ac38572',1,'/page/news-and-events/events/upcoming/nsp-authorisation-training/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/nsp-authorisation-training','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-15 17:43:45',0),(65383,'2021-04-14 21:49:55','2021-05-15 18:19:56','80e3f81d-932e-4a92-8103-d60c4f8a2e8a',1,'/content/Document/Recovery/DRA_ART_1912_MNMH update(1).pdf','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Recovery/DRA_ART_1912_MNMH update(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-15 18:19:56',0),(65384,'2021-04-14 21:51:06','2021-04-24 06:21:23','6ed77631-86f0-49e4-9091-268bbb48dd1e',1,'/page/news-and-events/events/upcoming/keeping-the-business-afloat/','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.80 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/keeping-the-business-afloat','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 06:21:23',0),(65385,'2021-04-14 21:56:27','2021-04-14 21:56:27','105e3cba-80c1-4b51-a165-0421ece7c8c0',1,'/page/news-and-events/events/upcoming/hiv-prep-update-for-gps-and-practice-nurses','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/hiv-prep-update-for-gps-and-practice-nurses','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 21:56:27',0),(65386,'2021-04-14 21:57:23','2021-05-08 16:48:03','5032fb6d-784b-4238-ae7a-8552716e5b52',1,'/tel:07 3630 7300','https://www.google.com/','34.83.210.188','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0','Template not found: tel:07 3630 7300','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-08 16:48:03',0),(65387,'2021-04-14 21:59:53','2021-05-08 02:50:15','7a58c796-6fa7-442d-a9c9-97342789e6d3',1,'/jobs/vr-gp-cornwall-st-medical-centre','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/vr-gp-cornwall-st-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-08 02:50:15',0),(65388,'2021-04-14 22:09:49','2021-04-14 22:09:49','c7b91909-da08-4b86-a6d1-14d1e74ae30c',1,'/page/news-and-events/latest-news/measles-case-in-camp-mountain-brisbane-north/','','13.66.139.37','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/measles-case-in-camp-mountain-brisbane-north','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 22:09:49',0),(65389,'2021-04-14 22:10:23','2021-05-16 07:43:26','d6eda2d5-8b6d-4946-a7e9-8754c4ba58a7',1,'/page/news-and-events/latest-news/karen-refugees-get-a-healthy-start/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/karen-refugees-get-a-healthy-start','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-16 07:43:26',0),(65390,'2021-04-14 22:13:21','2021-05-15 18:21:31','7ea8bebb-876f-4e20-b009-9141ee6c29b4',1,'/events/applying-your-knowledge-case-study-discussions','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/applying-your-knowledge-case-study-discussions','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 18:21:31',0),(65391,'2021-04-14 22:20:05','2021-04-14 22:20:05','2c81891c-f58c-4204-a89b-686258313fed',1,'/research-survey/Provider Survey https://form.jotform.co/hcsurvey/palliative-care-services-survey Workforce Survey: https://form.jotform.co/hcsurvey/palliative-care-workforce-survey','https://brisbanenorthphn.org.au/research-survey/palliative-care-national-workforce-planning-study','103.87.254.78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.128 Safari/537.36','Template not found: research-survey/Provider Survey https:/form.jotform.co/hcsurvey/palliative-care-services-survey Workforce Survey: https:/form.jotform.co/hcsurvey/palliative-care-workforce-survey','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 22:20:05',0),(65392,'2021-04-14 22:20:06','2021-04-14 22:20:06','8f212a74-0c90-4a31-a843-b7bf6a5fe661',1,'/research-survey/Provider Survey https://form.jotform.co/hcsurvey/palliative-care-services-survey Workforce Survey: https://form.jotform.co/dist/swiper.js','https://brisbanenorthphn.org.au/research-survey/Provider%20Survey%20https://form.jotform.co/hcsurvey/palliative-care-services-survey%20%20Workforce%20Survey:%20https://form.jotform.co/hcsurvey/palliative-care-workforce-survey','103.87.254.78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.128 Safari/537.36','Template not found: research-survey/Provider Survey https:/form.jotform.co/hcsurvey/palliative-care-services-survey Workforce Survey: https:/form.jotform.co/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 22:20:06',0),(65393,'2021-04-14 22:20:07','2021-05-11 02:08:17','f3015d86-7154-439c-85e8-c30c7e41c1d4',1,'/events/hepatitis-c-in-drug-and-alcohol-settings-online-training','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/hepatitis-c-in-drug-and-alcohol-settings-online-training','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-11 02:08:17',0),(65394,'2021-04-14 22:31:42','2021-04-14 22:31:42','0bfe9f5c-c6ee-46f1-8a12-eaf1faa6e61b',1,'/content/Document/Templates/4.5/MNHHS Caboolture Referral MD v4.5 160101.rtf','','13.66.139.89','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.5/MNHHS Caboolture Referral MD v4.5 160101.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 22:31:42',0),(65395,'2021-04-14 22:32:18','2021-05-18 09:34:50','ce4a42c9-aeb5-4f54-9bf6-264e7deebd4b',1,'/page/privacy-policy/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/privacy-policy','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,25,'2021-05-18 09:34:50',0),(65396,'2021-04-14 22:37:49','2021-05-10 01:13:50','fd6639a5-0a4d-422e-ab65-201fad4e72d8',1,'/content/Document/Updated RACF Transfer to Hospital Form.doc','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Updated RACF Transfer to Hospital Form.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-10 01:13:50',0),(65397,'2021-04-14 23:03:24','2021-04-24 09:04:11','311d075a-5e7d-4db3-9046-f4c140db87e3',1,'/page/news-and-events/latest-news/doctor-dad-joins-medical-mums-immunisation-campaign/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/latest-news/doctor-dad-joins-medical-mums-immunisation-campaign','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 09:04:11',0),(65398,'2021-04-14 23:05:45','2021-05-15 20:14:42','0f03c0da-c5e9-47d0-9a65-bed9ff8bbc21',1,'/page/news-and-events/latest-news/mental-health-pathways-to-help-expectant-mums-and-dads/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/mental-health-pathways-to-help-expectant-mums-and-dads','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-15 20:14:42',0),(65399,'2021-04-14 23:05:48','2021-05-10 16:18:36','3e1a4144-e6c7-4911-b926-bb94f22a8ad4',1,'/content/Document/Pathways/LINK G_Excercise and Lifestyle options_FINAL.pdf','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/LINK G_Excercise and Lifestyle options_FINAL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-10 16:18:36',0),(65400,'2021-04-14 23:08:14','2021-04-14 23:08:14','7b66d4e5-ab77-416b-8651-38921c8cc035',1,'/content/Document/MNHHS Paediatric Referral BP v4_11(1).rtf','','13.66.139.89','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/MNHHS Paediatric Referral BP v4_11(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 23:08:14',0),(65401,'2021-04-14 23:15:17','2021-05-17 14:16:43','c012a586-2243-4f01-ac6f-1c0e9af1552d',1,'/page/about/our-region/health-planning','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/about/our-region/health-planning','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-17 14:16:43',0),(65402,'2021-04-14 23:18:25','2021-05-18 17:44:00','54081797-210e-4fb5-905e-c2314511e3d6',1,'/content/Document/PD_Aged Care Project Lead_170523.pdf','','66.249.68.31','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/PD_Aged Care Project Lead_170523.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 17:44:00',0),(65403,'2021-04-14 23:21:01','2021-05-16 10:15:56','71d08300-7da7-4aeb-a795-e9a3cd75b1da',1,'/content/Document/Pathways/DASS_21.pdf','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/DASS_21.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 10:15:56',0),(65404,'2021-04-14 23:25:33','2021-04-18 07:18:56','0ecd649c-2e3a-4b7f-9509-1b1a9af19374',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-caboolture-4','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-caboolture-4','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-18 07:18:56',0),(65405,'2021-04-14 23:30:50','2021-05-02 17:51:23','32f72609-6e2a-42c5-9c9b-87ab1cf50a3d',1,'/page/news-and-events/events/upcoming/spiritual-aspects-of-palliative-care','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/spiritual-aspects-of-palliative-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-02 17:51:23',0),(65406,'2021-04-14 23:36:04','2021-04-14 23:36:04','24f0b90d-3645-4878-a7aa-40b32055d192',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-required---warner-family-medical-practice/','','13.66.139.89','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-required---warner-family-medical-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 23:36:04',0),(65407,'2021-04-14 23:41:52','2021-05-15 18:49:01','f1a33893-8c9c-4d92-b557-a13ad764cf5b',1,'/content/Document/Position Descriptions/PD_Digital Health Support Officer_200131(1).pdf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Position Descriptions/PD_Digital Health Support Officer_200131(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-15 18:49:01',0),(65408,'2021-04-14 23:42:13','2021-05-11 04:31:26','5a6ab9f2-e577-4dc6-a9a6-022e6ad3e962',1,'/page/news-and-events/latest-news/dr-trish-baker-re-elected-to-phn-board-at-agm/','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/dr-trish-baker-re-elected-to-phn-board-at-agm','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-11 04:31:26',0),(65409,'2021-04-14 23:46:59','2021-05-15 19:26:42','8f0239a6-ef45-46d5-b8df-97295c9bf5a2',1,'/content/Document/Campaign material/19_5069 PHN Adult Immunisation factsheet_FINAL_WEB.pdf','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Campaign material/19_5069 PHN Adult Immunisation factsheet_FINAL_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-15 19:26:42',0),(65410,'2021-04-14 23:49:55','2021-05-16 07:50:17','9f50c39e-2a4f-4073-b9ca-bbebc28db6b9',1,'/page/news-and-events/events/upcoming/brisbane-north-allied-health-collaborative-evening/','','148.251.9.145','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/brisbane-north-allied-health-collaborative-evening','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 07:50:17',0),(65411,'2021-04-14 23:51:49','2021-04-14 23:51:49','da49c99f-5fcf-4a28-8931-d26570a8705b',1,'/content/Document/Templates/V5.1 Jan 2018/ZedMed/MNHHS TPCH v5_1 zedmed.rtf','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/V5.1 Jan 2018/ZedMed/MNHHS TPCH v5_1 zedmed.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-14 23:51:49',0),(65412,'2021-04-14 23:55:21','2021-05-12 04:14:48','28328d0c-1e25-493e-afcf-01ed9aff44d7',1,'/team/executive-manager-health-systems-improvement','','66.249.79.150','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: team/executive-manager-health-systems-improvement','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-12 04:14:48',1),(65413,'2021-04-15 00:01:30','2021-05-19 00:33:46','c560f17c-3bf9-4e47-a633-e93affab7e7e',1,'/page/news-and-events/events/upcoming/advanced-training-in-suicide-prevention---3rd-november/','','157.55.39.35','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/advanced-training-in-suicide-prevention---3rd-november','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-19 00:33:46',0),(65414,'2021-04-15 00:01:35','2021-05-15 02:29:07','ae04a318-aad5-46a1-9665-4e91296d7a71',1,'/page/news-and-events/events/upcoming/afternoon-symposium---occupational-health/','','5.9.77.102','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/afternoon-symposium---occupational-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-15 02:29:07',0),(65415,'2021-04-15 00:07:01','2021-05-05 16:26:08','951c7345-c47c-4246-9dc8-efcc583224e3',1,'/page/health-professionals/mental-health-services/suicide-prevention-services','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/suicide-prevention-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-05 16:26:08',0),(65416,'2021-04-15 00:27:38','2021-05-17 07:09:34','17e8fdbe-8ca0-4151-b065-9440c09df540',1,'/yearinreview/2017-18/who-is-brisbane-north-phn/www.brisbanenorthphn.org.au','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/who-is-brisbane-north-phn/www.brisbanenorthphn.org.au','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 07:09:34',0),(65417,'2021-04-15 00:28:42','2021-04-16 18:56:34','f2810923-d92a-474c-bb6a-a1def2069e26',1,'/content/Document/Events/Metro North Comunity Aged Care Forum Program - 19 November 2015.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/Metro%20North%20Comunity%20Aged%20Care%20Forum%20Program%20-%2019%20November%202015.pdf','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/Events/Metro North Comunity Aged Care Forum Program - 19 November 2015.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-16 18:56:34',0),(65418,'2021-04-15 00:37:05','2021-05-18 02:59:04','49ed3f89-e0e4-4ecd-a41f-16c1e67bd1d0',1,'/content/Document/Statement of Intent_PHN_SIGNED.pdf','','34.220.169.196','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36','Template not found: content/Document/Statement of Intent_PHN_SIGNED.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,90,'2021-05-18 02:59:04',0),(65419,'2021-04-15 00:37:21','2021-05-13 12:08:14','b3dcfe13-3096-4b48-a82b-94c77f8b224f',1,'/page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health-august-2017','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health-august-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-13 12:08:14',0),(65420,'2021-04-15 00:49:34','2021-05-10 01:18:36','de80df3e-33e5-4ad8-a5a8-624c7c7bc614',1,'/page/news-and-events/events/archive/workforce-capacity-building-self-care-and-self-compassion/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/workforce-capacity-building-self-care-and-self-compassion','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 01:18:36',0),(65421,'2021-04-15 00:50:34','2021-05-15 20:10:49','6cbe28f7-c98f-44b8-813a-28da7e8acb56',1,'/content/Media/Genie v6.2/MNHHS Redcliffe Referral v6_2_Genie.4W7','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Media/Genie v6.2/MNHHS Redcliffe Referral v6_2_Genie.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-15 20:10:49',0),(65422,'2021-04-15 01:04:27','2021-05-07 07:31:34','39dcc94b-5954-4deb-89f1-44856dc076f4',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---beachmere','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---beachmere','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-07 07:31:34',0),(65423,'2021-04-15 01:12:18','2021-05-11 07:08:52','b1ff1eaa-1810-444f-b27d-c55ef5729fa3',1,'/content/document/gp psych opinion referral form 2014.pdf','','207.46.13.59','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/document/gp psych opinion referral form 2014.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-11 07:08:52',0),(65424,'2021-04-15 01:17:13','2021-05-18 07:47:58','ec9cabd7-3bba-4fad-bfaa-0094f1bc3200',1,'/content/Document/Pathways/Suicide Safety Plan.pdf','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Suicide Safety Plan.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,27,'2021-05-18 07:47:58',0),(65425,'2021-04-15 01:24:35','2021-05-06 23:34:37','609a0311-aa56-4c69-b97e-f7e7c270aa20',1,'/content/Document/Templates/4.3/MNHHS Caboolture Referral ZM v4.3.rtf','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.3/MNHHS Caboolture Referral ZM v4.3.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 23:34:37',0),(65426,'2021-04-15 01:28:06','2021-04-15 01:28:06','776e5d8b-5c0d-45b2-8235-00e53c5380b0',1,'/page/news-and-events/latest-news/gp-smart-referrals-proving-popular-in-brisbane-north','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/gp-smart-referrals-proving-popular-in-brisbane-north','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 01:28:06',0),(65427,'2021-04-15 01:33:43','2021-04-15 01:33:43','709f0cfc-e11a-4192-ae3a-87b9dea8cd6d',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---caboolture','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---caboolture','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 01:33:43',0),(65428,'2021-04-15 01:38:49','2021-05-08 02:42:10','4ef73945-c24f-4f58-9da5-e06458e0108b',1,'/jobs/general-practitioner-required-at-gympie-road-medical-centre','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/general-practitioner-required-at-gympie-road-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-08 02:42:10',0),(65429,'2021-04-15 01:53:41','2021-05-18 14:20:59','5ce7986f-8cfa-47d0-9cdf-dc4309ac6be8',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---kedron','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---kedron','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,15,'2021-05-18 14:20:59',0),(65430,'2021-04-15 01:58:13','2021-05-13 12:21:32','2564592d-a5f0-44f0-96a9-d35615ab3739',1,'/page/health-professionals/chronic-disease-management/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/chronic-disease-management','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-13 12:21:32',0),(65431,'2021-04-15 02:08:26','2021-05-17 20:15:28','ea6aeb0a-44d5-47c4-9cda-5f756e41ce61',1,'/events/lifestyle-medicine-2020-virtual','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/lifestyle-medicine-2020-virtual','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-17 20:15:28',0),(65432,'2021-04-15 02:15:42','2021-05-16 16:07:23','493db8be-f30e-4fe9-b9fd-3876c316b34f',1,'/page/news-and-events/events/upcoming/heart-failure-case-discussion','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/heart-failure-case-discussion','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-16 16:07:23',0),(65433,'2021-04-15 02:25:15','2021-05-11 09:47:36','638fe478-2dbd-47ac-8bcd-983abe180634',1,'/page/contact-us/get-in-touch-with-our-primary-care-liasion-officers/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/contact-us/get-in-touch-with-our-primary-care-liasion-officers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-11 09:47:36',0),(65434,'2021-04-15 02:29:14','2021-04-29 19:20:42','eb7e9887-1e0f-435e-87d9-de96b657e493',1,'/content/Document/Brisbane MIND Provider SummaryV1_HP formatted(1).pdf','http://www.brisbanenorthphn.org.au/content/Document/Brisbane%20MIND%20Provider%20SummaryV1_HP%20formatted(1).pdf','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/Brisbane MIND Provider SummaryV1_HP formatted(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-04-29 19:20:42',0),(65435,'2021-04-15 02:31:14','2021-05-12 22:02:36','fb56a74e-dc25-47cc-ae98-75471d70c33c',1,'/page/health-professionals/my-health-record/training/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/my-health-record/training','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-12 22:02:36',0),(65436,'2021-04-15 02:42:26','2021-05-01 18:12:24','38cd972d-ad8d-4cc2-96ad-26535a7cfb34',1,'/content/Image/BNPHN_011(1).jpg','','66.249.68.29','Googlebot-Image/1.0','Template not found: content/Image/BNPHN_011(1).jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-01 18:12:24',0),(65437,'2021-04-15 02:49:36','2021-04-23 14:25:20','0f565052-e703-4213-9c52-fdb3e683516e',1,'/content/Image/Page Banners/Banner_page_PiR-crowd.jpg','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Page Banners/Banner_page_PiR-crowd.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-23 14:25:20',0),(65438,'2021-04-15 02:52:20','2021-05-16 23:28:40','ca177705-e876-426c-a892-74f20ec09418',1,'/content/Document/Palliative Care Service Provider Listing Version 3.0, July 2015.pdf','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Palliative Care Service Provider Listing Version 3.0, July 2015.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,16,'2021-05-16 23:28:40',0),(65439,'2021-04-15 02:55:01','2021-05-07 19:01:17','536ab315-da7e-4f6f-a114-184395fe7b77',1,'/yearinreview/2018-19/wp-content/uploads/2018/11/Group-Copy-4.jpg','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2018-19/wp-content/uploads/2018/11/Group-Copy-4.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-07 19:01:17',0),(65440,'2021-04-15 02:56:30','2021-05-12 02:00:56','acccb0c6-8acb-42b2-972f-04c98b531de8',1,'/page/news-and-events/2017-news/brisbane-north-phn-farewells-board-chair/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/2017-news/brisbane-north-phn-farewells-board-chair','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-12 02:00:56',0),(65441,'2021-04-15 03:17:28','2021-04-20 00:29:41','46242ea7-cf76-4bf9-9787-5e99b0d009f3',1,'/content/Document/Network Link/Network Link_2_February_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%20Link/Network%20Link_2_February_WEB.pdf','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/Network Link/Network Link_2_February_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-20 00:29:41',0),(65442,'2021-04-15 03:18:26','2021-05-18 13:10:18','70e8b846-c7b6-4d4b-881f-fc5dc515a1f2',1,'/content/Document/Templates/MNHHS CISS CCDT Service Profile.pdf','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Templates/MNHHS CISS CCDT Service Profile.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 13:10:18',0),(65443,'2021-04-15 03:27:45','2021-04-15 03:27:45','34ff57c0-6599-4186-83fb-484a604ee213',1,'/content/Media/Genie v4.12/MNHHS Caboolture Referral Genie v4.12.4W7','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: content/Media/Genie v4.12/MNHHS Caboolture Referral Genie v4.12.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 03:27:45',0),(65444,'2021-04-15 03:28:40','2021-04-15 03:28:40','5c6349f9-1909-4382-af9b-17f85df91cf8',1,'/content/Media/Genie v4.12/MNHHS Paediatric Referral Genie v4.12.4W7.4W7','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: content/Media/Genie v4.12/MNHHS Paediatric Referral Genie v4.12.4W7.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 03:28:40',0),(65445,'2021-04-15 03:29:41','2021-04-15 03:29:41','0c9b03da-0a9e-41e5-b769-6e60bd3e78cb',1,'/content/Media/Genie v4.12/MNHHS Palliative Care Referral Genie v4.12.4W7','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: content/Media/Genie v4.12/MNHHS Palliative Care Referral Genie v4.12.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 03:29:41',0),(65446,'2021-04-15 03:30:37','2021-04-15 03:30:37','05755c49-9449-4aa3-a42e-9dc5038befcb',1,'/content/Media/Genie v4.12/MNHHS Redcliffe Referral Genie v4.12.4W7','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: content/Media/Genie v4.12/MNHHS Redcliffe Referral Genie v4.12.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 03:30:37',0),(65447,'2021-04-15 03:31:43','2021-04-15 03:31:43','c974d325-b220-47ea-a6e0-7c23e18cff45',1,'/content/Media/Genie v4.12/MNHHS TPCH Referral Genie v4.12.4W7','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: content/Media/Genie v4.12/MNHHS TPCH Referral Genie v4.12.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 03:31:43',0),(65448,'2021-04-15 03:32:36','2021-04-15 03:32:36','6034e76b-0bed-4ffd-9f24-92e84ebf91a6',1,'/events/diabetes-move','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: events/diabetes-move','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 03:32:36',0),(65449,'2021-04-15 03:34:21','2021-04-15 03:34:21','47f70bc4-a2dc-4072-9c39-d59eb1c94de3',1,'/events/diabetes-what-now-chermside-part-2-2','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: events/diabetes-what-now-chermside-part-2-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 03:34:21',0),(65450,'2021-04-15 03:35:23','2021-04-15 03:35:23','74eb4822-746b-48c7-bdf2-82b015512193',1,'/wp-content/plugins/easy-wp-smtp/','','152.228.219.201','python-requests/2.25.1','Template not found: wp-content/plugins/easy-wp-smtp','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 03:35:23',0),(65451,'2021-04-15 03:35:40','2021-05-09 22:02:10','86615d7c-609b-4dc7-b687-dcc2231087b7',1,'/events/diversity-mental-distress-and-well-being-three-groups-young-people','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/diversity-mental-distress-and-well-being-three-groups-young-people','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 22:02:10',0),(65452,'2021-04-15 03:36:36','2021-04-15 03:36:36','f93d18cf-47d3-45ae-9a11-b5cca01f7cee',1,'/events/emergency-mental-health-workshop','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: events/emergency-mental-health-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 03:36:36',0),(65453,'2021-04-15 03:37:29','2021-04-15 03:37:29','8734e94d-ea1c-4299-a0b3-da81349bafe3',1,'/events/engaging-effective-brief-contact-or-single-session-bereavement-support','','167.114.101.80','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: events/engaging-effective-brief-contact-or-single-session-bereavement-support','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 03:37:29',0),(65454,'2021-04-15 03:56:35','2021-05-18 03:49:15','24ac7169-e62d-4837-a021-b524db79624a',1,'/page/news-and-events/latest-news/expression-of-interest---mental-health-alcohol-and-other-drugs-clinical-governance-reference-group/','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/expression-of-interest---mental-health-alcohol-and-other-drugs-clinical-governance-reference-group','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-18 03:49:15',0),(65455,'2021-04-15 04:09:52','2021-04-15 04:09:52','4ea19c9b-9552-426e-929c-60c0d2148c4a',1,'/content/Document/Events/2018/5350 Medical reception flyer-v2.pdf','','66.249.71.61','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Events/2018/5350 Medical reception flyer-v2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 04:09:52',0),(65456,'2021-04-15 04:15:42','2021-05-07 11:34:07','8be984ec-939c-41bd-ac31-3d0db8b7392c',1,'/content/Document/Events/invitation - General Practice Forum Caboolture - 18 October 2016_v1_0.pdf','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Events/invitation - General Practice Forum Caboolture - 18 October 2016_v1_0.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-07 11:34:07',0),(65457,'2021-04-15 04:25:38','2021-05-18 14:56:22','023a46d3-beac-43c2-a4c9-7d85df7d45bf',1,'/jobs/podiatrist-vacancy-smartclinics-deception-bay','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/podiatrist-vacancy-smartclinics-deception-bay','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-18 14:56:22',0),(65458,'2021-04-15 04:29:50','2021-05-10 16:16:14','b3dbbebd-b844-4c04-bb26-27782a9fa058',1,'/page/home/banners/find-out-more-about-my-health-record/','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/banners/find-out-more-about-my-health-record','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-10 16:16:14',0),(65459,'2021-04-15 04:35:34','2021-05-05 05:57:43','34f01ae9-f7cc-40a3-aec0-c5e2bec010d9',1,'/page/home/featurettes/health-professionals/','','78.46.61.245','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/home/featurettes/health-professionals','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-05 05:57:43',0),(65460,'2021-04-15 04:41:22','2021-04-15 04:41:22','61d4d8de-b90b-4c8e-a559-6445d6c653e3',1,'/events/medicinal-marijuana-impacts-in-the-workplace','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/medicinal-marijuana-impacts-in-the-workplace','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 04:41:22',0),(65461,'2021-04-15 05:14:53','2021-05-11 08:33:01','c1b45dfe-bc3e-4e35-a758-4d6ddabcf6f3',1,'/content/Document/Primary care liaison/Specialists List_COHD_6_2.pdf','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Primary care liaison/Specialists List_COHD_6_2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-11 08:33:01',0),(65462,'2021-04-15 05:20:50','2021-04-21 21:47:39','7a9fd2aa-18fe-4ded-bea9-d50081688ec6',1,'/page/news-and-events/events/upcoming/immunisation-catch-up-events-for-practice-nures---lutwyche-may/','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/immunisation-catch-up-events-for-practice-nures---lutwyche-may','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-21 21:47:39',0),(65463,'2021-04-15 05:33:11','2021-05-19 00:00:38','6759e7b0-e14c-4188-80f8-7fda19ff1807',1,'/page/home/banners/our-plan-to-support-older-people-in-our-region','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/banners/our-plan-to-support-older-people-in-our-region','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-19 00:00:38',0),(65464,'2021-04-15 05:33:33','2021-05-16 19:07:11','b7fdfd31-4c7c-4a0f-8afd-ed7381a08495',1,'/page/news-and-events/latest-news/covid-19-information','','185.191.171.37','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)','Template not found: page/news-and-events/latest-news/covid-19-information','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 19:07:11',1),(65465,'2021-04-15 05:45:20','2021-05-13 09:57:16','4ca5a93f-5f24-4671-90b7-148d32a42382',1,'/page/news-and-events/events/archive/occupational-health-symposium---breaking-barriers','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/occupational-health-symposium---breaking-barriers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-13 09:57:16',0),(65466,'2021-04-15 05:49:07','2021-04-15 05:49:07','9ad691c7-aeb8-4171-b5b6-c399c1243f62',1,'/oauth/authorize','','124.190.163.249','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148','Template not found: oauth/authorize','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 05:49:07',0),(65467,'2021-04-15 06:09:17','2021-05-18 03:37:58','f07ef101-ff88-4057-89ec-9d80a7a32f75',1,'/content/Document/Pathways/Wound care_clinical classification of infection_link.pdf','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Wound care_clinical classification of infection_link.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 03:37:58',0),(65468,'2021-04-15 06:14:19','2021-05-11 08:16:39','4dd88f6a-96d7-4b90-86fe-4bb97391c31f',1,'/content/Document/Brisbane MIND Service Provider Guidelines 2017_WEB.pdf','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Brisbane MIND Service Provider Guidelines 2017_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-11 08:16:39',0),(65469,'2021-04-15 06:18:25','2021-04-24 08:42:56','fd7d10bd-6636-49f5-b7b8-68a5f44d98d6',1,'/page/news-and-events/events/upcoming/ama-queensland-2018-private-practice-and-medico-legal-conference/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/ama-queensland-2018-private-practice-and-medico-legal-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 08:42:56',0),(65470,'2021-04-15 06:21:37','2021-05-16 08:48:55','1cc8bb63-e408-4ebc-8f22-e460fda550d8',1,'/content/Document/Network Link/Network Link_07_JULY_WEB.pdf','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Network Link/Network Link_07_JULY_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 08:48:55',0),(65471,'2021-04-15 06:31:14','2021-05-03 00:54:42','13bbf2dc-e93e-4630-8618-8cac28b70207',1,'/content/Document/Paediatric Services Directory - Metro North District_FINAL_v4_0.pdf','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Paediatric Services Directory - Metro North District_FINAL_v4_0.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-03 00:54:42',0),(65472,'2021-04-15 06:32:39','2021-05-17 23:19:11','e0d3b657-37c1-4c19-88f0-23230bf14021',1,'/users/job/dist/swiper.js','https://brisbanenorthphn.org.au/users/job/strathpine-gp-superclinic-practice-nurse-2/edit','203.17.149.16','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','Template not found: users/job/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,20,'2021-05-17 23:19:11',0),(65473,'2021-04-15 06:43:10','2021-05-17 18:10:18','fdcc0950-cf30-4896-a90d-13ea5ee8ac02',1,'/content/Document/Templates/V5.1 Jan 2018/Specialist lists/Specialists List_The Prince Charles Hospital_5_1.pdf','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Templates/V5.1 Jan 2018/Specialist lists/Specialists List_The Prince Charles Hospital_5_1.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,16,'2021-05-17 18:10:18',0),(65474,'2021-04-15 06:46:30','2021-04-20 16:33:18','330ccb37-7bfe-4601-a836-131623b58b95',1,'/content/Document/Pathways/TS2_Preventing_SkinTears.pdf','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/TS2_Preventing_SkinTears.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-20 16:33:18',0),(65475,'2021-04-15 06:54:05','2021-05-09 03:19:49','f9cad130-7b03-409a-a24f-695a95c6f3f9',1,'/news/a-joint-protocol-renewed','','54.36.149.107','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)','Template not found: news/a-joint-protocol-renewed','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-09 03:19:49',1),(65476,'2021-04-15 07:10:11','2021-05-14 04:51:47','cbb26b21-f961-4849-bf5d-2914a056a1fa',1,'/our-programs/bWVudGFsLW','','20.40.170.117','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.136 Safari/537.36','Template not found: our-programs/bWVudGFsLW','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-14 04:51:47',0),(65477,'2021-04-15 07:34:26','2021-05-16 02:25:43','aabcefbf-58ac-46e2-baee-45b854fa0fa7',1,'/yearinreview/2017-18/wp-content/uploads/2018/11/Womens-Health-2.jpg','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/wp-content/uploads/2018/11/Womens-Health-2.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 02:25:43',0),(65478,'2021-04-15 07:35:32','2021-04-15 07:35:32','38d01668-9505-44e6-96b7-7cc02c403ad0',1,'/our-programs/aged-and-community-care/chronic-wound-careBrown,','','80.72.11.74','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)','Template not found: our-programs/aged-and-community-care/chronic-wound-careBrown,','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 07:35:32',0),(65479,'2021-04-15 07:48:33','2021-05-15 13:26:51','255b7bf7-ef4b-476d-8e7d-bc21fbeb9d22',1,'/page/health-professionals/immunisation/','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/immunisation','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,15,'2021-05-15 13:26:51',0),(65480,'2021-04-15 07:54:51','2021-05-01 17:48:03','1feefa7b-869a-44d9-953c-7c9957eef194',1,'/yearinreview/supporting-frontline-healthcare-services','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/supporting-frontline-healthcare-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 17:48:03',0),(65481,'2021-04-15 07:55:52','2021-04-15 07:55:52','764d58a3-4917-49d5-ae47-e729c83778bf',1,'/content/Document/BNPHN_Understanding_Your_Rolhttp://www.brisbanenorthphn.org.au/content/Document/BNPHN_Understanding_Your_Role_NDIS_GP_Toolkit_May2018_FINAL_WEB.pdfe_NDIS_GP_Toolkit_May2018_FINAL_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/BNPHN_Understanding_Your_Rolhttp://www.brisbanenorthphn.org.au/content/Document/BNPHN_Understanding_Your_Role_NDIS_GP_Toolkit_May2018_FINAL_WEB.pdfe_NDIS_GP_Toolkit_May2018_FINAL_WEB.pdf','95.217.41.194','','Template not found: content/Document/BNPHN_Understanding_Your_Rolhttp:/www.brisbanenorthphn.org.au/content/Document/BNPHN_Understanding_Your_Role_NDIS_GP_Toolkit_May2018_FINAL_WEB.pdfe_NDIS_GP_Toolkit_May2018_FINAL_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 07:55:52',0),(65482,'2021-04-15 07:59:38','2021-05-18 15:05:43','8e6880d9-f9a5-45d5-aa38-096e3e97f90b',1,'/covid-19/mask-distribution','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: covid-19/mask-distribution','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-18 15:05:43',1),(65483,'2021-04-15 08:00:44','2021-04-28 08:04:43','c9664531-1307-425e-bd63-304a1b4153b0',1,'/covid-19/aW5mb3JtYX','','20.37.48.24','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.87 Safari/537.36','Template not found: covid-19/aW5mb3JtYX','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-04-28 08:04:43',0),(65484,'2021-04-15 08:01:42','2021-05-13 06:26:19','759d2156-1126-4268-846e-cb68edad9ca4',1,'/yearinreview/improving-outcomes-for-people-with-chronic-conditions','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/improving-outcomes-for-people-with-chronic-conditions','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-13 06:26:19',0),(65485,'2021-04-15 08:19:08','2021-05-06 09:56:30','563c5f5e-f352-446a-a7cf-ba2068df0953',1,'/page/news-and-events/latest-news/spotlight-on-alcohol-and-other-drug-services','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/spotlight-on-alcohol-and-other-drug-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-06 09:56:30',0),(65486,'2021-04-15 08:28:16','2021-05-01 08:04:36','24dafb92-6e6c-460b-ad45-6a07d90313e7',1,'/page/health-professionals/digital-health/my-health-record/set-up-and-manage/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/digital-health/my-health-record/set-up-and-manage','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 08:04:36',0),(65487,'2021-04-15 08:30:47','2021-05-08 03:54:31','83c1e6e5-ad58-4460-aedb-158c84ce4bea',1,'/yearinreview/2017-18/wp-content/uploads/2018/11/George-Corones-1.jpg','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/wp-content/uploads/2018/11/George-Corones-1.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-08 03:54:31',0),(65488,'2021-04-15 08:31:17','2021-05-08 01:48:13','0af9a347-dd34-45ae-a1c2-0921617381ff',1,'/content/Document/Templates/5.3.1/Specialists List_Maternity_5_3_1.pdf','','66.249.69.33','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Templates/5.3.1/Specialists List_Maternity_5_3_1.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-08 01:48:13',0),(65489,'2021-04-15 08:31:19','2021-04-16 09:38:47','e9ad1e63-8b26-4d5c-9b13-00d0d1b9a5c5',1,'/content/Document/Templates/5.3/Specialists List_The Prince Charles Hospital_5_3.pdf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/Specialists%20List_The%20Prince%20Charles%20Hospital_5_3.pdf','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/Specialists List_The Prince Charles Hospital_5_3.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-16 09:38:47',0),(65490,'2021-04-15 08:33:17','2021-04-15 08:33:17','29b2535b-7006-4bad-8eb8-bd0a13954b20',1,'/page/health-professionals/digital-health/my-health-record/set-up-and-manage/assisting-patients-to-register-for-my-health-record/','','66.249.71.61','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/digital-health/my-health-record/set-up-and-manage/assisting-patients-to-register-for-my-health-record','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 08:33:17',0),(65491,'2021-04-15 08:41:51','2021-05-17 23:57:00','705b1a16-3e58-467e-951a-6c3f13ce999b',1,'/page/home/metro-north-health-forum','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/metro-north-health-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,70,'2021-05-17 23:57:00',0),(65492,'2021-04-15 08:42:34','2021-05-10 06:34:21','3225e605-4ee3-45b8-9cf4-6d62448405e8',1,'/jobs/keperra-medical-centre','','95.217.201.53','Mozilla/5.0 (compatible; Seekport Crawler; http://seekport.com/','Template not found: jobs/keperra-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-10 06:34:21',0),(65493,'2021-04-15 08:53:25','2021-05-14 09:29:30','d0bc6651-aaf3-4b27-b3aa-afc42bb875bf',1,'/page/about/commissioning/what-you-can-expect','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/commissioning/what-you-can-expect','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-14 09:29:30',0),(65494,'2021-04-15 08:59:25','2021-04-20 12:47:18','a4677bfd-b712-4831-bbb0-f3c8ab5f4687',1,'/content/Image/Page Banners/banner_page_brismind.jpg','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Page Banners/banner_page_brismind.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-20 12:47:18',0),(65495,'2021-04-15 09:05:13','2021-05-17 23:33:20','b69d3cf7-2199-4122-be0d-a2c1829d1c1b',1,'/jobs/full-time-part-time-gp-required','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/full-time-part-time-gp-required','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,15,'2021-05-17 23:33:20',0),(65496,'2021-04-15 09:07:25','2021-04-15 09:07:25','426c0185-8014-46ca-9c51-c5a91d875c24',1,'/old/wp-admin/setup-config.php','','137.74.176.165','python-requests/2.23.0','Template not found: old/wp-admin/setup-config.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 09:07:25',0),(65497,'2021-04-15 09:07:43','2021-04-15 09:07:43','94c9480a-b303-45eb-bb34-f29e0f31e11a',1,'/new/wp-admin/setup-config.php','','137.74.176.165','python-requests/2.23.0','Template not found: new/wp-admin/setup-config.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 09:07:43',0),(65498,'2021-04-15 09:15:48','2021-05-04 16:59:26','81a9300f-215a-4ae7-9256-4557e43a7225',1,'/page/news-and-events/latest-news/my-health-record-opt-out-period-extended-until-january-2019','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/my-health-record-opt-out-period-extended-until-january-2019','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-04 16:59:26',0),(65499,'2021-04-15 09:21:30','2021-05-15 20:25:15','0e8f690f-56fa-4ec6-b4fd-890e3c5b4525',1,'/content/Document/report_womenscancer.pdf','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/report_womenscancer.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-15 20:25:15',0),(65500,'2021-04-15 09:25:41','2021-05-18 10:16:17','5a32760f-cc5d-489d-8b8f-c86fd3f6ad3a',1,'/content/Document/Pathways/LINK Y_Behavioural activation.pdf','','40.77.167.35','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/LINK Y_Behavioural activation.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-18 10:16:17',0),(65501,'2021-04-15 09:29:52','2021-05-11 19:58:06','30992a82-9984-4c19-add7-f710ca7c05a9',1,'/content/Document/BNPHN_NDIS_Patient_Checklist_4_pager_final_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/BNPHN_NDIS_Patient_Checklist_4_pager_final_WEB.pdf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/BNPHN_NDIS_Patient_Checklist_4_pager_final_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-11 19:58:06',0),(65502,'2021-04-15 09:33:11','2021-05-10 22:56:31','a2279e6b-0fdb-445e-9d76-6e09f16eb5e9',1,'/content/Document/Pathways/Exercises for Cervicogenic Headache_FINAL.pdf','','76.31.222.79','Mozilla/5.0 (iPhone; CPU iPhone OS 14_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1 Mobile/15E148 Safari/604.1','Template not found: content/Document/Pathways/Exercises for Cervicogenic Headache_FINAL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,16,'2021-05-10 22:56:31',0),(65503,'2021-04-15 09:49:27','2021-04-15 09:49:27','d3fc8331-e212-4c39-9574-05192496dcfa',1,'/our-programs/aged-and-community-care/chronic-wound-careQueen,D.(2011).','','80.72.11.74','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)','Template not found: our-programs/aged-and-community-care/chronic-wound-careQueen,D.(2011).','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 09:49:27',0),(65504,'2021-04-15 09:51:01','2021-05-04 17:33:20','4fed2f91-0b4e-4944-851c-91d19a066a91',1,'/events/stars-refresher-workshop','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/stars-refresher-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-04 17:33:20',0),(65505,'2021-04-15 09:57:05','2021-05-13 11:21:14','32a6e9af-3941-449c-bc92-de4106a715d1',1,'/content/Image/News Images/square-wound governance group.jpg','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/News Images/square-wound governance group.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 11:21:14',0),(65506,'2021-04-15 10:04:24','2021-05-07 06:35:53','684bbc95-afdc-4cbc-a714-600fa8c8021e',1,'/page/news-and-events/latest-news/challenge-ageism-to-overcome-discrimination-aged-care-sector-told','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/challenge-ageism-to-overcome-discrimination-aged-care-sector-told','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 06:35:53',0),(65507,'2021-04-15 10:09:55','2021-05-15 20:13:19','4ac7ab87-947e-4d03-ba6e-cedefaef6261',1,'/events/non-alcoholic-fatty-liver-disease-diagnosing-managing-and-cardiovascular-risks-1-1-1','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/non-alcoholic-fatty-liver-disease-diagnosing-managing-and-cardiovascular-risks-1-1-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-15 20:13:19',0),(65508,'2021-04-15 10:17:22','2021-05-01 21:38:19','b323cc94-e69c-4d6a-a53a-9e624fa1c697',1,'/content/Media/My health for life/My-Health-for-Life-Genie-V2-0.4w7','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Media/My health for life/My-Health-for-Life-Genie-V2-0.4w7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-01 21:38:19',0),(65509,'2021-04-15 10:39:11','2021-05-15 13:34:55','fb8c9f3c-69fb-4e90-b61c-7c89bfd5bad0',1,'/content/Document/Planning/2015-16HNA.pdf','','66.249.69.63','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Planning/2015-16HNA.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-15 13:34:55',0),(65510,'2021-04-15 10:53:58','2021-05-03 13:31:39','da497c66-64de-4686-80c7-c05ebe919cfe',1,'/jobs/gp-needed-for-bribie-doctors-team','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/gp-needed-for-bribie-doctors-team','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-03 13:31:39',0),(65511,'2021-04-15 10:54:19','2021-05-16 01:17:10','2f900bd2-d55c-40ad-ba31-92f306188b72',1,'/page/news-and-events/latest-news/our-stories-offering-new-parents-a-ray-of-sunshine/','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/our-stories-offering-new-parents-a-ray-of-sunshine','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-16 01:17:10',0),(65512,'2021-04-15 11:00:15','2021-04-17 23:09:55','1257f899-2beb-4928-a589-27d64818869f',1,'/content/Document/Events/2018/MPHB GP Education Invitation - 20 November 2018.docx','http://www.brisbanenorthphn.org.au/content/Document/Events/2018/MPHB%20GP%20Education%20Invitation%20-%2020%20November%202018.docx','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/Events/2018/MPHB GP Education Invitation - 20 November 2018.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-17 23:09:55',0),(65513,'2021-04-15 11:00:48','2021-05-06 22:47:23','38a0f270-f770-4452-b85c-9f3b1b2b922a',1,'/content/Document/Templates/My health for life/My-Health-For-Life-ZM-V2-0.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/My%20health%20for%20life/My-Health-For-Life-ZM-V2-0.rtf','34.94.135.136','Go-http-client/1.1','Template not found: content/Document/Templates/My health for life/My-Health-For-Life-ZM-V2-0.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 22:47:23',0),(65514,'2021-04-15 11:08:00','2021-05-17 01:36:50','f5084fde-b43d-4826-9aab-7e2cd659a3c0',1,'/page/news-and-events/events/upcoming/training-in-the-management-of-acute-care-needs-of-racf-residents---marutchi/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/training-in-the-management-of-acute-care-needs-of-racf-residents---marutchi','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-17 01:36:50',0),(65515,'2021-04-15 11:32:55','2021-05-14 07:41:34','040ee95b-1ac5-4840-a80c-e0ff51a63623',1,'/page/health-professionals/Local Positions Vacant/other-health-professionals---kallangur','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/other-health-professionals---kallangur','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-14 07:41:34',0),(65516,'2021-04-15 11:47:53','2021-05-13 08:03:15','c20fdc4f-1d67-487d-86a4-c2e094338bde',1,'/page/news-and-events/events/upcoming/trauma-informed-care---introductory-and-advanced-training','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/trauma-informed-care---introductory-and-advanced-training','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-13 08:03:15',0),(65517,'2021-04-15 11:59:17','2021-04-15 11:59:17','ae71cd00-93d3-41a9-8be3-9ddeca908341',1,'/content/Document/Pathways/Depression_suicide_ involuntary assessment.pdf','','66.249.71.159','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Pathways/Depression_suicide_ involuntary assessment.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 11:59:17',0),(65518,'2021-04-15 12:08:17','2021-05-11 14:47:19','4c7908ea-222d-4cfc-ac7e-7c459351458f',1,'/events/antenatal-sexual-health-kit-ask-1','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/antenatal-sexual-health-kit-ask-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-11 14:47:19',0),(65519,'2021-04-15 12:13:50','2021-05-19 00:25:00','99a06119-c5ff-4789-93d4-b3f09bc2ac2c',1,'/page/news-and-events/latest-news/my-health-record-opt-out-period-extended-until-january-2019/','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/my-health-record-opt-out-period-extended-until-january-2019','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-19 00:25:00',0),(65520,'2021-04-15 12:19:28','2021-04-15 12:19:28','6112e028-b836-468e-939e-756b27855d73',1,'/content/Image/banner_page_newsandevents.jpg','','49.178.26.223','Safari/15609.2.9.1.2 CFNetwork/1126 Darwin/19.5.0 (x86_64)','Template not found: content/Image/banner_page_newsandevents.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 12:19:28',0),(65521,'2021-04-15 12:19:31','2021-05-17 01:03:06','d9ea1583-41df-44e7-99bb-c7803a3eeb4a',1,'/page/news-and-events/latest-news/jeff-cheverton-memorial-scholarship-2018','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/jeff-cheverton-memorial-scholarship-2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 01:03:06',0),(65522,'2021-04-15 12:25:27','2021-05-04 17:04:51','dd249452-7aa6-40bb-bd3a-75963aa80441',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---brisbane-city','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---brisbane-city','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-04 17:04:51',0);
INSERT INTO `retour_stats` VALUES (65523,'2021-04-15 12:30:35','2021-05-15 15:35:32','8e9615f6-1178-4737-86d5-d82c40ceeaa0',1,'/page/news-and-events/events/upcoming/chronic-disease-management-2020','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/chronic-disease-management-2020','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-15 15:35:32',0),(65524,'2021-04-15 12:35:24','2021-05-14 01:42:48','b17e2810-1874-4b59-a397-59e7b7ea947e',1,'/page/health-professionals/mental-health-services/youth-mental-health-services','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/youth-mental-health-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 01:42:48',0),(65525,'2021-04-15 12:49:10','2021-05-11 23:05:35','e027b752-3f79-486a-b422-b39d8cf605cb',1,'/page/news-and-events/events/upcoming/metro-north-health-forum/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/metro-north-health-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-11 23:05:35',0),(65526,'2021-04-15 12:52:42','2021-05-17 13:39:12','8afff1bd-be24-49dc-98aa-a41d3f0a6c41',1,'/page/health-professionals/Local Positions Vacant/casual-registered-nurse-required---platinum-medical-centre/','','66.249.68.2','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/casual-registered-nurse-required---platinum-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 13:39:12',0),(65527,'2021-04-15 13:05:58','2021-05-15 02:29:34','d0bbaee8-01c5-4a0a-b8b2-686116c36263',1,'/page/news-and-events/latest-news/coming-soon---practice-incentives-program-quality-improvement-payment/','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/coming-soon---practice-incentives-program-quality-improvement-payment','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-15 02:29:34',0),(65528,'2021-04-15 13:06:59','2021-05-11 12:46:39','5f4eb876-2822-4f5d-bba3-44eb3b992613',1,'/content/Document/170427_Health alert_Background information for clinicians regarding the Brisbane River contamination event(1).pdf','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/170427_Health alert_Background information for clinicians regarding the Brisbane River contamination event(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-11 12:46:39',0),(65529,'2021-04-15 13:08:38','2021-05-18 02:03:47','e42219e8-ebb2-41ab-aca6-163a8020454f',1,'/page/news-and-events/latest-news/vaccine-myths-get-medical-mums-makeover/','','173.252.83.22','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: page/news-and-events/latest-news/vaccine-myths-get-medical-mums-makeover','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,16,'2021-05-18 02:03:47',0),(65530,'2021-04-15 13:15:21','2021-05-11 19:04:49','ef7cdb72-696d-4e4a-aeaf-c4feb34dd34d',1,'/page/news-and-events/events/upcoming/workshop-1-of-3---copd-project---gp-active-learning-module','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/workshop-1-of-3---copd-project---gp-active-learning-module','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-11 19:04:49',0),(65531,'2021-04-15 13:26:56','2021-05-12 19:44:18','5d64fc5e-bb1f-4d99-bc17-f54c4597ef28',1,'/page/health-professionals/community-care/palliative-care/palliative-care-resources-launched-for-gps-in-north-brisbane-and-moreton-bay/','','52.45.35.203','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36','Template not found: page/health-professionals/community-care/palliative-care/palliative-care-resources-launched-for-gps-in-north-brisbane-and-moreton-bay','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-12 19:44:18',0),(65532,'2021-04-15 13:39:49','2021-05-06 05:58:10','f2db94f7-54ff-450c-8a9f-c754491f8901',1,'/vod-type-id-3-type-推理-area--year--star--state--order-addtime.html','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type-推理-area--year--star--state--order-addtime.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-06 05:58:10',0),(65533,'2021-04-15 13:40:04','2021-05-12 08:31:14','15c07206-d694-479a-b512-1d9523a78bd3',1,'/page/home/metro-north-health-forum-2016/','http://www.brisbanenorthphn.org.au/page/home/metro-north-health-forum-2016/','13.237.67.237','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','Template not found: page/home/metro-north-health-forum-2016','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-12 08:31:14',0),(65534,'2021-04-15 13:40:12','2021-05-10 06:59:40','38c6875f-71d4-44db-a1aa-c769ad6f3e51',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/information-for-providers/information-for-providers/','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services/information-for-providers/information-for-providers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 06:59:40',0),(65535,'2021-04-15 13:47:14','2021-05-11 10:17:18','05fe4edd-e067-400c-b02e-10f5a4c65d86',1,'/jobs/come-n-work-with-the-team-our-patients-rate-highly-of','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/come-n-work-with-the-team-our-patients-rate-highly-of','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-11 10:17:18',0),(65536,'2021-04-15 13:53:56','2021-05-15 02:29:18','f6eba622-a11b-464a-83f9-1f3ca2140cfb',1,'/page/news-and-events/events/upcoming/apna-foundations-of-general-practice-nursing-workshop/','','5.9.77.102','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/apna-foundations-of-general-practice-nursing-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-15 02:29:18',0),(65537,'2021-04-15 13:59:59','2021-05-11 14:56:26','c6e1bd0e-c94e-49e5-be73-b09e54b64bd9',1,'/page/news-and-events/events/upcoming/brisbane-north-aged-care-breakfast-forum/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/brisbane-north-aged-care-breakfast-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-11 14:56:26',0),(65538,'2021-04-15 14:07:23','2021-05-19 00:10:19','1934548a-4436-45ce-8d0a-99445012c6b5',1,'/content/Image/Campaigns/CathyPurcell_MH4L.jpg','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Campaigns/CathyPurcell_MH4L.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-19 00:10:19',0),(65539,'2021-04-15 14:13:51','2021-04-18 11:23:56','e490f117-de41-4854-a32a-462221b6ba84',1,'/tel:07 3630 7306','https://www.google.com/','35.199.166.171','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36','Template not found: tel:07 3630 7306','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-18 11:23:56',0),(65540,'2021-04-15 14:14:59','2021-04-22 00:02:28','87cf4963-d782-4a1a-860b-14a7bbf7b63f',1,'/yearinreview/2018-19/wp-content/uploads/2019/11/Aged-care-forum-2019-crowd-shot.jpg','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2018-19/wp-content/uploads/2019/11/Aged-care-forum-2019-crowd-shot.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-22 00:02:28',0),(65541,'2021-04-15 14:17:03','2021-04-15 14:17:03','c31fcfa0-cb27-470f-b524-d627b6c445ce',1,'/page/news-and-events/events/upcoming/dealing-with-anxiety-disorders/','','13.66.139.89','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/dealing-with-anxiety-disorders','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 14:17:03',0),(65542,'2021-04-15 14:17:41','2021-04-26 03:51:15','4afba2b0-fd1f-4f23-a686-a3b6b2221ee2',1,'/content/Document/Brisbane MIND Provider List August 2017(4).pdf','','68.145.248.79','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko)','Template not found: content/Document/Brisbane MIND Provider List August 2017(4).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-26 03:51:15',0),(65543,'2021-04-15 14:19:46','2021-04-16 23:15:22','139c5319-0388-473e-bb08-985d7d0d6634',1,'/events/practice-nurse-workshop-supporting-people-with-dementia-in-a-general-practice-setting','','207.46.13.106','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/practice-nurse-workshop-supporting-people-with-dementia-in-a-general-practice-setting','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-16 23:15:22',0),(65544,'2021-04-15 14:21:29','2021-04-20 19:26:44','46092ea3-fa85-45f6-aaeb-53b12ee0fb6d',1,'/content/Document/Recovery/YIR_BNPHN 190614_085_RAP crowd.jpg','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Recovery/YIR_BNPHN 190614_085_RAP crowd.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-20 19:26:44',0),(65545,'2021-04-15 14:28:08','2021-04-15 14:28:08','c3169add-b2ff-4e41-a119-3967d4b90f9d',1,'/content/Document/Templates/4.7/MNHHS TPCH Ref ZM 4_7.rtf','','207.46.13.51','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.7/MNHHS TPCH Ref ZM 4_7.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 14:28:08',0),(65546,'2021-04-15 14:30:27','2021-04-22 03:48:21','74043c7f-4fb5-43d3-ab8d-a78ce87b8839',1,'/yearinreview/2017-18/wp-content/uploads/2018/11/healthy@home-logo-2018-RGB-1-600x600.jpg','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: yearinreview/2017-18/wp-content/uploads/2018/11/healthy@home-logo-2018-RGB-1-600x600.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-04-22 03:48:21',0),(65547,'2021-04-15 14:33:56','2021-05-15 11:38:39','65d74542-d684-42da-81f5-048096567ee2',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---brisbane','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---brisbane','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 11:38:39',0),(65548,'2021-04-15 14:38:56','2021-04-15 14:38:56','bc54436d-2df4-4aa4-9844-22b7239eb40e',1,'/content/Document/Templates/6.2/Specialists List_Palliative Care_6_2.pdf','','207.46.13.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/6.2/Specialists List_Palliative Care_6_2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 14:38:56',0),(65549,'2021-04-15 14:46:23','2021-05-09 07:16:12','b22a0449-2def-433c-ad35-b827ab9e5b85',1,'/content/Document/Events/KSC Master Class Program Bris Aug 2016 (Participants).pdf','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Events/KSC Master Class Program Bris Aug 2016 (Participants).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-09 07:16:12',0),(65550,'2021-04-15 14:55:59','2021-04-15 14:55:59','25289127-ca66-458b-9897-f02a70d6b084',1,'/content/Document/Templates/4.4/MNHHS Palliative Care Referral Genie v4.4_.4W7','','40.77.167.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.4/MNHHS Palliative Care Referral Genie v4.4_.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 14:55:59',0),(65551,'2021-04-15 14:58:40','2021-05-11 02:01:12','9a07d9f2-eb76-44de-88bb-808d59bc4d13',1,'/events/sti-and-bbv-nursing-an-introduction-2','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/sti-and-bbv-nursing-an-introduction-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-11 02:01:12',0),(65552,'2021-04-15 15:00:24','2021-05-16 01:59:54','7ba872c0-83ee-420c-a1c1-a5a8e1943877',1,'/content/Document/PD_Clinical Coordinator_Pathways_170516(1).pdf','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/PD_Clinical Coordinator_Pathways_170516(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 01:59:54',0),(65553,'2021-04-15 15:00:39','2021-05-08 11:53:41','ff07d396-19b9-4428-b133-67d6bb865ad1',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-milton-village/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-milton-village','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-08 11:53:41',0),(65554,'2021-04-15 15:04:01','2021-05-05 20:24:38','ac948afc-c917-4367-a389-e3f15c0c4fa0',1,'/content/Document/TPCH CV GP Meeting 22 March.pdf','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/TPCH CV GP Meeting 22 March.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-05 20:24:38',0),(65555,'2021-04-15 15:09:03','2021-05-05 04:09:29','4dc5a4c9-98c4-4216-aff1-e706b0fe1ebb',1,'/page/health-professionals/Local Positions Vacant/practice-manager---indooroopilly/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-manager---indooroopilly','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-05 04:09:29',0),(65556,'2021-04-15 15:13:38','2021-05-14 06:22:29','3021fc57-273e-4045-a8b0-dcb832d51e9f',1,'/page/news-and-events/latest-news/stakeholders-progressing-important-work/','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/stakeholders-progressing-important-work','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-14 06:22:29',0),(65557,'2021-04-15 15:28:15','2021-05-19 00:17:56','33c7448d-ba89-4198-82fa-39b4e88623b3',1,'/events/deadly-sex-networking-update','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/deadly-sex-networking-update','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-19 00:17:56',0),(65558,'2021-04-15 15:38:28','2021-05-10 02:21:51','bd9a8e54-85e5-4740-bcc6-a93d79177bd8',1,'/content/Document/DESMOND - Diabetes Queensland Flyer July-Sept 2017.pdf','http://www.brisbanenorthphn.org.au/content/Document/DESMOND%20-%20Diabetes%20Queensland%20Flyer%20July-Sept%202017.pdf','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/DESMOND - Diabetes Queensland Flyer July-Sept 2017.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-10 02:21:51',0),(65559,'2021-04-15 15:47:07','2021-05-10 07:17:03','e62d4f5c-0a3c-449d-8c07-38d4e11ce188',1,'/jobs/registered-nurse-public-health','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/registered-nurse-public-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-10 07:17:03',0),(65560,'2021-04-15 15:50:52','2021-05-15 03:05:12','bda93c42-066f-48d1-8e32-72faff39ca56',1,'/page/news-and-events/latest-news/avoid-the-crowd-and-access-after-hours-medical-advice-from-home/','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/avoid-the-crowd-and-access-after-hours-medical-advice-from-home','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-15 03:05:12',0),(65561,'2021-04-15 15:56:16','2021-04-23 11:03:49','e5ea8895-441d-46b5-b60c-283a9f029fe8',1,'/jobs/general-practitioner-everton-hills','','66.249.79.150','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: jobs/general-practitioner-everton-hills','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-23 11:03:49',0),(65562,'2021-04-15 15:56:27','2021-04-18 12:29:03','17a070c5-ba38-4489-a98f-6141f359ef5e',1,'/content/Document/event_benchmarque_january2014.pdf','','207.46.13.11','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/event_benchmarque_january2014.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-18 12:29:03',0),(65563,'2021-04-15 15:58:27','2021-05-04 18:45:29','bd477fba-23e7-4f2f-b37e-273862587411',1,'/page/news-and-events/events/upcoming/assessment-and-management-of-upper-limb-pain','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/assessment-and-management-of-upper-limb-pain','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-04 18:45:29',0),(65564,'2021-04-15 16:01:02','2021-05-03 18:44:00','02d79fae-f4e3-4761-a9d7-292d9fc81595',1,'/content/Document/Events/2018/Brochure - Intro to Mental Health Pastoral Care 2018 v5.pdf','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Events/2018/Brochure - Intro to Mental Health Pastoral Care 2018 v5.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-03 18:44:00',0),(65565,'2021-04-15 16:05:35','2021-04-15 16:05:35','58de1c81-a100-488e-96af-ab65514cda09',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-vr-required---hamilton-medical-centre/','','207.46.13.106','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-vr-required---hamilton-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 16:05:35',0),(65566,'2021-04-15 16:07:47','2021-05-18 02:39:11','9c756893-6c63-496e-bd61-b6626fcb8f8b',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---brisbane','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---brisbane','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 02:39:11',0),(65567,'2021-04-15 16:10:44','2021-05-17 02:46:03','d1e2f578-72ca-47cb-84cc-8607ba951a04',1,'/page/news-and-events/events/upcoming/postvention-awards-dinner','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/postvention-awards-dinner','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-17 02:46:03',0),(65568,'2021-04-15 16:16:27','2021-04-23 14:10:44','5c173aaa-174d-45da-bafd-06b5f0b6b124',1,'/page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health-may-2017','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health-may-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-23 14:10:44',0),(65569,'2021-04-15 16:20:08','2021-04-15 16:20:08','79b998e8-28d1-4cab-b1c5-54d19d0bf419',1,'/content/Document/Cultural Awaress Flyer.pdf','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Cultural Awaress Flyer.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 16:20:08',0),(65570,'2021-04-15 16:23:32','2021-04-19 08:29:33','f3f7a4c9-2b69-4c60-aeb5-42c77660a785',1,'/content/Document/Common ANA patterns .pdf','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Common ANA patterns .pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-19 08:29:33',0),(65571,'2021-04-15 16:31:29','2021-04-22 20:57:07','64aaab1f-f389-4f57-b5a1-7be8f989b164',1,'/page/news-and-events/events/upcoming/embedding-trauma-informed-care-and-practice-for-managers/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/news-and-events/events/upcoming/embedding-trauma-informed-care-and-practice-for-managers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-22 20:57:07',0),(65572,'2021-04-15 16:35:49','2021-05-12 19:37:57','26177f87-7887-4f6f-8cac-209c6c879de6',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-bribie-island-mc','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-bribie-island-mc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-12 19:37:57',0),(65573,'2021-04-15 16:36:46','2021-05-11 09:26:26','fd6978c9-672b-4caf-8408-da9bf5ba7297',1,'/page/news-and-events/events/upcoming/end-of-life-special-interest-group','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/end-of-life-special-interest-group','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-11 09:26:26',0),(65574,'2021-04-15 16:39:29','2021-05-09 21:29:01','dec7b904-1543-48e9-a853-675f35f77eb7',1,'/content/Document/Templates/4.12/ZM v4.12/MNHHS TPCH Referral ZM v4_12.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.12/ZM%20v4.12/MNHHS%20TPCH%20Referral%20ZM%20v4_12.rtf','35.233.170.71','Go-http-client/1.1','Template not found: content/Document/Templates/4.12/ZM v4.12/MNHHS TPCH Referral ZM v4_12.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-09 21:29:01',0),(65575,'2021-04-15 16:44:11','2021-05-03 20:47:09','f05ca93c-2c68-4403-bc85-ac9c9a14b302',1,'/page/news-and-events/events/upcoming/rural-emergency-skills-training/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/rural-emergency-skills-training','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-03 20:47:09',0),(65576,'2021-04-15 16:45:42','2021-05-16 16:49:56','cb2e3452-1aa3-4588-88dd-e03fd8cb11ff',1,'/page/publications/newsletters/recovery/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/newsletters/recovery','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,14,'2021-05-16 16:49:56',0),(65577,'2021-04-15 16:46:32','2021-04-15 16:46:32','d7dc7ad1-01f4-41d7-9742-9d854815a617',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---ashgrove-clinic/','','207.46.13.51','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---ashgrove-clinic','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 16:46:32',0),(65578,'2021-04-15 16:55:57','2021-05-17 05:32:12','f4b5e416-04c4-4348-9748-c0b9033a5967',1,'/content/Document/Pathways/Steps to Stay on Your Feet_QLD.pdf','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Steps to Stay on Your Feet_QLD.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-17 05:32:12',0),(65579,'2021-04-15 17:02:38','2021-04-15 17:02:38','7e9b8cfd-20ce-45e3-848b-c0eb647aba47',1,'/content/Document/Templates/5.2/MNHHS TPCH Referral v5_2 ZM.rtf','','207.46.13.11','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/5.2/MNHHS TPCH Referral v5_2 ZM.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 17:02:38',0),(65580,'2021-04-15 17:10:42','2021-04-15 17:10:42','07423c0e-c3f1-4b9b-bcc8-a95d2e2bc039',1,'/content/Document/Events/2018/Project ECHO updates 26_09_18 (00000002).pdf','','207.46.13.74','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2018/Project ECHO updates 26_09_18 (00000002).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 17:10:42',0),(65581,'2021-04-15 17:14:12','2021-04-28 14:14:42','a9cbb90b-9bbb-4e88-8f28-6291c49ed1d6',1,'/page/news-and-events/latest-news/support-in-the-face-of-expected-increase-in-suicide-rates/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/support-in-the-face-of-expected-increase-in-suicide-rates','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-28 14:14:42',0),(65582,'2021-04-15 17:15:31','2021-04-15 17:15:31','2331ce96-d7b1-41a3-af34-c3c75160d552',1,'/content/Document/INFO_SHEET_Brisbane North PHN Advertising Specifications_2016-17.pdf','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/INFO_SHEET_Brisbane North PHN Advertising Specifications_2016-17.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 17:15:31',0),(65583,'2021-04-15 17:19:03','2021-05-13 14:44:06','ebf397f8-7138-43d8-b8d5-b7397351c668',1,'/page/news-and-events/events/upcoming/rural-emergency-skills-training-august','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/rural-emergency-skills-training-august','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-13 14:44:06',0),(65584,'2021-04-15 17:39:35','2021-05-16 04:40:01','3beeb38d-572a-4468-9b23-92db743826bc',1,'/page/health-professionals/Local Positions Vacant/occupational-therapists---guide-dogs-queensland/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/occupational-therapists---guide-dogs-queensland','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 04:40:01',0),(65585,'2021-04-15 17:41:17','2021-05-15 13:20:57','096e942d-22a5-4b0e-bc0c-969087312f11',1,'/page/health-professionals/digital-health/PIP-EHealth/','','95.216.219.63','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36','Template not found: page/health-professionals/digital-health/PIP-EHealth','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-15 13:20:57',0),(65586,'2021-04-15 17:42:17','2021-05-18 02:28:36','c98f0ada-4d36-4f14-a251-7052fe7ae6e6',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---scarborough','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---scarborough','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-18 02:28:36',0),(65587,'2021-04-15 17:50:28','2021-05-08 13:56:52','5c7cc691-bd72-4f9d-b8fd-cc57d15bb74d',1,'/content/Document/Events/2018/QLD Childhood Obesity Workshop program.pdf','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Events/2018/QLD Childhood Obesity Workshop program.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-08 13:56:52',0),(65588,'2021-04-15 17:51:43','2021-05-12 05:05:57','17a98edc-f596-4e21-89c3-2934671632d3',1,'/content/Document/Events/2018/DAM Save the Date BRISBANE.pdf','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Events/2018/DAM Save the Date BRISBANE.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-12 05:05:57',0),(65589,'2021-04-15 17:57:18','2021-05-15 14:09:12','5e1c8a51-c67b-4664-b86f-bf4bf5f74aa3',1,'/page/health-professionals/refugee-health','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/refugee-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 14:09:12',0),(65590,'2021-04-15 17:58:10','2021-04-17 21:12:55','8ab6eb68-5916-42ba-8b16-3dce78c2bf91',1,'/page/news-and-events/events/upcoming/common-challenges-in-primary-care-persistent-pain-management/','','40.77.167.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/common-challenges-in-primary-care-persistent-pain-management','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-17 21:12:55',0),(65591,'2021-04-15 18:01:07','2021-04-29 04:50:12','ab011ce3-6b3e-4e18-954f-30b9f341b469',1,'/page/health-professionals/ndis/gps-flock-to-the-phns-first-ndis-event/','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/health-professionals/ndis/gps-flock-to-the-phns-first-ndis-event','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-29 04:50:12',0),(65592,'2021-04-15 18:03:43','2021-05-18 14:34:46','292e3e67-c716-4af1-9cae-94b72cc36217',1,'/page/news-and-events/latest-news/aged-care-forum-ends-the-year-on-a-high-note/','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/aged-care-forum-ends-the-year-on-a-high-note','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-18 14:34:46',0),(65593,'2021-04-15 18:05:49','2021-05-11 10:45:35','d7de1940-e7e8-48ed-85fc-d55cdabbc87f',1,'/page/news-and-events/events/upcoming/dementia-essentials-providing-support-to-people-living-with-dementia-embracia-october','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/dementia-essentials-providing-support-to-people-living-with-dementia-embracia-october','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-11 10:45:35',0),(65594,'2021-04-15 18:10:37','2021-05-16 04:30:02','fce52f15-63a1-4fe3-9452-fa015ea089d6',1,'/content/Document/ma_infosheet.pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/ma_infosheet.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 04:30:02',0),(65595,'2021-04-15 18:11:44','2021-05-02 19:17:03','1102afd5-5c64-469f-bc19-2a70e6a77b5c',1,'/content/Document/2017 AAPM TED - Brisbane (3).pdf','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/2017 AAPM TED - Brisbane (3).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-02 19:17:03',0),(65596,'2021-04-15 18:13:55','2021-05-07 21:42:30','f3617592-d483-4ab0-8102-193b94c1970a',1,'/content/Document/Templates/4.3/Specialists List TPCH 4.3.pdf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.3/Specialists%20List%20TPCH%204.3.pdf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Templates/4.3/Specialists List TPCH 4.3.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-07 21:42:30',0),(65597,'2021-04-15 18:16:34','2021-05-15 08:06:54','625a1e20-b504-4199-adda-08f540cd509f',1,'/events/pallipharm-workshop','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/pallipharm-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 08:06:54',0),(65598,'2021-04-15 18:18:51','2021-04-15 18:18:51','d75c5d5f-18c9-4670-b97f-6294614da190',1,'/page/news-and-events/events/upcoming/trauma-informed-care-and-practice-working-with-aboriginal-and-torres-strait-islander-peoples/','','207.46.13.106','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/trauma-informed-care-and-practice-working-with-aboriginal-and-torres-strait-islander-peoples','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 18:18:51',0),(65599,'2021-04-15 18:26:14','2021-05-11 10:36:41','64c93ae6-c0a9-4d87-ae01-645a7d1a46d8',1,'/page/news-and-events/latest-news/achieving-wellbeing-through-the-optimal-health-program/','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/latest-news/achieving-wellbeing-through-the-optimal-health-program','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-11 10:36:41',0),(65600,'2021-04-15 18:27:43','2021-05-16 07:49:34','6678b8ce-16cf-484d-bee9-845e11655d85',1,'/page/news-and-events/latest-news/project-yarn-circle-builds-connection-to-culture-in-indigenous-youth/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/project-yarn-circle-builds-connection-to-culture-in-indigenous-youth','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,15,'2021-05-16 07:49:34',0),(65601,'2021-04-15 18:30:09','2021-05-06 16:45:27','0584a145-f546-48ae-9ce3-5b27af7845a4',1,'/page/news-and-events/latest-news/metro-north-health-forum-speakers-set-to-shine/','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/metro-north-health-forum-speakers-set-to-shine','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-06 16:45:27',0),(65602,'2021-04-15 18:33:53','2021-05-12 09:26:50','84ec06a1-62d2-4ea0-8de9-a673e3c286ad',1,'/page/news-and-events/latest-news/a-free-mental-health-program-currently-being-trialled-in-north-brisbane-aims-to-reveal-if-a-peer-led-group-model-could-deliver-improved-health-outcomes-for-mums-experiencing-mild-postnatal-depression-or-anxiety','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/a-free-mental-health-program-currently-being-trialled-in-north-brisbane-aims-to-reveal-if-a-peer-led-group-model-could-deliver-improved-health-outcomes-for-mums-experiencing-mild-postnatal-depression-o…','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 09:26:50',0),(65603,'2021-04-15 18:34:09','2021-05-16 06:31:07','b7b48ceb-b77a-473f-8d87-134f99b573d2',1,'/content/Document/Planning/FIN_DOHHNA_171114(1).pdf','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Planning/FIN_DOHHNA_171114(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 06:31:07',0),(65604,'2021-04-15 18:34:44','2021-05-08 08:33:10','5149312c-aa94-441e-9377-0b0c8c5803df',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---redcliffe','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---redcliffe','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-08 08:33:10',0),(65605,'2021-04-15 18:38:34','2021-04-15 18:38:34','f3fcb667-cb96-443b-8118-44f850bb2946',1,'/page/news-and-events/events/upcoming/seasons-for-growth','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/seasons-for-growth','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 18:38:34',0),(65606,'2021-04-15 18:38:44','2021-04-19 01:08:16','375675b4-ee42-493f-ab98-52236bd8e16f',1,'/page/pathways/osteoporosis/','','207.46.13.5','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/pathways/osteoporosis','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-19 01:08:16',0),(65607,'2021-04-15 18:43:58','2021-05-17 17:13:22','f567c0e9-534d-4b84-a1ee-e362de3ac2dc',1,'/page/news-and-events/events/upcoming/cancer-preceptorship-for-general-practitioners','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/cancer-preceptorship-for-general-practitioners','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-17 17:13:22',0),(65608,'2021-04-15 18:50:36','2021-05-19 00:56:59','40ffd61f-44db-4079-ad93-1b86f07b8716',1,'/events/haematology-insights-for-primary-care-part-three','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/haematology-insights-for-primary-care-part-three','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-19 00:56:59',0),(65609,'2021-04-15 18:51:37','2021-04-15 18:51:37','26c89df4-7a53-44d6-83dc-e1bd1bd0bdec',1,'/page/news-and-events/events/archive/assessment-and-management-of-neck-and-upper-back-pain/','','66.249.71.33','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/archive/assessment-and-management-of-neck-and-upper-back-pain','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 18:51:37',0),(65610,'2021-04-15 18:58:13','2021-05-16 07:52:28','10a720e3-b2d0-4b98-8b9b-148cbdfda36d',1,'/page/news-and-events/latest-news/working-together-to-improve-care-for-chronic-kidney-disease/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/working-together-to-improve-care-for-chronic-kidney-disease','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-16 07:52:28',0),(65611,'2021-04-15 18:58:44','2021-05-16 15:00:27','0f1af479-df43-489f-9f7a-fb55ea4fc3a4',1,'/content/Document/Templates/6.3/QCH Referral v6_3 BP.rtf','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Templates/6.3/QCH Referral v6_3 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 15:00:27',0),(65612,'2021-04-15 18:58:50','2021-04-22 15:44:31','30f748c8-953e-46ba-a767-202a52bba90d',1,'/yearinreview/2017-18/wp-content/uploads/2018/11/healthy@home-logo-2018-RGB-1-1024x1024.jpg','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: yearinreview/2017-18/wp-content/uploads/2018/11/healthy@home-logo-2018-RGB-1-1024x1024.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-04-22 15:44:31',0),(65613,'2021-04-15 19:00:43','2021-05-01 04:44:03','0b6254cc-291b-477d-90df-fe0bd3cc52dc',1,'/page/news-and-events/events/archive/tips-and-strategies-in-using-technology-for-mental-health-consultations','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/tips-and-strategies-in-using-technology-for-mental-health-consultations','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 04:44:03',0),(65614,'2021-04-15 19:01:28','2021-05-13 09:46:53','1dd7b0f6-6602-4836-a724-6d21c738ec52',1,'/page/health-professionals/mental-health-services/low-intensity-mental-health-services/a-free-mental-health-program-currently-being-trialled-in-north-brisbane-aims-to-reveal-if-a-peer-led-group-model-could-deliver-improved-health-outcomes-for-mums-experi…','','66.249.66.152','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/mental-health-services/low-intensity-mental-health-services/a-free-mental-health-program-currently-being-trialled-in-north-brisbane-aims-to-reveal-if-a-peer-led-group-model-could-deliver-improved-health-outco…','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 09:46:53',0),(65615,'2021-04-15 19:07:18','2021-04-22 17:34:48','04dfd1c0-9bc4-4bfa-8907-4d868ba66381',1,'/page/news-and-events/events/upcoming/Introduction-To-Animal-Assisted-Therapy-2','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/Introduction-To-Animal-Assisted-Therapy-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-22 17:34:48',0),(65616,'2021-04-15 19:08:52','2021-05-17 17:43:52','30016f03-c0ce-4add-bb07-89b0321fba71',1,'/content/Document/Events/2017/QH Cancer Forum Program-FINAL.pdf','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Events/2017/QH Cancer Forum Program-FINAL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-17 17:43:52',0),(65617,'2021-04-15 19:09:08','2021-04-15 19:09:08','1b2ca980-b7c3-4c2f-833e-9b30106575fd',1,'/events/cpr-workshops-part-3-4','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/cpr-workshops-part-3-4','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 19:09:08',0),(65618,'2021-04-15 19:09:56','2021-04-15 19:09:56','93f923b1-6853-443a-a988-40a34d9d0f95',1,'/page/news-and-events/events/archive/queensland-cardiovascular-group-education---2-day-forum/','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/queensland-cardiovascular-group-education---2-day-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 19:09:56',0),(65619,'2021-04-15 19:19:38','2021-05-10 23:14:55','02b901db-15e6-4b65-aaa6-4ca41826e617',1,'/yearinreview/2017-18/mental-health-suicide-prevention-and-alcohol-and-other-drug-services/www.brisbanenorthphn.org.au','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/mental-health-suicide-prevention-and-alcohol-and-other-drug-services/www.brisbanenorthphn.org.au','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-10 23:14:55',0),(65620,'2021-04-15 19:20:30','2021-04-21 16:19:39','0e0b3f80-af04-4486-9a3b-8495c3800a4d',1,'/page/health-professionals/referral-and-patient-management/directories/other-directories','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/referral-and-patient-management/directories/other-directories','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-21 16:19:39',0),(65621,'2021-04-15 19:26:20','2021-04-27 12:55:12','efabbecf-e0ba-4235-b33a-6be11ff8f407',1,'/page/news-and-events/events/upcoming/curing-hepatitis-c-in-primary-care','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/curing-hepatitis-c-in-primary-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-27 12:55:12',0),(65622,'2021-04-15 19:27:57','2021-05-18 13:07:02','9e61748f-0364-4ab8-a843-8721fb0225c6',1,'/page/news-and-events/latest-news/local-resident-and-former-gp-reflects-on-healthy-ageing-at-100/','','157.55.39.116','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/local-resident-and-former-gp-reflects-on-healthy-ageing-at-100','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-18 13:07:02',0),(65623,'2021-04-15 19:34:08','2021-05-08 11:37:42','072cb5fb-1888-4030-9351-5d296c165f8b',1,'/content/Document/Primary care liaison/MNHHS Redcliffe Hosp Ref v6_2 ZM(1).rtf','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Primary care liaison/MNHHS Redcliffe Hosp Ref v6_2 ZM(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-08 11:37:42',0),(65624,'2021-04-15 19:34:26','2021-04-22 05:13:53','0ef91c71-e554-48a7-a5ea-d17efc5f7d1e',1,'/yearinreview/2017-18/wp-content/uploads/2018/11/healthy@home-logo-2018-RGB-1.jpg','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: yearinreview/2017-18/wp-content/uploads/2018/11/healthy@home-logo-2018-RGB-1.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-04-22 05:13:53',0),(65625,'2021-04-15 19:38:20','2021-05-12 12:16:02','b5878f33-852a-4857-b871-f50a254300a4',1,'/content/Document/Templates/V5.1 Jan 2018/Specialist lists/Specialists List_RBWH_5_1.pdf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/V5.1 Jan 2018/Specialist lists/Specialists List_RBWH_5_1.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-12 12:16:02',0),(65626,'2021-04-15 19:40:30','2021-05-14 08:31:20','b3917e20-f335-41d2-adbe-1e5bc48d6332',1,'/page/news-and-events/events/upcoming/trauma-informed-care-and-practice-level-2/','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/trauma-informed-care-and-practice-level-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-14 08:31:20',0),(65627,'2021-04-15 19:41:26','2021-04-15 19:41:26','e246d2d4-3632-41ff-b1bd-363d5ae2c1e0',1,'/page/news-and-events/events/upcoming/keeping-kidneys-in-the-community-ckd-shared-care-program/','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/keeping-kidneys-in-the-community-ckd-shared-care-program','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 19:41:26',0),(65628,'2021-04-15 19:45:15','2021-04-15 19:45:15','ceb141e8-a037-4c6f-ad19-bfe00a4c1989',1,'/page/news-and-events/events/upcoming/2020-australian-pain-society-40th-annual-scientific-meeting-aps-2020','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/2020-australian-pain-society-40th-annual-scientific-meeting-aps-2020','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 19:45:15',0),(65629,'2021-04-15 19:51:37','2021-04-22 16:31:33','52cbfe62-9797-4bd0-8b7b-b7fb3925b83c',1,'/yearinreview/2017-18/wp-content/uploads/2018/11/healthy@home-logo-2018-RGB-1-300x300.jpg','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: yearinreview/2017-18/wp-content/uploads/2018/11/healthy@home-logo-2018-RGB-1-300x300.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-04-22 16:31:33',0),(65630,'2021-04-15 19:51:54','2021-05-16 13:13:53','8754c006-cb7a-40a0-ba67-9918a29a68a3',1,'/page/health-professionals/Local Positions Vacant/practice-manager---indooroopilly','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-manager---indooroopilly','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-16 13:13:53',0),(65631,'2021-04-15 19:56:02','2021-04-22 05:47:34','047c48d3-94fc-45ad-98a8-0c96b879e669',1,'/content/Image/Page Banners/Banner_page_cervical screening.jpg','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Page Banners/Banner_page_cervical screening.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-22 05:47:34',0),(65632,'2021-04-15 19:59:06','2021-04-26 08:41:37','b6d1221b-b332-497a-85c2-4adac9506e1d',1,'/content/Image/Events/Mental Health Expo 2017 group shot.jpg','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Events/Mental Health Expo 2017 group shot.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-26 08:41:37',0),(65633,'2021-04-15 20:05:38','2021-05-07 13:39:17','201796b2-f549-4062-aa23-602a18a7a806',1,'/content/Document/Local Positions Vacant/30hr EDP Position - 20_11_2018.pdf','http://www.brisbanenorthphn.org.au/content/Document/Local%20Positions%20Vacant/30hr%20EDP%20Position%20-%2020_11_2018.pdf','34.73.187.226','Go-http-client/1.1','Template not found: content/Document/Local Positions Vacant/30hr EDP Position - 20_11_2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 13:39:17',0),(65634,'2021-04-15 20:06:10','2021-05-18 05:07:41','5a17d6c7-3ddb-4fe9-9954-aab9fc013244',1,'/content/Document/Reports/active@home_July-2017.pdf','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Reports/active@home_July-2017.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-18 05:07:41',0),(65635,'2021-04-15 20:08:50','2021-05-09 17:11:38','2a9282ea-afed-4fd5-9f22-2b61cd662b38',1,'/jobs/practice-nurse-bartchall-medical','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/practice-nurse-bartchall-medical','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-09 17:11:38',0),(65636,'2021-04-15 20:10:02','2021-05-11 03:24:00','91190fb0-f810-4303-b1bb-e6bd5618a3ad',1,'/page/news-and-events/latest-news/covid-19-information/covid-19-resources-for-health-professionals','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/covid-19-information/covid-19-resources-for-health-professionals','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 03:24:00',0),(65637,'2021-04-15 20:17:50','2021-05-05 20:35:21','e39fbbe3-04ef-4fbc-8e1f-a59ef1f7c809',1,'/content/Document/Health alerts/20190325 Measles Alert GP_ED Mar 2019(1).pdf','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Health alerts/20190325 Measles Alert GP_ED Mar 2019(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-05 20:35:21',0),(65638,'2021-04-15 20:22:43','2021-05-15 09:47:44','dde1e235-6414-4f97-a486-bc9c41fed55e',1,'/events/health-coaching-core-coach-training-4-day-intensive','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/health-coaching-core-coach-training-4-day-intensive','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-15 09:47:44',0),(65639,'2021-04-15 20:23:15','2021-05-18 22:42:24','9d1c1c4a-742d-4710-999c-c69ddef52ad0',1,'/page/news-and-events/events/upcoming/trauma-informed-care-and-practice-working-with-people-with-a-disability','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/trauma-informed-care-and-practice-working-with-people-with-a-disability','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-18 22:42:24',0),(65640,'2021-04-15 20:32:47','2021-05-17 02:30:44','da99c92c-582e-463d-9b0f-af6ec623fbee',1,'/page/news-and-events/latest-news/eoi-for-my-health-for-life-providers-now-open','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/eoi-for-my-health-for-life-providers-now-open','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 02:30:44',0),(65641,'2021-04-15 20:45:04','2021-05-12 22:28:39','0471146b-8251-44f0-9d2b-9734b44d7068',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---strathpine','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---strathpine','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-12 22:28:39',0),(65642,'2021-04-15 20:46:58','2021-05-18 06:34:52','a33827b7-ea1e-4bde-9fed-06790db9a0d2',1,'/jobs/practice-registered-nurse-rn-for-2-3-days-a-week','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/practice-registered-nurse-rn-for-2-3-days-a-week','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-18 06:34:52',0),(65643,'2021-04-15 20:49:15','2021-05-12 05:12:43','3f53c313-dc8b-4f94-8561-b93c40002095',1,'/page/news-and-events/latest-news/rapid-flu-vax-response-at-racfs-amid-pandemic/','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/latest-news/rapid-flu-vax-response-at-racfs-amid-pandemic','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-12 05:12:43',0),(65644,'2021-04-15 20:53:45','2021-05-16 05:04:41','df60ace7-97d2-4a63-be91-7d30e38631c4',1,'/page/news-and-events/events/upcoming/project-eco-series-3-adhd/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/project-eco-series-3-adhd','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 05:04:41',0),(65645,'2021-04-15 20:53:45','2021-05-06 01:42:32','dac55474-704e-4765-8776-11f66474a92a',1,'/content/Document/Events/2020/brisbane-north-networking-events-March2020 updated flyer.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2020/brisbane-north-networking-events-March2020%20updated%20flyer.pdf','104.198.141.65','Go-http-client/1.1','Template not found: content/Document/Events/2020/brisbane-north-networking-events-March2020 updated flyer.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 01:42:32',0),(65646,'2021-04-15 20:54:44','2021-05-08 01:11:07','b515eb58-0e0b-423e-8ee6-a6d3e2fe6531',1,'/content/Document/Planning/FINAL_AAWP Core Flexible_170717 WEBSITE.docx','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Planning/FINAL_AAWP Core Flexible_170717 WEBSITE.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-08 01:11:07',0),(65647,'2021-04-15 20:58:21','2021-05-15 20:17:39','f2eb9b52-b370-4793-9427-13b73865967d',1,'/jobs/receptionist-position','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/receptionist-position','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-15 20:17:39',0),(65648,'2021-04-15 21:02:10','2021-05-04 01:57:15','dd472149-ee81-418a-8df9-bcdce6cb5e26',1,'/page/health-professionals/Local Positions Vacant/other-health-professional','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/other-health-professional','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-04 01:57:15',0),(65649,'2021-04-15 21:08:49','2021-05-17 23:54:43','d74e73f1-697a-4657-ae0d-cef4ec1046cb',1,'/page/news-and-events/latest-news/minister-for-aged-care-visits-morayfield/','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/minister-for-aged-care-visits-morayfield','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 23:54:43',0),(65650,'2021-04-15 21:15:05','2021-05-11 03:49:53','fb5efabd-4652-4c86-97cd-5554bab5161a',1,'/content/Document/Recovery/FIN_ART_2003_Planning for Wellbeing highlights and achievements.pdf','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Recovery/FIN_ART_2003_Planning for Wellbeing highlights and achievements.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-11 03:49:53',0),(65651,'2021-04-15 21:16:37','2021-05-08 00:33:23','fb05278b-648e-4999-b341-9aa2434f3b44',1,'/page/home/featurettes/my-community','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/featurettes/my-community','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-08 00:33:23',0),(65652,'2021-04-15 21:23:54','2021-05-09 02:50:04','4025be84-358b-475f-8dd3-28a548e2534b',1,'/events/gp-education-surgical-update-vascular-upper-limb-orthopaedic-and-breast','','5.9.156.121','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: events/gp-education-surgical-update-vascular-upper-limb-orthopaedic-and-breast','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-09 02:50:04',0),(65653,'2021-04-15 21:31:57','2021-05-03 10:46:43','b3818ab9-8ab7-402c-9e06-48dbd0f7a356',1,'/content/Document/Pathways/Assessment of dehydration 140829.pdf','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Pathways/Assessment of dehydration 140829.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-03 10:46:43',0),(65654,'2021-04-15 21:37:56','2021-05-15 21:35:43','5fcd5f17-2010-47c4-ba46-0043aec8699b',1,'/content/Document/Primary care liaison/Specialists List_The Prince Charles Hospital_6_2(1).pdf','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Primary care liaison/Specialists List_The Prince Charles Hospital_6_2(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-15 21:35:43',0),(65655,'2021-04-15 21:43:30','2021-04-15 21:43:30','30a38fdf-6992-4de1-ae78-a273a9ef0f3c',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---everton-park/','','207.46.13.11','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---everton-park','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 21:43:30',0),(65656,'2021-04-15 21:46:45','2021-04-15 21:46:45','69cad65e-9ab6-4d77-aab7-ea6a3d73667a',1,'/page/health-professionals/Local Positions Vacant/practice-nurse-beachmere/','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse-beachmere','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 21:46:45',0),(65657,'2021-04-15 21:47:33','2021-05-16 07:43:13','69e257ad-7e2d-4034-8950-6d0abbb96bb3',1,'/page/news-and-events/latest-news/invitation-to-register-for-gp-to-gp-referrals/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/invitation-to-register-for-gp-to-gp-referrals','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-16 07:43:13',0),(65658,'2021-04-15 21:51:27','2021-05-11 01:05:56','e908ed5d-7030-47a0-bbc6-83a51f211f5a',1,'/content/Document/Templates/Specialists List_Redcliffe Hospital_6_2.pdf','http://www.brisbanenorthphn.org.au/content/Document/Templates/Specialists%20List_Redcliffe%20Hospital_6_2.pdf','34.121.182.57','Go-http-client/1.1','Template not found: content/Document/Templates/Specialists List_Redcliffe Hospital_6_2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-11 01:05:56',0),(65659,'2021-04-15 21:53:49','2021-05-15 08:30:16','17ad8554-d727-4254-9443-3306fa3ce090',1,'/page/news-and-events/latest-news/vital-suicide-prevention-service-expanded','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/vital-suicide-prevention-service-expanded','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 08:30:16',0),(65660,'2021-04-15 21:55:43','2021-04-27 03:24:08','08c66e49-2149-4c05-bf78-d7a925f0b2f4',1,'/page/news-and-events/latest-news/get-involved-in-the-dementia-quality-enhancement-for-general-practices-project ','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/get-involved-in-the-dementia-quality-enhancement-for-general-practices-project ','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-27 03:24:08',0),(65661,'2021-04-15 21:59:01','2021-05-14 03:21:19','4dc470e2-a644-4f49-889f-9ee2df5c9462',1,'/page/news-and-events/metro-north-health-forum/2018-metro-north-health-forum','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/metro-north-health-forum/2018-metro-north-health-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-14 03:21:19',0),(65662,'2021-04-15 22:02:46','2021-05-16 04:12:02','eb875dfc-3614-407a-a28e-f9b6d12f1edf',1,'/page/news-and-events/latest-news/mental-health-pathways-to-help-expectant-mums-and-dads','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/mental-health-pathways-to-help-expectant-mums-and-dads','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 04:12:02',0),(65663,'2021-04-15 22:04:49','2021-05-11 14:00:46','8cb0482c-b428-4553-8b1d-65f1d16eab43',1,'/page/news-and-events/latest-news/first-aboriginal-covid-19-gp-respiratory-clinic-opens-in-queensland/','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/first-aboriginal-covid-19-gp-respiratory-clinic-opens-in-queensland','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-11 14:00:46',0),(65664,'2021-04-15 22:05:20','2021-05-02 16:39:08','428891d2-9e84-4ac4-980f-a4ad40341481',1,'/content/Document/Pathways/B10_Skin_Tears.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/B10_Skin_Tears.pdf','34.121.182.57','Go-http-client/1.1','Template not found: content/Document/Pathways/B10_Skin_Tears.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-02 16:39:08',0),(65665,'2021-04-15 22:22:58','2021-05-16 08:16:45','b4125ba8-b19c-4fec-9f5b-fc688a1c82fe',1,'/content/Document/MNHHS Palliative Care PractiX v4_11(2).doc','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/MNHHS Palliative Care PractiX v4_11(2).doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 08:16:45',0),(65666,'2021-04-15 22:29:03','2021-05-18 20:20:08','f18680bb-10f4-4104-b8d8-08379410f802',1,'/events/implementation-of-telehealth-into-general-practice-online-learning-cat-1-racgp-6-pdp-acrrm','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/implementation-of-telehealth-into-general-practice-online-learning-cat-1-racgp-6-pdp-acrrm','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,14,'2021-05-18 20:20:08',0),(65667,'2021-04-15 22:33:50','2021-05-11 21:32:34','bd730152-1e9e-45e1-a932-8e401c828243',1,'/page/news-and-events/latest-news/traditional-ceremony-connects-gubbi-gubbi-babies-to-country','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/traditional-ceremony-connects-gubbi-gubbi-babies-to-country','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-11 21:32:34',0),(65668,'2021-04-15 22:34:44','2021-05-18 16:42:02','55e7ec2d-0d1b-478e-bdc2-005c9b29a6c7',1,'/events/genomics-for-gps-webinar-3-cancer-genetics','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/genomics-for-gps-webinar-3-cancer-genetics','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-18 16:42:02',0),(65669,'2021-04-15 22:35:41','2021-05-15 18:02:37','890dd82c-ad5d-43ea-88b7-a1d473ce238a',1,'/yearinreview/supporting-frontline-healthcare-services/','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/supporting-frontline-healthcare-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-15 18:02:37',0),(65670,'2021-04-15 22:41:53','2021-05-12 18:40:24','5f8e9ad2-b8fe-4124-b888-dad92e353f29',1,'/page/health-professionals/community-care/palliative-care/my-health-record-improving-outcomes-for-people-in-palliative-care','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/community-care/palliative-care/my-health-record-improving-outcomes-for-people-in-palliative-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-12 18:40:24',0),(65671,'2021-04-15 22:44:47','2021-05-15 16:42:28','73c3de0e-442c-4a4e-a807-4a51eca9e2ac',1,'/jobs/occupational-therapist','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/occupational-therapist','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-15 16:42:28',0),(65672,'2021-04-15 22:46:34','2021-04-15 22:46:34','bec7cbdb-e82f-4436-bd11-0ed38efaf530',1,'/content/Document/shfa_program_9-9-17.pdf','','207.46.13.11','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/shfa_program_9-9-17.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 22:46:34',0),(65673,'2021-04-15 22:53:07','2021-05-07 15:45:28','3d825d4a-55f4-4f0a-9e41-93bc8aace21c',1,'/page/news-and-events/events/upcoming','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-07 15:45:28',0),(65674,'2021-04-15 22:56:49','2021-05-13 21:43:17','fe88609b-1ab9-4f39-a042-8aba01b2246e',1,'/page/news-and-events/latest-news/information-exchange-eases-the-national-disability-insurance-scheme-transition','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/information-exchange-eases-the-national-disability-insurance-scheme-transition','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-13 21:43:17',0),(65675,'2021-04-15 22:57:55','2021-04-24 08:20:13','3a73496a-1a35-48fd-ae03-41009ae7b1ce',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---redcliffe/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---redcliffe','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-24 08:20:13',0),(65676,'2021-04-15 22:59:36','2021-05-11 10:16:42','58c31534-2723-4e40-9e92-125a1e3c6983',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-skin-cancer---warner/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-skin-cancer---warner','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-11 10:16:42',0),(65677,'2021-04-15 23:13:07','2021-04-25 20:53:59','ce600689-d50f-4a50-9f79-0e19c4debb52',1,'/content/Document/Templates/6.1/MNHHS Palliative Care Ref v6_1.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/MNHHS%20Palliative%20Care%20Ref%20v6_1.rtf','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/MNHHS Palliative Care Ref v6_1.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-25 20:53:59',0),(65678,'2021-04-15 23:13:12','2021-05-13 01:19:07','7ccdbf6f-a646-46c6-8b31-999555e95987',1,'/page/health-professionals/MHAOD/funded-mental-health-services/low-intensity-mental-health-services','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/MHAOD/funded-mental-health-services/low-intensity-mental-health-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-13 01:19:07',0),(65679,'2021-04-15 23:21:40','2021-05-08 10:19:16','049b8df6-6789-4e40-a170-6f11665befa7',1,'/content/Document/Pathways/LINK S_Description of Psychological Interventions for Depression_TC_150323 v2.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/LINK%20S_Description%20of%20Psychological%20Interventions%20for%20Depression_TC_150323%20v2.pdf','35.233.170.71','Go-http-client/1.1','Template not found: content/Document/Pathways/LINK S_Description of Psychological Interventions for Depression_TC_150323 v2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-08 10:19:16',0),(65680,'2021-04-15 23:21:47','2021-05-12 20:57:39','d5630fe0-589e-464d-9657-f8b6ea0d474f',1,'/page/home/quicklinks/view-latest-newsletter/','','66.249.68.93','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/home/quicklinks/view-latest-newsletter','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-12 20:57:39',0),(65681,'2021-04-15 23:24:02','2021-04-15 23:24:02','ece8d836-94d6-430d-ace0-d7f8d6de2389',1,'/page/news-and-events/metro-north-health-forum/2018-metro-north-health-forum/metro-north-health-forum-exhibitors-announced','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/metro-north-health-forum/2018-metro-north-health-forum/metro-north-health-forum-exhibitors-announced','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-15 23:24:02',0),(65682,'2021-04-15 23:25:11','2021-05-13 19:53:35','766de43b-a9e7-41b6-9a81-2cbfa301f499',1,'/page/health-professionals/multicultural-health/refugee-health-connect/','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/multicultural-health/refugee-health-connect','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-13 19:53:35',0),(65683,'2021-04-15 23:29:23','2021-05-17 11:40:20','56f7af37-c3e5-4179-8e7b-1a9a38f06290',1,'/wordpress/wp-login.php','','13.228.104.57','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36','Template not found: wordpress/wp-login.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,15,'2021-05-17 11:40:20',0),(65684,'2021-04-15 23:29:24','2021-05-17 11:40:22','e225b33d-de71-414f-a2dd-4dc2cb7e3153',1,'/blog/wp-login.php','','13.228.104.57','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36','Template not found: blog/wp-login.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,15,'2021-05-17 11:40:22',0),(65685,'2021-04-15 23:29:26','2021-05-17 11:40:23','9c555f5b-8b13-4028-98f9-eef846808b7a',1,'/wp/wp-login.php','','13.228.104.57','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36','Template not found: wp/wp-login.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,15,'2021-05-17 11:40:23',0),(65686,'2021-04-15 23:29:49','2021-05-13 18:04:21','af72985a-66e7-4e50-80e4-e7a3f3675486',1,'/content/Document/Events/AA Enoggera 22nd 29th Nov and 6 Dec 2017.pdf','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Events/AA Enoggera 22nd 29th Nov and 6 Dec 2017.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 18:04:21',0),(65687,'2021-04-15 23:33:01','2021-05-18 06:08:36','7f43ab8e-671c-4787-a0e7-2d8b76ff79d8',1,'/page/news-and-events/events/archive/hepatitis-b-in-primary-care-webinar','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/hepatitis-b-in-primary-care-webinar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 06:08:36',0),(65688,'2021-04-15 23:33:21','2021-05-14 20:54:16','44d9733f-e668-41ff-b446-33e5c92a9054',1,'/old/wp-admin/','http://brisbanenorthphn.org.au/','50.87.249.32','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','Template not found: old/wp-admin','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-14 20:54:16',0),(65689,'2021-04-15 23:39:16','2021-05-16 07:49:48','66bce411-ccab-4532-8854-11ce5ee9fe65',1,'/page/news-and-events/events/upcoming/assessment-and-management-of-low-back-pain/','','148.251.9.145','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/assessment-and-management-of-low-back-pain','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 07:49:48',0),(65690,'2021-04-15 23:39:17','2021-05-10 12:29:32','130a2f64-b432-4652-8146-e6e12ff1d1f3',1,'/content/Document/Templates/4.3/Specialists List RBWH 4.3.pdf','','78.46.94.83','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Safari/605.1.15','Template not found: content/Document/Templates/4.3/Specialists List RBWH 4.3.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-10 12:29:32',0),(65691,'2021-04-15 23:40:10','2021-05-16 07:49:57','990c423a-0987-49b7-b4fe-46ead0ad8616',1,'/page/news-and-events/events/upcoming/australian-association-of-musculoskeletal-medicine-conference/','','148.251.9.145','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/australian-association-of-musculoskeletal-medicine-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-16 07:49:57',0),(65692,'2021-04-15 23:40:27','2021-05-14 02:43:14','7272f3fd-d65c-4e59-a2ab-abe5e1ff28ea',1,'/page/health-professionals/Local Positions Vacant/psychologist---morayfield','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/psychologist---morayfield','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-14 02:43:14',0),(65693,'2021-04-15 23:49:19','2021-05-03 00:12:54','bd35e7af-7cd3-4941-86da-709b11eedef6',1,'/content/Document/Pathways/pathways_poosdiary.pdf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/pathways_poosdiary.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-03 00:12:54',0),(65694,'2021-04-15 23:49:39','2021-05-12 01:23:23','5ea84821-c0e5-4e47-bb75-a6b1e9817294',1,'/page/news-and-events/2017-news/palliative-care-resources-launched-for-gps-in-north-brisbane-and-moreton-bay','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/2017-news/palliative-care-resources-launched-for-gps-in-north-brisbane-and-moreton-bay','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 01:23:23',0),(65695,'2021-04-15 23:53:09','2021-05-12 09:22:08','53b2eda8-2fb4-47b2-a5e5-0c36320c94f8',1,'/page/news-and-events/2017-news/primary-health-budget-measures-welcomed','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/2017-news/primary-health-budget-measures-welcomed','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-12 09:22:08',0),(65696,'2021-04-15 23:59:27','2021-05-15 20:46:07','7df41a81-cbd9-4873-bc77-3522463aa65f',1,'/page/health-professionals/Local Positions Vacant/other-health-professional---hamilton','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/other-health-professional---hamilton','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-15 20:46:07',0),(65697,'2021-04-16 00:02:54','2021-05-18 00:09:57','0a1af3d7-90df-446c-89b0-9d9f378f027e',1,'/content/Document/Templates/4.3/Specialists List Redcliffe 4.3.pdf','','144.76.162.206','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','Template not found: content/Document/Templates/4.3/Specialists List Redcliffe 4.3.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-18 00:09:57',0),(65698,'2021-04-16 00:07:24','2021-05-13 07:07:29','15a2e063-a3c3-491d-aabf-9c6b429e2fb1',1,'/page/health-professionals/immunisation/resources/immunisation-records-and-data-explained','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/immunisation/resources/immunisation-records-and-data-explained','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-13 07:07:29',0),(65699,'2021-04-16 00:12:53','2021-05-16 15:41:07','252d61bd-5f18-45ad-bcaf-8f969bc84b88',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---deagon','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---deagon','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 15:41:07',0),(65700,'2021-04-16 00:15:38','2021-05-15 17:38:20','d3d451ae-6881-4c5c-8ebd-018530049dc5',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---ashgrove/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---ashgrove','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-15 17:38:20',0),(65701,'2021-04-16 00:16:18','2021-04-16 00:16:18','0d92232b-f4cf-494f-8134-9c0a718ffc1a',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/brisbane-mind-information-for-referrers/contact/','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services/brisbane-mind-information-for-referrers/contact','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 00:16:18',0),(65702,'2021-04-16 00:17:41','2021-05-16 07:48:34','7880ec76-8aa8-497e-879b-1d3ab4c9353d',1,'/page/news-and-events/latest-news/partners-in-recovery-legacy-will-live-on/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/partners-in-recovery-legacy-will-live-on','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 07:48:34',0),(65703,'2021-04-16 00:29:40','2021-04-16 00:29:40','05ae40e0-e0b2-4df0-a840-f1225f7ba951',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-with-special-interest-gpwsi---cardiology/','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-with-special-interest-gpwsi---cardiology','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 00:29:40',0),(65704,'2021-04-16 00:33:12','2021-05-09 03:52:34','2d4cf083-7b63-4c46-b212-87487d8a3b88',1,'/content/Document/Pathways/LINK I_Specific Tools for Assessing Depression in ID.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/LINK%20I_Specific%20Tools%20for%20Assessing%20Depression%20in%20ID.pdf','35.233.170.71','Go-http-client/1.1','Template not found: content/Document/Pathways/LINK I_Specific Tools for Assessing Depression in ID.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-09 03:52:34',0),(65705,'2021-04-16 00:35:23','2021-04-16 00:35:23','3a453686-e6d9-44af-8890-e5aa46bf6029',1,'/pin/369858188134365341/','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: pin/369858188134365341','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 00:35:23',0),(65706,'2021-04-16 00:37:27','2021-05-13 04:09:56','d7208389-c787-4446-8f0e-c8e0ac9b8317',1,'/yearinreview/2017-18/wp-content/uploads/2018/11/GPLOs-Dr-James-Collins-and-Dr-Meg-Cairns-600x400.png','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/wp-content/uploads/2018/11/GPLOs-Dr-James-Collins-and-Dr-Meg-Cairns-600x400.png','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-13 04:09:56',0),(65707,'2021-04-16 00:39:12','2021-05-04 21:43:29','f003437f-3bec-43c1-8a4b-6670c01a0e83',1,'/yearinreview/2017-18/wp-content/uploads/2018/11/BNPHN_077.jpg','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/wp-content/uploads/2018/11/BNPHN_077.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-04 21:43:29',0),(65708,'2021-04-16 00:46:43','2021-04-19 17:00:34','ab0edc14-2f4b-4d8e-9c6d-c264f1ae31a9',1,'/content/Image/Banner_page_may2018agedcareforum(1).jpg','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Banner_page_may2018agedcareforum(1).jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-19 17:00:34',0),(65709,'2021-04-16 00:51:23','2021-05-07 04:04:10','1a43c145-991a-4374-8c0a-0c282513c8e6',1,'/page/news-and-events/events/upcoming/my-health-record-in-pharmacy-workshop---lutwyche','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/my-health-record-in-pharmacy-workshop---lutwyche','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-07 04:04:10',0),(65710,'2021-04-16 00:53:22','2021-05-13 00:29:50','e8ea7050-bb7b-4d14-ab28-09cd2b3809e1',1,'/content/Document/immunisation-records-data-explained.pdf','','66.249.66.154','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/immunisation-records-data-explained.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-13 00:29:50',0),(65711,'2021-04-16 00:55:06','2021-05-15 06:41:36','e88136a3-c080-4e51-a96c-e52bcb19d90f',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---woody-point','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---woody-point','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-15 06:41:36',0),(65712,'2021-04-16 00:57:33','2021-05-11 08:16:37','f5be0a4c-e162-4cbf-82d8-5f58e7ec4b65',1,'/page/about/commissioning/download-the-toolkit/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/commissioning/download-the-toolkit','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-11 08:16:37',0),(65713,'2021-04-16 00:58:25','2021-04-19 09:20:10','cc49cef4-c806-445d-b649-2482cad97216',1,'/content/Document/posttraumatic-mental-health-disorders.pdf','http://www.brisbanenorthphn.org.au/content/Document/posttraumatic-mental-health-disorders.pdf','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/posttraumatic-mental-health-disorders.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-19 09:20:10',0),(65714,'2021-04-16 01:02:02','2021-05-16 10:31:40','162d107b-7836-44a0-9644-ad449b1e80ad',1,'/content/Document/PRO_PfW_COVID-19_Webinar.docx','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/PRO_PfW_COVID-19_Webinar.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 10:31:40',0),(65715,'2021-04-16 01:03:38','2021-05-17 03:42:53','84cc8d84-7829-4aa8-b2f8-128bb075844d',1,'/jobs/practice-nurse-for-busy-brendale-clinic','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/practice-nurse-for-busy-brendale-clinic','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 03:42:53',0),(65716,'2021-04-16 01:03:43','2021-05-02 18:12:52','e4c55144-98e9-448b-965b-a896ee64bcd7',1,'/page/news-and-events/events/upcoming/domestic-violence-seminar-series-dv-risk-assessment-and-safety-planning','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/domestic-violence-seminar-series-dv-risk-assessment-and-safety-planning','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-02 18:12:52',0),(65717,'2021-04-16 01:05:44','2021-05-15 11:56:52','dcfec5d8-e4b1-4b27-a208-758d165863f9',1,'/page/health-professionals/community-care','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/community-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-15 11:56:52',0),(65718,'2021-04-16 01:07:04','2021-04-16 01:07:04','170cdfae-f2e0-4a89-b9fa-28738ea6a197',1,'/content/Document/Health alerts/covid-19-health-alert-14.pdf','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Health alerts/covid-19-health-alert-14.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 01:07:04',0),(65719,'2021-04-16 01:08:01','2021-04-25 22:07:51','86740151-cc30-47f6-abf2-1614e37e25e7',1,'/content/Document/Planning/PLN_NSPT Work Plan_for website_121112_mc.pdf','http://www.brisbanenorthphn.org.au/content/Document/Planning/PLN_NSPT%20Work%20Plan_for%20website_121112_mc.pdf','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/Planning/PLN_NSPT Work Plan_for website_121112_mc.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-25 22:07:51',0),(65720,'2021-04-16 01:09:29','2021-04-16 01:09:29','ca3f8cbb-cf6b-446f-9964-86ab7d5c7aa3',1,'/page/news-and-events/latest-news/supporting-community-care-clients-through-the-pandemic/','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/latest-news/supporting-community-care-clients-through-the-pandemic','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 01:09:29',0),(65721,'2021-04-16 01:10:16','2021-05-17 19:37:31','61da6fb3-b0d4-40b5-953e-cf826230124d',1,'/page/news-and-events/events/upcoming/recognising-diagnosing-and-managing-dementia-in-general-practice','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/recognising-diagnosing-and-managing-dementia-in-general-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-17 19:37:31',0),(65722,'2021-04-16 01:11:09','2021-04-24 18:54:17','a92e4d62-a9c0-4e61-9632-64600ce3a3e8',1,'/page/news-and-events/latest-news/gps-flock-to-the-phns-first-ndis-event/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/gps-flock-to-the-phns-first-ndis-event','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-24 18:54:17',0),(65723,'2021-04-16 01:19:29','2021-05-17 20:37:46','832ec5df-c49a-41ba-9c6a-fd12aed11251',1,'/page/about/careers/events-and-communications-officer/','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers/events-and-communications-officer','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 20:37:46',0),(65724,'2021-04-16 01:19:44','2021-05-16 07:50:42','2d84a771-cdec-40da-ad7a-8d347f5f7ff6',1,'/page/news-and-events/latest-news/seeking-carers-input-for-dementia-survey/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/seeking-carers-input-for-dementia-survey','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 07:50:42',0),(65725,'2021-04-16 01:29:48','2021-04-16 01:29:48','b179fb87-8826-40d8-b3fb-49ff506fc501',1,'/events/beyond-the-pandemic-the-health-systems-support-to-covid-long-haulers','','207.46.13.11','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/beyond-the-pandemic-the-health-systems-support-to-covid-long-haulers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 01:29:48',0),(65726,'2021-04-16 01:30:58','2021-05-08 03:50:58','d61428fc-cc78-4736-aad9-1abab68e07b5',1,'/content/Document/CNRC - POMIN flyer rego.pdf','http://www.brisbanenorthphn.org.au/content/Document/CNRC%20-%20POMIN%20flyer%20rego.pdf','35.233.170.71','Go-http-client/1.1','Template not found: content/Document/CNRC - POMIN flyer rego.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-08 03:50:58',0),(65727,'2021-04-16 01:34:46','2021-04-16 01:35:07','4396e490-846e-4fb8-9601-31fd01ba112e',1,'/www.googletagmanager.com/gtm.js','','35.241.169.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: www.googletagmanager.com/gtm.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-16 01:35:07',0),(65728,'2021-04-16 01:34:48','2021-04-16 01:35:08','7b9c4809-e465-47c4-81e3-0b88b5eddf57',1,'/www.googletagmanager.com/www.googletagmanager.com/gtm.js','','35.241.169.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: www.googletagmanager.com/www.googletagmanager.com/gtm.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-16 01:35:08',0),(65729,'2021-04-16 01:34:49','2021-04-16 01:35:09','423122ac-aee3-47e4-928b-53cffc04d964',1,'/www.googletagmanager.com/dist/swiper.js','','35.241.169.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: www.googletagmanager.com/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-16 01:35:09',0),(65730,'2021-04-16 01:34:49','2021-04-16 01:34:49','176ab6bb-44e4-4103-8050-c1504cfb10be',1,'/about/www.googletagmanager.com/gtm.js','','35.241.169.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: about/www.googletagmanager.com/gtm.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 01:34:49',0),(65731,'2021-04-16 01:34:49','2021-04-16 01:36:29','a1e6d683-7d11-4b74-80c1-8a968b42c2b8',1,'/www.googletagmanager.com/www.googletagmanager.com/www.googletagmanager.com/gtm.js','','35.241.169.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: www.googletagmanager.com/www.googletagmanager.com/www.googletagmanager.com/gtm.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-16 01:36:29',0),(65732,'2021-04-16 01:34:50','2021-04-16 01:34:50','c9c6898f-4666-46b7-b8d9-361e5050bd61',1,'/about/www.googletagmanager.com/www.googletagmanager.com/gtm.js','','35.241.169.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: about/www.googletagmanager.com/www.googletagmanager.com/gtm.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 01:34:50',0),(65733,'2021-04-16 01:34:50','2021-05-15 09:00:33','915acfba-9aa2-444f-bdf2-c4e6b68a666b',1,'/about/dist/swiper.js','','207.46.13.120','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','Template not found: about/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-15 09:00:33',0),(65734,'2021-04-16 01:34:51','2021-04-16 01:34:51','a0eccb7c-3a7a-41a2-aec9-0ba9eb4bb1bc',1,'/contact/www.googletagmanager.com/gtm.js','','35.241.169.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: contact/www.googletagmanager.com/gtm.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 01:34:51',0),(65735,'2021-04-16 01:34:52','2021-04-16 01:34:52','9e6a5541-4ecf-413c-9fc0-d666c23042bf',1,'/contact/www.googletagmanager.com/www.googletagmanager.com/gtm.js','','35.241.169.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: contact/www.googletagmanager.com/www.googletagmanager.com/gtm.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 01:34:52',0),(65736,'2021-04-16 01:34:52','2021-04-16 01:34:52','4ff69360-625b-4b8c-a358-3be9f6611ccb',1,'/contact/dist/swiper.js','','35.241.169.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: contact/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 01:34:52',0),(65737,'2021-04-16 01:35:03','2021-05-16 23:12:42','683ff434-b870-4de1-b153-a40492a0fc9f',1,'/page/news-and-events/latest-news/project-yarn-circle-builds-connection-to-culture-in-indigenous-youth','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/project-yarn-circle-builds-connection-to-culture-in-indigenous-youth','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-16 23:12:42',0),(65738,'2021-04-16 01:35:08','2021-04-16 01:35:08','08200381-2ceb-46a9-95e3-fcdbd8977381',1,'/covid-19/www.googletagmanager.com/gtm.js','','35.241.169.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: covid-19/www.googletagmanager.com/gtm.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 01:35:08',0),(65739,'2021-04-16 01:35:09','2021-04-16 01:35:09','fd6ececc-d12f-4530-a84d-86b57b0678ec',1,'/covid-19/www.googletagmanager.com/www.googletagmanager.com/gtm.js','','35.241.169.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: covid-19/www.googletagmanager.com/www.googletagmanager.com/gtm.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 01:35:09',0),(65740,'2021-04-16 01:35:17','2021-04-16 01:35:17','73db7adc-0bb4-4841-b116-ec0ed62752b6',1,'/page/news-and-events/latest-news/covid-19-information/brisbanenorth.communityhealthpathways.org','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/covid-19-information/brisbanenorth.communityhealthpathways.org','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 01:35:17',0),(65741,'2021-04-16 01:36:38','2021-05-09 12:15:24','3f4d63d2-9aa6-4534-b418-70f9032615f1',1,'/covid-19/dist/swiper.js','','207.46.13.59','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','Template not found: covid-19/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-09 12:15:24',0),(65742,'2021-04-16 01:37:34','2021-04-16 01:37:34','e620fd5f-9ecc-4792-bee2-88186a411038',1,'/events/www.googletagmanager.com/gtm.js','','35.241.169.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: events/www.googletagmanager.com/gtm.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 01:37:34',0),(65743,'2021-04-16 01:37:49','2021-04-16 01:37:49','44c13fbf-adf0-4ab6-8013-c75fb810380b',1,'/events/www.googletagmanager.com/www.googletagmanager.com/gtm.js','','35.241.169.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: events/www.googletagmanager.com/www.googletagmanager.com/gtm.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 01:37:49',0),(65744,'2021-04-16 01:37:50','2021-05-01 06:57:24','0413d827-9cda-4800-85ae-9c2a36a06091',1,'/events/dist/swiper.js','','40.77.167.21','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','Template not found: events/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-01 06:57:24',0),(65745,'2021-04-16 01:37:53','2021-04-16 01:37:53','b5b560ad-952f-460d-9f05-a654f1360b0d',1,'/news-events/www.googletagmanager.com/gtm.js','','35.241.169.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: news-events/www.googletagmanager.com/gtm.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 01:37:53',0),(65746,'2021-04-16 01:38:47','2021-04-16 01:38:47','02540a8b-fd72-4b28-b073-096b8eb60e05',1,'/our-programs/www.googletagmanager.com/gtm.js','','35.241.169.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: our-programs/www.googletagmanager.com/gtm.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 01:38:47',0),(65747,'2021-04-16 01:38:48','2021-04-16 01:38:48','a463fd76-bd25-4262-beb7-559faa017cd2',1,'/news-events/www.googletagmanager.com/www.googletagmanager.com/gtm.js','','35.241.169.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: news-events/www.googletagmanager.com/www.googletagmanager.com/gtm.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 01:38:48',0),(65748,'2021-04-16 01:38:49','2021-04-16 01:38:49','6a45987c-88f6-4e6e-bb1a-b3a01c51ed95',1,'/our-programs/www.googletagmanager.com/www.googletagmanager.com/gtm.js','','35.241.169.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: our-programs/www.googletagmanager.com/www.googletagmanager.com/gtm.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 01:38:49',0),(65749,'2021-04-16 01:38:58','2021-04-16 01:38:58','464c2b72-9e77-40cd-9e88-7d3b22b837d7',1,'/our-programs/aged-and-community-care/www.googletagmanager.com/gtm.js','','35.241.169.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: our-programs/aged-and-community-care/www.googletagmanager.com/gtm.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 01:38:58',0),(65750,'2021-04-16 01:39:00','2021-04-16 01:39:00','0dcc4d66-8937-4834-a45a-a211317060ca',1,'/our-programs/aged-and-community-care/www.googletagmanager.com/www.googletagmanager.com/gtm.js','','35.241.169.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: our-programs/aged-and-community-care/www.googletagmanager.com/www.googletagmanager.com/gtm.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 01:39:00',0),(65751,'2021-04-16 01:39:01','2021-04-16 01:39:01','ea32070b-0c4e-4aee-97e5-c54bff415f17',1,'/our-programs/mental-health-services/www.googletagmanager.com/gtm.js','','35.241.169.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: our-programs/mental-health-services/www.googletagmanager.com/gtm.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 01:39:01',0),(65752,'2021-04-16 01:39:39','2021-04-26 02:16:01','1e8b02e4-ff77-4c36-b2a5-7de968c6b962',1,'/page/news-and-events/events/upcoming/positive-ageing-journey/','','167.114.211.237','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/positive-ageing-journey','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-26 02:16:01',0),(65753,'2021-04-16 01:39:56','2021-04-16 01:39:56','a9e643d7-773b-444c-836b-d10499827f11',1,'/our-programs/mental-health-services/www.googletagmanager.com/www.googletagmanager.com/gtm.js','','35.241.169.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: our-programs/mental-health-services/www.googletagmanager.com/www.googletagmanager.com/gtm.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 01:39:56',0),(65754,'2021-04-16 01:39:56','2021-05-12 11:08:08','d802a4ab-d04b-4c76-af38-08fc7f2a3c52',1,'/our-programs/mental-health-services/dist/swiper.js','','207.46.13.159','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','Template not found: our-programs/mental-health-services/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 11:08:08',0),(65755,'2021-04-16 01:40:38','2021-04-16 01:40:38','81594cfd-3566-406c-baa8-66377d12fc82',1,'/practice-support/www.googletagmanager.com/gtm.js','','35.241.169.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: practice-support/www.googletagmanager.com/gtm.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 01:40:38',0),(65756,'2021-04-16 01:40:39','2021-04-16 01:40:39','3bd6e76b-5efe-4780-a9aa-401ea1135f8e',1,'/practice-support/www.googletagmanager.com/www.googletagmanager.com/gtm.js','','35.241.169.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: practice-support/www.googletagmanager.com/www.googletagmanager.com/gtm.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 01:40:39',0),(65757,'2021-04-16 01:41:02','2021-05-02 18:40:46','366234e0-9dd7-47b3-9f50-224a33daf1ec',1,'/page/news-and-events/events/upcoming/dementia-essentials-providing-support-to-people-living-with-dementia-anam-cara-september/','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/dementia-essentials-providing-support-to-people-living-with-dementia-anam-cara-september','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-02 18:40:46',0),(65758,'2021-04-16 01:41:41','2021-04-16 01:41:41','46e8fbe4-7202-456d-a4ef-6760def280da',1,'/jobs/www.googletagmanager.com/gtm.js','','35.241.169.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: jobs/www.googletagmanager.com/gtm.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 01:41:41',0),(65759,'2021-04-16 01:42:47','2021-04-16 01:42:47','8e53391c-31ae-41fe-84f4-5ff68e7f6417',1,'/media/www.googletagmanager.com/gtm.js','','35.241.169.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: media/www.googletagmanager.com/gtm.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 01:42:47',0),(65760,'2021-04-16 01:43:24','2021-04-16 01:43:24','3371c431-6d8a-449e-b5a7-6c40c58b0236',1,'/news-events/health-alerts/www.googletagmanager.com/gtm.js','','35.241.169.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: news-events/health-alerts/www.googletagmanager.com/gtm.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 01:43:24',0),(65761,'2021-04-16 01:43:52','2021-04-16 01:43:52','f973fb33-ae22-4e2a-a752-7dc43ac61816',1,'/install.php','','35.241.169.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: install.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 01:43:52',0),(65762,'2021-04-16 01:43:52','2021-04-16 01:43:52','5b147109-b65b-4134-b3bc-c1938285f39e',1,'/magento_version','','35.241.169.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: magento_version','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 01:43:52',0),(65763,'2021-04-16 01:43:52','2021-04-16 01:43:52','fed502f6-2dbd-4c3d-bc36-6ce3f0266f7e',1,'/util/login.aspx','','35.241.169.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0','Template not found: util/login.aspx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 01:43:52',0),(65764,'2021-04-16 01:48:16','2021-05-07 18:58:17','e0196c7b-9f03-4217-a2d1-5a51e6eebff8',1,'/content/Document/Primary care liaison/Are you still meeting all your eHealth PIP requirements_PCLO_2017.pdf','','66.249.69.63','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/Primary care liaison/Are you still meeting all your eHealth PIP requirements_PCLO_2017.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 18:58:17',0),(65765,'2021-04-16 01:49:39','2021-04-24 15:55:27','5b79f11a-5821-4fba-ad07-993bc0655563',1,'/content/Document/Paediatric Services Directory - Metro North District_FINAL_v4_1(1).docx','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.80 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Paediatric Services Directory - Metro North District_FINAL_v4_1(1).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 15:55:27',0),(65766,'2021-04-16 01:58:58','2021-05-16 11:37:31','73819c3d-ea6e-4d2e-adc8-0d3e2a4d235e',1,'/content/Document/PD_MHAOD PDO_Comm Servs team_170614(1).pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/PD_MHAOD PDO_Comm Servs team_170614(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 11:37:31',0),(65767,'2021-04-16 02:01:45','2021-05-10 15:16:24','a326ed23-e515-488c-94b2-e2ed009a9827',1,'/page/news-and-events/latest-news/a-new-look-brisbane-mind-model','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/a-new-look-brisbane-mind-model','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-10 15:16:24',0),(65768,'2021-04-16 02:01:49','2021-05-02 08:16:26','e9ff2c0b-bccf-479e-8e18-1eb0e3748ab2',1,'/page/news-and-events/2017-news/235m-to-continue-vital-mental-health-reform/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/2017-news/235m-to-continue-vital-mental-health-reform','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-02 08:16:26',0),(65769,'2021-04-16 02:07:45','2021-05-18 14:17:13','dd4b0c6f-d78e-426e-8d2d-3bcc6b391824',1,'/page/news-and-events/latest-news/proposed-changes-to-the-recommended-use-of-pertussis-vaccines-in-pregnant-women/','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/proposed-changes-to-the-recommended-use-of-pertussis-vaccines-in-pregnant-women','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-18 14:17:13',0),(65770,'2021-04-16 02:08:41','2021-05-16 11:59:32','8346c070-493d-4815-8487-e6550af6d5e0',1,'/page/health-professionals/community-care/palliative-care/my-health-record-improving-outcomes-for-people-in-palliative-care/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/community-care/palliative-care/my-health-record-improving-outcomes-for-people-in-palliative-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 11:59:32',0),(65771,'2021-04-16 02:09:26','2021-05-16 23:33:30','2748083a-0ce0-432b-9efc-e41d7fab1275',1,'/content/Document/adjustment-disorder-with-anxious-mood.pdf','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/adjustment-disorder-with-anxious-mood.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-16 23:33:30',0),(65772,'2021-04-16 02:12:11','2021-05-14 13:29:17','1391f5d0-d0a1-43ea-9daf-dbb68537a5a9',1,'/page/news-and-events/events/upcoming/assessment-and-management-of-lower-limb-pain','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/assessment-and-management-of-lower-limb-pain','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-14 13:29:17',0),(65773,'2021-04-16 02:14:07','2021-05-09 14:45:56','fb1cc03a-d5c2-4d8d-9992-cb6996de9ede',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---toombul','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---toombul','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-09 14:45:56',0),(65774,'2021-04-16 02:17:16','2021-05-13 02:39:24','03bdb170-185b-4d11-a54c-386f242235b7',1,'/page/news-and-events/latest-news','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-13 02:39:24',0),(65775,'2021-04-16 02:19:48','2021-05-16 13:17:33','5a3696a2-a8a9-4b56-a276-5b2880909716',1,'/content/Document/Reports/TCC_evaluation_report_Oct_2017.pdf','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Reports/TCC_evaluation_report_Oct_2017.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-16 13:17:33',0),(65776,'2021-04-16 02:21:22','2021-05-02 08:26:50','b0fbee1e-41cc-4517-a267-1a5afdffa3d7',1,'/page/news-and-events/latest-news/workshop-helps-build-capacity-of-consumers','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/workshop-helps-build-capacity-of-consumers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-02 08:26:50',0),(65777,'2021-04-16 02:23:14','2021-04-23 16:00:21','1a91db17-2546-4834-aacd-21957f142abc',1,'/content/Document/Brisbane MIND Provider List May 2017(4).pdf','','78.46.94.83','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','Template not found: content/Document/Brisbane MIND Provider List May 2017(4).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-23 16:00:21',0),(65778,'2021-04-16 02:24:14','2021-05-03 00:02:14','e5e8332d-2bb7-4b0a-9772-54f845d5bcab',1,'/content/Document/Desktop-guide-to-item-numbers-sept-2017-web.pdf','http://www.brisbanenorthphn.org.au/content/Document/Desktop-guide-to-item-numbers-sept-2017-web.pdf','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/Desktop-guide-to-item-numbers-sept-2017-web.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-03 00:02:14',0),(65779,'2021-04-16 02:27:34','2021-04-16 02:27:34','4e4e803b-8264-4e2e-a236-ea4128e69476',1,'/content/Document/Templates/Specialists List_COHD_6_1.pdf','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/Specialists List_COHD_6_1.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 02:27:34',0),(65780,'2021-04-16 02:29:19','2021-05-08 09:27:06','c81cf9b6-b183-417e-975f-1390970d5fa7',1,'/page/health-professionals/Local Positions Vacant/other-health-professional---kedron','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/other-health-professional---kedron','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-08 09:27:06',0),(65781,'2021-04-16 02:33:26','2021-05-02 09:37:06','690de79d-5e15-4f82-b3a6-a9420c884427',1,'/page/news-and-events/events/upcoming/dementia-australia-chcage005-providing-support-to-people-living-with-dementia-may','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/dementia-australia-chcage005-providing-support-to-people-living-with-dementia-may','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-02 09:37:06',0),(65782,'2021-04-16 02:39:46','2021-05-11 15:05:45','946bd674-e335-407c-9606-6ae7ed7445b7',1,'/page/news-and-events/events/upcoming/icon-cancer-centre-cpd-weekend---practical-cancer-care-for-gps/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/icon-cancer-centre-cpd-weekend---practical-cancer-care-for-gps','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-11 15:05:45',0),(65783,'2021-04-16 02:42:32','2021-04-19 20:38:27','ddc1d2d9-04fd-40c8-96e4-11d25216f38e',1,'/content/Document/Templates/4.3/MNHHS TPCH outpatient v4.3.4W7','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.3/MNHHS TPCH outpatient v4.3.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-19 20:38:27',0),(65784,'2021-04-16 02:45:40','2021-05-05 17:51:34','0549d7f1-5b1a-43d1-8df1-9365f7b4da37',1,'/jobs/expression-of-interest-general-practice','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/expression-of-interest-general-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-05 17:51:34',0),(65785,'2021-04-16 03:00:09','2021-05-11 20:14:08','f126ae19-bc28-45b3-b814-b2ef5e64feb0',1,'/content/Document/EOI Independent Chair 2017.pdf','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/EOI Independent Chair 2017.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-11 20:14:08',0),(65786,'2021-04-16 03:03:35','2021-05-07 03:04:40','a15d459f-0546-4f83-8a9e-d8070e4af319',1,'/page/news-and-events/events/upcoming/domestic-violence-seminar-series-non-lethal-strangulation','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/domestic-violence-seminar-series-non-lethal-strangulation','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-07 03:04:40',0),(65787,'2021-04-16 03:07:41','2021-04-16 03:07:41','f82f27ae-42ea-4f87-aa96-885579058e5c',1,'//Telerik.Web.UI.WebResource.axd','','13.228.79.23','python-requests/2.25.1','Template not found: Telerik.Web.UI.WebResource.axd','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 03:07:41',0),(65788,'2021-04-16 03:07:58','2021-04-16 03:08:13','ba7e4d0f-87c9-437b-8479-73094edaa85b',1,'//desktopmodules/Telerik.Web.UI.WebResource.axd','','13.228.79.23','python-requests/2.25.1','Template not found: desktopmodules/Telerik.Web.UI.WebResource.axd','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-16 03:08:13',0),(65789,'2021-04-16 03:08:29','2021-04-16 03:08:29','81d0024d-16e4-4479-838f-5aa6c79af343',1,'//portals/Telerik.Web.UI.WebResource.axd','','13.228.79.23','python-requests/2.25.1','Template not found: portals/Telerik.Web.UI.WebResource.axd','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 03:08:29',0),(65790,'2021-04-16 03:09:14','2021-05-06 14:32:34','21c846aa-3070-46ca-a591-61ba75f9ed73',1,'/page/health-professionals/mental-health-services/brisbane-mind4kids/information-for-gps/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/brisbane-mind4kids/information-for-gps','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-06 14:32:34',0),(65791,'2021-04-16 03:12:46','2021-04-16 03:12:46','2ed0f59a-13cd-4bdb-bc56-f0e1ef4e16c4',1,'/practice-support/referral-and-patient-management/dist/swiper.js','','13.66.139.4','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','Template not found: practice-support/referral-and-patient-management/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 03:12:46',0),(65792,'2021-04-16 03:21:49','2021-04-16 03:21:49','96dff257-70b1-47c0-b64d-9347472f0750',1,'/content/Image/Page Banners/Banner_template health pathways John.jpg','','130.102.10.50','Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','Template not found: content/Image/Page Banners/Banner_template health pathways John.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 03:21:49',0),(65793,'2021-04-16 03:23:26','2021-05-13 13:51:21','4ab62456-515f-4c5b-aee0-68e33de171d9',1,'/page/news-and-events/events/upcoming/redicase-training-june','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/redicase-training-june','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-13 13:51:21',0),(65794,'2021-04-16 03:26:32','2021-05-14 03:15:33','bb2f438f-ec1d-4358-98a2-bc3c23ea7a7b',1,'/page/news-and-events/latest-news/antenatal-pharmacy-clinics-provide-advice-for-women-and-gps','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/antenatal-pharmacy-clinics-provide-advice-for-women-and-gps','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-14 03:15:33',0),(65795,'2021-04-16 03:31:56','2021-05-16 07:52:38','b19e1a73-3c62-4f6d-8648-fa71fbbd21f1',1,'/page/news-and-events/list-your-activity/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/list-your-activity','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-16 07:52:38',0),(65796,'2021-04-16 03:43:42','2021-05-07 05:41:15','2a75d536-92c5-4215-bdce-f4d6c1fdd74d',1,'/page/news-and-events/events/upcoming/regional-private-practice-seminar-performance-management-oct','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/regional-private-practice-seminar-performance-management-oct','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-07 05:41:15',0),(65797,'2021-04-16 03:45:19','2021-05-02 14:37:39','9653e963-7421-4253-a119-f48746f9c8f8',1,'/page/news-and-events/latest-news/seasonal-influenza-vaccine-information','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/seasonal-influenza-vaccine-information','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-02 14:37:39',0),(65798,'2021-04-16 03:45:22','2021-04-16 03:45:22','1dd3b661-3d94-42f4-9c95-a6130f13192e',1,'/content/Document/Events/2017/Dementia Essentials Newmarket 24th 31st Aug and 7th Sept 2017 YOD.pdf','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2017/Dementia Essentials Newmarket 24th 31st Aug and 7th Sept 2017 YOD.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 03:45:22',0),(65799,'2021-04-16 04:00:01','2021-05-12 17:21:11','693da23f-a644-47ae-bf22-af292483e2c4',1,'/content/Document/Network Link_04_April_FINAL_WEB.pdf','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Network Link_04_April_FINAL_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-12 17:21:11',0),(65800,'2021-04-16 04:01:18','2021-05-02 14:59:49','ae0d3da7-bd42-4b53-980d-28238e8ce16a',1,'/jobs/general-practitioner-2','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/general-practitioner-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-02 14:59:49',0),(65801,'2021-04-16 04:03:20','2021-05-08 22:49:04','0a816099-581f-4863-8ffd-f4e8ef18eac6',1,'/page/publications/partners-in-health/partners-in-health---january-2018','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/partners-in-health---january-2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-08 22:49:04',0),(65802,'2021-04-16 04:13:35','2021-05-17 08:31:47','51bf0929-690e-468b-8564-27facd13a827',1,'/content/Document/Recovery/PHN_rediCASE_UserManual_May2019.pdf','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Recovery/PHN_rediCASE_UserManual_May2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-17 08:31:47',0),(65803,'2021-04-16 04:15:23','2021-04-16 04:15:23','a5ee5918-fb35-479d-b243-f3d7ccade1fd',1,'/page/about/careers/project-lead-healthy-ageing/','','207.46.13.11','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers/project-lead-healthy-ageing','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 04:15:23',0),(65804,'2021-04-16 04:15:48','2021-05-01 01:09:16','ebe75466-cbce-4fbd-bb04-e7f9f2f36f6d',1,'/page/news-and-events/latest-news/people-vs-machines-and-the-future-of-healthcare','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/people-vs-machines-and-the-future-of-healthcare','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 01:09:16',0),(65805,'2021-04-16 04:17:41','2021-05-01 01:40:30','4d74a5a2-be08-432c-8ca5-7511b48e8b8e',1,'/page/home/style-guide/grid-listing','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/style-guide/grid-listing','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 01:40:30',0),(65806,'2021-04-16 04:22:03','2021-05-09 03:31:39','02a51baa-b3ca-4645-be1f-67d93cc5687f',1,'/page/publications/partners-in-health/partners-in-health-october-2015','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/partners-in-health-october-2015','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-09 03:31:39',0),(65807,'2021-04-16 04:23:48','2021-04-28 12:02:19','0bc23ab0-575d-4f8e-b37e-bf2451a74823',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---taigum','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---taigum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-28 12:02:19',0),(65808,'2021-04-16 04:25:36','2021-05-17 10:15:47','689edcb4-1b4b-415a-95b0-387f73a785ca',1,'/page/health-professionals/mental-health-services/brisbane-mind-services','','173.252.87.21','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,15,'2021-05-17 10:15:47',0),(65809,'2021-04-16 04:29:54','2021-05-04 23:34:45','463614db-d727-4cb5-8fd4-2ef4e4126b2a',1,'/content/Document/Pathways/Reducing salt intake in heart failure patient info sheet.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/Reducing%20salt%20intake%20in%20heart%20failure%20patient%20info%20sheet.pdf','35.186.188.225','Go-http-client/1.1','Template not found: content/Document/Pathways/Reducing salt intake in heart failure patient info sheet.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-04 23:34:45',0),(65810,'2021-04-16 04:30:53','2021-04-24 10:03:17','f8db1350-354c-4cd6-9657-e8a7c23cca4d',1,'/page/news-and-events/events/upcoming/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 10:03:17',0),(65811,'2021-04-16 04:31:41','2021-04-16 04:31:41','b769815f-6e01-49ce-98d9-71417ba2fcf5',1,'/events/doctor-patient-communication-workshop','','91.121.7.147','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: events/doctor-patient-communication-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 04:31:41',0),(65812,'2021-04-16 04:31:46','2021-05-14 13:04:13','609e5cbe-38e4-465b-bd46-6daa17eded49',1,'/events/enrolled-nurses-conference-what-difference-day-makes','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/enrolled-nurses-conference-what-difference-day-makes','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 13:04:13',0),(65813,'2021-04-16 04:35:49','2021-04-25 04:30:05','ef953e0d-70de-4a39-8aa9-b7a0a766e1d6',1,'/page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health-june-2017','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health-june-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-25 04:30:05',0),(65814,'2021-04-16 04:37:54','2021-05-01 21:05:36','3c3c733f-808a-485f-ad33-f29a33e9e302',1,'/content/Media/Genie v6.2/MNHHS Palliative Referral v6.2_Genie.4W7','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Media/Genie v6.2/MNHHS Palliative Referral v6.2_Genie.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 21:05:36',0),(65815,'2021-04-16 04:41:04','2021-05-16 14:55:04','ff626b58-ef2c-4de9-9bc9-9e39994db807',1,'/jobs/practice-nurse-manager-albany-creek','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/practice-nurse-manager-albany-creek','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 14:55:04',0),(65816,'2021-04-16 04:42:02','2021-05-02 01:14:15','39e73d87-b138-45f3-9f67-553d0af136d7',1,'/page/news-and-events/events/upcoming/working-therapeutically-with-complex-trauma-clients-level-2---three-phased-approach','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/working-therapeutically-with-complex-trauma-clients-level-2---three-phased-approach','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-02 01:14:15',0),(65817,'2021-04-16 04:43:20','2021-05-11 20:15:19','68fd71c2-7b0c-4960-8c9a-83a1cf9cbc24',1,'/page/health-professionals/referral-and-patient-management/general-practice-liaison-officers/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/referral-and-patient-management/general-practice-liaison-officers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-11 20:15:19',0),(65818,'2021-04-16 04:51:55','2021-04-16 04:51:55','47d5c45d-0f55-4c87-805e-fe97c2fc93f3',1,'/content/Document/Primary care liaison/EOI_AHP Interpreting flyer March 2018.docx','http://www.brisbanenorthphn.org.au/content/Document/Primary%20care%20liaison/EOI_AHP%20Interpreting%20flyer%20March%202018.docx','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/EOI_AHP Interpreting flyer March 2018.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 04:51:55',0),(65819,'2021-04-16 04:54:47','2021-05-14 15:33:57','a6f27ade-645b-42d8-bb53-4928db950d36',1,'/page/about/careers/practice-development-officer/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers/practice-development-officer','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-14 15:33:57',0),(65820,'2021-04-16 04:57:44','2021-04-18 01:50:32','dd7b6f8e-b989-487c-a6a6-a1bf74939fad',1,'/content/Document/Templates/4.7/MNHHS Palliative Care PractiX v4_7.doc','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.7/MNHHS Palliative Care PractiX v4_7.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-18 01:50:32',0),(65821,'2021-04-16 05:02:15','2021-05-18 03:24:47','496a1f22-5ac4-4b1e-bc54-81ae7b9c74fd',1,'/content/Document/Suicide prevention services guide v1_0December2017web.pdf','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Suicide prevention services guide v1_0December2017web.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,14,'2021-05-18 03:24:47',0),(65822,'2021-04-16 05:03:39','2021-04-26 19:40:30','6e6100b1-4933-4ee6-9b17-79f356e2e60c',1,'/page/publications/partners-in-health/partners-in-health---december-2017','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/partners-in-health---december-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-26 19:40:30',0),(65823,'2021-04-16 05:05:18','2021-05-02 17:12:21','8a774493-dbc0-47ba-801e-206d94586e17',1,'/page/about/commissioning/text-description-of-commissioning-cycle','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/commissioning/text-description-of-commissioning-cycle','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-02 17:12:21',0),(65824,'2021-04-16 05:07:10','2021-05-13 06:51:11','9dacb84c-cb65-40e1-8254-88d53a8ce977',1,'/page/news-and-events/latest-news/have-your-say-on-planning-for-wellbeing','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/have-your-say-on-planning-for-wellbeing','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 06:51:11',0),(65825,'2021-04-16 05:08:43','2021-05-16 14:31:12','58a6680c-6eaa-4012-91b0-03f6d8a59482',1,'/page/health-professionals/referral-and-patient-management/directories/brisbane-mind-directory/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/referral-and-patient-management/directories/brisbane-mind-directory','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-16 14:31:12',0),(65826,'2021-04-16 05:09:17','2021-05-01 11:06:03','901f947f-eb8c-49cd-ba3c-d13b8729d04c',1,'/page/news-and-events/latest-news/talk-to-your-patients-about-heart-health-during-heart-week','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/talk-to-your-patients-about-heart-health-during-heart-week','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 11:06:03',0),(65827,'2021-04-16 05:15:07','2021-05-19 01:58:35','e7d4e458-a7af-4d7b-a42e-3cdebc70a413',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---brendale/','','17.121.113.112','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---brendale','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-19 01:58:35',0),(65828,'2021-04-16 05:17:16','2021-05-16 14:43:20','286a6056-a8f2-4694-9b3d-7d6afd1eb30f',1,'/content/Document/Network Link/FIN_PUB_schedule_2020_WEB.pdf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Network Link/FIN_PUB_schedule_2020_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 14:43:20',0),(65829,'2021-04-16 05:23:05','2021-05-17 11:08:17','db519a11-216c-4bd1-8340-67813cce6736',1,'/page/news-and-events/latest-news/in-home-pilot-program-improving-wellness-of-older-people','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/in-home-pilot-program-improving-wellness-of-older-people','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 11:08:17',0),(65830,'2021-04-16 05:29:34','2021-05-16 05:05:56','fe9e1ed4-a0ed-4bb6-bc1f-a0b6f9ff489c',1,'/content/Document/Request for police assistance.pdf','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Request for police assistance.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-16 05:05:56',0),(65831,'2021-04-16 05:40:14','2021-05-17 13:52:05','202825dd-c1e6-438c-8417-2a3ccce5873a',1,'/jobs/eoi-metro-north-public-health-unit-nursing-relief-pool','','157.55.39.23','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/eoi-metro-north-public-health-unit-nursing-relief-pool','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-17 13:52:05',0),(65832,'2021-04-16 05:47:13','2021-04-21 14:43:55','d265585b-7a95-4a64-89fe-1ecc92613e56',1,'/jobs/banyo-village-medical-centre-1','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/banyo-village-medical-centre-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-21 14:43:55',0),(65833,'2021-04-16 05:50:22','2021-05-01 02:27:42','145208bf-1cad-4f42-8369-f5209df66cc5',1,'/page/news-and-events/latest-news/transition-funding-to-bridge-the-gap-for-psychosocial-support','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/transition-funding-to-bridge-the-gap-for-psychosocial-support','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 02:27:42',0),(65834,'2021-04-16 05:53:06','2021-04-24 08:50:57','52c55bb1-2dc3-4aac-940d-dccb69e3ffd0',1,'/page/news-and-events/events/upcoming/cultural-awareness-training/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/cultural-awareness-training','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-24 08:50:57',0),(65835,'2021-04-16 05:54:01','2021-05-04 20:46:27','da5965eb-1d75-4050-b063-9fe069ffb81d',1,'/content/Document/Pathways/Asthma Action Plan_specific examples of when to change medication.pdf','','77.88.5.51','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','Template not found: content/Document/Pathways/Asthma Action Plan_specific examples of when to change medication.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-04 20:46:27',0),(65836,'2021-04-16 06:01:44','2021-05-15 05:32:40','643ca51e-d67f-40d4-aa65-9d0354ad68d1',1,'/page/contact-us/visitors','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/contact-us/visitors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 05:32:40',0),(65837,'2021-04-16 06:04:12','2021-05-15 10:37:46','8810192d-df96-4e5f-94f9-1bd92d7219d8',1,'/content/Document/150819_HealthAlert_Measles.pdf','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/150819_HealthAlert_Measles.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-15 10:37:46',0),(65838,'2021-04-16 06:05:21','2021-05-17 07:31:18','c086e550-d6cb-483f-b02e-7d8307a78330',1,'/events/using-the-clinical-vaccine-integrated-platform','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/using-the-clinical-vaccine-integrated-platform','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,46,'2021-05-17 07:31:18',0),(65839,'2021-04-16 06:09:13','2021-05-15 07:32:45','6a57c780-659d-4e47-ad2d-afa6bc584520',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---brisbane-city-2','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---brisbane-city-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 07:32:45',0),(65840,'2021-04-16 06:09:52','2021-05-17 17:06:52','4e2d0385-d79c-4d66-813c-09b35383c1fb',1,'/page/news-and-events/events/upcoming/gp19-conference/','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/gp19-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-17 17:06:52',0),(65841,'2021-04-16 06:10:56','2021-05-14 21:36:08','694a254c-8918-41b1-bc0a-6e1c494183a7',1,'/content/Document/Pathways/Pain_Info.pdf','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Pain_Info.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-14 21:36:08',0),(65842,'2021-04-16 06:14:20','2021-05-03 05:46:04','fd57795d-5721-4c58-a59e-122c91d1dc6b',1,'/page/news-and-events/events/archive/sti-and-bbv-nursing-an-introduction','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/sti-and-bbv-nursing-an-introduction','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-03 05:46:04',0),(65843,'2021-04-16 06:17:47','2021-04-16 06:17:47','ee213a0b-b024-4529-ad72-1d11b5806cd2',1,'/â¦/working-together-to-develâ¦','','154.30.138.142','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36','Template not found: â¦/working-together-to-develâ¦','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 06:17:47',0),(65844,'2021-04-16 06:21:19','2021-05-11 16:57:42','c374bf0f-cd86-407a-9231-70212361c519',1,'/page/news-and-events/latest-news/gps-with-a-special-interest-project-providing-timely-care','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/gps-with-a-special-interest-project-providing-timely-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-11 16:57:42',0),(65845,'2021-04-16 06:21:51','2021-05-09 14:58:43','6241e924-600a-4fb2-9027-32c63dc06b06',1,'/content/Document/Events/2017/ICIF-COPD-Project-GP-ALM-171118.pdf','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Events/2017/ICIF-COPD-Project-GP-ALM-171118.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-09 14:58:43',0),(65846,'2021-04-16 06:31:21','2021-04-16 06:31:21','9862f435-0fe5-47cc-bab5-10d19a1c6742',1,'/content/Document/Primary care liaison/MNHHS Caboolture Hosp Ref v6_2 ZM(1).rtf','http://www.brisbanenorthphn.org.au/content/Document/Primary%20care%20liaison/MNHHS%20Caboolture%20Hosp%20Ref%20v6_2%20ZM(1).rtf','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/MNHHS Caboolture Hosp Ref v6_2 ZM(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 06:31:21',0),(65847,'2021-04-16 06:35:08','2021-04-16 06:35:08','56b83321-c032-4856-9528-3a16aefa474d',1,'/content/Document/Paediatric Services Directory - Metro North District_FINAL_v4_1(2).docx','http://www.brisbanenorthphn.org.au/content/Document/Paediatric%20Services%20Directory%20-%20Metro%20North%20District_FINAL_v4_1(2).docx','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/Paediatric Services Directory - Metro North District_FINAL_v4_1(2).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 06:35:08',0),(65848,'2021-04-16 06:40:44','2021-04-16 06:40:44','04637dd5-3e59-4d8e-9d20-08eb57b3e846',1,'/page/about/careers/intake-and-support-coordinator-partners-in-recovery/','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/about/careers/intake-and-support-coordinator-partners-in-recovery','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 06:40:44',0),(65849,'2021-04-16 06:42:24','2021-05-10 14:36:36','a0d8bade-8065-4d96-b9ff-dcfe3395d226',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---kedron','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---kedron','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-10 14:36:36',0),(65850,'2021-04-16 06:44:46','2021-05-16 13:28:19','7343528a-b19e-4dcc-99fd-2d18d12ec1e4',1,'/yearinreview/2017-18/supporting-frontline-healthcare-services/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/supporting-frontline-healthcare-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 13:28:19',0),(65851,'2021-04-16 06:47:31','2021-05-13 21:49:56','81246f70-c69d-4c7c-a63f-862d0addbd02',1,'/events/clinical-leadership-recognising-the-challenges-and-promoting-excellence-to-confront-a-changed-healthcare-reality-post-covid-19','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/clinical-leadership-recognising-the-challenges-and-promoting-excellence-to-confront-a-changed-healthcare-reality-post-covid-19','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-13 21:49:56',0),(65852,'2021-04-16 06:52:40','2021-05-12 06:49:12','61814278-5410-41d7-bfe6-4a02803dfb57',1,'/page/home/style-guide/document-listing','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/style-guide/document-listing','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-12 06:49:12',0),(65853,'2021-04-16 06:56:24','2021-05-17 17:11:21','2f497fac-bbc3-4b2c-a7f7-bc48c492325c',1,'/page/publications/recovery/recovery---december-2019/','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/recovery/recovery---december-2019','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-17 17:11:21',0),(65854,'2021-04-16 06:58:59','2021-05-16 17:53:30','814048b8-fac0-40ba-ba09-4299749499d6',1,'/page/health-professionals/Local Positions Vacant/general-practitioner','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 17:53:30',0),(65855,'2021-04-16 07:02:56','2021-05-14 01:03:32','5035d463-3c32-446d-8f9f-b450af64ced2',1,'/page/health-professionals/digital-health/my-health-record/what-security-and-access-controls-does-my-health-record-have','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/digital-health/my-health-record/what-security-and-access-controls-does-my-health-record-have','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-14 01:03:32',0),(65856,'2021-04-16 07:05:56','2021-04-19 17:17:49','3c7f58e8-96cd-45e1-855a-a97234dba39e',1,'/content/Document/Brisbane MIND Provider List September 2017(3).pdf','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List September 2017(3).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-19 17:17:49',0),(65857,'2021-04-16 07:11:20','2021-04-28 04:17:04','2578ec40-1f7a-4bb7-825b-f8f66c6a3797',1,'/page/publications/partners-in-health/partners-in-health-march-2017','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/partners-in-health-march-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-28 04:17:04',0),(65858,'2021-04-16 07:17:29','2021-05-19 02:46:18','4be186d5-eb8a-4cf1-81c7-dc1a9f2a79c9',1,'/content/Document/Pathways/Traffic light table 140829.pdf','','40.77.167.15','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/Traffic light table 140829.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-19 02:46:18',0),(65859,'2021-04-16 07:19:15','2021-05-12 08:34:36','eb4943f4-9efa-4a84-8afc-046ef661fb4d',1,'/events/hepatitis-c-and-covid-19','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/hepatitis-c-and-covid-19','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-12 08:34:36',0),(65860,'2021-04-16 07:29:16','2021-05-19 02:25:48','ea9a9fdb-c778-4f13-8c43-106bef3da1dd',1,'/content/Document/GPLO Info Sheet_180509.pdf','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/GPLO Info Sheet_180509.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,21,'2021-05-19 02:25:48',0),(65861,'2021-04-16 07:34:36','2021-05-18 18:59:34','b22ef9b4-3944-4eda-ab3c-4d65965ecc9d',1,'/page/news-and-events/events/upcoming/Redicase-training-february','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/Redicase-training-february','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-18 18:59:34',0),(65862,'2021-04-16 07:36:50','2021-05-11 05:18:25','f18682e4-b488-44d9-b007-2cadfee5fc56',1,'/content/Document/Palliative Care Collaborative Consumer Rep - EOI Form.docx','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Palliative Care Collaborative Consumer Rep - EOI Form.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 05:18:25',0),(65863,'2021-04-16 07:43:48','2021-04-30 17:31:18','f428e3f4-8218-4afe-8304-aaafd3d7e07c',1,'/content/Document/Network Link/Network Link_Sep2019_WEB.pdf','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Network Link/Network Link_Sep2019_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 17:31:18',0),(65864,'2021-04-16 07:45:25','2021-05-11 18:05:01','fc8d8a4a-3462-47c1-b6dc-1fe2b91e3081',1,'/content/Document/Brisbane MIND Provider List January 2019.pdf','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Brisbane MIND Provider List January 2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-11 18:05:01',0),(65865,'2021-04-16 07:49:34','2021-05-18 02:05:27','3d6f997b-6b4f-4911-a504-87b45b0d3245',1,'/content/Document/Pathways/Compounding Pharmacies.pdf','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Pathways/Compounding Pharmacies.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-18 02:05:27',0),(65866,'2021-04-16 07:51:57','2021-05-16 16:04:22','83e226ea-fbf2-4983-8324-3814cc98b12d',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/information-for-providers/contact/','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services/information-for-providers/contact','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 16:04:22',0),(65867,'2021-04-16 07:54:53','2021-04-24 07:25:44','655d9069-3427-4fca-bdea-ca105e54b3b1',1,'/page/news-and-events/latest-news/the-importance-of-recognising-frailty-in-primary-care','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/the-importance-of-recognising-frailty-in-primary-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 07:25:44',0),(65868,'2021-04-16 07:55:39','2021-04-16 07:55:39','d8f6e1f2-0cdb-4b89-b263-db41a7e90fb2',1,'/content/Document/Brisbane MIND Provider List November 2018(3).pdf','http://www.brisbanenorthphn.org.au/content/Document/Brisbane%20MIND%20Provider%20List%20November%202018(3).pdf','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/Brisbane MIND Provider List November 2018(3).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 07:55:39',0),(65869,'2021-04-16 07:57:02','2021-04-16 12:33:24','f44a65e9-a88a-4fe6-81da-c3e2cf6d6fb3',1,'/content/Document/Pathways/pathways_apixaban.pdf','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/pathways_apixaban.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-16 12:33:24',0),(65870,'2021-04-16 07:57:57','2021-05-18 13:59:29','d6b64951-9d2f-48ca-ba3a-1d364be4e7b3',1,'/page/health-professionals/community-care/dementia-care/1-system-integration/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/community-care/dementia-care/1-system-integration','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 13:59:29',0),(65871,'2021-04-16 08:06:43','2021-04-16 08:06:43','77149763-0d7a-4b2b-8de1-269d1c3cbe1f',1,'/content/Document/Primary care liaison/FOR_EOI_MA_Expression of Interest_FINAL_170717.pdf','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Primary care liaison/FOR_EOI_MA_Expression of Interest_FINAL_170717.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 08:06:43',0),(65872,'2021-04-16 08:07:17','2021-05-17 17:27:28','2f46af37-86af-49a7-a0ad-771ca2422855',1,'/page/news-and-events/events/upcoming/my-health-record-–-providing-care-in-the-community','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/my-health-record-–-providing-care-in-the-community','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-17 17:27:28',0),(65873,'2021-04-16 08:11:06','2021-04-26 17:07:13','dc21671b-01c3-4481-a3a0-4ca2dc047905',1,'/content/Document/Media Releases/150715_Funding boost for mental health.pdf','','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/Media Releases/150715_Funding boost for mental health.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-26 17:07:13',0),(65874,'2021-04-16 08:11:25','2021-05-11 00:15:00','0549b309-40fd-4679-a0ba-92634c984ef1',1,'/page/publications/partners-in-health/partners-in-health-july-2016','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/partners-in-health-july-2016','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-11 00:15:00',0),(65875,'2021-04-16 08:15:06','2021-04-16 08:15:06','de229f3e-037f-4219-9395-e8a051baa638',1,'/events/sti-and-bbv-nursing-an-introduction-1','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/sti-and-bbv-nursing-an-introduction-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 08:15:06',0),(65876,'2021-04-16 08:15:12','2021-05-17 10:43:18','db82f064-0597-4889-9510-ba9641eebd44',1,'/content/Document/SEQ Murri Service Directory v4_4 January 2017.pdf','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/SEQ Murri Service Directory v4_4 January 2017.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-17 10:43:18',0),(65877,'2021-04-16 08:19:42','2021-05-16 16:15:33','13a14d5b-4417-46d1-bc13-3dabfccc4ed8',1,'/page/news-and-events/events/upcoming/diabetes-management-for-health-professionals---webinar-series/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/diabetes-management-for-health-professionals---webinar-series','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 16:15:33',0),(65878,'2021-04-16 08:22:00','2021-05-18 07:54:12','9c92e63d-be7c-4d5e-ba33-5219a0aa5431',1,'/page/news-and-events/latest-news/trailblazer-aims-to-improve-indigenous-palliative-care-access','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/trailblazer-aims-to-improve-indigenous-palliative-care-access','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-18 07:54:12',0),(65879,'2021-04-16 08:25:58','2021-05-13 05:31:46','069e2d50-a6e1-4612-80b7-cf5b635c4e99',1,'/content/Document/Pathways/NVDPA-Managment-Guideline-Quick-Reference-Guide_Page 3.pdf','','93.158.161.75','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','Template not found: content/Document/Pathways/NVDPA-Managment-Guideline-Quick-Reference-Guide_Page 3.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-13 05:31:46',0),(65880,'2021-04-16 08:26:48','2021-05-16 16:24:24','0694ee34-fe1d-4e2e-a641-3946f976dd35',1,'/page/news-and-events/events/upcoming/how-to-deal-with-sexualised-behaviour-problems-in-childrens-lives/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/how-to-deal-with-sexualised-behaviour-problems-in-childrens-lives','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 16:24:24',0),(65881,'2021-04-16 08:30:54','2021-05-17 18:33:42','d0014108-4dcc-4424-a7d5-8e8cfc9acec9',1,'/content/Document/Pathways/Distinguishing Inferior Turbinate From Nasal Polyps.pdf','','93.158.161.26','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','Template not found: content/Document/Pathways/Distinguishing Inferior Turbinate From Nasal Polyps.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-17 18:33:42',0),(65882,'2021-04-16 08:31:01','2021-04-16 08:31:01','555362a6-f593-4bfc-b1c7-ea3f1b5a9529',1,'/content/Document/Templates/SaAS-Diabetes-REFERRAL-Outpatient Service Referral Form.doc','http://www.brisbanenorthphn.org.au/content/Document/Templates/SaAS-Diabetes-REFERRAL-Outpatient%20Service%20Referral%20Form.doc','35.225.91.148','Go-http-client/1.1','Template not found: content/Document/Templates/SaAS-Diabetes-REFERRAL-Outpatient Service Referral Form.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 08:31:01',0),(65883,'2021-04-16 08:33:41','2021-05-09 20:42:44','0833a7da-c6a1-4bb4-a64d-a1a930f1a981',1,'/content/Document/Paediatric Services Directory - Metro North District_FINAL_v4_1(2).pdf','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Paediatric Services Directory - Metro North District_FINAL_v4_1(2).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-09 20:42:44',0),(65884,'2021-04-16 08:35:13','2021-04-30 20:50:16','5e1aa2b7-8250-423a-9717-8f68c5a2bc74',1,'/jobs/general-practice-nurse-casual','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/general-practice-nurse-casual','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-30 20:50:16',0),(65885,'2021-04-16 08:36:57','2021-04-16 08:36:57','dd0891b3-4373-43f2-8e20-e346ab994d9b',1,'/page/news-and-events/events/upcoming/sterilisationseminar-teammedicalsupplies/','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/sterilisationseminar-teammedicalsupplies','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 08:36:57',0),(65886,'2021-04-16 08:39:21','2021-05-09 14:19:32','24942435-5cf6-4ffb-b898-6c7144a8dda9',1,'/page/news-and-events/2017-news/new-health-provider-portal-gives-gps-access-to-patient-records/','https://www.brisbanenorthphn.org.au/page/news-and-events/2017-news/new-health-provider-portal-gives-gps-access-to-patient-records/','65.21.159.190','WordPress/5.7.1; https://portalsbrain.com','Template not found: page/news-and-events/2017-news/new-health-provider-portal-gives-gps-access-to-patient-records','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-09 14:19:32',0),(65887,'2021-04-16 08:44:41','2021-05-06 18:46:41','5c27cc3e-a031-46eb-9255-e5740a573831',1,'/page/news-and-events/events/upcoming/advanced-training-in-suicide-prevention','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/advanced-training-in-suicide-prevention','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-06 18:46:41',0),(65888,'2021-04-16 08:52:27','2021-05-18 18:30:38','b63623a8-59ad-410b-8af2-3321670bd030',1,'/jobs/experienced-physiotherapist','','40.77.167.15','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/experienced-physiotherapist','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-18 18:30:38',0),(65889,'2021-04-16 08:52:35','2021-04-22 21:11:03','a5469726-f9da-41ec-a233-7432612488c5',1,'/page/news-and-events/2017-news/jeff-cheverton-memorial-scholarship-2018/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/news-and-events/2017-news/jeff-cheverton-memorial-scholarship-2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-22 21:11:03',0),(65890,'2021-04-16 08:54:30','2021-05-19 00:52:00','c0cd482a-29c0-4453-9ae3-6f87bdf08eaf',1,'/content/Document/Network Link/Network Link_6_June_2018_WEB.pdf','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Network Link/Network Link_6_June_2018_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-19 00:52:00',0),(65891,'2021-04-16 09:10:29','2021-05-03 04:40:19','1e0633fd-321c-486a-9663-18e4cbc24a14',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/information-for-providers/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services/information-for-providers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-03 04:40:19',0),(65892,'2021-04-16 09:18:28','2021-05-02 17:29:43','84e4260d-7fa5-4744-8459-14ab01a822db',1,'/page/news-and-events/events/upcoming/common-challenges-in-primary-care-haematology-shared-care/','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/common-challenges-in-primary-care-haematology-shared-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-02 17:29:43',0),(65893,'2021-04-16 09:20:30','2021-04-22 21:13:00','0e36ea91-9b04-42a0-b568-a776571a35f5',1,'/page/news-and-events/2017-news/community-control-remains-key-to-closing-the-gap/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/news-and-events/2017-news/community-control-remains-key-to-closing-the-gap','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-22 21:13:00',0),(65894,'2021-04-16 09:20:51','2021-05-07 09:27:48','55453a3b-265e-474c-8a16-9fc8550f2e78',1,'/content/Document/generalised-anxiety-disorder.pdf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/generalised-anxiety-disorder.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-07 09:27:48',0),(65895,'2021-04-16 09:23:29','2021-05-14 06:14:34','83f33940-42fa-462c-a092-57fe6dd2935c',1,'/content/Document/rediCASE Tip Sheet SP StartUpGuide_FINALJul17.docx','','66.249.69.63','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/rediCASE Tip Sheet SP StartUpGuide_FINALJul17.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-14 06:14:34',0),(65896,'2021-04-16 09:24:29','2021-05-18 00:48:21','ca930c46-45ff-4b77-bf22-5747a8a9f735',1,'/jobs/clinical-registered-nurse','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/clinical-registered-nurse','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,18,'2021-05-18 00:48:21',0),(65897,'2021-04-16 09:26:32','2021-05-03 06:35:36','902bb2dd-2d6e-4aef-ab1f-316b4ab5977b',1,'/page/news-and-events/latest-news/covid-19-information/covid-19-news-updates','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/covid-19-information/covid-19-news-updates','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-03 06:35:36',0),(65898,'2021-04-16 09:30:32','2021-05-14 03:26:50','fe60f7ff-bc8c-4007-aaf9-1817f2b8fc91',1,'/page/news-and-events/events/upcoming/dementia-essentials-providing-support-to-people-living-with-dementia-august-north-lakes','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/dementia-essentials-providing-support-to-people-living-with-dementia-august-north-lakes','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-14 03:26:50',0),(65899,'2021-04-16 09:36:55','2021-04-16 09:36:55','85d91725-c367-47ee-a860-b8b8ad21ff6a',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---griffin/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---griffin','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 09:36:55',0),(65900,'2021-04-16 09:42:54','2021-05-16 07:46:09','b6e5314f-5ce1-4867-bc3f-0a391261cec2',1,'/page/news-and-events/latest-news/my-health-record-at-pride-festival/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/my-health-record-at-pride-festival','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-16 07:46:09',0),(65901,'2021-04-16 09:44:33','2021-05-19 02:37:01','4bb82334-e759-4db2-b379-099cf3eeeb0c',1,'/events/hepatitis-c-in-nsp-settings','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/hepatitis-c-in-nsp-settings','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-19 02:37:01',0),(65902,'2021-04-16 09:52:34','2021-05-13 19:36:16','b30f8751-6e39-4bf8-8c64-d85658e80386',1,'/page/home/featurettes/health-service-directory/','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/home/featurettes/health-service-directory','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-13 19:36:16',0),(65903,'2021-04-16 09:55:11','2021-05-18 11:40:26','f98c162c-d4eb-49b6-953a-90790bd01821',1,'/page/news-and-events/events/archive/impacts-of-covid-19-on-youth-wellbeing---online-lunch-and-learn-meeting','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/impacts-of-covid-19-on-youth-wellbeing---online-lunch-and-learn-meeting','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 11:40:26',0),(65904,'2021-04-16 09:55:26','2021-04-16 09:55:26','dbc7c4c6-4694-48c1-93ac-85447dad8015',1,'/content/Document/Templates/4.7/MNHHS Redcliffe Referral PractiX v4_7.doc','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.7/MNHHS%20Redcliffe%20Referral%20PractiX%20v4_7.doc','35.225.91.148','Go-http-client/1.1','Template not found: content/Document/Templates/4.7/MNHHS Redcliffe Referral PractiX v4_7.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 09:55:26',0),(65905,'2021-04-16 09:57:01','2021-04-18 11:40:18','ecacaa17-0495-45b9-ab84-512d6ac44a02',1,'/content/Document/Templates/SaaS-CBRT-REFERRAL.doc','','35.225.91.148','Go-http-client/1.1','Template not found: content/Document/Templates/SaaS-CBRT-REFERRAL.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-18 11:40:18',0),(65906,'2021-04-16 10:01:20','2021-05-16 07:39:15','f14cf195-4aea-4872-abc5-8e8583c5c304',1,'/page/news-and-events/latest-news/gps-and-travellers-advised-to-be-aware-of-mers/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/gps-and-travellers-advised-to-be-aware-of-mers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 07:39:15',0),(65907,'2021-04-16 10:06:35','2021-05-17 10:20:53','ca27c854-1c4b-4a11-a171-821bfa266ce8',1,'/content/Document/Tuning_Fork_Instruction_Sheet.pdf','','66.220.149.16','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: content/Document/Tuning_Fork_Instruction_Sheet.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 10:20:53',0),(65908,'2021-04-16 10:15:02','2021-05-16 10:12:45','d33348da-5a65-4e4e-be4b-c89e14189f4f',1,'/jobs/locum-wanted-burpengary','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/locum-wanted-burpengary','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,15,'2021-05-16 10:12:45',0),(65909,'2021-04-16 10:16:20','2021-05-08 03:11:59','930f18ad-ea68-4c81-8e61-13268be7b9f9',1,'/content/Document/Brisbane North PHN Publications Schedule 2017-2018(1).docx','http://www.brisbanenorthphn.org.au/content/Document/Brisbane%20North%20PHN%20Publications%20Schedule%202017-2018(1).docx','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Brisbane North PHN Publications Schedule 2017-2018(1).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-08 03:11:59',0),(65910,'2021-04-16 10:16:54','2021-05-16 07:45:13','5da27502-93c4-4da5-8c77-0150a1a38225',1,'/page/news-and-events/latest-news/mental-health-expo-connects-community/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/mental-health-expo-connects-community','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-16 07:45:13',0),(65911,'2021-04-16 10:17:35','2021-04-20 10:23:05','a593cd1d-dc3a-4447-bc9a-97c906c90227',1,'/about/Y29tbWlzc2','','173.252.107.12','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: about/Y29tbWlzc2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-04-20 10:23:05',0),(65912,'2021-04-16 10:20:28','2021-04-25 07:08:42','c3ac8f36-b532-46b8-8e4c-cf68b35f8d49',1,'/content/Document/DRA_2016_MHSP_Needs Assessment(1).docx','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/DRA_2016_MHSP_Needs Assessment(1).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-25 07:08:42',0),(65913,'2021-04-16 10:23:36','2021-04-16 10:23:36','86292c8b-4309-43ee-8a2f-e25206bf1080',1,'/content/Document/EOI_Dementia Consumer and Carer Rep_210918.docx','http://www.brisbanenorthphn.org.au/content/Document/EOI_Dementia%20Consumer%20and%20Carer%20Rep_210918.docx','35.225.91.148','Go-http-client/1.1','Template not found: content/Document/EOI_Dementia Consumer and Carer Rep_210918.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 10:23:36',0),(65914,'2021-04-16 10:24:37','2021-05-18 18:05:20','16da3798-adfa-44bc-a9e0-f0c0c55d338e',1,'/page/news-and-events/latest-news/measles-alert-for-brisbane---12-july-2018/','','157.55.39.129','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/measles-alert-for-brisbane---12-july-2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-18 18:05:20',0),(65915,'2021-04-16 10:25:59','2021-05-09 04:19:12','6a8afb9f-0596-4c1e-8d3d-22281c76633f',1,'/content/Document/TCC_QLD Health Referral Form 20161108 HC.docx','http://www.brisbanenorthphn.org.au/content/Document/TCC_QLD%20Health%20Referral%20Form%2020161108%20HC.docx','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/TCC_QLD Health Referral Form 20161108 HC.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 04:19:12',0),(65916,'2021-04-16 10:27:44','2021-05-04 02:24:31','22f4be98-8afc-4e44-b10b-c85d8d7409d0',1,'/content/Document/Templates/4.12/PractiX v4.12/MNHHS Maternity PractiX v4_12.doc','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.12/PractiX v4.12/MNHHS Maternity PractiX v4_12.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-04 02:24:31',0),(65917,'2021-04-16 10:30:39','2021-04-16 10:30:39','3f4f6929-5a60-46dd-8fad-b9b626ff2ef7',1,'/page/news-and-events/latest-news/talking-can-be-healing-in-a-crisis','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/talking-can-be-healing-in-a-crisis','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 10:30:39',0),(65918,'2021-04-16 10:35:18','2021-05-16 18:08:21','69a9fbca-d671-45d7-9c08-acb3a6427572',1,'/content/Document/Events/2019/Invitation - immunisation catch up events for Nurses May 2019.pdf','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2019/Invitation - immunisation catch up events for Nurses May 2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 18:08:21',0),(65919,'2021-04-16 10:38:59','2021-05-16 18:19:43','1a1fbfd6-779e-4ca5-a111-2954c49e30f9',1,'/content/Document/Events/2018/ICIF-COPD-Project-GP-ALM-180317.pdf','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2018/ICIF-COPD-Project-GP-ALM-180317.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 18:19:43',0),(65920,'2021-04-16 10:38:59','2021-05-09 20:39:01','cb32a568-4231-4387-bfd0-7ba8d2e33877',1,'/page/news-and-events/latest-news/new-trial-brings-geriatric-specialist-input-into-racfs/','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/new-trial-brings-geriatric-specialist-input-into-racfs','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-09 20:39:01',0),(65921,'2021-04-16 10:43:12','2021-05-18 02:47:53','1db8358e-45a3-4144-a4fe-0ab6ffe876fe',1,'/page/news-and-events/events/upcoming/chronic-disease-management-2020-april/','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/chronic-disease-management-2020-april','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 02:47:53',0),(65922,'2021-04-16 10:44:48','2021-04-16 10:44:48','1d2f8620-32fc-4bc7-b454-5dcea795f129',1,'/page/health-professionals/Local Positions Vacant/medical-admin-and-reception-staff-required-morayfield-family-doctors/','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/medical-admin-and-reception-staff-required-morayfield-family-doctors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 10:44:48',0),(65923,'2021-04-16 10:45:39','2021-05-05 17:09:11','a802881b-222e-4177-b20e-6a6586114d79',1,'/content/Document/FIN_ITC AAWP_180613 WEB.pdf','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/FIN_ITC AAWP_180613 WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-05 17:09:11',0),(65924,'2021-04-16 10:48:55','2021-05-13 10:18:21','9bf8da44-74b3-4387-ade7-ba9db1ec8e92',1,'/jobs/v-r-gp-position-in-brighton','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/v-r-gp-position-in-brighton','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-13 10:18:21',0),(65925,'2021-04-16 10:51:04','2021-05-19 00:46:50','246104d8-a6b8-468c-92ff-1f189d4123dd',1,'/page/news-and-events/latest-news/my-health-record-now-available-for-nine-out-of-ten-of-your-patients','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/my-health-record-now-available-for-nine-out-of-ten-of-your-patients','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-19 00:46:50',0),(65926,'2021-04-16 10:53:06','2021-05-13 07:38:40','2420716c-dc3b-4cc9-8c32-6e50530e6f18',1,'/page/news-and-events/events/upcoming/advanced-life-support','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/advanced-life-support','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-13 07:38:40',0),(65927,'2021-04-16 10:55:34','2021-05-06 12:52:01','535bf86d-7dcc-4070-bafd-d355e1db73eb',1,'/content/Document/Templates/Dec Palliative care- hoist checklist 2016.pdf','http://www.brisbanenorthphn.org.au/content/Document/Templates/Dec%20Palliative%20care-%20hoist%20checklist%202016.pdf','35.186.188.225','Go-http-client/1.1','Template not found: content/Document/Templates/Dec Palliative care- hoist checklist 2016.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-06 12:52:01',0),(65928,'2021-04-16 10:57:11','2021-05-11 19:23:33','4872457c-99c3-40c9-b85f-42ba2ebde5aa',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---albion','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---albion','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-11 19:23:33',0),(65929,'2021-04-16 10:59:10','2021-04-16 10:59:10','00b9e747-3d57-4db6-ae6c-3fb7d5105d84',1,'/content/Document/FORM 3 - Incident Report.docx','http://www.brisbanenorthphn.org.au/content/Document/FORM%203%20-%20%20Incident%20Report.docx','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/FORM 3 - Incident Report.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 10:59:10',0),(65930,'2021-04-16 11:01:16','2021-05-13 20:11:39','51f066cb-9ff6-45dd-b70d-09d7da24333d',1,'/content/Document/Pathways/2. Using Nebulisers in Acute Asthma retyped.pdf','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/2. Using Nebulisers in Acute Asthma retyped.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-13 20:11:39',0),(65931,'2021-04-16 11:03:02','2021-05-12 05:25:31','ad7ef588-ace6-4a5e-99f8-1d6c7b2de016',1,'/page/home/quicklinks/contact-your-primary-care-liaison-officer','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/quicklinks/contact-your-primary-care-liaison-officer','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-12 05:25:31',0),(65932,'2021-04-16 11:07:03','2021-05-17 17:09:37','5300b7e4-3ad4-4475-a70f-1833877d6f81',1,'/content/Document/Alcohol and other drug services quick guide for GPs FINAL.pdf','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Alcohol and other drug services quick guide for GPs FINAL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-17 17:09:37',0),(65933,'2021-04-16 11:08:41','2021-04-16 11:08:41','11305dbf-eecc-4f23-a16a-79b610b302de',1,'/content/Document/Brisbane MIND Provider List_AUG 2015_V2 150804.pdf','http://www.brisbanenorthphn.org.au/content/Document/Brisbane%20MIND%20Provider%20List_AUG%202015_V2%20150804.pdf','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/Brisbane MIND Provider List_AUG 2015_V2 150804.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 11:08:41',0),(65934,'2021-04-16 11:13:09','2021-05-17 20:53:23','aeb5c418-981c-4b34-8ef9-5a9717fa06df',1,'/page/about/careers/project-lead-healthy-ageing','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/careers/project-lead-healthy-ageing','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-17 20:53:23',0),(65935,'2021-04-16 11:13:34','2021-05-12 18:35:41','5321378b-05c3-4927-a06c-13a89affb2a1',1,'/events/bjc-jam-virtual-session','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/bjc-jam-virtual-session','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-12 18:35:41',0),(65936,'2021-04-16 11:17:44','2021-05-13 22:40:30','d43d70e4-28be-4501-a38a-73e4cdf8606f',1,'/content/Document/Templates/SaAS-CCDT-REFERRAL.pdf','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Templates/SaAS-CCDT-REFERRAL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-13 22:40:30',0),(65937,'2021-04-16 11:20:13','2021-05-16 18:07:13','80b0790e-cf21-4968-86e2-1ce13b9b388b',1,'/page/news-and-events/events/archive/ashm-and-shsq-joint-clinical-meeting--conference-feedback-evening-hiv-prescriber-update/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/ashm-and-shsq-joint-clinical-meeting--conference-feedback-evening-hiv-prescriber-update','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 18:07:13',0),(65938,'2021-04-16 11:20:47','2021-04-16 11:20:47','60b33a05-8d67-48be-85a9-e70c7a4b126c',1,'/content/Document/Annual Mental Health Activity Work Plan 2016-2017.pdf','http://www.brisbanenorthphn.org.au/content/Document/Annual%20Mental%20Health%20Activity%20Work%20Plan%202016-2017.pdf','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/Annual Mental Health Activity Work Plan 2016-2017.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 11:20:47',0),(65939,'2021-04-16 11:23:31','2021-05-08 03:28:33','484d4e17-bf80-4db6-a0d0-6ebe61cd1ce5',1,'/content/Document/Pathways/Medication summary table- NPS ref.pdf','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Medication summary table- NPS ref.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-08 03:28:33',0),(65940,'2021-04-16 11:25:04','2021-05-15 17:58:06','568dad0a-fab7-4f3a-a1f0-f7f92fa8c251',1,'/page/home/featurettes','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/featurettes','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 17:58:06',0),(65941,'2021-04-16 11:26:52','2021-04-16 11:26:52','30583abb-60eb-4cd8-b738-061665932869',1,'/page/news-and-events/events/upcoming/type-1-diabetes---nursing-young-people','','207.46.13.106','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/type-1-diabetes---nursing-young-people','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 11:26:52',0),(65942,'2021-04-16 11:28:56','2021-04-29 04:47:27','f0257164-a910-4043-a848-210197e46ada',1,'/events/utilising-practice-tools-toowong-local-area-focus','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: events/utilising-practice-tools-toowong-local-area-focus','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-29 04:47:27',0),(65943,'2021-04-16 11:29:03','2021-05-14 19:19:48','a22ec217-a9dd-4131-87ec-6b6af181c7f1',1,'/page/news-and-events/latest-news/enrolments-are-high-for-health-care-homes-trial/','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/enrolments-are-high-for-health-care-homes-trial','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-14 19:19:48',0),(65944,'2021-04-16 11:37:11','2021-05-04 13:21:02','c9ca9128-bf1d-4f8a-9238-5d7ef8032f2f',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---bridgeman-downs','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---bridgeman-downs','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-04 13:21:02',0),(65945,'2021-04-16 11:43:11','2021-05-10 14:11:47','f40c5286-91d1-49af-a21e-b18e659cfb0a',1,'/content/Document/Network Link/Network_Link_June2020_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%20Link/Network_Link_June2020_WEB.pdf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Network Link/Network_Link_June2020_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-10 14:11:47',0),(65946,'2021-04-16 11:45:59','2021-05-16 18:44:54','50f329a6-b196-4282-851c-2c8dc6eff7cf',1,'/page/health-professionals/closing-the-gap/care-coordination-and-supplementary-services-ccss/','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/closing-the-gap/care-coordination-and-supplementary-services-ccss','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 18:44:54',0),(65947,'2021-04-16 11:47:09','2021-05-13 00:27:43','250d1716-69e1-4a02-b631-7471890d9e90',1,'/content/Document/Pathways/K10.pdf','','66.249.66.154','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Pathways/K10.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-13 00:27:43',0),(65948,'2021-04-16 11:47:15','2021-05-16 18:43:02','27a17834-8646-442e-a3d2-0bf28045d561',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---bribie-island/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---bribie-island','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 18:43:02',0),(65949,'2021-04-16 11:49:10','2021-05-10 22:51:03','5788bd34-a18c-4926-a8bb-df8ba20f4910',1,'/page/health-professionals/Local Positions Vacant/allied-health-professionals','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/allied-health-professionals','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-10 22:51:03',0),(65950,'2021-04-16 11:49:55','2021-04-22 00:36:28','3a256f90-30d0-488f-8d4f-02f16ddfcc8e',1,'/content/Document/NUBP Module Flyer 2018.docx','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/NUBP Module Flyer 2018.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-22 00:36:28',0),(65951,'2021-04-16 11:51:38','2021-05-17 18:24:14','89ec0472-0025-4ae4-9bf2-9b02f5f934d4',1,'/page/news-and-events/events/archive/supporting-mental-health-treatment-in-primary-care-emporium','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/supporting-mental-health-treatment-in-primary-care-emporium','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-17 18:24:14',0),(65952,'2021-04-16 12:03:21','2021-05-14 11:59:38','046f3137-ea52-4d33-9d7f-1ee3da193a80',1,'/feed','','3.26.101.176','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.1.2 Safari/603.3.8','Template not found: feed','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-14 11:59:38',0),(65953,'2021-04-16 12:11:30','2021-05-16 03:55:01','8b808964-1d0e-4966-a878-e1e021b2e7f0',1,'/content/Document/Pathways/pathways_dabigatran.pdf','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/pathways_dabigatran.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 03:55:01',0),(65954,'2021-04-16 12:13:30','2021-05-18 04:31:39','c67f1f0f-2145-43bf-a2f8-9f487de85baf',1,'/content/Document/Events/Cancer-Preceptorship-Program-2017_WEB.pdf','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Events/Cancer-Preceptorship-Program-2017_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-18 04:31:39',0),(65955,'2021-04-16 12:15:31','2021-05-10 05:41:39','1ee23ef9-9b8e-4a2f-a531-d2e19c1dfe8b',1,'/page/news-and-events/events/upcoming/creative-careers-in-medicine-conference/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/creative-careers-in-medicine-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-10 05:41:39',0),(65956,'2021-04-16 12:17:30','2021-05-11 07:33:30','d1d2ba72-acea-41ab-8fc7-123531071df3',1,'/page/home/quicklinks/brisbane-mind','','40.77.167.30','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/home/quicklinks/brisbane-mind','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 07:33:30',0),(65957,'2021-04-16 12:21:40','2021-05-01 23:48:30','2be5fa81-42e3-4f36-9360-0762466b1efb',1,'/page/news-and-events/latest-news/metro-north-health-forum-highlights-hidden-epidemic-in-maternity-care/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/metro-north-health-forum-highlights-hidden-epidemic-in-maternity-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 23:48:30',0),(65958,'2021-04-16 12:23:45','2021-05-17 02:22:15','38e0b90b-7dfe-43e1-8193-3629de12a5e4',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---albany-creek4','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---albany-creek4','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-17 02:22:15',0),(65959,'2021-04-16 12:27:42','2021-05-14 01:17:50','9053d80a-2d79-4664-ac7e-42b40b7698b3',1,'/page/news-and-events/latest-news/one-year-on-from-geriatric-outreach-assessment-service-trial','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/one-year-on-from-geriatric-outreach-assessment-service-trial','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-14 01:17:50',0),(65960,'2021-04-16 12:27:45','2021-04-18 09:05:42','8c20ca56-2dbb-42a6-9fe6-143bc2c4630f',1,'/page/news-and-events/events/archive/free-hepatitis-training-for-alcohol-and-drug-services/','','207.46.13.11','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/free-hepatitis-training-for-alcohol-and-drug-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-18 09:05:42',0),(65961,'2021-04-16 12:29:30','2021-05-18 01:15:44','d9f10479-2e47-4765-bec2-468115ac13cc',1,'/content/Document/Events/Hospital Community Forum flyer 02 Feb 2016.pdf','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Events/Hospital Community Forum flyer 02 Feb 2016.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 01:15:44',0),(65962,'2021-04-16 12:31:58','2021-04-16 12:31:58','5b7c7254-c964-4b24-90d5-4a94b0e3da03',1,'/page/news-and-events/events/upcoming/regional-private-practice-seminar-performance-management-nov','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/regional-private-practice-seminar-performance-management-nov','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 12:31:58',0),(65963,'2021-04-16 12:32:09','2021-04-24 12:50:59','625f7474-f79a-4c94-8981-0d1143e4b943',1,'/content/Document/dosing-regimens.pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/dosing-regimens.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 12:50:59',0),(65964,'2021-04-16 12:35:40','2021-05-01 12:42:48','7bde5429-ca52-4036-83fb-5e2c4dbc7328',1,'/page/health-professionals/referral-and-patient-management/directories/service-navigator','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/referral-and-patient-management/directories/service-navigator','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 12:42:48',0),(65965,'2021-04-16 12:36:20','2021-05-17 20:24:26','517d0f90-44cd-4362-a9fa-700bdc0fea19',1,'/page/news-and-events/latest-news/new-graduate-reflects-on-a-conference-that-connects/','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/new-graduate-reflects-on-a-conference-that-connects','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-17 20:24:26',0),(65966,'2021-04-16 12:41:31','2021-05-16 11:20:09','f7cc05d0-f2ba-46f6-ba21-9b3ae0268058',1,'/yearinreview/2017-18/closing-the-gap-in-indigenous-health/www.brisbanenorthphn.org.au','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/closing-the-gap-in-indigenous-health/www.brisbanenorthphn.org.au','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 11:20:09',0),(65967,'2021-04-16 12:44:54','2021-05-17 10:04:34','a3803057-58c5-47d6-beb5-961adfb7366d',1,'/content/Document/Planning/FINAL_AAWP_ Drug and Alcohol Treatment AWP_170717 WEBSITE.docx','','157.55.39.23','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Planning/FINAL_AAWP_ Drug and Alcohol Treatment AWP_170717 WEBSITE.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-17 10:04:34',0),(65968,'2021-04-16 12:49:32','2021-05-10 16:21:53','60007e80-b8cd-450d-903f-c9a1c6b285b7',1,'/page/news-and-events/latest-news/copd-project-continues-to-roll-out-in-2018/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/copd-project-continues-to-roll-out-in-2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-10 16:21:53',0),(65969,'2021-04-16 12:53:35','2021-05-13 08:44:24','a6202072-04d7-4d79-961c-c6e181c364d6',1,'/content/Document/Pathways/Tips On Taking A Wound Swab.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/Tips%20On%20Taking%20A%20Wound%20Swab.pdf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Pathways/Tips On Taking A Wound Swab.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-13 08:44:24',0),(65970,'2021-04-16 12:56:53','2021-04-16 12:56:53','2061ef21-0898-4748-bfc5-d9d32415868f',1,'/content/Document/Templates/5.2/MNHHS Caboolture Referral v5_2 MD.rtf','','207.46.13.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/5.2/MNHHS Caboolture Referral v5_2 MD.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 12:56:53',0),(65971,'2021-04-16 12:57:34','2021-05-16 01:30:47','975817b1-04be-4642-a1c4-0c14beb9794f',1,'/page/health-professionals/Local Positions Vacant/practice-nurse-nundah','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse-nundah','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,14,'2021-05-16 01:30:47',0),(65972,'2021-04-16 13:07:42','2021-05-16 19:33:40','34180ec3-9b39-4b52-82b8-2d6e1d596f07',1,'/news/mapping-path-better-patient-care','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: news/mapping-path-better-patient-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 19:33:40',0),(65973,'2021-04-16 13:07:45','2021-04-16 13:07:45','c1ec79cd-a0bc-44a6-9ae1-86b0493a0e6f',1,'/content/Document/Pathways/Risk factors for suicide.pdf','','207.46.13.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/Risk factors for suicide.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 13:07:45',0),(65974,'2021-04-16 13:12:46','2021-04-16 13:12:46','215e3490-3739-4928-b40a-9bfa747cc90e',1,'/page/news-and-events/events/upcoming/hepatitis-c-new-treatments-course/','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/hepatitis-c-new-treatments-course','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 13:12:46',0),(65975,'2021-04-16 13:13:32','2021-05-18 10:06:49','a7889938-a586-4f70-b139-31f355ead47e',1,'/events/sexual-and-reproductive-health-and-covid-19-1','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/sexual-and-reproductive-health-and-covid-19-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 10:06:49',0),(65976,'2021-04-16 13:14:08','2021-04-30 07:53:41','0c33cf6a-f581-4dbd-ac68-aebe8490a039',1,'/content/Document/Aged and community care/FINAL GOAS REPORT v4 180820.docx','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Aged and community care/FINAL GOAS REPORT v4 180820.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 07:53:41',0),(65977,'2021-04-16 13:15:31','2021-04-29 04:37:33','b17e0295-0ad0-4c0c-acb2-1e5565933054',1,'/page/news-and-events/events/upcoming/ama-queensland-annual-conference-2019','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/ama-queensland-annual-conference-2019','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-29 04:37:33',0),(65978,'2021-04-16 13:16:52','2021-05-02 18:44:28','10035950-577d-4630-9bdf-b145888fd24b',1,'/content/Document/Templates/Brisbane MIND/Brisbane MIND Quick Guide for GPs (2015-16)_WEB.pdf','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Templates/Brisbane MIND/Brisbane MIND Quick Guide for GPs (2015-16)_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-02 18:44:28',0),(65979,'2021-04-16 13:17:31','2021-04-29 03:49:08','449f43ea-7564-4497-a624-9be3f3054bba',1,'/page/health-professionals/immunisation/resources/immunisation-updates','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/immunisation/resources/immunisation-updates','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-29 03:49:08',0),(65980,'2021-04-16 13:23:32','2021-04-16 13:23:32','3557a856-0a31-4f62-8237-f6a34dff8d64',1,'/page/news-and-events/events/upcoming/domestic-violence-seminar-series---non-lethal-strangulation-best-practice-medical-responses ','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/domestic-violence-seminar-series---non-lethal-strangulation-best-practice-medical-responses ','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 13:23:32',0),(65981,'2021-04-16 13:37:59','2021-05-08 07:24:13','08df00cf-4a6e-4900-8670-f4087df1fe21',1,'/content/Media/180424_MR_PHN responds to anti-vax misinformation.pdf','','66.249.69.33','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Media/180424_MR_PHN responds to anti-vax misinformation.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-08 07:24:13',0),(65982,'2021-04-16 13:39:32','2021-05-18 12:01:06','f9465317-652b-420f-9cf0-6b478a0d322f',1,'/page/news-and-events/events/upcoming/general-practice-pharmacist-training','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/general-practice-pharmacist-training','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-18 12:01:06',0),(65983,'2021-04-16 13:47:32','2021-05-16 16:59:52','5c95d5d9-73b8-4c92-99a8-f724a49d6e58',1,'/content/Document/Pathways/Medical eligibilty criteria for Contraceptive use_pg 25.pdf','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Medical eligibilty criteria for Contraceptive use_pg 25.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 16:59:52',0),(65984,'2021-04-16 14:01:36','2021-05-14 02:20:13','ec3d72c1-3921-4eaa-b210-29af8c1fc518',1,'/content/Document/Events/2018/Good Life Good Death expo 2018 - Program.pdf','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Events/2018/Good Life Good Death expo 2018 - Program.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-14 02:20:13',0),(65985,'2021-04-16 14:02:25','2021-04-30 05:32:16','a67dfabd-a38a-41f1-909e-7a328423956f',1,'/content/Document/Pathways/OSiP Direct Referral Catchment and Ref Criteria Combined v1.pdf','','35.167.74.139','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36','Template not found: content/Document/Pathways/OSiP Direct Referral Catchment and Ref Criteria Combined v1.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-04-30 05:32:16',0),(65986,'2021-04-16 14:03:47','2021-05-10 12:05:30','e2b1cd30-b386-4476-8fd0-7d4b77e0b41d',1,'/content/Document/Planning/2015-16HNA_SubmissiontoDOH.docx','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Planning/2015-16HNA_SubmissiontoDOH.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-10 12:05:30',0),(65987,'2021-04-16 14:17:47','2021-04-16 14:17:47','41f819fb-3b0a-4137-b8a4-a7f477f4ab85',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---carseldine/','','207.46.13.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---carseldine','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 14:17:47',0),(65988,'2021-04-16 14:19:48','2021-05-12 04:48:41','91d0cdd9-b021-470d-8d54-4cab8e6bfb42',1,'/content/Document/EXAMPLE GPMP Combined 721.pdf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/EXAMPLE GPMP Combined 721.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-12 04:48:41',0),(65989,'2021-04-16 14:21:32','2021-05-13 05:36:02','18a1f7ed-465a-4ae3-9bd6-dcf53faced25',1,'/events/wound-education-and-clinical-support-program-for-nurses-part-2','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/wound-education-and-clinical-support-program-for-nurses-part-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-13 05:36:02',0),(65990,'2021-04-16 14:22:25','2021-05-16 21:44:15','cd633264-9797-4e3e-90b8-36bf7e5b6d38',1,'/page/about/careers/casual-reception-pool-staff/','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers/casual-reception-pool-staff','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 21:44:15',0),(65991,'2021-04-16 14:31:32','2021-04-28 22:28:27','da742f76-b73a-4a22-b96c-e25eb0fa2fa4',1,'/page/news-and-events/metro-north-health-forum/2018-metro-north-health-forum/people-vs-machines-and-the-future-of-healthcare','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/metro-north-health-forum/2018-metro-north-health-forum/people-vs-machines-and-the-future-of-healthcare','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-28 22:28:27',0),(65992,'2021-04-16 14:33:32','2021-05-01 23:24:00','78b847a9-6263-413a-a47f-813fefab813d',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-beachmere-gp','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-beachmere-gp','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 23:24:00',0),(65993,'2021-04-16 14:35:32','2021-05-15 08:58:50','1bf54d52-9600-4cdb-bc2f-daa373d15eb8',1,'/page/news-and-events/events/upcoming/migrant-and-refugee-reproductive-and-sexual-health-culturally-responsive-clinical-practice/','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/migrant-and-refugee-reproductive-and-sexual-health-culturally-responsive-clinical-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-15 08:58:50',0),(65994,'2021-04-16 14:39:32','2021-05-13 01:26:07','4ac10cf6-0420-4228-8692-05964d9c46ef',1,'/page/news-and-events/latest-news/a-new-look-brisbane-mind-model/','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/a-new-look-brisbane-mind-model','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-13 01:26:07',0),(65995,'2021-04-16 14:39:58','2021-05-01 14:46:25','23ebe386-cefe-499d-8839-4e85e56e0e49',1,'//vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','162.210.192.116','python-requests/2.25.1','Template not found: vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 14:46:25',0),(65996,'2021-04-16 14:48:31','2021-05-16 22:10:22','08e155af-0d12-4b8e-9649-959d61ee5dd0',1,'/content/Document/Templates/5.2/MNHHS Paediatric Referral v5_2 ZM.rtf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/5.2/MNHHS Paediatric Referral v5_2 ZM.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 22:10:22',0),(65997,'2021-04-16 14:50:35','2021-05-13 02:13:31','59578cff-58fc-411d-a746-ce9686b4b589',1,'/content/Document/Templates/SaAS-ACAT-INFOSHEET.pdf','','66.249.66.153','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Templates/SaAS-ACAT-INFOSHEET.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-13 02:13:31',0),(65998,'2021-04-16 14:50:45','2021-05-16 07:50:28','7ff6218a-f38c-4620-832d-9329907f31a1',1,'/page/news-and-events/events/upcoming/cancer-preceptorship-for-general-practitioners/','','148.251.9.145','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/cancer-preceptorship-for-general-practitioners','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 07:50:28',0),(65999,'2021-04-16 14:50:56','2021-05-16 07:50:40','8f29f297-6eb1-45d5-ba2f-8703874f6e5c',1,'/page/news-and-events/events/upcoming/cardiovascular---november-gp-education-evening/','','148.251.9.145','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/cardiovascular---november-gp-education-evening','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 07:50:40',0),(66000,'2021-04-16 14:55:37','2021-04-26 05:03:39','1e63011c-8256-41aa-9abd-20aac2f1f727',1,'/content/Image/Events/PiR forum Nov 2017 Dr Chris landscape.jpg','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Events/PiR forum Nov 2017 Dr Chris landscape.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-26 05:03:39',0),(66001,'2021-04-16 14:57:32','2021-05-10 01:04:04','a727c4ce-bf48-4689-9379-16d0541595db',1,'/events/paediatric-masterclass-for-general-practice-primary-school-years-part-2','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/paediatric-masterclass-for-general-practice-primary-school-years-part-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 01:04:04',0),(66002,'2021-04-16 14:59:32','2021-05-17 00:52:39','3cb5b283-c4db-4874-b2e1-16cd700cda68',1,'/page/health-professionals','','143.244.46.101','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.115 Safari/537.36','Template not found: page/health-professionals','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,19,'2021-05-17 00:52:39',0),(66003,'2021-04-16 15:00:02','2021-04-24 00:40:55','d407edcc-13f4-448b-906a-6759de7a7969',1,'/content/Document/Planning/FIN_AAWP_Primary Mental Health Care 18-19_181122 RACF WEB(1).docx','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Planning/FIN_AAWP_Primary Mental Health Care 18-19_181122 RACF WEB(1).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 00:40:55',0),(66004,'2021-04-16 15:03:32','2021-05-18 14:25:26','ee6683b8-db36-48fa-a1ea-90c98c5c403b',1,'/page/news-and-events/events/upcoming/wesley-lifeforce-suicide-prevention-gp-and-nurse-workshop---ashgrove','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/wesley-lifeforce-suicide-prevention-gp-and-nurse-workshop---ashgrove','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-18 14:25:26',0),(66005,'2021-04-16 15:05:32','2021-05-18 06:54:56','1fa68629-c6a5-4ab1-b35f-0a1994a5aaed',1,'/page/home/banners/banner-4','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/banners/banner-4','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 06:54:56',0),(66006,'2021-04-16 15:05:39','2021-04-17 20:23:49','06a64e28-c127-4ae3-92cb-90f269197296',1,'/content/Document/Pathways/LINK I Community Aged Care Orgs helping older people.pdf','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/LINK I Community Aged Care Orgs helping older people.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-17 20:23:49',0),(66007,'2021-04-16 15:09:54','2021-05-14 23:56:29','e2de3810-455d-43ef-bdb2-ae1de86d774b',1,'/content/Document/Templates/SaAS-CBRT-INFOSHEET.pdf','','1.132.18.160','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','Template not found: content/Document/Templates/SaAS-CBRT-INFOSHEET.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,15,'2021-05-14 23:56:29',0),(66008,'2021-04-16 15:23:57','2021-04-16 15:23:57','513de354-f377-48ee-93af-5adac2aa75bf',1,'/page/Home/healthforum2014/','','173.252.107.15','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: page/Home/healthforum2014','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-16 15:23:57',0),(66009,'2021-04-16 15:25:39','2021-05-17 19:46:35','0659cb71-b7ed-4e52-a817-0ccaa7803c88',1,'/page/news-and-events/latest-news/the-practice-incentives-program-is-starting-in-august-2019','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/the-practice-incentives-program-is-starting-in-august-2019','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 19:46:35',0),(66010,'2021-04-16 15:27:01','2021-04-16 15:27:01','df0a7f39-dbdf-463f-9871-09208f66ceff',1,'/content/Document/Pathways/Link V_First line drugs for depression.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/Link%20V_First%20line%20drugs%20for%20depression.pdf','35.225.91.148','Go-http-client/1.1','Template not found: content/Document/Pathways/Link V_First line drugs for depression.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 15:27:01',0),(66011,'2021-04-16 15:31:38','2021-04-19 23:47:19','72b18c8f-d26c-4170-9955-14e31bbcc86a',1,'/events/2020-asthma-webcast-series','','207.46.13.38','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/2020-asthma-webcast-series','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-19 23:47:19',0),(66012,'2021-04-16 15:33:18','2021-05-16 22:19:55','2912ce6e-37db-477a-9d3b-f2cf1f9548c8',1,'/content/Document/Primary care liaison/Specialists List_RBWH_6_2.pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Primary care liaison/Specialists List_RBWH_6_2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 22:19:55',0),(66013,'2021-04-16 15:33:32','2021-05-14 01:03:27','d177b3fb-126b-44fb-a58d-613488295245',1,'/page/health-professionals/mental-health-services/services-for-people-with-severe-mental-illness','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/services-for-people-with-severe-mental-illness','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-14 01:03:27',0),(66014,'2021-04-16 15:38:03','2021-05-17 10:01:42','0ec7565a-5b97-4c7c-b9b4-fdac1f66450e',1,'/content/Document/Pathways/Table 3_ Common Gait Patterns in Older Adults.pdf','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Table 3_ Common Gait Patterns in Older Adults.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,15,'2021-05-17 10:01:42',0),(66015,'2021-04-16 15:39:50','2021-05-18 21:18:12','afb0783d-45b7-4bd3-926c-a3856cba5566',1,'/content/Document/obsessive-compulsive-disorder.pdf','','157.55.39.116','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/obsessive-compulsive-disorder.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-18 21:18:12',0),(66016,'2021-04-16 15:42:21','2021-04-24 08:03:39','15808b71-491b-49a1-9ae7-fe1bdf860e1f',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---kallangur/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---kallangur','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-24 08:03:39',0),(66017,'2021-04-16 15:43:37','2021-05-16 07:51:21','00ecf595-3e66-4f86-891c-096d181714fb',1,'/page/news-and-events/latest-news/talk-to-your-patients-about-heart-health-during-heart-week/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/talk-to-your-patients-about-heart-health-during-heart-week','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 07:51:21',0),(66018,'2021-04-16 15:45:39','2021-05-05 23:45:42','298c36fe-de15-4f89-a47a-6329c6d2e184',1,'/page/news-and-events/events/upcoming/Redicase-training-february/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/Redicase-training-february','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-05 23:45:42',0),(66019,'2021-04-16 15:54:47','2021-04-24 07:35:01','d456c26c-54f0-4524-a919-5a49df3558cd',1,'/page/health-professionals/directories/service-navigator/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/directories/service-navigator','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 07:35:01',0),(66020,'2021-04-16 15:56:59','2021-04-16 15:56:59','e7d65f88-84a0-4ebc-b7c4-a05ad0ea59de',1,'/page/news-and-events/events/archive/suicide-prevention-care-pathways-project-sector-workshop-kilcoy/','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/archive/suicide-prevention-care-pathways-project-sector-workshop-kilcoy','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 15:56:59',0),(66021,'2021-04-16 16:01:39','2021-05-16 01:19:44','3caaaecf-08d2-4f69-9bd7-e6df47b46d9f',1,'/page/news-and-events/latest-news/integrated-suicide-prevention-initiatives-aim-to-save-lives','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/integrated-suicide-prevention-initiatives-aim-to-save-lives','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 01:19:44',0),(66022,'2021-04-16 16:04:14','2021-05-08 15:35:48','865b58e5-2225-4cdd-921d-e5ee73b569ba',1,'/content/Document/Pathways/recommendation for assessment.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/recommendation%20for%20assessment.pdf','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/Pathways/recommendation for assessment.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-08 15:35:48',0),(66023,'2021-04-16 16:06:38','2021-04-16 16:06:38','6dac9a88-1d6d-4493-9c2e-5868da2456c0',1,'/content/Document/MNHF presentations 2017/Les Toop - Unpicking the Health Care Home Model 170531.pdf','http://www.brisbanenorthphn.org.au/content/Document/MNHF%20presentations%202017/Les%20Toop%20-%20Unpicking%20the%20Health%20Care%20Home%20Model%20170531.pdf','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/MNHF presentations 2017/Les Toop - Unpicking the Health Care Home Model 170531.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 16:06:38',0),(66024,'2021-04-16 16:08:37','2021-04-16 16:08:37','da822b33-4a76-44bd-a258-144435ce075c',1,'/content/Document/PROP_DoH - PHN - 2016-17 Activity Work Plan Template - Integrated Team Care_Publishing_100117.docx','http://www.brisbanenorthphn.org.au/content/Document/PROP_DoH%20-%20PHN%20-%202016-17%20Activity%20Work%20Plan%20Template%20-%20Integrated%20Team%20Care_Publishing_100117.docx','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/PROP_DoH - PHN - 2016-17 Activity Work Plan Template - Integrated Team Care_Publishing_100117.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 16:08:37',0),(66025,'2021-04-16 16:22:28','2021-04-16 16:22:28','0a155c81-e920-4f90-b153-21b017847108',1,'/components/com_jbusinessdirectory/assets/upload.php','http://www.google.com/','23.228.109.147','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2896.3 Safari/537.36','Template not found: components/com_jbusinessdirectory/assets/upload.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 16:22:28',0),(66026,'2021-04-16 16:26:02','2021-04-18 16:34:57','0bbf1a1e-86eb-4bbe-9ba7-b5e237e9e7ee',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---midway-medical-centre/','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---midway-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-18 16:34:57',0),(66027,'2021-04-16 16:26:38','2021-04-16 16:26:38','4df9dc2f-2a44-4cc1-8f89-ceeceb086497',1,'/content/Document/Engagement/EOI_CC_BNPHN_1902.pdf','http://www.brisbanenorthphn.org.au/content/Document/Engagement/EOI_CC_BNPHN_1902.pdf','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/Engagement/EOI_CC_BNPHN_1902.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 16:26:38',0),(66028,'2021-04-16 16:27:33','2021-05-17 16:51:57','7279902c-d452-4e53-8904-0b5d7e20d2db',1,'/page/news-and-events/events/archive/workforce-capacity-building-self-care-and-self-compassion','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/workforce-capacity-building-self-care-and-self-compassion','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-17 16:51:57',0),(66029,'2021-04-16 16:31:11','2021-04-18 09:51:15','ba94d43a-ef49-4bb5-a76e-d5a765973348',1,'/content/Document/Templates/SaAS-Diabetes-REFERRAL-High Risk Foot Referral Form.doc','','207.46.13.11','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/SaAS-Diabetes-REFERRAL-High Risk Foot Referral Form.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-18 09:51:15',0),(66030,'2021-04-16 16:31:32','2021-05-04 22:38:46','ca1bd563-dc1e-43ce-9f2a-fa7db0316dfb',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---fortitude-valley','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---fortitude-valley','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-04 22:38:46',0),(66031,'2021-04-16 16:38:58','2021-05-04 16:21:54','62940e5c-cd1f-4d99-8d09-911dcd9dd9bd',1,'/content/Document/MHAOD_Recovery_newsletter_February_2018_web.pdf','','178.63.51.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1 Safari/605.1.15','Template not found: content/Document/MHAOD_Recovery_newsletter_February_2018_web.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-04 16:21:54',0),(66032,'2021-04-16 16:44:55','2021-04-16 16:44:55','3a0a1dab-74b3-440e-a2a4-09bdbff14bd5',1,'/page/news-and-events/latest-news/phn-appoints-libby-dunstan-as-deputy-ceo/','','173.252.111.2','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: page/news-and-events/latest-news/phn-appoints-libby-dunstan-as-deputy-ceo','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-16 16:44:55',0),(66033,'2021-04-16 16:46:21','2021-04-18 08:52:40','37058036-722d-4d85-baf8-11cd68a2c9cc',1,'/content/Document/bmind_quickreference.pdf','','207.46.13.11','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/bmind_quickreference.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-18 08:52:40',0),(66034,'2021-04-16 16:49:39','2021-05-17 18:01:29','d60ff860-fd64-4503-bf42-548b035e6898',1,'/page/health-professionals/referral-and-patient-management/directories/other-directories/','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/referral-and-patient-management/directories/other-directories','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-17 18:01:29',0),(66035,'2021-04-16 16:52:06','2021-05-09 11:47:08','8cb97312-f6fb-4d26-a76d-74ba6ba35288',1,'/events/telehealth-for-rural-specialists-and-their-patients-rdaa','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/telehealth-for-rural-specialists-and-their-patients-rdaa','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-09 11:47:08',0),(66036,'2021-04-16 16:54:27','2021-05-13 07:45:05','6cd51d6d-1963-4d23-bd3b-b4c568c2b4d4',1,'/content/Document/Paediatric Services Directory - Metro North District_FINAL_v4_1.docx','','66.249.66.153','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Paediatric Services Directory - Metro North District_FINAL_v4_1.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 07:45:05',0),(66037,'2021-04-16 17:01:33','2021-05-14 15:09:32','271bf31c-0eb2-4dd8-ab80-9ba33b3924b0',1,'/page/news-and-events/events/archive/chronic-conditions-in-community-and-aged-care','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/chronic-conditions-in-community-and-aged-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-14 15:09:32',0),(66038,'2021-04-16 17:01:59','2021-05-11 20:53:34','b4e1dc1f-d42f-4273-a4f1-d2625be5ea5c',1,'/dns-query','','161.117.239.46','Go-http-client/1.1','Template not found: dns-query','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,32,'2021-05-11 20:53:34',0),(66039,'2021-04-16 17:03:33','2021-05-16 22:54:15','4c760a4b-fef4-46c5-b995-7d4c83c8972c',1,'/content/Document/Pathways/Involuntary assessment.pdf','','175.36.85.60','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Safari/605.1.15','Template not found: content/Document/Pathways/Involuntary assessment.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-16 22:54:15',0),(66040,'2021-04-16 17:09:32','2021-05-17 02:10:36','f939415d-974d-40a4-9ccf-06cf077515ba',1,'/page/news-and-events/events/upcoming/support-before-and-after-death/','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/support-before-and-after-death','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-17 02:10:36',0),(66041,'2021-04-16 17:11:33','2021-05-15 01:39:03','7013dacc-01c0-433c-b6df-7cb085f3e199',1,'/page/news-and-events/events/archive/sti-and-bbv-nursing-an-introduction/','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/sti-and-bbv-nursing-an-introduction','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 01:39:03',0),(66042,'2021-04-16 17:13:33','2021-04-16 17:13:33','5183bf1d-bacb-48f7-9d8f-f985d6dcf71d',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---lawnton','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---lawnton','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 17:13:33',0),(66043,'2021-04-16 17:15:33','2021-04-16 17:15:33','4cc86d8a-6df0-4b77-b6ed-78169db3d66e',1,'/content/Document/Pathways/Cluster Headache_prophylaxis table.pdf','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Cluster Headache_prophylaxis table.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 17:15:33',0),(66044,'2021-04-16 17:17:25','2021-05-07 16:26:14','da004621-ddfe-4595-9026-7ee97e8c2d71',1,'/content/Document/Reports/FIN_AWP Core AWP 2019-22 190531 WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Reports/FIN_AWP%20Core%20AWP%202019-22%20190531%20WEB.pdf','34.73.187.226','Go-http-client/1.1','Template not found: content/Document/Reports/FIN_AWP Core AWP 2019-22 190531 WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-07 16:26:14',0),(66045,'2021-04-16 17:19:34','2021-05-16 01:10:14','fce62dae-9b5b-4049-838e-990b451bf2f7',1,'/page/news-and-events/events/archive/metro-north-health-forum','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/metro-north-health-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 01:10:14',0),(66046,'2021-04-16 17:21:33','2021-04-28 11:27:32','24759d47-df9d-475b-bffe-1842d74cf8f8',1,'/page/publications/partners-in-health','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-28 11:27:32',0),(66047,'2021-04-16 17:21:39','2021-05-16 13:58:57','672764fc-14af-470d-b8c3-9ac77e8719ec',1,'/page/about/commissioning/dist/swiper.js','https://www.brisbanenorthphn.org.au/page/about/commissioning/consortium-and-commissioning-toolkit/','66.249.69.63','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/about/commissioning/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,27,'2021-05-16 13:58:57',0),(66048,'2021-04-16 17:24:02','2021-05-09 10:05:33','3d1034e1-bcff-43f6-aecf-79428b5d7b1e',1,'/CHANGELOG.txt','','206.189.43.46','Drupal/8.9.15 (+https://www.drupal.org/) GuzzleHttp/6.5.5 curl/7.29.0 PHP/7.3.28','Template not found: CHANGELOG.txt','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-09 10:05:33',0),(66049,'2021-04-16 17:24:07','2021-05-09 10:05:34','051cef08-aad4-40ff-b34b-0597e229766c',1,'/license.txt','','206.189.43.46','Drupal/8.9.15 (+https://www.drupal.org/) GuzzleHttp/6.5.5 curl/7.29.0 PHP/7.3.28','Template not found: license.txt','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-09 10:05:34',0),(66050,'2021-04-16 17:24:36','2021-05-09 10:05:35','ee0bfaaa-862b-44df-a89f-03afa244b8eb',1,'/media/system/js/core.js','','206.189.43.46','Drupal/8.9.15 (+https://www.drupal.org/) GuzzleHttp/6.5.5 curl/7.29.0 PHP/7.3.28','Template not found: media/system/js/core.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-09 10:05:35',0),(66051,'2021-04-16 17:27:14','2021-04-16 17:27:14','ce885c38-152a-4bed-8732-4fac76aca194',1,'/page/news-and-events/events/upcoming/rheumatology-in-primary-care/','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/rheumatology-in-primary-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 17:27:14',0),(66052,'2021-04-16 17:31:33','2021-05-09 21:55:52','2c5a1f66-01d2-4a02-8bdb-977018996f29',1,'/page/news-and-events/events/archive/redicase-training-june','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/redicase-training-june','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-09 21:55:52',0),(66053,'2021-04-16 17:33:34','2021-05-13 17:05:09','403d15a5-3829-4e3f-be60-cac64f43ca10',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-caboolture-3','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-caboolture-3','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-13 17:05:09',0),(66054,'2021-04-16 17:37:21','2021-04-16 17:37:21','a04b4647-db56-46f1-8896-dccad99dc57a',1,'/yearinreview/2017-18/','','66.249.68.5','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: yearinreview/2017-18','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 17:37:21',0),(66055,'2021-04-16 17:47:13','2021-04-17 07:38:23','c65d5bd2-ff5a-4e42-b28b-569e214887a3',1,'/events/cardiac-care-ecg-interpretation-made-easy','','207.46.13.49','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/cardiac-care-ecg-interpretation-made-easy','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-17 07:38:23',0),(66056,'2021-04-16 17:47:33','2021-04-30 21:03:38','d9d5ff10-04c5-4ea7-802b-019ff0d4994d',1,'/yearinreview/2017-18/a-strategic-alliance-with-our-local-hospital-services/www.brisbanenorthphn.org.au','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/a-strategic-alliance-with-our-local-hospital-services/www.brisbanenorthphn.org.au','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-30 21:03:38',0),(66057,'2021-04-16 17:49:33','2021-04-28 08:51:25','aa8ded76-5c43-4b28-961e-c79dd2e7371c',1,'/page/news-and-events/latest-news/support-for-dementia-action-week/','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/support-for-dementia-action-week','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-28 08:51:25',0),(66058,'2021-04-16 17:51:33','2021-05-18 23:47:20','463cf3b9-3a00-4926-9d35-0cdd94463df1',1,'/page/news-and-events/latest-news/new-medical-assisting-intake-commences-in-april/','','40.77.167.35','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/new-medical-assisting-intake-commences-in-april','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-18 23:47:20',0),(66059,'2021-04-16 17:51:42','2021-05-12 18:04:43','6c5de515-c72f-4426-bc54-c6a47d5c34ed',1,'/content/Document/MNHF presentations 2017/Debbie Spink and Helen Funk - Maternity 170531.pdf','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/MNHF presentations 2017/Debbie Spink and Helen Funk - Maternity 170531.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-12 18:04:43',0),(66060,'2021-04-16 17:57:24','2021-05-16 20:03:40','425fdc8c-c37e-4b6d-85f3-079a1b984b3d',1,'/content/Document/Pathways/Classification of Tension Type Headache_link.pdf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/Classification of Tension Type Headache_link.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 20:03:40',0),(66061,'2021-04-16 18:01:15','2021-05-19 01:50:54','1da68695-b6d4-4d5c-83ac-72e616a07b11',1,'/page/news-and-events/latest-news/eoi-now-open-for-the-brisbane-north-phn-clinical-council/','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/eoi-now-open-for-the-brisbane-north-phn-clinical-council','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-19 01:50:54',0),(66062,'2021-04-16 18:03:59','2021-05-16 15:23:40','2a9a44e9-2d2d-4174-a838-a61ff18c8b05',1,'/about/careers/','','158.69.243.138','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: about/careers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,23,'2021-05-16 15:23:40',0),(66063,'2021-04-16 18:05:34','2021-05-17 06:24:35','29070181-8478-4ed9-93be-e25403b63c4c',1,'/page/home/banners/our-plan-to-support-older-people-in-our-region/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/banners/our-plan-to-support-older-people-in-our-region','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-17 06:24:35',0),(66064,'2021-04-16 18:09:33','2021-05-17 04:17:29','0b085ef6-0d58-4e5a-9a0e-02fa94ea9cbf',1,'/page/news-and-events/events/upcoming/course-in-wound-closure/','','148.251.120.201','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/course-in-wound-closure','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-17 04:17:29',0),(66065,'2021-04-16 18:12:46','2021-04-29 10:57:39','8ecb013b-d002-4242-8cc4-e47b4631a500',1,'/content/Document/Brisbane MIND Provider List March 2018(1).pdf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List March 2018(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-29 10:57:39',0),(66066,'2021-04-16 18:21:37','2021-05-09 20:55:29','f98d7c35-5063-4734-998c-5519d7632019',1,'/page/news-and-events/events/archive/healthy-eating-activity-and-lifestyle-heal™-facilitator-training','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/healthy-eating-activity-and-lifestyle-heal™-facilitator-training','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-09 20:55:29',0),(66067,'2021-04-16 18:25:37','2021-04-27 05:31:32','ec923340-4133-4cdc-b2cf-1ef848754564',1,'/page/news-and-events/latest-news/pledge-your-commitment-to-improving-healthcare-for-older-people','http://brisbanenorthphn.org.au/page/news-and-events/latest-news/pledge-your-commitment-to-improving-healthcare-for-older-people','35.210.207.218','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/latest-news/pledge-your-commitment-to-improving-healthcare-for-older-people','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-27 05:31:32',0),(66068,'2021-04-16 18:27:34','2021-05-12 04:23:09','a4fd536c-0db2-4fe8-a17f-626d3b235d07',1,'/events/non-alcoholic-fatty-liver-disease-diagnosing-managing-and-cardiovascular-risks-1-1-2','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/non-alcoholic-fatty-liver-disease-diagnosing-managing-and-cardiovascular-risks-1-1-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-12 04:23:09',0),(66069,'2021-04-16 18:28:51','2021-05-18 05:56:09','ef1db431-5762-41ee-92cc-866c7a26f4ad',1,'/content/Document/Pathways/LINK A_ICD_10.pdf','','131.191.34.72','Mozilla/5.0 (X11; CrOS x86_64 13816.80.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.215 Safari/537.36','Template not found: content/Document/Pathways/LINK A_ICD_10.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,27,'2021-05-18 05:56:09',0),(66070,'2021-04-16 18:29:34','2021-05-10 22:26:10','362a2dd1-0eaa-4667-aa97-7919c1daec5f',1,'/page/news-and-events/latest-news/planning-for-wellbeing-launched-at-mental-health-expo','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/planning-for-wellbeing-launched-at-mental-health-expo','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 22:26:10',0),(66071,'2021-04-16 18:32:38','2021-04-20 09:04:26','46e10856-0e56-4959-b304-0e7f284d8053',1,'/content/Document/Pathways/HealthPathways Program Update Mar 2018.pdf','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/HealthPathways Program Update Mar 2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-20 09:04:26',0),(66072,'2021-04-16 18:34:08','2021-05-07 19:07:58','a0466fe2-e87c-45f3-8bfe-a3f0d65f0b08',1,'/content/Document/160330_MR_Back to school program to keep kids safe.pdf','','66.249.69.63','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/160330_MR_Back to school program to keep kids safe.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-07 19:07:58',0),(66073,'2021-04-16 18:35:36','2021-05-15 04:27:29','5c66c98e-4353-4eac-81ac-b933bd7414a7',1,'/page/news-and-events/events/upcoming/support-before-and-after-death','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/support-before-and-after-death','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 04:27:29',0),(66074,'2021-04-16 18:43:33','2021-05-11 18:30:39','f01fcdca-2da8-470d-acad-35019a5bb6ce',1,'/page/news-and-events/health-alerts','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/health-alerts','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-11 18:30:39',0),(66075,'2021-04-16 18:47:34','2021-05-10 03:18:14','8591febf-eebc-4761-bda9-1af6da71c276',1,'/jobs/gp-liaison-officer-health-systems-improvement','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/gp-liaison-officer-health-systems-improvement','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-10 03:18:14',0),(66076,'2021-04-16 18:47:46','2021-04-16 18:47:46','948c5912-a870-4a77-b006-9138a502821a',1,'/page/pathways/constipation-in-children/','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/pathways/constipation-in-children','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 18:47:46',0),(66077,'2021-04-16 18:48:25','2021-04-16 18:48:25','83d0b5e0-ffc9-47d9-b508-733274644ebf',1,'/page/home/quicklinks/dist/swiper.js','https://www.brisbanenorthphn.org.au/page/home/quicklinks/acknowledgement-of-country/','95.217.75.150','\'Mozilla/5.0 (compatible; Seekport Crawler; http://seekport.com/\'','Template not found: page/home/quicklinks/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 18:48:25',0),(66078,'2021-04-16 18:49:33','2021-05-18 06:23:08','fc1e68db-f4cd-4293-a484-fe1731f302d6',1,'/page/health-professionals/mental-health-services/brisbane-mind','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/brisbane-mind','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 06:23:08',0),(66079,'2021-04-16 18:51:34','2021-05-18 23:00:34','43bafb10-e5ea-4cac-92f4-6f306b154ee4',1,'/page/home/style-guide/tab-listing/item-1','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/style-guide/tab-listing/item-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 23:00:34',0),(66080,'2021-04-16 18:53:34','2021-05-16 05:15:15','d104deb3-61e4-4d67-9d6d-0ece1ceb4948',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/carers-and-consumers/alternative-mental-health-services','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services/carers-and-consumers/alternative-mental-health-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 05:15:15',0),(66081,'2021-04-16 18:55:34','2021-05-18 19:27:02','ddd9eca4-de1a-4b7a-9626-fcd3cf4ccbd9',1,'/events/hiv-and-covid-19','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/hiv-and-covid-19','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-18 19:27:02',0),(66082,'2021-04-16 19:03:32','2021-04-21 06:21:33','ce9096a3-1c57-41b6-a376-8c926025acd1',1,'/content/Document/FORM 5 - Change of Approved Clinician List(1).docx','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/FORM 5 - Change of Approved Clinician List(1).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-21 06:21:33',0),(66083,'2021-04-16 19:03:34','2021-05-06 04:49:23','c91dd4bc-44dc-4169-b7f7-9d1be437a373',1,'/page/health-professionals/chronic-disease-management/dist/swiper.js','https://www.brisbanenorthphn.org.au/page/health-professionals/chronic-disease-management/chronic-disease-resources/','40.94.36.4','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36','Template not found: page/health-professionals/chronic-disease-management/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 04:49:23',0),(66084,'2021-04-16 19:08:03','2021-05-10 22:08:27','d4538a5f-d2bb-42e9-8dc1-46570a10560a',1,'/content/Document/GUI_How to use Brisbane Mind Plus mc.docx','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/GUI_How to use Brisbane Mind Plus mc.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 22:08:27',0),(66085,'2021-04-16 19:15:34','2021-05-12 03:10:50','9c0697f5-b882-4de1-b140-ee66ca3063ac',1,'/page/health-professionals/community-care/collaboratives/','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/community-care/collaboratives','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-12 03:10:50',0),(66086,'2021-04-16 19:21:34','2021-05-16 01:35:17','f1e5f151-e86e-44ef-a668-fabcacb89424',1,'/content/Document/Mental health/GUI_How to use My Mental Health eReferral_V1_Mar20.pdf','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Mental health/GUI_How to use My Mental Health eReferral_V1_Mar20.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-16 01:35:17',0),(66087,'2021-04-16 19:21:37','2021-04-16 19:21:37','26d25eef-6533-4e5b-938c-5640292d1060',1,'/content/Document/APP__AWP_AOD_160506_no attachments_public version for website_161208.docx','http://www.brisbanenorthphn.org.au/content/Document/APP__AWP_AOD_160506_no%20attachments_public%20version%20for%20website_161208.docx','35.225.91.148','Go-http-client/1.1','Template not found: content/Document/APP__AWP_AOD_160506_no attachments_public version for website_161208.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 19:21:37',0),(66088,'2021-04-16 19:25:30','2021-05-04 14:57:18','67535501-824a-4c4b-b7d0-6dc3ce245989',1,'/content/Document/Pathways/INF_1908_GPLO Info Sheet_PRINT.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/INF_1908_GPLO%20Info%20Sheet_PRINT.pdf','34.73.220.108','Go-http-client/1.1','Template not found: content/Document/Pathways/INF_1908_GPLO Info Sheet_PRINT.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-04 14:57:18',0),(66089,'2021-04-16 19:25:33','2021-05-10 14:58:21','6dc632e4-6a5c-4b92-a736-ec6bb0cfe5e2',1,'/jobs/dual-role-reception-treatment-room','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/dual-role-reception-treatment-room','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-10 14:58:21',0),(66090,'2021-04-16 19:25:42','2021-05-06 05:26:49','a94f4b6c-6237-46e1-823c-95598c9243f5',1,'/content/Document/Pathways/Safe Shoe checklist.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/Safe%20Shoe%20checklist.pdf','34.73.187.226','Go-http-client/1.1','Template not found: content/Document/Pathways/Safe Shoe checklist.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 05:26:49',0),(66091,'2021-04-16 19:27:34','2021-05-17 21:41:04','2306558e-57b1-492e-9fb3-39920953e11e',1,'/page/news-and-events/events/upcoming/gynaecology-workshop---save-the-date','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/gynaecology-workshop---save-the-date','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-17 21:41:04',0),(66092,'2021-04-16 19:32:18','2021-05-17 01:23:26','b3a34513-3921-4d2d-95c2-1503284d6930',1,'/page/news-and-events/events/archive/ifa-13th-global-conference-on-ageing/','','157.55.39.56','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/ifa-13th-global-conference-on-ageing','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 01:23:26',0),(66093,'2021-04-16 19:35:34','2021-05-16 14:18:31','28a0b7a4-882f-4a06-8708-fced3e6627c7',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---hamilton','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---hamilton','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-16 14:18:31',0),(66094,'2021-04-16 19:36:20','2021-04-29 21:05:43','becc1ab3-0d95-460c-b131-5774a683b8e7',1,'/content/Document/DRA_2016_MHSP_Needs Assessment.docx','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/DRA_2016_MHSP_Needs Assessment.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-29 21:05:43',0),(66095,'2021-04-16 19:37:46','2021-05-13 02:18:25','1574df2b-72c8-43e0-ba27-fef0a48c70c3',1,'/content/Document/Aged and community care/Dementia directory 2019 FINAL WEB.pdf','','66.249.66.154','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Aged and community care/Dementia directory 2019 FINAL WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-13 02:18:25',0),(66096,'2021-04-16 19:38:23','2021-04-24 08:39:23','237cf511-313c-4664-a99c-f04121362b7e',1,'/page/news-and-events/events/upcoming/IUIH-culturalawarenesstraining-20october/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/IUIH-culturalawarenesstraining-20october','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 08:39:23',0),(66097,'2021-04-16 19:39:34','2021-05-16 07:44:47','727eba2f-8d1a-4461-b5d6-6631fdb656df',1,'/page/news-and-events/latest-news/measles-alert-for-brisbane---8-july-2019/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/measles-alert-for-brisbane---8-july-2019','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-16 07:44:47',0),(66098,'2021-04-16 19:43:39','2021-04-16 19:43:39','fbb8e1b7-8446-4948-936a-7e209e56a0fd',1,'/page/news-and-events/events/upcoming/common-challenges-in-primary-care-epilepsy-for-gps','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/common-challenges-in-primary-care-epilepsy-for-gps','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 19:43:39',0),(66099,'2021-04-16 19:45:57','2021-05-13 18:47:22','1978bd90-32cf-493e-9627-33ad49d7ff3a',1,'/content/Document/Planning/FINAL_AAWP_primary mental health care_170717 WEBSITE.docx','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Planning/FINAL_AAWP_primary mental health care_170717 WEBSITE.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-13 18:47:22',0),(66100,'2021-04-16 19:46:25','2021-04-19 10:43:42','a2235a54-b24b-4228-92c8-7a6e5600ec80',1,'/content/Document/Planning/FINAL_AAWP_Integrated Team Care_170717 WEBSITE.docx','http://www.brisbanenorthphn.org.au/content/Document/Planning/FINAL_AAWP_Integrated%20Team%20Care_170717%20WEBSITE.docx','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/Planning/FINAL_AAWP_Integrated Team Care_170717 WEBSITE.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-19 10:43:42',0),(66101,'2021-04-16 19:47:36','2021-05-14 15:03:23','502a3b2f-5b3f-4fa7-a93a-194c4502d9f2',1,'/page/news-and-events/latest-news/seeking-carers-input-for-dementia-survey','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/seeking-carers-input-for-dementia-survey','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-14 15:03:23',0),(66102,'2021-04-16 19:51:36','2021-04-22 10:10:19','fba76091-b7c0-4a2e-b45d-c8325d7aead5',1,'/content/Document/Events/Education evening Invitation_diabetes.pdf','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Events/Education evening Invitation_diabetes.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-22 10:10:19',0),(66103,'2021-04-16 19:53:34','2021-05-16 07:03:05','c1cd71ca-557f-404f-ab2a-83f7c1fb271b',1,'/events/shoulders-and-knees','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/shoulders-and-knees','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-16 07:03:05',0),(66104,'2021-04-16 19:55:34','2021-05-16 07:44:35','4d6eb683-c67a-4668-ba7c-d182f5dbb6e6',1,'/page/news-and-events/latest-news/measles-alert-for-brisbane---25-march-2019/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/measles-alert-for-brisbane---25-march-2019','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 07:44:35',0),(66105,'2021-04-16 19:57:04','2021-04-16 19:57:04','f1e17573-919f-45f8-974c-3c2ce38fd5a2',1,'/content/Document/Aged and community care/A9_ FINAL GOAS Evaluation Plan v2 070618.docx','http://www.brisbanenorthphn.org.au/content/Document/Aged%20and%20community%20care/A9_%20FINAL%20GOAS%20Evaluation%20Plan%20v2%20070618.docx','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/Aged and community care/A9_ FINAL GOAS Evaluation Plan v2 070618.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 19:57:04',0),(66106,'2021-04-16 19:57:31','2021-05-16 07:38:52','f4547eb7-e89a-4970-9192-19744bbf9116',1,'/page/news-and-events/latest-news/gps-advised-to-enquire-about-silicosis/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/gps-advised-to-enquire-about-silicosis','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-16 07:38:52',0),(66107,'2021-04-16 19:57:32','2021-05-18 23:00:49','75481793-5116-4f24-a3dc-4086b3aa5108',1,'/page/news-and-events/latest-news/dist/swiper.js','https://www.brisbanenorthphn.org.au/page/news-and-events/latest-news/covid-19-information/','120.146.189.90','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','Template not found: page/news-and-events/latest-news/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,28,'2021-05-18 23:00:49',0),(66108,'2021-04-16 19:57:34','2021-05-01 11:48:37','c7166f23-0e44-4d96-9963-370703358d1e',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/brisbane-mind-information-for-referrers/referral-information/','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services/brisbane-mind-information-for-referrers/referral-information','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-01 11:48:37',0),(66109,'2021-04-16 20:00:51','2021-05-04 08:20:22','9fa777a8-9d5a-4816-85bf-ea638da93ffa',1,'/content/Document/MNHF presentations 2017/Dr Elizabeth Whiting, Michele Smith and Jodi Hallas 170531.pdf','','66.249.68.95','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/MNHF presentations 2017/Dr Elizabeth Whiting, Michele Smith and Jodi Hallas 170531.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-04 08:20:22',0),(66110,'2021-04-16 20:01:34','2021-05-16 00:00:50','22e96eca-245d-4aeb-9690-6bd8ba323c31',1,'/events/gpsr','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/gpsr','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-16 00:00:50',0),(66111,'2021-04-16 20:07:34','2021-05-16 13:39:03','2b7980e3-a76e-493c-a46f-92a31a7f5a30',1,'/page/news-and-events/events/upcoming/ultrasound-in-emergency-medicine/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/ultrasound-in-emergency-medicine','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 13:39:03',0),(66112,'2021-04-16 20:10:32','2021-05-02 22:35:29','acbaf3fd-7263-4a6d-8375-98fee7ee9c3a',1,'/content/Document/Network Link_04_April_2017_WEB_FINAL_170405.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%20Link_04_April_2017_WEB_FINAL_170405.pdf','35.186.188.225','Go-http-client/1.1','Template not found: content/Document/Network Link_04_April_2017_WEB_FINAL_170405.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-02 22:35:29',0),(66113,'2021-04-16 20:11:16','2021-05-18 21:40:02','fb2933d3-5b79-4cfd-acbb-7863dbe12ed7',1,'/page/health-professionals/pathways-program','','185.191.171.8','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)','Template not found: page/health-professionals/pathways-program','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-18 21:40:02',0),(66114,'2021-04-16 20:12:20','2021-05-16 07:51:43','3e8d1971-4b4e-4321-aeb4-10e00eebe925',1,'/page/news-and-events/latest-news/the-viewer-helps-local-gps-access-hospital-data-for-their-patients/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/the-viewer-helps-local-gps-access-hospital-data-for-their-patients','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-16 07:51:43',0),(66115,'2021-04-16 20:15:34','2021-05-03 05:20:02','1c5daf1e-3e35-4987-92bc-d05f95658a3e',1,'/jobs/clinical-nurse-metro-north-public-health-unit','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/clinical-nurse-metro-north-public-health-unit','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-03 05:20:02',0),(66116,'2021-04-16 20:27:35','2021-05-14 09:20:23','69e52622-bd65-42a5-8fbf-8678b0fe0195',1,'/page/news-and-events/events/upcoming/hepatitis-c-case-finding-to-practice-nurses','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/hepatitis-c-case-finding-to-practice-nurses','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-14 09:20:23',0),(66117,'2021-04-16 20:31:34','2021-05-01 23:33:47','bac130b1-f4b2-4da8-ac43-054d7cab0cff',1,'/page/news-and-events/latest-news/ndis-events-popular-with-local-gps/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/ndis-events-popular-with-local-gps','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-01 23:33:47',0),(66118,'2021-04-16 20:35:35','2021-05-05 03:17:47','c2f345e9-7e60-4621-a66f-7022c2ae3979',1,'/jobs/general-practitioner-new-farm','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/general-practitioner-new-farm','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-05 03:17:47',0),(66119,'2021-04-16 20:37:43','2021-05-16 07:50:58','d0f61074-77d0-471f-9279-ec2b623f1fdd',1,'/page/news-and-events/latest-news/stop-the-rise-of-stis/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/stop-the-rise-of-stis','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 07:50:58',0),(66120,'2021-04-16 20:39:34','2021-04-23 11:14:56','5b0f5067-0d7b-4371-a0e1-0a8f1e6411dc',1,'/yearinreview/2017-18/connecting-communities-to-primary-care/www.brisbanenorthphn.org.au','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/connecting-communities-to-primary-care/www.brisbanenorthphn.org.au','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-23 11:14:56',0),(66121,'2021-04-16 20:41:35','2021-04-25 05:28:58','92ac43e4-cf95-443e-bd79-15fd73889e49',1,'/content/Document/Pathways/Dyslipidaemia-pharmacological management.pdf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/Dyslipidaemia-pharmacological management.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-25 05:28:58',0),(66122,'2021-04-16 20:43:48','2021-05-15 23:24:19','9055604c-f47f-4c06-a75a-f22315dfab92',1,'/content/Document/Brisbane MIND Provider List September 2016(2).pdf','','88.198.36.62','Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.67 Safari/537.36','Template not found: content/Document/Brisbane MIND Provider List September 2016(2).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-15 23:24:19',0),(66123,'2021-04-16 20:47:35','2021-05-07 03:01:25','72168faf-41f3-46d1-b587-e030f2ba2ab3',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-albany-creek-doctors','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-albany-creek-doctors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-07 03:01:25',0),(66124,'2021-04-16 20:51:34','2021-05-06 21:22:57','610cbb04-832f-40f4-b828-73d0609d45bb',1,'/page/health-professionals/referral-and-patient-management/directories/brisbane-mind-directory','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/referral-and-patient-management/directories/brisbane-mind-directory','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 21:22:57',0),(66125,'2021-04-16 20:52:45','2021-05-12 04:52:49','3cad7b72-6fae-457a-b7c1-769efc2d5e6a',1,'/content/Document/Aged and community care/A8_ PSC Terms of Reference.docx','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Aged and community care/A8_ PSC Terms of Reference.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 04:52:49',0),(66126,'2021-04-16 20:53:44','2021-05-06 22:19:01','68eadd6c-672b-4d55-a855-0dd930ce0253',1,'/jobs/general-practitioner-burpengary','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/general-practitioner-burpengary','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 22:19:01',0),(66127,'2021-04-16 20:57:34','2021-05-12 14:23:46','9c7d3eb1-dea1-4254-bc52-7a2eb376e320',1,'/jobs/urgent-vr-gp-needed-immediate-start-at-elysian-medical-centre','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/urgent-vr-gp-needed-immediate-start-at-elysian-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-12 14:23:46',0),(66128,'2021-04-16 21:01:41','2021-05-14 19:43:54','db004a58-adfa-4e43-998e-e281713c3c4c',1,'/content/Document/Aged and community care/FINAL GOAS REPORT v4 180820.pdf','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Aged and community care/FINAL GOAS REPORT v4 180820.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-14 19:43:54',0),(66129,'2021-04-16 21:03:36','2021-05-16 10:57:13','a7d9b107-f6bb-4822-a5f7-11aaeb553244',1,'/events/paediatric-masterclass-for-general-practice-the-first-2000-days-part-1','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/paediatric-masterclass-for-general-practice-the-first-2000-days-part-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 10:57:13',0),(66130,'2021-04-16 21:04:34','2021-05-16 07:45:56','9283c5ad-bf6b-4451-843c-44722d4ec17a',1,'/page/news-and-events/latest-news/murrumba-downs-practice-shares-data-success/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/murrumba-downs-practice-shares-data-success','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,14,'2021-05-16 07:45:56',0),(66131,'2021-04-16 21:05:41','2021-04-29 19:13:18','7184ca1c-1aa6-4cf5-aa84-7f39ca3b22b3',1,'/page/home/style-guide/grid-listing/item-1','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/style-guide/grid-listing/item-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-29 19:13:18',0),(66132,'2021-04-16 21:08:11','2021-05-14 07:54:28','ec7675ef-9a27-4b30-9698-58fb59491e1d',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---ashgrove','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---ashgrove','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-14 07:54:28',0),(66133,'2021-04-16 21:09:49','2021-05-16 18:34:52','da308bb1-b108-4aa3-bf90-761f13976d74',1,'/events/recalls-reminders-and-cancer-screening-including-integrated-ncsr-access-using-medicaldirector-nqphn','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/recalls-reminders-and-cancer-screening-including-integrated-ncsr-access-using-medicaldirector-nqphn','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-16 18:34:52',0),(66134,'2021-04-16 21:13:45','2021-05-05 16:53:55','3f4e810b-a4f9-43eb-8506-aa9a747c909f',1,'/page/news-and-events/events/upcoming/keeping-kidneys-in-the-community-ckd-shared-care-program','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/keeping-kidneys-in-the-community-ckd-shared-care-program','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-05 16:53:55',0),(66135,'2021-04-16 21:15:04','2021-05-17 16:28:38','985977b8-e23b-4290-ae62-f9680f4ff992',1,'/content/Document/LBP Module Flyer for Doctors v2.docx','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/LBP Module Flyer for Doctors v2.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-17 16:28:38',0),(66136,'2021-04-16 21:17:47','2021-05-17 03:35:26','31eaf5e9-63bd-4b7c-bc87-04a1317fd6e7',1,'/page/health-professionals/Local Positions Vacant/vr-skin-doctor---taigum/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/vr-skin-doctor---taigum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-17 03:35:26',0),(66137,'2021-04-16 21:18:10','2021-05-12 20:26:07','d08913f8-bc2c-4ebf-883a-d3548cb92878',1,'/page/health-professionals/my-health-for-life/local-providers-witness-positive-effects-of-lifestyle-campaign/','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/my-health-for-life/local-providers-witness-positive-effects-of-lifestyle-campaign','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-12 20:26:07',0),(66138,'2021-04-16 21:27:45','2021-04-20 01:46:49','6ed7b6a9-afa4-46a2-b9bb-7dc69a51331b',1,'/content/Document/Primary care liaison/MNHHS Redcliffe Ref BP v6_2.rtf','','207.46.13.11','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Primary care liaison/MNHHS Redcliffe Ref BP v6_2.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-20 01:46:49',0),(66139,'2021-04-16 21:28:38','2021-05-14 22:38:13','cd9b805d-5486-47c2-8f8a-7e4b266d411e',1,'/page/health-professionals/MHAOD/funded-mental-health-services/integrated-mental-healthcare-for-aboriginal-and-torres-strait-islander-people','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/MHAOD/funded-mental-health-services/integrated-mental-healthcare-for-aboriginal-and-torres-strait-islander-people','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-14 22:38:13',0),(66140,'2021-04-16 21:36:26','2021-05-18 17:22:10','12252b1c-fdbb-47b6-8d09-edea0730d3d6',1,'/page/news-and-events/events/upcoming/topics-in-paediatric-opthamology','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/topics-in-paediatric-opthamology','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-18 17:22:10',0),(66141,'2021-04-16 21:38:50','2021-04-18 17:48:16','5c0ef222-9061-4afa-b386-5c1dc6047abc',1,'/content/Document/Templates/4.8/MNHHS Palliative Care PractiX v4_8.doc','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.8/MNHHS%20Palliative%20Care%20PractiX%20v4_8.doc','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/Templates/4.8/MNHHS Palliative Care PractiX v4_8.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-18 17:48:16',0),(66142,'2021-04-16 21:42:25','2021-05-10 12:43:57','521fcf96-8212-4008-a6fc-c47f1bcb2298',1,'/page/about/our-region','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/our-region','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-10 12:43:57',0),(66143,'2021-04-16 21:47:41','2021-04-22 11:52:30','7dfe3f33-d6cc-4bd5-a756-b4b601b50126',1,'/content/Document/Events/gp-align-prog-oct-2016.pdf','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/gp-align-prog-oct-2016.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-22 11:52:30',0),(66144,'2021-04-16 21:48:34','2021-04-16 21:48:34','afb32324-9296-471e-b63b-c14bd29022ef',1,'/content/Document/Tinnitus History Questionnaire.pdf','','207.46.13.11','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Tinnitus History Questionnaire.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 21:48:34',0),(66145,'2021-04-16 21:54:20','2021-04-27 22:23:36','cf4c4bfd-d16b-447f-a033-bfa825cd9752',1,'/content/Image/Events/Active @ home web 1.jpg','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Events/Active @ home web 1.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-27 22:23:36',0),(66146,'2021-04-16 21:55:55','2021-05-14 14:17:32','04773004-c996-4429-9640-d47673fec581',1,'/content/Image/News Images/bne mind banner.jpg','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/News Images/bne mind banner.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-14 14:17:32',0),(66147,'2021-04-16 21:57:09','2021-04-22 06:15:22','b4c755ba-4728-4429-afda-843367bd3087',1,'/content/Document/MNHHS Maternity PractiX v4_11(2).doc','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/MNHHS Maternity PractiX v4_11(2).doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-22 06:15:22',0),(66148,'2021-04-16 21:59:59','2021-05-18 00:50:31','d06d1781-056c-4e06-b7df-b164eb76742b',1,'/page/news-and-events/events/archive/electronic-prescribing-update-for-primary-health-networks-and-affiliates','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/electronic-prescribing-update-for-primary-health-networks-and-affiliates','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-18 00:50:31',0),(66149,'2021-04-16 22:14:14','2021-04-25 23:57:23','f472a86a-88de-4043-b2b6-90ea3cbb1949',1,'/jobs/practice-nurse-ningi','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/practice-nurse-ningi','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-25 23:57:23',0),(66150,'2021-04-16 22:16:10','2021-05-12 08:24:51','c709b3b1-2afb-4a8a-ad1a-7a088b530e3f',1,'/content/Document/Pathways/Respite Centres Brisbane North.pdf','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Pathways/Respite Centres Brisbane North.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-12 08:24:51',0),(66151,'2021-04-16 22:21:59','2021-05-10 09:54:40','4f82d96d-a5c9-490b-a9e8-1a667928a55c',1,'/page/health-professionals/referral-and-patient-management/directories/dist/swiper.js','https://www.brisbanenorthphn.org.au/page/health-professionals/referral-and-patient-management/directories/national-health-service-directory/','95.217.228.46','\'Mozilla/5.0 (compatible; Seekport Crawler; http://seekport.com/\'','Template not found: page/health-professionals/referral-and-patient-management/directories/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 09:54:40',0),(66152,'2021-04-16 22:26:55','2021-05-17 19:39:38','05222261-5167-4577-83c0-33a2609c1ab0',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---nundah','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---nundah','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-17 19:39:38',0),(66153,'2021-04-16 22:36:17','2021-05-16 07:41:41','7af5ea91-78bd-488b-8c21-b950de6862e9',1,'/page/news-and-events/latest-news/high-risk-queenslanders-encouraged-to-get-annual-flu-jab/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/high-risk-queenslanders-encouraged-to-get-annual-flu-jab','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 07:41:41',0),(66154,'2021-04-16 22:39:58','2021-05-06 14:17:27','4f8cb214-b522-465a-bd0a-09c2526f8c64',1,'/page/news-and-events/events/upcoming/dealing-with-depression/','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/dealing-with-depression','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-06 14:17:27',0),(66155,'2021-04-16 22:41:23','2021-05-11 09:17:51','22d44293-1bec-4477-af7f-4c2fd6b6f6a8',1,'/content/Document/Network Link/Network Link_4_April_2018_WEB.pdf','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Network Link/Network Link_4_April_2018_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-11 09:17:51',0),(66156,'2021-04-16 22:42:09','2021-05-18 06:19:12','27fe3609-8431-41a8-b662-5c4f95b5c1be',1,'/content/Document/Pathways/Mom_ENT_intranasal corticosteroids_link(2).pdf','','40.77.167.15','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/Mom_ENT_intranasal corticosteroids_link(2).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-18 06:19:12',0),(66157,'2021-04-16 22:48:19','2021-04-29 04:08:05','705709c7-c6b9-451a-8194-b56f4633b3c9',1,'/content/Document/Network Link_02_March_2017_FINAL_WEB.pdf','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Network Link_02_March_2017_FINAL_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-29 04:08:05',0),(66158,'2021-04-16 22:48:24','2021-04-30 23:37:55','88e961bc-e1ca-4758-bc60-b640f5a2fb91',1,'/page/news-and-events/events/upcoming/point-of-care-testing-scientific-education-meeting','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/point-of-care-testing-scientific-education-meeting','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-30 23:37:55',0),(66159,'2021-04-16 22:50:49','2021-05-13 05:43:11','2d169967-1e07-41c2-bc7f-79b316f78850',1,'/page/publications/partners-in-health/partners-in-health-may-2018/','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/partners-in-health-may-2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-13 05:43:11',0),(66160,'2021-04-16 22:52:01','2021-04-19 21:05:47','ee50535a-8804-4288-989b-afd918a24e53',1,'/page/news-and-events/latest-news/support-in-the-face-of-expected-increase-in-suicide-rates','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/support-in-the-face-of-expected-increase-in-suicide-rates','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-19 21:05:47',0),(66161,'2021-04-16 23:00:27','2021-05-17 17:00:24','9e92f0c7-43ab-447e-b993-278b424fb671',1,'/page/news-and-events/latest-news/phn-hosts-national-stepped-care-workshop/','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/phn-hosts-national-stepped-care-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-17 17:00:24',0),(66162,'2021-04-16 23:06:17','2021-05-07 05:56:25','1c54dff1-f94f-4814-ba47-fcc53952ae05',1,'/content/Document/Planning/FIN_March_2016_MHSP_Needs Assessment.docx','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Planning/FIN_March_2016_MHSP_Needs Assessment.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 05:56:25',0),(66163,'2021-04-16 23:09:52','2021-05-18 03:08:19','7de9047b-23c6-4a3a-93fe-dc4ba8d21173',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-18 03:08:19',0),(66164,'2021-04-16 23:11:46','2021-04-25 07:57:33','fca72ee1-5873-4091-94c0-1973d8542eec',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-female-brisbane-city','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-female-brisbane-city','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-25 07:57:33',0),(66165,'2021-04-16 23:13:55','2021-05-11 15:52:10','468cb9d6-4fa0-441c-8957-3dcfaac28d20',1,'/page/health-professionals/digital-health/health-data','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/digital-health/health-data','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 15:52:10',0),(66166,'2021-04-16 23:16:12','2021-05-16 04:30:11','acc0b587-a0c4-4da4-ba31-8b2412011c1f',1,'/events/suppporting-people-with-dementia-in-a-general-practice-setting','','5.9.144.234','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: events/suppporting-people-with-dementia-in-a-general-practice-setting','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 04:30:11',0),(66167,'2021-04-16 23:18:00','2021-04-23 11:39:41','20ac90bc-bd5b-4980-bb7e-91f62ef79e54',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/brisbane-mind-information-for-referrers/resources','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services/brisbane-mind-information-for-referrers/resources','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-23 11:39:41',0),(66168,'2021-04-16 23:18:28','2021-04-16 23:18:28','fc5f5c04-297d-4297-9077-352c015021c3',1,'/page/news-and-events/events/upcoming/metronorthhospitalhealthservice-agedcareconference/','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/metronorthhospitalhealthservice-agedcareconference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 23:18:28',0),(66169,'2021-04-16 23:27:22','2021-05-08 09:30:50','20fbe5db-e0d2-4141-88b9-abcffd76f583',1,'/content/Document/Lymphoedema Screener - LL.pdf','','66.249.69.33','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Lymphoedema Screener - LL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-08 09:30:50',0),(66170,'2021-04-16 23:28:26','2021-05-13 15:05:23','5a843c35-c5e9-4c14-97c4-5503992aa9cd',1,'/page/home/quicklinks/view-local-positions-vacant','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/quicklinks/view-local-positions-vacant','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 15:05:23',0),(66171,'2021-04-16 23:30:03','2021-04-16 23:30:03','06f9d93a-4200-4c19-b135-aa1f0fa1038b',1,'/page/health-professionals/ndis/ndis-events-popular-with-local-gps','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/ndis/ndis-events-popular-with-local-gps','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 23:30:03',0),(66172,'2021-04-16 23:36:42','2021-04-16 23:36:42','9a39fc7b-a5bd-440d-9e61-e128cf1bb5ab',1,'/news-events/freeform/api/form','https://brisbanenorthphn.org.au/news-events/newsletters','207.241.231.84','Mozilla/5.0 (compatible; archive.org_bot/3.3.0 +http://pandora.nla.gov.au/crawl.html)','Template not found: news-events/freeform/api/form','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 23:36:42',0),(66173,'2021-04-16 23:37:51','2021-05-08 00:42:24','fd04d04b-0734-455e-be28-f4b202a5d974',1,'/content/Document/Templates/APPLIC 02 2016.pdf','http://www.brisbanenorthphn.org.au/content/Document/Templates/APPLIC%2002%202016.pdf','35.185.207.84','Go-http-client/1.1','Template not found: content/Document/Templates/APPLIC 02 2016.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-08 00:42:24',0),(66174,'2021-04-16 23:38:19','2021-04-16 23:38:19','71b17888-59e6-4279-adeb-48e962c3f25b',1,'/page/home/banners/our-year-in-review-has-gone-digital/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/home/banners/our-year-in-review-has-gone-digital','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-16 23:38:19',0),(66175,'2021-04-16 23:42:00','2021-05-13 05:46:42','2d50ab01-3b48-4826-a17f-9e6a7db9bd89',1,'/page/community/be-safe-vaccinate','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/community/be-safe-vaccinate','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-13 05:46:42',0),(66176,'2021-04-16 23:45:36','2021-04-29 05:30:00','b49638b8-867b-491b-bc68-bae8b912dd20',1,'/page/news-and-events/latest-news/aged-care-leadership-celebrated/','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/aged-care-leadership-celebrated','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-29 05:30:00',0),(66177,'2021-04-16 23:48:09','2021-05-08 08:36:36','d30d0372-8a30-4282-95e8-b25ffaed1d51',1,'/content/Document/Pathways/LINK H_Depression Tools.pdf','','66.249.69.33','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Pathways/LINK H_Depression Tools.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-08 08:36:36',0),(66178,'2021-04-16 23:53:47','2021-05-18 03:11:40','262764cc-9d61-47e9-8c53-c72e114164bb',1,'/page/news-and-events/latest-news/my-health-record-on-show-at-caboolture-naidoc-event','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/my-health-record-on-show-at-caboolture-naidoc-event','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-18 03:11:40',0),(66179,'2021-04-16 23:55:13','2021-05-17 05:29:42','03ea253a-c57d-42e4-9888-a40618d45dba',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist-required---kedron-wavell-medical-centre/','','157.55.39.35','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist-required---kedron-wavell-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 05:29:42',0),(66180,'2021-04-16 23:57:57','2021-05-17 08:24:37','31f9b9db-b5c7-4948-a1e8-33a9b19ebb73',1,'/jobs/vr-gp-nundah-area','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/vr-gp-nundah-area','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-17 08:24:37',0),(66181,'2021-04-17 00:01:48','2021-05-14 02:28:21','7aa45eb4-aad3-4019-afb3-3988ec52cc91',1,'/page/news-and-events/events/upcoming/electronic-prescribing-webinars-june-2020','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/electronic-prescribing-webinars-june-2020','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-14 02:28:21',0),(66182,'2021-04-17 00:04:05','2021-04-17 00:04:05','43d52cc3-0bb4-426a-abb7-f45ef5cd244b',1,'/content/Document/Templates/5.2/MNHHS Palliative Referral v5_2 ZM(2).rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.2/MNHHS%20Palliative%20Referral%20v5_2%20ZM(2).rtf','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/Templates/5.2/MNHHS Palliative Referral v5_2 ZM(2).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 00:04:05',0),(66183,'2021-04-17 00:06:05','2021-05-15 00:32:32','90206fc0-2da9-4052-b6e4-49e51e9f4f38',1,'/page/health-professionals/referral-and-patient-management/directories','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/referral-and-patient-management/directories','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 00:32:32',0),(66184,'2021-04-17 00:07:54','2021-05-15 08:23:28','e7633b0f-6aac-4386-b8dd-09f530c07e29',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---bellbowrie','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---bellbowrie','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-15 08:23:28',0),(66185,'2021-04-17 00:10:05','2021-05-17 21:34:04','b69aa9b3-6b5e-4e84-bc8d-aa6a7ecf5448',1,'/page/news-and-events/latest-news/planning-for-wellbeing-launched-at-mental-health-expo/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/planning-for-wellbeing-launched-at-mental-health-expo','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-17 21:34:04',0),(66186,'2021-04-17 00:12:10','2021-04-29 05:37:35','bdcb2bbb-5e8a-45b4-a503-387b099288ec',1,'/page/news-and-events/latest-news/congratulations-new-medical-assisting-graduates/','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/congratulations-new-medical-assisting-graduates','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-29 05:37:35',0),(66187,'2021-04-17 00:15:56','2021-05-16 12:17:07','5acc7d98-5351-48b8-9e44-a877a302b299',1,'/content/Document/COVID-19/COVID-19 list of suppliers PPE Table–May 2020.pdf','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/COVID-19/COVID-19 list of suppliers PPE Table–May 2020.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-16 12:17:07',0),(66188,'2021-04-17 00:16:28','2021-05-17 10:04:17','6a91d459-e5c7-498e-a751-6d03808382eb',1,'/content/Document/Templates/4.7/MNHHS RBWH Ref ZM 4_7.rtf','','40.77.167.45','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.7/MNHHS RBWH Ref ZM 4_7.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 10:04:17',0),(66189,'2021-04-17 00:18:34','2021-05-15 02:20:26','11ee19a4-5827-460e-ba67-4b2e6fc79d36',1,'/page/news-and-events/latest-news/measles-alert-for-brisbane---8-july-2019','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/measles-alert-for-brisbane---8-july-2019','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 02:20:26',0),(66190,'2021-04-17 00:18:38','2021-05-13 17:12:51','9803c5fb-fa39-4cdf-bbb5-493930ee813e',1,'/content/Document/170427_Health alert_Background information for clinicians regarding the Brisbane River contamination event.pdf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/170427_Health alert_Background information for clinicians regarding the Brisbane River contamination event.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 17:12:51',0),(66191,'2021-04-17 00:20:05','2021-05-18 23:54:07','6c3e5ec3-c195-482d-8686-38ef9295101a',1,'/content/Document/Brisbane MIND Provider List February 2019(10).pdf','','157.55.39.129','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List February 2019(10).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-18 23:54:07',0),(66192,'2021-04-17 00:20:58','2021-04-17 00:20:58','3689e5cd-3b7e-43f1-8253-3ace366261e5',1,'/page/health-professionals/Local Positions Vacant/vr-general-practitioner-required---stafford-road-family-care/','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/vr-general-practitioner-required---stafford-road-family-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 00:20:58',0),(66193,'2021-04-17 00:24:00','2021-04-24 22:28:19','3dd92c16-a794-46f9-a636-9600c845ebbb',1,'/events/complex-trauma-attachment-in-children','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/complex-trauma-attachment-in-children','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-24 22:28:19',0),(66194,'2021-04-17 00:30:00','2021-05-16 06:52:03','297c1845-253d-493e-b4d7-58db318d677a',1,'/page/news-and-events/latest-news/older-australians-put-their-health-in-their-hands-with-my-health-record','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/older-australians-put-their-health-in-their-hands-with-my-health-record','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 06:52:03',0),(66195,'2021-04-17 00:30:30','2021-05-17 06:07:09','1ef4c27b-e73a-44dc-9fc6-41bfa2b2779a',1,'/content/Document/TOR_CC_FINAL.pdf','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/TOR_CC_FINAL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 06:07:09',0),(66196,'2021-04-17 00:34:04','2021-05-17 06:42:17','e53a01ed-0ea5-47fb-b9e1-1c0081fb6aa5',1,'/page/about/careers/brisbane-north-phn-board-directors','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/careers/brisbane-north-phn-board-directors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-17 06:42:17',0),(66197,'2021-04-17 00:36:05','2021-05-12 20:48:44','3f1a01fd-c9b4-4879-93a5-fd1eeb14054f',1,'/page/news-and-events/events/upcoming/lower-leg-ulcer-management','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/lower-leg-ulcer-management','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-12 20:48:44',0),(66198,'2021-04-17 00:38:05','2021-05-14 17:04:21','a825c8a6-ff46-433e-b6a4-3cd2a3aba797',1,'/content/document/events/invitation - huntingtons disease palliative care forum 2016.pdf','','40.77.167.30','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/document/events/invitation - huntingtons disease palliative care forum 2016.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 17:04:21',0),(66199,'2021-04-17 00:38:06','2021-05-12 11:21:06','c794535d-24ad-4dcf-a5d4-e0ab40b1abcc',1,'/page/news-and-events/latest-news/were-moving','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/were-moving','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-12 11:21:06',0),(66200,'2021-04-17 00:40:13','2021-05-16 03:43:40','7e1dee1c-d40a-46d3-b0fa-0a061cf9c2c3',1,'/page/health-professionals/community-care/sector-development/local-resident-and-former-gp-reflects-on-healthy-ageing-at-100','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/community-care/sector-development/local-resident-and-former-gp-reflects-on-healthy-ageing-at-100','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 03:43:40',0),(66201,'2021-04-17 00:41:25','2021-05-10 12:31:48','c60750db-19f4-4f6c-9c36-1673cc79a74f',1,'/content/Document/Templates/5.3/Specialists List_RBWH_5_3.pdf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/5.3/Specialists List_RBWH_5_3.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-10 12:31:48',0),(66202,'2021-04-17 00:42:13','2021-05-16 15:07:59','8c7db87e-22cd-4222-b712-1ff7a9e83427',1,'/jobs/practice-nurse-casual-bongaree','','66.249.75.182','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: jobs/practice-nurse-casual-bongaree','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,19,'2021-05-16 15:07:59',0),(66203,'2021-04-17 00:44:09','2021-04-25 13:46:34','530be921-8f56-4af3-865d-9002bb1f7110',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---chermside','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---chermside','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-04-25 13:46:34',0),(66204,'2021-04-17 00:47:34','2021-05-04 00:33:08','19b1fd4c-c4ca-4e75-a872-95a4933f3dd2',1,'/content/Document/MNHF presentations 2017/Claire Harrison, Shelley Kulperger and Karen Quaile 170531.pdf','http://www.brisbanenorthphn.org.au/content/Document/MNHF%20presentations%202017/Claire%20Harrison%2C%20Shelley%20Kulperger%20and%20Karen%20Quaile%20170531.pdf','104.198.141.65','Go-http-client/1.1','Template not found: content/Document/MNHF presentations 2017/Claire Harrison, Shelley Kulperger and Karen Quaile 170531.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-04 00:33:08',0),(66205,'2021-04-17 00:49:58','2021-04-17 00:49:58','c2e0c1d6-ce41-4d13-bedf-1789e055e1be',1,'/page/health-professionals/Local Positions Vacant/six-month-extended-skills-registrar-post-sexual-health/','','207.46.13.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/six-month-extended-skills-registrar-post-sexual-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 00:49:58',0),(66206,'2021-04-17 01:04:13','2021-05-13 15:25:09','ace473a4-f333-4572-be22-5b9ac765fa98',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---redcliffe','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---redcliffe','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-13 15:25:09',0),(66207,'2021-04-17 01:06:13','2021-05-04 17:08:16','bdec4f42-3738-4efd-b574-6baa19c8d919',1,'/page/news-and-events/events/upcoming/trauma-informed-care-and-practice-in-domestic-and-family-violence-services-level-2','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/trauma-informed-care-and-practice-in-domestic-and-family-violence-services-level-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-04 17:08:16',0),(66208,'2021-04-17 01:10:13','2021-05-19 02:41:30','b60b20b2-d0be-493b-8322-ca9da108082c',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---kippa-ring','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---kippa-ring','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-19 02:41:30',0),(66209,'2021-04-17 01:12:20','2021-05-13 17:46:33','d2860635-b8cc-4a8b-8ace-2ae642057835',1,'/page/news-and-events/latest-news/measles-alert-for-brisbane-and-gold-coast-areas','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/measles-alert-for-brisbane-and-gold-coast-areas','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-13 17:46:33',0),(66210,'2021-04-17 01:13:52','2021-04-17 11:49:10','02cf080c-ccbb-4dae-b389-9ddf20b1a7d0',1,'/content/Document/Pathways/CT Coronary Calcium Score.pdf','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/CT Coronary Calcium Score.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-17 11:49:10',0),(66211,'2021-04-17 01:15:25','2021-04-24 08:48:13','8de4c1d3-c7b9-42dd-83f7-80de8a4e364b',1,'/content/Document/Primary care liaison/MNHHS Community and Oral Health Directorate Ref v6_2 ZM.rtf','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Primary care liaison/MNHHS Community and Oral Health Directorate Ref v6_2 ZM.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-24 08:48:13',0),(66212,'2021-04-17 01:15:47','2021-04-17 01:15:47','4952abcb-8ffd-4896-b2d6-152c52297073',1,'/content/Document/Aged and community care/A7_ FINAL 110817 Project plan.docx','http://www.brisbanenorthphn.org.au/content/Document/Aged%20and%20community%20care/A7_%20FINAL%20110817%20Project%20plan.docx','35.225.91.148','Go-http-client/1.1','Template not found: content/Document/Aged and community care/A7_ FINAL 110817 Project plan.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 01:15:47',0),(66213,'2021-04-17 01:16:34','2021-05-14 02:23:04','156f9c01-9803-4dc6-9b6a-2ff843749430',1,'/content/Document/STARS training flyer final.pdf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/STARS training flyer final.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-14 02:23:04',0),(66214,'2021-04-17 01:18:14','2021-05-18 20:18:08','b6bc9fdc-aed7-42ad-bbda-665b557bd6c2',1,'/page/health-professionals/Local Positions Vacant/medical receptionist-bowen hills','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/medical receptionist-bowen hills','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-18 20:18:08',0),(66215,'2021-04-17 01:20:15','2021-05-18 01:50:56','5a6f303a-7df7-454b-ba5a-37d77e83ea55',1,'/page/news-and-events/latest-news/new-chief-executive-for-metro-north-hhs','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/new-chief-executive-for-metro-north-hhs','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-18 01:50:56',0),(66216,'2021-04-17 01:23:03','2021-05-17 04:17:08','05f94066-8e16-4124-964a-416af18cfe6f',1,'/page/news-and-events/events/upcoming/common-challenges-in-primary-care-heart-failure-gp-update/','','148.251.120.201','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/common-challenges-in-primary-care-heart-failure-gp-update','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 04:17:08',0),(66217,'2021-04-17 01:23:53','2021-05-18 10:49:43','004fef57-eb21-444d-be09-f69070fbb0c2',1,'/content/Document/Palliative_Care_Toolbox_v1_0_WEB.pdf','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Palliative_Care_Toolbox_v1_0_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-18 10:49:43',0),(66218,'2021-04-17 01:24:19','2021-04-17 01:24:19','90d561ac-ce7b-4f0b-a448-62538a65d1b2',1,'/content/Document/Templates/4.5/MNHHS Caboolture Referral ZM v4.5 160101.rtf','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.5/MNHHS Caboolture Referral ZM v4.5 160101.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 01:24:19',0),(66219,'2021-04-17 01:26:15','2021-05-16 08:37:00','b47fc79a-939f-484d-a708-b5a5e8610f7a',1,'/page/news-and-events/latest-news/collaborative-improving-care-for-older-people/','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/collaborative-improving-care-for-older-people','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 08:37:00',0),(66220,'2021-04-17 01:28:25','2021-04-23 14:57:03','06d52876-63b1-4291-ad4b-9ff42cff95b8',1,'/media/multimedia/b-roll','','66.249.79.148','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.80 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: media/multimedia/b-roll','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-23 14:57:03',0),(66221,'2021-04-17 01:30:20','2021-05-09 06:35:25','0ae2c17d-102a-428b-99ce-6b2e52960dbf',1,'/page/publications/newsletters/advertising-and-promotion','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/newsletters/advertising-and-promotion','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-09 06:35:25',0),(66222,'2021-04-17 01:36:30','2021-04-21 10:35:55','e3be9901-2a9c-4797-bef8-c6495fc3af24',1,'/content/Document/TOR_CAC_FINALPHN.PDF','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/TOR_CAC_FINALPHN.PDF','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-21 10:35:55',0),(66223,'2021-04-17 01:40:27','2021-05-08 16:36:07','64683c66-8cb3-4ad3-b647-23396402e8b2',1,'/page/news-and-events/events/upcoming/trauma-informed-transgender-and-gender-diverse-affirmative-care---masterclass','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/trauma-informed-transgender-and-gender-diverse-affirmative-care---masterclass','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-08 16:36:07',0),(66224,'2021-04-17 01:46:26','2021-05-07 22:09:44','3f9bf4f5-b98d-4a1a-9a3f-335183e5870f',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---albany-creek--prasads','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---albany-creek--prasads','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-07 22:09:44',0),(66225,'2021-04-17 01:48:27','2021-05-06 01:55:55','7b70f3d7-6c46-45a9-a0dc-846ef51f3ca1',1,'/content/Document/Exercise_after_breast_cancer_surgery 2 sides.pdf','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Exercise_after_breast_cancer_surgery 2 sides.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-06 01:55:55',0),(66226,'2021-04-17 01:50:46','2021-05-14 05:38:00','83d5740e-0adf-4b2c-8718-9903a5486333',1,'/content/Document/Pathways/TB_fax_refferal form template-EXPIRED.pdf','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/TB_fax_refferal form template-EXPIRED.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-14 05:38:00',0),(66227,'2021-04-17 01:58:38','2021-05-16 04:36:13','db494f88-d5d2-4b56-a5bc-297221720130',1,'/page/news-and-events/latest-news/covid-19-information/information-for-aged-care-providers/','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/covid-19-information/information-for-aged-care-providers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-16 04:36:13',0),(66228,'2021-04-17 02:00:21','2021-05-15 11:24:12','54fa4394-a677-4ae9-9384-2621302b262d',1,'/content/Document/Templates/Brisbane MIND/Brisbane MIND Client Information (2015-16)_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Templates/Brisbane+MIND/Brisbane+MIND+Client+Information+(2015-16)_WEB.pdf','198.12.80.148','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 UBrowser/6.2.4091.2 Safari/537.36','Template not found: content/Document/Templates/Brisbane MIND/Brisbane MIND Client Information (2015-16)_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-15 11:24:12',0),(66229,'2021-04-17 02:04:39','2021-05-18 19:04:00','5a7c4899-da1a-4b3c-81e7-2a2d9cda822e',1,'/page/health-professionals/mental-health-services/brisbane-mind4kids','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/brisbane-mind4kids','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-18 19:04:00',0),(66230,'2021-04-17 02:18:36','2021-05-16 11:51:11','d2861148-80b0-4960-a879-b5fd6dfbb94c',1,'/events/want-to-learn-about-nurse-clinics','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/want-to-learn-about-nurse-clinics','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-16 11:51:11',0),(66231,'2021-04-17 02:21:44','2021-05-16 16:19:00','ee74d71f-e9a5-4ac4-9a5b-35cc37b7bee5',1,'/jobs/practice-nurse','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/practice-nurse','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-16 16:19:00',0),(66232,'2021-04-17 02:21:52','2021-05-16 07:53:54','577f34d7-2fbe-4611-bc52-3a7424076f9b',1,'/page/publications/newsletters/network-link/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/publications/newsletters/network-link','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 07:53:54',0),(66233,'2021-04-17 02:21:54','2021-05-18 07:44:15','74f68d80-3dde-4aad-859c-a04b915fd5a8',1,'/page/about/careers/suicide-prevention-project-officer/','','69.63.184.116','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: page/about/careers/suicide-prevention-project-officer','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-18 07:44:15',0),(66234,'2021-04-17 02:22:37','2021-05-16 07:48:19','a484c337-8565-4c0f-b995-40c46a0f788b',1,'/page/news-and-events/latest-news/our-year-in-review-goes-digital/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/our-year-in-review-goes-digital','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 07:48:19',0),(66235,'2021-04-17 02:26:27','2021-05-01 09:51:06','677d651c-303a-4ada-9775-018251461e2e',1,'/content/Document/Templates/SaAS-HITH-INFOSHEET.pdf','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Templates/SaAS-HITH-INFOSHEET.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 09:51:06',0),(66236,'2021-04-17 02:32:07','2021-05-18 10:30:18','af08d0ac-9683-40d1-824a-a3503b45f9f6',1,'/content/Document/Planning/FIN_DOHHNA_171114(1).docx','','40.77.167.45','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Planning/FIN_DOHHNA_171114(1).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-18 10:30:18',0),(66237,'2021-04-17 02:36:37','2021-05-14 21:19:57','f554e22b-4aa8-4f69-82a1-fbb67be62f6e',1,'/page/news-and-events/events/upcoming/applied-suicide-intervention-skills-training/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/applied-suicide-intervention-skills-training','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-14 21:19:57',0),(66238,'2021-04-17 02:38:37','2021-05-10 15:29:12','2a559ab8-e361-414e-b38e-f8b03df7b4e8',1,'/page/news-and-events/latest-news/peaks-take-a-stand-on-marriage-equality','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/peaks-take-a-stand-on-marriage-equality','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-10 15:29:12',0),(66239,'2021-04-17 02:41:06','2021-04-22 22:32:17','87557e3c-3dff-41b2-9103-96a2cfbdeaa2',1,'/page/news-and-events/latest-news/upskilling-the-aged-care-workforce-in-dementia-care/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/news-and-events/latest-news/upskilling-the-aged-care-workforce-in-dementia-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-22 22:32:17',0),(66240,'2021-04-17 02:47:41','2021-05-08 06:35:12','f61fc0c6-a605-4a55-aa1d-c42fd4541f91',1,'/content/Document/Intuitive Eating Scale.pdf','','66.249.69.61','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Intuitive Eating Scale.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-08 06:35:12',0),(66241,'2021-04-17 02:54:16','2021-05-18 18:34:19','d20bdfee-16df-4ad5-9743-e8b28241c0c9',1,'/content/Document/PD_Exec Corp Services_170623.docx','','157.55.39.23','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/PD_Exec Corp Services_170623.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 18:34:19',0),(66242,'2021-04-17 02:58:42','2021-05-17 18:39:20','c210a4a2-fa1a-4efe-831e-64252f86782c',1,'/jobs/medical-receptionist-required-full-time','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/medical-receptionist-required-full-time','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,16,'2021-05-17 18:39:20',0),(66243,'2021-04-17 03:04:49','2021-05-17 00:45:13','a8fadee8-cac9-4cb6-b047-21c1c3850ed1',1,'/page/news-and-events/latest-news/rap-formalises-commitment-to-reconciliation/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/rap-formalises-commitment-to-reconciliation','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-17 00:45:13',0),(66244,'2021-04-17 03:04:54','2021-04-23 03:27:31','00dbd8ab-3c3d-46e0-8ebf-bf44efd4b3b8',1,'/content/Document/MR_Events%20inspire%20new%20thinking%20in%20mental%20health_161011.pdf','http://www.brisbanenorthphn.org.au/content/Document/MR_Events%2520inspire%2520new%2520thinking%2520in%2520mental%2520health_161011.pdf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/MR_Events inspire new thinking in mental health_161011.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-23 03:27:31',0),(66245,'2021-04-17 03:08:51','2021-04-23 17:58:18','fdcf77fc-8042-4b57-8871-9f66a7cdd977',1,'/yearinreview/www.brisbanenorthphn.org.au','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/www.brisbanenorthphn.org.au','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-23 17:58:18',0),(66246,'2021-04-17 03:10:32','2021-04-17 03:10:32','68af1235-f0e8-4a53-889a-501726e1196a',1,'/page/health-professionals/referral-and-patient-management/general-practice-liaison-officers','http://brisbanenorthphn.org.au/page/health-professionals/referral-and-patient-management/general-practice-liaison-officers','35.210.147.198','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/health-professionals/referral-and-patient-management/general-practice-liaison-officers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 03:10:32',0),(66247,'2021-04-17 03:16:58','2021-05-13 12:55:46','6c41158d-2b7a-43e6-8d53-8caa50ea78ed',1,'/content/Document/Network Link/Network Link_Aug_2019_WEB.pdf','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Network Link/Network Link_Aug_2019_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-13 12:55:46',0),(66248,'2021-04-17 03:27:07','2021-04-23 15:37:00','3c5598d1-ec3a-48f3-8255-e16e592c0660',1,'/content/Document/Events/Heart Matters e-invite.pdf','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Events/Heart Matters e-invite.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-23 15:37:00',0),(66249,'2021-04-17 03:31:08','2021-05-15 20:26:18','9cf8e18d-d95b-4d7e-abd5-f825b5cf53a8',1,'/page/about/our-team/senior-staff','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/our-team/senior-staff','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-15 20:26:18',0),(66250,'2021-04-17 03:33:16','2021-05-10 04:39:31','b1dc2d9e-c20a-4aaa-9c7b-438b8745232d',1,'/jobs/general-practitioner-4','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/general-practitioner-4','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-10 04:39:31',0),(66251,'2021-04-17 03:37:14','2021-04-29 20:37:25','f9f3e16b-e86a-48f5-9178-c2b1ad73d438',1,'/content/Document/Registration form - Metro North Health Forum 2018.docx','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Registration form - Metro North Health Forum 2018.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-29 20:37:25',0),(66252,'2021-04-17 03:37:29','2021-04-29 05:26:36','bda69b0f-3fb1-4fc4-a8b1-0982c1ed3052',1,'/page/news-and-events/latest-news/a-visit-from-future-healthcare-leaders/','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/a-visit-from-future-healthcare-leaders','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-29 05:26:36',0),(66253,'2021-04-17 03:41:15','2021-05-14 08:05:13','f8e35e00-8134-4f52-a1dd-7dda3aad6403',1,'/page/news-and-events/latest-news/antenatal-pharmacy-clinics-provide-advice-for-women-and-gps/','','66.249.69.63','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/latest-news/antenatal-pharmacy-clinics-provide-advice-for-women-and-gps','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-14 08:05:13',0),(66254,'2021-04-17 03:43:20','2021-05-18 00:23:05','a29a031e-2c1a-43da-9ce2-fa384a4def9e',1,'/page/publications','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 00:23:05',0),(66255,'2021-04-17 03:49:23','2021-05-06 01:46:31','870387d0-e06e-4020-8951-adb06a4e2f00',1,'/page/news-and-events/latest-news/the-importance-of-recognising-frailty-in-primary-care/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/the-importance-of-recognising-frailty-in-primary-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-06 01:46:31',0),(66256,'2021-04-17 03:49:31','2021-04-23 04:31:39','20a62413-a363-4e0e-b123-bb0b55a44673',1,'/content/Document/Templates/5.3/MNHHS%20RBWH%205_3%20BP.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%2520RBWH%25205_3%2520BP.rtf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS RBWH 5_3 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-23 04:31:39',0),(66257,'2021-04-17 03:50:12','2021-05-17 07:01:13','8e5d643b-1f10-44f8-898d-1cfb8560f150',1,'/page/news-and-events/events/upcoming/managing-with-care-dealing-with-underperformance-bullying-complaints-and-dismissals/','','40.77.167.15','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/managing-with-care-dealing-with-underperformance-bullying-complaints-and-dismissals','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 07:01:13',0),(66258,'2021-04-17 03:55:32','2021-05-14 18:12:11','a5044cf8-9819-46b9-94e8-e6b037a063e2',1,'/page/news-and-events/latest-news/registrations-now-open-trajectories-of-dying-workshop/','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/registrations-now-open-trajectories-of-dying-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-14 18:12:11',0),(66259,'2021-04-17 03:57:23','2021-04-17 03:57:23','46722296-4481-47b3-8763-8161f4eaccb9',1,'/content/Document/Planning/FINAL_AAWP Core Flexible_170717 WEBSITE.pdf','http://www.brisbanenorthphn.org.au/content/Document/Planning/FINAL_AAWP%20Core%20Flexible_170717%20WEBSITE.pdf','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/Planning/FINAL_AAWP Core Flexible_170717 WEBSITE.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 03:57:23',0),(66260,'2021-04-17 03:57:32','2021-05-06 01:51:18','f0859ec2-47fe-48e8-8d41-48de6f8a54d6',1,'/page/news-and-events/events/upcoming/training-in-the-management-of-acute-care-needs-of-racf-residents---pillin','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/training-in-the-management-of-acute-care-needs-of-racf-residents---pillin','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-06 01:51:18',0),(66261,'2021-04-17 04:01:49','2021-04-23 04:49:03','b9801a3a-50c7-466e-b62c-28f9a034d5fe',1,'/content/Document/Consortia%20in%20Aged%20Care%20(v1_0).pdf','http://www.brisbanenorthphn.org.au/content/Document/Consortia%2520in%2520Aged%2520Care%2520(v1_0).pdf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Consortia in Aged Care (v1_0).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-23 04:49:03',0),(66262,'2021-04-17 04:02:17','2021-05-17 07:00:24','5541117e-6352-442f-a002-5ebdbab2cd8d',1,'/content/Document/Primary care liaison/MNHHS Paediatric Ref v6_2 MD.rtf','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Primary care liaison/MNHHS Paediatric Ref v6_2 MD.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-17 07:00:24',0),(66263,'2021-04-17 04:03:29','2021-04-18 16:05:57','519cb278-2068-4c11-917b-205e4310b691',1,'/yearinreview/coordinated-care-for-older-people','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/coordinated-care-for-older-people','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-18 16:05:57',0),(66264,'2021-04-17 04:08:50','2021-04-23 23:40:25','4919363e-345a-4ccb-8447-0196498544c7',1,'/content/Document/Health alerts/MN Measles Poster 2019.pdf','http://www.brisbanenorthphn.org.au/content/Document/Health%20alerts/MN%20Measles%20Poster%202019.pdf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Health alerts/MN Measles Poster 2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-23 23:40:25',0),(66265,'2021-04-17 04:08:56','2021-05-17 07:48:22','72e9d9d8-7b55-4e4f-88f9-2d369f11005b',1,'/content/Document/Templates/5.3.1/MNHHS TPCH v5_3_1 ZM.rtf','','157.55.39.23','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/5.3.1/MNHHS TPCH v5_3_1 ZM.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-17 07:48:22',0),(66266,'2021-04-17 04:09:54','2021-04-17 04:09:54','a11dce7d-d73c-4e31-bfbb-5554ba9e8e5e',1,'/content/Document/Templates/5.3/MNHHS RBWH 5_3 BP.rtf','','207.46.13.49','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/5.3/MNHHS RBWH 5_3 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 04:09:54',0),(66267,'2021-04-17 04:10:59','2021-05-13 14:39:27','549c5cab-82e4-4a2f-9426-b41b45f857dc',1,'/content/Document/Pathways/LINK Z_Acute Coronary Syndrome.pdf','','93.158.161.35','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','Template not found: content/Document/Pathways/LINK Z_Acute Coronary Syndrome.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-13 14:39:27',0),(66268,'2021-04-17 04:15:12','2021-04-30 01:32:38','cde94847-f982-42a9-87ce-12ff828a1942',1,'/content/Document/Templates/4.3/MNHHS Maternity Referral BP v4.3.rtf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.3/MNHHS Maternity Referral BP v4.3.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-30 01:32:38',0),(66269,'2021-04-17 04:15:48','2021-05-18 07:19:26','8be26860-84ad-4133-a9ac-dcdc8955d0cd',1,'/page/news-and-events/events/upcoming/dementia-essentials---provide-support-to-people-living-with-dementia--burpengary','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/dementia-essentials---provide-support-to-people-living-with-dementia--burpengary','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-18 07:19:26',0),(66270,'2021-04-17 04:21:34','2021-05-02 06:48:22','d88d315d-a44a-4059-8858-585f9c8c1abd',1,'/content/Document/DRA_PD_MHAODProgSuppOffic_160627.pdf','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/DRA_PD_MHAODProgSuppOffic_160627.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-02 06:48:22',0),(66271,'2021-04-17 04:22:56','2021-04-17 04:22:56','6d832a7d-c344-471d-be73-fa05565fa6b3',1,'/content/Document/Templates/V5.1 Jan 2018/Best Practice/MNHHS RBWH Ref v5_1 BP.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/V5.1%20Jan%202018/Best%20Practice/MNHHS%20RBWH%20Ref%20v5_1%20BP.rtf','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/Templates/V5.1 Jan 2018/Best Practice/MNHHS RBWH Ref v5_1 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 04:22:56',0),(66272,'2021-04-17 04:24:59','2021-05-01 03:48:35','5fb84907-a07c-432b-a288-8385d9eff911',1,'/content/Document/Events/2018/Invitation - immunisation catch up events for pms updated.doc','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2018/Invitation - immunisation catch up events for pms updated.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 03:48:35',0),(66273,'2021-04-17 04:25:40','2021-05-16 07:45:05','9f8d1af3-acf0-4972-b7f6-ff13eede4ec1',1,'/page/news-and-events/latest-news/medical-outreach-trial-delivers-better-healthcare-for-older-people/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/medical-outreach-trial-delivers-better-healthcare-for-older-people','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 07:45:05',0),(66274,'2021-04-17 04:27:34','2021-04-17 04:27:34','62ad5d60-a2cf-4a32-9628-567c04fa50cf',1,'/content/Document/Events/StVincent\'sPrivateHospital_150818_neurology.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/StVincent\'sPrivateHospital_150818_neurology.pdf','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/Events/StVincent\'sPrivateHospital_150818_neurology.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 04:27:34',0),(66275,'2021-04-17 04:29:37','2021-05-12 19:05:20','0bb5ed87-eea6-49af-ba85-68ae5f1b5ed8',1,'/content/Document/Recovery/Getting started with My Mental Health Services eReferral_200219-WEB.pdf','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Recovery/Getting started with My Mental Health Services eReferral_200219-WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-12 19:05:20',0),(66276,'2021-04-17 04:31:10','2021-04-24 00:12:56','c23a22ed-9777-4e54-9e39-cb2b5af0d7f3',1,'/content/Document/Primary%20care%20liaison/DRA_eHealth%20PIP%20Shared%20Health%20Summary%20Uploads%20Tracker.docx','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/DRA_eHealth%2520PIP%2520Shared%2520Health%2520Summary%2520Uploads%2520Tracker.docx','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/DRA_eHealth PIP Shared Health Summary Uploads Tracker.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 00:12:56',0),(66277,'2021-04-17 04:33:16','2021-04-17 04:33:16','5755b054-b2b3-4e1f-95d9-cc0e14827354',1,'/content/Document/Brisbane MIND Provider List_NOV 2015_151123.pdf','http://www.brisbanenorthphn.org.au/content/Document/Brisbane%20MIND%20Provider%20List_NOV%202015_151123.pdf','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/Brisbane MIND Provider List_NOV 2015_151123.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 04:33:16',0),(66278,'2021-04-17 04:36:33','2021-04-17 04:36:33','b480496c-ecaa-47dd-a402-bba0b5c222ed',1,'/content/Document/Events/2019/WC Chermside 5+6DEC19.PDF','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/WC%20Chermside%205%2B6DEC19.PDF','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/Events/2019/WC Chermside 5 6DEC19.PDF','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 04:36:33',0),(66279,'2021-04-17 04:41:30','2021-04-17 04:41:30','6a216bbd-0732-4439-bfec-efb35d9da9a5',1,'/content/Document/Brisbane MIND Group Listing 2016-17 Apr V3.pdf','','66.249.68.29','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/Brisbane MIND Group Listing 2016-17 Apr V3.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 04:41:30',0),(66280,'2021-04-17 04:44:51','2021-05-17 14:40:51','391ca550-e62f-4db3-a9dc-342ce2425cde',1,'/content/Document/Templates/6.1/Specialists List_The Prince Charles Hospital_6_1.pdf','','40.77.167.45','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/6.1/Specialists List_The Prince Charles Hospital_6_1.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 14:40:51',0),(66281,'2021-04-17 04:47:34','2021-04-17 04:47:34','75f5d546-c2d9-432c-a09b-40f1e7638414',1,'/wp-content/plugins/apikey/apikey.php','','40.87.70.212','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-content/plugins/apikey/apikey.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 04:47:34',0),(66282,'2021-04-17 04:47:48','2021-04-17 04:47:48','205cde18-2aee-417a-8e0f-c55e26e806cc',1,'/plugins/content/apismtp/apismtp.php','','40.87.70.212','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: plugins/content/apismtp/apismtp.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 04:47:48',0),(66283,'2021-04-17 04:48:03','2021-04-17 04:48:03','7072768d-b614-4a5c-b69a-1f430c0e60db',1,'/wp-content/plugins/apikey/apikey.php.suspected','','40.87.70.212','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: wp-content/plugins/apikey/apikey.php.suspected','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 04:48:03',0),(66284,'2021-04-17 04:48:14','2021-04-17 04:48:14','32698cfd-c9cb-43c7-8851-757142458581',1,'/plugins/content/apismtp/apismtp.php.suspected','','40.87.70.212','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: plugins/content/apismtp/apismtp.php.suspected','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 04:48:14',0),(66285,'2021-04-17 04:49:44','2021-04-21 19:11:54','ad16f741-c03f-431a-9fb8-5cab79e0b467',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---kenmore-village/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---kenmore-village','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-21 19:11:54',0),(66286,'2021-04-17 04:54:00','2021-05-17 20:26:35','acad1c1e-3e1d-4e02-8194-ba724cecda72',1,'/jobs/rn-position-1','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/rn-position-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 20:26:35',0),(66287,'2021-04-17 05:00:19','2021-04-17 05:00:19','7fb29a5a-cfdb-4400-804c-9365c79e340d',1,'/content/Document/Network Link/Network Link_April_2019 WEB(1).pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%20Link/Network%20Link_April_2019%20WEB(1).pdf','35.225.91.148','Go-http-client/1.1','Template not found: content/Document/Network Link/Network Link_April_2019 WEB(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 05:00:19',0),(66288,'2021-04-17 05:01:58','2021-04-24 16:35:43','34c870de-6601-4adc-9eec-dd46ad6c580f',1,'/yearinreview/mental-health-suicide-prevention-and-alcohol-and-other-drug-services','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/mental-health-suicide-prevention-and-alcohol-and-other-drug-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 16:35:43',0),(66289,'2021-04-17 05:10:06','2021-05-14 18:14:20','5891bce4-07de-4995-a760-09f7f4c49db4',1,'/page/privacy-policy','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/privacy-policy','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-14 18:14:20',0),(66290,'2021-04-17 05:12:06','2021-05-17 10:48:05','34a9c91b-4156-4e16-ba28-52217ec8079c',1,'/page/news-and-events/events/upcoming/foundation-for-trauma-informed-care-and-practice-level-1/','','40.77.167.15','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/foundation-for-trauma-informed-care-and-practice-level-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-17 10:48:05',0),(66291,'2021-04-17 05:14:06','2021-05-08 23:54:38','86f5fee7-be67-4ea1-ae8f-47d465f9f89f',1,'/page/news-and-events/events/upcoming/workforce-capacity-building-self-care-and-self-compassion','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/workforce-capacity-building-self-care-and-self-compassion','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-08 23:54:38',0),(66292,'2021-04-17 05:14:53','2021-04-17 05:14:53','869a75ab-3622-448a-b7f7-63282c461740',1,'/content/Document/Templates/4.9/MNHHS TPCH Referral MD v4_9.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.9/MNHHS%20TPCH%20Referral%20MD%20v4_9.rtf','35.225.91.148','Go-http-client/1.1','Template not found: content/Document/Templates/4.9/MNHHS TPCH Referral MD v4_9.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 05:14:53',0),(66293,'2021-04-17 05:15:22','2021-04-17 05:15:22','7452680a-0f53-4c3f-9811-a70034237755',1,'/page/about/careers/publications-and-communications-officer/','','173.212.220.70','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/about/careers/publications-and-communications-officer','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 05:15:22',0),(66294,'2021-04-17 05:15:46','2021-04-17 05:15:46','105d48fc-0985-4fa9-a54e-97e55f0517c3',1,'/page/health-professionals/Local Positions Vacant/receptionist-required---bardon-rainworth-medical-centre/','','173.212.220.70','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/health-professionals/Local Positions Vacant/receptionist-required---bardon-rainworth-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 05:15:46',0),(66295,'2021-04-17 05:24:07','2021-05-09 20:33:32','2fd18000-81fa-41f8-b2ab-672c8ec79afd',1,'/page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health-june-2017/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health-june-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-09 20:33:32',0),(66296,'2021-04-17 05:26:15','2021-04-22 14:02:57','24183385-6778-4a5b-ba08-2eb3a98eb403',1,'/page/news-and-events/events/upcoming/maternity-workshop','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/maternity-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-22 14:02:57',0),(66297,'2021-04-17 05:28:07','2021-05-12 16:10:40','33954a2c-901a-4811-b675-8aecbc1247f9',1,'/content/Document/Fact sheet - stepped care.pdf','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Fact sheet - stepped care.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,14,'2021-05-12 16:10:40',0),(66298,'2021-04-17 05:28:37','2021-05-03 14:02:35','b2acff4a-307d-4db8-82b3-aed3de45d7fe',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---rochedale/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---rochedale','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-03 14:02:35',0),(66299,'2021-04-17 05:32:15','2021-05-02 22:40:01','65039e1b-c741-475f-bd9c-34da004c3559',1,'/content/Image/Directors staff/Executives/WEB_RAOULROSS.jpg','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Directors staff/Executives/WEB_RAOULROSS.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-02 22:40:01',0),(66300,'2021-04-17 05:39:04','2021-04-24 01:49:53','e2f7b2db-d020-490b-b44c-3acae995d0c7',1,'/content/Document/Events/2018/ICIF-COPD-Project-GP-ALM-2018_Wednesdays(1).pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2018/ICIF-COPD-Project-GP-ALM-2018_Wednesdays(1).pdf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Events/2018/ICIF-COPD-Project-GP-ALM-2018_Wednesdays(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 01:49:53',0),(66301,'2021-04-17 05:42:19','2021-05-12 09:31:24','6e56342b-066e-4218-828d-b9455c64f5dc',1,'/jobs/part-time-team-leader','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/part-time-team-leader','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-12 09:31:24',0),(66302,'2021-04-17 05:42:43','2021-05-14 10:56:29','641a3db2-0032-469b-8263-008012b24e10',1,'/content/Document/Planning/FIN_AAWP_Primary Mental Health Care 18-19_180514 WEB.pdf','','66.249.69.63','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Planning/FIN_AAWP_Primary Mental Health Care 18-19_180514 WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-14 10:56:29',0),(66303,'2021-04-17 05:44:27','2021-04-17 05:44:27','b19df7ac-deda-4ff2-a4d1-9944006e3546',1,'/content/Document/FLYER_The Virtue of Complaint(1).pdf','','66.249.68.2','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/FLYER_The Virtue of Complaint(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 05:44:27',0),(66304,'2021-04-17 05:46:18','2021-05-14 06:54:44','4a78a1fd-d507-4d31-b94e-d01e496d9995',1,'/content/Document/Templates/5.2/Specialists List_The Prince Charles Hospital_5_2.pdf','','66.249.69.63','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Templates/5.2/Specialists List_The Prince Charles Hospital_5_2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-14 06:54:44',0),(66305,'2021-04-17 05:48:20','2021-05-16 10:14:23','1fac408f-c016-4ee1-a5c7-c7c6886225ba',1,'/events/paediatric-masterclass-for-general-practice-the-first-2000-days','','62.210.188.216','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)','Template not found: events/paediatric-masterclass-for-general-practice-the-first-2000-days','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 10:14:23',0),(66306,'2021-04-17 05:50:18','2021-05-09 19:13:56','14dc5922-a945-4642-9269-cbc2aa203fc7',1,'/jobs/experienced-medical-receptionist','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/experienced-medical-receptionist','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-09 19:13:56',0),(66307,'2021-04-17 05:52:25','2021-05-19 01:01:53','4009455b-b1a5-4caa-bcd6-ede310976d48',1,'/page/health-professionals/Local Positions Vacant','','17.121.113.169','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','Template not found: page/health-professionals/Local Positions Vacant','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-19 01:01:53',0),(66308,'2021-04-17 05:56:21','2021-05-16 09:58:47','73789f24-5231-49e1-b9aa-4872f34b66a4',1,'/jobs/project-officer-care-coordination-6-month-contract','','62.210.188.216','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)','Template not found: jobs/project-officer-care-coordination-6-month-contract','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 09:58:47',0),(66309,'2021-04-17 05:56:58','2021-05-02 15:16:07','59027c53-69d5-4431-a964-66a1fb32a82f',1,'/gtm.start','','35.243.166.16','ZoominfoBot (zoominfobot at zoominfo dot com)','Template not found: gtm.start','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-02 15:16:07',0),(66310,'2021-04-17 06:00:38','2021-05-06 14:38:57','0a2616f3-34f0-4106-83c1-e3f83ea49f02',1,'/content/Document/RACGP SMD Policy Template.doc','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/RACGP SMD Policy Template.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-06 14:38:57',0),(66311,'2021-04-17 06:03:45','2021-04-18 00:38:55','e2385f85-0ea2-4fc0-986d-a19451e32e45',1,'/content/Document/MNHHS Specialist Palliative Care Referral.docx','http://www.brisbanenorthphn.org.au/content/Document/MNHHS%20Specialist%20Palliative%20Care%20Referral.docx','35.225.91.148','Go-http-client/1.1','Template not found: content/Document/MNHHS Specialist Palliative Care Referral.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-18 00:38:55',0),(66312,'2021-04-17 06:04:30','2021-05-18 11:31:29','1b9e7766-3556-4dd6-a334-a9ebd07aae34',1,'/events/pallipharm-workshop-4','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/pallipharm-workshop-4','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-18 11:31:29',0),(66313,'2021-04-17 06:06:39','2021-04-23 14:31:26','9dc4d4b1-56d6-4752-9be4-feb7ada6d56b',1,'/page/news-and-events/latest-news/gp-smart-referrals-rolling-out-now','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/gp-smart-referrals-rolling-out-now','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-23 14:31:26',0),(66314,'2021-04-17 06:07:02','2021-04-21 16:57:43','a2784f23-b3f3-4990-a8a4-36648d43e0fd',1,'/page/health-professionals/mental-health-services/our-approach-to-stepped-care','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/our-approach-to-stepped-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-21 16:57:43',0),(66315,'2021-04-17 06:08:07','2021-05-12 00:11:27','ff74f354-51b8-456a-bd69-5355f49fcdd5',1,'/content/Document/Planning/FIN_AAWP_Suicide Prevention Trial 18-19_180529 WEB.pdf','','115.70.218.202','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','Template not found: content/Document/Planning/FIN_AAWP_Suicide Prevention Trial 18-19_180529 WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-12 00:11:27',0),(66316,'2021-04-17 06:08:28','2021-05-16 13:59:27','1c832e15-cbe2-44ac-8622-a98d89362cb6',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-kallangur-bsmc','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-kallangur-bsmc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 13:59:27',0),(66317,'2021-04-17 06:10:29','2021-04-24 07:37:59','07a3b591-6f70-40b0-95ae-c5a22bec6139',1,'/page/health-professionals/medical-assisting/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/medical-assisting','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-24 07:37:59',0),(66318,'2021-04-17 06:17:27','2021-05-07 13:47:24','97723b4c-183e-4fc0-8347-7f8926d2a938',1,'/content/Document/Pathways/169168_metho.pdf','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/169168_metho.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 13:47:24',0),(66319,'2021-04-17 06:20:05','2021-04-17 06:20:05','f72b0e14-8434-4c1c-9e32-818ff62e2e22',1,'/content/Document/Brisbane MIND Service Provider Guidelines JANUARY 2018_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Brisbane%20MIND%20Service%20Provider%20Guidelines%20JANUARY%202018_WEB.pdf','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/Brisbane MIND Service Provider Guidelines JANUARY 2018_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 06:20:05',0),(66320,'2021-04-17 06:20:39','2021-05-07 04:52:29','bee81840-961c-4d97-bf7a-6b0a4edd38d4',1,'/content/Document/Network Link/Network_Link_Oct2019_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%20Link/Network_Link_Oct2019_WEB.pdf','35.192.197.124','Go-http-client/1.1','Template not found: content/Document/Network Link/Network_Link_Oct2019_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-07 04:52:29',0),(66321,'2021-04-17 06:24:30','2021-04-30 02:14:11','90df24e9-58f0-4f8c-870f-25e9d987730d',1,'/content/Document/From Qld Health/Funded influenza vaccine for children 6 months to less than 5 years.pdf','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/From Qld Health/Funded influenza vaccine for children 6 months to less than 5 years.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-30 02:14:11',0),(66322,'2021-04-17 06:26:30','2021-04-29 18:02:23','5f53fd34-1141-45e8-af00-20bb97ce1277',1,'/page/news-and-events/latest-news/metro-north-hospital-and-health-service-2018-link-innovation-funding-now-open','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/metro-north-hospital-and-health-service-2018-link-innovation-funding-now-open','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-29 18:02:23',0),(66323,'2021-04-17 06:30:30','2021-05-07 13:29:44','91946c23-f095-4836-af13-86491e83b3cc',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---caboolture/','','66.249.69.33','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---caboolture','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-07 13:29:44',0),(66324,'2021-04-17 06:36:44','2021-04-17 06:36:44','94f06d43-daf6-4366-8f86-cf416436730e',1,'/page/health-professionals/mental-health-services/mental-health-tenders-open/','','207.46.13.74','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/mental-health-services/mental-health-tenders-open','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 06:36:44',0),(66325,'2021-04-17 06:38:30','2021-05-08 02:19:05','ea18056f-5660-43e3-8ef8-24b6a0337c3c',1,'/yearinreview/2017-18/coordinated-care-for-older-people/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: yearinreview/2017-18/coordinated-care-for-older-people','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-08 02:19:05',0),(66326,'2021-04-17 06:40:30','2021-04-24 12:41:25','2abd90ab-4b0e-46b1-bb1a-a1c5273cdbdc',1,'/page/community/Immunisation/doctor-dad-joins-medical-mums-immunisation-campaign','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/community/Immunisation/doctor-dad-joins-medical-mums-immunisation-campaign','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-24 12:41:25',0),(66327,'2021-04-17 06:42:32','2021-05-07 17:03:24','d6e2d1c1-e486-4123-abd6-bb81e2e06d1c',1,'/page/health-professionals/MHAOD/funded-mental-health-services/youth-mental-health-services','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/MHAOD/funded-mental-health-services/youth-mental-health-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 17:03:24',0),(66328,'2021-04-17 06:45:12','2021-05-12 04:46:27','1a3d9f91-b5af-42b5-828b-1bc76bdb018a',1,'/yearinreview/who-is-brisbane-north-phn/','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: yearinreview/who-is-brisbane-north-phn','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,21,'2021-05-12 04:46:27',0),(66329,'2021-04-17 06:46:49','2021-05-14 07:29:52','646b41ff-7e7a-4dd9-a417-7403bd53a9d7',1,'/page/health-professionals/ndis','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/ndis','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-14 07:29:52',0),(66330,'2021-04-17 06:48:30','2021-05-09 10:39:57','85584f21-5151-4b8f-8dbf-8109f78f59d8',1,'/page/news-and-events/latest-news/gp-smart-referrals-rolling-out-now/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/gp-smart-referrals-rolling-out-now','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-09 10:39:57',0),(66331,'2021-04-17 06:51:30','2021-04-30 00:58:58','84a4ba89-e911-4a24-9af6-9583ba892531',1,'/content/Document/Pathways/HealthPathways Program Update_May 2019.pdf','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/HealthPathways Program Update_May 2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-30 00:58:58',0),(66332,'2021-04-17 06:54:30','2021-05-14 23:16:36','adb9e054-ae14-449e-9e6e-280a5360b4ce',1,'/page/community/my-health-record/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/community/my-health-record','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-14 23:16:36',0),(66333,'2021-04-17 06:57:19','2021-04-23 08:57:30','225f21c5-116b-457f-89fd-12a3bac3860c',1,'/content/Document/FORM%205a%20-%20Clinician%20withdrawing%20from%20Program(1).docx','http://www.brisbanenorthphn.org.au/content/Document/FORM%25205a%2520-%2520Clinician%2520withdrawing%2520from%2520Program(1).docx','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/FORM 5a - Clinician withdrawing from Program(1).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-23 08:57:30',0),(66334,'2021-04-17 07:00:30','2021-05-12 00:06:04','1c759d3b-7d14-453a-aa94-d51649a7c8c2',1,'/page/news-and-events/events','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-12 00:06:04',0),(66335,'2021-04-17 07:06:32','2021-05-16 11:46:05','86a02531-130f-4715-ae8c-6dad4d230f9d',1,'/content/Media/Genie v6.2/MNHHS Maternity Referral v6.2_Genie.4W7','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Media/Genie v6.2/MNHHS Maternity Referral v6.2_Genie.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-16 11:46:05',0),(66336,'2021-04-17 07:11:46','2021-04-17 17:43:09','71cebcb9-855c-4e16-845b-543d8dbd2086',1,'/fm/','','207.46.13.106','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: fm','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-17 17:43:09',0),(66337,'2021-04-17 07:14:33','2021-05-18 05:26:34','91e11f91-0cce-421e-a6a6-6efccedfe9c7',1,'/page/health-professionals/Local Positions Vacant/miracle-health-pty-ltd','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/miracle-health-pty-ltd','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-18 05:26:34',0),(66338,'2021-04-17 07:14:33','2021-04-18 15:34:35','22dc8075-a0ba-4818-bbf1-d386b5d3eb10',1,'/content/Document/LINK E_Diagnosing Osteoporosis by Bone Mineral Density.pdf','http://www.brisbanenorthphn.org.au/content/Document/LINK%20E_Diagnosing%20Osteoporosis%20by%20Bone%20Mineral%20Density.pdf','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/LINK E_Diagnosing Osteoporosis by Bone Mineral Density.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-18 15:34:35',0),(66339,'2021-04-17 07:16:43','2021-04-18 13:06:24','345642b3-521a-41e8-8256-62a6b734f048',1,'/content/Document/Invitation to September Educational Event.pdf','','78.46.90.120','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.67 Safari/537.36','Template not found: content/Document/Invitation to September Educational Event.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-18 13:06:24',0),(66340,'2021-04-17 07:18:57','2021-04-24 08:51:58','cee4230e-f91b-4890-bfee-325536def40a',1,'/page/news-and-events/events/upcoming/suicide-risk-assessment-and-techniques-for-responding-to-suicidal-persons-north-lakes/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/suicide-risk-assessment-and-techniques-for-responding-to-suicidal-persons-north-lakes','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-04-24 08:51:58',0),(66341,'2021-04-17 07:20:19','2021-04-23 09:29:20','ca713650-5e25-4f15-bf7a-b376523fed05',1,'/content/Document/LBP Module Flyer 2018.docx','http://www.brisbanenorthphn.org.au/content/Document/LBP%20Module%20Flyer%202018.docx','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/LBP Module Flyer 2018.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-23 09:29:20',0),(66342,'2021-04-17 07:21:28','2021-04-23 09:30:57','615a7799-0813-42c0-a5b0-db4636886b7e',1,'/content/Document/Templates/5.3/MNHHS%20Paediatric%20v5_3%20ZM.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%2520Paediatric%2520v5_3%2520ZM.rtf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS Paediatric v5_3 ZM.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-23 09:30:57',0),(66343,'2021-04-17 07:22:33','2021-05-16 10:16:18','b8f72238-2c09-4ae1-b40a-bd067bbdea75',1,'/jobs/vr-gp-in-a-beautiful-modern-private-clinic-albion-brisbane-ft-pt','','62.210.188.216','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)','Template not found: jobs/vr-gp-in-a-beautiful-modern-private-clinic-albion-brisbane-ft-pt','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-16 10:16:18',0),(66344,'2021-04-17 07:28:28','2021-04-25 07:28:23','d1905a99-40a3-496a-bc3f-4ffac52298f1',1,'/page/news-and-events/latest-news/screening-tests-for-patients-of-gap-free-smile-dental-practice-carina/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/screening-tests-for-patients-of-gap-free-smile-dental-practice-carina','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-25 07:28:23',0),(66345,'2021-04-17 07:30:35','2021-05-13 17:17:55','5efe0818-eaae-4345-9765-e49fd4916d33',1,'/content/Document/Pathways/Dental Referral Refugees.pdf','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Dental Referral Refugees.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-13 17:17:55',0),(66346,'2021-04-17 07:40:25','2021-04-17 07:40:25','1c8ce7e0-4041-47fe-afcd-f7dcab179d82',1,'/fr/model/vikaohair/','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: fr/model/vikaohair','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 07:40:25',0),(66347,'2021-04-17 07:42:55','2021-05-14 18:16:31','ab2b2fba-55ab-4d43-8db6-d4107026414f',1,'/jobs/brisbane-north-vr-no-lock-in-contracts-flexible-work-hours-mixed-billing','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/brisbane-north-vr-no-lock-in-contracts-flexible-work-hours-mixed-billing','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-14 18:16:31',0),(66348,'2021-04-17 07:52:14','2021-05-15 08:50:50','ac69e88b-8312-4c05-8fcf-007ffb6999ea',1,'/content/Document/Media Releases/MR_Dr Trish Baker re-elected to PHN Board at AGM_181119.pdf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Media Releases/MR_Dr Trish Baker re-elected to PHN Board at AGM_181119.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 08:50:50',0),(66349,'2021-04-17 08:01:24','2021-05-02 21:46:38','03f3329d-cb0d-414d-9735-71b0b5dfe636',1,'/content/Document/Primary care liaison/MNHHS Redcliffe Ref BP v6_2(1).rtf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Primary care liaison/MNHHS Redcliffe Ref BP v6_2(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-02 21:46:38',0),(66350,'2021-04-17 08:09:35','2021-05-08 02:25:41','94dca982-daaa-4be8-bb45-6a2d77fa041d',1,'/content/Document/Templates/4.4/MNHHS Maternity Referral BP v4.4.rtf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.4/MNHHS Maternity Referral BP v4.4.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-08 02:25:41',0),(66351,'2021-04-17 08:10:47','2021-04-17 08:10:47','d338d949-7578-4a6f-af4e-f348d38481da',1,'/events/borderline-personality-disorder-implications-for-clinical-practice','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/borderline-personality-disorder-implications-for-clinical-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 08:10:47',0),(66352,'2021-04-17 08:12:47','2021-05-18 19:34:17','3c34c341-c0f2-4af9-83dc-f9d667975ac5',1,'/jobs/gp-position-available-kallangur','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/gp-position-available-kallangur','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,26,'2021-05-18 19:34:17',0),(66353,'2021-04-17 08:14:47','2021-05-16 16:03:38','4b4ecb97-2557-4dce-8df2-602fbbb4c737',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---bray-park','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---bray-park','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 16:03:38',0),(66354,'2021-04-17 08:15:19','2021-04-17 08:15:19','b938b098-da51-41c1-8bb3-670bba0324df',1,'/content/Document/2 pager for navigator recruitment.pdf','http://www.brisbanenorthphn.org.au/content/Document/2%20pager%20for%20navigator%20recruitment.pdf','35.225.91.148','Go-http-client/1.1','Template not found: content/Document/2 pager for navigator recruitment.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 08:15:19',0),(66355,'2021-04-17 08:18:47','2021-05-02 11:45:41','02cec7e1-1075-49e5-837e-5aca355d8006',1,'/page/news-and-events/events/upcoming/wesley-lifeforce-suicide-prevention-practice-staff-workshop---ashgrove/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/wesley-lifeforce-suicide-prevention-practice-staff-workshop---ashgrove','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-02 11:45:41',0),(66356,'2021-04-17 08:21:11','2021-04-20 23:06:58','affc9e4c-ca7a-4bc4-bac9-fc59fb6904d9',1,'/content/Document/Brisbane MIND Provider List August 2017(5).pdf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List August 2017(5).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-20 23:06:58',0),(66357,'2021-04-17 08:21:21','2021-05-13 05:28:12','247d74af-8330-4aba-a65b-82769594d262',1,'/page/health-professionals/mental-health-services/aboriginal-and-torres-strait-islander-people','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/aboriginal-and-torres-strait-islander-people','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-13 05:28:12',0),(66358,'2021-04-17 08:23:19','2021-05-17 10:17:39','cc2cae3f-8598-4281-ab9b-64021a0af983',1,'/content/Document/Planning/2015-16HNA_ExecutiveSummary.pdf','','40.77.167.15','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Planning/2015-16HNA_ExecutiveSummary.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-17 10:17:39',0),(66359,'2021-04-17 08:36:57','2021-05-09 13:48:26','35d6bb79-ea40-44ef-bf5d-fad3ca29d26a',1,'/events/what-matters-most-advance-care-planning-and-discussion-starters','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/what-matters-most-advance-care-planning-and-discussion-starters','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-09 13:48:26',0),(66360,'2021-04-17 08:36:59','2021-05-11 18:50:28','cef377a0-c4f7-4665-ae54-f58f3e7e4faf',1,'/page/health-professionals/referral-and-patient-management/directories/service-navigator/','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/referral-and-patient-management/directories/service-navigator','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-11 18:50:28',0),(66361,'2021-04-17 08:45:42','2021-04-18 10:44:25','7f6abde3-314f-4131-8beb-3dbea371e1ed',1,'/content/Document/Events/2018/Invitation - Motivational Interviewing 2018 (002).pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2018/Invitation%20-%20Motivational%20Interviewing%202018%20(002).pdf','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/Events/2018/Invitation - Motivational Interviewing 2018 (002).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-18 10:44:25',0),(66362,'2021-04-17 08:49:55','2021-05-17 10:38:23','b95660f0-21fb-4c3f-907c-133a11ecd0a4',1,'/content/Document/MHAOD_Recovery_newsletter_March_2017_FINAL_WEB.pdf','','40.77.167.45','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/MHAOD_Recovery_newsletter_March_2017_FINAL_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 10:38:23',0),(66363,'2021-04-17 08:54:24','2021-05-03 21:28:09','5fa382bd-717c-4165-b7b8-4bff5215074a',1,'/content/Document/Palliative Care Program Oxygen Funding Application Form.pdf','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Palliative Care Program Oxygen Funding Application Form.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-03 21:28:09',0),(66364,'2021-04-17 08:59:07','2021-05-18 05:14:54','65554a4f-f9e6-414a-bac2-92ee3cb9c2db',1,'/content/Document/AMC flyer - Bris.pdf','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/AMC flyer - Bris.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 05:14:54',0),(66365,'2021-04-17 09:01:09','2021-05-19 03:04:31','259615f5-b822-4db6-9c9f-de9338d9eea9',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---sandstone-point','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---sandstone-point','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-19 03:04:31',0),(66366,'2021-04-17 09:03:11','2021-05-16 09:12:52','60812260-8968-4cca-91b4-0783ed1db9d8',1,'/page/health-professionals/mental-health-services/alcohol-and-other-drug-treatment-services','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/alcohol-and-other-drug-treatment-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-16 09:12:52',0),(66367,'2021-04-17 09:05:11','2021-05-16 13:52:31','ea873613-430e-4bc0-b379-e383fd730319',1,'/page/news-and-events/latest-news/review-of-health-priorities','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/review-of-health-priorities','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 13:52:31',0),(66368,'2021-04-17 09:08:38','2021-04-23 12:01:04','46ea47aa-c4b9-4c92-89b2-d51d7d2790fc',1,'/content/Document/Primary%20care%20liaison/MNHHS%20Paediatric%20Ref%20v6_2%20ZM.rtf','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/MNHHS%2520Paediatric%2520Ref%2520v6_2%2520ZM.rtf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/MNHHS Paediatric Ref v6_2 ZM.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-23 12:01:04',0),(66369,'2021-04-17 09:15:11','2021-05-12 21:47:59','962ead95-1360-4fb1-ab9e-584c3ab70c53',1,'/events/a-structured-approach-to-managing-dementia-in-general-practice','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/a-structured-approach-to-managing-dementia-in-general-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-12 21:47:59',0),(66370,'2021-04-17 09:23:58','2021-05-17 18:05:58','f320fbc1-ae85-41cc-9f77-0f98c8d759df',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---burpengary','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---burpengary','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-17 18:05:58',0),(66371,'2021-04-17 09:27:13','2021-04-17 09:27:13','1b8a51ff-a170-47c2-acbb-5077f397d693',1,'/content/Document/MNHHS TPCH Referral ZM v4_11(1).rtf','http://www.brisbanenorthphn.org.au/content/Document/MNHHS%20TPCH%20Referral%20ZM%20v4_11(1).rtf','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/MNHHS TPCH Referral ZM v4_11(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 09:27:13',0),(66372,'2021-04-17 09:38:50','2021-04-17 09:38:50','2dffb1de-09de-46db-a1fd-1a877f63c508',1,'/content/Document/Events/2019/Brisbane North APNA Network Meeting June Invitation update RSVP.docx','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/Brisbane%20North%20APNA%20Network%20Meeting%20June%20Invitation%20update%20RSVP.docx','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/Events/2019/Brisbane North APNA Network Meeting June Invitation update RSVP.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 09:38:50',0),(66373,'2021-04-17 09:39:07','2021-05-17 17:26:27','03dde967-3581-499c-9fea-3bf38a19f554',1,'/content/Document/ACU OT Rheumatology Clinic Flyer 2016.pdf','','207.46.13.74','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/ACU OT Rheumatology Clinic Flyer 2016.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 17:26:27',0),(66374,'2021-04-17 09:39:41','2021-05-06 15:22:12','f3012e81-57b2-44fa-8876-1a83c98e7db5',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---lutwyche','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---lutwyche','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-06 15:22:12',0),(66375,'2021-04-17 09:41:34','2021-05-13 20:45:42','c127ea70-3af0-46b5-9291-9f98f5ea112a',1,'/events/recruiting-interviewing-outside-the-textbooks','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/recruiting-interviewing-outside-the-textbooks','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-13 20:45:42',0),(66376,'2021-04-17 09:44:20','2021-04-25 03:44:26','f55e36de-20d0-4a42-a281-06095d6f8375',1,'/content/Document/Templates/5.3/MNHHS Maternity Booking-in 5_3 MD .rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%20Maternity%20Booking-in%205_3%20MD%20.rtf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS Maternity Booking-in 5_3 MD .rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-25 03:44:26',0),(66377,'2021-04-17 09:45:39','2021-05-07 20:47:01','f23029a3-5537-4f94-a55f-67c3fa2a35b9',1,'/content/Document/Mental health/My Mental Health Services map 2020 web.pdf','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Mental health/My Mental Health Services map 2020 web.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-07 20:47:01',0),(66378,'2021-04-17 09:51:00','2021-05-09 05:16:17','50201601-8dca-4d0e-9963-d7569bd09745',1,'/content/Document/Brisbane North PHN - 2016 - 2019 Strategic plan.pdf','','66.249.64.63','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Brisbane North PHN - 2016 - 2019 Strategic plan.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-09 05:16:17',0),(66379,'2021-04-17 09:52:10','2021-05-08 20:23:39','569aee49-5e0b-41eb-bcae-9a18abba82d9',1,'/page/health-professionals/immunisation','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/immunisation','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-08 20:23:39',0),(66380,'2021-04-17 09:54:00','2021-05-09 10:55:03','4ec864bc-f35e-4e2b-97f6-da2ad110b1f0',1,'/content/Document/Pathways/Wound care_Types of Compression Systems.pdf','','77.88.5.51','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','Template not found: content/Document/Pathways/Wound care_Types of Compression Systems.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-09 10:55:03',0),(66381,'2021-04-17 09:54:15','2021-05-15 05:37:02','5987b3ae-aade-4915-b2e8-db06211c8d8b',1,'/jobs/psychologist-australian-doctors-clinic-kenmore','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/psychologist-australian-doctors-clinic-kenmore','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 05:37:02',0),(66382,'2021-04-17 09:55:43','2021-04-25 09:51:07','5d5c30a7-e525-420a-a272-641700b7b93f',1,'/page/news-and-events/latest-news/copd-project-continues-to-roll-out-in-2018','http://brisbanenorthphn.org.au/page/news-and-events/latest-news/copd-project-continues-to-roll-out-in-2018','35.210.13.250','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/latest-news/copd-project-continues-to-roll-out-in-2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-25 09:51:07',0),(66383,'2021-04-17 09:59:57','2021-04-23 04:00:56','e3c76969-abf0-497c-aa59-52cef8999b9a',1,'/page/news-and-events/events/upcoming/wesley-lifeforce-suicide-prevention-gp-and-nurse-workshop---ashgrove/','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/wesley-lifeforce-suicide-prevention-gp-and-nurse-workshop---ashgrove','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-23 04:00:56',0),(66384,'2021-04-17 10:03:37','2021-05-13 01:28:29','3ef9b201-5861-44b1-a8c5-c110a6e8d7c4',1,'/page/news-and-events/events/archive/outbreak-management-in-residential-aged-care---how-prepared-are-you','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/outbreak-management-in-residential-aged-care---how-prepared-are-you','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-13 01:28:29',0),(66385,'2021-04-17 10:07:39','2021-04-24 08:13:25','21cb3c98-b7c1-433f-a7ce-ef0f7b3dcbb7',1,'/content/Document/Templates/4.4/MNHHS TPCH Referral MD v4.4.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.4/MNHHS%20TPCH%20Referral%20MD%20v4.4.rtf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Templates/4.4/MNHHS TPCH Referral MD v4.4.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 08:13:25',0),(66386,'2021-04-17 10:09:35','2021-04-22 20:47:59','eaf8d937-aff9-44b5-954d-3db706422d79',1,'/content/Document/Legionella in hospital water supply_Approved.pdf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Legionella in hospital water supply_Approved.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-22 20:47:59',0),(66387,'2021-04-17 10:10:50','2021-05-13 22:43:32','8b747cb3-0b8a-4ff0-8166-325f87b81ef5',1,'/page/health-professionals/Local Positions Vacant/general-practition-with-special-interest-gpwsi---caboolture','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practition-with-special-interest-gpwsi---caboolture','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,16,'2021-05-13 22:43:32',0),(66388,'2021-04-17 10:14:34','2021-05-11 23:17:43','e886b6ae-dc70-4c77-8b56-f7f43931ff1e',1,'/page/news-and-events/latest-news/covid-19-information/access-to-surgical-masks-for-general-practice-and-pharmacies/','','173.252.83.18','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: page/news-and-events/latest-news/covid-19-information/access-to-surgical-masks-for-general-practice-and-pharmacies','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-11 23:17:43',0),(66389,'2021-04-17 10:16:29','2021-05-03 07:16:35','617698a4-a542-468e-8152-c870a1c9c2e4',1,'/content/Document/Templates/4.12/MD v4.12/MNHHS Maternity MD V4_12.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.12/MD%20v4.12/MNHHS%20Maternity%20MD%20V4_12.rtf','34.73.220.108','Go-http-client/1.1','Template not found: content/Document/Templates/4.12/MD v4.12/MNHHS Maternity MD V4_12.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-03 07:16:35',0),(66390,'2021-04-17 10:20:14','2021-05-01 10:13:09','da501985-75e2-466b-828a-19b1c7f53cfb',1,'/events/brisbane-north-aged-care-online-forum','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/brisbane-north-aged-care-online-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-01 10:13:09',0),(66391,'2021-04-17 10:26:09','2021-04-17 10:26:09','ae0ee4f1-7239-4f39-a0ff-917e65017fa6',1,'/jobs/general-practitioner-redcliffe','','207.46.13.49','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/general-practitioner-redcliffe','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 10:26:09',0),(66392,'2021-04-17 10:27:44','2021-05-19 02:55:43','4ccaa075-48ed-4512-9e15-2db65735afee',1,'/page/news-and-events/latest-news/vale-jeff-cheverton','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/vale-jeff-cheverton','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-19 02:55:43',0),(66393,'2021-04-17 10:28:43','2021-04-20 06:50:37','3b34636e-fe4d-4e90-aa2a-0d00deda8178',1,'/page/news-and-events/events/archive/sterilisationseminar-teammedicalsupplies/','','66.249.66.155','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/archive/sterilisationseminar-teammedicalsupplies','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-20 06:50:37',0),(66394,'2021-04-17 10:29:27','2021-04-17 10:29:27','2d698959-e23f-4872-9784-07385144192f',1,'/content/Document/Templates/4.8/MNHHS Redcliffe Referral PractiX v4_8.doc','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.8/MNHHS%20Redcliffe%20Referral%20PractiX%20v4_8.doc','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/Templates/4.8/MNHHS Redcliffe Referral PractiX v4_8.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 10:29:27',0),(66395,'2021-04-17 10:30:35','2021-05-06 05:48:20','3b5da683-12b7-4723-92bf-bd6bd01e81be',1,'/page/health-professionals/referral-and-patient-management/Hospital eReferral Templates','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/referral-and-patient-management/Hospital eReferral Templates','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-06 05:48:20',0),(66396,'2021-04-17 10:34:37','2021-05-18 12:03:09','e35203da-6cd5-4e8c-b830-35e1e52746e7',1,'/page/news-and-events/latest-news/dr-anita-green-re-elected-for-another-term-as-board-chair/','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/dr-anita-green-re-elected-for-another-term-as-board-chair','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-18 12:03:09',0),(66397,'2021-04-17 10:36:57','2021-04-17 10:36:57','b421c27a-327e-4296-83c6-56be7e4115bb',1,'/page/news-and-events/events/upcoming/cancer-preceptorshop-for-primary-health-care-providers/','','207.46.13.106','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/cancer-preceptorshop-for-primary-health-care-providers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 10:36:57',0),(66398,'2021-04-17 10:38:25','2021-05-15 14:24:03','7524aa56-4204-47a1-a5ca-f03f04584a49',1,'/yearinreview/2017-18/connecting-communities-to-primary-care','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/connecting-communities-to-primary-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 14:24:03',0),(66399,'2021-04-17 10:44:10','2021-04-23 16:54:06','0cea18dd-f355-49c9-af07-ee35c167b640',1,'/page/news-and-events/latest-news/covid-19-information/covid-19-news-updates/april-2020','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/covid-19-information/covid-19-news-updates/april-2020','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-23 16:54:06',0),(66400,'2021-04-17 10:46:18','2021-05-11 05:35:38','a23733bd-e8cb-4c66-bbdd-4580c7c13073',1,'/page/news-and-events/latest-news/a-visit-from-the-shadow-state-health-minister','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/a-visit-from-the-shadow-state-health-minister','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-11 05:35:38',0),(66401,'2021-04-17 10:51:53','2021-05-12 11:54:53','0fd0afc2-1317-49ac-9d62-85eaffa1a4ac',1,'/page/home/quicklinks/gp-respiratory-clinics-community-assessment-and-fever-clinics/','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/home/quicklinks/gp-respiratory-clinics-community-assessment-and-fever-clinics','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-12 11:54:53',0),(66402,'2021-04-17 10:52:05','2021-05-17 07:23:22','00e1880a-6c2c-4a5d-a7a6-9dec5d4859d8',1,'/content/Document/Pathways/Classification of Flare Up Severity_link_TC_141117.pdf','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Classification of Flare Up Severity_link_TC_141117.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-17 07:23:22',0),(66403,'2021-04-17 10:54:18','2021-04-29 08:17:24','bd31de83-5bb0-4a57-873e-33ad617b68ac',1,'/content/Document/FORM 5b - New Clinician Request Form(2).docx','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/FORM 5b - New Clinician Request Form(2).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-29 08:17:24',0),(66404,'2021-04-17 10:55:15','2021-05-13 16:30:43','9f05ed2e-0417-41c9-bf4f-3cc132f13f2c',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---spring-hill','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---spring-hill','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-13 16:30:43',0),(66405,'2021-04-17 10:56:57','2021-04-17 10:56:57','f965313a-b7d3-4f5b-8a9e-51040968722a',1,'/content/Document/Brisbane MIND Group Listing 2018 Jan to Jul V3.pdf','http://www.brisbanenorthphn.org.au/content/Document/Brisbane%20MIND%20Group%20Listing%202018%20Jan%20to%20Jul%20V3.pdf','35.225.91.148','Go-http-client/1.1','Template not found: content/Document/Brisbane MIND Group Listing 2018 Jan to Jul V3.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 10:56:57',0),(66406,'2021-04-17 10:57:36','2021-04-27 14:52:40','5c2c506e-b6b6-4dd8-b024-b793926fbd63',1,'/jobs/general-practitioner-required','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/general-practitioner-required','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-04-27 14:52:40',0),(66407,'2021-04-17 11:01:23','2021-05-15 11:03:53','97703157-cff1-4912-998f-a12eaddad039',1,'/content/Document/DRA_MN_Health_Forum_Program_web.pdf','','66.249.69.33','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/DRA_MN_Health_Forum_Program_web.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 11:03:53',0),(66408,'2021-04-17 11:04:33','2021-04-19 05:07:58','e75cdfdd-3318-41a0-a96b-d33c1562b2a8',1,'/content/Document/Templates/4.9/MNHHS Paediatric Referral ZM v4_9.rtf','','40.77.167.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.9/MNHHS Paediatric Referral ZM v4_9.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-19 05:07:58',0),(66409,'2021-04-17 11:05:08','2021-05-04 07:20:10','9e233e92-647a-438f-bc3d-83ac13d06a84',1,'/content/Document/Stefan Hajkowicz - MNHF2018.pdf','http://www.brisbanenorthphn.org.au/content/Document/Stefan%20Hajkowicz%20-%20MNHF2018.pdf','104.198.141.65','Go-http-client/1.1','Template not found: content/Document/Stefan Hajkowicz - MNHF2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-04 07:20:10',0),(66410,'2021-04-17 11:07:20','2021-04-17 11:07:20','bc5d7768-9d6d-4f4c-8235-56e5949aa0cf',1,'/content/Document/Brisbane MIND Provider List February 2019(9).pdf','','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/Brisbane MIND Provider List February 2019(9).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 11:07:20',0),(66411,'2021-04-17 11:07:57','2021-05-16 07:48:50','4a838e0a-f276-4cf7-a7bb-1c8d8af3880a',1,'/events/queensland-health-spirometry-training-refresher-workshop-and-2021-program','','148.251.9.145','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: events/queensland-health-spirometry-training-refresher-workshop-and-2021-program','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 07:48:50',0),(66412,'2021-04-17 11:10:12','2021-05-12 07:37:20','5b0a9a05-a5e5-4a90-a240-bb510181442d',1,'/content/document/mnhf presentations 2017/paul martin and donna bowman - regional plan, mental health___ 170531.pdf','','207.46.13.142','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/document/mnhf presentations 2017/paul martin and donna bowman - regional plan, mental health___ 170531.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-12 07:37:20',0),(66413,'2021-04-17 11:12:33','2021-05-07 02:09:12','d274d259-111c-4e19-9e89-8b5f3913d452',1,'/content/Document/Paediatric Services Directory - Metro North District_FINAL_v4_0.docx','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Paediatric Services Directory - Metro North District_FINAL_v4_0.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 02:09:12',0),(66414,'2021-04-17 11:16:24','2021-05-14 17:50:30','5169b82e-f942-4d28-bfb4-6bdf639680df',1,'/content/Media/APPENDIX_$23.5m to continue vital mental health reform_170321.pdf','','66.249.69.36','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Media/APPENDIX_$23.5m to continue vital mental health reform_170321.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-14 17:50:30',0),(66415,'2021-04-17 11:20:25','2021-05-17 12:30:36','58ee6b38-63b6-4ff7-9d10-da6f0280d4e2',1,'/page/news-and-events/events/upcoming/update-in-supportive-care-for-health-professionals-in-palliative-care/','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/update-in-supportive-care-for-health-professionals-in-palliative-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 12:30:36',0),(66416,'2021-04-17 11:25:09','2021-05-06 21:23:05','74c06f60-b70a-4ecc-83b3-3d94fe056476',1,'/content/Document/DRA_2016_MHSP_Needs Assessment.pdf','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/DRA_2016_MHSP_Needs Assessment.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-06 21:23:05',0),(66417,'2021-04-17 11:28:46','2021-04-25 02:32:17','fd429b62-ab26-48f6-a56d-31d803486061',1,'/content/Document/Network Link/Network_Link_Dec2019_final_web.pdf','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Network Link/Network_Link_Dec2019_final_web.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-25 02:32:17',0),(66418,'2021-04-17 11:28:51','2021-04-20 01:08:48','ee46e4d7-c235-4153-88e1-0f0d6ea1442a',1,'/content/Document/Planning/FINAL_AAWP_Integrated Team Care_170717 WEBSITE.pdf','','207.46.13.11','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Planning/FINAL_AAWP_Integrated Team Care_170717 WEBSITE.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-20 01:08:48',0),(66419,'2021-04-17 11:33:01','2021-05-18 07:44:40','970da9b1-7115-4d1c-ad82-656b68b9f96d',1,'/page/health-professionals/mental-health-services/information-for-providers/','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/information-for-providers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-18 07:44:40',0),(66420,'2021-04-17 11:37:03','2021-04-25 10:03:22','37756f3c-3d72-4867-a386-11d91f593c9a',1,'/content/Document/Pathways/LINK F_What makes a shoe safe.pdf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/LINK F_What makes a shoe safe.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-25 10:03:22',0),(66421,'2021-04-17 11:37:55','2021-05-16 11:56:48','186a32d4-5069-40eb-98bd-0c88f5dd856e',1,'/img/location-map2.png','','66.249.69.63','Googlebot-Image/1.0','Template not found: img/location-map2.png','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 11:56:48',0),(66422,'2021-04-17 11:39:56','2021-05-03 14:38:44','4601d9f4-443b-466e-a038-08d30c738718',1,'/content/Image/dreamstime_m_912718_CMYK.jpg','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/dreamstime_m_912718_CMYK.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-03 14:38:44',0),(66423,'2021-04-17 11:42:04','2021-04-19 02:04:43','f435163f-cdb0-4006-82f2-d75bc860d57f',1,'/content/Image/Publications/Felicity.jpg','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Publications/Felicity.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-19 02:04:43',0),(66424,'2021-04-17 11:44:15','2021-04-25 06:51:05','9d9b5dc7-1c96-45cb-8d31-ff825ba6cdea',1,'/content/Document/Templates/4.3/MNHHS TPCH Referral MD v4.3.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.3/MNHHS%20TPCH%20Referral%20MD%20v4.3.rtf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Templates/4.3/MNHHS TPCH Referral MD v4.3.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-25 06:51:05',0),(66425,'2021-04-17 11:51:58','2021-05-18 03:33:34','3f050594-74eb-4838-bc0d-62deb90643a6',1,'/page/news-and-events/events/upcoming/redicase-training-May1/','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/redicase-training-May1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-18 03:33:34',0),(66426,'2021-04-17 11:57:38','2021-04-24 10:49:16','d880062a-ea76-4977-9ba3-b74654de6502',1,'/content/Document/Templates/5.3/MNHHS%20TPCH%205_3%20BP.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%2520TPCH%25205_3%2520BP.rtf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS TPCH 5_3 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 10:49:16',0),(66427,'2021-04-17 11:57:58','2021-04-17 11:57:58','b9065254-4fa3-4fc3-b528-213887d31cc7',1,'/larva.php','','162.55.55.136','python-requests/2.25.1','Template not found: larva.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 11:57:58',0),(66428,'2021-04-17 12:10:32','2021-05-17 12:49:50','9b8776f9-84b1-4952-9028-ba5a6d66ae32',1,'/page/health-professionals/digital-health/my-health-record/accessing-and-uploading-documents/','','207.46.13.74','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/digital-health/my-health-record/accessing-and-uploading-documents','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 12:49:50',0),(66429,'2021-04-17 12:10:43','2021-05-16 10:14:15','7a6f14f5-1bb0-4653-8ac4-9deb020ea2c0',1,'/page/news-and-events/events/upcoming/womens-health---september-gp-education-evening/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/womens-health---september-gp-education-evening','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-16 10:14:15',0),(66430,'2021-04-17 12:15:24','2021-05-13 11:42:12','7004544d-b219-4a08-a62a-46cfadce7b91',1,'/page/news-and-events/events/upcoming/working-therapeutically-with-complex-trauma-clients-level-2/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/working-therapeutically-with-complex-trauma-clients-level-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-13 11:42:12',0),(66431,'2021-04-17 12:23:08','2021-04-25 07:50:56','2262597f-16c9-4b7d-bdc1-0e9b268a19a7',1,'/content/Document/Reports/FIN_AAWP_NPSM%2018-19_181114%20WEB%20(1).pdf','http://www.brisbanenorthphn.org.au/content/Document/Reports/FIN_AAWP_NPSM%252018-19_181114%2520WEB%2520(1).pdf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Reports/FIN_AAWP_NPSM 18-19_181114 WEB (1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-25 07:50:56',0),(66432,'2021-04-17 12:23:41','2021-05-12 16:31:04','2899d096-0d46-479e-8921-83fb8ff256de',1,'//wp-content/','','143.198.114.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0','Template not found: wp-content','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 16:31:04',0),(66433,'2021-04-17 12:27:00','2021-05-11 20:49:08','e7943aba-8fd6-4980-b3b7-8ee0adf516f6',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---st-lucia','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---st-lucia','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-11 20:49:08',0),(66434,'2021-04-17 12:33:24','2021-04-21 02:16:54','e9c87f4d-5e4f-42ef-aa86-c67d9af7d860',1,'/page/news-and-events/latest-news/a-commitment-to-quality-improvement','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/a-commitment-to-quality-improvement','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-21 02:16:54',0),(66435,'2021-04-17 12:37:13','2021-04-17 12:37:13','d8912f2d-0fe4-4a50-9780-10db6e51d5d0',1,'/content/Document/FORM 5b - New Clinician Request Form.docx','http://www.brisbanenorthphn.org.au/content/Document/FORM%205b%20-%20New%20Clinician%20Request%20Form.docx','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/FORM 5b - New Clinician Request Form.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 12:37:13',0),(66436,'2021-04-17 12:43:42','2021-05-08 09:24:01','9acdb279-6c23-4911-91e1-d68453c757d7',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---kenmore/','','66.249.69.63','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---kenmore','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-08 09:24:01',0),(66437,'2021-04-17 12:45:05','2021-05-06 04:49:14','7d2b14b4-45ba-425e-a6ce-3fc1a4e33607',1,'/page/health-professionals/chronic-disease-management/chronic-disease-resources/','','40.94.36.76','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36','Template not found: page/health-professionals/chronic-disease-management/chronic-disease-resources','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-06 04:49:14',0),(66438,'2021-04-17 12:56:52','2021-05-11 06:26:13','16162267-bb0a-472f-a01d-8700074b2603',1,'/page/about','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-11 06:26:13',0),(66439,'2021-04-17 13:01:20','2021-05-17 13:49:26','176b6d61-02c6-4384-897e-2aa76ca2c508',1,'/content/Document/July_Red part 1_ July 23 2015_for publishing_PHN.pdf','','88.198.90.9','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Safari/537.36','Template not found: content/Document/July_Red part 1_ July 23 2015_for publishing_PHN.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-17 13:49:26',0),(66440,'2021-04-17 13:02:46','2021-04-17 13:02:46','3ce23552-0042-43f3-9bd5-4a4de89ff574',1,'/page/news-and-events/events/upcoming/project-echo-supporting-refugee-kids-series/','','66.249.65.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/project-echo-supporting-refugee-kids-series','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 13:02:46',0),(66441,'2021-04-17 13:05:27','2021-05-07 04:30:04','f3eb848f-0940-4656-b116-2cdccefc2b2c',1,'/content/Document/Final Living Well eReferral Form_GP.pdf','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Final Living Well eReferral Form_GP.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-07 04:30:04',0),(66442,'2021-04-17 13:11:23','2021-04-30 14:01:03','4e0794a0-c09b-4744-b518-c03a2073fb3d',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---qut-medical-centre/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---qut-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 14:01:03',0),(66443,'2021-04-17 13:22:24','2021-04-28 16:56:41','c443ff1e-9f24-4698-a6cb-a55a030b80e1',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---bowen-hills/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---bowen-hills','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-28 16:56:41',0),(66444,'2021-04-17 13:22:28','2021-04-24 06:31:07','103780b9-2212-466c-9c81-ad251725ba91',1,'/page/about/careers/complaints-officer-department-of-health/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.80 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/about/careers/complaints-officer-department-of-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 06:31:07',0),(66445,'2021-04-17 13:23:25','2021-04-17 13:23:25','7dd9cf4e-cee1-4c95-addd-d4d297254692',1,'/content/Document/Templates/5.3.1/MNHHS TPCH v5_3_1 BP .rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3.1/MNHHS%20TPCH%20v5_3_1%20BP%20.rtf','35.225.91.148','Go-http-client/1.1','Template not found: content/Document/Templates/5.3.1/MNHHS TPCH v5_3_1 BP .rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 13:23:25',0),(66446,'2021-04-17 13:37:40','2021-05-17 01:26:55','0dfe4b7e-e737-4eff-b955-4d43f757bc66',1,'/page/news-and-events/latest-news/our-stories-offering-new-parents-a-ray-of-sunshine','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/our-stories-offering-new-parents-a-ray-of-sunshine','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-17 01:26:55',0),(66447,'2021-04-17 13:42:38','2021-04-17 13:42:38','13962489-8045-41cf-b470-a0777cc6d675',1,'/page/news-and-events/events/upcoming/safe-sleep-advice-to-safe-sleep-action/','','66.249.65.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/safe-sleep-advice-to-safe-sleep-action','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 13:42:38',0),(66448,'2021-04-17 13:54:14','2021-05-15 14:27:15','972f6906-8c79-4cf2-948f-dda116c04301',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/brisbane-mind','','103.18.108.161','','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services/brisbane-mind','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,17,'2021-05-15 14:27:15',0),(66449,'2021-04-17 13:54:44','2021-04-17 13:54:44','829163b2-b4ac-4b19-9a4f-3c61ec8fe86f',1,'/airflow.cfg','','91.241.19.175','Nuclei - Open-source project (github.com/projectdiscovery/nuclei)','Template not found: airflow.cfg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 13:54:44',0),(66450,'2021-04-17 14:01:18','2021-04-22 00:11:55','bc16f247-93f6-4c9e-83f8-dc4ae01961e0',1,'/page/news-and-events/latest-news/keynote-speakers-announced-for-this-year’s-metro-north-health-forum','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/keynote-speakers-announced-for-this-year’s-metro-north-health-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-22 00:11:55',0),(66451,'2021-04-17 14:05:47','2021-04-23 03:35:33','4bf3915f-d15f-4d06-a586-a5a7225aab0d',1,'/content/Document/DRAFT_TOR_Brisbane North Communities Palliative Care Collaborative 160412.docx','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/DRAFT_TOR_Brisbane North Communities Palliative Care Collaborative 160412.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-23 03:35:33',0),(66452,'2021-04-17 14:10:34','2021-04-25 01:21:27','533cc986-6311-4797-9ceb-ec0a2bac1200',1,'/page/news-and-events/latest-news/new-trial-brings-geriatric-specialist-input-into-racfs','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/new-trial-brings-geriatric-specialist-input-into-racfs','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-25 01:21:27',0),(66453,'2021-04-17 14:14:58','2021-05-16 09:24:30','2e8a9d3e-e373-4616-b11b-07bd55c11ea7',1,'/jobs/vr-general-practitioner','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/vr-general-practitioner','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-16 09:24:30',0),(66454,'2021-04-17 14:21:18','2021-05-02 11:10:43','869aa076-8bea-4ace-8ade-5a80d068e152',1,'/page/news-and-events/2017-news/doctor-dad-joins-medical-mums-immunisation-campaign','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/2017-news/doctor-dad-joins-medical-mums-immunisation-campaign','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-02 11:10:43',0),(66455,'2021-04-17 14:29:35','2021-05-11 15:46:50','c5bb67cb-cd1f-44ba-b056-4c63c384e588',1,'/content/Document/Pathways/pathways_audiology.pdf','','93.158.161.2','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','Template not found: content/Document/Pathways/pathways_audiology.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-11 15:46:50',0),(66456,'2021-04-17 14:45:44','2021-05-09 14:10:42','b1af6caf-d91c-4fb0-aa76-bb55f69d3ae3',1,'/content/Document/Media%20Releases/MR_Parenting%20program%20aims%20to%20outshine%20postnatal%20depression%20and%20anxiety_171113.pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%2520Releases/MR_Parenting%2520program%2520aims%2520to%2520outshine%2520postnatal%2520depression%2520and%2520anxiety_171113.pdf','34.121.182.57','Go-http-client/1.1','Template not found: content/Document/Media Releases/MR_Parenting program aims to outshine postnatal depression and anxiety_171113.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 14:10:42',0),(66457,'2021-04-17 14:45:56','2021-05-10 08:47:53','e8cccd41-6e66-42e3-b927-ffcb1aa8cf58',1,'/content/Document/Primary care liaison/Desktop guide to frequently used MBS item numbers for General Practice_190809_HP.pdf','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Primary care liaison/Desktop guide to frequently used MBS item numbers for General Practice_190809_HP.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-10 08:47:53',0),(66458,'2021-04-17 14:48:46','2021-04-17 14:48:46','2a27148d-3c4d-4551-846f-651881343940',1,'/page/news-and-events/events/upcoming/general-practitioner---morayfield-wamuran-landsborough','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/general-practitioner---morayfield-wamuran-landsborough','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 14:48:46',0),(66459,'2021-04-17 14:51:14','2021-05-09 14:31:47','6bdaa7e3-4cca-4f6a-95c2-fa74ba5610f9',1,'/content/Document/Network%20Link_06_JUNE_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%2520Link_06_JUNE_WEB.pdf','34.121.182.57','Go-http-client/1.1','Template not found: content/Document/Network Link_06_JUNE_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-09 14:31:47',0),(66460,'2021-04-17 14:56:10','2021-05-19 00:01:55','9718fdcc-b877-4a91-8e4e-cb24e46d4e44',1,'/page/news-and-events/latest-news/challenge-ageism-to-overcome-discrimination-aged-care-sector-told/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/challenge-ageism-to-overcome-discrimination-aged-care-sector-told','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-19 00:01:55',0),(66461,'2021-04-17 14:56:25','2021-05-15 07:38:01','d6c86732-0779-4bc8-a1d1-22bc15872cda',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-–-narangba-doctors','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-–-narangba-doctors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 07:38:01',0),(66462,'2021-04-17 15:03:18','2021-05-16 06:19:17','64efbc00-25e5-4957-aed1-db9bf94557c4',1,'/page/health-professionals/immunisation/resources','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/immunisation/resources','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 06:19:17',0),(66463,'2021-04-17 15:22:36','2021-04-17 15:22:36','f55f8c8b-23e9-40dc-8ea0-143b163e057b',1,'/page/news-and-events/events/upcoming/work-with-your-employee-to-channel-their-talents-toward-organisational-and-team-goals/','','40.77.167.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/work-with-your-employee-to-channel-their-talents-toward-organisational-and-team-goals','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 15:22:36',0),(66464,'2021-04-17 15:30:12','2021-05-07 00:51:10','d1aced02-37f8-4e51-8643-b6bab23f2c00',1,'/content/Document/Maps/TPCH Fever Clinic Direction map.pdf','http://www.brisbanenorthphn.org.au/content/Document/Maps/TPCH%20Fever%20Clinic%20Direction%20map.pdf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Maps/TPCH Fever Clinic Direction map.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-07 00:51:10',0),(66465,'2021-04-17 15:36:01','2021-04-23 06:37:04','ad1aeae3-20fc-46e3-9939-4328648414a0',1,'/page/news-and-events/latest-news/campaign-addresses-barriers-to-suicide-prevention','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/campaign-addresses-barriers-to-suicide-prevention','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-23 06:37:04',0),(66466,'2021-04-17 15:39:54','2021-05-17 17:04:43','ecba9b59-f127-4c83-8ec4-c7e59476c84a',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---nundah','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---nundah','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,14,'2021-05-17 17:04:43',0),(66467,'2021-04-17 15:40:52','2021-05-09 13:35:56','364317a3-36a1-4728-b723-ae5885864ee7',1,'/content/Document/Health alerts/08072019_Public Health Alert_measles_GP(1).pdf','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Health alerts/08072019_Public Health Alert_measles_GP(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-09 13:35:56',0),(66468,'2021-04-17 15:41:14','2021-05-12 13:10:33','17bcaef3-5263-441f-8428-1d9f960b762f',1,'/page/news-and-events/events/upcoming/ndis-and-mental-health/','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/ndis-and-mental-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-12 13:10:33',0),(66469,'2021-04-17 15:46:49','2021-05-04 02:01:53','ddcf31c9-42e4-473c-95cc-8b71a056f0c0',1,'/content/Image/Events/working-together-web.jpg','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Events/working-together-web.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-04 02:01:53',0),(66470,'2021-04-17 15:47:06','2021-05-03 16:45:21','2f24d643-381a-45f0-9494-587607e9d660',1,'/content/Document/Events/2019/Metro North Health Forum/mnhf-GP-breafkast2019-register-now.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/Metro%20North%20Health%20Forum/mnhf-GP-breafkast2019-register-now.pdf','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/Events/2019/Metro North Health Forum/mnhf-GP-breafkast2019-register-now.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-03 16:45:21',0),(66471,'2021-04-17 15:48:58','2021-04-29 11:56:51','9e068b97-0ba3-4838-be09-b52da20d387b',1,'/page/news-and-events/events/archive','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-04-29 11:56:51',0),(66472,'2021-04-17 16:00:11','2021-05-16 03:32:55','59314ced-1808-4268-b6bb-6f6a8d14a519',1,'/page/publications/partners-in-health/partners-in-health-april-2018','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/partners-in-health-april-2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 03:32:55',0),(66473,'2021-04-17 16:05:16','2021-05-11 10:28:50','6d188ca6-f452-4c95-a7c3-0533a612056e',1,'/page/news-and-events/events/upcoming/trauma-informed-transgender-and-gender-diverse-affirmative-care---masterclass/','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/trauma-informed-transgender-and-gender-diverse-affirmative-care---masterclass','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-11 10:28:50',0),(66474,'2021-04-17 16:05:59','2021-05-09 10:05:35','88a0c4ee-4243-45a2-aaef-e98e847a0e08',1,'/README.txt','','206.189.43.46','Drupal/8.9.15 (+https://www.drupal.org/) GuzzleHttp/6.5.5 curl/7.29.0 PHP/7.3.28','Template not found: README.txt','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-09 10:05:35',0),(66475,'2021-04-17 16:08:27','2021-04-17 16:08:27','db287379-6fc0-4f2b-8a38-4278945997f1',1,'/page/news-and-events/events/upcoming/the-essentials-training-clinicians-in-eating-disorders/','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/the-essentials-training-clinicians-in-eating-disorders','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 16:08:27',0),(66476,'2021-04-17 16:10:44','2021-04-30 09:10:38','2e87ce11-cded-4d82-a8b8-38297aa5c309',1,'/content/Document/FINAL_MHAOD_newsletter_August_2016_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/FINAL_MHAOD_newsletter_August_2016_WEB.pdf','34.94.141.43','Go-http-client/1.1','Template not found: content/Document/FINAL_MHAOD_newsletter_August_2016_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 09:10:38',0),(66477,'2021-04-17 16:11:40','2021-04-17 16:11:40','96064f08-f6ad-4181-a08a-06a74cb74333',1,'/yearinreview/mental-health-suicide-prevention-and-alcohol-and-other-drug-services/www.brisbanenorthphn.org.au','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/mental-health-suicide-prevention-and-alcohol-and-other-drug-services/www.brisbanenorthphn.org.au','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 16:11:40',0),(66478,'2021-04-17 16:13:44','2021-05-08 07:25:50','53c64c94-2ca9-485c-9ab0-69af92ce0e6a',1,'/content/Document/Brisbane MIND Provider List March 2019(5).pdf','','66.249.69.63','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Brisbane MIND Provider List March 2019(5).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-08 07:25:50',0),(66479,'2021-04-17 16:17:18','2021-05-12 16:52:01','685ab1c8-f346-409d-929f-a17fa227740b',1,'/content/Document/Brisbane North PHN Needs Assessment Submission to DOH_November 2016(1).docx','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane North PHN Needs Assessment Submission to DOH_November 2016(1).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 16:52:01',0),(66480,'2021-04-17 16:17:39','2021-05-10 13:56:21','90974939-119b-420b-aa1a-c0069cc1fd06',1,'/content/Document/measuring Shoulder ROM 16 12 15.pdf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/measuring Shoulder ROM 16 12 15.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 13:56:21',0),(66481,'2021-04-17 16:22:54','2021-05-17 16:45:12','bbb078e1-0965-42de-888c-6603d230ea66',1,'/page/news-and-events/events/upcoming/cancer-council-caring-for-our-community/','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/cancer-council-caring-for-our-community','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 16:45:12',0),(66482,'2021-04-17 16:23:06','2021-04-17 16:23:06','a599ea78-b6ac-44c7-8528-6bcb50e58ace',1,'/jobs/expression-of-interest-vr-general-practitioner','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/expression-of-interest-vr-general-practitioner','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 16:23:06',0),(66483,'2021-04-17 16:25:03','2021-05-14 18:29:38','256c6169-e1f6-4b3b-a70d-16e145c6f117',1,'/content/Document/Templates/6.1/Specialists List_Palliative Care_6_1(1).pdf','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Templates/6.1/Specialists List_Palliative Care_6_1(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-14 18:29:38',0),(66484,'2021-04-17 16:30:55','2021-05-17 17:09:28','23bbe815-d8d3-46d6-8b23-b83349f5b6d0',1,'/content/Document/Brisbane MIND Group Listing 2017-18 Aug V3.pdf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Group Listing 2017-18 Aug V3.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-17 17:09:28',0),(66485,'2021-04-17 16:31:51','2021-05-18 14:18:26','c53c2e5d-8216-4160-86a8-4c29101ea34a',1,'/page/news-and-events/events/upcoming/iaccreditation-insights-into-racgp-5th-edition-update-support-and-resources---north-lakes/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/iaccreditation-insights-into-racgp-5th-edition-update-support-and-resources---north-lakes','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-18 14:18:26',0),(66486,'2021-04-17 16:32:03','2021-05-11 18:15:13','be67928b-f412-4aa1-b34b-d3c381fadfcf',1,'/page/news-and-events/events/upcoming/the-green-whistle-practical-applications-of-penthrox-in-primary-care','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/the-green-whistle-practical-applications-of-penthrox-in-primary-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-11 18:15:13',0),(66487,'2021-04-17 16:42:35','2021-05-04 21:38:13','09a61f65-8b26-4b1a-858d-a6e456278c7a',1,'/content/Document/Reports/MNHHS and PHN annual report 2018 final WEB.pdf','','66.249.68.93','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Reports/MNHHS and PHN annual report 2018 final WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-04 21:38:13',0),(66488,'2021-04-17 16:47:25','2021-04-17 16:47:25','6975931f-cceb-44da-bad4-4fbcfd483840',1,'/yearinreview/2018-19/wp-content/uploads/2019/11/IMG_0314_Griffin-Medical-Centre-600x400.jpg','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2018-19/wp-content/uploads/2019/11/IMG_0314_Griffin-Medical-Centre-600x400.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 16:47:25',0),(66489,'2021-04-17 16:48:11','2021-04-17 16:48:11','2bc2ab78-0aa6-4e36-a2de-80fe433b8846',1,'/content/Document/FORM 5 - Change of Specified Personnel List.docx','http://www.brisbanenorthphn.org.au/content/Document/FORM%205%20-%20Change%20of%20Specified%20Personnel%20List.docx','35.225.91.148','Go-http-client/1.1','Template not found: content/Document/FORM 5 - Change of Specified Personnel List.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 16:48:11',0),(66490,'2021-04-17 17:18:17','2021-05-16 03:39:54','527dca8c-1d82-46b5-942d-e6705e3a9724',1,'/content/Document/Pathways/Driving Ausroads_page56-62.pdf','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Driving Ausroads_page56-62.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 03:39:54',0),(66491,'2021-04-17 17:18:20','2021-05-18 19:21:25','eced4cd2-b34b-46f1-8130-65c2dffbb57a',1,'/page/publications/recovery/recovery---march-2020','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/recovery/recovery---march-2020','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 19:21:25',0),(66492,'2021-04-17 17:20:17','2021-05-16 07:47:56','9c686362-44f1-4b23-8b80-158c1a3064b5',1,'/page/news-and-events/latest-news/news-from-metro-north-public-health-unit/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/news-from-metro-north-public-health-unit','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-16 07:47:56',0),(66493,'2021-04-17 17:24:26','2021-05-09 12:43:57','8919f044-418d-4367-b93a-487e47f8ee85',1,'/content/Document/MNHHS Paediatric Referral BP v4_11(2).rtf','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/MNHHS Paediatric Referral BP v4_11(2).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 12:43:57',0),(66494,'2021-04-17 17:30:51','2021-04-22 23:32:13','a1093f3b-92a9-4e5f-95c2-24d931eed400',1,'/page/health-professionals/Local Positions Vacant/practice-manager-bongaree/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/health-professionals/Local Positions Vacant/practice-manager-bongaree','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-22 23:32:13',0),(66495,'2021-04-17 17:38:08','2021-05-04 15:48:54','eacc8511-0aad-49d7-a2ed-6ee87d7e2c0f',1,'/page/news-and-events','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-04 15:48:54',0),(66496,'2021-04-17 17:40:48','2021-05-17 17:39:54','b39bbbc6-ff5c-429d-89a4-dfa06c92bf28',1,'/content/Document/Primary care liaison/Specialists List_The Prince Charles Hospital_6_2.pdf','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Primary care liaison/Specialists List_The Prince Charles Hospital_6_2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 17:39:54',0),(66497,'2021-04-17 17:47:16','2021-04-17 17:47:16','348a7280-9cdd-4b4b-b66f-4a15da2c0113',1,'/content/Document/PD_Vacant_ManagementAccountant_150730.pdf','','207.46.13.5','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/PD_Vacant_ManagementAccountant_150730.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 17:47:16',0),(66498,'2021-04-17 17:47:52','2021-04-17 17:47:52','9cf7d710-7ec1-47e9-be27-4dfed97b95fa',1,'/page/health-professionals/Local Positions Vacant/professional-practice-pharmacists---spring-hill/','','207.46.13.11','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/professional-practice-pharmacists---spring-hill','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 17:47:52',0),(66499,'2021-04-17 17:50:51','2021-05-14 11:40:38','f70b1189-9525-4109-bb78-d3029e54d2a4',1,'/page/news-and-events/events/upcoming/prolonged-exposure-therapy-3-day-training-program-and-2-day-workshop/','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/prolonged-exposure-therapy-3-day-training-program-and-2-day-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-14 11:40:38',0),(66500,'2021-04-17 18:07:38','2021-05-08 01:58:26','4463d815-3554-4d1a-b916-c4303cc5dec9',1,'/content/Document/ALA measuring guideline.pdf','','66.249.75.180','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/ALA measuring guideline.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-08 01:58:26',0),(66501,'2021-04-17 18:10:29','2021-04-24 18:03:39','9cde6e25-5c04-4493-a2c5-b0d72594b8f6',1,'/content/Document/Paediatric Services Directory - Metro North District_FINAL_v4_1(3).pdf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Paediatric Services Directory - Metro North District_FINAL_v4_1(3).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-24 18:03:39',0),(66502,'2021-04-17 18:11:58','2021-04-25 22:19:48','7e0b4d43-f539-4480-bd2d-9a71fabb67a9',1,'/content/Document/Events/2016 MFM day program (3).docx','','78.46.94.83','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.75 Safari/537.36','Template not found: content/Document/Events/2016 MFM day program (3).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-25 22:19:48',0),(66503,'2021-04-17 18:16:20','2021-04-19 15:34:38','f68ea2d0-de9a-4cff-a439-e3a66c0155ee',1,'/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','','37.49.230.185','python-requests/2.25.1','Template not found: vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-19 15:34:38',0),(66504,'2021-04-17 18:23:47','2021-04-27 07:30:47','e90c4854-6abf-47a9-938e-9418edaed0a7',1,'/page/health-professionals/multicultural-health','http://brisbanenorthphn.org.au/page/health-professionals/multicultural-health','35.210.220.237','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/health-professionals/multicultural-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-27 07:30:47',0),(66505,'2021-04-17 18:29:57','2021-04-30 03:02:38','ffc4659f-105d-4c37-bdfa-b0ac363faf88',1,'/content/Document/Aged and community care/A13_ FINAL GOAS 6-month Review Report 230218.docx','','178.63.51.106','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:82.0) Gecko/20100101 Firefox/82.0','Template not found: content/Document/Aged and community care/A13_ FINAL GOAS 6-month Review Report 230218.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 03:02:38',0),(66506,'2021-04-17 18:35:34','2021-05-18 11:17:32','cdfa1c07-5780-4b39-9334-a7e4e61f825c',1,'/page/news-and-events/events/upcoming/lets-talk-organ-donation/','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/lets-talk-organ-donation','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 11:17:32',0),(66507,'2021-04-17 18:43:24','2021-04-17 18:43:24','1bee32ab-0ffb-4f5b-82d9-aef0890f4c19',1,'/content/Document/Events/2018/LGBTIQ+ Practice in Clinical Settings Flyer.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2018/LGBTIQ%2B%20Practice%20in%20Clinical%20Settings%20Flyer.pdf','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/Events/2018/LGBTIQ Practice in Clinical Settings Flyer.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 18:43:24',0),(66508,'2021-04-17 18:43:44','2021-04-29 00:24:37','6575cc8a-0f0a-472d-89e6-d96d5be67040',1,'/content/Document/Pathways/Gout Management Guide Sheet.pdf','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Gout Management Guide Sheet.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-29 00:24:37',0),(66509,'2021-04-17 18:46:19','2021-05-05 21:36:51','162f9eb0-5cfa-428a-9883-c403c9105bdc',1,'/page/news-and-events/latest-news/mental-health-tenders-now-open','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/mental-health-tenders-now-open','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-05 21:36:51',0),(66510,'2021-04-17 18:48:03','2021-05-10 05:14:34','f194b5b5-8d29-453f-847f-1d62eff724ce',1,'/content/Document/Events/2019/NUBP%20Module%20Flyer%202019.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/NUBP%2520Module%2520Flyer%25202019.pdf','34.121.182.57','Go-http-client/1.1','Template not found: content/Document/Events/2019/NUBP Module Flyer 2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 05:14:34',0),(66511,'2021-04-17 18:49:38','2021-05-17 21:16:18','864b42f8-6187-4c0b-9f40-bcdb369addb0',1,'/apple-app-site-association','','74.125.150.29','AdsBot-Google (+http://www.google.com/adsbot.html)','Template not found: apple-app-site-association','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-17 21:16:18',0),(66512,'2021-04-17 18:54:00','2021-05-18 02:03:27','227e4d31-1f02-46d6-a366-d57a973898e6',1,'/content/Image/Page Banners/Banner_page_mm-animationstill.jpg','','173.252.127.8','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: content/Image/Page Banners/Banner_page_mm-animationstill.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 02:03:27',0),(66513,'2021-04-17 18:55:34','2021-05-01 05:02:52','ac5197ba-47b0-44e9-b3df-564cb67b9e88',1,'/content/Document/Templates/4.4/MNHHS Paediatric Ref ZM v4.4.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.4/MNHHS%20Paediatric%20Ref%20ZM%20v4.4.rtf','34.94.5.119','Go-http-client/1.1','Template not found: content/Document/Templates/4.4/MNHHS Paediatric Ref ZM v4.4.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 05:02:52',0),(66514,'2021-04-17 18:56:35','2021-05-16 10:07:41','347f31d3-73af-4843-a843-d25462778eda',1,'/events/genomics-for-gps-webinar-2-genetic-conditions-in-adults','','62.210.188.216','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)','Template not found: events/genomics-for-gps-webinar-2-genetic-conditions-in-adults','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-16 10:07:41',0),(66515,'2021-04-17 19:15:50','2021-05-17 16:47:52','66ffc771-1b99-4e91-acb4-b0b92cc61e0a',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-required---myhealth-fortitude-valley-medical-centre/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-required---myhealth-fortitude-valley-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-17 16:47:52',0),(66516,'2021-04-17 19:22:42','2021-05-18 18:35:53','15245b07-19d3-42ff-b58f-4043c48a4157',1,'/page/news-and-events/events/upcoming/common-threads-summit','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/common-threads-summit','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-18 18:35:53',0),(66517,'2021-04-17 19:23:27','2021-04-18 09:54:54','515d9a65-c480-4011-bea7-6b9af762d78e',1,'/content/Document/Events/2019/AAWP Core Flexible AH RESUBMIT_190208 WEB.docx','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/AAWP%20Core%20Flexible%20AH%20RESUBMIT_190208%20WEB.docx','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/Events/2019/AAWP Core Flexible AH RESUBMIT_190208 WEB.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-18 09:54:54',0),(66518,'2021-04-17 19:44:26','2021-04-17 19:44:26','7e492e66-e986-432e-8af1-be9eb5fdf3ef',1,'/page/about/careers/evaluation-project-officer-mental-health-alcohol-and-other-drugs/','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers/evaluation-project-officer-mental-health-alcohol-and-other-drugs','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 19:44:26',0),(66519,'2021-04-17 19:47:54','2021-05-14 11:51:53','4352011c-9ad3-43ba-9875-5b5ae020cc27',1,'/page/news-and-events/events/upcoming/introduction-to-young-adult-health/','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/introduction-to-young-adult-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-14 11:51:53',0),(66520,'2021-04-17 19:49:50','2021-05-17 19:51:57','4655cbd8-3e9f-4222-b1dc-c130c3a8aaef',1,'/content/Document/Reports/FIN_AWP ITC 19-21_190430 WEB.pdf','','40.77.167.15','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Reports/FIN_AWP ITC 19-21_190430 WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-17 19:51:57',0),(66521,'2021-04-17 19:53:16','2021-04-17 19:53:16','4027925c-6f6b-4080-a54c-d2682a9c9b98',1,'/content/Document/Pathways/1. Administration of salbutamol by health professionals for a patient with acute asthma.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/1.%20Administration%20of%20salbutamol%20by%20health%20professionals%20for%20a%20patient%20with%20acute%20asthma.pdf','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/Pathways/1. Administration of salbutamol by health professionals for a patient with acute asthma.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 19:53:16',0),(66522,'2021-04-17 19:55:47','2021-04-17 19:55:47','df3d68ec-7f65-4743-ab4c-5d8764bb110f',1,'/content/Document/Events/Workshop Flyers EOI.pdf','','207.46.13.5','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/Workshop Flyers EOI.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 19:55:47',0),(66523,'2021-04-17 19:59:36','2021-05-09 21:26:25','0d9ed4ec-5ce7-476b-b3ed-36bd764a0c48',1,'/page/publications/subscribe','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/subscribe','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-09 21:26:25',0),(66524,'2021-04-17 20:06:39','2021-05-17 23:54:04','3cd1f235-53e3-4649-a236-a049708a49c6',1,'/content/Document/Pathways/pathways_xarelto.pdf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/pathways_xarelto.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-17 23:54:04',0),(66525,'2021-04-17 20:13:44','2021-05-08 09:31:57','5454a9ed-8333-44f3-ad1d-94a300e9f690',1,'/page/news-and-events/events/upcoming/immunisation-catch-up-for-practice-nurses---north-lakes/','','66.249.69.61','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/immunisation-catch-up-for-practice-nurses---north-lakes','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-08 09:31:57',0),(66526,'2021-04-17 20:15:55','2021-05-13 17:23:08','61e13f74-8014-4977-9018-5085ca950b21',1,'/page/news-and-events/latest-news/covid-19-information/information-for-our-community/emergency-relief','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/covid-19-information/information-for-our-community/emergency-relief','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-13 17:23:08',0),(66527,'2021-04-17 20:17:10','2021-04-17 20:17:10','f8f79ce3-194e-46b0-803d-005cbdb81b59',1,'/content/Document/Events/Clinical update on Chronic Liver Disease for Primary Care.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/Clinical%20update%20on%20Chronic%20Liver%20Disease%20for%20Primary%20Care.pdf','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/Events/Clinical update on Chronic Liver Disease for Primary Care.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 20:17:10',0),(66528,'2021-04-17 20:19:48','2021-05-18 07:33:08','b4f43a39-bffa-4739-bddd-8bcaa8cfc71b',1,'/page/news-and-events/events/archive/care-expo','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/care-expo','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 07:33:08',0),(66529,'2021-04-17 20:34:01','2021-05-18 06:50:51','77a87276-f71d-462c-8ebe-2bf2ab37e7af',1,'/content/Document/Pathways/Waist circumference.pdf','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Waist circumference.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-18 06:50:51',0),(66530,'2021-04-17 20:34:50','2021-05-17 20:59:01','04b0461c-fb59-4606-bc13-bb3a435146c4',1,'/content/Document/Aboriginal and Torres Strait Islander SEQ Murri Service Directory v3.1 (June 2015) - User Guide.pdf','','40.77.167.15','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Aboriginal and Torres Strait Islander SEQ Murri Service Directory v3.1 (June 2015) - User Guide.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-17 20:59:01',0),(66531,'2021-04-17 20:37:49','2021-05-03 06:54:08','ad4c5214-3579-4260-8d1c-733ab692d2d4',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---bridgeman-downs','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---bridgeman-downs','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-03 06:54:08',0),(66532,'2021-04-17 20:41:14','2021-04-17 20:41:14','5e007921-86cc-48fd-9aae-e55149117e29',1,'/yearinreview/2018-19/wp-content/uploads/2018/11/QuIHN-logo.jpg','','13.66.139.80','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: yearinreview/2018-19/wp-content/uploads/2018/11/QuIHN-logo.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 20:41:14',0),(66533,'2021-04-17 20:50:43','2021-05-17 03:06:54','53f67c2f-1f63-43b9-82a9-006768ecf856',1,'/content/Document/Templates/4.8/Specialists List_The Prince Charles Hospital_4_8.pdf','','78.46.94.83','Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','Template not found: content/Document/Templates/4.8/Specialists List_The Prince Charles Hospital_4_8.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-17 03:06:54',0),(66534,'2021-04-17 20:57:19','2021-05-12 20:23:54','5a9a047e-67e6-449f-b179-c630d0235046',1,'/content/Document/FIN-Low-intensity-GP-flyer-WEB.pdf','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/FIN-Low-intensity-GP-flyer-WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-12 20:23:54',0),(66535,'2021-04-17 21:00:39','2021-05-02 07:11:21','d325fe0a-bab5-4e89-ac29-0a78c2992ea2',1,'/page/news-and-events/latest-news/education-on-my-terms-warner-gp-shares-experience-with-project-echo/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/education-on-my-terms-warner-gp-shares-experience-with-project-echo','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-02 07:11:21',0),(66536,'2021-04-17 21:11:04','2021-04-17 21:11:04','acd1d10a-7cf0-40b5-9ed2-0c22802a807c',1,'/content/Image/Publications/IMG_OlderPersonsPlan.jpg','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Publications/IMG_OlderPersonsPlan.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 21:11:04',0),(66537,'2021-04-17 21:21:07','2021-05-16 07:50:17','53a9fc53-0940-4f34-a518-2f8243be6a4a',1,'/page/news-and-events/latest-news/report-reveals-high-quality-of-gp-care-in-north-brisbane-and-moreton-bay/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/report-reveals-high-quality-of-gp-care-in-north-brisbane-and-moreton-bay','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-16 07:50:17',0),(66538,'2021-04-17 21:27:16','2021-05-10 15:13:56','78d47c0b-2931-4475-b41b-b466eb52c29d',1,'/content/Document/Palliative care website terms of inclusion_Jul2015.docx','http://www.brisbanenorthphn.org.au/content/Document/Palliative%20care%20website%20terms%20of%20inclusion_Jul2015.docx','34.121.182.57','Go-http-client/1.1','Template not found: content/Document/Palliative care website terms of inclusion_Jul2015.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 15:13:56',0),(66539,'2021-04-17 21:36:43','2021-04-17 21:36:43','98701dce-7d79-4307-9c62-ef0fa748dcc4',1,'/news/working-together-to-develop-local-system-of-care-pathways-for-five-priority-mental-health-condition','','108.174.8.20','LinkedInBot/1.0 (compatible; Mozilla/5.0; Apache-HttpClient +http://www.linkedin.com)','Template not found: news/working-together-to-develop-local-system-of-care-pathways-for-five-priority-mental-health-condition','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 21:36:43',0),(66540,'2021-04-17 21:36:47','2021-04-17 21:36:47','6dabdfa9-c4da-43b5-854e-b2904f0da290',1,'/news/working-together','','108.174.8.20','LinkedInBot/1.0 (compatible; Mozilla/5.0; Apache-HttpClient +http://www.linkedin.com)','Template not found: news/working-together','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 21:36:47',0),(66541,'2021-04-17 21:36:48','2021-04-17 21:36:48','d5deee88-4a30-476d-85b0-fbfac99564bb',1,'/news/working-togethe','','108.174.8.21','LinkedInBot/1.0 (compatible; Mozilla/5.0; Apache-HttpClient +http://www.linkedin.com)','Template not found: news/working-togethe','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 21:36:48',0),(66542,'2021-04-17 21:38:39','2021-05-17 22:04:02','b7293d04-9419-4c42-af48-516f8706bdc2',1,'/content/Document/Primary care liaison/MNHHS TPCH Ref v6_2 MD(1).rtf','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Primary care liaison/MNHHS TPCH Ref v6_2 MD(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-17 22:04:02',0),(66543,'2021-04-17 21:50:02','2021-05-09 13:53:46','5a122287-2614-449f-8a53-a698c2a56377',1,'/events/signs-of-the-times-latest-on-mental-health-in-the-new-normal','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/signs-of-the-times-latest-on-mental-health-in-the-new-normal','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-09 13:53:46',0),(66544,'2021-04-17 21:52:38','2021-04-27 17:50:09','b6e14004-ce57-4ec5-8a8d-5076c6c745b1',1,'/events/exercise-is-medicine-enhancing-patient-outcomes-through-lifestyle-interventions','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/exercise-is-medicine-enhancing-patient-outcomes-through-lifestyle-interventions','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-27 17:50:09',0),(66545,'2021-04-17 21:55:44','2021-04-17 21:55:44','4e44a64f-fdf3-45f1-8c84-f44c70497651',1,'/content/Media/MR_Medical outreach trial delivers better healthcare for older people_180829.pdf','http://www.brisbanenorthphn.org.au/content/Media/MR_Medical%20outreach%20trial%20delivers%20better%20healthcare%20for%20older%20people_180829.pdf','34.67.126.137','Go-http-client/1.1','Template not found: content/Media/MR_Medical outreach trial delivers better healthcare for older people_180829.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 21:55:44',0),(66546,'2021-04-17 22:07:20','2021-05-09 16:52:33','9642524f-c31d-4ed5-87e3-74df638edf61',1,'/content/Document/PD_Primary Care Liaison Officer_150824.pdf','http://www.brisbanenorthphn.org.au/content/Document/PD_Primary%20Care%20Liaison%20Officer_150824.pdf','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/PD_Primary Care Liaison Officer_150824.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-09 16:52:33',0),(66547,'2021-04-17 22:08:26','2021-04-24 08:07:01','2820fc23-c317-45e4-8f10-5278029cd78b',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---sandgate-doctors/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---sandgate-doctors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 08:07:01',0),(66548,'2021-04-17 22:22:39','2021-05-10 23:31:06','b75edd9f-952d-45ae-808b-86261a76cf41',1,'/page/health-professionals/Local Positions Vacant/registered-nurse---paddington','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/registered-nurse---paddington','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 23:31:06',0),(66549,'2021-04-17 22:25:05','2021-05-04 06:17:16','af6833ed-9649-4734-8c22-63300af0b63b',1,'/content/Document/Annual Plan 2016-2018.pdf','','207.46.13.120','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Annual Plan 2016-2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-04 06:17:16',0),(66550,'2021-04-17 22:25:23','2021-05-06 09:50:51','ade4c325-88bf-4343-8d90-ab5ab151985f',1,'/content/Document/NGO pathway_280115.pdf','http://www.brisbanenorthphn.org.au/content/Document/NGO%20pathway_280115.pdf','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/NGO pathway_280115.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-06 09:50:51',0),(66551,'2021-04-17 22:29:45','2021-05-05 05:15:12','e1435303-f9e8-4fd3-b42a-7e66c6727ada',1,'/content/Document/Planning/2015-16AccessibleHNA.docx','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Planning/2015-16AccessibleHNA.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-05 05:15:12',0),(66552,'2021-04-17 22:41:47','2021-05-16 10:15:12','32a18872-e326-4bee-8b58-59786522dbd8',1,'/page/health-professionals/mental-health-services/mental-health-nursing-in-brisbane-north/','','62.210.188.216','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)','Template not found: page/health-professionals/mental-health-services/mental-health-nursing-in-brisbane-north','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,22,'2021-05-16 10:15:12',0),(66553,'2021-04-17 22:46:06','2021-04-27 07:43:30','c32fe269-b49d-4595-b6fd-8de3fb572cf1',1,'/content/Document/Pathways/Body mass index.pdf','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Body mass index.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-27 07:43:30',0),(66554,'2021-04-17 23:01:07','2021-05-10 00:39:22','6a0e445b-0f20-4e70-a351-785f439fb487',1,'/yearinreview/a-strategic-alliance-with-our-local-hospital-services','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/a-strategic-alliance-with-our-local-hospital-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-10 00:39:22',0),(66555,'2021-04-17 23:02:44','2021-05-07 08:48:00','32101179-215f-4b4e-bc3a-4a0e8ec0fa8e',1,'/page/health-professionals/closing-the-gap/integrated-team-care/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/closing-the-gap/integrated-team-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-07 08:48:00',0),(66556,'2021-04-17 23:04:54','2021-05-17 22:40:15','6fcd0e41-fa6c-4aad-b043-0d15436713a0',1,'/page/news-and-events/events/upcoming/national-bpd-training-strategy-2-day-core-competency-workshops-in-2020/','','40.77.167.6','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/national-bpd-training-strategy-2-day-core-competency-workshops-in-2020','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 22:40:15',0),(66557,'2021-04-17 23:05:15','2021-05-08 07:25:35','cfa8cc4a-249f-497e-a216-4b616d654ec5',1,'/content/Document/Events/2018/Redcliffe Sector Consultation Workshop.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2018/Redcliffe%20Sector%20Consultation%20Workshop.pdf','35.233.170.71','Go-http-client/1.1','Template not found: content/Document/Events/2018/Redcliffe Sector Consultation Workshop.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-08 07:25:35',0),(66558,'2021-04-17 23:19:39','2021-05-04 10:01:01','60d1c0a4-acd9-40fe-962b-75bf6efb5fbc',1,'/page/about/careers/program-development-officer-mental-health-alcohol-and-other-drugs/','','66.249.68.93','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/about/careers/program-development-officer-mental-health-alcohol-and-other-drugs','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-04 10:01:01',0),(66559,'2021-04-17 23:19:46','2021-04-29 04:59:40','665c85c8-1c16-4222-a627-5cf3e36f2c26',1,'/page/news-and-events/events/upcoming/lived-experience-summit-2018/','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/lived-experience-summit-2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-29 04:59:40',0),(66560,'2021-04-17 23:22:15','2021-04-19 11:52:19','19cd08e3-69f5-4473-8d3e-c28555c9bb47',1,'/page/health-professionals/Local Positions Vacant/gp-required---stafford-road-family-care/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/gp-required---stafford-road-family-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-19 11:52:19',0),(66561,'2021-04-17 23:27:27','2021-05-05 20:53:27','46b7b142-1c84-45c5-a811-8bb9b2ab5929',1,'/page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health---december-2017','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health---december-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-05 20:53:27',0),(66562,'2021-04-17 23:37:22','2021-05-15 09:52:21','b29a7c52-2399-49b0-8438-f84a496bba83',1,'/page/health-professionals/digital-health/my-health-record/assisting-patients-to-register-for-my-health-record','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/digital-health/my-health-record/assisting-patients-to-register-for-my-health-record','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 09:52:21',0),(66563,'2021-04-17 23:43:56','2021-04-17 23:43:56','8267832b-ee64-4626-a02e-3a2a9e09522c',1,'/page/health-professionals/mental-health-services/brisbane-mind/information-for-gps/alternative-mental-health-services/','','207.46.13.38','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/mental-health-services/brisbane-mind/information-for-gps/alternative-mental-health-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 23:43:56',0),(66564,'2021-04-17 23:45:08','2021-04-17 23:45:08','1f773c24-4a39-4e91-920f-7e1234c7d15d',1,'/content/Document/Media Releases/MR_Mental health nurses offer no-cost clinical care coordination_170901.pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%20Releases/MR_Mental%20health%20nurses%20offer%20no-cost%20clinical%20care%20coordination_170901.pdf','35.225.91.148','Go-http-client/1.1','Template not found: content/Document/Media Releases/MR_Mental health nurses offer no-cost clinical care coordination_170901.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 23:45:08',0),(66565,'2021-04-17 23:56:34','2021-04-17 23:56:34','3c9a017c-7ec3-4e48-b2a8-8548700a72ab',1,'/content/Document/FORM 2 - Application for Group Therapy Program.docx','http://www.brisbanenorthphn.org.au/content/Document/FORM%202%20-%20Application%20for%20Group%20Therapy%20Program.docx','35.225.91.148','Go-http-client/1.1','Template not found: content/Document/FORM 2 - Application for Group Therapy Program.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-17 23:56:34',0),(66566,'2021-04-17 23:58:55','2021-05-18 01:16:24','cbc4e4eb-70be-48ad-aa4f-74add959f727',1,'/jobs/stonewall-medical-centre-medical-receptionist','','40.77.167.6','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/stonewall-medical-centre-medical-receptionist','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-18 01:16:24',0),(66567,'2021-04-18 00:00:41','2021-05-16 09:13:17','9a9addc8-87c6-43fd-a0c5-2cb5ca40a344',1,'/events/prolonged-exposure-therapy-for-ptsd-and-complex-ptsd','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/prolonged-exposure-therapy-for-ptsd-and-complex-ptsd','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 09:13:17',0),(66568,'2021-04-18 00:00:41','2021-05-11 10:23:03','042f2532-9b15-4d05-a2a5-9e01236561c5',1,'/content/Document/Arm exercise and deep breathing V3 23 12 15.pdf','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Arm exercise and deep breathing V3 23 12 15.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-11 10:23:03',0),(66569,'2021-04-18 00:08:19','2021-04-21 00:00:15','a0762dc1-21e4-49d1-bad6-3f99a2a08e37',1,'/content/Document/Position descriptions/PD_Clinical Trainer_170523.pdf','','207.46.13.181','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Position descriptions/PD_Clinical Trainer_170523.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-21 00:00:15',0),(66570,'2021-04-18 00:10:44','2021-05-17 11:32:31','f8689d0b-096c-444e-a67a-22a18dda426b',1,'/page/news-and-events/events/archive/urology-for-general-practice','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/urology-for-general-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-17 11:32:31',0),(66571,'2021-04-18 00:16:35','2021-05-11 01:28:54','b256ec1c-981a-4b67-8275-e197ad8b0bfa',1,'/content/Document/Fact%20sheet%20-%20stepped%20care.pdf','http://www.brisbanenorthphn.org.au/content/Document/Fact%2520sheet%2520-%2520stepped%2520care.pdf','34.121.182.57','Go-http-client/1.1','Template not found: content/Document/Fact sheet - stepped care.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 01:28:54',0),(66572,'2021-04-18 00:17:26','2021-05-13 08:43:59','4d4a3f0a-d0b5-472e-bc17-8d7e6d95f45d',1,'/page/news-and-events/latest-news/proposed-changes-to-the-recommended-use-of-pertussis-vaccines-in-pregnant-women','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/proposed-changes-to-the-recommended-use-of-pertussis-vaccines-in-pregnant-women','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-13 08:43:59',0),(66573,'2021-04-18 00:26:10','2021-04-20 08:42:35','78dcb514-ffc3-43f0-b30a-31bff53987d7',1,'/page/news-and-events/latest-news/eoi-open-for-chronic-wound-governance-group','http://brisbanenorthphn.org.au/page/news-and-events/latest-news/eoi-open-for-chronic-wound-governance-group','35.210.147.198','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/latest-news/eoi-open-for-chronic-wound-governance-group','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-20 08:42:35',0),(66574,'2021-04-18 00:26:34','2021-05-10 14:15:44','233e65a6-75de-45dd-8c83-526cb8994793',1,'/content/Document/SHSH Referral Form Word 2003.doc','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/SHSH Referral Form Word 2003.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 14:15:44',0),(66575,'2021-04-18 00:32:48','2021-04-18 00:32:48','96e4f03a-aa46-4e87-bd79-e747c89aba55',1,'/content/Document/Annual Mental Health Activity Work Plan 2016-2017.docx','http://www.brisbanenorthphn.org.au/content/Document/Annual%20Mental%20Health%20Activity%20Work%20Plan%202016-2017.docx','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/Annual Mental Health Activity Work Plan 2016-2017.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 00:32:48',0),(66576,'2021-04-18 00:33:13','2021-04-26 21:16:44','6da5d6e9-56a3-4000-aa04-0d0117119787',1,'/content/Document/Events/2019/INVITATION - Common challenges in primary care_Epilepsy for GPs_PRINTv4.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/INVITATION%20-%20Common%20challenges%20in%20primary%20care_Epilepsy%20for%20GPs_PRINTv4.pdf','146.148.65.39','Go-http-client/1.1','Template not found: content/Document/Events/2019/INVITATION - Common challenges in primary care_Epilepsy for GPs_PRINTv4.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-26 21:16:44',0),(66577,'2021-04-18 00:34:36','2021-05-16 07:36:45','17a6a734-32b6-435a-95ea-5363b1434787',1,'/page/news-and-events/events/upcoming/working-therapeutically-with-complex-trauma-clients-level-2---three-phased-approach/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/working-therapeutically-with-complex-trauma-clients-level-2---three-phased-approach','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 07:36:45',0),(66578,'2021-04-18 00:38:50','2021-04-18 00:38:50','d7f5390b-55af-4f92-baec-c6de5364918c',1,'/content/Document/Pathways/Tips for physical activity_1.pdf','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/Tips for physical activity_1.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 00:38:50',0),(66579,'2021-04-18 00:39:55','2021-05-16 15:41:01','d13077dc-a3a3-4b48-8c8f-33b4a76208d0',1,'/page/news-and-events/events/upcoming/keeping-kidneys-in-the-community-ckd-shared-care-program-2','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/keeping-kidneys-in-the-community-ckd-shared-care-program-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 15:41:01',0),(66580,'2021-04-18 01:02:06','2021-05-09 07:34:02','1f5e9dc5-672d-43f5-a466-fd9edfbd9925',1,'/page/home/quicklinks/mental-health-tenders-open','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/quicklinks/mental-health-tenders-open','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-09 07:34:02',0),(66581,'2021-04-18 01:06:41','2021-05-16 23:41:24','21e25309-5592-4c11-ba42-8e4a97dd05e9',1,'/page/news-and-events/latest-news/gps-and-pharmacists-invited-to-complete-my-health-record-awareness-survey/','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/gps-and-pharmacists-invited-to-complete-my-health-record-awareness-survey','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-16 23:41:24',0),(66582,'2021-04-18 01:15:49','2021-05-16 04:35:49','56f0071d-b062-4967-8063-0eb9e1b026bd',1,'/content/Document/Events/2018/08_10_18 SHU Kedron FLYER.pdf','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Events/2018/08_10_18 SHU Kedron FLYER.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 04:35:49',0),(66583,'2021-04-18 01:18:12','2021-05-11 05:13:04','15aabf66-8051-4911-9389-4db45e61c72f',1,'/content/Document/MHAOD_Recovery_newsletter_April_2017_FINAL.pdf','http://www.brisbanenorthphn.org.au/content/Document/MHAOD_Recovery_newsletter_April_2017_FINAL.pdf','34.121.182.57','Go-http-client/1.1','Template not found: content/Document/MHAOD_Recovery_newsletter_April_2017_FINAL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-11 05:13:04',0),(66584,'2021-04-18 01:19:34','2021-05-12 08:06:20','810f85b0-34ac-4295-a5bd-ae2057ea59b0',1,'/content/Document/Primary care liaison/eHealth-PIP-toolkit-generic.pdf','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Primary care liaison/eHealth-PIP-toolkit-generic.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-12 08:06:20',0),(66585,'2021-04-18 01:36:21','2021-05-04 04:26:20','8b6bcd3b-8b78-4829-b210-eaa39f2b8571',1,'/page/news-and-events/events/upcoming/pathways-to-care-workshop/','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/pathways-to-care-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-04 04:26:20',0),(66586,'2021-04-18 01:38:39','2021-04-20 18:26:01','04334c03-eab9-4073-ad51-74cc2dc62c25',1,'/content/Document/CTS boston questionaire_2.pdf','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/CTS boston questionaire_2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-20 18:26:01',0),(66587,'2021-04-18 01:58:24','2021-05-11 07:40:25','eed08c7c-f86c-4691-a0c5-b4b6c4be9ee9',1,'/content/Document/Pathways/RACGPmedicationlist.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/RACGPmedicationlist.pdf','34.121.182.57','Go-http-client/1.1','Template not found: content/Document/Pathways/RACGPmedicationlist.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-11 07:40:25',0),(66588,'2021-04-18 02:02:06','2021-05-16 04:55:45','7d117371-2c3c-4cc3-a053-720cb2a033cd',1,'/page/health-professionals/digital-health/health-data/','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/digital-health/health-data','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 04:55:45',0),(66589,'2021-04-18 02:03:21','2021-04-28 19:06:24','10da484a-bbfd-4835-8eaa-9c33780b15b2',1,'/content/Document/Pathways/pathways_bristol.pdf','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/pathways_bristol.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-28 19:06:24',0),(66590,'2021-04-18 02:10:51','2021-05-11 15:16:44','8d02683d-1f37-4328-a1c9-a70b119a6fbb',1,'/content/Document/NIV-Sleep flier v6 2017.pdf','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/NIV-Sleep flier v6 2017.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-11 15:16:44',0),(66591,'2021-04-18 02:18:18','2021-05-16 07:24:55','dda17070-cb45-4879-9e4c-d64545740751',1,'/content/Document/Pathways/Indications for Serum Allergen Specific IgE over skin prick testing.pdf','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Indications for Serum Allergen Specific IgE over skin prick testing.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 07:24:55',0),(66592,'2021-04-18 02:27:08','2021-05-05 09:10:28','75b160ff-548f-4172-b5cb-2b70e7ca34d8',1,'/jobs/brighton-medical-centre-general-practitioner','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/brighton-medical-centre-general-practitioner','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-05 09:10:28',0),(66593,'2021-04-18 02:33:33','2021-04-18 02:33:33','b0e5a662-9d79-4497-bbef-ce2b9cde08a7',1,'/page/news-and-events/events/archive/hepatitis-c-case-finding-to-practice-nurses','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/hepatitis-c-case-finding-to-practice-nurses','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 02:33:33',0),(66594,'2021-04-18 02:37:05','2021-05-08 17:58:12','95920e77-7c31-45fb-babd-9243d6221f39',1,'/content/Document/Specialists List_Palliative Care_4_10.pdf','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Specialists List_Palliative Care_4_10.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-08 17:58:12',0),(66595,'2021-04-18 02:41:48','2021-04-27 14:40:10','ceca016b-b70d-4ecf-b0e3-7a989272595c',1,'/jobs/mater-refugee-complex-care-clinic','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/mater-refugee-complex-care-clinic','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-27 14:40:10',0),(66596,'2021-04-18 02:49:15','2021-04-19 08:45:07','6bf39115-3259-49c5-a039-54ba05f834b0',1,'/content/Document/Templates/4.8/MNHHS Palliative Referral BP v4_8.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.8/MNHHS%20Palliative%20Referral%20BP%20v4_8.rtf','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/Templates/4.8/MNHHS Palliative Referral BP v4_8.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-19 08:45:07',0),(66597,'2021-04-18 02:53:59','2021-05-16 18:13:01','87ea05b0-3e4b-4cec-bc23-4f3b8af34bbe',1,'/content/Document/Pathways/Conners\' Teacher Rating Scale-revised.pdf','','5.151.189.245','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko)','Template not found: content/Document/Pathways/Conners\' Teacher Rating Scale-revised.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-16 18:13:01',0),(66598,'2021-04-18 02:54:32','2021-04-18 20:39:27','62af2c1d-74d4-4795-bba6-a734f03968a5',1,'/wordpress/','','35.239.244.49','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36','Template not found: wordpress','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-18 20:39:27',0),(66599,'2021-04-18 02:54:35','2021-04-18 20:39:27','2f99a557-886c-4da7-b8b6-4372ac49d1e5',1,'/wp/','','35.239.244.49','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36','Template not found: wp','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-18 20:39:27',0),(66600,'2021-04-18 02:54:38','2021-04-19 21:27:46','d3f5bf99-e35d-4106-a3d4-9fe36c08dfa0',1,'/blog/','','192.227.209.241','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','Template not found: blog','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-19 21:27:46',0),(66601,'2021-04-18 02:54:42','2021-04-18 20:39:28','e4fdf78c-24ea-4030-8503-f4fe208c5681',1,'/new/','','35.239.244.49','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36','Template not found: new','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-18 20:39:28',0),(66602,'2021-04-18 02:54:45','2021-05-14 01:14:23','7f6482b4-abe2-4a27-ad0e-40d7a6d3e9e7',1,'/old/','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: old','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-14 01:14:23',0),(66603,'2021-04-18 02:54:49','2021-04-18 02:54:49','628b22b1-e2d8-4054-83a7-ec7204714841',1,'/newsite/','','40.87.70.212','python-requests/2.25.1','Template not found: newsite','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 02:54:49',0),(66604,'2021-04-18 02:54:52','2021-04-18 20:39:29','53287704-577d-4ef3-a00a-669253a8cc2a',1,'/test/','','35.239.244.49','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36','Template not found: test','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-18 20:39:29',0),(66605,'2021-04-18 02:55:54','2021-05-18 10:48:31','fd19740b-3045-4b0c-a1ee-fba72a643074',1,'/jobs/medical-receptionist-full-time','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/medical-receptionist-full-time','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,15,'2021-05-18 10:48:31',0),(66606,'2021-04-18 02:56:21','2021-05-16 15:34:51','2b94e8d4-b4fc-46ab-ae2b-e29f6041cbf3',1,'/content/Document/Pathways/Medication overuse headache subtypes_summary of ICHD_140806.pdf','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Medication overuse headache subtypes_summary of ICHD_140806.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-16 15:34:51',0),(66607,'2021-04-18 03:01:25','2021-05-19 00:20:37','44edd7d5-ecce-4279-904e-6bc76fe957c4',1,'/page/health-professionals/Local Positions Vacant/practice-manager---taigum','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-manager---taigum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-19 00:20:37',0),(66608,'2021-04-18 03:03:23','2021-05-10 16:32:24','cf312f3e-118d-4545-b838-f2ff67db2088',1,'/page/health-professionals/team-care-coordination','','66.249.69.63','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/team-care-coordination','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-10 16:32:24',0),(66609,'2021-04-18 03:07:15','2021-05-16 00:49:13','eff5f554-b5bc-44e3-b22b-db9b4527373e',1,'/events/webinar-for-medical-practitioners-female-fertility-conditions','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/webinar-for-medical-practitioners-female-fertility-conditions','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 00:49:13',0),(66610,'2021-04-18 03:09:35','2021-04-18 03:09:35','9d2198b5-3b74-44fd-8d39-f6adeb0f4ddf',1,'/yearinreview/improving-outcomes-for-people-with-chronic-conditions/www.brisbanenorthphn.org.au','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/improving-outcomes-for-people-with-chronic-conditions/www.brisbanenorthphn.org.au','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 03:09:35',0),(66611,'2021-04-18 03:12:39','2021-04-18 03:12:39','eb32a075-4a0a-4eb6-b92c-b4984cc4f9e3',1,'/yearinreview/connecting-communities-to-primary-care','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/connecting-communities-to-primary-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 03:12:39',0),(66612,'2021-04-18 03:16:10','2021-05-03 00:14:14','241e7598-c874-4055-9028-bf6ba882204e',1,'/content/Document/Brisbane MIND Provider List January 2018(9).pdf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List January 2018(9).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-03 00:14:14',0),(66613,'2021-04-18 03:25:36','2021-04-23 02:53:12','1ae3695c-a16d-4e56-9df5-0631f521231d',1,'/page/community/my-mental-health','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/community/my-mental-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-23 02:53:12',0),(66614,'2021-04-18 03:26:32','2021-05-16 07:46:14','0eeeef36-e644-47c3-b209-4169e100057e',1,'/page/news-and-events/latest-news/my-health-record-australians-to-decide-on-a-smarter-and-safer-way-to-share-their-important-healthcare-information/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/my-health-record-australians-to-decide-on-a-smarter-and-safer-way-to-share-their-important-healthcare-information','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-16 07:46:14',0),(66615,'2021-04-18 03:26:56','2021-04-18 03:26:56','6be8e084-d179-4a03-a088-c9d767eeb746',1,'/content/Document/GPLO Program_Useful GP resources_FINAL_Jan 2017_v1_1.pdf','http://www.brisbanenorthphn.org.au/content/Document/GPLO%20Program_Useful%20GP%20resources_FINAL_Jan%202017_v1_1.pdf','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/GPLO Program_Useful GP resources_FINAL_Jan 2017_v1_1.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 03:26:56',0),(66616,'2021-04-18 03:27:18','2021-05-14 04:14:06','5abb63e1-3dd1-4506-8bc3-c80a3b6ee20e',1,'/page/health-professionals/Local Positions Vacant/casual-medical-receptionist---mango-hill/','','66.249.69.36','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/casual-medical-receptionist---mango-hill','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-14 04:14:06',0),(66617,'2021-04-18 03:41:06','2021-05-18 22:03:33','8b949b3a-b7f3-4a47-9094-0f87c1190ec1',1,'/content/Document/Aged and community care/Older Persons Plan 2017-2022.pdf','','157.55.39.101','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Aged and community care/Older Persons Plan 2017-2022.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-18 22:03:33',0),(66618,'2021-04-18 03:41:38','2021-04-18 03:41:38','ca9b8f99-7140-4095-961c-f6fdc9f188b2',1,'/content/Document/Brisbane North PHN Advertising Specifications_2015-16.docx','http://www.brisbanenorthphn.org.au/content/Document/Brisbane%20North%20PHN%20Advertising%20Specifications_2015-16.docx','35.225.91.148','Go-http-client/1.1','Template not found: content/Document/Brisbane North PHN Advertising Specifications_2015-16.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 03:41:38',0),(66619,'2021-04-18 03:42:17','2021-05-07 15:14:24','d5a46c49-6afa-4e56-b1d7-75b67d781027',1,'/content/Document/Reports/FIN_AAWP_NPSM 18-19_181114 WEB (1).docx','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Reports/FIN_AAWP_NPSM 18-19_181114 WEB (1).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-07 15:14:24',0),(66620,'2021-04-18 03:46:23','2021-04-18 03:46:23','05aa99fd-afd0-41b4-b4b6-88da7de99d56',1,'/page/news-and-events/events/upcoming/trauma-informed-birthing-recognising-and-responding-to-birth-trauma/','','207.46.13.5','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/trauma-informed-birthing-recognising-and-responding-to-birth-trauma','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 03:46:23',0),(66621,'2021-04-18 03:51:05','2021-05-01 12:40:12','bf217f5a-85c4-438f-9258-a3bdcaf82d5c',1,'/content/Image/banner_page_ctg.jpg','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/banner_page_ctg.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 12:40:12',0),(66622,'2021-04-18 04:00:13','2021-04-18 04:00:13','c11b735b-bba1-46de-9be5-e85e62944ee3',1,'/page/health-professionals/Local Positions Vacant/general-practitioner/','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 04:00:13',0),(66623,'2021-04-18 04:06:46','2021-05-17 20:31:14','ef08006e-71d7-48a7-8fea-d5e635e9a6ff',1,'/page/health-professionals/MHAOD/funded-mental-health-services/psychosocial-disability-partners-in-recovery','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/MHAOD/funded-mental-health-services/psychosocial-disability-partners-in-recovery','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-17 20:31:14',0),(66624,'2021-04-18 04:07:23','2021-05-18 04:17:05','2a4e309c-8486-405e-9bad-adc39fc267d0',1,'/content/Document/MNHHS Palliative Referral MD v4_11(3).rtf','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/MNHHS Palliative Referral MD v4_11(3).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 04:17:05',0),(66625,'2021-04-18 04:07:41','2021-05-06 14:32:48','404f22b1-91d3-41dd-a9b0-d3828df6f3cf',1,'/wordpress/xmlrpc.php','','20.39.234.31','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36','Template not found: wordpress/xmlrpc.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 14:32:48',0),(66626,'2021-04-18 04:07:48','2021-05-06 14:32:40','f28e661c-c0c1-4788-a8b8-7c5cecb1c0be',1,'/wp/xmlrpc.php','','20.39.234.31','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:77.0) Gecko/20100101 Firefox/77.0','Template not found: wp/xmlrpc.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 14:32:40',0),(66627,'2021-04-18 04:07:52','2021-05-06 14:33:11','3127d0d0-1b5c-4ad4-a469-97497550f17e',1,'/blog/xmlrpc.php','','20.39.234.31','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36','Template not found: blog/xmlrpc.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 14:33:11',0),(66628,'2021-04-18 04:08:01','2021-05-06 14:33:03','a0b9260a-30bc-4f9a-a967-cb1fbda83f07',1,'/new/xmlrpc.php','','20.39.234.31','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','Template not found: new/xmlrpc.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 14:33:03',0),(66629,'2021-04-18 04:08:06','2021-05-06 14:32:56','6994bd67-ee7b-4280-ae62-2cc0e07f20fe',1,'/old/xmlrpc.php','','20.39.234.31','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36','Template not found: old/xmlrpc.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 14:32:56',0),(66630,'2021-04-18 04:08:12','2021-05-06 14:33:19','1ff88b98-6c8a-4a40-8161-00ab1a540fb1',1,'/backup/xmlrpc.php','','20.39.234.31','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36','Template not found: backup/xmlrpc.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 14:33:19',0),(66631,'2021-04-18 04:08:24','2021-04-18 04:08:24','0372f0af-c78b-4cf5-aff4-8391a0b2e6c6',1,'/oldsite/xmlrpc.php','','159.69.95.65','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0','Template not found: oldsite/xmlrpc.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 04:08:24',0),(66632,'2021-04-18 04:08:29','2021-05-06 14:33:33','631fba60-f34d-4be9-88e1-11f5268e96f8',1,'/site/xmlrpc.php','','20.39.234.31','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:79.0) Gecko/20100101 Firefox/79.0','Template not found: site/xmlrpc.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 14:33:33',0),(66633,'2021-04-18 04:08:35','2021-04-18 04:08:35','794351e1-bf7a-4e7e-8f23-ebf1476b8d40',1,'/back/xmlrpc.php','','159.69.95.65','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36','Template not found: back/xmlrpc.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 04:08:35',0),(66634,'2021-04-18 04:08:42','2021-05-06 14:33:27','6bd56978-a4f3-4453-abbd-290b1f2dfa1b',1,'/web/xmlrpc.php','','20.39.234.31','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:79.0) Gecko/20100101 Firefox/79.0','Template not found: web/xmlrpc.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 14:33:27',0),(66635,'2021-04-18 04:10:34','2021-04-18 04:10:34','8b9f7865-5014-4224-b841-8e58b67b1962',1,'/content/Document/Media Releases/MR_Health Alliance to bridge the primary care and hospital gap_170228.pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%20Releases/MR_Health%20Alliance%20to%20bridge%20the%20primary%20care%20and%20hospital%20gap_170228.pdf','35.225.91.148','Go-http-client/1.1','Template not found: content/Document/Media Releases/MR_Health Alliance to bridge the primary care and hospital gap_170228.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 04:10:34',0),(66636,'2021-04-18 04:10:58','2021-05-12 19:24:18','15bd0b4b-3363-470b-ba7b-c8ffb709036b',1,'/page/home/banners/our-year-in-review-has-gone-digital','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/banners/our-year-in-review-has-gone-digital','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-12 19:24:18',0),(66637,'2021-04-18 04:29:13','2021-04-18 04:29:13','8c96a077-594c-471e-b451-c1028b08ba15',1,'/page/news-and-events/events/upcoming/boom-days-–-maternal-fetal-medicine-and-basics-of-obstetric-medicine-conference','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/boom-days-–-maternal-fetal-medicine-and-basics-of-obstetric-medicine-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 04:29:13',0),(66638,'2021-04-18 04:49:12','2021-05-17 20:19:53','c29c8dca-b33c-4de4-9939-804c28e57a96',1,'/events/covid-19-gp-webinar','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/covid-19-gp-webinar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-17 20:19:53',0),(66639,'2021-04-18 04:50:30','2021-04-26 00:09:31','73aeb515-2879-4a14-9ca7-0ee9e6cdab72',1,'/content/Image/Page Banners/Banner_page_stoptherise.jpg','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Page Banners/Banner_page_stoptherise.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-26 00:09:31',0),(66640,'2021-04-18 04:58:59','2021-04-25 04:15:15','9dcc00e9-b682-40c9-b77f-f5ac3d8460f4',1,'/content/Document/Pathways/G2_Skin_Tears.pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/G2_Skin_Tears.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-25 04:15:15',0),(66641,'2021-04-18 05:08:02','2021-05-12 04:52:14','d02db290-df5b-4ac4-b4a1-ecd6af341042',1,'/content/Document/20170427_FLYER Deception Bay 27th June 2017(1).pdf','','66.249.68.31','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/20170427_FLYER Deception Bay 27th June 2017(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 04:52:14',0),(66642,'2021-04-18 05:08:35','2021-05-12 14:57:49','db8acc4b-b19d-4357-9f48-2cb13d415c07',1,'/content/Document/Vaccine management_OnlineModule_AJ2.pdf','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Vaccine management_OnlineModule_AJ2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-12 14:57:49',0),(66643,'2021-04-18 05:09:25','2021-05-18 05:42:48','0e1e318e-093c-4d5f-9c81-03c933337a9f',1,'/page/news-and-events/events/upcoming/caboolture-hospital-general-practice-forum/','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/caboolture-hospital-general-practice-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 05:42:48',0),(66644,'2021-04-18 05:18:48','2021-05-17 02:34:39','8e9893bd-8022-47a0-b310-11f4e3fbae7e',1,'/content/Document/Network Link_09_September_2016_FINAL_WEB.pdf','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Network Link_09_September_2016_FINAL_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,14,'2021-05-17 02:34:39',0),(66645,'2021-04-18 05:35:49','2021-05-06 11:57:31','33b2d52d-bf89-4365-a39e-6700b70d8843',1,'/content/Document/INFO_PIP eHealth Guide (July 2015).pdf','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/INFO_PIP eHealth Guide (July 2015).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-06 11:57:31',0),(66646,'2021-04-18 05:40:14','2021-05-16 07:44:18','0ac7f105-2efb-45e4-8f3f-674435105471',1,'/page/news-and-events/latest-news/local-providers-witness-positive-effects-of-lifestyle-campaign/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/local-providers-witness-positive-effects-of-lifestyle-campaign','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-16 07:44:18',0),(66647,'2021-04-18 05:42:16','2021-04-22 20:58:19','d2d62647-c596-4b72-88cd-b3be98a8dc1c',1,'/page/news-and-events/events/upcoming/curing-hepatitis-c-in-primary-care/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/news-and-events/events/upcoming/curing-hepatitis-c-in-primary-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-22 20:58:19',0),(66648,'2021-04-18 06:13:40','2021-04-18 06:13:40','2b6d64fc-e35e-4f54-a66b-4e13fd44f435',1,'/content/Document/Primary care liaison/MNHHS Paediatric Ref v6_2 ZM.rtf','http://www.brisbanenorthphn.org.au/content/Document/Primary%20care%20liaison/MNHHS%20Paediatric%20Ref%20v6_2%20ZM.rtf','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/MNHHS Paediatric Ref v6_2 ZM.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 06:13:40',0),(66649,'2021-04-18 06:22:09','2021-05-04 05:58:17','533cf3a3-5604-4345-9c06-daa0a5add6ba',1,'/content/Document/Primary care liaison/AHP Interpreting flyer Oct 2017 LOCKED.docx','','207.46.13.54','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Primary care liaison/AHP Interpreting flyer Oct 2017 LOCKED.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-04 05:58:17',0),(66650,'2021-04-18 06:29:00','2021-05-08 00:18:49','1a2afed1-df72-4add-bb02-9263afcf522d',1,'/content/Document/Paediatric Services Directory - Metro North District_FINAL_v4_1(3).docx','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Paediatric Services Directory - Metro North District_FINAL_v4_1(3).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-08 00:18:49',0),(66651,'2021-04-18 06:33:15','2021-05-16 15:34:12','af038b39-4bc0-4614-8a8e-a4e7c6a2311a',1,'/page/news-and-events/latest-news/gps-and-travellers-advised-to-be-aware-of-mers','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/gps-and-travellers-advised-to-be-aware-of-mers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 15:34:12',0),(66652,'2021-04-18 06:39:13','2021-05-07 02:13:35','3f83e39b-9051-493f-9daa-bdf7fc73af80',1,'/content/Document/Pathways/Table 1_Medical Conditions and Risk Factors Associated with Gait and Balance Disorders.pdf','','93.158.161.75','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','Template not found: content/Document/Pathways/Table 1_Medical Conditions and Risk Factors Associated with Gait and Balance Disorders.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-07 02:13:35',0),(66653,'2021-04-18 06:39:46','2021-05-04 02:25:41','8efe3ff3-37f2-4d9a-b51f-2bc733c7b35c',1,'/content/Document/MH4L_EOI_Brisbane North_2018.docx','','66.249.68.95','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/MH4L_EOI_Brisbane North_2018.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-04 02:25:41',0),(66654,'2021-04-18 06:49:54','2021-04-18 06:49:54','91843217-f635-469f-a247-22ef370f5c80',1,'/content/Document/Events/2018/2018 workshops email GP and staff flyer North Brisbane.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2018/2018%20workshops%20email%20GP%20and%20staff%20flyer%20North%20Brisbane.pdf','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/Events/2018/2018 workshops email GP and staff flyer North Brisbane.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 06:49:54',0),(66655,'2021-04-18 06:50:43','2021-04-18 06:50:43','f440855e-e09e-4d93-b9d7-281f33cb8e7c',1,'/content/Document/Templates/5.2/Specialists List_Maternity_5_2.pdf','','66.249.65.29','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/Templates/5.2/Specialists List_Maternity_5_2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 06:50:43',0),(66656,'2021-04-18 06:53:49','2021-04-18 21:26:25','9b506e2d-13b8-4df6-a197-9cdcee371bd2',1,'/content/Document/Events/Inclusive Health Network Forum November 2015.doc','http://www.brisbanenorthphn.org.au/content/Document/Events/Inclusive%20Health%20Network%20Forum%20November%202015.doc','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/Events/Inclusive Health Network Forum November 2015.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-18 21:26:25',0),(66657,'2021-04-18 06:55:39','2021-05-12 22:37:39','be31c202-7361-451e-b896-f2c3ab779ceb',1,'/content/Document/Brisbane MIND Group Listing 2016-17(5).pdf','','66.249.79.223','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Brisbane MIND Group Listing 2016-17(5).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 22:37:39',0),(66658,'2021-04-18 07:11:44','2021-04-21 10:59:48','61911b06-8b9e-4bce-91c8-11b846fd3a0d',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---clontarf/','https://www.brisbanenorthphn.org.au/page/health-professionals/Local+Positions+Vacant/general-practitioner---clontarf/','188.130.128.55','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.0 Safari/537.36','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---clontarf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-21 10:59:48',0),(66659,'2021-04-18 07:12:45','2021-04-18 07:12:45','162bb7cd-4e99-488f-acac-a72d506ea434',1,'/page/news-and-events/events/upcoming/the-4th-perioperative-patient-blood-management-symposium/','','207.46.13.5','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/the-4th-perioperative-patient-blood-management-symposium','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 07:12:45',0),(66660,'2021-04-18 07:20:24','2021-05-11 16:18:57','2777ecaa-f520-42c2-baef-562b12a2ca4c',1,'/page/news-and-events/events/upcoming/assessment-and-management-of-neck-and-upper-back-pain','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/assessment-and-management-of-neck-and-upper-back-pain','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-11 16:18:57',0),(66661,'2021-04-18 07:24:13','2021-05-11 18:27:10','f55a3b41-6f72-4d03-9f4d-d3934eb5b933',1,'/page/health-professionals/community-care/chsp','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/community-care/chsp','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-11 18:27:10',0),(66662,'2021-04-18 07:39:07','2021-05-18 07:42:59','a4be090c-448f-47f2-8d9c-5d515e25633b',1,'/content/Document/Brisbane MIND Provider List_AUGUST 2016(3).pdf','','157.55.39.116','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List_AUGUST 2016(3).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 07:42:59',0),(66663,'2021-04-18 07:48:00','2021-05-10 19:30:59','7280d6cb-c982-4527-bb01-8ae6007841c5',1,'/content/Document/Brisbane North PHN Needs Assessment Submission to DOH_November 2016.docx','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane North PHN Needs Assessment Submission to DOH_November 2016.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 19:30:59',0),(66664,'2021-04-18 07:49:39','2021-04-29 17:49:31','5cf2c7f8-ba6c-4a94-8751-1980ff617fdd',1,'/page/home/quicklinks','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/quicklinks','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-29 17:49:31',0),(66665,'2021-04-18 07:52:32','2021-04-18 07:52:32','e739575f-6b96-4706-b5c0-f880c8198b6a',1,'/content/Document/Templates/4.4/MNHHS RBWH Referral MD v4.4.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.4/MNHHS%20RBWH%20Referral%20MD%20v4.4.rtf','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/Templates/4.4/MNHHS RBWH Referral MD v4.4.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 07:52:32',0),(66666,'2021-04-18 07:56:57','2021-04-21 13:21:50','12c4a904-b91f-4173-a06a-85e113576781',1,'/content/Document/Media Releases/151010_Recovery on track, evaluation report finds.pdf','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Media Releases/151010_Recovery on track, evaluation report finds.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-21 13:21:50',0),(66667,'2021-04-18 07:57:20','2021-05-17 00:04:47','0caf83fa-7968-49fd-8af9-ee170a219390',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---brisbane/','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---brisbane','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-17 00:04:47',0),(66668,'2021-04-18 07:59:19','2021-04-18 07:59:19','81ffe752-56cf-4da4-be5b-b9bce50eb8a5',1,'/content/Document/Set 2_Pre assessment only_ v1.0_MN Maternity GP Alignment Program_1503.doc','http://www.brisbanenorthphn.org.au/content/Document/Set%202_Pre%20assessment%20only_%20v1.0_MN%20Maternity%20GP%20Alignment%20Program_1503.doc','35.225.91.148','Go-http-client/1.1','Template not found: content/Document/Set 2_Pre assessment only_ v1.0_MN Maternity GP Alignment Program_1503.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 07:59:19',0),(66669,'2021-04-18 08:06:02','2021-04-18 08:06:02','107a663c-f053-4e7d-b710-bdf9918cee09',1,'/content/Document/Network Link/Network_Link_Nov2019_V2_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%20Link/Network_Link_Nov2019_V2_WEB.pdf','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/Network Link/Network_Link_Nov2019_V2_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 08:06:02',0),(66670,'2021-04-18 08:09:52','2021-04-24 14:47:44','d550c30f-2864-453f-ac66-548d00e520c7',1,'/yearinreview/2018-19/wp-content/uploads/2018/11/Comforting-friend-1-600x400.jpg','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2018-19/wp-content/uploads/2018/11/Comforting-friend-1-600x400.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 14:47:44',0),(66671,'2021-04-18 08:25:09','2021-05-09 01:19:54','e36d5826-43b8-486e-b102-5fb992cdd4d6',1,'/page/health-professionals/referral-and-patient-management','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/referral-and-patient-management','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-09 01:19:54',0),(66672,'2021-04-18 08:28:46','2021-04-20 03:45:56','99a73c03-c7e5-4156-9516-f6258d23c39a',1,'/jobs/majellan-medical-centre-is-currently-seeking-an-experienced-medical-receptionist','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/majellan-medical-centre-is-currently-seeking-an-experienced-medical-receptionist','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-20 03:45:56',0),(66673,'2021-04-18 08:31:51','2021-04-18 08:31:51','21818482-ce42-44e3-92fe-578b1045932b',1,'/page/news-and-events/events/archive/lutwyche-immunisation-catch-up-events-for-practice-nurses---august-2017/','','13.66.139.65','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/lutwyche-immunisation-catch-up-events-for-practice-nurses---august-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 08:31:51',0),(66674,'2021-04-18 08:37:07','2021-05-12 22:51:26','57c4091d-11d0-4a7e-888e-8e282bafd2b3',1,'/content/Document/MNHF presentations 2017/IUIH CONNECT 170531.pdf','https://www.brisbanenorthphn.org.au/content/Document/MNHF%20presentations%202017/IUIH%20CONNECT%20170531.pdf','5.188.48.10','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36','Template not found: content/Document/MNHF presentations 2017/IUIH CONNECT 170531.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-12 22:51:26',0),(66675,'2021-04-18 08:40:11','2021-05-05 15:54:20','08f2616e-235c-4b62-90e2-cd575afcb2f7',1,'/content/Document/flyer ASHM_Brisbane_29thJuly_17_v4.pdf','http://www.brisbanenorthphn.org.au/content/Document/flyer%20ASHM_Brisbane_29thJuly_17_v4.pdf','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/flyer ASHM_Brisbane_29thJuly_17_v4.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-05 15:54:20',0),(66676,'2021-04-18 08:42:25','2021-05-16 18:00:10','1dfb9632-2a44-40a9-8ba8-e5a1fcbdf2a7',1,'/content/Document/Position Descriptions/PD_Manager_Communications_190308.pdf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Position Descriptions/PD_Manager_Communications_190308.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 18:00:10',0),(66677,'2021-04-18 08:53:31','2021-05-11 17:19:54','e02c2a2b-f9fc-42fc-9c39-fa99544a7cec',1,'/content/Document/Events/2019/Metro North Health Forum/MN_Health_Forum_Exhibition_Prospectus_2019_Final.pdf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2019/Metro North Health Forum/MN_Health_Forum_Exhibition_Prospectus_2019_Final.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-11 17:19:54',0),(66678,'2021-04-18 09:00:20','2021-04-23 11:17:25','f6a5e707-1a06-4ff4-ad0a-d90e7a4dd788',1,'/content/Document/Templates/4.9/MNHHS Caboolture Referral MD v4_9.rtf','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.9/MNHHS Caboolture Referral MD v4_9.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-23 11:17:25',0),(66679,'2021-04-18 09:09:49','2021-05-18 19:31:23','e30feb50-7b00-4bed-9300-cae9fe73145c',1,'/page/health-professionals/mental-health-services/brisbane-mind/information-for-providers','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/brisbane-mind/information-for-providers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 19:31:23',0),(66680,'2021-04-18 09:17:15','2021-04-19 12:00:03','c49f5fa7-9baf-4497-bc6e-fab8cb6ca252',1,'/page/health-professionals/mental-health-services/brisbane-mind4kids/contact/','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/mental-health-services/brisbane-mind4kids/contact','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-19 12:00:03',0),(66681,'2021-04-18 09:25:58','2021-04-19 09:48:29','b09e6f7c-5115-4851-9eef-6ea1298ecff2',1,'/content/Document/MNHF presentations 2017/Dr Catherine Yelland - Residential Aged Care Service 170531.pdf','','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/MNHF presentations 2017/Dr Catherine Yelland - Residential Aged Care Service 170531.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-19 09:48:29',0),(66682,'2021-04-18 09:38:01','2021-04-18 09:38:01','bf1b1cdc-1327-4f6d-b335-9f17de2e241c',1,'/content/Document/Templates/4.12/PractiX v4.12/MNHHS Palliative Care PractiX v4_12.doc','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.12/PractiX%20v4.12/MNHHS%20Palliative%20Care%20PractiX%20v4_12.doc','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/Templates/4.12/PractiX v4.12/MNHHS Palliative Care PractiX v4_12.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 09:38:01',0),(66683,'2021-04-18 09:40:19','2021-04-18 09:40:19','4cfe203d-298f-4318-88a1-e2830cec504d',1,'/page/publications/partners-in-health/partners-in-health-august-2017','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/partners-in-health-august-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 09:40:19',0),(66684,'2021-04-18 09:51:54','2021-05-08 05:53:57','f4164b22-750e-4e86-bef7-559bd7311727',1,'/content/Document/170427_Health alert_PFAS Information for Clinicians.pdf','http://www.brisbanenorthphn.org.au/content/Document/170427_Health%20alert_PFAS%20Information%20for%20Clinicians.pdf','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/170427_Health alert_PFAS Information for Clinicians.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-08 05:53:57',0),(66685,'2021-04-18 10:05:14','2021-04-18 10:05:14','f48d9d7a-3708-42b0-aebf-16a780156713',1,'/content/Document/Events/2017/Brisbane - Untangling Depression November 2017.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2017/Brisbane%20-%20Untangling%20Depression%20November%202017.pdf','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/Events/2017/Brisbane - Untangling Depression November 2017.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 10:05:14',0),(66686,'2021-04-18 10:11:13','2021-04-18 10:11:13','a6f6b02d-a4cb-441d-bd97-2b77df725997',1,'/content/Document/Brisbane MIND Provider List November 2018.pdf','http://www.brisbanenorthphn.org.au/content/Document/Brisbane%20MIND%20Provider%20List%20November%202018.pdf','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/Brisbane MIND Provider List November 2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 10:11:13',0),(66687,'2021-04-18 10:22:14','2021-05-18 10:14:44','59825a22-419a-47a9-9da6-a535376e005f',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---holdsworth-house-medical-brisbane/','','157.55.39.116','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---holdsworth-house-medical-brisbane','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 10:14:44',0),(66688,'2021-04-18 10:23:18','2021-04-18 10:23:18','c01a7ccc-d3a6-41e8-90c7-96ec3a1baca1',1,'/content/Document/Templates/4.4/MNHHS Maternity Referral MD v4.4.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.4/MNHHS%20Maternity%20Referral%20MD%20v4.4.rtf','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/Templates/4.4/MNHHS Maternity Referral MD v4.4.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 10:23:18',0),(66689,'2021-04-18 10:25:37','2021-04-18 10:25:37','e7811a8f-c589-4a65-bf9e-2d1720268e15',1,'/page/news-and-events/latest-news/measles-alert-for-brisbane---12-july-2018','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/measles-alert-for-brisbane---12-july-2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 10:25:37',0),(66690,'2021-04-18 10:26:58','2021-05-13 13:48:26','66bf6957-fe3b-4315-8a61-14bd05f18b2a',1,'/page/news-and-events/latest-news/health-alliance-team-member-a-finalist-in-metro-north-awards','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/health-alliance-team-member-a-finalist-in-metro-north-awards','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-13 13:48:26',0),(66691,'2021-04-18 10:48:30','2021-04-24 08:04:47','cf637f00-cf26-472e-9eed-fcbb8ee3563c',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---metro-north-health-services-district/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---metro-north-health-services-district','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 08:04:47',0),(66692,'2021-04-18 10:50:15','2021-04-27 12:26:11','89846e60-f5f6-454c-b074-ac2cf9fc9fbc',1,'/page/publications/Network Link/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/publications/Network Link','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-27 12:26:11',0),(66693,'2021-04-18 10:54:19','2021-05-18 10:24:50','0dc4a1a1-87aa-40c8-ab7e-6004c86fb536',1,'/page/news-and-events/events/archive/metro-north-maternity-gp-alignment-program-july-part-1-of-2/','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/metro-north-maternity-gp-alignment-program-july-part-1-of-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 10:24:50',0),(66694,'2021-04-18 11:01:58','2021-04-28 17:41:51','a08308b9-97aa-441b-bb41-205b6f39fa64',1,'/content/Document/Network Link/Network Link_10_October_FINAL_web(1).pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%20Link/Network%20Link_10_October_FINAL_web(1).pdf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Network Link/Network Link_10_October_FINAL_web(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-28 17:41:51',0),(66695,'2021-04-18 11:09:19','2021-05-01 18:37:29','757f8502-17b7-4413-b8ef-ad0ccb7cb624',1,'/content/Document/Pathways/Assessing the severity of depression.pdf','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Assessing the severity of depression.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 18:37:29',0),(66696,'2021-04-18 11:13:21','2021-05-18 07:17:20','258dc161-cda9-4151-9909-6d3704d68424',1,'/content/Document/Pathways/daily weight diary.pdf','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/daily weight diary.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-18 07:17:20',0),(66697,'2021-04-18 11:30:15','2021-05-14 14:53:54','096c574f-eadd-48ea-a6dd-99773827f967',1,'/content/Document/Templates/5.2/MNHHS Paediatric Referral v5_2 MD(1).rtf','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/5.2/MNHHS Paediatric Referral v5_2 MD(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-14 14:53:54',0),(66698,'2021-04-18 11:43:35','2021-04-28 20:53:23','b0fbef21-b68b-4b75-b958-71ba63d11773',1,'/content/Document/Health Technology Sales Registration.docx','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Health Technology Sales Registration.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-28 20:53:23',0),(66699,'2021-04-18 11:44:35','2021-05-18 23:45:56','988eab3c-0f16-484d-adff-6b6358d86686',1,'/content/Document/MNHF presentations 2017/Paul Johnson - BallyCara 170531.pdf','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/MNHF presentations 2017/Paul Johnson - BallyCara 170531.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-18 23:45:56',0),(66700,'2021-04-18 11:46:17','2021-05-17 21:20:34','694b0f7b-38da-4141-bc18-479f24134f37',1,'/page/news-and-events/latest-news/record-crowd-expected-for-metro-north-health-forum','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/record-crowd-expected-for-metro-north-health-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-17 21:20:34',0),(66701,'2021-04-18 11:46:46','2021-05-11 12:01:24','8cb097a3-3281-48bb-837a-ec4a78a14793',1,'/jobs/medical-recruitment-manager','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/medical-recruitment-manager','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-11 12:01:24',0),(66702,'2021-04-18 11:56:36','2021-05-08 01:55:29','42d30081-c757-4c8d-89dd-7b6dfb44ac69',1,'/content/Document/CHQ Project ECHOTM GPInvitation Series 2 v1 CHQonly V 3.pdf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/CHQ Project ECHOTM GPInvitation Series 2 v1 CHQonly V 3.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-08 01:55:29',0),(66703,'2021-04-18 12:00:45','2021-05-01 01:46:52','3a24c4e9-c26b-4be4-9b8b-66de1dd9630f',1,'/content/Document/Events/Be Liver Smart flyer (detailed).pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/Be%20Liver%20Smart%20flyer%20(detailed).pdf','34.106.50.141','Go-http-client/1.1','Template not found: content/Document/Events/Be Liver Smart flyer (detailed).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 01:46:52',0),(66704,'2021-04-18 12:04:06','2021-05-06 07:46:05','1a22a4b2-844c-432e-bc6e-e8e83ee1a676',1,'/jobs/clinical-registered-nurse-1','','54.161.41.102','Mozilla/5.0 (compatible; Neevabot/1.0; +https://neeva.com/neevabot)','Template not found: jobs/clinical-registered-nurse-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,19,'2021-05-06 07:46:05',0),(66705,'2021-04-18 12:04:06','2021-04-18 12:04:06','ba19e80e-a5cb-45ad-a702-a05fce8079b2',1,'/events/chronic-disease-management-aged-care-general-practice','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/chronic-disease-management-aged-care-general-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 12:04:06',0),(66706,'2021-04-18 12:13:14','2021-05-08 19:01:19','d46922a7-7d19-432a-984c-9959b5d7a083',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---strathpine-7-day-medical-centre/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---strathpine-7-day-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-08 19:01:19',0),(66707,'2021-04-18 12:22:10','2021-05-06 08:01:54','4184d0e1-214b-4670-bc53-ca05d44d0254',1,'/content/Document/MoM_Quick_Reference_Guide_PHN.pdf','http://www.brisbanenorthphn.org.au/content/Document/MoM_Quick_Reference_Guide_PHN.pdf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/MoM_Quick_Reference_Guide_PHN.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-06 08:01:54',0),(66708,'2021-04-18 12:31:19','2021-05-09 03:38:09','3084db89-337a-407a-af17-5f6a9b42df1b',1,'/jobs/general-practitioner-chermside','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/general-practitioner-chermside','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-09 03:38:09',0),(66709,'2021-04-18 12:31:38','2021-05-10 17:37:05','874f437f-e4f2-48e8-b8a9-a77e5f8f2e26',1,'/page/news-and-events/latest-news/one-year-on-from-geriatric-outreach-assessment-service-trial/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/one-year-on-from-geriatric-outreach-assessment-service-trial','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-10 17:37:05',0),(66710,'2021-04-18 12:32:45','2021-05-18 12:20:17','886ba144-48eb-4809-b92d-76975bc4e8ea',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---the-infinity-group/','','157.55.39.23','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---the-infinity-group','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 12:20:17',0),(66711,'2021-04-18 12:47:34','2021-04-18 14:54:26','2efec0e7-acfc-47f0-9365-17b280408528',1,'/events/apma-caboolture-pain-support-group','','207.46.13.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/apma-caboolture-pain-support-group','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-18 14:54:26',0),(66712,'2021-04-18 12:58:21','2021-05-15 06:36:41','badf4916-2b77-40af-830a-8245fd1652a6',1,'/content/Document/Templates/5.2/Specialists List_Caboolture Hospital_5_2.pdf','','144.76.162.206','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','Template not found: content/Document/Templates/5.2/Specialists List_Caboolture Hospital_5_2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 06:36:41',0),(66713,'2021-04-18 13:01:14','2021-04-18 13:01:14','75578d82-5af7-4bc0-a3eb-60dfda9b4855',1,'/content/Media/Genie V5.1/MNHHS Palliative Care v5.1 Genie.4W7','','40.77.167.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Media/Genie V5.1/MNHHS Palliative Care v5.1 Genie.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 13:01:14',0),(66714,'2021-04-18 13:06:25','2021-05-12 21:04:37','273e33d3-faf5-4d15-bf83-11df627a8893',1,'/content/Document/Invitation to September Educational Event(1).pdf','http://www.brisbanenorthphn.org.au/content/Document/Invitation%20to%20September%20Educational%20Event(1).pdf','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/Invitation to September Educational Event(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 21:04:37',0),(66715,'2021-04-18 13:16:11','2021-04-18 13:16:11','48b66e0c-8ca8-4154-926a-1a4a96334abb',1,'/royalty-free-vectors/character-vectors','','40.77.167.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: royalty-free-vectors/character-vectors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 13:16:11',0),(66716,'2021-04-18 13:20:00','2021-05-10 13:57:54','6bb2dbf3-72f1-4039-8df7-e0bd0d15c9a2',1,'/content/Document/Pathways/Pulmonary embolism node 52.pdf','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Pulmonary embolism node 52.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-10 13:57:54',0),(66717,'2021-04-18 13:27:26','2021-05-18 13:14:26','05d194cd-6b71-4705-a19e-d10ddddf19b3',1,'/page/health-professionals/Local Positions Vacant/general-practice-staff---hamilton-medical-centre/','','157.55.39.101','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practice-staff---hamilton-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 13:14:26',0),(66718,'2021-04-18 13:28:38','2021-05-12 13:47:43','e368674f-4c66-4434-8188-530e55ca7771',1,'/content/Document/PD_Clinical Coordinator_Pathways_170516.pdf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/PD_Clinical Coordinator_Pathways_170516.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 13:47:43',0),(66719,'2021-04-18 13:37:21','2021-05-18 13:34:31','c10dec01-5a36-4a5b-bb5f-08594123c589',1,'/content/Document/Templates/4.9/MNHHS Palliative Care PractiX v4_9.doc','','207.46.13.150','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.9/MNHHS Palliative Care PractiX v4_9.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 13:34:31',0),(66720,'2021-04-18 13:47:44','2021-05-07 22:16:54','b21e9618-937e-4510-a0b7-16256ca1f3e4',1,'/content/Document/MHAOD_Recovery_newsletter_August_2018 WEB.pdf','','66.249.69.63','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/MHAOD_Recovery_newsletter_August_2018 WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-07 22:16:54',0),(66721,'2021-04-18 13:48:23','2021-05-16 10:17:40','fe87cbce-92c9-47be-95d2-f228e4222db7',1,'/events/dont-miss-a-beat-recording-and-interpreting-ecgs-for-practice-nurses','','62.210.188.216','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)','Template not found: events/dont-miss-a-beat-recording-and-interpreting-ecgs-for-practice-nurses','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 10:17:40',0),(66722,'2021-04-18 13:51:11','2021-05-18 15:33:09','a0ce1eb7-424d-4798-9a50-04b4eddafe27',1,'/page/news-and-events/events/upcoming/cardiac-connections-brisbane-city','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/cardiac-connections-brisbane-city','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-18 15:33:09',0),(66723,'2021-04-18 13:55:05','2021-05-04 05:29:39','634ed524-c65b-4dfe-b568-b034af8aa5c2',1,'/content/Document/Templates/V5.1 Jan 2018/MD/MNHHS RBWH v5_1 MD.rtf','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/V5.1 Jan 2018/MD/MNHHS RBWH v5_1 MD.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-04 05:29:39',0),(66724,'2021-04-18 13:57:48','2021-04-28 23:38:55','db31c786-c298-446c-94b2-50083cc66bab',1,'/content/Document/Templates/5.3/MNHHS RBWH v5_3 ZM.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%20RBWH%20v5_3%20ZM.rtf','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS RBWH v5_3 ZM.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-28 23:38:55',0),(66725,'2021-04-18 13:58:40','2021-05-03 09:44:53','315b9c23-cc72-411a-854d-cd546978c443',1,'/events/critical-consults-in-osteoporosis-online-self-paced-cpd-education','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/critical-consults-in-osteoporosis-online-self-paced-cpd-education','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-03 09:44:53',0),(66726,'2021-04-18 13:59:17','2021-05-18 13:46:22','83c8aa44-d9a5-422a-bee4-a074b0a9a7c0',1,'/page/health-professionals/digital-health/my-health-record/assisting-patients-to-register-for-my-health-record/','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/digital-health/my-health-record/assisting-patients-to-register-for-my-health-record','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 13:46:22',0),(66727,'2021-04-18 14:03:04','2021-05-12 03:25:05','c35730d8-cda4-4353-ab0f-110dac5d606c',1,'/page/news-and-events/events/upcoming/doctors-health-what-gps-need-to-know/','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/doctors-health-what-gps-need-to-know','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 03:25:05',0),(66728,'2021-04-18 14:14:57','2021-04-18 14:14:57','2736af4b-89cf-4498-a351-d1f17362be22',1,'/content/Document/MNHHS RBWH Referral ZM v4_11(1).rtf','','207.46.13.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/MNHHS RBWH Referral ZM v4_11(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 14:14:57',0),(66729,'2021-04-18 14:22:15','2021-05-03 00:12:16','6ed6267d-ad28-433d-8fba-28da73cb9bb6',1,'/content/Document/Specialists List_The Prince Charles Hospital_4_11.pdf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Specialists List_The Prince Charles Hospital_4_11.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-03 00:12:16',0),(66730,'2021-04-18 14:33:24','2021-05-05 23:57:18','1ef98b00-c343-4acc-bfdb-1cfad6377127',1,'/page/news-and-events/metro-north-health-forum/2017-metro-north-health-forum/metro-north-health-forum-talking-bout-a-revolution-or-evolution','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/metro-north-health-forum/2017-metro-north-health-forum/metro-north-health-forum-talking-bout-a-revolution-or-evolution','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-05 23:57:18',0),(66731,'2021-04-18 14:41:10','2021-05-13 12:03:51','eee2639d-4f99-4316-b3dc-208f162e134d',1,'/jobs/medical-receptionist-position','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/medical-receptionist-position','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-13 12:03:51',0),(66732,'2021-04-18 14:45:05','2021-05-10 01:49:46','082f788d-180b-45e8-9ec4-c1ee7c22bcfa',1,'/page/news-and-events/latest-news/new-video-promotes-local-mental-health-services','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/new-video-promotes-local-mental-health-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-10 01:49:46',0),(66733,'2021-04-18 14:45:46','2021-05-07 06:37:06','3b4743f9-eac1-4a79-b1af-84f86c001104',1,'/page/health-professionals/Local Positions Vacant/practice-manager-required---ashgrove-west-group-practice/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/practice-manager-required---ashgrove-west-group-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-07 06:37:06',0),(66734,'2021-04-18 14:47:18','2021-04-18 14:47:18','9f0808b9-a578-4c61-adac-a741e85b5d93',1,'/page/news-and-events/events/upcoming/dementia-australia-chcage005-providing-support-to-people-living-with-dementia-may/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/dementia-australia-chcage005-providing-support-to-people-living-with-dementia-may','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 14:47:18',0),(66735,'2021-04-18 14:49:20','2021-04-18 14:49:20','2486074e-7dfa-4026-b62a-58b066d330a2',1,'/page/news-and-events/events/upcoming/chronic-disease-support-program/','','13.66.139.40','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/chronic-disease-support-program','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 14:49:20',0),(66736,'2021-04-18 14:52:40','2021-05-10 13:52:48','26064ec0-a00d-40d7-b416-74b61844d087',1,'/content/Document/Media Releases/MR_Parenting program aims to outshine postnatal depression and anxiety_171113.pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%20Releases/MR_Parenting%20program%20aims%20to%20outshine%20postnatal%20depression%20and%20anxiety_171113.pdf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Media Releases/MR_Parenting program aims to outshine postnatal depression and anxiety_171113.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-10 13:52:48',0),(66737,'2021-04-18 14:55:56','2021-04-18 14:55:56','b5cb4a38-3996-4529-9bd6-a43ef5432b04',1,'/content/Document/Events/INV_Dementia Training Workshop - March 23.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/INV_Dementia%20Training%20Workshop%20-%20March%2023.pdf','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/Events/INV_Dementia Training Workshop - March 23.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 14:55:56',0),(66738,'2021-04-18 15:04:10','2021-05-08 07:42:34','7b49cd31-83ef-4493-853d-d3984f5bd082',1,'/page/news-and-events/events/upcoming/my-health-record-for-diagnostic-imaging-practices-–-adding-value-to-clinical-care','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/my-health-record-for-diagnostic-imaging-practices-–-adding-value-to-clinical-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-08 07:42:34',0),(66739,'2021-04-18 15:10:33','2021-05-18 14:22:46','21148e42-de97-436c-99ae-c8ddc0da7b04',1,'/content/Document/MNHHS Maternity Referral ZM v4_11(2).rtf','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/MNHHS Maternity Referral ZM v4_11(2).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 14:22:46',0),(66740,'2021-04-18 15:43:04','2021-04-18 15:43:04','34d595f1-cc93-4615-b253-1bcaf6222cc2',1,'/content/Document/Templates/4.6/MNHHS Redcliffe Ref MD v4_6.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.6/MNHHS%20Redcliffe%20Ref%20MD%20v4_6.rtf','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/Templates/4.6/MNHHS Redcliffe Ref MD v4_6.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 15:43:04',0),(66741,'2021-04-18 15:57:27','2021-04-18 15:57:27','9483375c-c1b9-4054-8668-19f1e4245aa8',1,'/content/Image/Events/BNPHN_040.jpg','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Events/BNPHN_040.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 15:57:27',0),(66742,'2021-04-18 16:00:14','2021-04-18 16:00:14','b3e218b0-360d-4b79-95a4-51f538266805',1,'/page/health-professionals/my-health-for-life/local-providers-witness-positive-effects-of-lifestyle-campaign','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/my-health-for-life/local-providers-witness-positive-effects-of-lifestyle-campaign','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 16:00:14',0),(66743,'2021-04-18 16:03:56','2021-04-18 16:03:56','3f5fd42e-8de1-4e14-9ef1-cc3a1ecf80b5',1,'/content/Document/Templates/4.9/MNHHS Redcliffe Referral BP v4_9.rtf','','207.46.13.74','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.9/MNHHS Redcliffe Referral BP v4_9.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 16:03:56',0),(66744,'2021-04-18 16:13:42','2021-05-07 18:31:14','042c6303-e3ad-4aba-aff5-56ebc2885e3f',1,'/page/news-and-events/latest-news/healthpathways-milestone-reached-with-400-published-pathways','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/healthpathways-milestone-reached-with-400-published-pathways','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-07 18:31:14',0),(66745,'2021-04-18 16:16:03','2021-05-18 17:25:27','f1142248-4803-4bd2-8966-38b01241d013',1,'/page/news-and-events/latest-news/metro-north-trials-new-redbook-cover-for-indigenous-families/','','157.55.39.35','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/metro-north-trials-new-redbook-cover-for-indigenous-families','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 17:25:27',0),(66746,'2021-04-18 16:17:04','2021-04-18 16:17:04','15625a24-9754-40e0-816a-9c1dd6ec56f2',1,'/content/Document/Brisbane North PHN Needs Assessment Submission to DOH_November 2016.pdf','','207.46.13.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane North PHN Needs Assessment Submission to DOH_November 2016.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 16:17:04',0),(66747,'2021-04-18 16:17:53','2021-04-18 16:17:53','61a6ec1d-82fb-46a0-a7fe-25d6184a3257',1,'/page/health-professionals/Local Positions Vacant/casual-registered-nurse-required---everton-hills-medical-centre/','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/casual-registered-nurse-required---everton-hills-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 16:17:53',0),(66748,'2021-04-18 16:26:12','2021-04-18 16:26:12','ce0c6187-c960-4d21-bbe0-802763d0367f',1,'/content/Document/Events/2019/Invitation - immunisation catch up events flyer October 2019.pdf','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2019/Invitation - immunisation catch up events flyer October 2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 16:26:12',0),(66749,'2021-04-18 16:32:06','2021-04-18 16:32:06','f73f1034-f7f8-4700-91c3-c7b58ccee103',1,'/events/kidney-health-australia-health-professional-webinar-case-study-discussions-connecting-ckd-diabetes-and-hypertension','','207.46.13.5','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/kidney-health-australia-health-professional-webinar-case-study-discussions-connecting-ckd-diabetes-and-hypertension','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 16:32:06',0),(66750,'2021-04-18 16:32:46','2021-05-16 11:06:36','7b0064cd-22e3-4c6e-839f-26f06c105538',1,'/content/Document/Pathways/LINK B_DSM_V.pdf','https://www.google.com.au/','101.175.217.92','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Safari/605.1.15','Template not found: content/Document/Pathways/LINK B_DSM_V.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 11:06:36',0),(66751,'2021-04-18 17:09:51','2021-05-11 19:32:00','b7448ae3-b650-4d44-87c2-c8716b820dee',1,'/content/Document/FORM 3 - Approved Clinician Referral to Group Therapy Program.docx','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/FORM 3 - Approved Clinician Referral to Group Therapy Program.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 19:32:00',0),(66752,'2021-04-18 17:20:47','2021-05-06 15:19:37','9df79b36-44f2-4b6c-89b2-b79cdd298c1e',1,'/content/Document/Events/2018/Invitation - Exercise is Medicine Workshops 2018(2).pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2018/Invitation%20-%20Exercise%20is%20Medicine%20Workshops%202018(2).pdf','35.185.207.84','Go-http-client/1.1','Template not found: content/Document/Events/2018/Invitation - Exercise is Medicine Workshops 2018(2).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 15:19:37',0),(66753,'2021-04-18 17:22:21','2021-05-17 03:58:52','d0185a4b-4f28-44b9-88a7-cadc3d951ec6',1,'/content/Document/Templates/4.6/Specialists List_Caboolture Hospital_4_6.pdf','','148.251.50.77','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','Template not found: content/Document/Templates/4.6/Specialists List_Caboolture Hospital_4_6.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-17 03:58:52',0),(66754,'2021-04-18 17:32:31','2021-05-19 02:02:29','0781a44d-98fe-4727-9bca-558cd37d55a8',1,'/content/Document/Brisbane MIND Plus service map FINAL 181114.pdf','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Brisbane MIND Plus service map FINAL 181114.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-19 02:02:29',0),(66755,'2021-04-18 17:36:46','2021-05-11 19:10:12','f42a9e5a-3524-4c28-8152-afbb29e344a1',1,'/content/Document/Pathways/150626101807308MMSE_3.pdf','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/150626101807308MMSE_3.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-11 19:10:12',0),(66756,'2021-04-18 17:40:20','2021-05-01 08:14:24','54300345-632b-4d33-a372-b014ca337bb1',1,'/content/Document/ALA position statement.pdf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/ALA position statement.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 08:14:24',0),(66757,'2021-04-18 18:01:21','2021-05-13 19:07:29','ed15cb7b-5389-48d5-99f5-1fecd0e312d5',1,'/page/about/commissioning/text-description-of-commissioning-cycle/','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/commissioning/text-description-of-commissioning-cycle','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-13 19:07:29',0),(66758,'2021-04-18 18:07:00','2021-05-11 18:41:36','8cb40bad-bca9-4098-9c97-65f65a33d375',1,'/content/Image/Page Banners/banner_page_communitycare(1).jpg','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Page Banners/banner_page_communitycare(1).jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-11 18:41:36',0),(66759,'2021-04-18 18:11:14','2021-05-10 04:43:50','83fdebaa-dfea-4fb0-96e0-e9f28f397226',1,'/page/news-and-events/events/upcoming/general-practice-essentials-series-chronic-disease-management-and-care-plans-using-telehealth-in-general-practice/','https://www.brisbanenorthphn.org.au/page/news-and-events/events/upcoming/general-practice-essentials-series-chronic-disease-management-and-care-plans-using-telehealth-in-general-practice/','5.188.48.10','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 Edg/83.0.478.37','Template not found: page/news-and-events/events/upcoming/general-practice-essentials-series-chronic-disease-management-and-care-plans-using-telehealth-in-general-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 04:43:50',0),(66760,'2021-04-18 18:20:41','2021-04-30 00:30:40','ca86b106-bf7d-40f5-9f45-15626e970ee3',1,'/content/Document/Events/2019/Metro North Health Forum/Registration form - Metro North Health Forum 2019(1).docx','','49.197.48.130','Microsoft Office Word/2.44.1211 (iOS/14.4.2; Phone; en-GB; AppStore; Apple/iPhone12,1)','Template not found: content/Document/Events/2019/Metro North Health Forum/Registration form - Metro North Health Forum 2019(1).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-30 00:30:40',0),(66761,'2021-04-18 18:33:52','2021-04-18 18:33:52','74a4344f-fe20-4655-923b-d38e0723dded',1,'/content/Document/BNPHN_GP_Measles_Alert_27122018.pdf','http://www.brisbanenorthphn.org.au/content/Document/BNPHN_GP_Measles_Alert_27122018.pdf','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/BNPHN_GP_Measles_Alert_27122018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 18:33:52',0),(66762,'2021-04-18 18:37:22','2021-05-15 17:12:18','d1326dce-6d82-43f2-8fb5-828a88eabaab',1,'/page/news-and-events/events/upcoming/perinatal-in-practice','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/perinatal-in-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 17:12:18',0),(66763,'2021-04-18 18:42:53','2021-05-12 19:48:37','b5dd4803-da3b-4861-ba40-c16a40efcdcb',1,'/content/Document/Network Link_10_October_FINAL_WEB_LowRes.pdf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Network Link_10_October_FINAL_WEB_LowRes.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 19:48:37',0),(66764,'2021-04-18 18:45:28','2021-04-21 12:20:54','1a3c15de-fdfd-4901-93b5-893f56f7370f',1,'/page/news-and-events/events/upcoming/hepatitis-c-nursing-introductory-and-advanced-management-and-care/','','5.9.154.69','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/hepatitis-c-nursing-introductory-and-advanced-management-and-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-21 12:20:54',0),(66765,'2021-04-18 19:09:02','2021-05-11 20:17:33','d92a8f9b-a3b5-4ca2-9227-bd7c432ffe20',1,'/page/news-and-events/latest-news/strong-results-see-directors-re-elected-at-agm/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/strong-results-see-directors-re-elected-at-agm','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 20:17:33',0),(66766,'2021-04-18 19:11:43','2021-05-07 11:05:43','9b8d7ab2-dd93-4e5d-9cd0-41e90a67674e',1,'/content/Document/Pathways/Questions helping to identify readiness to change_Q','http://www.brisbanenorthphn.org.au/content/Document/Pathways/Questions%20helping%20to%20identify%20readiness%20to%20change_Q%26A.pdf','35.233.170.71','Go-http-client/1.1','Template not found: content/Document/Pathways/Questions helping to identify readiness to change_Q','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-07 11:05:43',0),(66767,'2021-04-18 19:33:50','2021-05-11 04:26:52','ddb8345b-ecd2-4065-a570-06daad567e54',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/information-for-providers/resources','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services/information-for-providers/resources','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-11 04:26:52',0),(66768,'2021-04-18 19:35:56','2021-05-17 06:07:39','ea2d6057-4413-48c3-bd0b-a4353fb22f43',1,'/page/news-and-events/events/upcoming/evidence-based-care-of-mothers-and-babies-gaps-and-controversies/','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/evidence-based-care-of-mothers-and-babies-gaps-and-controversies','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 06:07:39',0),(66769,'2021-04-18 19:43:29','2021-04-18 19:43:29','cf728202-a436-4c6f-8aba-8287927b5e3c',1,'/page/news-and-events/events/upcoming/cardiovascular---november-gp-education-evening','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/cardiovascular---november-gp-education-evening','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 19:43:29',0),(66770,'2021-04-18 20:00:12','2021-05-19 02:39:10','98bd181b-e823-4261-bf15-6f9f73f878f0',1,'/content/Document/Network Link_01_January_FINAL_WEB.pdf','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Network Link_01_January_FINAL_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-19 02:39:10',0),(66771,'2021-04-18 20:01:57','2021-04-26 12:52:50','e9c093dc-c0c6-4e5a-8ec9-ec8cbda4a276',1,'/team/mr-brendon-hulcombe','','62.210.188.216','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)','Template not found: team/mr-brendon-hulcombe','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-26 12:52:50',0),(66772,'2021-04-18 20:04:20','2021-05-18 20:00:34','1518874e-8693-4561-8877-306d587a1beb',1,'/page/news-and-events/latest-news/queensland-pelvic-mesh-service-to-open-in-2019/','','157.55.39.35','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/queensland-pelvic-mesh-service-to-open-in-2019','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-18 20:00:34',0),(66773,'2021-04-18 20:09:00','2021-04-18 20:09:00','222df2a2-7bc7-4108-890d-161e9c2dd74c',1,'/page/news-and-events/latest-news/follow-up-care-for-older-people-who-fall-at-home','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/follow-up-care-for-older-people-who-fall-at-home','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 20:09:00',0),(66774,'2021-04-18 20:10:14','2021-04-18 20:10:14','8dbaeefa-3236-4be3-9a4f-0058a9eb0bb3',1,'/page/news-and-events/latest-news/latest-report-will-help-phn-improve-mental-health-and-suicide-prevention-services/','','40.77.167.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/latest-report-will-help-phn-improve-mental-health-and-suicide-prevention-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 20:10:14',0),(66775,'2021-04-18 20:23:33','2021-04-18 20:23:33','7956b90f-a815-496e-9ebc-089f0be4648d',1,'/content/Document/Templates/5.3/Specialists List_Palliative Care_5_3.pdf','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/5.3/Specialists List_Palliative Care_5_3.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 20:23:33',0),(66776,'2021-04-18 20:28:03','2021-04-18 20:28:03','c3442c45-92cf-42c1-b5cf-7eea95085b48',1,'/page/news-and-events/latest-news/covid-19-information/covid-19-news-updates/may-2020/','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/covid-19-information/covid-19-news-updates/may-2020','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 20:28:03',0),(66777,'2021-04-18 20:29:09','2021-05-18 20:33:42','93ee4875-4ce7-49bf-9d46-7988f3624f53',1,'/page/health-professionals/mental-health-services/brisbane-mind/carers-and-consumers/contact/','','157.55.39.35','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/mental-health-services/brisbane-mind/carers-and-consumers/contact','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 20:33:42',0),(66778,'2021-04-18 20:29:54','2021-05-01 02:44:31','2e6e8cf4-d0c4-4226-a3d5-645e035f68e0',1,'/content/Document/Pathways/Pressure injury prevention patient handout.pdf','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Pressure injury prevention patient handout.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-01 02:44:31',0),(66779,'2021-04-18 20:39:30','2021-04-18 20:39:30','a28d9bf8-3297-4eb6-95a7-25089b5aa531',1,'/main/','','35.239.244.49','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36','Template not found: main','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 20:39:30',0),(66780,'2021-04-18 20:39:30','2021-04-18 20:39:30','ad18ce48-4c25-4fc2-94a6-2fb88bdbc7ca',1,'/site/','','35.239.244.49','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36','Template not found: site','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 20:39:30',0),(66781,'2021-04-18 20:39:31','2021-05-14 01:14:01','6ec194d8-47f2-405d-bece-e598465b6b3e',1,'/BACKUP/','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: BACKUP','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-14 01:14:01',0),(66782,'2021-04-18 20:39:32','2021-04-18 20:39:32','5bc43ca3-975d-4efa-916a-e6051ef1dda7',1,'/demo/','','35.239.244.49','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36','Template not found: demo','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 20:39:32',0),(66783,'2021-04-18 20:39:32','2021-04-18 20:39:32','fb6ac705-ce58-4a59-a834-c938450165f2',1,'/home/','','35.239.244.49','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36','Template not found: home','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 20:39:32',0),(66784,'2021-04-18 20:39:33','2021-04-18 20:39:33','f0618063-30ff-444b-b485-370f5befe796',1,'/tmp/','','35.239.244.49','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36','Template not found: tmp','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 20:39:33',0),(66785,'2021-04-18 20:39:33','2021-04-18 20:39:33','5c11e6dc-2f17-415e-9a81-ccede44f0c7a',1,'/cms/','','35.239.244.49','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36','Template not found: cms','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 20:39:33',0),(66786,'2021-04-18 20:39:34','2021-04-18 20:39:34','2b62c31e-966f-4c34-b296-633db963e0c5',1,'/dev/','','35.239.244.49','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36','Template not found: dev','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 20:39:34',0),(66787,'2021-04-18 20:39:35','2021-04-18 20:39:35','78fd14a4-7ba0-4819-ba20-129050212036',1,'/old-wp/','','35.239.244.49','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36','Template not found: old-wp','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 20:39:35',0),(66788,'2021-04-18 20:39:35','2021-04-18 20:39:35','ef69dcd1-1ed5-46cb-b093-425ed87f229b',1,'/web/','','35.239.244.49','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36','Template not found: web','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 20:39:35',0),(66789,'2021-04-18 20:39:36','2021-04-18 20:39:36','89b1460f-17e2-4b4b-ab70-51994abb0e79',1,'/old-site/','','35.239.244.49','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36','Template not found: old-site','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 20:39:36',0),(66790,'2021-04-18 20:39:36','2021-04-18 20:39:36','9e9b1584-1879-40e1-abb1-78efb8ae1fdf',1,'/temp/','','35.239.244.49','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36','Template not found: temp','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 20:39:36',0),(66791,'2021-04-18 20:39:37','2021-04-18 20:39:37','33c380cf-681d-4c83-96c8-ba5723078686',1,'/2018/','','35.239.244.49','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36','Template not found: 2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 20:39:37',0),(66792,'2021-04-18 20:39:38','2021-04-18 20:39:38','beba8d25-2aef-40f1-8218-c89dc7342d9e',1,'/2019/','','35.239.244.49','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36','Template not found: 2019','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 20:39:38',0),(66793,'2021-04-18 20:39:38','2021-04-18 20:39:38','77133251-0ba3-46b7-8625-f797670e65bd',1,'/bk/','','35.239.244.49','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36','Template not found: bk','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 20:39:38',0),(66794,'2021-04-18 20:39:39','2021-04-18 20:39:39','1e5952e2-2962-488e-98ba-5090488f612d',1,'/wp1/','','35.239.244.49','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36','Template not found: wp1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 20:39:39',0),(66795,'2021-04-18 20:39:40','2021-04-18 20:39:40','6839edd6-886c-41be-b646-fb6b4a28d404',1,'/wp2/','','35.239.244.49','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36','Template not found: wp2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 20:39:40',0),(66796,'2021-04-18 20:39:40','2021-04-18 20:39:40','e9ab1724-6304-43e7-a707-08cb8cd297a9',1,'/v1/','','35.239.244.49','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36','Template not found: v1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 20:39:40',0),(66797,'2021-04-18 20:39:41','2021-04-18 20:39:41','2e626b29-7d87-4116-8e56-49c6c1194c29',1,'/v2/','','35.239.244.49','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36','Template not found: v2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 20:39:41',0),(66798,'2021-04-18 20:39:41','2021-05-14 01:14:05','963275cf-593d-4bc9-8ba0-6d093c6a9631',1,'/bak/','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: bak','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 01:14:05',0),(66799,'2021-04-18 20:39:42','2021-04-18 20:39:42','327ab307-0635-4b77-b46c-2ac42e4e32fc',1,'/install/','','35.239.244.49','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36','Template not found: install','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 20:39:42',0),(66800,'2021-04-18 20:39:43','2021-04-18 20:39:43','64fd70d5-fe24-4543-b7c7-768f66ea538a',1,'/2020/','','35.239.244.49','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36','Template not found: 2020','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 20:39:43',0),(66801,'2021-04-18 20:39:43','2021-04-18 20:39:43','d925b0ee-b159-41a5-b1c0-161df235b62a',1,'/new-site/','','35.239.244.49','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36','Template not found: new-site','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 20:39:43',0),(66802,'2021-04-18 20:39:57','2021-05-16 07:39:29','24724681-1d5a-48f1-9e26-2f4cb311ee09',1,'/page/news-and-events/latest-news/gps-at-the-centre-of-health-alliance-process/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/gps-at-the-centre-of-health-alliance-process','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-16 07:39:29',0),(66803,'2021-04-18 20:46:02','2021-05-18 22:04:09','09052668-9eea-4ada-9a66-fedb8d669b93',1,'/content/Document/Pathways/STAR-Skin-Tear-tool-04022010.pdf','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/STAR-Skin-Tear-tool-04022010.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 22:04:09',0),(66804,'2021-04-18 21:01:59','2021-05-18 01:58:03','1b5faab5-0511-4048-95dc-a80015c74e6b',1,'/jobs/vr-gp-bribie-island','','40.77.167.45','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/vr-gp-bribie-island','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-18 01:58:03',0),(66805,'2021-04-18 21:02:48','2021-05-11 05:16:17','69d871e8-352e-42c1-b83b-a5026af7e442',1,'/content/Document/Pathways/Australian cardiovasular risk chart_page4.pdf','','93.158.161.35','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','Template not found: content/Document/Pathways/Australian cardiovasular risk chart_page4.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 05:16:17',0),(66806,'2021-04-18 21:10:33','2021-04-18 21:10:33','4be31b7f-adf6-4fdf-998c-245096ebe150',1,'/content/Document/Planning/FIN_AWP AH 19-21_190416 WEB.docx','http://www.brisbanenorthphn.org.au/content/Document/Planning/FIN_AWP%20AH%2019-21_190416%20WEB.docx','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/Planning/FIN_AWP AH 19-21_190416 WEB.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 21:10:33',0),(66807,'2021-04-18 21:33:15','2021-04-18 21:33:15','27be2200-d528-4580-9961-9efdf60b7828',1,'/content/Document/Pathways/Rivastigmine.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/Rivastigmine.pdf','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/Pathways/Rivastigmine.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 21:33:15',0),(66808,'2021-04-18 21:39:10','2021-05-14 04:11:47','7095cdb7-e477-42f7-b31c-3367701e8b30',1,'/events/beyond-the-pandemic','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/beyond-the-pandemic','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-14 04:11:47',0),(66809,'2021-04-18 21:40:43','2021-04-29 06:37:58','e39664ff-c28a-405d-9629-e72569d1122a',1,'/page/news-and-events/latest-news/caring-at-home-website-launched','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/caring-at-home-website-launched','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-29 06:37:58',0),(66810,'2021-04-18 21:42:04','2021-05-01 17:12:53','80223da9-3f94-4c11-808d-d453a01c1765',1,'/content/Document/Brisbane North PHN AOD Needs Assessment Submission to DOH_March 2016.docx','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane North PHN AOD Needs Assessment Submission to DOH_March 2016.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 17:12:53',0),(66811,'2021-04-18 21:47:55','2021-04-18 21:47:55','f84b8d5c-32c9-4943-bf7b-3412c507a437',1,'/content/Document/Planning/2015-16AccessibleHNAExecutiveSummary.docx','http://www.brisbanenorthphn.org.au/content/Document/Planning/2015-16AccessibleHNAExecutiveSummary.docx','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/Planning/2015-16AccessibleHNAExecutiveSummary.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 21:47:55',0),(66812,'2021-04-18 21:53:14','2021-05-18 21:57:04','b75a1295-6a1f-47ff-ad67-ed1c4d64b7e2',1,'/content/Document/Events/EventCrossCultural-2_9mar.pdf','','40.77.167.16','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/EventCrossCultural-2_9mar.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 21:57:04',0),(66813,'2021-04-18 21:54:35','2021-05-08 22:41:49','fdb3e99a-8006-47de-bbb0-f13a1a5c8e2a',1,'/content/Document/Position Descriptions/PD_Reporting and Database Officer_Information Services_190117.pdf','http://www.brisbanenorthphn.org.au/content/Document/Position%20Descriptions/PD_Reporting%20and%20Database%20Officer_Information%20Services_190117.pdf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Position Descriptions/PD_Reporting and Database Officer_Information Services_190117.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-08 22:41:49',0),(66814,'2021-04-18 22:00:10','2021-05-09 03:28:21','a6b0bb53-8df5-42e0-bab1-2e505af4c298',1,'/page/news-and-events/events/archive/introduction-to-cbt-for-allied-health-practitioners-working-in-aod-settings/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/introduction-to-cbt-for-allied-health-practitioners-working-in-aod-settings','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 03:28:21',0),(66815,'2021-04-18 22:03:43','2021-05-07 01:47:07','83a6d177-c868-4e4c-9c4a-e28050d73e54',1,'/jobs/experienced-medical-receptionist-1','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/experienced-medical-receptionist-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 01:47:07',0),(66816,'2021-04-18 22:06:43','2021-05-18 19:42:25','d85b7a2a-d978-4d87-a6b1-f8a5d14cfeb4',1,'/page/publications/reports-and-plans/regional-plans','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/reports-and-plans/regional-plans','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 19:42:25',0),(66817,'2021-04-18 22:11:44','2021-04-26 01:23:22','9aed70e0-b8c8-4448-8287-cf71ec3bba6d',1,'/page/news-and-events/events/upcoming/hepatitis-c-new-treatments-course','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/hepatitis-c-new-treatments-course','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-26 01:23:22',0),(66818,'2021-04-18 22:20:53','2021-04-28 19:34:23','f3ec600e-738c-4b14-a2b0-9bf49d2dfa82',1,'/content/Document/Network Link/Network Link_5_May_2018_WEB.pdf','','66.249.68.29','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/Network Link/Network Link_5_May_2018_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-28 19:34:23',0),(66819,'2021-04-18 22:33:46','2021-04-24 08:00:18','f02fae0b-1a45-4e89-a3e0-262fcbc0648c',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---bray-park/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---bray-park','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 08:00:18',0),(66820,'2021-04-18 22:34:04','2021-05-18 12:24:01','aae33b73-d857-480e-9d93-378e3076128f',1,'/page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health-july-2017','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health-july-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 12:24:01',0),(66821,'2021-04-18 22:41:15','2021-05-12 02:56:20','d3634693-b07c-4738-acf7-116f5dc30f5d',1,'/jobs/general-practice-nurse-for-busy-clinic','','66.249.79.146','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: jobs/general-practice-nurse-for-busy-clinic','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,23,'2021-05-12 02:56:20',0),(66822,'2021-04-18 22:50:27','2021-05-15 05:20:24','c7f59074-d41a-4347-b751-fb08b5c20d83',1,'/page/news-and-events/events/upcoming/course-in-ear-and-hearing-health','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/course-in-ear-and-hearing-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-15 05:20:24',0),(66823,'2021-04-18 22:51:58','2021-04-30 20:26:44','c6498b6f-720f-405b-bdda-ae1670c63d6d',1,'/page/news-and-events/latest-news/this-march-wear-purple-and-support-epilepsy-awareness','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/this-march-wear-purple-and-support-epilepsy-awareness','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 20:26:44',0),(66824,'2021-04-18 23:01:46','2021-04-18 23:01:46','8bc9135c-720e-4e3a-af7f-16b00957b227',1,'/page/about/careers/primary-care-liaison-officer/','','13.66.139.65','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers/primary-care-liaison-officer','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 23:01:46',0),(66825,'2021-04-18 23:04:40','2021-05-18 19:44:39','f0a371e5-e0cc-4e87-8464-64327fd6e7a3',1,'/page/news-and-events/latest-news/covid-19-information/information-for-our-community/mental-health-resources','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/covid-19-information/information-for-our-community/mental-health-resources','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-18 19:44:39',0),(66826,'2021-04-18 23:04:43','2021-05-16 07:46:31','f180fd1c-50bb-44a3-87a2-83c30b92a307',1,'/page/news-and-events/latest-news/my-health-record-on-show-at-caboolture-naidoc-event/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/my-health-record-on-show-at-caboolture-naidoc-event','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-16 07:46:31',0),(66827,'2021-04-18 23:08:38','2021-04-18 23:08:38','42dcf971-a94e-49cf-88f3-5a058bf6b508',1,'/page/news-and-events/events/upcoming/paediatric-general-practice-on-demand-webinars','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/paediatric-general-practice-on-demand-webinars','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 23:08:38',0),(66828,'2021-04-18 23:15:15','2021-04-18 23:15:15','43c70160-f86d-4316-a2e8-1446156c60df',1,'/royalty-free-vectors/circuit-vectors','','207.46.13.106','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: royalty-free-vectors/circuit-vectors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-18 23:15:15',0),(66829,'2021-04-18 23:17:32','2021-05-11 01:11:25','9676a6d0-6842-4ef2-be5e-3f68a74ddba3',1,'/practice-support/immunisatio','','45.92.0.28','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:77.0) Gecko/20100101 Firefox/77.0','Template not found: practice-support/immunisatio','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,22,'2021-05-11 01:11:25',0),(66830,'2021-04-18 23:18:20','2021-05-05 04:52:56','e7dac3b9-8cde-424e-8d26-58e1a29ddd48',1,'/about/our-visio','','45.92.0.28','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:77.0) Gecko/20100101 Firefox/77.0','Template not found: about/our-visio','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,14,'2021-05-05 04:52:56',0),(66831,'2021-04-18 23:18:40','2021-05-05 04:48:16','7142369a-b6a0-4fa2-98f2-4af56bd37528',1,'/practice-support/accreditatio','','45.92.0.92','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Safari/537.36','Template not found: practice-support/accreditatio','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-05 04:48:16',0),(66832,'2021-04-18 23:37:09','2021-05-14 02:23:55','8970d19d-ff56-47c4-b577-32466fa72c11',1,'/page/news-and-events/events/archive/the-green-whistle-practical-applications-of-penthrox-in-primary-care','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/the-green-whistle-practical-applications-of-penthrox-in-primary-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 02:23:55',0),(66833,'2021-04-18 23:37:38','2021-04-23 08:13:02','4e3e6abb-5dbd-443d-9198-dc369d30a3e3',1,'/yearinreview/2017-18/wp-content/uploads/2018/11/healthy@home-logo-2018-RGB-1-768x767.jpg','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: yearinreview/2017-18/wp-content/uploads/2018/11/healthy@home-logo-2018-RGB-1-768x767.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-23 08:13:02',0),(66834,'2021-04-18 23:54:01','2021-05-11 01:06:24','b868038b-a65d-4de0-8954-11afab553167',1,'/content/Document/Templates/4.6/Specialists List_Palliative Care_4_6.pdf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.6/Specialists List_Palliative Care_4_6.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 01:06:24',0),(66835,'2021-04-19 00:13:13','2021-04-19 00:13:13','bf7d7c5f-fe48-4f43-bacb-4c5bd74e14fc',1,'/content/Document/MNHHS RBWH Referral ZM v4_11.rtf','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/MNHHS RBWH Referral ZM v4_11.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 00:13:13',0),(66836,'2021-04-19 00:22:05','2021-04-19 00:22:05','a0db3218-76cf-4051-aa76-dfcbd1b0252e',1,'/content/Document/12072018_Public Health Alert_measles.pdf','http://www.brisbanenorthphn.org.au/content/Document/12072018_Public%20Health%20Alert_measles.pdf','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/12072018_Public Health Alert_measles.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 00:22:05',0),(66837,'2021-04-19 00:30:43','2021-04-29 05:39:11','9d8fed5e-e3b2-4865-b7a9-dc1b435eab49',1,'/page/news-and-events/latest-news/copd---in-conversation-with-dr-kerry-hancock/','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/copd---in-conversation-with-dr-kerry-hancock','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-29 05:39:11',0),(66838,'2021-04-19 00:31:38','2021-05-04 12:43:15','a4d5d29e-ab47-4999-a2c0-a7f329f36eb2',1,'/content/Document/Network Link_08_August_FINAL_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%20Link_08_August_FINAL_WEB.pdf','34.94.141.43','Go-http-client/1.1','Template not found: content/Document/Network Link_08_August_FINAL_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-04 12:43:15',0),(66839,'2021-04-19 00:32:20','2021-05-13 02:12:16','0be79499-5823-45e8-a50c-c4d8bd3c4d43',1,'/content/document/mhaod_recovery_newsletter_october_web_final.pdf','','207.46.13.159','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/document/mhaod_recovery_newsletter_october_web_final.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-13 02:12:16',0),(66840,'2021-04-19 00:37:20','2021-05-18 23:33:38','c0bf647e-0cf2-4fcb-8766-0b2ee6bc49fb',1,'/content/Document/Brisbane MIND Provider List May 2017.pdf','','157.55.39.129','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List May 2017.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 23:33:38',0),(66841,'2021-04-19 00:38:28','2021-04-27 14:05:40','15a07e33-3ab2-47eb-9ab8-dcf9de52db6a',1,'/page/health-professionals/Local Positions Vacant/treatment-support-facilitator---queensland-positive-people/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/treatment-support-facilitator---queensland-positive-people','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-27 14:05:40',0),(66842,'2021-04-19 00:54:16','2021-04-21 07:23:56','dcea8a06-bf95-4993-8fdd-d375609850ab',1,'/content/Document/170428_HealthAlert_PFAS contamination factsheet.pdf','','66.249.66.155','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/170428_HealthAlert_PFAS contamination factsheet.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-21 07:23:56',0),(66843,'2021-04-19 01:11:32','2021-05-13 11:06:14','9b443b4d-2a88-48eb-8931-4f218c790479',1,'/content/Document/Templates/5.2/MNHHS Palliative Referral v5_2 BP(1).rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.2/MNHHS%20Palliative%20Referral%20v5_2%20BP%281%29.rtf','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/Templates/5.2/MNHHS Palliative Referral v5_2 BP(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-13 11:06:14',0),(66844,'2021-04-19 01:24:12','2021-05-16 07:51:53','0dfba8be-6fb7-4d2b-9ebe-a4177a4d2921',1,'/page/news-and-events/latest-news/training-and-support-to-enchance-dementia-care/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/training-and-support-to-enchance-dementia-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-16 07:51:53',0),(66845,'2021-04-19 01:29:25','2021-05-01 17:59:28','b964f348-db10-44f1-b2fa-e44a175e6f73',1,'/content/Document/Templates/6.1/MNHHS RBWH v6_1.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/MNHHS%20RBWH%20v6_1.rtf','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/MNHHS RBWH v6_1.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 17:59:28',0),(66846,'2021-04-19 01:30:59','2021-05-15 20:57:02','62053a64-856c-4cac-a8bc-1a71a5302fb0',1,'/page/news-and-events/latest-news/palliative-care-resources-launched-for-gps-in-north-brisbane-and-moreton-bay/','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/palliative-care-resources-launched-for-gps-in-north-brisbane-and-moreton-bay','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 20:57:02',0),(66847,'2021-04-19 01:32:29','2021-05-11 04:40:20','a6ccab27-8473-4ab3-8c9c-f32d1e4890e7',1,'/page/news-and-events/latest-news/our-year-in-review-goes-digital','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/our-year-in-review-goes-digital','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-11 04:40:20',0),(66848,'2021-04-19 01:38:11','2021-04-19 01:38:11','d88e50a9-b768-49e3-9e1c-beb78371325a',1,'/page/health-professionals/Local Positions Vacant/vr-general-practitioner-required---narangba-doctors/','','207.46.13.106','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/vr-general-practitioner-required---narangba-doctors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 01:38:11',0),(66849,'2021-04-19 01:40:55','2021-05-18 03:53:11','3705a620-5730-4434-9a61-d76974f4e2b5',1,'/page/news-and-events/latest-news/achieving-wellbeing-through-the-optimal-health-program','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/achieving-wellbeing-through-the-optimal-health-program','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 03:53:11',0),(66850,'2021-04-19 01:41:07','2021-04-19 01:41:07','03a7e7ed-2680-4414-a96e-9b67ce2942b1',1,'/page/health-professionals/immunisation/resources/immunisation-records-and-data-explained/','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/immunisation/resources/immunisation-records-and-data-explained','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 01:41:07',0),(66851,'2021-04-19 01:41:33','2021-05-05 00:06:12','c3ec7204-85ca-4f58-93cf-9951cc252214',1,'/research-survey/assist-in-shaping-the-commonwealth-digital-health-blueprint','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: research-survey/assist-in-shaping-the-commonwealth-digital-health-blueprint','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-05 00:06:12',0),(66852,'2021-04-19 02:11:02','2021-05-14 11:41:19','88091ffe-0c4a-48b4-86ee-c74ac1c566dd',1,'/content/Document/GUI_Commissioning Framework_160202.pdf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/GUI_Commissioning Framework_160202.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-14 11:41:19',0),(66853,'2021-04-19 02:13:40','2021-05-11 00:37:26','c8dec866-271b-408b-962b-b14aaa685529',1,'/page/news-and-events/latest-news/Funding boost for mental health/','','173.252.127.21','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: page/news-and-events/latest-news/Funding boost for mental health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-11 00:37:26',0),(66854,'2021-04-19 02:17:04','2021-05-10 20:52:09','9a91b2f4-0ebe-4da7-91c4-3cea507275f6',1,'/page/health-professionals/Local Positions Vacant/casual-registered-nurse-required---elysian-medical-centre/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/casual-registered-nurse-required---elysian-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 20:52:09',0),(66855,'2021-04-19 02:23:28','2021-05-18 12:23:52','31187f41-df16-435c-87d2-35b55162c468',1,'/content/Document/Events/awp_word_flyer_310515v3_lwcrw (1).docx','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/awp_word_flyer_310515v3_lwcrw (1).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 12:23:52',0),(66856,'2021-04-19 02:40:37','2021-05-16 20:47:16','56a65b7b-2e74-4d5f-8cee-6306a909c89c',1,'/page/news-and-events/events/upcoming/feeling-the-pulse-of-my-health-record/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/feeling-the-pulse-of-my-health-record','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 20:47:16',0),(66857,'2021-04-19 02:41:53','2021-04-21 09:24:30','bbff0909-ab24-4dd4-99bc-0da46ce98410',1,'/events/dementia-and-intellectual-disabilities','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/dementia-and-intellectual-disabilities','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-21 09:24:30',0),(66858,'2021-04-19 02:49:02','2021-04-21 20:18:03','6d0da249-82a8-4156-8129-dbe9ef36e0da',1,'/content/Document/Pathways/Spirometry and Peak Expiratory Flow in Acute Asthma.pdf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/Spirometry and Peak Expiratory Flow in Acute Asthma.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-21 20:18:03',0),(66859,'2021-04-19 02:54:26','2021-05-09 05:21:27','7ddd5fae-9dbf-4309-8888-9ececf18f905',1,'/page/community/be-safe-vaccinate/','','185.191.171.6','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)','Template not found: page/community/be-safe-vaccinate','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-09 05:21:27',0),(66860,'2021-04-19 03:02:37','2021-04-22 20:48:00','e57df674-3c48-45d0-899b-e83b9d626b35',1,'/content/Document/FORM 5b - New Clinician Request Form(1).docx','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/FORM 5b - New Clinician Request Form(1).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-22 20:48:00',0),(66861,'2021-04-19 03:09:46','2021-05-13 02:08:43','17a9d33f-5d40-40c8-9e26-2898cd5eef0c',1,'/vod-type-id-3-type--area-其他-year--star--state--order-addtime.html','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type--area-其他-year--star--state--order-addtime.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 02:08:43',0),(66862,'2021-04-19 03:09:46','2021-05-06 06:41:44','e06cfac2-76fa-48a9-bc45-851f3fbf86b3',1,'/vod-type-id-3-type-爱情-area--year--star--state--order-addtime.html','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type-爱情-area--year--star--state--order-addtime.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 06:41:44',0),(66863,'2021-04-19 03:09:47','2021-05-06 10:58:36','13dc1f95-c8e3-4f10-9db7-e79311ee7500',1,'/vod-type-id-1-type--area--year--star--state--order-addtime.html','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-1-type--area--year--star--state--order-addtime.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 10:58:36',0),(66864,'2021-04-19 03:09:48','2021-05-18 16:48:46','b1f655c9-7205-4214-b885-758bec707cf5',1,'/user-center-action-history.html','','157.55.39.35','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: user-center-action-history.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 16:48:46',0),(66865,'2021-04-19 03:09:48','2021-05-06 05:57:56','bd3cb931-6c08-437c-9618-61f5199169c0',1,'/map-show-id-rss-limit-100.html','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: map-show-id-rss-limit-100.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-06 05:57:56',0),(66866,'2021-04-19 03:09:49','2021-04-19 03:09:49','a6cbb799-0173-4d27-b18e-e0a01a78287f',1,'/map-show-id-google-limit-100.html','','13.66.139.34','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: map-show-id-google-limit-100.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 03:09:49',0),(66867,'2021-04-19 03:09:49','2021-05-06 05:58:29','4cbbaff3-6f3c-46ae-a513-2849cdeacaa9',1,'/map-show-id-360-limit-100.html','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: map-show-id-360-limit-100.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 05:58:29',0),(66868,'2021-04-19 03:09:50','2021-04-19 03:09:50','f872d064-3b12-4c14-a016-2566f07383a1',1,'/feedback.php','','13.66.139.34','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: feedback.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 03:09:50',0),(66869,'2021-04-19 03:09:51','2021-05-07 15:15:47','18e729fe-8079-4212-860c-29a250a38645',1,'/faq','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: faq','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-07 15:15:47',0),(66870,'2021-04-19 03:09:52','2021-05-08 10:03:03','25e6fb15-c507-4e0f-ab9c-c74fe86b1c01',1,'/vod-type-id-3-type--area--year-2019-star--state--order-addtime.html','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type--area--year-2019-star--state--order-addtime.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-08 10:03:03',0),(66871,'2021-04-19 03:09:52','2021-05-06 07:04:02','b433df62-6e26-456f-a579-d5646193f986',1,'/vod-type-id-3-type--area--year-2017-star--state--order-addtime.html','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type--area--year-2017-star--state--order-addtime.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 07:04:02',0),(66872,'2021-04-19 03:09:53','2021-05-06 05:57:58','b68be607-13ec-4c17-99f7-b36f907dc65c',1,'/vod-type-id-3-type--area-欧美-year--star--state--order-addtime.html','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type--area-欧美-year--star--state--order-addtime.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 05:57:58',0),(66873,'2021-04-19 03:09:57','2021-05-06 05:57:58','5a8aa12b-ecc3-45b6-9c9b-efa74f97af82',1,'/vod-type-id-3-type-运动-area--year--star--state--order-addtime.html','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type-运动-area--year--star--state--order-addtime.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 05:57:58',0),(66874,'2021-04-19 03:09:57','2021-05-08 02:21:40','dee1e628-4464-46bc-b0bb-feb7ef408b35',1,'/vod-type-id-3-type-机战-area--year--star--state--order-addtime.html','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type-机战-area--year--star--state--order-addtime.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-08 02:21:40',0),(66875,'2021-04-19 03:09:58','2021-05-18 04:45:47','702d4092-fe15-4616-84bb-efd58cde63f1',1,'/vod-type-id-3-type-奇幻-area--year--star--state--order-addtime.html','','40.77.167.15','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type-奇幻-area--year--star--state--order-addtime.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 04:45:47',0),(66876,'2021-04-19 03:09:59','2021-05-05 14:35:11','c58f7be0-6083-4281-a995-7c814f3b692d',1,'/vod-type-id-3-type-动作-area--year--star--state--order-addtime.html','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type-动作-area--year--star--state--order-addtime.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-05 14:35:11',0),(66877,'2021-04-19 03:09:59','2021-05-05 12:26:30','8591ece8-41d0-42f4-9daf-8d3282f728bd',1,'/vod-type-id-7-type--area--year--star--state--order-addtime.html','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-7-type--area--year--star--state--order-addtime.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-05 12:26:30',0),(66878,'2021-04-19 03:10:00','2021-05-06 05:57:59','528b1c1d-7dc1-417d-8d97-7d54965754f6',1,'/vod-type-id-3-type--area--year-2014-star--state--order-addtime.html','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type--area--year-2014-star--state--order-addtime.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-06 05:57:59',0),(66879,'2021-04-19 03:10:00','2021-05-07 17:33:08','f2ce930b-8391-46d6-98e3-6213748c92a4',1,'/vod-type-id-3-type--area--year--star--state--order-addtime-p-5.html','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type--area--year--star--state--order-addtime-p-5.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-07 17:33:08',0),(66880,'2021-04-19 03:10:01','2021-04-19 03:10:01','657720d4-6fff-45b1-8f93-e08019527e59',1,'/vod-type-id-3-type--area--year--star--state--order-addtime-p-2.html','','13.66.139.6','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type--area--year--star--state--order-addtime-p-2.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 03:10:01',0),(66881,'2021-04-19 03:10:01','2021-04-19 03:10:01','330a5e92-a77e-4e0f-b01f-7f0963ea452e',1,'/vod-type-id-3-type--area-美国-year--star--state--order-addtime.html','','13.66.139.6','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type--area-美国-year--star--state--order-addtime.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 03:10:01',0),(66882,'2021-04-19 03:10:02','2021-05-18 03:09:19','163954da-91d0-4b57-b2b6-788cc1073fb3',1,'/vod-type-id-3-type--area-泰国-year--star--state--order-addtime.html','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type--area-泰国-year--star--state--order-addtime.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 03:09:19',0),(66883,'2021-04-19 03:10:03','2021-04-19 03:10:03','dbb49028-a900-4145-8dd0-35e3b0dc7b37',1,'/vod-type-id-3-type--area-日本-year--star--state--order-addtime.html','','13.66.139.6','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type--area-日本-year--star--state--order-addtime.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 03:10:03',0),(66884,'2021-04-19 03:10:08','2021-05-06 05:58:19','3e3227f8-6adc-4abd-b92e-ec8bc34f1d42',1,'/vod-type-id-3-type--area-台湾-year--star--state--order-addtime.html','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type--area-台湾-year--star--state--order-addtime.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 05:58:19',0),(66885,'2021-04-19 03:10:09','2021-05-18 10:57:58','2de6f2a7-e95b-4968-96b8-1983f0e0cdde',1,'/vod-type-id-3-type-萝莉-area--year--star--state--order-addtime.html','','157.55.39.101','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type-萝莉-area--year--star--state--order-addtime.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 10:57:58',0),(66886,'2021-04-19 03:10:10','2021-05-06 14:17:34','e8019499-85da-4c32-ab35-3e39515950f0',1,'/vod-type-id-3-type-冒险-area--year--star--state--order-addtime.html','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type-冒险-area--year--star--state--order-addtime.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-06 14:17:34',0),(66887,'2021-04-19 03:10:11','2021-05-06 05:58:09','fb876d0a-473c-49c3-8733-7b74402abba0',1,'/map-show-id-baidu-limit-100.html','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: map-show-id-baidu-limit-100.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-06 05:58:09',0),(66888,'2021-04-19 03:10:12','2021-05-16 03:18:57','8531882c-936e-4e83-b9f3-ffdcd51b9fe2',1,'/vod-type-id-3-type--area--year-2015-star--state--order-addtime.html','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type--area--year-2015-star--state--order-addtime.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 03:18:57',0),(66889,'2021-04-19 03:10:12','2021-05-06 05:58:20','81ab00bd-be82-4ac8-a34d-071ece238949',1,'/vod-type-id-3-type--area--year-20002010-star--state--order-addtime.html','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type--area--year-20002010-star--state--order-addtime.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 05:58:20',0),(66890,'2021-04-19 03:10:13','2021-05-06 05:58:13','69e955fd-003e-46e8-8160-bf2ed088be84',1,'/vod-type-id-3-type--area--year-18001899-star--state--order-addtime.html','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type--area--year-18001899-star--state--order-addtime.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 05:58:13',0),(66891,'2021-04-19 03:10:13','2021-05-15 07:08:24','15d74bfb-d619-4892-a3a2-959c25f37593',1,'/vod-type-id-3-type--area--year--star--state--order-addtime-p-88.html','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type--area--year--star--state--order-addtime-p-88.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 07:08:24',0),(66892,'2021-04-19 03:10:14','2021-05-06 05:58:11','3f154eb9-5402-49d9-a365-53242ab67529',1,'/vod-type-id-3-type--area--year--star--state--order-addtime-p-4.html','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type--area--year--star--state--order-addtime-p-4.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 05:58:11',0),(66893,'2021-04-19 03:10:14','2021-05-06 05:58:11','1e33b890-a602-4757-aa9b-0c1ccdbc8846',1,'/vod-type-id-3-type--area--year--star--state--order-addtime-p-3.html','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type--area--year--star--state--order-addtime-p-3.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 05:58:11',0),(66894,'2021-04-19 03:10:20','2021-05-06 05:58:04','4ee4dd30-374e-4a45-be7b-f4651f88d8cd',1,'/vod-type-id-3-type-战争-area--year--star--state--order-addtime.html','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type-战争-area--year--star--state--order-addtime.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 05:58:04',0),(66895,'2021-04-19 03:10:21','2021-05-06 05:57:51','e7f84851-e226-4c04-8831-6782faf06d91',1,'/vod-type-id-2-type--area--year--star--state--order-addtime.html','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-2-type--area--year--star--state--order-addtime.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-06 05:57:51',0),(66896,'2021-04-19 03:10:22','2021-05-06 05:58:18','66a94bc5-c527-44bf-a3e1-5933b57f95e4',1,'/contact-us','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: contact-us','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 05:58:18',0),(66897,'2021-04-19 03:10:22','2021-05-06 05:57:53','0cbcd5c6-e2c1-4cf5-877d-00684e92b0da',1,'/what-is-a-vector','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: what-is-a-vector','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 05:57:53',0),(66898,'2021-04-19 03:10:23','2021-05-17 18:04:11','9692cc66-015c-44c8-a8f2-86fcafb38332',1,'/vod-type-id-3-type--area--year-2020-star--state--order-addtime.html','','207.46.13.74','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type--area--year-2020-star--state--order-addtime.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-17 18:04:11',0),(66899,'2021-04-19 03:10:23','2021-05-06 05:58:13','27b0b694-4f64-465d-a6ad-a2ec1432206e',1,'/vod-type-id-3-type--area--year-2018-star--state--order-addtime.html','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type--area--year-2018-star--state--order-addtime.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 05:58:13',0),(66900,'2021-04-19 03:10:24','2021-05-06 08:04:20','1e95d9f6-022f-45af-b3e4-feeb2564a586',1,'/vod-type-id-3-type--area--year--star--state--order-hits.html','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type--area--year--star--state--order-hits.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-06 08:04:20',0),(66901,'2021-04-19 03:10:25','2021-05-12 21:41:34','cbafcbec-ed02-4cb3-a4ce-0855d7376431',1,'/vod-type-id-3-type--area--year--star--state--order-addtime.html','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type--area--year--star--state--order-addtime.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 21:41:34',0),(66902,'2021-04-19 03:10:26','2021-05-13 22:44:56','fd5cadc9-9330-40db-a122-8ef04f85df11',1,'/vod-type-id-3-type--area--year--star--state--order-addtime-p-8.html','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type--area--year--star--state--order-addtime-p-8.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 22:44:56',0),(66903,'2021-04-19 03:10:26','2021-05-06 05:57:52','23e2e8c6-a253-41fc-8c9e-a4724089a8f4',1,'/vod-type-id-3-type--area--year--star--state--order-addtime-p-7.html','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type--area--year--star--state--order-addtime-p-7.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 05:57:52',0),(66904,'2021-04-19 03:10:27','2021-05-06 05:58:24','72afb556-eb0c-498a-ad12-67d033985d07',1,'/vod-type-id-3-type--area-韩国-year--star--state--order-addtime.html','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: vod-type-id-3-type--area-韩国-year--star--state--order-addtime.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-06 05:58:24',0),(66905,'2021-04-19 03:27:33','2021-05-15 04:53:56','9f313529-66ff-4486-8f49-c71c56ba8e66',1,'/content/Document/Planning/Updated_AAWP_Drug and Alcohol Treatment 18-19_180514 WEB.pdf','','66.249.69.63','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/Planning/Updated_AAWP_Drug and Alcohol Treatment 18-19_180514 WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 04:53:56',0),(66906,'2021-04-19 03:27:50','2021-05-17 18:08:38','4c7cd45c-8e97-4920-ba24-d35d119fc252',1,'/events/gp20-the-premier-event-for-gps','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/gp20-the-premier-event-for-gps','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-17 18:08:38',0),(66907,'2021-04-19 03:29:46','2021-04-19 03:29:46','1d057571-a2e9-41c3-82f4-bb43e27fdf95',1,'/page/about/ourregion','','49.187.149.135','Mozilla/5.0 (iPhone; CPU iPhone OS 14_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Mobile/15E148 Safari/604.1','Template not found: page/about/ourregion','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 03:29:46',0),(66908,'2021-04-19 03:30:18','2021-05-09 17:28:35','20d1c0f2-2db9-415e-8a64-2151d4b8c4b7',1,'/page/news-and-events/latest-news/upskilling-the-aged-care-workforce-in-dementia-care','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/upskilling-the-aged-care-workforce-in-dementia-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-09 17:28:35',0),(66909,'2021-04-19 03:38:10','2021-05-09 01:37:50','75117366-d5e9-481e-b1f1-60941fc2e532',1,'/content/Document/Templates/4.12/BP v4.12/MNHHS Maternity Referral BP V4_12.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.12/BP%20v4.12/MNHHS%20Maternity%20Referral%20%20BP%20V4_12.rtf','35.185.207.84','Go-http-client/1.1','Template not found: content/Document/Templates/4.12/BP v4.12/MNHHS Maternity Referral BP V4_12.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 01:37:50',0),(66910,'2021-04-19 03:48:42','2021-04-22 22:33:30','2cd3737c-4603-4626-aba2-7793c47a80c6',1,'/page/news-and-events/latest-news/watch-out-measles-is-about/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/news-and-events/latest-news/watch-out-measles-is-about','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-22 22:33:30',0),(66911,'2021-04-19 03:55:47','2021-04-21 17:28:34','61a3c8b6-9cc1-4c8a-8e05-9df7bab06625',1,'/content/Document/Brisbane MIND Provider List August 2018 v4(5).pdf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List August 2018 v4(5).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-21 17:28:34',0),(66912,'2021-04-19 04:02:52','2021-05-05 05:40:35','cf25019a-ad26-41f0-b955-67fd867039b4',1,'/content/Document/Annual Plan 2016-2018.docx','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Annual Plan 2016-2018.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-05 05:40:35',0),(66913,'2021-04-19 04:05:15','2021-05-17 03:45:24','dd4454a1-6703-44de-8232-5a34101cc971',1,'/page/news-and-events/latest-news/health-needs-assessment-now-available/','http://www.brisbanenorthphn.org.au/page/news-and-events/latest-news/health-needs-assessment-now-available/','52.30.55.29','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','Template not found: page/news-and-events/latest-news/health-needs-assessment-now-available','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 03:45:24',0),(66914,'2021-04-19 04:11:09','2021-05-17 18:41:33','2de73619-a448-44cd-a83a-b6587dfb6136',1,'/page/news-and-events/events/upcoming/gynaecology-workshop/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/gynaecology-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-17 18:41:33',0),(66915,'2021-04-19 04:26:41','2021-04-19 04:26:41','4c90caae-4b70-4ff5-815d-1f4892a8ee48',1,'/page/news-and-events/latest-news/phn-hosts-national-stepped-care-workshop','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/phn-hosts-national-stepped-care-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 04:26:41',0),(66916,'2021-04-19 04:27:20','2021-04-19 04:27:20','14397fe8-28dd-4424-bdc1-b144ef6207a7',1,'/content/Document/Brisbane MIND Provider List August 2017.pdf','','207.46.13.106','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List August 2017.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 04:27:20',0),(66917,'2021-04-19 04:37:57','2021-05-05 22:29:35','72eb2892-67fe-4137-ab12-b92495108881',1,'/content/Document/Consortia in Aged Care (v1_0).pdf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Consortia in Aged Care (v1_0).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-05 22:29:35',0),(66918,'2021-04-19 04:44:33','2021-04-19 04:44:33','eb94d72a-cd9c-4e72-8d70-1d1f27dfa330',1,'/content/Document/Events/2015 Advance Care Planning Invite (November 2015).pdf','','207.46.13.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2015 Advance Care Planning Invite (November 2015).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 04:44:33',0),(66919,'2021-04-19 04:55:00','2021-05-05 03:14:27','412415a0-3d80-47d5-b25a-c8d893225f60',1,'/content/Document/Primary care liaison/FIN_FLY_1908_PIPQI-information_PRINT.pdf','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Primary care liaison/FIN_FLY_1908_PIPQI-information_PRINT.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-05 03:14:27',0),(66920,'2021-04-19 05:32:15','2021-05-16 07:40:45','3ae27ad8-3185-438d-96f1-491713968952',1,'/page/news-and-events/latest-news/have-your-say-on-our-procurement-strategy/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/have-your-say-on-our-procurement-strategy','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-16 07:40:45',0),(66921,'2021-04-19 05:33:04','2021-04-19 05:33:04','7de77b5b-79e4-4024-b841-534f536e2c2f',1,'/page/health-professionals/Local Positions Vacant/health-services-manager---fortitude-valley/','','40.77.167.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/health-services-manager---fortitude-valley','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 05:33:04',0),(66922,'2021-04-19 05:38:25','2021-04-25 16:31:46','e719bdbc-d7c8-4509-ac10-64081ae257f9',1,'/tel:07 3261 7000','https://www.google.com/','34.82.94.158','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36','Template not found: tel:07 3261 7000','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-25 16:31:46',0),(66923,'2021-04-19 05:41:51','2021-04-19 18:43:48','1f6e9f4a-b552-434c-bda6-d95a2aaed95a',1,'/content/Document/MNHF presentations 2017/Dr Peggy Brown - National Mental Health Commission 170531.pdf','http://www.brisbanenorthphn.org.au/content/Document/MNHF%20presentations%202017/Dr%20Peggy%20Brown%20-%20National%20Mental%20Health%20Commission%20170531.pdf','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/MNHF presentations 2017/Dr Peggy Brown - National Mental Health Commission 170531.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-19 18:43:48',0),(66924,'2021-04-19 05:47:10','2021-05-16 07:44:53','b7cd67b4-234f-4303-9a4a-6d8e2b119784',1,'/page/news-and-events/latest-news/measles-alert-for-brisbane-180528/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/measles-alert-for-brisbane-180528','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-16 07:44:53',0),(66925,'2021-04-19 05:50:07','2021-05-04 23:16:07','eeb657cb-d43c-4f08-90df-e6f86518dc53',1,'/content/Document/Importing Instructions_Januray2016.pdf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Importing Instructions_Januray2016.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-04 23:16:07',0),(66926,'2021-04-19 05:56:51','2021-05-10 21:34:27','35a93ccd-2af7-4e29-a32d-d1b92a2ecc2a',1,'/page/news-and-events/latest-news/235m-to-continue-vital-mental-health-reform/','','173.252.83.24','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: page/news-and-events/latest-news/235m-to-continue-vital-mental-health-reform','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-10 21:34:27',0),(66927,'2021-04-19 05:58:36','2021-05-05 00:12:10','47ef291d-7d3c-4d56-8184-f80f086535b5',1,'/practice-support/cmVmZXJyYW','','20.53.104.64','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36','Template not found: practice-support/cmVmZXJyYW','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-05 00:12:10',0),(66928,'2021-04-19 05:59:26','2021-05-15 13:00:36','d04dbe2b-73f7-4422-9781-7c929628869f',1,'/content/Document/Templates/4.4/Specialists List_Redcliffe Hospital_4.4.pdf','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Templates/4.4/Specialists List_Redcliffe Hospital_4.4.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 13:00:36',0),(66929,'2021-04-19 06:04:59','2021-05-11 07:49:38','db549e51-efe3-4717-aab0-f5f46c80fdba',1,'/page/news-and-events/latest-news/culture-provides-context-for-federal-mp-briefing/','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/culture-provides-context-for-federal-mp-briefing','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-11 07:49:38',0),(66930,'2021-04-19 06:22:01','2021-04-30 08:26:58','762e8e62-2259-4075-aeca-3f61c87b8e48',1,'/page/news-and-events/latest-news/gpwsi','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/gpwsi','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 08:26:58',0),(66931,'2021-04-19 06:23:39','2021-05-17 19:00:09','b9e23ff1-91e1-4e54-9eb5-9953e2c9d3ce',1,'/content/Document/Palliative_Care_Toolbox_v2_0_WEB.pdf','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Palliative_Care_Toolbox_v2_0_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-17 19:00:09',0),(66932,'2021-04-19 06:30:17','2021-04-23 19:40:14','2c239a98-4c85-47c0-a90b-bd8033b592b8',1,'/content/Document/Network Link_07_JULY_PRINT_FINAL_WEB_170626.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%20Link_07_JULY_PRINT_FINAL_WEB_170626.pdf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Network Link_07_JULY_PRINT_FINAL_WEB_170626.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-23 19:40:14',0),(66933,'2021-04-19 06:36:06','2021-05-16 07:52:42','a605961c-0b52-417f-a002-35fba8c1d3de',1,'/page/news-and-events/media-releases/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/media-releases','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-16 07:52:42',0),(66934,'2021-04-19 06:43:17','2021-05-19 00:28:54','546773ae-f0f1-4aa1-a316-4fb08fc7ae4c',1,'/content/Document/Mental health/','','54.38.153.178','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36','Template not found: content/Document/Mental health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-19 00:28:54',0),(66935,'2021-04-19 07:06:46','2021-04-19 07:06:46','26ecc6ca-dd09-4be8-9671-54e6a107699c',1,'/content/Document/RACGP template_pcehrsystem.doc','http://www.brisbanenorthphn.org.au/content/Document/RACGP%20template_pcehrsystem.doc','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/RACGP template_pcehrsystem.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 07:06:46',0),(66936,'2021-04-19 07:06:52','2021-04-29 00:47:49','4a06c4e0-2c98-44e4-a894-41099e308a15',1,'/page/health-professionals/digital-health/my-health-record/what-are-the-benefits-of-my-health-record/','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/digital-health/my-health-record/what-are-the-benefits-of-my-health-record','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-29 00:47:49',0),(66937,'2021-04-19 07:11:49','2021-05-02 03:54:56','04571ee6-dbff-42f8-bfad-1f0e79161d11',1,'/page/news-and-events/latest-news/focusing-on-the-start-of-life-for-children-in-caboolture/','','95.91.76.7','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/focusing-on-the-start-of-life-for-children-in-caboolture','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-02 03:54:56',0),(66938,'2021-04-19 07:26:30','2021-05-01 23:01:54','2cef6cc1-bcb6-49bd-a910-9871b9a78118',1,'/content/Document/Lymphoedema Screener - UL.pdf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Lymphoedema Screener - UL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 23:01:54',0),(66939,'2021-04-19 07:32:15','2021-05-17 09:24:06','d2266042-d254-48e1-b8db-2b2ece164706',1,'/yearinreview/2017-18/improving-outcomes-for-people-with-chronic-conditions/www.brisbanenorthphn.org.au','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/improving-outcomes-for-people-with-chronic-conditions/www.brisbanenorthphn.org.au','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-17 09:24:06',0),(66940,'2021-04-19 07:33:41','2021-05-18 13:41:20','7497c7a7-f52d-4095-9552-1743dd683c98',1,'/page/news-and-events/events/upcoming/maternity-workshop/','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/maternity-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-18 13:41:20',0),(66941,'2021-04-19 07:37:38','2021-04-19 07:37:38','510f5aae-f9c5-4953-a611-66435cce70b7',1,'/content/Document/Palliative Care Program Funding Equipment Application.pdf','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Palliative Care Program Funding Equipment Application.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 07:37:38',0),(66942,'2021-04-19 07:51:49','2021-04-19 07:51:49','63dfc1a5-96e1-4376-bdf6-04ad45d886d7',1,'/content/Document/Planning/FIN_AAWP_Primary Mental Health Care 18-19_180514 WEB(1).docx','http://www.brisbanenorthphn.org.au/content/Document/Planning/FIN_AAWP_Primary%20Mental%20Health%20Care%2018-19_180514%20WEB(1).docx','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/Planning/FIN_AAWP_Primary Mental Health Care 18-19_180514 WEB(1).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 07:51:49',0),(66943,'2021-04-19 07:53:08','2021-05-03 10:17:45','62523572-5738-4ea0-ad55-b4adda0d636e',1,'/page/news-and-events/events/upcoming/dimensions-of-palliative-care---communication-challenges','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/dimensions-of-palliative-care---communication-challenges','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-03 10:17:45',0),(66944,'2021-04-19 07:54:54','2021-04-23 00:28:08','fc097aea-0a37-4216-8df1-84f18e29488c',1,'/page/news-and-events/latest-news/campaign-addresses-barriers-to-suicide-prevention/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/news-and-events/latest-news/campaign-addresses-barriers-to-suicide-prevention','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-23 00:28:08',0),(66945,'2021-04-19 08:07:43','2021-05-17 18:21:49','b9df3cfa-0238-4daa-b311-c1eb7f723c73',1,'/position-type/registered-nurse','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: position-type/registered-nurse','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-17 18:21:49',0),(66946,'2021-04-19 08:10:26','2021-04-19 08:10:26','b10a6298-c17a-4909-a6c7-2452d9eb3f77',1,'/page/health-professionals/Local Positions Vacant/vr-gp-required---market-street-medical-practice/','','207.46.13.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/vr-gp-required---market-street-medical-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 08:10:26',0),(66947,'2021-04-19 08:11:25','2021-04-30 20:03:40','489d9428-6395-4868-9a13-6fdfb6785bb0',1,'/page/about/careers/eoi---gp-representative---phnhospital-committee','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/careers/eoi---gp-representative---phnhospital-committee','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-30 20:03:40',0),(66948,'2021-04-19 08:21:23','2021-04-28 21:05:29','497508fa-adac-4732-b4b4-d927c6972d47',1,'/page/news-and-events/latest-news/feedback-sought-on-community-palliative-care','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/feedback-sought-on-community-palliative-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-28 21:05:29',0),(66949,'2021-04-19 08:32:50','2021-05-12 20:58:25','d2369a82-bd99-4d0b-8f70-f551ef72fea1',1,'/page/health-professionals/palliative-care/','','66.249.68.95','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/palliative-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-12 20:58:25',0),(66950,'2021-04-19 08:33:04','2021-05-14 11:46:06','760c54ec-0ad3-4a30-aefb-b43e0c43497a',1,'/page/news-and-events/latest-news/emergency-department-clinical-notes-in-the-viewer-from-health-provider-portal/','','66.249.69.36','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/latest-news/emergency-department-clinical-notes-in-the-viewer-from-health-provider-portal','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-14 11:46:06',0),(66951,'2021-04-19 08:41:59','2021-05-17 23:23:44','7b358845-3041-4b4c-b6e9-361a72a95ba6',1,'/jobs/development-project-lead-care-coordination','','40.77.167.45','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/development-project-lead-care-coordination','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,69,'2021-05-17 23:23:44',0),(66952,'2021-04-19 08:46:50','2021-04-19 08:46:50','ac7a4dff-5f07-4b56-98d5-f0702119fe56',1,'/content/Document/Templates/4.12/BP v4.12/MNHHS Paediatric BP Referral V4_12.rtf','','207.46.13.38','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.12/BP v4.12/MNHHS Paediatric BP Referral V4_12.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 08:46:50',0),(66953,'2021-04-19 08:59:59','2021-04-19 08:59:59','40959080-213f-42c3-a2b1-34093290df16',1,'/page/news-and-events/events/upcoming/new-clinical-practice-recommendations-for-chronic-kidney-disease/','','40.77.167.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/new-clinical-practice-recommendations-for-chronic-kidney-disease','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 08:59:59',0),(66954,'2021-04-19 09:01:33','2021-04-19 09:01:33','1ee57891-781e-46c5-9480-2e3f5ab326fb',1,'/content/Document/Events/GP Alignment Program Flyer_2015_November_v1.1.pdf','','207.46.13.38','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/GP Alignment Program Flyer_2015_November_v1.1.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 09:01:33',0),(66955,'2021-04-19 09:04:40','2021-05-11 20:25:32','c410a786-8b9d-4547-9270-75e2db7ade0d',1,'/content/Document/Aboriginal and Torres Strait Islander SEQ Murri Service Directory v3.1 (June 2015).pdf','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Aboriginal and Torres Strait Islander SEQ Murri Service Directory v3.1 (June 2015).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-11 20:25:32',0),(66956,'2021-04-19 09:11:09','2021-05-17 11:34:19','648adbae-1dcd-45d1-978a-0803d6785bd6',1,'/page/news-and-events/latest-news/health-alert-novel-coronavirus/brisbanenorth.communityhealthpathways.org','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/health-alert-novel-coronavirus/brisbanenorth.communityhealthpathways.org','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-17 11:34:19',0),(66957,'2021-04-19 09:11:10','2021-04-23 17:20:01','61950061-1d75-4ba5-98af-333c5bce7360',1,'/page/news-and-events/latest-news/over-50-gps-receive-maternity-shared-care-training-at-latest-workshop','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/over-50-gps-receive-maternity-shared-care-training-at-latest-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-23 17:20:01',0),(66958,'2021-04-19 09:11:45','2021-04-19 09:11:45','f5ccf027-14b5-4f27-87a7-830a5d0e1513',1,'/content/Document/INVITATION-immunisation-catch-up-May-2017.pdf','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/INVITATION-immunisation-catch-up-May-2017.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 09:11:45',0),(66959,'2021-04-19 09:15:24','2021-04-19 09:15:24','7388b515-2283-48bb-af3f-fabce29688cf',1,'/https://brisbanenorthphn.org.au/','','220.244.38.126','Test Certificate Info','Template not found: https:/brisbanenorthphn.org.au','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 09:15:24',0),(66960,'2021-04-19 09:20:55','2021-05-18 13:35:54','d059244b-03f7-4976-b32a-aa06c74e85c7',1,'/page/news-and-events/latest-news/dementia-project-steering-committee-eoi-now-open','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/dementia-project-steering-committee-eoi-now-open','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-18 13:35:54',0),(66961,'2021-04-19 09:40:48','2021-05-18 07:50:24','83d910de-e8fc-4cf1-a122-163289e044c3',1,'/page/news-and-events/events/upcoming/stepping-stone-to-success','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/stepping-stone-to-success','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-18 07:50:24',0),(66962,'2021-04-19 09:53:29','2021-04-30 17:17:36','e999bc4c-b8be-4081-8092-2c526bedc3fd',1,'/page/news-and-events/events/upcoming/redicase-training-may29','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/redicase-training-may29','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-30 17:17:36',0),(66963,'2021-04-19 10:02:13','2021-05-04 19:19:35','d68a195b-5cb6-456e-805f-773261d12f40',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---brisbane-city','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---brisbane-city','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-04 19:19:35',0),(66964,'2021-04-19 10:06:55','2021-05-13 04:07:55','be4c18c2-38ab-442a-91f4-70a66e4f7c1b',1,'/page/news-and-events/latest-news/dr-anita-green-re-elected-for-another-term-as-board-chair','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/dr-anita-green-re-elected-for-another-term-as-board-chair','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-13 04:07:55',0),(66965,'2021-04-19 10:10:54','2021-04-19 10:10:54','9e0a23b2-b7ff-44a7-bed0-5804c4b9d159',1,'/page/health-professionals/chronic-disease-management/chronic-disease-resources','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/chronic-disease-management/chronic-disease-resources','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 10:10:54',0),(66966,'2021-04-19 10:21:54','2021-05-16 08:38:15','b5b0b7a8-c01c-4596-b375-f79742d1a456',1,'/page/news-and-events/latest-news/blueprint-for-building-a-lived-experience-workforce/','','157.55.39.23','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/blueprint-for-building-a-lived-experience-workforce','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 08:38:15',0),(66967,'2021-04-19 10:40:00','2021-05-12 05:15:10','76546461-21fa-48ee-a9d1-be8dfb3b151c',1,'/page/health-professionals/Local Positions Vacant/practice-nurse-rn---world-wellness-community-clinic/','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse-rn---world-wellness-community-clinic','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-12 05:15:10',0),(66968,'2021-04-19 10:43:41','2021-04-19 10:43:41','51c9ef09-7105-46c2-aa91-4b5820570277',1,'/events/performance-appraisals-how-and-why-the-need-for-radical-reinvention','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/performance-appraisals-how-and-why-the-need-for-radical-reinvention','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 10:43:41',0),(66969,'2021-04-19 10:50:45','2021-05-17 21:59:33','cecb539b-b70d-4d43-ab96-d979ab4114d9',1,'/events/brief-interventions-for-mental-health-what-can-you-do-in-under-30-minutes-to-help-people-cope','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/brief-interventions-for-mental-health-what-can-you-do-in-under-30-minutes-to-help-people-cope','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-17 21:59:33',0),(66970,'2021-04-19 10:59:41','2021-05-04 11:59:11','40c319ac-a4c5-4533-b90d-967d92416702',1,'/content/Image/News Images/banner- smart referrals.jpg','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/News Images/banner- smart referrals.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-04 11:59:11',0),(66971,'2021-04-19 11:01:54','2021-04-27 04:22:13','d4ea2475-3100-437f-8836-659484ed7fe5',1,'/page/news-and-events/latest-news/alliance-to-co-design-new-model-of-care-for-older-people','http://brisbanenorthphn.org.au/page/news-and-events/latest-news/alliance-to-co-design-new-model-of-care-for-older-people','35.206.164.242','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/latest-news/alliance-to-co-design-new-model-of-care-for-older-people','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-27 04:22:13',0),(66972,'2021-04-19 11:04:07','2021-05-16 07:40:01','fe85a581-535b-4f1f-9954-d968cf96135c',1,'/page/health-professionals/Local Positions Vacant/other-health-professional---deception-bay','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/other-health-professional---deception-bay','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-16 07:40:01',0),(66973,'2021-04-19 11:12:05','2021-05-13 14:11:39','8167031b-3b4d-443f-bd4a-5f3c0361f361',1,'/events/care-of-the-critically-unwell-child','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/care-of-the-critically-unwell-child','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-13 14:11:39',0),(66974,'2021-04-19 11:16:43','2021-04-19 11:16:43','7e152b60-e1a6-457b-a9f4-f99be555e6f2',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---bracken-ridge/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---bracken-ridge','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 11:16:43',0),(66975,'2021-04-19 11:32:29','2021-04-19 11:32:29','c9069702-ab4f-4f1a-b3be-990ef9c6c67a',1,'/content/Document/rediCASE Tip Sheet SP EnterScreeningOutcomesK10andK5_FINALJul17.docx','http://www.brisbanenorthphn.org.au/content/Document/rediCASE%20Tip%20Sheet%20SP%20EnterScreeningOutcomesK10andK5_FINALJul17.docx','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/rediCASE Tip Sheet SP EnterScreeningOutcomesK10andK5_FINALJul17.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 11:32:29',0),(66976,'2021-04-19 11:42:52','2021-04-19 11:42:52','8ca61960-b20c-4e22-b31a-c776627e8344',1,'/matthews9793/wigs/','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: matthews9793/wigs','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 11:42:52',0),(66977,'2021-04-19 11:49:32','2021-05-19 01:36:06','3999485a-02fb-4827-9a1d-ccecf5cc8534',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---beachmere/','','17.121.112.225','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---beachmere','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-19 01:36:06',0),(66978,'2021-04-19 11:50:04','2021-04-30 06:56:37','34f9d5e3-d04f-4220-880f-72a549dd2342',1,'/content/Document/FORM 2 -Application for Group Therapy 2018-19V1.docx','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/FORM 2 -Application for Group Therapy 2018-19V1.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 06:56:37',0),(66979,'2021-04-19 11:50:12','2021-05-13 05:48:12','02f53d47-2930-4ded-99ff-586bb668535b',1,'/page/news-and-events/events/upcoming/redicase-training-march','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/redicase-training-march','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-13 05:48:12',0),(66980,'2021-04-19 12:00:57','2021-05-13 13:07:32','1f360f39-50fa-4d8e-9a81-6792434e526e',1,'/content/Document/mn-vaccine-management-protocol October 2016.docx','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/mn-vaccine-management-protocol October 2016.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 13:07:32',0),(66981,'2021-04-19 12:04:12','2021-04-19 18:14:53','0e7a378f-a854-415c-a772-4788363995f7',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---north-lakes/','','207.46.13.38','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---north-lakes','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-19 18:14:53',0),(66982,'2021-04-19 12:08:28','2021-05-18 15:26:43','634aff55-f3ac-4ef8-9fe8-ca821403dd6f',1,'/jobs/general-practitioner-3','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/general-practitioner-3','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-18 15:26:43',0),(66983,'2021-04-19 12:24:17','2021-04-19 12:24:17','3ff15c1c-d1ed-4362-a452-a1a62cbfd8e3',1,'/yearinreview/2017-18/closing-the-gap-in-indigenous-health','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/closing-the-gap-in-indigenous-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 12:24:17',0),(66984,'2021-04-19 12:29:09','2021-05-06 06:35:17','c5b0d0dd-0657-4b9c-9394-530197f6506b',1,'/content/Document/Events/gp-align-prog-March 2016.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/gp-align-prog-March%202016.pdf','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/Events/gp-align-prog-March 2016.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 06:35:17',0),(66985,'2021-04-19 12:31:21','2021-05-03 06:35:25','79283771-847b-4076-91bb-f6aacadb792b',1,'/content/Document/Events/MeRT Brain Treatment Therapy_Professionals.pdf','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/MeRT Brain Treatment Therapy_Professionals.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-03 06:35:25',0),(66986,'2021-04-19 12:47:32','2021-04-19 12:47:32','fcfaf7d3-c0f7-48d8-abe6-dbbcabbed32d',1,'/content/Document/Media Releases/MR_Dr Anita Green re-elected for another term as Board Chair_171130.pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%20Releases/MR_Dr%20Anita%20Green%20re-elected%20for%20another%20term%20as%20Board%20Chair_171130.pdf','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/Media Releases/MR_Dr Anita Green re-elected for another term as Board Chair_171130.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 12:47:32',0),(66987,'2021-04-19 12:53:23','2021-04-29 04:59:26','e54326d1-c8f4-4777-b8be-cdf143ad2f89',1,'/page/health-professionals/Local Positions Vacant/vr-gp---ashgrove-clinic/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/vr-gp---ashgrove-clinic','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-04-29 04:59:26',0),(66988,'2021-04-19 12:54:38','2021-05-10 01:10:42','086f4dd1-b6fe-45e8-b3ef-c6fd66e35723',1,'/content/Document/Media Releases/MR_Doctor Dad joins Medical Mums immunisation campaign_170424 (002).pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%20Releases/MR_Doctor%20Dad%20joins%20Medical%20Mums%20immunisation%20campaign_170424%20(002).pdf','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/Media Releases/MR_Doctor Dad joins Medical Mums immunisation campaign_170424 (002).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-10 01:10:42',0),(66989,'2021-04-19 12:58:45','2021-05-13 21:54:27','6f6dc9b4-52bf-4d36-a81f-24df69f9d605',1,'/page/health-professionals/Local Positions Vacant/job-vacancy-1/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/job-vacancy-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-13 21:54:27',0),(66990,'2021-04-19 13:01:50','2021-04-19 13:01:50','9479d976-675e-447a-ab6b-b01202a0716d',1,'/content/Document/MNHHS Maternity PractiX v4_10.doc','http://www.brisbanenorthphn.org.au/content/Document/MNHHS%20Maternity%20PractiX%20v4_10.doc','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/MNHHS Maternity PractiX v4_10.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 13:01:50',0),(66991,'2021-04-19 13:03:15','2021-04-19 13:03:15','17986a51-c2f7-4003-9a77-b99c3d1deb2c',1,'/page/news-and-events/latest-news/queensland-first-trial-aims-to-keep-at-risk-patients-at-home','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/queensland-first-trial-aims-to-keep-at-risk-patients-at-home','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 13:03:15',0),(66992,'2021-04-19 13:06:18','2021-05-16 07:52:22','ed2d5bd9-a442-4cdd-abda-84ffffc23836',1,'/page/news-and-events/latest-news/were-moving/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/were-moving','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-16 07:52:22',0),(66993,'2021-04-19 13:15:06','2021-04-19 13:15:06','885c56e6-da64-48b9-b1ae-ea00a7c6a5ff',1,'/page/health-professionals/registered-nurse-required---east-street-family-doctor/','','207.46.13.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/registered-nurse-required---east-street-family-doctor','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 13:15:06',0),(66994,'2021-04-19 13:25:16','2021-04-19 13:25:16','6e405fd6-2b83-4833-8b97-2d4a17d70221',1,'/content/Document/Events/2018/GP-Generalist Gastroenterology_flyer(1).pdf','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Events/2018/GP-Generalist Gastroenterology_flyer(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 13:25:16',0),(66995,'2021-04-19 13:26:43','2021-04-19 13:26:43','814273a0-737a-425e-ab29-54d3e10183d3',1,'/page/health-professionals/immunisation/live-well-age-well-–-vaccinate-for-life','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/immunisation/live-well-age-well-–-vaccinate-for-life','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 13:26:43',0),(66996,'2021-04-19 13:34:52','2021-04-29 02:01:57','a20ad71a-c81b-4549-948f-7a84700e9428',1,'/content/Document/Templates/4.8/MNHHS Maternity Referral BP v4_8.rtf','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.8/MNHHS Maternity Referral BP v4_8.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-29 02:01:57',0),(66997,'2021-04-19 13:53:00','2021-04-29 05:00:19','46f1f341-e657-4fdc-9cf4-58418814c34f',1,'/page/news-and-events/events/upcoming/management-of-lower-leg-ulceration/','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/management-of-lower-leg-ulceration','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-04-29 05:00:19',0),(66998,'2021-04-19 13:56:02','2021-05-10 23:11:46','0ac96b93-c06f-46e3-b761-0344f02f1268',1,'/content/Document/Maps/INFO_Brisbane North PHN Visitors_190125.pdf','http://www.brisbanenorthphn.org.au/content/Document/Maps/INFO_Brisbane%20North%20PHN%20Visitors_190125.pdf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Maps/INFO_Brisbane North PHN Visitors_190125.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-10 23:11:46',0),(66999,'2021-04-19 14:05:24','2021-05-13 08:27:31','116eb913-96ed-4508-997b-12348f86c708',1,'/content/Document/DRAFT_MN_Health_Forum_Program_2016_web.pdf','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/DRAFT_MN_Health_Forum_Program_2016_web.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-13 08:27:31',0),(67000,'2021-04-19 14:06:45','2021-05-15 10:57:15','29da6670-0c77-47ce-a102-fd4689be33ad',1,'/content/Document/Reports/RAP_Brisbane North PHN Reflect RAP 2019-2020_for final endorsement_190521.pdf','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Reports/RAP_Brisbane North PHN Reflect RAP 2019-2020_for final endorsement_190521.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 10:57:15',0),(67001,'2021-04-19 14:07:54','2021-04-19 14:07:54','020cb62b-4885-4fd3-8831-65d7e9df8475',1,'/yearinreview/2017-18/wp-content/uploads/2018/11/Man-and-woman.jpeg','','66.249.68.2','Googlebot-Image/1.0','Template not found: yearinreview/2017-18/wp-content/uploads/2018/11/Man-and-woman.jpeg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 14:07:54',0),(67002,'2021-04-19 14:14:21','2021-05-16 07:51:39','4751251f-c651-4058-a9c9-767871f973a2',1,'/page/news-and-events/latest-news/the-practice-incentives-program-is-starting-in-august-2019/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/the-practice-incentives-program-is-starting-in-august-2019','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 07:51:39',0),(67003,'2021-04-19 14:30:04','2021-05-18 00:20:46','bc6c1a01-cfd1-43a4-817c-8c197f40f1d8',1,'/position-type/nurse','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: position-type/nurse','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 00:20:46',0),(67004,'2021-04-19 14:32:44','2021-05-11 19:49:55','73747530-48a4-48e9-8ec8-fc72ae34fc64',1,'/yearinreview/2018-19/wp-content/uploads/2019/11/IMG_Caboolture-Indigenous-Medical_HCHarticle-600x400.jpg','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2018-19/wp-content/uploads/2019/11/IMG_Caboolture-Indigenous-Medical_HCHarticle-600x400.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-11 19:49:55',0),(67005,'2021-04-19 14:42:35','2021-05-02 16:33:59','2fe2d7cf-8dc5-47a6-a41e-c661d372b67e',1,'/content/Document/Pathways/Venous leg ulcers_methods of debridement_link.pdf','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Pathways/Venous leg ulcers_methods of debridement_link.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-02 16:33:59',0),(67006,'2021-04-19 14:47:47','2021-05-14 22:32:06','386c5582-13b9-41b0-a92e-d0c42d06acfd',1,'/old-index.php','','146.59.151.72','python-requests/2.25.1','Template not found: old-index.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-14 22:32:06',0),(67007,'2021-04-19 14:48:20','2021-05-08 03:38:32','a6dd43a8-c603-4aa8-a447-0de35f6e6ab8',1,'/content/Document/Events/2018/Information Smoking Cessation Workshop 26 April 2018.pdf','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2018/Information Smoking Cessation Workshop 26 April 2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-08 03:38:32',0),(67008,'2021-04-19 15:08:55','2021-05-14 03:47:10','cb78bdb3-e964-4e5a-a0fe-2268459bdcbf',1,'/content/Document/Events/Marfan Conference agenda final.pdf','','144.76.162.206','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Safari/605.1.15','Template not found: content/Document/Events/Marfan Conference agenda final.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-14 03:47:10',0),(67009,'2021-04-19 15:24:52','2021-04-19 15:24:52','2ddcd92c-1a99-4a3a-9b82-9fe4cfe34760',1,'/content/Document/Templates/V5.1 Jan 2018/MD/MNHHS Redcliffe Hospital v5_1 MD.rtf','','207.46.13.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/V5.1 Jan 2018/MD/MNHHS Redcliffe Hospital v5_1 MD.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 15:24:52',0),(67010,'2021-04-19 15:37:34','2021-05-14 11:22:07','3d80151d-b57b-4358-a824-69b8fc4c2af9',1,'/page/news-and-events/metro-north-health-forum/2016-metro-north-health-forum','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/metro-north-health-forum/2016-metro-north-health-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-14 11:22:07',0),(67011,'2021-04-19 15:41:06','2021-05-11 11:37:31','3e226849-9f86-4aea-b5a5-e4b21d85dcbf',1,'/content/Document/Templates/4.6/MNHHS Maternity Ref MD v4_6.rtf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.6/MNHHS Maternity Ref MD v4_6.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-11 11:37:31',0),(67012,'2021-04-19 15:42:33','2021-04-19 15:42:33','3e673747-357b-43e6-811c-ed08ab45c889',1,'/content/Document/Pathways/LINK R_Other Medical Therapies for the Treatment of Depression.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/LINK%20R_Other%20Medical%20Therapies%20for%20the%20Treatment%20of%20Depression.pdf','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/Pathways/LINK R_Other Medical Therapies for the Treatment of Depression.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 15:42:33',0),(67013,'2021-04-19 15:43:38','2021-04-21 22:42:55','2ff4e712-ea3e-4144-af51-a9357d706c5a',1,'/events/preparing-for-your-first-covid-19-case-in-aged-care-lessons-from-melbourne','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/preparing-for-your-first-covid-19-case-in-aged-care-lessons-from-melbourne','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-21 22:42:55',0),(67014,'2021-04-19 15:51:49','2021-05-18 16:00:33','2d85f4dc-9746-4e6d-a7e5-45a140eef77c',1,'/jobs/numerous-allied-health-opportunities-available','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/numerous-allied-health-opportunities-available','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-18 16:00:33',0),(67015,'2021-04-19 16:10:11','2021-05-18 03:09:27','00a6bebe-ae3f-40d4-be9b-1eb79df3bba1',1,'/events/stars-refresher-workshop-1','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/stars-refresher-workshop-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-18 03:09:27',0),(67016,'2021-04-19 16:13:22','2021-05-16 07:37:45','5bf71fd7-46c9-467b-81c2-3df1c9151190',1,'/page/news-and-events/latest-news/get-familiar-with-healthpathways-during-breast-cancer-awareness-month/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/get-familiar-with-healthpathways-during-breast-cancer-awareness-month','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-16 07:37:45',0),(67017,'2021-04-19 16:17:46','2021-04-19 16:17:46','e4d98233-8746-4a49-92fb-f4bde3a396ef',1,'/content/Document/Pathways/Sensitivity and specificity of diagnostic tests for CAD.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/Sensitivity%20and%20specificity%20of%20diagnostic%20tests%20for%20CAD.pdf','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/Pathways/Sensitivity and specificity of diagnostic tests for CAD.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 16:17:46',0),(67018,'2021-04-19 16:19:07','2021-05-07 16:28:54','55cc3033-3fa6-43f1-ae84-48f2d1cfada4',1,'/page/news-and-events/events/upcoming/mental-health-skills-training-online','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/mental-health-skills-training-online','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-07 16:28:54',0),(67019,'2021-04-19 16:23:20','2021-05-17 18:17:10','e1abe83c-bc95-487b-85f0-cbc3fc6b644a',1,'/page/news-and-events/latest-news/supporting-neurofibromatosis-patients/','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/supporting-neurofibromatosis-patients','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-17 18:17:10',0),(67020,'2021-04-19 16:27:37','2021-05-15 10:49:12','91661c38-dad3-4b09-9419-8f326625599d',1,'/page/news-and-events/events/upcoming/electronic-prescribing-update-for-primary-health-networks-and-affiliates','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/electronic-prescribing-update-for-primary-health-networks-and-affiliates','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 10:49:12',0),(67021,'2021-04-19 16:30:38','2021-05-16 14:15:54','29bc73c1-611d-4df4-8d05-7a40724e9ae8',1,'/content/Document/FINAL_MHAOD_Recovery_newsletter_August 2017_WEB.pdf','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/FINAL_MHAOD_Recovery_newsletter_August 2017_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 14:15:54',0),(67022,'2021-04-19 16:31:42','2021-04-19 18:08:43','0316e6a3-d5e6-4d6c-8101-0d89657d722b',1,'/position-type/femal-counsellor','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: position-type/femal-counsellor','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-19 18:08:43',0),(67023,'2021-04-19 16:33:21','2021-04-24 08:23:51','6a5d5063-8031-4971-a43b-47e2c90e9fcc',1,'/page/health-professionals/Local Positions Vacant/registered-nurse---hamilton/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/registered-nurse---hamilton','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-24 08:23:51',0),(67024,'2021-04-19 16:37:02','2021-05-04 00:49:17','8dedbe7e-4986-4b9c-bf13-82bcb6284acf',1,'/content/Document/Templates/4.3/MNHHS Maternity Referral PractiX v4.3.doc','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.3/MNHHS Maternity Referral PractiX v4.3.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-04 00:49:17',0),(67025,'2021-04-19 16:40:06','2021-05-19 00:40:40','5acdf5b1-3925-46ab-9eba-65e24fce5793',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---burpengary/','','17.121.115.179','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---burpengary','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-19 00:40:40',0),(67026,'2021-04-19 16:42:51','2021-05-17 02:50:20','887c72a5-df3f-49eb-9913-edeb360d1101',1,'/content/Media/Network Link_September_2018_V6_WEB.pdf','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Media/Network Link_September_2018_V6_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 02:50:20',0),(67027,'2021-04-19 16:51:07','2021-05-12 10:11:35','fd9c35d0-8625-41c6-9e19-197d5cd732cb',1,'/page/health-professionals/community-care/collaboratives','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/community-care/collaboratives','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-12 10:11:35',0),(67028,'2021-04-19 16:51:20','2021-04-19 16:51:20','35225dfa-7181-4412-8e23-c74e9a76fcbb',1,'/content/Document/Pathways/Dyslipidaemia- lipid modifying therapy_ vertical[1].pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/Dyslipidaemia-%20lipid%20modifying%20therapy_%20vertical[1].pdf','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/Pathways/Dyslipidaemia- lipid modifying therapy_ vertical[1].pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 16:51:20',0),(67029,'2021-04-19 16:57:35','2021-05-18 12:17:07','7dceecce-eb57-49e4-973e-3df811fdadea',1,'/content/Image/Anita Green.jpg','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Anita Green.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 12:17:07',0),(67030,'2021-04-19 17:00:29','2021-04-19 17:00:29','cb126195-9f65-4815-8032-caf8b611d5f5',1,'/page/home/banners/chronic-disease-management-using-best-practice/','','207.46.13.38','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/home/banners/chronic-disease-management-using-best-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 17:00:29',0),(67031,'2021-04-19 17:19:49','2021-05-16 13:51:26','4a445dbf-e294-403a-b2d5-2ec8781b21a6',1,'/page/news-and-events/events/archive/caboolture-hospital-general-practice-forum/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/caboolture-hospital-general-practice-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 13:51:26',0),(67032,'2021-04-19 17:20:00','2021-05-01 17:27:58','c75d5fc7-fe7e-4e73-addc-570f262aabc2',1,'/content/Document/Events/2018/180328_CHQ_Paediatric Masterclass_Save the date_A5.pdf','','66.249.68.29','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/Events/2018/180328_CHQ_Paediatric Masterclass_Save the date_A5.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 17:27:58',0),(67033,'2021-04-19 17:28:05','2021-04-19 17:28:05','4c02d6c8-8869-4e49-9c61-28c944ca88ab',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---narangba/','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---narangba','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 17:28:05',0),(67034,'2021-04-19 18:11:49','2021-04-29 02:37:27','24797047-48de-44b2-8fc7-4752f985d0ee',1,'/content/Document/Templates/4.5/MNHHS TPCH Referral BP v4.5 160101.rtf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.5/MNHHS TPCH Referral BP v4.5 160101.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-29 02:37:27',0),(67035,'2021-04-19 18:13:27','2021-04-19 18:13:27','bd00a406-f7f3-4f47-8f0a-4ca81d7d9297',1,'/content/Document/Planning/FIN_AAWP_Primary Mental Health Care 18-19_180514 WEB.docx','http://www.brisbanenorthphn.org.au/content/Document/Planning/FIN_AAWP_Primary%20Mental%20Health%20Care%2018-19_180514%20WEB.docx','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/Planning/FIN_AAWP_Primary Mental Health Care 18-19_180514 WEB.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 18:13:27',0),(67036,'2021-04-19 18:22:27','2021-05-01 09:27:31','93902457-531d-43e7-a26a-ded3cb00a708',1,'/content/Document/Templates/My health for life/My-Health-For-Life-BP-V2-0.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/My%20health%20for%20life/My-Health-For-Life-BP-V2-0.rtf','35.186.188.225','Go-http-client/1.1','Template not found: content/Document/Templates/My health for life/My-Health-For-Life-BP-V2-0.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-01 09:27:31',0),(67037,'2021-04-19 18:23:26','2021-04-22 08:05:09','22184fb5-25ea-4d22-8d9d-0a276dba98f2',1,'/page/health-professionals/Local Positions Vacant/general-practice-staff-required---the-melanoma-centre/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practice-staff-required---the-melanoma-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-04-22 08:05:09',0),(67038,'2021-04-19 18:43:25','2021-05-16 10:17:12','c68328ec-fd78-4487-9e04-68297ddd853d',1,'/content/Document/Events/2018/INVITATION - Mental Health GP evening - 3 May 2018 180406.pdf','','66.249.69.63','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Events/2018/INVITATION - Mental Health GP evening - 3 May 2018 180406.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 10:17:12',0),(67039,'2021-04-19 19:06:00','2021-04-22 08:21:28','2cbf2444-a6be-4e4e-81f1-7c327ef7170c',1,'/page/health-professionals/multicultural-health/refugee-health-network-queensland','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/multicultural-health/refugee-health-network-queensland','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-22 08:21:28',0),(67040,'2021-04-19 19:09:10','2021-04-22 17:50:24','90e979c3-3446-49db-8c2f-7f3312cbca58',1,'/content/Document/MR_After hours campaign provides emergency alternatives_170516.pdf','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/MR_After hours campaign provides emergency alternatives_170516.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-22 17:50:24',0),(67041,'2021-04-19 19:28:13','2021-04-19 19:28:13','035989bf-bf12-4d98-b638-0fcf72b5d1e7',1,'/page/news-and-events/events/upcoming/introduction-to-bowel-cancer-and-screening/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/introduction-to-bowel-cancer-and-screening','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 19:28:13',0),(67042,'2021-04-19 19:34:43','2021-05-16 05:53:14','b6dbd5f1-caba-47b8-afa0-ad01a6d4449c',1,'/yearinreview/2017-18/coordinated-care-for-older-people/www.brisbanenorthphn.org.au','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/coordinated-care-for-older-people/www.brisbanenorthphn.org.au','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 05:53:14',0),(67043,'2021-04-19 19:38:38','2021-05-16 07:54:57','a0a35d87-db7b-4c11-ad24-29db393a53ff',1,'/page/publications/reports-and-plans/other-plans-and-reports/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/publications/reports-and-plans/other-plans-and-reports','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-16 07:54:57',0),(67044,'2021-04-19 19:41:21','2021-05-08 01:33:33','eab2c19f-c590-4dd8-b6bf-e88ff6e2a09f',1,'/content/Document/Templates/4.6/Specialists List_Paediatrics_4_6.pdf','','144.76.162.206','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36','Template not found: content/Document/Templates/4.6/Specialists List_Paediatrics_4_6.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-08 01:33:33',0),(67045,'2021-04-19 19:43:03','2021-04-19 19:43:03','282a2a14-b6f7-4210-a514-b36aa82dfe34',1,'/api/v1/canal/config/1/1','','91.241.19.175','Nuclei - Open-source project (github.com/projectdiscovery/nuclei)','Template not found: api/v1/canal/config/1/1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 19:43:03',0),(67046,'2021-04-19 19:43:34','2021-04-25 22:44:06','8e9bd719-4aa9-4071-8e22-af81e49ddd5e',1,'/page/news-and-events/events/archive/chronic-disease-management-2020','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/chronic-disease-management-2020','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-25 22:44:06',0),(67047,'2021-04-19 19:57:14','2021-04-19 21:34:13','a8f7b4ce-1816-4092-9b5b-7d4019c23b8a',1,'/content/Document/Templates/4.9/MNHHS Redcliffe Referral MD v4_9.rtf','','207.46.13.38','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.9/MNHHS Redcliffe Referral MD v4_9.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-19 21:34:13',0),(67048,'2021-04-19 20:02:33','2021-05-12 15:14:40','1e55ca0d-a256-473d-a96d-9ddfc6626e39',1,'/yearinreview/2017-18/mental-health-suicide-prevention-and-alcohol-and-other-drug-services','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/mental-health-suicide-prevention-and-alcohol-and-other-drug-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 15:14:40',0),(67049,'2021-04-19 20:09:35','2021-05-15 18:09:16','2ec579d8-9373-441a-b0a1-64611481a016',1,'/page/health-professionals/digital-health/PIP-EHealth','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/digital-health/PIP-EHealth','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-15 18:09:16',0),(67050,'2021-04-19 20:12:23','2021-05-14 12:51:14','00f37f4e-717a-4d7f-9e42-a98ad7755134',1,'/yearinreview/coordinated-care-for-older-people/www.brisbanenorthphn.org.au','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/coordinated-care-for-older-people/www.brisbanenorthphn.org.au','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-14 12:51:14',0),(67051,'2021-04-19 20:18:13','2021-05-10 13:14:18','141dfa5f-b898-46ec-86cb-03cb8ab7f8d0',1,'/page/news-and-events/latest-news/supporting-residents-of-aged-care','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/supporting-residents-of-aged-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-10 13:14:18',0),(67052,'2021-04-19 20:20:36','2021-05-16 07:45:28','3f864ba7-9907-4de9-95fa-d124d27702ed',1,'/page/news-and-events/latest-news/metro-north-health-forum-exhibitors-announced/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/metro-north-health-forum-exhibitors-announced','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-16 07:45:28',0),(67053,'2021-04-19 20:28:03','2021-05-18 19:03:47','b5d9259d-341b-480f-94d9-0396631cc7e3',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---mcdowall/','','66.249.68.2','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---mcdowall','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-18 19:03:47',0),(67054,'2021-04-19 20:34:42','2021-05-16 07:48:08','fb3e531d-15ab-41ee-88af-f6704de54ff8',1,'/page/news-and-events/latest-news/older-australians-put-their-health-in-their-hands-with-my-health-record/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/older-australians-put-their-health-in-their-hands-with-my-health-record','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 07:48:08',0),(67055,'2021-04-19 20:37:05','2021-05-07 20:27:25','9cd9c9d6-be39-4344-bc17-1499bf7cc767',1,'/page/about/our-planning/reports-and-plans','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/our-planning/reports-and-plans','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-07 20:27:25',0),(67056,'2021-04-19 20:43:42','2021-05-14 07:25:24','d7abb1ae-2a89-4c28-8b64-b6c5bed8ba71',1,'/page/news-and-events/events/upcoming/rural-anaesthetic-crisis-management','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/rural-anaesthetic-crisis-management','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-14 07:25:24',0),(67057,'2021-04-19 20:47:42','2021-05-13 17:50:40','888453cb-9990-4d29-a81f-ac2331bae6ac',1,'/page/health-professionals/referral-and-patient-management/directories/national-health-service-directory','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/referral-and-patient-management/directories/national-health-service-directory','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 17:50:40',0),(67058,'2021-04-19 20:53:27','2021-05-09 16:33:19','1fd955e3-94e6-401b-b51f-77b0ad9616b1',1,'/content/Media/Genie v6.2/MNHHS Community and Oral Health Directorate v6.2_Genie.4W7','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Media/Genie v6.2/MNHHS Community and Oral Health Directorate v6.2_Genie.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-09 16:33:19',0),(67059,'2021-04-19 20:56:00','2021-04-24 12:50:28','746bfb29-e6e8-432f-aa3a-6c2808afbc45',1,'/page/health-professionals/Local Positions Vacant/vr-gp---bracken-ridge','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/vr-gp---bracken-ridge','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 12:50:28',0),(67060,'2021-04-19 21:00:29','2021-05-09 18:17:25','2c1db327-54aa-4608-9285-7f24061c0e4a',1,'/yearinreview/2017-18/supporting-frontline-healthcare-services/www.brisbanenorthphn.org.au','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/supporting-frontline-healthcare-services/www.brisbanenorthphn.org.au','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-09 18:17:25',0),(67061,'2021-04-19 21:12:20','2021-05-13 23:11:14','07d31dc5-8638-479d-8853-bb0593976e15',1,'/content/Document/PHN toolkit_web.pdf','','66.249.69.63','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/PHN toolkit_web.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-13 23:11:14',0),(67062,'2021-04-19 21:13:34','2021-05-16 19:03:13','07dc8448-74eb-403b-a365-8b082b4f233f',1,'/events/not-waiting-on-weight-tackling-the-two-thirds-now-overweight-or-obese','','3.238.235.155','CCBot/2.0 (https://commoncrawl.org/faq/)','Template not found: events/not-waiting-on-weight-tackling-the-two-thirds-now-overweight-or-obese','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,47,'2021-05-16 19:03:13',0),(67063,'2021-04-19 21:16:47','2021-04-19 21:16:47','18fdc0f9-5e05-49ca-a44f-4cdc60986fad',1,'/content/Document/Templates/4.3/MNHHS Paediatric Referral ZM v4.3.rtf','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.3/MNHHS Paediatric Referral ZM v4.3.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 21:16:47',0),(67064,'2021-04-19 21:41:45','2021-04-19 21:41:45','fa1302e6-0fb4-4977-87fb-e3a794f33508',1,'/content/Image/Directors + staff/Directors/Anita Green photo_crop.jpg','','66.249.66.153','Googlebot-Image/1.0','Template not found: content/Image/Directors staff/Directors/Anita Green photo_crop.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 21:41:45',0),(67065,'2021-04-19 21:46:12','2021-04-21 07:23:37','77cb3f5e-91fb-4ae5-8057-9eb14dc16465',1,'/content/Document/Brisbane MIND Provider List_AUGUST 2016(4).pdf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List_AUGUST 2016(4).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-21 07:23:37',0),(67066,'2021-04-19 22:02:30','2021-05-16 17:54:57','7e323920-4c3c-47e4-b51f-bbed338c675a',1,'/events/suicide-prevention-australia-symposium-2021','','3.238.235.155','CCBot/2.0 (https://commoncrawl.org/faq/)','Template not found: events/suicide-prevention-australia-symposium-2021','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,48,'2021-05-16 17:54:57',0),(67067,'2021-04-19 22:03:28','2021-05-11 14:45:55','0898983e-bcf5-402f-af21-414c7bb9c227',1,'/page/news-and-events/latest-news/a-free-mental-health-program-currently-being-trialled-in-north-brisbane-aims-to-reveal-if-a-peer-led-group-model-could-deliver-improved-health-outcomes-for-mums-experiencing-mild-postnatal-depression-or-anxiety/','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/a-free-mental-health-program-currently-being-trialled-in-north-brisbane-aims-to-reveal-if-a-peer-led-group-model-could-deliver-improved-health-outcomes-for-mums-experiencing-mild-postnatal-depression-o…','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,22,'2021-05-11 14:45:55',0),(67068,'2021-04-19 22:13:19','2021-05-13 15:09:49','80428550-ba2a-43a2-aeb1-9cf3db85f83e',1,'/content/Image/Programs/Indigenous health/Deadly Choices bus back (cropped).jpg','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Programs/Indigenous health/Deadly Choices bus back (cropped).jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-13 15:09:49',0),(67069,'2021-04-19 22:35:08','2021-05-11 06:05:43','b5179cfe-96cf-43c1-bbe7-96f6051bdb24',1,'/content/Document/Pathways/ENT_allergic rhinitis_antihistamine table_link.pdf','','207.46.13.54','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/ENT_allergic rhinitis_antihistamine table_link.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-11 06:05:43',0),(67070,'2021-04-19 22:40:07','2021-04-19 22:40:07','e71edb89-96e1-4d28-89ff-6790478e4261',1,'/page/health-professionals/Local Positions Vacant/senior-medical-educator-required---medical-protection-society/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/senior-medical-educator-required---medical-protection-society','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 22:40:07',0),(67071,'2021-04-19 22:46:33','2021-05-13 17:07:08','3af80436-93ff-4ed0-ae55-b37f5be9cd6e',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---windsor/','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---windsor','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-13 17:07:08',0),(67072,'2021-04-19 22:54:57','2021-04-29 22:25:30','d55498fb-deee-4288-98bb-c96f9898e2fb',1,'/page/news-and-events/events/upcoming/gynaecology-workshop','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/gynaecology-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-29 22:25:30',0),(67073,'2021-04-19 23:03:18','2021-05-09 00:24:05','33929072-9baf-4ead-8855-d0b031cd0ee9',1,'/content/Document/Network Link Advertising Specifications 2017-18.docx','','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/Network Link Advertising Specifications 2017-18.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 00:24:05',0),(67074,'2021-04-19 23:15:52','2021-05-09 16:56:19','76f8f6c5-c5c7-45a2-a74f-68b75a4648d6',1,'/page/news-and-events/events/upcoming/course-in-wound-closure','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/course-in-wound-closure','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-09 16:56:19',0),(67075,'2021-04-19 23:24:07','2021-04-19 23:24:07','6bcc5819-f868-4dd7-887c-b0e5996a376b',1,'/content/Image/News Images/brisbane north safe space network banner.jpg','','66.249.66.155','Googlebot-Image/1.0','Template not found: content/Image/News Images/brisbane north safe space network banner.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-19 23:24:07',0),(67076,'2021-04-19 23:24:59','2021-05-12 05:15:39','f52a7b1d-5381-4859-a211-a4018c98d50f',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---albany-creek/','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---albany-creek','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-12 05:15:39',0),(67077,'2021-04-19 23:26:27','2021-05-08 19:16:51','0314961d-6aa2-4e78-bb62-0dd39b852e25',1,'/page/publications/newsletters/network-link','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/newsletters/network-link','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-08 19:16:51',0),(67078,'2021-04-19 23:30:11','2021-05-04 10:17:22','641f85f9-acb9-4fe0-b734-4725d80641ec',1,'/page/health-professionals/Local Positions Vacant/vr-gp---banksia-beach-medical/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/vr-gp---banksia-beach-medical','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-04 10:17:22',0),(67079,'2021-04-19 23:39:26','2021-04-26 02:39:29','1be46617-5693-467f-a634-4f637c5ad18b',1,'/page/news-and-events/latest-news/covid-19-information/covid-19-news-updates/june-2020','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/covid-19-information/covid-19-news-updates/june-2020','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-26 02:39:29',0),(67080,'2021-04-19 23:46:34','2021-05-05 00:46:19','06910670-126c-442d-9c70-c4730319c39f',1,'/page/news-and-events/latest-news/general-practice-staff-upskill-with-medical-assisting-studies','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/general-practice-staff-upskill-with-medical-assisting-studies','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-05 00:46:19',0),(67081,'2021-04-19 23:52:07','2021-05-12 09:39:50','b78831a4-a80c-424f-868a-99b8efcee626',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 09:39:50',0),(67082,'2021-04-19 23:54:19','2021-05-11 09:40:27','06bea6ba-e59c-4ba4-b9d0-986b3a481831',1,'/page/health-professionals/digital-health','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/digital-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-11 09:40:27',0),(67083,'2021-04-19 23:58:28','2021-05-18 15:22:18','b35877a9-a4a1-4dce-95e9-09719bd51cbf',1,'/page/news-and-events/latest-news/eoi-open-for-chronic-wound-governance-group/','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/eoi-open-for-chronic-wound-governance-group','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-18 15:22:18',0),(67084,'2021-04-20 00:03:39','2021-04-20 00:03:39','29d06f1b-2789-4d2c-9545-be9630f62d9b',1,'/covid-19Nundah','','70.39.129.100','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','Template not found: covid-19Nundah','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 00:03:39',0),(67085,'2021-04-20 00:08:45','2021-05-13 20:38:24','aefe9887-8f10-44f8-b7af-4c251c52308b',1,'/page/news-and-events/latest-news/healthpathways-now-mobile-friendly','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/healthpathways-now-mobile-friendly','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-13 20:38:24',0),(67086,'2021-04-20 00:10:56','2021-05-18 06:56:42','e0d5adc8-ab6a-4ab9-ae08-8db9e1f2cefa',1,'/content/Document/Events/2017_Metro North Maternity GP Alignment Program workshop.pdf','','40.77.167.35','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2017_Metro North Maternity GP Alignment Program workshop.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 06:56:42',0),(67087,'2021-04-20 00:15:22','2021-04-20 00:15:22','ac7762a0-2fdf-4ec4-9b07-9aa0384ec878',1,'/page/privacy-policy.','','77.67.20.136','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','Template not found: page/privacy-policy.','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 00:15:22',0),(67088,'2021-04-20 00:24:16','2021-05-07 18:01:20','2a864214-453f-4690-8707-004afe47e7c0',1,'/content/Media/Genie 5.2/MNHHS Maternity Referral v5.2_Genie.4W7','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Media/Genie 5.2/MNHHS Maternity Referral v5.2_Genie.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-07 18:01:20',0),(67089,'2021-04-20 00:26:17','2021-05-16 19:19:36','6d6e5808-96d5-40f6-9f90-1401bf63b455',1,'/content/Document/FLYER ACP Seminar QLD 031018.pdf','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/FLYER ACP Seminar QLD 031018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 19:19:36',0),(67090,'2021-04-20 00:34:22','2021-05-03 16:43:13','2a009619-08ff-4ca4-9c48-a5e6c1d9532b',1,'/content/Document/Media Releases/NewAccess Brisbane North MR for SHOW BAG.pdf','','62.138.18.39','Linguee Bot (http://www.linguee.com/bot; bot@linguee.com)','Template not found: content/Document/Media Releases/NewAccess Brisbane North MR for SHOW BAG.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-03 16:43:13',0),(67091,'2021-04-20 00:37:09','2021-04-29 23:39:27','0d4ce2a3-bf05-4ee6-bbec-004cfa95406e',1,'/page/news-and-events/events/upcoming/queensland-alliance-for-mental-health-conference','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/queensland-alliance-for-mental-health-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-29 23:39:27',0),(67092,'2021-04-20 00:40:19','2021-05-04 09:00:46','2c7534fe-2cad-4f81-904f-155128b0fe1a',1,'/content/Document/TOR_CC_FINALPHN.PDF','','66.249.68.95','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/TOR_CC_FINALPHN.PDF','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-04 09:00:46',0),(67093,'2021-04-20 00:43:29','2021-05-18 03:05:08','120f9761-8401-400f-a2fd-968c04a2ae18',1,'/events/pallipharm-workshop-2','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/pallipharm-workshop-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 03:05:08',0),(67094,'2021-04-20 00:43:39','2021-05-12 03:09:12','580f9702-e950-46cb-9ad7-fb5049e364ef',1,'/content/Document/Coronary artery spasm node 51.pdf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Coronary artery spasm node 51.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-12 03:09:12',0),(67095,'2021-04-20 00:54:52','2021-05-08 16:54:41','50cb290a-ae26-4c60-a3e3-bddc3d3db553',1,'/page/news-and-events/events/upcoming/electronic-prescribing-–-update-for-prescribers','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/electronic-prescribing-–-update-for-prescribers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-08 16:54:41',0),(67096,'2021-04-20 01:02:45','2021-05-01 07:40:43','e94ae20a-0e72-48bb-8741-dd8a0dbcf849',1,'/content/Document/Events/2019/AAWP Core Flexible AH RESUBMIT_190208 WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/AAWP%20Core%20Flexible%20AH%20RESUBMIT_190208%20WEB.pdf','34.94.5.119','Go-http-client/1.1','Template not found: content/Document/Events/2019/AAWP Core Flexible AH RESUBMIT_190208 WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 07:40:43',0),(67097,'2021-04-20 01:06:36','2021-05-18 10:18:13','12311ae5-bf60-4077-af45-7df7aaa9018c',1,'/content/Image/Coloured light bulb.jpg','http://brisbanenorthphn.org.au/content/Image/Coloured%20light%20bulb.jpg','95.163.255.81','Mozilla/5.0 (compatible; Linux x86_64; Mail.RU_Bot/Img/2.0; +http://go.mail.ru/help/robots)','Template not found: content/Image/Coloured light bulb.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 10:18:13',0),(67098,'2021-04-20 01:09:28','2021-05-10 00:30:03','59eeb9dc-5b41-4fa9-9a12-80879f1bbf71',1,'/content/Document/Pathways/Complex chronic disease team eReferral.pdf','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/Complex chronic disease team eReferral.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-10 00:30:03',0),(67099,'2021-04-20 01:13:26','2021-04-22 04:39:18','f03b67ee-013e-4d5a-b707-34f5ab081378',1,'/page/news-and-events/events/archive/working-therapeutically-with-people-who-have-complex-trauma-histories/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/working-therapeutically-with-people-who-have-complex-trauma-histories','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-22 04:39:18',0),(67100,'2021-04-20 01:22:27','2021-05-16 04:45:11','c3ff54fc-72b8-491f-ba42-79be3a37f36f',1,'/page/health-professionals/MHAOD/funded-mental-health-services/low-intensity-mental-health-services/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/MHAOD/funded-mental-health-services/low-intensity-mental-health-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 04:45:11',0),(67101,'2021-04-20 01:42:25','2021-04-20 01:42:25','365cf2d7-8d32-4646-a7d7-17f1ee27d26b',1,'/lilitabsb/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: lilitabsb','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 01:42:25',0),(67102,'2021-04-20 02:05:37','2021-04-20 02:05:37','6b1323ee-be76-4dc8-8a8a-4ceed86e94ce',1,'/page/news-and-events/events/upcoming/new-clinical-practice-recommendations-for-chronic-kidney-disease','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/new-clinical-practice-recommendations-for-chronic-kidney-disease','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 02:05:37',0),(67103,'2021-04-20 02:12:25','2021-05-03 17:39:32','bdd69f3b-8b43-4cca-ae80-0963059f0d50',1,'/page/news-and-events/events/upcoming/hepatitis-c-case-finding-for-practice-nurses','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/hepatitis-c-case-finding-for-practice-nurses','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-03 17:39:32',0),(67104,'2021-04-20 02:18:49','2021-04-30 00:03:43','4c741c9f-485f-4e7f-9e44-394daa39b3c4',1,'/page/news-and-events/latest-news/humanservices.gov.au/hpos','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/humanservices.gov.au/hpos','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-30 00:03:43',0),(67105,'2021-04-20 02:21:58','2021-05-10 16:30:29','ea0280fc-8cc3-4e8b-8c7e-74c238913ccb',1,'/content/Document/Templates/TCC/Teamcare Referral ZM 130604.rtf','','66.249.69.61','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Templates/TCC/Teamcare Referral ZM 130604.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-10 16:30:29',0),(67106,'2021-04-20 02:31:30','2021-04-26 21:19:17','fff4226b-b38e-4dc1-aff0-78d532215333',1,'/page/news-and-events/latest-news/postnatal-wellbeing-program-recognises-that-life-isn’t-always-peachy','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/postnatal-wellbeing-program-recognises-that-life-isn’t-always-peachy','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-26 21:19:17',0),(67107,'2021-04-20 02:38:58','2021-05-06 13:06:36','2df3d6af-aef4-4254-8c96-389298bac39e',1,'/content/Document/New Practitioner Induction Kit 170711.pdf','http://www.brisbanenorthphn.org.au/content/Document/New%20Practitioner%20Induction%20Kit%20170711.pdf','35.186.188.225','Go-http-client/1.1','Template not found: content/Document/New Practitioner Induction Kit 170711.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-06 13:06:36',0),(67108,'2021-04-20 02:50:15','2021-05-16 07:38:15','b56910bf-b393-4760-8557-e559b25be0e6',1,'/page/news-and-events/latest-news/gp-breakfast-briefing/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/gp-breakfast-briefing','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 07:38:15',0),(67109,'2021-04-20 02:52:20','2021-04-24 07:56:19','04f27cd5-c812-45c4-9bb1-df1100ac3c1e',1,'/page/health-professionals/Local Positions Vacant/general-practice-staff---mango-hill/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/general-practice-staff---mango-hill','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 07:56:19',0),(67110,'2021-04-20 02:55:58','2021-05-16 12:01:23','961a9fa5-9827-4a27-861f-3e0c3beb3682',1,'/page/news-and-events/latest-news/after-hours-medical-help-made-easier','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/after-hours-medical-help-made-easier','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 12:01:23',0),(67111,'2021-04-20 03:22:15','2021-05-05 20:48:46','b37d86d8-7164-4caf-99bf-52c70c63c58f',1,'/content/Image/Banner_GOAS launch_170630.jpg','','108.174.2.217','LinkedInBot/1.0 (compatible; Mozilla/5.0; Apache-HttpClient +http://www.linkedin.com)','Template not found: content/Image/Banner_GOAS launch_170630.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-05 20:48:46',0),(67112,'2021-04-20 03:22:15','2021-05-05 20:48:46','acf5591d-35e2-4760-81e6-cd9a76c2848c',1,'/content/Image/Page Banners/BNPHN_077.jpg','','108.174.2.217','LinkedInBot/1.0 (compatible; Mozilla/5.0; Apache-HttpClient +http://www.linkedin.com)','Template not found: content/Image/Page Banners/BNPHN_077.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-05 20:48:46',0),(67113,'2021-04-20 03:36:05','2021-05-14 02:32:38','2b0635d0-4ff4-4262-9add-c8d6bcd911b3',1,'/jobs/general-manager-health-alliance','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/general-manager-health-alliance','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-14 02:32:38',0),(67114,'2021-04-20 03:53:52','2021-05-18 04:45:23','21a87813-6314-49ce-a4cd-1dbb639c2f79',1,'/page/publications/recovery/recovery-october-2019','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/recovery/recovery-october-2019','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-18 04:45:23',0),(67115,'2021-04-20 03:57:01','2021-05-04 01:26:46','75c75c15-b49d-49f0-952e-4567dc9e1398',1,'/page/health-professionals/multicultural-health/refugee-health-connect','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/multicultural-health/refugee-health-connect','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-04 01:26:46',0),(67116,'2021-04-20 04:01:38','2021-04-22 13:20:41','ea933a15-9a0e-4408-a94d-ff7663ed5b09',1,'/content/Document/Pathways/ccd referal form.pdf','','40.77.167.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/ccd referal form.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-22 13:20:41',0),(67117,'2021-04-20 04:03:39','2021-04-20 04:03:39','87af5f0a-d311-4299-97b1-4d59b9af318e',1,'/content/Document/Templates/4.7/MNHHS Paediatric PractiX v4_7.doc','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.7/MNHHS Paediatric PractiX v4_7.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 04:03:39',0),(67118,'2021-04-20 04:17:29','2021-04-20 04:17:29','1170c274-7f6a-47d9-8831-db907a225316',1,'/page/publications/recovery/recovery---march-2020/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/publications/recovery/recovery---march-2020','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 04:17:29',0),(67119,'2021-04-20 04:25:26','2021-05-13 08:02:01','ff5ced19-9544-4dde-b7c9-e5c5e3d63d98',1,'/events/children-and-adolescent-mental-health-mythbusting-unravelling-the-mystery-of-services-and-support-in-brisbane-north-moreton-bay-regions','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/children-and-adolescent-mental-health-mythbusting-unravelling-the-mystery-of-services-and-support-in-brisbane-north-moreton-bay-regions','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 08:02:01',0),(67120,'2021-04-20 04:31:55','2021-05-14 09:35:04','2421beb1-5e5b-40ea-881f-ecd8feca1411',1,'/content/Document/MHAOD_Recovery_newsletter_June 2018_FINAL_lowres.pdf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/MHAOD_Recovery_newsletter_June 2018_FINAL_lowres.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 09:35:04',0),(67121,'2021-04-20 04:41:57','2021-04-20 04:41:57','217c8937-08c8-43fd-ade7-280dee9dc953',1,'/content/Document/Brisbane MIND Provider List June 2017(2).pdf','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List June 2017(2).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 04:41:57',0),(67122,'2021-04-20 04:44:17','2021-05-05 05:57:33','dc7c2847-5a4b-4da3-a720-9a3bde4139f4',1,'/page/home/featurettes/directories/','','78.46.61.245','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/home/featurettes/directories','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-05 05:57:33',0),(67123,'2021-04-20 04:59:01','2021-05-18 04:09:00','c72176f2-0284-496a-9f43-56d150671ddd',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---wavell-heights','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---wavell-heights','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 04:09:00',0),(67124,'2021-04-20 05:02:16','2021-04-20 05:02:16','76201ce6-f603-43f7-910d-2796c2a90040',1,'/content/Document/Aged and community care/EOI for GPs_V5 JWB ME JLH SG 131118 (002).docx','http://www.brisbanenorthphn.org.au/content/Document/Aged%20and%20community%20care/EOI%20for%20GPs_V5%20JWB%20ME%20JLH%20SG%20131118%20(002).docx','34.67.126.137','Go-http-client/1.1','Template not found: content/Document/Aged and community care/EOI for GPs_V5 JWB ME JLH SG 131118 (002).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 05:02:16',0),(67125,'2021-04-20 05:04:23','2021-04-20 05:04:23','f35ab008-4378-452b-a338-d3cc64e43fea',1,'/content/Document/Events/2019/Metro North Health Forum/Event Parking Map - Royal ICC The Pavilion with prices.pdf','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2019/Metro North Health Forum/Event Parking Map - Royal ICC The Pavilion with prices.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 05:04:23',0),(67126,'2021-04-20 05:09:59','2021-05-09 10:38:12','41114489-2c43-4745-b2c8-67184fbe647e',1,'/content/Document/Aged and community care/A12_ Final 131017 GOAS 3-month Review.docx','http://www.brisbanenorthphn.org.au/content/Document/Aged%20and%20community%20care/A12_%20Final%20131017%20GOAS%203-month%20Review.docx','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/Aged and community care/A12_ Final 131017 GOAS 3-month Review.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-09 10:38:12',0),(67127,'2021-04-20 05:24:30','2021-05-15 21:08:17','af057338-9698-4ebc-b81e-c4c6af166180',1,'/jobs/psychologist-1','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/psychologist-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 21:08:17',0),(67128,'2021-04-20 05:34:03','2021-05-04 00:16:51','a7346eb6-23c6-4d46-b767-aa7c33446ea6',1,'/android-chrome-512x512.png','https://brisbanenorthphn.org.au/','27.33.2.36','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','Template not found: android-chrome-512x512.png','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-04 00:16:51',0),(67129,'2021-04-20 05:47:07','2021-05-17 06:09:11','f7da4c92-911c-48f7-9196-e741f4e46443',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/brisbane-mind-information-for-referrers/','','103.87.254.78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services/brisbane-mind-information-for-referrers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-17 06:09:11',0),(67130,'2021-04-20 06:03:28','2021-05-12 15:47:01','198415d0-92e8-4434-a0b8-504fcb5a7233',1,'/jobs/general-practitioner-sandstone-point','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/general-practitioner-sandstone-point','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-12 15:47:01',0),(67131,'2021-04-20 06:04:08','2021-04-20 06:04:08','73420c6a-2002-4e90-822f-513afec733f3',1,'/content/Document/Hepatitis Caboolture_application_form.pdf','','66.249.66.154','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/Hepatitis Caboolture_application_form.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 06:04:08',0),(67132,'2021-04-20 06:30:48','2021-05-18 05:11:40','dfd4f4e1-6ad6-42ec-8cfd-8f5e606d8d29',1,'/content/Document/FIN_Paediatric Services Directory Overview v1_0_March 2017.docx','','49.197.143.34','Microsoft Office Word/2.49.510 (iOS/14.4.2; Phone; en-GB; AppStore; Apple/iPhone13,4)','Template not found: content/Document/FIN_Paediatric Services Directory Overview v1_0_March 2017.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,32,'2021-05-18 05:11:40',0),(67133,'2021-04-20 06:31:39','2021-04-30 15:33:57','234b3e69-912b-48e2-a6fe-ba12152c6e3d',1,'/page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health-september-2017','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health-september-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-30 15:33:57',0),(67134,'2021-04-20 06:46:56','2021-05-04 07:05:44','1010d7a7-b3b3-458a-8979-9aa3a0084f70',1,'/page/news-and-events/latest-news/facilitating-access-for-aboriginal-and-torres-strait-islander-communities','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/facilitating-access-for-aboriginal-and-torres-strait-islander-communities','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-04 07:05:44',0),(67135,'2021-04-20 06:50:45','2021-05-06 19:07:01','663794b2-a3a1-4332-b2c6-4e2992efb534',1,'/page/news-and-events/latest-news/enhancing-the-care-of-patients-with-haematological-conditions','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/enhancing-the-care-of-patients-with-haematological-conditions','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 19:07:01',0),(67136,'2021-04-20 07:04:40','2021-05-05 02:58:20','c09062a9-3a89-40d4-854e-fc5ec73933fb',1,'/page/news-and-events/events/upcoming/resilience-and-approaches-to-self-care','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/resilience-and-approaches-to-self-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-05 02:58:20',0),(67137,'2021-04-20 07:12:29','2021-05-17 18:28:18','b3bcb9fc-4d9e-430b-a116-ca7d4daec87a',1,'/page/news-and-events/events/upcoming/keeping-the-business-afloat','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/keeping-the-business-afloat','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-17 18:28:18',0),(67138,'2021-04-20 07:18:41','2021-05-12 06:23:41','d6d47e15-e949-46b4-a74d-68e444b29229',1,'/content/Document/Brisbane MIND Group Listing 2018 Jan to Jul V2.pdf','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Brisbane MIND Group Listing 2018 Jan to Jul V2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 06:23:41',0),(67139,'2021-04-20 07:19:12','2021-04-20 07:19:12','93b2037e-ac8b-4e91-aae3-2a90e9af0dfe',1,'/page/news-and-events/events/upcoming/working-with-adult-survivors-of-complex-trauma/','','207.46.13.38','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/working-with-adult-survivors-of-complex-trauma','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 07:19:12',0),(67140,'2021-04-20 07:22:37','2021-05-18 19:18:24','eee55800-5418-4dc6-923e-c1ec3b7de480',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---kallangur','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---kallangur','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-18 19:18:24',0),(67141,'2021-04-20 07:28:37','2021-05-17 06:44:35','01fe6b32-2cb5-4daa-9e8b-6f379b1cd3f6',1,'/events/case-planning-and-case-notes-for-social-work-practice-2-half-day-workshops','','40.77.167.15','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/case-planning-and-case-notes-for-social-work-practice-2-half-day-workshops','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 06:44:35',0),(67142,'2021-04-20 07:34:49','2021-05-17 17:17:40','5353356b-d465-4d77-bd9b-f590dfb3afb2',1,'/events/your-practice-your-data','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/your-practice-your-data','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-17 17:17:40',0),(67143,'2021-04-20 07:37:26','2021-05-17 17:32:56','9141a1d7-3950-478a-b55d-dc5a06a13a9e',1,'/page/publications/partners-in-health/partners-in-health-march-2018','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/partners-in-health-march-2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-17 17:32:56',0),(67144,'2021-04-20 07:40:17','2021-04-27 08:58:52','1fae9b40-5e50-4df2-8f45-2567745f6d2f',1,'/content/Document/Reports/FINAL_REP_HNA 2019-22_181113.docx','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Reports/FINAL_REP_HNA 2019-22_181113.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-27 08:58:52',0),(67145,'2021-04-20 07:44:48','2021-05-07 12:17:54','2add8bad-9234-4fd6-9a3a-2fce906c9084',1,'/content/Document/Planning/2015-16HNA_SubmissiontoDoH.pdf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Planning/2015-16HNA_SubmissiontoDoH.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-07 12:17:54',0),(67146,'2021-04-20 07:50:23','2021-04-20 07:50:23','b132971d-6da1-49b0-9914-1f0e54864d34',1,'/content/Document/Network Link_05_May_WEB.pdf','','66.249.66.154','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/Network Link_05_May_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 07:50:23',0),(67147,'2021-04-20 07:58:44','2021-05-02 06:36:05','426603f6-275c-4e9e-bf76-660a4d58659a',1,'/content/Document/March North workshop flyer 2016.pdf','http://www.brisbanenorthphn.org.au/content/Document/March%20North%20workshop%20flyer%202016.pdf','34.94.141.43','Go-http-client/1.1','Template not found: content/Document/March North workshop flyer 2016.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-02 06:36:05',0),(67148,'2021-04-20 08:01:00','2021-04-20 08:01:00','0bb95d0e-2f2d-4e8e-8279-dbc01ac43991',1,'/content/Image/Page Banners/Banner_GPandpatient.jpg','','173.252.87.9','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: content/Image/Page Banners/Banner_GPandpatient.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 08:01:00',0),(67149,'2021-04-20 08:12:22','2021-05-16 01:14:51','39880d37-f048-49ad-800a-27cf19f49a4f',1,'/page/news-and-events/latest-news/metro-north-health-forum-talking-bout-a-revolution-or-evolution','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/metro-north-health-forum-talking-bout-a-revolution-or-evolution','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 01:14:51',0),(67150,'2021-04-20 08:39:48','2021-04-20 08:39:48','e5fdbdb6-dc92-41ae-9ae1-255236725e23',1,'/content/Document/Reporting to Licencing Authority.pdf','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Reporting to Licencing Authority.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 08:39:48',0),(67151,'2021-04-20 08:40:59','2021-04-20 08:40:59','a897e849-9da6-466f-ab7d-0be63f12febf',1,'/static../.git/config','','91.241.19.175','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:55.0) Gecko/20100101 Firefox/55','Template not found: static../.git/config','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 08:40:59',0),(67152,'2021-04-20 08:41:29','2021-04-20 08:41:29','70d168ac-d146-4573-ab80-f311faad23e8',1,'/img../.git/config','','91.241.19.175','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:55.0) Gecko/20100101 Firefox/55','Template not found: img../.git/config','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 08:41:29',0),(67153,'2021-04-20 08:41:39','2021-04-20 08:41:39','6b841c89-2376-42d2-bdf2-f503dbee007b',1,'/css../.git/config','','91.241.19.175','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:55.0) Gecko/20100101 Firefox/55','Template not found: css../.git/config','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 08:41:39',0),(67154,'2021-04-20 08:41:50','2021-04-20 08:41:50','d0d7662d-5bda-42d3-8e19-f8f78849ccf7',1,'/assets../.git/config','','91.241.19.175','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:55.0) Gecko/20100101 Firefox/55','Template not found: assets../.git/config','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 08:41:50',0),(67155,'2021-04-20 08:42:00','2021-04-20 08:42:00','80600662-c9c0-42bd-b21e-8a95335c7683',1,'/content../.git/config','','91.241.19.175','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:55.0) Gecko/20100101 Firefox/55','Template not found: content../.git/config','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 08:42:00',0),(67156,'2021-04-20 08:42:20','2021-04-20 08:42:20','1d0acde0-7773-42ee-bed2-36d94836117e',1,'/media../.git/config','','91.241.19.175','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:55.0) Gecko/20100101 Firefox/55','Template not found: media../.git/config','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 08:42:20',0),(67157,'2021-04-20 08:42:30','2021-04-20 08:42:30','23509593-171d-4c0b-b78a-cf8ba4bb0caa',1,'/lib../.git/config','','91.241.19.175','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:55.0) Gecko/20100101 Firefox/55','Template not found: lib../.git/config','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 08:42:30',0),(67158,'2021-04-20 08:44:58','2021-04-20 08:44:58','54a38455-7d11-4882-8211-d199d47d5e4a',1,'/page/news-and-events/events/upcoming/aod-clinical-assessment/','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/aod-clinical-assessment','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 08:44:58',0),(67159,'2021-04-20 08:48:49','2021-05-18 06:55:11','b55b0454-5253-4120-825b-4286faeca462',1,'/page/news-and-events/latest-news/enrolments-open-for-medical-assisting-course/','','168.119.69.91','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','Template not found: page/news-and-events/latest-news/enrolments-open-for-medical-assisting-course','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-18 06:55:11',0),(67160,'2021-04-20 08:49:49','2021-05-04 07:08:24','ca22b1b1-cdf4-46f1-9159-31b64586e0c8',1,'/content/Document/Templates/ACAT Referral Form.pdf','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Templates/ACAT Referral Form.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-04 07:08:24',0),(67161,'2021-04-20 08:51:48','2021-04-20 08:51:48','37386be9-fd9d-4e20-b882-c12124f726a9',1,'/content/Document/DRA_2016_AOD_Needs Assessment.docx','http://www.brisbanenorthphn.org.au/content/Document/DRA_2016_AOD_Needs%20Assessment.docx','34.121.158.2','Go-http-client/1.1','Template not found: content/Document/DRA_2016_AOD_Needs Assessment.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 08:51:48',0),(67162,'2021-04-20 08:55:54','2021-04-20 08:55:54','66030809-4322-4ce8-8201-a0bbeb6d867e',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/brisbane-mind-information-for-referrers/resources/','','207.46.13.74','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services/brisbane-mind-information-for-referrers/resources','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 08:55:54',0),(67163,'2021-04-20 08:59:03','2021-05-16 07:41:19','dad9c0ca-0f25-4fbc-95ef-06b40900e338',1,'/page/news-and-events/latest-news/healthpathways-now-mobile-friendly/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/healthpathways-now-mobile-friendly','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-16 07:41:19',0),(67164,'2021-04-20 08:59:28','2021-04-22 04:20:55','f94c5529-09d4-4a24-92b6-af827a3007cd',1,'/content/Document/brisbanemind_minimumdataset.pdf','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/brisbanemind_minimumdataset.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-22 04:20:55',0),(67165,'2021-04-20 09:04:45','2021-05-16 07:43:54','1e95eb2b-f68b-48f1-95df-7a7cb10043ab',1,'/page/news-and-events/latest-news/local-campaign-promotes-screening-for-chronic-disease-risk/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/local-campaign-promotes-screening-for-chronic-disease-risk','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-16 07:43:54',0),(67166,'2021-04-20 09:13:44','2021-05-08 07:06:53','d8e563b4-241d-48a8-9aae-ad9dededa46d',1,'/yearinreview/2017-18/improving-outcomes-for-people-with-chronic-conditions','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/improving-outcomes-for-people-with-chronic-conditions','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-08 07:06:53',0),(67167,'2021-04-20 09:37:44','2021-05-14 22:29:16','0111cbc3-b803-4c98-a89c-19ee178d148f',1,'/content/Document/Planning/FINAL_AAWP_primary mental health care_170717 WEBSITE.pdf','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Planning/FINAL_AAWP_primary mental health care_170717 WEBSITE.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-14 22:29:16',0),(67168,'2021-04-20 10:02:33','2021-04-20 10:02:33','19badd2c-0ce0-4ab3-9d2b-7a8a916e11b3',1,'/page/news-and-events/events/upcoming/annual-brisbane-north-','','66.249.66.155','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.127 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/annual-brisbane-north-','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 10:02:33',0),(67169,'2021-04-20 10:17:51','2021-04-20 10:17:51','921a5cf0-777b-4242-be09-16ad852b1862',1,'/content/Document/Templates/V5.1 Jan 2018/Best Practice/MNHHS TPCH Ref v5_1_1 BP.rtf','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/V5.1 Jan 2018/Best Practice/MNHHS TPCH Ref v5_1_1 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 10:17:51',0),(67170,'2021-04-20 10:40:30','2021-05-16 07:54:37','b7f70b81-6c7e-49e5-8634-eeef746dff9f',1,'/page/publications/reports-and-plans/activity-plans/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/publications/reports-and-plans/activity-plans','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-16 07:54:37',0),(67171,'2021-04-20 10:42:39','2021-05-18 02:58:35','a41872e1-ab3d-45cb-9ce3-a9ba61974e3e',1,'/page/news-and-events/latest-news/helping-practices-meet-quality-improvement-milestones/','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/helping-practices-meet-quality-improvement-milestones','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 02:58:35',0),(67172,'2021-04-20 11:10:25','2021-05-14 09:54:06','8f8dbac7-41bd-45ac-9fd4-1e920386e457',1,'/content/Document/FAQs _ New Brisbane MIND Software 181011(1).pdf','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/FAQs _ New Brisbane MIND Software 181011(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-14 09:54:06',0),(67173,'2021-04-20 11:40:34','2021-05-10 00:18:27','a5462cb2-021c-481d-99a8-4dad1b87e36b',1,'/covid-19.','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: covid-19.','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-10 00:18:27',0),(67174,'2021-04-20 11:40:38','2021-05-08 18:28:26','b3ec9e89-9236-4252-a081-faf2a5f5787c',1,'/news/local-practice-manager-receives-early-jab-as-phase-1b-rolls-out','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: news/local-practice-manager-receives-early-jab-as-phase-1b-rolls-out','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-08 18:28:26',1),(67175,'2021-04-20 11:43:01','2021-05-01 03:41:36','0798bcb6-d518-45b9-bab9-e5d40f9eed82',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/brisbane-mind-information-for-referrers/eligibility-criteria/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services/brisbane-mind-information-for-referrers/eligibility-criteria','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 03:41:36',0),(67176,'2021-04-20 11:45:23','2021-05-09 03:19:33','3d7ec443-86c8-490f-8129-7ce0db4fbf95',1,'/page/publications/partners-in-health/february-2016/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/publications/partners-in-health/february-2016','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-09 03:19:33',0),(67177,'2021-04-20 11:47:27','2021-04-21 22:24:40','5100d332-0f63-4fdb-b902-3ef02d213b30',1,'/.git//index','','92.38.172.16','Mozilla/5.0 (iPhone; CPU iPhone OS 6_0 like Mac OS X)','Template not found: .git/index','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-21 22:24:40',0),(67178,'2021-04-20 11:48:56','2021-04-20 11:48:56','3b929e0c-448b-4400-aa3e-30375794262e',1,'/page/news-and-events/latest-news/a-quick-pip-qi-update','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/a-quick-pip-qi-update','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 11:48:56',0),(67179,'2021-04-20 12:01:07','2021-04-23 08:30:21','89643c75-9a03-4d80-943c-0b83d5c422c8',1,'/content/Document/SEQ%20Murri%20Service%20Directory%20v4_4%20January%202017.pdf','http://www.brisbanenorthphn.org.au/content/Document/SEQ%2520Murri%2520Service%2520Directory%2520v4_4%2520January%25202017.pdf','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/SEQ Murri Service Directory v4_4 January 2017.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-23 08:30:21',0),(67180,'2021-04-20 12:48:43','2021-05-12 17:13:52','533e08e6-671a-4b01-9da6-a157b6e65ea3',1,'/content/Document/Media Releases/151116 - Clinical and community advisory bodies get to work.pdf','','168.119.69.91','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.67 Safari/537.36','Template not found: content/Document/Media Releases/151116 - Clinical and community advisory bodies get to work.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-12 17:13:52',0),(67181,'2021-04-20 12:57:21','2021-04-26 13:43:13','c57c7ba1-a113-4163-ab72-c2f23de35be1',1,'/content/Document/Templates/MNHHS COHD MD v6_1.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/MNHHS%20COHD%20MD%20v6_1.rtf','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/Templates/MNHHS COHD MD v6_1.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-26 13:43:13',0),(67182,'2021-04-20 12:59:03','2021-05-09 12:36:44','965c0feb-a34a-4360-a4aa-0211f1048d49',1,'/content/Document/Network Link_11_November_FINAL_WEB.pdf','','178.63.51.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.67 Safari/537.36','Template not found: content/Document/Network Link_11_November_FINAL_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-09 12:36:44',0),(67183,'2021-04-20 13:25:23','2021-04-20 13:25:23','fc2031d7-4d16-4620-ad53-a22a90f137c8',1,'/hopfully404','','165.232.157.33','Nuclei - Open-source project (github.com/projectdiscovery/nuclei)','Template not found: hopfully404','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 13:25:23',0),(67184,'2021-04-20 13:49:18','2021-04-20 13:49:18','4872a103-d257-40ad-a33e-f34ea2a2a74c',1,'/page/news-and-events/events/archive/health-destination-pharmacy-launch/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/health-destination-pharmacy-launch','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 13:49:18',0),(67185,'2021-04-20 13:50:38','2021-04-20 13:50:38','6685e481-0ee6-48b7-a22e-2556eedc0ede',1,'/content/Document/healthalert_stolenpbs.pdf','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/healthalert_stolenpbs.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 13:50:38',0),(67186,'2021-04-20 14:20:34','2021-04-20 14:20:34','d078aa88-9bfc-4fc1-a10b-c6c78b4733e5',1,'/page/health-professionals/Local Positions Vacant/practice-manager---albany-clinic/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/practice-manager---albany-clinic','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 14:20:34',0),(67187,'2021-04-20 14:22:43','2021-05-10 05:37:18','c3a20927-3f8c-4978-bba2-aa52e59f3e7e',1,'/content/Document/Templates/6.1/MNHHS Caboolture v6_1.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/MNHHS%20Caboolture%20v6_1.rtf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/MNHHS Caboolture v6_1.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-10 05:37:18',0),(67188,'2021-04-20 14:38:51','2021-04-20 14:38:51','52ea8c54-7755-47a9-831c-105ee81b4e84',1,'/events/mental-health-impacts-in-the-workplace','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/mental-health-impacts-in-the-workplace','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 14:38:51',0),(67189,'2021-04-20 14:54:07','2021-04-20 14:54:07','7fdb1e2e-819b-4fa9-9d56-a8fab29725e1',1,'/content/Media/GOAS','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Media/GOAS','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 14:54:07',0),(67190,'2021-04-20 14:59:29','2021-04-20 14:59:29','26ab3dff-885e-4b07-ae71-d2464907ea50',1,'/page/health-professionals/Local Positions Vacant/receptionist-required---taringa/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/receptionist-required---taringa','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 14:59:29',0),(67191,'2021-04-20 15:26:46','2021-05-17 07:20:16','87d170a8-5a5a-4a0e-9f03-cc879f93f52e',1,'/content/Document/Network Link/Network Link_7_July_2018_WEB.pdf','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Network Link/Network Link_7_July_2018_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-17 07:20:16',0),(67192,'2021-04-20 15:48:00','2021-05-16 10:30:34','05d8545d-2066-4505-9d2e-8dfbb1b8580c',1,'/jobs/exciting-new-practice-chapel-hill','','66.249.75.184','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: jobs/exciting-new-practice-chapel-hill','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 10:30:34',0),(67193,'2021-04-20 16:04:17','2021-05-13 17:11:27','85081a09-b6fa-4bf3-a2ba-ba3b4def0875',1,'/jobs/gp-required-for-pebble-beach-medical-centre','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/gp-required-for-pebble-beach-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-13 17:11:27',0),(67194,'2021-04-20 16:40:39','2021-05-18 12:05:31','04b5f816-37a9-4507-9265-e6b98e4a6c45',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---sandstone-point/','','157.55.39.23','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---sandstone-point','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-18 12:05:31',0),(67195,'2021-04-20 16:51:10','2021-05-05 07:17:22','3004de1f-364e-4040-b876-63a3af4825c1',1,'/content/Document/Primary care liaison/Specialists List_Paediatrics_6_2.pdf','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Primary care liaison/Specialists List_Paediatrics_6_2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-05 07:17:22',0),(67196,'2021-04-20 17:09:54','2021-05-04 18:07:45','40315417-7999-451b-b2d4-3f3b00532931',1,'/yearinreview/2017-18/wp-content/uploads/2018/11/Abbe-Anderson.jpg','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/wp-content/uploads/2018/11/Abbe-Anderson.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-04 18:07:45',0),(67197,'2021-04-20 17:20:22','2021-04-24 08:16:59','c248c1ac-f397-4545-bfec-b1f8921aafac',1,'/page/health-professionals/Local Positions Vacant/other-health-care-professional---go2-health/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/other-health-care-professional---go2-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 08:16:59',0),(67198,'2021-04-20 17:24:04','2021-05-18 10:15:10','2768075b-02a5-4284-9edb-63d5904b3b0f',1,'/page/publications/recovery/recovery---december-2019','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/recovery/recovery---december-2019','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-18 10:15:10',0),(67199,'2021-04-20 17:28:30','2021-05-03 18:43:42','8820a01e-6141-4d7e-9f71-58cce655d263',1,'/page/news-and-events/events/upcoming/foundation-for-trauma-informed-care-and-practice-level-1','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/foundation-for-trauma-informed-care-and-practice-level-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-03 18:43:42',0),(67200,'2021-04-20 17:51:20','2021-05-16 16:28:25','2d72251e-daa4-4a27-8888-103ccf00d0eb',1,'/admin/','http://brisbanenorthphn.org.au/admin/','132.148.165.43','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','Template not found: admin','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 16:28:25',0),(67201,'2021-04-20 17:51:22','2021-04-20 17:51:22','4549376b-351e-4c70-9de3-d15fa1450544',1,'/admin/login.php','','5.188.62.214','Mozilla/5.0 (Windows NT 6.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36','Template not found: admin/login.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 17:51:22',0),(67202,'2021-04-20 17:51:29','2021-04-20 17:51:29','220dc875-4881-4e07-98b4-f269a2df5038',1,'/admin/admin.php','','5.188.62.214','Mozilla/5.0 (Windows NT 6.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36','Template not found: admin/admin.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 17:51:29',0),(67203,'2021-04-20 17:51:42','2021-04-26 14:49:11','9dd9515b-5a91-4ddb-b6e1-c7500945a2cf',1,'/admin.php','https://brisbanenorthphn.org.au/admin.php','14.46.76.187','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','Template not found: admin.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-26 14:49:11',0),(67204,'2021-04-20 17:51:44','2021-04-20 17:51:44','9c0bae8e-ad5b-4af5-b25e-5e81b1b80fda',1,'/login','','5.188.62.214','Mozilla/5.0 (Windows NT 6.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36','Template not found: login','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 17:51:44',0),(67205,'2021-04-20 17:51:46','2021-04-20 17:51:46','b71e2ea3-3638-4e2e-a770-1aeec1a3a338',1,'/login.php','','5.188.62.214','Mozilla/5.0 (Windows NT 6.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36','Template not found: login.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 17:51:46',0),(67206,'2021-04-20 17:51:53','2021-04-20 17:51:53','884d9c45-c20b-4831-bd55-e8fad8692b77',1,'/adm/','','5.188.62.214','Mozilla/5.0 (Windows NT 6.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36','Template not found: adm','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 17:51:53',0),(67207,'2021-04-20 18:14:52','2021-05-11 17:52:00','c7fc8dcf-fcf0-47b0-b85b-23e84a904bd4',1,'/page/health-professionals/Local Positions Vacant/practice-nurse-manager---albany-creek','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse-manager---albany-creek','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-11 17:52:00',0),(67208,'2021-04-20 18:18:43','2021-05-12 17:17:59','ef39cb16-c734-4a1e-acbb-06180a4f9b2e',1,'/page/news-and-events/latest-news/flu-vaccine-urged-for-over-65s-and-indigenous-australians/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/latest-news/flu-vaccine-urged-for-over-65s-and-indigenous-australians','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-12 17:17:59',0),(67209,'2021-04-20 18:27:29','2021-04-20 18:27:29','a8be3e78-df90-46ff-b29a-e7face968141',1,'/content/Document/Templates/4.9/MNHHS TPCH Referral ZM v4_9.rtf','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.9/MNHHS TPCH Referral ZM v4_9.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 18:27:29',0),(67210,'2021-04-20 18:30:40','2021-05-11 04:34:05','092a7150-a852-44c9-b83a-838374c12214',1,'/page/health-professionals/Local Positions Vacant/counsellor---morayfield/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/counsellor---morayfield','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 04:34:05',0),(67211,'2021-04-20 19:17:06','2021-05-06 12:33:46','b2ab34a8-7e14-4708-be09-9f26874ec881',1,'/page/news-and-events/events/archive/covid-19-gp-education-online-advice-and-support-for-general-practice/','https://www.brisbanenorthphn.org.au/page/news-and-events/events/archive/covid-19-gp-education-online-advice-and-support-for-general-practice/','5.188.48.18','Mozilla/5.0 (Windows NT 10.0; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36 Edg/83.0.478.25','Template not found: page/news-and-events/events/archive/covid-19-gp-education-online-advice-and-support-for-general-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 12:33:46',0),(67212,'2021-04-20 19:30:12','2021-04-20 19:30:12','1de5c635-e894-48cb-b54d-48500c84a430',1,'/page/news-and-events/events/upcoming/engage-assess-respond-and-support-to-suicidal-young-people','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/engage-assess-respond-and-support-to-suicidal-young-people','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 19:30:12',0),(67213,'2021-04-20 19:33:31','2021-05-09 09:14:27','ada6eaa2-d66b-4488-bfff-fdd7dc2bd2a7',1,'/content/Document/From Qld Health/20190627 Health alert_Influenza antivirals.pdf','http://www.brisbanenorthphn.org.au/content/Document/From%20Qld%20Health/20190627%20Health%20alert_Influenza%20antivirals.pdf','35.233.203.41','Go-http-client/1.1','Template not found: content/Document/From Qld Health/20190627 Health alert_Influenza antivirals.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 09:14:27',0),(67214,'2021-04-20 19:36:55','2021-04-23 16:07:43','c32bb733-d639-4105-971c-a619c3dd1042',1,'/page/news-and-events/metro-north-health-forum/2018-metro-north-health-forum/record-crowd-expected-for-metro-north-health-forum','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/metro-north-health-forum/2018-metro-north-health-forum/record-crowd-expected-for-metro-north-health-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-23 16:07:43',0),(67215,'2021-04-20 19:40:06','2021-05-08 14:46:14','3857c3d1-dd72-45f2-8bf3-f95b521de6a4',1,'/content/Document/Templates/4.12/MD v4.12/MNHHS TPCH MD V4_12.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.12/MD%20v4.12/MNHHS%20TPCH%20MD%20V4_12.rtf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Templates/4.12/MD v4.12/MNHHS TPCH MD V4_12.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-08 14:46:14',0),(67216,'2021-04-20 20:08:29','2021-04-20 20:08:29','cba1ab1c-1f85-4a5f-8896-fb5087474f66',1,'/page/home/quicklinks/view-upcoming-events-for-health-care-professionals','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/quicklinks/view-upcoming-events-for-health-care-professionals','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 20:08:29',0),(67217,'2021-04-20 20:32:56','2021-04-22 23:21:03','34781f63-8276-4690-8d04-c95650fcfd5f',1,'/content/Document/Local_Link_23_Feb.pdf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Local_Link_23_Feb.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-22 23:21:03',0),(67218,'2021-04-20 20:39:40','2021-05-04 08:21:09','bf9d9cf7-5fb6-45b4-a080-8f591b79c4de',1,'/events/webinar-the-future-of-cvd-risk-assessment','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/webinar-the-future-of-cvd-risk-assessment','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-04 08:21:09',0),(67219,'2021-04-20 20:54:48','2021-05-09 17:04:50','48eab35c-e92f-4071-8164-5e9421932bb0',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/carers-and-consumers/eligibility-criteria','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services/carers-and-consumers/eligibility-criteria','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-09 17:04:50',0),(67220,'2021-04-20 21:03:49','2021-04-24 09:45:19','34424cd5-d665-4ad1-b215-2bfa0c3811fd',1,'/page/publications/partners-in-health/partners-in-health-september-2017/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/publications/partners-in-health/partners-in-health-september-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 09:45:19',0),(67221,'2021-04-20 21:39:37','2021-05-02 02:52:13','7bb8056a-ac41-4894-90b5-07b048cf16f0',1,'/content/Image/Yellow envelope(2).jpg','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Yellow envelope(2).jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-02 02:52:13',0),(67222,'2021-04-20 22:35:45','2021-05-14 06:18:13','f0ece774-5d12-4364-9894-632008d59a87',1,'/page/news-and-events/events/upcoming/supporting-and-communicating-with-the-bereaved/','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/supporting-and-communicating-with-the-bereaved','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-14 06:18:13',0),(67223,'2021-04-20 22:36:58','2021-04-20 22:36:58','e2b22fd2-b810-4b73-bfba-8fd9576be5fc',1,'/jobs/medical-receptionist-lutwyche','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/medical-receptionist-lutwyche','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-20 22:36:58',0),(67224,'2021-04-20 22:37:15','2021-05-17 18:53:18','711931b7-bc23-4ed8-a9e2-78dda2152b16',1,'/page/news-and-events/events/upcoming/cultural-awareness-training','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/cultural-awareness-training','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-17 18:53:18',0),(67225,'2021-04-20 22:37:40','2021-05-12 22:47:46','4feb538a-3fa6-4afb-8f84-ff7a602a63bf',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-with-special-interest-gpwsi-gastroenterology-and-hepatology/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-with-special-interest-gpwsi-gastroenterology-and-hepatology','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-12 22:47:46',0),(67226,'2021-04-20 23:04:00','2021-05-07 20:37:26','32e52d55-43bd-4044-875f-61dddbd54a67',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---narangba','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---narangba','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-07 20:37:26',0),(67227,'2021-04-20 23:21:51','2021-05-09 13:12:54','4a41b3c9-ba03-4aa8-a5a2-09e487980495',1,'/page/news-and-events/events/upcoming/dementia-essentials-providing-support-to-people-living-with-dementia-august-north-lakes/','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/dementia-essentials-providing-support-to-people-living-with-dementia-august-north-lakes','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 13:12:54',0),(67228,'2021-04-20 23:59:19','2021-05-11 17:39:33','d0bba84e-6556-4f6b-95c1-1485aac84787',1,'/content/Document/event_catheter.pdf','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/event_catheter.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 17:39:33',0),(67229,'2021-04-21 00:15:03','2021-04-21 00:15:03','252ca03b-60e3-49e7-97cb-d0b697e4000e',1,'/events/diabetes-nursing-management','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/diabetes-nursing-management','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 00:15:03',0),(67230,'2021-04-21 00:17:55','2021-05-09 16:50:54','530443ef-f4c4-4136-9e9c-ffaf3a5ec03c',1,'/page/news-and-events/latest-news/new-specialist-dementia-care-program-unit-for-brisbane-north','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/new-specialist-dementia-care-program-unit-for-brisbane-north','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-09 16:50:54',0),(67231,'2021-04-21 01:17:24','2021-05-03 15:02:42','ddc9750b-eca2-40a9-8711-6d57702fb785',1,'/page/news-and-events/latest-news/new-dementia-friendly-home-opens-in-bray-park','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/new-dementia-friendly-home-opens-in-bray-park','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-03 15:02:42',0),(67232,'2021-04-21 01:39:13','2021-05-07 21:46:37','3388d8d8-449d-4dfd-8e66-9e71f00fc119',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---dayboro/','','66.249.69.33','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---dayboro','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-07 21:46:37',0),(67233,'2021-04-21 01:48:57','2021-05-16 01:30:56','57b8c1de-51fc-4d21-8b6a-13fb36a7b55f',1,'/page/health-professionals/palliative-care/palliative-care-resources-launched-for-gps-in-north-brisbane-and-moreton-bay/','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/palliative-care/palliative-care-resources-launched-for-gps-in-north-brisbane-and-moreton-bay','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 01:30:56',0),(67234,'2021-04-21 02:27:53','2021-05-11 18:07:21','9114210d-7c5c-46fc-a243-38686e392613',1,'/page/news-and-events/events/upcoming/reproductive-medicine-education-for-gps-brisbane-masterclass-2018/','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/reproductive-medicine-education-for-gps-brisbane-masterclass-2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-11 18:07:21',0),(67235,'2021-04-21 02:30:39','2021-04-21 02:30:39','794ff46c-e08f-42bb-8b6e-8493fa1b7630',1,'/pin/238831586476872876/','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: pin/238831586476872876','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 02:30:39',0),(67236,'2021-04-21 02:38:27','2021-04-21 02:38:27','118cdb30-2f99-468f-9f98-76a6c649b54f',1,'/content/Document/report_needsasssement_1314.pdf','','207.46.13.181','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/report_needsasssement_1314.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 02:38:27',0),(67237,'2021-04-21 02:42:18','2021-04-21 02:42:18','3da727d0-fd81-4df9-b3f7-d0be47d171ed',1,'/page/news-and-events/events/archive/queensland-eating-disorder-service-queds-annual-forum/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/queensland-eating-disorder-service-queds-annual-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 02:42:18',0),(67238,'2021-04-21 02:46:35','2021-04-27 07:15:36','18a8c9e7-7257-48d5-8605-8f645e893300',1,'/page/health-professionals/Local Positions Vacant/clinical-psychologist-required---moreton-bay-medical-centre/','','40.77.167.21','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/clinical-psychologist-required---moreton-bay-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-27 07:15:36',0),(67239,'2021-04-21 02:54:48','2021-05-15 23:39:33','6bf93494-c1f0-4a41-b1be-bb5bf019e2a8',1,'/content/Image/Banner_alliedhealthcollaborative.jpg','','173.252.111.6','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: content/Image/Banner_alliedhealthcollaborative.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 23:39:33',0),(67240,'2021-04-21 02:55:36','2021-04-23 14:21:08','3d856a26-845f-4508-86a7-3c68ef726ab7',1,'/jobs/samford-valley-medical-centre-practice-manager','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/samford-valley-medical-centre-practice-manager','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-23 14:21:08',0),(67241,'2021-04-21 03:00:59','2021-05-05 11:54:16','daafe134-5dfe-476f-9ecc-4265a0d7d49b',1,'/page/about/careers/brisbane-north-phn-board-directors/','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers/brisbane-north-phn-board-directors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-05 11:54:16',0),(67242,'2021-04-21 03:01:22','2021-05-01 10:31:26','ef9400aa-6c17-42bc-8e11-73de443e8a17',1,'/events/international-conference-on-integrated-care-icic20-virtual-conference','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/international-conference-on-integrated-care-icic20-virtual-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-01 10:31:26',0),(67243,'2021-04-21 03:10:37','2021-04-21 03:10:37','8823a406-e1d4-46e1-bf05-d7701e816ca3',1,'/content/Document/Events/2019/INVITATION - Shared care program - OCT 19_PRINT.pdf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2019/INVITATION - Shared care program - OCT 19_PRINT.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 03:10:37',0),(67244,'2021-04-21 03:13:54','2021-05-11 13:04:05','81cafdc1-cfef-456b-bb3e-a804d921ad33',1,'/events/demystifying-dementia','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/demystifying-dementia','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-11 13:04:05',0),(67245,'2021-04-21 03:24:34','2021-05-16 07:52:56','bcdf6571-dad5-449d-9ec5-667570718b05',1,'/page/news-and-events/metro-north-health-forum/2017-metro-north-health-forum/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/metro-north-health-forum/2017-metro-north-health-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-16 07:52:56',0),(67246,'2021-04-21 03:48:05','2021-04-21 03:48:05','4307365d-e194-4fbd-82dd-dcb78b69bed6',1,'/events/course-wound-closure-and-suturing','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/course-wound-closure-and-suturing','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 03:48:05',0),(67247,'2021-04-21 04:19:13','2021-05-17 11:47:47','324d0d0e-3c72-4b85-abcc-345d81470e7a',1,'/events/smart-referrals-tips-tricks-and-questions-webinar','','54.36.148.36','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)','Template not found: events/smart-referrals-tips-tricks-and-questions-webinar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,61,'2021-05-17 11:47:47',0),(67248,'2021-04-21 04:20:45','2021-05-14 11:27:29','47ee4f57-cbdd-479f-b5b9-c542ffeb2aad',1,'/events/expert-clinical-updates-in-respiratory-infections-spleen-australia','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/expert-clinical-updates-in-respiratory-infections-spleen-australia','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-14 11:27:29',0),(67249,'2021-04-21 04:29:41','2021-04-21 04:29:41','4efbbe09-c821-45b2-beaf-d47dc4d927d9',1,'/pin/660903314052056321/','','13.66.139.31','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: pin/660903314052056321','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 04:29:41',0),(67250,'2021-04-21 04:29:44','2021-04-24 07:26:24','bb4f4367-6645-48a2-9264-c682f2e04046',1,'/page/health-professionals/health-data/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/health-data','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 07:26:24',0),(67251,'2021-04-21 04:34:07','2021-05-18 18:33:50','e2f51aee-2ade-4542-aa42-1a903a19def3',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist-required---mcdowall-village-medical-practice/','','66.249.68.29','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist-required---mcdowall-village-medical-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-18 18:33:50',0),(67252,'2021-04-21 04:34:22','2021-05-12 07:54:38','fcccc7a2-11b5-4a77-a3ee-a240407e1b20',1,'/content/Document/Events/2019/GHM - Donor Week - 2019.pdf','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Events/2019/GHM - Donor Week - 2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-12 07:54:38',0),(67253,'2021-04-21 04:35:25','2021-04-21 04:35:25','3b967dc9-3cdb-4183-98bd-5facdad30f1e',1,'/content/Document/Events/2018/QuEDS Annual Forum 2 May 18_Flyer.pdf','','66.249.66.155','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/Events/2018/QuEDS Annual Forum 2 May 18_Flyer.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 04:35:25',0),(67254,'2021-04-21 04:38:33','2021-04-23 11:00:28','5d8f7956-a7fc-4c12-9fce-3398ac433d7c',1,'/page/news-and-events/latest-news/queensland-phns-sign-agreement-to-improve-indigenous-health','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/queensland-phns-sign-agreement-to-improve-indigenous-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-23 11:00:28',0),(67255,'2021-04-21 05:01:57','2021-04-28 23:20:55','e3694fa9-f008-4e0d-9926-ce8ea6c7f762',1,'/content/Document/Position Descriptions/PD_Clinical Project Lead_Healthy Ageing_191202.pdf','http://www.brisbanenorthphn.org.au/content/Document/Position%20Descriptions/PD_Clinical%20Project%20Lead_Healthy%20Ageing_191202.pdf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Position Descriptions/PD_Clinical Project Lead_Healthy Ageing_191202.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-28 23:20:55',0),(67256,'2021-04-21 05:14:25','2021-04-23 04:48:01','f312f45c-b44b-499e-952c-73a256c3e2a9',1,'/content/Document/Templates/4.9/MNHHS Palliative Care Referral ZM v4_9.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.9/MNHHS%20Palliative%20Care%20Referral%20ZM%20v4_9.rtf','34.122.223.89','Go-http-client/1.1','Template not found: content/Document/Templates/4.9/MNHHS Palliative Care Referral ZM v4_9.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-23 04:48:01',0),(67257,'2021-04-21 05:47:40','2021-04-27 05:26:06','b4da676b-a44c-4122-afda-b7487f07cf48',1,'/content/Document/Templates/6.1/MNHHS Paediatric Ref v6_1.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/MNHHS%20Paediatric%20Ref%20v6_1.rtf','146.148.65.39','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/MNHHS Paediatric Ref v6_1.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-27 05:26:06',0),(67258,'2021-04-21 05:47:45','2021-04-23 05:33:49','7f63e32c-77a1-4457-9c04-f5b079167341',1,'/content/Document/Events/2018/GoodLifeGoodDeathExpo2018%20Sponsorship%20Prospectus.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2018/GoodLifeGoodDeathExpo2018%2520Sponsorship%2520Prospectus.pdf','34.122.223.89','Go-http-client/1.1','Template not found: content/Document/Events/2018/GoodLifeGoodDeathExpo2018 Sponsorship Prospectus.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-23 05:33:49',0),(67259,'2021-04-21 05:49:50','2021-04-21 05:49:50','80daba87-4a7e-426f-a0c2-9ce33ae7981a',1,'/content/Document/Brisbane MIND Provider List September 2018(2).pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List September 2018(2).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 05:49:50',0),(67260,'2021-04-21 05:54:23','2021-05-16 09:10:44','9b344e1d-cf0e-4b9a-b90d-674de7861b30',1,'/page/health-professionals/Local Positions Vacant/gp---skin-cancer-doctor---lutwyche/','','66.249.69.36','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/gp---skin-cancer-doctor---lutwyche','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 09:10:44',0),(67261,'2021-04-21 05:55:12','2021-04-21 05:55:12','36bf4598-712a-47d7-94a0-572fb3655e74',1,'/privatekey.key','','91.241.19.175','Nuclei - Open-source project (github.com/projectdiscovery/nuclei)','Template not found: privatekey.key','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 05:55:12',0),(67262,'2021-04-21 05:57:12','2021-04-21 05:57:12','9939b88c-558d-4c03-baa0-7c4c60bacf3d',1,'/brisbanenorthphn.org.au.key','','91.241.19.175','Nuclei - Open-source project (github.com/projectdiscovery/nuclei)','Template not found: brisbanenorthphn.org.au.key','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 05:57:12',0),(67263,'2021-04-21 05:57:23','2021-04-21 05:57:23','82f78ecd-46b8-4607-8713-afb074f30696',1,'/brisbanenorthphn.org.au.pem','','91.241.19.175','Nuclei - Open-source project (github.com/projectdiscovery/nuclei)','Template not found: brisbanenorthphn.org.au.pem','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 05:57:23',0),(67264,'2021-04-21 06:10:53','2021-04-24 08:01:52','4c221fb5-5246-42cd-95e6-789219e87fb2',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---eatons-hill-village/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---eatons-hill-village','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 08:01:52',0),(67265,'2021-04-21 06:13:08','2021-05-15 22:33:27','aaf2171e-d912-4db3-805e-84eb83ebd2fa',1,'/content/Document/PD_Mental Health Navigator_170615(1).pdf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/PD_Mental Health Navigator_170615(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 22:33:27',0),(67266,'2021-04-21 06:22:08','2021-05-13 00:37:54','ab9bb121-8113-4ebe-afcc-8e385fdd3d4b',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---ascot','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---ascot','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-13 00:37:54',0),(67267,'2021-04-21 06:33:56','2021-05-09 13:25:16','1e31f450-076a-422c-ba05-1d8675b48335',1,'/page/news-and-events/events/archive/magnetism-and-the-mind','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/magnetism-and-the-mind','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-09 13:25:16',0),(67268,'2021-04-21 06:42:09','2021-05-07 13:03:31','d1a27c2b-c977-4c55-967f-e4ab34b1d1ca',1,'/content/Document/200318_HealthAlert_Measles.pdf','http://www.brisbanenorthphn.org.au/content/Document/200318_HealthAlert_Measles.pdf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/200318_HealthAlert_Measles.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-07 13:03:31',0),(67269,'2021-04-21 06:54:57','2021-04-28 10:30:59','6aad420a-8410-4400-adaf-e5c3f0c03b99',1,'/content/Document/Position Descriptions/PD_MHOAD_Lived Experience Project Officer_190604.pdf','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Position Descriptions/PD_MHOAD_Lived Experience Project Officer_190604.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-28 10:30:59',0),(67270,'2021-04-21 07:06:12','2021-05-17 16:30:47','2d348888-9306-41fc-aa47-0367eaf68953',1,'/page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health-april-2017','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health-april-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 16:30:47',0),(67271,'2021-04-21 07:35:27','2021-05-19 00:24:54','767f8a04-c6c0-4192-bb11-d0a8970eb5b0',1,'/page/news-and-events/events/upcoming/dementia-essentials-providing-support-to-people-living-with-dementia-embracia-october/','','157.55.39.101','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/dementia-essentials-providing-support-to-people-living-with-dementia-embracia-october','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-19 00:24:54',0),(67272,'2021-04-21 07:35:49','2021-04-21 07:35:49','41090f43-e920-4609-ab11-2c1be92604de',1,'/content/Document/PD_GP Clinical Editor_160428.pdf','','66.249.66.155','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/PD_GP Clinical Editor_160428.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 07:35:49',0),(67273,'2021-04-21 07:36:00','2021-05-08 03:50:57','e7730bd4-bbf7-4c24-9ee7-787782e772e7',1,'/page/about/our-committees','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/our-committees','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-08 03:50:57',0),(67274,'2021-04-21 07:45:10','2021-04-30 07:38:33','b8d8c0aa-1f71-47b1-9e6f-479b73717bc7',1,'/page/health-professionals/multicultural-health/refugee-health-network-queensland/','','95.91.15.174','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/health-professionals/multicultural-health/refugee-health-network-queensland','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-30 07:38:33',0),(67275,'2021-04-21 07:50:30','2021-04-29 10:02:12','2a2cd561-66b1-4da7-b8bf-e5d6db74b4e6',1,'/events/antenatal-sexual-health-kit-ask-2','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/antenatal-sexual-health-kit-ask-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-29 10:02:12',0),(67276,'2021-04-21 07:52:04','2021-04-21 07:52:04','323a2aed-16a1-477e-89e2-771210cf2ccd',1,'/content/Document/PD_ProgSuppOff_CommServices_160401.pdf','','66.249.66.154','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/PD_ProgSuppOff_CommServices_160401.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 07:52:04',0),(67277,'2021-04-21 08:00:02','2021-04-21 08:00:02','3e567ecb-24f2-4702-9a0a-948236510eea',1,'/page/news-and-events/events/upcoming/understanding-client-needs/','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/understanding-client-needs','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 08:00:02',0),(67278,'2021-04-21 08:01:42','2021-05-17 18:20:00','5ade3752-5ecd-49ea-afb5-f5debd00cd96',1,'/events/traffic-lights-sexual-behaviours-in-children-and-young-people','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/traffic-lights-sexual-behaviours-in-children-and-young-people','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-17 18:20:00',0),(67279,'2021-04-21 08:10:16','2021-05-17 17:35:05','bfb05614-5a96-45f8-8343-4b28631e1a4c',1,'/page/news-and-events/events/upcoming/care-for-the-caregiver-symposium/','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/care-for-the-caregiver-symposium','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-17 17:35:05',0),(67280,'2021-04-21 08:51:13','2021-05-16 15:06:35','067619fa-623f-4d6f-b3a2-c6595d351bbd',1,'/content/Image/older lady with carer.jpg','http://brisbanenorthphn.org.au/content/Image/older%20lady%20with%20carer.jpg','95.163.255.61','Mozilla/5.0 (compatible; Linux x86_64; Mail.RU_Bot/Img/2.0; +http://go.mail.ru/help/robots)','Template not found: content/Image/older lady with carer.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 15:06:35',0),(67281,'2021-04-21 08:52:17','2021-05-05 22:32:33','a4ab2b13-cdaa-4aa2-8b8f-1401228d1193',1,'/content/Document/Templates/4.8/Specialists List_Paediatrics_4_8.pdf','','178.63.51.106','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0','Template not found: content/Document/Templates/4.8/Specialists List_Paediatrics_4_8.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-05 22:32:33',0),(67282,'2021-04-21 09:05:43','2021-04-21 09:05:43','6e4cf8aa-aed2-45d5-b585-fc0e12dbf860',1,'/page/news-and-events/events/archive/paediatric-masterclass-for-general-practice/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/paediatric-masterclass-for-general-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 09:05:43',0),(67283,'2021-04-21 09:05:47','2021-04-29 15:30:29','09558300-5a65-434e-8efa-e8c9a3c5cb70',1,'/content/Document/Campaign material/19_5069 PHN Adult Immunisation poster_FINAL_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Campaign%20material/19_5069%20PHN%20Adult%20Immunisation%20poster_FINAL_WEB.pdf','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/Campaign material/19_5069 PHN Adult Immunisation poster_FINAL_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-29 15:30:29',0),(67284,'2021-04-21 09:11:03','2021-04-21 09:11:03','693f136f-6ffa-4329-9cb8-195f22aa88bb',1,'/page/news-and-events/events/archive/introduction-to-counselling-children/','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/introduction-to-counselling-children','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 09:11:03',0),(67285,'2021-04-21 09:21:38','2021-05-09 11:35:26','70cffe25-698e-4683-a3cb-5b03c1e27894',1,'/page/news-and-events/events/upcoming/workforce-capacity-building-self-care-and-self-compassion/','https://www.brisbanenorthphn.org.au/page/news-and-events/events/upcoming/workforce-capacity-building-self-care-and-self-compassion/','5.188.48.14','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','Template not found: page/news-and-events/events/upcoming/workforce-capacity-building-self-care-and-self-compassion','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-09 11:35:26',0),(67286,'2021-04-21 09:32:18','2021-05-12 18:11:39','702c1bf8-cf66-4866-b63f-4bbe01fa76c5',1,'/content/Document/Position Descriptions/PD_PDO Care Coordination_190318.pdf','http://www.brisbanenorthphn.org.au/content/Document/Position%20Descriptions/PD_PDO%20Care%20Coordination_190318.pdf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Position Descriptions/PD_PDO Care Coordination_190318.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 18:11:39',0),(67287,'2021-04-21 09:46:15','2021-05-09 06:36:34','4aabe37a-4549-481b-b77e-0b05e7ddee5c',1,'/content/Document/Planning/FIN_AAWP_Primary Mental Health Care 18-19_181122 RACF WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Planning/FIN_AAWP_Primary%20Mental%20Health%20Care%2018-19_181122%20RACF%20WEB.pdf','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/Planning/FIN_AAWP_Primary Mental Health Care 18-19_181122 RACF WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-09 06:36:34',0),(67288,'2021-04-21 09:46:17','2021-04-21 09:46:46','78e562f8-053b-45f1-b5ff-2c167e379384',1,'/wpconfig_bak.php','','162.55.55.136','python-requests/2.25.1','Template not found: wpconfig_bak.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-21 09:46:46',0),(67289,'2021-04-21 09:50:20','2021-04-28 10:34:06','4b96ebf0-17d4-418c-a89c-d77e9a078a15',1,'/content/Document/Brisbane MIND Group Listing 2016-17(6).pdf','','93.158.161.26','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','Template not found: content/Document/Brisbane MIND Group Listing 2016-17(6).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-28 10:34:06',0),(67290,'2021-04-21 10:04:02','2021-04-28 03:53:06','5831c0ae-ddc2-463e-8363-d35bd3d45e13',1,'/content/Image/Page Banners/banner_page_localpositionsvacant.jpg','','108.174.8.20','LinkedInBot/1.0 (compatible; Mozilla/5.0; Apache-HttpClient +http://www.linkedin.com)','Template not found: content/Image/Page Banners/banner_page_localpositionsvacant.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-28 03:53:06',0),(67291,'2021-04-21 10:29:40','2021-05-15 05:38:52','f7fcf1f9-d23d-4f99-9c26-c234d4364fb2',1,'/jobs/practice-nurse-casual-rn','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/practice-nurse-casual-rn','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 05:38:52',0),(67292,'2021-04-21 10:31:56','2021-05-03 15:36:24','ec5cb2bb-670a-40b6-be44-07d3d65012c1',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---stafford/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---stafford','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-03 15:36:24',0),(67293,'2021-04-21 10:41:36','2021-04-23 11:20:02','267e895f-5ec2-4318-ab7a-ee116277f090',1,'/content/Document/Templates/4.12/PractiX v4.12/MNHHS PCH PractiX v4_12.doc','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.12/PractiX%20v4.12/MNHHS%20PCH%20PractiX%20v4_12.doc','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/Templates/4.12/PractiX v4.12/MNHHS PCH PractiX v4_12.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-23 11:20:02',0),(67294,'2021-04-21 10:57:50','2021-05-15 06:36:40','169431bf-68d9-473c-9eca-6639f9d0b60d',1,'/content/Document/Templates/4.4/Specialists List_Caboolture Hospital_4.4.pdf','','144.76.162.206','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36','Template not found: content/Document/Templates/4.4/Specialists List_Caboolture Hospital_4.4.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 06:36:40',0),(67295,'2021-04-21 11:01:28','2021-04-21 11:01:28','a4a453d3-590b-40a0-9e85-56beb725dc6f',1,'/content/Document/Events/2018/FDSStepStonesA4FlyerBrisbaneJunJul2018.pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2018/FDSStepStonesA4FlyerBrisbaneJunJul2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 11:01:28',0),(67296,'2021-04-21 11:06:38','2021-05-12 20:48:35','fea1f219-addb-4080-9cfd-76785882c81a',1,'/page/health-professionals/directories/','','66.249.68.93','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/directories','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-12 20:48:35',0),(67297,'2021-04-21 11:24:05','2021-05-18 06:39:21','190d9780-07c2-465a-9b48-8c53d82446ba',1,'/page/news-and-events/events/upcoming/resilience-and-approaches-to-self-care/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/resilience-and-approaches-to-self-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-18 06:39:21',0),(67298,'2021-04-21 11:27:53','2021-04-21 11:27:53','e012fb31-3ef9-4d74-ab01-48ba5abb84d7',1,'/team/michele-smith','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: team/michele-smith','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 11:27:53',0),(67299,'2021-04-21 11:33:37','2021-05-16 08:39:15','d8d87c46-a12d-4d3b-b4d4-ee05db886d64',1,'/page/news-and-events/events/upcoming/chronic-disease-management-2020-april','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/chronic-disease-management-2020-april','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 08:39:15',0),(67300,'2021-04-21 11:38:02','2021-04-21 11:38:02','a135fbce-5c5c-4a49-b9fb-e2a4998d9153',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---chermside/','','207.46.13.181','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---chermside','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 11:38:02',0),(67301,'2021-04-21 11:46:20','2021-05-01 20:05:46','c6ae38ba-5b52-4743-9d13-bd57b8440efc',1,'/content/Document/EOI_CAC_FINAL.pdf','http://www.brisbanenorthphn.org.au/content/Document/EOI_CAC_FINAL.pdf','104.198.141.65','Go-http-client/1.1','Template not found: content/Document/EOI_CAC_FINAL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 20:05:46',0),(67302,'2021-04-21 11:52:02','2021-04-21 11:52:02','3579ac67-e5c1-48ad-bca2-c81a2adb3beb',1,'/content/Document/Recovery/siobhan turner profile.jpg','','66.249.66.154','Googlebot-Image/1.0','Template not found: content/Document/Recovery/siobhan turner profile.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 11:52:02',0),(67303,'2021-04-21 12:01:48','2021-04-30 12:46:53','256b625f-b893-459c-a309-3555dd65e351',1,'/events/pallipharm-workshop-6','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/pallipharm-workshop-6','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 12:46:53',0),(67304,'2021-04-21 12:04:36','2021-05-05 02:32:29','3efaff52-bf96-4d27-8136-d648604b4870',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---redcliffe/','','93.197.172.246','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---redcliffe','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-05 02:32:29',0),(67305,'2021-04-21 12:04:53','2021-04-24 08:09:06','710a13c3-f6d3-449f-a460-c6ae61a92dae',1,'/page/health-professionals/Local Positions Vacant/general-practitioners---morayfield/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/general-practitioners---morayfield','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 08:09:06',0),(67306,'2021-04-21 12:05:15','2021-04-24 08:10:17','985efac0-528b-470f-af1b-2fecd602a33d',1,'/page/health-professionals/Local Positions Vacant/gp---brisbane-northside/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/gp---brisbane-northside','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 08:10:17',0),(67307,'2021-04-21 12:06:11','2021-05-01 17:11:48','eee0fc2b-9219-4aae-9ee8-a49db9cae0d1',1,'/page/health-professionals/Local Positions Vacant/locum-position---sandgate/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/locum-position---sandgate','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-01 17:11:48',0),(67308,'2021-04-21 12:06:39','2021-04-24 08:14:56','1b99ad8b-6d3e-48a5-8a20-ddd2331be0f7',1,'/page/health-professionals/Local Positions Vacant/nurse---taringa/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/nurse---taringa','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 08:14:56',0),(67309,'2021-04-21 12:07:01','2021-04-24 08:16:18','71606fc8-bf78-4d85-8433-57dac784f9f8',1,'/page/health-professionals/Local Positions Vacant/other-health-care-professional---bongaree/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/other-health-care-professional---bongaree','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 08:16:18',0),(67310,'2021-04-21 12:07:22','2021-04-24 08:20:35','60faf3db-8b4f-4cf6-94e7-65b87612b6d8',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---sandgate-doctors/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---sandgate-doctors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 08:20:35',0),(67311,'2021-04-21 12:07:32','2021-04-21 12:07:32','8815a417-9035-45a2-850d-ea10f2691588',1,'/page/health-professionals/Local Positions Vacant/receptionist---east-street-family-doctor/','','207.46.13.84','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/receptionist---east-street-family-doctor','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 12:07:32',0),(67312,'2021-04-21 12:07:46','2021-04-24 08:23:00','f51fdba0-5b13-43f3-896c-1f36adccd9a1',1,'/page/health-professionals/Local Positions Vacant/registered-nurse---bardon/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/registered-nurse---bardon','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 08:23:00',0),(67313,'2021-04-21 12:08:16','2021-04-21 12:08:16','28251b19-f78d-4d88-a69d-7c4a71613a63',1,'/page/health-professionals/Local Positions Vacant/registered-nurse---bracken-ridge/','','5.9.154.69','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/health-professionals/Local Positions Vacant/registered-nurse---bracken-ridge','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 12:08:16',0),(67314,'2021-04-21 12:09:11','2021-04-24 08:24:12','b9fba660-e300-49ff-8460-5c3d76c740ac',1,'/page/health-professionals/Local Positions Vacant/registered-nurse---paddington/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/registered-nurse---paddington','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 08:24:12',0),(67315,'2021-04-21 12:09:33','2021-05-06 12:13:07','7578a9d5-f708-46bd-a684-45cacc8b5a21',1,'/page/health-professionals/Local Positions Vacant/registered-nurse---samford/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/registered-nurse---samford','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-06 12:13:07',0),(67316,'2021-04-21 12:10:05','2021-04-24 07:20:48','f5161a8b-690f-495d-8af8-55347c22d77f',1,'/page/health-professionals/Local Positions Vacant/vr-general-practitioner---everton-park/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/vr-general-practitioner---everton-park','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 07:20:48',0),(67317,'2021-04-21 12:11:38','2021-05-08 20:12:57','507ed12b-023c-4860-bcc0-577a58e18749',1,'/page/health-professionals/Local Positions Vacant/vr-general-practitioner---hamilton/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/vr-general-practitioner---hamilton','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-08 20:12:57',0),(67318,'2021-04-21 12:12:07','2021-04-24 07:22:55','b2e67f99-9a5f-4005-8115-79eb04c7d2d0',1,'/page/health-professionals/Local Positions Vacant/vr-gp---qut/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/vr-gp---qut','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 07:22:55',0),(67319,'2021-04-21 12:19:49','2021-05-12 20:58:28','bf6f1921-817d-4bde-b56d-c2a8b755705e',1,'/page/health-professionals/Local Positions Vacant/vr-or-general-practitioner-registrar---caboolture/','','66.249.68.93','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/vr-or-general-practitioner-registrar---caboolture','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 20:58:28',0),(67320,'2021-04-21 12:20:32','2021-04-24 08:54:11','36f77663-c58b-44e7-8ad7-3a4e47331548',1,'/page/news-and-events/events/upcoming/global-obstetric-update-2018/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/global-obstetric-update-2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 08:54:11',0),(67321,'2021-04-21 12:21:16','2021-04-21 12:21:16','20f1d83f-b17b-4b88-b560-dca53729c533',1,'/page/news-and-events/events/upcoming/improving-maternity-care-workshop-and-medical-disorders-in-pregnancy-symposium/','','5.9.154.69','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/improving-maternity-care-workshop-and-medical-disorders-in-pregnancy-symposium','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 12:21:16',0),(67322,'2021-04-21 12:21:43','2021-04-24 08:51:39','33ebb465-9518-4de5-bb4d-9c0fe081efe8',1,'/page/news-and-events/events/upcoming/suicide-risk-assessment-and-techniques-for-responding-to-suicidal-persons-lutwyche/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/suicide-risk-assessment-and-techniques-for-responding-to-suicidal-persons-lutwyche','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 08:51:39',0),(67323,'2021-04-21 12:22:37','2021-04-24 08:54:08','5126fec7-7a93-4fb5-8aaf-451a3fada346',1,'/page/news-and-events/events/upcoming/transgender-and-gender-diverse-issues-in-therapy/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/transgender-and-gender-diverse-issues-in-therapy','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 08:54:08',0),(67324,'2021-04-21 12:23:06','2021-04-21 12:23:06','1497bcdd-a329-409a-a751-5ae6fd9eb7de',1,'/page/news-and-events/events/upcoming/webinar-deadly-sex-networking-update/','','5.9.154.69','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/webinar-deadly-sex-networking-update','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 12:23:06',0),(67325,'2021-04-21 12:23:26','2021-04-21 12:23:26','57934934-ef84-4dec-939e-cede29ede112',1,'/page/news-and-events/events/upcoming/workshop-1-of-3---copd-project---gp-active-learning-module/','','5.9.154.69','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/workshop-1-of-3---copd-project---gp-active-learning-module','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 12:23:26',0),(67326,'2021-04-21 12:24:00','2021-04-21 12:24:00','9798cab9-a917-49e9-8ff6-9b8eb4dfc6f4',1,'/yearinreview/comments/feed/','','5.9.154.69','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: yearinreview/comments/feed','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 12:24:00',0),(67327,'2021-04-21 12:24:22','2021-04-21 12:24:22','a72646fc-3b2a-4148-a476-8d6cdb82701e',1,'/yearinreview/hello-world/feed/','','5.9.154.69','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: yearinreview/hello-world/feed','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 12:24:22',0),(67328,'2021-04-21 12:32:40','2021-05-02 22:51:01','a566288b-3b55-43c2-ae64-83b15ccc0a39',1,'/events/paediatric-masterclass-for-general-practice-primary-school-years','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/paediatric-masterclass-for-general-practice-primary-school-years','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-02 22:51:01',0),(67329,'2021-04-21 12:32:46','2021-04-29 21:54:32','ce39d861-4bff-4406-bda5-955cf40b6c8f',1,'/content/Document/Boondall Qld Training Course.pdf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Boondall Qld Training Course.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-29 21:54:32',0),(67330,'2021-04-21 12:35:21','2021-05-18 02:41:53','97c132aa-cebc-47c9-8b6d-c7f5f1edb081',1,'/content/Document/Pathways/TEM_GPtoGP_flyer_1901.pdf','','123.100.152.253','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','Template not found: content/Document/Pathways/TEM_GPtoGP_flyer_1901.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-18 02:41:53',0),(67331,'2021-04-21 12:38:25','2021-05-16 07:49:49','3cfef46c-a047-4b9c-b006-fa84f6aa1250',1,'/page/news-and-events/latest-news/psychological-treatment-services-now-available-for-people-living-in-residential-aged-care-facilities/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/psychological-treatment-services-now-available-for-people-living-in-residential-aged-care-facilities','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-16 07:49:49',0),(67332,'2021-04-21 12:45:58','2021-04-21 12:45:58','f5d54852-5347-4f1c-999a-3168bc432bb7',1,'/page/health-professionals/Local Positions Vacant/psychologistclinical-psychologist-required---anita-trendle-psychology/','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/psychologistclinical-psychologist-required---anita-trendle-psychology','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 12:45:58',0),(67333,'2021-04-21 12:55:03','2021-04-21 12:55:03','e2107c2f-cf73-40ca-8451-d2b91e440d18',1,'/page/news-and-events/events/upcoming/centre-for-palliative-care-research-and-education/','','40.77.167.25','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/centre-for-palliative-care-research-and-education','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 12:55:03',0),(67334,'2021-04-21 13:01:52','2021-04-21 13:01:52','f4ef8dd4-9e2b-434e-aa42-6257ad23f2c7',1,'/asset/plugins/elfinder/connectors/php/connector.php','http://www.google.com/','23.228.109.147','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2896.3 Safari/537.36','Template not found: asset/plugins/elfinder/connectors/php/connector.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 13:01:52',0),(67335,'2021-04-21 13:14:27','2021-05-08 23:06:20','4eb8fd7c-6e31-4e72-bd17-84a2caaa1a69',1,'/content/Document/Media Releases/MR_On-call medical support to aged care facilities_170629.pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%20Releases/MR_On-call%20medical%20support%20to%20aged%20care%20facilities_170629.pdf','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/Media Releases/MR_On-call medical support to aged care facilities_170629.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-08 23:06:20',0),(67336,'2021-04-21 13:37:08','2021-05-11 20:39:18','631b7cd8-f762-4df6-b757-896bce072a23',1,'/e/data/js/ajax.js','','121.89.236.242','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:48.0) Gecko/20100101 Firefox/48.0','Template not found: e/data/js/ajax.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-11 20:39:18',0),(67337,'2021-04-21 13:39:35','2021-04-21 13:39:35','481f5479-9ce2-4843-a89b-562be1f197ef',1,'/events/food-thought-how-nutrients-affect-brain-0','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/food-thought-how-nutrients-affect-brain-0','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 13:39:35',0),(67338,'2021-04-21 13:42:54','2021-04-23 15:29:17','29dded01-1ba1-497f-9d2a-6d128fe2f0d6',1,'/content/Document/Media%20Releases/MR_Planning%20for%20Wellbeing%20launched%20at%20Mental%20Health%20Expo_181012.pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%2520Releases/MR_Planning%2520for%2520Wellbeing%2520launched%2520at%2520Mental%2520Health%2520Expo_181012.pdf','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/Media Releases/MR_Planning for Wellbeing launched at Mental Health Expo_181012.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-23 15:29:17',0),(67339,'2021-04-21 14:00:32','2021-05-09 00:38:27','35255507-5f45-4ad0-abe9-723bbdbd903f',1,'/content/Document/Events/2018/ICIF-COPD-Project-GP-ALM-180317(1).pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2018/ICIF-COPD-Project-GP-ALM-180317(1).pdf','35.233.170.71','Go-http-client/1.1','Template not found: content/Document/Events/2018/ICIF-COPD-Project-GP-ALM-180317(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-09 00:38:27',0),(67340,'2021-04-21 14:08:47','2021-04-21 14:08:47','7d65ab98-ac70-4858-bb25-cae0c01c09f0',1,'/page/health-professionals/Local Positions Vacant/board-director---queensland-alliance-for-mental-health/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/board-director---queensland-alliance-for-mental-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 14:08:47',0),(67341,'2021-04-21 14:19:09','2021-05-04 04:24:52','e592ff41-8b57-4bed-84de-3aed0135c121',1,'/page/news-and-events/events/upcoming/eating-disorders-essentials/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/eating-disorders-essentials','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-04 04:24:52',0),(67342,'2021-04-21 14:23:17','2021-04-21 14:23:17','b223d68e-10ef-495a-aa4e-e6574bc82893',1,'/page/health-professionals/Local Positions Vacant/practice-manager---carseldine/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/practice-manager---carseldine','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 14:23:17',0),(67343,'2021-04-21 14:46:52','2021-05-14 07:39:45','8ff495a2-f019-41fe-90ee-6da356507320',1,'/content/Image/_MG_2841.jpg','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Page not found.','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/web/Request.php',1314,5,'2021-05-14 07:39:45',0),(67344,'2021-04-21 15:24:57','2021-05-18 13:31:33','bf0d6458-9b05-4b2c-8b8e-4e16abae5a46',1,'/page/health-professionals/Local Positions Vacant/specialists-and-allied-health-professionals---brisbane-city','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/specialists-and-allied-health-professionals---brisbane-city','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-18 13:31:33',0),(67345,'2021-04-21 15:25:24','2021-04-23 11:59:45','cb52ec8f-8441-41ec-a769-f9ecdeb8bd0d',1,'/content/Document/resource_dementiaservices.pdf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/resource_dementiaservices.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-23 11:59:45',0),(67346,'2021-04-21 15:26:15','2021-04-21 15:26:15','530e9c0a-09bd-4447-b1f1-7211560c2f64',1,'/news/new-headspace-strathpine-centre-opens-according-to-plan-1','','66.249.66.89','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.80 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: news/new-headspace-strathpine-centre-opens-according-to-plan-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 15:26:15',1),(67347,'2021-04-21 15:37:10','2021-05-12 04:48:38','c9fd4757-f7c2-4b4e-aff6-5071969caa71',1,'/content/Document/PD_GM_PHN_HHS Alliance_160916sk.pdf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/PD_GM_PHN_HHS Alliance_160916sk.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 04:48:38',0),(67348,'2021-04-21 15:55:42','2021-05-13 03:43:00','61119a3d-2e78-448e-8667-ceecec698187',1,'/page/health-professionals/Local Positions Vacant/general-practition-with-special-interest-gpwsi---caboolture/','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practition-with-special-interest-gpwsi---caboolture','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-13 03:43:00',0),(67349,'2021-04-21 16:20:33','2021-05-16 23:36:59','022e5d94-9ac3-4abb-aae3-d80d794a6f33',1,'/content/Document/Pathways/CEWT less than 1 YEAR.pdf','','1.132.109.243','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','Template not found: content/Document/Pathways/CEWT less than 1 YEAR.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-16 23:36:59',0),(67350,'2021-04-21 16:29:08','2021-05-15 20:14:53','01d80e5b-908c-44de-ad59-a53ce509bace',1,'/humans.txt','http://brisbanenorthphn.org.au/humans.txt','192.36.248.249','Mozilla/5.0 (Linux; Android 8.0.0; SM-G960F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.84 Mobile Safari/537.36','Template not found: humans.txt','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 20:14:53',0),(67351,'2021-04-21 16:45:21','2021-04-25 05:23:36','76103628-42df-4c84-8922-500c2451ae41',1,'/page/news-and-events/metro-north-health-forum/2017-metro-north-health-forum/metro-north-health-forum-talking-bout-a-revolution-or-evolution/','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/metro-north-health-forum/2017-metro-north-health-forum/metro-north-health-forum-talking-bout-a-revolution-or-evolution','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-25 05:23:36',0),(67352,'2021-04-21 16:59:54','2021-05-12 13:56:32','c5df7b28-7d37-4507-aeea-5c643b5ab06a',1,'/page/news-and-events/latest-news/enrolments-are-high-for-health-care-homes-trial','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/enrolments-are-high-for-health-care-homes-trial','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 13:56:32',0),(67353,'2021-04-21 17:11:13','2021-05-12 23:45:04','7968d12f-768f-4af5-9b3d-54c603f4aac3',1,'/content/Image/Brisbane City_2.jpg','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Brisbane City_2.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 23:45:04',0),(67354,'2021-04-21 17:12:58','2021-04-21 17:12:58','c41c3a1c-3a01-4672-a081-6c57e888f64a',1,'/content/Image/Events/PiR forum Nov 2017 speakers.jpg','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Events/PiR forum Nov 2017 speakers.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 17:12:58',0),(67355,'2021-04-21 17:14:46','2021-05-14 04:58:02','13ad6bf8-eb77-4d87-b060-a8524fd50a46',1,'/content/Document/Events/PHU Immunisation education events - February and March 2016.pdf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/PHU Immunisation education events - February and March 2016.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-14 04:58:02',0),(67356,'2021-04-21 17:19:34','2021-05-12 07:57:15','09f17d1f-6b4e-45a8-a70e-8c3e19164d56',1,'/page/news-and-events/latest-news/inaugural-gp-breakfast-–-great-success','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/inaugural-gp-breakfast-–-great-success','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-12 07:57:15',0),(67357,'2021-04-21 17:28:02','2021-04-24 07:23:55','a8710935-80f7-478e-968c-f7764bb4ca47',1,'/page/community/health-navigator/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/community/health-navigator','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 07:23:55',0),(67358,'2021-04-21 17:57:37','2021-04-21 17:57:37','6b7bdac6-3518-451c-b21a-7d770a210ddd',1,'/awstats/','','91.241.19.175','Nuclei - Open-source project (github.com/projectdiscovery/nuclei)','Template not found: awstats','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 17:57:37',0),(67359,'2021-04-21 18:36:17','2021-05-10 00:54:56','6d3e4a6d-011a-4c29-b513-ae498a4342d0',1,'/page/contact-us/providing-feedback/','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/contact-us/providing-feedback','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-10 00:54:56',0),(67360,'2021-04-21 18:41:21','2021-05-10 23:20:34','46209692-3444-4de4-83b3-0ec359e24824',1,'/jobs/gp-needed-to-join-busy-eatons-hill-practice-in-brisbane','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/gp-needed-to-join-busy-eatons-hill-practice-in-brisbane','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-10 23:20:34',0),(67361,'2021-04-21 18:52:35','2021-04-21 18:52:35','4cd92a00-c616-40ab-a99b-752435eec90c',1,'/content/Document/MR_New%20headspace%20youth%20mental%20health%20service%20for%20Pine%20Rivers_200615.pdf','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/MR_New headspace youth mental health service for Pine Rivers_200615.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 18:52:35',0),(67362,'2021-04-21 18:57:09','2021-04-21 18:57:09','32fe5c11-f966-4a1e-b419-2c4310b43cf6',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-caboolture/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-caboolture','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 18:57:09',0),(67363,'2021-04-21 19:14:29','2021-04-24 02:45:32','e16c07aa-9fe7-4114-9cfd-b491f9311d9f',1,'/content/Document/alert_fentanyl.pdf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/alert_fentanyl.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-24 02:45:32',0),(67364,'2021-04-21 19:17:26','2021-05-15 05:15:12','dba9b7d4-110e-4944-bfe0-04cf25a46e70',1,'/jobs/practice-nurse-albion','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/practice-nurse-albion','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-15 05:15:12',0),(67365,'2021-04-21 19:39:21','2021-04-21 19:39:21','0d30b44d-38a4-4dfc-ac1e-21cb688f5ef5',1,'/wp-admin/install.php','','135.181.192.249','Apache/2.4.34 (Ubuntu) OpenSSL/1.1.1 (internal dummy connection)','Template not found: wp-admin/install.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 19:39:21',0),(67366,'2021-04-21 20:16:16','2021-04-21 20:16:16','3df1d635-3896-4511-bbd7-f21ea39791f7',1,'/content/Document/Brisbane MIND Provider List December 2018.pdf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List December 2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 20:16:16',0),(67367,'2021-04-21 20:35:36','2021-04-21 20:35:36','ade37f0c-f234-4a3b-bb01-3aa686d8339a',1,'/content/Image/_MG_2881-reduced.jpg','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Page not found.','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/web/Request.php',1314,1,'2021-04-21 20:35:36',0),(67368,'2021-04-21 20:38:20','2021-04-21 20:38:20','6bf02b02-14b9-4240-bad5-15cab70a8f1a',1,'/page/about/careers/coordinator-regional-assessment-service-ras/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers/coordinator-regional-assessment-service-ras','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 20:38:20',0),(67369,'2021-04-21 20:48:21','2021-05-11 02:54:47','b8a1a8d4-2f0a-4917-85e0-ef3bd86c2a84',1,'/page/news-and-events/latest-news/psychological-treatment-services-now-available-for-people-living-in-residential-aged-care-facilities','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/psychological-treatment-services-now-available-for-people-living-in-residential-aged-care-facilities','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-11 02:54:47',0),(67370,'2021-04-21 20:54:30','2021-04-21 20:54:30','64b82143-892d-4bc6-9e25-d4ba75404cbe',1,'/content/Document/PD_CoordinatorRAS_Healthy Ageing_200604.pdf','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/PD_CoordinatorRAS_Healthy Ageing_200604.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 20:54:30',0),(67371,'2021-04-21 21:44:01','2021-05-13 20:55:39','53a774a9-46c6-420a-a2ed-3b2e7857172c',1,'/yearinreview/2018-19/wp-content/uploads/2019/11/MH-Expo-2018.jpg','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2018-19/wp-content/uploads/2019/11/MH-Expo-2018.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-13 20:55:39',0),(67372,'2021-04-21 21:45:27','2021-04-21 21:45:27','c0c7a98f-deb2-4fc2-b1b2-4cc6ee0dc2ab',1,'/research-survey/uqkdeguz@uq.edu.au','https://brisbanenorthphn.org.au/research-survey/telehealth-in-primary-care','103.87.254.78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36 Edg/90.0.818.42','Template not found: research-survey/uqkdeguz@uq.edu.au','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-21 21:45:27',0),(67373,'2021-04-21 22:35:19','2021-05-16 01:05:32','ca8773d9-38e1-41a5-89d9-95f23729006f',1,'/jobs/experienced-gp-general-practitioner-family-orientated-community-close-to-schools-bald-hills-q-permanent-jobs-full-part-time-dpa-transfer-available','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/experienced-gp-general-practitioner-family-orientated-community-close-to-schools-bald-hills-q-permanent-jobs-full-part-time-dpa-transfer-available','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 01:05:32',0),(67374,'2021-04-21 22:46:43','2021-05-12 06:45:59','efb71dda-c158-4581-874f-c45fcf0499a1',1,'/content/Document/Questions forIdentifying Eating and Weight Disorders.pdf','http://www.brisbanenorthphn.org.au/content/Document/Questions%20forIdentifying%20Eating%20and%20Weight%20Disorders.pdf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Questions forIdentifying Eating and Weight Disorders.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 06:45:59',0),(67375,'2021-04-21 22:50:55','2021-04-23 23:02:46','ff6b4e43-160d-4dd4-ae8b-612a1f47ed1d',1,'/content/Document/Events/deLiver a healthier outcome.pdf','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Events/deLiver a healthier outcome.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-23 23:02:46',0),(67376,'2021-04-21 22:57:14','2021-05-12 08:56:40','071b767e-98da-4be2-84cc-5f0c0363b197',1,'/page/news-and-events/events/archive/managing-vicarious-trauma/','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/managing-vicarious-trauma','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 08:56:40',0),(67377,'2021-04-21 23:10:23','2021-05-11 13:16:19','dcc32488-3e67-4285-9d46-66e3d5858545',1,'/content/Document/Pathways/Galantamine_140430.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/Galantamine_140430.pdf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Pathways/Galantamine_140430.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 13:16:19',0),(67378,'2021-04-21 23:12:35','2021-04-21 23:12:38','77c729ff-2804-438c-81ad-d88be3df27e8',1,'/content/Document/BNPHN_Understanding_Your_Role_NDIS_GP_Toolkit_May2018_FINAL_WEB.pdf\" /','','49.195.94.103','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36 Edg/90.0.818.42','Template not found: content/Document/BNPHN_Understanding_Your_Role_NDIS_GP_Toolkit_May2018_FINAL_WEB.pdf\" ','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-21 23:12:38',0),(67379,'2021-04-21 23:20:36','2021-04-24 04:35:09','0a84fce2-ef26-491f-96d0-b9e2fd59413f',1,'/content/Document/MNHHS RBWH Referral BP v4_11(3).rtf','http://www.brisbanenorthphn.org.au/content/Document/MNHHS%20RBWH%20Referral%20BP%20v4_11(3).rtf','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/MNHHS RBWH Referral BP v4_11(3).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 04:35:09',0),(67380,'2021-04-21 23:23:50','2021-05-15 10:52:34','9cdeccc4-fe07-4405-9a69-8db5f88c292f',1,'/page/news-and-events/events/upcoming/certificate-1-day-skin-cancer-workshop','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/certificate-1-day-skin-cancer-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 10:52:34',0),(67381,'2021-04-21 23:27:54','2021-04-24 17:08:50','f2e5f32b-2b0c-4690-ba7b-41b8aa3cc839',1,'/page/news-and-events/events/upcoming/ama-queensland-annual-conference/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/ama-queensland-annual-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 17:08:50',0),(67382,'2021-04-21 23:40:47','2021-04-23 00:22:07','858da489-dae6-4609-b308-3b996a1a7b18',1,'/page/news-and-events/latest-news/a-quick-pip-qi-update/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/news-and-events/latest-news/a-quick-pip-qi-update','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-23 00:22:07',0),(67383,'2021-04-21 23:46:22','2021-05-09 13:15:15','b2fef94e-7313-447b-9ef7-4a794e54e6d8',1,'/page/news-and-events/events/upcoming/endometriosis-and-medications/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/endometriosis-and-medications','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 13:15:15',0),(67384,'2021-04-21 23:52:23','2021-05-05 16:47:33','ffba9546-4287-44b2-90c3-94249703abae',1,'/page/news-and-events/latest-news/a-safe-space-for-mental-health-distress/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/a-safe-space-for-mental-health-distress','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-05 16:47:33',0),(67385,'2021-04-21 23:55:31','2021-05-15 09:56:51','00b19378-9239-4c7d-b452-72949f3b5d68',1,'/yearinreview/supporting-frontline-healthcare-services/www.brisbanenorthphn.org.au','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/supporting-frontline-healthcare-services/www.brisbanenorthphn.org.au','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 09:56:51',0),(67386,'2021-04-22 00:00:36','2021-05-16 07:54:04','cba401b7-7d6f-41a6-a017-f9e8f4185ea9',1,'/page/publications/newsletters/partners-in-health/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/publications/newsletters/partners-in-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 07:54:04',0),(67387,'2021-04-22 00:36:37','2021-05-01 12:02:06','593c70e0-936b-4157-bd81-cc89c28261cb',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---bellbowrie/','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---bellbowrie','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 12:02:06',0),(67388,'2021-04-22 00:36:54','2021-05-13 07:10:38','aa544d4d-5e83-4ff5-b852-4f8bb58477f0',1,'/content/Document/Pathways/HealthPathways Program Update_Apr 2019.pdf','','66.249.66.152','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/Pathways/HealthPathways Program Update_Apr 2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-13 07:10:38',0),(67389,'2021-04-22 00:37:28','2021-05-14 13:58:56','1ab78a9b-2a93-41fd-9e50-07091f9ebbcb',1,'/jobs/experienced-vr-gp','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/experienced-vr-gp','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-14 13:58:56',0),(67390,'2021-04-22 00:38:19','2021-04-22 00:38:19','f3615903-4f29-4d57-940c-b96fd7fc028d',1,'/video/29842.html','','40.77.167.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: video/29842.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 00:38:19',0),(67391,'2021-04-22 00:48:26','2021-04-24 00:38:27','0c43ff89-858c-4354-afaa-fb5ac106ae1c',1,'/page/news-and-events/events/archive/dementia-and-intellectual-disabilities---providing-care-services-to-the-person-with-this-unique-dual-diagnosis/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/dementia-and-intellectual-disabilities---providing-care-services-to-the-person-with-this-unique-dual-diagnosis','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 00:38:27',0),(67392,'2021-04-22 00:48:28','2021-04-22 00:48:28','c2a1b996-d9d4-43fa-a1aa-77133e8ee35e',1,'/page/news-and-events/latest-news/new-dedicated-service-to-support-mental-health-through-covid-19/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/new-dedicated-service-to-support-mental-health-through-covid-19','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 00:48:28',0),(67393,'2021-04-22 01:01:43','2021-04-22 01:01:43','2e9e01dc-473c-4c9e-a61f-745660ec7d2e',1,'/page/news-and-events/events/archive/young-people-and-drugs-dovetail/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/young-people-and-drugs-dovetail','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 01:01:43',0),(67394,'2021-04-22 01:08:03','2021-05-18 10:54:42','55b464cb-87ff-4d47-a7b5-06dccd1d822a',1,'/page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health--january-2017','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health--january-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 10:54:42',0),(67395,'2021-04-22 01:08:14','2021-04-22 01:08:14','871b5218-8e04-4813-9a6e-a981afa9105c',1,'/page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health-february-2017','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health-february-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 01:08:14',0),(67396,'2021-04-22 01:36:51','2021-05-18 06:41:28','0ae1140a-df7f-4ff4-982b-828779d0b99b',1,'/page/news-and-events/media-releases','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/media-releases','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 06:41:28',0),(67397,'2021-04-22 01:41:56','2021-04-22 01:41:56','61eb3cbb-7d87-439b-9ab6-71e1ffa419dc',1,'/.circleci/config.yml','','91.241.19.175','Nuclei - Open-source project (github.com/projectdiscovery/nuclei)','Template not found: .circleci/config.yml','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 01:41:56',0),(67398,'2021-04-22 02:38:28','2021-04-22 02:38:28','99ca8392-58a7-404b-acf3-1cabb2c23af8',1,'/page/home/banners/banner-1','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/banners/banner-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 02:38:28',0),(67399,'2021-04-22 02:49:06','2021-05-11 16:22:23','408d861a-b139-40b9-b0ab-fc2100758db6',1,'/content/Document/Brisbane MIND Provider List August 2017(2).pdf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List August 2017(2).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,20,'2021-05-11 16:22:23',0),(67400,'2021-04-22 02:57:02','2021-05-15 01:51:57','a53e6655-f3a8-4964-aa62-6e59a9e8bcce',1,'/events/implanon-nxt-training-1','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/implanon-nxt-training-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-15 01:51:57',0),(67401,'2021-04-22 03:22:31','2021-04-23 23:36:53','77f77c9d-c85d-42a6-abaa-61181293e204',1,'/content/Document/Brisbane MIND Provider List January 2017.pdf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List January 2017.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-23 23:36:53',0),(67402,'2021-04-22 03:51:24','2021-04-22 05:08:51','f394e51f-4cd9-4739-880c-23c3160046ef',1,'/news/c3VpY2lkZS','','40.115.67.240','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','Template not found: news/c3VpY2lkZS','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-22 05:08:51',0),(67403,'2021-04-22 04:21:14','2021-05-11 17:47:31','12a11a49-021a-4b63-b08c-9009948f9f0b',1,'/page/health-professionals/mental-health-services/information-for-providers','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/information-for-providers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-11 17:47:31',0),(67404,'2021-04-22 04:37:52','2021-04-22 04:37:52','9c3474e5-cd1e-46ac-a00b-578f2407000c',1,'/content/Document/Events/CPD 16_03_16 Online.pdf','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/CPD 16_03_16 Online.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 04:37:52',0),(67405,'2021-04-22 04:46:07','2021-05-15 16:38:28','bf5d9722-977c-4ddb-90a6-2f13dbd85ea0',1,'/page/health-professionals/multicultural-health/resources','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/multicultural-health/resources','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 16:38:28',0),(67406,'2021-04-22 04:55:16','2021-05-06 02:41:46','e1aa05a9-9e40-4cdc-a717-4c5b8c7ac416',1,'/content/Document/Templates/4.9/Specialists List_Redcliffe Hospital_4_9.pdf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.9/Specialists%20List_Redcliffe%20Hospital_4_9.pdf','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/Templates/4.9/Specialists List_Redcliffe Hospital_4_9.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 02:41:46',0),(67407,'2021-04-22 04:55:22','2021-05-08 01:54:01','3c264f03-57cd-4dfe-b4f3-b63f52366f23',1,'/content/Document/Templates/4.7/Specialists List_Redcliffe Hospital_4_7.pdf','','168.119.69.91','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.66 Safari/537.36','Template not found: content/Document/Templates/4.7/Specialists List_Redcliffe Hospital_4_7.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-08 01:54:01',0),(67408,'2021-04-22 04:56:20','2021-05-17 10:21:30','babcdf44-31cd-48b6-858e-34e1e849db28',1,'/content/Document/Templates/4.6/Specialists List_Redcliffe Hospital_4_6.pdf','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Templates/4.6/Specialists List_Redcliffe Hospital_4_6.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-17 10:21:30',0),(67409,'2021-04-22 05:05:14','2021-04-30 21:22:42','b7f94a4e-11be-43c2-b34d-60992132b270',1,'/page/news-and-events/events/upcoming/creative-careers-in-medicine-conference','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/creative-careers-in-medicine-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 21:22:42',0),(67410,'2021-04-22 05:09:29','2021-04-22 05:09:29','88d54e03-d4c9-44bd-833c-73cff6a76466',1,'/page/news-and-events/latest-news/medical-mums','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/medical-mums','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 05:09:29',0),(67411,'2021-04-22 05:39:58','2021-04-23 20:08:42','dc29079f-cf1c-48e4-98dd-3b43455b2a5b',1,'/content/Document/annual_plan_1112.pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/annual_plan_1112.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-23 20:08:42',0),(67412,'2021-04-22 06:28:22','2021-04-22 06:28:29','2b51df99-9107-409f-91cf-1af040e3186b',1,'/media/151923-Rachelle-Foreman','https://brisbanenorthphn.org.au/media/multimedia/high-resolution-images','103.87.254.78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.128 Safari/537.36','Template not found: media/151923-Rachelle-Foreman','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-22 06:28:29',0),(67413,'2021-04-22 06:59:38','2021-05-14 16:24:32','7eec96a6-28b0-4046-8c86-41b357c0fa03',1,'/content/Image/Publications/Susan_Bell.jpg','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Publications/Susan_Bell.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 16:24:32',0),(67414,'2021-04-22 08:37:20','2021-04-22 08:37:20','32fce92d-a3df-4a94-8614-2f7111821b3c',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---newstead/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---newstead','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 08:37:20',0),(67415,'2021-04-22 09:23:27','2021-05-16 10:05:13','1db4cc5c-6d3c-468c-a442-bad7608d709d',1,'/page/health-professionals/community-care/yellow-envelope/','','62.210.188.216','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)','Template not found: page/health-professionals/community-care/yellow-envelope','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-16 10:05:13',0),(67416,'2021-04-22 09:33:31','2021-05-11 17:05:18','9aa7e43e-b4f6-42aa-9aee-8365bcb18d1b',1,'/page/news-and-events/events/upcoming/engage-assess-respond-and-support-to-suicidal-young-people/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/engage-assess-respond-and-support-to-suicidal-young-people','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-11 17:05:18',0),(67417,'2021-04-22 09:37:56','2021-05-07 07:03:04','84b2506e-b928-42d4-b577-35dfb3bec208',1,'/content/Document/Brisbane MIND Provider List August 2018 v4(2).pdf','http://www.brisbanenorthphn.org.au/content/Document/Brisbane%20MIND%20Provider%20List%20August%202018%20v4(2).pdf','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/Brisbane MIND Provider List August 2018 v4(2).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-07 07:03:04',0),(67418,'2021-04-22 10:02:28','2021-05-07 01:49:26','86db90cb-e4ee-4dcd-962b-4192b398ea4b',1,'/content/Document/Pathways/Heart attack and heart failure patient info sheet.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/Heart%20attack%20and%20heart%20failure%20patient%20info%20sheet.pdf','34.121.182.57','Go-http-client/1.1','Template not found: content/Document/Pathways/Heart attack and heart failure patient info sheet.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 01:49:26',0),(67419,'2021-04-22 10:04:08','2021-04-22 10:04:08','a191a813-db1a-49f7-8d17-a445c0854de2',1,'/page/news-and-events/events/upcoming/breakthrough-family-aod-practice-forum/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/breakthrough-family-aod-practice-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 10:04:08',0),(67420,'2021-04-22 10:29:51','2021-04-29 13:30:58','f6fc2d92-8906-49ef-8150-2614e60e69b7',1,'/page/news-and-events/events/upcoming/sunshine-coast-wound-stoma-seminar/','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/sunshine-coast-wound-stoma-seminar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-29 13:30:58',0),(67421,'2021-04-22 10:48:54','2021-04-22 10:48:54','6cc2c593-a1df-4421-afb6-bd8ab1b42657',1,'/content/Document/invitation - Brisbane North Allied Health Collaborative network evening - 13 October 2016.pdf','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/invitation - Brisbane North Allied Health Collaborative network evening - 13 October 2016.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 10:48:54',0),(67422,'2021-04-22 10:54:45','2021-04-24 10:27:11','a88fbb0c-9722-4573-a176-25ff9b2b0068',1,'/content/Document/Templates/4.12/MD v4.12/MNHHS Palliative MD V4_12.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.12/MD%20v4.12/MNHHS%20Palliative%20MD%20V4_12.rtf','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/Templates/4.12/MD v4.12/MNHHS Palliative MD V4_12.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 10:27:11',0),(67423,'2021-04-22 10:58:09','2021-04-22 10:58:09','893e2fff-3cdc-4783-9157-cd21bf9a627b',1,'/royalty-free-vectors/artistic-vectors','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: royalty-free-vectors/artistic-vectors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 10:58:09',0),(67424,'2021-04-22 11:12:28','2021-05-19 01:15:39','74c9f59a-8dd4-45f8-a567-5d9aba7553be',1,'/page/health-professionals/Local Positions Vacant/practice-nurse-nundah/','','17.121.113.191','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse-nundah','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-19 01:15:39',0),(67425,'2021-04-22 11:21:53','2021-05-02 12:56:18','a370e85a-ecb7-4d8f-94bc-8ee87324596a',1,'/content/Document/FORM 1 - AHP Referral for Additional Sessions (2).docx','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/FORM 1 - AHP Referral for Additional Sessions (2).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-02 12:56:18',0),(67426,'2021-04-22 11:36:18','2021-04-24 11:26:14','02fd891b-fe93-4fe2-88e7-8dba84183838',1,'/content/Document/Templates/4.12/MD v4.12/MNHHS Paediatric MD V4_12.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.12/MD%20v4.12/MNHHS%20Paediatric%20MD%20V4_12.rtf','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/Templates/4.12/MD v4.12/MNHHS Paediatric MD V4_12.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 11:26:14',0),(67427,'2021-04-22 11:38:43','2021-05-17 07:34:51','ad6e361e-a7ac-4150-b9f1-29aa7809946e',1,'/jobs/medical-receptionist-everton-hills-brisbane-qld','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/medical-receptionist-everton-hills-brisbane-qld','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 07:34:51',0),(67428,'2021-04-22 11:53:35','2021-04-24 16:59:42','1b5fa8ba-60bb-41c9-80bd-40b3e0b441c2',1,'/page/health-professionals/Local Positions Vacant/vr-gp-required---mcdowall-village-medical-practice/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/vr-gp-required---mcdowall-village-medical-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 16:59:42',0),(67429,'2021-04-22 12:49:34','2021-04-22 12:49:34','29cff598-1c1c-4ced-805a-93a24e1464d8',1,'/content/Document/PD_PIRManager_160622.pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/PD_PIRManager_160622.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 12:49:34',0),(67430,'2021-04-22 12:52:40','2021-04-22 12:52:40','63d47374-712d-422e-87a0-d1f62405a78c',1,'/page/news-and-events/events/upcoming/north-brisbane-mental-health-expo-–-choose-your-own-adventure/','http://www.brisbanenorthphn.org.au/page/news-and-events/events/upcoming/north-brisbane-mental-health-expo-%E2%80%93-choose-your-own-adventure/','172.104.14.124','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1 Safari/605.1.15','Template not found: page/news-and-events/events/upcoming/north-brisbane-mental-health-expo-–-choose-your-own-adventure','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 12:52:40',0),(67431,'2021-04-22 13:20:42','2021-04-22 13:20:42','67329300-10b2-4e59-a9b1-5b70a375889b',1,'/content/Document/PD_Vacant_AdminSupportIntegration_151015.pdf','','40.77.167.20','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/PD_Vacant_AdminSupportIntegration_151015.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 13:20:42',0),(67432,'2021-04-22 13:29:37','2021-05-16 07:40:32','6bf04f49-6332-4c8d-947d-6c806f6d6656',1,'/page/news-and-events/latest-news/have-your-say-on-naming-queenslands-childrens-hospital/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/have-your-say-on-naming-queenslands-childrens-hospital','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 07:40:32',0),(67433,'2021-04-22 13:31:36','2021-05-17 05:28:22','6f408c55-6fb7-4b7b-a9f6-f41985796ed2',1,'/content/Document/Primary care liaison/MNHHS RBWH Ref v6_2 MD(1).rtf','','1.132.16.172','Microsoft Office Word/2.49.510 (iOS/14.4.2; Tablet; en-GB; AppStore; Apple/iPad11,3)','Template not found: content/Document/Primary care liaison/MNHHS RBWH Ref v6_2 MD(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-17 05:28:22',0),(67434,'2021-04-22 13:32:53','2021-04-27 23:19:17','829d1fb8-4ecb-4d65-933b-075e985bfd89',1,'/page/health-professionals/Local Positions Vacant/receptionist-required---everton-hills-medical-centre/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/receptionist-required---everton-hills-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-27 23:19:17',0),(67435,'2021-04-22 14:13:59','2021-04-22 14:13:59','5f5a2453-9731-4f34-925c-003f333969ab',1,'/sites/default/files/user-content/media_health_minister_on_hand.pdf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: sites/default/files/user-content/media_health_minister_on_hand.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 14:13:59',0),(67436,'2021-04-22 14:21:04','2021-05-10 19:35:56','728e53b3-1f6f-4806-b993-1ae292bb34e7',1,'/content/Document/PLN_Communications and social media toolkit_Metro North Health Forum 2016 - website.pdf','','66.249.68.2','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/PLN_Communications and social media toolkit_Metro North Health Forum 2016 - website.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-10 19:35:56',0),(67437,'2021-04-22 14:22:09','2021-05-09 04:57:08','1d494df3-3393-45ca-aebb-f26c1d540220',1,'/content/Document/Nick Steele - MNHF2018.pdf','http://www.brisbanenorthphn.org.au/content/Document/Nick%20Steele%20-%20MNHF2018.pdf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Nick Steele - MNHF2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-09 04:57:08',0),(67438,'2021-04-22 14:25:21','2021-04-27 11:37:05','4201a803-11cf-4de7-b653-6f124b2bab69',1,'/content/Document/Pathways/NVDPA-Managment-Guideline-Quick-Reference-Guide_Page 5.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/NVDPA-Managment-Guideline-Quick-Reference-Guide_Page%205.pdf','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/Pathways/NVDPA-Managment-Guideline-Quick-Reference-Guide_Page 5.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-27 11:37:05',0),(67439,'2021-04-22 14:30:09','2021-04-22 14:30:09','6af81353-3bf4-4823-ab2f-1c74dff952bd',1,'/content/Document/Events/2019/mnhf-GP-breafkast2019-register-now.pdf','','163.172.107.199','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.104 Safari/537.36','Template not found: content/Document/Events/2019/mnhf-GP-breafkast2019-register-now.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 14:30:09',0),(67440,'2021-04-22 14:45:08','2021-05-01 18:46:26','e074c2c3-6384-4230-b977-3deb39dfc75d',1,'/page/publications/partners-in-health/partners-in-health-june-2018','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/partners-in-health-june-2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 18:46:26',0),(67441,'2021-04-22 14:54:36','2021-05-16 18:07:04','d25eddab-8a12-407e-833c-d7bb53398869',1,'/page/news-and-events/events/upcoming/understanding-and-responding-to-prolonged-grief-disorder/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/understanding-and-responding-to-prolonged-grief-disorder','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 18:07:04',0),(67442,'2021-04-22 14:56:38','2021-04-22 14:56:38','ce33c548-4171-4980-96a9-730a5ecb3377',1,'/page/news-and-events/latest-news/blueprint-for-building-a-lived-experience-workforce','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/blueprint-for-building-a-lived-experience-workforce','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 14:56:38',0),(67443,'2021-04-22 15:09:35','2021-04-22 15:09:35','d9f8acca-9af9-4a4a-93fb-719c6d49a5b7',1,'/page/health-professionals/Local Positions Vacant/gp-required-narangba-family-medical-practice/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/gp-required-narangba-family-medical-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 15:09:35',0),(67444,'2021-04-22 15:28:26','2021-04-22 15:28:26','f9bfbfd1-78e5-47dc-9491-d230522ca0bd',1,'/page/news-and-events/latest-news/brisbane-mind-plus-ereferral-has-changed','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/brisbane-mind-plus-ereferral-has-changed','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 15:28:26',0),(67445,'2021-04-22 16:10:00','2021-05-11 19:07:08','8b424054-7cbc-403e-914c-95bdfc65585e',1,'/page/news-and-events/latest-news/congratulations-to-shaun-drummond-chief-executive-of-2019/','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/latest-news/congratulations-to-shaun-drummond-chief-executive-of-2019','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-11 19:07:08',0),(67446,'2021-04-22 16:23:01','2021-04-24 03:22:42','64d16e42-278e-4843-806b-d37de39f0943',1,'/page/health-professionals/Local Positions Vacant/vr-gp-required---family-practice-at-the-gap/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/vr-gp-required---family-practice-at-the-gap','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 03:22:42',0),(67447,'2021-04-22 16:40:02','2021-05-01 22:33:53','761ff15b-d865-40af-8a9a-b8ef9889db18',1,'/page/news-and-events/latest-news/community-awareness-campaigns-are-starting-conversations','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/community-awareness-campaigns-are-starting-conversations','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 22:33:53',0),(67448,'2021-04-22 16:45:12','2021-04-22 16:45:12','971ba7bb-7b51-4e32-8d19-19529fa041d1',1,'/page/news-and-events/events/upcoming/women-in-medicine-breakfast/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/women-in-medicine-breakfast','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 16:45:12',0),(67449,'2021-04-22 17:09:42','2021-05-12 13:11:47','84c183a1-0c8e-42cb-bf22-276cb68185d1',1,'/page/news-and-events/latest-news/metro-north-trials-new-redbook-cover-for-indigenous-families','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/metro-north-trials-new-redbook-cover-for-indigenous-families','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 13:11:47',0),(67450,'2021-04-22 17:37:54','2021-04-24 08:54:57','45b250c5-cb9a-4386-9220-48af739638a9',1,'/page/news-and-events/events/upcoming/gp-education-evening-racgp/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/gp-education-evening-racgp','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 08:54:57',0),(67451,'2021-04-22 17:38:17','2021-05-07 22:06:44','b1cac0a5-aa78-4db6-8d30-e2196b5546f4',1,'/page/news-and-events/events/upcoming/gpgeneralist-gastroenterology-and-hepatology-update/','','66.249.69.63','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/gpgeneralist-gastroenterology-and-hepatology-update','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-07 22:06:44',0),(67452,'2021-04-22 17:45:09','2021-04-27 03:46:58','f4959345-7268-4343-9abb-5c15c3f84084',1,'/page/news-and-events/events/upcoming/taking-care-of-patients-with-kidney-disease-in-the-covid-19-era','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/taking-care-of-patients-with-kidney-disease-in-the-covid-19-era','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-27 03:46:58',0),(67453,'2021-04-22 17:47:52','2021-04-22 17:47:52','011e42d7-f7ce-4b49-a74a-178ab1a85e55',1,'/tel:0438 271 939','https://www.google.com/','35.227.166.115','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','Template not found: tel:0438 271 939','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 17:47:52',0);
INSERT INTO `retour_stats` VALUES (67454,'2021-04-22 17:56:56','2021-05-03 14:35:40','e94e6dbc-8464-45e2-830c-64428c18d914',1,'/content/Document/Pathways/AF and heart failure patient info.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/AF%20and%20heart%20failure%20patient%20info.pdf','34.73.220.108','Go-http-client/1.1','Template not found: content/Document/Pathways/AF and heart failure patient info.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-03 14:35:40',0),(67455,'2021-04-22 18:54:27','2021-05-11 15:02:15','ec9dbf3c-a370-4ce3-a8dd-9928bab2a128',1,'/page/news-and-events/events/upcoming/accreditation-insights-into-racgp-5th-edition-update-support-and-resources---lutwyche','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/accreditation-insights-into-racgp-5th-edition-update-support-and-resources---lutwyche','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-11 15:02:15',0),(67456,'2021-04-22 19:14:41','2021-04-24 13:25:12','5f0018dc-8f53-4408-86cd-79e4e6d97d0b',1,'/page/health-professionals/Local Positions Vacant/casual-reception-staff---morayfield/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/casual-reception-staff---morayfield','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-24 13:25:12',0),(67457,'2021-04-22 19:15:55','2021-04-24 07:37:03','26b804e2-4d2c-4ff5-8083-86173bcd1404',1,'/page/health-professionals/immunisation/instructional-videos-for-the-australian-immunisation-register/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/immunisation/instructional-videos-for-the-australian-immunisation-register','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 07:37:03',0),(67458,'2021-04-22 19:38:52','2021-05-16 10:00:46','57a64e72-f440-4a67-a103-53cfda93201a',1,'/events/childhood-overweight-and-obesity-project-echo-series','','62.210.188.216','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)','Template not found: events/childhood-overweight-and-obesity-project-echo-series','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,70,'2021-05-16 10:00:46',0),(67459,'2021-04-22 19:40:20','2021-04-24 16:38:19','adcf2357-f1a2-4749-ba01-2b770df54ecc',1,'/page/health-professionals/Local Positions Vacant/gp-required---anchor-medical/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/gp-required---anchor-medical','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 16:38:19',0),(67460,'2021-04-22 19:56:49','2021-05-11 01:33:25','438d2474-6be2-4511-b88b-b6000bb2819e',1,'/content/Document/Events/2019/INVITATION - Shared care program - OCT 19_PRINTv2.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/INVITATION%20-%20Shared%20care%20program%20-%20OCT%2019_PRINTv2.pdf','35.192.197.124','Go-http-client/1.1','Template not found: content/Document/Events/2019/INVITATION - Shared care program - OCT 19_PRINTv2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 01:33:25',0),(67461,'2021-04-22 20:15:37','2021-04-22 23:35:30','6c342792-e423-41a1-8bda-2911fd091f2a',1,'/page/health-professionals/Local Positions Vacant/other-health-professional---chermside/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/health-professionals/Local Positions Vacant/other-health-professional---chermside','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-22 23:35:30',0),(67462,'2021-04-22 20:21:49','2021-04-22 20:21:49','3faf738e-e6f0-4ed0-9cc2-76a7030aa47b',1,'/events/trauma-nursing','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/trauma-nursing','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 20:21:49',0),(67463,'2021-04-22 20:31:57','2021-05-12 18:14:49','de4015d1-dac5-4192-ba68-d993247c9f8c',1,'/content/Document/Templates/4.8/MNHHS Caboolture Referral MD v4_8.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.8/MNHHS%20Caboolture%20Referral%20MD%20v4_8.rtf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Templates/4.8/MNHHS Caboolture Referral MD v4_8.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 18:14:49',0),(67464,'2021-04-22 20:34:54','2021-05-02 00:38:14','72f3b2cc-2ad2-4aaf-9df2-6cfa4e259209',1,'/page/news-and-events/latest-news/copd---in-conversation-with-dr-kerry-hancock','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/copd---in-conversation-with-dr-kerry-hancock','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-02 00:38:14',0),(67465,'2021-04-22 20:35:23','2021-04-22 20:35:23','68e1d420-a16a-4351-8f5c-62d4792adb20',1,'/jobs/front-office-team-member','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/front-office-team-member','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 20:35:23',0),(67466,'2021-04-22 20:54:41','2021-05-12 11:38:53','516825bf-c04d-4348-a2d5-83fd66546374',1,'/page/news-and-events/latest-news/feedback-sought-on-community-palliative-care/','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/feedback-sought-on-community-palliative-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-12 11:38:53',0),(67467,'2021-04-22 20:55:55','2021-05-06 20:05:01','063470fc-5e1d-46a0-b414-cc75257a5ed2',1,'/page/news-and-events/events/upcoming/gp-mental-health-skills-master-class/','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/gp-mental-health-skills-master-class','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-06 20:05:01',0),(67468,'2021-04-22 21:00:21','2021-04-22 21:00:21','356234d0-f70b-4100-b800-c3b40879cb91',1,'/page/news-and-events/events/upcoming/bstrong-brief-intervention---half-day-workshop/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/news-and-events/events/upcoming/bstrong-brief-intervention---half-day-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 21:00:21',0),(67469,'2021-04-22 21:01:08','2021-04-22 21:01:08','dd3b1056-31ee-4903-be85-5658fc152701',1,'/page/news-and-events/events/upcoming/assessment-and-management-of-neck-and-upper-back-pain/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/news-and-events/events/upcoming/assessment-and-management-of-neck-and-upper-back-pain','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 21:01:08',0),(67470,'2021-04-22 21:02:21','2021-05-16 07:37:12','24a953e9-0416-40ee-99ab-60ad0c7aa49e',1,'/page/news-and-events/latest-news/follow-up-care-for-older-people-who-fall-at-home/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/follow-up-care-for-older-people-who-fall-at-home','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 07:37:12',0),(67471,'2021-04-22 21:04:39','2021-05-16 04:52:10','9d9ce2c1-663f-4cb1-bbbb-9b314288f2f4',1,'/content/Document/Pathways/Memantine_140430 (3).pdf','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Memantine_140430 (3).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 04:52:10',0),(67472,'2021-04-22 21:06:18','2021-05-19 00:37:54','c346451c-9d67-4382-a3ae-830db8e279c5',1,'/page/news-and-events/latest-news/gps-with-a-special-interest-project-providing-timely-care/','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/gps-with-a-special-interest-project-providing-timely-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-19 00:37:54',0),(67473,'2021-04-22 21:09:14','2021-04-22 21:09:26','46aa3a39-ba5c-48fd-97be-ec4192fda03c',1,'/content/Image/Page Banners/Banner_page_covid-purple.jpg','','173.252.127.41','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: content/Image/Page Banners/Banner_page_covid-purple.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-22 21:09:26',0),(67474,'2021-04-22 21:09:52','2021-04-22 21:09:52','e060f76f-24ef-486d-8067-dcf6d3f0b5ae',1,'/page/news-and-events/2017-news/primary-health-budget-measures-welcomed/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/news-and-events/2017-news/primary-health-budget-measures-welcomed','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 21:09:52',0),(67475,'2021-04-22 21:12:37','2021-04-24 13:44:49','e6fba9e0-9448-444e-92c0-8e76ba2e4eef',1,'/page/news-and-events/2017-news/doctor-dad-joins-medical-mums-immunisation-campaign/','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/2017-news/doctor-dad-joins-medical-mums-immunisation-campaign','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 13:44:49',0),(67476,'2021-04-22 21:14:12','2021-04-22 21:14:12','2fe475cb-ef83-4800-b711-5a0fd444105c',1,'/page/news-and-events/2017-news/after-hours-campaign-provides-emergency-alternatives/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/news-and-events/2017-news/after-hours-campaign-provides-emergency-alternatives','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 21:14:12',0),(67477,'2021-04-22 21:15:00','2021-04-27 20:00:24','43327637-24c9-40c3-8924-1c4ff438f696',1,'/page/news-and-events/2017-news/','','209.58.163.231','Mozilla/5.0 (Windows NT 10.0; WOW64; Rv:50.0) Gecko/20100101 Firefox/50.0','Template not found: page/news-and-events/2017-news','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-27 20:00:24',0),(67478,'2021-04-22 21:16:58','2021-04-24 10:06:45','b8c4e0f3-deab-4b84-bb4d-c7c76576e60a',1,'/page/home/style-guide/grid-listing/item-2/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/home/style-guide/grid-listing/item-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 10:06:45',0),(67479,'2021-04-22 21:17:47','2021-04-24 10:01:26','13fd522a-7acb-4a33-ae09-0b4cd1b0a029',1,'/page/home/style-guide/grid-listing/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/home/style-guide/grid-listing','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 10:01:26',0),(67480,'2021-04-22 21:18:35','2021-05-18 01:34:59','0f43436b-516d-4d72-b3f2-0d598bc9ef52',1,'/page/home/style-guide/accordion-listing/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/style-guide/accordion-listing','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-18 01:34:59',0),(67481,'2021-04-22 21:20:11','2021-05-07 00:19:08','9d8e90a6-623f-4d58-b3b8-48b6f4c8b554',1,'/page/home/featurettes/','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/featurettes','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-07 00:19:08',0),(67482,'2021-04-22 21:20:35','2021-05-05 05:57:13','34fa4d7a-6ed7-41d8-913b-b423bb34d54c',1,'/page/home/developer/','','78.46.61.245','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/home/developer','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-05 05:57:13',0),(67483,'2021-04-22 21:28:40','2021-04-30 07:38:37','c530122d-69b2-4cd6-a782-6d2d1479c748',1,'/page/health-professionals/multicultural-health/resources/','','95.91.15.174','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/health-professionals/multicultural-health/resources','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 07:38:37',0),(67484,'2021-04-22 21:29:50','2021-04-30 07:38:25','9c034d6b-fe39-48f4-9b69-c5552533381f',1,'/page/health-professionals/multicultural-health/living-well-with-chronic-disease/','','95.91.15.174','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/health-professionals/multicultural-health/living-well-with-chronic-disease','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 07:38:25',0),(67485,'2021-04-22 21:31:32','2021-04-22 21:31:32','48d71b2d-0bbc-486c-9c4a-02aa934a3d91',1,'/events/managing-care-dealing-underperformance-bullying-complaints-and-dismissals','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/managing-care-dealing-underperformance-bullying-complaints-and-dismissals','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 21:31:32',0),(67486,'2021-04-22 21:32:33','2021-05-19 00:28:52','4a84ce38-ab5e-4688-9338-8e342f4bcaaa',1,'/page/health-professionals/mental-health-services/our-approach-to-stepped-care/','','51.81.71.230','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','Template not found: page/health-professionals/mental-health-services/our-approach-to-stepped-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-19 00:28:52',0),(67487,'2021-04-22 21:34:30','2021-04-22 21:34:30','0b14ff68-03c0-4a92-9665-e5bb2f97f381',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/carers-and-consumers/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services/carers-and-consumers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 21:34:30',0),(67488,'2021-04-22 21:38:01','2021-04-28 19:53:20','4a253c8c-097d-4c8d-85b5-06fd4c6e3927',1,'/page/health-professionals/immunisation/campaigns/','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/immunisation/campaigns','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-28 19:53:20',0),(67489,'2021-04-22 21:39:59','2021-05-17 18:56:44','2b573001-b9b2-4c47-a409-57c6519d8c28',1,'/page/health-professionals/digital-health/health-data/murrumba-downs-practice-shares-data-success/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/digital-health/health-data/murrumba-downs-practice-shares-data-success','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-17 18:56:44',0),(67490,'2021-04-22 21:41:58','2021-05-10 09:42:31','36d3003b-72cd-4438-91ea-a35155119b6e',1,'/page/health-professionals/community-care/sector-development/local-resident-and-former-gp-reflects-on-healthy-ageing-at-100/','','66.249.69.33','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/community-care/sector-development/local-resident-and-former-gp-reflects-on-healthy-ageing-at-100','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 09:42:31',0),(67491,'2021-04-22 21:42:21','2021-05-18 04:02:15','4f79e6b7-67f6-477d-8c75-21b7be13e81d',1,'/page/health-professionals/community-care/sector-development/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/community-care/sector-development','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-18 04:02:15',0),(67492,'2021-04-22 21:44:02','2021-04-24 19:25:52','080b975c-1984-4230-b02e-d2ef83497701',1,'/content/Document/Brisbane MIND Group Listing 2017-18 Aug V1.pdf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Group Listing 2017-18 Aug V1.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 19:25:52',0),(67493,'2021-04-22 21:45:10','2021-04-22 21:45:10','e0c857ed-e115-4393-a4fb-980fbb8daf99',1,'/page/news-and-events/latest-news/health-alliance-team-member-a-finalist-in-metro-north-awards/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/news-and-events/latest-news/health-alliance-team-member-a-finalist-in-metro-north-awards','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 21:45:10',0),(67494,'2021-04-22 21:45:35','2021-05-16 07:41:06','9fee3366-c02b-45cf-be89-7e63ce760267',1,'/page/news-and-events/latest-news/healthpathways-milestone-reached-with-400-published-pathways/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/healthpathways-milestone-reached-with-400-published-pathways','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 07:41:06',0),(67495,'2021-04-22 21:46:22','2021-05-16 07:41:27','6d46b801-e4aa-4cf3-a711-ccc0198660ea',1,'/page/news-and-events/latest-news/help-for-mothers-experiencing-postnatal-challenges/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/help-for-mothers-experiencing-postnatal-challenges','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 07:41:27',0),(67496,'2021-04-22 21:46:46','2021-04-22 21:46:46','437ce2ad-e607-46ad-bc2a-61f7fc9716e4',1,'/page/news-and-events/latest-news/helping-people-find-their-reason-to-stay/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/news-and-events/latest-news/helping-people-find-their-reason-to-stay','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 21:46:46',0),(67497,'2021-04-22 21:49:35','2021-05-17 23:39:40','1c275704-6730-4a8c-bed0-233f68e9f647',1,'/page/news-and-events/latest-news/integrated-suicide-prevention-initiatives-aim-to-save-lives/','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/integrated-suicide-prevention-initiatives-aim-to-save-lives','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-17 23:39:40',0),(67498,'2021-04-22 21:54:02','2021-05-16 07:44:41','a7401162-4836-455f-814c-2be1fff1b27c',1,'/page/news-and-events/latest-news/measles-alert-for-brisbane---27-december-2018/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/measles-alert-for-brisbane---27-december-2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 07:44:41',0),(67499,'2021-04-22 21:55:16','2021-05-16 07:44:59','c248ca8c-1037-4388-b116-b806d3482cc5',1,'/page/news-and-events/latest-news/measles-alert-for-brisbane-and-gold-coast-areas/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/measles-alert-for-brisbane-and-gold-coast-areas','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-16 07:44:59',0),(67500,'2021-04-22 21:56:52','2021-05-16 15:00:34','29bcc713-f2cc-48ed-b387-2f4321b1fe20',1,'/page/news-and-events/latest-news/mental-health-tenders-now-open/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/mental-health-tenders-now-open','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 15:00:34',0),(67501,'2021-04-22 21:58:30','2021-05-13 04:57:27','1855f668-9944-48d2-972f-1af54540a77a',1,'/content/Document/Events/2019/Metro North Health Forum/MNHF19 - Tonita Taylor and Prof Brett Emerson.pdf','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Events/2019/Metro North Health Forum/MNHF19 - Tonita Taylor and Prof Brett Emerson.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 04:57:27',0),(67502,'2021-04-22 22:00:33','2021-05-16 07:46:03','68112efc-3117-4c9c-92e0-7d40c476034e',1,'/page/news-and-events/latest-news/my-health-for-life-being-put-into-practice/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/my-health-for-life-being-put-into-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 07:46:03',0),(67503,'2021-04-22 22:03:24','2021-05-16 07:46:45','cefaffcc-7af4-443d-bb3f-a6e1b814cac1',1,'/page/news-and-events/latest-news/my-health-record-opt-out-period-commences/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/my-health-record-opt-out-period-commences','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 07:46:45',0),(67504,'2021-04-22 22:04:36','2021-05-16 07:47:04','afcaa90c-fe08-4a02-823e-7b6880ce7509',1,'/page/news-and-events/latest-news/new-campaign-targets-vaccination-for-older-people/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/new-campaign-targets-vaccination-for-older-people','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-16 07:47:04',0),(67505,'2021-04-22 22:09:52','2021-04-22 22:09:52','979d8004-2d5d-4abb-9b7a-227ebfc6230d',1,'/page/news-and-events/latest-news/our-year-in-review-18-19/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/news-and-events/latest-news/our-year-in-review-18-19','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 22:09:52',0),(67506,'2021-04-22 22:11:41','2021-04-22 22:11:41','ca93d8e1-a553-4087-abde-d2e464b6735b',1,'/content/Document/Invitation - Nursing Partnership Breakfast.pdf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Invitation - Nursing Partnership Breakfast.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 22:11:41',0),(67507,'2021-04-22 22:12:21','2021-05-16 07:48:45','3dccf431-4317-47db-a218-9175cc4fd472',1,'/page/news-and-events/latest-news/peaks-take-a-stand-on-marriage-equality/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/peaks-take-a-stand-on-marriage-equality','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 07:48:45',0),(67508,'2021-04-22 22:14:22','2021-05-16 07:49:12','a3d403b4-5a6e-4585-8c8e-d83a10324283',1,'/page/news-and-events/latest-news/pledge-your-commitment-to-improving-healthcare-for-older-people/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/pledge-your-commitment-to-improving-healthcare-for-older-people','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 07:49:12',0),(67509,'2021-04-22 22:15:59','2021-05-16 07:49:28','79ebf33b-9c25-430c-8263-0a99545a4c55',1,'/page/news-and-events/latest-news/preventing-measles-in-our-community/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/preventing-measles-in-our-community','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-16 07:49:28',0),(67510,'2021-04-22 22:16:24','2021-05-12 03:42:14','b4c4ea05-5d93-417d-bfd2-4e0c7938bd19',1,'/page/news-and-events/latest-news/primary-care-is-key-to-sexual-health/','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/latest-news/primary-care-is-key-to-sexual-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 03:42:14',0),(67511,'2021-04-22 22:18:24','2021-05-16 07:49:55','a017080c-d8c4-4b36-ae3a-09c72d82c1e1',1,'/page/news-and-events/latest-news/public-consultation-infant-pneumococcal-vaccination-schedule-recommendations/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/public-consultation-infant-pneumococcal-vaccination-schedule-recommendations','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-16 07:49:55',0),(67512,'2021-04-22 22:18:48','2021-05-01 13:17:40','2da9f312-348b-420d-a3f3-383f692bcff2',1,'/page/health-professionals/community-care/regional-assessment-service/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/community-care/regional-assessment-service','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-01 13:17:40',0),(67513,'2021-04-22 22:19:43','2021-04-22 22:19:43','f3471950-a079-4071-8fbd-4c704f3d2c85',1,'/content/Document/Brisbane MIND Group Listing 2017-18 Sept V1.pdf','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Group Listing 2017-18 Sept V1.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 22:19:43',0),(67514,'2021-04-22 22:20:51','2021-05-16 07:50:11','dacc254b-c286-4d97-8220-7295900a0554',1,'/page/news-and-events/latest-news/record-crowd-expected-for-metro-north-health-forum/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/record-crowd-expected-for-metro-north-health-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-16 07:50:11',0),(67515,'2021-04-22 22:22:29','2021-05-16 07:50:32','c98ee0ac-622f-40bc-8657-9e1269855f1f',1,'/page/news-and-events/latest-news/save-the-date-metro-north-health-forum/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/save-the-date-metro-north-health-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 07:50:32',0),(67516,'2021-04-22 22:26:34','2021-05-16 07:51:12','aacac251-7c88-43eb-ae17-99c7813189ce',1,'/page/news-and-events/latest-news/supporting-residents-of-aged-care/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/supporting-residents-of-aged-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-16 07:51:12',0),(67517,'2021-04-22 22:26:58','2021-05-18 05:28:44','f5c06761-9e79-4c59-9d5a-458226676e38',1,'/page/news-and-events/latest-news/surveys-reveal-high-praise-for-goas-project/','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/surveys-reveal-high-praise-for-goas-project','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-18 05:28:44',0),(67518,'2021-04-22 22:33:25','2021-05-16 10:12:27','78068bc4-196c-4e5c-8c91-c3be32fab461',1,'/events/gp-workshop-recognising-diagnosing-and-managing-dementia-in-general-practice','','62.210.188.216','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)','Template not found: events/gp-workshop-recognising-diagnosing-and-managing-dementia-in-general-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 10:12:27',0),(67519,'2021-04-22 22:33:55','2021-05-16 07:52:17','8023836a-f630-4f50-b334-198098ee7909',1,'/page/news-and-events/latest-news/we-are-looking-for-a-nurse-network-coordinator/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/we-are-looking-for-a-nurse-network-coordinator','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 07:52:17',0),(67520,'2021-04-22 22:35:05','2021-05-16 07:52:32','d240736c-77a5-49df-8fbc-9da7efcd2e3d',1,'/page/news-and-events/latest-news/workshop-helps-build-capacity-of-consumers/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/workshop-helps-build-capacity-of-consumers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-16 07:52:32',0),(67521,'2021-04-22 22:39:34','2021-05-06 15:39:55','c3e22dd5-9336-42e5-9a2f-474d2306eaa1',1,'/page/news-and-events/metro-north-health-forum/2018-metro-north-health-forum/record-crowd-expected-for-metro-north-health-forum/','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/metro-north-health-forum/2018-metro-north-health-forum/record-crowd-expected-for-metro-north-health-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 15:39:55',0),(67522,'2021-04-22 22:42:43','2021-05-16 07:54:19','7b2f4bee-5644-4820-a74e-ded9ce3ff349',1,'/page/publications/newsletters/subscribe/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/publications/newsletters/subscribe','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 07:54:19',0),(67523,'2021-04-22 22:43:30','2021-04-22 22:43:30','edbe055c-cee0-4c07-8aa3-95297bbee3f3',1,'/page/publications/partners-in-health/archive/partners-in-health-2017/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/publications/partners-in-health/archive/partners-in-health-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 22:43:30',0),(67524,'2021-04-22 22:43:54','2021-04-22 22:43:54','b571d5c2-fe6e-443d-9c2a-571289240036',1,'/page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health---december-2017/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health---december-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 22:43:54',0),(67525,'2021-04-22 22:44:18','2021-04-22 22:44:18','124c3909-35c0-4341-931d-7659122fe006',1,'/page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health---november-2017/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health---november-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 22:44:18',0),(67526,'2021-04-22 22:44:43','2021-04-22 22:44:43','8230ca30-eaf9-4d40-bfae-10dfa62d83a0',1,'/page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health---october-2017/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health---october-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 22:44:43',0),(67527,'2021-04-22 22:45:06','2021-04-26 02:03:30','eed22c98-2f06-4355-84b7-5fa580cbd88d',1,'/page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health--january-2017/','','95.91.76.7','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health--january-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-26 02:03:30',0),(67528,'2021-04-22 22:45:55','2021-05-13 07:24:05','b92e788e-f2d4-486b-ac49-dc42a9a5af8e',1,'/page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health-august-2017/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health-august-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-13 07:24:05',0),(67529,'2021-04-22 22:46:43','2021-04-28 21:50:04','4d207103-e5c4-47f6-bdbb-2166088ca33b',1,'/page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health-july-2017/','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health-july-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-28 21:50:04',0),(67530,'2021-04-22 22:47:07','2021-04-22 22:47:07','df01c879-2765-4683-be9f-7f355d342206',1,'/content/Document/PD_AgedCareOfficer_151210.pdf','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/PD_AgedCareOfficer_151210.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 22:47:07',0),(67531,'2021-04-22 22:48:19','2021-05-13 11:06:53','5a57c191-85ff-4d8b-8c79-b664791f2f92',1,'/page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health-september-2017/','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health-september-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-13 11:06:53',0),(67532,'2021-04-22 22:49:55','2021-04-27 12:19:02','96e8f889-9b3a-4d19-9301-a8a70f97854d',1,'/page/publications/partners-in-health/partners-in-health-june-2018/','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/partners-in-health-june-2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-27 12:19:02',0),(67533,'2021-04-22 22:51:32','2021-05-07 22:03:56','df19f263-9f26-442c-83b3-d640bde829bf',1,'/page/publications/recovery/recovery-June-2019/','','66.249.69.33','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/publications/recovery/recovery-June-2019','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 22:03:56',0),(67534,'2021-04-22 22:53:09','2021-05-16 07:54:43','504350c3-04fe-4385-b7fa-3b605b198d1d',1,'/page/publications/reports-and-plans/annual-reports/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/publications/reports-and-plans/annual-reports','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 07:54:43',0),(67535,'2021-04-22 22:54:23','2021-05-16 13:52:22','84a6c25f-b112-4dc2-b2e5-13003fd86f06',1,'/page/publications/reports-and-plans/regional-plans/','','66.249.69.36','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/publications/reports-and-plans/regional-plans','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 13:52:22',0),(67536,'2021-04-22 23:02:10','2021-05-09 14:29:05','5dd053db-4744-4f53-a034-bb80531ff190',1,'/page/health-professionals/Local Positions Vacant/psychologist---morayfield/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/psychologist---morayfield','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-09 14:29:05',0),(67537,'2021-04-22 23:02:34','2021-05-14 23:06:48','778ee6ea-5c6c-429e-ae36-f9ad7fb8d819',1,'/page/health-professionals/Local Positions Vacant/psychologist---chermside/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/psychologist---chermside','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-14 23:06:48',0),(67538,'2021-04-22 23:04:11','2021-04-22 23:31:24','7a78f989-8238-49e1-9073-7692410c62e0',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---carseldine/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---carseldine','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-22 23:31:24',0),(67539,'2021-04-22 23:04:19','2021-04-22 23:04:19','f9266ee1-9ec8-4b28-a9bd-7d9bbe224cb3',1,'/position-type/male-counsellor','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: position-type/male-counsellor','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 23:04:19',0),(67540,'2021-04-22 23:04:34','2021-04-27 09:46:36','13ba3eb9-1088-4dad-b03a-8c2e2ca6e557',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---caboolture/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---caboolture','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-27 09:46:36',0),(67541,'2021-04-22 23:05:24','2021-04-22 23:32:37','c52b9c24-c848-4559-8282-d62d60901e30',1,'/page/health-professionals/Local Positions Vacant/practice-manager---sandgate/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/health-professionals/Local Positions Vacant/practice-manager---sandgate','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-22 23:32:37',0),(67542,'2021-04-22 23:06:13','2021-04-22 23:33:52','f37e37fc-0f68-42ef-8713-7118beedee58',1,'/page/health-professionals/Local Positions Vacant/other-health-professional---morayfield/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/health-professionals/Local Positions Vacant/other-health-professional---morayfield','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-22 23:33:52',0),(67543,'2021-04-22 23:07:26','2021-04-23 05:32:14','2baf26b3-ef97-4c44-8573-ba0346693c32',1,'/page/health-professionals/Local Positions Vacant/other-health-professional---deception-bay/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/other-health-professional---deception-bay','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-23 05:32:14',0),(67544,'2021-04-22 23:08:42','2021-05-16 21:22:48','10126ccb-e085-481e-9884-462f1d724737',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---redcliffe-2','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---redcliffe-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 21:22:48',0),(67545,'2021-04-22 23:09:05','2021-05-11 23:52:58','1a868904-4941-45af-8e5f-20e8acbd119d',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---taringa/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---taringa','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-11 23:52:58',0),(67546,'2021-04-22 23:10:18','2021-04-22 23:37:56','a12e5a23-63d3-4417-a15f-96f7dada9c09',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---margate/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---margate','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-22 23:37:56',0),(67547,'2021-04-22 23:10:43','2021-05-16 08:43:42','5e39651b-9dd6-4bb8-8e43-4dacf8aa3cee',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---eatons-hill/','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---eatons-hill','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-16 08:43:42',0),(67548,'2021-04-22 23:11:56','2021-04-22 23:39:33','857ba3f7-20e6-4855-8381-a9c9a6808c3c',1,'/page/health-professionals/Local Positions Vacant/medical-officer-gp-nurse-practitioner---windsor/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/health-professionals/Local Positions Vacant/medical-officer-gp-nurse-practitioner---windsor','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-22 23:39:33',0),(67549,'2021-04-22 23:12:20','2021-04-25 15:28:02','fcc8d8b3-3cb9-43d6-bb9b-0b136bec9900',1,'/page/health-professionals/Local Positions Vacant/list-your-job/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/list-your-job','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-04-25 15:28:02',0),(67550,'2021-04-22 23:12:45','2021-04-24 01:36:17','531a4da7-021e-435e-b644-89ef1589f50f',1,'/page/health-professionals/Local Positions Vacant/lead-medical-educator---windsor/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/lead-medical-educator---windsor','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 01:36:17',0),(67551,'2021-04-22 23:13:08','2021-04-22 23:40:22','201c5792-b331-4fc0-b2de-1a74b7d4aac3',1,'/page/health-professionals/Local Positions Vacant/gp-locum---kallangur/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/health-professionals/Local Positions Vacant/gp-locum---kallangur','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-22 23:40:22',0),(67552,'2021-04-22 23:13:32','2021-04-22 23:40:46','70989ef5-c20f-4abe-89bd-79055f07e196',1,'/page/health-professionals/Local Positions Vacant/generalp--albany/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/health-professionals/Local Positions Vacant/generalp--albany','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-22 23:40:46',0),(67553,'2021-04-22 23:13:56','2021-04-22 23:41:10','e08d37be-88ca-4272-891c-453e70bf82a1',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-chermside-mc/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-chermside-mc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-22 23:41:10',0),(67554,'2021-04-22 23:14:21','2021-04-25 14:49:57','6606b4d4-726b-4f29-b018-dcf0337828d1',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-chermside-2/','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.130 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-chermside-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-25 14:49:57',0),(67555,'2021-04-22 23:14:45','2021-04-22 23:42:00','d408ff8c-6c3f-4d2f-8c78-ec98f1a2e3f9',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-caboolture-4/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-caboolture-4','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-22 23:42:00',0),(67556,'2021-04-22 23:15:10','2021-04-22 23:42:24','e14a4637-2399-436d-8e43-d4a728ab753f',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-caboolture-3/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-caboolture-3','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-22 23:42:24',0),(67557,'2021-04-22 23:15:33','2021-04-22 23:42:49','c218beaf-00df-4e92-a516-69874a098cd8',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-beachmere-gp/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-beachmere-gp','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-22 23:42:49',0),(67558,'2021-04-22 23:15:59','2021-04-22 23:43:13','530fa4d7-d7c0-4ff6-949d-f2b1b8529bc4',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-aspley/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-aspley','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-22 23:43:13',0),(67559,'2021-04-22 23:16:23','2021-04-28 10:33:14','d746b3a2-79ad-4d4f-8e78-b919a5e8ec65',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---woodford/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---woodford','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-28 10:33:14',0),(67560,'2021-04-22 23:17:14','2021-04-27 18:25:09','173834c1-665b-4d1c-a0dd-b686e8542f0a',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---spring-hill/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---spring-hill','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-27 18:25:09',0),(67561,'2021-04-22 23:18:54','2021-05-12 22:46:51','67b09374-6de6-44b6-88c7-d95dfe59d726',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---morayfield/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---morayfield','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-12 22:46:51',0),(67562,'2021-04-22 23:19:18','2021-05-03 13:48:57','cffb02f5-09d8-42b7-a335-441fdc5e807f',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---maroochydore/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---maroochydore','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-03 13:48:57',0),(67563,'2021-04-22 23:19:43','2021-04-22 23:46:52','3cebc026-bb95-4cc2-a004-523fd74c5096',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---lawnton/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---lawnton','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-22 23:46:52',0),(67564,'2021-04-22 23:20:58','2021-05-15 06:43:40','41dce870-03c4-4f25-b95a-66862d017bb6',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---dayboro/','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---dayboro','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 06:43:40',0),(67565,'2021-04-22 23:21:50','2021-04-24 13:52:41','5891997a-9f5c-4656-9949-5d665d46384b',1,'/page/news-and-events/events/upcoming/best-practice-governance-for-nfp-boards/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/best-practice-governance-for-nfp-boards','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 13:52:41',0),(67566,'2021-04-22 23:24:21','2021-04-29 12:12:19','c4e8c43e-1b95-40f3-9fae-cf991b061752',1,'/page/news-and-events/events/archive/immunisation-catch-up-for-practice-nurses-north-lakes---august-2016/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/immunisation-catch-up-for-practice-nurses-north-lakes---august-2016','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-29 12:12:19',0),(67567,'2021-04-22 23:26:43','2021-04-22 23:26:43','88fd5551-1651-41af-85d1-cc48dbd2ada7',1,'/page/news-and-events/events/archive/domestic-violence-seminar-series---non-lethal-strangulation-best-practice-medical-responses /','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/domestic-violence-seminar-series---non-lethal-strangulation-best-practice-medical-responses ','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 23:26:43',0),(67568,'2021-04-22 23:27:44','2021-04-22 23:52:02','00551b6d-9328-4ce8-a47d-d27c38b237d5',1,'/page/health-professionals/Local Positions Vacant/dietician---eatons-hill/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/health-professionals/Local Positions Vacant/dietician---eatons-hill','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-22 23:52:02',0),(67569,'2021-04-22 23:28:08','2021-04-29 15:43:43','e64ffe6b-0140-4387-8948-67ec14c7a8eb',1,'/page/health-professionals/Local Positions Vacant/client-liaison-officer---morayfield/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/client-liaison-officer---morayfield','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-29 15:43:43',0),(67570,'2021-04-22 23:29:40','2021-04-22 23:29:40','6ee6bfdc-9690-4587-b796-2aa90683e7cc',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/carers-and-consumers/contact','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services/carers-and-consumers/contact','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 23:29:40',0),(67571,'2021-04-22 23:33:03','2021-05-09 09:59:05','d9dfe876-647b-4c17-b25d-8ebc5e4947fa',1,'/page/health-professionals/Local Positions Vacant/podiatrist---eatons-hill/','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/podiatrist---eatons-hill','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 09:59:05',0),(67572,'2021-04-22 23:38:10','2021-04-22 23:38:10','a05df28f-db85-467a-9766-de636b9d9f05',1,'/page/news-and-events/events/archive/healthy-eating-activity-and-lifestyle-heal™-facilitator-training/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/healthy-eating-activity-and-lifestyle-heal™-facilitator-training','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-22 23:38:10',0),(67573,'2021-04-22 23:52:13','2021-05-02 05:11:46','53f87c05-3619-48a4-a2bb-2d0b440f9749',1,'/content/Document/Templates/5.3/MNHHS Paediatric 5_3 MD .rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%20Paediatric%20%205_3%20MD%20.rtf','104.198.141.65','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS Paediatric 5_3 MD .rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-02 05:11:46',0),(67574,'2021-04-22 23:53:58','2021-05-02 10:26:53','12efcdcd-e6e5-43ae-9dd8-d66f574ff309',1,'/page/contact-us/visitors/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/contact-us/visitors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-02 10:26:53',0),(67575,'2021-04-22 23:57:32','2021-05-15 19:02:00','3c5a3762-c0c2-4851-afd8-438a057bb5b8',1,'/page/community/','','66.249.69.63','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/community','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-15 19:02:00',0),(67576,'2021-04-23 00:01:37','2021-05-16 18:00:21','9ce95077-780e-4ce9-b2de-26bd3ff7add2',1,'/page/about/our-planning/engage-with-us/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/our-planning/engage-with-us','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 18:00:21',0),(67577,'2021-04-23 00:02:48','2021-05-01 20:48:03','a309b977-dca0-495b-8618-eeb726a49a4e',1,'/page/about/commissioning/what-you-can-expect/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/commissioning/what-you-can-expect','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-01 20:48:03',0),(67578,'2021-04-23 00:03:37','2021-05-01 07:18:27','7f983a4e-b00a-4bf1-96dc-da6281a09c40',1,'/page/about/commissioning/register-to-access-the-toolkit/','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/commissioning/register-to-access-the-toolkit','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-01 07:18:27',0),(67579,'2021-04-23 00:04:47','2021-04-23 00:04:47','c687f635-a84c-48f6-a90d-b512e8250aea',1,'/page/news-and-events/events/archive/lifestyle-medicine-2020','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/lifestyle-medicine-2020','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 00:04:47',0),(67580,'2021-04-23 00:05:35','2021-04-23 00:05:35','fc09bc46-8eae-4577-b648-64d30b584be1',1,'/page/about/careers/health-data-officer/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/about/careers/health-data-officer','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 00:05:35',0),(67581,'2021-04-23 00:07:40','2021-04-23 00:07:40','73ed16c6-99e5-4a70-a002-c285163d1522',1,'/content/Media/Genie V5.3/MNHHS Redcliffe Referral v5.3 Genie.4W7','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: content/Media/Genie V5.3/MNHHS Redcliffe Referral v5.3 Genie.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 00:07:40',0),(67582,'2021-04-23 00:08:05','2021-04-23 00:08:05','2a56837a-410c-42e4-b946-cac165acc0f1',1,'/content/Media/Genie V5.3/MNHHS RBWH Referral v5.3 Genie.4W7','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: content/Media/Genie V5.3/MNHHS RBWH Referral v5.3 Genie.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 00:08:05',0),(67583,'2021-04-23 00:08:30','2021-05-03 18:59:47','64c9cdf2-29bf-4e34-b02c-60dd027ffe51',1,'/content/Media/Genie V5.3/MNHHS Palliative Care Referral v5.3 Genie.4W7','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Media/Genie V5.3/MNHHS Palliative Care Referral v5.3 Genie.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-03 18:59:47',0),(67584,'2021-04-23 00:08:56','2021-04-23 00:08:56','211c12cf-61d3-4ac5-b543-15dfcbdb4856',1,'/content/Media/Genie V5.3/MNHHS Paediatric Referral v5.3 Genie.4W7','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: content/Media/Genie V5.3/MNHHS Paediatric Referral v5.3 Genie.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 00:08:56',0),(67585,'2021-04-23 00:09:21','2021-04-23 00:09:21','f33f9330-e1c7-4534-9b58-dd88170a1011',1,'/content/Media/Genie V5.3/MNHHS Maternity v5.3 Genie.4W7','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: content/Media/Genie V5.3/MNHHS Maternity v5.3 Genie.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 00:09:21',0),(67586,'2021-04-23 00:09:47','2021-04-23 00:09:47','2fb0b3b8-0e61-40f6-96a2-5f79cd559e12',1,'/content/Media/Genie V5.3/MNHHS Caboolture Hospital v5.3 Genie.4W7','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: content/Media/Genie V5.3/MNHHS Caboolture Hospital v5.3 Genie.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 00:09:47',0),(67587,'2021-04-23 00:10:12','2021-05-10 16:30:05','13b24a76-b63a-4992-a0dc-e2f67d08582b',1,'/content/Document/Templates/TCC/Teamcare Referral Genie 130604.4W7','','66.249.69.63','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Templates/TCC/Teamcare Referral Genie 130604.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-10 16:30:05',0),(67588,'2021-04-23 00:11:00','2021-04-23 04:19:38','ef88cf19-2ee4-4ecc-a2e2-4a94abc9ff36',1,'/page/news-and-events/events/upcoming/hands--on-skin-cancer-medicine-courses-for-gps-by-gps/','','95.91.15.174','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/hands--on-skin-cancer-medicine-courses-for-gps-by-gps','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-23 04:19:38',0),(67589,'2021-04-23 00:11:23','2021-04-29 05:06:58','ead42253-bcc4-42fc-88b9-02b3b5b99b44',1,'/page/news-and-events/events/upcoming/paediatric-masterclass-for-general-practice-2019/','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/paediatric-masterclass-for-general-practice-2019','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-29 05:06:58',0),(67590,'2021-04-23 00:11:47','2021-05-14 11:07:45','ce82cce1-5495-4d12-bc9a-79ceeb1eb34d',1,'/page/news-and-events/events/upcoming/perinatal-in-practice/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/perinatal-in-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-14 11:07:45',0),(67591,'2021-04-23 00:12:34','2021-04-23 00:12:34','0ac878e1-7359-4634-9735-1f07935b70ed',1,'/page/news-and-events/events/upcoming/phu-immunisation-catch-up-north-lakes/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/news-and-events/events/upcoming/phu-immunisation-catch-up-north-lakes','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 00:12:34',0),(67592,'2021-04-23 00:12:57','2021-04-23 00:12:57','7b480cb9-700e-4522-8a7d-45baeffbe092',1,'/page/news-and-events/events/upcoming/point-of-care-testing-scientific-education-meeting/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/news-and-events/events/upcoming/point-of-care-testing-scientific-education-meeting','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 00:12:57',0),(67593,'2021-04-23 00:13:21','2021-04-23 00:13:21','eca0e9d1-207b-4b93-bf75-542caa00c3cc',1,'/page/news-and-events/events/upcoming/regional-private-practice-seminar-performance-management-nov/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/news-and-events/events/upcoming/regional-private-practice-seminar-performance-management-nov','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 00:13:21',0),(67594,'2021-04-23 00:13:45','2021-04-23 00:13:45','342f7c87-a1c9-46ff-859b-5782157f4854',1,'/page/news-and-events/events/upcoming/regional-private-practice-seminar-performance-management-oct/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/news-and-events/events/upcoming/regional-private-practice-seminar-performance-management-oct','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 00:13:45',0),(67595,'2021-04-23 00:14:33','2021-04-29 05:42:50','12012507-2ff1-4933-ac40-42924a5d41b8',1,'/page/news-and-events/events/upcoming/rural-anaesthetic-crisis-management/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/rural-anaesthetic-crisis-management','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-29 05:42:50',0),(67596,'2021-04-23 00:14:57','2021-05-13 06:13:52','84ccbe15-9d29-4089-8b6a-59024df1f60c',1,'/page/news-and-events/events/upcoming/rural-emergency-obstetrics-training/','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/rural-emergency-obstetrics-training','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-13 06:13:52',0),(67597,'2021-04-23 00:15:44','2021-04-29 05:14:04','7c6307d7-8a04-459c-8097-df0f13be156e',1,'/page/news-and-events/events/upcoming/spiritual-aspects-of-palliative-care/','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/spiritual-aspects-of-palliative-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-29 05:14:04',0),(67598,'2021-04-23 00:16:07','2021-04-23 00:16:07','0e6e478c-1aa6-4c21-9bad-39a1a4ec9e7d',1,'/page/news-and-events/events/upcoming/sti-and-bbv-nursing-an-introduction/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/news-and-events/events/upcoming/sti-and-bbv-nursing-an-introduction','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 00:16:07',0),(67599,'2021-04-23 00:16:56','2021-05-01 20:38:06','c0796cbc-1010-4039-abc9-267f22059368',1,'/page/news-and-events/events/upcoming/towards-wellbeing-conference/','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/towards-wellbeing-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-01 20:38:06',0),(67600,'2021-04-23 00:20:55','2021-05-15 22:51:54','d6b347aa-f93f-454b-98a3-e142e4e31d63',1,'/page/news-and-events/latest-news/a-commitment-to-quality-improvement/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/a-commitment-to-quality-improvement','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 22:51:54',0),(67601,'2021-04-23 00:23:45','2021-05-14 09:38:45','894a2d75-bc89-4c1e-9da9-14b38d4295d0',1,'/page/news-and-events/latest-news/access-a-greater-range-of-mental-health-services-with-brisbane-mind-plus/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/access-a-greater-range-of-mental-health-services-with-brisbane-mind-plus','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-14 09:38:45',0),(67602,'2021-04-23 00:26:10','2021-04-23 00:26:10','9988d2a7-5d83-4f98-a972-25a420862d8b',1,'/page/news-and-events/latest-news/an-ongoing-commitment-to-collaboration/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/news-and-events/latest-news/an-ongoing-commitment-to-collaboration','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 00:26:10',0),(67603,'2021-04-23 00:28:33','2021-05-17 08:22:44','026ba472-cc9a-4158-9880-305f1d217d39',1,'/page/news-and-events/latest-news/caring-at-home-website-launched/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/caring-at-home-website-launched','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-17 08:22:44',0),(67604,'2021-04-23 00:31:00','2021-04-27 16:07:16','b8ec29e4-7a1d-4b2a-9496-c70125b5cbbd',1,'/page/news-and-events/latest-news/community-awareness-campaigns-are-starting-conversations/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/community-awareness-campaigns-are-starting-conversations','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-27 16:07:16',0),(67605,'2021-04-23 00:35:10','2021-05-06 15:51:58','6dab7090-c374-486d-9d70-a8672fd5b671',1,'/jobs/gp-position','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/gp-position','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-06 15:51:58',0),(67606,'2021-04-23 00:35:21','2021-05-15 17:47:34','cafb3505-7b93-4dc8-8d3d-ff0f480c7731',1,'/page/news-and-events/latest-news/director-opportunities-available-at-brisbane-north-phn/','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/director-opportunities-available-at-brisbane-north-phn','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-15 17:47:34',0),(67607,'2021-04-23 00:39:44','2021-04-23 00:39:44','1a8ea37c-1be0-4e4b-8e73-4967d1361a3d',1,'/page/news-and-events/events/upcoming/open-disclosure-workshop/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/news-and-events/events/upcoming/open-disclosure-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 00:39:44',0),(67608,'2021-04-23 00:40:33','2021-05-04 16:49:28','2169a9ca-3bcc-49b9-a59b-b45bf047c1ad',1,'/page/news-and-events/events/upcoming/mental-health-skills-training-online/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/mental-health-skills-training-online','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-04 16:49:28',0),(67609,'2021-04-23 00:40:57','2021-04-23 00:40:57','7e073185-7355-4e83-958c-79f73225b1ac',1,'/page/news-and-events/events/upcoming/mastering-patient-care-allergy-and-asthma-2019/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/news-and-events/events/upcoming/mastering-patient-care-allergy-and-asthma-2019','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 00:40:57',0),(67610,'2021-04-23 00:41:22','2021-04-29 05:00:55','bb8b943a-35fd-431e-958e-5364b092778b',1,'/page/news-and-events/events/upcoming/managing-the-general-practice-waiting-room/','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/managing-the-general-practice-waiting-room','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-29 05:00:55',0),(67611,'2021-04-23 00:41:45','2021-05-16 21:41:48','23efb4da-ac23-46d5-91c0-907eba621cfa',1,'/page/news-and-events/events/upcoming/magnetism-and-the-mind/','','157.55.39.35','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/magnetism-and-the-mind','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 21:41:48',0),(67612,'2021-04-23 00:41:46','2021-05-18 18:46:38','fbcab622-1b5a-47e0-aaa7-23d5b8b8dcd2',1,'/jobs/vr-gp-wanted-at-clayfield','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/vr-gp-wanted-at-clayfield','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-18 18:46:38',0),(67613,'2021-04-23 00:42:10','2021-05-08 16:40:55','395c1dde-21db-43bf-b6d5-461ae4c3ad8a',1,'/page/news-and-events/events/upcoming/joint-national-and-international-conference-on-obesity-and-related-chronic-disease-post-conference-cpd-masterclass-with-dr-david-katz/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/joint-national-and-international-conference-on-obesity-and-related-chronic-disease-post-conference-cpd-masterclass-with-dr-david-katz','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-08 16:40:55',0),(67614,'2021-04-23 00:42:36','2021-04-26 12:34:24','f4eb3e10-46a4-406f-adb2-e82fff6378b2',1,'/page/news-and-events/events/upcoming/introduction-to-animal-assisted-therapy/','','46.4.60.249','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/introduction-to-animal-assisted-therapy','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-26 12:34:24',0),(67615,'2021-04-23 00:43:06','2021-04-25 20:04:54','c016140d-b755-477c-89dd-7b83083723c7',1,'/page/news-and-events/events/upcoming/improving-risk-management-with-quality-improvement/','','5.9.61.101','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/improving-risk-management-with-quality-improvement','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-25 20:04:54',0),(67616,'2021-04-23 00:43:29','2021-05-17 10:34:56','361b22fe-87a0-4c84-9395-6f23e846ced5',1,'/page/news-and-events/events/upcoming/improving-risk-management-with-quality-improvement-lutwyche/','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/improving-risk-management-with-quality-improvement-lutwyche','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-17 10:34:56',0),(67617,'2021-04-23 00:43:52','2021-04-23 00:43:52','0ac721df-2e1c-4d4b-be7c-1d16253c06cb',1,'/page/news-and-events/events/upcoming/hepatitis-b-nursing-advanced-management-and-care/','','192.36.198.145','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0','Template not found: page/news-and-events/events/upcoming/hepatitis-b-nursing-advanced-management-and-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 00:43:52',0),(67618,'2021-04-23 00:51:41','2021-05-16 09:59:27','d9e980c8-f3a2-4405-bbe6-c4d925395617',1,'/jobs/practice-nurse-rn-wanted-at-everton-hills','','62.210.188.216','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)','Template not found: jobs/practice-nurse-rn-wanted-at-everton-hills','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-16 09:59:27',0),(67619,'2021-04-23 00:54:25','2021-05-17 23:13:57','0b06692e-6ec9-47fe-b359-662ef83c6dbc',1,'/events/privacy-in-practice-management-guidelines-for-practice-managers-owners','','157.55.39.23','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/privacy-in-practice-management-guidelines-for-practice-managers-owners','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-17 23:13:57',0),(67620,'2021-04-23 00:55:57','2021-04-23 00:55:57','25ef2f0a-aaf7-4157-b4eb-429e77f422c8',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---scarborough/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---scarborough','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 00:55:57',0),(67621,'2021-04-23 01:00:39','2021-04-23 01:00:39','560d7250-5afd-4c7e-8c43-1c778694fd7f',1,'/blog/wp-config.php.save','','23.254.55.121','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36','Template not found: blog/wp-config.php.save','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 01:00:39',0),(67622,'2021-04-23 01:00:39','2021-04-23 01:00:39','2b35c902-3310-4516-b66b-1d99b4289a1a',1,'/blog/wp-config.php--','','23.254.55.120','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36','Template not found: blog/wp-config.php--','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 01:00:39',0),(67623,'2021-04-23 01:00:39','2021-04-23 01:00:39','5689f1cd-3d7b-421d-b0bd-ffb3c37a8852',1,'/blog/wp-config.php.mtbak','','23.254.17.45','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36','Template not found: blog/wp-config.php.mtbak','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 01:00:39',0),(67624,'2021-04-23 01:00:40','2021-04-23 01:00:40','053b69d5-0a33-463c-8da6-919da42c7530',1,'/blog/wp-config.php.bak','','23.254.17.86','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36','Template not found: blog/wp-config.php.bak','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 01:00:40',0),(67625,'2021-04-23 01:00:40','2021-04-23 01:00:40','e7eea265-6277-4dab-a89b-0c16252e08ac',1,'/blog/wp-config.php_bak','','23.254.17.42','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36','Template not found: blog/wp-config.php_bak','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 01:00:40',0),(67626,'2021-04-23 01:13:43','2021-05-05 18:57:39','dbc013c0-4c1c-4d9c-b57c-837bd98ff418',1,'/content/Document/Network Link/Network_Link_May2020_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%20Link/Network_Link_May2020_WEB.pdf','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/Network Link/Network_Link_May2020_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-05 18:57:39',0),(67627,'2021-04-23 01:30:42','2021-04-23 01:30:42','7dd23731-5c48-48a3-83af-465905036be1',1,'/content/Document/Position Descriptions/PD_Development Lead_Care Coord_190603.pdf','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Position Descriptions/PD_Development Lead_Care Coord_190603.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 01:30:42',0),(67628,'2021-04-23 01:54:41','2021-05-06 17:26:24','60e33121-13f5-421a-955e-56779b8f327d',1,'/events/alcohol-and-other-drugs-project-information-session-1','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/alcohol-and-other-drugs-project-information-session-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 17:26:24',0),(67629,'2021-04-23 02:05:33','2021-05-11 01:40:00','b0c0731f-211c-4f6d-9a63-b467ca3484e2',1,'/page/about/careers/senior-management-accountant/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers/senior-management-accountant','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-11 01:40:00',0),(67630,'2021-04-23 02:06:13','2021-05-08 05:51:35','ed54556d-5d6c-48b8-bbfb-afdc6932f6eb',1,'/page/about/our-region/health-planning/','','49.187.50.21','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','Template not found: page/about/our-region/health-planning','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-08 05:51:35',0),(67631,'2021-04-23 02:07:05','2021-05-02 03:02:49','f97c4ead-fdb0-4c59-aa01-303c35a7e502',1,'/page/health-professionals/Local Positions Vacant/clinical-education-lead/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/clinical-education-lead','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-02 03:02:49',0),(67632,'2021-04-23 02:07:48','2021-05-19 00:09:36','f519b5e7-a331-4cd6-af10-599095630ab3',1,'/page/health-professionals/immunisation/immunisation-records-and-data-explained/','','157.55.39.101','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/immunisation/immunisation-records-and-data-explained','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-19 00:09:36',0),(67633,'2021-04-23 02:08:34','2021-05-05 07:24:41','7f9a43a7-d4ae-4bff-9016-db862052fb54',1,'/page/health-professionals/immunisation/immunisation-updates/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/immunisation/immunisation-updates','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-05 07:24:41',0),(67634,'2021-04-23 02:09:58','2021-05-10 04:31:55','9926638c-199d-4162-af17-1bf89acdc744',1,'/page/health-professionals/immunisation/useful-immunisation-links/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/immunisation/useful-immunisation-links','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-10 04:31:55',0),(67635,'2021-04-23 02:10:37','2021-04-23 02:10:37','f1719586-7c1f-4a6f-9c37-16688dd11dad',1,'/page/health-professionals/local positions vacant/general-practitioner-required---sunshine-skin-clinic','http://brisbanenorthphn.org.au/page/health-professionals/local+positions+vacant/general-practitioner-required---sunshine-skin-clinic','35.210.213.154','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/health-professionals/local positions vacant/general-practitioner-required---sunshine-skin-clinic','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 02:10:37',0),(67636,'2021-04-23 02:11:39','2021-04-23 02:11:39','4afacb4c-4121-49f1-9287-6233f296a802',1,'/page/health-professionals/my-health-record/about-my-health-record/','','167.114.211.237','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/health-professionals/my-health-record/about-my-health-record','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 02:11:39',0),(67637,'2021-04-23 02:15:02','2021-04-24 08:44:18','3eae178d-30e2-42c6-bbc4-f556ec4e54a6',1,'/page/news-and-events/events/upcoming/polio-australia---free-clinical-practice-workshop/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/polio-australia---free-clinical-practice-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 08:44:18',0),(67638,'2021-04-23 02:15:49','2021-04-24 08:47:18','f5084113-bc76-472c-a0ce-78441ac3550b',1,'/page/news-and-events/events/upcoming/setting-up-a-private-practice---17-november/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/setting-up-a-private-practice---17-november','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 08:47:18',0),(67639,'2021-04-23 02:16:41','2021-04-24 08:48:40','46e246a2-c2ce-4652-9b23-8f60ac683c03',1,'/page/news-and-events/events/upcoming/setting-up-a-private-practice---25-august/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/setting-up-a-private-practice---25-august','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 08:48:40',0),(67640,'2021-04-23 02:17:29','2021-04-24 08:49:33','0f80af4c-b50f-4115-a540-065d0f4861b4',1,'/page/news-and-events/events/upcoming/simghosts/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/simghosts','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 08:49:33',0),(67641,'2021-04-23 02:18:24','2021-05-19 00:30:52','536b69a4-c300-46c6-81aa-f0296219e4b2',1,'/page/news-and-events/events/upcoming/working-with-children-and-adolescents-affected-by-dv/','','40.77.167.15','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/working-with-children-and-adolescents-affected-by-dv','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-19 00:30:52',0),(67642,'2021-04-23 02:22:24','2021-04-24 09:39:57','f10db77c-c92a-489e-9981-ec10bc7eaf23',1,'/page/publications/partners-in-health/partners-in-health---december-2017/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/publications/partners-in-health/partners-in-health---december-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 09:39:57',0),(67643,'2021-04-23 02:24:04','2021-04-27 14:07:12','8019ac0c-13e3-4743-b292-a505c385d85c',1,'/page/publications/partners-in-health/partners-in-health-august-2017/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/publications/partners-in-health/partners-in-health-august-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-27 14:07:12',0),(67644,'2021-04-23 02:45:56','2021-04-26 15:19:48','3f87d1d7-ad4e-4726-a26f-2d7580a6c979',1,'/help/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: help','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-26 15:19:48',0),(67645,'2021-04-23 02:46:27','2021-04-24 13:41:27','d3f49fb0-8cc1-4f81-b061-f0ab3c9775eb',1,'/page/news-and-events/events/upcoming/acute-rheumatic-fever-and-rheumatic-heart-disease-workshop/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/acute-rheumatic-fever-and-rheumatic-heart-disease-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 13:41:27',0),(67646,'2021-04-23 02:56:13','2021-04-23 04:12:34','b393f6c7-ae78-490e-88d3-6bd5d173b795',1,'/page/news-and-events/events/upcoming/managing-difficult-behaviours-webinar/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/managing-difficult-behaviours-webinar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-23 04:12:34',0),(67647,'2021-04-23 03:27:27','2021-04-23 03:27:27','681b192e-dda3-481e-bcd0-0bf9b2fa3ae9',1,'/content/Image/credentialing ','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.80 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Image/credentialing ','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 03:27:27',0),(67648,'2021-04-23 03:27:33','2021-04-23 03:27:33','377b52d7-5409-4802-902e-df2342d36279',1,'/content/Image/News Images/Banner_older man in care.jpg','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.80 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Image/News Images/Banner_older man in care.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 03:27:33',0),(67649,'2021-04-23 03:27:40','2021-05-15 13:15:01','9628352f-0e40-4594-99bb-dcb261cffb6b',1,'/content/Image/banner_page_phn2.jpg','','49.12.67.51','Mozilla/5.0 (X11; Fedora; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36','Template not found: content/Image/banner_page_phn2.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-15 13:15:01',0),(67650,'2021-04-23 03:27:47','2021-04-23 03:27:47','8ef434d4-6fb3-4c4f-baec-2fbca5d21943',1,'/content/Image/Home Page Slider Banners/web_banner_agedcare6.jpg','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.80 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Image/Home Page Slider Banners/web_banner_agedcare6.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 03:27:47',0),(67651,'2021-04-23 03:27:54','2021-04-23 03:27:54','451ebcb1-25d2-4f71-9a88-aa264b3e62da',1,'/content/Image/News Images/Banner_news_walkingstick_230x230.jpg','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.80 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Image/News Images/Banner_news_walkingstick_230x230.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 03:27:54',0),(67652,'2021-04-23 03:28:02','2021-05-15 13:14:34','4d2eed35-acae-4828-bcab-421af6435a7c',1,'/content/Image/health-professionals.jpg','','49.12.67.51','Mozilla/5.0 (X11; Fedora; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36','Template not found: content/Image/health-professionals.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-15 13:14:34',0),(67653,'2021-04-23 03:44:34','2021-04-23 03:44:34','27e96563-c649-45af-be76-419e8a77f07a',1,'/content/Image/Page Banners/web_banner_mymentalhealth_v3.jpg','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.80 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Image/Page Banners/web_banner_mymentalhealth_v3.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 03:44:34',0),(67654,'2021-04-23 03:53:56','2021-04-23 03:53:56','9a9779c6-9857-464c-8cb8-962a758ea314',1,'/page/health-professionals/mental-health-services/brisbane-mind4kids/carers-and-consumers/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/mental-health-services/brisbane-mind4kids/carers-and-consumers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 03:53:56',0),(67655,'2021-04-23 03:54:05','2021-05-18 05:11:40','6ea4bc1a-2c3f-4143-966a-e9734786f178',1,'/content/Document/','','49.197.143.34','Microsoft Office Word/2.49.510 (iOS/14.4.2; Phone; en-GB; AppStore; Apple/iPhone13,4)','Template not found: content/Document','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,57,'2021-05-18 05:11:40',0),(67656,'2021-04-23 03:54:12','2021-05-14 02:30:57','5303860a-0f4d-444a-8b2d-b15d14c11d8b',1,'/content/Document/FIN_Paediatric%20Services%20Directory%20Overview%20v1_0_March%202017.docx','','165.86.81.100','Microsoft Office Word/2.48.406 (iOS/14.4.2; Tablet; en-GB; AppStore; Apple/iPad6,12)','Template not found: content/Document/FIN_Paediatric Services Directory Overview v1_0_March 2017.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,18,'2021-05-14 02:30:57',0),(67657,'2021-04-23 03:58:22','2021-05-14 21:58:15','a518adc0-4e47-4df1-b94b-c2560051eff8',1,'/content/Document/Fertility Symposium - Final Program - 18 June 2016.pdf','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Fertility Symposium - Final Program - 18 June 2016.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-14 21:58:15',0),(67658,'2021-04-23 04:22:56','2021-05-10 10:30:50','d22f4bbe-eab1-45cc-809b-1cd8011023b6',1,'/content/Image/Jeff_Cheverton_2015_1.jpg','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Jeff_Cheverton_2015_1.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-10 10:30:50',0),(67659,'2021-04-23 04:47:27','2021-05-11 14:03:41','64015424-ef99-4e57-a5b2-441f033f3924',1,'/content/Document/BNPHN_Year_in_Review_2016_FINAL.pdf','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/BNPHN_Year_in_Review_2016_FINAL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-11 14:03:41',0),(67660,'2021-04-23 04:53:12','2021-04-23 04:53:12','458f076f-24bb-49f8-a169-9ce702f2b04d',1,'/page/news-and-events/events/archive/trauma-informed-care-and-practice-for-domestic-and-family-violence-services-level-1/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/trauma-informed-care-and-practice-for-domestic-and-family-violence-services-level-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 04:53:12',0),(67661,'2021-04-23 05:14:51','2021-04-28 19:14:54','7495b426-27b5-4757-a891-b764246b9613',1,'/page/health-professionals/Local Positions Vacant/neurotechnicians---morayfield','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/neurotechnicians---morayfield','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-28 19:14:54',0),(67662,'2021-04-23 05:15:29','2021-05-10 21:28:30','56294b32-d605-4ae0-80df-165481745cbb',1,'/jobs/ft-or-pt-general-practitioner','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/ft-or-pt-general-practitioner','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-10 21:28:30',0),(67663,'2021-04-23 06:09:04','2021-04-24 10:37:40','13c9cd63-5e7a-46e2-b9cd-7b665abbb906',1,'/news.','','167.100.110.29','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.96 Safari/537.36','Template not found: news.','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-04-24 10:37:40',0),(67664,'2021-04-23 06:47:03','2021-05-04 18:09:50','95ab317f-82ee-46ca-b96d-82c8557fd2c7',1,'/content/Document/Events/2019/Metro North Health Forum/MN_Health_Forum_Exhibition_Prospectus_2019_Final(1).pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2019/Metro North Health Forum/MN_Health_Forum_Exhibition_Prospectus_2019_Final(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-04 18:09:50',0),(67665,'2021-04-23 06:57:39','2021-05-11 02:08:19','e38ade2e-7d89-4e2f-8390-9497f2027fc9',1,'/jobs/gp-required','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/gp-required','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-11 02:08:19',0),(67666,'2021-04-23 07:10:03','2021-04-23 07:10:03','b33e0685-55d4-4e77-a778-0e88ae683827',1,'/page/about/careers/community-stakeholder-and-engagement-officer/','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.80 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/about/careers/community-stakeholder-and-engagement-officer','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 07:10:03',0),(67667,'2021-04-23 07:11:03','2021-05-08 11:29:03','a5110905-de80-4049-9983-066dc4b2a4f3',1,'/content/Document/Templates/MNHHS COHD BP v6_1.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/MNHHS%20COHD%20BP%20v6_1.rtf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Templates/MNHHS COHD BP v6_1.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-08 11:29:03',0),(67668,'2021-04-23 07:13:51','2021-04-23 07:13:51','ff135a92-638d-4ecb-b574-422714d1461d',1,'/page/news-and-events/events/upcoming/managing-heart-failure-from-hospital-to-home-course','http://brisbanenorthphn.org.au/page/news-and-events/events/upcoming/managing-heart-failure-from-hospital-to-home-course','35.210.133.25','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/events/upcoming/managing-heart-failure-from-hospital-to-home-course','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 07:13:51',0),(67669,'2021-04-23 07:50:12','2021-05-14 03:33:40','6e2364fa-7faa-42ce-aac3-eefe2ce4412c',1,'/page/news-and-events/latest-news/supporting-neurofibromatosis-patients','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/supporting-neurofibromatosis-patients','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-14 03:33:40',0),(67670,'2021-04-23 08:02:53','2021-05-08 18:48:30','f86dcbdc-a5f5-4ca8-a087-8abf7a5b6f50',1,'/content/Document/Templates/4.9/MNHHS RBWH Referral MD v4_9.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.9/MNHHS%20RBWH%20Referral%20MD%20v4_9.rtf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Templates/4.9/MNHHS RBWH Referral MD v4_9.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-08 18:48:30',0),(67671,'2021-04-23 08:12:27','2021-04-23 08:12:27','abb9334b-f4bf-45ee-a336-02d32e78f398',1,'/content/Document/Jeff Cheverton Memorial Scholarship 2018.pdf','','207.46.13.105','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Jeff Cheverton Memorial Scholarship 2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 08:12:27',0),(67672,'2021-04-23 08:33:48','2021-04-24 09:24:21','6059c1ba-b36c-4a34-a977-67f01030135c',1,'/page/news-and-events/latest-news/phn-funds-wesley-lifeforce-suicide-prevention-training-workshops/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/latest-news/phn-funds-wesley-lifeforce-suicide-prevention-training-workshops','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 09:24:21',0),(67673,'2021-04-23 08:48:39','2021-04-23 08:48:42','85fbbf64-d51b-4db3-9c54-d13826d8695f',1,'/content/Document/FORM%204%20-%20Notification%20of%20Approved%20Clinician%20Leave%20of%20Absence(1).docx','http://www.brisbanenorthphn.org.au/content/Document/FORM%25204%2520-%2520Notification%2520of%2520Approved%2520Clinician%2520Leave%2520of%2520Absence(1).docx','34.122.223.89','Go-http-client/1.1','Template not found: content/Document/FORM 4 - Notification of Approved Clinician Leave of Absence(1).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-23 08:48:42',0),(67674,'2021-04-23 08:51:04','2021-04-23 08:51:04','2e51418e-8284-4216-8427-b6f8bc132362',1,'/content/Document/Brisbane MIND Provider List January 2018(6).pdf','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List January 2018(6).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 08:51:04',0),(67675,'2021-04-23 08:55:44','2021-05-07 21:00:25','ae3e4fac-1020-4164-9df5-49241e7acab3',1,'/content/Document/Non-executive director opportunities 2018.pdf','http://www.brisbanenorthphn.org.au/content/Document/Non-executive%20director%20opportunities%202018.pdf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Non-executive director opportunities 2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-07 21:00:25',0),(67676,'2021-04-23 09:02:03','2021-05-14 03:00:21','6885258a-5d7c-4160-900d-2acb49e3170f',1,'/page/health-professionals/Local Positions Vacant/list-your-job','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/list-your-job','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-14 03:00:21',0),(67677,'2021-04-23 09:21:53','2021-04-23 09:21:53','c3f579cb-d700-4ec1-8b71-9002b9e12126',1,'/page/news-and-events/events/upcoming/australias-red-centre-2017-conference','http://brisbanenorthphn.org.au/page/news-and-events/events/upcoming/australias-red-centre-2017-conference','35.206.175.197','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/events/upcoming/australias-red-centre-2017-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 09:21:53',0),(67678,'2021-04-23 09:23:51','2021-04-23 09:23:51','f1c65f67-6305-459a-9838-c6c10aed8d59',1,'/content/Document/MNHHS Redcliffe PractiX v4_11(1).doc','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/MNHHS Redcliffe PractiX v4_11(1).doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 09:23:51',0),(67679,'2021-04-23 09:34:13','2021-04-25 06:38:40','173b28e1-0442-440e-b70f-87f56bc15ca7',1,'/page/about/careers/coordinator-chronic-obstructive-pulmonary-disease-copd-project/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers/coordinator-chronic-obstructive-pulmonary-disease-copd-project','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-25 06:38:40',0),(67680,'2021-04-23 09:45:42','2021-05-05 19:28:15','190bffe6-a999-43c3-b399-34c73c8eba22',1,'/media/youtube','','66.249.79.150','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: media/youtube','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-05 19:28:15',0),(67681,'2021-04-23 09:56:57','2021-04-23 09:56:57','680b0183-f76d-446c-aae6-978d141187b4',1,'/content/Document/Events/2018/North-Brisbane-Seminar-Invite-v2.pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2018/North-Brisbane-Seminar-Invite-v2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 09:56:57',0),(67682,'2021-04-23 10:17:14','2021-04-23 10:17:14','563723e8-1381-4e00-a813-0dc65c0bae4c',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---stafford/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---stafford','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 10:17:14',0),(67683,'2021-04-23 10:29:45','2021-04-23 10:29:46','d60b1f17-ecb3-4222-b3e1-0acba38667c8',1,'/content/Document/Network%20Link/Network%20Link_10_October_FINAL_web(1).pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%2520Link/Network%2520Link_10_October_FINAL_web(1).pdf','34.122.223.89','Go-http-client/1.1','Template not found: content/Document/Network Link/Network Link_10_October_FINAL_web(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-23 10:29:46',0),(67684,'2021-04-23 10:39:59','2021-05-04 12:09:27','0ed168ce-d8de-43c6-a4d5-66a0805ebf45',1,'/page/news-and-events/events/upcoming/memory-cafe---19th-october/','','78.46.61.245','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/memory-cafe---19th-october','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-04 12:09:27',0),(67685,'2021-04-23 10:44:51','2021-05-03 23:52:29','1273319d-f01d-42aa-b00b-4f01489ebb11',1,'/page/news-and-events/2017-news/new-health-provider-portal-gives-gps-access-to-patient-records','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/2017-news/new-health-provider-portal-gives-gps-access-to-patient-records','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-03 23:52:29',0),(67686,'2021-04-23 10:48:42','2021-04-23 10:48:42','97d708f5-ada9-4006-90ea-b435d25d9c9b',1,'/content/Document/Templates/5.2/MNHHS Caboolture Referral v5_2 BP.rtf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/5.2/MNHHS Caboolture Referral v5_2 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 10:48:42',0),(67687,'2021-04-23 11:08:49','2021-04-24 13:04:21','2e623038-ffbc-44de-b766-095598c6c61a',1,'/page/news-and-events/latest-news/health-care-home-eoi-open/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/health-care-home-eoi-open','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 13:04:21',0),(67688,'2021-04-23 11:24:27','2021-05-12 03:54:43','f6a67e7b-d876-4360-b06a-cb152ca6f5a9',1,'/page/disclaimer','','185.191.171.19','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)','Template not found: page/disclaimer','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-12 03:54:43',0),(67689,'2021-04-23 11:42:37','2021-04-25 04:07:42','7b289694-c1d6-49ad-bbd2-2312e0e53df0',1,'/page/news-and-events/events/upcoming/adolescent-pelvic-pain/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/adolescent-pelvic-pain','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-25 04:07:42',0),(67690,'2021-04-23 12:36:44','2021-05-05 21:37:19','eb968afd-cd70-44c2-bd01-634f82b3d26b',1,'/yearinreview/2018-19/wp-content/uploads/2018/11/medical-mums.png','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: yearinreview/2018-19/wp-content/uploads/2018/11/medical-mums.png','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-05 21:37:19',0),(67691,'2021-04-23 13:05:39','2021-04-23 13:05:39','e8f5a080-4461-47b8-b873-66dbb83f7454',1,'/jobs/practice-nurse-excella-medical-centre-nundah','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/practice-nurse-excella-medical-centre-nundah','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 13:05:39',0),(67692,'2021-04-23 13:28:08','2021-04-23 13:28:10','0e5f2d8e-be50-425e-9f70-e6b0411d0826',1,'/content/Document/Templates/5.3/MNHHS%20Paediatric%20%205_3%20BP.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%2520Paediatric%2520%25205_3%2520BP.rtf','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS Paediatric 5_3 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-23 13:28:10',0),(67693,'2021-04-23 13:39:13','2021-04-23 13:39:13','e8f9006c-c6e4-490a-8b1c-99c27cfd50e3',1,'/content/Document/PD_Vacant_AgedCareOfficer_approved_151210.pdf','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/PD_Vacant_AgedCareOfficer_approved_151210.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 13:39:13',0),(67694,'2021-04-23 13:54:50','2021-04-25 00:45:50','bbe10b41-94c2-456a-b90f-f624fdad07c5',1,'/content/Document/Brisbane MIND Group Listing 2017-18 Oct V1.pdf','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Group Listing 2017-18 Oct V1.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-25 00:45:50',0),(67695,'2021-04-23 14:00:26','2021-04-23 14:00:26','f1867cdc-05fd-41a9-99b6-0d70ffc452c5',1,'/events/catch-and-immunisation-challenges','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/catch-and-immunisation-challenges','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 14:00:26',0),(67696,'2021-04-23 14:07:10','2021-05-15 12:48:15','baabfdcd-a1f7-4211-b6d1-d6080ee6498e',1,'/page/news-and-events/events/archive/magnetism-and-the-mind/','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/magnetism-and-the-mind','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 12:48:15',0),(67697,'2021-04-23 14:29:12','2021-04-23 14:29:13','5b710d5d-af20-450f-9c57-e2ec7f98a6b4',1,'/content/Document/Templates/6.1/MNHHS Maternity v6_1.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/MNHHS%20Maternity%20v6_1.rtf','34.122.223.89','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/MNHHS Maternity v6_1.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-23 14:29:13',0),(67698,'2021-04-23 14:29:50','2021-04-23 14:29:50','b393f3f8-d049-4144-9785-bcc40e4a68a9',1,'/page/news-and-events/events/upcoming/the-green-whistle-practical-applications-of-penthrox-in-primary-care/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/the-green-whistle-practical-applications-of-penthrox-in-primary-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 14:29:50',0),(67699,'2021-04-23 14:45:53','2021-04-23 14:45:53','9a707310-004c-4b94-a444-fe57747263a6',1,'/events/abortion-australia-conference','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/abortion-australia-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 14:45:53',0),(67700,'2021-04-23 14:48:42','2021-04-23 14:48:42','ddefdc65-9c72-45db-8f39-07a249050c07',1,'/content/Document/Brisbane MIND Provider List September 2017.pdf','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List September 2017.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 14:48:42',0),(67701,'2021-04-23 14:55:40','2021-04-30 06:32:39','13f20bfc-a4d5-45c3-8946-e21726acb205',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---fitzgibbon','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---fitzgibbon','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-30 06:32:39',0),(67702,'2021-04-23 14:56:21','2021-04-23 14:56:23','098ac1d5-c9ab-46e4-a4f0-8a0252272ee2',1,'/content/Document/Events/2018/Arthritis Queensland\'s 19th Annual Health Professionals Seminar.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2018/Arthritis%20Queensland\'s%2019th%20Annual%20Health%20Professionals%20Seminar.pdf','34.122.223.89','Go-http-client/1.1','Template not found: content/Document/Events/2018/Arthritis Queensland\'s 19th Annual Health Professionals Seminar.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-23 14:56:23',0),(67703,'2021-04-23 15:08:38','2021-04-23 15:08:38','356e7ef7-98ef-4f92-9575-f13601eb80a8',1,'/plugins/elfinder/connectors/php/connector.php','http://www.google.com/','23.228.109.147','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2896.3 Safari/537.36','Template not found: plugins/elfinder/connectors/php/connector.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 15:08:38',0),(67704,'2021-04-23 15:12:51','2021-04-23 15:12:51','542e36d6-3186-4f22-9e1f-e5092845fdd3',1,'/content/Media/Genie 5.2/MNHHS Redcliffe Referral v5.2_Genie.4W7.4W7','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Media/Genie 5.2/MNHHS Redcliffe Referral v5.2_Genie.4W7.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 15:12:51',0),(67705,'2021-04-23 15:15:23','2021-05-18 15:56:15','1e2f2cdd-552d-43a9-abd2-cb823be4cd98',1,'/adminer.php','','51.81.173.197','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.152 Safari/537.36','Template not found: adminer.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 15:56:15',0),(67706,'2021-04-23 15:49:30','2021-05-18 12:35:28','afff248b-f01c-4ac3-afc2-9f105aacd309',1,'/page/news-and-events/events/upcoming/national-bpd-training-strategy-2-day-core-competency-workshops-in-2020','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/national-bpd-training-strategy-2-day-core-competency-workshops-in-2020','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 12:35:28',0),(67707,'2021-04-23 15:53:41','2021-05-14 12:31:54','c5b48097-389b-4a53-a768-78808695eca5',1,'/content/Document/PD_Residential Aged Care Project Lead_160314.pdf','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/PD_Residential Aged Care Project Lead_160314.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 12:31:54',0),(67708,'2021-04-23 16:00:20','2021-04-23 16:00:20','c9464621-9705-408c-acc5-923874d43b25',1,'/content/Document/Brisbane MIND Provider List February 2017(3).pdf','','78.46.94.83','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','Template not found: content/Document/Brisbane MIND Provider List February 2017(3).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 16:00:20',0),(67709,'2021-04-23 16:00:23','2021-05-14 07:59:02','4c7e872c-1dd0-4b79-ada6-36762d8c1621',1,'/content/Document/Brisbane MIND Provider List_AUGUST 2016(5).pdf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List_AUGUST 2016(5).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-14 07:59:02',0),(67710,'2021-04-23 16:02:09','2021-04-24 03:03:55','5a3e86df-bf8a-43c0-890f-078975f559ec',1,'/page/about/careers/program-support-officer-integration/','','178.63.34.189','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/about/careers/program-support-officer-integration','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 03:03:55',0),(67711,'2021-04-23 16:11:49','2021-04-28 16:17:16','b143a779-10e4-424e-8133-1f443607ca5d',1,'/content/Document/Brisbane MIND Provider List September 2018(5).pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List September 2018(5).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-28 16:17:16',0),(67712,'2021-04-23 16:18:35','2021-04-29 11:57:56','00fc494a-e2c4-49a7-95a7-17b8c818d477',1,'/page/news-and-events/events/upcoming/managing-in-the-aged-care-spotlight/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/managing-in-the-aged-care-spotlight','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-29 11:57:56',0),(67713,'2021-04-23 16:21:56','2021-05-01 06:55:22','322fe299-791b-4ced-8fdd-a0a8eb32d773',1,'/content/Document/Media Releases/MR_Funding boost for local drug treatment services_170220.pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%20Releases/MR_Funding%20boost%20for%20local%20drug%20treatment%20services_170220.pdf','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/Media Releases/MR_Funding boost for local drug treatment services_170220.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 06:55:22',0),(67714,'2021-04-23 16:45:36','2021-04-23 16:45:36','5b9c9faa-2ea8-4cf0-bc45-53461b38939f',1,'/page/news-and-events/events/upcoming/lower-leg-ulcer-management/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/lower-leg-ulcer-management','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 16:45:36',0),(67715,'2021-04-23 17:12:37','2021-04-23 17:12:37','f0ddf79f-adf9-4841-9e78-d920129ab8f9',1,'/page/news-and-events/events/upcoming/working-with-young-people-who-self-injure/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/working-with-young-people-who-self-injure','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 17:12:37',0),(67716,'2021-04-23 17:15:41','2021-04-23 17:15:41','ce8152d5-4dff-4d4a-9bff-71988aca1742',1,'/content/Document/report_maternitycare.pdf','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/report_maternitycare.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 17:15:41',0),(67717,'2021-04-23 17:39:00','2021-05-06 17:42:25','8dcd2304-b130-4ed9-9eaf-fff8bdd9b81e',1,'/content/Document/Templates/4.7/MNHHS Maternity Referral BP v4_7.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.7/MNHHS%20Maternity%20Referral%20BP%20v4_7.rtf','34.94.141.43','Go-http-client/1.1','Template not found: content/Document/Templates/4.7/MNHHS Maternity Referral BP v4_7.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 17:42:25',0),(67718,'2021-04-23 17:44:43','2021-04-23 17:44:43','164c5e11-016a-4292-b01b-55598680b07b',1,'/content/Document/Templates/4.8/MNHHS RBWH Referral PractiX v4_8.doc','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.8/MNHHS RBWH Referral PractiX v4_8.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 17:44:43',0),(67719,'2021-04-23 18:00:26','2021-04-28 07:52:14','e11317b3-fe92-4013-9204-95c538bf22c4',1,'/page/home/style-guide/document-listing/six-month-extended-skills-registrar-post-sexual-health/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/home/style-guide/document-listing/six-month-extended-skills-registrar-post-sexual-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-28 07:52:14',0),(67720,'2021-04-23 18:26:06','2021-04-30 23:46:19','e2d09306-3bc4-47aa-90a6-aa870ad9cef0',1,'/content/Document/Templates/4.3/Specialists List Caboolture 4.3.pdf','','148.251.50.77','Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Firefox/78.0','Template not found: content/Document/Templates/4.3/Specialists List Caboolture 4.3.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-04-30 23:46:19',0),(67721,'2021-04-23 18:26:07','2021-05-15 06:36:39','bd765dc0-288a-457d-842c-62d9e4c54eed',1,'/content/Document/Templates/5.3/Specialists List_Caboolture Hospital_5_3.pdf','','144.76.162.206','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Safari/605.1.15','Template not found: content/Document/Templates/5.3/Specialists List_Caboolture Hospital_5_3.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 06:36:39',0),(67722,'2021-04-23 18:26:11','2021-05-04 03:38:30','2df107d8-65fa-4c79-b34b-c7c9263c6cb7',1,'/content/Document/Templates/4.8/Specialists List_Caboolture Hospital_4_8.pdf','','168.119.69.91','Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','Template not found: content/Document/Templates/4.8/Specialists List_Caboolture Hospital_4_8.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-04 03:38:30',0),(67723,'2021-04-23 18:44:38','2021-04-29 05:04:44','806348c6-a7d1-4ca0-9898-174a53014fd9',1,'/content/Document/Brisbane MIND Provider List December 2017(6).pdf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List December 2017(6).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-29 05:04:44',0),(67724,'2021-04-23 18:56:35','2021-04-23 18:56:35','c1cd1127-4a95-4207-bb7a-5bbb3a359176',1,'/page/news-and-events/events/upcoming/skintastic-care/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/skintastic-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 18:56:35',0),(67725,'2021-04-23 19:05:38','2021-04-26 02:33:51','19dc8d18-3c37-4224-852c-d51c9828e3b0',1,'/content/Document/Media Releases/MR_PHN appoints Libby Dunstan as Deputy CEO_170724.pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%20Releases/MR_PHN%20appoints%20Libby%20Dunstan%20as%20Deputy%20CEO_170724.pdf','35.225.69.75','Go-http-client/1.1','Template not found: content/Document/Media Releases/MR_PHN appoints Libby Dunstan as Deputy CEO_170724.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-26 02:33:51',0),(67726,'2021-04-23 20:14:55','2021-05-12 02:20:23','5128d0ea-704b-4712-bac1-a7ce58d31dbf',1,'/content/Document/Network Link/Network Link_July_2019_WEB(1).pdf','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Network Link/Network Link_July_2019_WEB(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-12 02:20:23',0),(67727,'2021-04-23 20:35:19','2021-05-06 11:30:11','d996e121-6095-45c9-aa78-58dc4eeae06a',1,'/page/community','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/community','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-06 11:30:11',0),(67728,'2021-04-23 20:52:39','2021-05-14 07:30:52','9e6425a5-879a-46ac-8190-df002ef2d301',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---nundah/','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---nundah','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 07:30:52',0),(67729,'2021-04-23 21:36:10','2021-05-09 02:22:30','6d09e62e-2a9e-4bf7-8e12-917012f88691',1,'/content/Image/News Images/page_banner_trevor_evans.jpg','','66.220.149.43','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: content/Image/News Images/page_banner_trevor_evans.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-09 02:22:30',0),(67730,'2021-04-23 21:36:25','2021-04-23 21:36:25','0c204e11-afe2-4ffc-ae3b-d66d510e6418',1,'/page/news-and-events/events/archive/the-app-guide-to-social-skills-and-social-stories/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/the-app-guide-to-social-skills-and-social-stories','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-23 21:36:25',0),(67731,'2021-04-23 21:55:02','2021-05-02 21:04:00','46c354ea-f566-4171-a35e-536256bdb756',1,'/page/news-and-events/latest-news/culture-provides-context-for-federal-mp-briefing','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/culture-provides-context-for-federal-mp-briefing','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-02 21:04:00',0),(67732,'2021-04-23 22:12:59','2021-05-09 02:50:19','9bcd9c6a-f503-4a8d-9d36-f367cd10b501',1,'/events/vaccine-information-session-save-the-date','','5.9.156.121','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: events/vaccine-information-session-save-the-date','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-09 02:50:19',0),(67733,'2021-04-23 22:24:10','2021-05-09 10:39:52','63fdff24-2074-4865-966a-bbde835d3d83',1,'/page/news-and-events/events/upcoming/successes-and-failures-in-telehealth/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/successes-and-failures-in-telehealth','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-09 10:39:52',0),(67734,'2021-04-23 22:54:25','2021-04-30 00:16:52','6af83d7e-ce0a-469c-9607-bcf2eb2c9db4',1,'/page/health-professionals/Local Positions Vacant/general-practice-staff-required---margate/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practice-staff-required---margate','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 00:16:52',0),(67735,'2021-04-23 23:29:09','2021-05-13 10:45:29','24af7460-ac83-4b52-b908-6f03998ddd60',1,'/jobs/maternity-cover-petrie-medical-center-locum-opportunity','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/maternity-cover-petrie-medical-center-locum-opportunity','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-13 10:45:29',0),(67736,'2021-04-24 00:18:31','2021-04-24 00:18:31','209e3e71-0d6b-442b-b830-7d2e770b9342',1,'/content/Document/LocalLink_10Jan2013.pdf','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/LocalLink_10Jan2013.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 00:18:31',0),(67737,'2021-04-24 00:22:57','2021-05-13 00:31:02','7b995078-3792-409e-8599-9c0145177a5a',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---bribie-island','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---bribie-island','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-13 00:31:02',0),(67738,'2021-04-24 00:35:45','2021-04-24 00:35:45','5aa9da3d-6187-4097-b0b8-e8ded4af7a3d',1,'/page/health-professionals/Local Positions Vacant/registered-psychologist-required---mifq/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/registered-psychologist-required---mifq','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 00:35:45',0),(67739,'2021-04-24 00:39:19','2021-04-24 00:39:19','9cee91ff-fcfc-46c2-9c2a-26885a914f05',1,'/page/health-professionals/Local Positions Vacant/rn-required---united-medical-centres-caboolture/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/rn-required---united-medical-centres-caboolture','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 00:39:19',0),(67740,'2021-04-24 01:02:33','2021-04-24 01:02:33','2bc91dea-15b3-49af-86b6-fbbf8117a6bc',1,'/page/news-and-events/events/upcoming/skills-training-in-dialectical-behaviour-therapy/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/skills-training-in-dialectical-behaviour-therapy','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 01:02:33',0),(67741,'2021-04-24 01:03:56','2021-04-24 01:03:56','99fb0e2b-ef1d-4a9b-b420-8ff546df48b9',1,'/royalty-free-vectors/asia-vectors','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: royalty-free-vectors/asia-vectors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 01:03:56',0),(67742,'2021-04-24 01:10:56','2021-04-24 01:10:56','c76b4406-c5ab-4b26-8e19-22de43899333',1,'/page/news-and-events/latest-news/farewell-to-a-trailblazing-community-leader-and-nurse','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/farewell-to-a-trailblazing-community-leader-and-nurse','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 01:10:56',0),(67743,'2021-04-24 02:39:00','2021-05-18 02:54:14','d1b1ad8e-a5be-4728-9ac2-c802ab215ccd',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---albany-creek4/','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---albany-creek4','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 02:54:14',0),(67744,'2021-04-24 02:41:49','2021-05-18 02:37:02','2d876045-6567-473e-9b28-3d54b18b088e',1,'/page/news-and-events/latest-news/strengthening-communication-during-clinical-handovers','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/strengthening-communication-during-clinical-handovers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 02:37:02',0),(67745,'2021-04-24 02:54:06','2021-04-24 02:54:06','cd14a817-f942-4434-b3d3-407fcc75719a',1,'/content/Image/Maternity/postnatal_image.jpg','','66.102.8.167','Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)','Template not found: content/Image/Maternity/postnatal_image.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 02:54:06',0),(67746,'2021-04-24 03:00:15','2021-04-24 03:00:15','b89eb8c9-c66c-4ea7-b6df-db95b2986eb6',1,'/content/Document/Primary care liaison/MNHHS RBWH Ref BP v6_2(2).rtf','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Primary care liaison/MNHHS RBWH Ref BP v6_2(2).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 03:00:15',0),(67747,'2021-04-24 03:03:48','2021-05-14 01:54:05','bcf20eb4-c9ba-42b7-bb14-40496f3bb177',1,'/page/about/careers/evaluation-and-reporting-officer/','','66.249.69.39','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/about/careers/evaluation-and-reporting-officer','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 01:54:05',0),(67748,'2021-04-24 03:04:01','2021-04-24 08:13:24','f8859201-14a4-40dc-87c0-6ae9e5387a9b',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---mitchelton/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---mitchelton','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-24 08:13:24',0),(67749,'2021-04-24 03:04:16','2021-04-30 07:37:47','951a03e1-b920-4807-89bb-346ba28a7f57',1,'/page/news-and-events/events/upcoming/the-bp-premier-summit-2017','','95.91.15.174','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/the-bp-premier-summit-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-30 07:37:47',0),(67750,'2021-04-24 03:33:36','2021-04-24 03:33:36','66147b38-64cf-4579-b666-62779dd16a37',1,'/page/health-professionals/Local Positions Vacant/psychologist-required---woodford-family-medical-centre/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/psychologist-required---woodford-family-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 03:33:36',0),(67751,'2021-04-24 03:34:16','2021-04-29 02:30:11','5ab0bd7c-5e0c-4e16-af44-7e9b6cfc74f2',1,'/page/news-and-events/events/upcoming/general-practitioner---morayfield-wamuran-landsborough/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/general-practitioner---morayfield-wamuran-landsborough','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-29 02:30:11',0),(67752,'2021-04-24 04:06:44','2021-05-03 01:58:57','59ceabb9-a466-4836-8e31-d10a9f52d29b',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---indooroopilly','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---indooroopilly','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-03 01:58:57',0),(67753,'2021-04-24 04:35:21','2021-04-24 04:35:21','9326e362-51d4-497a-af01-470418e2dd50',1,'/events/advanced-practice-palliative-care-workshop','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/advanced-practice-palliative-care-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 04:35:21',0),(67754,'2021-04-24 04:40:30','2021-04-29 11:09:33','60867dd9-2073-4b72-8ba5-8d4dd6fb51d7',1,'/page/news-and-events/latest-news/launch-of-newaccess-by-beyondblue','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/launch-of-newaccess-by-beyondblue','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-29 11:09:33',0),(67755,'2021-04-24 04:53:09','2021-05-01 18:25:53','6cb4ecf2-1bbb-4955-81c1-e622020feadf',1,'/content/Document/Templates/4.12/Specialists Lists/Specialists List_Redcliffe Hospital_4_12.pdf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.12/Specialists%20Lists/Specialists%20List_Redcliffe%20Hospital_4_12.pdf','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/Templates/4.12/Specialists Lists/Specialists List_Redcliffe Hospital_4_12.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-01 18:25:53',0),(67756,'2021-04-24 05:27:07','2021-05-07 16:56:31','cadc5d43-a156-418a-931f-e70721081dfa',1,'/page/news-and-events/events/upcoming/chronic-conditions-in-community-and-aged-care/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/chronic-conditions-in-community-and-aged-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-07 16:56:31',0),(67757,'2021-04-24 05:53:40','2021-05-11 04:18:34','22e7c092-991b-4768-bc39-96603f41447d',1,'/content/Image/Page Banners/Banner_page_projectyarncircle.jpg','','66.220.149.116','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: content/Image/Page Banners/Banner_page_projectyarncircle.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-11 04:18:34',0),(67758,'2021-04-24 05:57:55','2021-05-18 22:55:54','23c2c005-6507-4ea6-b922-002a50f28bac',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---stafford','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---stafford','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 22:55:54',0),(67759,'2021-04-24 06:53:23','2021-05-18 01:07:26','5c7585ec-139a-4b82-9149-1a3b5faf4796',1,'/jobs/vr-general-practitioner-chapel-hill-indooroopilly','','157.55.39.35','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/vr-general-practitioner-chapel-hill-indooroopilly','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,17,'2021-05-18 01:07:26',0),(67760,'2021-04-24 06:53:45','2021-04-24 06:53:45','fe18c0c4-557a-43ce-981b-b3ae3bc39245',1,'/page/news-and-events/events/upcoming/taming-the-adolescent-mind/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/taming-the-adolescent-mind','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 06:53:45',0),(67761,'2021-04-24 06:57:26','2021-04-24 06:57:26','2935751a-e2ac-465f-86ad-79e84a95bddc',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---kallangur/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---kallangur','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 06:57:26',0),(67762,'2021-04-24 07:04:24','2021-05-09 20:40:09','b59047a6-5a83-42af-ad22-077f67f31cdc',1,'/content/Document/invitation-what-can-CAT-do-for-me-2016.pdf','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/invitation-what-can-CAT-do-for-me-2016.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 20:40:09',0),(67763,'2021-04-24 07:20:37','2021-05-12 14:55:17','925d717c-44c3-43b5-9c08-05cf58b7e848',1,'/page/health-professionals/Local Positions Vacant/vr-general-practitioner---carseldine/','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/vr-general-practitioner---carseldine','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-12 14:55:17',0),(67764,'2021-04-24 07:22:36','2021-04-24 07:22:36','2625b3b7-374e-4e06-b4ff-a5413d810344',1,'/page/health-professionals/Local Positions Vacant/vr-gp---ascot/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/vr-gp---ascot','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 07:22:36',0),(67765,'2021-04-24 07:26:45','2021-04-28 04:39:22','5959785a-4802-4af3-a748-87696e47ca2b',1,'/page/health-professionals/health-workforce-innovations/','','173.252.79.32','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: page/health-professionals/health-workforce-innovations','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-04-28 04:39:22',0),(67766,'2021-04-24 07:30:39','2021-04-24 07:30:39','a88c6dbe-5c4a-4fae-80d8-df5b5c4b9a2a',1,'/page/news-and-events/latest-news/after-hours-campaign-provides-emergency-alternatives/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/latest-news/after-hours-campaign-provides-emergency-alternatives','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 07:30:39',0),(67767,'2021-04-24 07:31:01','2021-04-29 05:32:23','c3a9632a-bfe3-4290-92ab-af4aaf98004a',1,'/page/news-and-events/latest-news/brisbane-river-contamination-event/','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/brisbane-river-contamination-event','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-29 05:32:23',0),(67768,'2021-04-24 07:32:52','2021-04-24 07:32:52','68deef60-ea6c-4bfb-98a0-a0a89d3107d6',1,'/page/news-and-events/latest-news/primary-health-budget-measures-welcomed/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/latest-news/primary-health-budget-measures-welcomed','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 07:32:52',0),(67769,'2021-04-24 07:33:05','2021-04-24 07:33:28','0e49aa49-7473-4d79-a472-5bed28473dcd',1,'/page/health-professionals/directories/national-health-service-directory/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/directories/national-health-service-directory','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 07:33:28',0),(67770,'2021-04-24 07:33:51','2021-05-10 23:35:27','deabd1b3-60c7-42ac-8e9e-3aef7e4f2a05',1,'/page/health-professionals/directories/other-directories/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/directories/other-directories','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-10 23:35:27',0),(67771,'2021-04-24 07:36:06','2021-04-24 07:36:06','18702126-a3c2-4d87-afdb-412fc3584302',1,'/page/about/careers/executive-manager-corporate-services/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/about/careers/executive-manager-corporate-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 07:36:06',0),(67772,'2021-04-24 07:36:26','2021-04-24 07:36:26','3a4de3f1-2fc0-449d-9401-524bc9be599a',1,'/page/about/careers/project-officer-suicide-prevention/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/about/careers/project-officer-suicide-prevention','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 07:36:26',0),(67773,'2021-04-24 07:36:40','2021-04-28 04:18:27','16d9f0a7-77e4-45da-90e0-cc46dfbda388',1,'/page/health-professionals/Local Positions Vacant/public-health-nurse---metro-north-public-health-unit/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/public-health-nurse---metro-north-public-health-unit','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-28 04:18:27',0),(67774,'2021-04-24 07:41:42','2021-04-24 07:41:42','adef22d3-21d8-450b-a889-6c222d6f2f13',1,'/page/health-professionals/mental-health-services/low-intensity-mental-health-services/launch-of-newaccess-by-beyondblue/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/mental-health-services/low-intensity-mental-health-services/launch-of-newaccess-by-beyondblue','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 07:41:42',0),(67775,'2021-04-24 07:42:36','2021-05-12 06:22:42','e8673d25-5d26-4545-91eb-73913e5ad1cb',1,'/page/health-professionals/mental-health-services/my-mental-health/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/mental-health-services/my-mental-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 06:22:42',0),(67776,'2021-04-24 07:45:38','2021-04-24 07:45:38','ceef3dd4-db30-4619-90f4-f60833d4c6fc',1,'/page/health-professionals/my-health-record/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/my-health-record','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 07:45:38',0),(67777,'2021-04-24 07:46:39','2021-05-03 21:40:06','3b0f9bef-080f-44b9-b76e-62229a64e43e',1,'/page/health-professionals/palliative-care/my-health-record-improving-outcomes-for-people-in-palliative-care/','','66.249.68.65','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/palliative-care/my-health-record-improving-outcomes-for-people-in-palliative-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-03 21:40:06',0),(67778,'2021-04-24 07:48:21','2021-04-24 07:48:38','d292192e-ce4e-4b18-ab15-a15fb1bacce1',1,'/page/health-professionals/Local Positions Vacant/ains---morayfield/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/ains---morayfield','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 07:48:38',0),(67779,'2021-04-24 07:48:58','2021-04-24 07:48:58','f06ee850-2e1b-4618-8fbe-14f0aa10a97a',1,'/page/health-professionals/Local Positions Vacant/allied-health-mental-health-professionals-required---headspace-caboolture/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/allied-health-mental-health-professionals-required---headspace-caboolture','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 07:48:58',0),(67780,'2021-04-24 07:49:19','2021-04-24 07:49:19','d4964cb7-d206-4191-a18f-8ebf28777879',1,'/page/health-professionals/Local Positions Vacant/casual-medical-receptionist---kedron/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/casual-medical-receptionist---kedron','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 07:49:19',0),(67781,'2021-04-24 07:49:24','2021-05-18 07:36:25','93da56d3-79a4-42ed-9b87-023aceb5bf16',1,'/page/health-professionals/referral-and-patient-management/gp-education-event-resources-external-link/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/referral-and-patient-management/gp-education-event-resources-external-link','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-18 07:36:25',0),(67782,'2021-04-24 07:49:41','2021-04-29 20:16:17','a33fb26b-1b72-46c8-a337-3b340885ca7e',1,'/page/health-professionals/referral-and-patient-management/metro-north-refer-your-patient/','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/referral-and-patient-management/metro-north-refer-your-patient','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-29 20:16:17',0),(67783,'2021-04-24 07:50:51','2021-05-14 14:54:04','3aef01ae-8b0c-43d3-95b2-6fbd20705273',1,'/page/health-professionals/Local Positions Vacant/casual-rn---mango-hill/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/casual-rn---mango-hill','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-14 14:54:04',0),(67784,'2021-04-24 07:51:35','2021-04-24 07:51:35','1814bf08-9571-4298-b78f-28b6e01d00c7',1,'/page/health-professionals/Local Positions Vacant/chronic-disease-management-nurse/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/chronic-disease-management-nurse','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 07:51:35',0),(67785,'2021-04-24 07:52:20','2021-05-03 07:36:07','abdf82dd-d317-4684-a66c-9a576fe1c6c2',1,'/page/health-professionals/Local Positions Vacant/clinician---caboolture/','','78.46.90.120','Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','Template not found: page/health-professionals/Local Positions Vacant/clinician---caboolture','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-03 07:36:07',0),(67786,'2021-04-24 07:52:32','2021-05-05 05:56:05','e7bff7cb-eeaa-4050-90f5-fc00510308d9',1,'/page/home/banners/banner-1/','','78.46.61.245','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/home/banners/banner-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-05 05:56:05',0),(67787,'2021-04-24 07:52:41','2021-05-01 12:54:57','0c31a57d-7b4a-4ce6-8eff-4ce9e297ecbd',1,'/page/health-professionals/Local Positions Vacant/dentistoral-hygienist---tingalpa/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/dentistoral-hygienist---tingalpa','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 12:54:57',0),(67788,'2021-04-24 07:52:58','2021-04-24 07:52:58','ec91b631-6d74-4dd3-a7cb-a38443cbd75e',1,'/page/health-professionals/Local Positions Vacant/enrolled-nurse---bray-park/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/enrolled-nurse---bray-park','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 07:52:58',0),(67789,'2021-04-24 07:53:19','2021-04-24 07:53:19','359f8ce1-520c-4c2a-83f5-140547960227',1,'/page/health-professionals/Local Positions Vacant/enrolled-nurse---strathpine/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/enrolled-nurse---strathpine','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 07:53:19',0),(67790,'2021-04-24 07:53:23','2021-05-05 23:39:07','4a073a49-2bf0-46f3-b2fe-912a2a205c3e',1,'/page/home/banners/banner-2/','','207.46.13.72','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/home/banners/banner-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-05 23:39:07',0),(67791,'2021-04-24 07:53:43','2021-05-14 06:02:22','893be3bf-471d-46e6-8504-ef05f306a27a',1,'/page/home/banners/banner-4/','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/banners/banner-4','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-14 06:02:22',0),(67792,'2021-04-24 07:53:52','2021-04-24 07:53:52','760c752d-7201-4a42-8101-65a42cf5fd9e',1,'/page/health-professionals/Local Positions Vacant/experienced-receptionist---sandgate/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/experienced-receptionist---sandgate','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 07:53:52',0),(67793,'2021-04-24 07:54:01','2021-04-24 07:54:01','c6948ee2-1858-42de-a35c-1312b7a96251',1,'/page/home/banners/banner-5/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/home/banners/banner-5','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 07:54:01',0),(67794,'2021-04-24 07:54:10','2021-04-24 07:54:29','0b44ea24-38c4-4cae-8327-861b20f34ac9',1,'/page/health-professionals/Local Positions Vacant/experienced-rns-and-ens---morayfield/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/experienced-rns-and-ens---morayfield','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 07:54:29',0),(67795,'2021-04-24 07:54:46','2021-04-24 07:54:46','8cddb9c0-7bd9-47b0-8a2d-c9596f77ac50',1,'/page/health-professionals/Local Positions Vacant/front-office-administration---carseldine/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/front-office-administration---carseldine','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 07:54:46',0),(67796,'2021-04-24 07:55:23','2021-04-24 07:55:23','8cfd0545-c01e-4c61-8b05-25bd9c9f2e5b',1,'/page/health-professionals/Local Positions Vacant/general-practice-registered-nurse---everton-park/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/general-practice-registered-nurse---everton-park','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 07:55:23',0),(67797,'2021-04-24 07:55:36','2021-05-18 19:16:14','51492f20-e8b4-413f-b1b0-d3a86b896299',1,'/yearinreview/who-is-brisbane-north-phn/www.brisbanenorthphn.org.au','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/who-is-brisbane-north-phn/www.brisbanenorthphn.org.au','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 19:16:14',0),(67798,'2021-04-24 07:55:43','2021-05-06 10:36:42','ca50c712-a5ae-4435-a895-ff3de4c96fff',1,'/page/health-professionals/Local Positions Vacant/general-practice-staff---brendale/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practice-staff---brendale','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-06 10:36:42',0),(67799,'2021-04-24 07:56:42','2021-04-24 07:56:42','f8c126c3-198a-4dbf-8d66-91c005e82949',1,'/page/health-professionals/Local Positions Vacant/general-practice-staff---sandgate-doctors/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/general-practice-staff---sandgate-doctors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 07:56:42',0),(67800,'2021-04-24 07:57:02','2021-04-24 07:57:02','9a79bebc-c29c-4308-957e-b8a203a3f6d3',1,'/page/health-professionals/Local Positions Vacant/general-practice-staff---toombul/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/general-practice-staff---toombul','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 07:57:02',0),(67801,'2021-04-24 07:57:24','2021-04-24 07:57:24','c7bda77f-aeb8-4c4e-84fc-ed5222a289eb',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---australian-catholic-university-banyo/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---australian-catholic-university-banyo','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 07:57:24',0),(67802,'2021-04-24 07:57:45','2021-04-24 07:57:45','9ed495d7-7b85-475f-97b4-12c6d885c17f',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---bardon/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---bardon','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 07:57:45',0),(67803,'2021-04-24 07:58:19','2021-05-16 10:47:39','1a939e46-92c3-4594-b878-1c7f54f3bd63',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---bellara/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---bellara','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 10:47:39',0),(67804,'2021-04-24 08:00:33','2021-04-24 08:00:33','8df4ba67-8aa8-42f8-9aae-2b027c66384f',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---brighton-health-campus/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---brighton-health-campus','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:00:33',0),(67805,'2021-04-24 08:02:42','2021-05-18 17:03:47','b7fa8929-814c-460c-b885-53856be99623',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---highgate-hill/','','157.55.39.116','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---highgate-hill','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 17:03:47',0),(67806,'2021-04-24 08:04:28','2021-04-24 08:04:28','a2dceb82-c090-4bf3-840b-859a3fda98e8',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---medpods-medical-centre-north-lakes/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---medpods-medical-centre-north-lakes','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:04:28',0),(67807,'2021-04-24 08:05:27','2021-05-17 00:05:29','72d67c80-0275-4474-b48a-d11935bd626b',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---moreton-medical-centre-deception-bay/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---moreton-medical-centre-deception-bay','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 00:05:29',0),(67808,'2021-04-24 08:05:46','2021-05-01 03:20:39','a773920c-299b-48c9-b018-6c3656cdfaca',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---murrumba-downs/','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---murrumba-downs','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 03:20:39',0),(67809,'2021-04-24 08:06:03','2021-04-24 08:06:03','f52d2e41-5cef-40cf-8fa0-f65d14a2b11c',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---newmarket/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---newmarket','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:06:03',0),(67810,'2021-04-24 08:07:24','2021-04-24 08:07:24','bb1bb5eb-4d59-4296-961d-d1ae1da78409',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---scarborough-village-surgery/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---scarborough-village-surgery','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:07:24',0),(67811,'2021-04-24 08:08:10','2021-05-10 18:16:38','4fa519bf-09f5-4c27-be2d-cd80601d41f0',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---tingalpa/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---tingalpa','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 18:16:38',0),(67812,'2021-04-24 08:08:47','2021-05-17 02:30:13','957bd6a9-e383-4f71-8c5c-32498fb48686',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-required---headspace-caboolture/','','157.55.39.56','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-required---headspace-caboolture','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 02:30:13',0),(67813,'2021-04-24 08:09:21','2021-05-05 05:55:26','bcc61e66-9512-43b0-8be2-cd6672f0c5fa',1,'/page/health-professionals/Local Positions Vacant/general-practitioners---wavell-heights/','','78.46.61.245','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioners---wavell-heights','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-05 05:55:26',0),(67814,'2021-04-24 08:09:38','2021-04-24 08:09:38','bb2d0695-cb46-4ca8-aa05-8bfc5de0b0b9',1,'/page/health-professionals/Local Positions Vacant/general-practitoner---south-brisbane/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/general-practitoner---south-brisbane','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:09:38',0),(67815,'2021-04-24 08:09:58','2021-05-13 17:10:07','df1df5f5-be11-40bd-86a5-78f1868966ba',1,'/content/Image/Claire Jackson 2016 - cropped.jpg','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Claire Jackson 2016 - cropped.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 17:10:07',0),(67816,'2021-04-24 08:09:59','2021-04-24 08:09:59','7f268204-2934-4266-80f7-16a5914ab8ea',1,'/page/health-professionals/Local Positions Vacant/general-radiographer---samford/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/general-radiographer---samford','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:09:59',0),(67817,'2021-04-24 08:10:59','2021-04-25 01:43:27','47d4fb5e-4bc5-4435-97ce-70e3539c7991',1,'/page/health-professionals/Local Positions Vacant/gp-vr-brisbane-northside---moreton-bay-medical/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/gp-vr-brisbane-northside---moreton-bay-medical','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-25 01:43:27',0),(67818,'2021-04-24 08:11:17','2021-04-24 08:11:17','114af8a5-2d59-4a8d-8f23-848fa56f3523',1,'/page/health-professionals/Local Positions Vacant/junior-medical-receptionist---tingalpa/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/junior-medical-receptionist---tingalpa','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:11:17',0),(67819,'2021-04-24 08:11:51','2021-04-24 08:11:51','233af6ba-42ce-4a72-b891-3b920fbf6d72',1,'/page/health-professionals/Local Positions Vacant/locum-vr-gp---mcdowall/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/locum-vr-gp---mcdowall','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:11:51',0),(67820,'2021-04-24 08:12:16','2021-04-24 08:12:16','fef166cc-4290-48c5-982c-8b79cf955f84',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---bracken-ridge/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---bracken-ridge','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:12:16',0),(67821,'2021-04-24 08:12:39','2021-04-24 08:12:39','228b7955-491a-40ec-a77e-930cbaaa2a1a',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---everton-hills/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---everton-hills','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:12:39',0),(67822,'2021-04-24 08:13:02','2021-04-24 08:13:02','629fb42d-1c00-43c8-b162-2f83432b2fa1',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---mango-hill/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---mango-hill','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:13:02',0),(67823,'2021-04-24 08:14:02','2021-05-01 14:39:07','1faaf894-8f34-42b7-99d7-0fc8b8899107',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---taigum/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---taigum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 14:39:07',0),(67824,'2021-04-24 08:14:19','2021-04-24 08:14:19','eff90271-9d97-4cc7-ae87-cd133be0327a',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---warner/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---warner','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:14:19',0),(67825,'2021-04-24 08:14:39','2021-04-24 08:14:39','1177d668-023b-4a03-a04c-a49aceb56d93',1,'/page/health-professionals/Local Positions Vacant/vrgpdws-required---everton-hills-medical-centre/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/vrgpdws-required---everton-hills-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:14:39',0),(67826,'2021-04-24 08:14:39','2021-04-25 23:23:01','b0a3e42e-693c-4aca-8e48-3e42ad3d20e4',1,'/page/health-professionals/Local Positions Vacant/medical-receptionists---health-hub-doctors-morayfield/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.80 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionists---health-hub-doctors-morayfield','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-25 23:23:01',0),(67827,'2021-04-24 08:15:19','2021-05-12 20:21:05','fa720013-8117-446c-8022-bfee82a35495',1,'/page/health-professionals/Local Positions Vacant/nurse-practitioner---morayfield/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/nurse-practitioner---morayfield','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-12 20:21:05',0),(67828,'2021-04-24 08:17:25','2021-05-05 06:56:38','2161dff2-b27b-41b6-9c30-60142e7bef61',1,'/page/health-professionals/Local Positions Vacant/physiotherapists---north-lakes/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/physiotherapists---north-lakes','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-05 06:56:38',0),(67829,'2021-04-24 08:17:48','2021-04-24 08:17:48','ac39cf0a-9eed-4d5f-9478-bbfa3ea967a3',1,'/page/health-professionals/Local Positions Vacant/practice-manager---kallangur/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/practice-manager---kallangur','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:17:48',0),(67830,'2021-04-24 08:18:17','2021-04-24 08:18:17','cdb872d9-8f67-4d12-9a72-6b66e283ca81',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---ascot/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---ascot','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:18:17',0),(67831,'2021-04-24 08:19:22','2021-04-28 07:30:57','2ff64281-c571-4af9-91af-71f4f2d10888',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---fortitude-valley/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---fortitude-valley','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-28 07:30:57',0),(67832,'2021-04-24 08:19:49','2021-04-30 08:43:25','f4054f4b-b4b3-404e-a3dd-5474624a8d1f',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---gp-clinic-redcliffe/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---gp-clinic-redcliffe','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 08:43:25',0),(67833,'2021-04-24 08:21:01','2021-04-24 08:21:01','929dce16-1939-473e-b2a6-82fded7e539c',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---taigum/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---taigum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:21:01',0),(67834,'2021-04-24 08:21:22','2021-05-17 17:38:13','a9fc3711-63bd-420f-814a-fbc24abcd984',1,'/page/health-professionals/Local Positions Vacant/practice-nursemanager---wynnum/','','66.249.68.2','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/practice-nursemanager---wynnum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 17:38:13',0),(67835,'2021-04-24 08:22:09','2021-04-24 08:22:09','7df83f81-4da6-4c81-9a9a-15b76f342c6a',1,'/page/health-professionals/Local Positions Vacant/reception-staff---kallangur/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/reception-staff---kallangur','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:22:09',0),(67836,'2021-04-24 08:22:37','2021-04-26 03:20:23','3765b6e3-0e6f-4a1c-8907-0a7ded31747c',1,'/page/health-professionals/Local Positions Vacant/registered-nurse---anchor-medical-pty-ltd-bracken-ridge/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/registered-nurse---anchor-medical-pty-ltd-bracken-ridge','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-26 03:20:23',0),(67837,'2021-04-24 08:24:34','2021-04-24 08:24:34','eda16c07-521f-468f-9588-2a1e35bebd76',1,'/page/health-professionals/Local Positions Vacant/registered-nurse---redcliffe/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/health-professionals/Local Positions Vacant/registered-nurse---redcliffe','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:24:34',0),(67838,'2021-04-24 08:26:08','2021-05-05 05:56:52','3b0e5e21-20d7-4761-951a-5ebe906661c6',1,'/page/home/banners/support-your-patients-with-the-ndis/','','78.46.61.245','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/home/banners/support-your-patients-with-the-ndis','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-05 05:56:52',0),(67839,'2021-04-24 08:26:28','2021-04-24 08:26:28','550c7e51-d976-4e23-919d-9e0a0af4d91b',1,'/page/home/banners/the-emergency-department-isnt-always-your-best-option/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/home/banners/the-emergency-department-isnt-always-your-best-option','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:26:28',0),(67840,'2021-04-24 08:28:47','2021-05-18 23:32:12','ef434e1a-6eed-4d10-9bd7-d05d51208d7b',1,'/page/home/featurettes/my-community/','','157.55.39.116','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/home/featurettes/my-community','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-18 23:32:12',0),(67841,'2021-04-24 08:31:30','2021-04-24 08:31:57','1d73689c-e1af-4126-b8cd-0bb2cfc07c76',1,'/page/news-and-events/events/upcoming/managing-bipolar-disorder/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/managing-bipolar-disorder','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 08:31:57',0),(67842,'2021-04-24 08:32:27','2021-04-29 05:02:26','142d9b35-dda9-46bc-9c55-bc46c90f479d',1,'/page/news-and-events/events/upcoming/mater-gp-education-conference/','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/mater-gp-education-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-29 05:02:26',0),(67843,'2021-04-24 08:32:28','2021-05-09 05:26:04','bb12379f-5cbb-4e10-9c46-6472fdad585c',1,'/page/home/quicklinks/national-health-service-directory/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/home/quicklinks/national-health-service-directory','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-09 05:26:04',0),(67844,'2021-04-24 08:32:57','2021-04-24 08:32:57','47a952a8-6f80-4677-8b6c-8582bd879189',1,'/page/news-and-events/events/upcoming/mater-private-hospital-brisbane-gp-education-evening/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/mater-private-hospital-brisbane-gp-education-evening','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:32:57',0),(67845,'2021-04-24 08:33:17','2021-04-24 08:33:17','3b6f45d3-0aec-4cba-aea6-ef2b3c2a964c',1,'/page/home/quicklinks/view-latest-health-alerts/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/home/quicklinks/view-latest-health-alerts','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:33:17',0),(67846,'2021-04-24 08:33:52','2021-04-24 08:34:26','aa6c9ce9-febe-49d3-9268-d8342c55e4a9',1,'/page/news-and-events/events/upcoming/memory-cafe---14th-december/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/memory-cafe---14th-december','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 08:34:26',0),(67847,'2021-04-24 08:34:56','2021-05-04 12:09:22','3fd44d9b-1e46-44ce-b077-7af159f95af3',1,'/page/news-and-events/events/upcoming/memory-cafe---15th-june/','','78.46.61.245','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/memory-cafe---15th-june','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-04 12:09:22',0),(67848,'2021-04-24 08:35:12','2021-05-10 04:25:57','e4a2cd38-3f32-45d1-b819-2a73f27ba3d4',1,'/page/home/quicklinks/view-our-latest-media-releases/','','144.76.4.41','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/home/quicklinks/view-our-latest-media-releases','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-10 04:25:57',0),(67849,'2021-04-24 08:35:31','2021-04-24 08:35:57','d926429e-644f-46a0-9ae7-79961c26aa79',1,'/page/news-and-events/events/upcoming/memory-cafe---17th-august/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/memory-cafe---17th-august','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 08:35:57',0),(67850,'2021-04-24 08:37:20','2021-05-04 12:09:32','7cf4dde7-b38c-43ab-a855-c682c781a367',1,'/page/news-and-events/events/upcoming/metro-north-gp-alignment-program---maternity-workshop/','','78.46.61.245','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/metro-north-gp-alignment-program---maternity-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-04 12:09:32',0),(67851,'2021-04-24 08:37:47','2021-05-04 12:09:36','043dc097-4b13-4909-8fd9-7db5fce8ae46',1,'/page/news-and-events/events/upcoming/metro-north-maternity-alignment-program-gynaecology-workshop/','','78.46.61.245','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/metro-north-maternity-alignment-program-gynaecology-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-04 12:09:36',0),(67852,'2021-04-24 08:38:37','2021-04-24 08:38:37','404c3b26-9ada-4cc3-b8e8-eefa252943d7',1,'/page/news-and-events/events/upcoming/AACBTconference-brisbane2018/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/AACBTconference-brisbane2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:38:37',0),(67853,'2021-04-24 08:39:09','2021-04-24 08:39:09','9da60b74-c5f7-403d-9485-21c03bb61109',1,'/page/news-and-events/events/upcoming/motivational-interviewing-a-primer---29-august-lutwyche/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/motivational-interviewing-a-primer---29-august-lutwyche','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:39:09',0),(67854,'2021-04-24 08:39:43','2021-04-24 08:39:43','4d791059-fc25-49fc-b78e-4737f3b712a3',1,'/page/news-and-events/events/upcoming/my-health-record-in-general-practice-face-to-face-workshop/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/my-health-record-in-general-practice-face-to-face-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:39:43',0),(67855,'2021-04-24 08:39:46','2021-04-24 08:39:46','19b6baf2-25a9-48f3-aedf-be37b3e6c271',1,'/page/news-and-events/events/upcoming/TherpayDogsAustralia-trainingcourse-1october/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/TherpayDogsAustralia-trainingcourse-1october','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:39:46',0),(67856,'2021-04-24 08:40:04','2021-04-24 08:40:04','c76de92c-0ef9-4293-a434-14180f27c726',1,'/page/news-and-events/events/upcoming/WesleyLifeForce-suicideprevention-24November2018/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/WesleyLifeForce-suicideprevention-24November2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:40:04',0),(67857,'2021-04-24 08:40:13','2021-04-29 05:04:11','64df4e33-8aa8-4149-9f01-f5594c7ee22c',1,'/page/news-and-events/events/upcoming/my-health-record-in-pharmacy-workshop---lutwyche/','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/my-health-record-in-pharmacy-workshop---lutwyche','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-29 05:04:11',0),(67858,'2021-04-24 08:40:48','2021-04-24 08:40:48','c0e65cec-10d8-4415-bf14-59b3259bcbbb',1,'/page/news-and-events/events/upcoming/aacbt-compassionfocusedtherapy-brisbane-24october/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/aacbt-compassionfocusedtherapy-brisbane-24october','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:40:48',0),(67859,'2021-04-24 08:40:48','2021-04-29 05:05:05','6437ee2e-7ad8-4aa7-aabb-0650fb0848a1',1,'/page/news-and-events/events/upcoming/my-health-record-in-pharmacy-workshop---north-lakes/','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/my-health-record-in-pharmacy-workshop---north-lakes','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-29 05:05:05',0),(67860,'2021-04-24 08:41:07','2021-04-24 08:41:07','644f9118-02d1-44ff-be09-bf6ab564345e',1,'/page/news-and-events/events/upcoming/national-disability-insurance-scheme-gp-readiness-information-evening---moreton-bay/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/national-disability-insurance-scheme-gp-readiness-information-evening---moreton-bay','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:41:07',0),(67861,'2021-04-24 08:41:08','2021-04-24 08:41:08','30ce1840-fb5c-4366-9fa3-fb36ef65611f',1,'/page/news-and-events/events/upcoming/aboriginal-and-torres-strait-islander-patient-centred-care/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/aboriginal-and-torres-strait-islander-patient-centred-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:41:08',0),(67862,'2021-04-24 08:41:29','2021-04-29 05:06:29','9f8cb1f4-c3ef-4da6-95f2-f73768f02db2',1,'/page/news-and-events/events/upcoming/paediatric-masterclass-for-general-practice-2018/','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/paediatric-masterclass-for-general-practice-2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-29 05:06:29',0),(67863,'2021-04-24 08:42:13','2021-04-24 08:42:13','6358171a-f01c-4914-8653-55cc38299b3d',1,'/page/news-and-events/events/upcoming/advanced-training-in-suicide-prevention-3-novembe-2018/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/advanced-training-in-suicide-prevention-3-novembe-2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:42:13',0),(67864,'2021-04-24 08:42:26','2021-04-24 08:42:26','482e0579-e884-4e64-a38b-7d433f1a89d4',1,'/page/news-and-events/events/upcoming/paediatric-workshop---metro-north-gp-alignment-program/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/paediatric-workshop---metro-north-gp-alignment-program','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:42:26',0),(67865,'2021-04-24 08:42:55','2021-04-24 08:42:55','0ecf4aad-3173-4133-ba46-302aa0bc7ef4',1,'/page/news-and-events/events/upcoming/paediatric-workshop/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/paediatric-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:42:55',0),(67866,'2021-04-24 08:43:23','2021-04-24 08:43:44','24574fd8-afde-4421-a65b-18dbbe804611',1,'/page/news-and-events/events/upcoming/ama-queensland-annual-conference-2018/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/ama-queensland-annual-conference-2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 08:43:44',0),(67867,'2021-04-24 08:44:03','2021-04-24 08:44:03','6de619ff-24db-4238-b4ef-83e095033982',1,'/page/news-and-events/events/upcoming/ama-queensland-women-in-medicine-breakfast/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/ama-queensland-women-in-medicine-breakfast','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:44:03',0),(67868,'2021-04-24 08:44:27','2021-04-24 08:44:27','a3d83bce-cf1c-4751-905f-289b25dec09e',1,'/page/news-and-events/events/upcoming/apna-national-conference-2018/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/apna-national-conference-2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:44:27',0),(67869,'2021-04-24 08:44:43','2021-04-24 08:44:43','8e880b4f-3f4b-49df-9ce9-7d1e8f1459f0',1,'/page/news-and-events/events/upcoming/practice-managers-and-practice-nurse-meeting-update-on-mental-health-services/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/practice-managers-and-practice-nurse-meeting-update-on-mental-health-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:44:43',0),(67870,'2021-04-24 08:44:49','2021-04-24 08:44:49','d6c35d95-db8e-4cc7-b9eb-99248b9e39b6',1,'/page/news-and-events/events/upcoming/ashm-interactiveworkshop-hepatitisb-brisbane-20october/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/ashm-interactiveworkshop-hepatitisb-brisbane-20october','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:44:49',0),(67871,'2021-04-24 08:45:02','2021-04-24 08:45:02','30a3982d-2613-4904-8da6-0e01191bc9e3',1,'/page/news-and-events/events/upcoming/primaryhealthcare-apna-26october/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/primaryhealthcare-apna-26october','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:45:02',0),(67872,'2021-04-24 08:45:07','2021-04-24 08:45:07','3ecb9240-e3db-49d0-8593-16c3f1dfeb20',1,'/page/news-and-events/events/upcoming/ashm-primarycareupdate-stis-sexualhealth-8october/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/ashm-primarycareupdate-stis-sexualhealth-8october','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:45:07',0),(67873,'2021-04-24 08:45:37','2021-04-24 08:45:37','477a6d46-e6e3-49ff-9074-657a8efeb5e1',1,'/page/news-and-events/events/upcoming/process-based-cbt-a-new-integrated-behavioural-cognitive-acceptance-and-mindfulness-based-approach/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/process-based-cbt-a-new-integrated-behavioural-cognitive-acceptance-and-mindfulness-based-approach','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:45:37',0),(67874,'2021-04-24 08:45:50','2021-04-24 08:45:50','a0218c86-f4ae-4a38-80b1-5176ea3b4acb',1,'/page/news-and-events/events/upcoming/assessment-and-management-of-lower-limb-pain/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/assessment-and-management-of-lower-limb-pain','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:45:50',0),(67875,'2021-04-24 08:46:08','2021-04-24 08:46:08','2bdeec8d-8696-4c5b-984f-aeef388a98f0',1,'/page/news-and-events/events/upcoming/australian-association-of-practice-management---lutwyche-6-june/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/australian-association-of-practice-management---lutwyche-6-june','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:46:08',0),(67876,'2021-04-24 08:46:12','2021-05-05 23:06:21','760cd4c7-04a0-456b-90b5-b62bb531cee3',1,'/page/news-and-events/events/upcoming/queensland-eating-disorder-service-queds-annual-forum/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/queensland-eating-disorder-service-queds-annual-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-05 23:06:21',0),(67877,'2021-04-24 08:46:27','2021-04-24 08:46:27','78a1f249-8e28-4546-8b37-f19bb766b983',1,'/page/news-and-events/events/upcoming/australian-association-of-practice-management---north-lakes---june-12th/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/australian-association-of-practice-management---north-lakes---june-12th','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:46:27',0),(67878,'2021-04-24 08:46:49','2021-04-24 08:46:49','81104e64-91af-4b6a-9a07-10554e906b3a',1,'/page/news-and-events/events/upcoming/australian-association-of-practice-management-conference-2018/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/australian-association-of-practice-management-conference-2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:46:49',0),(67879,'2021-04-24 08:47:11','2021-04-24 08:47:11','f986184c-b6c0-443d-bfb8-5dc5bdc8d010',1,'/page/news-and-events/events/upcoming/belmontprivatehospital-educationevents/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/belmontprivatehospital-educationevents','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:47:11',0),(67880,'2021-04-24 08:47:31','2021-04-24 08:47:31','c2a4818f-351f-4c9e-8fdb-5e17ca7f5490',1,'/page/news-and-events/events/upcoming/brisbane-mental-health-expo/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/brisbane-mental-health-expo','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:47:31',0),(67881,'2021-04-24 08:47:44','2021-04-24 08:47:44','201fd2cb-c6e5-4771-b453-e62272de40b1',1,'/page/news-and-events/events/upcoming/setting-up-a-private-practice---19-may/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/setting-up-a-private-practice---19-may','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:47:44',0),(67882,'2021-04-24 08:48:15','2021-05-16 00:48:47','85e6e042-d410-4024-8fee-3701af96dcb3',1,'/page/news-and-events/events/upcoming/caboolture-residential-aged-care-collaborative-27september/','','66.249.69.36','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/caboolture-residential-aged-care-collaborative-27september','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 00:48:47',0),(67883,'2021-04-24 08:49:03','2021-05-14 07:04:43','4ad21ed4-8ca2-497c-9825-e45eca489a1e',1,'/page/news-and-events/events/upcoming/common-challenges-in-primary-care-fracture-management/','','66.249.69.63','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/common-challenges-in-primary-care-fracture-management','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 07:04:43',0),(67884,'2021-04-24 08:49:05','2021-05-05 05:58:40','9c01d410-e1e4-401e-89d6-3e3e3a46883b',1,'/page/news-and-events/events/upcoming/sexual-health-update-for-primary-care/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/sexual-health-update-for-primary-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-05 05:58:40',0),(67885,'2021-04-24 08:49:29','2021-04-24 08:49:29','213b56eb-524a-458e-9354-66df92a0f790',1,'/page/news-and-events/events/upcoming/compassion-focused-therapy-aacbt/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/compassion-focused-therapy-aacbt','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:49:29',0),(67886,'2021-04-24 08:49:51','2021-04-29 16:56:41','5ceeef97-3441-4d2c-a0e8-01131e9874f7',1,'/page/news-and-events/events/upcoming/spirometrytraining-fulldayworkshop-22september/','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/spirometrytraining-fulldayworkshop-22september','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-29 16:56:41',0),(67887,'2021-04-24 08:49:53','2021-04-24 08:49:53','f0b7b31a-c487-4dbe-aae5-a6d85813c21a',1,'/page/news-and-events/events/upcoming/conservative-sharp-wound-debridement-workshop/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/conservative-sharp-wound-debridement-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:49:53',0),(67888,'2021-04-24 08:50:13','2021-04-24 08:50:36','aa6415e9-7717-40ec-98e1-864fb4c23ca8',1,'/page/news-and-events/events/upcoming/couple-therapy-basics-and-beyond/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/couple-therapy-basics-and-beyond','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 08:50:36',0),(67889,'2021-04-24 08:51:07','2021-04-24 08:51:07','52f57bcd-bc5b-405b-b1de-54402b0fe9a7',1,'/page/news-and-events/events/upcoming/suicide-prevention-training-welsley-lifeforce/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/suicide-prevention-training-welsley-lifeforce','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:51:07',0),(67890,'2021-04-24 08:51:18','2021-04-24 08:51:18','b27c6b71-3961-48d4-bb67-f39baf3242d7',1,'/page/news-and-events/events/upcoming/curinghepatitisc-ashm-clinicalupdate-primarycareproviders-9october/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/curinghepatitisc-ashm-clinicalupdate-primarycareproviders-9october','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:51:18',0),(67891,'2021-04-24 08:51:37','2021-05-13 17:03:52','ab18dd4a-bed6-41cf-bbf8-49a4b719130f',1,'/page/news-and-events/events/upcoming/dementia-essentials/','','66.249.66.153','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/dementia-essentials','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-13 17:03:52',0),(67892,'2021-04-24 08:51:59','2021-04-24 08:51:59','bb09701d-f032-46d2-8608-eb64a002bc38',1,'/page/news-and-events/events/upcoming/dermoscopy-primary-health-care-institute-18-october/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/dermoscopy-primary-health-care-institute-18-october','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:51:59',0),(67893,'2021-04-24 08:52:21','2021-04-24 08:52:21','2ee1368a-2188-4cc2-a3ae-f3724a466153',1,'/page/news-and-events/events/upcoming/suicideprevetion-practicestaffandmanagers-20september2018/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/suicideprevetion-practicestaffandmanagers-20september2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:52:21',0),(67894,'2021-04-24 08:52:41','2021-04-24 08:52:41','4b7b700b-107b-4391-a2ee-0632bb1b2e91',1,'/page/news-and-events/events/upcoming/tai-chi-society-brisbane-open-house/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/tai-chi-society-brisbane-open-house','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:52:41',0),(67895,'2021-04-24 08:52:45','2021-04-24 08:52:45','29a4b7cb-4b5f-4a70-881a-1fb83e42f703',1,'/page/news-and-events/events/upcoming/exercise-is-medicine-workshop---23-may-2018-north-lakes/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/exercise-is-medicine-workshop---23-may-2018-north-lakes','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:52:45',0),(67896,'2021-04-24 08:53:01','2021-04-24 08:53:01','51fc8da1-ccd2-4c51-babe-367cc68eadd1',1,'/page/news-and-events/events/upcoming/targeting-anxiety-in-youth/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/targeting-anxiety-in-youth','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:53:01',0),(67897,'2021-04-24 08:53:04','2021-04-24 08:53:04','fa52d0e7-8e7c-413a-8d78-1080a1dd2211',1,'/page/news-and-events/events/upcoming/exercise-is-medicine-workshop---29-may-2018-lutwyche/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/exercise-is-medicine-workshop---29-may-2018-lutwyche','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:53:04',0),(67898,'2021-04-24 08:53:23','2021-04-24 08:53:23','ee9a4248-5276-414f-a6d6-e9661221ec72',1,'/page/news-and-events/events/upcoming/fundamentals-of-hiv-viral-hepatitis-and-sexual-health-nursing/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/fundamentals-of-hiv-viral-hepatitis-and-sexual-health-nursing','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:53:23',0),(67899,'2021-04-24 08:53:27','2021-04-24 08:53:27','65919d29-59d5-43cb-b80e-ba2a28fdf47c',1,'/page/news-and-events/events/upcoming/the-art-of-cbt-the-skilful-application-of-modern-cbt-to-common-clinical-problems/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/the-art-of-cbt-the-skilful-application-of-modern-cbt-to-common-clinical-problems','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:53:27',0),(67900,'2021-04-24 08:53:49','2021-04-24 08:53:49','ffbba1bf-047e-4c3e-9577-b46da3cfab99',1,'/page/news-and-events/events/upcoming/fundamentals-of-wound-management/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/fundamentals-of-wound-management','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:53:49',0),(67901,'2021-04-24 08:53:49','2021-04-24 08:53:49','adc56d56-b21d-4d8d-b306-5c8a3121c231',1,'/page/news-and-events/events/upcoming/the-healthpathways-conference/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/the-healthpathways-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:53:49',0),(67902,'2021-04-24 08:54:23','2021-04-24 08:54:23','7c8bc80f-8783-402f-9fed-3c57d19c2306',1,'/page/news-and-events/events/upcoming/univeristyofqueensland-businesseconomics-workshop/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/univeristyofqueensland-businesseconomics-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:54:23',0),(67903,'2021-04-24 08:54:36','2021-05-05 19:38:19','aeedcd6d-1534-49cd-b506-78f99c4aea19',1,'/page/news-and-events/events/upcoming/good-life-good-death-expo-brisbane-2-december/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/good-life-good-death-expo-brisbane-2-december','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-05 19:38:19',0),(67904,'2021-04-24 08:54:41','2021-04-29 05:18:49','a9f07a83-38b3-4690-9c5e-d8190a5b526c',1,'/page/news-and-events/events/upcoming/untangling-depression-practical-strategies-for-cases-that-challenge-us/','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/untangling-depression-practical-strategies-for-cases-that-challenge-us','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-29 05:18:49',0),(67905,'2021-04-24 08:54:57','2021-04-29 05:19:30','c77acd3b-10f1-442a-908c-15f99405a53c',1,'/page/news-and-events/events/upcoming/viral-hepatitis-and-renal-disease/','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/viral-hepatitis-and-renal-disease','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-29 05:19:30',0),(67906,'2021-04-24 08:55:17','2021-04-24 08:55:17','591bcf03-4386-497d-b562-e32eb4560ee3',1,'/page/news-and-events/events/upcoming/wesleyLifeForce-suicideprevention-13October/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/wesleyLifeForce-suicideprevention-13October','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:55:17',0),(67907,'2021-04-24 08:55:18','2021-04-24 08:55:18','f26a6754-dd30-4573-bdb5-c9de185fa4d8',1,'/page/news-and-events/events/upcoming/gp-education-evening-whats-new-in-mental-health-and-alcohol-and-other-drugs/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/gp-education-evening-whats-new-in-mental-health-and-alcohol-and-other-drugs','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:55:18',0),(67908,'2021-04-24 08:55:32','2021-04-24 08:55:32','782d3d96-f039-4b8c-b35a-a463c10fba2c',1,'/page/news-and-events/events/upcoming/wesleylifeforce-suicideprevention-clinicstaff-11October/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/wesleylifeforce-suicideprevention-clinicstaff-11October','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:55:32',0),(67909,'2021-04-24 08:55:38','2021-04-24 08:55:38','5248d36e-10c0-4105-b198-c02863f199d0',1,'/page/news-and-events/events/upcoming/gp-gastroenterology-and-hepatology-primary-care-brisbane-north-phn/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/gp-gastroenterology-and-hepatology-primary-care-brisbane-north-phn','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:55:38',0),(67910,'2021-04-24 08:55:52','2021-04-24 08:55:52','1e0eff9d-4eb2-41da-a368-32e471f6d52e',1,'/page/news-and-events/events/upcoming/wesleylifeforce-suicideprevention-thegap-22november/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/wesleylifeforce-suicideprevention-thegap-22november','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:55:52',0),(67911,'2021-04-24 08:56:17','2021-04-24 08:56:17','275f0474-0e65-48ea-bc83-4775d62e79d0',1,'/page/news-and-events/events/upcoming/hcv-elimination/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/hcv-elimination','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:56:17',0),(67912,'2021-04-24 08:56:38','2021-04-25 12:43:30','ad88cbfa-ad92-46c2-a45d-3e70044b57b1',1,'/page/news-and-events/events/upcoming/hiv-prep-update-for-gps-and-practice-nurses/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/hiv-prep-update-for-gps-and-practice-nurses','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-25 12:43:30',0),(67913,'2021-04-24 08:56:53','2021-04-24 08:56:53','762e890a-b3e8-415d-81c5-ef0424282669',1,'/page/news-and-events/events/upcoming/working-with-children-at-risk-of-harm/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/working-with-children-at-risk-of-harm','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:56:53',0),(67914,'2021-04-24 08:56:59','2021-04-24 08:56:59','3e253821-cbc1-4600-a1a0-af5a3d4655ab',1,'/page/news-and-events/events/upcoming/identifying-and-managing-eating-disorders-in-the-primary-care-setting/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/identifying-and-managing-eating-disorders-in-the-primary-care-setting','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:56:59',0),(67915,'2021-04-24 08:57:16','2021-04-29 05:22:56','725618c0-d7f4-4b17-b449-bae58c908efa',1,'/page/news-and-events/events/upcoming/wound-care---optimising-skin-integrity/','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/wound-care---optimising-skin-integrity','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-29 05:22:56',0),(67916,'2021-04-24 08:57:21','2021-04-24 08:57:43','2e7a686f-b176-48f8-91af-b1bac50cbcb8',1,'/page/news-and-events/events/upcoming/immunisation-catch-up-events-for-practice-nurses---lutwyche/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/immunisation-catch-up-events-for-practice-nurses---lutwyche','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 08:57:43',0),(67917,'2021-04-24 08:57:35','2021-04-29 05:23:42','c60430c3-1826-4dff-869b-12f6bfa8d36e',1,'/page/news-and-events/events/upcoming/wound-care---stoma-care-and-management/','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/wound-care---stoma-care-and-management','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-29 05:23:42',0),(67918,'2021-04-24 08:57:54','2021-04-24 08:57:54','c8b40235-6406-475a-abb6-852c5cd23aec',1,'/page/news-and-events/events/upcoming/woundinnovations-lymphoedema-octoberworkshop/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/woundinnovations-lymphoedema-octoberworkshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:57:54',0),(67919,'2021-04-24 08:58:04','2021-04-24 08:58:23','d8e3c610-84b1-4be2-b16b-a051217f2d0a',1,'/page/news-and-events/events/upcoming/immunisation-catch-up-events-for-practice-nurses---north-lakes/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/immunisation-catch-up-events-for-practice-nurses---north-lakes','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 08:58:23',0),(67920,'2021-04-24 08:58:10','2021-04-24 08:58:10','3987e6af-2a57-4639-b379-b42602615a36',1,'/page/news-and-events/events/upcoming/youngadulthealth-materhealthservices/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/youngadulthealth-materhealthservices','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:58:10',0),(67921,'2021-04-24 08:58:46','2021-04-24 08:58:46','8ac838eb-c75f-4b59-9e68-d6dcca22c574',1,'/page/news-and-events/events/upcoming/immunisationevent-16october-brisbanenorthphn/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/immunisationevent-16october-brisbanenorthphn','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:58:46',0),(67922,'2021-04-24 08:59:09','2021-04-24 08:59:09','4eb82d02-0c67-42d5-bf45-b65d3d73f6e1',1,'/page/news-and-events/events/upcoming/immunisationevent-lutwyche-23october-brisbanenorthphn/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/immunisationevent-lutwyche-23october-brisbanenorthphn','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:59:09',0),(67923,'2021-04-24 08:59:32','2021-04-24 08:59:32','9cb947a1-a1c4-426d-ae26-d8c90b64b6f4',1,'/page/news-and-events/events/upcoming/intensive-course-in-clinical-hypnosis/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/intensive-course-in-clinical-hypnosis','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 08:59:32',0),(67924,'2021-04-24 08:59:57','2021-04-24 09:00:19','5e3e0ace-9d72-49b3-832d-008cf7480ae2',1,'/page/news-and-events/events/upcoming/introduction-to-trauma-and-childrens-mental-health/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/events/upcoming/introduction-to-trauma-and-childrens-mental-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 09:00:19',0),(67925,'2021-04-24 09:00:41','2021-04-30 07:38:53','e3b8ec1c-ce2a-4f57-b81e-1d9b7f6c2da4',1,'/page/news-and-events/events/upcoming/lgbtiq-practice-in-clinical-settings---1st-may/','','95.91.15.174','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/lgbtiq-practice-in-clinical-settings---1st-may','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 07:38:53',0),(67926,'2021-04-24 09:01:03','2021-05-04 12:09:17','01557b4e-4807-40f3-8d51-1f0495ea7e6b',1,'/page/news-and-events/events/upcoming/lgbtiq-practice-in-clinical-settings---6th-july/','','78.46.61.245','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/lgbtiq-practice-in-clinical-settings---6th-july','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-04 12:09:17',0),(67927,'2021-04-24 09:01:24','2021-04-24 09:01:24','06225279-edba-466e-8c60-28e0adad0e41',1,'/page/news-and-events/latest-news/applications-close-this-monday-for-the-2018-commonwealth-games-medical-program/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/latest-news/applications-close-this-monday-for-the-2018-commonwealth-games-medical-program','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 09:01:24',0),(67928,'2021-04-24 09:01:24','2021-04-30 07:38:57','b00cc7a7-ccec-4ab2-b558-842c4bc59a9e',1,'/page/news-and-events/events/upcoming/lifestyle-medicine-2018/','','95.91.15.174','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/lifestyle-medicine-2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-30 07:38:57',0),(67929,'2021-04-24 09:02:06','2021-04-24 09:02:06','8caa1fed-8009-43e2-bdae-16717bdb478d',1,'/page/news-and-events/latest-news/brisbane-north-phn-farewells-board-chair/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/latest-news/brisbane-north-phn-farewells-board-chair','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 09:02:06',0),(67930,'2021-04-24 09:02:30','2021-04-29 05:36:32','7ae9876f-2c0e-451a-9fe0-0ad1deb65b72',1,'/page/news-and-events/latest-news/community-control-remains-key-to-closing-the-gap/','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/community-control-remains-key-to-closing-the-gap','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-29 05:36:32',0),(67931,'2021-04-24 09:07:47','2021-04-24 13:23:41','47fbf1f4-7f74-4092-b848-61ed141304f9',1,'/page/news-and-events/latest-news/funding-boost-for-local-drug-treatment-services/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/funding-boost-for-local-drug-treatment-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-24 13:23:41',0),(67932,'2021-04-24 09:08:59','2021-04-24 09:08:59','d1c48820-7d2b-4f4e-84f3-2da192f7718c',1,'/page/news-and-events/latest-news/gps-can-access-a-statement-of-choices-from-the-health-provider-portal/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/latest-news/gps-can-access-a-statement-of-choices-from-the-health-provider-portal','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 09:08:59',0),(67933,'2021-04-24 09:11:29','2021-04-24 09:11:29','af092c7e-aed5-496f-996b-e8f2f77ad4fc',1,'/page/news-and-events/latest-news/health-alliance-to-bridge-primary-care-and-hospital-gap/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/latest-news/health-alliance-to-bridge-primary-care-and-hospital-gap','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 09:11:29',0),(67934,'2021-04-24 09:12:49','2021-05-12 23:39:10','0c9b2dd4-6fdc-4047-8220-081ad5b9bed3',1,'/page/news-and-events/latest-news/jeff-cheverton-memorial-scholarship-2018/','','173.252.83.116','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: page/news-and-events/latest-news/jeff-cheverton-memorial-scholarship-2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-12 23:39:10',0),(67935,'2021-04-24 09:20:59','2021-04-24 09:20:59','69a7ce16-3879-4fe7-949d-1af01d597d53',1,'/page/news-and-events/latest-news/new-health-provider-portal-gives-gps-access-to-patient-records/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/news-and-events/latest-news/new-health-provider-portal-gives-gps-access-to-patient-records','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 09:20:59',0),(67936,'2021-04-24 09:33:12','2021-05-12 20:49:53','6095d9fb-d8bd-4314-8e05-002889f1085e',1,'/page/publications/health-needs-assessments/','','66.249.68.93','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/publications/health-needs-assessments','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 20:49:53',0),(67937,'2021-04-24 09:42:08','2021-05-09 04:16:18','51c49f8c-2352-4870-980e-9dfe17171a35',1,'/page/publications/partners-in-health/partners-in-health---october-2017/','','66.249.64.61','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/publications/partners-in-health/partners-in-health---october-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-09 04:16:18',0),(67938,'2021-04-24 09:45:47','2021-04-24 09:45:47','2b092133-1f2f-413d-b7e4-009374e8f2f0',1,'/page/publications/recovery/','','136.243.170.146','Mozilla/5.0 (compatible; BLEXBot/1.0; +http://webmeup-crawler.com/','Template not found: page/publications/recovery','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 09:45:47',0),(67939,'2021-04-24 09:50:36','2021-05-18 21:26:24','0c94d72a-6669-4e70-b26f-645c10e13f55',1,'/page/health-professionals/mental-health-services/low-intensity-mental-health-services/achieving-wellbeing-through-the-optimal-health-program/','','157.55.39.101','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/mental-health-services/low-intensity-mental-health-services/achieving-wellbeing-through-the-optimal-health-program','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 21:26:24',0),(67940,'2021-04-24 10:04:29','2021-05-04 12:06:22','f1f150a2-4afa-4ac0-bf4c-c83eb32c50cc',1,'/page/home/style-guide/document-listing/tes-txlsx/','','66.249.68.95','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/home/style-guide/document-listing/tes-txlsx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-04 12:06:22',0),(67941,'2021-04-24 10:12:47','2021-04-24 10:12:47','239866bd-b0da-4023-8e44-42ef2ec1e7ef',1,'/page/news-and-events/events/archive/north-brisbane-partners-in-recovery-annual-forum/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/north-brisbane-partners-in-recovery-annual-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 10:12:47',0),(67942,'2021-04-24 11:13:28','2021-05-04 00:38:54','23fe7ae6-c998-4e8b-8e1a-40d154a59374',1,'/page/news-and-events/events/upcoming/support-after-suicide-workshop-for-funeral-sector/','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/support-after-suicide-workshop-for-funeral-sector','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-04 00:38:54',0),(67943,'2021-04-24 11:15:52','2021-05-18 11:09:10','07abc3e6-3345-4855-8716-18c9fb396291',1,'/yearinreview/2017-18/connecting-communities-to-primary-care/','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: yearinreview/2017-18/connecting-communities-to-primary-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 11:09:10',0),(67944,'2021-04-24 11:32:04','2021-04-24 11:32:04','69a66c37-eb62-4153-951d-374f11af6609',1,'/events/metro-north-maternity-gp-alignment-program-march-part-1-2','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/metro-north-maternity-gp-alignment-program-march-part-1-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 11:32:04',0),(67945,'2021-04-24 11:45:17','2021-05-06 02:50:55','174151b6-6292-4261-a00e-d5efe18ed6dd',1,'/content/Document/Primary care liaison/Specialists List_Maternity_6_2.pdf','http://www.brisbanenorthphn.org.au/content/Document/Primary%20care%20liaison/Specialists%20List_Maternity_6_2.pdf','35.192.197.124','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/Specialists List_Maternity_6_2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 02:50:55',0),(67946,'2021-04-24 12:53:13','2021-04-24 12:53:13','bec12560-70ea-44bd-bf19-cbb865121115',1,'/content/Document/MNHHS Paediatric Referral MD v4_11(1).rtf','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/MNHHS Paediatric Referral MD v4_11(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 12:53:13',0),(67947,'2021-04-24 13:19:11','2021-05-17 12:26:58','81f65106-8fff-4764-bb48-0cbcac52f9b9',1,'/page/publications/medical-assisting/medical-assistant-april-2018/','','120.147.74.149','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko)','Template not found: page/publications/medical-assisting/medical-assistant-april-2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 12:26:58',0),(67948,'2021-04-24 13:23:41','2021-05-16 04:43:45','b7ba60e5-a37d-4a19-ba67-848f83da54e6',1,'/page/publications/partners-in-health/partners-in-health-july-2016/','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/partners-in-health-july-2016','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 04:43:45',0),(67949,'2021-04-24 13:54:36','2021-05-03 20:40:59','839e74d8-188a-44bd-a8b4-344be0f413c9',1,'/content/Document/Brisbane MIND Plus service map FINAL.pdf','http://www.brisbanenorthphn.org.au/content/Document/Brisbane%20MIND%20Plus%20service%20map%20FINAL.pdf','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/Brisbane MIND Plus service map FINAL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-03 20:40:59',0),(67950,'2021-04-24 16:09:57','2021-05-09 06:18:06','360ef00f-e2ab-4323-93bb-7b91952a887d',1,'/jobs/everton-hills-family-practice-registered-nurse','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/everton-hills-family-practice-registered-nurse','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-09 06:18:06',0),(67951,'2021-04-24 16:22:01','2021-04-27 06:25:21','45e0e61c-a6dc-4cc2-88fd-8b79df736fa6',1,'/content/Document/COVID-19/Virtual ED - GP Advice Service factsheet - FINAL.pdf','http://www.brisbanenorthphn.org.au/content/Document/COVID-19/Virtual%20ED%20-%20GP%20Advice%20Service%20factsheet%20-%20FINAL.pdf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/COVID-19/Virtual ED - GP Advice Service factsheet - FINAL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-27 06:25:21',0),(67952,'2021-04-24 16:47:29','2021-05-11 01:44:50','36b8e3aa-f433-404b-87b8-c7d96f7b6067',1,'/page/news-and-events/latest-news/ndis-events-popular-with-local-gps','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/ndis-events-popular-with-local-gps','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-11 01:44:50',0),(67953,'2021-04-24 16:52:50','2021-05-02 22:24:42','d28914cd-fab6-4780-9dca-f7f4539b9660',1,'/content/Document/COVID-19/TEM_GP COVID19 checklist v1_2 200409.pdf','http://www.brisbanenorthphn.org.au/content/Document/COVID-19/TEM_GP%20COVID19%20checklist%20v1_2%20200409.pdf','34.94.135.136','Go-http-client/1.1','Template not found: content/Document/COVID-19/TEM_GP COVID19 checklist v1_2 200409.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-02 22:24:42',0),(67954,'2021-04-24 16:59:12','2021-04-30 04:25:17','9e6e06b3-c0f2-4283-b346-810aca133081',1,'/content/Document/Events/Australian Association of Stomal Therapy Nurses Conference 2017.pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/Australian Association of Stomal Therapy Nurses Conference 2017.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-30 04:25:17',0),(67955,'2021-04-24 17:29:53','2021-04-24 17:29:53','1bc3f31f-3272-4448-9416-442839776b4c',1,'/content/Document/Getting started with Brisbane MIND Plus FINAL.pdf','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Getting started with Brisbane MIND Plus FINAL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 17:29:53',0),(67956,'2021-04-24 18:09:54','2021-04-24 18:09:54','6118abd3-e6b5-44df-8865-5f229966d199',1,'/assets/admin/plugins/elfinder/connectors/php/connector.php','http://www.google.com/','23.228.109.147','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2896.3 Safari/537.36','Template not found: assets/admin/plugins/elfinder/connectors/php/connector.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 18:09:54',0),(67957,'2021-04-24 18:13:46','2021-05-07 08:44:38','0af815f8-0388-46ee-88f9-cdd0619c2f2e',1,'/content/Document/COVID-19/INF_COVID-19 Flu clinics(1).pdf','http://www.brisbanenorthphn.org.au/content/Document/COVID-19/INF_COVID-19%20Flu%20clinics(1).pdf','34.94.5.119','Go-http-client/1.1','Template not found: content/Document/COVID-19/INF_COVID-19 Flu clinics(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-07 08:44:38',0),(67958,'2021-04-24 18:19:39','2021-05-06 15:10:49','a2a40c3d-2a8c-4a0d-9220-424ae57cf72e',1,'/jobs/practice-manager-1','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/practice-manager-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-06 15:10:49',0),(67959,'2021-04-24 19:05:10','2021-05-05 12:16:32','8679d936-e9a5-4e5e-a41a-08b2038f11c2',1,'/content/Document/Pathways/Minimum exercise prescription recommendations.pdf','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Minimum exercise prescription recommendations.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-05 12:16:32',0),(67960,'2021-04-24 19:45:45','2021-04-24 19:45:45','fc50b60e-afe5-4563-a180-3296349ad237',1,'/yearinreview/2017-18/a-strategic-alliance-with-our-local-hospital-services','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/a-strategic-alliance-with-our-local-hospital-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 19:45:45',0),(67961,'2021-04-24 20:25:24','2021-05-17 20:29:04','0b0d708b-8640-44ff-9f78-470f2099f9ac',1,'/page/news-and-events/events/upcoming/covid-19-gp-education-online-advice-and-support-for-general-practice','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/covid-19-gp-education-online-advice-and-support-for-general-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 20:29:04',0),(67962,'2021-04-24 20:26:54','2021-04-24 20:26:54','9ef3712c-7dc4-4e58-a02c-baf74f626934',1,'/content/Image/Brisbane North PHN Region - CROPPED_WEB.jpg','','192.0.101.190','Photon/1.0','Template not found: content/Image/Brisbane North PHN Region - CROPPED_WEB.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 20:26:54',0),(67963,'2021-04-24 20:42:35','2021-04-28 08:59:37','d2190009-0121-4b46-b8d4-ad9cfd980685',1,'/news-and-events/latest-news/diversity-and-wellness-at-the-brisbane-north-annual-aged-care-forum/','https://www.brisbanenorthphn.org.au/news-and-events/latest-news/diversity-and-wellness-at-the-brisbane-north-annual-aged-care-forum/','5.188.48.14','Mozilla/5.0 (Windows NT 10.0; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4086.0 Safari/537.36','Template not found: news-and-events/latest-news/diversity-and-wellness-at-the-brisbane-north-annual-aged-care-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-28 08:59:37',0),(67964,'2021-04-24 20:53:12','2021-04-24 20:53:12','232e09de-c234-4622-829a-1e79c7298868',1,'/content/Document/Templates/4.9/MNHHS Paediatric Referral BP v4_9.rtf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.9/MNHHS Paediatric Referral BP v4_9.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 20:53:12',0),(67965,'2021-04-24 21:18:22','2021-05-16 05:32:36','45f16ca5-9f05-44e1-a863-00a4553c6e22',1,'/content/Document/Pathways/5. World Health Organisation_asthma definition.pdf','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/5. World Health Organisation_asthma definition.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 05:32:36',0),(67966,'2021-04-24 21:43:12','2021-04-26 15:10:28','14de8839-0ce8-405c-967c-f16b19d4ec74',1,'/page/news-and-events/latest-news/call-for-expressions-of-interest-a-gp-representative-for-collaboration-in-mind','http://brisbanenorthphn.org.au/page/news-and-events/latest-news/call-for-expressions-of-interest-a-gp-representative-for-collaboration-in-mind','35.210.7.60','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/latest-news/call-for-expressions-of-interest-a-gp-representative-for-collaboration-in-mind','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-26 15:10:28',0),(67967,'2021-04-24 22:28:06','2021-04-24 22:28:06','2db9d737-fef2-4ff7-8d32-3a093e8bb764',1,'/page/news-and-events/events/upcoming/lgbtiq-practice-in-clinical-settings/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/lgbtiq-practice-in-clinical-settings','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 22:28:06',0),(67968,'2021-04-24 23:10:23','2021-04-24 23:10:23','c42d5672-7c75-43d2-ba37-0f626e48e04d',1,'/page/health-professionals/Local Positions Vacant/gp-required---everton-hills-medical-centre/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/gp-required---everton-hills-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-24 23:10:23',0),(67969,'2021-04-24 23:29:35','2021-05-01 18:08:38','b3d9cb8c-cd42-4233-9624-48cdbe802098',1,'/content/Document/Templates/5.3/MNHHS Redcliffe Hospital 5_3 BP .rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%20Redcliffe%20Hospital%205_3%20BP%20.rtf','34.94.135.136','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS Redcliffe Hospital 5_3 BP .rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 18:08:38',0),(67970,'2021-04-25 00:16:52','2021-04-25 00:16:52','5440e6c3-0b0d-4814-936f-72b2ff6e0cb5',1,'/icms_docs/218291_tes-txlsx.xlsx','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: icms_docs/218291_tes-txlsx.xlsx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 00:16:52',0),(67971,'2021-04-25 00:21:34','2021-05-13 01:35:58','46a7ecc9-634e-40b3-9e43-5bf964b8c58f',1,'/page/news-and-events/latest-news/my-health-record-at-pride-festival','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/my-health-record-at-pride-festival','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-13 01:35:58',0),(67972,'2021-04-25 00:48:40','2021-04-25 00:48:40','d70c35e5-9b84-450e-ad4a-9a951f159449',1,'/page/news-and-events/events/archive/yoga-as-an-adjunct-to-cbt-for-autism-spectrum-disorders/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/yoga-as-an-adjunct-to-cbt-for-autism-spectrum-disorders','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 00:48:40',0),(67973,'2021-04-25 01:23:25','2021-04-25 01:23:25','3b164f5f-f614-4dd6-8398-b39674c7d7f8',1,'/fr/model/aliceinks/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: fr/model/aliceinks','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 01:23:25',0),(67974,'2021-04-25 01:23:28','2021-05-16 18:15:46','a0987b7c-40b6-47a4-ab96-6b3afe907768',1,'/jobs/psychologist-chermside','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/psychologist-chermside','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-16 18:15:46',0),(67975,'2021-04-25 01:23:55','2021-04-25 01:23:55','0b289339-d831-4632-b82a-58a9ba1e791e',1,'/page/news-and-events/events/upcoming/2017-health-services-research-association-of-australia-and-new-zealand---3-day-confereence','http://brisbanenorthphn.org.au/page/news-and-events/events/upcoming/2017-health-services-research-association-of-australia-and-new-zealand---3-day-confereence','35.210.133.198','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/events/upcoming/2017-health-services-research-association-of-australia-and-new-zealand---3-day-confereence','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 01:23:55',0),(67976,'2021-04-25 01:28:01','2021-04-25 01:28:01','65a7421e-d39e-4b77-a577-445d3e362bce',1,'/content/Document/LocalLink_19July.pdf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/LocalLink_19July.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 01:28:01',0),(67977,'2021-04-25 02:49:55','2021-04-25 02:49:55','21b80233-9164-4e2e-89a8-1cb4ee64f70e',1,'/content/Document/MNHHS RBWH Referral MD v4_11(1).rtf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/MNHHS RBWH Referral MD v4_11(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 02:49:55',0),(67978,'2021-04-25 03:16:27','2021-04-25 03:16:27','9aa96658-2864-4a84-beb3-d51c60a8c739',1,'/page/health-professionals/Local Positions Vacant/general-practice-staff-required---holdsworth-house-medical-brisbane/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practice-staff-required---holdsworth-house-medical-brisbane','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 03:16:27',0),(67979,'2021-04-25 03:28:59','2021-04-25 03:28:59','6357e2f1-af89-4bc4-a8e7-c082313b778d',1,'/page/health-professionals/digital-health/my-health-record/registering-to-access-my-health-record-as-a-healthcare-organisation/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/digital-health/my-health-record/registering-to-access-my-health-record-as-a-healthcare-organisation','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 03:28:59',0),(67980,'2021-04-25 03:34:04','2021-04-25 03:34:04','e6f077ec-bdb7-4c83-be94-0a02f341465c',1,'/content/Media/MNHHS Palliative Referral v4.9_.4W7','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Media/MNHHS Palliative Referral v4.9_.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 03:34:04',0),(67981,'2021-04-25 04:46:00','2021-05-06 10:47:02','8ff4e0aa-3fe8-4535-9b18-eb20f00b8628',1,'/content/Document/Events/2018/Upper Limb Module Flyer.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2018/Upper%20Limb%20Module%20Flyer.pdf','34.73.187.226','Go-http-client/1.1','Template not found: content/Document/Events/2018/Upper Limb Module Flyer.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 10:47:02',0),(67982,'2021-04-25 05:33:44','2021-04-25 05:33:44','0b717013-b26d-4e48-90ae-f9782c86fc45',1,'/page/news-and-events/events/upcoming/chronic-disease-management-2020/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/chronic-disease-management-2020','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 05:33:44',0),(67983,'2021-04-25 05:45:14','2021-04-25 05:45:14','fc0dc5ca-2757-47b4-8a99-5b5a0c9c60b4',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---brighton/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---brighton','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 05:45:14',0),(67984,'2021-04-25 05:48:16','2021-04-25 05:48:16','2607accc-09d7-4884-9bfa-c14a70e70188',1,'/content/Document/Events/mngpap-maternity-28_07_18.pdf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/mngpap-maternity-28_07_18.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 05:48:16',0),(67985,'2021-04-25 06:00:19','2021-05-11 01:57:25','93683b2f-59bf-4033-8779-3a4dcb798a92',1,'/page/news-and-events/latest-news/new-specialist-dementia-care-program-unit-for-brisbane-north/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/new-specialist-dementia-care-program-unit-for-brisbane-north','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-11 01:57:25',0),(67986,'2021-04-25 06:06:23','2021-05-11 05:00:58','478f9c2b-6c4c-4f36-8725-cf97a909d064',1,'/jobs/medical-receptionist-opportunity-1','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/medical-receptionist-opportunity-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,22,'2021-05-11 05:00:58',0),(67987,'2021-04-25 06:13:17','2021-04-25 06:13:17','16237120-54a1-4c67-a6e2-4dfb6d2c816b',1,'/page/news-and-events/events/archive/lifestyle-medicine-2020/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/lifestyle-medicine-2020','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 06:13:17',0),(67988,'2021-04-25 06:18:05','2021-04-25 06:18:05','e89ddea5-43cd-48ee-b02e-bc2c7100e482',1,'/page/news-and-events/latest-news/covid-19-information/covid-19-news-updates/march-2020','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/covid-19-information/covid-19-news-updates/march-2020','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 06:18:05',0),(67989,'2021-04-25 06:24:57','2021-05-07 22:15:05','bdca3e6f-fdd4-4b53-ab32-88025646313b',1,'/content/Document/Brisbane MIND Provider List_APR_2016_210416.pdf','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List_APR_2016_210416.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 22:15:05',0),(67990,'2021-04-25 06:36:27','2021-04-25 06:36:27','f0b34ba5-9607-458e-be11-f328030e0cc3',1,'/content/Document/Pathways/Oesophageal perforation node 55.pdf','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/Oesophageal perforation node 55.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 06:36:27',0),(67991,'2021-04-25 06:58:14','2021-05-15 05:45:49','cbac262c-d15c-4da1-a802-da932dee2c95',1,'/page/news-and-events/events/upcoming/open-disclosure-workshop','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/open-disclosure-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 05:45:49',0),(67992,'2021-04-25 07:02:08','2021-05-04 05:34:26','a7999f1d-7f32-40a8-a98f-bcf724bf60b7',1,'/content/Document/170428_HealthAlert_PFAS contamination factsheet(1).pdf','http://www.brisbanenorthphn.org.au/content/Document/170428_HealthAlert_PFAS%20contamination%20factsheet(1).pdf','34.73.220.108','Go-http-client/1.1','Template not found: content/Document/170428_HealthAlert_PFAS contamination factsheet(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-04 05:34:26',0),(67993,'2021-04-25 07:13:31','2021-04-25 07:13:31','f7cc1627-e6b3-4a77-9453-22065a76a45c',1,'/page/news-and-events/events/upcoming/paediatric-masterclass/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/paediatric-masterclass','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 07:13:31',0),(67994,'2021-04-25 07:39:24','2021-05-14 21:51:36','f4c50910-6043-4570-a38a-c3450d73e7a6',1,'/page/news-and-events/events/upcoming/immunisation-for-at-risk-patients','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/immunisation-for-at-risk-patients','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 21:51:36',0),(67995,'2021-04-25 08:57:20','2021-04-26 17:46:40','10484e6d-3599-46f8-ada6-b63e1711ccf8',1,'/content/Document/Pathways/FC1_Skin_Tears.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/FC1_Skin_Tears.pdf','146.148.65.39','Go-http-client/1.1','Template not found: content/Document/Pathways/FC1_Skin_Tears.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-26 17:46:40',0),(67996,'2021-04-25 09:20:04','2021-04-25 09:20:04','06696344-4c35-4fe2-b99d-9a28724a366c',1,'/wp-content/plugins/duplicate-post/duplicate-post.php','','23.250.53.82','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36','Template not found: wp-content/plugins/duplicate-post/duplicate-post.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 09:20:04',0),(67997,'2021-04-25 09:20:08','2021-04-25 09:20:08','d242bab5-a95a-4a26-a738-215b1bd0d8d2',1,'/wp-content/plugins/ultimate-social-media-icons/ultimate_social_media_icons.php','','23.250.53.82','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36','Template not found: wp-content/plugins/ultimate-social-media-icons/ultimate_social_media_icons.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 09:20:08',0),(67998,'2021-04-25 09:20:13','2021-04-25 09:20:13','98fafca5-7b6f-4b14-8a0a-d09df446c517',1,'/wp-content/plugins/delete-duplicate-posts/delete-duplicate-posts.php','','23.250.53.82','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36','Template not found: wp-content/plugins/delete-duplicate-posts/delete-duplicate-posts.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 09:20:13',0),(67999,'2021-04-25 09:20:16','2021-04-25 09:20:16','7e883638-1ad7-4075-9fc3-0ea10eec1682',1,'/wp-content/plugins/duplicate-page/duplicatepage.php','','23.250.53.82','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36','Template not found: wp-content/plugins/duplicate-page/duplicatepage.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 09:20:16',0),(68000,'2021-04-25 09:20:19','2021-04-25 09:20:19','b0d982b8-d8f8-4bb9-b308-5a3a7ec54c87',1,'/wp-content/plugins/post-duplicator/m4c-postduplicator.php','','23.250.53.82','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36','Template not found: wp-content/plugins/post-duplicator/m4c-postduplicator.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 09:20:19',0),(68001,'2021-04-25 09:20:35','2021-04-25 09:20:35','7cbbb72e-cf78-42e9-b966-0cc17e0336aa',1,'/page/news-and-events/events/archive/north-lakes-immunisation-catch-up-event-practice-nurses-august-2017/','','207.46.13.54','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/north-lakes-immunisation-catch-up-event-practice-nurses-august-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 09:20:35',0),(68002,'2021-04-25 09:31:59','2021-04-25 09:31:59','f9c5f0d5-4ffb-4c08-96cc-e96ea99f2226',1,'/content/Document/Primary%20care%20liaison/Are%20you%20still%20meeting%20all%20your%20eHealth%20PIP%20requirements_PCLO_2017.pdf','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/Are%2520you%2520still%2520meeting%2520all%2520your%2520eHealth%2520PIP%2520requirements_PCLO_2017.pdf','34.122.223.89','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/Are you still meeting all your eHealth PIP requirements_PCLO_2017.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 09:31:59',0),(68003,'2021-04-25 10:17:54','2021-05-18 19:49:35','f345f3b0-edf1-4569-a737-1d0aabb00c77',1,'/page/news-and-events/events/upcoming/wesley-lifeforce-suicide-prevention-training-workshop/','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/wesley-lifeforce-suicide-prevention-training-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 19:49:35',0),(68004,'2021-04-25 10:28:18','2021-04-25 10:28:18','ac0407a1-f28d-4896-8089-7a286c1d28c9',1,'/tel:07 3284 9452','https://www.google.com/','34.82.173.189','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.1 Safari/605.1.15','Template not found: tel:07 3284 9452','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 10:28:18',0),(68005,'2021-04-25 10:40:47','2021-05-02 03:22:53','d6339430-08d5-4815-ad58-7fdb90700731',1,'/page/news-and-events/latest-news/congratulations-new-medical-assisting-graduates','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/congratulations-new-medical-assisting-graduates','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-02 03:22:53',0),(68006,'2021-04-25 10:44:33','2021-04-25 10:44:33','6642ea9f-def1-45c8-9ad2-2084149bf0d2',1,'/content/Document/Aged%20and%20community%20care/BNPHN_GOAS_NBHHS_Eval_GOAS_Pilot_Project_A4_Aug2018_V6_FINAL_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Aged%2520and%2520community%2520care/BNPHN_GOAS_NBHHS_Eval_GOAS_Pilot_Project_A4_Aug2018_V6_FINAL_WEB.pdf','35.225.69.75','Go-http-client/1.1','Template not found: content/Document/Aged and community care/BNPHN_GOAS_NBHHS_Eval_GOAS_Pilot_Project_A4_Aug2018_V6_FINAL_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 10:44:33',0),(68007,'2021-04-25 11:17:07','2021-04-25 11:17:07','77f73ca1-d0e6-43ae-952c-574825af59a1',1,'/content/Document/DRA_2016_MHSP_Needs Assessment(1).pdf','http://www.brisbanenorthphn.org.au/content/Document/DRA_2016_MHSP_Needs%20Assessment(1).pdf','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/DRA_2016_MHSP_Needs Assessment(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 11:17:07',0),(68008,'2021-04-25 11:38:46','2021-04-25 11:38:46','2977bfe3-7c32-44a1-a7f2-6d9dfd0eff26',1,'/content/Document/MNHHS Maternity Referral ZM v4_10.rtf','http://www.brisbanenorthphn.org.au/content/Document/MNHHS%20Maternity%20Referral%20ZM%20v4_10.rtf','34.122.151.49','Go-http-client/1.1','Template not found: content/Document/MNHHS Maternity Referral ZM v4_10.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 11:38:46',0),(68009,'2021-04-25 11:42:12','2021-04-25 11:42:12','5c78f7ca-f85d-42de-a64f-8690f938d06a',1,'/content/Document/Templates/4.12/PractiX%20v4.12/MNHHS%20Palliative%20Care%20PractiX%20v4_12.doc','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.12/PractiX%2520v4.12/MNHHS%2520Palliative%2520Care%2520PractiX%2520v4_12.doc','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/Templates/4.12/PractiX v4.12/MNHHS Palliative Care PractiX v4_12.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 11:42:12',0),(68010,'2021-04-25 11:50:50','2021-05-17 23:27:48','b111901e-7a42-467a-884a-7cc9436f4d6a',1,'/page/news-and-events/latest-news/emergency-department-clinical-notes-in-the-viewer-from-health-provider-portal','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/emergency-department-clinical-notes-in-the-viewer-from-health-provider-portal','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-17 23:27:48',0),(68011,'2021-04-25 11:52:59','2021-04-25 11:52:59','fd103aa0-122b-492b-be87-a0b8200e878d',1,'/content/Document/Templates/Brisbane%20MIND/MIND%20Referral%20PDF%20V3%20(Published).pdf','http://www.brisbanenorthphn.org.au/content/Document/Templates/Brisbane%2520MIND/MIND%2520Referral%2520PDF%2520V3%2520(Published).pdf','34.122.151.49','Go-http-client/1.1','Template not found: content/Document/Templates/Brisbane MIND/MIND Referral PDF V3 (Published).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 11:52:59',0),(68012,'2021-04-25 11:55:10','2021-05-13 09:35:48','ca7b0479-8db9-4680-91bc-d4a3d4bba8d1',1,'/page/publications/reports-and-plans','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/reports-and-plans','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 09:35:48',0),(68013,'2021-04-25 12:01:26','2021-05-14 12:57:35','ad25407c-53f9-40ee-b200-acf5c6076611',1,'/page/news-and-events/latest-news/get-familiar-with-healthpathways-during-breast-cancer-awareness-month','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/get-familiar-with-healthpathways-during-breast-cancer-awareness-month','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-14 12:57:35',0),(68014,'2021-04-25 12:02:58','2021-05-11 05:34:02','e57cf2c9-cb39-4bae-a498-d4f89d38a9cf',1,'/content/Document/Events/INVITATION - PIP QI_1904_v2 (002).pdf','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/INVITATION - PIP QI_1904_v2 (002).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-11 05:34:02',0),(68015,'2021-04-25 12:12:27','2021-05-17 08:18:16','817e2ace-6374-48b0-a1c8-78bf4ce903de',1,'/content/Document/Events/2018/22 May invitation.pdf','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Events/2018/22 May invitation.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 08:18:16',0),(68016,'2021-04-25 12:13:53','2021-04-25 12:13:53','5bd51192-8edf-4e39-ac70-01694fdf2a3c',1,'/content/Document/Templates/5.3/Specialists%20List_RBWH_5_3.pdf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/Specialists%2520List_RBWH_5_3.pdf','34.122.151.49','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/Specialists List_RBWH_5_3.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 12:13:53',0),(68017,'2021-04-25 12:43:36','2021-05-12 22:28:15','78d94f77-16df-4232-add0-c31586b787ad',1,'/page/news-and-events/events/upcoming/icif-copd-project---gp-active-learning-module---wed-pm-1-of-3/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/icif-copd-project---gp-active-learning-module---wed-pm-1-of-3','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 22:28:15',0),(68018,'2021-04-25 12:43:42','2021-04-25 12:43:42','dcbebbd4-f0f1-43dc-b489-3c6b16022045',1,'/page/news-and-events/events/upcoming/immunisation-catch-up-for-practice-nurses---lutwyche-august/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/immunisation-catch-up-for-practice-nurses---lutwyche-august','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 12:43:42',0),(68019,'2021-04-25 12:48:36','2021-05-17 09:15:46','80108c6b-d188-470e-8a97-9455c37bafbe',1,'/page/news-and-events/latest-news/new-dedicated-service-to-support-mental-health-through-covid-19','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/new-dedicated-service-to-support-mental-health-through-covid-19','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-17 09:15:46',0),(68020,'2021-04-25 13:09:42','2021-04-25 13:09:42','69180285-0ef4-4c29-a3ce-64a718c7286f',1,'/content/Document/2018 Network Link Advertising Specifications_INTERIM DOCUMENT.pdf','http://www.brisbanenorthphn.org.au/content/Document/2018%20Network%20Link%20Advertising%20Specifications_INTERIM%20DOCUMENT.pdf','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/2018 Network Link Advertising Specifications_INTERIM DOCUMENT.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 13:09:42',0),(68021,'2021-04-25 13:33:57','2021-04-25 13:33:57','2f87b067-22f6-4686-b1b1-9e1f60e0719c',1,'/content/Document/Templates/4.9/MNHHS%20RBWH%20Referral%20PractiX%20v4_9.doc','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.9/MNHHS%2520RBWH%2520Referral%2520PractiX%2520v4_9.doc','34.122.151.49','Go-http-client/1.1','Template not found: content/Document/Templates/4.9/MNHHS RBWH Referral PractiX v4_9.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 13:33:57',0),(68022,'2021-04-25 13:37:14','2021-05-07 12:55:28','0741fdc8-258c-4a71-a33d-765188910172',1,'/content/Document/Media Releases/MR_Palliative care scholarships upskill local nursing workforce_100319.pdf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Media Releases/MR_Palliative care scholarships upskill local nursing workforce_100319.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 12:55:28',0),(68023,'2021-04-25 13:42:24','2021-04-25 13:42:24','d0276fa9-5f78-49bf-9dc0-3b486eb5def6',1,'/content/Document/Templates/Brisbane MIND/MIND Additional Sessions V3 BP.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/Brisbane%20MIND/MIND%20Additional%20Sessions%20V3%20BP.rtf','35.225.69.75','Go-http-client/1.1','Template not found: content/Document/Templates/Brisbane MIND/MIND Additional Sessions V3 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 13:42:24',0),(68024,'2021-04-25 13:52:30','2021-04-25 13:52:30','1932e985-b0c2-43e5-862c-1939069bc89a',1,'/crossdomain.xml','','165.232.157.33','Nuclei - Open-source project (github.com/projectdiscovery/nuclei)','Template not found: crossdomain.xml','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 13:52:30',0),(68025,'2021-04-25 13:54:35','2021-04-25 13:54:35','aeb48138-59aa-49a3-b3fa-ba1698df07e0',1,'/content/Document/Primary%20care%20liaison/eHealth-PIP-toolkit-BP-reduced-file.pdf','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/eHealth-PIP-toolkit-BP-reduced-file.pdf','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/eHealth-PIP-toolkit-BP-reduced-file.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 13:54:35',0),(68026,'2021-04-25 14:03:53','2021-04-25 14:03:53','99b89675-2e4d-4c91-b10c-6a438bd35e89',1,'/content/Document/Health%20alerts/BNPHN_GP_Measles_Alert_27122018.pdf','http://www.brisbanenorthphn.org.au/content/Document/Health%2520alerts/BNPHN_GP_Measles_Alert_27122018.pdf','34.122.151.49','Go-http-client/1.1','Template not found: content/Document/Health alerts/BNPHN_GP_Measles_Alert_27122018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 14:03:53',0),(68027,'2021-04-25 14:13:14','2021-05-08 19:03:53','06e30069-1019-4132-aa24-e87e5d79718f',1,'/content/Document/Templates/4.9/MNHHS Maternity Referral BP v4_9.rtf','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.9/MNHHS Maternity Referral BP v4_9.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-08 19:03:53',0),(68028,'2021-04-25 15:06:29','2021-05-17 23:37:43','c79b0be9-9507-4ad2-b819-90a45f692fc5',1,'/page/news-and-events/latest-news/gps-and-pharmacists-invited-to-complete-my-health-record-awareness-survey','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/gps-and-pharmacists-invited-to-complete-my-health-record-awareness-survey','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-17 23:37:43',0),(68029,'2021-04-25 16:02:14','2021-04-25 16:02:14','a15a857b-a391-46aa-afcc-a14d8968e5d0',1,'/page/health-professionals/Local Positions Vacant/practice-nurse-required---gympie-road-medical-centre/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse-required---gympie-road-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 16:02:14',0),(68030,'2021-04-25 16:02:38','2021-04-25 16:02:38','317c0d40-f968-47cf-88ee-c6b7bea12c34',1,'/our-programs/aged-and-community-care/chronic-wound-careDening,','','80.72.11.74','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)','Template not found: our-programs/aged-and-community-care/chronic-wound-careDening,','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 16:02:38',0),(68031,'2021-04-25 16:11:53','2021-04-25 16:11:53','f1a484fa-4173-4b97-a2f3-8c0b3d303dad',1,'/admin/elfinder/connectors/php/connector.php','http://www.google.com/','23.228.109.147','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2896.3 Safari/537.36','Template not found: admin/elfinder/connectors/php/connector.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 16:11:53',0),(68032,'2021-04-25 16:21:34','2021-04-25 16:21:34','caab9cf6-04bf-4c4a-be88-79af70907bc0',1,'/content/Document/Aboriginal%20and%20Torres%20Strait%20Islander%20SEQ%20Murri%20Service%20Directory%20v3.1%20(June%202015)%20-%20User%20Guide.pdf','','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/Aboriginal and Torres Strait Islander SEQ Murri Service Directory v3.1 (June 2015) - User Guide.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 16:21:34',0),(68033,'2021-04-25 16:35:46','2021-05-18 16:44:08','3d6c1f82-e171-455c-9fc4-26c5db8101cd',1,'/page/news-and-events/events/upcoming/privacy-obligations-post-opt-out-for-my-health-record/','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/privacy-obligations-post-opt-out-for-my-health-record','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-18 16:44:08',0),(68034,'2021-04-25 18:39:34','2021-04-25 18:39:34','3f833b21-dc08-4ae9-9c1d-ed1063e83ce2',1,'/content/Document/Templates/4.8/MNHHS Maternity Referral MD v4_8.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.8/MNHHS%20Maternity%20Referral%20MD%20v4_8.rtf','34.122.151.49','Go-http-client/1.1','Template not found: content/Document/Templates/4.8/MNHHS Maternity Referral MD v4_8.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 18:39:34',0),(68035,'2021-04-25 18:40:32','2021-04-29 11:19:08','18083446-b875-4e1c-a918-ce2bfaec61bc',1,'/page/news-and-events/latest-news/non-executive-director-opportunities-available-with-the-phn','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/non-executive-director-opportunities-available-with-the-phn','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-29 11:19:08',0),(68036,'2021-04-25 19:07:06','2021-04-25 19:07:06','fa67e973-12f0-4357-8689-f262452c6d52',1,'/content/Document/New%20Practitioner%20Induction%20Kit%20170711.pdf','http://www.brisbanenorthphn.org.au/content/Document/New%2520Practitioner%2520Induction%2520Kit%2520170711.pdf','34.122.151.49','Go-http-client/1.1','Template not found: content/Document/New Practitioner Induction Kit 170711.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 19:07:06',0),(68037,'2021-04-25 19:26:14','2021-05-05 17:13:20','76493d62-a964-44de-ac9e-64e37b95df9e',1,'/page/health-professionals/ndis/gps-flock-to-the-phns-first-ndis-event','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/ndis/gps-flock-to-the-phns-first-ndis-event','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-05 17:13:20',0),(68038,'2021-04-25 20:02:27','2021-05-11 15:56:20','93772d7f-781c-4207-8dcc-ad3a784a2c62',1,'/content/Document/Events/2019/MTOP in General Practice Seminar FINAL.pdf','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Events/2019/MTOP in General Practice Seminar FINAL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 15:56:20',0),(68039,'2021-04-25 20:31:57','2021-04-25 20:31:57','823b7211-b0c0-4bdb-b099-37849d25b8ea',1,'/content/Document/To%20Share/LIS_Service%20Hubs_MNMHS%20catchment%20areas_1906.pdf','http://www.brisbanenorthphn.org.au/content/Document/To%2520Share/LIS_Service%2520Hubs_MNMHS%2520catchment%2520areas_1906.pdf','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/To Share/LIS_Service Hubs_MNMHS catchment areas_1906.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 20:31:57',0),(68040,'2021-04-25 20:43:07','2021-04-25 20:43:07','569ef116-c03e-41c1-8a9a-822ab1d413d4',1,'/content/Document/Templates/5.3/MNHHS%20Maternity%20Booking-in%205_3%20BP.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%2520Maternity%2520Booking-in%25205_3%2520BP.rtf','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS Maternity Booking-in 5_3 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 20:43:07',0),(68041,'2021-04-25 21:52:36','2021-04-25 21:52:36','4578e9bf-7344-4d78-b28f-df6984ae70f2',1,'/content/Document/Events/2019/Metro North Health Forum/MNHF19 - Angela Taylor.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/Metro%20North%20Health%20Forum/MNHF19%20-%20Angela%20Taylor.pdf','34.122.151.49','Go-http-client/1.1','Template not found: content/Document/Events/2019/Metro North Health Forum/MNHF19 - Angela Taylor.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 21:52:36',0),(68042,'2021-04-25 22:08:20','2021-04-25 22:08:20','00a5c1bd-e2d1-489f-acf2-f4d6f22f79e0',1,'/content/Document/Templates/4.5/MNHHS Maternity Referral BP v4.5 160101.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.5/MNHHS%20Maternity%20Referral%20BP%20v4.5%20160101.rtf','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/Templates/4.5/MNHHS Maternity Referral BP v4.5 160101.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 22:08:20',0),(68043,'2021-04-25 22:16:28','2021-04-25 22:16:28','f2cb8be8-8e0f-46d3-b15d-099103c8e10b',1,'/content/Document/Templates/Brisbane MIND/Getting started with Brisbane MIND Plus FINAL v2.pdf','http://www.brisbanenorthphn.org.au/content/Document/Templates/Brisbane%20MIND/Getting%20started%20with%20Brisbane%20MIND%20Plus%20FINAL%20v2.pdf','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/Templates/Brisbane MIND/Getting started with Brisbane MIND Plus FINAL v2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 22:16:28',0),(68044,'2021-04-25 22:19:48','2021-04-25 22:19:48','8f9e043d-3d05-44ca-804d-7ca952325f41',1,'/content/Document/MNHHS Palliative Care PractiX v4_11(3).doc','http://www.brisbanenorthphn.org.au/content/Document/MNHHS%20Palliative%20Care%20PractiX%20v4_11(3).doc','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/MNHHS Palliative Care PractiX v4_11(3).doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 22:19:48',0),(68045,'2021-04-25 22:42:25','2021-05-05 11:12:48','65416914-fc6e-4b0f-96ba-a1750ce87175',1,'/content/document/reports/mnddsa20','','205.169.39.51','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36','Template not found: content/document/reports/mnddsa20','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-05 11:12:48',0),(68046,'2021-04-25 22:50:44','2021-05-15 13:43:17','849c8538-1ba7-4427-8ab8-aa8dd4468d16',1,'/content/Document/Templates/4.9/MNHHS RBWH Referral PractiX v4_9.doc','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.9/MNHHS RBWH Referral PractiX v4_9.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-15 13:43:17',0),(68047,'2021-04-25 22:59:08','2021-04-25 22:59:08','182bcd57-33ef-4e57-95ab-1387cee0041b',1,'/page/news-and-events/events/upcoming/metro-north-health-forum-2017/','','163.172.68.99','Mozilla/5.0 ((Windows; U; Windows NT 6.1; fr; rv:1.9.2) Gecko/20100115 Firefox/3.6)','Template not found: page/news-and-events/events/upcoming/metro-north-health-forum-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 22:59:08',0),(68048,'2021-04-25 23:07:29','2021-04-25 23:07:29','79fa3751-ea97-487b-89f8-df2b269009d5',1,'/content/Document/Templates/Brisbane%20MIND/New%20mental%20health%20services%20in%20Brisbane%20North%202019.pdf','http://www.brisbanenorthphn.org.au/content/Document/Templates/Brisbane%2520MIND/New%2520mental%2520health%2520services%2520in%2520Brisbane%2520North%25202019.pdf','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/Templates/Brisbane MIND/New mental health services in Brisbane North 2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 23:07:29',0),(68049,'2021-04-25 23:19:22','2021-05-04 01:26:06','d84d2f2c-55b2-4af7-a5da-dd825df87654',1,'/page/news-and-events/events/upcoming/feeling-the-pulse-of-my-health-record','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/feeling-the-pulse-of-my-health-record','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-04 01:26:06',0),(68050,'2021-04-25 23:21:08','2021-04-25 23:21:08','a457fd84-f2a4-432b-ab9a-57f6dea6fcbe',1,'/content/Document/Primary%20care%20liaison/Specialists%20List_Paediatrics_6_2.pdf','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/Specialists%2520List_Paediatrics_6_2.pdf','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/Specialists List_Paediatrics_6_2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 23:21:08',0),(68051,'2021-04-25 23:21:59','2021-05-15 14:46:48','08281bcd-2a08-4558-a20f-3ea63733049f',1,'/page/news-and-events/events/archive/metro-north-health-forum/','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/metro-north-health-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 14:46:48',0),(68052,'2021-04-25 23:26:37','2021-04-25 23:26:37','086cd9cc-a902-4098-b5a5-99e79096a25f',1,'/content/Document/Network Link_02_February_FINAL_WEB(1).pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%20Link_02_February_FINAL_WEB(1).pdf','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/Network Link_02_February_FINAL_WEB(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-25 23:26:37',0),(68053,'2021-04-26 00:22:23','2021-04-26 00:22:23','1484bf95-78a9-498d-9d8b-1f3c8a98b9c3',1,'/content/Document/Brisbane MIND Group Listing 2016-17 Apr.pdf','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.130 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Brisbane MIND Group Listing 2016-17 Apr.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 00:22:23',0),(68054,'2021-04-26 00:45:11','2021-04-26 00:45:11','fbeeb058-3225-4c9b-9c54-5f6731526fd9',1,'/content/Document/Brisbane MIND Provid','','120.153.45.6','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 Version/13.1 (Ecosia ios@4.1.10.875) Safari/604.1','Template not found: content/Document/Brisbane MIND Provid','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 00:45:11',0),(68055,'2021-04-26 01:22:18','2021-05-15 14:26:12','3b22698f-bbfa-47d5-9692-45e0579bdbf7',1,'/page/contact-us/providing-feedback','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/contact-us/providing-feedback','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 14:26:12',0),(68056,'2021-04-26 01:31:00','2021-04-26 03:12:47','d7828af5-e88d-4f71-989c-54fb1948d36a',1,'/page/news-and-events/latest-news/training-and-support-to-enchance-dementia-care','http://brisbanenorthphn.org.au/page/news-and-events/latest-news/training-and-support-to-enchance-dementia-care','35.210.112.68','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/latest-news/training-and-support-to-enchance-dementia-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-26 03:12:47',0),(68057,'2021-04-26 01:49:44','2021-04-26 01:49:44','d704a205-07c2-4085-bd65-7647bc0c20e4',1,'/content/Document/Network%20Link/Network%20Link_1_January_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%2520Link/Network%2520Link_1_January_WEB.pdf','34.122.151.49','Go-http-client/1.1','Template not found: content/Document/Network Link/Network Link_1_January_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 01:49:44',0),(68058,'2021-04-26 02:03:26','2021-04-26 02:03:26','e6181e4e-56dc-4eab-8350-b3679d3d1336',1,'/page/news-and-events/latest-news/service-providers-meet-to-discuss-aged-care-reforms/','','95.91.76.7','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/service-providers-meet-to-discuss-aged-care-reforms','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 02:03:26',0),(68059,'2021-04-26 02:16:38','2021-04-26 02:16:38','1317fc11-4afa-4936-a1ce-6a295aae3999',1,'/yearinreview/feed/','','167.114.211.237','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: yearinreview/feed','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 02:16:38',0),(68060,'2021-04-26 02:18:32','2021-04-26 02:18:32','1d0abf64-f1e2-4211-a35d-17b43ccc4ad8',1,'/content/Document/FORM%202%20-Application%20for%20Group%20Therapy%202018-19V1.docx','http://www.brisbanenorthphn.org.au/content/Document/FORM%25202%2520-Application%2520for%2520Group%2520Therapy%25202018-19V1.docx','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/FORM 2 -Application for Group Therapy 2018-19V1.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 02:18:32',0),(68061,'2021-04-26 02:19:28','2021-04-26 02:19:28','877d6e52-34c8-4881-984c-b80f90765849',1,'/content/Document/Primary%20care%20liaison/MNHHS%20Paediatric%20Ref%20v6_2%20MD.rtf','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/MNHHS%2520Paediatric%2520Ref%2520v6_2%2520MD.rtf','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/MNHHS Paediatric Ref v6_2 MD.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 02:19:28',0),(68062,'2021-04-26 02:38:22','2021-04-26 02:38:22','29557b0f-faed-46ef-b7bc-7631e4d271df',1,'/yearinreview/2018-19/wp-content/uploads/2019/11/BNPHN-190925_060.jpg','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2018-19/wp-content/uploads/2019/11/BNPHN-190925_060.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 02:38:22',0),(68063,'2021-04-26 03:00:35','2021-04-29 20:45:42','55211bee-a918-43de-b08c-4ca60cdb458e',1,'/content/Document/Events/GP Alignment Program Flyer_2015_July_3.0.pdf','','66.249.68.5','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Events/GP Alignment Program Flyer_2015_July_3.0.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-29 20:45:42',0),(68064,'2021-04-26 03:02:21','2021-04-26 03:02:21','14dea214-683a-4a9f-b4a8-72464653dbd4',1,'/content/Document/FORM%205b%20-%20New%20Clinician%20Request%20Form(2).docx','http://www.brisbanenorthphn.org.au/content/Document/FORM%25205b%2520-%2520New%2520Clinician%2520Request%2520Form(2).docx','34.122.223.89','Go-http-client/1.1','Template not found: content/Document/FORM 5b - New Clinician Request Form(2).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 03:02:21',0),(68065,'2021-04-26 03:17:58','2021-05-08 07:09:18','e1526839-8e3a-4dd9-bd55-0f44a24f501e',1,'/content/Document/Templates/4.7/Specialists List_The Prince Charles Hospital_4_7.pdf','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Templates/4.7/Specialists List_The Prince Charles Hospital_4_7.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-08 07:09:18',0),(68066,'2021-04-26 03:21:29','2021-05-08 19:45:28','41cf6829-6f20-4200-a90e-4df05b6de052',1,'/page/news-and-events/latest-news/covid-19-information/information-for-our-community/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/covid-19-information/information-for-our-community','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-08 19:45:28',0),(68067,'2021-04-26 03:22:30','2021-04-26 03:22:30','f52bada2-58ad-4039-9e1d-541d79f5a3d3',1,'/content/Document/Network%20Link/Network%20Link_December_2018_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%2520Link/Network%2520Link_December_2018_WEB.pdf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Network Link/Network Link_December_2018_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 03:22:30',0),(68068,'2021-04-26 03:41:50','2021-04-30 18:45:36','978a75f4-b17f-47bf-8f1c-aba0d8ac473c',1,'/content/Document/Media Releases/MR_Vaccine myths get Medical Mums makeover_190423 NEW.pdf','','66.249.68.31','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/Media Releases/MR_Vaccine myths get Medical Mums makeover_190423 NEW.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 18:45:36',0),(68069,'2021-04-26 03:49:08','2021-04-26 03:49:08','392c6758-1dc6-42db-bb3a-f7558f9127c7',1,'/content/Document/Network%20Link/Network%20Link_5_May_2018_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%2520Link/Network%2520Link_5_May_2018_WEB.pdf','146.148.65.39','Go-http-client/1.1','Template not found: content/Document/Network Link/Network Link_5_May_2018_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 03:49:08',0),(68070,'2021-04-26 04:13:12','2021-04-26 04:13:12','c217d199-f432-4374-aa3e-5048efb34e69',1,'/content/Document/Network%20Link_02_March_2017_FINAL_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%2520Link_02_March_2017_FINAL_WEB.pdf','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/Network Link_02_March_2017_FINAL_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 04:13:12',0),(68071,'2021-04-26 04:24:19','2021-05-05 00:18:38','de6d3cf1-624b-41c3-a239-c3c1cd1e431e',1,'/content/Document/Network%20Link_07_AUGUST_FINAL_WEB_v2.pdf','','66.249.68.95','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/Network Link_07_AUGUST_FINAL_WEB_v2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-05 00:18:38',0),(68072,'2021-04-26 04:25:51','2021-04-26 04:25:51','87a28ddf-13fa-41a0-b1f5-b63c034c7327',1,'/content/Document/Position Descriptions/PD_My Mental Health ServiceNavigationCoordinator MHAOD_191121.pdf','http://www.brisbanenorthphn.org.au/content/Document/Position%20Descriptions/PD_My%20Mental%20Health%20ServiceNavigationCoordinator%20MHAOD_191121.pdf','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/Position Descriptions/PD_My Mental Health ServiceNavigationCoordinator MHAOD_191121.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 04:25:51',0),(68073,'2021-04-26 04:45:46','2021-05-16 14:47:08','7c148350-8567-4baf-baca-bbb19884451e',1,'/content/Document/Events/2019/INVITATION - Integrating best practice in kidney health with primary care_24 August 2019_WEB.pdf','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Events/2019/INVITATION - Integrating best practice in kidney health with primary care_24 August 2019_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 14:47:08',0),(68074,'2021-04-26 04:53:49','2021-04-26 04:53:49','5641e202-7086-44b4-94ca-a88852f35e22',1,'/page/news-and-events/events/upcoming/aapm-brisbanenorth-14november2018-networking/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.80 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/aapm-brisbanenorth-14november2018-networking','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 04:53:49',0),(68075,'2021-04-26 05:00:35','2021-04-26 05:00:35','3e1d759c-020b-4cdb-a092-db3964cccb21',1,'/content/Document/Public%20Health%20Alert_Listeria%20and%20frozen%20vegetable%20recall.pdf','http://www.brisbanenorthphn.org.au/content/Document/Public%2520Health%2520Alert_Listeria%2520and%2520frozen%2520vegetable%2520recall.pdf','146.148.65.39','Go-http-client/1.1','Template not found: content/Document/Public Health Alert_Listeria and frozen vegetable recall.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 05:00:35',0),(68076,'2021-04-26 05:03:33','2021-05-14 04:44:14','31ee94a9-cf14-44b8-a4fa-51344140aeca',1,'/position-type/program-support-officer-knowledge-planning-and-performance','','66.249.75.184','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: position-type/program-support-officer-knowledge-planning-and-performance','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-14 04:44:14',0),(68077,'2021-04-26 05:12:39','2021-05-06 22:31:32','4059d2ca-8534-4608-9bbc-506068619bae',1,'/content/Document/Events/2019/INVITATION - Common challenges in primary care_general geneticsPRINTv2.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/INVITATION%20-%20Common%20challenges%20in%20primary%20care_general%20geneticsPRINTv2.pdf','35.192.197.124','Go-http-client/1.1','Template not found: content/Document/Events/2019/INVITATION - Common challenges in primary care_general geneticsPRINTv2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 22:31:32',0),(68078,'2021-04-26 05:31:12','2021-05-18 02:41:20','bbd7ee79-681c-464b-b760-44ed79b53290',1,'/page/news-and-events/latest-news/have-your-say-on-our-procurement-strategy','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/have-your-say-on-our-procurement-strategy','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-18 02:41:20',0),(68079,'2021-04-26 06:17:37','2021-04-26 06:17:37','87e88228-d9dc-4d92-865a-c893380a4d95',1,'/page/news-and-events/events/upcoming/maters-gp-education-wonderland-conference/','','49.182.39.40','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko)','Template not found: page/news-and-events/events/upcoming/maters-gp-education-wonderland-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 06:17:37',0),(68080,'2021-04-26 06:26:41','2021-05-13 19:02:32','5488365a-5ac2-44b9-8f47-567213971c9e',1,'/content/Document/Templates/6.1/MNHHS TPCH Ref v6_1.rtf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/6.1/MNHHS TPCH Ref v6_1.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-13 19:02:32',0),(68081,'2021-04-26 06:31:09','2021-04-26 06:31:09','c8c2719d-3c37-4800-8412-37fcb7ce2730',1,'/content/Document/Templates/6.1/MNHHS Maternity Ref v6_1 BP.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/MNHHS%20Maternity%20Ref%20v6_1%20BP.rtf','35.225.69.75','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/MNHHS Maternity Ref v6_1 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 06:31:09',0),(68082,'2021-04-26 06:59:06','2021-04-26 06:59:06','0cb0a67a-4670-41e8-8264-de21e1423953',1,'/content/Document/Network%20Link/Network%20Link_April_2019%20WEB(1).pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%2520Link/Network%2520Link_April_2019%2520WEB(1).pdf','35.225.69.75','Go-http-client/1.1','Template not found: content/Document/Network Link/Network Link_April_2019 WEB(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 06:59:06',0),(68083,'2021-04-26 07:00:42','2021-04-26 07:00:42','becddcf0-5080-4428-a8ff-f043f8f43ea0',1,'/content/Document/Reports/FIN_AWP%20Core%20AWP%202019-22%20190531%20WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Reports/FIN_AWP%2520Core%2520AWP%25202019-22%2520190531%2520WEB.pdf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Reports/FIN_AWP Core AWP 2019-22 190531 WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 07:00:42',0),(68084,'2021-04-26 07:03:01','2021-04-26 07:03:01','41504450-56bf-4fb9-b56d-625ee7c2ed3f',1,'/content/Document/STARS%20training%20flyer%20final.pdf','http://www.brisbanenorthphn.org.au/content/Document/STARS%2520training%2520flyer%2520final.pdf','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/STARS training flyer final.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 07:03:01',0),(68085,'2021-04-26 07:03:21','2021-05-16 17:16:34','41829e04-1880-48bc-8531-72bcf573867b',1,'/content/Document/PD_Vacant_TrainerQualityLeadRAS_150423.pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/PD_Vacant_TrainerQualityLeadRAS_150423.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 17:16:34',0),(68086,'2021-04-26 07:03:54','2021-05-18 12:46:22','7d7d32e8-7747-4ef1-b2ed-d42632bf67cc',1,'/page/health-professionals/MHAOD/funded-mental-health-services/integrated-mental-healthcare-for-aboriginal-and-torres-strait-islander-people/','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/MHAOD/funded-mental-health-services/integrated-mental-healthcare-for-aboriginal-and-torres-strait-islander-people','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 12:46:22',0),(68087,'2021-04-26 08:07:38','2021-05-16 13:18:33','03e4130e-4728-4810-a38b-16afc88cba5e',1,'/content/Document/Palliative Care Service Provider Listing Version 3.0, July 2016.pdf','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Palliative Care Service Provider Listing Version 3.0, July 2016.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 13:18:33',0),(68088,'2021-04-26 08:16:44','2021-05-16 11:31:43','fe390686-d53a-442b-958e-0f0a223574e2',1,'/page/news-and-events/events/upcoming/trauma-informed-care-and-practice-for-domestic-and-family-violence-services-level-1','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/trauma-informed-care-and-practice-for-domestic-and-family-violence-services-level-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 11:31:43',0),(68089,'2021-04-26 08:16:57','2021-04-26 08:16:57','c3b3d124-2cdb-4829-99b1-c9f6306b4c62',1,'/content/Media/Network%20Link_September_2018_V6_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Media/Network%2520Link_September_2018_V6_WEB.pdf','34.122.223.89','Go-http-client/1.1','Template not found: content/Media/Network Link_September_2018_V6_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 08:16:57',0),(68090,'2021-04-26 08:18:25','2021-04-26 08:18:25','ea2bb442-be20-4f49-902a-d598cf9250e9',1,'/content/Document/Templates/TCC/2017/Team%20Care%20Coordination%20eReferral%20BP%2022_08_17.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/TCC/2017/Team%2520Care%2520Coordination%2520eReferral%2520BP%252022_08_17.rtf','35.225.69.75','Go-http-client/1.1','Template not found: content/Document/Templates/TCC/2017/Team Care Coordination eReferral BP 22_08_17.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 08:18:25',0),(68091,'2021-04-26 08:29:06','2021-04-26 08:29:06','344c74f0-b78c-4e46-a57c-5287d0409a9b',1,'/page/health-professionals/multicultural-health/interpreting-for-allied-health-professionals-program','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/multicultural-health/interpreting-for-allied-health-professionals-program','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 08:29:06',0),(68092,'2021-04-26 08:34:16','2021-04-26 08:34:16','108a5cf8-ae38-4774-8e76-830ad9473b76',1,'/content/Document/Aged%20and%20community%20care/EOI%20for%20GPs_V5%20JWB%20ME%20JLH%20SG%20131118%20(002).docx','http://www.brisbanenorthphn.org.au/content/Document/Aged%2520and%2520community%2520care/EOI%2520for%2520GPs_V5%2520JWB%2520ME%2520JLH%2520SG%2520131118%2520(002).docx','34.122.223.89','Go-http-client/1.1','Template not found: content/Document/Aged and community care/EOI for GPs_V5 JWB ME JLH SG 131118 (002).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 08:34:16',0),(68093,'2021-04-26 08:45:01','2021-04-26 08:45:01','27dd3af9-b821-4a24-a6aa-78bef86687b5',1,'/content/Document/Primary%20care%20liaison/MNHHS%20Caboolture%20Hosp%20Ref%20v6_2%20ZM(1).rtf','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/MNHHS%2520Caboolture%2520Hosp%2520Ref%2520v6_2%2520ZM(1).rtf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/MNHHS Caboolture Hosp Ref v6_2 ZM(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 08:45:01',0),(68094,'2021-04-26 08:55:26','2021-04-26 08:55:26','f59a55a6-4305-4a84-a81b-408200986e0b',1,'/content/Document/DRA_2016_AOD_Needs Assessment.pdf','http://www.brisbanenorthphn.org.au/content/Document/DRA_2016_AOD_Needs%20Assessment.pdf','35.225.69.75','Go-http-client/1.1','Template not found: content/Document/DRA_2016_AOD_Needs Assessment.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 08:55:26',0),(68095,'2021-04-26 09:20:48','2021-05-10 23:04:22','efeed5a6-8f6b-4329-bb26-6c6d60b3acb7',1,'/page/health-professionals/chronic-disease-management/coordinated-veterans’-care-program','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/chronic-disease-management/coordinated-veterans’-care-program','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 23:04:22',0),(68096,'2021-04-26 09:42:15','2021-05-13 03:00:49','451cffe6-644e-4ff4-8670-c7c8af652ed5',1,'/jobs/allied-health-coordinator-part-time','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/allied-health-coordinator-part-time','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,41,'2021-05-13 03:00:49',0),(68097,'2021-04-26 09:42:44','2021-05-11 09:57:55','ad703bef-0bce-4de0-8472-5638f90aeff7',1,'/admin/entries/news/dist/swiper.js','https://brisbanenorthphn.org.au/admin/entries/news/brisbanenorthphn.org.au/covid-19','114.119.154.6','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: admin/entries/news/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-11 09:57:55',0),(68098,'2021-04-26 10:00:21','2021-04-28 22:58:13','daba0df8-e9b9-42f5-941b-53021c711aaa',1,'/content/Image/Page Banners/banner_NDIS.jpg','','66.220.149.8','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: content/Image/Page Banners/banner_NDIS.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-28 22:58:13',0),(68099,'2021-04-26 10:40:10','2021-05-14 08:55:55','6f324c71-b2a7-49bb-ae19-a2c1126c4cf3',1,'/content/Document/COVID-19/TEM_GP COVID19 checklist v1_1 200324.pdf','','66.249.69.63','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/COVID-19/TEM_GP COVID19 checklist v1_1 200324.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 08:55:55',0),(68100,'2021-04-26 10:42:35','2021-05-16 07:48:52','cdc7a6cd-7bc6-4e38-a398-e26d848ae311',1,'/page/home/style-guide/grid-listing/item-2','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/style-guide/grid-listing/item-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 07:48:52',0),(68101,'2021-04-26 11:12:49','2021-04-26 11:12:49','868b74ff-3543-4801-8f7e-3522fc5856c9',1,'/content/Document/Brisbane%20MIND%20Consent%20Form%20-%20PHN%20BRANDED.docx','http://www.brisbanenorthphn.org.au/content/Document/Brisbane%2520MIND%2520Consent%2520Form%2520-%2520PHN%2520BRANDED.docx','146.148.65.39','Go-http-client/1.1','Template not found: content/Document/Brisbane MIND Consent Form - PHN BRANDED.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 11:12:49',0),(68102,'2021-04-26 11:45:28','2021-05-14 06:38:57','a895a8d4-6378-4f96-8718-0994f41ebf9a',1,'/page/news-and-events/events/upcoming/lifestyle-medicine-2020','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/lifestyle-medicine-2020','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-14 06:38:57',0),(68103,'2021-04-26 11:48:37','2021-04-26 11:48:37','c992db45-bee6-4525-b1e1-c036519fc120',1,'/content/Document/MHAOD_Recovery_newsletter_August_2018%20WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/MHAOD_Recovery_newsletter_August_2018%2520WEB.pdf%3F','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/MHAOD_Recovery_newsletter_August_2018 WEB.pdf?','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 11:48:37',0),(68104,'2021-04-26 11:51:17','2021-04-26 11:51:17','98e6bde5-1e31-42a6-9054-d5d271707e6c',1,'/content/Document/FIN_ITC%20AAWP_180613%20WEB.docx','http://www.brisbanenorthphn.org.au/content/Document/FIN_ITC%2520AAWP_180613%2520WEB.docx','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/FIN_ITC AAWP_180613 WEB.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 11:51:17',0),(68105,'2021-04-26 11:56:48','2021-04-28 21:41:35','5e89b7c2-3a9b-4ce8-88a7-268eda303761',1,'/page/news-and-events/events/upcoming/ama-queensland-annual-conference','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/ama-queensland-annual-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-28 21:41:35',0),(68106,'2021-04-26 12:02:23','2021-04-26 12:02:23','1d9bdc20-a096-4bf0-8f1d-17d37253a8a3',1,'/content/Document/PD_Publications and Communications Officer_170725.pdf','http://www.brisbanenorthphn.org.au/content/Document/PD_Publications%20and%20Communications%20Officer_170725.pdf','146.148.65.39','Go-http-client/1.1','Template not found: content/Document/PD_Publications and Communications Officer_170725.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 12:02:23',0),(68107,'2021-04-26 12:06:07','2021-04-26 12:06:07','005c6f23-1a40-421b-a760-9eb9b493b436',1,'/content/Document/EOI template_BNE North_12062017.docx','http://www.brisbanenorthphn.org.au/content/Document/EOI%20template_BNE%20North_12062017.docx','146.148.65.39','Go-http-client/1.1','Template not found: content/Document/EOI template_BNE North_12062017.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 12:06:07',0),(68108,'2021-04-26 12:07:36','2021-04-26 12:07:36','c0b5ffaa-7733-40aa-8f4c-f797243468f4',1,'/content/Document/Pathways/Driving Ausroads_ page 57.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/Driving%20Ausroads_%20page%2057.pdf','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/Pathways/Driving Ausroads_ page 57.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 12:07:36',0),(68109,'2021-04-26 12:25:25','2021-04-26 12:25:25','4d828359-4af9-4fd2-ba12-a25d0f33283e',1,'/content/Document/From Qld Health/FAQS - Coronavirus (2020012).docx','http://www.brisbanenorthphn.org.au/content/Document/From%20Qld%20Health/FAQS%20-%20Coronavirus%20(2020012).docx','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/From Qld Health/FAQS - Coronavirus (2020012).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 12:25:25',0),(68110,'2021-04-26 12:40:56','2021-04-26 12:40:56','713f5834-21ce-45f0-8ecb-1fa501a432f4',1,'/content/Document/Primary%20care%20liaison/MNHHS%20Redcliffe%20Ref%20BP%20v6_2(1).rtf','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/MNHHS%2520Redcliffe%2520Ref%2520BP%2520v6_2(1).rtf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/MNHHS Redcliffe Ref BP v6_2(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 12:40:56',0),(68111,'2021-04-26 12:49:15','2021-04-26 12:49:15','7d8bdfee-4ab1-4b32-a229-0787bcf32672',1,'/content/Image/Page Banners/Banner_page_healthprofessional.jpg','','66.220.149.25','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: content/Image/Page Banners/Banner_page_healthprofessional.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-26 12:49:15',0),(68112,'2021-04-26 12:50:28','2021-05-18 00:34:38','a7605d8d-bc89-4515-ac85-969a767eac6d',1,'/jobs/general-practitioner-brendale','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/general-practitioner-brendale','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 00:34:38',0),(68113,'2021-04-26 13:00:49','2021-04-26 13:00:49','8b1f1680-fa6d-4d80-b1d8-f8c7d1ca0fd7',1,'/content/Document/Aged%20and%20community%20care/A9_%20FINAL%20GOAS%20Evaluation%20Plan%20v2%20070618.docx','http://www.brisbanenorthphn.org.au/content/Document/Aged%2520and%2520community%2520care/A9_%2520FINAL%2520GOAS%2520Evaluation%2520Plan%2520v2%2520070618.docx','146.148.65.39','Go-http-client/1.1','Template not found: content/Document/Aged and community care/A9_ FINAL GOAS Evaluation Plan v2 070618.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 13:00:49',0),(68114,'2021-04-26 13:27:55','2021-04-26 13:27:55','f115f907-7dbc-4853-bf4a-88dea5fdf95f',1,'/content/Document/rediCASE%20Tip%20Sheet%20SP%20EnterTreatmentServiceContact_FINALJul17.docx','http://www.brisbanenorthphn.org.au/content/Document/rediCASE%2520Tip%2520Sheet%2520SP%2520EnterTreatmentServiceContact_FINALJul17.docx','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/rediCASE Tip Sheet SP EnterTreatmentServiceContact_FINALJul17.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 13:27:55',0),(68115,'2021-04-26 13:28:02','2021-04-28 21:26:39','40b9184c-3e84-45b5-b2d9-20463fa527de',1,'/sxd/sxd.js','http://brisbanenorthphn.org.au/sxd/sxd.js','45.129.137.249','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','Template not found: sxd/sxd.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-28 21:26:39',0),(68116,'2021-04-26 13:28:27','2021-05-14 08:29:22','1cd06a7e-e39b-4573-b2ee-3aed57e5838d',1,'/content/Document/Events/2018/Mater GP Education Invitation - Redland 16 October 2018(1).pdf','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2018/Mater GP Education Invitation - Redland 16 October 2018(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 08:29:22',0),(68117,'2021-04-26 13:44:32','2021-04-26 13:44:32','43f88041-2705-4422-aa1b-e8faf3a3d9f1',1,'/content/Document/Templates/5.3.1/MNHHS TPCH v5_3_1 MD.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3.1/MNHHS%20TPCH%20v5_3_1%20MD.rtf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Templates/5.3.1/MNHHS TPCH v5_3_1 MD.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 13:44:32',0),(68118,'2021-04-26 13:48:59','2021-05-18 14:52:54','2d9dc3f1-02e9-4f62-a6d6-5ba6977a0ea1',1,'/events/statewide-diabetes-clinical-network-forum-2020-reducing-diabetic-ketoacidosis-in-children-statewide-campaign','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/statewide-diabetes-clinical-network-forum-2020-reducing-diabetic-ketoacidosis-in-children-statewide-campaign','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-18 14:52:54',0),(68119,'2021-04-26 14:30:48','2021-05-17 09:16:27','8fdeea69-46f5-431e-8fd6-2e0edf50cbe3',1,'/page/news-and-events/latest-news/have-your-say-on-healthcare-plan-for-older-people','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/have-your-say-on-healthcare-plan-for-older-people','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-17 09:16:27',0),(68120,'2021-04-26 14:46:09','2021-05-10 13:45:04','9fd1edfe-173b-4060-bbaf-658a25a9f252',1,'/content/Document/Pathways/Child Health Hearing Clinic referral.pdf','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Child Health Hearing Clinic referral.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-10 13:45:04',0),(68121,'2021-04-26 14:48:50','2021-04-26 14:48:50','50f5728a-e9a0-4335-9a2e-7038af7639c1',1,'/downloader/','https://brisbanenorthphn.org.au/downloader/','14.46.76.187','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','Template not found: downloader','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 14:48:50',0),(68122,'2021-04-26 14:49:28','2021-04-26 14:49:28','75d5d97e-9604-4c04-9af5-0bba0c4feb9b',1,'/Backoffice/','https://brisbanenorthphn.org.au/Backoffice/','14.46.76.187','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','Template not found: Backoffice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 14:49:28',0),(68123,'2021-04-26 14:50:34','2021-04-26 14:50:34','693d2c46-b51e-4062-8562-61f441ac1868',1,'/page/news-and-events/latest-news/gps-at-the-centre-of-health-alliance-process','http://brisbanenorthphn.org.au/page/news-and-events/latest-news/gps-at-the-centre-of-health-alliance-process','35.210.207.218','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/latest-news/gps-at-the-centre-of-health-alliance-process','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 14:50:34',0),(68124,'2021-04-26 15:01:44','2021-04-26 15:01:44','07e86d3e-91f4-4522-b99d-10ecabb9b98b',1,'/valqd/hairstyles/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: valqd/hairstyles','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:01:44',0),(68125,'2021-04-26 15:01:48','2021-04-28 11:44:14','cc664f7f-1e7e-4a3f-a76a-9490f6b088b7',1,'/events/immunisation-101-caboolture-rsl','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/immunisation-101-caboolture-rsl','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-28 11:44:14',0),(68126,'2021-04-26 15:03:19','2021-04-26 15:03:19','639b05e1-c992-4a2b-8f96-ab97dee9eea1',1,'/royalty-free-vectors/style-vectors','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: royalty-free-vectors/style-vectors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:03:19',0),(68127,'2021-04-26 15:33:59','2021-05-12 15:02:45','167355fd-1ec4-4ce1-858d-c9f8a20be077',1,'/content/Document/Primary care liaison/INFO_My Health Record Assisted Registration Script.docx','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Primary care liaison/INFO_My Health Record Assisted Registration Script.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 15:02:45',0),(68128,'2021-04-26 15:37:53','2021-04-26 15:37:53','3571154f-743f-447d-ba14-4ae91ab81978',1,'/page/publications/newsletters/recovery','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/newsletters/recovery','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:37:53',0),(68129,'2021-04-26 15:43:54','2021-04-26 15:45:08','4d6e0151-818a-4e83-8a90-6ee6ec44539a',1,'/wallet/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: wallet','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-26 15:45:08',0),(68130,'2021-04-26 15:43:56','2021-05-14 01:14:03','f56e7fae-6dc4-4dd1-ad49-e37c8545b92e',1,'/Backups/','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: Backups','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 01:14:03',0),(68131,'2021-04-26 15:43:59','2021-04-26 15:43:59','8d541f3a-d56a-49f3-ab6b-4a64b1493112',1,'/mariadb/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: mariadb','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:43:59',0),(68132,'2021-04-26 15:44:01','2021-04-26 15:44:01','49c3dfb9-5183-4036-87fc-ebb7f9dea3b6',1,'/dumps/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: dumps','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:44:01',0),(68133,'2021-04-26 15:44:04','2021-04-26 15:44:04','fa320a66-1d08-4e5c-950d-4ee4b8322758',1,'/db/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: db','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:44:04',0),(68134,'2021-04-26 15:44:06','2021-04-26 15:44:06','c120bc6a-3908-4b83-8b75-4ccc3898c005',1,'/dbdump/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: dbdump','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:44:06',0),(68135,'2021-04-26 15:44:09','2021-04-26 15:44:09','c1c6225e-b3b9-434c-bcc6-7c31d18d803c',1,'/dbdumps/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: dbdumps','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:44:09',0),(68136,'2021-04-26 15:44:12','2021-04-26 15:44:12','e4d565ae-5be0-490d-9158-3644850eb39a',1,'/mysqldump/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: mysqldump','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:44:12',0),(68137,'2021-04-26 15:44:15','2021-04-26 15:44:15','746d1d41-35c2-498a-ab26-70256bf3211a',1,'/mysqldumps/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: mysqldumps','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:44:15',0),(68138,'2021-04-26 15:44:18','2021-04-26 15:44:18','8fa92eaa-f1cf-49a9-96a2-ad500620ca07',1,'/mysqlbackup/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: mysqlbackup','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:44:18',0),(68139,'2021-04-26 15:44:20','2021-04-26 15:44:20','106af621-0f4e-40bc-ae85-8dd56f50b9f8',1,'/mysqlbackups/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: mysqlbackups','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:44:20',0),(68140,'2021-04-26 15:44:22','2021-04-26 15:44:22','e04e7d30-df23-4cf1-b01f-f5f44310feba',1,'/db_dump/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: db_dump','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:44:22',0),(68141,'2021-04-26 15:44:25','2021-04-26 15:44:25','7528144d-5fd6-4d0d-9aef-cd719f3a0ebb',1,'/db_dumps/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: db_dumps','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:44:25',0),(68142,'2021-04-26 15:44:27','2021-04-26 15:44:27','db0aae4e-768d-4239-863e-10298dfdd245',1,'/mysql_dump/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: mysql_dump','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:44:27',0),(68143,'2021-04-26 15:44:30','2021-04-26 15:44:30','bbf8a430-4460-4055-b64b-fcb44043fdd0',1,'/mysql_dumps/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: mysql_dumps','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:44:30',0),(68144,'2021-04-26 15:44:32','2021-04-26 15:44:32','73829e63-cd72-41aa-942e-abadcdd7246e',1,'/mysql_backup/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: mysql_backup','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:44:32',0),(68145,'2021-04-26 15:44:34','2021-04-26 15:44:34','1d742b7d-38b1-4952-9b08-0ea457e298aa',1,'/mysql_backups/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: mysql_backups','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:44:34',0),(68146,'2021-04-26 15:44:37','2021-04-26 15:44:37','882ec241-2215-4d2a-96c5-e34bc882b9ec',1,'/dbbackup/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: dbbackup','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:44:37',0),(68147,'2021-04-26 15:44:39','2021-04-26 15:44:39','7786e839-47c4-40d7-ad5a-034289177cd3',1,'/dbbackups/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: dbbackups','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:44:39',0),(68148,'2021-04-26 15:44:41','2021-04-26 15:44:41','5e3bc580-5547-4d7e-9db9-35d7032dfae9',1,'/db_backup/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: db_backup','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:44:41',0),(68149,'2021-04-26 15:44:44','2021-04-26 15:44:44','d6903d48-b3eb-4038-a307-31cd2d06004a',1,'/db_backups/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: db_backups','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:44:44',0),(68150,'2021-04-26 15:44:46','2021-04-26 15:44:46','6b7b2de2-a39e-4b5d-a2a3-a11bcdcf08a1',1,'/database/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: database','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:44:46',0),(68151,'2021-04-26 15:44:48','2021-04-26 15:44:48','a0ba4126-4a5d-4b44-9807-649da824bf9a',1,'/save/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: save','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:44:48',0),(68152,'2021-04-26 15:44:51','2021-04-26 15:44:51','3e11deb7-4135-4452-ab83-bb054e59d366',1,'/saved/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: saved','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:44:51',0),(68153,'2021-04-26 15:44:53','2021-05-04 20:48:51','e69b44ea-377e-42db-a6f2-8cda5a08395c',1,'/pma/','https://brisbanenorthphn.org.au/pma/','121.117.69.60','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','Template not found: pma','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-04 20:48:51',0),(68154,'2021-04-26 15:44:55','2021-04-26 15:44:55','94508a0b-f8e1-4846-89d2-709c5484f9d5',1,'/pmadumps/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: pmadumps','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:44:55',0),(68155,'2021-04-26 15:44:57','2021-04-26 15:44:57','19e1365f-3ad1-47e5-9433-a33cd7a88b48',1,'/dump/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: dump','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:44:57',0),(68156,'2021-04-26 15:45:00','2021-04-26 15:45:00','325d2081-4ec1-4cfa-af82-aa452c825290',1,'/sql/backups/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: sql/backups','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:45:00',0),(68157,'2021-04-26 15:45:02','2021-04-26 15:45:02','7c96cb95-0bd9-429e-a577-1f40a9246d46',1,'/sql/backup/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: sql/backup','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:45:02',0),(68158,'2021-04-26 15:45:04','2021-04-26 15:45:04','ea0d314f-9a6c-4daa-ad8f-cddb51e49e2c',1,'/sql/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:45:04',0),(68159,'2021-04-26 15:45:06','2021-04-26 15:45:06','2eea2d2d-892c-4b0b-96bb-d5e0170c67ab',1,'/mysql/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: mysql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:45:06',0),(68160,'2021-04-26 15:45:10','2021-04-26 15:45:10','df3c60c5-e19c-42a3-af44-b27463c7d8d9',1,'/bitcoin/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: bitcoin','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:45:10',0),(68161,'2021-04-26 15:45:13','2021-04-26 15:45:13','ee5f65c4-53bb-4109-a007-9dcf2ba17b23',1,'/.bitcoin/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: .bitcoin','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:45:13',0),(68162,'2021-04-26 15:45:15','2021-04-26 15:45:15','08ffe619-cb19-4e45-a9f1-fc9fc7b5fac5',1,'/backup/bitcoin/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: backup/bitcoin','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:45:15',0),(68163,'2021-04-26 15:45:17','2021-04-26 15:45:17','19c22e99-2e4c-4f0f-8b08-2e878ad75c46',1,'/includes/database/mysql/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: includes/database/mysql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:45:17',0),(68164,'2021-04-26 15:45:19','2021-04-26 15:45:19','549cd94b-cc48-40ae-832e-40cd9257906c',1,'/includes/database/','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: includes/database','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:45:19',0),(68165,'2021-04-26 15:45:22','2021-04-26 15:45:22','7bd8868c-3ad2-4577-8d4c-d508ccdb03ad',1,'/backups.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: backups.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:45:22',0),(68166,'2021-04-26 15:45:24','2021-04-26 15:45:24','ed7d947f-c135-4036-ab7a-94eeff98f1f9',1,'/card.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: card.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:45:24',0),(68167,'2021-04-26 15:45:26','2021-04-26 15:45:26','65d1766d-17e9-4fcc-ac25-698c43c1a37f',1,'/cards.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: cards.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:45:26',0),(68168,'2021-04-26 15:45:28','2021-04-26 15:45:28','cb7da47e-e8f4-4edd-8adb-4c28e994fdc1',1,'/creditcard.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: creditcard.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:45:28',0),(68169,'2021-04-26 15:45:31','2021-04-26 15:45:31','1ef797b5-4933-4b18-8772-56f5e643aca6',1,'/creditcards.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: creditcards.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:45:31',0),(68170,'2021-04-26 15:45:33','2021-04-26 15:45:33','3d0a5d92-f051-4457-8216-4b9c08c7a80e',1,'/shop.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: shop.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:45:33',0),(68171,'2021-04-26 15:45:35','2021-04-26 15:45:35','173b6399-f3e2-49c6-99de-5c6593011ac1',1,'/orders.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: orders.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:45:35',0),(68172,'2021-04-26 15:45:38','2021-04-26 15:45:38','1e5d6203-eea2-43f8-a073-2514c602d3e5',1,'/order.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: order.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:45:38',0),(68173,'2021-04-26 15:45:39','2021-04-26 15:45:39','1ee0db8f-86bc-492b-8a5e-b0ccc24f38c0',1,'/payment.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: payment.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:45:39',0),(68174,'2021-04-26 15:45:42','2021-04-26 15:45:42','6a1dfb8d-667a-4255-a9a9-702eed70c926',1,'/payments.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: payments.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:45:42',0),(68175,'2021-04-26 15:45:44','2021-04-26 15:45:44','95c8e0e3-c72a-48a5-bd02-8018620f411e',1,'/store.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: store.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:45:44',0),(68176,'2021-04-26 15:45:46','2021-04-26 15:45:46','d3bc13a7-b367-4649-9eb1-40f43b2fc333',1,'/sql/shop.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: sql/shop.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:45:46',0),(68177,'2021-04-26 15:45:48','2021-04-26 15:45:48','635eb3fd-0ee3-4f7c-a732-91a59a3dbfef',1,'/sql/orders.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: sql/orders.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:45:48',0),(68178,'2021-04-26 15:45:51','2021-04-26 15:45:51','06483c49-160b-4da0-9cdb-e9f1134c19f7',1,'/sql/order.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: sql/order.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:45:51',0),(68179,'2021-04-26 15:45:53','2021-04-26 15:45:53','cc016759-c248-42b6-aa18-4239c504e1d5',1,'/sql/payment.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: sql/payment.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:45:53',0),(68180,'2021-04-26 15:45:55','2021-04-26 15:45:55','285faa27-cdc2-4bb6-953f-eb8f0d4f9246',1,'/sql/payments.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: sql/payments.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:45:55',0),(68181,'2021-04-26 15:45:57','2021-04-26 15:45:57','19f9a3bf-bfda-46c2-9d62-11560424f3c7',1,'/sql/store.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: sql/store.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:45:57',0),(68182,'2021-04-26 15:45:59','2021-04-26 15:45:59','b7721df3-0d84-4761-8711-5b7e00947d50',1,'/mysql/shop.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: mysql/shop.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:45:59',0),(68183,'2021-04-26 15:46:02','2021-04-26 15:46:02','9db5dff0-8aff-4531-80c9-719a68dc82d8',1,'/mysql/orders.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: mysql/orders.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:46:02',0),(68184,'2021-04-26 15:46:04','2021-04-26 15:46:04','274ef25b-6b29-45d8-bdbb-30963001be6c',1,'/mysql/order.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: mysql/order.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:46:04',0),(68185,'2021-04-26 15:46:06','2021-04-26 15:46:06','b26022e4-ea3f-4a81-a948-cfb120f4d245',1,'/mysql/payment.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: mysql/payment.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:46:06',0),(68186,'2021-04-26 15:46:08','2021-04-26 15:46:08','c5915e54-e411-47b8-9e6d-4bf43f78843a',1,'/mysql/payments.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: mysql/payments.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:46:08',0),(68187,'2021-04-26 15:46:10','2021-04-26 15:46:10','21b84611-7d4c-4b9f-8615-3cff88025573',1,'/mysql/store.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: mysql/store.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:46:10',0),(68188,'2021-04-26 15:46:12','2021-04-26 15:46:12','9d0435d7-06f5-48b0-bcba-c573e280b4b6',1,'/backup/shop.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: backup/shop.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:46:12',0),(68189,'2021-04-26 15:46:15','2021-04-26 15:46:15','b9b0ab37-b98d-4faf-b7ab-371344eb158f',1,'/backup/orders.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: backup/orders.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:46:15',0),(68190,'2021-04-26 15:46:17','2021-04-26 15:46:17','caf06a40-227f-44aa-b074-fc99c2d84979',1,'/backup/order.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: backup/order.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:46:17',0),(68191,'2021-04-26 15:46:20','2021-04-26 15:46:20','9cfc1fb3-4d11-48d7-8737-686a9e215f55',1,'/backup/payment.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: backup/payment.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:46:20',0),(68192,'2021-04-26 15:46:22','2021-04-26 15:46:22','714cdcd5-7c6c-44d7-a38d-8457f5c392fb',1,'/backup/payments.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: backup/payments.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:46:22',0),(68193,'2021-04-26 15:46:24','2021-04-26 15:46:24','309e1a8f-7be0-4d62-87ca-fdfa09200b85',1,'/backup/store.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: backup/store.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:46:24',0),(68194,'2021-04-26 15:46:26','2021-04-26 15:46:26','c298ff6e-b0f4-4ae7-b993-a660e8b4f694',1,'/db/shop.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: db/shop.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:46:26',0),(68195,'2021-04-26 15:46:28','2021-05-02 04:04:37','a9dbe896-421c-4f51-81f1-1c00930dabeb',1,'/page/news-and-events/latest-news/new-resource-provides-support-for-carers-following-an-attempted-suicide-of-a-loved-one','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/new-resource-provides-support-for-carers-following-an-attempted-suicide-of-a-loved-one','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-02 04:04:37',0),(68196,'2021-04-26 15:46:29','2021-04-26 15:46:29','910b8815-dd19-4fa7-96a9-415206ce03a3',1,'/db/orders.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: db/orders.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:46:29',0),(68197,'2021-04-26 15:46:31','2021-04-26 15:46:31','f1455726-4144-4053-aaa6-ba3e56bc2f50',1,'/db/order.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: db/order.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:46:31',0),(68198,'2021-04-26 15:46:33','2021-04-26 15:46:33','fc07b128-7620-492c-b297-bd31f97afd6a',1,'/db/payment.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: db/payment.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:46:33',0),(68199,'2021-04-26 15:46:35','2021-04-26 15:46:35','1c1a40ab-93ea-40c9-83f7-a3b2f58213cb',1,'/db/payments.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: db/payments.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:46:35',0),(68200,'2021-04-26 15:46:37','2021-04-26 15:46:37','c2c37dca-5b05-411f-ab1f-31629a27a892',1,'/db/store.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: db/store.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:46:37',0),(68201,'2021-04-26 15:46:40','2021-04-26 15:46:40','72ce3c98-1537-4d63-ac62-7934238df2eb',1,'/backups/shop.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: backups/shop.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:46:40',0),(68202,'2021-04-26 15:46:42','2021-04-26 15:46:42','47c45770-286f-46a2-b3d6-c3f0a58d30de',1,'/backups/orders.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: backups/orders.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:46:42',0),(68203,'2021-04-26 15:46:45','2021-04-26 15:46:45','4ff4684c-ed30-4692-b808-fa77348c431f',1,'/backups/order.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: backups/order.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:46:45',0),(68204,'2021-04-26 15:46:47','2021-04-26 15:46:47','7c8ed369-0a33-4ed2-9c06-e4f80b25d77f',1,'/backups/payment.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: backups/payment.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:46:47',0),(68205,'2021-04-26 15:46:50','2021-04-26 15:46:50','f0709452-bc8f-439a-b951-c225779b4ef1',1,'/backups/payments.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: backups/payments.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:46:50',0),(68206,'2021-04-26 15:46:52','2021-04-26 15:46:52','cd7d5417-69ce-46ea-a0aa-7ca9daca697d',1,'/backups/store.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: backups/store.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:46:52',0),(68207,'2021-04-26 15:46:54','2021-04-26 15:46:54','b5891340-a859-4d76-ae7d-0cd1f2d47801',1,'/dumps/shop.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: dumps/shop.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:46:54',0),(68208,'2021-04-26 15:46:56','2021-04-26 15:46:56','a5868e45-3473-4e03-9669-ce39708eaab4',1,'/dumps/orders.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: dumps/orders.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:46:56',0),(68209,'2021-04-26 15:46:59','2021-04-26 15:46:59','3a3bd3ca-61cc-47af-9db0-8032dd6da798',1,'/dumps/order.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: dumps/order.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:46:59',0),(68210,'2021-04-26 15:47:01','2021-04-26 15:47:01','3425d80d-55fe-4dc3-b830-6bbf798f468e',1,'/dumps/payment.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: dumps/payment.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:47:01',0),(68211,'2021-04-26 15:47:03','2021-04-26 15:47:03','94d8002e-aa5a-47c1-8bd6-d81880210dde',1,'/dumps/payments.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: dumps/payments.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:47:03',0),(68212,'2021-04-26 15:47:06','2021-04-26 15:47:06','fe3b5553-b7c2-43b2-af26-ae9fc7dbc361',1,'/dumps/store.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: dumps/store.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:47:06',0),(68213,'2021-04-26 15:47:08','2021-04-26 15:47:08','9c93eba1-3817-4e11-a3de-3ffaa3c2228f',1,'/database/shop.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: database/shop.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:47:08',0),(68214,'2021-04-26 15:47:10','2021-04-26 15:47:10','554fb9f2-b090-40da-a1d8-7c6463754494',1,'/database/orders.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: database/orders.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:47:10',0),(68215,'2021-04-26 15:47:13','2021-04-26 15:47:13','bca7cc66-72ae-4e60-858e-32852d01ecda',1,'/database/order.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: database/order.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:47:13',0),(68216,'2021-04-26 15:47:15','2021-04-26 15:47:15','b608f008-f806-4ade-b888-cb5b21c2aefe',1,'/database/payment.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: database/payment.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:47:15',0),(68217,'2021-04-26 15:47:17','2021-04-26 15:47:17','241935b2-f4af-461c-886c-5c8211d10a80',1,'/database/payments.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: database/payments.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:47:17',0),(68218,'2021-04-26 15:47:20','2021-04-26 15:47:20','04511189-c898-45c0-8c06-f287e94ab03e',1,'/database/store.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: database/store.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:47:20',0),(68219,'2021-04-26 15:47:22','2021-04-26 15:47:22','236ca81a-8ac5-4fcd-8bdb-15e1ce3de073',1,'/dump/shop.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: dump/shop.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:47:22',0),(68220,'2021-04-26 15:47:24','2021-04-26 15:47:24','07760805-4e73-419c-ad02-8761997716da',1,'/dump/orders.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: dump/orders.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:47:24',0),(68221,'2021-04-26 15:47:26','2021-04-26 15:47:26','94b3043c-502c-44c0-8e8b-e8d223073ef7',1,'/dump/order.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: dump/order.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:47:26',0),(68222,'2021-04-26 15:47:28','2021-04-26 15:47:28','c003d9b6-daff-4c52-ae01-986d1deac4f4',1,'/dump/payment.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: dump/payment.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:47:28',0),(68223,'2021-04-26 15:47:30','2021-04-26 15:47:30','bb6f9275-1ca5-496a-b601-43f4f63b8e61',1,'/dump/payments.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: dump/payments.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:47:30',0),(68224,'2021-04-26 15:47:33','2021-04-26 15:47:33','10036b7b-3f20-4200-b82b-819be280a45c',1,'/dump/store.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: dump/store.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:47:33',0),(68225,'2021-04-26 15:47:35','2021-04-26 15:47:35','dfa1702c-5d08-412c-b062-941bb90a22a6',1,'/credit_cards.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: credit_cards.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:47:35',0),(68226,'2021-04-26 15:47:37','2021-04-26 15:47:37','60bc071d-e860-42bd-8583-63ea51e8f8a5',1,'/credit_card.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: credit_card.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:47:37',0),(68227,'2021-04-26 15:47:40','2021-04-26 15:47:40','02de55ed-a980-431e-af8b-870d7ca917d0',1,'/datenbanken.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: datenbanken.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:47:40',0),(68228,'2021-04-26 15:47:42','2021-04-26 15:47:42','ef047833-6e5e-4cf1-9194-5fbdc474972f',1,'/main.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: main.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:47:42',0),(68229,'2021-04-26 15:47:44','2021-04-26 15:47:44','230cb7b5-f96a-40d2-b274-86bd49a36943',1,'/www.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: www.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:47:44',0),(68230,'2021-04-26 15:47:47','2021-04-26 15:47:47','702597e8-9c29-48f4-aba4-64b66ee8c445',1,'/test.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: test.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:47:47',0),(68231,'2021-04-26 15:47:49','2021-04-26 15:47:49','d6a7b94e-537c-4b79-a05e-8ccf688d665c',1,'/security.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: security.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:47:49',0),(68232,'2021-04-26 15:47:51','2021-04-26 15:47:51','2b47d21d-331b-4a98-8ca7-c1e6ca784509',1,'/passwords.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: passwords.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:47:51',0),(68233,'2021-04-26 15:47:53','2021-04-26 15:47:53','98af7f3b-8f88-44f6-9a65-1bcf5dd06add',1,'/migration.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: migration.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:47:53',0),(68234,'2021-04-26 15:47:56','2021-05-14 01:13:27','1f40999c-ee0d-4dd0-8a87-047b2d783803',1,'/wordpress.sql','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: wordpress.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 01:13:27',0),(68235,'2021-04-26 15:47:58','2021-04-26 15:47:58','cfeca44b-026e-4d9a-af23-0dd5f9e6d9cc',1,'/_backup.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Page not found.','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/web/Request.php',1314,1,'2021-04-26 15:47:58',0),(68236,'2021-04-26 15:48:00','2021-04-26 15:48:00','3af162ab-af5b-4b42-8055-ac977a51c83e',1,'/server.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: server.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:48:00',0),(68237,'2021-04-26 15:48:03','2021-04-26 15:48:03','993dfc2d-a581-4472-8119-c6cd5b9a5031',1,'/base.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: base.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:48:03',0),(68238,'2021-04-26 15:48:05','2021-04-26 15:48:05','8e80d031-b35a-403d-9ff6-71734488fb99',1,'/bd.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: bd.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:48:05',0),(68239,'2021-04-26 15:48:07','2021-04-26 15:48:07','87f78dd3-eae2-4f25-92b8-7063224a7692',1,'/admin.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: admin.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:48:07',0),(68240,'2021-04-26 15:48:10','2021-04-26 15:48:10','c12bf874-5314-4365-b146-15b458685988',1,'/bitcoin.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: bitcoin.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:48:10',0),(68241,'2021-04-26 15:48:12','2021-04-26 15:48:12','354a7744-bb8f-47d6-b753-f3f860d7a569',1,'/gateway.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: gateway.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:48:12',0),(68242,'2021-04-26 15:48:14','2021-04-26 15:48:14','1c413673-b599-467b-8404-94edcdac3437',1,'/api.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: api.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:48:14',0),(68243,'2021-04-26 15:48:17','2021-04-26 15:48:17','0a80e99a-8681-48cd-b257-2953c6358b5a',1,'/a.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: a.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:48:17',0),(68244,'2021-04-26 15:48:19','2021-04-26 15:48:19','eb4b167e-0f9b-44e4-a84a-73d137116af7',1,'/keys.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: keys.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:48:19',0),(68245,'2021-04-26 15:48:21','2021-04-26 15:48:21','67634ebf-8bc1-4ab7-bae3-2ce350704ecc',1,'/wallet.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: wallet.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:48:21',0),(68246,'2021-04-26 15:48:23','2021-04-26 15:48:23','5a69d50a-c23f-465e-b17f-16c5590dadc6',1,'/2020.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: 2020.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:48:23',0),(68247,'2021-04-26 15:48:26','2021-04-26 15:48:26','fb509bc9-9974-42cf-af0f-cf319f79fdd5',1,'/2021.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: 2021.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:48:26',0),(68248,'2021-04-26 15:48:28','2021-04-26 15:48:28','e7dda029-9eb6-4e10-9341-b4a1806aae42',1,'/config.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: config.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:48:28',0),(68249,'2021-04-26 15:48:30','2021-04-26 15:48:30','68ba7e53-76f4-4dd0-80c6-aca2d4a41e86',1,'/db/localhost.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: db/localhost.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:48:30',0),(68250,'2021-04-26 15:48:33','2021-04-26 15:48:33','1457563a-44a5-4aaa-b599-866ef60db8ce',1,'/db/dbdump.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: db/dbdump.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:48:33',0),(68251,'2021-04-26 15:48:35','2021-04-26 15:48:35','e7d8adca-a319-43d8-ba97-75ce251e2750',1,'/db/dump.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: db/dump.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:48:35',0),(68252,'2021-04-26 15:48:37','2021-04-26 15:48:37','26a58eed-c5e2-466f-b451-fa31917768c9',1,'/db/mysql.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: db/mysql.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:48:37',0),(68253,'2021-04-26 15:48:39','2021-04-26 15:48:39','902baf3a-da85-4cb6-8843-70c10a1f2d7e',1,'/db/bd.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: db/bd.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:48:39',0),(68254,'2021-04-26 15:48:41','2021-04-26 15:48:41','5addc2ba-61b6-4e7f-9965-2e05f3751c6d',1,'/db/backup.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: db/backup.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:48:41',0),(68255,'2021-04-26 15:48:44','2021-04-26 15:48:44','ea2e36d4-0c99-4c73-bc04-e8bf5d2e3847',1,'/db/database.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: db/database.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:48:44',0),(68256,'2021-04-26 15:48:46','2021-04-26 15:48:46','40d29c8c-5de0-4826-8d04-0bf64536b823',1,'/dump/localhost.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: dump/localhost.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:48:46',0),(68257,'2021-04-26 15:48:49','2021-04-26 15:48:49','53cc54de-9d2d-4210-a8b2-ea8ed8cdaa9e',1,'/dump/dbdump.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: dump/dbdump.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:48:49',0),(68258,'2021-04-26 15:48:51','2021-04-26 15:48:51','7671bc43-9312-4137-b708-93d276dd126e',1,'/dump/dump.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: dump/dump.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:48:51',0),(68259,'2021-04-26 15:48:53','2021-04-26 15:48:53','fce3f73f-e641-47bf-933f-a8f8bb406e36',1,'/dump/mysql.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: dump/mysql.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:48:53',0),(68260,'2021-04-26 15:48:56','2021-04-26 15:48:56','86c21e6f-bbe3-490c-9ea4-9dd0e5df797f',1,'/dump/bd.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: dump/bd.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:48:56',0),(68261,'2021-04-26 15:48:58','2021-04-26 15:48:58','f5dc78bd-a472-470f-8738-87556e0661b6',1,'/dump/backup.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: dump/backup.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:48:58',0),(68262,'2021-04-26 15:49:00','2021-04-26 15:49:00','16aee790-ca56-4e84-9521-9125e2a08d88',1,'/dump/database.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: dump/database.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:49:00',0),(68263,'2021-04-26 15:49:03','2021-04-26 15:49:03','0b93e8a4-5049-4462-8f14-082b3d9ff3f8',1,'/backup/localhost.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: backup/localhost.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:49:03',0),(68264,'2021-04-26 15:49:05','2021-04-26 15:49:05','8e1be35c-7ac5-4223-96af-2b63dc728064',1,'/backup/dbdump.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: backup/dbdump.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:49:05',0),(68265,'2021-04-26 15:49:07','2021-04-26 15:49:07','94ca042c-5c15-4ede-9ca9-b5c88bc44b74',1,'/backup/dump.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: backup/dump.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:49:07',0),(68266,'2021-04-26 15:49:09','2021-04-26 15:49:09','4f253256-d8da-4766-9f36-42729d1a34f8',1,'/backup/mysql.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: backup/mysql.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:49:09',0),(68267,'2021-04-26 15:49:11','2021-04-26 15:49:11','4789b07a-635e-4b61-abd5-34c96aed0fd3',1,'/backup/bd.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: backup/bd.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:49:11',0),(68268,'2021-04-26 15:49:13','2021-04-26 15:49:13','711dd185-af5d-43b0-986e-3d77184de558',1,'/backup/backup.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: backup/backup.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:49:13',0),(68269,'2021-04-26 15:49:15','2021-04-26 15:49:15','8d209a20-1bb7-48d5-af3c-2ff2fa6647d8',1,'/backup/database.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: backup/database.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:49:15',0),(68270,'2021-04-26 15:49:17','2021-04-26 15:49:17','b8b8ebf1-09e4-437e-a0a6-7ab453866826',1,'/mysql/localhost.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: mysql/localhost.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:49:17',0),(68271,'2021-04-26 15:49:19','2021-04-26 15:49:19','dd35f698-a717-4ae8-97ad-0cc910eb2ac6',1,'/mysql/dbdump.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: mysql/dbdump.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:49:19',0),(68272,'2021-04-26 15:49:22','2021-04-26 15:49:22','e3387d7f-380f-40bf-9aa1-2815a684d606',1,'/mysql/dump.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: mysql/dump.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:49:22',0),(68273,'2021-04-26 15:49:24','2021-04-26 15:49:24','1e67118e-f1f8-4827-b399-42f0ebaaf140',1,'/mysql/mysql.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: mysql/mysql.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:49:24',0),(68274,'2021-04-26 15:49:26','2021-04-26 15:49:26','2f6c5449-50a6-4aed-96e5-7b05909b71bc',1,'/mysql/bd.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: mysql/bd.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:49:26',0),(68275,'2021-04-26 15:49:29','2021-04-26 15:49:29','633d23c2-1bf9-4aab-9583-f1eca8abbbd9',1,'/mysql/backup.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: mysql/backup.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:49:29',0),(68276,'2021-04-26 15:49:31','2021-04-26 15:49:31','81099a16-cc89-4d17-9855-5bf3c6ad1589',1,'/mysql/database.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: mysql/database.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:49:31',0),(68277,'2021-04-26 15:49:33','2021-04-26 15:49:33','aecab17c-efaa-43b9-9cf7-5466f20945a3',1,'/sql/localhost.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: sql/localhost.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:49:33',0),(68278,'2021-04-26 15:49:35','2021-04-26 15:49:35','f7b2ac43-ca65-4aef-ab9f-243c1147defd',1,'/sql/dbdump.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: sql/dbdump.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:49:35',0),(68279,'2021-04-26 15:49:38','2021-04-26 15:49:38','14efbed9-5bbd-4257-87f6-81fdbb3b0ca5',1,'/sql/dump.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: sql/dump.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:49:38',0),(68280,'2021-04-26 15:49:40','2021-04-26 15:49:40','715fe1df-4418-448c-81bb-cca1cf578045',1,'/sql/mysql.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: sql/mysql.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:49:40',0),(68281,'2021-04-26 15:49:43','2021-04-26 15:49:43','f2128abf-35f3-4f89-b13f-fee2e264c8e3',1,'/sql/bd.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: sql/bd.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:49:43',0),(68282,'2021-04-26 15:49:45','2021-04-26 15:49:45','4e2d1f47-f787-4ba2-9660-11de06ed0839',1,'/sql/backup.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: sql/backup.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:49:45',0),(68283,'2021-04-26 15:49:47','2021-04-26 15:49:47','754e2c23-640b-4760-ba54-d5d497e440cc',1,'/sql/database.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: sql/database.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:49:47',0),(68284,'2021-04-26 15:49:50','2021-04-26 15:49:50','1a959fd0-a769-48b7-8d21-263b9d3804a1',1,'/public_html.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: public_html.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:49:50',0),(68285,'2021-04-26 15:49:53','2021-04-26 15:49:53','094b0d4e-d255-41cb-a791-1f8dfd7386c7',1,'/wwwroot.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: wwwroot.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:49:53',0),(68286,'2021-04-26 15:49:55','2021-04-26 15:49:55','2d16097c-ac46-4b6c-87c0-af47a4df9cd4',1,'/localhost.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: localhost.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:49:55',0),(68287,'2021-04-26 15:49:57','2021-04-26 15:49:57','41a45984-0738-4bdf-9802-39408372f62e',1,'/mysqldump.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: mysqldump.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:49:57',0),(68288,'2021-04-26 15:49:59','2021-04-26 15:49:59','98c40555-320b-4a61-a6de-f9f0d4644c3b',1,'/translate.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: translate.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:49:59',0),(68289,'2021-04-26 15:50:02','2021-04-26 15:50:02','19f5e476-1d3d-4d0f-8007-617a3cdc4af8',1,'/database.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: database.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:50:02',0),(68290,'2021-04-26 15:50:04','2021-04-26 15:50:04','aaa8e359-c0ca-49d7-83c8-794f4e4c4db2',1,'/1.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: 1.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:50:04',0),(68291,'2021-04-26 15:50:06','2021-04-26 15:50:06','bf50fa12-c278-48aa-8fd1-fad8f3bbd028',1,'/backup.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: backup.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:50:06',0),(68292,'2021-04-26 15:50:08','2021-04-26 15:50:08','e852e839-c375-4e79-b968-3e6895a5e7ee',1,'/data.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: data.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:50:08',0),(68293,'2021-04-26 15:50:11','2021-04-26 15:50:11','22ced4bf-b327-4a83-a081-c7edf09e04b0',1,'/db.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: db.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:50:11',0),(68294,'2021-04-26 15:50:13','2021-04-26 15:50:13','f43ab17c-698c-4325-97a5-f60512756a5a',1,'/db_backup.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: db_backup.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:50:13',0),(68295,'2021-04-26 15:50:15','2021-04-26 15:50:15','5f422b9d-66b9-4993-b6b4-4c563b223f52',1,'/db_backup/backup.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: db_backup/backup.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:50:15',0),(68296,'2021-04-26 15:50:17','2021-04-26 15:50:17','695c6aca-5691-44e3-92fa-95a41c4a26f5',1,'/db_backup/db_backup.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: db_backup/db_backup.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:50:17',0),(68297,'2021-04-26 15:50:20','2021-04-26 15:50:20','5568fcc0-3ec9-4807-b7d7-7adb5749e894',1,'/dbdump.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: dbdump.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:50:20',0),(68298,'2021-04-26 15:50:22','2021-04-26 15:50:22','c06d6a57-043b-47b2-a8c8-d41b6182cee8',1,'/dump.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: dump.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:50:22',0),(68299,'2021-04-26 15:50:24','2021-04-26 15:50:24','9e24a457-c43c-4b5f-81a8-ad270a384a8f',1,'/mysql.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: mysql.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:50:24',0),(68300,'2021-04-26 15:50:26','2021-04-26 15:50:26','ed253171-6915-4bc2-b6dc-7fb29c88e164',1,'/site.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: site.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:50:26',0),(68301,'2021-04-26 15:50:29','2021-04-26 15:50:29','a00757eb-5653-46ad-8245-76f7f506ddd9',1,'/sql.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: sql.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:50:29',0),(68302,'2021-04-26 15:50:31','2021-04-26 15:50:31','d14971ce-a3d5-466f-a5ba-2bd4dbec612d',1,'/temp.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: temp.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:50:31',0),(68303,'2021-04-26 15:50:33','2021-04-26 15:50:33','dec6b6e2-a794-4c50-ad23-c3f0b43c1f6d',1,'/users.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: users.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:50:33',0),(68304,'2021-04-26 15:50:35','2021-04-26 15:50:35','f15945e4-9b04-44ae-99a2-097094981490',1,'/brisbanenorthphnorgau.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: brisbanenorthphnorgau.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:50:35',0),(68305,'2021-04-26 15:50:37','2021-04-26 15:50:37','2c9ce815-8c31-4cb9-9bf6-76e1f8558e48',1,'/org.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: org.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:50:37',0),(68306,'2021-04-26 15:50:40','2021-04-26 15:50:40','6939f020-6f8e-404f-9ac0-79774cd6b596',1,'/backup/brisbanenorthphnorgau.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: backup/brisbanenorthphnorgau.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:50:40',0),(68307,'2021-04-26 15:50:42','2021-04-26 15:50:42','0cc0629d-94e7-45ba-b8b7-e2d6eeffc5e2',1,'/backup/org.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: backup/org.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:50:42',0),(68308,'2021-04-26 15:50:44','2021-04-26 15:50:44','5d8715b1-7f21-4024-a025-53f5288cdf24',1,'/dump/brisbanenorthphnorgau.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: dump/brisbanenorthphnorgau.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:50:44',0),(68309,'2021-04-26 15:50:46','2021-04-26 15:50:46','b81c79e9-6e44-4cd2-b45b-60de68fe7c20',1,'/dump/org.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: dump/org.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:50:46',0),(68310,'2021-04-26 15:50:49','2021-04-26 15:50:49','fb4a9f05-2ebf-4274-912f-c4f98e0ce1f1',1,'/sql/brisbanenorthphnorgau.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: sql/brisbanenorthphnorgau.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:50:49',0),(68311,'2021-04-26 15:50:51','2021-04-26 15:50:51','12f1b9b0-fb84-4699-b02f-c8deb648da75',1,'/sql/org.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: sql/org.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:50:51',0),(68312,'2021-04-26 15:50:53','2021-04-26 15:50:53','e60a14b4-50c4-4bc5-8b14-826c2e339466',1,'/database/brisbanenorthphnorgau.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: database/brisbanenorthphnorgau.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:50:53',0),(68313,'2021-04-26 15:50:56','2021-04-26 15:50:56','d9373406-6004-45a6-8047-4d44b4b677d5',1,'/database/org.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: database/org.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:50:56',0),(68314,'2021-04-26 15:50:58','2021-04-26 15:50:58','88a1f884-14ba-4ddf-b81f-64c789a1ce05',1,'/db/brisbanenorthphnorgau.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: db/brisbanenorthphnorgau.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:50:58',0),(68315,'2021-04-26 15:51:00','2021-04-26 15:51:00','d1402e62-6a38-4740-b218-9afded2b35a3',1,'/db/org.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: db/org.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:51:00',0),(68316,'2021-04-26 15:51:02','2021-04-26 15:51:02','d9014b93-7f0b-4262-a6eb-2985d0a8893f',1,'/mysql/brisbanenorthphnorgau.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: mysql/brisbanenorthphnorgau.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:51:02',0),(68317,'2021-04-26 15:51:04','2021-04-26 15:51:04','4d2af18f-783a-4b39-9383-a9b4348c90ce',1,'/mysql/org.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2711.64 Safari/537.36','Template not found: mysql/org.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 15:51:04',0),(68318,'2021-04-26 16:03:21','2021-05-16 18:09:07','712223a4-9038-463c-9854-112116ef7824',1,'/page/news-and-events/events/upcoming/effective-brief-contact-or-single-session-bereavement/','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/effective-brief-contact-or-single-session-bereavement','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 18:09:07',0),(68319,'2021-04-26 16:05:25','2021-05-17 18:14:42','871e3a5a-e2c3-4cb6-a538-a8682bdb93f8',1,'/page/home/banners/find-out-more-about-my-health-record','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/banners/find-out-more-about-my-health-record','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-17 18:14:42',0),(68320,'2021-04-26 16:44:47','2021-05-06 12:19:25','a5010fa3-a619-4057-863f-d4d9ea5894ee',1,'/page/health-professionals/mental-health-services/mental-health-nursing-in-brisbane-north','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/mental-health-nursing-in-brisbane-north','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-06 12:19:25',0),(68321,'2021-04-26 16:53:28','2021-05-17 06:52:09','901613c9-a6d6-4811-b5b3-e1f768f07202',1,'/page/news-and-events/latest-news/lgbtiq-sistergirl-and-brotherboy-suicide-prevention/','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/lgbtiq-sistergirl-and-brotherboy-suicide-prevention','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-17 06:52:09',0),(68322,'2021-04-26 16:59:25','2021-05-01 06:16:01','e2796c18-0857-4991-8e18-c01a698ad727',1,'/page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health---november-2017','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health---november-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 06:16:01',0),(68323,'2021-04-26 17:30:56','2021-05-12 03:35:49','213e3d39-668a-4896-a112-c54465e77120',1,'/page/publications/reports-and-plans/activity-plans','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/reports-and-plans/activity-plans','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-12 03:35:49',0),(68324,'2021-04-26 17:34:35','2021-04-26 17:34:35','f8792bbb-5a49-440b-9151-04b1804fd353',1,'/content/Document/Aged and community care/BNPHN_GOAS_NBHHS_Eval_GOAS_Pilot_Project_A4_Aug2018_V6_FINAL_WEB.pdf','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.80 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Aged and community care/BNPHN_GOAS_NBHHS_Eval_GOAS_Pilot_Project_A4_Aug2018_V6_FINAL_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 17:34:35',0),(68325,'2021-04-26 17:43:44','2021-04-26 17:43:44','e593bcf7-f305-4b47-be1c-843e66357ecd',1,'/yearinreview/2017-18/a-message-from-the-ceo-and-chair','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/a-message-from-the-ceo-and-chair','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 17:43:44',0),(68326,'2021-04-26 17:47:54','2021-05-14 15:25:13','e1428edf-354e-47cd-a182-4ef5a9b6617b',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---bridgeman-downs','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---bridgeman-downs','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-14 15:25:13',0),(68327,'2021-04-26 17:54:05','2021-05-10 13:00:24','c2113669-bb6b-42e1-b26a-9a915566cbaa',1,'/content/Document/Events/2020/INVITATION - Common challenges in primary care_community health - a GPs guide_web.pdf','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2020/INVITATION - Common challenges in primary care_community health - a GPs guide_web.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 13:00:24',0),(68328,'2021-04-26 18:10:25','2021-04-26 18:10:25','c771b0a3-010c-45bd-81f4-e25c091f2112',1,'/content/Document/12072018_Public%20Health%20Alert_measles.pdf','http://www.brisbanenorthphn.org.au/content/Document/12072018_Public%2520Health%2520Alert_measles.pdf','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/12072018_Public Health Alert_measles.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 18:10:25',0),(68329,'2021-04-26 18:22:33','2021-04-26 18:22:33','57062694-329c-4c77-b377-1c00273be505',1,'/content/Image/Banner_page_womenwearingpink.jpg','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Banner_page_womenwearingpink.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 18:22:33',0),(68330,'2021-04-26 18:25:18','2021-05-17 22:10:34','ba160001-c0a2-46f6-9cc2-ea2a3e999eb4',1,'/content/Document/Network Link/Network Link_December_2018_WEB.pdf','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Network Link/Network Link_December_2018_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 22:10:34',0),(68331,'2021-04-26 18:31:05','2021-05-02 17:34:11','d16492e4-40f7-4567-b798-39e90fdb0596',1,'/admin/jquery-file-upload/server/php/index.php','http://www.google.com/','23.228.109.147','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2896.3 Safari/537.36','Template not found: admin/jquery-file-upload/server/php/index.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-02 17:34:11',0),(68332,'2021-04-26 18:53:46','2021-04-26 18:53:46','d0853309-32a6-492f-97cd-d433be6cdc72',1,'/content/Document/Media Releases/161207_Strong results see directors re-elected at AGM.pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%20Releases/161207_Strong%20results%20see%20directors%20re-elected%20at%20AGM.pdf','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/Media Releases/161207_Strong results see directors re-elected at AGM.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 18:53:46',0),(68333,'2021-04-26 19:02:01','2021-05-11 08:04:24','53f66793-57e9-46c4-a94c-fe56fe73c428',1,'/events/sti-and-bbv-nursing-an-introduction','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/sti-and-bbv-nursing-an-introduction','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-11 08:04:24',0),(68334,'2021-04-26 19:11:00','2021-04-26 19:11:00','c8db17ba-867e-40f1-bb6f-fb7db5f9fe4c',1,'/page/health-professionals/Local Positions Vacant/casual-medical-receptionist---everton-hills-medical-centre/','','66.249.68.31','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/casual-medical-receptionist---everton-hills-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 19:11:00',0),(68335,'2021-04-26 19:28:00','2021-04-28 19:02:09','85acbd15-fdd9-40af-b4fd-1425ed4f7306',1,'/page/health-professionals/Local Positions Vacant/practice-manager---ascot','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-manager---ascot','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-28 19:02:09',0),(68336,'2021-04-26 19:30:34','2021-04-26 19:30:34','cff9c22d-8f4c-4a7d-81a6-4a012db86a02',1,'/content/Document/Primary%20care%20liaison/MNHHS%20Maternity%20Ref%20v6_2%20ZM.rtf','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/MNHHS%2520Maternity%2520Ref%2520v6_2%2520ZM.rtf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/MNHHS Maternity Ref v6_2 ZM.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 19:30:34',0),(68337,'2021-04-26 19:35:40','2021-04-26 19:35:40','0a0abea5-9567-4ae4-bd94-4c45159bbd2f',1,'/content/Document/FOR_Medical Assisting Course Expression of Interest form_151015_FINAL.docx','http://www.brisbanenorthphn.org.au/content/Document/FOR_Medical%20Assisting%20Course%20Expression%20of%20Interest%20form_151015_FINAL.docx','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/FOR_Medical Assisting Course Expression of Interest form_151015_FINAL.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 19:35:40',0),(68338,'2021-04-26 19:35:40','2021-05-08 18:36:11','37fe93aa-74d2-4fa9-b1a4-77fce5390474',1,'/valqd/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: valqd','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-08 18:36:11',0),(68339,'2021-04-26 19:35:48','2021-04-26 19:35:48','a734c499-c8a8-4651-adeb-0b0ad6b908cf',1,'/royalty-free-vectors/black-vectors','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: royalty-free-vectors/black-vectors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 19:35:48',0),(68340,'2021-04-26 19:36:14','2021-04-26 19:36:14','0b3746fb-ee12-4425-8999-69c6f31b926e',1,'/content/Document/Pathways/HealthPathways Program Update_Sep 2019.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/HealthPathways%20Program%20Update_Sep%202019.pdf','146.148.65.39','Go-http-client/1.1','Template not found: content/Document/Pathways/HealthPathways Program Update_Sep 2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 19:36:14',0),(68341,'2021-04-26 19:38:30','2021-04-26 19:40:52','733d2d81-206f-4677-a665-835668ccbc1e',1,'/content/Image/Page Banners/Banner_lungdisease.jpg','','173.252.95.111','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: content/Image/Page Banners/Banner_lungdisease.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-26 19:40:52',0),(68342,'2021-04-26 19:57:18','2021-05-18 19:53:41','e2c22472-8332-475f-b262-94d5d9a2eacf',1,'/page/community/Immunisation','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/community/Immunisation','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-18 19:53:41',0),(68343,'2021-04-26 20:15:46','2021-04-26 20:15:46','87935297-bd9f-4df2-9df4-f5fefe04b39b',1,'/content/Image/Directors staff/Executives/WEB_MartinMilne(1).jpg','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Directors staff/Executives/WEB_MartinMilne(1).jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 20:15:46',0),(68344,'2021-04-26 20:29:46','2021-04-26 20:29:46','bb29b08e-560d-4aaa-8df5-85c9c7b225a5',1,'/position-type/my-mental-health-service-navigation-officer','','66.249.79.146','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: position-type/my-mental-health-service-navigation-officer','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 20:29:46',0),(68345,'2021-04-26 20:31:00','2021-04-26 20:31:00','06f74a2c-0321-4b32-8395-fd5484dc2c9c',1,'/content/Document/Planning/FIN_AAWP_Core%20Flexible%2018-19_180717%20WEB.docx','http://www.brisbanenorthphn.org.au/content/Document/Planning/FIN_AAWP_Core%2520Flexible%252018-19_180717%2520WEB.docx','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Planning/FIN_AAWP_Core Flexible 18-19_180717 WEB.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 20:31:00',0),(68346,'2021-04-26 20:40:59','2021-04-26 20:40:59','26ec0da6-12f9-42a2-bd46-e14997026fb9',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist-required---albany-clinic/','','66.249.68.31','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist-required---albany-clinic','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 20:40:59',0),(68347,'2021-04-26 22:05:01','2021-04-26 22:05:01','7dcf99f5-920d-470c-9053-df618f2b78e3',1,'/content/Document/Templates/My%20health%20for%20life/My-Health-For-Life-BP-V2-0.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/My%2520health%2520for%2520life/My-Health-For-Life-BP-V2-0.rtf','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/Templates/My health for life/My-Health-For-Life-BP-V2-0.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 22:05:01',0),(68348,'2021-04-26 22:13:55','2021-04-30 13:12:54','8a7cc57a-8b80-4ecc-a11a-7d42dd90dce0',1,'/page/health-reform/health-care-home','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-reform/health-care-home','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 13:12:54',0),(68349,'2021-04-26 22:17:54','2021-04-28 10:26:19','ae87366e-21e9-4d13-8a1c-703bb652a022',1,'/content/Document/Brisbane MIND Provider List April 2018(2).pdf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List April 2018(2).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-28 10:26:19',0),(68350,'2021-04-26 22:26:54','2021-05-18 07:17:32','0f0c406b-1b7a-4c9a-b877-c9789abae0e3',1,'/content/Document/Templates/4.12/Specialists Lists/Specialists List_RBWH_4_12.pdf','','46.4.83.150','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0','Template not found: content/Document/Templates/4.12/Specialists Lists/Specialists List_RBWH_4_12.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-18 07:17:32',0),(68351,'2021-04-26 22:27:08','2021-04-30 16:47:13','6f37cee8-460a-4488-8d31-3830c1bb7f1e',1,'/page/health-professionals/Local Positions Vacant/rooms-available-for-rent-to-health-professionals---chapel-hill-family-doctors/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/rooms-available-for-rent-to-health-professionals---chapel-hill-family-doctors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-30 16:47:13',0),(68352,'2021-04-26 22:32:00','2021-05-11 03:56:53','3bdf63ab-44a2-4183-a3ce-51af0936d4d7',1,'/page/home/quicklinks/hospital-ereferral-templates','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/quicklinks/hospital-ereferral-templates','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 03:56:53',0),(68353,'2021-04-26 22:57:17','2021-05-18 03:42:54','48f7ae07-7586-4319-8074-73a57068080e',1,'/content/Document/Statement%20of%20Intent_PHN_SIGNED.pdf','http://www.brisbanenorthphn.org.au/content/Document/Statement%2520of%2520Intent_PHN_SIGNED.pdf','3.86.146.85','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36','Template not found: content/Document/Statement of Intent_PHN_SIGNED.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-18 03:42:54',0),(68354,'2021-04-26 23:02:37','2021-05-15 15:48:47','6fec3caa-f7ec-4b11-aaa8-9b5c170f5c98',1,'/faq/artists/why-sell-at-vectorstock','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: faq/artists/why-sell-at-vectorstock','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 15:48:47',0),(68355,'2021-04-26 23:17:36','2021-04-30 17:08:54','dc680e8c-fe35-479c-b048-616c159b7b3c',1,'/page/health-professionals/MHAOD/funded-mental-health-services/suicide-prevention','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/MHAOD/funded-mental-health-services/suicide-prevention','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 17:08:54',0),(68356,'2021-04-26 23:22:20','2021-04-26 23:22:20','94f80edb-15f6-4ae1-b778-35683c126a2c',1,'/content/Document/Planning/FIN_AAWP_Primary%20Mental%20Health%20Care%2018-19_180514%20WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Planning/FIN_AAWP_Primary%2520Mental%2520Health%2520Care%252018-19_180514%2520WEB.pdf','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/Planning/FIN_AAWP_Primary Mental Health Care 18-19_180514 WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-26 23:22:20',0),(68357,'2021-04-26 23:36:02','2021-05-12 19:35:39','7820a9b2-c09e-4d6b-bafb-8449e422e0e4',1,'/page/news-and-events/events/upcoming/refugee---health-and-wellbeing-showcase','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/refugee---health-and-wellbeing-showcase','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-12 19:35:39',0),(68358,'2021-04-26 23:38:37','2021-05-17 18:34:59','0dc03fba-4e90-4b95-8b7c-f9aa2be332be',1,'/page/health-professionals/Medical Assisting','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Medical Assisting','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-17 18:34:59',0),(68359,'2021-04-26 23:43:41','2021-05-09 16:34:38','48b07fbd-96a8-42ec-b2c4-53ee3a7bffb4',1,'/content/Document/Pathways/Pericarditis and myocarditis Node 49.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/Pericarditis%20and%20myocarditis%20Node%2049.pdf','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/Pathways/Pericarditis and myocarditis Node 49.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-09 16:34:38',0),(68360,'2021-04-26 23:43:53','2021-05-13 08:05:31','830a6dae-ad23-43ef-ba7a-ffab7683694e',1,'/events/the-practice-nurse-guide-to-cognitive-screening','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/the-practice-nurse-guide-to-cognitive-screening','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 08:05:30',0),(68361,'2021-04-26 23:54:11','2021-04-26 23:54:13','3c0c47a6-0d79-4e8d-8ec4-f589c5dfc340',1,'/roundcube','','185.250.44.43','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:39.0) Gecko/20100101 Firefox/49.0','Template not found: roundcube','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-26 23:54:13',0),(68362,'2021-04-26 23:54:11','2021-04-26 23:54:14','0064cf19-7dcf-4a11-a5b8-193fb6f1d9c3',1,'/squirrelmail','','185.250.44.43','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:39.0) Gecko/20100101 Firefox/49.0','Template not found: squirrelmail','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-26 23:54:14',0),(68363,'2021-04-26 23:54:12','2021-04-26 23:54:14','f4096f8d-59bf-4238-a066-1bd001e0280d',1,'/mail','','185.250.44.43','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:39.0) Gecko/20100101 Firefox/49.0','Template not found: mail','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-26 23:54:14',0),(68364,'2021-04-26 23:54:12','2021-04-26 23:54:13','a9dea0ac-7113-45b8-826f-291ae64c671a',1,'/webmail','','185.250.44.43','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:39.0) Gecko/20100101 Firefox/49.0','Template not found: webmail','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-26 23:54:13',0),(68365,'2021-04-26 23:54:12','2021-04-26 23:54:14','ed51a440-f121-48ca-b30b-a75da1e64d80',1,'/squirrel','','185.250.44.43','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:39.0) Gecko/20100101 Firefox/49.0','Template not found: squirrel','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-26 23:54:14',0),(68366,'2021-04-26 23:54:12','2021-04-26 23:54:13','ee8f2fa4-5634-46cc-8304-f9a903b645c9',1,'/roundcubemail','','185.250.44.43','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:39.0) Gecko/20100101 Firefox/49.0','Template not found: roundcubemail','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-26 23:54:13',0),(68367,'2021-04-26 23:54:12','2021-04-26 23:54:13','2d01127c-37f1-4036-bdda-5d92e7487f0d',1,'/horde','','185.250.44.43','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:39.0) Gecko/20100101 Firefox/49.0','Template not found: horde','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-26 23:54:13',0),(68368,'2021-04-27 00:18:53','2021-05-11 21:40:08','db186998-f2df-46b2-a5b8-54d430caf56a',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---brendale','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---brendale','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-11 21:40:08',0),(68369,'2021-04-27 00:21:15','2021-05-16 08:28:05','ae039921-0e0c-487b-83dc-a5c6d358b990',1,'/page/news-and-events/latest-news/agm-adds-another-gp-voice-to-board/','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/agm-adds-another-gp-voice-to-board','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 08:28:05',0),(68370,'2021-04-27 00:31:06','2021-04-27 00:31:06','813f1b37-028b-4bfd-a403-3ff99303ade7',1,'/page/news-and-events/latest-news/gp-breakfast-briefing','http://brisbanenorthphn.org.au/page/news-and-events/latest-news/gp-breakfast-briefing','35.210.7.60','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/latest-news/gp-breakfast-briefing','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 00:31:06',0),(68371,'2021-04-27 00:38:45','2021-04-29 08:35:25','f06beeb0-f51e-4f6d-9d84-3a2a821dcf4a',1,'/page/news-and-events/latest-news/protocol-signals-renewed-commitment-­to-working-together','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/protocol-signals-renewed-commitment-­to-working-together','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-29 08:35:25',0),(68372,'2021-04-27 00:38:54','2021-04-27 00:38:54','d8f3aa03-c91d-4383-af0c-397b77c9b392',1,'/page/news-and-events/events/archive/gp-orthopaedic-workshop-orthopaedics-challenges-in-primary-care---shoulder-and-knee/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/gp-orthopaedic-workshop-orthopaedics-challenges-in-primary-care---shoulder-and-knee','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 00:38:54',0),(68373,'2021-04-27 00:39:11','2021-04-27 00:39:11','cebdf851-de34-4bd4-83db-34e25aaa288f',1,'/page/news-and-events/events/upcoming/walk-on-the-wild-side-wows/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/walk-on-the-wild-side-wows','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 00:39:11',0),(68374,'2021-04-27 01:01:24','2021-04-30 04:28:00','a5d10de9-f946-457c-8621-52f7f59f0e2c',1,'/page/news-and-events/events/upcoming/managing-gremlins-and-grubs-in-office-based-infection-control/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/managing-gremlins-and-grubs-in-office-based-infection-control','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-30 04:28:00',0),(68375,'2021-04-27 01:02:24','2021-04-27 01:02:24','ee167cac-d95e-4348-954e-e449504b2bda',1,'/page/health-professionals/MHAOD/funded-mental-health-services/severe-and-complex-mental-illness-mental-health-nursing-services','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/MHAOD/funded-mental-health-services/severe-and-complex-mental-illness-mental-health-nursing-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 01:02:24',0),(68376,'2021-04-27 01:07:26','2021-05-15 01:56:26','e1155d52-7592-4645-ac8b-c24df620f5af',1,'/content/Document/Planning/FIN_AWP PMHC 19-22 _190710 WEB.pdf','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Planning/FIN_AWP PMHC 19-22 _190710 WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-15 01:56:26',0),(68377,'2021-04-27 01:14:56','2021-05-15 04:25:19','721656f6-1e47-4f32-99c3-f1e2353e94a2',1,'/page/news-and-events/events/upcoming/privacy-obligations-post-opt-out-for-my-health-record','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/privacy-obligations-post-opt-out-for-my-health-record','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 04:25:19',0),(68378,'2021-04-27 01:19:44','2021-04-27 01:19:44','a9c5ccf1-3113-4a22-80f9-345f0b02cde1',1,'/content/Document/Reports/MNHHS%20and%20PHN%20annual%20report%202018%20final%20WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Reports/MNHHS%2520and%2520PHN%2520annual%2520report%25202018%2520final%2520WEB.pdf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Reports/MNHHS and PHN annual report 2018 final WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 01:19:44',0),(68379,'2021-04-27 01:22:26','2021-05-03 18:47:46','46d5a57c-1f7d-4088-b7bb-b707b5fcb86a',1,'/page/about/our-reconciliation-action-plan','','185.191.171.37','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)','Template not found: page/about/our-reconciliation-action-plan','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-03 18:47:46',0),(68380,'2021-04-27 01:31:46','2021-04-27 01:31:46','af95c653-68ed-4eeb-afcd-f75b1b9f2bdb',1,'/content/Media/MR_Medical%20outreach%20trial%20delivers%20better%20healthcare%20for%20older%20people_180829.pdf','http://www.brisbanenorthphn.org.au/content/Media/MR_Medical%2520outreach%2520trial%2520delivers%2520better%2520healthcare%2520for%2520older%2520people_180829.pdf','146.148.65.39','Go-http-client/1.1','Template not found: content/Media/MR_Medical outreach trial delivers better healthcare for older people_180829.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 01:31:46',0),(68381,'2021-04-27 01:40:11','2021-05-14 02:17:09','0b7524a2-a000-4e53-bf32-50d7c1975cef',1,'/page/news-and-events/events/upcoming/making-paediatric-integrated-care-a-reality','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/making-paediatric-integrated-care-a-reality','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-14 02:17:09',0),(68382,'2021-04-27 01:40:39','2021-04-27 01:40:39','88202ab2-23d4-483a-902c-b8af6199e56f',1,'/page/news-and-events/events/archive/QNADA-professionaldevelopment-privacy-confidentiality/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/QNADA-professionaldevelopment-privacy-confidentiality','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 01:40:39',0),(68383,'2021-04-27 02:03:58','2021-04-27 02:07:26','0b535b56-a3cc-4e48-8f41-5e10532ea4c0',1,'/jobs/australian-doctors-clinic-kallangur-psychologist','','66.249.79.146','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.130 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: jobs/australian-doctors-clinic-kallangur-psychologist','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-27 02:07:26',0),(68384,'2021-04-27 02:17:43','2021-05-16 10:10:06','59db26a7-5078-4121-8831-5b7c95bd805c',1,'/page/news-and-events/latest-news/access-a-greater-range-of-mental-health-services-with-brisbane-mind-plus','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/access-a-greater-range-of-mental-health-services-with-brisbane-mind-plus','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 10:10:06',0),(68385,'2021-04-27 02:19:52','2021-05-04 09:20:53','1121a86a-3678-4528-91f3-8d843857af72',1,'/content/Document/Templates/4.5/Specialists List_Redcliffe Hospital_4.5 (DRAFT).pdf','','66.249.68.65','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Templates/4.5/Specialists List_Redcliffe Hospital_4.5 (DRAFT).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-04 09:20:53',0),(68386,'2021-04-27 02:23:17','2021-04-27 02:23:17','5632b95a-036d-431c-ad16-52fe4e8ead10',1,'/page/news-and-events/events/archive/mental-health-in-north-brisbane-and-moreton-bay-information-session---19-april-2016/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/mental-health-in-north-brisbane-and-moreton-bay-information-session---19-april-2016','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 02:23:17',0),(68387,'2021-04-27 02:28:28','2021-04-27 02:28:28','5977f608-ff1d-460e-aae9-afc9496e8031',1,'/content/Media/Genie 5.2/MNHHS Caboolture Referral v5.2_Genie.4W7','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Media/Genie 5.2/MNHHS Caboolture Referral v5.2_Genie.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 02:28:28',0),(68388,'2021-04-27 02:39:27','2021-05-10 15:34:40','14bd7ebb-b6a8-468d-987d-ca05f70a1f94',1,'/page/news-and-events/latest-news/coming-soon---practice-incentives-program-quality-improvement-payment','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/coming-soon---practice-incentives-program-quality-improvement-payment','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 15:34:40',0),(68389,'2021-04-27 02:40:35','2021-05-11 01:18:42','662fc79d-9bcf-47bd-8902-2093eb44684a',1,'/jobs/indooroopilly-general-practitioner','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/indooroopilly-general-practitioner','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-11 01:18:42',0),(68390,'2021-04-27 02:48:23','2021-04-28 07:47:01','7d97f339-aa08-4850-bc43-05242151f032',1,'/page/publications/partners-in-health/partners-in-health---november-2017','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/partners-in-health---november-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-28 07:47:01',0),(68391,'2021-04-27 02:51:52','2021-05-17 05:28:40','7fc3d0f0-7be5-48d4-b0e4-c29c645de24b',1,'/content/Document/Primary%20care%20liaison/','','1.132.16.172','Microsoft Office Word/2.49.510 (iOS/14.4.2; Tablet; en-GB; AppStore; Apple/iPad11,3)','Template not found: content/Document/Primary care liaison','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,91,'2021-05-17 05:28:40',0),(68392,'2021-04-27 02:51:53','2021-05-17 05:28:38','cebb44f8-fa41-409d-8d0e-f37aa05dcc9f',1,'/content/Document/Primary care liaison/','','1.132.16.172','Microsoft Office Word/2.49.510 (iOS/14.4.2; Tablet; en-GB; AppStore; Apple/iPad11,3)','Template not found: content/Document/Primary care liaison','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,97,'2021-05-17 05:28:38',0),(68393,'2021-04-27 02:52:02','2021-05-17 05:22:29','9144d5e7-9152-4933-8968-299b89631727',1,'/content/Document/Primary%20care%20liaison/MNHHS%20RBWH%20Ref%20v6_2%20MD(1).rtf','','1.132.16.172','Microsoft Office Word/2.49.510 (iOS/14.4.2; Tablet; en-GB; AppStore; Apple/iPad11,3)','Template not found: content/Document/Primary care liaison/MNHHS RBWH Ref v6_2 MD(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 05:22:29',0),(68394,'2021-04-27 03:12:20','2021-04-27 03:12:20','280b8870-43c3-47cc-9c00-f07259396d4c',1,'/content/Document/Primary%20care%20liaison/FIN_A%20GP\'s%20Guide%20to%20Brisbane%20North%20PHN.pdf','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/FIN_A%2520GP%27s%2520Guide%2520to%2520Brisbane%2520North%2520PHN.pdf','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/FIN_A GP\'s Guide to Brisbane North PHN.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 03:12:20',0),(68395,'2021-04-27 03:18:54','2021-04-27 03:18:54','287e0b44-dd30-4f9e-870b-68e70150c48c',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-required---q-skin-clinic-aspley/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-required---q-skin-clinic-aspley','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 03:18:54',0),(68396,'2021-04-27 03:20:40','2021-05-12 11:08:50','d09ceeb7-1217-4f42-82a8-c08c11ed04b9',1,'/content/Document/Templates/dist/swiper.js','https://brisbanenorthphn.org.au/content/Document/Templates/Brisbane%20MIND/New%20mental%20health%20services%20in%20Brisbane%20North%202019.pdf','202.7.218.97','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','Template not found: content/Document/Templates/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-12 11:08:50',0),(68397,'2021-04-27 03:23:45','2021-04-27 03:23:45','612a09ce-b708-4e22-ab36-5cae85cde852',1,'/content/Document/Templates/4.12/PractiX%20v4.12/MNHHS%20Redcliffe%20PractiX%20v4_12.doc','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.12/PractiX%2520v4.12/MNHHS%2520Redcliffe%2520PractiX%2520v4_12.doc','146.148.65.39','Go-http-client/1.1','Template not found: content/Document/Templates/4.12/PractiX v4.12/MNHHS Redcliffe PractiX v4_12.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 03:23:45',0),(68398,'2021-04-27 03:36:28','2021-05-14 03:24:19','c5e5f070-9a8e-4a96-abd4-763c237e1cb7',1,'/content/Document/Brisbane MIND Provider List February 2019.pdf','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Brisbane MIND Provider List February 2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,9,'2021-05-14 03:24:19',0),(68399,'2021-04-27 03:54:20','2021-04-27 03:54:20','81fb5203-838c-4393-b4f6-397d85be7a91',1,'/content/Document/Reports/active%40home_July-2017.pdf','http://www.brisbanenorthphn.org.au/content/Document/Reports/active%2540home_July-2017.pdf','146.148.65.39','Go-http-client/1.1','Template not found: content/Document/Reports/active@home_July-2017.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 03:54:20',0),(68400,'2021-04-27 04:31:41','2021-04-27 04:31:41','97a03bdc-6568-4def-8211-7f8b3f2648a6',1,'/page/news-and-events/latest-news/new-mental-health-services-in-brisbane-north','http://brisbanenorthphn.org.au/page/news-and-events/latest-news/new-mental-health-services-in-brisbane-north','35.206.164.242','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/latest-news/new-mental-health-services-in-brisbane-north','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 04:31:41',0),(68401,'2021-04-27 04:37:54','2021-05-11 03:32:23','42125f91-7c0b-40f5-82a4-039de55de76f',1,'/events/exercising-through-cancer-therapy','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/exercising-through-cancer-therapy','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-11 03:32:23',0),(68402,'2021-04-27 04:45:55','2021-05-09 21:12:31','1071baf6-bcd6-44b4-bfbe-d078a5827e07',1,'/content/Document/Network Link/Network_Link_Feb2020_WEB.pdf','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Network Link/Network_Link_Feb2020_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-09 21:12:31',0),(68403,'2021-04-27 04:49:28','2021-05-15 10:12:26','07d75eaf-1d6f-4423-a058-a740ba5b138e',1,'/page/health-professionals/mental-health-services/brisbane-mind4kids/information-for-providers','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/brisbane-mind4kids/information-for-providers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 10:12:26',0),(68404,'2021-04-27 04:53:42','2021-05-06 07:18:44','0498a82d-caf0-4c7e-b847-f5d448c79a8a',1,'/content/Document/Events/QuIHN 2016 Semester 1 training schedule.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/QuIHN%202016%20Semester%201%20training%20schedule.pdf','34.94.135.136','Go-http-client/1.1','Template not found: content/Document/Events/QuIHN 2016 Semester 1 training schedule.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-06 07:18:44',0),(68405,'2021-04-27 04:56:59','2021-05-03 16:45:49','e30624ae-54ba-4753-a9b4-f7de5194066b',1,'/page/news-and-events/events/upcoming/australian-association-of-practice-management---lutwyche/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/australian-association-of-practice-management---lutwyche','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-03 16:45:49',0),(68406,'2021-04-27 05:06:15','2021-05-13 12:36:21','c67de0cc-93c5-4d52-80a1-66a1f9eb4487',1,'/page/news-and-events/events/upcoming/queensland-alliance-for-mental-health-conference/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/queensland-alliance-for-mental-health-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 12:36:21',0),(68407,'2021-04-27 05:29:12','2021-04-27 05:29:12','29b3b7e9-65cc-40ac-a74d-906bf5a8cb9e',1,'/page/health-professionals/Local Positions Vacant/rn-required---indooroopilly-day-and-night-medical-centre/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/rn-required---indooroopilly-day-and-night-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 05:29:12',0),(68408,'2021-04-27 05:35:23','2021-05-17 07:47:20','d83c23d8-35f0-4364-8c32-c03795bb0482',1,'/content/Document/Templates/6.3/QCH Referral v6_3 MD.rtf','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Templates/6.3/QCH Referral v6_3 MD.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 07:47:20',0),(68409,'2021-04-27 05:56:45','2021-04-27 05:56:45','23d9c893-da13-49fd-9879-7d9e1904315d',1,'/page/news-and-events/events/upcoming/chronic-wound-management-best-practice-update-e-seminar/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/chronic-wound-management-best-practice-update-e-seminar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 05:56:45',0),(68410,'2021-04-27 06:00:39','2021-04-27 06:00:39','45070026-cc8b-47b7-b984-798439778daa',1,'/page/news-and-events/events/upcoming/maters-gp-education-wonderland-conference','http://brisbanenorthphn.org.au/page/news-and-events/events/upcoming/maters-gp-education-wonderland-conference','35.210.141.202','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/events/upcoming/maters-gp-education-wonderland-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 06:00:39',0),(68411,'2021-04-27 06:12:46','2021-05-11 13:14:45','624ca1e5-97ae-40df-981e-2a0697d2755d',1,'/page/about/careers/consumer-and-carer-evaluator-x-2/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers/consumer-and-carer-evaluator-x-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 13:14:45',0),(68412,'2021-04-27 06:15:54','2021-05-19 02:52:38','32cdf309-d32b-44b8-9cd5-32119a9be7c5',1,'/page/news-and-events/latest-news/brisbane-north-to-lead-national-mental-health-reforms/','','40.77.167.35','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/brisbane-north-to-lead-national-mental-health-reforms','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-19 02:52:38',0),(68413,'2021-04-27 06:26:24','2021-05-09 03:01:33','9e46393e-cc92-4a3c-9fe3-14807214ee75',1,'/content/Document/Pathways/Refugee Health third visit_updated.pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/Refugee Health third visit_updated.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-09 03:01:33',0),(68414,'2021-04-27 06:29:21','2021-04-27 06:29:21','f1f5125a-64ea-4655-a1dd-6d6e1ae384b0',1,'/content/Document/20170427_FLYER Deception Bay 27th June 2017.pdf','','66.249.68.2','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/20170427_FLYER Deception Bay 27th June 2017.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 06:29:21',0),(68415,'2021-04-27 06:30:34','2021-05-17 06:58:36','a4fc0a7d-867e-4f37-bbfe-79656c65400a',1,'/page/home/quicklinks/metro-north-refer-your-patient','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/quicklinks/metro-north-refer-your-patient','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 06:58:36',0),(68416,'2021-04-27 06:36:26','2021-04-27 06:36:26','086240b1-7a4f-4c53-981e-b18f8b76062b',1,'/page/about/careers/program-development-officer-severe-mental-illness-and-psychosocial-supports/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers/program-development-officer-severe-mental-illness-and-psychosocial-supports','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 06:36:26',0),(68417,'2021-04-27 06:40:19','2021-05-03 21:31:35','5d67e56a-aed5-49e4-913f-2bb3e5627720',1,'/content/Document/Templates/6.1/Specialists List_Redcliffe Hospital_6_1.pdf','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Templates/6.1/Specialists List_Redcliffe Hospital_6_1.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-03 21:31:35',0),(68418,'2021-04-27 06:40:34','2021-05-09 00:08:55','95788630-289e-49ae-a25e-ef6e60ee6c38',1,'/content/Document/LINK H_University Physiotherapy and Exercise Physiology Clinics.pdf','http://www.brisbanenorthphn.org.au/content/Document/LINK%20H_University%20Physiotherapy%20and%20Exercise%20Physiology%20Clinics.pdf','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/LINK H_University Physiotherapy and Exercise Physiology Clinics.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-09 00:08:55',0),(68419,'2021-04-27 06:44:56','2021-04-27 06:44:56','398f676a-ab91-46f5-a467-28a3ec77b906',1,'/content/Document/Draft program aged care breakfast - 7 March 2018.pdf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Draft program aged care breakfast - 7 March 2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 06:44:56',0),(68420,'2021-04-27 06:47:02','2021-04-27 06:47:02','05524f78-3afd-4647-a834-1c1f61253919',1,'/page/news-and-events/events/upcoming/immunisation-catch-up-events-for-practice-nurses---north-lakes-may','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/immunisation-catch-up-events-for-practice-nurses---north-lakes-may','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 06:47:02',0),(68421,'2021-04-27 06:53:56','2021-04-27 06:53:56','c9157c7c-3330-42b5-bfd7-766afa9e7f7e',1,'/page/news-and-events/events/upcoming/anzos-2016-gp-evening-symposium-obesity-management-from-birth-and-beyond/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/anzos-2016-gp-evening-symposium-obesity-management-from-birth-and-beyond','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 06:53:56',0),(68422,'2021-04-27 06:54:59','2021-04-27 06:54:59','82f83978-519e-46f7-8e27-eb64bcc1d013',1,'/wp-login','','103.10.82.146','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','Template not found: wp-login','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 06:54:59',0),(68423,'2021-04-27 06:55:03','2021-05-08 13:59:25','8f91c123-e864-4262-b7e6-c94ff95cce11',1,'/wp-admin','','31.173.241.81','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0','Template not found: wp-admin','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-08 13:59:25',0),(68424,'2021-04-27 06:57:24','2021-05-02 07:49:23','4dfb4e7d-8692-423e-a1e8-061b485819e6',1,'/page/news-and-events/latest-news/a-visit-from-future-healthcare-leaders','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/a-visit-from-future-healthcare-leaders','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-02 07:49:23',0),(68425,'2021-04-27 07:11:32','2021-04-30 20:35:19','0abc8dde-5790-47b8-a4a1-ae9953d8316b',1,'/content/Document/Pathways/HFrehab.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/HFrehab.pdf','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/Pathways/HFrehab.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 20:35:19',0),(68426,'2021-04-27 07:18:16','2021-04-27 07:18:16','7d5e0079-234c-488d-b311-1f8cac2f16eb',1,'/admin','','120.88.115.2','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','Template not found: admin','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 07:18:16',0),(68427,'2021-04-27 07:18:29','2021-04-27 07:18:29','625cc1fe-e3be-48b3-a802-beeb9fb7db62',1,'/bnphanadmin','','120.88.115.2','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','Template not found: bnphanadmin','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 07:18:29',0),(68428,'2021-04-27 07:24:48','2021-05-07 12:05:23','18333a89-5662-436e-81cb-957525a1aabe',1,'/content/Document/Network Link_05_May_WEB_170427.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%20Link_05_May_WEB_170427.pdf','34.94.135.136','Go-http-client/1.1','Template not found: content/Document/Network Link_05_May_WEB_170427.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 12:05:23',0),(68429,'2021-04-27 07:32:12','2021-04-27 07:32:25','fbd5a080-cd35-40bc-8c4b-8126394c0d1a',1,'/vendor/phpunit/phpunit/phpunit.xml','https://www.brisbanenorthphn.org.au/vendor/phpunit/phpunit/phpunit.xml','47.254.90.76','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','Template not found: vendor/phpunit/phpunit/phpunit.xml','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-27 07:32:25',0),(68430,'2021-04-27 07:35:29','2021-04-27 07:35:29','e77b7459-c23b-40cd-884e-261cf2605a50',1,'/content/Document/Templates/4.3/MNHHS Redcliffe Referral MD v4.3.rtf','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.3/MNHHS Redcliffe Referral MD v4.3.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 07:35:29',0),(68431,'2021-04-27 07:45:41','2021-04-29 12:35:38','c0c0e2b0-ece3-4bcc-bd2f-ad48fb5d5ac9',1,'/page/news-and-events/events/upcoming/innovations-in-acl-reconstruction/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/innovations-in-acl-reconstruction','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-29 12:35:38',0),(68432,'2021-04-27 07:52:18','2021-04-27 07:52:18','b7fb84c8-93f9-4e2d-85a1-bfe2a94e147e',1,'/content/Document/Brisbane MIND Provider List December 2018(1).pdf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List December 2018(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 07:52:18',0),(68433,'2021-04-27 07:56:26','2021-05-02 01:51:35','485aa261-8607-4512-ae4d-0736fdc86079',1,'/yearinreview/2017-18/supporting-frontline-healthcare-services','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/supporting-frontline-healthcare-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-02 01:51:35',0),(68434,'2021-04-27 07:59:04','2021-05-13 23:12:38','a416fa67-66f5-4a12-bac4-905e3061da55',1,'/content/Document/Pathways/Summary of Visa Types and medicare eligibilty.pdf','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Summary of Visa Types and medicare eligibilty.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-13 23:12:38',0),(68435,'2021-04-27 08:33:37','2021-05-12 13:55:08','d337926a-0200-4ea6-8aa1-a8c66e8796b7',1,'/content/Document/Media Releases/MR_Medical mums urge child immunisation_160424.pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%20Releases/MR_Medical%20mums%20urge%20child%20immunisation_160424.pdf','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/Media Releases/MR_Medical mums urge child immunisation_160424.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 13:55:08',0),(68436,'2021-04-27 08:40:55','2021-04-27 08:40:55','e553890f-e71f-4e8d-b960-93023b0b7ba1',1,'/page/news-and-events/latest-news/save-the-date-metro-north-health-forum','http://brisbanenorthphn.org.au/page/news-and-events/latest-news/save-the-date-metro-north-health-forum','35.210.24.3','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/latest-news/save-the-date-metro-north-health-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 08:40:55',0),(68437,'2021-04-27 08:48:17','2021-04-27 08:48:17','f7c48a5a-3ffd-4730-bb58-7e2b086f1994',1,'/content/Document/Templates/5.2/MNHHS RBWH Referral v5_2 ZM(1).rtf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/5.2/MNHHS RBWH Referral v5_2 ZM(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 08:48:17',0),(68438,'2021-04-27 08:57:41','2021-04-27 08:57:41','a5b35521-8cbf-4339-8df6-3d97097264ac',1,'/content/Document/Events/2018/Flyer - Fortitude Valley 13 March 18.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2018/Flyer%20-%20Fortitude%20Valley%2013%20March%2018.pdf','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/Events/2018/Flyer - Fortitude Valley 13 March 18.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 08:57:41',0),(68439,'2021-04-27 09:10:45','2021-04-30 14:35:09','631a3247-bd44-43f1-845e-371267a2e935',1,'/page/news-and-events/latest-news/report-reveals-high-quality-of-gp-care-in-north-brisbane-and-moreton-bay','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/report-reveals-high-quality-of-gp-care-in-north-brisbane-and-moreton-bay','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 14:35:09',0),(68440,'2021-04-27 09:52:04','2021-05-07 14:47:42','457d6611-e817-41f4-b372-9cacef69e647',1,'/content/Document/Events/2018/Cancer Preceptorship 2018 A4 program with invite.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2018/Cancer%20Preceptorship%202018%20A4%20program%20with%20invite.pdf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Events/2018/Cancer Preceptorship 2018 A4 program with invite.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 14:47:42',0),(68441,'2021-04-27 10:17:48','2021-05-07 10:28:51','181b81e9-c046-4ca2-967f-140c835d53ba',1,'/content/Document/Templates/TCC/2017/Team Care Coordination eReferral BP 22_08_17.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/TCC/2017/Team%20Care%20Coordination%20eReferral%20BP%2022_08_17.rtf','35.233.170.71','Go-http-client/1.1','Template not found: content/Document/Templates/TCC/2017/Team Care Coordination eReferral BP 22_08_17.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-07 10:28:51',0),(68442,'2021-04-27 10:28:38','2021-05-12 02:39:07','1bcc1127-8501-43df-bccc-4c592bd5e3b1',1,'/content/Document/Planning/FIN_AAWP_Suicide Prevention Trial 18-19_180529 WEB.docx','http://www.brisbanenorthphn.org.au/content/Document/Planning/FIN_AAWP_Suicide%20Prevention%20Trial%2018-19_180529%20WEB.docx','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/Planning/FIN_AAWP_Suicide Prevention Trial 18-19_180529 WEB.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 02:39:07',0),(68443,'2021-04-27 11:39:27','2021-04-27 11:39:27','58a33982-69ad-4c16-a7f9-3626539fcf69',1,'/content/Document/Access%20a%20greater%20range%20of%20mh%20services%20with%20Brisbane%20MIND%20Plus%20FINAL.pdf','http://www.brisbanenorthphn.org.au/content/Document/Access%2520a%2520greater%2520range%2520of%2520mh%2520services%2520with%2520Brisbane%2520MIND%2520Plus%2520FINAL.pdf','146.148.65.39','Go-http-client/1.1','Template not found: content/Document/Access a greater range of mh services with Brisbane MIND Plus FINAL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 11:39:27',0),(68444,'2021-04-27 11:40:33','2021-04-27 11:40:33','07cb8d29-fba7-4a6b-b793-992b7bf0f32c',1,'/content/Document/Templates/6.1/MNHHS%20Paediatric%20Ref%20v6_1%20BP.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/MNHHS%2520Paediatric%2520Ref%2520v6_1%2520BP.rtf','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/MNHHS Paediatric Ref v6_1 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 11:40:33',0),(68445,'2021-04-27 11:55:32','2021-05-05 00:16:34','f2ac8cc3-38c8-4842-a4d5-7f9953f00e00',1,'/page/health-professionals/Local Positions Vacant/general-practice-staff-required---narangba-doctors/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practice-staff-required---narangba-doctors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-05 00:16:34',0),(68446,'2021-04-27 12:05:20','2021-04-27 12:05:20','6fc9dbe0-63e7-4aa7-b61e-308cceeb3e2b',1,'/page/news-and-events/latest-news/high-risk-queenslanders-encouraged-to-get-annual-flu-jab','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/high-risk-queenslanders-encouraged-to-get-annual-flu-jab','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 12:05:20',0),(68447,'2021-04-27 12:16:47','2021-04-29 05:33:19','3c4d9103-42d6-45d6-9ffc-f39f21d6318c',1,'/page/news-and-events/events/upcoming/embracing-life-and-taking-control/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/embracing-life-and-taking-control','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-29 05:33:19',0),(68448,'2021-04-27 12:30:12','2021-05-19 02:18:42','6a6b01d2-0ee0-4eaa-9f84-b7d716b6dcfc',1,'/content/Document/Network Link/Network Link_June_2019_WEB.pdf','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Network Link/Network Link_June_2019_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-19 02:18:42',0),(68449,'2021-04-27 12:30:29','2021-04-27 12:30:29','8c82791c-8a06-43dc-b86f-63816c0cbc41',1,'/page/health-professionals/Local Positions Vacant/vr-general-practitioner-required---narangba-family-medical-practice/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/vr-general-practitioner-required---narangba-family-medical-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 12:30:29',0),(68450,'2021-04-27 12:41:26','2021-04-28 14:29:54','aa8c45ba-0096-4e85-b6e0-84d82c0f10e4',1,'/yearinreview/a-message-from-the-ceo-and-chair','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/a-message-from-the-ceo-and-chair','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-28 14:29:54',0),(68451,'2021-04-27 13:05:21','2021-04-27 13:05:21','1062d774-53ac-4b03-a130-ea7bfa96da87',1,'/content/Document/Maps/Brisbane%20North%20PCLOs%20with%20map%202019.pdf','http://www.brisbanenorthphn.org.au/content/Document/Maps/Brisbane%2520North%2520PCLOs%2520with%2520map%25202019.pdf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Maps/Brisbane North PCLOs with map 2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 13:05:21',0),(68452,'2021-04-27 13:07:51','2021-05-05 01:22:40','89377be7-d2cc-4bbe-a2c6-5dcd83fc3380',1,'/tel:0401 412 705','https://www.google.com/','34.83.12.60','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:69.0) Gecko/20100101 Firefox/69.0','Template not found: tel:0401 412 705','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-05 01:22:40',0),(68453,'2021-04-27 13:08:20','2021-05-17 00:35:49','b6a0330c-14fa-4ea2-8e13-66521d32c567',1,'/page/news-and-events/latest-news/prepare-for-increase-in-cervical-screening-enquiries ','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/prepare-for-increase-in-cervical-screening-enquiries ','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 00:35:49',0),(68454,'2021-04-27 13:16:54','2021-04-29 13:12:14','5d7cbd92-a72d-4247-9207-529d7fd2c11c',1,'/content/Document/Brisbane MIND Provider List September 2016(3).pdf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List September 2016(3).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-29 13:12:14',0),(68455,'2021-04-27 13:39:34','2021-05-11 14:57:13','1585d0de-9a19-4678-9395-90d7f1adab0b',1,'/page/news-and-events/events/upcoming/gp19-conference','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/gp19-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-11 14:57:13',0),(68456,'2021-04-27 13:47:02','2021-04-27 13:47:02','239f5088-e25c-4a85-b2b8-51cbdec9c2a1',1,'/content/Document/Templates/Dec%20Palliative%20care-%20hoist%20checklist%202016.pdf','http://www.brisbanenorthphn.org.au/content/Document/Templates/Dec%2520Palliative%2520care-%2520hoist%2520checklist%25202016.pdf','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/Templates/Dec Palliative care- hoist checklist 2016.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 13:47:02',0),(68457,'2021-04-27 13:50:05','2021-04-28 11:36:05','c1232d6c-5fd1-420b-b76c-dd6fbd7d9e33',1,'/page/health-professionals/immunisation/resources/immunisation-catch-up-event-resources','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/immunisation/resources/immunisation-catch-up-event-resources','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-28 11:36:05',0),(68458,'2021-04-27 13:51:26','2021-05-18 02:52:02','21594935-a3f2-48ae-8b2c-603e424e96e1',1,'/page/news-and-events/latest-news/flu-vaccine-urged-for-over-65s-and-indigenous-australians','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/flu-vaccine-urged-for-over-65s-and-indigenous-australians','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 02:52:02',0),(68459,'2021-04-27 13:54:24','2021-05-11 21:06:44','09f11fbb-3a66-433d-96dc-36dd2ea9f788',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-aspley','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-aspley','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-11 21:06:44',0),(68460,'2021-04-27 14:00:11','2021-04-27 14:00:11','ac9c252b-a86b-47ed-be0c-96a9e57a1de3',1,'/content/Document/Templates/4.8/MNHHS Redcliffe Referral MD v4_8.rtf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.8/MNHHS Redcliffe Referral MD v4_8.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 14:00:11',0),(68461,'2021-04-27 14:13:25','2021-05-14 08:11:27','d5aa37e5-caf6-491a-bbd6-423e0a2970d5',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---warner','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---warner','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-14 08:11:27',0),(68462,'2021-04-27 14:34:14','2021-04-27 14:34:14','bf741b55-de89-42b6-80b8-87220e3d8fe7',1,'/content/Document/Pathways/Considerations for Choice of Inhaler Device Type When Prescribing Inhaled Medicines.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/Considerations%20for%20Choice%20of%20Inhaler%20Device%20Type%20When%20Prescribing%20Inhaled%20Medicines.pdf','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/Pathways/Considerations for Choice of Inhaler Device Type When Prescribing Inhaled Medicines.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 14:34:14',0),(68463,'2021-04-27 15:01:27','2021-05-01 14:05:25','820d1539-dfb0-4a49-b05e-2f8b61cb6120',1,'/page/news-and-events/latest-news/bushfire-information-for-health-professionals/','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/bushfire-information-for-health-professionals','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 14:05:25',0),(68464,'2021-04-27 15:12:48','2021-05-17 05:13:52','831a2b8f-22ed-46d9-b254-9178814329c5',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---north-lakes','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---north-lakes','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 05:13:52',0),(68465,'2021-04-27 15:47:56','2021-05-16 18:51:02','8e945bd7-68a7-46e5-b652-b998fd80c08e',1,'/events/beyond-the-pandemic-3','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/beyond-the-pandemic-3','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 18:51:02',0),(68466,'2021-04-27 16:01:18','2021-04-27 16:01:18','45e0ef4f-9fa4-4499-8156-bf4416abcf96',1,'/content/Document/Aboriginal%20and%20Torres%20Strait%20Islander%20SEQ%20Murri%20Service%20Directory%20v3.1%20(June%202015).pdf','','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Aboriginal and Torres Strait Islander SEQ Murri Service Directory v3.1 (June 2015).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 16:01:18',0),(68467,'2021-04-27 16:08:17','2021-05-18 09:31:25','e901b7b2-b5d1-4f87-a7c0-6c27d0e75a7e',1,'/page/publications/reports-and-plans/annual-reports','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/reports-and-plans/annual-reports','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-18 09:31:25',0),(68468,'2021-04-27 16:21:40','2021-05-13 06:23:20','6dfe3343-5de3-4ec8-895c-391384785712',1,'/content/Document/Events/gp-align-prog-June-2016.pdf','','66.249.66.152','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/Events/gp-align-prog-June-2016.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-13 06:23:20',0),(68469,'2021-04-27 16:26:54','2021-04-27 16:26:54','f1348dae-7a80-4b37-99fd-4fe4bd76fa8a',1,'/content/Document/Events/2019/AAWP%20Core%20Flexible%20AH%20RESUBMIT_190208%20WEB.docx','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/AAWP%2520Core%2520Flexible%2520AH%2520RESUBMIT_190208%2520WEB.docx','104.197.140.66','Go-http-client/1.1','Template not found: content/Document/Events/2019/AAWP Core Flexible AH RESUBMIT_190208 WEB.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 16:26:54',0),(68470,'2021-04-27 16:30:08','2021-05-18 18:52:31','4874a9f3-1ed0-477e-8f98-7efa9263d829',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---indooroopilly/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---indooroopilly','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 18:52:31',0),(68471,'2021-04-27 16:46:39','2021-05-05 18:18:20','e1131568-1289-4cd1-9594-96e4f695885c',1,'/content/document/pathways/healthpathways program update_feb2020.pdf','','65.154.226.165','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36','Template not found: content/document/pathways/healthpathways program update_feb2020.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-05 18:18:20',0),(68472,'2021-04-27 16:48:10','2021-04-27 16:48:10','90f45ba0-6823-4abf-908d-1dbbbd29a7e8',1,'/page/news-and-events/latest-news/covid-19-information/covid-19-news-updates/april-2020/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/covid-19-information/covid-19-news-updates/april-2020','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 16:48:10',0),(68473,'2021-04-27 16:50:25','2021-05-19 01:28:30','585104b7-8ac4-43ab-b245-30247909c9c5',1,'/jobs/expression-of-interest-for-clinicians-advisory-group-members','https://brisbanenorthphn.org.au/about/careers-1','1.132.105.100','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','Template not found: jobs/expression-of-interest-for-clinicians-advisory-group-members','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,142,'2021-05-19 01:28:30',0),(68474,'2021-04-27 17:01:33','2021-05-13 10:12:58','84d054d9-0110-406d-85d5-f69a3746941b',1,'/content/Document/170227_Zostavax contraindications.pdf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/170227_Zostavax contraindications.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-13 10:12:58',0),(68475,'2021-04-27 17:22:41','2021-05-15 07:56:15','2a737c8d-b948-4553-9d9a-c4d2cfab0797',1,'/content/Document/Pathways/Acceptability of spirometry test.pdf','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Acceptability of spirometry test.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 07:56:15',0),(68476,'2021-04-27 17:25:00','2021-04-27 17:25:00','d3b1c330-0ca2-4451-ad0f-c18af9b76330',1,'/content/Document/Events/SAS QLD Feb 2016 CLINICAL MEETING.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/SAS%20QLD%20Feb%202016%20CLINICAL%20MEETING.pdf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Events/SAS QLD Feb 2016 CLINICAL MEETING.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 17:25:00',0),(68477,'2021-04-27 17:27:23','2021-05-18 12:12:45','4d15fc14-a54a-4e94-a160-bca2539fc46b',1,'/page/news-and-events/events/archive/transitioning-beyond-covid-19','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/transitioning-beyond-covid-19','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 12:12:45',0),(68478,'2021-04-27 17:35:19','2021-05-08 01:30:10','a5e38596-e1bc-4a1a-bfcc-c883b8758296',1,'/content/Document/MNHHS Caboolture Referral MD v4_11(2).rtf','http://www.brisbanenorthphn.org.au/content/Document/MNHHS%20Caboolture%20Referral%20MD%20v4_11(2).rtf','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/MNHHS Caboolture Referral MD v4_11(2).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-08 01:30:10',0),(68479,'2021-04-27 18:19:46','2021-04-29 04:46:00','e28a2df5-fa31-4771-b9b3-e96c938dcf1b',1,'/page/health-professionals/community-care/dementia-care/3-enhance-quality-dementia-care-in-primary-care','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/community-care/dementia-care/3-enhance-quality-dementia-care-in-primary-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-29 04:46:00',0),(68480,'2021-04-27 18:28:25','2021-04-27 18:28:25','8d77a23b-ec01-43ad-ad7d-d70f3e32bcba',1,'/assets/jQuery-File-Upload/server/php/index.php','http://www.google.com/','23.228.109.147','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2896.3 Safari/537.36','Template not found: assets/jQuery-File-Upload/server/php/index.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 18:28:25',0),(68481,'2021-04-27 18:29:43','2021-04-27 18:29:43','ebbfad41-be5c-4a73-b3f7-a34ff6938254',1,'/content/Document/Planning/FIN_AWP AOD 19-22_190719 WEB.docx','http://www.brisbanenorthphn.org.au/content/Document/Planning/FIN_AWP%20AOD%2019-22_190719%20WEB.docx','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/Planning/FIN_AWP AOD 19-22_190719 WEB.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 18:29:43',0),(68482,'2021-04-27 18:37:38','2021-05-08 00:49:50','c91d7d80-6793-4a4d-a5ed-a5bbdec9daaa',1,'/yearinreview/2017-18/coordinated-care-for-older-people','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/coordinated-care-for-older-people','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-08 00:49:50',0),(68483,'2021-04-27 19:11:44','2021-04-28 23:55:04','9dd9426a-2ffb-4875-af9b-7a595b80fe37',1,'/content/Document/Templates/4.8/MNHHS RBWH Referral BP v4_8.rtf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.8/MNHHS RBWH Referral BP v4_8.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-28 23:55:04',0),(68484,'2021-04-27 19:17:04','2021-05-18 02:50:18','ac45ce6a-c718-4e4a-8b6b-ea4f3d867a3d',1,'/content/Document/Engagement/EOI_CC_BNPHN_2019.pdf','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Engagement/EOI_CC_BNPHN_2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 02:50:18',0),(68485,'2021-04-27 20:19:19','2021-04-27 20:19:19','1c1a66b8-671d-4d04-a606-6c0d65009dd5',1,'/content/Document/MNHHS PCH PractiX v4_11(2).doc','http://www.brisbanenorthphn.org.au/content/Document/MNHHS%20PCH%20PractiX%20v4_11(2).doc','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/MNHHS PCH PractiX v4_11(2).doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 20:19:19',0),(68486,'2021-04-27 20:21:57','2021-05-18 06:52:24','11761c44-ab81-45d2-afe6-05f1d527e1ca',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---warner/','','207.46.13.74','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---warner','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 06:52:24',0),(68487,'2021-04-27 20:40:24','2021-05-15 18:24:43','7b155795-639e-4250-ab20-cdc0dbe6ed90',1,'/page/news-and-events/latest-news/a-safe-space-for-mental-health-distress','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/a-safe-space-for-mental-health-distress','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 18:24:43',0),(68488,'2021-04-27 20:47:09','2021-04-30 17:44:23','bbec916c-05e3-46c3-a56a-d982cd08caa9',1,'/page/home/banners','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/banners','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 17:44:23',0),(68489,'2021-04-27 20:54:33','2021-05-19 00:29:15','286aad59-1967-4452-8a7f-d95714a63bd9',1,'/page/','','164.132.235.73','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15','Template not found: page','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-19 00:29:15',0),(68490,'2021-04-27 20:55:10','2021-05-19 00:28:53','05821c10-93b2-4670-8cd3-01cfa81446fb',1,'/page/about/our-reconciliation-','','51.195.130.74','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 Edg/87.0.664.75','Template not found: page/about/our-reconciliation-','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-19 00:28:53',0),(68491,'2021-04-27 20:55:59','2021-05-19 00:28:54','e36f1839-6b1a-487e-8381-3d7978892e04',1,'/content/Document/Fact sheet -','','91.134.17.191','Mozilla/5.0 (Android 11; Mobile; rv:68.0) Gecko/68.0 Firefox/85.0','Template not found: content/Document/Fact sheet -','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-19 00:28:54',0),(68492,'2021-04-27 20:57:16','2021-05-19 00:28:52','8c7f9966-da51-42c7-80ff-8479e68f1870',1,'/page/health-professionals/mental-health-','','164.132.27.194','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/601.7.7 (KHTML, like Gecko) Version/9.1.2 Safari/601.7.7','Template not found: page/health-professionals/mental-health-','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-19 00:28:52',0),(68493,'2021-04-27 21:42:00','2021-05-15 18:33:27','45632d1b-300f-463b-bd8e-ee6124d31e9e',1,'/page/news-and-events/latest-news/we-are-looking-for-a-nurse-network-coordinator','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/we-are-looking-for-a-nurse-network-coordinator','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 18:33:27',0),(68494,'2021-04-27 21:43:57','2021-05-08 09:55:16','f75cb4a7-12c4-48c3-8ab9-47603aabd77e',1,'/page/publications/newsletters','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/newsletters','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-08 09:55:16',0),(68495,'2021-04-27 21:50:41','2021-05-09 03:56:22','5d2041c8-9d38-4bd6-9de4-0ddbf8eef175',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-required---ubuntu-medical/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-required---ubuntu-medical','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 03:56:22',0),(68496,'2021-04-27 22:01:26','2021-04-27 22:01:26','eac90549-37b3-46c7-95a4-1cc255b12b79',1,'/content/Document/Position Descriptions/PD_Project Officer Out of Home Care_200114.pdf','http://www.brisbanenorthphn.org.au/content/Document/Position%20Descriptions/PD_Project%20Officer%20Out%20of%20Home%20Care_200114.pdf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Position Descriptions/PD_Project Officer Out of Home Care_200114.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 22:01:26',0),(68497,'2021-04-27 22:05:38','2021-04-27 22:05:38','14870e07-7ca7-4927-a192-1a581bc69a3a',1,'/page/news-and-events/events/upcoming/big-thinking-symposium/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/big-thinking-symposium','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 22:05:38',0),(68498,'2021-04-27 22:13:52','2021-04-27 22:13:52','c7072e91-d037-4593-86dd-4e454f857475',1,'/external-links/dist/swiper.js','','40.77.167.21','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','Template not found: external-links/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 22:13:52',0),(68499,'2021-04-27 22:21:28','2021-05-02 12:33:09','2ba0d440-fc6e-4345-85ed-12a4b3639938',1,'/page/health-professionals/community-care/sector-development','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/community-care/sector-development','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-02 12:33:09',0),(68500,'2021-04-27 22:40:00','2021-04-27 22:40:00','3406f940-813f-4de1-b6ea-e41a73c8c886',1,'/page/news-and-events/events/archive/diabetes---the-annual-cycle-of-care-e-seminar/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/diabetes---the-annual-cycle-of-care-e-seminar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 22:40:00',0),(68501,'2021-04-27 23:06:30','2021-04-29 18:27:22','edfb0ab6-3631-4ffe-b4fc-45c7d04d26fd',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-required---myhealth-medical-chermside/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-required---myhealth-medical-chermside','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-29 18:27:22',0),(68502,'2021-04-27 23:21:39','2021-05-13 13:46:11','55dc8b1d-114b-4c40-9438-46464654671c',1,'/page/news-and-events/events/upcoming/brisbane-north-aged-care-breakfast-forum','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/brisbane-north-aged-care-breakfast-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 13:46:11',0),(68503,'2021-04-27 23:31:27','2021-04-30 08:08:23','aba08018-3d7f-4102-8076-f50a06680cd1',1,'/page/health-professionals/Local Positions Vacant/practice-manager-required---teneriffe-family-doctors/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/practice-manager-required---teneriffe-family-doctors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-30 08:08:23',0),(68504,'2021-04-27 23:37:33','2021-04-27 23:37:33','eeedbb2f-c6af-4b06-b7a6-e45e0ae5b832',1,'/events/lets-talk-about-sex','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/lets-talk-about-sex','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 23:37:33',0),(68505,'2021-04-27 23:43:09','2021-04-27 23:43:09','6d9c4cfc-938f-409b-ba37-2bbd631ea6e1',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---fortitude-valley/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---fortitude-valley','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 23:43:09',0),(68506,'2021-04-27 23:48:57','2021-04-27 23:48:57','d6adbbaa-a3c2-487c-a84c-5d5294bb4267',1,'/content/Document/Planning/FIN_AWP PMHC 19-22 _190710 WEB.docx','http://www.brisbanenorthphn.org.au/content/Document/Planning/FIN_AWP%20PMHC%2019-22%20_190710%20WEB.docx','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/Planning/FIN_AWP PMHC 19-22 _190710 WEB.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-27 23:48:57',0),(68507,'2021-04-28 00:00:58','2021-05-02 09:10:44','048e890e-3111-4842-9f0e-7454b6cf958a',1,'/page/health-professionals/community-care/dementia-care/1-system-integration','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/community-care/dementia-care/1-system-integration','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-02 09:10:44',0),(68508,'2021-04-28 00:02:56','2021-04-28 00:02:56','70fc15a2-aacf-4722-86a9-653ec0d18f40',1,'/events/therapeutic-interventions-with-children-and-young-people-from-refugee-backgrounds','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/therapeutic-interventions-with-children-and-young-people-from-refugee-backgrounds','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 00:02:56',0),(68509,'2021-04-28 00:02:58','2021-05-15 16:34:35','fc11cd83-3bd1-44fd-9983-3cdfe6f8c84e',1,'/page/news-and-events/latest-news/measles-alert-for-brisbane---25-march-2019','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/measles-alert-for-brisbane---25-march-2019','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 16:34:35',0),(68510,'2021-04-28 00:14:09','2021-04-29 20:18:25','e5214a54-508e-4631-9d99-d7510c4df002',1,'/content/Document/FINAL_INFO_SHEET_Introducing_Brisbane_North_PHN_PCLO.pdf','','66.249.68.7','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/FINAL_INFO_SHEET_Introducing_Brisbane_North_PHN_PCLO.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-29 20:18:25',0),(68511,'2021-04-28 00:18:08','2021-05-13 02:37:41','cdc5dc14-f610-40af-91a5-c66cc018cf07',1,'/content/Document/Primary care liaison/FIN_Practice Manager Induction Checklist and Record HP_200114.docx','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Primary care liaison/FIN_Practice Manager Induction Checklist and Record HP_200114.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-13 02:37:41',0),(68512,'2021-04-28 00:29:04','2021-04-28 00:29:04','356e6fac-a681-48e7-813d-1ae93b1226d4',1,'/page/publications/partners-in-health/partners-in-health-september-2016/','http://www.brisbanenorthphn.org.au/page/publications/partners-in-health/partners-in-health-september-2016/','85.208.98.19','Mozilla/5.0 (compatible; SemrushBot-BA; +http://www.semrush.com/bot.html)','Template not found: page/publications/partners-in-health/partners-in-health-september-2016','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 00:29:04',0),(68513,'2021-04-28 00:30:59','2021-05-16 23:04:57','046034e6-519a-4323-b22a-3e4309634bd4',1,'/page/news-and-events/latest-news/covid-19-information/specimen-collection-information-and-n95-mask-availability','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/covid-19-information/specimen-collection-information-and-n95-mask-availability','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 23:04:57',0),(68514,'2021-04-28 00:37:58','2021-04-29 03:19:39','2e96051c-4e0b-4862-993c-194833622530',1,'/page/news-and-events/latest-news/brisbanenorth.communityhealthpathways.org','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/brisbanenorth.communityhealthpathways.org','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-29 03:19:39',0),(68515,'2021-04-28 00:55:33','2021-05-12 06:35:38','079eae35-26ed-4edf-8622-88a10f1ce23c',1,'/page/news-and-events/latest-news/phn-responds-to-anti-vax-misinformation','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/phn-responds-to-anti-vax-misinformation','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 06:35:38',0),(68516,'2021-04-28 00:57:44','2021-04-28 00:57:44','3126cf50-6d90-4588-a9ff-68421cb759cb',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---banyo','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---banyo','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 00:57:44',0),(68517,'2021-04-28 01:05:48','2021-05-08 18:45:29','a77a19af-6991-4560-9ef1-2572cafab474',1,'/content/Document/Mental State Examination v2(2).pdf','http://www.brisbanenorthphn.org.au/content/Document/Mental%20State%20Examination%20v2(2).pdf','35.233.170.71','Go-http-client/1.1','Template not found: content/Document/Mental State Examination v2(2).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-08 18:45:29',0),(68518,'2021-04-28 01:16:09','2021-04-30 09:59:59','a923d091-c88e-4783-9ca4-913ca9d13325',1,'/page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health-march-2017','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/archive/partners-in-health-2017/partners-in-health-march-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 09:59:59',0),(68519,'2021-04-28 01:21:19','2021-05-13 21:21:18','b1b3ab24-df1a-4ba2-9e77-268608fb7c28',1,'/content/Document/Lymphoedema Fact Sheet - Gynaeoncology RBWH.pdf','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Lymphoedema Fact Sheet - Gynaeoncology RBWH.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-13 21:21:18',0),(68520,'2021-04-28 01:30:59','2021-05-11 12:56:31','90113ef8-6149-4036-bce1-8d3294dd686b',1,'/page/news-and-events/events/upcoming/immunisation-catch-up-for-practice-nurses---lutwyche/','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/immunisation-catch-up-for-practice-nurses---lutwyche','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 12:56:31',0),(68521,'2021-04-28 01:43:14','2021-05-18 10:21:45','aec1dcf0-c8ba-4fa0-a27b-24366d885190',1,'/events/cpcre-palliative-care-master-class-sustainable-gp-led-palliative-care','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/cpcre-palliative-care-master-class-sustainable-gp-led-palliative-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,37,'2021-05-18 10:21:45',0),(68522,'2021-04-28 02:20:27','2021-04-30 18:09:42','a09655d0-22e3-4da5-8a2a-4a2a03da277b',1,'/content/Document/Events/2018/CDSP North Brisbane 9 February 2019.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2018/CDSP%20North%20Brisbane%209%20February%202019.pdf','104.198.141.65','Go-http-client/1.1','Template not found: content/Document/Events/2018/CDSP North Brisbane 9 February 2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 18:09:42',0),(68523,'2021-04-28 02:22:24','2021-05-09 00:05:58','bfcece4e-93bb-47e6-891e-c51f1f437a5c',1,'/content/Document/Pathways/LINK F_TPCH RDTU brochure 2015.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/LINK%20F_TPCH%20RDTU%20brochure%202015.pdf','35.185.207.84','Go-http-client/1.1','Template not found: content/Document/Pathways/LINK F_TPCH RDTU brochure 2015.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 00:05:58',0),(68524,'2021-04-28 02:24:34','2021-05-15 16:07:46','84eaf5b9-0b0c-4711-9b77-dc77d1c8c748',1,'/content/Document/Referral info and service providers.pdf','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Referral info and service providers.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 16:07:46',0),(68525,'2021-04-28 02:28:44','2021-04-29 08:38:00','c303705b-f99d-43d6-aacb-807cc1108ac0',1,'/page/news-and-events/latest-news/aged-care-forum-ends-the-year-on-a-high-note','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/aged-care-forum-ends-the-year-on-a-high-note','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-29 08:38:00',0),(68526,'2021-04-28 02:38:05','2021-05-18 06:19:01','6f12f377-1b60-4ede-8a5d-7302b5c81c6a',1,'/events/the-alfred-heart-centre-masterclass-heart-failure-imaging-and-intervention','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/the-alfred-heart-centre-masterclass-heart-failure-imaging-and-intervention','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,32,'2021-05-18 06:19:01',0),(68527,'2021-04-28 02:55:56','2021-05-12 20:19:49','07c2843d-35a0-4522-9cb7-1345690a4c34',1,'/content/Document/Templates/4.6/MNHHS Caboolture Ref MD v4_6.rtf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.6/MNHHS Caboolture Ref MD v4_6.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 20:19:49',0),(68528,'2021-04-28 02:55:56','2021-04-28 02:55:56','b7259c95-4fc5-44f1-a79b-501d91ae8144',1,'/content/Document/MNHHS TPCH Referral BP v4_11(1).rtf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/MNHHS TPCH Referral BP v4_11(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 02:55:56',0),(68529,'2021-04-28 02:56:08','2021-04-28 02:56:08','62ceb167-a862-4c7a-9f65-d2b859a635b5',1,'/page/news-and-events/latest-news/confirmed-measles-case-in-brisbane/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/confirmed-measles-case-in-brisbane','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 02:56:08',0),(68530,'2021-04-28 03:14:10','2021-04-28 06:49:05','9f93669b-caf3-4a1c-9255-f0c112e06495',1,'/events/parkinsons-disease-a-team-approach-to-slowing-the-progress','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/parkinsons-disease-a-team-approach-to-slowing-the-progress','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-28 06:49:05',0),(68531,'2021-04-28 03:27:38','2021-04-28 05:48:48','7256becf-76e3-4741-9d8c-4a32d1946f65',1,'/page/news-and-events/events/upcoming/hepatitis-b-in-primary-care-webinar','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/hepatitis-b-in-primary-care-webinar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-28 05:48:48',0),(68532,'2021-04-28 03:38:17','2021-04-28 03:38:17','476de0f6-4364-43fc-991f-630ec313a6e6',1,'/content/Document/Brisbane MIND Provider List July 2018.pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List July 2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 03:38:17',0),(68533,'2021-04-28 03:39:11','2021-05-16 01:54:15','68126572-9200-4baa-a9f3-025d29c90af6',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/information-for-providers','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services/information-for-providers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 01:54:15',0),(68534,'2021-04-28 04:30:23','2021-04-28 04:30:23','8e13bf2e-2277-4140-b1d9-a2f5671b6c82',1,'/content/Document/Brisbane MIND Provider List August 2018 v4(4).pdf','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List August 2018 v4(4).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 04:30:23',0),(68535,'2021-04-28 04:33:34','2021-05-19 00:15:46','e484fa32-c1e5-421a-aea4-ef0e6b7d09a7',1,'/page/publications/newsletters/subscribe','','173.252.83.116','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: page/publications/newsletters/subscribe','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-19 00:15:46',0),(68536,'2021-04-28 05:27:22','2021-05-03 22:40:25','ea442c8a-62a2-4ea8-9ff3-84598aa18c1c',1,'/content/Document/Pathways/Refugee, Asylum Seekers and Detainees Information Sheet P 1-3.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/Refugee%2C%20Asylum%20Seekers%20and%20Detainees%20Information%20Sheet%20P%201-3.pdf','34.121.182.57','Go-http-client/1.1','Template not found: content/Document/Pathways/Refugee, Asylum Seekers and Detainees Information Sheet P 1-3.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-03 22:40:25',0),(68537,'2021-04-28 05:38:20','2021-04-28 05:38:20','92f58030-c53e-4c22-a35a-7530efe9f931',1,'/page/home/banners/hear-our-medical-mums-talk-immunisation/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/home/banners/hear-our-medical-mums-talk-immunisation','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 05:38:20',0),(68538,'2021-04-28 05:39:43','2021-05-17 20:11:16','9805297d-b6dd-4e29-8570-bbb76144659a',1,'/page/news-and-events/latest-news/queensland-pelvic-mesh-service-to-open-in-2019','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/queensland-pelvic-mesh-service-to-open-in-2019','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 20:11:16',0),(68539,'2021-04-28 06:11:06','2021-04-28 06:11:06','45548aec-9c77-4abd-9b7d-4a43b385ae48',1,'/page/news-and-events/latest-news/conference-scholarship-for-outstanding-medical-student','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/conference-scholarship-for-outstanding-medical-student','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 06:11:06',0),(68540,'2021-04-28 06:13:25','2021-04-28 06:13:25','a7174a7a-759c-4d1a-845d-7b7af352fa89',1,'/page/news-and-events/events/upcoming/mens-grief-workshop/','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/mens-grief-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 06:13:25',0),(68541,'2021-04-28 06:20:12','2021-04-28 06:20:12','c9261942-8e9b-41f5-b50e-10e035328e01',1,'/administrator/index.php','','52.252.60.149','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','Template not found: administrator/index.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 06:20:12',0),(68542,'2021-04-28 06:20:30','2021-04-28 06:20:30','2d1f5505-a252-439a-91d0-c7e16fd8a4bc',1,'/admin/index.php','','52.252.60.149','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','Template not found: admin/index.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 06:20:30',0),(68543,'2021-04-28 06:33:25','2021-05-17 06:09:48','03fb3553-d43a-4ec4-97c8-def0ba57185b',1,'/page/news-and-events/events/upcoming/supporting-mental-health-treatment-in-primary-care-emporium','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/supporting-mental-health-treatment-in-primary-care-emporium','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-17 06:09:48',0),(68544,'2021-04-28 06:43:26','2021-05-11 12:57:13','9505d869-49f3-4c41-8ba9-787b4f1db510',1,'/content/Document/Network Link_06_June_WEB.pdf','','178.63.51.106','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.67 Safari/537.36','Template not found: content/Document/Network Link_06_June_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-11 12:57:13',0),(68545,'2021-04-28 06:51:23','2021-05-12 20:10:07','ce7e8328-9e52-49ce-b0b1-e3d251ffedfe',1,'/page/home/quicklinks/latest-news-coronavirus-disease-219-covid-19','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/quicklinks/latest-news-coronavirus-disease-219-covid-19','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 20:10:07',0),(68546,'2021-04-28 06:53:33','2021-04-28 06:53:33','d138bff6-bcec-4de5-9252-42e7913bf5c1',1,'/page/news-and-events/latest-news/changes-to-spirometry-medicare-benefits-schedule-item-numbers','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/changes-to-spirometry-medicare-benefits-schedule-item-numbers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 06:53:33',0),(68547,'2021-04-28 06:55:15','2021-05-14 14:33:25','8566b12a-c8de-47a4-87ad-e4ac635e8526',1,'/content/Document/Templates/Brisbane MIND/MIND Additional Sessions V3 MD.rtf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/Brisbane MIND/MIND Additional Sessions V3 MD.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-14 14:33:25',0),(68548,'2021-04-28 07:37:12','2021-04-28 07:37:12','4ad9fd71-bd30-43bd-8c8f-4c60c43deaa1',1,'/content/Document/Media Releases/MR_Embargo_Medical Mums urge free kids’ flu vaccination_200424.pdf','','66.249.68.31','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/Media Releases/MR_Embargo_Medical Mums urge free kids’ flu vaccination_200424.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 07:37:12',0),(68549,'2021-04-28 07:39:12','2021-04-28 07:39:12','3d4b851d-e08e-45ad-b6b0-7a27330f1b9e',1,'/content/Document/Templates/MNHHS%20COHD%20MD%20v6_1.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/MNHHS%2520COHD%2520MD%2520v6_1.rtf','104.197.140.66','Go-http-client/1.1','Template not found: content/Document/Templates/MNHHS COHD MD v6_1.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 07:39:12',0),(68550,'2021-04-28 07:39:13','2021-04-28 07:39:13','b93d2948-8575-4b22-8ea8-ffbf7ac53d72',1,'/admin/entries/events/124368-trauma-informed-diversity-awareness-masterclass','','114.119.151.133','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: admin/entries/events/124368-trauma-informed-diversity-awareness-masterclass','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 07:39:13',0),(68551,'2021-04-28 07:39:14','2021-04-28 07:39:14','6820ea15-4870-4294-ba79-03ea148750cf',1,'/admin/entries/dist/swiper.js','https://brisbanenorthphn.org.au/admin/entries/events/124368-trauma-informed-diversity-awareness-masterclass','114.119.151.133','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: admin/entries/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 07:39:14',0),(68552,'2021-04-28 07:49:22','2021-05-16 20:08:21','7cfa6b95-27d3-4211-9072-60acada4c6de',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/brisbane-mind-information-for-referrers','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services/brisbane-mind-information-for-referrers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 20:08:21',0),(68553,'2021-04-28 07:55:15','2021-04-28 07:55:16','c4a160cf-a2a0-4333-85db-e9d2e4267f62',1,'/page/support/programs/brisbanemind','','66.220.149.16','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: page/support/programs/brisbanemind','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-28 07:55:16',0),(68554,'2021-04-28 08:07:04','2021-05-18 05:32:51','34789856-1a92-45bc-8501-7e4b8ba384ac',1,'/page/about/partnership-protocols','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/partnership-protocols','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 05:32:51',0),(68555,'2021-04-28 08:18:10','2021-05-17 17:28:34','47ffeef5-7bc8-441a-b0d3-5d6d799965f6',1,'/content/Document/Events/93752 Home Instead Senior Care A5 Caboolture.pdf','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Events/93752 Home Instead Senior Care A5 Caboolture.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-17 17:28:34',0),(68556,'2021-04-28 08:29:34','2021-04-28 08:29:34','54992656-9c08-4af1-88ae-129ff4a2760e',1,'/page/news-and-events/events/upcoming/engaging-with-fathers-and-partners-workshop','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/engaging-with-fathers-and-partners-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 08:29:34',0),(68557,'2021-04-28 08:35:52','2021-04-30 12:15:26','d4a529a1-c5d2-47b5-93e3-6ec641226046',1,'/page/news-and-events/latest-news/covid-19-information/information-for-our-community/supporting-vulnerable-communities','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/covid-19-information/information-for-our-community/supporting-vulnerable-communities','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 12:15:26',0),(68558,'2021-04-28 08:41:14','2021-04-28 08:41:18','f37048eb-bf5f-474d-a006-438798c55c9e',1,'/page/news-and-events/latest-news/medical-mums-urge-child-immunisation/','','173.252.83.22','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: page/news-and-events/latest-news/medical-mums-urge-child-immunisation','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-04-28 08:41:18',0),(68559,'2021-04-28 08:43:50','2021-04-28 08:43:50','888e8403-7576-4e09-b33d-197b1325134f',1,'/content/Document/BNPHN_Understanding_Your_Rolhttp:/www.brisbanenorthphn.org.au/content/Document/BNPHN_Understanding_Your_Role_NDIS_GP_Toolkit_May2018_FINAL_WEB.pdfe_NDIS_GP_Toolkit_May2018_FINAL_WEB.pdf','','35.239.58.193','ltx71 - (http://ltx71.com/)','Template not found: content/Document/BNPHN_Understanding_Your_Rolhttp:/www.brisbanenorthphn.org.au/content/Document/BNPHN_Understanding_Your_Role_NDIS_GP_Toolkit_May2018_FINAL_WEB.pdfe_NDIS_GP_Toolkit_May2018_FINAL_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 08:43:50',0),(68560,'2021-04-28 08:51:29','2021-04-28 08:51:29','c4d2508d-3e1f-4c2a-89c6-0a5edc40147b',1,'/content/Document/LocalLink_8August.pdf','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/LocalLink_8August.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 08:51:29',0),(68561,'2021-04-28 09:22:19','2021-05-05 21:25:05','a32875de-46a7-4af1-9d89-01b0bcf69c8b',1,'/events/chronic-disease-support-program','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/chronic-disease-support-program','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-05 21:25:05',0),(68562,'2021-04-28 09:35:34','2021-05-10 23:09:41','1887a5c4-ea54-4c01-96b9-d75fd2d750e0',1,'/content/Document/Events/2019/Metro North Health Forum/MNHF19 - Don Matheson.pdf','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Events/2019/Metro North Health Forum/MNHF19 - Don Matheson.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-10 23:09:41',0),(68563,'2021-04-28 09:48:43','2021-05-17 04:36:25','4eade8fd-eeef-4ee2-8a4b-d3c9599dddd8',1,'/content/Document/Reports/BNPHN_Year_in_Review_2017_WEB_FINAL.pdf','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Reports/BNPHN_Year_in_Review_2017_WEB_FINAL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-17 04:36:25',0),(68564,'2021-04-28 11:18:58','2021-05-03 23:41:20','c9ee74f4-192a-4310-ab0c-abbaa672eb15',1,'/content/Document/INVITATION - Management of COPD exacerbations - GP education evening - 21 June 2017.pdf','http://www.brisbanenorthphn.org.au/content/Document/INVITATION%20-%20Management%20of%20COPD%20exacerbations%20-%20GP%20education%20evening%20-%2021%20June%202017.pdf','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/INVITATION - Management of COPD exacerbations - GP education evening - 21 June 2017.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-03 23:41:20',0),(68565,'2021-04-28 11:39:16','2021-05-07 11:22:09','9b1f6ac6-c822-479e-ad49-51111e4c34ea',1,'/content/Document/Templates/4.7/MNHHS RBWH Ref MD v4_7.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.7/MNHHS%20RBWH%20Ref%20MD%20v4_7.rtf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Templates/4.7/MNHHS RBWH Ref MD v4_7.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 11:22:09',0),(68566,'2021-04-28 11:44:49','2021-05-18 09:13:54','fea4f9f9-5aa7-4add-a6c4-464a148e905d',1,'/page/news-and-events/events/upcoming/australian-association-of-practice-management/','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/australian-association-of-practice-management','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-18 09:13:54',0),(68567,'2021-04-28 12:06:43','2021-05-18 18:52:38','0ba9f9ca-0371-40c9-8e9c-feabee1a2d05',1,'/jobs/smartclinics-clayfield-seeking-vr-gp','','157.55.39.35','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/smartclinics-clayfield-seeking-vr-gp','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 18:52:38',0),(68568,'2021-04-28 12:08:55','2021-04-28 12:08:55','e75c00ec-d701-4cee-80d5-fb2a344d8fa1',1,'/page/news-and-events/latest-news/help-for-mothers-experiencing-postnatal-challenges','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/help-for-mothers-experiencing-postnatal-challenges','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 12:08:55',0),(68569,'2021-04-28 12:12:38','2021-04-30 09:31:35','efee8a61-c62c-49a7-bdb7-5fd0d9269606',1,'/page/health-professionals/Local Positions Vacant/gp-caboolture-icmc/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/gp-caboolture-icmc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-30 09:31:35',0),(68570,'2021-04-28 12:15:28','2021-05-17 04:41:46','820c248b-00dc-455f-87c6-5ba36c287667',1,'/page/news-and-events/events/upcoming/lgbtiq-practice-in-clinical-settings---6th-july','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/lgbtiq-practice-in-clinical-settings---6th-july','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-17 04:41:46',0),(68571,'2021-04-28 12:32:51','2021-05-18 02:49:56','58bb38e1-6672-474a-899c-afa6925acf20',1,'/page/news-and-events/events/upcoming/wesley-lifeforce-suicide-prevention-practice-staff-workshop---ashgrove','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/wesley-lifeforce-suicide-prevention-practice-staff-workshop---ashgrove','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 02:49:56',0),(68572,'2021-04-28 12:39:32','2021-04-28 12:39:32','06777f72-ebe4-4d96-adbe-5947061ac975',1,'/page/health-professionals/MHAOD/funded-mental-health-services/youth-mental-health-services/','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/MHAOD/funded-mental-health-services/youth-mental-health-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 12:39:32',0),(68573,'2021-04-28 12:53:30','2021-04-30 09:06:37','59516c4d-f826-4289-8199-545e3b5dffb6',1,'/page/news-and-events/events/upcoming/metro-north-gp-alignment-program-maternity-workshop/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/metro-north-gp-alignment-program-maternity-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-30 09:06:37',0),(68574,'2021-04-28 12:54:35','2021-04-30 16:27:40','94a66965-997d-4742-a3e9-9d428fe88056',1,'/page/health-professionals/Local Positions Vacant/rn-required---bardon-rainworth-medical-centre/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/rn-required---bardon-rainworth-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-04-30 16:27:40',0),(68575,'2021-04-28 12:54:41','2021-04-28 12:55:26','0e529ce2-a79e-41f8-aeec-ed0cc38dd427',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---brisbane/','','148.251.50.77','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---brisbane','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-28 12:55:26',0),(68576,'2021-04-28 13:05:15','2021-04-28 13:05:15','1bd1292f-1489-4a4f-a41c-86c706a30252',1,'/page/health-professionals/Local Positions Vacant/rn-with-practice-nurse-experience---everton-hills/','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/rn-with-practice-nurse-experience---everton-hills','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 13:05:15',0),(68577,'2021-04-28 13:14:14','2021-05-17 02:17:51','4df7c015-fccf-4b95-bf90-e10c737ce848',1,'/page/health-professionals/referral-and-patient-management/other-ereferral-templates','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/referral-and-patient-management/other-ereferral-templates','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-17 02:17:51',0),(68578,'2021-04-28 13:35:47','2021-05-11 08:36:39','4695de26-35e3-4138-b87c-f684e4dc8b42',1,'/content/Document/To Share/LIS_Service Hubs_MNMHS catchment areas_1906.pdf','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/To Share/LIS_Service Hubs_MNMHS catchment areas_1906.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-11 08:36:39',0),(68579,'2021-04-28 13:42:19','2021-04-28 13:42:19','89dbb1a2-ea54-4342-8bec-bb0e6558c8bd',1,'/page/health-professionals/MHAOD/funded-mental-health-services/psychosocial-disability-partners-in-recovery/','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/MHAOD/funded-mental-health-services/psychosocial-disability-partners-in-recovery','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 13:42:19',0),(68580,'2021-04-28 13:48:48','2021-04-28 13:48:48','78894899-8020-4335-9190-f3bead63afb0',1,'/page/news-and-events/latest-news/our-stories-care-and-counsel-for-aged-care-residents','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/our-stories-care-and-counsel-for-aged-care-residents','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 13:48:48',0),(68581,'2021-04-28 14:00:30','2021-04-28 14:00:30','dcd2f0e5-c23d-468e-99d3-08ddbdb5acc0',1,'/content/Document/Pathways/European Journal of Internal Medicine.pdf','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/European Journal of Internal Medicine.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 14:00:30',0),(68582,'2021-04-28 14:10:23','2021-04-28 14:10:23','7e98c510-ca1f-49df-9908-6daa1fe617e8',1,'/page/news-and-events/latest-news/avoid-the-crowd-and-access-after-hours-medical-advice-from-home','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/avoid-the-crowd-and-access-after-hours-medical-advice-from-home','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 14:10:23',0),(68583,'2021-04-28 14:19:02','2021-05-04 23:13:59','64baceda-9a48-430c-8f2d-99ef604e75f5',1,'/yearinreview/a-message-from-the-ceo-and-chair/www.brisbanenorthphn.org.au','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/a-message-from-the-ceo-and-chair/www.brisbanenorthphn.org.au','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-04 23:13:59',0),(68584,'2021-04-28 14:22:24','2021-04-29 09:03:46','6ff8a0c7-2c15-4c9e-8402-cca854dcb408',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---hamilton/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---hamilton','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-29 09:03:46',0),(68585,'2021-04-28 14:49:17','2021-04-28 14:49:17','5f5baa9a-1e60-4e48-a60d-13a69698b5e6',1,'/page/home/developer','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/developer','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 14:49:17',0),(68586,'2021-04-28 15:01:28','2021-04-28 15:01:28','502c8645-6007-4570-98df-1ed3fed6e6ca',1,'/page/news-and-events/events/upcoming/promoting-functional-independence-through-assistive-technology---townsville/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/promoting-functional-independence-through-assistive-technology---townsville','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 15:01:28',0),(68587,'2021-04-28 15:23:03','2021-04-28 15:23:03','25d128cc-8074-40c5-b04c-0100555eab81',1,'/content/Document/Templates/4.6/MNHHS Paediatric PractiX v4_6.doc','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.6/MNHHS Paediatric PractiX v4_6.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 15:23:03',0),(68588,'2021-04-28 15:38:04','2021-05-17 18:57:38','3c9a55c4-df4c-4eb9-aac6-4cfaa222d485',1,'/page/news-and-events/events/archive/carbohydrate-counting-for-diabetes/','','40.77.167.15','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/carbohydrate-counting-for-diabetes','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 18:57:38',0),(68589,'2021-04-28 15:49:35','2021-05-15 16:40:27','d096f562-4685-4bfc-8896-94e7a379b7a2',1,'/page/health-professionals/my-health-for-life/eoi-for-my-health-for-life-providers-now-open','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/my-health-for-life/eoi-for-my-health-for-life-providers-now-open','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 16:40:27',0),(68590,'2021-04-28 15:56:02','2021-05-16 14:29:50','73ca399a-e4ec-4c93-9dee-388ae8ce7942',1,'/page/health-professionals/chronic-disease-management/care-plans-and-templates','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/chronic-disease-management/care-plans-and-templates','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 14:29:50',0),(68591,'2021-04-28 16:06:04','2021-05-14 11:51:25','02f0e000-eddb-430e-a62d-3461db30d2a9',1,'/page/about/careers/management-accountant/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers/management-accountant','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-14 11:51:25',0),(68592,'2021-04-28 16:15:28','2021-05-14 15:22:03','b67a72b9-9b55-47cb-bb08-ce592b3f13f6',1,'/content/Document/Events/2017/INVITATION - GP Gastroenterology and Hepatology workshop - 11 November 2017 v2.pdf','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Events/2017/INVITATION - GP Gastroenterology and Hepatology workshop - 11 November 2017 v2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-14 15:22:03',0),(68593,'2021-04-28 16:41:53','2021-04-28 16:41:53','0ebb51e5-245b-476c-8553-2e385288de4b',1,'/content/Document/Pathways/B7_Wound_Care.pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/B7_Wound_Care.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 16:41:53',0),(68594,'2021-04-28 16:47:53','2021-04-30 05:35:58','02ff94d3-ae9d-4ab3-8867-b19a12458f10',1,'/page/news-and-events/events/upcoming/apna-foundations-of-general-practice-nursing/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/apna-foundations-of-general-practice-nursing','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-30 05:35:58',0),(68595,'2021-04-28 17:13:24','2021-04-28 17:13:24','b8e051c6-644d-45eb-8d60-c743bcd94887',1,'/content/Document/Events/2019/FIN_INVITATION - Managing the waiting room - November 2019_PRINT.pdf','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2019/FIN_INVITATION - Managing the waiting room - November 2019_PRINT.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 17:13:24',0),(68596,'2021-04-28 17:37:49','2021-04-28 17:37:49','718eb94e-6deb-44a2-9edd-b5209223281b',1,'/page/news-and-events/events/upcoming/dementia-essentials-providing-support-to-people-living-with-dementia-wesley-mission/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/dementia-essentials-providing-support-to-people-living-with-dementia-wesley-mission','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 17:37:49',0),(68597,'2021-04-28 17:42:00','2021-04-30 19:55:27','39b933da-1ab6-488e-82cf-b86b542b0b85',1,'/page/about/careers/program-support-officer-mental-health-reform/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers/program-support-officer-mental-health-reform','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-30 19:55:27',0),(68598,'2021-04-28 17:50:11','2021-05-07 02:48:23','04f79d99-8393-43d3-a986-7544e6b544a3',1,'/content/Document/Local Positions Vacant/CF Coach PD.pdf','http://www.brisbanenorthphn.org.au/content/Document/Local%20Positions%20Vacant/CF%20Coach%20PD.pdf','35.192.197.124','Go-http-client/1.1','Template not found: content/Document/Local Positions Vacant/CF Coach PD.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-07 02:48:23',0),(68599,'2021-04-28 17:52:21','2021-05-18 01:58:01','7fa6d447-3ba5-41c0-956b-1547fe95b05a',1,'/jobs/medical-receptionists-1-part-time-and-1-casual-position-4','','40.77.167.45','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/medical-receptionists-1-part-time-and-1-casual-position-4','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,17,'2021-05-18 01:58:01',0),(68600,'2021-04-28 18:06:56','2021-05-18 19:55:50','c952d978-1ebf-431c-a4b5-cd9c6aa6862c',1,'/page/health-professionals/immunisation/campaigns','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/immunisation/campaigns','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 19:55:50',0),(68601,'2021-04-28 18:11:09','2021-05-06 07:29:52','82783a85-95cd-4fcb-828d-1fcfc19d658f',1,'/content/Document/Pathways/LINK E_Falls in the elderly.pdf','','93.158.161.35','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','Template not found: content/Document/Pathways/LINK E_Falls in the elderly.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 07:29:52',0),(68602,'2021-04-28 18:13:53','2021-05-01 06:22:27','767fbccf-6e9e-4383-a82d-26919e089028',1,'/content/Image/News Images/Banner_template_news_melissawalker.jpg','','58.229.188.194','Wget/1.21','Template not found: content/Image/News Images/Banner_template_news_melissawalker.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 06:22:27',0),(68603,'2021-04-28 18:32:19','2021-05-09 01:32:02','fb213148-77b0-470c-9c97-f68e087bb877',1,'/events/self-care-for-kinship-carers','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/self-care-for-kinship-carers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 01:32:02',0),(68604,'2021-04-28 18:35:24','2021-04-28 18:35:24','de58c237-5716-4e54-bf59-1fa331049d0b',1,'/assets/plugins/jQuery-File-Upload/server/php/index.php','http://www.google.com/','23.228.109.147','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2896.3 Safari/537.36','Template not found: assets/plugins/jQuery-File-Upload/server/php/index.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 18:35:24',0),(68605,'2021-04-28 18:36:57','2021-05-17 08:57:42','332a7048-34da-4586-bbc5-4cd272cae4bd',1,'/content/Document/Templates/My health for life/My-Health-for-Life-MD-V2-0.rtf','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Templates/My health for life/My-Health-for-Life-MD-V2-0.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 08:57:42',0),(68606,'2021-04-28 18:44:40','2021-04-28 18:44:40','84cc592d-2433-4955-ad6a-a9da4a5b11bc',1,'/content/Document/Templates/My%20health%20for%20life/My-Health-for-Life-MD-V2-0.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/My%2520health%2520for%2520life/My-Health-for-Life-MD-V2-0.rtf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Templates/My health for life/My-Health-for-Life-MD-V2-0.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 18:44:40',0),(68607,'2021-04-28 18:55:18','2021-05-18 21:54:44','634b0770-2d7e-40f1-9984-4f21f0042e44',1,'/events/corrections-webinar-progress-towards-micro-elimination-of-hcv-with-poct-at-brisbane-womens-cc','','54.36.149.60','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)','Template not found: events/corrections-webinar-progress-towards-micro-elimination-of-hcv-with-poct-at-brisbane-womens-cc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,18,'2021-05-18 21:54:44',0),(68608,'2021-04-28 19:04:19','2021-05-16 14:14:19','229459fb-71fd-4ea7-a02f-bda154376cc5',1,'/content/Document/Events/2017/ICIF-COPD-Project-GP-ALM-1711_evenings.pdf','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Events/2017/ICIF-COPD-Project-GP-ALM-1711_evenings.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 14:14:19',0),(68609,'2021-04-28 19:13:03','2021-04-28 19:13:03','89cef8ca-968e-4a71-8fd6-6fe2063c2301',1,'/page/news-and-events/events/upcoming/apna-brisbane-north-nurses-network-meeting-northlakes/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/apna-brisbane-north-nurses-network-meeting-northlakes','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 19:13:03',0),(68610,'2021-04-28 19:45:32','2021-04-28 19:45:32','70b00384-293c-4d2a-a33b-388d6b1cf9fe',1,'/page/about/our-planning/reports-and-plans/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/our-planning/reports-and-plans','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 19:45:32',0),(68611,'2021-04-28 19:46:33','2021-05-13 10:12:55','8c0c8b38-a1a6-4ef4-9005-7a355a788d7a',1,'/page/publications/partners-in-health/partners-in-health-may-2017/','','173.252.111.16','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: page/publications/partners-in-health/partners-in-health-may-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 10:12:55',0),(68612,'2021-04-28 19:49:31','2021-05-05 19:17:38','3e248b8b-c039-4930-bfe1-b101733946fb',1,'/content/Document/What is insomnia.pdf','http://www.brisbanenorthphn.org.au/content/Document/What%20is%20insomnia.pdf','104.198.141.65','Go-http-client/1.1','Template not found: content/Document/What is insomnia.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-05 19:17:38',0),(68613,'2021-04-28 20:20:46','2021-05-18 22:38:00','4e15d6af-f97d-462e-b027-827b77ee1d0d',1,'/events/rolling-out-depot-buprenorphine-there-is-no-red-carpet','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/rolling-out-depot-buprenorphine-there-is-no-red-carpet','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,22,'2021-05-18 22:38:00',0),(68614,'2021-04-28 20:42:07','2021-05-16 16:15:31','256118f8-5b41-44a3-82d5-8b2858eecffa',1,'/page/news-and-events/events/upcoming/end-of-life-special-interest-group/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/end-of-life-special-interest-group','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-16 16:15:31',0),(68615,'2021-04-28 20:46:22','2021-05-16 14:11:38','68105b6c-5767-4520-a6c3-04924b049f53',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---nundah','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---nundah','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 14:11:38',0),(68616,'2021-04-28 21:26:41','2021-04-28 21:26:41','b3d23680-d526-4004-8ed3-9ca898e8971b',1,'/SypexDumper/sxd/sxd.js','http://brisbanenorthphn.org.au/SypexDumper/sxd/sxd.js','45.129.137.249','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','Template not found: SypexDumper/sxd/sxd.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 21:26:41',0),(68617,'2021-04-28 21:26:43','2021-04-28 21:26:43','d742a167-1f49-472b-8841-06ff2da3167e',1,'/dumper/sxd.js','http://brisbanenorthphn.org.au/dumper/sxd.js','45.129.137.249','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','Template not found: dumper/sxd.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 21:26:43',0),(68618,'2021-04-28 21:26:45','2021-04-28 21:26:45','a5ca70a6-8d5a-4dbd-9898-47f93cb15dee',1,'/admin/dumper/sxd.js','http://brisbanenorthphn.org.au/admin/dumper/sxd.js','45.129.137.249','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','Template not found: admin/dumper/sxd.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 21:26:45',0),(68619,'2021-04-28 21:26:47','2021-04-28 21:26:47','c4597656-5f5a-4092-a52e-6c932c58fd32',1,'/admin/sxd/sxd.js','http://brisbanenorthphn.org.au/admin/sxd/sxd.js','45.129.137.249','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','Template not found: admin/sxd/sxd.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 21:26:47',0),(68620,'2021-04-28 21:26:49','2021-04-28 21:26:49','4d2c1170-69dc-4434-abab-0115b1a6c57e',1,'/backup/sxd/sxd.js','http://brisbanenorthphn.org.au/backup/sxd/sxd.js','45.129.137.249','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','Template not found: backup/sxd/sxd.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 21:26:49',0),(68621,'2021-04-28 21:26:51','2021-04-28 21:26:51','12f0eac8-ba87-472d-9479-526daa17bfb4',1,'/dump/sxd.js','http://brisbanenorthphn.org.au/dump/sxd.js','45.129.137.249','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','Template not found: dump/sxd.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 21:26:51',0),(68622,'2021-04-28 21:45:56','2021-05-13 01:07:20','1fc9557f-9892-4fbf-a420-d1aae2a8c972',1,'/page/news-and-events/latest-news/new-graduate-reflects-on-a-conference-that-connects','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/new-graduate-reflects-on-a-conference-that-connects','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-13 01:07:20',0),(68623,'2021-04-28 21:50:31','2021-05-11 20:13:41','901f0589-3db9-46dc-be1b-534b30b9cb96',1,'/page/health-professionals/digital-health/my-health-record/about/what-security-and-access-controls-does-my-health-record-have/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/digital-health/my-health-record/about/what-security-and-access-controls-does-my-health-record-have','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-11 20:13:41',0),(68624,'2021-04-28 21:52:13','2021-05-10 13:53:12','ce315ab1-8bc4-493d-9f49-d30a2a7b5497',1,'/content/Document/Primary care liaison/eHealth-PIP-toolkit-MD.pdf','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Primary care liaison/eHealth-PIP-toolkit-MD.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-10 13:53:12',0),(68625,'2021-04-28 22:01:23','2021-05-13 00:33:54','ad1df54c-4996-476b-894c-66229dfe58b1',1,'/content/Document/FORM 5a - Clinician withdrawing from Program(1).docx','http://www.brisbanenorthphn.org.au/content/Document/FORM%205a%20-%20Clinician%20withdrawing%20from%20Program(1).docx','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/FORM 5a - Clinician withdrawing from Program(1).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-13 00:33:54',0),(68626,'2021-04-28 22:03:14','2021-04-28 22:03:14','4ace623c-5a1d-4b41-8b81-7fc924db0dcf',1,'/content/Document/Media%20Releases/160128-%20State%20funding%20for%20integrated%20care%20applauded.pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%2520Releases/160128-%2520State%2520funding%2520for%2520integrated%2520care%2520applauded.pdf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Media Releases/160128- State funding for integrated care applauded.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 22:03:14',0),(68627,'2021-04-28 22:11:47','2021-05-10 13:23:43','5476ec60-7bfe-4309-b8b6-ffcf9358e29d',1,'/page/home/brands','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/brands','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 13:23:43',0),(68628,'2021-04-28 22:13:55','2021-04-28 22:13:55','1d799ff6-8cc9-455b-8cfe-7a290274816c',1,'/content/Document/Campaign%20material/19_5069%20PHN%20Adult%20Immunisation%20factsheet_FINAL_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Campaign%2520material/19_5069%2520PHN%2520Adult%2520Immunisation%2520factsheet_FINAL_WEB.pdf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Campaign material/19_5069 PHN Adult Immunisation factsheet_FINAL_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 22:13:55',0),(68629,'2021-04-28 22:41:01','2021-05-12 13:34:17','d94a3488-04a4-4f5a-8f13-49c6cdfb5322',1,'/page/health-professionals/directories/service-navigator','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/directories/service-navigator','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 13:34:17',0),(68630,'2021-04-28 22:55:51','2021-04-28 22:55:51','4bd77164-366c-4f74-9fd3-b10c813f06df',1,'/page/health-professionals/mental-health-services/brisbane-mind4kids/carers-and-consumers','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/brisbane-mind4kids/carers-and-consumers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 22:55:51',0),(68631,'2021-04-28 23:03:09','2021-05-09 21:05:21','a92a2cd2-36ea-4f40-8c5d-295b5115cbe8',1,'/content/Document/Templates/4.5/MNHHS RBWH Referral MD v4.5 160101.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.5/MNHHS%20RBWH%20Referral%20MD%20v4.5%20160101.rtf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Templates/4.5/MNHHS RBWH Referral MD v4.5 160101.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 21:05:21',0),(68632,'2021-04-28 23:20:07','2021-04-28 23:20:07','5e78e8ae-3f1b-42d7-9c2c-57899d6e8c45',1,'/content/Document/Pre-vaccination Checklist for Zostavax Administration - FINAL.DOCX','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pre-vaccination Checklist for Zostavax Administration - FINAL.DOCX','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-28 23:20:07',0),(68633,'2021-04-28 23:26:59','2021-05-16 22:42:24','3fc7d74e-9da3-4ceb-a831-308706e98c3f',1,'/events/wounds-clinical-update-for-nurses','','66.249.79.150','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: events/wounds-clinical-update-for-nurses','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 22:42:24',0),(68634,'2021-04-28 23:29:40','2021-05-08 05:35:44','b0cf3405-4d99-4cf7-acb9-eb6a11b51402',1,'/content/Document/Pathways/Heart attack and Heart Failure.pdf','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Heart attack and Heart Failure.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-08 05:35:44',0),(68635,'2021-04-29 00:11:56','2021-04-29 00:11:56','24ed447e-d9e8-4f85-974d-a5fc0fc86343',1,'/page/news-and-events/events/archive/telehealth-with-children-and-young-people-webinar','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/telehealth-with-children-and-young-people-webinar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 00:11:56',0),(68636,'2021-04-29 00:14:04','2021-04-29 00:14:04','ebfecae7-c509-4e47-8435-6e667c39ab82',1,'/page/about/commissioning/register-to-access-the-toolkit','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/commissioning/register-to-access-the-toolkit','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 00:14:04',0),(68637,'2021-04-29 00:39:23','2021-05-12 12:57:53','1fe73041-c3ba-4e5a-b1b1-d4efcb2a5e28',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---aspley/','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---aspley','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 12:57:53',0),(68638,'2021-04-29 00:55:43','2021-04-29 00:55:43','98d7d136-5f59-49b8-b531-b00360eaeee4',1,'/page/news-and-events/latest-news/phone-issues-at-aspley-13-october-2016/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/phone-issues-at-aspley-13-october-2016','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 00:55:43',0),(68639,'2021-04-29 01:11:04','2021-04-29 01:11:04','33e07325-e2dd-436d-aec6-cf8f123297ec',1,'/page/news-and-events/latest-news/stop-the-rise-of-stis','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/stop-the-rise-of-stis','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 01:11:04',0),(68640,'2021-04-29 01:16:57','2021-04-29 01:16:57','722b57d1-8011-495f-9818-72200a8c40a0',1,'/content/Image/Staff/WEB_JoLynHarding.jpg','','58.229.188.194','Wget/1.21','Template not found: content/Image/Staff/WEB_JoLynHarding.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 01:16:57',0),(68641,'2021-04-29 01:29:00','2021-04-29 01:29:00','b3e4f9cf-f03e-4238-a45f-11731dfc5b8a',1,'/events/managing-care-dealing-underperformance-bullying-complaints-and-dismissals-1','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/managing-care-dealing-underperformance-bullying-complaints-and-dismissals-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 01:29:00',0),(68642,'2021-04-29 01:34:17','2021-05-07 04:10:02','cd60dbd9-2861-44c1-96f3-ec9357439512',1,'/page/news-and-events/events/upcoming/mens-grief-workshop','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/mens-grief-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-07 04:10:02',0),(68643,'2021-04-29 01:34:50','2021-04-29 01:34:57','76b3e7d2-19ce-4f65-8682-e97cfb3c7438',1,'/news/medical-mums-campaign-urges-parents-to-keep-kids-immunised','','103.87.254.78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','Template not found: news/medical-mums-campaign-urges-parents-to-keep-kids-immunised','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-29 01:34:57',0),(68644,'2021-04-29 01:36:19','2021-04-29 01:36:19','b6ef0d97-8281-45af-bc20-00a724340c69',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---woody-point','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---woody-point','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 01:36:19',0),(68645,'2021-04-29 01:44:52','2021-05-02 23:33:22','08a4de66-4c25-4d55-a92f-6b3d58ee4a6f',1,'/content/Document/Primary care liaison/MH4L_medical_practitioner_FAQs_FINAL.pdf','http://www.brisbanenorthphn.org.au/content/Document/Primary%20care%20liaison/MH4L_medical_practitioner_FAQs_FINAL.pdf','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/MH4L_medical_practitioner_FAQs_FINAL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-02 23:33:22',0),(68646,'2021-04-29 01:48:02','2021-04-29 01:48:02','64cd1d0a-faf0-4cd7-9684-886bc2035709',1,'/page/news-and-events/events/archive/trauma-informed-care-and-practice-in-domestic-and-family-violence-services/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/trauma-informed-care-and-practice-in-domestic-and-family-violence-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 01:48:02',0),(68647,'2021-04-29 01:51:09','2021-04-29 01:51:09','524ab1b6-0c9c-4ac3-99c8-98bf5947db0f',1,'/page/news-and-events/events/upcoming/managing-the-general-practice-waiting-room','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/managing-the-general-practice-waiting-room','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 01:51:09',0),(68648,'2021-04-29 01:57:34','2021-04-29 01:57:34','90affd2f-0769-4676-9f6a-ca84509f0494',1,'/page/news-and-events/latest-news/education-on-my-terms-warner-gp-shares-experience-with-project-echo','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/education-on-my-terms-warner-gp-shares-experience-with-project-echo','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 01:57:34',0),(68649,'2021-04-29 02:12:45','2021-05-10 12:41:55','6a253f9e-2eed-4015-87a8-6e22b3e1c144',1,'/page/news-and-events/events/archive/topics-in-paediatric-opthamology','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/topics-in-paediatric-opthamology','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 12:41:55',0),(68650,'2021-04-29 02:43:47','2021-05-09 23:11:28','caaedde6-1599-4dad-b93a-15a420716ce5',1,'/content/Document/Events/2018/Drug and Alcohol First Aid Training Workshop 8 Feb 2018.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2018/Drug%20and%20Alcohol%20First%20Aid%20Training%20Workshop%208%20Feb%202018.pdf','34.94.5.119','Go-http-client/1.1','Template not found: content/Document/Events/2018/Drug and Alcohol First Aid Training Workshop 8 Feb 2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 23:11:28',0),(68651,'2021-04-29 02:51:24','2021-04-30 18:20:59','5b3e2983-079b-4b17-9f83-bf821dd33c81',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-required---prasads-medical-centre/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-required---prasads-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-30 18:20:59',0),(68652,'2021-04-29 03:44:56','2021-05-12 13:43:33','806812c2-06b9-4eb7-9c30-84a451a5139f',1,'/page/home/style-guide/grid-listing/item-3','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/style-guide/grid-listing/item-3','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-12 13:43:33',0),(68653,'2021-04-29 03:52:49','2021-04-30 13:35:01','1e5b81bd-78f7-426e-98ca-8146f9a5809f',1,'/content/Document/MH4L Provider EOI pack_BNE North_12062017 (2) (002)(1).pdf','http://www.brisbanenorthphn.org.au/content/Document/MH4L%20Provider%20EOI%20pack_BNE%20North_12062017%20(2)%20(002)(1).pdf','34.67.170.26','Go-http-client/1.1','Template not found: content/Document/MH4L Provider EOI pack_BNE North_12062017 (2) (002)(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 13:35:01',0),(68654,'2021-04-29 03:57:04','2021-04-29 03:57:04','88e19652-e741-46d6-b8e3-9a1f828ca899',1,'/content/Document/Network%20Link/Network%20Link_Sep2019_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%2520Link/Network%2520Link_Sep2019_WEB.pdf','34.121.182.57','Go-http-client/1.1','Template not found: content/Document/Network Link/Network Link_Sep2019_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 03:57:04',0),(68655,'2021-04-29 04:01:53','2021-05-01 04:27:39','5def900b-88c0-4915-abaf-313035b4914c',1,'/page/news-and-events/latest-news/funding-boost-for-local-drug-treatment-services','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/funding-boost-for-local-drug-treatment-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 04:27:39',0),(68656,'2021-04-29 04:26:01','2021-04-29 04:26:01','4ccaa4c0-3c24-47bd-96c5-87ddd01f9f96',1,'/events/introduction-refugee-experience–-impact-trauma','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/introduction-refugee-experience–-impact-trauma','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 04:26:01',0),(68657,'2021-04-29 04:27:02','2021-05-04 05:29:32','1eaf6df0-f61c-4149-a2d7-05bef2634417',1,'/page/news-and-events/latest-news/new-campaign-targets-vaccination-for-older-people','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/new-campaign-targets-vaccination-for-older-people','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-04 05:29:32',0),(68658,'2021-04-29 04:33:44','2021-04-29 04:33:44','a8988a48-24c0-495f-bb61-dbdc08ce5457',1,'/content/Media/Genie v6.2/MNHHS Caboolture Referral v6.2_Genie.4W7','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: content/Media/Genie v6.2/MNHHS Caboolture Referral v6.2_Genie.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 04:33:44',0),(68659,'2021-04-29 04:35:07','2021-04-29 04:35:07','5db61aa4-a4f4-4a47-9da4-d13af3b86f31',1,'/content/Document/Events/2019/Gynaecology Workshop flyer FINAL.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/Gynaecology%20Workshop%20flyer%20FINAL.pdf','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/Events/2019/Gynaecology Workshop flyer FINAL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 04:35:07',0),(68660,'2021-04-29 04:35:10','2021-05-05 10:27:50','ae33f5ea-898f-44fd-8b73-166d0126ee54',1,'/content/Media/Genie v6.2/MNHHS Paediatric Referral v6.2_Genie.4W7','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Media/Genie v6.2/MNHHS Paediatric Referral v6.2_Genie.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-05 10:27:50',0),(68661,'2021-04-29 04:35:44','2021-05-17 04:12:48','03a1966d-16d6-4dd0-975c-6449161d4d9a',1,'/events/2nd-annual-north-brisbane-partners-recovery-forum-2014','','40.77.167.15','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/2nd-annual-north-brisbane-partners-recovery-forum-2014','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 04:12:48',0),(68662,'2021-04-29 04:36:33','2021-04-29 04:36:33','ee953efb-c953-4940-8fb6-898422986c27',1,'/events/bringing-comfort-caring-others-end-life-part-1-3','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: events/bringing-comfort-caring-others-end-life-part-1-3','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 04:36:33',0),(68663,'2021-04-29 04:37:06','2021-04-29 04:37:06','1dd18268-7968-4af0-aba8-25dff27658e4',1,'/events/brisbane-north-virtual-supermarket-tour','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: events/brisbane-north-virtual-supermarket-tour','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 04:37:06',0),(68664,'2021-04-29 04:37:35','2021-05-01 15:08:54','34f4275e-23f5-4246-940e-2412e4f10543',1,'/content/Document/Templates/4.4/MNHHS TPCH Referral BP v4.4.rtf','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.4/MNHHS TPCH Referral BP v4.4.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 15:08:54',0),(68665,'2021-04-29 04:37:56','2021-04-29 04:37:56','2dc8b95e-e084-4361-9d69-f1fa497f6d1a',1,'/events/case-medicines-asthma','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: events/case-medicines-asthma','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 04:37:56',0),(68666,'2021-04-29 04:38:35','2021-04-29 04:38:35','e0adb1bf-431d-46b6-bc32-b5fafe362b9b',1,'/events/cast-application-and-management','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: events/cast-application-and-management','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 04:38:35',0),(68667,'2021-04-29 04:39:14','2021-04-29 04:39:14','bdf5a074-1a50-4a56-b4fd-17290fedaa29',1,'/events/catheterisation-workshop','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: events/catheterisation-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 04:39:14',0),(68668,'2021-04-29 04:39:55','2021-04-29 04:39:55','23fab9c1-6c32-47d3-b5ef-d7b247130ba8',1,'/events/clone-cross-cultural-education-event-part-2-2','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: events/clone-cross-cultural-education-event-part-2-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 04:39:55',0),(68669,'2021-04-29 04:40:28','2021-05-10 12:40:35','fbfdfb59-bde8-44f1-9570-01254c632a60',1,'/events/cpr-workshop','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/cpr-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 12:40:35',0),(68670,'2021-04-29 04:41:08','2021-04-29 04:41:08','11bf3624-cce1-486e-808c-3e3fd1af8e2c',1,'/events/decoding-diabetes-health-professionals','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: events/decoding-diabetes-health-professionals','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 04:41:08',0),(68671,'2021-04-29 04:41:52','2021-04-29 04:41:52','646636a7-a030-4151-af17-b2342e22d111',1,'/events/diabetes-management-health-professionals-workshop','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: events/diabetes-management-health-professionals-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 04:41:52',0),(68672,'2021-04-29 04:42:27','2021-04-29 04:42:27','862997cd-42ce-4475-872e-df3fb9e1b656',1,'/events/healing-course-life-after-loss','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: events/healing-course-life-after-loss','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 04:42:27',0),(68673,'2021-04-29 04:43:06','2021-04-29 04:43:06','8cb87188-1cbf-4185-9d5a-80f932c8ceea',1,'/events/metro-north-maternity-gp-alignment-program-july-part-1-2','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: events/metro-north-maternity-gp-alignment-program-july-part-1-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 04:43:06',0),(68674,'2021-04-29 04:43:34','2021-04-29 04:43:34','9da0ac1d-a3a4-447f-8b17-11ea88a437ce',1,'/content/Document/Templates/5.3/MNHHS%20Caboolture%20Referral%20v5_3%20ZM.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%2520Caboolture%2520Referral%2520v5_3%2520ZM.rtf','104.197.140.66','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS Caboolture Referral v5_3 ZM.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 04:43:34',0),(68675,'2021-04-29 04:43:46','2021-05-08 20:26:18','f21541c6-68fd-4705-be23-094ea34c2385',1,'/events/metro-north-maternity-gp-alignment-program-july-part-2-2','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/metro-north-maternity-gp-alignment-program-july-part-2-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-08 20:26:18',0),(68676,'2021-04-29 04:44:50','2021-05-11 16:06:12','6c249321-60ab-4018-b3e8-d16275ad3dd6',1,'/events/north-brisbane-community-resource-expo','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/north-brisbane-community-resource-expo','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 16:06:12',0),(68677,'2021-04-29 04:45:30','2021-04-29 04:45:30','1361f4a0-1c29-427e-a67e-c9b0eef0f7f8',1,'/events/primary-health-care-seminar-series-antenatal-breast-milk-expression-mothers-diabetes-improvin','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: events/primary-health-care-seminar-series-antenatal-breast-milk-expression-mothers-diabetes-improvin','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 04:45:30',0),(68678,'2021-04-29 04:45:42','2021-04-30 19:10:42','dfe836bd-268c-4bdb-8f67-f4dfe6836ec9',1,'/page/health-professionals/Local Positions Vacant/gp-required---market-street-medical-practice/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/gp-required---market-street-medical-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-04-30 19:10:42',0),(68679,'2021-04-29 04:46:13','2021-04-29 04:46:13','10152357-783b-48b5-a294-0a53e853b591',1,'/events/utilising-practice-tools-chermside-local-area-focus','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: events/utilising-practice-tools-chermside-local-area-focus','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 04:46:13',0),(68680,'2021-04-29 04:47:56','2021-04-29 04:47:56','d62723c2-936b-4ceb-8e69-c430a619934e',1,'/events/wesley-hospital-cpd-evening-topic-oncology-palliative-care','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: events/wesley-hospital-cpd-evening-topic-oncology-palliative-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 04:47:56',0),(68681,'2021-04-29 04:48:06','2021-05-18 04:35:58','3e52224e-3a7b-4726-863a-0830d16820ff',1,'/events/exercise-is-medicine-enhancing-patient-outcomes-through-lifestyle-interventions-1','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/exercise-is-medicine-enhancing-patient-outcomes-through-lifestyle-interventions-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 04:35:58',0),(68682,'2021-04-29 04:48:22','2021-04-29 04:48:22','a0542c41-0b10-4ff0-be86-451284c610c8',1,'/events/wesley-hospital-cpd-evening-topic-thoracic-sleep','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: events/wesley-hospital-cpd-evening-topic-thoracic-sleep','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 04:48:22',0),(68683,'2021-04-29 04:50:14','2021-05-06 10:02:22','8e551baa-cfeb-4384-93d9-2feda07c4fd1',1,'/page/news-and-events/events/upcoming/awards---nurses-and-health-professionals-webinar','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/awards---nurses-and-health-professionals-webinar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-06 10:02:22',0),(68684,'2021-04-29 04:52:17','2021-04-29 04:52:17','4adc7aa7-cdc6-49ef-980f-d761f8a24ff4',1,'/events/staying-safe-during-domestic-and-family-violence-prevention-month-in-may-2021-redcliffe','','203.30.244.1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36','Template not found: events/staying-safe-during-domestic-and-family-violence-prevention-month-in-may-2021-redcliffe','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 04:52:17',0),(68685,'2021-04-29 04:58:05','2021-04-29 04:58:05','441f97c0-b4da-4583-a47e-322c2f1e1b16',1,'/page/news-and-events/events/upcoming/keeping-kidneys-in-the-community-project/','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/keeping-kidneys-in-the-community-project','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 04:58:05',0),(68686,'2021-04-29 04:58:58','2021-04-29 04:58:58','a404f7c1-cb78-452d-b4f9-51013534f4fb',1,'/page/news-and-events/events/upcoming/live-well-breathe-better-education-seminar/','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/live-well-breathe-better-education-seminar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 04:58:58',0),(68687,'2021-04-29 05:01:47','2021-04-29 05:01:47','2ecd0f26-8c05-4ec8-ad0c-2dba198f41a6',1,'/page/news-and-events/events/upcoming/managing-vicarious-trauma/','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/managing-vicarious-trauma','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 05:01:47',0),(68688,'2021-04-29 05:05:38','2021-04-29 05:05:38','b390380f-88c4-40d3-9f34-5b638c0d6c28',1,'/page/news-and-events/events/upcoming/orthopaedics---august-gp-education-saturday-workshop/','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/orthopaedics---august-gp-education-saturday-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 05:05:38',0),(68689,'2021-04-29 05:09:27','2021-04-29 05:09:27','a04bb677-7cc2-48ea-8ea4-2edf70e20772',1,'/page/news-and-events/events/upcoming/respiratory-complications-of-cancer-seminar/','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/respiratory-complications-of-cancer-seminar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 05:09:27',0),(68690,'2021-04-29 05:10:01','2021-04-29 05:10:01','8412efac-dd1e-4b7e-94b8-b4189b76a02e',1,'/page/news-and-events/events/upcoming/respiratory-patient-centred-care/','','192.99.13.75','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/events/upcoming/respiratory-patient-centred-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 05:10:01',0),(68691,'2021-04-29 05:12:29','2021-05-14 22:22:46','7a56abdb-5530-4f6b-b791-95977d6a34cd',1,'/page/news-and-events/events/upcoming/rural-emergency-skills-training-august/','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/rural-emergency-skills-training-august','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-14 22:22:46',0),(68692,'2021-04-29 05:13:21','2021-05-19 02:07:11','a0616ca5-c460-48f0-bb45-448d1007f5ce',1,'/page/news-and-events/latest-news/my-health-record-improving-outcomes-for-people-in-palliative-care','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/my-health-record-improving-outcomes-for-people-in-palliative-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-19 02:07:11',0),(68693,'2021-04-29 05:21:21','2021-05-12 06:19:09','ff15e383-f0bc-47de-95cf-6088b3e5453b',1,'/page/news-and-events/events/upcoming/what-happens-when-surgery-doesnt-work---endometriosis/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/what-happens-when-surgery-doesnt-work---endometriosis','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-12 06:19:09',0),(68694,'2021-04-29 05:25:59','2021-05-17 21:11:14','8e865ba4-d805-4711-af13-d3ed74dd2839',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---everton-hills','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---everton-hills','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-17 21:11:14',0),(68695,'2021-04-29 05:30:11','2021-05-13 16:28:35','d8684952-f879-46a0-bc40-d9094654be92',1,'/page/news-and-events/events/upcoming/dealing-with-depression','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/dealing-with-depression','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-13 16:28:35',0),(68696,'2021-04-29 05:40:43','2021-05-18 06:48:02','999acc9e-f1ca-4473-9cb0-303fab36f792',1,'/page/health-professionals/mental-health-services/brisbane-mind4kids/information-for-gps','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/brisbane-mind4kids/information-for-gps','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 06:48:02',0),(68697,'2021-04-29 06:10:53','2021-04-29 06:10:53','73bc9804-eaa6-4273-85be-7a9453a103f3',1,'/page/health-professionals/pathways-program-map-of-medicine/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/pathways-program-map-of-medicine','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 06:10:53',0),(68698,'2021-04-29 06:17:08','2021-04-29 06:17:08','9fdfbfb9-423d-466e-8dc3-8ebb3fdd67ce',1,'/content/Document/Primary%20care%20liaison/MNHHS%20TPCH%20Ref%20v6_2%20MD(1).rtf','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/MNHHS%2520TPCH%2520Ref%2520v6_2%2520MD(1).rtf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/MNHHS TPCH Ref v6_2 MD(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 06:17:08',0),(68699,'2021-04-29 06:37:44','2021-04-29 06:37:44','c3af87e6-7cb7-4470-9709-a3b59b9c4717',1,'/content/Document/PD_ProgramSupportOfficer_150902.pdf','','66.249.68.29','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/PD_ProgramSupportOfficer_150902.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 06:37:44',0),(68700,'2021-04-29 06:38:01','2021-05-08 06:27:28','c02e43a8-e628-41f1-85f4-2d09f1d3ed43',1,'/events/managing-chronic-disease-in-rural-and-remote-communities-focus-on-ckd-plus-cvd-and-diabetes','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/managing-chronic-disease-in-rural-and-remote-communities-focus-on-ckd-plus-cvd-and-diabetes','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-08 06:27:28',0),(68701,'2021-04-29 06:58:05','2021-04-29 06:58:05','5ec48fa8-2005-4404-8e58-c5613600d5f5',1,'/page/news-and-events/events/upcoming/chronic-wound-care-seminar---tasmania/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/chronic-wound-care-seminar---tasmania','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 06:58:05',0),(68702,'2021-04-29 07:08:50','2021-04-30 19:41:54','5b239562-2b9e-4c0b-8d56-aaf976b8a3bc',1,'/jobs/gp-with-skin-cancer-interest-dpa-number-available-for-transfer','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/gp-with-skin-cancer-interest-dpa-number-available-for-transfer','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 19:41:54',0),(68703,'2021-04-29 07:11:38','2021-04-29 07:11:38','6c00e0a0-8350-4845-80e7-ffc8d60e0f22',1,'/page/about/careers/aged-care-officer-community-care/','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/about/careers/aged-care-officer-community-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 07:11:38',0),(68704,'2021-04-29 07:13:14','2021-04-29 07:13:14','64f873c6-e4cf-4b99-bf1a-0feba2d485a4',1,'/content/Document/MNHHS TPCH Referral PractiX v4_10.doc','http://www.brisbanenorthphn.org.au/content/Document/MNHHS%20TPCH%20Referral%20PractiX%20v4_10.doc','34.66.207.80','Go-http-client/1.1','Template not found: content/Document/MNHHS TPCH Referral PractiX v4_10.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 07:13:14',0),(68705,'2021-04-29 07:13:15','2021-04-29 07:13:15','019a16ff-0762-4096-886a-028e02c152bd',1,'/content/Image/News Images/2016-resources-banner.jpg','','173.252.127.116','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: content/Image/News Images/2016-resources-banner.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 07:13:15',0),(68706,'2021-04-29 07:25:57','2021-05-09 22:05:39','65182894-bab7-4e39-af81-761e4ff5623d',1,'/jobs/vr-gp-with-in-the-sunshine-coast-hinterland','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/vr-gp-with-in-the-sunshine-coast-hinterland','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 22:05:39',0),(68707,'2021-04-29 07:29:10','2021-05-05 07:09:07','c4a986b2-9c64-47be-9de0-19ead37937eb',1,'/page/news-and-events/latest-news/facilitating-access-for-aboriginal-and-torres-strait-islander-communities/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/latest-news/facilitating-access-for-aboriginal-and-torres-strait-islander-communities','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-05 07:09:07',0),(68708,'2021-04-29 07:29:11','2021-04-29 07:29:11','6ca4f73e-f5b7-4ea4-a5be-6702e217ee34',1,'/page/health-professionals/Local Positions Vacant/practice-nurse-required-the-infinity-group/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse-required-the-infinity-group','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 07:29:11',0),(68709,'2021-04-29 08:01:44','2021-05-16 14:50:24','259b8cc9-f04d-4057-af7b-b9e2ec12eee7',1,'/events/hepatitis-c-in-drug-and-alcohol-settings','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/hepatitis-c-in-drug-and-alcohol-settings','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 14:50:24',0),(68710,'2021-04-29 08:06:02','2021-05-18 18:40:14','65004224-9924-48b5-9b6f-86a1d4a6b6e2',1,'/page/community/Immunisation/phn-responds-to-anti-vax-misinformation','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/community/Immunisation/phn-responds-to-anti-vax-misinformation','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-18 18:40:14',0),(68711,'2021-04-29 08:15:49','2021-04-29 08:15:49','e97eecc9-cfa2-45d6-b079-96762c2c2790',1,'/page/news-and-events/latest-news/education-increases-confidence-in-chronic-wound-care','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/education-increases-confidence-in-chronic-wound-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 08:15:49',0),(68712,'2021-04-29 08:34:36','2021-05-17 17:46:39','0fa979ec-1ca3-4824-a55b-fe6888fabe05',1,'/page/news-and-events/events/upcoming/research-in-palliative-care/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/research-in-palliative-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 17:46:39',0),(68713,'2021-04-29 08:51:57','2021-05-17 12:10:56','1740ea60-877d-424d-8897-208368e891cd',1,'/page/health-professionals/mental-health-services/low-intensity-mental-health-services','http://brisbanenorthphn.org.au/page/health-professionals/mental-health-services/low-intensity-mental-health-services','35.210.147.198','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/health-professionals/mental-health-services/low-intensity-mental-health-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,14,'2021-05-17 12:10:56',0),(68714,'2021-04-29 09:13:49','2021-04-29 09:13:49','a61affcc-2f20-4a95-aa0a-193458ceb1d6',1,'/content/Document/FORM 4 - Notification of Approved Clinician Leave of Absence.docx','http://www.brisbanenorthphn.org.au/content/Document/FORM%204%20-%20Notification%20of%20Approved%20Clinician%20Leave%20of%20Absence.docx','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/FORM 4 - Notification of Approved Clinician Leave of Absence.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 09:13:49',0),(68715,'2021-04-29 09:30:10','2021-04-29 09:30:10','39fc5fcb-66bc-48dc-bfdf-6ada7616789f',1,'/content/Document/Network Link/Network Link_November_2018_WEB.pdf','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Network Link/Network Link_November_2018_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 09:30:10',0),(68716,'2021-04-29 09:36:17','2021-04-29 09:36:17','0c74f3a3-88f2-465e-bee9-56af09c743e3',1,'/content/Document/Templates/6.1/MNHHS%20Palliative%20Care%20Ref%20v6_1.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/MNHHS%2520Palliative%2520Care%2520Ref%2520v6_1.rtf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/MNHHS Palliative Care Ref v6_1.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 09:36:17',0),(68717,'2021-04-29 10:11:51','2021-04-29 10:11:51','9ef5bc50-7cfc-4fee-a65d-b78cd1e2c5b6',1,'/page/news-and-events/latest-news/copd-project-in-focus-for-lung-health-awareness','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/copd-project-in-focus-for-lung-health-awareness','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 10:11:51',0),(68718,'2021-04-29 10:34:21','2021-04-29 10:34:21','31c64e7a-8d30-4056-bce7-c64729302342',1,'/about/carebrisers-1','','49.198.243.197','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36 Edg/89.0.774.76','Template not found: about/carebrisers-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 10:34:21',0),(68719,'2021-04-29 11:22:24','2021-04-29 11:22:24','17460abc-ebb6-4eb7-a7cc-3a684c4f39d5',1,'/page/news-and-events/events/archive/crystal-clear---how-to-respond-effectively-to-methamphetamine-use/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/crystal-clear---how-to-respond-effectively-to-methamphetamine-use','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 11:22:24',0),(68720,'2021-04-29 11:46:31','2021-05-18 00:18:29','b4b19a28-9ce5-440c-9449-bed73e243623',1,'/page/news-and-events/events/upcoming/general-practice-essentials-series-chronic-disease-management-and-care-plans-using-telehealth-in-general-practice','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/general-practice-essentials-series-chronic-disease-management-and-care-plans-using-telehealth-in-general-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 00:18:29',0),(68721,'2021-04-29 11:51:42','2021-04-29 11:51:42','9c7b24be-24ec-4859-abc7-4c42de391bf9',1,'/content/Document/Templates/5.3/MNHHS%20RBWH%205_3%20MD%20.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%2520RBWH%25205_3%2520MD%2520.rtf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS RBWH 5_3 MD .rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 11:51:42',0),(68722,'2021-04-29 12:13:13','2021-04-29 12:13:13','ab3f307a-5cbe-476d-94ea-6b083b4568d7',1,'/content/Image/Logos/NBPIR_logo_RGB.jpg','','69.171.249.24','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: content/Image/Logos/NBPIR_logo_RGB.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 12:13:13',0),(68723,'2021-04-29 14:08:20','2021-05-15 03:01:01','715f419d-a956-468d-a544-7b40a203f091',1,'/jobs/medical-receptionist','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/medical-receptionist','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-15 03:01:01',0),(68724,'2021-04-29 14:54:04','2021-05-09 14:19:28','2f5edfc4-9fe7-4db4-92bd-db187cae4f79',1,'/content/Document/Templates/4.6/MNHHS Cab Ref ZM 4_6.rtf','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.6/MNHHS Cab Ref ZM 4_6.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-09 14:19:28',0),(68725,'2021-04-29 15:08:53','2021-04-29 15:08:53','33c07d08-a2f5-4dce-861e-86bf21ee95a8',1,'/page/news-and-events/events/upcoming/hepatitis-c-in-drug-and-alcohol-settings-education-program/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/hepatitis-c-in-drug-and-alcohol-settings-education-program','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 15:08:53',0),(68726,'2021-04-29 15:30:54','2021-05-13 16:08:31','6c69c454-f3b2-4f29-89fb-d513562c7179',1,'/research-survey/primary-care-practice-viability-survey','','66.249.66.212','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: research-survey/primary-care-practice-viability-survey','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-13 16:08:31',0),(68727,'2021-04-29 15:35:04','2021-05-16 08:01:07','6d1d77d5-6133-4031-9b94-3f0b3497b2e2',1,'/page/news-and-events/events/upcoming/gastroenterology-and-urology---august-gp-education-evening','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/gastroenterology-and-urology---august-gp-education-evening','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 08:01:07',0),(68728,'2021-04-29 15:39:32','2021-05-10 04:49:26','821b8028-ae7b-431a-aa7a-e35365be0938',1,'/page/news-and-events/events/upcoming/hot-topics-gp-update-course-2019/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/hot-topics-gp-update-course-2019','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 04:49:26',0),(68729,'2021-04-29 15:43:22','2021-05-03 18:46:02','0bc30f66-561c-4574-92d4-fac9fd8a4ce7',1,'/content/Document/FORM 2 - Application for Group Therapy Program(3).docx','http://www.brisbanenorthphn.org.au/content/Document/FORM%202%20-%20Application%20for%20Group%20Therapy%20Program(3).docx','34.94.135.136','Go-http-client/1.1','Template not found: content/Document/FORM 2 - Application for Group Therapy Program(3).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-03 18:46:02',0),(68730,'2021-04-29 15:46:01','2021-05-04 10:58:36','668c6494-bbb8-46d5-a27c-f47d54bde1ff',1,'/jobs/practice-manager-medical-centre-full-time-part-time','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/practice-manager-medical-centre-full-time-part-time','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-04 10:58:36',0),(68731,'2021-04-29 15:50:03','2021-05-11 01:35:19','74d3c00d-34e3-4816-becd-9167e2a6ca85',1,'/content/Document/Templates/6.1/MNHHS Palliative v6_1.rtf','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/6.1/MNHHS Palliative v6_1.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 01:35:19',0),(68732,'2021-04-29 15:58:14','2021-04-29 15:58:14','9bfc808a-59f9-4812-8e07-55976deddd30',1,'/oeache.php','','192.227.180.99','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36','Template not found: oeache.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 15:58:14',0),(68733,'2021-04-29 15:58:14','2021-04-29 15:58:14','8da4090e-b2ea-40d6-a1a7-5585e69bffb2',1,'/wp-admin/oeache.php','','192.3.180.214','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36','Template not found: wp-admin/oeache.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 15:58:14',0),(68734,'2021-04-29 16:02:14','2021-04-30 18:56:40','7264547f-38c6-4f3b-bdf3-99550e2fdf8e',1,'/content/Document/invitation - GP Orthopaedic Workshop 30 August 2016.pdf','http://www.brisbanenorthphn.org.au/content/Document/invitation%20-%20GP%20Orthopaedic%20Workshop%2030%20August%202016.pdf','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/invitation - GP Orthopaedic Workshop 30 August 2016.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 18:56:40',0),(68735,'2021-04-29 16:26:48','2021-05-18 09:03:15','5e529f05-a53f-4562-afbf-62b2df7a1f36',1,'/content/Image/Page Banners/Banner_page_myhealthrecordgeneral.jpg','','74.125.209.23','Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)','Template not found: content/Image/Page Banners/Banner_page_myhealthrecordgeneral.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 09:03:15',0),(68736,'2021-04-29 16:26:48','2021-05-16 12:15:21','bd983b04-b61f-4c1e-9747-4f565b2493df',1,'/content/Image/News Images/My_Health_Record_inline_banner.png','','74.125.209.21','Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)','Template not found: content/Image/News Images/My_Health_Record_inline_banner.png','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 12:15:21',0),(68737,'2021-04-29 16:30:26','2021-05-08 03:27:06','bfcfdd3e-1400-4303-9e47-70d8d3f12936',1,'/page/publications/partners-in-health/partners-in-health-february-2017/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/publications/partners-in-health/partners-in-health-february-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-08 03:27:06',0),(68738,'2021-04-29 16:54:34','2021-05-18 19:39:48','b96b59df-c081-4476-b4b7-ec2f4a8eff0f',1,'/jobs/practice-nurse-opportunity','','185.191.171.36','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)','Template not found: jobs/practice-nurse-opportunity','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,41,'2021-05-18 19:39:48',0),(68739,'2021-04-29 17:04:14','2021-04-29 17:04:14','6995f157-10f7-47c4-b402-61e39be96c79',1,'/content/Document/FAQs%20_%20New%20Brisbane%20MIND%20Software%20181011(1).pdf','http://www.brisbanenorthphn.org.au/content/Document/FAQs%2520_%2520New%2520Brisbane%2520MIND%2520Software%2520181011(1).pdf','34.121.182.57','Go-http-client/1.1','Template not found: content/Document/FAQs _ New Brisbane MIND Software 181011(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 17:04:14',0),(68740,'2021-04-29 17:19:23','2021-04-29 17:19:23','f15bd842-e2dd-4478-b545-b5b2f3f60d19',1,'/page/news-and-events/latest-news/new-opportunities-to-enrol-in-medical-assisting-studies','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/new-opportunities-to-enrol-in-medical-assisting-studies','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 17:19:23',0),(68741,'2021-04-29 17:24:48','2021-04-29 17:24:48','089c466e-0770-4bea-92ef-ddcbfb1716d6',1,'/content/Document/Templates/4.12/ZM v4.12/MNHHS RBWH Referral ZM v4_12.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.12/ZM%20v4.12/MNHHS%20RBWH%20Referral%20ZM%20v4_12.rtf','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/Templates/4.12/ZM v4.12/MNHHS RBWH Referral ZM v4_12.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 17:24:48',0),(68742,'2021-04-29 17:42:02','2021-05-15 22:03:28','acb06dbb-7ec2-4364-9d14-fa626382923c',1,'/page/about/careers/clinical-nurse-team-care-coordination','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/careers/clinical-nurse-team-care-coordination','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 22:03:28',0),(68743,'2021-04-29 17:42:19','2021-04-29 17:42:19','56f59c84-6071-4726-a9b2-9a3ffff6129f',1,'/assets/admin/plugins/jQuery-File-Upload/server/php/index.php','http://www.google.com/','23.228.109.147','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2896.3 Safari/537.36','Template not found: assets/admin/plugins/jQuery-File-Upload/server/php/index.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 17:42:19',0),(68744,'2021-04-29 18:04:27','2021-05-12 06:47:16','7982d472-d636-4a8c-8bee-a876c66ebc9c',1,'/content/Document/Templates/5.3/MNHHS Caboolture Referral v5_3 ZM.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%20Caboolture%20Referral%20v5_3%20ZM.rtf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS Caboolture Referral v5_3 ZM.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 06:47:16',0),(68745,'2021-04-29 18:07:50','2021-05-03 04:24:29','a28192b3-1a0d-458c-9e23-9ac0faec1839',1,'/content/Document/Events/2017/Supportive care flyer.pdf','','66.249.68.31','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Events/2017/Supportive care flyer.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-03 04:24:29',0),(68746,'2021-04-29 18:39:32','2021-04-29 18:39:32','bed4b843-6eb9-4bb6-9b23-b184d6bf5587',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---samford/','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---samford','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 18:39:32',0),(68747,'2021-04-29 19:33:09','2021-05-06 22:18:06','e5ad197d-dd56-4a0d-abb1-c8123b3d3371',1,'/content/Document/Events/2018/Dealing with Anxiety Disorders March 2018_Brisbane(1).pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2018/Dealing%20with%20Anxiety%20Disorders%20March%202018_Brisbane(1).pdf','35.185.207.84','Go-http-client/1.1','Template not found: content/Document/Events/2018/Dealing with Anxiety Disorders March 2018_Brisbane(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 22:18:06',0),(68748,'2021-04-29 20:17:11','2021-05-10 06:34:42','ff90d4c8-03d3-49de-9291-8049172d7f47',1,'/content/Document/FORM 4 - Notification of Approved Clinician Leave of Absence(1).docx','http://www.brisbanenorthphn.org.au/content/Document/FORM%204%20-%20Notification%20of%20Approved%20Clinician%20Leave%20of%20Absence(1).docx','35.233.203.41','Go-http-client/1.1','Template not found: content/Document/FORM 4 - Notification of Approved Clinician Leave of Absence(1).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 06:34:42',0),(68749,'2021-04-29 20:22:41','2021-05-18 23:40:12','e1e1ae9b-e655-4150-89c8-d229711c72fb',1,'/jobs/medical-centre-receptionist-part-time-casual','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/medical-centre-receptionist-part-time-casual','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-18 23:40:12',0),(68750,'2021-04-29 20:25:14','2021-05-07 11:59:17','7e200c98-478d-4c0f-bf22-4b5ffd813172',1,'/page/health-professionals/Local Positions Vacant/general-practice-staff---midway-medical-centre/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/general-practice-staff---midway-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 11:59:17',0),(68751,'2021-04-29 20:28:37','2021-04-29 20:28:37','925982b6-0583-45db-ac19-e50596d9bbcb',1,'/page/news-and-events/events/upcoming/moving-care-from-hospital-to-community---navigating-the-bumps/','','66.249.68.7','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/moving-care-from-hospital-to-community---navigating-the-bumps','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 20:28:37',0),(68752,'2021-04-29 20:29:05','2021-04-29 20:29:05','91c61bdd-bb43-4cbd-ab4f-9ed182d30556',1,'/content/Document/MNHHS Redcliffe Referral BP v4_11(1).rtf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/MNHHS Redcliffe Referral BP v4_11(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 20:29:05',0),(68753,'2021-04-29 20:46:14','2021-04-29 20:46:14','4827e866-7993-48c6-958e-9238e7c3dd1d',1,'/content/Document/Templates/5.3/MNHHS%20Redcliffe%20Hospital%205_3%20BP%20.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%2520Redcliffe%2520Hospital%25205_3%2520BP%2520.rtf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS Redcliffe Hospital 5_3 BP .rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 20:46:14',0),(68754,'2021-04-29 21:17:31','2021-05-16 19:19:53','b703cd7d-5b6b-454d-aaa3-b6d5c90a8af1',1,'/page/news-and-events/events/upcoming/rural-emergency-obstetrics-training','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/rural-emergency-obstetrics-training','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 19:19:53',0),(68755,'2021-04-29 21:30:06','2021-04-29 21:30:06','1e0bdf06-8af4-4635-a79c-340923ea3b3d',1,'/content/Document/Templates/TCC/2017/Team%20Care%20Coordination%20eReferral%20MD%2022_08_17.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/TCC/2017/Team%2520Care%2520Coordination%2520eReferral%2520MD%252022_08_17.rtf','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/Templates/TCC/2017/Team Care Coordination eReferral MD 22_08_17.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 21:30:06',0),(68756,'2021-04-29 21:31:55','2021-05-15 03:13:26','4747d6f3-f674-441d-8600-b5bf6de5b5cd',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---newmarket/','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---newmarket','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 03:13:26',0),(68757,'2021-04-29 21:48:08','2021-05-05 07:18:24','b1706ce7-fd25-47ad-887e-bfa9f24f444f',1,'/content/Document/Events/2018/Booking Form MN Smoking Cessation Workshop 26 April 2018.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2018/Booking%20Form%20MN%20Smoking%20Cessation%20Workshop%2026%20April%202018.pdf','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/Events/2018/Booking Form MN Smoking Cessation Workshop 26 April 2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-05 07:18:24',0),(68758,'2021-04-29 21:55:39','2021-05-11 08:16:40','3f8ccdd9-d9bc-4113-a9cb-7a516a1202b9',1,'/content/Document/South Brisbane GP Education Invitation - 8 March.pdf','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/South Brisbane GP Education Invitation - 8 March.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-11 08:16:40',0),(68759,'2021-04-29 22:18:22','2021-04-29 22:18:22','847a07d6-42d7-4e57-8e14-c5bfbc78c10a',1,'/jobs/dist/swiper.js','','40.77.167.30','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','Template not found: jobs/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 22:18:22',0),(68760,'2021-04-29 22:25:39','2021-05-05 06:37:22','1c66638b-9d09-4e47-b984-9ff0ba9ce46e',1,'/page/health-professionals/mental-health-services/brisbane-mind/information-for-providers/redicase-information/','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/mental-health-services/brisbane-mind/information-for-providers/redicase-information','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-05 06:37:22',0),(68761,'2021-04-29 22:44:58','2021-04-29 22:44:58','419f3895-14dd-4a61-b348-534cdb27204e',1,'/tel:07 3378 1600','https://www.google.com/','35.247.42.40','Mozilla/5.0 (Linux; U; Android 4.3; en-us; SM-N900T Build/JSS15J) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30','Template not found: tel:07 3378 1600','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 22:44:58',0),(68762,'2021-04-29 22:57:43','2021-04-29 22:57:43','159296a3-bed0-46dd-9360-9bef4c44ec3f',1,'/content/Document/FIN_ITC AAWP_180613 WEB.docx','http://www.brisbanenorthphn.org.au/content/Document/FIN_ITC%20AAWP_180613%20WEB.docx','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/FIN_ITC AAWP_180613 WEB.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 22:57:43',0),(68763,'2021-04-29 23:18:15','2021-04-29 23:18:15','e33bdebd-be65-4cc2-b34e-5580a734dddc',1,'/page/news-and-events/events/archive/diabetes-management-for-health-professionals/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/diabetes-management-for-health-professionals','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 23:18:15',0),(68764,'2021-04-29 23:44:39','2021-04-29 23:44:39','aeacb52f-7687-4192-9211-a764839d4ca3',1,'/events/function-based-behavioural-interventions-for-sleep-problems-in-children-with-developmental-disabilities','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/function-based-behavioural-interventions-for-sleep-problems-in-children-with-developmental-disabilities','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 23:44:39',0),(68765,'2021-04-29 23:46:31','2021-04-29 23:46:31','d0f370d2-85e0-4c60-997a-96c094be6cb7',1,'/disclaimer/anytimehealthadvice','','66.249.79.146','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: disclaimer/anytimehealthadvice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-29 23:46:31',0),(68766,'2021-04-29 23:54:06','2021-05-15 16:23:22','8100968e-9b95-42ae-a9b2-2ccf41a507dc',1,'/jobs/registered-nurse-practice-nurse','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/registered-nurse-practice-nurse','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-15 16:23:22',0),(68767,'2021-04-30 00:27:08','2021-05-05 19:40:28','1e9eeb26-9447-4022-ae04-75a8923e59a9',1,'/position-type/nurse-practitioner','','66.249.79.150','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: position-type/nurse-practitioner','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-05 19:40:28',0),(68768,'2021-04-30 00:30:33','2021-04-30 00:30:36','0cb5019b-4868-41d2-8ad2-bf7fcdce00e3',1,'/content/Document/Events/2019/Metro%20North%20Health%20Forum/','','49.197.48.130','Microsoft Office Word/2.44.1211 (iOS/14.4.2; Phone; en-GB; AppStore; Apple/iPhone12,1)','Template not found: content/Document/Events/2019/Metro North Health Forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 00:30:36',0),(68769,'2021-04-30 00:30:34','2021-05-07 10:56:14','8526a3d6-2073-4e7f-b5d3-cec6000c1206',1,'/content/Document/Events/2019/Metro%20North%20Health%20Forum/Registration%20form%20-%20Metro%20North%20Health%20Forum%202019(1).docx','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/Metro%2520North%2520Health%2520Forum/Registration%2520form%2520-%2520Metro%2520North%2520Health%2520Forum%25202019(1).docx','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/Events/2019/Metro North Health Forum/Registration form - Metro North Health Forum 2019(1).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-07 10:56:14',0),(68770,'2021-04-30 00:30:35','2021-05-01 00:32:56','98fdabaf-135e-4960-b4b2-17b3f75cc4c3',1,'/content/Document/Events/2019/Metro North Health Forum/','','49.197.48.130','Microsoft Office Word/2.44.1211 (iOS/14.4.2; Phone; en-GB; AppStore; Apple/iPhone12,1)','Template not found: content/Document/Events/2019/Metro North Health Forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-01 00:32:56',0),(68771,'2021-04-30 00:53:42','2021-04-30 00:53:42','f09d7f13-2b8d-4774-80be-0714167d937d',1,'/content/Document/Primary%20care%20liaison/MNHHS%20Community%20and%20Oral%20Health%20Directorate%20Ref%20v6_2%20ZM.rtf','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/MNHHS%2520Community%2520and%2520Oral%2520Health%2520Directorate%2520Ref%2520v6_2%2520ZM.rtf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/MNHHS Community and Oral Health Directorate Ref v6_2 ZM.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 00:53:42',0),(68772,'2021-04-30 00:55:16','2021-04-30 00:55:16','64835c9d-8e6c-4a09-84fb-9237a37990b6',1,'/content/Document/Templates/4.3/MNHHS Redcliffe Referral PractiX v4.3.doc','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.3/MNHHS Redcliffe Referral PractiX v4.3.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 00:55:16',0),(68773,'2021-04-30 01:47:14','2021-04-30 01:47:14','02ef7589-c7ca-409c-abe4-acff92996975',1,'/content/Document/Events/ASHM Hepatitis C New Treatments course.pdf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/ASHM Hepatitis C New Treatments course.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 01:47:14',0),(68774,'2021-04-30 01:49:09','2021-05-14 03:39:34','583be58c-8b84-4e3f-a9f0-c3dbb932d415',1,'/page/home/style-guide/document-listing/test-doc-1','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/style-guide/document-listing/test-doc-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 03:39:34',0),(68775,'2021-04-30 01:55:21','2021-05-18 04:30:56','a8d4516f-f7c7-4c8e-a934-e39402d5a8e7',1,'/page/about/commissioning','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/commissioning','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 04:30:56',0),(68776,'2021-04-30 01:57:04','2021-04-30 01:57:04','604a2cc6-7c31-474f-b396-e99568b72ba5',1,'/page/wp-login.php','','193.142.146.42','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','Template not found: page/wp-login.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 01:57:04',0),(68777,'2021-04-30 01:59:08','2021-04-30 01:59:08','82da9fc7-53db-464d-910d-a7b2985f1bef',1,'/content/Document/Templates/5.2/MNHHS Maternity Referral v5_2 BP.rtf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/5.2/MNHHS Maternity Referral v5_2 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 01:59:08',0),(68778,'2021-04-30 02:12:23','2021-05-11 20:33:50','dd1677f7-a8c0-481c-9ccb-7dbc75f4defe',1,'/page/news-and-events/latest-news/bushfire-information-for-health-professionals','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/bushfire-information-for-health-professionals','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 20:33:50',0),(68779,'2021-04-30 02:18:18','2021-05-12 23:43:09','b152aaa1-40e0-41b8-b6ea-693c17014158',1,'/jobs/vr-gp-skin-cancer-clinic-in-taigum-north-brisbane','','17.121.112.49','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','Template not found: jobs/vr-gp-skin-cancer-clinic-in-taigum-north-brisbane','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-12 23:43:09',0),(68780,'2021-04-30 02:28:57','2021-05-04 11:21:49','841bd321-0886-4130-b44f-dcbfe0880cf3',1,'/page/news-and-events/events/upcoming/safeguarding-yourself---recognising-and-responding-to-vicarious-trauma/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/safeguarding-yourself---recognising-and-responding-to-vicarious-trauma','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-04 11:21:49',0),(68781,'2021-04-30 02:30:28','2021-05-14 10:45:30','556b66ba-1653-427f-a87a-7806f06d4be4',1,'/jobs/general-practitioner-morayfield-qld','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/general-practitioner-morayfield-qld','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-14 10:45:30',0),(68782,'2021-04-30 02:52:12','2021-05-18 04:57:15','048a1c0d-a6ad-4d9f-9ead-349dc48b97c0',1,'/page/news-and-events/events/upcoming/maternity-workshop---save-the-date','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/maternity-workshop---save-the-date','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 04:57:15',0),(68783,'2021-04-30 02:56:06','2021-05-02 20:59:20','69aa1ecf-0994-454f-8918-252c2157e22d',1,'/page/health-professionals/mental-health-services/partners-in-recovery','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/partners-in-recovery','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-02 20:59:20',0),(68784,'2021-04-30 03:02:11','2021-04-30 03:02:11','3ba5d070-01e2-40ea-a20b-203924db668c',1,'/content/Document/Events/2018/Redcliffe%20Sector%20Consultation%20Workshop.pdf','','91.104.167.15','ReactorNetty/1.0.3','Template not found: content/Document/Events/2018/Redcliffe Sector Consultation Workshop.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 03:02:11',0),(68785,'2021-04-30 03:02:11','2021-04-30 03:02:11','9cb6f59d-ce42-469e-a221-56649fbf4833',1,'/content/Document/Events/2018/Redcliffe%20Lived%20Experience%20Workshop.pdf','','91.104.167.15','ReactorNetty/1.0.3','Template not found: content/Document/Events/2018/Redcliffe Lived Experience Workshop.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 03:02:11',0),(68786,'2021-04-30 03:02:57','2021-04-30 03:02:57','7db25aae-d57a-41e0-b0b0-a2003708d057',1,'/page/publications/partners-in-health/partners-in-health-may-2018','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/partners-in-health-may-2018','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 03:02:57',0),(68787,'2021-04-30 03:06:28','2021-05-12 18:54:04','5dce6361-c523-4e9d-a553-e58fddc77456',1,'/page/news-and-events/events/upcoming/common-challenges-in-primary-care-education-series-–-community-health-–-a-gp’s-guide','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/common-challenges-in-primary-care-education-series-–-community-health-–-a-gp’s-guide','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 18:54:04',0),(68788,'2021-04-30 03:08:34','2021-05-16 04:40:31','9c9189f9-6af4-478d-8572-1d14a69b4cde',1,'/events/free-webinar-medicinal-cannabis-the-what-the-why-and-the-how','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/free-webinar-medicinal-cannabis-the-what-the-why-and-the-how','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 04:40:31',0),(68789,'2021-04-30 03:15:13','2021-04-30 03:15:31','0e581234-b538-4fb8-949e-a35b9a7d72a1',1,'/page/health-professionals/digital-...','','185.191.171.4','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)','Template not found: page/health-professionals/digital-...','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 03:15:31',0),(68790,'2021-04-30 03:26:58','2021-05-04 06:03:46','39c8f2e3-5463-4ae2-be9a-27289f3d176d',1,'/news/cHJvamVjdC','','20.53.76.223','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','Template not found: news/cHJvamVjdC','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-04 06:03:46',0),(68791,'2021-04-30 03:26:58','2021-05-04 06:03:45','55a5fc38-26f1-4ee8-8573-963052b22b5d',1,'/our-programs/mental-health-services/c3VpY2lkZS','','20.53.76.223','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','Template not found: our-programs/mental-health-services/c3VpY2lkZS','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-04 06:03:45',0),(68792,'2021-04-30 03:48:15','2021-04-30 03:48:15','c5012dea-8040-4de6-9700-81bd3edb1460',1,'/tel:07 3367 0333','https://www.google.com/','34.82.65.87','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','Template not found: tel:07 3367 0333','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 03:48:15',0),(68793,'2021-04-30 04:07:21','2021-05-17 04:14:22','b89ac18f-cb42-4500-9326-f4f02dede1ea',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---bracken-ridge','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---bracken-ridge','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 04:14:22',0),(68794,'2021-04-30 04:10:35','2021-05-18 02:29:07','33abfaab-a79b-466b-b85f-67670333b748',1,'/events/ndis-and-psychosocial-disability-quality-and-safety-forum','','66.249.79.146','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: events/ndis-and-psychosocial-disability-quality-and-safety-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,29,'2021-05-18 02:29:07',0),(68795,'2021-04-30 04:11:40','2021-04-30 04:11:40','25eeee77-e578-47e5-80f8-d7b714c5e097',1,'/page/news-and-events/events/upcoming/use-of-my-health-record-in-acute-settings-for-hospital-pharmacy/','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/use-of-my-health-record-in-acute-settings-for-hospital-pharmacy','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 04:11:40',0),(68796,'2021-04-30 04:40:59','2021-05-01 23:26:33','d76d03c8-1621-434d-ba7f-659ac8baeb1c',1,'/page/news-and-events/events/upcoming/gp-cpd---adolescent-pain-and-rehabilitation/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/gp-cpd---adolescent-pain-and-rehabilitation','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 23:26:33',0),(68797,'2021-04-30 04:58:31','2021-05-09 13:24:45','c5348d9f-83c2-4065-ab8a-7f7d8c244fa7',1,'/content/Document/To Share/INFO_Brisbane North PHN Visitors_200121-web.pdf','','66.249.64.33','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/To Share/INFO_Brisbane North PHN Visitors_200121-web.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 13:24:45',0),(68798,'2021-04-30 05:08:41','2021-05-12 23:06:30','141ffd8d-ef1b-4a75-b3fe-ef70bacd854f',1,'/jobs/vr-gp-needed-immediate-start-at-elysian-medical-centre-full-time-or-part-time-available','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/vr-gp-needed-immediate-start-at-elysian-medical-centre-full-time-or-part-time-available','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-12 23:06:30',0),(68799,'2021-04-30 05:12:35','2021-05-15 18:37:46','65acddcb-2706-4d32-807b-63d23034497f',1,'/page/health-professionals/Local Positions Vacant/practice-manager---banyo','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-manager---banyo','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 18:37:46',0),(68800,'2021-04-30 05:14:04','2021-04-30 05:14:04','c48095d1-eada-4942-8587-95a5479a33c9',1,'/content/Document/Pathways/OSiP Direct Referral Catch','','103.87.254.78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','Template not found: content/Document/Pathways/OSiP Direct Referral Catch','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 05:14:04',0),(68801,'2021-04-30 05:25:04','2021-04-30 05:25:04','27b98026-cfef-42e9-9eed-117fd25aef85',1,'/page/news-and-events/events/archive/advanced-care-planning-workshop-lutwyche/','','40.77.167.36','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/advanced-care-planning-workshop-lutwyche','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 05:25:04',0),(68802,'2021-04-30 05:43:52','2021-04-30 05:43:52','bba747fb-29da-4bc2-aa72-e23599f66563',1,'/page/news-and-events/events/upcoming/reach-facilitator-training','http://brisbanenorthphn.org.au/page/news-and-events/events/upcoming/reach-facilitator-training','35.210.193.191','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/events/upcoming/reach-facilitator-training','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 05:43:52',0),(68803,'2021-04-30 06:07:23','2021-04-30 06:07:23','f35a6e69-6b01-4549-968b-df700f447d24',1,'/page/news-and-events/latest-news/epip-deadline-extended/','','40.77.167.30','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/epip-deadline-extended','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 06:07:23',0),(68804,'2021-04-30 06:26:38','2021-05-06 12:22:53','d557cb33-1a64-4f37-9ee6-23237020dd63',1,'/events/corrections-webinar-opportunities-and-solutions-for-hcv-care-in-custodial-settings','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/corrections-webinar-opportunities-and-solutions-for-hcv-care-in-custodial-settings','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-06 12:22:53',0),(68805,'2021-04-30 06:39:43','2021-04-30 06:39:43','cbcb5d63-4649-4445-9275-6034dfa76139',1,'/content/Document/Events/2016 registration form[2].doc','http://www.brisbanenorthphn.org.au/content/Document/Events/2016%20registration%20form[2].doc','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/Events/2016 registration form[2].doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 06:39:43',0),(68806,'2021-04-30 06:41:49','2021-05-14 15:25:03','06d63071-d6b5-468a-a848-97a515a2a92b',1,'/jobs/experienced-medical-receptionist-2','','54.36.148.207','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)','Template not found: jobs/experienced-medical-receptionist-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-14 15:25:03',0),(68807,'2021-04-30 06:49:02','2021-04-30 06:49:02','a69346d1-79a4-4fce-bbf9-cc87da694293',1,'/page/news-and-events/events/upcoming/outbreak-management-in-residential-aged-care---how-prepared-are-you','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/outbreak-management-in-residential-aged-care---how-prepared-are-you','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 06:49:02',0),(68808,'2021-04-30 07:03:04','2021-04-30 07:03:04','f9ee6f24-cc61-4081-bd36-b7923df37f59',1,'/page/news-and-events/events/upcoming/medications-for-mood-and-other-mental-health-issues-understanding-medications-and-how-they-are-used-to-treat-various-mental-health-conditions/','http://brisbanenorthphn.org.au/page/news-and-events/events/upcoming/medications-for-mood-and-other-mental-health-issues-understanding-medications-and-how-they-are-used-to-treat-various-mental-health-conditions/','35.210.146.110','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/events/upcoming/medications-for-mood-and-other-mental-health-issues-understanding-medications-and-how-they-are-used-to-treat-various-mental-health-conditions','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 07:03:04',0),(68809,'2021-04-30 07:05:34','2021-04-30 08:46:39','6b847320-d290-44be-845e-73ce74ba9098',1,'/page/news-and-events/latest-news/local-providers-witness-positive-effects-of-lifestyle-campaign','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/local-providers-witness-positive-effects-of-lifestyle-campaign','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 08:46:39',0),(68810,'2021-04-30 07:18:01','2021-04-30 07:18:01','324bdd9b-9f24-4bc1-8464-bbb0835d9dc9',1,'/content/Document/MNHHS Cab Referral PractiX v4_11(2).doc','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/MNHHS Cab Referral PractiX v4_11(2).doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 07:18:01',0),(68811,'2021-04-30 07:21:36','2021-04-30 07:21:36','0a053100-2454-4998-be7e-3c92995b306b',1,'/page/news-and-events/events/upcoming/cardiac-arrhythmias-course','http://brisbanenorthphn.org.au/page/news-and-events/events/upcoming/cardiac-arrhythmias-course','35.210.220.237','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/events/upcoming/cardiac-arrhythmias-course','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 07:21:36',0),(68812,'2021-04-30 07:30:31','2021-05-06 17:06:28','ed61bc24-2106-4b8c-93f3-88d6263a184b',1,'/content/Document/Templates/4.12/PractiX v4.12/MNHHS Cab Referral PractiX v4_12.doc','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.12/PractiX%20v4.12/MNHHS%20Cab%20Referral%20PractiX%20v4_12.doc','34.121.182.57','Go-http-client/1.1','Template not found: content/Document/Templates/4.12/PractiX v4.12/MNHHS Cab Referral PractiX v4_12.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 17:06:28',0),(68813,'2021-04-30 07:36:16','2021-04-30 07:36:16','3a4512bf-59bf-43d7-a5e9-5b6609c09fb4',1,'/content/Document/Health alerts/20200128_Health alert_Novel Coronavirus.pdf','http://www.brisbanenorthphn.org.au/content/Document/Health%20alerts/20200128_Health%20alert_Novel%20Coronavirus.pdf','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/Health alerts/20200128_Health alert_Novel Coronavirus.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 07:36:16',0),(68814,'2021-04-30 07:50:17','2021-04-30 07:50:17','e7cf1402-3b0b-4acc-990c-7b5bd9d00a6a',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/brisbane-mind-information-for-referrers/alternative-mental-health-services','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services/brisbane-mind-information-for-referrers/alternative-mental-health-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 07:50:17',0),(68815,'2021-04-30 08:07:33','2021-05-15 21:30:58','c6a9b744-065d-46b0-9568-37a4bfc455df',1,'/events/end-of-life-special-interest-group','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/end-of-life-special-interest-group','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-15 21:30:58',0),(68816,'2021-04-30 08:21:34','2021-05-12 01:52:51','4c3c9cba-20b4-49b2-82ab-6ae5e21f6421',1,'/page/news-and-events/events/upcoming/kidney-supportive-care-master-class','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/kidney-supportive-care-master-class','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 01:52:51',0),(68817,'2021-04-30 08:29:48','2021-04-30 09:57:02','4290a65c-db7c-4c2f-b211-fa32b13d0759',1,'/content/Document/Events/2018/Refugee Health and Wellbeing Showcase.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2018/Refugee%20Health%20and%20Wellbeing%20Showcase.pdf','34.94.135.136','Go-http-client/1.1','Template not found: content/Document/Events/2018/Refugee Health and Wellbeing Showcase.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-04-30 09:57:02',0),(68818,'2021-04-30 08:54:07','2021-04-30 08:54:07','2fbed7f4-facb-42e7-b72e-3ddff8b33b7c',1,'/page/news-and-events/events/upcoming/communication-and-dementia/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/communication-and-dementia','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 08:54:07',0),(68819,'2021-04-30 09:13:15','2021-05-06 03:53:58','2fbbd17e-9d8e-481d-9eb7-449bcb06dd52',1,'/content/Document/Pathways/INF_1908_GPLO%20Info%20Sheet_PRINT.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/INF_1908_GPLO%2520Info%2520Sheet_PRINT.pdf','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/Pathways/INF_1908_GPLO Info Sheet_PRINT.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 03:53:58',0),(68820,'2021-04-30 09:20:37','2021-05-18 18:33:14','4fd96bfd-f720-4bfa-af22-70c335f1cf91',1,'/page/news-and-events/events/archive/ndis-and-mental-health','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/ndis-and-mental-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 18:33:14',0),(68821,'2021-04-30 09:25:42','2021-04-30 09:25:42','083a5a5a-83a0-4b29-ac08-aa6c38e626e3',1,'/content/Document/Events/2019/INVITATION - Fracture management for GPs_March 2019-2.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/INVITATION%20-%20Fracture%20management%20for%20GPs_March%202019-2.pdf','35.186.188.225','Go-http-client/1.1','Template not found: content/Document/Events/2019/INVITATION - Fracture management for GPs_March 2019-2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 09:25:42',0),(68822,'2021-04-30 09:29:02','2021-04-30 09:29:02','10128b0f-c8d8-42c1-b9f7-64d090757b79',1,'/content/Document/Templates/APPLIC%2002%202016.pdf','http://www.brisbanenorthphn.org.au/content/Document/Templates/APPLIC%252002%25202016.pdf','104.198.141.65','Go-http-client/1.1','Template not found: content/Document/Templates/APPLIC 02 2016.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 09:29:02',0),(68823,'2021-04-30 09:48:46','2021-05-02 11:25:00','cd0c840c-b928-4785-8804-4fcca13f482c',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-required---bracken-ridge-family-practice/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-required---bracken-ridge-family-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-02 11:25:00',0),(68824,'2021-04-30 09:49:02','2021-04-30 09:49:02','f96ec221-70b1-49e6-a47c-087e63610f0c',1,'/page/health-professionals/Local Positions Vacant/rn-required---woody-point-medical-centre/','','66.249.68.29','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/rn-required---woody-point-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 09:49:02',0),(68825,'2021-04-30 10:00:51','2021-04-30 10:00:51','a4fa76ba-59be-40aa-984b-70182366dd0b',1,'/content/Document/Templates/4.6/MNHHS Palliative Ref ZM 4_6.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.6/MNHHS%20Palliative%20Ref%20ZM%204_6.rtf','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/Templates/4.6/MNHHS Palliative Ref ZM 4_6.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 10:00:51',0),(68826,'2021-04-30 10:05:08','2021-04-30 10:05:08','03e42df7-09b0-46f8-b2e7-a6e0a0467d09',1,'/content/Document/Primary%20care%20liaison/MNHHS%20TPCH%20Ref%20v6_2%20ZM.rtf','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/MNHHS%2520TPCH%2520Ref%2520v6_2%2520ZM.rtf','34.122.162.36','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/MNHHS TPCH Ref v6_2 ZM.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 10:05:08',0),(68827,'2021-04-30 10:34:27','2021-04-30 10:34:27','fa7dfa70-4837-4974-af49-729e840a3096',1,'/page/news-and-events/latest-news/members-appointed-to-clinical-council-and-community-advisory-committee/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/members-appointed-to-clinical-council-and-community-advisory-committee','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 10:34:27',0),(68828,'2021-04-30 10:40:39','2021-05-06 05:21:51','289ea6c3-fab3-4646-a1f4-341f446cec6e',1,'/content/Document/Planning/Brisbane%20North%20PHN%20health%20priorities%202018-19_FINAL.pdf','http://www.brisbanenorthphn.org.au/content/Document/Planning/Brisbane%2520North%2520PHN%2520health%2520priorities%25202018-19_FINAL.pdf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Planning/Brisbane North PHN health priorities 2018-19_FINAL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 05:21:51',0),(68829,'2021-04-30 11:01:24','2021-05-06 05:39:22','68c438da-41f4-4b23-8865-075bf81d96d3',1,'/content/Document/From%20Qld%20Health/Funded%20influenza%20vaccine%20for%20children%206%20months%20to%20less%20than%205%20years.pdf','http://www.brisbanenorthphn.org.au/content/Document/From%2520Qld%2520Health/Funded%2520influenza%2520vaccine%2520for%2520children%25206%2520months%2520to%2520less%2520than%25205%2520years.pdf','35.233.170.71','Go-http-client/1.1','Template not found: content/Document/From Qld Health/Funded influenza vaccine for children 6 months to less than 5 years.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 05:39:22',0),(68830,'2021-04-30 11:03:43','2021-04-30 11:03:43','8f94a961-1323-4973-8bca-c904e4ab59ed',1,'/content/Document/Vaccine%20management_OnlineModule_AJ2.pdf','http://www.brisbanenorthphn.org.au/content/Document/Vaccine%2520management_OnlineModule_AJ2.pdf','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/Vaccine management_OnlineModule_AJ2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 11:03:43',0),(68831,'2021-04-30 11:03:51','2021-04-30 11:03:51','b819602a-426c-4483-921c-6436fd09f4cd',1,'/content/Document/Primary%20care%20liaison/MNHHS%20Maternity%20Ref%20v6_2%20MD.rtf','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/MNHHS%2520Maternity%2520Ref%2520v6_2%2520MD.rtf','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/MNHHS Maternity Ref v6_2 MD.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 11:03:51',0),(68832,'2021-04-30 11:05:47','2021-04-30 11:05:47','a601dcda-d549-460b-a1a5-66b6ad14f3e8',1,'/content/Document/Templates/6.1/MNHHS%20Paediatric%20Ref%20v6_1.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/MNHHS%2520Paediatric%2520Ref%2520v6_1.rtf','34.67.170.26','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/MNHHS Paediatric Ref v6_1.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 11:05:47',0),(68833,'2021-04-30 11:10:13','2021-04-30 11:10:13','740c8596-7418-409c-b273-ce325eefca77',1,'/content/Document/Media%20Releases/MR_Community%20control%20remains%20key%20to%20closing%20the%20gap_170316.pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%2520Releases/MR_Community%2520control%2520remains%2520key%2520to%2520closing%2520the%2520gap_170316.pdf','34.94.135.136','Go-http-client/1.1','Template not found: content/Document/Media Releases/MR_Community control remains key to closing the gap_170316.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 11:10:13',0),(68834,'2021-04-30 11:21:56','2021-05-01 20:20:59','9e294938-a6df-45d4-8d37-47ebf232f886',1,'/content/Document/PD_Eval','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/PD_Eval','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 20:20:59',0),(68835,'2021-04-30 11:28:42','2021-05-02 07:16:32','01ad8c8b-6fa3-4b3c-a461-b71bde3c7306',1,'/page/news-and-events/events/upcoming/building-capacity-to-respond-to-sexual-violence/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/building-capacity-to-respond-to-sexual-violence','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-02 07:16:32',0),(68836,'2021-04-30 11:38:53','2021-04-30 11:38:53','7a9dd750-cd4a-4d52-ad75-5f9cd3039327',1,'/events/genomics-for-gps-prenatal-and-paediatric-genetics','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/genomics-for-gps-prenatal-and-paediatric-genetics','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 11:38:53',0),(68837,'2021-04-30 11:54:01','2021-04-30 11:54:01','a4d4ec89-f54d-4999-95ce-f28ed6899adf',1,'/content/Document/Aged%20and%20community%20care/Dementia%20directory%202019%20FINAL%20WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Aged%2520and%2520community%2520care/Dementia%2520directory%25202019%2520FINAL%2520WEB.pdf','34.94.5.119','Go-http-client/1.1','Template not found: content/Document/Aged and community care/Dementia directory 2019 FINAL WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 11:54:01',0),(68838,'2021-04-30 12:17:18','2021-04-30 12:17:18','6c3b9eff-8735-4434-8b2f-980e6d97f020',1,'/content/Document/Pathways/Refugee Health second visit_updated.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/Refugee%20Health%20second%20visit_updated.pdf','34.94.135.136','Go-http-client/1.1','Template not found: content/Document/Pathways/Refugee Health second visit_updated.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 12:17:18',0),(68839,'2021-04-30 12:17:18','2021-04-30 12:17:18','d6e2172e-1dc1-42a1-9aa8-abcd5495f58e',1,'/content/Document/Network Link/Network_Link_Mar2020_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%20Link/Network_Link_Mar2020_WEB.pdf','34.121.182.57','Go-http-client/1.1','Template not found: content/Document/Network Link/Network_Link_Mar2020_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 12:17:18',0),(68840,'2021-04-30 12:28:33','2021-04-30 12:28:33','643aa9fe-0e7e-4c3f-9d54-e0ad42588c67',1,'/content/Document/Events/2018/Mater%20GP%20Education%20Invitation%20-%20Redland%2016%20October%202018(1).pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2018/Mater%2520GP%2520Education%2520Invitation%2520-%2520Redland%252016%2520October%25202018(1).pdf','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/Events/2018/Mater GP Education Invitation - Redland 16 October 2018(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 12:28:33',0),(68841,'2021-04-30 12:39:50','2021-04-30 12:39:50','168e4015-6f98-482f-b14a-d72c1976d869',1,'/page/health-professionals/Local Positions Vacant/casual-registered-nurse-required---woodford-family-medical-centre/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/casual-registered-nurse-required---woodford-family-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 12:39:50',0),(68842,'2021-04-30 12:50:25','2021-05-04 10:30:46','58014581-cfd1-4200-949b-c43711799a8c',1,'/page/publications/partners-in-health/partners-in-health-september-2017','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/partners-in-health/partners-in-health-september-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-04 10:30:46',0),(68843,'2021-04-30 12:54:07','2021-05-12 19:13:02','3667d924-1f27-4291-b90f-b10929313942',1,'/content/Document/Templates/4.6/MNHHS TPCH Ref MD v4_6.rtf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.6/MNHHS TPCH Ref MD v4_6.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 19:13:02',0),(68844,'2021-04-30 12:56:37','2021-04-30 12:56:37','eb964e2b-f243-4f8e-9d5d-74a23ff1f169',1,'/page/news-and-events/latest-news/our-year-in-review-18-19','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/our-year-in-review-18-19','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 12:56:37',0),(68845,'2021-04-30 13:01:12','2021-04-30 13:01:12','5782f30b-295a-43d1-b629-49ef71252bd1',1,'/content/Document/PD_Vacant_ProgOff_BrisbandMIND_150731.pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/PD_Vacant_ProgOff_BrisbandMIND_150731.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 13:01:12',0),(68846,'2021-04-30 13:53:24','2021-05-02 14:52:51','0c7b0ac7-335d-45fe-b205-58e30bd17aea',1,'/page/news-and-events/latest-news/be-involved-in-health-planning-in-our-region/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/be-involved-in-health-planning-in-our-region','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-02 14:52:51',0),(68847,'2021-04-30 14:20:01','2021-04-30 14:20:01','4393e31b-358c-4fe0-bd2d-6f0cda170c8d',1,'/content/Document/Planning/FIN_AAWP_Primary%20Mental%20Health%20Care%2018-19_181122%20RACF%20WEB(1).docx','http://www.brisbanenorthphn.org.au/content/Document/Planning/FIN_AAWP_Primary%2520Mental%2520Health%2520Care%252018-19_181122%2520RACF%2520WEB(1).docx','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/Planning/FIN_AAWP_Primary Mental Health Care 18-19_181122 RACF WEB(1).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 14:20:01',0),(68848,'2021-04-30 14:26:18','2021-04-30 14:26:18','cedd5cdf-a94d-4b71-ac95-d374cf3e7991',1,'/page/about/careers/coordinator-healthy-ageing/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers/coordinator-healthy-ageing','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 14:26:18',0),(68849,'2021-04-30 14:30:29','2021-05-17 00:41:35','6c9223ec-2216-487f-a244-1abbbcd43e98',1,'/content/Document/Pathways/Algorithm_CKD_flowchart.pdf','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Algorithm_CKD_flowchart.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-17 00:41:35',0),(68850,'2021-04-30 14:35:59','2021-04-30 14:35:59','35bb5344-a7d9-47fd-bac3-5f893d3fcfdb',1,'/content/Document/Network%20Link/Network%20Link_09_SEPTEMBER_FINAL_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%2520Link/Network%2520Link_09_SEPTEMBER_FINAL_WEB.pdf','104.198.141.65','Go-http-client/1.1','Template not found: content/Document/Network Link/Network Link_09_SEPTEMBER_FINAL_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 14:35:59',0),(68851,'2021-04-30 14:36:08','2021-05-15 19:55:24','c73e2212-5c14-4d21-8163-2dce18b80f54',1,'/scholtzfamily/dark-to-light-hair/','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: scholtzfamily/dark-to-light-hair','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 19:55:24',0),(68852,'2021-04-30 14:37:04','2021-04-30 14:37:04','bff09bf5-3f5e-453a-924a-fb53ffa56216',1,'/content/Document/Primary%20care%20liaison/PIP%20eHealth%20Checklist.pdf','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/PIP%2520eHealth%2520Checklist.pdf','34.122.162.36','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/PIP eHealth Checklist.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 14:37:04',0),(68853,'2021-04-30 14:58:41','2021-05-08 18:34:04','4056dc47-9300-4332-9c3b-8148e05c62ca',1,'/content/Document/Network Link_10_October_2016_FINAL_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%20Link_10_October_2016_FINAL_WEB.pdf','35.192.197.124','Go-http-client/1.1','Template not found: content/Document/Network Link_10_October_2016_FINAL_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-08 18:34:04',0),(68854,'2021-04-30 15:17:58','2021-04-30 15:17:58','1500299d-63f0-4410-b932-751f02881914',1,'/page/news-and-events/events/upcoming/webinar-maintaining-patients-on-denosumab-during-covid-19/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/webinar-maintaining-patients-on-denosumab-during-covid-19','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 15:17:58',0),(68855,'2021-04-30 16:03:46','2021-04-30 16:03:46','625c4164-2aec-43a6-a04d-eab9f9277284',1,'/content/Document/Brisbane%20MIND%20Service%20and%20consent%20Information%20Sheet%20combined%20-%20PHN%20BRANDED.docx','http://www.brisbanenorthphn.org.au/content/Document/Brisbane%2520MIND%2520Service%2520and%2520consent%2520Information%2520Sheet%2520combined%2520-%2520PHN%2520BRANDED.docx','35.186.188.225','Go-http-client/1.1','Template not found: content/Document/Brisbane MIND Service and consent Information Sheet combined - PHN BRANDED.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 16:03:46',0),(68856,'2021-04-30 16:10:03','2021-05-18 22:20:02','ccc829eb-2cec-4176-91cc-6c7e19e10ba6',1,'/content/Document/Events/2018/Flyer_Brisbane North PHN_PEPA GPworkshop.pdf','','157.55.39.23','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2018/Flyer_Brisbane North PHN_PEPA GPworkshop.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 22:20:02',0),(68857,'2021-04-30 16:21:12','2021-05-05 00:23:37','80e8fc16-2d2a-4ef7-acf5-5c49bda298d5',1,'/content/Document/Events/2018/INVITATION_My HR in Pharmacy_Brisbane North_June_2018.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2018/INVITATION_My%20HR%20in%20Pharmacy_Brisbane%20North_June_2018.pdf','104.198.141.65','Go-http-client/1.1','Template not found: content/Document/Events/2018/INVITATION_My HR in Pharmacy_Brisbane North_June_2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-05 00:23:37',0),(68858,'2021-04-30 16:32:56','2021-05-06 11:07:56','1b7632c8-890a-4c11-8c23-8df3b55714b3',1,'/content/Document/Templates/6.1/MNHHS%20Caboolture%20v6_1.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/MNHHS%2520Caboolture%2520v6_1.rtf','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/MNHHS Caboolture v6_1.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 11:07:56',0),(68859,'2021-04-30 16:33:15','2021-05-06 11:08:17','7ab1b6c9-c563-4c5f-b0e7-b990b335bd56',1,'/content/Document/Primary care liaison/MNHHS Maternity Ref BP v6_2.rtf','http://www.brisbanenorthphn.org.au/content/Document/Primary%20care%20liaison/MNHHS%20Maternity%20Ref%20BP%20v6_2.rtf','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/MNHHS Maternity Ref BP v6_2.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 11:08:17',0),(68860,'2021-04-30 16:40:23','2021-04-30 16:40:23','804c1033-d5db-45fa-9f33-4af0d654f1ca',1,'/page/news-and-events/events/upcoming/information-evening---general-practice-reform-update-north-lakes---26-may','http://brisbanenorthphn.org.au/page/news-and-events/events/upcoming/information-evening---general-practice-reform-update-north-lakes---26-may','35.210.188.229','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/events/upcoming/information-evening---general-practice-reform-update-north-lakes---26-may','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 16:40:23',0),(68861,'2021-04-30 16:47:02','2021-05-08 18:57:54','f870c717-780a-44da-b37a-aa87458e8baa',1,'/content/Document/Pathways/B2_Skin_Tears.pdf','','66.249.69.33','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/Pathways/B2_Skin_Tears.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-08 18:57:54',0),(68862,'2021-04-30 16:54:23','2021-05-06 11:24:49','80b7b0fb-86ed-4428-bb7e-7deb0d2301c1',1,'/content/Document/Templates/5.3/MNHHS%20Palliative%20Care%20%205_3%20MD%20.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%2520Palliative%2520Care%2520%25205_3%2520MD%2520.rtf','35.233.170.71','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS Palliative Care 5_3 MD .rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 11:24:49',0),(68863,'2021-04-30 16:55:32','2021-04-30 16:55:32','f668a0a9-466c-4e4b-a068-937d6f44d75c',1,'/page/news-and-events/latest-news/partners-in-recovery-legacy-will-live-on','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/partners-in-recovery-legacy-will-live-on','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 16:55:32',0),(68864,'2021-04-30 16:58:43','2021-04-30 16:58:43','6e49b213-2e35-4d16-96d0-265d633998ef',1,'/content/Document/PD_Vacant_CoordinatorCommunityCare_150410.pdf','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/PD_Vacant_CoordinatorCommunityCare_150410.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 16:58:43',0),(68865,'2021-04-30 17:02:48','2021-05-09 09:43:59','1b9f5e39-c086-4716-a1d9-ad29a71a64ef',1,'/content/Document/Events/2019/Metro North Health Forum/Registration form - Metro North Health Forum 2019.docx','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2019/Metro North Health Forum/Registration form - Metro North Health Forum 2019.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-09 09:43:59',0),(68866,'2021-04-30 17:08:23','2021-05-06 11:38:48','482f5aa6-8bea-47d7-942d-1a14d2c79edd',1,'/content/Document/GPLO%20Info%20Sheet_180509.pdf','http://www.brisbanenorthphn.org.au/content/Document/GPLO%2520Info%2520Sheet_180509.pdf','35.233.170.71','Go-http-client/1.1','Template not found: content/Document/GPLO Info Sheet_180509.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 11:38:48',0),(68867,'2021-04-30 17:08:54','2021-05-15 01:07:23','e7adbbee-3dfa-468d-a33a-110a40f0204d',1,'/page/news-and-events/events/upcoming/immunisation-catch-up-events-for-practice-nures---lutwyche-may','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/immunisation-catch-up-events-for-practice-nures---lutwyche-may','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 01:07:23',0),(68868,'2021-04-30 17:10:40','2021-04-30 17:10:40','10179ed1-1932-4181-8269-9cf4c3c9e603',1,'/content/Document/Events/2019/APPROVED Invitation flyer_Managing stage 3 CKD.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/APPROVED%20Invitation%20flyer_Managing%20stage%203%20CKD.pdf','34.94.135.136','Go-http-client/1.1','Template not found: content/Document/Events/2019/APPROVED Invitation flyer_Managing stage 3 CKD.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 17:10:40',0),(68869,'2021-04-30 17:13:00','2021-04-30 17:13:00','b8d07bb2-3cfb-40eb-8a9d-55cdded06d90',1,'/content/Document/Brisbane MIND Provider List December 2017.pdf','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Brisbane MIND Provider List December 2017.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 17:13:00',0),(68870,'2021-04-30 17:20:09','2021-04-30 17:20:09','a6950dcc-7707-442d-8823-4fc15f3e238e',1,'/yearinreview/2017-18/hello-world/','','66.249.68.2','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: yearinreview/2017-18/hello-world','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 17:20:09',0),(68871,'2021-04-30 17:23:56','2021-04-30 17:23:56','7acd8d12-3466-4de4-a33a-deb043d5ed34',1,'/events/app-guide-emotions-and-education','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/app-guide-emotions-and-education','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 17:23:56',0),(68872,'2021-04-30 17:31:01','2021-05-06 07:49:20','7957840e-bbd7-4c26-ba3d-774e6bac76c3',1,'/content/Document/Media Releases/151210 - Report reveals hotspots for potentially preventable hospitalisation.pdf','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Media Releases/151210 - Report reveals hotspots for potentially preventable hospitalisation.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 07:49:20',0),(68873,'2021-04-30 17:34:52','2021-05-18 04:22:06','a35c8352-857b-48d3-a6df-5e84440980eb',1,'/page/news-and-events/events/upcoming/dementia-medication-in-primary-care/','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/dementia-medication-in-primary-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 04:22:06',0),(68874,'2021-04-30 17:38:54','2021-04-30 17:38:54','aa96635b-5dcf-4c08-850a-83c29fe748df',1,'/content/Document/Private rehab options.pdf','http://www.brisbanenorthphn.org.au/content/Document/Private%20rehab%20options.pdf','34.106.50.141','Go-http-client/1.1','Template not found: content/Document/Private rehab options.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 17:38:54',0),(68875,'2021-04-30 17:40:08','2021-05-07 16:40:14','ee51e881-8db7-4499-b1b7-c282bcc06b6f',1,'/content/Document/Events/2019/INVITATION - Common challenges in primary care_Epilepsy for GPs_PRINTv2.pdf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2019/INVITATION - Common challenges in primary care_Epilepsy for GPs_PRINTv2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-07 16:40:14',0),(68876,'2021-04-30 17:52:27','2021-05-12 16:05:25','da9ec80d-9705-4498-963b-c6c18f8f16fe',1,'/content/Document/Brisbane MIND Provider List January 2018(1).pdf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List January 2018(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-12 16:05:25',0),(68877,'2021-04-30 18:04:56','2021-05-06 12:35:13','b553596b-1fae-474a-ac9c-863a173c94d1',1,'/content/Document/Templates/4.9/MNHHS Paediatric PractiX v4_9.doc','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.9/MNHHS%20Paediatric%20PractiX%20v4_9.doc','35.233.170.71','Go-http-client/1.1','Template not found: content/Document/Templates/4.9/MNHHS Paediatric PractiX v4_9.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 12:35:13',0),(68878,'2021-04-30 18:15:54','2021-04-30 18:15:54','dd20e577-0251-4b8f-8f9e-920a98614597',1,'/content/Document/Aged%20and%20community%20care/Older%20Persons%20Plan%202017-2022.pdf','http://www.brisbanenorthphn.org.au/content/Document/Aged%2520and%2520community%2520care/Older%2520Persons%2520Plan%25202017-2022.pdf','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/Aged and community care/Older Persons Plan 2017-2022.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 18:15:54',0),(68879,'2021-04-30 18:34:59','2021-04-30 18:34:59','b19742e4-8246-428b-97a5-3ff92e85d8fe',1,'/plugins/jQuery-File-Upload/server/php/index.php','http://www.google.com/','23.228.109.147','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2896.3 Safari/537.36','Template not found: plugins/jQuery-File-Upload/server/php/index.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 18:34:59',0),(68880,'2021-04-30 18:49:02','2021-05-01 08:30:26','4cc7805b-ea2a-42bc-bf36-444a137660aa',1,'/page/home/featurettes/directories','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/featurettes/directories','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 08:30:26',0),(68881,'2021-04-30 19:16:41','2021-04-30 19:16:41','bedc9e3a-7a66-4e2c-9fec-365f2c675316',1,'/research-survey/dist/swiper.js','','207.46.13.59','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','Template not found: research-survey/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 19:16:41',0),(68882,'2021-04-30 19:17:23','2021-05-18 00:25:27','0d353225-fbfa-45b8-958a-f02ae8c0c40e',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/carers-and-consumers','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services/carers-and-consumers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 00:25:27',0),(68883,'2021-04-30 19:22:45','2021-04-30 19:22:45','1e1daaa2-cc5d-42c7-8ebe-f8cf9f6eb8fb',1,'/content/Document/151021%20-%20Real%20health%20care%20issues%20demand%20real%20solutions.pdf','http://www.brisbanenorthphn.org.au/content/Document/151021%2520-%2520Real%2520health%2520care%2520issues%2520demand%2520real%2520solutions.pdf','34.121.182.57','Go-http-client/1.1','Template not found: content/Document/151021 - Real health care issues demand real solutions.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 19:22:45',0),(68884,'2021-04-30 19:22:52','2021-05-05 13:40:50','9fd4ff50-c977-404e-82d5-157ea483621d',1,'/content/Document/DRA_MN_Health_Forum_Breakfast_Program_2017.pdf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/DRA_MN_Health_Forum_Breakfast_Program_2017.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-05 13:40:50',0),(68885,'2021-04-30 19:26:42','2021-05-12 00:19:59','c70cb4c1-024c-498a-8368-7d1843244b95',1,'/cathy6822/balayage-blond/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: cathy6822/balayage-blond','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-12 00:19:59',0),(68886,'2021-04-30 19:55:27','2021-05-18 19:42:02','b29e5bf4-c214-4862-9807-29eaa063a7ea',1,'/jobs/general-practitioner-caboolture-qld','','66.249.79.148','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: jobs/general-practitioner-caboolture-qld','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,14,'2021-05-18 19:42:02',0),(68887,'2021-04-30 20:00:32','2021-05-06 01:46:58','64e39dba-90f2-4e2d-8e3e-06088475dbe2',1,'/content/Document/Network Link/Network Link_March_2019_WEB.pdf','','168.119.11.187','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','Template not found: content/Document/Network Link/Network Link_March_2019_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 01:46:58',0),(68888,'2021-04-30 20:07:52','2021-04-30 20:07:52','05e41085-5631-41fb-b144-2b3a2566c436',1,'/content/Document/Media%20Releases/MR_Avoid%20the%20crowd%20and%20access%20after%20hours%20medical%20advice%20from%20home_190711.pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%2520Releases/MR_Avoid%2520the%2520crowd%2520and%2520access%2520after%2520hours%2520medical%2520advice%2520from%2520home_190711.pdf','34.121.182.57','Go-http-client/1.1','Template not found: content/Document/Media Releases/MR_Avoid the crowd and access after hours medical advice from home_190711.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 20:07:52',0),(68889,'2021-04-30 20:09:33','2021-05-04 02:26:37','8fc65362-ade2-41ad-913e-244edf11155a',1,'/content/Document/Provider EOI pack_Brisbane North_20042018.pdf','','66.249.68.93','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Provider EOI pack_Brisbane North_20042018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-04 02:26:37',0),(68890,'2021-04-30 20:09:57','2021-04-30 20:09:57','97432ae5-a074-4527-b269-74efe0651569',1,'/content/Document/Events/2019/AAWP%20Core%20Flexible%20AH%20RESUBMIT_190208%20WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/AAWP%2520Core%2520Flexible%2520AH%2520RESUBMIT_190208%2520WEB.pdf','34.122.162.36','Go-http-client/1.1','Template not found: content/Document/Events/2019/AAWP Core Flexible AH RESUBMIT_190208 WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 20:09:57',0),(68891,'2021-04-30 20:14:40','2021-04-30 20:14:40','79a001b5-13ca-41df-823f-e815e37abc80',1,'/content/Document/Pathways/HealthPathways Program Update_Feb 2019.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/HealthPathways%20Program%20Update_Feb%202019.pdf','34.106.50.141','Go-http-client/1.1','Template not found: content/Document/Pathways/HealthPathways Program Update_Feb 2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 20:14:40',0),(68892,'2021-04-30 20:21:13','2021-04-30 20:21:13','89540db5-c7c9-44df-a866-fca93ab6304b',1,'/page/health-professionals/Local Positions Vacant/private-psychologists-clinical-psychologists-or-social-workers---headspace-caboolture/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/private-psychologists-clinical-psychologists-or-social-workers---headspace-caboolture','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 20:21:13',0),(68893,'2021-04-30 20:22:44','2021-04-30 20:22:44','ac2b3777-c67e-4e73-ab8d-b394085ade4c',1,'/content/Document/MHAOD_Recovery_newsletter_October_2018%20WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/MHAOD_Recovery_newsletter_October_2018%2520WEB.pdf%3F','34.106.50.141','Go-http-client/1.1','Template not found: content/Document/MHAOD_Recovery_newsletter_October_2018 WEB.pdf?','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 20:22:44',0),(68894,'2021-04-30 20:34:54','2021-04-30 20:34:54','1bd45511-cb59-4307-aa4a-ac3870b9a5c6',1,'/content/Document/Aged%20and%20community%20care/FINAL%20GOAS%20REPORT%20v4%20180820.docx','http://www.brisbanenorthphn.org.au/content/Document/Aged%2520and%2520community%2520care/FINAL%2520GOAS%2520REPORT%2520v4%2520180820.docx','34.94.141.43','Go-http-client/1.1','Template not found: content/Document/Aged and community care/FINAL GOAS REPORT v4 180820.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 20:34:54',0),(68895,'2021-04-30 20:41:08','2021-05-06 15:28:48','9b94246e-6f2f-4dba-a788-97958744bf25',1,'/content/Document/Annual%20Plan%202016-2018.docx','http://www.brisbanenorthphn.org.au/content/Document/Annual%2520Plan%25202016-2018.docx','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Annual Plan 2016-2018.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 15:28:48',0),(68896,'2021-04-30 20:57:34','2021-04-30 20:57:34','86bfe53f-2611-4d5e-a910-433fc4323725',1,'/team/','','54.89.133.95','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Amazonbot/0.1; +https://developer.amazon.com/support/amazonbot)','Template not found: team','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 20:57:34',0),(68897,'2021-04-30 21:06:53','2021-05-17 03:04:51','f9c61696-6fd4-4da3-90ca-6c8782aa719a',1,'/yearinreview/2017-18/wp-content/uploads/2018/11/GP-Alignment-program-crowd.jpg','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/wp-content/uploads/2018/11/GP-Alignment-program-crowd.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 03:04:51',0),(68898,'2021-04-30 21:06:53','2021-05-16 20:05:04','083da825-f039-454c-ab81-8bcffc19307e',1,'/content/Document/Palliative_Care_Support%20Pathway_v1_0_Feb2017_WEB.pdf','','66.249.69.36','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Palliative_Care_Support Pathway_v1_0_Feb2017_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 20:05:04',0),(68899,'2021-04-30 21:12:19','2021-04-30 21:12:19','c2404feb-788a-456e-a22c-2420dc3a0181',1,'/position-type/','','54.89.133.95','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Amazonbot/0.1; +https://developer.amazon.com/support/amazonbot)','Template not found: position-type','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 21:12:19',0),(68900,'2021-04-30 21:30:04','2021-04-30 21:30:04','69fc4f2d-94ca-49f8-8722-cf5e3ea33ec5',1,'/content/Document/Immunisation%20Flyer%20GP%20to%20supply%20to%20parents%20(FINAL%20-%20PHN).pdf','http://www.brisbanenorthphn.org.au/content/Document/Immunisation%2520Flyer%2520GP%2520to%2520supply%2520to%2520parents%2520(FINAL%2520-%2520PHN).pdf','34.94.135.136','Go-http-client/1.1','Template not found: content/Document/Immunisation Flyer GP to supply to parents (FINAL - PHN).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 21:30:04',0),(68901,'2021-04-30 21:37:47','2021-04-30 21:37:47','322c9e48-827e-417e-9e26-c63a51c16956',1,'/content/Document/Network%20Link/Network%20Link_March_2019_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%2520Link/Network%2520Link_March_2019_WEB.pdf','34.94.141.43','Go-http-client/1.1','Template not found: content/Document/Network Link/Network Link_March_2019_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 21:37:47',0),(68902,'2021-04-30 21:49:34','2021-04-30 21:49:34','9e40bdfa-fef8-4206-a480-7eec7395a5b1',1,'/external-links/','','54.89.133.95','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/600.2.5 (KHTML, like Gecko) Version/8.0.2 Safari/600.2.5 (Amazonbot/0.1; +https://developer.amazon.com/support/amazonbot)','Template not found: external-links','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 21:49:34',0),(68903,'2021-04-30 22:28:25','2021-04-30 22:28:25','d014766f-ab02-4c4e-b8c6-66690c7f3487',1,'/content/Media/180424_MR_PHN%20responds%20to%20anti-vax%20misinformation.pdf','http://www.brisbanenorthphn.org.au/content/Media/180424_MR_PHN%2520responds%2520to%2520anti-vax%2520misinformation.pdf','34.94.141.43','Go-http-client/1.1','Template not found: content/Media/180424_MR_PHN responds to anti-vax misinformation.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 22:28:25',0),(68904,'2021-04-30 22:34:10','2021-05-06 17:10:55','add31f2e-59e0-4e02-84d2-934ba13ef9c8',1,'/content/Document/INFO_SHEET_Brisbane North PHN Advertising Specifications_2016-17.docx','http://www.brisbanenorthphn.org.au/content/Document/INFO_SHEET_Brisbane%20North%20PHN%20Advertising%20Specifications_2016-17.docx','35.233.170.71','Go-http-client/1.1','Template not found: content/Document/INFO_SHEET_Brisbane North PHN Advertising Specifications_2016-17.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-06 17:10:55',0),(68905,'2021-04-30 22:36:11','2021-04-30 22:36:11','3769f57f-f8aa-4b5a-9beb-9dc546820249',1,'/content/Document/Primary%20care%20liaison/Specialists%20List_RBWH_6_2(1).pdf','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/Specialists%2520List_RBWH_6_2(1).pdf','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/Specialists List_RBWH_6_2(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 22:36:11',0),(68906,'2021-04-30 23:05:59','2021-04-30 23:05:59','1d40435b-eb1b-41f8-a67e-993f4a10df6e',1,'/content/Document/ilb-lymphoedema-indigenous_504af036eae54.pdf','http://www.brisbanenorthphn.org.au/content/Document/ilb-lymphoedema-indigenous_504af036eae54.pdf','34.94.135.136','Go-http-client/1.1','Template not found: content/Document/ilb-lymphoedema-indigenous_504af036eae54.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 23:05:59',0),(68907,'2021-04-30 23:06:26','2021-04-30 23:06:26','13dee730-d1e6-40ed-8ba6-96373e6a7b40',1,'/content/Document/EOI_Dementia%20Consumer%20and%20Carer%20Rep_210918.docx','http://www.brisbanenorthphn.org.au/content/Document/EOI_Dementia%2520Consumer%2520and%2520Carer%2520Rep_210918.docx','35.185.207.84','Go-http-client/1.1','Template not found: content/Document/EOI_Dementia Consumer and Carer Rep_210918.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 23:06:26',0),(68908,'2021-04-30 23:18:17','2021-05-06 19:29:54','e86a25cb-fbd9-4f73-bdbc-57a258915d98',1,'/content/Document/Pathways/Common Features of Effective Exercise Programs for Falls Reduction.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/Common%20Features%20of%20Effective%20Exercise%20Programs%20for%20Falls%20Reduction.pdf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Pathways/Common Features of Effective Exercise Programs for Falls Reduction.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 19:29:54',0),(68909,'2021-04-30 23:20:00','2021-04-30 23:20:00','7139a260-1141-4df7-b97e-43c44ac42e4e',1,'/content/Document/Alcohol%20and%20other%20drug%20services%20quick%20guide%20for%20GPs%20FINAL.pdf','http://www.brisbanenorthphn.org.au/content/Document/Alcohol%2520and%2520other%2520drug%2520services%2520quick%2520guide%2520for%2520GPs%2520FINAL.pdf','34.94.135.136','Go-http-client/1.1','Template not found: content/Document/Alcohol and other drug services quick guide for GPs FINAL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 23:20:00',0),(68910,'2021-04-30 23:23:20','2021-04-30 23:23:20','10ec7365-152c-4227-a444-8aa131cfe4be',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---morayfield-wamuran-landsborough/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---morayfield-wamuran-landsborough','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 23:23:20',0),(68911,'2021-04-30 23:33:50','2021-04-30 23:33:50','da0d559f-a22b-4792-89b6-8cb62fc998e2',1,'/page/news-and-events/latest-news/mycobacterium-chimaera-in-heater-cooler-units/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/mycobacterium-chimaera-in-heater-cooler-units','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 23:33:50',0),(68912,'2021-04-30 23:34:39','2021-05-06 18:14:16','2583a9dc-2d06-4dd0-ba0d-829071c9b976',1,'/content/Document/Events/2019/Course%20in%20Ear%20and%20Hearing%20Health%20Benchmarque%20Group.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/Course%2520in%2520Ear%2520and%2520Hearing%2520Health%2520Benchmarque%2520Group.pdf','35.233.170.71','Go-http-client/1.1','Template not found: content/Document/Events/2019/Course in Ear and Hearing Health Benchmarque Group.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 18:14:16',0),(68913,'2021-04-30 23:38:23','2021-04-30 23:38:23','d0065c57-15e8-4c1f-b997-df7e4f0c3ea2',1,'/content/Document/From%20Qld%20Health/20190627%20Health%20alert_Influenza%20antivirals.pdf','http://www.brisbanenorthphn.org.au/content/Document/From%2520Qld%2520Health/20190627%2520Health%2520alert_Influenza%2520antivirals.pdf','34.94.5.119','Go-http-client/1.1','Template not found: content/Document/From Qld Health/20190627 Health alert_Influenza antivirals.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 23:38:23',0),(68914,'2021-04-30 23:42:35','2021-05-06 19:54:37','fda1a5bd-735b-4570-a3ca-bc82c780ff08',1,'/content/Document/Primary%20care%20liaison/MNHHS%20Redcliffe%20Hosp%20Ref%20v6_2%20MD(1).rtf','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/MNHHS%2520Redcliffe%2520Hosp%2520Ref%2520v6_2%2520MD(1).rtf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/MNHHS Redcliffe Hosp Ref v6_2 MD(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 19:54:37',0),(68915,'2021-04-30 23:43:08','2021-04-30 23:43:08','8f76c9c8-6a0a-4555-abf1-532aa21ae04c',1,'/content/Document/Media%20Releases/MR_Doctor%20Dad%20joins%20Medical%20Mums%20immunisation%20campaign_170424%20(002).pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%2520Releases/MR_Doctor%2520Dad%2520joins%2520Medical%2520Mums%2520immunisation%2520campaign_170424%2520(002).pdf','34.94.135.136','Go-http-client/1.1','Template not found: content/Document/Media Releases/MR_Doctor Dad joins Medical Mums immunisation campaign_170424 (002).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 23:43:08',0),(68916,'2021-04-30 23:54:03','2021-04-30 23:54:03','b5f05b00-106b-499a-8f74-813b35e5d073',1,'/page/news-and-events/events/upcoming/unplanned-pregnancy-best-practice-counselling-training/','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/unplanned-pregnancy-best-practice-counselling-training','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-04-30 23:54:03',0),(68917,'2021-05-01 00:13:02','2021-05-01 00:13:02','9f142545-a930-4e78-abcf-1b353987e562',1,'/page/news-and-events/latest-news/state-funding-for-integrated-care-applauded/','','173.252.107.2','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: page/news-and-events/latest-news/state-funding-for-integrated-care-applauded','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 00:13:02',0),(68918,'2021-05-01 00:20:31','2021-05-01 00:20:31','26671ec1-e419-4436-9383-a9662ac5aac1',1,'/page/news-and-events/events/upcoming/compassion-fatigue-resiliency-at-work-and-recovery-for-professionals/','http://brisbanenorthphn.org.au/page/news-and-events/events/upcoming/compassion-fatigue-resiliency-at-work-and-recovery-for-professionals/','35.210.90.252','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/events/upcoming/compassion-fatigue-resiliency-at-work-and-recovery-for-professionals','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 00:20:31',0),(68919,'2021-05-01 00:52:27','2021-05-01 00:52:27','b99f21ae-c82a-4873-94e6-7aa5519e7f98',1,'/page/health-professionals/local positions vacant/after-hours-general-practitioners---vr-or-non-vr-gps-required---the-family-practice-medical-kallangur','http://brisbanenorthphn.org.au/page/health-professionals/local+positions+vacant/after-hours-general-practitioners---vr-or-non-vr-gps-required---the-family-practice-medical-kallangur','35.210.233.113','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/health-professionals/local positions vacant/after-hours-general-practitioners---vr-or-non-vr-gps-required---the-family-practice-medical-kallangur','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 00:52:27',0),(68920,'2021-05-01 00:55:40','2021-05-01 00:55:40','00689051-0692-44f8-847a-a364d61b444b',1,'/content/Document/Network Link_02_February_FINAL_WEB.pdf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Network Link_02_February_FINAL_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 00:55:40',0),(68921,'2021-05-01 01:07:20','2021-05-01 01:07:20','e779e7d8-28b6-477d-b76e-7918c227b467',1,'/page/news-and-events/events/upcoming/introduction-to-management-and-leadership-masterclass/','http://brisbanenorthphn.org.au/page/news-and-events/events/upcoming/introduction-to-management-and-leadership-masterclass/','35.210.233.113','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/events/upcoming/introduction-to-management-and-leadership-masterclass','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 01:07:20',0),(68922,'2021-05-01 01:16:53','2021-05-14 03:29:16','5c563b18-f0ec-4efe-9d87-a457f852996c',1,'/page/news-and-events/latest-news/on-call-medical-support-for-aged-care-facilities','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/on-call-medical-support-for-aged-care-facilities','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 03:29:16',0),(68923,'2021-05-01 01:19:33','2021-05-06 21:31:41','984bb2fb-381d-4632-b4b7-c8c5c48ccfc7',1,'/content/Document/Templates/6.1/Specialists%20List_The%20Prince%20Charles%20Hospital_6_1.pdf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/Specialists%2520List_The%2520Prince%2520Charles%2520Hospital_6_1.pdf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/Specialists List_The Prince Charles Hospital_6_1.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 21:31:41',0),(68924,'2021-05-01 01:19:36','2021-05-01 01:19:36','7a97cc3b-6547-4483-a7f8-fbd94aa02687',1,'/page/health-professionals/local positions vacant/practice-registered-nurses-required---bardon-rainworth-medical-centre','http://brisbanenorthphn.org.au/page/health-professionals/local+positions+vacant/practice-registered-nurses-required---bardon-rainworth-medical-centre','35.210.233.113','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/health-professionals/local positions vacant/practice-registered-nurses-required---bardon-rainworth-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 01:19:36',0),(68925,'2021-05-01 01:31:39','2021-05-01 01:31:39','25773991-4fdc-4b71-b8c0-18583db1f816',1,'/content/Document/Templates/4.3/MNHHS Redcliffe outpatient v4.3.4W7','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.3/MNHHS Redcliffe outpatient v4.3.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 01:31:39',0),(68926,'2021-05-01 01:32:19','2021-05-01 01:32:19','1e92bd8d-eb13-43bc-890c-65fa899a18b1',1,'/page/health-professionals/local positions vacant/general-practitioner---vr-non-vr-required---the-family-practice-medical-centre-burpengary','http://brisbanenorthphn.org.au/page/health-professionals/local+positions+vacant/general-practitioner---vr-non-vr-required---the-family-practice-medical-centre-burpengary','35.206.145.85','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/health-professionals/local positions vacant/general-practitioner---vr-non-vr-required---the-family-practice-medical-centre-burpengary','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 01:32:19',0),(68927,'2021-05-01 01:44:07','2021-05-01 01:44:07','0f48a3f1-572b-45e1-9dbe-d75081640947',1,'/content/Document/Templates/5.3/MNHHS RBWH 5_3 MD .rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%20RBWH%205_3%20MD%20.rtf','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS RBWH 5_3 MD .rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 01:44:07',0),(68928,'2021-05-01 01:44:30','2021-05-01 01:44:30','edc5f831-7ede-47fe-8746-e450a3539290',1,'/page/news-and-events/events/archive/therapy-dog-and-handler-training---5-day-course/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/therapy-dog-and-handler-training---5-day-course','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 01:44:30',0),(68929,'2021-05-01 01:44:46','2021-05-01 01:44:46','a5f76c85-f136-4097-bd22-50ddbb228019',1,'/page/news-and-events/latest-news/covid-19-information/information-for-our-community/mental-health-resources/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/covid-19-information/information-for-our-community/mental-health-resources','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 01:44:46',0),(68930,'2021-05-01 01:50:49','2021-05-01 01:50:49','ed5622bb-29aa-4b51-8305-e5c83d7626fc',1,'/events/chronic-kidney-disease-interactive-look-early-detection-and-management-general-practice','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/chronic-kidney-disease-interactive-look-early-detection-and-management-general-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 01:50:49',0),(68931,'2021-05-01 01:55:22','2021-05-02 20:00:36','ce29f605-a9b7-4211-b3ba-187beee9bda0',1,'/content/Document/Templates/Brisbane MIND/MIND 4KiDS V3 MD.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/Brisbane%20MIND/MIND%204KiDS%20V3%20MD.rtf','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/Templates/Brisbane MIND/MIND 4KiDS V3 MD.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-02 20:00:36',0),(68932,'2021-05-01 01:57:48','2021-05-06 20:59:14','d25c09af-2404-402f-81e0-c067cee78299',1,'/content/Document/Primary%20care%20liaison/MNHHS%20Caboolture%20Ref%20BP%20v6_2(1).rtf','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/MNHHS%2520Caboolture%2520Ref%2520BP%2520v6_2(1).rtf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/MNHHS Caboolture Ref BP v6_2(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 20:59:14',0),(68933,'2021-05-01 01:58:22','2021-05-01 01:58:22','18324a6f-62c8-4a82-9867-c75e46014b6e',1,'/page/health-professionals/digital-health/my-health-record/what-information-is-stored-within-the-my-health-record','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/digital-health/my-health-record/what-information-is-stored-within-the-my-health-record','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 01:58:22',0),(68934,'2021-05-01 02:05:32','2021-05-06 22:16:28','b219d433-6a89-4c93-8106-1fd41f76fa73',1,'/content/Document/Genetics Education Day flyer.pdf','http://www.brisbanenorthphn.org.au/content/Document/Genetics%20Education%20Day%20flyer.pdf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Genetics Education Day flyer.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 22:16:28',0),(68935,'2021-05-01 02:12:47','2021-05-01 02:12:47','df959c7d-8115-40d0-9e38-9280d31c920d',1,'/page/health-professionals/Local Positions Vacant/gp-required---united-medical-centre-north-lakes/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/gp-required---united-medical-centre-north-lakes','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 02:12:47',0),(68936,'2021-05-01 02:14:53','2021-05-01 02:14:53','dc960b06-02c9-4408-9199-a2075d8cc7f1',1,'/content/Document/iDEAGPflyer-1.jpeg.pdf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/iDEAGPflyer-1.jpeg.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 02:14:53',0),(68937,'2021-05-01 02:33:23','2021-05-06 21:35:19','4dc1ff4b-7f23-4bfd-aa60-6e293008ba94',1,'/content/Document/Media%20Releases/151003_PCYC%20launches%20Healthy%20Bodies,%20Healthy%20Minds%20program%20during%20Mental%20Health%20Week.pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%2520Releases/151003_PCYC%2520launches%2520Healthy%2520Bodies,%2520Healthy%2520Minds%2520program%2520during%2520Mental%2520Health%2520Week.pdf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Media Releases/151003_PCYC launches Healthy Bodies, Healthy Minds program during Mental Health Week.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 21:35:19',0),(68938,'2021-05-01 02:39:25','2021-05-02 07:00:11','125ba8fd-457c-43b7-bec7-83fed45046be',1,'/page/news-and-events/events/archive/kidney-supportive-care-master-class/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/kidney-supportive-care-master-class','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-02 07:00:11',0),(68939,'2021-05-01 02:41:30','2021-05-01 02:41:30','eb33512c-9ed2-4a99-b4c6-3d8a0aca1355',1,'/page/news-and-events/events/upcoming/the-anger-management-jumpstart-and-beyond-the-powerful-mindfulness--based-techniques-for-transforming-anger-into-self-acceptance-empathy-and-forgiveness/','http://brisbanenorthphn.org.au/page/news-and-events/events/upcoming/the-anger-management-jumpstart-and-beyond-the-powerful-mindfulness--based-techniques-for-transforming-anger-into-self-acceptance-empathy-and-forgiveness/','35.210.155.100','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/events/upcoming/the-anger-management-jumpstart-and-beyond-the-powerful-mindfulness--based-techniques-for-transforming-anger-into-self-acceptance-empathy-and-forgiveness','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 02:41:30',0),(68940,'2021-05-01 03:20:04','2021-05-09 02:12:40','5e327372-57cf-42c8-b948-82146f0cb617',1,'/content/Image/Logos/Active @ home photo 1.jpg','','203.67.6.202','Wget/1.21.1','Template not found: content/Image/Logos/Active @ home photo 1.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 02:12:40',0),(68941,'2021-05-01 03:24:54','2021-05-04 07:21:05','cfad7e68-c743-44f8-8bf8-eff1d6259dcf',1,'/page/news-and-events/latest-news/pain-week-highlights-clinical-tools/','http://www.brisbanenorthphn.org.au/page/news-and-events/latest-news/pain-week-highlights-clinical-tools/','100.26.192.71','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','Template not found: page/news-and-events/latest-news/pain-week-highlights-clinical-tools','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-04 07:21:05',0),(68942,'2021-05-01 03:42:32','2021-05-01 03:42:32','0e82ed37-1a42-4bfe-9391-e0aef530876e',1,'/page/news-and-events/events/upcoming/north-brisbane-partners-in-recovery-annual-forum','http://brisbanenorthphn.org.au/page/news-and-events/events/upcoming/north-brisbane-partners-in-recovery-annual-forum','35.210.220.237','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/events/upcoming/north-brisbane-partners-in-recovery-annual-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 03:42:32',0),(68943,'2021-05-01 04:11:47','2021-05-01 04:11:47','de5d099b-09e7-4251-9d05-deeb8ef047f8',1,'/page/news-and-events/events/upcoming/medical-education-and-clinical-training---true-relationship-and-reproductive-health','http://brisbanenorthphn.org.au/page/news-and-events/events/upcoming/medical-education-and-clinical-training---true-relationship-and-reproductive-health','35.210.233.113','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/events/upcoming/medical-education-and-clinical-training---true-relationship-and-reproductive-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 04:11:47',0),(68944,'2021-05-01 04:14:06','2021-05-10 13:17:51','24de6ab2-7e97-4abf-b5de-0273caae8bec',1,'/page/health-professionals/multicultural-health/living-well-with-chronic-disease','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/multicultural-health/living-well-with-chronic-disease','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-10 13:17:51',0),(68945,'2021-05-01 04:30:57','2021-05-06 23:16:28','cd786bfa-47eb-4449-8b85-154a21e535dc',1,'/content/Document/Templates/V5.1 Jan 2018/Best Practice/MNHHS Maternity Referral v5_1_1 BP.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/V5.1%20Jan%202018/Best%20Practice/MNHHS%20Maternity%20Referral%20v5_1_1%20BP.rtf','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/Templates/V5.1 Jan 2018/Best Practice/MNHHS Maternity Referral v5_1_1 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 23:16:28',0),(68946,'2021-05-01 04:31:58','2021-05-01 04:31:58','76d29800-a3c8-498d-a46c-988c5649f8f3',1,'/content/Document/MNHHS Paediatric Referral ZM v4_11(1).rtf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/MNHHS Paediatric Referral ZM v4_11(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 04:31:58',0),(68947,'2021-05-01 04:35:18','2021-05-01 04:35:18','225d5241-6fda-40bf-81a9-0ffe67f7d824',1,'/content/Document/Position Descriptions/PD_Project Coordinator Out of Home Care_MHAOD_181128.pdf','http://www.brisbanenorthphn.org.au/content/Document/Position%20Descriptions/PD_Project%20Coordinator%20Out%20of%20Home%20Care_MHAOD_181128.pdf','104.198.141.65','Go-http-client/1.1','Template not found: content/Document/Position Descriptions/PD_Project Coordinator Out of Home Care_MHAOD_181128.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 04:35:18',0),(68948,'2021-05-01 04:48:58','2021-05-01 04:48:58','aa465f2e-a3ba-4c56-8ee8-0e30cd3299c5',1,'/yearinreview/2017-18/a-strategic-alliance-with-our-local-hospital-services/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: yearinreview/2017-18/a-strategic-alliance-with-our-local-hospital-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 04:48:58',0),(68949,'2021-05-01 04:50:47','2021-05-01 04:50:47','84013758-54a2-4326-a7d8-7667647690b6',1,'/page/news-and-events/events/upcoming/medical-education-and-clinical-training---true-relationship-and-reproductive-health/','http://brisbanenorthphn.org.au/page/news-and-events/events/upcoming/medical-education-and-clinical-training---true-relationship-and-reproductive-health/','35.210.233.113','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/events/upcoming/medical-education-and-clinical-training---true-relationship-and-reproductive-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 04:50:47',0),(68950,'2021-05-01 05:07:52','2021-05-01 05:07:52','d6404a11-07d0-47ed-a97b-a10b759985b1',1,'/page/pathways/Asthma in Adults/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/pathways/Asthma in Adults','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 05:07:52',0),(68951,'2021-05-01 05:10:50','2021-05-16 14:06:51','e1f9a207-d6a8-4cf8-a252-cba43b684fed',1,'/page/home/style-guide/tab-listing/item-2','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/style-guide/tab-listing/item-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 14:06:51',0),(68952,'2021-05-01 05:11:31','2021-05-01 05:11:31','3b7fbae8-8460-4fb2-a33d-e14fb1569ac5',1,'/page/health-professionals/local positions vacant/practice-manager-required---young-minds-health-and-development-network-and-minds4health','http://brisbanenorthphn.org.au/page/health-professionals/local+positions+vacant/practice-manager-required---young-minds-health-and-development-network-and-minds4health','35.210.176.222','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/health-professionals/local positions vacant/practice-manager-required---young-minds-health-and-development-network-and-minds4health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 05:11:31',0),(68953,'2021-05-01 05:28:56','2021-05-01 05:28:56','d0483a18-3624-4f62-af4c-a072877978f9',1,'/content/Document/Planning/FINAL_AAWP_Integrated%20Team%20Care_170717%20WEBSITE.docx','http://www.brisbanenorthphn.org.au/content/Document/Planning/FINAL_AAWP_Integrated%2520Team%2520Care_170717%2520WEBSITE.docx','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/Planning/FINAL_AAWP_Integrated Team Care_170717 WEBSITE.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 05:28:56',0),(68954,'2021-05-01 05:44:03','2021-05-01 05:44:03','d58dea06-0516-4bb0-9b28-2a5a954a9a3f',1,'/content/Document/Media%20Releases/151010_Recovery%20on%20track,%20evaluation%20report%20finds.pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%2520Releases/151010_Recovery%2520on%2520track,%2520evaluation%2520report%2520finds.pdf','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/Media Releases/151010_Recovery on track, evaluation report finds.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 05:44:03',0),(68955,'2021-05-01 05:49:37','2021-05-01 05:49:37','25977e30-6171-4f2c-a97e-defc22b3477a',1,'/content/Document/Planning/FIN_AWP AOD 19-22_190719 WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Planning/FIN_AWP%20AOD%2019-22_190719%20WEB.pdf','34.106.50.141','Go-http-client/1.1','Template not found: content/Document/Planning/FIN_AWP AOD 19-22_190719 WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 05:49:37',0),(68956,'2021-05-01 05:55:16','2021-05-07 00:41:22','f1d90570-a11a-470e-a933-0f2b090ec0be',1,'/content/Document/Templates/6.1/MNHHS%20Caboolture%20Ref%20v6_1%20BP.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/MNHHS%2520Caboolture%2520Ref%2520v6_1%2520BP.rtf','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/MNHHS Caboolture Ref v6_1 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 00:41:22',0),(68957,'2021-05-01 06:03:50','2021-05-01 06:03:50','b32e0692-72a1-439c-8597-b47f34373fea',1,'/page/health-professionals/local positions vacant/rn-required---bardon-rainworth-medical-centre','http://brisbanenorthphn.org.au/page/health-professionals/local+positions+vacant/rn-required---bardon-rainworth-medical-centre','35.210.176.222','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/health-professionals/local positions vacant/rn-required---bardon-rainworth-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 06:03:50',0),(68958,'2021-05-01 06:07:07','2021-05-07 01:10:50','f3d836f1-02dd-498f-b7fa-a9da87f5101d',1,'/content/Document/Health%20alerts/190524_Health%20Alert_Listeria%20detection%20notice%20for%20GPs.pdf','http://www.brisbanenorthphn.org.au/content/Document/Health%2520alerts/190524_Health%2520Alert_Listeria%2520detection%2520notice%2520for%2520GPs.pdf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Health alerts/190524_Health Alert_Listeria detection notice for GPs.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 01:10:50',0),(68959,'2021-05-01 06:09:17','2021-05-01 06:09:17','35282424-77a9-4ffc-8622-1b8958b4df59',1,'/page/health-professionals/digital-health/my-health-record/setting-up-access-to-my-health-record/','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/digital-health/my-health-record/setting-up-access-to-my-health-record','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 06:09:17',0),(68960,'2021-05-01 06:21:59','2021-05-01 06:21:59','271df252-05ef-4483-a30f-5f791643112d',1,'/page/health-professionals/Local Positions Vacant/registered-nurse-required---caboolture-super-clinic/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/registered-nurse-required---caboolture-super-clinic','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 06:21:59',0),(68961,'2021-05-01 06:45:52','2021-05-01 06:45:52','558fd822-7834-4854-81ab-bb871af14e76',1,'/pin/657736720565812130/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: pin/657736720565812130','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 06:45:52',0),(68962,'2021-05-01 06:46:23','2021-05-08 06:04:27','cb948a4d-258c-41d4-99bf-4652eb4504ae',1,'/page/news-and-events/events/upcoming/rheumatic-heart-disease-2-day-workshop','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/rheumatic-heart-disease-2-day-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-08 06:04:27',0),(68963,'2021-05-01 06:52:26','2021-05-01 06:52:26','4bcb846b-96af-4eb3-8819-3ff7c6391096',1,'/content/Media/APPENDIX_%2423.5m%20to%20continue%20vital%20mental%20health%20reform_170321.pdf','http://www.brisbanenorthphn.org.au/content/Media/APPENDIX_%252423.5m%2520to%2520continue%2520vital%2520mental%2520health%2520reform_170321.pdf','34.73.220.108','Go-http-client/1.1','Template not found: content/Media/APPENDIX_$23.5m to continue vital mental health reform_170321.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 06:52:26',0),(68964,'2021-05-01 06:54:21','2021-05-01 06:54:21','168cb1a0-68a1-4ea3-a752-b19675a0b5db',1,'/content/Document/FOR_BM Group Therapy_ Jan to Jul 18_171102.docx','http://www.brisbanenorthphn.org.au/content/Document/FOR_BM%20Group%20Therapy_%20Jan%20to%20Jul%2018_171102.docx','35.186.188.225','Go-http-client/1.1','Template not found: content/Document/FOR_BM Group Therapy_ Jan to Jul 18_171102.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 06:54:21',0),(68965,'2021-05-01 07:21:06','2021-05-01 07:21:06','a15bb426-59ba-4cbb-9054-0dc3d441dd0e',1,'/page/health-professionals/local positions vacant/practice-nurse-required---ubuntu-medical-centre','http://brisbanenorthphn.org.au/page/health-professionals/local+positions+vacant/practice-nurse-required---ubuntu-medical-centre','35.210.146.110','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/health-professionals/local positions vacant/practice-nurse-required---ubuntu-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 07:21:06',0),(68966,'2021-05-01 07:21:35','2021-05-01 07:21:35','712687eb-76dd-4a0a-87cd-7938e4022ac2',1,'/content/Document/DRAFT_MN_Health_Forum_Program_2016_v4.pdf','','66.249.68.31','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/DRAFT_MN_Health_Forum_Program_2016_v4.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 07:21:35',0),(68967,'2021-05-01 07:37:29','2021-05-01 07:37:29','6ad1686e-d0ac-4ce1-b07c-676946d54b9f',1,'/mhot_hair/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: mhot_hair','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 07:37:29',0),(68968,'2021-05-01 07:51:48','2021-05-01 07:51:48','c7b19b0e-4649-40c5-9518-561879d580d2',1,'/content/Document/MH4L_EOI_Brisbane%20North_2018.docx','http://www.brisbanenorthphn.org.au/content/Document/MH4L_EOI_Brisbane%2520North_2018.docx','34.106.50.141','Go-http-client/1.1','Template not found: content/Document/MH4L_EOI_Brisbane North_2018.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 07:51:48',0),(68969,'2021-05-01 07:59:47','2021-05-09 21:53:18','e270333c-0a0f-436d-a19f-6be1bdf86a0b',1,'/content/Document/Media Releases/MR_Integrated suicide prevention initiatives aim to save lives_190220.pdf','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Media Releases/MR_Integrated suicide prevention initiatives aim to save lives_190220.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-09 21:53:18',0),(68970,'2021-05-01 08:04:54','2021-05-01 08:04:54','9d17f561-763b-4609-b28e-f4e896bd9dcf',1,'/content/Document/2016 Advance Care Planning Invite (Mar,Apr,May,Jun).pdf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/2016 Advance Care Planning Invite (Mar,Apr,May,Jun).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 08:04:54',0),(68971,'2021-05-01 08:09:54','2021-05-01 08:09:54','5a1d66ca-ed0d-40d0-8bde-5a3d463a32bd',1,'/content/Document/Templates/5.3/MNHHS%20Caboolture%20Hospital%205_3%20MD.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%2520Caboolture%2520Hospital%25205_3%2520MD.rtf','34.73.220.108','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS Caboolture Hospital 5_3 MD.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 08:09:54',0),(68972,'2021-05-01 08:10:40','2021-05-01 08:10:40','b6c39cc9-6555-4db7-a5f3-fce0ea0a083e',1,'/content/Document/Templates/MNHHS CISS CCDT Referral Form 2016.pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/MNHHS CISS CCDT Referral Form 2016.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 08:10:40',0),(68973,'2021-05-01 08:12:33','2021-05-01 08:12:33','4b37463c-2ef2-4201-86b9-371dba4ee354',1,'/page/news-and-events/latest-news/covid-19-information/access-to-surgical-masks-for-general-practice-and-pharmacies','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/covid-19-information/access-to-surgical-masks-for-general-practice-and-pharmacies','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 08:12:33',0),(68974,'2021-05-01 08:35:03','2021-05-01 08:35:03','23d51913-8b58-4e12-93fa-facc7a7416ad',1,'/content/Document/MNHHS Cab Referral PractiX v4_11(1).doc','http://www.brisbanenorthphn.org.au/content/Document/MNHHS%20Cab%20Referral%20PractiX%20v4_11(1).doc','34.121.182.57','Go-http-client/1.1','Template not found: content/Document/MNHHS Cab Referral PractiX v4_11(1).doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 08:35:03',0),(68975,'2021-05-01 08:37:57','2021-05-10 01:21:27','9a429bc0-8d9b-44b4-ac40-49ebf6b6b06c',1,'/jobs/vr-gp-full-time-mixed-billings-modern-clinic-starting-incentives-brisbane','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/vr-gp-full-time-mixed-billings-modern-clinic-starting-incentives-brisbane','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-10 01:21:27',0),(68976,'2021-05-01 08:46:47','2021-05-01 08:46:47','ed67eb48-2e39-4f1b-a3cf-3a95c8b44360',1,'/page/health-professionals/immunisation/resources/vaccine-management-plan-template','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/immunisation/resources/vaccine-management-plan-template','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 08:46:47',0),(68977,'2021-05-01 08:50:40','2021-05-01 08:50:40','7a95f1b9-92b7-4ce3-a0b5-21b5f46c657f',1,'/content/Document/20151130_CHSP_Final%20report_QUT_AusHSI.pdf','http://www.brisbanenorthphn.org.au/content/Document/20151130_CHSP_Final%2520report_QUT_AusHSI.pdf','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/20151130_CHSP_Final report_QUT_AusHSI.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 08:50:40',0),(68978,'2021-05-01 09:17:44','2021-05-01 09:19:52','e3fe2b7d-925b-469d-ad7c-e41e2c0f504b',1,'/content/Document/161209_HealthAlert_Measles.pdf','','173.252.87.12','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: content/Document/161209_HealthAlert_Measles.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-01 09:19:52',0),(68979,'2021-05-01 09:39:50','2021-05-01 09:39:50','579ff92b-75ab-433c-819a-13d7a24274c0',1,'/content/Document/Recovery/Incident Report.docx','http://www.brisbanenorthphn.org.au/content/Document/Recovery/Incident%20Report.docx','104.198.141.65','Go-http-client/1.1','Template not found: content/Document/Recovery/Incident Report.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 09:39:50',0),(68980,'2021-05-01 09:47:58','2021-05-14 19:32:52','fc107d33-18ad-42a3-84d5-12e1a640a0f3',1,'/jobs/vr-gp','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/vr-gp','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-14 19:32:52',0),(68981,'2021-05-01 10:00:57','2021-05-01 10:00:57','a15ef34f-2760-4345-add0-f44c76cc5d43',1,'/page/health-professionals/digital-health/my-health-record/registering-to-access-my-health-record-as-a-healthcare-organisation','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/digital-health/my-health-record/registering-to-access-my-health-record-as-a-healthcare-organisation','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 10:00:57',0),(68982,'2021-05-01 10:18:13','2021-05-14 00:50:03','13f78430-b199-4d65-9045-8197af6e38b3',1,'/page/health-professionals/referral-and-patient-management/gp-education-event-resources-external-link','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/referral-and-patient-management/gp-education-event-resources-external-link','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-14 00:50:03',0),(68983,'2021-05-01 10:20:09','2021-05-01 10:20:09','d69da570-6c6a-4eb2-8dbd-58b5555b9188',1,'/yearinreview/2017-18/wp-content/uploads/2018/11/GPLOs-Dr-John-Bennett-Dr-Mike-Hamilton-Dr-James-Martin-600x400.png','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/wp-content/uploads/2018/11/GPLOs-Dr-John-Bennett-Dr-Mike-Hamilton-Dr-James-Martin-600x400.png','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 10:20:09',0),(68984,'2021-05-01 10:31:40','2021-05-01 10:31:40','0d93182a-12e7-44ba-ab07-7637cff4519f',1,'/page/news-and-events/events/upcoming/whiplash-2017-meeting-the-challenge-symposium/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/whiplash-2017-meeting-the-challenge-symposium','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 10:31:40',0),(68985,'2021-05-01 10:37:20','2021-05-07 05:45:29','4116b349-3f95-44b0-a5ab-c91dadaf5c9e',1,'/content/Document/Brisbane%20MIND%20Plus%20service%20map%20FINAL%20181114.pdf','http://www.brisbanenorthphn.org.au/content/Document/Brisbane%2520MIND%2520Plus%2520service%2520map%2520FINAL%2520181114.pdf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Brisbane MIND Plus service map FINAL 181114.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 05:45:29',0),(68986,'2021-05-01 10:41:37','2021-05-07 05:32:26','c37d3ab8-5e77-4f75-afba-743412713cd6',1,'/content/Document/Media Releases/150916_Service providers meet to discuss aged care reforms.pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%20Releases/150916_Service%20providers%20meet%20to%20discuss%20aged%20care%20reforms.pdf','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/Media Releases/150916_Service providers meet to discuss aged care reforms.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 05:32:26',0),(68987,'2021-05-01 11:04:34','2021-05-01 20:35:21','09f706b3-9075-4882-9001-20c8d9c0148b',1,'/page/home/style-guide/accordion-listing','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/style-guide/accordion-listing','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-01 20:35:21',0),(68988,'2021-05-01 11:08:09','2021-05-06 06:38:09','d5217b33-fbc5-4d8a-bf78-3549d1350f9f',1,'/abo','','51.38.162.4','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36','Template not found: abo','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-06 06:38:09',0),(68989,'2021-05-01 11:30:50','2021-05-01 11:30:50','7c6df053-7c0a-4d69-a617-b5887b68f701',1,'/content/Document/Templates/4.12/ZM v4.12/MNHHS Caboolture Referral ZM v4_12.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.12/ZM%20v4.12/MNHHS%20Caboolture%20Referral%20ZM%20v4_12.rtf','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/Templates/4.12/ZM v4.12/MNHHS Caboolture Referral ZM v4_12.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 11:30:50',0),(68990,'2021-05-01 11:39:45','2021-05-07 06:29:30','dd30c984-afd9-4932-8254-c7b2e6d5137f',1,'/content/Document/Aged%20and%20community%20care/A7_%20FINAL%20110817%20Project%20plan.docx','http://www.brisbanenorthphn.org.au/content/Document/Aged%2520and%2520community%2520care/A7_%2520FINAL%2520110817%2520Project%2520plan.docx','35.233.170.71','Go-http-client/1.1','Template not found: content/Document/Aged and community care/A7_ FINAL 110817 Project plan.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 06:29:30',0),(68991,'2021-05-01 11:49:56','2021-05-01 11:49:56','2cbed3c8-8e31-42e0-8065-8e88cff4c9a9',1,'/content/Document/Position Descriptions/PD_MHAOD_PDO_Mental Health Reform team_170911(1).pdf','http://www.brisbanenorthphn.org.au/content/Document/Position%20Descriptions/PD_MHAOD_PDO_Mental%20Health%20Reform%20team_170911(1).pdf','34.94.135.136','Go-http-client/1.1','Template not found: content/Document/Position Descriptions/PD_MHAOD_PDO_Mental Health Reform team_170911(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 11:49:56',0),(68992,'2021-05-01 12:08:03','2021-05-10 02:59:09','c699bee6-ab73-4c08-afd8-841fb10b44dc',1,'/content/Document/Events/2018/Redcliffe Lived Experience Workshop.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2018/Redcliffe%20Lived%20Experience%20Workshop.pdf','35.233.203.41','Go-http-client/1.1','Template not found: content/Document/Events/2018/Redcliffe Lived Experience Workshop.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 02:59:09',0),(68993,'2021-05-01 12:12:56','2021-05-07 07:06:15','091ef626-3795-4cbe-bbb8-70fb4d2ec858',1,'/content/Document/Events/2019/FIN_INVITATION - Improving risk management with quality improvement - September 2019_PRINT.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/FIN_INVITATION%20-%20Improving%20risk%20management%20with%20quality%20improvement%20-%20September%202019_PRINT.pdf','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/Events/2019/FIN_INVITATION - Improving risk management with quality improvement - September 2019_PRINT.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 07:06:15',0),(68994,'2021-05-01 12:17:19','2021-05-10 01:05:05','bf8c78ef-94ff-4d0d-bd1c-09565e7948f7',1,'/page/health-professionals/Local Positions Vacant/practice-manager---brendale','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-manager---brendale','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 01:05:05',0),(68995,'2021-05-01 12:17:55','2021-05-01 12:17:55','04b696b1-4a87-462c-84f4-e8ace9bb69db',1,'/page/news-and-events/events/archive/navigating-the-medicare-maze/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/navigating-the-medicare-maze','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 12:17:55',0),(68996,'2021-05-01 12:45:23','2021-05-01 12:45:23','0f655b39-f566-496d-a3dd-8343543ebefc',1,'/content/Document/Brisbane MIND Provider List September 2017(1).pdf','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List September 2017(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 12:45:23',0),(68997,'2021-05-01 12:53:49','2021-05-01 12:53:49','cf0d8a37-4dc3-4e63-9bbe-d0db607020d5',1,'/content/Document/Events/INVITATION%20-%20Rheumatic%20Heart%20Disease%20Update_1904.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/INVITATION%2520-%2520Rheumatic%2520Heart%2520Disease%2520Update_1904.pdf','104.198.141.65','Go-http-client/1.1','Template not found: content/Document/Events/INVITATION - Rheumatic Heart Disease Update_1904.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 12:53:49',0),(68998,'2021-05-01 12:59:43','2021-05-01 12:59:43','adce66dc-55b2-48a5-8e09-927905bc2970',1,'/content/Document/Templates/4.7/MNHHS TPCH Ref MD v4_7.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.7/MNHHS%20TPCH%20Ref%20MD%20v4_7.rtf','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/Templates/4.7/MNHHS TPCH Ref MD v4_7.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 12:59:43',0),(68999,'2021-05-01 13:12:01','2021-05-04 10:03:50','91f71982-57f1-42ef-9d3a-4ce2ce7a2f91',1,'/page/publications/recovery/recovery-october-2019/','','66.249.68.65','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/publications/recovery/recovery-october-2019','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-04 10:03:50',0),(69000,'2021-05-01 13:15:41','2021-05-01 13:15:41','881bdff3-afb5-45e7-bded-9b8ede5964b0',1,'/page/news-and-events/events/upcoming/9th-world-congress-of-melanoma','http://brisbanenorthphn.org.au/page/news-and-events/events/upcoming/9th-world-congress-of-melanoma','35.206.145.85','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/events/upcoming/9th-world-congress-of-melanoma','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 13:15:41',0),(69001,'2021-05-01 13:22:31','2021-05-17 08:34:50','de2012ca-4db3-4c3e-a6a0-18b5a089da58',1,'/events/privacy-please','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/privacy-please','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-17 08:34:50',0),(69002,'2021-05-01 13:30:31','2021-05-01 23:54:53','f5962357-2517-4946-b17d-fbfb557827dc',1,'/content/Document/Network Link/Network Link_8_Aug_2018_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%20Link/Network%20Link_8_Aug_2018_WEB.pdf','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/Network Link/Network Link_8_Aug_2018_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-01 23:54:53',0),(69003,'2021-05-01 13:30:59','2021-05-01 13:30:59','bb3af89c-16da-4d03-87e7-b1dfe3f1397d',1,'/page/news-and-events/events/upcoming/conflict-resolution---june-2016/','http://brisbanenorthphn.org.au/page/news-and-events/events/upcoming/conflict-resolution---june-2016/','35.210.233.113','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/events/upcoming/conflict-resolution---june-2016','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 13:30:59',0),(69004,'2021-05-01 13:48:50','2021-05-01 13:48:50','fa22573a-725f-4716-883a-7b1d48142608',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/carers-and-consumers/alternative-mental-health-services/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services/carers-and-consumers/alternative-mental-health-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 13:48:50',0),(69005,'2021-05-01 13:57:33','2021-05-01 13:57:33','5b73d47f-ed67-46f1-acf8-d0aff1e91114',1,'/page/news-and-events/latest-news/congratulations-to-shaun-drummond-chief-executive-of-2019','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/congratulations-to-shaun-drummond-chief-executive-of-2019','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 13:57:33',0),(69006,'2021-05-01 14:08:35','2021-05-07 21:06:36','e6f11935-7aad-4752-bb86-4606e7274cf3',1,'/page/news-and-events/events/upcoming/skintastic-care','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/skintastic-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-07 21:06:36',0),(69007,'2021-05-01 14:13:24','2021-05-01 14:13:24','eb8c8863-dd48-4c23-b38a-fc775a5db01d',1,'/page/news-and-events/latest-news/covid-19-information/information-for-aged-care-providers','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/covid-19-information/information-for-aged-care-providers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 14:13:24',0),(69008,'2021-05-01 14:27:41','2021-05-07 22:58:12','a6ed2995-191f-464b-9d3f-f99bac704e77',1,'/content/Document/Events/NoMoreSweeping UnderRug-Workshop.pdf','','207.46.13.120','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/NoMoreSweeping UnderRug-Workshop.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-07 22:58:12',0),(69009,'2021-05-01 14:37:58','2021-05-07 09:33:02','07996434-d59b-47e1-bd7f-5906b86c105b',1,'/content/Document/Templates/5.2/MNHHS TPCH Referral v5_2 MD.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.2/MNHHS%20TPCH%20Referral%20v5_2%20MD.rtf','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/Templates/5.2/MNHHS TPCH Referral v5_2 MD.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 09:33:02',0),(69010,'2021-05-01 14:42:09','2021-05-19 02:23:08','0fb15b99-e232-4ef9-b888-9e52392615d4',1,'/page/health-professionals/digital-health/my-health-record/setting-up-access-to-my-health-record','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/digital-health/my-health-record/setting-up-access-to-my-health-record','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-19 02:23:08',0),(69011,'2021-05-01 14:49:02','2021-05-12 13:27:56','78e8deae-e102-41e7-958f-0e0b41d5048c',1,'/content/Document/Pathways/Administration Tip Sheet_updated.pdf','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Administration Tip Sheet_updated.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 13:27:56',0),(69012,'2021-05-01 14:50:46','2021-05-01 14:50:46','fa6cc07c-41e3-4d6e-ace6-304c0c1a65c2',1,'/content/Document/Events/2019/FIN_INVITATION%20-%20Managing%20the%20waiting%20room%20-%20November%202019_PRINT.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/FIN_INVITATION%2520-%2520Managing%2520the%2520waiting%2520room%2520-%2520November%25202019_PRINT.pdf','34.106.50.141','Go-http-client/1.1','Template not found: content/Document/Events/2019/FIN_INVITATION - Managing the waiting room - November 2019_PRINT.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 14:50:46',0),(69013,'2021-05-01 15:02:02','2021-05-01 15:02:02','41505897-98ef-40aa-a0f1-e8d13a5f0899',1,'/content/Document/Health alerts/20190107 Measles Alert GP_ED Jan 2019.pdf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Health alerts/20190107 Measles Alert GP_ED Jan 2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 15:02:02',0),(69014,'2021-05-01 15:17:01','2021-05-07 21:34:37','79e13725-bc53-4932-8336-6b0d06dcbd42',1,'/page/news-and-events/events/upcoming/healthy-eating-activity-and-lifestyle-heal™-facilitator-training','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/healthy-eating-activity-and-lifestyle-heal™-facilitator-training','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-07 21:34:37',0),(69015,'2021-05-01 15:31:29','2021-05-18 22:26:52','dcd64da6-2b56-4d1d-b823-34345eb5d739',1,'/page/news-and-events/latest-news/agm-adds-another-gp-voice-to-board','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/agm-adds-another-gp-voice-to-board','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 22:26:52',0),(69016,'2021-05-01 15:32:03','2021-05-07 17:00:47','61bdc14a-099b-4214-afe4-9f804754e0fe',1,'/content/Document/Templates/4.4/MNHHS Paediatric Referral MD v4.4.rtf','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.4/MNHHS Paediatric Referral MD v4.4.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 17:00:47',0),(69017,'2021-05-01 15:55:13','2021-05-07 12:03:20','e1d971d1-826d-4b28-be65-e74161f95fe9',1,'/content/Document/Templates/5.3/MNHHS%20RBWH%20v5_3%20ZM.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%2520RBWH%2520v5_3%2520ZM.rtf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS RBWH v5_3 ZM.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 12:03:20',0),(69018,'2021-05-01 16:16:46','2021-05-01 16:16:46','a6d89e0c-34cc-4543-b081-6cbb8537108b',1,'/page/health-professionals/Local Positions Vacant/front-office-administration---kallangur/','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/front-office-administration---kallangur','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 16:16:46',0),(69019,'2021-05-01 16:20:06','2021-05-01 16:20:06','3dc610d3-8157-44cc-816b-193b6a16f15d',1,'/page/health-professionals/Local Positions Vacant/registered-nurse-required---stafford-road-family-care/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/registered-nurse-required---stafford-road-family-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 16:20:06',0),(69020,'2021-05-01 16:46:23','2021-05-01 16:46:23','8bdb9308-5d44-49f3-8cf0-b4c4d5cf7596',1,'/content/Document/Primary%20care%20liaison/MNHHS%20Paediatrics%20Ref%20BP%20v6_2.rtf','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/MNHHS%2520Paediatrics%2520Ref%2520BP%2520v6_2.rtf','34.121.182.57','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/MNHHS Paediatrics Ref BP v6_2.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 16:46:23',0),(69021,'2021-05-01 16:52:45','2021-05-01 16:52:45','b3dfc363-f860-4fa6-85d4-fde2459833c8',1,'/citrix/cgi/Resources/List','https://brisbanenorthphn.org.au/citrix/cgi/Resources/List','216.87.227.29','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','Template not found: citrix/cgi/Resources/List','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 16:52:45',0),(69022,'2021-05-01 16:57:22','2021-05-08 17:59:51','94c1714c-fd53-46af-9d23-5c165175cccf',1,'/content/Document/10-steps-to-excellent-National-Disability-Insurance-Scheme-NDIS-therapy-reports-v1.pdf','http://www.brisbanenorthphn.org.au/content/Document/10-steps-to-excellent-National-Disability-Insurance-Scheme-NDIS-therapy-reports-v1.pdf','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/10-steps-to-excellent-National-Disability-Insurance-Scheme-NDIS-therapy-reports-v1.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-08 17:59:51',0),(69023,'2021-05-01 17:23:15','2021-05-09 14:04:54','a1592ba1-0463-4b8e-bf7e-ae4c4c3b972f',1,'/content/Document/Templates/5.3/MNHHS Palliative Care 5_3 BP.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%20Palliative%20Care%20%205_3%20BP.rtf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS Palliative Care 5_3 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-09 14:04:54',0),(69024,'2021-05-01 17:33:22','2021-05-01 17:33:22','e009c059-3f98-42cb-9900-b9b208b6a361',1,'/admin/assets/plugins/jQuery-File-Upload/server/php/index.php','http://www.google.com/','23.228.109.147','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2896.3 Safari/537.36','Template not found: admin/assets/plugins/jQuery-File-Upload/server/php/index.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 17:33:22',0),(69025,'2021-05-01 17:34:14','2021-05-01 17:34:14','13cc2805-bd51-4afd-b16a-43344ca26412',1,'/content/Document/Immunisation catch up February 2017(1).pdf','http://www.brisbanenorthphn.org.au/content/Document/Immunisation%20catch%20up%20February%202017(1).pdf','35.186.188.225','Go-http-client/1.1','Template not found: content/Document/Immunisation catch up February 2017(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 17:34:14',0),(69026,'2021-05-01 17:35:23','2021-05-11 19:59:23','1fcdc9ca-87f4-4f6e-a49b-12b3649a123a',1,'/content/Document/Pathways/Pneumonia node 53.pdf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/Pneumonia node 53.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-11 19:59:23',0),(69027,'2021-05-01 17:39:27','2021-05-10 12:04:31','b6cdddee-43a7-41cd-8780-cf8f92a6fe01',1,'/content/Document/Brisbane North PHN AOD Needs Assessment Submission to DOH_March 2016.pdf','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane North PHN AOD Needs Assessment Submission to DOH_March 2016.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-10 12:04:31',0),(69028,'2021-05-01 17:42:24','2021-05-18 18:50:53','84e7b781-2625-4240-9574-47790b059cd2',1,'/yearinreview/2017-18/wp-content/uploads/2018/11/maplogocomp.jpg','','66.249.68.29','Googlebot-Image/1.0','Template not found: yearinreview/2017-18/wp-content/uploads/2018/11/maplogocomp.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-18 18:50:53',0),(69029,'2021-05-01 17:59:55','2021-05-07 12:53:24','984c371f-b1fb-488a-ab58-414c5ea9c0c7',1,'/content/Document/Planning/FIN_AAWP_Primary%20Mental%20Health%20Care%2018-19_181122%20RACF%20WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Planning/FIN_AAWP_Primary%2520Mental%2520Health%2520Care%252018-19_181122%2520RACF%2520WEB.pdf','35.233.170.71','Go-http-client/1.1','Template not found: content/Document/Planning/FIN_AAWP_Primary Mental Health Care 18-19_181122 RACF WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 12:53:24',0),(69030,'2021-05-01 18:53:29','2021-05-01 18:53:29','1e259fff-9f45-4eb7-8f7e-879fc1fe0fb0',1,'/page/health-professionals/digital-health/my-health-record/what-information-is-stored-within-the-my-health-record/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/digital-health/my-health-record/what-information-is-stored-within-the-my-health-record','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 18:53:29',0),(69031,'2021-05-01 19:22:04','2021-05-07 14:23:26','ead1a416-1aad-41b7-aebe-e307d8547100',1,'/content/Document/Health alerts/20200221_health alert measles in Brisbane.pdf','http://www.brisbanenorthphn.org.au/content/Document/Health%20alerts/20200221_health%20alert%20measles%20in%20Brisbane.pdf','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/Health alerts/20200221_health alert measles in Brisbane.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 14:23:26',0),(69032,'2021-05-01 19:52:25','2021-05-01 19:52:25','8e02212b-d93c-44da-a802-2267d951511a',1,'/page/news-and-events/events/upcoming/hepatitis-b-s100-prescriber-course/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/hepatitis-b-s100-prescriber-course','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 19:52:25',0),(69033,'2021-05-01 19:55:00','2021-05-07 14:51:11','57c23dee-5a4d-4269-8446-8208fc4fcba5',1,'/content/Document/Events/2019/Rheumatology%20in%20Primary%20Care%20Flyer%20V2.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/Rheumatology%2520in%2520Primary%2520Care%2520Flyer%2520V2.pdf','35.233.170.71','Go-http-client/1.1','Template not found: content/Document/Events/2019/Rheumatology in Primary Care Flyer V2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 14:51:11',0),(69034,'2021-05-01 20:01:20','2021-05-09 15:54:17','875b474b-88c1-4c13-8196-a9de6f6a1fc1',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---bridgeman-family-practice/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---bridgeman-family-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-09 15:54:17',0),(69035,'2021-05-01 20:20:46','2021-05-01 20:20:46','c91388c1-60ba-41d8-9a31-5267db539a1a',1,'/page/news-and-events/events/archive/cymhs-mental-health-week-forum/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/cymhs-mental-health-week-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 20:20:46',0),(69036,'2021-05-01 20:22:56','2021-05-01 20:22:56','6cf1e255-e1b2-4da3-a7d8-4699fd9bcb96',1,'/content/Document/Templates/4.4/MNHHS RBWH Referral Genie v4.4_.4W7','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.4/MNHHS RBWH Referral Genie v4.4_.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 20:22:56',0),(69037,'2021-05-01 20:30:31','2021-05-07 01:25:23','b668766a-59d2-40e2-a465-c7a9e242a225',1,'/page/news-and-events/events/upcoming/medication-assistance-skillset/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/medication-assistance-skillset','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-07 01:25:23',0),(69038,'2021-05-01 20:37:57','2021-05-06 16:49:12','ed21f1d7-b83e-458c-b0d0-7ea315afd416',1,'/page/health-professionals/community-care/geriatric-outreach-assessment-service','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/community-care/geriatric-outreach-assessment-service','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-06 16:49:12',0),(69039,'2021-05-01 20:46:25','2021-05-01 20:46:25','19bb042a-aa45-41b4-9365-0ce840b732f7',1,'/content/Document/Network%20Link/Network%20Link_6_June_2018_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%2520Link/Network%2520Link_6_June_2018_WEB.pdf','34.106.50.141','Go-http-client/1.1','Template not found: content/Document/Network Link/Network Link_6_June_2018_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 20:46:25',0),(69040,'2021-05-01 21:19:06','2021-05-01 21:19:06','58d1474f-8f62-4677-99f9-5f94b3bbcdb3',1,'/page/news-and-events/latest-news/brisbane-mind-plus-ereferral-has-changed/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/brisbane-mind-plus-ereferral-has-changed','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 21:19:06',0),(69041,'2021-05-01 21:30:06','2021-05-11 19:38:56','0b29b2a8-11ce-4360-aa1b-87d5f5cbd1f5',1,'/content/Document/DRA_GP_Breakfast_program_2018.pdf','','66.249.68.31','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/DRA_GP_Breakfast_program_2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-11 19:38:56',0),(69042,'2021-05-01 21:44:35','2021-05-07 16:50:54','eb2b51b1-4938-491a-81fd-2c84ddbdaff0',1,'/content/Document/GPLO%20Program_Useful%20GP%20resources_FINAL_Jan%202017_v1_1.pdf','http://www.brisbanenorthphn.org.au/content/Document/GPLO%2520Program_Useful%2520GP%2520resources_FINAL_Jan%25202017_v1_1.pdf','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/GPLO Program_Useful GP resources_FINAL_Jan 2017_v1_1.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 16:50:54',0),(69043,'2021-05-01 21:49:20','2021-05-07 15:08:07','bc4a1869-c19b-452d-8995-7ce24f435cb9',1,'/content/Document/Templates/4.6/MNHHS Redcliffe Ref ZM 4_6.rtf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.6/MNHHS Redcliffe Ref ZM 4_6.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 15:08:07',0),(69044,'2021-05-01 21:56:06','2021-05-01 21:56:06','a838d983-ed46-4e8c-8fe7-e812a6c0f8ab',1,'/content/Document/Brisbane%20MIND%20Plus%20service%20map%20FINAL.pdf','http://www.brisbanenorthphn.org.au/content/Document/Brisbane%2520MIND%2520Plus%2520service%2520map%2520FINAL.pdf','34.73.220.108','Go-http-client/1.1','Template not found: content/Document/Brisbane MIND Plus service map FINAL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 21:56:06',0),(69045,'2021-05-01 22:17:21','2021-05-01 22:17:21','e164a833-53ef-47fe-8747-b155ae9c1c61',1,'/content/Document/Templates/6.1/MNHHS%20TPCH%20Ref%20v6_1%20BP.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/MNHHS%2520TPCH%2520Ref%2520v6_1%2520BP.rtf','34.106.50.141','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/MNHHS TPCH Ref v6_1 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 22:17:21',0),(69046,'2021-05-01 22:20:34','2021-05-16 00:42:41','d8dc3db4-d391-4dc8-b0ab-c7f5bbd24f1a',1,'/api/.env','','142.93.169.146','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: api/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 00:42:41',0),(69047,'2021-05-01 22:29:25','2021-05-01 22:29:25','9f5c9680-7473-4043-92d5-c7a40afd3df1',1,'/content/Document/Events/93754 Home Instead Senior Care A5 Chermside.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/93754%20Home%20Instead%20Senior%20Care%20A5%20Chermside.pdf','35.186.188.225','Go-http-client/1.1','Template not found: content/Document/Events/93754 Home Instead Senior Care A5 Chermside.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 22:29:25',0),(69048,'2021-05-01 22:58:03','2021-05-01 22:58:03','cd856a4f-05a4-4a80-8fab-b0e9366180f8',1,'/content/Document/Primary%20care%20liaison/MNHHS%20RBWH%20Ref%20v6_2%20ZM(1).rtf','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/MNHHS%2520RBWH%2520Ref%2520v6_2%2520ZM(1).rtf','35.186.188.225','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/MNHHS RBWH Ref v6_2 ZM(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 22:58:03',0),(69049,'2021-05-01 23:01:55','2021-05-01 23:01:55','6e73680c-0118-4f41-ab3f-3c5abbd11832',1,'/content/Document/Events/2020/Birth Trauma Professional Development flyer -web.pdf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2020/Birth Trauma Professional Development flyer -web.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 23:01:55',0),(69050,'2021-05-01 23:30:16','2021-05-01 23:30:16','892adbe8-d52a-446d-a01d-56050e500e09',1,'/solr/','','91.241.19.175','Nuclei - Open-source project (github.com/projectdiscovery/nuclei)','Template not found: solr','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-01 23:30:16',0),(69051,'2021-05-01 23:50:52','2021-05-07 18:54:30','0ae97907-36c5-41c2-ad1c-a96f90f6a84a',1,'/content/Document/Templates/4.3/MNHHS Palliative ZM v4.3.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.3/MNHHS%20Palliative%20ZM%20v4.3.rtf','35.233.170.71','Go-http-client/1.1','Template not found: content/Document/Templates/4.3/MNHHS Palliative ZM v4.3.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 18:54:30',0),(69052,'2021-05-02 00:01:25','2021-05-02 00:01:25','b8fde2d5-5207-4bf8-8f70-686b7c071450',1,'/content/Document/Templates/V5.1 Jan 2018/MD/MNHHS TPCH v5_1 MD.rtf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/V5.1 Jan 2018/MD/MNHHS TPCH v5_1 MD.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 00:01:25',0),(69053,'2021-05-02 00:23:28','2021-05-02 00:23:28','06d06946-aea6-4542-90dc-05842b997933',1,'/page/news-and-events/events/upcoming/depression-dilemmas','http://brisbanenorthphn.org.au/page/news-and-events/events/upcoming/depression-dilemmas','35.210.176.222','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/events/upcoming/depression-dilemmas','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 00:23:28',0),(69054,'2021-05-02 01:09:45','2021-05-02 01:09:45','87f23f4c-f215-4b9c-b887-a7cbb56dd216',1,'/page/news-and-events/events/upcoming/perinatal-mental-health-breakfast/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/perinatal-mental-health-breakfast','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 01:09:45',0),(69055,'2021-05-02 01:37:31','2021-05-13 06:29:56','5642e32a-dbdb-49fd-957e-25881356130e',1,'/yearinreview/connecting-communities-to-primary-care/www.brisbanenorthphn.org.au','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/connecting-communities-to-primary-care/www.brisbanenorthphn.org.au','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 06:29:56',0),(69056,'2021-05-02 01:49:57','2021-05-02 10:58:05','5c738520-1585-48b4-8405-01062e898eca',1,'/content/Document/MHAOD_Recovery_newsletter_October_2018 WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/MHAOD_Recovery_newsletter_October_2018%20WEB.pdf','34.121.182.57','Go-http-client/1.1','Template not found: content/Document/MHAOD_Recovery_newsletter_October_2018 WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-02 10:58:05',0),(69057,'2021-05-02 02:09:49','2021-05-05 04:26:48','af7fdc1c-8392-4a61-b144-5115a1686ac4',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/brisbane-mind-information-for-referrers/contact','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services/brisbane-mind-information-for-referrers/contact','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-05 04:26:48',0),(69058,'2021-05-02 02:25:59','2021-05-05 00:03:54','b80754be-5727-42af-8b4a-1c32217289a5',1,'/page/health-professionals/mental-health-services/mental-health-tenders-open','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/mental-health-tenders-open','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-05 00:03:54',0),(69059,'2021-05-02 02:45:24','2021-05-02 02:45:24','817e1eba-a94f-4c5b-a717-2452c2410055',1,'/page/news-and-events/events/archive/asia-pacific-international-mental-health-conference/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/asia-pacific-international-mental-health-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 02:45:24',0),(69060,'2021-05-02 02:48:02','2021-05-02 02:48:02','8725b173-0791-4e05-b234-670b3406b165',1,'/events/electronic-transfer-of-prescriptions-using-medical-director','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/electronic-transfer-of-prescriptions-using-medical-director','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 02:48:02',0),(69061,'2021-05-02 03:19:38','2021-05-15 07:41:34','d56a0a23-eb06-4f27-bcc7-4a3ef825d67a',1,'/page/news-and-events/events/upcoming/drug-and-alcohol-first-aid/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/drug-and-alcohol-first-aid','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-15 07:41:34',0),(69062,'2021-05-02 03:30:42','2021-05-09 20:59:49','6805b6fa-f7a3-4a1d-9fa3-608b49d2436a',1,'/content/Document/2018 Network Link Advertising Specifications v1_2.pdf','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/2018 Network Link Advertising Specifications v1_2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 20:59:49',0),(69063,'2021-05-02 03:50:36','2021-05-07 23:04:24','4bce6302-7c0b-4730-98ba-d21614cb8fd4',1,'/content/Document/Templates/6.1/MNHHS%20Palliative%20v6_1.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/MNHHS%2520Palliative%2520v6_1.rtf','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/MNHHS Palliative v6_1.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 23:04:24',0),(69064,'2021-05-02 03:50:37','2021-05-02 03:50:37','b084d14a-1d58-4a44-b3f8-c9eee308246b',1,'/content/Document/Planning/FIN_AAWP_Suicide%20Prevention%20Trial%2018-19_180529%20WEB.docx','http://www.brisbanenorthphn.org.au/content/Document/Planning/FIN_AAWP_Suicide%2520Prevention%2520Trial%252018-19_180529%2520WEB.docx','34.73.220.108','Go-http-client/1.1','Template not found: content/Document/Planning/FIN_AAWP_Suicide Prevention Trial 18-19_180529 WEB.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 03:50:37',0),(69065,'2021-05-02 03:53:25','2021-05-02 03:53:25','35941e61-731e-46da-87da-2e7db3757987',1,'/page/home/','','95.91.76.7','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/home','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 03:53:25',0),(69066,'2021-05-02 03:56:56','2021-05-02 03:56:56','177561b9-c4f2-44f7-bcdd-dd71caaae796',1,'/content/Document/Pathways/HealthPathways%20Program%20Update_Mar%202019.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/HealthPathways%2520Program%2520Update_Mar%25202019.pdf','34.94.5.119','Go-http-client/1.1','Template not found: content/Document/Pathways/HealthPathways Program Update_Mar 2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 03:56:56',0),(69067,'2021-05-02 03:58:43','2021-05-02 03:58:43','bb59f58b-654a-4131-ab67-6cad5e580fc2',1,'/page/news-and-events/latest-news/in-home-pilot-','','95.91.76.7','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/news-and-events/latest-news/in-home-pilot-','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 03:58:43',0),(69068,'2021-05-02 04:00:09','2021-05-02 12:33:55','5109062e-8da8-4238-a9dd-ed53f6e25b2d',1,'/page/health-professionals/Local Positions Vacant/practice-manager---health-hub-doctors-morayfield/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/practice-manager---health-hub-doctors-morayfield','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-02 12:33:55',0),(69069,'2021-05-02 04:06:07','2021-05-02 04:06:07','2c5d4669-de26-40e9-9bf7-481bfa2d3298',1,'/content/Document/Reports/FIN_AWP%20Core%20AWP%202019-22%20190531.docx','http://www.brisbanenorthphn.org.au/content/Document/Reports/FIN_AWP%2520Core%2520AWP%25202019-22%2520190531.docx','34.73.220.108','Go-http-client/1.1','Template not found: content/Document/Reports/FIN_AWP Core AWP 2019-22 190531.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 04:06:07',0),(69070,'2021-05-02 04:08:17','2021-05-11 06:53:12','5947e79a-1600-4fba-a6f1-07c422f55f65',1,'/content/Document/Pathways/obesity_guidelines_page_xxii.pdf','','40.77.167.108','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/obesity_guidelines_page_xxii.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 06:53:12',0),(69071,'2021-05-02 04:10:07','2021-05-02 04:10:07','f5fdf7e2-041a-4415-bc3e-427eaaaa9035',1,'/page/news-and-events/events/upcoming/my-health-record-briefing-for-the-disability-sector/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/my-health-record-briefing-for-the-disability-sector','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 04:10:07',0),(69072,'2021-05-02 04:10:32','2021-05-07 23:17:41','a2e9f418-852c-466a-8017-6d86de97f0d2',1,'/content/Document/Primary%20care%20liaison/MNHHS%20TPCH%20Ref%20BP%20v6_2(1).rtf','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/MNHHS%2520TPCH%2520Ref%2520BP%2520v6_2(1).rtf','35.233.170.71','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/MNHHS TPCH Ref BP v6_2(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 23:17:41',0),(69073,'2021-05-02 04:37:41','2021-05-02 04:37:41','8d7e42f7-34cf-4269-8218-d65f472e24e4',1,'/content/Document/Events/Invitation - 2017 Advance Care Planning Invite (Feb, Mar 2017).pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/Invitation%20-%202017%20Advance%20Care%20Planning%20Invite%20(Feb%2C%20Mar%202017).pdf','34.94.135.136','Go-http-client/1.1','Template not found: content/Document/Events/Invitation - 2017 Advance Care Planning Invite (Feb, Mar 2017).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 04:37:41',0),(69074,'2021-05-02 04:52:53','2021-05-02 04:52:53','6db37f55-245d-4203-9743-4c2e35823df8',1,'/content/Document/rediCASE%20Tip%20Sheet%20SP%20StartUpGuide_FINALJul17.docx','http://www.brisbanenorthphn.org.au/content/Document/rediCASE%2520Tip%2520Sheet%2520SP%2520StartUpGuide_FINALJul17.docx','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/rediCASE Tip Sheet SP StartUpGuide_FINALJul17.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 04:52:53',0),(69075,'2021-05-02 05:20:07','2021-05-02 05:20:07','e95ce634-9970-4380-a731-c9bda69dd27c',1,'/page/news-and-events/events/upcoming/assessment-and-management-of-upper-limb-pain/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/assessment-and-management-of-upper-limb-pain','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 05:20:07',0),(69076,'2021-05-02 05:22:09','2021-05-02 05:22:09','652638d1-6795-407b-9403-b613e49a5b70',1,'/page/news-and-events/events/upcoming/hepatitis-c-nursing-treatment-and-management','http://brisbanenorthphn.org.au/page/news-and-events/events/upcoming/hepatitis-c-nursing-treatment-and-management','35.210.24.3','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/events/upcoming/hepatitis-c-nursing-treatment-and-management','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 05:22:09',0),(69077,'2021-05-02 05:28:37','2021-05-17 17:15:43','2907228b-7b8b-4a52-9c46-53e3ebcdc391',1,'/page/news-and-events/latest-news/enrolments-open-for-medical-assisting-course','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/enrolments-open-for-medical-assisting-course','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-17 17:15:43',0),(69078,'2021-05-02 05:54:41','2021-05-02 05:54:41','246fdf2d-4fab-436f-9765-5b57a3baf6dd',1,'/page/news-and-events/latest-news/the-pip-quality-improvement-incentive-has-started','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/the-pip-quality-improvement-incentive-has-started','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 05:54:41',0),(69079,'2021-05-02 06:01:37','2021-05-02 06:01:37','84c1c6bd-76ab-4222-bc97-54f30804d9fd',1,'/page/publications/partners-in-health/partners-in-health-september-2016','http://brisbanenorthphn.org.au/page/publications/partners-in-health/partners-in-health-september-2016','35.210.133.198','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/publications/partners-in-health/partners-in-health-september-2016','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 06:01:37',0),(69080,'2021-05-02 06:09:49','2021-05-02 06:09:49','127c29c6-ea6d-4200-bbe8-620892af6a6a',1,'/page/publications/reports-and-plans/health-needs-assessments','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/reports-and-plans/health-needs-assessments','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 06:09:49',0),(69081,'2021-05-02 06:09:55','2021-05-02 06:09:55','cedd9627-a7f6-4e21-905d-2edb6e4888a4',1,'/router.php','','121.89.236.242','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:48.0) Gecko/20100101 Firefox/48.0','Template not found: router.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 06:09:55',0),(69082,'2021-05-02 06:19:58','2021-05-02 06:19:58','dea621bf-bf77-4712-894d-0c795f8e787c',1,'/content/Document/Templates/4.9/MNHHS RBWH Referral ZM v4_9.rtf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.9/MNHHS RBWH Referral ZM v4_9.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 06:19:58',0),(69083,'2021-05-02 06:33:40','2021-05-02 06:33:40','7097be92-3f5d-4ae6-8472-8ed40a3aa290',1,'/content/Document/Templates/4.7/MNHHS Palliative Care Ref ZM 4_7.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.7/MNHHS%20Palliative%20Care%20Ref%20ZM%204_7.rtf','34.121.182.57','Go-http-client/1.1','Template not found: content/Document/Templates/4.7/MNHHS Palliative Care Ref ZM 4_7.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 06:33:40',0),(69084,'2021-05-02 06:50:43','2021-05-02 06:50:43','2cd24ba3-7133-4f76-a96d-1f85e1b0850e',1,'/page/news-and-events/events/upcoming/mentoring-and-coaching-skills-to-empower---june-2016/','http://brisbanenorthphn.org.au/page/news-and-events/events/upcoming/mentoring-and-coaching-skills-to-empower---june-2016/','35.210.116.181','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/events/upcoming/mentoring-and-coaching-skills-to-empower---june-2016','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 06:50:43',0),(69085,'2021-05-02 06:50:50','2021-05-02 06:50:50','99af2d9e-8737-48f7-b7b5-1fa9c2fbd9c8',1,'/content/Document/Templates/4.12/PractiX%20v4.12/MNHHS%20Paediatric%20PractiX%20v4_12.doc','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.12/PractiX%2520v4.12/MNHHS%2520Paediatric%2520PractiX%2520v4_12.doc','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/Templates/4.12/PractiX v4.12/MNHHS Paediatric PractiX v4_12.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 06:50:50',0),(69086,'2021-05-02 07:01:37','2021-05-02 07:01:37','07be4185-fbe5-4e55-8124-1350e4614480',1,'/page/news-and-events/events/archive/foundational-ecg-interpretation/','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/archive/foundational-ecg-interpretation','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 07:01:37',0),(69087,'2021-05-02 07:26:04','2021-05-02 15:45:33','960175bf-7d6f-4c56-a215-a83d2fa13a44',1,'/page/news-and-events/latest-news/review-and-evolve-what’s-next-for-phn-commissioned-services','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/review-and-evolve-what’s-next-for-phn-commissioned-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-02 15:45:33',0),(69088,'2021-05-02 08:13:22','2021-05-13 13:28:39','b85db9f0-ca5e-43f9-aaf6-8d0067580072',1,'/content/Document/Templates/V5.1 Jan 2018/MD/MNHHS Caboolture Hospital v5_1 MD.rtf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/V5.1 Jan 2018/MD/MNHHS Caboolture Hospital v5_1 MD.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-13 13:28:39',0),(69089,'2021-05-02 08:21:13','2021-05-10 22:07:48','3004dba1-dbf8-4e42-b582-ef13cd05188f',1,'/content/Document/Media Releases/150701_PHN launch heralds new era.pdf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Media Releases/150701_PHN launch heralds new era.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-10 22:07:48',0),(69090,'2021-05-02 08:24:03','2021-05-18 11:06:33','97e0a001-d6d7-4e0a-85dc-d8c060fa0150',1,'/page/home/banners/support-your-patients-with-the-ndis','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/banners/support-your-patients-with-the-ndis','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 11:06:33',0),(69091,'2021-05-02 09:00:57','2021-05-15 03:55:53','804a0f8c-439c-449b-b924-97eb5dc9dd7d',1,'/page/news-and-events/latest-news/working-together-to-improve-care-for-chronic-kidney-disease','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/working-together-to-improve-care-for-chronic-kidney-disease','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 03:55:53',0),(69092,'2021-05-02 09:05:44','2021-05-14 18:31:37','630b357a-0ec9-4ca1-bb93-a975b11c44f8',1,'/yearinreview/2017-18/a-message-from-the-ceo-and-chair/www.brisbanenorthphn.org.au','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/a-message-from-the-ceo-and-chair/www.brisbanenorthphn.org.au','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 18:31:37',0),(69093,'2021-05-02 09:08:14','2021-05-17 07:00:15','019bf33d-4b33-4c04-9d18-dc6e0c9f5df5',1,'/page/news-and-events/events/upcoming/brisbane-north-gp-webinar-series-covid-19-update---expert-panel-advice-and-support','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/brisbane-north-gp-webinar-series-covid-19-update---expert-panel-advice-and-support','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 07:00:15',0),(69094,'2021-05-02 09:20:38','2021-05-02 09:20:38','f8a59967-0bfe-470b-b6b3-e6a1270abe24',1,'/content/Document/Templates/4.12/MD v4.12/MNHHS Caboolture Referral MD v4_12.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.12/MD%20v4.12/MNHHS%20Caboolture%20Referral%20MD%20v4_12.rtf','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/Templates/4.12/MD v4.12/MNHHS Caboolture Referral MD v4_12.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 09:20:38',0),(69095,'2021-05-02 09:22:28','2021-05-10 08:43:31','d536684d-2625-4136-a046-a26f380e04cb',1,'/content/Document/rediCASE Tip Sheet SP EnterTreatmentServiceContact_FINALJul17.docx','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/rediCASE Tip Sheet SP EnterTreatmentServiceContact_FINALJul17.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 08:43:31',0),(69096,'2021-05-02 09:34:21','2021-05-08 05:37:07','b51630e8-907f-42f5-8340-2d1e701b5978',1,'/content/Document/160630 Metro South Health_Confirmed measles case in Brisbane.pdf','http://www.brisbanenorthphn.org.au/content/Document/160630%20Metro%20South%20Health_Confirmed%20measles%20case%20in%20Brisbane.pdf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/160630 Metro South Health_Confirmed measles case in Brisbane.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-08 05:37:07',0),(69097,'2021-05-02 09:37:54','2021-05-02 09:37:54','32658b74-b9e4-4ac8-b606-c4133debcf56',1,'/content/Document/Templates/6.1/Specialists List_Maternity_6_1.pdf','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/6.1/Specialists List_Maternity_6_1.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 09:37:54',0),(69098,'2021-05-02 09:56:34','2021-05-02 09:56:34','acf98bfd-d65f-4bf0-bc57-9c643e142511',1,'/content/Document/Primary care liaison/MNHHS Maternity Ref v6_2 ZM.rtf','http://www.brisbanenorthphn.org.au/content/Document/Primary%20care%20liaison/MNHHS%20Maternity%20Ref%20v6_2%20ZM.rtf','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/MNHHS Maternity Ref v6_2 ZM.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 09:56:34',0),(69099,'2021-05-02 10:01:30','2021-05-02 10:01:30','6f1855eb-2528-4f16-8e8c-bf673d2fb36a',1,'/content/Document/Templates/5.3/MNHHS Palliative Care 5_3 MD .rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%20Palliative%20Care%20%205_3%20MD%20.rtf','35.186.188.225','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS Palliative Care 5_3 MD .rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 10:01:30',0),(69100,'2021-05-02 10:08:47','2021-05-07 06:53:48','abef40d0-c7ca-4d56-850c-bad90aa1a942',1,'/content/Document/Pathways/The Lymphoedema Handbook.pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/The Lymphoedema Handbook.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-07 06:53:48',0),(69101,'2021-05-02 10:15:08','2021-05-13 15:50:47','01ae08d6-15ff-4d27-bd6f-8fd4b335bd70',1,'/jobs/practice-medical-centre-registered-nurse-part-time-casual','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/practice-medical-centre-registered-nurse-part-time-casual','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,18,'2021-05-13 15:50:47',0),(69102,'2021-05-02 10:42:09','2021-05-08 06:00:55','667c9c25-8078-42ab-9d68-0d934ae46cf8',1,'/content/Document/Templates/4.12/BP v4.12/MNHHS RBWH Referral BP V4_12.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.12/BP%20v4.12/MNHHS%20RBWH%20Referral%20BP%20V4_12.rtf','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/Templates/4.12/BP v4.12/MNHHS RBWH Referral BP V4_12.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-08 06:00:55',0),(69103,'2021-05-02 10:46:54','2021-05-08 05:58:49','1b03b3d8-6533-4be4-806e-8b4ac799f6f8',1,'/content/Document/Planning/2015-16HNA_Compendiumofmaps.pdf','http://www.brisbanenorthphn.org.au/content/Document/Planning/2015-16HNA_Compendiumofmaps.pdf','35.233.170.71','Go-http-client/1.1','Template not found: content/Document/Planning/2015-16HNA_Compendiumofmaps.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-08 05:58:49',0),(69104,'2021-05-02 11:44:14','2021-05-02 11:44:14','d3b4318a-c74a-497b-852c-d967fac24f90',1,'/content/Document/Templates/4.4/MNHHS RBWH Referral BP v4.4.rtf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.4/MNHHS RBWH Referral BP v4.4.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 11:44:14',0),(69105,'2021-05-02 12:00:43','2021-05-02 12:00:43','95e61266-f943-4f3f-9f3e-ac8a14e9bceb',1,'/page/news-and-events/events/upcoming/secondary-prevention-in-cardiology-symposium-2015/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/secondary-prevention-in-cardiology-symposium-2015','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 12:00:43',0),(69106,'2021-05-02 12:12:40','2021-05-02 12:12:40','e2a89100-a62b-4c26-97e8-3427d235f9d0',1,'/content/Document/Templates/5.3/MNHHS%20Redcliffe%20Hospital%205_3%20MD%20.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%2520Redcliffe%2520Hospital%25205_3%2520MD%2520.rtf','35.186.188.225','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS Redcliffe Hospital 5_3 MD .rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 12:12:40',0),(69107,'2021-05-02 12:13:22','2021-05-02 12:13:22','aef3016c-0c48-441a-8788-db94560d5cf9',1,'/position-type/nurse-receptionist','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: position-type/nurse-receptionist','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 12:13:22',0),(69108,'2021-05-02 12:15:11','2021-05-02 12:15:11','19bab97d-be24-4fc1-b00e-9de670778d6f',1,'/page/health-professionals/community-care/regional-assessment-service','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/community-care/regional-assessment-service','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 12:15:11',0),(69109,'2021-05-02 12:20:33','2021-05-11 05:41:38','ba72f505-ecb7-4258-9807-1710fafec720',1,'/content/Document/Pathways/RACGP pharmacotherapy algorithm_p48-49.pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/RACGP pharmacotherapy algorithm_p48-49.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-11 05:41:38',0),(69110,'2021-05-02 12:24:05','2021-05-02 21:45:13','2662e914-3fea-4bb5-bcd3-b15ede74d44a',1,'/content/Document/MNHHS Palliative Referral ZM v4_11(1).rtf','http://www.brisbanenorthphn.org.au/content/Document/MNHHS%20Palliative%20Referral%20ZM%20v4_11(1).rtf','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/MNHHS Palliative Referral ZM v4_11(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-02 21:45:13',0),(69111,'2021-05-02 12:37:06','2021-05-08 23:50:51','119c4bba-4aa3-47eb-903a-4c163c732a03',1,'/page/news-and-events/events/upcoming/making-paediatric-integrated-care-a-reality/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/making-paediatric-integrated-care-a-reality','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-08 23:50:51',0),(69112,'2021-05-02 12:46:25','2021-05-02 12:46:25','d78e3518-d162-424c-8cdc-1f51f02aefab',1,'/page/health-professionals/mental-health-services/brisbane-mind-services/information-for-providers/contact','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/mental-health-services/brisbane-mind-services/information-for-providers/contact','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 12:46:25',0),(69113,'2021-05-02 12:59:43','2021-05-04 13:25:27','897b1f1e-6ea2-4b32-a8c2-531a592b46a1',1,'/content/Document/Events/2018/Invitation - Exercise is Medicine Workshops 2018(1).pdf','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2018/Invitation - Exercise is Medicine Workshops 2018(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-04 13:25:27',0),(69114,'2021-05-02 13:03:42','2021-05-02 13:03:42','8419bc87-919a-48b0-ba34-e2726da61a2e',1,'/content/Document/Engagement/DRA_MHAOD_CRG_EOI_171020 gl.pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Engagement/DRA_MHAOD_CRG_EOI_171020 gl.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 13:03:42',0),(69115,'2021-05-02 13:04:40','2021-05-02 13:04:40','6c143291-856e-434a-98a5-375117e010ec',1,'/content/Document/Templates/4.3/MNHHS Maternity Referral MD v4.3.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.3/MNHHS%20Maternity%20Referral%20MD%20v4.3.rtf','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/Templates/4.3/MNHHS Maternity Referral MD v4.3.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 13:04:40',0),(69116,'2021-05-02 13:18:01','2021-05-15 20:34:52','85786549-61e3-4c15-b7a4-200d15bdae61',1,'/page/news-and-events/events/upcoming/redicase-training-may29/','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/redicase-training-may29','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-15 20:34:52',0),(69117,'2021-05-02 13:48:27','2021-05-08 09:52:54','35633298-3b70-45e0-8846-ec149705d9c7',1,'/content/Document/Templates/4.7/MNHHS RBWH Referral BP v4_7.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.7/MNHHS%20RBWH%20Referral%20BP%20v4_7.rtf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Templates/4.7/MNHHS RBWH Referral BP v4_7.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-08 09:52:54',0),(69118,'2021-05-02 14:04:03','2021-05-02 14:04:03','c6d792ad-9641-43da-aedd-fc12c108c3f8',1,'/content/Document/Events/2019/Metro%20North%20Health%20Forum/DRA_MN_Health_Forum_Program_2019.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/Metro%2520North%2520Health%2520Forum/DRA_MN_Health_Forum_Program_2019.pdf','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/Events/2019/Metro North Health Forum/DRA_MN_Health_Forum_Program_2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 14:04:03',0),(69119,'2021-05-02 14:07:33','2021-05-02 14:07:33','81a6f175-0cd7-4bf8-a28e-74ad2c1dc6f3',1,'/page/health-professionals/Local Positions Vacant/other-health-care-professional---caboolture','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/other-health-care-professional---caboolture','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 14:07:33',0),(69120,'2021-05-02 15:07:43','2021-05-02 15:07:43','9046ab00-42d8-4b6f-a66c-84def2499e80',1,'/content/Image/Home Page Slider Banners/web_banner_MyHealthRecord.jpg','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Image/Home Page Slider Banners/web_banner_MyHealthRecord.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 15:07:43',0),(69121,'2021-05-02 15:08:28','2021-05-15 13:14:44','9b672c74-3c9e-4ca4-9d1d-ae55676853b5',1,'/content/Image/IMG_0265.jpg','','49.12.67.51','Mozilla/5.0 (X11; Fedora; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36','Template not found: content/Image/IMG_0265.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-15 13:14:44',0),(69122,'2021-05-02 15:34:41','2021-05-05 15:59:32','011d010a-ab99-46e9-a57b-810cbde11439',1,'/content/Document/Pathways/clinical_guidelines_stroke_managment_2010_interactive.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/clinical_guidelines_stroke_managment_2010_interactive.pdf','35.186.188.225','Go-http-client/1.1','Template not found: content/Document/Pathways/clinical_guidelines_stroke_managment_2010_interactive.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-05 15:59:32',0),(69123,'2021-05-02 15:47:07','2021-05-02 15:47:07','3ecfd1db-d48d-4313-b8cd-eb163fbcf32a',1,'/content/Document/Events/2018/INVITATION - Mental Health GP evening - 3 May 2018 180412.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2018/INVITATION%20-%20Mental%20Health%20GP%20evening%20-%203%20May%202018%20180412.pdf','34.94.5.119','Go-http-client/1.1','Template not found: content/Document/Events/2018/INVITATION - Mental Health GP evening - 3 May 2018 180412.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 15:47:07',0),(69124,'2021-05-02 15:55:45','2021-05-02 15:55:45','d437cb52-03fe-4f43-938a-c0612d549340',1,'/events/implanon-nxt-training','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/implanon-nxt-training','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 15:55:45',0),(69125,'2021-05-02 16:10:49','2021-05-02 16:10:49','b1ac9289-fabe-4871-a734-436106be8e58',1,'/page/news-and-events/events/upcoming/arthritis-queenslands-17th-annual-health-professionals-seminar/','http://brisbanenorthphn.org.au/page/news-and-events/events/upcoming/arthritis-queenslands-17th-annual-health-professionals-seminar/','35.210.62.152','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/events/upcoming/arthritis-queenslands-17th-annual-health-professionals-seminar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 16:10:49',0),(69126,'2021-05-02 16:30:18','2021-05-11 22:31:16','a245b246-4a11-4184-8992-8a0cc9c7b11d',1,'/page/news-andevents/latest-news/covid-19-information/fever-clinic-information/','','110.142.198.134','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','Template not found: page/news-andevents/latest-news/covid-19-information/fever-clinic-information','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-11 22:31:16',0),(69127,'2021-05-02 17:13:47','2021-05-02 17:13:47','17c4ffea-8dbe-4b0a-8c0d-227f55c28ddf',1,'/content/Document/Templates/5.3/MNHHS%20Palliative%20Care%20%205_3%20BP.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%2520Palliative%2520Care%2520%25205_3%2520BP.rtf','34.121.182.57','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS Palliative Care 5_3 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 17:13:47',0),(69128,'2021-05-02 17:21:42','2021-05-02 17:21:42','d23bd34c-84d0-4e10-b608-b1c3286383a7',1,'/content/Document/Network%20Link/Network%20Link_November_2018_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%2520Link/Network%2520Link_November_2018_WEB.pdf','104.198.141.65','Go-http-client/1.1','Template not found: content/Document/Network Link/Network Link_November_2018_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 17:21:42',0),(69129,'2021-05-02 17:56:42','2021-05-11 17:34:36','d509a7f9-b16b-4940-b02a-0744f5ebbc83',1,'/content/Document/From Qld Health/Poster - Coronavirus (General Prevention, English, A3, Internal Printing) (1).pdf','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/From Qld Health/Poster - Coronavirus (General Prevention, English, A3, Internal Printing) (1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 17:34:36',0),(69130,'2021-05-02 18:08:37','2021-05-15 08:38:00','d799e0ae-b6d1-411e-b183-23cd6cd5fba5',1,'/content/Document/Templates/5.2/Specialists List_Paediatrics_5_2.pdf','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Templates/5.2/Specialists List_Paediatrics_5_2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 08:38:00',0),(69131,'2021-05-02 18:33:19','2021-05-02 18:33:19','aa8f8a34-0e91-4dec-bb85-e35e82dcd5b3',1,'/page/news-and-events/events/upcoming/seasons-for-growth/','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/seasons-for-growth','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 18:33:19',0),(69132,'2021-05-02 18:58:02','2021-05-12 15:28:33','48a78a2b-6f12-483c-9971-899e70ef780d',1,'/page/health-professionals/Local Positions Vacant/general-practitioners---wavell-heights','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioners---wavell-heights','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 15:28:33',0),(69133,'2021-05-02 19:09:24','2021-05-02 19:09:24','6a54b64d-f406-40f0-8c18-ad1b43299d3d',1,'/page/news-and-events/events/archive/redicase-training-may29','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/redicase-training-may29','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 19:09:24',0),(69134,'2021-05-02 19:46:04','2021-05-02 19:46:04','d2709819-1bda-4866-b5e9-355953065f9a',1,'/content/Document/Media%20Releases/150715_Funding%20boost%20for%20mental%20health.pdf','','104.198.141.65','Go-http-client/1.1','Template not found: content/Document/Media Releases/150715_Funding boost for mental health.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 19:46:04',0),(69135,'2021-05-02 19:47:58','2021-05-18 18:30:05','92b31cc6-1951-41a3-af3b-0ef3b5f4e845',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist-caboolture/','','157.55.39.129','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist-caboolture','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 18:30:05',0),(69136,'2021-05-02 20:43:05','2021-05-02 20:43:05','170e305a-2087-44e9-a8fd-d606faca0f64',1,'/content/Document/Templates/5.3/MNHHS%20TPCH%205_3%20MD%20.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%2520TPCH%25205_3%2520MD%2520.rtf','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS TPCH 5_3 MD .rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 20:43:05',0),(69137,'2021-05-02 20:51:21','2021-05-08 16:18:05','fb6f1726-c66f-4c0a-a7f1-6f077933c62f',1,'/content/Document/Network%20Link/Network%20Link_May_2019_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%2520Link/Network%2520Link_May_2019_WEB.pdf','35.233.170.71','Go-http-client/1.1','Template not found: content/Document/Network Link/Network Link_May_2019_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-08 16:18:05',0),(69138,'2021-05-02 21:19:00','2021-05-16 07:42:57','d664a32a-bc97-46c8-a643-e319c882603f',1,'/page/news-and-events/latest-news/helping-practices-meet-quality-improvement-milestones','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/helping-practices-meet-quality-improvement-milestones','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 07:42:57',0),(69139,'2021-05-02 22:02:39','2021-05-02 22:02:39','a72ed5f0-a34c-490c-8ba5-81f6beddd3da',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---strathpine/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---strathpine','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 22:02:39',0),(69140,'2021-05-02 22:04:51','2021-05-02 22:04:51','e2b8ceb9-f557-4d99-ba16-26d331b54ea9',1,'/health_directory/view.php','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: health_directory/view.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 22:04:51',0),(69141,'2021-05-02 22:44:55','2021-05-10 06:33:20','8c10307a-bf38-40f7-a7ba-91c51cd6ea69',1,'/content/Document/Templates/4.12/ZM v4.12/MNHHS Redcliffe Referral ZM v4_12.rtf','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.12/ZM v4.12/MNHHS Redcliffe Referral ZM v4_12.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 06:33:20',0),(69142,'2021-05-02 23:21:31','2021-05-18 11:31:17','d87341fe-c3c1-4455-9706-c8940ab2e029',1,'/page/news-and-events/events/upcoming/prolonged-exposure-therapy-3-day-training-program-and-2-day-workshop','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/prolonged-exposure-therapy-3-day-training-program-and-2-day-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 11:31:17',0),(69143,'2021-05-02 23:30:45','2021-05-02 23:30:45','d2fca778-da11-4865-a8f5-7d3686b05fe1',1,'/matthews9793/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: matthews9793','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 23:30:45',0),(69144,'2021-05-02 23:38:58','2021-05-08 19:41:13','7fe90642-e5ad-4930-825b-e3e6e4592c17',1,'/content/Document/Templates/Brisbane MIND/MIND Referral V3 MD.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/Brisbane%20MIND/MIND%20Referral%20V3%20MD.rtf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Templates/Brisbane MIND/MIND Referral V3 MD.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-08 19:41:13',0),(69145,'2021-05-02 23:40:51','2021-05-08 19:43:09','b7c20a1a-9480-49fd-ab08-72f96af23de5',1,'/content/Document/Events/INVITATION - Rheumatic Heart Disease Update_1904.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/INVITATION%20-%20Rheumatic%20Heart%20Disease%20Update_1904.pdf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Events/INVITATION - Rheumatic Heart Disease Update_1904.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-08 19:43:09',0),(69146,'2021-05-02 23:44:17','2021-05-02 23:44:18','fe5d4483-14f3-423d-991f-b6ee322ceea0',1,'/news-/','','141.168.191.235','','Template not found: news-','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-02 23:44:18',0),(69147,'2021-05-02 23:56:14','2021-05-02 23:56:14','9ed2373f-184b-4651-8d80-c80f941bac46',1,'/page/health-professionals/Local Positions Vacant/credentialed-mental-health-nurse-required-for-mental-health-nurse-incentive-program-mhnip/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/credentialed-mental-health-nurse-required-for-mental-health-nurse-incentive-program-mhnip','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-02 23:56:14',0),(69148,'2021-05-02 23:57:51','2021-05-08 20:00:05','cb2ec70b-1827-4687-a0ea-07d30fc5c0bd',1,'/content/Document/Network%20Link_October_2018_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%2520Link_October_2018_WEB.pdf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Network Link_October_2018_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-08 20:00:05',0),(69149,'2021-05-03 00:07:44','2021-05-03 00:07:44','d881b647-1ffa-4556-a5ab-aa9eee6780d0',1,'/content/Document/Templates/5.3/MNHHS%20TPCH%20v5_3%20ZM.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%2520TPCH%2520v5_3%2520ZM.rtf','34.94.135.136','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS TPCH v5_3 ZM.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 00:07:44',0),(69150,'2021-05-03 00:12:17','2021-05-11 13:14:14','ff7aa74c-1ed0-4aa5-b5da-ddd58d9b0e22',1,'/content/Document/Templates/4.12/Specialists Lists/Specialists List_The Prince Charles Hospital_4_12.pdf','','178.63.51.106','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.67 Safari/537.36','Template not found: content/Document/Templates/4.12/Specialists Lists/Specialists List_The Prince Charles Hospital_4_12.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 13:14:14',0),(69151,'2021-05-03 00:26:47','2021-05-03 00:26:47','62875fc5-b11b-462a-ac77-68904b22260d',1,'/page/news-and-events/events/upcoming/qcoss-state-conference/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/qcoss-state-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 00:26:47',0),(69152,'2021-05-03 00:34:49','2021-05-05 20:44:50','2345414e-a15d-49b9-bbe4-8b6148e90d7a',1,'/content/Document/Brisbane MIND Provider List June 2017(1).pdf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List June 2017(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-05 20:44:50',0),(69153,'2021-05-03 01:15:35','2021-05-08 21:17:36','ee49cc05-13eb-404d-a093-295ad8d91f49',1,'/content/Document/Media%20Releases/151126%20-%20Brisbane%20North%20PHN%20will%20play%20significant%20role%20in%20mental%20health%20reform.pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%2520Releases/151126%2520-%2520Brisbane%2520North%2520PHN%2520will%2520play%2520significant%2520role%2520in%2520mental%2520health%2520reform.pdf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Media Releases/151126 - Brisbane North PHN will play significant role in mental health reform.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-08 21:17:36',0),(69154,'2021-05-03 01:20:39','2021-05-03 01:20:39','3a5f01c0-af3a-497b-82a8-b03b06fe21f2',1,'/content/Document/FORM 1 - New Clinician Request Form.docx','http://www.brisbanenorthphn.org.au/content/Document/FORM%201%20-%20New%20Clinician%20Request%20Form.docx','104.198.141.65','Go-http-client/1.1','Template not found: content/Document/FORM 1 - New Clinician Request Form.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 01:20:39',0),(69155,'2021-05-03 01:21:10','2021-05-03 01:21:10','fa4aaccf-fa1f-4727-86af-09c05366e522',1,'/content/Document/Pre-vaccination%20Checklist%20for%20Zostavax%20Administration%20-%20FINAL.DOCX','http://www.brisbanenorthphn.org.au/content/Document/Pre-vaccination%2520Checklist%2520for%2520Zostavax%2520Administration%2520-%2520FINAL.DOCX','34.73.220.108','Go-http-client/1.1','Template not found: content/Document/Pre-vaccination Checklist for Zostavax Administration - FINAL.DOCX','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 01:21:10',0),(69156,'2021-05-03 01:28:03','2021-05-03 01:28:03','d6731bac-4aa8-4c85-ae51-1476e37c0f50',1,'/content/Document/Templates/6.1/MNHHS Palliative Ref v6_1 BP.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/MNHHS%20Palliative%20Ref%20v6_1%20BP.rtf','34.94.135.136','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/MNHHS Palliative Ref v6_1 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 01:28:03',0),(69157,'2021-05-03 01:29:51','2021-05-03 01:29:51','67108efa-85ba-41dd-8bf8-27c898a7f93c',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-required---excella-medical-centre-nundah/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-required---excella-medical-centre-nundah','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 01:29:51',0),(69158,'2021-05-03 01:56:49','2021-05-07 14:42:27','813f3211-9495-4acf-9b76-a16a021dbdfe',1,'/content/Document/Pathways/chest pain table -CVD risk factors.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/chest%20pain%20table%20-CVD%20risk%20factors.pdf','35.185.207.84','Go-http-client/1.1','Template not found: content/Document/Pathways/chest pain table -CVD risk factors.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 14:42:27',0),(69159,'2021-05-03 02:19:41','2021-05-08 22:06:35','de1c3d2b-60fd-4cb4-90e6-a486f25aa564',1,'/content/Document/Templates/4.12/PractiX v4.12/MNHHS Paediatric PractiX v4_12.doc','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.12/PractiX%20v4.12/MNHHS%20Paediatric%20PractiX%20v4_12.doc','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/Templates/4.12/PractiX v4.12/MNHHS Paediatric PractiX v4_12.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-08 22:06:35',0),(69160,'2021-05-03 02:38:41','2021-05-03 02:38:41','bff60b0b-5955-405a-824b-20840de791e4',1,'/content/Document/Reports/FIN_AAWP_NPSM%2018-19_181114%20WEB%20(1).docx','http://www.brisbanenorthphn.org.au/content/Document/Reports/FIN_AAWP_NPSM%252018-19_181114%2520WEB%2520(1).docx','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/Reports/FIN_AAWP_NPSM 18-19_181114 WEB (1).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 02:38:41',0),(69161,'2021-05-03 02:45:17','2021-05-03 02:45:17','62199ade-7e8f-4103-b168-ea22136d238a',1,'/content/Document/MR_National%20report%20updates%20child%20vaccine%20coverage%20in%20Brisbane%20North_160218.pdf','http://www.brisbanenorthphn.org.au/content/Document/MR_National%2520report%2520updates%2520child%2520vaccine%2520coverage%2520in%2520Brisbane%2520North_160218.pdf','34.94.141.43','Go-http-client/1.1','Template not found: content/Document/MR_National report updates child vaccine coverage in Brisbane North_160218.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 02:45:17',0),(69162,'2021-05-03 03:54:28','2021-05-03 03:54:28','e7102662-8029-4bf2-b171-9ace032ae819',1,'/content/Document/Events/2018/ICIF-COPD-Project-GP-ALM-2018_Wednesdays.pdf','','66.249.68.29','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Events/2018/ICIF-COPD-Project-GP-ALM-2018_Wednesdays.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 03:54:28',0),(69163,'2021-05-03 04:06:27','2021-05-03 04:06:27','339b044b-b73e-40dd-a64e-218e36322dfb',1,'/content/Document/Events/2018/Invitation Caboolture Residential Aged Care Collaborative - 27 Sept 2018.pdf','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2018/Invitation Caboolture Residential Aged Care Collaborative - 27 Sept 2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 04:06:27',0),(69164,'2021-05-03 04:24:19','2021-05-06 17:59:44','0c1ea426-33ca-4639-9a6d-5b1d88a80c06',1,'/page/health-professionals/Local Positions Vacant/psychologist-required---all-about-kids-counselling-and-psychology/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/psychologist-required---all-about-kids-counselling-and-psychology','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-06 17:59:44',0),(69165,'2021-05-03 04:33:56','2021-05-10 06:28:16','23a08d51-748f-4417-bb2d-b2decb87ff13',1,'/content/Document/Events/2018/INVITATION - 180801_GP Haematology and Oncology workshop.pdf','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Events/2018/INVITATION - 180801_GP Haematology and Oncology workshop.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 06:28:16',0),(69166,'2021-05-03 04:37:44','2021-05-03 04:37:44','4b239f6b-70d4-4c1e-a32e-718b652b1b2c',1,'/faq/members/ways-to-buy','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: faq/members/ways-to-buy','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 04:37:44',0),(69167,'2021-05-03 04:51:59','2021-05-12 18:22:40','390c6ef7-6cc9-41a5-978e-308e65c54930',1,'/admin/entries/events/About the JAM Session BJC Health, with clinics in Parramatta and Chatswood, Sydney have hosted the dynamic JAM session yearly to facilitate training in musculoskeletal and rheumatic disease for GPs. Most health professionals get so …','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: admin/entries/events/About the JAM Session BJC Health, with clinics in Parramatta and Chatswood, Sydney have hosted the dynamic JAM session yearly to facilitate training in musculoskeletal and rheumatic disease for GPs. Most health pr…','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 18:22:40',0),(69168,'2021-05-03 05:04:22','2021-05-06 22:03:08','38f72612-6eac-40b6-ac62-c2587846b05e',1,'/content/Document/Planning/FINAL_AAWP_ Drug and Alcohol Treatment AWP_170717 WEBSITE.pdf','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Planning/FINAL_AAWP_ Drug and Alcohol Treatment AWP_170717 WEBSITE.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 22:03:08',0),(69169,'2021-05-03 05:46:19','2021-05-03 16:33:04','61b831c8-23ac-487a-a43e-8a2143339be1',1,'/content/Document/Aged and community care/Final Plan endorsed Sept 17.pdf','','62.138.18.39','Linguee Bot (http://www.linguee.com/bot; bot@linguee.com)','Template not found: content/Document/Aged and community care/Final Plan endorsed Sept 17.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-03 16:33:04',0),(69170,'2021-05-03 05:48:08','2021-05-03 05:48:08','d116055c-6839-475e-ae76-c7c08b5d4db0',1,'/content/Document/Templates/5.3/MNHHS%20Palliative%20v5_3%20ZM.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%2520Palliative%2520v5_3%2520ZM.rtf','34.94.135.136','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS Palliative v5_3 ZM.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 05:48:08',0),(69171,'2021-05-03 05:59:56','2021-05-03 05:59:56','13026ece-6c47-430e-b053-4e60f01b0aa6',1,'/page/news-and-events/latest-news/covid-19-information/information-for-phn-funded-service-providers','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/covid-19-information/information-for-phn-funded-service-providers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 05:59:56',0),(69172,'2021-05-03 06:48:00','2021-05-09 20:27:30','83bcaeb9-1e17-4c74-b395-6fee1706b05e',1,'/content/Document/Statement','','20.40.170.117','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','Template not found: content/Document/Statement','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-09 20:27:30',0),(69173,'2021-05-03 06:52:48','2021-05-03 06:52:48','170ab95b-7647-4122-b836-d79c6f53a8eb',1,'/content/Document/Templates/5.2/MNHHS Redcliffe Referral v5_2 BP.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.2/MNHHS%20Redcliffe%20Referral%20v5_2%20BP.rtf','34.121.182.57','Go-http-client/1.1','Template not found: content/Document/Templates/5.2/MNHHS Redcliffe Referral v5_2 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 06:52:48',0),(69174,'2021-05-03 06:57:40','2021-05-09 02:26:49','88053cf1-b7eb-4f95-be6a-a55f2a72f656',1,'/content/Document/Nicole%20Stormon%20and%20Jan%20Anderson%20-%20Dental%20Services%20-%20MNHF2018.pdf','http://www.brisbanenorthphn.org.au/content/Document/Nicole%2520Stormon%2520and%2520Jan%2520Anderson%2520-%2520Dental%2520Services%2520-%2520MNHF2018.pdf','35.233.170.71','Go-http-client/1.1','Template not found: content/Document/Nicole Stormon and Jan Anderson - Dental Services - MNHF2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 02:26:49',0),(69175,'2021-05-03 07:22:13','2021-05-03 07:22:13','0219506d-2ebf-4c3e-b6b7-0ec92e5dba20',1,'/page/health-professionals/Local Positions Vacant/vr-gp-required---clayfield/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/vr-gp-required---clayfield','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 07:22:13',0),(69176,'2021-05-03 07:26:14','2021-05-03 07:26:14','2b610bf0-dd46-4731-8339-953afa0f1077',1,'/page/news-and-events/events/upcoming/people-place-and-opportunity-place-based-responses-to-disadvantage/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/people-place-and-opportunity-place-based-responses-to-disadvantage','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 07:26:14',0),(69177,'2021-05-03 07:47:36','2021-05-03 07:47:36','448556f7-39b8-4c79-b1b3-b0fe5cf985de',1,'/content/Document/FORM 5a - Clinician withdrawing from Program.docx','http://www.brisbanenorthphn.org.au/content/Document/FORM%205a%20-%20Clinician%20withdrawing%20from%20Program.docx','34.73.220.108','Go-http-client/1.1','Template not found: content/Document/FORM 5a - Clinician withdrawing from Program.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 07:47:36',0),(69178,'2021-05-03 07:55:46','2021-05-06 22:03:17','9ee7dff2-6c3c-4ff1-bf61-c8b45e8c53fa',1,'/tel:','https://www.google.com/','34.82.179.147','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','Template not found: tel:','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 22:03:17',0),(69179,'2021-05-03 08:01:44','2021-05-09 03:55:58','891a104e-433e-4323-975b-f8987956586c',1,'/content/Document/Network%20Link_1_January_2017_WEB(1).pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%2520Link_1_January_2017_WEB(1).pdf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Network Link_1_January_2017_WEB(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 03:55:58',0),(69180,'2021-05-03 08:06:28','2021-05-03 08:06:28','3ce55d2d-b56d-4a65-97fe-c516a6b7138a',1,'/content/Document/Network%20Link/Network%20Link_11_November_FINAL_web.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%2520Link/Network%2520Link_11_November_FINAL_web.pdf','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/Network Link/Network Link_11_November_FINAL_web.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 08:06:28',0),(69181,'2021-05-03 08:16:41','2021-05-09 04:10:31','72f25899-39b3-4a71-8798-e44fa5b8f2f9',1,'/content/Document/Network%20Link/Network%20Link_October_2018_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%2520Link/Network%2520Link_October_2018_WEB.pdf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Network Link/Network Link_October_2018_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 04:10:31',0),(69182,'2021-05-03 08:19:05','2021-05-03 08:19:05','945d0c65-5038-41b1-b392-9b203245fa59',1,'/content/Document/Events/2018/INVITATION - Care of older people workshop - 17 Nov 2018.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2018/INVITATION%20-%20Care%20of%20older%20people%20workshop%20-%2017%20Nov%202018.pdf','34.73.220.108','Go-http-client/1.1','Template not found: content/Document/Events/2018/INVITATION - Care of older people workshop - 17 Nov 2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 08:19:05',0),(69183,'2021-05-03 08:32:08','2021-05-03 08:32:08','5deaec38-5f99-4a9b-a7b8-b782963c80d9',1,'/content/Document/MNHHS Paediatric PractiX v4_11(1).doc','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/MNHHS Paediatric PractiX v4_11(1).doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 08:32:08',0),(69184,'2021-05-03 08:39:41','2021-05-06 04:00:12','23da0dc1-328a-4635-a057-ae6d2911d0fb',1,'/content/Document/Brisbane MIND Group Listing 2016-17.pdf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Group Listing 2016-17.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 04:00:12',0),(69185,'2021-05-03 08:41:43','2021-05-03 08:41:43','bd116506-96df-48ae-bac0-c396e5986da6',1,'/content/Document/Brisbane%20North%20PHN%20-%202016%20-%202019%20Strategic%20plan.pdf','http://www.brisbanenorthphn.org.au/content/Document/Brisbane%2520North%2520PHN%2520-%25202016%2520-%25202019%2520Strategic%2520plan.pdf','104.198.141.65','Go-http-client/1.1','Template not found: content/Document/Brisbane North PHN - 2016 - 2019 Strategic plan.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 08:41:43',0),(69186,'2021-05-03 08:50:14','2021-05-03 08:50:14','5c158266-03a2-44c0-88c1-05b68c6751f4',1,'/content/Document/Pathways/HealthPathways%20Program%20Update_Sep%202019.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/HealthPathways%2520Program%2520Update_Sep%25202019.pdf','34.73.220.108','Go-http-client/1.1','Template not found: content/Document/Pathways/HealthPathways Program Update_Sep 2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 08:50:14',0),(69187,'2021-05-03 09:36:41','2021-05-09 03:25:04','a9016e00-6560-4e66-b287-949046c17692',1,'/content/Document/APP__AWP_AOD_160506_no attachments_public version for website_161208.pdf','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/APP__AWP_AOD_160506_no attachments_public version for website_161208.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 03:25:04',0),(69188,'2021-05-03 09:40:32','2021-05-03 09:40:32','c9a31a8c-6fdf-4160-8779-38a110fae32e',1,'/content/Document/Reports/RAP_Brisbane%20North%20PHN%20Reflect%20RAP%202019-2020_for%20final%20endorsement_190521.pdf','http://www.brisbanenorthphn.org.au/content/Document/Reports/RAP_Brisbane%2520North%2520PHN%2520Reflect%2520RAP%25202019-2020_for%2520final%2520endorsement_190521.pdf','34.121.182.57','Go-http-client/1.1','Template not found: content/Document/Reports/RAP_Brisbane North PHN Reflect RAP 2019-2020_for final endorsement_190521.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 09:40:32',0),(69189,'2021-05-03 09:41:20','2021-05-03 09:41:20','3343ccd6-c10b-4284-92ae-f9413561dd3f',1,'/content/Document/MNHHS Maternity Referral BP v4_11(1).rtf','http://www.brisbanenorthphn.org.au/content/Document/MNHHS%20Maternity%20Referral%20BP%20v4_11(1).rtf','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/MNHHS Maternity Referral BP v4_11(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 09:41:20',0),(69190,'2021-05-03 09:56:49','2021-05-11 02:11:56','5e74404e-310c-4e65-8d3d-1036b76056db',1,'/page/health-professionals/Local Positions Vacant/psychologist-morayfield-family-doctors-open-minds/','','66.249.68.2','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/psychologist-morayfield-family-doctors-open-minds','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 02:11:56',0),(69191,'2021-05-03 10:11:15','2021-05-03 10:11:15','be2b8709-17a5-4346-9baf-11e2b8fe76e8',1,'/content/Document/Primary%20care%20liaison/MNHHS%20COHD%20Ref%20v6_2%20MD.rtf','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/MNHHS%2520COHD%2520Ref%2520v6_2%2520MD.rtf','35.186.188.225','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/MNHHS COHD Ref v6_2 MD.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 10:11:15',0),(69192,'2021-05-03 10:35:25','2021-05-07 05:03:04','52814e75-7dc4-43d2-a402-aa18b7e1265f',1,'/content/Document/Events/Communicating across cultures in primary health care_2018.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/Communicating%20across%20cultures%20in%20primary%20health%20%20%20%20%20care_2018.pdf','35.185.207.84','Go-http-client/1.1','Template not found: content/Document/Events/Communicating across cultures in primary health care_2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 05:03:04',0),(69193,'2021-05-03 10:46:42','2021-05-03 10:46:42','2d3b6adf-4510-4373-b8c3-77fa3df4465a',1,'/page/news-and-events/events/upcoming/disability-yarn-up/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/disability-yarn-up','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 10:46:42',0),(69194,'2021-05-03 10:49:31','2021-05-09 18:11:27','34872acb-7f9d-4791-a274-b7dbe0ae4ba1',1,'/content/Document/Pathways/Differentiation of dementia from delirium and depression.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/Differentiation%20of%20dementia%20from%20delirium%20and%20depression.pdf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Pathways/Differentiation of dementia from delirium and depression.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-09 18:11:27',0),(69195,'2021-05-03 11:41:35','2021-05-03 11:41:35','67ab6dbc-a6d8-40ad-8648-5eaf9b63edc4',1,'/fr/model/stella69x/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: fr/model/stella69x','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 11:41:35',0),(69196,'2021-05-03 11:46:11','2021-05-09 07:37:37','27bbcca8-c824-467f-b9fb-af39873428c3',1,'/content/Document/Pathways/Signs and Symptoms in the General Population.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/Signs%20and%20Symptoms%20in%20the%20General%20Population.pdf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Pathways/Signs and Symptoms in the General Population.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 07:37:37',0),(69197,'2021-05-03 12:07:10','2021-05-17 04:39:20','314fa385-ea05-48ee-8f23-bea0864efc84',1,'/content/Document/Brisbane MIND Group Listing 2018 Jan to Jul.pdf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Group Listing 2018 Jan to Jul.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 04:39:20',0),(69198,'2021-05-03 12:13:29','2021-05-03 12:13:29','a005332d-56cb-4cd2-aa4a-15f71cd26fe0',1,'/page/health-professionals/Local Positions Vacant/rn-required---shabnariz-pty-ltd/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/rn-required---shabnariz-pty-ltd','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 12:13:29',0),(69199,'2021-05-03 12:19:13','2021-05-08 10:44:26','430118b4-b1f0-4eda-ac7d-2088711871a3',1,'/page/news-and-events/events/upcoming/mental-health-in-north-brisbane-and-moreton-bay-information-session---15-march-2016/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/mental-health-in-north-brisbane-and-moreton-bay-information-session---15-march-2016','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-08 10:44:26',0),(69200,'2021-05-03 12:26:32','2021-05-03 12:26:32','43ecd26a-dd36-42a6-99c1-bc788a305a5b',1,'/signup','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: signup','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 12:26:32',0),(69201,'2021-05-03 13:04:18','2021-05-03 13:04:18','b06c73e6-1078-471c-a4be-ea9317de8edf',1,'/content/Document/Primary%20care%20liaison/eHealth-PIP-toolkit-generic.pdf','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/eHealth-PIP-toolkit-generic.pdf','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/eHealth-PIP-toolkit-generic.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 13:04:18',0),(69202,'2021-05-03 13:10:50','2021-05-03 13:10:50','192f9d3a-1262-481a-9a54-04d688fbef79',1,'/content/Document/Media Releases/MR_Brisbane North PHN farewells Board Chair_170206.pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%20Releases/MR_Brisbane%20North%20PHN%20farewells%20Board%20Chair_170206.pdf','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/Media Releases/MR_Brisbane North PHN farewells Board Chair_170206.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 13:10:50',0),(69203,'2021-05-03 13:28:18','2021-05-10 11:35:30','5e716b31-ccc4-4101-9618-73ddcf66abd9',1,'/content/Document/PD_ManContracts_150316.pdf','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/PD_ManContracts_150316.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 11:35:30',0),(69204,'2021-05-03 13:30:44','2021-05-09 09:20:45','5e089efe-991c-4ac4-b644-d84a8a18f007',1,'/content/Document/Suicide%20prevention%20services%20guide%20v1_0December2017web.pdf','http://www.brisbanenorthphn.org.au/content/Document/Suicide%2520prevention%2520services%2520guide%2520v1_0December2017web.pdf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Suicide prevention services guide v1_0December2017web.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 09:20:45',0),(69205,'2021-05-03 13:35:01','2021-05-03 13:35:01','89d15b43-45dc-40f3-b9c6-f47711f447f5',1,'/page/news-and-events/events/upcoming/icon-cancer-centre-cpd-weekend---practical-cancer-care-for-gps','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/icon-cancer-centre-cpd-weekend---practical-cancer-care-for-gps','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 13:35:01',0),(69206,'2021-05-03 13:37:44','2021-05-09 09:31:38','4132ce19-f35d-49a1-bc78-4f2224054e22',1,'/content/Document/Aged%20and%20community%20care/A8_%20PSC%20Terms%20of%20Reference.docx','http://www.brisbanenorthphn.org.au/content/Document/Aged%2520and%2520community%2520care/A8_%2520PSC%2520Terms%2520of%2520Reference.docx','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/Aged and community care/A8_ PSC Terms of Reference.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 09:31:38',0),(69207,'2021-05-03 13:40:11','2021-05-03 13:40:11','e194cab0-1769-4c63-9a92-b55c459db0b2',1,'/content/Document/Templates/TCC/Teamcare%20Referral%20ZM%20130604.rtf','','34.121.182.57','Go-http-client/1.1','Template not found: content/Document/Templates/TCC/Teamcare Referral ZM 130604.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 13:40:11',0),(69208,'2021-05-03 13:52:24','2021-05-10 07:20:25','f5b55488-dbc0-4c92-a2fd-78d9f695aa4b',1,'/content/Document/Brisbane North Aged Care Forum Program 17 June 2020.pdf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane North Aged Care Forum Program 17 June 2020.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-10 07:20:25',0),(69209,'2021-05-03 14:03:41','2021-05-03 20:10:43','f3ea3cf1-3509-4a1b-8209-65f25e788a0d',1,'/tel:07 3252 7614','https://www.google.com/','35.203.132.48','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36','Template not found: tel:07 3252 7614','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-03 20:10:43',0),(69210,'2021-05-03 14:09:03','2021-05-06 08:50:42','c35a5dee-85b5-40f5-b38a-acde0ddeb6bf',1,'/content/Document/Templates/4.5/MNHHS TPCH Referral MD v4.5 160101.rtf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.5/MNHHS TPCH Referral MD v4.5 160101.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 08:50:42',0),(69211,'2021-05-03 14:33:57','2021-05-03 14:33:57','02a57f0a-f8a6-4031-8c39-26eabccfe1f8',1,'/content/Document/Events/ChronicDiseaseSupportProgram-Lutwyche-20190223 (1).pdf','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/ChronicDiseaseSupportProgram-Lutwyche-20190223 (1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 14:33:57',0),(69212,'2021-05-03 14:54:52','2021-05-03 14:54:52','0d3c9207-59df-4538-905a-a8857fd2e059',1,'/content/Document/Templates/4.9/MNHHS TPCH Referral PractiX v4_9.doc','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.9/MNHHS%20TPCH%20Referral%20PractiX%20v4_9.doc','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/Templates/4.9/MNHHS TPCH Referral PractiX v4_9.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 14:54:52',0),(69213,'2021-05-03 14:56:57','2021-05-03 14:56:57','710fa825-9b6b-4b0f-ac61-0ea36f882351',1,'/page/news-and-events/events/upcoming/dementia-detect-early---meet-with-dementia-specialist-dr-allan-shell/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/dementia-detect-early---meet-with-dementia-specialist-dr-allan-shell','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 14:56:57',0),(69214,'2021-05-03 15:22:30','2021-05-07 22:42:42','cbee7c8c-d514-4ac7-a04b-44fd71e6b1d8',1,'/content/Document/Pathways/Measuring weight and height.pdf','','93.158.161.2','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','Template not found: content/Document/Pathways/Measuring weight and height.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-07 22:42:42',0),(69215,'2021-05-03 15:39:42','2021-05-09 11:34:11','994b3b6c-1cfd-4a15-b690-75a178607605',1,'/content/Document/Planning/REP_Joint%20HNA%20final_170316.pdf','http://www.brisbanenorthphn.org.au/content/Document/Planning/REP_Joint%2520HNA%2520final_170316.pdf','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/Planning/REP_Joint HNA final_170316.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 11:34:11',0),(69216,'2021-05-03 16:17:14','2021-05-03 16:17:14','e5a15eba-5fbc-4902-ab7f-cc266e4dea89',1,'/video/31081.html','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: video/31081.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 16:17:14',0),(69217,'2021-05-03 16:20:42','2021-05-03 16:20:42','9165f0a2-b889-4772-8a0e-29c6af7dfbf1',1,'/content/Document/Planning/FIN_AWP_NPS-CoS 19-21_190531 Transition WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Planning/FIN_AWP_NPS-CoS%2019-21_190531%20Transition%20WEB.pdf','35.186.188.225','Go-http-client/1.1','Template not found: content/Document/Planning/FIN_AWP_NPS-CoS 19-21_190531 Transition WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 16:20:42',0),(69218,'2021-05-03 16:30:57','2021-05-08 05:51:35','40f3e732-3767-4911-8c50-31be9c1c8d3e',1,'/page/about/our-region/dist/swiper.js','https://www.brisbanenorthphn.org.au/page/about/our-region/health-planning/','49.187.50.21','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','Template not found: page/about/our-region/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-08 05:51:35',0),(69219,'2021-05-03 16:39:12','2021-05-03 20:15:30','e693c535-4e5c-4066-9362-a5a623979b3c',1,'/team/dist/swiper.js','','207.46.13.105','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','Template not found: team/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-03 20:15:30',0),(69220,'2021-05-03 16:47:51','2021-05-03 16:47:51','a9d9689f-9f60-4883-b637-ba400564f5c8',1,'/content/Document/medical_assistting_HLT07.pdf','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/medical_assistting_HLT07.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 16:47:51',0),(69221,'2021-05-03 17:24:09','2021-05-03 17:24:09','34677173-c2de-451e-b08e-72bcfad117f6',1,'/content/Document/Primary%20care%20liaison/EOI_AHP%20Interpreting%20flyer%20March%202018.docx','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/EOI_AHP%2520Interpreting%2520flyer%2520March%25202018.docx','34.94.135.136','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/EOI_AHP Interpreting flyer March 2018.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 17:24:09',0),(69222,'2021-05-03 18:18:44','2021-05-09 13:41:00','b9f1f20f-0ee1-480f-8ff1-959748d3ba53',1,'/content/Document/Planning/FIN_AWP%20PMHC%2019-22%20_190710%20WEB.docx','http://www.brisbanenorthphn.org.au/content/Document/Planning/FIN_AWP%2520PMHC%252019-22%2520_190710%2520WEB.docx','35.233.170.71','Go-http-client/1.1','Template not found: content/Document/Planning/FIN_AWP PMHC 19-22 _190710 WEB.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 13:41:00',0),(69223,'2021-05-03 18:44:54','2021-05-03 18:44:54','fc14fc26-a8d5-49b6-b4b3-610d2a60e3d8',1,'/video/29844.html','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: video/29844.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 18:44:54',0),(69224,'2021-05-03 18:48:04','2021-05-03 18:48:04','af9deef5-bf01-4773-a50a-6247940cd666',1,'/content/Image/Brisbane North PHN Region - FULL','','66.249.68.95','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Image/Brisbane North PHN Region - FULL','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 18:48:04',0),(69225,'2021-05-03 19:19:07','2021-05-19 02:16:45','a0410b62-4fd9-4bcd-998d-b8d4a4bc50ef',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---wavell-heights/','','17.121.113.151','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---wavell-heights','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-19 02:16:45',0),(69226,'2021-05-03 20:57:50','2021-05-03 20:57:50','aa0a4d08-f43b-41c7-9e3d-93bc90ac89ac',1,'/content/Document/FORM 3 - Approved Clinician Referral to Group Therapy Program(2).docx','http://www.brisbanenorthphn.org.au/content/Document/FORM%203%20-%20Approved%20Clinician%20%20Referral%20to%20Group%20Therapy%20Program(2).docx','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/FORM 3 - Approved Clinician Referral to Group Therapy Program(2).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 20:57:50',0),(69227,'2021-05-03 21:44:23','2021-05-09 17:06:30','0edfb4fa-e1ee-446b-bbe6-3843f37ba683',1,'/content/Document/Templates/5.3/MNHHS%20Redcliffe%20v5_3%20ZM.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%2520Redcliffe%2520v5_3%2520ZM.rtf','35.233.170.71','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS Redcliffe v5_3 ZM.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 17:06:30',0),(69228,'2021-05-03 22:11:52','2021-05-04 08:07:07','db536264-77c2-48b9-9128-6999486bcda6',1,'/content/Document/Network Link_October_2018_WEB.pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Network Link_October_2018_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-04 08:07:07',0),(69229,'2021-05-03 22:21:33','2021-05-14 12:21:07','18cf2f0e-aa6e-4a1f-bd13-e97ba8a800fc',1,'/content/Document/Templates/5.3/MNHHS Maternity Booking-in 5_3 BP.rtf','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/5.3/MNHHS Maternity Booking-in 5_3 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 12:21:07',0),(69230,'2021-05-03 22:34:27','2021-05-03 22:34:27','813dfc79-54b7-4545-b886-d378eb37832a',1,'/content/Document/Templates/V5.1 Jan 2018/Best Practice/MNHHS Paediatric Ref v5_1 BP.rtf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/V5.1 Jan 2018/Best Practice/MNHHS Paediatric Ref v5_1 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 22:34:27',0),(69231,'2021-05-03 22:35:59','2021-05-11 23:36:36','60dc0f95-38a6-4cee-988e-9075a00553bf',1,'/account/sell-vectors','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: account/sell-vectors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 23:36:36',0),(69232,'2021-05-03 22:39:45','2021-05-18 01:55:46','14e56372-76a8-4b4a-8043-16bf7ff93020',1,'/page/publications/partners-in-health/partners-in-health-december-2015/','','173.252.83.17','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: page/publications/partners-in-health/partners-in-health-december-2015','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-18 01:55:46',0),(69233,'2021-05-03 22:43:35','2021-05-03 22:43:35','afc39501-7e3d-4a90-a36f-6e190921e1d6',1,'/page/news-and-events/events/archive/heart-failure-meeting-series-and-clinical-audit/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/heart-failure-meeting-series-and-clinical-audit','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 22:43:35',0),(69234,'2021-05-03 22:43:48','2021-05-03 22:43:48','0cad445e-2e14-45f6-a0a6-87141424ae1f',1,'/content/Image/Page Banners/Banner_page_MNhealthforum2018radar.jpg','','173.252.127.29','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: content/Image/Page Banners/Banner_page_MNhealthforum2018radar.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 22:43:48',0),(69235,'2021-05-03 23:12:10','2021-05-03 23:12:10','d6d32cde-3e4f-4f55-81fd-e3d8a59578bc',1,'/content/Document/Templates/6.1/MNHHS Redcliffe Ref v6_1 BP.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/MNHHS%20Redcliffe%20Ref%20v6_1%20BP.rtf','104.198.141.65','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/MNHHS Redcliffe Ref v6_1 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 23:12:10',0),(69236,'2021-05-03 23:38:20','2021-05-07 05:05:04','565136be-215b-4ba8-8c6a-4b4c6fdb1ebf',1,'/content/Document/Brisbane MIND Group Listing 2017-18 Oct V2.pdf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Group Listing 2017-18 Oct V2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-07 05:05:04',0),(69237,'2021-05-03 23:42:07','2021-05-03 23:42:07','0bc98bcd-17bf-477f-a7b5-ba0428b687b2',1,'/content/Document/Templates/4.3/MNHHS Paediatric Referral MD v4.3.rtf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.3/MNHHS Paediatric Referral MD v4.3.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 23:42:07',0),(69238,'2021-05-03 23:42:58','2021-05-03 23:42:58','4a61130c-ac4b-4545-b5f2-c8d80cafa80b',1,'/content/Document/MNHHS Palliative Referral ZM v4_11.rtf','http://www.brisbanenorthphn.org.au/content/Document/MNHHS%20Palliative%20Referral%20ZM%20v4_11.rtf','34.94.135.136','Go-http-client/1.1','Template not found: content/Document/MNHHS Palliative Referral ZM v4_11.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 23:42:58',0),(69239,'2021-05-03 23:52:50','2021-05-03 23:52:50','fc41e530-60b2-4e6c-8356-5cd06db9976e',1,'/content/Document/Templates/4.6/MNHHS%20Palliative%20Care%20PractiX%20v4_6.doc','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.6/MNHHS%2520Palliative%2520Care%2520PractiX%2520v4_6.doc','34.73.220.108','Go-http-client/1.1','Template not found: content/Document/Templates/4.6/MNHHS Palliative Care PractiX v4_6.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-03 23:52:50',0),(69240,'2021-05-03 23:53:59','2021-05-18 13:56:02','7afbb510-6ed9-4551-b724-c808908c3df5',1,'/content/Document/Lymphoedema Symptom Questionnaire - LL.pdf','','93.158.161.35','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','Template not found: content/Document/Lymphoedema Symptom Questionnaire - LL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 13:56:02',0),(69241,'2021-05-04 00:28:36','2021-05-04 00:28:36','1064079b-cec4-4f0c-9833-22572ba70666',1,'/jobs/general-practitioner-warner','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/general-practitioner-warner','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 00:28:36',0),(69242,'2021-05-04 00:30:44','2021-05-09 20:35:18','368db9e2-4f07-4e13-9d2f-24a52e9d491a',1,'/content/Document/Events/2019/Reproductive Health Seminar invitation.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/Reproductive%20Health%20Seminar%20invitation.pdf','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/Events/2019/Reproductive Health Seminar invitation.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 20:35:18',0),(69243,'2021-05-04 00:33:55','2021-05-14 11:14:06','28864d9b-2465-408f-adfd-55a22da4fe10',1,'/page/news-and-events/latest-news/our-stories-care-and-counsel-for-aged-care-residents/','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/our-stories-care-and-counsel-for-aged-care-residents','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 11:14:06',0),(69244,'2021-05-04 00:34:01','2021-05-04 00:34:01','5fd51a0a-c223-4a92-ac86-20b2079b725a',1,'/content/Document/Primary%20care%20liaison/MNHHS%20Caboolture%20Hosp%20Ref%20v6_2%20MD(1).rtf','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/MNHHS%2520Caboolture%2520Hosp%2520Ref%2520v6_2%2520MD(1).rtf','34.73.220.108','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/MNHHS Caboolture Hosp Ref v6_2 MD(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 00:34:01',0),(69245,'2021-05-04 00:49:17','2021-05-11 00:39:59','08f8e29b-e7c7-4481-a5bb-5c546a3e647b',1,'/jobs/keperra-medical-centre-is-looking-for-an-experienced-practice-nurse-to-join-our-team','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/keperra-medical-centre-is-looking-for-an-experienced-practice-nurse-to-join-our-team','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-11 00:39:59',0),(69246,'2021-05-04 00:53:13','2021-05-04 00:53:13','f1755e30-8ba6-401d-beeb-ee24a6ba4fae',1,'/page/news-and-events/events/upcomi','','66.249.68.93','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcomi','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 00:53:13',0),(69247,'2021-05-04 00:55:47','2021-05-04 00:55:47','90ee3060-402e-47ef-9f32-72e5131004c6',1,'/content/Document/Network Link/Network Link_October_2018_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%20Link/Network%20Link_October_2018_WEB.pdf','104.198.141.65','Go-http-client/1.1','Template not found: content/Document/Network Link/Network Link_October_2018_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 00:55:47',0),(69248,'2021-05-04 01:11:47','2021-05-04 01:11:47','05deaa6c-9ee6-42a5-8dd8-fef859c390eb',1,'/content/Document/Primary%20care%20liaison/eHealth-PIP-toolkit-MD.pdf','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/eHealth-PIP-toolkit-MD.pdf','104.198.141.65','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/eHealth-PIP-toolkit-MD.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 01:11:47',0),(69249,'2021-05-04 01:21:56','2021-05-04 01:21:56','04bab4ea-6ec2-42ae-9a7d-c67afb5df1c9',1,'/content/Document/Network%20Link/Network%20Link_February_2019_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%2520Link/Network%2520Link_February_2019_WEB.pdf','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/Network Link/Network Link_February_2019_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 01:21:56',0),(69250,'2021-05-04 01:39:38','2021-05-04 01:39:38','7cf27436-000f-4c17-a682-7af1a38d5f05',1,'/content/Document/Network%20Link/Network%20Link_8_Aug_2018_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%2520Link/Network%2520Link_8_Aug_2018_WEB.pdf','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/Network Link/Network Link_8_Aug_2018_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 01:39:38',0),(69251,'2021-05-04 01:53:22','2021-05-04 01:53:22','ea2e470d-9520-4bf3-815d-4542d2874c29',1,'/page/news-and-events/events/upcoming/timely-diagnosis-and-management-of-dementia-in-general-practice/','','88.198.36.62','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:82.0) Gecko/20100101 Firefox/82.0','Template not found: page/news-and-events/events/upcoming/timely-diagnosis-and-management-of-dementia-in-general-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 01:53:22',0),(69252,'2021-05-04 01:58:24','2021-05-09 21:22:30','41560938-95a2-4deb-9f65-1ae496db2969',1,'/content/Document/Templates/5.3/MNHHS TPCH v5_3 ZM.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%20TPCH%20v5_3%20ZM.rtf','35.233.170.71','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS TPCH v5_3 ZM.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 21:22:30',0),(69253,'2021-05-04 02:00:47','2021-05-04 02:00:47','965504ee-29db-4972-988f-e5851bf22454',1,'/content/Document/Position Descriptions/PD_Program Support Officer Healthy Ageing_170911 (1).pdf','http://www.brisbanenorthphn.org.au/content/Document/Position%20Descriptions/PD_Program%20Support%20Officer%20Healthy%20Ageing_170911%20(1).pdf','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/Position Descriptions/PD_Program Support Officer Healthy Ageing_170911 (1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 02:00:47',0),(69254,'2021-05-04 02:22:00','2021-05-04 02:22:06','0caf87e2-3e48-4460-8371-0006153ba8b3',1,'/page/news-and-eventslist-your-activity/','','210.8.77.126','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','Template not found: page/news-and-eventslist-your-activity','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-04 02:22:06',0),(69255,'2021-05-04 02:22:34','2021-05-04 02:22:34','38876e5e-85fa-4a76-8ff5-409f3ea29086',1,'/content/Document/Events/2019/NUBP Module Flyer 2019.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/NUBP%20Module%20Flyer%202019.pdf','35.186.188.225','Go-http-client/1.1','Template not found: content/Document/Events/2019/NUBP Module Flyer 2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 02:22:34',0),(69256,'2021-05-04 02:23:48','2021-05-07 00:07:48','320340de-a8ec-448d-9bde-1270f187b898',1,'/content/Document/ACU OT Rheumatology Clinic Referral Form 2016.pdf','http://www.brisbanenorthphn.org.au/content/Document/ACU%20OT%20Rheumatology%20Clinic%20Referral%20Form%202016.pdf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/ACU OT Rheumatology Clinic Referral Form 2016.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-07 00:07:48',0),(69257,'2021-05-04 03:36:45','2021-05-09 23:47:40','5eafde00-4ffd-4db6-979e-e106a459410d',1,'/content/Document/MNHHS Maternity Referral MD v4_10.rtf','http://www.brisbanenorthphn.org.au/content/Document/MNHHS%20Maternity%20Referral%20MD%20v4_10.rtf','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/MNHHS Maternity Referral MD v4_10.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 23:47:40',0),(69258,'2021-05-04 03:38:20','2021-05-16 14:24:42','a98044cd-8174-467b-96f9-90c3437836b6',1,'/page/health-professionals/Local Positions Vacant/physiotherapist-lutwyche/','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/physiotherapist-lutwyche','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 14:24:42',0),(69259,'2021-05-04 03:52:18','2021-05-10 05:42:38','457a68a1-e6c3-47e5-8a9a-a80152b1e86e',1,'/content/Document/Templates/6.1/MNHHS TPCH Ref v6_1 BP.rtf','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/6.1/MNHHS TPCH Ref v6_1 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 05:42:38',0),(69260,'2021-05-04 04:01:19','2021-05-04 04:01:19','daf47979-b33b-462e-b4d2-562f564ea388',1,'/page/news-and-events/events/upcoming/conflict-resolution---april-2016/','http://brisbanenorthphn.org.au/page/news-and-events/events/upcoming/conflict-resolution---april-2016/','35.210.207.166','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/events/upcoming/conflict-resolution---april-2016','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 04:01:19',0),(69261,'2021-05-04 04:32:39','2021-05-15 20:21:41','6f48b4a5-2eb4-4cf4-af5c-24eb03beb5a0',1,'/page/health-professionals/community-care/dementia-care/2-high-quality-of-dementia-care-in-the-acute-setting','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/community-care/dementia-care/2-high-quality-of-dementia-care-in-the-acute-setting','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 20:21:41',0),(69262,'2021-05-04 05:00:07','2021-05-04 05:00:07','e950e08b-6df9-4878-9c4a-b74e6169753a',1,'/events/advance-care-planning-march-course','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/advance-care-planning-march-course','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 05:00:07',0),(69263,'2021-05-04 05:12:33','2021-05-05 06:28:17','d81f13d0-0cc9-4574-aeb8-576ffdc7eeb8',1,'/tel:07 3408 3320','https://www.google.com/','34.83.238.24','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36','Template not found: tel:07 3408 3320','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-05 06:28:17',0),(69264,'2021-05-04 05:16:14','2021-05-04 05:16:14','5a920e3e-2163-4e5f-8958-c5684e3bbb9b',1,'/(download)/etc/passwd','','91.241.19.175','Nuclei - Open-source project (github.com/projectdiscovery/nuclei)','Template not found: (download)/etc/passwd','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 05:16:14',0),(69265,'2021-05-04 05:16:22','2021-05-04 05:16:22','355cc056-b564-4915-aa1c-1e7564731f2e',1,'/content/Document/FORM 1 - Clinician Referral for Additional Sessions.docx','http://www.brisbanenorthphn.org.au/content/Document/FORM%201%20-%20Clinician%20Referral%20for%20Additional%20Sessions.docx','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/FORM 1 - Clinician Referral for Additional Sessions.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 05:16:22',0),(69266,'2021-05-04 05:18:37','2021-05-04 05:18:37','6c89b717-bbd6-48ec-9335-8e4a0bf352cd',1,'/content/Document/Network%20Link/Network%20Link_January_2019_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%2520Link/Network%2520Link_January_2019_WEB.pdf','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/Network Link/Network Link_January_2019_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 05:18:37',0),(69267,'2021-05-04 05:32:46','2021-05-05 00:04:05','6b35a0b8-a408-44a3-b20d-43e092a5f3fc',1,'/news/check-in-with-a-heart-health-check-this-heart-week','','103.87.254.78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','Template not found: news/check-in-with-a-heart-health-check-this-heart-week','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,7,'2021-05-05 00:04:05',0),(69268,'2021-05-04 05:43:37','2021-05-04 05:43:37','15d45e8d-1ece-4888-bf5e-b04ee72bbced',1,'/asherby85/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: asherby85','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 05:43:37',0),(69269,'2021-05-04 05:47:32','2021-05-04 05:47:32','3e67fd28-744a-4e18-b1f3-a87a6341c91b',1,'/wp/wp-admin/','http://brisbanenorthphn.org.au/','37.24.85.119','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','Template not found: wp/wp-admin','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 05:47:32',0),(69270,'2021-05-04 06:06:12','2021-05-10 02:23:23','9a183539-cffa-487c-91e2-af58255dd6f0',1,'/content/Document/Templates/MNHHS%20COHD%20BP%20v6_1.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/MNHHS%2520COHD%2520BP%2520v6_1.rtf','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/Templates/MNHHS COHD BP v6_1.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 02:23:23',0),(69271,'2021-05-04 06:14:09','2021-05-04 06:14:09','81f12d87-ffb1-4010-9fc7-87272021f4d3',1,'/jobs/test','https://brisbanenorthphn.org.au/users','103.87.254.78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','Template not found: jobs/test','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 06:14:09',0),(69272,'2021-05-04 06:53:20','2021-05-19 02:40:34','6c56577f-b28b-4b35-9b77-55fbf892c1ba',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---sandgate/','','40.77.167.15','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---sandgate','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-19 02:40:34',0),(69273,'2021-05-04 07:20:47','2021-05-07 21:28:36','586953c2-640c-469c-9f2c-c03593c64934',1,'/content/Document/Network%20Link/Network%20Link_3_March_web.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%2520Link/Network%2520Link_3_March_web.pdf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Network Link/Network Link_3_March_web.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 21:28:36',0),(69274,'2021-05-04 07:53:23','2021-05-04 07:53:23','ca99e117-1cd8-44a0-a0ca-ccf32af5edad',1,'/content/Document/Primary care liaison/Specialists List_Redcliffe Hospital_6_2(1).pdf','http://www.brisbanenorthphn.org.au/content/Document/Primary%20care%20liaison/Specialists%20List_Redcliffe%20Hospital_6_2(1).pdf','104.198.141.65','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/Specialists List_Redcliffe Hospital_6_2(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 07:53:23',0),(69275,'2021-05-04 07:55:47','2021-05-10 03:22:07','af18891b-923d-4285-81fe-c5c09c7bc8f2',1,'/content/Document/MHAOD_Recovery_newsletter_December_FINAL_web.pdf','http://www.brisbanenorthphn.org.au/content/Document/MHAOD_Recovery_newsletter_December_FINAL_web.pdf','35.233.170.71','Go-http-client/1.1','Template not found: content/Document/MHAOD_Recovery_newsletter_December_FINAL_web.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-10 03:22:07',0),(69276,'2021-05-04 08:03:52','2021-05-06 19:35:56','a994a6f8-4304-4425-8d19-38db3b29f723',1,'/content/Document/LINK B.2_Assessing fitness to drive checklist.pdf','http://www.brisbanenorthphn.org.au/content/Document/LINK%20B.2_Assessing%20fitness%20to%20drive%20checklist.pdf','35.186.188.225','Go-http-client/1.1','Template not found: content/Document/LINK B.2_Assessing fitness to drive checklist.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 19:35:56',0),(69277,'2021-05-04 08:06:33','2021-05-07 11:01:22','e7574642-b073-4162-942f-7b196eee62bd',1,'/content/Document/Templates/6.1/MNHHS Paediatric MD v6_1.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/MNHHS%20Paediatric%20MD%20v6_1.rtf','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/MNHHS Paediatric MD v6_1.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 11:01:22',0),(69278,'2021-05-04 08:24:31','2021-05-17 00:53:31','fd9d7417-c40c-4d63-82f8-a781ed6fda3c',1,'/our-programs/mental-health-services/bXktbWVudG','','20.53.97.104','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','Template not found: our-programs/mental-health-services/bXktbWVudG','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 00:53:30',0),(69279,'2021-05-04 09:32:32','2021-05-04 09:32:32','1344e2e1-5c3a-425a-a4a5-9f2c9cad43b2',1,'/content/Document/Templates/6.1/MNHHS%20Paediatric%20MD%20v6_1.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/MNHHS%2520Paediatric%2520MD%2520v6_1.rtf','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/MNHHS Paediatric MD v6_1.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 09:32:32',0),(69280,'2021-05-04 09:36:40','2021-05-10 05:24:07','5c0ec858-9579-411f-8d94-25e38ff24f11',1,'/content/Document/psychosocial NBOCC.pdf','http://www.brisbanenorthphn.org.au/content/Document/psychosocial%20NBOCC.pdf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/psychosocial NBOCC.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 05:24:07',0),(69281,'2021-05-04 09:52:46','2021-05-04 09:52:46','d0ec0417-3ee1-431f-b7a9-3fa42cb48066',1,'/content/Document/Aged%20and%20community%20care/A12_%20Final%20131017%20GOAS%203-month%20Review.docx','http://www.brisbanenorthphn.org.au/content/Document/Aged%2520and%2520community%2520care/A12_%2520Final%2520131017%2520GOAS%25203-month%2520Review.docx','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/Aged and community care/A12_ Final 131017 GOAS 3-month Review.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 09:52:46',0),(69282,'2021-05-04 10:10:54','2021-05-10 05:58:41','76819ed0-59f8-4585-bb4b-4a7fedcbdd43',1,'/content/Document/Planning/FIN_AWP%20AOD%2019-22_190719%20WEB.docx','http://www.brisbanenorthphn.org.au/content/Document/Planning/FIN_AWP%2520AOD%252019-22_190719%2520WEB.docx','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Planning/FIN_AWP AOD 19-22_190719 WEB.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 05:58:41',0),(69283,'2021-05-04 10:21:06','2021-05-04 10:21:06','d450de0b-ed50-48e0-9ddd-e10c24309c3a',1,'/page/home/banners/latest-news-covid-19/','','66.249.68.95','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/home/banners/latest-news-covid-19','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 10:21:06',0),(69284,'2021-05-04 10:32:58','2021-05-04 10:32:58','2e2a5219-6e34-4d0c-83cc-431735f7fbdd',1,'/page/home/banners/gp-respiratory-clinics-community-assessment-and-fever-clinics/','','66.249.68.65','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/home/banners/gp-respiratory-clinics-community-assessment-and-fever-clinics','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 10:32:58',0),(69285,'2021-05-04 10:51:28','2021-05-04 10:51:28','6db8a2dc-5442-4f0c-9c56-f91ec28f1006',1,'/content/Document/Pathways/Valves and heart failure patient info sheet.pdf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/Valves and heart failure patient info sheet.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 10:51:28',0),(69286,'2021-05-04 11:09:22','2021-05-04 11:09:22','743c441e-90b5-4f0d-b84d-cc3d034ad00e',1,'/page/health-professionals/Local Positions Vacant/general-practice-nurses-required-morayfield-family-doctors/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practice-nurses-required-morayfield-family-doctors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 11:09:22',0),(69287,'2021-05-04 11:10:42','2021-05-16 00:51:07','58820ae2-ce0b-47b2-8807-48f6aa1e4dac',1,'/jobs/australian-doctors-clinic-kallangur-medical-receptionist','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/australian-doctors-clinic-kallangur-medical-receptionist','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-16 00:51:07',0),(69288,'2021-05-04 11:22:16','2021-05-04 11:22:16','b95b86ce-a5af-4320-ad61-cbf496e57863',1,'/content/Document/Templates/4.12/ZM v4.12/MNHHS Palliative Referral ZM v4_12.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.12/ZM%20v4.12/MNHHS%20Palliative%20Referral%20ZM%20v4_12.rtf','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/Templates/4.12/ZM v4.12/MNHHS Palliative Referral ZM v4_12.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 11:22:16',0),(69289,'2021-05-04 11:27:39','2021-05-10 12:54:36','81e041d8-f015-4991-9292-8c946c9d63ef',1,'/content/Document/Events/2018/OM North Brisbane PHN 23 March 2019.pdf','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2018/OM North Brisbane PHN 23 March 2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 12:54:36',0),(69290,'2021-05-04 11:41:45','2021-05-04 11:41:45','aada1ff5-44f1-4d42-a887-6cb3517d70f1',1,'/content/Document/Templates/4.6/MNHHS TPCH Ref ZM 4_6.rtf','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.6/MNHHS TPCH Ref ZM 4_6.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 11:41:45',0),(69291,'2021-05-04 12:04:33','2021-05-04 12:04:33','28ed933d-fede-42d2-93d4-9ce8994e68fe',1,'/content/Document/Primary%20care%20liaison/MNHHS%20Caboolture%20Hosp%20Ref%20v6_2%20MD.rtf','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/MNHHS%2520Caboolture%2520Hosp%2520Ref%2520v6_2%2520MD.rtf','104.198.141.65','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/MNHHS Caboolture Hosp Ref v6_2 MD.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 12:04:33',0),(69292,'2021-05-04 12:09:27','2021-05-04 12:09:27','b70be2ae-4974-417d-9e2f-f00337e446ca',1,'/page/news-and-events/events/upcoming/wesley-hospital-active-learning-module---mens-and-womens-health/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/wesley-hospital-active-learning-module---mens-and-womens-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 12:09:27',0),(69293,'2021-05-04 12:29:00','2021-05-04 12:29:00','58a99fc6-5f68-4ce6-b4cc-1c00a2be7198',1,'/events/improving-how-hospitals-deliver-care-people-cognitive-impairment-what-strategies-are-availabl','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/improving-how-hospitals-deliver-care-people-cognitive-impairment-what-strategies-are-availabl','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 12:29:00',0),(69294,'2021-05-04 13:26:54','2021-05-04 13:26:54','831266a4-1cff-4930-aba3-05bedd63d58f',1,'/content/Document/Primary care liaison/Advance Care Planning - Brisbane North PHN 180201.pdf','http://www.brisbanenorthphn.org.au/content/Document/Primary%20care%20liaison/Advance%20Care%20Planning%20-%20Brisbane%20North%20PHN%20180201.pdf','34.94.141.43','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/Advance Care Planning - Brisbane North PHN 180201.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 13:26:54',0),(69295,'2021-05-04 13:41:12','2021-05-10 09:13:59','93507413-d0c7-4540-a839-3a684d741c3d',1,'/content/Document/Templates/5.3/MNHHS Paediatric 5_3 BP.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%20Paediatric%20%205_3%20BP.rtf','35.233.170.71','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS Paediatric 5_3 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 09:13:59',0),(69296,'2021-05-04 13:44:57','2021-05-10 09:17:31','e69b59ee-d981-4e84-ae00-71c450bccd30',1,'/content/Document/MNHHS Palliative Care PractiX v4_10.doc','http://www.brisbanenorthphn.org.au/content/Document/MNHHS%20Palliative%20Care%20PractiX%20v4_10.doc','35.233.170.71','Go-http-client/1.1','Template not found: content/Document/MNHHS Palliative Care PractiX v4_10.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 09:17:31',0),(69297,'2021-05-04 14:12:20','2021-05-04 14:12:20','c1a42644-bdea-4805-a2fa-1d0c79c12410',1,'/page/news-and-events/events/upcoming/grey-matters-live/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/grey-matters-live','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 14:12:20',0),(69298,'2021-05-04 14:13:19','2021-05-04 14:13:19','501c2371-9dc7-4832-b822-58291e353107',1,'/content/Document/Network Link/Network Link_12_December_FINAL_web.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%20Link/Network%20Link_12_December_FINAL_web.pdf','104.198.141.65','Go-http-client/1.1','Template not found: content/Document/Network Link/Network Link_12_December_FINAL_web.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 14:13:19',0),(69299,'2021-05-04 14:13:46','2021-05-04 14:13:46','61b4c772-508e-4682-8060-1fc676079f90',1,'/content/Document/Cancer Preceptorship for Primary Health Care Providers 2018 Registration.pdf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Cancer Preceptorship for Primary Health Care Providers 2018 Registration.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 14:13:46',0),(69300,'2021-05-04 14:40:01','2021-05-04 14:40:01','94dc7b21-e95d-4c20-b7d5-faa123b74d98',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---bellara/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---bellara','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 14:40:01',0),(69301,'2021-05-04 15:03:10','2021-05-18 11:40:24','f2ce628f-c9e5-4736-9629-402d0e9f6f1f',1,'/events/borderline-personality-disorder-in-adolescents-myths-identity-treatment','','207.46.13.74','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/borderline-personality-disorder-in-adolescents-myths-identity-treatment','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,39,'2021-05-18 11:40:24',0),(69302,'2021-05-04 15:41:35','2021-05-15 20:04:06','87658de9-55d2-40c6-9833-4ac7ec870b22',1,'/jobs/locum-gp-position','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/locum-gp-position','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-15 20:04:06',0),(69303,'2021-05-04 15:44:48','2021-05-04 15:44:48','4ec831bc-2e7a-48fe-a44f-c9d286ed38d2',1,'/content/Document/Primary%20care%20liaison/MNHHS%20Redcliffe%20Hosp%20Ref%20v6_2%20ZM(1).rtf','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/MNHHS%2520Redcliffe%2520Hosp%2520Ref%2520v6_2%2520ZM(1).rtf','35.186.188.225','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/MNHHS Redcliffe Hosp Ref v6_2 ZM(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 15:44:48',0),(69304,'2021-05-04 15:52:39','2021-05-04 15:52:39','db9e96ec-5c46-4d6e-a4c9-6289d7188ab1',1,'/content/Media/Genie V5.1/MNHHS TPCHl v5.1 Genie.4W7','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Media/Genie V5.1/MNHHS TPCHl v5.1 Genie.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 15:52:39',0),(69305,'2021-05-04 15:54:49','2021-05-04 15:54:49','fd8b802e-c736-49d0-a983-279d9bfde844',1,'/page/news-and-events/events/upcoming/paediatric-optometry-alignment-program/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/paediatric-optometry-alignment-program','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 15:54:49',0),(69306,'2021-05-04 15:57:29','2021-05-04 15:57:29','f63756fc-d5e1-4f85-a2e3-42c6f028e056',1,'/content/Document/Templates/Update Equipment 2016.pdf','http://www.brisbanenorthphn.org.au/content/Document/Templates/Update%20Equipment%202016.pdf','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/Templates/Update Equipment 2016.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 15:57:29',0),(69307,'2021-05-04 16:01:43','2021-05-04 16:01:43','f08b4264-4ce8-4d94-adc3-5e45590b36df',1,'/content/Document/Brisbane MIND Service and consent Information Sheet combined - PHN BRANDED.docx','http://www.brisbanenorthphn.org.au/content/Document/Brisbane%20MIND%20Service%20and%20consent%20Information%20Sheet%20combined%20-%20PHN%20BRANDED.docx','34.73.220.108','Go-http-client/1.1','Template not found: content/Document/Brisbane MIND Service and consent Information Sheet combined - PHN BRANDED.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 16:01:43',0),(69308,'2021-05-04 16:03:07','2021-05-04 16:03:07','fce59055-3e4a-40f8-9edf-673d61b8e3e7',1,'/content/Document/Health%20alerts/20190325%20Measles%20Alert%20GP_ED%20Mar%202019(1).pdf','http://www.brisbanenorthphn.org.au/content/Document/Health%2520alerts/20190325%2520Measles%2520Alert%2520GP_ED%2520Mar%25202019(1).pdf','35.186.188.225','Go-http-client/1.1','Template not found: content/Document/Health alerts/20190325 Measles Alert GP_ED Mar 2019(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 16:03:07',0),(69309,'2021-05-04 16:08:31','2021-05-14 00:54:38','8492e966-b95a-47de-824e-9fd8b1a65c36',1,'/content/Document/Templates/Brisbane MIND/MIND Referral V3 BP.rtf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/Brisbane MIND/MIND Referral V3 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 00:54:38',0),(69310,'2021-05-04 16:40:30','2021-05-04 16:40:30','2099091e-286f-4670-82d6-ebd606db95c0',1,'/content/Document/MNHHS TPCH Referral MD v4_11(1).rtf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/MNHHS TPCH Referral MD v4_11(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 16:40:30',0),(69311,'2021-05-04 17:01:44','2021-05-04 17:01:44','26cd8071-0b3a-4711-9543-305d5fb50f60',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---kelvin-grove/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---kelvin-grove','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 17:01:44',0),(69312,'2021-05-04 17:30:45','2021-05-04 17:30:45','a9bf9bb0-69dd-4ab1-ae74-07ed592b960e',1,'/page/news-and-events/events/upcoming/dementia-and-night-time-behaviours-e-seminar/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/dementia-and-night-time-behaviours-e-seminar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 17:30:45',0),(69313,'2021-05-04 17:34:50','2021-05-18 10:34:42','7ed34a55-974d-4429-afc3-3c4f6f61a912',1,'/page/health-professionals/referral-and-patient-management/metro-north-refer-your-patient','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/referral-and-patient-management/metro-north-refer-your-patient','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 10:34:42',0),(69314,'2021-05-04 18:24:44','2021-05-04 18:24:44','8ffc51d3-df8b-4d59-8ab4-70edb68cc9b1',1,'/page/health-professionals/closing-the-gap','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/closing-the-gap','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 18:24:44',0),(69315,'2021-05-04 18:44:37','2021-05-04 18:44:37','066eacf8-4a65-472c-8193-b20a63d6faff',1,'/content/Document/Templates/4.12/PractiX%20v4.12/MNHHS%20Maternity%20PractiX%20v4_12.doc','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.12/PractiX%2520v4.12/MNHHS%2520Maternity%2520PractiX%2520v4_12.doc','35.186.188.225','Go-http-client/1.1','Template not found: content/Document/Templates/4.12/PractiX v4.12/MNHHS Maternity PractiX v4_12.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 18:44:37',0),(69316,'2021-05-04 18:47:21','2021-05-10 14:44:15','a33ebd03-1456-4279-89d3-8640da9819eb',1,'/content/Document/Events/INVITATION - GP Neurology Workshop - Tuesday 15 March 2017.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/INVITATION%20-%20GP%20Neurology%20Workshop%20-%20Tuesday%2015%20March%202017.pdf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Events/INVITATION - GP Neurology Workshop - Tuesday 15 March 2017.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 14:44:15',0),(69317,'2021-05-04 20:14:15','2021-05-04 20:14:15','c43a0b06-2200-4bcd-9d77-e7aa4f744b17',1,'/page/news-and-events/events/upcoming/icif-copd-project-gp-alm-saturday/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/icif-copd-project-gp-alm-saturday','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 20:14:15',0),(69318,'2021-05-04 20:48:58','2021-05-04 20:49:05','5d1720cc-d219-4705-85cb-e3014b701a28',1,'/phpMyAdmin/','https://brisbanenorthphn.org.au/phpMyAdmin/','121.117.69.60','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','Template not found: phpMyAdmin','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-04 20:49:05',0),(69319,'2021-05-04 21:15:23','2021-05-11 06:02:14','c1855f39-f803-4c2c-8ab6-2535e820a7e5',1,'/content/Document/Primary care liaison/My health for life - upcoming sessions BNPHN 18012019.pdf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Primary care liaison/My health for life - upcoming sessions BNPHN 18012019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-11 06:02:14',0),(69320,'2021-05-04 21:24:40','2021-05-04 21:24:40','a258c207-4cac-4690-acd4-44eba44d6ec3',1,'/content/Document/Pathways/Barriers to adherence to preventer treatment_link_TC_141110.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/Barriers%20to%20adherence%20to%20preventer%20treatment_link_TC_141110.pdf','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/Pathways/Barriers to adherence to preventer treatment_link_TC_141110.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 21:24:40',0),(69321,'2021-05-04 21:32:15','2021-05-04 21:32:15','56eff241-cfbd-4662-93ed-77856fd36c41',1,'/asrsp.txt','','116.203.115.76','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','Template not found: asrsp.txt','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 21:32:15',0),(69322,'2021-05-04 21:56:17','2021-05-04 21:56:17','29097e2e-a97c-4d34-9995-a399e5750ec7',1,'/content/Document/Templates/Brisbane%20MIND/MIND%204KiDS%20V3%20MD.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/Brisbane%2520MIND/MIND%25204KiDS%2520V3%2520MD.rtf','35.186.188.225','Go-http-client/1.1','Template not found: content/Document/Templates/Brisbane MIND/MIND 4KiDS V3 MD.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 21:56:17',0),(69323,'2021-05-04 22:09:33','2021-05-12 13:36:41','c41349cc-e9b4-4f41-90b0-afdc0a70a76e',1,'/page/news-and-events/events/upcoming/working-with-young-people-with-asd-and-comorbid-mental-health-issues/','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/working-with-young-people-with-asd-and-comorbid-mental-health-issues','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-12 13:36:41',0),(69324,'2021-05-04 22:52:43','2021-05-18 22:43:07','5620201d-5ba8-4b8a-a70b-f0edb98eb6a9',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-required-headspace-caboolture/','','40.77.167.16','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-required-headspace-caboolture','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 22:43:07',0),(69325,'2021-05-04 23:06:30','2021-05-04 23:06:30','1b8c04a4-d74d-43b5-a468-3ac2f615b367',1,'/content/Document/Position Description - Deputy CEO.pdf','','203.13.3.89','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; Touch; rv:11.0) like Gecko','Template not found: content/Document/Position Description - Deputy CEO.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 23:06:30',0),(69326,'2021-05-04 23:13:37','2021-05-10 19:59:52','11ccd589-80bd-42af-8198-93a0a374723d',1,'/content/Document/Arm _ALA measuring forms March 2004.pdf','http://www.brisbanenorthphn.org.au/content/Document/Arm%20_ALA%20measuring%20forms%20March%202004.pdf','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/Arm _ALA measuring forms March 2004.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 19:59:52',0),(69327,'2021-05-04 23:29:19','2021-05-04 23:29:19','dccbb7a4-b793-4be8-9736-68986ee2f6d4',1,'/page/about/careers/program-support-officer-care-coordination/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers/program-support-officer-care-coordination','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 23:29:19',0),(69328,'2021-05-04 23:29:23','2021-05-04 23:29:23','fe4b4476-6fce-41bc-ba30-10eb7a0dc1e8',1,'/content/Document/Stefan%20Hajkowicz%20-%20MNHF2018.pdf','http://www.brisbanenorthphn.org.au/content/Document/Stefan%2520Hajkowicz%2520-%2520MNHF2018.pdf','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/Stefan Hajkowicz - MNHF2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-04 23:29:23',0),(69329,'2021-05-05 00:08:37','2021-05-09 07:34:19','cb250cae-f563-4772-80e4-ce6b0aa2ad34',1,'/content/Document/Brisbane MIND Provider List May 2017(2).pdf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List May 2017(2).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 07:34:19',0),(69330,'2021-05-05 00:22:55','2021-05-10 21:09:29','4bd9dbef-2a16-4965-b33f-2e9f0ba370ea',1,'/content/Document/Templates/4.12/ZM v4.12/MNHHS Paediatric Referral ZM v4_12.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.12/ZM%20v4.12/MNHHS%20Paediatric%20Referral%20ZM%20v4_12.rtf','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/Templates/4.12/ZM v4.12/MNHHS Paediatric Referral ZM v4_12.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 21:09:29',0),(69331,'2021-05-05 00:36:24','2021-05-05 00:36:24','46224a24-891f-48e4-a2c5-cf01c0f52e57',1,'/content/Document/Primary care liaison/MNHHS Caboolture Hosp Ref v6_2 MD.rtf','http://www.brisbanenorthphn.org.au/content/Document/Primary%20care%20liaison/MNHHS%20Caboolture%20Hosp%20Ref%20v6_2%20MD.rtf','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/MNHHS Caboolture Hosp Ref v6_2 MD.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 00:36:24',0),(69332,'2021-05-05 00:36:39','2021-05-05 00:36:39','96e29578-d0f3-4900-b61b-8335eb56ee2b',1,'/content/Document/FINAL_MHAOD_Recovery_newsletter_August%202017_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/FINAL_MHAOD_Recovery_newsletter_August%25202017_WEB.pdf','35.186.188.225','Go-http-client/1.1','Template not found: content/Document/FINAL_MHAOD_Recovery_newsletter_August 2017_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 00:36:39',0),(69333,'2021-05-05 00:49:56','2021-05-14 02:41:00','a78b4294-22f8-47cc-b062-30c6f5229339',1,'/content/Document/Pathways/Dental Referral Asylum Seekers.pdf','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Dental Referral Asylum Seekers.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-14 02:41:00',0),(69334,'2021-05-05 01:04:48','2021-05-10 21:52:56','fb69b5e9-38f3-40e2-9bed-64828b15aeed',1,'/content/Document/Provider%20EOI%20pack_Brisbane%20North_20042018.pdf','http://www.brisbanenorthphn.org.au/content/Document/Provider%2520EOI%2520pack_Brisbane%2520North_20042018.pdf','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/Provider EOI pack_Brisbane North_20042018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 21:52:56',0),(69335,'2021-05-05 01:06:58','2021-05-10 20:52:56','ab9f1a7f-16af-42b8-984e-b55ef3e7364b',1,'/content/Document/Reports/FIN_AWP Core AWP 2019-22 190531.docx','http://www.brisbanenorthphn.org.au/content/Document/Reports/FIN_AWP%20Core%20AWP%202019-22%20190531.docx','35.233.170.71','Go-http-client/1.1','Template not found: content/Document/Reports/FIN_AWP Core AWP 2019-22 190531.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 20:52:56',0),(69336,'2021-05-05 01:30:06','2021-05-05 01:30:06','6d24badd-f50b-422f-9dcd-9f41f5290943',1,'/page/news-and-events/events/upcoming/improving-outcomes-for-a-timely-diagnosis-and-management-of-dementia-in-general-practice/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/improving-outcomes-for-a-timely-diagnosis-and-management-of-dementia-in-general-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 01:30:06',0),(69337,'2021-05-05 01:30:16','2021-05-10 21:28:44','24534e6a-0b34-4bf7-a1d4-18974e66338d',1,'/content/Document/Network Link/Network Link_11_November_FINAL_web.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%20Link/Network%20Link_11_November_FINAL_web.pdf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Network Link/Network Link_11_November_FINAL_web.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 21:28:44',0),(69338,'2021-05-05 01:38:30','2021-05-05 01:38:30','ec20e3e7-c0d4-4df9-ad15-16ab61f12907',1,'/>','','20.46.108.52','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36','Template not found: >','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 01:38:30',0),(69339,'2021-05-05 01:38:30','2021-05-05 01:38:30','24615c7e-b5f6-4a41-a65a-99b3314b8c08',1,'/content/Document/U3RhdGVtZW','','20.46.108.52','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36','Template not found: content/Document/U3RhdGVtZW','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 01:38:30',0),(69340,'2021-05-05 02:05:47','2021-05-05 02:05:56','7d719318-bfd0-4aac-99ea-ccfad1877be4',1,'/events/cGh1LWltbX','','40.115.67.240','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.87 Safari/537.36','Template not found: events/cGh1LWltbX','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-05 02:05:56',0),(69341,'2021-05-05 02:12:59','2021-05-05 02:12:59','2487120d-2ffc-4f2e-bdae-9ffeac774dd0',1,'/content/Document/Planning/FIN_AWP%20NSPT%2019-20_190329%20WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Planning/FIN_AWP%2520NSPT%252019-20_190329%2520WEB.pdf','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/Planning/FIN_AWP NSPT 19-20_190329 WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 02:12:59',0),(69342,'2021-05-05 02:15:49','2021-05-14 18:47:17','0d3ed24c-a785-4e88-bdca-09d9ab7e4cc8',1,'/content/Document/170104_Public Health Alert_Screening tests for patients of Gap Free Smile dental practice, Carina.pdf','','66.249.69.33','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/170104_Public Health Alert_Screening tests for patients of Gap Free Smile dental practice, Carina.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 18:47:17',0),(69343,'2021-05-05 03:01:49','2021-05-05 03:01:49','9ec2d6a9-cc0a-4f60-90a1-591534d1e541',1,'/page/health-professionals/Local Positions Vacant/practice-nurse-manager---lawnton/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse-manager---lawnton','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 03:01:49',0),(69344,'2021-05-05 03:02:47','2021-05-05 03:02:47','551e0a25-1a54-4c0c-9017-c18f738318b0',1,'/page/health-professionals/Local Positions Vacant/front-office-staff-required---mcdowall-village-medical-practice/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/front-office-staff-required---mcdowall-village-medical-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 03:02:47',0),(69345,'2021-05-05 03:12:01','2021-05-11 00:02:56','5e9c083f-5c1e-4be5-b045-ed1277be8b56',1,'/content/Document/Primary%20care%20liaison/VMP%202018%20MNPHU.docx','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/VMP%25202018%2520MNPHU.docx','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/VMP 2018 MNPHU.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 00:02:56',0),(69346,'2021-05-05 03:30:20','2021-05-19 03:02:38','d6e243e1-0879-42e7-875e-5d7a80471d7e',1,'/events/Z3luYWVjb2','','20.37.20.245','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36','Template not found: events/Z3luYWVjb2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,112,'2021-05-19 03:02:38',0),(69347,'2021-05-05 03:30:24','2021-05-19 03:02:28','b011d19c-22d3-4303-ba3d-538e51ed13e6',1,'/practice-support/cHJpbWFyeS','','20.46.108.52','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.87 Safari/537.36','Template not found: practice-support/cHJpbWFyeS','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,31,'2021-05-19 03:02:28',0),(69348,'2021-05-05 03:30:24','2021-05-05 03:31:25','bb21eb28-176a-4a76-8e7e-10c21ef49b26',1,'/news/bm90aWZpY2','','20.53.76.223','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.87 Safari/537.36','Template not found: news/bm90aWZpY2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-05 03:31:25',0),(69349,'2021-05-05 04:09:37','2021-05-05 04:09:37','1bcf7fc8-3bb3-499e-b1a3-303f02d7cf2e',1,'/content/Document/Templates/Brisbane%20MIND/MIND%20Referral%20V3%20BP.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/Brisbane%2520MIND/MIND%2520Referral%2520V3%2520BP.rtf','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/Templates/Brisbane MIND/MIND Referral V3 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 04:09:37',0),(69350,'2021-05-05 05:37:25','2021-05-05 05:37:25','94df55f8-44cb-417d-baac-a7627937d341',1,'/content/Document/form_rbwhacatreferral.pdf','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/form_rbwhacatreferral.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 05:37:25',0),(69351,'2021-05-05 05:55:37','2021-05-07 07:05:21','7ae1a037-cb69-49bb-ba18-3ab332450fc1',1,'/page/health-professionals/Local Positions Vacant/practice-manger-receptionist-job-share---everton-hills/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/health-professionals/Local Positions Vacant/practice-manger-receptionist-job-share---everton-hills','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 07:05:21',0),(69352,'2021-05-05 05:58:02','2021-05-05 05:58:02','31c494df-8c8e-4bb9-94ff-0a8249ffbfe3',1,'/page/publications/partners-in-health/partners-in-health-october-2015/','','78.46.61.245','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/publications/partners-in-health/partners-in-health-october-2015','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 05:58:02',0),(69353,'2021-05-05 06:04:15','2021-05-05 06:04:15','737c5a55-c0a9-41a6-a29b-2af0326befc0',1,'/content/Document/Templates/4.12/PractiX%20v4.12/MNHHS%20PCH%20PractiX%20v4_12.doc','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.12/PractiX%2520v4.12/MNHHS%2520PCH%2520PractiX%2520v4_12.doc','34.94.135.136','Go-http-client/1.1','Template not found: content/Document/Templates/4.12/PractiX v4.12/MNHHS PCH PractiX v4_12.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 06:04:15',0),(69354,'2021-05-05 06:10:52','2021-05-05 06:10:52','7267cad2-c0b5-4870-b276-984d2e05c9d6',1,'/page/health-professionals/local positions vacant/general-practitioner-required---ubuntu-medical','http://brisbanenorthphn.org.au/page/health-professionals/local+positions+vacant/general-practitioner-required---ubuntu-medical','35.206.169.219','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/health-professionals/local positions vacant/general-practitioner-required---ubuntu-medical','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 06:10:52',0),(69355,'2021-05-05 06:13:17','2021-05-05 06:13:17','b7a50fbb-296b-4242-b320-a989104d504e',1,'/img/footer-logo.png','','66.220.149.16','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: img/footer-logo.png','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-05 06:13:17',0),(69356,'2021-05-05 06:17:16','2021-05-11 04:01:17','f80cb4d9-3fde-4ae9-9d0a-0727fe724fa4',1,'/events/hiv-s100-prescriber-update-injectable-new-treatments-1','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/hiv-s100-prescriber-update-injectable-new-treatments-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-11 04:01:17',0),(69357,'2021-05-05 06:36:44','2021-05-05 06:36:44','f602e921-230c-4ed6-94b7-e724a047db17',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---albany-creek-prasads/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---albany-creek-prasads','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 06:36:44',0),(69358,'2021-05-05 06:54:25','2021-05-05 06:54:25','68448096-26b3-4323-a307-4dcd9521f371',1,'/page/news-and-events/events/upcoming/flattening-the-curve-of-mental-ill-health’-webinar-series-2-16-june','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/flattening-the-curve-of-mental-ill-health’-webinar-series-2-16-june','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 06:54:25',0),(69359,'2021-05-05 07:12:04','2021-05-05 07:12:04','379d1563-eacc-4e90-9e39-aa3bfb3f5faf',1,'/page/news-and-events/events/upcoming/educate-for-success---optimal-management-of-ulcerative-colitis/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/educate-for-success---optimal-management-of-ulcerative-colitis','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 07:12:04',0),(69360,'2021-05-05 07:14:31','2021-05-05 07:14:31','1860cecf-54b7-4a43-baef-2111914fd868',1,'/page/news-and-events/events/upcoming/covid-19-gp-live-webinar-advice-and-support-for-gps-in-racfs/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/covid-19-gp-live-webinar-advice-and-support-for-gps-in-racfs','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 07:14:31',0),(69361,'2021-05-05 07:27:09','2021-05-05 07:27:09','6981c41f-ac46-47a2-8021-cbef7c9fdbc0',1,'/content/Image/Maree Lyons-Micic_2016.jpg','','123.141.2.66','Wget/1.21','Template not found: content/Image/Maree Lyons-Micic_2016.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 07:27:09',0),(69362,'2021-05-05 07:41:46','2021-05-05 07:41:46','3bbe4464-f8ba-49d1-b7ea-45bab9cf6a51',1,'/page/health-professionals/local positions vacant/general-practitioner---vr-gp-for-dws-practice-required---the-family-practice-medical-centre-the-gap','http://brisbanenorthphn.org.au/page/health-professionals/local+positions+vacant/general-practitioner---vr-gp-for-dws-practice-required---the-family-practice-medical-centre-the-gap','35.210.17.1','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/health-professionals/local positions vacant/general-practitioner---vr-gp-for-dws-practice-required---the-family-practice-medical-centre-the-gap','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 07:41:46',0),(69363,'2021-05-05 07:43:04','2021-05-10 10:31:28','ca6c0708-b61e-4d2e-ade8-ef463da3166c',1,'/content/Document/Pathways/Aortic dissection node 50.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/Aortic%20dissection%20node%2050.pdf','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/Pathways/Aortic dissection node 50.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-10 10:31:28',0),(69364,'2021-05-05 08:01:29','2021-05-05 08:01:29','1c6d083f-d3c3-47dd-8020-7acec3156486',1,'/content/Document/Pathways/Mental','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Pathways/Mental','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 08:01:29',0),(69365,'2021-05-05 08:36:58','2021-05-09 06:10:48','38e41a38-c878-4a2d-8bba-d9a72a159a77',1,'/media/multimedia/youtube','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: media/multimedia/youtube','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 06:10:48',0),(69366,'2021-05-05 08:44:43','2021-05-05 08:44:43','61328577-fddb-4870-ac7f-efb332f922f2',1,'/position-type/practice-nurse-manager','','66.249.79.148','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: position-type/practice-nurse-manager','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 08:44:43',0),(69367,'2021-05-05 08:51:49','2021-05-05 08:51:49','d6c92310-c41d-4943-855d-6902f4b274dd',1,'/page/news-and-events/events/upcoming/totally-hr---right-people-right-skills-right-workforce/','http://brisbanenorthphn.org.au/page/news-and-events/events/upcoming/totally-hr---right-people-right-skills-right-workforce/','35.210.146.110','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/events/upcoming/totally-hr---right-people-right-skills-right-workforce','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 08:51:49',0),(69368,'2021-05-05 08:59:24','2021-05-05 08:59:24','d4b4d9db-cf7f-49a2-b40e-3ea63936a85e',1,'/content/Document/Brisbane%20MIND%20Provider%20List%20March%202019(5).pdf','http://www.brisbanenorthphn.org.au/content/Document/Brisbane%2520MIND%2520Provider%2520List%2520March%25202019(5).pdf','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/Brisbane MIND Provider List March 2019(5).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 08:59:24',0),(69369,'2021-05-05 09:04:37','2021-05-05 09:04:37','24f8cc47-47b2-4f04-a291-155e05f2e4c1',1,'/null','','49.182.121.8','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1 Mobile/15E148 Safari/604.1','Template not found: null','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 09:04:37',0),(69370,'2021-05-05 09:51:22','2021-05-05 09:51:22','9f82e872-c563-49d1-aa3a-736e2c556632',1,'/page/news-and-events/events/upcoming/3rd-world-congress-on-clinical-lipidology','http://brisbanenorthphn.org.au/page/news-and-events/events/upcoming/3rd-world-congress-on-clinical-lipidology','35.206.169.219','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/events/upcoming/3rd-world-congress-on-clinical-lipidology','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 09:51:22',0),(69371,'2021-05-05 10:06:54','2021-05-05 10:06:54','c44dcb9c-e87c-40aa-bce1-f63622abae68',1,'/page/news-and-events/latest-news/local-campaign-promotes-screening-for-chronic-disease-risk','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/local-campaign-promotes-screening-for-chronic-disease-risk','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 10:06:54',0),(69372,'2021-05-05 10:09:13','2021-05-05 10:09:13','c21892c5-c3c3-4ee5-abcb-d04ce7674f00',1,'/content/Document/MNHHS Palliative Referral MD v4_11(2).rtf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/MNHHS Palliative Referral MD v4_11(2).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 10:09:13',0),(69373,'2021-05-05 10:32:25','2021-05-05 10:32:25','61277d7b-9334-48ac-a74b-d231b06d4b17',1,'/events/working-clutter-1','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/working-clutter-1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 10:32:25',0),(69374,'2021-05-05 10:40:45','2021-05-05 10:40:45','2368b32c-c6b3-435b-a6dd-07d0b1af91df',1,'/content/Document/Caboolture Diabetics 2 May 2017.pdf','http://www.brisbanenorthphn.org.au/content/Document/Caboolture%20Diabetics%202%20May%202017.pdf','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/Caboolture Diabetics 2 May 2017.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 10:40:45',0),(69375,'2021-05-05 11:08:23','2021-05-05 11:08:23','2b0d1e63-877a-41f5-a1dc-5e3d70a1cbf0',1,'/content/Document/Templates/5.2/MNHHS Palliative Referral v5_2 MD.rtf','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/5.2/MNHHS Palliative Referral v5_2 MD.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 11:08:23',0),(69376,'2021-05-05 12:05:46','2021-05-05 12:05:46','1badd3b1-718f-46c9-a1b0-5b4b4463795e',1,'/page/health-professionals/mental-health-services/brisbane-mind/information-for-gps/referral-information/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/mental-health-services/brisbane-mind/information-for-gps/referral-information','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 12:05:46',0),(69377,'2021-05-05 12:29:58','2021-05-05 12:29:58','d13a4717-0726-4b21-ae39-77e32523d436',1,'/yearinreview/2018-19/wp-content/themes/phn/img/logo--dark.svg','','66.249.68.2','Googlebot-Image/1.0','Template not found: yearinreview/2018-19/wp-content/themes/phn/img/logo--dark.svg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 12:29:58',0),(69378,'2021-05-05 12:53:18','2021-05-05 12:53:18','5ff7231d-99a3-4d45-aa98-6b20a79b0bae',1,'/content/Document/Templates/6.1/MNHHS%20Redcliffe%20Ref%20v6_1.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/MNHHS%2520Redcliffe%2520Ref%2520v6_1.rtf','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/MNHHS Redcliffe Ref v6_1.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 12:53:18',0),(69379,'2021-05-05 13:03:07','2021-05-14 14:21:14','9fa08f9b-2a21-4192-9a4c-8b74778d3cb1',1,'/page/news-and-events/events/archive/griffith-university-ndis-symposia-series-children-with-complex-health-needs-and-disability/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/griffith-university-ndis-symposia-series-children-with-complex-health-needs-and-disability','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 14:21:14',0),(69380,'2021-05-05 13:22:01','2021-05-05 13:22:01','3ea49763-bf17-45f3-bfd4-acc7a804be89',1,'/content/Document/PD_Practice Development Officer_170615.pdf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/PD_Practice Development Officer_170615.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 13:22:01',0),(69381,'2021-05-05 13:29:58','2021-05-11 12:15:05','92801a26-6c23-4159-bc4c-2bbb9447bf3b',1,'/content/Image/DSC_0011-2.jpg','','69.171.251.21','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: content/Image/DSC_0011-2.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-11 12:15:05',0),(69382,'2021-05-05 13:30:59','2021-05-05 13:30:59','c270a625-2186-4116-b878-d6df7fb2f44b',1,'/content/Document/Primary%20care%20liaison/Specialists%20List_The%20Prince%20Charles%20Hospital_6_2(2).pdf','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/Specialists%2520List_The%2520Prince%2520Charles%2520Hospital_6_2(2).pdf','35.186.188.225','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/Specialists List_The Prince Charles Hospital_6_2(2).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 13:30:59',0),(69383,'2021-05-05 13:57:34','2021-05-05 13:57:34','5987172e-3d54-4c41-97d4-6d971c4b0aa9',1,'/page/news-and-events/events/upcoming/cardiac-connections-brisbane-city/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/cardiac-connections-brisbane-city','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 13:57:34',0),(69384,'2021-05-05 14:23:19','2021-05-14 22:33:30','3c43ca90-dc5a-4f4c-b335-6f02600fb0cc',1,'/page/health-professionals/Local Positions Vacant/gp-required---aspley/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/gp-required---aspley','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 22:33:30',0),(69385,'2021-05-05 14:26:16','2021-05-19 03:15:06','4734557d-797d-409e-810d-bf0789c6ce6a',1,'/events/covid-19-vaccines-culturally-appropriate-responses-to-commonly-asked-questions-from-multicultural-communities','','54.70.53.60','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0','Template not found: events/covid-19-vaccines-culturally-appropriate-responses-to-commonly-asked-questions-from-multicultural-communities','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,48,'2021-05-19 03:15:06',0),(69386,'2021-05-05 14:55:19','2021-05-05 14:55:19','6b9c2486-6cb9-49eb-bb8d-fe1d469fcac9',1,'/assets/plugins/jqueryupload/server/php/index.php','http://www.google.com/','23.228.109.147','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2896.3 Safari/537.36','Template not found: assets/plugins/jqueryupload/server/php/index.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 14:55:19',0),(69387,'2021-05-05 15:05:07','2021-05-19 01:02:17','14381a2f-aa46-4be5-9137-5d5670e90095',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---deagon/','','17.121.113.169','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---deagon','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-19 01:02:17',0),(69388,'2021-05-05 15:12:29','2021-05-15 18:22:36','8f9d0b6f-5114-42f8-8a49-4e37f87317c4',1,'/page/news-and-events/events/upcoming/occupational-health-symposium---breaking-barriers','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/occupational-health-symposium---breaking-barriers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-15 18:22:36',0),(69389,'2021-05-05 16:09:49','2021-05-05 16:09:49','979114b6-1cb6-4efd-9933-cf7a5ca20009',1,'/page/news-and-events/2017-news/gps-can-access-a-statement-of-choices-from-the-health-provider-portal','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/2017-news/gps-can-access-a-statement-of-choices-from-the-health-provider-portal','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 16:09:49',0),(69390,'2021-05-05 16:26:16','2021-05-05 16:26:16','830ba68e-a597-4f28-9876-5813e35263e8',1,'/content/Document/Templates/4.8/MNHHS Cab Referral PractiX v4_8.doc','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.8/MNHHS%20Cab%20Referral%20PractiX%20v4_8.doc','104.198.141.65','Go-http-client/1.1','Template not found: content/Document/Templates/4.8/MNHHS Cab Referral PractiX v4_8.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 16:26:16',0),(69391,'2021-05-05 16:31:10','2021-05-05 16:31:10','ca73f2fb-f866-43d9-9fe3-073155612155',1,'/content/Document/Templates/4.6/MNHHS Maternity Ref 4_6.rtf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.6/MNHHS Maternity Ref 4_6.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 16:31:10',0),(69392,'2021-05-05 16:45:32','2021-05-15 20:49:54','5a38d671-ae2c-4c45-8117-f77d8844a801',1,'/page/health-professionals/Local Positions Vacant/clinical-psychologist---kallangur/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/clinical-psychologist---kallangur','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 20:49:54',0),(69393,'2021-05-05 16:50:50','2021-05-05 16:50:50','2ccc56d5-961a-415e-b01f-8e796c0055d2',1,'/joycecable3484/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: joycecable3484','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 16:50:50',0),(69394,'2021-05-05 17:20:52','2021-05-05 17:20:52','e80f3d57-2d03-42a8-b521-7b90c7a6e527',1,'/content/Document/Pathways/LINK_E_ Factors with intellectual disability.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/LINK_E_%20Factors%20with%20intellectual%20disability.pdf','35.186.188.225','Go-http-client/1.1','Template not found: content/Document/Pathways/LINK_E_ Factors with intellectual disability.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 17:20:52',0),(69395,'2021-05-05 17:30:10','2021-05-05 17:30:10','0c4ab7f5-791e-4758-99f4-d49779a6a0a6',1,'/content/Image/Logos + infographics/My_Health_Record_inline_banner.jpg','','66.249.68.31','Googlebot-Image/1.0','Template not found: content/Image/Logos infographics/My_Health_Record_inline_banner.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 17:30:10',0),(69396,'2021-05-05 18:00:02','2021-05-07 03:51:01','10df8669-42cf-40b7-ba3a-25f7a554cfe9',1,'/content/Document/Royal Brisbane and Women\'s Hospital (RBWH) Specialist List - Version 3.1.pdf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Royal Brisbane and Women\'s Hospital (RBWH) Specialist List - Version 3.1.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-07 03:51:01',0),(69397,'2021-05-05 18:00:04','2021-05-06 21:55:50','e2c11524-428d-497a-8af8-e20c6a1b3bd0',1,'/page/news-and-events/events/upcoming/crystal-clear---responding-to-methamphetamine/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/crystal-clear---responding-to-methamphetamine','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-06 21:55:50',0),(69398,'2021-05-05 18:01:19','2021-05-05 18:01:19','d18293d0-407a-43f6-b2bb-073ac88a6a05',1,'/content/Document/Templates/6.1/MNHHS%20Redcliffe%20Ref%20v6_1%20BP.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/MNHHS%2520Redcliffe%2520Ref%2520v6_1%2520BP.rtf','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/MNHHS Redcliffe Ref v6_1 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 18:01:19',0),(69399,'2021-05-05 18:16:51','2021-05-05 18:16:51','edd1d342-4b4e-40ce-b819-f9691dc32da3',1,'/content/Document/Events/2019/INVITATION - Common challenges in primary care_asthma-the basics and beyond_PRINTv4.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/INVITATION%20-%20Common%20challenges%20in%20primary%20care_asthma-the%20basics%20and%20beyond_PRINTv4.pdf','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/Events/2019/INVITATION - Common challenges in primary care_asthma-the basics and beyond_PRINTv4.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 18:16:51',0),(69400,'2021-05-05 18:17:02','2021-05-05 18:18:06','5bdf3970-fd36-4ee8-af69-986bbbac1ff3',1,'/content/document/planning/bnphn_mnhhs_planning_for_wellness_regional_plan_sep2018_final_web\\','','65.155.30.101','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36','Template not found: content/document/planning/bnphn_mnhhs_planning_for_wellness_regional_plan_sep2018_final_web\\','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-05 18:18:06',0),(69401,'2021-05-05 18:22:38','2021-05-05 18:22:38','bb604f61-c9c7-4ba3-a9f9-69df88ed3c25',1,'/content/Document/Planning/FIN_AWP NSPT 19-20_190329 WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Planning/FIN_AWP%20NSPT%2019-20_190329%20WEB.pdf','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/Planning/FIN_AWP NSPT 19-20_190329 WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 18:22:38',0),(69402,'2021-05-05 19:11:50','2021-05-05 19:11:50','2e2d09d9-7020-4777-b1a2-a469060028ec',1,'/content/Document/FORM%203%20-%20Approved%20Clinician%20%20Referral%20to%20Group%20Therapy%20Program(2).docx','http://www.brisbanenorthphn.org.au/content/Document/FORM%25203%2520-%2520Approved%2520Clinician%2520%2520Referral%2520to%2520Group%2520Therapy%2520Program(2).docx','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/FORM 3 - Approved Clinician Referral to Group Therapy Program(2).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 19:11:50',0),(69403,'2021-05-05 19:43:17','2021-05-05 19:43:17','98e7bcf8-5806-4705-b927-9771372a65b2',1,'/page/news-and-events/events/archive/the-role-of-the-general-practitioner-in-clozapine-prescribing-and-monitoring/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/the-role-of-the-general-practitioner-in-clozapine-prescribing-and-monitoring','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 19:43:17',0),(69404,'2021-05-05 20:06:51','2021-05-05 20:06:51','115ab127-31d0-413d-8298-bdec2c7d192d',1,'/page/health-professionals/Local Positions Vacant/rn-required---brookside-family-clinic/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/rn-required---brookside-family-clinic','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 20:06:51',0),(69405,'2021-05-05 20:09:18','2021-05-05 20:09:18','d5b45acd-db7f-45ab-b0c8-dba0a304a28d',1,'/content/Document/Pathways/LINK D_Risk factors for falling in the community.pdf','','93.158.161.26','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','Template not found: content/Document/Pathways/LINK D_Risk factors for falling in the community.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 20:09:18',0),(69406,'2021-05-05 20:15:33','2021-05-05 20:15:33','7e90d387-c310-4f70-b773-d3f5c23c152e',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-albany-creek-doctors/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-albany-creek-doctors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 20:15:33',0),(69407,'2021-05-05 20:33:56','2021-05-12 15:17:54','c31ef41b-593d-41f6-a6f9-79268cc5d60e',1,'/content/Document/nps_Diabetes2012.pdf','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/nps_Diabetes2012.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 15:17:54',0),(69408,'2021-05-05 20:41:52','2021-05-05 20:41:52','c7440ec3-8779-48f2-bd1d-eb680514208d',1,'/content/Document/Low-intensity-GP-flyer.pdf','http://www.brisbanenorthphn.org.au/content/Document/Low-intensity-GP-flyer.pdf','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/Low-intensity-GP-flyer.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 20:41:52',0),(69409,'2021-05-05 21:17:31','2021-05-05 21:17:31','b0ad464e-ec47-4c9b-b62f-75a049486026',1,'/content/Document/Engagement/GUI_Complaints%20and%20feedback%20policy%20for%20website.pdf','http://www.brisbanenorthphn.org.au/content/Document/Engagement/GUI_Complaints%2520and%2520feedback%2520policy%2520for%2520website.pdf','34.94.141.43','Go-http-client/1.1','Template not found: content/Document/Engagement/GUI_Complaints and feedback policy for website.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 21:17:31',0),(69410,'2021-05-05 21:42:17','2021-05-05 21:42:17','ddf66fc0-a7fb-4733-8355-fad50fc08eb9',1,'/content/Document/Templates/5.3/MNHHS Caboolture Hospital 5_3 MD.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%20Caboolture%20Hospital%205_3%20MD.rtf','104.198.141.65','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS Caboolture Hospital 5_3 MD.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 21:42:17',0),(69411,'2021-05-05 21:42:23','2021-05-05 21:42:23','089ae556-b67c-45e2-b8f6-f4f5de69681b',1,'/page/health-professionals/Local Positions Vacant/experienced-medical-receptionist-required---aspley-hypermarket-medical-centre/','','49.198.176.10','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','Template not found: page/health-professionals/Local Positions Vacant/experienced-medical-receptionist-required---aspley-hypermarket-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 21:42:23',0),(69412,'2021-05-05 21:57:31','2021-05-05 21:57:31','08db043a-1d68-4b6e-b86f-2c401b63d556',1,'/events/general-immunisation-update-kedron-wavell-rsl-0','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/general-immunisation-update-kedron-wavell-rsl-0','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 21:57:31',0),(69413,'2021-05-05 22:46:25','2021-05-05 22:46:25','a8ddf027-25a9-4fd5-bce0-0fce323f4c1a',1,'/content/Document/Events/2019/Metro%20North%20Health%20Forum/Registration%20form%20-%20Metro%20North%20Health%20Forum%202019.docx','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/Metro%2520North%2520Health%2520Forum/Registration%2520form%2520-%2520Metro%2520North%2520Health%2520Forum%25202019.docx','104.198.141.65','Go-http-client/1.1','Template not found: content/Document/Events/2019/Metro North Health Forum/Registration form - Metro North Health Forum 2019.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 22:46:25',0),(69414,'2021-05-05 22:52:29','2021-05-17 14:09:14','54ded23f-a7b4-4785-a52f-11b7cc8fa7b1',1,'/content/Document/Position descriptions/PD_PSO Lived Experience Networks_180529.pdf','','66.249.68.29','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Position descriptions/PD_PSO Lived Experience Networks_180529.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 14:09:14',0),(69415,'2021-05-05 22:55:25','2021-05-12 17:33:45','1c866874-afc8-449e-af4c-76eddd423a92',1,'/page/about/careers/coordinator-commonwealth-home-support-programme/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers/coordinator-commonwealth-home-support-programme','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 17:33:45',0),(69416,'2021-05-05 22:55:51','2021-05-05 22:55:51','33583a29-f628-4969-bd7c-92c5caea5e28',1,'/content/Document/Network Link/Brisbane North PHN Publications Schedule 2018 with deadlines.pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Network Link/Brisbane North PHN Publications Schedule 2018 with deadlines.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 22:55:51',0),(69417,'2021-05-05 22:59:53','2021-05-05 22:59:53','c90e959e-042a-4065-8f92-071af044a4e5',1,'/page/home/quicklinks/national-health-service-directory','','207.46.13.142','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/home/quicklinks/national-health-service-directory','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 22:59:53',0),(69418,'2021-05-05 23:18:04','2021-05-05 23:18:04','22571797-0c84-49a3-97e5-9c1b8d62ed79',1,'/content/Document/resource_pain.pdf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/resource_pain.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 23:18:04',0),(69419,'2021-05-05 23:20:47','2021-05-05 23:20:47','f3404035-2e0f-4d30-bf15-3843de22dfae',1,'/content/Document/Events/2017/D17-991378 TGA codeine workshop invitation - Brisbane.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2017/D17-991378%20TGA%20codeine%20workshop%20invitation%20-%20Brisbane.pdf','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/Events/2017/D17-991378 TGA codeine workshop invitation - Brisbane.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 23:20:47',0),(69420,'2021-05-05 23:21:04','2021-05-05 23:21:04','32ce9608-63de-4aa2-8895-038a09c3d0e8',1,'/content/Document/MNHHS RBWH Referral PractiX v4_11(1).doc','','40.77.167.30','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/MNHHS RBWH Referral PractiX v4_11(1).doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-05 23:21:04',0),(69421,'2021-05-06 00:04:18','2021-05-06 00:04:18','21eb0598-0928-4d0d-80f2-52a42fd3eda2',1,'/page/news-and-events/events/upcoming/metro-north-maternity-gp-alignment-program-workshop-july2016/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/metro-north-maternity-gp-alignment-program-workshop-july2016','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 00:04:18',0),(69422,'2021-05-06 00:19:15','2021-05-13 22:08:54','f2c3f58f-5610-4b76-ab6c-7b4c9f4bf0c6',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---woody-point/','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---woody-point','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-13 22:08:54',0),(69423,'2021-05-06 00:21:53','2021-05-15 07:30:57','f3d762d1-f57a-41cc-93e9-87d678cb1aee',1,'/content/Document/PD_Program Support Primary Care Liaison_160524.pdf','','66.249.69.33','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/PD_Program Support Primary Care Liaison_160524.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-15 07:30:57',0),(69424,'2021-05-06 00:33:03','2021-05-06 00:33:03','a92c2e39-9803-4f82-a546-381c6edef538',1,'/page/health-professionals/digital-health/my-health-record','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/digital-health/my-health-record','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 00:33:03',0),(69425,'2021-05-06 00:41:20','2021-05-12 21:55:32','43947615-5814-42f7-933a-db481a7b985d',1,'/page/news-and-events/events/archive/health-care-homes-program--payment-management-webinar/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/health-care-homes-program--payment-management-webinar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 21:55:32',0);
INSERT INTO `retour_stats` VALUES (69426,'2021-05-06 01:20:56','2021-05-06 01:20:56','39972f50-10a0-4262-90a5-0e3ee37da4cb',1,'/content/Document/Reports/FIN_AWP%20ITC%2019-21_190430%20WEB.docx','http://www.brisbanenorthphn.org.au/content/Document/Reports/FIN_AWP%2520ITC%252019-21_190430%2520WEB.docx','34.94.135.136','Go-http-client/1.1','Template not found: content/Document/Reports/FIN_AWP ITC 19-21_190430 WEB.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 01:20:56',0),(69427,'2021-05-06 01:48:40','2021-05-06 01:48:40','26b3a2cf-6f2b-4350-bf00-5df020f1d171',1,'/fashionjeet1/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: fashionjeet1','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 01:48:40',0),(69428,'2021-05-06 01:50:26','2021-05-06 01:50:26','0541ffed-dd69-4475-b093-97ce732307ea',1,'/content/Document/NCCN distress thermometer.pdf','http://www.brisbanenorthphn.org.au/content/Document/NCCN%20distress%20thermometer.pdf','34.73.187.226','Go-http-client/1.1','Template not found: content/Document/NCCN distress thermometer.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 01:50:26',0),(69429,'2021-05-06 01:52:41','2021-05-06 01:52:41','cb3ae0db-5165-4c52-80ca-e2999abdd809',1,'/content/Document/Importing%20Instructions_Januray2016.pdf','http://www.brisbanenorthphn.org.au/content/Document/Importing%2520Instructions_Januray2016.pdf','35.192.197.124','Go-http-client/1.1','Template not found: content/Document/Importing Instructions_Januray2016.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 01:52:41',0),(69430,'2021-05-06 01:54:20','2021-05-06 01:54:20','6c89e71f-f943-4d37-98c1-edada7f633d0',1,'/content/Document/TCC_QLD%20Health%20Referral%20Form%2020161108%20HC.docx','http://www.brisbanenorthphn.org.au/content/Document/TCC_QLD%2520Health%2520Referral%2520Form%252020161108%2520HC.docx','35.185.207.84','Go-http-client/1.1','Template not found: content/Document/TCC_QLD Health Referral Form 20161108 HC.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 01:54:20',0),(69431,'2021-05-06 02:36:05','2021-05-06 02:36:05','3c6cc238-7de9-4a6c-a7c5-64e7c06092f4',1,'//x.php','','13.64.17.182','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36','Template not found: x.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 02:36:05',0),(69432,'2021-05-06 02:36:06','2021-05-06 02:36:06','50814b0a-9598-4a22-aa6c-1ce3292e79fd',1,'//alfa.php','','13.64.17.182','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36','Template not found: alfa.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 02:36:06',0),(69433,'2021-05-06 02:36:06','2021-05-06 02:36:06','df01c82d-3f5c-422d-beb4-9416dc3f2fe8',1,'//c99.php','','13.64.17.182','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36','Template not found: c99.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 02:36:06',0),(69434,'2021-05-06 02:36:07','2021-05-06 02:36:07','d403bb4b-3221-4288-af83-4f55000d4f58',1,'//mini.php','','13.64.17.182','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36','Template not found: mini.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 02:36:07',0),(69435,'2021-05-06 02:36:07','2021-05-06 02:36:07','0a2e4391-e278-4ce4-85c4-fea426d8582a',1,'//a.php','','13.64.17.182','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36','Template not found: a.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 02:36:07',0),(69436,'2021-05-06 02:36:08','2021-05-06 02:36:08','404f251c-c8e8-4109-b3b7-73ead33a15fd',1,'//wso.php','','13.64.17.182','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36','Template not found: wso.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 02:36:08',0),(69437,'2021-05-06 02:55:44','2021-05-06 02:55:44','9b671def-5a3f-4bd4-9025-6906eec16331',1,'/events/understanding-diabetes-diabetes-education-unregulated-care-workers','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/understanding-diabetes-diabetes-education-unregulated-care-workers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 02:55:44',0),(69438,'2021-05-06 03:12:22','2021-05-14 17:02:38','273303c2-30e2-4a06-b9b5-6a7f92c21fa4',1,'/content/Media/MR_$23.5m to continue vital mental health reform_170321.pdf','','66.249.72.43','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Media/MR_$23.5m to continue vital mental health reform_170321.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 17:02:38',0),(69439,'2021-05-06 03:17:46','2021-05-06 03:17:46','6466412d-a849-4026-8832-77ec19a2746b',1,'/content/Document/MNHHS Redcliffe Referral ZM v4_11(1).rtf','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/MNHHS Redcliffe Referral ZM v4_11(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 03:17:46',0),(69440,'2021-05-06 03:21:38','2021-05-06 03:21:38','1676abd5-0952-493a-88bf-91a30f79f5e4',1,'/content/Document/Events/2018/Culturally Responsive Health for Clinicians Flyer.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2018/Culturally%20Responsive%20Health%20for%20Clinicians%20Flyer.pdf','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/Events/2018/Culturally Responsive Health for Clinicians Flyer.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 03:21:38',0),(69441,'2021-05-06 03:48:03','2021-05-06 03:48:03','c2128aa7-79a8-49f2-a948-7677707b2fd1',1,'/content/Document/Events/2020/Brisbane North Aged Care Forum Program 19 Mar 2020.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2020/Brisbane%20North%20Aged%20Care%20Forum%20Program%2019%20Mar%202020.pdf','34.73.187.226','Go-http-client/1.1','Template not found: content/Document/Events/2020/Brisbane North Aged Care Forum Program 19 Mar 2020.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 03:48:03',0),(69442,'2021-05-06 03:56:53','2021-05-06 03:56:53','f0f883ea-8126-4e83-9f6d-26d738b30abd',1,'/page/pathways/wound-care/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/pathways/wound-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 03:56:53',0),(69443,'2021-05-06 03:57:41','2021-05-06 03:57:41','7a64cab6-d7c8-4aba-8828-97c3022c3033',1,'/content/Document/Templates/5.3/MNHHS%20Maternity%20v5_3%20ZM.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%2520Maternity%2520v5_3%2520ZM.rtf','35.192.197.124','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS Maternity v5_3 ZM.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 03:57:41',0),(69444,'2021-05-06 04:00:18','2021-05-06 04:00:18','fdc0155c-605f-466f-9abb-e2018a0efeff',1,'/content/Document/Templates/6.1/Specialists%20List_Redcliffe%20Hospital_6_1.pdf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/Specialists%2520List_Redcliffe%2520Hospital_6_1.pdf','35.185.207.84','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/Specialists List_Redcliffe Hospital_6_1.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 04:00:18',0),(69445,'2021-05-06 04:01:02','2021-05-06 04:01:02','0c577ea1-0a87-4396-be31-f06d4c780000',1,'/content/Document/Templates/4.8/MNHHS RBWH Referral MD v4_8(1).rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.8/MNHHS%20RBWH%20Referral%20MD%20v4_8(1).rtf','34.73.187.226','Go-http-client/1.1','Template not found: content/Document/Templates/4.8/MNHHS RBWH Referral MD v4_8(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 04:01:02',0),(69446,'2021-05-06 04:15:25','2021-05-06 04:15:25','2c7169e1-f07c-43e8-a741-f0dab73a956f',1,'/content/Image/Page Banners/Banner_page_MNhealthforum2018(1).jpg','','66.249.68.2','Googlebot-Image/1.0','Template not found: content/Image/Page Banners/Banner_page_MNhealthforum2018(1).jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 04:15:25',0),(69447,'2021-05-06 04:17:50','2021-05-06 04:17:50','6b7e5df1-ebab-49c6-814b-c155a67aabf6',1,'/content/Document/Templates/4.7/MNHHS Redcliffe Ref ZM 4_7.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.7/MNHHS%20Redcliffe%20Ref%20ZM%204_7.rtf','34.94.5.119','Go-http-client/1.1','Template not found: content/Document/Templates/4.7/MNHHS Redcliffe Ref ZM 4_7.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 04:17:50',0),(69448,'2021-05-06 04:27:55','2021-05-06 04:27:55','1b4cc7e5-0c54-4d4b-a11e-6963e31e529a',1,'/video/26285.html','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: video/26285.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 04:27:55',0),(69449,'2021-05-06 04:30:10','2021-05-12 15:44:36','f6442b16-87be-462e-a46e-ea33d6017276',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---geebung/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---geebung','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-12 15:44:36',0),(69450,'2021-05-06 04:33:32','2021-05-06 04:35:15','841aaf46-f14b-4606-af87-c8bb366e48b4',1,'/page/news-and-events/latest-news/brisbane-north-phn-will-play-significant-role-in-mental-health-reform/','','173.252.107.118','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: page/news-and-events/latest-news/brisbane-north-phn-will-play-significant-role-in-mental-health-reform','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,12,'2021-05-06 04:35:15',0),(69451,'2021-05-06 04:33:55','2021-05-06 04:33:55','970942ae-88e5-4715-a9b1-aa96d8ecfe87',1,'/page/news-and-events/latest-news/brisbane-north-phn-will-play-significant-role-in-mental-health-reform','','173.252.107.10','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: page/news-and-events/latest-news/brisbane-north-phn-will-play-significant-role-in-mental-health-reform','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 04:33:55',0),(69452,'2021-05-06 04:44:49','2021-05-06 04:44:49','8d0ed992-0153-4dc2-aebf-9c154cb7c24f',1,'/content/Document/Pathways/Link U_Initiating Antidepressant Treatment.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/Link%20U_Initiating%20Antidepressant%20Treatment.pdf','35.247.93.60','Go-http-client/1.1','Template not found: content/Document/Pathways/Link U_Initiating Antidepressant Treatment.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 04:44:49',0),(69453,'2021-05-06 04:49:04','2021-05-06 04:49:04','95b99406-ce67-41e2-b438-a28a37a759df',1,'/content/Document/Lymphoedema Symptom Questionnaire - UL.pdf','http://www.brisbanenorthphn.org.au/content/Document/Lymphoedema%20Symptom%20Questionnaire%20-%20UL.pdf','34.94.135.136','Go-http-client/1.1','Template not found: content/Document/Lymphoedema Symptom Questionnaire - UL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 04:49:04',0),(69454,'2021-05-06 04:53:39','2021-05-06 04:53:39','c10909a3-f6e7-410f-8010-23f1afaf847a',1,'/content/Document/Templates/Brisbane%20MIND/MIND%204KiDS%20V3%20BP.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/Brisbane%2520MIND/MIND%25204KiDS%2520V3%2520BP.rtf','35.185.207.84','Go-http-client/1.1','Template not found: content/Document/Templates/Brisbane MIND/MIND 4KiDS V3 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 04:53:39',0),(69455,'2021-05-06 05:12:42','2021-05-15 02:11:55','a177669b-9089-47a6-a177-622bf9a7b33d',1,'/page/news-and-events/events/upcoming/ndis-and-mental-health','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/ndis-and-mental-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-15 02:11:55',0),(69456,'2021-05-06 05:17:46','2021-05-06 05:17:46','ba61121c-0b8c-4b85-b222-86ad7aa5fd16',1,'/content/Document/Templates/4.5/MNHHS Paediatric Referral BP v4.5 160101.rtf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.5/MNHHS Paediatric Referral BP v4.5 160101.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 05:17:46',0),(69457,'2021-05-06 05:22:01','2021-05-18 05:01:01','34a9b24b-dcc9-4fd4-b8db-fbe261885082',1,'/events/hepatitis-c-for-nurse-practitioners','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/hepatitis-c-for-nurse-practitioners','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-18 05:01:01',0),(69458,'2021-05-06 05:34:20','2021-05-06 05:34:20','32875c8e-addf-4f3d-8c09-6580eb1a633c',1,'/content/Image/Page Banners/Banner_page_EOI.jpg','','66.249.68.31','Googlebot-Image/1.0','Template not found: content/Image/Page Banners/Banner_page_EOI.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 05:34:20',0),(69459,'2021-05-06 05:41:45','2021-05-06 05:41:45','5bddad8a-ff35-4e57-b7de-7b0e4afe38b0',1,'/content/Document/Events/2017/INVITATION - NDIS GP readiness evening - 6 Feb 2018.pdf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2017/INVITATION - NDIS GP readiness evening - 6 Feb 2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 05:41:45',0),(69460,'2021-05-06 05:51:01','2021-05-12 00:42:31','9fe73b66-37ca-4f7f-8036-d420027f88f6',1,'/content/Document/Media Releases/MR_Community control remains key to closing the gap_170316.pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%20Releases/MR_Community%20control%20remains%20key%20to%20closing%20the%20gap_170316.pdf','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/Media Releases/MR_Community control remains key to closing the gap_170316.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 00:42:31',0),(69461,'2021-05-06 05:57:50','2021-05-12 00:29:52','7d333ba6-d266-4423-b3fe-292701454cbc',1,'/free-vectors','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: free-vectors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 00:29:52',0),(69462,'2021-05-06 05:57:56','2021-05-18 13:50:20','69155304-d74a-46c0-a845-b610a772b0ef',1,'/royalty-free-vectors','','157.55.39.35','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: royalty-free-vectors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 13:50:20',0),(69463,'2021-05-06 05:58:25','2021-05-09 07:34:28','9c640769-6d77-427d-a44e-8a80f2d69c74',1,'/content/Document/Media Releases/MR_Doctor Dad joins Medical Mums to convince vaccine doubters_170424.pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%20Releases/MR_Doctor%20Dad%20joins%20Medical%20Mums%20to%20convince%20vaccine%20doubters_170424.pdf','35.192.197.124','Go-http-client/1.1','Template not found: content/Document/Media Releases/MR_Doctor Dad joins Medical Mums to convince vaccine doubters_170424.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 07:34:28',0),(69464,'2021-05-06 06:58:43','2021-05-06 06:58:43','a8df15cb-a633-41b4-968d-424c82549abd',1,'/content/Document/Events/mngpap-maternity-07_10_17.pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/mngpap-maternity-07_10_17.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 06:58:43',0),(69465,'2021-05-06 08:34:39','2021-05-06 08:34:39','bbdf5c44-931c-4a9f-8ae3-19bb7eb956d0',1,'/content/Document/Paediatric%20Services%20Directory%20-%20Metro%20North%20District_FINAL_v4_1(3).docx','http://www.brisbanenorthphn.org.au/content/Document/Paediatric%2520Services%2520Directory%2520-%2520Metro%2520North%2520District_FINAL_v4_1(3).docx','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/Paediatric Services Directory - Metro North District_FINAL_v4_1(3).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 08:34:39',0),(69466,'2021-05-06 08:41:58','2021-05-06 08:41:58','53059e35-4315-4319-a809-c56beab24f30',1,'/content/Document/MNHHS Paediatric Referral MD v4_11(2).rtf','http://www.brisbanenorthphn.org.au/content/Document/MNHHS%20Paediatric%20Referral%20MD%20v4_11(2).rtf','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/MNHHS Paediatric Referral MD v4_11(2).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 08:41:58',0),(69467,'2021-05-06 08:52:19','2021-05-15 06:45:20','a0fe0a95-c884-4c14-ac50-41198bcc4e02',1,'/page/publications/recovery/recovery---august-2019','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/recovery/recovery---august-2019','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-15 06:45:20',0),(69468,'2021-05-06 09:05:23','2021-05-06 09:05:23','23a8ea06-1c16-455e-8262-291c465105ba',1,'/content/Document/Templates/4.5/MNHHS Palliative Care Referral BP v4.5 160101.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.5/MNHHS%20Palliative%20Care%20Referral%20BP%20v4.5%20160101.rtf','34.94.141.43','Go-http-client/1.1','Template not found: content/Document/Templates/4.5/MNHHS Palliative Care Referral BP v4.5 160101.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 09:05:23',0),(69469,'2021-05-06 10:07:53','2021-05-06 10:07:53','06edd444-9542-445e-84fe-c7c66e09a289',1,'/content/Document/PD_Exec Mgr MHAOD_170626.pdf','http://www.brisbanenorthphn.org.au/content/Document/PD_Exec%20Mgr%20MHAOD_170626.pdf','34.94.135.136','Go-http-client/1.1','Template not found: content/Document/PD_Exec Mgr MHAOD_170626.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 10:07:53',0),(69470,'2021-05-06 10:19:01','2021-05-10 08:34:11','cb9edd1f-dd4d-4602-a1ba-6abfd5589e59',1,'/content/Document/Pathways/HealthPathways Program Update_Jun 2019.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/HealthPathways%20Program%20Update_Jun%202019.pdf','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/Pathways/HealthPathways Program Update_Jun 2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 08:34:11',0),(69471,'2021-05-06 10:37:13','2021-05-06 10:37:13','5fe8caff-5036-427b-a4fa-84aa2018c6a3',1,'/content/Document/Templates/6.1/MNHHS%20Maternity%20v6_1.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/MNHHS%2520Maternity%2520v6_1.rtf','34.94.135.136','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/MNHHS Maternity v6_1.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 10:37:13',0),(69472,'2021-05-06 10:38:30','2021-05-15 13:20:07','b396acff-cfd2-4698-8b18-25ceca4749ce',1,'/page/news-and-events/events/upcoming/transitioning-beyond-covid-19','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/transitioning-beyond-covid-19','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-15 13:20:07',0),(69473,'2021-05-06 10:51:15','2021-05-06 10:51:15','cce0870d-a81c-4f6c-9cf8-d04c1e579746',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---platinum-medical-centre-chermside/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---platinum-medical-centre-chermside','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 10:51:15',0),(69474,'2021-05-06 10:52:42','2021-05-11 08:29:53','4213e480-7238-4df3-a836-b5d67b0ab70f',1,'/tel:07 5497 7400','https://www.google.com/','35.227.172.20','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36','Template not found: tel:07 5497 7400','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-11 08:29:53',0),(69475,'2021-05-06 10:56:33','2021-05-06 10:56:33','04b8199d-b4ae-4104-82ae-7b90dbbedd06',1,'/content/Document/Templates/4.9/MNHHS Redcliffe Referral ZM v4_9.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.9/MNHHS%20Redcliffe%20Referral%20ZM%20v4_9.rtf','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/Templates/4.9/MNHHS Redcliffe Referral ZM v4_9.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 10:56:33',0),(69476,'2021-05-06 10:58:43','2021-05-06 10:58:43','c0e4cfc9-1ba8-4245-bacf-559ec4b76aa2',1,'/content/Document/Templates/4.4/MNHHS Maternity Ref ZM v4.4.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.4/MNHHS%20Maternity%20Ref%20ZM%20v4.4.rtf','35.186.188.225','Go-http-client/1.1','Template not found: content/Document/Templates/4.4/MNHHS Maternity Ref ZM v4.4.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 10:58:43',0),(69477,'2021-05-06 10:59:25','2021-05-12 05:28:05','850e6e79-c499-4579-b43f-441ca2cff0c1',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---dr-khan-surgery/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---dr-khan-surgery','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 05:28:05',0),(69478,'2021-05-06 11:09:31','2021-05-06 11:09:31','062abdac-f71d-45f8-85ea-a53396620613',1,'/content/Document/Templates/TCC/Teamcare%20Referral%20PractiX%20130604.doc','','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/Templates/TCC/Teamcare Referral PractiX 130604.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 11:09:31',0),(69479,'2021-05-06 11:22:46','2021-05-10 19:31:56','2790c5c8-9e66-4c4a-acbe-d880b8637938',1,'/content/Document/Primary care liaison/MNHHS Redcliffe Hosp Ref v6_2 MD.rtf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Primary care liaison/MNHHS Redcliffe Hosp Ref v6_2 MD.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 19:31:56',0),(69480,'2021-05-06 11:26:44','2021-05-06 11:26:44','5d42c304-4e6e-4298-ae4f-642f5952dfab',1,'/content/Document/Templates/Vaccine Management Protocol 7_2019 MNPHU(1).docx','http://www.brisbanenorthphn.org.au/content/Document/Templates/Vaccine%20Management%20Protocol%207_2019%20MNPHU(1).docx','34.94.141.43','Go-http-client/1.1','Template not found: content/Document/Templates/Vaccine Management Protocol 7_2019 MNPHU(1).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 11:26:44',0),(69481,'2021-05-06 11:46:12','2021-05-06 11:46:12','8baa0803-2f8c-406d-90b3-b21c3d75cb53',1,'/content/Document/Recovery/INVITATION - Trajectories of dying 20 February 2020 FINAL.pdf','http://www.brisbanenorthphn.org.au/content/Document/Recovery/INVITATION%20-%20Trajectories%20of%20dying%2020%20February%202020%20FINAL.pdf','35.192.197.124','Go-http-client/1.1','Template not found: content/Document/Recovery/INVITATION - Trajectories of dying 20 February 2020 FINAL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 11:46:12',0),(69482,'2021-05-06 12:23:09','2021-05-06 12:23:09','c6e2a198-cc84-464b-88b7-d855b29cefc5',1,'/page/about/careers/clinical-project-lead-care-coordination','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/careers/clinical-project-lead-care-coordination','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 12:23:09',0),(69483,'2021-05-06 13:01:32','2021-05-06 13:01:32','4ce4c11a-8db1-4234-bf3f-2e0321461f77',1,'/content/Image/Directors/Anita Green cropped.jpg','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Directors/Anita Green cropped.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 13:01:32',0),(69484,'2021-05-06 13:11:48','2021-05-06 13:11:48','fa747578-2215-491c-978a-49e35d9a1048',1,'/content/Document/Access a greater range of mh services with Brisbane MIND Plus FINAL.pdf','http://www.brisbanenorthphn.org.au/content/Document/Access%20a%20greater%20range%20of%20mh%20services%20with%20Brisbane%20MIND%20Plus%20FINAL.pdf','34.73.187.226','Go-http-client/1.1','Template not found: content/Document/Access a greater range of mh services with Brisbane MIND Plus FINAL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 13:11:48',0),(69485,'2021-05-06 13:31:59','2021-05-06 13:31:59','9acefa5e-ef72-427b-b582-5fb8321223a5',1,'/content/Document/Events/2018/CDSP%20North%20Brisbane%209%20February%202019.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2018/CDSP%2520North%2520Brisbane%25209%2520February%25202019.pdf','34.121.182.57','Go-http-client/1.1','Template not found: content/Document/Events/2018/CDSP North Brisbane 9 February 2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 13:31:59',0),(69486,'2021-05-06 13:36:19','2021-05-06 13:36:19','4e97c2c0-aa76-4f4b-b154-851a09868832',1,'/content/Document/Pathways/HealthPathways Program Update_Nov 2018.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/HealthPathways%20Program%20Update_Nov%202018.pdf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Pathways/HealthPathways Program Update_Nov 2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 13:36:19',0),(69487,'2021-05-06 13:53:26','2021-05-06 13:53:26','6d5d4941-9066-43ab-9b18-ac5c9e1804fc',1,'/content/Document/FORM%206%20-%20%20Incident%20Report(1).docx','http://www.brisbanenorthphn.org.au/content/Document/FORM%25206%2520-%2520%2520Incident%2520Report(1).docx','34.94.5.119','Go-http-client/1.1','Template not found: content/Document/FORM 6 - Incident Report(1).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 13:53:26',0),(69488,'2021-05-06 15:00:54','2021-05-06 15:00:54','6aca74dd-1ef4-4373-92f9-cc360930e587',1,'/content/Document/LINK H_Depression Tools(1).pdf','http://www.brisbanenorthphn.org.au/content/Document/LINK%20H_Depression%20Tools(1).pdf','34.106.50.141','Go-http-client/1.1','Template not found: content/Document/LINK H_Depression Tools(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 15:00:54',0),(69489,'2021-05-06 15:18:02','2021-05-06 15:18:02','c049de7c-068d-43df-ba76-45308dfd8d4f',1,'/content/Document/Pathways/G6_Pressure_Ulcers.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/G6_Pressure_Ulcers.pdf','34.73.187.226','Go-http-client/1.1','Template not found: content/Document/Pathways/G6_Pressure_Ulcers.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 15:18:02',0),(69490,'2021-05-06 15:43:46','2021-05-10 19:59:44','d99a6869-ea23-45f3-bcbd-290d186d1405',1,'/content/Document/Templates/V5.1 Jan 2018/MD/MNHHS Paediatric v5_1 MD.rtf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/V5.1 Jan 2018/MD/MNHHS Paediatric v5_1 MD.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 19:59:44',0),(69491,'2021-05-06 15:53:02','2021-05-06 15:53:02','22d636dd-df99-4272-9e8e-8af4d6902cfb',1,'/content/Document/FIN_MHAOD_Brisbane MIND Plus_v_2_0.pdf','http://www.brisbanenorthphn.org.au/content/Document/FIN_MHAOD_Brisbane%20MIND%20Plus_v_2_0.pdf','35.185.207.84','Go-http-client/1.1','Template not found: content/Document/FIN_MHAOD_Brisbane MIND Plus_v_2_0.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 15:53:02',0),(69492,'2021-05-06 16:07:25','2021-05-06 16:07:25','46fec95c-b361-4acc-8049-8aa79672bfc3',1,'/content/Document/Primary%20care%20liaison/My%20health%20for%20life%20-%20upcoming%20sessions%20BNPHN%2018012019.pdf','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/My%2520health%2520for%2520life%2520-%2520upcoming%2520sessions%2520BNPHN%252018012019.pdf','34.94.5.119','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/My health for life - upcoming sessions BNPHN 18012019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 16:07:25',0),(69493,'2021-05-06 16:13:25','2021-05-06 16:13:25','336f7e3b-7b14-47bb-bfb8-a10fff12cc01',1,'/content/Document/Planning/PLN_NSPT Work Plan_for website_121112_mc.docx','http://www.brisbanenorthphn.org.au/content/Document/Planning/PLN_NSPT%20Work%20Plan_for%20website_121112_mc.docx','34.94.135.136','Go-http-client/1.1','Template not found: content/Document/Planning/PLN_NSPT Work Plan_for website_121112_mc.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 16:13:25',0),(69494,'2021-05-06 16:16:11','2021-05-06 16:16:11','f6bd7dde-6643-4e1a-8fb2-bed34f998552',1,'/content/Document/PD_Clinical Nurse_TCC_170614.pdf','http://www.brisbanenorthphn.org.au/content/Document/PD_Clinical%20Nurse_TCC_170614.pdf','34.73.187.226','Go-http-client/1.1','Template not found: content/Document/PD_Clinical Nurse_TCC_170614.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 16:16:11',0),(69495,'2021-05-06 16:18:07','2021-05-06 16:18:07','363c56af-3313-4cf9-ac17-40b8b7205d99',1,'/content/Document/Brisbane MIND Group Listing 2016-17(2).pdf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Group Listing 2016-17(2).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 16:18:07',0),(69496,'2021-05-06 16:54:18','2021-05-06 16:54:18','167730f0-0c17-4954-a8ca-9d6eb2ef0dad',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-required---q-skin-clinic-lutwyche/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-required---q-skin-clinic-lutwyche','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 16:54:18',0),(69497,'2021-05-06 16:58:58','2021-05-14 04:43:22','590351e0-11f1-4416-abef-4efc6a4db582',1,'/content/Image/News Images/NewAccess_panel_discussion.jpg','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Image/News Images/NewAccess_panel_discussion.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 04:43:22',0),(69498,'2021-05-06 17:26:56','2021-05-06 17:26:56','6958d202-503e-46a2-bb8d-2ff00040ce0d',1,'/content/Document/Updated%20RACF%20Transfer%20to%20Hospital%20Form.doc','http://www.brisbanenorthphn.org.au/content/Document/Updated%2520RACF%2520Transfer%2520to%2520Hospital%2520Form.doc','34.94.141.43','Go-http-client/1.1','Template not found: content/Document/Updated RACF Transfer to Hospital Form.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 17:26:56',0),(69499,'2021-05-06 17:38:26','2021-05-07 06:28:58','94df64a7-5148-4159-b9e0-bf4dd70c431c',1,'/content/Document/Templates/4.9/MNHHS Maternity Referral MD v4_9.rtf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.9/MNHHS Maternity Referral MD v4_9.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-07 06:28:58',0),(69500,'2021-05-06 17:55:51','2021-05-06 17:55:51','1dde7d81-cf19-41e2-91ca-6c083de78a4d',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist-required---platinum-medical-centre/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist-required---platinum-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 17:55:51',0),(69501,'2021-05-06 19:13:39','2021-05-06 19:13:39','22955373-e8ea-4a1f-a56b-6fcd26f84d87',1,'/page/news-and-events/events/upcoming/chronic-conditions-in-community-and-aged-care','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/chronic-conditions-in-community-and-aged-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 19:13:39',0),(69502,'2021-05-06 20:06:33','2021-05-14 03:40:08','0b54f11c-76b8-4086-9164-c3353934b887',1,'/content/Document/Events/2019/LeadtheWay Conference Flyer MFS Email.pdf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2019/LeadtheWay Conference Flyer MFS Email.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 03:40:08',0),(69503,'2021-05-06 20:18:03','2021-05-06 20:18:03','0686ca8e-4ed5-40f8-94b0-86877ac3fa1d',1,'/content/Document/Events/2019/FIN_INVITATION%20-%20Improving%20risk%20management%20with%20quality%20improvement%20-%20September%202019_PRINT.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/FIN_INVITATION%2520-%2520Improving%2520risk%2520management%2520with%2520quality%2520improvement%2520-%2520September%25202019_PRINT.pdf','34.94.141.43','Go-http-client/1.1','Template not found: content/Document/Events/2019/FIN_INVITATION - Improving risk management with quality improvement - September 2019_PRINT.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 20:18:03',0),(69504,'2021-05-06 20:19:22','2021-05-06 20:19:22','905f648e-3d27-43b9-bf51-2dd63d4cf1b8',1,'/content/Document/rediCASE%20Tip%20Sheet%20SP%20EnterScreeningOutcomesK10andK5_FINALJul17.docx','http://www.brisbanenorthphn.org.au/content/Document/rediCASE%2520Tip%2520Sheet%2520SP%2520EnterScreeningOutcomesK10andK5_FINALJul17.docx','104.198.141.65','Go-http-client/1.1','Template not found: content/Document/rediCASE Tip Sheet SP EnterScreeningOutcomesK10andK5_FINALJul17.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 20:19:22',0),(69505,'2021-05-06 20:36:13','2021-05-12 14:25:16','82923072-0207-4c97-9129-9d99fc6be9d0',1,'/content/Document/Templates/5.2/MNHHS Caboolture Referral v5_2 ZM.rtf','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/5.2/MNHHS Caboolture Referral v5_2 ZM.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 14:25:16',0),(69506,'2021-05-06 20:42:55','2021-05-16 06:59:38','55ad4fad-24c7-4764-8339-7da8cab2706d',1,'/content/Document/FINAL Allied Health Collaborative Newsletter - December 2016.pdf','','66.249.69.33','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/FINAL Allied Health Collaborative Newsletter - December 2016.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 06:59:38',0),(69507,'2021-05-06 21:25:15','2021-05-06 21:25:15','7e126299-8e6b-4191-b272-3078438f4d10',1,'/content/Document/160330_MR_Back%20to%20school%20program%20to%20keep%20kids%20safe.pdf','http://www.brisbanenorthphn.org.au/content/Document/160330_MR_Back%2520to%2520school%2520program%2520to%2520keep%2520kids%2520safe.pdf','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/160330_MR_Back to school program to keep kids safe.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 21:25:15',0),(69508,'2021-05-06 22:10:41','2021-05-18 14:33:12','87b5ae11-5fef-4406-881f-82c1e546eaec',1,'/content/Document/Position Descriptions/PD_Manager_Priority Communities_190312.pdf','','40.77.167.35','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Position Descriptions/PD_Manager_Priority Communities_190312.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 14:33:12',0),(69509,'2021-05-06 22:11:34','2021-05-06 22:11:34','0b0a25a7-2c63-4cbc-902e-9817d1080974',1,'/events/medicines-psychopharmacology-general-nurses','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/medicines-psychopharmacology-general-nurses','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 22:11:34',0),(69510,'2021-05-06 23:14:37','2021-05-06 23:14:37','915f3f30-fc72-419b-a9e6-1a3f2b2081c7',1,'/content/Document/Events/2018/Lower Limb Pain Module Flyer.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2018/Lower%20Limb%20Pain%20Module%20Flyer.pdf','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/Events/2018/Lower Limb Pain Module Flyer.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 23:14:37',0),(69511,'2021-05-06 23:20:24','2021-05-06 23:20:24','b3813864-e4e7-4a75-a4f0-7eb5bad80351',1,'/content/Document/DRA_PD_Coordinator_COPD Project_170607.pdf','http://www.brisbanenorthphn.org.au/content/Document/DRA_PD_Coordinator_COPD%20Project_170607.pdf','35.185.207.84','Go-http-client/1.1','Template not found: content/Document/DRA_PD_Coordinator_COPD Project_170607.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 23:20:24',0),(69512,'2021-05-06 23:50:59','2021-05-06 23:50:59','f1869ff8-56e1-4a07-945b-cf8b98148588',1,'/content/Document/Events/2019/Metro North Health Forum/MNHF19 - Mary Wheeldon and Matthew Green.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/Metro%20North%20Health%20Forum/MNHF19%20-%20Mary%20Wheeldon%20and%20Matthew%20Green.pdf','34.94.5.119','Go-http-client/1.1','Template not found: content/Document/Events/2019/Metro North Health Forum/MNHF19 - Mary Wheeldon and Matthew Green.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 23:50:59',0),(69513,'2021-05-06 23:54:48','2021-05-06 23:54:48','03b158ac-0442-49d1-b368-8252f8214893',1,'/content/Document/Templates/5.3/Specialists%20List_Caboolture%20Hospital_5_3.pdf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/Specialists%2520List_Caboolture%2520Hospital_5_3.pdf','34.73.187.226','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/Specialists List_Caboolture Hospital_5_3.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-06 23:54:48',0),(69514,'2021-05-07 00:01:42','2021-05-11 15:08:08','b8ff2e35-e492-45c0-a1cc-e3461c2d483e',1,'/content/Document/Pathways/Immunisation Data Capture Flyer.pdf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/Immunisation Data Capture Flyer.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 15:08:08',0),(69515,'2021-05-07 00:05:48','2021-05-07 00:05:48','bb6bde57-43af-4d4b-b05b-37d5672762ec',1,'/content/Document/Events/2019/FINAL PROGRAM_8 June 2019 WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/FINAL%20PROGRAM_8%20June%202019%20WEB.pdf','35.192.197.124','Go-http-client/1.1','Template not found: content/Document/Events/2019/FINAL PROGRAM_8 June 2019 WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 00:05:48',0),(69516,'2021-05-07 00:27:48','2021-05-07 00:27:48','c7754c86-2559-4096-9782-36c7a3745985',1,'/content/Document/Brisbane%20MIND%20Group%20Therapy%20Listing%20Feb%2019%20V1.pdf','http://www.brisbanenorthphn.org.au/content/Document/Brisbane%2520MIND%2520Group%2520Therapy%2520Listing%2520Feb%252019%2520V1.pdf','34.94.5.119','Go-http-client/1.1','Template not found: content/Document/Brisbane MIND Group Therapy Listing Feb 19 V1.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 00:27:48',0),(69517,'2021-05-07 00:29:29','2021-05-07 00:29:29','3c1f2573-742f-4d47-a6a9-34edcb86d248',1,'/content/Document/DietaryGuidelines Quiz- Are you Eating For Health.pdf','http://www.brisbanenorthphn.org.au/content/Document/DietaryGuidelines%20Quiz-%20Are%20you%20Eating%20For%20Health.pdf','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/DietaryGuidelines Quiz- Are you Eating For Health.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 00:29:29',0),(69518,'2021-05-07 00:41:43','2021-05-07 00:41:43','070f665d-1a46-4cd6-8e66-8c851e048bff',1,'/autodiscover/autodiscover.svc','','52.98.7.133','AutodiscoverClient','Template not found: autodiscover/autodiscover.svc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 00:41:43',0),(69519,'2021-05-07 01:33:48','2021-05-07 01:33:48','1f155932-24a5-4e83-8d7d-b362186fe533',1,'/content/Document/Events/2019/Course in Ear and Hearing Health Benchmarque Group.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/Course%20in%20Ear%20and%20Hearing%20Health%20Benchmarque%20Group.pdf','34.94.135.136','Go-http-client/1.1','Template not found: content/Document/Events/2019/Course in Ear and Hearing Health Benchmarque Group.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 01:33:48',0),(69520,'2021-05-07 02:08:38','2021-05-07 02:08:38','9dd9475b-303b-442b-ab84-1c7fac7de677',1,'/content/Document/Events/Hospital Community Forum flyer 06 Oct 2015.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/Hospital%20Community%20Forum%20flyer%2006%20Oct%202015.pdf','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/Events/Hospital Community Forum flyer 06 Oct 2015.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 02:08:38',0),(69521,'2021-05-07 03:01:33','2021-05-07 03:01:33','15a1bb0a-75c3-456d-92bf-7fa8b0b384d3',1,'/content/Document/Media Releases/MR_National chronic care trial finds home in Brisbane North_160824.pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%20Releases/MR_National%20chronic%20care%20trial%20finds%20home%20in%20Brisbane%20North_160824.pdf','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/Media Releases/MR_National chronic care trial finds home in Brisbane North_160824.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 03:01:33',0),(69522,'2021-05-07 03:07:40','2021-05-07 03:07:40','25daf727-c0d5-41ff-942a-4e2a32231b67',1,'/yearinreview/mental-health-suicide-prevention-and-alcohol-and-other-drug-services/www.peachtree.org.au','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: yearinreview/mental-health-suicide-prevention-and-alcohol-and-other-drug-services/www.peachtree.org.au','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 03:07:40',0),(69523,'2021-05-07 03:29:44','2021-05-07 03:29:44','610483e7-0f75-49f8-97a1-1da4216213c0',1,'/content/Document/Events/KSC%20Master%20Class%20Program%20Bris%20Aug%202016%20%28Participants%29.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/KSC%2520Master%2520Class%2520Program%2520Bris%2520Aug%25202016%2520%2528Participants%2529.pdf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Events/KSC Master Class Program Bris Aug 2016 (Participants).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 03:29:44',0),(69524,'2021-05-07 03:36:59','2021-05-15 08:28:23','736c8cf1-2e2d-408d-ba18-1578ef23bbf5',1,'/content/Document/Templates/6.1/MNHHS Redcliffe v6_1.rtf','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/6.1/MNHHS Redcliffe v6_1.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-15 08:28:23',0),(69525,'2021-05-07 03:37:47','2021-05-07 03:37:47','e1e17e26-2415-413d-bd0d-3f2524e64e0c',1,'/video/30169.html','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: video/30169.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 03:37:47',0),(69526,'2021-05-07 03:39:40','2021-05-07 03:39:40','a42913f2-b006-461a-ab4f-f0980af7d9c7',1,'/content/Document/Network Link/SCHEDULE_publications_2019.pdf','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Network Link/SCHEDULE_publications_2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 03:39:40',0),(69527,'2021-05-07 04:13:44','2021-05-07 04:13:44','24086580-80e3-4274-a583-0bbd51bdda37',1,'/content/Document/Network Link/2020 Network Link Advertising Specifications v2.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%20Link/2020%20Network%20Link%20Advertising%20Specifications%20v2.pdf','34.86.4.72','Go-http-client/1.1','Template not found: content/Document/Network Link/2020 Network Link Advertising Specifications v2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 04:13:44',0),(69528,'2021-05-07 04:17:30','2021-05-07 04:17:30','ae81f74f-4273-49af-adfc-805dfb5f760b',1,'/content/Document/MNHHS Caboolture Referral BP v4_11(1).rtf','http://www.brisbanenorthphn.org.au/content/Document/MNHHS%20Caboolture%20Referral%20BP%20v4_11(1).rtf','34.94.141.43','Go-http-client/1.1','Template not found: content/Document/MNHHS Caboolture Referral BP v4_11(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 04:17:30',0),(69529,'2021-05-07 04:18:14','2021-05-07 04:18:14','397d30ee-7dac-4da0-a791-8dad637deed7',1,'/content/Document/Templates/6.1/MNHHS%20RBWH%20v6_1.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/MNHHS%2520RBWH%2520v6_1.rtf','34.73.187.226','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/MNHHS RBWH v6_1.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 04:18:14',0),(69530,'2021-05-07 04:36:24','2021-05-07 04:36:24','f813411a-6096-48dc-b581-3aef35b3b0e5',1,'/content/Document/Events/INV_MHR_Enablement_190521_print.pdf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/INV_MHR_Enablement_190521_print.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 04:36:24',0),(69531,'2021-05-07 04:48:17','2021-05-07 04:48:17','94f73120-394b-4d7b-8b21-01a1a3fdbcfa',1,'/events/grief-complicated-grief-divorce-breakup-and-other-losses','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/grief-complicated-grief-divorce-breakup-and-other-losses','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 04:48:17',0),(69532,'2021-05-07 04:48:23','2021-05-07 04:48:23','4623ca76-6a7f-4aef-a3bc-647d389a5d93',1,'/our-programs/aged-and-community-care/chronic-wound-care)Rice,','','80.72.11.74','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)','Template not found: our-programs/aged-and-community-care/chronic-wound-care)Rice,','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 04:48:23',0),(69533,'2021-05-07 04:52:45','2021-05-07 04:52:45','8f72de0d-407e-4ef9-9f24-e21dee24b07f',1,'/content/Document/Templates/6.1/MNHHS%20Maternity%20Ref%20v6_1%20BP.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/MNHHS%2520Maternity%2520Ref%2520v6_1%2520BP.rtf','34.94.5.119','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/MNHHS Maternity Ref v6_1 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 04:52:45',0),(69534,'2021-05-07 04:54:24','2021-05-07 04:54:24','1279d6f4-fa62-4e02-af2c-16fe321281fe',1,'/content/Document/Media Releases/MR_Home exercise cuts healthcare need among elderly_171007.pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%20Releases/MR_Home%20exercise%20cuts%20healthcare%20need%20among%20elderly_171007.pdf','34.106.50.141','Go-http-client/1.1','Template not found: content/Document/Media Releases/MR_Home exercise cuts healthcare need among elderly_171007.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 04:54:24',0),(69535,'2021-05-07 05:11:38','2021-05-09 22:46:36','2e6ffa32-cdc0-4785-a810-77a05eb29919',1,'/content/Document/Templates/4.12/Specialists Lists/Specialists List_Paediatrics_4_12.pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.12/Specialists Lists/Specialists List_Paediatrics_4_12.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 22:46:36',0),(69536,'2021-05-07 05:11:50','2021-05-07 05:11:50','46e14d4d-dcc4-4d57-beb1-c5da778b2fa3',1,'/content/Image/News Images/banner nf .jpg','','114.119.159.246','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/News Images/banner nf .jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 05:11:50',0),(69537,'2021-05-07 05:15:00','2021-05-07 05:15:00','9dd236ca-a880-4cea-9b31-c426d8aa47bc',1,'/content/Document/Assessing suicide risk.pdf','http://www.brisbanenorthphn.org.au/content/Document/Assessing%20suicide%20risk.pdf','34.73.187.226','Go-http-client/1.1','Template not found: content/Document/Assessing suicide risk.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 05:15:00',0),(69538,'2021-05-07 05:20:43','2021-05-07 05:20:43','e1f15873-caa8-4114-a1fb-a485185962c6',1,'/content/Document/Pathways/CVDcaseexamplesATSI35pdf.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/CVDcaseexamplesATSI35pdf.pdf','35.185.207.84','Go-http-client/1.1','Template not found: content/Document/Pathways/CVDcaseexamplesATSI35pdf.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 05:20:43',0),(69539,'2021-05-07 05:40:40','2021-05-07 05:40:40','09c341fd-3983-453d-98ab-185d6c6cc0aa',1,'/content/Image/banner_page_brismind4kids.jpg','','66.220.149.58','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: content/Image/banner_page_brismind4kids.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 05:40:40',0),(69540,'2021-05-07 06:05:24','2021-05-07 06:05:24','bbce3228-5f68-4449-842c-52d72c211222',1,'/plugins/jqueryupload/server/php/index.php','http://www.google.com/','23.228.109.147','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2896.3 Safari/537.36','Template not found: plugins/jqueryupload/server/php/index.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 06:05:24',0),(69541,'2021-05-07 06:16:08','2021-05-07 06:16:08','a65affa6-cc3e-4984-b5eb-d5a92ff25b15',1,'/page/news-and-events/events/upcoming/ndis-access-and-psychosocial-forum---redcliffe/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/ndis-access-and-psychosocial-forum---redcliffe','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 06:16:08',0),(69542,'2021-05-07 06:26:51','2021-05-07 06:26:51','b4742eda-d617-4acb-b089-a4c828fad321',1,'/content/Document/mentalhealth_ngo_programs.doc','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/mentalhealth_ngo_programs.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 06:26:51',0),(69543,'2021-05-07 06:48:29','2021-05-07 06:48:29','964d4a3c-8385-4641-8c8d-68ed0ec38c3e',1,'/content/Document/Questions for patients to ask their surgeon.pdf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Questions for patients to ask their surgeon.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 06:48:29',0),(69544,'2021-05-07 06:59:57','2021-05-07 06:59:57','bc546b62-db38-4562-b4a3-49250a063a68',1,'/content/Document/Templates/Brisbane%20MIND/MIND%20Referral%20V3%20MD.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/Brisbane%2520MIND/MIND%2520Referral%2520V3%2520MD.rtf','34.94.5.119','Go-http-client/1.1','Template not found: content/Document/Templates/Brisbane MIND/MIND Referral V3 MD.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 06:59:57',0),(69545,'2021-05-07 07:36:53','2021-05-07 07:36:53','9673966d-d5ec-4a63-9d98-e4fb49468b07',1,'/content/Document/2018%20Network%20Link%20Advertising%20Specifications%20v1_2.pdf','http://www.brisbanenorthphn.org.au/content/Document/2018%2520Network%2520Link%2520Advertising%2520Specifications%2520v1_2.pdf','35.192.197.124','Go-http-client/1.1','Template not found: content/Document/2018 Network Link Advertising Specifications v1_2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 07:36:53',0),(69546,'2021-05-07 07:48:11','2021-05-07 07:48:11','4050662f-bb49-441f-b155-5232091139a7',1,'/content/Document/Primary%20care%20liaison/FIN_FLY_1908_PIPQI-information_PRINT.pdf','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/FIN_FLY_1908_PIPQI-information_PRINT.pdf','34.94.141.43','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/FIN_FLY_1908_PIPQI-information_PRINT.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 07:48:11',0),(69547,'2021-05-07 07:55:02','2021-05-07 07:55:02','b16f0c0a-28a8-46cb-bc5c-29987a418f62',1,'/content/Document/Pathways/Measuring waist circumference.pdf','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Measuring waist circumference.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 07:55:02',0),(69548,'2021-05-07 08:05:11','2021-05-12 17:27:22','5fe28482-715c-48be-b9da-22ef627f8eba',1,'/content/Document/Pathways/Questions to Assess Adherence to Treatment_link_TC_141110.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/Questions%20to%20Assess%20Adherence%20to%20Treatment_link_TC_141110.pdf','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/Pathways/Questions to Assess Adherence to Treatment_link_TC_141110.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 17:27:22',0),(69549,'2021-05-07 08:25:34','2021-05-07 08:25:34','f5567549-8ded-4009-acfe-f2bb29d138a7',1,'/content/Document/Templates/5.3/MNHHS Paediatric v5_3 ZM.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%20Paediatric%20v5_3%20ZM.rtf','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS Paediatric v5_3 ZM.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 08:25:34',0),(69550,'2021-05-07 08:27:04','2021-05-07 08:27:04','e8c8b1d5-13dd-4d62-b249-fa156714e690',1,'/content/Document/Events/2019/Workshop flyer for 23 July 2019 with CCC PHN WMQ with RSVP date ','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/Workshop%20flyer%20for%2023%20July%202019%20with%20CCC%20PHN%20WMQ%20with%20RSVP%20date%20%26%20govt%20footer%20WEB.pdf','35.192.197.124','Go-http-client/1.1','Template not found: content/Document/Events/2019/Workshop flyer for 23 July 2019 with CCC PHN WMQ with RSVP date ','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 08:27:04',0),(69551,'2021-05-07 08:31:50','2021-05-07 08:31:50','ee739534-6993-496a-a8b3-991f205d2159',1,'/content/Document/Brisbane%20MIND%20Provider%20List%20September%202018(1).pdf','http://www.brisbanenorthphn.org.au/content/Document/Brisbane%2520MIND%2520Provider%2520List%2520September%25202018(1).pdf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Brisbane MIND Provider List September 2018(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 08:31:50',0),(69552,'2021-05-07 09:35:20','2021-05-07 09:35:20','8e785ab6-34fe-480e-98fe-2b4919343fcc',1,'/content/Document/From%20Qld%20Health/Immunisation%20e-learning_binder_QH.pdf','http://www.brisbanenorthphn.org.au/content/Document/From%2520Qld%2520Health/Immunisation%2520e-learning_binder_QH.pdf','34.73.187.226','Go-http-client/1.1','Template not found: content/Document/From Qld Health/Immunisation e-learning_binder_QH.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 09:35:20',0),(69553,'2021-05-07 10:21:43','2021-05-13 21:37:25','b602c7c1-d8cf-4c0b-8514-fd29ccf5ab9e',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-required---brisbane-gp-and-travel-doctor/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-required---brisbane-gp-and-travel-doctor','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 21:37:25',0),(69554,'2021-05-07 10:26:15','2021-05-07 10:26:15','08b06028-12fb-4a21-95c9-6e0c0cddf43a',1,'/content/Document/Primary%20care%20liaison/MNHHS%20Maternity%20Ref%20BP%20v6_2.rtf','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/MNHHS%2520Maternity%2520Ref%2520BP%2520v6_2.rtf','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/MNHHS Maternity Ref BP v6_2.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 10:26:15',0),(69555,'2021-05-07 10:38:01','2021-05-07 10:38:01','6579c28f-102e-4c21-8146-f020b3b27863',1,'/content/Document/Templates/4.5/Specialists List_Palliative Care_4.5 (DRAFT).pdf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.5/Specialists List_Palliative Care_4.5 (DRAFT).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 10:38:01',0),(69556,'2021-05-07 10:56:44','2021-05-07 10:56:44','e57eb51e-bc22-4eb0-b0e3-6ad27ee7beb4',1,'/content/Document/Pathways/OSiP%20Direct%20Referral%20Catchment%20and%20Ref%20Criteria%20Combined%20v1.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/OSiP%2520Direct%2520Referral%2520Catchment%2520and%2520Ref%2520Criteria%2520Combined%2520v1.pdf','35.185.207.84','Go-http-client/1.1','Template not found: content/Document/Pathways/OSiP Direct Referral Catchment and Ref Criteria Combined v1.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 10:56:44',0),(69557,'2021-05-07 11:26:20','2021-05-07 11:26:20','33b1ddd0-ae7f-45bb-aaf4-19ce1e5259fc',1,'/page/news-and-events/2017-news/235m-to-continue-vital-mental-health-reform','','114.119.136.243','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/2017-news/235m-to-continue-vital-mental-health-reform','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 11:26:20',0),(69558,'2021-05-07 13:11:07','2021-05-11 10:53:06','5365e877-cbf1-42df-9282-2bcab2349d63',1,'/content/Document/Planning/FIN_AWP NSPT 19-20_190329 WEB.docx','http://www.brisbanenorthphn.org.au/content/Document/Planning/FIN_AWP%20NSPT%2019-20_190329%20WEB.docx','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Planning/FIN_AWP NSPT 19-20_190329 WEB.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 10:53:06',0),(69559,'2021-05-07 13:33:05','2021-05-12 16:49:14','2c3b0a7b-f82f-44fa-b869-94a9e27521c3',1,'/page/health-professionals/Local Positions Vacant/specialists-and-allied-health-professionals---brisbane-city/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/specialists-and-allied-health-professionals---brisbane-city','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 16:49:14',0),(69560,'2021-05-07 13:44:46','2021-05-12 23:59:11','03aa2ec4-3c19-4889-82ee-a7b06b4d98e1',1,'/events/upcoming-pen-cs-webinar-the-new-heart-health-check-toolkit-and-cat-plus','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/upcoming-pen-cs-webinar-the-new-heart-health-check-toolkit-and-cat-plus','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,8,'2021-05-12 23:59:11',0),(69561,'2021-05-07 14:03:52','2021-05-07 14:03:52','918be2ff-04ef-4311-ba8f-557a57af7f8a',1,'/page/health-professionals/Local Positions Vacant/practice-staff-required---brendale/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/practice-staff-required---brendale','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 14:03:52',0),(69562,'2021-05-07 14:16:01','2021-05-07 14:16:01','863ea390-863c-4ca0-bf02-e931af448e7f',1,'/page/news-and-events/events/upcoming/advanced-management-and-care/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/advanced-management-and-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 14:16:01',0),(69563,'2021-05-07 14:33:57','2021-05-07 14:33:57','81c38f30-4f8d-4fd8-985a-bbf68747eefb',1,'/content/Document/Network%20Link/Network%20Link_07_JULY_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%2520Link/Network%2520Link_07_JULY_WEB.pdf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Network Link/Network Link_07_JULY_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 14:33:57',0),(69564,'2021-05-07 14:36:19','2021-05-07 14:36:19','37051710-62d5-45ba-b0db-f23408b543f5',1,'/content/Document/Pathways/HealthPathways%20Program%20Update_May%202019.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/HealthPathways%2520Program%2520Update_May%25202019.pdf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Pathways/HealthPathways Program Update_May 2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 14:36:19',0),(69565,'2021-05-07 14:38:19','2021-05-07 14:38:23','9dfca153-c7af-4dce-94e6-c5abeb3cf4b3',1,'/page/about/careers/clinical-nurse-team-care-coordination/','','173.252.83.10','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: page/about/careers/clinical-nurse-team-care-coordination','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-07 14:38:23',0),(69566,'2021-05-07 15:02:11','2021-05-12 17:52:40','da455df0-5fe0-40ba-9dc4-b39b5e3e68b4',1,'/content/Document/FORM 6 - Incident Report(1).docx','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/FORM 6 - Incident Report(1).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 17:52:40',0),(69567,'2021-05-07 15:21:32','2021-05-07 15:21:32','2a4d756c-31ff-4d0d-a588-42383c8c166e',1,'/page/pathways/tinnitus/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/pathways/tinnitus','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 15:21:32',0),(69568,'2021-05-07 15:28:16','2021-05-07 15:28:16','6ddc82b4-8722-4b01-a260-5561e49662b3',1,'/events/dealing-effectively-clients-experiencing-family-estrangement','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/dealing-effectively-clients-experiencing-family-estrangement','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 15:28:16',0),(69569,'2021-05-07 16:00:28','2021-05-07 16:00:28','79a1ec27-dadf-4c6e-b762-78c098340c7d',1,'/page/health-professionals/Local Positions Vacant/eating-disorder---carer-and-family-coach/','','66.249.69.33','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/eating-disorder---carer-and-family-coach','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 16:00:28',0),(69570,'2021-05-07 17:19:04','2021-05-07 17:19:04','fe24efa9-8ef9-45ba-805e-ac4c173336cc',1,'/page/health-professionals/Local Positions Vacant/casual-medical-receptionist-required---narangba-family-medical-practice/','','58.161.172.143','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','Template not found: page/health-professionals/Local Positions Vacant/casual-medical-receptionist-required---narangba-family-medical-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 17:19:04',0),(69571,'2021-05-07 17:26:47','2021-05-07 17:26:47','d5717169-9260-482e-95fa-24eb726c0966',1,'/content/Document/Brisbane MIND Provider List November 2017(7).pdf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List November 2017(7).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 17:26:47',0),(69572,'2021-05-07 18:01:13','2021-05-16 23:40:57','82ce1531-54af-495c-915e-d39451b8e7fe',1,'/page/news-and-events/events/upcoming/electronic-prescribing-update-for-primary-health-networks-and-affiliates/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/electronic-prescribing-update-for-primary-health-networks-and-affiliates','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 23:40:57',0),(69573,'2021-05-07 18:12:27','2021-05-07 18:12:27','be6497b9-29ed-4cb0-a7ea-590da2603597',1,'/yearinreview/2018-19/wp-content/uploads/2019/11/Who-is-Brisbane-North-PHN_HERO.jpg','','66.249.69.61','Googlebot-Image/1.0','Template not found: yearinreview/2018-19/wp-content/uploads/2019/11/Who-is-Brisbane-North-PHN_HERO.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 18:12:27',0),(69574,'2021-05-07 18:34:43','2021-05-07 18:34:43','0f4958e2-a2fe-4e66-9177-59c6fc865b9b',1,'/page/health-professionals/community-care/dementia-care/4-best-dementia-care-practices-in-community','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/community-care/dementia-care/4-best-dementia-care-practices-in-community','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 18:34:43',0),(69575,'2021-05-07 18:48:33','2021-05-07 18:48:33','bbfc6175-8b6b-4032-b8cc-0295b220323b',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-burpengary-east/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-burpengary-east','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 18:48:33',0),(69576,'2021-05-07 19:04:16','2021-05-07 19:04:16','04e6cf6a-ffde-42a2-a943-3e2b02ee296c',1,'/content/Document/PD Coord PMHC_160426.pdf','','66.249.69.61','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/PD Coord PMHC_160426.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 19:04:16',0),(69577,'2021-05-07 19:20:21','2021-05-07 19:20:21','500fa33a-636f-497d-8ab0-3e31d1427734',1,'/content/Document/Network%20Link_04_April_2017_WEB_FINAL_170405.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%2520Link_04_April_2017_WEB_FINAL_170405.pdf','35.192.197.124','Go-http-client/1.1','Template not found: content/Document/Network Link_04_April_2017_WEB_FINAL_170405.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 19:20:21',0),(69578,'2021-05-07 19:40:24','2021-05-07 19:40:24','8b88852d-467c-48a8-9a45-8f726ba1d8b4',1,'/rss.xml','','54.194.155.138','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:81.0) Gecko/20100101 Firefox/81.0','Template not found: rss.xml','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 19:40:24',0),(69579,'2021-05-07 19:40:24','2021-05-07 19:40:24','85006530-6de0-416f-ac2a-09b74b2b0a8d',1,'/feeds','','54.194.155.138','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:81.0) Gecko/20100101 Firefox/81.0','Template not found: feeds','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 19:40:24',0),(69580,'2021-05-07 19:40:25','2021-05-07 19:40:25','eeadd210-f6eb-4d33-be07-2ab8974752f4',1,'/index.rdf','','54.194.155.138','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:81.0) Gecko/20100101 Firefox/81.0','Template not found: index.rdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 19:40:24',0),(69581,'2021-05-07 19:40:25','2021-05-07 19:40:25','8b406291-40be-4cd6-a970-f3c034b2fb69',1,'/index.xml','','54.194.155.138','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:81.0) Gecko/20100101 Firefox/81.0','Template not found: index.xml','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 19:40:25',0),(69582,'2021-05-07 19:40:25','2021-05-07 19:40:25','7318324c-91e6-448a-9739-45d0cce62bca',1,'/index.rss','','54.194.155.138','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:81.0) Gecko/20100101 Firefox/81.0','Template not found: index.rss','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 19:40:25',0),(69583,'2021-05-07 19:51:31','2021-05-07 19:51:31','18f0b4b3-2fd4-41d4-ad8b-a6c29022e090',1,'/content/Document/Events/2020/Invitation - immunisation catch up events for Nurses Feb May 2020.pdf','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2020/Invitation - immunisation catch up events for Nurses Feb May 2020.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 19:51:31',0),(69584,'2021-05-07 20:31:47','2021-05-12 03:32:19','f6caf176-750e-4882-8df4-e59ae837cb12',1,'/page/news-and-events/events/upcoming/prombs---melbourne/','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/prombs---melbourne','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 03:32:19',0),(69585,'2021-05-07 21:00:17','2021-05-07 21:00:17','97814929-a726-4b15-af49-b9ef3824b012',1,'/jobs/practice-nurse-north-lakes','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/practice-nurse-north-lakes','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 21:00:17',0),(69586,'2021-05-07 21:22:01','2021-05-07 21:22:01','40a90308-723f-475e-bd24-b8db4ba4079d',1,'/content/Document/MNHHS Redcliffe Referral ZM v4_11.rtf','http://www.brisbanenorthphn.org.au/content/Document/MNHHS%20Redcliffe%20Referral%20ZM%20v4_11.rtf','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/MNHHS Redcliffe Referral ZM v4_11.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 21:22:01',0),(69587,'2021-05-07 21:28:48','2021-05-07 21:28:48','2f6fde64-6460-4a57-8460-54f692c693cb',1,'/page/news-and-events/events/upcoming/2020-neonatal-seminar','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/2020-neonatal-seminar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 21:28:48',0),(69588,'2021-05-07 21:33:15','2021-05-07 21:33:15','bfae542e-d998-4af3-a1bd-39495a49559f',1,'/content/Document/Events/2018/mngpap-peadiatrics-1106180-v2.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2018/mngpap-peadiatrics-1106180-v2.pdf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Events/2018/mngpap-peadiatrics-1106180-v2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 21:33:15',0),(69589,'2021-05-07 21:38:57','2021-05-18 18:17:39','bafbffed-6864-4f19-b0d6-b549c3971eb0',1,'/content/Document/FORM 1 - Clinician Referral for Additional Sessions(1).docx','','157.55.39.98','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/FORM 1 - Clinician Referral for Additional Sessions(1).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 18:17:39',0),(69590,'2021-05-07 22:20:26','2021-05-07 22:20:26','b4a5eee1-be73-49c2-a406-554d958e8dd9',1,'/page/about/careers/program-support-officer-engagement-and-planning/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers/program-support-officer-engagement-and-planning','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 22:20:26',0),(69591,'2021-05-07 22:22:21','2021-05-08 10:15:15','97078c53-b403-456b-a5eb-246395a61d82',1,'/content/Document/Events/Invitation - 2016 Advance Care Planning Invite (Apr, June).pdf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/Invitation - 2016 Advance Care Planning Invite (Apr, June).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-08 10:15:15',0),(69592,'2021-05-07 22:29:56','2021-05-11 17:48:53','5ebd6e01-b2f6-4741-9677-566be6706403',1,'/content/Document/Pathways/TS3_Preventing_Venous_LegUlcers.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/TS3_Preventing_Venous_LegUlcers.pdf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Pathways/TS3_Preventing_Venous_LegUlcers.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 17:48:53',0),(69593,'2021-05-07 22:57:13','2021-05-07 22:57:13','815e4fea-8744-4adc-8a2a-d4590fbb13fa',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---ascot/','','66.249.69.61','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---ascot','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 22:57:13',0),(69594,'2021-05-07 23:36:29','2021-05-07 23:36:29','cf91ec46-ffc9-4f63-a470-0dcd3632b8d8',1,'/page/pathways/stroke/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/pathways/stroke','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-07 23:36:29',0),(69595,'2021-05-08 00:11:18','2021-05-08 00:11:18','9364e423-ae27-4bf0-a557-3baed6aa9524',1,'/page/news-and-events/events/upcoming/aapm-education-and-networking-managing-risk-north-lakes','http://brisbanenorthphn.org.au/page/news-and-events/events/upcoming/aapm-education-and-networking-managing-risk-north-lakes','35.210.207.166','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/events/upcoming/aapm-education-and-networking-managing-risk-north-lakes','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 00:11:18',0),(69596,'2021-05-08 00:15:29','2021-05-08 00:15:29','214f7237-af0b-40ea-92ab-09afa79f9e62',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---burpengary/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---burpengary','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 00:15:29',0),(69597,'2021-05-08 00:34:13','2021-05-18 17:05:39','f32adda7-d0aa-4be9-bb2d-d318a0d88dab',1,'/content/Document/Social media kit_Metro North Health Forum 2017_170530.pdf','','66.249.68.29','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/Social media kit_Metro North Health Forum 2017_170530.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 17:05:39',0),(69598,'2021-05-08 00:48:34','2021-05-10 04:09:05','969cb670-dc95-467e-837e-9f2676876f24',1,'/page/about/careers/residential-aged-care-project-lead-community-care/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers/residential-aged-care-project-lead-community-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 04:09:05',0),(69599,'2021-05-08 00:51:34','2021-05-08 00:51:34','ab84e167-7829-4a97-a370-94e06f154e38',1,'/page/about/careers/clinical-nurse-team-care-coordination-x2/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers/clinical-nurse-team-care-coordination-x2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 00:51:34',0),(69600,'2021-05-08 00:55:08','2021-05-08 00:55:08','327cfff2-340c-43eb-8d54-c4a14029819d',1,'/content/Document/Mental health/Brisbane MIND Plus service map_2019_PRINT.pdf','http://www.brisbanenorthphn.org.au/content/Document/Mental%20health/Brisbane%20MIND%20Plus%20service%20map_2019_PRINT.pdf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Mental health/Brisbane MIND Plus service map_2019_PRINT.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 00:55:08',0),(69601,'2021-05-08 01:32:37','2021-05-14 16:15:57','4f0abda9-84e7-4602-a93e-51318d86baa3',1,'/content/Document/Templates/4.4/Specialists List_Paediatrics_4.4.pdf','','46.4.83.150','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36 Edg/86.0.622.69','Template not found: content/Document/Templates/4.4/Specialists List_Paediatrics_4.4.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-14 16:15:57',0),(69602,'2021-05-08 01:37:18','2021-05-08 01:37:18','8ef3a178-e4e1-4d8f-b4c6-eaa2b1037b9d',1,'/content/Document/Media Releases/160128- State funding for integrated care applauded.pdf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Media Releases/160128- State funding for integrated care applauded.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 01:37:18',0),(69603,'2021-05-08 01:51:06','2021-05-08 01:51:06','4856cc2f-3e15-4ee9-902b-a5f95f5fcddc',1,'/content/Document/Events/2018/Invitation - Back pain event 21 March 2018.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2018/Invitation%20-%20Back%20pain%20event%20%2021%20March%202018.pdf','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/Events/2018/Invitation - Back pain event 21 March 2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 01:51:06',0),(69604,'2021-05-08 02:39:52','2021-05-13 23:43:48','527beba3-a02e-4f62-81c7-64a024c4d299',1,'/content/Document/Position Descriptions/PD_Clinical Nurse TCC_180926(2).pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Position Descriptions/PD_Clinical Nurse TCC_180926(2).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 23:43:48',0),(69605,'2021-05-08 02:43:58','2021-05-08 02:43:58','6a776a76-84af-49a1-b841-d3543c74f583',1,'/content/Document/Brisbane MIND Provider List February 2019(1).pdf','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List February 2019(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 02:43:58',0),(69606,'2021-05-08 03:18:26','2021-05-08 03:18:26','42223371-0b36-4045-a7ee-73fdc984aab3',1,'/page/news-and-events/events/upcoming/ama-queensland-training-on-practice-sustainability/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/ama-queensland-training-on-practice-sustainability','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 03:18:26',0),(69607,'2021-05-08 03:19:48','2021-05-08 03:19:48','7bb5b975-8f68-489a-b065-9491d1bb126d',1,'/content/Document/Events/2018/B_strong Registration Form 1217.pdf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2018/B_strong Registration Form 1217.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 03:19:48',0),(69608,'2021-05-08 03:20:22','2021-05-08 03:20:22','3c66a917-b384-410f-b035-c82bd8c28b0b',1,'/content/Document/Public Health Alert_Listeria and frozen vegetable recall.pdf','http://www.brisbanenorthphn.org.au/content/Document/Public%20Health%20Alert_Listeria%20and%20frozen%20vegetable%20recall.pdf','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/Public Health Alert_Listeria and frozen vegetable recall.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 03:20:22',0),(69609,'2021-05-08 03:37:12','2021-05-08 03:37:12','04e195f2-0c9e-48e3-b404-b59840cfe0b3',1,'/content/Document/Templates/5.2/MNHHS TPCH Referral v5_2 BP.rtf','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/5.2/MNHHS TPCH Referral v5_2 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 03:37:12',0),(69610,'2021-05-08 03:44:37','2021-05-08 03:44:37','20b4d2cb-8bb8-4326-be7a-00a6753c3da8',1,'/content/Document/Planning/Updated_AAWP_Drug%20and%20Alcohol%20Treatment%2018-19_180514%20WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Planning/Updated_AAWP_Drug%2520and%2520Alcohol%2520Treatment%252018-19_180514%2520WEB.pdf','34.121.182.57','Go-http-client/1.1','Template not found: content/Document/Planning/Updated_AAWP_Drug and Alcohol Treatment 18-19_180514 WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 03:44:37',0),(69611,'2021-05-08 03:49:18','2021-05-11 17:32:03','09d01d65-3575-4169-aeec-2e9672183da0',1,'/content/Document/Templates/4.6/MNHHS RBWH Referral PractiX v4_6.doc','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.6/MNHHS RBWH Referral PractiX v4_6.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 17:32:03',0),(69612,'2021-05-08 04:18:30','2021-05-08 04:18:30','3569e56b-5711-417b-ab1b-2658e1ae116f',1,'/page/home/metro-north-health-foru','','104.197.141.11','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','Template not found: page/home/metro-north-health-foru','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 04:18:30',0),(69613,'2021-05-08 04:49:55','2021-05-08 04:49:55','27f7e75f-9060-48f9-b12d-e9090834d559',1,'/content/Document/Templates/4.9/MNHHS Cab Referral PractiX v4_9.doc','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.9/MNHHS Cab Referral PractiX v4_9.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 04:49:55',0),(69614,'2021-05-08 05:17:06','2021-05-08 05:17:06','abf84b8b-dade-42d3-a05f-e669eafcffc9',1,'/en/model/alexxaferrer/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: en/model/alexxaferrer','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 05:17:06',0),(69615,'2021-05-08 05:21:08','2021-05-08 05:21:08','238f1c6a-d6af-4346-86a4-a5c99d21efba',1,'/page/publications/newsletters/partners-in-health','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/publications/newsletters/partners-in-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 05:21:08',0),(69616,'2021-05-08 05:24:13','2021-05-08 11:09:35','4d3501ce-dfa7-4873-8373-40b86ea47250',1,'/news-events/newsletters/partners-in-health/dist/swiper.js','','40.77.167.30','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','Template not found: news-events/newsletters/partners-in-health/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-08 11:09:35',0),(69617,'2021-05-08 06:37:47','2021-05-08 06:37:47','5d3c2ee1-c2cf-47c4-88d9-989f727ed04b',1,'/content/Document/resource_diabetes.pdf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/resource_diabetes.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 06:37:47',0),(69618,'2021-05-08 07:17:49','2021-05-08 07:17:49','c013cabe-5b76-49bb-8b91-d13cb7df7736',1,'/content/Document/Templates/4.4/MNHHS Palliative Ref ZM v4.4.rtf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.4/MNHHS Palliative Ref ZM v4.4.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 07:17:49',0),(69619,'2021-05-08 07:50:04','2021-05-08 07:50:04','0bdcb77a-3af8-4482-95cd-cb6acdcba751',1,'/content/Document/PHN%20toolkit_web.pdf','http://www.brisbanenorthphn.org.au/content/Document/PHN%2520toolkit_web.pdf','34.94.5.119','Go-http-client/1.1','Template not found: content/Document/PHN toolkit_web.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 07:50:04',0),(69620,'2021-05-08 08:16:03','2021-05-08 08:16:03','d71511db-e471-4c5c-9487-7ef3187025dc',1,'/content/Document/Media%20Releases/150701_PHN%20launch%20heralds%20new%20era.pdf','','34.94.5.119','Go-http-client/1.1','Template not found: content/Document/Media Releases/150701_PHN launch heralds new era.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 08:16:03',0),(69621,'2021-05-08 08:41:09','2021-05-08 08:41:09','3355efef-e6f7-43ff-a6b1-3dca3ee69b42',1,'/content/Document/Templates/6.1/MNHHS Maternity Ref ZM v6_1.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/MNHHS%20Maternity%20Ref%20ZM%20v6_1.rtf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/MNHHS Maternity Ref ZM v6_1.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 08:41:09',0),(69622,'2021-05-08 09:28:34','2021-05-08 09:28:34','1e77b8be-5634-49e5-abc0-829c20bc0bdb',1,'/content/Document/Media%20Releases/MR_Record%20crowd%20expected%20for%20Metro%20North%20Health%20Forum_180619.pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%2520Releases/MR_Record%2520crowd%2520expected%2520for%2520Metro%2520North%2520Health%2520Forum_180619.pdf','34.121.182.57','Go-http-client/1.1','Template not found: content/Document/Media Releases/MR_Record crowd expected for Metro North Health Forum_180619.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 09:28:34',0),(69623,'2021-05-08 09:30:11','2021-05-10 01:54:57','0abc759a-c672-4573-b263-c0934f8ead63',1,'/page/health-professionals/digital-health/my-health-record/what-are-the-benefits-of-my-health-record','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/digital-health/my-health-record/what-are-the-benefits-of-my-health-record','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 01:54:57',0),(69624,'2021-05-08 09:35:27','2021-05-13 07:57:08','ea5d4bbf-6108-439a-a4eb-15be6e2bab81',1,'/content/Document/event_olderadultscomplexcare.pdf','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/event_olderadultscomplexcare.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 07:57:08',0),(69625,'2021-05-08 09:45:36','2021-05-08 09:45:36','7108abf7-b5ce-42e5-8359-a7d44e2f33ae',1,'/about/career','','103.137.12.156','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','Template not found: about/career','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 09:45:36',0),(69626,'2021-05-08 10:07:17','2021-05-09 12:42:21','de399160-f70f-4e0e-ab12-4685c9d68339',1,'/content/Document/Templates/4.7/MNHHS Caboolture Ref MD v4_7.rtf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.7/MNHHS Caboolture Ref MD v4_7.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 12:42:21',0),(69627,'2021-05-08 10:09:26','2021-05-08 10:09:26','ca98778f-e21f-444e-9822-105d90250dd7',1,'/content/Document/MNHHS Maternity Referral v4_10.rtf','http://www.brisbanenorthphn.org.au/content/Document/MNHHS%20Maternity%20Referral%20v4_10.rtf','35.192.197.124','Go-http-client/1.1','Template not found: content/Document/MNHHS Maternity Referral v4_10.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 10:09:26',0),(69628,'2021-05-08 10:21:46','2021-05-08 10:21:46','c8e2c153-bec0-44ab-9d68-987d5b3bec45',1,'/content/Document/Primary care liaison/FIN_New Practitioner Induction Kit 2020_200114.docx','http://www.brisbanenorthphn.org.au/content/Document/Primary%20care%20liaison/FIN_New%20Practitioner%20Induction%20Kit%202020_200114.docx','34.121.182.57','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/FIN_New Practitioner Induction Kit 2020_200114.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 10:21:46',0),(69629,'2021-05-08 10:33:28','2021-05-08 10:33:28','369c6ad7-12b4-43c6-b21c-5205d436cf5c',1,'/content/Document/Templates/Vaccine%20Management%20Protocol%207_2019%20MNPHU(1).docx','http://www.brisbanenorthphn.org.au/content/Document/Templates/Vaccine%2520Management%2520Protocol%25207_2019%2520MNPHU(1).docx','34.94.5.119','Go-http-client/1.1','Template not found: content/Document/Templates/Vaccine Management Protocol 7_2019 MNPHU(1).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 10:33:28',0),(69630,'2021-05-08 10:40:41','2021-05-15 11:21:37','00dcabed-fa89-439c-9e53-6f1879377b35',1,'/content/Document/Pathways/Algorithm for Exercise Prescription.pdf','','93.158.161.26','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','Template not found: content/Document/Pathways/Algorithm for Exercise Prescription.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-15 11:21:37',0),(69631,'2021-05-08 10:50:18','2021-05-08 10:50:18','cdeb11ca-e83f-4da9-bf6e-028ed8153d88',1,'/events/smart-workshops-how-improve-client-outcomes-and-service-efficiency-using-smart','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/smart-workshops-how-improve-client-outcomes-and-service-efficiency-using-smart','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 10:50:18',0),(69632,'2021-05-08 12:15:17','2021-05-08 12:15:17','61546e28-a8d4-40b8-982a-f1200b1d16a1',1,'/page/health-professionals/mental-health-services/brisbane-mind/carers-and-consumers/eligibility-criteria/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/mental-health-services/brisbane-mind/carers-and-consumers/eligibility-criteria','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 12:15:17',0),(69633,'2021-05-08 12:35:38','2021-05-18 02:09:13','3413777b-7021-4930-b1a0-9a5e280c382e',1,'/content/Document/Pathways/Donepezil_140430.pdf','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Pathways/Donepezil_140430.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 02:09:13',0),(69634,'2021-05-08 12:39:16','2021-05-08 12:39:16','0207d0f8-231d-4df0-85d2-bb8499b6fb6e',1,'/content/Document/Planning/FIN_AWP_NPS-CoS 19-21_190531 Transition WEB(1).docx','http://www.brisbanenorthphn.org.au/content/Document/Planning/FIN_AWP_NPS-CoS%2019-21_190531%20Transition%20WEB(1).docx','35.233.203.41','Go-http-client/1.1','Template not found: content/Document/Planning/FIN_AWP_NPS-CoS 19-21_190531 Transition WEB(1).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 12:39:16',0),(69635,'2021-05-08 12:45:18','2021-05-08 12:45:18','f46ac41b-e4b2-46dd-951a-fab9241aedb6',1,'/content/Document/Primary%20care%20liaison/INFO_My%20Health%20Record%20Assisted%20Registration%20Script.docx','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/INFO_My%2520Health%2520Record%2520Assisted%2520Registration%2520Script.docx','35.192.197.124','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/INFO_My Health Record Assisted Registration Script.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 12:45:18',0),(69636,'2021-05-08 12:50:03','2021-05-08 12:50:03','4be199df-9568-48f8-ba99-83cde562fc09',1,'/content/Document/Pathways/TS9_Nutrition_Hydration.pdf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/TS9_Nutrition_Hydration.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 12:50:03',0),(69637,'2021-05-08 13:11:33','2021-05-08 13:11:33','843d9611-26d9-4bc1-96d8-c9b0798bc23d',1,'/content/Document/Brisbane MIND Group Listing 2016-17 May.pdf','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Group Listing 2016-17 May.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 13:11:33',0),(69638,'2021-05-08 13:15:59','2021-05-08 13:15:59','ecf199db-793d-4210-9d37-704521413940',1,'/content/Document/Engagement/EOI_CAC_BNPHN_2018.pdf','http://www.brisbanenorthphn.org.au/content/Document/Engagement/EOI_CAC_BNPHN_2018.pdf','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/Engagement/EOI_CAC_BNPHN_2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 13:15:59',0),(69639,'2021-05-08 13:57:28','2021-05-08 13:57:28','46dbfdd1-2c6a-4c27-9884-dc4a608b25d7',1,'/content/Document/Network%20Link_05_May_WEB_170427.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%2520Link_05_May_WEB_170427.pdf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Network Link_05_May_WEB_170427.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 13:57:28',0),(69640,'2021-05-08 13:59:25','2021-05-10 00:01:28','4df6cef2-9296-478c-a893-dc5da1065c87',1,'//2018/wp-includes/wlwmanifest.xml','','201.49.205.164','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36','Template not found: 2018/wp-includes/wlwmanifest.xml','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 00:01:28',0),(69641,'2021-05-08 13:59:29','2021-05-10 00:01:32','84d20b44-d175-4b27-8096-82495a8d8f17',1,'//media/wp-includes/wlwmanifest.xml','','201.49.205.164','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36','Template not found: media/wp-includes/wlwmanifest.xml','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 00:01:32',0),(69642,'2021-05-08 14:40:25','2021-05-08 14:40:25','9568a722-d93b-403d-80d4-c5ed421e5a52',1,'/content/Document/Templates/4.8/MNHHS TPCH Referral MD v4_8.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.8/MNHHS%20TPCH%20Referral%20MD%20v4_8.rtf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Templates/4.8/MNHHS TPCH Referral MD v4_8.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 14:40:25',0),(69643,'2021-05-08 14:50:15','2021-05-15 05:28:47','87d1e2f0-63d4-4bd1-b058-160973773dd1',1,'/page/health-professionals/local positions vacant/practice-staff-required---vasectomy-and-medical-centre-brendale/','http://brisbanenorthphn.org.au/page/health-professionals/local%20positions%20vacant/practice-staff-required---vasectomy-and-medical-centre-brendale/','35.210.108.250','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/health-professionals/local positions vacant/practice-staff-required---vasectomy-and-medical-centre-brendale','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-15 05:28:47',0),(69644,'2021-05-08 15:30:39','2021-05-08 15:30:39','8724cf0b-f8d7-495a-b859-c5d5a484195e',1,'/page/news-and-events/events/upcoming/social-aspects-of-palliative-care/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/social-aspects-of-palliative-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 15:30:39',0),(69645,'2021-05-08 16:31:27','2021-05-08 16:31:27','18e9737a-e556-4109-a326-bdbf3797ba97',1,'/page/health-professionals/Local Positions Vacant/practice-manager-required---arana-hills-medical-centre/','','207.46.13.105','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/practice-manager-required---arana-hills-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 16:31:27',0),(69646,'2021-05-08 16:51:27','2021-05-08 16:51:27','18d798ac-daef-4227-ae62-aad99e61f20a',1,'/content/Document/Brisbane MIND Group Listing 2016-17 May V2.pdf','','66.249.69.33','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/Brisbane MIND Group Listing 2016-17 May V2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 16:51:27',0),(69647,'2021-05-08 16:51:31','2021-05-13 17:11:29','3e3a6ec2-242d-45e7-b002-031adab43648',1,'/content/Document/Brisbane MIND Provider List May 2017(3).pdf','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List May 2017(3).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-13 17:11:29',0),(69648,'2021-05-08 16:52:36','2021-05-08 16:52:36','631d1001-01d5-4b28-9fc7-dd814725239e',1,'/content/Document/Recovery/Access a greater range of mh services with My Mental Health Services eReferral_200219-WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Recovery/Access%20a%20greater%20range%20of%20mh%20services%20with%20My%20Mental%20Health%20Services%20eReferral_200219-WEB.pdf','34.94.5.119','Go-http-client/1.1','Template not found: content/Document/Recovery/Access a greater range of mh services with My Mental Health Services eReferral_200219-WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 16:52:36',0),(69649,'2021-05-08 17:01:58','2021-05-08 17:01:58','dfda5c06-a7dd-4ad9-994d-1e2e9e054818',1,'/content/Document/Position%20Descriptions/PD_Reporting%20and%20Database%20Officer_Information%20Services_190117.pdf','http://www.brisbanenorthphn.org.au/content/Document/Position%2520Descriptions/PD_Reporting%2520and%2520Database%2520Officer_Information%2520Services_190117.pdf','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/Position Descriptions/PD_Reporting and Database Officer_Information Services_190117.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 17:01:58',0),(69650,'2021-05-08 17:16:41','2021-05-08 17:16:41','57769b55-6197-4451-acad-9d53437ad5be',1,'/content/Document/Templates/6.1/MNHHS%20TPCH%20Ref%20v6_1.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/MNHHS%2520TPCH%2520Ref%2520v6_1.rtf','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/MNHHS TPCH Ref v6_1.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 17:16:41',0),(69651,'2021-05-08 17:21:35','2021-05-08 17:21:35','7fada864-c9fd-4723-9675-9ab1391db1ab',1,'/content/Document/Events/CDSP%20North%20Brisbane%201%20June%202019.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/CDSP%2520North%2520Brisbane%25201%2520June%25202019.pdf','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/Events/CDSP North Brisbane 1 June 2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 17:21:35',0),(69652,'2021-05-08 17:30:43','2021-05-12 21:36:40','da83c1d8-3669-4f1a-9c61-af97d72d023b',1,'/jobs/telegraph-road-clinic-vr-general-practitioner','','185.191.171.16','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)','Template not found: jobs/telegraph-road-clinic-vr-general-practitioner','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-12 21:36:40',0),(69653,'2021-05-08 17:34:15','2021-05-16 17:28:16','87388c87-41f4-4bec-aa7d-20ad5dd1c7dc',1,'/events/assessment-and-management-of-upper-limb-pain','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/assessment-and-management-of-upper-limb-pain','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-16 17:28:16',0),(69654,'2021-05-08 18:06:11','2021-05-08 18:06:11','d6110cc8-8c31-437f-9d52-ed28291024a5',1,'/content/Document/MHAOD_Recovery_newsletter_June%202018_FINAL_lowres.pdf','http://www.brisbanenorthphn.org.au/content/Document/MHAOD_Recovery_newsletter_June%25202018_FINAL_lowres.pdf','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/MHAOD_Recovery_newsletter_June 2018_FINAL_lowres.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 18:06:11',0),(69655,'2021-05-08 18:14:47','2021-05-09 12:46:45','cb34e8ea-3281-4f77-b06d-de56a546f852',1,'/content/Document/Planning/Updated_AAWP_Drug and Alcohol Treatment 18-19_180514 WEB(1).docx','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Planning/Updated_AAWP_Drug and Alcohol Treatment 18-19_180514 WEB(1).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-09 12:46:45',0),(69656,'2021-05-08 18:29:44','2021-05-08 18:29:44','bd35bec1-69ed-407d-b733-91aa7d09f51a',1,'/content/Document/Templates/4.7/MNHHS Palliative Ref MD v4_7.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.7/MNHHS%20Palliative%20Ref%20MD%20v4_7.rtf','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/Templates/4.7/MNHHS Palliative Ref MD v4_7.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 18:29:44',0),(69657,'2021-05-08 18:49:48','2021-05-08 18:49:48','9c282e87-bf4b-44a9-a603-b510cf8b517d',1,'/tel:0490 506 744','https://www.google.com/','35.227.172.20','Mozilla/5.0 (iPad; CPU OS 12_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1','Template not found: tel:0490 506 744','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 18:49:48',0),(69658,'2021-05-08 18:53:24','2021-05-15 22:44:05','29fb424d-cabe-477b-ae85-c7ecba32c88c',1,'/content/Document/DRA_MHAOD GP Flyer_v2_0_170704.pdf','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/DRA_MHAOD GP Flyer_v2_0_170704.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-15 22:44:05',0),(69659,'2021-05-08 19:04:46','2021-05-15 00:00:13','309d7cbd-4a45-45d6-b1f4-b8dafde69c88',1,'/lunli/','','40.77.167.64','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: lunli','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 00:00:13',0),(69660,'2021-05-08 19:19:08','2021-05-08 19:19:08','34950acc-3763-45b4-bf23-ab744e5ef0ac',1,'/page/news-and-events/events/upcoming/electronic-prescribing-–-update-for-dispensers/','https://www.brisbanenorthphn.org.au/page/news-and-events/events/upcoming/electronic-prescribing-%E2%80%93-update-for-dispensers/','5.188.48.18','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4100.3 Safari/537.36','Template not found: page/news-and-events/events/upcoming/electronic-prescribing-–-update-for-dispensers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 19:19:08',0),(69661,'2021-05-08 19:53:59','2021-05-08 19:53:59','e645175b-fb7d-4b7b-a69b-fb23d89e3902',1,'/content/Document/Events/Gynaecology workshop flier_171104.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/Gynaecology%20workshop%20flier_171104.pdf','35.233.203.41','Go-http-client/1.1','Template not found: content/Document/Events/Gynaecology workshop flier_171104.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 19:53:59',0),(69662,'2021-05-08 21:54:31','2021-05-08 21:54:31','eec795ed-0dfe-47a0-8672-7592c8d7f487',1,'/page/health-professionals/Local Positions Vacant/gp-required---caboolture/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/gp-required---caboolture','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 21:54:31',0),(69663,'2021-05-08 22:25:15','2021-05-08 22:25:15','ae4e0484-4582-4dc3-814d-2b73e0d93675',1,'/content/Document/Templates/5.3/Specialists%20List_The%20Prince%20Charles%20Hospital_5_3.pdf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/Specialists%2520List_The%2520Prince%2520Charles%2520Hospital_5_3.pdf','34.121.182.57','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/Specialists List_The Prince Charles Hospital_5_3.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 22:25:15',0),(69664,'2021-05-08 22:59:24','2021-05-08 22:59:24','dcdb2396-0120-4ddd-b4e5-b25ee6101ab7',1,'/page/news-and-events/events/archive/mental-health-skills-training/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/mental-health-skills-training','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 22:59:24',0),(69665,'2021-05-08 23:18:38','2021-05-08 23:18:38','6fa1ec61-050e-4b29-918d-04dc4694bd73',1,'/page/home/brands/diabetes---the-annual-cycle-of-care-e-seminar/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/home/brands/diabetes---the-annual-cycle-of-care-e-seminar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 23:18:38',0),(69666,'2021-05-08 23:42:59','2021-05-08 23:42:59','e2b7baa6-9bbe-4c2c-b002-8f125b79c267',1,'/content/Document/Templates/V5.1 Jan 2018/MD/MNHHS Palliatice Care v5_1 MD.rtf','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/V5.1 Jan 2018/MD/MNHHS Palliatice Care v5_1 MD.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-08 23:42:59',0),(69667,'2021-05-09 00:08:07','2021-05-09 00:08:07','267b563e-0de6-46af-8543-2423433a564e',1,'/content/Document/PHN%20MBS%20resource_final_2016_2.pdf','http://www.brisbanenorthphn.org.au/content/Document/PHN%2520MBS%2520resource_final_2016_2.pdf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/PHN MBS resource_final_2016_2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 00:08:07',0),(69668,'2021-05-09 00:17:47','2021-05-09 00:17:47','f762e400-76b0-48d0-b5dc-df1db37ae755',1,'/page/pathways/atrial-fibrillation/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/pathways/atrial-fibrillation','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 00:17:47',0),(69669,'2021-05-09 00:21:35','2021-05-09 00:21:35','824cf078-e83a-4fc8-bba3-16d7d585d6fc',1,'/content/Document/Templates/5.3/MNHHS Palliative v5_3 ZM.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%20Palliative%20v5_3%20ZM.rtf','34.94.5.119','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS Palliative v5_3 ZM.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 00:21:35',0),(69670,'2021-05-09 00:45:02','2021-05-09 00:45:02','571a89ac-75c8-4089-8c83-fc779942fdbc',1,'/content/Document/Planning/FIN_AAWP_Core%20Flexible%2018-19_180717%20WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Planning/FIN_AAWP_Core%2520Flexible%252018-19_180717%2520WEB.pdf','35.185.207.84','Go-http-client/1.1','Template not found: content/Document/Planning/FIN_AAWP_Core Flexible 18-19_180717 WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 00:45:02',0),(69671,'2021-05-09 01:27:21','2021-05-09 01:27:21','813aff49-c22a-4449-a362-b1684eb17ad1',1,'/content/Document/MNHHS Maternity Referral MD v4_11(1).rtf','http://www.brisbanenorthphn.org.au/content/Document/MNHHS%20Maternity%20Referral%20MD%20v4_11(1).rtf','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/MNHHS Maternity Referral MD v4_11(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 01:27:21',0),(69672,'2021-05-09 02:10:40','2021-05-09 02:10:40','8b2b7ac1-2efa-41ae-9943-098afe65ccfb',1,'/content/Document/Reports/FIN_AWP ITC 19-21_190430 WEB.docx','http://www.brisbanenorthphn.org.au/content/Document/Reports/FIN_AWP%20ITC%2019-21_190430%20WEB.docx','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/Reports/FIN_AWP ITC 19-21_190430 WEB.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 02:10:40',0),(69673,'2021-05-09 02:49:54','2021-05-09 02:49:54','fcfea040-ac41-4bc9-8558-0c891b8ff023',1,'/events/cpcre-palliative-care-master-class-opioid-update','','5.9.156.121','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: events/cpcre-palliative-care-master-class-opioid-update','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 02:49:54',0),(69674,'2021-05-09 03:14:24','2021-05-09 03:14:24','075ded66-4161-416f-9005-77e714cded8a',1,'/content/Document/MNHHS TPCH Referral MD v4_11(2).rtf','http://www.brisbanenorthphn.org.au/content/Document/MNHHS%20TPCH%20Referral%20MD%20v4_11(2).rtf','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/MNHHS TPCH Referral MD v4_11(2).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 03:14:24',0),(69675,'2021-05-09 03:20:12','2021-05-09 03:20:12','1e4e84b3-79ee-45ea-b4b5-2eeb30a6f682',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist-required---majellan-medical-centre/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist-required---majellan-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 03:20:12',0),(69676,'2021-05-09 03:37:29','2021-05-09 03:37:29','328d9dc0-8b45-487a-b53f-2bdc1312a4f8',1,'/content/Image/News Images/Banner_nsptfeb20.jpg','','173.252.111.3','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: content/Image/News Images/Banner_nsptfeb20.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 03:37:29',0),(69677,'2021-05-09 03:56:19','2021-05-09 03:56:19','766167b2-b6ed-49b1-9961-d3d82991f703',1,'/content/Document/report_depression_summary.pdf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/report_depression_summary.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 03:56:19',0),(69678,'2021-05-09 03:56:21','2021-05-09 03:56:21','ee43ffa2-d23a-4294-8cc2-59d4693a253d',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-required---redcliffe-beach-clinic/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-required---redcliffe-beach-clinic','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 03:56:21',0),(69679,'2021-05-09 04:15:50','2021-05-09 04:15:50','d28a9d2f-8db1-4804-99cf-424c877b40a9',1,'/content/Document/Events/2018/AAPM LUTWYCHE MARCH 18.pdf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2018/AAPM LUTWYCHE MARCH 18.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 04:15:50',0),(69680,'2021-05-09 04:25:41','2021-05-09 04:25:41','d6a16f62-d084-4c22-a0b6-f6e41e3c3982',1,'/page/news-and-events/latest-news/covid-19-information/novel-coronavirus-information-for-the-public/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/covid-19-information/novel-coronavirus-information-for-the-public','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 04:25:41',0),(69681,'2021-05-09 05:12:43','2021-05-09 05:12:43','60c26eec-7939-4e87-bf08-fedb9cfba338',1,'/events/58th-clinical-update-weekend','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/58th-clinical-update-weekend','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 05:12:43',0),(69682,'2021-05-09 05:15:48','2021-05-09 05:15:48','9e1b6e6d-c630-44ab-a3da-87f890c06702',1,'/content/Document/150903_HealthAlert_Measles.pdf','http://www.brisbanenorthphn.org.au/content/Document/150903_HealthAlert_Measles.pdf','35.185.207.84','Go-http-client/1.1','Template not found: content/Document/150903_HealthAlert_Measles.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 05:15:48',0),(69683,'2021-05-09 05:33:43','2021-05-09 05:33:43','ff4946be-0481-4462-8b23-2379d2c660a0',1,'/content/Document/Primary care liaison/MNHHS Maternity Ref v6_2 MD.rtf','http://www.brisbanenorthphn.org.au/content/Document/Primary%20care%20liaison/MNHHS%20Maternity%20Ref%20v6_2%20MD.rtf','35.192.197.124','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/MNHHS Maternity Ref v6_2 MD.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 05:33:43',0),(69684,'2021-05-09 05:47:58','2021-05-12 17:22:10','2d89370c-193c-43ba-bc70-626985a08041',1,'/jobs/practice-manager-2','','54.36.149.60','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)','Template not found: jobs/practice-manager-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 17:22:10',0),(69685,'2021-05-09 06:16:10','2021-05-09 06:16:10','c01d1e8d-ebc9-417e-a109-615ebb7c8db6',1,'/content/Document/Network%20Link_1_February_2017_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%2520Link_1_February_2017_WEB.pdf','35.185.207.84','Go-http-client/1.1','Template not found: content/Document/Network Link_1_February_2017_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 06:16:10',0),(69686,'2021-05-09 06:18:49','2021-05-09 06:18:49','45742b9b-a2eb-44dd-8be2-bf7924b05dba',1,'/content/Document/BMI Australia Seminar.pdf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/BMI Australia Seminar.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 06:18:49',0),(69687,'2021-05-09 06:19:29','2021-05-09 06:19:29','17268598-c54b-4f26-ba56-a6036f8e4c23',1,'/fr/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: fr','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 06:19:29',0),(69688,'2021-05-09 06:19:33','2021-05-09 06:19:33','cf5e701e-c0f1-48ec-8fd8-8d183b0e3038',1,'/content/Document/Pathways/HealthPathways Program Update_Dec 2019.pdf','http://www.brisbanenorthphn.org.au/content/Document/Pathways/HealthPathways%20Program%20Update_Dec%202019.pdf','35.185.207.84','Go-http-client/1.1','Template not found: content/Document/Pathways/HealthPathways Program Update_Dec 2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 06:19:33',0),(69689,'2021-05-09 06:42:42','2021-05-16 00:20:34','ace26b02-50e7-41ef-b38c-66cb4761e04f',1,'/page/news-and-events/events/archive/advanced-care-planning-workshop-north-lakes/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/advanced-care-planning-workshop-north-lakes','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 00:20:34',0),(69690,'2021-05-09 07:24:17','2021-05-12 13:56:30','2e41f498-0bc5-40ca-a716-d296f0d27dc6',1,'/content/Document/Templates/6.1/MNHHS TPCH v6_1.rtf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/6.1/MNHHS TPCH v6_1.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 13:56:30',0),(69691,'2021-05-09 07:31:37','2021-05-09 07:31:37','9bb7b450-bb51-4e11-9867-0a0e121c5aaa',1,'/content/Document/Campaign%20material/19_5069%20PHN%20Adult%20Immunisation%20poster_FINAL_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Campaign%2520material/19_5069%2520PHN%2520Adult%2520Immunisation%2520poster_FINAL_WEB.pdf','35.192.197.124','Go-http-client/1.1','Template not found: content/Document/Campaign material/19_5069 PHN Adult Immunisation poster_FINAL_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 07:31:37',0),(69692,'2021-05-09 07:42:17','2021-05-09 07:42:17','53aaa066-0b55-405d-b0e0-0c4fe3db68a3',1,'/content/Document/Templates/4.6/MNHHS Maternity Referral PractiX v4_6.doc','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.6/MNHHS Maternity Referral PractiX v4_6.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 07:42:17',0),(69693,'2021-05-09 08:00:45','2021-05-09 08:00:45','c470decc-a9f0-41bd-a93f-35fe0fc1c890',1,'/page/news-and-events/events/upcoming/electronic-prescribing-–-update-for-prescribers/','https://www.brisbanenorthphn.org.au/page/news-and-events/events/upcoming/electronic-prescribing-%E2%80%93-update-for-prescribers/','5.188.48.10','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4093.3 Safari/537.36','Template not found: page/news-and-events/events/upcoming/electronic-prescribing-–-update-for-prescribers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 08:00:45',0),(69694,'2021-05-09 08:03:55','2021-05-11 08:29:54','e86adcc7-7789-4e38-b4f1-248cdad744b5',1,'/tel:0439 766 573','https://www.google.com/','35.227.172.20','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36','Template not found: tel:0439 766 573','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 08:29:54',0),(69695,'2021-05-09 09:13:49','2021-05-09 09:13:49','5bfb3ff0-776d-4e7e-99bd-7740dbfa87d7',1,'/content/Document/Templates/My%20health%20for%20life/My-Health-For-Life-ZM-V2-0.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/My%2520health%2520for%2520life/My-Health-For-Life-ZM-V2-0.rtf','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/Templates/My health for life/My-Health-For-Life-ZM-V2-0.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 09:13:49',0),(69696,'2021-05-09 09:15:54','2021-05-09 09:15:54','a1b13b6d-8678-4c94-b088-df5d467e529d',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist-required---holdsworth-house-medical-brisbane/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist-required---holdsworth-house-medical-brisbane','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 09:15:54',0),(69697,'2021-05-09 09:21:31','2021-05-09 09:21:31','2945f15a-69e9-4dc7-b520-83bd4ea3b2fc',1,'/content/Document/FIN_MHAOD_Brisbane%20MIND%20Plus_v_2_0.pdf','http://www.brisbanenorthphn.org.au/content/Document/FIN_MHAOD_Brisbane%2520MIND%2520Plus_v_2_0.pdf','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/FIN_MHAOD_Brisbane MIND Plus_v_2_0.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 09:21:31',0),(69698,'2021-05-09 09:26:42','2021-05-17 19:51:32','d623d5fa-0b19-4b1b-b629-a6bdaf9874f7',1,'/content/Document/Templates/4.5/MNHHS Maternity Referral PractiX v4.5.doc','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.5/MNHHS Maternity Referral PractiX v4.5.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 19:51:32',0),(69699,'2021-05-09 09:49:01','2021-05-09 09:49:01','303e1a87-b9b7-4271-8ac7-bbe9f6ff5b7b',1,'/content/Document/Media%20Releases/MR_TheEmergencyDepartmentisntalwaysyourbestoption_160628.pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%2520Releases/MR_TheEmergencyDepartmentisntalwaysyourbestoption_160628.pdf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Media Releases/MR_TheEmergencyDepartmentisntalwaysyourbestoption_160628.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 09:49:01',0),(69700,'2021-05-09 09:51:59','2021-05-09 09:51:59','777ec869-f8e2-43e4-ac4d-873d47aee8ff',1,'/our-programs/aged-and-community-care/chronic-wound-careSeigal,','','80.72.11.74','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)','Template not found: our-programs/aged-and-community-care/chronic-wound-careSeigal,','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 09:51:59',0),(69701,'2021-05-09 10:05:05','2021-05-09 10:05:05','5684eca2-8e60-45be-aa78-b90b79c6dd66',1,'/content/Document/PD_Clinical Nurse_TCC_170515(1).pdf','http://www.brisbanenorthphn.org.au/content/Document/PD_Clinical%20Nurse_TCC_170515(1).pdf','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/PD_Clinical Nurse_TCC_170515(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 10:05:05',0),(69702,'2021-05-09 10:22:37','2021-05-17 07:44:38','065da4fe-70ad-42a3-b90b-aaa34e6ff565',1,'/content/Document/Brisbane MIND Provider List_JULY 2016(3).pdf','','157.55.39.35','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List_JULY 2016(3).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 07:44:38',0),(69703,'2021-05-09 10:24:45','2021-05-09 10:24:45','059561cc-1706-4c2a-a41c-845d29996e28',1,'/content/Document/INVITATION-immunisation-catch-up-August-2017.pdf','http://www.brisbanenorthphn.org.au/content/Document/INVITATION-immunisation-catch-up-August-2017.pdf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/INVITATION-immunisation-catch-up-August-2017.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 10:24:45',0),(69704,'2021-05-09 11:12:07','2021-05-09 11:12:07','91ebe86c-0f68-47c0-895b-654b8ff420ec',1,'/content/Document/DRAFT_PROGRAM_Annual_Brisbane_North_Community_Aged_Care_Forum_2015_v1.pdf','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/DRAFT_PROGRAM_Annual_Brisbane_North_Community_Aged_Care_Forum_2015_v1.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 11:12:07',0),(69705,'2021-05-09 11:15:41','2021-05-09 11:15:41','556718ae-8cce-476a-a7b7-3fb6a5887604',1,'/page/health-professionals/Local Positions Vacant/gp-required---qut-medical-centre/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/gp-required---qut-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 11:15:41',0),(69706,'2021-05-09 11:22:22','2021-05-09 11:22:22','d590b838-6305-4481-8b90-6db53c338ee2',1,'/content/Document/Templates/V5.1 Jan 2018/ZedMed/MNHHS Paediatric v5_1 zedmed.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/V5.1%20Jan%202018/ZedMed/MNHHS%20Paediatric%20v5_1%20zedmed.rtf','34.106.6.42','Go-http-client/1.1','Template not found: content/Document/Templates/V5.1 Jan 2018/ZedMed/MNHHS Paediatric v5_1 zedmed.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 11:22:22',0),(69707,'2021-05-09 11:48:01','2021-05-09 11:48:01','bf7d8734-0e1d-4bf0-b897-7a77afe30dcc',1,'/page/news-and-events/events/upcoming/aged-care-clinical-workshop/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/aged-care-clinical-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 11:48:01',0),(69708,'2021-05-09 11:56:02','2021-05-09 11:56:02','d3c145d6-9b86-4f89-b8d4-e90ff0a423b8',1,'/content/Document/Templates/4.12/PractiX%20v4.12/MNHHS%20Cab%20Referral%20PractiX%20v4_12.doc','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.12/PractiX%2520v4.12/MNHHS%2520Cab%2520Referral%2520PractiX%2520v4_12.doc','34.94.5.119','Go-http-client/1.1','Template not found: content/Document/Templates/4.12/PractiX v4.12/MNHHS Cab Referral PractiX v4_12.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 11:56:02',0),(69709,'2021-05-09 12:23:17','2021-05-09 12:23:17','a206b8fa-4f94-48dd-a40b-15a2025f8cc3',1,'/content/Document/Templates/5.3/MNHHS Redcliffe v5_3 ZM.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%20Redcliffe%20v5_3%20ZM.rtf','35.185.207.84','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS Redcliffe v5_3 ZM.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 12:23:17',0),(69710,'2021-05-09 12:24:17','2021-05-09 12:24:17','d388766c-31da-484d-8a0d-3212afa6af4d',1,'/page/news-and-events/events/archive/trauma-informed-care-and-practice-working-with-aboriginal-and-torres-strait-islander-peoples/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/trauma-informed-care-and-practice-working-with-aboriginal-and-torres-strait-islander-peoples','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 12:24:17',0),(69711,'2021-05-09 12:26:04','2021-05-09 12:26:04','5a5f6ce2-98d1-4a24-bedb-ecd3938f539f',1,'/content/Document/Pathways/LINK G_Risk factors for depression.pdf','','93.158.161.26','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','Template not found: content/Document/Pathways/LINK G_Risk factors for depression.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 12:26:04',0),(69712,'2021-05-09 12:34:01','2021-05-09 12:34:01','297c8b76-4371-417b-a711-470aeefe3690',1,'/page/health-professionals/directories/timely-diagnosis-and-management-of-dementia-in-general-practice/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/directories/timely-diagnosis-and-management-of-dementia-in-general-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 12:34:01',0),(69713,'2021-05-09 12:40:27','2021-05-09 12:40:27','d3497295-f617-4714-abb4-b36932ad636f',1,'/content/Document/Enogerra Dementia Conference_with link.pdf','http://www.brisbanenorthphn.org.au/content/Document/Enogerra%20Dementia%20Conference_with%20link.pdf','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/Enogerra Dementia Conference_with link.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 12:40:27',0),(69714,'2021-05-09 12:54:32','2021-05-09 12:54:32','601af9a2-c6ac-4981-b7f9-003945d773e2',1,'/content/Document/Planning/FIN_AAWP_Primary%20Mental%20Health%20Care%2018-19_180514%20WEB(1).docx','http://www.brisbanenorthphn.org.au/content/Document/Planning/FIN_AAWP_Primary%2520Mental%2520Health%2520Care%252018-19_180514%2520WEB(1).docx','35.226.224.10','Go-http-client/1.1','Template not found: content/Document/Planning/FIN_AAWP_Primary Mental Health Care 18-19_180514 WEB(1).docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 12:54:32',0),(69715,'2021-05-09 13:10:39','2021-05-09 13:10:39','a69e6640-6ced-4cc0-9f8b-929ab3cf3826',1,'/Wounds','','80.72.4.100','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)','Template not found: Wounds','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 13:10:39',0),(69716,'2021-05-09 13:10:40','2021-05-09 13:10:40','5e8a89e4-0c72-48d8-8071-d562c1ea3460',1,'/our-','','80.72.4.100','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)','Template not found: our-','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 13:10:40',0),(69717,'2021-05-09 13:17:55','2021-05-09 13:17:55','d1205b3b-39bb-4dba-9beb-245c0da79365',1,'/page/news-and-events/events/upcoming/the-app-guide-to-emotions-and-autism-with-professor-tony-attwood/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/the-app-guide-to-emotions-and-autism-with-professor-tony-attwood','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 13:17:55',0),(69718,'2021-05-09 13:57:12','2021-05-09 13:57:12','3ff3a6c1-f4da-4660-aa2c-204866d3fe8c',1,'/sites/default/files/user-content/media_micah_projects.pdf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: sites/default/files/user-content/media_micah_projects.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 13:57:12',0),(69719,'2021-05-09 14:03:36','2021-05-09 14:03:36','7303c20b-b6f4-438f-997e-c8cc9c2efc98',1,'/content/Document/Events/2019/Metro North Health Forum/MNHF19 - Debbi Sutherland.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/Metro%20North%20Health%20Forum/MNHF19%20-%20Debbi%20Sutherland.pdf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Events/2019/Metro North Health Forum/MNHF19 - Debbi Sutherland.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 14:03:36',0),(69720,'2021-05-09 14:09:24','2021-05-09 14:09:24','7709ba37-ea95-4b0c-a009-009d963e31cb',1,'/content/Media/Genie v6.2/MNHHS RBWH Referral v62_Genie.4W7','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Media/Genie v6.2/MNHHS RBWH Referral v62_Genie.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 14:09:24',0),(69721,'2021-05-09 14:37:30','2021-05-09 14:37:30','176f520c-8850-4d0c-86ae-148ce4f72f3e',1,'/content/Document/Brisbane MIND Provider List August 2018 v4.pdf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List August 2018 v4.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 14:37:30',0),(69722,'2021-05-09 14:48:33','2021-05-09 14:48:33','a47005c6-70aa-4b8c-8f7d-effa1f299b00',1,'/content/Document/Templates/V5.1 Jan 2018/Best Practice/MNHHS Caboolture Ref v5_1 BP.rtf','','13.66.139.0','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/V5.1 Jan 2018/Best Practice/MNHHS Caboolture Ref v5_1 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 14:48:33',0),(69723,'2021-05-09 14:49:51','2021-05-09 14:49:51','e0847aab-be4f-46ad-a2af-360e75ac51db',1,'/content/Document/Templates/5.3/MNHHS Caboolture Hospital 5_3 BP.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%20Caboolture%20Hospital%205_3%20BP.rtf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS Caboolture Hospital 5_3 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 14:49:51',0),(69724,'2021-05-09 15:12:47','2021-05-09 15:12:47','2d4e8612-0f25-47bd-bc89-ae535a4f6e4b',1,'/page/news-and-events/latest-news/covid-19-information/covid-19-news-updates/may-2020','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/covid-19-information/covid-19-news-updates/may-2020','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 15:12:47',0),(69725,'2021-05-09 15:24:33','2021-05-10 13:08:02','3a7c375b-6d73-47d6-9ff8-80da5357f272',1,'/page/about/our-work','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/our-work','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 13:08:02',0),(69726,'2021-05-09 15:33:14','2021-05-09 15:33:14','a6828e51-1f42-4ea5-8d93-662a10f99526',1,'/events/world-indigenous-health-conference','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/world-indigenous-health-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 15:33:14',0),(69727,'2021-05-09 16:41:21','2021-05-09 16:41:21','1d68e100-25d5-4df1-9027-3461c5cde5ab',1,'/content/Document/Getting%20started%20with%20Brisbane%20MIND%20Plus%20FINAL.pdf','http://www.brisbanenorthphn.org.au/content/Document/Getting%2520started%2520with%2520Brisbane%2520MIND%2520Plus%2520FINAL.pdf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Getting started with Brisbane MIND Plus FINAL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 16:41:21',0),(69728,'2021-05-09 16:53:01','2021-05-09 16:53:01','481a126d-c351-4343-996f-0217987c78c0',1,'/content/Document/Events/INVITATION FOR GPs - Common challenges in primary care_Paediatrics_print.pdf','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/INVITATION FOR GPs - Common challenges in primary care_Paediatrics_print.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 16:53:01',0),(69729,'2021-05-09 16:56:23','2021-05-09 16:56:23','30d60806-10c7-473d-8d84-b26a8f96a922',1,'/pin/555279829055890926/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: pin/555279829055890926','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 16:56:23',0),(69730,'2021-05-09 16:56:40','2021-05-09 16:56:40','459911e6-d31d-4024-a49b-5572ec740c51',1,'/content/Document/Primary care liaison/PIP eHealth Checklist.pdf','http://www.brisbanenorthphn.org.au/content/Document/Primary%20care%20liaison/PIP%20eHealth%20Checklist.pdf','35.185.207.84','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/PIP eHealth Checklist.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 16:56:40',0),(69731,'2021-05-09 17:22:33','2021-05-09 17:22:33','f41e1019-e32f-4e7f-bb67-9fec85579773',1,'/content/Document/MNHF presentations 2017/Jurina Demaine and Leonie Naumann - Lymphoedema 170531.pdf','','88.198.90.9','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.66 Safari/537.36','Template not found: content/Document/MNHF presentations 2017/Jurina Demaine and Leonie Naumann - Lymphoedema 170531.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 17:22:33',0),(69732,'2021-05-09 17:27:57','2021-05-09 17:27:57','30637012-b875-48bf-9c5a-08eae714a222',1,'/content/Document/Network%20Link/Network%20Link_4_April_2018_WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Network%2520Link/Network%2520Link_4_April_2018_WEB.pdf','35.192.197.124','Go-http-client/1.1','Template not found: content/Document/Network Link/Network Link_4_April_2018_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 17:27:57',0),(69733,'2021-05-09 17:33:50','2021-05-09 17:33:50','6dac8a8a-e7d3-41c5-95ba-6dbbf38d4a6d',1,'/content/Document/Templates/4.9/MNHHS Maternity PractiX v4_9.doc','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.9/MNHHS%20Maternity%20PractiX%20v4_9.doc','35.233.203.41','Go-http-client/1.1','Template not found: content/Document/Templates/4.9/MNHHS Maternity PractiX v4_9.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 17:33:50',0),(69734,'2021-05-09 17:45:45','2021-05-09 17:45:45','f53d49b6-6996-4a47-811f-19c24ff29938',1,'/assets/fileupload/index.php','http://www.google.com/','23.228.109.147','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2896.3 Safari/537.36','Template not found: assets/fileupload/index.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 17:45:45',0),(69735,'2021-05-09 17:46:33','2021-05-09 17:46:33','862d16c4-8e7e-4a40-a1bb-efe7282bcea4',1,'/content/Document/Brisbane MIND Consent Form - PHN BRANDED.docx','http://www.brisbanenorthphn.org.au/content/Document/Brisbane%20MIND%20Consent%20Form%20-%20PHN%20BRANDED.docx','35.233.203.41','Go-http-client/1.1','Template not found: content/Document/Brisbane MIND Consent Form - PHN BRANDED.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 17:46:33',0),(69736,'2021-05-09 17:49:09','2021-05-09 17:49:09','f6bc7117-fee4-46bc-b1c2-1ed3a6e1e257',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-required---central-station-medical-centre/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-required---central-station-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 17:49:09',0),(69737,'2021-05-09 17:58:48','2021-05-09 17:58:48','b5593610-4d1c-4e71-932f-b8f6aa6e20fb',1,'/content/Document/Aged%20and%20community%20care/FINAL%20GOAS%20REPORT%20v4%20180820.pdf','http://www.brisbanenorthphn.org.au/content/Document/Aged%2520and%2520community%2520care/FINAL%2520GOAS%2520REPORT%2520v4%2520180820.pdf','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/Aged and community care/FINAL GOAS REPORT v4 180820.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 17:58:48',0),(69738,'2021-05-09 18:02:23','2021-05-09 18:02:23','26e725ed-89b4-4ceb-adb9-dfa88587a65d',1,'/page/health-professionals/digital-health/health-data/murrumba-downs-practice-shares-data-success','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/digital-health/health-data/murrumba-downs-practice-shares-data-success','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 18:02:23',0),(69739,'2021-05-09 18:05:36','2021-05-09 18:05:36','45a45668-d755-411c-aa0f-4c744d46b33b',1,'/content/Document/Media%20Releases/150916_Service%20providers%20meet%20to%20discuss%20aged%20care%20reforms.pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%2520Releases/150916_Service%2520providers%2520meet%2520to%2520discuss%2520aged%2520care%2520reforms.pdf','35.185.207.84','Go-http-client/1.1','Template not found: content/Document/Media Releases/150916_Service providers meet to discuss aged care reforms.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 18:05:36',0),(69740,'2021-05-09 18:26:26','2021-05-09 18:26:26','4c810be3-22ba-4c91-b1ab-c59f7d835d0e',1,'/content/Document/Templates/6.1/Specialists List_Paediatrics_6_1(1).pdf','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/6.1/Specialists List_Paediatrics_6_1(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 18:26:26',0),(69741,'2021-05-09 18:44:47','2021-05-15 20:16:08','e3b48b96-9cfc-43fd-9d00-5715bd5192d9',1,'/research-survey/palliative-care-national-workforce-planning-study','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: research-survey/palliative-care-national-workforce-planning-study','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-15 20:16:08',0),(69742,'2021-05-09 18:50:46','2021-05-09 18:50:46','4ab898c5-9568-42bf-b5ca-02e784392ca0',1,'/content/Document/Brisbane North PHN Publications Schedule 2017-2018.pdf','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane North PHN Publications Schedule 2017-2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 18:50:46',0),(69743,'2021-05-09 18:52:50','2021-05-14 23:53:45','be458292-095d-4176-ac2f-a834678d1eae',1,'/content/Document/Brisbane MIND Provider List November 2017(6).pdf','','78.46.94.83','Mozilla/5.0 (Macintosh; Intel Mac OS X 11_1_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','Template not found: content/Document/Brisbane MIND Provider List November 2017(6).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 23:53:45',0),(69744,'2021-05-09 19:08:44','2021-05-09 19:08:44','7d3054c5-7210-4877-a1ca-3fd30328aed5',1,'/content/Document/Planning/FIN_AAWP_Suicide%20Prevention%20Trial%2018-19_180529%20WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Planning/FIN_AAWP_Suicide%2520Prevention%2520Trial%252018-19_180529%2520WEB.pdf','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/Planning/FIN_AAWP_Suicide Prevention Trial 18-19_180529 WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 19:08:44',0),(69745,'2021-05-09 19:09:49','2021-05-11 16:46:30','7bf0ab7c-d30f-410a-8e78-5925f0e1048f',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-albany-creek-medical-centre/','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-albany-creek-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 16:46:30',0),(69746,'2021-05-09 19:15:56','2021-05-09 19:15:56','c181fa15-5bb3-4481-a8d0-f0618327f6b4',1,'/page/news-and-events/latest-news/legionella-bacteria-found-at-redcliffe-hospital/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/legionella-bacteria-found-at-redcliffe-hospital','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 19:15:56',0),(69747,'2021-05-09 19:22:34','2021-05-09 19:22:34','a13c3cd5-6480-4351-947b-5cdac5ec365a',1,'/content/Document/Events/2018/INVITATION - Care of older people workshop - 17 Nov 2018_print.pdf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2018/INVITATION - Care of older people workshop - 17 Nov 2018_print.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 19:22:34',0),(69748,'2021-05-09 19:37:47','2021-05-09 19:37:47','bf094152-5b1d-4efc-bcf0-25fc07f9fac7',1,'/content/Document/resource_perinatal.pdf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/resource_perinatal.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 19:37:47',0),(69749,'2021-05-09 21:09:31','2021-05-09 21:09:31','8cd6a192-95c5-496b-ac17-9ff02e392f67',1,'/page/news-and-events/events/upcoming/the-wesley-hospital-plastic-surgery-cpd/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/the-wesley-hospital-plastic-surgery-cpd','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 21:09:31',0),(69750,'2021-05-09 21:49:51','2021-05-09 21:49:51','9bfbe32c-b190-4415-a850-6ec444a809a8',1,'/content/Document/Templates/4.3/MNHHS Redcliffe Referral v4.3.1.rtf','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.3/MNHHS Redcliffe Referral v4.3.1.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 21:49:51',0),(69751,'2021-05-09 21:57:16','2021-05-09 21:57:16','7539d83b-2ed0-4bad-8f34-a05f4b402a5f',1,'/content/Document/April North workshop flyer 2016.pdf','http://www.brisbanenorthphn.org.au/content/Document/April%20North%20workshop%20flyer%202016.pdf','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/April North workshop flyer 2016.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 21:57:16',0),(69752,'2021-05-09 22:44:13','2021-05-12 03:12:15','960e2e0f-6dd3-4352-bfea-1b6f498edee0',1,'/page/news-and-events/events/upcoming/chronic-wound-care-conference/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/chronic-wound-care-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 03:12:15',0),(69753,'2021-05-09 23:32:57','2021-05-09 23:32:57','692fdcef-a28e-4801-8a33-4f1406f80594',1,'/page/pathways/falls-in-the-elderly/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/pathways/falls-in-the-elderly','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 23:32:57',0),(69754,'2021-05-09 23:33:26','2021-05-09 23:33:26','fd315bac-3bc3-48cf-9f31-9026e03d65b1',1,'/content/Document/Registration form - Metro North Health Forum 2016.docx','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Registration form - Metro North Health Forum 2016.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 23:33:26',0),(69755,'2021-05-09 23:34:42','2021-05-09 23:34:42','6a272be6-9715-43bc-b047-623c7ef902d9',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---brisbane-city/','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---brisbane-city','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-09 23:34:42',0),(69756,'2021-05-09 23:52:52','2021-05-12 05:03:55','0cc85b91-00d1-42da-bc42-c89424bbf2a6',1,'/page/news-and-events/events/archive/effective-techniques-for-achieving-successful-outcomes-with-clients-who-resist-change/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/effective-techniques-for-achieving-successful-outcomes-with-clients-who-resist-change','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 05:03:55',0),(69757,'2021-05-10 00:13:25','2021-05-17 01:47:16','4eee6676-3c7f-49c2-8081-04698f502b6f',1,'/page/publications/dist/swiper.js','https://www.brisbanenorthphn.org.au/page/publications/subscribe/','103.87.254.78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','Template not found: page/publications/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 01:47:16',0),(69758,'2021-05-10 01:36:00','2021-05-10 01:36:00','6421b346-9d88-4bd1-94f2-a0b6bc19fe7c',1,'/content/Document/MNHHS Palliative v4_10.rtf','http://www.brisbanenorthphn.org.au/content/Document/MNHHS%20Palliative%20v4_10.rtf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/MNHHS Palliative v4_10.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 01:36:00',0),(69759,'2021-05-10 01:55:29','2021-05-10 01:55:29','384102f7-0337-4101-8501-1384299125cf',1,'/content/Document/Templates/6.1/MNHHS%20Cab%20Ref%20v6_1.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/MNHHS%2520Cab%2520Ref%2520v6_1.rtf','35.185.207.84','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/MNHHS Cab Ref v6_1.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 01:55:29',0),(69760,'2021-05-10 02:05:20','2021-05-10 02:05:20','489804a7-32d4-4338-8017-d40b6704eb3c',1,'/page/news-and-events/events/archive/most-excellent-adventure-tour-to-the-ration-shed---november-2016/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/most-excellent-adventure-tour-to-the-ration-shed---november-2016','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 02:05:20',0),(69761,'2021-05-10 02:05:47','2021-05-10 02:05:47','9ac03f44-12b7-4ee8-94f9-38ccb1d4e576',1,'/events/metro-north-maternity-gp-alignment-program-workshop-part-2-2-0','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/metro-north-maternity-gp-alignment-program-workshop-part-2-2-0','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 02:05:47',0),(69762,'2021-05-10 02:14:40','2021-05-10 02:14:40','8030ac5e-b1f5-413a-afae-d385dea6a3b7',1,'/content/Document/Templates/6.1/MNHHS%20Palliative%20Ref%20v6_1%20BP.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/MNHHS%2520Palliative%2520Ref%2520v6_1%2520BP.rtf','35.192.197.124','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/MNHHS Palliative Ref v6_1 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 02:14:40',0),(69763,'2021-05-10 02:25:16','2021-05-10 02:25:16','16fb36df-9eb6-4425-b5b4-2728488ef7f2',1,'/icms_docs/218290_test-doc-1.docx','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: icms_docs/218290_test-doc-1.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 02:25:16',0),(69764,'2021-05-10 02:40:18','2021-05-16 04:02:03','52c7ed7a-03be-4df3-bacb-cb2c953076f3',1,'/yearinreview/2017-18/wp-content/uploads/2018/11/QuIHN-logo.jpg','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: yearinreview/2017-18/wp-content/uploads/2018/11/QuIHN-logo.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 04:02:03',0),(69765,'2021-05-10 03:07:33','2021-05-10 03:07:33','9333c116-5a83-4d89-a134-6f4b6753e4be',1,'/content/Document/Templates/4.9/MNHHS Paediatric Referral MD v4_9.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.9/MNHHS%20Paediatric%20Referral%20MD%20v4_9.rtf','35.192.197.124','Go-http-client/1.1','Template not found: content/Document/Templates/4.9/MNHHS Paediatric Referral MD v4_9.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 03:07:33',0),(69766,'2021-05-10 03:19:24','2021-05-10 03:19:24','47664ebe-485d-4123-83c4-453b7eab82ea',1,'/content/Document/TOR_CAC_FINAL.pdf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/TOR_CAC_FINAL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 03:19:24',0),(69767,'2021-05-10 03:19:25','2021-05-10 03:19:25','9ffa74fb-8f4c-4ea0-864e-8bde0129d8eb',1,'/page/health-professionals/Local Positions Vacant/independent-consortium-chair-eoi---headspace-taringa/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/independent-consortium-chair-eoi---headspace-taringa','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 03:19:25',0),(69768,'2021-05-10 03:46:33','2021-05-10 03:46:33','18ad966f-9181-4582-9dbf-273c4c62404f',1,'/content/Document/locallink_27sept.pdf','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/locallink_27sept.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 03:46:33',0),(69769,'2021-05-10 04:31:53','2021-05-10 04:31:53','8554de73-39f7-459d-accb-111d52acb889',1,'/royalty-free-vectors/symbolic-vectors','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: royalty-free-vectors/symbolic-vectors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 04:31:53',0),(69770,'2021-05-10 04:42:50','2021-05-10 04:57:45','ff6b5c16-07ce-4575-8096-0d45679d4053',1,'/content/aocument/fact she','','205.169.39.38','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36','Template not found: content/aocument/fact she','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-10 04:57:45',0),(69771,'2021-05-10 05:15:47','2021-05-10 05:15:47','ba331ac4-bcc4-4657-877e-2d362eb717b5',1,'/content/Document/Events/2018/Dealing with Anxiety Disorders March 2018_Brisbane.pdf','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2018/Dealing with Anxiety Disorders March 2018_Brisbane.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 05:15:47',0),(69772,'2021-05-10 05:24:55','2021-05-10 05:25:40','862809e5-51b1-4206-b4aa-8fecb36f06e8',1,'/Page/news-and-events/latest-news/covid-19-information/fever-clinic-information','','49.182.10.94','Mozilla/5.0 (Linux; Android 10; SAMSUNG SM-G965F) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/14.0 Chrome/87.0.4280.141 Mobile Safari/537.36','Template not found: Page/news-and-events/latest-news/covid-19-information/fever-clinic-information','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-10 05:25:40',0),(69773,'2021-05-10 05:48:46','2021-05-10 05:48:46','64aa1d8c-0613-4f4a-a501-1d267f0e6d1a',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---keperra/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---keperra','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 05:48:46',0),(69774,'2021-05-10 05:59:09','2021-05-10 05:59:09','b6a988ff-fb2a-4ca7-a3a3-20aa5c020f9e',1,'/page/health-professionals/digital-health/dist/swiper.js','https://www.brisbanenorthphn.org.au/page/health-professionals/digital-health/health-data/','103.87.254.78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','Template not found: page/health-professionals/digital-health/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 05:59:09',0),(69775,'2021-05-10 06:07:55','2021-05-12 22:00:18','a7a06ae7-cbf4-4444-b41d-3e17342c9416',1,'/content/Document/Templates/TCC/Teamcare Referral PractiX 130604.doc','','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/Templates/TCC/Teamcare Referral PractiX 130604.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 22:00:18',0),(69776,'2021-05-10 06:33:42','2021-05-10 06:33:42','a57d6a60-f59e-41ac-ab8f-4380774ddbbc',1,'/content/Document/Planning/FIN_AWP AH 19-21_190416 WEB.pdf','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Planning/FIN_AWP AH 19-21_190416 WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 06:33:42',0),(69777,'2021-05-10 06:35:47','2021-05-10 06:35:47','1ae818e4-4b02-43f8-9f29-cc8071f76a0b',1,'/content/Document/MNHHS Caboolture Referral MD v4_11(1).rtf','http://www.brisbanenorthphn.org.au/content/Document/MNHHS%20Caboolture%20Referral%20MD%20v4_11(1).rtf','34.94.5.119','Go-http-client/1.1','Template not found: content/Document/MNHHS Caboolture Referral MD v4_11(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 06:35:47',0),(69778,'2021-05-10 06:39:27','2021-05-10 06:39:27','7b15c9ee-9f3e-4404-b543-d4e9bfa490e7',1,'/content/Document/Templates/4.12/BP v4.12/MNHHS TPCH BP Referral v4_12.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.12/BP%20v4.12/MNHHS%20TPCH%20BP%20Referral%20v4_12.rtf','35.192.197.124','Go-http-client/1.1','Template not found: content/Document/Templates/4.12/BP v4.12/MNHHS TPCH BP Referral v4_12.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 06:39:27',0),(69779,'2021-05-10 06:44:19','2021-05-11 21:21:10','4c9cbc6b-7a1f-40d3-a60a-5de2eb7cebfe',1,'/content/Document/MNHHS TPCH Referral BP v4_11(2).rtf','http://www.brisbanenorthphn.org.au/content/Document/MNHHS%20TPCH%20Referral%20BP%20v4_11(2).rtf','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/MNHHS TPCH Referral BP v4_11(2).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 21:21:10',0),(69780,'2021-05-10 06:48:13','2021-05-10 06:48:13','fd945999-1d2a-4075-a74d-f047589ea2ad',1,'/page/news-and-events/events/upcoming/lets-talk-about-kids-and-pain---qld/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/lets-talk-about-kids-and-pain---qld','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 06:48:13',0),(69781,'2021-05-10 07:03:14','2021-05-10 07:03:14','2e4c0afa-db03-470a-bfe0-ede84457ab6f',1,'/page/health-professionals/Local Positions Vacant/practice-2ic---bongaree/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/practice-2ic---bongaree','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 07:03:14',0),(69782,'2021-05-10 07:53:52','2021-05-10 07:53:52','607bcdaf-9f64-4db1-bb42-8e14a74a888c',1,'/events/asia-pacific-gastroesophageal-cancer-congress','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/asia-pacific-gastroesophageal-cancer-congress','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 07:53:52',0),(69783,'2021-05-10 08:33:18','2021-05-12 22:52:30','9a766602-3b43-4e1a-ac30-16108cb96119',1,'/info.php','','172.105.95.10','lkxscan/v0.1.0 (+https://leakix.net) l9explore/v1.0.0 (+https://github.com/LeakIX/l9explore)','Template not found: info.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-12 22:52:30',0),(69784,'2021-05-10 09:09:46','2021-05-10 09:09:46','4157258b-91b5-4503-b506-578759244213',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist---redcliffe/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist---redcliffe','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 09:09:46',0),(69785,'2021-05-10 09:12:43','2021-05-10 09:12:43','61b681cc-1bb6-4235-9bea-938d1be240e7',1,'/xml.php','','185.220.101.10','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3112.31 Safari/537.36','Template not found: xml.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 09:12:42',0),(69786,'2021-05-10 09:47:19','2021-05-10 09:47:19','283b8809-9ccc-4d2b-a7f4-42368e3895c3',1,'/page/news-and-events/events/archive/aod-relapse-prevention-and-management-core-skill/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/aod-relapse-prevention-and-management-core-skill','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 09:47:19',0),(69787,'2021-05-10 10:35:44','2021-05-10 10:35:44','06a82f6e-d6bc-4e34-993e-3c777ceffc40',1,'/wp-content/plugins/hello.php','','91.219.236.197','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.2825.163 Safari/537.36','Template not found: wp-content/plugins/hello.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 10:35:44',0),(69788,'2021-05-10 11:15:09','2021-05-10 11:15:09','ee1ae8a6-f121-462d-9fb8-439332cd5858',1,'/license.php','','176.10.107.180','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.2897.18 Safari/537.36','Template not found: license.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 11:15:09',0),(69789,'2021-05-10 11:31:28','2021-05-10 11:31:28','064cd471-1c54-4e37-bdd1-d3a60d4295c8',1,'/content/Document/FORM 2 -Application for Group Therapy_ Jan to Jul 18.docx','http://www.brisbanenorthphn.org.au/content/Document/FORM%202%20-Application%20for%20Group%20Therapy_%20Jan%20to%20Jul%2018.docx','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/FORM 2 -Application for Group Therapy_ Jan to Jul 18.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 11:31:28',0),(69790,'2021-05-10 11:48:01','2021-05-10 11:48:01','45ea0687-6e49-44cc-90d5-95d58d9607e4',1,'/404.php','','185.220.101.206','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.2797.105 Safari/537.36','Template not found: 404.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 11:48:01',0),(69791,'2021-05-10 12:16:18','2021-05-10 12:16:18','4e90ff04-e88a-46eb-a078-b60999160939',1,'/wp-includes/wp-load.php','','193.218.118.167','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3262.63 Safari/537.36','Template not found: wp-includes/wp-load.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 12:16:18',0),(69792,'2021-05-10 12:34:52','2021-05-10 12:34:52','75569978-c293-44eb-9530-d4ce05d29acd',1,'/content/Document/Events/2019/Metro%20North%20Health%20Forum/MN_Health_Forum_Exhibition_Prospectus_2019_Final.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2019/Metro%2520North%2520Health%2520Forum/MN_Health_Forum_Exhibition_Prospectus_2019_Final.pdf','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/Events/2019/Metro North Health Forum/MN_Health_Forum_Exhibition_Prospectus_2019_Final.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 12:34:52',0),(69793,'2021-05-10 12:53:23','2021-05-10 12:53:23','15a6a2eb-fdf9-4ecc-a571-6f945f388188',1,'/error_log.php','','23.154.177.131','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3198.109 Safari/537.36','Template not found: error_log.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 12:53:23',0),(69794,'2021-05-10 12:54:45','2021-05-11 22:47:37','e9cdbd80-bcb7-4c05-a7a3-a78b38a4bb41',1,'/page/health-professionals/mental-health-services/brisbane-mind/information-for-providers/contact/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/mental-health-services/brisbane-mind/information-for-providers/contact','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 22:47:37',0),(69795,'2021-05-10 13:32:53','2021-05-10 13:32:53','3f3895c4-12dd-45b0-9d7f-b705e1a4fe1d',1,'/403.php','','195.176.3.20','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0','Template not found: 403.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 13:32:53',0),(69796,'2021-05-10 14:14:52','2021-05-10 14:14:52','e904b226-5b00-4cb8-8a56-85eefcf84d92',1,'/wso2.php','','62.128.111.118','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3327.58 Safari/537.36','Template not found: wso2.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 14:14:52',0),(69797,'2021-05-10 14:47:51','2021-05-19 02:05:24','3133ef79-50f3-43d9-a324-a6d1c96f3146',1,'/jobs/practice-registered-nurse','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/practice-registered-nurse','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-19 02:05:24',0),(69798,'2021-05-10 14:56:42','2021-05-10 14:56:42','337eda14-e66a-4555-9782-3a183705b4e9',1,'/security.php','','185.100.87.250','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3420.31 Safari/537.36','Template not found: security.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 14:56:42',0),(69799,'2021-05-10 15:06:15','2021-05-10 15:06:15','49e5f2e8-7b5a-4e1a-a2ea-edfcb016a0b9',1,'/angietidwell201/hair/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: angietidwell201/hair','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 15:06:15',0),(69800,'2021-05-10 15:37:51','2021-05-10 15:37:51','12d4e486-e11b-45df-b440-be90de31fa1f',1,'/wp-plugins.php','','109.70.100.51','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3530.161 Safari/537.36','Template not found: wp-plugins.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 15:37:51',0),(69801,'2021-05-10 15:48:23','2021-05-12 06:56:02','7630d160-dd4d-4162-98e3-f2ad3a4d7d65',1,'/page/about/careers/general-manager-north-brisbane-and-moreton-bay-health-alliance/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers/general-manager-north-brisbane-and-moreton-bay-health-alliance','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 06:56:02',0),(69802,'2021-05-10 16:15:04','2021-05-10 16:15:04','6973d9bd-db6e-47e9-b1d5-57387aa01568',1,'/content/Media/Genie V5.1/MNHHS Maternity v5.1 Genie.4W7','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Media/Genie V5.1/MNHHS Maternity v5.1 Genie.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 16:15:04',0),(69803,'2021-05-10 16:42:39','2021-05-10 16:42:39','8a703b54-3394-4254-89be-36bfaa869542',1,'/content/Document/Immunisation Flyer GP to supply to parents (FINAL - PHN).pdf','http://www.brisbanenorthphn.org.au/content/Document/Immunisation%20Flyer%20GP%20to%20supply%20to%20parents%20(FINAL%20-%20PHN).pdf','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/Immunisation Flyer GP to supply to parents (FINAL - PHN).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 16:42:39',0),(69804,'2021-05-10 16:57:42','2021-05-10 16:57:42','371f3310-5e64-4694-811f-1b29a502acea',1,'/modx.php','','192.42.116.15','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3270.115 Safari/537.36','Template not found: modx.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 16:57:42',0),(69805,'2021-05-10 17:03:53','2021-05-10 17:03:53','5c141905-7b0d-47df-8e41-097a5f734998',1,'/content/Document/Templates/Combined%20Palliative%20Care%20Referral%2010%2011%2014%20v5.pdf','http://www.brisbanenorthphn.org.au/content/Document/Templates/Combined%2520Palliative%2520Care%2520Referral%252010%252011%252014%2520v5.pdf','35.222.208.106','Go-http-client/1.1','Template not found: content/Document/Templates/Combined Palliative Care Referral 10 11 14 v5.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 17:03:53',0),(69806,'2021-05-10 17:38:23','2021-05-10 17:38:23','4626a7f9-d257-4f8b-bc45-8d09811c9581',1,'/config.php','','109.70.100.56','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3357.25 Safari/537.36','Template not found: config.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 17:38:23',0),(69807,'2021-05-10 18:12:17','2021-05-10 18:12:17','74f182a6-7e05-4bce-bacf-71a492997ed2',1,'/content/Document/Invitation 18 July Mater Education.pdf','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Invitation 18 July Mater Education.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 18:12:17',0),(69808,'2021-05-10 18:19:10','2021-05-10 18:19:10','a0e05330-d6cb-4128-a61d-8a8186acee97',1,'/wp-content/uploads/cache.php','','185.220.101.215','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3143.3 Safari/537.36','Template not found: wp-content/uploads/cache.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 18:19:10',0),(69809,'2021-05-10 18:41:17','2021-05-10 18:41:17','d7beedf9-844e-47dc-b797-4c48472c7f0c',1,'/content/Document/Templates/4.5/Specialists List_Maternity_4.5 (DRAFT).pdf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.5/Specialists List_Maternity_4.5 (DRAFT).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 18:41:17',0),(69810,'2021-05-10 18:59:24','2021-05-10 18:59:24','25ca5955-bc43-4a8b-9ccf-93edb17986cf',1,'/sites.php','','18.27.197.252','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0','Template not found: sites.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 18:59:24',0),(69811,'2021-05-10 19:08:36','2021-05-10 19:08:36','88db2e98-4081-424f-a5a2-b13afa31f767',1,'/content/Document/Templates/6.1/MNHHS%20RBWH%20Ref%20v6_1.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/MNHHS%2520RBWH%2520Ref%2520v6_1.rtf','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/MNHHS RBWH Ref v6_1.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 19:08:36',0),(69812,'2021-05-10 19:40:06','2021-05-10 19:40:06','a5962f6b-fe3e-4d22-b056-c9da15622906',1,'/web-info.php','','104.244.76.189','Mozilla/5.0 (Windows NT 10.0; rv:64.0) Gecko/20100101 Firefox/64.0','Template not found: web-info.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 19:40:06',0),(69813,'2021-05-10 19:49:12','2021-05-10 19:49:12','19e8bd83-bf2a-4ff5-a3ce-3a0e1b81b489',1,'/content/Document/Planning/FIN_AAWP_Primary%20Mental%20Health%20Care%2018-19_180514%20WEB.docx','http://www.brisbanenorthphn.org.au/content/Document/Planning/FIN_AAWP_Primary%2520Mental%2520Health%2520Care%252018-19_180514%2520WEB.docx','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/Planning/FIN_AAWP_Primary Mental Health Care 18-19_180514 WEB.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 19:49:12',0),(69814,'2021-05-10 20:12:39','2021-05-10 20:12:39','1060d6ad-8340-4457-8ddc-868d7b087565',1,'/wp-content/uploads/info.php','','23.129.64.234','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3197.161 Safari/537.36','Template not found: wp-content/uploads/info.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 20:12:39',0),(69815,'2021-05-10 20:24:17','2021-05-10 20:24:17','5283e423-d46b-48c2-986a-ed3853256787',1,'/content/Document/Events/2018/hivshflyer6aug2.pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2018/hivshflyer6aug2.pdf','35.192.197.124','Go-http-client/1.1','Template not found: content/Document/Events/2018/hivshflyer6aug2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 20:24:17',0),(69816,'2021-05-10 20:43:54','2021-05-10 20:43:54','add49fa9-8fde-4d67-a900-d1b4474fc256',1,'/info2.php','','45.66.35.35','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:63.0) Gecko/20100101 Firefox/63.0','Template not found: info2.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 20:43:54',0),(69817,'2021-05-10 21:06:52','2021-05-10 21:06:52','55561d56-1dc9-4b89-bc37-9640c75e5a2e',1,'/page/health-professionals/my-health-for-life','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/health-professionals/my-health-for-life','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 21:06:52',0),(69818,'2021-05-10 21:17:01','2021-05-10 21:17:01','e87f4897-4e25-4a9f-95f0-2d27383547c3',1,'/wp-blog-header.php','','193.189.100.194','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.2189.78 Safari/537.36','Template not found: wp-blog-header.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 21:17:01',0),(69819,'2021-05-10 22:18:36','2021-05-10 22:18:36','f7770e9e-fcfe-46de-9aa5-74c15f8519fd',1,'/system.php','','62.210.37.82','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.2346.51 Safari/537.36','Template not found: system.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 22:18:36',0),(69820,'2021-05-10 22:46:20','2021-05-12 18:54:58','fd87b01a-ba65-42b9-ace0-7bf856bd94bc',1,'/page/pathways/diabetes/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/pathways/diabetes','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 18:54:58',0),(69821,'2021-05-10 22:50:27','2021-05-10 22:50:27','5556d2a6-dddc-4764-89f1-57c087da482d',1,'/wp-includes/info.php','','45.151.167.10','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3090.71 Safari/537.36','Template not found: wp-includes/info.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 22:50:27',0),(69822,'2021-05-10 23:15:18','2021-05-10 23:15:18','867be0b9-c240-4ac5-8194-755c84a70576',1,'/tel:0417 657 394','https://www.google.com/','34.105.115.49','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36','Template not found: tel:0417 657 394','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 23:15:18',0),(69823,'2021-05-10 23:15:47','2021-05-19 02:32:18','069137e2-1849-45ed-be32-0abbce43ba18',1,'/events/healthed-webcast-tuesday-11th-may-2021','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/healthed-webcast-tuesday-11th-may-2021','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,20,'2021-05-19 02:32:18',0),(69824,'2021-05-10 23:22:27','2021-05-10 23:22:27','d5ceff03-928d-465c-b1f9-b166a19500c9',1,'/wp-content/themes/twentyfourteen/404.php','','51.195.42.226','Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.2202.39 Safari/537.36','Template not found: wp-content/themes/twentyfourteen/404.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 23:22:27',0),(69825,'2021-05-10 23:38:03','2021-05-12 21:07:04','2a604d9b-3755-40b3-b25c-b7b40271e0d1',1,'/page/health-professionals/Local Positions Vacant/vr-general-practitioner-required---queen-street-medical-centre/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/vr-general-practitioner-required---queen-street-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 21:07:04',0),(69826,'2021-05-10 23:55:46','2021-05-10 23:55:46','dc06b395-179c-48f0-adc7-ff983441c9c8',1,'/wp-content/plugins/info.php','','94.142.241.194','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.2588.84 Safari/537.36','Template not found: wp-content/plugins/info.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-10 23:55:46',0),(69827,'2021-05-11 00:10:46','2021-05-11 00:10:46','fc599736-c636-4e55-900a-3cb508e6c26c',1,'/content/Document/Pathways/Suicide prevention information for Aboriginal and Torres Strait Island People.pdf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/Suicide prevention information for Aboriginal and Torres Strait Island People.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 00:10:46',0),(69828,'2021-05-11 00:26:12','2021-05-11 00:26:12','c1212e25-705d-4e67-a136-a484b41dbe82',1,'/page/health-professionals/Local Positions Vacant/gp-required---beachmere-medical-centre/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/gp-required---beachmere-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 00:26:12',0),(69829,'2021-05-11 00:29:19','2021-05-11 00:29:19','3d5fbfcc-48a3-4714-a5c7-cf5401c4312c',1,'/modules/mod_aratipas/mod_aratipas.php','','185.220.101.193','Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3251.51 Safari/537.36','Template not found: modules/mod_aratipas/mod_aratipas.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 00:29:19',0),(69830,'2021-05-11 00:57:55','2021-05-11 00:57:55','c566dabc-8d04-489b-8b88-48e84683fd23',1,'/wp-cache.php','','144.172.118.4','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3008.45 Safari/537.36','Template not found: wp-cache.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 00:57:55',0),(69831,'2021-05-11 01:14:14','2021-05-13 08:28:50','e25e2390-92e9-4549-911c-ac78e260c8d8',1,'/content/Document/takingthepulse_rego.pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/takingthepulse_rego.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 08:28:50',0),(69832,'2021-05-11 01:14:25','2021-05-11 01:14:25','ed1dc146-5c6c-4fd3-8d6c-d5451f427c4a',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---medical-zone-family-practice---mango-hill/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---medical-zone-family-practice---mango-hill','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 01:14:25',0),(69833,'2021-05-11 01:16:23','2021-05-11 01:16:23','75a3d8f8-0a15-433d-b50a-86050b764bd1',1,'/content/Image/Page Banners/banner_general4.jpg','','173.252.95.24','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: content/Image/Page Banners/banner_general4.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 01:16:23',0),(69834,'2021-05-11 01:17:41','2021-05-12 00:32:05','e7279c5c-69a9-43bc-830c-f87bb004a279',1,'/content/Document/MNHHS Palliative Referral BP v4_11(1).rtf','http://www.brisbanenorthphn.org.au/content/Document/MNHHS%20Palliative%20Referral%20BP%20v4_11(1).rtf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/MNHHS Palliative Referral BP v4_11(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 00:32:05',0),(69835,'2021-05-11 01:23:59','2021-05-14 10:52:18','e172555e-f683-40d5-bafe-038ce446e8b3',1,'/page/news-and-events/latest-news/gp-respiratory-clinic-rolled-out-to-help-the-region’s-covid-19-effort','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/gp-respiratory-clinic-rolled-out-to-help-the-region’s-covid-19-effort','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 10:52:18',0),(69836,'2021-05-11 01:26:29','2021-05-11 01:26:29','dfb2521b-3cac-447b-9be6-4b6ef3b69922',1,'/modules/mod_araticlws/mod_araticlws.php','','179.43.160.235','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3467.78 Safari/537.36','Template not found: modules/mod_araticlws/mod_araticlws.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 01:26:29',0),(69837,'2021-05-11 01:39:19','2021-05-11 01:39:19','0ba6cfb9-448f-4684-8a6b-d84d0e2f97db',1,'/content/Document/CAT4%20Road%20Map%20Brisbane%20North%20PHN%20160711.pdf','http://www.brisbanenorthphn.org.au/content/Document/CAT4%2520Road%2520Map%2520Brisbane%2520North%2520PHN%2520160711.pdf','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/CAT4 Road Map Brisbane North PHN 160711.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 01:39:19',0),(69838,'2021-05-11 01:51:01','2021-05-11 01:51:01','551b58f0-12bc-4d45-a095-6d4f7553b97d',1,'/content/Document/Events/Update in supportive care for health professionals.pdf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/Update in supportive care for health professionals.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 01:51:01',0),(69839,'2021-05-11 01:51:45','2021-05-11 01:51:45','eeeaf5c2-6b7c-4a43-a0d7-e76cbe1f0fdb',1,'/page/health-professionals/mental-health-services/brisbane-mind/information-for-gps/contact/','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/mental-health-services/brisbane-mind/information-for-gps/contact','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 01:51:45',0),(69840,'2021-05-11 01:58:31','2021-05-11 01:58:31','40d83906-3f6c-4838-b907-a07fcb320fd5',1,'/conf.php','','185.220.101.146','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.2879.50 Safari/537.36','Template not found: conf.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 01:58:31',0),(69841,'2021-05-11 02:28:41','2021-05-11 02:28:41','78301fbe-f09d-4fca-9a23-f3f59327961e',1,'/readme.php','','185.56.80.65','Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E)','Template not found: readme.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 02:28:41',0),(69842,'2021-05-11 02:28:53','2021-05-11 02:28:53','ca06ceae-b2b1-4e4e-90ba-2e482b9a375d',1,'/content/Document/MNHHS RBWH Referral MD v4_11(2).rtf','http://www.brisbanenorthphn.org.au/content/Document/MNHHS%20RBWH%20Referral%20MD%20v4_11(2).rtf','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/MNHHS RBWH Referral MD v4_11(2).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 02:28:53',0),(69843,'2021-05-11 02:31:23','2021-05-11 02:31:23','5fe1a767-b09f-4a4a-b029-ee2173b93d22',1,'/page/news-and-events/events/upcoming/mentoring-and-coaching-skills-to-empower---april-2016/','http://brisbanenorthphn.org.au/page/news-and-events/events/upcoming/mentoring-and-coaching-skills-to-empower---april-2016/','35.210.232.207','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/events/upcoming/mentoring-and-coaching-skills-to-empower---april-2016','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 02:31:23',0),(69844,'2021-05-11 02:41:48','2021-05-11 02:41:48','a930d1a4-a3af-4567-b98c-bde5701add52',1,'/content/Document/Templates/5.3/MNHHS Maternity v5_3 ZM.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%20Maternity%20v5_3%20ZM.rtf','35.192.197.124','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS Maternity v5_3 ZM.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 02:41:48',0),(69845,'2021-05-11 02:57:42','2021-05-11 02:57:42','42ea38a5-b72a-4230-9b85-b57c35046c3b',1,'/thumbs.php','','193.189.100.205','Opera/9.80 (J2ME/MIDP; Opera Mini/7.1.23511/28.2555; U; ru) Presto/2.10.181 Version/12.00','Template not found: thumbs.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 02:57:42',0),(69846,'2021-05-11 03:03:00','2021-05-11 03:03:00','13813522-803e-44f3-9797-e2f4b62526a3',1,'/content/Media/MNHHS TPCH Referral v4.8_Untitled.4W7','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Media/MNHHS TPCH Referral v4.8_Untitled.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 03:03:00',0),(69847,'2021-05-11 03:09:23','2021-05-11 03:09:23','6b71cde7-4c17-44f6-b013-4cd39bfd8471',1,'/page/news-and-events/events/archive/common-challenges-in-primary-care-managing-back-pain-and-the-new-back-pain-service/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/common-challenges-in-primary-care-managing-back-pain-and-the-new-back-pain-service','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 03:09:23',0),(69848,'2021-05-11 03:33:38','2021-05-11 03:33:38','5279bb65-6f56-4883-b300-4c55bb9cdfe0',1,'/wp-content/uploads/content-wrapper.php','','185.220.103.111','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.2823.135 Safari/537.36','Template not found: wp-content/uploads/content-wrapper.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 03:33:38',0),(69849,'2021-05-11 03:56:59','2021-05-15 06:28:28','6abe285d-7a90-417d-be27-4d1439632b9b',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-required---griffin-medical-centre/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-required---griffin-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 06:28:28',0),(69850,'2021-05-11 03:59:10','2021-05-11 03:59:10','06944490-12fe-4116-8adc-429de1d25990',1,'/yearinreview/2018-19/wp-content/uploads/2019/11/Aged-care-forum-2019-Kirsty-Nowlan.jpg','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2018-19/wp-content/uploads/2019/11/Aged-care-forum-2019-Kirsty-Nowlan.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 03:59:10',0),(69851,'2021-05-11 04:09:14','2021-05-11 04:09:14','a6efd583-f573-4fc5-bbbe-d9c35c1bea38',1,'/setup.php','','18.27.197.252','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko/20100101 Firefox/62.0','Template not found: setup.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 04:09:14',0),(69852,'2021-05-11 04:17:32','2021-05-11 04:17:32','e5631073-47eb-44ba-899c-80c47c609855',1,'/content/Document/DRA_PD_Exec Manager Aged and Comm Care_170607.pdf','','66.249.68.29','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/DRA_PD_Exec Manager Aged and Comm Care_170607.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 04:17:32',0),(69853,'2021-05-11 04:31:33','2021-05-11 04:31:33','b0ff16d0-61ae-4bb5-8b17-ff03f6a0bfab',1,'/content/Document/MNHHS Maternity Referral BP v4_11(2).rtf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/MNHHS Maternity Referral BP v4_11(2).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 04:31:33',0),(69854,'2021-05-11 04:41:31','2021-05-11 04:41:31','f3127183-7bdb-43a3-b458-8c32bd0356e5',1,'/page/news-and-events/events/upcoming/working-therapeutically-with-people-who-have-complex-trauma-histories/','http://brisbanenorthphn.org.au/page/news-and-events/events/upcoming/working-therapeutically-with-people-who-have-complex-trauma-histories/','35.206.164.242','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/events/upcoming/working-therapeutically-with-people-who-have-complex-trauma-histories','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 04:41:31',0),(69855,'2021-05-11 04:42:23','2021-05-11 04:42:23','44753ec3-718d-4e3c-897a-93e76da4030b',1,'/file.php','','193.189.100.205','Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3469.111 Safari/537.36','Template not found: file.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 04:42:23',0),(69856,'2021-05-11 05:00:55','2021-05-12 19:16:41','24e9ff5d-e396-40a7-92ca-7c0cef237e1b',1,'/content/Document/Templates/4.12/MD v4.12/MNHHS Redcliffe MD V4_12.rtf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.12/MD v4.12/MNHHS Redcliffe MD V4_12.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-12 19:16:41',0),(69857,'2021-05-11 05:14:14','2021-05-11 05:14:14','473e6594-2329-4f99-ab98-1400f1b28e45',1,'/page/news-and-events/events/archive/mental-health-skills-training-primary-pathway/','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/mental-health-skills-training-primary-pathway','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 05:14:14',0),(69858,'2021-05-11 05:15:38','2021-05-18 17:32:43','cad12d22-d6ce-4696-b82e-c433fcd4a595',1,'/covid-19/information-for-providers','','40.77.167.15','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: covid-19/information-for-providers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,15,'2021-05-18 17:32:43',0),(69859,'2021-05-11 05:18:04','2021-05-11 05:18:04','cb0f3ed9-2aea-4402-9c5c-21860a52801a',1,'/wp-content/uploads/config.php','','104.244.74.55','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3321.135 Safari/537.36','Template not found: wp-content/uploads/config.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 05:18:04',0),(69860,'2021-05-11 05:19:13','2021-05-11 05:19:13','931d6e17-b87b-4bff-9447-c14b296f5440',1,'/events/immunisation-information-session-be-safe-vaccinate','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/immunisation-information-session-be-safe-vaccinate','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 05:19:13',0),(69861,'2021-05-11 05:31:47','2021-05-17 20:14:15','471b13f3-57ac-4c3c-be19-344b1f3c86b6',1,'/page/news-and-events/latest-news/dr-trish-baker-re-elected-to-phn-board-at-agm','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/dr-trish-baker-re-elected-to-phn-board-at-agm','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 20:14:15',0),(69862,'2021-05-11 05:40:46','2021-05-11 05:40:46','2188c7b3-54d3-435c-83ed-646d142fa35a',1,'/page/news-and-events/events/upcoming/first-australian-workshop-on-cams-latest-theory-clinical-and-research-findings','http://brisbanenorthphn.org.au/page/news-and-events/events/upcoming/first-australian-workshop-on-cams-latest-theory-clinical-and-research-findings','35.210.222.190','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/events/upcoming/first-australian-workshop-on-cams-latest-theory-clinical-and-research-findings','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 05:40:46',0),(69863,'2021-05-11 05:54:20','2021-05-11 05:54:20','94b54e11-65da-4807-b963-900d27fa6ebd',1,'/wp-content/themes/twentythirteen/404.php','','23.129.64.253','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.2953.137 Safari/537.36','Template not found: wp-content/themes/twentythirteen/404.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 05:54:20',0),(69864,'2021-05-11 05:57:01','2021-05-11 05:57:01','36b813d0-da9f-497d-b537-e9fb3d0e82a3',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist-required---warner-care-medical-practice/','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist-required---warner-care-medical-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 05:57:01',0),(69865,'2021-05-11 06:31:34','2021-05-11 06:31:34','893c369a-7ba8-4883-b7e6-4bca82aa9518',1,'/wp-content/load.php','','51.15.225.216','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.2218.135 Safari/537.36','Template not found: wp-content/load.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 06:31:34',0),(69866,'2021-05-11 06:37:46','2021-05-15 01:53:42','8569b867-a2cd-4f00-86ca-89f51a6699c1',1,'/content/Document/form_centralreferralunit.doc','','40.77.167.64','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/form_centralreferralunit.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 01:53:42',0),(69867,'2021-05-11 07:10:32','2021-05-11 07:11:06','9fa93178-6ae7-4dbb-af2a-3a61ad26b08d',1,'/alfa.php','','171.25.193.78','Mozilla/5.0 (compatible; MSIE 10.6; Windows NT 10.0; Trident/6.0; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E)','Template not found: alfa.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 07:11:06',0),(69868,'2021-05-11 07:32:50','2021-05-18 22:46:38','be9c5b44-5205-4ed6-88b3-f23dc3eb2dc6',1,'/jobs/program-support-officer-healthy-ageing','https://brisbanenorthphn.org.au/about/careers-1','120.23.19.152','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','Template not found: jobs/program-support-officer-healthy-ageing','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,57,'2021-05-18 22:46:38',0),(69869,'2021-05-11 07:41:01','2021-05-16 11:27:15','7976e4e1-7a66-4c40-8963-ba811a9aa4d8',1,'/content/Image/Page Banners/Banner_page_Wunyababy.jpg','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Page Banners/Banner_page_Wunyababy.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 11:27:15',0),(69870,'2021-05-11 07:51:10','2021-05-11 07:51:10','34d2235c-8909-4558-960c-9e7bad3f3880',1,'/wp-content/themes/twentyeleven/404.php','','107.189.10.237','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.2802.22 Safari/537.36','Template not found: wp-content/themes/twentyeleven/404.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 07:51:10',0),(69871,'2021-05-11 08:29:32','2021-05-11 08:29:32','5db33384-82e3-415d-99e9-5e8a0d4bea83',1,'/wp-content/plugins/thumbs.php','','167.86.94.107','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:63.0) Gecko/20100101 Firefox/63.0','Template not found: wp-content/plugins/thumbs.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 08:29:32',0),(69872,'2021-05-11 09:01:43','2021-05-13 08:56:34','d0fb3dad-6792-487e-a1b6-038f83cd20aa',1,'/content/Document/Brisbane MIND Provider List August 2018 .pdf','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List August 2018 .pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 08:56:34',0),(69873,'2021-05-11 09:10:12','2021-05-11 09:10:12','f66b7559-b5f1-4099-bbf8-ed1a70c819a6',1,'/wp-content/plugins/revslider/temp/update_extract/revslider/info.php','','91.219.236.197','Opera/9.80 (iOS; Opera Mini/7.0.73345/28.2555; U; ru) Presto/2.10.229 Version/11.62','Template not found: wp-content/plugins/revslider/temp/update_extract/revslider/info.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 09:10:12',0),(69874,'2021-05-11 09:24:51','2021-05-11 09:24:58','7e87d164-e4eb-4e80-b3be-13ad32970e2f',1,'/content/Document/MNHF presentations 2017/Paula','','5.196.114.163','Mozilla/5.0 (Linux; U; Android 8.1.0; tr-TR; SM-J730F Build/M1AJQ) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.108 Mobile Safari/537.36 UCBrowser/12.10.0.1163 UCTurbo/1.4.6.900','Template not found: content/Document/MNHF presentations 2017/Paula','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-11 09:24:58',0),(69875,'2021-05-11 09:30:44','2021-05-11 09:30:44','4f87d0a7-dcb3-4bb0-a06d-99029be4c1a7',1,'/content/Document/Templates/4.9/MNHHS Palliative Referral MD v4_9.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.9/MNHHS%20Palliative%20Referral%20MD%20v4_9.rtf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Templates/4.9/MNHHS Palliative Referral MD v4_9.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 09:30:44',0),(69876,'2021-05-11 09:46:41','2021-05-11 09:46:41','af6ffc62-c7c2-4b4c-b356-58097600b27a',1,'/page/health-professionals/my-health-record/set-up-and-manage/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/my-health-record/set-up-and-manage','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 09:46:41',0),(69877,'2021-05-11 09:50:43','2021-05-11 09:50:43','9b92f5ea-5da7-4b7e-ace9-aaecac6cd335',1,'/content-functions.php','','185.220.101.138','Opera/9.80 (Windows NT 10.0; WOW64); U) Presto/2.10.289 Version/12.02','Template not found: content-functions.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 09:50:43',0),(69878,'2021-05-11 09:59:26','2021-05-11 09:59:26','f41fd292-5d93-403c-b56a-04affce072ea',1,'/content/Document/Media%20Releases/MR_Home%20exercise%20cuts%20healthcare%20need%20among%20elderly_171007.pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%2520Releases/MR_Home%2520exercise%2520cuts%2520healthcare%2520need%2520among%2520elderly_171007.pdf','35.192.197.124','Go-http-client/1.1','Template not found: content/Document/Media Releases/MR_Home exercise cuts healthcare need among elderly_171007.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 09:59:26',0),(69879,'2021-05-11 10:20:29','2021-05-11 10:20:29','783a401b-394b-47ab-9356-d8c5861e3080',1,'/content/Image/Page Banners/Banner_page_PforW_PHOTO.jpg','','66.220.149.58','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: content/Image/Page Banners/Banner_page_PforW_PHOTO.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 10:20:29',0),(69880,'2021-05-11 10:27:06','2021-05-11 10:27:06','21b62b77-5d1d-440e-8d17-eea5866d002c',1,'/content/Image/MN_Health_Forum_Register_Buttons_v2.jpg','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Image/MN_Health_Forum_Register_Buttons_v2.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 10:27:06',0),(69881,'2021-05-11 10:27:09','2021-05-11 10:27:09','bca23882-ceb1-4986-a80a-f14db8b5046f',1,'/content/Document/Templates/SaAS-ACAT-REFERRAL.doc','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/SaAS-ACAT-REFERRAL.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 10:27:09',0),(69882,'2021-05-11 10:29:23','2021-05-11 10:29:23','99a32fc9-60c2-422e-8496-bef1e1d38cfa',1,'/licence.php','','104.244.73.85','Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.2930.60 Safari/537.36','Template not found: licence.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 10:29:23',0),(69883,'2021-05-11 11:17:50','2021-05-11 11:17:50','53cf78bd-95a6-43eb-b702-f005f1c3742d',1,'/content/Document/MNHHS Redcliffe Referral MD v4_11(1).rtf','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/MNHHS Redcliffe Referral MD v4_11(1).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 11:17:50',0),(69884,'2021-05-11 11:27:16','2021-05-13 01:28:03','a53cd1b3-1302-4a85-bb61-303e06344998',1,'/content/Document/Brisbane MIND Provider List December 2017(1).pdf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List December 2017(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 01:28:03',0),(69885,'2021-05-11 11:28:43','2021-05-11 11:28:43','b9bfc92e-fbf6-4e79-92dd-a46a699f0222',1,'/page/news-and-events/events/upcoming/wesley-lifeforce-suicide-prevention-gp-skills-training---the-gap/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/wesley-lifeforce-suicide-prevention-gp-skills-training---the-gap','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 11:28:43',0),(69886,'2021-05-11 11:30:30','2021-05-18 04:06:40','663a7d20-7da9-4b12-8a1d-83cf2c9a1aa6',1,'/events/hepatitis-c-nursing','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: events/hepatitis-c-nursing','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-18 04:06:40',0),(69887,'2021-05-11 11:32:02','2021-05-11 11:32:02','1f1d59b4-4a81-4087-a9fe-d05ec7d03b32',1,'/page/news-and-events/events/upcoming/mental-health-skills-training-primary-pathway-workshop/','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/mental-health-skills-training-primary-pathway-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 11:32:02',0),(69888,'2021-05-11 11:35:08','2021-05-15 23:03:53','4470c635-4978-49ac-9c12-7f53628fd72e',1,'/content/Document/Primary care l...','','185.191.171.35','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)','Template not found: content/Document/Primary care l...','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 23:03:53',0),(69889,'2021-05-11 11:46:57','2021-05-11 11:46:57','1a73b230-ab98-42b0-945d-0bae1c7f15c5',1,'/tmp/system.php','','185.191.124.153','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.2154.113 Safari/537.36','Template not found: tmp/system.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 11:46:57',0),(69890,'2021-05-11 11:51:53','2021-05-11 11:51:53','f1122df0-6c1b-4186-a648-54be4dda0af1',1,'/brisbanenorthphn.org.au.sqlitedb','','91.241.19.175','Nuclei - Open-source project (github.com/projectdiscovery/nuclei)','Template not found: brisbanenorthphn.org.au.sqlitedb','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 11:51:53',0),(69891,'2021-05-11 12:25:32','2021-05-11 12:25:32','3e6f67f7-e5b4-4f32-8eef-8f5dfec4d166',1,'/read.php','','178.20.55.18','Opera/9.80 (Android; Opera Mini/7.5.54678/28.2555; U; ru) Presto/2.10.289 Version/12.02','Template not found: read.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 12:25:32',0),(69892,'2021-05-11 12:56:41','2021-05-11 12:56:41','0c5dd732-8c21-4f95-b998-36e773a136e7',1,'/topics/wedding-vows/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: topics/wedding-vows','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 12:56:41',0),(69893,'2021-05-11 13:05:08','2021-05-11 13:05:08','d44aa977-ca38-4408-904a-796fb0881c7d',1,'/sitemap.php','','213.202.218.55','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.2938.59 Safari/537.36','Template not found: sitemap.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 13:05:08',0),(69894,'2021-05-11 13:10:53','2021-05-17 20:47:38','1560de37-e24c-4a6a-a0ab-81f17bcf2f9b',1,'/content/Document/Events/2019/INVITATION - Communicating across cultures_1905_WEB.pdf','','207.46.13.74','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2019/INVITATION - Communicating across cultures_1905_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 20:47:38',0),(69895,'2021-05-11 13:27:00','2021-05-11 13:27:00','ab05f632-574d-4902-9a5b-162c91fa7dd0',1,'/content/Document/Planning/FINAL_AAWP_Integrated%20Team%20Care_170717%20WEBSITE.pdf','http://www.brisbanenorthphn.org.au/content/Document/Planning/FINAL_AAWP_Integrated%2520Team%2520Care_170717%2520WEBSITE.pdf','35.245.129.153','Go-http-client/1.1','Template not found: content/Document/Planning/FINAL_AAWP_Integrated Team Care_170717 WEBSITE.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 13:27:00',0),(69896,'2021-05-11 13:35:41','2021-05-11 13:35:41','2e85c40d-1cbd-4a88-9328-e908a271566e',1,'/htaccess.php','','45.128.133.242','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.2806.148 Safari/537.36','Template not found: htaccess.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 13:35:41',0),(69897,'2021-05-11 14:02:49','2021-05-11 14:02:49','4e64a93c-fe30-4388-ad71-6ee80d8829c3',1,'/events/apna-foundations-general-practice-nursing-workshop','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/apna-foundations-general-practice-nursing-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 14:02:49',0),(69898,'2021-05-11 14:08:55','2021-05-11 14:08:55','88087930-5617-44d1-b591-a8e8a5543317',1,'/img.php','','185.220.101.136','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.2706.102 Safari/537.36','Template not found: img.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 14:08:55',0),(69899,'2021-05-11 14:18:28','2021-05-11 14:18:28','3ac4564c-f1e6-48a2-8790-837eeac53f13',1,'/content/Document/Media%20Releases/180221_Way%20Back_Redcliffe_Media%20release_vFINAL.pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%2520Releases/180221_Way%2520Back_Redcliffe_Media%2520release_vFINAL.pdf','35.203.183.33','Go-http-client/1.1','Template not found: content/Document/Media Releases/180221_Way Back_Redcliffe_Media release_vFINAL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 14:18:28',0),(69900,'2021-05-11 14:37:20','2021-05-11 14:37:20','a403b831-4199-4213-a32e-7e1a2e6386cc',1,'/content/Document/Templates/5.3/MNHHS TPCH 5_3 MD .rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%20TPCH%205_3%20MD%20.rtf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS TPCH 5_3 MD .rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 14:37:20',0),(69901,'2021-05-11 14:39:33','2021-05-11 14:39:33','842ebb7c-c102-480e-b6c3-2223882a413e',1,'/content/Document/Templates/6.1/MNHHS Cab Ref v6_1.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/MNHHS%20Cab%20Ref%20v6_1.rtf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/MNHHS Cab Ref v6_1.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 14:39:33',0),(69902,'2021-05-11 15:12:25','2021-05-11 15:12:25','64c499d0-7340-4356-bea6-e3dc9faddfc1',1,'/modules/mod_araticclhess/mod_araticclhess.php','','185.220.100.254','Opera/9.80 (Android; Opera Mini/7.5.54678/28.2555; U; ru) Presto/2.10.289 Version/12.02','Template not found: modules/mod_araticclhess/mod_araticclhess.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 15:12:25',0),(69903,'2021-05-11 15:24:13','2021-05-15 17:31:00','de74b894-1167-4f69-8cd7-a5f14a0f63d9',1,'/content/Document/Brisbane MIND Provider List July 2018(3).pdf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List July 2018(3).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 17:31:00',0),(69904,'2021-05-11 15:32:16','2021-05-15 20:36:40','70f5c1be-036a-4575-b735-9f463ddea13a',1,'/content/Image/Page Banners/Banner_page_myhealthforlife_oct.jpg','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Image/Page Banners/Banner_page_myhealthforlife_oct.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-15 20:36:40',0),(69905,'2021-05-11 15:37:53','2021-05-11 15:37:53','5392c58d-f24c-48ac-b94b-4b35666da3ad',1,'/events/launch-of-the-new-australian-asthma-handbook','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/launch-of-the-new-australian-asthma-handbook','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 15:37:53',0),(69906,'2021-05-11 15:40:52','2021-05-11 15:40:52','cf195717-eab2-4ffc-b4fd-bce230b465ff',1,'/page/news-and-events/events/archive/aged-care-conference/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/aged-care-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 15:40:52',0),(69907,'2021-05-11 15:43:47','2021-05-11 15:43:47','de3270ee-fa60-401f-b799-60302a71c425',1,'/content/Document/Templates/5.3/MNHHS%20Caboolture%20Hospital%205_3%20BP.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%2520Caboolture%2520Hospital%25205_3%2520BP.rtf','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS Caboolture Hospital 5_3 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 15:43:47',0),(69908,'2021-05-11 15:46:58','2021-05-11 15:46:58','f0e9c509-a78b-4471-9c2f-c8fc1b6fdbcf',1,'/images/img.php','','195.176.3.19','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:60.0) Gecko/20100101 Firefox/60.0','Template not found: images/img.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 15:46:58',0),(69909,'2021-05-11 16:11:04','2021-05-11 16:11:04','af1370af-8c57-44b3-81f4-01478bd47ade',1,'/content/Document/Media Releases/MR_CEO to step down_200318.pdf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Media Releases/MR_CEO to step down_200318.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 16:11:04',0),(69910,'2021-05-11 16:17:51','2021-05-11 16:17:51','ba1ca44e-fbc7-4703-a9bc-18e38960e496',1,'/web-systems.php','','193.239.232.102','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3385.84 Safari/537.36','Template not found: web-systems.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 16:17:51',0),(69911,'2021-05-11 16:35:42','2021-05-11 16:35:42','74540a91-fb55-4fb8-ac68-f50db9a21801',1,'/content/Document/Templates/4.5/MNHHS Maternity Referral ZM v4.5 160101.rtf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.5/MNHHS Maternity Referral ZM v4.5 160101.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 16:35:42',0),(69912,'2021-05-11 16:47:49','2021-05-11 16:47:49','49125f48-db70-40b8-9a2f-b889a39c09c4',1,'/wp-error.php','','185.220.100.244','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3496.44 Safari/537.36','Template not found: wp-error.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 16:47:49',0),(69913,'2021-05-11 17:01:22','2021-05-14 19:05:28','47568c2d-4298-4464-814a-7cb96df2effd',1,'/page/health-professionals/Local Positions Vacant/gp-required---the-gap/','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/gp-required---the-gap','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-14 19:05:28',0),(69914,'2021-05-11 17:16:03','2021-05-11 17:16:03','1855bd19-5197-4dfd-9123-664b5d0b31c5',1,'/wp-conflg.php','','205.185.124.200','Opera/9.80 (Windows NT 10.0; WOW64); U) Presto/2.10.289 Version/12.02','Template not found: wp-conflg.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 17:16:03',0),(69915,'2021-05-11 17:33:01','2021-05-17 03:32:53','f19f38fa-8d58-42de-ad74-e340b838af7b',1,'/position-type/exec-manager','','54.36.148.203','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)','Template not found: position-type/exec-manager','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-17 03:32:53',1),(69916,'2021-05-11 17:45:38','2021-05-11 17:45:38','fb2e1851-5828-45f5-ab76-259d4d29fb79',1,'/index2.php','','91.219.238.241','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.2455.142 Safari/537.36','Template not found: index2.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 17:45:38',0),(69917,'2021-05-11 18:13:43','2021-05-11 18:13:43','a0b924da-f33f-4727-b6df-0dd4852ce796',1,'/wp-engines.php','','162.247.74.217','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.2901.45 Safari/537.36','Template not found: wp-engines.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 18:13:43',0),(69918,'2021-05-11 18:22:38','2021-05-11 18:22:38','11b46e63-7f53-43ee-948d-2c1b6b16d730',1,'/page/news-and-events/events/archive/how-to-facilitate-bereavement-support-groups/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/how-to-facilitate-bereavement-support-groups','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 18:22:38',0),(69919,'2021-05-11 18:33:18','2021-05-11 18:33:18','ff52d909-0695-4387-a9fe-697f974df348',1,'/dianying/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: dianying','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 18:33:18',0),(69920,'2021-05-11 18:42:40','2021-05-11 18:42:40','8b8d957c-a60d-45d8-93f7-5b9fbe86da07',1,'/contact.php','','23.129.64.204','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.2992.148 Safari/537.36','Template not found: contact.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 18:42:40',0),(69921,'2021-05-11 18:45:45','2021-05-11 18:45:45','83f6853b-d6c1-4f69-84dd-2e60d744b5ca',1,'/pin/452752568773484349/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: pin/452752568773484349','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 18:45:45',0),(69922,'2021-05-11 18:47:36','2021-05-15 11:00:43','4f4a5797-e612-4d60-85fc-2f0db6c2b50f',1,'/content/Document/Events/Cultural awareness training - Nov 2019.pdf','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/Cultural awareness training - Nov 2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 11:00:43',0),(69923,'2021-05-11 19:11:16','2021-05-11 19:11:16','2ebd33dc-f296-44cb-b265-de2af6898355',1,'/wp-content/uploads/img.php','','185.220.102.243','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.2399.98 Safari/537.36','Template not found: wp-content/uploads/img.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 19:11:16',0),(69924,'2021-05-11 19:29:56','2021-05-12 00:33:27','a4f29d15-1bda-480c-96ea-bf6379f2ca8e',1,'/zdy/search.html','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: zdy/search.html','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 00:33:27',0),(69925,'2021-05-11 19:29:56','2021-05-15 03:02:37','9339b89d-42db-41b2-b2f4-9e0fe71f4c10',1,'/dongman/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: dongman','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-15 03:02:37',0),(69926,'2021-05-11 19:39:33','2021-05-11 19:39:33','b7fd514a-814d-4860-9477-ff3a792bddcb',1,'/cache.php','','23.129.64.240','Mozilla/5.0 (Windows NT 10.0; rv:64.0) Gecko/20100101 Firefox/64.0','Template not found: cache.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 19:39:33',0),(69927,'2021-05-11 19:46:17','2021-05-11 19:46:17','0f24d952-7c80-4c30-9a1b-f24f07b8c116',1,'/content/Document/PD_Exec%20Corp%20Services_170623.docx','http://www.brisbanenorthphn.org.au/content/Document/PD_Exec%2520Corp%2520Services_170623.docx','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/PD_Exec Corp Services_170623.docx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 19:46:17',0),(69928,'2021-05-11 20:09:33','2021-05-11 20:09:33','a2b15595-a5d3-43ba-8174-f18d3e957bbd',1,'/cool.php','','185.100.87.244','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.2357.133 Safari/537.36','Template not found: cool.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 20:09:33',0),(69929,'2021-05-11 20:10:09','2021-05-18 03:04:43','ef5cdea3-b87c-4262-901b-2d71f29beb9c',1,'/events/pallipharm-workshop-9','','66.249.79.150','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: events/pallipharm-workshop-9','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,13,'2021-05-18 03:04:43',0),(69930,'2021-05-11 20:37:29','2021-05-11 20:37:29','3d142eef-dacf-4c01-aa22-d1b4edece23e',1,'/b374k.php','','178.20.55.18','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3031.27 Safari/537.36','Template not found: b374k.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 20:37:29',0),(69931,'2021-05-11 21:05:05','2021-05-11 21:05:05','4be725f7-be67-43cc-94fc-4557cf64ff01',1,'/content/Document/180327_HealthAlert_Measles.pdf','http://www.brisbanenorthphn.org.au/content/Document/180327_HealthAlert_Measles.pdf','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/180327_HealthAlert_Measles.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 21:05:05',0),(69932,'2021-05-11 21:07:51','2021-05-11 21:07:51','03583cfb-96b2-40a4-b19c-e2443ae0d1b6',1,'/wp-content/themes/twentyfourteen/info.php','','213.202.216.183','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.2655.21 Safari/537.36','Template not found: wp-content/themes/twentyfourteen/info.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 21:07:51',0),(69933,'2021-05-11 21:24:10','2021-05-11 21:24:10','b6ee0d80-a994-40b4-a7ef-d12a68eac90b',1,'/content/Document/Templates/Brisbane MIND/MIND Additional Sessions PDF V3 (Published).pdf','http://www.brisbanenorthphn.org.au/content/Document/Templates/Brisbane%20MIND/MIND%20Additional%20Sessions%20PDF%20V3%20(Published).pdf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Templates/Brisbane MIND/MIND Additional Sessions PDF V3 (Published).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 21:24:10',0),(69934,'2021-05-11 21:36:46','2021-05-11 21:36:46','1e55af9e-29a1-4304-8f06-ac8b81dfc03f',1,'/jquery.php','','109.70.100.40','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.2123.2 Safari/537.36','Template not found: jquery.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 21:36:46',0),(69935,'2021-05-11 21:45:35','2021-05-11 21:45:35','6586e64f-0af2-4955-85ed-d6e94f692e4d',1,'/page/home/banners/chronic-disease-management-using-best-practice','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/banners/chronic-disease-management-using-best-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 21:45:35',0),(69936,'2021-05-11 22:01:49','2021-05-11 22:01:49','974996d2-ea48-47b3-820d-14d89daff384',1,'/content/Document/Templates/5.3/MNHHS TPCH 5_3 BP.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%20TPCH%205_3%20BP.rtf','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS TPCH 5_3 BP.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 22:01:49',0),(69937,'2021-05-11 22:07:17','2021-05-11 22:07:17','5cf216ae-6e5a-4545-809f-971a030411b7',1,'/logs.php','','54.36.24.226','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3313.153 Safari/537.36','Template not found: logs.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 22:07:17',0),(69938,'2021-05-11 22:31:17','2021-05-11 22:31:17','f23261c3-0748-4896-ad87-ea155df1e286',1,'/page/news-andevents/latest-news/covid-19-information/dist/swiper.js','https://www.brisbanenorthphn.org.au/page/news-andevents/latest-news/covid-19-information/fever-clinic-information/','110.142.198.134','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','Template not found: page/news-andevents/latest-news/covid-19-information/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 22:31:17',0),(69939,'2021-05-11 22:36:02','2021-05-11 22:36:02','76c39c3f-2e4d-417f-b2fb-9ebdf3fc0c1c',1,'/images/shwso.php','','199.249.230.88','Opera/9.80 (Windows NT 6.1; Win64; x64); U) Presto/2.10.181 Version/12.00','Template not found: images/shwso.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 22:36:02',0),(69940,'2021-05-11 23:06:56','2021-05-11 23:06:56','42052344-2a7a-4975-a1e1-9c598bc31601',1,'/wp-load.php','','185.220.102.246','Opera/9.80 (Windows NT 10.0; WOW64); U) Presto/2.12.388 Version/12.14','Template not found: wp-load.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 23:06:56',0),(69941,'2021-05-11 23:26:22','2021-05-11 23:26:22','e0bebb67-5212-40b6-9b91-115c3e934ee5',1,'/yearinreview/2017-18/closing-the-gap-in-indigenous-health/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: yearinreview/2017-18/closing-the-gap-in-indigenous-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 23:26:22',0),(69942,'2021-05-11 23:34:05','2021-05-11 23:34:05','25d0e3c1-5bca-4ad2-be9e-e5e354cd181f',1,'/images/wp-info.php','','158.69.35.227','Opera/9.80 (Windows NT 10.0; Win64; x64); U) Presto/2.10.289 Version/12.02','Template not found: images/wp-info.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-11 23:34:05',0),(69943,'2021-05-12 00:00:49','2021-05-12 00:00:49','d357f574-6abf-492f-80fc-72f802d8711a',1,'/page/news-and-events/events/upcoming/common-challenges-in-primary-care-paediatrics/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/common-challenges-in-primary-care-paediatrics','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 00:00:49',0),(69944,'2021-05-12 00:04:05','2021-05-12 00:04:05','0bcec342-501e-47f4-9e94-e0b7e25847eb',1,'/wp-cron.php','','88.80.20.86','Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Firefox/60.0','Template not found: wp-cron.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 00:04:05',0),(69945,'2021-05-12 00:05:39','2021-05-12 00:05:39','3313d4f2-bc8d-45ae-acf5-e75d90a88d8c',1,'/page/news-and-events/events/upcoming/ask-the-experts-caring-for-people-with-cvd-during-covid-19-webinar/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/ask-the-experts-caring-for-people-with-cvd-during-covid-19-webinar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 00:05:39',0),(69946,'2021-05-12 00:26:01','2021-05-12 00:26:01','609dc944-95f5-439b-ba15-e954efe42f0f',1,'/page/health-professionals/Local Positions Vacant/casual-receptionist---clayfield/','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/casual-receptionist---clayfield','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 00:26:01',0),(69947,'2021-05-12 00:30:08','2021-05-12 00:30:08','173be74b-a4c2-44be-8d32-c09808cf87a8',1,'/wp-content/uploads/shwso.php','','185.220.100.253','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3176.128 Safari/537.36','Template not found: wp-content/uploads/shwso.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 00:30:08',0),(69948,'2021-05-12 00:30:29','2021-05-12 00:30:29','2f86505e-3f08-4d4e-bff9-098c2c816daa',1,'/content/Document/MNHHS Redcliffe Referral BP v4_11(2).rtf','http://www.brisbanenorthphn.org.au/content/Document/MNHHS%20Redcliffe%20Referral%20BP%20v4_11(2).rtf','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/MNHHS Redcliffe Referral BP v4_11(2).rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 00:30:29',0),(69949,'2021-05-12 00:57:26','2021-05-12 00:57:26','478b217c-8bf1-445f-b81b-18411e452a28',1,'/wp-content/uploads/maink.php','','205.185.120.206','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:51.0) Gecko/20100101 Firefox/51.0','Template not found: wp-content/uploads/maink.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 00:57:26',0),(69950,'2021-05-12 01:22:07','2021-05-12 01:22:07','f32b09b3-d948-4a74-b819-53c8ffb444bd',1,'/content/Document/Events/2018/prepbrisbaneflyer_19062018 (002).pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2018/prepbrisbaneflyer_19062018%20(002).pdf','34.106.50.141','Go-http-client/1.1','Template not found: content/Document/Events/2018/prepbrisbaneflyer_19062018 (002).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 01:22:07',0),(69951,'2021-05-12 01:23:40','2021-05-12 01:23:40','f55f8a9a-ff4c-4928-b0d6-eb9b354443a9',1,'/wp-content/themes/twentyfifteen/404.php','','185.38.175.72','Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.2684.43 Safari/537.36','Template not found: wp-content/themes/twentyfifteen/404.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 01:23:40',0),(69952,'2021-05-12 01:23:58','2021-05-12 01:23:58','04f94f74-6327-4977-8c28-3328c4655b2c',1,'/content/Document/Paediatric%20Services%20Directory%20-%20Metro%20North%20District_FINAL_v4_1(3).pdf','http://www.brisbanenorthphn.org.au/content/Document/Paediatric%2520Services%2520Directory%2520-%2520Metro%2520North%2520District_FINAL_v4_1(3).pdf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Paediatric Services Directory - Metro North District_FINAL_v4_1(3).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 01:23:58',0),(69953,'2021-05-12 01:25:18','2021-05-12 01:25:18','2ffdb996-4cc9-44ba-96fc-eaf23532a766',1,'/page/news-and-events/events/upcoming/integrating-skin-cancer-practice','http://brisbanenorthphn.org.au/page/news-and-events/events/upcoming/integrating-skin-cancer-practice','35.206.171.218','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/events/upcoming/integrating-skin-cancer-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 01:25:18',0),(69954,'2021-05-12 01:47:59','2021-05-12 01:47:59','292a6d78-bae4-4692-a120-70ddd52df255',1,'/page/pathways/anxiety/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/pathways/anxiety','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 01:47:59',0),(69955,'2021-05-12 01:50:02','2021-05-12 01:50:02','f7b669b3-8b7b-4269-9510-0d215cd15d40',1,'/modules/mod_araticlhess/mod_araticlhess.php','','62.102.148.69','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3314.39 Safari/537.36','Template not found: modules/mod_araticlhess/mod_araticlhess.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 01:50:02',0),(69956,'2021-05-12 02:16:15','2021-05-12 02:16:15','bdfb1352-2673-4a91-864a-d7ec7c643a1d',1,'/4o4.php','','109.70.100.36','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.2226.2 Safari/537.36','Template not found: 4o4.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 02:16:15',0),(69957,'2021-05-12 02:41:00','2021-05-12 02:41:00','cac2eb41-c567-4e00-9882-3a9eb9aaa834',1,'/wp-content/uploads/maink2.php','','192.160.102.170','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3184.133 Safari/537.36','Template not found: wp-content/uploads/maink2.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 02:41:00',0),(69958,'2021-05-12 03:07:55','2021-05-12 03:07:55','16cfd106-57ba-42d7-96a9-337413816446',1,'/s_eval-meta.php','','185.191.124.152','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3264.23 Safari/537.36','Template not found: s_eval-meta.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 03:07:55',0),(69959,'2021-05-12 03:22:33','2021-05-12 03:23:06','f8abcdc8-c375-4f8f-81ae-3903192a1369',1,'/page/news-and-events/events/archive/anzos-2016-gp-evening-symposium-obesity-management-from-birth-and-beyond/','','78.46.94.83','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36','Template not found: page/news-and-events/events/archive/anzos-2016-gp-evening-symposium-obesity-management-from-birth-and-beyond','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 03:23:06',0),(69960,'2021-05-12 03:32:16','2021-05-12 03:32:16','5231bb51-a8c8-4cf6-b1f9-f32ad6a62a50',1,'/page/news-and-events/events/upcoming/eating-disorder-in-the-peripartum-period-and-the-impact-on-infant-mental-health-feeding/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/eating-disorder-in-the-peripartum-period-and-the-impact-on-infant-mental-health-feeding','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 03:32:16',0),(69961,'2021-05-12 03:32:44','2021-05-12 03:32:44','113e3c45-6d35-4250-8b11-c0107a996620',1,'/Iicense.php','','185.220.102.243','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3380.138 Safari/537.36','Template not found: Iicense.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 03:32:44',0),(69962,'2021-05-12 03:53:36','2021-05-12 03:53:36','6e635298-b520-49ca-8c6a-0e5d09aa9078',1,'/content/Document/Templates/4.7/Specialists List_Paediatrics_4_7.pdf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.7/Specialists List_Paediatrics_4_7.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 03:53:36',0),(69963,'2021-05-12 03:59:10','2021-05-12 03:59:10','e6bc1ead-d273-4701-a3a4-cbbc3877d7fb',1,'/wp-backup.php','','109.70.100.49','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3389.124 Safari/537.36','Template not found: wp-backup.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 03:59:10',0),(69964,'2021-05-12 04:24:14','2021-05-12 04:24:14','79c65acf-8dc4-4a6e-b571-6cc94c49cb5d',1,'/wp-content/uploads/mainik.php','','54.38.22.61','Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E)','Template not found: wp-content/uploads/mainik.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 04:24:14',0),(69965,'2021-05-12 04:48:37','2021-05-12 04:48:37','fcac1c1b-9103-4ef3-8ecb-25db584db552',1,'/content/Document/Brisbane MIND Provider List February 2017(2).pdf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List February 2017(2).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 04:48:37',0),(69966,'2021-05-12 04:54:28','2021-05-12 04:54:28','7e936a76-80e4-4940-81d4-f08a83b66410',1,'/page/health-professionals/digital-health/my-health-record/training/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/digital-health/my-health-record/training','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 04:54:28',0),(69967,'2021-05-12 05:06:53','2021-05-12 05:06:53','7c384838-c18f-466f-a8e1-18943cf7e47d',1,'/page/news-and-events/events/upcoming/using-e-mental-health-resources-in-your-work-getting-to-know-online-programs-for-children-and-young-people/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/using-e-mental-health-resources-in-your-work-getting-to-know-online-programs-for-children-and-young-people','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 05:06:53',0),(69968,'2021-05-12 05:10:39','2021-05-12 05:10:39','7458f841-4014-4524-a764-89d2a720aab9',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---wavell-medical-centre/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---wavell-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 05:10:39',0),(69969,'2021-05-12 05:16:59','2021-05-18 20:54:11','cf01dc77-a8bf-4b36-a19c-99296601fc78',1,'/events/phu-immunisation-catch-up-online-webinar','','101.179.68.65','Mozilla/5.0 (iPad; CPU OS 14_4_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','Template not found: events/phu-immunisation-catch-up-online-webinar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-18 20:54:11',0),(69970,'2021-05-12 05:17:53','2021-05-12 05:17:53','a8265071-69e9-4c81-b2b5-1287bc6f9f86',1,'/page/news-and-events/2017-news/funding-boost-for-local-drug-treatment-services','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/2017-news/funding-boost-for-local-drug-treatment-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 05:17:53',0),(69971,'2021-05-12 05:22:34','2021-05-12 05:22:34','75408b7c-4157-471b-b548-eb92fd9b5de6',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---newstead/','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---newstead','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 05:22:34',0),(69972,'2021-05-12 05:27:00','2021-05-12 05:27:00','9d3f98fe-add7-42a6-a6fb-d01d1c6f9060',1,'/page/health-professionals/Local Positions Vacant/registered-nurse-required---woodford-family-medical-centre/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/registered-nurse-required---woodford-family-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 05:27:00',0),(69973,'2021-05-12 05:58:41','2021-05-14 17:04:17','a201de13-f89b-4038-9121-1dcdcf2ef828',1,'/dianshiju/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: dianshiju','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 17:04:17',0),(69974,'2021-05-12 06:03:39','2021-05-12 06:03:39','e98efc44-657b-4687-a3c2-9c4c7b336268',1,'/public/assets/fileupload/index.php','http://www.google.com/','23.228.109.147','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2896.3 Safari/537.36','Template not found: public/assets/fileupload/index.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 06:03:39',0),(69975,'2021-05-12 06:41:34','2021-05-12 06:41:34','302d9892-ac55-4ef6-a20b-e8ab27c61bb8',1,'/content/Document/Templates/4.6/MNHHS Maternity Referral BP v4_6.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.6/MNHHS%20Maternity%20Referral%20BP%20v4_6.rtf','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/Templates/4.6/MNHHS Maternity Referral BP v4_6.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 06:41:34',0),(69976,'2021-05-12 06:53:31','2021-05-12 06:53:31','4abd0f05-aae7-48e7-892c-942f43bdb492',1,'/page/news-and-events/latest-news/national-chronic-care-program-finds-home-in-brisbane-north','','207.46.13.72','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/latest-news/national-chronic-care-program-finds-home-in-brisbane-north','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 06:53:31',0),(69977,'2021-05-12 06:54:22','2021-05-12 06:54:22','6361061a-5431-4213-afe9-60b8b6f96894',1,'/content/Document/PD_Vacant_ProgramSupportOfficer_150724.pdf','','207.46.13.72','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/PD_Vacant_ProgramSupportOfficer_150724.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 06:54:22',0),(69978,'2021-05-12 07:18:38','2021-05-12 07:18:38','f7e9d064-7625-45dd-be6a-67cae1741162',1,'/content/Document/Templates/4.7/MNHHS Caboolture Referral BP v4_7.rtf','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.7/MNHHS Caboolture Referral BP v4_7.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 07:18:38',0),(69979,'2021-05-12 07:43:01','2021-05-12 07:43:01','c4aa52bc-334f-4e53-8200-e7993a837b52',1,'/page/news-and-events/events/upcoming/exercise-is-medicine-workshop/','','207.46.13.142','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/exercise-is-medicine-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 07:43:01',0),(69980,'2021-05-12 08:38:55','2021-05-12 08:38:55','84aa2c5f-97ba-4033-8dba-3e8980f2ec28',1,'/page/news-and-events/events/upcoming/asia-pacific-international-mental-health-conference/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/asia-pacific-international-mental-health-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 08:38:55',0),(69981,'2021-05-12 08:41:09','2021-05-12 08:41:09','b3bb5b3d-69ac-4c45-8dd6-006dcd3e7823',1,'/pjarrin/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: pjarrin','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 08:41:09',0),(69982,'2021-05-12 08:52:16','2021-05-12 08:52:16','b0b20a12-20ef-4362-9b41-f38ded9fdc0e',1,'/content/document/pathways/','','205.169.39.215','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','Template not found: content/document/pathways','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 08:52:16',0),(69983,'2021-05-12 09:37:24','2021-05-17 16:58:23','106064d2-9e00-4a90-bf75-9a990c7e3efa',1,'/lisafirle/frisuren-für-frauen-alles-über-haare/','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: lisafirle/frisuren-für-frauen-alles-über-haare','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 16:58:23',0),(69984,'2021-05-12 09:44:08','2021-05-12 09:44:08','65e2776b-c219-48e8-830b-6581716dae73',1,'/>	','','65.155.30.101','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.71 Safari/537.36','Template not found: >	','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 09:44:08',0),(69985,'2021-05-12 09:47:27','2021-05-16 20:12:06','1878cdce-972b-4e83-a3a5-9dff82be2660',1,'/content/Document/Position descriptions/PD_Manager_PrimCareLiaison_180613(1).pdf','','157.55.39.23','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Position descriptions/PD_Manager_PrimCareLiaison_180613(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 20:12:06',0),(69986,'2021-05-12 10:22:06','2021-05-12 10:22:06','3e08134d-9750-48be-af78-4655efc7b532',1,'/content/document/pathways','','205.169.39.236','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','Template not found: content/document/pathways','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 10:22:06',0),(69987,'2021-05-12 10:46:51','2021-05-12 10:46:51','f4a85ccc-e67a-453e-bee9-38a2ebcac221',1,'/page/health-professionals/Local Positions Vacant/een-required---ascot-family-practice/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/een-required---ascot-family-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 10:46:51',0),(69988,'2021-05-12 11:49:39','2021-05-12 11:49:39','9ce87da5-7fea-4a92-bec3-6cf1d91aada4',1,'/page/community/my-health-record','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/community/my-health-record','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 11:49:39',0),(69989,'2021-05-12 11:50:12','2021-05-14 08:34:21','aec86337-c7f2-4648-9e7e-e12ba6439bb8',1,'/page/news-and-events/events/upcoming/introduction-to-aod-withdrawal-for-allied-health-practitioners/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/introduction-to-aod-withdrawal-for-allied-health-practitioners','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-14 08:34:21',0),(69990,'2021-05-12 11:54:15','2021-05-12 11:54:15','53651a4f-8f15-4423-ad33-36342cdba6a2',1,'/content/Document/Templates/MNHHS COHD ZM v6_1.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/MNHHS%20COHD%20ZM%20v6_1.rtf','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/Templates/MNHHS COHD ZM v6_1.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 11:54:15',0),(69991,'2021-05-12 12:12:42','2021-05-12 12:12:42','4be1a8ad-171d-43d4-8484-d90ee7a6a399',1,'/page/news-and-events/events/upcoming/how-to-register-your-practice-for-my-health-record/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/how-to-register-your-practice-for-my-health-record','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 12:12:42',0),(69992,'2021-05-12 12:50:57','2021-05-16 23:04:47','1e49a5b9-008e-4fb8-b612-c4909c2f92e9',1,'/page/health-professionals/Local Positions Vacant/psychologist-aps-and-ahpra-registered---bribie-island-shopping-centre/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/psychologist-aps-and-ahpra-registered---bribie-island-shopping-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 23:04:47',0),(69993,'2021-05-12 13:02:09','2021-05-12 13:02:09','725df2b2-126e-470e-9e09-339b653b7653',1,'/content/Document/Primary%20care%20liaison/FOR_EOI_MA_Expression%20of%20Interest_FINAL_170717.pdf','http://www.brisbanenorthphn.org.au/content/Document/Primary%2520care%2520liaison/FOR_EOI_MA_Expression%2520of%2520Interest_FINAL_170717.pdf','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/Primary care liaison/FOR_EOI_MA_Expression of Interest_FINAL_170717.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 13:02:09',0),(69994,'2021-05-12 14:06:44','2021-05-12 14:06:44','2d273e4b-9112-4a1c-82ee-e1acca8e54f0',1,'/page/health-professionals/Local Positions Vacant/gp-required-doctor-to-you/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/gp-required-doctor-to-you','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 14:06:44',0),(69995,'2021-05-12 15:14:11','2021-05-12 15:14:11','8b915bb9-990c-4db2-a0e3-db2994cd8c7c',1,'/bill.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Trident/7.0; rv:11.0) like Gecko','Template not found: bill.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 15:14:11',0),(69996,'2021-05-12 15:14:13','2021-05-12 15:14:13','05e9bb7e-4417-44ef-bf4c-92a0ef766295',1,'/billing.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Trident/7.0; rv:11.0) like Gecko','Template not found: billing.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 15:14:13',0),(69997,'2021-05-12 15:14:15','2021-05-12 15:14:15','ab10003f-20f7-4136-9e80-4293e1e7b278',1,'/order.sql.zip','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Trident/7.0; rv:11.0) like Gecko','Template not found: order.sql.zip','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 15:14:15',0),(69998,'2021-05-12 15:14:18','2021-05-12 15:14:18','2476f6b7-b302-445d-a8c5-792df1d88a8a',1,'/orders.sql.zip','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Trident/7.0; rv:11.0) like Gecko','Template not found: orders.sql.zip','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 15:14:18',0),(69999,'2021-05-12 15:14:20','2021-05-12 15:14:20','a5f2ed46-8b33-4356-9f74-c5096a81f76e',1,'/orders.sql.gz','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Trident/7.0; rv:11.0) like Gecko','Template not found: orders.sql.gz','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 15:14:20',0),(70000,'2021-05-12 15:14:22','2021-05-12 15:14:22','d0dcc9aa-b5c0-4e82-abbc-eebf85b654cf',1,'/orders.zip','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Trident/7.0; rv:11.0) like Gecko','Template not found: orders.zip','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 15:14:22',0),(70001,'2021-05-12 15:14:24','2021-05-12 15:14:24','5d73d0f8-db44-4743-ab89-e2da02551ccf',1,'/orders.gz','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Trident/7.0; rv:11.0) like Gecko','Template not found: orders.gz','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 15:14:24',0),(70002,'2021-05-12 15:14:26','2021-05-12 15:14:26','46af8318-0806-4c09-b35e-fdc4a28bf13d',1,'/order.zip','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Trident/7.0; rv:11.0) like Gecko','Template not found: order.zip','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 15:14:26',0),(70003,'2021-05-12 15:14:28','2021-05-12 15:14:28','9ba2a5a2-d3b8-481d-a1a8-698004e76a25',1,'/localhost.sql.gz','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Trident/7.0; rv:11.0) like Gecko','Template not found: localhost.sql.gz','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 15:14:28',0),(70004,'2021-05-12 15:14:31','2021-05-12 15:14:31','e33548fd-322f-4f75-bbee-d82377789d79',1,'/dump.sql.gz','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Trident/7.0; rv:11.0) like Gecko','Template not found: dump.sql.gz','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 15:14:31',0),(70005,'2021-05-12 15:14:32','2021-05-12 15:14:32','3911f93e-b0f9-4a60-8b2c-e50ae440ce4c',1,'/payments.sql.zip','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Trident/7.0; rv:11.0) like Gecko','Template not found: payments.sql.zip','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 15:14:32',0),(70006,'2021-05-12 15:14:34','2021-05-12 15:14:34','155a7b47-f85d-48bc-a860-9fbec1d88160',1,'/payments.zip','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Trident/7.0; rv:11.0) like Gecko','Template not found: payments.zip','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 15:14:34',0),(70007,'2021-05-12 15:14:36','2021-05-12 15:14:36','393d1da0-2672-4e80-ac52-3b6d5df16c98',1,'/payments.sql.gz','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Trident/7.0; rv:11.0) like Gecko','Template not found: payments.sql.gz','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 15:14:36',0),(70008,'2021-05-12 15:14:38','2021-05-12 15:14:38','3ac9b724-a062-4197-9d87-b59f7ea56bd7',1,'/payments.gz','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Trident/7.0; rv:11.0) like Gecko','Template not found: payments.gz','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 15:14:38',0),(70009,'2021-05-12 15:14:40','2021-05-12 15:14:40','75b2ca11-82e1-44a3-9726-bedda75d7566',1,'/brisbanenorthphnorgau_orders.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Trident/7.0; rv:11.0) like Gecko','Template not found: brisbanenorthphnorgau_orders.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 15:14:40',0),(70010,'2021-05-12 15:14:42','2021-05-12 15:14:42','3b00fb3e-8d4d-43ba-acbe-20bcabaf9e65',1,'/org_orders.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Trident/7.0; rv:11.0) like Gecko','Template not found: org_orders.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 15:14:42',0),(70011,'2021-05-12 15:14:44','2021-05-12 15:14:44','48b79e3b-8721-4e45-b44e-fca15acb3f5c',1,'/brisbanenorthphnorgau_payments.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Trident/7.0; rv:11.0) like Gecko','Template not found: brisbanenorthphnorgau_payments.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 15:14:44',0),(70012,'2021-05-12 15:14:46','2021-05-12 15:14:46','6894b1de-30a4-4e86-bf82-85009218f8a0',1,'/org_payments.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Trident/7.0; rv:11.0) like Gecko','Template not found: org_payments.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 15:14:46',0),(70013,'2021-05-12 15:14:48','2021-05-12 15:14:48','2554d518-3a00-497d-ad14-ef94d238437f',1,'/dbase.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Trident/7.0; rv:11.0) like Gecko','Template not found: dbase.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 15:14:48',0),(70014,'2021-05-12 15:14:50','2021-05-12 15:14:50','fdc9efa4-c8e2-4223-aac6-bb398457490b',1,'/web.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Trident/7.0; rv:11.0) like Gecko','Template not found: web.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 15:14:50',0),(70015,'2021-05-12 15:14:51','2021-05-12 15:14:51','b9f8ac23-4479-4bc9-9bcc-63e5c9208213',1,'/upload.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Trident/7.0; rv:11.0) like Gecko','Template not found: upload.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 15:14:51',0),(70016,'2021-05-12 15:14:53','2021-05-12 15:14:53','ee2a4b98-2fcd-4499-a31c-c1d704de2f16',1,'/home.sql','','185.153.196.198','Mozilla/5.0 (Windows NT 6.2; Trident/7.0; rv:11.0) like Gecko','Template not found: home.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 15:14:53',0),(70017,'2021-05-12 15:28:59','2021-05-12 15:28:59','12d260f0-4ab3-40d3-9c23-29d3d58c0d56',1,'/content/Document/Events/2020/FIN_INVITATION - Common challenges in primary care_haematology shared care-WEB.pdf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2020/FIN_INVITATION - Common challenges in primary care_haematology shared care-WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 15:28:59',0),(70018,'2021-05-12 15:43:10','2021-05-12 15:43:10','1c086e35-c1df-47b0-8f5c-2449ef707e9d',1,'/page/about/careers/program-support-officer-human-resources/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers/program-support-officer-human-resources','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 15:43:10',0),(70019,'2021-05-12 16:03:56','2021-05-12 16:03:56','15b8cfff-bd96-415d-99e0-125bc997831b',1,'/page/health-professionals/Local Positions Vacant/medical-receptionistadministrator-required---solo-gp-practice/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionistadministrator-required---solo-gp-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 16:03:56',0),(70020,'2021-05-12 16:14:47','2021-05-18 04:50:10','29956885-0056-46ef-b9d1-40787bd7db59',1,'/page/health-professionals/Local Positions Vacant/GP Required - Narangba Doctors/','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/GP Required - Narangba Doctors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 04:50:10',0),(70021,'2021-05-12 17:16:45','2021-05-12 17:16:45','83f2693e-a048-4688-b97a-649c6d1eb66e',1,'/content/Document/Templates/5.2/MNHHS Redcliffe Referral v5_2 ZM.rtf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/5.2/MNHHS Redcliffe Referral v5_2 ZM.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 17:16:45',0),(70022,'2021-05-12 17:59:23','2021-05-12 17:59:23','e92b2adf-af98-431a-b276-ac5eae51eb11',1,'/page/news-andevents/metro-north-maternity-gp-alignment-program-resources/','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-andevents/metro-north-maternity-gp-alignment-program-resources','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 17:59:23',0),(70023,'2021-05-12 17:59:24','2021-05-18 04:33:05','7c08cb16-3e83-4da6-aacf-e171d7f0e7ab',1,'/jobs/looking-for-gps-and-specialists-next-practice-medical-clinic-albion','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: jobs/looking-for-gps-and-specialists-next-practice-medical-clinic-albion','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,6,'2021-05-18 04:33:05',0),(70024,'2021-05-12 18:04:25','2021-05-12 18:04:25','3e730e5c-5111-447a-95e3-a5015ded65aa',1,'/page/news-andevents/metro-north-maternity-gp-alignment-programresources/','','66.249.68.2','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-andevents/metro-north-maternity-gp-alignment-programresources','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 18:04:25',0),(70025,'2021-05-12 18:29:09','2021-05-12 18:29:09','290aa388-1165-4406-8d4c-b6e369aa61b6',1,'/content/Document/PD_System_Support_Officer_150705 DRAFT.pdf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/PD_System_Support_Officer_150705 DRAFT.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 18:29:09',0),(70026,'2021-05-12 18:53:55','2021-05-12 18:53:55','2d308ed8-ed4a-482c-8532-289904cc1e7b',1,'/content/Document/Tinnitus physiological model diagram.pdf','http://www.brisbanenorthphn.org.au/content/Document/Tinnitus%20physiological%20model%20diagram.pdf','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/Tinnitus physiological model diagram.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 18:53:55',0),(70027,'2021-05-12 19:04:39','2021-05-12 19:04:39','827d65b8-8b73-49a9-bab4-3d76f1fe4d00',1,'/page/news-and-events/events/upcoming/seasons-for-growth---change-loss-and-grief-program-training/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/seasons-for-growth---change-loss-and-grief-program-training','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 19:04:39',0),(70028,'2021-05-12 19:29:29','2021-05-12 19:29:29','b6d1eb25-bf06-40ec-909e-7dabc901eaff',1,'/content/Document/GUI_Commissioning%20Framework_160202.pdf','http://www.brisbanenorthphn.org.au/content/Document/GUI_Commissioning%2520Framework_160202.pdf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/GUI_Commissioning Framework_160202.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 19:29:29',0),(70029,'2021-05-12 19:32:14','2021-05-12 19:32:14','889e6c74-eb68-40e6-907b-91b7474b8951',1,'/content/Document/Primary care liaison/Specialists List_Caboolture Hospital_6_2.pdf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Primary care liaison/Specialists List_Caboolture Hospital_6_2.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 19:32:14',0),(70030,'2021-05-12 19:51:49','2021-05-17 08:31:44','de3acddb-cc69-4895-85a6-95ecad2d25cf',1,'/events/a-z-cardiology-series-atrial-fibrillation-heart-murmurs','','207.46.13.74','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/a-z-cardiology-series-atrial-fibrillation-heart-murmurs','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-17 08:31:44',0),(70031,'2021-05-12 19:58:18','2021-05-12 19:58:18','fb2505bd-6cf3-452d-a51e-6589dbc828d8',1,'/content/Document/Events/2018/Nutrition North Brisbane PHN 10 November 2018 (00000002).pdf','http://www.brisbanenorthphn.org.au/content/Document/Events/2018/Nutrition%20North%20Brisbane%20PHN%2010%20November%202018%20(00000002).pdf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Events/2018/Nutrition North Brisbane PHN 10 November 2018 (00000002).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 19:58:18',0),(70032,'2021-05-12 20:01:29','2021-05-12 20:01:29','f639045c-8b02-49e7-9e7b-cffcc1097ca5',1,'/content/Media/MNHHS Maternity Referral v4.8_Untitled.4W7','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Media/MNHHS Maternity Referral v4.8_Untitled.4W7','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 20:01:29',0),(70033,'2021-05-12 20:17:26','2021-05-12 20:17:26','1a3bebfc-eef2-4381-90e9-09f800d9f46e',1,'/content/Document/Templates/6.1/Specialists%20List_Paediatrics_6_1(1).pdf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/Specialists%2520List_Paediatrics_6_1(1).pdf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/Specialists List_Paediatrics_6_1(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 20:17:26',0),(70034,'2021-05-12 20:34:28','2021-05-12 20:34:28','a5a275f7-61cc-4ff9-8950-93db94d7c89b',1,'/content/Document/Media%20Releases/MR_Protocol%20signals%20renewed%20commitment%20to%20working%20together_181218.pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%2520Releases/MR_Protocol%2520signals%2520renewed%2520commitment%2520to%2520working%2520together_181218.pdf','35.192.32.189','Go-http-client/1.1','Template not found: content/Document/Media Releases/MR_Protocol signals renewed commitment to working together_181218.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 20:34:28',0),(70035,'2021-05-12 20:56:00','2021-05-12 22:52:31','f4490812-10bf-4d49-9d4b-4cdd807a220f',1,'/config.json','','172.105.95.10','lkxscan/v0.1.0 (+https://leakix.net) l9explore/v1.0.0 (+https://github.com/LeakIX/l9explore)','Template not found: config.json','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-12 22:52:31',0),(70036,'2021-05-12 20:56:01','2021-05-12 22:52:32','a576dc98-7eb9-453b-9ffc-f8ae8518337e',1,'/v2/_catalog','','172.105.95.10','lkxscan/v0.1.0 (+https://leakix.net) l9explore/v1.0.0 (+https://github.com/LeakIX/l9explore)','Page not found.','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/web/Request.php',1314,4,'2021-05-12 22:52:32',0),(70037,'2021-05-12 20:56:05','2021-05-12 22:52:31','9762650c-b46e-42b6-9d87-29887fe05c23',1,'/idx_config/','','139.162.174.45','lkxscan/v0.1.0 (+https://leakix.net) l9explore/v1.0.0 (+https://github.com/LeakIX/l9explore)','Template not found: idx_config','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-12 22:52:31',0),(70038,'2021-05-12 20:56:06','2021-05-12 22:52:36','23767187-3b2b-4262-8c28-db07ab80797c',1,'/telescope/requests','','172.105.95.10','lkxscan/v0.1.0 (+https://leakix.net) l9explore/v1.0.0 (+https://github.com/LeakIX/l9explore)','Template not found: telescope/requests','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-12 22:52:36',0),(70039,'2021-05-12 21:11:55','2021-05-12 21:11:55','5a266629-3a21-482d-b78b-c53ba603fe16',1,'/content/Document/Recovery/MHAOD_Recovery_newsletter_February_2019%20web.pdf','http://www.brisbanenorthphn.org.au/content/Document/Recovery/MHAOD_Recovery_newsletter_February_2019%2520web.pdf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Recovery/MHAOD_Recovery_newsletter_February_2019 web.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 21:11:55',0),(70040,'2021-05-12 21:16:07','2021-05-12 21:16:07','84a0652b-3dd8-487d-baf9-2827a66690d0',1,'/content/Document/Planning/FIN_AWP_NPS-CoS%2019-21_190531%20Transition%20WEB.pdf','http://www.brisbanenorthphn.org.au/content/Document/Planning/FIN_AWP_NPS-CoS%252019-21_190531%2520Transition%2520WEB.pdf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Planning/FIN_AWP_NPS-CoS 19-21_190531 Transition WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 21:16:07',0),(70041,'2021-05-12 22:56:44','2021-05-12 22:56:44','10c1594a-1db5-4dbf-b059-3907de5bac31',1,'/page/news-and-events/events/upcoming/quarterly-brisbane-north-aged-care-forum-november-2016---caboolture/','','203.221.214.231','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36 Edg/90.0.818.56','Template not found: page/news-and-events/events/upcoming/quarterly-brisbane-north-aged-care-forum-november-2016---caboolture','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 22:56:44',0),(70042,'2021-05-12 23:17:20','2021-05-12 23:17:20','c7a85ee5-bb8c-415a-9655-9aeb7289e034',1,'/content/Document/Templates/5.3/MNHHS%20Maternity%20Booking-in%205_3%20MD%20.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/5.3/MNHHS%2520Maternity%2520Booking-in%25205_3%2520MD%2520.rtf','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/Templates/5.3/MNHHS Maternity Booking-in 5_3 MD .rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-12 23:17:20',0),(70043,'2021-05-12 23:37:59','2021-05-12 23:39:00','b63a94e1-675c-4db9-bd9d-69f26a50c0d0',1,'/content/Image/News Images/IMG_1198.JPG','','66.220.149.33','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: content/Image/News Images/IMG_1198.JPG','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-12 23:39:00',0),(70044,'2021-05-13 00:39:10','2021-05-13 00:39:10','7619ea5c-e6d8-4df4-9e67-a0f34f3cad90',1,'/content/Document/Media%20Releases/MR_Mental%20health%20nurses%20offer%20no-cost%20clinical%20care%20coordination_170901.pdf','http://www.brisbanenorthphn.org.au/content/Document/Media%2520Releases/MR_Mental%2520health%2520nurses%2520offer%2520no-cost%2520clinical%2520care%2520coordination_170901.pdf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Media Releases/MR_Mental health nurses offer no-cost clinical care coordination_170901.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-13 00:39:10',0),(70045,'2021-05-13 01:33:59','2021-05-13 01:33:59','49735727-94e7-4482-8837-127446fe2aeb',1,'/admin/dashboard','','144.133.197.136','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36 Edg/90.0.818.56','Template not found: admin/dashboard','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-13 01:33:59',0),(70046,'2021-05-13 02:01:35','2021-05-13 02:01:35','14a4dcb3-eada-4a89-aa55-4fca4d938763',1,'/content/Document/Templates/4.4/MNHHS RBWH Ref ZM v4.4.rtf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.4/MNHHS RBWH Ref ZM v4.4.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-13 02:01:35',0),(70047,'2021-05-13 03:04:07','2021-05-16 10:43:08','32d489c0-db29-44b4-a893-aa8cf137f475',1,'/page/news-and-events/events/upcoming/anxiety-learning-health-coping-strategies-6-week-program/','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/anxiety-learning-health-coping-strategies-6-week-program','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-16 10:43:08',0),(70048,'2021-05-13 03:25:08','2021-05-13 03:25:08','6e054557-4991-4080-b17f-f58d6a36c2c3',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-required---indooroopilly-day-and-night-medical-centre/','','40.77.167.21','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-required---indooroopilly-day-and-night-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-13 03:25:08',0),(70049,'2021-05-13 03:32:32','2021-05-16 02:58:24','7f0cb910-93ee-4f4b-adcc-1cc92fbf8316',1,'/page/about/our-region/health-planning/health-needs-assessments/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/our-region/health-planning/health-needs-assessments','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 02:58:24',0),(70050,'2021-05-13 03:50:08','2021-05-13 03:50:08','3d5d7a38-b7cb-4e44-891e-eabe1d6966d0',1,'/page/about/commissioning/download-the-toolkit','','114.119.140.137','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/commissioning/download-the-toolkit','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-13 03:50:08',0),(70051,'2021-05-13 03:52:18','2021-05-13 03:52:18','fcb9defc-7561-480a-aa14-2f81ff90c173',1,'/page/news-and-events/events/upcoming/narcissistic-borderline-antisocial-and-histrionic-personality-disorders-when-drama-and-emotion-dysregulation-predominate/','http://brisbanenorthphn.org.au/page/news-and-events/events/upcoming/narcissistic-borderline-antisocial-and-histrionic-personality-disorders-when-drama-and-emotion-dysregulation-predominate/','35.210.4.1','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/events/upcoming/narcissistic-borderline-antisocial-and-histrionic-personality-disorders-when-drama-and-emotion-dysregulation-predominate','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-13 03:52:18',0),(70052,'2021-05-13 03:59:23','2021-05-13 03:59:23','018900bc-52aa-4eac-b147-b5c3dcd96711',1,'/sanjuanitahightower/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: sanjuanitahightower','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-13 03:59:23',0),(70053,'2021-05-13 04:24:31','2021-05-13 04:24:31','29d71908-5347-4c4f-bccf-ca75390edf02',1,'/content/Image/Programs/Speech bubble EOI.jpg','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Programs/Speech bubble EOI.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-13 04:24:31',0),(70054,'2021-05-13 04:32:01','2021-05-13 04:32:01','5aca6717-5556-4744-8895-9b7c0472ce65',1,'/page/health-professionals/local positions vacant/psychologist-required---young-minds-health-and-development-network-and-minds4health','http://brisbanenorthphn.org.au/page/health-professionals/local+positions+vacant/psychologist-required---young-minds-health-and-development-network-and-minds4health','35.210.222.190','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/health-professionals/local positions vacant/psychologist-required---young-minds-health-and-development-network-and-minds4health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-13 04:32:01',0),(70055,'2021-05-13 05:24:32','2021-05-13 05:24:35','e0b14e22-59bd-4de5-8ef3-602c134ca4fc',1,'/content/Image/News Images/BNPHN_004.jpg','','40.114.38.21','python-requests/2.20.0','Template not found: content/Image/News Images/BNPHN_004.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 05:24:35',0),(70056,'2021-05-13 05:27:25','2021-05-16 10:21:57','46191a57-948f-4d7c-a813-d5bd0c514ee9',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-lawnton-gympierd/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-lawnton-gympierd','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 10:21:57',0),(70057,'2021-05-13 05:54:42','2021-05-17 10:00:03','bf39f94a-1169-440b-beb8-1e262eb9b6e1',1,'/content/Document/Metro-North-Medicare-Local.pdf','','207.46.13.74','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Metro-North-Medicare-Local.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-17 10:00:03',0),(70058,'2021-05-13 06:31:14','2021-05-13 06:31:14','7f59b9cb-f2b4-4a2f-a670-7d472d9498f7',1,'/admin/assets/fileupload/index.php','http://www.google.com/','23.228.109.147','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2896.3 Safari/537.36','Template not found: admin/assets/fileupload/index.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-13 06:31:14',0),(70059,'2021-05-13 06:31:40','2021-05-13 06:31:40','b18740e8-a876-47d4-9251-8042c1775b7f',1,'/page/news-and-events/events/archive/11-hours-30-mins-conference-ethics---what-would-you-do-2-day-special-event/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/11-hours-30-mins-conference-ethics---what-would-you-do-2-day-special-event','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-13 06:31:40',0),(70060,'2021-05-13 06:42:35','2021-05-13 06:42:35','62cc1729-9820-4bb4-90b5-72db20857618',1,'/page/news-and-events/events/archive/immunisation-catch-up-event-for-practice-nurses--lutwyche/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/immunisation-catch-up-event-for-practice-nurses--lutwyche','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-13 06:42:35',0),(70061,'2021-05-13 07:29:18','2021-05-15 10:57:29','d82b56d5-101d-4f5d-858f-7bea5cee90aa',1,'/page/news-and-events/events/upcoming/the-prince-charles-hospital-cardiology-meeting-series/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/the-prince-charles-hospital-cardiology-meeting-series','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-15 10:57:29',0),(70062,'2021-05-13 07:50:11','2021-05-13 07:50:11','48d48bad-cecc-41aa-867d-7c56f821f08d',1,'/content/Document/Templates/4.6/MNHHS Caboolture Referral BP v4_6.rtf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.6/MNHHS Caboolture Referral BP v4_6.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-13 07:50:11',0),(70063,'2021-05-13 08:03:53','2021-05-13 08:03:53','90751477-22a8-4ca3-af37-2a65e81273f0',1,'/content/Document/Templates/6.1/MNHHS%20Redcliffe%20v6_1.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/6.1/MNHHS%2520Redcliffe%2520v6_1.rtf','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/Templates/6.1/MNHHS Redcliffe v6_1.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-13 08:03:53',0),(70064,'2021-05-13 08:13:48','2021-05-13 08:13:48','9d7f5903-e69e-4694-8df4-085ac79bb8d8',1,'/content/Document/Templates/4.12/PractiX v4.12/MNHHS Redcliffe PractiX v4_12.doc','http://www.brisbanenorthphn.org.au/content/Document/Templates/4.12/PractiX%20v4.12/MNHHS%20Redcliffe%20PractiX%20v4_12.doc','34.86.165.63','Go-http-client/1.1','Template not found: content/Document/Templates/4.12/PractiX v4.12/MNHHS Redcliffe PractiX v4_12.doc','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-13 08:13:48',0),(70065,'2021-05-13 08:17:13','2021-05-13 08:17:13','b1b206de-aebd-4318-90f6-93b518d965e8',1,'/topics/pixie-hairstyles/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: topics/pixie-hairstyles','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-13 08:17:13',0),(70066,'2021-05-13 08:25:25','2021-05-13 08:25:25','2119d44a-7379-445e-9c1c-4ef18fec6161',1,'/content/Document/Position Descriptions/PD_ServiceNavigationCoordinator_180410 (1).pdf','http://www.brisbanenorthphn.org.au/content/Document/Position%20Descriptions/PD_ServiceNavigationCoordinator_180410%20(1).pdf','34.125.43.181','Go-http-client/1.1','Template not found: content/Document/Position Descriptions/PD_ServiceNavigationCoordinator_180410 (1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-13 08:25:25',0),(70067,'2021-05-13 08:32:00','2021-05-17 17:31:06','ad5e3c1f-a5c4-40e7-8d6a-73b15eb49700',1,'/page/health-professionals/Local Positions Vacant/practice-nurse-required---family-practice-at-the-gap/','','207.46.13.74','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse-required---family-practice-at-the-gap','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-17 17:31:06',0),(70068,'2021-05-13 08:50:05','2021-05-17 06:54:12','f1e820b8-6101-4af7-8fe9-1efeb93d8ae8',1,'/content/Document/Events/2018/OM North Brisbane 24 November 2018.pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2018/OM North Brisbane 24 November 2018.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-17 06:54:12',0),(70069,'2021-05-13 09:00:57','2021-05-13 09:00:57','4a872a8f-55a4-4d0a-b09d-b2a3e2781f6f',1,'/page/news-and-events/latest-news/education-increases-confidence-in-chronic-wound-care/','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/education-increases-confidence-in-chronic-wound-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-13 09:00:57',0),(70070,'2021-05-13 09:03:15','2021-05-13 09:03:15','501f4ee6-ff94-4005-94f0-4fe2ff5fce16',1,'/page/health-professionals/Local Positions Vacant/list-your-job/gp-required-Moreton Bay Medical Centre/','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/list-your-job/gp-required-Moreton Bay Medical Centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-13 09:03:15',0),(70071,'2021-05-13 09:42:11','2021-05-13 09:42:11','e571d851-afbd-4e70-9467-75ee3b60c2ec',1,'/page/news-and-events/events/upcoming/effective-techniques-for-achieving-successful-outcomes-with-clients-who-resist-change/','http://brisbanenorthphn.org.au/page/news-and-events/events/upcoming/effective-techniques-for-achieving-successful-outcomes-with-clients-who-resist-change/','35.210.31.94','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/events/upcoming/effective-techniques-for-achieving-successful-outcomes-with-clients-who-resist-change','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-13 09:42:11',0),(70072,'2021-05-13 10:28:39','2021-05-13 10:28:39','7b4b795a-62c1-47c1-8bf9-75fdb442dba3',1,'/events/mater-gp-education-conference','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/mater-gp-education-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-13 10:28:39',0),(70073,'2021-05-13 13:07:29','2021-05-13 13:07:29','775669ea-b069-4e20-8eb4-83077ddc9285',1,'/content/Document/Primary care liaison/Specialists List_Caboolture Hospital_6_2(1).pdf','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Document/Primary care liaison/Specialists List_Caboolture Hospital_6_2(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-13 13:07:29',0),(70074,'2021-05-13 13:28:51','2021-05-13 13:28:51','f05253ed-f306-44de-ae04-4ad82a45d3da',1,'/fr/dictionary/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: fr/dictionary','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-13 13:28:51',0),(70075,'2021-05-13 16:03:21','2021-05-13 16:03:21','910f5eb7-ca19-4f40-a824-41596faac40b',1,'/events/flushed-childhood-continence-the-echo-network-and-podcast-series','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/flushed-childhood-continence-the-echo-network-and-podcast-series','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-13 16:03:21',0),(70076,'2021-05-13 16:45:26','2021-05-19 03:15:09','218425fe-0c05-4455-a819-8c51ed9d1efa',1,'/events/quality-improvement-focus-cardiovascular-disease-in-primary-care','','85.115.53.140','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; ru)','Template not found: events/quality-improvement-focus-cardiovascular-disease-in-primary-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,65,'2021-05-19 03:15:09',0),(70077,'2021-05-13 17:24:34','2021-05-17 12:09:11','92aab4ba-6ce9-455f-b91c-44d75e96780b',1,'/content/Document/Templates/5.3/Specialists List_Paediatrics_5_3.pdf','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Templates/5.3/Specialists List_Paediatrics_5_3.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 12:09:11',0),(70078,'2021-05-13 18:23:01','2021-05-13 18:23:01','09e0e5cc-a888-4cdb-9891-4b38eb915c77',1,'/page/news-and-events/events/archive/chronic-disease-management-2016-conference/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/chronic-disease-management-2016-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-13 18:23:01',0),(70079,'2021-05-13 18:47:33','2021-05-13 18:47:33','d70b772c-c2a2-46d2-af9f-78b975725f4d',1,'/page/health-professionals/Local Positions Vacant/female-general-practitioner-required---doctors-teneriffe/','','66.249.69.36','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/female-general-practitioner-required---doctors-teneriffe','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-13 18:47:33',0),(70080,'2021-05-13 19:11:06','2021-05-13 19:11:06','5d4e3403-b93e-412c-9002-32ccb2e85c65',1,'/tel:07 3366 3544','https://www.google.com/','104.198.6.56','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0 Safari/605.1.15','Template not found: tel:07 3366 3544','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-13 19:11:06',0),(70081,'2021-05-13 20:35:02','2021-05-13 20:35:07','c0a25313-9c2a-4bbe-ad0a-dbd6e510d3dc',1,'/page/news-and-events/latest-news/report-reveals-hotspots-for-potentially-preventable-hospitalisation/','','173.252.87.20','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: page/news-and-events/latest-news/report-reveals-hotspots-for-potentially-preventable-hospitalisation','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-13 20:35:07',0),(70082,'2021-05-13 21:01:52','2021-05-13 21:01:52','cc82e84a-516f-41e0-ac8a-75ead4e383d1',1,'/events/insight-eyes-gp-education-seminar','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/insight-eyes-gp-education-seminar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-13 21:01:52',0),(70083,'2021-05-13 21:49:43','2021-05-13 21:49:43','9004df34-76e1-4e53-bdba-6876f245b31a',1,'/page/news-and-events/events/upcoming/mental-health-skills-training/','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/mental-health-skills-training','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-13 21:49:43',0),(70084,'2021-05-13 22:09:43','2021-05-19 00:28:53','cc18a47e-6c54-4c97-83ae-103f41805e4e',1,'/page/health-professionals/pathways-','','51.255.225.159','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36','Template not found: page/health-professionals/pathways-','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-19 00:28:53',0),(70085,'2021-05-13 23:02:12','2021-05-13 23:02:12','0287fa0f-02d2-4652-b286-ba6830af8f3f',1,'/page/health-professionals/digital-health/my-health-record/set-up-and-manage/setting-up-access-to-my-health-record/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/digital-health/my-health-record/set-up-and-manage/setting-up-access-to-my-health-record','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-13 23:02:12',0),(70086,'2021-05-13 23:24:26','2021-05-13 23:24:26','ff4d6737-d7f0-4eb3-a695-457b85c14692',1,'/job','','203.17.149.16','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','Template not found: job','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-13 23:24:26',0),(70087,'2021-05-14 00:31:16','2021-05-14 00:31:16','8de07f80-8905-4c92-943a-913245ef672f',1,'/content/Document/151021 - Real health care issues demand real solutions.pdf','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/151021 - Real health care issues demand real solutions.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 00:31:16',0),(70088,'2021-05-14 00:46:59','2021-05-18 19:57:09','05b32b09-6118-4d84-a8fb-1f726fd1993f',1,'/page/news-and-events/events/archive/gut-health-and-allergy/','','157.55.39.35','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/gut-health-and-allergy','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 19:57:09',0),(70089,'2021-05-14 00:58:26','2021-05-14 00:58:26','43ad8beb-836b-499c-ad8d-9da158ed59ec',1,'/hairstylehub/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: hairstylehub','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 00:58:26',0),(70090,'2021-05-14 01:13:14','2021-05-14 01:13:16','dfca84af-017b-4886-91d2-7311f1cd5faa',1,'/osCommerce.sql','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: osCommerce.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 01:13:16',0),(70091,'2021-05-14 01:13:19','2021-05-14 01:13:19','e6bfbd1b-bdf6-4179-a21e-1fbe3ad16b19',1,'/checkouts.sql','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: checkouts.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 01:13:19',0),(70092,'2021-05-14 01:13:21','2021-05-14 01:13:21','9767afe1-1593-4003-a7da-dcb70789628d',1,'/checkout.sql','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: checkout.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 01:13:21',0),(70093,'2021-05-14 01:13:23','2021-05-14 01:13:23','ccdf117d-8da7-495a-85f0-20e0790b2d23',1,'/a_checkouts.sql','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: a_checkouts.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 01:13:23',0),(70094,'2021-05-14 01:13:25','2021-05-14 01:13:25','b2e2d04f-80da-404c-acbb-3478bf7c50f0',1,'/wp.sql','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: wp.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 01:13:25',0),(70095,'2021-05-14 01:13:28','2021-05-14 01:13:28','6de366e3-f247-4a38-a4ad-f996ddaccbe9',1,'/admins.sql','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: admins.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 01:13:28',0),(70096,'2021-05-14 01:13:30','2021-05-14 01:13:30','5af64205-7b59-4e05-aa53-8cfbf00f127f',1,'/administrators.sql','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: administrators.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 01:13:30',0),(70097,'2021-05-14 01:13:32','2021-05-14 01:13:32','5e0d500f-816b-417a-8175-c150055f9130',1,'/back.sql','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: back.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 01:13:32',0),(70098,'2021-05-14 01:13:34','2021-05-14 01:13:34','b6c346c1-e98a-4850-a49f-3c3dccbbc74f',1,'/db_mysql.sql','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: db_mysql.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 01:13:34',0),(70099,'2021-05-14 01:13:36','2021-05-14 01:13:36','6b417f30-e143-4296-a474-e9f1c6af66d1',1,'/old.sql','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: old.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 01:13:36',0),(70100,'2021-05-14 01:13:38','2021-05-14 01:13:38','7b67636b-be78-4d6b-8386-f37b1abfc7fa',1,'/.env.dev','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: .env.dev','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 01:13:38',0),(70101,'2021-05-14 01:13:40','2021-05-14 01:13:40','41ff8bd5-1f5c-4fb6-b035-b62c2314c187',1,'/.env.local','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: .env.local','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 01:13:40',0),(70102,'2021-05-14 01:13:42','2021-05-14 01:13:42','f6b422bc-db47-4d96-b9a6-a7d0c3bd0bec',1,'/.env.docker','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: .env.docker','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 01:13:42',0),(70103,'2021-05-14 01:13:44','2021-05-14 01:13:44','476944f9-18ae-4b62-aaec-c307218cc8b9',1,'/.env.dev.local','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: .env.dev.local','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 01:13:44',0),(70104,'2021-05-14 01:13:46','2021-05-14 01:13:46','58a73208-705f-4a56-b45c-6d228e67baf1',1,'/.env.sample','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: .env.sample','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 01:13:46',0),(70105,'2021-05-14 01:13:48','2021-05-14 01:13:48','a2290cf8-7afc-4ad7-8d85-7326140af8fd',1,'/admin/backup/','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: admin/backup','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 01:13:48',0),(70106,'2021-05-14 01:13:50','2021-05-14 01:13:50','dcdae180-7ff8-4480-875f-b9f010bb4b95',1,'/admin/backups/','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: admin/backups','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 01:13:50',0),(70107,'2021-05-14 01:13:51','2021-05-14 01:13:51','31e8572b-24a2-470d-a7f0-51dd65215b84',1,'/admin/mysql/','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: admin/mysql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 01:13:51',0),(70108,'2021-05-14 01:13:55','2021-05-14 01:13:55','64511384-37b8-4e5c-8f91-3c1419caa649',1,'/.backup/','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: .backup','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 01:13:55',0),(70109,'2021-05-14 01:13:57','2021-05-14 01:13:57','cb6d4e81-c70d-4f52-ba4b-062c25263804',1,'/.backups/','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: .backups','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 01:13:57',0),(70110,'2021-05-14 01:13:59','2021-05-14 01:13:59','6dfd69cb-7a04-4eb2-85d7-f8ff21582f84',1,'/.dump/','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: .dump','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 01:13:59',0),(70111,'2021-05-14 01:14:08','2021-05-14 01:14:08','32a025df-3b85-4db8-8dfe-9a6faa83d4a4',1,'/uploaded/','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: uploaded','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 01:14:08',0),(70112,'2021-05-14 01:14:12','2021-05-14 01:14:12','b5a5fe42-46df-43c4-a0db-1593cd00d6df',1,'/admin/uploads/','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: admin/uploads','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 01:14:12',0),(70113,'2021-05-14 01:14:16','2021-05-14 01:14:16','c0897265-a577-4a73-82f1-6d3e807bf624',1,'/admin/upload/','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: admin/upload','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 01:14:16',0),(70114,'2021-05-14 01:14:18','2021-05-14 01:14:18','18529180-12c1-44d9-8f95-f68c559666b4',1,'/admin/uploaded/','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: admin/uploaded','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 01:14:18',0),(70115,'2021-05-14 01:14:22','2021-05-14 01:14:22','d7ecb4f9-e1dd-4676-80b2-0dd2619fd3cc',1,'/admin/files/','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: admin/files','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 01:14:22',0),(70116,'2021-05-14 01:14:25','2021-05-14 01:14:25','a47c1c9f-ed4c-429a-8698-56be42f9c142',1,'/var/backups/','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: var/backups','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 01:14:25',0),(70117,'2021-05-14 01:14:27','2021-05-14 01:14:27','326c704f-7837-4f36-81cd-6ecc1bcd3ccb',1,'/sql_dumps/','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: sql_dumps','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 01:14:27',0),(70118,'2021-05-14 01:14:29','2021-05-14 01:14:29','65d3f0f7-fe2a-432f-93fd-713848ff1086',1,'/oldfiles/','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: oldfiles','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 01:14:29',0),(70119,'2021-05-14 01:14:32','2021-05-14 01:14:32','f6f65181-c11f-4e7d-8359-8ed0ec2390ad',1,'/old_files/','','185.153.196.198','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2864.11 Safari/537.36','Template not found: old_files','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 01:14:32',0),(70120,'2021-05-14 01:30:57','2021-05-14 01:30:57','c4fe36de-b9d1-4016-ae17-2eb19f2ba303',1,'/page/news-and-events/events/upcoming/most-excellent-adventure-tour-to-the-ration-shed---august-2016','http://brisbanenorthphn.org.au/page/news-and-events/events/upcoming/most-excellent-adventure-tour-to-the-ration-shed---august-2016','35.206.147.48','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/events/upcoming/most-excellent-adventure-tour-to-the-ration-shed---august-2016','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 01:30:57',0),(70121,'2021-05-14 02:00:54','2021-05-14 02:00:56','6e1d28fb-56cc-4aab-906e-1bb75a656719',1,'/events/Y29tbW9uLW','','20.46.108.116','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','Template not found: events/Y29tbW9uLW','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 02:00:56',0),(70122,'2021-05-14 03:24:24','2021-05-14 03:24:24','c2f70683-3a41-40bd-ab31-83a3c79b7323',1,'/page/news-and-events/events/upcoming/2019-marfan-and-aortopathy-conference/','','66.249.69.63','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/2019-marfan-and-aortopathy-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 03:24:24',0),(70123,'2021-05-14 04:10:31','2021-05-14 17:44:46','2465d3a3-13cb-421b-a605-22866864bb58',1,'/page/health-professionals/Local Positions Vacant/paediatric-physiotherapist-required---possums-clinic/','','66.249.69.41','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/paediatric-physiotherapist-required---possums-clinic','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-14 17:44:46',0),(70124,'2021-05-14 04:12:59','2021-05-14 04:12:59','b2fd0fac-622d-41ec-a6ae-82987ef14fd0',1,'/content/Document/Network Link_1_January_2017_WEB.pdf','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Network Link_1_January_2017_WEB.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 04:12:59',0),(70125,'2021-05-14 05:40:58','2021-05-14 05:40:58','d975de10-b6f5-492c-afc0-9b38ee1a3562',1,'/practice-support/bmF0aW9uYW','','20.53.97.104','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36','Template not found: practice-support/bmF0aW9uYW','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 05:40:58',0),(70126,'2021-05-14 07:51:55','2021-05-14 07:51:55','f9071cb0-651b-49b7-b960-844affbf85fd',1,'/admin/fileupload/index.php','http://www.google.com/','23.228.109.147','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2896.3 Safari/537.36','Template not found: admin/fileupload/index.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 07:51:55',0),(70127,'2021-05-14 08:10:49','2021-05-14 08:10:49','7c6cac40-b360-4374-92fd-0a85714895f4',1,'/content/Image/News Images/dreamstime_m_912718.jpg','','192.0.98.183','Photon/1.0','Template not found: content/Image/News Images/dreamstime_m_912718.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 08:10:49',0),(70128,'2021-05-14 08:35:45','2021-05-14 08:35:45','cb14a2c7-e0df-4a4c-8411-b5741eb45ca6',1,'/page/about/careers/aged-care-assessment-lead-regional-assessment-service-ras/','','66.249.69.39','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/about/careers/aged-care-assessment-lead-regional-assessment-service-ras','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 08:35:45',0),(70129,'2021-05-14 11:17:24','2021-05-14 11:17:24','aa44209b-d42f-419f-a0dc-5c912bf4742a',1,'/page/news-and-events/events/archive/the-essentials-training-clinicians-in-eating-disorders','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/archive/the-essentials-training-clinicians-in-eating-disorders','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 11:17:24',0),(70130,'2021-05-14 11:24:44','2021-05-14 11:24:44','75955ee0-d47f-4579-b65d-350d896519a2',1,'/tel:07 3262 1288','https://www.google.com/','34.82.29.63','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36','Template not found: tel:07 3262 1288','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 11:24:44',0),(70131,'2021-05-14 11:53:56','2021-05-14 11:53:56','f3284565-c009-4495-9412-21fcc609b819',1,'/yearinreview/closing-the-gap-in-indigenous-health','','114.119.138.33','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/closing-the-gap-in-indigenous-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 11:53:56',0),(70132,'2021-05-14 12:20:52','2021-05-14 12:20:52','8df65edc-8f16-42ec-bae2-1778a25a71a7',1,'/phpmyadmin/scripts/setup.php','','91.241.19.175','Nuclei - Open-source project (github.com/projectdiscovery/nuclei)','Template not found: phpmyadmin/scripts/setup.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 12:20:52',0),(70133,'2021-05-14 12:36:16','2021-05-14 12:36:16','b64c4f7d-0d3e-4c7c-9576-47ff905b5340',1,'/page/news-and-events/events/archive/immunisation-catch-up-workshop---25-february-2016/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/immunisation-catch-up-workshop---25-february-2016','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 12:36:16',0),(70134,'2021-05-14 14:49:45','2021-05-14 14:49:45','84ddae6c-a51c-4207-ab71-91b32bbac3d7',1,'/content/Document/Templates/V5.1 Jan 2018/ZedMed/MNHHS Palliative Care v5_1 zedmed.rtf','http://www.brisbanenorthphn.org.au/content/Document/Templates/V5.1%20Jan%202018/ZedMed/MNHHS%20Palliative%20Care%20v5_1%20zedmed.rtf','104.198.141.65','Go-http-client/1.1','Template not found: content/Document/Templates/V5.1 Jan 2018/ZedMed/MNHHS Palliative Care v5_1 zedmed.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 14:49:45',0),(70135,'2021-05-14 16:00:57','2021-05-14 16:00:57','571c0c89-57c6-4629-88f0-238dde4166db',1,'/content/Document/Templates/4.3/MNHHS Caboolture Referral BP v4.3.rtf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/4.3/MNHHS Caboolture Referral BP v4.3.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 16:00:57',0),(70136,'2021-05-14 16:26:58','2021-05-14 16:26:58','020ad7f2-439b-421d-a3d0-20f725b51174',1,'/content/Document/shfa_flyer_09-09-17.pdf','','207.46.13.159','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/shfa_flyer_09-09-17.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 16:26:58',0),(70137,'2021-05-14 17:49:21','2021-05-14 17:49:21','6a72af4b-9e4c-46aa-a8d6-7e10b5d826ef',1,'/page/news-and-events/events/archive/hard-to-heal-chronic-wounds-e-seminar/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/hard-to-heal-chronic-wounds-e-seminar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 17:49:21',0),(70138,'2021-05-14 17:55:32','2021-05-18 07:37:48','c99381d1-f2ce-42f8-9c9d-0c5f640d07f6',1,'/events/staying-safe-during-domestic-and-family-violence-prevention-month-in-may-2021','','54.36.148.187','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)','Template not found: events/staying-safe-during-domestic-and-family-violence-prevention-month-in-may-2021','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,10,'2021-05-18 07:37:48',0),(70139,'2021-05-14 18:34:25','2021-05-16 06:41:24','80e06fa1-4850-4421-8ae5-6cf60e470d54',1,'/content/Document/Templates/V5.1 Jan 2018/ZedMed/MNHHS Caboolture Hosptial v5_1 zedmed.rtf','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Templates/V5.1 Jan 2018/ZedMed/MNHHS Caboolture Hosptial v5_1 zedmed.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-16 06:41:24',0),(70140,'2021-05-14 19:13:43','2021-05-14 19:13:43','f1e34e9a-9c65-45b2-92a8-422f8b7b92be',1,'/page/health-professionals/Local Positions Vacant/rn-practice-nurse-required---pebble-beach-medical-centre/','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/rn-practice-nurse-required---pebble-beach-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 19:13:43',0),(70141,'2021-05-14 19:24:32','2021-05-14 19:24:32','f4066496-4187-42b4-9343-d616cfbab77c',1,'/page/health-professionals/Local Positions Vacant/vr-gp---general-practice-in-bellbowrie/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/vr-gp---general-practice-in-bellbowrie','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 19:24:32',0),(70142,'2021-05-14 19:35:29','2021-05-14 19:35:29','2f7e0a5d-c4c5-47f5-9f23-c722e81c9311',1,'/page/health-professionals/Local Positions Vacant/rooms-available-for-rent-to-health-professionals---beachmere-medical-centre/','','40.77.167.21','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/rooms-available-for-rent-to-health-professionals---beachmere-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 19:35:29',0),(70143,'2021-05-14 19:51:12','2021-05-14 19:51:12','a2ced991-c32b-4178-a16f-fdbf879431ab',1,'/content/Document/Reports/FINAL_REP_HNA_Checklist 190219(1).pdf','','66.249.69.63','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/Reports/FINAL_REP_HNA_Checklist 190219(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 19:51:12',0),(70144,'2021-05-14 22:34:18','2021-05-14 22:34:18','dd57a0ee-10eb-4ce8-9556-e8cfd24b383e',1,'/popular-categories','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: popular-categories','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 22:34:18',0),(70145,'2021-05-14 22:51:22','2021-05-14 22:51:22','de2f4a60-9731-45fc-9791-e905af53147e',1,'/page/news-and-events/events/upcoming/working-in-bushfire-impacted-communities-tips-for-gps-and-allied-health-professionals/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/working-in-bushfire-impacted-communities-tips-for-gps-and-allied-health-professionals','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-14 22:51:22',0),(70146,'2021-05-14 23:30:52','2021-05-18 13:27:29','66a0dfea-dbf5-453b-ae5d-94e16d0736e2',1,'/tel:07 3519 6963','https://www.google.com/','35.227.145.37','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','Template not found: tel:07 3519 6963','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 13:27:29',0),(70147,'2021-05-15 00:25:47','2021-05-15 00:25:47','05f87373-0248-41d3-86a0-1a8f3dc90cc2',1,'/content/Document/Reports/MNHHS and PHN ann','','66.249.69.33','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Reports/MNHHS and PHN ann','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-15 00:25:47',0),(70148,'2021-05-15 00:28:34','2021-05-15 00:28:34','e501c326-980f-4d76-af61-1803e6b74fe3',1,'/content/Document/Alcohol and other drug ser','','66.249.69.63','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Alcohol and other drug ser','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-15 00:28:34',0),(70149,'2021-05-15 00:47:30','2021-05-15 00:47:30','7c5283e3-b9c4-487b-a7e2-c6730b622fe7',1,'/events/improving-immunity-psychoneuroimmunology-nurses','','40.77.167.64','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/improving-immunity-psychoneuroimmunology-nurses','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-15 00:47:30',0),(70150,'2021-05-15 00:54:07','2021-05-15 00:54:07','0a854cdc-70f9-4ba2-84c4-15bf51f88380',1,'/content/Document/Pathways/Side Effects of Antidepressant Medication.pdf','','93.158.161.35','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','Template not found: content/Document/Pathways/Side Effects of Antidepressant Medication.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-15 00:54:07',0),(70151,'2021-05-15 01:15:10','2021-05-15 01:15:10','5f0e358e-1e92-4405-9761-c05d865bc15a',1,'/page/news-and-events/events/upcoming/rheumatology-in-primary-care-one-day-seminar/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/rheumatology-in-primary-care-one-day-seminar','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-15 01:15:10',0),(70152,'2021-05-15 01:25:45','2021-05-18 15:07:46','22c1cd35-087b-41ec-87f8-3918f8639d76',1,'/content/Image/News Images/Banner_page-covid-green.jpg','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/News Images/Banner_page-covid-green.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 15:07:46',0),(70153,'2021-05-15 02:18:15','2021-05-15 02:18:15','099ec02a-bccf-45e2-8a64-8e6aedfa41e0',1,'/page/health-professionals/Local Positions Vacant/gp-required---nundah-village-family-practice/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/gp-required---nundah-village-family-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-15 02:18:15',0),(70154,'2021-05-15 02:57:19','2021-05-15 02:57:19','9c0b558e-5d6d-4020-b534-b328c36f83cd',1,'/content/Document/Events/INVITATION - Out of Home Care workshop - 18 May 2019.pdf','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/INVITATION - Out of Home Care workshop - 18 May 2019.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-15 02:57:19',0),(70155,'2021-05-15 03:21:41','2021-05-15 03:21:41','f6bf4686-2e10-4213-91fe-212518a276af',1,'/page/news-and-events/events/upcoming/lutwyche-immunisation-catch-up-events-for-practice-nurses---august-2017/','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/lutwyche-immunisation-catch-up-events-for-practice-nurses---august-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-15 03:21:41',0),(70156,'2021-05-15 05:01:23','2021-05-15 05:01:23','284c436e-6ca9-4f14-af8f-b3663f603944',1,'/page/about/careers/mental-health-care-navigator/','','66.249.69.33','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/about/careers/mental-health-care-navigator','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-15 05:01:23',0),(70157,'2021-05-15 05:07:08','2021-05-18 23:48:22','3032b405-9142-438b-94f9-11df3a4a639d',1,'/content/Document/Brisbane MIND Provider List October 2018(1).pdf','','157.55.39.35','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List October 2018(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 23:48:22',0),(70158,'2021-05-15 05:49:22','2021-05-15 05:49:22','16115fe5-183f-473f-80ea-da096e4dd5a6',1,'/page/health-professionals/Local Positions Vacant/vr-gp-required---teneriffe-family-doctors/','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/vr-gp-required---teneriffe-family-doctors','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-15 05:49:22',0),(70159,'2021-05-15 07:01:27','2021-05-15 07:01:27','d82b5865-64c2-4841-b8ca-7e12e59fac2b',1,'/page/news-and-events/events/upcoming/huntingtons-disease-palliative-care-forum','http://brisbanenorthphn.org.au/page/news-and-events/events/upcoming/huntingtons-disease-palliative-care-forum','35.210.165.115','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/events/upcoming/huntingtons-disease-palliative-care-forum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-15 07:01:27',0),(70160,'2021-05-15 07:06:42','2021-05-15 07:06:42','629025c9-2a13-4c50-8e36-e5d081c2e5a2',1,'/page/news-and-events/events/upcoming/annual-brisbane-north-community-aged-care-forum-2016/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/annual-brisbane-north-community-aged-care-forum-2016','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-15 07:06:42',0),(70161,'2021-05-15 07:20:41','2021-05-15 07:20:41','2de07ac7-ae7e-4bcb-87ca-b963d3e01f8e',1,'/page/news-and-events/events/upcoming/the-app-guide-to-emotions-and-autism-with-professor-tony-attwood','http://brisbanenorthphn.org.au/page/news-and-events/events/upcoming/the-app-guide-to-emotions-and-autism-with-professor-tony-attwood','35.210.165.115','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/news-and-events/events/upcoming/the-app-guide-to-emotions-and-autism-with-professor-tony-attwood','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-15 07:20:41',0),(70162,'2021-05-15 08:29:19','2021-05-15 08:31:52','3d4aea90-deaa-4e62-8bda-b72a40421862',1,'/page/publications/partners-in-health/partners-in-health-june-2017/','','173.252.87.5','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: page/publications/partners-in-health/partners-in-health-june-2017','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,11,'2021-05-15 08:31:52',0),(70163,'2021-05-15 09:23:13','2021-05-19 01:00:17','e98b71f7-80d9-4933-9f34-8f53d50ca97b',1,'/events/wesley-lifeforce-suicide-prevention-workshop-brisbane-north-phn-chermside-qld','','66.249.79.148','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: events/wesley-lifeforce-suicide-prevention-workshop-brisbane-north-phn-chermside-qld','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-19 01:00:17',0),(70164,'2021-05-15 09:40:55','2021-05-15 09:40:55','217f8c9e-8ce7-4b01-8d56-757b7ea462c5',1,'/page/news-and-events/events/upcoming/common-threads-summit/','','66.249.69.36','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/upcoming/common-threads-summit','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-15 09:40:55',0),(70165,'2021-05-15 10:51:23','2021-05-15 10:51:23','c6dbd8f7-fe79-4e63-b04f-364ec93e0c24',1,'/content/Document/Events/2019/NutritionSupportProgram-NorthLakes-20190413.pdf','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/2019/NutritionSupportProgram-NorthLakes-20190413.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-15 10:51:23',0),(70166,'2021-05-15 13:44:11','2021-05-15 13:44:11','954d3ef3-0fb4-485e-85fd-ec108e1f83d5',1,'/page/health-professionals/Local Positions Vacant/gp-required---united-medical-centre-caboolture/','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/gp-required---united-medical-centre-caboolture','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-15 13:44:11',0),(70167,'2021-05-15 14:24:50','2021-05-15 14:24:50','9317b156-a39e-4312-956c-eecaee0f25d2',1,'/content/Document/Templates/4.6/Specialists List_Maternity_4_6.pdf','','93.158.161.35','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','Template not found: content/Document/Templates/4.6/Specialists List_Maternity_4_6.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-15 14:24:50',0),(70168,'2021-05-15 15:09:30','2021-05-15 15:09:30','9af26b4a-c708-4c20-8ac3-fa7f9a7e3663',1,'/yearinreview/2018-19/wp-content/uploads/2018/11/Act-For-Kids-Logo.png','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: yearinreview/2018-19/wp-content/uploads/2018/11/Act-For-Kids-Logo.png','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-15 15:09:30',0),(70169,'2021-05-15 15:18:16','2021-05-18 22:35:46','ce7d1201-b1d8-4908-b857-72901a388982',1,'/content/Document/ed_travel.pdf','','157.55.39.116','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/ed_travel.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,3,'2021-05-18 22:35:46',0),(70170,'2021-05-15 15:55:30','2021-05-15 15:55:30','1ad7135c-25b0-4c57-bad6-2da573c81298',1,'/fr/model/maryburningwoman/','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: fr/model/maryburningwoman','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-15 15:55:30',0),(70171,'2021-05-15 16:30:48','2021-05-15 16:30:48','990aa50d-00cd-4caa-bf62-265cba5fbd62',1,'/yearinreview/2018-19/wp-content/uploads/2019/11/Refugee-Health-Connect.jpg','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: yearinreview/2018-19/wp-content/uploads/2019/11/Refugee-Health-Connect.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-15 16:30:48',0),(70172,'2021-05-15 19:25:48','2021-05-15 19:25:48','5282c3cc-f5ad-416d-a2bd-02fcfa0dd6ba',1,'/events/human-resources-and-industrial-relations-masterclass-practice-managers','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/human-resources-and-industrial-relations-masterclass-practice-managers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-15 19:25:48',0),(70173,'2021-05-15 20:30:26','2021-05-15 20:30:26','60f49ef7-188b-4a6e-b0c6-1b2cf7f2d8aa',1,'/sites/default/files/user-content/template_childdevel_md.rtf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: sites/default/files/user-content/template_childdevel_md.rtf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-15 20:30:26',0),(70174,'2021-05-15 20:38:58','2021-05-15 20:38:58','9b8c894f-d6a6-4c6d-835d-bdb7ba8b4345',1,'/yearinreview/2018-19/wp-content/uploads/2018/11/ECCQ-logo-portrait-768x778.jpg','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: yearinreview/2018-19/wp-content/uploads/2018/11/ECCQ-logo-portrait-768x778.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-15 20:38:58',0),(70175,'2021-05-15 20:41:20','2021-05-15 20:41:20','31e9a415-1fec-49b9-9296-af9a957eaaad',1,'/page/health-professionals/Local Positions Vacant/gp-required---strathpine/','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/gp-required---strathpine','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-15 20:41:20',0),(70176,'2021-05-15 22:19:50','2021-05-15 22:19:50','79b1e147-caec-4e6c-af3e-314a95aeea02',1,'/yearinreview/2018-19/wp-content/uploads/2018/11/ECCQ-logo-portrait.jpg','','207.46.13.54','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: yearinreview/2018-19/wp-content/uploads/2018/11/ECCQ-logo-portrait.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-15 22:19:50',0),(70177,'2021-05-15 22:33:26','2021-05-15 22:33:26','341e7e34-187c-4e4e-bdef-66ec50f7a5a9',1,'/events/rch-paediatric-grand-rounds-protracted-bacteria-bronchitis-what-it-and-what-it-means','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/rch-paediatric-grand-rounds-protracted-bacteria-bronchitis-what-it-and-what-it-means','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-15 22:33:26',0),(70178,'2021-05-15 22:44:23','2021-05-15 22:44:23','35b8d792-68f4-4922-920e-be21d4e5db1b',1,'/page/health-professionals/Local Positions Vacant/gp-required---sundoctors-skin-cancer-clinics/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/gp-required---sundoctors-skin-cancer-clinics','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-15 22:44:23',0),(70179,'2021-05-15 23:06:17','2021-05-15 23:06:17','bb1b3c44-050c-4b68-9dc5-f36abb9161e3',1,'/content/Document/Pathways/supporting self management node.pdf','','40.77.167.108','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/supporting self management node.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-15 23:06:17',0),(70180,'2021-05-15 23:24:20','2021-05-15 23:24:20','9e4776ba-5df8-487f-b1d3-94c90b68029c',1,'/content/Document/Brisbane MIND Provider List September 2016(5).pdf','','88.198.36.62','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:83.0) Gecko/20100101 Firefox/83.0','Template not found: content/Document/Brisbane MIND Provider List September 2016(5).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-15 23:24:20',0),(70181,'2021-05-15 23:59:46','2021-05-16 00:42:45','46269f9f-1b5d-4297-b4af-df2031176ff6',1,'/test/.env','','142.93.169.146','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: test/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 00:42:45',0),(70182,'2021-05-15 23:59:53','2021-05-16 00:42:51','303be2c3-7586-40dd-8a95-faefdcd7aa7f',1,'/sites/.env','','142.93.169.146','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: sites/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 00:42:51',0),(70183,'2021-05-15 23:59:55','2021-05-16 00:42:53','1d704330-c0bb-4ffc-a8de-7f20f847e84a',1,'/blog/.env','','142.93.169.146','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: blog/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 00:42:53',0),(70184,'2021-05-16 00:00:03','2021-05-16 00:43:00','f404cb5b-2353-40d4-af03-2d2cc8d42b5e',1,'/shop/.env','','142.93.169.146','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','Template not found: shop/.env','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 00:43:00',0),(70185,'2021-05-16 00:29:56','2021-05-16 00:29:56','4048205d-f802-4eaa-83e6-e8f83b008628',1,'/page/health-','','66.249.69.63','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-16 00:29:56',0),(70186,'2021-05-16 01:16:03','2021-05-16 01:16:03','2fbf8033-25ea-4a03-9de0-d1c30f20519b',1,'/yearinreview/2018-19/wp-content/uploads/2018/11/ECCQ-logo-portrait-1011x1024.jpg','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: yearinreview/2018-19/wp-content/uploads/2018/11/ECCQ-logo-portrait-1011x1024.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-16 01:16:03',0),(70187,'2021-05-16 01:48:46','2021-05-16 01:48:46','bac7b9ca-11d3-4315-8e49-5d096933a439',1,'/page/health-professionals/digital-health/my-health-record/about/what-are-the-benefits-of-my-health-record/','','66.249.69.63','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/digital-health/my-health-record/about/what-are-the-benefits-of-my-health-record','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-16 01:48:46',0),(70188,'2021-05-16 02:47:24','2021-05-16 02:47:24','f298ac14-9a2f-4fa2-98f6-dac68de56214',1,'/page/health-professionals/Local Positions Vacant/receptionist-required---young-minds-and-minds4health/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/receptionist-required---young-minds-and-minds4health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-16 02:47:24',0),(70189,'2021-05-16 04:47:41','2021-05-16 04:47:41','f18a64e2-5a7b-4304-a96b-4aee78989e2d',1,'/yearinreview/2018-19/wp-content/uploads/2018/11/Act-For-Kids-Logo-768x146.png','','40.77.167.36','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: yearinreview/2018-19/wp-content/uploads/2018/11/Act-For-Kids-Logo-768x146.png','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-16 04:47:41',0),(70190,'2021-05-16 04:51:38','2021-05-16 04:51:38','c587470b-7561-407b-9260-d0f9e71defb9',1,'/our-programs/aged-and-community-care/collaboratives/dist/swiper.js','','207.46.13.120','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','Template not found: our-programs/aged-and-community-care/collaboratives/dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-16 04:51:38',0),(70191,'2021-05-16 04:59:21','2021-05-16 04:59:21','ad56fa6c-74ca-4e96-9472-b4fd2c0a658e',1,'/content/Document/Media Releases/MR_Primary health budget measures welcomed_170511.pdf','','66.249.69.36','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/Media Releases/MR_Primary health budget measures welcomed_170511.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-16 04:59:21',0),(70192,'2021-05-16 05:19:59','2021-05-16 05:19:59','b6ded452-5a1a-4e9b-a22d-e828d3c1a8d1',1,'/content/Document/Events/Flyer - Womens Health Conference FINAL.pdf','','207.46.13.120','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/Flyer - Womens Health Conference FINAL.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-16 05:19:59',0),(70193,'2021-05-16 07:53:14','2021-05-16 07:55:16','c3e2299c-4512-49e8-aa07-f03c24393982',1,'/page/resources/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/resources','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 07:55:16',0),(70194,'2021-05-16 07:53:24','2021-05-16 07:55:21','3a272cd6-a622-4023-81b0-31771aef0067',1,'/page/resources/community-resources/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/resources/community-resources','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 07:55:21',0),(70195,'2021-05-16 07:53:34','2021-05-16 07:55:26','cad66884-a8d7-4ace-807a-38025db5a15f',1,'/page/resources/regional-plan/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/resources/regional-plan','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 07:55:26',0),(70196,'2021-05-16 07:53:44','2021-05-16 07:55:31','333b8fa3-0261-4341-8df8-cc0310c417d6',1,'/page/resources/workforce-resources/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/resources/workforce-resources','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 07:55:31',0),(70197,'2021-05-16 07:53:54','2021-05-16 07:55:35','028aa485-a0c4-4b3d-b407-744fd3e6c74f',1,'/page/services/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 07:55:35',0),(70198,'2021-05-16 07:54:04','2021-05-16 07:55:39','7d391a2f-63b1-4647-9e60-9f6db4073181',1,'/page/services/community-services/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/services/community-services','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 07:55:39',0),(70199,'2021-05-16 07:54:13','2021-05-16 07:55:44','9cf7c9b3-6fa2-4119-a2f6-33e394b73071',1,'/page/services/community-services/sp-care-pathways/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/services/community-services/sp-care-pathways','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 07:55:44',0),(70200,'2021-05-16 07:54:22','2021-05-16 07:55:48','b1665bec-8151-4a6a-bb0d-cdcd0150423f',1,'/page/services/general-practice-and-allied-health/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/services/general-practice-and-allied-health','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 07:55:48',0),(70201,'2021-05-16 07:54:31','2021-05-16 07:54:31','8ce2d694-a3a1-4fde-8166-1990c066af8e',1,'/page/services/interests/','','148.251.9.145','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/services/interests','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-16 07:54:31',0),(70202,'2021-05-16 07:54:41','2021-05-16 07:55:53','89d26612-a8c4-44f4-a934-4b16c56efe90',1,'/page/services/public-hospital-and-community-care/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/services/public-hospital-and-community-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 07:55:53',0),(70203,'2021-05-16 07:54:49','2021-05-16 07:55:57','d7cfc235-235f-492a-af7e-2feb6eb658d2',1,'/page/services/self-care-and-informal-support/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/services/self-care-and-informal-support','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 07:55:57',0),(70204,'2021-05-16 07:55:00','2021-05-16 07:56:02','f0f75df4-f078-48b7-99ae-502663185a8c',1,'/page/services/services-map/','','144.76.6.230','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)','Template not found: page/services/services-map','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 07:56:02',0),(70205,'2021-05-16 08:30:26','2021-05-16 08:30:26','c76ee5ba-6e9a-4c28-906d-f8084704eee7',1,'/page/health-professionals/local positions vacant/rn-required---kedron-wavell-medical-centre','http://brisbanenorthphn.org.au/page/health-professionals/local+positions+vacant/rn-required---kedron-wavell-medical-centre','35.210.18.89','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','Template not found: page/health-professionals/local positions vacant/rn-required---kedron-wavell-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-16 08:30:26',0),(70206,'2021-05-16 09:38:09','2021-05-16 09:38:09','ec9f3909-529f-465f-9e47-f2835bf31f6f',1,'/events/antenatal-sexual-health-kit-ask','','66.249.75.180','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: events/antenatal-sexual-health-kit-ask','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-16 09:38:09',0),(70207,'2021-05-16 10:29:18','2021-05-16 10:29:19','7c01560f-1350-41b2-85ed-0d05a10a11bd',1,'/our-programs/mental-health-services/youth-mental-health-services../dist/swiper.js','http://brisbanenorthphn.org.au','35.187.132.206','Mozilla/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US) AppEngine-Google; (+http://code.google.com/appengine; appid: s~virustotalcloud)','Template not found: our-programs/mental-health-services/youth-mental-health-services../dist/swiper.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 10:29:19',0),(70208,'2021-05-16 10:29:19','2021-05-16 10:29:19','d278c831-58eb-499e-a06c-5f352b32e8e2',1,'/our-programs/mental-health-services/youth-mental-health-services/dist/main.js','http://brisbanenorthphn.org.au','35.187.132.210','Mozilla/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US) AppEngine-Google; (+http://code.google.com/appengine; appid: s~virustotalcloud)','Template not found: our-programs/mental-health-services/youth-mental-health-services/dist/main.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 10:29:19',0),(70209,'2021-05-16 10:57:19','2021-05-16 10:57:19','89941794-99c8-4e05-8126-9c38bcafcc37',1,'/content/Document/Pathways/navigating_mnmhs_no_2_jan_2015.pdf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Pathways/navigating_mnmhs_no_2_jan_2015.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-16 10:57:19',0),(70210,'2021-05-16 12:19:19','2021-05-16 12:19:19','c8e36a2b-4e46-4359-bd2d-904116a74397',1,'/page/news-and-events/events/archive/the-changing-face-of-general-practice-opportunities-and-risks/','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/the-changing-face-of-general-practice-opportunities-and-risks','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-16 12:19:19',0),(70211,'2021-05-16 12:26:48','2021-05-16 12:26:48','08a19d92-6a79-4e66-ad4c-2cbc5f76e61f',1,'/yearinreview/2017-18/wp-content/uploads/2018/11/Our-year-in-GP-support.jpg','','66.249.69.33','Googlebot-Image/1.0','Template not found: yearinreview/2017-18/wp-content/uploads/2018/11/Our-year-in-GP-support.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-16 12:26:48',0),(70212,'2021-05-16 12:56:48','2021-05-16 12:56:48','3f380c10-28e6-47ab-8d9a-c925cbe38d2a',1,'/yearinreview/2017-18/wp-content/uploads/2018/11/iStock-851832858.jpg','','66.249.69.36','Googlebot-Image/1.0','Template not found: yearinreview/2017-18/wp-content/uploads/2018/11/iStock-851832858.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-16 12:56:48',0),(70213,'2021-05-16 12:58:04','2021-05-16 12:58:04','75911b07-0f6f-401f-90a2-c2fccbbca858',1,'/page/news-and-events/events/upcoming/use-of-my-health-record-in-acute-settings-for-hospital-pharmacy','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/events/upcoming/use-of-my-health-record-in-acute-settings-for-hospital-pharmacy','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-16 12:58:04',0),(70214,'2021-05-16 13:17:24','2021-05-16 13:17:24','4857d947-39cc-40ee-be39-85bba2079adc',1,'/contactSantos-Longhurst,','','80.72.4.100','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)','Template not found: contactSantos-Longhurst,','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-16 13:17:24',0),(70215,'2021-05-16 13:55:05','2021-05-16 13:55:05','cf4915a5-838d-4620-850f-58ab2e716196',1,'/page/health-professionals/Local Positions Vacant/general-practice-nurse-ascot-family-practice/','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/general-practice-nurse-ascot-family-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-16 13:55:05',0),(70216,'2021-05-16 14:08:27','2021-05-16 14:08:27','5146b250-b164-4639-adc5-c50b1380add2',1,'/content/Document/Media Releases/MR_TheEmergencyDepartmentisntalwaysyourbestoption_160628.pdf','','66.249.69.36','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Media Releases/MR_TheEmergencyDepartmentisntalwaysyourbestoption_160628.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-16 14:08:27',0),(70217,'2021-05-16 14:26:47','2021-05-16 14:26:47','24b3c555-ef67-43f9-8821-72fd6be2806a',1,'/yearinreview/2018-19/wp-content/uploads/2019/11/Supporting-frontline-healthcare-services_HERO.jpg','','66.249.69.33','Googlebot-Image/1.0','Template not found: yearinreview/2018-19/wp-content/uploads/2019/11/Supporting-frontline-healthcare-services_HERO.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-16 14:26:47',0),(70218,'2021-05-16 15:22:56','2021-05-18 09:37:06','50875a4a-753c-4800-a8a3-a14893215be4',1,'/events/non-ivf-fertility-treatments-by-monash-ivf','','40.77.167.15','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/non-ivf-fertility-treatments-by-monash-ivf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-18 09:37:06',0),(70219,'2021-05-16 16:04:53','2021-05-17 17:08:19','a8a2efb3-433f-4efc-b36b-6885d36d4267',1,'/page/health-professionals/Local Positions Vacant/general-practitioner-required---gp-and-travel-doctor/','','66.249.68.2','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner-required---gp-and-travel-doctor','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-17 17:08:19',0),(70220,'2021-05-16 16:07:31','2021-05-16 22:22:26','9f7747ec-65ed-4a72-99ca-f4983f2e1741',1,'/events/evidence-based-solutions-for-skin-injury-prevention-and-management-an-invite-for-saturday-15th-may-speakers-kerrie-coleman-and-monica-stankiewicz','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/evidence-based-solutions-for-skin-injury-prevention-and-management-an-invite-for-saturday-15th-may-speakers-kerrie-coleman-and-monica-stankiewicz','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 22:22:26',0),(70221,'2021-05-16 16:46:18','2021-05-16 16:46:18','ca41fc09-af5c-40e7-b260-c8d921ec8e51',1,'/content/Document/Pathw','','66.249.69.36','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Pathw','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-16 16:46:18',0),(70222,'2021-05-16 17:50:10','2021-05-16 17:50:10','bc2ce432-ce9c-4d52-b017-58c9065aafa9',1,'/events/bexsero-live','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/bexsero-live','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-16 17:50:10',0),(70223,'2021-05-16 18:00:13','2021-05-16 18:00:13','6184b580-792a-4da8-8924-012ff3170045',1,'/theme/assets/fileupload/index.php','http://www.google.com/','23.228.109.147','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2896.3 Safari/537.36','Template not found: theme/assets/fileupload/index.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-16 18:00:13',0),(70224,'2021-05-16 18:20:21','2021-05-16 18:20:21','354b78b6-6507-4957-846e-89192085f56f',1,'/page/news-and-events/events/upcoming/north-brisbane-mental-health-community-resource-expo-2015/','','66.220.149.111','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: page/news-and-events/events/upcoming/north-brisbane-mental-health-community-resource-expo-2015','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-16 18:20:21',0),(70225,'2021-05-16 19:11:38','2021-05-16 19:11:38','f5b0636b-b6a3-47ec-99c4-64e0e3747f9e',1,'/catalog/install/oscommerce.sql','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.2; Trident/4.0)','Template not found: catalog/install/oscommerce.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-16 19:11:38',0),(70226,'2021-05-16 19:11:40','2021-05-16 19:11:40','002b8ecb-2535-47a3-a107-cd72bf88fe17',1,'/install/oscommerce.sql','','185.153.196.198','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.2; Trident/4.0)','Template not found: install/oscommerce.sql','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-16 19:11:40',0),(70227,'2021-05-16 19:23:56','2021-05-18 21:14:53','9d8b6150-8720-4f6d-98ee-875aedf2aa5f',1,'/events/evidence-based-practice-webinar-anxiety-and-alcohol-use-what-clinicians-need-to-know','','157.55.39.98','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/evidence-based-practice-webinar-anxiety-and-alcohol-use-what-clinicians-need-to-know','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,5,'2021-05-18 21:14:53',0),(70228,'2021-05-16 20:33:32','2021-05-16 20:33:32','1de68ed2-db1b-4685-aea3-39ddb44cfd00',1,'/wp-admin/admin-ajax.php','','18.236.140.46','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36','Template not found: wp-admin/admin-ajax.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-16 20:33:32',0),(70229,'2021-05-16 22:31:03','2021-05-16 22:31:03','f4f9b866-9539-4f18-a13a-a554eb756d16',1,'/page/news-and-events/events/archive/mental-health-in-north-brisbane-and-moreton-bay-information-session---15-march-2016/','','207.46.13.59','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/archive/mental-health-in-north-brisbane-and-moreton-bay-information-session---15-march-2016','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-16 22:31:03',0),(70230,'2021-05-16 22:50:50','2021-05-16 22:50:50','52b2b71f-4c70-4cfb-ba6d-dc529051924c',1,'/content/Document/Pathways/INF_1908_GPLO Info Sh','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Pathways/INF_1908_GPLO Info Sh','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-16 22:50:50',0),(70231,'2021-05-17 00:53:30','2021-05-17 00:53:30','658cff65-b1a1-4878-b8bd-d8fd58b30c5e',1,'/our-programs/dGVhbS1jYX','','20.53.97.104','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','Template not found: our-programs/dGVhbS1jYX','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-17 00:53:30',0),(70232,'2021-05-17 01:38:40','2021-05-17 01:38:41','56248d00-7876-4eed-a78f-21944b629a58',1,'/covid19','','173.252.83.10','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: covid19','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,4,'2021-05-17 01:38:41',0),(70233,'2021-05-17 02:32:59','2021-05-17 02:32:59','297ef3f6-8de2-45c2-a10a-9d7979763921',1,'/content/Document/PD_ManagerHealthyAgeing_170808.pdf','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/PD_ManagerHealthyAgeing_170808.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-17 02:32:59',0),(70234,'2021-05-17 02:41:48','2021-05-17 02:41:48','65fb85e0-6cdd-476e-8196-3dd5e4556c8d',1,'/content/Document/Brisbane MIND Provider List January 2017(1).pdf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List January 2017(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-17 02:41:48',0),(70235,'2021-05-17 03:39:27','2021-05-17 03:39:27','4a8f1a46-9aca-4c16-bbc7-4d10e3d97151',1,'/page/home/featurettes/health-professionals','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/featurettes/health-professionals','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-17 03:39:27',0),(70236,'2021-05-17 03:56:51','2021-05-17 03:56:51','2570d978-326f-4f8d-9738-1f1a6cf1e31c',1,'/tel:07 3317 4040','https://www.google.com/','35.247.17.232','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 YaBrowser/19.9.0.1343 Yowser/2.5 Safari/537.36','Template not found: tel:07 3317 4040','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-17 03:56:51',0),(70237,'2021-05-17 04:35:30','2021-05-17 04:35:30','14171df6-5d7a-44db-9c6f-4bebc76de10b',1,'/page/health-professionals/Local Positions Vacant/vr-gp-required---the-hub-family-medical-centre/','','207.46.13.159','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/vr-gp-required---the-hub-family-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-17 04:35:30',0),(70238,'2021-05-17 05:54:19','2021-05-17 05:54:19','a0fe9485-eb49-4de5-ac32-fc3685e20c99',1,'/Telerik.Web.UI.WebResource.axd','','51.161.118.177','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36','Template not found: Telerik.Web.UI.WebResource.axd','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-17 05:54:19',0),(70239,'2021-05-17 05:54:27','2021-05-17 05:54:27','497cd88d-0f08-4be4-90db-038ede5da83b',1,'/Providers/HtmlEditorProviders/Telerik/Telerik.Web.UI.DialogHandler.aspx','','51.161.118.177','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36','Template not found: Providers/HtmlEditorProviders/Telerik/Telerik.Web.UI.DialogHandler.aspx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-17 05:54:27',0),(70240,'2021-05-17 05:54:42','2021-05-17 05:54:42','fc8ec1f5-8b9a-4a9f-813a-b1a73249f188',1,'/common/admin/Jobs2/Telerik.Web.UI.DialogHandler.aspx','','51.161.118.177','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36','Template not found: common/admin/Jobs2/Telerik.Web.UI.DialogHandler.aspx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-17 05:54:42',0),(70241,'2021-05-17 05:54:52','2021-05-17 05:54:52','ad630a15-35b8-41b4-aa29-9493b63b74aa',1,'/Telerik.Web.UI.DialogHandler.aspx','','51.161.118.177','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36','Template not found: Telerik.Web.UI.DialogHandler.aspx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-17 05:54:52',0),(70242,'2021-05-17 05:55:02','2021-05-17 05:55:02','40237dea-033b-4690-b40e-cd0706722d6b',1,'/App_Master/Telerik.Web.UI.DialogHandler.aspx','','51.161.118.177','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36','Template not found: App_Master/Telerik.Web.UI.DialogHandler.aspx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-17 05:55:02',0),(70243,'2021-05-17 05:55:21','2021-05-17 05:55:21','c7bfea96-88d1-4eed-9e22-d2c6fb440e06',1,'/DesktopModules/Admin/RadEditorProvider/DialogHandler.aspx','','51.161.118.177','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36','Template not found: DesktopModules/Admin/RadEditorProvider/DialogHandler.aspx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-17 05:55:21',0),(70244,'2021-05-17 05:55:34','2021-05-17 05:55:34','f59b7f85-03f2-4515-9cbf-22c67ebbf607',1,'/DesktopModules/TelerikWebUI/RadEditorProvider/Telerik.Web.UI.DialogHandler.aspx','','51.161.118.177','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36','Template not found: DesktopModules/TelerikWebUI/RadEditorProvider/Telerik.Web.UI.DialogHandler.aspx','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-17 05:55:34',0),(70245,'2021-05-17 06:56:44','2021-05-17 06:56:44','20606cc7-e250-415b-a3ee-4ba97b4fbc30',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---brisbane/','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---brisbane','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-17 06:56:44',0),(70246,'2021-05-17 07:20:43','2021-05-17 07:20:43','cbdcbd14-ebec-4e02-86c8-4df1a3a27707',1,'/content/Document/Position Descriptions/PD_PSO EngagementPlanning_190522.pdf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Position Descriptions/PD_PSO EngagementPlanning_190522.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-17 07:20:43',0),(70247,'2021-05-17 07:51:38','2021-05-17 07:51:38','6b905fa6-1fd9-4ca7-9c82-a451ddd09f56',1,'/content/Document/PD_TeamCareCoordinators_170515 PHN.pdf','','40.77.167.15','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/PD_TeamCareCoordinators_170515 PHN.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-17 07:51:38',0),(70248,'2021-05-17 08:17:10','2021-05-18 23:58:54','fded9eba-8169-4c47-965f-084c70f31695',1,'/jobs/service-navigation-coordinator-part-time','https://brisbanenorthphn.org.au/about/careers-1','103.87.254.78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36','Template not found: jobs/service-navigation-coordinator-part-time','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,20,'2021-05-18 23:58:54',0),(70249,'2021-05-17 08:52:17','2021-05-17 08:52:17','aca27db9-fb65-4f88-a54a-6b48c7652c85',1,'/content/document/position descriptions/pd_pso hr_170911.pdf','','207.46.13.159','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/document/position descriptions/pd_pso hr_170911.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-17 08:52:17',0),(70250,'2021-05-17 09:17:13','2021-05-17 09:17:13','5cfa24a3-5ff3-4f79-b98f-407da7e25220',1,'/content/Document/Pathways/C','','66.249.68.31','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Pathways/C','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-17 09:17:13',0),(70251,'2021-05-17 09:23:47','2021-05-17 09:23:47','f06ce014-646e-46bb-a064-94e815f43c90',1,'/page/about/commissioning/commissioning-principles','','114.119.152.231','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/about/commissioning/commissioning-principles','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-17 09:23:47',0),(70252,'2021-05-17 11:00:04','2021-05-17 11:00:04','321f289f-daf9-48fb-9764-a752141b2ec0',1,'/content/Document/Position Descriptions/PD_Service Navigation Officer_190522.pdf','','40.77.167.15','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Position Descriptions/PD_Service Navigation Officer_190522.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-17 11:00:04',0),(70253,'2021-05-17 12:27:18','2021-05-17 12:27:18','f0544a07-d870-46ee-9517-efea0c6cba85',1,'/content/Image/Page Banners/Banner_MHR_1812.jpg','','66.102.6.187','Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy)','Template not found: content/Image/Page Banners/Banner_MHR_1812.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-17 12:27:18',0),(70254,'2021-05-17 13:07:21','2021-05-17 13:07:21','79b1f288-68fc-4834-89fb-413a7d4f2993',1,'/page/health-professionals/Local Positions Vacant/registered-nurse-required---hamilton-medical-centre/','','207.46.13.142','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/registered-nurse-required---hamilton-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-17 13:07:21',0),(70255,'2021-05-17 17:37:48','2021-05-17 17:37:48','7909c89f-2ceb-49e2-8897-1edf468d7944',1,'/page/health-professionals/Local Positions Vacant/registered-nurse-required---mcdowall-village-medical-practice/','','207.46.13.74','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/registered-nurse-required---mcdowall-village-medical-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-17 17:37:48',0),(70256,'2021-05-17 18:08:13','2021-05-18 20:33:48','94ace61f-cd03-44d0-8a11-db74037bb3d8',1,'/page/publications/partners-in-health/august-2015/','','66.249.68.2','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/publications/partners-in-health/august-2015','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 20:33:48',0),(70257,'2021-05-17 19:05:41','2021-05-17 19:05:41','5905c454-1eae-4038-b703-392a0a499eac',1,'/content/Document/Brisbane MIND Provider List March 2019(2).pdf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List March 2019(2).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-17 19:05:41',0),(70258,'2021-05-17 19:23:00','2021-05-17 19:23:00','8cbf7111-e127-493c-ab31-b253b0d99538',1,'/events/emergency-cardiology-workshop','','207.46.13.74','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/emergency-cardiology-workshop','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-17 19:23:00',0),(70259,'2021-05-17 19:36:14','2021-05-17 19:36:14','730611fe-b84a-4904-90fd-94edd9873142',1,'/content/Document/PD_TrainerQualityLeadRAS_160106.pdf','','40.77.167.30','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/PD_TrainerQualityLeadRAS_160106.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-17 19:36:14',0),(70260,'2021-05-17 20:39:19','2021-05-17 20:39:19','6cd88e6f-8a7b-4b4a-b1a9-71976566538f',1,'/page/news-and-events/events/upcoming/young-people-and-drugs-dovetail/','','157.55.39.23','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/young-people-and-drugs-dovetail','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-17 20:39:19',0),(70261,'2021-05-17 21:16:24','2021-05-17 21:16:24','c532e5f6-71e4-4d52-a4a6-7755f63b57b8',1,'/page/health-professionals/Local Positions Vacant/vr-gp-required---burpengary-station-medical-centre/','','40.77.167.45','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/vr-gp-required---burpengary-station-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-17 21:16:24',0),(70262,'2021-05-17 21:19:42','2021-05-17 21:19:42','3829f1e9-3b14-4cdb-9168-721eb78b3101',1,'/events/cognitive-screening-in-practice','','157.55.39.35','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/cognitive-screening-in-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-17 21:19:42',0),(70263,'2021-05-17 22:02:37','2021-05-17 22:02:37','bcda3eca-c905-47f1-8b92-c6aac851d06c',1,'/events/wesley-hospital-cpd-evening-topic-intensive-care','','157.55.39.35','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/wesley-hospital-cpd-evening-topic-intensive-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-17 22:02:37',0),(70264,'2021-05-17 22:18:46','2021-05-17 22:18:46','c5bdd6f9-29cf-4b01-99e7-701efd465a6d',1,'/jobs/medical-receptionist-taigum','','207.46.13.74','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/medical-receptionist-taigum','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-17 22:18:46',0),(70265,'2021-05-17 23:06:47','2021-05-17 23:06:47','7da4a240-5e0a-4237-b082-872e4d4f5a89',1,'/content/Document/Alcohol and other drug services ','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Document/Alcohol and other drug services ','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-17 23:06:47',0),(70266,'2021-05-18 00:02:35','2021-05-18 00:02:35','3e8498c2-2186-4e2f-80e2-c8a901226e49',1,'/install/js/install.js','','103.37.3.58','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:48.0) Gecko/20100101 Firefox/48.0','Template not found: install/js/install.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 00:02:35',0),(70267,'2021-05-18 02:03:44','2021-05-18 02:03:44','f13acd02-1483-4791-ac57-768fc27b3413',1,'/yearinreview/wp-content/uploads/2018/11/iStock-851832858.jpg','','173.252.83.13','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: yearinreview/wp-content/uploads/2018/11/iStock-851832858.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 02:03:44',0),(70268,'2021-05-18 02:04:41','2021-05-18 02:04:41','0bf63015-ea03-4209-8596-c7f024f2161d',1,'/demo/js/common.js','','103.37.3.58','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:48.0) Gecko/20100101 Firefox/48.0','Template not found: demo/js/common.js','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 02:04:41',0),(70269,'2021-05-18 03:07:53','2021-05-18 03:07:53','66411b74-f3eb-44b1-a47f-46757bc51564',1,'/events/acute-care-seriously-ill-patients','','207.46.13.74','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/acute-care-seriously-ill-patients','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 03:07:53',0),(70270,'2021-05-18 03:11:15','2021-05-18 03:11:15','ee56eb87-37e2-42e1-88c4-dfd46a2f4793',1,'/page/about/careers/coordinator-team-care-coordination/','','157.55.39.35','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/about/careers/coordinator-team-care-coordination','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 03:11:15',0),(70271,'2021-05-18 03:28:47','2021-05-18 03:28:47','51a6123c-edb2-4469-9e1c-0ecfe36f9945',1,'/lisafirle/','','207.46.13.74','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: lisafirle','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 03:28:47',0),(70272,'2021-05-18 04:43:09','2021-05-18 18:36:27','13aba1c9-8ae0-4a74-91e6-7c6d593b2092',1,'/events/updates-in-the-management-of-complex-skin-cancers','','66.249.79.150','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: events/updates-in-the-management-of-complex-skin-cancers','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-18 18:36:27',0),(70273,'2021-05-18 05:09:24','2021-05-18 05:09:24','294370ca-64ce-49b6-90bf-5b65b9e69953',1,'/page/health-professionals/Local Positions Vacant/part-time-vr-general-practitioner-required---ferny-grove-chambers-medical-practice/','','40.77.167.22','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/part-time-vr-general-practitioner-required---ferny-grove-chambers-medical-practice','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 05:09:24',0),(70274,'2021-05-18 05:28:05','2021-05-18 05:28:05','0b84955f-1ac6-4394-9a60-f77f5c571497',1,'/events/working-refugees-training','','40.77.167.45','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/working-refugees-training','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 05:28:05',0),(70275,'2021-05-18 05:54:10','2021-05-18 05:54:10','dee673b7-fdf9-4e08-a77a-258bc4729268',1,'/_adminer.php','','91.241.19.175','intelx','Page not found.','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/web/Request.php',1314,1,'2021-05-18 05:54:10',0),(70276,'2021-05-18 05:54:11','2021-05-18 05:54:11','7d413fa5-dd7b-4e78-8d05-c9be24aa10d3',1,'/adminer/','','91.241.19.175','intelx','Template not found: adminer','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 05:54:11',0),(70277,'2021-05-18 05:54:14','2021-05-18 05:54:14','1649689c-76d1-4098-bd7b-3ea2c1417fb3',1,'/editor.php','','91.241.19.175','intelx','Template not found: editor.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 05:54:14',0),(70278,'2021-05-18 05:54:15','2021-05-18 05:54:15','0b413a20-ba89-4d7e-9b3e-a0c68b75ebdf',1,'/mysql.php','','91.241.19.175','intelx','Template not found: mysql.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 05:54:15',0),(70279,'2021-05-18 05:54:17','2021-05-18 05:54:17','836e75f9-c207-44b4-ad20-cbb45995add5',1,'/sql.php','','91.241.19.175','intelx','Template not found: sql.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 05:54:17',0),(70280,'2021-05-18 05:54:18','2021-05-18 05:54:18','efc94b1b-2b1e-4038-8a2e-a0430d55c0b4',1,'/wp-content/plugins/adminer/adminer.php','','91.241.19.175','intelx','Template not found: wp-content/plugins/adminer/adminer.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 05:54:18',0),(70281,'2021-05-18 05:57:30','2021-05-18 05:57:30','481d336d-b501-42f6-b44d-926de3c3035d',1,'/page/support/programs','','40.77.167.45','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/support/programs','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 05:57:30',0),(70282,'2021-05-18 06:26:01','2021-05-18 06:26:01','65b063ec-ae41-4e78-b0ca-723baca439ab',1,'/jobs/registered-or-endorsed-enrolled-nurse-2-days','','207.46.13.72','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/registered-or-endorsed-enrolled-nurse-2-days','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 06:26:01',0),(70283,'2021-05-18 06:56:56','2021-05-18 06:56:56','e9d552f7-a6cc-457a-a4c3-7f6cdae967d0',1,'/yearinreview/2017-18/wp-content/uploads/2018/11/Man-and-woman-1.jpeg','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/2017-18/wp-content/uploads/2018/11/Man-and-woman-1.jpeg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 06:56:56',0),(70284,'2021-05-18 07:33:48','2021-05-18 07:33:48','c121243e-ffdc-44d7-b746-40c83078afd2',1,'/content/Document/Position Descriptions/PD_EventsCommOfficer_190509.pdf','','66.249.68.29','Googlebot/2.1 (+http://www.google.com/bot.html)','Template not found: content/Document/Position Descriptions/PD_EventsCommOfficer_190509.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 07:33:48',0),(70285,'2021-05-18 07:44:58','2021-05-18 07:44:58','714440b3-13d3-4ace-ad59-6129f7c1a6b8',1,'/page/health-professionals/Local Positions Vacant/practice-nurse---brendale/','','40.77.167.15','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/practice-nurse---brendale','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 07:44:58',0),(70286,'2021-05-18 13:45:21','2021-05-18 13:45:21','6cca9989-503f-4574-8930-fd73f8fe7516',1,'/page/health-professionals/Local Positions Vacant/casual-medical-receptionist-required---holdsworth-house-medical-brisbane/','','157.55.39.129','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/casual-medical-receptionist-required---holdsworth-house-medical-brisbane','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 13:45:21',0),(70287,'2021-05-18 14:00:17','2021-05-18 14:00:17','8ad5f7b1-42ce-4f9c-a5b3-7f7b9a6198f1',1,'/jobs/fulltime-part-time-vr-gp-bracken-ridge-family-practice-in-north-brisbane','','157.55.39.35','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: jobs/fulltime-part-time-vr-gp-bracken-ridge-family-practice-in-north-brisbane','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 14:00:17',0),(70288,'2021-05-18 14:03:32','2021-05-18 14:03:32','c26b4884-dad2-4b1b-9959-0c7c627d8fd9',1,'/content/Image/web_banner_mentalhealth.jpg','','66.249.79.148','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: content/Image/web_banner_mentalhealth.jpg','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 14:03:32',0),(70289,'2021-05-18 14:46:07','2021-05-18 14:46:07','d28067db-2b85-4bf7-aad9-7fbd712d81ee',1,'/events/teaching-and-preceptoring-nurses','','40.77.167.15','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/teaching-and-preceptoring-nurses','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 14:46:07',0),(70290,'2021-05-18 16:30:16','2021-05-18 16:30:16','92defa36-ba5e-494a-ab03-00a89cd08665',1,'/assets/elfinder/connectors/php/connector.php','http://www.google.com/','23.228.109.147','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2896.3 Safari/537.36','Template not found: assets/elfinder/connectors/php/connector.php','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 16:30:16',0),(70291,'2021-05-18 16:30:43','2021-05-18 16:30:43','0441cc7f-5dd1-4bbf-b90e-341f6e5e43f0',1,'/page/health-professionals/Local Positions Vacant/medical-receptionist-required---everton-hills-medical-centre/','','157.55.39.129','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/medical-receptionist-required---everton-hills-medical-centre','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 16:30:43',0),(70292,'2021-05-18 16:33:15','2021-05-18 16:33:15','f68b707e-2d99-4969-bc97-fa4b253c542d',1,'/page/home/quicklinks/view-our-latest-media-releases','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/home/quicklinks/view-our-latest-media-releases','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 16:33:15',0),(70293,'2021-05-18 16:37:08','2021-05-18 16:37:08','c177eb33-f8f1-435b-bce8-9209dc57d1ac',1,'/page/news-and-events/latest-news/health-alert-novel-coronavirus','','114.119.136.175','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/health-alert-novel-coronavirus','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 16:37:08',0),(70294,'2021-05-18 17:27:23','2021-05-18 17:27:23','577b73a2-d668-4067-a5f2-67af90928185',1,'/page/news-and-events/events/archive/immunisation-catch-up-events-for-practice-nurses---lutwyche/','','66.249.68.29','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: page/news-and-events/events/archive/immunisation-catch-up-events-for-practice-nurses---lutwyche','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 17:27:23',0),(70295,'2021-05-18 17:31:41','2021-05-18 17:31:41','43f9554f-ab03-4560-a195-2abbc6c8b40f',1,'/page/health-professionals/Local Positions Vacant/gp-vr-brisbane-northside/','','157.55.39.98','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/health-professionals/Local Positions Vacant/gp-vr-brisbane-northside','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 17:31:41',0),(70296,'2021-05-18 17:38:54','2021-05-18 17:38:54','f7143017-6b9a-4354-af68-a3fd1ef6ad1f',1,'/events/private-practice-3-day-comprehensive','','40.77.167.15','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/private-practice-3-day-comprehensive','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 17:38:54',0),(70297,'2021-05-18 19:20:13','2021-05-18 19:20:13','f264be9d-bdb6-4034-9c03-2be4b04a2430',1,'/content/Document/Events/AAPMPMED_Brisbane_2017.pdf','','40.77.167.15','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Events/AAPMPMED_Brisbane_2017.pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 19:20:13',0),(70298,'2021-05-18 19:22:42','2021-05-18 19:22:42','00aadc19-1a35-4adb-b7ba-3ff5e0b3f90e',1,'/page/news-and-events/latest-news/invitation-to-register-for-gp-to-gp-referrals','','114.119.157.139','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/invitation-to-register-for-gp-to-gp-referrals','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 19:22:42',0),(70299,'2021-05-18 21:27:24','2021-05-18 21:27:24','989efa35-c4c0-4805-8645-79906cbc07ed',1,'/page/news-and-events/events/upcoming/palliative-care-queensland-2016---2-day-conference/','','40.77.167.15','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: page/news-and-events/events/upcoming/palliative-care-queensland-2016---2-day-conference','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 21:27:24',0),(70300,'2021-05-18 21:29:54','2021-05-18 21:29:54','fbc661b4-78c2-4d5d-a074-1d0794f7d705',1,'/events/telehealth-in-the-covid-19-era','','66.249.79.148','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.97 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','Template not found: events/telehealth-in-the-covid-19-era','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 21:29:54',0),(70301,'2021-05-18 22:01:43','2021-05-18 22:01:43','47d6773f-9cec-4394-9d35-6e256ab90291',1,'/events/cpr-workshops-part-2-4','','157.55.39.129','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/cpr-workshops-part-2-4','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 22:01:43',0),(70302,'2021-05-18 23:07:15','2021-05-18 23:07:15','469a6477-d2d0-4430-93dc-925500ef67ab',1,'/page/news-and-events/latest-news/metro-north-health-forum-highlights-hidden-epidemic-in-maternity-care','','114.119.157.54','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: page/news-and-events/latest-news/metro-north-health-forum-highlights-hidden-epidemic-in-maternity-care','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 23:07:15',0),(70303,'2021-05-18 23:12:01','2021-05-18 23:12:01','6e67faaf-b172-40f6-9d33-89e86f41e2b1',1,'/content/Image/Aged','','114.119.128.57','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: content/Image/Aged','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 23:12:01',0),(70304,'2021-05-18 23:14:09','2021-05-18 23:14:09','6c6db58a-fb59-48fa-95f7-e643b93f239d',1,'//secure/ManageFilters.jspa','','35.163.2.156','Go-http-client/1.1','Template not found: secure/ManageFilters.jspa','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 23:14:09',0),(70305,'2021-05-18 23:14:09','2021-05-18 23:14:09','dfb72038-6092-4958-9528-acc5d0191af4',1,'/.aws/config','','35.163.2.156','Go-http-client/1.1','Template not found: .aws/config','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 23:14:09',0),(70306,'2021-05-18 23:14:10','2021-05-18 23:14:10','57c0ef38-caff-4ad7-9053-e68bec7bc9d0',1,'/config/databases.yml','','35.163.2.156','Go-http-client/1.1','Template not found: config/databases.yml','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 23:14:10',0),(70307,'2021-05-18 23:14:10','2021-05-18 23:14:10','a9689d6a-cc4a-4c3c-9210-524b280368ac',1,'/plugins/servlet/oauth/users/icon-uri','','35.163.2.156','Go-http-client/1.1','Template not found: plugins/servlet/oauth/users/icon-uri','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 23:14:10',0),(70308,'2021-05-18 23:14:11','2021-05-18 23:14:11','6543307a-4ae8-4bed-bc2d-0b262f1d8ef3',1,'/id_rsa','','35.163.2.156','Go-http-client/1.1','Template not found: id_rsa','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 23:14:11',0),(70309,'2021-05-18 23:14:12','2021-05-18 23:14:12','e42776bf-7fe8-425b-82c4-a2f51ffcc448',1,'//plugins/servlet/gadgets/makeRequest','','35.163.2.156','Go-http-client/1.1','Template not found: plugins/servlet/gadgets/makeRequest','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 23:14:12',0),(70310,'2021-05-18 23:14:13','2021-05-18 23:14:13','a8114ff1-f198-4d9b-ad5c-b4ef2503376c',1,'/jira/plugins/servlet/oauth/users/icon-uri','','35.163.2.156','Go-http-client/1.1','Template not found: jira/plugins/servlet/oauth/users/icon-uri','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 23:14:13',0),(70311,'2021-05-18 23:14:13','2021-05-18 23:14:13','a256fdab-4663-454e-9526-904791095969',1,'/plugins/servlet/Wallboard/','','35.163.2.156','Go-http-client/2.0','Template not found: plugins/servlet/Wallboard','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 23:14:13',0),(70312,'2021-05-18 23:14:13','2021-05-18 23:14:13','25d3f7cd-66fa-468e-bf11-b4b87ef73a83',1,'/id_dsa','','35.163.2.156','Go-http-client/1.1','Template not found: id_dsa','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 23:14:13',0),(70313,'2021-05-18 23:14:13','2021-05-18 23:14:13','2712deff-a1c7-4aef-94b8-cac6d3f3f53e',1,'//jira/plugins/servlet/gadgets/makeRequest','','35.163.2.156','Go-http-client/1.1','Template not found: jira/plugins/servlet/gadgets/makeRequest','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 23:14:13',0),(70314,'2021-05-18 23:14:13','2021-05-18 23:14:13','d7b7721b-23cd-420f-8160-c21332a5b29d',1,'/.ssh/id_rsa','','35.163.2.156','Go-http-client/1.1','Template not found: .ssh/id_rsa','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 23:14:13',0),(70315,'2021-05-18 23:14:14','2021-05-18 23:14:14','aa186d91-0d6a-4f1f-bff5-ba9513f85560',1,'/.ssh/id_dsa','','35.163.2.156','Go-http-client/1.1','Template not found: .ssh/id_dsa','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-18 23:14:14',0),(70316,'2021-05-19 00:02:00','2021-05-19 00:02:00','8708494d-a431-4e72-b4be-40869e535d5a',1,'/page/news-and-events/events/upcoming/icif-copd-project-education-for-practice-nurses/','','173.252.83.3','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)','Template not found: page/news-and-events/events/upcoming/icif-copd-project-education-for-practice-nurses','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-19 00:02:00',0),(70317,'2021-05-19 00:29:12','2021-05-19 00:29:15','009944fe-3217-4825-9667-81fac468858d',1,'/page/news-and-events/latest-news/metro-','','51.255.119.240','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0','Template not found: page/news-and-events/latest-news/metro-','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-19 00:29:15',0),(70318,'2021-05-19 00:29:13','2021-05-19 00:29:16','649e06df-35b6-4491-b729-5750ffcc6e8a',1,'/content/Document/Aged and','','193.70.79.97','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/601.7.7 (KHTML, like Gecko) Version/9.1.2 Safari/601.7.7','Template not found: content/Document/Aged and','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-19 00:29:16',0),(70319,'2021-05-19 00:29:13','2021-05-19 00:29:17','5f082be8-3dd2-4ebb-88b9-8f412cc97dc4',1,'/content/','','54.38.153.149','Mozilla/5.0 (Linux; Android 5.0; SAMSUNG SM-G900F Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/3.0','Template not found: content','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,2,'2021-05-19 00:29:17',0),(70320,'2021-05-19 00:39:31','2021-05-19 00:39:31','f2d94715-ac31-4717-a7d8-daa1f81d660a',1,'/content/Document/Brisbane MIND Provider List December 2016(1).pdf','','157.55.39.129','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: content/Document/Brisbane MIND Provider List December 2016(1).pdf','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-19 00:39:31',0),(70321,'2021-05-19 01:10:23','2021-05-19 01:10:23','6825949c-5f46-4955-990a-3d40fda6e4e2',1,'/page/health-professionals/Local Positions Vacant/general-practitioner---st-lucia/','','17.121.112.167','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','Template not found: page/health-professionals/Local Positions Vacant/general-practitioner---st-lucia','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-19 01:10:23',0),(70322,'2021-05-19 01:36:54','2021-05-19 01:36:54','6a3951d1-af13-4f0e-b7ae-3c8fb1007a99',1,'/page/health-professionals/Local Positions Vacant/practice-manager---nundah/','','17.121.112.225','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)','Template not found: page/health-professionals/Local Positions Vacant/practice-manager---nundah','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-19 01:36:54',0),(70323,'2021-05-19 01:41:05','2021-05-19 01:41:05','e74ef1df-5b83-46bd-a782-666b1be99ee8',1,'/events/hepatitis-b-s100-prescriber-course-2','','157.55.39.35','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','Template not found: events/hepatitis-b-s100-prescriber-course-2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-19 01:41:05',0),(70324,'2021-05-19 01:41:55','2021-05-19 01:41:55','ac247836-a35c-401d-8eac-12fa2051402a',1,'/yearinreview/closing-the-gap-in-indigenous-health/www.brisbanenorthphn.org.au','','114.119.128.196','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','Template not found: yearinreview/closing-the-gap-in-indigenous-health/www.brisbanenorthphn.org.au','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,1,'2021-05-19 01:41:55',0),(70325,'2021-05-19 03:00:20','2021-05-19 03:02:39','9d978df5-ea36-415d-90be-03feeae1daa2',1,'/events/bWF0ZXJuaX','','20.37.20.245','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36','Template not found: events/bWF0ZXJuaX','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,57,'2021-05-19 03:02:39',0),(70326,'2021-05-19 03:00:28','2021-05-19 03:02:27','af594a67-b74c-4ad0-9a44-2cdf0a2f1044',1,'/news/dGFyZ2V0ZW','','20.46.108.52','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.87 Safari/537.36','Template not found: news/dGFyZ2V0ZW','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,17,'2021-05-19 03:02:27',0),(70327,'2021-05-19 03:00:28','2021-05-19 03:02:27','d544c71b-f231-497a-9c4d-4718de5ebf1a',1,'/news/Zm9jdXMtb2','','20.46.108.52','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.87 Safari/537.36','Template not found: news/Zm9jdXMtb2','/var/www/vhosts/brisbanenorthphn.org.au/httpdocs/vendor/craftcms/cms/src/controllers/TemplatesController.php',92,20,'2021-05-19 03:02:27',0);
/*!40000 ALTER TABLE `retour_stats` 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 (11303,16571,1,1,''),(11304,16571,1,2,'Applied “Draft 1”'),(11305,16571,1,3,''),(11306,16571,1,4,'Applied “Draft 1”'),(11307,16571,1,5,''),(11308,16571,1,6,''),(11309,16571,1,7,'Applied “Draft 1”'),(11310,16571,1,8,''),(11311,16571,1,9,'Applied “Draft 1”'),(11312,16571,1,10,'Applied “Draft 1”'),(11313,16571,1,11,'Applied “Draft 1”'),(11314,16571,1,12,'Applied “Draft 1”'),(11315,16571,1,13,''),(11316,16571,1,14,''),(11317,16571,1,15,''),(11318,16571,1,16,''),(11319,16828,1,1,''),(11320,16828,1,2,''),(11321,16828,1,3,''),(11322,16828,1,4,''),(11323,16828,1,5,''),(11324,16828,1,6,''),(11325,16828,1,7,''),(11326,16828,1,8,''),(11327,16828,1,9,''),(11373,17603,1,1,NULL),(11374,17608,1,1,NULL),(11375,17611,1,1,NULL),(11376,17613,1,1,NULL),(11377,17615,1,1,NULL),(11378,17617,1,1,NULL),(11379,17621,1,1,NULL),(11380,17623,1,1,NULL),(11381,17626,1,1,NULL),(11382,17628,1,1,NULL),(11383,17631,1,1,NULL),(11384,17633,1,1,NULL),(11385,17635,1,1,NULL),(11386,17638,1,1,NULL),(11387,17642,1,1,NULL),(11388,17644,1,1,NULL),(11389,17646,1,1,NULL),(11390,17648,1,1,NULL),(11391,17650,1,1,NULL),(11392,17652,1,1,NULL),(11393,17654,1,1,NULL),(11394,17660,1,1,NULL),(11395,17662,1,1,NULL),(11396,17664,1,1,NULL),(11397,17666,1,1,NULL),(11398,17668,1,1,NULL),(11399,17670,1,1,NULL),(11400,17672,1,1,NULL),(11401,17674,1,1,NULL),(11402,17676,1,1,NULL),(11403,17678,1,1,NULL),(11404,17680,1,1,NULL),(11405,17682,1,1,NULL),(11406,17684,1,1,NULL),(11407,17686,1,1,NULL),(11408,17688,1,1,NULL),(11409,17690,1,1,NULL),(11410,17692,1,1,NULL),(11425,17692,1,2,''),(11426,17690,1,2,''),(11427,17688,1,2,''),(11428,17686,1,2,''),(11429,17684,1,2,''),(11430,17682,1,2,''),(11431,17680,1,2,''),(11432,17678,1,2,''),(11433,17676,1,2,''),(11434,17674,1,2,''),(11435,17672,1,2,''),(11436,17670,1,2,''),(11437,17668,1,2,''),(11438,17666,1,2,''),(11439,17664,1,2,''),(11440,17662,1,2,''),(11441,17660,1,2,''),(11442,17654,1,2,''),(11443,17652,1,2,''),(11444,17648,1,2,''),(11445,17650,1,2,''),(11446,17646,1,2,''),(11447,17644,1,2,''),(11448,17635,1,2,''),(11449,17642,1,2,''),(11450,17638,1,2,''),(11451,17633,1,2,''),(11452,17631,1,2,''),(11453,17628,1,2,''),(11454,17626,1,2,''),(11455,17621,1,2,''),(11456,17623,1,2,''),(11457,17617,1,2,''),(11458,17615,1,2,''),(11459,17613,1,2,''),(11460,17611,1,2,''),(11461,17608,1,2,''),(11462,17603,1,2,''),(11470,16571,1,17,''),(11471,16828,1,10,''),(11472,16828,1,11,'Applied “Draft 1”'),(11473,16828,1,12,''),(11474,16828,1,13,''),(11475,16828,1,14,''),(11476,16828,1,15,'Applied “Draft 1”'),(11477,16828,1,16,''),(11478,16828,1,17,'Applied “Draft 1”'),(11479,18109,1,1,''),(11480,18109,1,2,'Applied “Draft 1”'),(11481,18109,1,3,''),(11482,18122,1,1,''),(11483,18122,1,2,''),(11484,18126,1,1,''),(11485,18126,1,2,''),(11488,18139,1,1,''),(11489,18139,1,2,''),(11490,18142,1,1,''),(11491,18142,1,2,''),(11494,18156,1,1,''),(11495,18156,1,2,''),(11496,18164,1,1,''),(11497,18164,1,2,''),(11498,18168,1,1,''),(11499,18168,1,2,''),(11500,18176,1,1,''),(11501,18176,1,2,''),(11506,18109,1,4,'Applied “Draft 1”'),(11507,18109,1,5,''),(11508,18122,1,3,'Applied “Draft 1”'),(11509,18122,1,4,'Applied “Draft 1”'),(11510,18122,1,5,''),(11511,18109,1,6,''),(11512,18122,1,6,''),(11513,18126,1,3,'Applied “Draft 1”'),(11514,18126,1,4,''),(11515,18156,1,3,'Applied “Draft 1”'),(11516,18156,1,4,''),(11517,18122,1,7,'Applied “Draft 1”'),(11518,18122,1,8,''),(11519,18109,1,7,'Applied “Draft 1”'),(11520,18109,1,8,''),(11534,19177,19176,1,NULL),(11535,19181,1,1,''),(11536,19181,1,2,''),(11537,19181,1,3,''),(11538,19188,1,1,''),(11539,19188,1,2,''),(11540,19192,19191,1,NULL),(11541,19192,19191,2,NULL),(11542,19192,19191,3,NULL),(11544,19200,19197,1,NULL),(11545,19200,19197,2,NULL),(11546,19200,19197,3,NULL),(11547,19200,19197,4,NULL),(11548,19200,19197,5,NULL),(11549,19200,19197,6,NULL),(11550,19200,19197,7,NULL),(11551,19200,19197,8,NULL),(11552,19200,19197,9,NULL),(11553,19200,19197,10,NULL),(11554,19200,19197,11,NULL),(11555,19200,19197,12,NULL),(11556,19200,19197,13,NULL),(11557,19200,19197,14,NULL),(11558,19200,19197,15,NULL),(11559,19200,19197,16,NULL),(11560,19200,19197,17,NULL),(11561,19200,19197,18,NULL),(11562,19200,19197,19,NULL),(11563,19200,19197,20,NULL),(11564,19200,19197,21,NULL),(12487,19222,17875,923,NULL),(12488,19222,17875,924,NULL),(12489,19222,17875,925,NULL),(12490,19222,17875,926,NULL),(12491,19222,17875,927,NULL),(12492,19222,17875,928,NULL),(12493,19222,17875,929,NULL),(12494,19222,17875,930,NULL),(12495,19222,17875,931,NULL),(12496,19222,17875,932,NULL),(12497,19222,17875,933,NULL),(12498,19222,17875,934,NULL),(12499,19222,17875,935,NULL),(12500,19222,17875,936,NULL),(12501,19222,17875,937,NULL),(12502,19222,17875,938,NULL),(12503,19222,17875,939,NULL),(12504,19222,17875,940,NULL),(12505,19222,17875,941,NULL),(12506,19222,17875,942,NULL),(12507,19222,17875,943,NULL),(12508,19222,17875,944,NULL),(12509,19222,17875,945,NULL),(12510,19222,17875,946,NULL),(12511,19222,17875,947,NULL),(12512,19222,17875,948,NULL),(12513,19222,17875,949,NULL),(12514,19222,17875,950,NULL),(12515,19222,17875,951,NULL),(12516,19222,17875,952,NULL),(12517,19222,17875,953,NULL),(12518,19222,17875,954,NULL),(12519,19222,17875,955,NULL),(12520,19222,17875,956,NULL),(12521,19222,17875,957,NULL),(12522,19222,17875,958,NULL),(12523,19222,17875,959,NULL),(12524,19222,17875,960,NULL),(12525,19222,17875,961,NULL),(12526,19222,17875,962,NULL),(12527,19222,17875,963,NULL),(12528,19222,17875,964,NULL),(12529,19222,17875,965,NULL),(12530,19222,17875,966,NULL),(12531,19222,17875,967,NULL),(12532,19222,17875,968,NULL),(12533,19222,17875,969,NULL),(12534,19222,17875,970,NULL),(12535,19222,17875,971,NULL),(12536,19222,17875,972,NULL),(12731,21297,1,1,NULL),(12732,21297,1,2,NULL),(12733,21297,1,3,'Applied “Draft 1”'),(12734,21297,1,4,'Applied “Draft 1”'),(12735,21297,1,5,''),(12794,21297,1,6,NULL),(12795,21297,1,7,'Applied “Draft 1”'),(12796,21297,1,8,''),(12797,21297,1,9,''),(12798,21297,1,10,''),(12799,21297,1,11,''),(12800,20379,1,42,''),(12801,20379,1,43,''),(12802,20379,1,44,''),(12803,20379,1,45,''),(12804,20379,1,46,''),(12805,20379,1,47,'Applied “Draft 1”'),(12806,21297,1,12,''),(12807,16571,1,18,''),(12808,16828,1,18,'Applied “Draft 1”'),(12809,18126,1,5,'Applied “Draft 1”'),(12810,18139,1,3,'Applied “Draft 1”'),(12811,18142,1,3,'Applied “Draft 1”'),(12812,18142,1,4,'Applied “Draft 1”'),(12813,18139,1,4,'Applied “Draft 1”'),(12814,18156,1,5,'Applied “Draft 1”'),(12815,18156,1,6,'Applied “Draft 1”'),(12816,18168,1,3,'Applied “Draft 1”'),(12817,18168,1,4,'Applied “Draft 1”'),(12818,22210,1,1,''),(12819,22210,1,2,'Applied “Draft 1”'),(12820,22210,1,3,'Applied “Draft 1”'),(12821,22210,1,4,'Applied “Draft 1”'),(12822,22210,1,5,'Applied “Draft 1”'),(12823,22210,1,6,''),(12824,22210,1,7,'Applied “Draft 1”'),(12825,22210,1,8,'Applied “Draft 1”'),(12826,22210,1,9,'Applied “Draft 1”'),(12827,22210,1,10,'Applied “Draft 1”'),(12828,22210,1,11,''),(12829,22210,1,12,'Applied “Draft 1”'),(12830,18139,1,5,'Applied “Draft 1”'),(12831,18142,1,5,'Applied “Draft 1”'),(12832,18168,1,5,'Applied “Draft 1”'),(12833,18156,1,7,'Applied “Draft 1”'),(12834,18156,1,8,''),(12835,18126,1,6,'Applied “Draft 1”'),(12836,18122,1,9,'Applied “Draft 1”'),(12837,18109,1,9,'Applied “Draft 1”'),(12838,18109,1,10,''),(12839,16828,1,19,'Applied “Draft 1”'),(12840,16828,1,20,'Applied “Draft 1”'),(12841,16828,1,21,'Applied “Draft 1”'),(12842,18122,1,10,'Applied “Draft 1”'),(12843,18122,1,11,'Applied “Draft 1”'),(12844,22210,1,13,'Applied “Draft 1”'),(12845,22210,1,14,'Applied “Draft 1”'),(12846,22210,1,15,''),(12847,22210,1,16,'Applied “Draft 1”'),(12848,22210,1,17,'Applied “Draft 1”'),(12849,22210,1,18,'Applied “Draft 1”'),(12850,21297,1,13,''),(17826,20195,1,225,NULL),(17827,20195,1,226,NULL),(17828,20195,1,227,NULL),(17829,20195,1,228,NULL),(17830,20195,1,229,NULL),(17831,20195,1,230,NULL),(17832,20195,1,231,NULL),(17833,20195,1,232,NULL),(17834,20195,1,233,NULL),(17835,20195,1,234,NULL),(17836,20195,1,235,NULL),(17837,20195,1,236,NULL),(17838,20195,1,237,NULL),(17839,20195,1,238,NULL),(17840,20195,1,239,NULL),(17841,20195,1,240,NULL),(17842,20195,1,241,NULL),(17843,22210,1,19,'Applied “Draft 1”'),(17857,17692,1,3,'Applied “Draft 1”'),(17858,17690,1,3,'Applied “Draft 1”'),(17859,17690,1,4,''),(17860,17688,1,3,'Applied “Draft 1”'),(17861,17686,1,3,'Applied “Draft 1”'),(17862,17684,1,3,'Applied “Draft 1”'),(17863,17682,1,3,'Applied “Draft 1”'),(17864,17682,1,4,'Applied “Draft 1”'),(17865,17680,1,3,'Applied “Draft 1”'),(17866,17690,1,5,'Applied “Draft 1”'),(17867,17686,1,4,'Applied “Draft 1”'),(17868,17686,1,5,'Applied “Draft 1”'),(17869,17684,1,4,'Applied “Draft 1”'),(17870,17690,1,6,'Applied “Draft 1”'),(17871,17680,1,4,'Applied “Draft 1”'),(17872,17680,1,5,'Applied “Draft 1”'),(17873,17680,1,6,'Applied “Draft 1”'),(17874,17682,1,5,'Applied “Draft 1”'),(17875,17682,1,6,''),(17877,17680,1,7,'Applied “Draft 1”'),(17878,17688,1,4,'Applied “Draft 1”'),(17879,17686,1,6,'Applied “Draft 1”'),(17880,17684,1,5,'Applied “Draft 1”'),(17887,17692,1,4,''),(17893,17692,1,5,'Applied “Draft 1”'),(17894,17690,1,7,'Applied “Draft 1”'),(17895,17690,1,8,'Applied “Draft 1”'),(17905,17692,1,6,''),(17906,17690,1,9,''),(17907,17688,1,5,'Applied “Draft 1”'),(17908,17688,1,6,''),(17909,17688,1,7,''),(17910,17686,1,7,'Applied “Draft 1”'),(17911,17684,1,6,'Applied “Draft 1”'),(17912,17682,1,7,'Applied “Draft 1”'),(17913,17680,1,8,'Applied “Draft 1”'),(17914,17678,1,3,'Applied “Draft 1”'),(17915,17676,1,3,'Applied “Draft 1”'),(17916,17674,1,3,'Applied “Draft 1”'),(17917,17674,1,4,'Applied “Draft 1”'),(17918,17672,1,3,'Applied “Draft 1”'),(17919,17670,1,3,'Applied “Draft 1”'),(17920,17668,1,3,'Applied “Draft 1”'),(17921,17666,1,3,'Applied “Draft 1”'),(17922,17666,1,4,'Applied “Draft 1”'),(17923,17664,1,3,'Applied “Draft 1”'),(17924,17662,1,3,'Applied “Draft 1”'),(17925,17660,1,3,'Applied “Draft 1”'),(17926,17654,1,3,'Applied “Draft 1”'),(17927,17652,1,3,'Applied “Draft 1”'),(17928,17648,1,3,'Applied “Draft 1”'),(17929,17650,1,3,'Applied “Draft 1”'),(17930,17646,1,3,'Applied “Draft 1”'),(17931,17644,1,3,'Applied “Draft 1”'),(17932,17644,1,4,'Applied “Draft 1”'),(17933,17635,1,3,'Applied “Draft 1”'),(17934,17642,1,3,'Applied “Draft 1”'),(17935,17638,1,3,'Applied “Draft 1”'),(17936,17633,1,3,'Applied “Draft 1”'),(17937,17638,1,4,''),(17938,17631,1,3,'Applied “Draft 1”'),(17939,17628,1,3,'Applied “Draft 1”'),(17940,17626,1,3,'Applied “Draft 1”'),(17941,17621,1,3,'Applied “Draft 1”'),(17942,17623,1,3,'Applied “Draft 1”'),(17943,17617,1,3,'Applied “Draft 1”'),(17944,17615,1,3,'Applied “Draft 1”'),(17945,17613,1,3,'Applied “Draft 1”'),(17946,17611,1,3,'Applied “Draft 1”'),(17947,17608,1,3,'Applied “Draft 1”'),(17948,17603,1,3,'Applied “Draft 1”'),(17952,28040,17887,1,''),(17953,17603,17887,4,NULL),(17954,17608,17887,4,NULL),(17955,17611,17887,4,NULL),(17956,17613,17887,4,NULL),(17957,17615,17887,4,NULL),(17958,17617,17887,4,NULL),(17959,17621,17887,4,NULL),(17960,17623,17887,4,NULL),(17961,17626,17887,4,NULL),(17962,17628,17887,4,NULL),(17963,17631,17887,4,NULL),(17964,17633,17887,4,NULL),(17965,17635,17887,4,NULL),(17966,17638,17887,5,NULL),(17967,17642,17887,4,NULL),(17968,17644,17887,5,NULL),(17969,17646,17887,4,NULL),(17970,17648,17887,4,NULL),(17971,17650,17887,4,NULL),(17972,17652,17887,4,NULL),(17973,17654,17887,4,NULL),(17974,17660,17887,4,NULL),(17975,17662,17887,4,NULL),(17976,17664,17887,4,NULL),(17977,17666,17887,5,NULL),(17978,17668,17887,4,NULL),(17979,17670,17887,4,NULL),(17980,17672,17887,4,NULL),(17981,17674,17887,5,NULL),(17982,17676,17887,4,NULL),(17983,17678,17887,4,NULL),(17984,17680,17887,9,NULL),(17985,17682,17887,8,NULL),(17986,17684,17887,7,NULL),(17987,17686,17887,8,NULL),(17988,17688,17887,8,NULL),(17989,17690,17887,10,NULL),(17990,17692,17887,7,NULL),(17991,17692,17887,8,'Applied “Draft 1”'),(17992,17692,17887,9,'Applied “Draft 1”'),(17993,17692,17887,10,''),(17994,17688,17887,9,'Applied “Draft 1”'),(17995,17682,17887,9,'Applied “Draft 1”'),(17996,17680,17887,10,'Applied “Draft 1”'),(17997,17684,17887,8,'Applied “Draft 1”'),(17998,17684,17887,9,'Applied “Draft 1”'),(17999,17680,17887,11,'Applied “Draft 1”'),(18000,17678,17887,5,'Applied “Draft 1”'),(20288,20195,1,242,NULL),(20289,17688,17887,10,'Applied “Draft 1”'),(20290,17684,17887,10,'Applied “Draft 1”'),(20291,17690,17887,11,'Applied “Draft 1”'),(20292,17690,17887,12,NULL),(20293,17686,17887,9,'Applied “Draft 1”'),(20294,17686,17887,10,NULL),(20295,20379,17887,48,'Applied “Draft 1”'),(20296,30427,17887,1,''),(20297,30427,17887,2,'Applied “Draft 1”'),(20299,30427,17934,3,'Applied “Draft 1”'),(20300,30427,17934,4,'Applied “Draft 1”'),(20301,30427,17934,5,'Applied “Draft 1”'),(20302,17688,17887,11,'Applied “Draft 1”'),(20303,17688,17887,12,'Applied “Draft 1”'),(20304,17682,17887,10,'Applied “Draft 1”'),(20305,17682,17887,11,'Applied “Draft 1”'),(20306,17678,17887,6,'Applied “Draft 1”'),(20307,17678,17887,7,''),(20308,17678,17887,8,'Applied “Draft 1”'),(20309,17686,17887,11,'Applied “Draft 1”'),(20310,17686,17887,12,'Applied “Draft 1”'),(27811,30427,1,6,'Applied “Draft 1”'),(27812,18156,1,9,'Applied “Draft 1”'),(27813,22210,1,20,'Applied “Draft 1”'),(27814,18139,1,6,'Applied “Draft 1”'),(27815,18142,1,6,'Applied “Draft 1”'),(27816,18168,1,6,'Applied “Draft 1”'),(27817,18156,1,10,'Applied “Draft 1”'),(27818,18126,1,7,'Applied “Draft 1”'),(27819,18122,1,12,'Applied “Draft 1”'),(27820,18109,1,11,'Applied “Draft 1”'),(27821,16828,1,22,'Applied “Draft 1”'),(27822,38121,1,1,''),(27823,38121,1,2,'Applied “Draft 1”'),(27824,38121,1,3,'Applied “Draft 1”'),(27825,38121,1,4,'Applied “Draft 1”'),(27832,20379,1,49,'Applied “Draft 1”'),(27833,30427,17887,7,'Applied “Draft 1”'),(27834,22210,17887,21,'Applied “Draft 1”'),(27835,18139,17887,7,'Applied “Draft 1”'),(27836,16828,17887,23,NULL),(27837,18109,17887,12,NULL),(27838,18122,17887,13,NULL),(27839,18126,17887,8,NULL),(27840,18142,17887,7,NULL),(27841,18156,17887,11,NULL),(27842,18168,17887,7,NULL),(27843,38121,17887,5,NULL),(27844,18142,17887,8,'Applied “Draft 1”'),(27845,18142,17887,9,'Applied “Draft 1”'),(27846,18142,17887,10,NULL),(27847,18168,17887,8,'Applied “Draft 1”'),(27848,18168,17887,9,NULL),(27849,18156,17887,12,'Applied “Draft 1”'),(27850,18156,17887,13,'Applied “Draft 1”'),(27851,18156,17887,14,NULL),(27852,18122,17887,14,'Applied “Draft 1”'),(27853,18122,17887,15,'Applied “Draft 1”'),(27854,18122,17887,16,NULL),(27855,18109,17887,13,'Applied “Draft 1”'),(27856,18109,17887,14,NULL),(29023,16828,17887,24,'Applied “Draft 1”'),(29133,16828,17887,25,NULL),(30076,16828,17887,26,'Applied “Draft 1”'),(30096,38121,17887,6,'Applied “Draft 1”'),(30097,38121,17887,7,NULL),(30098,16828,1,27,'Applied “Draft 1”'),(30099,18164,17887,3,'Applied “Draft 1”'),(30100,18164,17887,4,NULL),(30101,18176,17887,3,NULL),(30102,18164,17887,5,'Applied “Draft 1”'),(30103,40504,17887,1,''),(30104,40506,17887,1,''),(34421,20379,1,50,'Applied “Draft 1”'),(34423,44837,17887,1,''),(34424,18164,17887,6,'Applied “Draft 1”'),(34425,44841,17887,1,''),(34426,44843,17887,1,''),(34427,44845,17887,1,''),(34428,30427,1,8,''),(34429,18168,1,10,'Applied “Draft 2”'),(34430,18168,1,11,'Applied “Draft 2”'),(34431,30427,1,9,''),(34432,30427,1,10,'Applied “Draft 2”'),(34433,44849,17887,1,''),(34434,18109,1,15,'Applied “Draft 1”'),(34435,16828,1,28,'Applied “Draft 1”'),(34436,44862,17887,1,''),(34437,16828,1,29,'Applied “Draft 1”'),(34438,40504,1,2,'Applied “Draft 2”'),(34439,44837,1,2,'Applied “Draft 1”'),(34440,44879,1,1,NULL),(34441,44879,1,2,NULL),(34442,44879,1,3,'Applied “Draft 1”'),(34443,16571,17887,19,'Applied “Draft 1”'),(34444,16571,17887,20,'Applied “Draft 1”'),(34445,44981,17887,1,''),(34446,44983,17887,1,''),(34447,44985,17887,1,''),(34448,40504,1,3,'Applied “Draft 2”'),(34449,44879,1,4,'Applied “Draft 1”'),(34450,44879,1,5,'Applied “Draft 1”'),(34451,44879,1,6,'Applied “Draft 1”'),(34452,44879,1,7,'Applied “Draft 1”'),(34453,44879,1,8,'Applied “Draft 1”'),(34454,44879,1,9,'Applied “Draft 1”'),(34455,44879,1,10,''),(34456,44879,1,11,'Applied “Draft 1”'),(34457,44879,1,12,'Applied “Draft 1”'),(34458,44879,1,13,'Applied “Draft 1”'),(34459,44879,1,14,'Applied “Draft 1”'),(34460,44879,1,15,'Applied “Draft 1”'),(34461,44879,1,16,'Applied “Draft 1”'),(34462,44879,1,17,'Applied “Draft 1”'),(34463,44879,1,18,''),(34464,44879,1,19,'Applied “Draft 1”'),(34465,44879,1,20,'Applied “Draft 1”'),(34466,44879,1,21,'Applied “Draft 1”'),(34467,38121,1,8,'Applied “Draft 1”'),(34468,20195,1,243,NULL),(34469,20195,1,244,NULL),(34470,44987,17887,1,''),(34471,45214,17887,1,''),(34472,45216,17887,1,''),(34473,45218,17887,1,''),(34474,45220,17887,1,''),(34475,45222,17887,1,''),(34476,18126,17887,9,'Applied “Draft 1”'),(34477,18126,17887,10,NULL),(34478,40504,1,4,'Applied “Draft 2”'),(34479,22210,17887,22,'Applied “Draft 1”'),(34480,44879,1,22,'Applied “Draft 1”'),(34481,44879,1,23,'Applied “Draft 1”'),(34482,44879,1,24,'Applied “Draft 1”'),(34483,44879,1,25,''),(34484,20379,1,51,'Applied “Draft 1”'),(34485,20379,1,52,'Applied “Draft 1”'),(34486,20379,1,53,'Applied “Draft 1”'),(34491,44879,1,26,'Applied “Draft 1”'),(34492,18126,17934,11,'Applied “Draft 1”'),(34493,18164,17934,7,'Applied “Draft 1”'),(34494,40504,17934,5,'Applied “Draft 1”'),(34495,40506,17934,2,'Applied “Draft 1”'),(34496,40506,17934,3,'Applied “Draft 1”'),(34499,44837,17934,3,'Applied “Draft 1”'),(36740,44837,17934,4,'Applied “Draft 1”'),(36745,16571,17934,21,'Applied “Draft 1”'),(36746,16571,17934,22,'Applied “Draft 1”'),(36747,40506,17934,4,'Applied “Draft 1”'),(36748,40506,17934,5,'Applied “Draft 1”'),(36749,18164,17934,8,'Applied “Draft 1”'),(36750,18176,17934,4,'Applied “Draft 2”'),(36751,18176,17934,5,'Applied “Draft 2”'),(36752,44845,17934,2,'Applied “Draft 1”'),(36753,40506,17934,6,''),(36754,18126,17934,12,'Applied “Draft 1”'),(36755,16828,17934,30,'Applied “Draft 1”'),(36756,18156,17934,15,'Applied “Draft 1”'),(36757,16828,17934,31,'Applied “Draft 1”'),(36758,30427,17934,11,''),(36759,18142,17934,11,'Applied “Draft 1”'),(36760,18109,17934,16,'Applied “Draft 1”'),(36761,45222,17887,2,''),(36762,30427,17934,12,'Applied “Draft 2”'),(36763,18156,17934,16,'Applied “Draft 1”'),(36764,18156,17934,17,'Applied “Draft 1”'),(36765,18156,17934,18,'Applied “Draft 1”'),(36766,18168,17934,12,'Applied “Draft 2”'),(36767,22210,17934,23,'Applied “Draft 1”'),(36768,18109,17934,17,'Applied “Draft 1”'),(36769,18109,17934,18,'Applied “Draft 1”'),(36770,38121,17934,9,'Applied “Draft 1”'),(36771,44841,17934,2,'Applied “Draft 1”'),(36772,44843,17934,2,'Applied “Draft 1”'),(36773,44849,17934,2,'Applied “Draft 1”'),(36774,44849,17934,3,'Applied “Draft 1”'),(36775,44862,17934,2,'Applied “Draft 1”'),(36776,44981,17934,2,'Applied “Draft 1”'),(36777,44981,17934,3,'Applied “Draft 1”'),(36778,44981,17934,4,''),(36779,44841,17934,3,''),(36780,17623,17887,5,NULL),(36781,17644,17887,6,NULL),(36782,17646,17887,5,NULL),(36783,17654,17887,5,NULL),(36784,17660,17887,5,NULL),(36785,17680,17887,12,NULL),(36786,17680,17887,13,''),(36787,28040,17887,2,''),(36788,17692,17887,11,'Applied “Draft 1”'),(36789,17690,17887,13,''),(36790,17688,17887,13,''),(36791,17686,17887,13,'Applied “Draft 1”'),(36792,17684,17887,11,''),(36793,17682,17887,12,''),(36794,17680,17887,14,'Applied “Draft 2”'),(36795,17678,17887,9,''),(36796,17660,17887,6,'Applied “Draft 1”'),(36797,17654,17887,6,'Applied “Draft 1”'),(36798,17646,17887,6,'Applied “Draft 1”'),(36799,17644,17887,7,'Applied “Draft 1”'),(36800,17623,17887,6,'Applied “Draft 1”'),(36801,17623,17887,7,'Applied “Draft 1”'),(36980,18122,17887,17,'Applied “Draft 1”'),(36981,44849,17934,4,'Applied “Draft 1”'),(36982,44862,17934,3,'Applied “Draft 1”'),(36983,44981,17934,5,'Applied “Draft 1”'),(36986,48003,17887,1,NULL),(36987,48003,17887,2,'Applied “Draft 1”'),(36988,48003,17887,3,'Applied “Draft 1”'),(36991,45222,17887,3,''),(37100,48003,17887,4,'Applied “Draft 1”'),(37103,17644,17887,8,''),(37117,45222,17934,4,'Applied “Draft 1”'),(37118,45220,17934,2,'Applied “Draft 1”'),(37119,44985,17934,2,'Applied “Draft 1”'),(37120,44983,17934,2,'Applied “Draft 1”'),(37122,45214,17934,2,'Applied “Draft 1”'),(37123,44987,17934,2,'Applied “Draft 1”'),(37124,44862,17934,4,''),(37125,18164,17934,9,'Applied “Draft 1”'),(37126,18164,17934,10,''),(37127,44981,17934,6,''),(37129,44981,17934,7,'Applied “Draft 1”'),(37130,45216,17934,2,'Applied “Draft 1”'),(37131,44981,17934,8,'Applied “Draft 1”'),(37132,45218,17934,2,'Applied “Draft 1”'),(37133,44862,17934,5,'Applied “Draft 1”'),(37135,44849,17934,5,'Applied “Draft 1”'),(37138,48017,45223,120,NULL),(37140,48017,45223,121,NULL),(37143,48017,45223,122,NULL),(37146,48017,45223,123,NULL),(37149,48017,45223,124,NULL),(37170,48017,45223,125,NULL),(37174,48017,45223,126,NULL),(37178,48017,45223,127,NULL),(37182,48017,45223,128,NULL),(37187,48017,45223,129,NULL),(37190,48017,45223,130,NULL),(37191,48017,45223,131,NULL),(37192,48017,45223,132,NULL),(37193,48017,45223,133,NULL),(37194,48017,45223,134,NULL),(37195,48017,45223,135,NULL),(37196,48017,45223,136,NULL),(37197,48017,45223,137,NULL),(37198,48017,45223,138,NULL),(37199,48017,45223,139,NULL),(37200,48017,45223,140,NULL),(37201,48017,45223,141,NULL),(37202,48017,45223,142,NULL),(37204,48017,45223,143,NULL),(37205,48017,45223,144,NULL),(37206,48017,45223,145,NULL),(37207,48017,45223,146,NULL),(37208,48017,45223,147,NULL),(37209,48017,45223,148,NULL),(37210,48017,45223,149,NULL),(37211,48262,1,1,NULL),(37212,48262,1,2,NULL),(37213,48262,1,3,'Applied “Draft 1”'),(37214,48262,1,4,NULL),(37216,48017,45223,150,NULL),(37217,48017,45223,151,NULL),(37218,48017,45223,152,NULL),(37219,48017,45223,153,NULL),(37220,48017,45223,154,NULL),(37222,48017,45223,155,NULL),(37225,48017,45223,156,NULL),(37227,48017,45223,157,NULL),(37230,48017,45223,158,NULL),(37240,48017,45223,159,NULL),(37245,48017,45223,160,NULL),(37248,48017,45223,161,NULL),(37251,48017,45223,162,NULL),(37253,48017,45223,163,NULL),(37256,48017,45223,164,NULL),(37258,48017,45223,165,NULL),(37260,48262,1,5,'Applied “Draft 1”'),(37262,48017,45223,166,NULL),(37263,48262,1,6,'Applied “Draft 1”'),(37266,48017,45223,167,NULL),(37267,48017,45223,168,NULL),(37268,48262,1,7,'Applied “Draft 1”'),(37269,48262,1,8,NULL),(37276,48017,45223,169,NULL),(37281,48262,1,9,'Applied “Draft 1”'),(37304,48003,17934,5,'Applied “Draft 1”'),(37313,17646,17887,7,''),(37314,17660,17887,7,'Applied “Draft 1”'),(37315,17678,17887,10,''),(37316,17678,17887,11,''),(37317,17654,17887,7,'Applied “Draft 1”'),(37318,17646,17887,8,'Applied “Draft 1”'),(37319,17644,17887,9,'Applied “Draft 1”'),(37320,48003,17887,6,'Applied “Draft 1”'),(37323,28040,17887,3,''),(37324,48003,17887,7,'Applied “Draft 1”'),(37325,17692,17887,12,''),(37326,17678,17887,12,''),(37327,17660,17887,8,''),(37328,17654,17887,8,''),(37329,17646,17887,9,'Applied “Draft 1”'),(37330,17660,17887,9,'Applied “Draft 1”'),(37331,17654,17887,9,'Applied “Draft 1”'),(37332,17646,17887,10,''),(37333,17644,17887,10,'Applied “Draft 1”'),(37334,17623,17887,8,'Applied “Draft 1”'),(37335,17680,17934,15,'Applied “Draft 3”'),(37337,48417,45226,1,NULL),(37338,48417,45226,2,NULL),(37339,48417,45226,3,NULL),(37340,48417,45226,4,NULL),(37341,48417,45226,5,NULL),(37342,48417,45226,6,NULL),(37343,48417,45226,7,NULL),(37344,48417,45226,8,NULL),(37345,48417,45226,9,NULL),(37346,48417,45226,10,NULL),(37347,48417,45226,11,NULL),(37348,48417,45226,12,NULL),(37349,48417,45226,13,NULL),(37350,48417,45226,14,NULL),(37351,48417,45226,15,NULL),(37352,48417,45226,16,NULL),(37367,44845,17934,3,'Applied “Draft 1”'),(37387,44843,17934,3,''),(37388,44843,17934,4,'Applied “Draft 1”'),(37392,45346,45225,362,NULL),(37393,45346,45225,363,NULL),(37394,45346,45225,364,NULL),(37395,45346,45225,365,NULL),(37396,45346,45225,366,NULL),(37397,45346,45225,367,NULL),(37398,45346,45225,368,NULL),(37399,45346,45225,369,NULL),(37400,45346,45225,370,NULL),(37401,45346,45225,371,NULL),(37402,45346,45225,372,NULL),(37403,45346,45225,373,NULL),(37404,45346,45225,374,NULL),(37405,45346,45225,375,NULL),(37406,45346,45225,376,NULL),(37407,45346,45225,377,NULL),(37408,45346,45225,378,NULL),(37409,45346,45225,379,NULL),(37410,45346,45225,380,NULL),(37411,45346,45225,381,NULL),(37412,45346,45225,382,NULL),(37413,45346,45225,383,NULL),(37414,45346,45225,384,NULL),(37415,45346,45225,385,NULL),(37416,45346,45225,386,NULL),(37417,45346,45225,387,NULL),(37418,45346,45225,388,NULL),(37419,45346,45225,389,NULL),(37420,45346,45225,390,NULL),(37421,45346,45225,391,NULL),(37422,45346,45225,392,NULL),(37423,45346,45225,393,NULL),(37424,45346,45225,394,NULL),(37425,45346,45225,395,NULL),(37426,45346,45225,396,NULL),(37427,45346,45225,397,NULL),(37428,45346,45225,398,NULL),(37429,45346,45225,399,NULL),(37430,45346,45225,400,NULL),(37431,45346,45225,401,NULL),(37432,45346,45225,402,NULL),(37433,45346,45225,403,NULL),(37434,45346,45225,404,NULL),(37435,45346,45225,405,NULL),(37436,45346,45225,406,NULL),(37437,45346,45225,407,NULL),(37438,45346,45225,408,NULL),(37439,45346,45225,409,NULL),(37440,45346,45225,410,NULL),(37441,45346,45225,411,NULL),(37442,44841,17934,4,'Applied “Draft 1”'),(37443,44837,17934,5,'Applied “Draft 1”'),(37444,40506,17934,7,''),(37445,18176,17934,6,''),(37446,18156,17934,19,'Applied “Draft 1”'),(40343,44879,1,27,'Applied “Draft 1”'),(40466,44879,1,28,'Applied “Draft 1”'),(40657,44879,1,29,'Applied “Draft 1”'),(47541,58762,17887,1,''),(47544,44983,17887,3,''),(47545,45222,17887,5,''),(50566,20379,17875,54,'Applied “Draft 2”'),(50567,20379,17875,55,'Applied “Draft 2”'),(50568,20379,1,56,'Applied “Draft 2”'),(50569,18156,17875,20,'Applied “Draft 1”'),(50570,21297,1,14,'Applied “Draft 1”'),(50571,18109,17875,19,'Applied “Draft 1”'),(50572,40504,17875,6,'Applied “Draft 1”'),(50573,18109,17875,20,'Applied “Draft 1”'),(50574,38121,1,10,'Applied “Draft 1”'),(50575,18156,17875,21,'Applied “Draft 1”'),(50576,18156,17875,22,'Applied “Draft 1”'),(50577,18156,1,23,''),(50578,18156,17875,24,'Applied “Draft 1”'),(57899,18156,1,25,'Applied “Draft 1”'),(57900,18156,1,26,'Applied “Draft 1”'),(57901,18156,1,27,'Applied “Draft 1”'),(57902,18156,1,28,'Applied “Draft 1”'),(57903,18156,1,29,''),(57904,18156,1,30,'Applied “Draft 1”'),(57905,18156,1,31,'Applied “Draft 1”'),(57906,44879,1,30,'Applied “Draft 1”'),(57907,44879,1,31,''),(57908,44879,1,32,'Applied “Draft 1”'),(57909,20379,1,57,''),(57910,20379,1,58,'Applied “Draft 2”'),(57911,20379,1,59,'Applied “Draft 2”'),(57912,30427,1,13,'Applied “Draft 2”'),(57913,44862,1,6,''),(57914,40504,1,7,'Applied “Draft 1”'),(57915,40504,1,8,'Applied “Draft 1”'),(57916,40504,1,9,'Applied “Draft 1”'),(57917,40504,1,10,'Applied “Draft 1”'),(57918,40504,1,11,'Applied “Draft 1”'),(57919,38121,1,11,''),(57920,18139,1,8,'Applied “Draft 1”'),(57921,18164,1,11,'Applied “Draft 1”'),(57922,18176,1,7,''),(57923,18122,1,18,'Applied “Draft 1”'),(57925,22210,1,24,'Applied “Draft 1”'),(57926,22210,1,25,'Applied “Draft 1”'),(57927,40506,1,8,'Applied “Draft 1”'),(57928,44879,1,33,NULL),(57929,20379,1,60,NULL),(57930,21297,1,15,NULL),(57931,44879,1,34,'Applied “Draft 1”'),(57932,44879,1,35,''),(57933,20379,1,61,'Applied “Draft 1”'),(57934,21297,1,16,''),(57936,44879,1,36,'Applied “Draft 1”'),(57937,48003,1,8,'Applied “Draft 1”'),(57938,28040,1,4,'Applied “Draft 2”'),(57939,28040,1,5,'Applied “Draft 2”'),(57940,17692,1,13,'Applied “Draft 1”'),(57941,17692,1,14,''),(57942,17690,1,14,'Applied “Draft 2”'),(57943,17688,1,14,'Applied “Draft 1”'),(57944,17686,1,14,'Applied “Draft 1”'),(57945,17684,1,12,'Applied “Draft 1”'),(57946,17682,1,13,'Applied “Draft 1”'),(57947,17680,1,16,'Applied “Draft 3”'),(57948,17678,1,13,'Applied “Draft 1”'),(57949,17660,1,10,'Applied “Draft 1”'),(57950,17654,1,10,'Applied “Draft 1”'),(57951,17646,1,11,'Applied “Draft 1”'),(57952,17644,1,11,'Applied “Draft 1”'),(57953,17623,1,9,'Applied “Draft 1”'),(57955,44981,1,9,'Applied “Draft 1”'),(57956,44862,1,7,'Applied “Draft 1”'),(57957,44849,1,6,'Applied “Draft 1”'),(57958,44845,1,4,'Applied “Draft 1”'),(57959,20379,1,62,'Applied “Draft 1”'),(57960,74162,1,1,NULL),(57961,74162,1,2,'Applied “Draft 1”'),(57962,74162,1,3,'Applied “Draft 1”'),(57963,44879,17887,37,'Applied “Draft 1”'),(57964,44879,17887,38,'Applied “Draft 1”'),(57965,44879,17887,39,''),(57966,44879,17887,40,''),(57967,21297,17887,17,'Applied “Draft 1”'),(57968,20379,17887,63,'Applied “Draft 1”'),(57969,20379,17887,64,'Applied “Draft 1”'),(57970,44879,17887,41,'Applied “Draft 1”'),(57971,44879,17887,42,'Applied “Draft 1”'),(57972,20379,1,65,NULL),(57973,74162,1,4,NULL),(57974,21297,1,18,NULL),(57975,44879,1,43,NULL),(57976,48262,1,10,NULL),(57977,21297,1,19,NULL),(57978,44879,1,44,NULL),(57979,48262,1,11,NULL),(57980,20379,1,66,NULL),(57981,74162,1,5,NULL),(57982,74276,1,1,NULL),(57983,74276,1,2,NULL),(57984,74276,1,3,'Applied “Draft 1”'),(57985,74276,1,4,NULL),(57986,74276,1,5,'Applied “Draft 1”'),(57987,74286,1,1,NULL),(57988,74286,1,2,NULL),(57989,74286,1,3,NULL),(57990,74286,1,4,'Applied “Draft 1”'),(57991,74286,1,5,'Applied “Draft 1”'),(65826,48262,1,12,'Applied “Draft 1”'),(65827,48262,1,13,'Applied “Draft 1”'),(68436,74276,1,6,'Applied “Draft 1”'),(68437,74276,1,7,'Applied “Draft 1”'),(68438,74276,1,8,''),(68439,74276,1,9,'Applied “Draft 1”'),(68440,74276,17875,10,'Applied “Draft 1”'),(68441,74276,17875,11,'Applied “Draft 1”'),(68442,74276,17875,12,'Applied “Draft 1”'),(71081,87608,1,1,NULL),(71082,87608,1,2,'Applied “Draft 1”'),(71083,87608,1,3,'Applied “Draft 1”'),(71084,87608,1,4,'Applied “Draft 1”'),(71085,87608,1,5,'Applied “Draft 1”'),(71086,87608,1,6,'Applied “Draft 1”'),(71088,87608,1,7,'Applied “Draft 1”'),(71089,87608,1,8,'Applied “Draft 1”'),(71090,87608,1,9,'Applied “Draft 1”'),(71091,87608,1,10,'Applied “Draft 1”'),(71092,87608,1,11,''),(77601,20379,1,67,'Applied “Draft 1”'),(77602,58762,17875,2,'Applied “Draft 1”'),(77603,58762,17875,3,'Applied “Draft 4”'),(77604,58762,17875,4,'Applied “Draft 4”'),(77811,94223,17893,207,NULL),(77812,94223,17893,208,NULL),(77813,94223,17893,209,NULL),(77814,94223,17893,210,NULL),(77815,94223,17893,211,NULL),(77816,94223,17893,212,NULL),(77817,94223,17893,213,NULL),(77818,94223,17893,214,NULL),(77819,94223,17893,215,NULL),(77820,94223,17893,216,NULL),(77821,94223,17893,217,NULL),(77822,94223,17893,218,NULL),(77823,94223,17893,219,NULL),(77824,94223,17893,220,NULL),(77825,94223,17893,221,NULL),(77826,94223,17893,222,NULL),(77827,94223,17893,223,NULL),(77828,94223,17893,224,NULL),(77829,94223,17893,225,NULL),(77830,94223,17893,226,NULL),(77831,94223,17893,227,NULL),(77832,94223,17893,228,NULL),(77833,94223,17893,229,NULL),(77834,94223,17893,230,NULL),(77835,94223,17893,231,NULL),(77836,94223,17893,232,NULL),(77837,94223,17893,233,NULL),(77838,94223,17893,234,NULL),(77839,94223,17893,235,NULL),(77840,94223,17893,236,NULL),(77841,94223,17893,237,NULL),(77842,94223,17893,238,NULL),(77843,94223,17893,239,NULL),(77844,94223,17893,240,NULL),(77845,94223,17893,241,NULL),(77846,94223,17893,242,NULL),(77847,94223,17893,243,NULL),(77848,94223,17893,244,NULL),(77849,94223,17893,245,NULL),(77850,94223,17893,246,NULL),(77851,94223,17893,247,NULL),(77852,94223,17893,248,NULL),(77853,94223,17893,249,NULL),(77854,94223,17893,250,NULL),(77855,94223,17893,251,NULL),(77856,94223,17893,252,NULL),(77857,94223,17893,253,NULL),(77858,94223,17893,254,NULL),(77859,94223,17893,255,NULL),(77860,94223,17893,256,NULL),(80590,20379,17887,68,'Applied “Draft 1”'),(80591,20379,17887,69,'Applied “Draft 1”'),(80592,20379,17887,70,'Applied “Draft 1”'),(80593,38121,1,12,''),(80595,58762,1,5,'Applied “Draft 2”'),(80596,58762,1,6,'Applied “Draft 6”'),(80597,58762,17875,7,'Applied “Draft 5”'),(80598,58762,1,8,'Applied “Draft 6”'),(80650,45298,17956,68,NULL),(80651,45298,17956,69,NULL),(80652,45298,17956,70,NULL),(80653,45298,17956,71,NULL),(80654,45298,17956,72,NULL),(80655,45298,17956,73,NULL),(80656,45298,17956,74,NULL),(80657,45298,17956,75,NULL),(80658,45298,17956,76,NULL),(80659,45298,17956,77,NULL),(80660,45298,17956,78,NULL),(80661,45298,17956,79,NULL),(80662,45298,17956,80,NULL),(80663,45298,17956,81,NULL),(80664,45298,17956,82,NULL),(80665,45298,17956,83,NULL),(80666,45298,17956,84,NULL),(80667,45298,17956,85,NULL),(80668,45298,17956,86,NULL),(80669,45298,17956,87,NULL),(80670,45298,17956,88,NULL),(80671,45298,17956,89,NULL),(80672,45298,17956,90,NULL),(80673,45298,17956,91,NULL),(80674,45298,17956,92,NULL),(80675,45298,17956,93,NULL),(80676,45298,17956,94,NULL),(80677,45298,17956,95,NULL),(80678,45298,17956,96,NULL),(80679,45298,17956,97,NULL),(80680,45298,17956,98,NULL),(80681,45298,17956,99,NULL),(80682,45298,17956,100,NULL),(80683,45298,17956,101,NULL),(80684,45298,17956,102,NULL),(80685,45298,17956,103,NULL),(80686,45298,17956,104,NULL),(80687,45298,17956,105,NULL),(80688,45298,17956,106,NULL),(80689,45298,17956,107,NULL),(80690,45298,17956,108,NULL),(80691,45298,17956,109,NULL),(80692,45298,17956,110,NULL),(80693,45298,17956,111,NULL),(80694,45298,17956,112,NULL),(80695,45298,17956,113,NULL),(80696,45298,17956,114,NULL),(80697,45298,17956,115,NULL),(80698,45298,17956,116,NULL),(80699,45298,17956,117,NULL),(80700,58762,1,9,'Applied “Draft 6”'),(82215,20379,1,71,'Applied “Draft 1”'),(85732,20195,1,245,NULL),(85733,20195,1,246,NULL),(85734,20195,1,247,NULL),(85735,20195,1,248,NULL),(85736,20195,1,249,NULL),(85737,20195,1,250,NULL),(85738,20195,1,251,NULL),(85739,20195,1,252,NULL),(85740,20195,1,253,NULL),(85741,20195,1,254,NULL),(85742,20195,1,255,NULL),(85743,20195,1,256,NULL),(85744,20195,1,257,NULL),(85745,20195,1,258,NULL),(85746,20195,1,259,NULL),(85747,20195,1,260,NULL),(85748,20195,1,261,NULL),(85749,20195,1,262,NULL),(85750,20195,1,263,NULL),(85751,20195,1,264,NULL),(85752,20195,1,265,NULL),(85753,20195,1,266,NULL),(85754,20195,1,267,NULL),(85755,20195,1,268,NULL),(85756,20195,1,269,NULL),(85757,20195,1,270,NULL),(85758,20195,1,271,NULL),(85759,20195,1,272,NULL),(85760,20195,1,273,NULL),(85761,20195,1,274,NULL),(102713,21297,1,20,'Applied “Draft 1”'),(102714,21297,1,21,'Applied “Draft 1”'),(102715,44879,1,45,''),(105555,21297,1,22,'Applied “Draft 1”'),(105556,21297,1,23,'Applied “Draft 1”'),(105557,20379,17887,72,''),(121917,139967,17934,1,NULL),(121918,139967,17934,2,'Applied “Draft 1”'),(121919,139967,17934,3,'Applied “Draft 1”'),(121920,139967,17934,4,'Applied “Draft 1”'),(121921,139967,17934,5,'Applied “Draft 1”'),(121922,139967,17934,6,''),(121923,139967,17887,7,'Applied “Draft 1”'),(121924,139967,17887,8,'Applied “Draft 1”'),(121925,139967,17887,9,''),(121935,140013,17934,1,''),(121936,140013,17934,2,'Applied “Draft 1”'),(121937,140013,17934,3,'Applied “Draft 1”'),(121938,140013,17934,4,'Applied “Draft 1”'),(121939,140013,17934,5,'Applied “Draft 1”'),(121940,140013,17934,6,'Applied “Draft 1”'),(121941,140013,17934,7,''),(121942,140013,17934,8,'Applied “Draft 1”'),(121943,140013,17934,9,'Applied “Draft 1”'),(121944,140013,17934,10,'Applied “Draft 1”'),(121945,140013,17934,11,'Applied “Draft 1”'),(121946,140013,17934,12,'Applied “Draft 1”'),(121947,140013,17934,13,'Applied “Draft 1”'),(121948,140013,17934,14,''),(121949,140013,17934,15,'Applied “Draft 1”'),(121950,140013,17934,16,'Applied “Draft 1”'),(121951,140013,17934,17,''),(121952,140013,17934,18,'Applied “Draft 1”'),(121953,140013,17934,19,'Applied “Draft 1”'),(121954,140013,1,20,''),(121955,140013,1,21,'Applied “Draft 1”'),(121956,140013,17887,22,'Applied “Draft 1”'),(121957,140013,17934,23,'Applied “Draft 1”'),(121958,140060,17934,1,''),(121959,140060,17934,2,'Applied “Draft 1”'),(121960,140060,17934,3,'Applied “Draft 1”'),(121961,140060,17934,4,''),(121962,140060,17934,5,'Applied “Draft 1”'),(121963,140060,17934,6,''),(121964,140060,17934,7,'Applied “Draft 1”'),(121965,140060,17934,8,''),(121966,140060,17934,9,'Applied “Draft 1”'),(121967,140060,17934,10,''),(121968,140060,17934,11,''),(121969,140060,17934,12,''),(121978,140013,17887,24,'Applied “Draft 2”'),(121979,140060,17875,13,'Applied “Draft 1”'),(121980,140013,17887,25,'Applied “Draft 2”'),(121981,140013,17887,26,'Applied “Draft 2”'),(121982,44837,17887,6,'Applied “Draft 1”'),(121983,44837,17887,7,'Applied “Draft 1”'),(121984,44837,17887,8,'Applied “Draft 1”'),(121985,44837,17887,9,'Applied “Draft 1”'),(121986,48262,1,14,'Applied “Draft 1”'),(121987,74286,1,6,NULL),(121988,74286,1,7,NULL),(121989,21297,1,24,NULL),(121990,21297,1,25,NULL),(121991,44879,1,46,NULL),(121992,51531,1,1,NULL),(121993,45249,1,1,NULL),(121994,44967,1,1,NULL),(121995,44969,1,1,NULL),(121996,44970,1,1,NULL),(121997,44971,1,1,NULL),(121998,44879,1,47,NULL),(121999,48262,1,15,NULL),(122000,48262,1,16,NULL),(122001,20379,1,73,NULL),(122002,20379,1,74,NULL),(122003,74162,1,6,NULL),(122004,74162,1,7,NULL),(122005,74276,1,13,NULL),(122006,74276,1,14,NULL),(122007,140013,1,27,'Applied “Draft 3”'),(122008,140013,1,28,'Applied “Draft 3”'),(122011,20379,1,75,'Applied “Draft 1”'),(122013,28040,1,6,''),(122014,48003,1,9,''),(122015,17692,1,15,''),(122016,17690,1,15,''),(122017,17688,1,15,''),(122018,17686,1,15,''),(122019,17684,1,13,''),(122020,17682,1,14,''),(122021,17678,1,14,''),(122022,17660,1,11,''),(122023,17654,1,11,''),(122024,17646,1,12,''),(122025,17644,1,12,''),(122026,17623,1,10,''),(122027,140013,1,29,''),(122028,58762,1,10,''),(122030,44981,1,10,''),(122031,44862,1,8,''),(122032,44849,1,7,''),(122033,44845,1,5,''),(122034,44843,1,5,''),(122035,44843,1,6,'Applied “Draft 1”'),(122036,44841,1,5,'Applied “Draft 1”'),(122037,44837,1,10,'Applied “Draft 1”'),(122038,44837,1,11,'Applied “Draft 1”'),(122039,40506,1,9,'Applied “Draft 1”'),(122040,44837,1,12,'Applied “Draft 1”'),(122041,40504,1,12,'Applied “Draft 2”'),(122042,30427,1,14,'Applied “Draft 2”'),(122043,30427,1,15,''),(122044,22210,1,26,'Applied “Draft 1”'),(122045,18139,1,9,'Applied “Draft 1”'),(122046,18142,1,12,'Applied “Draft 1”'),(122047,18168,1,13,'Applied “Draft 2”'),(122048,18176,1,8,'Applied “Draft 2”'),(122049,18164,1,12,'Applied “Draft 2”'),(122050,18156,1,32,'Applied “Draft 1”'),(122051,18126,1,13,'Applied “Draft 1”'),(122052,18122,1,19,'Applied “Draft 1”'),(122053,139967,1,10,'Applied “Draft 1”'),(122054,18109,1,21,'Applied “Draft 1”'),(122056,16828,1,32,'Applied “Draft 1”'),(122057,16571,1,23,'Applied “Draft 1”'),(122058,140013,17934,30,'Applied “Draft 1”'),(122059,140060,17887,14,'Applied “Draft 2”'),(122060,140060,17887,15,'Applied “Draft 2”'),(122063,140060,17934,16,'Applied “Draft 3”'),(122064,140246,1,1,NULL),(122065,140246,1,2,NULL),(122066,140246,1,3,NULL),(122067,140246,1,4,NULL),(122068,140246,1,5,'Applied “Draft 1”'),(122069,140246,1,6,''),(122157,140013,17934,31,'Applied “Draft 3”'),(122242,140013,1,32,'Applied “Draft 3”'),(122930,141312,17893,1,NULL),(122931,141314,17893,1,NULL),(122932,141316,17893,1,NULL),(122933,141318,17893,1,NULL),(122934,141320,17893,1,NULL),(122935,141322,17893,1,NULL),(122936,141324,17893,1,NULL),(122937,141326,17893,1,NULL),(122938,141328,17893,1,NULL),(122939,141330,17893,1,NULL),(122940,141332,17893,1,NULL),(122941,141334,17893,1,NULL),(122942,141336,17893,1,NULL),(122943,141338,17893,1,NULL),(122944,141340,17893,1,NULL),(122945,141342,17893,1,NULL),(122946,141344,17893,1,NULL),(122947,141346,17893,1,NULL),(122948,141348,17893,1,NULL),(122949,141350,17893,1,NULL),(122950,141352,17893,1,NULL),(122951,141354,17893,1,NULL),(122952,141356,17893,1,NULL),(122953,141358,17893,1,NULL),(122954,141360,17893,1,NULL),(122955,141362,17893,1,NULL),(122956,141364,17893,1,NULL),(122957,141366,17893,1,NULL),(122958,141368,17893,1,NULL),(122959,141370,17893,1,NULL),(122960,141372,17893,1,NULL),(122961,141374,17893,1,NULL),(122962,141376,17893,1,NULL),(122963,141378,17893,1,NULL),(122964,141380,17893,1,NULL),(122965,141382,17893,1,NULL),(122966,141384,17893,1,NULL),(122967,141386,17893,1,NULL),(122968,141388,17893,1,NULL),(122969,141390,17893,1,NULL),(122970,141392,17893,1,NULL),(122971,141394,17893,1,NULL),(122972,141396,17893,1,NULL),(122973,141398,17893,1,NULL),(122974,141400,17893,1,NULL),(122975,141402,17893,1,NULL),(122976,141404,17893,1,NULL),(122977,141406,17893,1,NULL),(122978,141408,17893,1,NULL),(122979,141410,17893,1,NULL),(122980,141412,17893,1,NULL),(122981,141414,17893,1,NULL),(122982,141416,17893,1,NULL),(122983,141418,17893,1,NULL),(122984,141420,17893,1,NULL),(122985,141422,17893,1,NULL),(122986,141424,17893,1,NULL),(122987,141426,17893,1,NULL),(122988,141428,17893,1,NULL),(122989,141430,17893,1,NULL),(122990,141432,17893,1,NULL),(122991,141434,17893,1,NULL),(122992,141436,17893,1,NULL),(122993,141438,17893,1,NULL),(122994,141440,17893,1,NULL),(122995,141442,17893,1,NULL),(122996,141444,17893,1,NULL),(122997,141446,17893,1,NULL),(122998,141448,17893,1,NULL),(122999,141450,17893,1,NULL),(123000,141452,17893,1,NULL),(123001,141454,17893,1,NULL),(123002,141456,17893,1,NULL),(123003,141458,17893,1,NULL),(123004,141460,17893,1,NULL),(123005,141462,17893,1,NULL),(123006,141464,17893,1,NULL),(123007,141466,17893,1,NULL),(123008,141468,17893,1,NULL),(123009,141470,17893,1,NULL),(123010,141472,17893,1,NULL),(123011,141474,17893,1,NULL),(123012,141476,17893,1,NULL),(123013,141478,17893,1,NULL),(123015,141486,17934,1,NULL),(123016,17650,17887,5,'Applied “Draft 1”'),(123017,17650,17887,6,''),(123019,141493,17934,1,NULL),(123020,141493,17934,2,'Applied “Draft 1”'),(123022,141493,17934,3,'Applied “Draft 1”'),(123023,141493,17934,4,'Applied “Draft 1”'),(123024,141493,17934,5,'Applied “Draft 1”'),(123025,141493,17934,6,'Applied “Draft 1”'),(123028,141493,17934,7,'Applied “Draft 3”'),(123036,141493,17887,8,''),(123037,141493,1,9,'Applied “Draft 3”'),(123038,141493,17887,10,'Applied “Draft 4”'),(123039,141486,17887,2,''),(123040,140060,17887,17,'Applied “Draft 2”'),(123041,141493,17887,11,'Applied “Draft 3”'),(123042,141493,17887,12,'Applied “Draft 3”'),(123043,141493,17887,13,'Applied “Draft 3”'),(123044,141493,17887,14,'Applied “Draft 3”'),(123046,141493,1,15,'Applied “Draft 3”'),(123047,141493,1,16,'Applied “Draft 3”'),(123048,17682,17887,15,'Applied “Draft 1”'),(123049,141493,17887,17,''),(123050,17682,17887,16,'Applied “Draft 1”'),(123051,17682,17887,17,'Applied “Draft 1”'),(123054,141586,17934,1,NULL),(123055,18139,17934,10,'Applied “Draft 1”'),(123056,18139,17934,11,'Applied “Draft 1”'),(123057,18139,17934,12,'Applied “Draft 1”'),(123058,18139,17934,13,'Applied “Draft 1”'),(123059,18139,17934,14,'Applied “Draft 1”'),(123060,18139,17934,15,''),(123061,18139,17934,16,'Applied “Draft 1”'),(123062,141493,17934,18,'Applied “Draft 5”'),(123063,141493,17934,19,'Applied “Draft 5”'),(123064,141493,17934,20,'Applied “Draft 5”'),(123065,18139,17934,17,'Applied “Draft 1”'),(123066,20379,17887,76,'Applied “Draft 2”'),(123067,20379,17887,77,'Applied “Draft 5”'),(123068,17650,17887,7,''),(123069,21297,17893,26,'Applied “Draft 1”'),(123070,18139,17887,18,'Applied “Draft 2”'),(123071,17650,17887,8,'Applied “Draft 2”'),(123072,17650,17887,9,'Applied “Draft 2”'),(123073,17650,17887,10,'Applied “Draft 2”'),(123083,20379,17887,78,'Applied “Draft 5”'),(123084,141662,17934,1,NULL),(123098,17650,17887,11,'Applied “Draft 2”'),(123113,141725,17934,1,NULL),(123114,141725,17934,2,'Applied “Draft 1”'),(123115,141725,17934,3,'Applied “Draft 1”'),(123117,141725,17934,4,'Applied “Draft 1”'),(123118,141725,17934,5,'Applied “Draft 1”'),(123119,141725,17934,6,'Applied “Draft 1”'),(123120,141725,17934,7,'Applied “Draft 1”'),(123121,141725,17934,8,'Applied “Draft 1”'),(123122,141725,17934,9,'Applied “Draft 1”'),(123123,141725,17934,10,'Applied “Draft 1”'),(123124,141725,17934,11,''),(123125,141725,17934,12,''),(123128,141725,17887,13,'Applied “Draft 2”'),(123129,141725,17887,14,'Applied “Draft 2”'),(123130,20379,17887,79,'Applied “Draft 5”'),(123131,141725,17934,15,'Applied “Draft 1”'),(123132,141725,17934,16,''),(123133,20379,17887,80,'Applied “Draft 5”'),(123135,141725,17934,17,'Applied “Draft 3”'),(123136,141725,17934,18,'Applied “Draft 3”'),(123137,141725,17934,19,'Applied “Draft 3”'),(123138,141725,17934,20,'Applied “Draft 3”'),(123139,17650,17934,12,'Applied “Draft 2”'),(123140,17650,17934,13,'Applied “Draft 2”'),(123141,48262,17887,17,'Applied “Draft 1”'),(123142,18156,1,33,'Applied “Draft 1”'),(123143,18156,1,34,'Applied “Draft 1”'),(123144,18156,1,35,'Applied “Draft 1”'),(123145,18156,1,36,'Applied “Draft 1”'),(123146,140246,1,7,'Applied “Draft 3”'),(123147,140246,1,8,'Applied “Draft 3”'),(123148,140246,1,9,'Applied “Draft 3”'),(123149,48262,17887,18,'Applied “Draft 1”'),(123150,140060,17887,18,'Applied “Draft 2”'),(123151,141493,17887,21,'Applied “Draft 4”'),(123152,141486,17887,3,'Applied “Draft 2”'),(123153,141486,17887,4,'Applied “Draft 2”'),(123154,140060,17887,19,''),(123155,44845,17887,6,'Applied “Draft 1”'),(123156,44843,17887,7,'Applied “Draft 1”'),(123157,140060,17887,20,'Applied “Draft 2”'),(123158,44849,17887,8,'Applied “Draft 2”'),(123159,140060,17887,21,'Applied “Draft 2”'),(123160,44837,17887,13,'Applied “Draft 1”'),(123161,40506,17887,10,'Applied “Draft 1”'),(123162,40506,17887,11,'Applied “Draft 1”'),(123163,40504,17887,13,'Applied “Draft 2”'),(123164,30427,17887,16,'Applied “Draft 1”'),(123165,22210,17887,27,'Applied “Draft 3”'),(123166,22210,17887,28,'Applied “Draft 3”'),(123167,22210,17887,29,'Applied “Draft 3”'),(123168,18168,17887,14,'Applied “Draft 1”'),(123169,18156,17887,37,'Applied “Draft 1”'),(123170,18126,17887,14,''),(123171,18126,17887,15,'Applied “Draft 1”'),(123172,18122,17887,20,'Applied “Draft 1”'),(123173,18122,17887,21,'Applied “Draft 1”'),(123174,141662,17887,2,'Applied “Draft 1”'),(123175,141662,17887,3,''),(123176,141662,17887,4,''),(123177,141662,17887,5,'Applied “Draft 1”'),(123178,40504,17887,14,'Applied “Draft 2”'),(123179,139967,17887,11,'Applied “Draft 1”'),(123180,139967,17887,12,'Applied “Draft 1”'),(123181,18109,17887,22,'Applied “Draft 1”'),(123182,16571,17887,24,'Applied “Draft 1”'),(123183,16828,17887,33,'Applied “Draft 1”'),(123184,16828,17887,34,'Applied “Draft 1”'),(123185,16828,17887,35,'Applied “Draft 1”'),(123186,16828,17887,36,''),(123187,16828,17887,37,''),(123190,48003,17887,10,'Applied “Draft 1”'),(123191,48003,17887,11,'Applied “Draft 1”'),(123192,48003,17887,12,'Applied “Draft 1”'),(123193,17684,17887,14,''),(123194,17660,17887,12,'Applied “Draft 1”'),(123195,17650,17887,14,'Applied “Draft 2”'),(123196,17650,17887,15,''),(123197,17644,17887,13,'Applied “Draft 1”'),(123198,140246,17887,10,'Applied “Draft 3”'),(123199,18176,17875,9,'Applied “Draft 2”'),(123200,16828,17875,38,'Applied “Draft 1”'),(123201,140013,17875,33,'Applied “Draft 4”'),(123202,44981,17875,11,''),(123203,30427,17875,17,'Applied “Draft 1”'),(123204,40504,17875,15,'Applied “Draft 2”'),(123205,16571,17875,25,'Applied “Draft 1”'),(123206,18156,17875,38,'Applied “Draft 1”'),(123207,16828,17875,39,'Applied “Draft 1”'),(123208,18139,17875,19,'Applied “Draft 3”'),(123209,18139,17875,20,'Applied “Draft 3”'),(123210,139967,1,13,'Applied “Draft 1”'),(123211,141925,17934,1,''),(123212,141925,17934,2,'Applied “Draft 1”'),(123213,141925,17934,3,''),(123214,18139,17934,21,'Applied “Draft 1”'),(123215,141533,17875,23,'Applied “Draft 3”'),(123216,141533,17887,24,'Applied “Draft 3”'),(123217,20379,17887,81,'Applied “Draft 5”'),(123218,20379,17887,82,'Applied “Draft 5”'),(123219,17646,17875,13,'Applied “Draft 1”'),(123220,17646,17875,14,'Applied “Draft 1”'),(123221,18139,17887,22,'Applied “Draft 2”'),(123222,17646,17887,15,''),(123223,18139,17887,23,''),(123224,141925,17887,4,'Applied “Draft 2”'),(123225,17646,17887,16,'Applied “Draft 1”'),(123226,17646,17887,17,'Applied “Draft 1”'),(123227,17646,17875,18,'Applied “Draft 1”'),(123228,17646,17887,19,'Applied “Draft 1”'),(123229,17646,17887,20,'Applied “Draft 1”'),(123230,17646,17887,21,''),(123231,17646,17887,22,'Applied “Draft 1”'),(123232,17650,17887,16,'Applied “Draft 2”'),(123233,17646,17887,23,'Applied “Draft 1”'),(123234,44841,17887,6,'Applied “Draft 1”'),(123235,141925,17875,5,'Applied “Draft 1”'),(123236,141925,17875,6,'Applied “Draft 1”'),(123237,141925,17875,7,'Applied “Draft 1”'),(123238,18139,17875,24,'Applied “Draft 1”'),(123239,18139,17875,25,'Applied “Draft 1”'),(123240,18139,17875,26,'Applied “Draft 1”'),(123241,18139,17875,27,'Applied “Draft 1”'),(123242,18139,17875,28,'Applied “Draft 1”'),(123243,18139,17875,29,'Applied “Draft 1”'),(123244,141925,17887,8,'Applied “Draft 1”'),(123245,141925,17875,9,'Applied “Draft 1”'),(123246,141925,17875,10,'Applied “Draft 1”'),(123247,141925,17875,11,'Applied “Draft 1”'),(123248,17646,17887,24,''),(123249,44841,17887,7,'Applied “Draft 1”'),(123250,44841,17887,8,''),(123251,44841,17887,9,''),(123252,44987,17887,3,''),(123253,141533,17934,25,'Reverted content from revision 23.'),(123254,141533,17934,26,'Applied “Draft 2”'),(123255,141533,17934,27,'Applied “Draft 2”'),(123256,141533,17934,28,'Applied “Draft 2”'),(123257,141925,17934,12,'Applied “Draft 2”'),(123258,18139,17934,30,'Applied “Draft 3”'),(123259,17646,17934,25,'Applied “Draft 1”'),(123260,20379,17887,83,'Applied “Draft 5”'),(123261,17646,17934,26,'Applied “Draft 1”'),(123262,18139,17934,31,'Applied “Draft 3”'),(123263,141533,17934,29,'Applied “Draft 2”'),(123264,17646,17934,27,''),(123265,18139,17887,32,'Applied “Draft 2”'),(123266,18139,17887,33,''),(123267,18139,17887,34,''),(123268,141533,17934,30,'Applied “Draft 2”'),(123269,141312,17893,2,NULL),(123270,141314,17893,2,NULL),(123271,141316,17893,2,NULL),(123272,141318,17893,2,NULL),(123273,141320,17893,2,NULL),(123274,141322,17893,2,NULL),(123275,141324,17893,2,NULL),(123276,141326,17893,2,NULL),(123277,141328,17893,2,NULL),(123278,141330,17893,2,NULL),(123279,141332,17893,2,NULL),(123280,141334,17893,2,NULL),(123281,141336,17893,2,NULL),(123282,141338,17893,2,NULL),(123283,141340,17893,2,NULL),(123284,141342,17893,2,NULL),(123285,141344,17893,2,NULL),(123286,141346,17893,2,NULL),(123287,141348,17893,2,NULL),(123288,141350,17893,2,NULL),(123289,141352,17893,2,NULL),(123290,141354,17893,2,NULL),(123291,141356,17893,2,NULL),(123292,141358,17893,2,NULL),(123293,141360,17893,2,NULL),(123294,141362,17893,2,NULL),(123295,141364,17893,2,NULL),(123296,141366,17893,2,NULL),(123297,141368,17893,2,NULL),(123298,141370,17893,2,NULL),(123299,141372,17893,2,NULL),(123300,141374,17893,2,NULL),(123301,141376,17893,2,NULL),(123302,141378,17893,2,NULL),(123303,141380,17893,2,NULL),(123304,141382,17893,2,NULL),(123305,141384,17893,2,NULL),(123306,141386,17893,2,NULL),(123307,141388,17893,2,NULL),(123308,141390,17893,2,NULL),(123309,141392,17893,2,NULL),(123310,141394,17893,2,NULL),(123311,141396,17893,2,NULL),(123312,141398,17893,2,NULL),(123313,141400,17893,2,NULL),(123314,141402,17893,2,NULL),(123315,141404,17893,2,NULL),(123316,141406,17893,2,NULL),(123317,141408,17893,2,NULL),(123318,141410,17893,2,NULL),(123319,141412,17893,2,NULL),(123320,141414,17893,2,NULL),(123321,141416,17893,2,NULL),(123322,141418,17893,2,NULL),(123323,141420,17893,2,NULL),(123324,141422,17893,2,NULL),(123325,141424,17893,2,NULL),(123326,141426,17893,2,NULL),(123327,141428,17893,2,NULL),(123328,141430,17893,2,NULL),(123329,141432,17893,2,NULL),(123330,141434,17893,2,NULL),(123331,141436,17893,2,NULL),(123332,141438,17893,2,NULL),(123333,141440,17893,2,NULL),(123334,141442,17893,2,NULL),(123335,141444,17893,2,NULL),(123336,141446,17893,2,NULL),(123337,141448,17893,2,NULL),(123338,141450,17893,2,NULL),(123339,141452,17893,2,NULL),(123340,141454,17893,2,NULL),(123341,141456,17893,2,NULL),(123342,141458,17893,2,NULL),(123343,141460,17893,2,NULL),(123344,141462,17893,2,NULL),(123345,141464,17893,2,NULL),(123346,141466,17893,2,NULL),(123347,141468,17893,2,NULL),(123348,141470,17893,2,NULL),(123349,141472,17893,2,NULL),(123350,141474,17893,2,NULL),(123351,141476,17893,2,NULL),(123352,141478,17893,2,NULL),(123353,141312,17893,3,NULL),(123354,141314,17893,3,NULL),(123355,141316,17893,3,NULL),(123356,141318,17893,3,NULL),(123357,141320,17893,3,NULL),(123358,141322,17893,3,NULL),(123359,141324,17893,3,NULL),(123360,141326,17893,3,NULL),(123361,141328,17893,3,NULL),(123362,141330,17893,3,NULL),(123363,141332,17893,3,NULL),(123364,141334,17893,3,NULL),(123365,141336,17893,3,NULL),(123366,141338,17893,3,NULL),(123367,141340,17893,3,NULL),(123368,141342,17893,3,NULL),(123369,141344,17893,3,NULL),(123370,141346,17893,3,NULL),(123371,141348,17893,3,NULL),(123372,141350,17893,3,NULL),(123373,141352,17893,3,NULL),(123374,141354,17893,3,NULL),(123375,141356,17893,3,NULL),(123376,141358,17893,3,NULL),(123377,141360,17893,3,NULL),(123378,141362,17893,3,NULL),(123379,141364,17893,3,NULL),(123380,141366,17893,3,NULL),(123381,141368,17893,3,NULL),(123382,141370,17893,3,NULL),(123383,141372,17893,3,NULL),(123384,141374,17893,3,NULL),(123385,141376,17893,3,NULL),(123386,141378,17893,3,NULL),(123387,141380,17893,3,NULL),(123388,141382,17893,3,NULL),(123389,141384,17893,3,NULL),(123390,141386,17893,3,NULL),(123391,141388,17893,3,NULL),(123392,141390,17893,3,NULL),(123393,141392,17893,3,NULL),(123394,141394,17893,3,NULL),(123395,141396,17893,3,NULL),(123396,141398,17893,3,NULL),(123397,141400,17893,3,NULL),(123398,141402,17893,3,NULL),(123399,141404,17893,3,NULL),(123400,141406,17893,3,NULL),(123401,141408,17893,3,NULL),(123402,141410,17893,3,NULL),(123403,141412,17893,3,NULL),(123404,141414,17893,3,NULL),(123405,141416,17893,3,NULL),(123406,141418,17893,3,NULL),(123407,141420,17893,3,NULL),(123408,141422,17893,3,NULL),(123409,141424,17893,3,NULL),(123410,141426,17893,3,NULL),(123411,141428,17893,3,NULL),(123412,141430,17893,3,NULL),(123413,141432,17893,3,NULL),(123414,141434,17893,3,NULL),(123415,141436,17893,3,NULL),(123416,141438,17893,3,NULL),(123417,141440,17893,3,NULL),(123418,141442,17893,3,NULL),(123419,141444,17893,3,NULL),(123420,141446,17893,3,NULL),(123421,141448,17893,3,NULL),(123422,141450,17893,3,NULL),(123423,141452,17893,3,NULL),(123424,141454,17893,3,NULL),(123425,141456,17893,3,NULL),(123426,141458,17893,3,NULL),(123427,141460,17893,3,NULL),(123428,141462,17893,3,NULL),(123429,141464,17893,3,NULL),(123430,141466,17893,3,NULL),(123431,141468,17893,3,NULL),(123432,141470,17893,3,NULL),(123433,141472,17893,3,NULL),(123434,141474,17893,3,NULL),(123435,141476,17893,3,NULL),(123436,141478,17893,3,NULL),(123437,142243,17893,1,NULL),(123438,142245,17893,1,NULL),(123439,142247,17893,1,NULL),(123440,142251,17934,1,''),(123441,142251,17934,2,'Applied “Draft 1”'),(123442,142251,17934,3,'Applied “Draft 1”'),(123443,142258,17934,1,''),(123444,142258,17934,2,'Applied “Draft 1”'),(123445,142258,17934,3,'Applied “Draft 1”'),(123446,142251,17934,4,'Applied “Draft 1”'),(123447,142251,17934,5,''),(123448,142251,17934,6,'Applied “Draft 1”'),(123449,142251,17934,7,'Applied “Draft 1”'),(123450,142251,17934,8,'Applied “Draft 1”'),(123451,142251,17934,9,'Applied “Draft 1”'),(123452,18139,17887,35,'Applied “Draft 2”'),(123453,18139,17887,36,'Applied “Draft 2”'),(123454,141312,17893,4,NULL),(123455,141314,17893,4,NULL),(123456,141316,17893,4,NULL),(123457,141318,17893,4,NULL),(123458,141320,17893,4,NULL),(123459,141322,17893,4,NULL),(123460,141324,17893,4,NULL),(123461,141326,17893,4,NULL),(123462,141328,17893,4,NULL),(123463,141330,17893,4,NULL),(123464,141332,17893,4,NULL),(123465,141334,17893,4,NULL),(123466,141336,17893,4,NULL),(123467,141338,17893,4,NULL),(123468,141340,17893,4,NULL),(123469,141342,17893,4,NULL),(123470,141344,17893,4,NULL),(123471,141346,17893,4,NULL),(123472,141348,17893,4,NULL),(123473,141350,17893,4,NULL),(123474,141352,17893,4,NULL),(123475,141354,17893,4,NULL),(123476,141356,17893,4,NULL),(123477,141358,17893,4,NULL),(123478,141360,17893,4,NULL),(123479,141362,17893,4,NULL),(123480,141364,17893,4,NULL),(123481,141366,17893,4,NULL),(123482,141368,17893,4,NULL),(123483,141370,17893,4,NULL),(123484,141372,17893,4,NULL),(123485,141374,17893,4,NULL),(123486,141376,17893,4,NULL),(123487,141378,17893,4,NULL),(123488,141380,17893,4,NULL),(123489,141382,17893,4,NULL),(123490,141384,17893,4,NULL),(123491,141386,17893,4,NULL),(123492,141388,17893,4,NULL),(123493,141390,17893,4,NULL),(123494,141392,17893,4,NULL),(123495,141394,17893,4,NULL),(123496,141396,17893,4,NULL),(123497,141398,17893,4,NULL),(123498,141400,17893,4,NULL),(123499,141402,17893,4,NULL),(123500,141404,17893,4,NULL),(123501,141406,17893,4,NULL),(123502,141408,17893,4,NULL),(123503,141410,17893,4,NULL),(123504,141412,17893,4,NULL),(123505,141414,17893,4,NULL),(123506,141416,17893,4,NULL),(123507,141418,17893,4,NULL),(123508,141420,17893,4,NULL),(123509,141422,17893,4,NULL),(123510,141424,17893,4,NULL),(123511,141426,17893,4,NULL),(123512,141428,17893,4,NULL),(123513,141430,17893,4,NULL),(123514,141432,17893,4,NULL),(123515,141434,17893,4,NULL),(123516,141436,17893,4,NULL),(123517,141438,17893,4,NULL),(123518,141440,17893,4,NULL),(123519,141442,17893,4,NULL),(123520,141444,17893,4,NULL),(123521,141446,17893,4,NULL),(123522,141448,17893,4,NULL),(123523,141450,17893,4,NULL),(123524,141452,17893,4,NULL),(123525,141454,17893,4,NULL),(123526,141456,17893,4,NULL),(123527,141458,17893,4,NULL),(123528,141460,17893,4,NULL),(123529,141462,17893,4,NULL),(123530,141464,17893,4,NULL),(123531,141466,17893,4,NULL),(123532,141468,17893,4,NULL),(123533,141470,17893,4,NULL),(123534,141472,17893,4,NULL),(123535,141474,17893,4,NULL),(123536,141476,17893,4,NULL),(123537,141478,17893,4,NULL),(123538,142243,17893,2,NULL),(123539,142245,17893,2,NULL),(123540,142247,17893,2,NULL),(123541,142247,17893,3,'Applied “Draft 1”'),(123542,142247,17893,4,'Applied “Draft 1”'),(123543,142375,17934,1,NULL),(123545,141725,17934,21,'Applied “Draft 3”'),(123546,141725,17934,22,'Applied “Draft 3”'),(123547,141725,17934,23,''),(123607,48011,17934,71,'Applied “Draft 3”'),(123608,48011,17934,72,'Applied “Draft 3”'),(123609,48011,17934,73,'Applied “Draft 3”'),(123610,48011,17934,74,'Applied “Draft 3”'),(123611,48011,17934,75,'Applied “Draft 3”'),(123612,48011,17934,76,'Applied “Draft 3”'),(123613,48011,17934,77,'Applied “Draft 3”'),(123614,48011,17934,78,'Applied “Draft 3”'),(123615,48011,17934,79,'Applied “Draft 3”'),(123616,48011,17934,80,'Applied “Draft 3”'),(123617,48011,17934,81,'Applied “Draft 3”'),(123618,48011,17934,82,'Applied “Draft 3”'),(123619,48011,17934,83,'Applied “Draft 3”'),(123620,48011,17934,84,'Applied “Draft 3”'),(123621,48011,17934,85,'Applied “Draft 3”'),(123622,48011,17934,86,'Applied “Draft 3”'),(123623,48011,17934,87,'Applied “Draft 3”'),(123624,48011,17934,88,'Applied “Draft 3”'),(123625,48011,17934,89,'Applied “Draft 3”'),(123626,48011,17934,90,'Applied “Draft 3”'),(123627,48011,17934,91,'Applied “Draft 3”'),(123628,48011,17887,92,'Applied “Draft 3”'),(123629,48011,17887,93,'Applied “Draft 3”'),(123630,48011,17934,94,''),(123631,48011,17887,95,''),(123632,48011,17934,96,''),(123633,48011,17934,97,'Reverted content from revision 95.'),(123634,48011,17934,98,'Applied “Draft 3”'),(123636,48011,17934,99,'Applied “Draft 4”'),(123637,48011,17934,100,'Applied “Draft 4”'),(123638,141533,17887,31,'Applied “Draft 3”'),(123639,141533,17887,32,'Applied “Draft 3”'),(123640,141533,17887,33,'Applied “Draft 3”'),(123641,141533,17887,34,'Applied “Draft 3”'),(123642,141533,17934,35,'Applied “Draft 2”'),(123643,141533,17934,36,''),(123644,48011,17887,101,'Applied “Draft 3”'),(123645,141533,17887,37,'Applied “Draft 2”'),(123646,142251,17887,10,'Applied “Draft 2”'),(123647,48011,17887,102,'Applied “Draft 3”'),(123648,48011,17887,103,'Applied “Draft 3”'),(123649,48011,17887,104,''),(123650,48011,17887,105,'Applied “Draft 3”'),(123651,48011,17875,106,'Applied “Draft 3”'),(123652,48011,17875,107,'Applied “Draft 3”'),(123653,142251,17934,11,'Applied “Draft 1”'),(123654,141533,17934,38,'Applied “Draft 2”'),(123655,141533,17887,39,'Applied “Draft 2”'),(123656,141533,17887,40,'Applied “Draft 2”'),(123657,141533,17887,41,'Applied “Draft 2”'),(123658,141533,17887,42,'Applied “Draft 2”'),(123659,141533,17887,43,'Applied “Draft 2”'),(123665,48011,17887,108,'Applied “Draft 3”'),(123666,142251,17887,12,'Applied “Draft 1”'),(123667,141533,17887,44,'Applied “Draft 3”'),(123669,141533,17887,45,'Applied “Draft 3”'),(123670,141533,17887,46,'Applied “Draft 3”'),(123671,142251,17887,13,''),(123673,20379,17887,84,'Applied “Draft 5”'),(123674,142258,17934,4,'Applied “Draft 2”'),(123675,142258,17934,5,'Applied “Draft 2”'),(123676,142258,17934,6,'Applied “Draft 2”'),(123677,142258,17934,7,''),(123678,142258,17934,8,'Applied “Draft 2”'),(123679,142258,17934,9,''),(123680,142258,17887,10,'Reverted content from revision 8.'),(123681,142258,17887,11,'Reverted content from revision 9.'),(123682,17692,17887,16,'Applied “Draft 1”'),(123683,17692,17887,17,'Applied “Draft 1”'),(123684,142676,17934,1,NULL),(123685,142251,17934,14,'Applied “Draft 1”'),(123686,142251,17934,15,'Applied “Draft 1”'),(123687,17692,17887,18,'Applied “Draft 1”'),(123688,17692,17887,19,'Applied “Draft 1”'),(123689,17692,17887,20,'Applied “Draft 1”'),(123690,17692,17887,21,'Applied “Draft 1”'),(123691,17692,17887,22,'Applied “Draft 1”'),(123692,17692,17887,23,'Applied “Draft 1”'),(123693,17692,17887,24,'Applied “Draft 1”'),(123694,17692,17887,25,''),(123695,142258,17893,12,'Applied “Draft 3”'),(123696,142258,17934,13,'Applied “Draft 2”'),(123697,142258,17934,14,'Applied “Draft 2”'),(123698,142258,17934,15,'Applied “Draft 2”'),(123699,142258,17887,16,'Applied “Draft 1”'),(123700,142258,17887,17,'Reverted content from revision 15.'),(123701,142258,17887,18,''),(123702,142258,17887,19,'Applied “Draft 1”'),(123703,140246,17875,11,'Reverted content from revision 9.'),(123704,140246,17875,12,'Reverted content from revision 10.'),(123705,140246,17875,13,'Applied “Draft 4”'),(123706,142717,142716,1,NULL),(123708,142722,142716,1,NULL),(123709,142717,142716,2,'Applied “Draft 1”'),(123710,142717,142716,3,'Applied “Draft 1”'),(123711,142717,142716,4,'Applied “Draft 1”'),(123712,142717,142716,5,'Applied “Draft 1”'),(123713,142717,142716,6,'Applied “Draft 1”'),(123714,142717,142716,7,'Applied “Draft 1”'),(123715,142717,142716,8,'Applied “Draft 1”'),(123716,142717,142716,9,'Applied “Draft 1”'),(123717,142717,142716,10,'Applied “Draft 1”'),(123718,142717,142716,11,'Applied “Draft 1”'),(123719,142717,142716,12,'Applied “Draft 1”'),(123720,142717,142716,13,'Applied “Draft 1”'),(123721,142717,142716,14,'Applied “Draft 1”'),(123722,142717,142716,15,'Applied “Draft 1”'),(123723,142717,142716,16,'Applied “Draft 2”'),(123724,141533,17887,47,'Applied “Draft 3”'),(123725,48011,17887,109,'Applied “Draft 3”'),(123726,48011,17887,110,'Applied “Draft 3”'),(123727,48011,17887,111,'Applied “Draft 3”'),(123728,48011,17887,112,'Applied “Draft 3”'),(123729,48011,17887,113,'Applied “Draft 3”'),(123730,48011,17887,114,''),(123731,141533,17887,48,'Applied “Draft 3”'),(123732,142717,17934,17,'Applied “Draft 3”'),(123733,142676,17934,2,''),(123734,74276,17875,15,'Applied “Draft 1”'),(123735,140246,17893,14,'Applied “Draft 2”'),(123736,140246,17893,15,'Reverted content from revision 13.'),(123737,140246,17893,16,'Reverted content from revision 13.'),(123738,140246,17893,17,'Applied “Draft 2”'),(123739,140246,17875,18,'Reverted content from revision 13.'),(123740,140246,17875,19,'Applied “Draft 4”'),(123741,140246,17875,20,'Applied “Draft 4”'),(123742,140246,17875,21,'Applied “Draft 4”'),(123743,17692,17934,26,'Applied “Draft 1”'),(123744,142801,17934,1,''),(123745,17692,17934,27,'Applied “Draft 1”'),(123746,141533,17934,49,'Applied “Draft 2”'),(123747,142258,17934,20,'Applied “Draft 1”'),(123748,142258,17934,21,'Applied “Draft 1”'),(123749,142258,17934,22,'Applied “Draft 1”'),(123750,142258,17934,23,'Applied “Draft 1”'),(123751,17692,17934,28,'Applied “Draft 1”'),(123752,48011,17934,115,'Applied “Draft 3”'),(123753,48011,17934,116,'Applied “Draft 3”'),(123754,17692,17934,29,'Applied “Draft 1”'),(123755,142833,17934,1,''),(123756,48011,17887,117,''),(123757,20379,17887,85,'Applied “Draft 5”'),(123758,17692,17887,30,''),(123759,141533,17887,50,'Applied “Draft 2”'),(123760,142847,17934,1,''),(123761,142847,17934,2,'Applied “Draft 1”'),(123762,142847,17934,3,'Applied “Draft 1”'),(123763,142847,17934,4,'Applied “Draft 1”'),(123764,142847,17934,5,'Applied “Draft 1”'),(123765,74276,17875,16,'Applied “Draft 1”'),(123766,74276,17875,17,'Applied “Draft 1”'),(123767,74276,17875,18,'Applied “Draft 1”'),(123768,74276,17875,19,'Applied “Draft 1”'),(123769,74276,17875,20,'Applied “Draft 1”'),(123770,74276,17875,21,'Applied “Draft 1”'),(123771,142258,17887,24,'Applied “Draft 1”'),(123772,142847,17934,6,'Applied “Draft 1”'),(123773,142847,17934,7,'Applied “Draft 1”'),(123774,142847,17934,8,'Applied “Draft 1”'),(123775,142847,17934,9,''),(123776,142847,17934,10,'Applied “Draft 2”'),(123777,142847,17934,11,'Applied “Draft 2”'),(123778,142847,17934,12,'Applied “Draft 2”'),(123779,142847,17934,13,''),(123780,142847,17934,14,'Applied “Draft 2”'),(123781,142801,17875,2,''),(123782,142847,17934,15,'Applied “Draft 2”'),(123783,142847,17887,16,'Applied “Draft 1”'),(123784,142847,17887,17,''),(123785,142901,17934,1,''),(123786,142901,17934,2,'Applied “Draft 1”'),(123787,142901,17934,3,''),(123788,141533,17887,51,'Applied “Draft 2”'),(123789,141533,17887,52,''),(123790,142901,17934,4,'Applied “Draft 1”'),(123791,142901,17887,5,''),(123792,141533,17887,53,'Applied “Draft 2”'),(123793,141533,17887,54,'Applied “Draft 3”'),(123794,141533,17887,55,'Applied “Draft 3”'),(123795,142847,140513,18,'Applied “Draft 1”'),(123796,74276,17875,22,'Applied “Draft 1”'),(123797,74276,17875,23,'Applied “Draft 1”'),(123798,141533,17887,56,'Applied “Draft 3”'),(123799,141533,17887,57,'Applied “Draft 3”'),(123800,141533,17934,58,'Applied “Draft 3”'),(123801,141533,17934,59,'Applied “Draft 4”'),(123802,141533,17934,60,'Applied “Draft 4”'),(123803,20379,17887,86,'Applied “Draft 5”'),(123804,20379,17887,87,'Applied “Draft 5”'),(123805,48011,17887,118,'Applied “Draft 3”'),(123806,142901,17875,6,'Applied “Draft 1”'),(123807,142847,17887,19,'Applied “Draft 1”'),(123808,142901,17887,7,'Applied “Draft 1”'),(123809,142901,17887,8,'Applied “Draft 1”'),(123810,142258,17887,25,'Applied “Draft 1”'),(123811,142676,17887,3,'Applied “Draft 1”'),(123812,141925,17887,13,'Applied “Draft 1”'),(123813,141725,17887,24,'Applied “Draft 2”'),(123814,142251,17887,16,'Applied “Draft 1”'),(123815,142833,17887,2,'Applied “Draft 2”'),(123816,142901,17887,9,''),(123817,141533,17887,61,'Applied “Draft 3”'),(123818,141533,17887,62,'Applied “Draft 3”'),(123819,142875,17934,1,''),(123820,142875,17887,2,'Applied “Draft 2”'),(123821,48011,17934,119,'Applied “Draft 3”'),(123822,48011,17887,120,'Applied “Draft 4”'),(123823,142875,17934,3,'Applied “Draft 1”'),(123824,142875,17887,4,'Applied “Draft 1”'),(123825,142901,17934,10,'Applied “Draft 1”'),(123826,142901,17934,11,'Applied “Draft 1”'),(123827,142901,17887,12,'Applied “Draft 1”'),(123828,142901,17887,13,''),(123829,142875,17887,5,'Applied “Draft 2”'),(123830,142875,17887,6,'Applied “Draft 2”'),(123831,141533,17887,63,'Applied “Draft 3”'),(123832,142847,17875,20,'Applied “Draft 1”'),(123833,142875,17887,7,'Applied “Draft 2”'),(123834,17678,140513,15,'Applied “Draft 1”'),(123835,20379,17887,88,'Applied “Draft 5”'),(123836,143021,17875,1,''),(123837,143021,17875,2,'Applied “Draft 1”'),(123838,143021,17875,3,'Applied “Draft 1”'),(123839,143021,17875,4,'Applied “Draft 1”'),(123840,143021,17875,5,''),(123841,74276,17875,24,'Applied “Draft 1”'),(123842,74276,17875,25,''),(123843,143060,17887,1,''),(123844,143060,17887,2,'Applied “Draft 1”'),(123845,143060,17887,3,'Applied “Draft 1”'),(123846,143060,17887,4,NULL),(123847,143069,140513,1,NULL),(123848,143069,140513,2,NULL),(123849,143069,140513,3,NULL),(123850,143069,140513,4,'Applied “Draft 1”'),(123851,143069,17887,5,'Applied “Draft 1”'),(123852,143069,17887,6,''),(123853,143080,17875,1,''),(123854,143080,17875,2,'Applied “Draft 1”'),(123855,143080,17875,3,'Applied “Draft 1”'),(123856,143080,17875,4,'Applied “Draft 1”'),(123857,143080,140513,5,'Applied “Draft 1”'),(123858,143080,140513,6,'Applied “Draft 1”'),(123859,143080,140513,7,'Applied “Draft 1”'),(123860,143080,140513,8,'Applied “Draft 1”'),(123861,143080,140513,9,'Applied “Draft 1”'),(123862,143080,17875,10,''),(123863,20379,140513,89,'Applied “Draft 6”'),(123864,20379,140513,90,'Applied “Draft 6”'),(123865,20379,17875,91,'Applied “Draft 5”'),(123866,21297,17875,27,'Applied “Draft 1”'),(123867,141533,17887,64,'Applied “Draft 4”'),(123868,141533,17887,65,'Applied “Draft 4”'),(123869,141533,17887,66,'Applied “Draft 4”'),(123870,143139,17887,1,''),(123871,143139,17887,2,'Applied “Draft 1”'),(123872,143139,17887,3,'Applied “Draft 1”'),(123873,143139,17887,4,''),(123874,143139,17887,5,'Applied “Draft 1”'),(123875,141533,17887,67,'Applied “Draft 4”'),(123876,143153,17934,1,NULL),(123877,142875,17934,8,'Applied “Draft 3”'),(123878,142875,17887,9,'Applied “Draft 3”'),(123879,143139,17887,6,'Applied “Draft 1”'),(123880,141533,17887,68,'Applied “Draft 4”'),(123881,141533,17887,69,'Applied “Draft 4”'),(123882,142875,17887,10,'Applied “Draft 3”'),(123883,142901,17887,14,''),(123884,142258,17887,26,''),(123885,142251,17887,17,'Applied “Draft 1”'),(123886,142833,17887,3,''),(123887,142875,17934,11,'Applied “Draft 3”'),(123888,142875,17934,12,'Applied “Draft 3”'),(123889,142875,17934,13,'Applied “Draft 3”'),(123890,142875,17934,14,'Applied “Draft 3”'),(123891,142875,17934,15,'Applied “Draft 3”'),(123892,142875,17934,16,'Applied “Draft 3”'),(123893,142875,17934,17,'Applied “Draft 3”'),(123894,142875,17934,18,'Applied “Draft 3”'),(123895,142875,17887,19,'Applied “Draft 3”'),(123896,143139,17887,7,''),(123897,142875,17887,20,'Applied “Draft 3”'),(123898,143139,17887,8,'Applied “Draft 1”'),(123899,143139,17887,9,'Applied “Draft 1”'),(123900,143139,17887,10,''),(123901,143139,17887,11,'Applied “Draft 1”'),(123902,142875,17887,21,'Applied “Draft 3”'),(123903,141533,17887,70,'Applied “Draft 4”'),(123904,141533,17887,71,'Applied “Draft 4”'),(123905,141533,17887,72,'Applied “Draft 4”'),(123906,143139,17887,12,'Applied “Draft 1”'),(123907,142847,17887,21,'Applied “Draft 1”'),(123908,142847,17887,22,'Applied “Draft 1”');
/*!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,'email',0,1,' digital newwordorder com au '),(1,'firstname',0,1,' ryan '),(1,'fullname',0,1,' ryan murray '),(1,'lastname',0,1,' murray '),(1,'slug',0,1,''),(1,'username',0,1,' ryan '),(14833,'slug',0,1,''),(14833,'title',0,1,' james mcilwraith brand audit '),(16571,'field',164,1,' our goal was to position and powerfully differentiate this business from its competitors the branding achieves this and binds revelians internal team more closely to its purpose and business objectives in doing so it ensures current and prospective customers and partners can access understand and most importantly prefer revelian and its offering overall our rollout for revelian was staged and achievable allowing the client to adjust and update their brand over time this approach remains cost effective for our client and has allowed us to work with them closely with key stakeholders to ensure we are meeting their needs and creating value for their investment the revelian brand story centres around the stories of their prospective customers those who require business talent identification and assessment revelians narrative guides these customers along a compelling journey it reads like any good treasure hunt should the hunter driven by the thrill of next step and the genuine promise of quality and authenticity the intrigue and complexity of human behaviour is a fascinating topic that most of us explore throughout our daily life and work revelian uncovers the hidden delves inside and goes beneath the surface to reveal the truth inside people for businesses and organisations wanting to hire people well and utilise them well as we refreshed their brand we wrapped every element in the concept of reveal the idea flows consistently throughout every aspect of the revelian brand well start on the surface and delve deeper into the intrigue of human behaviour and insights for hiring and people management solutions while the logo remains simple strong and typographic the visual elements have starring roles using filters colours photography and myriad gorgeous design treatments they show and tell how the company reveals its precious insights our successful working relationship with the client has been key to forming the initial strategy for their brand development website collateral and exhibition development our team of creatives developers and content specialists have enjoyed walking through this journey with revelian the insights weve gained from this partnership have allowed us to produce work that performs to a very high standard within the agreed upon scope budget and timeframe after refreshing their brand we began redeveloping the revelian website to start with we created a content strategy based on customer journeys and key messages our team of content specialists worked with the client to edit and review web copy for pages on the website with copy and wireframes ready and approved for development our digital team applied the refreshed branding across the website '),(16571,'slug',0,1,' revelian '),(16571,'title',0,1,' revelian '),(16574,'slug',0,1,''),(16579,'slug',0,1,''),(16581,'slug',0,1,''),(16590,'slug',0,1,''),(16591,'slug',0,1,''),(16593,'slug',0,1,''),(16594,'slug',0,1,''),(16596,'slug',0,1,''),(16597,'slug',0,1,''),(16605,'slug',0,1,''),(16606,'slug',0,1,''),(16608,'slug',0,1,''),(16609,'slug',0,1,''),(16621,'slug',0,1,''),(16622,'slug',0,1,''),(16623,'slug',0,1,''),(16629,'extension',0,1,' jpg '),(16629,'filename',0,1,' revelian 1 jpg '),(16629,'kind',0,1,' image '),(16629,'slug',0,1,''),(16629,'title',0,1,' revelian 1 '),(16630,'extension',0,1,' jpg '),(16630,'filename',0,1,' revelian 2 jpg '),(16630,'kind',0,1,' image '),(16630,'slug',0,1,''),(16630,'title',0,1,' revelian 2 '),(16639,'slug',0,1,''),(16640,'slug',0,1,''),(16641,'slug',0,1,''),(16648,'extension',0,1,' jpg '),(16648,'filename',0,1,' revelian 3 jpg '),(16648,'kind',0,1,' image '),(16648,'slug',0,1,''),(16648,'title',0,1,' revelian 3 '),(16655,'slug',0,1,''),(16656,'slug',0,1,''),(16657,'slug',0,1,''),(16658,'slug',0,1,''),(16665,'extension',0,1,' jpg '),(16665,'filename',0,1,' revelian 4 jpg '),(16665,'kind',0,1,' image '),(16665,'slug',0,1,''),(16665,'title',0,1,' revelian 4 '),(16669,'extension',0,1,' jpg '),(16669,'filename',0,1,' revelian 5 jpg '),(16669,'kind',0,1,' image '),(16669,'slug',0,1,''),(16669,'title',0,1,' revelian 5 '),(16675,'extension',0,1,' jpg '),(16675,'filename',0,1,' revelian 6 jpg '),(16675,'kind',0,1,' image '),(16675,'slug',0,1,''),(16675,'title',0,1,' revelian 6 '),(16683,'extension',0,1,' jpg '),(16683,'filename',0,1,' revelian 7 jpg '),(16683,'kind',0,1,' image '),(16683,'slug',0,1,''),(16683,'title',0,1,' revelian 7 '),(16693,'extension',0,1,' jpg '),(16693,'filename',0,1,' revelian 8 jpg '),(16693,'kind',0,1,' image '),(16693,'slug',0,1,''),(16693,'title',0,1,' revelian 8 '),(16705,'extension',0,1,' jpg '),(16705,'filename',0,1,' revelian 9 jpg '),(16705,'kind',0,1,' image '),(16705,'slug',0,1,''),(16705,'title',0,1,' revelian 9 '),(16719,'extension',0,1,' jpg '),(16719,'filename',0,1,' revelian 10 jpg '),(16719,'kind',0,1,' image '),(16719,'slug',0,1,''),(16719,'title',0,1,' revelian 10 '),(16735,'extension',0,1,' jpg '),(16735,'filename',0,1,' revelian 12 jpg '),(16735,'kind',0,1,' image '),(16735,'slug',0,1,''),(16735,'title',0,1,' revelian 12 '),(16744,'slug',0,1,''),(16745,'slug',0,1,''),(16746,'slug',0,1,''),(16747,'slug',0,1,''),(16748,'slug',0,1,''),(16749,'slug',0,1,''),(16750,'slug',0,1,''),(16751,'slug',0,1,''),(16752,'slug',0,1,''),(16753,'slug',0,1,''),(16754,'slug',0,1,''),(16755,'slug',0,1,''),(16757,'slug',0,1,''),(16758,'slug',0,1,''),(16759,'slug',0,1,''),(16760,'slug',0,1,''),(16761,'slug',0,1,''),(16762,'slug',0,1,''),(16763,'slug',0,1,''),(16764,'slug',0,1,''),(16765,'slug',0,1,''),(16766,'slug',0,1,''),(16767,'slug',0,1,''),(16768,'slug',0,1,''),(16770,'slug',0,1,''),(16771,'slug',0,1,''),(16772,'slug',0,1,''),(16773,'slug',0,1,''),(16774,'slug',0,1,''),(16775,'slug',0,1,''),(16776,'slug',0,1,''),(16777,'slug',0,1,''),(16778,'slug',0,1,''),(16779,'slug',0,1,''),(16780,'slug',0,1,''),(16781,'slug',0,1,''),(16783,'slug',0,1,''),(16784,'slug',0,1,''),(16785,'slug',0,1,''),(16786,'slug',0,1,''),(16787,'slug',0,1,''),(16788,'slug',0,1,''),(16789,'slug',0,1,''),(16790,'slug',0,1,''),(16791,'slug',0,1,''),(16792,'slug',0,1,''),(16793,'slug',0,1,''),(16794,'slug',0,1,''),(16795,'slug',0,1,' revelian '),(16795,'title',0,1,' revelian '),(16797,'slug',0,1,''),(16798,'slug',0,1,''),(16799,'slug',0,1,''),(16800,'slug',0,1,''),(16801,'slug',0,1,''),(16802,'slug',0,1,''),(16803,'slug',0,1,''),(16804,'slug',0,1,''),(16805,'slug',0,1,''),(16806,'slug',0,1,''),(16807,'slug',0,1,''),(16808,'slug',0,1,''),(16811,'slug',0,1,''),(16812,'slug',0,1,''),(16813,'slug',0,1,''),(16814,'slug',0,1,''),(16815,'slug',0,1,''),(16816,'slug',0,1,''),(16817,'slug',0,1,''),(16818,'slug',0,1,''),(16819,'slug',0,1,''),(16820,'slug',0,1,''),(16821,'slug',0,1,''),(16822,'slug',0,1,''),(16824,'extension',0,1,' jpeg '),(16824,'filename',0,1,' dfv feature jpeg '),(16824,'kind',0,1,' image '),(16824,'slug',0,1,''),(16824,'title',0,1,' dfv feature '),(16826,'extension',0,1,' gif '),(16826,'filename',0,1,' dfv 2 gif '),(16826,'kind',0,1,' image '),(16826,'slug',0,1,''),(16826,'title',0,1,' dfv 2 '),(16828,'field',164,1,' to help slow the spread of covid 19 queenslanders are spending more time at home but home isnt always a safe place everyone deserves to feel safe domestic and family violence is never acceptable help and support are available this is the campaign message the queensland government commissioned us to develop as the impact of covid 19 rippled across our state we started the project by researching dfv campaigns in australia and around the world our diverse target market included adult queenslanders 18 who are affected by domestic and family violence people experiencing domestic and family violence people who become aware of domestic and family violence occurring young queenslanders 13 17 years old who may be affected by domestic and family violence in their household rather than describe exactly what dfv might look like the scripts and campaign advertisements echo the thoughts and feelings of those experiencing or observing dfv the copy style is concise informal and written to an individual dfv is complex and often hard to identify we unpacked the different dimensions of dfv and always pointed the reader or viewer to help and support our messages were targeted to a diverse queensland audience we aimed to capture the human experience and emotions of dfv through the voice and style of the copy our creative team completed an environmental scan to develop three design concepts with strategic choices in colours symbols typography and iconography the icons are simple and symbolic we were careful to avoid using the human figure or gender specific shapes to symbolise violent or threatening behaviours instead our goal was to capture the far reaching effect of domestic violence in the home and family through clean and minimal iconography colours and shapes we used brand colours strategically ensuring they were striking but not aggressive or alarming wherever possible we avoided dark colours and shadows when directing the animation style we wanted to convey the key messages of the campaign clearly and quickly the morphing animation style is eye catching and interesting the morphing shapes also efficiently unpack important messages to the viewer complementing and supporting the messages in the video voiceover after the success of our 2020 launch we rolled out a new iteration in 2021 that focused more on the non physical forms of domestic and family violence this includes behaviour around controlling or monitoring finances technology and social interactions our goal to raise awareness and understanding of these forms of abuse and communicate the seriousness of these behaviours work of this kind speaks straight to our purpose as an agency to make a meaningful impact to peoples lives our team is proud to have been involved supporting families in our local community '),(16828,'slug',0,1,' dfv campaign '),(16828,'title',0,1,' domestic and family violence '),(16831,'slug',0,1,''),(16833,'slug',0,1,''),(16834,'slug',0,1,' queensland government '),(16834,'title',0,1,' queensland government '),(16837,'slug',0,1,''),(16838,'extension',0,1,' jpeg '),(16838,'filename',0,1,' dfv 3 jpeg '),(16838,'kind',0,1,' image '),(16838,'slug',0,1,''),(16838,'title',0,1,' dfv 3 '),(16839,'extension',0,1,' jpeg '),(16839,'filename',0,1,' dfv 4 jpeg '),(16839,'kind',0,1,' image '),(16839,'slug',0,1,''),(16839,'title',0,1,' dfv 4 '),(16840,'extension',0,1,' jpeg '),(16840,'filename',0,1,' dfv 5 jpeg '),(16840,'kind',0,1,' image '),(16840,'slug',0,1,''),(16840,'title',0,1,' dfv 5 '),(16842,'slug',0,1,''),(16845,'slug',0,1,''),(16846,'slug',0,1,''),(16849,'slug',0,1,''),(16850,'slug',0,1,''),(16853,'slug',0,1,''),(16854,'slug',0,1,''),(16857,'slug',0,1,''),(16858,'slug',0,1,''),(16862,'slug',0,1,''),(16863,'slug',0,1,''),(16866,'slug',0,1,' b2b '),(16866,'title',0,1,' b2b '),(16867,'slug',0,1,' brand '),(16867,'title',0,1,' brand '),(16868,'slug',0,1,' business to business '),(16868,'title',0,1,' business to business '),(16869,'slug',0,1,' campaign '),(16869,'title',0,1,' campaign '),(16870,'slug',0,1,' marketing '),(16870,'title',0,1,' marketing '),(16871,'slug',0,1,' niche market '),(16871,'title',0,1,' niche market '),(16872,'slug',0,1,' vertical market '),(16872,'title',0,1,' vertical market '),(16875,'slug',0,1,' case study '),(16875,'title',0,1,' case study '),(16876,'slug',0,1,' client focus '),(16876,'title',0,1,' client focus '),(16877,'slug',0,1,' client service '),(16877,'title',0,1,' client service '),(16880,'slug',0,1,' business '),(16880,'title',0,1,' business '),(16881,'slug',0,1,' language '),(16881,'title',0,1,' language '),(16882,'slug',0,1,' logic '),(16882,'title',0,1,' logic '),(16883,'slug',0,1,' project management '),(16883,'title',0,1,' project management '),(16886,'slug',0,1,' journalism '),(16886,'title',0,1,' journalism '),(16887,'slug',0,1,' media '),(16887,'title',0,1,' media '),(16888,'slug',0,1,' reporting '),(16888,'title',0,1,' reporting '),(16889,'slug',0,1,' writing '),(16889,'title',0,1,' writing '),(16892,'slug',0,1,' communication '),(16892,'title',0,1,' communication '),(16893,'slug',0,1,' jargon '),(16893,'title',0,1,' jargon '),(16896,'slug',0,1,' leadership '),(16896,'title',0,1,' leadership '),(16897,'slug',0,1,' management '),(16897,'title',0,1,' management '),(16900,'slug',0,1,' gen y '),(16900,'title',0,1,' gen y '),(16901,'slug',0,1,' people '),(16901,'title',0,1,' people '),(16902,'slug',0,1,' social media '),(16902,'title',0,1,' social media '),(16903,'slug',0,1,' strategy '),(16903,'title',0,1,' strategy '),(16904,'slug',0,1,' target audience '),(16904,'title',0,1,' target audience '),(16907,'slug',0,1,' copywriting '),(16907,'title',0,1,' copywriting '),(16908,'slug',0,1,' hero '),(16908,'title',0,1,' hero '),(16911,'slug',0,1,' content '),(16911,'title',0,1,' content '),(16912,'slug',0,1,' content marketing '),(16912,'title',0,1,' content marketing '),(16915,'slug',0,1,' collaboration '),(16915,'title',0,1,' collaboration '),(16918,'slug',0,1,' creative '),(16918,'title',0,1,' creative '),(16919,'slug',0,1,' creative agency '),(16919,'title',0,1,' creative agency '),(16920,'slug',0,1,' human '),(16920,'title',0,1,' human '),(16923,'slug',0,1,' experience '),(16923,'title',0,1,' experience '),(16926,'slug',0,1,' pitch '),(16926,'title',0,1,' pitch '),(16927,'slug',0,1,' tender '),(16927,'title',0,1,' tender '),(16930,'slug',0,1,' branding '),(16930,'title',0,1,' branding '),(16931,'slug',0,1,' design '),(16931,'title',0,1,' design '),(16932,'slug',0,1,' photoshoot '),(16932,'title',0,1,' photoshoot '),(16933,'slug',0,1,' stock photography '),(16933,'title',0,1,' stock photography '),(16936,'slug',0,1,' best practice '),(16936,'title',0,1,' best practice '),(16937,'slug',0,1,' digital '),(16937,'title',0,1,' digital '),(16938,'slug',0,1,' structure '),(16938,'title',0,1,' structure '),(16939,'slug',0,1,' web copy '),(16939,'title',0,1,' web copy '),(16942,'slug',0,1,' advertising '),(16942,'title',0,1,' advertising '),(16947,'slug',0,1,' sme '),(16947,'title',0,1,' sme '),(16950,'slug',0,1,' website '),(16950,'title',0,1,' website '),(16953,'slug',0,1,' maccas '),(16953,'title',0,1,' maccas '),(16954,'slug',0,1,' mcdonalds '),(16954,'title',0,1,' mcdonalds '),(16955,'slug',0,1,' tell '),(16955,'title',0,1,' tell '),(16956,'slug',0,1,' truth '),(16956,'title',0,1,' truth '),(16959,'slug',0,1,' b2c '),(16959,'title',0,1,' b2c '),(16960,'slug',0,1,' h2h '),(16960,'title',0,1,' h2h '),(16963,'slug',0,1,' aggregated content '),(16963,'title',0,1,' aggregated content '),(16964,'slug',0,1,' content creation '),(16964,'title',0,1,' content creation '),(16965,'slug',0,1,' content curation '),(16965,'title',0,1,' content curation '),(16966,'slug',0,1,' thought leadership '),(16966,'title',0,1,' thought leadership '),(16969,'slug',0,1,' data '),(16969,'title',0,1,' data '),(16970,'slug',0,1,' engagement '),(16970,'title',0,1,' engagement '),(16971,'slug',0,1,' growth '),(16971,'title',0,1,' growth '),(16972,'slug',0,1,' measuring '),(16972,'title',0,1,' measuring '),(16973,'slug',0,1,' roi '),(16973,'title',0,1,' roi '),(16974,'slug',0,1,' sales '),(16974,'title',0,1,' sales '),(16977,'slug',0,1,' video '),(16977,'title',0,1,' video '),(17008,'slug',0,1,' iwd 2021 '),(17008,'title',0,1,' iwd 2021 '),(17045,'extension',0,1,' jpg '),(17045,'filename',0,1,' mario calvo 345 unsplash jpg '),(17045,'kind',0,1,' image '),(17045,'slug',0,1,''),(17045,'title',0,1,' mario calvo 345 unsplash '),(17046,'extension',0,1,' jpg '),(17046,'filename',0,1,' inanc avadit 571215 unsplash jpg '),(17046,'kind',0,1,' image '),(17046,'slug',0,1,''),(17046,'title',0,1,' inanc avadit 571215 unsplash '),(17047,'extension',0,1,' jpg '),(17047,'filename',0,1,' felix russell saw 609926 unsplash jpg '),(17047,'kind',0,1,' image '),(17047,'slug',0,1,''),(17047,'title',0,1,' felix russell saw 609926 unsplash '),(17048,'extension',0,1,' jpg '),(17048,'filename',0,1,' christin hume 482896 unsplash jpg '),(17048,'kind',0,1,' image '),(17048,'slug',0,1,''),(17048,'title',0,1,' christin hume 482896 unsplash '),(17049,'extension',0,1,' jpg '),(17049,'filename',0,1,' chris lee 654655 unsplash jpg '),(17049,'kind',0,1,' image '),(17049,'slug',0,1,''),(17049,'title',0,1,' chris lee 654655 unsplash '),(17050,'extension',0,1,' jpg '),(17050,'filename',0,1,' rawpixel 603021 unsplash jpg '),(17050,'kind',0,1,' image '),(17050,'slug',0,1,''),(17050,'title',0,1,' rawpixel 603021 unsplash '),(17051,'extension',0,1,' png '),(17051,'filename',0,1,' suncoast farms logo white cmyk png '),(17051,'kind',0,1,' image '),(17051,'slug',0,1,''),(17051,'title',0,1,' suncoast farms logo white cmyk '),(17052,'extension',0,1,' jpg '),(17052,'filename',0,1,' medicalmums 3 jpg '),(17052,'kind',0,1,' image '),(17052,'slug',0,1,''),(17052,'title',0,1,' medicalmums 3 '),(17053,'extension',0,1,' jpg '),(17053,'filename',0,1,' medical mums feature jpg '),(17053,'kind',0,1,' image '),(17053,'slug',0,1,''),(17053,'title',0,1,' medical mums feature '),(17054,'extension',0,1,' jpg '),(17054,'filename',0,1,' nwo 200618 3128 jpg '),(17054,'kind',0,1,' image '),(17054,'slug',0,1,''),(17054,'title',0,1,' nwo 200618 3128 '),(17055,'extension',0,1,' png '),(17055,'filename',0,1,' profile avatar placeholder large png '),(17055,'kind',0,1,' image '),(17055,'slug',0,1,''),(17055,'title',0,1,' profile avatar placeholder large '),(17057,'extension',0,1,' png '),(17057,'filename',0,1,' nwo website logos 1 png '),(17057,'kind',0,1,' image '),(17057,'slug',0,1,''),(17057,'title',0,1,' nwo website logos 1 '),(17058,'extension',0,1,' png '),(17058,'filename',0,1,' nwo website logos 2 png '),(17058,'kind',0,1,' image '),(17058,'slug',0,1,''),(17058,'title',0,1,' nwo website logos 2 '),(17059,'extension',0,1,' png '),(17059,'filename',0,1,' nwo website logos 10 png '),(17059,'kind',0,1,' image '),(17059,'slug',0,1,''),(17059,'title',0,1,' nwo website logos 10 '),(17060,'extension',0,1,' png '),(17060,'filename',0,1,' nwo website logos 11 png '),(17060,'kind',0,1,' image '),(17060,'slug',0,1,''),(17060,'title',0,1,' nwo website logos 11 '),(17061,'extension',0,1,' png '),(17061,'filename',0,1,' nwo website logos 12 png '),(17061,'kind',0,1,' image '),(17061,'slug',0,1,''),(17061,'title',0,1,' nwo website logos 12 '),(17062,'extension',0,1,' png '),(17062,'filename',0,1,' nwo website logos 14 png '),(17062,'kind',0,1,' image '),(17062,'slug',0,1,''),(17062,'title',0,1,' nwo website logos 14 '),(17063,'extension',0,1,' png '),(17063,'filename',0,1,' nwo website logos 15 png '),(17063,'kind',0,1,' image '),(17063,'slug',0,1,''),(17063,'title',0,1,' nwo website logos 15 '),(17064,'extension',0,1,' png '),(17064,'filename',0,1,' nwo website logos 16 png '),(17064,'kind',0,1,' image '),(17064,'slug',0,1,''),(17064,'title',0,1,' nwo website logos 16 '),(17065,'extension',0,1,' png '),(17065,'filename',0,1,' nwo website logos 17 png '),(17065,'kind',0,1,' image '),(17065,'slug',0,1,''),(17065,'title',0,1,' nwo website logos 17 '),(17066,'extension',0,1,' png '),(17066,'filename',0,1,' nwo website logos 18 png '),(17066,'kind',0,1,' image '),(17066,'slug',0,1,''),(17066,'title',0,1,' nwo website logos 18 '),(17067,'extension',0,1,' png '),(17067,'filename',0,1,' nwo website logos 19 png '),(17067,'kind',0,1,' image '),(17067,'slug',0,1,''),(17067,'title',0,1,' nwo website logos 19 '),(17068,'extension',0,1,' png '),(17068,'filename',0,1,' nwo website logos 20 png '),(17068,'kind',0,1,' image '),(17068,'slug',0,1,''),(17068,'title',0,1,' nwo website logos 20 '),(17069,'extension',0,1,' jpg '),(17069,'filename',0,1,' asset 2 80 jpg '),(17069,'kind',0,1,' image '),(17069,'slug',0,1,''),(17069,'title',0,1,' asset 2 80 '),(17070,'extension',0,1,' jpg '),(17070,'filename',0,1,' asset 3 80 jpg '),(17070,'kind',0,1,' image '),(17070,'slug',0,1,''),(17070,'title',0,1,' asset 3 80 '),(17071,'extension',0,1,' jpg '),(17071,'filename',0,1,' asset 4 80 jpg '),(17071,'kind',0,1,' image '),(17071,'slug',0,1,''),(17071,'title',0,1,' asset 4 80 '),(17072,'extension',0,1,' jpg '),(17072,'filename',0,1,' asset 5 80 jpg '),(17072,'kind',0,1,' image '),(17072,'slug',0,1,''),(17072,'title',0,1,' asset 5 80 '),(17073,'extension',0,1,' jpg '),(17073,'filename',0,1,' qsa homepage jpg '),(17073,'kind',0,1,' image '),(17073,'slug',0,1,''),(17073,'title',0,1,' qsa homepage '),(17074,'extension',0,1,' jpg '),(17074,'filename',0,1,' qsa 1 jpg '),(17074,'kind',0,1,' image '),(17074,'slug',0,1,''),(17074,'title',0,1,' qsa 1 '),(17075,'extension',0,1,' jpg '),(17075,'filename',0,1,' qsa 2 jpg '),(17075,'kind',0,1,' image '),(17075,'slug',0,1,''),(17075,'title',0,1,' qsa 2 '),(17076,'extension',0,1,' jpg '),(17076,'filename',0,1,' qsa 3 jpg '),(17076,'kind',0,1,' image '),(17076,'slug',0,1,''),(17076,'title',0,1,' qsa 3 '),(17077,'extension',0,1,' jpg '),(17077,'filename',0,1,' qsa 4 jpg '),(17077,'kind',0,1,' image '),(17077,'slug',0,1,''),(17077,'title',0,1,' qsa 4 '),(17078,'extension',0,1,' jpg '),(17078,'filename',0,1,' qsa 6 jpg '),(17078,'kind',0,1,' image '),(17078,'slug',0,1,''),(17078,'title',0,1,' qsa 6 '),(17079,'extension',0,1,' png '),(17079,'filename',0,1,' our hpw our future 900x450 1 png '),(17079,'kind',0,1,' image '),(17079,'slug',0,1,''),(17079,'title',0,1,' our hpw our future 900x450 '),(17080,'extension',0,1,' jpg '),(17080,'filename',0,1,' getstarted 1 900x450 jpg '),(17080,'kind',0,1,' image '),(17080,'slug',0,1,''),(17080,'title',0,1,' getstarted 1 900x450 '),(17081,'extension',0,1,' jpg '),(17081,'filename',0,1,' getstarted 2 jpg '),(17081,'kind',0,1,' image '),(17081,'slug',0,1,''),(17081,'title',0,1,' getstarted 2 '),(17082,'extension',0,1,' jpg '),(17082,'filename',0,1,' getstarted 3 jpg '),(17082,'kind',0,1,' image '),(17082,'slug',0,1,''),(17082,'title',0,1,' getstarted 3 '),(17083,'extension',0,1,' jpg '),(17083,'filename',0,1,' ryan computer jpg '),(17083,'kind',0,1,' image '),(17083,'slug',0,1,''),(17083,'title',0,1,' ryan computer '),(17084,'extension',0,1,' jpg '),(17084,'filename',0,1,' wall pointing jpg '),(17084,'kind',0,1,' image '),(17084,'slug',0,1,''),(17084,'title',0,1,' wall pointing '),(17085,'extension',0,1,' jpg '),(17085,'filename',0,1,' typewriter jpg '),(17085,'kind',0,1,' image '),(17085,'slug',0,1,''),(17085,'title',0,1,' typewriter '),(17086,'extension',0,1,' jpg '),(17086,'filename',0,1,' artboard 4 copy 2 jpg '),(17086,'kind',0,1,' image '),(17086,'slug',0,1,''),(17086,'title',0,1,' artboard 4 copy 2 '),(17087,'extension',0,1,' jpg '),(17087,'filename',0,1,' artboard 4 copy jpg '),(17087,'kind',0,1,' image '),(17087,'slug',0,1,''),(17087,'title',0,1,' artboard 4 copy '),(17088,'extension',0,1,' jpg '),(17088,'filename',0,1,' artboard 4 jpg '),(17088,'kind',0,1,' image '),(17088,'slug',0,1,''),(17088,'title',0,1,' artboard 4 '),(17089,'extension',0,1,' png '),(17089,'filename',0,1,' scott card game illo 2 png '),(17089,'kind',0,1,' image '),(17089,'slug',0,1,''),(17089,'title',0,1,' scott card game illo 2 '),(17090,'extension',0,1,' jpg '),(17090,'filename',0,1,' hal gatewood 613602 unsplash jpg '),(17090,'kind',0,1,' image '),(17090,'slug',0,1,''),(17090,'title',0,1,' hal gatewood 613602 unsplash '),(17092,'extension',0,1,' jpg '),(17092,'filename',0,1,' ra 1 jpg '),(17092,'kind',0,1,' image '),(17092,'slug',0,1,''),(17092,'title',0,1,' ra 1 '),(17093,'extension',0,1,' jpg '),(17093,'filename',0,1,' ra 2 jpg '),(17093,'kind',0,1,' image '),(17093,'slug',0,1,''),(17093,'title',0,1,' ra 2 '),(17094,'extension',0,1,' jpg '),(17094,'filename',0,1,' ra 3 jpg '),(17094,'kind',0,1,' image '),(17094,'slug',0,1,''),(17094,'title',0,1,' ra 3 '),(17095,'extension',0,1,' jpg '),(17095,'filename',0,1,' ra 4 jpg '),(17095,'kind',0,1,' image '),(17095,'slug',0,1,''),(17095,'title',0,1,' ra 4 '),(17096,'extension',0,1,' jpg '),(17096,'filename',0,1,' ra 5 jpg '),(17096,'kind',0,1,' image '),(17096,'slug',0,1,''),(17096,'title',0,1,' ra 5 '),(17097,'extension',0,1,' jpg '),(17097,'filename',0,1,' ra 6 jpg '),(17097,'kind',0,1,' image '),(17097,'slug',0,1,''),(17097,'title',0,1,' ra 6 '),(17098,'extension',0,1,' jpg '),(17098,'filename',0,1,' ra 7 jpg '),(17098,'kind',0,1,' image '),(17098,'slug',0,1,''),(17098,'title',0,1,' ra 7 '),(17099,'extension',0,1,' jpg '),(17099,'filename',0,1,' ra 8 jpg '),(17099,'kind',0,1,' image '),(17099,'slug',0,1,''),(17099,'title',0,1,' ra 8 '),(17100,'extension',0,1,' jpg '),(17100,'filename',0,1,' ra website 01 jpg '),(17100,'kind',0,1,' image '),(17100,'slug',0,1,''),(17100,'title',0,1,' ra website 01 '),(17101,'extension',0,1,' jpg '),(17101,'filename',0,1,' ra website 02 jpg '),(17101,'kind',0,1,' image '),(17101,'slug',0,1,''),(17101,'title',0,1,' ra website 02 '),(17102,'extension',0,1,' jpg '),(17102,'filename',0,1,' ra website 03 jpg '),(17102,'kind',0,1,' image '),(17102,'slug',0,1,''),(17102,'title',0,1,' ra website 03 '),(17103,'extension',0,1,' jpg '),(17103,'filename',0,1,' ra website 04 jpg '),(17103,'kind',0,1,' image '),(17103,'slug',0,1,''),(17103,'title',0,1,' ra website 04 '),(17104,'extension',0,1,' jpg '),(17104,'filename',0,1,' ra website 05 jpg '),(17104,'kind',0,1,' image '),(17104,'slug',0,1,''),(17104,'title',0,1,' ra website 05 '),(17105,'extension',0,1,' jpg '),(17105,'filename',0,1,' ks linkedin article image jpg '),(17105,'kind',0,1,' image '),(17105,'slug',0,1,''),(17105,'title',0,1,' ks linkedin article image '),(17106,'extension',0,1,' jpg '),(17106,'filename',0,1,' pursuit 1 jpg '),(17106,'kind',0,1,' image '),(17106,'slug',0,1,''),(17106,'title',0,1,' pursuit 1 '),(17107,'extension',0,1,' jpg '),(17107,'filename',0,1,' pursuit 2 1 jpg '),(17107,'kind',0,1,' image '),(17107,'slug',0,1,''),(17107,'title',0,1,' pursuit 2 1 '),(17108,'extension',0,1,' jpg '),(17108,'filename',0,1,' 21 03 iwd banner bree 1 jpg '),(17108,'kind',0,1,' image '),(17108,'slug',0,1,''),(17108,'title',0,1,' 21 03 iwd banner bree 1 '),(17109,'extension',0,1,' jpg '),(17109,'filename',0,1,' pursuit 3 1 jpg '),(17109,'kind',0,1,' image '),(17109,'slug',0,1,''),(17109,'title',0,1,' pursuit 3 1 '),(17110,'extension',0,1,' jpg '),(17110,'filename',0,1,' pursuit 4 jpg '),(17110,'kind',0,1,' image '),(17110,'slug',0,1,''),(17110,'title',0,1,' pursuit 4 '),(17111,'extension',0,1,' jpg '),(17111,'filename',0,1,' pursuit 5 1 jpg '),(17111,'kind',0,1,' image '),(17111,'slug',0,1,''),(17111,'title',0,1,' pursuit 5 1 '),(17112,'extension',0,1,' jpg '),(17112,'filename',0,1,' 21 03 iwd linkedin bree 2 jpg '),(17112,'kind',0,1,' image '),(17112,'slug',0,1,''),(17112,'title',0,1,' 21 03 iwd linkedin bree 2 '),(17113,'extension',0,1,' jpg '),(17113,'filename',0,1,' pursuitminerals homepage jpg '),(17113,'kind',0,1,' image '),(17113,'slug',0,1,''),(17113,'title',0,1,' pursuitminerals homepage '),(17114,'extension',0,1,' jpg '),(17114,'filename',0,1,' 21 03 iwd banner suz 1 jpg '),(17114,'kind',0,1,' image '),(17114,'slug',0,1,''),(17114,'title',0,1,' 21 03 iwd banner suz 1 '),(17115,'extension',0,1,' jpg '),(17115,'filename',0,1,' 21 03 iwd linkedin kate 1 jpg '),(17115,'kind',0,1,' image '),(17115,'slug',0,1,''),(17115,'title',0,1,' 21 03 iwd linkedin kate 1 '),(17116,'extension',0,1,' jpg '),(17116,'filename',0,1,' dsiti ap 1 jpg '),(17116,'kind',0,1,' image '),(17116,'slug',0,1,''),(17116,'title',0,1,' dsiti ap 1 '),(17117,'extension',0,1,' jpg '),(17117,'filename',0,1,' dsiti ap 2 jpg '),(17117,'kind',0,1,' image '),(17117,'slug',0,1,''),(17117,'title',0,1,' dsiti ap 2 '),(17118,'extension',0,1,' jpg '),(17118,'filename',0,1,' dsiti ap 3 jpg '),(17118,'kind',0,1,' image '),(17118,'slug',0,1,''),(17118,'title',0,1,' dsiti ap 3 '),(17119,'extension',0,1,' jpg '),(17119,'filename',0,1,' 21 03 iwd linkedin kimi 1 jpg '),(17119,'kind',0,1,' image '),(17119,'slug',0,1,''),(17119,'title',0,1,' 21 03 iwd linkedin kimi 1 '),(17120,'extension',0,1,' jpg '),(17120,'filename',0,1,' dsiti ap 4 jpg '),(17120,'kind',0,1,' image '),(17120,'slug',0,1,''),(17120,'title',0,1,' dsiti ap 4 '),(17121,'extension',0,1,' jpg '),(17121,'filename',0,1,' dsiti ap 5 jpg '),(17121,'kind',0,1,' image '),(17121,'slug',0,1,''),(17121,'title',0,1,' dsiti ap 5 '),(17122,'extension',0,1,' jpg '),(17122,'filename',0,1,' dsiti ap 6 jpg '),(17122,'kind',0,1,' image '),(17122,'slug',0,1,''),(17122,'title',0,1,' dsiti ap 6 '),(17123,'extension',0,1,' jpg '),(17123,'filename',0,1,' charters towers homepage jpg '),(17123,'kind',0,1,' image '),(17123,'slug',0,1,''),(17123,'title',0,1,' charters towers homepage '),(17124,'extension',0,1,' jpg '),(17124,'filename',0,1,' 21 03 iwd linkedin bec 1 jpg '),(17124,'kind',0,1,' image '),(17124,'slug',0,1,''),(17124,'title',0,1,' 21 03 iwd linkedin bec 1 '),(17125,'extension',0,1,' jpg '),(17125,'filename',0,1,' sdc 1 jpg '),(17125,'kind',0,1,' image '),(17125,'slug',0,1,''),(17125,'title',0,1,' sdc 1 '),(17126,'extension',0,1,' jpg '),(17126,'filename',0,1,' sdc 2 jpg '),(17126,'kind',0,1,' image '),(17126,'slug',0,1,''),(17126,'title',0,1,' sdc 2 '),(17127,'extension',0,1,' jpg '),(17127,'filename',0,1,' 21 03 iwd linkedin kat 1 jpg '),(17127,'kind',0,1,' image '),(17127,'slug',0,1,''),(17127,'title',0,1,' 21 03 iwd linkedin kat 1 '),(17128,'extension',0,1,' jpg '),(17128,'filename',0,1,' sdc 3 jpg '),(17128,'kind',0,1,' image '),(17128,'slug',0,1,''),(17128,'title',0,1,' sdc 3 '),(17129,'extension',0,1,' jpg '),(17129,'filename',0,1,' sdc 4 jpg '),(17129,'kind',0,1,' image '),(17129,'slug',0,1,''),(17129,'title',0,1,' sdc 4 '),(17130,'extension',0,1,' jpg '),(17130,'filename',0,1,' sdc 5 jpg '),(17130,'kind',0,1,' image '),(17130,'slug',0,1,''),(17130,'title',0,1,' sdc 5 '),(17131,'extension',0,1,' jpg '),(17131,'filename',0,1,' 21 03 iwd linkedin jo 1 jpg '),(17131,'kind',0,1,' image '),(17131,'slug',0,1,''),(17131,'title',0,1,' 21 03 iwd linkedin jo 1 '),(17132,'extension',0,1,' jpg '),(17132,'filename',0,1,' sdc 6 jpg '),(17132,'kind',0,1,' image '),(17132,'slug',0,1,''),(17132,'title',0,1,' sdc 6 '),(17133,'extension',0,1,' jpg '),(17133,'filename',0,1,' physiotas 1 jpg '),(17133,'kind',0,1,' image '),(17133,'slug',0,1,''),(17133,'title',0,1,' physiotas 1 '),(17134,'extension',0,1,' jpg '),(17134,'filename',0,1,' physiotas 2 jpg '),(17134,'kind',0,1,' image '),(17134,'slug',0,1,''),(17134,'title',0,1,' physiotas 2 '),(17135,'extension',0,1,' jpg '),(17135,'filename',0,1,' physiotas 3 jpg '),(17135,'kind',0,1,' image '),(17135,'slug',0,1,''),(17135,'title',0,1,' physiotas 3 '),(17136,'extension',0,1,' pdf '),(17136,'filename',0,1,' 21 04 dtis djag pdf '),(17136,'kind',0,1,' pdf '),(17136,'slug',0,1,''),(17136,'title',0,1,' 21 04 dtis djag '),(17137,'extension',0,1,' pdf '),(17137,'filename',0,1,' 21 04 dtis dsiti pdf '),(17137,'kind',0,1,' pdf '),(17137,'slug',0,1,''),(17137,'title',0,1,' 21 04 dtis dsiti '),(17138,'extension',0,1,' jpg '),(17138,'filename',0,1,' physiotas 4 jpg '),(17138,'kind',0,1,' image '),(17138,'slug',0,1,''),(17138,'title',0,1,' physiotas 4 '),(17139,'extension',0,1,' pdf '),(17139,'filename',0,1,' 21 04 dtis infographics pdf '),(17139,'kind',0,1,' pdf '),(17139,'slug',0,1,''),(17139,'title',0,1,' 21 04 dtis infographics '),(17140,'extension',0,1,' pdf '),(17140,'filename',0,1,' 21 04 dtis og pdf '),(17140,'kind',0,1,' pdf '),(17140,'slug',0,1,''),(17140,'title',0,1,' 21 04 dtis og '),(17141,'extension',0,1,' jpg '),(17141,'filename',0,1,' physiotas 5 jpg '),(17141,'kind',0,1,' image '),(17141,'slug',0,1,''),(17141,'title',0,1,' physiotas 5 '),(17142,'extension',0,1,' pdf '),(17142,'filename',0,1,' 21 04 dtis qfcc pdf '),(17142,'kind',0,1,' pdf '),(17142,'slug',0,1,''),(17142,'title',0,1,' 21 04 dtis qfcc '),(17143,'extension',0,1,' pdf '),(17143,'filename',0,1,' 21 04 dtis qpc pdf '),(17143,'kind',0,1,' pdf '),(17143,'slug',0,1,''),(17143,'title',0,1,' 21 04 dtis qpc '),(17144,'extension',0,1,' jpg '),(17144,'filename',0,1,' qpc 1 jpg '),(17144,'kind',0,1,' image '),(17144,'slug',0,1,''),(17144,'title',0,1,' qpc 1 '),(17145,'extension',0,1,' jpg '),(17145,'filename',0,1,' janine jpg '),(17145,'kind',0,1,' image '),(17145,'slug',0,1,''),(17145,'title',0,1,' janine '),(17146,'extension',0,1,' jpg '),(17146,'filename',0,1,' qpc 2 jpg '),(17146,'kind',0,1,' image '),(17146,'slug',0,1,''),(17146,'title',0,1,' qpc 2 '),(17147,'extension',0,1,' jpg '),(17147,'filename',0,1,' jo jpg '),(17147,'kind',0,1,' image '),(17147,'slug',0,1,''),(17147,'title',0,1,' jo '),(17148,'extension',0,1,' jpg '),(17148,'filename',0,1,' tim kho jpg '),(17148,'kind',0,1,' image '),(17148,'slug',0,1,''),(17148,'title',0,1,' tim kho '),(17149,'extension',0,1,' jpg '),(17149,'filename',0,1,' qpc 3 jpg '),(17149,'kind',0,1,' image '),(17149,'slug',0,1,''),(17149,'title',0,1,' qpc 3 '),(17150,'extension',0,1,' jpg '),(17150,'filename',0,1,' qpc 41 jpg '),(17150,'kind',0,1,' image '),(17150,'slug',0,1,''),(17150,'title',0,1,' qpc 41 '),(17151,'extension',0,1,' jpg '),(17151,'filename',0,1,' ccc tour citipointe jpg '),(17151,'kind',0,1,' image '),(17151,'slug',0,1,''),(17151,'title',0,1,' ccc tour citipointe '),(17152,'extension',0,1,' jpg '),(17152,'filename',0,1,' fopats 1 jpg '),(17152,'kind',0,1,' image '),(17152,'slug',0,1,''),(17152,'title',0,1,' fopats 1 '),(17153,'extension',0,1,' jpg '),(17153,'filename',0,1,' fopats 2 jpg '),(17153,'kind',0,1,' image '),(17153,'slug',0,1,''),(17153,'title',0,1,' fopats 2 '),(17154,'extension',0,1,' jpg '),(17154,'filename',0,1,' fopats 3 jpg '),(17154,'kind',0,1,' image '),(17154,'slug',0,1,''),(17154,'title',0,1,' fopats 3 '),(17155,'extension',0,1,' jpg '),(17155,'filename',0,1,' fopats 4 jpg '),(17155,'kind',0,1,' image '),(17155,'slug',0,1,''),(17155,'title',0,1,' fopats 4 '),(17156,'extension',0,1,' jpg '),(17156,'filename',0,1,' fopats 5 jpg '),(17156,'kind',0,1,' image '),(17156,'slug',0,1,''),(17156,'title',0,1,' fopats 5 '),(17157,'extension',0,1,' jpg '),(17157,'filename',0,1,' ccc ican 19 jpg '),(17157,'kind',0,1,' image '),(17157,'slug',0,1,''),(17157,'title',0,1,' ccc ican 19 '),(17158,'extension',0,1,' jpg '),(17158,'filename',0,1,' fopats 6 jpg '),(17158,'kind',0,1,' image '),(17158,'slug',0,1,''),(17158,'title',0,1,' fopats 6 '),(17159,'extension',0,1,' jpg '),(17159,'filename',0,1,' 13family 1 jpg '),(17159,'kind',0,1,' image '),(17159,'slug',0,1,''),(17159,'title',0,1,' 13family 1 '),(17160,'extension',0,1,' jpg '),(17160,'filename',0,1,' 13family 2 jpg '),(17160,'kind',0,1,' image '),(17160,'slug',0,1,''),(17160,'title',0,1,' 13family 2 '),(17161,'extension',0,1,' jpg '),(17161,'filename',0,1,' 13family 3 jpg '),(17161,'kind',0,1,' image '),(17161,'slug',0,1,''),(17161,'title',0,1,' 13family 3 '),(17162,'extension',0,1,' jpg '),(17162,'filename',0,1,' 13family 4 jpg '),(17162,'kind',0,1,' image '),(17162,'slug',0,1,''),(17162,'title',0,1,' 13family 4 '),(17163,'extension',0,1,' jpg '),(17163,'filename',0,1,' 13family 5 jpg '),(17163,'kind',0,1,' image '),(17163,'slug',0,1,''),(17163,'title',0,1,' 13family 5 '),(17164,'extension',0,1,' jpg '),(17164,'filename',0,1,' 13family 6 jpg '),(17164,'kind',0,1,' image '),(17164,'slug',0,1,''),(17164,'title',0,1,' 13family 6 '),(17165,'extension',0,1,' jpg '),(17165,'filename',0,1,' fcc 13family fb 1200x628 2 2 900x450 jpg '),(17165,'kind',0,1,' image '),(17165,'slug',0,1,''),(17165,'title',0,1,' fcc 13family fb 1200x628 2 2 900x450 '),(17166,'extension',0,1,' jpg '),(17166,'filename',0,1,' maik jonietz 535261 unsplash jpg '),(17166,'kind',0,1,' image '),(17166,'slug',0,1,''),(17166,'title',0,1,' maik jonietz 535261 unsplash '),(17167,'extension',0,1,' jpg '),(17167,'filename',0,1,' artboard 5 2 1024x445 jpg '),(17167,'kind',0,1,' image '),(17167,'slug',0,1,''),(17167,'title',0,1,' artboard 5 2 1024x445 '),(17168,'extension',0,1,' jpg '),(17168,'filename',0,1,' seo banner jpg '),(17168,'kind',0,1,' image '),(17168,'slug',0,1,''),(17168,'title',0,1,' seo banner '),(17169,'extension',0,1,' jpg '),(17169,'filename',0,1,' cogs jpg '),(17169,'kind',0,1,' image '),(17169,'slug',0,1,''),(17169,'title',0,1,' cogs '),(17170,'extension',0,1,' jpg '),(17170,'filename',0,1,' elliot jpg '),(17170,'kind',0,1,' image '),(17170,'slug',0,1,''),(17170,'title',0,1,' elliot '),(17171,'extension',0,1,' jpg '),(17171,'filename',0,1,' bike 1024x1024 jpg '),(17171,'kind',0,1,' image '),(17171,'slug',0,1,''),(17171,'title',0,1,' bike 1024x1024 '),(17172,'extension',0,1,' jpg '),(17172,'filename',0,1,' baby 1024x1024 jpg '),(17172,'kind',0,1,' image '),(17172,'slug',0,1,''),(17172,'title',0,1,' baby 1024x1024 '),(17173,'extension',0,1,' jpg '),(17173,'filename',0,1,' guitar 1024x1024 jpg '),(17173,'kind',0,1,' image '),(17173,'slug',0,1,''),(17173,'title',0,1,' guitar 1024x1024 '),(17174,'extension',0,1,' jpg '),(17174,'filename',0,1,' fergus 2 jpg '),(17174,'kind',0,1,' image '),(17174,'slug',0,1,''),(17174,'title',0,1,' fergus 2 '),(17175,'extension',0,1,' jpg '),(17175,'filename',0,1,' andrew 163 jpg '),(17175,'kind',0,1,' image '),(17175,'slug',0,1,''),(17175,'title',0,1,' andrew 163 '),(17176,'extension',0,1,' jpg '),(17176,'filename',0,1,' andrew1 jpg '),(17176,'kind',0,1,' image '),(17176,'slug',0,1,''),(17176,'title',0,1,' andrew1 '),(17177,'extension',0,1,' jpg '),(17177,'filename',0,1,' andrew2 jpg '),(17177,'kind',0,1,' image '),(17177,'slug',0,1,''),(17177,'title',0,1,' andrew2 '),(17178,'extension',0,1,' jpg '),(17178,'filename',0,1,' photo 5 jpg '),(17178,'kind',0,1,' image '),(17178,'slug',0,1,''),(17178,'title',0,1,' photo 5 '),(17179,'extension',0,1,' jpg '),(17179,'filename',0,1,' cathy1 jpg '),(17179,'kind',0,1,' image '),(17179,'slug',0,1,''),(17179,'title',0,1,' cathy1 '),(17180,'extension',0,1,' jpg '),(17180,'filename',0,1,' cathy2 jpg '),(17180,'kind',0,1,' image '),(17180,'slug',0,1,''),(17180,'title',0,1,' cathy2 '),(17181,'extension',0,1,' jpg '),(17181,'filename',0,1,' cathy3 1024x1024 jpg '),(17181,'kind',0,1,' image '),(17181,'slug',0,1,''),(17181,'title',0,1,' cathy3 1024x1024 '),(17182,'extension',0,1,' jpg '),(17182,'filename',0,1,' laura lee moreau 9137 unsplash jpg '),(17182,'kind',0,1,' image '),(17182,'slug',0,1,''),(17182,'title',0,1,' laura lee moreau 9137 unsplash '),(17183,'extension',0,1,' jpg '),(17183,'filename',0,1,' acc 1 jpg '),(17183,'kind',0,1,' image '),(17183,'slug',0,1,''),(17183,'title',0,1,' acc 1 '),(17184,'extension',0,1,' jpg '),(17184,'filename',0,1,' acc 2 jpg '),(17184,'kind',0,1,' image '),(17184,'slug',0,1,''),(17184,'title',0,1,' acc 2 '),(17185,'extension',0,1,' jpg '),(17185,'filename',0,1,' acc 3 jpg '),(17185,'kind',0,1,' image '),(17185,'slug',0,1,''),(17185,'title',0,1,' acc 3 '),(17186,'extension',0,1,' jpg '),(17186,'filename',0,1,' amg 1 jpg '),(17186,'kind',0,1,' image '),(17186,'slug',0,1,''),(17186,'title',0,1,' amg 1 '),(17187,'extension',0,1,' jpg '),(17187,'filename',0,1,' amg 2 jpg '),(17187,'kind',0,1,' image '),(17187,'slug',0,1,''),(17187,'title',0,1,' amg 2 '),(17188,'extension',0,1,' jpg '),(17188,'filename',0,1,' amg 3 jpg '),(17188,'kind',0,1,' image '),(17188,'slug',0,1,''),(17188,'title',0,1,' amg 3 '),(17189,'extension',0,1,' jpg '),(17189,'filename',0,1,' amg 4 jpg '),(17189,'kind',0,1,' image '),(17189,'slug',0,1,''),(17189,'title',0,1,' amg 4 '),(17190,'extension',0,1,' jpg '),(17190,'filename',0,1,' amg 5 jpg '),(17190,'kind',0,1,' image '),(17190,'slug',0,1,''),(17190,'title',0,1,' amg 5 '),(17191,'extension',0,1,' jpg '),(17191,'filename',0,1,' amg 6 jpg '),(17191,'kind',0,1,' image '),(17191,'slug',0,1,''),(17191,'title',0,1,' amg 6 '),(17192,'extension',0,1,' jpg '),(17192,'filename',0,1,' amg 7 jpg '),(17192,'kind',0,1,' image '),(17192,'slug',0,1,''),(17192,'title',0,1,' amg 7 '),(17193,'extension',0,1,' jpg '),(17193,'filename',0,1,' aseeos web 1 jpg '),(17193,'kind',0,1,' image '),(17193,'slug',0,1,''),(17193,'title',0,1,' aseeos web 1 '),(17194,'extension',0,1,' jpg '),(17194,'filename',0,1,' aseeos web 2 jpg '),(17194,'kind',0,1,' image '),(17194,'slug',0,1,''),(17194,'title',0,1,' aseeos web 2 '),(17195,'extension',0,1,' jpg '),(17195,'filename',0,1,' aseeos web 3 jpg '),(17195,'kind',0,1,' image '),(17195,'slug',0,1,''),(17195,'title',0,1,' aseeos web 3 '),(17196,'extension',0,1,' jpg '),(17196,'filename',0,1,' aseeos brochures jpg '),(17196,'kind',0,1,' image '),(17196,'slug',0,1,''),(17196,'title',0,1,' aseeos brochures '),(17197,'extension',0,1,' jpg '),(17197,'filename',0,1,' aseeos signage jpg '),(17197,'kind',0,1,' image '),(17197,'slug',0,1,''),(17197,'title',0,1,' aseeos signage '),(17198,'extension',0,1,' jpg '),(17198,'filename',0,1,' website video 900x450 jpg '),(17198,'kind',0,1,' image '),(17198,'slug',0,1,''),(17198,'title',0,1,' website video 900x450 '),(17199,'extension',0,1,' jpg '),(17199,'filename',0,1,' aseeos testimonies 1 jpg '),(17199,'kind',0,1,' image '),(17199,'slug',0,1,''),(17199,'title',0,1,' aseeos testimonies 1 '),(17200,'extension',0,1,' jpg '),(17200,'filename',0,1,' citi 1 jpg '),(17200,'kind',0,1,' image '),(17200,'slug',0,1,''),(17200,'title',0,1,' citi 1 '),(17201,'extension',0,1,' jpg '),(17201,'filename',0,1,' citi 2 jpg '),(17201,'kind',0,1,' image '),(17201,'slug',0,1,''),(17201,'title',0,1,' citi 2 '),(17202,'extension',0,1,' jpg '),(17202,'filename',0,1,' citi 3 jpg '),(17202,'kind',0,1,' image '),(17202,'slug',0,1,''),(17202,'title',0,1,' citi 3 '),(17203,'extension',0,1,' jpg '),(17203,'filename',0,1,' citi 4 jpg '),(17203,'kind',0,1,' image '),(17203,'slug',0,1,''),(17203,'title',0,1,' citi 4 '),(17204,'extension',0,1,' jpg '),(17204,'filename',0,1,' citi 5 jpg '),(17204,'kind',0,1,' image '),(17204,'slug',0,1,''),(17204,'title',0,1,' citi 5 '),(17205,'extension',0,1,' jpg '),(17205,'filename',0,1,' citi 6 jpg '),(17205,'kind',0,1,' image '),(17205,'slug',0,1,''),(17205,'title',0,1,' citi 6 '),(17206,'extension',0,1,' jpg '),(17206,'filename',0,1,' citi 7 jpg '),(17206,'kind',0,1,' image '),(17206,'slug',0,1,''),(17206,'title',0,1,' citi 7 '),(17207,'extension',0,1,' jpg '),(17207,'filename',0,1,' citi 8 jpg '),(17207,'kind',0,1,' image '),(17207,'slug',0,1,''),(17207,'title',0,1,' citi 8 '),(17208,'extension',0,1,' jpg '),(17208,'filename',0,1,' cciq corp partnerships 1 jpg '),(17208,'kind',0,1,' image '),(17208,'slug',0,1,''),(17208,'title',0,1,' cciq corp partnerships 1 '),(17209,'extension',0,1,' jpg '),(17209,'filename',0,1,' cciq corp partnerships 2 jpg '),(17209,'kind',0,1,' image '),(17209,'slug',0,1,''),(17209,'title',0,1,' cciq corp partnerships 2 '),(17210,'extension',0,1,' jpg '),(17210,'filename',0,1,' cciq corp partnerships 3 jpg '),(17210,'kind',0,1,' image '),(17210,'slug',0,1,''),(17210,'title',0,1,' cciq corp partnerships 3 '),(17211,'extension',0,1,' jpg '),(17211,'filename',0,1,' cciq corp partnerships 4 jpg '),(17211,'kind',0,1,' image '),(17211,'slug',0,1,''),(17211,'title',0,1,' cciq corp partnerships 4 '),(17212,'extension',0,1,' jpg '),(17212,'filename',0,1,' cciq corp partnerships 5 jpg '),(17212,'kind',0,1,' image '),(17212,'slug',0,1,''),(17212,'title',0,1,' cciq corp partnerships 5 '),(17213,'extension',0,1,' jpg '),(17213,'filename',0,1,' cciq corp partnerships 6 jpg '),(17213,'kind',0,1,' image '),(17213,'slug',0,1,''),(17213,'title',0,1,' cciq corp partnerships 6 '),(17215,'extension',0,1,' jpg '),(17215,'filename',0,1,' ddh 1 jpg '),(17215,'kind',0,1,' image '),(17215,'slug',0,1,''),(17215,'title',0,1,' ddh 1 '),(17216,'extension',0,1,' jpg '),(17216,'filename',0,1,' ddh 2 jpg '),(17216,'kind',0,1,' image '),(17216,'slug',0,1,''),(17216,'title',0,1,' ddh 2 '),(17217,'extension',0,1,' jpg '),(17217,'filename',0,1,' ddh 3 jpg '),(17217,'kind',0,1,' image '),(17217,'slug',0,1,''),(17217,'title',0,1,' ddh 3 '),(17218,'extension',0,1,' jpg '),(17218,'filename',0,1,' ddh 4 jpg '),(17218,'kind',0,1,' image '),(17218,'slug',0,1,''),(17218,'title',0,1,' ddh 4 '),(17219,'extension',0,1,' jpg '),(17219,'filename',0,1,' ddh 5 jpg '),(17219,'kind',0,1,' image '),(17219,'slug',0,1,''),(17219,'title',0,1,' ddh 5 '),(17220,'extension',0,1,' jpg '),(17220,'filename',0,1,' ddh 6 jpg '),(17220,'kind',0,1,' image '),(17220,'slug',0,1,''),(17220,'title',0,1,' ddh 6 '),(17221,'extension',0,1,' jpg '),(17221,'filename',0,1,' nwo endeavour project 1 jpg '),(17221,'kind',0,1,' image '),(17221,'slug',0,1,''),(17221,'title',0,1,' nwo endeavour project 1 '),(17222,'extension',0,1,' jpg '),(17222,'filename',0,1,' nwo endeavour project 2 jpg '),(17222,'kind',0,1,' image '),(17222,'slug',0,1,''),(17222,'title',0,1,' nwo endeavour project 2 '),(17223,'extension',0,1,' jpg '),(17223,'filename',0,1,' nwo endeavour project 3 jpg '),(17223,'kind',0,1,' image '),(17223,'slug',0,1,''),(17223,'title',0,1,' nwo endeavour project 3 '),(17224,'extension',0,1,' jpg '),(17224,'filename',0,1,' nwo endeavour project 4 jpg '),(17224,'kind',0,1,' image '),(17224,'slug',0,1,''),(17224,'title',0,1,' nwo endeavour project 4 '),(17225,'extension',0,1,' jpg '),(17225,'filename',0,1,' nwo endeavour project 5 jpg '),(17225,'kind',0,1,' image '),(17225,'slug',0,1,''),(17225,'title',0,1,' nwo endeavour project 5 '),(17226,'extension',0,1,' jpg '),(17226,'filename',0,1,' nwo endeavour project 6 jpg '),(17226,'kind',0,1,' image '),(17226,'slug',0,1,''),(17226,'title',0,1,' nwo endeavour project 6 '),(17227,'extension',0,1,' jpg '),(17227,'filename',0,1,' nwo endeavour project 7 jpg '),(17227,'kind',0,1,' image '),(17227,'slug',0,1,''),(17227,'title',0,1,' nwo endeavour project 7 '),(17228,'extension',0,1,' jpg '),(17228,'filename',0,1,' nwo endeavour project 8 jpg '),(17228,'kind',0,1,' image '),(17228,'slug',0,1,''),(17228,'title',0,1,' nwo endeavour project 8 '),(17229,'extension',0,1,' jpg '),(17229,'filename',0,1,' nwo endeavour project 9 jpg '),(17229,'kind',0,1,' image '),(17229,'slug',0,1,''),(17229,'title',0,1,' nwo endeavour project 9 '),(17230,'extension',0,1,' jpg '),(17230,'filename',0,1,' nwo endeavour project 10 jpg '),(17230,'kind',0,1,' image '),(17230,'slug',0,1,''),(17230,'title',0,1,' nwo endeavour project 10 '),(17231,'extension',0,1,' jpg '),(17231,'filename',0,1,' nwo endeavour project 11 jpg '),(17231,'kind',0,1,' image '),(17231,'slug',0,1,''),(17231,'title',0,1,' nwo endeavour project 11 '),(17232,'extension',0,1,' jpg '),(17232,'filename',0,1,' nwo endeavour project 12 jpg '),(17232,'kind',0,1,' image '),(17232,'slug',0,1,''),(17232,'title',0,1,' nwo endeavour project 12 '),(17233,'extension',0,1,' png '),(17233,'filename',0,1,' revelian project 1 png '),(17233,'kind',0,1,' image '),(17233,'slug',0,1,''),(17233,'title',0,1,' revelian project 1 '),(17234,'extension',0,1,' png '),(17234,'filename',0,1,' revelian project 2 png '),(17234,'kind',0,1,' image '),(17234,'slug',0,1,''),(17234,'title',0,1,' revelian project 2 '),(17235,'extension',0,1,' png '),(17235,'filename',0,1,' revelian project 3 png '),(17235,'kind',0,1,' image '),(17235,'slug',0,1,''),(17235,'title',0,1,' revelian project 3 '),(17236,'extension',0,1,' png '),(17236,'filename',0,1,' revelian project 4 png '),(17236,'kind',0,1,' image '),(17236,'slug',0,1,''),(17236,'title',0,1,' revelian project 4 '),(17237,'extension',0,1,' png '),(17237,'filename',0,1,' revelian project 5 png '),(17237,'kind',0,1,' image '),(17237,'slug',0,1,''),(17237,'title',0,1,' revelian project 5 '),(17238,'extension',0,1,' png '),(17238,'filename',0,1,' revelian project 6 png '),(17238,'kind',0,1,' image '),(17238,'slug',0,1,''),(17238,'title',0,1,' revelian project 6 '),(17239,'extension',0,1,' png '),(17239,'filename',0,1,' revelian project 7 png '),(17239,'kind',0,1,' image '),(17239,'slug',0,1,''),(17239,'title',0,1,' revelian project 7 '),(17240,'extension',0,1,' png '),(17240,'filename',0,1,' revelian project 8 png '),(17240,'kind',0,1,' image '),(17240,'slug',0,1,''),(17240,'title',0,1,' revelian project 8 '),(17241,'extension',0,1,' png '),(17241,'filename',0,1,' revelian project 9 png '),(17241,'kind',0,1,' image '),(17241,'slug',0,1,''),(17241,'title',0,1,' revelian project 9 '),(17242,'extension',0,1,' png '),(17242,'filename',0,1,' revelian project 11 png '),(17242,'kind',0,1,' image '),(17242,'slug',0,1,''),(17242,'title',0,1,' revelian project 11 '),(17243,'extension',0,1,' png '),(17243,'filename',0,1,' revelian project 12 png '),(17243,'kind',0,1,' image '),(17243,'slug',0,1,''),(17243,'title',0,1,' revelian project 12 '),(17244,'extension',0,1,' jpg '),(17244,'filename',0,1,' quu landing 1 jpg '),(17244,'kind',0,1,' image '),(17244,'slug',0,1,''),(17244,'title',0,1,' quu landing 1 '),(17245,'extension',0,1,' jpg '),(17245,'filename',0,1,' quu landing 2 jpg '),(17245,'kind',0,1,' image '),(17245,'slug',0,1,''),(17245,'title',0,1,' quu landing 2 '),(17246,'extension',0,1,' jpg '),(17246,'filename',0,1,' quu landing 3 jpg '),(17246,'kind',0,1,' image '),(17246,'slug',0,1,''),(17246,'title',0,1,' quu landing 3 '),(17247,'extension',0,1,' jpg '),(17247,'filename',0,1,' quu landing 4 jpg '),(17247,'kind',0,1,' image '),(17247,'slug',0,1,''),(17247,'title',0,1,' quu landing 4 '),(17248,'extension',0,1,' jpg '),(17248,'filename',0,1,' quu landing 5 jpg '),(17248,'kind',0,1,' image '),(17248,'slug',0,1,''),(17248,'title',0,1,' quu landing 5 '),(17249,'extension',0,1,' jpg '),(17249,'filename',0,1,' quu landing 7 jpg '),(17249,'kind',0,1,' image '),(17249,'slug',0,1,''),(17249,'title',0,1,' quu landing 7 '),(17250,'extension',0,1,' jpg '),(17250,'filename',0,1,' quu landing 8 jpg '),(17250,'kind',0,1,' image '),(17250,'slug',0,1,''),(17250,'title',0,1,' quu landing 8 '),(17251,'extension',0,1,' jpg '),(17251,'filename',0,1,' quu landing 9 jpg '),(17251,'kind',0,1,' image '),(17251,'slug',0,1,''),(17251,'title',0,1,' quu landing 9 '),(17252,'extension',0,1,' png '),(17252,'filename',0,1,' revelian project 10 png '),(17252,'kind',0,1,' image '),(17252,'slug',0,1,''),(17252,'title',0,1,' revelian project 10 '),(17253,'extension',0,1,' jpg '),(17253,'filename',0,1,' nwo 200618 3030 e1551914831676 jpg '),(17253,'kind',0,1,' image '),(17253,'slug',0,1,''),(17253,'title',0,1,' nwo 200618 3030 '),(17254,'extension',0,1,' jpg '),(17254,'filename',0,1,' bec jpg '),(17254,'kind',0,1,' image '),(17254,'slug',0,1,''),(17254,'title',0,1,' bec '),(17255,'extension',0,1,' jpg '),(17255,'filename',0,1,' kimi jpg '),(17255,'kind',0,1,' image '),(17255,'slug',0,1,''),(17255,'title',0,1,' kimi '),(17256,'extension',0,1,' jpg '),(17256,'filename',0,1,' nick jpg '),(17256,'kind',0,1,' image '),(17256,'slug',0,1,''),(17256,'title',0,1,' nick '),(17257,'extension',0,1,' jpg '),(17257,'filename',0,1,' liz jpg '),(17257,'kind',0,1,' image '),(17257,'slug',0,1,''),(17257,'title',0,1,' liz '),(17258,'extension',0,1,' jpg '),(17258,'filename',0,1,' jonno jpg '),(17258,'kind',0,1,' image '),(17258,'slug',0,1,''),(17258,'title',0,1,' jonno '),(17259,'extension',0,1,' jpg '),(17259,'filename',0,1,' tilly jpg '),(17259,'kind',0,1,' image '),(17259,'slug',0,1,''),(17259,'title',0,1,' tilly '),(17260,'extension',0,1,' jpg '),(17260,'filename',0,1,' kate jpg '),(17260,'kind',0,1,' image '),(17260,'slug',0,1,''),(17260,'title',0,1,' kate '),(17261,'extension',0,1,' jpg '),(17261,'filename',0,1,' cathy jpg '),(17261,'kind',0,1,' image '),(17261,'slug',0,1,''),(17261,'title',0,1,' cathy '),(17262,'extension',0,1,' jpg '),(17262,'filename',0,1,' andrew jpg '),(17262,'kind',0,1,' image '),(17262,'slug',0,1,''),(17262,'title',0,1,' andrew '),(17263,'extension',0,1,' jpg '),(17263,'filename',0,1,' scott jpg '),(17263,'kind',0,1,' image '),(17263,'slug',0,1,''),(17263,'title',0,1,' scott '),(17264,'extension',0,1,' jpg '),(17264,'filename',0,1,' suz jpg '),(17264,'kind',0,1,' image '),(17264,'slug',0,1,''),(17264,'title',0,1,' suz '),(17265,'extension',0,1,' jpg '),(17265,'filename',0,1,' img 1782 jpg '),(17265,'kind',0,1,' image '),(17265,'slug',0,1,''),(17265,'title',0,1,' img 1782 '),(17266,'extension',0,1,' jpg '),(17266,'filename',0,1,' kate shane previews by savannah van der niet 14 jpg '),(17266,'kind',0,1,' image '),(17266,'slug',0,1,''),(17266,'title',0,1,' kate shane previews by savannah van der niet 14 '),(17267,'extension',0,1,' jpg '),(17267,'filename',0,1,' img 2673 jpg '),(17267,'kind',0,1,' image '),(17267,'slug',0,1,''),(17267,'title',0,1,' img 2673 '),(17268,'extension',0,1,' jpg '),(17268,'filename',0,1,' img 2675 jpg '),(17268,'kind',0,1,' image '),(17268,'slug',0,1,''),(17268,'title',0,1,' img 2675 '),(17269,'extension',0,1,' jpg '),(17269,'filename',0,1,' img 2685 jpg '),(17269,'kind',0,1,' image '),(17269,'slug',0,1,''),(17269,'title',0,1,' img 2685 '),(17270,'extension',0,1,' jpg '),(17270,'filename',0,1,' image from ios 1 jpg '),(17270,'kind',0,1,' image '),(17270,'slug',0,1,''),(17270,'title',0,1,' image from ios 1 '),(17271,'extension',0,1,' jpg '),(17271,'filename',0,1,' image from ios 2 jpg '),(17271,'kind',0,1,' image '),(17271,'slug',0,1,''),(17271,'title',0,1,' image from ios 2 '),(17272,'extension',0,1,' jpg '),(17272,'filename',0,1,' image from ios jpg '),(17272,'kind',0,1,' image '),(17272,'slug',0,1,''),(17272,'title',0,1,' image from ios '),(17273,'extension',0,1,' jpg '),(17273,'filename',0,1,' image from ios 3 jpg '),(17273,'kind',0,1,' image '),(17273,'slug',0,1,''),(17273,'title',0,1,' image from ios 3 '),(17274,'extension',0,1,' jpg '),(17274,'filename',0,1,' image from ios 4 jpg '),(17274,'kind',0,1,' image '),(17274,'slug',0,1,''),(17274,'title',0,1,' image from ios 4 '),(17275,'extension',0,1,' jpg '),(17275,'filename',0,1,' image from ios 5 jpg '),(17275,'kind',0,1,' image '),(17275,'slug',0,1,''),(17275,'title',0,1,' image from ios 5 '),(17276,'extension',0,1,' jpg '),(17276,'filename',0,1,' image from ios 6 jpg '),(17276,'kind',0,1,' image '),(17276,'slug',0,1,''),(17276,'title',0,1,' image from ios 6 '),(17277,'extension',0,1,' jpg '),(17277,'filename',0,1,' img 1897 jpg '),(17277,'kind',0,1,' image '),(17277,'slug',0,1,''),(17277,'title',0,1,' img 1897 '),(17278,'extension',0,1,' jpg '),(17278,'filename',0,1,' img 1013 jpg '),(17278,'kind',0,1,' image '),(17278,'slug',0,1,''),(17278,'title',0,1,' img 1013 '),(17279,'extension',0,1,' jpg '),(17279,'filename',0,1,' img 0772 jpg '),(17279,'kind',0,1,' image '),(17279,'slug',0,1,''),(17279,'title',0,1,' img 0772 '),(17280,'extension',0,1,' jpg '),(17280,'filename',0,1,' img 0661 jpg '),(17280,'kind',0,1,' image '),(17280,'slug',0,1,''),(17280,'title',0,1,' img 0661 '),(17281,'extension',0,1,' jpg '),(17281,'filename',0,1,' black garlic bread from my favourite cafe gauge jpg '),(17281,'kind',0,1,' image '),(17281,'slug',0,1,''),(17281,'title',0,1,' black garlic bread from my favourite cafe gauge '),(17282,'extension',0,1,' jpg '),(17282,'filename',0,1,' coffees jpg '),(17282,'kind',0,1,' image '),(17282,'slug',0,1,''),(17282,'title',0,1,' coffees '),(17283,'extension',0,1,' jpg '),(17283,'filename',0,1,' jonno and liz jpg '),(17283,'kind',0,1,' image '),(17283,'slug',0,1,''),(17283,'title',0,1,' jonno and liz '),(17284,'extension',0,1,' jpg '),(17284,'filename',0,1,' margaret river wine jpg '),(17284,'kind',0,1,' image '),(17284,'slug',0,1,''),(17284,'title',0,1,' margaret river wine '),(17285,'extension',0,1,' jpg '),(17285,'filename',0,1,' img 6640 jpg '),(17285,'kind',0,1,' image '),(17285,'slug',0,1,''),(17285,'title',0,1,' img 6640 '),(17286,'extension',0,1,' jpg '),(17286,'filename',0,1,' tri landing 2 jpg '),(17286,'kind',0,1,' image '),(17286,'slug',0,1,''),(17286,'title',0,1,' tri landing 2 '),(17287,'extension',0,1,' jpg '),(17287,'filename',0,1,' tri landing 1 3 jpg '),(17287,'kind',0,1,' image '),(17287,'slug',0,1,''),(17287,'title',0,1,' tri landing 1 3 '),(17288,'extension',0,1,' jpg '),(17288,'filename',0,1,' tri landing 3 3 jpg '),(17288,'kind',0,1,' image '),(17288,'slug',0,1,''),(17288,'title',0,1,' tri landing 3 3 '),(17289,'extension',0,1,' jpg '),(17289,'filename',0,1,' tri landing 4 3 jpg '),(17289,'kind',0,1,' image '),(17289,'slug',0,1,''),(17289,'title',0,1,' tri landing 4 3 '),(17290,'extension',0,1,' jpg '),(17290,'filename',0,1,' tri landing 5 3 jpg '),(17290,'kind',0,1,' image '),(17290,'slug',0,1,''),(17290,'title',0,1,' tri landing 5 3 '),(17291,'extension',0,1,' jpg '),(17291,'filename',0,1,' tri landing 7 3 jpg '),(17291,'kind',0,1,' image '),(17291,'slug',0,1,''),(17291,'title',0,1,' tri landing 7 3 '),(17292,'extension',0,1,' jpg '),(17292,'filename',0,1,' tri landing 14 jpg '),(17292,'kind',0,1,' image '),(17292,'slug',0,1,''),(17292,'title',0,1,' tri landing 14 '),(17293,'extension',0,1,' jpg '),(17293,'filename',0,1,' tri landing 15 jpg '),(17293,'kind',0,1,' image '),(17293,'slug',0,1,''),(17293,'title',0,1,' tri landing 15 '),(17294,'extension',0,1,' jpg '),(17294,'filename',0,1,' tri landing 16 jpg '),(17294,'kind',0,1,' image '),(17294,'slug',0,1,''),(17294,'title',0,1,' tri landing 16 '),(17295,'extension',0,1,' jpg '),(17295,'filename',0,1,' tri landing 17 jpg '),(17295,'kind',0,1,' image '),(17295,'slug',0,1,''),(17295,'title',0,1,' tri landing 17 '),(17296,'extension',0,1,' jpg '),(17296,'filename',0,1,' tri landing 18 jpg '),(17296,'kind',0,1,' image '),(17296,'slug',0,1,''),(17296,'title',0,1,' tri landing 18 '),(17297,'extension',0,1,' jpg '),(17297,'filename',0,1,' tri landing 20 jpg '),(17297,'kind',0,1,' image '),(17297,'slug',0,1,''),(17297,'title',0,1,' tri landing 20 '),(17298,'extension',0,1,' jpg '),(17298,'filename',0,1,' tri landing 21 jpg '),(17298,'kind',0,1,' image '),(17298,'slug',0,1,''),(17298,'title',0,1,' tri landing 21 '),(17299,'extension',0,1,' jpg '),(17299,'filename',0,1,' tri landing 22 jpg '),(17299,'kind',0,1,' image '),(17299,'slug',0,1,''),(17299,'title',0,1,' tri landing 22 '),(17300,'extension',0,1,' jpg '),(17300,'filename',0,1,' tri landing 19 jpg '),(17300,'kind',0,1,' image '),(17300,'slug',0,1,''),(17300,'title',0,1,' tri landing 19 '),(17301,'extension',0,1,' jpg '),(17301,'filename',0,1,' tri landing 6 3 jpg '),(17301,'kind',0,1,' image '),(17301,'slug',0,1,''),(17301,'title',0,1,' tri landing 6 3 '),(17302,'extension',0,1,' jpg '),(17302,'filename',0,1,' ef landing header jpg '),(17302,'kind',0,1,' image '),(17302,'slug',0,1,''),(17302,'title',0,1,' ef landing header '),(17303,'extension',0,1,' jpg '),(17303,'filename',0,1,' dashboard 1 jpg '),(17303,'kind',0,1,' image '),(17303,'slug',0,1,''),(17303,'title',0,1,' dashboard 1 '),(17304,'extension',0,1,' jpg '),(17304,'filename',0,1,' dashboard 2 jpg '),(17304,'kind',0,1,' image '),(17304,'slug',0,1,''),(17304,'title',0,1,' dashboard 2 '),(17305,'extension',0,1,' jpg '),(17305,'filename',0,1,' dashboard 3 jpg '),(17305,'kind',0,1,' image '),(17305,'slug',0,1,''),(17305,'title',0,1,' dashboard 3 '),(17306,'extension',0,1,' jpg '),(17306,'filename',0,1,' dashboard 4 jpg '),(17306,'kind',0,1,' image '),(17306,'slug',0,1,''),(17306,'title',0,1,' dashboard 4 '),(17307,'extension',0,1,' jpg '),(17307,'filename',0,1,' dashboard 5 jpg '),(17307,'kind',0,1,' image '),(17307,'slug',0,1,''),(17307,'title',0,1,' dashboard 5 '),(17308,'extension',0,1,' jpg '),(17308,'filename',0,1,' dashboard jpg '),(17308,'kind',0,1,' image '),(17308,'slug',0,1,''),(17308,'title',0,1,' dashboard '),(17309,'extension',0,1,' jpg '),(17309,'filename',0,1,' howto 1 jpg '),(17309,'kind',0,1,' image '),(17309,'slug',0,1,''),(17309,'title',0,1,' howto 1 '),(17310,'extension',0,1,' jpg '),(17310,'filename',0,1,' howto 2 jpg '),(17310,'kind',0,1,' image '),(17310,'slug',0,1,''),(17310,'title',0,1,' howto 2 '),(17311,'extension',0,1,' jpg '),(17311,'filename',0,1,' howto 3 jpg '),(17311,'kind',0,1,' image '),(17311,'slug',0,1,''),(17311,'title',0,1,' howto 3 '),(17312,'extension',0,1,' jpg '),(17312,'filename',0,1,' howto 4 jpg '),(17312,'kind',0,1,' image '),(17312,'slug',0,1,''),(17312,'title',0,1,' howto 4 '),(17313,'extension',0,1,' jpg '),(17313,'filename',0,1,' howto 5 jpg '),(17313,'kind',0,1,' image '),(17313,'slug',0,1,''),(17313,'title',0,1,' howto 5 '),(17314,'extension',0,1,' jpg '),(17314,'filename',0,1,' howto jpg '),(17314,'kind',0,1,' image '),(17314,'slug',0,1,''),(17314,'title',0,1,' howto '),(17315,'extension',0,1,' jpg '),(17315,'filename',0,1,' review 1 jpg '),(17315,'kind',0,1,' image '),(17315,'slug',0,1,''),(17315,'title',0,1,' review 1 '),(17316,'extension',0,1,' jpg '),(17316,'filename',0,1,' review 2 jpg '),(17316,'kind',0,1,' image '),(17316,'slug',0,1,''),(17316,'title',0,1,' review 2 '),(17317,'extension',0,1,' jpg '),(17317,'filename',0,1,' review 3 jpg '),(17317,'kind',0,1,' image '),(17317,'slug',0,1,''),(17317,'title',0,1,' review 3 '),(17318,'extension',0,1,' jpg '),(17318,'filename',0,1,' review 4 jpg '),(17318,'kind',0,1,' image '),(17318,'slug',0,1,''),(17318,'title',0,1,' review 4 '),(17319,'extension',0,1,' jpg '),(17319,'filename',0,1,' review 5 jpg '),(17319,'kind',0,1,' image '),(17319,'slug',0,1,''),(17319,'title',0,1,' review 5 '),(17320,'extension',0,1,' jpg '),(17320,'filename',0,1,' review jpg '),(17320,'kind',0,1,' image '),(17320,'slug',0,1,''),(17320,'title',0,1,' review '),(17321,'extension',0,1,' jpg '),(17321,'filename',0,1,' 695271024 jpg '),(17321,'kind',0,1,' image '),(17321,'slug',0,1,''),(17321,'title',0,1,' 695271024 '),(17322,'extension',0,1,' jpg '),(17322,'filename',0,1,' 539926774 jpg '),(17322,'kind',0,1,' image '),(17322,'slug',0,1,''),(17322,'title',0,1,' 539926774 '),(17323,'extension',0,1,' jpg '),(17323,'filename',0,1,' 602857754 jpg '),(17323,'kind',0,1,' image '),(17323,'slug',0,1,''),(17323,'title',0,1,' 602857754 '),(17324,'extension',0,1,' jpg '),(17324,'filename',0,1,' 556095585 jpg '),(17324,'kind',0,1,' image '),(17324,'slug',0,1,''),(17324,'title',0,1,' 556095585 '),(17325,'extension',0,1,' jpg '),(17325,'filename',0,1,' 539004679 jpg '),(17325,'kind',0,1,' image '),(17325,'slug',0,1,''),(17325,'title',0,1,' 539004679 '),(17326,'extension',0,1,' jpg '),(17326,'filename',0,1,' 548056278 jpg '),(17326,'kind',0,1,' image '),(17326,'slug',0,1,''),(17326,'title',0,1,' 548056278 '),(17327,'extension',0,1,' jpg '),(17327,'filename',0,1,' 544940887 jpg '),(17327,'kind',0,1,' image '),(17327,'slug',0,1,''),(17327,'title',0,1,' 544940887 '),(17328,'extension',0,1,' jpg '),(17328,'filename',0,1,' 551528308 jpg '),(17328,'kind',0,1,' image '),(17328,'slug',0,1,''),(17328,'title',0,1,' 551528308 '),(17329,'extension',0,1,' jpg '),(17329,'filename',0,1,' 532507435 jpg '),(17329,'kind',0,1,' image '),(17329,'slug',0,1,''),(17329,'title',0,1,' 532507435 '),(17330,'extension',0,1,' jpg '),(17330,'filename',0,1,' 437038080 jpg '),(17330,'kind',0,1,' image '),(17330,'slug',0,1,''),(17330,'title',0,1,' 437038080 '),(17331,'extension',0,1,' jpg '),(17331,'filename',0,1,' 543288836 jpg '),(17331,'kind',0,1,' image '),(17331,'slug',0,1,''),(17331,'title',0,1,' 543288836 '),(17332,'extension',0,1,' jpg '),(17332,'filename',0,1,' 482742662 jpg '),(17332,'kind',0,1,' image '),(17332,'slug',0,1,''),(17332,'title',0,1,' 482742662 '),(17333,'extension',0,1,' jpg '),(17333,'filename',0,1,' 543288973 jpg '),(17333,'kind',0,1,' image '),(17333,'slug',0,1,''),(17333,'title',0,1,' 543288973 '),(17334,'extension',0,1,' jpg '),(17334,'filename',0,1,' img 6613 jpg '),(17334,'kind',0,1,' image '),(17334,'slug',0,1,''),(17334,'title',0,1,' img 6613 '),(17335,'extension',0,1,' jpg '),(17335,'filename',0,1,' img 1591 jpg '),(17335,'kind',0,1,' image '),(17335,'slug',0,1,''),(17335,'title',0,1,' img 1591 '),(17336,'extension',0,1,' jpg '),(17336,'filename',0,1,' img 4847 jpg '),(17336,'kind',0,1,' image '),(17336,'slug',0,1,''),(17336,'title',0,1,' img 4847 '),(17337,'extension',0,1,' jpg '),(17337,'filename',0,1,' img 5326 jpg '),(17337,'kind',0,1,' image '),(17337,'slug',0,1,''),(17337,'title',0,1,' img 5326 '),(17338,'extension',0,1,' jpg '),(17338,'filename',0,1,' andrew dark jpg '),(17338,'kind',0,1,' image '),(17338,'slug',0,1,''),(17338,'title',0,1,' andrew dark '),(17339,'extension',0,1,' jpg '),(17339,'filename',0,1,' bec dark jpg '),(17339,'kind',0,1,' image '),(17339,'slug',0,1,''),(17339,'title',0,1,' bec dark '),(17340,'extension',0,1,' jpg '),(17340,'filename',0,1,' cathy dark jpg '),(17340,'kind',0,1,' image '),(17340,'slug',0,1,''),(17340,'title',0,1,' cathy dark '),(17341,'extension',0,1,' jpg '),(17341,'filename',0,1,' elliot dark jpg '),(17341,'kind',0,1,' image '),(17341,'slug',0,1,''),(17341,'title',0,1,' elliot dark '),(17342,'extension',0,1,' jpg '),(17342,'filename',0,1,' hazel jpg '),(17342,'kind',0,1,' image '),(17342,'slug',0,1,''),(17342,'title',0,1,' hazel '),(17343,'extension',0,1,' jpg '),(17343,'filename',0,1,' jonno dark jpg '),(17343,'kind',0,1,' image '),(17343,'slug',0,1,''),(17343,'title',0,1,' jonno dark '),(17344,'extension',0,1,' jpg '),(17344,'filename',0,1,' julia dark jpg '),(17344,'kind',0,1,' image '),(17344,'slug',0,1,''),(17344,'title',0,1,' julia dark '),(17345,'extension',0,1,' jpg '),(17345,'filename',0,1,' julia jpg '),(17345,'kind',0,1,' image '),(17345,'slug',0,1,''),(17345,'title',0,1,' julia '),(17346,'extension',0,1,' jpg '),(17346,'filename',0,1,' kate dark jpg '),(17346,'kind',0,1,' image '),(17346,'slug',0,1,''),(17346,'title',0,1,' kate dark '),(17347,'extension',0,1,' jpg '),(17347,'filename',0,1,' kimi copy jpg '),(17347,'kind',0,1,' image '),(17347,'slug',0,1,''),(17347,'title',0,1,' kimi copy '),(17348,'extension',0,1,' jpg '),(17348,'filename',0,1,' liz dark jpg '),(17348,'kind',0,1,' image '),(17348,'slug',0,1,''),(17348,'title',0,1,' liz dark '),(17349,'extension',0,1,' jpg '),(17349,'filename',0,1,' nick dark jpg '),(17349,'kind',0,1,' image '),(17349,'slug',0,1,''),(17349,'title',0,1,' nick dark '),(17350,'extension',0,1,' jpg '),(17350,'filename',0,1,' scott dark jpg '),(17350,'kind',0,1,' image '),(17350,'slug',0,1,''),(17350,'title',0,1,' scott dark '),(17351,'extension',0,1,' jpg '),(17351,'filename',0,1,' suz dark jpg '),(17351,'kind',0,1,' image '),(17351,'slug',0,1,''),(17351,'title',0,1,' suz dark '),(17352,'extension',0,1,' jpg '),(17352,'filename',0,1,' tilly dark jpg '),(17352,'kind',0,1,' image '),(17352,'slug',0,1,''),(17352,'title',0,1,' tilly dark '),(17353,'extension',0,1,' jpg '),(17353,'filename',0,1,' img 3412 jpg '),(17353,'kind',0,1,' image '),(17353,'slug',0,1,''),(17353,'title',0,1,' img 3412 '),(17354,'extension',0,1,' jpg '),(17354,'filename',0,1,' img 3667 jpg '),(17354,'kind',0,1,' image '),(17354,'slug',0,1,''),(17354,'title',0,1,' img 3667 '),(17355,'extension',0,1,' jpg '),(17355,'filename',0,1,' suz2 jpg '),(17355,'kind',0,1,' image '),(17355,'slug',0,1,''),(17355,'title',0,1,' suz2 '),(17356,'extension',0,1,' jpg '),(17356,'filename',0,1,' suz1 jpg '),(17356,'kind',0,1,' image '),(17356,'slug',0,1,''),(17356,'title',0,1,' suz1 '),(17357,'extension',0,1,' jpg '),(17357,'filename',0,1,' suz3 jpg '),(17357,'kind',0,1,' image '),(17357,'slug',0,1,''),(17357,'title',0,1,' suz3 '),(17358,'extension',0,1,' jpg '),(17358,'filename',0,1,' t5a1116 jpg '),(17358,'kind',0,1,' image '),(17358,'slug',0,1,''),(17358,'title',0,1,' t5a1116 '),(17359,'extension',0,1,' jpg '),(17359,'filename',0,1,' img 1439 jpg '),(17359,'kind',0,1,' image '),(17359,'slug',0,1,''),(17359,'title',0,1,' img 1439 '),(17360,'extension',0,1,' jpg '),(17360,'filename',0,1,' img 8167 effects jpg '),(17360,'kind',0,1,' image '),(17360,'slug',0,1,''),(17360,'title',0,1,' img 8167 effects '),(17361,'extension',0,1,' jpg '),(17361,'filename',0,1,' nz0008 jpg '),(17361,'kind',0,1,' image '),(17361,'slug',0,1,''),(17361,'title',0,1,' nz0008 '),(17362,'extension',0,1,' png '),(17362,'filename',0,1,' image3 png '),(17362,'kind',0,1,' image '),(17362,'slug',0,1,''),(17362,'title',0,1,' image3 '),(17363,'extension',0,1,' png '),(17363,'filename',0,1,' image1 png '),(17363,'kind',0,1,' image '),(17363,'slug',0,1,''),(17363,'title',0,1,' image1 '),(17364,'extension',0,1,' png '),(17364,'filename',0,1,' image2 png '),(17364,'kind',0,1,' image '),(17364,'slug',0,1,''),(17364,'title',0,1,' image2 '),(17365,'extension',0,1,' png '),(17365,'filename',0,1,' screen shot 2019 03 13 at 4 40 45 pm png '),(17365,'kind',0,1,' image '),(17365,'slug',0,1,''),(17365,'title',0,1,' screen shot 2019 03 13 at 4 40 45 pm '),(17366,'extension',0,1,' png '),(17366,'filename',0,1,' screen shot 2019 03 13 at 4 40 15 pm png '),(17366,'kind',0,1,' image '),(17366,'slug',0,1,''),(17366,'title',0,1,' screen shot 2019 03 13 at 4 40 15 pm '),(17367,'extension',0,1,' jpeg '),(17367,'filename',0,1,' image 1 1 jpeg '),(17367,'kind',0,1,' image '),(17367,'slug',0,1,''),(17367,'title',0,1,' image 1 1 '),(17368,'extension',0,1,' jpg '),(17368,'filename',0,1,' acc jpg '),(17368,'kind',0,1,' image '),(17368,'slug',0,1,''),(17368,'title',0,1,' acc '),(17369,'extension',0,1,' jpg '),(17369,'filename',0,1,' bpeq jpg '),(17369,'kind',0,1,' image '),(17369,'slug',0,1,''),(17369,'title',0,1,' bpeq '),(17370,'extension',0,1,' jpg '),(17370,'filename',0,1,' ccc jpg '),(17370,'kind',0,1,' image '),(17370,'slug',0,1,''),(17370,'title',0,1,' ccc '),(17371,'extension',0,1,' jpg '),(17371,'filename',0,1,' cciq jpg '),(17371,'kind',0,1,' image '),(17371,'slug',0,1,''),(17371,'title',0,1,' cciq '),(17372,'extension',0,1,' jpg '),(17372,'filename',0,1,' ipswich jpg '),(17372,'kind',0,1,' image '),(17372,'slug',0,1,''),(17372,'title',0,1,' ipswich '),(17373,'extension',0,1,' jpg '),(17373,'filename',0,1,' mbc jpg '),(17373,'kind',0,1,' image '),(17373,'slug',0,1,''),(17373,'title',0,1,' mbc '),(17374,'extension',0,1,' jpg '),(17374,'filename',0,1,' ndvr jpg '),(17374,'kind',0,1,' image '),(17374,'slug',0,1,''),(17374,'title',0,1,' ndvr '),(17375,'extension',0,1,' jpg '),(17375,'filename',0,1,' phn jpg '),(17375,'kind',0,1,' image '),(17375,'slug',0,1,''),(17375,'title',0,1,' phn '),(17376,'extension',0,1,' jpg '),(17376,'filename',0,1,' qg jpg '),(17376,'kind',0,1,' image '),(17376,'slug',0,1,''),(17376,'title',0,1,' qg '),(17377,'extension',0,1,' jpg '),(17377,'filename',0,1,' qsa jpg '),(17377,'kind',0,1,' image '),(17377,'slug',0,1,''),(17377,'title',0,1,' qsa '),(17378,'extension',0,1,' jpg '),(17378,'filename',0,1,' quu jpg '),(17378,'kind',0,1,' image '),(17378,'slug',0,1,''),(17378,'title',0,1,' quu '),(17379,'extension',0,1,' jpg '),(17379,'filename',0,1,' rcc jpg '),(17379,'kind',0,1,' image '),(17379,'slug',0,1,''),(17379,'title',0,1,' rcc '),(17380,'extension',0,1,' jpg '),(17380,'filename',0,1,' retireaustralia jpg '),(17380,'kind',0,1,' image '),(17380,'slug',0,1,''),(17380,'title',0,1,' retireaustralia '),(17381,'extension',0,1,' jpg '),(17381,'filename',0,1,' revelian jpg '),(17381,'kind',0,1,' image '),(17381,'slug',0,1,''),(17381,'title',0,1,' revelian '),(17382,'extension',0,1,' jpg '),(17382,'filename',0,1,' sentis jpg '),(17382,'kind',0,1,' image '),(17382,'slug',0,1,''),(17382,'title',0,1,' sentis '),(17383,'extension',0,1,' jpg '),(17383,'filename',0,1,' tritium jpg '),(17383,'kind',0,1,' image '),(17383,'slug',0,1,''),(17383,'title',0,1,' tritium '),(17384,'extension',0,1,' png '),(17384,'filename',0,1,' quu tile png '),(17384,'kind',0,1,' image '),(17384,'slug',0,1,''),(17384,'title',0,1,' quu tile '),(17385,'extension',0,1,' jpg '),(17385,'filename',0,1,' revelianvideo jpg '),(17385,'kind',0,1,' image '),(17385,'slug',0,1,''),(17385,'title',0,1,' revelianvideo '),(17386,'extension',0,1,' jpg '),(17386,'filename',0,1,' websitetile jpg '),(17386,'kind',0,1,' image '),(17386,'slug',0,1,''),(17386,'title',0,1,' websitetile '),(17387,'extension',0,1,' jpg '),(17387,'filename',0,1,' unadjustednonraw thumb 3bb2 jpg '),(17387,'kind',0,1,' image '),(17387,'slug',0,1,''),(17387,'title',0,1,' unadjustednonraw thumb 3bb2 '),(17388,'extension',0,1,' png '),(17388,'filename',0,1,' icon1 png '),(17388,'kind',0,1,' image '),(17388,'slug',0,1,''),(17388,'title',0,1,' icon1 '),(17389,'extension',0,1,' png '),(17389,'filename',0,1,' icon2 png '),(17389,'kind',0,1,' image '),(17389,'slug',0,1,''),(17389,'title',0,1,' icon2 '),(17390,'extension',0,1,' png '),(17390,'filename',0,1,' icon3 png '),(17390,'kind',0,1,' image '),(17390,'slug',0,1,''),(17390,'title',0,1,' icon3 '),(17391,'extension',0,1,' jpg '),(17391,'filename',0,1,' scott1 jpg '),(17391,'kind',0,1,' image '),(17391,'slug',0,1,''),(17391,'title',0,1,' scott1 '),(17392,'extension',0,1,' jpg '),(17392,'filename',0,1,' scott2 jpg '),(17392,'kind',0,1,' image '),(17392,'slug',0,1,''),(17392,'title',0,1,' scott2 '),(17393,'extension',0,1,' jpg '),(17393,'filename',0,1,' scott3 jpg '),(17393,'kind',0,1,' image '),(17393,'slug',0,1,''),(17393,'title',0,1,' scott3 '),(17394,'extension',0,1,' jpg '),(17394,'filename',0,1,' img 3733 jpg '),(17394,'kind',0,1,' image '),(17394,'slug',0,1,''),(17394,'title',0,1,' img 3733 '),(17395,'extension',0,1,' jpg '),(17395,'filename',0,1,' img 5098 jpg '),(17395,'kind',0,1,' image '),(17395,'slug',0,1,''),(17395,'title',0,1,' img 5098 '),(17396,'extension',0,1,' jpg '),(17396,'filename',0,1,' img 3471 jpg '),(17396,'kind',0,1,' image '),(17396,'slug',0,1,''),(17396,'title',0,1,' img 3471 '),(17397,'extension',0,1,' jpg '),(17397,'filename',0,1,' img 4207 jpg '),(17397,'kind',0,1,' image '),(17397,'slug',0,1,''),(17397,'title',0,1,' img 4207 '),(17398,'extension',0,1,' jpg '),(17398,'filename',0,1,' hqt video jpg '),(17398,'kind',0,1,' image '),(17398,'slug',0,1,''),(17398,'title',0,1,' hqt video '),(17399,'extension',0,1,' jpg '),(17399,'filename',0,1,' hqt 14 jpg '),(17399,'kind',0,1,' image '),(17399,'slug',0,1,''),(17399,'title',0,1,' hqt 14 '),(17400,'extension',0,1,' jpg '),(17400,'filename',0,1,' hqt 11 jpg '),(17400,'kind',0,1,' image '),(17400,'slug',0,1,''),(17400,'title',0,1,' hqt 11 '),(17401,'extension',0,1,' jpg '),(17401,'filename',0,1,' hqt 12 jpg '),(17401,'kind',0,1,' image '),(17401,'slug',0,1,''),(17401,'title',0,1,' hqt 12 '),(17402,'extension',0,1,' jpg '),(17402,'filename',0,1,' hqt 15 jpg '),(17402,'kind',0,1,' image '),(17402,'slug',0,1,''),(17402,'title',0,1,' hqt 15 '),(17403,'extension',0,1,' jpg '),(17403,'filename',0,1,' hqt 13 jpg '),(17403,'kind',0,1,' image '),(17403,'slug',0,1,''),(17403,'title',0,1,' hqt 13 '),(17404,'extension',0,1,' jpg '),(17404,'filename',0,1,' life style castle05 jpg '),(17404,'kind',0,1,' image '),(17404,'slug',0,1,''),(17404,'title',0,1,' life style castle05 '),(17405,'extension',0,1,' jpg '),(17405,'filename',0,1,' newpictures jpg '),(17405,'kind',0,1,' image '),(17405,'slug',0,1,''),(17405,'title',0,1,' newpictures '),(17406,'extension',0,1,' jpg '),(17406,'filename',0,1,' desktop hd copy jpg '),(17406,'kind',0,1,' image '),(17406,'slug',0,1,''),(17406,'title',0,1,' desktop hd copy '),(17407,'extension',0,1,' jpg '),(17407,'filename',0,1,' desktop hd copy 3 jpg '),(17407,'kind',0,1,' image '),(17407,'slug',0,1,''),(17407,'title',0,1,' desktop hd copy 3 '),(17408,'extension',0,1,' jpg '),(17408,'filename',0,1,' desktop hd copy 2 jpg '),(17408,'kind',0,1,' image '),(17408,'slug',0,1,''),(17408,'title',0,1,' desktop hd copy 2 '),(17409,'extension',0,1,' jpg '),(17409,'filename',0,1,' screen shot 2019 03 15 at 12 18 44 pm jpg '),(17409,'kind',0,1,' image '),(17409,'slug',0,1,''),(17409,'title',0,1,' screen shot 2019 03 15 at 12 18 44 pm '),(17410,'extension',0,1,' png '),(17410,'filename',0,1,' backedbynwo png '),(17410,'kind',0,1,' image '),(17410,'slug',0,1,''),(17410,'title',0,1,' backedbynwo '),(17411,'extension',0,1,' jpg '),(17411,'filename',0,1,' services jpg '),(17411,'kind',0,1,' image '),(17411,'slug',0,1,''),(17411,'title',0,1,' services '),(17412,'extension',0,1,' jpg '),(17412,'filename',0,1,' services2 jpg '),(17412,'kind',0,1,' image '),(17412,'slug',0,1,''),(17412,'title',0,1,' services2 '),(17413,'extension',0,1,' jpg '),(17413,'filename',0,1,' services3 jpg '),(17413,'kind',0,1,' image '),(17413,'slug',0,1,''),(17413,'title',0,1,' services3 '),(17414,'extension',0,1,' jpg '),(17414,'filename',0,1,' services4 jpg '),(17414,'kind',0,1,' image '),(17414,'slug',0,1,''),(17414,'title',0,1,' services4 '),(17415,'extension',0,1,' jpg '),(17415,'filename',0,1,' contact jpg '),(17415,'kind',0,1,' image '),(17415,'slug',0,1,''),(17415,'title',0,1,' contact '),(17416,'extension',0,1,' png '),(17416,'filename',0,1,' people png '),(17416,'kind',0,1,' image '),(17416,'slug',0,1,''),(17416,'title',0,1,' people '),(17417,'extension',0,1,' png '),(17417,'filename',0,1,' people2 png '),(17417,'kind',0,1,' image '),(17417,'slug',0,1,''),(17417,'title',0,1,' people2 '),(17418,'extension',0,1,' jpg '),(17418,'filename',0,1,' people3 jpg '),(17418,'kind',0,1,' image '),(17418,'slug',0,1,''),(17418,'title',0,1,' people3 '),(17419,'extension',0,1,' jpg '),(17419,'filename',0,1,' people4 jpg '),(17419,'kind',0,1,' image '),(17419,'slug',0,1,''),(17419,'title',0,1,' people4 '),(17420,'extension',0,1,' jpg '),(17420,'filename',0,1,' andrew ali booth sml 1000 jpg '),(17420,'kind',0,1,' image '),(17420,'slug',0,1,''),(17420,'title',0,1,' andrew ali booth sml 1000 '),(17421,'extension',0,1,' jpg '),(17421,'filename',0,1,' contact2 jpg '),(17421,'kind',0,1,' image '),(17421,'slug',0,1,''),(17421,'title',0,1,' contact2 '),(17422,'extension',0,1,' jpg '),(17422,'filename',0,1,' istock 911033734 jpg '),(17422,'kind',0,1,' image '),(17422,'slug',0,1,''),(17422,'title',0,1,' istock 911033734 '),(17423,'extension',0,1,' jpg '),(17423,'filename',0,1,' istock 905389930 jpg '),(17423,'kind',0,1,' image '),(17423,'slug',0,1,''),(17423,'title',0,1,' istock 905389930 '),(17424,'extension',0,1,' jpg '),(17424,'filename',0,1,' istock 958693744 jpg '),(17424,'kind',0,1,' image '),(17424,'slug',0,1,''),(17424,'title',0,1,' istock 958693744 '),(17425,'extension',0,1,' jpg '),(17425,'filename',0,1,' istock 950216174 jpg '),(17425,'kind',0,1,' image '),(17425,'slug',0,1,''),(17425,'title',0,1,' istock 950216174 '),(17426,'extension',0,1,' jpg '),(17426,'filename',0,1,' istock 510868382 jpg '),(17426,'kind',0,1,' image '),(17426,'slug',0,1,''),(17426,'title',0,1,' istock 510868382 '),(17427,'extension',0,1,' jpg '),(17427,'filename',0,1,' istock 510868020 jpg '),(17427,'kind',0,1,' image '),(17427,'slug',0,1,''),(17427,'title',0,1,' istock 510868020 '),(17428,'extension',0,1,' jpg '),(17428,'filename',0,1,' istock 656362342 jpg '),(17428,'kind',0,1,' image '),(17428,'slug',0,1,''),(17428,'title',0,1,' istock 656362342 '),(17429,'extension',0,1,' jpg '),(17429,'filename',0,1,' istock 1052205052 jpg '),(17429,'kind',0,1,' image '),(17429,'slug',0,1,''),(17429,'title',0,1,' istock 1052205052 '),(17430,'extension',0,1,' jpg '),(17430,'filename',0,1,' istock 489250372 jpg '),(17430,'kind',0,1,' image '),(17430,'slug',0,1,''),(17430,'title',0,1,' istock 489250372 '),(17431,'extension',0,1,' jpg '),(17431,'filename',0,1,' istock 521457912 jpg '),(17431,'kind',0,1,' image '),(17431,'slug',0,1,''),(17431,'title',0,1,' istock 521457912 '),(17432,'extension',0,1,' jpg '),(17432,'filename',0,1,' istock 925712824 jpg '),(17432,'kind',0,1,' image '),(17432,'slug',0,1,''),(17432,'title',0,1,' istock 925712824 '),(17433,'extension',0,1,' jpg '),(17433,'filename',0,1,' istock 641523282 jpg '),(17433,'kind',0,1,' image '),(17433,'slug',0,1,''),(17433,'title',0,1,' istock 641523282 '),(17434,'extension',0,1,' jpg '),(17434,'filename',0,1,' istock 1035462384 jpg '),(17434,'kind',0,1,' image '),(17434,'slug',0,1,''),(17434,'title',0,1,' istock 1035462384 '),(17435,'extension',0,1,' jpg '),(17435,'filename',0,1,' istock 517228554 jpg '),(17435,'kind',0,1,' image '),(17435,'slug',0,1,''),(17435,'title',0,1,' istock 517228554 '),(17436,'extension',0,1,' jpg '),(17436,'filename',0,1,' istock 491490296 jpg '),(17436,'kind',0,1,' image '),(17436,'slug',0,1,''),(17436,'title',0,1,' istock 491490296 '),(17437,'extension',0,1,' jpg '),(17437,'filename',0,1,' istock 962558946 jpg '),(17437,'kind',0,1,' image '),(17437,'slug',0,1,''),(17437,'title',0,1,' istock 962558946 '),(17438,'extension',0,1,' jpg '),(17438,'filename',0,1,' istock 873554714 jpg '),(17438,'kind',0,1,' image '),(17438,'slug',0,1,''),(17438,'title',0,1,' istock 873554714 '),(17439,'extension',0,1,' jpg '),(17439,'filename',0,1,' istock 515965490 jpg '),(17439,'kind',0,1,' image '),(17439,'slug',0,1,''),(17439,'title',0,1,' istock 515965490 '),(17440,'extension',0,1,' jpg '),(17440,'filename',0,1,' istock 506435716 jpg '),(17440,'kind',0,1,' image '),(17440,'slug',0,1,''),(17440,'title',0,1,' istock 506435716 '),(17441,'extension',0,1,' jpg '),(17441,'filename',0,1,' istock 894068816 jpg '),(17441,'kind',0,1,' image '),(17441,'slug',0,1,''),(17441,'title',0,1,' istock 894068816 '),(17442,'extension',0,1,' jpg '),(17442,'filename',0,1,' istock 680238016 jpg '),(17442,'kind',0,1,' image '),(17442,'slug',0,1,''),(17442,'title',0,1,' istock 680238016 '),(17443,'extension',0,1,' jpg '),(17443,'filename',0,1,' istock 1003225576 jpg '),(17443,'kind',0,1,' image '),(17443,'slug',0,1,''),(17443,'title',0,1,' istock 1003225576 '),(17444,'extension',0,1,' jpg '),(17444,'filename',0,1,' istock 916563360 jpg '),(17444,'kind',0,1,' image '),(17444,'slug',0,1,''),(17444,'title',0,1,' istock 916563360 '),(17445,'extension',0,1,' jpg '),(17445,'filename',0,1,' istock 994198500 jpg '),(17445,'kind',0,1,' image '),(17445,'slug',0,1,''),(17445,'title',0,1,' istock 994198500 '),(17446,'extension',0,1,' jpg '),(17446,'filename',0,1,' istock 680338102 jpg '),(17446,'kind',0,1,' image '),(17446,'slug',0,1,''),(17446,'title',0,1,' istock 680338102 '),(17447,'extension',0,1,' jpg '),(17447,'filename',0,1,' istock 937407226 jpg '),(17447,'kind',0,1,' image '),(17447,'slug',0,1,''),(17447,'title',0,1,' istock 937407226 '),(17448,'extension',0,1,' jpg '),(17448,'filename',0,1,' istock 133313561 jpg '),(17448,'kind',0,1,' image '),(17448,'slug',0,1,''),(17448,'title',0,1,' istock 133313561 '),(17449,'extension',0,1,' jpg '),(17449,'filename',0,1,' istock 916628448 jpg '),(17449,'kind',0,1,' image '),(17449,'slug',0,1,''),(17449,'title',0,1,' istock 916628448 '),(17450,'extension',0,1,' jpg '),(17450,'filename',0,1,' istock 1036100456 jpg '),(17450,'kind',0,1,' image '),(17450,'slug',0,1,''),(17450,'title',0,1,' istock 1036100456 '),(17451,'extension',0,1,' jpg '),(17451,'filename',0,1,' istock 939395854 jpg '),(17451,'kind',0,1,' image '),(17451,'slug',0,1,''),(17451,'title',0,1,' istock 939395854 '),(17452,'extension',0,1,' jpg '),(17452,'filename',0,1,' istock 1018683178 jpg '),(17452,'kind',0,1,' image '),(17452,'slug',0,1,''),(17452,'title',0,1,' istock 1018683178 '),(17453,'extension',0,1,' jpg '),(17453,'filename',0,1,' istock 929888090 jpg '),(17453,'kind',0,1,' image '),(17453,'slug',0,1,''),(17453,'title',0,1,' istock 929888090 '),(17454,'extension',0,1,' jpg '),(17454,'filename',0,1,' phn preview jpg '),(17454,'kind',0,1,' image '),(17454,'slug',0,1,''),(17454,'title',0,1,' phn preview '),(17455,'extension',0,1,' jpg '),(17455,'filename',0,1,' qfcc striped jpg '),(17455,'kind',0,1,' image '),(17455,'slug',0,1,''),(17455,'title',0,1,' qfcc striped '),(17456,'extension',0,1,' jpg '),(17456,'filename',0,1,' qcs jpg '),(17456,'kind',0,1,' image '),(17456,'slug',0,1,''),(17456,'title',0,1,' qcs '),(17457,'extension',0,1,' jpg '),(17457,'filename',0,1,' disti jpg '),(17457,'kind',0,1,' image '),(17457,'slug',0,1,''),(17457,'title',0,1,' disti '),(17458,'extension',0,1,' jpg '),(17458,'filename',0,1,' placeholder inline jpg '),(17458,'kind',0,1,' image '),(17458,'slug',0,1,''),(17458,'title',0,1,' placeholder inline '),(17459,'extension',0,1,' jpg '),(17459,'filename',0,1,' placeholder fullwidth jpg '),(17459,'kind',0,1,' image '),(17459,'slug',0,1,''),(17459,'title',0,1,' placeholder fullwidth '),(17460,'extension',0,1,' jpg '),(17460,'filename',0,1,' ct 1 jpg '),(17460,'kind',0,1,' image '),(17460,'slug',0,1,''),(17460,'title',0,1,' ct 1 '),(17461,'extension',0,1,' jpg '),(17461,'filename',0,1,' ct 4 jpg '),(17461,'kind',0,1,' image '),(17461,'slug',0,1,''),(17461,'title',0,1,' ct 4 '),(17462,'extension',0,1,' jpg '),(17462,'filename',0,1,' ct 3 jpg '),(17462,'kind',0,1,' image '),(17462,'slug',0,1,''),(17462,'title',0,1,' ct 3 '),(17463,'extension',0,1,' jpg '),(17463,'filename',0,1,' ct 2 jpg '),(17463,'kind',0,1,' image '),(17463,'slug',0,1,''),(17463,'title',0,1,' ct 2 '),(17464,'extension',0,1,' jpg '),(17464,'filename',0,1,' ccc 1 jpg '),(17464,'kind',0,1,' image '),(17464,'slug',0,1,''),(17464,'title',0,1,' ccc 1 '),(17465,'extension',0,1,' jpg '),(17465,'filename',0,1,' ccc 3 jpg '),(17465,'kind',0,1,' image '),(17465,'slug',0,1,''),(17465,'title',0,1,' ccc 3 '),(17466,'extension',0,1,' jpg '),(17466,'filename',0,1,' ccc 6 jpg '),(17466,'kind',0,1,' image '),(17466,'slug',0,1,''),(17466,'title',0,1,' ccc 6 '),(17467,'extension',0,1,' jpg '),(17467,'filename',0,1,' ccc 4 jpg '),(17467,'kind',0,1,' image '),(17467,'slug',0,1,''),(17467,'title',0,1,' ccc 4 '),(17468,'extension',0,1,' jpg '),(17468,'filename',0,1,' ccc 5 jpg '),(17468,'kind',0,1,' image '),(17468,'slug',0,1,''),(17468,'title',0,1,' ccc 5 '),(17469,'extension',0,1,' jpg '),(17469,'filename',0,1,' ccc 2 jpg '),(17469,'kind',0,1,' image '),(17469,'slug',0,1,''),(17469,'title',0,1,' ccc 2 '),(17470,'extension',0,1,' jpg '),(17470,'filename',0,1,' h jpg '),(17470,'kind',0,1,' image '),(17470,'slug',0,1,''),(17470,'title',0,1,' h '),(17471,'extension',0,1,' jpg '),(17471,'filename',0,1,' bruce black jpg '),(17471,'kind',0,1,' image '),(17471,'slug',0,1,''),(17471,'title',0,1,' bruce black '),(17472,'extension',0,1,' jpg '),(17472,'filename',0,1,' bruce jpg '),(17472,'kind',0,1,' image '),(17472,'slug',0,1,''),(17472,'title',0,1,' bruce '),(17473,'extension',0,1,' jpg '),(17473,'filename',0,1,' 1 jpg '),(17473,'kind',0,1,' image '),(17473,'slug',0,1,''),(17473,'title',0,1,' 1 '),(17474,'extension',0,1,' jpg '),(17474,'filename',0,1,' 2 jpg '),(17474,'kind',0,1,' image '),(17474,'slug',0,1,''),(17474,'title',0,1,' 2 '),(17475,'extension',0,1,' jpg '),(17475,'filename',0,1,' 3 jpg '),(17475,'kind',0,1,' image '),(17475,'slug',0,1,''),(17475,'title',0,1,' 3 '),(17476,'extension',0,1,' jpg '),(17476,'filename',0,1,' suz black jpg '),(17476,'kind',0,1,' image '),(17476,'slug',0,1,''),(17476,'title',0,1,' suz black '),(17477,'extension',0,1,' jpg '),(17477,'filename',0,1,' 19 06 landing page 13fam jpg '),(17477,'kind',0,1,' image '),(17477,'slug',0,1,''),(17477,'title',0,1,' 19 06 landing page 13fam '),(17478,'extension',0,1,' jpg '),(17478,'filename',0,1,' 19 06 landing page getstartedvoucher jpg '),(17478,'kind',0,1,' image '),(17478,'slug',0,1,''),(17478,'title',0,1,' 19 06 landing page getstartedvoucher '),(17479,'extension',0,1,' jpg '),(17479,'filename',0,1,' 19 06 landing page hqt jpg '),(17479,'kind',0,1,' image '),(17479,'slug',0,1,''),(17479,'title',0,1,' 19 06 landing page hqt '),(17480,'extension',0,1,' jpg '),(17480,'filename',0,1,' 19 06 landing page no3 jpg '),(17480,'kind',0,1,' image '),(17480,'slug',0,1,''),(17480,'title',0,1,' 19 06 landing page no3 '),(17481,'extension',0,1,' png '),(17481,'filename',0,1,' nwo traffic png '),(17481,'kind',0,1,' image '),(17481,'slug',0,1,''),(17481,'title',0,1,' nwo traffic '),(17482,'extension',0,1,' jpg '),(17482,'filename',0,1,' piv 1 jpg '),(17482,'kind',0,1,' image '),(17482,'slug',0,1,''),(17482,'title',0,1,' piv 1 '),(17483,'extension',0,1,' jpg '),(17483,'filename',0,1,' piv 2 jpg '),(17483,'kind',0,1,' image '),(17483,'slug',0,1,''),(17483,'title',0,1,' piv 2 '),(17484,'extension',0,1,' jpg '),(17484,'filename',0,1,' piv 3 jpg '),(17484,'kind',0,1,' image '),(17484,'slug',0,1,''),(17484,'title',0,1,' piv 3 '),(17485,'extension',0,1,' jpg '),(17485,'filename',0,1,' piv 4 jpg '),(17485,'kind',0,1,' image '),(17485,'slug',0,1,''),(17485,'title',0,1,' piv 4 '),(17486,'extension',0,1,' jpg '),(17486,'filename',0,1,' piv 5 jpg '),(17486,'kind',0,1,' image '),(17486,'slug',0,1,''),(17486,'title',0,1,' piv 5 '),(17487,'extension',0,1,' jpg '),(17487,'filename',0,1,' piv 6 jpg '),(17487,'kind',0,1,' image '),(17487,'slug',0,1,''),(17487,'title',0,1,' piv 6 '),(17488,'extension',0,1,' jpg '),(17488,'filename',0,1,' piv 7 jpg '),(17488,'kind',0,1,' image '),(17488,'slug',0,1,''),(17488,'title',0,1,' piv 7 '),(17489,'extension',0,1,' jpg '),(17489,'filename',0,1,' piv 8 jpg '),(17489,'kind',0,1,' image '),(17489,'slug',0,1,''),(17489,'title',0,1,' piv 8 '),(17490,'extension',0,1,' jpg '),(17490,'filename',0,1,' piv 9 jpg '),(17490,'kind',0,1,' image '),(17490,'slug',0,1,''),(17490,'title',0,1,' piv 9 '),(17491,'extension',0,1,' jpg '),(17491,'filename',0,1,' qhrc 800x500 1 jpg '),(17491,'kind',0,1,' image '),(17491,'slug',0,1,''),(17491,'title',0,1,' qhrc 800x500 1 '),(17492,'extension',0,1,' jpg '),(17492,'filename',0,1,' qhrc 800x500 3 jpg '),(17492,'kind',0,1,' image '),(17492,'slug',0,1,''),(17492,'title',0,1,' qhrc 800x500 3 '),(17493,'extension',0,1,' jpg '),(17493,'filename',0,1,' qhrc 800x500 4 jpg '),(17493,'kind',0,1,' image '),(17493,'slug',0,1,''),(17493,'title',0,1,' qhrc 800x500 4 '),(17494,'extension',0,1,' jpg '),(17494,'filename',0,1,' qhrc 800x500 5 jpg '),(17494,'kind',0,1,' image '),(17494,'slug',0,1,''),(17494,'title',0,1,' qhrc 800x500 5 '),(17495,'extension',0,1,' jpg '),(17495,'filename',0,1,' qhrc 800x500 6 jpg '),(17495,'kind',0,1,' image '),(17495,'slug',0,1,''),(17495,'title',0,1,' qhrc 800x500 6 '),(17496,'extension',0,1,' jpg '),(17496,'filename',0,1,' old new pivotus jpg '),(17496,'kind',0,1,' image '),(17496,'slug',0,1,''),(17496,'title',0,1,' old new pivotus '),(17497,'extension',0,1,' jpg '),(17497,'filename',0,1,' 4 jpg '),(17497,'kind',0,1,' image '),(17497,'slug',0,1,''),(17497,'title',0,1,' 4 '),(17498,'extension',0,1,' jpg '),(17498,'filename',0,1,' 5 jpg '),(17498,'kind',0,1,' image '),(17498,'slug',0,1,''),(17498,'title',0,1,' 5 '),(17499,'extension',0,1,' jpg '),(17499,'filename',0,1,' 6 jpg '),(17499,'kind',0,1,' image '),(17499,'slug',0,1,''),(17499,'title',0,1,' 6 '),(17500,'extension',0,1,' jpg '),(17500,'filename',0,1,' istock 1058304620 jpg '),(17500,'kind',0,1,' image '),(17500,'slug',0,1,''),(17500,'title',0,1,' istock 1058304620 '),(17501,'extension',0,1,' jpg '),(17501,'filename',0,1,' istock 545276138 jpg '),(17501,'kind',0,1,' image '),(17501,'slug',0,1,''),(17501,'title',0,1,' istock 545276138 '),(17502,'extension',0,1,' jpg '),(17502,'filename',0,1,' venn jpg '),(17502,'kind',0,1,' image '),(17502,'slug',0,1,''),(17502,'title',0,1,' venn '),(17503,'extension',0,1,' png '),(17503,'filename',0,1,' download png '),(17503,'kind',0,1,' image '),(17503,'slug',0,1,''),(17503,'title',0,1,' download '),(17504,'extension',0,1,' jpg '),(17504,'filename',0,1,' mbbc p rgb tag jpg '),(17504,'kind',0,1,' image '),(17504,'slug',0,1,''),(17504,'title',0,1,' mbbc p rgb tag '),(17505,'extension',0,1,' jpg '),(17505,'filename',0,1,' mbc p rgb tag jpg '),(17505,'kind',0,1,' image '),(17505,'slug',0,1,''),(17505,'title',0,1,' mbc p rgb tag '),(17506,'extension',0,1,' png '),(17506,'filename',0,1,' pymblelclogo stacked blue png '),(17506,'kind',0,1,' image '),(17506,'slug',0,1,''),(17506,'title',0,1,' pymblelclogo stacked blue '),(17507,'extension',0,1,' png '),(17507,'filename',0,1,' mcalogo4 png '),(17507,'kind',0,1,' image '),(17507,'slug',0,1,''),(17507,'title',0,1,' mcalogo4 '),(17508,'extension',0,1,' jpg '),(17508,'filename',0,1,' our ladys college qld 1 jpg '),(17508,'kind',0,1,' image '),(17508,'slug',0,1,''),(17508,'title',0,1,' our ladys college qld 1 '),(17509,'extension',0,1,' png '),(17509,'filename',0,1,' logo png '),(17509,'kind',0,1,' image '),(17509,'slug',0,1,''),(17509,'title',0,1,' logo '),(17510,'extension',0,1,' png '),(17510,'filename',0,1,' mackenzie ss logo png '),(17510,'kind',0,1,' image '),(17510,'slug',0,1,''),(17510,'title',0,1,' mackenzie ss logo '),(17511,'extension',0,1,' png '),(17511,'filename',0,1,' sdc main rgb png '),(17511,'kind',0,1,' image '),(17511,'slug',0,1,''),(17511,'title',0,1,' sdc main rgb '),(17512,'extension',0,1,' jpg '),(17512,'filename',0,1,' ipswich grammar crest tile 390x250 jpg '),(17512,'kind',0,1,' image '),(17512,'slug',0,1,''),(17512,'title',0,1,' ipswich grammar crest tile 390x250 '),(17513,'extension',0,1,' png '),(17513,'filename',0,1,' download 1 png '),(17513,'kind',0,1,' image '),(17513,'slug',0,1,''),(17513,'title',0,1,' download 1 '),(17514,'extension',0,1,' png '),(17514,'filename',0,1,' png '),(17514,'kind',0,1,' image '),(17514,'slug',0,1,''),(17514,'title',0,1,' 0 '),(17515,'extension',0,1,' jpg '),(17515,'filename',0,1,' anfwmxld 400x400 jpg '),(17515,'kind',0,1,' image '),(17515,'slug',0,1,''),(17515,'title',0,1,' anfwmxld 400x400 '),(17516,'extension',0,1,' jpg '),(17516,'filename',0,1,' educatecologo vertical rose rgb jpg '),(17516,'kind',0,1,' image '),(17516,'slug',0,1,''),(17516,'title',0,1,' educatecologo vertical rose rgb '),(17517,'extension',0,1,' png '),(17517,'filename',0,1,' malyon footer rgb png '),(17517,'kind',0,1,' image '),(17517,'slug',0,1,''),(17517,'title',0,1,' malyon footer rgb '),(17518,'extension',0,1,' png '),(17518,'filename',0,1,' qlddeptofedu png '),(17518,'kind',0,1,' image '),(17518,'slug',0,1,''),(17518,'title',0,1,' qlddeptofedu '),(17519,'extension',0,1,' jpg '),(17519,'filename',0,1,' tbc jpg '),(17519,'kind',0,1,' image '),(17519,'slug',0,1,''),(17519,'title',0,1,' tbc '),(17520,'extension',0,1,' jpg '),(17520,'filename',0,1,' ccc ican 1 jpg '),(17520,'kind',0,1,' image '),(17520,'slug',0,1,''),(17520,'title',0,1,' ccc ican 1 '),(17521,'extension',0,1,' jpg '),(17521,'filename',0,1,' ccc ican 2 jpg '),(17521,'kind',0,1,' image '),(17521,'slug',0,1,''),(17521,'title',0,1,' ccc ican 2 '),(17522,'extension',0,1,' jpg '),(17522,'filename',0,1,' ccc ican 3 jpg '),(17522,'kind',0,1,' image '),(17522,'slug',0,1,''),(17522,'title',0,1,' ccc ican 3 '),(17523,'extension',0,1,' jpg '),(17523,'filename',0,1,' ccc ican 4 jpg '),(17523,'kind',0,1,' image '),(17523,'slug',0,1,''),(17523,'title',0,1,' ccc ican 4 '),(17524,'extension',0,1,' jpg '),(17524,'filename',0,1,' ccc ican 6 jpg '),(17524,'kind',0,1,' image '),(17524,'slug',0,1,''),(17524,'title',0,1,' ccc ican 6 '),(17525,'extension',0,1,' jpg '),(17525,'filename',0,1,' ccc ican 7 jpg '),(17525,'kind',0,1,' image '),(17525,'slug',0,1,''),(17525,'title',0,1,' ccc ican 7 '),(17526,'extension',0,1,' jpg '),(17526,'filename',0,1,' ccc ican 8 jpg '),(17526,'kind',0,1,' image '),(17526,'slug',0,1,''),(17526,'title',0,1,' ccc ican 8 '),(17527,'extension',0,1,' jpg '),(17527,'filename',0,1,' ccc ican 9 jpg '),(17527,'kind',0,1,' image '),(17527,'slug',0,1,''),(17527,'title',0,1,' ccc ican 9 '),(17528,'extension',0,1,' jpg '),(17528,'filename',0,1,' ccc ican 10 jpg '),(17528,'kind',0,1,' image '),(17528,'slug',0,1,''),(17528,'title',0,1,' ccc ican 10 '),(17529,'extension',0,1,' jpg '),(17529,'filename',0,1,' ccc ican 11 jpg '),(17529,'kind',0,1,' image '),(17529,'slug',0,1,''),(17529,'title',0,1,' ccc ican 11 '),(17530,'extension',0,1,' jpg '),(17530,'filename',0,1,' ccc ican 12 jpg '),(17530,'kind',0,1,' image '),(17530,'slug',0,1,''),(17530,'title',0,1,' ccc ican 12 '),(17531,'extension',0,1,' jpg '),(17531,'filename',0,1,' ccc ican 13 jpg '),(17531,'kind',0,1,' image '),(17531,'slug',0,1,''),(17531,'title',0,1,' ccc ican 13 '),(17532,'extension',0,1,' jpg '),(17532,'filename',0,1,' ccc ican 14 jpg '),(17532,'kind',0,1,' image '),(17532,'slug',0,1,''),(17532,'title',0,1,' ccc ican 14 '),(17533,'extension',0,1,' jpg '),(17533,'filename',0,1,' ccc ican 15 jpg '),(17533,'kind',0,1,' image '),(17533,'slug',0,1,''),(17533,'title',0,1,' ccc ican 15 '),(17534,'extension',0,1,' jpg '),(17534,'filename',0,1,' ccc ican 16 jpg '),(17534,'kind',0,1,' image '),(17534,'slug',0,1,''),(17534,'title',0,1,' ccc ican 16 '),(17535,'extension',0,1,' jpg '),(17535,'filename',0,1,' ccc ican 17 jpg '),(17535,'kind',0,1,' image '),(17535,'slug',0,1,''),(17535,'title',0,1,' ccc ican 17 '),(17536,'extension',0,1,' jpg '),(17536,'filename',0,1,' ccc ican 18 jpg '),(17536,'kind',0,1,' image '),(17536,'slug',0,1,''),(17536,'title',0,1,' ccc ican 18 '),(17537,'extension',0,1,' png '),(17537,'filename',0,1,' 19 09 mbc colleges 16 png '),(17537,'kind',0,1,' image '),(17537,'slug',0,1,''),(17537,'title',0,1,' 19 09 mbc colleges 16 '),(17538,'extension',0,1,' png '),(17538,'filename',0,1,' 19 09 mbc colleges 01 png '),(17538,'kind',0,1,' image '),(17538,'slug',0,1,''),(17538,'title',0,1,' 19 09 mbc colleges 01 '),(17539,'extension',0,1,' png '),(17539,'filename',0,1,' 19 09 mbc colleges 02 png '),(17539,'kind',0,1,' image '),(17539,'slug',0,1,''),(17539,'title',0,1,' 19 09 mbc colleges 02 '),(17540,'extension',0,1,' png '),(17540,'filename',0,1,' 19 09 mbc colleges 03 png '),(17540,'kind',0,1,' image '),(17540,'slug',0,1,''),(17540,'title',0,1,' 19 09 mbc colleges 03 '),(17541,'extension',0,1,' png '),(17541,'filename',0,1,' 19 09 mbc colleges 04 png '),(17541,'kind',0,1,' image '),(17541,'slug',0,1,''),(17541,'title',0,1,' 19 09 mbc colleges 04 '),(17542,'extension',0,1,' png '),(17542,'filename',0,1,' 19 09 mbc colleges 05 png '),(17542,'kind',0,1,' image '),(17542,'slug',0,1,''),(17542,'title',0,1,' 19 09 mbc colleges 05 '),(17543,'extension',0,1,' png '),(17543,'filename',0,1,' 19 09 mbc colleges 06 png '),(17543,'kind',0,1,' image '),(17543,'slug',0,1,''),(17543,'title',0,1,' 19 09 mbc colleges 06 '),(17544,'extension',0,1,' png '),(17544,'filename',0,1,' 19 09 mbc colleges 07 png '),(17544,'kind',0,1,' image '),(17544,'slug',0,1,''),(17544,'title',0,1,' 19 09 mbc colleges 07 '),(17545,'extension',0,1,' png '),(17545,'filename',0,1,' 19 09 mbc colleges 08 png '),(17545,'kind',0,1,' image '),(17545,'slug',0,1,''),(17545,'title',0,1,' 19 09 mbc colleges 08 '),(17546,'extension',0,1,' png '),(17546,'filename',0,1,' 19 09 mbc colleges 09 png '),(17546,'kind',0,1,' image '),(17546,'slug',0,1,''),(17546,'title',0,1,' 19 09 mbc colleges 09 '),(17547,'extension',0,1,' png '),(17547,'filename',0,1,' 19 09 mbc colleges 10 png '),(17547,'kind',0,1,' image '),(17547,'slug',0,1,''),(17547,'title',0,1,' 19 09 mbc colleges 10 '),(17548,'extension',0,1,' png '),(17548,'filename',0,1,' 19 09 mbc colleges 12 png '),(17548,'kind',0,1,' image '),(17548,'slug',0,1,''),(17548,'title',0,1,' 19 09 mbc colleges 12 '),(17549,'extension',0,1,' png '),(17549,'filename',0,1,' 19 09 mbc colleges 14 png '),(17549,'kind',0,1,' image '),(17549,'slug',0,1,''),(17549,'title',0,1,' 19 09 mbc colleges 14 '),(17550,'extension',0,1,' png '),(17550,'filename',0,1,' 19 09 mbc colleges 15 png '),(17550,'kind',0,1,' image '),(17550,'slug',0,1,''),(17550,'title',0,1,' 19 09 mbc colleges 15 '),(17551,'extension',0,1,' png '),(17551,'filename',0,1,' 19 5275 christmas e sig 32 png '),(17551,'kind',0,1,' image '),(17551,'slug',0,1,''),(17551,'title',0,1,' 19 5275 christmas e sig 32 '),(17552,'extension',0,1,' png '),(17552,'filename',0,1,' 19 5275 christmas e sig 3 png '),(17552,'kind',0,1,' image '),(17552,'slug',0,1,''),(17552,'title',0,1,' 19 5275 christmas e sig 3 '),(17553,'extension',0,1,' png '),(17553,'filename',0,1,' 19 5275 christmas e sig 4 png '),(17553,'kind',0,1,' image '),(17553,'slug',0,1,''),(17553,'title',0,1,' 19 5275 christmas e sig 4 '),(17554,'extension',0,1,' png '),(17554,'filename',0,1,' 19 5275 christmas e sig 42 png '),(17554,'kind',0,1,' image '),(17554,'slug',0,1,''),(17554,'title',0,1,' 19 5275 christmas e sig 42 '),(17555,'extension',0,1,' png '),(17555,'filename',0,1,' nwo logo stacked png '),(17555,'kind',0,1,' image '),(17555,'slug',0,1,''),(17555,'title',0,1,' nwo logo stacked '),(17556,'extension',0,1,' pdf '),(17556,'filename',0,1,' nwo andrews dads famous cheeseball pdf '),(17556,'kind',0,1,' pdf '),(17556,'slug',0,1,''),(17556,'title',0,1,' nwo andrews dads famous cheeseball '),(17557,'extension',0,1,' pdf '),(17557,'filename',0,1,' nwo becs nutella christmas tree pdf '),(17557,'kind',0,1,' pdf '),(17557,'slug',0,1,''),(17557,'title',0,1,' nwo becs nutella christmas tree '),(17558,'extension',0,1,' pdf '),(17558,'filename',0,1,' nwo bruces christmas pudding pdf '),(17558,'kind',0,1,' pdf '),(17558,'slug',0,1,''),(17558,'title',0,1,' nwo bruces christmas pudding '),(17559,'extension',0,1,' pdf '),(17559,'filename',0,1,' nwo cathys grandmas rum balls pdf '),(17559,'kind',0,1,' pdf '),(17559,'slug',0,1,''),(17559,'title',0,1,' nwo cathys grandmas rum balls '),(17560,'extension',0,1,' pdf '),(17560,'filename',0,1,' nwo elliots house deposit mousse pdf '),(17560,'kind',0,1,' pdf '),(17560,'slug',0,1,''),(17560,'title',0,1,' nwo elliots house deposit mousse '),(17561,'extension',0,1,' pdf '),(17561,'filename',0,1,' nwo jonnos trifle pdf '),(17561,'kind',0,1,' pdf '),(17561,'slug',0,1,''),(17561,'title',0,1,' nwo jonnos trifle '),(17562,'extension',0,1,' pdf '),(17562,'filename',0,1,' nwo kates aperol spritz pdf '),(17562,'kind',0,1,' pdf '),(17562,'slug',0,1,''),(17562,'title',0,1,' nwo kates aperol spritz '),(17563,'extension',0,1,' pdf '),(17563,'filename',0,1,' nwo kimis christmas eve sangria pdf '),(17563,'kind',0,1,' pdf '),(17563,'slug',0,1,''),(17563,'title',0,1,' nwo kimis christmas eve sangria '),(17564,'extension',0,1,' pdf '),(17564,'filename',0,1,' nwo lizs vasilopita pdf '),(17564,'kind',0,1,' pdf '),(17564,'slug',0,1,''),(17564,'title',0,1,' nwo lizs vasilopita '),(17565,'extension',0,1,' pdf '),(17565,'filename',0,1,' nwo scotts glazed ham pdf '),(17565,'kind',0,1,' pdf '),(17565,'slug',0,1,''),(17565,'title',0,1,' nwo scotts glazed ham '),(17566,'extension',0,1,' pdf '),(17566,'filename',0,1,' nwo suzs prosciutto lemon wrapped chicken pdf '),(17566,'kind',0,1,' pdf '),(17566,'slug',0,1,''),(17566,'title',0,1,' nwo suzs prosciutto lemon wrapped chicken '),(17567,'extension',0,1,' pdf '),(17567,'filename',0,1,' nwo tillys breakfast salad with tahini dressing pdf '),(17567,'kind',0,1,' pdf '),(17567,'slug',0,1,''),(17567,'title',0,1,' nwo tillys breakfast salad with tahini dressing '),(17568,'extension',0,1,' pdf '),(17568,'filename',0,1,' nwo scott 19 04 pdf '),(17568,'kind',0,1,' pdf '),(17568,'slug',0,1,''),(17568,'title',0,1,' nwo scott 19 04 '),(17569,'extension',0,1,' pdf '),(17569,'filename',0,1,' nwo suzanne 19 07 pdf '),(17569,'kind',0,1,' pdf '),(17569,'slug',0,1,''),(17569,'title',0,1,' nwo suzanne 19 07 '),(17570,'extension',0,1,' pdf '),(17570,'filename',0,1,' nwo team 20 04 pdf '),(17570,'kind',0,1,' pdf '),(17570,'slug',0,1,''),(17570,'title',0,1,' nwo team 20 04 '),(17571,'extension',0,1,' jpg '),(17571,'filename',0,1,' flag lady 1 jpg '),(17571,'kind',0,1,' image '),(17571,'slug',0,1,''),(17571,'title',0,1,' flag lady 1 '),(17572,'extension',0,1,' jpg '),(17572,'filename',0,1,' scott and suz 1 jpg '),(17572,'kind',0,1,' image '),(17572,'slug',0,1,''),(17572,'title',0,1,' scott and suz 1 '),(17573,'extension',0,1,' jpg '),(17573,'filename',0,1,' teal 01 jpg '),(17573,'kind',0,1,' image '),(17573,'slug',0,1,''),(17573,'title',0,1,' teal 01 '),(17574,'extension',0,1,' pdf '),(17574,'filename',0,1,' new word order strategic communication white paper pdf '),(17574,'kind',0,1,' pdf '),(17574,'slug',0,1,''),(17574,'title',0,1,' new word order strategic communication white paper '),(17593,'extension',0,1,' xml '),(17593,'filename',0,1,' newwordorder wordpress 2021 05 18 5 xml '),(17593,'kind',0,1,' xml '),(17593,'slug',0,1,''),(17593,'title',0,1,' newwordorder word press 2021 05 18 5 '),(17596,'extension',0,1,' csv '),(17596,'filename',0,1,' posts export 2021 may 18 0312 csv '),(17596,'kind',0,1,' unknown '),(17596,'slug',0,1,''),(17596,'title',0,1,' posts export 2021 may 18 0312 '),(17597,'extension',0,1,' csv '),(17597,'filename',0,1,' posts export 2021 may 18 0312 2 csv '),(17597,'kind',0,1,' unknown '),(17597,'slug',0,1,''),(17597,'title',0,1,' posts export 2021 may 18 0312 2 '),(17598,'extension',0,1,' xml '),(17598,'filename',0,1,' newwordorder wordpress 2021 05 18 6 xml '),(17598,'kind',0,1,' xml '),(17598,'slug',0,1,''),(17598,'title',0,1,' newwordorder word press 2021 05 18 6 '),(17600,'slug',0,1,' business to business 2 '),(17600,'title',0,1,' business to business '),(17601,'slug',0,1,' niche market 2 '),(17601,'title',0,1,' niche market '),(17602,'slug',0,1,' vertical market 2 '),(17602,'title',0,1,' vertical market '),(17603,'slug',0,1,' be heard across vertical markets and sectors '),(17603,'title',0,1,' be heard across vertical markets and sectors '),(17605,'slug',0,1,' case study 2 '),(17605,'title',0,1,' case study '),(17606,'slug',0,1,' client focus 2 '),(17606,'title',0,1,' client focus '),(17607,'slug',0,1,' client service 2 '),(17607,'title',0,1,' client service '),(17608,'slug',0,1,' state your clients case '),(17608,'title',0,1,' state your clients case '),(17610,'slug',0,1,' project management 2 '),(17610,'title',0,1,' project management '),(17611,'slug',0,1,' common sense isnt common '),(17611,'title',0,1,' common sense isnt common '),(17613,'slug',0,1,' how to read the media '),(17613,'title',0,1,' how to read the media '),(17615,'slug',0,1,' corporatese to english '),(17615,'title',0,1,' corporatese to english '),(17617,'slug',0,1,' management is more than measurement '),(17617,'title',0,1,' management is more than measurement '),(17619,'slug',0,1,' social media 2 '),(17619,'title',0,1,' social media '),(17620,'slug',0,1,' target audience 2 '),(17620,'title',0,1,' target audience '),(17621,'slug',0,1,' talking to the kids tips for marketing to gen y '),(17621,'title',0,1,' talking to the kids tips for marketing to gen y '),(17623,'slug',0,1,' righting writing '),(17623,'title',0,1,' righting writing '),(17625,'slug',0,1,' content marketing 2 '),(17625,'title',0,1,' content marketing '),(17626,'slug',0,1,' the year of content marketing '),(17626,'title',0,1,' the year of content marketing '),(17628,'slug',0,1,' learning to lead '),(17628,'title',0,1,' learning to lead '),(17630,'slug',0,1,' creative agency 2 '),(17630,'title',0,1,' creative agency '),(17631,'slug',0,1,' the problem of creativity '),(17631,'title',0,1,' the problem of creativity '),(17633,'slug',0,1,' mums mean business '),(17633,'title',0,1,' mums mean business '),(17635,'slug',0,1,' the tender pitch '),(17635,'title',0,1,' the tender pitch '),(17637,'slug',0,1,' stock photography 2 '),(17637,'title',0,1,' stock photography '),(17638,'slug',0,1,' photography and your brand '),(17638,'title',0,1,' photography and your brand '),(17640,'slug',0,1,' best practice 2 '),(17640,'title',0,1,' best practice '),(17641,'slug',0,1,' web copy 2 '),(17641,'title',0,1,' web copy '),(17642,'slug',0,1,' writing for readable web '),(17642,'title',0,1,' writing for readable web '),(17644,'field',164,1,' bill bernbach was the founding creative director of legendary manhattan ad agency doyle dane bernbach ddb he came out with quotes like advertising is fundamentally persuasion and persuasion happens to be not a science but an art and word of mouth is the best medium of all and rules are what the artist breaks the memorable never emerged from a formula thats really provocative stuff that makes you nod your head at the truth and simple power of his thinking and imagine how inspiring but uncompromising a boss he would have been what an exhilarating time to be writing bernbach not only had a way with a turn of phrase but he also really set up the structure of creative teams for marketing and advertising and was of course part of the inspiration for mad men but mostly he was a writer and what a writer he was his firm revolutionised advertising copy and laid out the early foundations for brand storytelling through engaging narrative and brand persona development we can and have all learned from these guys in the 1960s ddb took on volkswagen as a client and began creating a series of print ads that referred to the vw as a lemon and encouraged consumers to think small the copy by the incomparable julian koenig starts out saying this volkswagen missed the boat the chrome strip on the glove compartment is blemished and must be replaced not exactly sales speak it was funny it was clever and it was ground breaking for the rest of the decade vw kept their unconventional campaign rolling ddbs strategy of turning seeming faults into benefits was a huge hit one ad didnt even include a picture of the little lemon no point in showing you the 1962 volkswagen it still looks the same much has been written about the ads and you can take a look at a bunch of them here if you like it was ranked the best advertising campaign of the twentieth century by ad age and it deserves the title this sort of brand bravery is rare and may be a little of its time too the truth is that the power is all right there in the copy which exists to inspire us last words to mr bernbach himself you can say the right thing about a product and nobody will listen youve got to say it in such a way that people will feel it in their gut because if they dont feel it nothing will happen what is your brand really saying '),(17644,'slug',0,1,' what the artist breaks '),(17644,'title',0,1,' what the artist breaks '),(17646,'field',164,1,' the most common mistake made when they try to do it themselves is that their marcomms lacks a strategic understanding of the customer and or isnt linked to a business plan without the right kind of marcomms expertise you can push out communication that fails to engage or achieve the desired outcome at nwo our experienced professionals can develop customised marcomms strategies and compelling content to position your brand perfectly with the right audience heres a handy checklist of the important questions you need to ask and answer before embarking on any form of marcomms 1 what does the marketing communication need to deliver every strategy needs an objective is it revenue new customers enquiries set a goal that is measurable and realistic 2 how are we different think hard about what makes your business unique and differentiates you from your competitors then you can market your difference to link to your objective 3 who are our competitors effective marcomms starts with a robust analysis of your marketplace competitors map their strengths against your own unique offering 4 who are our customers most companies think they know their customers but not all go very far beneath the surface do you know what they really want have you asked them or have you assumed your product or service fits all their needs how do they buy your products services what is their mindset what problems do they have these are the types of strategic questions that need to be asked and answered to make your marcomms effective 5 are we using the right communication channels the best messages are wasted if your desired audience isnt seeing them use the right channel at the right time to ensure your messaging connects and engages 6 do we have the right message any business can talk about its product or service but is that what your customer wants to hear acknowledge the problem you are solving for them double check the language suits them ensure every message reflects your brand position your personality your tone of voice and has the creativity to cut through all the clutter 7 how are we measuring success define the measures youre using to link back to your goals you cant manage what you cant measure maximising your investment in marcomms is your ultimate goal and posing these questions before you start work is crucial to achieving long term success '),(17646,'slug',0,1,' seven important questions for effective marketing communications '),(17646,'title',0,1,' seven important questions for effective marcomms '),(17648,'slug',0,1,' promises promises '),(17648,'title',0,1,' promises promises '),(17650,'field',164,1,' usually were only willing to give a website one minute to display what were looking for before we give up the most common website complaints are that there is too much going on and also not enough information translation many sites drone on and on but dont really say much users also complain across all age groups and digital skill levels that text is too small and navigation is difficult thirty five per cent of users fail to complete simple tasks on the average website lets improve those stats shall we 1 design from the users perspective not your own we know your company is the greatest thing since google and you cant wait to tell everyone all about where it began who works there and the details of your offering but the truth is this users just want to get to the point and their interests should override yours usability is key show them what theyre looking for and dont make them search for it 2 create a navigation path if the information on your website is simple and structured you can guide visitors along the path youd like them to take their user journey use tabs and sub pages for different categories and keep it super logical 3 content is everything content is the most important element of your site really and it needs to fit the logical and structured navigation youll want to include keywords page titles meta tags and headings for search engine optimisation there are some hallmarks we use when writing web copy for our clients keep it concise round out sub headings and headings with keywords use plain english and an informal voice stick to common language conventions be direct and use active tense structure your information consistently and logically speak to your audience 4 speed it up and make it simple lets face it were a busy bunch and a reminder of the old days of dial up waiting for your site to load will test the patience of even the most loyal visitor in fact many visitors will abandon a website after just a few seconds of loading time longer loading time is usually caused by complicated design so make smart design decisions '),(17650,'slug',0,1,' are customers giving up on your website '),(17650,'title',0,1,' are customers giving up on your website '),(17652,'slug',0,1,' truth without fear '),(17652,'title',0,1,' truth without fear '),(17654,'slug',0,1,' b2b is dead '),(17654,'title',0,1,' b2b is dead '),(17656,'slug',0,1,' aggregated content 2 '),(17656,'title',0,1,' aggregated content '),(17657,'slug',0,1,' content creation 2 '),(17657,'title',0,1,' content creation '),(17658,'slug',0,1,' content curation 2 '),(17658,'title',0,1,' content curation '),(17659,'slug',0,1,' thought leadership 2 '),(17659,'title',0,1,' thought leadership '),(17660,'field',164,1,' now you need to add some real value time poor organisations need their content to work across different channels online including websites e newsletters blogs and across social media one way to add value to your existing more sales focused content is through content curation content curation means finding useful content online curating it for your audience and re telling it in your voice and with your advice heres how to optimise write and curate content for your target audience defining your goals every good plan starts with defining what its trying to achieve how do you want your content to define your business what are you offering your target market do you want to be a thought leader in your particular area content curation is about meeting your customers where they are and offering them something theyre not getting elsewhere its about finding gathering and sharing information of value with them positioning your business and brand as an authority both with original content your sales offering and business learnings and information youve found and shared online participating in conversations that are happening about your field leads to more engagement with your target market the ultimate goal being to give your brand a voice of value that will see your audience come back again and again for your offering getting started its important to remember that well executed content curation isnt about regurgitating content that was already published instead its your business personal re telling of a story as susan gunelius wrote for forbes the human element of content curation is what makes curated content compelling therefore when offering your audience valuable content remember to tell your story what are you saying thats different what do you know that others might not involve your whole team not just marketing and sales and that story will evolve to give your business a truly useful and unique voice finding content heres where you get amongst it want to know where your target market is looking for information online go exploring ask them discover for yourself where the good stories are being shared find out what topics matter to your goals and audience and go after them integrating content curation into your broader marketing strategy is the way to go here it legitimises the exercise and gets your team thinking about the value of your brand and how they can add to it the best place to start is probably your social media accounts valuable content is being shared every day on platforms like facebook twitter and linkedin there are also google alerts and news aggregate sites that can be set up with your special business needs in mind be authentic to find your voice there is nothing like the instant world of social media to add value and timeliness to your content social media has changed the term sharing forever and the opportunities for your brand are endless its important to add your own value to social content as mark lerner says if you just retweet or share an article without including your own voice in the post youll fail to distinguish yourself from everyone else who shared that content how do you find your voice authentically of course offer your opinion and add your advice in areas where you are confident try to be friendly and informative and adopt an approachable tone not so confident ask questions get your community talking and theyll come back to you context and thought leadership good content curation provides your audience with context and convenience that means filtering and explaining what you find online and rewording it in your voice so its useful to them you dont always need to be selling but you do always need to be mindful of your brand and of offering real value knowing who your market is and writing in your voice allows you to as j p de clerck says inform educate entertain and engage target audiences where to share there are many ways to share curated content but the best way is in a mix of your existing sales content e newletters and blogs offer an opportunity to share curated and original content and social media is the most instant way to add your voice to a new idea and also probably the first place your audience will find you theyll also find your website so dont forget about the curated content opportunities there always remember that you should be providing useful information not just repeating content or working on the hard sell '),(17660,'slug',0,1,' the 6 steps of content creation '),(17660,'title',0,1,' the 6 steps of content creation '),(17662,'slug',0,1,' measure your marketing with meaning '),(17662,'title',0,1,' measure your marketing with meaning '),(17664,'slug',0,1,' making the most of video '),(17664,'title',0,1,' making the most of video '),(17666,'slug',0,1,' looking beyond the banner '),(17666,'title',0,1,' looking beyond the banner '),(17668,'slug',0,1,' outsourcing creative services '),(17668,'title',0,1,' outsourcing creative services '),(17670,'slug',0,1,' overhauling your website '),(17670,'title',0,1,' overhauling your website '),(17672,'slug',0,1,' building better brands '),(17672,'title',0,1,' building better brands '),(17674,'slug',0,1,' getting the most from motion '),(17674,'title',0,1,' getting the most from motion '),(17676,'slug',0,1,' what is marketing automation '),(17676,'title',0,1,' what is marketing automation '),(17678,'field',164,1,' in what other industry would you find thousands of individual stakeholders students parents teachers alumni and more all with do or die expectations or an environment that can quite honestly change the trajectory of childrens lives then you have the two very distinct markets internal and external often with very different needs that need to be met with minimal budgets the experience of school changed little for nearly a century but in the past 20 years it has evolved in such leaps and bounds that todays parents struggle to recognise it philosophically there are few industries i can think of that have such a strong evidence base to guide practice here im thinking of teaching and learning yet the required outcome is often diametrically opposed to it its little wonder that i find the business of marketing schools endlessly fascinating only this morning i was in another principals office talking through these very complexities in our conversation we touched on what ive discovered over the years are three bedrock principles every school needs as their marketing foundation theyre my way of transforming a little of the complex into the simple '),(17678,'slug',0,1,' simplifying the complex fifteen years of marketing schools '),(17678,'title',0,1,' simplifying the complex fifteen years of marketing schools '),(17680,'slug',0,1,' top 20 tips for seo '),(17680,'title',0,1,' top 20 tips for seo '),(17682,'field',164,1,' if they are a stakeholder they have a connection with you and like any other relationship they need to know their connection time and opinions are valued it often takes an open mind to find what works for you and the stakeholder finding this place of mutual benefit can lead to business growth and longevity weve broken down our approach to nurturing stakeholder relationships for meaningful engagement at nwo we care about stakeholder engagement because we regularly witness the impact it has on the health of businesses and organisations is it important to you talk to us about stakeholder engagement today '),(17682,'slug',0,1,' how to really consult your stakeholders '),(17682,'title',0,1,' want to understand your brand ask your stakeholders '),(17684,'slug',0,1,' the building blocks of branding '),(17684,'title',0,1,' the building blocks of branding '),(17686,'field',164,1,' the advertising youve done the marketing budget youve spent the countless planning meetings your team has attended all that time and money youve invested has driven a potential customer to your website after months maybe years of effort your potential customer will make their decision in seconds they may love what they see and continue to be interested or they may leave with their memory of you going up in smoke and your investment with it framing a website to contain everything you need is challenging some websites become too word heavy while others lack structure and narrative getting your website right from the beginning can save you a lot of pain in the long run here are our tips for tackling website mistakes there are only two options either start with careful planning and consultation and spend a realistic budget or jump in with assumptions and experience scope creep frustration and the need to pour more money in later your time and money and sanity are too valuable to waste on option two so choose wisely its also important to understand the purpose of your website a website for a websites sake helps no one your business is unique so your website should be too make it crystal clear state who you are what you do and what you promise your customers set yourself up for success by providing your developer with a clear website purpose an informed plan and a predetermined budget what do you need your website to achieve this will depend on what kind of product or service you offer and the kind of experience you want to create for the user lay out your objectives and match them with kpis there are plenty of ways to get insight into your website consider bounce rates session duration or pages per session metrics or you could sharpen your content strategy by watching goal conversion rates of passive to active website users understanding your metrics and the goals you want to achieve will also help you to understand how your website interacts with its digital ecosystem optimising your website starts with learning what your users are responding well to how are they getting to your website what kind of content are they reading when do they read it how long are they staying by understanding your metrics you can shape a truly effective website experience for your customers its all in the detail from content creation to search engine optimisation credibility is about trust one way to build trust is to position yourself and your organisation as experts however credibility isnt just about what you know its about who you are include stories and testimonials about you and your organisation to avoid information overload then potential customers will leave your website satisfied that you can be trusted and theyre one step closer to doing business with you the customer journey should be clear if the information on your website is simple and structured you can guide visitors on the path youd like them to take use tabs and sub pages for different categories and make it logical for best results spend time studying user movements and running trials and tests over time your predictions will become more accurate as you get to know your audience there are some hallmarks we use when writing web copy here are a few of them short effective sentences say the same information with less sub headings and headings containing keywords everyday words the average reader can easily understand plain english direct language consistent logical structuring of information the majority of the time someone will be visiting your website on their phone 68 1% in 2020 to be exact that means when it comes to your website design its not enough that your website simply works on mobile it needs to be designed with mobile in mind first if your website doesnt look amazing and function seamlessly on mobile your customers wont go looking for their nearest desktop computer theyll look for another website what kind of service do you give your customers in person ensure they experience the same quality on your website and more importantly on their phone '),(17686,'slug',0,1,' seven mistakes people make building websites '),(17686,'title',0,1,' seven mistakes people make building websites '),(17688,'slug',0,1,' pretty or powerful and can you have it all '),(17688,'title',0,1,' pretty or powerful and can you have it all '),(17690,'field',164,1,' then you actually read it and now youre disappointed because it doesnt actually say anything other than the surface detail of a business we see it all the time and think its such a shame why because a website can be so much more how can your website escape the dreaded brochure effect in short dont set and forget good websites move breathe and live just like your business does everyone knows its good practice to regularly update your website messaging and functionality but you need to actually get around to doing it and more importantly have a reason for making a change a website communication and engagement strategy has so many benefits but the biggest one by far is seo by biggest we dont mean the most confusing or time consuming it simply boils down to content fresh content tells google this is who i am this is what i do see me hear me googles algorithms are super clever because they serve up the sort of content people want but it means google can only give people the content they want if it knows about your business and what youre offering of course there are some technical aspects to consider but your best seo strategy is a long term communications plan do you know what the next six months for your website content looks like what can you offer your customers other than opening hours and where youre located by developing a digital communications strategy your website gets updated regularly which helps google share your message with the right people at the right time you have so many options for interesting content it could be a thought leadership piece event media release whitepaper testimonial the list can go on we have a huge amount of communications tools and angles we can develop to bolster your web presence google also loves a fast responsive website optimising your website by using the latest version of your content management system will ensure your site is running smoothly and as fast as it can likewise this will make your site more secure and help prevent security breaches particularly important if you use wordpress we also offer long term website maintenance plans these include detailed server monitoring and ensuring your cms and plugins are up to date for more critical sites we offer zero downtime code update deployments '),(17690,'slug',0,1,' why you need a six month comms strategy for your website '),(17690,'title',0,1,' why you need a six month comms strategy for your website '),(17692,'field',164,1,' too often companies dont understand their brand well enough to know its unique personality and look as a result they use stock imagery and in doing so immediately dilute the brand and its message this is where custom illustration can play a critical role in making a brand stand out from the pack you hold it loudly and proudly for all to see and people notice because theres nothing else in the world quite like it and this makes you treasure it that little bit more the dream of an illustrator is to have time budget and ability to craft a bespoke masterpiece for every job that comes across their desk that dream doesnt turn to reality very often but that doesnt mean your brand has to revert to using the same old stock illustrations everyone else uses either there are so many ways to get over those hurdles when a project doesnt have time or budget to allow for a custom piece a lot of the time stock illustration can be tweaked to give it the edge it needs to stand out from the crowd change up the colours mix up the style and jazz up the faces sometimes stock forms the base for us to build something fresh and other times there might already be the perfect stock illustration that tells the right story without much tweaking at all whatever the constraints budget time brief theres always a way to break free it just takes some thinking outside of the box '),(17692,'slug',0,1,' break away from the same same with custom illustration '),(17692,'title',0,1,' break away from the same same with custom illustration '),(17694,'slug',0,1,' iwd 2021 2 '),(17694,'title',0,1,' iwd 2021 '),(17709,'extension',0,1,' xml '),(17709,'filename',0,1,' newwordorder wordpress 2021 05 18 7 xml '),(17709,'kind',0,1,' xml '),(17709,'slug',0,1,''),(17709,'title',0,1,' newwordorder word press 2021 05 18 7 '),(17711,'extension',0,1,' xml '),(17711,'filename',0,1,' newwordorder wordpress 2021 05 18 8 xml '),(17711,'kind',0,1,' xml '),(17711,'slug',0,1,''),(17711,'title',0,1,' newwordorder word press 2021 05 18 8 '),(17713,'extension',0,1,' xml '),(17713,'filename',0,1,' newwordorder wordpress 2021 05 18 9 xml '),(17713,'kind',0,1,' xml '),(17713,'slug',0,1,''),(17713,'title',0,1,' newwordorder word press 2021 05 18 9 '),(17715,'extension',0,1,' xml '),(17715,'filename',0,1,' newwordorder wordpress 2021 05 18 10 xml '),(17715,'kind',0,1,' xml '),(17715,'slug',0,1,''),(17715,'title',0,1,' newwordorder word press 2021 05 18 10 '),(17716,'extension',0,1,' jpg '),(17716,'filename',0,1,' img 1483 jpg '),(17716,'kind',0,1,' image '),(17716,'slug',0,1,''),(17716,'title',0,1,' img 1483 '),(17717,'extension',0,1,' jpg '),(17717,'filename',0,1,' img 0744 jpg '),(17717,'kind',0,1,' image '),(17717,'slug',0,1,''),(17717,'title',0,1,' img 0744 '),(17718,'extension',0,1,' jpg '),(17718,'filename',0,1,' leah jpg '),(17718,'kind',0,1,' image '),(17718,'slug',0,1,''),(17718,'title',0,1,' leah '),(17719,'extension',0,1,' jpg '),(17719,'filename',0,1,' 585612573 609978 1 jpg '),(17719,'kind',0,1,' image '),(17719,'slug',0,1,''),(17719,'title',0,1,' 585612573 609978 1 '),(17720,'extension',0,1,' jpg '),(17720,'filename',0,1,' img 3045 1 jpg '),(17720,'kind',0,1,' image '),(17720,'slug',0,1,''),(17720,'title',0,1,' img 3045 1 '),(17721,'extension',0,1,' jpg '),(17721,'filename',0,1,' leah 2 copy jpg '),(17721,'kind',0,1,' image '),(17721,'slug',0,1,''),(17721,'title',0,1,' leah 2 copy '),(17722,'extension',0,1,' jpg '),(17722,'filename',0,1,' kat jpg '),(17722,'kind',0,1,' image '),(17722,'slug',0,1,''),(17722,'title',0,1,' kat '),(17723,'extension',0,1,' jpg '),(17723,'filename',0,1,' kat 1 jpg '),(17723,'kind',0,1,' image '),(17723,'slug',0,1,''),(17723,'title',0,1,' kat 1 '),(17724,'extension',0,1,' jpg '),(17724,'filename',0,1,' kat 2 jpg '),(17724,'kind',0,1,' image '),(17724,'slug',0,1,''),(17724,'title',0,1,' kat 2 '),(17725,'extension',0,1,' jpg '),(17725,'filename',0,1,' kat 3 jpg '),(17725,'kind',0,1,' image '),(17725,'slug',0,1,''),(17725,'title',0,1,' kat 3 '),(17726,'extension',0,1,' jpg '),(17726,'filename',0,1,' kat 4 jpg '),(17726,'kind',0,1,' image '),(17726,'slug',0,1,''),(17726,'title',0,1,' kat 4 '),(17727,'extension',0,1,' jpg '),(17727,'filename',0,1,' kat 2 jpg '),(17727,'kind',0,1,' image '),(17727,'slug',0,1,''),(17727,'title',0,1,' kat 2 '),(17728,'extension',0,1,' jpg '),(17728,'filename',0,1,' ryan 1 jpg '),(17728,'kind',0,1,' image '),(17728,'slug',0,1,''),(17728,'title',0,1,' ryan 1 '),(17729,'extension',0,1,' jpg '),(17729,'filename',0,1,' ryan 2 jpg '),(17729,'kind',0,1,' image '),(17729,'slug',0,1,''),(17729,'title',0,1,' ryan 2 '),(17730,'extension',0,1,' jpg '),(17730,'filename',0,1,' 10507868 850789261627979 2025167980 n jpg '),(17730,'kind',0,1,' image '),(17730,'slug',0,1,''),(17730,'title',0,1,' 10507868 850789261627979 2025167980 n '),(17731,'extension',0,1,' jpg '),(17731,'filename',0,1,' 110212406 317290776291456 5383731733289153646 n jpg '),(17731,'kind',0,1,' image '),(17731,'slug',0,1,''),(17731,'title',0,1,' 110212406 317290776291456 5383731733289153646 n '),(17732,'extension',0,1,' jpg '),(17732,'filename',0,1,' 23161087 141800066456571 6351681053626728448 n jpg '),(17732,'kind',0,1,' image '),(17732,'slug',0,1,''),(17732,'title',0,1,' 23161087 141800066456571 6351681053626728448 n '),(17733,'extension',0,1,' jpg '),(17733,'filename',0,1,' 59839865 431918420931933 8904987626071490290 n jpg '),(17733,'kind',0,1,' image '),(17733,'slug',0,1,''),(17733,'title',0,1,' 59839865 431918420931933 8904987626071490290 n '),(17734,'extension',0,1,' jpg '),(17734,'filename',0,1,' 19 09 phn sp 8 jpg '),(17734,'kind',0,1,' image '),(17734,'slug',0,1,''),(17734,'title',0,1,' 19 09 phn sp 8 '),(17735,'extension',0,1,' jpg '),(17735,'filename',0,1,' brandjam background jpg '),(17735,'kind',0,1,' image '),(17735,'slug',0,1,''),(17735,'title',0,1,' brandjam background '),(17736,'extension',0,1,' png '),(17736,'filename',0,1,' brandjam png '),(17736,'kind',0,1,' image '),(17736,'slug',0,1,''),(17736,'title',0,1,' brandjam '),(17737,'extension',0,1,' png '),(17737,'filename',0,1,' screen shot 2020 09 08 at 10 09 19 am png '),(17737,'kind',0,1,' image '),(17737,'slug',0,1,''),(17737,'title',0,1,' screen shot 2020 09 08 at 10 09 19 am '),(17738,'extension',0,1,' jpg '),(17738,'filename',0,1,' scott 1 jpg '),(17738,'kind',0,1,' image '),(17738,'slug',0,1,''),(17738,'title',0,1,' scott 1 '),(17739,'extension',0,1,' jpg '),(17739,'filename',0,1,' brandjam edm header1 jpg '),(17739,'kind',0,1,' image '),(17739,'slug',0,1,''),(17739,'title',0,1,' brandjam edm header1 '),(17740,'extension',0,1,' jpg '),(17740,'filename',0,1,' brandjam lp header jpg '),(17740,'kind',0,1,' image '),(17740,'slug',0,1,''),(17740,'title',0,1,' brandjam lp header '),(17741,'extension',0,1,' jpg '),(17741,'filename',0,1,' braondjam red jpg '),(17741,'kind',0,1,' image '),(17741,'slug',0,1,''),(17741,'title',0,1,' braondjam red '),(17742,'extension',0,1,' jpg '),(17742,'filename',0,1,' braondjam red centre jpg '),(17742,'kind',0,1,' image '),(17742,'slug',0,1,''),(17742,'title',0,1,' braondjam red centre '),(17743,'extension',0,1,' jpg '),(17743,'filename',0,1,' kelly sikkema v9fqr4tbiq8 unsplash jpg '),(17743,'kind',0,1,' image '),(17743,'slug',0,1,''),(17743,'title',0,1,' kelly sikkema v9fqr4tbiq8 unsplash '),(17744,'extension',0,1,' jpg '),(17744,'filename',0,1,' 20 10 phn safe to see your gp 1 jpg '),(17744,'kind',0,1,' image '),(17744,'slug',0,1,''),(17744,'title',0,1,' 20 10 phn safe to see your gp 1 '),(17745,'extension',0,1,' jpg '),(17745,'filename',0,1,' 20 10 phn safe to see your gp 2 jpg '),(17745,'kind',0,1,' image '),(17745,'slug',0,1,''),(17745,'title',0,1,' 20 10 phn safe to see your gp 2 '),(17746,'extension',0,1,' jpg '),(17746,'filename',0,1,' 20 10 phn safe to see your gp 3 jpg '),(17746,'kind',0,1,' image '),(17746,'slug',0,1,''),(17746,'title',0,1,' 20 10 phn safe to see your gp 3 '),(17747,'extension',0,1,' jpg '),(17747,'filename',0,1,' 20 10 phn mm vaccination myths 1 jpg '),(17747,'kind',0,1,' image '),(17747,'slug',0,1,''),(17747,'title',0,1,' 20 10 phn mm vaccination myths 1 '),(17748,'extension',0,1,' jpg '),(17748,'filename',0,1,' 20 10 phn mm vaccination myths 2 jpg '),(17748,'kind',0,1,' image '),(17748,'slug',0,1,''),(17748,'title',0,1,' 20 10 phn mm vaccination myths 2 '),(17749,'extension',0,1,' xml '),(17749,'filename',0,1,' newwordorder wordpress 2021 05 18 11 xml '),(17749,'kind',0,1,' xml '),(17749,'slug',0,1,''),(17749,'title',0,1,' newwordorder word press 2021 05 18 11 '),(17750,'extension',0,1,' jpg '),(17750,'filename',0,1,' 20 10 phn mm vaccination myths 3 jpg '),(17750,'kind',0,1,' image '),(17750,'slug',0,1,''),(17750,'title',0,1,' 20 10 phn mm vaccination myths 3 '),(17751,'extension',0,1,' jpg '),(17751,'filename',0,1,' 20 10 phn mm vaccination myths 4 jpg '),(17751,'kind',0,1,' image '),(17751,'slug',0,1,''),(17751,'title',0,1,' 20 10 phn mm vaccination myths 4 '),(17752,'extension',0,1,' jpg '),(17752,'filename',0,1,' 20 phn right place right time 1 jpg '),(17752,'kind',0,1,' image '),(17752,'slug',0,1,''),(17752,'title',0,1,' 20 phn right place right time 1 '),(17753,'extension',0,1,' jpg '),(17753,'filename',0,1,' 20 phn right place right time 2 jpg '),(17753,'kind',0,1,' image '),(17753,'slug',0,1,''),(17753,'title',0,1,' 20 phn right place right time 2 '),(17754,'extension',0,1,' jpg '),(17754,'filename',0,1,' 20 phn right place right time 3 jpg '),(17754,'kind',0,1,' image '),(17754,'slug',0,1,''),(17754,'title',0,1,' 20 phn right place right time 3 '),(17755,'extension',0,1,' jpg '),(17755,'filename',0,1,' 20 phn right place right time 4 jpg '),(17755,'kind',0,1,' image '),(17755,'slug',0,1,''),(17755,'title',0,1,' 20 phn right place right time 4 '),(17756,'extension',0,1,' jpg '),(17756,'filename',0,1,' 20 10 phn year in review 1 jpg '),(17756,'kind',0,1,' image '),(17756,'slug',0,1,''),(17756,'title',0,1,' 20 10 phn year in review 1 '),(17757,'extension',0,1,' jpg '),(17757,'filename',0,1,' 20 10 phn year in review 2 jpg '),(17757,'kind',0,1,' image '),(17757,'slug',0,1,''),(17757,'title',0,1,' 20 10 phn year in review 2 '),(17758,'extension',0,1,' jpg '),(17758,'filename',0,1,' 20 phn aged care nav 1 jpg '),(17758,'kind',0,1,' image '),(17758,'slug',0,1,''),(17758,'title',0,1,' 20 phn aged care nav 1 '),(17759,'extension',0,1,' jpg '),(17759,'filename',0,1,' 20 phn aged care nav 2 jpg '),(17759,'kind',0,1,' image '),(17759,'slug',0,1,''),(17759,'title',0,1,' 20 phn aged care nav 2 '),(17760,'extension',0,1,' jpg '),(17760,'filename',0,1,' 20 phn aged care nav 3 jpg '),(17760,'kind',0,1,' image '),(17760,'slug',0,1,''),(17760,'title',0,1,' 20 phn aged care nav 3 '),(17761,'extension',0,1,' jpg '),(17761,'filename',0,1,' 20 phn bris north website 1 jpg '),(17761,'kind',0,1,' image '),(17761,'slug',0,1,''),(17761,'title',0,1,' 20 phn bris north website 1 '),(17762,'extension',0,1,' jpg '),(17762,'filename',0,1,' 20 phn bris north website 2 jpg '),(17762,'kind',0,1,' image '),(17762,'slug',0,1,''),(17762,'title',0,1,' 20 phn bris north website 2 '),(17763,'extension',0,1,' jpg '),(17763,'filename',0,1,' 20 phn health pathways 1 jpg '),(17763,'kind',0,1,' image '),(17763,'slug',0,1,''),(17763,'title',0,1,' 20 phn health pathways 1 '),(17764,'extension',0,1,' jpg '),(17764,'filename',0,1,' 20 phn health pathways 2 jpg '),(17764,'kind',0,1,' image '),(17764,'slug',0,1,''),(17764,'title',0,1,' 20 phn health pathways 2 '),(17765,'extension',0,1,' jpg '),(17765,'filename',0,1,' 20 phn my mental health 1 jpg '),(17765,'kind',0,1,' image '),(17765,'slug',0,1,''),(17765,'title',0,1,' 20 phn my mental health 1 '),(17766,'extension',0,1,' jpg '),(17766,'filename',0,1,' 20 phn my mental health 2 jpg '),(17766,'kind',0,1,' image '),(17766,'slug',0,1,''),(17766,'title',0,1,' 20 phn my mental health 2 '),(17767,'extension',0,1,' png '),(17767,'filename',0,1,' nwo logo png '),(17767,'kind',0,1,' image '),(17767,'slug',0,1,''),(17767,'title',0,1,' nwo logo '),(17770,'extension',0,1,' png '),(17770,'filename',0,1,' screen shot 2020 06 17 at 2 12 51 pm 1 png '),(17770,'kind',0,1,' image '),(17770,'slug',0,1,''),(17770,'title',0,1,' screen shot 2020 06 17 at 2 12 51 pm '),(17771,'extension',0,1,' png '),(17771,'filename',0,1,' screen shot 2020 06 17 at 2 17 03 pm png '),(17771,'kind',0,1,' image '),(17771,'slug',0,1,''),(17771,'title',0,1,' screen shot 2020 06 17 at 2 17 03 pm '),(17772,'extension',0,1,' png '),(17772,'filename',0,1,' screen shot 2020 06 17 at 2 22 28 pm png '),(17772,'kind',0,1,' image '),(17772,'slug',0,1,''),(17772,'title',0,1,' screen shot 2020 06 17 at 2 22 28 pm '),(17773,'extension',0,1,' png '),(17773,'filename',0,1,' screen shot 2020 06 17 at 2 23 12 pm 1 png '),(17773,'kind',0,1,' image '),(17773,'slug',0,1,''),(17773,'title',0,1,' screen shot 2020 06 17 at 2 23 12 pm '),(17774,'extension',0,1,' jpg '),(17774,'filename',0,1,' 20 06 project page hpw campaign 1 jpg '),(17774,'kind',0,1,' image '),(17774,'slug',0,1,''),(17774,'title',0,1,' 20 06 project page hpw campaign 1 '),(17775,'extension',0,1,' jpg '),(17775,'filename',0,1,' 20 06 project page hpw campaign 3 jpg '),(17775,'kind',0,1,' image '),(17775,'slug',0,1,''),(17775,'title',0,1,' 20 06 project page hpw campaign 3 '),(17776,'extension',0,1,' jpg '),(17776,'filename',0,1,' 20 06 project page hpw campaign 4 jpg '),(17776,'kind',0,1,' image '),(17776,'slug',0,1,''),(17776,'title',0,1,' 20 06 project page hpw campaign 4 '),(17777,'extension',0,1,' jpg '),(17777,'filename',0,1,' 20 06 project page hpw campaign 5 jpg '),(17777,'kind',0,1,' image '),(17777,'slug',0,1,''),(17777,'title',0,1,' 20 06 project page hpw campaign 5 '),(17778,'extension',0,1,' jpg '),(17778,'filename',0,1,' 20 06 project page dfv campaign 1 jpg '),(17778,'kind',0,1,' image '),(17778,'slug',0,1,''),(17778,'title',0,1,' 20 06 project page dfv campaign 1 '),(17779,'extension',0,1,' jpg '),(17779,'filename',0,1,' 20 06 project page dfv campaign 2 jpg '),(17779,'kind',0,1,' image '),(17779,'slug',0,1,''),(17779,'title',0,1,' 20 06 project page dfv campaign 2 '),(17780,'extension',0,1,' jpg '),(17780,'filename',0,1,' 20 06 project page dfv campaign 3 jpg '),(17780,'kind',0,1,' image '),(17780,'slug',0,1,''),(17780,'title',0,1,' 20 06 project page dfv campaign 3 '),(17781,'extension',0,1,' jpg '),(17781,'filename',0,1,' 20 06 project page dfv campaign 4 jpg '),(17781,'kind',0,1,' image '),(17781,'slug',0,1,''),(17781,'title',0,1,' 20 06 project page dfv campaign 4 '),(17782,'extension',0,1,' jpg '),(17782,'filename',0,1,' dv video cover image jpg '),(17782,'kind',0,1,' image '),(17782,'slug',0,1,''),(17782,'title',0,1,' dv video cover image '),(17784,'extension',0,1,' gif '),(17784,'filename',0,1,' phone 1 1 gif '),(17784,'kind',0,1,' image '),(17784,'slug',0,1,''),(17784,'title',0,1,' phone 1 '),(17785,'extension',0,1,' jpg '),(17785,'filename',0,1,' 19 09 phn sp 1 1 jpg '),(17785,'kind',0,1,' image '),(17785,'slug',0,1,''),(17785,'title',0,1,' 19 09 phn sp 1 '),(17786,'extension',0,1,' jpg '),(17786,'filename',0,1,' 19 09 phn sp 2 jpg '),(17786,'kind',0,1,' image '),(17786,'slug',0,1,''),(17786,'title',0,1,' 19 09 phn sp 2 '),(17787,'extension',0,1,' jpg '),(17787,'filename',0,1,' 19 09 phn sp 3 1 jpg '),(17787,'kind',0,1,' image '),(17787,'slug',0,1,''),(17787,'title',0,1,' 19 09 phn sp 3 '),(17788,'extension',0,1,' jpg '),(17788,'filename',0,1,' 19 09 phn sp 4 jpg '),(17788,'kind',0,1,' image '),(17788,'slug',0,1,''),(17788,'title',0,1,' 19 09 phn sp 4 '),(17789,'extension',0,1,' jpg '),(17789,'filename',0,1,' 19 09 phn sp 5 jpg '),(17789,'kind',0,1,' image '),(17789,'slug',0,1,''),(17789,'title',0,1,' 19 09 phn sp 5 '),(17790,'extension',0,1,' jpg '),(17790,'filename',0,1,' 19 09 phn sp 6 jpg '),(17790,'kind',0,1,' image '),(17790,'slug',0,1,''),(17790,'title',0,1,' 19 09 phn sp 6 '),(17791,'extension',0,1,' jpg '),(17791,'filename',0,1,' 19 09 phn sp 1 1 2 jpg '),(17791,'kind',0,1,' image '),(17791,'slug',0,1,''),(17791,'title',0,1,' 19 09 phn sp 1 1 '),(17792,'extension',0,1,' jpg '),(17792,'filename',0,1,' white paper ipad 1 jpg '),(17792,'kind',0,1,' image '),(17792,'slug',0,1,''),(17792,'title',0,1,' white paper ipad 1 '),(17793,'extension',0,1,' jpeg '),(17793,'filename',0,1,' header jpeg '),(17793,'kind',0,1,' image '),(17793,'slug',0,1,''),(17793,'title',0,1,' header '),(17794,'extension',0,1,' jpeg '),(17794,'filename',0,1,' reasons to stay jpeg '),(17794,'kind',0,1,' image '),(17794,'slug',0,1,''),(17794,'title',0,1,' reasons to stay '),(17795,'extension',0,1,' jpeg '),(17795,'filename',0,1,' domestic violence jpeg '),(17795,'kind',0,1,' image '),(17795,'slug',0,1,''),(17795,'title',0,1,' domestic violence '),(17796,'extension',0,1,' jpeg '),(17796,'filename',0,1,' rental jpeg '),(17796,'kind',0,1,' image '),(17796,'slug',0,1,''),(17796,'title',0,1,' rental '),(17797,'extension',0,1,' jpeg '),(17797,'filename',0,1,' nwo footer jpeg '),(17797,'kind',0,1,' image '),(17797,'slug',0,1,''),(17797,'title',0,1,' nwo footer '),(17798,'extension',0,1,' jpg '),(17798,'filename',0,1,' phn 1 jpg '),(17798,'kind',0,1,' image '),(17798,'slug',0,1,''),(17798,'title',0,1,' phn 1 '),(17811,'extension',0,1,' jpeg '),(17811,'filename',0,1,' istock 911033734 jpeg '),(17811,'kind',0,1,' image '),(17811,'slug',0,1,''),(17811,'title',0,1,' i stock 911033734 '),(17815,'extension',0,1,' jpeg '),(17815,'filename',0,1,' lightbulbs jpeg '),(17815,'kind',0,1,' image '),(17815,'slug',0,1,''),(17815,'title',0,1,' lightbulbs '),(17818,'extension',0,1,' jpeg '),(17818,'filename',0,1,' motion jpeg '),(17818,'kind',0,1,' image '),(17818,'slug',0,1,''),(17818,'title',0,1,' motion '),(17850,'slug',0,1,' family and child connect '),(17850,'title',0,1,' family and child connect '),(17851,'slug',0,1,' government '),(17851,'title',0,1,' government '),(17855,'slug',0,1,' urban utilities '),(17855,'title',0,1,' urban utilities '),(17857,'slug',0,1,' brisbane north phn '),(17857,'title',0,1,' brisbane north phn '),(17862,'slug',0,1,' central queensland wide bay and sunshine coast phn '),(17862,'title',0,1,' central queensland wide bay and sunshine coast phn '),(17864,'slug',0,1,' amg super '),(17864,'title',0,1,' amg super '),(17866,'slug',0,1,' mosaic chartered accountants '),(17866,'title',0,1,' mosaic chartered accountants '),(17868,'slug',0,1,' tritium '),(17868,'title',0,1,' tritium '),(17872,'slug',0,1,' queensland mental health commission '),(17872,'title',0,1,' queensland mental health commission '),(17875,'email',0,1,' andrew newwordorder com au '),(17875,'firstname',0,1,' andrew '),(17875,'fullname',0,1,' andrew mcguckin '),(17875,'lastname',0,1,' mcguckin '),(17875,'slug',0,1,''),(17875,'username',0,1,' andrew '),(17876,'slug',0,1,''),(17877,'slug',0,1,''),(17878,'slug',0,1,''),(17879,'slug',0,1,''),(17880,'slug',0,1,''),(17881,'email',0,1,' rebecca newwordorder com au '),(17881,'firstname',0,1,' rebecca '),(17881,'fullname',0,1,' rebecca holman '),(17881,'lastname',0,1,' holman '),(17881,'slug',0,1,''),(17881,'username',0,1,' rebecca '),(17882,'slug',0,1,''),(17883,'slug',0,1,''),(17884,'slug',0,1,''),(17885,'slug',0,1,''),(17886,'slug',0,1,''),(17887,'email',0,1,' bree newwordorder com au '),(17887,'firstname',0,1,' bree '),(17887,'fullname',0,1,' bree leitch '),(17887,'lastname',0,1,' leitch '),(17887,'slug',0,1,''),(17887,'username',0,1,' bree '),(17888,'slug',0,1,''),(17889,'slug',0,1,''),(17890,'slug',0,1,''),(17891,'slug',0,1,''),(17892,'slug',0,1,''),(17893,'email',0,1,' bruce newwordorder com au '),(17893,'firstname',0,1,' bruce '),(17893,'fullname',0,1,' bruce connell '),(17893,'lastname',0,1,' connell '),(17893,'slug',0,1,''),(17893,'username',0,1,' bruce '),(17894,'slug',0,1,''),(17895,'slug',0,1,''),(17896,'slug',0,1,''),(17897,'slug',0,1,''),(17898,'slug',0,1,''),(17899,'email',0,1,' jo newwordorder com au '),(17899,'firstname',0,1,' jo '),(17899,'fullname',0,1,' jo penney '),(17899,'lastname',0,1,' penney '),(17899,'slug',0,1,''),(17899,'username',0,1,' jo '),(17900,'slug',0,1,''),(17901,'slug',0,1,''),(17902,'slug',0,1,''),(17903,'slug',0,1,''),(17904,'slug',0,1,''),(17905,'slug',0,1,''),(17906,'slug',0,1,''),(17907,'slug',0,1,''),(17908,'slug',0,1,''),(17909,'slug',0,1,''),(17921,'email',0,1,' accounts newwordorder com au '),(17921,'firstname',0,1,' kerry '),(17921,'fullname',0,1,' kerry park '),(17921,'lastname',0,1,' park '),(17921,'slug',0,1,''),(17921,'username',0,1,' kerry '),(17922,'slug',0,1,''),(17923,'slug',0,1,''),(17924,'slug',0,1,''),(17925,'slug',0,1,''),(17926,'slug',0,1,''),(17934,'email',0,1,' kimberley newwordorder com au '),(17934,'firstname',0,1,' kimi '),(17934,'fullname',0,1,' kimi schieren '),(17934,'lastname',0,1,' schieren '),(17934,'slug',0,1,''),(17934,'username',0,1,' kimi '),(17935,'slug',0,1,''),(17936,'slug',0,1,''),(17937,'slug',0,1,''),(17938,'slug',0,1,''),(17939,'slug',0,1,''),(17941,'email',0,1,' liam newwordorder com au '),(17941,'firstname',0,1,' liam '),(17941,'fullname',0,1,' liam ryan '),(17941,'lastname',0,1,' ryan '),(17941,'slug',0,1,''),(17941,'username',0,1,' liam '),(17942,'slug',0,1,''),(17943,'slug',0,1,''),(17944,'slug',0,1,''),(17945,'slug',0,1,''),(17946,'slug',0,1,''),(17954,'email',0,1,' scott newwordorder com au '),(17954,'firstname',0,1,' scott '),(17954,'fullname',0,1,' scott oxford '),(17954,'lastname',0,1,' oxford '),(17954,'slug',0,1,''),(17954,'username',0,1,' scott '),(17956,'email',0,1,' suzanne newwordorder com au '),(17956,'firstname',0,1,' suzanne '),(17956,'fullname',0,1,' suzanne oxford '),(17956,'lastname',0,1,' oxford '),(17956,'slug',0,1,''),(17956,'username',0,1,' suzanne '),(17958,'email',0,1,' lynn newwordorder com au '),(17958,'firstname',0,1,' lynnette '),(17958,'fullname',0,1,' lynnette davis '),(17958,'lastname',0,1,' davis '),(17958,'slug',0,1,''),(17958,'username',0,1,' lynn '),(17959,'slug',0,1,''),(17960,'slug',0,1,''),(17961,'slug',0,1,''),(17962,'slug',0,1,''),(17963,'slug',0,1,''),(17964,'slug',0,1,' strategy '),(17964,'title',0,1,' strategy '),(17965,'slug',0,1,' brand '),(17965,'title',0,1,' brand '),(17966,'slug',0,1,' campaign '),(17966,'title',0,1,' campaign '),(17967,'slug',0,1,' behaviour change '),(17967,'title',0,1,' behaviour change '),(17968,'slug',0,1,' engagement '),(17968,'title',0,1,' engagement '),(17969,'slug',0,1,' video '),(17969,'title',0,1,' video '),(17970,'slug',0,1,' digital '),(17970,'title',0,1,' digital '),(17971,'slug',0,1,' content '),(17971,'title',0,1,' content '),(17972,'slug',0,1,''),(17973,'slug',0,1,''),(17974,'slug',0,1,''),(17975,'slug',0,1,''),(17976,'slug',0,1,''),(17978,'slug',0,1,''),(17979,'slug',0,1,''),(17980,'slug',0,1,''),(17981,'slug',0,1,''),(17982,'slug',0,1,''),(17983,'slug',0,1,''),(17984,'slug',0,1,''),(17985,'slug',0,1,''),(17986,'slug',0,1,''),(17987,'slug',0,1,''),(17988,'slug',0,1,''),(17989,'slug',0,1,''),(17990,'slug',0,1,''),(17991,'slug',0,1,''),(17992,'slug',0,1,''),(17993,'slug',0,1,''),(17994,'slug',0,1,''),(17995,'slug',0,1,''),(17996,'email',0,1,' tim newwordorder com au '),(17996,'firstname',0,1,' tim '),(17996,'fullname',0,1,' tim kho '),(17996,'lastname',0,1,' kho '),(17996,'slug',0,1,''),(17996,'username',0,1,' tim '),(17997,'slug',0,1,''),(17998,'slug',0,1,''),(17999,'slug',0,1,''),(18000,'slug',0,1,''),(18001,'slug',0,1,''),(18004,'slug',0,1,''),(18005,'slug',0,1,''),(18022,'slug',0,1,''),(18023,'slug',0,1,''),(18024,'slug',0,1,''),(18025,'slug',0,1,''),(18028,'slug',0,1,''),(18029,'slug',0,1,''),(18030,'slug',0,1,''),(18031,'slug',0,1,''),(18032,'slug',0,1,''),(18033,'slug',0,1,' research '),(18033,'title',0,1,' research '),(18035,'slug',0,1,''),(18036,'slug',0,1,''),(18037,'slug',0,1,''),(18038,'slug',0,1,''),(18039,'slug',0,1,''),(18040,'slug',0,1,' campaign strategy '),(18040,'title',0,1,' campaign strategy '),(18041,'slug',0,1,' concept development '),(18041,'title',0,1,' concept development '),(18042,'slug',0,1,' key messages '),(18042,'title',0,1,' key messages '),(18043,'slug',0,1,' custom illustration '),(18043,'title',0,1,' custom illustration '),(18044,'slug',0,1,' scriptwriting '),(18044,'title',0,1,' scriptwriting '),(18045,'slug',0,1,' storyboards '),(18045,'title',0,1,' storyboards '),(18046,'slug',0,1,' animation '),(18046,'title',0,1,' animation '),(18047,'slug',0,1,' voice over and sound design '),(18047,'title',0,1,' voice over and sound design '),(18048,'slug',0,1,' social media videos '),(18048,'title',0,1,' social media videos '),(18049,'slug',0,1,' radiprogrammatic adso ads '),(18049,'title',0,1,' radiprogrammatic adso ads '),(18050,'slug',0,1,' digital banners '),(18050,'title',0,1,' digital banners '),(18052,'slug',0,1,''),(18053,'slug',0,1,''),(18054,'slug',0,1,''),(18055,'slug',0,1,''),(18056,'slug',0,1,''),(18057,'slug',0,1,' government '),(18057,'title',0,1,' government '),(18072,'slug',0,1,''),(18073,'slug',0,1,''),(18074,'slug',0,1,''),(18075,'slug',0,1,''),(18076,'slug',0,1,''),(18078,'slug',0,1,''),(18079,'slug',0,1,''),(18080,'slug',0,1,''),(18081,'slug',0,1,''),(18082,'slug',0,1,''),(18098,'slug',0,1,''),(18099,'slug',0,1,''),(18100,'slug',0,1,''),(18101,'slug',0,1,''),(18102,'slug',0,1,''),(18103,'slug',0,1,''),(18104,'slug',0,1,' copywriting '),(18104,'title',0,1,' copywriting '),(18105,'slug',0,1,' collateral design '),(18105,'title',0,1,' collateral design '),(18106,'slug',0,1,' merchandise design '),(18106,'title',0,1,' merchandise design '),(18107,'slug',0,1,' exhibition design '),(18107,'title',0,1,' exhibition design '),(18108,'slug',0,1,' game development '),(18108,'title',0,1,' game development '),(18109,'field',164,1,' water and waste treatment are essential services and flushing the wrong items down the toilet costs queensland urban utilities $200 million every year urban utilities asked us to think of an original creative campaign idea that would resonate with queensland families our solution was the no 3 campaign so whats a no 3 its anything that shouldnt go down the loo talking about our toilet habits is never comfortable to navigate our way around the taboo topic our creative team used humour to influence the bright quirky look and feel of the entire campaign the playful no 3 concept brings queenslanders face to face with their flushing habits in a fun and relatable way the campaign reached 29 790 people in its first month and we quickly saw signs of behaviour change according to independent market research 50% of people will no longer flush wet wipes 48% of people will no longer flush tampons 47% will no longer flush condoms and 45% will no longer flush cotton buds as a result of seeing this campaign '),(18109,'slug',0,1,' no 3 campaign '),(18109,'title',0,1,' whats a no 3 '),(18114,'slug',0,1,' market research '),(18114,'title',0,1,' market research '),(18115,'slug',0,1,' focus group facilitation '),(18115,'title',0,1,' focus group facilitation '),(18116,'slug',0,1,' insights development '),(18116,'title',0,1,' insights development '),(18117,'slug',0,1,' photography '),(18117,'title',0,1,' photography '),(18118,'slug',0,1,' video production '),(18118,'title',0,1,' video production '),(18119,'slug',0,1,' videos for social media '),(18119,'title',0,1,' videos for social media '),(18120,'slug',0,1,' digital ads '),(18120,'title',0,1,' digital ads '),(18121,'slug',0,1,' website '),(18121,'title',0,1,' website '),(18122,'field',164,1,' suicide takes around eight australians from us every day and it needs to stop brisbane north phn commissioned us to join the fight against suicide and produce a powerful digital campaign speaking to people at risk of suicide and to their friends and family the concept and campaign name of reasons to stay emerged from our conversations with people who have lived experience of suicide both survivors and families of those who had passed away this prevention campaign targeted two specific groups those at risk of suicide themselves and the friends and family around those at risk presenting our creative concepts to these groups enabled us to test and hone visual directions and key messages we further refined the work and key members of the focus groups reviewed the results and gave their blessing to the final approach that appears in the campaign videos digital ads and website we also worked with other organisations working across niche groups within our target market to ensure we were inclusive and respectful of their individual efforts in this space our team was grateful to be involved in this important project the phns intention and ours is to see this campaign spread far beyond the northern boundaries of brisbane and make a difference to peoples lives everywhere '),(18122,'slug',0,1,' reasons to stay '),(18122,'title',0,1,' reasons to stay '),(18125,'slug',0,1,' social media management '),(18125,'title',0,1,' social media management '),(18126,'field',164,1,' in 2015 market research and immunisation rates across brisbane north phns catchment were showing the anti vax movement was taking hold while parents from lower socio economic backgrounds were responding to the australian governments no jab no pay rules those not using daycare including many from among the wealthier suburbs were holding their ground we determined from research that parents would respond to their gps opinion and developed a behaviour change campaign to encourage conversations between parents and medical professionals around immunisation and overcome objections to it we harnessed the gp medical voice and added extra credibility by finding medical professionals who were also parents under the heading of medical mums we found two gps and one indigenous health nurse to become the faces and voice of the campaign each discussed hot topics as well as the benefits of immunisation drawing on their own beliefs and practices as parents as well as their medical training medical mums was launched during immunisation week the creative was still fresh and effective for the target group and we ran the campaign again we added stuart our honorary medical dad it was time to mix up the messaging and creative so we developed a vaccination myth busting video featuring illustration a move away from the previous live action ads with covid 19 there was new vaccination messaging clutter to cut through we encouraged our market to keep up to date with their routine vaccinations funding was initially approved for five years but our campaign has been so successful the phn has been provided with funding for an additional year we will launch a new iteration in the coming months we launched the campaign in immunisation week in 2016 and have revised it for relaunch every year since results showed immunisation levels increased after the campaign each year and our has client received extensive positive feedback including from the queensland minister for health '),(18126,'slug',0,1,' medical mums '),(18126,'title',0,1,' medical mums '),(18129,'slug',0,1,' digital strategy '),(18129,'title',0,1,' digital strategy '),(18130,'slug',0,1,' website scoping '),(18130,'title',0,1,' website scoping '),(18131,'slug',0,1,' content design '),(18131,'title',0,1,' content design '),(18132,'slug',0,1,' ux design '),(18132,'title',0,1,' ux design '),(18133,'slug',0,1,' website development '),(18133,'title',0,1,' website development '),(18134,'slug',0,1,' hosting '),(18134,'title',0,1,' hosting '),(18135,'slug',0,1,' ongoing maintenance '),(18135,'title',0,1,' ongoing maintenance '),(18139,'field',164,1,' brisbane north phn asked us to write design and develop a navigator website that doubles as a one stop shop of resources information and services that promote healthy ageing in the brisbane north and moreton bay region the projects goal was to enable people to more proactively manage their own healthcare while also equipping healthcare professional and carers with resources to support their care services working closely with the client team and the council on the ageing our strategists conducted a stakeholder consultation process with community members and health professionals the stakeholders generously shared their expertise and lived experience to help this project reach the communitys specific needs with a particular focus on dementia physical health mental health social connection nutrition and digital skills each aspect of the content writing design and development of the website was informed by insights from the stakeholders to ensure the project would fulfil community needs we made sure the site was easy to use by integrating a very simple user interface into the web design and development user experience and acceptance testing was a key element of ensuring the site would be practical and enjoyable for its audience nothing like this existed before now this project fulfils community needs around healthy ageing in a way that really excited the stakeholders who were involved in the project this kind of work aligns perfectly with our purpose at nwo to make a meaningful difference to peoples lives '),(18139,'slug',0,1,' your care navigator '),(18139,'title',0,1,' your care navigator '),(18142,'field',164,1,''),(18142,'slug',0,1,' right time right place '),(18142,'title',0,1,' right time right place '),(18145,'slug',0,1,' brand '),(18145,'title',0,1,' brand '),(18149,'slug',0,1,' brand strategy '),(18149,'title',0,1,' brand strategy '),(18150,'slug',0,1,' brand architecture '),(18150,'title',0,1,' brand architecture '),(18151,'slug',0,1,' product branding '),(18151,'title',0,1,' product branding '),(18152,'slug',0,1,' public relations '),(18152,'title',0,1,' public relations '),(18153,'slug',0,1,' brand book '),(18153,'title',0,1,' brand book '),(18154,'slug',0,1,' 3d animation '),(18154,'title',0,1,' 3d animation '),(18155,'slug',0,1,' website design '),(18155,'title',0,1,' website design '),(18156,'field',164,1,' tritium is now a global brand and our work took them to the world stage we worked with tritium a few years ago to define their brand narrative design their brand and create logo visual identity and a range of assets we worked with tritium when it was in the midst of hypergrowth and collaborated with their founder and leaders across time zones and continents as well as their rapidly growing marketing and sales teams to rebrand the company and its products at the time tritium was still wearing the badge designed by their founder years earlier and needed to dress for world domination which they most certainly now are achieving the brand needed to work in all contexts on rapid chargers in signage in extrusion as well as in print and it needed to be truly global in its appeal the brand also needed to consider products that were still emerging and not yet defined we deeply embedded story in the tritium brand we developed the logo is three sided for tri the blues represent clean power and each of the three elements of the brand represent battery indicators from empty to full meanwhile the brand is distinctive yet subtle enough to sit successfully alongside co branded or white labelled tritium products we successfully positioned tritium for global expansion we developed and defined a global masterbrand with a defined brand narrative and transformational authentic reflection of their vision the brand goes from strength to strength and is easily our furthest reaching and highest impact visual identity recently listing on the nasdaq and with none other than potus '),(18156,'slug',0,1,' tritium '),(18156,'title',0,1,' tritium '),(18159,'slug',0,1,' engagement with aboriginal and torres strait islander communities '),(18159,'title',0,1,' engagement with aboriginal and torres strait islander communities '),(18160,'slug',0,1,' engagement with members of the lgbtqi community '),(18160,'title',0,1,' engagement with members of the lgbtqi community '),(18161,'slug',0,1,' workshop facilitation '),(18161,'title',0,1,' workshop facilitation '),(18162,'slug',0,1,' report writing editing and proofreading '),(18162,'title',0,1,' report writing editing and proofreading '),(18163,'slug',0,1,' communications consulting '),(18163,'title',0,1,' communications consulting '),(18164,'field',164,1,' the team of brisbane north phn is one of the national sites chosen to deliver national suicide prevention trial nspt funding our work had two important parts the first was to engage deeply and sensitively with communities to understand their experiences successes and reflections during the four years of trial funding and to report on these the second was to deliver useful materials the service organisations could use to seek further funding and sponsorships as they transitioned from trial funding to successfully undertake community engagement we again partnered with janine crawford a skilled health consultant and aboriginal and torres strait islander woman our work included workshops face to face interviews and a highly successful yarning circle and these important and sensitive conversations which included sad news sorry business were given the time and space each needed the finalised report was submitted to nspt as a qualitative reflection on the remarkable achievements of the trial including the phns commitment to community led co design and the healing within communities that was begun through the intentionally collaborative process to offer creative services that were suited to the context needs and existing resourcing of the seven service organisations we offered a menu of items ranging from fact sheets to marketing consultations the groups then chose the elements that were of greatest use to them part of the unique nature of the brisbane north phn nspt trial was the emphasis on community partnerships and collaboration and we embodied this in our design approach too to enable groups to pitch together or separately for any future suicide prevention funding we created a single brand style to visually unify any designed material each group then had its own logo and its own colour palette within that visual style a brand within a brand that way any future funding pitches that relied on our designed material could look as though the groups were unique but still closely aligned '),(18164,'slug',0,1,' nspt '),(18164,'title',0,1,' brisbane north phn nspt '),(18167,'slug',0,1,' campaign concept '),(18167,'title',0,1,' campaign concept '),(18168,'field',164,1,' data showed community members were staying at home and not visiting their gp and other health services for regular checkups to avoid more serious health and wellbeing problems down the track the community needed to know it was safe to go back to regular appointments we created a fresh campaign called safe to see your gp using friendly animated characters to let people know there is no reason to put their health on hold this campaign we developed the campaign strategy creative custom illustration animated video for social media and tv digital ads radio ads and landing page we originally developed this campaign for darling downs and west moreton phn and brisbane north phn requested to run it as well its a great example of our primary health networks working together to improve the health of all australians '),(18168,'slug',0,1,' safe to see your gp '),(18168,'title',0,1,' safe to see your gp '),(18171,'slug',0,1,' 26 interviews with internal and external stakeholders '),(18171,'title',0,1,' 26 interviews with internal and external stakeholders '),(18172,'slug',0,1,' workshops with internal stakeholders '),(18172,'title',0,1,' workshops with internal stakeholders '),(18173,'slug',0,1,' stakeholder map '),(18173,'title',0,1,' stakeholder map '),(18174,'slug',0,1,' community engagement strategy '),(18174,'title',0,1,' community engagement strategy '),(18175,'slug',0,1,' communications strategy '),(18175,'title',0,1,' communications strategy '),(18176,'field',164,1,' we gained clear lines of sight into the impressions and needs of their stakeholder audience through 26 guided in depth phone interviews each interview was between 30 and 45 minutes long and followed an approved guide to elicit data and insights to key questions key stakeholders included representatives of vulnerable groups including remote communities lgbtiq stakeholder organisations and aboriginal and torres strait islander groups from this data we developed an insights document and then a strategy to enable the commissions 20 staff to better reach stakeholders with timely needed communication and engagement opportunities '),(18176,'slug',0,1,' qmhc '),(18176,'title',0,1,' qmhc '),(18179,'slug',0,1,' training workshops '),(18179,'title',0,1,' training workshops '),(18180,'slug',0,1,' stakeholder interviews '),(18180,'title',0,1,' stakeholder interviews '),(18181,'slug',0,1,' photography and video production in rural areas '),(18181,'title',0,1,' photography and video production in rural areas '),(18185,'slug',0,1,' custom animation '),(18185,'title',0,1,' custom animation '),(18216,'extension',0,1,' jpg '),(18216,'filename',0,1,' cciq corp partnerships video jpg '),(18216,'kind',0,1,' image '),(18216,'slug',0,1,''),(18216,'title',0,1,' cciq corp partnerships video '),(18339,'slug',0,1,''),(18340,'slug',0,1,''),(18341,'slug',0,1,''),(18342,'slug',0,1,''),(18343,'slug',0,1,''),(18344,'slug',0,1,''),(18345,'slug',0,1,''),(18346,'slug',0,1,''),(18347,'slug',0,1,''),(18349,'slug',0,1,''),(18350,'slug',0,1,''),(18351,'slug',0,1,''),(18352,'slug',0,1,''),(18353,'slug',0,1,''),(18354,'slug',0,1,''),(18355,'slug',0,1,''),(18356,'slug',0,1,''),(18357,'slug',0,1,''),(18370,'slug',0,1,''),(18371,'slug',0,1,''),(18539,'slug',0,1,''),(18540,'slug',0,1,''),(18541,'slug',0,1,''),(18542,'slug',0,1,''),(18543,'slug',0,1,''),(18544,'slug',0,1,''),(18545,'slug',0,1,''),(18546,'slug',0,1,''),(18547,'slug',0,1,''),(18548,'slug',0,1,''),(18549,'slug',0,1,''),(18551,'slug',0,1,''),(18552,'slug',0,1,''),(18553,'slug',0,1,''),(18554,'slug',0,1,''),(18555,'slug',0,1,''),(18556,'slug',0,1,''),(18557,'slug',0,1,''),(18558,'slug',0,1,''),(18559,'slug',0,1,''),(18560,'slug',0,1,''),(18561,'slug',0,1,''),(18563,'slug',0,1,''),(18564,'slug',0,1,''),(18565,'slug',0,1,''),(18566,'slug',0,1,''),(18567,'slug',0,1,''),(18568,'slug',0,1,''),(18569,'slug',0,1,''),(18570,'slug',0,1,''),(18571,'slug',0,1,''),(18573,'slug',0,1,''),(18574,'slug',0,1,''),(18575,'slug',0,1,''),(18576,'slug',0,1,''),(18577,'slug',0,1,''),(18578,'slug',0,1,''),(18579,'slug',0,1,''),(18580,'slug',0,1,''),(18581,'slug',0,1,''),(18582,'slug',0,1,''),(18583,'slug',0,1,''),(18584,'extension',0,1,' jpeg '),(18584,'filename',0,1,' medical mums 1 jpeg '),(18584,'kind',0,1,' image '),(18584,'slug',0,1,''),(18584,'title',0,1,' medical mums 1 '),(18597,'extension',0,1,' jpeg '),(18597,'filename',0,1,' medical mums 2 jpeg '),(18597,'kind',0,1,' image '),(18597,'slug',0,1,''),(18597,'title',0,1,' medical mums 2 '),(18598,'extension',0,1,' jpeg '),(18598,'filename',0,1,' medical mums 3 jpeg '),(18598,'kind',0,1,' image '),(18598,'slug',0,1,''),(18598,'title',0,1,' medical mums 3 '),(18599,'extension',0,1,' jpeg '),(18599,'filename',0,1,' medical mums 4 jpeg '),(18599,'kind',0,1,' image '),(18599,'slug',0,1,''),(18599,'title',0,1,' medical mums 4 '),(18627,'slug',0,1,''),(18628,'slug',0,1,''),(18629,'slug',0,1,''),(18630,'slug',0,1,''),(18631,'slug',0,1,''),(18633,'slug',0,1,''),(18634,'slug',0,1,''),(18635,'slug',0,1,''),(18636,'slug',0,1,''),(18637,'slug',0,1,''),(18638,'extension',0,1,' jpg '),(18638,'filename',0,1,' tri landing 1 3 jpg '),(18638,'kind',0,1,' image '),(18638,'slug',0,1,''),(18638,'title',0,1,' tri landing 1 3 '),(18639,'extension',0,1,' jpg '),(18639,'filename',0,1,' tri landing 3 3 jpg '),(18639,'kind',0,1,' image '),(18639,'slug',0,1,''),(18639,'title',0,1,' tri landing 3 3 '),(18640,'extension',0,1,' jpg '),(18640,'filename',0,1,' tri landing 4 3 jpg '),(18640,'kind',0,1,' image '),(18640,'slug',0,1,''),(18640,'title',0,1,' tri landing 4 3 '),(18641,'extension',0,1,' jpg '),(18641,'filename',0,1,' tri landing 5 3 jpg '),(18641,'kind',0,1,' image '),(18641,'slug',0,1,''),(18641,'title',0,1,' tri landing 5 3 '),(18642,'extension',0,1,' jpg '),(18642,'filename',0,1,' tri landing 6 3 jpg '),(18642,'kind',0,1,' image '),(18642,'slug',0,1,''),(18642,'title',0,1,' tri landing 6 3 '),(18643,'extension',0,1,' jpg '),(18643,'filename',0,1,' tri landing 7 3 jpg '),(18643,'kind',0,1,' image '),(18643,'slug',0,1,''),(18643,'title',0,1,' tri landing 7 3 '),(18644,'extension',0,1,' jpg '),(18644,'filename',0,1,' tri landing 14 jpg '),(18644,'kind',0,1,' image '),(18644,'slug',0,1,''),(18644,'title',0,1,' tri landing 14 '),(18645,'extension',0,1,' jpg '),(18645,'filename',0,1,' tri landing 15 jpg '),(18645,'kind',0,1,' image '),(18645,'slug',0,1,''),(18645,'title',0,1,' tri landing 15 '),(18646,'extension',0,1,' jpg '),(18646,'filename',0,1,' tri landing 16 jpg '),(18646,'kind',0,1,' image '),(18646,'slug',0,1,''),(18646,'title',0,1,' tri landing 16 '),(18647,'extension',0,1,' jpg '),(18647,'filename',0,1,' tri landing 17 jpg '),(18647,'kind',0,1,' image '),(18647,'slug',0,1,''),(18647,'title',0,1,' tri landing 17 '),(18648,'extension',0,1,' jpg '),(18648,'filename',0,1,' tri landing 18 jpg '),(18648,'kind',0,1,' image '),(18648,'slug',0,1,''),(18648,'title',0,1,' tri landing 18 '),(18649,'extension',0,1,' jpg '),(18649,'filename',0,1,' tri landing 19 jpg '),(18649,'kind',0,1,' image '),(18649,'slug',0,1,''),(18649,'title',0,1,' tri landing 19 '),(18650,'extension',0,1,' jpg '),(18650,'filename',0,1,' tri landing 20 jpg '),(18650,'kind',0,1,' image '),(18650,'slug',0,1,''),(18650,'title',0,1,' tri landing 20 '),(18651,'extension',0,1,' jpg '),(18651,'filename',0,1,' tri landing 21 jpg '),(18651,'kind',0,1,' image '),(18651,'slug',0,1,''),(18651,'title',0,1,' tri landing 21 '),(18652,'extension',0,1,' jpg '),(18652,'filename',0,1,' tri landing 22 jpg '),(18652,'kind',0,1,' image '),(18652,'slug',0,1,''),(18652,'title',0,1,' tri landing 22 '),(18653,'extension',0,1,' jpeg '),(18653,'filename',0,1,' tri video placeholder jpeg '),(18653,'kind',0,1,' image '),(18653,'slug',0,1,''),(18653,'title',0,1,' tri video placeholder '),(19015,'slug',0,1,''),(19016,'slug',0,1,''),(19017,'slug',0,1,''),(19018,'slug',0,1,''),(19019,'slug',0,1,''),(19020,'slug',0,1,''),(19021,'slug',0,1,''),(19022,'slug',0,1,''),(19023,'slug',0,1,''),(19024,'slug',0,1,''),(19025,'slug',0,1,''),(19026,'slug',0,1,''),(19027,'slug',0,1,''),(19028,'slug',0,1,''),(19029,'slug',0,1,''),(19030,'slug',0,1,''),(19031,'slug',0,1,''),(19032,'slug',0,1,''),(19034,'slug',0,1,''),(19035,'slug',0,1,''),(19036,'slug',0,1,''),(19037,'slug',0,1,''),(19038,'slug',0,1,''),(19039,'slug',0,1,''),(19040,'slug',0,1,''),(19041,'slug',0,1,''),(19042,'slug',0,1,''),(19043,'slug',0,1,''),(19044,'slug',0,1,''),(19045,'slug',0,1,''),(19046,'slug',0,1,''),(19047,'slug',0,1,''),(19048,'slug',0,1,''),(19049,'slug',0,1,''),(19050,'slug',0,1,''),(19051,'slug',0,1,''),(19052,'extension',0,1,' jpg '),(19052,'filename',0,1,' quu landing 1 jpg '),(19052,'kind',0,1,' image '),(19052,'slug',0,1,''),(19052,'title',0,1,' quu landing 1 '),(19053,'extension',0,1,' jpg '),(19053,'filename',0,1,' quu landing 2 jpg '),(19053,'kind',0,1,' image '),(19053,'slug',0,1,''),(19053,'title',0,1,' quu landing 2 '),(19054,'extension',0,1,' jpeg '),(19054,'filename',0,1,' quu landing 3 jpeg '),(19054,'kind',0,1,' image '),(19054,'slug',0,1,''),(19054,'title',0,1,' quu landing 3 '),(19055,'extension',0,1,' jpeg '),(19055,'filename',0,1,' quu landing 4 jpeg '),(19055,'kind',0,1,' image '),(19055,'slug',0,1,''),(19055,'title',0,1,' quu landing 4 '),(19056,'extension',0,1,' jpeg '),(19056,'filename',0,1,' quu landing 5 jpeg '),(19056,'kind',0,1,' image '),(19056,'slug',0,1,''),(19056,'title',0,1,' quu landing 5 '),(19057,'extension',0,1,' jpeg '),(19057,'filename',0,1,' quu landing 7 jpeg '),(19057,'kind',0,1,' image '),(19057,'slug',0,1,''),(19057,'title',0,1,' quu landing 7 '),(19058,'extension',0,1,' jpeg '),(19058,'filename',0,1,' quu landing 8 jpeg '),(19058,'kind',0,1,' image '),(19058,'slug',0,1,''),(19058,'title',0,1,' quu landing 8 '),(19059,'extension',0,1,' jpeg '),(19059,'filename',0,1,' quu landing 9 jpeg '),(19059,'kind',0,1,' image '),(19059,'slug',0,1,''),(19059,'title',0,1,' quu landing 9 '),(19060,'extension',0,1,' jpeg '),(19060,'filename',0,1,' reasons to stay 1 jpeg '),(19060,'kind',0,1,' image '),(19060,'slug',0,1,''),(19060,'title',0,1,' reasons to stay 1 '),(19061,'extension',0,1,' jpeg '),(19061,'filename',0,1,' reasons to stay 2 jpeg '),(19061,'kind',0,1,' image '),(19061,'slug',0,1,''),(19061,'title',0,1,' reasons to stay 2 '),(19062,'extension',0,1,' jpeg '),(19062,'filename',0,1,' reasons to stay 3 jpeg '),(19062,'kind',0,1,' image '),(19062,'slug',0,1,''),(19062,'title',0,1,' reasons to stay 3 '),(19063,'extension',0,1,' jpg '),(19063,'filename',0,1,' reasons to stay thumbnail 1 jpg '),(19063,'kind',0,1,' image '),(19063,'slug',0,1,''),(19063,'title',0,1,' reasons to stay thumbnail 1 '),(19064,'extension',0,1,' jpg '),(19064,'filename',0,1,' reasons to stay thumbnail 2 jpg '),(19064,'kind',0,1,' image '),(19064,'slug',0,1,''),(19064,'title',0,1,' reasons to stay thumbnail 2 '),(19065,'extension',0,1,' jpg '),(19065,'filename',0,1,' reasons to stay thumbnail 3 jpg '),(19065,'kind',0,1,' image '),(19065,'slug',0,1,''),(19065,'title',0,1,' reasons to stay thumbnail 3 '),(19066,'extension',0,1,' jpg '),(19066,'filename',0,1,' reasons to stay thumbnail 4 jpg '),(19066,'kind',0,1,' image '),(19066,'slug',0,1,''),(19066,'title',0,1,' reasons to stay thumbnail 4 '),(19067,'extension',0,1,' jpg '),(19067,'filename',0,1,' reasons to stay thumbnail 5 jpg '),(19067,'kind',0,1,' image '),(19067,'slug',0,1,''),(19067,'title',0,1,' reasons to stay thumbnail 5 '),(19068,'extension',0,1,' jpg '),(19068,'filename',0,1,' reasons to stay thumbnail 6 jpg '),(19068,'kind',0,1,' image '),(19068,'slug',0,1,''),(19068,'title',0,1,' reasons to stay thumbnail 6 '),(19081,'extension',0,1,' jpg '),(19081,'filename',0,1,' phn sp branding 1 jpg '),(19081,'kind',0,1,' image '),(19081,'slug',0,1,''),(19081,'title',0,1,' phn sp branding 1 '),(19094,'slug',0,1,''),(19095,'slug',0,1,''),(19096,'slug',0,1,''),(19097,'slug',0,1,''),(19098,'slug',0,1,''),(19099,'slug',0,1,''),(19100,'slug',0,1,''),(19101,'slug',0,1,''),(19102,'slug',0,1,''),(19103,'slug',0,1,''),(19104,'slug',0,1,''),(19106,'slug',0,1,''),(19107,'slug',0,1,''),(19108,'slug',0,1,''),(19109,'slug',0,1,''),(19110,'slug',0,1,''),(19111,'slug',0,1,''),(19112,'slug',0,1,''),(19113,'slug',0,1,''),(19114,'slug',0,1,''),(19115,'slug',0,1,''),(19116,'slug',0,1,''),(19137,'slug',0,1,''),(19138,'slug',0,1,''),(19139,'slug',0,1,''),(19140,'slug',0,1,''),(19141,'slug',0,1,''),(19142,'slug',0,1,''),(19143,'slug',0,1,''),(19144,'slug',0,1,''),(19145,'slug',0,1,''),(19147,'slug',0,1,''),(19148,'slug',0,1,''),(19149,'slug',0,1,''),(19150,'slug',0,1,''),(19151,'slug',0,1,''),(19152,'slug',0,1,''),(19153,'slug',0,1,''),(19154,'slug',0,1,''),(19155,'slug',0,1,''),(19167,'slug',0,1,' new word order '),(19167,'title',0,1,' new word order '),(19175,'slug',0,1,' surepipe '),(19175,'title',0,1,' surepipe '),(19176,'email',0,1,' stewart surepipe com au '),(19176,'firstname',0,1,' stewart '),(19176,'fullname',0,1,' stewart anderson '),(19176,'lastname',0,1,' anderson '),(19176,'slug',0,1,''),(19176,'username',0,1,' stewart '),(19177,'slug',0,1,' stewart anderson brand audit submission 11 jun 2021 '),(19177,'title',0,1,' stewart anderson brand audit submission 11 jun 2021 '),(19179,'email',0,1,' franc surepipe com au '),(19179,'firstname',0,1,' franc '),(19179,'fullname',0,1,' franc pierro '),(19179,'lastname',0,1,' pierro '),(19179,'slug',0,1,''),(19179,'username',0,1,' franc '),(19181,'slug',0,1,' franc pierro brand audit submission 11 jun 2021 '),(19181,'title',0,1,' franc pierro brand audit submission 11 jun 2021 '),(19185,'email',0,1,' rachel surepipe com au '),(19185,'firstname',0,1,' rachel '),(19185,'fullname',0,1,' rachel shannon '),(19185,'lastname',0,1,' shannon '),(19185,'slug',0,1,''),(19185,'username',0,1,' rachel '),(19188,'slug',0,1,' rachel shannon brand audit submission 11 jun 2021 '),(19188,'title',0,1,' rachel shannon brand audit submission 11 jun 2021 '),(19191,'email',0,1,' james surepipe com au '),(19191,'firstname',0,1,' james '),(19191,'fullname',0,1,' james mcilwraith '),(19191,'lastname',0,1,' mcilwraith '),(19191,'slug',0,1,''),(19191,'username',0,1,' james '),(19192,'slug',0,1,' james mcilwraith brand audit submission 11 jun 2021 '),(19192,'title',0,1,' james mcilwraith brand audit submission 11 jun 2021 '),(19196,'slug',0,1,' some company '),(19196,'title',0,1,' some company '),(19197,'email',0,1,' someuser somecompany com au '),(19197,'firstname',0,1,' some '),(19197,'fullname',0,1,' some user '),(19197,'lastname',0,1,' user '),(19197,'slug',0,1,''),(19197,'username',0,1,' someuser '),(19200,'slug',0,1,' some user brand audit submission 14 jun 2021 '),(19200,'title',0,1,' some user brand audit submission 14 jun 2021 '),(19222,'slug',0,1,' andrew mcguckin brand audit submission 15 jun 2021 '),(19222,'title',0,1,' andrew mcguckin brand audit submission 16 jun 2021 '),(20195,'slug',0,1,' ryan murray brand audit submission 16 jun 2021 '),(20195,'title',0,1,' ryan murray brand audit submission 10 feb 2022 '),(20379,'field',164,1,' were a creative agency whose clients sleep at night there are no jazz hands no smoke no mirrors no special effects for our clients this means creative confidence for them their team and those higher up the chain doest that sound nice for a change our work focuses around significant human decisions leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience deep pain euphoria and everything between we take a pragmatic common sense approach to strategic and creative work our clients find this refreshing because we understand their context and goals purpose driven work ist rare anymore but our purpose to make a meaningful difference to peoples lives runs deep it determines the kind of work we do how we treat each other and our drive to go above and beyond for our clients all of our creative work is backed by research accurate insights and robust strategies for our clients it means they have hard evidence and confidence to take the next step and influence to bring their teams and leaders along for the ride we began as a strategic communications agency and good quality words still mean as much to us today as they did on day one our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people we seek to understand how humans connect engage decide and change evidence based strategy is built on unique insights that guide all the work to come see our proven methodologies for how we make every project a success we started out as a strategic communications agency when ex journo suzanne oxford got seriously fed up with all of the sub par corporate comms out there a few years later creative and strategist scott oxford joined the fun we hired a few more folks made a few more connections and slowly but surely became the strategic creative powerhouse our clients know and love us for today '),(20379,'slug',0,1,' about us '),(20379,'title',0,1,' about us '),(21052,'slug',0,1,''),(21053,'slug',0,1,''),(21054,'slug',0,1,''),(21055,'slug',0,1,''),(21056,'slug',0,1,''),(21059,'slug',0,1,''),(21061,'slug',0,1,''),(21062,'slug',0,1,''),(21063,'slug',0,1,''),(21064,'slug',0,1,''),(21065,'slug',0,1,''),(21066,'slug',0,1,''),(21067,'slug',0,1,''),(21068,'slug',0,1,''),(21075,'extension',0,1,' jpg '),(21075,'filename',0,1,' pivotus jpg '),(21075,'kind',0,1,' image '),(21075,'slug',0,1,''),(21075,'title',0,1,' pivotus logo orange '),(21076,'extension',0,1,' jpg '),(21076,'filename',0,1,' qld gov jpg '),(21076,'kind',0,1,' image '),(21076,'slug',0,1,''),(21076,'title',0,1,' queensland government logo orange '),(21079,'extension',0,1,' jpg '),(21079,'filename',0,1,' threeby3 jpg '),(21079,'kind',0,1,' image '),(21079,'slug',0,1,''),(21079,'title',0,1,' three by 3 logo orange '),(21082,'extension',0,1,' jpg '),(21082,'filename',0,1,' iap2 jpg '),(21082,'kind',0,1,' image '),(21082,'slug',0,1,''),(21082,'title',0,1,' iap2 logo orange '),(21084,'extension',0,1,' jpg '),(21084,'filename',0,1,' hubspot jpg '),(21084,'kind',0,1,' image '),(21084,'slug',0,1,''),(21084,'title',0,1,' hubspot logo orange '),(21085,'extension',0,1,' jpg '),(21085,'filename',0,1,' educate plus jpg '),(21085,'kind',0,1,' image '),(21085,'slug',0,1,''),(21085,'title',0,1,' educate plus orange logo '),(21090,'slug',0,1,''),(21091,'slug',0,1,''),(21092,'slug',0,1,''),(21093,'slug',0,1,''),(21094,'slug',0,1,''),(21097,'slug',0,1,''),(21099,'slug',0,1,''),(21100,'slug',0,1,''),(21101,'slug',0,1,''),(21102,'slug',0,1,''),(21103,'slug',0,1,''),(21104,'slug',0,1,''),(21105,'slug',0,1,''),(21106,'slug',0,1,''),(21112,'slug',0,1,''),(21113,'slug',0,1,''),(21114,'slug',0,1,''),(21115,'slug',0,1,''),(21116,'slug',0,1,''),(21119,'slug',0,1,''),(21121,'slug',0,1,''),(21122,'slug',0,1,''),(21123,'slug',0,1,''),(21124,'slug',0,1,''),(21125,'slug',0,1,''),(21126,'slug',0,1,''),(21127,'slug',0,1,''),(21128,'slug',0,1,''),(21179,'slug',0,1,''),(21180,'slug',0,1,''),(21181,'slug',0,1,''),(21182,'slug',0,1,''),(21183,'slug',0,1,''),(21186,'slug',0,1,''),(21188,'slug',0,1,''),(21189,'slug',0,1,''),(21190,'slug',0,1,''),(21191,'slug',0,1,''),(21192,'slug',0,1,''),(21193,'slug',0,1,''),(21194,'slug',0,1,''),(21195,'slug',0,1,''),(21202,'slug',0,1,''),(21203,'slug',0,1,''),(21204,'slug',0,1,''),(21205,'slug',0,1,''),(21206,'slug',0,1,''),(21209,'slug',0,1,''),(21211,'slug',0,1,''),(21212,'slug',0,1,''),(21213,'slug',0,1,''),(21214,'slug',0,1,''),(21215,'slug',0,1,''),(21216,'slug',0,1,''),(21217,'slug',0,1,''),(21218,'slug',0,1,''),(21224,'slug',0,1,''),(21225,'slug',0,1,''),(21226,'slug',0,1,''),(21227,'slug',0,1,''),(21228,'slug',0,1,''),(21231,'slug',0,1,''),(21245,'slug',0,1,''),(21246,'slug',0,1,''),(21247,'slug',0,1,''),(21248,'slug',0,1,''),(21249,'slug',0,1,''),(21252,'slug',0,1,''),(21254,'slug',0,1,''),(21255,'slug',0,1,''),(21256,'slug',0,1,''),(21257,'slug',0,1,''),(21258,'slug',0,1,''),(21259,'slug',0,1,''),(21260,'slug',0,1,''),(21272,'slug',0,1,''),(21273,'slug',0,1,''),(21274,'slug',0,1,''),(21275,'slug',0,1,''),(21276,'slug',0,1,''),(21279,'slug',0,1,''),(21281,'slug',0,1,''),(21282,'slug',0,1,''),(21283,'slug',0,1,''),(21284,'slug',0,1,''),(21285,'slug',0,1,''),(21286,'slug',0,1,''),(21287,'slug',0,1,''),(21289,'slug',0,1,''),(21290,'slug',0,1,''),(21291,'slug',0,1,''),(21292,'slug',0,1,''),(21293,'slug',0,1,''),(21294,'slug',0,1,''),(21296,'slug',0,1,''),(21297,'field',164,1,''),(21297,'slug',0,1,' contact '),(21297,'title',0,1,' contact '),(21309,'slug',0,1,''),(21335,'slug',0,1,''),(21337,'slug',0,1,''),(21339,'slug',0,1,''),(21371,'slug',0,1,''),(21372,'slug',0,1,''),(21373,'slug',0,1,''),(21374,'slug',0,1,''),(21375,'slug',0,1,''),(21378,'slug',0,1,''),(21380,'slug',0,1,''),(21381,'slug',0,1,''),(21382,'slug',0,1,''),(21383,'slug',0,1,''),(21384,'slug',0,1,''),(21385,'slug',0,1,''),(21386,'slug',0,1,''),(21388,'slug',0,1,''),(21389,'slug',0,1,''),(21390,'slug',0,1,''),(21391,'slug',0,1,''),(21392,'slug',0,1,''),(21393,'slug',0,1,''),(21398,'slug',0,1,''),(21399,'slug',0,1,''),(21400,'slug',0,1,''),(21401,'slug',0,1,''),(21402,'slug',0,1,''),(21405,'slug',0,1,''),(21407,'slug',0,1,''),(21408,'slug',0,1,''),(21409,'slug',0,1,''),(21410,'slug',0,1,''),(21411,'slug',0,1,''),(21412,'slug',0,1,''),(21413,'slug',0,1,''),(21415,'slug',0,1,''),(21416,'slug',0,1,''),(21417,'slug',0,1,''),(21418,'slug',0,1,''),(21419,'slug',0,1,''),(21420,'slug',0,1,''),(21425,'slug',0,1,''),(21426,'slug',0,1,''),(21427,'slug',0,1,''),(21428,'slug',0,1,''),(21429,'slug',0,1,''),(21432,'slug',0,1,''),(21434,'slug',0,1,''),(21435,'slug',0,1,''),(21436,'slug',0,1,''),(21437,'slug',0,1,''),(21438,'slug',0,1,''),(21439,'slug',0,1,''),(21440,'slug',0,1,''),(21442,'slug',0,1,''),(21443,'slug',0,1,''),(21444,'slug',0,1,''),(21445,'slug',0,1,''),(21446,'slug',0,1,''),(21447,'slug',0,1,''),(21505,'slug',0,1,''),(21506,'slug',0,1,''),(21507,'slug',0,1,''),(21508,'slug',0,1,''),(21509,'slug',0,1,''),(21512,'slug',0,1,''),(21514,'slug',0,1,''),(21515,'slug',0,1,''),(21516,'slug',0,1,''),(21517,'slug',0,1,''),(21518,'slug',0,1,''),(21519,'slug',0,1,''),(21520,'slug',0,1,''),(21522,'slug',0,1,''),(21523,'slug',0,1,''),(21524,'slug',0,1,''),(21525,'slug',0,1,''),(21526,'slug',0,1,''),(21527,'slug',0,1,''),(21532,'slug',0,1,''),(21533,'slug',0,1,''),(21534,'slug',0,1,''),(21535,'slug',0,1,''),(21536,'slug',0,1,''),(21539,'slug',0,1,''),(21541,'slug',0,1,''),(21542,'slug',0,1,''),(21543,'slug',0,1,''),(21544,'slug',0,1,''),(21545,'slug',0,1,''),(21546,'slug',0,1,''),(21547,'slug',0,1,''),(21549,'slug',0,1,''),(21550,'slug',0,1,''),(21551,'slug',0,1,''),(21552,'slug',0,1,''),(21553,'slug',0,1,''),(21554,'slug',0,1,''),(21559,'slug',0,1,''),(21560,'slug',0,1,''),(21561,'slug',0,1,''),(21562,'slug',0,1,''),(21563,'slug',0,1,''),(21566,'slug',0,1,''),(21568,'slug',0,1,''),(21569,'slug',0,1,''),(21570,'slug',0,1,''),(21571,'slug',0,1,''),(21572,'slug',0,1,''),(21573,'slug',0,1,''),(21574,'slug',0,1,''),(21576,'slug',0,1,''),(21577,'slug',0,1,''),(21578,'slug',0,1,''),(21579,'slug',0,1,''),(21580,'slug',0,1,''),(21581,'slug',0,1,''),(21586,'slug',0,1,''),(21587,'slug',0,1,''),(21588,'slug',0,1,''),(21589,'slug',0,1,''),(21590,'slug',0,1,''),(21593,'slug',0,1,''),(21595,'slug',0,1,''),(21596,'slug',0,1,''),(21597,'slug',0,1,''),(21598,'slug',0,1,''),(21599,'slug',0,1,''),(21600,'slug',0,1,''),(21601,'slug',0,1,''),(21603,'slug',0,1,''),(21604,'slug',0,1,''),(21605,'slug',0,1,''),(21606,'slug',0,1,''),(21607,'slug',0,1,''),(21608,'slug',0,1,''),(21613,'slug',0,1,''),(21614,'slug',0,1,''),(21615,'slug',0,1,''),(21616,'slug',0,1,''),(21617,'slug',0,1,''),(21620,'slug',0,1,''),(21622,'slug',0,1,''),(21623,'slug',0,1,''),(21624,'slug',0,1,''),(21625,'slug',0,1,''),(21626,'slug',0,1,''),(21627,'slug',0,1,''),(21628,'slug',0,1,''),(21630,'slug',0,1,''),(21631,'slug',0,1,''),(21632,'slug',0,1,''),(21633,'slug',0,1,''),(21634,'slug',0,1,''),(21635,'slug',0,1,''),(21640,'slug',0,1,''),(21641,'slug',0,1,''),(21642,'slug',0,1,''),(21643,'slug',0,1,''),(21644,'slug',0,1,''),(21647,'slug',0,1,''),(21649,'slug',0,1,''),(21650,'slug',0,1,''),(21651,'slug',0,1,''),(21652,'slug',0,1,''),(21653,'slug',0,1,''),(21654,'slug',0,1,''),(21655,'slug',0,1,''),(21657,'slug',0,1,''),(21658,'slug',0,1,''),(21659,'slug',0,1,''),(21660,'slug',0,1,''),(21661,'slug',0,1,''),(21662,'slug',0,1,''),(21667,'slug',0,1,''),(21668,'slug',0,1,''),(21669,'slug',0,1,''),(21670,'slug',0,1,''),(21671,'slug',0,1,''),(21674,'slug',0,1,''),(21676,'slug',0,1,''),(21677,'slug',0,1,''),(21678,'slug',0,1,''),(21679,'slug',0,1,''),(21680,'slug',0,1,''),(21681,'slug',0,1,''),(21682,'slug',0,1,''),(21684,'slug',0,1,''),(21685,'slug',0,1,''),(21686,'slug',0,1,''),(21687,'slug',0,1,''),(21688,'slug',0,1,''),(21689,'slug',0,1,''),(21694,'slug',0,1,''),(21695,'slug',0,1,''),(21696,'slug',0,1,''),(21697,'slug',0,1,''),(21698,'slug',0,1,''),(21701,'slug',0,1,''),(21703,'slug',0,1,''),(21704,'slug',0,1,''),(21705,'slug',0,1,''),(21706,'slug',0,1,''),(21707,'slug',0,1,''),(21708,'slug',0,1,''),(21709,'slug',0,1,''),(21711,'slug',0,1,''),(21712,'slug',0,1,''),(21713,'slug',0,1,''),(21714,'slug',0,1,''),(21715,'slug',0,1,''),(21716,'slug',0,1,''),(21721,'slug',0,1,''),(21722,'slug',0,1,''),(21723,'slug',0,1,''),(21724,'slug',0,1,''),(21725,'slug',0,1,''),(21728,'slug',0,1,''),(21730,'slug',0,1,''),(21731,'slug',0,1,''),(21732,'slug',0,1,''),(21733,'slug',0,1,''),(21734,'slug',0,1,''),(21735,'slug',0,1,''),(21736,'slug',0,1,''),(21738,'slug',0,1,''),(21739,'slug',0,1,''),(21740,'slug',0,1,''),(21741,'slug',0,1,''),(21742,'slug',0,1,''),(21743,'slug',0,1,''),(21772,'slug',0,1,''),(21773,'slug',0,1,''),(21774,'slug',0,1,''),(21775,'slug',0,1,''),(21776,'slug',0,1,''),(21777,'slug',0,1,''),(21778,'slug',0,1,''),(21779,'slug',0,1,''),(21780,'slug',0,1,''),(21781,'slug',0,1,''),(21782,'slug',0,1,''),(21783,'slug',0,1,''),(21784,'slug',0,1,''),(21785,'slug',0,1,''),(21786,'slug',0,1,''),(21787,'slug',0,1,''),(21788,'slug',0,1,''),(21789,'slug',0,1,''),(21790,'slug',0,1,''),(21791,'slug',0,1,''),(21792,'slug',0,1,''),(21793,'slug',0,1,''),(21794,'slug',0,1,''),(21795,'slug',0,1,''),(21796,'slug',0,1,''),(21797,'slug',0,1,''),(21801,'slug',0,1,''),(21802,'slug',0,1,''),(21803,'slug',0,1,''),(21804,'slug',0,1,''),(21805,'slug',0,1,''),(21808,'slug',0,1,''),(21810,'slug',0,1,''),(21811,'slug',0,1,''),(21812,'slug',0,1,''),(21813,'slug',0,1,''),(21814,'slug',0,1,''),(21815,'slug',0,1,''),(21816,'slug',0,1,''),(21818,'slug',0,1,''),(21819,'slug',0,1,''),(21820,'slug',0,1,''),(21821,'slug',0,1,''),(21822,'slug',0,1,''),(21823,'slug',0,1,''),(21855,'slug',0,1,''),(21856,'slug',0,1,''),(21857,'slug',0,1,''),(21858,'slug',0,1,''),(21859,'slug',0,1,''),(21862,'slug',0,1,''),(21864,'slug',0,1,''),(21865,'slug',0,1,''),(21866,'slug',0,1,''),(21867,'slug',0,1,''),(21868,'slug',0,1,''),(21869,'slug',0,1,''),(21870,'slug',0,1,''),(21872,'slug',0,1,''),(21873,'slug',0,1,''),(21874,'slug',0,1,''),(21875,'slug',0,1,''),(21876,'slug',0,1,''),(21877,'slug',0,1,''),(21898,'email',0,1,' janine newwordorder com au '),(21898,'firstname',0,1,' janine '),(21898,'fullname',0,1,' janine crawford '),(21898,'lastname',0,1,' crawford '),(21898,'slug',0,1,''),(21898,'username',0,1,' janine '),(21910,'extension',0,1,' svg '),(21910,'filename',0,1,' down chevron svg '),(21910,'kind',0,1,' image '),(21910,'slug',0,1,''),(21910,'title',0,1,' down chevron '),(21915,'extension',0,1,' svg '),(21915,'filename',0,1,' educate plus svg '),(21915,'kind',0,1,' image '),(21915,'slug',0,1,''),(21915,'title',0,1,' educate plus logo monochrome '),(21916,'extension',0,1,' svg '),(21916,'filename',0,1,' hubspot svg '),(21916,'kind',0,1,' image '),(21916,'slug',0,1,''),(21916,'title',0,1,' hubspot logo monochrome '),(21917,'extension',0,1,' svg '),(21917,'filename',0,1,' iap2 svg '),(21917,'kind',0,1,' image '),(21917,'slug',0,1,''),(21917,'title',0,1,' iap2 logo monochrome '),(21918,'extension',0,1,' svg '),(21918,'filename',0,1,' pivotus svg '),(21918,'kind',0,1,' image '),(21918,'slug',0,1,''),(21918,'title',0,1,' pivotus logo '),(21919,'extension',0,1,' svg '),(21919,'filename',0,1,' qld govt svg '),(21919,'kind',0,1,' image '),(21919,'slug',0,1,''),(21919,'title',0,1,' queensland government logo '),(21920,'extension',0,1,' svg '),(21920,'filename',0,1,' three by three svg '),(21920,'kind',0,1,' image '),(21920,'slug',0,1,''),(21920,'title',0,1,' three by 3 logo '),(21937,'slug',0,1,''),(21938,'slug',0,1,''),(21939,'slug',0,1,''),(21940,'slug',0,1,''),(21941,'slug',0,1,''),(21942,'slug',0,1,''),(21943,'slug',0,1,''),(21944,'slug',0,1,''),(21945,'slug',0,1,''),(21946,'slug',0,1,''),(21947,'slug',0,1,''),(21948,'slug',0,1,''),(21961,'slug',0,1,''),(21962,'slug',0,1,''),(21963,'slug',0,1,''),(21964,'slug',0,1,''),(21965,'slug',0,1,''),(21966,'slug',0,1,''),(21974,'slug',0,1,''),(21975,'slug',0,1,''),(21976,'slug',0,1,''),(21977,'slug',0,1,''),(21978,'slug',0,1,''),(21979,'extension',0,1,' jpeg '),(21979,'filename',0,1,' 20 phn my mental health 1 jpeg '),(21979,'kind',0,1,' image '),(21979,'slug',0,1,''),(21979,'title',0,1,' 20 phn my mental health 1 '),(21999,'extension',0,1,' jpeg '),(21999,'filename',0,1,' 20 phn my mental health 2 jpeg '),(21999,'kind',0,1,' image '),(21999,'slug',0,1,''),(21999,'title',0,1,' 20 phn my mental health 2 '),(22007,'slug',0,1,''),(22008,'slug',0,1,''),(22009,'slug',0,1,''),(22010,'extension',0,1,' jpeg '),(22010,'filename',0,1,' 20 phn right place right time 1 jpeg '),(22010,'kind',0,1,' image '),(22010,'slug',0,1,''),(22010,'title',0,1,' 20 phn right place right time 1 '),(22011,'extension',0,1,' jpeg '),(22011,'filename',0,1,' 20 phn right place right time 2 jpeg '),(22011,'kind',0,1,' image '),(22011,'slug',0,1,''),(22011,'title',0,1,' 20 phn right place right time 2 '),(22012,'extension',0,1,' jpeg '),(22012,'filename',0,1,' 20 phn right place right time 3 jpeg '),(22012,'kind',0,1,' image '),(22012,'slug',0,1,''),(22012,'title',0,1,' 20 phn right place right time 3 '),(22042,'slug',0,1,''),(22043,'slug',0,1,''),(22044,'slug',0,1,''),(22045,'slug',0,1,''),(22052,'slug',0,1,''),(22053,'slug',0,1,''),(22054,'slug',0,1,''),(22055,'slug',0,1,''),(22061,'slug',0,1,''),(22062,'slug',0,1,''),(22063,'slug',0,1,''),(22083,'extension',0,1,' jpeg '),(22083,'filename',0,1,' tri landing 1 3 jpeg '),(22083,'kind',0,1,' image '),(22083,'slug',0,1,''),(22083,'title',0,1,' tri landing 1 3 '),(22084,'extension',0,1,' jpeg '),(22084,'filename',0,1,' tri landing 2 jpeg '),(22084,'kind',0,1,' image '),(22084,'slug',0,1,''),(22084,'title',0,1,' tri landing 2 '),(22085,'extension',0,1,' jpeg '),(22085,'filename',0,1,' tri landing 3 3 jpeg '),(22085,'kind',0,1,' image '),(22085,'slug',0,1,''),(22085,'title',0,1,' tri landing 3 3 '),(22086,'extension',0,1,' jpeg '),(22086,'filename',0,1,' tri landing 4 3 jpeg '),(22086,'kind',0,1,' image '),(22086,'slug',0,1,''),(22086,'title',0,1,' tri landing 4 3 '),(22087,'extension',0,1,' jpeg '),(22087,'filename',0,1,' tri landing 5 3 jpeg '),(22087,'kind',0,1,' image '),(22087,'slug',0,1,''),(22087,'title',0,1,' tri landing 5 3 '),(22088,'extension',0,1,' jpeg '),(22088,'filename',0,1,' tri landing 6 3 jpeg '),(22088,'kind',0,1,' image '),(22088,'slug',0,1,''),(22088,'title',0,1,' tri landing 6 3 '),(22089,'extension',0,1,' jpeg '),(22089,'filename',0,1,' tri landing 7 3 jpeg '),(22089,'kind',0,1,' image '),(22089,'slug',0,1,''),(22089,'title',0,1,' tri landing 7 3 '),(22090,'extension',0,1,' jpeg '),(22090,'filename',0,1,' tri landing 14 jpeg '),(22090,'kind',0,1,' image '),(22090,'slug',0,1,''),(22090,'title',0,1,' tri landing 14 '),(22091,'extension',0,1,' jpeg '),(22091,'filename',0,1,' tri landing 15 jpeg '),(22091,'kind',0,1,' image '),(22091,'slug',0,1,''),(22091,'title',0,1,' tri landing 15 '),(22092,'extension',0,1,' jpeg '),(22092,'filename',0,1,' tri landing 16 jpeg '),(22092,'kind',0,1,' image '),(22092,'slug',0,1,''),(22092,'title',0,1,' tri landing 16 '),(22093,'extension',0,1,' jpeg '),(22093,'filename',0,1,' tri landing 17 jpeg '),(22093,'kind',0,1,' image '),(22093,'slug',0,1,''),(22093,'title',0,1,' tri landing 17 '),(22094,'extension',0,1,' jpeg '),(22094,'filename',0,1,' tri landing 18 jpeg '),(22094,'kind',0,1,' image '),(22094,'slug',0,1,''),(22094,'title',0,1,' tri landing 18 '),(22095,'extension',0,1,' jpeg '),(22095,'filename',0,1,' tri landing 19 jpeg '),(22095,'kind',0,1,' image '),(22095,'slug',0,1,''),(22095,'title',0,1,' tri landing 19 '),(22096,'extension',0,1,' jpeg '),(22096,'filename',0,1,' tri landing 20 jpeg '),(22096,'kind',0,1,' image '),(22096,'slug',0,1,''),(22096,'title',0,1,' tri landing 20 '),(22097,'extension',0,1,' jpeg '),(22097,'filename',0,1,' tri landing 21 jpeg '),(22097,'kind',0,1,' image '),(22097,'slug',0,1,''),(22097,'title',0,1,' tri landing 21 '),(22100,'slug',0,1,''),(22101,'slug',0,1,''),(22102,'slug',0,1,''),(22103,'slug',0,1,''),(22104,'slug',0,1,''),(22105,'slug',0,1,''),(22106,'slug',0,1,''),(22107,'slug',0,1,''),(22108,'slug',0,1,''),(22109,'slug',0,1,''),(22110,'slug',0,1,''),(22111,'slug',0,1,''),(22112,'slug',0,1,''),(22113,'slug',0,1,''),(22114,'slug',0,1,''),(22115,'slug',0,1,''),(22116,'slug',0,1,''),(22117,'slug',0,1,''),(22140,'slug',0,1,''),(22141,'slug',0,1,''),(22142,'slug',0,1,''),(22143,'slug',0,1,''),(22144,'slug',0,1,''),(22145,'slug',0,1,''),(22146,'slug',0,1,''),(22147,'slug',0,1,''),(22148,'slug',0,1,''),(22149,'slug',0,1,''),(22150,'slug',0,1,''),(22151,'slug',0,1,''),(22152,'slug',0,1,''),(22153,'slug',0,1,''),(22154,'slug',0,1,''),(22155,'slug',0,1,''),(22156,'slug',0,1,''),(22157,'slug',0,1,''),(22158,'extension',0,1,' jpeg '),(22158,'filename',0,1,' 20 10 phn safe to see your gp 1 jpeg '),(22158,'kind',0,1,' image '),(22158,'slug',0,1,''),(22158,'title',0,1,' 20 10 phn safe to see your gp 1 '),(22159,'extension',0,1,' jpeg '),(22159,'filename',0,1,' 20 10 phn safe to see your gp 2 jpeg '),(22159,'kind',0,1,' image '),(22159,'slug',0,1,''),(22159,'title',0,1,' 20 10 phn safe to see your gp 2 '),(22160,'extension',0,1,' jpeg '),(22160,'filename',0,1,' 20 10 phn safe to see your gp 3 jpeg '),(22160,'kind',0,1,' image '),(22160,'slug',0,1,''),(22160,'title',0,1,' 20 10 phn safe to see your gp 3 '),(22196,'slug',0,1,''),(22197,'slug',0,1,''),(22198,'slug',0,1,''),(22199,'slug',0,1,''),(22206,'slug',0,1,''),(22207,'slug',0,1,''),(22208,'slug',0,1,''),(22209,'slug',0,1,''),(22210,'field',164,1,' our goal was to raise significant revenue before the end of the financial year with this campaign we also set out to connect with and thank previous supporters and strengthen the rural aid brand in market campaign messaging was two tiered an eofy donations appeal and a thank you both worked for existing donors people in existing databases and prospects d to ensure the greatest value for money for our client we pooled the majority of our ad spend into digital working closely with our media partner pivotus we a b tested the messaging and captured the audience with retargeting strategies we proposed a campaign based on interviews with australian farmers who had experiences with rural aid its an honest campaign of full of real people stories and emotions with covid 19 still hanging around our approach ensured we avoided potential interruptions travel restrictions and cancellation costs for our client the videos are compilations of interviews with various farmers across the spectrum of industries that are framed by a zoom screen visual device which adds layers of authenticity to the personal stories similarly the display banners and static facebook posts used the zoom imagery and visual devices all pointing people to the eofy rural aid landing page where viewers could view the full videos and choose to donate '),(22210,'slug',0,1,' rural aid '),(22210,'title',0,1,' rural aid '),(22211,'extension',0,1,' jpg '),(22211,'filename',0,1,' 6083 landing page 1920 x 1080 1 jpg '),(22211,'kind',0,1,' image '),(22211,'slug',0,1,''),(22211,'title',0,1,' 6083 landing page 1920 x 1080 1 '),(22267,'slug',0,1,''),(22268,'slug',0,1,''),(22269,'slug',0,1,''),(22270,'slug',0,1,''),(22271,'slug',0,1,''),(22280,'slug',0,1,''),(22281,'slug',0,1,''),(22282,'slug',0,1,''),(22283,'slug',0,1,''),(22297,'slug',0,1,''),(22298,'slug',0,1,''),(22299,'slug',0,1,''),(22300,'slug',0,1,''),(22301,'slug',0,1,''),(22303,'extension',0,1,' jpg '),(22303,'filename',0,1,' ruralaid fb single hr jpg '),(22303,'kind',0,1,' image '),(22303,'slug',0,1,''),(22303,'title',0,1,' rural aid fb single hr '),(22312,'slug',0,1,''),(22313,'slug',0,1,''),(22314,'slug',0,1,''),(22315,'slug',0,1,''),(22316,'slug',0,1,''),(22317,'slug',0,1,' rural aid '),(22317,'title',0,1,' rural aid '),(22327,'slug',0,1,''),(22328,'slug',0,1,''),(22329,'slug',0,1,''),(22330,'slug',0,1,''),(22331,'slug',0,1,''),(22333,'slug',0,1,''),(22334,'slug',0,1,''),(22335,'slug',0,1,''),(22336,'slug',0,1,''),(22337,'slug',0,1,''),(22376,'slug',0,1,''),(22377,'slug',0,1,''),(22378,'slug',0,1,''),(22379,'slug',0,1,''),(22380,'slug',0,1,''),(22381,'slug',0,1,''),(22382,'slug',0,1,''),(22383,'slug',0,1,''),(22384,'slug',0,1,''),(22399,'slug',0,1,''),(22400,'slug',0,1,''),(22401,'slug',0,1,''),(22402,'slug',0,1,''),(22403,'slug',0,1,''),(22404,'slug',0,1,''),(22405,'slug',0,1,''),(22406,'slug',0,1,''),(22407,'slug',0,1,''),(22421,'slug',0,1,''),(22422,'slug',0,1,''),(22423,'slug',0,1,''),(22424,'slug',0,1,''),(22425,'slug',0,1,''),(22426,'slug',0,1,''),(22427,'slug',0,1,''),(22428,'slug',0,1,''),(22429,'slug',0,1,''),(27826,'extension',0,1,' jpg '),(27826,'filename',0,1,' istock 579745094 jpg '),(27826,'kind',0,1,' image '),(27826,'slug',0,1,''),(27826,'title',0,1,' i stock 579745094 '),(28040,'field',164,1,' we can all choose to challenge and call out inequality we can all choose to seek out and celebrate womens achievements collectively we can all help create an inclusive world from challenge comes change so lets all choose to challenge the 2021 theme for international womens day is choosetochallenge we asked the women of nwo what this means for them this occurs mostly by flight attendants who take a quick glance and assume rather than just offering a friendly good morning or good evening and avoiding their own embarrassment when they realise their mistake once the same flight attendant who greeted me to the plane was so embarrassed she could barely offer me tea or coffee later in the flight its silly and avoidable and i find it quite funny and entertaining to see which way it will go for others though it can be an awful embarrassment that can easily be avoided by removing titles so this international womens day im choosing to challenge all of us to end their use im a proud female but i dont feel the need to be referred to as madame maam mademoiselle etc its old fashioned and classist and as a proud lgbti woman i am extra aware that titles can isolate and sideline not encourage and respect people for whom gender and identity has been hard won lets talk our walk lets end titles for good the older i get and the more the modern world allows us to see through the structures of society economics and politics i realise the conversation is really about finding the confidence to listen to those voices you see it every day in business tv music media and social situations that when there is a woman who stands up and says how she feels she is perceived as too much i am guilty at times of not hearing other female voices and worse than anything sometimes of not even hearing my own voice despite thinking of myself as a very headstrong intelligent and confident person i tell myself to tone it down because im being too much i want to see people rising to the challenge of actively listening to those female voices and perspectives not because they are female but because they are equal every person should be offered the same platform the same ears and the same opportunities if we choose to take them they challenged previously held societal norms at great personal and physical cost to give us the right to vote the right to marry who we like the right to choose our own careers to be independent and to move closer to gender equality the spirit of these pioneers lives on and the hard and uncomfortable work continues in many forms with each of us all of us can keep choosing to challenge each other woman to man woman to woman man to man in our everyday lives heres to the mums dads and those very special teachers who nurture our kids lead by example and challenge the next generation to grow into people who treat each other with respect patience and compassion lets keep championing and supporting each other to achieve true gender equality what kind of a profit are you making is it worth it especially if you like myself also work a full time job and the side hustle itself is almost equally as full time the questions surrounding the value of your extracurricular will frequently plague you holding the worth of something solely on whether or not its profitable can be a slippery slope of creating unattainable goals and unrealistic expectations on yourself and your business what i get out of my side hustle both professionally and personally far surpasses any financial goals its an outlet for my creativity and a way to express myself plus it helps me to be more creative in my day job the two jobs feed into each other and without either or both i would struggle to feel like myself success from my side hustle is measured in the praise of happy customers the smiles and comments i get from people who pass my stuff in the streets and the self satisfaction i get from creating something from an idea in my head to something you can physically wear or hold sure getting paid is also great and i dream of the day when it can become my full time job but for now my success is much deeper than a dollar amount this international womens day im choosing to challenge the notion that wealth equals success lets choose to open our mind to what success looks like and celebrate the amazing things were doing gen x women were born in the 70s and 80s when the ideals of having it all stable marriage perfect family lucrative work came disguised as female empowerment what crippling expectations these women defied mathematics there are only 24 hours in a day and having it all takes at least 36 they challenged the gender norms of the time and proved that in fact you can have it all because of that i dont have to be the perfect mum with the perfect kids i dont have to be married to the dreamiest spouse i dont have to cook like nigella or clean like marie kondo i dont have to climb the corporate ladder and smash through glass ceilings i certainly dont need to do all of that at the same time and because im lucky enough to work for an incredible gen x woman i dont have to work twice as hard to earn the same as my male colleague instead i get to choose my values and the kind of woman i want to be to all you gen x women who bravely went before thank you because you worked so hard to challenge i get to choose but dont mistake peace keeping for peace making peace keeping keeps factions apart with no expectation of resolution its maximum effort expended in a passive zero sum game it reinforces apathy privilege and anger me im a peace maker the very act of making peace and making peace and making peace is dynamic and potent shining a light where inequality and injustice rob people of true peace peace making drives me to lean in and bear witness to peoples stories with compassion and empathy it compels me to respond with strategies and actions that can create lasting change it urges me to have uncomfortable conversations to elicit greater understanding it impels me own my blind spots so i can grow in gentleness and in turn create even greater peace theres nothing passive about being a peace maker and peace making never ends in fact as i consider the broken world my children are now entering as young adults my peace making is only increasing in volume as is my understanding that peace is a human right and that as far as it depends on me i must give it voice and life and so i do every photo is meticulously chosen out of hundreds taken every smile critiqued and every caption drafted and redrafted anything less than perfection simply wont do i have an audience to please you see women have fought since the beginning of time to have our voices heard and taken seriously and now we have an audience theyre out for blood its the little things misusing terminology facetune gone wrong dating too many people or not enough the list goes on our audience will fault us for anything in order to discredit us the worst part often that audience is me sometimes its you its all of us women at one point or another not because we mean to but because we are trained to we are taught we must tear other women down in order to lift ourselves up when we let ourselves believe that our own success or self security or popularity or whatever validation we seek is dependent on the destruction of other women we all suffer we dont have to be perfect to be valid our voice carries weight even when it wavers '),(28040,'slug',0,1,' hear the equality stories from nwo women '),(28040,'title',0,1,' hear the equality stories from nwo women '),(28041,'extension',0,1,' jpg '),(28041,'filename',0,1,' 21 03 iwd ig bec 13 jpg '),(28041,'kind',0,1,' image '),(28041,'slug',0,1,''),(28041,'title',0,1,' 21 03 iwd ig bec 13 '),(28094,'extension',0,1,' jpg '),(28094,'filename',0,1,' esther jiao 3hqseexxypq unsplash jpg '),(28094,'kind',0,1,' image '),(28094,'slug',0,1,''),(28094,'title',0,1,' building blocks greyscale 2 '),(28097,'extension',0,1,' jpg '),(28097,'filename',0,1,' building blocks of branding jpg '),(28097,'kind',0,1,' image '),(28097,'slug',0,1,''),(28097,'title',0,1,' building blocks greyscale '),(28101,'extension',0,1,' jpg '),(28101,'filename',0,1,' school marketing jpg '),(28101,'kind',0,1,' image '),(28101,'slug',0,1,''),(28101,'title',0,1,' image of classroom with primary school students '),(30411,'slug',0,1,' hear the equality stories from nwo women '),(30411,'title',0,1,' hear the equality stories from nwo women '),(30418,'slug',0,1,' why you need a six month comms strategy for your website '),(30418,'title',0,1,' why you need a six month comms strategy for your website '),(30419,'slug',0,1,' top 20 tips for seo '),(30419,'title',0,1,' top 20 tips for seo '),(30427,'field',164,1,' coomera anglican college is heavily storied its done a lot of work to capture its history and moments as result there is a lot of heritage and tradition for a relatively young school just 25 years the college has set a strong future of innovation and entrepreneurship it has appointed a deputy principal whose whole focus is innovation it also has an exceptionally future focused business manager who is sports obsessed with big dreams our work is helping the college bridge the gap from the past to an exciting future following focus groups in depth interviews a competitor analysis and a brand refresh in 2020 we embarked on developing a new public facing campaign to help the college continue to position itself as the private school of choice for the rapidly growing northern gold coast region in order to stand out in the crowded private school space we looked outside of schools for inspiration drawing from global sports and technology brands this campaign steers right away from traditional school advertising think students standing and smiling in their school uniforms older and younger students holding hands and walking through manicured school grounds girls in safety glasses huddled over a beaker and bunsen burner the result is a powerful cinematic masterpiece dramatic inspirational and compelling the script was drawn from lyrics of the colleges traditional song paired with the inspiring footage the video effectively acknowledges the past while painting a vivid picture of the future '),(30427,'slug',0,1,' coomera anglican college '),(30427,'title',0,1,' coomera anglican college '),(30428,'slug',0,1,' coomera anglican college '),(30428,'title',0,1,' coomera anglican college '),(30433,'email',0,1,' margaret newwordorder com au '),(30433,'firstname',0,1,' margaret '),(30433,'fullname',0,1,' margaret tam '),(30433,'lastname',0,1,' tam '),(30433,'slug',0,1,''),(30433,'username',0,1,' margaret '),(30434,'extension',0,1,' jpg '),(30434,'filename',0,1,' smartcane bmp global jpg '),(30434,'kind',0,1,' image '),(30434,'slug',0,1,''),(30434,'title',0,1,' smartcane bmp sugarcane photography still '),(30436,'extension',0,1,' jpg '),(30436,'filename',0,1,' canegrowers factsheets mockup 1 jpg '),(30436,'kind',0,1,' image '),(30436,'slug',0,1,''),(30436,'title',0,1,' smartcane bmp factsheets collage '),(30438,'extension',0,1,' jpg '),(30438,'filename',0,1,' smartcane bmp website jpg '),(30438,'kind',0,1,' image '),(30438,'slug',0,1,''),(30438,'title',0,1,' smartcane bmp image of laptop displaying website '),(30441,'extension',0,1,' jpg '),(30441,'filename',0,1,' 21 coomera web 5 global jpg '),(30441,'kind',0,1,' image '),(30441,'slug',0,1,''),(30441,'title',0,1,' coomera anglican college photography still basketball action shot '),(30444,'extension',0,1,' jpg '),(30444,'filename',0,1,' 21 coomera web 1 jpg '),(30444,'kind',0,1,' image '),(30444,'slug',0,1,''),(30444,'title',0,1,' coomera anglican college academic prospectus three pages '),(30445,'extension',0,1,' jpg '),(30445,'filename',0,1,' 21 coomera web 42 jpg '),(30445,'kind',0,1,' image '),(30445,'slug',0,1,''),(30445,'title',0,1,' coomera anglican college photography stills collage garden '),(30446,'extension',0,1,' jpg '),(30446,'filename',0,1,' 21 coomera web 3 jpg '),(30446,'kind',0,1,' image '),(30446,'slug',0,1,''),(30446,'title',0,1,' coomera anglican college anything is possible sports collage '),(30447,'extension',0,1,' jpg '),(30447,'filename',0,1,' 21 coomera web 2 jpg '),(30447,'kind',0,1,' image '),(30447,'slug',0,1,''),(30447,'title',0,1,' coomera anglican college billboard '),(30448,'extension',0,1,' jpg '),(30448,'filename',0,1,' 21 coomera web 4 jpg '),(30448,'kind',0,1,' image '),(30448,'slug',0,1,''),(30448,'title',0,1,' coomera anglican college photography stills collage science '),(30449,'extension',0,1,' jpg '),(30449,'filename',0,1,' 21 coomera web 32 jpg '),(30449,'kind',0,1,' image '),(30449,'slug',0,1,''),(30449,'title',0,1,' coomera anglican college anything is possible image collage 2 '),(38121,'slug',0,1,' i can '),(38121,'title',0,1,' citipointe christian college '),(38122,'extension',0,1,' jpeg '),(38122,'filename',0,1,' ccc ican 15 jpeg '),(38122,'kind',0,1,' image '),(38122,'slug',0,1,''),(38122,'title',0,1,' citipointe christian college billboard surgery image 2 '),(38123,'extension',0,1,' jpeg '),(38123,'filename',0,1,' ccc ican 17 jpeg '),(38123,'kind',0,1,' image '),(38123,'slug',0,1,''),(38123,'title',0,1,' citipointe christian college billboard 2 '),(38125,'slug',0,1,' citipointe christian college '),(38125,'title',0,1,' citipointe christian college '),(38129,'extension',0,1,' jpeg '),(38129,'filename',0,1,' ccc ican 19 scaled jpeg '),(38129,'kind',0,1,' image '),(38129,'slug',0,1,''),(38129,'title',0,1,' citipointe christian college two photography stills before edited together 2 '),(38130,'extension',0,1,' jpeg '),(38130,'filename',0,1,' ccc ican 10 jpeg '),(38130,'kind',0,1,' image '),(38130,'slug',0,1,''),(38130,'title',0,1,' citipointe christian college design images collage 2 '),(38131,'extension',0,1,' jpeg '),(38131,'filename',0,1,' ccc ican 16 jpeg '),(38131,'kind',0,1,' image '),(38131,'slug',0,1,''),(38131,'title',0,1,' citipointe christian college bus shelter ad 2 '),(38134,'extension',0,1,' jpeg '),(38134,'filename',0,1,' ccc tour citipointe jpeg '),(38134,'kind',0,1,' image '),(38134,'slug',0,1,''),(38134,'title',0,1,' citipointe christian college tablet and mobile phones displaying website 2 '),(38149,'slug',0,1,''),(38150,'slug',0,1,''),(38151,'slug',0,1,''),(38152,'slug',0,1,''),(38153,'slug',0,1,''),(38157,'slug',0,1,' education '),(38157,'title',0,1,' education '),(38158,'slug',0,1,' professional services '),(38158,'title',0,1,' professional services '),(38159,'slug',0,1,' not for profit '),(38159,'title',0,1,' not for profit '),(38160,'slug',0,1,' health '),(38160,'title',0,1,' health '),(38161,'slug',0,1,' energy mining and technology '),(38161,'title',0,1,' energy mining and technology '),(40501,'slug',0,1,' qmhc '),(40501,'title',0,1,' queensland mental health commission '),(40504,'field',164,1,' sunshine coast heart specialists was growing and changing in six years the cardiology practice had grown to nearly 50 staff with rooms throughout the coast their cardiologists represented all of the possible sub specialties within their profession within weeks they would move to new purpose built premises at sippy downs they were about to open their own coronary ct clinic to the public and a heart murmur clinic to support gps both nation leading initiatives the directors realised their geography specific name would limit their ability to keep growing and so renaming and rebranding was a strong need their growth had also occurred at such a rate that there was strategic work needed to understand their market share and to form a marketing strategy that would offer them opportunities for segmentation growth is reliant on satisfied referring gps and specialists and so attention could never be removed from this area finally such growth was also outstripping their capacity to fill the need cardiology is a highly specialised field within medicine and to grow sustainably they needed to attract more associates the practice needed a new name and brand assets for the business to accurately convey the mission and vision of the business and to grow the businesss referrer and patient networks our brand strategy drew on customer and referrer interviews competitor insights and employee workshops which also helped to define the brand values of the business it was clear the practice and the individual directors were held in high esteem by their medical colleagues they introduced surgical procedures to the sunshine coast that were until then only practised by a few in major cities they were introducing clinics and services that had not been seen in regional areas in australia this gave us the confidence to be able to propose a tagline that truthfully boasted world class cardiac care the second part of the tagline reads on the sunshine coast to compensate for the move away from the regionalisation in their original brand name sunshine coast heart specialists we added it to the tagline the reason for this is that patients along the coast appreciated the practice was the only place where they could receive the full spectrum of care without having to travel to brisbane finally an important branding insight from our research was that patients were on a health journey sometimes quite a precarious one and could be experiencing anxiety patients told us they appreciated the kindness each doctor showed to them in their time of need simply promoting expertise could come across as cold and would not fairly represent the doctors deep commitment to quality care so the heart hq brand connects with patients on a personal level and makes them feel reassured that they matter its this mix of strategy and heart that makes heart hq a brand that will stand tall among all the others a name tagline brand visual identity website signage and countless assets that match up with heart hqs brand promise of delivering world class cardiac care on the sunshine coast the quality of the brand assets significantly differentiates heart hq from all other competitor practices creatively the brand is modern refreshing and arguably not what you would expect from an organisation in the medical field but at the same time the language is warm supportive and with just the right amount of authority suzanne and her team came highly recommended it was a great journey working with them to develop our new brand and we were very impressed with their ideas enthusiasm and innovation we have a new brand a new identity and the confidence now to deliver on our growth plans dr peter larsen managing director heart hq nwo is part of our success journey dr peter larsen managing director heart hq '),(40504,'slug',0,1,' heart hq '),(40504,'title',0,1,' heart hq '),(40506,'field',164,1,' like schools everywhere west moreton anglican college needed to change its plans to bring parents onto campus to experience the school because of the coronavirus this meant the annual open day was cancelled but a few months later when restrictions eased the school had a chance to bring parents back we developed a 16 week plan that timed out the lead up to the modified open day and follow up of leads afterwards it outlined a westmac specific brand campaign that celebrated the westmac way and positioned the school as a unique and desirable offering compared to other schools in the catchment area at the end of the day parents just want their kids to be happy healthy and well westmac is a wonderland for kids complete with an agriculture farm animals and a garden for digging because thats just what kids like doing its the school for real life this campaign included gorgeous hero photography strategic messaging and a series of videos where students talk about their westmac experience the campaign resonated with parents in the catchment and filled the tour we continued to run the campaign for the rest of the year encouraging prospective parents to attend a personal tour '),(40506,'slug',0,1,' west moreton anglican college '),(40506,'title',0,1,' west moreton anglican college '),(44837,'field',164,1,' endeavour delivers essential personalised and compassionate services to people with intellectual disabilities when the ndis was introduced it was the perfect opportunity for endeavour to show the world what their services mean to the community it serves they asked us to take their new logo and develop a complementary campaign and suite of branding tools to support it our goal was to capture the heart of endeavour foundation through storytelling and unify the foundations people and customers under one powerful vision we based our campaign strategy on one question what would make my life better the question explored endeavours objective to create a brand that could represent their customers and generate greater possibilities for their care our creative solution was to make endeavour customers the heroes endeavours new brand video is an expression of their unifying purpose to truly serve and make a meaningful difference in the lives of their customers the campaign speaks for and to the extended stakeholder community about the vision quality and outcomes of endeavours services it included brand story full visual brand development from a supplied logo hero photography brand book brand video employer brand and collateral launch campaign many powerful stories came out of this job but the most incredible was watching endeavour customers embrace the opportunity to model for our video and photography crew endeavour reported back to us the meaningful moments when their customers saw their photos for the first time since the brand and campaign launch in june 2018 endeavour has boosted their number of leads for their main service areas accommodation day services and work placements with a long term goal in mind these results are significantly greater than anticipated and only a few months since the campaign launch in addition endeavour reported to us unexpected community engagement at their events people who have no connection to intellectual disability and have not previously been involved with the foundation we look forward to following this story and discovering the full impact of our work '),(44837,'slug',0,1,' endeavour foundation '),(44837,'title',0,1,' endeavour foundation '),(44841,'field',164,1,''),(44841,'slug',0,1,' brisbane north phn website '),(44841,'title',0,1,' brisbane north phn website '),(44843,'field',164,1,' we ran focus groups with people within the target market in redlands and logan and learned their perceptions of aged care the challenges with navigating services and levels of participation in my aged care we developed a campaign strategy and creative to encourage people in the target groups to attend an information session a key element to our campaign strategy was targeting the influencer group children who often help their elderly parents to find the right support and make decisions influencers spend a lot of time using digital media particularly facebook so this formed a large part of the campaign collateral we developed '),(44843,'slug',0,1,' brisbane south phn '),(44843,'title',0,1,' brisbane south phn '),(44845,'field',164,1,' more queenslanders are renting than ever before so the department of housing and public works wanted to have open and honest conversations with renters property owners and managers about what matters and what needs to change the messaging was compelling and obvious to convince the target groups there was value in them participating in the survey to motivate the audiences we tapped into key renting issues but kept a warm and positive sentiment we developed display ads videos and static posts to build awareness and capture interest plus we used long form facebook posts to convert target group interest and inform them on the details the campaign had a total of 24 posts across two weeks reaching 1 37 million individual facebook users with more than 42 000 engagements '),(44845,'slug',0,1,' department of housing and public works '),(44845,'title',0,1,' department of housing and public works '),(44849,'field',164,1,' nwo began the rebranding process by surveying mmtds clients commonly held by all of their clients was great regard for their honesty their industry knowledge and their unbreakable commitment to exceptional customer service clients also said they wanted to get deeper insights beyond the fast and accurate data and delivery mmtd were already known for mmtd needed a new brand to drive their reputation for quality data strategic advice and superior customer experiences the brand needed to convey a clear promise well rapidly measure and pivot to maximise your media spend returns to pivot is to turn on a point and theres no better metaphor for how they pivot digital media to get the best possible results for their clients pivotus is also a call to action pivot your brand with their team because they are nimble fast and focused in a rapidly changing market '),(44849,'slug',0,1,' pivotus '),(44849,'title',0,1,' pivotus '),(44862,'slug',0,1,' department of transport and main roads '),(44862,'title',0,1,' department of transport and main roads '),(44864,'extension',0,1,' jpg '),(44864,'filename',0,1,' 21 heart hq web jpg '),(44864,'kind',0,1,' image '),(44864,'slug',0,1,''),(44864,'title',0,1,' heart hq two logos '),(44867,'extension',0,1,' jpg '),(44867,'filename',0,1,' 21 heart hq web2 jpg '),(44867,'kind',0,1,' image '),(44867,'slug',0,1,''),(44867,'title',0,1,' heart hq brochure three pages '),(44873,'extension',0,1,' jpg '),(44873,'filename',0,1,' 21 heart hq web5 jpg '),(44873,'kind',0,1,' image '),(44873,'slug',0,1,''),(44873,'title',0,1,' heart hq front desk and wall art '),(44874,'extension',0,1,' jpg '),(44874,'filename',0,1,' 21 heart hq web2 2021 09 10 015607 ecvr jpg '),(44874,'kind',0,1,' image '),(44874,'slug',0,1,''),(44874,'title',0,1,' heart hq brochure five pages with background design '),(44878,'extension',0,1,' jpg '),(44878,'filename',0,1,' 21 heart hq web3 jpg '),(44878,'kind',0,1,' image '),(44878,'slug',0,1,''),(44878,'title',0,1,' heart hq image of laptop displaying website '),(44879,'slug',0,1,' home '),(44879,'title',0,1,' home '),(44967,'slug',0,1,''),(44969,'slug',0,1,''),(44970,'slug',0,1,''),(44971,'slug',0,1,''),(44973,'slug',0,1,''),(44974,'slug',0,1,''),(44975,'slug',0,1,''),(44976,'slug',0,1,''),(44977,'slug',0,1,''),(44981,'slug',0,1,' aseeos '),(44981,'title',0,1,' aseeos '),(44983,'slug',0,1,' fopats '),(44983,'title',0,1,' fopats '),(44985,'slug',0,1,' physiotas '),(44985,'title',0,1,' physiotas '),(44987,'slug',0,1,' the school of distance education charters towers '),(44987,'title',0,1,' the school of distance education charters towers '),(44997,'slug',0,1,''),(44998,'slug',0,1,''),(44999,'slug',0,1,''),(45000,'slug',0,1,''),(45001,'slug',0,1,''),(45009,'slug',0,1,''),(45010,'slug',0,1,''),(45011,'slug',0,1,''),(45012,'slug',0,1,''),(45013,'slug',0,1,''),(45021,'slug',0,1,''),(45022,'slug',0,1,''),(45023,'slug',0,1,''),(45024,'slug',0,1,''),(45025,'slug',0,1,''),(45033,'slug',0,1,''),(45034,'slug',0,1,''),(45035,'slug',0,1,''),(45036,'slug',0,1,''),(45037,'slug',0,1,''),(45045,'slug',0,1,''),(45046,'slug',0,1,''),(45047,'slug',0,1,''),(45048,'slug',0,1,''),(45049,'slug',0,1,''),(45057,'slug',0,1,''),(45058,'slug',0,1,''),(45059,'slug',0,1,''),(45060,'slug',0,1,''),(45061,'slug',0,1,''),(45069,'slug',0,1,''),(45070,'slug',0,1,''),(45071,'slug',0,1,''),(45072,'slug',0,1,''),(45073,'slug',0,1,''),(45081,'slug',0,1,''),(45082,'slug',0,1,''),(45083,'slug',0,1,''),(45084,'slug',0,1,''),(45085,'slug',0,1,''),(45093,'slug',0,1,''),(45094,'slug',0,1,''),(45095,'slug',0,1,''),(45096,'slug',0,1,''),(45097,'slug',0,1,''),(45105,'slug',0,1,''),(45106,'slug',0,1,''),(45107,'slug',0,1,''),(45108,'slug',0,1,''),(45109,'slug',0,1,''),(45117,'slug',0,1,''),(45118,'slug',0,1,''),(45119,'slug',0,1,''),(45120,'slug',0,1,''),(45121,'slug',0,1,''),(45129,'slug',0,1,''),(45130,'slug',0,1,''),(45131,'slug',0,1,''),(45132,'slug',0,1,''),(45133,'slug',0,1,''),(45141,'slug',0,1,''),(45142,'slug',0,1,''),(45143,'slug',0,1,''),(45144,'slug',0,1,''),(45145,'slug',0,1,''),(45153,'slug',0,1,''),(45154,'slug',0,1,''),(45155,'slug',0,1,''),(45156,'slug',0,1,''),(45157,'slug',0,1,''),(45165,'slug',0,1,''),(45166,'slug',0,1,''),(45167,'slug',0,1,''),(45168,'slug',0,1,''),(45169,'slug',0,1,''),(45177,'slug',0,1,''),(45178,'slug',0,1,''),(45179,'slug',0,1,''),(45180,'slug',0,1,''),(45181,'slug',0,1,''),(45189,'slug',0,1,''),(45190,'slug',0,1,''),(45191,'slug',0,1,''),(45192,'slug',0,1,''),(45193,'slug',0,1,''),(45201,'slug',0,1,''),(45202,'slug',0,1,''),(45203,'slug',0,1,''),(45204,'slug',0,1,''),(45205,'extension',0,1,' jpg '),(45205,'filename',0,1,' 21 heart hq web6 jpg '),(45205,'kind',0,1,' image '),(45205,'slug',0,1,''),(45205,'title',0,1,' heart hq photography stills collage '),(45209,'extension',0,1,' jpg '),(45209,'filename',0,1,' 21 nspt jpg '),(45209,'kind',0,1,' image '),(45209,'slug',0,1,''),(45209,'title',0,1,' national suicide prevention trial two brochures front and back cover '),(45210,'extension',0,1,' jpg '),(45210,'filename',0,1,' 21 nspt2 jpg '),(45210,'kind',0,1,' image '),(45210,'slug',0,1,''),(45210,'title',0,1,' national suicide prevention trial brochure twelve pages 2 '),(45214,'slug',0,1,' pursuit minerals '),(45214,'title',0,1,' pursuit minerals '),(45216,'slug',0,1,' department of recreation sport and arts '),(45216,'title',0,1,' department of recreation sport and arts '),(45218,'slug',0,1,' department of housing and public works 2 '),(45218,'title',0,1,' department of housing and public works '),(45220,'slug',0,1,' queensland state archives '),(45220,'title',0,1,' queensland state archives '),(45222,'slug',0,1,' family and child connect '),(45222,'title',0,1,' family and child connect '),(45223,'email',0,1,' dave bloomasia org '),(45223,'firstname',0,1,' dave '),(45223,'fullname',0,1,' dave saxby '),(45223,'lastname',0,1,' saxby '),(45223,'slug',0,1,''),(45223,'username',0,1,' dave '),(45224,'slug',0,1,' bloom asia '),(45224,'title',0,1,' bloom asia '),(45225,'email',0,1,' emma hall bloomasia org '),(45225,'firstname',0,1,' emma '),(45225,'fullname',0,1,' emma hall '),(45225,'lastname',0,1,' hall '),(45225,'slug',0,1,''),(45225,'username',0,1,' emma '),(45226,'email',0,1,' ruth bloomasia org '),(45226,'firstname',0,1,' ruth '),(45226,'fullname',0,1,' ruth larwill '),(45226,'lastname',0,1,' larwill '),(45226,'slug',0,1,''),(45226,'username',0,1,' ruth '),(45249,'slug',0,1,''),(45251,'slug',0,1,''),(45252,'slug',0,1,''),(45253,'slug',0,1,''),(45254,'slug',0,1,''),(45255,'slug',0,1,''),(45263,'slug',0,1,''),(45264,'slug',0,1,''),(45265,'slug',0,1,''),(45266,'slug',0,1,''),(45267,'slug',0,1,''),(45275,'slug',0,1,''),(45276,'slug',0,1,''),(45277,'slug',0,1,''),(45278,'slug',0,1,''),(45279,'slug',0,1,''),(45287,'slug',0,1,''),(45288,'slug',0,1,''),(45289,'slug',0,1,''),(45290,'slug',0,1,''),(45291,'slug',0,1,''),(45298,'slug',0,1,' suzanne oxford brand audit submission 13 sep 2021 '),(45298,'title',0,1,' suzanne oxford brand audit submission 09 feb 2022 '),(45310,'slug',0,1,''),(45311,'slug',0,1,''),(45312,'slug',0,1,''),(45313,'slug',0,1,''),(45314,'slug',0,1,''),(45316,'extension',0,1,' jpg '),(45316,'filename',0,1,' 21 medical mums jpg '),(45316,'kind',0,1,' image '),(45316,'slug',0,1,''),(45316,'title',0,1,' medical mums two logos 2 '),(45317,'extension',0,1,' jpg '),(45317,'filename',0,1,' 21 medical mums5 jpg '),(45317,'kind',0,1,' image '),(45317,'slug',0,1,''),(45317,'title',0,1,' medical mums photography stills collage '),(45318,'extension',0,1,' jpg '),(45318,'filename',0,1,' 21 medical mums 2021 09 14 012111 vdfb jpg '),(45318,'kind',0,1,' image '),(45318,'slug',0,1,''),(45318,'title',0,1,' medical mums two logos '),(45319,'extension',0,1,' jpg '),(45319,'filename',0,1,' 21 medical mums2 jpg '),(45319,'kind',0,1,' image '),(45319,'slug',0,1,''),(45319,'title',0,1,' medical mums diana banner 2 '),(45320,'extension',0,1,' jpg '),(45320,'filename',0,1,' 21 medical mums3 jpg '),(45320,'kind',0,1,' image '),(45320,'slug',0,1,''),(45320,'title',0,1,' medical mums get the facts banner 2 '),(45321,'extension',0,1,' jpg '),(45321,'filename',0,1,' 21 medical mums4 jpg '),(45321,'kind',0,1,' image '),(45321,'slug',0,1,''),(45321,'title',0,1,' medical mums dad banner 2 '),(45322,'extension',0,1,' jpg '),(45322,'filename',0,1,' 21 medical mums4 2021 09 14 012257 cpve jpg '),(45322,'kind',0,1,' image '),(45322,'slug',0,1,''),(45322,'title',0,1,' medical mums dad banner '),(45323,'extension',0,1,' jpg '),(45323,'filename',0,1,' 21 medical mums3 2021 09 14 012412 cjgj jpg '),(45323,'kind',0,1,' image '),(45323,'slug',0,1,''),(45323,'title',0,1,' medical mums get the facts banner '),(45325,'extension',0,1,' jpg '),(45325,'filename',0,1,' 21 nspt2 2021 09 14 012725 ookj jpg '),(45325,'kind',0,1,' image '),(45325,'slug',0,1,''),(45325,'title',0,1,' national suicide prevention trial brochure twelve pages '),(45329,'extension',0,1,' jpg '),(45329,'filename',0,1,' 21 westmac jpg '),(45329,'kind',0,1,' image '),(45329,'slug',0,1,''),(45329,'title',0,1,' west mac bus shelter ad '),(45330,'extension',0,1,' jpg '),(45330,'filename',0,1,' 21 westmac3 jpg '),(45330,'kind',0,1,' image '),(45330,'slug',0,1,''),(45330,'title',0,1,' west mac photography stills overlap '),(45333,'extension',0,1,' jpg '),(45333,'filename',0,1,' 21 westmac4 jpg '),(45333,'kind',0,1,' image '),(45333,'slug',0,1,''),(45333,'title',0,1,' west mac photography stills collage '),(45336,'extension',0,1,' jpg '),(45336,'filename',0,1,' 21 endeavour jpg '),(45336,'kind',0,1,' image '),(45336,'slug',0,1,''),(45336,'title',0,1,' endeavour two imagine whats possible images '),(45338,'extension',0,1,' jpg '),(45338,'filename',0,1,' 21 endeavour2 jpg '),(45338,'kind',0,1,' image '),(45338,'slug',0,1,''),(45338,'title',0,1,' endeavour billboard '),(45339,'extension',0,1,' jpg '),(45339,'filename',0,1,' 21 endeavour4 jpg '),(45339,'kind',0,1,' image '),(45339,'slug',0,1,''),(45339,'title',0,1,' endeavour brand elements document with annotation '),(45340,'extension',0,1,' jpg '),(45340,'filename',0,1,' 21 endeavour3 jpg '),(45340,'kind',0,1,' image '),(45340,'slug',0,1,''),(45340,'title',0,1,' endeavour team possible posters three pages '),(45346,'slug',0,1,' emma hall brand audit submission 15 sep 2021 '),(45346,'title',0,1,' emma hall brand audit submission 28 sep 2021 '),(47639,'extension',0,1,' jpg '),(47639,'filename',0,1,' 21 revelian jpg '),(47639,'kind',0,1,' image '),(47639,'slug',0,1,''),(47639,'title',0,1,' revelian design images collage '),(47640,'extension',0,1,' jpg '),(47640,'filename',0,1,' 21 revelian2 jpg '),(47640,'kind',0,1,' image '),(47640,'slug',0,1,''),(47640,'title',0,1,' revelian brochure eight pages 2 '),(47641,'extension',0,1,' jpg '),(47641,'filename',0,1,' 21 revelian 2021 09 16 234314 uuws jpg '),(47641,'kind',0,1,' image '),(47641,'slug',0,1,''),(47641,'title',0,1,' revelian brochure eight pages '),(47642,'extension',0,1,' jpg '),(47642,'filename',0,1,' 21 revelian3 jpg '),(47642,'kind',0,1,' image '),(47642,'slug',0,1,''),(47642,'title',0,1,' revelian brand guidelines twenty slides '),(47643,'extension',0,1,' jpg '),(47643,'filename',0,1,' 21 revelian4 jpg '),(47643,'kind',0,1,' image '),(47643,'slug',0,1,''),(47643,'title',0,1,' revelian image of laptop displaying website '),(47656,'extension',0,1,' jpg '),(47656,'filename',0,1,' 21 qmhc jpg '),(47656,'kind',0,1,' image '),(47656,'slug',0,1,''),(47656,'title',0,1,' queensland mental health commission photography stills collage '),(47657,'extension',0,1,' jpg '),(47657,'filename',0,1,' 21 qmhc2 jpg '),(47657,'kind',0,1,' image '),(47657,'slug',0,1,''),(47657,'title',0,1,' queensland mental health commission insights report 2 '),(47660,'extension',0,1,' jpg '),(47660,'filename',0,1,' 21 dphw renting images jpg '),(47660,'kind',0,1,' image '),(47660,'slug',0,1,''),(47660,'title',0,1,' department of housing and public works image collage 2 '),(47661,'extension',0,1,' jpg '),(47661,'filename',0,1,' 21 dphw renting images2 jpg '),(47661,'kind',0,1,' image '),(47661,'slug',0,1,''),(47661,'title',0,1,' department of housing and public works mobile phone displaying website 2 '),(47662,'extension',0,1,' jpg '),(47662,'filename',0,1,' 21 dphw renting images3 jpg '),(47662,'kind',0,1,' image '),(47662,'slug',0,1,''),(47662,'title',0,1,' department of housing and public works image collage '),(47663,'extension',0,1,' jpg '),(47663,'filename',0,1,' 21 dphw renting images4 jpg '),(47663,'kind',0,1,' image '),(47663,'slug',0,1,''),(47663,'title',0,1,' department of housing and public works mobile phone displaying website '),(47671,'extension',0,1,' jpg '),(47671,'filename',0,1,' tri landing 1 jpg '),(47671,'kind',0,1,' image '),(47671,'slug',0,1,''),(47671,'title',0,1,' tritium logo collage 3 '),(47672,'extension',0,1,' jpg '),(47672,'filename',0,1,' tri landing 3 jpg '),(47672,'kind',0,1,' image '),(47672,'slug',0,1,''),(47672,'title',0,1,' tritium two banners cut off '),(47673,'extension',0,1,' jpg '),(47673,'filename',0,1,' tri landing 4 jpg '),(47673,'kind',0,1,' image '),(47673,'slug',0,1,''),(47673,'title',0,1,' tritium five banners cut off '),(47674,'extension',0,1,' jpg '),(47674,'filename',0,1,' tri landing 5 jpg '),(47674,'kind',0,1,' image '),(47674,'slug',0,1,''),(47674,'title',0,1,' tritium three banners cut off '),(47675,'extension',0,1,' jpg '),(47675,'filename',0,1,' tri landing 6 jpg '),(47675,'kind',0,1,' image '),(47675,'slug',0,1,''),(47675,'title',0,1,' tritium two banners close up '),(47676,'extension',0,1,' jpg '),(47676,'filename',0,1,' tri landing 7 jpg '),(47676,'kind',0,1,' image '),(47676,'slug',0,1,''),(47676,'title',0,1,' tritium concept '),(47677,'extension',0,1,' jpg '),(47677,'filename',0,1,' tri landing 14 jpg '),(47677,'kind',0,1,' image '),(47677,'slug',0,1,''),(47677,'title',0,1,' tritium first postcard '),(47678,'extension',0,1,' jpg '),(47678,'filename',0,1,' tri landing 15 jpg '),(47678,'kind',0,1,' image '),(47678,'slug',0,1,''),(47678,'title',0,1,' tritium second postcard '),(47679,'extension',0,1,' jpg '),(47679,'filename',0,1,' tri landing 16 jpg '),(47679,'kind',0,1,' image '),(47679,'slug',0,1,''),(47679,'title',0,1,' tritium data sheet two pages 3 '),(47680,'extension',0,1,' jpg '),(47680,'filename',0,1,' tri landing 17 jpg '),(47680,'kind',0,1,' image '),(47680,'slug',0,1,''),(47680,'title',0,1,' tritium brand story first four pages '),(47681,'extension',0,1,' jpg '),(47681,'filename',0,1,' tri landing 18 jpg '),(47681,'kind',0,1,' image '),(47681,'slug',0,1,''),(47681,'title',0,1,' tritium brand book six pages '),(47682,'extension',0,1,' jpg '),(47682,'filename',0,1,' tri landing 19 jpg '),(47682,'kind',0,1,' image '),(47682,'slug',0,1,''),(47682,'title',0,1,' tritium brand story '),(47683,'extension',0,1,' jpg '),(47683,'filename',0,1,' tri landing 20 jpg '),(47683,'kind',0,1,' image '),(47683,'slug',0,1,''),(47683,'title',0,1,' tritium tablet displaying website close up '),(47693,'extension',0,1,' jpg '),(47693,'filename',0,1,' 21 coomera website 3 jpg '),(47693,'kind',0,1,' image '),(47693,'slug',0,1,''),(47693,'title',0,1,' coomera anglican college anything is possible collage '),(47697,'extension',0,1,' jpg '),(47697,'filename',0,1,' 21 tritium jpg '),(47697,'kind',0,1,' image '),(47697,'slug',0,1,''),(47697,'title',0,1,' tritium logo collage 2 '),(47698,'extension',0,1,' jpg '),(47698,'filename',0,1,' 21 tritium2 jpg '),(47698,'kind',0,1,' image '),(47698,'slug',0,1,''),(47698,'title',0,1,' tritium brand guide ten pages 2 '),(47699,'extension',0,1,' jpg '),(47699,'filename',0,1,' 21 tritium3 jpg '),(47699,'kind',0,1,' image '),(47699,'slug',0,1,''),(47699,'title',0,1,' tritium logo 2 '),(47700,'extension',0,1,' jpg '),(47700,'filename',0,1,' 21 tritium4 jpg '),(47700,'kind',0,1,' image '),(47700,'slug',0,1,''),(47700,'title',0,1,' tritium five banners 2 '),(47701,'extension',0,1,' jpg '),(47701,'filename',0,1,' 21 tritium5 jpg '),(47701,'kind',0,1,' image '),(47701,'slug',0,1,''),(47701,'title',0,1,' tritium two postcards 2 '),(47702,'extension',0,1,' jpg '),(47702,'filename',0,1,' 21 tritium6 jpg '),(47702,'kind',0,1,' image '),(47702,'slug',0,1,''),(47702,'title',0,1,' tritium data sheet two pages 2 '),(47703,'extension',0,1,' jpg '),(47703,'filename',0,1,' 21 tritium7 jpg '),(47703,'kind',0,1,' image '),(47703,'slug',0,1,''),(47703,'title',0,1,' tritium tablet displaying website 3 '),(47704,'extension',0,1,' jpg '),(47704,'filename',0,1,' 21 tritium2 2021 09 21 030031 ksmz jpg '),(47704,'kind',0,1,' image '),(47704,'slug',0,1,''),(47704,'title',0,1,' tritium brand guide ten pages '),(47705,'extension',0,1,' jpg '),(47705,'filename',0,1,' 21 tritium4 2021 09 21 030053 ocnu jpg '),(47705,'kind',0,1,' image '),(47705,'slug',0,1,''),(47705,'title',0,1,' tritium five banners '),(47706,'extension',0,1,' jpg '),(47706,'filename',0,1,' 21 tritium5 2021 09 21 030109 zapq jpg '),(47706,'kind',0,1,' image '),(47706,'slug',0,1,''),(47706,'title',0,1,' tritium two postcards '),(47708,'extension',0,1,' jpg '),(47708,'filename',0,1,' 21 tritium 2021 09 21 030554 gqpp jpg '),(47708,'kind',0,1,' image '),(47708,'slug',0,1,''),(47708,'title',0,1,' tritium logo collage '),(47709,'extension',0,1,' jpg '),(47709,'filename',0,1,' 21 tritium3 2021 09 21 030610 gurv jpg '),(47709,'kind',0,1,' image '),(47709,'slug',0,1,''),(47709,'title',0,1,' tritium logo 2 '),(47710,'extension',0,1,' jpg '),(47710,'filename',0,1,' 21 tritium6 2021 09 21 030633 jtiz jpg '),(47710,'kind',0,1,' image '),(47710,'slug',0,1,''),(47710,'title',0,1,' tritium data sheet two pages '),(47712,'extension',0,1,' jpg '),(47712,'filename',0,1,' 21 tritium7 2021 09 21 030707 pdgr jpg '),(47712,'kind',0,1,' image '),(47712,'slug',0,1,''),(47712,'title',0,1,' tritium tablet displaying website 2 '),(47714,'extension',0,1,' jpg '),(47714,'filename',0,1,' 21 tritium7 2021 09 21 030847 tomi jpg '),(47714,'kind',0,1,' image '),(47714,'slug',0,1,''),(47714,'title',0,1,' tritium tablet displaying website '),(47719,'extension',0,1,' jpg '),(47719,'filename',0,1,' 21 ruralaid logo3 jpg '),(47719,'kind',0,1,' image '),(47719,'slug',0,1,''),(47719,'title',0,1,' rural aid logo '),(47723,'extension',0,1,' jpg '),(47723,'filename',0,1,' 21 quu2 jpg '),(47723,'kind',0,1,' image '),(47723,'slug',0,1,''),(47723,'title',0,1,' urban utilities poster with one u '),(47724,'extension',0,1,' jpg '),(47724,'filename',0,1,' 21 quu jpg '),(47724,'kind',0,1,' image '),(47724,'slug',0,1,''),(47724,'title',0,1,' urban utilities plain whats a no 3 poster '),(47725,'extension',0,1,' jpg '),(47725,'filename',0,1,' 21 quu3 jpg '),(47725,'kind',0,1,' image '),(47725,'slug',0,1,''),(47725,'title',0,1,' urban utilities poster reading what do u do in the loo '),(47726,'extension',0,1,' jpg '),(47726,'filename',0,1,' 21 quu4 jpg '),(47726,'kind',0,1,' image '),(47726,'slug',0,1,''),(47726,'title',0,1,' urban utilities bus ad '),(47727,'extension',0,1,' jpg '),(47727,'filename',0,1,' 21 quu6 jpg '),(47727,'kind',0,1,' image '),(47727,'slug',0,1,''),(47727,'title',0,1,' urban utilities poster with two us '),(47728,'extension',0,1,' jpg '),(47728,'filename',0,1,' 21 quu7 jpg '),(47728,'kind',0,1,' image '),(47728,'slug',0,1,''),(47728,'title',0,1,' urban utilities mobile phone displaying website '),(47729,'extension',0,1,' jpg '),(47729,'filename',0,1,' 21 quu8 jpg '),(47729,'kind',0,1,' image '),(47729,'slug',0,1,''),(47729,'title',0,1,' urban utilities wall art 2 '),(47730,'extension',0,1,' jpg '),(47730,'filename',0,1,' 21 quu5 jpg '),(47730,'kind',0,1,' image '),(47730,'slug',0,1,''),(47730,'title',0,1,' urban utilities collage of posters 2 '),(47733,'extension',0,1,' jpg '),(47733,'filename',0,1,' 21 quu5 2021 09 21 035412 nlrv jpg '),(47733,'kind',0,1,' image '),(47733,'slug',0,1,''),(47733,'title',0,1,' urban utilities collage of posters '),(47734,'extension',0,1,' jpg '),(47734,'filename',0,1,' 21 quu8 2021 09 21 035446 tafi jpg '),(47734,'kind',0,1,' image '),(47734,'slug',0,1,''),(47734,'title',0,1,' urban utilities wall art '),(47736,'extension',0,1,' jpg '),(47736,'filename',0,1,' 21 citipointe jpg '),(47736,'kind',0,1,' image '),(47736,'slug',0,1,''),(47736,'title',0,1,' citipointe christian college billboard with surgery image '),(47738,'extension',0,1,' jpg '),(47738,'filename',0,1,' 21 citipointe2 jpg '),(47738,'kind',0,1,' image '),(47738,'slug',0,1,''),(47738,'title',0,1,' citipointe christian college photography stills before edited into one image '),(47739,'extension',0,1,' jpg '),(47739,'filename',0,1,' 21 citipointe6 jpg '),(47739,'kind',0,1,' image '),(47739,'slug',0,1,''),(47739,'title',0,1,' citipointe christian college tablets and mobile phones displaying website pages '),(47740,'extension',0,1,' jpg '),(47740,'filename',0,1,' 21 citipointe4 jpg '),(47740,'kind',0,1,' image '),(47740,'slug',0,1,''),(47740,'title',0,1,' citipointe christian college billboard '),(47741,'extension',0,1,' jpg '),(47741,'filename',0,1,' 21 citipointe3 jpg '),(47741,'kind',0,1,' image '),(47741,'slug',0,1,''),(47741,'title',0,1,' citipointe christian college banner ad image collage '),(47742,'extension',0,1,' jpg '),(47742,'filename',0,1,' 21 citipointe5 jpg '),(47742,'kind',0,1,' image '),(47742,'slug',0,1,''),(47742,'title',0,1,' citipointe christian college bus shelter ad '),(47745,'extension',0,1,' jpg '),(47745,'filename',0,1,' 21 bnphn website jpg '),(47745,'kind',0,1,' image '),(47745,'slug',0,1,''),(47745,'title',0,1,' brisbane north phn photography still of child with tablet displaying the phns website 2 '),(47746,'extension',0,1,' jpg '),(47746,'filename',0,1,' 21 bnphn website2 jpg '),(47746,'kind',0,1,' image '),(47746,'slug',0,1,''),(47746,'title',0,1,' brisbane north phn tablet displaying website '),(47749,'extension',0,1,' jpg '),(47749,'filename',0,1,' 21 bsphn aged care navigator jpg '),(47749,'kind',0,1,' image '),(47749,'slug',0,1,''),(47749,'title',0,1,' brisbane south phn aged care navigator shopping banners 2 '),(47750,'extension',0,1,' jpg '),(47750,'filename',0,1,' 21 bsphn aged care navigator2 jpg '),(47750,'kind',0,1,' image '),(47750,'slug',0,1,''),(47750,'title',0,1,' brisbane south phn aged care navigator mobile phones displaying social media ads '),(47751,'extension',0,1,' jpg '),(47751,'filename',0,1,' 21 bsphn aged care navigator3 jpg '),(47751,'kind',0,1,' image '),(47751,'slug',0,1,''),(47751,'title',0,1,' brisbane south phn aged care navigator shopping banners '),(47752,'extension',0,1,' jpg '),(47752,'filename',0,1,' 21 bsphn aged care navigator4 jpg '),(47752,'kind',0,1,' image '),(47752,'slug',0,1,''),(47752,'title',0,1,' brisbane south phn tablet displaying aged care navigator website '),(47755,'extension',0,1,' jpg '),(47755,'filename',0,1,' 21 pivotus jpg '),(47755,'kind',0,1,' image '),(47755,'slug',0,1,''),(47755,'title',0,1,' pivotus logo '),(47756,'extension',0,1,' jpg '),(47756,'filename',0,1,' 21 pivotus3 jpg '),(47756,'kind',0,1,' image '),(47756,'slug',0,1,''),(47756,'title',0,1,' pivotus brochure cover and four inside pages 2 '),(47757,'extension',0,1,' jpg '),(47757,'filename',0,1,' 21 pivotus4 jpg '),(47757,'kind',0,1,' image '),(47757,'slug',0,1,''),(47757,'title',0,1,' pivotus powerpoint presentation template 2 '),(47758,'extension',0,1,' jpg '),(47758,'filename',0,1,' 21 pivotus5 jpg '),(47758,'kind',0,1,' image '),(47758,'slug',0,1,''),(47758,'title',0,1,' pivotus collage of tablets displaying website and background design 2 '),(47759,'extension',0,1,' jpg '),(47759,'filename',0,1,' 21 pivotus6 jpg '),(47759,'kind',0,1,' image '),(47759,'slug',0,1,''),(47759,'title',0,1,' pivotus brochure four design pages 2 '),(47761,'extension',0,1,' jpg '),(47761,'filename',0,1,' 21 pivotus4 2021 09 21 060151 gauz jpg '),(47761,'kind',0,1,' image '),(47761,'slug',0,1,''),(47761,'title',0,1,' pivotus powerpoint presentation template '),(47763,'extension',0,1,' jpg '),(47763,'filename',0,1,' 21 pivotus5 2021 09 21 060319 rddn jpg '),(47763,'kind',0,1,' image '),(47763,'slug',0,1,''),(47763,'title',0,1,' pivotus collage of tablets displaying website and background design '),(47764,'extension',0,1,' jpg '),(47764,'filename',0,1,' 21 pivotus6 2021 09 21 060435 tslc jpg '),(47764,'kind',0,1,' image '),(47764,'slug',0,1,''),(47764,'title',0,1,' pivotus brochure four design pages '),(47767,'extension',0,1,' jpg '),(47767,'filename',0,1,' 21 dtmr jpg '),(47767,'kind',0,1,' image '),(47767,'slug',0,1,''),(47767,'title',0,1,' department of transport and main roads how queensland travels report first twelve pages '),(47768,'extension',0,1,' jpg '),(47768,'filename',0,1,' 21 dtmr2 jpg '),(47768,'kind',0,1,' image '),(47768,'slug',0,1,''),(47768,'title',0,1,' department of transport and main roads image of tablet displaying how queensland travels report '),(47773,'extension',0,1,' jpg '),(47773,'filename',0,1,' 21 asseos jpg '),(47773,'kind',0,1,' image '),(47773,'slug',0,1,''),(47773,'title',0,1,' aseeos image of laptop displaying website '),(47990,'extension',0,1,' jpg '),(47990,'filename',0,1,' 21 pivotus1 jpg '),(47990,'kind',0,1,' image '),(47990,'slug',0,1,''),(47990,'title',0,1,' pivotus logo and design background '),(47992,'extension',0,1,' jpg '),(47992,'filename',0,1,' 21 pivotus3 2021 09 24 013559 tirx jpg '),(47992,'kind',0,1,' image '),(47992,'slug',0,1,''),(47992,'title',0,1,' pivotus brochure cover and four inside pages '),(47997,'extension',0,1,' jpg '),(47997,'filename',0,1,' 21 asseos brochure2 jpg '),(47997,'kind',0,1,' image '),(47997,'slug',0,1,''),(47997,'title',0,1,' aseeos brochure '),(48003,'field',164,1,' heres what they said as you can tell from the kinds of brands they chose your brand doesnt have to be flashy or sexy it just has to be true to itself and deliver on its promises consistently and with a bit of personality disclaimer new word order is not sponsored by or partnered with any of the mentioned brands '),(48003,'slug',0,1,' these are a few of our favourite brands '),(48003,'title',0,1,' these are a few of our favourite brands '),(48006,'extension',0,1,' png '),(48006,'filename',0,1,' brigidine college logo png '),(48006,'kind',0,1,' image '),(48006,'slug',0,1,''),(48006,'title',0,1,' brigidine college logo '),(48007,'extension',0,1,' png '),(48007,'filename',0,1,' screen shot 2021 09 24 at 2 58 39 pm png '),(48007,'kind',0,1,' image '),(48007,'slug',0,1,''),(48007,'title',0,1,' placeholder image 2 '),(48011,'field',164,1,' november picks becs pick book title the master and margarita author mikhail bulgakov find it here brees pick book title this is going to hurt author adam kay find it here jos pick book title renegades author barack obama and bruce springsteen find it here suzannes pick book title windswept and interesting author billy connolly find it here october picks a night without stars by peter f hamilton the seven husbands of evelyn hugo by taylor jenkins reid losing face by george haddad the testaments by margaret atwood the bookseller at the end of the world by ruth shaw september picks taste my life through food by stanley tucci a little life by hanya yanagihara boy swallows universe by trent dalton johnno by david malouf growing up queer in australia by benjamin law bullet train by kotaro isaka a promised land by barack obama the queen of paris a novel of coco chanel by pamela binnings ewan the life by malcolm knox thinking fast and slow by daniel kahneman hunt gather parent by michaeleen doucleff odd dog out by rob bidulph '),(48011,'slug',0,1,' nwos library '),(48011,'title',0,1,' nwos library '),(48012,'extension',0,1,' png '),(48012,'filename',0,1,' screen shot 2021 09 24 at 2 58 39 pm 2021 09 24 053947 rcdl png '),(48012,'kind',0,1,' image '),(48012,'slug',0,1,''),(48012,'title',0,1,' placeholder image '),(48017,'slug',0,1,' dave saxby brand audit submission 27 sep 2021 '),(48017,'title',0,1,' dave saxby brand audit submission 27 sep 2021 '),(48162,'extension',0,1,' jpg '),(48162,'filename',0,1,' 21 nspt global jpg '),(48162,'kind',0,1,' image '),(48162,'slug',0,1,''),(48162,'title',0,1,' national suicide prevention trial design background '),(48166,'extension',0,1,' jpg '),(48166,'filename',0,1,' 21 asseos global jpg '),(48166,'kind',0,1,' image '),(48166,'slug',0,1,''),(48166,'title',0,1,' aseeos logo '),(48171,'extension',0,1,' jpg '),(48171,'filename',0,1,' 21 asseos global 2021 09 27 023614 kppa jpg '),(48171,'kind',0,1,' image '),(48171,'slug',0,1,''),(48171,'title',0,1,' aseeos design lines with meet aseeos '),(48176,'extension',0,1,' jpg '),(48176,'filename',0,1,' 21 asseos global 2021 09 27 023815 mfld jpg '),(48176,'kind',0,1,' image '),(48176,'slug',0,1,''),(48176,'title',0,1,' aseeos design lines '),(48180,'extension',0,1,' jpg '),(48180,'filename',0,1,' 21 dtmr global jpg '),(48180,'kind',0,1,' image '),(48180,'slug',0,1,''),(48180,'title',0,1,' dtmr photography still with orange car '),(48184,'extension',0,1,' jpg '),(48184,'filename',0,1,' 21 pivotus global jpg '),(48184,'kind',0,1,' image '),(48184,'slug',0,1,''),(48184,'title',0,1,' pivotus brand design coloured shapes '),(48262,'field',164,1,' about this estimate our estimate is valid for a period of 45 days from the date of issue the following documents should be read together to understand the scope and price of our quoted services our estimate your brief if supplied these terms and conditions the estimate has been provided according to your brief to us any exclusions noted in the estimate should not be taken as exhaustive and you should assume that unless a service has been explicitly listed in the quote it is not included in the price alterations to this brief or specifications will incur further costs and we reserve the right to alter this estimate should we believe the changing scope of work falls outside of what was originally quoted it is your responsibility as the client to contact your account manager prior to approving the quote if you have queries or require clarification about any items in the quote it is also your responsibility as the client to ensure this estimate accurately reflects the scope of work you require before we begin work you must sign your approval of the estimate and if your organisation uses an ordering system provide an order number or purchase order your acceptance of our estimate includes full acceptance of the conditions and payment terms listed in these terms and conditions once quotation approval has been provided these conditions and payment terms are not negotiable we use the terms estimate and quote interchangeably and their meaning should be taken as the same a cost estimate to the value of the work required to achieve your outcomes based on information you have provided us this estimate may change in response to your project needs and if it does a new or additional quote may be required to be approved before work continues approval we use docusign for some estimates or for smaller jobs require an authorisation signature on a copy of the provided estimate your account manager will let you know the required authorisation method no work can be scheduled until we have a duly authorised estimate through docusign or your signature on an estimate beginning your project we will not schedule or begin work on your project until we receive from you all of the artwork content and other files required for the project as well as the approved estimate or a purchase order for example for an annual report this might include all finalised content graphs charts images captions financial statements and logos this saves our studio unnecessary downtime and you money we will negotiate and document exceptions where required but please be aware this may affect your costs and timeline your nwo account manager may provide you with a checklist to ensure you are aware of all material that you must provide before we begin work on your project brief usually projects within nwo are worked on according to a brief developed in consultation between you and us if you have not supplied a written brief to us we may ask you to fill out our briefing template before we create an estimate you need to check the wording of our estimate directly reflects your understanding of the work were carrying out for you if it does not please tell us and we will not begin working on the project until your concern is answered checking approval and signing off as the client you are responsible for checking your project for any errors and approving the final project when you advise us that you approve a project we take this to mean that you have checked it thoroughly for errors and that you are satisfied it has been completed to your satisfaction for complex or additional jobs we may ask you to fill in an approval form we have in place procedures and systems to ensure each of our finished projects reaches the highest possible standard of quality however from time to time errors can occur while we will do everything possible to fix the error you are responsible for checking and approving the finished project and as such any costs of repairing the error are your responsibility on some projects we may require you to provide your approval in writing before we finish work on your job or continue to publication or printing client directed alterations as much as possible we try to accommodate client input and alterations within our quotes however feedback corrections and alterations to the brief over and above those quoted will be charged as incurred any requested changes are handled through our change control procedure which is 1 any request for change must be detailed in writing including a description of the required change the rationale for the change and the effect the change will have on the project 2 your account manager will review the proposed change and determine in consultation with you if the change is within existing scope or outside the existing project scope 3 if the change is minor and within the scope of the project briefing and or budget your account manager will schedule the change to be made at an appropriate time 4 if the change is outside the scope of the existing project briefing and or budget your account manager will review the proposed change 5 your account manager will supply you with a quotation for the requested changes 6 work on the changes will be scheduled when we receive written authorisation from you for the work and the associated charges 7 charges will be invoiced to you after we have implemented the agreed changes this is how we define a single round of changes we supply the draft product you email or otherwise detail the changes and we then include those changes in our final product to you please note our preferred way of receiving changes is via a marked up pdf your account manager can help you with this if you are unsure about marking up a pdf changes beyond this scope will be charged as authors corrections please be aware that during authors corrections all staff involved in the corrections process will incur costs for you depending on your project and the corrections required this may include an account manager producer designer editor writer and so on if there is unused time left over from your estimate we will use that time to make your alterations to save you money once that amount has been exhausted however we will begin charging authors corrections and we will advise you of this by email and then in weekly cost updates you can reduce the amount of corrections by supplying approved sourced material and instructions prior to nwo commencing work seeking authority within your organisation to be the ultimate decision maker for this project advising the multiple stakeholders within your organisation of the cost of unbudgeted changes compiling all feedback into a single document for nwos use digital projects the following terms are specific to digital projects digital content entry where the estimate pertains to content entry for your digital project time has been allocated for us to input a set amount of content as defined by the estimate should more time be required it will be charged at our standard hourly rate content cannot be input until the project has been finalised and fully tested by nwo your timelines should allow content to be uploaded after completion of development and prior to final testing acceptance and completion we will conduct testing throughout the project development however you are responsible for confirming the works produced by nwo are as per the brief and fit for the purpose and function as contracted if no acceptance testing is undertaken by you the product will be deemed accepted when launched or on its first public use after acceptance alterations fixes will be charged as incurred website warranty when not otherwise specified our warranty period covers your website for 30 days from the acceptance date any issues in functionality that are brought to our attention during this period will be fixed without charge in a time frame to be negotiated with you charges will apply for any fixes outside the warranty period or changes to the website that are outside the scope of the original quotation platform and browser compatibility unless otherwise specified new word order will test the following browsers on the version current at the date of our estimate chrome edge firefox safari opera new word order is not responsible for work to update websites when new browsers are released after acceptance or if the website does not work on browsers not included in the list provided internet explorer and other deprecated browsers are not tested against and if required and possible will incur additional charges third party software if third party software is used in the delivery of your digital product unless otherwise specified the fees for the software are an annual licence fee you agree to pay ongoing charges to ensure the continued functionality of your product if you enter into a maintenance contract with us on going software licence fees will be included in the maintenance fees deadlines we pride ourselves on meeting tight deadlines and have a strong reputation with our clients for fast reliable work however if you significantly alter the brief such as change text or photos that have already been supplied and approved change website layouts or increase the volume to be produced or other circumstances occur beyond our control we may advise you of revised timelines we understand that circumstances change we schedule all work into our studios based on delivery requirements if your delivery requirements change you should inform us immediately if you are unable to meet timeframes for providing us information feedback or content we may withdraw your job from the studio until you get it to us if your project has been delayed due to the loss of a scheduling window or the late approval of the estimate or proposal we will inform you of the revised timeline if timelines are not being adhered to on your part and the project is on hold for 90 days or more we reserve the right to close the project you will be invoiced for any outstanding costs incurred up to the date of closure any overpayments will be refunded we will always advise you before doing so and will be happy to pick your project back up when you are ready to move ahead restarting a project will incur a re commencement fee which will be invoiced prior to work starting again administration and consumables expenses and administrative costs are incurred during every project these may include phone calls printing couriers proofs materials and finance and administrative work to make your project run smoothly your quote includes an estimate for these expenses calculated at 3 per cent of your total quoted amount we will advise you if these expenses will exceed the quoted amount payment terms and pre payments our invoices are to be paid within 14 days of the invoice date with longer payment terms available for negotiation before a job begins when youre a new client if youre a new client we reserve the right to invoice you 50 per cent of the total project fee before beginning work or 100 per cent if the job is under $5000 when youre an existing client if youre already a client of ours we reserve the right to invoice you 30 per cent of the total project fee before beginning work or 100 per cent if the job is under $5000 when you owe us money if payment is delayed longer than 30 days we reserve the right to withhold future and existing work until payment is made see late payment below for fees associated with late payments when were employing suppliers for you depending on the level of costs and complexity associated with your project we may choose to request a deposit of up to 50 per cent of the total cost prior to commencing your project in this case the remaining costs will be split into milestone based payments when our work forms part of a larger project we reserve the right to invoice you when our responsibility within a project has been completed not when your project has been completed in total when you order our work for your client if you have ordered our work on behalf of a third party our payment terms still apply payment is required when our work is complete not when you receive payment when you choose to make an advance payment if we agree to an advance payment all work must be completed within that financial year late payment if you do not pay us by the due date on an invoice we reserve the right to cease production on any of your projects we may also charge a late payment fee 30 60 days late 5% 60 90 days late 10% 120 days late 15% we do not offer payback schemes or loan arrangements we may engage a third party for debt recovery services of any payments which are more than 45 days overdue relevant contact details and information about outstanding payments will be provided to them to enable them to liaise directly with you for debt recovery purposes limitation of liability by commissioning our services you are agreeing that you will not hold new word order or its agents or employees liable for any incidental or consequential damages which arise from our failure to perform any aspect of the project in a timely manner regardless of whether such failure was caused by intentional or negligent acts or omissions of new word order or a third party furthermore we disclaim all implied warranties photography and images unless otherwise specified in this estimate we will charge you an additional amount if we purchase images from a stock library for your project please note that you are responsible for ensuring all of your supplied images match the specifications we give you for your project we expect you to comply with all relevant copyright and privacy laws and only supply content for which you have full authority to use we reserve the right to charge additional time to assess your photo files and improve substandard images print management and file output we have extensive experience in managing print projects when you choose us to manage your print you gain access to our experience established supplier network and exacting quality control standards from time to time our clients choose to manage print themselves in these situations we will include a file output fee to cover the cost of supplying the file and time taken to liaise with the printer will be charged as project management we hold onto current jobs for 6 months after that time your files are moved to our archive backup if you require old files from our archive a fee will be charged to locate and provide to you project management our account and project managers make sure your project stays on track this takes time and considerable effort your estimate contains a fee for project account management that covers the administrative and management hours we expect our agency will expend in delivering your project these include project meetings between you and us scheduling your work in the studios ensuring projects are delivered on time and on budget production of audio visual and print components and making sure project outcomes are in line with our requirements publicity we may use your name for the purpose of promotional activities involving the works we have carried out for you unless otherwise specified supplying material to us we undertake projects in good faith if the material you supply such as photography graphics or text do not match the expected standard set during our discussions we reserve the right to charge for the time it will take to improve or alter the material in order to use it please supply all text graphics and images in a digital format unless otherwise specified in this estimate or brief only supply material that you have the legal and ethical right to use tenders from time to time we are engaged to supply services under a preferred supplier or tender arrangement we reserve the right to withdraw from providing services after or during our appointment if changes to scope or exceptional circumstances make delivery untenable any decision will be made in consultation with the client warranty of originality new word order warrants and represents that to the best of its knowledge the work assigned hereunder is original and has not been previously published or that consent to use has been obtained on an unlimited basis that all work or portions thereof obtained through the undersigned from third parties is original or if previously published that consent to use has been obtained on an unlimited basis that new word order has full authority to make this agreement and that the work prepared by new word order does not contain any scandalous libellous or unlawful matter this warranty does not extend to any uses that the client or others may make of our product that may infringe on the rights of others the client expressly agrees that it will hold new word order harmless for all liability caused by the clients use of our product to extent such use infringes on the rights of others writing services we have extensive experience in all forms of writing and editing based on our experience we choose not to work with word files that contain multiple images or tables as these files easily corrupt during the editing process we are happy though to work with word files with the images and tables extracted redesigning the word file to include the images and tables at the end of the editing process will incur a separate fee your obligation you have sole responsibility of ensuring the suitability and availability of any trademark rights copyrights or other property rights that are intended to vest in the works that we have been commissioned to produce in accordance with your instructions intellectual property any research data concepts diagrams or illustrations remain the property of new word order any alternate intellectual property rights contained in the design or materials used in the execution of this project including artwork and computer generated instructions and information remain with new word order you warrant that you hold all necessary intellectual property rights in any document or material including but not limited to plans and drawings that are supplied to new word order for its provision of goods and services and that there is or will be no infringement of any rights or entitlements held by any third party you also indemnify and hold harmless new word order for any claims made against it arising from new word orders use of any drawings design or any other document material or information provided by you the client you warrant that all designs or instructions to new word order will not cause new word order to infringe any patent registered design or trademark in the execution of the client orders termination new word order may refuse to enter into this contract or terminate any existing arrangements without prejudice if we find our core values are at odds with yours our core values put people at the centre of everything we do we do not condone discrimination of any kind nor do we condone violations of human rights we also may terminate a contract if invoices are unpaid see payment terms and pre payments or if you become insolvent changes to terms and conditions from time to time we may make changes to these terms and conditions any changes unless otherwise notified will come into effect on your next project with us '),(48262,'slug',0,1,' terms and conditions '),(48262,'title',0,1,' terms and conditions '),(48358,'extension',0,1,' jpg '),(48358,'filename',0,1,' 21 blog behaviour change jpg '),(48358,'kind',0,1,' image '),(48358,'slug',0,1,''),(48358,'title',0,1,' coloured blocks design '),(48362,'extension',0,1,' jpg '),(48362,'filename',0,1,' 21 blog behaviour change 2021 09 27 063940 ccrm jpg '),(48362,'kind',0,1,' image '),(48362,'slug',0,1,''),(48362,'title',0,1,' illustration reading time for a change with yes no buttons '),(48366,'extension',0,1,' jpg '),(48366,'filename',0,1,' 21 blog brand loyalty jpg '),(48366,'kind',0,1,' image '),(48366,'slug',0,1,''),(48366,'title',0,1,' illustration of rm boots and vegemite '),(48411,'slug',0,1,' top 20 tips for seo '),(48411,'title',0,1,' top 20 tips for seo '),(48413,'extension',0,1,' jpg '),(48413,'filename',0,1,' seo jpg '),(48413,'kind',0,1,' image '),(48413,'slug',0,1,''),(48413,'title',0,1,' seo illustration of people using google search '),(48414,'extension',0,1,' jpg '),(48414,'filename',0,1,' seo 2021 09 27 235336 kuwi jpg '),(48414,'kind',0,1,' image '),(48414,'slug',0,1,''),(48414,'title',0,1,' seo illustration of people using google search 2 '),(48417,'slug',0,1,' ruth larwill brand audit submission 28 sep 2021 '),(48417,'title',0,1,' ruth larwill brand audit submission 28 sep 2021 '),(48452,'extension',0,1,' jpg '),(48452,'filename',0,1,' 21 dphw renting images global jpg '),(48452,'kind',0,1,' image '),(48452,'slug',0,1,''),(48452,'title',0,1,' department of housing and public works photography still of front door mat '),(48474,'extension',0,1,' jpg '),(48474,'filename',0,1,' 21 bsphn poster1 global jpg '),(48474,'kind',0,1,' image '),(48474,'slug',0,1,''),(48474,'title',0,1,' brisbane south phn shopping banner 2 '),(48476,'extension',0,1,' jpg '),(48476,'filename',0,1,' 21 bsphn poster1 global 2021 09 28 072836 skos jpg '),(48476,'kind',0,1,' image '),(48476,'slug',0,1,''),(48476,'title',0,1,' brisbane south phn shopping banner '),(48532,'extension',0,1,' jpg '),(48532,'filename',0,1,' 21 bnphn global jpg '),(48532,'kind',0,1,' image '),(48532,'slug',0,1,''),(48532,'title',0,1,' brisbane north phn photography still of child with tablet displaying the phns website '),(48535,'extension',0,1,' jpg '),(48535,'filename',0,1,' 21 endeavour global jpg '),(48535,'kind',0,1,' image '),(48535,'slug',0,1,''),(48535,'title',0,1,' endeavour foundation imagine whats possible photography still '),(48538,'extension',0,1,' jpg '),(48538,'filename',0,1,' 21 westmac global jpg '),(48538,'kind',0,1,' image '),(48538,'slug',0,1,''),(48538,'title',0,1,' west mac photography still of basketball students '),(48541,'extension',0,1,' jpg '),(48541,'filename',0,1,' qmhc global jpg '),(48541,'kind',0,1,' image '),(48541,'slug',0,1,''),(48541,'title',0,1,' qmhc insights report booklet '),(48545,'extension',0,1,' jpg '),(48545,'filename',0,1,' 21 tritium global jpg '),(48545,'kind',0,1,' image '),(48545,'slug',0,1,''),(48545,'title',0,1,' tritium logo '),(48548,'extension',0,1,' gif '),(48548,'filename',0,1,' 21 retireaustralia verge shopping ban 1 gif '),(48548,'kind',0,1,' image '),(48548,'slug',0,1,''),(48548,'title',0,1,' retire australia verge shopping banner '),(48550,'extension',0,1,' jpg '),(48550,'filename',0,1,' 21 retireaustralia global jpg '),(48550,'kind',0,1,' image '),(48550,'slug',0,1,''),(48550,'title',0,1,' retire australia photography still of couple walking through neighbourhood '),(48554,'extension',0,1,' jpg '),(48554,'filename',0,1,' 21 retireaustralia jpg '),(48554,'kind',0,1,' image '),(48554,'slug',0,1,''),(48554,'title',0,1,' retire australia photography stills collage '),(48555,'extension',0,1,' jpg '),(48555,'filename',0,1,' 21 retireaustralia2 jpg '),(48555,'kind',0,1,' image '),(48555,'slug',0,1,''),(48555,'title',0,1,' retire australia billboard '),(48556,'extension',0,1,' jpg '),(48556,'filename',0,1,' 21 retireaustralia3 jpg '),(48556,'kind',0,1,' image '),(48556,'slug',0,1,''),(48556,'title',0,1,' retire australia newspaper ad '),(48557,'extension',0,1,' jpg '),(48557,'filename',0,1,' 21 retireaustralia4 jpg '),(48557,'kind',0,1,' image '),(48557,'slug',0,1,''),(48557,'title',0,1,' retire australia booklet covers 2 '),(48558,'extension',0,1,' jpg '),(48558,'filename',0,1,' 21 retireaustralia6 jpg '),(48558,'kind',0,1,' image '),(48558,'slug',0,1,''),(48558,'title',0,1,' retire australia website design alternative '),(48559,'extension',0,1,' jpg '),(48559,'filename',0,1,' 21 retireaustralia5 jpg '),(48559,'kind',0,1,' image '),(48559,'slug',0,1,''),(48559,'title',0,1,' retire australia booklet design alternative '),(48562,'extension',0,1,' jpg '),(48562,'filename',0,1,' 21 retireaustralia4 2021 09 30 060203 byhf jpg '),(48562,'kind',0,1,' image '),(48562,'slug',0,1,''),(48562,'title',0,1,' retire australia booklet covers '),(48563,'extension',0,1,' jpg '),(48563,'filename',0,1,' 21 retireaustralia6 2021 09 30 060224 ixbi jpg '),(48563,'kind',0,1,' image '),(48563,'slug',0,1,''),(48563,'title',0,1,' retire australia website design '),(48564,'extension',0,1,' jpg '),(48564,'filename',0,1,' 21 retireaustralia5 2021 09 30 060606 unpf jpg '),(48564,'kind',0,1,' image '),(48564,'slug',0,1,''),(48564,'title',0,1,' retire australia booklet design '),(51531,'slug',0,1,''),(58762,'field',164,1,' as part of our regular brand review process we decided our old identity didnt have the strength of character our current brand embodies a lot has changed in the past few years our market shifted and we shifted with it we used our proven brand methodology on ourselves our unique methodology is about knowing our context opinions pain points and applying insights adding to this our business strategy to which our brand strategy must align and were dressed and messaged for success we laid out where our brand is currently and the story that led us here we spoke to our stakeholders to understand how they view and interact with our brand and their perspective on what needed to change we learned where our business sits among others in brisbane around australia and the world we documented the story of our brand as a central narrative so anyone within or connected to our business could access one source of truth we created a new logo and other branding elements that tell our story in multiple layers we defined and documented our new way of writing speaking and the key messages we want to communicate there is power in gathering insights applying a proven methodology of insights development and planning a strategic way forward our brand informs and impacts every aspect of new word order and gives us a clear direction that challenges the usual way of doing things and ensures anyone who comes into contact with our business knows what we offer and how we will solve their problems this process is what we do for our clients every day what we do for ourselves and wed like to do this for you too start the conversation with us and discover how a fresh brand will breathe new life into your business our new typeface is bolder stronger and positively dripping with character check out the ns ws and rs in our font neue machina the monospace and geometric type features with deep ink traps in the heavier weights we love it because of its versatility clean and minimalist in the lighter weights but the heavier weights are bold in more ways than one deep ink traps in heavier weights overshot terminals rounded corners monospace like features were also intent on re establishing our roots in the power of the written word a subtle way were doing this is using words over icons as an example see how we used the word menu instead of a hamburger our brand colours are mostly black and white with pops of red green and blue the colours are the basics in the digital environment rgb this is our primary palette we bring strategy and creativity to form something entirely new and entirely what our clients need to solve their problems and unlock their potential the main reason were keeping our brand so pared back is because we want our creative portfolio to sing are you loving the immersive full screen hover state feature as much as we are we wanted our brand to allow for such experiences as this '),(58762,'slug',0,1,' new word order '),(58762,'title',0,1,' new word order '),(58764,'slug',0,1,''),(58764,'title',0,1,' 2021 10 11 10 12 29 '),(61819,'extension',0,1,' jpg '),(61819,'filename',0,1,' tri comp 6 v2 jpg '),(61819,'kind',0,1,' image '),(61819,'slug',0,1,''),(61819,'title',0,1,' tri comp 6 v2 '),(61823,'extension',0,1,' jpg '),(61823,'filename',0,1,' no3 home jpg '),(61823,'kind',0,1,' image '),(61823,'slug',0,1,''),(61823,'title',0,1,' no3 home '),(61826,'extension',0,1,' jpg '),(61826,'filename',0,1,' heart hq jpg '),(61826,'kind',0,1,' image '),(61826,'slug',0,1,''),(61826,'title',0,1,' heart hq '),(61829,'extension',0,1,' jpg '),(61829,'filename',0,1,' quu ekka toilet 3 jpg '),(61829,'kind',0,1,' image '),(61829,'slug',0,1,''),(61829,'title',0,1,' quu ekka toilet 3 '),(61830,'extension',0,1,' jpg '),(61830,'filename',0,1,' quu ekka toilet 8 jpg '),(61830,'kind',0,1,' image '),(61830,'slug',0,1,''),(61830,'title',0,1,' quu ekka toilet 8 '),(61834,'extension',0,1,' jpg '),(61834,'filename',0,1,' tritium 1 jpg '),(61834,'kind',0,1,' image '),(61834,'slug',0,1,''),(61834,'title',0,1,' tritium 1 '),(61835,'extension',0,1,' jpg '),(61835,'filename',0,1,' tritium 2 jpg '),(61835,'kind',0,1,' image '),(61835,'slug',0,1,''),(61835,'title',0,1,' tritium 2 '),(61836,'extension',0,1,' jpg '),(61836,'filename',0,1,' tritium 3 jpg '),(61836,'kind',0,1,' image '),(61836,'slug',0,1,''),(61836,'title',0,1,' tritium 3 '),(61837,'extension',0,1,' jpg '),(61837,'filename',0,1,' tritium 4 jpg '),(61837,'kind',0,1,' image '),(61837,'slug',0,1,''),(61837,'title',0,1,' tritium 4 '),(61838,'extension',0,1,' jpg '),(61838,'filename',0,1,' tritium 5 jpg '),(61838,'kind',0,1,' image '),(61838,'slug',0,1,''),(61838,'title',0,1,' tritium 5 '),(61839,'extension',0,1,' jpg '),(61839,'filename',0,1,' tritium 6 jpg '),(61839,'kind',0,1,' image '),(61839,'slug',0,1,''),(61839,'title',0,1,' tritium 6 '),(61840,'extension',0,1,' jpg '),(61840,'filename',0,1,' tritium 7 jpg '),(61840,'kind',0,1,' image '),(61840,'slug',0,1,''),(61840,'title',0,1,' tritium 7 '),(61841,'extension',0,1,' jpg '),(61841,'filename',0,1,' tritium 8 jpg '),(61841,'kind',0,1,' image '),(61841,'slug',0,1,''),(61841,'title',0,1,' tritium 8 '),(61842,'extension',0,1,' jpg '),(61842,'filename',0,1,' tritium 9 jpg '),(61842,'kind',0,1,' image '),(61842,'slug',0,1,''),(61842,'title',0,1,' tritium 9 '),(61843,'extension',0,1,' jpg '),(61843,'filename',0,1,' tritium website jpg '),(61843,'kind',0,1,' image '),(61843,'slug',0,1,''),(61843,'title',0,1,' tritium website '),(61847,'extension',0,1,' jpg '),(61847,'filename',0,1,' tri comp 9 jpg '),(61847,'kind',0,1,' image '),(61847,'slug',0,1,''),(61847,'title',0,1,' tri comp 9 '),(61851,'extension',0,1,' jpg '),(61851,'filename',0,1,' tritium 5000 jpg '),(61851,'kind',0,1,' image '),(61851,'slug',0,1,''),(61851,'title',0,1,' tritium 5000 '),(73935,'extension',0,1,' jpg '),(73935,'filename',0,1,' 21 tritium7 2021 10 20 033816 izqz jpg '),(73935,'kind',0,1,' image '),(73935,'slug',0,1,''),(73935,'title',0,1,' 21 tritium7 '),(73936,'extension',0,1,' jpg '),(73936,'filename',0,1,' 21 tritium6 2021 10 20 033858 dfmf jpg '),(73936,'kind',0,1,' image '),(73936,'slug',0,1,''),(73936,'title',0,1,' 21 tritium6 '),(73937,'extension',0,1,' jpg '),(73937,'filename',0,1,' 21 tritium5 2021 10 20 033925 nmqg jpg '),(73937,'kind',0,1,' image '),(73937,'slug',0,1,''),(73937,'title',0,1,' 21 tritium5 '),(73938,'extension',0,1,' jpg '),(73938,'filename',0,1,' 21 tritium4 2021 10 20 033949 apun jpg '),(73938,'kind',0,1,' image '),(73938,'slug',0,1,''),(73938,'title',0,1,' 21 tritium4 '),(73939,'extension',0,1,' jpg '),(73939,'filename',0,1,' 21 tritium3 2021 10 20 034006 fbfv jpg '),(73939,'kind',0,1,' image '),(73939,'slug',0,1,''),(73939,'title',0,1,' 21 tritium3 '),(73940,'extension',0,1,' jpg '),(73940,'filename',0,1,' 21 tritium2 2021 10 20 034026 uadw jpg '),(73940,'kind',0,1,' image '),(73940,'slug',0,1,''),(73940,'title',0,1,' 21 tritium2 '),(73941,'extension',0,1,' jpg '),(73941,'filename',0,1,' 21 tritium 2021 10 20 034044 phty jpg '),(73941,'kind',0,1,' image '),(73941,'slug',0,1,''),(73941,'title',0,1,' 21 tritium '),(73947,'extension',0,1,' jpg '),(73947,'filename',0,1,' 21 tritium 111 jpg '),(73947,'kind',0,1,' image '),(73947,'slug',0,1,''),(73947,'title',0,1,' 21 tritium 111 '),(74033,'slug',0,1,''),(74033,'title',0,1,' 2021 11 09 09 27 12 '),(74034,'extension',0,1,' jpg '),(74034,'filename',0,1,' andrew col 23 jpg '),(74034,'kind',0,1,' image '),(74034,'slug',0,1,''),(74034,'title',0,1,' andrew '),(74035,'extension',0,1,' jpg '),(74035,'filename',0,1,' bree col 23 jpg '),(74035,'kind',0,1,' image '),(74035,'slug',0,1,''),(74035,'title',0,1,' bree '),(74037,'extension',0,1,' jpg '),(74037,'filename',0,1,' bruce col 23 jpg '),(74037,'kind',0,1,' image '),(74037,'slug',0,1,''),(74037,'title',0,1,' bruce '),(74039,'extension',0,1,' jpg '),(74039,'filename',0,1,' jo col 23 jpg '),(74039,'kind',0,1,' image '),(74039,'slug',0,1,''),(74039,'title',0,1,' jo '),(74042,'extension',0,1,' jpg '),(74042,'filename',0,1,' kimi col 23 jpg '),(74042,'kind',0,1,' image '),(74042,'slug',0,1,''),(74042,'title',0,1,' kimi '),(74043,'extension',0,1,' jpg '),(74043,'filename',0,1,' liam col 23 jpg '),(74043,'kind',0,1,' image '),(74043,'slug',0,1,''),(74043,'title',0,1,' liam '),(74044,'extension',0,1,' jpg '),(74044,'filename',0,1,' margaret col 23 jpg '),(74044,'kind',0,1,' image '),(74044,'slug',0,1,''),(74044,'title',0,1,' margaret '),(74045,'extension',0,1,' jpg '),(74045,'filename',0,1,' bec col 23 jpg '),(74045,'kind',0,1,' image '),(74045,'slug',0,1,''),(74045,'title',0,1,' bec '),(74047,'extension',0,1,' jpg '),(74047,'filename',0,1,' scott col 23 jpg '),(74047,'kind',0,1,' image '),(74047,'slug',0,1,''),(74047,'title',0,1,' scott '),(74049,'extension',0,1,' jpg '),(74049,'filename',0,1,' suz col 23 jpg '),(74049,'kind',0,1,' image '),(74049,'slug',0,1,''),(74049,'title',0,1,' suzanne 2 '),(74050,'extension',0,1,' jpg '),(74050,'filename',0,1,' tim col 23 jpg '),(74050,'kind',0,1,' image '),(74050,'slug',0,1,''),(74050,'title',0,1,' tim '),(74051,'slug',0,1,''),(74061,'slug',0,1,''),(74061,'title',0,1,' 2021 11 09 11 00 28 '),(74084,'slug',0,1,''),(74084,'title',0,1,' 2021 11 09 11 27 07 '),(74105,'extension',0,1,' svg '),(74105,'filename',0,1,' logo black svg '),(74105,'kind',0,1,' image '),(74105,'slug',0,1,''),(74105,'title',0,1,' logo black '),(74150,'slug',0,1,''),(74150,'title',0,1,' 2021 11 09 13 57 36 '),(74156,'extension',0,1,' jpg '),(74156,'filename',0,1,' kerry col 23 jpg '),(74156,'kind',0,1,' image '),(74156,'slug',0,1,''),(74156,'title',0,1,' kerry updated '),(74157,'slug',0,1,''),(74157,'title',0,1,' 2021 11 09 21 55 32 '),(74158,'slug',0,1,''),(74158,'title',0,1,' 2021 11 09 22 03 12 '),(74159,'slug',0,1,''),(74159,'title',0,1,' 2021 11 10 04 04 07 '),(74160,'slug',0,1,''),(74160,'title',0,1,' 2021 11 10 04 45 31 '),(74161,'slug',0,1,''),(74161,'title',0,1,' 2021 11 10 05 28 44 '),(74162,'slug',0,1,' update details '),(74162,'title',0,1,' update details '),(74168,'slug',0,1,' nspt '),(74168,'title',0,1,' brisbane north phn nspt '),(74275,'slug',0,1,' update details '),(74275,'title',0,1,' update details '),(74276,'slug',0,1,' email sigs '),(74276,'title',0,1,' email sigs '),(74279,'extension',0,1,' gif '),(74279,'filename',0,1,' email sig gif '),(74279,'kind',0,1,' image '),(74279,'slug',0,1,''),(74279,'title',0,1,' email sig '),(74286,'slug',0,1,' privacy policy '),(74286,'title',0,1,' privacy policy '),(74300,'extension',0,1,' pdf '),(74300,'filename',0,1,' nwo casestudy ycn pdf '),(74300,'kind',0,1,' pdf '),(74300,'slug',0,1,''),(74300,'title',0,1,' nwo casestudy ycn '),(74301,'extension',0,1,' pdf '),(74301,'filename',0,1,' nwo casestudy hearthq pdf '),(74301,'kind',0,1,' pdf '),(74301,'slug',0,1,''),(74301,'title',0,1,' nwo casestudy hearthq '),(74302,'extension',0,1,' pdf '),(74302,'filename',0,1,' nwo casestudy dfv pdf '),(74302,'kind',0,1,' pdf '),(74302,'slug',0,1,''),(74302,'title',0,1,' nwo casestudy dfv '),(84909,'extension',0,1,' png '),(84909,'filename',0,1,' nwo email christmas png '),(84909,'kind',0,1,' image '),(84909,'slug',0,1,''),(84909,'title',0,1,' nwo email christmas '),(84923,'extension',0,1,' png '),(84923,'filename',0,1,' nwo email christmas 21 png '),(84923,'kind',0,1,' image '),(84923,'slug',0,1,''),(84923,'title',0,1,' nwo email christmas 21 '),(84926,'slug',0,1,''),(84926,'title',0,1,' 2021 12 03 14 28 57 '),(87584,'extension',0,1,' gif '),(87584,'filename',0,1,' mock up gif1 gif '),(87584,'kind',0,1,' image '),(87584,'slug',0,1,''),(87584,'title',0,1,' mock up gif1 '),(87592,'extension',0,1,' jpg '),(87592,'filename',0,1,' nwo recipe web tiles jpg '),(87592,'kind',0,1,' image '),(87592,'slug',0,1,''),(87592,'title',0,1,' nwo recipe web tiles '),(87594,'extension',0,1,' jpg '),(87594,'filename',0,1,' nwo recipe web tiles 2021 12 10 002443 mffa jpg '),(87594,'kind',0,1,' image '),(87594,'slug',0,1,''),(87594,'title',0,1,' nwo recipe web tiles '),(87595,'extension',0,1,' jpg '),(87595,'filename',0,1,' nwo recipe web tiles2 jpg '),(87595,'kind',0,1,' image '),(87595,'slug',0,1,''),(87595,'title',0,1,' nwo recipe web tiles2 '),(87596,'extension',0,1,' jpg '),(87596,'filename',0,1,' nwo recipe web tiles3 jpg '),(87596,'kind',0,1,' image '),(87596,'slug',0,1,''),(87596,'title',0,1,' nwo recipe web tiles3 '),(87597,'extension',0,1,' jpg '),(87597,'filename',0,1,' nwo recipe web tiles4 jpg '),(87597,'kind',0,1,' image '),(87597,'slug',0,1,''),(87597,'title',0,1,' nwo recipe web tiles4 '),(87599,'extension',0,1,' jpg '),(87599,'filename',0,1,' nwo recipe web tiles52 jpg '),(87599,'kind',0,1,' image '),(87599,'slug',0,1,''),(87599,'title',0,1,' nwo recipe web tiles52 '),(87601,'extension',0,1,' jpg '),(87601,'filename',0,1,' nwo recipe web tiles5 jpg '),(87601,'kind',0,1,' image '),(87601,'slug',0,1,''),(87601,'title',0,1,' nwo recipe web tiles5 '),(87602,'extension',0,1,' jpg '),(87602,'filename',0,1,' nwo recipe web tiles52 2021 12 10 003525 aywz jpg '),(87602,'kind',0,1,' image '),(87602,'slug',0,1,''),(87602,'title',0,1,' nwo recipe web tiles52 '),(87607,'extension',0,1,' csv '),(87607,'filename',0,1,' entries csv '),(87607,'kind',0,1,' unknown '),(87607,'slug',0,1,''),(87607,'title',0,1,' entries '),(87608,'slug',0,1,' christmas 2021 '),(87608,'title',0,1,' christmas 2021 '),(87622,'extension',0,1,' pdf '),(87622,'filename',0,1,' 2021 necessities for christmas festivities vol2 pdf '),(87622,'kind',0,1,' pdf '),(87622,'slug',0,1,''),(87622,'title',0,1,' 2021 necessities for christmas festivities vol2 '),(87633,'slug',0,1,''),(87633,'title',0,1,' 2021 12 13 07 21 50 '),(94201,'slug',0,1,' new word order '),(94201,'title',0,1,' new word order '),(94202,'extension',0,1,' gif '),(94202,'filename',0,1,' nworebrand v03 gif 16x9 1080 gif '),(94202,'kind',0,1,' image '),(94202,'slug',0,1,''),(94202,'title',0,1,' nw orebrand v03 gif 16x9 1080 '),(94203,'extension',0,1,' jpg '),(94203,'filename',0,1,' 21 nwo type 1 jpg '),(94203,'kind',0,1,' image '),(94203,'slug',0,1,''),(94203,'title',0,1,' 21 nwo type 1 '),(94204,'slug',0,1,''),(94204,'title',0,1,' 2021 12 21 21 28 31 '),(94209,'extension',0,1,' jpg '),(94209,'filename',0,1,' nwo business card mockup jpg '),(94209,'kind',0,1,' image '),(94209,'slug',0,1,''),(94209,'title',0,1,' nwo business card mockup '),(94210,'extension',0,1,' jpg '),(94210,'filename',0,1,' nwo brand 1 jpg '),(94210,'kind',0,1,' image '),(94210,'slug',0,1,''),(94210,'title',0,1,' nwo brand 1 '),(94211,'extension',0,1,' jpg '),(94211,'filename',0,1,' nwo brand 2 jpg '),(94211,'kind',0,1,' image '),(94211,'slug',0,1,''),(94211,'title',0,1,' nwo brand 2 '),(94212,'extension',0,1,' jpg '),(94212,'filename',0,1,' nwo brand 3 jpg '),(94212,'kind',0,1,' image '),(94212,'slug',0,1,''),(94212,'title',0,1,' nwo brand 3 '),(94213,'extension',0,1,' jpg '),(94213,'filename',0,1,' nwo brand 4 jpg '),(94213,'kind',0,1,' image '),(94213,'slug',0,1,''),(94213,'title',0,1,' nwo brand 4 '),(94214,'extension',0,1,' jpg '),(94214,'filename',0,1,' nwo brand 5 jpg '),(94214,'kind',0,1,' image '),(94214,'slug',0,1,''),(94214,'title',0,1,' nwo brand 5 '),(94215,'extension',0,1,' jpg '),(94215,'filename',0,1,' nwo brand 6 jpg '),(94215,'kind',0,1,' image '),(94215,'slug',0,1,''),(94215,'title',0,1,' nwo brand 6 '),(94216,'extension',0,1,' jpg '),(94216,'filename',0,1,' nwo brand 7 jpg '),(94216,'kind',0,1,' image '),(94216,'slug',0,1,''),(94216,'title',0,1,' nwo brand 7 '),(94220,'extension',0,1,' jpg '),(94220,'filename',0,1,' nwo casestudy mockup jpg '),(94220,'kind',0,1,' image '),(94220,'slug',0,1,''),(94220,'title',0,1,' nwo case study mockup '),(94221,'extension',0,1,' jpg '),(94221,'filename',0,1,' nwo website mockup jpg '),(94221,'kind',0,1,' image '),(94221,'slug',0,1,''),(94221,'title',0,1,' nwo website mockup '),(94223,'slug',0,1,' bruce connell brand audit submission 17 jan 2022 '),(94223,'title',0,1,' bruce connell brand audit submission 17 jan 2022 '),(97259,'email',0,1,' marnie newwordorder com au '),(97259,'firstname',0,1,' marnie '),(97259,'fullname',0,1,' marnie vaughn '),(97259,'lastname',0,1,' vaughn '),(97259,'slug',0,1,''),(97259,'username',0,1,' marnie '),(97260,'slug',0,1,''),(97261,'slug',0,1,''),(97262,'slug',0,1,''),(97263,'slug',0,1,''),(97264,'slug',0,1,''),(97266,'extension',0,1,' jpg '),(97266,'filename',0,1,' marnie col 23 jpg '),(97266,'kind',0,1,' image '),(97266,'slug',0,1,''),(97266,'title',0,1,' screen shot 2022 01 20 at 1 48 11 pm '),(97271,'slug',0,1,''),(97271,'title',0,1,' 2022 01 24 23 36 48 '),(97276,'slug',0,1,' new word order '),(97276,'title',0,1,' new word order '),(97284,'slug',0,1,' new word order '),(97284,'title',0,1,' new word order '),(97388,'slug',0,1,''),(99458,'extension',0,1,' pdf '),(99458,'filename',0,1,' 6063 qsa pres 3 1 pdf '),(99458,'kind',0,1,' pdf '),(99458,'slug',0,1,''),(99458,'title',0,1,' 6063 qsa pres 3 1 '),(103511,'slug',0,1,''),(103511,'title',0,1,' 2022 02 09 15 30 08 '),(106869,'extension',0,1,' pdf '),(106869,'filename',0,1,' 6228 chevron roadhouse concepts 3cc pdf '),(106869,'kind',0,1,' pdf '),(106869,'slug',0,1,''),(106869,'title',0,1,' 6228 chevron roadhouse concepts 3 cc '),(106870,'extension',0,1,' pdf '),(106870,'filename',0,1,' 8010 chevron coffeeplus concepts 3cc pdf '),(106870,'kind',0,1,' pdf '),(106870,'slug',0,1,''),(106870,'title',0,1,' 8010 chevron coffee plus concepts 3 cc '),(106871,'slug',0,1,''),(106871,'title',0,1,' 2022 02 11 12 00 18 '),(106872,'slug',0,1,''),(106872,'title',0,1,' 2022 02 11 12 33 40 '),(123478,'slug',0,1,''),(123478,'title',0,1,' 2022 02 23 13 58 43 '),(139963,'extension',0,1,' docx '),(139963,'filename',0,1,' new tcs final 2 docx '),(139963,'kind',0,1,' word '),(139963,'slug',0,1,''),(139963,'title',0,1,' new t cs final '),(139967,'field',164,1,' the qas talent identification campaign is aimed at queenslander athletes aged between 13 and 23 its the first step in a development journey for an aspiring athlete to becoming an elite olympic level athlete ready to compete on the world stage in their own backyard our goal was to build awareness of the campaign and drive as many potential athletes as possible to apply we know the talent identification process for an athlete and all the development that follows is an inspiring aspirational and immensely personal journey and we wanted the campaigns language to reflect each of those aspects of the journey visually we recognised that the traditional medal colours wouldnt necessarily display well and could be limiting so we chose to update them to create a much brighter target audience friendly colour palette after creating the campaign name tagline and logo we reinforced the theme with a digital platform and marketing collateral we developed an online application platform designed to appeal to young audiences and our visual identity captures images of some of queenslands most well known olympic gold medallists the result is an inspiring campaign of aspirational language and engaging images that sell the dream of representing australia in the 2032 olympics '),(139967,'slug',0,1,' you for 2032 '),(139967,'title',0,1,' queensland academy of sport '),(139973,'slug',0,1,' heart hq '),(139973,'title',0,1,' heart hq '),(139975,'extension',0,1,' jpg '),(139975,'filename',0,1,' 22 qas website jpg '),(139975,'kind',0,1,' image '),(139975,'slug',0,1,''),(139975,'title',0,1,' 22 qas website '),(139976,'extension',0,1,' jpg '),(139976,'filename',0,1,' 22 qas website2 jpg '),(139976,'kind',0,1,' image '),(139976,'slug',0,1,''),(139976,'title',0,1,' 22 qas website2 '),(139977,'extension',0,1,' jpg '),(139977,'filename',0,1,' 22 qas website3 jpg '),(139977,'kind',0,1,' image '),(139977,'slug',0,1,''),(139977,'title',0,1,' 22 qas website3 '),(139978,'extension',0,1,' jpg '),(139978,'filename',0,1,' 22 qas website4 jpg '),(139978,'kind',0,1,' image '),(139978,'slug',0,1,''),(139978,'title',0,1,' 22 qas website4 '),(139990,'extension',0,1,' docx '),(139990,'filename',0,1,' new tcs final 1 1 docx '),(139990,'kind',0,1,' word '),(139990,'slug',0,1,''),(139990,'title',0,1,' new t cs final 1 1 '),(140001,'extension',0,1,' jpg '),(140001,'filename',0,1,' 05 comsol project page 1 12 jpg '),(140001,'kind',0,1,' image '),(140001,'slug',0,1,''),(140001,'title',0,1,' 05 com sol project page 1 12 '),(140005,'extension',0,1,' jpg '),(140005,'filename',0,1,' 05 comsol project page 1 1 jpg '),(140005,'kind',0,1,' image '),(140005,'slug',0,1,''),(140005,'title',0,1,' 05 com sol project page 1 1 '),(140009,'extension',0,1,' jpg '),(140009,'filename',0,1,' 05 comsol project page 1 13 jpg '),(140009,'kind',0,1,' image '),(140009,'slug',0,1,''),(140009,'title',0,1,' 05 com sol project page 1 13 '),(140013,'field',164,1,' a complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements chevron downstream australia appointed new word order to help facilitate the process and undertake important marketing work including taking carriage of promotions of the australian b2b fuels and lubricants division we conducted a competitor analysis to assess competitor brand messaging and positioning interviews with key caltex fuels and lubricants distributors in the b2b market and one on one interviews with the general customers our insights indicated a need for authentic real life marketing collateral with which the audience can connect we also gleaned that the messaging needed to be kept simple we made the creative decision to let the products take a backseat and instead shine a light on the customers businesses and their distributor relationships we worked with a videographer to give the videos a warm and at times heartfelt tone the customers in question are mostly generations old businesses with a story to tell so we told some stories the end result was 60 video variations in a style you wouldnt necessarily associate with marketing around fuel and lubricant products something a little surprising something that stands out from the crowd '),(140013,'slug',0,1,' chevron '),(140013,'title',0,1,' chevron '),(140032,'slug',0,1,' rural aid '),(140032,'title',0,1,' rural aid '),(140057,'extension',0,1,' jpg '),(140057,'filename',0,1,' 15decemer farm 20219609 v02 jpg '),(140057,'kind',0,1,' image '),(140057,'slug',0,1,''),(140057,'title',0,1,' 15 decemer farm 20219609 v02 '),(140060,'field',164,1,' we worked closely with burnie brae to understand their issues and what makes them tick there was a concern burnie brae was lacking meaning awareness and connection for much of the public they serve alongside a recognition that the brand was simply a bit tired and neglected as a branding and strategy specialist we created a process to uncover some of the truths behind the brand to set the groundwork our team conducted a series of research and workshops before embarking on brand direction and narrative development projects with the foundations set our creative team embarked on refreshing burnie braes visual identity the creative concept painted a picture of community connection and explored a distinctive direction for the burnie brae brand we adapted the existing logo and brand colours to build a fresh and recognisable feel we redesigned and built a new website improving the information navigation and creating better user journeys the end result has seen burnie brae take ownership of a revitalised brand identity that has stronger connections to their stakeholders the stunning new website is simple to use and takes users on a compelling journey through burnie braes community service offerings '),(140060,'slug',0,1,' burnie brae '),(140060,'title',0,1,' burnie brae '),(140063,'extension',0,1,' jpg '),(140063,'filename',0,1,' 05 burnie brae project page 1 1 jpg '),(140063,'kind',0,1,' image '),(140063,'slug',0,1,''),(140063,'title',0,1,' 05 burnie brae project page 1 1 '),(140064,'extension',0,1,' jpg '),(140064,'filename',0,1,' 05 burnie brae project page 1 12 jpg '),(140064,'kind',0,1,' image '),(140064,'slug',0,1,''),(140064,'title',0,1,' 05 burnie brae project page 1 12 '),(140065,'extension',0,1,' jpg '),(140065,'filename',0,1,' 05 burnie brae project page 2 1 jpg '),(140065,'kind',0,1,' image '),(140065,'slug',0,1,''),(140065,'title',0,1,' 05 burnie brae project page 2 1 '),(140066,'extension',0,1,' jpg '),(140066,'filename',0,1,' 05 burnie brae project page 2 12 jpg '),(140066,'kind',0,1,' image '),(140066,'slug',0,1,''),(140066,'title',0,1,' 05 burnie brae project page 2 12 '),(140069,'extension',0,1,' jpg '),(140069,'filename',0,1,' 05 burnie brae project page 3 1 jpg '),(140069,'kind',0,1,' image '),(140069,'slug',0,1,''),(140069,'title',0,1,' 05 burnie brae project page 3 1 '),(140076,'extension',0,1,' jpg '),(140076,'filename',0,1,' 05 burnie brae project page 4 1 jpg '),(140076,'kind',0,1,' image '),(140076,'slug',0,1,''),(140076,'title',0,1,' 05 burnie brae project page 4 1 '),(140080,'extension',0,1,' jpg '),(140080,'filename',0,1,' 05 burnie brae project page 4 1 2022 05 09 045644 argl jpg '),(140080,'kind',0,1,' image '),(140080,'slug',0,1,''),(140080,'title',0,1,' 05 burnie brae project page 4 1 '),(140086,'extension',0,1,' jpg '),(140086,'filename',0,1,' 05 comsol project page 1 12 2022 05 09 054222 ykhg jpg '),(140086,'kind',0,1,' image '),(140086,'slug',0,1,''),(140086,'title',0,1,' 05 com sol project page 1 12 '),(140087,'extension',0,1,' jpg '),(140087,'filename',0,1,' 05 comsol project page 1 1 2022 05 09 054241 bdwl jpg '),(140087,'kind',0,1,' image '),(140087,'slug',0,1,''),(140087,'title',0,1,' 05 com sol project page 1 1 '),(140088,'extension',0,1,' jpg '),(140088,'filename',0,1,' 05 comsol project page 1 13 2022 05 09 054405 ocvc jpg '),(140088,'kind',0,1,' image '),(140088,'slug',0,1,''),(140088,'title',0,1,' 05 com sol project page 1 13 '),(140092,'extension',0,1,' jpg '),(140092,'filename',0,1,' 05 comsol project page 3 1 jpg '),(140092,'kind',0,1,' image '),(140092,'slug',0,1,''),(140092,'title',0,1,' 05 com sol project page 3 1 '),(140093,'extension',0,1,' jpg '),(140093,'filename',0,1,' 05 comsol project page 3 1 2022 05 09 054930 lfrr jpg '),(140093,'kind',0,1,' image '),(140093,'slug',0,1,''),(140093,'title',0,1,' 05 com sol project page 3 1 '),(140121,'slug',0,1,' chevron '),(140121,'title',0,1,' chevron '),(140123,'slug',0,1,' burnie brae '),(140123,'title',0,1,' burnie brae '),(140183,'field',164,1,' nwo began the rebranding process by surveying mmtds clients commonly held by all of their clients was great regard for their honesty their industry knowledge and their unbreakable commitment to exceptional customer service clients also said they wanted to get deeper insights beyond the fast and accurate data and delivery mmtd were already known for mmtd needed a new brand to drive their reputation for quality data strategic advice and superior customer experiences the brand needed to convey a clear promise well rapidly measure and pivot to maximise your media spend returns to pivot is to turn on a point and theres no better metaphor for how they pivot digital media to get the best possible results for their clients pivotus is also a call to action pivot your brand with their team because they are nimble fast and focused in a rapidly changing market '),(140183,'slug',0,1,' pivotus '),(140183,'title',0,1,' pivotus '),(140246,'field',164,1,' we are a brisbane based agency renowned for our evidence based strategic approach to truly wonderful creative work we are strongly purpose driven wholeheartedly committed to making a meaningful difference in the lives of our clients their customers and the community at large our work is rewarding the best part of what we do is doing it together theres nothing quite like a room full of inspired inspiring people united by purpose and passion and were thrilled at the idea of you being a part of that due to growth nwo is seeking to appoint a copy director simply put the core purpose of your role will be to protect the brand reputation that nwo holds for exceptional strategy and writing this will be done by undertaking stakeholder engagement co developing brand strategies leading and mentoring your team of writers a focus on quality assurance of all nwo copy as well as through your direct engagement with clients reporting to and working closely with the ceo this newly created leadership position will have full custody of the copy team leading a team of two plus freelancers you will have the autonomy to create the team structure systems processes and frameworks you feel the team needs to thrive by defining and setting nwo copy standards and developing approaches for all types of nwo writing projects to be successful in this role you will have a background in print or online journalism and experience in managing or driving brands you will have experience as an editor you will have a deep appreciation for brand and campaign management underpinned by quality content across all writing forms from content design and video through to publications and speechwriting your curious nature will see you getting to the heart of people and stories while your drive and inclusive leadership skills will see you leading your team toward best in class performance this is a rare opportunity to join a fast growing and supportive agency in a very exciting phase of its evolution a competitive salary will be negotiated everyone at nwo enjoys fantastic benefits from flexibility to bonuses professional development and a comprehensive wellbeing program flexibility and additional leave hybrid working environment with genuine flexibility work from home and our office at greenslopes one day per semester of paid study leave early late and split day options extra day of leave for an extra happy birthday bonus benefits $650 a year via airwallex to spend on you however you choose $50 a month extra $50 in your birthday month professional development work with top executives in wide ranging sectors gain deep expertise across all creative fields flexible teams means youll work on every account paid professional membership of your choice annual $1000 professional development budget learning and development plan for every employee study leave for post graduate study wellbeing weekly or fortnightly 1 1 with direct manager quarterly goal setting and performance review free access to employee assistance program intentional wellbeing at work program including massage and yoga happy friyay and every other day weekly team lunches and drinks quarterly team nights out eofy and christmas staff parties mid year and end of year all team days to rest reflect and plan if this role sounds perfect for you fill in the apply form below and attach your cover letter and a link to your website or portfolio were looking forward to saying hello '),(140246,'slug',0,1,' careers '),(140246,'title',0,1,' careers '),(140428,'field',164,1,' were a creative agency whose clients sleep at night there are no jazz hands no smoke no mirrors no special effects for our clients this means creative confidence for them their team and those higher up the chain doesnt that sound nice for a change our work focuses around significant human decisions leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience deep pain euphoria and everything between we take a pragmatic common sense approach to strategic and creative work our clients find this refreshing because we understand their context and goals purpose driven work isnt rare anymore but our purpose to make a meaningful difference to peoples lives runs deep it determines the kind of work we do how we treat each other and our drive to go above and beyond for our clients all of our creative work is backed by research accurate insights and robust strategies for our clients it means they have hard evidence and confidence to take the next step and influence to bring their teams and leaders along for the ride we began as a strategic communications agency and good quality words still mean as much to us today as they did on day one our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people we seek to understand how humans connect engage decide and change evidence based strategy is built on unique insights that guide all the work to come see our proven methodologies for how we make every project a success we started out as a strategic communications agency when ex journo suzanne oxford got seriously fed up with all of the sub par corporate comms out there a few years later creative and strategist scott oxford joined the fun we hired a few more folks made a few more connections and slowly but surely became the strategic creative powerhouse our clients know and love us for today '),(140428,'slug',0,1,' about us '),(140428,'title',0,1,' about us '),(140513,'email',0,1,' support sonnet digital '),(140513,'firstname',0,1,''),(140513,'fullname',0,1,''),(140513,'lastname',0,1,''),(140513,'slug',0,1,''),(140513,'username',0,1,' sonnet '),(140787,'extension',0,1,' jpg '),(140787,'filename',0,1,' tim img 1576 edit 1280x1280px jpg '),(140787,'kind',0,1,' image '),(140787,'slug',0,1,''),(140787,'title',0,1,' tim img 1576 edit 1280x1280px '),(141052,'extension',0,1,' csv '),(141052,'filename',0,1,' all income csv '),(141052,'kind',0,1,' unknown '),(141052,'slug',0,1,''),(141052,'title',0,1,' all income '),(141227,'extension',0,1,' csv '),(141227,'filename',0,1,' all income june csv '),(141227,'kind',0,1,' unknown '),(141227,'slug',0,1,''),(141227,'title',0,1,' all income june '),(141312,'slug',0,1,' jul 2015 '),(141312,'title',0,1,' jul 2015 '),(141314,'slug',0,1,' aug 2015 '),(141314,'title',0,1,' aug 2015 '),(141316,'slug',0,1,' sep 2015 '),(141316,'title',0,1,' sep 2015 '),(141318,'slug',0,1,' oct 2015 '),(141318,'title',0,1,' oct 2015 '),(141320,'slug',0,1,' nov 2015 '),(141320,'title',0,1,' nov 2015 '),(141322,'slug',0,1,' dec 2015 '),(141322,'title',0,1,' dec 2015 '),(141324,'slug',0,1,' jan 2016 '),(141324,'title',0,1,' jan 2016 '),(141326,'slug',0,1,' feb 2016 '),(141326,'title',0,1,' feb 2016 '),(141328,'slug',0,1,' mar 2016 '),(141328,'title',0,1,' mar 2016 '),(141330,'slug',0,1,' apr 2016 '),(141330,'title',0,1,' apr 2016 '),(141332,'slug',0,1,' may 2016 '),(141332,'title',0,1,' may 2016 '),(141334,'slug',0,1,' jun 2016 '),(141334,'title',0,1,' jun 2016 '),(141336,'slug',0,1,' jul 2016 '),(141336,'title',0,1,' jul 2016 '),(141338,'slug',0,1,' aug 2016 '),(141338,'title',0,1,' aug 2016 '),(141340,'slug',0,1,' sep 2016 '),(141340,'title',0,1,' sep 2016 '),(141342,'slug',0,1,' oct 2016 '),(141342,'title',0,1,' oct 2016 '),(141344,'slug',0,1,' nov 2016 '),(141344,'title',0,1,' nov 2016 '),(141346,'slug',0,1,' dec 2016 '),(141346,'title',0,1,' dec 2016 '),(141348,'slug',0,1,' jan 2017 '),(141348,'title',0,1,' jan 2017 '),(141350,'slug',0,1,' feb 2017 '),(141350,'title',0,1,' feb 2017 '),(141352,'slug',0,1,' mar 2017 '),(141352,'title',0,1,' mar 2017 '),(141354,'slug',0,1,' apr 2017 '),(141354,'title',0,1,' apr 2017 '),(141356,'slug',0,1,' may 2017 '),(141356,'title',0,1,' may 2017 '),(141358,'slug',0,1,' jun 2017 '),(141358,'title',0,1,' jun 2017 '),(141360,'slug',0,1,' jul 2017 '),(141360,'title',0,1,' jul 2017 '),(141362,'slug',0,1,' aug 2017 '),(141362,'title',0,1,' aug 2017 '),(141364,'slug',0,1,' sep 2017 '),(141364,'title',0,1,' sep 2017 '),(141366,'slug',0,1,' oct 2017 '),(141366,'title',0,1,' oct 2017 '),(141368,'slug',0,1,' nov 2017 '),(141368,'title',0,1,' nov 2017 '),(141370,'slug',0,1,' dec 2017 '),(141370,'title',0,1,' dec 2017 '),(141372,'slug',0,1,' jan 2018 '),(141372,'title',0,1,' jan 2018 '),(141374,'slug',0,1,' feb 2018 '),(141374,'title',0,1,' feb 2018 '),(141376,'slug',0,1,' mar 2018 '),(141376,'title',0,1,' mar 2018 '),(141378,'slug',0,1,' apr 2018 '),(141378,'title',0,1,' apr 2018 '),(141380,'slug',0,1,' may 2018 '),(141380,'title',0,1,' may 2018 '),(141382,'slug',0,1,' jun 2018 '),(141382,'title',0,1,' jun 2018 '),(141384,'slug',0,1,' jul 2018 '),(141384,'title',0,1,' jul 2018 '),(141386,'slug',0,1,' aug 2018 '),(141386,'title',0,1,' aug 2018 '),(141388,'slug',0,1,' sep 2018 '),(141388,'title',0,1,' sep 2018 '),(141390,'slug',0,1,' oct 2018 '),(141390,'title',0,1,' oct 2018 '),(141392,'slug',0,1,' nov 2018 '),(141392,'title',0,1,' nov 2018 '),(141394,'slug',0,1,' dec 2018 '),(141394,'title',0,1,' dec 2018 '),(141396,'slug',0,1,' jan 2019 '),(141396,'title',0,1,' jan 2019 '),(141398,'slug',0,1,' feb 2019 '),(141398,'title',0,1,' feb 2019 '),(141400,'slug',0,1,' mar 2019 '),(141400,'title',0,1,' mar 2019 '),(141402,'slug',0,1,' apr 2019 '),(141402,'title',0,1,' apr 2019 '),(141404,'slug',0,1,' may 2019 '),(141404,'title',0,1,' may 2019 '),(141406,'slug',0,1,' jun 2019 '),(141406,'title',0,1,' jun 2019 '),(141408,'slug',0,1,' jul 2019 '),(141408,'title',0,1,' jul 2019 '),(141410,'slug',0,1,' aug 2019 '),(141410,'title',0,1,' aug 2019 '),(141412,'slug',0,1,' sep 2019 '),(141412,'title',0,1,' sep 2019 '),(141414,'slug',0,1,' oct 2019 '),(141414,'title',0,1,' oct 2019 '),(141416,'slug',0,1,' nov 2019 '),(141416,'title',0,1,' nov 2019 '),(141418,'slug',0,1,' dec 2019 '),(141418,'title',0,1,' dec 2019 '),(141420,'slug',0,1,' jan 2020 '),(141420,'title',0,1,' jan 2020 '),(141422,'slug',0,1,' feb 2020 '),(141422,'title',0,1,' feb 2020 '),(141424,'slug',0,1,' mar 2020 '),(141424,'title',0,1,' mar 2020 '),(141426,'slug',0,1,' apr 2020 '),(141426,'title',0,1,' apr 2020 '),(141428,'slug',0,1,' may 2020 '),(141428,'title',0,1,' may 2020 '),(141430,'slug',0,1,' jun 2020 '),(141430,'title',0,1,' jun 2020 '),(141432,'slug',0,1,' jul 2020 '),(141432,'title',0,1,' jul 2020 '),(141434,'slug',0,1,' aug 2020 '),(141434,'title',0,1,' aug 2020 '),(141436,'slug',0,1,' sep 2020 '),(141436,'title',0,1,' sep 2020 '),(141438,'slug',0,1,' oct 2020 '),(141438,'title',0,1,' oct 2020 '),(141440,'slug',0,1,' nov 2020 '),(141440,'title',0,1,' nov 2020 '),(141442,'slug',0,1,' dec 2020 '),(141442,'title',0,1,' dec 2020 '),(141444,'slug',0,1,' jan 2021 '),(141444,'title',0,1,' jan 2021 '),(141446,'slug',0,1,' feb 2021 '),(141446,'title',0,1,' feb 2021 '),(141448,'slug',0,1,' mar 2021 '),(141448,'title',0,1,' mar 2021 '),(141450,'slug',0,1,' apr 2021 '),(141450,'title',0,1,' apr 2021 '),(141452,'slug',0,1,' may 2021 '),(141452,'title',0,1,' may 2021 '),(141454,'slug',0,1,' jun 2021 '),(141454,'title',0,1,' jun 2021 '),(141456,'slug',0,1,' jul 2021 '),(141456,'title',0,1,' jul 2021 '),(141458,'slug',0,1,' aug 2021 '),(141458,'title',0,1,' aug 2021 '),(141460,'slug',0,1,' sep 2021 '),(141460,'title',0,1,' sep 2021 '),(141462,'slug',0,1,' oct 2021 '),(141462,'title',0,1,' oct 2021 '),(141464,'slug',0,1,' nov 2021 '),(141464,'title',0,1,' nov 2021 '),(141466,'slug',0,1,' dec 2021 '),(141466,'title',0,1,' dec 2021 '),(141468,'slug',0,1,' jan 2022 '),(141468,'title',0,1,' jan 2022 '),(141470,'slug',0,1,' feb 2022 '),(141470,'title',0,1,' feb 2022 '),(141472,'slug',0,1,' mar 2022 '),(141472,'title',0,1,' mar 2022 '),(141474,'slug',0,1,' apr 2022 '),(141474,'title',0,1,' apr 2022 '),(141476,'slug',0,1,' may 2022 '),(141476,'title',0,1,' may 2022 '),(141478,'slug',0,1,' jun 2022 '),(141478,'title',0,1,' jun 2022 '),(141484,'extension',0,1,' png '),(141484,'filename',0,1,' img 1576 png '),(141484,'kind',0,1,' image '),(141484,'slug',0,1,''),(141484,'title',0,1,' img 1576 '),(141486,'field',164,1,' after a number of years being part of on a multi agency roster new word order won a five way pitch for the entire account responsibilities have included the entire portfolio of new and existing communities brand projects lead generation campaigns and strategic marketing direction our ongoing partnership has resulted in a truly collaborative relationship that continues to grow and evolve weve produced many ground breaking campaigns along the way and if work in progress is any indication the best is most definitely yet to come strategy copywriting video production digital design photography research branding pretty much every tool in the new word order kitbag has been utilised by the retireaustralia marketing team such has been the breadth and depth of our working partnership our full service agency offering creates the perfect platform for strong collaboration as clients such as retireaustralia have the confidence that integration and campaign execution from strategy can be executed more efficiently new word orders branding expertise has been integral to the partnership with retireaustralia weve fully branded and marketed new communities in their growing portfolio establishing the right brand values and voice for each particular project the masterbrand is also being rigorously reviewed to ensure optimal value is being achieved from retireaustralia name weve helped them grow brand awareness and stake their claim as a people business first and property business second in the backdrop of covid 19 this has been a significant branding challenge that our partnership team continues to work on together '),(141486,'slug',0,1,' retireaustralia 2 '),(141486,'title',0,1,' retireaustralia '),(141493,'field',164,1,' while glengara care has been described as the genuine alternative to aged care it often isnt clear what exactly sets the facility apart from residential aged care facilities the differentiators ultimately come down to the provision of care glengara care offers care that is personal loving and delivered in a manner that preserves the recipients independence the your care factor campaign was required to generate leads and sales while building awareness around glengara care in comparison to some of the well known aged care alternatives the core of the campaign was built from the concept of care we drew out two meanings from your care factor not only the level of care provided by the facility but also the decision making factors that each potential buyer personally cares about the term care factor is deeply familiar perhaps not so much to the 80 year old resident market but more so to their children the key influencers of this campaign we created three television commercials that pose the question of what is your care factor by contrasting the realities of people struggling physically and emotionally in a home that doesnt suit their needs against people receiving the unparalleled care offered at glengara care while the videos showcase glengara cares differentiated care offering the advertisements themselves separate glengara care from the alternatives theyre provocative fresh and engaging this project certainly wasnt an easy one the final product is the result of fierce determination both from nwo and retireaustralia in the face of adversity such as covid 19 restrictions risks and vulnerability the video shoot was rescheduled numerous times and often our careful planning was swapped out for quick thinking and adaptability the end result however was worth every bit of effort '),(141493,'slug',0,1,' glengaracare '),(141493,'title',0,1,' glengara care '),(141503,'email',0,1,' elliot madebyverse com '),(141503,'firstname',0,1,' elliot '),(141503,'fullname',0,1,' elliot kidd '),(141503,'lastname',0,1,' kidd '),(141503,'slug',0,1,''),(141503,'username',0,1,' elliot '),(141504,'extension',0,1,' jpg '),(141504,'filename',0,1,' 22 06 glengaracare website jpg '),(141504,'kind',0,1,' image '),(141504,'slug',0,1,''),(141504,'title',0,1,' 22 06 glengara care website '),(141505,'extension',0,1,' jpg '),(141505,'filename',0,1,' 22 06 glengaracare website2 jpg '),(141505,'kind',0,1,' image '),(141505,'slug',0,1,''),(141505,'title',0,1,' 22 06 glengara care website2 '),(141506,'extension',0,1,' jpg '),(141506,'filename',0,1,' 22 06 glengaracare website3 jpg '),(141506,'kind',0,1,' image '),(141506,'slug',0,1,''),(141506,'title',0,1,' 22 06 glengara care website3 '),(141511,'field',164,1,' were a creative agency whose clients sleep at night there are no jazz hands no smoke no mirrors no special effects for our clients this means creative confidence for them their team and those higher up the chain doesnt that sound nice for a change our work focuses around significant human decisions leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience deep pain euphoria and everything between we take a pragmatic common sense approach to strategic and creative work our clients find this refreshing because we understand their context and goals purpose driven work isnt rare anymore but our purpose to make a meaningful difference to peoples lives runs deep it determines the kind of work we do how we treat each other and our drive to go above and beyond for our clients all of our creative work is backed by research accurate insights and robust strategies for our clients it means they have hard evidence and confidence to take the next step and influence to bring their teams and leaders along for the ride we began as a strategic communications agency and good quality words still mean as much to us today as they did on day one our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people we seek to understand how humans connect engage decide and change evidence based strategy is built on unique insights that guide all the work to come see our proven methodologies for how we make every project a success we started out as a strategic communications agency when ex journo suzanne oxford got seriously fed up with all of the sub par corporate comms out there a few years later creative and strategist scott oxford joined the fun we hired a few more folks made a few more connections and slowly but surely became the strategic creative powerhouse our clients know and love us for today '),(141511,'slug',0,1,' about us '),(141511,'title',0,1,' about us '),(141512,'field',164,1,' while glengara care has been described as the genuine alternative to aged care it often isnt clear what exactly sets the facility apart from residential aged care facilities the differentiators ultimately come down to the provision of care glengara care offers care that is personal loving and delivered in a manner that preserves the recipients independence the your care factor campaign was required to generate leads and sales while building awareness around glengara care in comparison to some of the well known aged care alternatives the core of the campaign was built from the concept of care we drew out two meanings from your care factor not only the level of care provided by the facility but also the decision making factors that each potential buyer personally cares about the term care factor is deeply familiar perhaps not so much to the 80 year old resident market but more so to their children the key influencers and therefore primary target market of this campaign we created three television commercials that pose the question of what is your care factor by contrasting the realities of people struggling physically and emotionally in a home that doesnt suit their needs against people receiving the unparalleled care offered at glengara care while the videos showcase glengara cares differentiated care offering the advertisements themselves separate glengara care from the alternatives theyre provocative fresh and engaging in a way that directly resonates with the target market both potential residents and their influencers this project certainly wasnt an easy one the final product is the result of fierce determination both from nwo and retireaustralia in the face of adversity such as covid 19 restrictions risks and vulnerability the video shoot was rescheduled numerous times and often our careful planning was swapped out for quick thinking and adaptability the end result however was worth every bit of effort '),(141512,'slug',0,1,' glengaracare '),(141512,'title',0,1,' glengaracare '),(141516,'extension',0,1,' jpg '),(141516,'filename',0,1,' meet tim 2 jpg '),(141516,'kind',0,1,' image '),(141516,'slug',0,1,''),(141516,'title',0,1,' meet tim 2 '),(141522,'extension',0,1,' jpg '),(141522,'filename',0,1,' 22 06 glengaracare website header jpg '),(141522,'kind',0,1,' image '),(141522,'slug',0,1,''),(141522,'title',0,1,' 22 06 glengara care website header '),(141527,'extension',0,1,' jpg '),(141527,'filename',0,1,' heres tim jpg '),(141527,'kind',0,1,' image '),(141527,'slug',0,1,''),(141527,'title',0,1,' heres tim '),(141533,'field',164,1,' why does she say she accomplishes nothing when she appears to be one of the all time great multi taskers well she has started a thousand things in her life and never completed any of them piano cello netball volleyball basketball writing novels writing poetry acting dancing acrobatics choir all have been tried failed and given up forever is just as well because as someone who has more job titles than scott morrison in a pandemic we need her in the office were not sure whas on her business card but she acts as our junior copywriter production coordinator chief proofreader project manager office manager and social club vice president bree may be our youngest employee but her list of accomplishments belies her years shes already watched all 412 episodes of greys anatomy which she feels should entitle her to an honorary medical degree shes also memorised every single lyric of every taylor swift song that particular obsession runs to attending three of her concerts and counting and two tattoos referencing her music and counting oh yes and she just finished her under graduate degree in business at qut her cooking skills are non existent but luckily bree lives the inner city life so a poke bowl or dumpling shop is never too far away theres also the occasional maccas feed after hitting the valley nightclubs whose menu she can recite by heart thanks to her teen years spent in the drive thru trenches if you cat find her in the office just follow the sound of someone talking about the latest netflix series then just give her a job to do and watch her get to it well straight after shes finished listening to taytays latest release the girl has priorities you know liam was born and raised in brisbane but escaped the oppressive heat to live in london and hong kong and then found it again in guam for seven years now back in his hometown he carries with him the secrets of a journey well travelled from paying his way through uni as a roadie for ska band the furious turtles to winning australian and international advertising and production copywriting awards throughout his career were sure we can thank his time on the road is classified but imaginably riddled with life altering stories for the effortless creativity he brings day to day second to that maybe also his time at industry renowned award school speaking of formative experiences lias gruff exterior was carefully constructed back in his boarding school days when he was an easy target as the only soft city kid among a sea of tough country kids he quickly discovered that no amount of skiing holidays or golfing hole in ones current tally zero from 50 000 attempts could win the respect of teenage bogans a lesson in humility for liam perhaps weve all been there at some point despite his otherwise bourgeois sounding life where the golfing green is grassier liam actually knows all about the importance of sacrifice after all he cooks his famous garlic prawns every year for his family christmas and last year for the nwo christmas despite his drastic ironic and tragic crustacean allergy when he defeats the prawns they defeat him right back you can actually cook the dish yourself following his not so secret recipe here is delicious you cat take lias word for it of course but you can take ours he has cooking all locked down but hell be the first to tell you cleaning ist his area of expertise we cat have everything no reason to fret though ist that what kids are for and hes got four of them so hes very good at delegating a of couple residents in his household live it lush and chore free though his 50kg irish wolfhound luna and his 8kg cavoodle rusty in fact theyve delegated to liam the chore of walking them every morning those gorgeous dogs are part of what we love about liam along with his dry sense of humour his endless creative expertise and his penchant for telling a good story whether is through an ad script or just a weekend anecdote she makes a splash in the nwo studio but the real party starts when kimi gets home with a glass of natural wine in hand she relaxes to the sweet symphony of her sewing machine and the real housewives of wherever shell proudly tell you shes seen every episode in her heart shes a rich housewife but in her clever brain shes an ambitious talented entrepreneur as a side hustle she sews and sells custom leather bags purses and earrings she stocks them at forge forward in fortitude valley and the home of the arts in the gold coast so go check em out the biz was even featured in frankie magazine who absolutely frothed over her two toned gold snake tote bag the next enterprise ambition on kimis list is a doggy day care she lives and breathes for animals of all kinds she says could fall in love with an earthworm although shed probably feed it to her budgies if they asked her to kimi is loyal to patsy and tina before anything else named after patsy cline and tina arena her babies represent just a smidge of kimis music taste which she describes as dad musi to stick with the household theme kimis partner levi decided to pursue a career as a drummer composer and music mix engineer sometimes he sings backup to kimis karaoke rendition of private dancer kimis custom illustration is one of the things that make our work really special shes an amazing problem solver and collaborator and her favourite part of the job is illustrating video storyboards that our animators bring to life rather than designer kimis most well known around the office as lady president of the social committee she makes sure we have cake and sparkling wine on birthdays takeout lunch on fridays and the trendiest christmas venue booked by september every year nwos social scene would truly be lost without kimi theres so much more to marnie than just her role at nwo to start with marnies our personal photographer for many of our staff headshots is an equal trade because we let her put her four years of art school to good use never mind that she already does that with her side hustle photography business actually there are many ways art school shaped her into the artist she is today it taught her that theres art in absolutely everything is where she discovered wine and for her honours project she explored how the innocence of childlike expression unlocks free creativity a sentiment that inspired her teenage rap band origami girls their music video for hit single rapp is one of our all time favourites but two and a half years ago alma took over the role of childlike expression and hes got it down pat marnie says her toddler runs her world and is the centre of her purpose as far as bosses go hes a pretty cute one if alma is marnies boss mark is her partner in crime it was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles the adventurous pair climbed more than 4km above sea level on manaslu for marnies 30th just the next step up from her 18th birthday skydiving trip of all the musical talent we have rocking here at nwo marnies probably takes the cake it all started with a pair of drumsticks dreams of an all girl band and a healthy crush on zac hanson in high school marnie fantasised about opening for zac on tour before riding off into the moonlight with him but the reality was a little less dreamy and a whole lot louder a decade spent playing for an improvised noise band in warehouses and diy festivals and improvised noise was only the beginning of her music career now marnies checked off all the genres from emo and garage to bubble gum rock in the spare time she cat possibly have shes captured every era of her music over the past decade through her video production business bare pictures beyond the creative vision we see in her music videos marnie has extensive experience producing tvcs for big biz dogs like the nrl samsung and australian ballet marnies blue sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better and we just love her for it is clear to us that william was custom built for his role as account manager business growth but theres a lot more to him than wip reports and bd timelines like his first love music from building music festival sets for global icons like justin bieber and ariana grande good mates of his apparently to running his own music biz where he managed local artists william is what we would call the artsy type but despite his natural talents on guitar and piano rumour has it he cat even read sheet music didt bode well for the paperwork maybe thas why he swapped his yamaha keyboard for a wireless apple one and so musis loss became advertisings gain willias young looks belie a wealth of industry experience while he co ran a creative agency he stocked his blazer sleeves with some tricks that have majorly delighted us at nwo in return for choccy treats during our fortnightly client services meeting william uses his top notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects he wot compromise on meeting his client deadlines the guy is dedicated what can we say but we hear hes actually pretty flexible on the balance beam thanks to years of gymnastics training his impressive sense of balance comes in handy every now and then when hes across the globe shredding the ski slopes his happy place if the cheesy photographed grins are any indication when he started with us we immediately got him on the tools and by the tools we obviously mean the coffee machine lately weve been lost without an office barista so he couldt have joined us at a better time strategy and marketing have always come naturally to greg he is both fluent in marketing speak and impressively able to communicate with non marketing natives but theres much more to uncover beyond his business acumen gregs our resident kiwi bringing with him stories of the beautiful aotearoa landscape and all the silly adrenaline pursuits that come with it like his potentially mid life crisis inspired 50th birthday skydiving adventure the thrill seeking continued beyond new zealand his move to australia was bracketed by swims with whale sharks in mexico shivery fishing in the arctic circle and months of backpacking through the middle east although he hast yet made his way to india which is rich with his family history but is on the bucket list gregs family is his world while greg is a natural leader in the workplace hes married to a leo his wife jo who was destined to wear the proverbial pants in their household hes immensely proud of his son daniel who inherited gregs football stardom and carries the torch since gregs body decided his glory days are long over greg is now coach to daniel to cope with his retirement from playing football and tennis his golf glory days are still alive and well greg is a fan of many thought provoking quotes such as hope is not a strategy good is the enemy of great and hot chips taste better when they belong to someone else his seagull tendencies make lunch with greg a high stakes experience a big believer that humour can lighten even the most challenging of situations greg is always earning laughs around the office making him the perfect new addition to the team tim joined the nwo team last year and since then we have unearthed a plethora of interesting snippets about the life of tim now is time to share that with the outside world for example although born in brisbane tim grew up on the island of borneo in malaysia before moving back to brisbane at age 16 and attending boarding school sorry but all boarding school stories remain classified with that cultural background tim is fortunate enough to speak three languages english bahasa melayu and hakka a chinese dialect actually he speaks a few chinese dialects so calling tim trilingual might actually be selling him short when he was younger he was quite the tennis player and travelled extensively around south east asia for tournaments luckily for rafa and roger he decided to swap the racquet for a macbook and pursued his career in advertising regrets hes had a few like being a guinea pig in clinical trials in exchange for a few bucks or the free tattoo of a hotel safe code he got as a dare many expensive laser sessions later it turns out it wast a free tattoo at all he has been on road trips around iceland in winter adds salt to coke is a mad manchester united fan and a former cover band lead singer he really rocks it on karaoke nights despite all these interesting tidbits tim is most well known for his sneaker collection admitting to ownership of more than 100 pairs but we suspect the number is way higher rarely a week goes by at nwo hq without a couple of shoe box sized deliveries arriving for mr kho tim is happily married well hes happy at least and can sniff a good lunch from five desks away as his clients will attest tim is full of energy and curiosity and that makes him a great member of the nwo family '),(141533,'slug',0,1,' let us introduce ourselves '),(141533,'title',0,1,' let us introduce ourselves '),(141534,'extension',0,1,' jpg '),(141534,'filename',0,1,' nwo logo jpg '),(141534,'kind',0,1,' image '),(141534,'slug',0,1,''),(141534,'title',0,1,' nwo logo '),(141535,'extension',0,1,' jpg '),(141535,'filename',0,1,' nwo logo 2022 06 29 014636 ronb jpg '),(141535,'kind',0,1,' image '),(141535,'slug',0,1,''),(141535,'title',0,1,' nwo logo '),(141536,'extension',0,1,' jpg '),(141536,'filename',0,1,' heres tim 2022 06 29 014909 sdpk jpg '),(141536,'kind',0,1,' image '),(141536,'slug',0,1,''),(141536,'title',0,1,' heres tim '),(141538,'extension',0,1,' jpg '),(141538,'filename',0,1,' nwo background jpg '),(141538,'kind',0,1,' image '),(141538,'slug',0,1,''),(141538,'title',0,1,' nwo background '),(141574,'field',164,1,' while glengara care has been described as the genuine alternative to aged care it often isnt clear what exactly sets the facility apart from residential aged care facilities the differentiators ultimately come down to the provision of care glengara care offers care that is personal loving and delivered in a manner that preserves the recipients independence the your care factor campaign was required to generate leads and sales while building awareness around glengara care in comparison to some of the well known aged care alternatives the core of the campaign was built from the concept of care we drew out two meanings from your care factor not only the level of care provided by the facility but also the decision making factors that each potential buyer personally cares about the term care factor is deeply familiar perhaps not so much to the 80 year old resident market but more so to their children the key influencers of this campaign we created three television commercials that pose the question of what is your care factor by contrasting the realities of people struggling physically and emotionally in a home that doesnt suit their needs against people receiving the unparalleled care offered at glengara care while the videos showcase glengara cares differentiated care offering the advertisements themselves separate glengara care from the alternatives theyre provocative fresh and engaging this project certainly wasnt an easy one the final product is the result of fierce determination both from nwo and retireaustralia in the face of adversity such as covid 19 restrictions risks and vulnerability the video shoot was rescheduled numerous times and often our careful planning was swapped out for quick thinking and adaptability the end result however was worth every bit of effort '),(141574,'slug',0,1,' glengaracare '),(141574,'title',0,1,' glengara care '),(141582,'field',164,1,' our team is full of vibrant hard working people who live very full lives outside the walls of nwo crazy hey if you have worked with some of the team you might only know us in full throttle foot on the gas pedal mode but at home theres so much more to see tim joined the nwo team last year and since then we have unearthed a plethora of interesting snippets about the life of tim now its time to share that with the outside world for example although born in brisbane tim grew up on the island of borneo in malaysia before moving back to brisbane at age 16 and attending boarding school sorry but all boarding school stories remain classified with that cultural background tim is fortunate enough to speak three languages english bahasa melayu and hakka a chinese dialect actually he speaks a few chinese dialects so calling tim trilingual might actually be selling him short when he was younger he was quite the tennis player and travelled extensively around south east asia for tournaments luckily for rafa and roger he decided to swap the racquet for a macbook and pursued his career in advertising regrets hes had a few like being a guinea pig in clinical trials in exchange for a few bucks or the free tattoo of a hotel safe code he got as a dare many expensive laser sessions later it turns out it wasnt a free tattoo at all he has been on road trips around iceland in winter adds salt to coke is a mad manchester united fan and a former cover band lead singer he really rocks it on karaoke nights despite all these interesting tidbits tim is most well known for his sneaker collection admitting to ownership of more than 100 pairs but we suspect the number is way higher rarely a week goes by at nwo hq without a couple of shoe box sized deliveries arriving for mr kho tim is happily married well hes happy at least and can sniff a good lunch from five desks away as his clients will attest tim is full of energy and curiosity and that makes him a great member of the nwo family '),(141582,'slug',0,1,' let us introduce ourselves '),(141582,'title',0,1,' let us introduce ourselves '),(141586,'field',164,1,''),(141586,'slug',0,1,' my mental health 2 '),(141586,'title',0,1,' my mental health '),(141594,'extension',0,1,' jpg '),(141594,'filename',0,1,' ycn flyer mock 1 1 jpg '),(141594,'kind',0,1,' image '),(141594,'slug',0,1,''),(141594,'title',0,1,' ycn flyer mock 1 1 '),(141595,'extension',0,1,' jpg '),(141595,'filename',0,1,' ycn flyer mock 1 1 2022 07 04 015326 ygzd jpg '),(141595,'kind',0,1,' image '),(141595,'slug',0,1,''),(141595,'title',0,1,' ycn flyer mock 1 1 '),(141596,'extension',0,1,' jpg '),(141596,'filename',0,1,' ycn website mock 1 1 jpg '),(141596,'kind',0,1,' image '),(141596,'slug',0,1,''),(141596,'title',0,1,' ycn website mock 1 1 '),(141599,'extension',0,1,' jpg '),(141599,'filename',0,1,' 22 07 ycn marketing website jpg '),(141599,'kind',0,1,' image '),(141599,'slug',0,1,''),(141599,'title',0,1,' 22 07 ycn marketing website '),(141602,'extension',0,1,' jpg '),(141602,'filename',0,1,' 22 07 ycn marketing website 2022 07 04 071901 flnv jpg '),(141602,'kind',0,1,' image '),(141602,'slug',0,1,''),(141602,'title',0,1,' 22 07 ycn marketing website '),(141607,'field',164,1,' a great new infographic has found that well give a website a minute to display what were looking for before we give up some types of sites are better than others in delivering what were after especially hotel booking sites the two biggest complaints about web sites according to the research include that there is too much going on and also not enough information which we can take to mean that many sites drone on and on but dont really say much users also complain across all age groups and online skills that text is too small and that navigation is difficult on the sites they give up on thirty five per cent of users fail to complete simple tasks on the average website lets improve those stats shall we heres a plan 1 design from the users perspective not your own we know your company is the greatest thing since google and you cant wait to tell everyone all about where it began who works there and the details of your offering but the truth is that a user just wants to get to the point and their interests should override yours usability is key show them what theyre looking for and dont make them search for it that doesnt mean sacrificing look and feel for too much simplicity it just means focusing the layout and design on the search 2 create a navigation path if the information on your website is simple and structured you can guide visitors on the path youd like them to take use tabs and sub pages for different categories and make it logical 3 content is everything content is the most important element of your site really and it needs to fit the logical and structured navigation youll want to include keywords page titles meta tags and headings for search engine optimisation as weve previously discussed in our writing for readable web article there are some hallmarks we use when writing web copy for our clients short effective sentences say the same information with less sub headings and headings containing keywords everyday words the average reader can easily understand plain english informal voice common language conventions direct language active tense consistent logical structuring of information 4 speed it up and make it simple lets face it were a busy bunch and a reminder of the old days of dial up waiting for your site to load is going to test the patience of even the most loyal visitor in fact many visitors will start to abandon a website after just a few seconds of loading time most of that time is the result of design decisions so simplify some of the fancy effects we love web design and working with you on the best and most creative way to present your business starting with a structure that appeals to your audience then adding in some clever design and copy ensures that your site will be a success talk to us about it today '),(141607,'slug',0,1,' are customers giving up on your website '),(141607,'title',0,1,' are customers giving up on your website '),(141616,'email',0,1,' greg newwordorder com au '),(141616,'firstname',0,1,' greg '),(141616,'fullname',0,1,' greg bowell '),(141616,'lastname',0,1,' bowell '),(141616,'slug',0,1,''),(141616,'username',0,1,' greg '),(141617,'slug',0,1,''),(141618,'slug',0,1,''),(141619,'slug',0,1,''),(141620,'slug',0,1,''),(141621,'slug',0,1,''),(141632,'extension',0,1,' jpg '),(141632,'filename',0,1,' untitled artwork 7 jpg '),(141632,'kind',0,1,' image '),(141632,'slug',0,1,''),(141632,'title',0,1,' untitled artwork 7 '),(141642,'email',0,1,' william newwordorder com au '),(141642,'firstname',0,1,' william '),(141642,'fullname',0,1,' william grunwald '),(141642,'lastname',0,1,' grunwald '),(141642,'slug',0,1,''),(141642,'username',0,1,' william '),(141650,'extension',0,1,' jpg '),(141650,'filename',0,1,' 22 07 meet greg jpg '),(141650,'kind',0,1,' image '),(141650,'slug',0,1,''),(141650,'title',0,1,' 22 07 meet greg '),(141662,'field',164,1,' the brief was relatively simple get us known for who we are and what we do and quickly with that we applied our combination of strategic smarts and creative firepower to produce a brand awareness campaign for community solutions that delivered on all counts the critical challenge of addressing the brand awareness and consistency issues was creatively solved by going back to basics the brand name we added a series of two word descriptors to the community solutions name and logo through graphic design we made them readable both horizontally and vertically to create multiple meanings and build new stories this approach kept the branding front and centre delivering on the awareness measure while shining a light on the services and outcomes that community solutions offers to their stakeholders the campaign features a variety of assets including digital socials outdoor online video and radio everything was designed in a template format for multiple executions and future extensions the creative team did a fantastic job listening to the client understanding their needs and solving it in a really interesting way we wanted a concept that was like discovering a little nugget of gold this campaign does exactly that it looks sounds and feels just right new word order presented us with a concept that was quite unexpected but answered the brief in a truly compelling and powerful way were excited to see how the campaign engages with people and evolves into the future rebecca green marketing advisor campaigns community solutions '),(141662,'slug',0,1,' community solutions '),(141662,'title',0,1,' community solutions '),(141670,'extension',0,1,' jpg '),(141670,'filename',0,1,' 22 07 ramsay marketing project page 1 1 jpg '),(141670,'kind',0,1,' image '),(141670,'slug',0,1,''),(141670,'title',0,1,' 22 07 ramsay marketing project page 1 1 '),(141671,'extension',0,1,' jpg '),(141671,'filename',0,1,' 22 07 ramsay marketing project page 1 12 jpg '),(141671,'kind',0,1,' image '),(141671,'slug',0,1,''),(141671,'title',0,1,' 22 07 ramsay marketing project page 1 12 '),(141672,'extension',0,1,' jpg '),(141672,'filename',0,1,' 22 07 ramsay marketing project page 1 13 jpg '),(141672,'kind',0,1,' image '),(141672,'slug',0,1,''),(141672,'title',0,1,' 22 07 ramsay marketing project page 1 13 '),(141680,'extension',0,1,' gif '),(141680,'filename',0,1,' 22 07 ramsay marketing netball 1 1 gif '),(141680,'kind',0,1,' image '),(141680,'slug',0,1,''),(141680,'title',0,1,' 22 07 ramsay marketing netball 1 1 '),(141688,'extension',0,1,' jpg '),(141688,'filename',0,1,' 22 07 ramsay marketing project page 1 1 2022 07 26 014420 awbz jpg '),(141688,'kind',0,1,' image '),(141688,'slug',0,1,''),(141688,'title',0,1,' 22 07 ramsay marketing project page 1 1 '),(141698,'extension',0,1,' gif '),(141698,'filename',0,1,' 22 07 ramsay marketing netball 1 2 gif '),(141698,'kind',0,1,' image '),(141698,'slug',0,1,''),(141698,'title',0,1,' 22 07 ramsay marketing netball 1 2 '),(141699,'extension',0,1,' gif '),(141699,'filename',0,1,' 22 07 ramsay marketing netball 1 2 2022 07 26 050421 aetu gif '),(141699,'kind',0,1,' image '),(141699,'slug',0,1,''),(141699,'title',0,1,' 22 07 ramsay marketing netball 1 2 '),(141704,'extension',0,1,' gif '),(141704,'filename',0,1,' 22 07 ramsay marketing netball 1 3 gif '),(141704,'kind',0,1,' image '),(141704,'slug',0,1,''),(141704,'title',0,1,' 22 07 ramsay marketing netball 1 3 '),(141707,'extension',0,1,' gif '),(141707,'filename',0,1,' 22 07 ramsay marketing netball 1 3 2022 07 26 052255 ddlu gif '),(141707,'kind',0,1,' image '),(141707,'slug',0,1,''),(141707,'title',0,1,' 22 07 ramsay marketing netball 1 3 '),(141720,'extension',0,1,' gif '),(141720,'filename',0,1,' 22 07 ramsay marketing netball 1 3 2022 07 26 052741 nqgi gif '),(141720,'kind',0,1,' image '),(141720,'slug',0,1,''),(141720,'title',0,1,' 22 07 ramsay marketing netball 1 3 '),(141725,'field',164,1,' ramsay health care asked us to help develop a campaign to promote their orthopaedic services across their network of hospitals the campaign served to educate the target market on what makes ramsays orthopaedic offerings special while also calling them to check whether their health insurance covers ramsay hospitals using ramsays target market of orthopaedic patients in their 40s and 50s we created the weekend warrior characters everyday people who take on their alter ego when the working week is over the social sports star who pushes themself to go for that bicycle kick or elaborate jump pass the reno kings and queens who love bunnings outings and would never pay someone else to do work around the house that they could do themselves theres an ocean of campaigns out there from medical brands that all look the same clinical and serious ramsay stepped outside of the same same and opted for more lively exaggerated shots of weekend warriors in action being injured and seeking care from a ramsay hospital with fresh exciting and relatable action shots complemented by copy that captures the work hard play hard lifestyle our campaign for ramsay cut through to the market with personality and an element of surprise '),(141725,'slug',0,1,' ramsay health care '),(141725,'title',0,1,' ramsay health care '),(141733,'extension',0,1,' jpg '),(141733,'filename',0,1,' 22 07 meet greg 2 jpg '),(141733,'kind',0,1,' image '),(141733,'slug',0,1,''),(141733,'title',0,1,' 22 07 meet greg 2 '),(141735,'extension',0,1,' jpg '),(141735,'filename',0,1,' greg col 23 jpg '),(141735,'kind',0,1,' image '),(141735,'slug',0,1,''),(141735,'title',0,1,' mar 1585 edit isolated '),(141736,'extension',0,1,' jpg '),(141736,'filename',0,1,' 22 07 ramsay marketing project page 2 1 jpg '),(141736,'kind',0,1,' image '),(141736,'slug',0,1,''),(141736,'title',0,1,' 22 07 ramsay marketing project page 2 1 '),(141737,'extension',0,1,' jpg '),(141737,'filename',0,1,' 22 07 ramsay marketing project page 1 1 2022 07 26 065637 uxmw jpg '),(141737,'kind',0,1,' image '),(141737,'slug',0,1,''),(141737,'title',0,1,' 22 07 ramsay marketing project page 1 1 '),(141738,'extension',0,1,' jpg '),(141738,'filename',0,1,' 22 07 ramsay marketing project page 1 12 2022 07 26 065643 rdgr jpg '),(141738,'kind',0,1,' image '),(141738,'slug',0,1,''),(141738,'title',0,1,' 22 07 ramsay marketing project page 1 12 '),(141739,'extension',0,1,' jpg '),(141739,'filename',0,1,' 22 07 ramsay marketing project page 1 13 2022 07 26 065647 gmwa jpg '),(141739,'kind',0,1,' image '),(141739,'slug',0,1,''),(141739,'title',0,1,' 22 07 ramsay marketing project page 1 13 '),(141740,'extension',0,1,' jpg '),(141740,'filename',0,1,' 22 07 ramsay marketing project page 1 14 jpg '),(141740,'kind',0,1,' image '),(141740,'slug',0,1,''),(141740,'title',0,1,' 22 07 ramsay marketing project page 1 14 '),(141741,'extension',0,1,' jpg '),(141741,'filename',0,1,' 22 07 ramsay marketing project page 1 1 2022 07 26 065723 icjm jpg '),(141741,'kind',0,1,' image '),(141741,'slug',0,1,''),(141741,'title',0,1,' 22 07 ramsay marketing project page 1 1 '),(141742,'extension',0,1,' jpg '),(141742,'filename',0,1,' 22 07 ramsay marketing project page 1 12 2022 07 26 065728 qnal jpg '),(141742,'kind',0,1,' image '),(141742,'slug',0,1,''),(141742,'title',0,1,' 22 07 ramsay marketing project page 1 12 '),(141743,'extension',0,1,' jpg '),(141743,'filename',0,1,' 22 07 ramsay marketing project page 1 13 2022 07 26 065735 rgqd jpg '),(141743,'kind',0,1,' image '),(141743,'slug',0,1,''),(141743,'title',0,1,' 22 07 ramsay marketing project page 1 13 '),(141744,'extension',0,1,' jpg '),(141744,'filename',0,1,' 22 07 ramsay marketing project page 1 14 2022 07 26 065740 ktpl jpg '),(141744,'kind',0,1,' image '),(141744,'slug',0,1,''),(141744,'title',0,1,' 22 07 ramsay marketing project page 1 14 '),(141745,'extension',0,1,' jpg '),(141745,'filename',0,1,' 22 07 ramsay marketing project page 3 1 jpg '),(141745,'kind',0,1,' image '),(141745,'slug',0,1,''),(141745,'title',0,1,' 22 07 ramsay marketing project page 3 1 '),(141758,'extension',0,1,' jpg '),(141758,'filename',0,1,' 22 07 greg edm 1 1 jpg '),(141758,'kind',0,1,' image '),(141758,'slug',0,1,''),(141758,'title',0,1,' 22 07 greg edm 1 1 '),(141776,'field',164,1,' a complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements chevron downstream australia appointed new word order to help facilitate the process and undertake important marketing work including taking carriage of promotions of the australian b2b fuels and lubricants division we conducted a competitor analysis to assess competitor brand messaging and positioning interviews with key caltex fuels and lubricants distributors in the b2b market and one on one interviews with the general customers our insights indicated a need for authentic real life marketing collateral with which the audience can connect we also gleaned that the messaging needed to be kept simple we made the creative decision to let the products take a backseat and instead shine a light on the customers businesses and their distributor relationships we worked with a videographer to give the videos a warm and at times heartfelt tone the customers in question are mostly generations old businesses with a story to tell so we told some stories the end result was 60 video variations in a style you wouldnt necessarily associate with marketing around fuel and lubricant products something a little surprising something that stands out from the crowd '),(141776,'slug',0,1,' chevron '),(141776,'title',0,1,' chevron '),(141802,'extension',0,1,' jpg '),(141802,'filename',0,1,' tritium 07 1 jpg '),(141802,'kind',0,1,' image '),(141802,'slug',0,1,''),(141802,'title',0,1,' tritium 07 1 '),(141803,'extension',0,1,' png '),(141803,'filename',0,1,' tritium 07 2 png '),(141803,'kind',0,1,' image '),(141803,'slug',0,1,''),(141803,'title',0,1,' tritium 07 2 '),(141804,'extension',0,1,' png '),(141804,'filename',0,1,' tritium 07 3 png '),(141804,'kind',0,1,' image '),(141804,'slug',0,1,''),(141804,'title',0,1,' tritium 07 3 '),(141805,'extension',0,1,' png '),(141805,'filename',0,1,' tritium 07 4 png '),(141805,'kind',0,1,' image '),(141805,'slug',0,1,''),(141805,'title',0,1,' tritium 07 4 '),(141806,'extension',0,1,' png '),(141806,'filename',0,1,' tritium 07 5 png '),(141806,'kind',0,1,' image '),(141806,'slug',0,1,''),(141806,'title',0,1,' tritium 07 5 '),(141811,'field',164,1,' after a number of years being part of on a multi agency roster new word order won a five way pitch for the entire account responsibilities have included the entire portfolio of new and existing communities brand projects lead generation campaigns and strategic marketing direction our ongoing partnership has resulted in a truly collaborative relationship that continues to grow and evolve weve produced many ground breaking campaigns along the way and if work in progress is any indication the best is most definitely yet to come strategy copywriting video production digital design photography research branding pretty much every tool in the new word order kitbag has been utilised by the retireaustralia marketing team such has been the breadth and depth of our working partnership our full service agency offering creates the perfect platform for strong collaboration as clients such as retireaustralia have the confidence that integration and campaign execution from strategy can be executed more efficiently new word orders branding expertise has been integral to the partnership with retireaustralia weve fully branded and marketed new communities in their growing portfolio establishing the right brand values and voice for each particular project the masterbrand is also being rigorously reviewed to ensure optimal value is being achieved from retireaustralia name weve helped them grow brand awareness and stake their claim as a people business first and property business second in the backdrop of covid 19 this has been a significant branding challenge that our partnership team continues to work on together '),(141811,'slug',0,1,' retireaustralia 2 '),(141811,'title',0,1,' retireaustralia '),(141913,'field',164,1,' we are a brisbane based agency renowned for our evidence based strategic approach to truly wonderful creative work we are strongly purpose driven wholeheartedly committed to making a meaningful difference in the lives of our clients their customers and the community at large our work is rewarding the best part of what we do is doing it together theres nothing quite like a room full of inspired inspiring people united by purpose and passion and were thrilled at the idea of you being a part of that this is a rare opportunity to join a fast growing and supportive agency in a very exciting phase of its evolution a competitive salary will be negotiated everyone at nwo enjoys fantastic benefits from flexibility to bonuses professional development and a comprehensive wellbeing program flexibility and additional leave hybrid working environment with genuine flexibility work from home and our office at greenslopes one day per semester of paid study leave early late and split day options extra day of leave for an extra happy birthday bonus benefits $650 a year via airwallex to spend on you however you choose $50 a month extra $50 in your birthday month professional development work with top executives in wide ranging sectors gain deep expertise across all creative fields flexible teams means youll work on every account paid professional membership of your choice annual $1000 professional development budget learning and development plan for every employee study leave for post graduate study wellbeing weekly or fortnightly 1 1 with direct manager quarterly goal setting and performance review free access to employee assistance program intentional wellbeing at work program including massage and yoga happy friyay and every other day weekly team lunches and drinks quarterly team nights out eofy and christmas staff parties mid year and end of year all team days to rest reflect and plan if this role sounds perfect for you fill in the apply form below and attach your cover letter and a link to your website or portfolio were looking forward to saying hello '),(141913,'slug',0,1,' careers '),(141913,'title',0,1,' careers '),(141914,'field',164,1,''),(141914,'slug',0,1,' update details '),(141914,'title',0,1,' update details '),(141915,'slug',0,1,''),(141916,'slug',0,1,''),(141917,'slug',0,1,''),(141918,'slug',0,1,''),(141919,'slug',0,1,''),(141925,'field',164,1,' uu identified the ekka as an opportunity to engage inform and educate their customers to build a deeper understanding of water security and to set the stage for uu to influence water restrictions down the track through hands on activities and immersive visual displays the ekka was the perfect place to connect with uus communities and reassure them that uu is a safe pair of hands that holds and shapes the future of water security thematically this activation was centred around each individuals connection with water through making people conscious of waters impact on their day to day life we helped them discover how essential water security is and appreciate the role uu plays in protecting our water supply and ultimately the lifestyles and livelihoods of queenslanders the goal of the ekka display was three fold attract people to the space engage them to participate and ensure they absorb the key messaging we were working with an eight metre wide screen so we determined pretty quickly that one very very landscape video wouldnt be the best viewing experience so we did what we do best we got creative we fashioned a collage of videos with various illustrated key messages live action footage and graphic patterns that loop and combine into an engaging eight metre video experience the audience were able to contribute their personal connection with water through sketches and scribbles on magnetic tiles each tile was fixed to the wall to create a crowdsourced water mosaic that grew over the course of the ekka telling true stories of water memories and moments bright colours custom illustration lots of movement and bold statements thats the sweet combination we concocted to communicate some very important key messages to the audience and the icing on top of the strawberry sundae we just had so much fun coming up with the concept and bringing it to life the ekka public holiday didnt hurt either '),(141925,'slug',0,1,' urban utilities '),(141925,'title',0,1,' urban utilities '),(141945,'extension',0,1,' jpg '),(141945,'filename',0,1,' 22 08 ekka marketing website jpg '),(141945,'kind',0,1,' image '),(141945,'slug',0,1,''),(141945,'title',0,1,' 22 08 ekka marketing website '),(141946,'extension',0,1,' jpg '),(141946,'filename',0,1,' 22 08 ekka marketing website2 jpg '),(141946,'kind',0,1,' image '),(141946,'slug',0,1,''),(141946,'title',0,1,' 22 08 ekka marketing website2 '),(141947,'extension',0,1,' jpg '),(141947,'filename',0,1,' 22 08 ekka marketing website3 jpg '),(141947,'kind',0,1,' image '),(141947,'slug',0,1,''),(141947,'title',0,1,' 22 08 ekka marketing website3 '),(141948,'extension',0,1,' jpg '),(141948,'filename',0,1,' 22 08 ekka marketing website4 jpg '),(141948,'kind',0,1,' image '),(141948,'slug',0,1,''),(141948,'title',0,1,' 22 08 ekka marketing website4 '),(141954,'extension',0,1,' jpg '),(141954,'filename',0,1,' 22 07 ycn marketing website 1 jpg '),(141954,'kind',0,1,' image '),(141954,'slug',0,1,''),(141954,'title',0,1,' 22 07 ycn marketing website 1 '),(141957,'extension',0,1,' jpg '),(141957,'filename',0,1,' meet william jpg '),(141957,'kind',0,1,' image '),(141957,'slug',0,1,''),(141957,'title',0,1,' meet william '),(141961,'extension',0,1,' png '),(141961,'filename',0,1,' william png '),(141961,'kind',0,1,' image '),(141961,'slug',0,1,''),(141961,'title',0,1,' william '),(141962,'extension',0,1,' jpg '),(141962,'filename',0,1,' will col 23 jpg '),(141962,'kind',0,1,' image '),(141962,'slug',0,1,''),(141962,'title',0,1,' william 2022 08 16 053458 qrxi '),(141977,'extension',0,1,' jpg '),(141977,'filename',0,1,' nwo seven marketing jpg '),(141977,'kind',0,1,' image '),(141977,'slug',0,1,''),(141977,'title',0,1,' nwo seven marketing '),(141998,'extension',0,1,' jpg '),(141998,'filename',0,1,' 22 08 ekka marketing website5 jpg '),(141998,'kind',0,1,' image '),(141998,'slug',0,1,''),(141998,'title',0,1,' 22 08 ekka marketing website5 '),(142009,'extension',0,1,' jpg '),(142009,'filename',0,1,' 22 07 ycn marketing website 3 jpg '),(142009,'kind',0,1,' image '),(142009,'slug',0,1,''),(142009,'title',0,1,' 22 07 ycn marketing website 3 '),(142011,'extension',0,1,' jpg '),(142011,'filename',0,1,' 22 07 ycn marketing website 4 jpg '),(142011,'kind',0,1,' image '),(142011,'slug',0,1,''),(142011,'title',0,1,' 22 07 ycn marketing website 4 '),(142014,'extension',0,1,' jpg '),(142014,'filename',0,1,' 22 07 ycn marketing website 5 jpg '),(142014,'kind',0,1,' image '),(142014,'slug',0,1,''),(142014,'title',0,1,' 22 07 ycn marketing website 5 '),(142030,'field',164,1,' brisbane north phn asked us to write design and develop a navigator website that doubles as a one stop shop of resources information and services that promote healthy ageing in the brisbane north and moreton bay region the projects goal was to enable people to more proactively manage their own healthcare while also equipping healthcare professional and carers with resources to support their care services working closely with the client team and the council on the ageing our strategists conducted a stakeholder consultation process with community members and health professionals the stakeholders generously shared their expertise and lived experience to help this project reach the communitys specific needs with a particular focus on dementia physical health mental health social connection nutrition and digital skills each aspect of the content writing design and development of the website was informed by insights from the stakeholders to ensure the project would fulfil community needs we made sure the site was easy to use by integrating a very simple user interface into the web design and development user experience and acceptance testing was a key element of ensuring the site would be practical and enjoyable for its audience nothing like this existed before now this project fulfils community needs around healthy ageing in a way that really excited the stakeholders who were involved in the project this kind of work aligns perfectly with our purpose at nwo to make a meaningful difference to peoples lives '),(142030,'slug',0,1,' your care navigator '),(142030,'title',0,1,' your care navigator '),(142036,'field',164,1,' while glengara care has been described as the genuine alternative to aged care it often isnt clear what exactly sets the facility apart from residential aged care facilities the differentiators ultimately come down to the provision of care glengara care offers care that is personal loving and delivered in a manner that preserves the recipients independence the your care factor campaign was required to generate leads and sales while building awareness around glengara care in comparison to some of the well known aged care alternatives the core of the campaign was built from the concept of care we drew out two meanings from your care factor not only the level of care provided by the facility but also the decision making factors that each potential buyer personally cares about the term care factor is deeply familiar perhaps not so much to the 80 year old resident market but more so to their children the key influencers of this campaign we created three television commercials that pose the question of what is your care factor by contrasting the realities of people struggling physically and emotionally in a home that doesnt suit their needs against people receiving the unparalleled care offered at glengara care while the videos showcase glengara cares differentiated care offering the advertisements themselves separate glengara care from the alternatives theyre provocative fresh and engaging this project certainly wasnt an easy one the final product is the result of fierce determination both from nwo and retireaustralia in the face of adversity such as covid 19 restrictions risks and vulnerability the video shoot was rescheduled numerous times and often our careful planning was swapped out for quick thinking and adaptability the end result however was worth every bit of effort '),(142036,'slug',0,1,' glengaracare '),(142036,'title',0,1,' glengara care '),(142038,'field',164,1,' like schools everywhere west moreton anglican college needed to change its plans to bring parents onto campus to experience the school because of the coronavirus this meant the annual open day was cancelled but a few months later when restrictions eased the school had a chance to bring parents back we developed a 16 week plan that timed out the lead up to the modified open day and follow up of leads afterwards it outlined a westmac specific brand campaign that celebrated the westmac way and positioned the school as a unique and desirable offering compared to other schools in the catchment area at the end of the day parents just want their kids to be happy healthy and well westmac is a wonderland for kids complete with an agriculture farm animals and a garden for digging because thats just what kids like doing its the school for real life this campaign included gorgeous hero photography strategic messaging and a series of videos where students talk about their westmac experience the campaign resonated with parents in the catchment and filled the tour we continued to run the campaign for the rest of the year encouraging prospective parents to attend a personal tour '),(142038,'slug',0,1,' west moreton anglican college '),(142038,'title',0,1,' west moreton anglican college '),(142039,'email',0,1,' hello newwordorder com au '),(142039,'firstname',0,1,' hazel '),(142039,'fullname',0,1,' hazel '),(142039,'lastname',0,1,''),(142039,'slug',0,1,''),(142039,'username',0,1,' hazel '),(142040,'slug',0,1,''),(142051,'field',164,1,' uu identified the ekka as an opportunity to engage inform and educate their customers to build a deeper understanding of water security and to set the stage for uu to influence water restrictions down the track through hands on activities and immersive visual displays the ekka was the perfect place to connect with uus communities and reassure them that uu is a safe pair of hands that holds and shapes the future of water security thematically this activation was centred around each individuals connection with water through making people conscious of waters impact on their day to day life we helped them discover how essential water security is and appreciate the role uu plays in protecting our water supply and ultimately the lifestyles and livelihoods of queenslanders the goal of the ekka display was three fold attract people to the space engage them to participate and ensure they absorb the key messaging we were working with an eight metre wide screen so we determined pretty quickly that one very very landscape video wouldnt be the best viewing experience so we did what we do best we got creative we fashioned a collage of videos with various illustrated key messages live action footage and graphic patterns that loop and combine into an engaging eight metre video experience the audience was able to contribute their personal connection with water through sketches and scribbles on magnetic tiles each tile was fixed to the wall to create a crowdsourced water mosaic that grew over the course of the ekka telling true stories of water memories and moments bright colours custom illustration lots of movement and bold statements thats the sweet combination we concocted to communicate some very important key messages to the audience and the icing on top of the strawberry sundae we just had so much fun coming up with the concept and bringing it to life the ekka public holiday didnt hurt either '),(142051,'slug',0,1,' urban utilities '),(142051,'title',0,1,' urban utilities '),(142065,'field',164,1,' the oir asked us to create a behaviour change campaign that connects with queenslanders who ride quad bikes five key messages were at the core of the campaign 1 always wear a helmet 2 keep kids on kid bikes 3 dot double 4 dot overload 5 get proper quad bike training surprised by the fact that quad bikes are the biggest killer in the queensland agriculture industry we chose to make this the focus of the campaign our messaging asked the audience to consider what would your family do if you didt come home safe to cut through to the audience we turned to our tried and true behaviour change methodology we know behaviour is only the surface evidence of a deeper journey attitudinal change is the real target and behaviour change follows if is something as simple as wearing a helmet to unlock attitudinal change we focused on aligning the campaign with the audiences core values and beliefs we just had to understand them and write messaging that connects with who they are the rollout of the campaign required deft thinking to accommodate the budget and some production parameters so we worked up solutions that met these requirements while still reaching strong creative standards digging deeper strategically we challenged the illustrative concept the oir originally briefed instead conceptualising live action stills underlaying animation so the audience could see themselves in the video the campaign features a series of six videos radio and press advertisements posters dl flyers and website and digital assets created under a central concept of come home safe in its entirety the campaign is an emotionally compelling and strategic suite of creative that makes a difference to peoples lives every time a quad bike rider comes home safe '),(142065,'slug',0,1,' office of industrial relations '),(142065,'title',0,1,' office of industrial relations '),(142243,'slug',0,1,' jul 2022 '),(142243,'title',0,1,' jul 2022 '),(142245,'slug',0,1,' aug 2022 '),(142245,'title',0,1,' aug 2022 '),(142247,'slug',0,1,' sep 2022 '),(142247,'title',0,1,' sep 2022 '),(142250,'email',0,1,' michellejonesweb gmail com '),(142250,'firstname',0,1,' michelle '),(142250,'fullname',0,1,' michelle jones '),(142250,'lastname',0,1,' jones '),(142250,'slug',0,1,''),(142250,'username',0,1,' michelle '),(142251,'field',164,1,' surf life saving queensland and the department of agriculture and fisheries are promoting sharksmar messages to primary school aged children in a 12 month educational program they asked us to develop an interactive game that educates kids about sharks and the simple things they can do at the beach to stay safe from shark related incidents kids are typically more interested in sharks than afraid of them so we wanted to nurture that by making the game educational and fun rather than fear based armed with our behaviour change expertise we empowered them with knowledge about how sharks behave such as their feeding times where they live and how they hunt so the kids can make smart choices we consulted with primary school teachers to develop the games tone and language ensuring it was as age appropriate and engaging as possible there are so many ways to approach sharksmart behaviours so we created not one game but two mini games with three modes the first game beach explorer is an open world exploration game set on a beach there are items scattered across the beach like flags water debris and rips that prompt questions related to sharksmart behaviours if the player answers correctly theyre rewarded with a beach badge this game is split into two modes explorer mode and race mode the second game which shark are you asks the players questions about their preferences and human experiences that relate to the behaviours of tiger bull white and hammerhead sharks based on their responses each player is assigned one of the four shark types and provided information about that shark the whole project is elevated by nwos trademark custom illustration and animation which really brings the beach to life we really blew this brief out of the water for a limited budget we built two games from scratch complete with a catchy custom theme song projects like these fun and engaging but with real purpose are why we get out of bed every morning the whole process from conception to delivery was really collaborative with the clients and that definitely shows in the final product '),(142251,'slug',0,1,' shark smart '),(142251,'title',0,1,' surf life saving queensland '),(142252,'extension',0,1,' jpg '),(142252,'filename',0,1,' 22 09 rta website global img jpg '),(142252,'kind',0,1,' image '),(142252,'slug',0,1,''),(142252,'title',0,1,' 22 09 rta website global img '),(142258,'field',164,1,' the queensland government needed to establish a subsidiary entity to carry the planning and transmission connection work for potential pumped hydro projects across queensland our creation of the brand for queensland hydro involved extensive discovery prior to crafting a brand identity designing marketing collateral and copywriting designing and developing a website as we often do we began this project with a comprehensive discovery phase this involved a review of queensland hydros contemporaries and competitive landscape consultation with a first nations advisor on theming and language and stakeholder workshops to clarify the brand personality purpose and objectives our deliverables included a brand name logo visual identity collateral key messaging and content for the website we kept the design fresh and engaging while accommodating the needs of the various stakeholders involved queensland hydro will be a vital component in reaching australias aspirational energy goals over the next few decades pumped hydro is at the centre of cleaning up queenslands energy and we were delighted to play a role in bringing queensland hydro to life '),(142258,'slug',0,1,' queensland hydro '),(142258,'title',0,1,' queensland hydro '),(142281,'email',0,1,' bruce varleyconnell net '),(142281,'firstname',0,1,' test '),(142281,'fullname',0,1,' test '),(142281,'lastname',0,1,''),(142281,'slug',0,1,''),(142281,'username',0,1,' test '),(142375,'field',164,1,' when it comes to behaviour change we know what success and lets face it failure looks like our successful work has seen countless queenslanders quit smoking influenced the behaviours of people experiencing and perpetrating domestic and family violence https newwordorder com au work dfv campaign shaped attitudes towards the covid 19 vaccination debate and encouraged safer transport and travel practice https newwordorder com au work department of transport and main roads the biggest thing weve learned from behaviour change campaigns is youre in it for the long haul people dont change their behaviour overnight especially behaviour around their big life moments it happens incrementally and although the process is long its a rewarding one a good long term behaviour change campaign is broken down into steps focusing on the giant leap of that moment in time we have been running medical mums https nwo staging nwo digital work medical mums as an annual campaign for brisbane north phn since 2016 each year the focus has shifted slightly but the core behaviour change message has remained steadfast what began with live action interviews of gp mums and an indigenous health nurse grew to include a medical dad in the third year and turned into a refreshingly different illustration with a diverse cast of characters in the fourth tackling myths and fear tactics head on in 2020 our messaging cut through covid 19 clutter and encouraged parents to continue their childrens vaccination schedules in spite of hesitancy and uncertainty around the covid 19 vaccine each year moved the conversation along a little further warranting a slightly different approach each time with behaviour change campaigns its not our job to move whole populations from 0 to 100 its to elicit in people the desire to change sustainably so they can lead themselves along the stages of change at their own pace we use nudge and switch models for our behaviour change campaigns first articulated by nobel prize winning behavioural economist richard thaler a nudge is an environmental modification that encourages people to make good decisions like the reminder your dentist sends you to schedule a dental check up nudges exponentially increase the likelihood of people making the behaviour change in that instance but it means they rely on your reminders for any ongoing change switches are simple activities or thought changers that encourage people to keep going with their determination to change allowing them to take responsibility for their behaviours metrics are a vital element of a behaviour change campaign you have to measure the influence youve had on behaviour to know if your campaign is working its just as important to track your metrics before you start the campaign as it is to track them after its complete your metrics will depend greatly on the behaviour itself i e if you want people to stop flushing junk down the toilet https nwo staging nwo digital work no 3 campaign measure how often toilets get clogged in the community if youre stuck these are some handy general measurements social media analytics to track engagements clicks on your website purchases of your products and services no matter what product you sell service you deliver or behaviour you change your audience is always going to be human beings which means the result will never be perfection perfect complete and consistent change is rarely achievable if thats your goal behaviour change campaigns arent going to feel rewarding at all but every step in the right direction is a win so keep your goals big but realistic and give people credit for the things they do achieve instead of focusing on where they fall short champion every change no matter how small champion your audience through each small step of the behaviour change process and celebrate your wins big and small learn to appreciate every bit of influence you have over helping people make better choices and youll find behaviour change campaigns are the most rewarding of all '),(142375,'slug',0,1,' behaviour change a long haul 2 '),(142375,'title',0,1,' behaviour change a long haul '),(142377,'field',164,1,' when it comes to behaviour change we know what success and lets face it failure looks like our successful work has seen countless queenslanders quit smoking influenced the behaviours of people experiencing and perpetrating domestic and family violence https newwordorder com au work dfv campaign shaped attitudes towards the covid 19 vaccination debate and encouraged safer transport and travel practice https newwordorder com au work department of transport and main roads the biggest thing weve learned from behaviour change campaigns is youre in it for the long haul people dont change their behaviour overnight especially behaviour around their big life moments it happens incrementally and although the process is long its a rewarding one a good long term behaviour change campaign is broken down into steps focusing on the giant leap of that moment in time we have been running medical mums https nwo staging nwo digital work medical mums as an annual campaign for brisbane north phn since 2016 each year the focus has shifted slightly but the core behaviour change message has remained steadfast what began with live action interviews of gp mums and an indigenous health nurse grew to include a medical dad in the third year and turned into a refreshingly different illustration with a diverse cast of characters in the fourth tackling myths and fear tactics head on in 2020 our messaging cut through covid 19 clutter and encouraged parents to continue their childrens vaccination schedules in spite of hesitancy and uncertainty around the covid 19 vaccine each year moved the conversation along a little further warranting a slightly different approach each time with behaviour change campaigns its not our job to move whole populations from 0 to 100 its to elicit in people the desire to change sustainably so they can lead themselves along the stages of change at their own pace we use nudge and switch models for our behaviour change campaigns first articulated by nobel prize winning behavioural economist richard thaler a nudge is an environmental modification that encourages people to make good decisions like the reminder your dentist sends you to schedule a dental check up nudges exponentially increase the likelihood of people making the behaviour change in that instance but it means they rely on your reminders for any ongoing change switches are simple activities or thought changers that encourage people to keep going with their determination to change allowing them to take responsibility for their behaviours metrics are a vital element of a behaviour change campaign you have to measure the influence youve had on behaviour to know if your campaign is working its just as important to track your metrics before you start the campaign as it is to track them after its complete your metrics will depend greatly on the behaviour itself i e if you want people to stop flushing junk down the toilet https nwo staging nwo digital work no 3 campaign measure how often toilets get clogged in the community if youre stuck these are some handy general measurements social media analytics to track engagements clicks on your website purchases of your products and services no matter what product you sell service you deliver or behaviour you change your audience is always going to be human beings which means the result will never be perfection perfect complete and consistent change is rarely achievable if thats your goal behaviour change campaigns arent going to feel rewarding at all but every step in the right direction is a win so keep your goals big but realistic and give people credit for the things they do achieve instead of focusing on where they fall short champion every change no matter how small champion your audience through each small step of the behaviour change process and celebrate your wins big and small learn to appreciate every bit of influence you have over helping people make better choices and youll find behaviour change campaigns are the most rewarding of all '),(142377,'slug',0,1,' behaviour change a long haul 2 '),(142377,'title',0,1,' behaviour change a long haul '),(142381,'extension',0,1,' jpg '),(142381,'filename',0,1,' ramsay carousels jpg '),(142381,'kind',0,1,' image '),(142381,'slug',0,1,''),(142381,'title',0,1,' ramsay carousels '),(142387,'field',164,1,' you probably already know your brand is more than just your logo its how you look and sound what you say and how you behave and its the story people hear or are told when they interact with any point of your business or organisation so yes brand is powerful but how specifically can your brand make or break your business outcomes quality is a great place to start because everybody values it even when they are price driven to do business with you means your customer is hoping or expecting youll live up to a quality expectation regardless of how much you cost your reliability and trustworthiness shine through in the quality of your branding its professional design messaging imagery and product and service delivery suggest a lot about the quality of your business you may not realise how much your brand says about you just like quality your brand communicates subtle cues on your character your way of working and whether you are quirky fun classy or expensive for example think about how much a restaurants brand reputation relies on subtle cues like the dining rooms ambience design of the menu or willingness to cater to dietary requirements like it or not customers subliminally build cues into an overall positive or negative perception of your brand and if your brand is giving off the wrong message it will damage your business by attracting the wrong people or repelling the right ones does your brand say what you do how many more customers could quickly understand your offering and start working with you if you made it easier to understand your product or service offering from even just a name and tagline and when you have sub brands good brand architecture helps people understand how it all fits together clears up confusion and makes it easier for customers to find what they want in your offering brand is not just for your customers your own people respond both consciously and subconsciously in many ways to your brand and draw a lot of meaning value and purpose from what your brand is about they can represent and deliver your brand experience you can develop an employer brand which is usually an extension of the main brand shape it to suit your inhouse story guide your culture and boost engagement ownership and recruitment in tight labour markets your customers might say you were wonderful in your presentation advertising or product delivery but who are you again being remembered by your experience isnt enough you need to be found and remembered by name whether or not youre advertising digitally its not actually all about the click urls still get keyed in manually especially from non digital advertising or other brand touchpoints and the right name must be easy to remember and type what makes you stand out from the competition every business needs to stand out even if that manifests differently for each looking unique showing the potential to offer something the others dont and being the specific solution to a customers needs it all helps to sell the business and while this sounds more like marketing brand is key to giving marketing a distinctive story to tell are you using any of the above to give your brand a competitive advantage if your competition is doing better at any or all of the above then youre giving them the advantage and will lose business to them conversely investing in brand will give you the advantage '),(142387,'slug',0,1,' behaviour change a long haul '),(142387,'title',0,1,' the ways brands make or break business outcomes '),(142436,'extension',0,1,' jpg '),(142436,'filename',0,1,' istock 157531192 jpg '),(142436,'kind',0,1,' image '),(142436,'slug',0,1,''),(142436,'title',0,1,' i stock 157531192 '),(142440,'extension',0,1,' jpg '),(142440,'filename',0,1,' istock 157531192 2022 09 20 005211 dufd jpg '),(142440,'kind',0,1,' image '),(142440,'slug',0,1,''),(142440,'title',0,1,' i stock 157531192 '),(142443,'extension',0,1,' jpg '),(142443,'filename',0,1,' istock 157531192 2022 09 20 005338 cntb jpg '),(142443,'kind',0,1,' image '),(142443,'slug',0,1,''),(142443,'title',0,1,' i stock 157531192 '),(142449,'extension',0,1,' jpg '),(142449,'filename',0,1,' istock 157531192 2022 09 20 005526 isig jpg '),(142449,'kind',0,1,' image '),(142449,'slug',0,1,''),(142449,'title',0,1,' i stock 157531192 '),(142451,'extension',0,1,' jpg '),(142451,'filename',0,1,' istock 157531192 2022 09 20 005553 qwkt jpg '),(142451,'kind',0,1,' image '),(142451,'slug',0,1,''),(142451,'title',0,1,' i stock 157531192 '),(142564,'extension',0,1,' jpg '),(142564,'filename',0,1,' untitled artwork 10 jpg '),(142564,'kind',0,1,' image '),(142564,'slug',0,1,''),(142564,'title',0,1,' untitled artwork 10 '),(142566,'extension',0,1,' jpg '),(142566,'filename',0,1,' untitled artwork 10 2022 09 20 032947 cwfz jpg '),(142566,'kind',0,1,' image '),(142566,'slug',0,1,''),(142566,'title',0,1,' untitled artwork 10 '),(142571,'extension',0,1,' jpg '),(142571,'filename',0,1,' meet marnie jpg '),(142571,'kind',0,1,' image '),(142571,'slug',0,1,''),(142571,'title',0,1,' meet marnie '),(142595,'extension',0,1,' jpg '),(142595,'filename',0,1,' boy meets universe 1 jpg '),(142595,'kind',0,1,' image '),(142595,'slug',0,1,''),(142595,'title',0,1,' boy meets universe 1 '),(142596,'extension',0,1,' jpg '),(142596,'filename',0,1,' bullet train book jpg '),(142596,'kind',0,1,' image '),(142596,'slug',0,1,''),(142596,'title',0,1,' bullet train book '),(142598,'extension',0,1,' jpg '),(142598,'filename',0,1,' stanley tucci jpg '),(142598,'kind',0,1,' image '),(142598,'slug',0,1,''),(142598,'title',0,1,' stanley tucci '),(142605,'extension',0,1,' jpg '),(142605,'filename',0,1,' meet kimi jpg '),(142605,'kind',0,1,' image '),(142605,'slug',0,1,''),(142605,'title',0,1,' meet kimi '),(142642,'slug',0,1,''),(142643,'slug',0,1,''),(142644,'slug',0,1,''),(142645,'slug',0,1,''),(142648,'extension',0,1,' jpg '),(142648,'filename',0,1,' hazel col 23 jpg '),(142648,'kind',0,1,' image '),(142648,'slug',0,1,''),(142648,'title',0,1,' nwo 200618 3030 e1551914831676 600x600 '),(142651,'extension',0,1,' jpg '),(142651,'filename',0,1,' 22 09 qld hydro website jpg '),(142651,'kind',0,1,' image '),(142651,'slug',0,1,''),(142651,'title',0,1,' 22 09 qld hydro website '),(142652,'extension',0,1,' jpg '),(142652,'filename',0,1,' 22 09 qld hydro website2 jpg '),(142652,'kind',0,1,' image '),(142652,'slug',0,1,''),(142652,'title',0,1,' 22 09 qld hydro website2 '),(142653,'extension',0,1,' jpg '),(142653,'filename',0,1,' 22 09 qld hydro website3 jpg '),(142653,'kind',0,1,' image '),(142653,'slug',0,1,''),(142653,'title',0,1,' 22 09 qld hydro website3 '),(142654,'extension',0,1,' jpg '),(142654,'filename',0,1,' 22 09 qld hydro website4 jpg '),(142654,'kind',0,1,' image '),(142654,'slug',0,1,''),(142654,'title',0,1,' 22 09 qld hydro website4 '),(142659,'extension',0,1,' jpg '),(142659,'filename',0,1,' 22 09 qld hydro website collat jpg '),(142659,'kind',0,1,' image '),(142659,'slug',0,1,''),(142659,'title',0,1,' 22 09 qld hydro website collat '),(142665,'extension',0,1,' jpg '),(142665,'filename',0,1,' 22 09 qld hydro website collat2 jpg '),(142665,'kind',0,1,' image '),(142665,'slug',0,1,''),(142665,'title',0,1,' 22 09 qld hydro website collat2 '),(142674,'extension',0,1,' jpg '),(142674,'filename',0,1,' untitled artwork 11 jpg '),(142674,'kind',0,1,' image '),(142674,'slug',0,1,''),(142674,'title',0,1,' untitled artwork 11 '),(142676,'field',164,1,' the rta needed to inform the public about rental reform changes coming into effect on 1 october 2022 with such a broad audience renters landlords and property managers the rta needed an explanatory tool that relayed the information in an easily digestible engaging and inclusive way a collection of animated explainer videos was the obvious choice the videos needed a friendly informative tone that connected with a vast range of people we broke the videos down into sections that addressed each of the three key audiences individually renters then landlords then property managers the audiences were represented by a diverse and inclusive suite of illustrated characters illustration was the real standout for this project our illustrative style helped us depict the emotion and shared experience of renting from all sides of the tenancy relationship the animation represented various age groups ethnicities and occupations the law changes are explained by friendly engaging voiceovers that guide the videos it was a pleasure to work with the team at rta to help inform queenslanders about the new changes to renting laws the rta has worked hard to make sure renting is fair for all and it was a joy to be part of bringing this to life '),(142676,'slug',0,1,' residential tenancies authority 2 '),(142676,'title',0,1,' residential tenancies authority '),(142702,'extension',0,1,' jpg '),(142702,'filename',0,1,' 22 09 qld hydro website 2022 10 10 055027 yuxp jpg '),(142702,'kind',0,1,' image '),(142702,'slug',0,1,''),(142702,'title',0,1,' 22 09 qld hydro website '),(142716,'email',0,1,' mike newwordorder com au '),(142716,'firstname',0,1,' mike '),(142716,'fullname',0,1,' mike ballantyne '),(142716,'lastname',0,1,' ballantyne '),(142716,'slug',0,1,''),(142716,'username',0,1,' mike '),(142717,'field',164,1,' advertising agency and client retainer agreements sometimes get a bad rap from both sides of the equation there can be a fear about the value factor clients might be concerned about outlaying a set amount and not seeing value delivered while agencies worry about over servicing over delivering and having to absorb costs the truth as always lies somewhere in the middle a good agency retainer agreement that is well scoped and structured will provide fair value to both parties along with other significant benefits here at new word order we operate on a retainer basis with a number of clients not all as other clients prefer the fee for project model but our experience with retainers has given us a good appreciation of why they work and how to avoid pitfalls lets look at the benefits of an agency retainer agreement supplier relationships built over time offer incredible advantages for your business and add to your bottom line when your agency works constantly with you and becomes familiar with your tone style and business objectives youll see huge efficiencies and autonomy that save you time and money agencies on the whole are very good at diving into your business and learning intimate details about your brand business operations objectives and your sector as whole this is accentuated when there is a retainer in place as the commitment goes way beyond a specific project needs when you operate on a project basis you may only be afforded certain service functions to fulfil that project e g the digital team for a website build but when youre working under a retainer arrangement all of the agencys services are available to you this could include strategy branding copywriting design digital pr media and any other functions or expertise the agency houses few agencies are waiting by the phone for the client to ring with a new project so they can leap straight onto it there are always jobs on the go but on a retainer your work is prioritised so quick turnarounds can be achieved if required our agreement with retainer clients is that their work happens when it needs to happen so they jump the queue whenever necessary for clients the assurance of having a set monthly cost is often the determining reason for establishing a retainer with an agency the no surprise invoices guarantee is worth the price of admission usually retainers also mean lower hourly rates than the rack rates as agencies know what income is being delivered and can resource accordingly a normal part of our retainer agreements is for regular reporting of how hours and services are being spent in any given month so clients remain fully informed at all times never will you get to the end of the month and wonder what the agency has been doing for your investment retainer reconciliations are standard practice long term relationships provide the stability required for agencies to focus more clearly on business outcomes rather than project deliverables under a retainer the relationship is more likely to shift from being transactional and project driven to strategic rather than just being project responsive your agency can adopt a proactive approach to your marketing strategy and cultivate more creative growth opportunities it also allows you to use your retained agency across all your needs so they can holistically contribute to the success of your business this is more efficient than using multiple agencies for different projects as no single agency is then responsible for overall strategy measurement and achievement of marketing goals dont get caught up in the $10 000 figure retainer figures are mostly determined by the clients marketing budget and your needs so whether you need to halve it double it quarter it or triple it it doesnt matter we just want to provide a guide on what you can expect from a $10 000 monthly retainer budget at new word order 12 hours a month 18 hours a month 4 hours a month 6 hours a month 16 hours a month compare this to the cost of employing a marketing manager and contracting an agency to work on ad hoc projects and the value is plain to see want to know more call us for a confidential chat about retainers or other ways of working with new word order '),(142717,'slug',0,1,' what agency retainer gets you '),(142717,'title',0,1,' what a $10 000 per month ad agency retainer gets you '),(142722,'field',164,1,' you probably already know your brand is more than just your logo its how you look and sound what you say and how you behave and its the story people hear or are told when they interact with any point of your business or organisation so yes brand is powerful but how specifically can your brand make or break your business quality is a great place to start because everybody values it even when they are price driven to do business with you means your customer is hoping or expecting youll live up to a quality expectation regardless of how much you cost your reliability and trustworthiness shine through in the quality of your branding its professional design messaging imagery and product and service delivery suggest a lot about the quality of your business you may not realise how much your brand says about you just like quality your brand communicates subtle cues on your character your way of working and whether you are quirky fun classy or expensive for example think about how much a restaurants brand reputation relies on subtle cues like the dining rooms ambiance menu design or willingness to cater to dietary requirements like it or not customers subliminally build cues into an overall positive or negative perception of your brand and if your brand is giving off the wrong message it will damage your business by attracting the wrong people or repelling the right ones does your brand say what you do how many more customers could quickly understand your offering and start working with you if you made it easier to understand your product or service offering from even just a name and tagline and when you have sub brands good brand architecture helps people understand how it all fits together clears up confusion and makes it easier for customers to find what they want in your offering brand is not just for your customers your own people respond both consciously and subconsciously in many ways to your brand and draw a lot of meaning value and purpose from what your brand is about they can represent and deliver your brand experience you can develop an employer brand which is usually an extension of the main brand shape it to suit your inhouse story guide your culture and boost engagement ownership and recruitment in tight labour markets how many times have you enjoyed a tv commercial only to forget what brand was advertising bringing a brand experience isnt enough you need to be found and remembered by name whether or not youre advertising digitally its not actually all about the click urls still get keyed in manually especially from non digital advertising or other brand touchpoints and the right name must be easy to remember and type what makes you stand out from your competition every business needs to stand out even if that manifests differently for each looking unique showing the potential to offer something the others dont and being the specific solution to a customers needs it all helps to sell the business and while this sounds more like marketing brand is key to giving marketing a distinctive story to tell are you using any of the above to give your brand a competitive advantage if your competition is doing better at any or all of the above then youre giving them the advantage and will lose business to them conversely investing in brand will give you the edge never forget even if you dont see anything wrong with your brand your staff and customers might have a different perspective getting an unfiltered opinion from them could help you make powerful changes to your brand and in turn your business '),(142722,'slug',0,1,' the ways brands make or break business outcomes 2 2 '),(142722,'title',0,1,' the ways brands make or break businesses '),(142751,'field',164,1,' advertising agency and client retainer agreements sometimes get a bad rap from both sides of the equation there can be a fear about the value factor clients might be concerned about outlaying a set amount and not seeing value delivered while agencies worry about over servicing over delivering and having to absorb costs the truth as always lies somewhere in the middle a good agency retainer agreement that is well scoped and structured will provide fair value to both parties along with other significant benefits here at new word order we operate on a retainer basis with a number of clients not all as other clients prefer the fee for project model but our experience with retainers has given us a good appreciation of why they work and how to avoid pitfalls lets look at the benefits of an agency retainer agreement supplier relationships built over time offer incredible advantages for your business and add to your bottom line when your agency works constantly with you and becomes familiar with your tone style and business objectives youll see huge efficiencies and autonomy that save you time and money agencies on the whole are very good at diving into your business and learning intimate details about your brand business operations objectives and your sector as whole this is accentuated when there is a retainer in place as the commitment goes way beyond a specific project needs when you operate on a project basis you may only be afforded certain service functions to fulfil that project e g the digital team for a website build but when youre working under a retainer arrangement all of the agencys services are available to you this could include strategy branding copywriting design digital pr media and any other functions or expertise the agency houses few agencies are waiting by the phone for the client to ring with a new project so they can leap straight onto it there are always jobs on the go but on a retainer your work is prioritised so quick turnarounds can be achieved if required our agreement with retainer clients is that their work happens when it needs to happen so they jump the queue whenever necessary for clients the assurance of having a set monthly cost is often the determining reason for establishing a retainer with an agency the no surprise invoices guarantee is worth the price of admission usually retainers also mean lower hourly rates than the rack rates as agencies know what income is being delivered and can resource accordingly a normal part of our retainer agreements is for regular reporting of how hours and services are being spent in any given month so clients remain fully informed at all times never will you get to the end of the month and wonder what the agency has been doing for your investment retainer reconciliations are standard practice long term relationships provide the stability required for agencies to focus more clearly on business outcomes rather than project deliverables under a retainer the relationship is more likely to shift from being transactional and project driven to strategic rather than just being project responsive your agency can adopt a proactive approach to your marketing strategy and cultivate more creative growth opportunities it also allows you to use your retained agency across all your needs so they can holistically contribute to the success of your business this is more efficient than using multiple agencies for different projects as no single agency is then responsible for overall strategy measurement and achievement of marketing goals dont get caught up in the $10 000 figure retainer figures are mostly determined by the clients marketing budget and your needs so whether you need to halve it double it quarter it or triple it it doesnt matter we just want to provide a guide on what you can expect from a $10 000 monthly retainer budget at new word order 12 hours a month 18 hours a month 4 hours a month 6 hours a month 16 hours a month compare this to the cost of employing a marketing manager and contracting an agency to work on ad hoc projects and the value is plain to see want to know more call us for a confidential chat about retainers or other ways of working with new word order '),(142751,'slug',0,1,' what agency retainer gets you '),(142751,'title',0,1,' what a $10 000 per month ad agency retainer gets you '),(142754,'field',164,1,' advertising agency and client retainer agreements sometimes get a bad rap from both sides of the equation there can be a fear about the value factor clients might be concerned about outlaying a set amount and not seeing value delivered while agencies worry about over servicing over delivering and having to absorb costs the truth as always lies somewhere in the middle a good agency retainer agreement that is well scoped and structured will provide fair value to both parties along with other significant benefits here at new word order we operate on a retainer basis with a number of clients not all as other clients prefer the fee for project model but our experience with retainers has given us a good appreciation of why they work and how to avoid pitfalls lets look at the benefits of an agency retainer agreement supplier relationships built over time offer incredible advantages for your business and add to your bottom line when your agency works constantly with you and becomes familiar with your tone style and business objectives youll see huge efficiencies and autonomy that save you time and money agencies on the whole are very good at diving into your business and learning intimate details about your brand business operations objectives and your sector as whole this is accentuated when there is a retainer in place as the commitment goes way beyond a specific project needs when you operate on a project basis you may only be afforded certain service functions to fulfil that project e g the digital team for a website build but when youre working under a retainer arrangement all of the agencys services are available to you this could include strategy branding copywriting design digital pr media and any other functions or expertise the agency houses few agencies are waiting by the phone for the client to ring with a new project so they can leap straight onto it there are always jobs on the go but on a retainer your work is prioritised so quick turnarounds can be achieved if required our agreement with retainer clients is that their work happens when it needs to happen so they jump the queue whenever necessary for clients the assurance of having a set monthly cost is often the determining reason for establishing a retainer with an agency the no surprise invoices guarantee is worth the price of admission usually retainers also mean lower hourly rates than the rack rates as agencies know what income is being delivered and can resource accordingly a normal part of our retainer agreements is for regular reporting of how hours and services are being spent in any given month so clients remain fully informed at all times never will you get to the end of the month and wonder what the agency has been doing for your investment retainer reconciliations are standard practice long term relationships provide the stability required for agencies to focus more clearly on business outcomes rather than project deliverables under a retainer the relationship is more likely to shift from being transactional and project driven to strategic rather than just being project responsive your agency can adopt a proactive approach to your marketing strategy and cultivate more creative growth opportunities it also allows you to use your retained agency across all your needs so they can holistically contribute to the success of your business this is more efficient than using multiple agencies for different projects as no single agency is then responsible for overall strategy measurement and achievement of marketing goals dont get caught up in the $10 000 figure retainer figures are mostly determined by the clients marketing budget and your needs so whether you need to halve it double it quarter it or triple it it doesnt matter we just want to provide a guide on what you can expect from a $10 000 monthly retainer budget at new word order 12 hours a month 18 hours a month 4 hours a month 6 hours a month 16 hours a month compare this to the cost of employing a marketing manager and contracting an agency to work on ad hoc projects and the value is plain to see want to know more call us for a confidential chat about retainers or other ways of working with new word order '),(142754,'slug',0,1,' what agency retainer gets you '),(142754,'title',0,1,' what a $10 000 per month ad agency retainer gets you '),(142755,'field',164,1,' to help slow the spread of covid 19 queenslanders are spending more time at home but home isnt always a safe place everyone deserves to feel safe domestic and family violence is never acceptable help and support are available this is the campaign message the queensland government commissioned us to develop as the impact of covid 19 rippled across our state we started the project by researching dfv campaigns in australia and around the world our diverse target market included adult queenslanders 18 who are affected by domestic and family violence people experiencing domestic and family violence people who become aware of domestic and family violence occurring young queenslanders 13 17 years old who may be affected by domestic and family violence in their household rather than describe exactly what dfv might look like the scripts and campaign advertisements echo the thoughts and feelings of those experiencing or observing dfv the copy style is concise informal and written to an individual dfv is complex and often hard to identify we unpacked the different dimensions of dfv and always pointed the reader or viewer to help and support our messages were targeted to a diverse queensland audience we aimed to capture the human experience and emotions of dfv through the voice and style of the copy our creative team completed an environmental scan to develop three design concepts with strategic choices in colours symbols typography and iconography the icons are simple and symbolic we were careful to avoid using the human figure or gender specific shapes to symbolise violent or threatening behaviours instead our goal was to capture the far reaching effect of domestic violence in the home and family through clean and minimal iconography colours and shapes we used brand colours strategically ensuring they were striking but not aggressive or alarming wherever possible we avoided dark colours and shadows when directing the animation style we wanted to convey the key messages of the campaign clearly and quickly the morphing animation style is eye catching and interesting the morphing shapes also efficiently unpack important messages to the viewer complementing and supporting the messages in the video voiceover after the success of our 2020 launch we rolled out a new iteration in 2021 that focused more on the non physical forms of domestic and family violence this includes behaviour around controlling or monitoring finances technology and social interactions our goal to raise awareness and understanding of these forms of abuse and communicate the seriousness of these behaviours work of this kind speaks straight to our purpose as an agency to make a meaningful impact to peoples lives our team is proud to have been involved supporting families in our local community '),(142755,'slug',0,1,' dfv campaign '),(142755,'title',0,1,' domestic and family violence '),(142756,'field',164,1,' in 2015 market research and immunisation rates across brisbane north phns catchment were showing the anti vax movement was taking hold while parents from lower socio economic backgrounds were responding to the australian governments no jab no pay rules those not using daycare including many from among the wealthier suburbs were holding their ground we determined from research that parents would respond to their gps opinion and developed a behaviour change campaign to encourage conversations between parents and medical professionals around immunisation and overcome objections to it we harnessed the gp medical voice and added extra credibility by finding medical professionals who were also parents under the heading of medical mums we found two gps and one indigenous health nurse to become the faces and voice of the campaign each discussed hot topics as well as the benefits of immunisation drawing on their own beliefs and practices as parents as well as their medical training medical mums was launched during immunisation week the creative was still fresh and effective for the target group and we ran the campaign again we added stuart our honorary medical dad it was time to mix up the messaging and creative so we developed a vaccination myth busting video featuring illustration a move away from the previous live action ads with covid 19 there was new vaccination messaging clutter to cut through we encouraged our market to keep up to date with their routine vaccinations funding was initially approved for five years but our campaign has been so successful the phn has been provided with funding for an additional year we will launch a new iteration in the coming months we launched the campaign in immunisation week in 2016 and have revised it for relaunch every year since results showed immunisation levels increased after the campaign each year and our has client received extensive positive feedback including from the queensland minister for health '),(142756,'slug',0,1,' medical mums '),(142756,'title',0,1,' medical mums '),(142764,'extension',0,1,' jpg '),(142764,'filename',0,1,' losing face jpg '),(142764,'kind',0,1,' image '),(142764,'slug',0,1,''),(142764,'title',0,1,' losing face '),(142775,'extension',0,1,' jpg '),(142775,'filename',0,1,' 22 10 retainer image 1 1 jpg '),(142775,'kind',0,1,' image '),(142775,'slug',0,1,''),(142775,'title',0,1,' 22 10 retainer image 1 1 '),(142776,'extension',0,1,' jpg '),(142776,'filename',0,1,' 22 10 retainer image 1 2 jpg '),(142776,'kind',0,1,' image '),(142776,'slug',0,1,''),(142776,'title',0,1,' 22 10 retainer image 1 2 '),(142777,'extension',0,1,' jpg '),(142777,'filename',0,1,' 22 10 retainer image 1 12 jpg '),(142777,'kind',0,1,' image '),(142777,'slug',0,1,''),(142777,'title',0,1,' 22 10 retainer image 1 12 '),(142779,'field',164,1,' advertising agency and client retainer agreements sometimes get a bad rap from both sides of the equation there can be a fear about the value factor clients might be concerned about outlaying a set amount and not seeing value delivered while agencies worry about over servicing over delivering and having to absorb costs the truth as always lies somewhere in the middle a good agency retainer agreement that is well scoped and structured will provide fair value to both parties along with other significant benefits here at new word order we operate on a retainer basis with a number of clients not all as other clients prefer the fee for project model but our experience with retainers has given us a good appreciation of why they work and how to avoid pitfalls lets look at the benefits of an agency retainer agreement supplier relationships built over time offer incredible advantages for your business and add to your bottom line when your agency works constantly with you and becomes familiar with your tone style and business objectives youll see huge efficiencies and autonomy that save you time and money agencies on the whole are very good at diving into your business and learning intimate details about your brand business operations objectives and your sector as whole this is accentuated when there is a retainer in place as the commitment goes way beyond a specific project needs when you operate on a project basis you may only be afforded certain service functions to fulfil that project e g the digital team for a website build but when youre working under a retainer arrangement all of the agencys services are available to you this could include strategy branding copywriting design digital pr media and any other functions or expertise the agency houses few agencies are waiting by the phone for the client to ring with a new project so they can leap straight onto it there are always jobs on the go but on a retainer your work is prioritised so quick turnarounds can be achieved if required our agreement with retainer clients is that their work happens when it needs to happen so they jump the queue whenever necessary for clients the assurance of having a set monthly cost is often the determining reason for establishing a retainer with an agency the no surprise invoices guarantee is worth the price of admission usually retainers also mean lower hourly rates than the rack rates as agencies know what income is being delivered and can resource accordingly a normal part of our retainer agreements is for regular reporting of how hours and services are being spent in any given month so clients remain fully informed at all times never will you get to the end of the month and wonder what the agency has been doing for your investment retainer reconciliations are standard practice long term relationships provide the stability required for agencies to focus more clearly on business outcomes rather than project deliverables under a retainer the relationship is more likely to shift from being transactional and project driven to strategic rather than just being project responsive your agency can adopt a proactive approach to your marketing strategy and cultivate more creative growth opportunities it also allows you to use your retained agency across all your needs so they can holistically contribute to the success of your business this is more efficient than using multiple agencies for different projects as no single agency is then responsible for overall strategy measurement and achievement of marketing goals dont get caught up in the $10 000 figure retainer figures are mostly determined by the clients marketing budget and your needs so whether you need to halve it double it quarter it or triple it it doesnt matter we just want to provide a guide on what you can expect from a $10 000 monthly retainer budget at new word order 12 hours a month 18 hours a month 4 hours a month 6 hours a month 16 hours a month compare this to the cost of employing a marketing manager and contracting an agency to work on ad hoc projects and the value is plain to see want to know more call us for a confidential chat about retainers or other ways of working with new word order '),(142779,'slug',0,1,' what agency retainer gets you '),(142779,'title',0,1,' what a $10 000 per month ad agency retainer gets you '),(142789,'field',164,1,' vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor nullam id dolor id nibh ultricies vehicula ut id elit curabitur blandit tempus porttitor donec id elit non mi porta gravida at eget metus cras justo odio dapibus ac facilisis in egestas eget quam '),(142789,'slug',0,1,' careers '),(142789,'title',0,1,' careers '),(142801,'field',164,1,' we proudly worked with queensland aboriginal and islander health council qaihc to get this campaign and website out in the world in record time qaihc is a leadership and policy organisation representing all aboriginal and torres strait islander community controlled health organisations atsiccho in queensland at both a state and national level at the core is qaihcs vision is to eliminate the disparities in health and wellbeing experienced by aboriginal and torres strait islander peoples in queensland the make the choice covid 19 vaccine communications campaign was collaboration of qaihc queensland health the institute of urban indigenous health and new word order we designed and developed a simple website to be a trusted source of information pertaining to the covid 19 vaccination specifically geared towards aboriginal and torres strait islander peoples makethechoice com au https www makethechoice com au is all about promoting self determination by providing the right information to the right people at the right time communities know what is best for them '),(142801,'slug',0,1,' queensland aboriginal and islander health council '),(142801,'title',0,1,' queensland aboriginal and islander health council '),(142802,'extension',0,1,' jpg '),(142802,'filename',0,1,' 21 qaihc edm jpg '),(142802,'kind',0,1,' image '),(142802,'slug',0,1,''),(142802,'title',0,1,' 21 qaihc edm '),(142807,'extension',0,1,' jpg '),(142807,'filename',0,1,' qld hydro website jpg '),(142807,'kind',0,1,' image '),(142807,'slug',0,1,''),(142807,'title',0,1,' qld hydro website '),(142810,'extension',0,1,' jpg '),(142810,'filename',0,1,' 22 09 qld hydro website logos jpg '),(142810,'kind',0,1,' image '),(142810,'slug',0,1,''),(142810,'title',0,1,' 22 09 qld hydro website logos '),(142813,'extension',0,1,' jpg '),(142813,'filename',0,1,' 22 09 qld hydro website image jpg '),(142813,'kind',0,1,' image '),(142813,'slug',0,1,''),(142813,'title',0,1,' 22 09 qld hydro website image '),(142816,'extension',0,1,' jpg '),(142816,'filename',0,1,' 22 09 qld hydro website lgoos jpg '),(142816,'kind',0,1,' image '),(142816,'slug',0,1,''),(142816,'title',0,1,' 22 09 qld hydro website lgoos '),(142819,'extension',0,1,' jpg '),(142819,'filename',0,1,' 22 08 ekka marketing website2 2022 10 24 002545 aogm jpg '),(142819,'kind',0,1,' image '),(142819,'slug',0,1,''),(142819,'title',0,1,' 22 08 ekka marketing website2 '),(142821,'extension',0,1,' pdf '),(142821,'filename',0,1,' nwo customercharter2022 pdf '),(142821,'kind',0,1,' pdf '),(142821,'slug',0,1,''),(142821,'title',0,1,' nwo customer charter2022 '),(142823,'extension',0,1,' jpg '),(142823,'filename',0,1,' 22 10 custom illo blog 1 1 jpg '),(142823,'kind',0,1,' image '),(142823,'slug',0,1,''),(142823,'title',0,1,' 22 10 custom illo blog 1 1 '),(142824,'extension',0,1,' jpg '),(142824,'filename',0,1,' 22 10 custom illo blog 1 12 jpg '),(142824,'kind',0,1,' image '),(142824,'slug',0,1,''),(142824,'title',0,1,' 22 10 custom illo blog 1 12 '),(142830,'extension',0,1,' jpg '),(142830,'filename',0,1,' 22 10 custom illo blog square jpg '),(142830,'kind',0,1,' image '),(142830,'slug',0,1,''),(142830,'title',0,1,' 22 10 custom illo blog square '),(142831,'extension',0,1,' jpg '),(142831,'filename',0,1,' 22 10 custom illo blog 1 13 header jpg '),(142831,'kind',0,1,' image '),(142831,'slug',0,1,''),(142831,'title',0,1,' 22 10 custom illo blog 1 13 header '),(142833,'field',164,1,' one of the key challenges for olgr is managing the dual roles of being the industry regulator and minimising harm along with responsibilities for promoting the growth and development of the liquor and gaming industry from a strategic communication perspective this added extra complexity to requirements for stakeholder engagement new word order was able to provide insightful analysis to help communicate the strategy in a clearer fashion connecting organisational objectives with customer benefits the strategy behind the campaign centred on heightening the value of the relationship and partnership between olgr and their industry stakeholders creating a stronger sense of community and collaboration was the platform used to inform and shape the campaign we worked closely with the client team and industry stakeholders to articulate the goals of linking safe and responsible liquor and gaming environments and minimising harm with a vibrant industry future the creative challenge revolved around communicating a long term governmental strategy while avoiding bureaucratic overreach fresh language and design were the tools used to create informational cut through and connect with the target audiences language and copy was simplified and made more direct a colourful and freeform visual design concept not traditionally associated with government work was used to signal a fresh start this visual approach was dynamically used across video animations presentation materials documentation and more pubs clubs and liquor and gaming licensees can be a tough crowd to impress but this campaign has resonated strongly due to its use of simple and clear messaging and innovative visual look the primary goals of education and information is an ongoing process but the campaign has launched strongly '),(142833,'slug',0,1,' department of justice and attorney general '),(142833,'title',0,1,' department of justice and attorney general '),(142834,'extension',0,1,' jpg '),(142834,'filename',0,1,' 22 10 olgr website 1 1 jpg '),(142834,'kind',0,1,' image '),(142834,'slug',0,1,''),(142834,'title',0,1,' 22 10 olgr website 1 1 '),(142835,'extension',0,1,' jpg '),(142835,'filename',0,1,' 22 10 olgr website 1 12 jpg '),(142835,'kind',0,1,' image '),(142835,'slug',0,1,''),(142835,'title',0,1,' 22 10 olgr website 1 12 '),(142836,'extension',0,1,' jpg '),(142836,'filename',0,1,' 22 10 olgr website 1 13 jpg '),(142836,'kind',0,1,' image '),(142836,'slug',0,1,''),(142836,'title',0,1,' 22 10 olgr website 1 13 '),(142837,'extension',0,1,' jpg '),(142837,'filename',0,1,' 22 10 olgr website 1 14 jpg '),(142837,'kind',0,1,' image '),(142837,'slug',0,1,''),(142837,'title',0,1,' 22 10 olgr website 1 14 '),(142838,'extension',0,1,' jpg '),(142838,'filename',0,1,' 22 10 olgr website 1 1 global jpg '),(142838,'kind',0,1,' image '),(142838,'slug',0,1,''),(142838,'title',0,1,' 22 10 olgr website 1 1 global '),(142840,'field',164,1,' one of the key challenges for olgr is managing the dual roles of being the industry regulator and minimising harm along with responsibilities for promoting the growth and development of the liquor and gaming industry from a strategic communication perspective this added extra complexity to requirements for stakeholder engagement new word order was able to provide insightful analysis to help communicate the strategy in a clearer fashion connecting organisational objectives with customer benefits the strategy behind the campaign centred on heightening the value of the relationship and partnership between olgr and their industry stakeholders creating a stronger sense of community and collaboration was the platform used to inform and shape the campaign we worked closely with the client team and industry stakeholders to articulate the goals of linking safe and responsible liquor and gaming environments and minimising harm with a vibrant industry future the creative challenge revolved around communicating a long term governmental strategy while avoiding bureaucratic overreach fresh language and design were the tools used to create informational cut through and connect with the target audiences language and copy was simplified and made more direct a colourful and freeform visual design concept not traditionally associated with government work was used to signal a fresh start this visual approach was dynamically used across video animations presentation materials documentation and more pubs clubs and liquor and gaming licensees can be a tough crowd to impress but this campaign has resonated strongly due to its use of simple and clear messaging and innovative visual look the primary goals of education and information is an ongoing process but the campaign has launched strongly '),(142840,'slug',0,1,' department of justice and attorney general '),(142840,'title',0,1,' the office of liquor and gaming regulation '),(142847,'field',164,1,' you have multiple accountabilities staring long and hard at you before youve even had your morning coffee the days of set and forget media plans generous marketing budgets and long lunches with your creative agency peeps are long gone the pain points of cmos are often remarkably similar across different industries and sectors as an agency who works closely with many cmos in diverse fields from healthcare to industrial lubricants we witness first hand the many modern pressures of commercial marketing there are strategic plans to deliver performance metrics to be measured and roi to be rationalised diamonds form under pressure sure youre in the hot seat but we just applaud the fact you have a seat at the big table professional marketers havet always been welcome in the c suite but in recent times the importance and relevance of marketing as a function of business success has been elevated yes that does come with an bigger set of expectations and pressures but thas why were here to help when your standard tuesday morning involves planning and strategising around things like revenue growth market share user experience and brand performance having an agency that is built for speed and delivery is a distinct advantage often our job is to help cmos turn their board exec approved long term strategies into actionable short term tactics after all whas the point of having marketing ammunition if you dot have the secret weapon to fire it we are your secret weapon part of our value to cmos is bringing a level of experience and skillset that ist readily available within your internal team or managing projects that just aret suitable for your big agency of record as pressures and performance metrics come to bear you want to rely on an agency who can be responsive and proactive as required people who can turn around projects quickly and efficiently marketing specialists who understand how lead generation and revenue growth is a daily challenge not a one off campaign fear not cmos we dot just feel your pain we share it and it makes us all the more committed and determined to find innovative and fit for purpose solutions for your business find out more about how we add a secret weapon to your agency roster by downloading a short guide here '),(142847,'slug',0,1,' the world of modern marketing '),(142847,'title',0,1,' the world of modern marketing '),(142868,'extension',0,1,' png '),(142868,'filename',0,1,' nwo email christmas 22 png '),(142868,'kind',0,1,' image '),(142868,'slug',0,1,''),(142868,'title',0,1,' nwo email christmas 22 '),(142869,'extension',0,1,' png '),(142869,'filename',0,1,' nwo email christmas 22 1 png '),(142869,'kind',0,1,' image '),(142869,'slug',0,1,''),(142869,'title',0,1,' nwo email christmas 22 1 '),(142874,'extension',0,1,' jpg '),(142874,'filename',0,1,' mike col 23 jpg '),(142874,'kind',0,1,' image '),(142874,'slug',0,1,''),(142874,'title',0,1,' mike '),(142875,'field',164,1,' a grassroots program with huge potential to grow significantly vitalway needed help with maturing their brand identity and better defining their market positioning while they relied on a strong reputation and substantial impact their varying services weret well understood by their market we went straight to the source their stakeholders through interviews we were able to shape a picture of the wider market while we were unable to speak directly with vitalways at risk youth participants for privacy reasons we learned from others who use and refer to vitalways program alongside our customer insights we engaged in desktop research to learn about competitors and contemporary services in vitalways market space our deeper understanding of the perceptions and realities of vitalways industry guided us in writing a brand narrative for vitalway that truly reflected their unique positioning these insights contributed not only to their brand strategy but also their business strategy aligning these two pieces to ensure the vitalway brand always works towards the organisatios business goals a powerful purpose requires a visual identity that holds the brand with certainty and conviction being mindful of the humans vitalway serves we developed a visual system that pays respect to the companys past and paints a clear image of a bright future vitalway helps at risk teenagers to change their futures realigning these teenagers with their values and emotions allows them to thrive amidst challenging circumstances in a way they often dot believe could be possible at new word order our purpose is to make a meaningful difference to peoples lives this project is yet another example of how we help brands to reach more people with their life changing services '),(142875,'slug',0,1,' vitalway '),(142875,'title',0,1,' vitalway '),(142876,'extension',0,1,' jpg '),(142876,'filename',0,1,' 22 11 modern marketing blog image 1 12 jpg '),(142876,'kind',0,1,' image '),(142876,'slug',0,1,''),(142876,'title',0,1,' 22 11 modern marketing blog image 1 12 '),(142877,'extension',0,1,' jpg '),(142877,'filename',0,1,' 22 11 modern marketing blog image 1 1 jpg '),(142877,'kind',0,1,' image '),(142877,'slug',0,1,''),(142877,'title',0,1,' 22 11 modern marketing blog image 1 1 '),(142887,'extension',0,1,' pdf '),(142887,'filename',0,1,' nwo secret weapon pdf '),(142887,'kind',0,1,' pdf '),(142887,'slug',0,1,''),(142887,'title',0,1,' nwo secret weapon '),(142901,'field',164,1,' the loan market as a whole is highly competitive and often dominated by rate comparisons and incentive offers bridging loans however are a slightly different beast theyre more about recognising different life circumstances and problem solving other short term bridging loan specialists had emerged and launched strong brand campaigns our key challenge was to create a brand that focuses on solutions and creatively positions funding among its competitor set as a short term loan company with a difference in order to educate the market on when a bridging loan might be required and then provide differentiation for funding it became abundantly clear the campaign required a creative and catchy hook to drive interest and memorability the strategic solution was to centre on a theme of build a bridge this theme was seen to be positive and proactive with language that borrowed from colloquial usage and even had humorous undertones strategically it provided a strong platform and foundation to work on creatively and talk to the target audience in a very authentic way the creative development process as it always should started with a strong consideration of the target audience knowing that a lot of the target market were parents we decided to let the innocent wisdom of children shine through by delivering the build a bridge solution children can turn the complex into simple through thought and action which is exactly what we showed in this campaign the drawing of a bridge from one home to another which created a visual hook the viewer is drawn in by the surprising nature of the child explaining the product in just a few words and then left with a smile as she demonstrates it in permanent marker the first rule of advertising is to get noticed which this campaign achieves by not looking like a bank or finance ad the impact of the campaign is created through pure relevancy showing real family people in real situations the messaging is loud and clear and helped to educate the market on the nature of short term bridging loan options and drive traffic to the funding site '),(142901,'slug',0,1,' funding '),(142901,'title',0,1,' funding '),(142911,'extension',0,1,' jpg '),(142911,'filename',0,1,' 163a4511 jpg '),(142911,'kind',0,1,' image '),(142911,'slug',0,1,''),(142911,'title',0,1,' 163 a4511 '),(142917,'field',164,1,' she makes a splash in the nwo studio but the real party starts when kimi gets home with a glass of natural wine in hand she relaxes to the sweet symphony of her sewing machine and the real housewives of wherever shell proudly tell you shes seen every episode in her heart shes a rich housewife but in her clever brain shes an ambitious talented entrepreneur as a side hustle she sews and sells custom leather bags purses and earrings she stocks them at forge forward in fortitude valley and the home of the arts in the gold coast so go check em out the biz was even featured in frankie magazine who absolutely frothed over her two toned gold snake tote bag the next enterprise ambition on kimis list is a doggy day care she lives and breathes for animals of all kinds she says could fall in love with an earthworm although shed probably feed it to her budgies if they asked her to kimi is loyal to patsy and tina before anything else named after patsy cline and tina arena her babies represent just a smidge of kimis music taste which she describes as dad music to stick with the household theme kimis partner levi decided to pursue a career as a drummer composer and music mix engineer sometimes he sings backup to kimis karaoke rendition of private dancer kimis custom illustration is one of the things that make our work really special shes an amazing problem solver and collaborator and her favourite part of the job is illustrating video storyboards that our animators bring to life rather than designer kimis most well known around the office as lady president of the social committee she makes sure we have cake and sparkling wine on birthdays takeout lunch on fridays and the trendiest christmas venue booked by september every year nwos social scene would truly be lost without kimi theres so much more to marnie than just her role at nwo to start with marnies our personal photographer for many of our staff headshots its an equal trade because we let her put her four years of art school to good use never mind that she already does that with her side hustle photography business actually there are many ways art school shaped her into the artist she is today it taught her that theres art in absolutely everything its where she discovered wine and for her honours project she explored how the innocence of childlike expression unlocks free creativity a sentiment that inspired her teenage rap band origami girls their music video for hit single rapp is one of our all time favourites but two and a half years ago alma took over the role of childlike expression and hes got it down pat marnie says her toddler runs her world and is the centre of her purpose as far as bosses go hes a pretty cute one if alma is marnies boss mark is her partner in crime it was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles the adventurous pair climbed more than 4km above sea level on manaslu for marnies 30th just the next step up from her 18th birthday skydiving trip of all the musical talent we have rocking here at nwo marnies probably takes the cake it all started with a pair of drumsticks dreams of an all girl band and a healthy crush on zac hanson in high school marnie fantasised about opening for zac on tour before riding off into the moonlight with him but the reality was a little less dreamy and a whole lot louder a decade spent playing for an improvised noise band in warehouses and diy festivals and improvised noise was only the beginning of her music career now marnies checked off all the genres from emo and garage to bubble gum rock in the spare time she cant possibly have shes captured every era of her music over the past decade through her video production business bare pictures beyond the creative vision we see in her music videos marnie has extensive experience producing tvcs for big biz dogs like the nrl samsung and australian ballet marnies blue sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better and we just love her for it its clear to us that william was custom built for his role as account manager business growth but theres a lot more to him than wip reports and bd timelines like his first love music from building music festival sets for global icons like justin bieber and ariana grande good mates of his apparently to running his own music biz where he managed local artists william is what we would call the artsy type but despite his natural talents on guitar and piano rumour has it he cant even read sheet music didnt bode well for the paperwork maybe thats why he swapped his yamaha keyboard for a wireless apple one and so musics loss became advertisings gain williams young looks belie a wealth of industry experience while he co ran a creative agency he stocked his blazer sleeves with some tricks that have majorly delighted us at nwo in return for choccy treats during our fortnightly client services meeting william uses his top notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects he wont compromise on meeting his clients deadlines the guy is dedicated what can we say but we hear hes actually pretty flexible on the balance beam thanks to years of gymnastics training his impressive sense of balance comes in handy every now and then when hes across the globe shredding the ski slopes his happy place if the cheesy photographed grins are any indication when he started with us we immediately got him on the tools and by the tools we obviously mean the coffee machine lately weve been lost without an office barista so he couldnt have joined us at a better time strategy and marketing have always come naturally to greg he is both fluent in marketing speak and impressively able to communicate with non marketing natives but theres much more to uncover beyond his business acumen gregs our resident kiwi bringing with him stories of the beautiful aotearoa landscape and all the silly adrenaline pursuits that come with it like his potentially mid life crisis inspired 50th birthday skydiving adventure the thrill seeking continued beyond new zealand his move to australia was bracketed by swims with whale sharks in mexico shivery fishing in the arctic circle and months of backpacking through the middle east although he hasnt yet made his way to india which is rich with his family history but its on the bucket list gregs family is his world while greg is a natural leader in the workplace hes married to a leo his wife jo who was destined to wear the proverbial pants in their household hes immensely proud of his son daniel who inherited gregs football stardom and carries the torch since gregs body decided his glory days are long over greg is now coach to daniel to cope with his retirement from playing football and tennis his golf glory days are still alive and well greg is a fan of many thought provoking quotes such as hope is not a strategy good is the enemy of great and hot chips taste better when they belong to someone else his seagull tendencies make lunch with greg a high stakes experience a big believer that humour can lighten even the most challenging of situations greg is always earning laughs around the office making him the perfect new addition to the team tim joined the nwo team last year and since then we have unearthed a plethora of interesting snippets about the life of tim now its time to share that with the outside world for example although born in brisbane tim grew up on the island of borneo in malaysia before moving back to brisbane at age 16 and attending boarding school sorry but all boarding school stories remain classified with that cultural background tim is fortunate enough to speak three languages english bahasa melayu and hakka a chinese dialect actually he speaks a few chinese dialects so calling tim trilingual might actually be selling him short when he was younger he was quite the tennis player and travelled extensively around south east asia for tournaments luckily for rafa and roger he decided to swap the racquet for a macbook and pursued his career in advertising regrets hes had a few like being a guinea pig in clinical trials in exchange for a few bucks or the free tattoo of a hotel safe code he got as a dare many expensive laser sessions later it turns out it wasnt a free tattoo at all he has been on road trips around iceland in winter adds salt to coke is a mad manchester united fan and a former cover band lead singer he really rocks it on karaoke nights despite all these interesting tidbits tim is most well known for his sneaker collection admitting to ownership of more than 100 pairs but we suspect the number is way higher rarely a week goes by at nwo hq without a couple of shoe box sized deliveries arriving for mr kho tim is happily married well hes happy at least and can sniff a good lunch from five desks away as his clients will attest tim is full of energy and curiosity and that makes him a great member of the nwo family '),(142917,'slug',0,1,' let us introduce ourselves '),(142917,'title',0,1,' let us introduce ourselves '),(142924,'extension',0,1,' png '),(142924,'filename',0,1,' nwo email christmas 22 2 png '),(142924,'kind',0,1,' image '),(142924,'slug',0,1,''),(142924,'title',0,1,' nwo email christmas 22 2 '),(142935,'extension',0,1,' jpg '),(142935,'filename',0,1,' 22 11 meet liam jpg '),(142935,'kind',0,1,' image '),(142935,'slug',0,1,''),(142935,'title',0,1,' 22 11 meet liam '),(142939,'extension',0,1,' jpg '),(142939,'filename',0,1,' 22 11 meet liam 2 jpg '),(142939,'kind',0,1,' image '),(142939,'slug',0,1,''),(142939,'title',0,1,' 22 11 meet liam 2 '),(142947,'slug',0,1,''),(142948,'slug',0,1,''),(142949,'slug',0,1,''),(142950,'slug',0,1,''),(142951,'slug',0,1,''),(142977,'field',164,1,' the rta needed to inform the public about rental reform changes coming into effect on 1 october 2022 with such a broad audience renters landlords and property managers the rta needed an explanatory tool that relayed the information in an easily digestible engaging and inclusive way a collection of animated explainer videos was the obvious choice the videos needed a friendly informative tone that connected with a vast range of people we broke the videos down into sections that addressed each of the three key audiences individually renters then landlords then property managers the audiences were represented by a diverse and inclusive suite of illustrated characters illustration was the real standout for this project our illustrative style helped us depict the emotion and shared experience of renting from all sides of the tenancy relationship the animation represented various age groups ethnicities and occupations the law changes are explained by friendly engaging voiceovers that guide the videos it was a pleasure to work with the team at rta to help inform queenslanders about the new changes to renting laws the rta has worked hard to make sure renting is fair for all and it was a joy to be part of bringing this to life '),(142977,'slug',0,1,' residential tenancies authority 2 '),(142977,'title',0,1,' residential tenancies authority '),(142978,'extension',0,1,' jpg '),(142978,'filename',0,1,' 8147 doe early childhood services video 2 2 35 jpg '),(142978,'kind',0,1,' image '),(142978,'slug',0,1,''),(142978,'title',0,1,' 8147 do e early childhood services video 2 2 35 '),(142984,'extension',0,1,' jpeg '),(142984,'filename',0,1,' 35510008 jpeg '),(142984,'kind',0,1,' image '),(142984,'slug',0,1,''),(142984,'title',0,1,' 35510008 '),(142985,'extension',0,1,' jpeg '),(142985,'filename',0,1,' 81mjsltbrjl jpeg '),(142985,'kind',0,1,' image '),(142985,'slug',0,1,''),(142985,'title',0,1,' 81 mj sl tbrj l '),(142987,'field',164,1,' november picks october picks bruces pick book title a night without stars author peter f hamilton find it here brees pick book title the seven husbands of evelyn hugo author taylor jenkins reid find it here kimis pick book title losing face author george haddad find it here jos pick book title the testaments author margaret atwood find it here suzs pick book title the bookseller at the end of the world author ruth shaw find it here october picks a night without stars by peter f hamilton the seven husbands of evelyn hugo by taylor jenkins reid losing face by george haddad the testaments by margaret atwood the bookseller at the end of the world by ruth shaw september picks taste my life through food by stanley tucci a little life by hanya yanagihara boy swallows universe by trent dalton johnno by david malouf growing up queer in australia by benjamin law bullet train by kotaro isaka a promised land by barack obama the queen of paris a novel of coco chanel by pamela binnings ewan the life by malcolm knox thinking fast and slow by daniel kahneman hunt gather parent by michaeleen doucleff odd dog out by rob bidulph '),(142987,'slug',0,1,' nwos library '),(142987,'title',0,1,' nwos library '),(142994,'extension',0,1,' jpg '),(142994,'filename',0,1,' 163a4323 jpg '),(142994,'kind',0,1,' image '),(142994,'slug',0,1,''),(142994,'title',0,1,' 163 a4323 '),(142995,'extension',0,1,' jpg '),(142995,'filename',0,1,' 163a4413 jpg '),(142995,'kind',0,1,' image '),(142995,'slug',0,1,''),(142995,'title',0,1,' 163 a4413 '),(142996,'extension',0,1,' jpg '),(142996,'filename',0,1,' 163a4443 jpg '),(142996,'kind',0,1,' image '),(142996,'slug',0,1,''),(142996,'title',0,1,' 163 a4443 '),(143000,'extension',0,1,' jpg '),(143000,'filename',0,1,' 163a3962 jpg '),(143000,'kind',0,1,' image '),(143000,'slug',0,1,''),(143000,'title',0,1,' 163 a3962 '),(143003,'extension',0,1,' jpg '),(143003,'filename',0,1,' 163a4166 jpg '),(143003,'kind',0,1,' image '),(143003,'slug',0,1,''),(143003,'title',0,1,' 163 a4166 '),(143005,'field',164,1,' the departments issues came down to a few common problems that kept occurring during the application process for early childhood care service providers the pipeline barriers these problems caused became a headache for the department our challenge was to make an accessible easy to understand explainer video which would ensure more applications are completed properly before being submitted once the client identified the core issues and nailed down the correct process we produced a simple voiceover and animation strategy to concisely and clearly address the problems it was important to keep the process really simple while making sure the applications would contain all the required information our approach involved balancing authority with friendliness to connect with the audience using customised stock illustration we produced a five minute animated video that combined relatable creativity with clear actions we represented our diverse audience with the illustration and voiceover to show the application process highlight the fields that require more attention and express the specificities that are commonly missed the video really breaks down a complex process into actionable steps early childhood care is a vital service for many queensland families and the higher the quality of the care the better so it was our pleasure to help make the process just that little bit easier and quicker '),(143005,'slug',0,1,' department of education '),(143005,'title',0,1,' department of education '),(143017,'field',164,1,' sunshine coast heart specialists was growing and changing in six years the cardiology practice had grown to nearly 50 staff with rooms throughout the coast their cardiologists represented all of the possible sub specialties within their profession within weeks they would move to new purpose built premises at sippy downs they were about to open their own coronary ct clinic to the public and a heart murmur clinic to support gps both nation leading initiatives the directors realised their geography specific name would limit their ability to keep growing and so renaming and rebranding was a strong need their growth had also occurred at such a rate that there was strategic work needed to understand their market share and to form a marketing strategy that would offer them opportunities for segmentation growth is reliant on satisfied referring gps and specialists and so attention could never be removed from this area finally such growth was also outstripping their capacity to fill the need cardiology is a highly specialised field within medicine and to grow sustainably they needed to attract more associates the practice needed a new name and brand assets for the business to accurately convey the mission and vision of the business and to grow the businesss referrer and patient networks our brand strategy drew on customer and referrer interviews competitor insights and employee workshops which also helped to define the brand values of the business it was clear the practice and the individual directors were held in high esteem by their medical colleagues they introduced surgical procedures to the sunshine coast that were until then only practised by a few in major cities they were introducing clinics and services that had not been seen in regional areas in australia this gave us the confidence to be able to propose a tagline that truthfully boasted world class cardiac care the second part of the tagline reads on the sunshine coast to compensate for the move away from the regionalisation in their original brand name sunshine coast heart specialists we added it to the tagline the reason for this is that patients along the coast appreciated the practice was the only place where they could receive the full spectrum of care without having to travel to brisbane finally an important branding insight from our research was that patients were on a health journey sometimes quite a precarious one and could be experiencing anxiety patients told us they appreciated the kindness each doctor showed to them in their time of need simply promoting expertise could come across as cold and would not fairly represent the doctors deep commitment to quality care so the heart hq brand connects with patients on a personal level and makes them feel reassured that they matter its this mix of strategy and heart that makes heart hq a brand that will stand tall among all the others a name tagline brand visual identity website signage and countless assets that match up with heart hqs brand promise of delivering world class cardiac care on the sunshine coast the quality of the brand assets significantly differentiates heart hq from all other competitor practices creatively the brand is modern refreshing and arguably not what you would expect from an organisation in the medical field but at the same time the language is warm supportive and with just the right amount of authority suzanne and her team came highly recommended it was a great journey working with them to develop our new brand and we were very impressed with their ideas enthusiasm and innovation we have a new brand a new identity and the confidence now to deliver on our growth plans dr peter larsen managing director heart hq nwo is part of our success journey dr peter larsen managing director heart hq '),(143017,'slug',0,1,' heart hq '),(143017,'title',0,1,' heart hq '),(143018,'field',164,1,' ramsay health care asked us to help develop a campaign to promote their orthopaedic services across their network of hospitals the campaign served to educate the target market on what makes ramsays orthopaedic offerings special while also calling them to check whether their health insurance covers ramsay hospitals using ramsays target market of orthopaedic patients in their 40s and 50s we created the weekend warrior characters everyday people who take on their alter ego when the working week is over the social sports star who pushes themself to go for that bicycle kick or elaborate jump pass the reno kings and queens who love bunnings outings and would never pay someone else to do work around the house that they could do themselves theres an ocean of campaigns out there from medical brands that all look the same clinical and serious ramsay stepped outside of the same same and opted for more lively exaggerated shots of weekend warriors in action being injured and seeking care from a ramsay hospital with fresh exciting and relatable action shots complemented by copy that captures the work hard play hard lifestyle our campaign for ramsay cut through to the market with personality and an element of surprise '),(143018,'slug',0,1,' ramsay health care '),(143018,'title',0,1,' ramsay health care '),(143021,'field',164,1,' our long hot summers may be our traditional wind down time but summer is also a time of cooking bbqs eating drinking and entertaining whether youre feeding the hordes or just looking for some new inspiration youll find it all here in these pages this is our third cookbook edition and this year weve slightly diverged from our christmas theme to reflect all the wonderful tastes of summer from fresh salads to zesty drinks theres sure to be a summertime treat with your name on it '),(143021,'slug',0,1,' christmas 2022 '),(143021,'title',0,1,' christmas 2022 '),(143022,'field',164,1,' liams doyles garlic prawns bruces ceviche kimis crispy oven baked mushroom hazels homemade peanut butter dog treats scotts instant legend beef brisket bbq becs pumpkin and macadamia quinoa healthy yum kats roast australian beef with fresh herb dressing tims 24 hour brined pork belly roast andrews roasted brussels sprouts with crispy pancetta kates peach pomegranate and goat cheese salad lynns chocolate carrot cake kerrys chocolate spider margarets white christmas cake suzs nanna gilberts overnight plum pudding jos start the day as you mean to go on bloody mary brees gingys martini ryans summer citrus ale '),(143022,'slug',0,1,' christmas 2021 '),(143022,'title',0,1,' christmas 2021 '),(143023,'extension',0,1,' jpg '),(143023,'filename',0,1,' istock 1215011930 jpg '),(143023,'kind',0,1,' image '),(143023,'slug',0,1,''),(143023,'title',0,1,' i stock 1215011930 '),(143029,'extension',0,1,' jpg '),(143029,'filename',0,1,' nwo christmas website2 jpg '),(143029,'kind',0,1,' image '),(143029,'slug',0,1,''),(143029,'title',0,1,' nwo christmas website2 '),(143032,'extension',0,1,' jpg '),(143032,'filename',0,1,' nwo christmas website wide1 jpg '),(143032,'kind',0,1,' image '),(143032,'slug',0,1,''),(143032,'title',0,1,' nwo christmas website wide1 '),(143033,'extension',0,1,' jpg '),(143033,'filename',0,1,' nwo christmas website wide2 jpg '),(143033,'kind',0,1,' image '),(143033,'slug',0,1,''),(143033,'title',0,1,' nwo christmas website wide2 '),(143034,'extension',0,1,' jpg '),(143034,'filename',0,1,' nwo christmas website wide3 jpg '),(143034,'kind',0,1,' image '),(143034,'slug',0,1,''),(143034,'title',0,1,' nwo christmas website wide3 '),(143035,'extension',0,1,' jpg '),(143035,'filename',0,1,' nwo christmas website wide4 jpg '),(143035,'kind',0,1,' image '),(143035,'slug',0,1,''),(143035,'title',0,1,' nwo christmas website wide4 '),(143036,'extension',0,1,' jpg '),(143036,'filename',0,1,' nwo christmas website wide5 jpg '),(143036,'kind',0,1,' image '),(143036,'slug',0,1,''),(143036,'title',0,1,' nwo christmas website wide5 '),(143037,'extension',0,1,' jpg '),(143037,'filename',0,1,' nwo christmas website wide6 jpg '),(143037,'kind',0,1,' image '),(143037,'slug',0,1,''),(143037,'title',0,1,' nwo christmas website wide6 '),(143038,'extension',0,1,' jpg '),(143038,'filename',0,1,' nwo christmas website wide7 jpg '),(143038,'kind',0,1,' image '),(143038,'slug',0,1,''),(143038,'title',0,1,' nwo christmas website wide7 '),(143039,'extension',0,1,' jpg '),(143039,'filename',0,1,' nwo christmas website wide8 jpg '),(143039,'kind',0,1,' image '),(143039,'slug',0,1,''),(143039,'title',0,1,' nwo christmas website wide8 '),(143040,'extension',0,1,' jpg '),(143040,'filename',0,1,' nwo christmas website wide9 jpg '),(143040,'kind',0,1,' image '),(143040,'slug',0,1,''),(143040,'title',0,1,' nwo christmas website wide9 '),(143041,'extension',0,1,' pdf '),(143041,'filename',0,1,' nwo recipe book 2022 pdf '),(143041,'kind',0,1,' pdf '),(143041,'slug',0,1,''),(143041,'title',0,1,' nwo recipe book 2022 '),(143051,'extension',0,1,' png '),(143051,'filename',0,1,' nwo email christmas 22 3 png '),(143051,'kind',0,1,' image '),(143051,'slug',0,1,''),(143051,'title',0,1,' nwo email christmas 22 3 '),(143057,'field',164,1,' ramsay health care asked us to help develop a campaign to promote their orthopaedic services across their network of hospitals the campaign served to educate the target market on what makes ramsays orthopaedic offerings special while also calling them to check whether their health insurance covers ramsay hospitals using ramsays target market of orthopaedic patients in their 40s and 50s we created the weekend warrior characters everyday people who take on their alter ego when the working week is over the social sports star who pushes themself to go for that bicycle kick or elaborate jump pass the reno kings and queens who love bunnings outings and would never pay someone else to do work around the house that they could do themselves theres an ocean of campaigns out there from medical brands that all look the same clinical and serious ramsay stepped outside of the same same and opted for more lively exaggerated shots of weekend warriors in action being injured and seeking care from a ramsay hospital with fresh exciting and relatable action shots complemented by copy that captures the work hard play hard lifestyle our campaign for ramsay cut through to the market with personality and an element of surprise '),(143057,'slug',0,1,' ramsay health care '),(143057,'title',0,1,' ramsay health care '),(143058,'slug',0,1,' temp amqptialffayksuhfaqkxylucroptousekbx '),(143058,'title',0,1,''),(143059,'slug',0,1,' temp napxbisshhfmsurdpefgqbpnfgwkcqkkuxsq '),(143059,'title',0,1,''),(143060,'field',164,1,''),(143060,'slug',0,1,' tell us about your 2022 and 2023 '),(143060,'title',0,1,' what about you '),(143066,'field',164,1,''),(143066,'slug',0,1,' tell us about your 2022 and 2023 '),(143066,'title',0,1,' what about you '),(143068,'field',164,1,''),(143068,'slug',0,1,' update details '),(143068,'title',0,1,' update details '),(143069,'field',164,1,''),(143069,'slug',0,1,' tell us about your 2022 and 2023 '),(143069,'title',0,1,' update details copy '),(143078,'slug',0,1,' temp txhziuodueewzyxzfracocfickclxdhlueqx '),(143078,'title',0,1,''),(143079,'slug',0,1,' temp lsrtplbajriuybbnpchxzyrfnjkhgifneonu '),(143079,'title',0,1,''),(143080,'slug',0,1,' tell your story '),(143080,'title',0,1,' tell your story '),(143094,'field',164,1,''),(143094,'slug',0,1,' tell us about your 2022 and 2023 '),(143094,'title',0,1,' what about you '),(143100,'extension',0,1,' png '),(143100,'filename',0,1,' aboutusimage png '),(143100,'kind',0,1,' image '),(143100,'slug',0,1,''),(143100,'title',0,1,' about us image '),(143101,'extension',0,1,' png '),(143101,'filename',0,1,' mainpageimage min png '),(143101,'kind',0,1,' image '),(143101,'slug',0,1,''),(143101,'title',0,1,' main page image min '),(143102,'slug',0,1,''),(143102,'title',0,1,' 2023 03 09 10 16 52 '),(143103,'field',164,1,' we are a brisbane based agency renowned for our evidence based strategic approach to truly wonderful creative work we are strongly purpose driven wholeheartedly committed to making a meaningful difference in the lives of our clients their customers and the community at large our work is rewarding the best part of what we do is doing it together theres nothing quite like a room full of inspired inspiring people united by purpose and passion and were thrilled at the idea of you being a part of that due to growth nwo is seeking to appoint a copy director simply put the core purpose of your role will be to protect the brand reputation that nwo holds for exceptional strategy and writing this will be done by undertaking stakeholder engagement co developing brand strategies leading and mentoring your team of writers a focus on quality assurance of all nwo copy as well as through your direct engagement with clients reporting to and working closely with the ceo this newly created leadership position will have full custody of the copy team leading a team of two plus freelancers you will have the autonomy to create the team structure systems processes and frameworks you feel the team needs to thrive by defining and setting nwo copy standards and developing approaches for all types of nwo writing projects to be successful in this role you will have a background in print or online journalism and experience in managing or driving brands you will have experience as an editor you will have a deep appreciation for brand and campaign management underpinned by quality content across all writing forms from content design and video through to publications and speechwriting your curious nature will see you getting to the heart of people and stories while your drive and inclusive leadership skills will see you leading your team toward best in class performance this is a rare opportunity to join a fast growing and supportive agency in a very exciting phase of its evolution a competitive salary will be negotiated everyone at nwo enjoys fantastic benefits from flexibility to bonuses professional development and a comprehensive wellbeing program flexibility and additional leave hybrid working environment with genuine flexibility work from home and our office at greenslopes one day per semester of paid study leave early late and split day options extra day of leave for an extra happy birthday bonus benefits $650 a year via airwallex to spend on you however you choose $50 a month extra $50 in your birthday month professional development work with top executives in wide ranging sectors gain deep expertise across all creative fields flexible teams means youll work on every account paid professional membership of your choice annual $1000 professional development budget learning and development plan for every employee study leave for post graduate study wellbeing weekly or fortnightly 1 1 with direct manager quarterly goal setting and performance review free access to employee assistance program intentional wellbeing at work program including massage and yoga happy friyay and every other day weekly team lunches and drinks quarterly team nights out eofy and christmas staff parties mid year and end of year all team days to rest reflect and plan if this role sounds perfect for you fill in the apply form below and attach your cover letter and a link to your website or portfolio were looking forward to saying hello '),(143103,'slug',0,1,' careers '),(143103,'title',0,1,' careers '),(143104,'field',164,1,' our long hot summers may be our traditional wind down time but summer is also a time of cooking bbqs eating drinking and entertaining whether youre feeding the hordes or just looking for some new inspiration youll find it all here in these pages this is our third cookbook edition and this year weve slightly diverged from our christmas theme to reflect all the wonderful tastes of summer from fresh salads to zesty drinks theres sure to be a summertime treat with your name on it '),(143104,'slug',0,1,' christmas 2022 '),(143104,'title',0,1,' christmas 2022 '),(143105,'field',164,1,' the departmens need came down to a few common misunderstandings that kept occurring during the application process for service providers these pipeline barriers absorbed time and increased administration for the departmens regulatory authority our challenge was to make an accessible easy to understand explainer video that would ensure more applications are completed properly before being submitted once the client identified the core issues and nailed down the correct process we produced a simple voiceover and animation strategy to address the problems concisely and clearly it was important to keep the process really simple while making sure the applications would contain all of the required information our approach involved balancing authority with friendliness to connect with the audience using customised stock illustration we produced a five minute animated video that combined relatable creativity with clear actions we represented our diverse audience with the illustration and voiceover to show the application process highlight the fields that require more attention and express the specificities that are commonly missed the video really breaks down a complex process into actionable steps early childhood education and care are vital services for many queensland families and the higher the quality of the care the better so it was our pleasure to help make the process for providers just that little bit easier and quicker '),(143105,'slug',0,1,' department of education '),(143105,'title',0,1,' department of education '),(143106,'field',164,1,' the loan market as a whole is highly competitive and often dominated by rate comparisons and incentive offers bridging loans however are a slightly different beast theyre more about recognising different life circumstances and problem solving other short term bridging loan specialists had emerged and launched strong brand campaigns our key challenge was to create a brand that focuses on solutions and creatively positions funding among its competitor set as a short term loan company with a difference in order to educate the market on when a bridging loan might be required and then provide differentiation for funding it became abundantly clear the campaign required a creative and catchy hook to drive interest and memorability the strategic solution was to centre on a theme of build a bridge this theme was seen to be positive and proactive with language that borrowed from colloquial usage and even had humorous undertones strategically it provided a strong platform and foundation to work on creatively and talk to the target audience in a very authentic way the creative development process as it always should started with a strong consideration of the target audience knowing that a lot of the target market were parents we decided to let the innocent wisdom of children shine through by delivering the build a bridge solution children can turn the complex into simple through thought and action which is exactly what we showed in this campaign the drawing of a bridge from one home to another which created a visual hook the viewer is drawn in by the surprising nature of the child explaining the product in just a few words and then left with a smile as she demonstrates it in permanent marker the first rule of advertising is to get noticed which this campaign achieves by not looking like a bank or finance ad the impact of the campaign is created through pure relevancy showing real family people in real situations the messaging is loud and clear and helped to educate the market on the nature of short term bridging loan options and drive traffic to the funding site '),(143106,'slug',0,1,' funding '),(143106,'title',0,1,' funding '),(143107,'field',164,1,' the queensland government needed to establish a subsidiary entity to carry the planning and transmission connection work for potential pumped hydro projects across queensland our creation of the brand for queensland hydro involved extensive discovery prior to crafting a brand identity designing marketing collateral and copywriting designing and developing a website as we often do we began this project with a comprehensive discovery phase this involved a review of queensland hydros contemporaries and competitive landscape consultation with a first nations advisor on theming and language and stakeholder workshops to clarify the brand personality purpose and objectives our deliverables included a brand name logo visual identity collateral key messaging and content for the website we kept the design fresh and engaging while accommodating the needs of the various stakeholders involved queensland hydro will be a vital component in reaching australias aspirational energy goals over the next few decades pumped hydro is at the centre of cleaning up queenslans energy and we were delighted to play a role in bringing queensland hydro to life '),(143107,'slug',0,1,' queensland hydro '),(143107,'title',0,1,' queensland hydro '),(143108,'field',164,1,' november picks bes pick book title the master and margarita author mikhail bulgakov find it here brees pick book title this is going to hurt author adam kay find it here jos pick book title renegades author barack obama and bruce springsteen find it here suzannes pick book title windswept and interesting author billy connolly find it here october picks a night without stars by peter f hamilton the seven husbands of evelyn hugo by taylor jenkins reid losing face by george haddad the testaments by margaret atwood the bookseller at the end of the world by ruth shaw september picks taste my life through food by stanley tucci a little life by hanya yanagihara boy swallows universe by trent dalton johnno by david malouf growing up queer in australia by benjamin law bullet train by kotaro isaka a promised land by barack obama the queen of paris a novel of coco chanel by pamela binnings ewan the life by malcolm knox thinking fast and slow by daniel kahneman hunt gather parent by michaeleen doucleff odd dog out by rob bidulph '),(143108,'slug',0,1,' nwos library '),(143108,'title',0,1,' nwos library '),(143109,'field',164,1,' liam was born and raised in brisbane but escaped the oppressive heat to live in london and hong kong and then found it again in guam for seven years now back in his hometown he carries with him the secrets of a journey well travelled from paying his way through uni as a roadie for ska band the furious turtles to winning australian and international advertising and production copywriting awards throughout his career were sure we can thank his time on the road is classified but imaginably riddled with life altering stories for the effortless creativity he brings day to day second to that maybe also his time at industry renowned award school speaking of formative experiences lias gruff exterior was carefully constructed back in his boarding school days when he was an easy target as the only soft city kid among a sea of tough country kids he quickly discovered that no amount of skiing holidays or golfing hole in ones current tally zero from 50 000 attempts could win the respect of teenage bogans a lesson in humility for liam perhaps weve all been there at some point despite his otherwise bourgeois sounding life where the golfing green is grassier liam actually knows all about the importance of sacrifice after all he cooks his famous garlic prawns every year for his family christmas and last year for the nwo christmas despite his drastic ironic and tragic crustacean allergy when he defeats the prawns they defeat him right back you can actually cook the dish yourself following his not so secret recipe here is delicious you cat take lias word for it of course but you can take ours he has cooking all locked down but hell be the first to tell you cleaning ist his area of expertise we cat have everything no reason to fret though ist that what kids are for and hes got four of them so hes very good at delegating a of couple residents in his household live it lush and chore free though his 50kg irish wolfhound luna and his 8kg cavoodle rusty in fact theyve delegated to liam the chore of walking them every morning those gorgeous dogs are part of what we love about liam along with his dry sense of humour his endless creative expertise and his penchant for telling a good story whether is through an ad script or just a weekend anecdote she makes a splash in the nwo studio but the real party starts when kimi gets home with a glass of natural wine in hand she relaxes to the sweet symphony of her sewing machine and the real housewives of wherever shell proudly tell you shes seen every episode in her heart shes a rich housewife but in her clever brain shes an ambitious talented entrepreneur as a side hustle she sews and sells custom leather bags purses and earrings she stocks them at forge forward in fortitude valley and the home of the arts in the gold coast so go check em out the biz was even featured in frankie magazine who absolutely frothed over her two toned gold snake tote bag the next enterprise ambition on kimis list is a doggy day care she lives and breathes for animals of all kinds she says could fall in love with an earthworm although shed probably feed it to her budgies if they asked her to kimi is loyal to patsy and tina before anything else named after patsy cline and tina arena her babies represent just a smidge of kimis music taste which she describes as dad musi to stick with the household theme kimis partner levi decided to pursue a career as a drummer composer and music mix engineer sometimes he sings backup to kimis karaoke rendition of private dancer kimis custom illustration is one of the things that make our work really special shes an amazing problem solver and collaborator and her favourite part of the job is illustrating video storyboards that our animators bring to life rather than designer kimis most well known around the office as lady president of the social committee she makes sure we have cake and sparkling wine on birthdays takeout lunch on fridays and the trendiest christmas venue booked by september every year nwos social scene would truly be lost without kimi theres so much more to marnie than just her role at nwo to start with marnies our personal photographer for many of our staff headshots is an equal trade because we let her put her four years of art school to good use never mind that she already does that with her side hustle photography business actually there are many ways art school shaped her into the artist she is today it taught her that theres art in absolutely everything is where she discovered wine and for her honours project she explored how the innocence of childlike expression unlocks free creativity a sentiment that inspired her teenage rap band origami girls their music video for hit single rapp is one of our all time favourites but two and a half years ago alma took over the role of childlike expression and hes got it down pat marnie says her toddler runs her world and is the centre of her purpose as far as bosses go hes a pretty cute one if alma is marnies boss mark is her partner in crime it was love at first sight when they rocked up to their first date eight years ago and discovered they both owned convertibles the adventurous pair climbed more than 4km above sea level on manaslu for marnies 30th just the next step up from her 18th birthday skydiving trip of all the musical talent we have rocking here at nwo marnies probably takes the cake it all started with a pair of drumsticks dreams of an all girl band and a healthy crush on zac hanson in high school marnie fantasised about opening for zac on tour before riding off into the moonlight with him but the reality was a little less dreamy and a whole lot louder a decade spent playing for an improvised noise band in warehouses and diy festivals and improvised noise was only the beginning of her music career now marnies checked off all the genres from emo and garage to bubble gum rock in the spare time she cat possibly have shes captured every era of her music over the past decade through her video production business bare pictures beyond the creative vision we see in her music videos marnie has extensive experience producing tvcs for big biz dogs like the nrl samsung and australian ballet marnies blue sky ideas and energetic enthusiasm for our projects challenge the rest of us to do and be better and we just love her for it is clear to us that william was custom built for his role as account manager business growth but theres a lot more to him than wip reports and bd timelines like his first love music from building music festival sets for global icons like justin bieber and ariana grande good mates of his apparently to running his own music biz where he managed local artists william is what we would call the artsy type but despite his natural talents on guitar and piano rumour has it he cat even read sheet music didt bode well for the paperwork maybe thas why he swapped his yamaha keyboard for a wireless apple one and so musis loss became advertisings gain willias young looks belie a wealth of industry experience while he co ran a creative agency he stocked his blazer sleeves with some tricks that have majorly delighted us at nwo in return for choccy treats during our fortnightly client services meeting william uses his top notch strategy brain to challenge our discovery process and contribute invaluable insight into our projects he wot compromise on meeting his client deadlines the guy is dedicated what can we say but we hear hes actually pretty flexible on the balance beam thanks to years of gymnastics training his impressive sense of balance comes in handy every now and then when hes across the globe shredding the ski slopes his happy place if the cheesy photographed grins are any indication when he started with us we immediately got him on the tools and by the tools we obviously mean the coffee machine lately weve been lost without an office barista so he couldt have joined us at a better time strategy and marketing have always come naturally to greg he is both fluent in marketing speak and impressively able to communicate with non marketing natives but theres much more to uncover beyond his business acumen gregs our resident kiwi bringing with him stories of the beautiful aotearoa landscape and all the silly adrenaline pursuits that come with it like his potentially mid life crisis inspired 50th birthday skydiving adventure the thrill seeking continued beyond new zealand his move to australia was bracketed by swims with whale sharks in mexico shivery fishing in the arctic circle and months of backpacking through the middle east although he hast yet made his way to india which is rich with his family history but is on the bucket list gregs family is his world while greg is a natural leader in the workplace hes married to a leo his wife jo who was destined to wear the proverbial pants in their household hes immensely proud of his son daniel who inherited gregs football stardom and carries the torch since gregs body decided his glory days are long over greg is now coach to daniel to cope with his retirement from playing football and tennis his golf glory days are still alive and well greg is a fan of many thought provoking quotes such as hope is not a strategy good is the enemy of great and hot chips taste better when they belong to someone else his seagull tendencies make lunch with greg a high stakes experience a big believer that humour can lighten even the most challenging of situations greg is always earning laughs around the office making him the perfect new addition to the team tim joined the nwo team last year and since then we have unearthed a plethora of interesting snippets about the life of tim now is time to share that with the outside world for example although born in brisbane tim grew up on the island of borneo in malaysia before moving back to brisbane at age 16 and attending boarding school sorry but all boarding school stories remain classified with that cultural background tim is fortunate enough to speak three languages english bahasa melayu and hakka a chinese dialect actually he speaks a few chinese dialects so calling tim trilingual might actually be selling him short when he was younger he was quite the tennis player and travelled extensively around south east asia for tournaments luckily for rafa and roger he decided to swap the racquet for a macbook and pursued his career in advertising regrets hes had a few like being a guinea pig in clinical trials in exchange for a few bucks or the free tattoo of a hotel safe code he got as a dare many expensive laser sessions later it turns out it wast a free tattoo at all he has been on road trips around iceland in winter adds salt to coke is a mad manchester united fan and a former cover band lead singer he really rocks it on karaoke nights despite all these interesting tidbits tim is most well known for his sneaker collection admitting to ownership of more than 100 pairs but we suspect the number is way higher rarely a week goes by at nwo hq without a couple of shoe box sized deliveries arriving for mr kho tim is happily married well hes happy at least and can sniff a good lunch from five desks away as his clients will attest tim is full of energy and curiosity and that makes him a great member of the nwo family '),(143109,'slug',0,1,' let us introduce ourselves '),(143109,'title',0,1,' let us introduce ourselves '),(143110,'field',164,1,' lias doyles garlic prawns bruces ceviche kimis crispy oven baked mushroom hazes homemade peanut butter dog treats scots instant legend beef brisket bbq bes pumpkin and macadamia quinoa healthy yum kas roast australian beef with fresh herb dressing tis 24 hour brined pork belly roast andrews roasted brussels sprouts with crispy pancetta kates peach pomegranate and goat cheese salad lyns chocolate carrot cake kerrys chocolate spider margares white christmas cake suzs nanna gilbers overnight plum pudding jos start the day as you mean to go on bloody mary brees gingys martini ryas summer citrus ale '),(143110,'slug',0,1,' christmas 2021 '),(143110,'title',0,1,' christmas 2021 '),(143111,'field',164,1,' the rta needed to inform the public about rental reform changes coming into effect on 1 october 2022 with such a broad audience renters landlords and property managers the rta needed an explanatory tool that relayed the information in an easily digestible engaging and inclusive way a collection of animated explainer videos was the obvious choice the videos needed a friendly informative tone that connected with a vast range of people we broke the videos down into sections that addressed each of the three key audiences individually renters then landlords then property managers the audiences were represented by a diverse and inclusive suite of illustrated characters illustration was the real standout for this project our illustrative style helped us depict the emotion and shared experience of renting from all sides of the tenancy relationship the animation represented various age groups ethnicities and occupations the law changes are explained by friendly engaging voiceovers that guide the videos it was a pleasure to work with the team at rta to help inform queenslanders about the new changes to renting laws the rta has worked hard to make sure renting is fair for all and it was a joy to be part of bringing this to life '),(143111,'slug',0,1,' residential tenancies authority 2 '),(143111,'title',0,1,' residential tenancies authority '),(143112,'field',164,1,' uu identified the ekka as an opportunity to engage inform and educate their customers to build a deeper understanding of water security and to set the stage for uu to influence water restrictions down the track through hands on activities and immersive visual displays the ekka was the perfect place to connect with uus communities and reassure them that uu is a safe pair of hands that holds and shapes the future of water security thematically this activation was centred around each individuas connection with water through making people conscious of waters impact on their day to day life we helped them discover how essential water security is and appreciate the role uu plays in protecting our water supply and ultimately the lifestyles and livelihoods of queenslanders the goal of the ekka display was three fold attract people to the space engage them to participate and ensure they absorb the key messaging we were working with an eight metre wide screen so we determined pretty quickly that one very very landscape video wouldt be the best viewing experience so we did what we do best we got creative we fashioned a collage of videos with various illustrated key messages live action footage and graphic patterns that loop and combine into an engaging eight metre video experience the audience were able to contribute their personal connection with water through sketches and scribbles on magnetic tiles each tile was fixed to the wall to create a crowdsourced water mosaic that grew over the course of the ekka telling true stories of water memories and moments bright colours custom illustration lots of movement and bold statements thas the sweet combination we concocted to communicate some very important key messages to the audience and the icing on top of the strawberry sundae we just had so much fun coming up with the concept and bringing it to life the ekka public holiday didt hurt either '),(143112,'slug',0,1,' urban utilities '),(143112,'title',0,1,' urban utilities '),(143113,'field',164,1,' ramsay health care asked us to help develop a campaign to promote their orthopaedic services across their network of hospitals the campaign served to educate the target market on what makes ramsays orthopaedic offerings special while also calling them to check whether their health insurance covers ramsay hospitals using ramsays target market of orthopaedic patients in their 40s and 50s we created the weekend warrior characters everyday people who take on their alter ego when the working week is over the social sports star who pushes themself to go for that bicycle kick or elaborate jump pass the reno kings and queens who love bunnings outings and would never pay someone else to do work around the house that they could do themselves theres an ocean of campaigns out there from medical brands that all look the same clinical and serious ramsay stepped outside of the same same and opted for more lively exaggerated shots of weekend warriors in action being injured and seeking care from a ramsay hospital with fresh exciting and relatable action shots complemented by copy that captures the work hard play hard lifestyle our campaign for ramsay cut through to the market with personality and an element of surprise '),(143113,'slug',0,1,' ramsay health care '),(143113,'title',0,1,' ramsay health care '),(143114,'field',164,1,' while glengara care has been described as the genuine alternative to aged care it often ist clear what exactly sets the facility apart from residential aged care facilities the differentiators ultimately come down to the provision of care glengara care offers care that is personal loving and delivered in a manner that preserves the recipiens independence the your care factor campaign was required to generate leads and sales while building awareness around glengara care in comparison to some of the well known aged care alternatives the core of the campaign was built from the concept of care we drew out two meanings from your care factor not only the level of care provided by the facility but also the decision making factors that each potential buyer personally cares about the term care factor is deeply familiar perhaps not so much to the 80 year old resident market but more so to their children the key influencers of this campaign we created three television commercials that pose the question of what is your care factor by contrasting the realities of people struggling physically and emotionally in a home that doest suit their needs against people receiving the unparalleled care offered at glengara care while the videos showcase glengara cares differentiated care offering the advertisements themselves separate glengara care from the alternatives theyre provocative fresh and engaging this project certainly wast an easy one the final product is the result of fierce determination both from nwo and retireaustralia in the face of adversity such as covid 19 restrictions risks and vulnerability the video shoot was rescheduled numerous times and often our careful planning was swapped out for quick thinking and adaptability the end result however was worth every bit of effort '),(143114,'slug',0,1,' glengaracare '),(143114,'title',0,1,' glengara care '),(143115,'field',164,1,' brisbane north phn asked us to write design and develop a navigator website that doubles as a one stop shop of resources information and services that promote healthy ageing in the brisbane north and moreton bay region the projecs goal was to enable people to more proactively manage their own healthcare while also equipping healthcare professional and carers with resources to support their care services working closely with the client team and the council on the ageing our strategists conducted a stakeholder consultation process with community members and health professionals the stakeholders generously shared their expertise and lived experience to help this project reach the communitys specific needs with a particular focus on dementia physical health mental health social connection nutrition and digital skills each aspect of the content writing design and development of the website was informed by insights from the stakeholders to ensure the project would fulfil community needs we made sure the site was easy to use by integrating a very simple user interface into the web design and development user experience and acceptance testing was a key element of ensuring the site would be practical and enjoyable for its audience nothing like this existed before now this project fulfils community needs around healthy ageing in a way that really excited the stakeholders who were involved in the project this kind of work aligns perfectly with our purpose at nwo to make a meaningful difference to peoples lives '),(143115,'slug',0,1,' your care navigator '),(143115,'title',0,1,' your care navigator '),(143116,'field',164,1,' we worked closely with burnie brae to understand their issues and what makes them tick there was a concern burnie brae was lacking meaning awareness and connection for much of the public they serve alongside a recognition that the brand was simply a bit tire and neglected as a branding and strategy specialist we created a process to uncover some of the truths behind the brand to set the groundwork our team conducted a series of research and workshops before embarking on brand direction and narrative development projects with the foundations set our creative team embarked on refreshing burnie braes visual identity the creative concept painted a picture of community connection and explored a distinctive direction for the burnie brae brand we adapted the existing logo and brand colours to build a fresh and recognisable feel we redesigned and built a new website improving the information navigation and creating better user journeys the end result has seen burnie brae take ownership of a revitalised brand identity that has stronger connections to their stakeholders the stunning new website is simple to use and takes users on a compelling journey through burnie braes community service offerings '),(143116,'slug',0,1,' burnie brae '),(143116,'title',0,1,' burnie brae '),(143117,'field',164,1,' a complicated restructuring and rebranding exercise took place as a result of the expiration of licencing agreements chevron downstream australia appointed new word order to help facilitate the process and undertake important marketing work including taking carriage of promotions of the australian b2b fuels and lubricants division we conducted a competitor analysis to assess competitor brand messaging and positioning interviews with key caltex fuels and lubricants distributors in the b2b market and one on one interviews with the general customers our insights indicated a need for authentic real life marketing collateral with which the audience can connect we also gleaned that the messaging needed to be kept simple we made the creative decision to let the products take a backseat and instead shine a light on the customer businesses and their distributor relationships we worked with a videographer to give the videos a warm and at times heartfelt tone the customers in question are mostly generations old businesses with a story to tell so we told some stories the end result was 60 video variations in a style you wouldt necessarily associate with marketing around fuel and lubricant products something a little surprising something that stands out from the crowd '),(143117,'slug',0,1,' chevron '),(143117,'title',0,1,' chevron '),(143119,'slug',0,1,''),(143119,'title',0,1,' 2023 03 09 19 15 21 '),(143120,'slug',0,1,''),(143120,'title',0,1,' 2023 03 09 21 16 11 '),(143121,'slug',0,1,''),(143121,'title',0,1,' 2023 03 09 21 17 50 '),(143122,'slug',0,1,''),(143122,'title',0,1,' 2023 03 09 21 19 49 '),(143123,'slug',0,1,''),(143123,'title',0,1,' 2023 03 09 21 21 30 '),(143127,'slug',0,1,' tell your story '),(143127,'title',0,1,' tell your story '),(143128,'field',164,1,' were a creative agency whose clients sleep at night there are no jazz hands no smoke no mirrors no special effects for our clients this means creative confidence for them their team and those higher up the chain doest that sound nice for a change our work focuses around significant human decisions leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience deep pain euphoria and everything between we take a pragmatic common sense approach to strategic and creative work our clients find this refreshing because we understand their context and goals purpose driven work ist rare anymore but our purpose to make a meaningful difference to peoples lives runs deep it determines the kind of work we do how we treat each other and our drive to go above and beyond for our clients all of our creative work is backed by research accurate insights and robust strategies for our clients it means they have hard evidence and confidence to take the next step and influence to bring their teams and leaders along for the ride we began as a strategic communications agency and good quality words still mean as much to us today as they did on day one our proven process uncovers the essence of an organisation and showcases it in a beautiful package that connects deeply with its people we seek to understand how humans connect engage decide and change evidence based strategy is built on unique insights that guide all the work to come see our proven methodologies for how we make every project a success we started out as a strategic communications agency when ex journo suzanne oxford got seriously fed up with all of the sub par corporate comms out there a few years later creative and strategist scott oxford joined the fun we hired a few more folks made a few more connections and slowly but surely became the strategic creative powerhouse our clients know and love us for today '),(143128,'slug',0,1,' about us '),(143128,'title',0,1,' about us '),(143131,'slug',0,1,''),(143131,'title',0,1,' 2023 03 15 16 13 00 '),(143135,'extension',0,1,' jpg '),(143135,'filename',0,1,' meet bree jpg '),(143135,'kind',0,1,' image '),(143135,'slug',0,1,''),(143135,'title',0,1,' meet bree '),(143139,'field',164,1,' often a lack of connection is to blame for marketing and brand under performance why is that well think of brands like people some you associate with on a very shallow level some you interact with regularly but dot really feel a connection and some you just really love like people we want to engage with brands that share our values perspectives and opinions we become loyal to them when we know they understand us and make us feel good but as a brand owner or leader how do you find these insights and build these emotional connections successful brands invest in really understanding their customers they undertake fit for purpose qualitative research to ask their customers questions and gain their insights into what they are thinking and why they behave the way they do too often this step is overlooked by a lack of understanding or a short term view of objectives and budget customer insights are the gold nuggets of wisdom that dot just give rise to effective campaigns they transform the businesses too last year we undertook 20 in depth online interviews for a tech company wanting to know how their customers felt about them the phone interviews all following the same discussion guide and conducted across the world clearly showed that while customers were loyal they were hungry for greater innovation these insights gave the leadership team confidence to fast track some of their more ambitious projects we recently interviewed 20 potential current and lapsed customers for a business management consultancy our client learned more about the life cycle of their customer businesses and how their needs change at each stage the insights from these interviews helped us shape the consultancys approach to introducing a new product stream to a wider audience earlier this year we undertook 15 in depth interviews and six focus groups for a tertiary institution aimed at understanding the emotional drivers for enrolments enrolments had been waning slowly for eight years and key demographics had switched around too through our insights we were able to show that while students were still true believers in the brand alumni and referrers were noticeably less enthusiastic this was affecting the quality and number of referrals the detail in our insights is fuelling a brand and marketing strategy aimed at strengthening connections fit for purpose customer research at new word order we undertake this step as part of our wider brand development methodology every time we find research yields valuable input into our client business strategies on top of feeding their brand strategy our qualitative research is a formative contribution that tells you how your customers perceive your brand and what they need from you we then use quantitative research to test that these views are representative of the wider industry and your customer base research can be expensive but it doest have to be theres an art to asking customers questions we can find out the true deep feelings of your customers ones theyll never tell you no matter how close the relationship you share we can help you build deeper emotional connections and loyalty with your customers '),(143139,'slug',0,1,' emotional connection lies at the heart of every successful brand '),(143139,'title',0,1,' emotional connection lies at the heart of every successful brand '),(143145,'extension',0,1,' jpg '),(143145,'filename',0,1,' 23 03 march emotional connection blog 1 1 jpg '),(143145,'kind',0,1,' image '),(143145,'slug',0,1,''),(143145,'title',0,1,' 23 03 march emotional connection blog 1 1 '),(143153,'field',164,1,' the departmens need came down to a few common misunderstandings that kept occurring during the application process for service providers these pipeline barriers absorbed time and increased administration for the departmens regulatory authority our challenge was to make an accessible easy to understand explainer video that would ensure more applications are completed properly before being submitted once the client identified the core issues and nailed down the correct process we produced a simple voiceover and animation strategy to address the problems concisely and clearly it was important to keep the process really simple while making sure the applications would contain all of the required information our approach involved balancing authority with friendliness to connect with the audience using customised stock illustration we produced a five minute animated video that combined relatable creativity with clear actions we represented our diverse audience with the illustration and voiceover to show the application process highlight the fields that require more attention and express the specificities that are commonly missed the video really breaks down a complex process into actionable steps early childhood education and care are vital services for many queensland families and the higher the quality of the care the better so it was our pleasure to help make the process for providers just that little bit easier and quicker '),(143153,'slug',0,1,' department of education 2 '),(143153,'title',0,1,' department of education '),(143172,'extension',0,1,' jpg '),(143172,'filename',0,1,' 23 vital website assets 1 1 jpg '),(143172,'kind',0,1,' image '),(143172,'slug',0,1,''),(143172,'title',0,1,' 23 vital website assets 1 1 '),(143173,'extension',0,1,' jpg '),(143173,'filename',0,1,' 23 vital website assets 1 1 2023 03 31 005724 bewu jpg '),(143173,'kind',0,1,' image '),(143173,'slug',0,1,''),(143173,'title',0,1,' 23 vital website assets 1 1 '),(143174,'extension',0,1,' jpg '),(143174,'filename',0,1,' 23 vital website assets 1 12 jpg '),(143174,'kind',0,1,' image '),(143174,'slug',0,1,''),(143174,'title',0,1,' 23 vital website assets 1 12 '),(143175,'extension',0,1,' jpg '),(143175,'filename',0,1,' 23 vital website assets 1 13 jpg '),(143175,'kind',0,1,' image '),(143175,'slug',0,1,''),(143175,'title',0,1,' 23 vital website assets 1 13 '),(143176,'extension',0,1,' jpg '),(143176,'filename',0,1,' 23 vital website assets 1 14 jpg '),(143176,'kind',0,1,' image '),(143176,'slug',0,1,''),(143176,'title',0,1,' 23 vital website assets 1 14 '),(143177,'extension',0,1,' jpg '),(143177,'filename',0,1,' 23 vital website assets 1 15 jpg '),(143177,'kind',0,1,' image '),(143177,'slug',0,1,''),(143177,'title',0,1,' 23 vital website assets 1 15 '),(143178,'extension',0,1,' jpg '),(143178,'filename',0,1,' 23 vital website assets 1 16 jpg '),(143178,'kind',0,1,' image '),(143178,'slug',0,1,''),(143178,'title',0,1,' 23 vital website assets 1 16 '),(143181,'extension',0,1,' jpg '),(143181,'filename',0,1,' 23 vital website assets 1 13 2023 03 31 010319 jprk jpg '),(143181,'kind',0,1,' image '),(143181,'slug',0,1,''),(143181,'title',0,1,' 23 vital website assets 1 13 '),(143184,'extension',0,1,' jpg '),(143184,'filename',0,1,' 23 vital website assets 1 4 jpg '),(143184,'kind',0,1,' image '),(143184,'slug',0,1,''),(143184,'title',0,1,' 23 vital website assets 1 4 '),(143187,'extension',0,1,' jpg '),(143187,'filename',0,1,' 23 vital website assets 1 5 jpg '),(143187,'kind',0,1,' image '),(143187,'slug',0,1,''),(143187,'title',0,1,' 23 vital website assets 1 5 '),(143190,'extension',0,1,' jpg '),(143190,'filename',0,1,' 23 vital website assets 1 6 jpg '),(143190,'kind',0,1,' image '),(143190,'slug',0,1,''),(143190,'title',0,1,' 23 vital website assets 1 6 ');
/*!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,'Reports','reports','channel',1,'all','end','[{\"label\":\"Primary entry page\",\"urlFormat\":\"{url}\",\"refresh\":\"1\"}]','2021-04-07 05:26:54','2021-04-07 05:26:54',NULL,'846db8d3-82f8-4432-92d2-39c6b7baa1b3'),(4,NULL,'Audits','audits','channel',1,'all','end','[{\"label\":\"Primary entry page\",\"urlFormat\":\"{url}\",\"refresh\":\"1\"}]','2021-04-20 00:52:32','2021-04-20 00:52:32',NULL,'1e439968-7658-40fc-b32c-b180f0cf7dd6'),(5,NULL,'Work','work','channel',1,'all','end','[{\"label\":\"Primary entry page\",\"urlFormat\":\"{url}\",\"refresh\":\"1\"}]','2021-05-14 05:59:09','2021-05-14 05:59:09',NULL,'6683638f-50e1-4d95-9996-a6e6b3aabff9'),(6,NULL,'Articles','articles','channel',1,'all','end','[{\"label\":\"Primary entry page\",\"urlFormat\":\"{url}\",\"refresh\":\"1\"}]','2021-05-18 00:26:09','2021-07-23 03:36:32',NULL,'a649cddf-ac92-414a-8d24-cff4dcfeb45e'),(7,NULL,'About us','aboutUs','single',1,'all','end','[{\"label\":\"Primary entry page\",\"urlFormat\":\"{url}\",\"refresh\":\"1\"}]','2021-06-21 04:18:40','2021-06-21 04:18:40',NULL,'90098b77-7cc0-440f-b64c-27d247c69b07'),(8,NULL,'Contact ','contact','single',1,'all','end','[{\"label\":\"Primary entry page\",\"urlFormat\":\"{url}\",\"refresh\":\"1\"}]','2021-06-21 06:24:18','2021-06-21 06:24:18',NULL,'a0ddfe68-96f9-46b1-a989-31cbcde47626'),(9,NULL,'Home','home','single',1,'all','end','[{\"label\":\"Primary entry page\",\"urlFormat\":\"{url}\",\"refresh\":\"1\"}]','2021-09-10 01:58:36','2021-09-10 01:58:36',NULL,'a3eaf7c8-edf3-45b3-a471-6fa0f26714a4'),(10,NULL,'Terms and conditions','termsAndConditions','single',1,'all','end','[{\"label\":\"Primary entry page\",\"urlFormat\":\"{url}\",\"refresh\":\"1\"}]','2021-09-27 03:32:47','2021-09-27 03:32:47',NULL,'9d16c38d-02f8-4ef4-9c55-897a45744518'),(11,NULL,'Update details','updateDetails','single',1,'all','end','[{\"label\":\"Primary entry page\",\"urlFormat\":\"{url}\",\"refresh\":\"1\"}]','2021-11-09 23:38:15','2021-11-09 23:38:15',NULL,'2dd11b6c-8f0f-45ca-ba26-9ad3d1d670db'),(13,NULL,'Email sigs','emailSigs','single',1,'all','end','[{\"label\":\"Primary entry page\",\"urlFormat\":\"{url}\",\"refresh\":\"1\"}]','2021-11-15 01:51:50','2021-11-15 01:51:50',NULL,'628d994f-ad6a-4dc8-a55d-d6611dfc364b'),(14,NULL,'Privacy policy','privacyPolicy','single',1,'all','end','[{\"label\":\"Primary entry page\",\"urlFormat\":\"{url}\",\"refresh\":\"1\"}]','2021-11-24 05:25:54','2021-11-24 05:25:54',NULL,'06c54559-a0bd-4b67-9fc8-80660f0c54f9'),(15,NULL,'Landing pages','landingPages','channel',1,'all','end','[{\"label\":\"Primary entry page\",\"urlFormat\":\"{url}\",\"refresh\":\"1\"}]','2021-12-10 01:00:00','2021-12-10 01:00:00',NULL,'ca64ab62-fc10-4034-9c0e-298f6ad47b21'),(17,NULL,'Careers','careers','single',1,'all','end','[{\"label\":\"Primary entry page\",\"urlFormat\":\"{url}\",\"refresh\":\"1\"}]','2022-06-05 23:22:33','2022-06-05 23:22:33',NULL,'f05a5cc5-d31f-45a1-9412-037b742553a8'),(18,NULL,'Update details copy','updateDetailsCopy','single',1,'all','end','[{\"label\":\"Primary entry page\",\"urlFormat\":\"{url}\",\"refresh\":\"1\"}]','2023-01-10 00:12:41','2023-01-10 00:12:41',NULL,'69e4dc6d-9a04-4461-a794-9f65af0b82a5');
/*!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,'reports/{slug}','reports/_entry',1,'2021-04-07 05:26:54','2021-04-07 05:26:54','24d3b4c5-5b78-4145-af20-ff1341e5e73a'),(4,4,1,1,'brandaudit/{slug}','brandaudit/form',1,'2021-04-20 00:52:32','2021-06-11 00:43:48','b28b3383-134a-447b-9ec0-503e48385cba'),(5,5,1,1,'work/{slug}','work/_entry',1,'2021-05-14 05:59:09','2021-05-14 05:59:09','336bc317-6e22-4ecf-805b-262711c7459c'),(6,6,1,1,'articles/{slug}','articles/_entry',1,'2021-05-18 00:26:09','2021-07-23 03:36:46','4624c1a9-d89e-40db-a0a4-bd94a708d85a'),(7,7,1,1,'about','about-us/_entry',1,'2021-06-21 04:18:40','2021-06-21 04:44:59','32c07d9d-6e21-494d-bf58-70582f11f0d8'),(8,8,1,1,'contact','contact/_entry',1,'2021-06-21 06:24:18','2021-06-21 06:24:18','e7d4a1e6-0041-4558-938a-0e084ac49fbf'),(9,9,1,1,'__home__','index',1,'2021-09-10 01:58:36','2021-09-10 01:58:36','2d3bb741-63ee-4b98-972e-d2a10b01e406'),(10,10,1,1,'terms-and-conditions','about-us/_entry',1,'2021-09-27 03:32:47','2021-09-27 04:00:34','d77470b4-0838-4215-b777-185c5d91d87c'),(11,11,1,1,'update-details','update-details/_entry',1,'2021-11-09 23:38:15','2021-11-09 23:38:15','b0458d87-a38e-41c1-b936-e39d21777f55'),(13,13,1,1,'email-sigs','email-signatures/_entry',1,'2021-11-15 01:51:50','2021-11-15 01:51:50','13c6900c-fd76-420a-bdb2-c12adf3b9832'),(14,14,1,1,'privacy-policy','privacy-policy/_entry',1,'2021-11-24 05:25:54','2021-11-24 05:25:54','a9ba3c1f-7629-4c49-88ad-693bc488ed7f'),(15,15,1,1,'lp/{slug}','landing-pages/_entry',1,'2021-12-10 01:00:00','2021-12-10 01:00:00','eb780cf4-24f3-4092-a1e2-02783930e6c3'),(17,17,1,1,'careers','careers/_entry',1,'2022-06-05 23:22:33','2022-06-05 23:22:33','13c89c27-f085-4846-ac74-377e8c78169d'),(18,18,1,1,'update-details-copy','update-details/_entry',1,'2023-01-10 00:12:41','2023-01-10 00:12:41','ae98db9b-b6f7-4acd-961f-8f29c66ff61b');
/*!40000 ALTER TABLE `sections_sites` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `seomatic_metabundles`
--

LOCK TABLES `seomatic_metabundles` WRITE;
/*!40000 ALTER TABLE `seomatic_metabundles` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `seomatic_metabundles` VALUES (1,'2021-11-09 01:12:27','2023-04-11 02:08:03','2ca4463e-d404-410c-827d-b5d9a961270b','1.0.62','__GLOBAL_BUNDLE__',1,'__GLOBAL_BUNDLE__','__GLOBAL_BUNDLE__','__GLOBAL_BUNDLE__',NULL,'',1,'[]','2023-04-11 02:08:03','{\"language\":null,\"mainEntityOfPage\":\"WebSite\",\"seoTitle\":\"{{ seomatic.helper.extractKeywords(seomatic.helper.extractTextFromField(seoGlobal.seoTitle)) }}\",\"siteNamePosition\":\"before\",\"seoDescription\":\"{{ seomatic.helper.extractSummary(seomatic.helper.extractTextFromField(seoGlobal.seoDescription)) }}\",\"seoKeywords\":\"{{ seomatic.helper.extractKeywords(seomatic.helper.extractTextFromField(seoGlobal.seoKeywords)) }}\",\"seoImage\":\"{{ seomatic.helper.socialTransform(seoGlobal.seoImage.collect()[0], \\\"base\\\", 1, \\\"crop\\\") }}\",\"seoImageWidth\":\"{{ seomatic.helper.socialTransformWidth(seoGlobal.seoImage.collect()[0], \\\"base\\\", 1, \\\"crop\\\") }}\",\"seoImageHeight\":\"{{ seomatic.helper.socialTransformHeight(seoGlobal.seoImage.collect()[0], \\\"base\\\", 1, \\\"crop\\\") }}\",\"seoImageDescription\":\"{{ seomatic.helper.extractSummary(seomatic.helper.extractTextFromField(seoGlobal.seoImageDescription)) }}\",\"canonicalUrl\":\"{seomatic.helper.safeCanonicalUrl()}\",\"robots\":\"all\",\"ogType\":\"website\",\"ogTitle\":\"{seomatic.meta.seoTitle}\",\"ogSiteNamePosition\":\"none\",\"ogDescription\":\"{seomatic.meta.seoDescription}\",\"ogImage\":\"{{ seomatic.helper.socialTransform(seoGlobal.seoImage.collect()[0], \\\"facebook\\\", 1, \\\"crop\\\") }}\",\"ogImageWidth\":\"{{ seomatic.helper.socialTransformWidth(seoGlobal.seoImage.collect()[0], \\\"facebook\\\", 1, \\\"crop\\\") }}\",\"ogImageHeight\":\"{{ seomatic.helper.socialTransformHeight(seoGlobal.seoImage.collect()[0], \\\"facebook\\\", 1, \\\"crop\\\") }}\",\"ogImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"twitterCard\":\"summary\",\"twitterCreator\":\"{seomatic.site.twitterHandle}\",\"twitterTitle\":\"{seomatic.meta.seoTitle}\",\"twitterSiteNamePosition\":\"none\",\"twitterDescription\":\"{seomatic.meta.seoDescription}\",\"twitterImage\":\"{{ seomatic.helper.socialTransform(seoGlobal.seoImage.collect()[0], seomatic.helper.twitterTransform(), 1, \\\"crop\\\") }}\",\"twitterImageWidth\":\"{{ seomatic.helper.socialTransformWidth(seoGlobal.seoImage.collect()[0], seomatic.helper.twitterTransform(), 1, \\\"crop\\\") }}\",\"twitterImageHeight\":\"{{ seomatic.helper.socialTransformHeight(seoGlobal.seoImage.collect()[0], seomatic.helper.twitterTransform(), 1, \\\"crop\\\") }}\",\"twitterImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"inherited\":[],\"overrides\":[]}','{\"siteName\":\"New Word Order\",\"identity\":{\"siteType\":\"Organization\",\"siteSubType\":\"LocalBusiness\",\"siteSpecificType\":\"\",\"computedType\":\"LocalBusiness\",\"genericName\":\"New Word Order\",\"genericAlternateName\":\"\",\"genericDescription\":\"\",\"genericUrl\":\"$PRIMARY_SITE_URL\",\"genericImage\":\"https:\\/\\/nwo.nyc3.cdn.digitaloceanspaces.com\\/nwo\\/uploads\\/logo-black.svg\",\"genericImageWidth\":\"300\",\"genericImageHeight\":\"152\",\"genericImageIds\":[\"74105\"],\"genericTelephone\":\"07 3334 8340\",\"genericEmail\":\"info@newwordorder.com.au\",\"genericStreetAddress\":\"205 Juliette Street\",\"genericAddressLocality\":\"Greenslopes\",\"genericAddressRegion\":\"Brisbane\",\"genericPostalCode\":\"4120\",\"genericAddressCountry\":\"Australia\",\"genericGeoLatitude\":\"-27.505800\",\"genericGeoLongitude\":\"153.047820\",\"personGender\":\"Male\",\"personBirthPlace\":\"\",\"organizationDuns\":\"\",\"organizationFounder\":\"\",\"organizationFoundingDate\":\"\",\"organizationFoundingLocation\":\"\",\"organizationContactPoints\":\"\",\"corporationTickerSymbol\":\"\",\"localBusinessPriceRange\":\"$\",\"localBusinessOpeningHours\":[{\"open\":null,\"close\":null},{\"open\":{\"date\":\"2021-11-09 08:30:00.000000\",\"timezone_type\":3,\"timezone\":\"Australia\\/Brisbane\"},\"close\":{\"date\":\"2021-11-09 17:30:00.000000\",\"timezone_type\":3,\"timezone\":\"Australia\\/Brisbane\"}},{\"open\":{\"date\":\"2021-11-09 08:30:00.000000\",\"timezone_type\":3,\"timezone\":\"Australia\\/Brisbane\"},\"close\":{\"date\":\"2021-11-09 17:30:00.000000\",\"timezone_type\":3,\"timezone\":\"Australia\\/Brisbane\"}},{\"open\":{\"date\":\"2021-11-09 08:30:00.000000\",\"timezone_type\":3,\"timezone\":\"Australia\\/Brisbane\"},\"close\":{\"date\":\"2021-11-09 17:30:00.000000\",\"timezone_type\":3,\"timezone\":\"Australia\\/Brisbane\"}},{\"open\":{\"date\":\"2021-11-09 08:30:00.000000\",\"timezone_type\":3,\"timezone\":\"Australia\\/Brisbane\"},\"close\":{\"date\":\"2021-11-09 17:30:00.000000\",\"timezone_type\":3,\"timezone\":\"Australia\\/Brisbane\"}},{\"open\":{\"date\":\"2021-11-09 08:30:00.000000\",\"timezone_type\":3,\"timezone\":\"Australia\\/Brisbane\"},\"close\":{\"date\":\"2021-11-09 17:30:00.000000\",\"timezone_type\":3,\"timezone\":\"Australia\\/Brisbane\"}},{\"open\":null,\"close\":null}],\"restaurantServesCuisine\":\"\",\"restaurantMenuUrl\":\"\",\"restaurantReservationsUrl\":\"\"},\"creator\":{\"siteType\":\"Organization\",\"siteSubType\":\"LocalBusiness\",\"siteSpecificType\":\"\",\"computedType\":\"Organization\",\"genericName\":\"\",\"genericAlternateName\":\"\",\"genericDescription\":\"\",\"genericUrl\":\"\",\"genericImage\":\"\",\"genericImageWidth\":\"\",\"genericImageHeight\":\"\",\"genericImageIds\":[],\"genericTelephone\":\"\",\"genericEmail\":\"\",\"genericStreetAddress\":\"\",\"genericAddressLocality\":\"\",\"genericAddressRegion\":\"\",\"genericPostalCode\":\"\",\"genericAddressCountry\":\"\",\"genericGeoLatitude\":\"\",\"genericGeoLongitude\":\"\",\"personGender\":\"\",\"personBirthPlace\":\"\",\"organizationDuns\":\"\",\"organizationFounder\":\"\",\"organizationFoundingDate\":\"\",\"organizationFoundingLocation\":\"\",\"organizationContactPoints\":[],\"corporationTickerSymbol\":\"\",\"localBusinessPriceRange\":\"\",\"localBusinessOpeningHours\":[],\"restaurantServesCuisine\":\"\",\"restaurantMenuUrl\":\"\",\"restaurantReservationsUrl\":\"\"},\"twitterHandle\":\"\",\"facebookProfileId\":\"\",\"facebookAppId\":\"\",\"googleSiteVerification\":\"\",\"bingSiteVerification\":\"\",\"pinterestSiteVerification\":\"\",\"facebookSiteVerification\":\"\",\"sameAsLinks\":{\"twitter\":{\"siteName\":\"Twitter\",\"handle\":\"twitter\",\"url\":\"\",\"account\":\"\"},\"facebook\":{\"siteName\":\"Facebook\",\"handle\":\"facebook\",\"url\":\"https:\\/\\/www.facebook.com\\/newwordorderau\\/\",\"account\":\"\"},\"wikipedia\":{\"siteName\":\"Wikipedia\",\"handle\":\"wikipedia\",\"url\":\"\",\"account\":\"\"},\"linkedin\":{\"siteName\":\"LinkedIn\",\"handle\":\"linkedin\",\"url\":\"https:\\/\\/www.linkedin.com\\/company\\/new-word-order\\/\",\"account\":\"\"},\"googleplus\":{\"siteName\":\"Google+\",\"handle\":\"googleplus\",\"url\":\"\",\"account\":\"\"},\"youtube\":{\"siteName\":\"YouTube\",\"handle\":\"youtube\",\"url\":\"\",\"account\":\"\"},\"instagram\":{\"siteName\":\"Instagram\",\"handle\":\"instagram\",\"url\":\"https:\\/\\/www.instagram.com\\/new_word_order\\/\",\"account\":\"\"},\"pinterest\":{\"siteName\":\"Pinterest\",\"handle\":\"pinterest\",\"url\":\"\",\"account\":\"\"},\"github\":{\"siteName\":\"GitHub\",\"handle\":\"github\",\"url\":\"\",\"account\":\"\"},\"vimeo\":{\"siteName\":\"Vimeo\",\"handle\":\"vimeo\",\"url\":\"\",\"account\":\"\"}},\"siteLinksSearchTarget\":\"\",\"siteLinksQueryInput\":\"\",\"referrer\":\"no-referrer-when-downgrade\",\"additionalSitemapUrls\":[],\"additionalSitemapUrlsDateUpdated\":null,\"additionalSitemaps\":[]}','{\"sitemapUrls\":true,\"sitemapAssets\":true,\"sitemapFiles\":true,\"sitemapAltLinks\":true,\"sitemapChangeFreq\":\"weekly\",\"sitemapPriority\":0.5,\"sitemapLimit\":null,\"structureDepth\":null,\"sitemapImageFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"caption\",\"field\":\"\"},{\"property\":\"geo_location\",\"field\":\"\"},{\"property\":\"license\",\"field\":\"\"}],\"sitemapVideoFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"description\",\"field\":\"\"},{\"property\":\"thumbnailLoc\",\"field\":\"\"},{\"property\":\"duration\",\"field\":\"\"},{\"property\":\"category\",\"field\":\"\"}],\"inherited\":[],\"overrides\":[]}','{\"MetaTagContainergeneral\":{\"data\":{\"generator\":{\"charset\":\"\",\"content\":\"SEOmatic\",\"httpEquiv\":\"\",\"name\":\"generator\",\"property\":null,\"include\":true,\"key\":\"generator\",\"environment\":null,\"dependencies\":{\"config\":[\"generatorEnabled\"]},\"tagAttrs\":[]},\"keywords\":{\"charset\":\"\",\"content\":\"{{ seomatic.meta.seoKeywords }}\",\"httpEquiv\":\"\",\"name\":\"keywords\",\"property\":null,\"include\":true,\"key\":\"keywords\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"description\":{\"charset\":\"\",\"content\":\"{{ seomatic.meta.seoDescription }}\",\"httpEquiv\":\"\",\"name\":\"description\",\"property\":null,\"include\":true,\"key\":\"description\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"referrer\":{\"charset\":\"\",\"content\":\"{{ seomatic.site.referrer }}\",\"httpEquiv\":\"\",\"name\":\"referrer\",\"property\":null,\"include\":true,\"key\":\"referrer\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"robots\":{\"charset\":\"\",\"content\":\"{{ seomatic.meta.robots }}\",\"httpEquiv\":\"\",\"name\":\"robots\",\"property\":null,\"include\":true,\"key\":\"robots\",\"environment\":{\"live\":{\"content\":\"{{ seomatic.meta.robots }}\"},\"staging\":{\"content\":\"none\"},\"local\":{\"content\":\"none\"}},\"dependencies\":null,\"tagAttrs\":[]}},\"name\":\"General\",\"description\":\"General Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContaineropengraph\":{\"data\":{\"fb:profile_id\":{\"charset\":\"\",\"content\":\"{{ seomatic.site.facebookProfileId }}\",\"httpEquiv\":\"\",\"name\":\"\",\"property\":\"fb:profile_id\",\"include\":true,\"key\":\"fb:profile_id\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"fb:app_id\":{\"charset\":\"\",\"content\":\"{{ seomatic.site.facebookAppId }}\",\"httpEquiv\":\"\",\"name\":\"\",\"property\":\"fb:app_id\",\"include\":true,\"key\":\"fb:app_id\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"og:locale\":{\"charset\":\"\",\"content\":\"{{ craft.app.language |replace({\\\"-\\\": \\\"_\\\"}) }}\",\"httpEquiv\":\"\",\"name\":\"\",\"property\":\"og:locale\",\"include\":true,\"key\":\"og:locale\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"og:locale:alternate\":{\"charset\":\"\",\"content\":\"\",\"httpEquiv\":\"\",\"name\":\"\",\"property\":\"og:locale:alternate\",\"include\":true,\"key\":\"og:locale:alternate\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"og:site_name\":{\"charset\":\"\",\"content\":\"{{ seomatic.site.siteName }}\",\"httpEquiv\":\"\",\"name\":\"\",\"property\":\"og:site_name\",\"include\":true,\"key\":\"og:site_name\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"og:type\":{\"charset\":\"\",\"content\":\"{{ seomatic.meta.ogType }}\",\"httpEquiv\":\"\",\"name\":\"\",\"property\":\"og:type\",\"include\":true,\"key\":\"og:type\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"og:url\":{\"charset\":\"\",\"content\":\"{{ seomatic.meta.canonicalUrl }}\",\"httpEquiv\":\"\",\"name\":\"\",\"property\":\"og:url\",\"include\":true,\"key\":\"og:url\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"og:title\":{\"siteName\":\"{{ seomatic.site.siteName }}\",\"siteNamePosition\":\"{{ seomatic.meta.ogSiteNamePosition }}\",\"separatorChar\":\"{{ seomatic.config.separatorChar }}\",\"charset\":\"\",\"content\":\"{{ seomatic.meta.ogTitle }}\",\"httpEquiv\":\"\",\"name\":\"\",\"property\":\"og:title\",\"include\":true,\"key\":\"og:title\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"og:description\":{\"charset\":\"\",\"content\":\"{{ seomatic.meta.ogDescription }}\",\"httpEquiv\":\"\",\"name\":\"\",\"property\":\"og:description\",\"include\":true,\"key\":\"og:description\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"og:image\":{\"charset\":\"\",\"content\":\"{{ seomatic.meta.ogImage }}\",\"httpEquiv\":\"\",\"name\":\"\",\"property\":\"og:image\",\"include\":true,\"key\":\"og:image\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"og:image:width\":{\"charset\":\"\",\"content\":\"{{ seomatic.meta.ogImageWidth }}\",\"httpEquiv\":\"\",\"name\":\"\",\"property\":\"og:image:width\",\"include\":true,\"key\":\"og:image:width\",\"environment\":null,\"dependencies\":{\"tag\":[\"og:image\"]},\"tagAttrs\":[]},\"og:image:height\":{\"charset\":\"\",\"content\":\"{{ seomatic.meta.ogImageHeight }}\",\"httpEquiv\":\"\",\"name\":\"\",\"property\":\"og:image:height\",\"include\":true,\"key\":\"og:image:height\",\"environment\":null,\"dependencies\":{\"tag\":[\"og:image\"]},\"tagAttrs\":[]},\"og:image:alt\":{\"charset\":\"\",\"content\":\"{{ seomatic.meta.ogImageDescription }}\",\"httpEquiv\":\"\",\"name\":\"\",\"property\":\"og:image:alt\",\"include\":true,\"key\":\"og:image:alt\",\"environment\":null,\"dependencies\":{\"tag\":[\"og:image\"]},\"tagAttrs\":[]},\"og:see_also\":{\"charset\":\"\",\"content\":\"\",\"httpEquiv\":\"\",\"name\":\"\",\"property\":\"og:see_also\",\"include\":true,\"key\":\"og:see_also\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"facebook-site-verification\":{\"charset\":\"\",\"content\":\"{{ seomatic.site.facebookSiteVerification }}\",\"httpEquiv\":\"\",\"name\":\"facebook-domain-verification\",\"property\":null,\"include\":true,\"key\":\"facebook-site-verification\",\"environment\":null,\"dependencies\":{\"site\":[\"facebookSiteVerification\"]},\"tagAttrs\":[]}},\"name\":\"Facebook\",\"description\":\"Facebook OpenGraph Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"opengraph\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainertwitter\":{\"data\":{\"twitter:card\":{\"charset\":\"\",\"content\":\"{{ seomatic.meta.twitterCard }}\",\"httpEquiv\":\"\",\"name\":\"twitter:card\",\"property\":null,\"include\":true,\"key\":\"twitter:card\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"twitter:site\":{\"charset\":\"\",\"content\":\"@{{ seomatic.site.twitterHandle }}\",\"httpEquiv\":\"\",\"name\":\"twitter:site\",\"property\":null,\"include\":true,\"key\":\"twitter:site\",\"environment\":null,\"dependencies\":{\"site\":[\"twitterHandle\"]},\"tagAttrs\":[]},\"twitter:creator\":{\"charset\":\"\",\"content\":\"@{{ seomatic.meta.twitterCreator }}\",\"httpEquiv\":\"\",\"name\":\"twitter:creator\",\"property\":null,\"include\":true,\"key\":\"twitter:creator\",\"environment\":null,\"dependencies\":{\"meta\":[\"twitterCreator\"]},\"tagAttrs\":[]},\"twitter:title\":{\"siteName\":\"{{ seomatic.site.siteName }}\",\"siteNamePosition\":\"{{ seomatic.meta.twitterSiteNamePosition }}\",\"separatorChar\":\"{{ seomatic.config.separatorChar }}\",\"charset\":\"\",\"content\":\"{{ seomatic.meta.twitterTitle }}\",\"httpEquiv\":\"\",\"name\":\"twitter:title\",\"property\":null,\"include\":true,\"key\":\"twitter:title\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"twitter:description\":{\"charset\":\"\",\"content\":\"{{ seomatic.meta.twitterDescription }}\",\"httpEquiv\":\"\",\"name\":\"twitter:description\",\"property\":null,\"include\":true,\"key\":\"twitter:description\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"twitter:image\":{\"charset\":\"\",\"content\":\"{{ seomatic.meta.twitterImage }}\",\"httpEquiv\":\"\",\"name\":\"twitter:image\",\"property\":null,\"include\":true,\"key\":\"twitter:image\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"twitter:image:width\":{\"charset\":\"\",\"content\":\"{{ seomatic.meta.twitterImageWidth }}\",\"httpEquiv\":\"\",\"name\":\"twitter:image:width\",\"property\":null,\"include\":true,\"key\":\"twitter:image:width\",\"environment\":null,\"dependencies\":{\"tag\":[\"twitter:image\"]},\"tagAttrs\":[]},\"twitter:image:height\":{\"charset\":\"\",\"content\":\"{{ seomatic.meta.twitterImageHeight }}\",\"httpEquiv\":\"\",\"name\":\"twitter:image:height\",\"property\":null,\"include\":true,\"key\":\"twitter:image:height\",\"environment\":null,\"dependencies\":{\"tag\":[\"twitter:image\"]},\"tagAttrs\":[]},\"twitter:image:alt\":{\"charset\":\"\",\"content\":\"{{ seomatic.meta.twitterImageDescription }}\",\"httpEquiv\":\"\",\"name\":\"twitter:image:alt\",\"property\":null,\"include\":true,\"key\":\"twitter:image:alt\",\"environment\":null,\"dependencies\":{\"tag\":[\"twitter:image\"]},\"tagAttrs\":[]}},\"name\":\"Twitter\",\"description\":\"Twitter Card Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"twitter\",\"include\":true,\"dependencies\":null,\"clearCache\":false},\"MetaTagContainermiscellaneous\":{\"data\":{\"google-site-verification\":{\"charset\":\"\",\"content\":\"{{ seomatic.site.googleSiteVerification }}\",\"httpEquiv\":\"\",\"name\":\"google-site-verification\",\"property\":null,\"include\":true,\"key\":\"google-site-verification\",\"environment\":null,\"dependencies\":{\"site\":[\"googleSiteVerification\"]},\"tagAttrs\":[]},\"bing-site-verification\":{\"charset\":\"\",\"content\":\"{{ seomatic.site.bingSiteVerification }}\",\"httpEquiv\":\"\",\"name\":\"msvalidate.01\",\"property\":null,\"include\":true,\"key\":\"bing-site-verification\",\"environment\":null,\"dependencies\":{\"site\":[\"bingSiteVerification\"]},\"tagAttrs\":[]},\"pinterest-site-verification\":{\"charset\":\"\",\"content\":\"{{ seomatic.site.pinterestSiteVerification }}\",\"httpEquiv\":\"\",\"name\":\"p:domain_verify\",\"property\":null,\"include\":true,\"key\":\"pinterest-site-verification\",\"environment\":null,\"dependencies\":{\"site\":[\"pinterestSiteVerification\"]},\"tagAttrs\":[]}},\"name\":\"Miscellaneous\",\"description\":\"Miscellaneous Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"miscellaneous\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaLinkContainergeneral\":{\"data\":{\"canonical\":{\"crossorigin\":\"\",\"href\":\"{{ seomatic.meta.canonicalUrl }}\",\"hreflang\":\"\",\"media\":\"\",\"rel\":\"canonical\",\"sizes\":\"\",\"type\":\"\",\"include\":true,\"key\":\"canonical\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"home\":{\"crossorigin\":\"\",\"href\":\"{{ seomatic.helper.siteUrl(\\\"\\/\\\") }}\",\"hreflang\":\"\",\"media\":\"\",\"rel\":\"home\",\"sizes\":\"\",\"type\":\"\",\"include\":true,\"key\":\"home\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]},\"author\":{\"crossorigin\":\"\",\"href\":\"{{ seomatic.helper.siteUrl(\\\"\\/humans.txt\\\") }}\",\"hreflang\":\"\",\"media\":\"\",\"rel\":\"author\",\"sizes\":\"\",\"type\":\"text\\/plain\",\"include\":true,\"key\":\"author\",\"environment\":null,\"dependencies\":{\"frontend_template\":[\"humans\"]},\"tagAttrs\":[]},\"publisher\":{\"crossorigin\":\"\",\"href\":\"{{ seomatic.site.googlePublisherLink }}\",\"hreflang\":\"\",\"media\":\"\",\"rel\":\"publisher\",\"sizes\":\"\",\"type\":\"\",\"include\":true,\"key\":\"publisher\",\"environment\":null,\"dependencies\":{\"site\":[\"googlePublisherLink\"]},\"tagAttrs\":[]}},\"name\":\"General\",\"description\":\"Link Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaLinkContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaScriptContainergeneral\":{\"data\":{\"gtag\":{\"name\":\"Google gtag.js\",\"description\":\"The global site tag (gtag.js) is a JavaScript tagging framework and API that allows you to send event data to AdWords, DoubleClick, and Google Analytics. Instead of having to manage multiple tags for different products, you can use gtag.js and more easily benefit from the latest tracking features and integrations as they become available. [Learn More](https:\\/\\/developers.google.com\\/gtagjs\\/)\",\"templatePath\":\"_frontend\\/scripts\\/gtagHead.twig\",\"templateString\":\"{% set gtagProperty = googleAnalyticsId.value ??? googleAdWordsId.value ??? dcFloodlightId.value ??? null %}\\n{% if gtagProperty %}\\nwindow.dataLayer = window.dataLayer || [{% if dataLayer is defined and dataLayer %}{{ dataLayer |json_encode() |raw }}{% endif %}];\\nfunction gtag(){dataLayer.push(arguments)};\\ngtag(\'js\', new Date());\\n{% set pageView = (sendPageView.value and not seomatic.helper.isPreview) %}\\n{% if googleAnalyticsId.value %}\\n{%- set gtagConfig = \\\"{\\\"\\n    ~ \\\"\'send_page_view\': #{pageView ? \'true\' : \'false\'},\\\"\\n    ~ \\\"\'anonymize_ip\': #{ipAnonymization.value ? \'true\' : \'false\'},\\\"\\n    ~ \\\"\'link_attribution\': #{enhancedLinkAttribution.value ? \'true\' : \'false\'},\\\"\\n    ~ \\\"\'allow_display_features\': #{displayFeatures.value ? \'true\' : \'false\'}\\\"\\n    ~ \\\"}\\\"\\n-%}\\ngtag(\'config\', \'{{ googleAnalyticsId.value }}\', {{ gtagConfig }});\\n{% endif %}\\n{% if googleAdWordsId.value %}\\n{%- set gtagConfig = \\\"{\\\"\\n    ~ \\\"\'send_page_view\': #{pageView ? \'true\' : \'false\'}\\\"\\n    ~ \\\"}\\\"\\n-%}\\ngtag(\'config\', \'{{ googleAdWordsId.value }}\', {{ gtagConfig }});\\n{% endif %}\\n{% if dcFloodlightId.value %}\\n{%- set gtagConfig = \\\"{\\\"\\n    ~ \\\"\'send_page_view\': #{pageView ? \'true\' : \'false\'}\\\"\\n    ~ \\\"}\\\"\\n-%}\\ngtag(\'config\', \'{{ dcFloodlightId.value }}\', {{ gtagConfig }});\\n{% endif %}\\n{% endif %}\\n\",\"position\":1,\"bodyTemplatePath\":\"_frontend\\/scripts\\/gtagBody.twig\",\"bodyTemplateString\":\"{% set gtagProperty = googleAnalyticsId.value ??? googleAdWordsId.value ??? dcFloodlightId.value ??? null %}\\n{% if gtagProperty %}\\n<script async src=\\\"{{ gtagScriptUrl.value }}?id={{ gtagProperty }}\\\"><\\/script>\\n{% endif %}\\n\",\"bodyPosition\":2,\"vars\":{\"googleAnalyticsId\":{\"title\":\"Google Analytics Measurement\\/Tracking ID\",\"instructions\":\"Only enter the ID, e.g.: `G-XXXXXXXXXX` or `UA-XXXXXX-XX`, not the entire script code. [Learn More](https:\\/\\/support.google.com\\/analytics\\/answer\\/1032385?hl=e)\",\"type\":\"string\",\"value\":\"\"},\"googleAdWordsId\":{\"title\":\"AdWords Conversion ID\",\"instructions\":\"Only enter the ID, e.g.: `AW-XXXXXXXX`, not the entire script code. [Learn More](https:\\/\\/developers.google.com\\/adwords-remarketing-tag\\/)\",\"type\":\"string\",\"value\":\"\"},\"dcFloodlightId\":{\"title\":\"DoubleClick Floodlight ID\",\"instructions\":\"Only enter the ID, e.g.: `DC-XXXXXXXX`, not the entire script code. [Learn More](https:\\/\\/support.google.com\\/dcm\\/partner\\/answer\\/7568534)\",\"type\":\"string\",\"value\":\"\"},\"sendPageView\":{\"title\":\"Automatically send PageView\",\"instructions\":\"Controls whether the `gtag.js` script automatically sends a PageView to Google Analytics, AdWords, and DoubleClick Floodlight when your pages are loaded.\",\"type\":\"bool\",\"value\":true},\"ipAnonymization\":{\"title\":\"Google Analytics IP Anonymization\",\"instructions\":\"In some cases, you might need to anonymize the IP addresses of hits sent to Google Analytics. [Learn More](https:\\/\\/developers.google.com\\/analytics\\/devguides\\/collection\\/gtagjs\\/ip-anonymization)\",\"type\":\"bool\",\"value\":false},\"displayFeatures\":{\"title\":\"Google Analytics Display Features\",\"instructions\":\"The display features plugin for gtag.js can be used to enable Advertising Features in Google Analytics, such as Remarketing, Demographics and Interest Reporting, and more. [Learn More](https:\\/\\/developers.google.com\\/analytics\\/devguides\\/collection\\/gtagjs\\/display-features)\",\"type\":\"bool\",\"value\":false},\"enhancedLinkAttribution\":{\"title\":\"Google Analytics Enhanced Link Attribution\",\"instructions\":\"Enhanced link attribution improves click track reporting by automatically differentiating between multiple link clicks that have the same URL on a given page. [Learn More](https:\\/\\/developers.google.com\\/analytics\\/devguides\\/collection\\/gtagjs\\/enhanced-link-attribution)\",\"type\":\"bool\",\"value\":false},\"gtagScriptUrl\":{\"title\":\"Google gtag.js Script URL\",\"instructions\":\"The URL to the Google gtag.js tracking script. Normally this should not be changed, unless you locally cache it. The JavaScript `dataLayer` will automatically be set to the `dataLayer` Twig template variable.\",\"type\":\"string\",\"value\":\"https:\\/\\/www.googletagmanager.com\\/gtag\\/js\"}},\"dataLayer\":[],\"include\":false,\"key\":\"gtag\",\"environment\":{\"staging\":{\"include\":false},\"local\":{\"include\":false}},\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null},\"googleTagManager\":{\"name\":\"Google Tag Manager\",\"description\":\"Google Tag Manager is a tag management system that allows you to quickly and easily update tags and code snippets on your website. Once the Tag Manager snippet has been added to your website or mobile app, you can configure tags via a web-based user interface without having to alter and deploy additional code. [Learn More](https:\\/\\/support.google.com\\/tagmanager\\/answer\\/6102821?hl=en)\",\"templatePath\":\"_frontend\\/scripts\\/googleTagManagerHead.twig\",\"templateString\":\"{% if googleTagManagerId.value is defined and googleTagManagerId.value and not seomatic.helper.isPreview %}\\n{{ dataLayerVariableName.value }} = [{% if dataLayer is defined and dataLayer %}{{ dataLayer |json_encode() |raw }}{% endif %}];\\n(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({\'gtm.start\':\\nnew Date().getTime(),event:\'gtm.js\'});var f=d.getElementsByTagName(s)[0],\\nj=d.createElement(s),dl=l!=\'dataLayer\'?\'&l=\'+l:\'\';j.async=true;j.src=\\n\'{{ googleTagManagerUrl.value }}?id=\'+i+dl;f.parentNode.insertBefore(j,f);\\n})(window,document,\'script\',\'{{ dataLayerVariableName.value }}\',\'{{ googleTagManagerId.value }}\');\\n{% endif %}\\n\",\"position\":1,\"bodyTemplatePath\":\"_frontend\\/scripts\\/googleTagManagerBody.twig\",\"bodyTemplateString\":\"{% if googleTagManagerId.value is defined and googleTagManagerId.value and not seomatic.helper.isPreview %}\\n<noscript><iframe src=\\\"{{ googleTagManagerNoScriptUrl.value }}?id={{ googleTagManagerId.value }}\\\"\\nheight=\\\"0\\\" width=\\\"0\\\" style=\\\"display:none;visibility:hidden\\\"><\\/iframe><\\/noscript>\\n{% endif %}\\n\",\"bodyPosition\":2,\"vars\":{\"googleTagManagerId\":{\"title\":\"Google Tag Manager ID\",\"instructions\":\"Only enter the ID, e.g.: `GTM-XXXXXX`, not the entire script code. [Learn More](https:\\/\\/developers.google.com\\/tag-manager\\/quickstart)\",\"type\":\"string\",\"value\":\"\"},\"dataLayerVariableName\":{\"title\":\"DataLayer Variable Name\",\"instructions\":\"The name to use for the JavaScript DataLayer variable. The value of this variable will be set to the `dataLayer` Twig template variable.\",\"type\":\"string\",\"value\":\"dataLayer\"},\"googleTagManagerUrl\":{\"title\":\"Google Tag Manager Script URL\",\"instructions\":\"The URL to the Google Tag Manager script. Normally this should not be changed, unless you locally cache it.\",\"type\":\"string\",\"value\":\"https:\\/\\/www.googletagmanager.com\\/gtm.js\"},\"googleTagManagerNoScriptUrl\":{\"title\":\"Google Tag Manager Script &lt;noscript&gt; URL\",\"instructions\":\"The URL to the Google Tag Manager `&lt;noscript&gt;`. Normally this should not be changed, unless you locally cache it.\",\"type\":\"string\",\"value\":\"https:\\/\\/www.googletagmanager.com\\/ns.html\"}},\"dataLayer\":[],\"include\":false,\"key\":\"googleTagManager\",\"environment\":{\"staging\":{\"include\":false},\"local\":{\"include\":false}},\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null},\"facebookPixel\":{\"name\":\"Facebook Pixel\",\"description\":\"The Facebook pixel is an analytics tool that helps you measure the effectiveness of your advertising. You can use the Facebook pixel to understand the actions people are taking on your website and reach audiences you care about. [Learn More](https:\\/\\/www.facebook.com\\/business\\/help\\/651294705016616)\",\"templatePath\":\"_frontend\\/scripts\\/facebookPixelHead.twig\",\"templateString\":\"{% if facebookPixelId.value is defined and facebookPixelId.value %}\\n!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?\\nn.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;\\nn.push=n;n.loaded=!0;n.version=\'2.0\';n.queue=[];t=b.createElement(e);t.async=!0;\\nt.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,\\ndocument,\'script\',\'{{ facebookPixelUrl.value }}\');\\nfbq(\'init\', \'{{ facebookPixelId.value }}\');\\n{% set pageView = (sendPageView.value and not seomatic.helper.isPreview) %}\\n{% if pageView %}\\nfbq(\'track\', \'PageView\');\\n{% endif %}\\n{% endif %}\\n\",\"position\":1,\"bodyTemplatePath\":\"_frontend\\/scripts\\/facebookPixelBody.twig\",\"bodyTemplateString\":\"{% if facebookPixelId.value is defined and facebookPixelId.value %}\\n<noscript><img height=\\\"1\\\" width=\\\"1\\\" style=\\\"display:none\\\"\\nsrc=\\\"{{ facebookPixelNoScriptUrl.value }}?id={{ facebookPixelId.value }}&ev=PageView&noscript=1\\\" \\/><\\/noscript>\\n{% endif %}\\n\",\"bodyPosition\":2,\"vars\":{\"facebookPixelId\":{\"title\":\"Facebook Pixel ID\",\"instructions\":\"Only enter the ID, e.g.: `XXXXXXXXXX`, not the entire script code. [Learn More](https:\\/\\/developers.facebook.com\\/docs\\/facebook-pixel\\/api-reference)\",\"type\":\"string\",\"value\":\"\"},\"sendPageView\":{\"title\":\"Automatically send Facebook Pixel PageView\",\"instructions\":\"Controls whether the Facebook Pixel script automatically sends a PageView to Facebook Analytics when your pages are loaded.\",\"type\":\"bool\",\"value\":true},\"facebookPixelUrl\":{\"title\":\"Facebook Pixel Script URL\",\"instructions\":\"The URL to the Facebook Pixel script. Normally this should not be changed, unless you locally cache it.\",\"type\":\"string\",\"value\":\"https:\\/\\/connect.facebook.net\\/en_US\\/fbevents.js\"},\"facebookPixelNoScriptUrl\":{\"title\":\"Facebook Pixel Script &lt;noscript&gt; URL\",\"instructions\":\"The URL to the Facebook Pixel `&lt;noscript&gt;`. Normally this should not be changed, unless you locally cache it.\",\"type\":\"string\",\"value\":\"https:\\/\\/www.facebook.com\\/tr\"}},\"dataLayer\":[],\"include\":false,\"key\":\"facebookPixel\",\"environment\":{\"staging\":{\"include\":false},\"local\":{\"include\":false}},\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null},\"linkedInInsight\":{\"name\":\"LinkedIn Insight\",\"description\":\"The LinkedIn Insight Tag is a lightweight JavaScript tag that powers conversion tracking, retargeting, and web analytics for LinkedIn ad campaigns.\",\"templatePath\":\"_frontend\\/scripts\\/linkedInInsightHead.twig\",\"templateString\":\"{% if dataPartnerId.value is defined and dataPartnerId.value %}\\n_linkedin_data_partner_id = \\\"{{ dataPartnerId.value }}\\\";\\n{% endif %}\\n\",\"position\":1,\"bodyTemplatePath\":\"_frontend\\/scripts\\/linkedInInsightBody.twig\",\"bodyTemplateString\":\"{% if dataPartnerId.value is defined and dataPartnerId.value %}\\n<script type=\\\"text\\/javascript\\\">\\n(function(){var s = document.getElementsByTagName(\\\"script\\\")[0];\\n    var b = document.createElement(\\\"script\\\");\\n    b.type = \\\"text\\/javascript\\\";b.async = true;\\n    b.src = \\\"{{ linkedInInsightUrl.value }}\\\";\\n    s.parentNode.insertBefore(b, s);})();\\n<\\/script>\\n<noscript>\\n<img height=\\\"1\\\" width=\\\"1\\\" style=\\\"display:none;\\\" alt=\\\"\\\" src=\\\"{{ linkedInInsightNoScriptUrl.value }}?pid={{ dataPartnerId.value }}&fmt=gif\\\" \\/>\\n<\\/noscript>\\n{% endif %}\\n\",\"bodyPosition\":3,\"vars\":{\"dataPartnerId\":{\"title\":\"LinkedIn Data Partner ID\",\"instructions\":\"Only enter the ID, e.g.: `XXXXXXXXXX`, not the entire script code. [Learn More](https:\\/\\/www.linkedin.com\\/help\\/lms\\/answer\\/65513\\/adding-the-linkedin-insight-tag-to-your-website?lang=en)\",\"type\":\"string\",\"value\":\"\"},\"linkedInInsightUrl\":{\"title\":\"LinkedIn Insight Script URL\",\"instructions\":\"The URL to the LinkedIn Insight script. Normally this should not be changed, unless you locally cache it.\",\"type\":\"string\",\"value\":\"https:\\/\\/snap.licdn.com\\/li.lms-analytics\\/insight.min.js\"},\"linkedInInsightNoScriptUrl\":{\"title\":\"LinkedIn Insight &lt;noscript&gt; URL\",\"instructions\":\"The URL to the LinkedIn Insight `&lt;noscript&gt;`. Normally this should not be changed, unless you locally cache it.\",\"type\":\"string\",\"value\":\"https:\\/\\/dc.ads.linkedin.com\\/collect\\/\"}},\"dataLayer\":[],\"include\":false,\"key\":\"linkedInInsight\",\"environment\":{\"staging\":{\"include\":false},\"local\":{\"include\":false}},\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null},\"hubSpot\":{\"name\":\"HubSpot\",\"description\":\"If you\'re not hosting your entire website on HubSpot, or have pages on your website that are not hosted on HubSpot, you\'ll need to install the HubSpot tracking code on your non-HubSpot pages in order to capture those analytics.\",\"templatePath\":null,\"templateString\":null,\"position\":1,\"bodyTemplatePath\":\"_frontend\\/scripts\\/hubSpotBody.twig\",\"bodyTemplateString\":\"{% if hubSpotId.value is defined and hubSpotId.value %}\\n<script type=\\\"text\\/javascript\\\" id=\\\"hs-script-loader\\\" async defer src=\\\"{{ hubSpotUrl.value }}{{ hubSpotId.value }}.js\\\"><\\/script>\\n{% endif %}\\n\",\"bodyPosition\":3,\"vars\":{\"hubSpotId\":{\"title\":\"HubSpot ID\",\"instructions\":\"Only enter the ID, e.g.: `XXXXXXXXXX`, not the entire script code. [Learn More](https:\\/\\/knowledge.hubspot.com\\/articles\\/kcs_article\\/reports\\/install-the-hubspot-tracking-code)\",\"type\":\"string\",\"value\":\"\"},\"hubSpotUrl\":{\"title\":\"HubSpot Script URL\",\"instructions\":\"The URL to the HubSpot script. Normally this should not be changed, unless you locally cache it.\",\"type\":\"string\",\"value\":\"\\/\\/js.hs-scripts.com\\/\"}},\"dataLayer\":[],\"include\":false,\"key\":\"hubSpot\",\"environment\":{\"staging\":{\"include\":false},\"local\":{\"include\":false}},\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null},\"pinterestTag\":{\"name\":\"Pinterest Tag\",\"description\":\"The Pinterest tag allows you to track actions people take on your website after viewing your Promoted Pin. You can use this information to measure return on ad spend (RoAS) and create audiences to target on your Promoted Pins. [Learn More](https:\\/\\/help.pinterest.com\\/en\\/business\\/article\\/track-conversions-with-pinterest-tag)\",\"templatePath\":\"_frontend\\/scripts\\/pinterestTagHead.twig\",\"templateString\":\"{% if pinterestTagId.value is defined and pinterestTagId.value %}\\n!function(e){if(!window.pintrk){window.pintrk=function(){window.pintrk.queue.push(\\nArray.prototype.slice.call(arguments))};var\\nn=window.pintrk;n.queue=[],n.version=\\\"3.0\\\";var\\nt=document.createElement(\\\"script\\\");t.async=!0,t.src=e;var\\nr=document.getElementsByTagName(\\\"script\\\")[0];r.parentNode.insertBefore(t,r)}}(\\\"{{ pinterestTagUrl.value }}\\\");\\npintrk(\'load\', \'{{ pinterestTagId.value }}\');\\n{% set pageView = (sendPageView.value and not seomatic.helper.isPreview) %}\\n{% if pageView %}\\npintrk(\'page\');\\n{% endif %}\\n{% endif %}\\n\",\"position\":1,\"bodyTemplatePath\":\"_frontend\\/scripts\\/pinterestTagBody.twig\",\"bodyTemplateString\":\"{% if pinterestTagId.value is defined and pinterestTagId.value %}\\n<noscript><img height=\\\"1\\\" width=\\\"1\\\" style=\\\"display:none;\\\" alt=\\\"\\\" src=\\\"{{ pinterestTagNoScriptUrl.value }}?tid={{ pinterestTagId.value }}&noscript=1\\\" \\/><\\/noscript>\\n{% endif %}\\n\",\"bodyPosition\":2,\"vars\":{\"pinterestTagId\":{\"title\":\"Pinterest Tag ID\",\"instructions\":\"Only enter the ID, e.g.: `XXXXXXXXXX`, not the entire script code. [Learn More](https:\\/\\/developers.pinterest.com\\/docs\\/ad-tools\\/conversion-tag\\/)\",\"type\":\"string\",\"value\":\"\"},\"sendPageView\":{\"title\":\"Automatically send Pinterest Tag PageView\",\"instructions\":\"Controls whether the Pinterest Tag script automatically sends a PageView to when your pages are loaded.\",\"type\":\"bool\",\"value\":true},\"pinterestTagUrl\":{\"title\":\"Pinterest Tag Script URL\",\"instructions\":\"The URL to the Pinterest Tag script. Normally this should not be changed, unless you locally cache it.\",\"type\":\"string\",\"value\":\"https:\\/\\/s.pinimg.com\\/ct\\/core.js\"},\"pinterestTagNoScriptUrl\":{\"title\":\"Pinterest Tag Script &lt;noscript&gt; URL\",\"instructions\":\"The URL to the Pinterest Tag `&lt;noscript&gt;`. Normally this should not be changed, unless you locally cache it.\",\"type\":\"string\",\"value\":\"https:\\/\\/ct.pinterest.com\\/v3\\/\"}},\"dataLayer\":[],\"include\":false,\"key\":\"pinterestTag\",\"environment\":{\"staging\":{\"include\":false},\"local\":{\"include\":false}},\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null},\"fathom\":{\"name\":\"Fathom\",\"description\":\"Fathom is a simple, light-weight, privacy-first alternative to Google Analytics. So, stop scrolling through pages of reports and collecting gobs of personal data about your visitors, both of which you probably don’t need. [Learn More](https:\\/\\/usefathom.com\\/)\",\"templatePath\":\"_frontend\\/scripts\\/fathomAnalytics.twig\",\"templateString\":\"{% if siteId.value is defined and siteId.value %}\\n(function() {\\nvar tag = document.createElement(\'script\');\\ntag.src = \\\"{{ scriptUrl.value }}\\\";\\ntag.defer = true;\\ntag.setAttribute(\\\"data-site\\\", \\\"{{ siteId.value | raw }}\\\");\\n{% if honorDnt.value %}\\ntag.setAttribute(\\\"data-honor-dnt\\\", \\\"true\\\");\\n{% endif %}\\n{% if disableAutoTracking.value %}\\ntag.setAttribute(\\\"data-auto\\\", \\\"false\\\");\\n{% endif %}\\n{% if ignoreCanonicals.value %}\\ntag.setAttribute(\\\"data-canonical\\\", \\\"false\\\");\\n{% endif %}\\n{% if excludedDomains.value | length %}\\ntag.setAttribute(\\\"data-excluded-domains\\\", \\\"{{ excludedDomains.value | raw }}\\\");\\n{% endif %}\\n{% if includedDomains.value | length %}\\ntag.setAttribute(\\\"data-included-domains\\\", \\\"{{ includedDomains.value | raw }}\\\");\\n{% endif %}\\nvar firstScriptTag = document.getElementsByTagName(\'script\')[0];\\nfirstScriptTag.parentNode.insertBefore(tag, firstScriptTag);\\n})();\\n{% endif %}\\n\",\"position\":1,\"bodyTemplatePath\":null,\"bodyTemplateString\":null,\"bodyPosition\":2,\"vars\":{\"siteId\":{\"title\":\"Site ID\",\"instructions\":\"Only enter the Site ID, not the entire script code. [Learn More](https:\\/\\/usefathom.com\\/support\\/tracking)\",\"type\":\"string\",\"value\":\"\"},\"honorDnt\":{\"title\":\"Honoring Do Not Track (DNT)\",\"instructions\":\"By default we track every visitor to your website, regardless of them having DNT turned on or not. [Learn More](https:\\/\\/usefathom.com\\/support\\/tracking-advanced)\",\"type\":\"bool\",\"value\":false},\"disableAutoTracking\":{\"title\":\"Disable automatic tracking\",\"instructions\":\"By default, we track a page view every time a visitor to your website loads a page with our script on it. [Learn More](https:\\/\\/usefathom.com\\/support\\/tracking-advanced)\",\"type\":\"bool\",\"value\":false},\"ignoreCanonicals\":{\"title\":\"Ignore canonicals\",\"instructions\":\"If there’s a canonical URL in place, then by default we use it instead of the current URL. [Learn More](https:\\/\\/usefathom.com\\/support\\/tracking-advanced)\",\"type\":\"bool\",\"value\":false},\"excludedDomains\":{\"title\":\"Excluded Domains\",\"instructions\":\"You exclude one or several domains, so our tracker will track things on every domain, except the ones excluded. [Learn More](https:\\/\\/usefathom.com\\/support\\/tracking-advanced)\",\"type\":\"string\",\"value\":\"\"},\"includedDomains\":{\"title\":\"Included Domains\",\"instructions\":\"If you want to go in the opposite direction and only track stats on a specific domain. [Learn More](https:\\/\\/usefathom.com\\/support\\/tracking-advanced)\",\"type\":\"string\",\"value\":\"\"},\"scriptUrl\":{\"title\":\"Fathom Script URL\",\"instructions\":\"The URL to the Fathom tracking script. Normally this should not be changed, unless you locally cache it.\",\"type\":\"string\",\"value\":\"https:\\/\\/cdn.usefathom.com\\/script.js\"}},\"dataLayer\":[],\"include\":false,\"key\":\"fathom\",\"environment\":{\"staging\":{\"include\":false},\"local\":{\"include\":false}},\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null},\"matomo\":{\"name\":\"Matomo\",\"description\":\"Matomo is a Google Analytics alternative that protects your data and your customers\' privacy [Learn More](https:\\/\\/matomo.org\\/)\",\"templatePath\":\"_frontend\\/scripts\\/matomoAnalytics.twig\",\"templateString\":\"{% if siteId.value is defined and siteId.value and scriptUrl.value is defined and scriptUrl.value | length %}\\nvar _paq = window._paq = window._paq || [];\\n{% if sendPageView.value %}\\n_paq.push([\'trackPageView\']);\\n{% endif %}\\n{% if sendPageView.value %}\\n_paq.push([\'enableLinkTracking\']);\\n{% endif %}\\n(function() {\\nvar u=\\\"\\/\\/{{ scriptUrl.value }}\\/\\\";\\n_paq.push([\'setTrackerUrl\', u+\'matomo.php\']);\\n_paq.push([\'setSiteId\', {{ siteId.value }}]);\\nvar d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0];\\ng.type=\'text\\/javascript\'; g.async=true; g.src=u+\'matomo.js\'; s.parentNode.insertBefore(g,s);\\n})();\\n{% endif %}\\n\",\"position\":1,\"bodyTemplatePath\":null,\"bodyTemplateString\":null,\"bodyPosition\":2,\"vars\":{\"siteId\":{\"title\":\"Site ID\",\"instructions\":\"Only enter the Site ID, not the entire script code. [Learn More](https:\\/\\/developer.matomo.org\\/guides\\/tracking-javascript-guide)\",\"type\":\"string\",\"value\":\"\"},\"sendPageView\":{\"title\":\"Automatically send Matomo PageView\",\"instructions\":\"Controls whether the Matomo script automatically sends a PageView when your pages are loaded. [Learn More](https:\\/\\/developer.matomo.org\\/api-reference\\/tracking-javascript)\",\"type\":\"bool\",\"value\":true},\"enableLinkTracking\":{\"title\":\"Enable Link Tracking\",\"instructions\":\"Install link tracking on all applicable link elements. [Learn More](https:\\/\\/developer.matomo.org\\/api-reference\\/tracking-javascript)\",\"type\":\"bool\",\"value\":true},\"scriptUrl\":{\"title\":\"Matomo Script URL\",\"instructions\":\"The URL to the Matomo tracking script. This will vary depending on whether you are using Matomo Cloud or Matomo On-Premise. [Learn More](https:\\/\\/developer.matomo.org\\/guides\\/tracking-javascript-guide)\",\"type\":\"string\",\"value\":\"\"}},\"dataLayer\":[],\"include\":false,\"key\":\"matomo\",\"environment\":{\"staging\":{\"include\":false},\"local\":{\"include\":false}},\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null},\"plausible\":{\"name\":\"Plausible\",\"description\":\"Plausible is a lightweight and open-source website analytics tool. No cookies and fully compliant with GDPR, CCPA and PECR. [Learn More](https:\\/\\/plausible.io\\/)\",\"templatePath\":\"_frontend\\/scripts\\/plausibleAnalytics.twig\",\"templateString\":\"{% if siteDomain.value is defined and siteDomain.value %}\\n(function() {\\nvar tag = document.createElement(\'script\');\\ntag.src = \\\"{{ scriptUrl.value }}\\\";\\ntag.defer = true;\\ntag.setAttribute(\\\"data-domain\\\", \\\"{{ siteDomain.value | raw }}\\\");\\nvar firstScriptTag = document.getElementsByTagName(\'script\')[0];\\nfirstScriptTag.parentNode.insertBefore(tag, firstScriptTag);\\n})();\\n{% endif %}\\n\",\"position\":1,\"bodyTemplatePath\":null,\"bodyTemplateString\":null,\"bodyPosition\":2,\"vars\":{\"siteDomain\":{\"title\":\"Site Domain\",\"instructions\":\"Only enter the site domain, not the entire script code. [Learn More](https:\\/\\/plausible.io\\/docs\\/plausible-script)\",\"type\":\"string\",\"value\":\"\"},\"scriptUrl\":{\"title\":\"Plausible Script URL\",\"instructions\":\"The URL to the Plausible tracking script. Normally this should not be changed, unless you locally cache it.\",\"type\":\"string\",\"value\":\"https:\\/\\/plausible.io\\/js\\/plausible.js\"}},\"dataLayer\":[],\"include\":false,\"key\":\"plausible\",\"environment\":{\"staging\":{\"include\":false},\"local\":{\"include\":false}},\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null},\"googleAnalytics\":{\"name\":\"Google Analytics (old)\",\"description\":\"Google Analytics gives you the digital analytics tools you need to analyze data from all touchpoints in one place, for a deeper understanding of the customer experience. You can then share the insights that matter with your whole organization. [Learn More](https:\\/\\/www.google.com\\/analytics\\/analytics\\/)\",\"templatePath\":\"_frontend\\/scripts\\/googleAnalytics.twig\",\"templateString\":\"{% if trackingId.value is defined and trackingId.value %}\\r\\n(function(i,s,o,g,r,a,m){i[\'GoogleAnalyticsObject\']=r;i[r]=i[r]||function(){\\r\\n(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),\\r\\nm=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)\\r\\n})(window,document,\'script\',\'{{ analyticsUrl.value }}\',\'ga\');\\r\\nga(\'create\', \'{{ trackingId.value |raw }}\', \'auto\'{% if linker.value %}, {allowLinker: true}{% endif %});\\r\\n{% if ipAnonymization.value %}\\r\\nga(\'set\', \'anonymizeIp\', true);\\r\\n{% endif %}\\r\\n{% if displayFeatures.value %}\\r\\nga(\'require\', \'displayfeatures\');\\r\\n{% endif %}\\r\\n{% if ecommerce.value %}\\r\\nga(\'require\', \'ecommerce\');\\r\\n{% endif %}\\r\\n{% if enhancedEcommerce.value %}\\r\\nga(\'require\', \'ec\');\\r\\n{% endif %}\\r\\n{% if enhancedLinkAttribution.value %}\\r\\nga(\'require\', \'linkid\');\\r\\n{% endif %}\\r\\n{% if enhancedLinkAttribution.value %}\\r\\nga(\'require\', \'linker\');\\r\\n{% endif %}\\r\\n{% set pageView = (sendPageView.value and not seomatic.helper.isPreview) %}\\r\\n{% if pageView %}\\r\\nga(\'send\', \'pageview\');\\r\\n{% endif %}\\r\\n{% endif %}\\r\\n\",\"position\":\"1\",\"bodyTemplatePath\":null,\"bodyTemplateString\":null,\"bodyPosition\":2,\"vars\":{\"trackingId\":{\"title\":\"Google Analytics Tracking ID\",\"instructions\":\"Only enter the ID, e.g.: `UA-XXXXXX-XX`, not the entire script code. [Learn More](https:\\/\\/support.google.com\\/analytics\\/answer\\/1032385?hl=e)\",\"type\":\"string\",\"value\":\"UA-34135666-1\"},\"sendPageView\":{\"title\":\"Automatically send Google Analytics PageView\",\"instructions\":\"Controls whether the Google Analytics script automatically sends a PageView to Google Analytics when your pages are loaded.\",\"type\":\"bool\",\"value\":\"1\"},\"ipAnonymization\":{\"title\":\"Google Analytics IP Anonymization\",\"instructions\":\"When a customer of Analytics requests IP address anonymization, Analytics anonymizes the address as soon as technically feasible at the earliest possible stage of the collection network.\",\"type\":\"bool\",\"value\":\"\"},\"displayFeatures\":{\"title\":\"Display Features\",\"instructions\":\"The display features plugin for analytics.js can be used to enable Advertising Features in Google Analytics, such as Remarketing, Demographics and Interest Reporting, and more. [Learn More](https:\\/\\/developers.google.com\\/analytics\\/devguides\\/collection\\/analyticsjs\\/display-features)\",\"type\":\"bool\",\"value\":\"\"},\"ecommerce\":{\"title\":\"Ecommerce\",\"instructions\":\"Ecommerce tracking allows you to measure the number of transactions and revenue that your website generates. [Learn More](https:\\/\\/developers.google.com\\/analytics\\/devguides\\/collection\\/analyticsjs\\/ecommerce)\",\"type\":\"bool\",\"value\":\"\"},\"enhancedEcommerce\":{\"title\":\"Enhanced Ecommerce\",\"instructions\":\"The enhanced ecommerce plug-in for analytics.js enables the measurement of user interactions with products on ecommerce websites across the user\'s shopping experience, including: product impressions, product clicks, viewing product details, adding a product to a shopping cart, initiating the checkout process, transactions, and refunds. [Learn More](https:\\/\\/developers.google.com\\/analytics\\/devguides\\/collection\\/analyticsjs\\/enhanced-ecommerce)\",\"type\":\"bool\",\"value\":\"\"},\"enhancedLinkAttribution\":{\"title\":\"Enhanced Link Attribution\",\"instructions\":\"Enhanced Link Attribution improves the accuracy of your In-Page Analytics report by automatically differentiating between multiple links to the same URL on a single page by using link element IDs. [Learn More](https:\\/\\/developers.google.com\\/analytics\\/devguides\\/collection\\/analyticsjs\\/enhanced-link-attribution)\",\"type\":\"bool\",\"value\":\"\"},\"linker\":{\"title\":\"Linker\",\"instructions\":\"The linker plugin simplifies the process of implementing cross-domain tracking as described in the Cross-domain Tracking guide for analytics.js. [Learn More](https:\\/\\/developers.google.com\\/analytics\\/devguides\\/collection\\/analyticsjs\\/linker)\",\"type\":\"bool\",\"value\":\"\"},\"analyticsUrl\":{\"title\":\"Google Analytics Script URL\",\"instructions\":\"The URL to the Google Analytics tracking script. Normally this should not be changed, unless you locally cache it.\",\"type\":\"string\",\"value\":\"https:\\/\\/www.google-analytics.com\\/analytics.js\"}},\"dataLayer\":[],\"include\":\"1\",\"key\":\"googleAnalytics\",\"environment\":{\"staging\":{\"include\":false},\"local\":{\"include\":false}},\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null}},\"position\":1,\"name\":\"General\",\"description\":\"Script Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaScriptContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaJsonLdContainergeneral\":{\"data\":{\"mainEntityOfPage\":{\"context\":\"http:\\/\\/schema.org\",\"type\":\"{{ seomatic.meta.mainEntityOfPage }}\",\"id\":null,\"graph\":null,\"include\":true,\"key\":\"mainEntityOfPage\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null,\"issn\":null,\"workTranslation\":null,\"educationalLevel\":null,\"associatedMedia\":null,\"exampleOfWork\":null,\"releasedEvent\":null,\"version\":null,\"locationCreated\":null,\"acquireLicensePage\":null,\"thumbnailUrl\":null,\"provider\":null,\"expires\":null,\"contentLocation\":null,\"educationalUse\":null,\"copyrightHolder\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"accessibilityControl\":null,\"maintainer\":null,\"educationalAlignment\":null,\"spatial\":null,\"publisher\":null,\"keywords\":null,\"assesses\":null,\"reviews\":null,\"isBasedOn\":null,\"mentions\":null,\"publishingPrinciples\":null,\"contributor\":null,\"license\":null,\"citation\":null,\"accessibilitySummary\":null,\"award\":null,\"commentCount\":null,\"temporalCoverage\":null,\"dateCreated\":null,\"discussionUrl\":null,\"copyrightNotice\":null,\"learningResourceType\":null,\"awards\":null,\"accessModeSufficient\":null,\"review\":null,\"conditionsOfAccess\":null,\"interactivityType\":null,\"abstract\":null,\"fileFormat\":null,\"interpretedAsClaim\":null,\"text\":null,\"archivedAt\":null,\"alternativeHeadline\":null,\"creditText\":null,\"funding\":null,\"interactionStatistic\":null,\"workExample\":null,\"about\":null,\"encodings\":null,\"funder\":null,\"video\":null,\"isPartOf\":null,\"pattern\":null,\"editor\":null,\"dateModified\":null,\"translationOfWork\":null,\"creativeWorkStatus\":null,\"isBasedOnUrl\":null,\"isFamilyFriendly\":null,\"isAccessibleForFree\":null,\"author\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"contentReferenceTime\":null,\"correction\":null,\"sdDatePublished\":null,\"comment\":null,\"countryOfOrigin\":null,\"timeRequired\":null,\"typicalAgeRange\":null,\"genre\":null,\"producer\":null,\"schemaVersion\":null,\"audience\":null,\"encoding\":null,\"publisherImprint\":null,\"accessibilityAPI\":null,\"sdPublisher\":null,\"audio\":null,\"accessibilityFeature\":null,\"spatialCoverage\":null,\"accessMode\":null,\"editEIDR\":null,\"usageInfo\":null,\"position\":null,\"encodingFormat\":null,\"copyrightYear\":null,\"mainEntity\":null,\"creator\":{\"id\":\"{{ parseEnv(seomatic.site.creator.genericUrl) }}#creator\"},\"teaches\":null,\"temporal\":null,\"size\":null,\"translator\":null,\"aggregateRating\":null,\"accountablePerson\":null,\"accessibilityHazard\":null,\"contentRating\":null,\"recordedAt\":null,\"publication\":null,\"sdLicense\":null,\"headline\":null,\"materialExtent\":null,\"inLanguage\":\"{{ seomatic.meta.language }}\",\"material\":null,\"datePublished\":null,\"offers\":null,\"hasPart\":null,\"sourceOrganization\":null,\"sponsor\":null,\"character\":null,\"potentialAction\":{\"type\":\"SearchAction\",\"target\":{\"type\":\"EntryPoint\",\"urlTemplate\":\"{{ seomatic.site.siteLinksSearchTarget }}\"},\"query-input\":\"{{ seomatic.helper.siteLinksQueryInput() }}\"},\"mainEntityOfPage\":\"{{ seomatic.meta.canonicalUrl }}\",\"subjectOf\":null,\"url\":\"{{ seomatic.meta.canonicalUrl }}\",\"alternateName\":null,\"sameAs\":null,\"description\":\"{{ seomatic.meta.seoDescription }}\",\"disambiguatingDescription\":null,\"identifier\":null,\"image\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.meta.seoImage }}\"},\"name\":\"{{ seomatic.meta.seoTitle }}\",\"additionalType\":null},\"identity\":{\"context\":\"http:\\/\\/schema.org\",\"type\":\"{{ seomatic.site.identity.computedType }}\",\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\",\"graph\":null,\"include\":true,\"key\":\"identity\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null,\"priceRange\":\"{{ seomatic.site.identity.localBusinessPriceRange }}\",\"currenciesAccepted\":null,\"branchOf\":null,\"paymentAccepted\":null,\"openingHours\":[],\"geoCovers\":null,\"longitude\":null,\"smokingAllowed\":null,\"isicV4\":null,\"globalLocationNumber\":null,\"amenityFeature\":null,\"additionalProperty\":null,\"slogan\":null,\"photos\":null,\"keywords\":null,\"reviews\":null,\"tourBookingPage\":null,\"geoWithin\":null,\"containsPlace\":null,\"review\":null,\"hasMap\":null,\"containedIn\":null,\"events\":null,\"geoOverlaps\":null,\"geoEquals\":null,\"maps\":null,\"isAccessibleForFree\":null,\"event\":null,\"photo\":null,\"containedInPlace\":null,\"logo\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.helper.socialTransform(seomatic.site.identity.genericImageIds[0], \\\"schema-logo\\\") }}\",\"width\":\"{{ seomatic.helper.socialTransformWidth(seomatic.site.identity.genericImageIds[0], \\\"schema-logo\\\") }}\",\"height\":\"{{ seomatic.helper.socialTransformHeight(seomatic.site.identity.genericImageIds[0], \\\"schema-logo\\\") }}\"},\"geoCrosses\":null,\"address\":{\"type\":\"PostalAddress\",\"streetAddress\":\"{{ seomatic.site.identity.genericStreetAddress }}\",\"addressLocality\":\"{{ seomatic.site.identity.genericAddressLocality }}\",\"addressRegion\":\"{{ seomatic.site.identity.genericAddressRegion }}\",\"postalCode\":\"{{ seomatic.site.identity.genericPostalCode }}\",\"addressCountry\":\"{{ seomatic.site.identity.genericAddressCountry }}\"},\"geo\":{\"type\":\"GeoCoordinates\",\"latitude\":\"{{ seomatic.site.identity.genericGeoLatitude }}\",\"longitude\":\"{{ seomatic.site.identity.genericGeoLongitude }}\"},\"openingHoursSpecification\":null,\"geoDisjoint\":null,\"geoIntersects\":null,\"latitude\":null,\"maximumAttendeeCapacity\":null,\"aggregateRating\":null,\"map\":null,\"branchCode\":null,\"faxNumber\":null,\"publicAccess\":null,\"geoTouches\":null,\"geoCoveredBy\":null,\"telephone\":\"{{ seomatic.site.identity.genericTelephone }}\",\"hasDriveThroughService\":null,\"specialOpeningHoursSpecification\":null,\"geoContains\":null,\"potentialAction\":null,\"mainEntityOfPage\":null,\"subjectOf\":null,\"url\":\"{{ seomatic.site.identity.genericUrl }}\",\"alternateName\":\"{{ seomatic.site.identity.genericAlternateName }}\",\"sameAs\":null,\"description\":\"{{ seomatic.site.identity.genericDescription }}\",\"disambiguatingDescription\":null,\"identifier\":null,\"image\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.site.identity.genericImage }}\",\"width\":\"{{ seomatic.site.identity.genericImageWidth }}\",\"height\":\"{{ seomatic.site.identity.genericImageHeight }}\"},\"name\":\"{{ seomatic.site.identity.genericName }}\",\"additionalType\":null,\"serviceArea\":null,\"founder\":\"{{ seomatic.site.identity.organizationFounder }}\",\"hasPOS\":null,\"member\":null,\"knowsAbout\":null,\"makesOffer\":null,\"ownershipFundingInfo\":null,\"founders\":null,\"legalName\":null,\"actionableFeedbackPolicy\":null,\"areaServed\":null,\"parentOrganization\":null,\"department\":null,\"memberOf\":null,\"publishingPrinciples\":null,\"employee\":null,\"award\":null,\"email\":\"{{ seomatic.site.identity.genericEmail }}\",\"contactPoints\":[],\"diversityStaffingReport\":null,\"foundingDate\":\"{{ seomatic.site.identity.organizationFoundingDate }}\",\"owns\":null,\"awards\":null,\"dissolutionDate\":null,\"funding\":null,\"interactionStatistic\":null,\"seeks\":null,\"employees\":null,\"unnamedSourcesPolicy\":null,\"subOrganization\":null,\"foundingLocation\":\"{{ seomatic.site.identity.organizationFoundingLocation }}\",\"funder\":null,\"iso6523Code\":null,\"diversityPolicy\":null,\"hasMerchantReturnPolicy\":null,\"duns\":\"{{ seomatic.site.identity.organizationDuns }}\",\"alumni\":null,\"ethicsPolicy\":null,\"leiCode\":null,\"vatID\":null,\"knowsLanguage\":null,\"correctionsPolicy\":null,\"hasCredential\":null,\"brand\":null,\"nonprofitStatus\":null,\"contactPoint\":null,\"hasOfferCatalog\":null,\"members\":null,\"taxID\":null,\"naics\":null,\"location\":null,\"numberOfEmployees\":null,\"sponsor\":null},\"creator\":{\"context\":\"http:\\/\\/schema.org\",\"type\":\"{{ seomatic.site.creator.computedType }}\",\"id\":\"{{ parseEnv(seomatic.site.creator.genericUrl) }}#creator\",\"graph\":null,\"include\":true,\"key\":\"creator\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null,\"serviceArea\":null,\"founder\":\"{{ seomatic.site.creator.organizationFounder }}\",\"isicV4\":null,\"hasPOS\":null,\"globalLocationNumber\":null,\"member\":null,\"knowsAbout\":null,\"makesOffer\":null,\"ownershipFundingInfo\":null,\"founders\":null,\"legalName\":null,\"actionableFeedbackPolicy\":null,\"areaServed\":null,\"parentOrganization\":null,\"slogan\":null,\"department\":null,\"keywords\":null,\"reviews\":null,\"memberOf\":null,\"publishingPrinciples\":null,\"employee\":null,\"award\":null,\"email\":\"{{ seomatic.site.creator.genericEmail }}\",\"contactPoints\":[],\"diversityStaffingReport\":null,\"foundingDate\":\"{{ seomatic.site.creator.organizationFoundingDate }}\",\"owns\":null,\"awards\":null,\"review\":null,\"dissolutionDate\":null,\"funding\":null,\"interactionStatistic\":null,\"events\":null,\"seeks\":null,\"employees\":null,\"unnamedSourcesPolicy\":null,\"subOrganization\":null,\"foundingLocation\":\"{{ seomatic.site.creator.organizationFoundingLocation }}\",\"funder\":null,\"iso6523Code\":null,\"diversityPolicy\":null,\"hasMerchantReturnPolicy\":null,\"event\":null,\"duns\":\"{{ seomatic.site.creator.organizationDuns }}\",\"alumni\":null,\"ethicsPolicy\":null,\"leiCode\":null,\"vatID\":null,\"knowsLanguage\":null,\"correctionsPolicy\":null,\"logo\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.helper.socialTransform(seomatic.site.creator.genericImageIds[0], \\\"schema-logo\\\") }}\",\"width\":\"{{ seomatic.helper.socialTransformWidth(seomatic.site.creator.genericImageIds[0], \\\"schema-logo\\\") }}\",\"height\":\"{{ seomatic.helper.socialTransformHeight(seomatic.site.creator.genericImageIds[0], \\\"schema-logo\\\") }}\"},\"hasCredential\":null,\"address\":{\"type\":\"PostalAddress\",\"streetAddress\":\"{{ seomatic.site.creator.genericStreetAddress }}\",\"addressLocality\":\"{{ seomatic.site.creator.genericAddressLocality }}\",\"addressRegion\":\"{{ seomatic.site.creator.genericAddressRegion }}\",\"postalCode\":\"{{ seomatic.site.creator.genericPostalCode }}\",\"addressCountry\":\"{{ seomatic.site.creator.genericAddressCountry }}\"},\"brand\":null,\"nonprofitStatus\":null,\"contactPoint\":null,\"hasOfferCatalog\":null,\"members\":null,\"aggregateRating\":null,\"faxNumber\":null,\"telephone\":\"{{ seomatic.site.creator.genericTelephone }}\",\"taxID\":null,\"naics\":null,\"location\":null,\"numberOfEmployees\":null,\"sponsor\":null,\"potentialAction\":null,\"mainEntityOfPage\":null,\"subjectOf\":null,\"url\":\"{{ seomatic.site.creator.genericUrl }}\",\"alternateName\":\"{{ seomatic.site.creator.genericAlternateName }}\",\"sameAs\":null,\"description\":\"{{ seomatic.site.creator.genericDescription }}\",\"disambiguatingDescription\":null,\"identifier\":null,\"image\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.site.creator.genericImage }}\",\"width\":\"{{ seomatic.site.creator.genericImageWidth }}\",\"height\":\"{{ seomatic.site.creator.genericImageHeight }}\"},\"name\":\"{{ seomatic.site.creator.genericName }}\",\"additionalType\":null}},\"name\":\"General\",\"description\":\"JsonLd Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaJsonLdContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTitleContainergeneral\":{\"data\":{\"title\":{\"title\":\"{{ seomatic.meta.seoTitle }}\",\"siteName\":\"{{ seomatic.site.siteName }}\",\"siteNamePosition\":\"{{ seomatic.meta.siteNamePosition }}\",\"separatorChar\":\"{{ seomatic.config.separatorChar }}\",\"include\":true,\"key\":\"title\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]}},\"name\":\"General\",\"description\":\"Meta Title Tag\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTitleContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false}}','[]','{\"data\":{\"humans\":{\"templateVersion\":\"1.0.0\",\"templateString\":\"\\/* TEAM *\\/\\n\\nCreator: {{ seomatic.site.creator.genericName ?? \\\"n\\/a\\\" }}\\nURL: {{ seomatic.site.creator.genericUrl ?? \\\"n\\/a\\\" }}\\nDescription: {{ seomatic.site.creator.genericDescription ?? \\\"n\\/a\\\" }}\\n\\n\\/* THANKS *\\/\\n\\nCraft CMS - https:\\/\\/craftcms.com\\nPixel & Tonic - https:\\/\\/pixelandtonic.com\\n\\n\\/* SITE *\\/\\n\\nStandards: HTML5, CSS3\\nComponents: Craft CMS 3, Yii2, PHP, JavaScript, SEOmatic\\n\",\"siteId\":null,\"include\":true,\"handle\":\"humans\",\"path\":\"humans.txt\",\"template\":\"_frontend\\/pages\\/humans.twig\",\"controller\":\"frontend-template\",\"action\":\"humans\"},\"robots\":{\"templateVersion\":\"1.0.0\",\"templateString\":\"# robots.txt for {{ siteUrl }}\\n\\n{{ seomatic.helper.sitemapIndex() }}\\n{% switch seomatic.config.environment %}\\n\\n{% case \\\"live\\\" %}\\n\\n# live - don\'t allow web crawlers to index cpresources\\/ or vendor\\/\\n\\nUser-agent: *\\nDisallow: \\/cpresources\\/\\nDisallow: \\/vendor\\/\\nDisallow: \\/.env\\nDisallow: \\/cache\\/\\n\\n{% case \\\"staging\\\" %}\\n\\n# staging - disallow all\\n\\nUser-agent: *\\nDisallow: \\/\\n\\n{% case \\\"local\\\" %}\\n\\n# local - disallow all\\n\\nUser-agent: *\\nDisallow: \\/\\n\\n{% default %}\\n\\n# default - don\'t allow web crawlers to index cpresources\\/ or vendor\\/\\n\\nUser-agent: *\\nDisallow: \\/cpresources\\/\\nDisallow: \\/vendor\\/\\nDisallow: \\/.env\\nDisallow: \\/cache\\/\\n\\n{% endswitch %}\\n\",\"siteId\":null,\"include\":true,\"handle\":\"robots\",\"path\":\"robots.txt\",\"template\":\"_frontend\\/pages\\/robots.twig\",\"controller\":\"frontend-template\",\"action\":\"robots\"},\"ads\":{\"templateVersion\":\"1.0.0\",\"templateString\":\"# ads.txt file for {{ siteUrl }}\\n# More info: https:\\/\\/support.google.com\\/admanager\\/answer\\/7441288?hl=en\\n{{ siteUrl }},123,DIRECT\\n\",\"siteId\":null,\"include\":true,\"handle\":\"ads\",\"path\":\"ads.txt\",\"template\":\"_frontend\\/pages\\/ads.twig\",\"controller\":\"frontend-template\",\"action\":\"ads\"},\"security\":{\"templateVersion\":\"1.0.0\",\"templateString\":\"# security.txt file for {{ siteUrl }} - more info: https:\\/\\/securitytxt.org\\/\\n# (required) Contact email address for security issues\\nContact: {% set adminUser = craft.app.getUsers().userById(1) %}{{ adminUser.email ?? \'user@example.com\' }}\\n\\n# (required) Expiration date for the security information herein\\nExpiration: {{ date|atom }}\\n\\n# (optional) OpenPGP key:\\nEncryption: {{ siteUrl }}pgp-key.txt\\n\\n# (optional) Security policy page:\\nPolicy: {{ siteUrl }}security-policy\\n\\n# (optional) Security acknowledgements page:\\nAcknowledgements: {{ siteUrl }}hall-of-fame\\n\",\"siteId\":null,\"include\":true,\"handle\":\"security\",\"path\":\"security.txt\",\"template\":\"_frontend\\/pages\\/security.twig\",\"controller\":\"frontend-template\",\"action\":\"security\"}},\"name\":\"Frontend Templates\",\"description\":\"Templates that are rendered on the frontend\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\FrontendTemplateContainer\",\"handle\":\"SeomaticEditableTemplate\",\"include\":true,\"dependencies\":null,\"clearCache\":false}','{\"siteType\":\"CreativeWork\",\"siteSubType\":\"WebSite\",\"siteSpecificType\":\"\",\"seoTitleSource\":\"keywordsFromField\",\"seoTitleField\":\"seoGlobal.seoTitle\",\"siteNamePositionSource\":\"fromCustom\",\"seoDescriptionSource\":\"summaryFromField\",\"seoDescriptionField\":\"seoGlobal.seoDescription\",\"seoKeywordsSource\":\"keywordsFromField\",\"seoKeywordsField\":\"seoGlobal.seoKeywords\",\"seoImageIds\":\"\",\"seoImageSource\":\"fromField\",\"seoImageField\":\"seoGlobal.seoImage\",\"seoImageTransform\":\"1\",\"seoImageTransformMode\":\"crop\",\"seoImageDescriptionSource\":\"summaryFromField\",\"seoImageDescriptionField\":\"seoGlobal.seoImageDescription\",\"twitterCreatorSource\":\"sameAsSite\",\"twitterCreatorField\":\"\",\"twitterTitleSource\":\"sameAsSeo\",\"twitterTitleField\":\"\",\"twitterSiteNamePositionSource\":\"fromCustom\",\"twitterDescriptionSource\":\"sameAsSeo\",\"twitterDescriptionField\":\"\",\"twitterImageIds\":\"\",\"twitterImageSource\":\"sameAsSeo\",\"twitterImageField\":\"seoGlobal.seoImage\",\"twitterImageTransform\":\"1\",\"twitterImageTransformMode\":\"crop\",\"twitterImageDescriptionSource\":\"sameAsSeo\",\"twitterImageDescriptionField\":\"\",\"ogTitleSource\":\"sameAsSeo\",\"ogTitleField\":\"\",\"ogSiteNamePositionSource\":\"fromCustom\",\"ogDescriptionSource\":\"sameAsSeo\",\"ogDescriptionField\":\"\",\"ogImageIds\":\"\",\"ogImageSource\":\"sameAsSeo\",\"ogImageField\":\"seoGlobal.seoImage\",\"ogImageTransform\":\"1\",\"ogImageTransformMode\":\"crop\",\"ogImageDescriptionSource\":\"sameAsSeo\",\"ogImageDescriptionField\":\"\"}'),(2,'2021-11-09 01:12:27','2022-09-20 14:00:38','f84031d4-4ef0-4ca6-8128-800699d2ed6f','1.0.27','categorygroup',5,'Company','company','category',NULL,'brandaudit/search',1,'{\"1\":{\"id\":5,\"groupId\":5,\"siteId\":1,\"hasUrls\":true,\"uriFormat\":\"brandaudit/company/{slug}\",\"template\":\"brandaudit/search\",\"language\":\"en-au\"}}','2021-09-10 06:08:44','{\"language\":null,\"mainEntityOfPage\":\"WebPage\",\"seoTitle\":\"{category.title}\",\"siteNamePosition\":\"\",\"seoDescription\":\"\",\"seoKeywords\":\"\",\"seoImage\":\"\",\"seoImageWidth\":\"\",\"seoImageHeight\":\"\",\"seoImageDescription\":\"\",\"canonicalUrl\":\"{category.url}\",\"robots\":\"all\",\"ogType\":\"website\",\"ogTitle\":\"{seomatic.meta.seoTitle}\",\"ogSiteNamePosition\":\"\",\"ogDescription\":\"{seomatic.meta.seoDescription}\",\"ogImage\":\"{seomatic.meta.seoImage}\",\"ogImageWidth\":\"{seomatic.meta.seoImageWidth}\",\"ogImageHeight\":\"{seomatic.meta.seoImageHeight}\",\"ogImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"twitterCard\":\"summary_large_image\",\"twitterCreator\":\"{seomatic.site.twitterHandle}\",\"twitterTitle\":\"{seomatic.meta.seoTitle}\",\"twitterSiteNamePosition\":\"\",\"twitterDescription\":\"{seomatic.meta.seoDescription}\",\"twitterImage\":\"{seomatic.meta.seoImage}\",\"twitterImageWidth\":\"{seomatic.meta.seoImageWidth}\",\"twitterImageHeight\":\"{seomatic.meta.seoImageHeight}\",\"twitterImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"inherited\":[],\"overrides\":[]}','{\"siteName\":\"NWO\",\"identity\":null,\"creator\":null,\"twitterHandle\":\"\",\"facebookProfileId\":\"\",\"facebookAppId\":\"\",\"googleSiteVerification\":\"\",\"bingSiteVerification\":\"\",\"pinterestSiteVerification\":\"\",\"facebookSiteVerification\":\"\",\"sameAsLinks\":[],\"siteLinksSearchTarget\":\"\",\"siteLinksQueryInput\":\"\",\"referrer\":\"no-referrer-when-downgrade\",\"additionalSitemapUrls\":[],\"additionalSitemapUrlsDateUpdated\":null,\"additionalSitemaps\":[]}','{\"sitemapUrls\":true,\"sitemapAssets\":true,\"sitemapFiles\":true,\"sitemapAltLinks\":true,\"sitemapChangeFreq\":\"weekly\",\"sitemapPriority\":0.5,\"sitemapLimit\":null,\"structureDepth\":null,\"sitemapImageFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"caption\",\"field\":\"\"},{\"property\":\"geo_location\",\"field\":\"\"},{\"property\":\"license\",\"field\":\"\"}],\"sitemapVideoFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"description\",\"field\":\"\"},{\"property\":\"thumbnailLoc\",\"field\":\"\"},{\"property\":\"duration\",\"field\":\"\"},{\"property\":\"category\",\"field\":\"\"}],\"inherited\":[],\"overrides\":[]}','{\"MetaTagContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"General Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContaineropengraph\":{\"data\":[],\"name\":\"Facebook\",\"description\":\"Facebook OpenGraph Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"opengraph\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainertwitter\":{\"data\":[],\"name\":\"Twitter\",\"description\":\"Twitter Card Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"twitter\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainermiscellaneous\":{\"data\":[],\"name\":\"Miscellaneous\",\"description\":\"Miscellaneous Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"miscellaneous\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaLinkContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"Link Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaLinkContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaScriptContainergeneral\":{\"data\":[],\"position\":1,\"name\":\"General\",\"description\":\"Script Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaScriptContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaJsonLdContainergeneral\":{\"data\":{\"mainEntityOfPage\":{\"context\":\"http://schema.org\",\"type\":\"{{ seomatic.meta.mainEntityOfPage }}\",\"id\":null,\"graph\":null,\"include\":true,\"key\":\"mainEntityOfPage\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null,\"lastReviewed\":null,\"specialty\":null,\"primaryImageOfPage\":null,\"significantLink\":null,\"reviewedBy\":null,\"mainContentOfPage\":null,\"relatedLink\":null,\"speakable\":null,\"breadcrumb\":null,\"significantLinks\":null,\"teaches\":null,\"educationalLevel\":null,\"abstract\":null,\"creativeWorkStatus\":null,\"expires\":null,\"contentReferenceTime\":null,\"material\":null,\"review\":null,\"fileFormat\":null,\"text\":null,\"translator\":null,\"award\":null,\"assesses\":null,\"copyrightNotice\":null,\"schemaVersion\":null,\"countryOfOrigin\":null,\"pattern\":null,\"accountablePerson\":null,\"funding\":null,\"educationalUse\":null,\"genre\":null,\"keywords\":null,\"position\":null,\"accessibilityHazard\":null,\"alternativeHeadline\":null,\"audience\":null,\"offers\":null,\"locationCreated\":null,\"associatedMedia\":null,\"materialExtent\":null,\"mainEntity\":null,\"copyrightHolder\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"awards\":null,\"contentLocation\":null,\"sdDatePublished\":null,\"producer\":null,\"spatial\":null,\"publisher\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"sourceOrganization\":null,\"character\":null,\"funder\":null,\"exampleOfWork\":null,\"usageInfo\":null,\"provider\":null,\"sdPublisher\":null,\"comment\":null,\"accessibilityFeature\":null,\"publication\":null,\"translationOfWork\":null,\"interactivityType\":null,\"commentCount\":null,\"accessMode\":null,\"aggregateRating\":null,\"timeRequired\":null,\"typicalAgeRange\":null,\"interactionStatistic\":null,\"copyrightYear\":\"{{ category.dateCreated |date(\\\"Y\\\") }}\",\"isBasedOn\":null,\"workExample\":null,\"publishingPrinciples\":null,\"discussionUrl\":null,\"releasedEvent\":null,\"dateCreated\":false,\"workTranslation\":null,\"editor\":null,\"creditText\":null,\"recordedAt\":null,\"editEIDR\":null,\"author\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"dateModified\":\"{{ category.dateUpdated |atom }}\",\"sponsor\":null,\"accessibilitySummary\":null,\"encodingFormat\":null,\"maintainer\":null,\"educationalAlignment\":null,\"acquireLicensePage\":null,\"isAccessibleForFree\":null,\"datePublished\":\"{{ category.dateCreated |atom }}\",\"spatialCoverage\":null,\"sdLicense\":null,\"conditionsOfAccess\":null,\"correction\":null,\"contentRating\":null,\"size\":null,\"isPartOf\":null,\"temporal\":null,\"thumbnailUrl\":null,\"inLanguage\":\"{{ seomatic.meta.language }}\",\"license\":null,\"creator\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"reviews\":null,\"about\":null,\"isFamilyFriendly\":null,\"headline\":\"{{ seomatic.meta.seoTitle }}\",\"accessibilityAPI\":null,\"publisherImprint\":null,\"isBasedOnUrl\":null,\"encodings\":null,\"interpretedAsClaim\":null,\"accessibilityControl\":null,\"citation\":null,\"version\":null,\"archivedAt\":null,\"learningResourceType\":null,\"encoding\":null,\"audio\":null,\"mentions\":null,\"accessModeSufficient\":null,\"hasPart\":null,\"temporalCoverage\":null,\"contributor\":null,\"video\":null,\"mainEntityOfPage\":\"{{ seomatic.meta.canonicalUrl }}\",\"alternateName\":null,\"name\":\"{{ seomatic.meta.seoTitle }}\",\"potentialAction\":{\"type\":\"SearchAction\",\"target\":\"{{ seomatic.site.siteLinksSearchTarget }}\",\"query-input\":\"{{ seomatic.helper.siteLinksQueryInput() }}\"},\"image\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.meta.seoImage }}\"},\"url\":\"{{ seomatic.meta.canonicalUrl }}\",\"description\":\"{{ seomatic.meta.seoDescription }}\",\"subjectOf\":null,\"additionalType\":null,\"disambiguatingDescription\":null,\"sameAs\":null,\"identifier\":null}},\"name\":\"General\",\"description\":\"JsonLd Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaJsonLdContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTitleContainergeneral\":{\"data\":{\"title\":{\"title\":\"{{ seomatic.meta.seoTitle }}\",\"siteName\":\"{{ seomatic.site.siteName }}\",\"siteNamePosition\":\"{{ seomatic.meta.siteNamePosition }}\",\"separatorChar\":\"{{ seomatic.config.separatorChar }}\",\"include\":true,\"key\":\"title\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]}},\"name\":\"General\",\"description\":\"Meta Title Tag\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTitleContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false}}','[]','{\"data\":[],\"name\":null,\"description\":null,\"class\":\"nystudio107\\\\seomatic\\\\models\\\\FrontendTemplateContainer\",\"handle\":null,\"include\":true,\"dependencies\":null,\"clearCache\":false}','{\"siteType\":\"CreativeWork\",\"siteSubType\":\"WebPage\",\"siteSpecificType\":\"\",\"seoTitleSource\":\"fromField\",\"seoTitleField\":\"title\",\"siteNamePositionSource\":\"sameAsGlobal\",\"seoDescriptionSource\":\"fromCustom\",\"seoDescriptionField\":\"\",\"seoKeywordsSource\":\"fromCustom\",\"seoKeywordsField\":\"\",\"seoImageIds\":[],\"seoImageSource\":\"fromAsset\",\"seoImageField\":\"\",\"seoImageTransform\":true,\"seoImageTransformMode\":\"crop\",\"seoImageDescriptionSource\":\"fromCustom\",\"seoImageDescriptionField\":\"\",\"twitterCreatorSource\":\"sameAsSite\",\"twitterCreatorField\":\"\",\"twitterTitleSource\":\"sameAsSeo\",\"twitterTitleField\":\"\",\"twitterSiteNamePositionSource\":\"sameAsGlobal\",\"twitterDescriptionSource\":\"sameAsSeo\",\"twitterDescriptionField\":\"\",\"twitterImageIds\":[],\"twitterImageSource\":\"sameAsSeo\",\"twitterImageField\":\"\",\"twitterImageTransform\":true,\"twitterImageTransformMode\":\"crop\",\"twitterImageDescriptionSource\":\"sameAsSeo\",\"twitterImageDescriptionField\":\"\",\"ogTitleSource\":\"sameAsSeo\",\"ogTitleField\":\"\",\"ogSiteNamePositionSource\":\"sameAsGlobal\",\"ogDescriptionSource\":\"sameAsSeo\",\"ogDescriptionField\":\"\",\"ogImageIds\":[],\"ogImageSource\":\"sameAsSeo\",\"ogImageField\":\"\",\"ogImageTransform\":true,\"ogImageTransformMode\":\"crop\",\"ogImageDescriptionSource\":\"sameAsSeo\",\"ogImageDescriptionField\":\"\"}'),(3,'2021-11-09 01:12:27','2022-09-19 09:50:00','37f81559-b1b1-4d1d-ab46-59e14bf3f7e5','1.0.27','categorygroup',1,'Resource categories','resourceCategories','category',NULL,'',1,'{\"1\":{\"id\":1,\"groupId\":1,\"siteId\":1,\"hasUrls\":true,\"uriFormat\":\"resource-categories/{slug}\",\"template\":null,\"language\":\"en-au\"}}','2021-05-18 03:20:58','{\"language\":null,\"mainEntityOfPage\":\"WebPage\",\"seoTitle\":\"{category.title}\",\"siteNamePosition\":\"\",\"seoDescription\":\"\",\"seoKeywords\":\"\",\"seoImage\":\"\",\"seoImageWidth\":\"\",\"seoImageHeight\":\"\",\"seoImageDescription\":\"\",\"canonicalUrl\":\"{category.url}\",\"robots\":\"all\",\"ogType\":\"website\",\"ogTitle\":\"{seomatic.meta.seoTitle}\",\"ogSiteNamePosition\":\"\",\"ogDescription\":\"{seomatic.meta.seoDescription}\",\"ogImage\":\"{seomatic.meta.seoImage}\",\"ogImageWidth\":\"{seomatic.meta.seoImageWidth}\",\"ogImageHeight\":\"{seomatic.meta.seoImageHeight}\",\"ogImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"twitterCard\":\"summary_large_image\",\"twitterCreator\":\"{seomatic.site.twitterHandle}\",\"twitterTitle\":\"{seomatic.meta.seoTitle}\",\"twitterSiteNamePosition\":\"\",\"twitterDescription\":\"{seomatic.meta.seoDescription}\",\"twitterImage\":\"{seomatic.meta.seoImage}\",\"twitterImageWidth\":\"{seomatic.meta.seoImageWidth}\",\"twitterImageHeight\":\"{seomatic.meta.seoImageHeight}\",\"twitterImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"inherited\":[],\"overrides\":[]}','{\"siteName\":\"NWO\",\"identity\":null,\"creator\":null,\"twitterHandle\":\"\",\"facebookProfileId\":\"\",\"facebookAppId\":\"\",\"googleSiteVerification\":\"\",\"bingSiteVerification\":\"\",\"pinterestSiteVerification\":\"\",\"facebookSiteVerification\":\"\",\"sameAsLinks\":[],\"siteLinksSearchTarget\":\"\",\"siteLinksQueryInput\":\"\",\"referrer\":\"no-referrer-when-downgrade\",\"additionalSitemapUrls\":[],\"additionalSitemapUrlsDateUpdated\":null,\"additionalSitemaps\":[]}','{\"sitemapUrls\":true,\"sitemapAssets\":true,\"sitemapFiles\":true,\"sitemapAltLinks\":true,\"sitemapChangeFreq\":\"weekly\",\"sitemapPriority\":0.5,\"sitemapLimit\":null,\"structureDepth\":null,\"sitemapImageFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"caption\",\"field\":\"\"},{\"property\":\"geo_location\",\"field\":\"\"},{\"property\":\"license\",\"field\":\"\"}],\"sitemapVideoFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"description\",\"field\":\"\"},{\"property\":\"thumbnailLoc\",\"field\":\"\"},{\"property\":\"duration\",\"field\":\"\"},{\"property\":\"category\",\"field\":\"\"}],\"inherited\":[],\"overrides\":[]}','{\"MetaTagContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"General Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContaineropengraph\":{\"data\":[],\"name\":\"Facebook\",\"description\":\"Facebook OpenGraph Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"opengraph\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainertwitter\":{\"data\":[],\"name\":\"Twitter\",\"description\":\"Twitter Card Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"twitter\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainermiscellaneous\":{\"data\":[],\"name\":\"Miscellaneous\",\"description\":\"Miscellaneous Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"miscellaneous\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaLinkContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"Link Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaLinkContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaScriptContainergeneral\":{\"data\":[],\"position\":1,\"name\":\"General\",\"description\":\"Script Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaScriptContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaJsonLdContainergeneral\":{\"data\":{\"mainEntityOfPage\":{\"context\":\"http://schema.org\",\"type\":\"{{ seomatic.meta.mainEntityOfPage }}\",\"id\":null,\"graph\":null,\"include\":true,\"key\":\"mainEntityOfPage\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null,\"lastReviewed\":null,\"specialty\":null,\"primaryImageOfPage\":null,\"significantLink\":null,\"reviewedBy\":null,\"mainContentOfPage\":null,\"relatedLink\":null,\"speakable\":null,\"breadcrumb\":null,\"significantLinks\":null,\"teaches\":null,\"educationalLevel\":null,\"abstract\":null,\"creativeWorkStatus\":null,\"expires\":null,\"contentReferenceTime\":null,\"material\":null,\"review\":null,\"fileFormat\":null,\"text\":null,\"translator\":null,\"award\":null,\"assesses\":null,\"copyrightNotice\":null,\"schemaVersion\":null,\"countryOfOrigin\":null,\"pattern\":null,\"accountablePerson\":null,\"funding\":null,\"educationalUse\":null,\"genre\":null,\"keywords\":null,\"position\":null,\"accessibilityHazard\":null,\"alternativeHeadline\":null,\"audience\":null,\"offers\":null,\"locationCreated\":null,\"associatedMedia\":null,\"materialExtent\":null,\"mainEntity\":null,\"copyrightHolder\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"awards\":null,\"contentLocation\":null,\"sdDatePublished\":null,\"producer\":null,\"spatial\":null,\"publisher\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"sourceOrganization\":null,\"character\":null,\"funder\":null,\"exampleOfWork\":null,\"usageInfo\":null,\"provider\":null,\"sdPublisher\":null,\"comment\":null,\"accessibilityFeature\":null,\"publication\":null,\"translationOfWork\":null,\"interactivityType\":null,\"commentCount\":null,\"accessMode\":null,\"aggregateRating\":null,\"timeRequired\":null,\"typicalAgeRange\":null,\"interactionStatistic\":null,\"copyrightYear\":\"{{ category.dateCreated |date(\\\"Y\\\") }}\",\"isBasedOn\":null,\"workExample\":null,\"publishingPrinciples\":null,\"discussionUrl\":null,\"releasedEvent\":null,\"dateCreated\":false,\"workTranslation\":null,\"editor\":null,\"creditText\":null,\"recordedAt\":null,\"editEIDR\":null,\"author\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"dateModified\":\"{{ category.dateUpdated |atom }}\",\"sponsor\":null,\"accessibilitySummary\":null,\"encodingFormat\":null,\"maintainer\":null,\"educationalAlignment\":null,\"acquireLicensePage\":null,\"isAccessibleForFree\":null,\"datePublished\":\"{{ category.dateCreated |atom }}\",\"spatialCoverage\":null,\"sdLicense\":null,\"conditionsOfAccess\":null,\"correction\":null,\"contentRating\":null,\"size\":null,\"isPartOf\":null,\"temporal\":null,\"thumbnailUrl\":null,\"inLanguage\":\"{{ seomatic.meta.language }}\",\"license\":null,\"creator\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"reviews\":null,\"about\":null,\"isFamilyFriendly\":null,\"headline\":\"{{ seomatic.meta.seoTitle }}\",\"accessibilityAPI\":null,\"publisherImprint\":null,\"isBasedOnUrl\":null,\"encodings\":null,\"interpretedAsClaim\":null,\"accessibilityControl\":null,\"citation\":null,\"version\":null,\"archivedAt\":null,\"learningResourceType\":null,\"encoding\":null,\"audio\":null,\"mentions\":null,\"accessModeSufficient\":null,\"hasPart\":null,\"temporalCoverage\":null,\"contributor\":null,\"video\":null,\"mainEntityOfPage\":\"{{ seomatic.meta.canonicalUrl }}\",\"alternateName\":null,\"name\":\"{{ seomatic.meta.seoTitle }}\",\"potentialAction\":{\"type\":\"SearchAction\",\"target\":\"{{ seomatic.site.siteLinksSearchTarget }}\",\"query-input\":\"{{ seomatic.helper.siteLinksQueryInput() }}\"},\"image\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.meta.seoImage }}\"},\"url\":\"{{ seomatic.meta.canonicalUrl }}\",\"description\":\"{{ seomatic.meta.seoDescription }}\",\"subjectOf\":null,\"additionalType\":null,\"disambiguatingDescription\":null,\"sameAs\":null,\"identifier\":null}},\"name\":\"General\",\"description\":\"JsonLd Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaJsonLdContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTitleContainergeneral\":{\"data\":{\"title\":{\"title\":\"{{ seomatic.meta.seoTitle }}\",\"siteName\":\"{{ seomatic.site.siteName }}\",\"siteNamePosition\":\"{{ seomatic.meta.siteNamePosition }}\",\"separatorChar\":\"{{ seomatic.config.separatorChar }}\",\"include\":true,\"key\":\"title\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]}},\"name\":\"General\",\"description\":\"Meta Title Tag\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTitleContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false}}','[]','{\"data\":[],\"name\":null,\"description\":null,\"class\":\"nystudio107\\\\seomatic\\\\models\\\\FrontendTemplateContainer\",\"handle\":null,\"include\":true,\"dependencies\":null,\"clearCache\":false}','{\"siteType\":\"CreativeWork\",\"siteSubType\":\"WebPage\",\"siteSpecificType\":\"\",\"seoTitleSource\":\"fromField\",\"seoTitleField\":\"title\",\"siteNamePositionSource\":\"sameAsGlobal\",\"seoDescriptionSource\":\"fromCustom\",\"seoDescriptionField\":\"\",\"seoKeywordsSource\":\"fromCustom\",\"seoKeywordsField\":\"\",\"seoImageIds\":[],\"seoImageSource\":\"fromAsset\",\"seoImageField\":\"\",\"seoImageTransform\":true,\"seoImageTransformMode\":\"crop\",\"seoImageDescriptionSource\":\"fromCustom\",\"seoImageDescriptionField\":\"\",\"twitterCreatorSource\":\"sameAsSite\",\"twitterCreatorField\":\"\",\"twitterTitleSource\":\"sameAsSeo\",\"twitterTitleField\":\"\",\"twitterSiteNamePositionSource\":\"sameAsGlobal\",\"twitterDescriptionSource\":\"sameAsSeo\",\"twitterDescriptionField\":\"\",\"twitterImageIds\":[],\"twitterImageSource\":\"sameAsSeo\",\"twitterImageField\":\"\",\"twitterImageTransform\":true,\"twitterImageTransformMode\":\"crop\",\"twitterImageDescriptionSource\":\"sameAsSeo\",\"twitterImageDescriptionField\":\"\",\"ogTitleSource\":\"sameAsSeo\",\"ogTitleField\":\"\",\"ogSiteNamePositionSource\":\"sameAsGlobal\",\"ogDescriptionSource\":\"sameAsSeo\",\"ogDescriptionField\":\"\",\"ogImageIds\":[],\"ogImageSource\":\"sameAsSeo\",\"ogImageField\":\"\",\"ogImageTransform\":true,\"ogImageTransformMode\":\"crop\",\"ogImageDescriptionSource\":\"sameAsSeo\",\"ogImageDescriptionField\":\"\"}'),(4,'2021-11-09 01:12:27','2022-09-19 20:12:24','3e53f103-8326-4d68-8d64-687c7a4dabb4','1.0.27','categorygroup',4,'Sector categories','sectorCategories','category',NULL,'category/index',1,'{\"1\":{\"id\":4,\"groupId\":4,\"siteId\":1,\"hasUrls\":true,\"uriFormat\":\"sector-categories/{slug}\",\"template\":\"category/index\",\"language\":\"en-au\"}}','2021-09-03 00:14:36','{\"language\":null,\"mainEntityOfPage\":\"WebPage\",\"seoTitle\":\"{category.title}\",\"siteNamePosition\":\"\",\"seoDescription\":\"\",\"seoKeywords\":\"\",\"seoImage\":\"\",\"seoImageWidth\":\"\",\"seoImageHeight\":\"\",\"seoImageDescription\":\"\",\"canonicalUrl\":\"{category.url}\",\"robots\":\"all\",\"ogType\":\"website\",\"ogTitle\":\"{seomatic.meta.seoTitle}\",\"ogSiteNamePosition\":\"\",\"ogDescription\":\"{seomatic.meta.seoDescription}\",\"ogImage\":\"{seomatic.meta.seoImage}\",\"ogImageWidth\":\"{seomatic.meta.seoImageWidth}\",\"ogImageHeight\":\"{seomatic.meta.seoImageHeight}\",\"ogImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"twitterCard\":\"summary_large_image\",\"twitterCreator\":\"{seomatic.site.twitterHandle}\",\"twitterTitle\":\"{seomatic.meta.seoTitle}\",\"twitterSiteNamePosition\":\"\",\"twitterDescription\":\"{seomatic.meta.seoDescription}\",\"twitterImage\":\"{seomatic.meta.seoImage}\",\"twitterImageWidth\":\"{seomatic.meta.seoImageWidth}\",\"twitterImageHeight\":\"{seomatic.meta.seoImageHeight}\",\"twitterImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"inherited\":[],\"overrides\":[]}','{\"siteName\":\"NWO\",\"identity\":null,\"creator\":null,\"twitterHandle\":\"\",\"facebookProfileId\":\"\",\"facebookAppId\":\"\",\"googleSiteVerification\":\"\",\"bingSiteVerification\":\"\",\"pinterestSiteVerification\":\"\",\"facebookSiteVerification\":\"\",\"sameAsLinks\":[],\"siteLinksSearchTarget\":\"\",\"siteLinksQueryInput\":\"\",\"referrer\":\"no-referrer-when-downgrade\",\"additionalSitemapUrls\":[],\"additionalSitemapUrlsDateUpdated\":null,\"additionalSitemaps\":[]}','{\"sitemapUrls\":true,\"sitemapAssets\":true,\"sitemapFiles\":true,\"sitemapAltLinks\":true,\"sitemapChangeFreq\":\"weekly\",\"sitemapPriority\":0.5,\"sitemapLimit\":null,\"structureDepth\":null,\"sitemapImageFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"caption\",\"field\":\"\"},{\"property\":\"geo_location\",\"field\":\"\"},{\"property\":\"license\",\"field\":\"\"}],\"sitemapVideoFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"description\",\"field\":\"\"},{\"property\":\"thumbnailLoc\",\"field\":\"\"},{\"property\":\"duration\",\"field\":\"\"},{\"property\":\"category\",\"field\":\"\"}],\"inherited\":[],\"overrides\":[]}','{\"MetaTagContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"General Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContaineropengraph\":{\"data\":[],\"name\":\"Facebook\",\"description\":\"Facebook OpenGraph Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"opengraph\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainertwitter\":{\"data\":[],\"name\":\"Twitter\",\"description\":\"Twitter Card Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"twitter\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainermiscellaneous\":{\"data\":[],\"name\":\"Miscellaneous\",\"description\":\"Miscellaneous Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"miscellaneous\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaLinkContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"Link Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaLinkContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaScriptContainergeneral\":{\"data\":[],\"position\":1,\"name\":\"General\",\"description\":\"Script Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaScriptContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaJsonLdContainergeneral\":{\"data\":{\"mainEntityOfPage\":{\"context\":\"http://schema.org\",\"type\":\"{{ seomatic.meta.mainEntityOfPage }}\",\"id\":null,\"graph\":null,\"include\":true,\"key\":\"mainEntityOfPage\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null,\"lastReviewed\":null,\"specialty\":null,\"primaryImageOfPage\":null,\"significantLink\":null,\"reviewedBy\":null,\"mainContentOfPage\":null,\"relatedLink\":null,\"speakable\":null,\"breadcrumb\":null,\"significantLinks\":null,\"teaches\":null,\"educationalLevel\":null,\"abstract\":null,\"creativeWorkStatus\":null,\"expires\":null,\"contentReferenceTime\":null,\"material\":null,\"review\":null,\"fileFormat\":null,\"text\":null,\"translator\":null,\"award\":null,\"assesses\":null,\"copyrightNotice\":null,\"schemaVersion\":null,\"countryOfOrigin\":null,\"pattern\":null,\"accountablePerson\":null,\"funding\":null,\"educationalUse\":null,\"genre\":null,\"keywords\":null,\"position\":null,\"accessibilityHazard\":null,\"alternativeHeadline\":null,\"audience\":null,\"offers\":null,\"locationCreated\":null,\"associatedMedia\":null,\"materialExtent\":null,\"mainEntity\":null,\"copyrightHolder\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"awards\":null,\"contentLocation\":null,\"sdDatePublished\":null,\"producer\":null,\"spatial\":null,\"publisher\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"sourceOrganization\":null,\"character\":null,\"funder\":null,\"exampleOfWork\":null,\"usageInfo\":null,\"provider\":null,\"sdPublisher\":null,\"comment\":null,\"accessibilityFeature\":null,\"publication\":null,\"translationOfWork\":null,\"interactivityType\":null,\"commentCount\":null,\"accessMode\":null,\"aggregateRating\":null,\"timeRequired\":null,\"typicalAgeRange\":null,\"interactionStatistic\":null,\"copyrightYear\":\"{{ category.dateCreated |date(\\\"Y\\\") }}\",\"isBasedOn\":null,\"workExample\":null,\"publishingPrinciples\":null,\"discussionUrl\":null,\"releasedEvent\":null,\"dateCreated\":false,\"workTranslation\":null,\"editor\":null,\"creditText\":null,\"recordedAt\":null,\"editEIDR\":null,\"author\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"dateModified\":\"{{ category.dateUpdated |atom }}\",\"sponsor\":null,\"accessibilitySummary\":null,\"encodingFormat\":null,\"maintainer\":null,\"educationalAlignment\":null,\"acquireLicensePage\":null,\"isAccessibleForFree\":null,\"datePublished\":\"{{ category.dateCreated |atom }}\",\"spatialCoverage\":null,\"sdLicense\":null,\"conditionsOfAccess\":null,\"correction\":null,\"contentRating\":null,\"size\":null,\"isPartOf\":null,\"temporal\":null,\"thumbnailUrl\":null,\"inLanguage\":\"{{ seomatic.meta.language }}\",\"license\":null,\"creator\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"reviews\":null,\"about\":null,\"isFamilyFriendly\":null,\"headline\":\"{{ seomatic.meta.seoTitle }}\",\"accessibilityAPI\":null,\"publisherImprint\":null,\"isBasedOnUrl\":null,\"encodings\":null,\"interpretedAsClaim\":null,\"accessibilityControl\":null,\"citation\":null,\"version\":null,\"archivedAt\":null,\"learningResourceType\":null,\"encoding\":null,\"audio\":null,\"mentions\":null,\"accessModeSufficient\":null,\"hasPart\":null,\"temporalCoverage\":null,\"contributor\":null,\"video\":null,\"mainEntityOfPage\":\"{{ seomatic.meta.canonicalUrl }}\",\"alternateName\":null,\"name\":\"{{ seomatic.meta.seoTitle }}\",\"potentialAction\":{\"type\":\"SearchAction\",\"target\":\"{{ seomatic.site.siteLinksSearchTarget }}\",\"query-input\":\"{{ seomatic.helper.siteLinksQueryInput() }}\"},\"image\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.meta.seoImage }}\"},\"url\":\"{{ seomatic.meta.canonicalUrl }}\",\"description\":\"{{ seomatic.meta.seoDescription }}\",\"subjectOf\":null,\"additionalType\":null,\"disambiguatingDescription\":null,\"sameAs\":null,\"identifier\":null}},\"name\":\"General\",\"description\":\"JsonLd Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaJsonLdContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTitleContainergeneral\":{\"data\":{\"title\":{\"title\":\"{{ seomatic.meta.seoTitle }}\",\"siteName\":\"{{ seomatic.site.siteName }}\",\"siteNamePosition\":\"{{ seomatic.meta.siteNamePosition }}\",\"separatorChar\":\"{{ seomatic.config.separatorChar }}\",\"include\":true,\"key\":\"title\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]}},\"name\":\"General\",\"description\":\"Meta Title Tag\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTitleContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false}}','[]','{\"data\":[],\"name\":null,\"description\":null,\"class\":\"nystudio107\\\\seomatic\\\\models\\\\FrontendTemplateContainer\",\"handle\":null,\"include\":true,\"dependencies\":null,\"clearCache\":false}','{\"siteType\":\"CreativeWork\",\"siteSubType\":\"WebPage\",\"siteSpecificType\":\"\",\"seoTitleSource\":\"fromField\",\"seoTitleField\":\"title\",\"siteNamePositionSource\":\"sameAsGlobal\",\"seoDescriptionSource\":\"fromCustom\",\"seoDescriptionField\":\"\",\"seoKeywordsSource\":\"fromCustom\",\"seoKeywordsField\":\"\",\"seoImageIds\":[],\"seoImageSource\":\"fromAsset\",\"seoImageField\":\"\",\"seoImageTransform\":true,\"seoImageTransformMode\":\"crop\",\"seoImageDescriptionSource\":\"fromCustom\",\"seoImageDescriptionField\":\"\",\"twitterCreatorSource\":\"sameAsSite\",\"twitterCreatorField\":\"\",\"twitterTitleSource\":\"sameAsSeo\",\"twitterTitleField\":\"\",\"twitterSiteNamePositionSource\":\"sameAsGlobal\",\"twitterDescriptionSource\":\"sameAsSeo\",\"twitterDescriptionField\":\"\",\"twitterImageIds\":[],\"twitterImageSource\":\"sameAsSeo\",\"twitterImageField\":\"\",\"twitterImageTransform\":true,\"twitterImageTransformMode\":\"crop\",\"twitterImageDescriptionSource\":\"sameAsSeo\",\"twitterImageDescriptionField\":\"\",\"ogTitleSource\":\"sameAsSeo\",\"ogTitleField\":\"\",\"ogSiteNamePositionSource\":\"sameAsGlobal\",\"ogDescriptionSource\":\"sameAsSeo\",\"ogDescriptionField\":\"\",\"ogImageIds\":[],\"ogImageSource\":\"sameAsSeo\",\"ogImageField\":\"\",\"ogImageTransform\":true,\"ogImageTransformMode\":\"crop\",\"ogImageDescriptionSource\":\"sameAsSeo\",\"ogImageDescriptionField\":\"\"}'),(5,'2021-11-09 01:12:27','2022-09-19 12:39:10','d0c01533-c1df-4dfe-8e70-204d1d6c3b61','1.0.27','categorygroup',3,'Services categories','servicesCategories','category',NULL,'category/index',1,'{\"1\":{\"id\":3,\"groupId\":3,\"siteId\":1,\"hasUrls\":true,\"uriFormat\":\"services-categories/{slug}\",\"template\":\"category/index\",\"language\":\"en-au\"}}','2021-06-01 07:15:01','{\"language\":null,\"mainEntityOfPage\":\"WebPage\",\"seoTitle\":\"{category.title}\",\"siteNamePosition\":\"\",\"seoDescription\":\"\",\"seoKeywords\":\"\",\"seoImage\":\"\",\"seoImageWidth\":\"\",\"seoImageHeight\":\"\",\"seoImageDescription\":\"\",\"canonicalUrl\":\"{category.url}\",\"robots\":\"all\",\"ogType\":\"website\",\"ogTitle\":\"{seomatic.meta.seoTitle}\",\"ogSiteNamePosition\":\"\",\"ogDescription\":\"{seomatic.meta.seoDescription}\",\"ogImage\":\"{seomatic.meta.seoImage}\",\"ogImageWidth\":\"{seomatic.meta.seoImageWidth}\",\"ogImageHeight\":\"{seomatic.meta.seoImageHeight}\",\"ogImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"twitterCard\":\"summary_large_image\",\"twitterCreator\":\"{seomatic.site.twitterHandle}\",\"twitterTitle\":\"{seomatic.meta.seoTitle}\",\"twitterSiteNamePosition\":\"\",\"twitterDescription\":\"{seomatic.meta.seoDescription}\",\"twitterImage\":\"{seomatic.meta.seoImage}\",\"twitterImageWidth\":\"{seomatic.meta.seoImageWidth}\",\"twitterImageHeight\":\"{seomatic.meta.seoImageHeight}\",\"twitterImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"inherited\":[],\"overrides\":[]}','{\"siteName\":\"NWO\",\"identity\":null,\"creator\":null,\"twitterHandle\":\"\",\"facebookProfileId\":\"\",\"facebookAppId\":\"\",\"googleSiteVerification\":\"\",\"bingSiteVerification\":\"\",\"pinterestSiteVerification\":\"\",\"facebookSiteVerification\":\"\",\"sameAsLinks\":[],\"siteLinksSearchTarget\":\"\",\"siteLinksQueryInput\":\"\",\"referrer\":\"no-referrer-when-downgrade\",\"additionalSitemapUrls\":[],\"additionalSitemapUrlsDateUpdated\":null,\"additionalSitemaps\":[]}','{\"sitemapUrls\":true,\"sitemapAssets\":true,\"sitemapFiles\":true,\"sitemapAltLinks\":true,\"sitemapChangeFreq\":\"weekly\",\"sitemapPriority\":0.5,\"sitemapLimit\":null,\"structureDepth\":null,\"sitemapImageFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"caption\",\"field\":\"\"},{\"property\":\"geo_location\",\"field\":\"\"},{\"property\":\"license\",\"field\":\"\"}],\"sitemapVideoFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"description\",\"field\":\"\"},{\"property\":\"thumbnailLoc\",\"field\":\"\"},{\"property\":\"duration\",\"field\":\"\"},{\"property\":\"category\",\"field\":\"\"}],\"inherited\":[],\"overrides\":[]}','{\"MetaTagContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"General Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContaineropengraph\":{\"data\":[],\"name\":\"Facebook\",\"description\":\"Facebook OpenGraph Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"opengraph\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainertwitter\":{\"data\":[],\"name\":\"Twitter\",\"description\":\"Twitter Card Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"twitter\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainermiscellaneous\":{\"data\":[],\"name\":\"Miscellaneous\",\"description\":\"Miscellaneous Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"miscellaneous\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaLinkContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"Link Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaLinkContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaScriptContainergeneral\":{\"data\":[],\"position\":1,\"name\":\"General\",\"description\":\"Script Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaScriptContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaJsonLdContainergeneral\":{\"data\":{\"mainEntityOfPage\":{\"context\":\"http://schema.org\",\"type\":\"{{ seomatic.meta.mainEntityOfPage }}\",\"id\":null,\"graph\":null,\"include\":true,\"key\":\"mainEntityOfPage\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null,\"lastReviewed\":null,\"specialty\":null,\"primaryImageOfPage\":null,\"significantLink\":null,\"reviewedBy\":null,\"mainContentOfPage\":null,\"relatedLink\":null,\"speakable\":null,\"breadcrumb\":null,\"significantLinks\":null,\"teaches\":null,\"educationalLevel\":null,\"abstract\":null,\"creativeWorkStatus\":null,\"expires\":null,\"contentReferenceTime\":null,\"material\":null,\"review\":null,\"fileFormat\":null,\"text\":null,\"translator\":null,\"award\":null,\"assesses\":null,\"copyrightNotice\":null,\"schemaVersion\":null,\"countryOfOrigin\":null,\"pattern\":null,\"accountablePerson\":null,\"funding\":null,\"educationalUse\":null,\"genre\":null,\"keywords\":null,\"position\":null,\"accessibilityHazard\":null,\"alternativeHeadline\":null,\"audience\":null,\"offers\":null,\"locationCreated\":null,\"associatedMedia\":null,\"materialExtent\":null,\"mainEntity\":null,\"copyrightHolder\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"awards\":null,\"contentLocation\":null,\"sdDatePublished\":null,\"producer\":null,\"spatial\":null,\"publisher\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"sourceOrganization\":null,\"character\":null,\"funder\":null,\"exampleOfWork\":null,\"usageInfo\":null,\"provider\":null,\"sdPublisher\":null,\"comment\":null,\"accessibilityFeature\":null,\"publication\":null,\"translationOfWork\":null,\"interactivityType\":null,\"commentCount\":null,\"accessMode\":null,\"aggregateRating\":null,\"timeRequired\":null,\"typicalAgeRange\":null,\"interactionStatistic\":null,\"copyrightYear\":\"{{ category.dateCreated |date(\\\"Y\\\") }}\",\"isBasedOn\":null,\"workExample\":null,\"publishingPrinciples\":null,\"discussionUrl\":null,\"releasedEvent\":null,\"dateCreated\":false,\"workTranslation\":null,\"editor\":null,\"creditText\":null,\"recordedAt\":null,\"editEIDR\":null,\"author\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"dateModified\":\"{{ category.dateUpdated |atom }}\",\"sponsor\":null,\"accessibilitySummary\":null,\"encodingFormat\":null,\"maintainer\":null,\"educationalAlignment\":null,\"acquireLicensePage\":null,\"isAccessibleForFree\":null,\"datePublished\":\"{{ category.dateCreated |atom }}\",\"spatialCoverage\":null,\"sdLicense\":null,\"conditionsOfAccess\":null,\"correction\":null,\"contentRating\":null,\"size\":null,\"isPartOf\":null,\"temporal\":null,\"thumbnailUrl\":null,\"inLanguage\":\"{{ seomatic.meta.language }}\",\"license\":null,\"creator\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"reviews\":null,\"about\":null,\"isFamilyFriendly\":null,\"headline\":\"{{ seomatic.meta.seoTitle }}\",\"accessibilityAPI\":null,\"publisherImprint\":null,\"isBasedOnUrl\":null,\"encodings\":null,\"interpretedAsClaim\":null,\"accessibilityControl\":null,\"citation\":null,\"version\":null,\"archivedAt\":null,\"learningResourceType\":null,\"encoding\":null,\"audio\":null,\"mentions\":null,\"accessModeSufficient\":null,\"hasPart\":null,\"temporalCoverage\":null,\"contributor\":null,\"video\":null,\"mainEntityOfPage\":\"{{ seomatic.meta.canonicalUrl }}\",\"alternateName\":null,\"name\":\"{{ seomatic.meta.seoTitle }}\",\"potentialAction\":{\"type\":\"SearchAction\",\"target\":\"{{ seomatic.site.siteLinksSearchTarget }}\",\"query-input\":\"{{ seomatic.helper.siteLinksQueryInput() }}\"},\"image\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.meta.seoImage }}\"},\"url\":\"{{ seomatic.meta.canonicalUrl }}\",\"description\":\"{{ seomatic.meta.seoDescription }}\",\"subjectOf\":null,\"additionalType\":null,\"disambiguatingDescription\":null,\"sameAs\":null,\"identifier\":null}},\"name\":\"General\",\"description\":\"JsonLd Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaJsonLdContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTitleContainergeneral\":{\"data\":{\"title\":{\"title\":\"{{ seomatic.meta.seoTitle }}\",\"siteName\":\"{{ seomatic.site.siteName }}\",\"siteNamePosition\":\"{{ seomatic.meta.siteNamePosition }}\",\"separatorChar\":\"{{ seomatic.config.separatorChar }}\",\"include\":true,\"key\":\"title\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]}},\"name\":\"General\",\"description\":\"Meta Title Tag\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTitleContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false}}','[]','{\"data\":[],\"name\":null,\"description\":null,\"class\":\"nystudio107\\\\seomatic\\\\models\\\\FrontendTemplateContainer\",\"handle\":null,\"include\":true,\"dependencies\":null,\"clearCache\":false}','{\"siteType\":\"CreativeWork\",\"siteSubType\":\"WebPage\",\"siteSpecificType\":\"\",\"seoTitleSource\":\"fromField\",\"seoTitleField\":\"title\",\"siteNamePositionSource\":\"sameAsGlobal\",\"seoDescriptionSource\":\"fromCustom\",\"seoDescriptionField\":\"\",\"seoKeywordsSource\":\"fromCustom\",\"seoKeywordsField\":\"\",\"seoImageIds\":[],\"seoImageSource\":\"fromAsset\",\"seoImageField\":\"\",\"seoImageTransform\":true,\"seoImageTransformMode\":\"crop\",\"seoImageDescriptionSource\":\"fromCustom\",\"seoImageDescriptionField\":\"\",\"twitterCreatorSource\":\"sameAsSite\",\"twitterCreatorField\":\"\",\"twitterTitleSource\":\"sameAsSeo\",\"twitterTitleField\":\"\",\"twitterSiteNamePositionSource\":\"sameAsGlobal\",\"twitterDescriptionSource\":\"sameAsSeo\",\"twitterDescriptionField\":\"\",\"twitterImageIds\":[],\"twitterImageSource\":\"sameAsSeo\",\"twitterImageField\":\"\",\"twitterImageTransform\":true,\"twitterImageTransformMode\":\"crop\",\"twitterImageDescriptionSource\":\"sameAsSeo\",\"twitterImageDescriptionField\":\"\",\"ogTitleSource\":\"sameAsSeo\",\"ogTitleField\":\"\",\"ogSiteNamePositionSource\":\"sameAsGlobal\",\"ogDescriptionSource\":\"sameAsSeo\",\"ogDescriptionField\":\"\",\"ogImageIds\":[],\"ogImageSource\":\"sameAsSeo\",\"ogImageField\":\"\",\"ogImageTransform\":true,\"ogImageTransformMode\":\"crop\",\"ogImageDescriptionSource\":\"sameAsSeo\",\"ogImageDescriptionField\":\"\"}'),(6,'2021-11-09 01:12:27','2023-03-10 01:36:37','0c931d60-cf57-4061-a776-8b085839518f','1.0.30','section',7,'About us','aboutUs','single',NULL,'about-us/_entry',1,'{\"1\":{\"id\":7,\"sectionId\":7,\"siteId\":1,\"enabledByDefault\":true,\"hasUrls\":true,\"uriFormat\":\"about\",\"template\":\"about-us/_entry\",\"language\":\"en-au\"}}','2023-03-10 01:36:37','{\"language\":null,\"mainEntityOfPage\":\"WebSite\",\"seoTitle\":\"{{ seomatic.helper.extractTextFromField(entry.seoTitle) }}\",\"siteNamePosition\":\"before\",\"seoDescription\":\"{{ seomatic.helper.extractSummary(seomatic.helper.extractTextFromField(entry.seoDescription)) }}\",\"seoKeywords\":\"{{ seomatic.helper.extractKeywords(seomatic.helper.extractTextFromField(entry.seoKeywords)) }}\",\"seoImage\":\"{{ seomatic.helper.socialTransform(entry.seoImage.collect()[0], \\\"base\\\", 1, \\\"crop\\\") }}\",\"seoImageWidth\":\"{{ seomatic.helper.socialTransformWidth(entry.seoImage.collect()[0], \\\"base\\\", 1, \\\"crop\\\") }}\",\"seoImageHeight\":\"{{ seomatic.helper.socialTransformHeight(entry.seoImage.collect()[0], \\\"base\\\", 1, \\\"crop\\\") }}\",\"seoImageDescription\":\"\",\"canonicalUrl\":\"{entry.url}\",\"robots\":\"all\",\"ogType\":\"website\",\"ogTitle\":\"{seomatic.meta.seoTitle}\",\"ogSiteNamePosition\":\"\",\"ogDescription\":\"{seomatic.meta.seoDescription}\",\"ogImage\":\"{{ seomatic.helper.socialTransform(entry.seoImage.collect()[0], \\\"facebook\\\", 1, \\\"crop\\\") }}\",\"ogImageWidth\":\"{{ seomatic.helper.socialTransformWidth(entry.seoImage.collect()[0], \\\"facebook\\\", 1, \\\"crop\\\") }}\",\"ogImageHeight\":\"{{ seomatic.helper.socialTransformHeight(entry.seoImage.collect()[0], \\\"facebook\\\", 1, \\\"crop\\\") }}\",\"ogImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"twitterCard\":\"summary_large_image\",\"twitterCreator\":\"{seomatic.site.twitterHandle}\",\"twitterTitle\":\"{seomatic.meta.seoTitle}\",\"twitterSiteNamePosition\":\"\",\"twitterDescription\":\"{seomatic.meta.seoDescription}\",\"twitterImage\":\"{{ seomatic.helper.socialTransform(entry.seoImage.collect()[0], seomatic.helper.twitterTransform(), 1, \\\"crop\\\") }}\",\"twitterImageWidth\":\"{{ seomatic.helper.socialTransformWidth(entry.seoImage.collect()[0], seomatic.helper.twitterTransform(), 1, \\\"crop\\\") }}\",\"twitterImageHeight\":\"{{ seomatic.helper.socialTransformHeight(entry.seoImage.collect()[0], seomatic.helper.twitterTransform(), 1, \\\"crop\\\") }}\",\"twitterImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"inherited\":[],\"overrides\":[]}','{\"siteName\":\"NWO\",\"identity\":null,\"creator\":null,\"twitterHandle\":\"\",\"facebookProfileId\":\"\",\"facebookAppId\":\"\",\"googleSiteVerification\":\"\",\"bingSiteVerification\":\"\",\"pinterestSiteVerification\":\"\",\"facebookSiteVerification\":\"\",\"sameAsLinks\":[],\"siteLinksSearchTarget\":\"\",\"siteLinksQueryInput\":\"\",\"referrer\":\"no-referrer-when-downgrade\",\"additionalSitemapUrls\":[],\"additionalSitemapUrlsDateUpdated\":null,\"additionalSitemaps\":[]}','{\"sitemapUrls\":true,\"sitemapAssets\":true,\"sitemapFiles\":true,\"sitemapAltLinks\":true,\"sitemapChangeFreq\":\"weekly\",\"sitemapPriority\":0.5,\"sitemapLimit\":null,\"structureDepth\":null,\"sitemapImageFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"caption\",\"field\":\"\"},{\"property\":\"geo_location\",\"field\":\"\"},{\"property\":\"license\",\"field\":\"\"}],\"sitemapVideoFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"description\",\"field\":\"\"},{\"property\":\"thumbnailLoc\",\"field\":\"\"},{\"property\":\"duration\",\"field\":\"\"},{\"property\":\"category\",\"field\":\"\"}],\"inherited\":[],\"overrides\":[]}','{\"MetaTagContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"General Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContaineropengraph\":{\"data\":[],\"name\":\"Facebook\",\"description\":\"Facebook OpenGraph Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"opengraph\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainertwitter\":{\"data\":[],\"name\":\"Twitter\",\"description\":\"Twitter Card Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"twitter\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainermiscellaneous\":{\"data\":[],\"name\":\"Miscellaneous\",\"description\":\"Miscellaneous Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"miscellaneous\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaLinkContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"Link Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaLinkContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaScriptContainergeneral\":{\"data\":[],\"position\":1,\"name\":\"General\",\"description\":\"Script Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaScriptContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaJsonLdContainergeneral\":{\"data\":{\"mainEntityOfPage\":{\"context\":\"http://schema.org\",\"type\":\"{{ seomatic.meta.mainEntityOfPage }}\",\"id\":null,\"graph\":null,\"include\":true,\"key\":\"mainEntityOfPage\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null,\"issn\":null,\"workTranslation\":null,\"educationalLevel\":null,\"associatedMedia\":null,\"exampleOfWork\":null,\"releasedEvent\":null,\"version\":null,\"locationCreated\":null,\"acquireLicensePage\":null,\"thumbnailUrl\":null,\"provider\":null,\"expires\":null,\"contentLocation\":null,\"educationalUse\":null,\"copyrightHolder\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"accessibilityControl\":null,\"maintainer\":null,\"educationalAlignment\":null,\"spatial\":null,\"publisher\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"keywords\":null,\"assesses\":null,\"reviews\":null,\"isBasedOn\":null,\"mentions\":null,\"publishingPrinciples\":null,\"contributor\":null,\"license\":null,\"citation\":null,\"accessibilitySummary\":null,\"award\":null,\"commentCount\":null,\"temporalCoverage\":null,\"dateCreated\":false,\"discussionUrl\":null,\"copyrightNotice\":null,\"learningResourceType\":null,\"awards\":null,\"accessModeSufficient\":null,\"review\":null,\"conditionsOfAccess\":null,\"interactivityType\":null,\"abstract\":null,\"fileFormat\":null,\"interpretedAsClaim\":null,\"text\":null,\"archivedAt\":null,\"alternativeHeadline\":null,\"creditText\":null,\"funding\":null,\"interactionStatistic\":null,\"workExample\":null,\"about\":null,\"encodings\":null,\"funder\":null,\"video\":null,\"isPartOf\":null,\"pattern\":null,\"editor\":null,\"dateModified\":\"{{ entry.dateUpdated |atom }}\",\"translationOfWork\":null,\"creativeWorkStatus\":null,\"isBasedOnUrl\":null,\"isFamilyFriendly\":null,\"isAccessibleForFree\":null,\"author\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"contentReferenceTime\":null,\"correction\":null,\"sdDatePublished\":null,\"comment\":null,\"countryOfOrigin\":null,\"timeRequired\":null,\"typicalAgeRange\":null,\"genre\":null,\"producer\":null,\"schemaVersion\":null,\"audience\":null,\"encoding\":null,\"publisherImprint\":null,\"accessibilityAPI\":null,\"sdPublisher\":null,\"audio\":null,\"accessibilityFeature\":null,\"spatialCoverage\":null,\"accessMode\":null,\"editEIDR\":null,\"usageInfo\":null,\"position\":null,\"encodingFormat\":null,\"copyrightYear\":\"{{ entry.postDate | date(\\\"Y\\\") }}\",\"mainEntity\":null,\"creator\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"teaches\":null,\"temporal\":null,\"size\":null,\"translator\":null,\"aggregateRating\":null,\"accountablePerson\":null,\"accessibilityHazard\":null,\"contentRating\":null,\"recordedAt\":null,\"publication\":null,\"sdLicense\":null,\"headline\":\"{{ seomatic.meta.seoTitle }}\",\"materialExtent\":null,\"inLanguage\":\"{{ seomatic.meta.language }}\",\"material\":null,\"datePublished\":\"{{ entry.postDate |atom }}\",\"offers\":null,\"hasPart\":null,\"sourceOrganization\":null,\"sponsor\":null,\"character\":null,\"potentialAction\":{\"type\":\"SearchAction\",\"target\":\"{{ seomatic.site.siteLinksSearchTarget }}\",\"query-input\":\"{{ seomatic.helper.siteLinksQueryInput() }}\"},\"mainEntityOfPage\":\"{{ seomatic.meta.canonicalUrl }}\",\"subjectOf\":null,\"url\":\"{{ seomatic.meta.canonicalUrl }}\",\"alternateName\":null,\"sameAs\":null,\"description\":\"{{ seomatic.meta.seoDescription }}\",\"disambiguatingDescription\":null,\"identifier\":null,\"image\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.meta.seoImage }}\"},\"name\":\"{{ seomatic.meta.seoTitle }}\",\"additionalType\":null}},\"name\":\"General\",\"description\":\"JsonLd Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaJsonLdContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTitleContainergeneral\":{\"data\":{\"title\":{\"title\":\"{{ seomatic.meta.seoTitle }}\",\"siteName\":\"{{ seomatic.site.siteName }}\",\"siteNamePosition\":\"{{ seomatic.meta.siteNamePosition }}\",\"separatorChar\":\"{{ seomatic.config.separatorChar }}\",\"include\":true,\"key\":\"title\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]}},\"name\":\"General\",\"description\":\"Meta Title Tag\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTitleContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false}}','[]','{\"data\":[],\"name\":null,\"description\":null,\"class\":\"nystudio107\\\\seomatic\\\\models\\\\FrontendTemplateContainer\",\"handle\":null,\"include\":true,\"dependencies\":null,\"clearCache\":false}','{\"siteType\":\"CreativeWork\",\"siteSubType\":\"WebSite\",\"siteSpecificType\":\"\",\"seoTitleSource\":\"fromField\",\"seoTitleField\":\"seoTitle\",\"siteNamePositionSource\":\"fromCustom\",\"seoDescriptionSource\":\"summaryFromField\",\"seoDescriptionField\":\"seoDescription\",\"seoKeywordsSource\":\"keywordsFromField\",\"seoKeywordsField\":\"seoKeywords\",\"seoImageIds\":\"\",\"seoImageSource\":\"fromField\",\"seoImageField\":\"seoImage\",\"seoImageTransform\":\"1\",\"seoImageTransformMode\":\"crop\",\"seoImageDescriptionSource\":\"fromCustom\",\"seoImageDescriptionField\":\"title\",\"twitterCreatorSource\":\"sameAsSite\",\"twitterCreatorField\":\"\",\"twitterTitleSource\":\"sameAsSeo\",\"twitterTitleField\":\"\",\"twitterSiteNamePositionSource\":\"fromCustom\",\"twitterDescriptionSource\":\"sameAsSeo\",\"twitterDescriptionField\":\"\",\"twitterImageIds\":\"\",\"twitterImageSource\":\"sameAsSeo\",\"twitterImageField\":\"seoImage\",\"twitterImageTransform\":\"1\",\"twitterImageTransformMode\":\"crop\",\"twitterImageDescriptionSource\":\"sameAsSeo\",\"twitterImageDescriptionField\":\"\",\"ogTitleSource\":\"sameAsSeo\",\"ogTitleField\":\"\",\"ogSiteNamePositionSource\":\"fromCustom\",\"ogDescriptionSource\":\"sameAsSeo\",\"ogDescriptionField\":\"\",\"ogImageIds\":\"\",\"ogImageSource\":\"sameAsSeo\",\"ogImageField\":\"seoImage\",\"ogImageTransform\":\"1\",\"ogImageTransformMode\":\"crop\",\"ogImageDescriptionSource\":\"sameAsSeo\",\"ogImageDescriptionField\":\"\"}'),(7,'2021-11-09 01:12:27','2023-04-03 01:08:12','b23115fc-09a3-4121-8ae9-7860a002d369','1.0.30','section',6,'Articles','articles','channel',NULL,'articles/_entry',1,'{\"1\":{\"id\":6,\"sectionId\":6,\"siteId\":1,\"enabledByDefault\":true,\"hasUrls\":true,\"uriFormat\":\"articles/{slug}\",\"template\":\"articles/_entry\",\"language\":\"en-au\"}}','2023-04-03 01:08:12','{\"language\":null,\"mainEntityOfPage\":\"WebSite\",\"seoTitle\":\"{{ seomatic.helper.extractTextFromField(entry.seoTitle) }}\",\"siteNamePosition\":\"before\",\"seoDescription\":\"{{ seomatic.helper.extractTextFromField(entry.seoDescription) }}\",\"seoKeywords\":\"{{ seomatic.helper.extractKeywords(seomatic.helper.extractTextFromField(entry.seoDescription)) }}\",\"seoImage\":\"{{ seomatic.helper.socialTransform(entry.seoImage.collect()[0], \\\"base\\\", 1, \\\"crop\\\") }}\",\"seoImageWidth\":\"{{ seomatic.helper.socialTransformWidth(entry.seoImage.collect()[0], \\\"base\\\", 1, \\\"crop\\\") }}\",\"seoImageHeight\":\"{{ seomatic.helper.socialTransformHeight(entry.seoImage.collect()[0], \\\"base\\\", 1, \\\"crop\\\") }}\",\"seoImageDescription\":\"{{ seomatic.helper.extractSummary(seomatic.helper.extractTextFromField(entry.seoImageDescription)) }}\",\"canonicalUrl\":\"{entry.url}\",\"robots\":\"all\",\"ogType\":\"website\",\"ogTitle\":\"{seomatic.meta.seoTitle}\",\"ogSiteNamePosition\":\"\",\"ogDescription\":\"{seomatic.meta.seoDescription}\",\"ogImage\":\"{{ seomatic.helper.socialTransform(entry.seoImage.collect()[0], \\\"facebook\\\", 1, \\\"crop\\\") }}\",\"ogImageWidth\":\"{{ seomatic.helper.socialTransformWidth(entry.seoImage.collect()[0], \\\"facebook\\\", 1, \\\"crop\\\") }}\",\"ogImageHeight\":\"{{ seomatic.helper.socialTransformHeight(entry.seoImage.collect()[0], \\\"facebook\\\", 1, \\\"crop\\\") }}\",\"ogImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"twitterCard\":\"summary_large_image\",\"twitterCreator\":\"{seomatic.site.twitterHandle}\",\"twitterTitle\":\"{seomatic.meta.seoTitle}\",\"twitterSiteNamePosition\":\"\",\"twitterDescription\":\"{seomatic.meta.seoDescription}\",\"twitterImage\":\"{{ seomatic.helper.socialTransform(entry.seoImage.collect()[0], seomatic.helper.twitterTransform(), 1, \\\"crop\\\") }}\",\"twitterImageWidth\":\"{{ seomatic.helper.socialTransformWidth(entry.seoImage.collect()[0], seomatic.helper.twitterTransform(), 1, \\\"crop\\\") }}\",\"twitterImageHeight\":\"{{ seomatic.helper.socialTransformHeight(entry.seoImage.collect()[0], seomatic.helper.twitterTransform(), 1, \\\"crop\\\") }}\",\"twitterImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"inherited\":[],\"overrides\":[]}','{\"siteName\":\"NWO\",\"identity\":null,\"creator\":null,\"twitterHandle\":\"\",\"facebookProfileId\":\"\",\"facebookAppId\":\"\",\"googleSiteVerification\":\"\",\"bingSiteVerification\":\"\",\"pinterestSiteVerification\":\"\",\"facebookSiteVerification\":\"\",\"sameAsLinks\":[],\"siteLinksSearchTarget\":\"\",\"siteLinksQueryInput\":\"\",\"referrer\":\"no-referrer-when-downgrade\",\"additionalSitemapUrls\":[],\"additionalSitemapUrlsDateUpdated\":null,\"additionalSitemaps\":[]}','{\"sitemapUrls\":true,\"sitemapAssets\":true,\"sitemapFiles\":true,\"sitemapAltLinks\":true,\"sitemapChangeFreq\":\"weekly\",\"sitemapPriority\":0.5,\"sitemapLimit\":null,\"structureDepth\":null,\"sitemapImageFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"caption\",\"field\":\"\"},{\"property\":\"geo_location\",\"field\":\"\"},{\"property\":\"license\",\"field\":\"\"}],\"sitemapVideoFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"description\",\"field\":\"\"},{\"property\":\"thumbnailLoc\",\"field\":\"\"},{\"property\":\"duration\",\"field\":\"\"},{\"property\":\"category\",\"field\":\"\"}],\"inherited\":[],\"overrides\":[]}','{\"MetaTagContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"General Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContaineropengraph\":{\"data\":[],\"name\":\"Facebook\",\"description\":\"Facebook OpenGraph Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"opengraph\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainertwitter\":{\"data\":[],\"name\":\"Twitter\",\"description\":\"Twitter Card Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"twitter\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainermiscellaneous\":{\"data\":[],\"name\":\"Miscellaneous\",\"description\":\"Miscellaneous Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"miscellaneous\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaLinkContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"Link Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaLinkContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaScriptContainergeneral\":{\"data\":[],\"position\":1,\"name\":\"General\",\"description\":\"Script Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaScriptContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaJsonLdContainergeneral\":{\"data\":{\"mainEntityOfPage\":{\"context\":\"http://schema.org\",\"type\":\"{{ seomatic.meta.mainEntityOfPage }}\",\"id\":null,\"graph\":null,\"include\":true,\"key\":\"mainEntityOfPage\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null,\"issn\":null,\"workTranslation\":null,\"educationalLevel\":null,\"associatedMedia\":null,\"exampleOfWork\":null,\"releasedEvent\":null,\"version\":null,\"locationCreated\":null,\"acquireLicensePage\":null,\"thumbnailUrl\":null,\"provider\":null,\"expires\":null,\"contentLocation\":null,\"educationalUse\":null,\"copyrightHolder\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"accessibilityControl\":null,\"maintainer\":null,\"educationalAlignment\":null,\"spatial\":null,\"publisher\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"keywords\":null,\"assesses\":null,\"reviews\":null,\"isBasedOn\":null,\"mentions\":null,\"publishingPrinciples\":null,\"contributor\":null,\"license\":null,\"citation\":null,\"accessibilitySummary\":null,\"award\":null,\"commentCount\":null,\"temporalCoverage\":null,\"dateCreated\":false,\"discussionUrl\":null,\"copyrightNotice\":null,\"learningResourceType\":null,\"awards\":null,\"accessModeSufficient\":null,\"review\":null,\"conditionsOfAccess\":null,\"interactivityType\":null,\"abstract\":null,\"fileFormat\":null,\"interpretedAsClaim\":null,\"text\":null,\"archivedAt\":null,\"alternativeHeadline\":null,\"creditText\":null,\"funding\":null,\"interactionStatistic\":null,\"workExample\":null,\"about\":null,\"encodings\":null,\"funder\":null,\"video\":null,\"isPartOf\":null,\"pattern\":null,\"editor\":null,\"dateModified\":\"{{ entry.dateUpdated |atom }}\",\"translationOfWork\":null,\"creativeWorkStatus\":null,\"isBasedOnUrl\":null,\"isFamilyFriendly\":null,\"isAccessibleForFree\":null,\"author\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"contentReferenceTime\":null,\"correction\":null,\"sdDatePublished\":null,\"comment\":null,\"countryOfOrigin\":null,\"timeRequired\":null,\"typicalAgeRange\":null,\"genre\":null,\"producer\":null,\"schemaVersion\":null,\"audience\":null,\"encoding\":null,\"publisherImprint\":null,\"accessibilityAPI\":null,\"sdPublisher\":null,\"audio\":null,\"accessibilityFeature\":null,\"spatialCoverage\":null,\"accessMode\":null,\"editEIDR\":null,\"usageInfo\":null,\"position\":null,\"encodingFormat\":null,\"copyrightYear\":\"{{ entry.postDate | date(\\\"Y\\\") }}\",\"mainEntity\":null,\"creator\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"teaches\":null,\"temporal\":null,\"size\":null,\"translator\":null,\"aggregateRating\":null,\"accountablePerson\":null,\"accessibilityHazard\":null,\"contentRating\":null,\"recordedAt\":null,\"publication\":null,\"sdLicense\":null,\"headline\":\"{{ seomatic.meta.seoTitle }}\",\"materialExtent\":null,\"inLanguage\":\"{{ seomatic.meta.language }}\",\"material\":null,\"datePublished\":\"{{ entry.postDate |atom }}\",\"offers\":null,\"hasPart\":null,\"sourceOrganization\":null,\"sponsor\":null,\"character\":null,\"potentialAction\":{\"type\":\"SearchAction\",\"target\":\"{{ seomatic.site.siteLinksSearchTarget }}\",\"query-input\":\"{{ seomatic.helper.siteLinksQueryInput() }}\"},\"mainEntityOfPage\":\"{{ seomatic.meta.canonicalUrl }}\",\"subjectOf\":null,\"url\":\"{{ seomatic.meta.canonicalUrl }}\",\"alternateName\":null,\"sameAs\":null,\"description\":\"{{ seomatic.meta.seoDescription }}\",\"disambiguatingDescription\":null,\"identifier\":null,\"image\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.meta.seoImage }}\"},\"name\":\"{{ seomatic.meta.seoTitle }}\",\"additionalType\":null}},\"name\":\"General\",\"description\":\"JsonLd Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaJsonLdContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTitleContainergeneral\":{\"data\":{\"title\":{\"title\":\"{{ seomatic.meta.seoTitle }}\",\"siteName\":\"{{ seomatic.site.siteName }}\",\"siteNamePosition\":\"{{ seomatic.meta.siteNamePosition }}\",\"separatorChar\":\"{{ seomatic.config.separatorChar }}\",\"include\":true,\"key\":\"title\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]}},\"name\":\"General\",\"description\":\"Meta Title Tag\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTitleContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false}}','[]','{\"data\":[],\"name\":null,\"description\":null,\"class\":\"nystudio107\\\\seomatic\\\\models\\\\FrontendTemplateContainer\",\"handle\":null,\"include\":true,\"dependencies\":null,\"clearCache\":false}','{\"siteType\":\"CreativeWork\",\"siteSubType\":\"WebSite\",\"siteSpecificType\":\"\",\"seoTitleSource\":\"fromField\",\"seoTitleField\":\"seoTitle\",\"siteNamePositionSource\":\"fromCustom\",\"seoDescriptionSource\":\"fromField\",\"seoDescriptionField\":\"seoDescription\",\"seoKeywordsSource\":\"keywordsFromField\",\"seoKeywordsField\":\"seoDescription\",\"seoImageIds\":\"\",\"seoImageSource\":\"fromField\",\"seoImageField\":\"seoImage\",\"seoImageTransform\":\"1\",\"seoImageTransformMode\":\"crop\",\"seoImageDescriptionSource\":\"summaryFromField\",\"seoImageDescriptionField\":\"seoImageDescription\",\"twitterCreatorSource\":\"sameAsSite\",\"twitterCreatorField\":\"\",\"twitterTitleSource\":\"sameAsSeo\",\"twitterTitleField\":\"\",\"twitterSiteNamePositionSource\":\"fromCustom\",\"twitterDescriptionSource\":\"sameAsSeo\",\"twitterDescriptionField\":\"\",\"twitterImageIds\":\"\",\"twitterImageSource\":\"sameAsSeo\",\"twitterImageField\":\"bgFeatureHoverImage\",\"twitterImageTransform\":\"1\",\"twitterImageTransformMode\":\"crop\",\"twitterImageDescriptionSource\":\"sameAsSeo\",\"twitterImageDescriptionField\":\"\",\"ogTitleSource\":\"sameAsSeo\",\"ogTitleField\":\"\",\"ogSiteNamePositionSource\":\"fromCustom\",\"ogDescriptionSource\":\"sameAsSeo\",\"ogDescriptionField\":\"\",\"ogImageIds\":\"\",\"ogImageSource\":\"sameAsSeo\",\"ogImageField\":\"bgFeatureHoverImage\",\"ogImageTransform\":\"1\",\"ogImageTransformMode\":\"crop\",\"ogImageDescriptionSource\":\"sameAsSeo\",\"ogImageDescriptionField\":\"\"}'),(8,'2021-11-09 01:12:27','2022-09-19 15:38:53','701708e0-404d-42fa-bb6f-180b3de4c128','1.0.30','section',4,'Audits','audits','channel',NULL,'brandaudit/form',1,'{\"1\":{\"id\":4,\"sectionId\":4,\"siteId\":1,\"enabledByDefault\":true,\"hasUrls\":true,\"uriFormat\":\"brandaudit/{slug}\",\"template\":\"brandaudit/form\",\"language\":\"en-au\"}}','2022-02-09 23:35:54','{\"language\":null,\"mainEntityOfPage\":\"WebPage\",\"seoTitle\":\"{entry.title}\",\"siteNamePosition\":\"\",\"seoDescription\":\"\",\"seoKeywords\":\"\",\"seoImage\":\"\",\"seoImageWidth\":\"\",\"seoImageHeight\":\"\",\"seoImageDescription\":\"\",\"canonicalUrl\":\"{entry.url}\",\"robots\":\"all\",\"ogType\":\"website\",\"ogTitle\":\"{seomatic.meta.seoTitle}\",\"ogSiteNamePosition\":\"\",\"ogDescription\":\"{seomatic.meta.seoDescription}\",\"ogImage\":\"{seomatic.meta.seoImage}\",\"ogImageWidth\":\"{seomatic.meta.seoImageWidth}\",\"ogImageHeight\":\"{seomatic.meta.seoImageHeight}\",\"ogImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"twitterCard\":\"summary_large_image\",\"twitterCreator\":\"{seomatic.site.twitterHandle}\",\"twitterTitle\":\"{seomatic.meta.seoTitle}\",\"twitterSiteNamePosition\":\"\",\"twitterDescription\":\"{seomatic.meta.seoDescription}\",\"twitterImage\":\"{seomatic.meta.seoImage}\",\"twitterImageWidth\":\"{seomatic.meta.seoImageWidth}\",\"twitterImageHeight\":\"{seomatic.meta.seoImageHeight}\",\"twitterImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"inherited\":[],\"overrides\":[]}','{\"siteName\":\"NWO\",\"identity\":null,\"creator\":null,\"twitterHandle\":\"\",\"facebookProfileId\":\"\",\"facebookAppId\":\"\",\"googleSiteVerification\":\"\",\"bingSiteVerification\":\"\",\"pinterestSiteVerification\":\"\",\"facebookSiteVerification\":\"\",\"sameAsLinks\":[],\"siteLinksSearchTarget\":\"\",\"siteLinksQueryInput\":\"\",\"referrer\":\"no-referrer-when-downgrade\",\"additionalSitemapUrls\":[],\"additionalSitemapUrlsDateUpdated\":null,\"additionalSitemaps\":[]}','{\"sitemapUrls\":true,\"sitemapAssets\":true,\"sitemapFiles\":true,\"sitemapAltLinks\":true,\"sitemapChangeFreq\":\"weekly\",\"sitemapPriority\":0.5,\"sitemapLimit\":null,\"structureDepth\":null,\"sitemapImageFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"caption\",\"field\":\"\"},{\"property\":\"geo_location\",\"field\":\"\"},{\"property\":\"license\",\"field\":\"\"}],\"sitemapVideoFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"description\",\"field\":\"\"},{\"property\":\"thumbnailLoc\",\"field\":\"\"},{\"property\":\"duration\",\"field\":\"\"},{\"property\":\"category\",\"field\":\"\"}],\"inherited\":[],\"overrides\":[]}','{\"MetaTagContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"General Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContaineropengraph\":{\"data\":[],\"name\":\"Facebook\",\"description\":\"Facebook OpenGraph Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"opengraph\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainertwitter\":{\"data\":[],\"name\":\"Twitter\",\"description\":\"Twitter Card Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"twitter\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainermiscellaneous\":{\"data\":[],\"name\":\"Miscellaneous\",\"description\":\"Miscellaneous Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"miscellaneous\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaLinkContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"Link Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaLinkContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaScriptContainergeneral\":{\"data\":[],\"position\":1,\"name\":\"General\",\"description\":\"Script Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaScriptContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaJsonLdContainergeneral\":{\"data\":{\"mainEntityOfPage\":{\"context\":\"http://schema.org\",\"type\":\"{{ seomatic.meta.mainEntityOfPage }}\",\"id\":null,\"graph\":null,\"include\":true,\"key\":\"mainEntityOfPage\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null,\"lastReviewed\":null,\"specialty\":null,\"primaryImageOfPage\":null,\"significantLink\":null,\"reviewedBy\":null,\"mainContentOfPage\":null,\"relatedLink\":null,\"speakable\":null,\"breadcrumb\":null,\"significantLinks\":null,\"teaches\":null,\"educationalLevel\":null,\"abstract\":null,\"creativeWorkStatus\":null,\"expires\":null,\"contentReferenceTime\":null,\"material\":null,\"review\":null,\"fileFormat\":null,\"text\":null,\"translator\":null,\"award\":null,\"assesses\":null,\"copyrightNotice\":null,\"schemaVersion\":null,\"countryOfOrigin\":null,\"pattern\":null,\"accountablePerson\":null,\"funding\":null,\"educationalUse\":null,\"genre\":null,\"keywords\":null,\"position\":null,\"accessibilityHazard\":null,\"alternativeHeadline\":null,\"audience\":null,\"offers\":null,\"locationCreated\":null,\"associatedMedia\":null,\"materialExtent\":null,\"mainEntity\":null,\"copyrightHolder\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"awards\":null,\"contentLocation\":null,\"sdDatePublished\":null,\"producer\":null,\"spatial\":null,\"publisher\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"sourceOrganization\":null,\"character\":null,\"funder\":null,\"exampleOfWork\":null,\"usageInfo\":null,\"provider\":null,\"sdPublisher\":null,\"comment\":null,\"accessibilityFeature\":null,\"publication\":null,\"translationOfWork\":null,\"interactivityType\":null,\"commentCount\":null,\"accessMode\":null,\"aggregateRating\":null,\"timeRequired\":null,\"typicalAgeRange\":null,\"interactionStatistic\":null,\"copyrightYear\":\"{{ entry.postDate | date(\\\"Y\\\") }}\",\"isBasedOn\":null,\"workExample\":null,\"publishingPrinciples\":null,\"discussionUrl\":null,\"releasedEvent\":null,\"dateCreated\":false,\"workTranslation\":null,\"editor\":null,\"creditText\":null,\"recordedAt\":null,\"editEIDR\":null,\"author\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"dateModified\":\"{{ entry.dateUpdated |atom }}\",\"sponsor\":null,\"accessibilitySummary\":null,\"encodingFormat\":null,\"maintainer\":null,\"educationalAlignment\":null,\"acquireLicensePage\":null,\"isAccessibleForFree\":null,\"datePublished\":\"{{ entry.postDate |atom }}\",\"spatialCoverage\":null,\"sdLicense\":null,\"conditionsOfAccess\":null,\"correction\":null,\"contentRating\":null,\"size\":null,\"isPartOf\":null,\"temporal\":null,\"thumbnailUrl\":null,\"inLanguage\":\"{{ seomatic.meta.language }}\",\"license\":null,\"creator\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"reviews\":null,\"about\":null,\"isFamilyFriendly\":null,\"headline\":\"{{ seomatic.meta.seoTitle }}\",\"accessibilityAPI\":null,\"publisherImprint\":null,\"isBasedOnUrl\":null,\"encodings\":null,\"interpretedAsClaim\":null,\"accessibilityControl\":null,\"citation\":null,\"version\":null,\"archivedAt\":null,\"learningResourceType\":null,\"encoding\":null,\"audio\":null,\"mentions\":null,\"accessModeSufficient\":null,\"hasPart\":null,\"temporalCoverage\":null,\"contributor\":null,\"video\":null,\"mainEntityOfPage\":\"{{ seomatic.meta.canonicalUrl }}\",\"alternateName\":null,\"name\":\"{{ seomatic.meta.seoTitle }}\",\"potentialAction\":{\"type\":\"SearchAction\",\"target\":\"{{ seomatic.site.siteLinksSearchTarget }}\",\"query-input\":\"{{ seomatic.helper.siteLinksQueryInput() }}\"},\"image\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.meta.seoImage }}\"},\"url\":\"{{ seomatic.meta.canonicalUrl }}\",\"description\":\"{{ seomatic.meta.seoDescription }}\",\"subjectOf\":null,\"additionalType\":null,\"disambiguatingDescription\":null,\"sameAs\":null,\"identifier\":null}},\"name\":\"General\",\"description\":\"JsonLd Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaJsonLdContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTitleContainergeneral\":{\"data\":{\"title\":{\"title\":\"{{ seomatic.meta.seoTitle }}\",\"siteName\":\"{{ seomatic.site.siteName }}\",\"siteNamePosition\":\"{{ seomatic.meta.siteNamePosition }}\",\"separatorChar\":\"{{ seomatic.config.separatorChar }}\",\"include\":true,\"key\":\"title\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]}},\"name\":\"General\",\"description\":\"Meta Title Tag\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTitleContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false}}','[]','{\"data\":[],\"name\":null,\"description\":null,\"class\":\"nystudio107\\\\seomatic\\\\models\\\\FrontendTemplateContainer\",\"handle\":null,\"include\":true,\"dependencies\":null,\"clearCache\":false}','{\"siteType\":\"CreativeWork\",\"siteSubType\":\"WebSite\",\"siteSpecificType\":\"\",\"seoTitleSource\":\"fromCustom\",\"seoTitleField\":\"\",\"siteNamePositionSource\":\"fromCustom\",\"seoDescriptionSource\":\"fromCustom\",\"seoDescriptionField\":\"\",\"seoKeywordsSource\":\"fromCustom\",\"seoKeywordsField\":\"\",\"seoImageIds\":[],\"seoImageSource\":\"fromAsset\",\"seoImageField\":\"\",\"seoImageTransform\":true,\"seoImageTransformMode\":\"crop\",\"seoImageDescriptionSource\":\"fromCustom\",\"seoImageDescriptionField\":\"\",\"twitterCreatorSource\":\"sameAsSite\",\"twitterCreatorField\":\"\",\"twitterTitleSource\":\"sameAsSeo\",\"twitterTitleField\":\"\",\"twitterSiteNamePositionSource\":\"fromCustom\",\"twitterDescriptionSource\":\"sameAsSeo\",\"twitterDescriptionField\":\"\",\"twitterImageIds\":[],\"twitterImageSource\":\"sameAsSeo\",\"twitterImageField\":\"\",\"twitterImageTransform\":true,\"twitterImageTransformMode\":\"crop\",\"twitterImageDescriptionSource\":\"sameAsSeo\",\"twitterImageDescriptionField\":\"\",\"ogTitleSource\":\"sameAsSeo\",\"ogTitleField\":\"\",\"ogSiteNamePositionSource\":\"fromCustom\",\"ogDescriptionSource\":\"sameAsSeo\",\"ogDescriptionField\":\"\",\"ogImageIds\":[],\"ogImageSource\":\"sameAsSeo\",\"ogImageField\":\"\",\"ogImageTransform\":true,\"ogImageTransformMode\":\"crop\",\"ogImageDescriptionSource\":\"sameAsSeo\",\"ogImageDescriptionField\":\"\"}'),(9,'2021-11-09 01:12:27','2023-03-15 04:25:53','88eac5ca-62d0-4c05-ba31-baa7e627a8c9','1.0.30','section',8,'Contact ','contact','single',NULL,'contact/_entry',1,'{\"1\":{\"id\":8,\"sectionId\":8,\"siteId\":1,\"enabledByDefault\":true,\"hasUrls\":true,\"uriFormat\":\"contact\",\"template\":\"contact/_entry\",\"language\":\"en-au\"}}','2023-03-15 04:25:53','{\"language\":null,\"mainEntityOfPage\":\"WebSite\",\"seoTitle\":\"{{ seomatic.helper.extractTextFromField(entry.seoTitle) }}\",\"siteNamePosition\":\"before\",\"seoDescription\":\"{{ seomatic.helper.extractTextFromField(entry.seoDescription) }}\",\"seoKeywords\":\"{{ seomatic.helper.extractKeywords(seomatic.helper.extractTextFromField(entry.seoKeywords)) }}\",\"seoImage\":\"{{ seomatic.helper.socialTransform(entry.seoImage.collect()[0], \\\"base\\\", 1, \\\"crop\\\") }}\",\"seoImageWidth\":\"{{ seomatic.helper.socialTransformWidth(entry.seoImage.collect()[0], \\\"base\\\", 1, \\\"crop\\\") }}\",\"seoImageHeight\":\"{{ seomatic.helper.socialTransformHeight(entry.seoImage.collect()[0], \\\"base\\\", 1, \\\"crop\\\") }}\",\"seoImageDescription\":\"{{ seomatic.helper.extractSummary(seomatic.helper.extractTextFromField(entry.seoImageDescription)) }}\",\"canonicalUrl\":\"{entry.url}\",\"robots\":\"all\",\"ogType\":\"website\",\"ogTitle\":\"{seomatic.meta.seoTitle}\",\"ogSiteNamePosition\":\"\",\"ogDescription\":\"{seomatic.meta.seoDescription}\",\"ogImage\":\"{{ seomatic.helper.socialTransform(entry.seoImage.collect()[0], \\\"facebook\\\", 1, \\\"crop\\\") }}\",\"ogImageWidth\":\"{{ seomatic.helper.socialTransformWidth(entry.seoImage.collect()[0], \\\"facebook\\\", 1, \\\"crop\\\") }}\",\"ogImageHeight\":\"{{ seomatic.helper.socialTransformHeight(entry.seoImage.collect()[0], \\\"facebook\\\", 1, \\\"crop\\\") }}\",\"ogImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"twitterCard\":\"summary_large_image\",\"twitterCreator\":\"{seomatic.site.twitterHandle}\",\"twitterTitle\":\"{seomatic.meta.seoTitle}\",\"twitterSiteNamePosition\":\"\",\"twitterDescription\":\"{seomatic.meta.seoDescription}\",\"twitterImage\":\"{{ seomatic.helper.socialTransform(entry.seoImage.collect()[0], seomatic.helper.twitterTransform(), 1, \\\"crop\\\") }}\",\"twitterImageWidth\":\"{{ seomatic.helper.socialTransformWidth(entry.seoImage.collect()[0], seomatic.helper.twitterTransform(), 1, \\\"crop\\\") }}\",\"twitterImageHeight\":\"{{ seomatic.helper.socialTransformHeight(entry.seoImage.collect()[0], seomatic.helper.twitterTransform(), 1, \\\"crop\\\") }}\",\"twitterImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"inherited\":[],\"overrides\":[]}','{\"siteName\":\"NWO\",\"identity\":null,\"creator\":null,\"twitterHandle\":\"\",\"facebookProfileId\":\"\",\"facebookAppId\":\"\",\"googleSiteVerification\":\"\",\"bingSiteVerification\":\"\",\"pinterestSiteVerification\":\"\",\"facebookSiteVerification\":\"\",\"sameAsLinks\":[],\"siteLinksSearchTarget\":\"\",\"siteLinksQueryInput\":\"\",\"referrer\":\"no-referrer-when-downgrade\",\"additionalSitemapUrls\":[],\"additionalSitemapUrlsDateUpdated\":null,\"additionalSitemaps\":[]}','{\"sitemapUrls\":true,\"sitemapAssets\":true,\"sitemapFiles\":true,\"sitemapAltLinks\":true,\"sitemapChangeFreq\":\"weekly\",\"sitemapPriority\":0.5,\"sitemapLimit\":null,\"structureDepth\":null,\"sitemapImageFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"caption\",\"field\":\"\"},{\"property\":\"geo_location\",\"field\":\"\"},{\"property\":\"license\",\"field\":\"\"}],\"sitemapVideoFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"description\",\"field\":\"\"},{\"property\":\"thumbnailLoc\",\"field\":\"\"},{\"property\":\"duration\",\"field\":\"\"},{\"property\":\"category\",\"field\":\"\"}],\"inherited\":[],\"overrides\":[]}','{\"MetaTagContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"General Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContaineropengraph\":{\"data\":[],\"name\":\"Facebook\",\"description\":\"Facebook OpenGraph Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"opengraph\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainertwitter\":{\"data\":[],\"name\":\"Twitter\",\"description\":\"Twitter Card Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"twitter\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainermiscellaneous\":{\"data\":[],\"name\":\"Miscellaneous\",\"description\":\"Miscellaneous Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"miscellaneous\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaLinkContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"Link Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaLinkContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaScriptContainergeneral\":{\"data\":[],\"position\":1,\"name\":\"General\",\"description\":\"Script Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaScriptContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaJsonLdContainergeneral\":{\"data\":{\"mainEntityOfPage\":{\"context\":\"http://schema.org\",\"type\":\"{{ seomatic.meta.mainEntityOfPage }}\",\"id\":null,\"graph\":null,\"include\":true,\"key\":\"mainEntityOfPage\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null,\"issn\":null,\"workTranslation\":null,\"educationalLevel\":null,\"associatedMedia\":null,\"exampleOfWork\":null,\"releasedEvent\":null,\"version\":null,\"locationCreated\":null,\"acquireLicensePage\":null,\"thumbnailUrl\":null,\"provider\":null,\"expires\":null,\"contentLocation\":null,\"educationalUse\":null,\"copyrightHolder\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"accessibilityControl\":null,\"maintainer\":null,\"educationalAlignment\":null,\"spatial\":null,\"publisher\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"keywords\":null,\"assesses\":null,\"reviews\":null,\"isBasedOn\":null,\"mentions\":null,\"publishingPrinciples\":null,\"contributor\":null,\"license\":null,\"citation\":null,\"accessibilitySummary\":null,\"award\":null,\"commentCount\":null,\"temporalCoverage\":null,\"dateCreated\":false,\"discussionUrl\":null,\"copyrightNotice\":null,\"learningResourceType\":null,\"awards\":null,\"accessModeSufficient\":null,\"review\":null,\"conditionsOfAccess\":null,\"interactivityType\":null,\"abstract\":null,\"fileFormat\":null,\"interpretedAsClaim\":null,\"text\":null,\"archivedAt\":null,\"alternativeHeadline\":null,\"creditText\":null,\"funding\":null,\"interactionStatistic\":null,\"workExample\":null,\"about\":null,\"encodings\":null,\"funder\":null,\"video\":null,\"isPartOf\":null,\"pattern\":null,\"editor\":null,\"dateModified\":\"{{ entry.dateUpdated |atom }}\",\"translationOfWork\":null,\"creativeWorkStatus\":null,\"isBasedOnUrl\":null,\"isFamilyFriendly\":null,\"isAccessibleForFree\":null,\"author\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"contentReferenceTime\":null,\"correction\":null,\"sdDatePublished\":null,\"comment\":null,\"countryOfOrigin\":null,\"timeRequired\":null,\"typicalAgeRange\":null,\"genre\":null,\"producer\":null,\"schemaVersion\":null,\"audience\":null,\"encoding\":null,\"publisherImprint\":null,\"accessibilityAPI\":null,\"sdPublisher\":null,\"audio\":null,\"accessibilityFeature\":null,\"spatialCoverage\":null,\"accessMode\":null,\"editEIDR\":null,\"usageInfo\":null,\"position\":null,\"encodingFormat\":null,\"copyrightYear\":\"{{ entry.postDate | date(\\\"Y\\\") }}\",\"mainEntity\":null,\"creator\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"teaches\":null,\"temporal\":null,\"size\":null,\"translator\":null,\"aggregateRating\":null,\"accountablePerson\":null,\"accessibilityHazard\":null,\"contentRating\":null,\"recordedAt\":null,\"publication\":null,\"sdLicense\":null,\"headline\":\"{{ seomatic.meta.seoTitle }}\",\"materialExtent\":null,\"inLanguage\":\"{{ seomatic.meta.language }}\",\"material\":null,\"datePublished\":\"{{ entry.postDate |atom }}\",\"offers\":null,\"hasPart\":null,\"sourceOrganization\":null,\"sponsor\":null,\"character\":null,\"potentialAction\":{\"type\":\"SearchAction\",\"target\":\"{{ seomatic.site.siteLinksSearchTarget }}\",\"query-input\":\"{{ seomatic.helper.siteLinksQueryInput() }}\"},\"mainEntityOfPage\":\"{{ seomatic.meta.canonicalUrl }}\",\"subjectOf\":null,\"url\":\"{{ seomatic.meta.canonicalUrl }}\",\"alternateName\":null,\"sameAs\":null,\"description\":\"{{ seomatic.meta.seoDescription }}\",\"disambiguatingDescription\":null,\"identifier\":null,\"image\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.meta.seoImage }}\"},\"name\":\"{{ seomatic.meta.seoTitle }}\",\"additionalType\":null}},\"name\":\"General\",\"description\":\"JsonLd Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaJsonLdContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTitleContainergeneral\":{\"data\":{\"title\":{\"title\":\"{{ seomatic.meta.seoTitle }}\",\"siteName\":\"{{ seomatic.site.siteName }}\",\"siteNamePosition\":\"{{ seomatic.meta.siteNamePosition }}\",\"separatorChar\":\"{{ seomatic.config.separatorChar }}\",\"include\":true,\"key\":\"title\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]}},\"name\":\"General\",\"description\":\"Meta Title Tag\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTitleContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false}}','[]','{\"data\":[],\"name\":null,\"description\":null,\"class\":\"nystudio107\\\\seomatic\\\\models\\\\FrontendTemplateContainer\",\"handle\":null,\"include\":true,\"dependencies\":null,\"clearCache\":false}','{\"siteType\":\"CreativeWork\",\"siteSubType\":\"WebSite\",\"siteSpecificType\":\"\",\"seoTitleSource\":\"fromField\",\"seoTitleField\":\"seoTitle\",\"siteNamePositionSource\":\"fromCustom\",\"seoDescriptionSource\":\"fromField\",\"seoDescriptionField\":\"seoDescription\",\"seoKeywordsSource\":\"keywordsFromField\",\"seoKeywordsField\":\"seoKeywords\",\"seoImageIds\":\"\",\"seoImageSource\":\"fromField\",\"seoImageField\":\"seoImage\",\"seoImageTransform\":\"1\",\"seoImageTransformMode\":\"crop\",\"seoImageDescriptionSource\":\"summaryFromField\",\"seoImageDescriptionField\":\"seoImageDescription\",\"twitterCreatorSource\":\"sameAsSite\",\"twitterCreatorField\":\"\",\"twitterTitleSource\":\"sameAsSeo\",\"twitterTitleField\":\"\",\"twitterSiteNamePositionSource\":\"fromCustom\",\"twitterDescriptionSource\":\"sameAsSeo\",\"twitterDescriptionField\":\"\",\"twitterImageIds\":\"\",\"twitterImageSource\":\"sameAsSeo\",\"twitterImageField\":\"seoImage\",\"twitterImageTransform\":\"1\",\"twitterImageTransformMode\":\"crop\",\"twitterImageDescriptionSource\":\"sameAsSeo\",\"twitterImageDescriptionField\":\"\",\"ogTitleSource\":\"sameAsSeo\",\"ogTitleField\":\"\",\"ogSiteNamePositionSource\":\"fromCustom\",\"ogDescriptionSource\":\"sameAsSeo\",\"ogDescriptionField\":\"\",\"ogImageIds\":\"\",\"ogImageSource\":\"sameAsSeo\",\"ogImageField\":\"seoImage\",\"ogImageTransform\":\"1\",\"ogImageTransformMode\":\"crop\",\"ogImageDescriptionSource\":\"sameAsSeo\",\"ogImageDescriptionField\":\"\"}'),(10,'2021-11-09 01:12:27','2022-09-19 05:38:11','b38f987a-5e15-47d3-b45e-4cb22b56aa5b','1.0.30','section',9,'Home','home','single',NULL,'index',1,'{\"1\":{\"id\":9,\"sectionId\":9,\"siteId\":1,\"enabledByDefault\":true,\"hasUrls\":true,\"uriFormat\":\"__home__\",\"template\":\"index\",\"language\":\"en-au\"}}','2022-05-17 23:19:16','{\"language\":null,\"mainEntityOfPage\":\"WebSite\",\"seoTitle\":\"{{ seomatic.helper.extractTextFromField(entry.seoTitle) }}\",\"siteNamePosition\":\"before\",\"seoDescription\":\"{{ seomatic.helper.extractSummary(seomatic.helper.extractTextFromField(entry.seoDescription)) }}\",\"seoKeywords\":\"{{ seomatic.helper.extractKeywords(seomatic.helper.extractTextFromField(entry.seoKeywords)) }}\",\"seoImage\":\"{{ seomatic.helper.socialTransform(entry.seoImage.collect()[0], \\\"base\\\", 1, \\\"crop\\\") }}\",\"seoImageWidth\":\"{{ seomatic.helper.socialTransformWidth(entry.seoImage.collect()[0], \\\"base\\\", 1, \\\"crop\\\") }}\",\"seoImageHeight\":\"{{ seomatic.helper.socialTransformHeight(entry.seoImage.collect()[0], \\\"base\\\", 1, \\\"crop\\\") }}\",\"seoImageDescription\":\"{{ seomatic.helper.extractSummary(seomatic.helper.extractTextFromField(entry.seoImageDescription)) }}\",\"canonicalUrl\":\"{entry.url}\",\"robots\":\"all\",\"ogType\":\"website\",\"ogTitle\":\"{seomatic.meta.seoTitle}\",\"ogSiteNamePosition\":\"\",\"ogDescription\":\"{seomatic.meta.seoDescription}\",\"ogImage\":\"{{ seomatic.helper.socialTransform(entry.seoImage.collect()[0], \\\"facebook\\\", 1, \\\"crop\\\") }}\",\"ogImageWidth\":\"{{ seomatic.helper.socialTransformWidth(entry.seoImage.collect()[0], \\\"facebook\\\", 1, \\\"crop\\\") }}\",\"ogImageHeight\":\"{{ seomatic.helper.socialTransformHeight(entry.seoImage.collect()[0], \\\"facebook\\\", 1, \\\"crop\\\") }}\",\"ogImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"twitterCard\":\"summary_large_image\",\"twitterCreator\":\"{seomatic.site.twitterHandle}\",\"twitterTitle\":\"{seomatic.meta.seoTitle}\",\"twitterSiteNamePosition\":\"\",\"twitterDescription\":\"{seomatic.meta.seoDescription}\",\"twitterImage\":\"{{ seomatic.helper.socialTransform(entry.seoImage.collect()[0], seomatic.helper.twitterTransform(), 1, \\\"crop\\\") }}\",\"twitterImageWidth\":\"{{ seomatic.helper.socialTransformWidth(entry.seoImage.collect()[0], seomatic.helper.twitterTransform(), 1, \\\"crop\\\") }}\",\"twitterImageHeight\":\"{{ seomatic.helper.socialTransformHeight(entry.seoImage.collect()[0], seomatic.helper.twitterTransform(), 1, \\\"crop\\\") }}\",\"twitterImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"inherited\":[],\"overrides\":[]}','{\"siteName\":\"NWO\",\"identity\":null,\"creator\":null,\"twitterHandle\":\"\",\"facebookProfileId\":\"\",\"facebookAppId\":\"\",\"googleSiteVerification\":\"\",\"bingSiteVerification\":\"\",\"pinterestSiteVerification\":\"\",\"facebookSiteVerification\":\"\",\"sameAsLinks\":[],\"siteLinksSearchTarget\":\"\",\"siteLinksQueryInput\":\"\",\"referrer\":\"no-referrer-when-downgrade\",\"additionalSitemapUrls\":[],\"additionalSitemapUrlsDateUpdated\":null,\"additionalSitemaps\":[]}','{\"sitemapUrls\":true,\"sitemapAssets\":true,\"sitemapFiles\":true,\"sitemapAltLinks\":true,\"sitemapChangeFreq\":\"weekly\",\"sitemapPriority\":0.5,\"sitemapLimit\":null,\"structureDepth\":null,\"sitemapImageFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"caption\",\"field\":\"\"},{\"property\":\"geo_location\",\"field\":\"\"},{\"property\":\"license\",\"field\":\"\"}],\"sitemapVideoFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"description\",\"field\":\"\"},{\"property\":\"thumbnailLoc\",\"field\":\"\"},{\"property\":\"duration\",\"field\":\"\"},{\"property\":\"category\",\"field\":\"\"}],\"inherited\":[],\"overrides\":[]}','{\"MetaTagContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"General Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContaineropengraph\":{\"data\":[],\"name\":\"Facebook\",\"description\":\"Facebook OpenGraph Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"opengraph\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainertwitter\":{\"data\":[],\"name\":\"Twitter\",\"description\":\"Twitter Card Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"twitter\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainermiscellaneous\":{\"data\":[],\"name\":\"Miscellaneous\",\"description\":\"Miscellaneous Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"miscellaneous\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaLinkContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"Link Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaLinkContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaScriptContainergeneral\":{\"data\":[],\"position\":1,\"name\":\"General\",\"description\":\"Script Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaScriptContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaJsonLdContainergeneral\":{\"data\":{\"mainEntityOfPage\":{\"context\":\"http://schema.org\",\"type\":\"{{ seomatic.meta.mainEntityOfPage }}\",\"id\":null,\"graph\":null,\"include\":true,\"key\":\"mainEntityOfPage\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null,\"issn\":null,\"teaches\":null,\"educationalLevel\":null,\"abstract\":null,\"creativeWorkStatus\":null,\"expires\":null,\"contentReferenceTime\":null,\"material\":null,\"review\":null,\"fileFormat\":null,\"text\":null,\"translator\":null,\"award\":null,\"assesses\":null,\"copyrightNotice\":null,\"schemaVersion\":null,\"countryOfOrigin\":null,\"pattern\":null,\"accountablePerson\":null,\"funding\":null,\"educationalUse\":null,\"genre\":null,\"keywords\":null,\"position\":null,\"accessibilityHazard\":null,\"alternativeHeadline\":null,\"audience\":null,\"offers\":null,\"locationCreated\":null,\"associatedMedia\":null,\"materialExtent\":null,\"mainEntity\":null,\"copyrightHolder\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"awards\":null,\"contentLocation\":null,\"sdDatePublished\":null,\"producer\":null,\"spatial\":null,\"publisher\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"sourceOrganization\":null,\"character\":null,\"funder\":null,\"exampleOfWork\":null,\"usageInfo\":null,\"provider\":null,\"sdPublisher\":null,\"comment\":null,\"accessibilityFeature\":null,\"publication\":null,\"translationOfWork\":null,\"interactivityType\":null,\"commentCount\":null,\"accessMode\":null,\"aggregateRating\":null,\"timeRequired\":null,\"typicalAgeRange\":null,\"interactionStatistic\":null,\"copyrightYear\":\"{{ entry.postDate | date(\\\"Y\\\") }}\",\"isBasedOn\":null,\"workExample\":null,\"publishingPrinciples\":null,\"discussionUrl\":null,\"releasedEvent\":null,\"dateCreated\":false,\"workTranslation\":null,\"editor\":null,\"creditText\":null,\"recordedAt\":null,\"editEIDR\":null,\"author\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"dateModified\":\"{{ entry.dateUpdated |atom }}\",\"sponsor\":null,\"accessibilitySummary\":null,\"encodingFormat\":null,\"maintainer\":null,\"educationalAlignment\":null,\"acquireLicensePage\":null,\"isAccessibleForFree\":null,\"datePublished\":\"{{ entry.postDate |atom }}\",\"spatialCoverage\":null,\"sdLicense\":null,\"conditionsOfAccess\":null,\"correction\":null,\"contentRating\":null,\"size\":null,\"isPartOf\":null,\"temporal\":null,\"thumbnailUrl\":null,\"inLanguage\":\"{{ seomatic.meta.language }}\",\"license\":null,\"creator\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"reviews\":null,\"about\":null,\"isFamilyFriendly\":null,\"headline\":\"{{ seomatic.meta.seoTitle }}\",\"accessibilityAPI\":null,\"publisherImprint\":null,\"isBasedOnUrl\":null,\"encodings\":null,\"interpretedAsClaim\":null,\"accessibilityControl\":null,\"citation\":null,\"version\":null,\"archivedAt\":null,\"learningResourceType\":null,\"encoding\":null,\"audio\":null,\"mentions\":null,\"accessModeSufficient\":null,\"hasPart\":null,\"temporalCoverage\":null,\"contributor\":null,\"video\":null,\"mainEntityOfPage\":\"{{ seomatic.meta.canonicalUrl }}\",\"alternateName\":null,\"name\":\"{{ seomatic.meta.seoTitle }}\",\"potentialAction\":{\"type\":\"SearchAction\",\"target\":\"{{ seomatic.site.siteLinksSearchTarget }}\",\"query-input\":\"{{ seomatic.helper.siteLinksQueryInput() }}\"},\"image\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.meta.seoImage }}\"},\"url\":\"{{ seomatic.meta.canonicalUrl }}\",\"description\":\"{{ seomatic.meta.seoDescription }}\",\"subjectOf\":null,\"additionalType\":null,\"disambiguatingDescription\":null,\"sameAs\":null,\"identifier\":null}},\"name\":\"General\",\"description\":\"JsonLd Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaJsonLdContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTitleContainergeneral\":{\"data\":{\"title\":{\"title\":\"{{ seomatic.meta.seoTitle }}\",\"siteName\":\"{{ seomatic.site.siteName }}\",\"siteNamePosition\":\"{{ seomatic.meta.siteNamePosition }}\",\"separatorChar\":\"{{ seomatic.config.separatorChar }}\",\"include\":true,\"key\":\"title\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]}},\"name\":\"General\",\"description\":\"Meta Title Tag\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTitleContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false}}','[]','{\"data\":[],\"name\":null,\"description\":null,\"class\":\"nystudio107\\\\seomatic\\\\models\\\\FrontendTemplateContainer\",\"handle\":null,\"include\":true,\"dependencies\":null,\"clearCache\":false}','{\"siteType\":\"CreativeWork\",\"siteSubType\":\"WebSite\",\"siteSpecificType\":\"\",\"seoTitleSource\":\"fromField\",\"seoTitleField\":\"seoTitle\",\"siteNamePositionSource\":\"fromCustom\",\"seoDescriptionSource\":\"summaryFromField\",\"seoDescriptionField\":\"seoDescription\",\"seoKeywordsSource\":\"keywordsFromField\",\"seoKeywordsField\":\"seoKeywords\",\"seoImageIds\":\"\",\"seoImageSource\":\"fromField\",\"seoImageField\":\"seoImage\",\"seoImageTransform\":\"1\",\"seoImageTransformMode\":\"crop\",\"seoImageDescriptionSource\":\"summaryFromField\",\"seoImageDescriptionField\":\"seoImageDescription\",\"twitterCreatorSource\":\"sameAsSite\",\"twitterCreatorField\":\"\",\"twitterTitleSource\":\"sameAsSeo\",\"twitterTitleField\":\"\",\"twitterSiteNamePositionSource\":\"fromCustom\",\"twitterDescriptionSource\":\"sameAsSeo\",\"twitterDescriptionField\":\"\",\"twitterImageIds\":\"\",\"twitterImageSource\":\"sameAsSeo\",\"twitterImageField\":\"seoImage\",\"twitterImageTransform\":\"1\",\"twitterImageTransformMode\":\"crop\",\"twitterImageDescriptionSource\":\"sameAsSeo\",\"twitterImageDescriptionField\":\"\",\"ogTitleSource\":\"sameAsSeo\",\"ogTitleField\":\"\",\"ogSiteNamePositionSource\":\"fromCustom\",\"ogDescriptionSource\":\"sameAsSeo\",\"ogDescriptionField\":\"\",\"ogImageIds\":\"\",\"ogImageSource\":\"sameAsSeo\",\"ogImageField\":\"seoImage\",\"ogImageTransform\":\"1\",\"ogImageTransformMode\":\"crop\",\"ogImageDescriptionSource\":\"sameAsSeo\",\"ogImageDescriptionField\":\"\"}'),(13,'2021-11-09 01:12:27','2022-09-19 10:35:00','af28ea9f-4a39-469f-9d54-56e04f92f585','1.0.30','section',1,'Reports','reports','channel',NULL,'reports/_entry',1,'{\"1\":{\"id\":1,\"sectionId\":1,\"siteId\":1,\"enabledByDefault\":true,\"hasUrls\":true,\"uriFormat\":\"reports/{slug}\",\"template\":\"reports/_entry\",\"language\":\"en-au\"}}','2022-09-14 23:16:36','{\"language\":null,\"mainEntityOfPage\":\"WebPage\",\"seoTitle\":\"{entry.title}\",\"siteNamePosition\":\"\",\"seoDescription\":\"\",\"seoKeywords\":\"\",\"seoImage\":\"\",\"seoImageWidth\":\"\",\"seoImageHeight\":\"\",\"seoImageDescription\":\"\",\"canonicalUrl\":\"{entry.url}\",\"robots\":\"all\",\"ogType\":\"website\",\"ogTitle\":\"{seomatic.meta.seoTitle}\",\"ogSiteNamePosition\":\"\",\"ogDescription\":\"{seomatic.meta.seoDescription}\",\"ogImage\":\"{seomatic.meta.seoImage}\",\"ogImageWidth\":\"{seomatic.meta.seoImageWidth}\",\"ogImageHeight\":\"{seomatic.meta.seoImageHeight}\",\"ogImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"twitterCard\":\"summary_large_image\",\"twitterCreator\":\"{seomatic.site.twitterHandle}\",\"twitterTitle\":\"{seomatic.meta.seoTitle}\",\"twitterSiteNamePosition\":\"\",\"twitterDescription\":\"{seomatic.meta.seoDescription}\",\"twitterImage\":\"{seomatic.meta.seoImage}\",\"twitterImageWidth\":\"{seomatic.meta.seoImageWidth}\",\"twitterImageHeight\":\"{seomatic.meta.seoImageHeight}\",\"twitterImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"inherited\":[],\"overrides\":[]}','{\"siteName\":\"NWO\",\"identity\":null,\"creator\":null,\"twitterHandle\":\"\",\"facebookProfileId\":\"\",\"facebookAppId\":\"\",\"googleSiteVerification\":\"\",\"bingSiteVerification\":\"\",\"pinterestSiteVerification\":\"\",\"facebookSiteVerification\":\"\",\"sameAsLinks\":[],\"siteLinksSearchTarget\":\"\",\"siteLinksQueryInput\":\"\",\"referrer\":\"no-referrer-when-downgrade\",\"additionalSitemapUrls\":[],\"additionalSitemapUrlsDateUpdated\":null,\"additionalSitemaps\":[]}','{\"sitemapUrls\":true,\"sitemapAssets\":true,\"sitemapFiles\":true,\"sitemapAltLinks\":true,\"sitemapChangeFreq\":\"weekly\",\"sitemapPriority\":0.5,\"sitemapLimit\":null,\"structureDepth\":null,\"sitemapImageFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"caption\",\"field\":\"\"},{\"property\":\"geo_location\",\"field\":\"\"},{\"property\":\"license\",\"field\":\"\"}],\"sitemapVideoFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"description\",\"field\":\"\"},{\"property\":\"thumbnailLoc\",\"field\":\"\"},{\"property\":\"duration\",\"field\":\"\"},{\"property\":\"category\",\"field\":\"\"}],\"inherited\":[],\"overrides\":[]}','{\"MetaTagContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"General Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContaineropengraph\":{\"data\":[],\"name\":\"Facebook\",\"description\":\"Facebook OpenGraph Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"opengraph\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainertwitter\":{\"data\":[],\"name\":\"Twitter\",\"description\":\"Twitter Card Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"twitter\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainermiscellaneous\":{\"data\":[],\"name\":\"Miscellaneous\",\"description\":\"Miscellaneous Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"miscellaneous\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaLinkContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"Link Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaLinkContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaScriptContainergeneral\":{\"data\":[],\"position\":1,\"name\":\"General\",\"description\":\"Script Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaScriptContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaJsonLdContainergeneral\":{\"data\":{\"mainEntityOfPage\":{\"context\":\"http://schema.org\",\"type\":\"{{ seomatic.meta.mainEntityOfPage }}\",\"id\":null,\"graph\":null,\"include\":true,\"key\":\"mainEntityOfPage\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null,\"lastReviewed\":null,\"specialty\":null,\"primaryImageOfPage\":null,\"significantLink\":null,\"reviewedBy\":null,\"mainContentOfPage\":null,\"relatedLink\":null,\"speakable\":null,\"breadcrumb\":null,\"significantLinks\":null,\"teaches\":null,\"educationalLevel\":null,\"abstract\":null,\"creativeWorkStatus\":null,\"expires\":null,\"contentReferenceTime\":null,\"material\":null,\"review\":null,\"fileFormat\":null,\"text\":null,\"translator\":null,\"award\":null,\"assesses\":null,\"copyrightNotice\":null,\"schemaVersion\":null,\"countryOfOrigin\":null,\"pattern\":null,\"accountablePerson\":null,\"funding\":null,\"educationalUse\":null,\"genre\":null,\"keywords\":null,\"position\":null,\"accessibilityHazard\":null,\"alternativeHeadline\":null,\"audience\":null,\"offers\":null,\"locationCreated\":null,\"associatedMedia\":null,\"materialExtent\":null,\"mainEntity\":null,\"copyrightHolder\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"awards\":null,\"contentLocation\":null,\"sdDatePublished\":null,\"producer\":null,\"spatial\":null,\"publisher\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"sourceOrganization\":null,\"character\":null,\"funder\":null,\"exampleOfWork\":null,\"usageInfo\":null,\"provider\":null,\"sdPublisher\":null,\"comment\":null,\"accessibilityFeature\":null,\"publication\":null,\"translationOfWork\":null,\"interactivityType\":null,\"commentCount\":null,\"accessMode\":null,\"aggregateRating\":null,\"timeRequired\":null,\"typicalAgeRange\":null,\"interactionStatistic\":null,\"copyrightYear\":\"{{ entry.postDate | date(\\\"Y\\\") }}\",\"isBasedOn\":null,\"workExample\":null,\"publishingPrinciples\":null,\"discussionUrl\":null,\"releasedEvent\":null,\"dateCreated\":false,\"workTranslation\":null,\"editor\":null,\"creditText\":null,\"recordedAt\":null,\"editEIDR\":null,\"author\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"dateModified\":\"{{ entry.dateUpdated |atom }}\",\"sponsor\":null,\"accessibilitySummary\":null,\"encodingFormat\":null,\"maintainer\":null,\"educationalAlignment\":null,\"acquireLicensePage\":null,\"isAccessibleForFree\":null,\"datePublished\":\"{{ entry.postDate |atom }}\",\"spatialCoverage\":null,\"sdLicense\":null,\"conditionsOfAccess\":null,\"correction\":null,\"contentRating\":null,\"size\":null,\"isPartOf\":null,\"temporal\":null,\"thumbnailUrl\":null,\"inLanguage\":\"{{ seomatic.meta.language }}\",\"license\":null,\"creator\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"reviews\":null,\"about\":null,\"isFamilyFriendly\":null,\"headline\":\"{{ seomatic.meta.seoTitle }}\",\"accessibilityAPI\":null,\"publisherImprint\":null,\"isBasedOnUrl\":null,\"encodings\":null,\"interpretedAsClaim\":null,\"accessibilityControl\":null,\"citation\":null,\"version\":null,\"archivedAt\":null,\"learningResourceType\":null,\"encoding\":null,\"audio\":null,\"mentions\":null,\"accessModeSufficient\":null,\"hasPart\":null,\"temporalCoverage\":null,\"contributor\":null,\"video\":null,\"mainEntityOfPage\":\"{{ seomatic.meta.canonicalUrl }}\",\"alternateName\":null,\"name\":\"{{ seomatic.meta.seoTitle }}\",\"potentialAction\":{\"type\":\"SearchAction\",\"target\":\"{{ seomatic.site.siteLinksSearchTarget }}\",\"query-input\":\"{{ seomatic.helper.siteLinksQueryInput() }}\"},\"image\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.meta.seoImage }}\"},\"url\":\"{{ seomatic.meta.canonicalUrl }}\",\"description\":\"{{ seomatic.meta.seoDescription }}\",\"subjectOf\":null,\"additionalType\":null,\"disambiguatingDescription\":null,\"sameAs\":null,\"identifier\":null}},\"name\":\"General\",\"description\":\"JsonLd Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaJsonLdContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTitleContainergeneral\":{\"data\":{\"title\":{\"title\":\"{{ seomatic.meta.seoTitle }}\",\"siteName\":\"{{ seomatic.site.siteName }}\",\"siteNamePosition\":\"{{ seomatic.meta.siteNamePosition }}\",\"separatorChar\":\"{{ seomatic.config.separatorChar }}\",\"include\":true,\"key\":\"title\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]}},\"name\":\"General\",\"description\":\"Meta Title Tag\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTitleContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false}}','[]','{\"data\":[],\"name\":null,\"description\":null,\"class\":\"nystudio107\\\\seomatic\\\\models\\\\FrontendTemplateContainer\",\"handle\":null,\"include\":true,\"dependencies\":null,\"clearCache\":false}','{\"siteType\":\"CreativeWork\",\"siteSubType\":\"WebSite\",\"siteSpecificType\":\"\",\"seoTitleSource\":\"fromCustom\",\"seoTitleField\":\"\",\"siteNamePositionSource\":\"fromCustom\",\"seoDescriptionSource\":\"fromCustom\",\"seoDescriptionField\":\"\",\"seoKeywordsSource\":\"fromCustom\",\"seoKeywordsField\":\"\",\"seoImageIds\":[],\"seoImageSource\":\"fromAsset\",\"seoImageField\":\"\",\"seoImageTransform\":true,\"seoImageTransformMode\":\"crop\",\"seoImageDescriptionSource\":\"fromCustom\",\"seoImageDescriptionField\":\"\",\"twitterCreatorSource\":\"sameAsSite\",\"twitterCreatorField\":\"\",\"twitterTitleSource\":\"sameAsSeo\",\"twitterTitleField\":\"\",\"twitterSiteNamePositionSource\":\"fromCustom\",\"twitterDescriptionSource\":\"sameAsSeo\",\"twitterDescriptionField\":\"\",\"twitterImageIds\":[],\"twitterImageSource\":\"sameAsSeo\",\"twitterImageField\":\"\",\"twitterImageTransform\":true,\"twitterImageTransformMode\":\"crop\",\"twitterImageDescriptionSource\":\"sameAsSeo\",\"twitterImageDescriptionField\":\"\",\"ogTitleSource\":\"sameAsSeo\",\"ogTitleField\":\"\",\"ogSiteNamePositionSource\":\"fromCustom\",\"ogDescriptionSource\":\"sameAsSeo\",\"ogDescriptionField\":\"\",\"ogImageIds\":[],\"ogImageSource\":\"sameAsSeo\",\"ogImageField\":\"\",\"ogImageTransform\":true,\"ogImageTransformMode\":\"crop\",\"ogImageDescriptionSource\":\"sameAsSeo\",\"ogImageDescriptionField\":\"\"}'),(14,'2021-11-09 01:12:27','2022-09-19 20:09:31','14353c0e-9dbc-48fe-8419-3e60ee1f1c48','1.0.30','section',10,'Terms and conditions','termsAndConditions','single',NULL,'about-us/_entry',1,'{\"1\":{\"id\":10,\"sectionId\":10,\"siteId\":1,\"enabledByDefault\":true,\"hasUrls\":true,\"uriFormat\":\"terms-and-conditions\",\"template\":\"about-us/_entry\",\"language\":\"en-au\"}}','2022-08-08 06:09:46','{\"language\":null,\"mainEntityOfPage\":\"WebPage\",\"seoTitle\":\"{entry.title}\",\"siteNamePosition\":\"\",\"seoDescription\":\"\",\"seoKeywords\":\"\",\"seoImage\":\"\",\"seoImageWidth\":\"\",\"seoImageHeight\":\"\",\"seoImageDescription\":\"\",\"canonicalUrl\":\"{entry.url}\",\"robots\":\"all\",\"ogType\":\"website\",\"ogTitle\":\"{seomatic.meta.seoTitle}\",\"ogSiteNamePosition\":\"\",\"ogDescription\":\"{seomatic.meta.seoDescription}\",\"ogImage\":\"{seomatic.meta.seoImage}\",\"ogImageWidth\":\"{seomatic.meta.seoImageWidth}\",\"ogImageHeight\":\"{seomatic.meta.seoImageHeight}\",\"ogImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"twitterCard\":\"summary_large_image\",\"twitterCreator\":\"{seomatic.site.twitterHandle}\",\"twitterTitle\":\"{seomatic.meta.seoTitle}\",\"twitterSiteNamePosition\":\"\",\"twitterDescription\":\"{seomatic.meta.seoDescription}\",\"twitterImage\":\"{seomatic.meta.seoImage}\",\"twitterImageWidth\":\"{seomatic.meta.seoImageWidth}\",\"twitterImageHeight\":\"{seomatic.meta.seoImageHeight}\",\"twitterImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"inherited\":[],\"overrides\":[]}','{\"siteName\":\"NWO\",\"identity\":null,\"creator\":null,\"twitterHandle\":\"\",\"facebookProfileId\":\"\",\"facebookAppId\":\"\",\"googleSiteVerification\":\"\",\"bingSiteVerification\":\"\",\"pinterestSiteVerification\":\"\",\"facebookSiteVerification\":\"\",\"sameAsLinks\":[],\"siteLinksSearchTarget\":\"\",\"siteLinksQueryInput\":\"\",\"referrer\":\"no-referrer-when-downgrade\",\"additionalSitemapUrls\":[],\"additionalSitemapUrlsDateUpdated\":null,\"additionalSitemaps\":[]}','{\"sitemapUrls\":true,\"sitemapAssets\":true,\"sitemapFiles\":true,\"sitemapAltLinks\":true,\"sitemapChangeFreq\":\"weekly\",\"sitemapPriority\":0.5,\"sitemapLimit\":null,\"structureDepth\":null,\"sitemapImageFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"caption\",\"field\":\"\"},{\"property\":\"geo_location\",\"field\":\"\"},{\"property\":\"license\",\"field\":\"\"}],\"sitemapVideoFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"description\",\"field\":\"\"},{\"property\":\"thumbnailLoc\",\"field\":\"\"},{\"property\":\"duration\",\"field\":\"\"},{\"property\":\"category\",\"field\":\"\"}],\"inherited\":[],\"overrides\":[]}','{\"MetaTagContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"General Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContaineropengraph\":{\"data\":[],\"name\":\"Facebook\",\"description\":\"Facebook OpenGraph Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"opengraph\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainertwitter\":{\"data\":[],\"name\":\"Twitter\",\"description\":\"Twitter Card Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"twitter\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainermiscellaneous\":{\"data\":[],\"name\":\"Miscellaneous\",\"description\":\"Miscellaneous Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"miscellaneous\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaLinkContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"Link Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaLinkContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaScriptContainergeneral\":{\"data\":[],\"position\":1,\"name\":\"General\",\"description\":\"Script Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaScriptContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaJsonLdContainergeneral\":{\"data\":{\"mainEntityOfPage\":{\"context\":\"http://schema.org\",\"type\":\"{{ seomatic.meta.mainEntityOfPage }}\",\"id\":null,\"graph\":null,\"include\":true,\"key\":\"mainEntityOfPage\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null,\"lastReviewed\":null,\"specialty\":null,\"primaryImageOfPage\":null,\"significantLink\":null,\"reviewedBy\":null,\"mainContentOfPage\":null,\"relatedLink\":null,\"speakable\":null,\"breadcrumb\":null,\"significantLinks\":null,\"teaches\":null,\"educationalLevel\":null,\"abstract\":null,\"creativeWorkStatus\":null,\"expires\":null,\"contentReferenceTime\":null,\"material\":null,\"review\":null,\"fileFormat\":null,\"text\":null,\"translator\":null,\"award\":null,\"assesses\":null,\"copyrightNotice\":null,\"schemaVersion\":null,\"countryOfOrigin\":null,\"pattern\":null,\"accountablePerson\":null,\"funding\":null,\"educationalUse\":null,\"genre\":null,\"keywords\":null,\"position\":null,\"accessibilityHazard\":null,\"alternativeHeadline\":null,\"audience\":null,\"offers\":null,\"locationCreated\":null,\"associatedMedia\":null,\"materialExtent\":null,\"mainEntity\":null,\"copyrightHolder\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"awards\":null,\"contentLocation\":null,\"sdDatePublished\":null,\"producer\":null,\"spatial\":null,\"publisher\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"sourceOrganization\":null,\"character\":null,\"funder\":null,\"exampleOfWork\":null,\"usageInfo\":null,\"provider\":null,\"sdPublisher\":null,\"comment\":null,\"accessibilityFeature\":null,\"publication\":null,\"translationOfWork\":null,\"interactivityType\":null,\"commentCount\":null,\"accessMode\":null,\"aggregateRating\":null,\"timeRequired\":null,\"typicalAgeRange\":null,\"interactionStatistic\":null,\"copyrightYear\":\"{{ entry.postDate | date(\\\"Y\\\") }}\",\"isBasedOn\":null,\"workExample\":null,\"publishingPrinciples\":null,\"discussionUrl\":null,\"releasedEvent\":null,\"dateCreated\":false,\"workTranslation\":null,\"editor\":null,\"creditText\":null,\"recordedAt\":null,\"editEIDR\":null,\"author\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"dateModified\":\"{{ entry.dateUpdated |atom }}\",\"sponsor\":null,\"accessibilitySummary\":null,\"encodingFormat\":null,\"maintainer\":null,\"educationalAlignment\":null,\"acquireLicensePage\":null,\"isAccessibleForFree\":null,\"datePublished\":\"{{ entry.postDate |atom }}\",\"spatialCoverage\":null,\"sdLicense\":null,\"conditionsOfAccess\":null,\"correction\":null,\"contentRating\":null,\"size\":null,\"isPartOf\":null,\"temporal\":null,\"thumbnailUrl\":null,\"inLanguage\":\"{{ seomatic.meta.language }}\",\"license\":null,\"creator\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"reviews\":null,\"about\":null,\"isFamilyFriendly\":null,\"headline\":\"{{ seomatic.meta.seoTitle }}\",\"accessibilityAPI\":null,\"publisherImprint\":null,\"isBasedOnUrl\":null,\"encodings\":null,\"interpretedAsClaim\":null,\"accessibilityControl\":null,\"citation\":null,\"version\":null,\"archivedAt\":null,\"learningResourceType\":null,\"encoding\":null,\"audio\":null,\"mentions\":null,\"accessModeSufficient\":null,\"hasPart\":null,\"temporalCoverage\":null,\"contributor\":null,\"video\":null,\"mainEntityOfPage\":\"{{ seomatic.meta.canonicalUrl }}\",\"alternateName\":null,\"name\":\"{{ seomatic.meta.seoTitle }}\",\"potentialAction\":{\"type\":\"SearchAction\",\"target\":\"{{ seomatic.site.siteLinksSearchTarget }}\",\"query-input\":\"{{ seomatic.helper.siteLinksQueryInput() }}\"},\"image\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.meta.seoImage }}\"},\"url\":\"{{ seomatic.meta.canonicalUrl }}\",\"description\":\"{{ seomatic.meta.seoDescription }}\",\"subjectOf\":null,\"additionalType\":null,\"disambiguatingDescription\":null,\"sameAs\":null,\"identifier\":null}},\"name\":\"General\",\"description\":\"JsonLd Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaJsonLdContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTitleContainergeneral\":{\"data\":{\"title\":{\"title\":\"{{ seomatic.meta.seoTitle }}\",\"siteName\":\"{{ seomatic.site.siteName }}\",\"siteNamePosition\":\"{{ seomatic.meta.siteNamePosition }}\",\"separatorChar\":\"{{ seomatic.config.separatorChar }}\",\"include\":true,\"key\":\"title\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]}},\"name\":\"General\",\"description\":\"Meta Title Tag\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTitleContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false}}','[]','{\"data\":[],\"name\":null,\"description\":null,\"class\":\"nystudio107\\\\seomatic\\\\models\\\\FrontendTemplateContainer\",\"handle\":null,\"include\":true,\"dependencies\":null,\"clearCache\":false}','{\"siteType\":\"CreativeWork\",\"siteSubType\":\"WebSite\",\"siteSpecificType\":\"\",\"seoTitleSource\":\"fromCustom\",\"seoTitleField\":\"\",\"siteNamePositionSource\":\"fromCustom\",\"seoDescriptionSource\":\"fromCustom\",\"seoDescriptionField\":\"\",\"seoKeywordsSource\":\"fromCustom\",\"seoKeywordsField\":\"\",\"seoImageIds\":[],\"seoImageSource\":\"fromAsset\",\"seoImageField\":\"\",\"seoImageTransform\":true,\"seoImageTransformMode\":\"crop\",\"seoImageDescriptionSource\":\"fromCustom\",\"seoImageDescriptionField\":\"\",\"twitterCreatorSource\":\"sameAsSite\",\"twitterCreatorField\":\"\",\"twitterTitleSource\":\"sameAsSeo\",\"twitterTitleField\":\"\",\"twitterSiteNamePositionSource\":\"fromCustom\",\"twitterDescriptionSource\":\"sameAsSeo\",\"twitterDescriptionField\":\"\",\"twitterImageIds\":[],\"twitterImageSource\":\"sameAsSeo\",\"twitterImageField\":\"\",\"twitterImageTransform\":true,\"twitterImageTransformMode\":\"crop\",\"twitterImageDescriptionSource\":\"sameAsSeo\",\"twitterImageDescriptionField\":\"\",\"ogTitleSource\":\"sameAsSeo\",\"ogTitleField\":\"\",\"ogSiteNamePositionSource\":\"fromCustom\",\"ogDescriptionSource\":\"sameAsSeo\",\"ogDescriptionField\":\"\",\"ogImageIds\":[],\"ogImageSource\":\"sameAsSeo\",\"ogImageField\":\"\",\"ogImageTransform\":true,\"ogImageTransformMode\":\"crop\",\"ogImageDescriptionSource\":\"sameAsSeo\",\"ogImageDescriptionField\":\"\"}'),(15,'2021-11-09 01:12:27','2023-03-31 03:42:53','33aa95b9-6ef0-42b6-9164-cd842024484b','1.0.30','section',5,'Work','work','channel',NULL,'work/_entry',1,'{\"1\":{\"id\":5,\"sectionId\":5,\"siteId\":1,\"enabledByDefault\":true,\"hasUrls\":true,\"uriFormat\":\"work/{slug}\",\"template\":\"work/_entry\",\"language\":\"en-au\"}}','2023-03-31 03:42:53','{\"language\":null,\"mainEntityOfPage\":\"WebSite\",\"seoTitle\":\"{{ seomatic.helper.extractTextFromField(entry.seoTitle) }}\",\"siteNamePosition\":\"before\",\"seoDescription\":\"{{ seomatic.helper.extractTextFromField(entry.seoDescription) }}\",\"seoKeywords\":\"{{ seomatic.helper.extractKeywords(seomatic.helper.extractTextFromField(entry.seoKeywords)) }}\",\"seoImage\":\"{{ seomatic.helper.socialTransform(entry.seoImage.collect()[0], \\\"base\\\", 1, \\\"crop\\\") }}\",\"seoImageWidth\":\"{{ seomatic.helper.socialTransformWidth(entry.seoImage.collect()[0], \\\"base\\\", 1, \\\"crop\\\") }}\",\"seoImageHeight\":\"{{ seomatic.helper.socialTransformHeight(entry.seoImage.collect()[0], \\\"base\\\", 1, \\\"crop\\\") }}\",\"seoImageDescription\":\"{{ seomatic.helper.extractSummary(seomatic.helper.extractTextFromField(entry.seoImageDescription)) }}\",\"canonicalUrl\":\"{entry.url}\",\"robots\":\"all\",\"ogType\":\"website\",\"ogTitle\":\"{seomatic.meta.seoTitle}\",\"ogSiteNamePosition\":\"\",\"ogDescription\":\"{seomatic.meta.seoDescription}\",\"ogImage\":\"{{ seomatic.helper.socialTransform(entry.seoImage.collect()[0], \\\"facebook\\\", 1, \\\"crop\\\") }}\",\"ogImageWidth\":\"{{ seomatic.helper.socialTransformWidth(entry.seoImage.collect()[0], \\\"facebook\\\", 1, \\\"crop\\\") }}\",\"ogImageHeight\":\"{{ seomatic.helper.socialTransformHeight(entry.seoImage.collect()[0], \\\"facebook\\\", 1, \\\"crop\\\") }}\",\"ogImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"twitterCard\":\"summary_large_image\",\"twitterCreator\":\"{seomatic.site.twitterHandle}\",\"twitterTitle\":\"{seomatic.meta.seoTitle}\",\"twitterSiteNamePosition\":\"\",\"twitterDescription\":\"{seomatic.meta.seoDescription}\",\"twitterImage\":\"{{ seomatic.helper.socialTransform(entry.seoImage.collect()[0], seomatic.helper.twitterTransform(), 1, \\\"crop\\\") }}\",\"twitterImageWidth\":\"{{ seomatic.helper.socialTransformWidth(entry.seoImage.collect()[0], seomatic.helper.twitterTransform(), 1, \\\"crop\\\") }}\",\"twitterImageHeight\":\"{{ seomatic.helper.socialTransformHeight(entry.seoImage.collect()[0], seomatic.helper.twitterTransform(), 1, \\\"crop\\\") }}\",\"twitterImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"inherited\":[],\"overrides\":[]}','{\"siteName\":\"NWO\",\"identity\":null,\"creator\":null,\"twitterHandle\":\"\",\"facebookProfileId\":\"\",\"facebookAppId\":\"\",\"googleSiteVerification\":\"\",\"bingSiteVerification\":\"\",\"pinterestSiteVerification\":\"\",\"facebookSiteVerification\":\"\",\"sameAsLinks\":[],\"siteLinksSearchTarget\":\"\",\"siteLinksQueryInput\":\"\",\"referrer\":\"no-referrer-when-downgrade\",\"additionalSitemapUrls\":[],\"additionalSitemapUrlsDateUpdated\":null,\"additionalSitemaps\":[]}','{\"sitemapUrls\":true,\"sitemapAssets\":true,\"sitemapFiles\":true,\"sitemapAltLinks\":true,\"sitemapChangeFreq\":\"weekly\",\"sitemapPriority\":0.5,\"sitemapLimit\":null,\"structureDepth\":null,\"sitemapImageFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"caption\",\"field\":\"\"},{\"property\":\"geo_location\",\"field\":\"\"},{\"property\":\"license\",\"field\":\"\"}],\"sitemapVideoFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"description\",\"field\":\"\"},{\"property\":\"thumbnailLoc\",\"field\":\"\"},{\"property\":\"duration\",\"field\":\"\"},{\"property\":\"category\",\"field\":\"\"}],\"inherited\":[],\"overrides\":[]}','{\"MetaTagContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"General Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContaineropengraph\":{\"data\":[],\"name\":\"Facebook\",\"description\":\"Facebook OpenGraph Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"opengraph\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainertwitter\":{\"data\":[],\"name\":\"Twitter\",\"description\":\"Twitter Card Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"twitter\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainermiscellaneous\":{\"data\":[],\"name\":\"Miscellaneous\",\"description\":\"Miscellaneous Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"miscellaneous\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaLinkContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"Link Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaLinkContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaScriptContainergeneral\":{\"data\":[],\"position\":1,\"name\":\"General\",\"description\":\"Script Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaScriptContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaJsonLdContainergeneral\":{\"data\":{\"mainEntityOfPage\":{\"context\":\"http://schema.org\",\"type\":\"{{ seomatic.meta.mainEntityOfPage }}\",\"id\":null,\"graph\":null,\"include\":true,\"key\":\"mainEntityOfPage\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null,\"issn\":null,\"workTranslation\":null,\"educationalLevel\":null,\"associatedMedia\":null,\"exampleOfWork\":null,\"releasedEvent\":null,\"version\":null,\"locationCreated\":null,\"acquireLicensePage\":null,\"thumbnailUrl\":null,\"provider\":null,\"expires\":null,\"contentLocation\":null,\"educationalUse\":null,\"copyrightHolder\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"accessibilityControl\":null,\"maintainer\":null,\"educationalAlignment\":null,\"spatial\":null,\"publisher\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"keywords\":null,\"assesses\":null,\"reviews\":null,\"isBasedOn\":null,\"mentions\":null,\"publishingPrinciples\":null,\"contributor\":null,\"license\":null,\"citation\":null,\"accessibilitySummary\":null,\"award\":null,\"commentCount\":null,\"temporalCoverage\":null,\"dateCreated\":false,\"discussionUrl\":null,\"copyrightNotice\":null,\"learningResourceType\":null,\"awards\":null,\"accessModeSufficient\":null,\"review\":null,\"conditionsOfAccess\":null,\"interactivityType\":null,\"abstract\":null,\"fileFormat\":null,\"interpretedAsClaim\":null,\"text\":null,\"archivedAt\":null,\"alternativeHeadline\":null,\"creditText\":null,\"funding\":null,\"interactionStatistic\":null,\"workExample\":null,\"about\":null,\"encodings\":null,\"funder\":null,\"video\":null,\"isPartOf\":null,\"pattern\":null,\"editor\":null,\"dateModified\":\"{{ entry.dateUpdated |atom }}\",\"translationOfWork\":null,\"creativeWorkStatus\":null,\"isBasedOnUrl\":null,\"isFamilyFriendly\":null,\"isAccessibleForFree\":null,\"author\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"contentReferenceTime\":null,\"correction\":null,\"sdDatePublished\":null,\"comment\":null,\"countryOfOrigin\":null,\"timeRequired\":null,\"typicalAgeRange\":null,\"genre\":null,\"producer\":null,\"schemaVersion\":null,\"audience\":null,\"encoding\":null,\"publisherImprint\":null,\"accessibilityAPI\":null,\"sdPublisher\":null,\"audio\":null,\"accessibilityFeature\":null,\"spatialCoverage\":null,\"accessMode\":null,\"editEIDR\":null,\"usageInfo\":null,\"position\":null,\"encodingFormat\":null,\"copyrightYear\":\"{{ entry.postDate | date(\\\"Y\\\") }}\",\"mainEntity\":null,\"creator\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"teaches\":null,\"temporal\":null,\"size\":null,\"translator\":null,\"aggregateRating\":null,\"accountablePerson\":null,\"accessibilityHazard\":null,\"contentRating\":null,\"recordedAt\":null,\"publication\":null,\"sdLicense\":null,\"headline\":\"{{ seomatic.meta.seoTitle }}\",\"materialExtent\":null,\"inLanguage\":\"{{ seomatic.meta.language }}\",\"material\":null,\"datePublished\":\"{{ entry.postDate |atom }}\",\"offers\":null,\"hasPart\":null,\"sourceOrganization\":null,\"sponsor\":null,\"character\":null,\"potentialAction\":{\"type\":\"SearchAction\",\"target\":\"{{ seomatic.site.siteLinksSearchTarget }}\",\"query-input\":\"{{ seomatic.helper.siteLinksQueryInput() }}\"},\"mainEntityOfPage\":\"{{ seomatic.meta.canonicalUrl }}\",\"subjectOf\":null,\"url\":\"{{ seomatic.meta.canonicalUrl }}\",\"alternateName\":null,\"sameAs\":null,\"description\":\"{{ seomatic.meta.seoDescription }}\",\"disambiguatingDescription\":null,\"identifier\":null,\"image\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.meta.seoImage }}\"},\"name\":\"{{ seomatic.meta.seoTitle }}\",\"additionalType\":null}},\"name\":\"General\",\"description\":\"JsonLd Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaJsonLdContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTitleContainergeneral\":{\"data\":{\"title\":{\"title\":\"{{ seomatic.meta.seoTitle }}\",\"siteName\":\"{{ seomatic.site.siteName }}\",\"siteNamePosition\":\"{{ seomatic.meta.siteNamePosition }}\",\"separatorChar\":\"{{ seomatic.config.separatorChar }}\",\"include\":true,\"key\":\"title\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]}},\"name\":\"General\",\"description\":\"Meta Title Tag\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTitleContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false}}','[]','{\"data\":[],\"name\":null,\"description\":null,\"class\":\"nystudio107\\\\seomatic\\\\models\\\\FrontendTemplateContainer\",\"handle\":null,\"include\":true,\"dependencies\":null,\"clearCache\":false}','{\"siteType\":\"CreativeWork\",\"siteSubType\":\"WebSite\",\"siteSpecificType\":\"\",\"seoTitleSource\":\"fromField\",\"seoTitleField\":\"seoTitle\",\"siteNamePositionSource\":\"fromCustom\",\"seoDescriptionSource\":\"fromField\",\"seoDescriptionField\":\"seoDescription\",\"seoKeywordsSource\":\"keywordsFromField\",\"seoKeywordsField\":\"seoKeywords\",\"seoImageIds\":\"\",\"seoImageSource\":\"fromField\",\"seoImageField\":\"seoImage\",\"seoImageTransform\":\"1\",\"seoImageTransformMode\":\"crop\",\"seoImageDescriptionSource\":\"summaryFromField\",\"seoImageDescriptionField\":\"seoImageDescription\",\"twitterCreatorSource\":\"sameAsSite\",\"twitterCreatorField\":\"\",\"twitterTitleSource\":\"sameAsSeo\",\"twitterTitleField\":\"\",\"twitterSiteNamePositionSource\":\"fromCustom\",\"twitterDescriptionSource\":\"sameAsSeo\",\"twitterDescriptionField\":\"\",\"twitterImageIds\":\"\",\"twitterImageSource\":\"sameAsSeo\",\"twitterImageField\":\"globalImage\",\"twitterImageTransform\":\"1\",\"twitterImageTransformMode\":\"crop\",\"twitterImageDescriptionSource\":\"sameAsSeo\",\"twitterImageDescriptionField\":\"\",\"ogTitleSource\":\"sameAsSeo\",\"ogTitleField\":\"\",\"ogSiteNamePositionSource\":\"fromCustom\",\"ogDescriptionSource\":\"sameAsSeo\",\"ogDescriptionField\":\"\",\"ogImageIds\":\"\",\"ogImageSource\":\"sameAsSeo\",\"ogImageField\":\"globalImage\",\"ogImageTransform\":\"1\",\"ogImageTransformMode\":\"crop\",\"ogImageDescriptionSource\":\"sameAsSeo\",\"ogImageDescriptionField\":\"\"}'),(16,'2021-11-09 23:38:15','2022-09-21 21:22:51','37884ccb-ae50-42aa-ac6e-ff7c86261170','1.0.30','section',11,'Update details','updateDetails','single',NULL,'update-details/_entry',1,'{\"1\":{\"id\":11,\"sectionId\":11,\"siteId\":1,\"enabledByDefault\":true,\"hasUrls\":true,\"uriFormat\":\"update-details\",\"template\":\"update-details/_entry\",\"language\":\"en-au\"}}','2022-05-17 23:19:22','{\"language\":null,\"mainEntityOfPage\":\"WebPage\",\"seoTitle\":\"{entry.title}\",\"siteNamePosition\":\"\",\"seoDescription\":\"\",\"seoKeywords\":\"\",\"seoImage\":\"\",\"seoImageWidth\":\"\",\"seoImageHeight\":\"\",\"seoImageDescription\":\"\",\"canonicalUrl\":\"{entry.url}\",\"robots\":\"all\",\"ogType\":\"website\",\"ogTitle\":\"{seomatic.meta.seoTitle}\",\"ogSiteNamePosition\":\"\",\"ogDescription\":\"{seomatic.meta.seoDescription}\",\"ogImage\":\"{seomatic.meta.seoImage}\",\"ogImageWidth\":\"{seomatic.meta.seoImageWidth}\",\"ogImageHeight\":\"{seomatic.meta.seoImageHeight}\",\"ogImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"twitterCard\":\"summary_large_image\",\"twitterCreator\":\"{seomatic.site.twitterHandle}\",\"twitterTitle\":\"{seomatic.meta.seoTitle}\",\"twitterSiteNamePosition\":\"\",\"twitterDescription\":\"{seomatic.meta.seoDescription}\",\"twitterImage\":\"{seomatic.meta.seoImage}\",\"twitterImageWidth\":\"{seomatic.meta.seoImageWidth}\",\"twitterImageHeight\":\"{seomatic.meta.seoImageHeight}\",\"twitterImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"inherited\":[],\"overrides\":[]}','{\"siteName\":\"NWO\",\"identity\":null,\"creator\":null,\"twitterHandle\":\"\",\"facebookProfileId\":\"\",\"facebookAppId\":\"\",\"googleSiteVerification\":\"\",\"bingSiteVerification\":\"\",\"pinterestSiteVerification\":\"\",\"facebookSiteVerification\":\"\",\"sameAsLinks\":[],\"siteLinksSearchTarget\":\"\",\"siteLinksQueryInput\":\"\",\"referrer\":\"no-referrer-when-downgrade\",\"additionalSitemapUrls\":[],\"additionalSitemapUrlsDateUpdated\":null,\"additionalSitemaps\":[]}','{\"sitemapUrls\":true,\"sitemapAssets\":true,\"sitemapFiles\":true,\"sitemapAltLinks\":true,\"sitemapChangeFreq\":\"weekly\",\"sitemapPriority\":0.5,\"sitemapLimit\":null,\"structureDepth\":null,\"sitemapImageFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"caption\",\"field\":\"\"},{\"property\":\"geo_location\",\"field\":\"\"},{\"property\":\"license\",\"field\":\"\"}],\"sitemapVideoFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"description\",\"field\":\"\"},{\"property\":\"thumbnailLoc\",\"field\":\"\"},{\"property\":\"duration\",\"field\":\"\"},{\"property\":\"category\",\"field\":\"\"}],\"inherited\":[],\"overrides\":[]}','{\"MetaTagContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"General Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContaineropengraph\":{\"data\":[],\"name\":\"Facebook\",\"description\":\"Facebook OpenGraph Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"opengraph\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainertwitter\":{\"data\":[],\"name\":\"Twitter\",\"description\":\"Twitter Card Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"twitter\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainermiscellaneous\":{\"data\":[],\"name\":\"Miscellaneous\",\"description\":\"Miscellaneous Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"miscellaneous\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaLinkContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"Link Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaLinkContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaScriptContainergeneral\":{\"data\":[],\"position\":1,\"name\":\"General\",\"description\":\"Script Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaScriptContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaJsonLdContainergeneral\":{\"data\":{\"mainEntityOfPage\":{\"context\":\"http://schema.org\",\"type\":\"{{ seomatic.meta.mainEntityOfPage }}\",\"id\":null,\"graph\":null,\"include\":true,\"key\":\"mainEntityOfPage\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null,\"lastReviewed\":null,\"specialty\":null,\"primaryImageOfPage\":null,\"significantLink\":null,\"reviewedBy\":null,\"mainContentOfPage\":null,\"relatedLink\":null,\"speakable\":null,\"breadcrumb\":null,\"significantLinks\":null,\"teaches\":null,\"educationalLevel\":null,\"abstract\":null,\"creativeWorkStatus\":null,\"expires\":null,\"contentReferenceTime\":null,\"material\":null,\"review\":null,\"fileFormat\":null,\"text\":null,\"translator\":null,\"award\":null,\"assesses\":null,\"copyrightNotice\":null,\"schemaVersion\":null,\"countryOfOrigin\":null,\"pattern\":null,\"accountablePerson\":null,\"funding\":null,\"educationalUse\":null,\"genre\":null,\"keywords\":null,\"position\":null,\"accessibilityHazard\":null,\"alternativeHeadline\":null,\"audience\":null,\"offers\":null,\"locationCreated\":null,\"associatedMedia\":null,\"materialExtent\":null,\"mainEntity\":null,\"copyrightHolder\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"awards\":null,\"contentLocation\":null,\"sdDatePublished\":null,\"producer\":null,\"spatial\":null,\"publisher\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"sourceOrganization\":null,\"character\":null,\"funder\":null,\"exampleOfWork\":null,\"usageInfo\":null,\"provider\":null,\"sdPublisher\":null,\"comment\":null,\"accessibilityFeature\":null,\"publication\":null,\"translationOfWork\":null,\"interactivityType\":null,\"commentCount\":null,\"accessMode\":null,\"aggregateRating\":null,\"timeRequired\":null,\"typicalAgeRange\":null,\"interactionStatistic\":null,\"copyrightYear\":\"{{ entry.postDate | date(\\\"Y\\\") }}\",\"isBasedOn\":null,\"workExample\":null,\"publishingPrinciples\":null,\"discussionUrl\":null,\"releasedEvent\":null,\"dateCreated\":false,\"workTranslation\":null,\"editor\":null,\"creditText\":null,\"recordedAt\":null,\"editEIDR\":null,\"author\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"dateModified\":\"{{ entry.dateUpdated |atom }}\",\"sponsor\":null,\"accessibilitySummary\":null,\"encodingFormat\":null,\"maintainer\":null,\"educationalAlignment\":null,\"acquireLicensePage\":null,\"isAccessibleForFree\":null,\"datePublished\":\"{{ entry.postDate |atom }}\",\"spatialCoverage\":null,\"sdLicense\":null,\"conditionsOfAccess\":null,\"correction\":null,\"contentRating\":null,\"size\":null,\"isPartOf\":null,\"temporal\":null,\"thumbnailUrl\":null,\"inLanguage\":\"{{ seomatic.meta.language }}\",\"license\":null,\"creator\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"reviews\":null,\"about\":null,\"isFamilyFriendly\":null,\"headline\":\"{{ seomatic.meta.seoTitle }}\",\"accessibilityAPI\":null,\"publisherImprint\":null,\"isBasedOnUrl\":null,\"encodings\":null,\"interpretedAsClaim\":null,\"accessibilityControl\":null,\"citation\":null,\"version\":null,\"archivedAt\":null,\"learningResourceType\":null,\"encoding\":null,\"audio\":null,\"mentions\":null,\"accessModeSufficient\":null,\"hasPart\":null,\"temporalCoverage\":null,\"contributor\":null,\"video\":null,\"mainEntityOfPage\":\"{{ seomatic.meta.canonicalUrl }}\",\"alternateName\":null,\"name\":\"{{ seomatic.meta.seoTitle }}\",\"potentialAction\":{\"type\":\"SearchAction\",\"target\":\"{{ seomatic.site.siteLinksSearchTarget }}\",\"query-input\":\"{{ seomatic.helper.siteLinksQueryInput() }}\"},\"image\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.meta.seoImage }}\"},\"url\":\"{{ seomatic.meta.canonicalUrl }}\",\"description\":\"{{ seomatic.meta.seoDescription }}\",\"subjectOf\":null,\"additionalType\":null,\"disambiguatingDescription\":null,\"sameAs\":null,\"identifier\":null}},\"name\":\"General\",\"description\":\"JsonLd Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaJsonLdContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTitleContainergeneral\":{\"data\":{\"title\":{\"title\":\"{{ seomatic.meta.seoTitle }}\",\"siteName\":\"{{ seomatic.site.siteName }}\",\"siteNamePosition\":\"{{ seomatic.meta.siteNamePosition }}\",\"separatorChar\":\"{{ seomatic.config.separatorChar }}\",\"include\":true,\"key\":\"title\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]}},\"name\":\"General\",\"description\":\"Meta Title Tag\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTitleContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false}}','[]','{\"data\":[],\"name\":null,\"description\":null,\"class\":\"nystudio107\\\\seomatic\\\\models\\\\FrontendTemplateContainer\",\"handle\":null,\"include\":true,\"dependencies\":null,\"clearCache\":false}','{\"siteType\":\"CreativeWork\",\"siteSubType\":\"WebSite\",\"siteSpecificType\":\"\",\"seoTitleSource\":\"fromCustom\",\"seoTitleField\":\"\",\"siteNamePositionSource\":\"fromCustom\",\"seoDescriptionSource\":\"fromCustom\",\"seoDescriptionField\":\"\",\"seoKeywordsSource\":\"fromCustom\",\"seoKeywordsField\":\"\",\"seoImageIds\":[],\"seoImageSource\":\"fromAsset\",\"seoImageField\":\"\",\"seoImageTransform\":true,\"seoImageTransformMode\":\"crop\",\"seoImageDescriptionSource\":\"fromCustom\",\"seoImageDescriptionField\":\"\",\"twitterCreatorSource\":\"sameAsSite\",\"twitterCreatorField\":\"\",\"twitterTitleSource\":\"sameAsSeo\",\"twitterTitleField\":\"\",\"twitterSiteNamePositionSource\":\"fromCustom\",\"twitterDescriptionSource\":\"sameAsSeo\",\"twitterDescriptionField\":\"\",\"twitterImageIds\":[],\"twitterImageSource\":\"sameAsSeo\",\"twitterImageField\":\"\",\"twitterImageTransform\":true,\"twitterImageTransformMode\":\"crop\",\"twitterImageDescriptionSource\":\"sameAsSeo\",\"twitterImageDescriptionField\":\"\",\"ogTitleSource\":\"sameAsSeo\",\"ogTitleField\":\"\",\"ogSiteNamePositionSource\":\"fromCustom\",\"ogDescriptionSource\":\"sameAsSeo\",\"ogDescriptionField\":\"\",\"ogImageIds\":[],\"ogImageSource\":\"sameAsSeo\",\"ogImageField\":\"\",\"ogImageTransform\":true,\"ogImageTransformMode\":\"crop\",\"ogImageDescriptionSource\":\"sameAsSeo\",\"ogImageDescriptionField\":\"\"}'),(18,'2021-11-15 01:51:50','2022-12-01 07:16:44','45c6071c-c9c1-4d14-a4aa-517acebd6821','1.0.30','section',13,'Email sigs','emailSigs','single',NULL,'email-signatures/_entry',1,'{\"1\":{\"id\":13,\"sectionId\":13,\"siteId\":1,\"enabledByDefault\":true,\"hasUrls\":true,\"uriFormat\":\"email-sigs\",\"template\":\"email-signatures/_entry\",\"language\":\"en-au\"}}','2022-12-01 07:16:43','{\"language\":null,\"mainEntityOfPage\":\"WebPage\",\"seoTitle\":\"{entry.title}\",\"siteNamePosition\":\"\",\"seoDescription\":\"\",\"seoKeywords\":\"\",\"seoImage\":\"\",\"seoImageWidth\":\"\",\"seoImageHeight\":\"\",\"seoImageDescription\":\"\",\"canonicalUrl\":\"{entry.url}\",\"robots\":\"all\",\"ogType\":\"website\",\"ogTitle\":\"{seomatic.meta.seoTitle}\",\"ogSiteNamePosition\":\"\",\"ogDescription\":\"{seomatic.meta.seoDescription}\",\"ogImage\":\"{seomatic.meta.seoImage}\",\"ogImageWidth\":\"{seomatic.meta.seoImageWidth}\",\"ogImageHeight\":\"{seomatic.meta.seoImageHeight}\",\"ogImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"twitterCard\":\"summary_large_image\",\"twitterCreator\":\"{seomatic.site.twitterHandle}\",\"twitterTitle\":\"{seomatic.meta.seoTitle}\",\"twitterSiteNamePosition\":\"\",\"twitterDescription\":\"{seomatic.meta.seoDescription}\",\"twitterImage\":\"{seomatic.meta.seoImage}\",\"twitterImageWidth\":\"{seomatic.meta.seoImageWidth}\",\"twitterImageHeight\":\"{seomatic.meta.seoImageHeight}\",\"twitterImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"inherited\":[],\"overrides\":[]}','{\"siteName\":\"NWO\",\"identity\":null,\"creator\":null,\"twitterHandle\":\"\",\"facebookProfileId\":\"\",\"facebookAppId\":\"\",\"googleSiteVerification\":\"\",\"bingSiteVerification\":\"\",\"pinterestSiteVerification\":\"\",\"facebookSiteVerification\":\"\",\"sameAsLinks\":[],\"siteLinksSearchTarget\":\"\",\"siteLinksQueryInput\":\"\",\"referrer\":\"no-referrer-when-downgrade\",\"additionalSitemapUrls\":[],\"additionalSitemapUrlsDateUpdated\":null,\"additionalSitemaps\":[]}','{\"sitemapUrls\":true,\"sitemapAssets\":true,\"sitemapFiles\":true,\"sitemapAltLinks\":true,\"sitemapChangeFreq\":\"weekly\",\"sitemapPriority\":0.5,\"sitemapLimit\":null,\"structureDepth\":null,\"sitemapImageFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"caption\",\"field\":\"\"},{\"property\":\"geo_location\",\"field\":\"\"},{\"property\":\"license\",\"field\":\"\"}],\"sitemapVideoFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"description\",\"field\":\"\"},{\"property\":\"thumbnailLoc\",\"field\":\"\"},{\"property\":\"duration\",\"field\":\"\"},{\"property\":\"category\",\"field\":\"\"}],\"inherited\":[],\"overrides\":[]}','{\"MetaTagContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"General Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContaineropengraph\":{\"data\":[],\"name\":\"Facebook\",\"description\":\"Facebook OpenGraph Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"opengraph\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainertwitter\":{\"data\":[],\"name\":\"Twitter\",\"description\":\"Twitter Card Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"twitter\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainermiscellaneous\":{\"data\":[],\"name\":\"Miscellaneous\",\"description\":\"Miscellaneous Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"miscellaneous\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaLinkContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"Link Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaLinkContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaScriptContainergeneral\":{\"data\":[],\"position\":1,\"name\":\"General\",\"description\":\"Script Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaScriptContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaJsonLdContainergeneral\":{\"data\":{\"mainEntityOfPage\":{\"context\":\"http://schema.org\",\"type\":\"{{ seomatic.meta.mainEntityOfPage }}\",\"id\":null,\"graph\":null,\"include\":true,\"key\":\"mainEntityOfPage\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null,\"lastReviewed\":null,\"specialty\":null,\"primaryImageOfPage\":null,\"significantLink\":null,\"reviewedBy\":null,\"mainContentOfPage\":null,\"relatedLink\":null,\"speakable\":null,\"breadcrumb\":null,\"significantLinks\":null,\"teaches\":null,\"educationalLevel\":null,\"abstract\":null,\"creativeWorkStatus\":null,\"expires\":null,\"contentReferenceTime\":null,\"material\":null,\"review\":null,\"fileFormat\":null,\"text\":null,\"translator\":null,\"award\":null,\"assesses\":null,\"copyrightNotice\":null,\"schemaVersion\":null,\"countryOfOrigin\":null,\"pattern\":null,\"accountablePerson\":null,\"funding\":null,\"educationalUse\":null,\"genre\":null,\"keywords\":null,\"position\":null,\"accessibilityHazard\":null,\"alternativeHeadline\":null,\"audience\":null,\"offers\":null,\"locationCreated\":null,\"associatedMedia\":null,\"materialExtent\":null,\"mainEntity\":null,\"copyrightHolder\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"awards\":null,\"contentLocation\":null,\"sdDatePublished\":null,\"producer\":null,\"spatial\":null,\"publisher\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"sourceOrganization\":null,\"character\":null,\"funder\":null,\"exampleOfWork\":null,\"usageInfo\":null,\"provider\":null,\"sdPublisher\":null,\"comment\":null,\"accessibilityFeature\":null,\"publication\":null,\"translationOfWork\":null,\"interactivityType\":null,\"commentCount\":null,\"accessMode\":null,\"aggregateRating\":null,\"timeRequired\":null,\"typicalAgeRange\":null,\"interactionStatistic\":null,\"copyrightYear\":\"{{ entry.postDate | date(\\\"Y\\\") }}\",\"isBasedOn\":null,\"workExample\":null,\"publishingPrinciples\":null,\"discussionUrl\":null,\"releasedEvent\":null,\"dateCreated\":false,\"workTranslation\":null,\"editor\":null,\"creditText\":null,\"recordedAt\":null,\"editEIDR\":null,\"author\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"dateModified\":\"{{ entry.dateUpdated |atom }}\",\"sponsor\":null,\"accessibilitySummary\":null,\"encodingFormat\":null,\"maintainer\":null,\"educationalAlignment\":null,\"acquireLicensePage\":null,\"isAccessibleForFree\":null,\"datePublished\":\"{{ entry.postDate |atom }}\",\"spatialCoverage\":null,\"sdLicense\":null,\"conditionsOfAccess\":null,\"correction\":null,\"contentRating\":null,\"size\":null,\"isPartOf\":null,\"temporal\":null,\"thumbnailUrl\":null,\"inLanguage\":\"{{ seomatic.meta.language }}\",\"license\":null,\"creator\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"reviews\":null,\"about\":null,\"isFamilyFriendly\":null,\"headline\":\"{{ seomatic.meta.seoTitle }}\",\"accessibilityAPI\":null,\"publisherImprint\":null,\"isBasedOnUrl\":null,\"encodings\":null,\"interpretedAsClaim\":null,\"accessibilityControl\":null,\"citation\":null,\"version\":null,\"archivedAt\":null,\"learningResourceType\":null,\"encoding\":null,\"audio\":null,\"mentions\":null,\"accessModeSufficient\":null,\"hasPart\":null,\"temporalCoverage\":null,\"contributor\":null,\"video\":null,\"mainEntityOfPage\":\"{{ seomatic.meta.canonicalUrl }}\",\"alternateName\":null,\"name\":\"{{ seomatic.meta.seoTitle }}\",\"potentialAction\":{\"type\":\"SearchAction\",\"target\":\"{{ seomatic.site.siteLinksSearchTarget }}\",\"query-input\":\"{{ seomatic.helper.siteLinksQueryInput() }}\"},\"image\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.meta.seoImage }}\"},\"url\":\"{{ seomatic.meta.canonicalUrl }}\",\"description\":\"{{ seomatic.meta.seoDescription }}\",\"subjectOf\":null,\"additionalType\":null,\"disambiguatingDescription\":null,\"sameAs\":null,\"identifier\":null}},\"name\":\"General\",\"description\":\"JsonLd Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaJsonLdContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTitleContainergeneral\":{\"data\":{\"title\":{\"title\":\"{{ seomatic.meta.seoTitle }}\",\"siteName\":\"{{ seomatic.site.siteName }}\",\"siteNamePosition\":\"{{ seomatic.meta.siteNamePosition }}\",\"separatorChar\":\"{{ seomatic.config.separatorChar }}\",\"include\":true,\"key\":\"title\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]}},\"name\":\"General\",\"description\":\"Meta Title Tag\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTitleContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false}}','[]','{\"data\":[],\"name\":null,\"description\":null,\"class\":\"nystudio107\\\\seomatic\\\\models\\\\FrontendTemplateContainer\",\"handle\":null,\"include\":true,\"dependencies\":null,\"clearCache\":false}','{\"siteType\":\"CreativeWork\",\"siteSubType\":\"WebSite\",\"siteSpecificType\":\"\",\"seoTitleSource\":\"fromCustom\",\"seoTitleField\":\"\",\"siteNamePositionSource\":\"fromCustom\",\"seoDescriptionSource\":\"fromCustom\",\"seoDescriptionField\":\"\",\"seoKeywordsSource\":\"fromCustom\",\"seoKeywordsField\":\"\",\"seoImageIds\":[],\"seoImageSource\":\"fromAsset\",\"seoImageField\":\"\",\"seoImageTransform\":true,\"seoImageTransformMode\":\"crop\",\"seoImageDescriptionSource\":\"fromCustom\",\"seoImageDescriptionField\":\"\",\"twitterCreatorSource\":\"sameAsSite\",\"twitterCreatorField\":\"\",\"twitterTitleSource\":\"sameAsSeo\",\"twitterTitleField\":\"\",\"twitterSiteNamePositionSource\":\"fromCustom\",\"twitterDescriptionSource\":\"sameAsSeo\",\"twitterDescriptionField\":\"\",\"twitterImageIds\":[],\"twitterImageSource\":\"sameAsSeo\",\"twitterImageField\":\"\",\"twitterImageTransform\":true,\"twitterImageTransformMode\":\"crop\",\"twitterImageDescriptionSource\":\"sameAsSeo\",\"twitterImageDescriptionField\":\"\",\"ogTitleSource\":\"sameAsSeo\",\"ogTitleField\":\"\",\"ogSiteNamePositionSource\":\"fromCustom\",\"ogDescriptionSource\":\"sameAsSeo\",\"ogDescriptionField\":\"\",\"ogImageIds\":[],\"ogImageSource\":\"sameAsSeo\",\"ogImageField\":\"\",\"ogImageTransform\":true,\"ogImageTransformMode\":\"crop\",\"ogImageDescriptionSource\":\"sameAsSeo\",\"ogImageDescriptionField\":\"\"}'),(19,'2021-11-24 05:25:54','2022-09-19 20:09:33','a9d7f186-fbb9-4d92-b63f-b23f24f8abbe','1.0.30','section',14,'Privacy policy','privacyPolicy','single',NULL,'privacy-policy/_entry',1,'{\"1\":{\"id\":14,\"sectionId\":14,\"siteId\":1,\"enabledByDefault\":true,\"hasUrls\":true,\"uriFormat\":\"privacy-policy\",\"template\":\"privacy-policy/_entry\",\"language\":\"en-au\"}}','2022-05-17 23:19:12','{\"language\":null,\"mainEntityOfPage\":\"WebPage\",\"seoTitle\":\"{entry.title}\",\"siteNamePosition\":\"\",\"seoDescription\":\"\",\"seoKeywords\":\"\",\"seoImage\":\"\",\"seoImageWidth\":\"\",\"seoImageHeight\":\"\",\"seoImageDescription\":\"\",\"canonicalUrl\":\"{entry.url}\",\"robots\":\"all\",\"ogType\":\"website\",\"ogTitle\":\"{seomatic.meta.seoTitle}\",\"ogSiteNamePosition\":\"\",\"ogDescription\":\"{seomatic.meta.seoDescription}\",\"ogImage\":\"{seomatic.meta.seoImage}\",\"ogImageWidth\":\"{seomatic.meta.seoImageWidth}\",\"ogImageHeight\":\"{seomatic.meta.seoImageHeight}\",\"ogImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"twitterCard\":\"summary_large_image\",\"twitterCreator\":\"{seomatic.site.twitterHandle}\",\"twitterTitle\":\"{seomatic.meta.seoTitle}\",\"twitterSiteNamePosition\":\"\",\"twitterDescription\":\"{seomatic.meta.seoDescription}\",\"twitterImage\":\"{seomatic.meta.seoImage}\",\"twitterImageWidth\":\"{seomatic.meta.seoImageWidth}\",\"twitterImageHeight\":\"{seomatic.meta.seoImageHeight}\",\"twitterImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"inherited\":[],\"overrides\":[]}','{\"siteName\":\"NWO\",\"identity\":null,\"creator\":null,\"twitterHandle\":\"\",\"facebookProfileId\":\"\",\"facebookAppId\":\"\",\"googleSiteVerification\":\"\",\"bingSiteVerification\":\"\",\"pinterestSiteVerification\":\"\",\"facebookSiteVerification\":\"\",\"sameAsLinks\":[],\"siteLinksSearchTarget\":\"\",\"siteLinksQueryInput\":\"\",\"referrer\":\"no-referrer-when-downgrade\",\"additionalSitemapUrls\":[],\"additionalSitemapUrlsDateUpdated\":null,\"additionalSitemaps\":[]}','{\"sitemapUrls\":true,\"sitemapAssets\":true,\"sitemapFiles\":true,\"sitemapAltLinks\":true,\"sitemapChangeFreq\":\"weekly\",\"sitemapPriority\":0.5,\"sitemapLimit\":null,\"structureDepth\":null,\"sitemapImageFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"caption\",\"field\":\"\"},{\"property\":\"geo_location\",\"field\":\"\"},{\"property\":\"license\",\"field\":\"\"}],\"sitemapVideoFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"description\",\"field\":\"\"},{\"property\":\"thumbnailLoc\",\"field\":\"\"},{\"property\":\"duration\",\"field\":\"\"},{\"property\":\"category\",\"field\":\"\"}],\"inherited\":[],\"overrides\":[]}','{\"MetaTagContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"General Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContaineropengraph\":{\"data\":[],\"name\":\"Facebook\",\"description\":\"Facebook OpenGraph Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"opengraph\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainertwitter\":{\"data\":[],\"name\":\"Twitter\",\"description\":\"Twitter Card Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"twitter\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainermiscellaneous\":{\"data\":[],\"name\":\"Miscellaneous\",\"description\":\"Miscellaneous Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"miscellaneous\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaLinkContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"Link Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaLinkContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaScriptContainergeneral\":{\"data\":[],\"position\":1,\"name\":\"General\",\"description\":\"Script Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaScriptContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaJsonLdContainergeneral\":{\"data\":{\"mainEntityOfPage\":{\"context\":\"http://schema.org\",\"type\":\"{{ seomatic.meta.mainEntityOfPage }}\",\"id\":null,\"graph\":null,\"include\":true,\"key\":\"mainEntityOfPage\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null,\"lastReviewed\":null,\"specialty\":null,\"primaryImageOfPage\":null,\"significantLink\":null,\"reviewedBy\":null,\"mainContentOfPage\":null,\"relatedLink\":null,\"speakable\":null,\"breadcrumb\":null,\"significantLinks\":null,\"teaches\":null,\"educationalLevel\":null,\"abstract\":null,\"creativeWorkStatus\":null,\"expires\":null,\"contentReferenceTime\":null,\"material\":null,\"review\":null,\"fileFormat\":null,\"text\":null,\"translator\":null,\"award\":null,\"assesses\":null,\"copyrightNotice\":null,\"schemaVersion\":null,\"countryOfOrigin\":null,\"pattern\":null,\"accountablePerson\":null,\"funding\":null,\"educationalUse\":null,\"genre\":null,\"keywords\":null,\"position\":null,\"accessibilityHazard\":null,\"alternativeHeadline\":null,\"audience\":null,\"offers\":null,\"locationCreated\":null,\"associatedMedia\":null,\"materialExtent\":null,\"mainEntity\":null,\"copyrightHolder\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"awards\":null,\"contentLocation\":null,\"sdDatePublished\":null,\"producer\":null,\"spatial\":null,\"publisher\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"sourceOrganization\":null,\"character\":null,\"funder\":null,\"exampleOfWork\":null,\"usageInfo\":null,\"provider\":null,\"sdPublisher\":null,\"comment\":null,\"accessibilityFeature\":null,\"publication\":null,\"translationOfWork\":null,\"interactivityType\":null,\"commentCount\":null,\"accessMode\":null,\"aggregateRating\":null,\"timeRequired\":null,\"typicalAgeRange\":null,\"interactionStatistic\":null,\"copyrightYear\":\"{{ entry.postDate | date(\\\"Y\\\") }}\",\"isBasedOn\":null,\"workExample\":null,\"publishingPrinciples\":null,\"discussionUrl\":null,\"releasedEvent\":null,\"dateCreated\":false,\"workTranslation\":null,\"editor\":null,\"creditText\":null,\"recordedAt\":null,\"editEIDR\":null,\"author\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"dateModified\":\"{{ entry.dateUpdated |atom }}\",\"sponsor\":null,\"accessibilitySummary\":null,\"encodingFormat\":null,\"maintainer\":null,\"educationalAlignment\":null,\"acquireLicensePage\":null,\"isAccessibleForFree\":null,\"datePublished\":\"{{ entry.postDate |atom }}\",\"spatialCoverage\":null,\"sdLicense\":null,\"conditionsOfAccess\":null,\"correction\":null,\"contentRating\":null,\"size\":null,\"isPartOf\":null,\"temporal\":null,\"thumbnailUrl\":null,\"inLanguage\":\"{{ seomatic.meta.language }}\",\"license\":null,\"creator\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"reviews\":null,\"about\":null,\"isFamilyFriendly\":null,\"headline\":\"{{ seomatic.meta.seoTitle }}\",\"accessibilityAPI\":null,\"publisherImprint\":null,\"isBasedOnUrl\":null,\"encodings\":null,\"interpretedAsClaim\":null,\"accessibilityControl\":null,\"citation\":null,\"version\":null,\"archivedAt\":null,\"learningResourceType\":null,\"encoding\":null,\"audio\":null,\"mentions\":null,\"accessModeSufficient\":null,\"hasPart\":null,\"temporalCoverage\":null,\"contributor\":null,\"video\":null,\"mainEntityOfPage\":\"{{ seomatic.meta.canonicalUrl }}\",\"alternateName\":null,\"name\":\"{{ seomatic.meta.seoTitle }}\",\"potentialAction\":{\"type\":\"SearchAction\",\"target\":\"{{ seomatic.site.siteLinksSearchTarget }}\",\"query-input\":\"{{ seomatic.helper.siteLinksQueryInput() }}\"},\"image\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.meta.seoImage }}\"},\"url\":\"{{ seomatic.meta.canonicalUrl }}\",\"description\":\"{{ seomatic.meta.seoDescription }}\",\"subjectOf\":null,\"additionalType\":null,\"disambiguatingDescription\":null,\"sameAs\":null,\"identifier\":null}},\"name\":\"General\",\"description\":\"JsonLd Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaJsonLdContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTitleContainergeneral\":{\"data\":{\"title\":{\"title\":\"{{ seomatic.meta.seoTitle }}\",\"siteName\":\"{{ seomatic.site.siteName }}\",\"siteNamePosition\":\"{{ seomatic.meta.siteNamePosition }}\",\"separatorChar\":\"{{ seomatic.config.separatorChar }}\",\"include\":true,\"key\":\"title\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]}},\"name\":\"General\",\"description\":\"Meta Title Tag\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTitleContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false}}','[]','{\"data\":[],\"name\":null,\"description\":null,\"class\":\"nystudio107\\\\seomatic\\\\models\\\\FrontendTemplateContainer\",\"handle\":null,\"include\":true,\"dependencies\":null,\"clearCache\":false}','{\"siteType\":\"CreativeWork\",\"siteSubType\":\"WebSite\",\"siteSpecificType\":\"\",\"seoTitleSource\":\"fromCustom\",\"seoTitleField\":\"\",\"siteNamePositionSource\":\"fromCustom\",\"seoDescriptionSource\":\"fromCustom\",\"seoDescriptionField\":\"\",\"seoKeywordsSource\":\"fromCustom\",\"seoKeywordsField\":\"\",\"seoImageIds\":[],\"seoImageSource\":\"fromAsset\",\"seoImageField\":\"\",\"seoImageTransform\":true,\"seoImageTransformMode\":\"crop\",\"seoImageDescriptionSource\":\"fromCustom\",\"seoImageDescriptionField\":\"\",\"twitterCreatorSource\":\"sameAsSite\",\"twitterCreatorField\":\"\",\"twitterTitleSource\":\"sameAsSeo\",\"twitterTitleField\":\"\",\"twitterSiteNamePositionSource\":\"fromCustom\",\"twitterDescriptionSource\":\"sameAsSeo\",\"twitterDescriptionField\":\"\",\"twitterImageIds\":[],\"twitterImageSource\":\"sameAsSeo\",\"twitterImageField\":\"\",\"twitterImageTransform\":true,\"twitterImageTransformMode\":\"crop\",\"twitterImageDescriptionSource\":\"sameAsSeo\",\"twitterImageDescriptionField\":\"\",\"ogTitleSource\":\"sameAsSeo\",\"ogTitleField\":\"\",\"ogSiteNamePositionSource\":\"fromCustom\",\"ogDescriptionSource\":\"sameAsSeo\",\"ogDescriptionField\":\"\",\"ogImageIds\":[],\"ogImageSource\":\"sameAsSeo\",\"ogImageField\":\"\",\"ogImageTransform\":true,\"ogImageTransformMode\":\"crop\",\"ogImageDescriptionSource\":\"sameAsSeo\",\"ogImageDescriptionField\":\"\"}'),(20,'2021-12-10 01:00:00','2023-03-01 03:27:05','1773f3e8-2df6-4493-b388-dff84cd897b6','1.0.30','section',15,'Landing pages','landingPages','channel',NULL,'landing-pages/_entry',1,'{\"1\":{\"id\":15,\"sectionId\":15,\"siteId\":1,\"enabledByDefault\":true,\"hasUrls\":true,\"uriFormat\":\"lp/{slug}\",\"template\":\"landing-pages/_entry\",\"language\":\"en-au\"}}','2023-03-01 03:27:04','{\"language\":null,\"mainEntityOfPage\":\"WebSite\",\"seoTitle\":\"{{ seomatic.helper.extractTextFromField(entry.seoTitle) }}\",\"siteNamePosition\":\"before\",\"seoDescription\":\"{{ seomatic.helper.extractTextFromField(entry.seoDescription) }}\",\"seoKeywords\":\"{{ seomatic.helper.extractKeywords(seomatic.helper.extractTextFromField(entry.seoKeywords)) }}\",\"seoImage\":\"{{ seomatic.helper.socialTransform(entry.seoImage.collect()[0], \\\"base\\\", 1, \\\"crop\\\") }}\",\"seoImageWidth\":\"{{ seomatic.helper.socialTransformWidth(entry.seoImage.collect()[0], \\\"base\\\", 1, \\\"crop\\\") }}\",\"seoImageHeight\":\"{{ seomatic.helper.socialTransformHeight(entry.seoImage.collect()[0], \\\"base\\\", 1, \\\"crop\\\") }}\",\"seoImageDescription\":\"{{ seomatic.helper.extractSummary(seomatic.helper.extractTextFromField(entry.seoImageDescription)) }}\",\"canonicalUrl\":\"{entry.url}\",\"robots\":\"all\",\"ogType\":\"website\",\"ogTitle\":\"{seomatic.meta.seoTitle}\",\"ogSiteNamePosition\":\"\",\"ogDescription\":\"{seomatic.meta.seoDescription}\",\"ogImage\":\"{{ seomatic.helper.socialTransform(entry.seoImage.collect()[0], \\\"facebook\\\", 1, \\\"crop\\\") }}\",\"ogImageWidth\":\"{{ seomatic.helper.socialTransformWidth(entry.seoImage.collect()[0], \\\"facebook\\\", 1, \\\"crop\\\") }}\",\"ogImageHeight\":\"{{ seomatic.helper.socialTransformHeight(entry.seoImage.collect()[0], \\\"facebook\\\", 1, \\\"crop\\\") }}\",\"ogImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"twitterCard\":\"summary_large_image\",\"twitterCreator\":\"{seomatic.site.twitterHandle}\",\"twitterTitle\":\"{seomatic.meta.seoTitle}\",\"twitterSiteNamePosition\":\"\",\"twitterDescription\":\"{seomatic.meta.seoDescription}\",\"twitterImage\":\"{{ seomatic.helper.socialTransform(entry.seoImage.collect()[0], seomatic.helper.twitterTransform(), 1, \\\"crop\\\") }}\",\"twitterImageWidth\":\"{{ seomatic.helper.socialTransformWidth(entry.seoImage.collect()[0], seomatic.helper.twitterTransform(), 1, \\\"crop\\\") }}\",\"twitterImageHeight\":\"{{ seomatic.helper.socialTransformHeight(entry.seoImage.collect()[0], seomatic.helper.twitterTransform(), 1, \\\"crop\\\") }}\",\"twitterImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"inherited\":[],\"overrides\":[]}','{\"siteName\":\"NWO\",\"identity\":null,\"creator\":null,\"twitterHandle\":\"\",\"facebookProfileId\":\"\",\"facebookAppId\":\"\",\"googleSiteVerification\":\"\",\"bingSiteVerification\":\"\",\"pinterestSiteVerification\":\"\",\"facebookSiteVerification\":\"\",\"sameAsLinks\":[],\"siteLinksSearchTarget\":\"\",\"siteLinksQueryInput\":\"\",\"referrer\":\"no-referrer-when-downgrade\",\"additionalSitemapUrls\":[],\"additionalSitemapUrlsDateUpdated\":null,\"additionalSitemaps\":[]}','{\"sitemapUrls\":true,\"sitemapAssets\":true,\"sitemapFiles\":true,\"sitemapAltLinks\":true,\"sitemapChangeFreq\":\"weekly\",\"sitemapPriority\":0.5,\"sitemapLimit\":null,\"structureDepth\":null,\"sitemapImageFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"caption\",\"field\":\"\"},{\"property\":\"geo_location\",\"field\":\"\"},{\"property\":\"license\",\"field\":\"\"}],\"sitemapVideoFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"description\",\"field\":\"\"},{\"property\":\"thumbnailLoc\",\"field\":\"\"},{\"property\":\"duration\",\"field\":\"\"},{\"property\":\"category\",\"field\":\"\"}],\"inherited\":[],\"overrides\":[]}','{\"MetaTagContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"General Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContaineropengraph\":{\"data\":[],\"name\":\"Facebook\",\"description\":\"Facebook OpenGraph Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"opengraph\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainertwitter\":{\"data\":[],\"name\":\"Twitter\",\"description\":\"Twitter Card Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"twitter\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainermiscellaneous\":{\"data\":[],\"name\":\"Miscellaneous\",\"description\":\"Miscellaneous Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"miscellaneous\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaLinkContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"Link Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaLinkContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaScriptContainergeneral\":{\"data\":[],\"position\":1,\"name\":\"General\",\"description\":\"Script Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaScriptContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaJsonLdContainergeneral\":{\"data\":{\"mainEntityOfPage\":{\"context\":\"http://schema.org\",\"type\":\"{{ seomatic.meta.mainEntityOfPage }}\",\"id\":null,\"graph\":null,\"include\":true,\"key\":\"mainEntityOfPage\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null,\"issn\":null,\"teaches\":null,\"educationalLevel\":null,\"abstract\":null,\"creativeWorkStatus\":null,\"expires\":null,\"contentReferenceTime\":null,\"material\":null,\"review\":null,\"fileFormat\":null,\"text\":null,\"translator\":null,\"award\":null,\"assesses\":null,\"copyrightNotice\":null,\"schemaVersion\":null,\"countryOfOrigin\":null,\"pattern\":null,\"accountablePerson\":null,\"funding\":null,\"educationalUse\":null,\"genre\":null,\"keywords\":null,\"position\":null,\"accessibilityHazard\":null,\"alternativeHeadline\":null,\"audience\":null,\"offers\":null,\"locationCreated\":null,\"associatedMedia\":null,\"materialExtent\":null,\"mainEntity\":null,\"copyrightHolder\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"awards\":null,\"contentLocation\":null,\"sdDatePublished\":null,\"producer\":null,\"spatial\":null,\"publisher\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"sourceOrganization\":null,\"character\":null,\"funder\":null,\"exampleOfWork\":null,\"usageInfo\":null,\"provider\":null,\"sdPublisher\":null,\"comment\":null,\"accessibilityFeature\":null,\"publication\":null,\"translationOfWork\":null,\"interactivityType\":null,\"commentCount\":null,\"accessMode\":null,\"aggregateRating\":null,\"timeRequired\":null,\"typicalAgeRange\":null,\"interactionStatistic\":null,\"copyrightYear\":\"{{ entry.postDate | date(\\\"Y\\\") }}\",\"isBasedOn\":null,\"workExample\":null,\"publishingPrinciples\":null,\"discussionUrl\":null,\"releasedEvent\":null,\"dateCreated\":false,\"workTranslation\":null,\"editor\":null,\"creditText\":null,\"recordedAt\":null,\"editEIDR\":null,\"author\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"dateModified\":\"{{ entry.dateUpdated |atom }}\",\"sponsor\":null,\"accessibilitySummary\":null,\"encodingFormat\":null,\"maintainer\":null,\"educationalAlignment\":null,\"acquireLicensePage\":null,\"isAccessibleForFree\":null,\"datePublished\":\"{{ entry.postDate |atom }}\",\"spatialCoverage\":null,\"sdLicense\":null,\"conditionsOfAccess\":null,\"correction\":null,\"contentRating\":null,\"size\":null,\"isPartOf\":null,\"temporal\":null,\"thumbnailUrl\":null,\"inLanguage\":\"{{ seomatic.meta.language }}\",\"license\":null,\"creator\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"reviews\":null,\"about\":null,\"isFamilyFriendly\":null,\"headline\":\"{{ seomatic.meta.seoTitle }}\",\"accessibilityAPI\":null,\"publisherImprint\":null,\"isBasedOnUrl\":null,\"encodings\":null,\"interpretedAsClaim\":null,\"accessibilityControl\":null,\"citation\":null,\"version\":null,\"archivedAt\":null,\"learningResourceType\":null,\"encoding\":null,\"audio\":null,\"mentions\":null,\"accessModeSufficient\":null,\"hasPart\":null,\"temporalCoverage\":null,\"contributor\":null,\"video\":null,\"mainEntityOfPage\":\"{{ seomatic.meta.canonicalUrl }}\",\"alternateName\":null,\"name\":\"{{ seomatic.meta.seoTitle }}\",\"potentialAction\":{\"type\":\"SearchAction\",\"target\":\"{{ seomatic.site.siteLinksSearchTarget }}\",\"query-input\":\"{{ seomatic.helper.siteLinksQueryInput() }}\"},\"image\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.meta.seoImage }}\"},\"url\":\"{{ seomatic.meta.canonicalUrl }}\",\"description\":\"{{ seomatic.meta.seoDescription }}\",\"subjectOf\":null,\"additionalType\":null,\"disambiguatingDescription\":null,\"sameAs\":null,\"identifier\":null}},\"name\":\"General\",\"description\":\"JsonLd Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaJsonLdContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTitleContainergeneral\":{\"data\":{\"title\":{\"title\":\"{{ seomatic.meta.seoTitle }}\",\"siteName\":\"{{ seomatic.site.siteName }}\",\"siteNamePosition\":\"{{ seomatic.meta.siteNamePosition }}\",\"separatorChar\":\"{{ seomatic.config.separatorChar }}\",\"include\":true,\"key\":\"title\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]}},\"name\":\"General\",\"description\":\"Meta Title Tag\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTitleContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false}}','[]','{\"data\":[],\"name\":null,\"description\":null,\"class\":\"nystudio107\\\\seomatic\\\\models\\\\FrontendTemplateContainer\",\"handle\":null,\"include\":true,\"dependencies\":null,\"clearCache\":false}','{\"siteType\":\"CreativeWork\",\"siteSubType\":\"WebSite\",\"siteSpecificType\":\"\",\"seoTitleSource\":\"fromField\",\"seoTitleField\":\"seoTitle\",\"siteNamePositionSource\":\"fromCustom\",\"seoDescriptionSource\":\"fromField\",\"seoDescriptionField\":\"seoDescription\",\"seoKeywordsSource\":\"keywordsFromField\",\"seoKeywordsField\":\"seoKeywords\",\"seoImageIds\":\"\",\"seoImageSource\":\"fromField\",\"seoImageField\":\"seoImage\",\"seoImageTransform\":\"1\",\"seoImageTransformMode\":\"crop\",\"seoImageDescriptionSource\":\"summaryFromField\",\"seoImageDescriptionField\":\"seoImageDescription\",\"twitterCreatorSource\":\"sameAsSite\",\"twitterCreatorField\":\"\",\"twitterTitleSource\":\"sameAsSeo\",\"twitterTitleField\":\"\",\"twitterSiteNamePositionSource\":\"fromCustom\",\"twitterDescriptionSource\":\"sameAsSeo\",\"twitterDescriptionField\":\"\",\"twitterImageIds\":\"\",\"twitterImageSource\":\"sameAsSeo\",\"twitterImageField\":\"seoImage\",\"twitterImageTransform\":\"1\",\"twitterImageTransformMode\":\"crop\",\"twitterImageDescriptionSource\":\"sameAsSeo\",\"twitterImageDescriptionField\":\"\",\"ogTitleSource\":\"sameAsSeo\",\"ogTitleField\":\"\",\"ogSiteNamePositionSource\":\"fromCustom\",\"ogDescriptionSource\":\"sameAsSeo\",\"ogDescriptionField\":\"\",\"ogImageIds\":\"\",\"ogImageSource\":\"sameAsSeo\",\"ogImageField\":\"seoImage\",\"ogImageTransform\":\"1\",\"ogImageTransformMode\":\"crop\",\"ogImageDescriptionSource\":\"sameAsSeo\",\"ogImageDescriptionField\":\"\"}'),(22,'2022-06-05 23:22:33','2022-10-21 04:18:21','529fb1cf-6c5d-40ec-9a83-3fc971c43b58','1.0.30','section',17,'Careers','careers','single',NULL,'careers/_entry',1,'{\"1\":{\"id\":17,\"sectionId\":17,\"siteId\":1,\"enabledByDefault\":true,\"hasUrls\":true,\"uriFormat\":\"careers\",\"template\":\"careers/_entry\",\"language\":\"en-au\"}}','2022-10-21 04:18:21','{\"language\":null,\"mainEntityOfPage\":\"WebPage\",\"seoTitle\":\"{entry.title}\",\"siteNamePosition\":\"\",\"seoDescription\":\"\",\"seoKeywords\":\"\",\"seoImage\":\"\",\"seoImageWidth\":\"\",\"seoImageHeight\":\"\",\"seoImageDescription\":\"\",\"canonicalUrl\":\"{entry.url}\",\"robots\":\"all\",\"ogType\":\"website\",\"ogTitle\":\"{seomatic.meta.seoTitle}\",\"ogSiteNamePosition\":\"\",\"ogDescription\":\"{seomatic.meta.seoDescription}\",\"ogImage\":\"{seomatic.meta.seoImage}\",\"ogImageWidth\":\"{seomatic.meta.seoImageWidth}\",\"ogImageHeight\":\"{seomatic.meta.seoImageHeight}\",\"ogImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"twitterCard\":\"summary_large_image\",\"twitterCreator\":\"{seomatic.site.twitterHandle}\",\"twitterTitle\":\"{seomatic.meta.seoTitle}\",\"twitterSiteNamePosition\":\"\",\"twitterDescription\":\"{seomatic.meta.seoDescription}\",\"twitterImage\":\"{seomatic.meta.seoImage}\",\"twitterImageWidth\":\"{seomatic.meta.seoImageWidth}\",\"twitterImageHeight\":\"{seomatic.meta.seoImageHeight}\",\"twitterImageDescription\":\"{seomatic.meta.seoImageDescription}\",\"inherited\":[],\"overrides\":[]}','{\"siteName\":\"NWO Starter\",\"identity\":null,\"creator\":null,\"twitterHandle\":\"\",\"facebookProfileId\":\"\",\"facebookAppId\":\"\",\"googleSiteVerification\":\"\",\"bingSiteVerification\":\"\",\"pinterestSiteVerification\":\"\",\"facebookSiteVerification\":\"\",\"sameAsLinks\":[],\"siteLinksSearchTarget\":\"\",\"siteLinksQueryInput\":\"\",\"referrer\":\"no-referrer-when-downgrade\",\"additionalSitemapUrls\":[],\"additionalSitemapUrlsDateUpdated\":null,\"additionalSitemaps\":[]}','{\"sitemapUrls\":true,\"sitemapAssets\":true,\"sitemapFiles\":true,\"sitemapAltLinks\":true,\"sitemapChangeFreq\":\"weekly\",\"sitemapPriority\":0.5,\"sitemapLimit\":null,\"structureDepth\":null,\"sitemapImageFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"caption\",\"field\":\"\"},{\"property\":\"geo_location\",\"field\":\"\"},{\"property\":\"license\",\"field\":\"\"}],\"sitemapVideoFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"description\",\"field\":\"\"},{\"property\":\"thumbnailLoc\",\"field\":\"\"},{\"property\":\"duration\",\"field\":\"\"},{\"property\":\"category\",\"field\":\"\"}],\"inherited\":[],\"overrides\":[]}','{\"MetaTagContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"General Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContaineropengraph\":{\"data\":[],\"name\":\"Facebook\",\"description\":\"Facebook OpenGraph Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"opengraph\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainertwitter\":{\"data\":[],\"name\":\"Twitter\",\"description\":\"Twitter Card Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"twitter\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainermiscellaneous\":{\"data\":[],\"name\":\"Miscellaneous\",\"description\":\"Miscellaneous Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"miscellaneous\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaLinkContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"Link Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaLinkContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaScriptContainergeneral\":{\"data\":[],\"position\":1,\"name\":\"General\",\"description\":\"Script Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaScriptContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaJsonLdContainergeneral\":{\"data\":{\"mainEntityOfPage\":{\"context\":\"http://schema.org\",\"type\":\"{{ seomatic.meta.mainEntityOfPage }}\",\"id\":null,\"graph\":null,\"include\":true,\"key\":\"mainEntityOfPage\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null,\"lastReviewed\":null,\"specialty\":null,\"primaryImageOfPage\":null,\"significantLink\":null,\"reviewedBy\":null,\"mainContentOfPage\":null,\"relatedLink\":null,\"speakable\":null,\"breadcrumb\":null,\"significantLinks\":null,\"teaches\":null,\"educationalLevel\":null,\"abstract\":null,\"creativeWorkStatus\":null,\"expires\":null,\"contentReferenceTime\":null,\"material\":null,\"review\":null,\"fileFormat\":null,\"text\":null,\"translator\":null,\"award\":null,\"assesses\":null,\"copyrightNotice\":null,\"schemaVersion\":null,\"countryOfOrigin\":null,\"pattern\":null,\"accountablePerson\":null,\"funding\":null,\"educationalUse\":null,\"genre\":null,\"keywords\":null,\"position\":null,\"accessibilityHazard\":null,\"alternativeHeadline\":null,\"audience\":null,\"offers\":null,\"locationCreated\":null,\"associatedMedia\":null,\"materialExtent\":null,\"mainEntity\":null,\"copyrightHolder\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"awards\":null,\"contentLocation\":null,\"sdDatePublished\":null,\"producer\":null,\"spatial\":null,\"publisher\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"sourceOrganization\":null,\"character\":null,\"funder\":null,\"exampleOfWork\":null,\"usageInfo\":null,\"provider\":null,\"sdPublisher\":null,\"comment\":null,\"accessibilityFeature\":null,\"publication\":null,\"translationOfWork\":null,\"interactivityType\":null,\"commentCount\":null,\"accessMode\":null,\"aggregateRating\":null,\"timeRequired\":null,\"typicalAgeRange\":null,\"interactionStatistic\":null,\"copyrightYear\":\"{{ entry.postDate | date(\\\"Y\\\") }}\",\"isBasedOn\":null,\"workExample\":null,\"publishingPrinciples\":null,\"discussionUrl\":null,\"releasedEvent\":null,\"dateCreated\":false,\"workTranslation\":null,\"editor\":null,\"creditText\":null,\"recordedAt\":null,\"editEIDR\":null,\"author\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"dateModified\":\"{{ entry.dateUpdated |atom }}\",\"sponsor\":null,\"accessibilitySummary\":null,\"encodingFormat\":null,\"maintainer\":null,\"educationalAlignment\":null,\"acquireLicensePage\":null,\"isAccessibleForFree\":null,\"datePublished\":\"{{ entry.postDate |atom }}\",\"spatialCoverage\":null,\"sdLicense\":null,\"conditionsOfAccess\":null,\"correction\":null,\"contentRating\":null,\"size\":null,\"isPartOf\":null,\"temporal\":null,\"thumbnailUrl\":null,\"inLanguage\":\"{{ seomatic.meta.language }}\",\"license\":null,\"creator\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"reviews\":null,\"about\":null,\"isFamilyFriendly\":null,\"headline\":\"{{ seomatic.meta.seoTitle }}\",\"accessibilityAPI\":null,\"publisherImprint\":null,\"isBasedOnUrl\":null,\"encodings\":null,\"interpretedAsClaim\":null,\"accessibilityControl\":null,\"citation\":null,\"version\":null,\"archivedAt\":null,\"learningResourceType\":null,\"encoding\":null,\"audio\":null,\"mentions\":null,\"accessModeSufficient\":null,\"hasPart\":null,\"temporalCoverage\":null,\"contributor\":null,\"video\":null,\"mainEntityOfPage\":\"{{ seomatic.meta.canonicalUrl }}\",\"alternateName\":null,\"name\":\"{{ seomatic.meta.seoTitle }}\",\"potentialAction\":{\"type\":\"SearchAction\",\"target\":\"{{ seomatic.site.siteLinksSearchTarget }}\",\"query-input\":\"{{ seomatic.helper.siteLinksQueryInput() }}\"},\"image\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.meta.seoImage }}\"},\"url\":\"{{ seomatic.meta.canonicalUrl }}\",\"description\":\"{{ seomatic.meta.seoDescription }}\",\"subjectOf\":null,\"additionalType\":null,\"disambiguatingDescription\":null,\"sameAs\":null,\"identifier\":null}},\"name\":\"General\",\"description\":\"JsonLd Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaJsonLdContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTitleContainergeneral\":{\"data\":{\"title\":{\"title\":\"{{ seomatic.meta.seoTitle }}\",\"siteName\":\"{{ seomatic.site.siteName }}\",\"siteNamePosition\":\"{{ seomatic.meta.siteNamePosition }}\",\"separatorChar\":\"{{ seomatic.config.separatorChar }}\",\"include\":true,\"key\":\"title\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]}},\"name\":\"General\",\"description\":\"Meta Title Tag\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTitleContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false}}','[]','{\"data\":[],\"name\":null,\"description\":null,\"class\":\"nystudio107\\\\seomatic\\\\models\\\\FrontendTemplateContainer\",\"handle\":null,\"include\":true,\"dependencies\":null,\"clearCache\":false}','{\"siteType\":\"CreativeWork\",\"siteSubType\":\"WebSite\",\"siteSpecificType\":\"\",\"seoTitleSource\":\"fromCustom\",\"seoTitleField\":\"\",\"siteNamePositionSource\":\"fromCustom\",\"seoDescriptionSource\":\"fromCustom\",\"seoDescriptionField\":\"\",\"seoKeywordsSource\":\"fromCustom\",\"seoKeywordsField\":\"\",\"seoImageIds\":[],\"seoImageSource\":\"fromAsset\",\"seoImageField\":\"\",\"seoImageTransform\":true,\"seoImageTransformMode\":\"crop\",\"seoImageDescriptionSource\":\"fromCustom\",\"seoImageDescriptionField\":\"\",\"twitterCreatorSource\":\"sameAsSite\",\"twitterCreatorField\":\"\",\"twitterTitleSource\":\"sameAsSeo\",\"twitterTitleField\":\"\",\"twitterSiteNamePositionSource\":\"fromCustom\",\"twitterDescriptionSource\":\"sameAsSeo\",\"twitterDescriptionField\":\"\",\"twitterImageIds\":[],\"twitterImageSource\":\"sameAsSeo\",\"twitterImageField\":\"\",\"twitterImageTransform\":true,\"twitterImageTransformMode\":\"crop\",\"twitterImageDescriptionSource\":\"sameAsSeo\",\"twitterImageDescriptionField\":\"\",\"ogTitleSource\":\"sameAsSeo\",\"ogTitleField\":\"\",\"ogSiteNamePositionSource\":\"fromCustom\",\"ogDescriptionSource\":\"sameAsSeo\",\"ogDescriptionField\":\"\",\"ogImageIds\":[],\"ogImageSource\":\"sameAsSeo\",\"ogImageField\":\"\",\"ogImageTransform\":true,\"ogImageTransformMode\":\"crop\",\"ogImageDescriptionSource\":\"sameAsSeo\",\"ogImageDescriptionField\":\"\"}'),(23,'2023-01-10 00:12:41','2023-01-10 00:58:09','a15ca2da-34bd-42e4-9111-0572d950f180','1.0.30','section',18,'Update details copy','updateDetailsCopy','single',NULL,'update-details/_entry',1,'{\"1\":{\"id\":18,\"sectionId\":18,\"siteId\":1,\"enabledByDefault\":true,\"hasUrls\":true,\"uriFormat\":\"update-details-copy\",\"template\":\"update-details/_entry\",\"language\":\"en-au\"}}','2023-01-10 00:58:08','{\"language\":null,\"mainEntityOfPage\":\"WebPage\",\"seoTitle\":\"{{ entry.title }}\",\"siteNamePosition\":\"\",\"seoDescription\":\"\",\"seoKeywords\":\"\",\"seoImage\":\"\",\"seoImageWidth\":\"\",\"seoImageHeight\":\"\",\"seoImageDescription\":\"\",\"canonicalUrl\":\"{{ entry.url }}\",\"robots\":\"all\",\"ogType\":\"website\",\"ogTitle\":\"{{ seomatic.meta.seoTitle }}\",\"ogSiteNamePosition\":\"\",\"ogDescription\":\"{{ seomatic.meta.seoDescription }}\",\"ogImage\":\"{{ seomatic.meta.seoImage }}\",\"ogImageWidth\":\"{{ seomatic.meta.seoImageWidth }}\",\"ogImageHeight\":\"{{ seomatic.meta.seoImageHeight }}\",\"ogImageDescription\":\"{{ seomatic.meta.seoImageDescription }}\",\"twitterCard\":\"summary_large_image\",\"twitterCreator\":\"{{ seomatic.site.twitterHandle }}\",\"twitterTitle\":\"{{ seomatic.meta.seoTitle }}\",\"twitterSiteNamePosition\":\"\",\"twitterDescription\":\"{{ seomatic.meta.seoDescription }}\",\"twitterImage\":\"{{ seomatic.meta.seoImage }}\",\"twitterImageWidth\":\"{{ seomatic.meta.seoImageWidth }}\",\"twitterImageHeight\":\"{{ seomatic.meta.seoImageHeight }}\",\"twitterImageDescription\":\"{{ seomatic.meta.seoImageDescription }}\",\"inherited\":[],\"overrides\":[]}','{\"siteName\":\"NWO Starter\",\"identity\":null,\"creator\":null,\"twitterHandle\":\"\",\"facebookProfileId\":\"\",\"facebookAppId\":\"\",\"googleSiteVerification\":\"\",\"bingSiteVerification\":\"\",\"pinterestSiteVerification\":\"\",\"facebookSiteVerification\":\"\",\"sameAsLinks\":[],\"siteLinksSearchTarget\":\"\",\"siteLinksQueryInput\":\"\",\"referrer\":\"no-referrer-when-downgrade\",\"additionalSitemapUrls\":[],\"additionalSitemapUrlsDateUpdated\":null,\"additionalSitemaps\":[]}','{\"sitemapUrls\":true,\"sitemapAssets\":true,\"sitemapFiles\":true,\"sitemapAltLinks\":true,\"sitemapChangeFreq\":\"weekly\",\"sitemapPriority\":0.5,\"sitemapLimit\":null,\"structureDepth\":null,\"sitemapImageFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"caption\",\"field\":\"\"},{\"property\":\"geo_location\",\"field\":\"\"},{\"property\":\"license\",\"field\":\"\"}],\"sitemapVideoFieldMap\":[{\"property\":\"title\",\"field\":\"title\"},{\"property\":\"description\",\"field\":\"\"},{\"property\":\"thumbnailLoc\",\"field\":\"\"},{\"property\":\"duration\",\"field\":\"\"},{\"property\":\"category\",\"field\":\"\"}],\"inherited\":[],\"overrides\":[]}','{\"MetaTagContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"General Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContaineropengraph\":{\"data\":[],\"name\":\"Facebook\",\"description\":\"Facebook OpenGraph Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"opengraph\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainertwitter\":{\"data\":[],\"name\":\"Twitter\",\"description\":\"Twitter Card Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"twitter\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTagContainermiscellaneous\":{\"data\":[],\"name\":\"Miscellaneous\",\"description\":\"Miscellaneous Meta Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTagContainer\",\"handle\":\"miscellaneous\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaLinkContainergeneral\":{\"data\":[],\"name\":\"General\",\"description\":\"Link Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaLinkContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaScriptContainergeneral\":{\"data\":[],\"position\":1,\"name\":\"General\",\"description\":\"Script Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaScriptContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaJsonLdContainergeneral\":{\"data\":{\"mainEntityOfPage\":{\"context\":\"http://schema.org\",\"type\":\"{{ seomatic.meta.mainEntityOfPage }}\",\"id\":null,\"graph\":null,\"include\":true,\"key\":\"mainEntityOfPage\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[],\"nonce\":null,\"lastReviewed\":null,\"specialty\":null,\"primaryImageOfPage\":null,\"significantLink\":null,\"reviewedBy\":null,\"mainContentOfPage\":null,\"relatedLink\":null,\"speakable\":null,\"breadcrumb\":null,\"significantLinks\":null,\"teaches\":null,\"educationalLevel\":null,\"abstract\":null,\"creativeWorkStatus\":null,\"expires\":null,\"contentReferenceTime\":null,\"material\":null,\"review\":null,\"fileFormat\":null,\"text\":null,\"translator\":null,\"award\":null,\"assesses\":null,\"copyrightNotice\":null,\"schemaVersion\":null,\"countryOfOrigin\":null,\"pattern\":null,\"accountablePerson\":null,\"funding\":null,\"educationalUse\":null,\"genre\":null,\"keywords\":null,\"position\":null,\"accessibilityHazard\":null,\"alternativeHeadline\":null,\"audience\":null,\"offers\":null,\"locationCreated\":null,\"associatedMedia\":null,\"materialExtent\":null,\"mainEntity\":null,\"copyrightHolder\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"awards\":null,\"contentLocation\":null,\"sdDatePublished\":null,\"producer\":null,\"spatial\":null,\"publisher\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"sourceOrganization\":null,\"character\":null,\"funder\":null,\"exampleOfWork\":null,\"usageInfo\":null,\"provider\":null,\"sdPublisher\":null,\"comment\":null,\"accessibilityFeature\":null,\"publication\":null,\"translationOfWork\":null,\"interactivityType\":null,\"commentCount\":null,\"accessMode\":null,\"aggregateRating\":null,\"timeRequired\":null,\"typicalAgeRange\":null,\"interactionStatistic\":null,\"copyrightYear\":\"{{ entry.postDate | date(\\\"Y\\\") }}\",\"isBasedOn\":null,\"workExample\":null,\"publishingPrinciples\":null,\"discussionUrl\":null,\"releasedEvent\":null,\"dateCreated\":false,\"workTranslation\":null,\"editor\":null,\"creditText\":null,\"recordedAt\":null,\"editEIDR\":null,\"author\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#identity\"},\"dateModified\":\"{{ entry.dateUpdated |atom }}\",\"sponsor\":null,\"accessibilitySummary\":null,\"encodingFormat\":null,\"maintainer\":null,\"educationalAlignment\":null,\"acquireLicensePage\":null,\"isAccessibleForFree\":null,\"datePublished\":\"{{ entry.postDate |atom }}\",\"spatialCoverage\":null,\"sdLicense\":null,\"conditionsOfAccess\":null,\"correction\":null,\"contentRating\":null,\"size\":null,\"isPartOf\":null,\"temporal\":null,\"thumbnailUrl\":null,\"inLanguage\":\"{{ seomatic.meta.language }}\",\"license\":null,\"creator\":{\"id\":\"{{ parseEnv(seomatic.site.identity.genericUrl) }}#creator\"},\"reviews\":null,\"about\":null,\"isFamilyFriendly\":null,\"headline\":\"{{ seomatic.meta.seoTitle }}\",\"accessibilityAPI\":null,\"publisherImprint\":null,\"isBasedOnUrl\":null,\"encodings\":null,\"interpretedAsClaim\":null,\"accessibilityControl\":null,\"citation\":null,\"version\":null,\"archivedAt\":null,\"learningResourceType\":null,\"encoding\":null,\"audio\":null,\"mentions\":null,\"accessModeSufficient\":null,\"hasPart\":null,\"temporalCoverage\":null,\"contributor\":null,\"video\":null,\"mainEntityOfPage\":\"{{ seomatic.meta.canonicalUrl }}\",\"alternateName\":null,\"name\":\"{{ seomatic.meta.seoTitle }}\",\"potentialAction\":{\"type\":\"SearchAction\",\"target\":\"{{ seomatic.site.siteLinksSearchTarget }}\",\"query-input\":\"{{ seomatic.helper.siteLinksQueryInput() }}\"},\"image\":{\"type\":\"ImageObject\",\"url\":\"{{ seomatic.meta.seoImage }}\"},\"url\":\"{{ seomatic.meta.canonicalUrl }}\",\"description\":\"{{ seomatic.meta.seoDescription }}\",\"subjectOf\":null,\"additionalType\":null,\"disambiguatingDescription\":null,\"sameAs\":null,\"identifier\":null}},\"name\":\"General\",\"description\":\"JsonLd Tags\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaJsonLdContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false},\"MetaTitleContainergeneral\":{\"data\":{\"title\":{\"title\":\"{{ seomatic.meta.seoTitle }}\",\"siteName\":\"{{ seomatic.site.siteName }}\",\"siteNamePosition\":\"{{ seomatic.meta.siteNamePosition }}\",\"separatorChar\":\"{{ seomatic.config.separatorChar }}\",\"include\":true,\"key\":\"title\",\"environment\":null,\"dependencies\":null,\"tagAttrs\":[]}},\"name\":\"General\",\"description\":\"Meta Title Tag\",\"class\":\"nystudio107\\\\seomatic\\\\models\\\\MetaTitleContainer\",\"handle\":\"general\",\"include\":true,\"dependencies\":[],\"clearCache\":false}}','[]','{\"data\":[],\"name\":null,\"description\":null,\"class\":\"nystudio107\\\\seomatic\\\\models\\\\FrontendTemplateContainer\",\"handle\":null,\"include\":true,\"dependencies\":null,\"clearCache\":false}','{\"siteType\":\"CreativeWork\",\"siteSubType\":\"WebSite\",\"siteSpecificType\":\"\",\"seoTitleSource\":\"fromCustom\",\"seoTitleField\":\"\",\"siteNamePositionSource\":\"fromCustom\",\"seoDescriptionSource\":\"fromCustom\",\"seoDescriptionField\":\"\",\"seoKeywordsSource\":\"fromCustom\",\"seoKeywordsField\":\"\",\"seoImageIds\":[],\"seoImageSource\":\"fromAsset\",\"seoImageField\":\"\",\"seoImageTransform\":true,\"seoImageTransformMode\":\"crop\",\"seoImageDescriptionSource\":\"fromCustom\",\"seoImageDescriptionField\":\"\",\"twitterCreatorSource\":\"sameAsSite\",\"twitterCreatorField\":\"\",\"twitterTitleSource\":\"sameAsSeo\",\"twitterTitleField\":\"\",\"twitterSiteNamePositionSource\":\"fromCustom\",\"twitterDescriptionSource\":\"sameAsSeo\",\"twitterDescriptionField\":\"\",\"twitterImageIds\":[],\"twitterImageSource\":\"sameAsSeo\",\"twitterImageField\":\"\",\"twitterImageTransform\":true,\"twitterImageTransformMode\":\"crop\",\"twitterImageDescriptionSource\":\"sameAsSeo\",\"twitterImageDescriptionField\":\"\",\"ogTitleSource\":\"sameAsSeo\",\"ogTitleField\":\"\",\"ogSiteNamePositionSource\":\"fromCustom\",\"ogDescriptionSource\":\"sameAsSeo\",\"ogDescriptionField\":\"\",\"ogImageIds\":[],\"ogImageSource\":\"sameAsSeo\",\"ogImageField\":\"\",\"ogImageTransform\":true,\"ogImageTransformMode\":\"crop\",\"ogImageDescriptionSource\":\"sameAsSeo\",\"ogImageDescriptionField\":\"\"}');
/*!40000 ALTER TABLE `seomatic_metabundles` 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,'NWO Starter','2021-03-30 06:11:45','2021-03-30 06:11:45',NULL,'dd515d4e-0208-4937-a527-6d49106e0848');
/*!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,'1','NWO Starter','default','en-AU',1,'$PRIMARY_SITE_URL',1,'2021-03-30 06:11:45','2022-06-22 03:02:04',NULL,'f31d7621-e371-4c0e-ba64-e91d19fa4fcf');
/*!40000 ALTER TABLE `sites` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `sprig_playgrounds`
--

LOCK TABLES `sprig_playgrounds` WRITE;
/*!40000 ALTER TABLE `sprig_playgrounds` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `sprig_playgrounds` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `stc_10_links`
--

LOCK TABLES `stc_10_links` WRITE;
/*!40000 ALTER TABLE `stc_10_links` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `stc_10_links` VALUES (1,19742,1,'2021-06-18 05:19:54','2021-06-18 05:24:54','ff0ddb75-4d73-4deb-a117-5e27611469e7','#','Strategy'),(2,19743,1,'2021-06-18 05:19:54','2021-06-18 05:24:54','2bb3b6c3-aadb-4c5c-a768-3cb1a2843f3d','#','Brand'),(3,19744,1,'2021-06-18 05:19:54','2021-06-18 05:24:54','184a88a0-76a6-4c73-84a2-07fb5cc08ed8','#','Campaign'),(4,19745,1,'2021-06-18 05:19:54','2021-06-18 05:24:54','d0a88e15-d0eb-4ff8-a072-7f2053294834','#','Behaviour change'),(5,19746,1,'2021-06-18 05:19:54','2021-06-18 05:24:54','6be33d6d-8164-4abf-8e76-5d7d0f656efa','#','Engagement'),(6,19747,1,'2021-06-18 05:19:54','2021-06-18 05:24:54','db52773e-dd7f-49f0-8a31-9de8ed543d58','#','Video'),(7,19748,1,'2021-06-18 05:19:54','2021-06-18 05:24:54','3d042a0d-3f60-4a8d-ae61-f37643e427f8','#','Digital'),(8,19749,1,'2021-06-18 05:19:54','2021-06-18 05:24:54','79fb8167-cff6-461c-b939-cef42f7b26b8','#','Content'),(9,19762,1,'2021-06-18 05:19:55','2021-06-18 05:19:55','b3e11a75-9441-4daa-b222-7a766fd42499',NULL,'Strategy'),(10,19763,1,'2021-06-18 05:19:55','2021-06-18 05:19:55','f08be309-1172-4d61-bb59-6aa972366255',NULL,'Brand'),(11,19764,1,'2021-06-18 05:19:55','2021-06-18 05:19:55','d7c2eef3-bbf7-4314-8a84-c0296cc04aba',NULL,'Campaign'),(12,19765,1,'2021-06-18 05:19:55','2021-06-18 05:19:55','598df8aa-3076-4da6-bfbd-c49171375c91',NULL,'Behaviour change'),(13,19766,1,'2021-06-18 05:19:55','2021-06-18 05:19:55','e5950bbe-002c-49a6-a203-d2c4d58f98fd',NULL,'Engagement'),(14,19767,1,'2021-06-18 05:19:55','2021-06-18 05:19:55','96147591-f349-4153-ac03-5d23531b7581',NULL,'Video'),(15,19768,1,'2021-06-18 05:19:55','2021-06-18 05:19:55','69b83b1d-65b2-4e19-9d22-dca50cc4e610',NULL,'Digital'),(16,19769,1,'2021-06-18 05:19:55','2021-06-18 05:19:55','e1fdb703-c84b-49e0-92bc-e5b39241c2f6',NULL,'Content'),(17,19791,1,'2021-06-18 05:24:54','2021-06-18 05:24:54','c270ced2-8ef4-4099-8b2f-33471ccee880','#','Strategy'),(18,19792,1,'2021-06-18 05:24:54','2021-06-18 05:24:54','713058fb-e8b3-4a80-b277-40c1e2e44928','#','Brand'),(19,19793,1,'2021-06-18 05:24:54','2021-06-18 05:24:54','5a60d8fc-a37f-4b8e-8f38-8b5f3146c769','#','Campaign'),(20,19794,1,'2021-06-18 05:24:54','2021-06-18 05:24:54','283ceb78-05d3-4584-90c5-79462212ec98','#','Behaviour change'),(21,19795,1,'2021-06-18 05:24:54','2021-06-18 05:24:54','8184fdbf-ba2f-4a8f-bc85-0ffba8592f24','#','Engagement'),(22,19796,1,'2021-06-18 05:24:54','2021-06-18 05:24:54','842b36d9-577f-42ce-8861-7dd355087212','#','Video'),(23,19797,1,'2021-06-18 05:24:54','2021-06-18 05:24:54','93bb0c2d-d1ef-45df-93a6-fe353106272c','#','Digital'),(24,19798,1,'2021-06-18 05:24:54','2021-06-18 05:24:54','6fc58c44-c33b-416e-ba75-30f36bae0186','#','Content'),(25,19820,1,'2021-06-18 05:33:20','2021-06-18 05:33:20','4c827662-41d9-402e-96ee-9b2cb4873752','#','Strategy'),(26,19821,1,'2021-06-18 05:33:21','2021-06-18 05:33:21','1a32721e-869b-4500-af18-ef06285d9ed6','#','Brand'),(27,19822,1,'2021-06-18 05:33:21','2021-06-18 05:33:21','7f499c02-3674-45d9-867a-866a9f2bbcaa','#','Campaign'),(28,19823,1,'2021-06-18 05:33:21','2021-06-18 05:33:21','0a061cf9-8d9b-4703-8f7c-fb2c9e3f7101','#','Behaviour change'),(29,19824,1,'2021-06-18 05:33:21','2021-06-18 05:33:21','8a5fa6b0-3f52-4c8d-9efb-cb0e2d9c9c99','#','Engagement'),(30,19825,1,'2021-06-18 05:33:21','2021-06-18 05:33:21','af31732a-b245-4a91-8d6b-df51a70f2e73','#','Video'),(31,19826,1,'2021-06-18 05:33:21','2021-06-18 05:33:21','29a9eabd-962b-48dc-9eef-3108cf9811ea','#','Digital'),(32,19827,1,'2021-06-18 05:33:21','2021-06-18 05:33:21','5bc64810-867a-4232-a540-00fefca6c342','#','Content'),(41,19877,1,'2021-06-18 05:36:30','2021-06-18 05:36:30','33e6c291-8cc5-4a6e-b12d-38013db1f1f7','#','Strategy'),(42,19878,1,'2021-06-18 05:36:30','2021-06-18 05:36:30','2237af0e-276b-4c8e-a5ed-6d12ec1c06ca','#','Brand'),(43,19879,1,'2021-06-18 05:36:30','2021-06-18 05:36:30','674955bc-2b63-418a-93cf-3f6b4a646793','#','Campaign'),(44,19880,1,'2021-06-18 05:36:30','2021-06-18 05:36:30','fe1156ef-dd1f-4810-badc-d7cae087078c','#','Behaviour change'),(45,19881,1,'2021-06-18 05:36:30','2021-06-18 05:36:30','6c328cbc-f494-49fc-9dfb-d515b029e19c','#','Engagement'),(46,19882,1,'2021-06-18 05:36:30','2021-06-18 05:36:30','79d2f82e-09fc-474f-826b-5a1fbd02980c','#','Video'),(47,19883,1,'2021-06-18 05:36:30','2021-06-18 05:36:30','67af596a-6011-413e-8998-e01d2b22ef58','#','Digital'),(48,19884,1,'2021-06-18 05:36:30','2021-06-18 05:36:30','7c0e1572-0dda-4aff-a096-6e7c1cb9f487','#','Content'),(49,19906,1,'2021-06-18 05:36:32','2021-06-18 05:36:32','5c72cc36-2d68-4003-99d8-8e58090fcfc4','#','Strategy'),(50,19907,1,'2021-06-18 05:36:32','2021-06-18 05:36:32','59982867-2b2f-43f3-939c-f3541de567a3','#','Brand'),(51,19908,1,'2021-06-18 05:36:32','2021-06-18 05:36:32','3aceb3c9-ff95-4c54-abdc-80367d585c6d','#','Campaign'),(52,19909,1,'2021-06-18 05:36:32','2021-06-18 05:36:32','5d04748e-2e22-47e5-bb0e-6225e6e4c8c0','#','Behaviour change'),(53,19910,1,'2021-06-18 05:36:32','2021-06-18 05:36:32','5e14133f-97f7-4600-aa87-905728296420','#','Engagement'),(54,19911,1,'2021-06-18 05:36:32','2021-06-18 05:36:32','ccb0e50c-c7e2-4dde-8ffc-401ae655e056','#','Video'),(55,19912,1,'2021-06-18 05:36:32','2021-06-18 05:36:32','06cc7d87-b65a-41ef-b75c-6a052f3d8f39','#','Digital'),(56,19913,1,'2021-06-18 05:36:32','2021-06-18 05:36:32','651b1ead-5125-40e1-982d-9c845794552d','#','Content'),(57,19937,1,'2021-06-18 05:41:15','2021-06-18 05:41:15','506212d5-2c29-4333-a3a9-9ac258f645d3','#','Strategy'),(58,19938,1,'2021-06-18 05:41:15','2021-06-18 05:41:15','64a286e5-a277-4383-946f-84f73ba90209','#','Brand'),(59,19939,1,'2021-06-18 05:41:15','2021-06-18 05:41:15','17491ac0-4182-4416-9f0b-082dacadcbd0','#','Campaign'),(60,19940,1,'2021-06-18 05:41:15','2021-06-18 05:41:15','dd0613d8-7b29-45d1-a2b9-ccdc5e12118a','#','Behaviour change'),(61,19941,1,'2021-06-18 05:41:15','2021-06-18 05:41:15','6224490a-e5c0-4447-960a-0e96e1ea8393','#','Engagement'),(62,19942,1,'2021-06-18 05:41:15','2021-06-18 05:41:15','eadbc319-afb6-4827-8dce-5e2544da62b5','#','Video'),(63,19943,1,'2021-06-18 05:41:15','2021-06-18 05:41:15','429c7b63-c8d6-4bae-bed2-cbb65c66ea6a','#','Digital'),(64,19944,1,'2021-06-18 05:41:15','2021-06-18 05:41:15','853bf9f8-3aaa-4ee9-971b-804b15413fd5','#','Content'),(65,19966,1,'2021-06-18 05:41:45','2021-06-18 05:41:45','637d656b-5f6e-4dbb-b7df-ce49d158ab8c','#','Strategy'),(66,19967,1,'2021-06-18 05:41:45','2021-06-18 05:41:45','e23fda2b-5ffc-4d47-8180-f82db1e059b2','#','Brand'),(67,19968,1,'2021-06-18 05:41:45','2021-06-18 05:41:45','98d248ab-0fb4-416f-bd27-6028824c2a5e','#','Campaign'),(68,19969,1,'2021-06-18 05:41:45','2021-06-18 05:41:45','fde879bf-43e1-4188-b688-42374f611eb2','#','Behaviour change'),(69,19970,1,'2021-06-18 05:41:45','2021-06-18 05:41:45','f58c0779-9c2c-4ed6-9c6b-301652a21f66','#','Engagement'),(70,19971,1,'2021-06-18 05:41:45','2021-06-18 05:41:45','1419a903-ca3f-4926-9c05-520d347e6748','#','Video'),(71,19972,1,'2021-06-18 05:41:45','2021-06-18 05:41:45','c72e3707-03fc-447a-ab24-7e633417ec83','#','Digital'),(72,19973,1,'2021-06-18 05:41:45','2021-06-18 05:41:45','aea6ff34-32da-4f9c-aee8-86125046c6cc','#','Content'),(73,19996,1,'2021-06-18 05:47:38','2021-06-18 05:47:38','6084336a-d82b-4b3c-ac66-3c2bb847f56d','#','Strategy'),(74,19997,1,'2021-06-18 05:47:38','2021-06-18 05:47:38','9bf7ea20-571e-4da4-9bd6-97ef3a2320a7','#','Brand'),(75,19998,1,'2021-06-18 05:47:38','2021-06-18 05:47:38','e7bb4296-439d-4b68-8788-1e9dfd49efe9','#','Campaign'),(76,19999,1,'2021-06-18 05:47:38','2021-06-18 05:47:38','95639dc3-15cc-49ac-b52d-611f7feea0f3','#','Behaviour change'),(77,20000,1,'2021-06-18 05:47:38','2021-06-18 05:47:38','28b705ec-68de-4466-94b6-7564e772d7a4','#','Engagement'),(78,20001,1,'2021-06-18 05:47:38','2021-06-18 05:47:38','5dadc5e5-c25c-41b2-828b-5330e1b5dc40','#','Video'),(79,20002,1,'2021-06-18 05:47:38','2021-06-18 05:47:38','1cbdf43f-8637-403a-8d4a-1359023f950d','#','Digital'),(80,20003,1,'2021-06-18 05:47:38','2021-06-18 05:47:38','59bbebfc-e24e-4acc-b6f0-226fac05ca80','#','Content'),(81,20026,1,'2021-06-18 05:51:04','2021-06-18 05:51:04','8ee1dcb2-a3a8-4dc3-95f3-b9b4d6cc2958','#','Strategy'),(82,20027,1,'2021-06-18 05:51:04','2021-06-18 05:51:04','420983ec-a457-4fdd-9377-d4516f78a626','#','Brand'),(83,20028,1,'2021-06-18 05:51:04','2021-06-18 05:51:04','f0cfe9cc-c2b6-462f-84b9-20f31729b49f','#','Campaign'),(84,20029,1,'2021-06-18 05:51:04','2021-06-18 05:51:04','3c6859e4-0e41-47e0-b229-45ff0c7a29a3','#','Behaviour change'),(85,20030,1,'2021-06-18 05:51:04','2021-06-18 05:51:04','5798aa30-ddf3-490c-b8a6-5f341f760f3e','#','Engagement'),(86,20031,1,'2021-06-18 05:51:04','2021-06-18 05:51:04','93c5b976-9946-4701-aba3-697a7ae87f61','#','Video'),(87,20032,1,'2021-06-18 05:51:04','2021-06-18 05:51:04','3f657e5c-d0e9-4e5e-958b-64a8bbdf16fa','#','Digital'),(88,20033,1,'2021-06-18 05:51:04','2021-06-18 05:51:04','b8faf958-7bc4-4f08-a338-cda8d8d697da','#','Content');
/*!40000 ALTER TABLE `stc_10_links` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `stc_11_griditems`
--

LOCK TABLES `stc_11_griditems` WRITE;
/*!40000 ALTER TABLE `stc_11_griditems` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `stc_11_griditems` VALUES (1,19588,1,'2021-06-18 04:13:11','2021-06-18 04:17:10','33abc898-5a27-4a5e-9326-fb9c4311e0b3','Capturing a story, a feeling, a promise: all in a word. If you need to tell your story—your business, product or program—we are your professional one-word storytellers.','We’re the agency for big life moments.'),(2,19592,1,'2021-06-18 04:13:11','2021-06-18 04:13:11','c67e53c4-ac8a-4a11-881b-36446c8d7c35',NULL,NULL),(3,19593,1,'2021-06-18 04:17:10','2021-06-18 04:17:10','d3409557-82ca-4f0f-83a3-5f5a010ed6e0','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(4,19594,1,'2021-06-18 04:17:10','2021-06-18 04:17:10','ca1b9156-fc8a-40dc-aaea-312be687eb90','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(5,19595,1,'2021-06-18 04:17:10','2021-06-18 04:17:10','61cb8c27-92dc-4d34-a61a-7e3e42cecaee','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(6,19596,1,'2021-06-18 04:17:10','2021-06-18 04:17:10','b68d78d6-9c64-4c49-be79-8063c0d09c3e','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(7,19600,1,'2021-06-18 04:17:11','2021-06-18 04:17:11','24638fe2-1cd5-4cba-84f0-e5fde012b64f','Capturing a story, a feeling, a promise: all in a word. If you need to tell your story—your business, product or program—we are your professional one-word storytellers.','We’re the agency for big life moments.'),(8,19601,1,'2021-06-18 04:17:11','2021-06-18 04:17:11','784e2c21-cd6a-4342-b7ab-998c342b7740','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(9,19602,1,'2021-06-18 04:17:11','2021-06-18 04:17:11','18f09d37-059c-48e2-9913-988fa5d01c24','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(10,19603,1,'2021-06-18 04:17:11','2021-06-18 04:17:11','f74fcc02-2258-4595-b3ba-4ec29041024e','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(11,19604,1,'2021-06-18 04:17:11','2021-06-18 04:17:11','31afb5f0-a47b-438f-afe5-2606c459866d','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(12,19620,1,'2021-06-18 04:26:54','2021-06-18 04:26:54','08219871-cfbd-410c-ae61-8b7aa35d8ace','Capturing a story, a feeling, a promise: all in a word. If you need to tell your story—your business, product or program—we are your professional one-word storytellers.','We’re the agency for big life moments.'),(13,19621,1,'2021-06-18 04:26:54','2021-06-18 04:26:54','55a93d1d-aa94-481a-b02b-ad0590a2d6e4','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(14,19622,1,'2021-06-18 04:26:54','2021-06-18 04:26:54','b9cc31c0-4044-4ab2-907a-47e24d65cdb0','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(15,19623,1,'2021-06-18 04:26:54','2021-06-18 04:26:54','99bd919b-ddd4-41e9-9dd8-4aa398a81c70','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(16,19624,1,'2021-06-18 04:26:54','2021-06-18 04:26:54','1777ec00-29dd-4abb-a6ed-3d22d5025d8d','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(17,19655,1,'2021-06-18 04:34:34','2021-06-18 04:34:34','4fee4893-f2e2-4d19-9076-b94b9b542964','Capturing a story, a feeling, a promise: all in a word. If you need to tell your story—your business, product or program—we are your professional one-word storytellers.','We’re the agency for big life moments.'),(18,19656,1,'2021-06-18 04:34:35','2021-06-18 04:34:35','8d2ed9db-3d2f-47e6-a47d-5083b231427c','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(19,19657,1,'2021-06-18 04:34:35','2021-06-18 04:34:35','009bb259-2c04-44cf-85d0-4c8c8231609e','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(20,19658,1,'2021-06-18 04:34:35','2021-06-18 04:34:35','28724e32-fdb7-487b-8443-dd6e6b01ab95','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(21,19659,1,'2021-06-18 04:34:35','2021-06-18 04:34:35','c03530aa-15c8-4f2a-8051-26318f566b8d','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(22,19685,1,'2021-06-18 05:06:14','2021-06-18 05:06:14','4c86cc9b-2a38-4caf-be70-2c87d61eea8d','Capturing a story, a feeling, a promise: all in a word. If you need to tell your story—your business, product or program—we are your professional one-word storytellers.','We’re the agency for big life moments.'),(23,19686,1,'2021-06-18 05:06:14','2021-06-18 05:06:14','91bbcff6-616d-4ae6-8ff4-f4a2374a7a70','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(24,19687,1,'2021-06-18 05:06:14','2021-06-18 05:06:14','4105c194-5bbf-4797-8445-b5ef2babd975','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(25,19688,1,'2021-06-18 05:06:14','2021-06-18 05:06:14','48cdb739-0b8c-40cf-8419-b96375094864','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(26,19689,1,'2021-06-18 05:06:14','2021-06-18 05:06:14','f7bb5681-0b65-4f74-9f6b-c9b70931f53f','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(27,19715,1,'2021-06-18 05:17:26','2021-06-18 05:17:26','692c0078-8716-4da2-8244-7f29a9c1a78c','Capturing a story, a feeling, a promise: all in a word. If you need to tell your story—your business, product or program—we are your professional one-word storytellers.','We’re the agency for big life moments.'),(28,19716,1,'2021-06-18 05:17:26','2021-06-18 05:17:26','cba91fc1-724e-428e-9008-c0f3b3f1364e','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(29,19717,1,'2021-06-18 05:17:26','2021-06-18 05:17:26','35c27d2a-fd78-43c3-9761-07ec2846de4a','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(30,19718,1,'2021-06-18 05:17:26','2021-06-18 05:17:26','8b29f169-363e-40e7-9c7c-ecee613dafe8','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(31,19719,1,'2021-06-18 05:17:26','2021-06-18 05:17:26','c6b5b311-3cdd-45a1-9617-86401c5ad44a','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(32,19753,1,'2021-06-18 05:19:55','2021-06-18 05:19:55','d261bb08-123b-4bc1-8c17-1415322d4c1d','Capturing a story, a feeling, a promise: all in a word. If you need to tell your story—your business, product or program—we are your professional one-word storytellers.','We’re the agency for big life moments.'),(33,19754,1,'2021-06-18 05:19:55','2021-06-18 05:19:55','ffb52783-a68f-4b80-a1fc-54f4860b09d6','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(34,19755,1,'2021-06-18 05:19:55','2021-06-18 05:19:55','43d0505d-1aaf-4d92-8e6a-d4cd4be73b5e','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(35,19756,1,'2021-06-18 05:19:55','2021-06-18 05:19:55','89e231e7-39ec-435e-b9b0-2358d511d61d','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(36,19757,1,'2021-06-18 05:19:55','2021-06-18 05:19:55','9a3bbf98-39cd-4143-a818-735a025269e3','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(37,19782,1,'2021-06-18 05:24:54','2021-06-18 05:24:54','1fb65861-3267-4ab0-bc3c-feba6f44c58b','Capturing a story, a feeling, a promise: all in a word. If you need to tell your story—your business, product or program—we are your professional one-word storytellers.','We’re the agency for big life moments.'),(38,19783,1,'2021-06-18 05:24:54','2021-06-18 05:24:54','541198a7-054b-4d7f-967e-46e87604d95a','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(39,19784,1,'2021-06-18 05:24:54','2021-06-18 05:24:54','c58859e1-0c92-414c-8517-c9a87fd7e6a3','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(40,19785,1,'2021-06-18 05:24:54','2021-06-18 05:24:54','9b4aed10-7939-4229-b38a-5183f61a0cec','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(41,19786,1,'2021-06-18 05:24:54','2021-06-18 05:24:54','7ed5399f-c0b8-4814-ae8d-3aec36054c3d','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(42,19811,1,'2021-06-18 05:33:20','2021-06-18 05:33:20','1a61a34c-a135-4916-bc32-9c9cb3f54734','Capturing a story, a feeling, a promise: all in a word. If you need to tell your story—your business, product or program—we are your professional one-word storytellers.','We’re the agency for big life moments.'),(43,19812,1,'2021-06-18 05:33:20','2021-06-18 05:33:20','f2cd41c2-d854-4d29-82cb-be70491a4dba','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(44,19813,1,'2021-06-18 05:33:20','2021-06-18 05:33:20','a8ffa4c3-392f-479b-bc03-1852354dafee','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(45,19814,1,'2021-06-18 05:33:20','2021-06-18 05:33:20','1b74835b-393c-4a79-9bc0-f8d53767e4e2','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(46,19815,1,'2021-06-18 05:33:20','2021-06-18 05:33:20','33e9e3a2-5526-4182-8133-015d0e9cdfd5','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(52,19868,1,'2021-06-18 05:36:30','2021-06-18 05:36:30','4f574986-4712-49c5-9739-4252b4af08f0','Capturing a story, a feeling, a promise: all in a word. If you need to tell your story—your business, product or program—we are your professional one-word storytellers.','We’re the agency for big life moments.'),(53,19869,1,'2021-06-18 05:36:30','2021-06-18 05:36:30','7bd66f8c-a7ca-41c1-af55-4bbff2eaa778','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(54,19870,1,'2021-06-18 05:36:30','2021-06-18 05:36:30','4666f46f-6489-401b-85f4-76120d2e2dce','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(55,19871,1,'2021-06-18 05:36:30','2021-06-18 05:36:30','e2dedb38-b511-485e-8477-881f9ed4c45e','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(56,19872,1,'2021-06-18 05:36:30','2021-06-18 05:36:30','78e811c5-89f2-4923-bb2c-7647a0a8730d','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(57,19897,1,'2021-06-18 05:36:32','2021-06-18 05:36:32','38d259a8-caf7-4fbd-9aed-6ef59c67ded9','Capturing a story, a feeling, a promise: all in a word. If you need to tell your story—your business, product or program—we are your professional one-word storytellers.','We’re the agency for big life moments.'),(58,19898,1,'2021-06-18 05:36:32','2021-06-18 05:36:32','2091df3b-592d-4503-bade-657eee52de35','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(59,19899,1,'2021-06-18 05:36:32','2021-06-18 05:36:32','728ec6fe-ae85-48d3-8129-b442bb7ff781','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(60,19900,1,'2021-06-18 05:36:32','2021-06-18 05:36:32','8a03a837-7629-44a3-9b3b-04ecdcdb1b25','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(61,19901,1,'2021-06-18 05:36:32','2021-06-18 05:36:32','3d0cf044-6cc8-431f-9913-d0e79a34ff33','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(62,19928,1,'2021-06-18 05:41:14','2021-06-18 05:41:14','9476eb62-066f-489c-ad5f-24d102cb3632','Capturing a story, a feeling, a promise: all in a word. If you need to tell your story—your business, product or program—we are your professional one-word storytellers.','We’re the agency for big life moments.'),(63,19929,1,'2021-06-18 05:41:15','2021-06-18 05:41:15','5a4bca72-285d-4e90-aecf-bcf9aa793196','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(64,19930,1,'2021-06-18 05:41:15','2021-06-18 05:41:15','f9e09e3d-f4b9-4b44-a478-18d306b57fb5','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(65,19931,1,'2021-06-18 05:41:15','2021-06-18 05:41:15','300a6951-9ef6-49db-a097-7a0c1e293ab4','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(66,19932,1,'2021-06-18 05:41:15','2021-06-18 05:41:15','f3f1c4df-f7f6-44cd-86b6-4ff6449fb833','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(67,19957,1,'2021-06-18 05:41:45','2021-06-18 05:41:45','9fbda7d4-c7a9-4736-b60a-1a27b69ad9a4','Capturing a story, a feeling, a promise: all in a word. If you need to tell your story—your business, product or program—we are your professional one-word storytellers.','We’re the agency for big life moments.'),(68,19958,1,'2021-06-18 05:41:45','2021-06-18 05:41:45','c09c8ec7-37b9-45f9-af2c-57572ef6b97b','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(69,19959,1,'2021-06-18 05:41:45','2021-06-18 05:41:45','3a699103-13ba-4600-9133-27a10c82f3b4','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(70,19960,1,'2021-06-18 05:41:45','2021-06-18 05:41:45','74d5276c-138f-4dfe-a1c2-07cfc22f22d9','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(71,19961,1,'2021-06-18 05:41:45','2021-06-18 05:41:45','71d425c2-368c-4987-8b28-30c82246bb19','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(72,19987,1,'2021-06-18 05:47:38','2021-06-18 05:47:38','62430a5a-84e6-4f4b-8121-61a00a64e077','Capturing a story, a feeling, a promise: all in a word. If you need to tell your story—your business, product or program—we are your professional one-word storytellers.','We’re the agency for big life moments.'),(73,19988,1,'2021-06-18 05:47:38','2021-06-18 05:47:38','37c3c4bb-46d2-4bd5-94b0-ffe2ed96d21c','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(74,19989,1,'2021-06-18 05:47:38','2021-06-18 05:47:38','d325965d-f6b2-4141-84ef-71eda86118a4','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(75,19990,1,'2021-06-18 05:47:38','2021-06-18 05:47:38','d5aedb52-fa68-4f31-98d6-03ddfad2f162','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(76,19991,1,'2021-06-18 05:47:38','2021-06-18 05:47:38','e5ede19d-a274-4a2e-9c1c-8f8367efc609','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(77,20017,1,'2021-06-18 05:51:04','2021-06-18 05:51:04','47937945-ff2f-4982-8f66-3995da8e2670','Capturing a story, a feeling, a promise: all in a word. If you need to tell your story—your business, product or program—we are your professional one-word storytellers.','We’re the agency for big life moments.'),(78,20018,1,'2021-06-18 05:51:04','2021-06-18 05:51:04','4d686687-e4eb-4b5a-8b24-e455f7d410b9','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(79,20019,1,'2021-06-18 05:51:04','2021-06-18 05:51:04','cdb4fadb-18a0-4a04-8967-494df541de3b','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(80,20020,1,'2021-06-18 05:51:04','2021-06-18 05:51:04','0c1911fe-c184-4ed8-985f-a1f738d15c05','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(81,20021,1,'2021-06-18 05:51:04','2021-06-18 05:51:04','6239255b-1f44-4e99-b3da-82a90a077a24','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.');
/*!40000 ALTER TABLE `stc_11_griditems` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `stc_11_links`
--

LOCK TABLES `stc_11_links` WRITE;
/*!40000 ALTER TABLE `stc_11_links` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `stc_11_links` VALUES (8,21254,1,'2021-06-21 05:14:24','2021-06-21 05:14:24','1ea4bf64-f9ba-45fe-88ce-4e07076537a3',NULL,'Strategy'),(9,21255,1,'2021-06-21 05:14:24','2021-06-21 05:14:24','b20e3be7-b3ff-432d-aea4-68736a8f4f25',NULL,'Brand'),(10,21256,1,'2021-06-21 05:14:24','2021-06-21 05:14:24','46455637-45b1-4bff-8a2f-434f8dea75e0',NULL,'Behaviour change'),(11,21257,1,'2021-06-21 05:14:24','2021-06-21 05:14:24','f7fc7f74-df80-4764-8aee-6cea6665fed8',NULL,'Engagement'),(12,21258,1,'2021-06-21 05:14:24','2021-06-21 05:14:24','083217a0-bb8e-4328-9d6a-868639255b88',NULL,'Video'),(13,21259,1,'2021-06-21 05:14:24','2021-06-21 05:14:24','92aa7fc7-b3d9-4201-8b6c-a19c34946231',NULL,'Digital'),(14,21260,1,'2021-06-21 05:14:24','2021-06-21 05:14:24','3998fdb4-a5ea-4eba-b394-7be03fd78cb9',NULL,'Content'),(15,21281,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','ac22199b-824a-4c1b-af7d-128880b87dc6',NULL,'Strategy'),(16,21282,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','35a579eb-79f3-4f16-b991-3d5e4053012e',NULL,'Brand'),(17,21283,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','a22ad014-8013-4911-93f3-9b0726d1f755',NULL,'Behaviour change'),(18,21284,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','d7b4391d-9b8c-42c1-8b1b-4ce12d07baca',NULL,'Engagement'),(19,21285,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','c8462eb2-7363-4477-9e60-c415d0282052',NULL,'Video'),(20,21286,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','482f8840-2756-4e71-9fb1-3a3aec91abdc',NULL,'Digital'),(21,21287,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','fede92cc-d282-4ce8-95c8-1d3f7e602ac7',NULL,'Content'),(22,21380,1,'2021-07-12 23:11:46','2021-07-12 23:11:46','f8fa9d40-9805-4ff4-9b47-a0b2dd5b8118',NULL,'Strategy'),(23,21381,1,'2021-07-12 23:11:46','2021-07-12 23:11:46','ebf3de93-acfe-479d-87b2-a55a7fd0aaff',NULL,'Brand'),(24,21382,1,'2021-07-12 23:11:47','2021-07-12 23:11:47','f62ed4c5-dc62-488d-91ad-555a6846bb0d',NULL,'Behaviour change'),(25,21383,1,'2021-07-12 23:11:47','2021-07-12 23:11:47','6a89b3e9-0b27-4cd2-b4d8-ac4d542aaf24',NULL,'Engagement'),(26,21384,1,'2021-07-12 23:11:47','2021-07-12 23:11:47','9a68dbcd-f3f5-4c31-874c-7c54b2cb394d',NULL,'Video'),(27,21385,1,'2021-07-12 23:11:47','2021-07-12 23:11:47','cfcaea94-9bc3-4adf-b95d-cf1ce974d579',NULL,'Digital'),(28,21386,1,'2021-07-12 23:11:47','2021-07-12 23:11:47','219322a0-08b0-4bb4-8f0a-0a264386ba85',NULL,'Content'),(29,21407,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','f148a004-7065-42a8-967e-2793b9737f19',NULL,'Strategy'),(30,21408,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','926d3246-5bc2-49b9-81c0-4dba2f280745',NULL,'Brand'),(31,21409,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','d14a742e-f5fc-4e77-8d3c-18ebc0e4cd49',NULL,'Behaviour change'),(32,21410,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','14391f6f-f776-43fa-a501-e868d4809edd',NULL,'Engagement'),(33,21411,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','8422b0be-a90f-4a36-9cf9-ecfdbc64f8a7',NULL,'Video'),(34,21412,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','aa9a20f8-7b71-4fd0-b3c2-187f3d3b8a14',NULL,'Digital'),(35,21413,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','944df338-3c6b-471a-a29b-e32a1133961b',NULL,'Content'),(36,21434,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','e525ae76-c782-49c4-aa33-f3a07267e77c',NULL,'Strategy'),(37,21435,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','cf7b30bb-8f11-4716-96e7-f1fcc904bd28',NULL,'Brand'),(38,21436,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','aa6b9935-31e9-4b01-9c04-3b33678b682f',NULL,'Behaviour change'),(39,21437,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','ee5b2bf7-0d97-4043-a38e-5a9d48991721',NULL,'Engagement'),(40,21438,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','827ca1d1-e867-4968-933c-1ae99fc906b2',NULL,'Video'),(41,21439,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','91af942e-dbb2-4134-8636-718a521007bd',NULL,'Digital'),(42,21440,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','de2fd163-efbe-4747-ad16-350a3ead5390',NULL,'Content'),(57,21514,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','81bcbd67-ff8e-4347-b693-bd0e58e0bdd1',NULL,'Strategy'),(58,21515,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','55cc05e8-9866-4adf-ab69-d5227630e656',NULL,'Brand'),(59,21516,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','d951bd49-db19-4425-af21-10206c9093c1',NULL,'Behaviour change'),(60,21517,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','32deb131-a50d-4a35-b44a-37b57ee1ea60',NULL,'Engagement'),(61,21518,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','a08c3aa3-6808-4ffa-b113-524187fea897',NULL,'Video'),(62,21519,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','432d87e5-252b-44df-8935-6ca27c1c8876',NULL,'Digital'),(63,21520,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','51335545-0777-487c-95de-ec2966413e7a',NULL,'Content'),(64,21541,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','1185427d-d956-4a25-b72b-a91a23a64785',NULL,'Strategy'),(65,21542,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','8058a7e0-753f-4730-ac98-1a37a8e8086b',NULL,'Brand'),(66,21543,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','31f8da22-3e84-4804-9b0f-9ac381d49d3c',NULL,'Behaviour change'),(67,21544,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','893e7416-3243-4b45-8140-fa5bb4824f62',NULL,'Engagement'),(68,21545,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','899b61f9-ea1f-48eb-9fb8-151a77b1f279',NULL,'Video'),(69,21546,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','55f016dd-4164-47e9-9602-ee876155eb62',NULL,'Digital'),(70,21547,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','6fe03479-7936-4722-89cf-d11703a23021',NULL,'Content'),(71,21568,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','cdd23863-5ba2-46d9-bbf5-edd2b89294ad',NULL,'Strategy'),(72,21569,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','88bab211-ae0f-4eee-b881-b891a8c294a2',NULL,'Brand'),(73,21570,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','ea73a710-1b30-4949-bea9-b23e2dc3aeff',NULL,'Behaviour change'),(74,21571,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','850645ff-5e69-412a-bf35-07b53bbbc878',NULL,'Engagement'),(75,21572,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','a3fa418c-3673-4d89-bd9f-c25bfc6401de',NULL,'Video'),(76,21573,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','e55d0a52-a436-43d2-9843-97fe3ee3eb5f',NULL,'Digital'),(77,21574,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','de1ea1af-af82-43e0-946f-0c67940f57b4',NULL,'Content'),(78,21595,1,'2021-07-12 23:48:23','2021-07-12 23:48:23','26bd0abc-0ec2-4ac8-9066-4c90b1677e12',NULL,'Strategy'),(79,21596,1,'2021-07-12 23:48:23','2021-07-12 23:48:23','54019ed6-7631-4d14-80a8-ca2b51d2b7a7',NULL,'Brand'),(80,21597,1,'2021-07-12 23:48:23','2021-07-12 23:48:23','9fc6848c-813d-4f4b-a4d5-66d860f8f43a',NULL,'Behaviour change'),(81,21598,1,'2021-07-12 23:48:23','2021-07-12 23:48:23','e9a64810-0d24-4dee-973f-635cf09232a9',NULL,'Engagement'),(82,21599,1,'2021-07-12 23:48:23','2021-07-12 23:48:23','79deb191-695b-4d1f-bd30-945d9ec5c3a8',NULL,'Video'),(83,21600,1,'2021-07-12 23:48:23','2021-07-12 23:48:23','2456bb01-6de3-4942-b057-0b8e5e9d2db5',NULL,'Digital'),(84,21601,1,'2021-07-12 23:48:23','2021-07-12 23:48:23','a3a8359f-6410-4e3c-8de4-eb29ad84c3dc',NULL,'Content'),(85,21622,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','30473eb8-bab7-4402-a7fb-f73540c690fd',NULL,'Strategy'),(86,21623,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','12df4d1e-9eb7-4150-8d02-079914731e3a',NULL,'Brand'),(87,21624,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','aec8b34d-b730-4a80-b6a8-06afb6304174',NULL,'Behaviour change'),(88,21625,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','3b5a872c-a84c-4280-8194-d51896e1e517',NULL,'Engagement'),(89,21626,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','1e35739b-47ed-4243-8f56-093e3f5a0d3a',NULL,'Video'),(90,21627,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','493af8ce-800a-4d01-a60c-89f38a5ba856',NULL,'Digital'),(91,21628,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','cafded4c-f7e9-4b6f-aa5f-513d666f2cc7',NULL,'Content'),(92,21649,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','fb26e0c2-1d13-4183-80ac-7a09c576bbc0',NULL,'Strategy'),(93,21650,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','90dc4130-822a-41fe-b078-62c1cefecdfe',NULL,'Brand'),(94,21651,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','fbfc5809-baa0-4a3f-b414-e4996ad8999b',NULL,'Behaviour change'),(95,21652,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','fd88ab88-b3e2-4f4f-9d95-e90e40c9bf1e',NULL,'Engagement'),(96,21653,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','d794ebf2-adb8-4a22-be7b-71bd61de0cc6',NULL,'Video'),(97,21654,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','4fc76052-3ef8-4aec-a393-3391b7cffccf',NULL,'Digital'),(98,21655,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','a428541d-dff1-432f-99e8-b58a4b1f87a7',NULL,'Content'),(99,21676,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','2d2ba4f8-8fd0-4a67-9119-d40933d4f45d',NULL,'Strategy'),(100,21677,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','df269be3-d0f3-4f99-a7da-b4f7fa914ce0',NULL,'Brand'),(101,21678,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','4ef6ea60-8034-47a4-a1f0-bd5372464985',NULL,'Behaviour change'),(102,21679,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','d046dc46-40d6-44b0-92a3-3bd345a0f9a4',NULL,'Engagement'),(103,21680,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','f26b9972-fc49-4bdd-b3b1-62431c61f0bc',NULL,'Video'),(104,21681,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','38a081a0-db35-47a4-9a1a-6379f15bc519',NULL,'Digital'),(105,21682,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','fc4e9251-517d-41e1-aabd-abb3ee6f0ab6',NULL,'Content'),(106,21703,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','f0ff7f13-c4f0-4243-8d04-f2f0b97b1d4e',NULL,'Strategy'),(107,21704,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','871938ee-79ab-47aa-937c-22555241cd72',NULL,'Brand'),(108,21705,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','f18045f8-c3dd-4216-890f-64d9f4779196',NULL,'Behaviour change'),(109,21706,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','01eb71aa-8925-4b97-b08e-9bd8a51bfd6f',NULL,'Engagement'),(110,21707,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','f4d262d3-0eac-470c-ba09-0d76d42bb541',NULL,'Video'),(111,21708,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','3305682a-1338-4bfe-927b-d54f4c066b9f',NULL,'Digital'),(112,21709,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','8911c6b7-5b0b-4a59-8a5c-af5e125a41a6',NULL,'Content'),(113,21730,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','28dbed8a-1095-4a63-b149-49fbce2da7d4',NULL,'Strategy'),(114,21731,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','304250b3-12e2-48a4-b0c9-e07ea07434ac',NULL,'Brand'),(115,21732,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','2506ac70-6553-4d26-acac-41025db85ded',NULL,'Behaviour change'),(116,21733,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','5fd3d765-3868-4327-9f36-5df25795c00e',NULL,'Engagement'),(117,21734,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','b81ca9d7-6816-4618-8a54-4094e25b1a06',NULL,'Video'),(118,21735,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','fdc6937a-4e51-435d-8d2d-7675620e44fe',NULL,'Digital'),(119,21736,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','bd103639-449e-422e-b070-dca841f84a1d',NULL,'Content'),(127,21783,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','f458e6f0-ec25-49e2-8113-a73363659024',NULL,'Strategy'),(128,21784,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','f548fcd6-781d-49d5-bc82-f3ac9e105e6d',NULL,'Brand'),(129,21785,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','6e9aeeb3-3e69-46c6-9d13-6e6f35541e60',NULL,'Behaviour change'),(130,21786,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','fb1638e6-3fb0-486b-b9f3-0dabbc1836d6',NULL,'Engagement'),(131,21787,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','7d18e09d-55e9-4c62-b4f7-f18941158504',NULL,'Video'),(132,21788,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','b791f691-4f8e-4f47-a0c5-9e299f33ce3b',NULL,'Digital'),(133,21789,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','9e3acdce-35af-445e-892f-74719f93dc29',NULL,'Content'),(134,21810,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','1a122c09-f8a1-40a8-951a-38d4a5ced16b',NULL,'Strategy'),(135,21811,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','a6078181-7272-46e3-958f-db92946bd7d1',NULL,'Brand'),(136,21812,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','ff1a6be0-4d86-4dec-83be-35de95a02d35',NULL,'Behaviour change'),(137,21813,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','852430c0-76d7-4297-b133-5402af6ec7b1',NULL,'Engagement'),(138,21814,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','38bab834-7ad7-4bcd-8837-e98934d26448',NULL,'Video'),(139,21815,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','d6a9c66a-ac8c-438a-81da-50f4a995c1b1',NULL,'Digital'),(140,21816,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','59aef7d9-f068-4fea-90c2-54cfe937070d',NULL,'Content'),(148,21864,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','257dbbc1-0ebf-423c-ad18-a244d56485f3',NULL,'Strategy'),(149,21865,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','db6846fa-7bfd-4b69-a345-f91b61c513f1',NULL,'Brand'),(150,21866,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','4fc27e13-fcbe-43a3-993f-c4b106964cbc',NULL,'Behaviour change'),(151,21867,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','d312181a-b457-47bc-ba4e-54a424a279be',NULL,'Engagement'),(152,21868,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','60d4b4fe-5239-4060-b933-4ed8929a738d',NULL,'Video'),(153,21869,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','a479af3d-2140-4036-949b-3ac99929eff1',NULL,'Digital'),(154,21870,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','c79f07bf-a52a-4cce-8cb7-5032a9cec6ce',NULL,'Content');
/*!40000 ALTER TABLE `stc_11_links` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `stc_12_logos`
--

LOCK TABLES `stc_12_logos` WRITE;
/*!40000 ALTER TABLE `stc_12_logos` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `stc_12_logos` VALUES (8,21289,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','4bb86cc9-6ef6-4e5c-9d9c-43c341c7b8d1',NULL),(9,21290,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','81259532-007e-402d-805d-af4e8281e827',NULL),(10,21291,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','852edb7b-a069-4280-b443-5c4addd26190',NULL),(11,21292,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','3ce396e2-0ac2-4999-aa5c-60960341de28',NULL),(12,21293,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','6b695cf1-dd24-405d-a7f3-f43df17b01d7',NULL),(13,21294,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','50f2ea57-286f-4352-96e3-bb2c65460151',NULL),(14,21388,1,'2021-07-12 23:11:47','2021-07-12 23:11:47','2a8839c3-7690-4377-b664-6e411603d74f',NULL),(15,21389,1,'2021-07-12 23:11:47','2021-07-12 23:11:47','2cd34ee7-2639-4a9c-9f3e-49063252907f',NULL),(16,21390,1,'2021-07-12 23:11:47','2021-07-12 23:11:47','345940c3-94a4-40e5-83c5-d41198bfe3d0',NULL),(17,21391,1,'2021-07-12 23:11:47','2021-07-12 23:11:47','27794b0c-9526-4be0-a3e3-44785e05f238',NULL),(18,21392,1,'2021-07-12 23:11:47','2021-07-12 23:11:47','d830448c-9b58-42ec-85bd-74e51d7e47cd',NULL),(19,21393,1,'2021-07-12 23:11:47','2021-07-12 23:11:47','92cdd7db-ba01-4621-b2bf-483c519e199c',NULL),(20,21415,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','d3be3edd-a38e-4cc5-8b61-d2fa1eaee0c0',NULL),(21,21416,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','78b8f395-b28c-425c-bbea-d03eb76e9b52',NULL),(22,21417,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','73dbe4a1-e539-4e0c-a97e-b7d55cdc5899',NULL),(23,21418,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','dc6f565b-9545-49e3-81ce-205ecb2e70ab',NULL),(24,21419,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','ef191c2c-8e3f-439d-aa04-193972e9f72a',NULL),(25,21420,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','3a9151f2-2488-42f9-9ae0-06182cb3b9a0',NULL),(26,21442,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','3204abf1-5353-4aa3-aa7a-4cb8d3ae29d5',NULL),(27,21443,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','92e1bd81-c2a9-4f9b-8b2c-e6e2993455c9',NULL),(28,21444,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','25512cd5-3cfc-49e9-bc91-c1309c4e41c1',NULL),(29,21445,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','5244cfa7-a2d7-4dbb-be1f-d1e0ebb74c8a',NULL),(30,21446,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','df2ca6f9-760d-4a47-8cdd-3b01d1dc82ae',NULL),(31,21447,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','9efc34b8-9330-4e1e-a061-cc77fa25744f',NULL),(44,21522,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','1081eae5-6466-4c9a-a510-560b1e91ca7f',NULL),(45,21523,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','c89b43e2-b391-468f-8fa1-cf385fbbc637',NULL),(46,21524,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','debfe224-0679-4d08-a999-01ea50abfaa0',NULL),(47,21525,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','c168dc0f-e08c-43e1-ac48-1aacd9e80849',NULL),(48,21526,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','64d27473-632d-4bd9-aee0-48436805890c',NULL),(49,21527,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','48262891-16d1-4348-9730-202860444fa3',NULL),(50,21549,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','589955fd-bce7-4776-8d13-691bf417945b',NULL),(51,21550,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','d64c80b3-7124-4c41-a660-299c1c015d1f',NULL),(52,21551,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','2009d604-3b5b-4196-ba35-0176147ffbcf',NULL),(53,21552,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','9ffc4501-2fb6-4a8c-b806-210916cf7eea',NULL),(54,21553,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','25ea2c4d-aa95-43c4-babc-c5553825f080',NULL),(55,21554,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','e423d653-dd46-4c13-bd41-a2267d22472a',NULL),(56,21576,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','6355896b-17c3-450d-aa8d-f8115fb74fbc',NULL),(57,21577,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','2f556ea8-41e4-42cf-91b8-5a51a5938c6d',NULL),(58,21578,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','2561450a-2d1d-4916-b9a0-b2567bf21753',NULL),(59,21579,1,'2021-07-12 23:46:01','2021-07-12 23:46:01','93955037-1227-4f32-9143-a20459db2945',NULL),(60,21580,1,'2021-07-12 23:46:01','2021-07-12 23:46:01','7ad62452-718c-4fda-8a8b-2880d0da47f9',NULL),(61,21581,1,'2021-07-12 23:46:01','2021-07-12 23:46:01','847bc6a2-4708-49f2-b993-9cdb61097558',NULL),(62,21603,1,'2021-07-12 23:48:23','2021-07-12 23:48:23','b5fa7386-3cb4-4098-9fb3-78f72d6be7a6',NULL),(63,21604,1,'2021-07-12 23:48:24','2021-07-12 23:48:24','6c3c48d6-562e-4833-861f-5c5b8fc92916',NULL),(64,21605,1,'2021-07-12 23:48:24','2021-07-12 23:48:24','3ddcc10a-dae3-4310-aacd-5ccbda563c96',NULL),(65,21606,1,'2021-07-12 23:48:24','2021-07-12 23:48:24','538f4876-47b7-44ee-b1ab-dd62f9bf9da5',NULL),(66,21607,1,'2021-07-12 23:48:24','2021-07-12 23:48:24','834647d2-e908-4d08-a6e6-40c54527a3cd',NULL),(67,21608,1,'2021-07-12 23:48:24','2021-07-12 23:48:24','703e5419-6bbd-4acd-9238-ad49ab794efe',NULL),(68,21630,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','59ad8491-8de7-4fd0-9ce6-50eca67d7847',NULL),(69,21631,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','699a1d95-7048-4b76-b3cc-6ca5fdbb0b03',NULL),(70,21632,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','c347d4f3-465e-4fa8-bce3-37cff0e61a3e',NULL),(71,21633,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','44ea07f7-bb99-4b48-960f-799bad8309eb',NULL),(72,21634,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','fcb4cbb9-633c-4509-9d72-78128601acfb',NULL),(73,21635,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','e3403784-9954-46fb-8a54-a5d8b11382c7',NULL),(74,21657,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','2163c7bb-7d8d-41f8-b74c-7dcce9480ebd',NULL),(75,21658,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','27c3f353-43da-4f1d-bbc8-005160373f0a',NULL),(76,21659,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','ad231b5b-5aa2-4b88-bacf-42e44c77900e',NULL),(77,21660,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','967de573-8919-4b9f-9e83-51cf00119e65',NULL),(78,21661,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','e725d466-2de9-454f-aed6-ca5e745b4da9',NULL),(79,21662,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','9aa88d88-eea2-49e6-bc9c-d5d1e6fc52a7',NULL),(80,21684,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','844129d5-cf24-4059-9a12-ccbe096ab087',NULL),(81,21685,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','903df305-29a4-4295-956b-877baf207880',NULL),(82,21686,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','f2b3865b-050c-479e-8436-0f93cf852113',NULL),(83,21687,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','f88b9d6f-d5b2-4d7a-9229-1d7d45d7a280',NULL),(84,21688,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','c8bc60c9-8049-4c3b-ba75-6c8e8a88f0f6',NULL),(85,21689,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','f52e396e-d7a3-4d06-adca-2a365801232f',NULL),(86,21711,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','f6c9fc65-f0c1-4c78-a27b-7c7e22d5d4ae',NULL),(87,21712,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','78043f33-f8e0-493a-811a-f3af8cc58a07',NULL),(88,21713,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','8ffac780-bdae-4e2b-94f7-ffb803ff632e',NULL),(89,21714,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','5859dce2-6dd7-4c3f-8cad-63a7e81f72f0',NULL),(90,21715,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','628dd07a-32cd-45ec-ad94-e1fbc5eb671e',NULL),(91,21716,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','a6a29f43-4d02-47c0-8a6f-eeb31cd77dc0',NULL),(92,21738,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','13cdadda-af2a-4930-9c60-2d2dd5e3b47e',NULL),(93,21739,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','1a6da6ef-001e-4620-8999-5ab8ee09df27',NULL),(94,21740,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','94e8386f-8759-46fb-8d3b-5336f158ee9f',NULL),(95,21741,1,'2021-07-12 23:58:24','2021-07-12 23:58:24','59b4ab79-25e4-45ae-a7f4-fb0af4aed0fa',NULL),(96,21742,1,'2021-07-12 23:58:24','2021-07-12 23:58:24','63a94ada-37f3-4890-a24b-b66d8e49ce62',NULL),(97,21743,1,'2021-07-12 23:58:24','2021-07-12 23:58:24','f442f096-31bc-4c81-8d04-7bdc1d01c75c',NULL),(104,21791,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','ced6dc9a-01d5-4127-9fb5-ab354191271c',NULL),(105,21792,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','895a0ed1-3b61-413d-8fba-4207bb35fd0f',NULL),(106,21793,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','bb47235b-09be-4347-bce9-0d047c357a19',NULL),(107,21794,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','cdcc1541-e116-40a7-8c5a-cff73807a3f1',NULL),(108,21795,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','9494aa37-d123-49a4-8cb6-a608838afbd4',NULL),(109,21796,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','b3e419ec-c736-46d2-8278-290ffbababbb',NULL),(110,21818,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','122954f4-6a16-4dbe-84ce-2845488a26f9',NULL),(111,21819,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','6cde78b4-e826-4a9a-8a6e-8b26dcf95e8a',NULL),(112,21820,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','62f21ba5-62d5-4c78-9046-55004c34862d',NULL),(113,21821,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','ebeb0018-1f87-435d-b522-599928815401',NULL),(114,21822,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','c0d3ff20-6def-478f-99b9-a12411c815dc',NULL),(115,21823,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','88e43cee-3126-4a56-af9f-c29d0ffe07a4',NULL),(122,21872,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','3ded1099-c287-4118-9e4e-32208adb82f9',NULL),(123,21873,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','590289c4-2207-44f5-9efd-8dddd4fdb7f4',NULL),(124,21874,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','a7586fa7-9e7b-456d-82c6-785d6769258a',NULL),(125,21875,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','53fb0883-b660-4d26-bb99-4e0402b8b76d',NULL),(126,21876,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','9fa71727-dc65-4513-8073-34ba6134bbab',NULL),(127,21877,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','4f5d2b81-015f-471a-a02f-71383ea7fed3',NULL);
/*!40000 ALTER TABLE `stc_12_logos` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `stc_16_griditems`
--

LOCK TABLES `stc_16_griditems` WRITE;
/*!40000 ALTER TABLE `stc_16_griditems` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `stc_16_griditems` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `stc_7_videos`
--

LOCK TABLES `stc_7_videos` WRITE;
/*!40000 ALTER TABLE `stc_7_videos` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `stc_7_videos` VALUES (45,18518,1,'2021-06-08 01:46:41','2021-06-08 01:46:41','1e537b0f-a96d-4a2d-90b3-9ba223ea8d2a','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(46,18525,1,'2021-06-08 01:48:46','2021-06-08 01:48:46','5e1f48cd-3f11-4186-8d10-86edad985333','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(55,18541,1,'2021-06-08 01:50:47','2021-06-08 01:50:47','de8a92df-663b-4450-b7d9-5415cb432d54',NULL),(56,18542,1,'2021-06-08 01:50:54','2021-06-08 01:50:54','4a241125-4a0e-4e6d-8d62-29cf15f46b76',NULL),(58,18549,1,'2021-06-08 01:51:27','2021-06-08 01:51:27','d6879b92-1b10-4c93-97fe-fa9b4688f473','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(59,18551,1,'2021-06-08 01:51:27','2021-06-08 01:51:27','202b3402-c0ab-4e7b-8bbc-1af358050d64','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(60,18552,1,'2021-06-08 01:51:27','2021-06-08 01:51:27','ddb37d1e-bfb3-4750-ab6a-ae5c9520d705','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(61,18553,1,'2021-06-08 01:51:27','2021-06-08 01:51:27','3bb2ec4e-a5fc-40c8-b40d-6fe52eba2ac3','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(62,18554,1,'2021-06-08 01:51:27','2021-06-08 01:51:27','8af9dac4-45fa-4696-be33-39b6123ca103','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(63,18561,1,'2021-06-08 01:51:28','2021-06-08 01:51:28','b03cbb3d-0c65-4e02-a30f-b4f87c93f60a','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(64,18563,1,'2021-06-08 01:51:28','2021-06-08 01:51:28','aa9b3dbe-5fa1-48ee-b6bb-a3a691dd4847','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(65,18564,1,'2021-06-08 01:51:28','2021-06-08 01:51:28','cd857622-abc8-4c0e-8512-8a233307e744','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(66,18565,1,'2021-06-08 01:51:28','2021-06-08 01:51:28','b0191c52-fc84-40de-9e75-19c7cf6e001c','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(67,18566,1,'2021-06-08 01:51:28','2021-06-08 01:51:28','51a85260-4267-42b2-85e0-0f4baf873838','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(73,18585,1,'2021-06-08 02:04:00','2021-06-08 02:10:41','a8e2e2ed-095d-4e65-a709-285bee09531e','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(78,18597,1,'2021-06-08 02:04:01','2021-06-08 02:04:01','57cf813d-022e-49fc-adef-08de59ab6367','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(79,18599,1,'2021-06-08 02:04:01','2021-06-08 02:04:01','7100eeda-2716-4151-8688-4554acedb3fa','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(85,18616,1,'2021-06-08 02:09:15','2021-06-08 02:09:15','0b412971-f57f-42cf-aead-12bf574d9f18','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(86,18617,1,'2021-06-08 02:09:15','2021-06-08 02:09:15','db306d05-2d86-4203-a752-493324be6d3a','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(87,18618,1,'2021-06-08 02:09:15','2021-06-08 02:09:15','a595d54e-94aa-41ac-9754-eba7942a385b','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(88,18626,1,'2021-06-08 02:10:42','2021-06-08 02:10:42','6e1a0308-cb42-4f15-aad7-c5d06f41b1e5','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(89,18628,1,'2021-06-08 02:10:42','2021-06-08 02:10:42','9a0b72e5-fbfe-4940-bf47-1f72bbea09d2','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(90,18629,1,'2021-06-08 02:10:42','2021-06-08 02:10:42','96653e8e-f65c-4295-bd50-6e8d8691e587','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(91,18630,1,'2021-06-08 02:10:42','2021-06-08 02:10:42','432699d7-f738-4a0f-975f-f16539ada12f','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(92,18631,1,'2021-06-08 02:10:42','2021-06-08 02:10:42','0259d92d-b673-47d6-8b52-5b175b94e16e','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(93,18638,1,'2021-06-08 02:27:04','2021-06-08 02:27:04','af5ca39b-4c2c-4ee2-a946-2446f06908eb','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(94,18640,1,'2021-06-08 02:27:04','2021-06-08 02:27:04','9e563636-e2e9-4153-beea-02d8ef84d48e','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(95,18641,1,'2021-06-08 02:27:04','2021-06-08 02:27:04','a5c1d5e1-f42f-40a9-b6e0-707aa0c1a42f','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(96,18642,1,'2021-06-08 02:27:04','2021-06-08 02:27:04','891e9e13-4c03-4711-88e1-73ecb9fa7af2','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(97,18643,1,'2021-06-08 02:27:04','2021-06-08 02:27:04','d10c442a-03f6-48ea-ae35-c66ea92322cc','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>');
/*!40000 ALTER TABLE `stc_7_videos` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `stc_7_videos_1`
--

LOCK TABLES `stc_7_videos_1` WRITE;
/*!40000 ALTER TABLE `stc_7_videos_1` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `stc_7_videos_1` VALUES (70,18544,1,'2021-06-09 23:44:53','2021-06-09 23:44:53','28894e3a-8cfb-4e72-9d6e-7ca5bafea040','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(71,18546,1,'2021-06-09 23:44:53','2021-06-09 23:44:53','0994b3a6-a016-4352-8236-15939427bf36','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(72,18547,1,'2021-06-09 23:44:53','2021-06-09 23:44:53','e2453c46-0591-4b1d-b50b-5c95e1457edb','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(73,18548,1,'2021-06-09 23:44:53','2021-06-09 23:44:53','31aff4fa-71d3-4b96-98f6-a5707a839302','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(74,18549,1,'2021-06-09 23:44:53','2021-06-09 23:44:53','62a8c1d4-e43a-4b06-bc66-8e3dc9da2e51','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447109\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(75,18556,1,'2021-06-09 23:44:59','2021-06-09 23:44:59','ee75be20-8a7f-45fc-9373-5989cabb77e7','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(76,18558,1,'2021-06-09 23:45:00','2021-06-09 23:45:00','30137d71-bcf5-4662-9172-d8b8c56c71a5','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(77,18559,1,'2021-06-09 23:45:00','2021-06-09 23:45:00','0df16058-d69a-404e-8102-87d9a22b5662','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(78,18560,1,'2021-06-09 23:45:00','2021-06-09 23:45:00','b1649972-1e82-4b2e-b2eb-4c5a72ac2ba6','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(79,18561,1,'2021-06-09 23:45:00','2021-06-09 23:45:00','3178a1dd-dd18-4813-8a77-319057481d3e','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447109\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(80,18578,1,'2021-06-09 23:45:55','2021-06-09 23:45:55','f2ff8a75-72aa-4659-8481-65fd4d6e3170','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(81,18580,1,'2021-06-09 23:45:55','2021-06-09 23:45:55','2c23149c-0e97-414a-96b0-eb100275965b','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(82,18581,1,'2021-06-09 23:45:55','2021-06-09 23:45:55','f04cbd9a-5808-4651-a5d9-7d7589c2a6db','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(83,18582,1,'2021-06-09 23:45:55','2021-06-09 23:45:55','b916ae15-46dd-403e-996d-7f0864dd4b53','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(84,18583,1,'2021-06-09 23:45:55','2021-06-09 23:45:55','ad604751-a614-4852-bdb0-c6364f2294f2','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447109\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(120,19016,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','0e5fbc19-179f-47da-aedf-72254a368b59','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(121,19035,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','f73add7a-9e8d-44d9-b96a-56316e166d89','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(132,19099,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','7b314715-3c8c-49a2-ae74-183e084a62a7','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(133,19101,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','27c2da22-6f7d-4a53-9d9b-e12938bd2cf2','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(134,19102,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','5f2d9ba2-cbb4-4793-87ce-1676e7745519','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(135,19103,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','0c9169e1-463b-400c-982c-8905b9e1ff60','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(136,19104,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','1f89b0eb-b0f0-46ec-9e3d-604e87fb06f6','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447109\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(137,19111,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','3a4fa11e-70f8-49cf-9233-9fcca2ea5edc','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(138,19113,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','6d61d577-8851-4d36-9055-7fdc7d3d26d9','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(139,19114,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','5830f5fa-46c0-462f-81d2-3d859085a65c','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(140,19115,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','2cc25331-6a50-457a-b8f6-47c8a49f03e9','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(141,19116,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','d31282f5-feec-466a-a669-a937284d7f9c','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447109\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(144,22101,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','11f72d48-d8c6-409c-a2c2-8597f5c24868','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(148,22141,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','a38d6062-4de6-4082-ab57-3a68471a567c','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(155,22270,1,'2021-07-16 03:23:11','2021-07-16 03:23:11','3c5c1d67-f5d4-437c-80e4-941024036b2f','<div style=\"padding:50% 0 0 0;position:relative;\"><iframe src=\"https://player.vimeo.com/video/572803469?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Rural Aid | 20-21 EOFY appeal | Thank you\"></iframe></div><script src=\"https://player.vimeo.com/api/player.js\"></script>'),(156,22271,1,'2021-07-16 03:23:11','2021-07-16 03:23:11','fc832248-cecc-4e6e-b964-cd0b67927362','<div style=\"padding:50% 0 0 0;position:relative;\"><iframe src=\"https://player.vimeo.com/video/572802923?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Rural Aid | 20-21 EOFY appeal | Appeal\"></iframe></div><script src=\"https://player.vimeo.com/api/player.js\"></script>'),(160,22283,1,'2021-07-16 03:53:04','2021-07-16 03:53:04','7838da20-f3fe-4b3b-b7fa-2ea891bba91b','<div style=\"padding:50% 0 0 0;position:relative;\"><iframe src=\"https://player.vimeo.com/video/572803469?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Rural Aid | 20-21 EOFY appeal | Thank you\"></iframe></div><script src=\"https://player.vimeo.com/api/player.js\"></script>'),(163,22300,1,'2021-07-16 03:55:48','2021-07-16 03:55:48','29795f53-5260-4380-916d-1048dfc7ab23','<div style=\"padding:50% 0 0 0;position:relative;\"><iframe src=\"https://player.vimeo.com/video/572803469?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Rural Aid | 20-21 EOFY appeal | Thank you\"></iframe></div><script src=\"https://player.vimeo.com/api/player.js\"></script>'),(166,22315,1,'2021-07-16 03:57:20','2021-07-16 03:57:20','3b471733-f6eb-4c8f-b009-88de992d8ab3','<div style=\"padding:50% 0 0 0;position:relative;\"><iframe src=\"https://player.vimeo.com/video/572803469?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Rural Aid | 20-21 EOFY appeal | Thank you\"></iframe></div><script src=\"https://player.vimeo.com/api/player.js\"></script>'),(170,22330,1,'2021-07-16 04:08:00','2021-07-16 04:08:00','0125cc89-dda4-417e-8b2e-588fc8422482','<div style=\"padding:50% 0 0 0;position:relative;\"><iframe src=\"https://player.vimeo.com/video/572803469?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Rural Aid | 20-21 EOFY appeal | Thank you\"></iframe></div><script src=\"https://player.vimeo.com/api/player.js\"></script>'),(171,22336,1,'2021-07-16 04:09:55','2021-07-16 04:09:55','d64a3427-a2dd-4771-9ca6-9255c2641d04','<div style=\"padding:50% 0 0 0;position:relative;\"><iframe src=\"https://player.vimeo.com/video/572803469?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Rural Aid | 20-21 EOFY appeal | Thank you\"></iframe></div><script src=\"https://player.vimeo.com/api/player.js\"></script>'),(183,22379,1,'2021-07-16 04:25:30','2021-07-16 04:25:30','386582c0-13c8-4f48-916d-8c79b50ccdf2','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/572803469\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(184,22383,1,'2021-07-16 04:25:30','2021-07-16 04:25:30','c8961644-0a46-4ede-ae0b-f80eda2a4b54','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/572802923\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(190,22402,1,'2021-07-16 05:01:46','2021-07-16 05:01:46','84e1b178-ede9-4d6d-91b3-12d8234f59c0','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/572803469\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(191,22406,1,'2021-07-16 05:01:46','2021-07-16 05:01:46','a7b269ba-2d5f-430d-b4c1-9051407975e7','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/572802923\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(196,22424,1,'2021-07-16 05:27:15','2021-07-16 05:27:15','c85acb61-7d9d-4040-b485-43a91aea9258','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/572803469\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(197,22428,1,'2021-07-16 05:27:15','2021-07-16 05:27:15','0288f84c-3d5b-46ee-9e59-fc4cd2ebd210','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/572802923\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>');
/*!40000 ALTER TABLE `stc_7_videos_1` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `stc_8_links`
--

LOCK TABLES `stc_8_links` WRITE;
/*!40000 ALTER TABLE `stc_8_links` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `stc_8_links` VALUES (173,21059,1,'2021-06-21 04:37:18','2021-06-21 04:37:18','e22b729f-6387-41b3-a0e8-e3550a839dc9',NULL,NULL,NULL,'Find our what this means for us and for you.'),(174,21061,1,'2021-06-21 04:37:19','2021-06-21 04:37:19','486409b6-add3-4d49-b77d-db977206e873',NULL,NULL,NULL,'Strategy'),(175,21062,1,'2021-06-21 04:37:19','2021-06-21 04:37:19','3743250b-e770-4352-bcf7-42232fb407f4',NULL,NULL,NULL,'Brand'),(176,21063,1,'2021-06-21 04:37:19','2021-06-21 04:37:19','aaa15c82-b2fb-449e-a2f7-5bc9212a1a82',NULL,NULL,NULL,'Campaign'),(177,21064,1,'2021-06-21 04:37:19','2021-06-21 04:37:19','851cd894-2c1e-4cb9-b562-ab32f163f1d0',NULL,NULL,NULL,'Behaviour change'),(178,21065,1,'2021-06-21 04:37:19','2021-06-21 04:37:19','42ae38a5-ec11-4739-b5aa-7cf860015f25',NULL,NULL,NULL,'Engagement'),(179,21066,1,'2021-06-21 04:37:19','2021-06-21 04:37:19','8b665331-c08f-4192-b321-3461c38c7553',NULL,NULL,NULL,'Video'),(180,21067,1,'2021-06-21 04:37:19','2021-06-21 04:37:19','3c0f33f9-24f2-4722-b46d-f24a076ef245',NULL,NULL,NULL,'Digital'),(181,21068,1,'2021-06-21 04:37:19','2021-06-21 04:37:19','1ca88aa8-1014-491f-aeda-8116bac66f82',NULL,NULL,NULL,'Content'),(182,21097,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','84178fdb-29c2-4a25-a2ee-8d8b628a76eb',NULL,NULL,NULL,'Find our what this means for us and for you.'),(183,21099,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','37e1f59f-84d5-40d7-a343-268d785660ff',NULL,NULL,NULL,'Strategy'),(184,21100,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','c9cfcb50-d2a7-4ebb-bbde-c5cf5cac9388',NULL,NULL,NULL,'Brand'),(185,21101,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','0a763278-0d3b-4524-9aab-0000faf8130e',NULL,NULL,NULL,'Campaign'),(186,21102,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','54ccf11e-2e62-4b29-b7cb-fea8f2932486',NULL,NULL,NULL,'Behaviour change'),(187,21103,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','bad9dcfb-0b47-4417-83d8-0d4a28c7f05f',NULL,NULL,NULL,'Engagement'),(188,21104,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','025cf03b-d422-44a5-995b-99c63010478b',NULL,NULL,NULL,'Video'),(189,21105,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','69b0f36f-0c33-44fd-92e4-716e854b6368',NULL,NULL,NULL,'Digital'),(190,21106,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','1eff62ce-8c2a-4d45-b0f6-20c3e5f06d4f',NULL,NULL,NULL,'Content'),(191,21119,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','17e62889-6f85-4f84-b7b4-2fe9d31fd091',NULL,NULL,NULL,'Find our what this means for us and for you.'),(192,21121,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','ad34be01-7211-48cd-a7c6-d192f81fc4cf',NULL,NULL,NULL,'Strategy'),(193,21122,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','c43faa58-1da6-44f4-9bce-ddfe66d5f880',NULL,NULL,NULL,'Brand'),(194,21123,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','998cd83c-be46-4232-b5c4-8c7edcde59ed',NULL,NULL,NULL,'Campaign'),(195,21124,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','558ec6be-1558-4ec6-adbd-f18dcdbe0c99',NULL,NULL,NULL,'Behaviour change'),(196,21125,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','949f9838-8bbd-48f5-a4f6-bcfa25e98319',NULL,NULL,NULL,'Engagement'),(197,21126,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','c1138a14-d369-4836-95b9-1c5f54f3c59c',NULL,NULL,NULL,'Video'),(198,21127,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','7b6c8cc7-0625-4cbe-b4bc-35b6fe932007',NULL,NULL,NULL,'Digital'),(199,21128,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','c5067757-81b4-4176-9810-15bc398dff22',NULL,NULL,NULL,'Content'),(218,21186,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','8344ad7d-94e0-4046-aeda-7153757909ed',NULL,NULL,NULL,'Find our what this means for us and for you.'),(219,21188,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','6fbed7c5-6df6-4525-956a-23edbb0682aa',NULL,NULL,NULL,'Strategy'),(220,21189,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','dcd6d39b-21a4-4372-885c-9ca5a640328e',NULL,NULL,NULL,'Brand'),(221,21190,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','7317bccf-db3c-4c7a-b787-d4c62b4df9f7',NULL,NULL,NULL,'Campaign'),(222,21191,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','b09c6bfa-9ec1-46a2-b818-106a1a7da555',NULL,NULL,NULL,'Behaviour change'),(223,21192,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','e2e58fa5-1018-4f9c-946d-b8561744e4f0',NULL,NULL,NULL,'Engagement'),(224,21193,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','0a43dbf6-c50a-4147-b93d-3a664ac69615',NULL,NULL,NULL,'Video'),(225,21194,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','36c6c166-4207-4930-8c0b-50ee4718d2f7',NULL,NULL,NULL,'Digital'),(226,21195,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','419f5956-d714-4614-807b-73adcbbddf2d',NULL,NULL,NULL,'Content'),(227,21209,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','7d351ee6-3bb7-4424-b1c0-ac15582759e2',NULL,NULL,NULL,'Find our what this means for us and for you.'),(228,21211,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','caaacfad-a752-4102-ab8b-da4d3abc53dc',NULL,NULL,NULL,'Strategy'),(229,21212,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','517cea43-22d3-4ca0-9e3d-3aa914a28c0c',NULL,NULL,NULL,'Brand'),(230,21213,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','6be4bc54-fddc-4381-a93e-e5ae4ad519a2',NULL,NULL,NULL,'Campaign'),(231,21214,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','8c00d2e4-869e-4aa8-8c5f-f85294224161',NULL,NULL,NULL,'Behaviour change'),(232,21215,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','f6bf58a1-936e-49a6-84dc-f5e1f5773c70',NULL,NULL,NULL,'Engagement'),(233,21216,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','181b36a1-baa5-47c2-bd56-8dca594626d6',NULL,NULL,NULL,'Video'),(234,21217,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','007cffef-b6ff-4622-888e-02474de23bd9',NULL,NULL,NULL,'Digital'),(235,21218,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','8916f418-714d-444a-adaa-ee3bc478d3e1',NULL,NULL,NULL,'Content'),(236,21231,1,'2021-06-21 05:06:48','2021-06-21 05:06:48','48119fa3-9499-45af-ab6a-b630c3294ed3',NULL,NULL,NULL,'Find our what this means for us and for you.'),(237,21252,1,'2021-06-21 05:14:24','2021-06-21 05:14:24','ab60b12a-27b5-4b63-adbf-0cfa7721e263',NULL,NULL,NULL,'Find our what this means for us and for you.'),(238,21279,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','9cf0e71c-0fa2-4d31-98c5-08f8c7e49fc0',NULL,NULL,NULL,'Find our what this means for us and for you.'),(239,21378,1,'2021-07-12 23:11:46','2021-07-12 23:11:46','b07605a1-855a-4d69-990a-dea748f8e0bf',NULL,NULL,NULL,'Find our what this means for us and for you.'),(240,21405,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','43b2a138-748d-40ef-bbf9-1bcbad02a55e',NULL,NULL,NULL,'Find our what this means for us and for you.'),(241,21432,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','284b1493-556d-497d-ac4a-0eb660f9c626',NULL,NULL,NULL,'Find our what this means for us and for you.'),(244,21512,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','277dd869-96df-49ca-8aca-7402fd60abfc',NULL,NULL,NULL,'Find our what this means for us and for you.'),(245,21539,1,'2021-07-12 23:40:18','2021-07-12 23:40:18','3764427d-4ff4-4419-ae2a-f99bd24c5e41',NULL,NULL,NULL,'Find our what this means for us and for you.'),(246,21566,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','ff57efaa-21a4-4186-8e0f-8103e7f1dd10',NULL,NULL,NULL,'Find our what this means for us and for you.'),(247,21593,1,'2021-07-12 23:48:23','2021-07-12 23:48:23','bab71b36-5a0c-47e8-90a8-5e70f14cace4',NULL,NULL,NULL,'Find our what this means for us and for you.'),(248,21620,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','f9db1c78-e1e1-42d4-8914-99dff2e0ce8b',NULL,NULL,NULL,'Find our what this means for us and for you.'),(249,21647,1,'2021-07-12 23:54:38','2021-07-12 23:54:38','6ee0613f-b43a-4f5d-84a4-fc2aab3d1453',NULL,NULL,NULL,'Find our what this means for us and for you.'),(250,21674,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','36062832-e5a4-47ed-9d59-bbeed41616e7',NULL,NULL,NULL,'Find our what this means for us and for you.'),(251,21701,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','c8dbee84-0e73-4adf-85bf-a8bc4f6f4839',NULL,NULL,NULL,'Find our what this means for us and for you.'),(252,21728,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','5338831e-a9db-4bdb-8609-0f001548c578',NULL,NULL,NULL,'Find our what this means for us and for you.'),(254,21781,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','cb90c28c-aa8f-4a46-8a96-680d793f4781',NULL,NULL,NULL,'Find our what this means for us and for you.'),(255,21808,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','07ea881a-ad38-44fc-b66e-8ab7d5e1c417',NULL,NULL,NULL,'Find our what this means for us and for you.'),(257,21862,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','0a4b5496-9112-4aaa-be3c-c4d79df53e08',NULL,NULL,NULL,'Find our what this means for us and for you.');
/*!40000 ALTER TABLE `stc_8_links` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `stc_9_griditems`
--

LOCK TABLES `stc_9_griditems` WRITE;
/*!40000 ALTER TABLE `stc_9_griditems` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `stc_9_griditems` VALUES (251,21052,1,'2021-06-21 04:37:18','2021-06-21 04:37:18','3e4b8f56-9b28-4a76-ac8d-0f50453575d7','Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.','We’re the agency for big life moments.'),(252,21053,1,'2021-06-21 04:37:18','2021-06-21 04:37:18','957a2e84-c1b2-4a44-b27f-5e6f97aca848','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(253,21054,1,'2021-06-21 04:37:18','2021-06-21 04:37:18','3dba85aa-c45d-4be7-97b7-6e00a268bde8','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(254,21055,1,'2021-06-21 04:37:18','2021-06-21 04:37:18','d47394e6-e459-44d7-876a-e678bde5ff71','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(255,21056,1,'2021-06-21 04:37:18','2021-06-21 04:37:18','4b1ae646-5b8c-4122-a4b8-38b1481ad839','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(256,21090,1,'2021-06-21 04:44:59','2021-06-21 04:44:59','3fa91351-3f7d-4aba-b6e8-6f027cd28416','Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.','We’re the agency for big life moments.'),(257,21091,1,'2021-06-21 04:44:59','2021-06-21 04:44:59','ede6096f-3ca5-4e9e-8405-10c5d43afd97','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(258,21092,1,'2021-06-21 04:44:59','2021-06-21 04:44:59','3eae3bc8-f784-4269-b4dc-aeced85ecefc','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(259,21093,1,'2021-06-21 04:44:59','2021-06-21 04:44:59','24d84333-087f-4564-9c86-f107e85752fd','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(260,21094,1,'2021-06-21 04:44:59','2021-06-21 04:44:59','0ee87bc1-fb3b-45a4-b6bb-132be721f457','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(261,21112,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','df532017-7211-44c6-b816-19863cf4ba86','Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.','We’re the agency for big life moments.'),(262,21113,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','b5e6e6c1-7ba0-46bb-afba-cdc21cffc8ef','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(263,21114,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','e408cd62-e68b-4850-9906-16d271d87b24','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(264,21115,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','6d08d112-5689-484b-87cd-f6925551c74b','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(265,21116,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','876e11f1-3b32-4cb8-9590-7e044b3f46e5','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(276,21179,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','32f05e48-3b13-4bab-ac1f-46eb028f8818','Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.','We’re the agency for big life moments.'),(277,21180,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','d63ad7f1-086a-4787-862e-10eaaedabf92','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(278,21181,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','398363b2-4dd2-45ce-bb92-204631f6f68f','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(279,21182,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','749d88dd-10b0-4e51-a2db-6c228842d95c','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(280,21183,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','f49c5636-9611-4874-8311-f19fd60f24d2','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(281,21202,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','335f6582-1edb-4a08-84cb-e838fa29cc05','Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.','We’re the agency for big life moments.'),(282,21203,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','432a09d0-dcd1-4e49-adc5-ef870237c315','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(283,21204,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','81b9aedd-a1f1-481b-8c60-1cc9ae14cc91','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(284,21205,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','8daba57b-9ad2-4f9d-b294-943b3cedc8a8','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(285,21206,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','2a8b55fe-323f-4cd2-8ef8-62ec1ea89d92','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(286,21224,1,'2021-06-21 05:06:48','2021-06-21 05:06:48','c2377410-11d1-47bd-bf3d-595fe8d31712','Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.','We’re the agency for big life moments.'),(287,21225,1,'2021-06-21 05:06:48','2021-06-21 05:06:48','005489e8-155b-4394-b845-b0d6434eaf2b','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(288,21226,1,'2021-06-21 05:06:48','2021-06-21 05:06:48','09bb2de2-c521-46b9-80a8-c82b5edc14a2','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(289,21227,1,'2021-06-21 05:06:48','2021-06-21 05:06:48','a96cf1c3-631a-46be-b2b7-c94fe4f31aae','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(290,21228,1,'2021-06-21 05:06:48','2021-06-21 05:06:48','f74453d2-5c27-4bbe-a604-8219c990691f','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(291,21245,1,'2021-06-21 05:14:24','2021-06-21 05:14:24','c9033d64-dbc8-4b17-bffa-5cbe7ec4ef4c','Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.','We’re the agency for big life moments.'),(292,21246,1,'2021-06-21 05:14:24','2021-06-21 05:14:24','c12872d9-928c-4869-902f-31de1f6057fa','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(293,21247,1,'2021-06-21 05:14:24','2021-06-21 05:14:24','dd5f4b56-f414-4eef-aa6d-2fae3f0b79cb','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(294,21248,1,'2021-06-21 05:14:24','2021-06-21 05:14:24','15de7f34-202b-45a4-8b41-6cfc3dee2744','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(295,21249,1,'2021-06-21 05:14:24','2021-06-21 05:14:24','8c52b62d-a711-4bae-9528-d6b255481ece','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(296,21272,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','b2cd3a84-3edc-4938-9944-c109773496eb','Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.','We’re the agency for big life moments.'),(297,21273,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','61b8bfbc-40d7-4aeb-886f-d61250731ca6','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(298,21274,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','87014742-925c-4262-a371-986742ccf7c6','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(299,21275,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','84658b98-d1eb-4dc4-ba7b-bbc020887956','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(300,21276,1,'2021-06-21 05:15:33','2021-06-21 05:15:33','a4b2b0f0-0839-44ba-8b2f-d6a87834ea76','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(301,21371,1,'2021-07-12 23:11:46','2021-07-12 23:11:46','8a737201-f85b-4f20-a593-0099dec9fcff','Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.','We’re the agency for big life moments.'),(302,21372,1,'2021-07-12 23:11:46','2021-07-12 23:11:46','2be0c828-4772-41ec-b91b-87fb0f5e9f4f','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(303,21373,1,'2021-07-12 23:11:46','2021-07-12 23:11:46','179465df-90bd-41f5-9733-3e655f224931','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(304,21374,1,'2021-07-12 23:11:46','2021-07-12 23:11:46','72a1406c-5c9e-4090-9772-c441417fbcc4','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(305,21375,1,'2021-07-12 23:11:46','2021-07-12 23:11:46','a1e53eb6-99f8-44c4-9713-c9553159d556','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(306,21398,1,'2021-07-12 23:13:42','2021-07-12 23:13:42','3ff6b6cf-c8f6-4c83-b330-511b7490b465','Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.','We’re the agency for big life moments.'),(307,21399,1,'2021-07-12 23:13:42','2021-07-12 23:13:42','973735b5-670f-41fe-8255-6fc547ea48c8','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(308,21400,1,'2021-07-12 23:13:42','2021-07-12 23:13:42','9780a00d-f409-4bb9-b01d-16a7105cfd0e','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(309,21401,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','65a5500f-cb96-483b-8fd1-89f1a3f4134e','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(310,21402,1,'2021-07-12 23:13:43','2021-07-12 23:13:43','2627f3e3-a0bc-4060-924a-36eafc8b6c9e','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(311,21425,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','bc8a9cbe-46c8-4720-9566-4c1d02e34b61','Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.','We’re the agency for big life moments.'),(312,21426,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','0e1130d9-92ea-40a9-9f70-fac0b98f4d4a','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(313,21427,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','5fc443f1-17da-4374-a206-a3eb1164368f','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(314,21428,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','1518fc15-58e2-4bcd-8c74-e8e6baae3c30','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(315,21429,1,'2021-07-12 23:15:08','2021-07-12 23:15:08','8c7e7dce-48d4-48b6-94dc-b66e6ef422a4','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(326,21505,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','17e7fbde-a6ad-4c1f-8480-2fc5383e6ccc','Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.','We’re the agency for big life moments.'),(327,21506,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','3f0415dc-db87-42bc-a92e-93bb2d40774b','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(328,21507,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','44bf2c0a-aef1-407a-b282-dd76222be98b','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(329,21508,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','342befcf-f368-4e65-a6a8-1feafad8cc0c','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(330,21509,1,'2021-07-12 23:32:59','2021-07-12 23:32:59','7c1d2e70-db7b-4515-9254-0adf6ea2195c','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(331,21532,1,'2021-07-12 23:40:17','2021-07-12 23:40:17','92ba3662-b432-40ce-82cb-6996c778c7ed','Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.','We’re the agency for big life moments.'),(332,21533,1,'2021-07-12 23:40:17','2021-07-12 23:40:17','a5f7afb2-2e8c-4e75-83b3-e021b1abf638','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(333,21534,1,'2021-07-12 23:40:17','2021-07-12 23:40:17','3d03db82-bc8f-46d6-83f4-a1745c542365','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(334,21535,1,'2021-07-12 23:40:17','2021-07-12 23:40:17','ed80af19-58fc-457b-9fc2-ed895c429e19','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(335,21536,1,'2021-07-12 23:40:17','2021-07-12 23:40:17','ed205fe5-bafb-4e93-9e0f-d40078667ac5','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(336,21559,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','46119daa-15e2-4e75-a1ed-f21ed63fd044','Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.','We’re the agency for big life moments.'),(337,21560,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','e0c451e3-3f41-4fd8-97b2-5a5f6f4955b1','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(338,21561,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','49b27116-f10b-49ed-8840-6668f0987bb2','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(339,21562,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','32c466d9-92bb-45ba-bd06-5c62047ad5b5','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(340,21563,1,'2021-07-12 23:46:00','2021-07-12 23:46:00','01441c27-6956-4f50-92c0-8f54e4944295','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(341,21586,1,'2021-07-12 23:48:23','2021-07-12 23:48:23','f64c7010-5691-4f6a-bce7-19c739248297','Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.','We’re the agency for big life moments.'),(342,21587,1,'2021-07-12 23:48:23','2021-07-12 23:48:23','45d9fc63-2c74-482d-bd83-fdd30c5828f9','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(343,21588,1,'2021-07-12 23:48:23','2021-07-12 23:48:23','c18ea471-c48c-461c-855d-18f7a5d22b40','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(344,21589,1,'2021-07-12 23:48:23','2021-07-12 23:48:23','aba5ccc7-b5c0-4073-aeae-02722b8373b5','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(345,21590,1,'2021-07-12 23:48:23','2021-07-12 23:48:23','76a18b96-1fb1-44fd-98cb-ab928cf92144','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(346,21613,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','70f3eab4-375e-448f-abd1-d41634914f71','Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.','We’re the agency for big life moments.'),(347,21614,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','08635b43-839e-4ecb-b84a-21a1e830951d','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(348,21615,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','39497e13-2fc0-445d-af08-40d52bc4099e','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(349,21616,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','8dbc0c5e-e82e-43ef-a573-95c89a4dd8fb','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(350,21617,1,'2021-07-12 23:48:59','2021-07-12 23:48:59','faea049d-8be6-41c2-ae53-109e48ca2b93','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(351,21640,1,'2021-07-12 23:54:37','2021-07-12 23:54:37','67366ef6-6220-4db1-9e77-5cfc1de19a9f','Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.','We’re the agency for big life moments.'),(352,21641,1,'2021-07-12 23:54:37','2021-07-12 23:54:37','1f82964f-4ceb-4db6-9875-79eff0646518','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(353,21642,1,'2021-07-12 23:54:37','2021-07-12 23:54:37','12ce1a81-4710-47a7-a959-226517100f01','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(354,21643,1,'2021-07-12 23:54:37','2021-07-12 23:54:37','80de8588-1f51-4e77-a4b8-5e24b9545941','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(355,21644,1,'2021-07-12 23:54:37','2021-07-12 23:54:37','eac92029-0481-4c77-a4c7-6ffdc2fab6cc','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(356,21667,1,'2021-07-12 23:56:17','2021-07-12 23:56:17','e87f4603-5821-434a-bac4-abd69d20c0c3','Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.','We’re the agency for big life moments.'),(357,21668,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','7ea11883-0538-4d78-bd00-227b9a1c64fe','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(358,21669,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','d4d2bd91-5ae3-40ba-bcb7-887a1e3ff70c','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(359,21670,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','d6bc70c4-7a06-44ce-8683-d2205b71f14f','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(360,21671,1,'2021-07-12 23:56:18','2021-07-12 23:56:18','4f9fb26e-7242-4f90-88c3-0eea4c73ddf3','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(361,21694,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','06f58eaa-2df4-4267-bbbc-ab91000d61ba','Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.','We’re the agency for big life moments.'),(362,21695,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','d3de27cf-d472-44f8-b199-c09642e95c50','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(363,21696,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','f8350c86-a5b7-41b4-8fbe-ed3e7caea354','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(364,21697,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','19191537-a161-402e-8667-db8c32249053','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(365,21698,1,'2021-07-12 23:58:02','2021-07-12 23:58:02','fab63dbb-c4e8-4698-8886-f20a04f95246','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(366,21721,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','0fe7637e-1509-4773-b44f-a04ee654f53f','Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.','We’re the agency for big life moments.'),(367,21722,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','357ac7a6-013e-49bb-9f5b-948ce596425b','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(368,21723,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','8d3bcf30-e9d5-4f49-bfbe-a4f1cf31a6b8','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(369,21724,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','95c2b1c6-0a24-4083-9cd8-ee0f69c591e9','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(370,21725,1,'2021-07-12 23:58:23','2021-07-12 23:58:23','c035dfc1-d45e-4a19-a131-1dc11e7a341f','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(376,21774,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','d2c32f5c-7200-4586-91dc-8d89525bb8d8','Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.','We’re the agency for big life moments.'),(377,21775,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','f9b99abe-e6ce-4c7c-b6ce-5b1b4dd2324e','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(378,21776,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','51351bc4-a02f-4bd5-8812-29c8623f626c','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(379,21777,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','ddf0a0eb-2bc6-4b73-93a9-525d98cfb719','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(380,21778,1,'2021-07-13 00:07:17','2021-07-13 00:07:17','22b70c65-bdec-4c26-86d0-27ae423f94e2','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(381,21801,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','205c010f-8053-4a03-884b-9f939429d767','Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.','We’re the agency for big life moments.'),(382,21802,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','e545d0a8-7010-4946-8d73-1c8d39c5f658','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(383,21803,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','52462d53-d63e-4492-8857-95b96eab547f','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(384,21804,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','58613812-0fd5-4747-b9bc-ef0e43441a15','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(385,21805,1,'2021-07-13 00:07:19','2021-07-13 00:07:19','ab3a4c33-6079-469b-9864-2f9707ab9b30','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(391,21855,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','c6ab7788-bd19-45a0-b358-b7fe5451835d','Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.','We’re the agency for big life moments.'),(392,21856,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','6600b81b-91ed-4b14-b474-26407bb96e19','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(393,21857,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','6890a551-8045-458d-ac40-ba3dd9197da7','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(394,21858,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','88d8d14e-c747-437b-ab3b-a71f1b87eff1','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(395,21859,1,'2021-07-13 00:12:32','2021-07-13 00:12:32','310a0d07-40c3-4c22-bc94-cf82fce26252','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.');
/*!40000 ALTER TABLE `stc_9_griditems` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `stc_griditems`
--

LOCK TABLES `stc_griditems` WRITE;
/*!40000 ALTER TABLE `stc_griditems` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `stc_griditems` VALUES (251,21052,1,'2021-06-21 04:37:18','2021-06-21 04:37:18','3e4b8f56-9b28-4a76-ac8d-0f50453575d7','Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.','We’re the agency for big life moments.'),(252,21053,1,'2021-06-21 04:37:18','2021-06-21 04:37:18','957a2e84-c1b2-4a44-b27f-5e6f97aca848','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(253,21054,1,'2021-06-21 04:37:18','2021-06-21 04:37:18','3dba85aa-c45d-4be7-97b7-6e00a268bde8','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(254,21055,1,'2021-06-21 04:37:18','2021-06-21 04:37:18','d47394e6-e459-44d7-876a-e678bde5ff71','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(255,21056,1,'2021-06-21 04:37:18','2021-06-21 04:37:18','4b1ae646-5b8c-4122-a4b8-38b1481ad839','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(256,21090,1,'2021-06-21 04:44:59','2021-06-21 04:44:59','3fa91351-3f7d-4aba-b6e8-6f027cd28416','Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.','We’re the agency for big life moments.'),(257,21091,1,'2021-06-21 04:44:59','2021-06-21 04:44:59','ede6096f-3ca5-4e9e-8405-10c5d43afd97','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(258,21092,1,'2021-06-21 04:44:59','2021-06-21 04:44:59','3eae3bc8-f784-4269-b4dc-aeced85ecefc','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(259,21093,1,'2021-06-21 04:44:59','2021-06-21 04:44:59','24d84333-087f-4564-9c86-f107e85752fd','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(260,21094,1,'2021-06-21 04:44:59','2021-06-21 04:44:59','0ee87bc1-fb3b-45a4-b6bb-132be721f457','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(261,21112,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','df532017-7211-44c6-b816-19863cf4ba86','Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.','We’re the agency for big life moments.'),(262,21113,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','b5e6e6c1-7ba0-46bb-afba-cdc21cffc8ef','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(263,21114,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','e408cd62-e68b-4850-9906-16d271d87b24','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(264,21115,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','6d08d112-5689-484b-87cd-f6925551c74b','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(265,21116,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','876e11f1-3b32-4cb8-9590-7e044b3f46e5','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(276,21179,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','32f05e48-3b13-4bab-ac1f-46eb028f8818','Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.','We’re the agency for big life moments.'),(277,21180,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','d63ad7f1-086a-4787-862e-10eaaedabf92','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(278,21181,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','398363b2-4dd2-45ce-bb92-204631f6f68f','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(279,21182,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','749d88dd-10b0-4e51-a2db-6c228842d95c','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(280,21183,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','f49c5636-9611-4874-8311-f19fd60f24d2','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.'),(281,21202,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','335f6582-1edb-4a08-84cb-e838fa29cc05','Our work focuses around significant human decisions. Leading people through these moments takes an appreciation for and skill to capture the spectrum of the human experience—deep pain, euphoria and everything between.','We’re the agency for big life moments.'),(282,21203,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','432a09d0-dcd1-4e49-adc5-ef870237c315','No divas here. We take a pragmatic, common sense approach to strategic and creative work—many of our clients find this refreshing because we understand their context and goals.','We solve our clients’ problems.'),(283,21204,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','81b9aedd-a1f1-481b-8c60-1cc9ae14cc91','Purpose-driven work is trendy right now. But our purpose to make a meaningful difference to people’s lives runs deep—it determines the kind of work we do, how we treat each other and our drive to go above and beyond for our clients.','Our purpose drives every decision and action.'),(284,21205,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','8daba57b-9ad2-4f9d-b294-943b3cedc8a8','All of our creative work is backed by research, accurate insights and robust strategies. For our clients, it means they have hard evidence and confidence to take the next step—and influence to bring their teams and leaders along for the ride.','Our clients have confidence and influence.'),(285,21206,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','2a8b55fe-323f-4cd2-8ef8-62ec1ea89d92','Our origin story is a strategic communications agency and good-quality words still mean as much to us today as they did on day one.','We’re a content-first agency.');
/*!40000 ALTER TABLE `stc_griditems` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `stc_links`
--

LOCK TABLES `stc_links` WRITE;
/*!40000 ALTER TABLE `stc_links` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `stc_links` VALUES (173,21059,1,'2021-06-21 04:37:18','2021-06-21 04:37:18','e22b729f-6387-41b3-a0e8-e3550a839dc9',NULL,NULL,NULL,'Find our what this means for us and for you.'),(174,21061,1,'2021-06-21 04:37:19','2021-06-21 04:37:19','486409b6-add3-4d49-b77d-db977206e873',NULL,NULL,NULL,'Strategy'),(175,21062,1,'2021-06-21 04:37:19','2021-06-21 04:37:19','3743250b-e770-4352-bcf7-42232fb407f4',NULL,NULL,NULL,'Brand'),(176,21063,1,'2021-06-21 04:37:19','2021-06-21 04:37:19','aaa15c82-b2fb-449e-a2f7-5bc9212a1a82',NULL,NULL,NULL,'Campaign'),(177,21064,1,'2021-06-21 04:37:19','2021-06-21 04:37:19','851cd894-2c1e-4cb9-b562-ab32f163f1d0',NULL,NULL,NULL,'Behaviour change'),(178,21065,1,'2021-06-21 04:37:19','2021-06-21 04:37:19','42ae38a5-ec11-4739-b5aa-7cf860015f25',NULL,NULL,NULL,'Engagement'),(179,21066,1,'2021-06-21 04:37:19','2021-06-21 04:37:19','8b665331-c08f-4192-b321-3461c38c7553',NULL,NULL,NULL,'Video'),(180,21067,1,'2021-06-21 04:37:19','2021-06-21 04:37:19','3c0f33f9-24f2-4722-b46d-f24a076ef245',NULL,NULL,NULL,'Digital'),(181,21068,1,'2021-06-21 04:37:19','2021-06-21 04:37:19','1ca88aa8-1014-491f-aeda-8116bac66f82',NULL,NULL,NULL,'Content'),(182,21097,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','84178fdb-29c2-4a25-a2ee-8d8b628a76eb',NULL,NULL,NULL,'Find our what this means for us and for you.'),(183,21099,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','37e1f59f-84d5-40d7-a343-268d785660ff',NULL,NULL,NULL,'Strategy'),(184,21100,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','c9cfcb50-d2a7-4ebb-bbde-c5cf5cac9388',NULL,NULL,NULL,'Brand'),(185,21101,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','0a763278-0d3b-4524-9aab-0000faf8130e',NULL,NULL,NULL,'Campaign'),(186,21102,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','54ccf11e-2e62-4b29-b7cb-fea8f2932486',NULL,NULL,NULL,'Behaviour change'),(187,21103,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','bad9dcfb-0b47-4417-83d8-0d4a28c7f05f',NULL,NULL,NULL,'Engagement'),(188,21104,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','025cf03b-d422-44a5-995b-99c63010478b',NULL,NULL,NULL,'Video'),(189,21105,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','69b0f36f-0c33-44fd-92e4-716e854b6368',NULL,NULL,NULL,'Digital'),(190,21106,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','1eff62ce-8c2a-4d45-b0f6-20c3e5f06d4f',NULL,NULL,NULL,'Content'),(191,21119,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','17e62889-6f85-4f84-b7b4-2fe9d31fd091',NULL,NULL,NULL,'Find our what this means for us and for you.'),(192,21121,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','ad34be01-7211-48cd-a7c6-d192f81fc4cf',NULL,NULL,NULL,'Strategy'),(193,21122,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','c43faa58-1da6-44f4-9bce-ddfe66d5f880',NULL,NULL,NULL,'Brand'),(194,21123,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','998cd83c-be46-4232-b5c4-8c7edcde59ed',NULL,NULL,NULL,'Campaign'),(195,21124,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','558ec6be-1558-4ec6-adbd-f18dcdbe0c99',NULL,NULL,NULL,'Behaviour change'),(196,21125,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','949f9838-8bbd-48f5-a4f6-bcfa25e98319',NULL,NULL,NULL,'Engagement'),(197,21126,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','c1138a14-d369-4836-95b9-1c5f54f3c59c',NULL,NULL,NULL,'Video'),(198,21127,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','7b6c8cc7-0625-4cbe-b4bc-35b6fe932007',NULL,NULL,NULL,'Digital'),(199,21128,1,'2021-06-21 04:45:00','2021-06-21 04:45:00','c5067757-81b4-4176-9810-15bc398dff22',NULL,NULL,NULL,'Content'),(218,21186,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','8344ad7d-94e0-4046-aeda-7153757909ed',NULL,NULL,NULL,'Find our what this means for us and for you.'),(219,21188,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','6fbed7c5-6df6-4525-956a-23edbb0682aa',NULL,NULL,NULL,'Strategy'),(220,21189,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','dcd6d39b-21a4-4372-885c-9ca5a640328e',NULL,NULL,NULL,'Brand'),(221,21190,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','7317bccf-db3c-4c7a-b787-d4c62b4df9f7',NULL,NULL,NULL,'Campaign'),(222,21191,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','b09c6bfa-9ec1-46a2-b818-106a1a7da555',NULL,NULL,NULL,'Behaviour change'),(223,21192,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','e2e58fa5-1018-4f9c-946d-b8561744e4f0',NULL,NULL,NULL,'Engagement'),(224,21193,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','0a43dbf6-c50a-4147-b93d-3a664ac69615',NULL,NULL,NULL,'Video'),(225,21194,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','36c6c166-4207-4930-8c0b-50ee4718d2f7',NULL,NULL,NULL,'Digital'),(226,21195,1,'2021-06-21 04:51:41','2021-06-21 04:51:41','419f5956-d714-4614-807b-73adcbbddf2d',NULL,NULL,NULL,'Content'),(227,21209,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','7d351ee6-3bb7-4424-b1c0-ac15582759e2',NULL,NULL,NULL,'Find our what this means for us and for you.'),(228,21211,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','caaacfad-a752-4102-ab8b-da4d3abc53dc',NULL,NULL,NULL,'Strategy'),(229,21212,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','517cea43-22d3-4ca0-9e3d-3aa914a28c0c',NULL,NULL,NULL,'Brand'),(230,21213,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','6be4bc54-fddc-4381-a93e-e5ae4ad519a2',NULL,NULL,NULL,'Campaign'),(231,21214,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','8c00d2e4-869e-4aa8-8c5f-f85294224161',NULL,NULL,NULL,'Behaviour change'),(232,21215,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','f6bf58a1-936e-49a6-84dc-f5e1f5773c70',NULL,NULL,NULL,'Engagement'),(233,21216,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','181b36a1-baa5-47c2-bd56-8dca594626d6',NULL,NULL,NULL,'Video'),(234,21217,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','007cffef-b6ff-4622-888e-02474de23bd9',NULL,NULL,NULL,'Digital'),(235,21218,1,'2021-06-21 04:57:35','2021-06-21 04:57:35','8916f418-714d-444a-adaa-ee3bc478d3e1',NULL,NULL,NULL,'Content');
/*!40000 ALTER TABLE `stc_links` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `stc_logos`
--

LOCK TABLES `stc_logos` WRITE;
/*!40000 ALTER TABLE `stc_logos` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `stc_logos` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `stc_videos`
--

LOCK TABLES `stc_videos` WRITE;
/*!40000 ALTER TABLE `stc_videos` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `stc_videos` VALUES (1,18387,1,'2021-06-09 23:38:52','2021-06-09 23:38:52','1212428c-cd15-4e13-b4b9-5527fe267594',NULL),(2,18391,1,'2021-06-09 23:39:20','2021-06-09 23:39:20','ab01317f-c0b9-40aa-a78f-18da47c3a2cf',NULL),(3,18395,1,'2021-06-09 23:41:02','2021-06-09 23:41:02','5f3d83f1-fd7a-4d53-8959-511952a85f5c','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(4,18399,1,'2021-06-09 23:41:10','2021-06-09 23:41:10','10db1a2e-9909-4cd4-8853-e27992824231','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(5,18400,1,'2021-06-09 23:41:10','2021-06-09 23:41:10','e119bb76-09c9-4b3e-b368-356b9aea7eae',NULL),(6,18404,1,'2021-06-09 23:41:15','2021-06-09 23:41:15','f38c3808-6fe1-430e-b8b8-67806c378134','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(7,18408,1,'2021-06-09 23:41:18','2021-06-09 23:41:18','3f4c5e04-1d5f-4b92-b349-f99f7deb3208','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(8,18413,1,'2021-06-09 23:41:20','2021-06-09 23:41:20','f7e1af26-1bf8-46ce-8b6f-6fa060eb214d','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(9,18415,1,'2021-06-09 23:41:20','2021-06-09 23:41:20','85840286-aaee-4bb7-890e-cd73e723cfe3',NULL),(10,18419,1,'2021-06-09 23:41:36','2021-06-09 23:41:36','8e8b0b05-941b-4946-8025-5e4e4f599c05','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(11,18421,1,'2021-06-09 23:41:36','2021-06-09 23:41:36','3b261245-a489-44a7-9eed-148d943b07da',NULL),(12,18425,1,'2021-06-09 23:41:55','2021-06-09 23:41:55','2dae1109-4095-4df4-a62b-f51cc740d317','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(13,18427,1,'2021-06-09 23:41:55','2021-06-09 23:41:55','334dc317-11a2-4238-a7f5-a0634bad1f3f','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(14,18431,1,'2021-06-09 23:42:03','2021-06-09 23:42:03','e796b15f-d7bf-4ee9-adbe-168e0c87ed53','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(15,18433,1,'2021-06-09 23:42:03','2021-06-09 23:42:03','7434a7cb-50a2-40be-8ea4-b161107c0053','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(16,18434,1,'2021-06-09 23:42:03','2021-06-09 23:42:03','1cefed3d-e934-4734-881a-890da759917b',NULL),(17,18438,1,'2021-06-09 23:42:15','2021-06-09 23:42:15','d692217e-a0ab-4a77-9879-84cc3b9c17ef','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(18,18440,1,'2021-06-09 23:42:15','2021-06-09 23:42:15','fa364655-8f6b-4f4c-824f-392dd5f47bff','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(19,18441,1,'2021-06-09 23:42:15','2021-06-09 23:42:15','775739b1-3366-4b37-8f7d-5eacf71bec34',NULL),(20,18445,1,'2021-06-09 23:42:37','2021-06-09 23:42:37','de18f886-bceb-4278-80e3-de415ecddc80','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(21,18447,1,'2021-06-09 23:42:37','2021-06-09 23:42:37','9a82c581-557a-46c3-ad71-984eb12ad466','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(22,18448,1,'2021-06-09 23:42:37','2021-06-09 23:42:37','dbfdf205-a901-4995-af95-e605261413f1','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(23,18452,1,'2021-06-09 23:42:48','2021-06-09 23:42:48','a4dde388-8814-4503-8ed9-312d30534a8e','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(24,18454,1,'2021-06-09 23:42:48','2021-06-09 23:42:48','ac63423d-a86a-44d4-80e4-2bb12efd74e1','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(25,18455,1,'2021-06-09 23:42:48','2021-06-09 23:42:48','3c0567f1-4c85-4020-bc47-09ddfbfe1b4a','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(26,18456,1,'2021-06-09 23:42:48','2021-06-09 23:42:48','f08ff1fd-9b68-4c51-87b8-1bb3ec4bba34',NULL),(27,18460,1,'2021-06-09 23:43:00','2021-06-09 23:43:00','2f91a6bb-0d61-4324-8d0e-ef1a9fcdaed8','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(28,18462,1,'2021-06-09 23:43:00','2021-06-09 23:43:00','cbffd65d-5294-4279-ac1a-dfc61b1085e2','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(29,18463,1,'2021-06-09 23:43:00','2021-06-09 23:43:00','dbe9af3e-0d58-477a-b723-49dc5b81d3e5','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(30,18464,1,'2021-06-09 23:43:00','2021-06-09 23:43:00','96e8e079-93bb-4390-afea-1d79538b5e1e',NULL),(31,18468,1,'2021-06-09 23:43:21','2021-06-09 23:43:21','66efdcf7-f824-4a5f-bef0-4eef5f6d5e3a','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(32,18470,1,'2021-06-09 23:43:21','2021-06-09 23:43:21','c05cb4b6-30e6-4904-8165-4cbc75941261','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(33,18471,1,'2021-06-09 23:43:21','2021-06-09 23:43:21','19a27380-54f7-4895-9594-d0261f8f4adb','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(34,18472,1,'2021-06-09 23:43:21','2021-06-09 23:43:21','7c8c35bd-634e-49fa-a21f-f42ef5986cf0','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(35,18476,1,'2021-06-09 23:43:32','2021-06-09 23:43:32','b2b1c72a-2e57-40b8-bbfc-fc1cb6b2f135','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(36,18478,1,'2021-06-09 23:43:33','2021-06-09 23:43:33','4efb8408-4983-44d1-b29f-dcb9b0e12e97','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(37,18479,1,'2021-06-09 23:43:33','2021-06-09 23:43:33','8ebb6bed-5b1a-4d8f-b495-6f1baaada7bb','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(38,18480,1,'2021-06-09 23:43:33','2021-06-09 23:43:33','434ae1d7-c9a3-41eb-86d6-ab923ac51198','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(39,18481,1,'2021-06-09 23:43:33','2021-06-09 23:43:33','2ae8483f-f218-4e0d-8794-092669731839',NULL),(40,18485,1,'2021-06-09 23:43:57','2021-06-09 23:43:57','328f24f8-4009-4e29-8e77-48adf2d2f482','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(41,18487,1,'2021-06-09 23:43:57','2021-06-09 23:43:57','f4af5d30-04ce-4130-80a5-728dc6540ca1','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(42,18488,1,'2021-06-09 23:43:57','2021-06-09 23:43:57','2056a720-a953-4532-b183-ca472b0149a0','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(43,18489,1,'2021-06-09 23:43:57','2021-06-09 23:43:57','11b96bc9-9598-442f-88bc-b426c63e640d','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(44,18490,1,'2021-06-09 23:43:57','2021-06-09 23:43:57','2379cb5c-3f5c-468b-b516-d3729e7cb327',NULL),(45,18494,1,'2021-06-09 23:44:03','2021-06-09 23:44:03','182c92b1-1a3f-49a5-a65b-6061ab5ff446','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(46,18496,1,'2021-06-09 23:44:03','2021-06-09 23:44:03','647f955f-4260-4698-a051-c858c4f91d8b','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(47,18497,1,'2021-06-09 23:44:03','2021-06-09 23:44:03','052d6bce-eb21-4273-a26d-9a7483bc04b3','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(48,18498,1,'2021-06-09 23:44:03','2021-06-09 23:44:03','c9a068b9-13c3-4f8a-a75f-d4484ed72d57','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(49,18499,1,'2021-06-09 23:44:03','2021-06-09 23:44:03','851999bc-0332-459c-9b0e-95880ac3258b',NULL),(50,18503,1,'2021-06-09 23:44:07','2021-06-09 23:44:07','50b53989-ce0d-4b25-9d76-a7cb29897847','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(51,18505,1,'2021-06-09 23:44:07','2021-06-09 23:44:07','77417810-3bcf-4f26-80c3-9e4b8236f0cb','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(52,18506,1,'2021-06-09 23:44:07','2021-06-09 23:44:07','6183e996-6ae8-4c91-970b-0981f204aa36','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(53,18507,1,'2021-06-09 23:44:07','2021-06-09 23:44:07','6ae798ea-938e-4707-bba7-f023e4dbeb13','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(54,18508,1,'2021-06-09 23:44:07','2021-06-09 23:44:07','37a8916a-c37c-4221-9ce5-5292dc61d553',NULL),(55,18512,1,'2021-06-09 23:44:22','2021-06-09 23:44:22','c45db894-15c0-4ce0-9e92-52f430ba952e','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(56,18514,1,'2021-06-09 23:44:22','2021-06-09 23:44:22','af16b213-fa63-441d-9259-a72afc00ba99','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(57,18515,1,'2021-06-09 23:44:22','2021-06-09 23:44:22','3542908e-7213-4318-b817-520586a596ed','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(58,18516,1,'2021-06-09 23:44:22','2021-06-09 23:44:22','bba64114-81ee-421a-8d69-14cbace5eded','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(59,18517,1,'2021-06-09 23:44:22','2021-06-09 23:44:22','7a18ce0f-9edd-4886-83bc-5c6025918f0d','https://vimeo.com/359447109'),(65,18532,1,'2021-06-09 23:44:52','2021-06-09 23:44:52','eb3f7518-ea94-43dd-b77e-4ed8591fb3ea','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(66,18534,1,'2021-06-09 23:44:52','2021-06-09 23:44:52','58a5d88a-3c0c-4e27-a362-7216fc081dd8','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(67,18535,1,'2021-06-09 23:44:52','2021-06-09 23:44:52','fe9bcc8f-a1c3-42fb-b00a-93ce5e8a93bb','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(68,18536,1,'2021-06-09 23:44:52','2021-06-09 23:44:52','28adb64d-d312-447b-ab64-08b422275f5d','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(69,18537,1,'2021-06-09 23:44:52','2021-06-09 23:44:52','fea916ee-71f4-4ff3-99c3-437b394ffed0','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447109\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(70,18544,1,'2021-06-09 23:44:53','2021-06-09 23:44:53','28894e3a-8cfb-4e72-9d6e-7ca5bafea040','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(71,18546,1,'2021-06-09 23:44:53','2021-06-09 23:44:53','0994b3a6-a016-4352-8236-15939427bf36','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(72,18547,1,'2021-06-09 23:44:53','2021-06-09 23:44:53','e2453c46-0591-4b1d-b50b-5c95e1457edb','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(73,18548,1,'2021-06-09 23:44:53','2021-06-09 23:44:53','31aff4fa-71d3-4b96-98f6-a5707a839302','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(74,18549,1,'2021-06-09 23:44:53','2021-06-09 23:44:53','62a8c1d4-e43a-4b06-bc66-8e3dc9da2e51','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447109\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(75,18556,1,'2021-06-09 23:44:59','2021-06-09 23:44:59','ee75be20-8a7f-45fc-9373-5989cabb77e7','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(76,18558,1,'2021-06-09 23:45:00','2021-06-09 23:45:00','30137d71-bcf5-4662-9172-d8b8c56c71a5','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(77,18559,1,'2021-06-09 23:45:00','2021-06-09 23:45:00','0df16058-d69a-404e-8102-87d9a22b5662','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(78,18560,1,'2021-06-09 23:45:00','2021-06-09 23:45:00','b1649972-1e82-4b2e-b2eb-4c5a72ac2ba6','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(79,18561,1,'2021-06-09 23:45:00','2021-06-09 23:45:00','3178a1dd-dd18-4813-8a77-319057481d3e','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447109\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(80,18578,1,'2021-06-09 23:45:55','2021-06-09 23:45:55','f2ff8a75-72aa-4659-8481-65fd4d6e3170','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(81,18580,1,'2021-06-09 23:45:55','2021-06-09 23:45:55','2c23149c-0e97-414a-96b0-eb100275965b','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(82,18581,1,'2021-06-09 23:45:55','2021-06-09 23:45:55','f04cbd9a-5808-4651-a5d9-7d7589c2a6db','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(83,18582,1,'2021-06-09 23:45:55','2021-06-09 23:45:55','b916ae15-46dd-403e-996d-7f0864dd4b53','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(84,18583,1,'2021-06-09 23:45:55','2021-06-09 23:45:55','ad604751-a614-4852-bdb0-c6364f2294f2','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447109\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(85,18656,1,'2021-06-10 01:42:45','2021-06-10 01:42:45','43fcbf09-bab3-44ca-b4e6-c428b253c70a','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(86,18658,1,'2021-06-10 01:42:59','2021-06-10 01:42:59','fa17d160-4396-40e4-bd6b-67606ece7032','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(87,18661,1,'2021-06-10 01:43:02','2021-06-10 01:43:02','261ca29c-3278-4721-b416-b70bb77c6916','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(88,18664,1,'2021-06-10 01:43:08','2021-06-10 01:43:08','2252121a-1b5a-4c89-94e7-be2c3e4dd2ae','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(89,18667,1,'2021-06-10 01:43:14','2021-06-10 01:43:14','af5d31c2-58cd-41f6-b904-d2242c8f51fb','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(90,18671,1,'2021-06-10 01:43:24','2021-06-10 01:43:24','8cfc50a7-ac4d-45e8-b0ce-1ac189dd4ea8','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(91,18675,1,'2021-06-10 01:43:35','2021-06-10 01:43:35','c81a0578-3cd3-45f8-af83-0cf14f1c0c8f','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(92,18680,1,'2021-06-10 01:43:42','2021-06-10 01:43:42','3b2c0262-8f33-44de-b145-bf143c531bc0','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(93,18685,1,'2021-06-10 01:43:55','2021-06-10 01:43:55','8f18ff3a-8c6c-472b-a0f7-baa335c37c60','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(94,18691,1,'2021-06-10 01:44:02','2021-06-10 01:44:02','7119736e-fccc-46ba-9651-1fa48c780615','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(95,18697,1,'2021-06-10 01:46:49','2021-06-10 01:46:49','f07309eb-3dd9-4434-aef3-fa819a038c50','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(96,18704,1,'2021-06-10 01:46:56','2021-06-10 01:46:56','af51d1a7-436d-4055-8fa1-2227ced8afe6','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(97,18711,1,'2021-06-10 01:47:06','2021-06-10 01:47:06','f96cbc92-a98f-427b-a394-1880f15032fa','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(98,18719,1,'2021-06-10 01:47:11','2021-06-10 01:47:11','212f1c49-b6e5-4336-9b38-d53143b0b542','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(99,18727,1,'2021-06-10 01:47:22','2021-06-10 01:47:22','a5814d99-21ce-416f-aa6e-0a4b34ad4bce','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(100,18736,1,'2021-06-10 01:47:29','2021-06-10 01:47:29','24831c84-9ee3-4a7a-9ef1-fcbd9728fd6c','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(101,18745,1,'2021-06-10 01:52:38','2021-06-10 01:52:38','84ba5d79-6da1-4d00-b77b-644b3a50764b','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(102,18755,1,'2021-06-10 01:52:45','2021-06-10 01:52:45','2f345af1-6a0a-4a72-ba13-0736fb848c6c','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(103,18765,1,'2021-06-10 01:52:48','2021-06-10 01:52:48','b2a9e5bb-7be0-49dd-a866-39e6fa2dea43','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(104,18776,1,'2021-06-10 01:52:52','2021-06-10 01:52:52','d229deec-d3da-46eb-bb16-84d4a7a653da','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(105,18787,1,'2021-06-10 01:52:55','2021-06-10 01:52:55','315e2e67-0df4-4842-b8f9-94f26838d2f1','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(106,18799,1,'2021-06-10 01:53:01','2021-06-10 01:53:01','5360efc3-b93d-4809-b587-08e262fa2b66','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(107,18811,1,'2021-06-10 01:53:04','2021-06-10 01:53:04','e71934ee-6c95-4e76-a5c6-785a4699191d','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(108,18824,1,'2021-06-10 01:53:09','2021-06-10 01:53:09','b0067b05-f68c-4a22-a443-0e92b5ed4395','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(109,18837,1,'2021-06-10 01:53:12','2021-06-10 01:53:12','d6ea3e74-d49a-4553-b40f-11f40f9ffaf2','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(110,18851,1,'2021-06-10 01:53:18','2021-06-10 01:53:18','563e49a0-0338-405a-95d9-e7b0375b0b08','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(111,18865,1,'2021-06-10 01:53:21','2021-06-10 01:53:21','141ac3e0-64fa-491a-9bf2-d06073e31390','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(112,18880,1,'2021-06-10 01:53:27','2021-06-10 01:53:27','59700397-1358-4e1b-84a0-b571345c069e','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(113,18895,1,'2021-06-10 01:53:29','2021-06-10 01:53:29','531d0a93-388d-4697-a5b9-a258e94b99e4','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(114,18911,1,'2021-06-10 01:53:34','2021-06-10 01:53:34','69f6e6ec-735a-4070-a9aa-51310b019fc0','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(115,18927,1,'2021-06-10 01:53:52','2021-06-10 01:53:52','60076e82-7afd-40d1-bd9b-431232b64807','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(116,18944,1,'2021-06-10 01:53:58','2021-06-10 01:53:58','f049ced1-b1c8-49ac-ac47-acbbe58376b5','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(117,18961,1,'2021-06-10 01:54:02','2021-06-10 01:54:02','7ffe2aa6-440c-4aef-9168-36dada73b9b2','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(119,18997,1,'2021-06-10 01:54:27','2021-06-10 01:54:27','8c4dedb8-36af-4c88-9b85-6b4ef667585e','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(120,19016,1,'2021-06-10 01:54:29','2021-06-10 01:54:29','0e5fbc19-179f-47da-aedf-72254a368b59','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(121,19035,1,'2021-06-10 01:54:38','2021-06-10 01:54:38','f73add7a-9e8d-44d9-b96a-56316e166d89','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(127,19087,1,'2021-06-10 04:26:07','2021-06-10 04:26:07','b99895fd-9c00-4a7d-a38e-76e3413415cc','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(128,19089,1,'2021-06-10 04:26:07','2021-06-10 04:26:07','7818e953-a128-4f12-81e8-dbf928683c24','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(129,19090,1,'2021-06-10 04:26:07','2021-06-10 04:26:07','23012e0d-77f6-4cef-b7f7-2f9b33582c2c','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(130,19091,1,'2021-06-10 04:26:07','2021-06-10 04:26:07','122526d2-fa3a-41a3-b174-284173ff333d','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(131,19092,1,'2021-06-10 04:26:07','2021-06-10 04:26:07','1b590878-f319-40c4-a338-ef1ecaea3f2b','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447109\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(132,19099,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','7b314715-3c8c-49a2-ae74-183e084a62a7','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(133,19101,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','27c2da22-6f7d-4a53-9d9b-e12938bd2cf2','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(134,19102,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','5f2d9ba2-cbb4-4793-87ce-1676e7745519','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(135,19103,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','0c9169e1-463b-400c-982c-8905b9e1ff60','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(136,19104,1,'2021-06-10 04:26:08','2021-06-10 04:26:08','1f89b0eb-b0f0-46ec-9e3d-604e87fb06f6','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447109\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(137,19111,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','3a4fa11e-70f8-49cf-9233-9fcca2ea5edc','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447117\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(138,19113,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','6d61d577-8851-4d36-9055-7fdc7d3d26d9','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447095\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(139,19114,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','5830f5fa-46c0-462f-81d2-3d859085a65c','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447106\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(140,19115,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','2cc25331-6a50-457a-b8f6-47c8a49f03e9','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447102\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(141,19116,1,'2021-06-10 04:26:13','2021-06-10 04:26:13','d31282f5-feec-466a-a669-a937284d7f9c','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/359447109\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(143,22098,1,'2021-07-16 01:57:56','2021-07-16 01:57:56','95a2b7af-4e36-4071-8bef-0bfe40d4b090','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(144,22101,1,'2021-07-16 01:57:58','2021-07-16 01:57:58','11f72d48-d8c6-409c-a2c2-8597f5c24868','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(145,22120,1,'2021-07-16 01:58:14','2021-07-16 01:58:14','c75e4b69-07c4-4a63-a7ef-cd27fb143d80','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(147,22138,1,'2021-07-16 01:58:23','2021-07-16 01:58:23','392107a0-19ce-4a02-a828-fba7a0b0d918','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(148,22141,1,'2021-07-16 01:58:24','2021-07-16 01:58:24','a38d6062-4de6-4082-ab57-3a68471a567c','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/287017736\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>'),(149,22251,1,'2021-07-16 03:22:16','2021-07-16 03:22:16','1ce23353-ccc3-4139-98d5-d9f837ee4631',NULL),(150,22255,1,'2021-07-16 03:22:29','2021-07-16 03:22:29','c6dd39c4-eaaf-43f4-8c5e-7595674bce1b','<div style=\"padding:50% 0 0 0;position:relative;\"><iframe src=\"https://player.vimeo.com/video/572803469?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Rural Aid | 20-21 EOFY appeal | Thank you\"></iframe></div><script src=\"https://player.vimeo.com/api/player.js\"></script>'),(151,22259,1,'2021-07-16 03:22:39','2021-07-16 03:22:39','b149b64b-4ff4-48c6-b552-308294a338dd','<div style=\"padding:50% 0 0 0;position:relative;\"><iframe src=\"https://player.vimeo.com/video/572803469?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Rural Aid | 20-21 EOFY appeal | Thank you\"></iframe></div><script src=\"https://player.vimeo.com/api/player.js\"></script>'),(152,22260,1,'2021-07-16 03:22:39','2021-07-16 03:22:39','2a9179ee-90df-43bb-993d-59b9db77ae94',NULL),(153,22264,1,'2021-07-16 03:23:03','2021-07-16 03:23:03','b589976b-2729-44fc-afaa-eb5a0e599f54','<div style=\"padding:50% 0 0 0;position:relative;\"><iframe src=\"https://player.vimeo.com/video/572803469?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Rural Aid | 20-21 EOFY appeal | Thank you\"></iframe></div><script src=\"https://player.vimeo.com/api/player.js\"></script>'),(154,22265,1,'2021-07-16 03:23:03','2021-07-16 03:23:03','e832ff0a-ee4f-48ba-bc32-f71610f13925','<div style=\"padding:50% 0 0 0;position:relative;\"><iframe src=\"https://player.vimeo.com/video/572802923?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Rural Aid | 20-21 EOFY appeal | Appeal\"></iframe></div><script src=\"https://player.vimeo.com/api/player.js\"></script>'),(155,22270,1,'2021-07-16 03:23:11','2021-07-16 03:23:11','3c5c1d67-f5d4-437c-80e4-941024036b2f','<div style=\"padding:50% 0 0 0;position:relative;\"><iframe src=\"https://player.vimeo.com/video/572803469?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Rural Aid | 20-21 EOFY appeal | Thank you\"></iframe></div><script src=\"https://player.vimeo.com/api/player.js\"></script>'),(156,22271,1,'2021-07-16 03:23:11','2021-07-16 03:23:11','fc832248-cecc-4e6e-b964-cd0b67927362','<div style=\"padding:50% 0 0 0;position:relative;\"><iframe src=\"https://player.vimeo.com/video/572802923?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Rural Aid | 20-21 EOFY appeal | Appeal\"></iframe></div><script src=\"https://player.vimeo.com/api/player.js\"></script>'),(158,22277,1,'2021-07-16 03:53:02','2021-07-16 03:53:02','90ec85d3-a308-4c55-9a0a-06c570470f72','<div style=\"padding:50% 0 0 0;position:relative;\"><iframe src=\"https://player.vimeo.com/video/572802923?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Rural Aid | 20-21 EOFY appeal | Appeal\"></iframe></div><script src=\"https://player.vimeo.com/api/player.js\"></script>'),(159,22278,1,'2021-07-16 03:53:04','2021-07-16 03:53:04','397c5d58-b348-4a9e-915f-209e86ac2d34','<div style=\"padding:50% 0 0 0;position:relative;\"><iframe src=\"https://player.vimeo.com/video/572803469?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Rural Aid | 20-21 EOFY appeal | Thank you\"></iframe></div><script src=\"https://player.vimeo.com/api/player.js\"></script>'),(160,22283,1,'2021-07-16 03:53:04','2021-07-16 03:53:04','7838da20-f3fe-4b3b-b7fa-2ea891bba91b','<div style=\"padding:50% 0 0 0;position:relative;\"><iframe src=\"https://player.vimeo.com/video/572803469?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Rural Aid | 20-21 EOFY appeal | Thank you\"></iframe></div><script src=\"https://player.vimeo.com/api/player.js\"></script>'),(162,22294,1,'2021-07-16 03:55:47','2021-07-16 03:55:47','62c2a9f6-4c56-459d-8e03-978d71c8356d','<div style=\"padding:50% 0 0 0;position:relative;\"><iframe src=\"https://player.vimeo.com/video/572803469?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Rural Aid | 20-21 EOFY appeal | Thank you\"></iframe></div><script src=\"https://player.vimeo.com/api/player.js\"></script>'),(163,22300,1,'2021-07-16 03:55:48','2021-07-16 03:55:48','29795f53-5260-4380-916d-1048dfc7ab23','<div style=\"padding:50% 0 0 0;position:relative;\"><iframe src=\"https://player.vimeo.com/video/572803469?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Rural Aid | 20-21 EOFY appeal | Thank you\"></iframe></div><script src=\"https://player.vimeo.com/api/player.js\"></script>'),(165,22310,1,'2021-07-16 03:57:20','2021-07-16 03:57:20','1ccc3b63-77e6-498d-8ddd-c54189307683','<div style=\"padding:50% 0 0 0;position:relative;\"><iframe src=\"https://player.vimeo.com/video/572803469?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Rural Aid | 20-21 EOFY appeal | Thank you\"></iframe></div><script src=\"https://player.vimeo.com/api/player.js\"></script>'),(166,22315,1,'2021-07-16 03:57:20','2021-07-16 03:57:20','3b471733-f6eb-4c8f-b009-88de992d8ab3','<div style=\"padding:50% 0 0 0;position:relative;\"><iframe src=\"https://player.vimeo.com/video/572803469?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Rural Aid | 20-21 EOFY appeal | Thank you\"></iframe></div><script src=\"https://player.vimeo.com/api/player.js\"></script>'),(167,22322,1,'2021-07-16 04:06:19','2021-07-16 04:06:19','2363f394-3946-4f1a-b433-803d1e87c295','<div style=\"padding:50% 0 0 0;position:relative;\"><iframe src=\"https://player.vimeo.com/video/572803469?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Rural Aid | 20-21 EOFY appeal | Thank you\"></iframe></div><script src=\"https://player.vimeo.com/api/player.js\"></script>'),(169,22325,1,'2021-07-16 04:08:00','2021-07-16 04:08:00','ca0fe6a6-34e1-4a7a-993b-65a41652f960','<div style=\"padding:50% 0 0 0;position:relative;\"><iframe src=\"https://player.vimeo.com/video/572803469?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Rural Aid | 20-21 EOFY appeal | Thank you\"></iframe></div><script src=\"https://player.vimeo.com/api/player.js\"></script>'),(170,22330,1,'2021-07-16 04:08:00','2021-07-16 04:08:00','0125cc89-dda4-417e-8b2e-588fc8422482','<div style=\"padding:50% 0 0 0;position:relative;\"><iframe src=\"https://player.vimeo.com/video/572803469?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Rural Aid | 20-21 EOFY appeal | Thank you\"></iframe></div><script src=\"https://player.vimeo.com/api/player.js\"></script>'),(171,22336,1,'2021-07-16 04:09:55','2021-07-16 04:09:55','d64a3427-a2dd-4771-9ca6-9255c2641d04','<div style=\"padding:50% 0 0 0;position:relative;\"><iframe src=\"https://player.vimeo.com/video/572803469?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Rural Aid | 20-21 EOFY appeal | Thank you\"></iframe></div><script src=\"https://player.vimeo.com/api/player.js\"></script>'),(172,22342,1,'2021-07-16 04:17:22','2021-07-16 04:17:22','2c3dd840-750a-4660-908b-e9835d741490','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://player.vimeo.com/video/553135476\' frameborder=\'0\' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>');
/*!40000 ALTER TABLE `stc_videos` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `structureelements`
--

LOCK TABLES `structureelements` WRITE;
/*!40000 ALTER TABLE `structureelements` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `structureelements` VALUES (1,1,NULL,1,1,174,0,'2021-05-18 00:31:08','2021-05-18 03:20:58','4f5c4323-ad6c-4827-87de-7ddfadf40f41'),(2,1,16866,1,2,3,1,'2021-05-18 00:31:08','2021-05-18 00:31:08','9074397e-cfcc-4c41-9fe1-58072e80f1a9'),(3,1,16867,1,4,5,1,'2021-05-18 00:31:08','2021-05-18 00:31:08','5be44254-d82c-4c00-881e-216944b2d120'),(4,1,16868,1,6,7,1,'2021-05-18 00:31:08','2021-05-18 00:31:08','61fc6c9e-4c36-484d-9b9b-bb2bee522ddf'),(5,1,16869,1,8,9,1,'2021-05-18 00:31:08','2021-05-18 00:31:08','cee68f74-695b-4c21-9ebc-baf5ef85ce3e'),(6,1,16870,1,10,11,1,'2021-05-18 00:31:08','2021-05-18 00:31:08','44c84b5f-1324-4fdd-a247-9c6803f85732'),(7,1,16871,1,12,13,1,'2021-05-18 00:31:08','2021-05-18 00:31:08','6bea88eb-1695-485c-9894-ea32adb82173'),(8,1,16872,1,14,15,1,'2021-05-18 00:31:08','2021-05-18 00:31:08','39060c34-d4e7-4f91-8957-6aaa8c1e43ab'),(9,1,16875,1,16,17,1,'2021-05-18 00:31:08','2021-05-18 00:31:08','02a78794-efcf-4d94-a206-0ae8bb86eb77'),(10,1,16876,1,18,19,1,'2021-05-18 00:31:08','2021-05-18 00:31:08','35a0c5be-056b-4943-8e50-14713ca43a78'),(11,1,16877,1,20,21,1,'2021-05-18 00:31:08','2021-05-18 00:31:08','69b034a6-4665-4cff-aa3c-1d9ae7251ecb'),(12,1,16880,1,22,23,1,'2021-05-18 00:31:09','2021-05-18 00:31:09','ff2c8391-188a-4374-95f8-56f808ffc006'),(13,1,16881,1,24,25,1,'2021-05-18 00:31:09','2021-05-18 00:31:09','97f892e7-4990-4ae5-810d-4117342de7e7'),(14,1,16882,1,26,27,1,'2021-05-18 00:31:09','2021-05-18 00:31:09','026f1b95-f384-4bb5-850c-213f9dea6ba0'),(15,1,16883,1,28,29,1,'2021-05-18 00:31:09','2021-05-18 00:31:09','cc5ad590-fafa-408b-9166-8fdfb5a7c976'),(16,1,16886,1,30,31,1,'2021-05-18 00:31:09','2021-05-18 00:31:09','f10b5c46-ee9e-4e49-b534-980213eca88f'),(17,1,16887,1,32,33,1,'2021-05-18 00:31:09','2021-05-18 00:31:09','afdc34dd-4946-4468-9a69-a415d61b084f'),(18,1,16888,1,34,35,1,'2021-05-18 00:31:09','2021-05-18 00:31:09','2087a242-e99a-446a-b81a-9406489e1e89'),(19,1,16889,1,36,37,1,'2021-05-18 00:31:09','2021-05-18 00:31:09','e39f8c66-f9b0-4eac-8463-03b30fb0a49c'),(20,1,16892,1,38,39,1,'2021-05-18 00:31:09','2021-05-18 00:31:09','10bf8faf-6cd4-4cce-a7b5-38202b1b2ecd'),(21,1,16893,1,40,41,1,'2021-05-18 00:31:09','2021-05-18 00:31:09','269966ae-f501-4184-a536-4967b09058ff'),(22,1,16896,1,42,43,1,'2021-05-18 00:31:10','2021-05-18 00:31:10','1c2d3cd8-9c51-4774-8cd2-76227bd636b3'),(23,1,16897,1,44,45,1,'2021-05-18 00:31:10','2021-05-18 00:31:10','2d3f5bdf-ee00-4546-b204-5eba2c27c9a6'),(24,1,16900,1,46,47,1,'2021-05-18 00:31:10','2021-05-18 00:31:10','11562027-96b5-441f-ab33-9524b5d67b59'),(25,1,16901,1,48,49,1,'2021-05-18 00:31:10','2021-05-18 00:31:10','c79964da-e347-42e0-b49f-1dcb6335e7eb'),(26,1,16902,1,50,51,1,'2021-05-18 00:31:10','2021-05-18 00:31:10','900eb35c-be1d-45b1-b3a8-28485dd39600'),(27,1,16903,1,52,53,1,'2021-05-18 00:31:10','2021-05-18 00:31:10','1358cbfd-e8cd-4c61-9377-3a8685bd655a'),(28,1,16904,1,54,55,1,'2021-05-18 00:31:10','2021-05-18 00:31:10','074822ca-fe49-4866-bdd2-7d2a490131e4'),(29,1,16907,1,56,57,1,'2021-05-18 00:31:10','2021-05-18 00:31:10','3c905eb9-36be-4f89-8c73-9f4ea1b29218'),(30,1,16908,1,58,59,1,'2021-05-18 00:31:10','2021-05-18 00:31:10','60a3d1f0-fe90-4a8a-b57e-d9c3109e8204'),(31,1,16911,1,60,61,1,'2021-05-18 00:31:11','2021-05-18 00:31:11','287024a5-6ebd-4c0e-ae1d-07cb930d1f8f'),(32,1,16912,1,62,63,1,'2021-05-18 00:31:11','2021-05-18 00:31:11','c58a3b3e-ba9a-4ad0-886b-9f4a11feeda3'),(33,1,16915,1,64,65,1,'2021-05-18 00:31:11','2021-05-18 00:31:11','189ff725-d4dd-4d96-bbaf-9663332cf6a0'),(34,1,16918,1,66,67,1,'2021-05-18 00:31:11','2021-05-18 00:31:11','dbe0bc42-bfa4-45f9-be39-503b63fd14e1'),(35,1,16919,1,68,69,1,'2021-05-18 00:31:11','2021-05-18 00:31:11','ee08a1f2-7399-4806-a9ad-a4113fbdcdbd'),(36,1,16920,1,70,71,1,'2021-05-18 00:31:11','2021-05-18 00:31:11','96c273ca-25eb-4473-8b9c-c541f6c05974'),(37,1,16923,1,72,73,1,'2021-05-18 00:31:11','2021-05-18 00:31:11','7d1f89f3-e006-427b-8e6f-262f4fc7cb44'),(38,1,16926,1,74,75,1,'2021-05-18 00:31:12','2021-05-18 00:31:12','b32353dc-366e-4b1e-8a6f-14e90f5fa6a5'),(39,1,16927,1,76,77,1,'2021-05-18 00:31:12','2021-05-18 00:31:12','a0acef38-032b-4d46-9fbd-3f5239493634'),(40,1,16930,1,78,79,1,'2021-05-18 00:31:12','2021-05-18 00:31:12','2b2eacf8-a592-4df2-ba5a-d6db80719e9f'),(41,1,16931,1,80,81,1,'2021-05-18 00:31:12','2021-05-18 00:31:12','b79d6a4b-5908-44b1-a930-e80183969f6c'),(42,1,16932,1,82,83,1,'2021-05-18 00:31:12','2021-05-18 00:31:12','e83befde-c164-401e-87cf-491c0ff376cb'),(43,1,16933,1,84,85,1,'2021-05-18 00:31:12','2021-05-18 00:31:12','fa993aed-8335-4cd2-9175-90988184bf4b'),(44,1,16936,1,86,87,1,'2021-05-18 00:31:12','2021-05-18 00:31:12','47c7cb8a-a425-41d9-9a8c-95adbb4ffcd0'),(45,1,16937,1,88,89,1,'2021-05-18 00:31:12','2021-05-18 00:31:12','ea20ab5b-7ca7-46eb-b56b-291725e544aa'),(46,1,16938,1,90,91,1,'2021-05-18 00:31:13','2021-05-18 00:31:13','0ece25f3-90d8-420e-84cf-0bcd5c167229'),(47,1,16939,1,92,93,1,'2021-05-18 00:31:13','2021-05-18 00:31:13','553b1a3c-d1cb-40e1-b965-25e6291a9c94'),(48,1,16942,1,94,95,1,'2021-05-18 00:31:13','2021-05-18 00:31:13','b17065a7-cbe0-46ab-b064-05dbe6f425c9'),(49,1,16947,1,96,97,1,'2021-05-18 00:31:13','2021-05-18 00:31:13','27a1a487-1b7a-45a1-a040-543d38c149b9'),(50,1,16950,1,98,99,1,'2021-05-18 00:31:14','2021-05-18 00:31:14','a665f3fb-da5d-4145-98c4-f99c582e637f'),(51,1,16953,1,100,101,1,'2021-05-18 00:31:14','2021-05-18 00:31:14','2ec5a61a-dce3-4b28-9ca5-fd10a0dd8cf9'),(52,1,16954,1,102,103,1,'2021-05-18 00:31:14','2021-05-18 00:31:14','7f402189-d854-4877-84db-d0b8dd32fc14'),(53,1,16955,1,104,105,1,'2021-05-18 00:31:14','2021-05-18 00:31:14','7d6733a7-25bb-42e5-aa69-61f5985c81e0'),(54,1,16956,1,106,107,1,'2021-05-18 00:31:14','2021-05-18 00:31:14','72b3604d-ef8c-457d-89fa-6ed73e1fd3cb'),(55,1,16959,1,108,109,1,'2021-05-18 00:31:14','2021-05-18 00:31:14','0b24afda-0a1b-4177-a73c-02d2c3e92201'),(56,1,16960,1,110,111,1,'2021-05-18 00:31:14','2021-05-18 00:31:14','cb253aa3-a532-43a8-87fb-064b139d6a41'),(57,1,16963,1,112,113,1,'2021-05-18 00:31:15','2021-05-18 00:31:15','ea37b674-a0f6-49b7-a33b-8ba72dab4f3e'),(58,1,16964,1,114,115,1,'2021-05-18 00:31:15','2021-05-18 00:31:15','bc598056-1bf6-4890-b8db-308a7e38f8f5'),(59,1,16965,1,116,117,1,'2021-05-18 00:31:15','2021-05-18 00:31:15','c943e351-8ab9-4641-8e6a-56f77219e245'),(60,1,16966,1,118,119,1,'2021-05-18 00:31:15','2021-05-18 00:31:15','50ec2ca6-1cb4-4766-b5ff-ded755f1a312'),(61,1,16969,1,120,121,1,'2021-05-18 00:31:15','2021-05-18 00:31:15','70936493-e412-4060-9f44-554b65675a13'),(62,1,16970,1,122,123,1,'2021-05-18 00:31:15','2021-05-18 00:31:15','541ea332-e941-4f3b-9ff8-9f0ea5cb7044'),(63,1,16971,1,124,125,1,'2021-05-18 00:31:15','2021-05-18 00:31:15','6fd1471a-99d8-4edc-ad1a-c382a968d63a'),(64,1,16972,1,126,127,1,'2021-05-18 00:31:15','2021-05-18 00:31:15','60f46c2f-94ef-4d82-bfcb-8763ad10ab92'),(65,1,16973,1,128,129,1,'2021-05-18 00:31:15','2021-05-18 00:31:15','487a5f66-cdde-417d-82c3-9ad7b14faf39'),(66,1,16974,1,130,131,1,'2021-05-18 00:31:15','2021-05-18 00:31:15','ffba9142-be24-4a30-a3f1-3b9b7a0961eb'),(67,1,16977,1,132,133,1,'2021-05-18 00:31:15','2021-05-18 00:31:15','d51559b0-a589-4aeb-8d51-1f96f5f6e656'),(68,1,17008,1,134,135,1,'2021-05-18 00:31:18','2021-05-18 00:31:18','3a1163d2-8f34-4d15-81c9-92c5e70ab6f3'),(69,1,17600,1,136,137,1,'2021-05-18 03:20:48','2021-05-18 03:20:48','361ea16f-be3b-451b-a020-d1309422d6e2'),(70,1,17601,1,138,139,1,'2021-05-18 03:20:48','2021-05-18 03:20:48','decc7ca8-44e7-4f08-9608-d9c49d4433f5'),(71,1,17602,1,140,141,1,'2021-05-18 03:20:48','2021-05-18 03:20:48','86bb2e88-6d76-466c-8a63-a057bddad9ca'),(72,1,17605,1,142,143,1,'2021-05-18 03:20:48','2021-05-18 03:20:48','28fe5092-34c7-4533-b66b-24a658fcb047'),(73,1,17606,1,144,145,1,'2021-05-18 03:20:48','2021-05-18 03:20:48','ceeef683-3ecd-40e8-9d22-9c39a7ee152c'),(74,1,17607,1,146,147,1,'2021-05-18 03:20:48','2021-05-18 03:20:48','636d5d24-ad60-493c-8173-ec3d985fb8a0'),(75,1,17610,1,148,149,1,'2021-05-18 03:20:48','2021-05-18 03:20:48','74dc4529-fa18-4e2d-9ad2-9fe64d875202'),(76,1,17619,1,150,151,1,'2021-05-18 03:20:49','2021-05-18 03:20:49','031e5193-1730-4ec2-abf8-8d84df1fb587'),(77,1,17620,1,152,153,1,'2021-05-18 03:20:49','2021-05-18 03:20:49','a5641415-13fb-4737-b9ec-8966197308e0'),(78,1,17625,1,154,155,1,'2021-05-18 03:20:50','2021-05-18 03:20:50','8413c93d-cede-45a8-86bd-ad9bc4cdc126'),(79,1,17630,1,156,157,1,'2021-05-18 03:20:50','2021-05-18 03:20:50','3ce1031b-54a7-4e6d-a705-dc9c197ab2a0'),(80,1,17637,1,158,159,1,'2021-05-18 03:20:51','2021-05-18 03:20:51','bdf2e6b8-948d-4480-a385-a287b4221156'),(81,1,17640,1,160,161,1,'2021-05-18 03:20:52','2021-05-18 03:20:52','a5e34fe6-4a77-4bc4-86b7-f69d7833c275'),(82,1,17641,1,162,163,1,'2021-05-18 03:20:52','2021-05-18 03:20:52','7bfca315-ee10-46fb-94b7-f8eabccaedec'),(83,1,17656,1,164,165,1,'2021-05-18 03:20:53','2021-05-18 03:20:53','168a64ef-f81c-4016-a090-a85f2479e435'),(84,1,17657,1,166,167,1,'2021-05-18 03:20:53','2021-05-18 03:20:53','040e7534-5af2-4567-b2bc-a2940332b4a0'),(85,1,17658,1,168,169,1,'2021-05-18 03:20:53','2021-05-18 03:20:53','eec0d168-69aa-4d92-bc13-3e3af71078d7'),(86,1,17659,1,170,171,1,'2021-05-18 03:20:53','2021-05-18 03:20:53','a5d41ba1-d561-44b8-84a2-7f40ee0c30cf'),(87,1,17694,1,172,173,1,'2021-05-18 03:20:58','2021-05-18 03:20:58','1b463cce-e6b2-4f53-af99-b3111adc9596'),(88,3,NULL,88,1,18,0,'2021-06-01 07:14:22','2021-06-01 07:15:01','300cd482-9937-423e-a71d-98bf7cba8ad7'),(89,3,17964,88,2,3,1,'2021-06-01 07:14:22','2021-06-01 07:14:22','4689530d-5930-42d3-a445-824f6ae200ab'),(90,3,17965,88,4,5,1,'2021-06-01 07:14:29','2021-06-01 07:14:29','ec1ad6b4-3733-4c6e-87d7-5252634c6a1b'),(91,3,17966,88,6,7,1,'2021-06-01 07:14:34','2021-06-01 07:14:34','79b54ce2-0992-4c28-879a-bb54179456c4'),(92,3,17967,88,8,9,1,'2021-06-01 07:14:41','2021-06-01 07:14:41','5f5db7de-0665-41e3-aedc-fbe485afe472'),(93,3,17968,88,10,11,1,'2021-06-01 07:14:46','2021-06-01 07:14:46','ba16d339-875b-4614-939d-a38b820d201d'),(94,3,17969,88,12,13,1,'2021-06-01 07:14:51','2021-06-01 07:14:51','f470a3cc-c0a6-47f0-9dd1-07f9eb3d5d69'),(95,3,17970,88,14,15,1,'2021-06-01 07:14:56','2021-06-01 07:14:56','3f60cbb5-aeb7-4fd9-811a-103a23e46dd7'),(96,3,17971,88,16,17,1,'2021-06-01 07:15:01','2021-06-01 07:15:01','06953e02-f8cd-4bbb-ab95-f901f5157269'),(97,4,NULL,97,1,14,0,'2021-06-03 05:58:40','2021-09-03 00:14:36','5daf4132-a015-4fe2-ad8f-b63e01383455'),(98,4,18057,97,2,3,1,'2021-06-03 05:58:40','2021-06-03 05:58:40','914e9d64-0b25-4c2c-9a0f-ef0c57118571'),(99,5,NULL,99,1,10,0,'2021-06-11 00:30:18','2021-09-10 06:08:44','a2c04a7d-c653-49a3-973a-5a7f27a30c3a'),(100,5,19167,99,2,3,1,'2021-06-11 00:30:18','2021-06-11 00:30:18','219d885b-47c0-4fc6-98e6-10aefdb962f4'),(101,5,19175,99,4,5,1,'2021-06-11 01:36:15','2021-06-11 01:36:15','0799212b-9803-4d31-bea4-378fabff4cfa'),(102,5,19196,99,6,7,1,'2021-06-13 23:20:52','2021-06-13 23:20:52','0767091b-dc99-45eb-96f0-07dd2facfaf9'),(103,4,38157,97,4,5,1,'2021-09-03 00:13:04','2021-09-03 00:13:04','fbfd0592-ead0-41eb-9fbb-be6bd378346a'),(104,4,38158,97,6,7,1,'2021-09-03 00:13:46','2021-09-03 00:13:46','92c92cb5-1326-49e8-98db-09dd47de5ee8'),(105,4,38159,97,8,9,1,'2021-09-03 00:13:57','2021-09-03 00:13:57','1c62345d-e634-4569-a0f5-874dfbb5a905'),(106,4,38160,97,10,11,1,'2021-09-03 00:14:07','2021-09-03 00:14:07','e6ebc380-5c6e-4494-a605-7fe605c8f930'),(107,4,38161,97,12,13,1,'2021-09-03 00:14:36','2021-09-03 00:14:36','b36f3563-68b6-4f59-830b-045b49610938'),(108,5,45224,99,8,9,1,'2021-09-10 06:08:44','2021-09-10 06:08:44','83a33bc3-5b40-4a15-962e-6a644d62a7ae');
/*!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;
INSERT INTO `structures` VALUES (1,NULL,'2021-05-18 00:28:05','2021-05-18 00:28:05',NULL,'efaa06f9-b815-41c3-8a55-40909f7a040a'),(3,NULL,'2021-05-25 06:32:21','2021-05-25 06:32:21',NULL,'26e075ff-eb66-4528-8ba3-0d8bd4bb5a8b'),(4,NULL,'2021-05-25 06:32:34','2021-05-25 06:32:34',NULL,'b9614edc-04a9-49be-8778-80c2cb32006d'),(5,NULL,'2021-06-11 00:30:06','2021-06-11 00:30:06',NULL,'898e584e-54ec-4064-b4dc-711fd19ef1c9');
/*!40000 ALTER TABLE `structures` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `supertableblocks`
--

LOCK TABLES `supertableblocks` WRITE;
/*!40000 ALTER TABLE `supertableblocks` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `supertableblocks` VALUES (18544,18543,91,1,NULL,'2021-06-09 23:44:53','2021-06-09 23:44:53'),(18546,18545,91,1,NULL,'2021-06-09 23:44:53','2021-06-09 23:44:53'),(18547,18545,91,1,NULL,'2021-06-09 23:44:53','2021-06-09 23:44:53'),(18548,18545,91,1,NULL,'2021-06-09 23:44:53','2021-06-09 23:44:53'),(18549,18545,91,1,NULL,'2021-06-09 23:44:53','2021-06-09 23:44:53'),(18556,18555,91,1,NULL,'2021-06-09 23:44:59','2021-06-09 23:44:59'),(18558,18557,91,1,NULL,'2021-06-09 23:45:00','2021-06-09 23:45:00'),(18559,18557,91,1,NULL,'2021-06-09 23:45:00','2021-06-09 23:45:00'),(18560,18557,91,1,NULL,'2021-06-09 23:45:00','2021-06-09 23:45:00'),(18561,18557,91,1,NULL,'2021-06-09 23:45:00','2021-06-09 23:45:00'),(18578,18577,91,1,NULL,'2021-06-09 23:45:55','2021-06-09 23:45:55'),(18580,18579,91,1,NULL,'2021-06-09 23:45:55','2021-06-09 23:45:55'),(18581,18579,91,1,NULL,'2021-06-09 23:45:55','2021-06-09 23:45:55'),(18582,18579,91,1,NULL,'2021-06-09 23:45:55','2021-06-09 23:45:55'),(18583,18579,91,1,NULL,'2021-06-09 23:45:55','2021-06-09 23:45:55'),(19016,19015,91,1,NULL,'2021-06-10 01:54:29','2021-06-10 01:54:29'),(19035,19034,91,1,NULL,'2021-06-10 01:54:38','2021-06-10 01:54:38'),(19099,19098,91,1,NULL,'2021-06-10 04:26:08','2021-06-10 04:26:08'),(19101,19100,91,1,NULL,'2021-06-10 04:26:08','2021-06-10 04:26:08'),(19102,19100,91,1,NULL,'2021-06-10 04:26:08','2021-06-10 04:26:08'),(19103,19100,91,1,NULL,'2021-06-10 04:26:08','2021-06-10 04:26:08'),(19104,19100,91,1,NULL,'2021-06-10 04:26:08','2021-06-10 04:26:08'),(19111,19110,91,1,NULL,'2021-06-10 04:26:13','2021-06-10 04:26:13'),(19113,19112,91,1,NULL,'2021-06-10 04:26:13','2021-06-10 04:26:13'),(19114,19112,91,1,NULL,'2021-06-10 04:26:13','2021-06-10 04:26:13'),(19115,19112,91,1,NULL,'2021-06-10 04:26:13','2021-06-10 04:26:13'),(19116,19112,91,1,NULL,'2021-06-10 04:26:13','2021-06-10 04:26:13'),(21774,21773,128,3,NULL,'2021-07-13 00:07:17','2021-07-13 00:07:17'),(21775,21773,128,3,NULL,'2021-07-13 00:07:17','2021-07-13 00:07:17'),(21776,21773,128,3,NULL,'2021-07-13 00:07:17','2021-07-13 00:07:17'),(21777,21773,128,3,NULL,'2021-07-13 00:07:17','2021-07-13 00:07:17'),(21778,21773,128,3,NULL,'2021-07-13 00:07:17','2021-07-13 00:07:17'),(21781,21780,124,2,NULL,'2021-07-13 00:07:17','2021-07-13 00:07:17'),(21783,21782,133,4,NULL,'2021-07-13 00:07:17','2021-07-13 00:07:17'),(21784,21782,133,4,NULL,'2021-07-13 00:07:17','2021-07-13 00:07:17'),(21785,21782,133,4,NULL,'2021-07-13 00:07:17','2021-07-13 00:07:17'),(21786,21782,133,4,NULL,'2021-07-13 00:07:17','2021-07-13 00:07:17'),(21787,21782,133,4,NULL,'2021-07-13 00:07:17','2021-07-13 00:07:17'),(21788,21782,133,4,NULL,'2021-07-13 00:07:17','2021-07-13 00:07:17'),(21789,21782,133,4,NULL,'2021-07-13 00:07:17','2021-07-13 00:07:17'),(21791,21790,139,5,NULL,'2021-07-13 00:07:17','2021-07-13 00:07:17'),(21792,21790,139,5,NULL,'2021-07-13 00:07:17','2021-07-13 00:07:17'),(21793,21790,139,5,NULL,'2021-07-13 00:07:17','2021-07-13 00:07:17'),(21794,21790,139,5,NULL,'2021-07-13 00:07:17','2021-07-13 00:07:17'),(21795,21790,139,5,NULL,'2021-07-13 00:07:17','2021-07-13 00:07:17'),(21796,21790,139,5,NULL,'2021-07-13 00:07:17','2021-07-13 00:07:17'),(22101,22100,91,1,NULL,'2021-07-16 01:57:58','2021-07-16 01:57:58'),(22141,22140,91,1,NULL,'2021-07-16 01:58:24','2021-07-16 01:58:24'),(22270,22269,91,1,NULL,'2021-07-16 03:23:11','2021-07-16 03:23:11'),(22271,22269,91,1,NULL,'2021-07-16 03:23:11','2021-07-16 03:23:11'),(22283,22282,91,1,NULL,'2021-07-16 03:53:04','2021-07-16 03:53:04'),(22300,22299,91,1,NULL,'2021-07-16 03:55:48','2021-07-16 03:55:48'),(22315,22314,91,1,NULL,'2021-07-16 03:57:20','2021-07-16 03:57:20'),(22330,22329,91,1,NULL,'2021-07-16 04:08:00','2021-07-16 04:08:00'),(22336,22335,91,1,NULL,'2021-07-16 04:09:55','2021-07-16 04:09:55'),(22379,22378,91,1,NULL,'2021-07-16 04:25:30','2021-07-16 04:25:30'),(22383,22382,91,1,NULL,'2021-07-16 04:25:30','2021-07-16 04:25:30'),(22402,22401,91,1,NULL,'2021-07-16 05:01:46','2021-07-16 05:01:46'),(22406,22405,91,1,NULL,'2021-07-16 05:01:46','2021-07-16 05:01:46'),(22424,22423,91,1,NULL,'2021-07-16 05:27:15','2021-07-16 05:27:15'),(22428,22427,91,1,NULL,'2021-07-16 05:27:15','2021-07-16 05:27:15');
/*!40000 ALTER TABLE `supertableblocks` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `supertableblocks_owners`
--

LOCK TABLES `supertableblocks_owners` WRITE;
/*!40000 ALTER TABLE `supertableblocks_owners` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `supertableblocks_owners` VALUES (18544,18543,1),(18546,18545,1),(18547,18545,2),(18548,18545,3),(18549,18545,4),(18556,18555,1),(18558,18557,1),(18559,18557,2),(18560,18557,3),(18561,18557,4),(18578,18577,1),(18580,18579,1),(18581,18579,2),(18582,18579,3),(18583,18579,4),(19016,19015,1),(19035,19034,1),(19099,19098,1),(19101,19100,1),(19102,19100,2),(19103,19100,3),(19104,19100,4),(19111,19110,1),(19113,19112,1),(19114,19112,2),(19115,19112,3),(19116,19112,4),(21774,21773,1),(21775,21773,2),(21776,21773,3),(21777,21773,4),(21778,21773,5),(21781,21780,1),(21783,21782,1),(21784,21782,2),(21785,21782,3),(21786,21782,4),(21787,21782,5),(21788,21782,6),(21789,21782,7),(21791,21790,1),(21792,21790,2),(21793,21790,3),(21794,21790,4),(21795,21790,5),(21796,21790,6),(22101,22100,1),(22141,22140,1),(22270,22269,1),(22271,22269,2),(22283,22282,1),(22300,22299,1),(22315,22314,1),(22330,22329,1),(22336,22335,1),(22379,22378,1),(22383,22382,1),(22402,22401,1),(22406,22405,1),(22424,22423,1),(22428,22427,1);
/*!40000 ALTER TABLE `supertableblocks_owners` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `supertableblocktypes`
--

LOCK TABLES `supertableblocktypes` WRITE;
/*!40000 ALTER TABLE `supertableblocktypes` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `supertableblocktypes` VALUES (1,91,20,'2021-06-09 23:37:45','2021-06-09 23:37:45','a682c5d8-5ed9-44ea-be04-ed916c59d271'),(2,124,24,'2021-06-21 04:26:33','2021-06-21 04:26:33','22a36585-ad97-42d7-a505-6b6569ec8558'),(3,128,26,'2021-06-21 04:26:33','2021-06-21 04:26:33','cabf6e30-d8bb-4032-9f16-4e631d02d93c'),(4,133,29,'2021-06-21 04:26:34','2021-06-21 04:26:34','e14f1850-2264-4e3b-85fc-f0fc7ad7b17b'),(5,139,31,'2021-06-21 04:26:34','2021-06-21 04:26:34','3b5acc45-812e-43a1-8f5c-67a64af02e02'),(6,166,40,'2021-07-13 00:27:14','2021-07-13 00:27:14','0ff78a3e-28e9-41dd-b794-188081cdccf7');
/*!40000 ALTER TABLE `supertableblocktypes` 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;
INSERT INTO `taggroups` VALUES (2,'Client tags','clientTags',59,'2021-05-17 06:58:19','2021-11-15 01:17:35',NULL,'f9f7ea29-3116-431c-b030-ca588113a389'),(4,'Deliverable tags','deliverableTags',58,'2021-06-03 05:53:55','2021-11-15 01:17:35',NULL,'b4ffdba8-651f-4b6a-930e-be68fb926f28');
/*!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;
INSERT INTO `tags` VALUES (16795,2,NULL,'2021-05-17 07:01:00','2021-05-17 07:01:00'),(16834,2,NULL,'2021-05-17 23:43:31','2021-05-17 23:43:31'),(17850,2,NULL,'2021-05-25 06:14:02','2021-05-25 06:14:02'),(17851,2,NULL,'2021-05-25 06:16:19','2021-05-25 06:16:19'),(17855,2,NULL,'2021-05-26 01:35:56','2021-05-26 01:35:56'),(17857,2,NULL,'2021-05-26 01:44:01','2021-05-26 01:44:01'),(17862,2,NULL,'2021-05-26 02:12:21','2021-05-26 02:12:21'),(17864,2,NULL,'2021-05-26 02:16:07','2021-05-26 02:16:07'),(17866,2,NULL,'2021-05-26 02:17:58','2021-05-26 02:17:58'),(17868,2,NULL,'2021-05-26 03:26:45','2021-05-26 03:26:45'),(17872,2,NULL,'2021-05-26 03:44:07','2021-05-26 03:44:07'),(18033,4,NULL,'2021-06-03 05:55:30','2021-06-03 05:55:30'),(18040,4,NULL,'2021-06-03 05:55:44','2021-06-03 05:55:44'),(18041,4,NULL,'2021-06-03 05:55:51','2021-06-03 05:55:51'),(18042,4,NULL,'2021-06-03 05:55:59','2021-06-03 05:55:59'),(18043,4,NULL,'2021-06-03 05:56:05','2021-06-03 05:56:05'),(18044,4,NULL,'2021-06-03 05:56:11','2021-06-03 05:56:11'),(18045,4,NULL,'2021-06-03 05:56:17','2021-06-03 05:56:17'),(18046,4,NULL,'2021-06-03 05:56:23','2021-06-03 05:56:23'),(18047,4,NULL,'2021-06-03 05:56:28','2021-06-03 05:56:28'),(18048,4,NULL,'2021-06-03 05:56:33','2021-06-03 05:56:33'),(18049,4,NULL,'2021-06-03 05:56:41','2021-06-03 05:56:41'),(18050,4,NULL,'2021-06-03 05:56:48','2021-06-03 05:56:48'),(18104,4,NULL,'2021-06-03 06:15:07','2021-06-03 06:15:07'),(18105,4,NULL,'2021-06-03 06:15:25','2021-06-03 06:15:25'),(18106,4,NULL,'2021-06-03 06:15:35','2021-06-03 06:15:35'),(18107,4,NULL,'2021-06-03 06:15:42','2021-06-03 06:15:42'),(18108,4,NULL,'2021-06-03 06:15:49','2021-06-03 06:15:49'),(18114,4,NULL,'2021-06-03 06:16:46','2021-06-03 06:16:46'),(18115,4,NULL,'2021-06-03 06:16:54','2021-06-03 06:16:54'),(18116,4,NULL,'2021-06-03 06:17:01','2021-06-03 06:17:01'),(18117,4,NULL,'2021-06-03 06:17:12','2021-06-03 06:17:12'),(18118,4,NULL,'2021-06-03 06:17:17','2021-06-03 06:17:17'),(18119,4,NULL,'2021-06-03 06:17:23','2021-06-03 06:17:23'),(18120,4,NULL,'2021-06-03 06:17:28','2021-06-03 06:17:28'),(18121,4,NULL,'2021-06-03 06:17:32','2021-06-03 06:17:32'),(18125,4,NULL,'2021-06-03 22:50:50','2021-06-03 22:50:50'),(18129,4,NULL,'2021-06-03 22:51:45','2021-06-03 22:51:45'),(18130,4,NULL,'2021-06-03 22:51:51','2021-06-03 22:51:51'),(18131,4,NULL,'2021-06-03 22:51:56','2021-06-03 22:51:56'),(18132,4,NULL,'2021-06-03 22:52:04','2021-06-03 22:52:04'),(18133,4,NULL,'2021-06-03 22:52:09','2021-06-03 22:52:09'),(18134,4,NULL,'2021-06-03 22:52:41','2021-06-03 22:52:41'),(18135,4,NULL,'2021-06-03 22:52:47','2021-06-03 22:52:47'),(18145,4,NULL,'2021-06-03 23:02:34','2021-06-03 23:02:34'),(18149,4,NULL,'2021-06-03 23:03:10','2021-06-03 23:03:10'),(18150,4,NULL,'2021-06-03 23:03:24','2021-06-03 23:03:24'),(18151,4,NULL,'2021-06-03 23:03:35','2021-06-03 23:03:35'),(18152,4,NULL,'2021-06-03 23:03:40','2021-06-03 23:03:40'),(18153,4,NULL,'2021-06-03 23:03:47','2021-06-03 23:03:47'),(18154,4,NULL,'2021-06-03 23:03:53','2021-06-03 23:03:53'),(18155,4,NULL,'2021-06-03 23:03:57','2021-06-03 23:03:57'),(18159,4,NULL,'2021-06-03 23:04:20','2021-06-03 23:04:20'),(18160,4,NULL,'2021-06-03 23:04:30','2021-06-03 23:04:30'),(18161,4,NULL,'2021-06-03 23:04:32','2021-06-03 23:04:32'),(18162,4,NULL,'2021-06-03 23:04:53','2021-06-03 23:04:53'),(18163,4,NULL,'2021-06-03 23:04:59','2021-06-03 23:04:59'),(18167,4,NULL,'2021-06-03 23:05:30','2021-06-03 23:05:30'),(18171,4,NULL,'2021-06-03 23:06:32','2021-06-03 23:06:32'),(18172,4,NULL,'2021-06-03 23:06:37','2021-06-03 23:06:37'),(18173,4,NULL,'2021-06-03 23:06:41','2021-06-03 23:06:41'),(18174,4,NULL,'2021-06-03 23:06:46','2021-06-03 23:06:46'),(18175,4,NULL,'2021-06-03 23:06:52','2021-06-03 23:06:52'),(18179,4,NULL,'2021-06-03 23:07:31','2021-06-03 23:07:31'),(18180,4,NULL,'2021-06-03 23:07:47','2021-06-03 23:07:47'),(18181,4,NULL,'2021-06-03 23:08:10','2021-06-03 23:08:10'),(18185,4,NULL,'2021-06-03 23:08:49','2021-06-03 23:08:49'),(22317,2,NULL,'2021-07-16 04:06:19','2021-07-16 04:06:19'),(30428,2,NULL,'2021-08-06 06:54:09','2021-08-06 06:54:09'),(38125,2,NULL,'2021-08-26 23:34:08','2021-08-26 23:34:08');
/*!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;
INSERT INTO `tokens` VALUES (682,'7Hyik264RwVp0uNQ6G0iUkVcs6Pabom0','[\"preview/preview\",{\"elementType\":\"craft\\\\elements\\\\Entry\",\"canonicalId\":142847,\"siteId\":1,\"draftId\":null,\"revisionId\":null,\"userId\":17887}]',NULL,NULL,'2023-04-04 01:07:22','2023-04-03 01:07:22','2023-04-03 01:07:22','388b1bd7-63bb-45ae-b05a-4d2b5f6dac8c');
/*!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;
INSERT INTO `usergroups` VALUES (1,'Audit user','auditUser','','2021-04-20 01:17:09','2021-04-20 01:17:09','39b88f8d-6448-4a93-ab67-54498561aae6'),(2,'NWO Staff','nwoStaff','','2021-05-25 05:48:21','2021-05-25 05:48:21','23b92378-5094-4e5b-9831-346803f914f0');
/*!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;
INSERT INTO `usergroups_users` VALUES (3,1,1,'2021-04-20 06:32:45','2021-04-20 06:32:45','f6be043b-cf68-464e-9f42-0009ddd526f9'),(7,2,17954,'2021-06-01 07:09:17','2021-06-01 07:09:17','8e680019-446f-4c63-88d6-1d79e68eb383'),(8,2,17875,'2021-06-01 07:16:52','2021-06-01 07:16:52','d288877e-9130-4a46-944c-77c79ef3fbde'),(9,2,17887,'2021-06-01 07:17:03','2021-06-01 07:17:03','3cbeec90-b5f0-46c8-bd11-f92695b36c14'),(11,2,17899,'2021-06-01 07:17:21','2021-06-01 07:17:21','47737fcc-b796-4285-b1a5-71821a7d7630'),(13,2,17934,'2021-06-01 07:18:01','2021-06-01 07:18:01','bd599d64-1421-45fa-a983-94080eaaf04e'),(14,2,17881,'2021-06-01 07:18:12','2021-06-01 07:18:12','76ea6e4f-b386-4e99-957e-163e86245331'),(15,2,17956,'2021-06-01 07:18:37','2021-06-01 07:18:37','c18b053e-8ee1-4834-97e2-563248b5fbb0'),(17,1,19176,'2021-06-11 01:36:22','2021-06-11 01:36:22','31b6bcb3-4d1a-432b-9504-242c0d004ae2'),(18,1,19179,'2021-06-11 01:42:05','2021-06-11 01:42:05','a7d351fb-1d35-4a58-9926-67c94a48e0e5'),(19,1,19185,'2021-06-11 01:47:49','2021-06-11 01:47:49','ffc679a8-cfec-4f1c-ad05-211a77bce72d'),(20,1,19191,'2021-06-11 04:54:21','2021-06-11 04:54:21','74c5b7c9-c5b0-4b7b-a39f-e31aea797a6d'),(21,1,19197,'2021-06-13 23:21:06','2021-06-13 23:21:06','d8be2368-247e-4610-b0b1-e539abf2bf54'),(22,1,17875,'2021-06-15 04:51:03','2021-06-15 04:51:03','512a41ae-0f38-4e7c-b130-9c8f1e41a079'),(23,2,17941,'2021-06-21 04:50:14','2021-06-21 04:50:14','4c7dfabe-1e45-4be9-8a0d-7192a4fa8b7c'),(24,2,17996,'2021-06-21 04:52:37','2021-06-21 04:52:37','dab67337-e0cb-4237-94fd-e42fc8d1bf63'),(26,2,30433,'2021-08-12 00:15:26','2021-08-12 00:15:26','329c64a5-f5b4-4141-baf6-dc96e4d260b1'),(27,1,45223,'2021-09-10 06:08:06','2021-09-10 06:08:06','f78c55e9-808a-4678-a733-148d6166436d'),(28,1,45225,'2021-09-10 06:08:52','2021-09-10 06:08:52','340b440d-52c0-4294-a5cc-679ce272ca2f'),(29,1,45226,'2021-09-10 06:09:41','2021-09-10 06:09:41','7ca60a03-8ccd-41de-8c88-10076ffad2b8'),(30,2,17921,'2021-11-09 05:39:23','2021-11-09 05:39:23','5f3a7190-a234-4088-bb66-37b32b47c808'),(31,2,97259,'2022-01-20 03:43:02','2022-01-20 03:43:02','3782ca11-3d87-49d2-83c8-f6dd2d75fb04'),(32,1,141503,'2022-06-28 01:35:34','2022-06-28 01:35:34','ca1a1d49-57bf-4450-bbcb-d36cf340c528'),(33,2,141616,'2022-07-10 23:08:43','2022-07-10 23:08:43','9585d157-4906-4432-bf33-f153354722d2'),(34,2,141642,'2022-07-27 06:04:22','2022-07-27 06:04:22','05ff3eca-27bc-428f-859e-9761ce7fcbef'),(36,2,142039,'2022-09-29 02:22:09','2022-09-29 02:22:09','e82ba0cb-956a-4c02-9e1a-799e66af44aa'),(37,2,142716,'2022-10-18 00:33:26','2022-10-18 00:33:26','45f3df44-c18e-47db-8038-03b03476db15');
/*!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;
INSERT INTO `userpermissions` VALUES (1,'createentries:1e439968-7658-40fc-b32c-b180f0cf7dd6','2021-04-20 01:17:09','2021-04-20 01:17:09','6c9087e3-d870-46fc-8522-4eec03373c7a'),(4,'accesssitewhensystemisoff','2021-05-25 05:48:21','2021-05-25 05:48:21','c01cbc07-9b63-4eb0-8242-da7bac774abb'),(5,'accesscpwhensystemisoff','2021-05-25 05:48:21','2021-05-25 05:48:21','dac575c9-529b-469a-b75c-9f67f6cbe30e'),(6,'performupdates','2021-05-25 05:48:21','2021-05-25 05:48:21','c809295c-997f-445b-a597-1f9c8ce31c90'),(7,'accessplugin-feed-me','2021-05-25 05:48:21','2021-05-25 05:48:21','9de3b8f0-d7eb-4d88-b6f4-cf33722881d9'),(8,'accessplugin-freeform','2021-05-25 05:48:21','2021-05-25 05:48:21','605acdbf-1ff8-4f94-9200-3da1875a8064'),(9,'accessplugin-sprig','2021-05-25 05:48:21','2021-05-25 05:48:21','9f3efadf-b6e8-467b-843c-6fa9bf008d83'),(10,'accesscp','2021-05-25 05:48:21','2021-05-25 05:48:21','aa9bac08-f9fb-45d2-96bc-1d967e7b096d'),(12,'registerusers','2021-05-25 05:48:21','2021-05-25 05:48:21','872708fd-5708-44fe-a16c-12dedc7bea28'),(13,'moderateusers','2021-05-25 05:48:21','2021-05-25 05:48:21','7eb2fcd2-6d85-413f-b7f8-21457ead7659'),(14,'assignuserpermissions','2021-05-25 05:48:21','2021-05-25 05:48:21','d52653bb-31c4-45e4-ac73-745d09af11af'),(15,'assignusergroup:39b88f8d-6448-4a93-ab67-54498561aae6','2021-05-25 05:48:21','2021-05-25 05:48:21','98764255-ec0c-4bf5-b042-bff5808ddbc8'),(17,'administrateusers','2021-05-25 05:48:21','2021-05-25 05:48:21','55f0813a-760e-42c8-ab1c-11aa4471a5d6'),(18,'impersonateusers','2021-05-25 05:48:21','2021-05-25 05:48:21','0b121c9d-4957-4d43-8c20-1153a5e101a9'),(19,'editusers','2021-05-25 05:48:21','2021-05-25 05:48:21','ce53864b-da1a-47ba-beb0-de4236e9aa9a'),(20,'deleteusers','2021-05-25 05:48:21','2021-05-25 05:48:21','bfe32ce6-00c1-49a2-a35e-1b7f4f9556dc'),(21,'createentries:a649cddf-ac92-414a-8d24-cff4dcfeb45e','2021-05-25 05:48:21','2021-05-25 05:48:21','c2bd340e-17dc-4fed-b0d0-ec3954168221'),(23,'deleteentries:a649cddf-ac92-414a-8d24-cff4dcfeb45e','2021-05-25 05:48:21','2021-05-25 05:48:21','d9442ba8-75b5-421a-8f56-c690aa412744'),(25,'deletepeerentries:a649cddf-ac92-414a-8d24-cff4dcfeb45e','2021-05-25 05:48:21','2021-05-25 05:48:21','8dd10ba2-e009-4f95-8381-4799e259d5ee'),(28,'deletepeerentrydrafts:a649cddf-ac92-414a-8d24-cff4dcfeb45e','2021-05-25 05:48:21','2021-05-25 05:48:21','c7ace2dc-c7f4-4423-b2b0-04b3561b7bf7'),(31,'createentries:6683638f-50e1-4d95-9996-a6e6b3aabff9','2021-05-25 05:48:21','2021-05-25 05:48:21','a1584599-feb3-49b2-bee4-f5a6afb44531'),(33,'deleteentries:6683638f-50e1-4d95-9996-a6e6b3aabff9','2021-05-25 05:48:21','2021-05-25 05:48:21','3b47b1b6-6db1-4bc6-9fa3-ddbe70ceed84'),(35,'deletepeerentries:6683638f-50e1-4d95-9996-a6e6b3aabff9','2021-05-25 05:48:21','2021-05-25 05:48:21','881f86e3-deab-440d-b979-bbf69381d7be'),(38,'deletepeerentrydrafts:6683638f-50e1-4d95-9996-a6e6b3aabff9','2021-05-25 05:48:21','2021-05-25 05:48:21','51f59dd1-3b50-4cbc-affb-7b41b211f297'),(53,'freeform-dashboardaccess','2021-05-25 05:48:21','2021-05-25 05:48:21','5ab9ad4d-f31a-444f-8605-f33bdefea677'),(54,'freeform-submissionsread','2021-05-25 05:48:21','2021-05-25 05:48:21','ab39d328-7d0c-45e2-9641-2e1524fe6a26'),(55,'freeform-submissionsread:1','2021-05-25 05:48:21','2021-05-25 05:48:21','c54b6448-3b56-4baf-beca-90e05f924613'),(56,'freeform-submissionsreadindividual','2021-05-25 05:48:21','2021-05-25 05:48:21','d7e767d6-9aa7-4f9c-8bb3-42e52f508a27'),(57,'freeform-submissionsmanage','2021-05-25 05:48:21','2021-05-25 05:48:21','177b82c4-175b-4b20-9fed-6073af3d16f7'),(58,'freeform-submissionsmanage:1','2021-05-25 05:48:21','2021-05-25 05:48:21','d713d2e5-0222-4881-86a4-0c890300ddf4'),(59,'freeform-submissionsmanageindividual','2021-05-25 05:48:21','2021-05-25 05:48:21','59f01143-7202-4977-9066-a4644667555a'),(60,'freeform-submissionsaccess','2021-05-25 05:48:21','2021-05-25 05:48:21','19823997-36e1-49bc-95fe-6c1a8671ec96'),(61,'freeform-formscreate','2021-05-25 05:48:21','2021-05-25 05:48:21','f46e2156-ad17-47a9-a29b-0a7b34e1e8f8'),(62,'freeform-formsdelete','2021-05-25 05:48:21','2021-05-25 05:48:21','41910557-a562-4f17-9ff3-ebd0977c789f'),(63,'freeform-formsmanage','2021-05-25 05:48:21','2021-05-25 05:48:21','a44a50e3-4244-4435-b686-7ddece914259'),(64,'freeform-formsmanage:1','2021-05-25 05:48:21','2021-05-25 05:48:21','090acfe1-739d-4228-8ae5-790dd45a157f'),(65,'freeform-formsmanageindividual','2021-05-25 05:48:21','2021-05-25 05:48:21','cddbefbf-b3fe-47da-90a4-f6ab824ecbef'),(66,'freeform-formsaccess','2021-05-25 05:48:21','2021-05-25 05:48:21','e3673af9-b2c8-4397-9aae-5c11913eeec8'),(67,'freeform-fieldsmanage','2021-05-25 05:48:21','2021-05-25 05:48:21','38734855-a0e2-4e99-833a-0f2978af5753'),(68,'freeform-fieldsaccess','2021-05-25 05:48:21','2021-05-25 05:48:21','6f5947ab-da6c-458b-9f88-d60129d445f3'),(69,'freeform-notificationsmanage','2021-05-25 05:48:21','2021-05-25 05:48:21','6abd6891-c705-4c52-bdf1-d925be9edab3'),(70,'freeform-notificationsaccess','2021-05-25 05:48:21','2021-05-25 05:48:21','d4b242bd-4e9e-4dc1-b47c-6ee9469372f9'),(71,'freeform-settingsaccess','2021-05-25 05:48:21','2021-05-25 05:48:21','40cf72b3-d878-43b9-b11c-ceee0ed854df'),(72,'freeform-resources','2021-05-25 05:48:21','2021-05-25 05:48:21','5550512c-0818-4d4b-9367-6d21766222bd'),(73,'freeform-pro-exportprofilesmanage','2021-05-25 05:48:21','2021-05-25 05:48:21','c9718f9e-f5f4-4ca2-a638-6640b0e9dbed'),(74,'freeform-pro-exportprofilesaccess','2021-05-25 05:48:21','2021-05-25 05:48:21','ab8cd5ac-43f6-4b7a-bd67-522b04fe4527'),(77,'deleteentries:1e439968-7658-40fc-b32c-b180f0cf7dd6','2021-06-11 01:35:15','2021-06-11 01:35:15','383343a8-adad-468d-b04e-63d8a8b4697a'),(78,'freeform-formsmanage:2','2021-07-14 23:10:26','2021-07-14 23:10:26','d4835615-8219-4c13-ae06-ff44031e1110'),(81,'deletepeerentrydrafts:90098b77-7cc0-440f-b64c-27d247c69b07','2021-08-12 00:13:32','2021-08-12 00:13:32','db8c6d57-4a9e-4e04-8c93-04d46e5da1b4'),(86,'deletepeerentrydrafts:a0ddfe68-96f9-46b1-a989-31cbcde47626','2021-08-12 00:13:32','2021-08-12 00:13:32','bfea0ffd-890b-4a35-8307-597852f84f35'),(89,'editglobalset:5511d39d-a282-4557-8bf2-6a3c6f93bd15','2021-08-12 00:13:32','2021-08-12 00:13:32','087f45f5-ce17-45b5-8ff7-762893623da5'),(90,'editglobalset:67a8fc88-4afd-4f2a-a30e-29cf12e725c4','2021-08-12 00:13:32','2021-08-12 00:13:32','146e5187-2d5f-410d-b22b-78994d1da2c2'),(91,'freeform-access-quick-export','2022-03-10 02:21:35','2022-03-10 02:21:35','dd882363-4465-4cc2-bcc5-b4308caf6e90'),(92,'viewentries:1e439968-7658-40fc-b32c-b180f0cf7dd6','2022-05-17 23:19:25','2022-05-17 23:19:25','f436d1cd-a66c-4452-bc2f-467ad9e4b81e'),(93,'saveentries:1e439968-7658-40fc-b32c-b180f0cf7dd6','2022-05-17 23:19:25','2022-05-17 23:19:25','4e6d32f3-d6e3-42bb-8289-7eb8f4667544'),(94,'viewassets:873ea5aa-dc28-4da2-b4ca-d8ec958b6638','2022-05-17 23:19:25','2022-05-17 23:19:25','8541d8bb-3fe9-4574-9b8b-5ce84d8f13b9'),(95,'saveassets:873ea5aa-dc28-4da2-b4ca-d8ec958b6638','2022-05-17 23:19:25','2022-05-17 23:19:25','9236a227-a85a-4cf0-b21d-267a9a2f0fc7'),(96,'deleteassets:873ea5aa-dc28-4da2-b4ca-d8ec958b6638','2022-05-17 23:19:25','2022-05-17 23:19:25','2ea1db0c-8609-44ea-b8fa-1335654d11bb'),(97,'replacefiles:873ea5aa-dc28-4da2-b4ca-d8ec958b6638','2022-05-17 23:19:25','2022-05-17 23:19:25','81d52152-3890-4b3a-8e92-fa99526319e4'),(98,'editimages:873ea5aa-dc28-4da2-b4ca-d8ec958b6638','2022-05-17 23:19:25','2022-05-17 23:19:25','2b33b0db-16fd-4917-9b96-852a8108efe3'),(99,'viewpeerassets:873ea5aa-dc28-4da2-b4ca-d8ec958b6638','2022-05-17 23:19:25','2022-05-17 23:19:25','2891b0ad-642c-4d5b-9dd1-f8633a0c91ad'),(100,'savepeerassets:873ea5aa-dc28-4da2-b4ca-d8ec958b6638','2022-05-17 23:19:25','2022-05-17 23:19:25','4ac6e564-be8c-485b-8f6c-811c5a0c5bc6'),(101,'replacepeerfiles:873ea5aa-dc28-4da2-b4ca-d8ec958b6638','2022-05-17 23:19:25','2022-05-17 23:19:25','8767ef6a-d23d-4531-85d1-a2fa6deb5d65'),(102,'deletepeerassets:873ea5aa-dc28-4da2-b4ca-d8ec958b6638','2022-05-17 23:19:25','2022-05-17 23:19:25','07ed629f-f30a-4cd4-8eaf-13b73e01d014'),(103,'editpeerimages:873ea5aa-dc28-4da2-b4ca-d8ec958b6638','2022-05-17 23:19:25','2022-05-17 23:19:25','98a947cc-6514-4e5a-9b36-1029e1f017f1'),(104,'createfolders:873ea5aa-dc28-4da2-b4ca-d8ec958b6638','2022-05-17 23:19:25','2022-05-17 23:19:25','32a4bad9-b959-48cf-94dd-8cc49950ac8d'),(105,'viewcategories:1bc6714f-5786-433d-b7dd-879fbc8767b7','2022-05-17 23:19:25','2022-05-17 23:19:25','fad096f3-b411-49be-9a83-63e8c9cac275'),(106,'savecategories:1bc6714f-5786-433d-b7dd-879fbc8767b7','2022-05-17 23:19:25','2022-05-17 23:19:25','42b9cb15-2124-4de0-b108-6d8b63df63d6'),(107,'deletecategories:1bc6714f-5786-433d-b7dd-879fbc8767b7','2022-05-17 23:19:25','2022-05-17 23:19:25','821ef535-775e-406f-a7c3-48322c51f5b8'),(108,'viewpeercategorydrafts:1bc6714f-5786-433d-b7dd-879fbc8767b7','2022-05-17 23:19:25','2022-05-17 23:19:25','8c4964c6-5fae-4ef9-85d0-7671e2bad6d7'),(109,'savepeercategorydrafts:1bc6714f-5786-433d-b7dd-879fbc8767b7','2022-05-17 23:19:25','2022-05-17 23:19:25','d9b5f135-a55a-4d81-b786-7f0ca6e7b3c1'),(110,'deletepeercategorydrafts:1bc6714f-5786-433d-b7dd-879fbc8767b7','2022-05-17 23:19:25','2022-05-17 23:19:25','3446ba64-0559-468d-ac51-9a0c18f329d1'),(111,'viewcategories:73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba','2022-05-17 23:19:25','2022-05-17 23:19:25','4456fdb8-3691-4f90-87a1-f26a592c1cee'),(112,'savecategories:73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba','2022-05-17 23:19:25','2022-05-17 23:19:25','81528b22-6b41-40d2-8eaf-6c48fbe093de'),(113,'deletecategories:73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba','2022-05-17 23:19:25','2022-05-17 23:19:25','42bd1526-46aa-413c-b48f-86f8f1d3251d'),(114,'viewpeercategorydrafts:73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba','2022-05-17 23:19:25','2022-05-17 23:19:25','083f11d5-3191-414c-8a26-a8c17142dff4'),(115,'savepeercategorydrafts:73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba','2022-05-17 23:19:25','2022-05-17 23:19:25','cf7c95b2-4f51-40e1-892f-338e81996e42'),(116,'deletepeercategorydrafts:73dde9b9-e0b4-4234-9cb9-efbd8e63b2ba','2022-05-17 23:19:25','2022-05-17 23:19:25','ced06417-3175-46d7-8577-45c4b8b4a36f'),(117,'viewcategories:cfd21061-ac1a-4fa4-adba-02a314e45cb2','2022-05-17 23:19:25','2022-05-17 23:19:25','d5aa6706-b1c6-4a22-baaa-219b182d8e8d'),(118,'savecategories:cfd21061-ac1a-4fa4-adba-02a314e45cb2','2022-05-17 23:19:25','2022-05-17 23:19:25','984cd182-0d46-4ba7-9933-0008ae25c686'),(119,'deletecategories:cfd21061-ac1a-4fa4-adba-02a314e45cb2','2022-05-17 23:19:25','2022-05-17 23:19:25','ea3cec3d-62e8-421c-bfec-4371e2d58447'),(120,'viewpeercategorydrafts:cfd21061-ac1a-4fa4-adba-02a314e45cb2','2022-05-17 23:19:25','2022-05-17 23:19:25','7a95e870-877a-48f7-9804-70647f2e08cd'),(121,'savepeercategorydrafts:cfd21061-ac1a-4fa4-adba-02a314e45cb2','2022-05-17 23:19:25','2022-05-17 23:19:25','b19ebeb2-7812-4e68-9954-ba32ab1cc236'),(122,'deletepeercategorydrafts:cfd21061-ac1a-4fa4-adba-02a314e45cb2','2022-05-17 23:19:25','2022-05-17 23:19:25','9b6f5a5f-72f5-4d31-bc2e-29a14ccb7117'),(123,'viewentries:90098b77-7cc0-440f-b64c-27d247c69b07','2022-05-17 23:19:25','2022-05-17 23:19:25','bad7d773-8f59-4396-b7c4-144432680e1d'),(124,'saveentries:90098b77-7cc0-440f-b64c-27d247c69b07','2022-05-17 23:19:25','2022-05-17 23:19:25','4ea6bed8-cd91-45b5-bc4b-d7b9be0c9f91'),(125,'viewpeerentrydrafts:90098b77-7cc0-440f-b64c-27d247c69b07','2022-05-17 23:19:25','2022-05-17 23:19:25','75f70fbf-d1d4-43ac-b19b-825fdd3eb879'),(126,'savepeerentrydrafts:90098b77-7cc0-440f-b64c-27d247c69b07','2022-05-17 23:19:25','2022-05-17 23:19:25','434776d3-5bd6-4523-8685-067be0ee6a80'),(127,'viewentries:a649cddf-ac92-414a-8d24-cff4dcfeb45e','2022-05-17 23:19:25','2022-05-17 23:19:25','989b7b40-030c-43a4-84d7-12257f3b6935'),(128,'saveentries:a649cddf-ac92-414a-8d24-cff4dcfeb45e','2022-05-17 23:19:25','2022-05-17 23:19:25','baae7a2c-afab-4f42-9ae2-63a0a6969155'),(129,'viewpeerentrydrafts:a649cddf-ac92-414a-8d24-cff4dcfeb45e','2022-05-17 23:19:25','2022-05-17 23:19:25','9bae6a5e-d6ab-4223-8ddb-fa70687f822b'),(130,'savepeerentrydrafts:a649cddf-ac92-414a-8d24-cff4dcfeb45e','2022-05-17 23:19:25','2022-05-17 23:19:25','2705787d-ad20-480b-8f39-72a045ce59dd'),(131,'viewpeerentries:a649cddf-ac92-414a-8d24-cff4dcfeb45e','2022-05-17 23:19:25','2022-05-17 23:19:25','aa9a21dc-759d-450a-a57e-e34fe39aceee'),(132,'savepeerentries:a649cddf-ac92-414a-8d24-cff4dcfeb45e','2022-05-17 23:19:25','2022-05-17 23:19:25','6258657e-7f7d-46d1-b675-5253ee5b4c67'),(133,'viewentries:a0ddfe68-96f9-46b1-a989-31cbcde47626','2022-05-17 23:19:25','2022-05-17 23:19:25','9c2797e4-5635-4da6-a64a-77bbd3005c95'),(134,'saveentries:a0ddfe68-96f9-46b1-a989-31cbcde47626','2022-05-17 23:19:25','2022-05-17 23:19:25','fd9c12da-0e2d-41ad-8a81-9201042362fd'),(135,'viewpeerentrydrafts:a0ddfe68-96f9-46b1-a989-31cbcde47626','2022-05-17 23:19:25','2022-05-17 23:19:25','45b2a305-4b2a-4410-9852-a6dc49207bdc'),(136,'savepeerentrydrafts:a0ddfe68-96f9-46b1-a989-31cbcde47626','2022-05-17 23:19:25','2022-05-17 23:19:25','ea37a976-3d24-4bc0-b40b-dd9608c2cde3'),(137,'viewentries:6683638f-50e1-4d95-9996-a6e6b3aabff9','2022-05-17 23:19:25','2022-05-17 23:19:25','9750c79a-0002-4682-9fd5-8c7194d87282'),(138,'saveentries:6683638f-50e1-4d95-9996-a6e6b3aabff9','2022-05-17 23:19:25','2022-05-17 23:19:25','2fd52135-678d-4943-a027-dafdd2fc3a69'),(139,'viewpeerentrydrafts:6683638f-50e1-4d95-9996-a6e6b3aabff9','2022-05-17 23:19:25','2022-05-17 23:19:25','41067cae-deb2-4db7-ad0c-8fa78fed1889'),(140,'savepeerentrydrafts:6683638f-50e1-4d95-9996-a6e6b3aabff9','2022-05-17 23:19:25','2022-05-17 23:19:25','21ec974d-7332-466b-b556-21cb8adaae8d'),(141,'viewpeerentries:6683638f-50e1-4d95-9996-a6e6b3aabff9','2022-05-17 23:19:25','2022-05-17 23:19:25','92d73d86-19a1-4d62-b7b2-9d96aa79f358'),(142,'savepeerentries:6683638f-50e1-4d95-9996-a6e6b3aabff9','2022-05-17 23:19:25','2022-05-17 23:19:25','40519059-4cf1-4456-85d3-fa891cf63fc0'),(143,'assignusergroup:23b92378-5094-4e5b-9831-346803f914f0','2022-05-17 23:19:25','2022-05-17 23:19:25','c86ad6c3-c508-4784-92e7-ca981563ec24'),(144,'freeform-formsmanage:3','2023-02-27 02:02:24','2023-02-27 02:02:24','352ca205-526b-4177-98bb-ed1daef6373b');
/*!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;
INSERT INTO `userpermissions_usergroups` VALUES (503,1,1,'2022-05-17 23:19:25','2022-05-17 23:19:25','972c50c5-fcf7-4fc8-9c5b-e3e0f617f408'),(504,77,1,'2022-05-17 23:19:25','2022-05-17 23:19:25','aef06e5f-a194-45ea-8d32-cb00ee5bcefd'),(505,92,1,'2022-05-17 23:19:25','2022-05-17 23:19:25','162ddf9f-fcda-4d7c-8a2a-86f88d6a289d'),(506,93,1,'2022-05-17 23:19:25','2022-05-17 23:19:25','c10f3b4a-f827-42b0-bb19-4684ee439187'),(507,15,1,'2022-05-17 23:19:25','2022-05-17 23:19:25','a23b6a55-b122-434e-8089-0e3edcfb430c'),(608,4,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','e4b2919f-0418-4f63-9872-b1efd32e71f5'),(609,5,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','83c6ccbb-4e18-48ea-9782-3f221f4fe857'),(610,6,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','c5546afc-1874-4620-b127-aac18d869a0d'),(611,7,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','3bede6fa-f595-4ec4-ab14-cabe12fef7ac'),(612,8,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','001794d4-3201-4d5a-8d3b-0413c7a987b9'),(613,9,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','7446e1bb-b60c-4a8c-b7b4-4997f8f343a2'),(614,10,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','3c684042-d25b-4eba-805e-5e7da3eced7d'),(615,12,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','9eab7a52-73f9-439f-8624-a97beac78931'),(616,13,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','e478c4bf-f0d0-4b10-b16e-86f2a5bc6e58'),(617,14,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','a5ed101d-eec8-4994-8133-31bdbee434c0'),(618,15,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','7a96507e-c64e-4828-8dd9-3f10d649c0b8'),(619,17,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','af4f7b07-636d-4ed1-a2ee-4d2b7206bd27'),(620,18,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','5b0f665e-2352-455a-9aee-9c45f44b706c'),(621,19,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','dcc6a26b-dac1-417c-bb57-7887df37047b'),(622,20,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','b2141802-d476-419b-b0ab-ad2c1b77a4d6'),(623,81,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','c995572d-4a84-4069-b698-cfe96413e26d'),(624,21,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','a97c29c3-c319-4f7e-831e-7359b0d97b72'),(625,23,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','34766d92-543f-4207-9d93-01fb95e2535f'),(626,25,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','62da95a9-d546-42f5-927a-595a8ff7b4be'),(627,28,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','64bf0a71-6f8f-49ab-ab7c-ea7d238ad2c5'),(628,86,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','dfa76bbb-f0cd-45b7-b81d-6910de1e36d0'),(629,31,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','e1006dfe-fa5d-43de-b75d-6271a36ee521'),(630,33,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','3a07d24a-065c-4fd4-ab4e-3be03c330908'),(631,35,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','5dd10607-7cce-4e1d-8471-bf307d5680e7'),(632,38,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','068dd616-58e8-499d-ae09-aea8a13b1385'),(633,89,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','6fdec21a-9aaf-4451-ad54-3211cd99dbd2'),(634,90,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','47bedddf-bf44-450f-81c3-2c56372c95cc'),(635,53,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','2fc8fe05-6d8d-4aed-b72f-97f680651e56'),(636,54,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','42d1a117-ea23-4807-b0bf-3769819ee70c'),(637,55,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','3002d781-2b47-4365-9eb3-5f473c7a2350'),(638,56,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','6c80c43a-e743-4a06-81dd-93db727e49ed'),(639,57,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','db2a70e2-8f9c-40c8-9ab6-f1960451c58b'),(640,58,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','34d18f5c-0d99-41ec-9789-daf1e61c1584'),(641,59,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','6f599112-75f2-4e3c-9d8c-bc5ec2aab2f7'),(642,60,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','b42931e8-ac30-4bcd-8520-0dbf6e09678b'),(643,61,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','157c237b-fe07-4b23-90a8-7783b974d35d'),(644,62,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','c4fd5fd9-5f79-4e50-87dc-5ebb06c92a65'),(645,63,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','8c222d98-6c06-4797-aca7-d08bc673744b'),(646,64,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','1324232b-7acf-4e10-bb17-b0405075eec1'),(647,65,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','0b7393e3-3b0b-4282-843b-99c04467a830'),(648,66,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','62fb633d-c8ad-4e5f-a1a7-3fea48155b7f'),(649,67,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','245736c7-3350-4879-b560-65ff5f56ffca'),(650,68,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','4dfd06fe-0c8c-4e1b-993c-1ccc4215d095'),(651,69,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','1f983835-5516-4b3a-a60a-9d60827f6392'),(652,70,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','2e1f8bd2-6e79-4a19-be80-dd4e1a1d2c91'),(653,91,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','feb0d71c-1a1f-4fc4-ba43-9bc37a90b4b5'),(654,73,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','c974735e-dce3-4984-ad60-c88217b1a8d8'),(655,74,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','38cc195f-8a28-4a0e-a209-35c17db35439'),(656,71,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','33b18b54-6b05-4de7-aab3-5431b1905daf'),(657,72,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','ea9fc374-01c7-4284-a171-bcdcb0df5c84'),(658,94,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','95b66a5e-bfc6-4346-acbf-ed5e072bbe37'),(659,95,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','175623bb-16be-40ca-9da8-66e242305698'),(660,96,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','e628eb2d-c61c-4ea8-a0ba-92752a11715a'),(661,97,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','998100bd-51f8-498a-b3f6-42a8865254e1'),(662,98,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','d2c3de0e-eef7-43c0-9a30-f72e315cded9'),(663,99,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','402417fc-1e35-4709-9879-4b49e25c4734'),(664,100,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','74d3fb0b-b35d-4962-8f18-746e3c8ffb30'),(665,101,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','d3f23c46-35eb-47c3-88f6-6ed78749c3da'),(666,102,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','c3517528-7a54-4664-9414-5fad06740809'),(667,103,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','9e2631ac-c04b-4859-b07e-4ecc4143a479'),(668,104,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','e354d022-33ce-4f45-a4c7-df98e7741525'),(669,105,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','63ed5a47-3491-4587-a44f-7e032dd77095'),(670,106,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','7fd26e2a-86fd-4448-8de8-7bb9ca793a7e'),(671,107,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','2016f5dd-0ffa-4497-9e0d-0c4093e6e364'),(672,108,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','43b5492f-b314-449d-b8e2-a18de4d3b8ac'),(673,109,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','df3912df-24dd-48fb-afd6-015a1225e7ce'),(674,110,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','ba8425a7-e013-4d54-8fd5-0c82f6ea2a14'),(675,111,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','eec8af57-8e32-4dcd-97c1-c63a875e48c4'),(676,112,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','56b89771-58f2-4984-bd57-cbdd6d1385f4'),(677,113,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','8f85cdb7-7d96-4493-a3c1-31eb8c015ef2'),(678,114,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','f58c62e5-effa-46bb-8b88-76a9d084336e'),(679,115,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','5a0993e4-6970-4dec-888f-2ca6f5e9db6e'),(680,116,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','73f70615-44a1-4b35-a70a-5e5988d04ed8'),(681,117,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','13f22a68-1ef5-4e03-9961-076d8f8eb96c'),(682,118,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','ab241e9a-0d3c-4a78-a5ce-f14086bd7936'),(683,119,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','abe94dd3-2bda-454a-8416-53f143ccf11c'),(684,120,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','2020df3b-fafa-4a0b-bf9b-367d5c722017'),(685,121,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','a5592222-333f-4c69-9281-410f06825bd0'),(686,122,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','c29ab806-1c0a-497c-aef4-cb3c60ee2d16'),(687,123,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','c87621b6-a1ea-4d42-ba39-ab27a577ec2d'),(688,124,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','aa7c16ea-0517-4820-9a5d-70243363ed95'),(689,125,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','617473eb-b06e-44ee-ae7e-ed1d646798f4'),(690,126,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','7cbc3671-efb6-465c-8331-863a7dcfe755'),(691,127,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','21287048-03c1-4e8e-a368-1c5ad5c31c78'),(692,128,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','7d64286b-9fd5-4f28-b91c-41f7e4169695'),(693,129,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','649ab9a6-5ad8-4632-9985-114f4a7e27d2'),(694,130,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','75ae32d0-c5ab-4abf-83fa-67f5649515b6'),(695,131,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','ad5f6db4-7488-4d42-b060-9bab7167272b'),(696,132,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','78892682-60bd-4862-98d5-79ea6c0683aa'),(697,133,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','81fcb35c-c7ef-4f58-bd65-50881fba9eca'),(698,134,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','0073079e-55aa-473c-99cf-787b7f3ba3de'),(699,135,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','a2ef8174-5c2b-4144-b5a6-a0daccfdb17e'),(700,136,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','5af9298f-4a03-45d9-9309-60d1ba667e68'),(701,137,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','97a17661-d33c-4ed6-9cd9-f8f6c75b00fe'),(702,138,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','bdade26d-a5f3-442c-916f-895d2e1db00a'),(703,139,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','558482e6-fac7-44cf-b297-b5c11dd3d199'),(704,140,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','1f960bd5-716a-4c5a-bb9a-e6c1d9d0d1ef'),(705,141,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','4916311b-5b87-45e5-b580-0909642387f6'),(706,142,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','65c4c71d-ed8c-4311-8f36-68dde1d8dfb1'),(707,143,2,'2022-05-17 23:19:25','2022-05-17 23:19:25','e3d9ae6f-e27d-4d85-9357-7f076461e5c1');
/*!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-GB\",\"locale\":null,\"weekStartDay\":\"1\",\"alwaysShowFocusRings\":false,\"useShapes\":false,\"underlineLinks\":false,\"notificationDuration\":null,\"showFieldHandles\":true,\"enableDebugToolbarForSite\":false,\"enableDebugToolbarForCp\":true,\"showExceptionView\":true,\"profileTemplates\":true}'),(17875,'{\"language\":null,\"locale\":null,\"weekStartDay\":null,\"alwaysShowFocusRings\":false,\"useShapes\":false,\"underlineLinks\":false,\"notificationDuration\":null,\"showFieldHandles\":false,\"enableDebugToolbarForSite\":false,\"enableDebugToolbarForCp\":false,\"showExceptionView\":false,\"profileTemplates\":false}'),(17881,'{\"language\":null,\"locale\":null,\"weekStartDay\":null,\"alwaysShowFocusRings\":false,\"useShapes\":false,\"underlineLinks\":false,\"notificationDuration\":null}'),(17887,'{\"language\":\"en\",\"locale\":null,\"weekStartDay\":\"1\",\"alwaysShowFocusRings\":false,\"useShapes\":false,\"underlineLinks\":false,\"notificationDuration\":\"5000\",\"showFieldHandles\":false,\"enableDebugToolbarForSite\":false,\"enableDebugToolbarForCp\":false,\"showExceptionView\":false,\"profileTemplates\":false}'),(17893,'{\"language\":\"en\",\"locale\":null,\"weekStartDay\":\"1\",\"alwaysShowFocusRings\":false,\"useShapes\":false,\"underlineLinks\":false,\"notificationDuration\":null,\"showFieldHandles\":true,\"enableDebugToolbarForSite\":true,\"enableDebugToolbarForCp\":true,\"showExceptionView\":true,\"profileTemplates\":false}'),(17899,'{\"language\":null,\"locale\":null,\"weekStartDay\":null,\"alwaysShowFocusRings\":false,\"useShapes\":false,\"underlineLinks\":false,\"notificationDuration\":null,\"showFieldHandles\":false,\"enableDebugToolbarForSite\":false,\"enableDebugToolbarForCp\":false,\"showExceptionView\":false,\"profileTemplates\":false}'),(17921,'{\"language\":null,\"locale\":null,\"weekStartDay\":null,\"alwaysShowFocusRings\":false,\"useShapes\":false,\"underlineLinks\":false,\"notificationDuration\":null}'),(17934,'{\"language\":\"en\",\"locale\":null,\"weekStartDay\":\"1\",\"alwaysShowFocusRings\":false,\"useShapes\":false,\"underlineLinks\":false,\"notificationDuration\":\"5000\"}'),(17941,'{\"language\":null,\"locale\":null,\"weekStartDay\":null,\"alwaysShowFocusRings\":false,\"useShapes\":false,\"underlineLinks\":false,\"notificationDuration\":null}'),(17954,'{\"language\":null,\"locale\":null,\"weekStartDay\":null,\"alwaysShowFocusRings\":false,\"useShapes\":false,\"underlineLinks\":false,\"notificationDuration\":null,\"showFieldHandles\":false,\"enableDebugToolbarForSite\":false,\"enableDebugToolbarForCp\":false,\"showExceptionView\":false,\"profileTemplates\":false}'),(17956,'{\"language\":\"en-GB\",\"locale\":null,\"weekStartDay\":\"1\",\"alwaysShowFocusRings\":false,\"useShapes\":false,\"underlineLinks\":false,\"notificationDuration\":null,\"showFieldHandles\":false,\"enableDebugToolbarForSite\":false,\"enableDebugToolbarForCp\":false,\"showExceptionView\":false,\"profileTemplates\":false}'),(17958,'{\"language\":null,\"locale\":null,\"weekStartDay\":null,\"useShapes\":false,\"underlineLinks\":false}'),(17996,'{\"language\":null,\"locale\":null,\"weekStartDay\":null,\"alwaysShowFocusRings\":false,\"useShapes\":false,\"underlineLinks\":false,\"notificationDuration\":null,\"showFieldHandles\":false,\"enableDebugToolbarForSite\":false,\"enableDebugToolbarForCp\":false,\"showExceptionView\":false,\"profileTemplates\":false}'),(19176,'{\"language\":null,\"locale\":null,\"weekStartDay\":null,\"useShapes\":false,\"underlineLinks\":false}'),(19179,'{\"language\":null,\"locale\":null,\"weekStartDay\":null,\"useShapes\":false,\"underlineLinks\":false}'),(19185,'{\"language\":null,\"locale\":null,\"weekStartDay\":null,\"useShapes\":false,\"underlineLinks\":false}'),(19191,'{\"language\":null,\"locale\":null,\"weekStartDay\":null,\"useShapes\":false,\"underlineLinks\":false}'),(19197,'{\"language\":null,\"locale\":null,\"weekStartDay\":null,\"useShapes\":false,\"underlineLinks\":false}'),(21898,'{\"language\":null,\"locale\":null,\"weekStartDay\":null,\"alwaysShowFocusRings\":false,\"useShapes\":false,\"underlineLinks\":false,\"notificationDuration\":null}'),(30433,'{\"language\":null,\"locale\":null,\"weekStartDay\":null,\"alwaysShowFocusRings\":false,\"useShapes\":false,\"underlineLinks\":false,\"notificationDuration\":null}'),(45223,'{\"language\":null,\"locale\":null,\"weekStartDay\":null,\"alwaysShowFocusRings\":false,\"useShapes\":false,\"underlineLinks\":false}'),(45225,'{\"language\":null,\"locale\":null,\"weekStartDay\":null,\"alwaysShowFocusRings\":false,\"useShapes\":false,\"underlineLinks\":false}'),(45226,'{\"language\":null,\"locale\":null,\"weekStartDay\":null,\"alwaysShowFocusRings\":false,\"useShapes\":false,\"underlineLinks\":false}'),(97259,'{\"language\":null,\"locale\":null,\"weekStartDay\":null,\"alwaysShowFocusRings\":false,\"useShapes\":false,\"underlineLinks\":false,\"notificationDuration\":null}'),(140513,'{\"language\":null,\"locale\":null,\"weekStartDay\":null,\"alwaysShowFocusRings\":false,\"useShapes\":false,\"underlineLinks\":false,\"showFieldHandles\":false,\"enableDebugToolbarForSite\":false,\"enableDebugToolbarForCp\":false,\"showExceptionView\":false,\"profileTemplates\":false}'),(141503,'{\"language\":null,\"locale\":null,\"weekStartDay\":null,\"alwaysShowFocusRings\":false,\"useShapes\":false,\"underlineLinks\":false,\"showFieldHandles\":false,\"enableDebugToolbarForSite\":false,\"enableDebugToolbarForCp\":false,\"showExceptionView\":false,\"profileTemplates\":false}'),(141616,'{\"language\":null,\"locale\":null,\"weekStartDay\":null,\"alwaysShowFocusRings\":false,\"useShapes\":false,\"underlineLinks\":false,\"notificationDuration\":null}'),(141642,'{\"language\":null,\"locale\":null,\"weekStartDay\":null,\"alwaysShowFocusRings\":false,\"useShapes\":false,\"underlineLinks\":false,\"notificationDuration\":null}'),(142039,'{\"language\":null,\"locale\":null,\"weekStartDay\":null,\"alwaysShowFocusRings\":false,\"useShapes\":false,\"underlineLinks\":false,\"notificationDuration\":null}'),(142250,'{\"language\":null,\"locale\":null,\"weekStartDay\":null,\"alwaysShowFocusRings\":false,\"useShapes\":false,\"underlineLinks\":false,\"showFieldHandles\":false,\"enableDebugToolbarForSite\":false,\"enableDebugToolbarForCp\":false,\"showExceptionView\":false,\"profileTemplates\":false}'),(142281,'{\"language\":null,\"locale\":null,\"weekStartDay\":null,\"alwaysShowFocusRings\":false,\"useShapes\":false,\"underlineLinks\":false,\"notificationDuration\":null}'),(142716,'{\"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,'ryan','Ryan Murray',74046,'Ryan','Murray','digital@newwordorder.com.au','$2y$13$xe2RqG9hbieE2JTle2DkX.UTDoV9rkjrMfPCluAELdYVrDEe5.G.S',1,1,0,0,0,'2023-03-24 04:30:26',NULL,NULL,NULL,'2022-06-28 01:32:56',NULL,1,NULL,NULL,NULL,0,'2021-03-30 06:11:46','2021-03-30 06:11:46','2023-03-24 04:30:26'),(17875,'andrew','Andrew McGuckin',74034,'Andrew','McGuckin','andrew@newwordorder.com.au','$2y$13$st9zE3MXw.XCVp3awlZ4fONTvR/xwhenurPGGB6dn66vUMzJ8toq6',1,1,0,0,0,'2023-03-24 06:08:41',NULL,NULL,NULL,'2022-10-18 00:32:27',NULL,1,NULL,NULL,NULL,0,'2021-06-15 04:49:55','2021-05-31 07:10:29','2023-03-24 06:08:41'),(17881,'rebecca','Rebecca Holman',74045,'Rebecca','Holman','rebecca@newwordorder.com.au','$2y$13$yKrQdookraIxj/hhpndK3uwjNN85I0DnL2zqJD3Luyo.xGaCR8WIS',0,1,0,0,0,'2022-09-14 06:43:09',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,'2022-09-14 06:42:50','2021-05-31 07:14:26','2022-09-14 06:43:09'),(17887,'bree','Bree Leitch',74035,'Bree','Leitch','bree@newwordorder.com.au','$2y$13$BDQVFeqkW2ID5bQlMlEFZOce8M9dA/lGsEUcyWXoy2rcnDund6eBi',1,1,0,0,0,'2023-04-06 04:48:41',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,'2021-09-17 06:02:14','2021-05-31 07:17:11','2023-04-06 04:48:41'),(17893,'bruce','Bruce Connell',74037,'Bruce','Connell','bruce@newwordorder.com.au','$2y$13$ERM/qUILI.4du0MHG9weSOGAfkbnukPrABSWJAeEeJxss1fa4iElO',1,1,0,0,0,'2023-03-06 01:03:23',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,'2021-11-15 06:42:05','2021-05-31 07:20:10','2023-03-06 01:03:23'),(17899,'jo','Jo Penney',74039,'Jo','Penney','jo@newwordorder.com.au','$2y$13$hErohXWw4LSmzpogSUXlcuUOMRcMUsb7aKrEupGgGKfRWAvsNtXra',1,1,0,0,0,'2023-04-05 04:36:58',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,'2022-02-11 00:13:01','2021-06-01 06:34:23','2023-04-05 04:36:58'),(17921,'kerry','Kerry Park',74156,'Kerry','Park','accounts@newwordorder.com.au',NULL,0,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,'2021-06-01 06:59:14','2022-05-17 23:18:51'),(17934,'kimi','Kimi Schieren',74042,'Kimi','Schieren','kimberley@newwordorder.com.au','$2y$13$Pnb5LS/tinn1MdKXkMNyWOzxm.p7N5vEvIWEOtwE6SttAGg7fcFLC',0,1,0,0,0,'2023-03-30 23:02:19',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,'2021-08-12 00:05:57','2021-06-01 07:03:46','2023-03-30 23:02:19'),(17941,'liam','Liam Ryan',74043,'Liam','Ryan','liam@newwordorder.com.au',NULL,0,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,'2021-06-01 07:07:28','2022-05-17 23:18:51'),(17954,'scott','Scott Oxford',74047,'Scott','Oxford','scott@newwordorder.com.au','$2y$13$6uDsjJk/9tBsX1ZhnUTUqOZ60bCye4bITk9Wu9ln3SIwhU3UrOzEy',1,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,'2021-06-01 09:19:04','2021-06-01 07:09:17','2022-05-25 03:53:36'),(17956,'suzanne','Suzanne Oxford',74049,'Suzanne','Oxford','suzanne@newwordorder.com.au','$2y$13$Wz/UT9dyUy3fnXEstZsu0.l893EzRo0H1t.X9eLDIi0UHBVHj5mGm',1,1,0,0,0,'2022-02-08 22:38:47',NULL,NULL,NULL,'2021-11-30 01:21:47',NULL,1,NULL,NULL,NULL,0,'2021-11-30 01:25:31','2021-06-01 07:09:51','2022-05-17 23:18:51'),(17958,'lynn','Lynnette Davis',NULL,'Lynnette','Davis','lynn@newwordorder.com.au',NULL,0,0,0,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,'2021-06-01 07:14:11','2021-06-01 07:14:11'),(17996,'tim','Tim Kho',74050,'Tim','Kho','tim@newwordorder.com.au','$2y$13$p06sokD7wCZjqUefVboQAeW5V7WFSua2QWpEd5Hc7/BQprtmpM2NS',1,1,0,0,0,'2022-10-24 02:18:47',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,'2022-10-24 02:18:35','2021-06-02 23:43:43','2022-10-24 02:18:47'),(19176,'stewart','Stewart Anderson',NULL,'Stewart','Anderson','stewart@surepipe.com.au','$2y$13$j.GKv35rgGgFYPs3qx42D.aPKLugKJcS5vZPJv85Lzo2Y4f9nxT16',0,1,0,0,0,'2021-06-11 01:37:47',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,'2021-06-11 01:37:35','2021-06-11 01:36:22','2022-05-17 23:18:51'),(19179,'franc','Franc Pierro',NULL,'Franc','Pierro','franc@surepipe.com.au',NULL,0,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,'2021-06-11 01:42:05','2022-05-17 23:18:51'),(19185,'rachel','Rachel Shannon',NULL,'Rachel','Shannon','rachel@surepipe.com.au',NULL,0,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,'2021-06-11 01:47:49','2022-05-17 23:18:51'),(19191,'james','James McIlwraith',NULL,'James','McIlwraith','james@surepipe.com.au',NULL,0,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,'2021-06-11 04:54:21','2022-05-17 23:18:51'),(19197,'someuser','Some User',NULL,'Some','User','someuser@somecompany.com.au','$2y$13$H6iguthxkqA45jGDkVj90uUMfU0rxJwpvc3r.iKU.a5SjBnUp/8eS',0,1,0,0,0,'2021-06-14 06:58:23',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,'2021-06-13 23:22:33','2021-06-13 23:21:06','2022-05-17 23:18:51'),(21898,'janine','Janine Crawford',74038,'Janine','Crawford','janine@newwordorder.com.au',NULL,0,1,0,1,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,'2021-07-14 02:01:23','2022-10-24 23:07:36'),(30433,'margaret','Margaret Tam',74044,'Margaret','Tam','margaret@newwordorder.com.au','$2y$13$lzgacUpIibdRQn1NY/Oi1er8VVG3DD6Sij022XOcEmxHo0G7eVeH6',0,1,0,0,0,'2021-09-08 04:05:04',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,'2021-09-08 04:04:48','2021-08-12 00:15:26','2022-05-25 01:36:10'),(45223,'dave','Dave Saxby',NULL,'Dave','Saxby','dave@bloomasia.org','$2y$13$EU1/5tlIH3awTSiuyPuKDev3Us4sUBfX92zJogEoQLX.TOr8WI/Oy',0,1,0,0,0,'2021-09-27 02:47:01',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,'2021-09-13 04:04:35','2021-09-10 06:08:06','2022-05-17 23:18:51'),(45225,'emma','Emma Hall',NULL,'Emma','Hall','emma.hall@bloomasia.org','$2y$13$WDKeejKscZir8u1nquMIE.52O7HyCZrqPfrTpZGPkyarYbgWglrG.',0,1,0,0,0,'2021-09-28 07:19:50',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,'2021-09-13 04:06:38','2021-09-10 06:08:52','2022-05-17 23:18:51'),(45226,'ruth','Ruth Larwill',NULL,'Ruth','Larwill','ruth@bloomasia.org','$2y$13$ffg3dIRiUAtUDPFcCchh6OehyBQf9HbBuWEWpZqdtDw./iDX1eBmy',0,1,0,0,0,'2021-09-28 01:30:26',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,'2021-09-13 04:07:43','2021-09-10 06:09:41','2022-05-17 23:18:51'),(97259,'marnie','Marnie Vaughn',97266,'Marnie','Vaughn','marnie@newwordorder.com.au','$2y$13$lC08s8RnUdjWwSjH8XenIeso82XAaY.pGhRNSx5fUURZo5ZxzLGnG',0,1,0,0,0,'2022-09-14 06:41:19',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,'2022-01-20 03:46:20','2022-01-20 03:43:01','2022-09-14 06:41:19'),(140513,'sonnet',NULL,NULL,NULL,NULL,'support@sonnet.digital','$2y$13$5wrckmibJKYk.On0rQBubebXcQHGeu.k.oj0sQ7rRD/gWsN.D7o0.',1,1,0,0,0,'2023-04-11 01:52:53',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,'2022-08-08 23:41:44','2022-06-16 23:07:06','2023-04-11 01:52:53'),(141503,'elliot','Elliot Kidd',NULL,'Elliot','Kidd','elliot@madebyverse.com','$2y$13$gAdSpdteAUkNJVI0Bul6Qe/91jAPKHx/i1jfdequYV31qlZ7ZIrWS',1,1,0,0,0,'2022-06-28 01:36:20',NULL,NULL,NULL,'2022-06-28 01:36:13',NULL,1,NULL,NULL,NULL,0,'2022-06-28 01:36:09','2022-06-28 01:35:34','2022-06-28 01:36:20'),(141616,'greg','Greg Bowell',141735,'Greg','Bowell','greg@newwordorder.com.au',NULL,0,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,'2022-07-10 23:07:09','2022-07-26 05:44:08'),(141642,'william','William Grunwald',141962,'William','Grunwald','william@newwordorder.com.au','$2y$13$kkM5.9MLwUx4d8HxpraLuea5Ebc/n.CXDzFVdQVex4uG3wz55F8lS',0,1,0,0,0,'2022-10-06 02:01:03',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,'2022-10-06 02:00:29','2022-07-20 04:37:24','2022-10-06 02:01:03'),(142039,'hazel','Hazel',142648,'Hazel',NULL,'hello@newwordorder.com.au',NULL,0,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,'2022-08-25 00:35:10','2022-09-29 02:19:43'),(142250,'michelle','Michelle Jones',NULL,'Michelle','Jones','michellejonesweb@gmail.com','$2y$13$2uMswOeESb9Tlu2K.BY01eewDZWzeAMRfOP7jlVm7PZmNT6Py1CMq',1,1,0,0,0,'2022-09-09 01:17:00',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,'2022-09-08 06:44:15','2022-09-08 06:39:03','2022-09-09 01:17:00'),(142281,'test','test',NULL,'Test',NULL,'bruce@varleyconnell.net','$2y$13$00/27JoDQc5X/mwAaMzKTun.yUpClncQsDQ8q/8FwXAMJmvUHPHjO',0,0,0,0,0,'2022-09-15 23:01:55',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,'2022-09-14 06:37:11','2022-09-14 06:35:53','2023-03-09 04:39:35'),(142716,'mike','Mike Ballantyne',142874,'Mike','Ballantyne','mike@newwordorder.com.au','$2y$13$HyOWO/3cS.Jf60GeTcTg8./9307w8x6UpgopM.axqoQ8PAM6JGNZm',0,1,0,0,0,'2022-10-19 22:23:49',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,'2022-10-18 00:36:14','2022-10-18 00:33:26','2022-10-28 06:47:58');
/*!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,'Upload',NULL,'2021-05-14 06:20:53','2022-05-17 23:19:11','408a368f-706a-4c9b-a105-8143342abd3d'),(2,NULL,NULL,'Temporary source',NULL,'2021-05-14 06:27:56','2021-05-14 06:27:56','6ee83e4a-e07f-4ede-93fc-a70ff8dc3367'),(4,1,1,'projects','projects/','2021-05-14 06:36:29','2021-05-14 06:36:29','1af78c76-1f98-413a-8cba-806a83fcab61'),(5,1,1,'work','work/','2021-05-14 06:36:38','2021-05-14 06:36:38','b282c414-9c1f-463d-b7af-08f962b8f017'),(6,1,1,'feeds','feeds/','2021-05-18 00:24:32','2021-05-18 00:24:32','42c5c9e4-c1f3-4296-9538-b62fd8c9b246'),(7,1,1,'WP-Media-Library','WP-Media-Library/','2021-05-18 00:51:20','2021-05-18 00:51:20','e494a837-29d4-4505-bd35-8c29b058d52b'),(13,1,1,'email-sig','email-sig/','2021-11-08 23:55:10','2021-11-08 23:55:10','f8eb608c-e4c0-48d5-8f61-401afd8aa23a'),(58,2,NULL,'user_17887','user_17887/','2023-02-07 05:11:41','2023-02-07 05:11:41','2a64d599-7c53-405f-a35b-24d8616e967e'),(59,2,NULL,'user_17875','user_17875/','2023-02-27 01:54:58','2023-02-27 01:54:58','3ecd1165-1c22-417d-a44c-4104f3818785'),(60,2,NULL,'user_140513','user_140513/','2023-03-01 01:02:42','2023-03-01 01:02:42','1498890a-2f69-4944-897b-167eeedd7605'),(61,2,NULL,'user_1','user_1/','2023-03-23 08:49:12','2023-03-23 08:49:12','a73c4794-110c-48e9-9ce2-7c934b981593'),(62,2,NULL,'user_17934','user_17934/','2023-03-30 02:08:29','2023-03-30 02:08:29','b1585b24-ac8e-47c5-8107-22f2918e19bd');
/*!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,10,'Upload','upload','upload',NULL,NULL,'site',NULL,0,'2021-05-14 06:20:53','2021-06-03 04:05:59',NULL,'873ea5aa-dc28-4da2-b4ca-d8ec958b6638');
/*!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,'2021-03-30 06:11:48','2021-03-30 06:11:48','d8b9b724-5d0f-41cc-9339-c0a06cdfaf35'),(2,1,'craft\\widgets\\CraftSupport',2,NULL,'[]',1,'2021-03-30 06:11:48','2021-03-30 06:11:48','94a244a5-ad4b-4e38-9dda-3d10e3627922'),(3,1,'craft\\widgets\\Updates',3,NULL,'[]',1,'2021-03-30 06:11:48','2021-03-30 06:11:48','1c848212-da8e-49d6-a3bb-63bcd3c24e56'),(4,1,'craft\\widgets\\Feed',4,NULL,'{\"url\":\"https://craftcms.com/news.rss\",\"title\":\"Craft News\",\"limit\":5}',1,'2021-03-30 06:11:48','2021-03-30 06:11:48','8660639b-fabd-48d4-8d07-e29e11ca5bbd'),(8,17875,'craft\\widgets\\RecentEntries',1,NULL,'{\"siteId\":1,\"section\":\"*\",\"limit\":10}',1,'2021-06-15 04:50:07','2021-06-15 04:50:07','87119d4e-8b3b-4b08-a006-eed4ab1f7970'),(9,17875,'craft\\widgets\\CraftSupport',2,NULL,'[]',1,'2021-06-15 04:50:07','2021-06-15 04:50:07','f477c4f8-fa65-4419-8039-35eaf6992123'),(10,17875,'craft\\widgets\\Updates',3,NULL,'[]',1,'2021-06-15 04:50:07','2021-06-15 04:50:07','1b91e90f-fd14-4e41-9160-6fde04a2dbe0'),(11,17875,'craft\\widgets\\Feed',4,NULL,'{\"url\":\"https://craftcms.com/news.rss\",\"title\":\"Craft News\",\"limit\":5}',1,'2021-06-15 04:50:07','2021-06-15 04:50:07','e2a407a8-5f3b-47df-8c85-506b5fc76848'),(12,17887,'craft\\widgets\\RecentEntries',1,NULL,'{\"siteId\":1,\"section\":\"*\",\"limit\":10}',1,'2021-06-21 06:13:50','2021-06-21 06:13:50','b3e19bd6-cb9d-4b47-ac7a-857a6f79bbe3'),(13,17887,'craft\\widgets\\Updates',2,NULL,'[]',1,'2021-06-21 06:13:50','2021-06-21 06:13:50','7999a0f1-154b-42f2-b31b-d12a2774f9f6'),(14,17887,'craft\\widgets\\Feed',3,NULL,'{\"url\":\"https://craftcms.com/news.rss\",\"title\":\"Craft News\",\"limit\":5}',1,'2021-06-21 06:13:50','2021-06-21 06:13:50','036bf304-1d27-46e4-b124-4aa515c9a39d'),(15,17893,'craft\\widgets\\RecentEntries',1,NULL,'{\"siteId\":1,\"section\":\"*\",\"limit\":10}',1,'2021-07-20 23:34:13','2021-07-20 23:34:13','9f628e24-3eb7-4284-9fbb-8ad31473a6b2'),(16,17893,'craft\\widgets\\CraftSupport',2,NULL,'[]',1,'2021-07-20 23:34:13','2021-07-20 23:34:13','4b275a23-44d6-47c1-b930-52a493d2c223'),(17,17893,'craft\\widgets\\Updates',3,NULL,'[]',1,'2021-07-20 23:34:13','2021-07-20 23:34:13','3be9fb96-651b-479b-a55b-5268fdeea784'),(18,17893,'craft\\widgets\\Feed',4,NULL,'{\"url\":\"https://craftcms.com/news.rss\",\"title\":\"Craft News\",\"limit\":5}',1,'2021-07-20 23:34:13','2021-07-20 23:34:13','a156e6e4-aba8-4278-b44f-1882a5fbb29e'),(19,17934,'craft\\widgets\\RecentEntries',1,NULL,'{\"siteId\":1,\"section\":\"*\",\"limit\":10}',1,'2021-08-12 00:06:07','2021-08-12 00:06:07','19405e11-d229-4b0f-ade5-03c1a43bd21d'),(20,17934,'craft\\widgets\\Updates',2,NULL,'[]',1,'2021-08-12 00:06:07','2021-08-12 00:06:07','1c3afd6c-604b-4191-ab03-7cb5ccc2cac6'),(21,17934,'craft\\widgets\\Feed',3,NULL,'{\"url\":\"https://craftcms.com/news.rss\",\"title\":\"Craft News\",\"limit\":5}',1,'2021-08-12 00:06:07','2021-08-12 00:06:07','ff290127-a83e-43d3-b68c-7acbef7285f9'),(22,30433,'craft\\widgets\\RecentEntries',1,NULL,'{\"siteId\":1,\"section\":\"*\",\"limit\":10}',1,'2021-08-12 00:20:07','2021-08-12 00:20:07','c7390442-aead-494d-9c4c-c0d8c7e03ebd'),(23,30433,'craft\\widgets\\Updates',2,NULL,'[]',1,'2021-08-12 00:20:07','2021-08-12 00:20:07','1bc461fc-4cc4-4344-a01f-6289bde3aa81'),(24,30433,'craft\\widgets\\Feed',3,NULL,'{\"url\":\"https://craftcms.com/news.rss\",\"title\":\"Craft News\",\"limit\":5}',1,'2021-08-12 00:20:07','2021-08-12 00:20:07','d16efe1a-1671-479d-bca7-3e7566987231'),(25,17956,'craft\\widgets\\RecentEntries',1,NULL,'{\"siteId\":1,\"section\":\"*\",\"limit\":10}',1,'2021-09-10 06:15:20','2021-09-10 06:15:20','c6e9aff1-9cf1-4a4c-b07b-c8637807b4f5'),(26,17956,'craft\\widgets\\CraftSupport',2,NULL,'[]',1,'2021-09-10 06:15:20','2021-09-10 06:15:20','f42f076d-2b28-42a6-b0e2-f7c865534891'),(27,17956,'craft\\widgets\\Updates',3,NULL,'[]',1,'2021-09-10 06:15:20','2021-09-10 06:15:20','7a82d573-3d2d-4c5c-8953-7b51e7108d22'),(28,17956,'craft\\widgets\\Feed',4,NULL,'{\"url\":\"https://craftcms.com/news.rss\",\"title\":\"Craft News\",\"limit\":5}',1,'2021-09-10 06:15:20','2021-09-10 06:15:20','b4cfbf68-84d7-4deb-8308-88734a5f4e4f'),(29,17921,'craft\\widgets\\RecentEntries',1,NULL,'{\"siteId\":1,\"section\":\"*\",\"limit\":10}',1,'2021-11-09 05:43:46','2021-11-09 05:43:46','ece88414-ea9b-454c-9c4f-871952d6c39a'),(30,17921,'craft\\widgets\\Updates',2,NULL,'[]',1,'2021-11-09 05:43:46','2021-11-09 05:43:46','12f3796b-dad0-49bb-8fdb-848313940756'),(31,17921,'craft\\widgets\\Feed',3,NULL,'{\"url\":\"https://craftcms.com/news.rss\",\"title\":\"Craft News\",\"limit\":5}',1,'2021-11-09 05:43:46','2021-11-09 05:43:46','3ef10b89-670c-451c-ba67-6ff491653829'),(32,17996,'craft\\widgets\\RecentEntries',1,NULL,'{\"siteId\":1,\"section\":\"*\",\"limit\":10}',1,'2021-12-06 03:18:54','2021-12-06 03:18:54','80b026d3-7962-42da-b107-1900f820a2ce'),(33,17996,'craft\\widgets\\Updates',2,NULL,'[]',1,'2021-12-06 03:18:54','2021-12-06 03:18:54','0f4efd83-004d-4962-a538-1ffb5a3e8c5b'),(34,17996,'craft\\widgets\\Feed',3,NULL,'{\"url\":\"https://craftcms.com/news.rss\",\"title\":\"Craft News\",\"limit\":5}',1,'2021-12-06 03:18:54','2021-12-06 03:18:54','c136332a-6496-467e-a4fb-25ec31feb9dc'),(35,141503,'craft\\widgets\\RecentEntries',1,NULL,'{\"siteId\":1,\"section\":\"*\",\"limit\":10}',1,'2022-06-28 01:36:20','2022-06-28 01:36:20','7047b09c-9048-437c-b4c4-6029c236e3c7'),(36,141503,'craft\\widgets\\CraftSupport',2,NULL,'[]',1,'2022-06-28 01:36:20','2022-06-28 01:36:20','95fa6c2e-88e0-4180-8b32-265e7a9c5c3c'),(37,141503,'craft\\widgets\\Updates',3,NULL,'[]',1,'2022-06-28 01:36:20','2022-06-28 01:36:20','c1bf2bcd-210d-4e69-842d-6834faf5f85d'),(38,141503,'craft\\widgets\\Feed',4,NULL,'{\"url\":\"https://craftcms.com/news.rss\",\"title\":\"Craft News\",\"limit\":5}',1,'2022-06-28 01:36:20','2022-06-28 01:36:20','85faa9ec-c2e9-40ac-9de0-b7bee4a6a929'),(39,140513,'craft\\widgets\\RecentEntries',1,NULL,'{\"siteId\":1,\"section\":\"*\",\"limit\":10}',1,'2022-08-08 23:41:51','2022-08-08 23:41:51','25645b11-4d61-479d-82f1-4b6b57d8f576'),(40,140513,'craft\\widgets\\CraftSupport',2,NULL,'[]',1,'2022-08-08 23:41:51','2022-08-08 23:41:51','58ad018c-1058-4adc-9c0d-8599c80e99d9'),(41,140513,'craft\\widgets\\Updates',3,NULL,'[]',1,'2022-08-08 23:41:51','2022-08-08 23:41:51','ebb66b3f-ccc5-4676-a0d1-3cf0b5a08cf5'),(42,140513,'craft\\widgets\\Feed',4,NULL,'{\"url\":\"https://craftcms.com/news.rss\",\"title\":\"Craft News\",\"limit\":5}',1,'2022-08-08 23:41:51','2022-08-08 23:41:51','be62dd01-0523-43af-8464-bc4a966fd98d'),(43,142250,'craft\\widgets\\RecentEntries',1,NULL,'{\"siteId\":1,\"section\":\"*\",\"limit\":10}',1,'2022-09-08 06:44:23','2022-09-08 06:44:23','0e0a1491-b491-4616-a0af-62c6ec9ab52b'),(44,142250,'craft\\widgets\\CraftSupport',2,NULL,'[]',1,'2022-09-08 06:44:23','2022-09-08 06:44:23','50b49688-8baf-4072-8de0-da518a998343'),(45,142250,'craft\\widgets\\Updates',3,NULL,'[]',1,'2022-09-08 06:44:23','2022-09-08 06:44:23','1898237d-d1fc-47a3-9927-345466b5abdc'),(46,142250,'craft\\widgets\\Feed',4,NULL,'{\"url\":\"https://craftcms.com/news.rss\",\"title\":\"Craft News\",\"limit\":5}',1,'2022-09-08 06:44:23','2022-09-08 06:44:23','41685baa-4123-49fe-a2b7-59070280c403'),(47,142281,'craft\\widgets\\RecentEntries',1,NULL,'{\"siteId\":1,\"section\":\"*\",\"limit\":10}',1,'2022-09-14 06:37:52','2022-09-14 06:37:52','88e0dddd-dc75-4410-ae9e-a175d9dbd8cf'),(48,142281,'craft\\widgets\\Updates',2,NULL,'[]',1,'2022-09-14 06:37:52','2022-09-14 06:37:52','4e50f51c-af76-4c73-bb55-f093345362cd'),(49,142281,'craft\\widgets\\Feed',3,NULL,'{\"url\":\"https://craftcms.com/news.rss\",\"title\":\"Craft News\",\"limit\":5}',1,'2022-09-14 06:37:52','2022-09-14 06:37:52','a6cb4fc7-20dd-43b7-a051-3125aacb660a'),(50,141642,'craft\\widgets\\RecentEntries',1,NULL,'{\"siteId\":1,\"section\":\"*\",\"limit\":10}',1,'2022-10-06 02:01:03','2022-10-06 02:01:03','f6560b46-0490-4896-92b6-d534b178cecc'),(51,141642,'craft\\widgets\\Updates',2,NULL,'[]',1,'2022-10-06 02:01:03','2022-10-06 02:01:03','50e5f8e9-2ead-4700-905a-b4ccfc149f39'),(52,141642,'craft\\widgets\\Feed',3,NULL,'{\"url\":\"https://craftcms.com/news.rss\",\"title\":\"Craft News\",\"limit\":5}',1,'2022-10-06 02:01:03','2022-10-06 02:01:03','f78e8a1f-f630-4ba0-9ec7-ffd5fb87eae1'),(53,142716,'craft\\widgets\\RecentEntries',1,NULL,'{\"siteId\":1,\"section\":\"*\",\"limit\":10}',1,'2022-10-18 00:35:58','2022-10-18 00:35:58','6b682303-cb45-4c00-9379-d2dd687b29a2'),(54,142716,'craft\\widgets\\Updates',2,NULL,'[]',1,'2022-10-18 00:35:58','2022-10-18 00:35:58','bfda3fb8-368e-4c79-86cc-63515aee22d4'),(55,142716,'craft\\widgets\\Feed',3,NULL,'{\"url\":\"https://craftcms.com/news.rss\",\"title\":\"Craft News\",\"limit\":5}',1,'2022-10-18 00:35:58','2022-10-18 00:35:58','f595bf13-3988-4e63-b15a-b066abe2c6f0');
/*!40000 ALTER TABLE `widgets` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `workflow_reviews`
--

LOCK TABLES `workflow_reviews` WRITE;
/*!40000 ALTER TABLE `workflow_reviews` DISABLE KEYS */;
set autocommit=0;
/*!40000 ALTER TABLE `workflow_reviews` ENABLE KEYS */;
UNLOCK TABLES;
commit;

--
-- Dumping data for table `workflow_submissions`
--

LOCK TABLES `workflow_submissions` WRITE;
/*!40000 ALTER TABLE `workflow_submissions` DISABLE KEYS */;
set autocommit=0;
INSERT INTO `workflow_submissions` VALUES (103520,NULL,1,NULL,103513,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"103513\",\"title\":\"Hepatitis C Nursing \",\"slug\":\"hepatitis-c-nursing\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online\",\"71\":\"Camille.Pesava@ashm.org.au\",\"70\":\"0478665419\",\"67\":\"<p><strong>Hepatitis C Nursing</strong>  </p>\\n<p>This free online course aims to provide nurses with the knowledge and confidence to increase screening and management of HCV in primary care settings.  </p>\\n<p><strong>This course is for: </strong>Queensland nurses working in general practice, Aboriginal and Torres Strait Islander Health Services, sexual health services, corrective services, drug and alcohol and mental health, as well as tertiary settings.    </p>\\n<p><em>This activity, including pre-course work, is equivalent to 7.5 CPD hours.</em>  </p>\\n<p>Part 1: 28 August, 9:30am – 12:30pm AEST  <br />Part 2: 5 September, 9:30am – 12:30pm AEST  </p>\\n\\n<p><strong>REGISTER HERE: </strong><a href=\\\"https://www.ashm.org.au/eventinfo/?id=648f6476-cecb-ea11-a812-000d3a793530\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">https://www.ashm.org.au/eventinfo/?id=648f6476-cecb-ea11-a812-000d3a793530</a> </p>\\n<p><em>This event is funded by QLD Health</em> </p>\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"ASHM\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C Nursing  - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C Nursing  - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2020-07-29 05:56:35','2020-07-29 05:56:35','297274f1-bd10-46d0-8d2b-1091dfe48c76'),(123478,NULL,1,NULL,113663,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"113663\",\"title\":\"General Practitioner VR Doctor\",\"slug\":\"general-practitioner-vr-doctor\",\"postDate\":null,\"expiryDate\":1605535200,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"manager@goodwindrivemedical.com.au\",\"100\":\"Angela De-Gaetano\",\"70\":\"0734101122\",\"94\":\"Goodwin Drive Family Medical Centre\",\"93\":[\"65423\"],\"97\":\"4507\",\"98\":\"qld\",\"95\":\"Shop 1, 229-235 Goodwin Drive\",\"96\":\"Bongaree\"}}',NULL,NULL,NULL,'2020-11-17 05:11:16','2020-11-17 05:11:16','83eba7c0-1f5e-4af1-8277-dc8e2b2c4ec3'),(123482,NULL,1,NULL,113663,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"113663\",\"title\":\"General Practitioner VR Doctor\",\"slug\":\"general-practitioner-vr-doctor\",\"postDate\":null,\"expiryDate\":1614434400,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"manager@goodwindrivemedical.com.au\",\"100\":\"Angela De-Gaetano\",\"70\":\"0734101122\",\"99\":\"Goodwin Drive Family Medical Centre is currently seeking a VR GP to fill a recently vacated position within the practice. The successful applicant will replace a popular GP with existing clientele. The centre has a well-established patient base, is privately-owned and centrally located in the main shopping precinct on beautiful Bribie Island.\\n\\nThe practice is supported by a friendly and experienced team of four receptionists, three nurses, a full-time practice manager and uses Best Practice Software. Allied Health and Pathology services are located on site.\\n\\nSituated in an MM2 region with 10991 bulk billing incentive eligibility, the practice offers optimal bulk billing to local residents.\\n\\nWe are open Monday to Friday 7am to 6pm and Saturdays 8am to 12noon. Hours are flexible and offer a work and lifestyle balance within a caring and supportive team environment.\\n\\nInitial minimum hourly guarantee available or 70% of receipts, whichever is the higher.\\n\\nThe position is well suited to a GP with special interest in skin examination, procedures, dermatology or cosmetic medicine.\\n\\nEssential Criteria:\\n\\nMBBS or equivalent degree with current AHPRA registration\\n\\nFRACGP or equivalent\\n\\nExcellent communication and organisational skills\\n\\nActive participation in Professional Development\\n\\nIndemnity Insurance\\n\\nCaring and friendly personality\",\"94\":\"Goodwin Drive Family Medical Centre\",\"93\":[\"65423\"],\"97\":\"4507\",\"98\":\"qld\",\"95\":\"Shop 1, 229-235 Goodwin Drive\",\"96\":\"Bongaree\"}}',NULL,NULL,NULL,'2020-11-17 05:12:00','2020-11-17 05:12:00','6c300b8f-64f4-4fe9-be2a-5776c1f4f909'),(140230,140224,1,NULL,99496,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"99496\",\"title\":\"Full Time or Part Time VR GP\",\"slug\":\"full-time-or-part-time-vr-gp\",\"postDate\":null,\"expiryDate\":1638280800,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"reception@platinummedical.com.au\",\"100\":\"DR ANITA SHARMA\",\"70\":\"+61738614455\",\"99\":\"Wanted a part-time or full time VR GP for a high quality privately owned, accredited, mixed billling practice in chermside. Great nursing support. Onsite allied health, psychologist and visiting cardiologist.\\n\\nInterested candidates please forward your resume to Dr Anita Sharma, Practice Principle. \\n\",\"94\":\"Platinum Medical Centre\",\"93\":[\"65423\"],\"97\":\"4032\",\"98\":\"qld\",\"95\":\"10-18 Banfield street\",\"96\":\"chermside\"}}',NULL,NULL,NULL,'2021-03-12 23:50:35','2021-03-12 23:50:35','1d1fa8a1-1467-4627-b15a-08e17a9ff516'),(140237,140233,1,NULL,127740,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"127740\",\"title\":\"FullTime/Part Time VR GP  ,BRACKEN RIDGE FAMILY PRACTICE in North Brisbane\",\"slug\":\"fulltime-part-time-vr-gp-bracken-ridge-family-practice-in-north-brisbane\",\"postDate\":null,\"expiryDate\":1623592800,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"tomvarghese64@gmail.com\",\"100\":\"DR TOMY vARGHESE\",\"70\":\"0427150464\",\"99\":\" Fantastic opportunity for a VR GP - Very Busy Practice. GP owned and operated medical centre.Days and hours are flexible. .Fully computerised (Best Practice)with full time Nurse support and modern treatment room with ear microsuction equipment.Supportive andfriendly team.Accredited for GP training.Doctors with special interest like skin cancer surgery or cosmetic procedures welcome. Private billing for procedures .Fantastic remuneration and flexibility offered 70% of the billing and $160/hr guarantee for 6 months.Relocation grant available for the right candidate.\",\"94\":\"BRACKEN RIDGE FAMILY PRACTICE\",\"93\":[\"65423\"],\"97\":\"4017\",\"98\":\"qld\",\"95\":\"Shop1,81GAWAIN RD\",\"96\":\"BRACKEN RIDGE\"}}',NULL,NULL,NULL,'2021-03-14 13:43:24','2021-03-14 13:43:24','cec0d794-831f-4104-bdaf-7c048f385bfb'),(141316,141315,1,NULL,103515,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":103515,\"title\":\"Hepatitis C Nursing\",\"slug\":\"hepatitis-c-nursing\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"molly.stannard@ashm.org.au\",\"70\":\"0478 020 174\",\"67\":\"This free facilitated online training course provides nurses with the knowledge and confidence to increase screening and management of hepatitis C in primary care settings.\\n\\nThis training will be delivered in two sessions.\\nOnline Training Session 1: Friday 30 April, 9:30am-12:30pm (AEST)\\nOnline Training Session 2: Saturday 08 May, 9:30am-12:30pm (AEST)\\nPlease note that you will need to attend both of the live Zoom sessions in order to receive a certificate of completion.\\n\\nPart 1 consists of  a recommended pre reading and a 1-hour eLearning component on advanced liver disease\\nPart 2 consist of two live online Zoom training sessions building on the pre reading and eLearning content  through presentations and practical case discussions.\\n\\nTarget Audience:\\nQueensland nurses working in sexual health services, public and private medical clinics, refugee and migrant services, correctional facilities, Aboriginal and Torres Strait Islander health services, drug and alcohol services, mental health services, and youth services, and Midwives.\\n\\nLearning Objectives:\\nBy the end of this training, participants will be able to: \\n1. Describe risk factors for HCV, enabling discussions with patients around prevention\\n2. Discuss HCV serology to identify opportunities for screening, testing and linkage-to-care\\n3. Explain the nurse’s role in providing culturally appropriate care, free from stigma and discrimination, to people from priority populations\\n4. Explain the nurse’s role in the management of chronic HCV, advanced liver disease and hepatocellular carcinoma    \\n5. Outline strategies for supporting patients with medication adherence\\n\\n Learning objectives align with the AHA Practice Standards for the Hepatology Nurse (2015) and the AHA Consensus based Nursing Guidelines (2019). The course is also endorsed by the Australian Liver Association (ALA). \\n\\nAccreditation:\\nThis course is endorsed by the ACN according to our Continuing Professional Development (CPD) Endorsed Course Standards. It has been allocated 6.5 CPD Hours according to the Nursing and Midwifery Boards of Australia – Continuing Professional Development Standard. \\n\\nRegister here: https://www.ashm.org.au/eventinforeg2/?id=d39f84d8-4f81-eb11-a812-00224815224e\\nDownload flyer: https://file-us.clickdimensions.com/ashmorgau-apflc/files/2021.03.11_flyer_hcvnursing_30.04.21.pdf?m=3/11/2021%203:47:16%20AM\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"ASHM\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C Nursing - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C Nursing - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-16 02:53:13','2021-03-16 02:53:13','2801d7f5-daa9-4353-89c6-2d51655d196d'),(141318,141315,1,NULL,103515,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"103515\",\"title\":\"Hepatitis C Nursing\",\"slug\":\"hepatitis-c-nursing\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"molly.stannard@ashm.org.au\",\"70\":\"0478 020 174\",\"67\":\"This free facilitated online training course provides nurses with the knowledge and confidence to increase screening and management of hepatitis C in primary care settings.\\n\\nThis training will be delivered in two sessions:\\nOnline Training Session 1: Friday 30 April, 9:30am-12:30pm (AEST)\\nOnline Training Session 2: Saturday 08 May, 9:30am-12:30pm (AEST)\\nPlease note that you will need to attend both of the live Zoom sessions in order to receive a certificate of completion.\\n\\nPart 1 consists of  a recommended pre reading and a 1-hour eLearning component on advanced liver disease\\nPart 2 consist of two live online Zoom training sessions building on the pre reading and eLearning content  through presentations and practical case discussions.\\n\\nTarget Audience:\\nQueensland nurses working in sexual health services, public and private medical clinics, refugee and migrant services, correctional facilities, Aboriginal and Torres Strait Islander health services, drug and alcohol services, mental health services, and youth services, and Midwives.\\n\\nLearning Objectives:\\nBy the end of this training, participants will be able to: \\n1. Describe risk factors for HCV, enabling discussions with patients around prevention\\n2. Discuss HCV serology to identify opportunities for screening, testing and linkage-to-care\\n3. Explain the nurse’s role in providing culturally appropriate care, free from stigma and discrimination, to people from priority populations\\n4. Explain the nurse’s role in the management of chronic HCV, advanced liver disease and hepatocellular carcinoma    \\n5. Outline strategies for supporting patients with medication adherence\\n\\n Learning objectives align with the AHA Practice Standards for the Hepatology Nurse (2015) and the AHA Consensus based Nursing Guidelines (2019). The course is also endorsed by the Australian Liver Association (ALA). \\n\\nAccreditation:\\nThis course is endorsed by the ACN according to our Continuing Professional Development (CPD) Endorsed Course Standards. It has been allocated 6.5 CPD Hours according to the Nursing and Midwifery Boards of Australia – Continuing Professional Development Standard. \\n\\nRegister here: https://www.ashm.org.au/eventinforeg2/?id=d39f84d8-4f81-eb11-a812-00224815224e\\nDownload flyer: https://file-us.clickdimensions.com/ashmorgau-apflc/files/2021.03.11_flyer_hcvnursing_30.04.21.pdf?m=3/11/2021%203:47:16%20AM\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"ASHM\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C Nursing - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C Nursing - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-16 02:53:48','2021-03-16 02:53:48','48dff390-2bd4-404e-a8f6-739d0fb09b1e'),(141319,141315,1,NULL,103515,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"103515\",\"title\":\"Hepatitis C Nursing\",\"slug\":\"hepatitis-c-nursing\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"molly.stannard@ashm.org.au\",\"70\":\"0478 020 174\",\"67\":\"This free facilitated online training course provides nurses with the knowledge and confidence to increase screening and management of hepatitis C in primary care settings.\\n\\nThis training will be delivered in two sessions:\\nOnline Training Session 1: Friday 30 April, 9:30am-12:30pm (AEST)\\nOnline Training Session 2: Saturday 08 May, 9:30am-12:30pm (AEST)\\nPlease note that you will need to attend both of the live Zoom sessions in order to receive a certificate of completion.\\n\\nPart 1 consists of  a recommended pre reading and a 1-hour eLearning component on advanced liver disease\\nPart 2 consist of two live online Zoom training sessions building on the pre reading and eLearning content  through presentations and practical case discussions.\\n\\nTarget Audience:\\nQueensland nurses working in sexual health services, public and private medical clinics, refugee and migrant services, correctional facilities, Aboriginal and Torres Strait Islander health services, drug and alcohol services, mental health services, and youth services, and Midwives.\\n\\nLearning Objectives:\\nBy the end of this training, participants will be able to: \\n1. Describe risk factors for HCV, enabling discussions with patients around prevention\\n2. Discuss HCV serology to identify opportunities for screening, testing and linkage-to-care\\n3. Explain the nurse’s role in providing culturally appropriate care, free from stigma and discrimination, to people from priority populations\\n4. Explain the nurse’s role in the management of chronic HCV, advanced liver disease and hepatocellular carcinoma    \\n5. Outline strategies for supporting patients with medication adherence\\n\\n Learning objectives align with the AHA Practice Standards for the Hepatology Nurse (2015) and the AHA Consensus based Nursing Guidelines (2019). The course is also endorsed by the Australian Liver Association (ALA). \\n\\nAccreditation:\\nThis course is endorsed by the ACN according to our Continuing Professional Development (CPD) Endorsed Course Standards. It has been allocated 6.5 CPD Hours according to the Nursing and Midwifery Boards of Australia – Continuing Professional Development Standard. \\n\\nRegister here: https://www.ashm.org.au/eventinforeg2/?id=d39f84d8-4f81-eb11-a812-00224815224e\\nDownload flyer: https://file-us.clickdimensions.com/ashmorgau-apflc/files/2021.03.11_flyer_hcvnursing_30.04.21.pdf?m=3/11/2021%203:47:16%20AM\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"ASHM\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C Nursing - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C Nursing - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-16 02:53:49','2021-03-16 02:53:49','3613f1cc-fc26-4c3e-a224-8f0d413e680a'),(141328,NULL,1,NULL,141326,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":141326,\"title\":\"Registered Nurse\",\"slug\":\"registered-nurse\",\"postDate\":null,\"expiryDate\":1616680800,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"sbursey@brisyouth.org\",\"100\":\"Simone Bursey\",\"70\":\"0468998554\",\"99\":\"Join Brisbane Youth Service today to make a difference in the lives of Brisbane’s vulnerable young people and their families. The Registered Nurse provides a range of health services and health education for young people in a clinic setting based at the Fortitude Valley Hub. The aim is to improve access to health care information and services and encourage young people to engage with their health and wellbeing as they build capacity to access other health services. \",\"94\":\"Brisbane Youth Service\",\"93\":[\"75039\"],\"97\":\"4006\",\"98\":\"qld\",\"95\":\"42 McLachlan Street\",\"96\":\"Fortitude Valley\"}}',NULL,NULL,NULL,'2021-03-16 04:09:10','2021-03-16 04:09:10','ab9408d2-9ccd-4f84-86e2-70ba5449126c'),(142362,NULL,1,NULL,142356,NULL,'pending','',NULL,'{\"typeId\":\"5\",\"authorId\":\"142356\",\"title\":\"FND Awareness Day\",\"slug\":\"fnd-awareness-day\",\"postDate\":1615930800,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Chermside Library, Meeting Room 2, 375 Hamilton Road, Chermside\",\"71\":\"\",\"70\":\"0409 644 259\",\"67\":\"<p><span>FND Awareness Day 2021 is held on 25th March from UK to Australia.</span></p>\\n<p><span>Functional Neurological Disorder (FND) encompasses neurological disorders that affect the motor, movement, cognitive and sensory functions of the body. They are commonly diagnosed in Neurology clinics and present with symptoms such as seizures, paralysis, tremors, limb weakness and walking difficulties. With appropriate care and treatment, recovery levels are possible. However, due to ongoing misperceptions and lack of services, many people are left to fend for themselves, experiencing worsening and ongoing disabling symptoms.</span></p>\\n<p><span>In Brisbane, we are having a get together for FND Awareness Day at Chermside Library 9:30am-11:30am Thursday </span>25th March 2021. Please join us to raise awareness for FND.<br /></p>\",\"68\":{\"ownerId\":142357,\"ownerSiteId\":1,\"fieldId\":68,\"startDate\":[],\"endDate\":[],\"allDay\":0,\"repeats\":0,\"days\":null,\"endRepeat\":null,\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":null,\"months\":null},\"7\":[\"142358\"],\"69\":\"FND Australia Support Services\",\"72\":\"within\",\"82\":{\"titleRaw\":{\"1\":\"FND Awareness Day\"},\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"FND Awareness Day - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"FND Awareness Day - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":\"\"}}}}',NULL,NULL,NULL,'2021-03-16 21:52:37','2021-03-16 21:52:37','ee12bfb6-c44d-484a-b59f-c49951bc91a5'),(142723,142722,1,NULL,98761,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":98761,\"title\":\"Australian Doctors Clinic Kallangur - Medical Receptionist\",\"slug\":\"australian-doctors-clinic-kallangur-medical-receptionist\",\"postDate\":null,\"expiryDate\":1624975200,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"admin@audoc.com.au\",\"100\":\"Jemma Erickson\",\"70\":\"0733174040\",\"99\":\"Australian Doctors Clinic Kallangur is looking for an experienced medical receptionist to join our friendly, supportive team in a casual role.\\nThis position is offering an approximate 15 hours per fortnight (1 day per week) with the view to increasing including weekends as needed. We are looking for someone who is flexible for coverage of sick and personal leave and available to work at short notice.\\nA minimum of two years’ experience in general practice is essential and 12 months experience with Best Practice Software is highly desirable. A current CPR certificate is also required.\\nThe successful applicant will have exceptional skills and knowledge with:\\n•\\tmedical billing processes including Medicare, DVA and Work Cover\\n•\\ttime management to prioritise effectively while working under pressure\\n•\\tbe reliable and confident to work independently as well as being an integral team member\\n•\\texcellent communication and interpersonal skills\\n•\\tbe well presented and have a high attention to detail\\nThe position is for an immediate start paying award rates in line with the qualifications and experience of the successful applicant.\\nIf you are a team player who can provide excellent support to our clinic, please apply with your Cover Letter and Resume to admin@audoc.com.au\",\"94\":\"Australian Doctors Clinic Kallangur\",\"93\":[\"65423\"],\"97\":\"4503\",\"98\":\"qld\",\"95\":\"Shop 13 Kallangur Fair, 1473 Anzac Ave\",\"96\":\"Kallangur\"}}',NULL,NULL,NULL,'2021-03-17 02:40:40','2021-03-17 02:40:40','673a21f7-c5b2-483e-9d0d-5eb2691d587b'),(143133,NULL,1,NULL,143131,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":143131,\"title\":\"NDIS and Psychosocial Disability Quality and Safety Forum\",\"slug\":\"ndis-and-psychosocial-disability-quality-and-safety-forum\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online and Sydney CBD\",\"71\":\"amy@mhcc.org.au\",\"70\":\"(02) 90609638 (ext 116)\",\"67\":\"The Embracing Change Project brings you a FREE half day NDIS and Psychosocial Disability Quality and Safety Forum (National Forum) showcasing a national perspective on NDIS psychosocial disability Quality and Safeguarding issues at the intersection of Mental Health and Disability. \\n\\nDiscover more about\\n•\\tNDIS participants’ perspectives on psychosocial disability service quality\\n•\\tFuture directions for NDIS psychosocial disability sector quality and safety\\n•\\tPerspectives on Quality Management Systems for NDIS psychosocial disability service providers\\n•\\tInclusive governance and how it is implemented by NDIS psychosocial disability service providers\\n•\\tA Human Rights approach to Restrictive Practices in a psychosocial disability context\\n•\\tGlobal implementation of a Quality Rights frameworks in the psychosocial disability context\\n\\nDetails\\nWhen: 29th April 2021\\nTime: 9:30AM -2PM\\nMore details: https://www.mhcc.org.au/project/ndis-and-psychosocial-disability-quality-and-safety-forum/ \\n\\nRegistrations now open!\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Mental Health Coordinating Council NSW\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"NDIS and Psychosocial Disability Quality and Safety Forum - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"NDIS and Psychosocial Disability Quality and Safety Forum - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-17 03:29:56','2021-03-17 03:29:56','771c0bb7-2d1d-452f-ab46-0b81d5f3a67b'),(143136,NULL,1,NULL,143131,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":143131,\"title\":\"NDIS and Psychosocial Disability Quality and Safety Forum\",\"slug\":\"ndis-and-psychosocial-disability-quality-and-safety-forum-1\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online and Sydney CBD\",\"71\":\"amy@mhcc.org.au\",\"70\":\"(02) 90609638 (ext 116)\",\"67\":\"The Embracing Change Project brings you a FREE half day NDIS and Psychosocial Disability Quality and Safety Forum (National Forum) showcasing a national perspective on NDIS psychosocial disability Quality and Safeguarding issues at the intersection of Mental Health and Disability. \\n\\nDiscover more about\\n•\\tNDIS participants’ perspectives on psychosocial disability service quality\\n•\\tFuture directions for NDIS psychosocial disability sector quality and safety\\n•\\tPerspectives on Quality Management Systems for NDIS psychosocial disability service providers\\n•\\tInclusive governance and how it is implemented by NDIS psychosocial disability service providers\\n•\\tA Human Rights approach to Restrictive Practices in a psychosocial disability context\\n•\\tGlobal implementation of a Quality Rights frameworks in the psychosocial disability context\\n\\nDetails\\nWhen: 29th April 2021\\nTime: 9:30AM -2PM\\nMore details: https://www.mhcc.org.au/project/ndis-and-psychosocial-disability-quality-and-safety-forum/ \\n\\nRegistrations now open!\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Mental Health Coordinating Council NSW\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"NDIS and Psychosocial Disability Quality and Safety Forum - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"NDIS and Psychosocial Disability Quality and Safety Forum - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-17 03:29:57','2021-03-17 03:29:57','7a865897-7e9d-4196-b7c2-e436c628e945'),(143139,NULL,1,NULL,98761,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":98761,\"title\":\"GP Position available - Kallangur\",\"slug\":\"gp-position-available-kallangur-1\",\"postDate\":null,\"expiryDate\":1624975200,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"admin@audoc.com.au\",\"100\":\"Jemma Erickson\",\"70\":\"0733174040\",\"99\":\"Australian Doctors Clinic Kallangur are seeking a VR GP to join our team. We opened our doors in 2018 and have been growing quickly ever since.\\n\\nWe are looking for a full time GP but are happy to accommodate a part-time position if this is your preference.\\n\\nWe are a doctor owned and operated clinic, AGPAL accredited with full time nursing support. We have a friendly, efficient and reliable team of Reception, Practice Management, Allied Health (Physio &amp; Dietitian), and onsite pathology. We are a busy little clinic with new patients joining every day.\\n\\nWe are located just 30 minutes north from Brisbane CBD (7 minutes across the highway from North Lakes). We have free onsite car parking and are located in Kallangur Fair shopping Centre.\\n\\nRemuneration: 70% total billings/$150 per hour for an agreed initial period. **Additional Incentives of $10,000 upon commencement and more. ** For additional information please contact me asap.\",\"94\":\"Australian Doctors Clinic Kallangur\",\"93\":[\"65423\"],\"97\":\"4503\",\"98\":\"qld\",\"95\":\"Shop 13 Kallangur Fair, 1473 Anzac Ave\",\"96\":\"Kallangur\"}}',NULL,NULL,NULL,'2021-03-17 03:31:25','2021-03-17 03:31:25','4e0d8f30-a949-4bf8-90f5-abd4e8bcad07'),(143156,NULL,1,NULL,98761,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":98761,\"title\":\"GP Weekend Position available - Kallangur\",\"slug\":\"gp-weekend-position-available-kallangur\",\"postDate\":null,\"expiryDate\":1640786400,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"admin@audoc.com.au\",\"100\":\"Jemma Erickson\",\"70\":\"0733174040\",\"99\":\"Australian Doctors Clinic Kallangur are seeking a VR GP to join our team for weekend work. We opened our doors in 2018 and have been growing quickly ever since.\\nWe are looking for a GP able to work weekends. We are happy to accommodate a part-time position if this is your preference.\\n\\nWe are a doctor owned and operated clinic, AGPAL accredited with full time nursing support. We have a friendly, efficient, and reliable team of Reception, Practice Management, Allied Health (Physio &amp; Dietitian), and onsite pathology. We are a busy little clinic with new patients joining every day.\\n\\nWe are located just 30 minutes north from Brisbane CBD (7 minutes across the highway from North Lakes). We have free onsite car parking and are located in Kallangur Fair shopping Centre.\\n\\nRemuneration: 70% total billings/$150 per hour for an agreed initial period. Please contact me for more information.\",\"94\":\"Australian Doctors Clinic Kallangur\",\"93\":[\"65423\"],\"97\":\"4503\",\"98\":\"qld\",\"95\":\"Shop 13 Kallangur Fair, 1473 Anzac Ave\",\"96\":\"Kallangur\"}}',NULL,NULL,NULL,'2021-03-17 07:19:41','2021-03-17 07:19:41','01e29160-0e22-413b-a8bf-639ed29ccd66'),(143167,NULL,1,NULL,108853,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":108853,\"title\":\"Medical Receptionist\",\"slug\":\"medical-receptionist-1\",\"postDate\":null,\"expiryDate\":1617890400,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"admin@midwaymedical.com.au\",\"100\":\"Kieren Gormley-Smith\",\"70\":\"0423044150\",\"99\":\"Midway Medical Qld is seeking a customer service orientated, experience medical receptionist for approximately 25 hours per week. A minimum of three years experience in a general practice environment is essential and knowledge of Best Practice is desirable. Medicare, DVA and WorkCover billing knowledge is essential. Award wages in line with experience. \\n\\nMidway Medical Qld is a family owned and operated, three doctor practice in Redcliffe. \",\"94\":\"Midway Medical QLD\",\"93\":[\"75035\"],\"97\":\"4020\",\"98\":\"qld\",\"95\":\"10/538 Oxley Avenue\",\"96\":\"Redliffe\"}}',NULL,NULL,NULL,'2021-03-17 23:39:39','2021-03-17 23:39:39','a7f3864c-f91f-4afa-a2d4-cda9d58d75a9'),(144002,NULL,1,NULL,113349,NULL,'pending','',NULL,'{\"typeId\":\"5\",\"authorId\":\"113349\",\"title\":\"Diabetes Revolution\",\"slug\":\"diabetes-revolution\",\"postDate\":1616034300,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"info@lifestylemedicine.org.au\",\"70\":\"1300673643\",\"67\":\"<p>Diabetes Revolution is an international online summit for health professionals bringing together a diverse range of experts to outline the evidence-base and application of dietary and other lifestyle-related approaches to treating type 2 diabetes. </p>\\n<p>Specifically, you will: </p>\\n<ul><li>Learn how to prescribe and support your patients or clients with these dietary approaches, along with other key elements of Lifestyle Medicine including promoting physical activity, reducing alcohol consumption, stopping smoking, improving sleep and reducing stress </li><li>Learn how these seemingly different approaches achieve remission by investigating the proposed mechanisms and metabolic effects </li><li>Explore the resources available to you as a practitioner to help support your patients </li><li>Learn more about the programs and services that your patients or clients can utilise to make and maintain the behaviour changes needed for success </li></ul>\\n<p>If you’re a medical doctor or specialist, allied health practitioner, public health professional, or other health professional who has a role in the management of type 2 diabetes, join us on Saturday 29 May to find out how dietary approaches and Lifestyle Medicine solutions can help your patients put their diabetes into remission! </p>\\n<p>This event will be followed by a free mini summit for the general public on Sunday 30 May 2021 to translate the knowledge shared on Saturday into a context which can help individuals understand the benefit of these approaches for their health and wellbeing. Practitioners attending the CPD event on the Saturday are encouraged to share the mini summit with their patients, clients and friends.</p>\\n<p>Find out more and register online at <a href=\\\"http://lifestylemedicine.org.au/diabetes-revolution\\\">http://lifestylemedicine.org.a...</a></p>\",\"68\":{\"ownerId\":143997,\"ownerSiteId\":1,\"fieldId\":68,\"startDate\":[],\"endDate\":[],\"allDay\":0,\"repeats\":0,\"days\":null,\"endRepeat\":null,\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":null,\"months\":null},\"7\":[\"143998\"],\"69\":\"Australasian Society of Lifestyle Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Diabetes Revolution - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Diabetes Revolution - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":\"\"}}}}',NULL,NULL,NULL,'2021-03-18 02:30:32','2021-03-18 02:30:32','bc7d5168-e553-4773-a685-a426d8dfb6a9'),(144014,144013,1,2196,144009,NULL,'pending','',NULL,'{\"typeId\":\"5\",\"authorId\":\"144009\",\"title\":\"Staying Safe During Domestic and Family Violence Prevention Month in May 2021\",\"slug\":\"staying-safe-during-domestic-and-family-violence-prevention-month-in-may-2021\",\"postDate\":1616040180,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Redcliffe Uniting Church, 1 Richens Street, Redcliffe, QLD 4020\",\"71\":\"communityprogram@moretonbay.qld.gov.au\",\"70\":\"07 3205 0555\",\"67\":\"<p>This event involves speakers from Tenants Queensland, Queensland Police Service, Women’s Legal Service Qld, Relationships Australia, Mate Bystander Program, and a support service for women from immigrant and refugee backgrounds.</p>\\n<p>These organisations will provide information about services available to support individuals and families around their safety and well-being.</p>\\n<table><tbody><tr><td>Event opens</td><td>10.00am</td></tr><tr><td>Welcome to Country</td><td>10.45am</td></tr><tr><td>Speakers</td><td>11.00am - 1.00pm</td></tr><tr><td>Event closes</td><td>2.00pm</td></tr></tbody></table>\\n<p>Information stalls, children’s play activities and refreshments will be provided from 10am-2pm.</p>\",\"68\":{\"ownerId\":144010,\"ownerSiteId\":1,\"fieldId\":68,\"startDate\":[],\"endDate\":[],\"allDay\":0,\"repeats\":0,\"days\":null,\"endRepeat\":null,\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":null,\"months\":null},\"7\":[],\"69\":\"Moreton Bay Regional Council\",\"72\":\"within\",\"82\":{\"titleRaw\":{\"1\":\"Staying Safe During Domestic and Family Violence Prevention Month in May 2021\"},\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Staying Safe During Domestic and Family Violence Prevention Month in May 2021 - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Staying Safe During Domestic and Family Violence Prevention Month in May 2021 - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":\"\"}}}}',NULL,NULL,NULL,'2021-03-18 04:10:10','2021-03-18 04:10:10','02b2d9fe-8c71-4656-8fe4-5449ae4132ce'),(144016,144015,1,2197,144009,NULL,'pending','',NULL,'{\"typeId\":\"5\",\"authorId\":\"144009\",\"title\":\"Staying Safe During Domestic and Family Violence Prevention Month in May 2021 - Caboolture\",\"slug\":\"staying-safe-during-domestic-and-family-violence-prevention-month-in-may-2021\",\"postDate\":1616040180,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Caboolture Hub, 4 Hasking Street, Caboolture, QLD 4510\",\"71\":\"communityprogram@moretonbay.qld.gov.au\",\"70\":\"07 3205 0555\",\"67\":\"<p>This event involves speakers from Tenants Queensland, Queensland Police Service, Women’s Legal Service Qld, Relationships Australia, Mate Bystander Program, and a support service for women from immigrant and refugee backgrounds.</p>\\n<p>These organisations will provide information about services available to support individuals and families around their safety and well-being.</p>\\n<table><tbody><tr><td>Event opens</td><td>10.00am</td></tr><tr><td>Welcome to Country</td><td>10.45am</td></tr><tr><td>Speakers</td><td>11.00am - 1.00pm</td></tr><tr><td>Event closes</td><td>2.00pm</td></tr></tbody></table>\\n<p>Information stalls, children’s play activities and refreshments will be provided from 10am-2pm.</p>\",\"68\":{\"ownerId\":144015,\"ownerSiteId\":1,\"fieldId\":68,\"startDate\":[],\"endDate\":[],\"allDay\":0,\"repeats\":0,\"days\":null,\"endRepeat\":null,\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":null,\"months\":null},\"7\":[],\"69\":\"Moreton Bay Regional Council\",\"72\":\"within\",\"82\":{\"titleRaw\":{\"1\":\"Staying Safe During Domestic and Family Violence Prevention Month in May 2021\"},\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Staying Safe During Domestic and Family Violence Prevention Month in May 2021 - Caboolture - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Staying Safe During Domestic and Family Violence Prevention Month in May 2021 - Caboolture - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":\"\"}}}}',NULL,NULL,NULL,'2021-03-18 04:12:06','2021-03-18 04:12:06','c4f5104c-b9ed-4273-9306-5a25776ee253'),(144021,144020,1,2199,144009,NULL,'pending','',NULL,'{\"typeId\":\"5\",\"authorId\":\"144009\",\"title\":\"Staying Safe During Domestic and Family Violence Prevention Month - Caboolture\",\"slug\":\"staying-safe-during-domestic-and-family-violence-prevention-month-caboolture\",\"postDate\":1616040720,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Caboolture Hub, 4 Hasking Street, Caboolture 4510  View map\",\"71\":\"communityprogram@moretonbay.qld.gov.au\",\"70\":\"07 3205 0555\",\"67\":\"<p>This event involves speakers from Tenants Queensland, Queensland Police Service, Women’s Legal Service Qld, Relationships Australia, Mate Bystander Program, and a support service for women from immigrant and refugee backgrounds.</p>\\n<p>These organisations will provide information about services available to support individuals and families around their safety and well-being.</p>\\n<table><tbody><tr><td>Event opens</td><td>10.00am</td></tr><tr><td>Welcome to Country<br /></td><td>10.45am<br /></td></tr><tr><td>Speakers<br /></td><td>11.00am - 1.00pm<br /></td></tr><tr><td>Event closes<br /></td><td>2.00pm<br /></td></tr></tbody></table>\\n<p>Information stalls, children’s play activities and refreshments will be provided from 10am-2pm.</p>\",\"68\":{\"ownerId\":144017,\"ownerSiteId\":1,\"fieldId\":68,\"startDate\":[],\"endDate\":[],\"allDay\":0,\"repeats\":0,\"days\":null,\"endRepeat\":null,\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":null,\"months\":null},\"7\":[],\"69\":\"Moreton Bay Regional Council\",\"72\":\"within\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Staying Safe During Domestic and Family Violence Prevention Month - Caboolture - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Staying Safe During Domestic and Family Violence Prevention Month - Caboolture - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":\"\"}}}}',NULL,NULL,NULL,'2021-03-18 04:14:50','2021-03-18 04:14:50','c888a709-7c41-471b-b5da-97dbee56c8e8'),(144023,NULL,1,NULL,144009,NULL,'pending','',NULL,'{\"typeId\":\"5\",\"authorId\":\"144009\",\"title\":\"Staying Safe During Domestic and Family Violence Prevention Month - Caboolture\",\"slug\":\"staying-safe-during-domestic-and-family-violence-prevention-month-caboolture\",\"postDate\":1616040720,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Caboolture Hub, 4 Hasking Street, Caboolture 4510\",\"71\":\"communityprogram@moretonbay.qld.gov.au\",\"70\":\"07 3205 0555\",\"67\":\"<p>This event involves speakers from Tenants Queensland, Queensland Police Service, Women’s Legal Service Qld, Relationships Australia, Mate Bystander Program, and a support service for women from immigrant and refugee backgrounds.</p>\\n<p>These organisations will provide information about services available to support individuals and families around their safety and well-being.</p>\\n<table><tbody><tr><td>Event opens</td><td>10.00am</td></tr><tr><td>Welcome to Country<br /></td><td>10.45am<br /></td></tr><tr><td>Speakers<br /></td><td>11.00am - 1.00pm<br /></td></tr><tr><td>Event closes<br /></td><td>2.00pm<br /></td></tr></tbody></table>\\n<p>Information stalls, children’s play activities and refreshments will be provided from 10am-2pm.</p>\",\"68\":{\"ownerId\":144018,\"ownerSiteId\":1,\"fieldId\":68,\"startDate\":[],\"endDate\":[],\"allDay\":0,\"repeats\":0,\"days\":null,\"endRepeat\":null,\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":null,\"months\":null},\"7\":[],\"69\":\"Moreton Bay Regional Council\",\"72\":\"within\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Staying Safe During Domestic and Family Violence Prevention Month - Caboolture - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Staying Safe During Domestic and Family Violence Prevention Month - Caboolture - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":\"\"}}}}',NULL,NULL,NULL,'2021-03-18 04:15:11','2021-03-18 04:15:11','0e33070d-c5e9-48a7-b232-347009c71a84'),(144025,144024,1,2201,144009,NULL,'pending','',NULL,'{\"typeId\":\"5\",\"authorId\":\"144009\",\"title\":\"Staying Safe During Domestic and Family Violence Prevention Month in May 2021 - Redcliffe\",\"slug\":\"staying-safe-during-domestic-and-family-violence-prevention-month-in-may-2021\",\"postDate\":1616040180,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Redcliffe Uniting Church, 1 Richens Street, Redcliffe, QLD 4020\",\"71\":\"communityprogram@moretonbay.qld.gov.au\",\"70\":\"07 3205 0555\",\"67\":\"<p>This event involves speakers from Tenants Queensland, Queensland Police Service, Women’s Legal Service Qld, Relationships Australia, Mate Bystander Program, and a support service for women from immigrant and refugee backgrounds.</p>\\n<p>These organisations will provide information about services available to support individuals and families around their safety and well-being.</p>\\n<table><tbody><tr><td>Event opens</td><td>10.00am</td></tr><tr><td>Welcome to Country</td><td>10.45am</td></tr><tr><td>Speakers</td><td>11.00am - 1.00pm</td></tr><tr><td>Event closes</td><td>2.00pm</td></tr></tbody></table>\\n<p>Information stalls, children’s play activities and refreshments will be provided from 10am-2pm.</p>\",\"68\":{\"ownerId\":144011,\"ownerSiteId\":1,\"fieldId\":68,\"startDate\":[],\"endDate\":[],\"allDay\":0,\"repeats\":0,\"days\":null,\"endRepeat\":null,\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":null,\"months\":null},\"7\":[],\"69\":\"Moreton Bay Regional Council\",\"72\":\"within\",\"82\":{\"titleRaw\":{\"1\":\"Staying Safe During Domestic and Family Violence Prevention Month in May 2021\"},\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Staying Safe During Domestic and Family Violence Prevention Month in May 2021 - Redcliffe - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Staying Safe During Domestic and Family Violence Prevention Month in May 2021 - Redcliffe - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":\"\"}}}}',NULL,NULL,NULL,'2021-03-18 04:15:23','2021-03-18 04:15:23','6d0b52c0-a70e-436e-9e0b-f29cce886964'),(144027,NULL,1,NULL,144009,NULL,'pending','',NULL,'{\"typeId\":\"5\",\"authorId\":\"144009\",\"title\":\"Staying Safe During Domestic and Family Violence Prevention Month in May 2021 - Redcliffe\",\"slug\":\"staying-safe-during-domestic-and-family-violence-prevention-month-in-may-2021\",\"postDate\":1616040180,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Redcliffe Uniting Church, 1 Richens Street, Redcliffe, QLD 4020\",\"71\":\"communityprogram@moretonbay.qld.gov.au\",\"70\":\"07 3205 0555\",\"67\":\"<p>This event involves speakers from Tenants Queensland, Queensland Police Service, Women’s Legal Service Qld, Relationships Australia, Mate Bystander Program, and a support service for women from immigrant and refugee backgrounds.</p>\\n<p>These organisations will provide information about services available to support individuals and families around their safety and well-being.</p>\\n<table><tbody><tr><td>Event opens</td><td>10.00am</td></tr><tr><td>Welcome to Country</td><td>10.45am</td></tr><tr><td>Speakers</td><td>11.00am - 1.00pm</td></tr><tr><td>Event closes</td><td>2.00pm</td></tr></tbody></table>\\n<p>Information stalls, children’s play activities and refreshments will be provided from 10am-2pm.</p>\",\"68\":{\"ownerId\":144011,\"ownerSiteId\":1,\"fieldId\":68,\"startDate\":[],\"endDate\":[],\"allDay\":0,\"repeats\":0,\"days\":null,\"endRepeat\":null,\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":null,\"months\":null},\"7\":[],\"69\":\"Moreton Bay Regional Council\",\"72\":\"within\",\"82\":{\"titleRaw\":{\"1\":\"Staying Safe During Domestic and Family Violence Prevention Month in May 2021\"},\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Staying Safe During Domestic and Family Violence Prevention Month in May 2021 - Redcliffe - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Staying Safe During Domestic and Family Violence Prevention Month in May 2021 - Redcliffe - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":\"\"}}}}',NULL,NULL,NULL,'2021-03-18 04:15:41','2021-03-18 04:15:41','11e95fd1-0f93-4c38-b203-689e4468d21b'),(144030,144029,1,NULL,116055,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":116055,\"title\":\"Redcliffe Medical Clinic - Practice Nurse\",\"slug\":\"redcliffe-medical-clinic-practice-nurse\",\"postDate\":null,\"expiryDate\":1622296800,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"practicemanager@marendymedical.com.au\",\"100\":\"Amanda Hunt\",\"70\":\"07 3284 0788\",\"99\":\"Redcliffe Medical Clinic is a GP owned clinic and due to the clinics growth we now require another Practice Nurse to join our friendly team. The position is casual (approx 20 hrs/week) and Duties will include:\\n. Assisting Doctors during procedures\\n. Wound care, ECG &amp; Spirometry\\n. Infection control &amp; Sterilisation\\n. Health Assessment and Care Plans\\n. Vaccinations\\n. Recalls &amp; Reminders\\n. Stock control\\n. Reception assistance\\n\\nThe applicant should have:\\n. AHPRA Registration &amp; Insurance\\n. Current CPR\\n. The ability to work well with others\\n. Good motivation &amp; Organisational skills\\n. Strong Patient focus and Caring personality\\n\\nPlease email applications to practicemanager@marendymedical.com.au\",\"94\":\"Redcliffe Medical Clinic\",\"93\":[\"75039\"],\"97\":\"4020\",\"98\":\"qld\",\"95\":\"2/137 Sutton Street\",\"96\":\"Redcliffe\"}}',NULL,NULL,NULL,'2021-03-18 04:37:42','2021-03-18 04:37:42','6c94816b-49dd-442b-b285-ee5b32c0ad3b'),(144035,NULL,1,NULL,144009,NULL,'pending','',NULL,'{\"typeId\":\"5\",\"authorId\":\"144009\",\"title\":\"Staying Safe During Domestic and Family Violence Prevention Month in May 2021 - Pine Rivers\",\"slug\":\"staying-safe-during-domestic-and-family-violence-prevention-month-in-may-2021-pine-rivers\",\"postDate\":1616040960,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Pine Rivers Park, 125 Gympie Road, Strathpine, QLD 4500\",\"71\":\"communityprogram@moretonbay.qld.gov.au\",\"70\":\"07 3205 0555\",\"67\":\"<p>This event involves speakers from Tenants Queensland, Queensland Police Service, Pine Rivers Community Legal Service, Relationships Australia, Mate Bystander Program, and a support service for women from immigrant and refugee backgrounds.</p>\\n<p>These organisations will provide information about services available to support individuals and families around their safety and well-being.</p>\\n<table><tbody><tr><td>Event opens</td><td>10.00am</td></tr><tr><td>Welcome to Country<br /></td><td>10.45am<br /></td></tr><tr><td>Speakers<br /></td><td>11.00am - 1.00pm<br /></td></tr><tr><td>Event closes<br /></td><td>2.00pm<br /></td></tr></tbody></table>\\n<p>Information stalls, children’s play activities and refreshments will be provided from 10am-2pm.</p>\",\"68\":{\"ownerId\":144028,\"ownerSiteId\":1,\"fieldId\":68,\"startDate\":[],\"endDate\":[],\"allDay\":0,\"repeats\":0,\"days\":null,\"endRepeat\":null,\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":null,\"months\":null},\"7\":[],\"69\":\"Moreton Bay Regional Council\",\"72\":\"within\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Staying Safe During Domestic and Family Violence Prevention Month in May 2021 - Pine Rivers - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Staying Safe During Domestic and Family Violence Prevention Month in May 2021 - Pine Rivers - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":\"\"}}}}',NULL,NULL,NULL,'2021-03-18 04:55:45','2021-03-18 04:55:45','470668dd-4251-4b1b-832d-79a22e0ba575'),(144037,144036,1,NULL,97391,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":97391,\"title\":\"PHU Immunisation catch up online webinar\",\"slug\":\"phu-immunisation-catch-up-online-webinar\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"https://zoom.us/webinar/register/WN_z5WoJ68GQ3OaPOgpXwwXYQ\",\"71\":\"aimie.thomson@brisbanenorthphn.org.au\",\"70\":\"07 3490 3429\",\"67\":\"The immunisation catch up event will be online via zoom and will cover the following in a one hour session:\\n- Influenza program information\\n- COVID-19 vaccination updates\\n- Adverse Event Following Immunisation information (AEFI)\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Brisbane North PHN\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"PHU Immunisation catch up online webinar - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"PHU Immunisation catch up online webinar - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-18 05:52:24','2021-03-18 05:52:24','1d0473b7-c1ae-4e43-99b2-b30c2ef80232'),(144040,144039,1,NULL,143165,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":143165,\"title\":\"Toowong GP Super Clinic - Medical Receptionist\",\"slug\":\"toowong-gp-super-clinic-medical-receptionist\",\"postDate\":null,\"expiryDate\":1623938400,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"mishra_vinay1969@yahoo.co.in\",\"100\":\"Prabha Mishra\",\"70\":\"457684907\",\"99\":\"We are looking for a very energetic and motivated candidate for our lovely practice in the suburb of Toowong . The candidate must have at least three years experience in Best Practice software in a General Practice set up . Candidate with understanding of Medicare billings will be preferred . \\nWhat we are offering\\nCasual position with 20 to 30 hours a week \\n$29 to $30 hourly \\n\",\"94\":\"Toowong GP Super Clinic\",\"93\":[\"75035\"],\"97\":\"4066\",\"98\":\"qld\",\"95\":\"34 Sherwood Road\",\"96\":\"Toowong\"}}',NULL,NULL,NULL,'2021-03-18 06:45:26','2021-03-18 06:45:26','2d12ff3e-aa59-44c7-961d-7a41865713e2'),(144042,144039,1,NULL,143165,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"143165\",\"title\":\"Toowong GP Super Clinic - Medical Receptionist\",\"slug\":\"toowong-gp-super-clinic-medical-receptionist\",\"postDate\":null,\"expiryDate\":1623938400,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"mishra_vinay1969@yahoo.co.in\",\"100\":\"Prabha Mishra\",\"70\":\"457684907\",\"99\":\"We are looking for a very energetic and motivated candidate for our lovely practice in the suburb of Toowong . The candidate must have at least three years experience in Best Practice software in a General Practice set up . Candidate with understanding of Medicare billings will be preferred . \\nWhat we are offering\\nCasual position with 20 to 30 hours a week \\n$29 to $30 hourly \\n\",\"94\":\"Toowong GP Super Clinic\",\"93\":[\"75035\"],\"97\":\"4066\",\"98\":\"qld\",\"95\":\"34 Sherwood Road\",\"96\":\"Toowong\"}}',NULL,NULL,NULL,'2021-03-18 06:46:27','2021-03-18 06:46:27','83783171-ca8b-4566-93de-7359486648c3'),(144043,144039,1,NULL,143165,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"143165\",\"title\":\"Toowong GP Super Clinic - Medical Receptionist\",\"slug\":\"toowong-gp-super-clinic-medical-receptionist\",\"postDate\":null,\"expiryDate\":1623938400,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"mishra_vinay1969@yahoo.co.in\",\"100\":\"Prabha Mishra\",\"70\":\"457684907\",\"99\":\"We are looking for a very energetic and motivated candidate for our lovely practice in the suburb of Toowong . The candidate must have at least three years experience in Best Practice software in a General Practice set up . Candidate with understanding of Medicare billings will be preferred . \\nWhat we are offering\\nCasual position with 20 to 30 hours a week \\n$29 to $30 hourly \\n\",\"94\":\"Toowong GP Super Clinic\",\"93\":[\"75035\"],\"97\":\"4066\",\"98\":\"qld\",\"95\":\"34 Sherwood Road\",\"96\":\"Toowong\"}}',NULL,NULL,NULL,'2021-03-18 06:46:28','2021-03-18 06:46:28','cf9e3747-c50f-4cdb-943a-2c5cc484dd4a'),(144046,144045,1,NULL,109033,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":109033,\"title\":\"Practice Nurse Position Banyo Village Medical Centre\",\"slug\":\"practice-nurse-position-banyo-village-medical-centre\",\"postDate\":null,\"expiryDate\":1622383200,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"drtireshni@banyovillagemc.com.au\",\"100\":\"Tireshni Prasad\",\"70\":\"0417645930\",\"99\":\"Banyo Village Medical Centre is a GP owned medical practice who are looking for an experienced general practice nurse to join their team.\\nAt least 2 years general practice experience required, must be able to manage the treatment room, vaccination ordering/cold chain management, ordering supplies and working closely with PHN to achieve practice goals. Must possess good interpersonal skills, be able to work as a team member and be progressive and able to adapt with current changes in general practice.\\nCasual awards and hours negotiable depending on experience.\\n\",\"94\":\"Banyo Village Medical Centre\",\"93\":[\"75039\"],\"97\":\"4500\",\"98\":\"qld\",\"95\":\"Shop 1 / 299 St Vincents Road\",\"96\":\"Cashmere\"}}',NULL,NULL,NULL,'2021-03-18 12:14:05','2021-03-18 12:14:05','1f54b036-f32c-48eb-8571-f46fe44fea60'),(144049,144048,1,NULL,109033,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":109033,\"title\":\"Practice Nurse Position Banyo Village Medical Centre\",\"slug\":\"practice-nurse-position-banyo-village-medical-centre-1\",\"postDate\":null,\"expiryDate\":1622383200,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"drtireshni@banyovillagemc.com.au\",\"100\":\"Tireshni Prasad\",\"70\":\"0417645930\",\"99\":\"Banyo Village Medical Centre is a GP owned medical practice who are looking for an experienced general practice nurse to join their team.\\nAt least 2 years general practice experience required, must be able to manage the treatment room, vaccination ordering/cold chain management, ordering supplies and working closely with PHN to achieve practice goals. Must possess good interpersonal skills, be able to work as a team member and be progressive and able to adapt with current changes in general practice.\\nCasual awards and hours negotiable depending on experience.\\n\",\"94\":\"Banyo Village Medical Centre\",\"93\":[\"75039\"],\"97\":\"4500\",\"98\":\"qld\",\"95\":\"Shop 1 / 299 St Vincents Road\",\"96\":\"Cashmere\"}}',NULL,NULL,NULL,'2021-03-18 12:14:09','2021-03-18 12:14:09','35b02a60-94c6-46c5-a612-3718ad4f356d'),(144051,144045,1,NULL,109033,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"109033\",\"title\":\"Practice Nurse Position Banyo Village Medical Centre\",\"slug\":\"practice-nurse-position-banyo-village-medical-centre\",\"postDate\":null,\"expiryDate\":1622383200,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"drtireshni@banyovillagemc.com.au\",\"100\":\"Tireshni Prasad\",\"70\":\"0417645930\",\"99\":\"Banyo Village Medical Centre is a GP owned medical practice who are looking for an experienced general practice nurse to join their team.\\nAt least 2 years general practice experience required, must be able to manage the treatment room, vaccination ordering/cold chain management, ordering supplies and working closely with PHN to achieve practice goals. Must possess good interpersonal skills, be able to work as a team member and be progressive and able to adapt with current changes in general practice.\\nCasual awards and hours negotiable depending on experience.\\n\",\"94\":\"Banyo Village Medical Centre\",\"93\":[\"65423\"],\"97\":\"4500\",\"98\":\"qld\",\"95\":\"Shop 1 / 299 St Vincents Road\",\"96\":\"Cashmere\"}}',NULL,NULL,NULL,'2021-03-18 12:15:08','2021-03-18 12:15:08','b8f84b59-f17a-4c7e-9195-97fb4cd22269'),(144052,144045,1,NULL,109033,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"109033\",\"title\":\"Practice Nurse Position Banyo Village Medical Centre\",\"slug\":\"practice-nurse-position-banyo-village-medical-centre\",\"postDate\":null,\"expiryDate\":1622383200,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"drtireshni@banyovillagemc.com.au\",\"100\":\"Tireshni Prasad\",\"70\":\"0417645930\",\"99\":\"Banyo Village Medical Centre is a GP owned medical practice who are looking for an experienced general practice nurse to join their team.\\nAt least 2 years general practice experience required, must be able to manage the treatment room, vaccination ordering/cold chain management, ordering supplies and working closely with PHN to achieve practice goals. Must possess good interpersonal skills, be able to work as a team member and be progressive and able to adapt with current changes in general practice.\\nCasual awards and hours negotiable depending on experience.\\n\",\"94\":\"Banyo Village Medical Centre\",\"93\":[\"65423\"],\"97\":\"4500\",\"98\":\"qld\",\"95\":\"Shop 1 / 299 St Vincents Road\",\"96\":\"Cashmere\"}}',NULL,NULL,NULL,'2021-03-18 12:15:08','2021-03-18 12:15:08','8b2827e9-c292-4eb0-940c-095805760217'),(144054,144048,1,NULL,109033,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"109033\",\"title\":\"Practice Nurse Position Banyo Village Medical Centre\",\"slug\":\"practice-nurse-position-banyo-village-medical-centre-1\",\"postDate\":null,\"expiryDate\":1622383200,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"drtireshni@banyovillagemc.com.au\",\"100\":\"Tireshni Prasad\",\"70\":\"0417645930\",\"99\":\"Banyo Village Medical Centre is a GP owned medical practice who are looking for an experienced general practice nurse to join their team.\\nAt least 2 years general practice experience required, must be able to manage the treatment room, vaccination ordering/cold chain management, ordering supplies and working closely with PHN to achieve practice goals. Must possess good interpersonal skills, be able to work as a team member and be progressive and able to adapt with current changes in general practice.\\nCasual awards and hours negotiable depending on experience.\\n\",\"94\":\"Banyo Village Medical Centre\",\"93\":[\"75039\"],\"97\":\"4500\",\"98\":\"qld\",\"95\":\"Shop 1 / 299 St Vincents Road\",\"96\":\"Cashmere\"}}',NULL,NULL,NULL,'2021-03-18 12:15:58','2021-03-18 12:15:58','48be3c78-dccd-4b23-a72c-7c037b43e772'),(144055,144048,1,NULL,109033,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"109033\",\"title\":\"Practice Nurse Position Banyo Village Medical Centre\",\"slug\":\"practice-nurse-position-banyo-village-medical-centre-1\",\"postDate\":null,\"expiryDate\":1622383200,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"drtireshni@banyovillagemc.com.au\",\"100\":\"Tireshni Prasad\",\"70\":\"0417645930\",\"99\":\"Banyo Village Medical Centre is a GP owned medical practice who are looking for an experienced general practice nurse to join their team.\\nAt least 2 years general practice experience required, must be able to manage the treatment room, vaccination ordering/cold chain management, ordering supplies and working closely with PHN to achieve practice goals. Must possess good interpersonal skills, be able to work as a team member and be progressive and able to adapt with current changes in general practice.\\nCasual awards and hours negotiable depending on experience.\\n\",\"94\":\"Banyo Village Medical Centre\",\"93\":[\"75039\"],\"97\":\"4500\",\"98\":\"qld\",\"95\":\"Shop 1 / 299 St Vincents Road\",\"96\":\"Cashmere\"}}',NULL,NULL,NULL,'2021-03-18 12:15:58','2021-03-18 12:15:58','5f32de7b-dc61-4ce9-bc6a-a0826cb8b905'),(144057,144045,1,NULL,109033,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"109033\",\"title\":\"Practice Nurse Position Banyo Village Medical Centre\",\"slug\":\"practice-nurse-position-banyo-village-medical-centre\",\"postDate\":null,\"expiryDate\":1622383200,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"drtireshni@banyovillagemc.com.au\",\"100\":\"Tireshni Prasad\",\"70\":\"0417645930\",\"99\":\"Banyo Village Medical Centre is a GP owned medical practice who are looking for an experienced general practice nurse to join their team.\\nAt least 2 years general practice experience required, must be able to manage the treatment room, vaccination ordering/cold chain management, ordering supplies and working closely with PHN to achieve practice goals. Must possess good interpersonal skills, be able to work as a team member and be progressive and able to adapt with current changes in general practice.\\nCasual awards and hours negotiable depending on experience.\\n\",\"94\":\"Banyo Village Medical Centre\",\"93\":[\"75039\"],\"97\":\"4500\",\"98\":\"qld\",\"95\":\"Shop 1 / 299 St Vincents Road\",\"96\":\"Cashmere\"}}',NULL,NULL,NULL,'2021-03-18 12:16:58','2021-03-18 12:16:58','df689576-b01b-4be4-81cc-e928b66d583e'),(144058,144045,1,NULL,109033,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"109033\",\"title\":\"Practice Nurse Position Banyo Village Medical Centre\",\"slug\":\"practice-nurse-position-banyo-village-medical-centre\",\"postDate\":null,\"expiryDate\":1622383200,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"drtireshni@banyovillagemc.com.au\",\"100\":\"Tireshni Prasad\",\"70\":\"0417645930\",\"99\":\"Banyo Village Medical Centre is a GP owned medical practice who are looking for an experienced general practice nurse to join their team.\\nAt least 2 years general practice experience required, must be able to manage the treatment room, vaccination ordering/cold chain management, ordering supplies and working closely with PHN to achieve practice goals. Must possess good interpersonal skills, be able to work as a team member and be progressive and able to adapt with current changes in general practice.\\nCasual awards and hours negotiable depending on experience.\\n\",\"94\":\"Banyo Village Medical Centre\",\"93\":[\"75039\"],\"97\":\"4500\",\"98\":\"qld\",\"95\":\"Shop 1 / 299 St Vincents Road\",\"96\":\"Cashmere\"}}',NULL,NULL,NULL,'2021-03-18 12:16:59','2021-03-18 12:16:59','10a68fb5-e69f-4eab-b59a-b2546409c45f'),(144080,144079,1,NULL,144061,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":144061,\"title\":\"Childhood Overweight and Obesity Project ECHO Series\",\"slug\":\"childhood-overweight-and-obesity-project-echo-series\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"https://hw.qld.gov.au/hub/project-echo/\",\"71\":\"echo@hw.qld.gov.au\",\"70\":\"0448465818\",\"67\":\"Childhood Overweight and Obesity affects one in four Queensland children and is associated with poor long-term health, emotional and social outcomes. It often affects whole families, and primary healthcare providers are the clinicians best able to deliver holistic care for the entire family. Treatment of Childhood Overweight and Obesity can be safely delivered in primary care with specialist support. \\n \\nProject ECHO® is an interactive hub and spoke knowledge sharing model, with a focus on peer-to-peer learning and mentoring, collaborative problem solving and teaching. Via an online platform ECHO® opens the channels for participants in rural and remote locations to evidence-based learnings and knowledge from a panel of topic experts and multi-disciplinary peers. Each week participants log in to a session which consists of a short presentation from a panel expert, question time. A case study presentation from a participant followed by an interactive discussion led by the panel facilitator. \\n\\nSessions are 1 hour in length and run for 7 consecutive weeks\\n\\nPanel: \\tGeneral Paediatrician, Paediatric dietitian, Paediatric psychologist and guest presenters. \\n\\nRegister here: https://hw.qld.gov.au/hub/project-echo/#registration \",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Health and Wellbeing Queensland\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Childhood Overweight and Obesity Project ECHO Series - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Childhood Overweight and Obesity Project ECHO Series - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-19 01:44:24','2021-03-19 01:44:24','87d0e091-036b-4328-9960-ed9f7d045955'),(144083,144082,1,NULL,144061,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":144061,\"title\":\"Childhood Overweight and Obesity Project ECHO Series\",\"slug\":\"childhood-overweight-and-obesity-project-echo-series-1\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"https://hw.qld.gov.au/hub/project-echo/\",\"71\":\"echo@hw.qld.gov.au\",\"70\":\"0448465818\",\"67\":\"Childhood Overweight and Obesity affects one in four Queensland children and is associated with poor long-term health, emotional and social outcomes. It often affects whole families, and primary healthcare providers are the clinicians best able to deliver holistic care for the entire family. Treatment of Childhood Overweight and Obesity can be safely delivered in primary care with specialist support. \\n \\nProject ECHO® is an interactive hub and spoke knowledge sharing model, with a focus on peer-to-peer learning and mentoring, collaborative problem solving and teaching. Via an online platform ECHO® opens the channels for participants in rural and remote locations to evidence-based learnings and knowledge from a panel of topic experts and multi-disciplinary peers. Each week participants log in to a session which consists of a short presentation from a panel expert, question time. A case study presentation from a participant followed by an interactive discussion led by the panel facilitator. \\n\\nSessions are 1 hour in length and run for 7 consecutive weeks\\n\\nPanel: \\tGeneral Paediatrician, Paediatric dietitian, Paediatric psychologist and guest presenters. \\n\\nRegister here: https://hw.qld.gov.au/hub/project-echo/#registration \",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Health and Wellbeing Queensland\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Childhood Overweight and Obesity Project ECHO Series - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Childhood Overweight and Obesity Project ECHO Series - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-19 01:44:25','2021-03-19 01:44:25','1d0b1a6e-f538-40ee-aeeb-08d19035543d'),(144223,NULL,1,NULL,104753,NULL,'pending','',NULL,'{\"typeId\":\"19\",\"authorId\":\"104753\",\"title\":\"Practice Nurse\",\"slug\":\"practice-nurse\",\"postDate\":1613546640,\"expiryDate\":1616335200,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"manager@gasworksmedical.com.au\",\"100\":\"Allison Stanton\",\"70\":\"07 3852 4299\",\"99\":\"<p>Gasworks Medical Practice is a GP owned, well established family general practice.<br /><br />Gasworks Medical Practice takes pride in offering the highest standard of medical care to patients whilst offering a friendly, accessible and professional service. We are a private billing practice, located in the heart of Newstead.<br /><br /> We now require an exceptional and experience Registered Nurse to join our team and to help meet the demand of the ever-increasing patient numbers at our newly renovated practice!<br /><br /> <strong>The ideal candidate would be seeing themselves as long term employee of the practice.<br /><br /> </strong>Gasworks Medical Practice aims to provide a high quality family care within a modern and well managed fully equipped treatment room facility.<br /><br /> <strong>You are required to provide quality care to patients through:</strong></p><ul><li>all aspect of childhood immunisations</li><li>travel vaccinations</li><li>immunisation catch ups</li><li>ECG\'s and Spirometry</li><li>wound care/dressings</li><li>assisting doctors with minor surgical procedures</li><li>daily co-ordination of the treatment room, stock control and medical equipment maintenance</li><li>implementing and practicing infection control</li><li>identifying and contributing to the development of our patient educational needs</li><li>chronic disease management including care plans and health assessments</li></ul>\\n<p><strong>Essential Criteria:</strong></p><ul><li>current unrestricted Nurses Registration with AHPRA</li><li>minimum 2 years’ experience as Practice Nurse </li><li>highly organised with excellent time management skills</li><li>ability to work both independently and as part of a team</li><li>excellent interpersonal and communication skills</li><li>caring and collaborative approach to patient care</li><li>proven multi-tasking, problem solving and time management skills</li></ul>\",\"94\":\"Gasworks Medical Practice\",\"93\":[\"75039\"],\"97\":\"4006\",\"98\":\"qld\",\"95\":\"Skyring Terrrace\",\"96\":\"newstead\"}}',NULL,NULL,NULL,'2021-03-22 04:54:17','2021-03-22 04:54:17','afc1a77c-6e0d-45c6-abaa-26cd1a2caacd'),(144227,144226,1,NULL,144225,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":144225,\"title\":\"Clinical Registered Nurse\",\"slug\":\"clinical-registered-nurse\",\"postDate\":null,\"expiryDate\":1618495200,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"HR@sonichealthplus.com.au\",\"100\":\"Emma Walsh\",\"70\":\"07 3058 8311\",\"99\":\"About the business \\n\\nSonic Nurse Connect is part of Sonic Clinical Services (SCS), the primary care division of Sonic Healthcare – one of Australia\'s largest Healthcare companies. At Sonic Nurse Connect, our focus is the design &amp; delivery of community-based healthcare services to support a better patient journey &amp; positive health outcomes for those with acute or chronic, complex health conditions.\\nAbout the Role\\n\\nWe are seeking two suitably qualified Clinical Registered Nurses to work in Brisbane Metro, QLD on a Casual basis. You will be providing community healthcare services including specialty nursing skills such as IV Medication administration, patient education and support. \\n\\nCandidate Requirements\\nThe role requires two experienced Registered Nurses who are motivated, shows initiative, flexible, and able to work independently. More specifically, you will have the following essential criteria; \\n•\\tAHPRA Registration (Registered Nurse) with no limitations, restrictions or notations\\n•\\tMinimum of 5 years acute clinical care experience (post-registration)\\n•\\tDrivers Licence (C Class)\\n•\\tCurrent National Police Clearance (or ability to obtain)\\n•\\tWell-developed computer skills including proficient experience in MS Office suite\\n•\\tExperience in cannulation, venepuncture, infusion skills, as well as community nursing assessment and care planning skills\\n•\\tProficient clinical assessment skills\\n•\\tDemonstrated time management and problem solving skills\\n•\\tStrong customer focus and quality service orientation\\n•\\tAbility to exercise good judgement and discretion- including but not limited to confidential materials and matters.\\n•\\tFlexibility in being able to work autonomously and participate in a remote team environment\\n\\nThe following criteria is desirable; \\n•\\tExperience in phlebotomy\\n\\nWhy Join Us?\\n•\\tCompetitive Casual hourly rate\\n•\\tTo be part of one of Australia\'s largest healthcare providers and work within a National infrastructure\\n•\\tCasual work, with flexible work hours\\n•\\tThe opportunity to work independently and remotely.\\n\\nTo Apply: Please apply directly through our website: https://shp.taleo.net/careersection/ext/jobdetail.ftl?job=AUS00000Q&amp;tz=GMT%2B10%3A00&amp;tzname=Australia%2FBrisbane \\n\\nShort listing for this position will commence immediately, however, we reserve the right to close this position earlier than stated. Only short-listed candidates will be contacted.\",\"94\":\"Sonic Nurse Connect\",\"93\":[\"128049\"],\"97\":\"4000\",\"98\":\"qld\",\"95\":\"5/410 Ann Street\",\"96\":\"Brisbane\"}}',NULL,NULL,NULL,'2021-03-22 05:42:01','2021-03-22 05:42:01','b2466342-ec11-462c-ae2a-a1df6a1149d5'),(144230,144229,1,NULL,144225,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":144225,\"title\":\"Clinical Registered Nurse\",\"slug\":\"clinical-registered-nurse-1\",\"postDate\":null,\"expiryDate\":1618495200,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"HR@sonichealthplus.com.au\",\"100\":\"Emma Walsh\",\"70\":\"07 3058 8311\",\"99\":\"About the business \\n\\nSonic Nurse Connect is part of Sonic Clinical Services (SCS), the primary care division of Sonic Healthcare – one of Australia\'s largest Healthcare companies. At Sonic Nurse Connect, our focus is the design &amp; delivery of community-based healthcare services to support a better patient journey &amp; positive health outcomes for those with acute or chronic, complex health conditions.\\nAbout the Role\\n\\nWe are seeking two suitably qualified Clinical Registered Nurses to work in Brisbane Metro, QLD on a Casual basis. You will be providing community healthcare services including specialty nursing skills such as IV Medication administration, patient education and support. \\n\\nCandidate Requirements\\nThe role requires two experienced Registered Nurses who are motivated, shows initiative, flexible, and able to work independently. More specifically, you will have the following essential criteria; \\n•\\tAHPRA Registration (Registered Nurse) with no limitations, restrictions or notations\\n•\\tMinimum of 5 years acute clinical care experience (post-registration)\\n•\\tDrivers Licence (C Class)\\n•\\tCurrent National Police Clearance (or ability to obtain)\\n•\\tWell-developed computer skills including proficient experience in MS Office suite\\n•\\tExperience in cannulation, venepuncture, infusion skills, as well as community nursing assessment and care planning skills\\n•\\tProficient clinical assessment skills\\n•\\tDemonstrated time management and problem solving skills\\n•\\tStrong customer focus and quality service orientation\\n•\\tAbility to exercise good judgement and discretion- including but not limited to confidential materials and matters.\\n•\\tFlexibility in being able to work autonomously and participate in a remote team environment\\n\\nThe following criteria is desirable; \\n•\\tExperience in phlebotomy\\n\\nWhy Join Us?\\n•\\tCompetitive Casual hourly rate\\n•\\tTo be part of one of Australia\'s largest healthcare providers and work within a National infrastructure\\n•\\tCasual work, with flexible work hours\\n•\\tThe opportunity to work independently and remotely.\\n\\nTo Apply: Please apply directly through our website: https://shp.taleo.net/careersection/ext/jobdetail.ftl?job=AUS00000Q&amp;tz=GMT%2B10%3A00&amp;tzname=Australia%2FBrisbane \\n\\nShort listing for this position will commence immediately, however, we reserve the right to close this position earlier than stated. Only short-listed candidates will be contacted.\",\"94\":\"Sonic Nurse Connect\",\"93\":[\"128049\"],\"97\":\"4000\",\"98\":\"qld\",\"95\":\"5/410 Ann Street\",\"96\":\"Brisbane\"}}',NULL,NULL,NULL,'2021-03-22 05:42:02','2021-03-22 05:42:02','9b20b230-7aeb-43ad-b935-b4aee2143b28'),(144234,NULL,1,NULL,121977,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":121977,\"title\":\"Medicinal Cannabis: Keeping an open mind\",\"slug\":\"medicinal-cannabis-keeping-an-open-mind\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Webinar: https://l.facebook.com/l.php?u=https%3A%2F%2Fzurl.co%2FqmVk%3Ffbclid%3DIwAR23ZKBBNfCi3XuU6v5JYIaDGQwo5wbGJBOXkyVyhVUepZbPyI4vSDsjcLY&h=AT1ejI6wTP0nxgiGKnQzZ_DkzLTKsQhgDAFf5vq8YySBV3ZJCORp2OJYlHFFP8ppepZnFqxFNgQY31Q-_XxTUNkNL23mFgsOXkHs4hgjEvFqmIA62C5ULUp5T5g1uiK5Wb9-XA\",\"71\":\"info@littlegreenpharma.com\",\"70\":\"1300 118 840\",\"67\":\"Are your patients asking about medicinal cannabis as a treatment option? Would you like to learn more about medicinal cannabis prescribing in 2021?\\n\\nThe evening will cover:\\n- Medicinal Cannabis – overview &amp; evidence\\n- Eligibility &amp; prescribing process\\n- Patient case studies\\n- Q&amp;A\\n\\nPresented by General Practitioner\\nDr. Tamara Nation\\nDr Tamara Nation, Melbourne GP, has undertaken extensive training in cannabinoid medicine both nationally and internationally and is a member of the Society of Cannabis Clinicians. She was an early adopter of medicinal cannabis therapy for patients in Australia. This has enabled her to provide experienced and considered care for patients seeking medicinal cannabis for a range of illnesses.\\n\\nCo-presenter: Barb Fullerton\\nBarb is the National Education Manager of Little Green Pharma, Australia’s first producer and grower of medicinal cannabis. Barb will give an overview of the Australian medical cannabis industry, specifically the value of locally sourced and produced medicines.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Little Green Pharma\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Medicinal Cannabis: Keeping an open mind - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Medicinal Cannabis: Keeping an open mind - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-22 06:08:57','2021-03-22 06:08:57','8c61d644-681b-44f3-b3de-b8f9b492030d'),(144237,NULL,1,NULL,121977,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":121977,\"title\":\"Medicinal Cannabis: Keeping an open mind\",\"slug\":\"medicinal-cannabis-keeping-an-open-mind-1\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Webinar: https://l.facebook.com/l.php?u=https%3A%2F%2Fzurl.co%2FqmVk%3Ffbclid%3DIwAR23ZKBBNfCi3XuU6v5JYIaDGQwo5wbGJBOXkyVyhVUepZbPyI4vSDsjcLY&h=AT1ejI6wTP0nxgiGKnQzZ_DkzLTKsQhgDAFf5vq8YySBV3ZJCORp2OJYlHFFP8ppepZnFqxFNgQY31Q-_XxTUNkNL23mFgsOXkHs4hgjEvFqmIA62C5ULUp5T5g1uiK5Wb9-XA\",\"71\":\"info@littlegreenpharma.com\",\"70\":\"1300 118 840\",\"67\":\"Are your patients asking about medicinal cannabis as a treatment option? Would you like to learn more about medicinal cannabis prescribing in 2021?\\n\\nThe evening will cover:\\n- Medicinal Cannabis – overview &amp; evidence\\n- Eligibility &amp; prescribing process\\n- Patient case studies\\n- Q&amp;A\\n\\nPresented by General Practitioner\\nDr. Tamara Nation\\nDr Tamara Nation, Melbourne GP, has undertaken extensive training in cannabinoid medicine both nationally and internationally and is a member of the Society of Cannabis Clinicians. She was an early adopter of medicinal cannabis therapy for patients in Australia. This has enabled her to provide experienced and considered care for patients seeking medicinal cannabis for a range of illnesses.\\n\\nCo-presenter: Barb Fullerton\\nBarb is the National Education Manager of Little Green Pharma, Australia’s first producer and grower of medicinal cannabis. Barb will give an overview of the Australian medical cannabis industry, specifically the value of locally sourced and produced medicines.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Little Green Pharma\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Medicinal Cannabis: Keeping an open mind - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Medicinal Cannabis: Keeping an open mind - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-22 06:08:58','2021-03-22 06:08:58','51c6b6d3-64ac-4a2f-8c6f-538003af65d1'),(144239,NULL,1,NULL,121977,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"121977\",\"title\":\"Medicinal Cannabis: Keeping an open mind\",\"slug\":\"medicinal-cannabis-keeping-an-open-mind\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Webinar: https://l.facebook.com/l.php?u=https%3A%2F%2Fzurl.co%2FqmVk%3Ffbclid%3DIwAR23ZKBBNfCi3XuU6v5JYIaDGQwo5wbGJBOXkyVyhVUepZbPyI4vSDsjcLY&h=AT1ejI6wTP0nxgiGKnQzZ_DkzLTKsQhgDAFf5vq8YySBV3ZJCORp2OJYlHFFP8ppepZnFqxFNgQY31Q-_XxTUNkNL23mFgsOXkHs4hgjEvFqmIA62C5ULUp5T5g1uiK5Wb9-XA\",\"71\":\"info@littlegreenpharma.com\",\"70\":\"1300 118 840\",\"67\":\"Are your patients asking about medicinal cannabis as a treatment option? Would you like to learn more about medicinal cannabis prescribing in 2021?\\n\\nThe evening will cover:\\n- Medicinal Cannabis – overview &amp; evidence\\n- Eligibility &amp; prescribing process\\n- Patient case studies\\n- Q&amp;A\\n\\nPresented by General Practitioner\\nDr. Tamara Nation\\nDr Tamara Nation, Melbourne GP, has undertaken extensive training in cannabinoid medicine both nationally and internationally and is a member of the Society of Cannabis Clinicians. She was an early adopter of medicinal cannabis therapy for patients in Australia. This has enabled her to provide experienced and considered care for patients seeking medicinal cannabis for a range of illnesses.\\n\\nCo-presenter: Barb Fullerton\\nBarb is the National Education Manager of Little Green Pharma, Australia’s first producer and grower of medicinal cannabis. Barb will give an overview of the Australian medical cannabis industry, specifically the value of locally sourced and produced medicines.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Little Green Pharma\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Medicinal Cannabis: Keeping an open mind - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Medicinal Cannabis: Keeping an open mind - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-22 06:09:14','2021-03-22 06:09:14','ea25632f-907c-43e7-aed9-16d295a6cd20'),(144240,NULL,1,NULL,121977,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"121977\",\"title\":\"Medicinal Cannabis: Keeping an open mind\",\"slug\":\"medicinal-cannabis-keeping-an-open-mind\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Webinar: https://l.facebook.com/l.php?u=https%3A%2F%2Fzurl.co%2FqmVk%3Ffbclid%3DIwAR23ZKBBNfCi3XuU6v5JYIaDGQwo5wbGJBOXkyVyhVUepZbPyI4vSDsjcLY&h=AT1ejI6wTP0nxgiGKnQzZ_DkzLTKsQhgDAFf5vq8YySBV3ZJCORp2OJYlHFFP8ppepZnFqxFNgQY31Q-_XxTUNkNL23mFgsOXkHs4hgjEvFqmIA62C5ULUp5T5g1uiK5Wb9-XA\",\"71\":\"info@littlegreenpharma.com\",\"70\":\"1300 118 840\",\"67\":\"Are your patients asking about medicinal cannabis as a treatment option? Would you like to learn more about medicinal cannabis prescribing in 2021?\\n\\nThe evening will cover:\\n- Medicinal Cannabis – overview &amp; evidence\\n- Eligibility &amp; prescribing process\\n- Patient case studies\\n- Q&amp;A\\n\\nPresented by General Practitioner\\nDr. Tamara Nation\\nDr Tamara Nation, Melbourne GP, has undertaken extensive training in cannabinoid medicine both nationally and internationally and is a member of the Society of Cannabis Clinicians. She was an early adopter of medicinal cannabis therapy for patients in Australia. This has enabled her to provide experienced and considered care for patients seeking medicinal cannabis for a range of illnesses.\\n\\nCo-presenter: Barb Fullerton\\nBarb is the National Education Manager of Little Green Pharma, Australia’s first producer and grower of medicinal cannabis. Barb will give an overview of the Australian medical cannabis industry, specifically the value of locally sourced and produced medicines.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Little Green Pharma\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Medicinal Cannabis: Keeping an open mind - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Medicinal Cannabis: Keeping an open mind - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-22 06:09:15','2021-03-22 06:09:15','0630657f-e08f-458b-8a38-d8b815cc9cc5'),(144242,NULL,1,NULL,121977,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"121977\",\"title\":\"Medicinal Cannabis: Keeping an open mind\",\"slug\":\"medicinal-cannabis-keeping-an-open-mind\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Webinar: https://l.facebook.com/l.php?u=https%3A%2F%2Fzurl.co%2FqmVk%3Ffbclid%3DIwAR23ZKBBNfCi3XuU6v5JYIaDGQwo5wbGJBOXkyVyhVUepZbPyI4vSDsjcLY&h=AT1ejI6wTP0nxgiGKnQzZ_DkzLTKsQhgDAFf5vq8YySBV3ZJCORp2OJYlHFFP8ppepZnFqxFNgQY31Q-_XxTUNkNL23mFgsOXkHs4hgjEvFqmIA62C5ULUp5T5g1uiK5Wb9-XA\",\"71\":\"info@littlegreenpharma.com\",\"70\":\"1300 118 840\",\"67\":\"Are your patients asking about medicinal cannabis as a treatment option? Would you like to learn more about medicinal cannabis prescribing in 2021?\\n\\nThe evening will cover:\\n- Medicinal Cannabis – overview &amp; evidence\\n- Eligibility &amp; prescribing process\\n- Patient case studies\\n- Q&amp;A\\n\\nPresented by General Practitioner\\nDr. Tamara Nation\\nDr Tamara Nation, Melbourne GP, has undertaken extensive training in cannabinoid medicine both nationally and internationally and is a member of the Society of Cannabis Clinicians. She was an early adopter of medicinal cannabis therapy for patients in Australia. This has enabled her to provide experienced and considered care for patients seeking medicinal cannabis for a range of illnesses.\\n\\nCo-presenter: Barb Fullerton\\nBarb is the National Education Manager of Little Green Pharma, Australia’s first producer and grower of medicinal cannabis. Barb will give an overview of the Australian medical cannabis industry, specifically the value of locally sourced and produced medicines.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Little Green Pharma\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Medicinal Cannabis: Keeping an open mind - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Medicinal Cannabis: Keeping an open mind - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-22 06:09:16','2021-03-22 06:09:16','7a13311b-75ce-44b6-b9ba-d560e578f189'),(144243,NULL,1,NULL,121977,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"121977\",\"title\":\"Medicinal Cannabis: Keeping an open mind\",\"slug\":\"medicinal-cannabis-keeping-an-open-mind\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Webinar: https://l.facebook.com/l.php?u=https%3A%2F%2Fzurl.co%2FqmVk%3Ffbclid%3DIwAR23ZKBBNfCi3XuU6v5JYIaDGQwo5wbGJBOXkyVyhVUepZbPyI4vSDsjcLY&h=AT1ejI6wTP0nxgiGKnQzZ_DkzLTKsQhgDAFf5vq8YySBV3ZJCORp2OJYlHFFP8ppepZnFqxFNgQY31Q-_XxTUNkNL23mFgsOXkHs4hgjEvFqmIA62C5ULUp5T5g1uiK5Wb9-XA\",\"71\":\"info@littlegreenpharma.com\",\"70\":\"1300 118 840\",\"67\":\"Are your patients asking about medicinal cannabis as a treatment option? Would you like to learn more about medicinal cannabis prescribing in 2021?\\n\\nThe evening will cover:\\n- Medicinal Cannabis – overview &amp; evidence\\n- Eligibility &amp; prescribing process\\n- Patient case studies\\n- Q&amp;A\\n\\nPresented by General Practitioner\\nDr. Tamara Nation\\nDr Tamara Nation, Melbourne GP, has undertaken extensive training in cannabinoid medicine both nationally and internationally and is a member of the Society of Cannabis Clinicians. She was an early adopter of medicinal cannabis therapy for patients in Australia. This has enabled her to provide experienced and considered care for patients seeking medicinal cannabis for a range of illnesses.\\n\\nCo-presenter: Barb Fullerton\\nBarb is the National Education Manager of Little Green Pharma, Australia’s first producer and grower of medicinal cannabis. Barb will give an overview of the Australian medical cannabis industry, specifically the value of locally sourced and produced medicines.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Little Green Pharma\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Medicinal Cannabis: Keeping an open mind - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Medicinal Cannabis: Keeping an open mind - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-22 06:09:17','2021-03-22 06:09:17','e1dcf790-7037-4ac8-bf7d-dfddde8082b2'),(144245,NULL,1,NULL,121977,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"121977\",\"title\":\"Medicinal Cannabis: Keeping an open mind\",\"slug\":\"medicinal-cannabis-keeping-an-open-mind\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Webinar: https://l.facebook.com/l.php?u=https%3A%2F%2Fzurl.co%2FqmVk%3Ffbclid%3DIwAR23ZKBBNfCi3XuU6v5JYIaDGQwo5wbGJBOXkyVyhVUepZbPyI4vSDsjcLY&h=AT1ejI6wTP0nxgiGKnQzZ_DkzLTKsQhgDAFf5vq8YySBV3ZJCORp2OJYlHFFP8ppepZnFqxFNgQY31Q-_XxTUNkNL23mFgsOXkHs4hgjEvFqmIA62C5ULUp5T5g1uiK5Wb9-XA\",\"71\":\"info@littlegreenpharma.com\",\"70\":\"1300 118 840\",\"67\":\"Are your patients asking about medicinal cannabis as a treatment option? Would you like to learn more about medicinal cannabis prescribing in 2021?\\n\\nThe evening will cover:\\n- Medicinal Cannabis – overview &amp; evidence\\n- Eligibility &amp; prescribing process\\n- Patient case studies\\n- Q&amp;A\\n\\nPresented by General Practitioner\\nDr. Tamara Nation\\nDr Tamara Nation, Melbourne GP, has undertaken extensive training in cannabinoid medicine both nationally and internationally and is a member of the Society of Cannabis Clinicians. She was an early adopter of medicinal cannabis therapy for patients in Australia. This has enabled her to provide experienced and considered care for patients seeking medicinal cannabis for a range of illnesses.\\n\\nCo-presenter: Barb Fullerton\\nBarb is the National Education Manager of Little Green Pharma, Australia’s first producer and grower of medicinal cannabis. Barb will give an overview of the Australian medical cannabis industry, specifically the value of locally sourced and produced medicines.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Little Green Pharma\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Medicinal Cannabis: Keeping an open mind - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Medicinal Cannabis: Keeping an open mind - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-22 06:15:49','2021-03-22 06:15:49','05a738b8-f101-48db-8f9e-38578e166ee9'),(144246,NULL,1,NULL,121977,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"121977\",\"title\":\"Medicinal Cannabis: Keeping an open mind\",\"slug\":\"medicinal-cannabis-keeping-an-open-mind\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Webinar: https://l.facebook.com/l.php?u=https%3A%2F%2Fzurl.co%2FqmVk%3Ffbclid%3DIwAR23ZKBBNfCi3XuU6v5JYIaDGQwo5wbGJBOXkyVyhVUepZbPyI4vSDsjcLY&h=AT1ejI6wTP0nxgiGKnQzZ_DkzLTKsQhgDAFf5vq8YySBV3ZJCORp2OJYlHFFP8ppepZnFqxFNgQY31Q-_XxTUNkNL23mFgsOXkHs4hgjEvFqmIA62C5ULUp5T5g1uiK5Wb9-XA\",\"71\":\"info@littlegreenpharma.com\",\"70\":\"1300 118 840\",\"67\":\"Are your patients asking about medicinal cannabis as a treatment option? Would you like to learn more about medicinal cannabis prescribing in 2021?\\n\\nThe evening will cover:\\n- Medicinal Cannabis – overview &amp; evidence\\n- Eligibility &amp; prescribing process\\n- Patient case studies\\n- Q&amp;A\\n\\nPresented by General Practitioner\\nDr. Tamara Nation\\nDr Tamara Nation, Melbourne GP, has undertaken extensive training in cannabinoid medicine both nationally and internationally and is a member of the Society of Cannabis Clinicians. She was an early adopter of medicinal cannabis therapy for patients in Australia. This has enabled her to provide experienced and considered care for patients seeking medicinal cannabis for a range of illnesses.\\n\\nCo-presenter: Barb Fullerton\\nBarb is the National Education Manager of Little Green Pharma, Australia’s first producer and grower of medicinal cannabis. Barb will give an overview of the Australian medical cannabis industry, specifically the value of locally sourced and produced medicines.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Little Green Pharma\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Medicinal Cannabis: Keeping an open mind - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Medicinal Cannabis: Keeping an open mind - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-22 06:15:49','2021-03-22 06:15:49','56a98bdc-f78b-481b-83a2-f43dddfce9b6'),(144248,NULL,1,NULL,121977,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"121977\",\"title\":\"Medicinal Cannabis: Keeping an open mind\",\"slug\":\"medicinal-cannabis-keeping-an-open-mind\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Webinar: https://l.facebook.com/l.php?u=https%3A%2F%2Fzurl.co%2FqmVk%3Ffbclid%3DIwAR23ZKBBNfCi3XuU6v5JYIaDGQwo5wbGJBOXkyVyhVUepZbPyI4vSDsjcLY&h=AT1ejI6wTP0nxgiGKnQzZ_DkzLTKsQhgDAFf5vq8YySBV3ZJCORp2OJYlHFFP8ppepZnFqxFNgQY31Q-_XxTUNkNL23mFgsOXkHs4hgjEvFqmIA62C5ULUp5T5g1uiK5Wb9-XA\",\"71\":\"info@littlegreenpharma.com\",\"70\":\"1300 118 840\",\"67\":\"Are your patients asking about medicinal cannabis as a treatment option? Would you like to learn more about medicinal cannabis prescribing in 2021?\\n\\nThe evening will cover:\\n- Medicinal Cannabis – overview &amp; evidence\\n- Eligibility &amp; prescribing process\\n- Patient case studies\\n- Q&amp;A\\n\\nPresented by General Practitioner\\nDr. Tamara Nation\\nDr Tamara Nation, Melbourne GP, has undertaken extensive training in cannabinoid medicine both nationally and internationally and is a member of the Society of Cannabis Clinicians. She was an early adopter of medicinal cannabis therapy for patients in Australia. This has enabled her to provide experienced and considered care for patients seeking medicinal cannabis for a range of illnesses.\\n\\nCo-presenter: Barb Fullerton\\nBarb is the National Education Manager of Little Green Pharma, Australia’s first producer and grower of medicinal cannabis. Barb will give an overview of the Australian medical cannabis industry, specifically the value of locally sourced and produced medicines.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Little Green Pharma\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Medicinal Cannabis: Keeping an open mind - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Medicinal Cannabis: Keeping an open mind - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-22 06:15:50','2021-03-22 06:15:50','f519130a-a0a9-403d-95ec-41c3ed6af71c'),(144249,NULL,1,NULL,121977,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"121977\",\"title\":\"Medicinal Cannabis: Keeping an open mind\",\"slug\":\"medicinal-cannabis-keeping-an-open-mind\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Webinar: https://l.facebook.com/l.php?u=https%3A%2F%2Fzurl.co%2FqmVk%3Ffbclid%3DIwAR23ZKBBNfCi3XuU6v5JYIaDGQwo5wbGJBOXkyVyhVUepZbPyI4vSDsjcLY&h=AT1ejI6wTP0nxgiGKnQzZ_DkzLTKsQhgDAFf5vq8YySBV3ZJCORp2OJYlHFFP8ppepZnFqxFNgQY31Q-_XxTUNkNL23mFgsOXkHs4hgjEvFqmIA62C5ULUp5T5g1uiK5Wb9-XA\",\"71\":\"info@littlegreenpharma.com\",\"70\":\"1300 118 840\",\"67\":\"Are your patients asking about medicinal cannabis as a treatment option? Would you like to learn more about medicinal cannabis prescribing in 2021?\\n\\nThe evening will cover:\\n- Medicinal Cannabis – overview &amp; evidence\\n- Eligibility &amp; prescribing process\\n- Patient case studies\\n- Q&amp;A\\n\\nPresented by General Practitioner\\nDr. Tamara Nation\\nDr Tamara Nation, Melbourne GP, has undertaken extensive training in cannabinoid medicine both nationally and internationally and is a member of the Society of Cannabis Clinicians. She was an early adopter of medicinal cannabis therapy for patients in Australia. This has enabled her to provide experienced and considered care for patients seeking medicinal cannabis for a range of illnesses.\\n\\nCo-presenter: Barb Fullerton\\nBarb is the National Education Manager of Little Green Pharma, Australia’s first producer and grower of medicinal cannabis. Barb will give an overview of the Australian medical cannabis industry, specifically the value of locally sourced and produced medicines.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Little Green Pharma\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Medicinal Cannabis: Keeping an open mind - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Medicinal Cannabis: Keeping an open mind - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-22 06:15:51','2021-03-22 06:15:51','e4b1d6cf-c82d-447a-9a67-ed45104796cd'),(144284,144283,1,NULL,101810,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":101810,\"title\":\"Medical Receptionist At Sunshine Skin Clinic, Taigum\",\"slug\":\"medical-receptionist-at-sunshine-skin-clinic-taigum\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"management@sunshineskinclinic.com\",\"100\":\"Dr Ning Zhu\",\"70\":\"07 3177 1080\",\"99\":\"Sunshine Skin Clinic Taigum is looking for an experienced medical receptionist. We are looking for someone who excels with customer-service to join our team. \\n\\nThe following are required skills and experiences: \\n- Minimum of two years of experience in general practice/skin cancer clinic \\n- Experienced with Medical Software\\n- Excellent Communication skills\\n- Good time management \\n- Reliable and flexible\\n\\n\\nThe position will be casual with the opportunity to become permanent. Currently, the hours will be as follows:\\n- Three days per week with one Friday and Saturday added per month\\n\\nIf you want to join a warm, supportive team in a busy surgery, please apply with your cover letter and resume to management at management@sunshineskinclinic.com.au. \\n\",\"94\":\"Sunshine Skin Clinic\",\"93\":[\"75035\"],\"97\":\"4018\",\"98\":\"qld\",\"95\":\"Shop 20/217 Beams Road, Taigum Square Shopping Centre\",\"96\":\"Taigum\"}}',NULL,NULL,NULL,'2021-03-22 13:24:35','2021-03-22 13:24:35','a929b0da-f5ff-4a66-8476-074b2518a69e'),(144286,144283,1,NULL,101810,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"101810\",\"title\":\"Medical Receptionist At Sunshine Skin Clinic, Taigum\",\"slug\":\"medical-receptionist-at-sunshine-skin-clinic-taigum\",\"postDate\":null,\"expiryDate\":1616421600,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"management@sunshineskinclinic.com\",\"100\":\"Wendy Hall\",\"70\":\"07 3177 1080\",\"99\":\"Sunshine Skin Clinic Taigum is looking for an experienced medical receptionist. We are looking for someone who excels with customer-service to join our team. \\n\\nThe following are required skills and experiences: \\n- Minimum of two years of experience in general practice/skin cancer clinic \\n- Experienced with Medical Software\\n- Excellent Communication skills\\n- Good time management \\n- Reliable and flexible\\n\\n\\nThe position will be casual with the opportunity to become permanent. Currently, the hours will be as follows:\\n- Three days per week with one Friday and Saturday added per month\\n\\nIf you want to join a warm, supportive team in a busy surgery, please apply with your cover letter and resume to management at management@sunshineskinclinic.com.au. \\n\",\"94\":\"Sunshine Skin Clinic\",\"93\":[\"75035\"],\"97\":\"4018\",\"98\":\"qld\",\"95\":\"Shop 20/217 Beams Road, Taigum Square Shopping Centre\",\"96\":\"Taigum\"}}',NULL,NULL,NULL,'2021-03-22 23:42:54','2021-03-22 23:42:54','09720347-9d56-44cf-80db-b844c25bfa0f'),(144287,144283,1,NULL,101810,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"101810\",\"title\":\"Medical Receptionist At Sunshine Skin Clinic, Taigum\",\"slug\":\"medical-receptionist-at-sunshine-skin-clinic-taigum\",\"postDate\":null,\"expiryDate\":1616421600,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"management@sunshineskinclinic.com\",\"100\":\"Wendy Hall\",\"70\":\"07 3177 1080\",\"99\":\"Sunshine Skin Clinic Taigum is looking for an experienced medical receptionist. We are looking for someone who excels with customer-service to join our team. \\n\\nThe following are required skills and experiences: \\n- Minimum of two years of experience in general practice/skin cancer clinic \\n- Experienced with Medical Software\\n- Excellent Communication skills\\n- Good time management \\n- Reliable and flexible\\n\\n\\nThe position will be casual with the opportunity to become permanent. Currently, the hours will be as follows:\\n- Three days per week with one Friday and Saturday added per month\\n\\nIf you want to join a warm, supportive team in a busy surgery, please apply with your cover letter and resume to management at management@sunshineskinclinic.com.au. \\n\",\"94\":\"Sunshine Skin Clinic\",\"93\":[\"75035\"],\"97\":\"4018\",\"98\":\"qld\",\"95\":\"Shop 20/217 Beams Road, Taigum Square Shopping Centre\",\"96\":\"Taigum\"}}',NULL,NULL,NULL,'2021-03-22 23:42:56','2021-03-22 23:42:56','4f701786-fbf4-453e-ae36-ef62610c65d7'),(144292,144291,1,NULL,114563,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":114563,\"title\":\"ASSESSMENT AND MANAGEMENT OF UPPER LIMB PAIN\",\"slug\":\"assessment-and-management-of-upper-limb-pain\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"View Hotel, Kingsford Smith Drive & Hunt St, Hamilton, Brisbane\",\"71\":\"aamm.cert@gmail.com\",\"70\":\"0475 091 625\",\"67\":\"A learning module for doctors wanting to boost their skills and confidence with patients suffering from painful upper limb disorders \\nLearn how to:\\n•\\tSharpen your diagnostic skills with more focused history taking\\n•\\tRefine your physical examination skills and make sense of your findings\\n•\\tTarget and interpret upper limb investigations. \\n•\\tMake a specific diagnosis leading to effective treatment. \\nConditions include rotator cuff disorders, osteoarthritis, capsulitis, epicondylalgia, nerve entrapments and tenosynovitis\\n•\\tDo joint and bursa injections in your office\\n•\\tPrescribe appropriate exercises and medications\\n\\nTUTORS: \\tDr Michael Yelland – GP &amp; Musculoskeletal Medicine Practitioner, Arana Hills, and Associate Professor, School of Medicine, Griffith University\\t\\n\\t\\t\\tDr Scott Masters – GP &amp; Musculoskeletal Medicine Practitioner, Caloundra\\n\\t\\t\\tDr Neil Hearnden - GP &amp; Musculoskeletal Medicine Practitioner, Arana Hills\\n\\t\\t\\tDr Tore Eivers - GP &amp; Musculoskeletal Medicine Practitioner, Capalaba, Brisbane\\nMODULE COST:\\tGPs/Specialists - $690; AAMM members- $590; Registrars- $490; Med students &amp; repeaters- $390\\nCONTACT: \\tVisit https://aamm.org.au/courses-conference/ for further details and to register or contact Kim Ramillon at aamm.cert@gmail.com or phone 0475 091 625\\nThis module is an RACGP CPD Accredited Activity (Activity Number: 184224) and has been allocated 40 CPD program points in the 2020-2022 triennium. This activity is accredited with ACRRM (Activity Number 19000) and is eligible for 8 Educational Activity Hours and 7 Performance Review Hours. \\n\\nThe upper limb pain module is the third of four modules being offered by the Australian Association of Musculoskeletal Medicine leading to the award of the ‘Certificate in Musculoskeletal Medicine’. These modules offered in a repeating annual cycle in Brisbane and Adelaide, cover the assessment and management of pain and disability in the (i) low back, (ii) neck and upper back, (iii) upper limbs and (iv) lower limbs. The modules can be taken independently and in any order, but all four modules must be successfully completed to be awarded the certificate. \",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australian Association of Musculoskeletal Medicine\",\"72\":\"within\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"ASSESSMENT AND MANAGEMENT OF UPPER LIMB PAIN - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"ASSESSMENT AND MANAGEMENT OF UPPER LIMB PAIN - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-23 01:54:25','2021-03-23 01:54:25','8d992ae9-3c99-4f1f-baf2-c5ac8d6106a6'),(144303,144302,1,2212,144297,NULL,'pending','',NULL,'{\"typeId\":\"19\",\"authorId\":\"144297\",\"title\":\"Practice Manager\",\"slug\":\"practice-manager\",\"postDate\":1616471940,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"jemma@australiandoctors.com.au\",\"100\":\"Jemma McDougall\",\"70\":\"0406 186 696\",\"99\":\"<p>The Family Practice Medical Centres have proudly owned and operated Medical Centres in Brisbane for 20 years. We are an Australian Family Business with Medical Centres throughout Queensland and into New South Wales.</p>\\n<p>We are seeking an experienced Practice Manager to join our Kallangur Medical Centre, on a full-time basis initially for 12 months (approximately 38 hours per week with some flexibility in hours required). You will play a crucial role not only in managing the day-to-day operations of the Medical Centre, but also in liaising with our team to grow the clinic.</p>\\n<p>Reporting directly to our Management team, your responsibilities will include the following:<br />- The overall management of the practice, ensuring it operates smoothly each day.<br />- Coordinating / liaising with doctors.<br />- Keeping the senior management team fully informed of any events, including computer problems, doctor queries, patient complaints and more.<br />- Maintaining staff rosters<br />- Managing the financials of the Medical Centre including end of month reports, patient billings and cash collections<br />- Management of reception and nursing staff.<br />- Management of patient assistance and communication.<br />- Representing the ‘Face’ of the surgery and managing front of house customer service.</p>\\n\\n\\n\\n\\n\\n\\n\\n\\n<p><strong>Candidate Requirements</strong></p>\\n<p>Ideally an existing Practice Manager, otherwise will have 3+ years\' similar experience within the medical industry. Experience in leading teams, as well as excellent interpersonal and communication skills are essential. Experience using Pracsoft and Medical Director is not essential, but it is desirable. A comprehensive induction and orientation will take place with all new employees.</p>\\n<p><strong>Further Skills And Attributes Required For The Role</strong></p>\\n<p>- Ability to lead, motivate and manage staff to achieve desired business outcomes.<br />- Good computer and problem-solving skills.<br />- A strong commitment to doctor and customer service.<br />- Strong conflict resolution skills.</p>\\n\\n\\n\\n<p><strong>Why Join Us?</strong></p>\\n<p>- Work with a Family Business which has been established for 20 years.<br />- Continual development.<br />- Free health vaccinations.<br />- Employee Assistance Programs are available.</p>\\n\\n\\n\\n<p><strong>More Information</strong></p>\\n<p>The Family Practice Medical Centres definitely have close team networks and we are here to support each other. We are an Equal Opportunity Employer that values and encourages social and cultural diversity and we encourage Aboriginal &amp; Torres Strait Islander people to apply.</p>\\n<p>As part of our pre-employment process, the successful candidate must provide a National Police Clearance conducted within the last 3 months.</p>\",\"94\":\"The Family Practice at Kallangur\",\"93\":[\"108528\"],\"97\":\"4503\",\"98\":\"qld\",\"95\":\"1380 Anzac Avenue\",\"96\":\"Kallangur\"}}',NULL,NULL,NULL,'2021-03-23 04:17:20','2021-03-23 04:17:20','141e871d-9b7c-482f-8a9b-8d839e92f6e7'),(144308,NULL,1,NULL,124917,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":124917,\"title\":\"Australasian Stroke Academy Update on Stroke Prevention, Intervention and Survival\",\"slug\":\"australasian-stroke-academy-update-on-stroke-prevention-intervention-and-survival\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"https://us02web.zoom.us/webinar/register/5016162074460/WN_6WEzBb5UQgmiZYEZ8DEoCQ\",\"71\":\"kristen@communedigital.co\",\"70\":\"0428080715\",\"67\":\"Join the Australasian Stroke Academy with President A/Prof Andrew Wong and a faculty of national and international leaders for a critical update in stroke prevention and management – covering best-practice first-response, shared care optimisation, treatment and referral pathways with a live, interactive panel discussion. \\n\\nThis masterclass will be hosted and presented by;\\n\\nA/Prof Andrew Wong \\nPresident, Australasian Stroke Academy, \\nDirector of Neurology and Stroke, Royal Brisbane and Women’s Hospital QLD \\n\\nProfessor Hans-Christoph Diener\\nDirector, Department of Neuroepidemiology, University Duisberg-Essen, Germany \\n\\nDr Lauren Sanders\\nStroke Neurologist, St Vincent’s Hospital &amp; University of Melbourne VIC\\n\\nA/Prof Sonny Palmer \\nCardiologist, St Vincent’s Hospital, Melbourne VIC\\n\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Inside Practice\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Australasian Stroke Academy Update on Stroke Prevention, Intervention and Survival - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Australasian Stroke Academy Update on Stroke Prevention, Intervention and Survival - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-23 04:27:25','2021-03-23 04:27:25','ee90da03-0173-4340-9939-7b61e73612a5'),(144343,144342,1,NULL,144290,NULL,'pending',NULL,NULL,'{\"typeId\":\"27\",\"authorId\":144290,\"title\":\"Is Telehealth the key?\",\"slug\":\"is-telehealth-the-key\",\"postDate\":null,\"expiryDate\":1622728800,\"enabled\":false,\"newParentId\":null,\"fields\":{\"128\":\"University of Newcastle/University of New England\",\"124\":\"Are you a GP?\\nDo you want to help inform future practice with your experiences?\\n\\nIf you answered yes to the above, you’re the perfect candidate for our study! \\n\\nA team of 4th year  medical students from the University of Newcastle and University of New England are conducting research about Telehealth and chronic disease management (CDM), under the supervision of Dr. Anna Rose. We are looking into the impact and role of Telehealth in General Practice, and want to hear about GPs’ experiences, thoughts, and opinions of telehealth with regards to CDM. \\n\\nThe project involves a 15 minute survey to be completed by General Practitioners (GPs). There is also the option of participating in a 30 minute interview. \\n\\nClick on the link below to learn more about the project and get started. https://redcap.link/gp-telehealth-survey\\n\\nMore information about this research study is available in the Participant Information Statement available here: http://bit.ly/2NOp13O\\n\\nFeel free to share this post with other GPs who may be interested. \\n\\nThis project has been approved by the University’s Human Research Ethics Committee, Approval No. H-2020-0320.\",\"125\":\"https://redcap.link/gp-telehealth-survey\"}}',NULL,NULL,NULL,'2021-03-23 05:08:53','2021-03-23 05:08:53','937131af-f718-4bea-9f6a-0d7d5c82ae8a'),(144350,144349,1,NULL,116055,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":116055,\"title\":\"Redcliffe Medical Clinic - GP\",\"slug\":\"redcliffe-medical-clinic-gp\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"practicemanager@marendymedical.com.au\",\"100\":\"Amanda Hunt\",\"70\":\"07 3284 0788\",\"99\":\"Full-time/Part-time position available within a Privately owned clinic situated in a beautiful seaside location.\\nWe require the applicant to be Vocationally registered and prepared to provide quality care. The clinic prides itself on the Quality of care and not the Quantity.\\nThe Practice is Accredited, Computerised, Mixed Billing and has the support of an RN, Practice Manager and Admin team that are all extremely friendly and helpful providing the new Team Member with full support.\\nRemuneration is percentage based and negotiable with the Principal Doctor.\\nThe Premises has been recently expanded and refurbished. Each Doctor has their own consulting room.\\nWe have a weekly visiting Podiatrist within the clinic and numerous other Allied Health Providers close by.\\nThe clinic is situated in close proximity to the Redcliffe Hospital and within the area is also a Private Hospital and many Specialists.\\nRedcliffe is a beautiful area with a family orientated Community. Local services include Public Transport (Bus and Rail) Public and Private Schools and Local Restaurants serving Award winning cuisine.\\nSituated in close proximity to Brisbane CBD, Gold &amp; Sunshine coasts makes Redcliffe the perfect location.\\nRedcliffe Medical Clinic is Doctor owned and operated. We recognize the importance of family and supporting a family-friendly working environment and roster is important to us. Providing flexibility produces a positive working environment.\\nWe look forward to hearing from anyone wishing to improve their lifestyle.\\n\\nContact details:\\nAmanda Hunt PH 07 3284 0788\\nEmail: practicemanager@marendymedical.com.au\\n\",\"94\":\"Redcliffe Medical Clinic\",\"93\":[\"65423\"],\"97\":\"4020\",\"98\":\"qld\",\"95\":\"2/137 Sutton Street\",\"96\":\"Redcliffe\"}}',NULL,NULL,NULL,'2021-03-23 06:15:26','2021-03-23 06:15:26','2248fcf8-9a5d-4b89-b51f-ed134549ae53'),(144491,144490,1,NULL,99830,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":99830,\"title\":\"Is Influenza Gone for Good? (webinar)\",\"slug\":\"is-influenza-gone-for-good-webinar\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"https://accessiq.com.au/enrol/course/2854\",\"71\":\"info@accessiq.com.au\",\"70\":\"1300 001 228\",\"67\":\"A summary of the unique year that was 2020, the impact of COVID-19 on the 2020 influenza season &amp; expectations for 2021.\\n \\nAgenda:\\n- Why is influenza still important for my patients?\\n- The importance of seasonal vaccination\\n- Unprecedented influenza season of 2020 &amp; the risk of a potential ‘rebound’ in 2021\\n- 2021 influenza vaccine updates &amp; getting vaccinated in a COVID-19 environment\\n- Q&amp;A\\n \\nSpeaker:\\n- Dr Chris Barker, PHD in Vaccine Immunology (Medical Science Liaison, Sanofi Pasteur)\\n\\nPlease note, registration and access to the Zoom virtual meeting is required in advance of the event.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"accessIQ\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Is Influenza Gone for Good? (webinar) - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Is Influenza Gone for Good? (webinar) - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-24 03:39:50','2021-03-24 03:39:50','365e1b08-1adf-4930-b772-63ded5ef72a7'),(144496,144495,1,NULL,144494,NULL,'pending',NULL,NULL,'{\"typeId\":\"27\",\"authorId\":144494,\"title\":\"Research interviews: telehealth care delivery for hepatitis C treatment in Australia\",\"slug\":\"research-interviews-telehealth-care-delivery-for-hepatitis-c-treatment-in-australia\",\"postDate\":null,\"expiryDate\":1624975200,\"enabled\":false,\"newParentId\":null,\"fields\":{\"128\":\"La Trobe University\",\"124\":\"Researchers at La Trobe University are seeking to interview healthcare practitioners who have delivered telehealth (phone and/or video conferencing) for hepatitis C treatment during COVID-19. Participation involves an audio-recorded one-hour interview, over phone or video conference. The study will support the hepatitis C sector to optimise the use of telehealth. \\n\\nWe are also seeking to interview consumers about their experiences, and they will be reimbursed $50 for their time and contribution to the research. Please pass on these details to others if you think they might want to participate. \\n\\nContact:\\nDr Frances Shaw\\nPhone: 0431 483 918\\nEmail: f.shaw@latrobe.edu.au\\n\",\"125\":\"https://drugsgenderandsexuality.org/2021/02/04/update-telehealth-for-hepatitis-c-treatment/\"}}',NULL,NULL,NULL,'2021-03-24 04:28:22','2021-03-24 04:28:22','05c2f9de-8385-465f-96a1-34efd9e3e670'),(144968,144967,1,NULL,98178,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":98178,\"title\":\"MEDICAL RECEPTIONIST OPPORTUNITY\",\"slug\":\"medical-receptionist-opportunity-1\",\"postDate\":null,\"expiryDate\":1619272800,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"recruitment@anchormedical.com.au\",\"100\":\"Shabnam Ali\",\"70\":\"0437535501\",\"99\":\"Great opportunity for an experienced Medical Receptionist in Northside Brisbane. Part-time, Immediate Start.\\n\\nYour new company\\n\\nWe are looking for an experienced, motivated Medical Receptionist to join our team. This opportunity is working part-time approximately 3-4 days per week; working hours between 7.30-5.30pm (opening or closing). There is the potential for this to lead to a permanent part-time opportunity for the right candidate. Bring your flair and support to this leading general practice.\\n\\nYour new role\\n\\n•\\tYou will provide direct support to Doctors within the practice\\n•\\tProvide strong patient / customer service, both in person and via the telephone\\n•\\tCarry out all aspects of administration as needed\\n•\\tManage patient billings and bookings, organize and coordinate various tasks\\n•\\tMaintain office supplies and general duties\\n•\\tRespond to a variety of requests with a matter of urgency and confidentiality.\\n\\nWhat you will need to succeed\\n\\n•\\tExperience with the medical software program Best Practice (but not essential) Training can be provided\\n•\\tPrevious experience as a Medical Receptionist with a background working within general practice will be highly regarded\\n•\\tYou would have exceptional computer literacy, highly developed organizational skills and analytical skills\\n•\\tMaturity to handle a range of situations, time management and working as a team\\n•\\tMust show loyalty and a high level of confidentiality, are able to show initiative, have a meticulous and thorough nature.\\n•\\tHave outstanding verbal and written communication skills.\\n\\nWhat you will get in return\\nYou will be offered a generous hourly rate/salary and enjoy working in a dynamic and ever evolving environment. You will also have ambitious, like minded individuals supporting you along the way.\\n\",\"94\":\"Anchor Medical\",\"93\":[\"75035\"],\"97\":\"4035\",\"98\":\"qld\",\"95\":\"shop 12, 700 albany creek road\",\"96\":\"albany creek\"}}',NULL,NULL,NULL,'2021-03-25 01:19:16','2021-03-25 01:19:16','4306eda2-62a3-4c89-94a7-9b83d9b876bb'),(144971,144970,1,NULL,98178,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":98178,\"title\":\"PRACTICE NURSE OPPORTUNITY\",\"slug\":\"practice-nurse-opportunity\",\"postDate\":null,\"expiryDate\":1619704800,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"recruitment@anchormedical.com.au\",\"100\":\"Shabnam Ali\",\"70\":\"0437535501\",\"99\":\"Our Medical Centre is a well established General Practice and we are seeking a Registered Nurse for our fully accredited surgery. This is a casual position. Hours are negotiable with flexibility to cover sick and holiday leave. \\nWe provide a friendly, positive and respectful work environment whilst offering patients of all ages a variety of services to help with the management of their wellbeing.\\nThe suitable candidate will need to have a professional, mature outlook with exceptional communication and administration skills. Your role will be to provide support to patients and doctors.\\nPractice Nurse requirements are:\\n•\\tAPRHA registration\\n•\\tBest Practice software experience is beneficial\\n•\\tMust be able to multi-task and be very organized\\n•\\tComputer and admin skills essential\\n•\\tAbility to order and monitor medical supplies\\n•\\tAbility to maintain and supervise Cold Chain management\\n•\\tExperience in general practice: 1 year (Preferred)\\n•\\tTriage of Patients \\n•\\tAssisting GP’s with minor procedures and treatment\\n•\\tPreforming wound care, dressings, removal of suture\\n•\\tBasic investigations including ECG’s\\n•\\tChronic disease management, identifying patient needs and conducting health assessments, recalls and reminders\\n•\\tOccupational health \\n•\\tEar syringing\\n•\\tImmunisations and management of vaccines and cold chain management\\n•\\tDaily co-ordinate of the treatment room, stock control, sterilization, general maintenance and care of medical instruments and equipment\\n\",\"94\":\"Anchor Medical\",\"93\":[\"75039\"],\"97\":\"4503\",\"98\":\"qld\",\"95\":\"Shop 8, 118 Old Gympie road\",\"96\":\"Kallangur\"}}',NULL,NULL,NULL,'2021-03-25 01:21:48','2021-03-25 01:21:48','be909a73-71a6-4c7b-a4fb-b2abb3d9ed3d'),(144974,144973,1,NULL,114030,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":114030,\"title\":\"RN at Clayfield needed\",\"slug\":\"rn-at-clayfield-needed\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"adatamwu@hotmail.com\",\"100\":\"Dr Ada Tam\",\"70\":\"0411594199\",\"99\":\"Experienced Registered Nurse wanted to work 2-3 days a week at Inner North Brisbane Clayfield\\n\\n\\nKey Selection Criteria:\\n\\n- Current AHPRA registration, Professional Indemnity, and CPR certificate\\n\\n- Minimum 2 years RN experience in General Practice\\n\\n- Computer literacy, familiarity with word processing\\n\\n- Excellent interpersonal and communication skills\\n\\n- Ability to work as a team as well as independently\\n\\n- Commitment to ongoing professional development\\n\\n- Possession of current driver’s license\\n\\n- Willingness to learn on the job and receive feedback\\n\\n- Patient-focused approach in service provision\\n\\n- Ability to prioritise and organise, and multi-task\\n\\n- Ability to communicate in Mandarin and Cantonese Chinese\\n\\n\\n\\nMajor Responsibilities:\\n\\n- Wound Care, do ECGs, Spirometry, assist doctor in procedures, care plans, and health assessments\\n\\n- Immunisations, giving medications, setting up for iron infusions\\n\\n- Ability to triage, monitor and maintain Cold Chain, Infection Control, sterilise instruments, stock control\\n\\n- get involved in practice accreditation process\\n\\n- Patient Recalls and Reminders, Patient Advocacy\\n\\n\\n\\nPlease email CV and any available reference letters to iemploy@hotmail.com\",\"94\":\"Clayfield Medical Centre\",\"93\":[\"75039\"],\"97\":\"4011\",\"98\":\"qld\",\"95\":\"533 Sandgate Road\",\"96\":\"Clayfield\"}}',NULL,NULL,NULL,'2021-03-25 02:00:29','2021-03-25 02:00:29','9bfab332-9fd2-48b1-86a8-8b790750e4c9'),(144979,144978,1,NULL,144977,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":144977,\"title\":\"Practice Manager\",\"slug\":\"practice-manager-1\",\"postDate\":null,\"expiryDate\":1619272800,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"santo@betterlife.com.au\",\"100\":\"Santo Russo\",\"70\":\"0733535430\",\"99\":\"The Better Life Centre has provided a wide range of psychology and counselling services over the past 20 years. This centre has six consulting rooms catering for full-time, part-time, and casual clinicians. We have a full-time position of Practice Manager on offer. The position would be required to maintain and develop the already established protocols to facilitate best processes in this practice in cooperation with our current Practice Principal, Senior Receptionist and casual staff.\\n\\nEssential qualities include effective management of the overall administrative functioning of the Practice to:\\n•\\tEnsure the Practice is operating smoothly and efficiently\\n•\\tWork with the Principal with problem solving and proactive practice management\\n•\\tIdentify problems in a timely manner and provide solutions.\\n•\\tCreate and maintain open, honest communication with Principal and Clinicians keeping them informed of practice management issues\\n•\\tFacilitate timely and appropriate communication between all members of the team\\n•\\tUnderstand the Practice Policies and procedures and be able to analyse and critique these in consultation with the Practice Principal\\n•\\tImplement the policies and procedures across all areas of the Better Life Centre \\n•\\tAlign these policies and procedures with the best practice using guidelines of applicable government agencies (e.g. AHPRA; Medicare; and Primary Health Network) and professional bodies \\n•\\tDevelop efficient and effective processes and procedures, in consultation with Practice Principal and staff, to meet requirements of health authorities, staff and consultants, including the assessment and transition to cloud based IT platforms\\n•\\tPromote the services of Better Life Centre to appropriate stakeholders (e.g. Medical Centres, Paediatricians, Psychiatrists, Surgeons, School staff)\\n\",\"94\":\"Better Life Centre\",\"93\":[\"108528\"],\"97\":\"4031\",\"98\":\"qld\",\"95\":\"538 Gympie Rd\",\"96\":\"KEDRON\"}}',NULL,NULL,NULL,'2021-03-25 02:52:29','2021-03-25 02:52:29','f53bbe59-1a89-4fc4-8f4c-d6504440483d'),(145119,NULL,1,NULL,99830,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":99830,\"title\":\"Wound Management: Advanced Practice\",\"slug\":\"wound-management-advanced-practice\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Brisbane Airport Conference Centre  (2 Dryandra Rd BRISBANE AIRPORT QLD 4008)\",\"71\":\"courses@benchmarquegroup.com.au\",\"70\":\"1300855568\",\"67\":\"Wound Management: Advanced Practice aims to expand the knowledge and skills required in the assessment, management and prevention of wounds in a primary health care environment including community-based, educational, occupational and informal settings and in general practice. The program includes an and a half-day face-to face workshop, workplace observed practice, and an online assessment completed via accessIQ. On successful completion students will receive a nationally accredited statement of attainment for the unit HLTENN006 (Apply nursing practice in the primary health care setting).\\n \\nCost: $390 (inc. GST) \\n \\nBEFORE BOOKING A WORKSHOP: Please note, students need to complete Wound Management: Foundations and Principles program ($95 price included in total cost above) before being able to book this workshop.\\n \\nUpon successful completion of the Wound Management learning pathway, students should have the skills and knowledge to enable them to: \\n· Accurately identify wound types\\n· Apply appropriate wound assessment methods to clinical practice\\n· Identify chronic wound features and associated clinical features including interpretation of wound terminology\\n· Identify and perform appropriate wound cleansing and debridement methods\\n· Obtain a compliant wound swab culture using best practice methods\\n· Make informed appropriate choices of wound dressings based on accurate wound assessment\\n· Use appropriate documentation and report writing methods to provide patient education, and consistent and ongoing care.\\n \\nFor further information, please visit the Wound Management pathway page, or contact us: 1300 855 568 | courses@benchmarquegroup.com.au\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"The Benchmarque Group\",\"72\":\"within\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Wound Management: Advanced Practice - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Wound Management: Advanced Practice - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-26 01:00:14','2021-03-26 01:00:14','c027aae6-9390-4684-887b-253156751a21'),(145122,145121,1,NULL,99830,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":99830,\"title\":\"Wound Management: Advanced Practice\",\"slug\":\"wound-management-advanced-practice-1\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Brisbane Airport Conference Centre  (2 Dryandra Rd BRISBANE AIRPORT QLD 4008)\",\"71\":\"courses@benchmarquegroup.com.au\",\"70\":\"1300855568\",\"67\":\"Wound Management: Advanced Practice aims to expand the knowledge and skills required in the assessment, management and prevention of wounds in a primary health care environment including community-based, educational, occupational and informal settings and in general practice. The program includes an and a half-day face-to face workshop, workplace observed practice, and an online assessment completed via accessIQ. On successful completion students will receive a nationally accredited statement of attainment for the unit HLTENN006 (Apply nursing practice in the primary health care setting).\\n \\nCost: $390 (inc. GST) \\n \\nBEFORE BOOKING A WORKSHOP: Please note, students need to complete Wound Management: Foundations and Principles program ($95 price included in total cost above) before being able to book this workshop.\\n \\nUpon successful completion of the Wound Management learning pathway, students should have the skills and knowledge to enable them to: \\n· Accurately identify wound types\\n· Apply appropriate wound assessment methods to clinical practice\\n· Identify chronic wound features and associated clinical features including interpretation of wound terminology\\n· Identify and perform appropriate wound cleansing and debridement methods\\n· Obtain a compliant wound swab culture using best practice methods\\n· Make informed appropriate choices of wound dressings based on accurate wound assessment\\n· Use appropriate documentation and report writing methods to provide patient education, and consistent and ongoing care.\\n \\nFor further information, please visit the Wound Management pathway page, or contact us: 1300 855 568 | courses@benchmarquegroup.com.au\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"The Benchmarque Group\",\"72\":\"within\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Wound Management: Advanced Practice - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Wound Management: Advanced Practice - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-26 01:00:16','2021-03-26 01:00:16','6d7d21af-09d1-424d-a470-07a43bf63e30'),(145125,145124,1,NULL,99830,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":99830,\"title\":\"Fracture Management and Casting\",\"slug\":\"fracture-management-and-casting\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Brisbane Airport Conference Centre  (2 Dryandra Rd BRISBANE AIRPORT QLD 4008)\",\"71\":\"courses@benchmarquegroup.com.au\",\"70\":\"1300855568\",\"67\":\"Fracture Management and Casting aims to provide students with the skills and knowledge required to assist people with an orthopaedic condition to regain optimal functional and lifestyle. The program includes a one day face-to-face workshop, in-class activities assessed by a qualified assessor and online assessment completed via accessIQ. \\n \\nCost: $375 (inc. GST)\\n \\nThe face-to-face workshop involves lecture and practical workshop activities, including: \\n•\\tanatomy and physiology of the musculoskeletal system\\n•\\tfracture classification and categories\\n•\\tfracture and healing phases \\n•\\temergency fracture management\\n•\\tcomplications associated with orthopaedic trauma\\n•\\tsplinting, casting and immobilisation products and equipment \\n•\\timmobilsation casting and splinting techniques\\n•\\tprinciples of cast valving\\n•\\tpost-cast application management\\n•\\tprinciples of cast removal. \\n \\nFor further information, please visit the www.benchmarquegroup.com.au, or contact us: 1300 855 568 | courses@benchmarquegroup.com.au \\n\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"The Benchmarque Group\",\"72\":\"within\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Fracture Management and Casting - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Fracture Management and Casting - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-26 01:05:26','2021-03-26 01:05:26','1a07e2d9-c7ed-46bb-8313-ec8d360fd516'),(145512,145511,1,NULL,97391,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":97391,\"title\":\"Quality improvement focus:  Cardiovascular disease in primary care\",\"slug\":\"quality-improvement-focus-cardiovascular-disease-in-primary-care\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"https://zoom.us/webinar/register/WN_dyqOZdhlR_628u2sDpvj7w\",\"71\":\"amie.horwood@brisbanenorthphn.org.au\",\"70\":\"07 3630 7300\",\"67\":\"As part of Brisbane North PHN\'s Enhanced Quality in Practice (EQiP) program, this quality improvement webinar provides practice managers, reception staff and practice nurses with useful tips and tricks to implement activities in general practice surrounding Cardiovascular Disease (CVD). Key speakers include: Dr Anita Sharma (GP), Andrea Love (My Health for Life program) and Michael Clark (Brisbane North PHN Health Data Project Officer).\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Brisbane North PHN\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Quality improvement focus:  Cardiovascular disease in primary care - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Quality improvement focus:  Cardiovascular disease in primary care - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-26 02:33:29','2021-03-26 02:33:29','bf5bed1f-d3f2-469c-8e1a-377202c94236'),(146946,NULL,1,NULL,138432,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":138432,\"title\":\"Medical Receptionists 1 part-time and 1 casual position\",\"slug\":\"medical-receptionists-1-part-time-and-1-casual-position\",\"postDate\":null,\"expiryDate\":1619618400,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"fortitudevalley@myhealth.net.au\",\"100\":\"fortitudevalley@myhealth.net.au\",\"70\":\"38522030\",\"99\":\"We are currently looking for 2 friendly, professional and organised PART TIME &amp; CASUAL Medical Receptionist to join our team based at FORTITUDE VALLEY &amp; be able to cover other city MYHEALTH locations. This is an excellent opportunity to work for a reputable, multicentre organisation alongside friendly staff and patients. We are an action-orientated company characterised by commitment and achievement.\\nExcellent communication and a strong customer service ethos\\nWillingness to learn and work as a team.\\nExperience in Best Practice medical software will be highly regarded.\\nPrevious experience in a customer service role\\nStrong organisational skills and ability to multitask.\\nAbility to motivate other team members and maintain a positive working environment\\nStrong written and verbal communication skills.\\nCurrent Drivers Licence and ability to travel to other Brisbane locations\\nEnthusiastic, positive attitude and willingness to get the job done a fast paced &amp; challenging environment.\\nAbility to follow instructions and meet set standards.\\nDependable and reliable in character and possess a strong work ethic.\",\"94\":\"Myhealth\",\"93\":[\"75035\"],\"97\":\"4006\",\"98\":\"qld\",\"95\":\"Shop T20 Valley Metro, 230 Brunswick Street\",\"96\":\"Fortitude Valley\"}}',NULL,NULL,NULL,'2021-03-29 03:06:56','2021-03-29 03:06:56','c90dade9-d25b-42fc-92ad-70a2f6fb83d1'),(146949,NULL,1,NULL,138432,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":138432,\"title\":\"Medical Receptionists 1 part-time and 1 casual position\",\"slug\":\"medical-receptionists-1-part-time-and-1-casual-position-2\",\"postDate\":null,\"expiryDate\":1619618400,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"fortitudevalley@myhealth.net.au\",\"100\":\"fortitudevalley@myhealth.net.au\",\"70\":\"38522030\",\"99\":\"We are currently looking for 2 friendly, professional and organised PART TIME &amp; CASUAL Medical Receptionist to join our team based at FORTITUDE VALLEY &amp; be able to cover other city MYHEALTH locations. This is an excellent opportunity to work for a reputable, multicentre organisation alongside friendly staff and patients. We are an action-orientated company characterised by commitment and achievement.\\nExcellent communication and a strong customer service ethos\\nWillingness to learn and work as a team.\\nExperience in Best Practice medical software will be highly regarded.\\nPrevious experience in a customer service role\\nStrong organisational skills and ability to multitask.\\nAbility to motivate other team members and maintain a positive working environment\\nStrong written and verbal communication skills.\\nCurrent Drivers Licence and ability to travel to other Brisbane locations\\nEnthusiastic, positive attitude and willingness to get the job done a fast paced &amp; challenging environment.\\nAbility to follow instructions and meet set standards.\\nDependable and reliable in character and possess a strong work ethic.\",\"94\":\"Myhealth\",\"93\":[\"75035\"],\"97\":\"4006\",\"98\":\"qld\",\"95\":\"Shop T20 Valley Metro, 230 Brunswick Street\",\"96\":\"Fortitude Valley\"}}',NULL,NULL,NULL,'2021-03-29 03:06:58','2021-03-29 03:06:58','e786ba94-c6e9-495a-b323-6d636596da3c'),(146952,NULL,1,NULL,138432,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":138432,\"title\":\"Medical Receptionists 1 part-time and 1 casual position\",\"slug\":\"medical-receptionists-1-part-time-and-1-casual-position-3\",\"postDate\":null,\"expiryDate\":1619618400,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"fortitudevalley@myhealth.net.au\",\"100\":\"fortitudevalley@myhealth.net.au\",\"70\":\"38522030\",\"99\":\"We are currently looking for 2 friendly, professional and organised PART TIME &amp; CASUAL Medical Receptionist to join our team based at FORTITUDE VALLEY &amp; be able to cover other city MYHEALTH locations. This is an excellent opportunity to work for a reputable, multicentre organisation alongside friendly staff and patients. We are an action-orientated company characterised by commitment and achievement.\\nExcellent communication and a strong customer service ethos\\nWillingness to learn and work as a team.\\nExperience in Best Practice medical software will be highly regarded.\\nPrevious experience in a customer service role\\nStrong organisational skills and ability to multitask.\\nAbility to motivate other team members and maintain a positive working environment\\nStrong written and verbal communication skills.\\nCurrent Drivers Licence and ability to travel to other Brisbane locations\\nEnthusiastic, positive attitude and willingness to get the job done a fast paced &amp; challenging environment.\\nAbility to follow instructions and meet set standards.\\nDependable and reliable in character and possess a strong work ethic.\",\"94\":\"Myhealth\",\"93\":[\"75035\"],\"97\":\"4006\",\"98\":\"qld\",\"95\":\"Shop T20 Valley Metro, 230 Brunswick Street\",\"96\":\"Fortitude Valley\"}}',NULL,NULL,NULL,'2021-03-29 03:06:59','2021-03-29 03:06:59','9a591fab-077e-43a8-bf42-4114c3148ab8'),(146955,146954,1,NULL,138432,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":138432,\"title\":\"Medical Receptionists 1 part-time and 1 casual position\",\"slug\":\"medical-receptionists-1-part-time-and-1-casual-position-4\",\"postDate\":null,\"expiryDate\":1619618400,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"fortitudevalley@myhealth.net.au\",\"100\":\"fortitudevalley@myhealth.net.au\",\"70\":\"38522030\",\"99\":\"We are currently looking for 2 friendly, professional and organised PART TIME &amp; CASUAL Medical Receptionist to join our team based at FORTITUDE VALLEY &amp; be able to cover other city MYHEALTH locations. This is an excellent opportunity to work for a reputable, multicentre organisation alongside friendly staff and patients. We are an action-orientated company characterised by commitment and achievement.\\nExcellent communication and a strong customer service ethos\\nWillingness to learn and work as a team.\\nExperience in Best Practice medical software will be highly regarded.\\nPrevious experience in a customer service role\\nStrong organisational skills and ability to multitask.\\nAbility to motivate other team members and maintain a positive working environment\\nStrong written and verbal communication skills.\\nCurrent Drivers Licence and ability to travel to other Brisbane locations\\nEnthusiastic, positive attitude and willingness to get the job done a fast paced &amp; challenging environment.\\nAbility to follow instructions and meet set standards.\\nDependable and reliable in character and possess a strong work ethic.\",\"94\":\"Myhealth\",\"93\":[\"75035\"],\"97\":\"4006\",\"98\":\"qld\",\"95\":\"Shop T20 Valley Metro, 230 Brunswick Street\",\"96\":\"Fortitude Valley\"}}',NULL,NULL,NULL,'2021-03-29 03:07:00','2021-03-29 03:07:00','3124569c-c123-4f9a-87a7-5807201eb0d7'),(146958,NULL,1,NULL,138432,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":138432,\"title\":\"Medical Receptionists 1 part-time and 1 casual position\",\"slug\":\"medical-receptionists-1-part-time-and-1-casual-position-5\",\"postDate\":null,\"expiryDate\":1619618400,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"fortitudevalley@myhealth.net.au\",\"100\":\"fortitudevalley@myhealth.net.au\",\"70\":\"38522030\",\"99\":\"We are currently looking for 2 friendly, professional and organised PART TIME &amp; CASUAL Medical Receptionist to join our team based at FORTITUDE VALLEY &amp; be able to cover other city MYHEALTH locations. This is an excellent opportunity to work for a reputable, multicentre organisation alongside friendly staff and patients. We are an action-orientated company characterised by commitment and achievement.\\nExcellent communication and a strong customer service ethos\\nWillingness to learn and work as a team.\\nExperience in Best Practice medical software will be highly regarded.\\nPrevious experience in a customer service role\\nStrong organisational skills and ability to multitask.\\nAbility to motivate other team members and maintain a positive working environment\\nStrong written and verbal communication skills.\\nCurrent Drivers Licence and ability to travel to other Brisbane locations\\nEnthusiastic, positive attitude and willingness to get the job done a fast paced &amp; challenging environment.\\nAbility to follow instructions and meet set standards.\\nDependable and reliable in character and possess a strong work ethic.\",\"94\":\"Myhealth\",\"93\":[\"75035\"],\"97\":\"4006\",\"98\":\"qld\",\"95\":\"Shop T20 Valley Metro, 230 Brunswick Street\",\"96\":\"Fortitude Valley\"}}',NULL,NULL,NULL,'2021-03-29 03:07:01','2021-03-29 03:07:01','3c293298-ebd6-43d1-b753-926b2424f7b0'),(146961,NULL,1,NULL,138432,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":138432,\"title\":\"Medical Receptionists 1 part-time and 1 casual position\",\"slug\":\"medical-receptionists-1-part-time-and-1-casual-position-6\",\"postDate\":null,\"expiryDate\":1619618400,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"fortitudevalley@myhealth.net.au\",\"100\":\"fortitudevalley@myhealth.net.au\",\"70\":\"38522030\",\"99\":\"We are currently looking for 2 friendly, professional and organised PART TIME &amp; CASUAL Medical Receptionist to join our team based at FORTITUDE VALLEY &amp; be able to cover other city MYHEALTH locations. This is an excellent opportunity to work for a reputable, multicentre organisation alongside friendly staff and patients. We are an action-orientated company characterised by commitment and achievement.\\nExcellent communication and a strong customer service ethos\\nWillingness to learn and work as a team.\\nExperience in Best Practice medical software will be highly regarded.\\nPrevious experience in a customer service role\\nStrong organisational skills and ability to multitask.\\nAbility to motivate other team members and maintain a positive working environment\\nStrong written and verbal communication skills.\\nCurrent Drivers Licence and ability to travel to other Brisbane locations\\nEnthusiastic, positive attitude and willingness to get the job done a fast paced &amp; challenging environment.\\nAbility to follow instructions and meet set standards.\\nDependable and reliable in character and possess a strong work ethic.\",\"94\":\"Myhealth\",\"93\":[\"75035\"],\"97\":\"4006\",\"98\":\"qld\",\"95\":\"Shop T20 Valley Metro, 230 Brunswick Street\",\"96\":\"Fortitude Valley\"}}',NULL,NULL,NULL,'2021-03-29 03:07:02','2021-03-29 03:07:02','7fb3c9bf-eac3-443f-8992-2418431f03a2'),(146964,146963,1,NULL,100097,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":100097,\"title\":\"General Practice Nurse for Busy Clinic\",\"slug\":\"general-practice-nurse-for-busy-clinic\",\"postDate\":null,\"expiryDate\":1618754400,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"bribiedoctors@gmail.com\",\"100\":\"Rebecca Langfeldt\",\"70\":\"0734083320\",\"99\":\"Nurse Position Available: RN/EN\\nDue to the expansion of our group and opening of our 3rd clinic, Bribie Doctors is seeking a qualified practice nurse to work across our 3 locations at Bongaree, Banksia Beach and Woorim. General Practice experience is preferred but all applicants are encouraged to apply. Please forward your resume to bribiedoctors@gmail.com\",\"94\":\"Bribie Doctors\",\"93\":[\"75039\"],\"97\":\"4507\",\"98\":\"qld\",\"95\":\"25 Second Avenue\",\"96\":\"Bongaree\"}}',NULL,NULL,NULL,'2021-03-29 04:42:25','2021-03-29 04:42:25','d191daf3-5234-43cc-829f-514a8467101b'),(147026,147025,1,NULL,147018,NULL,'pending',NULL,NULL,'{\"typeId\":\"27\",\"authorId\":147018,\"title\":\"Assist in shaping the Commonwealth Digital Health Blueprint\",\"slug\":\"assist-in-shaping-the-commonwealth-digital-health-blueprint\",\"postDate\":null,\"expiryDate\":1617544800,\"enabled\":false,\"newParentId\":null,\"fields\":{\"128\":\"Department of Health\",\"124\":\"Now more than ever, there is a need for the Commonwealth to play a stronger role in setting digital health policy that delivers better health outcomes and experiences for consumers, while empowering health providers and creating efficiencies in their delivery of services.\\nWe need your help to guide and inform the prioritisation of a digital health blueprint and investment through the completion of a survey. Your views are important as they bring valuable insights and ideas from ‘frontline experience’ on how to create a more an efficient and usable digital health system.\\n\\nTo access the survey and more information, please click on the following link: http://go.srnet.com.au/CDHB19 \",\"125\":\"http://go.srnet.com.au/CDHB19\"}}',NULL,NULL,NULL,'2021-03-29 08:07:34','2021-03-29 08:07:34','30caaaa4-d24c-4e55-9eba-342bcae26340'),(147029,147028,1,NULL,126172,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":126172,\"title\":\"GP and Skin Cancer Clinic - Registered Nurse Vacancy\",\"slug\":\"gp-and-skin-cancer-clinic-registered-nurse-vacancy\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"manager@bemedicalcentre.com.au\",\"100\":\"Dr.Raj Selvarajan\",\"70\":\"+61731864345\",\"99\":\"The Burpengary East Medical Centre &amp; Skin Cancer Clinic is seeking an experienced Practice Nurse to join our friendly team. \\nA minimum of 6 months’ experience using Best Practice software and excellent multitasking and time management skills are essential for this position.\\nAbility and experience in the following areas are necessary for this role:\\n•\\tAssisting doctors in procedures\\n•\\tCold Chain Management and Immunisation of patients. \\n•\\tCompleting Care Plans and Health Assessments\\n•\\tECGs and spirometry\\n•\\tRecalls\\n•\\tSterilising and maintaining medical equipment and clinical areas\\n•\\tStock take and ordering supplies for Treatment and Procedure rooms\\nOur mixed billing Practice operates Monday to Friday and some weekends. We are offering approximately 15 - 20 hours per week on a Casual basis.\\n\\nIf this position is right for you, please email your resume to manager@bemedicalcentre.com.au .\\n\",\"94\":\"Burpengary East Medical Centre and Skin Cancer Clinic\",\"93\":[\"75039\"],\"97\":\"4505\",\"98\":\"qld\",\"95\":\"Shop 5, 115 - 117, Buckley road\",\"96\":\"Burpengary East\"}}',NULL,NULL,NULL,'2021-03-29 10:11:02','2021-03-29 10:11:02','242e87fd-263c-4d0b-8546-d06fcc9a2444'),(147105,147104,1,NULL,97391,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":97391,\"title\":\"Using the Clinician Vaccine Integrated Platform\",\"slug\":\"using-the-clinician-vaccine-integrated-platform\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"https://register.gotowebinar.com/register/2303144121829690638?source=Bulletin\",\"71\":\"briana.meawad@digitalhealth.gov.au\",\"70\":\"02 8298 2607\",\"67\":\"This session will equip staff (both administrative staff and vaccine providers) from COVID vaccination clinics with a sound knowledge of how to use the Clinician Vaccine Integrated Platform (CVIP).\\nCVIP is used to manage vaccinations and report vaccination information to the Australian Immunisation Register (AIR). It can be used by recognised vaccination providers who do not already have clinical software that reports to the AIR.\\nThe webinar will cover: \\n• The COVID-19 vaccine rollout and new legislation\\n• The Clinician Vaccine Integrated Platform (CVIP)\\n• Getting started and prerequisites\\n• Provider end-to-end workflow\\n• Adding and managing vaccines\\n• Further resources\\n\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australian Digital Health Agency\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Using the Clinician Vaccine Integrated Platform - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Using the Clinician Vaccine Integrated Platform - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-31 05:08:06','2021-03-31 05:08:06','a1d27db3-898e-4b44-a03e-d0f2e007aa9e'),(147108,147107,1,NULL,97391,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":97391,\"title\":\"Telehealth for rural specialists and their patients - RDAA\",\"slug\":\"telehealth-for-rural-specialists-and-their-patients-rdaa\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"https://us02web.zoom.us/webinar/register/WN_EqY2XQh_Syi4LGT0Q3lTQA\",\"71\":\"briana.meawad@digitalhealth.gov.au\",\"70\":\"02 8298 2607\",\"67\":\"What are the best models of care for rural patients by Consultant Specialists, and how to get the most out of the telehealth consultation.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australian Digital Health Agency\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Telehealth for rural specialists and their patients - RDAA - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Telehealth for rural specialists and their patients - RDAA - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-31 05:10:25','2021-03-31 05:10:25','8bc5251b-0d67-4bdd-8cb8-281bc078a0e9'),(147111,147110,1,NULL,97391,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":97391,\"title\":\"Using the Clinical Vaccine Integrated Platform\",\"slug\":\"using-the-clinical-vaccine-integrated-platform\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"https://register.gotowebinar.com/register/2658827337322273550?source=Bulletin\",\"71\":\"briana.meawad@digitalhealth.gov.au\",\"70\":\"02 8298 2607\",\"67\":\"This session will equip staff (both administrative staff and vaccine providers) from COVID vaccination clinics with a sound knowledge of how to use the Clinician Vaccine Integrated Platform (CVIP).\\nCVIP is used to manage vaccinations and report vaccination information to the Australian Immunisation Register (AIR). It can be used by recognised vaccination providers who do not already have clinical software that reports to the AIR.\\nThe webinar will cover: \\n• The COVID-19 vaccine rollout and new legislation\\n• The Clinician Vaccine Integrated Platform (CVIP)\\n• Getting started and prerequisites\\n• Provider end-to-end workflow\\n• Adding and managing vaccines\\n• Further resources\\n\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australian Digital Health Agency\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Using the Clinical Vaccine Integrated Platform - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Using the Clinical Vaccine Integrated Platform - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-31 05:11:59','2021-03-31 05:11:59','201d3e32-3415-49a5-97e5-4911b702be6c'),(147114,147113,1,NULL,97391,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":97391,\"title\":\"My Health Record - a practical demonstration (Best Practice) (Various dates available)\",\"slug\":\"my-health-record-a-practical-demonstration-best-practice-various-dates-available\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"https://register.gotowebinar.com/rt/3857636958320592911?source=Bulletin\",\"71\":\"briana.meawad@digitalhealth.gov.au\",\"70\":\"02 8298 2607\",\"67\":\"These one hour sessions are aimed at GPs, Specialists, Practice Managers, Practice Nurses and Aboriginal Health Workers interested in learning more about My Health Record and how to use it most effectively in routine practice. Using a software simulation platform the instructor will demonstrate how to:\\n\\n•\\taccess your patients’ My Health Records in your software;\\n•\\tuse filters to find documents;\\n•\\tview documents and overviews;\\n•\\tUnderstand how to view immunisation history in My Health Record\\n•\\tenter access codes for patients with protected documents/records;\\n•\\tupload documents to My Health Record; and\\n•\\tensure appropriate security and access governance mechanisms are in place.\\n\\nRun via GoTo webinar platform, these sessions will afford an opportunity for participants to raise questions directly with the instructor and to discuss other issues encountered in using My Health Record. These demonstrations will be run on a weekly basis at varying times throughout the day.\\n\\nIf you can not find a session time that suits you, we may be able to provide an out of schedule session to accommodate you and your staff. For more information on this or for follow up My Health Record support for your practice please contact education@digitalhealth.gov.au.\\nThis education is CPD accredited by AAPM, RACGP and ACRRM.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australian Digital Health Agency\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"My Health Record - a practical demonstration (Best Practice) (Various dates available) - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"My Health Record - a practical demonstration (Best Practice) (Various dates available) - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-31 05:15:22','2021-03-31 05:15:22','0b5c9965-534e-4599-969e-ddb609d493f3'),(147117,147116,1,NULL,113805,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":113805,\"title\":\"Corrections Webinar: Progress towards micro elimination of HCV with PoCT at Brisbane Women’s CC.\",\"slug\":\"corrections-webinar-progress-towards-micro-elimination-of-hcv-with-poct-at-brisbane-womens-cc\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"https://www.ashm.org.au/eventinforeg2/?id=3b475a68-6488-eb11-a812-002248153258\",\"71\":\"alex.frost@ashm.org.au\",\"70\":\"0478 020 355\",\"67\":\"Course Summary:\\nAn overview of the recent endeavour at Brisbane Women’s Correctional Centre towards micro elimination of hepatitis C with Point of Care Testing.\\nSynopsis:\\nThis webinar will provide an overview of the Point of Care Testing (PoCT) project at Brisbane Women’s CC, including resolutions to barriers encountered. Overall, highlighting the initial planning and consultation, implementation, results and outcomes, and future direction of PoCT for Queensland custodial settings. This webinar complements the 2021 Queensland Prison Forum. \\nEvent Description:\\nPlease join the following presenters and project team:\\n• Chris Wallis - Nurse Practitioner at Prison Health Services, West Moreton Hospital and Health Service\\n• Mary Fenech- Nurse Practitioner at Queensland Injectors Health Network (QuIHN)\\n• Mim O\'Flynn – Outreach FibroScan Nurse at Hepatitis Queensland, Kombi Clinic &amp; Queensland Injectors Health Network (QuIHN)\\n• Raquel How - Nurse Practitioner at Prison Health Services, West Moreton Health\\n\\n\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"ASHM\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Corrections Webinar: Progress towards micro elimination of HCV with PoCT at Brisbane Women’s CC. - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Corrections Webinar: Progress towards micro elimination of HCV with PoCT at Brisbane Women’s CC. - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-31 05:15:34','2021-03-31 05:15:34','4e41e2f9-0fac-479c-80cf-d091d3ac4bcc'),(147120,147119,1,NULL,97391,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":97391,\"title\":\"My Health Record a Practical Demonstration - Medical Director (MD)  (Various dates available)\",\"slug\":\"my-health-record-a-practical-demonstration-medical-director-md-various-dates-available\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"https://register.gotowebinar.com/rt/6809952122708877838?source=Bulletin\",\"71\":\"briana.meawad@digitalhealth.gov.au\",\"70\":\"02 8298 2607\",\"67\":\"These one hour sessions are aimed at GPs, Specialists, Practice Managers, Practice Nurses and Aboriginal Health Care workers interested in learning more about My Health Record and how to use it most effectively in routine practice. Using a software simulation platform the instructor will demonstrate how to:\\n•\\taccess your patients’ My Health Records in your software;\\n•\\tuse filters to find documents;\\n•\\tview documents and overviews;\\n•\\tUnderstand how to view immunisation history in My Health Record;\\n•\\tenter access codes for patients with protected documents/records;\\n•\\tupload documents to My Health Record; and\\n•\\tensure appropriate security and access governance mechanisms are in place.\\n\\nRun via GoTo webinar platform, these sessions will afford an opportunity for participants to raise questions directly with the instructor and to discuss other issues encountered in using My Health Record. These demonstrations will be run on a weekly basis at varying times throughout the day.\\n\\nIf you can not find a session time that suits you, we may be able to provide an out of schedule session to accommodate you and your staff. For more information on this or for follow up My Health Record support for your practice please contact education@digitalhealth.gov.au.\\nThis education is CPD accredited by AAPM, RACGP and ACRRM.\\n\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australian Digital Health Agency\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"My Health Record a Practical Demonstration - Medical Director (MD)  (Various dates available) - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"My Health Record a Practical Demonstration - Medical Director (MD)  (Various dates available) - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-31 05:17:26','2021-03-31 05:17:26','56b95089-7e43-4033-b054-1d95e4a52911'),(147123,147122,1,NULL,97391,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":97391,\"title\":\"My Health Record - a practical demonstration (Genie) (Various dates available)\",\"slug\":\"my-health-record-a-practical-demonstration-genie-various-dates-available\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"https://register.gotowebinar.com/rt/8457278926377506063?source=Bulletin\",\"71\":\"briana.meawad@digitalhealth.gov.au\",\"70\":\"02 8298 2607\",\"67\":\"These one hour sessions are aimed at GPs, Specialists, Practice Managers, Practice Nurses and Aboriginal Health Workers interested in learning more about My Health Record and how to use it most effectively in routine practice. Using a software simulation platform the instructor will demonstrate how to:\\n\\n•\\taccess your patients’ My Health Records in your software;\\n•\\tuse filters to find documents;\\n•\\tview documents and overviews;\\n•\\tUnderstand how to view immunisation history in My Health Record;\\n•\\tenter access codes for patients with protected documents/records;\\n•\\tupload documents to My Health Record; and\\n•\\tensure appropriate security and access governance mechanisms are in place.\\n\\nRun via GoTo webinar platform, these sessions will afford an opportunity for participants to raise questions directly with the instructor and to discuss other issues encountered in using My Health Record. These demonstrations will be run on a weekly basis at varying times throughout the day.\\n\\nIf you can not find a session time that suits you, we may be able to provide an out of schedule session to accommodate you and your staff. For more information on this or for follow up My Health Record support for your practice please contact education@digitalhealth.gov.au.\\nThis education is CPD accredited by AAPM, RACGP and ACRRM.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australian Digital Health Agency\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"My Health Record - a practical demonstration (Genie) (Various dates available) - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"My Health Record - a practical demonstration (Genie) (Various dates available) - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-31 05:19:10','2021-03-31 05:19:10','f08603e6-4620-4018-81a4-eb63540bb781'),(147126,147125,1,NULL,97391,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":97391,\"title\":\"My Health Record - a practical demonstration (Zedmed) (Various dates available)\",\"slug\":\"my-health-record-a-practical-demonstration-zedmed-various-dates-available\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"https://register.gotowebinar.com/rt/156372955971182863?source=Bulletin\",\"71\":\"briana.meawad@digitalhealth.gov.au\",\"70\":\"02 8298 2607\",\"67\":\"These one hour sessions are aimed at GPs, Specialists, Practice Managers, Practice Nurses and Aboriginal Health Workers interested in learning more about My Health Record and how to use it most effectively in routine practice. Using a software simulation platform the instructor will demonstrate how to:\\n\\n•\\taccess your patients’ My Health Records in your software;\\n•\\tuse filters to find documents;\\n•\\tview documents and overviews;\\n•\\tUnderstand how to view immunisation history in My Health Record;\\n•\\tenter access codes for patients with protected documents/records;\\n•\\tupload documents to My Health Record; and\\n•\\tensure appropriate security and access governance mechanisms are in place.\\n\\nRun via GoTo webinar platform, these sessions will afford an opportunity for participants to raise questions directly with the instructor and to discuss other issues encountered in using My Health Record. These demonstrations will be run on a weekly basis at varying times throughout the day.\\n\\nIf you can not find a session time that suits you, we may be able to provide an out of schedule session to accommodate you and your staff. For more information on this or for follow up My Health Record support for your practice please contact education@digitalhealth.gov.au.\\nThis education is CPD accredited by AAPM, RACGP and ACRRM.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australian Digital Health Agency\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"My Health Record - a practical demonstration (Zedmed) (Various dates available) - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"My Health Record - a practical demonstration (Zedmed) (Various dates available) - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-31 05:20:49','2021-03-31 05:20:49','af3da1a9-db36-4b99-9925-02e4c2f64dd9'),(147129,147128,1,NULL,97391,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":97391,\"title\":\"My Health Record - a practical demonstration (Communicare) (Various dates available)\",\"slug\":\"my-health-record-a-practical-demonstration-communicare-various-dates-available\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"https://register.gotowebinar.com/rt/6671839170209579792?source=Bulletin\",\"71\":\"briana.meawad@digitalhealth.gov.au\",\"70\":\"02 8298 2607\",\"67\":\"These one hour sessions are aimed at GPs, Specialists, Practice Managers, Practice Nurses and Aboriginal Health Workers interested in learning more about My Health Record and how to use it most effectively in routine practice. Using a software simulation platform the instructor will demonstrate how to:\\n\\n•\\taccess your patients’ My Health Records in your software;\\n•\\tuse filters to find documents;\\n•\\tview documents and overviews;\\n•\\tUnderstand how to view immunisation history in My Health Record;\\n•\\tenter access codes for patients with protected documents/records;\\n•\\tupload documents to My Health Record; and\\n•\\tensure appropriate security and access governance mechanisms are in place.\\n\\nRun via GoTo webinar platform, these sessions will afford an opportunity for participants to raise questions directly with the instructor and to discuss other issues encountered in using My Health Record. These demonstrations will be run on a weekly basis at varying times throughout the day.\\n\\nIf you can not find a session time that suits you, we may be able to provide an out of schedule session to accommodate you and your staff. For more information on this or for follow up My Health Record support for your practice please contact education@digitalhealth.gov.au.\\nThis education is CPD accredited by AAPM, RACGP and ACRRM.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australian Digital Health Agency\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"My Health Record - a practical demonstration (Communicare) (Various dates available) - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"My Health Record - a practical demonstration (Communicare) (Various dates available) - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-31 05:22:26','2021-03-31 05:22:26','57c1f30c-6860-492a-b869-d43d309834d8'),(147132,147131,1,NULL,97391,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":97391,\"title\":\"My Health Record a Practical Demonstration - National Provider Portal (NPP) (Various dates available)\",\"slug\":\"my-health-record-a-practical-demonstration-national-provider-portal-npp-various-dates-available\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"https://register.gotowebinar.com/rt/997648884662246413?source=Bulletin\",\"71\":\"briana.meawad@digitalhealth.gov.au\",\"70\":\"02 8298 2607\",\"67\":\"These sessions are aimed at clinicians and support staff such as allied health providers, specialists, community health nurses, Aboriginal Health Care workers and consultant pharmacists who do not currently have access to conformant clinical software. Sessions will demonstrate how to:\\n•\\tlog onto the Provider Portal via PRODA\\n•\\tuse filters to find documents;\\n•\\tview documents and overviews;\\n•\\tUnderstand how to view immunisation history in My Health Record;\\n•\\tenter access codes for patients with protected documents/records;\\n•\\tdownload documents to local systems; and\\n•\\tensure appropriate security and access governance mechanisms are in place\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australian Digital Health Agency\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"My Health Record a Practical Demonstration - National Provider Portal (NPP) (Various dates available) - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"My Health Record a Practical Demonstration - National Provider Portal (NPP) (Various dates available) - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-31 05:24:03','2021-03-31 05:24:03','ab52fec5-9a0d-44ae-babf-fbd53777ae6d'),(147135,147134,1,NULL,97391,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":97391,\"title\":\"My Health Record a Practical Demonstration - Accessing Immunisation Information (Various dates available)\",\"slug\":\"my-health-record-a-practical-demonstration-accessing-immunisation-information-various-dates-available\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"https://register.gotowebinar.com/rt/3436850561444501005?source=Bulletin\",\"71\":\"briana.meawad@digitalhealth.gov.au\",\"70\":\"02 8298 2607\",\"67\":\"These half hour targeted sessions are aimed at Specialists, GPs, Practice Managers, Practice Nurses and Aboriginal Health Workers. The sessions will assist participants to understand how to use My Health Record to support the COVID-19 vaccination roll-out and beyond, understand where to find existing immunisation information, how to access the new enhanced immunisation views, alerts and notifications that are now available for healthcare providers and consumers.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australian Digital Health Agency\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"My Health Record a Practical Demonstration - Accessing Immunisation Information (Various dates available) - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"My Health Record a Practical Demonstration - Accessing Immunisation Information (Various dates available) - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-31 05:25:57','2021-03-31 05:25:57','e6e87c33-2679-4953-93f0-75aa7288828e'),(147138,147137,1,NULL,97391,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":97391,\"title\":\"Understanding compliance requirements for accessing My Health Record - practical tips for Practice Managers (Various dates available)\",\"slug\":\"understanding-compliance-requirements-for-accessing-my-health-record-practical-tips-for-practice-managers-various-dates-available\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"https://register.gotowebinar.com/rt/5633297659491090959?source=bulletin\",\"71\":\"briana.meawad@digitalhealth.gov.au\",\"70\":\"02 8298 2607\",\"67\":\"These one-hour sessions will equip Practice Managers and administrative staff with a sound knowledge of how to implement and maintain policies and procedures to govern access to the My Health Record within their organisation.\\nThese demonstrations will be run multiple times each week and at varying times throughout the day.\\nUpon completion participants will be able to: \\no\\tUnderstand the legislative framework for accessing My Health Record\\no\\tCreate and maintain security and access policies for My Health Record\\no\\tManage My Health Record user accounts and training registers\\no\\tUnderstand the importance of Health Identifiers and correct system configuration\\no\\tDesignate roles and responsibilities for practice staff engaging with My Health Record\\no\\tUnderstand when and how to access information contained within a consumer’s My Health Record\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australian Digital Health Agency\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Understanding compliance requirements for accessing My Health Record - practical tips for Practice Managers (Various dates available) - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Understanding compliance requirements for accessing My Health Record - practical tips for Practice Managers (Various dates available) - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-31 05:28:18','2021-03-31 05:28:18','c1f799a9-358d-4fc7-9f3c-3cc419829e93'),(147141,147140,1,NULL,97391,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":97391,\"title\":\"Understanding compliance requirements for accessing My Health Record - practical tips for pharmacy staff (Various dates available)\",\"slug\":\"understanding-compliance-requirements-for-accessing-my-health-record-practical-tips-for-pharmacy-staff-various-dates-available\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"https://register.gotowebinar.com/rt/5175316981814611727?source=Bulletin\",\"71\":\"briana.meawad@digitalhealth.gov.au\",\"70\":\"02 8298 2607\",\"67\":\"These one-hour sessions will equip pharmacists, pharmacy owners and administrative staff with a sound knowledge of how to implement and maintain policies and procedures to govern access to the My Health Record within the pharmacy.\\nThese demonstrations will be run multiple times a month.\\n\\nFollowing the session participants will be able to: \\no Understand the legislative framework for accessing My Health Record and ongoing participation obligations\\no Create and maintain security and access policies for My Health Record\\no Manage My Health Record user accounts and training registers\\no Understand the importance of Health Identifiers and correct system configuration\\no Designate roles and responsibilities for pharmacy staff engaging with My Health Record\\n\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australian Digital Health Agency\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Understanding compliance requirements for accessing My Health Record - practical tips for pharmacy staff (Various dates available) - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Understanding compliance requirements for accessing My Health Record - practical tips for pharmacy staff (Various dates available) - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-31 05:29:51','2021-03-31 05:29:51','48fb7410-c712-4539-a75f-81c2b5ee8251'),(147144,147143,1,NULL,97391,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":97391,\"title\":\"Consistent data quality:  ensuring clinical safety standards for your General Practice or Aboriginal Medical Service (Various dates available)\",\"slug\":\"consistent-data-quality-ensuring-clinical-safety-standards-for-your-general-practice-or-aboriginal-medical-service-various-dates-available\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"https://register.gotowebinar.com/rt/7663421635518834191?source=Bulletin\",\"71\":\"briana.meawad@digitalhealth.gov.au\",\"70\":\"02 8298 2607\",\"67\":\"These virtual classroom sessions are aimed at practice managers and clinical staff such as General Practitioners, Nurses and Aboriginal Health Care workers to improve understanding of the importance of high-quality health records in General Practices and Aboriginal Medical Services. \\nFollowing these interactive sessions, participants will be able to:\\n\\n•\\tUnderstand the clinical risks of poor data;\\n•\\tUnderstand the importance of coding clinical information to ensure quality diagnosis and medical history data;\\n•\\tUnderstand the importance of quality prescription and medicines data; and\\n•\\tUnderstand the benefits of up-to-date and accurate data\\n\\nIf you can not find a session time that suits you, we may be able to provide an out of schedule session to accommodate you and your staff. For more information on this or for follow up My Health Record support for your practice please contact education@digitalhealth.gov.au.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australian Digital Health Agency\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Consistent data quality:  ensuring clinical safety standards for your General Practice or Aboriginal Medical Service (Various dates available) - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Consistent data quality:  ensuring clinical safety standards for your General Practice or Aboriginal Medical Service (Various dates available) - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-03-31 05:31:39','2021-03-31 05:31:39','f269c4ca-81ec-463f-b3b8-eab0dddba18a'),(147813,147812,1,NULL,107241,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":107241,\"title\":\"Practice (Medical Centre) Registered Nurse - Part Time/Casual\",\"slug\":\"practice-medical-centre-registered-nurse-part-time-casual\",\"postDate\":null,\"expiryDate\":1619704800,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"nundah@excella.com.au\",\"100\":\"Georgie Harding\",\"70\":\"07 3106 6040\",\"99\":\"Requirements:\\nRN with Current AHPRA registration\\nUp to date CPR certificate\\nUp to date National Police Check\\nComputer literacy\\n\\nEssential attributes:\\nMotivated to work hard, willing to learn new policies and procedure and blend in\\nTeam player\\nReliable, punctual, meticulous\\nFriendly, mature and courteous nature\\nAbility to work under pressure and managing challenging situations\\nAbility to prioritise, organise and multi-task\\n \\nKey Roles/Responsibilities: \\nChronic Disease Management (CDM) and Care Plan\\nHealth Assessments\\nImmunisations (Children and Adults)\\nWound Management\\nECG, Spirometry and Audiometry\\nAssisting Doctors with minor procedures\\nMaintaining cold chain/monitoring vaccine fridge temperatures.\\nAutoclaving and sterilisation process\\nStock control and ordering consumables\\nPatient recalls and reminders\\nRecording patient notes in the practice software (Best Practice)\\nMaintaining the treatment room clean\\nLead role in accreditation procedure\\n\\nHours and Rate:\\nThe position is currently for 2-3 days with immediate start. The Practice opening hours are from 8:00 am to 5:00 pm, Monday – Friday.\\nPosition can be either Permanent Part Time or Casual (whichever suits your circumstanced better)\\n\\nTraining and Promotion:\\nWe offer training to support you in your role, though it is expected you have confidence in running the treatment room unsupervised.\",\"94\":\"Excella Medical Centre-Nundah\",\"93\":[\"65423\"],\"97\":\"4012\",\"98\":\"qld\",\"95\":\"1/16A Aspinall Street\",\"96\":\"Nundah\"}}',NULL,NULL,NULL,'2021-03-31 06:13:45','2021-03-31 06:13:45','2f3d2c6e-18e5-4f3b-9a6c-8c69749a59b1'),(148342,148341,1,NULL,107241,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":107241,\"title\":\"Medical Centre Receptionist (Part Time/Casual)\",\"slug\":\"medical-centre-receptionist-part-time-casual\",\"postDate\":null,\"expiryDate\":1619704800,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"nundah@excella.com.au\",\"100\":\"Georgie Harding\",\"70\":\"07 3106 6040\",\"99\":\"As front desk admin, you will be responsible for professional reception management.\\n\\nRequired attributes:\\n\\nReliability, stability and punctuality\\nMaturity and sensitivity in a health environment\\nFriendly (with observing the boundaries) and empathic\\nAccuracy, attention to details on ongoing basis\\nResilience to work under pressure and managing challenging situations\\nAbility to prioritise, organise in a fast pace, busy environment, handling high volume of concomitant incoming/outgoing calls\\nExcellent communication skills (written and verbal) – Calm, polite yet quick and efficient\\nWork effectively in a team and individually\\nFlexibility with working hours\\nProfessionally well-presented\\nWillingness to learn and take on required training\\nApply the provided training effectively\\nComputer literacy and Microsoft Office\\n\\nDuties (not limited to):\\n\\nOpening and closing the practice\\nGreeting patients\\nHandling telephone calls and other communication enquiries\\nEffective scheduling of patient appointments\\nPatient triage\\nPrepare/receive/receipt patient accounts/payments\\nReceiving and scanning mail and other correspondences\\nMaintaining confidentiality while managing patient records\\nHousekeeping - always maintain the practice in a clean and a tidy condition\\nFollowing standards, policies and instructions\",\"94\":\"Excella Medical Centre-Nundah\",\"93\":[\"65423\"],\"97\":\"4012\",\"98\":\"qld\",\"95\":\"1/16 Aspinall Street\",\"96\":\"Nundah\"}}',NULL,NULL,NULL,'2021-03-31 06:17:15','2021-03-31 06:17:15','eb3acae0-9f63-46ab-a89d-1117b8ce88d2'),(148558,148557,1,NULL,107241,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":107241,\"title\":\"Practice Manager (Medical Centre) (Full Time/Part Time)\",\"slug\":\"practice-manager-medical-centre-full-time-part-time\",\"postDate\":null,\"expiryDate\":1619704800,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"nundah@excella.com.au\",\"100\":\"Georgie Harding\",\"70\":\"07 3106 6040\",\"99\":\"What we offer\\n\\n- Attractive salary package for the right candidate. $35-$45/hr (hourly) or $75,000-$95,000 per annum (salary) + superannuation. Remuneration commensurate with candidate’s experience and scale of practices managed before)\\n- Full time or Part time (minimum 25 hrs/wk.) position with immediate start\\n\\nAbout Us\\n\\n- Modern mixed billing medical facility\\n- 5km north of Brisbane CBD\\n- Fully accredited GP practice, providing quality medical care to the local community and surrounding area since 2017. \\n \\nThe Role\\n\\nThe key focus of the role is to provide expert advice, guidance and support in overseeing the management of the daily operations of the practice.\\n\\n- Team building (recruit, train, develop and appraise non-clinical team, schedule and coordinate administrative and clinical meetings)\\n- Leadership (leader by example, supervise, guide, delegate tasks, resolve conflict, foster team spirit and create a positive work environment culture)\\n- Management (coordinate front office workflow, practice daily operation and staff scheduling)\\n- Policies and procedures (constantly maintain, assess, update, inform and implement)\\n- Business planning (business retention and growth, identify, influence and develop new business initiatives, set direction and targets in consultation with principals)\\n- Business monitoring (evaluation and provision of regular reports to principals)\\n- Business review (adjust goals and adapt in an ongoing changing industry)\\n- Finance management (payroll, Xero, accounts payable and receivable, balance sheets)\\n- Professional development (peers networking, aware of the latest relevant legislation)\\n- Complaints resolution (receive, acknowledge, analyse, liaise with relevant parties, drive outcome, inform the relevant parties)\\n \\n\\nPersonal Attributes and Behaviours\\n\\n- Solid commercial and business acumen with ability to effectively coach, mentor and lead a team of staff\\n- High experience of people and business leadership\\n- Of meticulous character (accurate with attention to detail)\\n- Demonstrate resilience to challenging situation while retain calm and professionalism\\n- Excellent communicator (articulate, well-spoken with excellent written and oral)\\n- Punctual, well presented, friendly and courteous\\n- Ability to work independently and cooperatively\\n- Presenting the practice in a confident and positive manner\\n \\n\\nQualification and Experience\\n\\n- Minimum 3 years practice management experience in a mid-scale (5-7 FTE GP) practice\\n- Proven track record in business management, HR, planning, budgeting and reporting\\n- Proficient in MBS, Medicare incentives (PIP, PNIP), DVA, Work Comp, Private client billing and daily settlement\\n- Sound knowledge in Best practice software, Microsoft Office, Xero, Practice Hub and general medical terminology\\n- Member of AAPM, Certificate IV, Diploma in Practice Management, Tertiary HR/Business Management studies are all highly desirable\\n \",\"94\":\"Excella Medical Centre-Nundah\",\"93\":[\"65423\"],\"97\":\"4012\",\"98\":\"qld\",\"95\":\"1/16A Aspinall Street\",\"96\":\"Nundah\"}}',NULL,NULL,NULL,'2021-03-31 06:33:50','2021-03-31 06:33:50','0d290191-0b4d-4b86-83c1-e80173f100f6'),(148793,NULL,1,NULL,148787,NULL,'pending','',NULL,'{\"typeId\":\"5\",\"authorId\":\"148787\",\"title\":\"A NURSING RETREAT: Exploring Psychological Workplace Violence and Personal Resilience\",\"slug\":\"a-nursing-retreat-exploring-psychological-workplace-violence-and-personal-resilience\",\"postDate\":1617239760,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"O\'Reilly\'s Rainforest Retreat, Lamington National Park\",\"71\":\"enquiries@nfnn.com.au\",\"70\":\"07 4151 3884 (Select option 3)\",\"67\":\"<h1>A NURSING RETREAT: <em>Exploring Psychological Workplace Violence and Personal Resilience</em></h1>\\n<p>01-03 SEPTEMBER 2021 | GOLD COAST HINTERLANDS<a href=\\\"https://nfnn.com.au/event/nursing-retreat-gold-coast-09-2021/\\\"><strong><u><br /></u></strong></a></p>\\n<p><a href=\\\"https://nfnn.com.au/event/nursing-retreat-gold-coast-09-2021/\\\"><strong><u>Click here for all the details and to book online&gt;&gt;</u></strong></a></p>\\n<p>In this Retreat, we’re going to explore the impact on a Nurse facing workplace violence. We’ll examine resilience and how it links to healthy boundaries, mental wellbeing and burnout.</p>\\n<p>The content is vital knowledge as we face the unique challenges currently around us. Not only for our own self-development but also to have the knowledge and skills to provide support to our families, friends, and colleagues.<br /></p>\\n<p>This unique retreat offers not just education but includes a supportive environment with caring and experienced facilitators to assist you to explore these difficult topics. The group will join together to learn practical strategies on how to work with very difficult people in their personal and professional life.</p>\\n<p>In addition to the conference program, attendees will have the opportunity to explore a number of activities to assist them manage stress and prevent burnout.</p>\\n<p>Each day Attendees can join the Facilitators and other attendees on one of the many beautiful, serene rainforest walks, explore different forms of meditation and unpack topics that can only be done in a supported learning environment such as this.</p>\\n<p>This Nursing Retreat has been developed by two experienced facilitators who look forward to working with you in the breath-taking natural environment of <a href=\\\"https://oreillys.com.au/\\\">O’Reilly’s Rainforest Retreat</a>.</p>\\n<p><em>Although this retreat is predominantly for Nurses other health care professionals are also welcome to</em> <em>attend</em>.</p><h3>WHO IS THIS CONFERENCE FOR?</h3>\\n<p>This is a conference retreat for all Nurses irrespective of clinical specialty. The content applies to a new graduate, enrolled nurse, registered nurse through to director of Nursing.</p>\\n<p>The issue of workplace violence is real within our professional culture as evidenced by increasing levels of burnout and distress.</p>\\n<p>The skills you will learn at the conference will be valuable to you whether you have experienced bullying or not.</p>\\n<p>If you are a clinical facilitator, educator, Nurse leader, or aspiring Nurse leader, this conference provides you with essential knowledge for your role.</p>\\n<p>This conference will assist you in developing your emotional intelligence and assertion skills, and to recognise and manage these difficult concepts. You will learn the strategies of how to support your team.</p>\\n<p>This retreat offers not just education but includes a supportive environment with caring and experienced facilitators to assist you to explore these difficult topics.</p><h3>YOU WILL LEARN:</h3>\\n<p>At this conference you will:</p>\\n<ul><li>The impact of hidden workplace violence on your physical health.</li><li>The hidden tactics of bullies that rob you of your emotional peace and cause you great pain.</li><li>The psychological impact of bullying: from causing embarrassment through to loss of professional credibility.</li><li>The spectrum of narcissism (from selfishness traits to a personality disorder) which may be in your family as well as at work.</li><li>Recognition of the primary techniques of those in the narcissistic spectrum including gas-lighting and the use of silent treatment.</li><li>How to manage your stress and restore your peace of mind</li><li>To enhance your understanding of resilience and burnout</li><li>How to regain your reputation and self esteem after a difficult experience or assist others to do so.</li><li>Practical skills on how to be assertive and powerful.</li><li>Tips on how to avoid legal problems as a target of bullying or as a nurse leader.</li><li>Assertion training to manage criticism.</li><li>That the skills you will gain at this conference will apply to both the workplace environment and your personal life.</li></ul>\\n<p><a href=\\\"https://nfnn.com.au/event/nursing-retreat-gold-coast-09-2021/\\\"><strong><u>Click here for all the details and to book online&gt;&gt;</u></strong></a><br /></p>\\n\",\"68\":{\"ownerId\":148788,\"ownerSiteId\":1,\"fieldId\":68,\"startDate\":[],\"endDate\":[],\"allDay\":1,\"repeats\":0,\"days\":null,\"endRepeat\":null,\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":null,\"months\":null},\"7\":[\"148789\"],\"69\":\"The Nurses for Nurses Network\",\"72\":\"outside\",\"82\":{\"titleRaw\":{\"1\":\"A Retreat for Nurses | Self-Care\"},\"descriptionRaw\":\"This nursing retreat explores the impact Nurses facing workplace violence & examine resilience & how it links to healthy boundaries & mental wellbeing.\",\"keywords\":[{\"keyword\":\"nurses\",\"rating\":\"poor\"},{\"keyword\":\"workplace violence\",\"rating\":\"poor\"},{\"keyword\":\"personal resilience\",\"rating\":\"poor\"},{\"keyword\":\"nursing retreat\",\"rating\":\"good\"},{\"keyword\":\"nursing\",\"rating\":\"good\"},{\"keyword\":\"healthy boundaries\",\"rating\":\"poor\"},{\"keyword\":\"resilience\",\"rating\":\"good\"}],\"score\":\"poor\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"A Retreat for Nurses | Self-Care - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"This nursing retreat explores the impact Nurses facing workplace violence & examine resilience & how it links to healthy boundaries & mental wellbeing.\"},\"facebook\":{\"handle\":\"\",\"title\":\"A Retreat for Nurses | Self-Care - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"This nursing retreat explores the impact Nurses facing workplace violence & examine resilience & how it links to healthy boundaries & mental wellbeing.\"}},\"advanced\":{\"robots\":[],\"canonical\":\"\"}}}}',NULL,NULL,NULL,'2021-04-01 01:51:46','2021-04-01 01:51:46','099f4e34-451c-4d20-b1fb-c554b00168f9'),(148800,NULL,1,NULL,148787,NULL,'pending','',NULL,'{\"typeId\":\"5\",\"authorId\":\"148787\",\"title\":\"KEY ASPECTS OF NURSING PRACTICE: A Three-day Nursing Fundamentals Conference\",\"slug\":\"key-aspects-of-nursing-practice-a-three-day-nursing-fundamentals-conference\",\"postDate\":1617241920,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"\",\"67\":\"<h1>KEY ASPECTS OF NURSING PRACTICE:<br /></h1>\\n<p><em>A Three-day Nursing Fundamentals Conference</em></p><h3>21-23 JULY 2021 | THE GOLD COAST</h3>\\n<p><strong><a href=\\\"https://nfnn.com.au/event/key-aspects-of-nursing-practice-2021/\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">Click here for all the details and to book online&gt;&gt;</a></strong></p>\\n<p>In this conference, six key areas of Nursing practice will be explored to reflect current best practice concepts in Nursing service delivery.</p>\\n<h3>WHO IS THIS CONFERENCE FOR?</h3>\\n<p>This conference is for all Nurses currently registered with the Nursing and Midwifery Board of Australia who have an interest in maintaining and/or updating their working knowledge of key components of nursing service delivery.</p>\\n<p>The topics covered in this conference have been selected because of their applicability to a wide variety of Nursing specialities and areas of practice.</p><h3>TOPICS COVERED</h3>\\n<ul><li>Wound Management – Challenges in managing a non-healing wound</li><li>Diabetes Update – The science of weight loss and the implications for Diabetes management</li><li>Fundamentals of Counselling- Avoiding errors in counselling and learning essential skills</li><li>Common Mental Health Conditions and a discussion on suicide</li><li>Cardiac Foundations of interpretation of arrhythmias and managing life-threatening situations</li><li>Law Update: Physical and Chemical Restraints, Force Feeding, and Managing bullying and professional obligations</li></ul><h3>YOU WILL LEARN:</h3>\\n<ul><li>The impact of a non-healing wound on the patient.</li><li>The assessment and management strategies associated with a non-healing wound.</li><li>The latest information on weight loss</li><li>The implication of weight loss in the management of diabetes</li><li>The fundamentals of Counselling in the role of the nurse</li><li>The errors that can occur in the counselling relationship and the essential skills to prevent same</li><li>What the common mental health conditions are in the Australian community</li><li>The latest treatment modalities available to treat the most common mental health conditions</li><li>How to have a discussion with someone you believe may be contemplating taking their own life</li><li>What to do when someone identifies to you they are in crisis</li><li>The fundamentals of cardiac rhythm interpretation</li><li>How to interpret an arrhythmia and identify a life-threatening cardia situation</li><li>The legal implications of physical and chemical restraint in the health care environment</li><li>The definition of force-feeding and the legal implications for nursing practice</li><li>Your legal obligations surrounding bullying in the workplace</li></ul>\\n<p><strong><a href=\\\"https://nfnn.com.au/event/key-aspects-of-nursing-practice-2021/\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">Click here for all the details and to book online&gt;&gt;</a></strong></p>\\n<p><em><br /></em></p>\",\"68\":{\"ownerId\":148794,\"ownerSiteId\":1,\"fieldId\":68,\"startDate\":[],\"endDate\":[],\"allDay\":0,\"repeats\":0,\"days\":null,\"endRepeat\":null,\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":null,\"months\":null},\"7\":[\"148795\"],\"72\":\"online\",\"82\":{\"titleRaw\":{\"1\":\"Nursing Conference | Fundamentals\"},\"descriptionRaw\":\"This event explores wound care, nursing law, mental health, diabetes, cardiac foundations and fundamentals of counselling.\",\"keywords\":[{\"keyword\":\"wound care\",\"rating\":\"poor\"},{\"keyword\":\"nursing law\",\"rating\":\"poor\"},{\"keyword\":\"mental health\",\"rating\":\"poor\"},{\"keyword\":\"diabetes\",\"rating\":\"poor\"},{\"keyword\":\"cardiac\",\"rating\":\"poor\"},{\"keyword\":\"counselling\",\"rating\":\"poor\"}],\"score\":\"poor\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Nursing Conference | Fundamentals - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"This event explores wound care, nursing law, mental health, diabetes, cardiac foundations and fundamentals of counselling.\"},\"facebook\":{\"handle\":\"\",\"title\":\"Nursing Conference | Fundamentals - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"This event explores wound care, nursing law, mental health, diabetes, cardiac foundations and fundamentals of counselling.\"}},\"advanced\":{\"robots\":[],\"canonical\":\"\"}}}}',NULL,NULL,NULL,'2021-04-01 01:58:22','2021-04-01 01:58:22','7064e89f-c3d1-4eda-af53-515751dd62e3'),(148804,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":148802,\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:35:16','2021-04-01 02:35:16','d4b0ec88-0f7c-4fd3-9170-6e24f6c44631'),(148806,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:02','2021-04-01 02:38:02','881b3e0d-c174-456d-9f56-8c29af910905'),(148807,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:03','2021-04-01 02:38:03','1ca192b1-4bd2-4536-b559-21631811f17c'),(148809,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:03','2021-04-01 02:38:03','16128022-eeaa-4f2d-bdd0-7b807e045d91'),(148810,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:04','2021-04-01 02:38:04','514fbc3d-e6c7-408e-8bba-ffffc3fdd49d'),(148812,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:05','2021-04-01 02:38:05','5a653e27-ef51-4927-a2b7-373ea33a22ba'),(148813,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:05','2021-04-01 02:38:05','12cfc79a-faf1-4395-a0c0-328e4ca3ff78'),(148815,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:06','2021-04-01 02:38:06','18777601-b3a0-4337-8241-66c1bbffd91f'),(148816,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:07','2021-04-01 02:38:07','7815a1ea-8a4c-42f2-a11b-30879653afbf'),(148818,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:08','2021-04-01 02:38:08','d59d78c6-dc18-4692-936b-0f9b8e9f7193'),(148819,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:08','2021-04-01 02:38:08','87448a00-f733-40f9-8665-1afb58bf8001'),(148821,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:09','2021-04-01 02:38:09','97e50de0-08cf-487e-8a54-8b4e3fa327ae'),(148822,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:10','2021-04-01 02:38:10','82302478-fa05-4d0b-96a3-dafdc9309dd8'),(148824,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:11','2021-04-01 02:38:11','2f60f485-5176-4263-86b9-e925b2b504ee'),(148825,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:12','2021-04-01 02:38:12','c7e4861c-89bd-4191-a25e-212f7273cdca'),(148827,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:12','2021-04-01 02:38:12','c150852b-169b-413a-8a4c-2b14e9a00fa0'),(148828,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:13','2021-04-01 02:38:13','e5596396-9cfc-425e-b77d-2b996e1d918d'),(148830,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:14','2021-04-01 02:38:14','f975c080-33ce-47c6-9f62-bd504d2484a5'),(148831,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:14','2021-04-01 02:38:14','3425d9ff-b546-4390-9a5f-62b6a979c45d'),(148833,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:15','2021-04-01 02:38:15','4a2e6e9f-5982-4375-a51e-7507e4588cb4'),(148834,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:16','2021-04-01 02:38:16','a15d3530-151e-4779-8316-250491845f64'),(148836,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:17','2021-04-01 02:38:17','f53705d5-bb24-425d-9da9-7028f77b4944'),(148837,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:18','2021-04-01 02:38:18','36caf50c-6670-4fbc-945d-e4e9f31bad74'),(148839,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:19','2021-04-01 02:38:19','fca47af6-07c0-4ecb-a62a-7e2c0bec1456'),(148840,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:19','2021-04-01 02:38:19','5d7d7724-e1c5-426e-a90b-1aa028c1fdd9'),(148842,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:20','2021-04-01 02:38:20','6ed88a4f-eddc-41b6-afad-6cd61880d713'),(148843,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:21','2021-04-01 02:38:21','970ea301-490e-4d76-b788-a4a94c39d7c5'),(148845,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:22','2021-04-01 02:38:22','b0b25d43-8abe-4759-8eb7-ee150e77f2ad'),(148846,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:22','2021-04-01 02:38:22','93a9038a-f637-4bc8-8082-230aff19a4e3'),(148848,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:23','2021-04-01 02:38:23','cd9300f6-fcf9-4d07-ae5a-024825cc2c39'),(148849,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:24','2021-04-01 02:38:24','452c265b-f322-4ba3-8c43-4d29860c6e86'),(148851,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:25','2021-04-01 02:38:25','66233656-4e2b-4abf-9663-633c98dceaff'),(148852,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:25','2021-04-01 02:38:25','72bdcf41-c7b5-4aa1-ba56-6f4352ede87b'),(148854,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:26','2021-04-01 02:38:26','772f396e-1306-4e4e-9753-c5cb1b533a66'),(148855,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:27','2021-04-01 02:38:27','b2bc5a5f-106f-4924-823e-aeaeee69b5f6'),(148857,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:28','2021-04-01 02:38:28','f5d74aa4-da66-4043-9d5b-e87f84239214'),(148858,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:29','2021-04-01 02:38:29','13eb1130-f460-4971-8c3e-1bedf6a68ee5'),(148860,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:29','2021-04-01 02:38:29','c987a5b5-8b6c-4211-bb36-7851b8db3055'),(148861,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:30','2021-04-01 02:38:30','856e8eff-c3bf-485c-bd21-ea6be129d42a'),(148863,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:31','2021-04-01 02:38:31','e99646c6-30da-4eea-bc7e-54c40ebc926c'),(148864,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:31','2021-04-01 02:38:31','ca7efc9c-0612-44d8-80a4-6d270013d031'),(148866,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:32','2021-04-01 02:38:32','6075f3f6-d5e5-419b-89a3-e18548b96d71'),(148867,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:33','2021-04-01 02:38:33','43c9883b-3139-46da-992a-b7587dd04fee'),(148869,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:33','2021-04-01 02:38:33','31b66a66-204a-4ce8-a0d1-2171d80661cf'),(148870,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:34','2021-04-01 02:38:34','1f2f7958-91b5-488e-9398-56d479f7bec2'),(148872,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:35','2021-04-01 02:38:35','63bc8c8c-bc4f-420a-9295-46c73095a78e'),(148873,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:35','2021-04-01 02:38:35','605928ba-bc2a-493f-9a3c-b2cac7ac6f9c'),(148875,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:37','2021-04-01 02:38:37','0cfb1f69-bcda-44a2-a7a7-af7456571714'),(148876,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:38','2021-04-01 02:38:38','eb1789da-77ab-4573-85c9-e8b746c6875e'),(148878,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:38','2021-04-01 02:38:38','9b196101-14ce-4715-811d-5e6bd7c1e691'),(148879,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:38:39','2021-04-01 02:38:39','e9cc4a58-cc3e-483b-8698-6ae7169214fa'),(148881,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:16','2021-04-01 02:39:16','19b624a6-4b7c-4b72-b3f1-a5dc8933e764'),(148882,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:17','2021-04-01 02:39:17','b5d06e10-10d6-4e99-939b-4391b7e3f836'),(148884,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:17','2021-04-01 02:39:17','7f7555ce-b23d-4bc1-ba31-e07cfaf17a7e'),(148885,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:18','2021-04-01 02:39:18','ea5c7c2e-5411-4ace-9929-12264502f2c6'),(148887,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:19','2021-04-01 02:39:19','7667270a-b494-4a5f-851e-77503cc07a5b'),(148888,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:20','2021-04-01 02:39:20','34d9c2f0-188a-4d13-8766-bb08b110986d'),(148890,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:21','2021-04-01 02:39:21','451171c2-9487-42ec-a38a-692419f89898'),(148891,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:21','2021-04-01 02:39:21','3526b3b6-70f0-4d9c-81cd-538d7b028e40'),(148893,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:22','2021-04-01 02:39:22','04505337-21bd-43d4-b929-5bf62667ae1d'),(148894,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:22','2021-04-01 02:39:22','616e520f-80a7-4382-ac6f-99637aa6d7d8'),(148896,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:23','2021-04-01 02:39:23','ba7f4d09-ca45-486e-80b6-899c27c04751'),(148897,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:24','2021-04-01 02:39:24','c6fcb0f2-4d22-43e7-bae8-f5438bcb1538'),(148899,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:26','2021-04-01 02:39:26','569c0800-3a01-4d12-9b50-529c533378ef'),(148900,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:26','2021-04-01 02:39:26','325e8436-4a26-4f7e-8c31-05c11f56bb38'),(148902,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:27','2021-04-01 02:39:27','1f044318-69b9-47fa-91fa-25b5f840985c'),(148903,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:28','2021-04-01 02:39:28','cec94550-37e1-408e-a351-c76f7ff9ec80'),(148905,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:28','2021-04-01 02:39:28','e8549d01-c536-4d88-95fb-c4980007e997'),(148906,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:29','2021-04-01 02:39:29','71c487c2-148d-41bd-8bc6-c38f5c4f929e'),(148908,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:30','2021-04-01 02:39:30','3c655271-371b-4396-ba9a-1074b8834870'),(148909,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:31','2021-04-01 02:39:31','27d3681f-eaab-4f24-bdef-661d5f70cd0a'),(148911,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:31','2021-04-01 02:39:31','c77d94a1-66e6-4171-91df-7c42942f76a3'),(148912,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:32','2021-04-01 02:39:32','af8c9661-0d25-443b-87ae-6017399a5a72'),(148914,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:33','2021-04-01 02:39:33','2562b9ca-3da8-47b6-baf3-d8af2d028fc5'),(148915,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:33','2021-04-01 02:39:33','3849c79b-a5a0-4441-9aa4-9344e0952c4c'),(148917,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:34','2021-04-01 02:39:34','eb547489-743c-4e3b-be00-8a92c8792c41'),(148918,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:35','2021-04-01 02:39:35','10d46ae0-f555-4d1a-b1e3-0d2c41059277'),(148920,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:36','2021-04-01 02:39:36','c54ffd7f-4665-473a-a327-4e837974e691'),(148921,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:36','2021-04-01 02:39:36','0fca8387-fde4-42e1-bc49-4bfee4c20d9f'),(148923,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:37','2021-04-01 02:39:37','3998f75e-d5bb-426d-90ad-52fb9fa3255b'),(148924,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:38','2021-04-01 02:39:38','9a877bdf-4c8c-4fb0-8c7a-a27c3eefc43f'),(148926,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:38','2021-04-01 02:39:38','a53c18af-4fb0-4c0d-af96-e6e7139b119e'),(148927,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:39','2021-04-01 02:39:39','ada1862a-b57b-4bd7-9801-5be188d94897'),(148929,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:40','2021-04-01 02:39:40','591f9c9c-7b0f-46ae-9b36-5f22e8e4b643'),(148930,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:41','2021-04-01 02:39:41','c6be3aab-9a91-4030-b7df-568026f68b63'),(148932,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:41','2021-04-01 02:39:41','dac47e45-a88c-45b0-bab5-24a71bcacd38'),(148933,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:42','2021-04-01 02:39:42','ed0c46e2-8be6-420e-8dfd-47808c73532c'),(148935,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:43','2021-04-01 02:39:43','61070d74-e3ad-4264-b57e-21e974452614'),(148936,148803,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C for Nurse Practitioners\",\"slug\":\"hepatitis-c-for-nurse-practitioners\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"phoebe.schroder@ashm.org.au\",\"70\":\"0432194393\",\"67\":\"This course aims to provide Nurse Practitioners the skills and confidence to diagnose, assess, manage and treat hepatitis C. This course is for Nurse practitioners with an interest in hepatitis C. \\n\\nThe course is comprised of both self-directed training and 2x facilitated training sessions.\\n \\nThis course is equivalent to 5.75 CPD hours. \\n \\nREGISTER HERE: https://ashm.org.au/eventinforeg2/?id=6eb2ebca-498c-eb11-b1ac-0022481559c1 \\n \\nFunded by Eliminate Hepatitis C (EC) Australia.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C for Nurse Practitioners - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-01 02:39:44','2021-04-01 02:39:44','3260aadb-84dc-4966-bae7-50a6cb910533'),(148939,NULL,1,NULL,113663,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":113663,\"title\":\"General Practitioner VR Doctor\",\"slug\":\"general-practitioner-vr-doctor\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"manager@goodwindrivemedical.com.au\",\"100\":\"Angela De-Gaetano\",\"70\":\"0734101122\",\"99\":\"Goodwin Drive Family Medical Centre is currently seeking a VR GP to fill a recently vacated position within the practice. The successful applicant will replace a popular GP with existing clientele. The centre has a well-established patient base, is privately-owned and centrally located in the main shopping precinct on beautiful Bribie Island.\\n\\nThe practice is supported by a friendly and experienced team of four receptionists, three nurses, a full-time practice manager and uses Best Practice Software. Allied Health and Pathology services are located on site.\\n\\nWe are a mixed billing practice situated in an MM2 region with 10991 bulk billing incentive eligibility.\\n\\nOpening Hours are Monday to Friday 7am to 6pm and Saturdays 8am to 12noon. Hours are flexible and offer a work and lifestyle balance within a caring and supportive team environment.\\n\\nInitial minimum hourly guarantee available or 70% of receipts, whichever is the higher.\\n\\nThe position is well suited to a GP with special interest in skin examination, procedures, dermatology or cosmetic medicine.\\n\\nEssential Criteria:\\n\\nMBBS or equivalent degree with current AHPRA registration\\n\\nFRACGP or equivalent\\n\\nExcellent communication and organisational skills\\n\\nActive participation in Professional Development\\n\\nIndemnity Insurance\\n\\nCaring and friendly personality\",\"94\":\"Goodwin Drive Family Medical Centre\",\"93\":[\"65423\"],\"97\":\"4507\",\"98\":\"qld\",\"95\":\"Shop 1, 229-235 Goodwin Drive\",\"96\":\"Bongaree\"}}',NULL,NULL,NULL,'2021-04-01 03:51:11','2021-04-01 03:51:11','7bb8c46f-7998-470c-8035-7d7cdc71b366'),(148942,148941,1,NULL,113663,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":113663,\"title\":\"General Practitioner VR Doctor\",\"slug\":\"general-practitioner-vr-doctor-2\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"manager@goodwindrivemedical.com.au\",\"100\":\"Angela De-Gaetano\",\"70\":\"0734101122\",\"99\":\"Goodwin Drive Family Medical Centre is currently seeking a VR GP to fill a recently vacated position within the practice. The successful applicant will replace a popular GP with existing clientele. The centre has a well-established patient base, is privately-owned and centrally located in the main shopping precinct on beautiful Bribie Island.\\n\\nThe practice is supported by a friendly and experienced team of four receptionists, three nurses, a full-time practice manager and uses Best Practice Software. Allied Health and Pathology services are located on site.\\n\\nWe are a mixed billing practice situated in an MM2 region with 10991 bulk billing incentive eligibility.\\n\\nOpening Hours are Monday to Friday 7am to 6pm and Saturdays 8am to 12noon. Hours are flexible and offer a work and lifestyle balance within a caring and supportive team environment.\\n\\nInitial minimum hourly guarantee available or 70% of receipts, whichever is the higher.\\n\\nThe position is well suited to a GP with special interest in skin examination, procedures, dermatology or cosmetic medicine.\\n\\nEssential Criteria:\\n\\nMBBS or equivalent degree with current AHPRA registration\\n\\nFRACGP or equivalent\\n\\nExcellent communication and organisational skills\\n\\nActive participation in Professional Development\\n\\nIndemnity Insurance\\n\\nCaring and friendly personality\",\"94\":\"Goodwin Drive Family Medical Centre\",\"93\":[\"65423\"],\"97\":\"4507\",\"98\":\"qld\",\"95\":\"Shop 1, 229-235 Goodwin Drive\",\"96\":\"Bongaree\"}}',NULL,NULL,NULL,'2021-04-01 03:51:12','2021-04-01 03:51:12','988b8ab6-4661-4f39-a58d-3f6bb2579d1b'),(148956,NULL,1,NULL,148953,NULL,'pending',NULL,NULL,'{\"typeId\":\"27\",\"authorId\":148953,\"title\":\"RACGP funded national survey of GP management of patients following acute exacerbations of COPD\",\"slug\":\"racgp-funded-national-survey-of-gp-management-of-patients-following-acute-exacerbations-of-copd\",\"postDate\":null,\"expiryDate\":1622383200,\"enabled\":false,\"newParentId\":null,\"fields\":{\"128\":\"Monash University\",\"124\":\"Investigators from Monash University are conducting a RACGP-funded national survey of GPs regarding the management of patients with acute exacerbations of COPD.\\nAcute exacerbations of COPD are a leading cause of hospitalisation, with a substantial proportion of cases being potentially preventable. We kindly invite GPs to complete a short survey that aims to better understand current practice and unmet needs in order to optimise care for these patients. \\nAll eligible participants who complete the survey will have the chance to win one of two $250 gift vouchers, and anyone who opts in (and is selected) for a follow-up qualitative interview will receive a $250 gift voucher. \\nThe survey has been approved by the Monash University Human Research Ethics Committee (MUHREC ref. 26571). If you have any queries, please contact Dr Bianca Perera at bianca.perera@monash.edu or Dr. Chris Barton at chris.barton@monash.edu or Dr Christian Osadnik (Principal investigator) at christian.osadnik@monash.edu \\n\",\"125\":\"https://monash.az1.qualtrics.com/jfe/form/SV_9YShQa4MHmHj5UV\"}}',NULL,NULL,NULL,'2021-04-03 12:22:39','2021-04-03 12:22:39','30b3d83d-6b02-456c-925e-f3cdff2fe9ec'),(148959,NULL,1,NULL,148953,NULL,'pending',NULL,NULL,'{\"typeId\":\"27\",\"authorId\":148953,\"title\":\"RACGP funded national survey of GP management of patients following acute exacerbations of COPD\",\"slug\":\"racgp-funded-national-survey-of-gp-management-of-patients-following-acute-exacerbations-of-copd-2\",\"postDate\":null,\"expiryDate\":1622383200,\"enabled\":false,\"newParentId\":null,\"fields\":{\"128\":\"Monash University\",\"124\":\"Investigators from Monash University are conducting a RACGP-funded national survey of GPs regarding the management of patients with acute exacerbations of COPD.\\nAcute exacerbations of COPD are a leading cause of hospitalisation, with a substantial proportion of cases being potentially preventable. We kindly invite GPs to complete a short survey that aims to better understand current practice and unmet needs in order to optimise care for these patients. \\nAll eligible participants who complete the survey will have the chance to win one of two $250 gift vouchers, and anyone who opts in (and is selected) for a follow-up qualitative interview will receive a $250 gift voucher. \\nThe survey has been approved by the Monash University Human Research Ethics Committee (MUHREC ref. 26571). If you have any queries, please contact Dr Bianca Perera at bianca.perera@monash.edu or Dr. Chris Barton at chris.barton@monash.edu or Dr Christian Osadnik (Principal investigator) at christian.osadnik@monash.edu \\n\",\"125\":\"https://monash.az1.qualtrics.com/jfe/form/SV_9YShQa4MHmHj5UV\"}}',NULL,NULL,NULL,'2021-04-03 12:22:42','2021-04-03 12:22:42','0924b06c-e1a2-4448-b5e8-2d721bc6d434'),(148962,NULL,1,NULL,148953,NULL,'pending',NULL,NULL,'{\"typeId\":\"27\",\"authorId\":148953,\"title\":\"RACGP funded national survey of GP management of patients following acute exacerbations of COPD\",\"slug\":\"racgp-funded-national-survey-of-gp-management-of-patients-following-acute-exacerbations-of-copd-3\",\"postDate\":null,\"expiryDate\":1622383200,\"enabled\":false,\"newParentId\":null,\"fields\":{\"128\":\"Monash University\",\"124\":\"Investigators from Monash University are conducting a RACGP-funded national survey of GPs regarding the management of patients with acute exacerbations of COPD.\\nAcute exacerbations of COPD are a leading cause of hospitalisation, with a substantial proportion of cases being potentially preventable. We kindly invite GPs to complete a short survey that aims to better understand current practice and unmet needs in order to optimise care for these patients. \\nAll eligible participants who complete the survey will have the chance to win one of two $250 gift vouchers, and anyone who opts in (and is selected) for a follow-up qualitative interview will receive a $250 gift voucher. \\nThe survey has been approved by the Monash University Human Research Ethics Committee (MUHREC ref. 26571). If you have any queries, please contact Dr Bianca Perera at bianca.perera@monash.edu or Dr. Chris Barton at chris.barton@monash.edu or Dr Christian Osadnik (Principal investigator) at christian.osadnik@monash.edu \\n\",\"125\":\"https://monash.az1.qualtrics.com/jfe/form/SV_9YShQa4MHmHj5UV\"}}',NULL,NULL,NULL,'2021-04-03 12:22:44','2021-04-03 12:22:44','db9a611c-489e-4c0f-857b-40f51ea141b2'),(148965,NULL,1,NULL,148953,NULL,'pending',NULL,NULL,'{\"typeId\":\"27\",\"authorId\":148953,\"title\":\"RACGP funded national survey of GP management of patients following acute exacerbations of COPD\",\"slug\":\"racgp-funded-national-survey-of-gp-management-of-patients-following-acute-exacerbations-of-copd-4\",\"postDate\":null,\"expiryDate\":1622383200,\"enabled\":false,\"newParentId\":null,\"fields\":{\"128\":\"Monash University\",\"124\":\"Investigators from Monash University are conducting a RACGP-funded national survey of GPs regarding the management of patients with acute exacerbations of COPD.\\nAcute exacerbations of COPD are a leading cause of hospitalisation, with a substantial proportion of cases being potentially preventable. We kindly invite GPs to complete a short survey that aims to better understand current practice and unmet needs in order to optimise care for these patients. \\nAll eligible participants who complete the survey will have the chance to win one of two $250 gift vouchers, and anyone who opts in (and is selected) for a follow-up qualitative interview will receive a $250 gift voucher. \\nThe survey has been approved by the Monash University Human Research Ethics Committee (MUHREC ref. 26571). If you have any queries, please contact Dr Bianca Perera at bianca.perera@monash.edu or Dr. Chris Barton at chris.barton@monash.edu or Dr Christian Osadnik (Principal investigator) at christian.osadnik@monash.edu \\n\",\"125\":\"https://monash.az1.qualtrics.com/jfe/form/SV_9YShQa4MHmHj5UV\"}}',NULL,NULL,NULL,'2021-04-03 12:22:45','2021-04-03 12:22:45','130dcbec-c4c9-40a4-bbe2-c282ee98e855'),(148968,148967,1,NULL,148953,NULL,'pending',NULL,NULL,'{\"typeId\":\"27\",\"authorId\":148953,\"title\":\"RACGP funded national survey of GP management of patients following acute exacerbations of COPD\",\"slug\":\"racgp-funded-national-survey-of-gp-management-of-patients-following-acute-exacerbations-of-copd-5\",\"postDate\":null,\"expiryDate\":1622383200,\"enabled\":false,\"newParentId\":null,\"fields\":{\"128\":\"Monash University\",\"124\":\"Investigators from Monash University are conducting a RACGP-funded national survey of GPs regarding the management of patients with acute exacerbations of COPD.\\nAcute exacerbations of COPD are a leading cause of hospitalisation, with a substantial proportion of cases being potentially preventable. We kindly invite GPs to complete a short survey that aims to better understand current practice and unmet needs in order to optimise care for these patients. \\nAll eligible participants who complete the survey will have the chance to win one of two $250 gift vouchers, and anyone who opts in (and is selected) for a follow-up qualitative interview will receive a $250 gift voucher. \\nThe survey has been approved by the Monash University Human Research Ethics Committee (MUHREC ref. 26571). If you have any queries, please contact Dr Bianca Perera at bianca.perera@monash.edu or Dr. Chris Barton at chris.barton@monash.edu or Dr Christian Osadnik (Principal investigator) at christian.osadnik@monash.edu \\n\",\"125\":\"https://monash.az1.qualtrics.com/jfe/form/SV_9YShQa4MHmHj5UV\"}}',NULL,NULL,NULL,'2021-04-03 12:24:52','2021-04-03 12:24:52','a19f97e7-809e-4946-b8fa-2c6a711665f9'),(148971,148970,1,NULL,98178,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":98178,\"title\":\"LOCUM GP POSITION\",\"slug\":\"locum-gp-position\",\"postDate\":null,\"expiryDate\":1620136800,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"recruitment@anchormedical.com.au\",\"100\":\"Shabnam Ali\",\"70\":\"0437535501\",\"99\":\"As our Primary GP goes on maternity leave we would welcome a VR GP to look after the patient base, to ensure continuity of care, for many of our chronic disease patients.\\nHours to suit your needs and lifestyle. \\nYou can practice your way with us (appointments, walk-ins or Telehealth consults available). \\nWe are open to discussions on how we can help to support your interests with a large patient base waiting for you. \\nWe have a fully equipped treatment room and experienced nurses/ CDM support on site. \\nOur highly experienced administration staff will put you at ease starting at a new practice. \\nWe can offer you: · \\n•\\tcompetitive remuneration and guaranteed income \\n•\\tflexible work arrangements to accommodate different needs and objectives along with work-life priorities\\n•\\twe will embrace your idiosyncrasies. \\n•\\tIncredible earning potential\\nAre YOU the Dr we are looking for? Contact us today on 0437535501 for a confidential chat.\\nSee what our other Drs have to say:\\nwww.amed.com.au\\n\",\"94\":\"Anchor Medical\",\"93\":[\"65423\"],\"97\":\"4502\",\"98\":\"qld\",\"95\":\"4 Dayboro road\",\"96\":\"Petrie\"}}',NULL,NULL,NULL,'2021-04-05 03:55:52','2021-04-05 03:55:52','8c28ced0-8633-4a3d-9c25-801e2bba4e73'),(148974,148973,1,NULL,98178,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":98178,\"title\":\"Practice Manager\",\"slug\":\"practice-manager-2\",\"postDate\":null,\"expiryDate\":1620136800,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"recruitment@anchormedical.com.au\",\"100\":\"Nargis Bidgood\",\"70\":\"0401334348\",\"99\":\"Our organization is growing and we need a skilled and experienced practice manager to assist our existing leadership team to achieve goals and improve efficiencies while keeping a growth mindset.\\n\\nABOUT Us: \\nAnchor Medicals core values that resonate with our team include \\nService, Empathy and Respect.\\nOur GP practices located across North Brisbane offer a diverse range of services and practitioners with a variety of special interests.\\n\\nYour tasks will include:\\nManaging diverse multi site teams throughout their life cycle from recruitment, to performance management and ongoing training and development.\\nProactively maintaining practice policies and being aware of new innovative developments in the primary health industry.\\nImplement strategic policies, programs and services and recommending corrective actions for said programs\\nWorking alongside our business development team leaders you will be supported to achieve all your goals.\\n\\nA family owned and run organisation all our team are part of our extended family and while our focus is on our organisational opportunity to provide care, our team is first and foremost our priority.\\n\\nWe offer a competitive salary package and exciting growth opportunities for the successful candidate.\\n\\nThe successful candidate will have:\\nAt least 5 years experience in a similar role\\nExcellent time management skills and the ability to prioritise and delegate tasks while adhering to deadlines\\nPrevious experience with Best Practice software\\nProactive approach to maintaining awareness of current policies, issues, trends and knowledge within the primary health industry\\nHigh level of management acumen, with experience in interpretation of financial statement and a focus on profitability, regular reporting, budget forecasting, management and reporting.\\n\\nSound like the position for you? Contact us today for a confidential chat-coffee is on us &#x1f60a;.\\n\\nContact Nargis Bidgood on 0401334348 or email your cv to recruitment@anchormedical.com.au\\n\",\"94\":\"Anchor Medical\",\"93\":[\"108528\"],\"97\":\"4035\",\"98\":\"qld\",\"95\":\"shop 12, 700 albany creek road\",\"96\":\"albany creek\"}}',NULL,NULL,NULL,'2021-04-05 04:18:34','2021-04-05 04:18:34','69c33b70-aaaa-4682-9394-33f7862edee8'),(149337,149336,1,NULL,103774,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":103774,\"title\":\"Sexual and Reproductive Health in Primary Care\",\"slug\":\"sexual-and-reproductive-health-in-primary-care\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online-Zoom\",\"71\":\"education@ashm.org.au\",\"67\":\"Sexual and Reproductive Health in Primary Care \\n \\nThis two-part online course aims to provide practitioners with an overview of sexual and reproductive health care in general practice, covering sexual health, sexual history taking, STI screening, contraception and unintended pregnancy. This training also discusses how STI screening can be integrated into contraception and unintended pregnancy consultations. \\n \\nThis course is for: GPs, GP registrars, nurse practitioners, practice nurses, and other practitioners working in primary care settings. \\n \\nPart One: Saturday 15 May 2021, 9:30-12:30pm (AEST) \\nPart Two: Saturday 22 May 2021, 9:30-12:30pm (AEST) \\nPlease note that you will need to attend both workshops in order to receive accreditation. \\n \\nRegister here: https://ashm.org.au/eventinforeg2/?id=b4631c35-748b-eb11-b1ac-002248155f14 \\n \\nFunded by Queensland Government Department of Health. \\n\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"ASHM\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Sexual and Reproductive Health in Primary Care - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Sexual and Reproductive Health in Primary Care - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-07 00:16:41','2021-04-07 00:16:41','bd785441-f44a-449d-9683-382f3f931b09'),(150185,NULL,1,NULL,150180,NULL,'revoked','',NULL,'{\"typeId\":\"19\",\"authorId\":\"150180\",\"title\":\"Practice Nurse\",\"slug\":\"practice-nurse-2\",\"postDate\":1617857760,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"admin@warnerlakesfamilypractice.com.au\",\"100\":\"Michelle\",\"70\":\"734480163\",\"99\":\"<p>We are looking for a experienced Registered Practice Nurse for a part time casual position who can provide quality care to our patients.<br /><br /><br /><br /><strong>Duties will include:</strong><br /><br /></p>\\n\\n<ul><li>Health Assessments</li></ul>\\n<p><br /></p><ul><li>Chronic Disease Management and Team care arrangements</li></ul>\\n<p><br /></p><ul><li>Vaccinations – Childhood immunisations – Preparation and Recording</li></ul>\\n<p><br /></p><ul><li>Recalls and Reminders</li></ul>\\n<p><br /></p><ul><li>Dressings and Wound Care , ECG, Spirometry</li></ul>\\n<p><br /></p><ul><li>Vaccine management, Infection Control and Sterilisation.</li></ul>\\n<p><br /><br /></p>\\n<p><strong>Skills required:</strong></p>\\n<p><br /></p><ul><li><br /></li><li>Experience in General Practice as a clinical nurse</li><li>Flexibility and enthusiasm to work in a team environment with the ability to multitask</li><li>Best Practice medical software experience is advantageous.</li><li>APHRA Registration - CPR</li></ul>\\n<p><br /></p><ul><li>Immediate start (if possible) for training 10-15 hrs per week </li></ul>\\n<h6>CONTACT PERSON</h6>\\n<p>Michelle </p>\\n<h6>PHONE</h6>\\n<p><a href=\\\"tel:0738559778\\\">07</a>34480163</p>\\n<h6><br /></h6>\\n\",\"94\":\"Warner Lakes Family Practice\",\"93\":[\"75039\"],\"97\":\"4500\",\"98\":\"qld\",\"95\":\"1185b Old North Road\",\"96\":\"Warner\"}}',NULL,NULL,'2021-04-08 05:04:17','2021-04-08 05:03:26','2021-04-08 05:04:17','74850a64-6911-4fe6-a61e-c95449829af8'),(150186,NULL,1,NULL,150180,NULL,'pending','',NULL,'{\"typeId\":\"19\",\"authorId\":\"150180\",\"title\":\"Practice Nurse\",\"slug\":\"practice-nurse-2\",\"postDate\":1617857760,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"admin@warnerlakesfamilypractice.com.au\",\"100\":\"Michelle\",\"70\":\"734480163\",\"99\":\"<p>We are looking for a experienced Registered Practice Nurse for a part time casual position who can provide quality care to our patients.<br /><br /><br /><br /><strong>Duties will include:</strong><br /><br /></p>\\n<ul><li>Health Assessments</li></ul>\\n<p><br /></p>\\n<ul><li>Chronic Disease Management and Team care arrangements</li></ul>\\n<p><br /></p>\\n<ul><li>Vaccinations – Childhood immunisations – Preparation and Recording</li></ul>\\n<p><br /></p>\\n<ul><li>Recalls and Reminders</li></ul>\\n<p><br /></p>\\n<ul><li>Dressings and Wound Care , ECG, Spirometry</li></ul>\\n<p><br /></p>\\n<ul><li>Vaccine management, Infection Control and Sterilisation.</li></ul>\\n<p><br /><br /></p>\\n<p><strong>Skills required:</strong><br /><br /></p>\\n\\n<ul><li>Experience in General Practice as a clinical nurse</li><li>Flexibility and enthusiasm to work in a team environment with the ability to multitask</li><li>Best Practice medical software experience is advantageous.</li><li>APHRA Registration - CPR</li></ul>\\n<p><br /></p>\\n<ul><li>Immediate start (if possible) for training 10-15 hrs per week </li></ul>\\n<h6>CONTACT PERSON</h6>\\n<p>Michelle </p>\\n<h6>PHONE</h6>\\n<p><a href=\\\"tel:0738559778\\\">07</a>34480163</p>\\n<h6><br /></h6>\",\"94\":\"Warner Lakes Family Practice\",\"93\":[\"75039\"],\"97\":\"4500\",\"98\":\"qld\",\"95\":\"1185b Old North Road\",\"96\":\"Warner\"}}',NULL,NULL,NULL,'2021-04-08 05:04:20','2021-04-08 05:04:20','b282a9b8-64bc-4dc4-8c05-3651710d381d'),(150191,150190,1,NULL,150189,NULL,'pending',NULL,NULL,'{\"typeId\":\"27\",\"authorId\":150189,\"title\":\"Digital Health Intervention Study\",\"slug\":\"digital-health-intervention-study\",\"postDate\":null,\"expiryDate\":1625666400,\"enabled\":false,\"newParentId\":null,\"fields\":{\"128\":\"Woolcock Institute of Medical Research\",\"124\":\"You are invited to participate in a study that aims to explore the perspectives and experiences of primary care professionals (GPs, nurses and pharmacists) on the implementation of digital health interventions and sleep management. Primary care professionals can provide valuable information on how digital health interventions can be implemented into their clinical practice to facilitate better health care for patients. \\n\\nThis study involves an online survey which takes max. 8 minutes to complete. As reimbursement you will be offered to enter into a draw to win a $200 Visa gift card. \\nYou will also be invited to complete a 30-40 min remote semi-structured interview. This interview will further explore your experiences and perceptions of digital health interventions, reimbursed with a $50 gift card.\\n\",\"125\":\"https://survey.gpsfix.com.au/\"}}',NULL,NULL,NULL,'2021-04-08 05:13:04','2021-04-08 05:13:04','11c25641-5420-4f96-b680-099b605d5d73'),(150196,NULL,1,NULL,150180,NULL,'pending','',NULL,'{\"typeId\":\"19\",\"authorId\":\"150180\",\"title\":\"Medical Receptionist\",\"slug\":\"medical-receptionist-3\",\"postDate\":1617858240,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"manager@warnerlakesfamilypractice.com.au\",\"100\":\"Michelle\",\"70\":\"734480163\",\"99\":\"<p>Looking for a experienced medical receptionist for a casual part time position to join our team.<br /><br />Previous experience with Best Practice preferred. </p>\\n<p>Duties as follows:</p>\\n\\n<ul><li>manage appointment schedules</li><li>working knowledge of Medicare item numbers for general practice</li><li>assisting clients with booking appointments with specialists and other providers</li><li>work effectively within a team and also able to work independently</li><li>possess a strong work ethic</li><li>display a professional manner via phone and with patients in the clinic setting</li><li>able to multitask and display fantastic organisational skills</li><li>scheduling appointments and processing payments</li><li>banking</li><li>organising incoming correspondence and directing to the appropriate health professional</li><li>liaising with patients and their families and assisting with arrangements for their care</li><li>assisting our GP\'s and allied health providers with required administration tasks.</li></ul>\\n\\n<p><br /></p>\\n<p>The position offers approximately 20-25 hours per week with the potential to increase.<br /></p>\\n\\n<p><br /></p>\",\"94\":\"Warner Lakes Family Practice\",\"93\":[\"75035\"],\"97\":\"4500\",\"98\":\"qld\",\"95\":\"1185b Old North Road\",\"96\":\"Warner\"}}',NULL,NULL,NULL,'2021-04-08 05:14:55','2021-04-08 05:14:55','adc83c47-87bc-432f-826e-05f8e0e7713b'),(150310,150309,1,NULL,113369,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":113369,\"title\":\"Gynaecology Workshop\",\"slug\":\"gynaecology-workshop\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"\",\"67\":\"The GP Alignment Program is an award-winning* series of free workshops hosted by\\nMetro North Hospital and Health Service and Brisbane North PHN GPLO program.\\n\\nSpecific information relating to each workshop including registration\\ndetails will be made available closer to the date of each workshop.\\n\\nFOR MORE INFORMATION\\nPlease contact the GPLO team\\nPhone:07 3646 6852\\nEmail: mngplo@health.qld.gov.au\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Brisbane North PHN and Metro North Hospital and Health Service\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Gynaecology Workshop - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Gynaecology Workshop - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-09 03:04:25','2021-04-09 03:04:25','35ece6db-d60a-4c3a-ab0f-c056ba3ddac6'),(150312,150309,1,NULL,113369,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"113369\",\"title\":\"Gynaecology Workshop\",\"slug\":\"gynaecology-workshop\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"\",\"67\":\"The GP Alignment Program is an award-winning* series of free workshops hosted by\\nMetro North Hospital and Health Service and Brisbane North PHN GPLO program.\\n\\nSpecific information relating to each workshop including registration\\ndetails will be made available closer to the date of each workshop.\\n\\nFOR MORE INFORMATION\\nPlease contact the GPLO team\\nPhone:07 3646 6852\\nEmail: mngplo@health.qld.gov.au\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Brisbane North PHN and Metro North Hospital and Health Service\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Gynaecology Workshop - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Gynaecology Workshop - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-09 03:04:42','2021-04-09 03:04:42','cd29d977-e1ea-401c-a1bc-c1cc73f6fefd'),(150313,150309,1,NULL,113369,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"113369\",\"title\":\"Gynaecology Workshop\",\"slug\":\"gynaecology-workshop\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"\",\"67\":\"The GP Alignment Program is an award-winning* series of free workshops hosted by\\nMetro North Hospital and Health Service and Brisbane North PHN GPLO program.\\n\\nSpecific information relating to each workshop including registration\\ndetails will be made available closer to the date of each workshop.\\n\\nFOR MORE INFORMATION\\nPlease contact the GPLO team\\nPhone:07 3646 6852\\nEmail: mngplo@health.qld.gov.au\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Brisbane North PHN and Metro North Hospital and Health Service\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Gynaecology Workshop - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Gynaecology Workshop - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-09 03:04:43','2021-04-09 03:04:43','da9385bf-ff26-48eb-ab23-1ee5c742e5ba'),(150316,150315,1,NULL,113369,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":113369,\"title\":\"Maternity Workshop\",\"slug\":\"maternity-workshop\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"\",\"67\":\"The GP Alignment Program is an award-winning* series of free workshops hosted by\\nMetro North Hospital and Health Service and Brisbane North PHN GPLO program.\\n\\nSpecific information relating to each workshop including registration\\ndetails will be made available closer to the date of each workshop.\\n\\nFOR MORE INFORMATION\\nPlease contact the GPLO team\\nPhone: 07 3646 6852\\nEmail: mngplo@health.qld.gov.au\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Brisbane North PHN and Metro North Hospital and Health Service\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Maternity Workshop - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Maternity Workshop - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-09 03:06:04','2021-04-09 03:06:04','50b5da1d-f676-4ccf-b15f-2f0fda8210d3'),(150324,150323,1,2315,150319,NULL,'pending','',NULL,'{\"typeId\":\"27\",\"authorId\":\"150319\",\"title\":\"My health for life - General Practice Survey\",\"slug\":\"my-health-for-life-general-practice-survey\",\"postDate\":1617939060,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"128\":\"My health for life\",\"124\":\"<p>The My health for life team are seeking feedback from GPs, practices nurses and administration staff on your knowledge and perception of the program. Your feedback will be considered for future improvements to the program. Feedback from all team members within the practice is welcomed. Participants will have the opportunity to win 1 of 3 $100 Coles Myer gift vouchers.<br /></p>\",\"125\":\"https://forms.office.com/pages/responsepage.aspx?id=MPWbVrhYcEOEYW-UYiIh2qvSMdNKJZdBkvBonrwfP2VUNlFMSVVORFdDRVFISzlQN1k2VkoxU0FaRSQlQCN0PWcu\"}}',NULL,NULL,NULL,'2021-04-09 03:35:02','2021-04-09 03:35:02','22870bf8-437e-4f7c-993c-59d61f168793'),(150330,150329,1,NULL,128992,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":128992,\"title\":\"Telegraph Road Clinic – VR General Practitioner\",\"slug\":\"telegraph-road-clinic-vr-general-practitioner\",\"postDate\":null,\"expiryDate\":1620482400,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"ejstrc@tpg.com.au\",\"100\":\"Elizabeth Sullivan\",\"70\":\"+61732617000\",\"99\":\"Telegraph Road Clinic – VR General Practitioner\\n\\nOur busy practice has an immediate vacancy for an experienced VR General Practitioner committed to quality clinical care to join our team of GP’s in our well-established Brisbane Northside practice.\\n \\nOur practice is open Monday to Friday 6.00 am until 8.30 pm and Saturday 8.00 am to 3.00 pm\\n\\nWe are a trusted family practice within the community and known for providing excellent medical care. \\n• AGPAL accredited\\n• Pracsoft/Medical Director Software\\n• fully equipped and computerised practice\\n• non corporate (doctor owned)\\n• private billing practice\\n• 65 per cent receipted income\\n• committed team player\\n• Up to 4 days available – \\n• established patient base\\n• immediate start available\\n\\nPlease Email your CV to elizabeth.sullivan@telegraphroadclinic.com.au \\n\\nCONTACT PERSON\\nElizabeth Sullivan \\n\\nPHONE\\n07 3261 7000\\n\\nEMAIL\\nelizabeth.sullivan@telegraphroadclinic.com.au\\n\\nLOCATION\\nShop 26 Bracken Ridge Shopping Plaza, 250 Telegraph Road \\nBracken Ridge 4017 \\n\",\"94\":\"Telegraph Road Clinic\",\"93\":[\"65423\"],\"97\":\"4017\",\"98\":\"qld\",\"95\":\"Shop 26 Bracken Ridge Shopping Plaza, 250 Telegraph Road\",\"96\":\"Bracken Ridge\"}}',NULL,NULL,NULL,'2021-04-09 04:06:07','2021-04-09 04:06:07','d0d45094-e17c-4820-b90d-d2991d400c16'),(150332,150329,1,NULL,128992,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"128992\",\"title\":\"Telegraph Road Clinic – VR General Practitioner\",\"slug\":\"telegraph-road-clinic-vr-general-practitioner\",\"postDate\":null,\"expiryDate\":1620482400,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"ejstrc@tpg.com.au\",\"100\":\"Elizabeth Sullivan\",\"70\":\"+61732617000\",\"99\":\"Telegraph Road Clinic – VR General Practitioner\\n\\nOur busy practice has an immediate vacancy for an experienced VR General Practitioner committed to quality clinical care to join our team of GP’s in our well-established Brisbane Northside practice.\\n \\nOur practice is open Monday to Friday 6.00 am until 8.30 pm and Saturday 8.00 am to 3.00 pm\\n\\nWe are a trusted family practice within the community and known for providing excellent medical care. \\n• AGPAL accredited\\n• Pracsoft/Medical Director Software\\n• fully equipped and computerised practice\\n• non corporate (doctor owned)\\n• private billing practice\\n• 65 per cent receipted income\\n• committed team player\\n• Up to 4 days available – \\n• established patient base\\n• immediate start available\\n\\nPlease Email your CV to elizabeth.sullivan@telegraphroadclinic.com.au \\n\\nCONTACT PERSON\\nElizabeth Sullivan \\n\\nPHONE\\n07 3261 7000\\n\\nEMAIL\\nelizabeth.sullivan@telegraphroadclinic.com.au\\n\\nLOCATION\\nShop 26 Bracken Ridge Shopping Plaza, 250 Telegraph Road \\nBracken Ridge 4017 \\n\",\"94\":\"Telegraph Road Clinic\",\"93\":[\"65423\"],\"97\":\"4017\",\"98\":\"qld\",\"95\":\"Shop 26 Bracken Ridge Shopping Plaza, 250 Telegraph Road\",\"96\":\"Bracken Ridge\"}}',NULL,NULL,NULL,'2021-04-09 04:06:46','2021-04-09 04:06:46','fea2892c-f744-462c-bff8-326865c47b57'),(150333,150329,1,NULL,128992,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"128992\",\"title\":\"Telegraph Road Clinic – VR General Practitioner\",\"slug\":\"telegraph-road-clinic-vr-general-practitioner\",\"postDate\":null,\"expiryDate\":1620482400,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"ejstrc@tpg.com.au\",\"100\":\"Elizabeth Sullivan\",\"70\":\"+61732617000\",\"99\":\"Telegraph Road Clinic – VR General Practitioner\\n\\nOur busy practice has an immediate vacancy for an experienced VR General Practitioner committed to quality clinical care to join our team of GP’s in our well-established Brisbane Northside practice.\\n \\nOur practice is open Monday to Friday 6.00 am until 8.30 pm and Saturday 8.00 am to 3.00 pm\\n\\nWe are a trusted family practice within the community and known for providing excellent medical care. \\n• AGPAL accredited\\n• Pracsoft/Medical Director Software\\n• fully equipped and computerised practice\\n• non corporate (doctor owned)\\n• private billing practice\\n• 65 per cent receipted income\\n• committed team player\\n• Up to 4 days available – \\n• established patient base\\n• immediate start available\\n\\nPlease Email your CV to elizabeth.sullivan@telegraphroadclinic.com.au \\n\\nCONTACT PERSON\\nElizabeth Sullivan \\n\\nPHONE\\n07 3261 7000\\n\\nEMAIL\\nelizabeth.sullivan@telegraphroadclinic.com.au\\n\\nLOCATION\\nShop 26 Bracken Ridge Shopping Plaza, 250 Telegraph Road \\nBracken Ridge 4017 \\n\",\"94\":\"Telegraph Road Clinic\",\"93\":[\"65423\"],\"97\":\"4017\",\"98\":\"qld\",\"95\":\"Shop 26 Bracken Ridge Shopping Plaza, 250 Telegraph Road\",\"96\":\"Bracken Ridge\"}}',NULL,NULL,NULL,'2021-04-09 04:06:47','2021-04-09 04:06:47','2e3522f8-4ba1-4609-9a76-f090da01b7c0'),(150373,150372,1,NULL,147049,NULL,'pending',NULL,NULL,'{\"typeId\":\"27\",\"authorId\":147049,\"title\":\"Seeking Volunteers for Research Study at The University of Queensland: Exploring GPs’ Perspectives on N-of-1 Clinical Trials and Single-Case Designs in Healthcare\",\"slug\":\"seeking-volunteers-for-research-study-at-the-university-of-queensland-exploring-gps-perspectives-on-n-of-1-clinical-trials-and-single-case-designs-in-healthcare\",\"postDate\":null,\"expiryDate\":1630418400,\"enabled\":false,\"newParentId\":null,\"fields\":{\"128\":\"The University of Queensland\",\"124\":\"We are inviting General Practitioners with at least 1 year of clinical experience to participate in an interview exploring their views on N-of-1 clinical trials and single-case designs in healthcare.\\n\\nGroup based research methods, such as the Randomised Controlled Trial, focus on how effective a treatment is on average. In contrast, N-of-1 clinical trials and single-case designs can be used to rigorously evaluate treatments for an individual patient. For more information about study and the importance of these methods, please visit https://clinical-research.centre.uq.edu.au/exploring-stakeholders%E2%80%99-perspectives-about-using-n-1-trials-and-single-case-studies-healthcare-theory-based-interview-study.\\n\\nDuring this study, you will be asked to:\\n\\n· complete a short online survey collecting background information – takes no longer than 5 minutes to complete\\n\\n· watch a short informational video on N-of-1 clinical trials and single-case designs – takes around 10-15 minutes to watch\\n\\n· participate in a one-on-one interview via video call (or in person, at a location convenient to you), which will last between 25 and 45 minutes.\\n\\n \\n\\nBy participating in this study, you will be providing valuable information that will inform strategies to improve awareness and uptake of N-of-1 clinical trials and single-case designs in the healthcare context. \\n\\nIf you are interested in participating, please email suzanne.mcdonald@uq.edu.au or contact our study coordinator, Marisa Niemeijer (0422 437 998) for more information.\\n\\nThank you for your consideration.\\n\",\"125\":\"https://clinical-research.centre.uq.edu.au/exploring-stakeholders%E2%80%99-perspectives-about-using-n-1-trials-and-single-case-studies-healthcare-theory-based-interview-study\"}}',NULL,NULL,NULL,'2021-04-11 03:02:30','2021-04-11 03:02:30','c4e0d4d1-9ef8-4b1c-ad4b-e29e622a7ba3'),(150419,150418,1,NULL,114482,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":114482,\"title\":\"Smart Referrals - Tips, Tricks and Questions - WEBINAR\",\"slug\":\"smart-referrals-tips-tricks-and-questions-webinar\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"\",\"67\":\"This half hour lunchtime webinar will answer frequently asked questions about Smart Referrals. A recording will be available after the event.\\nSpeaker: Dr Jon Harper, Senior Clinical Editor – Sunshine Coast HealthPathways\\n\\nLearning outcomes:\\n1. Improve your speed of completion of Smart Referrals – finding the condition and specialty, mandatory and non-mandatory fields. \\n2. Utilise components to ensure referral acceptance – ‘ihover’ prompts, attaching documents and investigations\\n3. Be able to troubleshoot Smart Referrals – restart program, system error, parking referrals.\\n\\nThere will be an opportunity for a short Q &amp; A. \\nAfter registering, you will receive a confirmation email containing information about joining the webinar.\\n\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Central Queensland, Wide Bay, Sunshine Coast PHN\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Smart Referrals - Tips, Tricks and Questions - WEBINAR - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Smart Referrals - Tips, Tricks and Questions - WEBINAR - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-11 23:58:15','2021-04-11 23:58:15','01fe216a-9c1c-4ce6-b6fa-20f688ce89ab'),(150422,NULL,1,NULL,114482,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":114482,\"title\":\"Smart Referrals - Tips, Tricks and Questions - WEBINAR\",\"slug\":\"smart-referrals-tips-tricks-and-questions-webinar-2\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"\",\"67\":\"This half hour lunchtime webinar will answer frequently asked questions about Smart Referrals. A recording will be available after the event.\\nSpeaker: Dr Jon Harper, Senior Clinical Editor – Sunshine Coast HealthPathways\\n\\nLearning outcomes:\\n1. Improve your speed of completion of Smart Referrals – finding the condition and specialty, mandatory and non-mandatory fields. \\n2. Utilise components to ensure referral acceptance – ‘ihover’ prompts, attaching documents and investigations\\n3. Be able to troubleshoot Smart Referrals – restart program, system error, parking referrals.\\n\\nThere will be an opportunity for a short Q &amp; A. \\nAfter registering, you will receive a confirmation email containing information about joining the webinar.\\n\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Central Queensland, Wide Bay, Sunshine Coast PHN\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Smart Referrals - Tips, Tricks and Questions - WEBINAR - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Smart Referrals - Tips, Tricks and Questions - WEBINAR - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-11 23:58:17','2021-04-11 23:58:17','a2004bf7-aac3-4dea-8725-3d5330c4db08'),(150425,NULL,1,NULL,114482,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":114482,\"title\":\"Smart Referrals - Tips, Tricks and Questions - WEBINAR\",\"slug\":\"smart-referrals-tips-tricks-and-questions-webinar-3\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"\",\"67\":\"This half hour lunchtime webinar will answer frequently asked questions about Smart Referrals. A recording will be available after the event.\\nSpeaker: Dr Jon Harper, Senior Clinical Editor – Sunshine Coast HealthPathways\\n\\nLearning outcomes:\\n1. Improve your speed of completion of Smart Referrals – finding the condition and specialty, mandatory and non-mandatory fields. \\n2. Utilise components to ensure referral acceptance – ‘ihover’ prompts, attaching documents and investigations\\n3. Be able to troubleshoot Smart Referrals – restart program, system error, parking referrals.\\n\\nThere will be an opportunity for a short Q &amp; A. \\nAfter registering, you will receive a confirmation email containing information about joining the webinar.\\n\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Central Queensland, Wide Bay, Sunshine Coast PHN\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Smart Referrals - Tips, Tricks and Questions - WEBINAR - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Smart Referrals - Tips, Tricks and Questions - WEBINAR - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-11 23:58:19','2021-04-11 23:58:19','0a913841-fb40-4859-97d4-5fd6a073c63f'),(150427,150418,1,NULL,114482,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"114482\",\"title\":\"Smart Referrals - Tips, Tricks and Questions - WEBINAR\",\"slug\":\"smart-referrals-tips-tricks-and-questions-webinar\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"https://register.gotowebinar.com/register/2540948695749818383\",\"71\":\"\",\"67\":\"https://register.gotowebinar.com/register/2540948695749818383\\n\\nThis half hour lunchtime webinar will answer frequently asked questions about Smart Referrals. A recording will be available after the event.\\nSpeaker: Dr Jon Harper, Senior Clinical Editor – Sunshine Coast HealthPathways\\n\\nLearning outcomes:\\n1. Improve your speed of completion of Smart Referrals – finding the condition and specialty, mandatory and non-mandatory fields. \\n2. Utilise components to ensure referral acceptance – ‘ihover’ prompts, attaching documents and investigations\\n3. Be able to troubleshoot Smart Referrals – restart program, system error, parking referrals.\\n\\nThere will be an opportunity for a short Q &amp; A. \\nAfter registering, you will receive a confirmation email containing information about joining the webinar.\\n\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Central Queensland, Wide Bay, Sunshine Coast PHN\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Smart Referrals - Tips, Tricks and Questions - WEBINAR - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Smart Referrals - Tips, Tricks and Questions - WEBINAR - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-12 00:01:30','2021-04-12 00:01:30','cc3e50d0-2913-4759-a536-26afa866724d'),(150428,150418,1,NULL,114482,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"114482\",\"title\":\"Smart Referrals - Tips, Tricks and Questions - WEBINAR\",\"slug\":\"smart-referrals-tips-tricks-and-questions-webinar\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"https://register.gotowebinar.com/register/2540948695749818383\",\"71\":\"\",\"67\":\"https://register.gotowebinar.com/register/2540948695749818383\\n\\nThis half hour lunchtime webinar will answer frequently asked questions about Smart Referrals. A recording will be available after the event.\\nSpeaker: Dr Jon Harper, Senior Clinical Editor – Sunshine Coast HealthPathways\\n\\nLearning outcomes:\\n1. Improve your speed of completion of Smart Referrals – finding the condition and specialty, mandatory and non-mandatory fields. \\n2. Utilise components to ensure referral acceptance – ‘ihover’ prompts, attaching documents and investigations\\n3. Be able to troubleshoot Smart Referrals – restart program, system error, parking referrals.\\n\\nThere will be an opportunity for a short Q &amp; A. \\nAfter registering, you will receive a confirmation email containing information about joining the webinar.\\n\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Central Queensland, Wide Bay, Sunshine Coast PHN\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Smart Referrals - Tips, Tricks and Questions - WEBINAR - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Smart Referrals - Tips, Tricks and Questions - WEBINAR - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-12 00:01:31','2021-04-12 00:01:31','81108b80-4da4-49a0-b9a9-ec2b24275ac7'),(150430,150418,1,NULL,114482,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"114482\",\"title\":\"Smart Referrals - Tips, Tricks and Questions - WEBINAR\",\"slug\":\"smart-referrals-tips-tricks-and-questions-webinar\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"https://register.gotowebinar.com/register/2540948695749818383\",\"71\":\"\",\"67\":\"https://register.gotowebinar.com/register/2540948695749818383\\n\\nThis half hour lunchtime webinar will answer frequently asked questions about Smart Referrals. A recording will be available after the event.\\nSpeaker: Dr Jon Harper, Senior Clinical Editor – Sunshine Coast HealthPathways\\n\\nLearning outcomes:\\n1. Improve your speed of completion of Smart Referrals – finding the condition and specialty, mandatory and non-mandatory fields. \\n2. Utilise components to ensure referral acceptance – ‘ihover’ prompts, attaching documents and investigations\\n3. Be able to troubleshoot Smart Referrals – restart program, system error, parking referrals.\\n\\nThere will be an opportunity for a short Q &amp; A. \\nAfter registering, you will receive a confirmation email containing information about joining the webinar.\\n\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Central Queensland, Wide Bay, Sunshine Coast PHN\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Smart Referrals - Tips, Tricks and Questions - WEBINAR - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Smart Referrals - Tips, Tricks and Questions - WEBINAR - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-12 00:02:09','2021-04-12 00:02:09','4c350ef9-25e0-4d09-8c41-08d08256cec2'),(150431,150418,1,NULL,114482,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"114482\",\"title\":\"Smart Referrals - Tips, Tricks and Questions - WEBINAR\",\"slug\":\"smart-referrals-tips-tricks-and-questions-webinar\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"https://register.gotowebinar.com/register/2540948695749818383\",\"71\":\"\",\"67\":\"https://register.gotowebinar.com/register/2540948695749818383\\n\\nThis half hour lunchtime webinar will answer frequently asked questions about Smart Referrals. A recording will be available after the event.\\nSpeaker: Dr Jon Harper, Senior Clinical Editor – Sunshine Coast HealthPathways\\n\\nLearning outcomes:\\n1. Improve your speed of completion of Smart Referrals – finding the condition and specialty, mandatory and non-mandatory fields. \\n2. Utilise components to ensure referral acceptance – ‘ihover’ prompts, attaching documents and investigations\\n3. Be able to troubleshoot Smart Referrals – restart program, system error, parking referrals.\\n\\nThere will be an opportunity for a short Q &amp; A. \\nAfter registering, you will receive a confirmation email containing information about joining the webinar.\\n\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Central Queensland, Wide Bay, Sunshine Coast PHN\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Smart Referrals - Tips, Tricks and Questions - WEBINAR - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Smart Referrals - Tips, Tricks and Questions - WEBINAR - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-12 00:02:10','2021-04-12 00:02:10','5c50acf1-e78f-44c6-af77-c1d1b0aedb2b'),(150489,150488,1,NULL,128860,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":128860,\"title\":\"Doctor\",\"slug\":\"doctor\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"kathy@mbmedical.com.au\",\"100\":\"Kathy Blake\",\"70\":\"0407 386 326\",\"99\":\"Are you a GP that loves doing Skin checks/Procedures, due to continuous growth we are seeking a GP to join our team.\\n\\nWe are a Privately owned clinic, fully accredited with full time nursing support. We have a friendly, efficient, and reliable team of Reception, Practice Management, Allied health and onsite pathology. \\n\\nFurther information can be obtained by contacting Kathy Blake 0407 386 326 or email kathy@mbmedical.com.au\",\"94\":\"Moreton Bay Medical Centre\",\"93\":[\"65423\"],\"97\":\"4021\",\"98\":\"qld\",\"95\":\"Kippa Ring Shopping Centre, Shop 11/284 Anzac Avenue\",\"96\":\"Kippa Ring\"}}',NULL,NULL,NULL,'2021-04-12 01:52:04','2021-04-12 01:52:04','15700b5a-9566-42c8-ae60-ca30d2463295'),(150713,NULL,1,NULL,128499,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":128499,\"title\":\"Hepatitis B s100 Prescriber Course\",\"slug\":\"hepatitis-b-s100-prescriber-course\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Zoom\",\"71\":\"jane.tieken@ashm.org.au\",\"70\":\"0411 536 307\",\"67\":\"Become an s100 prescriber for hepatitis B. Learn how to manage and treat chronic hepatitis B in primary care settings. This online training course is designed for General Practitioners, other community-based medical practitioners and nurse practitioners to effectively diagnose, manage and treat chronic hepatitis B within their primary care setting. \\n\\nThis course will take place over 3 weeks with a combination of self paced learning and interactive webinars.\\n\\nThis course is for: General Practitioners and Nurse Practitioners and other community-based Medical Practitioners in Queensland. \\n\\nSession 1: 4 May 2021, 6:30pm – 8:30pm (AEST) \\n\\nSession 2: 11 May 2021, 6:30pm – 8:30pm (AEST) \\n\\nSession 3: 18 May 2021, 6:30pm – 8:30pm (AEST) \\n\\nFor more information and to register, visit: https://www.ashm.org.au/eventinforeg2/?id=ba76ba4d-a492-eb11-b1ac-002248152bf2\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"ASHM\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis B s100 Prescriber Course - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis B s100 Prescriber Course - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-12 05:42:34','2021-04-12 05:42:34','0816cb86-c3dd-47dd-bbd3-645c81652034'),(150716,150715,1,NULL,128499,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":128499,\"title\":\"Hepatitis B s100 Prescriber Course\",\"slug\":\"hepatitis-b-s100-prescriber-course-2\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Zoom\",\"71\":\"jane.tieken@ashm.org.au\",\"70\":\"0411 536 307\",\"67\":\"Become an s100 prescriber for hepatitis B. Learn how to manage and treat chronic hepatitis B in primary care settings. This online training course is designed for General Practitioners, other community-based medical practitioners and nurse practitioners to effectively diagnose, manage and treat chronic hepatitis B within their primary care setting. \\n\\nThis course will take place over 3 weeks with a combination of self paced learning and interactive webinars.\\n\\nThis course is for: General Practitioners and Nurse Practitioners and other community-based Medical Practitioners in Queensland. \\n\\nSession 1: 4 May 2021, 6:30pm – 8:30pm (AEST) \\n\\nSession 2: 11 May 2021, 6:30pm – 8:30pm (AEST) \\n\\nSession 3: 18 May 2021, 6:30pm – 8:30pm (AEST) \\n\\nFor more information and to register, visit: https://www.ashm.org.au/eventinforeg2/?id=ba76ba4d-a492-eb11-b1ac-002248152bf2\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"ASHM\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis B s100 Prescriber Course - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis B s100 Prescriber Course - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-12 05:42:36','2021-04-12 05:42:36','bb537907-1af6-4204-b41e-bf36483d42a5'),(150774,150715,1,NULL,128499,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"128499\",\"title\":\"Hepatitis B s100 Prescriber Course\",\"slug\":\"hepatitis-b-s100-prescriber-course-2\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Zoom\",\"71\":\"jane.tieken@ashm.org.au\",\"70\":\"0411 536 307\",\"67\":\"Become an s100 prescriber for hepatitis B. Learn how to manage and treat chronic hepatitis B in primary care settings. This online training course is designed for General Practitioners, other community-based medical practitioners and nurse practitioners to effectively diagnose, manage and treat chronic hepatitis B within their primary care setting. \\n\\nThis course will take place over 3 weeks with a combination of self paced learning and interactive webinars.\\n\\nThis course is for: General Practitioners and Nurse Practitioners and other community-based Medical Practitioners in Queensland. \\n\\nSession 1: 4 May 2021, 6:30pm – 8:30pm (AEST) \\n\\nSession 2: 11 May 2021, 6:30pm – 8:30pm (AEST) \\n\\nSession 3: 18 May 2021, 6:30pm – 8:30pm (AEST) \\n\\nFor more information and to register, visit: https://www.ashm.org.au/eventinforeg2/?id=ba76ba4d-a492-eb11-b1ac-002248152bf2\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"ASHM\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis B s100 Prescriber Course - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis B s100 Prescriber Course - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-12 05:43:15','2021-04-12 05:43:15','2cb0abe6-029f-45c8-8a24-90c72d5b74bb'),(150775,150715,1,NULL,128499,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"128499\",\"title\":\"Hepatitis B s100 Prescriber Course\",\"slug\":\"hepatitis-b-s100-prescriber-course-2\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Zoom\",\"71\":\"jane.tieken@ashm.org.au\",\"70\":\"0411 536 307\",\"67\":\"Become an s100 prescriber for hepatitis B. Learn how to manage and treat chronic hepatitis B in primary care settings. This online training course is designed for General Practitioners, other community-based medical practitioners and nurse practitioners to effectively diagnose, manage and treat chronic hepatitis B within their primary care setting. \\n\\nThis course will take place over 3 weeks with a combination of self paced learning and interactive webinars.\\n\\nThis course is for: General Practitioners and Nurse Practitioners and other community-based Medical Practitioners in Queensland. \\n\\nSession 1: 4 May 2021, 6:30pm – 8:30pm (AEST) \\n\\nSession 2: 11 May 2021, 6:30pm – 8:30pm (AEST) \\n\\nSession 3: 18 May 2021, 6:30pm – 8:30pm (AEST) \\n\\nFor more information and to register, visit: https://www.ashm.org.au/eventinforeg2/?id=ba76ba4d-a492-eb11-b1ac-002248152bf2\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"ASHM\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis B s100 Prescriber Course - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis B s100 Prescriber Course - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-12 05:43:16','2021-04-12 05:43:16','439e1501-a36d-46eb-8734-0eff919bc225'),(150888,150887,1,NULL,150886,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":150886,\"title\":\"Updates in the management of complex skin cancers\",\"slug\":\"updates-in-the-management-of-complex-skin-cancers\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Victoria Park Golf Complex, 309 Herston Road, Herston QLD 4006\",\"71\":\"rebecca.kavanagh@genesiscare.com\",\"70\":\"0436340099\",\"67\":\"InfinityPATH and GenesisCare invite GPs to join us for dinner and an evening of specialist updates and collaborative patient case discussion focusing on the diagnosis and management of complex skin cancers. Presenters include Dermatologist/Dermatopathologist Dr Karl Rodins, specialist skin GP Dr Muhammad Hussain and Radiation Oncologist Dr Art Kaminski. \",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"InfinityPATH & GenesisCare\",\"72\":\"within\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Updates in the management of complex skin cancers - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Updates in the management of complex skin cancers - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-13 02:50:33','2021-04-13 02:50:33','b66d27ce-482c-4c92-94ab-94d2e0f217b5'),(151157,151156,1,NULL,97391,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":97391,\"title\":\"COVID-19 vaccines - culturally appropriate responses to commonly asked questions from multicultural communities\",\"slug\":\"covid-19-vaccines-culturally-appropriate-responses-to-commonly-asked-questions-from-multicultural-communities\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"info@refugeehealthnetworkqld.org.au\",\"67\":\"This event will help equip you to understand and respond to the concerns and questions that people from culturally and linguistically diverse (CALD) communities have about the COVID-19 vaccines to help them make informed decisions.People from CALD backgrounds face many barriers to equitable access to health care and information. Health professionals, settlement workers and other workers supporting people of CALD backgrounds play an important role in ensuring clients have access to accurate information about the COVID-19 vaccines.\\n\\nYou are invited to an online education event to hear commonly asked questions from CALD communities (and how to respond to them) and cultural considerations around the COVID-19 vaccines. A panel of health and community representatives with experience in working with CALD and refugee background communities will share their insights and knowledge.\\n\\nPanel members include: Evelyn Pe, Refugee Health Consultant (G11), Asad Khalid MyQ Council Youth Leader, Dr. Paul Griffin, Infectious Disease Specialist, Dr. Margaret Kay, GP and Clinical Lead in Multicultural Health, Anna Strikis, Refugee Health Nurse.\\n\\nhttps://www.eventbrite.com.au/e/covid-19-vaccines-culturally-appropriate-responses-with-cald-communities-tickets-150677112299\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Refugee Health Network Qld Clinical Advisory and Brisbane South PHN\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"COVID-19 vaccines - culturally appropriate responses to commonly asked questions from multicultural communities - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"COVID-19 vaccines - culturally appropriate responses to commonly asked questions from multicultural communities - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-14 23:38:29','2021-04-14 23:38:29','20766388-e8e1-42ef-9beb-ed6bdbcdaf72'),(151171,151170,1,NULL,141326,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":141326,\"title\":\"General Practitioner\",\"slug\":\"general-practitioner\",\"postDate\":null,\"expiryDate\":1619964000,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"sbursey@brisyouth.org\",\"100\":\"Simone Bursey\",\"70\":\"0468998554\",\"99\":\"This is an exciting opportunity to make a difference in the lives of vulnerable young people. The position provides primary health care services for young people visiting the BYS medical clinic. The aim is to improve young people’s access to health care information and services, address health and mental health needs to promote wellbeing, and encourage them to engage in their healthcare.\",\"94\":\"Brisbane Youth Service\",\"93\":[\"65423\"],\"97\":\"4006\",\"98\":\"qld\",\"95\":\"42 McLachlan St\",\"96\":\"Fortitude Valley\"}}',NULL,NULL,NULL,'2021-04-15 06:32:26','2021-04-15 06:32:26','563e5f4f-1829-4641-9abf-a06a1b66e609'),(151174,151173,1,NULL,141326,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":141326,\"title\":\"General Practitioner\",\"slug\":\"general-practitioner-4\",\"postDate\":null,\"expiryDate\":1619964000,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"sbursey@brisyouth.org\",\"100\":\"Simone Bursey\",\"70\":\"0468998554\",\"99\":\"This is an exciting opportunity to make a difference in the lives of vulnerable young people. The position provides primary health care services for young people visiting the BYS medical clinic. The aim is to improve young people’s access to health care information and services, address health and mental health needs to promote wellbeing, and encourage them to engage in their healthcare.\",\"94\":\"Brisbane Youth Service\",\"93\":[\"65423\"],\"97\":\"4006\",\"98\":\"qld\",\"95\":\"42 McLachlan St\",\"96\":\"Fortitude Valley\"}}',NULL,NULL,NULL,'2021-04-15 06:32:28','2021-04-15 06:32:28','804d0faf-d0c0-4a8b-b84d-04419034f648'),(151182,151181,1,2350,151177,NULL,'pending','',NULL,'{\"typeId\":\"19\",\"authorId\":\"151177\",\"title\":\"Job vacancy\",\"slug\":\"job-vacancy\",\"postDate\":1618522200,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"admin@windsorfamilymedical.com.au\",\"100\":\"Selina Stephens or Dr Mohammed Akram Hossain\",\"70\":\"0438 271 939\",\"99\":\"<p>We are a family owned practice looking for 1 full time VR GP and 1 part time VR GP. We are located very closely to the RBWH and are only a couple of bus/train stops from Brisbane city. We are a mixed billing practice with an RN. </p>\",\"94\":\"Windsor Family Medical Centre\",\"93\":[\"65423\"],\"97\":\"4030\",\"98\":\"qld\",\"95\":\"Shop 1, 222 Lutwyche Road\",\"96\":\"Windsor\"}}',NULL,NULL,NULL,'2021-04-15 21:36:01','2021-04-15 21:36:01','25779ed8-c2b3-4422-9e91-57ae3b3e08ac'),(151188,151187,1,NULL,101029,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":101029,\"title\":\"Woody Point Medical Centre - General Practitioner\",\"slug\":\"woody-point-medical-centre-general-practitioner\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"pmanager.woodypointmedical@gmail.com\",\"100\":\"Josette\",\"70\":\"073284 9452\",\"99\":\"Are you looking at working in busy family owned well established medical practice in front of the picturesque water views of Woody Point? \\n\\nOur practice is open Monday to Friday 9.00 am until 5pm pm, with no weekend work.\\n\\nWe are a trusted family practice within the community and known for providing excellent medical care.\\n\\nQPA accredited\\nBest Practice Software\\nNon corporate (doctor owned)\\nBulk billing practice\\nCompetitive remuneration and guaranteed income\\n\\nPlease contact Josette via email pmanager.woodypointmedical@gmail.com\",\"94\":\"Woody Point Medical Centre\",\"93\":[\"65423\"],\"97\":\"4019\",\"98\":\"qld\",\"95\":\"28 Lilla St WOODY POINT QLD 4019, 28 Lilla St\",\"96\":\"WOODY POINT\"}}',NULL,NULL,NULL,'2021-04-16 01:07:34','2021-04-16 01:07:34','0961442e-d31f-450c-b571-5c593239affc'),(151198,NULL,1,NULL,151094,NULL,'pending','',NULL,'{\"typeId\":\"5\",\"authorId\":\"151094\",\"title\":\"A-Z Cardiology Series: Atrial Fibrillation & Heart Murmurs\",\"slug\":\"a-z-cardiology-series-atrial-fibrillation-heart-murmurs\",\"postDate\":1618722780,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"admin@medd.com.au\",\"70\":\"0407986738\",\"67\":\"<p><strong>Lateral Connections in collaboration with MEDD, invite you to attend an RACGP 3 Point CPD Webinar Series</strong></p>\\n\\n<p>MEDD is excited to announce our partnership with RACGP CPD Provider, Lateral Connections, and bring you our new series, <strong>A-Z Cardiology Series.</strong> Our partnership gives Australian GPs the opportunity to network with local participating Cardiologists and get a refresher on the latest clinical updates and guidelines for all cardiac conditions, whilst contributing to their annual RACGP CPD Points.</p>\\n<p>On behalf of Dr Dale Murdoch from Prince Charles Hospital and Dr Kieran Dauber from St Vincent’s Hospital Northside, we invite you to attend this RACGP CPD Accredited Virtual Meeting, focusing on Atrial Fibrillation &amp; Heart Murmurs.</p>\\n<p>Please register to attend via this link: <a href=\\\"https://medd.com.au/events/a-z-virtual/\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">Click here</a></p>\\n\\n<p><strong>Why Attend? </strong></p>\\n<p>At the conclusion of this meeting, the attendee will be able to: </p>\\n<p>1. Identify the significance of different heart murmurs and when to initiate a further investigation? </p>\\n<p>2. Outline the indications and safety consideration for Initiation and managing anticoagulation therapy for atrial fibrillation</p>\\n<p>3. Identify the signs, symptoms and management pathways of aortic and mitral valve disease </p>\\n\\n<p><strong>About the Speakers: </strong></p>\\n<p><strong>Dr Dale Murdoch - Interventional Cardiologist </strong><br />Dale is an Interventional Cardiologist who has an interest in structural heart disease intervention, transcatheter heart valves and transformative technology in healthcare.</p>\\n<p><strong>Dr Kieran Dauber - Cardiologist Electrophysiologist</strong><br />Kieran is a Cardiologist Electrophysiologist with a focus on ablation of cardiac arrhythmias including atrial fibrillation and ventricular tachycardia.</p>\\n<p><br /></p>\\n<p>This event is proudly sponsored by Boston Scientific and Edwards Lifesciences. <br /></p>\",\"68\":{\"ownerId\":151191,\"ownerSiteId\":1,\"fieldId\":68,\"startDate\":[],\"endDate\":[],\"allDay\":0,\"repeats\":0,\"days\":null,\"endRepeat\":null,\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":null,\"months\":null},\"7\":[\"151194\"],\"69\":\"Lateral Connections and MEDD\",\"72\":\"online\",\"82\":{\"titleRaw\":{\"1\":\"A-Z Cardiology Series: Atrial Fibrillation & Heart Murmurs\"},\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"A-Z Cardiology Series: Atrial Fibrillation & Heart Murmurs - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"A-Z Cardiology Series: Atrial Fibrillation & Heart Murmurs - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":\"\"}}}}',NULL,NULL,NULL,'2021-04-18 05:46:30','2021-04-18 05:46:30','e73ea533-7c07-48f8-8c4a-cb4b0eb38518'),(151213,151212,1,NULL,151209,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":151209,\"title\":\"Borderline Personality Disorder in Adolescents: Myths, Identity & Treatment\",\"slug\":\"borderline-personality-disorder-in-adolescents-myths-identity-treatment\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"https://www.trybooking.com/BPZWU\",\"71\":\"rbrown@bpdfoundation.org.au\",\"70\":\"0402855159\",\"67\":\"Dr. Carla Sharp will present ‘state-of-the-science’ information on the conceptualization of personality challenges in adolescents. The barriers (myths) regarding early detection and intervention of personality challenges in adolescents as well as evidence in support of the diagnosis in adolescents will be discussed.\\n\\nDr. Sharp will also review the development of identity. Participants will be introduced to research on the normative development of personality and identity during adolescence, as well as deviations from normative developmental trajectories. To this end, Dan McAdams’s model for typical personality and identity development during childhood and adolescence will be presented and discussion will follow on how identity development may go awry manifesting in personality challenges.\\n\\nMentalizing will be introduced as a critical skill for supporting healthy personality development. Dr. Sharp will then cover evidence-based assessment and treatment where participants will be introduced to structured and clinical assessment tools for adolescents with personality challenges, when conceptualized through the lens of identity development and mentalization.\\n\\nWHO SHOULD ATTEND:\\nThis workshop is ideally suited to clinicians from a range of mental health and allied health sectors who want to broaden their understanding of BPD and to be able to offer appropriate supports.\\n\\nPRESENTER: \\nCarla Sharp Ph.D. \\nProfessor of Psychology;\\nInterim Associate Dean for Faculty and Research;\\nDirector of the Adolescent Diagnosis Assessment Prevention and Treatment Center:\\nDirector of the Developmental Psychopathology Lab at the University of Houston.\\n\\nDr. Sharp has significantly advanced the scientific understanding of the phenomenology, causes, correlates and treatment of personality pathology in youth. She is the recipient of the 2016 Mid-career award, North American Society for the Study of Personality Disorders and the 2018 Award for Achievement in the Field of Severe Personality Disorders from the Personality Disorders Institute and Borderline Personality Disorder Resource Center, New York.\\n\\nShe is the current President of the International Society for the Study of Personality Disorders and incoming Associate Editor for APA journal Personality Disorders: Theory, Research and Treatment. She has published over 270 peer reviewed publications, in addition to numerous chapters and books, including Handbook of Borderline Personality Disorder in Children and Adolescents (Springer, 2013).\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australian BPD Foundation\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Borderline Personality Disorder in Adolescents: Myths, Identity & Treatment - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Borderline Personality Disorder in Adolescents: Myths, Identity & Treatment - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-18 22:37:31','2021-04-18 22:37:31','3952f244-d1f6-4643-8787-02689ac99a67'),(151221,NULL,1,NULL,151216,NULL,'pending','',NULL,'{\"typeId\":\"27\",\"authorId\":\"151216\",\"title\":\"The role of the Commonwealth Home Support Programme (CHSP) in your community\",\"slug\":\"the-role-of-the-commonwealth-home-support-programme-chsp-in-your-community\",\"postDate\":1618800840,\"expiryDate\":1621171800,\"enabled\":false,\"newParentId\":null,\"fields\":{\"128\":\"COTA Queensland\",\"124\":\"<p><strong>What are your experiences of the Commonwealth Home Support Programme (CHSP)? What role do CHSP services play in helping you and people in your community to age well?</strong> <br />\\n<br />\\nAustralia’s aged care system has experienced significant change over recent years and more change is expected following the Royal Commission into Aged Care Quality and Safety. One of the recommendations from this and previous reviews is to create a single care in the home support program. This would combine many of the services of the current Commonwealth Home Support Programme (CHSP) and Home Care Packages (HCP) into one single program. <br />\\n<br />\\nCOTA Queensland is seeking your input to inform our feedback to Government and the sector at this time of system change. <br />\\n<br />\\nOver the past few months, COTA Queensland has been inviting people to share their thoughts about and experiences of ageing in regional, rural and remote communities across Queensland, highlighting those components of communities that support people to age well. This has helped to enhance understanding of the challenges, the impact of COVID-19, what is working well, and what could make a difference. </p>\\n<p>Focus is now turning to the ways that aged care supports and services, as well as the broader community and social infrastructure, foster communities where people can live and age well. A new survey has opened, and people are invited to share their thoughts and experiences of the Commonwealth Home Support Programme (CHSP) and the role the providers and services play in creating communities where people can age well. <br /></p>\\n<p>Your responses will help to inform feedback to the Government and the aged care sector about proposed changes moving forward, in particular those that relate to CHSP services and support.<br /></p>\\n<p>COTA Queensland is particularly keen to hear from people who are receiving CHSP or other aged and community supports, as well as aged and community care service providers, health professionals, local government workers and other interested workers, volunteers, carers and community members from across Queensland, including regional, rural and remote communities.<br /></p>\\n<p>The survey closes 16 May 2021.<br /></p>\",\"125\":\"https://cotaqld.engagementhub.com.au/ageing-in-your-community\"}}',NULL,NULL,NULL,'2021-04-19 02:57:38','2021-04-19 02:57:38','a099578f-a5ac-4c7f-8dde-04758bf19c89'),(151238,151237,1,2361,151186,NULL,'pending','',NULL,'{\"typeId\":\"5\",\"authorId\":\"151186\",\"title\":\"National Comorbidity Guidelines Train-the-Trainer Workshop (MAY)\",\"slug\":\"national-comorbidity-guidelines-train-the-trainer-workshop-may\",\"postDate\":1618885620,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Hosted online via Zoom, approved applicants will receive a link prior to the event\",\"71\":\"training@comorbidityguidelines.org.au\",\"70\":\"(02) 8627 9024\",\"67\":\"<p>Train-the-trainer workshops have been developed in collaboration with 360edge, for trainers who have the capacity to deliver training within their workplace. Trainers will become registered trainers with the Matilda Centre, able to provide evidence-based training for AOD workers to improve their capacity to manage co-occurring mental disorders.</p>\\n<p><strong>Where: </strong>Due to the current COVID-19 pandemic, train-the-trainer workshops are currently only available online.</p>\\n<p><strong>Cost: </strong>There is no cost to attend these workshops.</p>\\n<p><strong>Who should attend: </strong>Training facilitators are required to have successfully completed tertiary training in a relevant field; have a comprehensive knowledge of comorbidity and/or experience working with people experiencing co-occurring mental and substance use disorders; be skilled in substance use and mental health interventions; possess sound training skills, and have the capacity to deliver workplace training.</p>\\n<p><strong>Skills gained: </strong>Trainers will become registered trainers through the Matilda Centre, and subject to signing <a href=\\\"https://comorbidityguidelines.org.au/pdf/training-facilitator-agreement-for-upload.pdf\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">licensing agreements</a>, able to deliver the National Comorbidity Guidelines Face-to-Face Training Program. Participants of the Trainer workshop will receive a certificate of completion, which depending on their registration provider, may be used towards continuing professional development.</p>\\n<p>Applications for the May workshop close Friday 7 May. For more information visit <a href=\\\"http://comorbidityguidelines.org.au\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">comorbidityguidelines.org.au</a></p>\",\"68\":{\"ownerId\":151228,\"ownerSiteId\":1,\"fieldId\":68,\"startDate\":[],\"endDate\":[],\"allDay\":0,\"repeats\":0,\"days\":null,\"endRepeat\":null,\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":null,\"months\":null},\"7\":[\"151234\"],\"69\":\"The Matilda Centre for Research in Mental Health and Substance Use\",\"72\":\"online\",\"82\":{\"titleRaw\":{\"1\":\"National Comorbidity Guidelines Train-the-Trainer Workshop (MAY)\"},\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"National Comorbidity Guidelines Train-the-Trainer Workshop (MAY) - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"National Comorbidity Guidelines Train-the-Trainer Workshop (MAY) - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":\"\"}}}}',NULL,NULL,NULL,'2021-04-20 03:05:10','2021-04-20 03:05:10','560d5d5e-ce1d-47a7-a1d2-5a26a795b058'),(151244,NULL,1,NULL,151186,NULL,'pending','',NULL,'{\"typeId\":\"5\",\"authorId\":\"151186\",\"title\":\"National Comorbidity Guidelines Train-the-Trainer Workshop (JULY)\",\"slug\":\"national-comorbidity-guidelines-train-the-trainer-workshop-july\",\"postDate\":1618887900,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Hosted online via Zoom, approved applicants will receive a link prior to the event\",\"71\":\"training@comorbidityguidelines.org.au\",\"70\":\"(02) 8627 9024\",\"67\":\"<p>Train-the-trainer workshops have been developed in collaboration with 360edge, for trainers who have the capacity to deliver training within their workplace. Trainers will become registered trainers with the Matilda Centre, able to provide evidence-based training for AOD workers to improve their capacity to manage co-occurring mental disorders.</p>\\n<p><strong>Where: </strong>Due to the current COVID-19 pandemic, train-the-trainer workshops are currently only available online.</p>\\n<p><strong>Cost: </strong>There is no cost to attend these workshops.</p>\\n<p><strong>Who should attend: </strong>Training facilitators are required to have successfully completed tertiary training in a relevant field; have a comprehensive knowledge of comorbidity and/or experience working with people experiencing co-occurring mental and substance use disorders; be skilled in substance use and mental health interventions; possess sound training skills, and have the capacity to deliver workplace training.</p>\\n<p><strong>Skills gained: </strong>Trainers will become registered trainers through the Matilda Centre, and subject to signing <a href=\\\"https://comorbidityguidelines.org.au/pdf/training-facilitator-agreement-for-upload.pdf\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">licensing agreements</a>, able to deliver the National Comorbidity Guidelines Face-to-Face Training Program. Participants of the Trainer workshop will receive a certificate of completion, which depending on their registration provider, may be used towards continuing professional development.</p>\\n<p>Applications for the July workshop close Friday 7 May. For more information visit <a href=\\\"http://comorbidityguidelines.org.au/\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">comorbidityguidelines.org.au</a></p>\",\"68\":{\"ownerId\":151239,\"ownerSiteId\":1,\"fieldId\":68,\"startDate\":[],\"endDate\":[],\"allDay\":0,\"repeats\":0,\"days\":null,\"endRepeat\":null,\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":null,\"months\":null},\"7\":[\"151240\"],\"69\":\"The Matilda Centre for Research in Mental Health and Substance Use\",\"72\":\"online\",\"82\":{\"titleRaw\":{\"1\":\"National Comorbidity Guidelines Train-the-Trainer Workshop (JULY)\"},\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"National Comorbidity Guidelines Train-the-Trainer Workshop (JULY) - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"National Comorbidity Guidelines Train-the-Trainer Workshop (JULY) - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":\"\"}}}}',NULL,NULL,NULL,'2021-04-20 03:07:14','2021-04-20 03:07:14','f7ce3d57-651c-4114-a812-93d4cd09d236'),(151246,151170,1,NULL,141326,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"141326\",\"title\":\"General Practitioner\",\"slug\":\"general-practitioner\",\"postDate\":null,\"expiryDate\":1619964000,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"sbursey@brisyouth.org\",\"100\":\"Simone Bursey\",\"70\":\"0468998554\",\"99\":\"This is an exciting opportunity to make a difference in the lives of vulnerable young people. The salaried position provides primary health care services for young people visiting the BYS medical clinic and receives 1:1 nursing support. The aim is to improve young people’s access to health care information and services, address health and mental health needs to promote wellbeing, and encourage them to engage in their healthcare.\",\"94\":\"Brisbane Youth Service\",\"93\":[\"65423\"],\"97\":\"4006\",\"98\":\"qld\",\"95\":\"42 McLachlan St\",\"96\":\"Fortitude Valley\"}}',NULL,NULL,NULL,'2021-04-20 03:45:55','2021-04-20 03:45:55','737a79b1-ead7-4a9a-845b-7e95f1b0b274'),(151247,151170,1,NULL,141326,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"141326\",\"title\":\"General Practitioner\",\"slug\":\"general-practitioner\",\"postDate\":null,\"expiryDate\":1619964000,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"sbursey@brisyouth.org\",\"100\":\"Simone Bursey\",\"70\":\"0468998554\",\"99\":\"This is an exciting opportunity to make a difference in the lives of vulnerable young people. The salaried position provides primary health care services for young people visiting the BYS medical clinic and receives 1:1 nursing support. The aim is to improve young people’s access to health care information and services, address health and mental health needs to promote wellbeing, and encourage them to engage in their healthcare.\",\"94\":\"Brisbane Youth Service\",\"93\":[\"65423\"],\"97\":\"4006\",\"98\":\"qld\",\"95\":\"42 McLachlan St\",\"96\":\"Fortitude Valley\"}}',NULL,NULL,NULL,'2021-04-20 03:45:56','2021-04-20 03:45:56','65d22d2a-7e16-4287-9683-948341f3efc6'),(151249,151170,1,NULL,141326,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"141326\",\"title\":\"General Practitioner\",\"slug\":\"general-practitioner\",\"postDate\":null,\"expiryDate\":1619964000,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"sbursey@brisyouth.org\",\"100\":\"Simone Bursey\",\"70\":\"0468998554\",\"99\":\"This is an exciting opportunity to make a difference in the lives of vulnerable young people. The salaried position provides primary health care services for young people visiting the BYS medical clinic and receives 1:1 nursing support. The aim is to improve young people’s access to health care information and services, address health and mental health needs to promote wellbeing, and encourage them to engage in their healthcare.\",\"94\":\"Brisbane Youth Service\",\"93\":[\"65423\"],\"97\":\"4006\",\"98\":\"qld\",\"95\":\"42 McLachlan St\",\"96\":\"Fortitude Valley\"}}',NULL,NULL,NULL,'2021-04-20 03:46:06','2021-04-20 03:46:06','f175da56-b5ce-4189-bfed-58d5e240e589'),(151250,151170,1,NULL,141326,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"141326\",\"title\":\"General Practitioner\",\"slug\":\"general-practitioner\",\"postDate\":null,\"expiryDate\":1619964000,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"sbursey@brisyouth.org\",\"100\":\"Simone Bursey\",\"70\":\"0468998554\",\"99\":\"This is an exciting opportunity to make a difference in the lives of vulnerable young people. The salaried position provides primary health care services for young people visiting the BYS medical clinic and receives 1:1 nursing support. The aim is to improve young people’s access to health care information and services, address health and mental health needs to promote wellbeing, and encourage them to engage in their healthcare.\",\"94\":\"Brisbane Youth Service\",\"93\":[\"65423\"],\"97\":\"4006\",\"98\":\"qld\",\"95\":\"42 McLachlan St\",\"96\":\"Fortitude Valley\"}}',NULL,NULL,NULL,'2021-04-20 03:46:07','2021-04-20 03:46:07','c3af10fa-ec4f-480d-ad4f-2812d7f2ac23'),(151279,NULL,1,NULL,117697,NULL,'pending','',NULL,'{\"typeId\":\"19\",\"authorId\":\"117697\",\"title\":\"General Practice Registered Nurse\",\"slug\":\"general-practice-registered-nurse\",\"postDate\":1618893480,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"admin@indooroopillyfp.com.au\",\"100\":\"Louise Jensen\",\"70\":\"07 33781600\",\"99\":\"<h4>Job Description</h4>\\n<p><strong>About Us</strong></p>\\n<p>We are an established General Practice located in Indooroopilly</p>\\n<p>Working together as a team to provide the highest quality of healthcare to our patients is of the utmost importance.</p>\\n<p><strong>Roles &amp; Responsibilities</strong></p>\\n<p>We are looking for a Registered Nurse for a casual position 10-15 hrs per week with the ability to cover holidays and sick days (Monday to Friday) as required.</p>\\n<p>Minimum 12 months General Practice Experience.</p>\\n<p>We are looking for an RN who not only has a patient and caring disposition but also the ability to perform well under pressure and work cohesively within a team environment.</p>\\n<p>Skill and knowledge required include the following:</p>\\n<p>· Health Assessments</p>\\n<p>· Chronic Disease Management &amp; Care Plans</p>\\n<p>· Diagnostics - ECG, Spirometry</p>\\n<p>· Child Immunisations</p>\\n<p>· Other immunisations and injections</p>\\n<p>· Ear Irrigation</p>\\n<p>· Assisting minor procedures</p>\\n<p>· Wound care</p>\\n<p>· Triage</p>\\n<p>· Cold chain management</p>\\n<p>· Sterilisation &amp; processing of reusable instruments</p>\\n<p>· Stock control &amp; ordering</p>\\n<p>· Recall &amp; Reminder Systems</p>\\n<p><strong>Selection Criteria:</strong><br /><em>Essential</em></p>\\n<p>· Current registration with AHPRA (RN)</p>\\n<p>· Professional Indemnity Insurance</p>\\n<p>· Minimum 12 months General Practice experience, including the requisite skills and knowledge listed above</p>\\n<p>· Demonstrated commitment to professional development</p>\\n<p>· Current CPR certificate</p>\\n<p>· Computer skills – including word processing, spreadsheet, email, computerised clinical software</p>\\n<p><em>Desirable</em></p>\\n<p>· Ability to work independently and as part of a close team environment</p>\\n<p>· Exceptional time management skills</p>\\n<p>· Ability to prioritise your workload and work autonomously</p>\\n<p>· Dedication to delivering high standards of care whilst driving innovation through quality improvement activities</p>\\n<p>· Excellent communication and interpersonal skills</p>\\n<p>· Immunisation Certificate</p>\\n<p>· Demonstrated patient-focused approach with genuine empathy</p>\\n<p>· Experience with Best Practice</p>\\n<p><br /></p>\",\"94\":\"Indooroopilly Family Practice\",\"93\":[\"75039\"],\"97\":\"4068\",\"98\":\"qld\",\"95\":\"Shop 1059, 318 Moggill Road\",\"96\":\"Indooroopilly\"}}',NULL,NULL,NULL,'2021-04-20 04:58:14','2021-04-20 04:58:14','390cb846-2773-4cdd-ab07-df1ab8eaf767'),(151283,151282,1,NULL,151281,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":151281,\"title\":\"Rolling Out Depot Buprenorphine – There is no Red Carpet\",\"slug\":\"rolling-out-depot-buprenorphine-there-is-no-red-carpet\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"https://uni-sydney.zoom.us/meeting/register/tZEpcumopz8pHdavej0UuoyVkMRXJnq2eUNL\",\"71\":\"abbie.mcdonnell@sydney.edu.au\",\"70\":\"02 9515 6419\",\"67\":\"It will soon be 2 years since the first depot buprenorphine product (Buvidal®) was made available in Australia via a product familiarisation programme, 18 months since it was TGA approved, and a year since another depot buprenorphine product (Sublocade®) was PBS listed, for treatment of opioid dependence. While uptake of this treatment modality has been encouraging, a golden dawn of primary care, “office-based” treatment of opioid dependence has not arrived, despite the imperatives of the opioid epidemic and the COVID pandemic. \\n\\nIn this seminar we look at challenges in the delivery of this treatment modality in a range of metropolitan and regional settings as a case study for the larger question of how to make addiction treatment more available to the people who need it, whoever and wherever they are. \",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"The University of Sydney, Specialty of Addiction Medicine\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Rolling Out Depot Buprenorphine – There is no Red Carpet - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Rolling Out Depot Buprenorphine – There is no Red Carpet - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-20 05:19:52','2021-04-20 05:19:52','c1b5938f-f88b-4d5b-a43e-b57f1e7cbc5b'),(151455,151454,1,NULL,134659,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":134659,\"title\":\"Management of Sports Trauma (MOST) Course\",\"slug\":\"management-of-sports-trauma-most-course\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Queensland Rugby League, 83 Castlemaine Street, Milton, QLD 4064\",\"71\":\"l.major@acsep.org.au\",\"70\":\"0434148278\",\"67\":\"The ACSEP Management of Sports Trauma (MOST) Course combines current theory and a practical approach to equip medical professionals with the core skills needed to manage traumatic sporting injuries, on and off the field. Highly practical and interactive, this comprehensive two-day course addresses common emergencies that might confront a healthcare or medical professional, covers the rationale behind treatment choices and the adaption of medical management at sporting events and out in the field.\\n\\nMOST Course is CPD approved by the Australasian College of Emergency Medicine﻿ and ﻿Australian College of Rural and Remote Medicine﻿.\\n\\nTo register or find out more, visit: https://semacademy.org/pages/most-course\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian College of Sport Exercise Physicians\",\"72\":\"within\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Management of Sports Trauma (MOST) Course - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Management of Sports Trauma (MOST) Course - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-20 06:02:00','2021-04-20 06:02:00','f72322c6-e634-4553-9daa-3aca18893690'),(151471,151470,1,NULL,150882,NULL,'pending',NULL,NULL,'{\"typeId\":\"27\",\"authorId\":150882,\"title\":\"Telehealth in primary care\",\"slug\":\"telehealth-in-primary-care\",\"postDate\":null,\"expiryDate\":1626012000,\"enabled\":false,\"newParentId\":null,\"fields\":{\"128\":\"The University of Queensland, Centre for Online Health\",\"124\":\"Researchers from The University of Queensland, Centre for Online Health are recruiting Australian primary care clinicians (general practitioners, nurse practitioners, and other allied health staff) to participate in a short interview (approximately 30 minutes) for a research study.\\nThe purpose of this study is to explore the perspectives and experiences of primary care clinicians on providing telephone and videoconference consultations in primary care settings in Australia. We hope that this will help generate findings for future recommendations for telehealth services that benefit both clinicians and patients. For more information please contact Keshia De Guzman by email (uqkdeguz@uq.edu.au). Participation in this study is completely voluntary and has been approved by the UQ Ethics Committee (UQ/2020002824).\\n\\n\\n\",\"125\":\"uqkdeguz@uq.edu.au\"}}',NULL,NULL,NULL,'2021-04-20 23:19:22','2021-04-20 23:19:22','08231763-1899-47a0-a94f-bd6d595db6a3'),(151474,151473,1,NULL,127494,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":127494,\"title\":\"Nundah Village Family Practice\",\"slug\":\"nundah-village-family-practice\",\"postDate\":null,\"expiryDate\":1634738400,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"dr.minsw@gmail.com\",\"100\":\"Dr Samuel Min\",\"70\":\"0401412705\",\"99\":\"2020 RACGP QLD General Practice of the Year. \\nNundah Village Family Practice (NVFP) is currently recruiting for GPs due to a retiring doctor.\\n\\nAbout the location\\n\\nGP clinic being run in parallel with GP-led respiratory clinic (They are physically separate to one another). This has given us the advantage to review those patients with cold and flu symptoms.\\nNundah is located 8km north-east of Brisbane CBD.\\nNVFP is nestled in the precinct of Nundah Village, surrounded with some great cafés, shops and restaurants.\\nOur practice attracts patients from Nundah and its surrounding suburbs, namely: Chermside, Ascot, Wavell Heights, Boondall, Aspley, Clayfield and more.\\n\\nAbout the Practice\\n\\n- NVFP is a 70-year old clinic with a good mix of clientele, from young families to elderlies with chronic diseases\\n- Mixed-billing\\n- Non-corporate, doctor-owned practice\\n- Non-DWS location\\n- 7 full-time and part-time doctors\\n- We pride ourselves in providing medical services from the bread and butter GP services to the subspecialties such as vasectomy&amp;circumcision, aviation medicine, integrative medicine and more\\n- Due to an experienced doctor retiring, a new doctor will have the opportunity to absorb the patient load\\n- In-house allied health professionals including clinical psychologist, physio, podiatrist, dietitian, diabetes educator and audiologist\\n- On-site pathology service and spacious carpark\\n- Fully-equipped spacious kitchen with an oven!\\n- Please do not hesitate to contact Sam via dr.minsw@gmail.com or 0401412705 if there is any question.\\n\",\"94\":\"Nundah Village Family Practice\",\"93\":[\"65423\"],\"97\":\"4012\",\"98\":\"qld\",\"95\":\"1270 Sandgate Rd\",\"96\":\"Nundah\"}}',NULL,NULL,NULL,'2021-04-21 02:53:29','2021-04-21 02:53:29','e6e3937e-4176-4593-83a8-621d4bd3ad1b'),(151535,151534,1,NULL,124917,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":124917,\"title\":\"The Alfred Heart Centre Masterclass: Heart Failure Imaging and Intervention\",\"slug\":\"the-alfred-heart-centre-masterclass-heart-failure-imaging-and-intervention\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"https://us02web.zoom.us/webinar/register/9316112897140/WN_2aFl3duuQ5e9AIqsYHoGvw\",\"71\":\"education@insidepractice.com.au\",\"70\":\"0428080715\",\"67\":\"Join Professor David Kaye, Associate Professor Tony Walton and Dr Angeline Leet for an evening masterclass on Heart Failure: Imaging and Intervention. Whilst this event is primarily for Cardiologists and General Physicians, we also welcome General Practitioners and allied health professionals. \\n\\nThis masterclass will be hosted by;\\n\\nProf David Kaye\\nDirector of Cardiology, The Alfred\\n\\nA/Prof Tony Walton\\nHead of Cardiac Catheter Laboratory, The Alfred\\n\\nDr Angeline Leet\\nHead of Echocardiography, The Alfred\\n\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"The Alfred Heart Centre\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"The Alfred Heart Centre Masterclass: Heart Failure Imaging and Intervention - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"The Alfred Heart Centre Masterclass: Heart Failure Imaging and Intervention - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-22 01:57:53','2021-04-22 01:57:53','9c7483f3-5737-4fcb-a176-102e8b68b2c8'),(151540,151539,1,NULL,100097,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":100097,\"title\":\"Casual Medical Receptionist\",\"slug\":\"casual-medical-receptionist\",\"postDate\":null,\"expiryDate\":1621432800,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"bribiedoctors@gmail.com\",\"100\":\"Rebecca Langfeldt\",\"70\":\"0734083320\",\"99\":\"Receptionist Required- Bribie Doctors\\nBribie Doctors, 25 Second Avenue, Bongaree, Qld, 4507.\\n________________________________________\\nEmployment Type: Casual\\nDescription: Bribie Doctors located on beautiful Bribie Island is seeking an experienced casual medical receptionist to be a part of our friendly team of 4 Doctors, receptionists and nursing staff. The role will be based at our clinic at Bongaree, as well as Bribie Doctors Surfside at Woorim and Bribie Doctors Banksia Beach at Bankisa Beach.\\n\\nKey responsibilities include:\\n-\\tAppointment book management – including scheduling of appointments, arrival of patients and billing of consultations\\n-\\tCorrespondence management – incoming and outgoing\\n-\\tGeneral administrative roles including but not limited to scanning, patient enquires, stock control \\n-\\tWorking as part of an experienced reception team in a fast paced and friendly environment. \\n-\\tGood computer skills with knowledge of programs including Microsoft Office and the ability to learn new programs such as Best Practice. \\nEssential criteria:\\n•\\tGeneral Practice experience is essential\\n•\\tEnergetic and motivated to work\\n•\\tStrong customer relationship skills due to high level of customer interaction in role. \\n•\\tFriendly, empathetic, mature and courteous nature \\n•\\tReliable, punctual and well presented professionally\\n•\\tProfessional work ethic with a solution-oriented and positive attitude \\n•\\tWillingness to learn and aptitude to develop into and beyond current role\\n•\\tExcellent interpersonal and communication skills (written and verbal)\\n•\\tAbility to prioritise, organise and multi-task\\n•\\tWork effectively in a team and individually\\n•\\tFlexibility with working hours to cover holiday leave and sick leave\\nApplicants can send resume to bribiedoctors@gmail.com\\nContact person: Rebecca Langfeldt – Practice Manager \\n\\n\",\"94\":\"Bribie Doctors\",\"93\":[\"75035\"],\"97\":\"4507\",\"98\":\"qld\",\"95\":\"25 Second Avenue\",\"96\":\"Bongaree\"}}',NULL,NULL,NULL,'2021-04-22 04:49:45','2021-04-22 04:49:45','d17a1dce-138c-425c-a14e-0535c64cdd3d'),(151543,151542,1,NULL,100097,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":100097,\"title\":\"Casual Medical Receptionist\",\"slug\":\"casual-medical-receptionist-2\",\"postDate\":null,\"expiryDate\":1621432800,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"bribiedoctors@gmail.com\",\"100\":\"Rebecca Langfeldt\",\"70\":\"0734083320\",\"99\":\"Receptionist Required- Bribie Doctors\\nBribie Doctors, 25 Second Avenue, Bongaree, Qld, 4507.\\n________________________________________\\nEmployment Type: Casual\\nDescription: Bribie Doctors located on beautiful Bribie Island is seeking an experienced casual medical receptionist to be a part of our friendly team of 4 Doctors, receptionists and nursing staff. The role will be based at our clinic at Bongaree, as well as Bribie Doctors Surfside at Woorim and Bribie Doctors Banksia Beach at Bankisa Beach.\\n\\nKey responsibilities include:\\n-\\tAppointment book management – including scheduling of appointments, arrival of patients and billing of consultations\\n-\\tCorrespondence management – incoming and outgoing\\n-\\tGeneral administrative roles including but not limited to scanning, patient enquires, stock control \\n-\\tWorking as part of an experienced reception team in a fast paced and friendly environment. \\n-\\tGood computer skills with knowledge of programs including Microsoft Office and the ability to learn new programs such as Best Practice. \\nEssential criteria:\\n•\\tGeneral Practice experience is essential\\n•\\tEnergetic and motivated to work\\n•\\tStrong customer relationship skills due to high level of customer interaction in role. \\n•\\tFriendly, empathetic, mature and courteous nature \\n•\\tReliable, punctual and well presented professionally\\n•\\tProfessional work ethic with a solution-oriented and positive attitude \\n•\\tWillingness to learn and aptitude to develop into and beyond current role\\n•\\tExcellent interpersonal and communication skills (written and verbal)\\n•\\tAbility to prioritise, organise and multi-task\\n•\\tWork effectively in a team and individually\\n•\\tFlexibility with working hours to cover holiday leave and sick leave\\nApplicants can send resume to bribiedoctors@gmail.com\\nContact person: Rebecca Langfeldt – Practice Manager \\n\\n\",\"94\":\"Bribie Doctors\",\"93\":[\"75035\"],\"97\":\"4507\",\"98\":\"qld\",\"95\":\"25 Second Avenue\",\"96\":\"Bongaree\"}}',NULL,NULL,NULL,'2021-04-22 04:49:47','2021-04-22 04:49:47','b3fba68b-009a-46ee-bd13-88b37e28b6f1'),(152743,152742,1,NULL,151186,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":151186,\"title\":\"Evidence Based Practice Webinar | Anxiety and Alcohol Use: What Clinicians Need to Know\",\"slug\":\"evidence-based-practice-webinar-anxiety-and-alcohol-use-what-clinicians-need-to-know\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"https://uni-sydney.zoom.us/webinar/register/WN_x8GPIbyOQ_27yb9UOeu7hQ\",\"71\":\"training@comorbidityguidelines.org.au\",\"70\":\"0286279024\",\"67\":\"About the presenter:\\nAssociate Professor Lexine Stapinski is an Associate Professor and Clinical Psychologist at the Matilda Centre. Her research focuses on understanding the inter-relationship between anxiety and substance use disorders, and how we can optimise prevention, early intervention and treatment approaches for these commonly co-occurring conditions.\\n\\nThis webinar will lead to:\\n - An understanding of typical patterns and issues relevant to the management of anxiety and alcohol use disorder comorbidity;\\n - Introduction to an integrated cognitive behaviour therapy program that improves outcomes by concurrently addressing anxiety, alcohol use and the connections between them;\\n - Awareness of the developmental links between anxiety and alcohol use, including strategies to prevent the development of alcohol use disorders among anxious young people.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"The Comorbidity Guidelines\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Evidence Based Practice Webinar | Anxiety and Alcohol Use: What Clinicians Need to Know - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Evidence Based Practice Webinar | Anxiety and Alcohol Use: What Clinicians Need to Know - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-25 23:54:35','2021-04-25 23:54:35','f6ca5869-2864-459a-ae54-2344de57617a'),(152746,152745,1,NULL,151186,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":151186,\"title\":\"Evidence Based Practice Webinar | Psychosis and Substance Use: What Clinicians Need to Know\",\"slug\":\"evidence-based-practice-webinar-psychosis-and-substance-use-what-clinicians-need-to-know\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"https://uni-sydney.zoom.us/webinar/register/WN_L1szdxE0SHSP93WWn6HtcA\",\"71\":\"training@comorbidityguidelines.org.au\",\"70\":\"0286279024\",\"67\":\"About the presenter:\\nAssociate Professor Julia Lappin is an Associate Professor at UNSW School of Psychiatry and the National Drug and Alcohol Research Centre. She is a Consultant Psychiatrist and Clinical Director for the Tertiary Referral Service for Psychosis, a state-wide service for NSW based at Prince of Wales Hospital, Sydney. She has a broad range of interests across research and clinical practice, with a focus on improving outcomes in severe mental illness, particularly psychotic illnesses and comorbid substance misuse\\n\\nBy the end of this webinar, attendees will be able to:\\n - Recognise the high prevalence of comorbid substance use and psychosis\\n - Understand key symptom profiles\\n - Consider holistic treatment strategies\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"The Comorbidity Guidelines\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Evidence Based Practice Webinar | Psychosis and Substance Use: What Clinicians Need to Know - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Evidence Based Practice Webinar | Psychosis and Substance Use: What Clinicians Need to Know - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-25 23:56:08','2021-04-25 23:56:08','4a95cbee-ffc5-41e4-a5b8-0fa4795262bd'),(152749,152748,1,NULL,151186,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":151186,\"title\":\"Evidence Based Practice Webinar | Psychosis and Substance Use: What Clinicians Need to Know\",\"slug\":\"evidence-based-practice-webinar-psychosis-and-substance-use-what-clinicians-need-to-know-2\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"https://uni-sydney.zoom.us/webinar/register/WN_L1szdxE0SHSP93WWn6HtcA\",\"71\":\"training@comorbidityguidelines.org.au\",\"70\":\"0286279024\",\"67\":\"About the presenter:\\nAssociate Professor Julia Lappin is an Associate Professor at UNSW School of Psychiatry and the National Drug and Alcohol Research Centre. She is a Consultant Psychiatrist and Clinical Director for the Tertiary Referral Service for Psychosis, a state-wide service for NSW based at Prince of Wales Hospital, Sydney. She has a broad range of interests across research and clinical practice, with a focus on improving outcomes in severe mental illness, particularly psychotic illnesses and comorbid substance misuse\\n\\nBy the end of this webinar, attendees will be able to:\\n - Recognise the high prevalence of comorbid substance use and psychosis\\n - Understand key symptom profiles\\n - Consider holistic treatment strategies\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"The Comorbidity Guidelines\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Evidence Based Practice Webinar | Psychosis and Substance Use: What Clinicians Need to Know - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Evidence Based Practice Webinar | Psychosis and Substance Use: What Clinicians Need to Know - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-25 23:56:09','2021-04-25 23:56:09','fcbd36fa-ff1b-4c75-8efc-3810fdf086f2'),(152752,152751,1,NULL,151186,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":151186,\"title\":\"Evidence Based Practice Webinar | Implementing Evidence Based Practices: What AOD Managers and Workers Need to Know\",\"slug\":\"evidence-based-practice-webinar-implementing-evidence-based-practices-what-aod-managers-and-workers-need-to-know\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"https://uni-sydney.zoom.us/webinar/register/WN_JyXHuyICRxaGuRyUUJsAvw\",\"71\":\"training@comorbidityguidelines.org.au\",\"70\":\"0286279024\",\"67\":\"About the presenter:\\nDr Suzie Hudson is an accredited mental health social worker with over 20 years clinical experience in the fields of substance misuse, mental health, forensics, research and evaluation. In her role as NADA’s Clinical Director, Suzie provides clinical advice and consultation for NADA members, and contributes to policy and advocacy submissions. Suzie also oversees the custodianship of NADAbase, and provides advice and support regarding client outcome and reporting.\\n\\nBy the end of this webinar, attendees will be able to:\\n - Describe evidence-based practices that are effective for working alongside people with co-occurring alcohol and other drug (AOD) and mental health conditions\\n - Identify key stages to implementation in an organisation\\n - Understand how effective implementation works in practice through case studies\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"The Comorbidity Guidelines\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Evidence Based Practice Webinar | Implementing Evidence Based Practices: What AOD Managers and Workers Need to Know - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Evidence Based Practice Webinar | Implementing Evidence Based Practices: What AOD Managers and Workers Need to Know - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-25 23:58:16','2021-04-25 23:58:16','716824fd-67f8-47ec-beea-d232164dcb79'),(152778,152777,1,NULL,152776,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":152776,\"title\":\"Healthed Podcasts\",\"slug\":\"healthed-podcasts\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online\",\"71\":\"info@healthed.com.au\",\"70\":\"02 8758 0103\",\"67\":\"Healthed is Australia’s leader in HCP education and engagement. Offering a variety of trusted and popular learning resources for health professionals, our content is delivered and endorsed by high-caliber national and international experts and is catered to a range of learning styles.\\n\\nWe would like to invite your GPs and Practice Nurses to engage with our high-quality educational resources, in particular our exclusive FREE PODCASTS!\\n\\nFREE PODCASTS!\\nwww.healthed.com.au/podcasts\\n\\nOur medical podcasts (The Clinical Takeaway, Dermatology Cases and Women’s and Children’s Health Update series) feature interviews with leading experts, where we discuss important clinical issues that can positively impact the way HCPs practice. Designed to provide updates while driving, exercising, commuting, gardening, walking, or relaxing, these podcasts are a flexible, convenient way to stay up to date!\\n\\nGPs can claim CPD points through the RACGP CPD quick log system, earning 2 CPD points per hour\\n\\nCheck out some of our most popular podcasts below! \\n \\nThe Clinical Takeaway: Vitamin D Deficiency in Practice (45 mins)\\nProf Rebecca Mason: Registered Medical Practitioner, Researcher in Vitamin D; Internationally recognised leader in the role of Vitamin D; Professor, University of Sydney\\nhttps://www.healthed.com.au/podcasts/the-clinical-takeaway-vitamin-d-deficiency-in-practice/\\n\\nWomen’s and Children’s Health Update: Polycystic Ovary Syndrome (36 mins)\\nDr Terri Foran, Sexual Health Physician; Conjoint Senior Lecturer, School of Women’s and Children’s Health, UNSW\\nhttps://www.healthed.com.au/podcasts/womens-and-childrens-health-update-polycystic-ovary-syndrome/\\n\\nWomen’s and Children’s Health Update: Systematic Approach to Vaginismus (24 mins)\\nDr Terri Foran, Sexual Health Physician; Conjoint Senior Lecturer, School of Women’s and Children’s Health, UNSW\\nhttps://www.healthed.com.au/podcasts/womens-and-childrens-health-update-systematic-approach-to-vaginismus/\\n\\nThe Clinical Takeaway: Suicide Bereavement (41 mins)\\nDr David Lim, GP\\nhttps://www.healthed.com.au/podcasts/the-clinical-takeaway-suicide-bereavement/\\n\\nWomen’s and Children’s Health Update: Impacts of Domestic Violence on Mothering (26 mins)\\nDr Terri Foran, Sexual Health Physician; Conjoint Senior Lecturer, School of Women’s and Children’s Health, UNSW\\nhttps://www.healthed.com.au/podcasts/womens-and-childrens-health-update-impacts-of-domestic-violence-on-mothering/\\n\\nOral Cavity Cancer (30 mins)\\nClinical A/Prof Carsten Palme Otolaryngology Head Neck Surgeon; Associate Professor, University of Sydney; Director, Head Neck Surgery, Chris O\'Brien Lifehouse\\nhttps://www.healthed.com.au/podcasts/oral-cavity-cancer/\\n\\nFaecal Incontinence: 10% of Your Patients Have It! A Practical Guide For GPs – Lecture CPD 1 Point (36 mins)\\nProf Marc Gladman Colorectal Surgeon; Director of The Bowel Clinic, Adelaide\\nhttps://www.healthed.com.au/podcasts/faecal-incontinence-10-of-your-patients-have-it-a-practical-guide-for-gps-lecture-cpd-1-point/\\n\\nThe Clinical Takeaway: Life After Prostatectomy (39 mins)\\nDr David Lim, GP\\nhttps://www.healthed.com.au/podcasts/the-clinical-takeaway-life-after-prostate-cancer/\\n\\nThe Clinical Takeaway: Vaping and Tobacco Addiction (41mins)\\nDr David Lim, GP\\nhttps://www.healthed.com.au/podcasts/the-clinical-takeaway-vaping-and-tobacco-addiction/\\n\\nTo view our full range of learning resources including podcasts, video lectures and clinical articles – visit the Healthed website!\\n\\nPlease do not hesitate to reach out if you would like more information or if you have any questions or concerns.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Healthed\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Healthed Podcasts - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Healthed Podcasts - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-27 03:32:32','2021-04-27 03:32:32','a84fcb37-5856-4f5b-9377-10e433d7443b'),(152780,152777,1,NULL,152776,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"152776\",\"title\":\"Healthed Podcasts\",\"slug\":\"healthed-podcasts\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online\",\"71\":\"info@healthed.com.au\",\"70\":\"02 8758 0103\",\"67\":\"Healthed is Australia’s leader in HCP education and engagement. Offering a variety of trusted and popular learning resources for health professionals, our content is delivered and endorsed by high-caliber national and international experts and is catered to a range of learning styles.\\n\\nWe would like to invite your GPs and Practice Nurses to engage with our high-quality educational resources, in particular our exclusive FREE PODCASTS!\\n\\nFREE PODCASTS!\\nwww.healthed.com.au/podcasts\\n\\nOur medical podcasts (The Clinical Takeaway, Dermatology Cases and Women’s and Children’s Health Update series) feature interviews with leading experts, where we discuss important clinical issues that can positively impact the way HCPs practice. Designed to provide updates while driving, exercising, commuting, gardening, walking, or relaxing, these podcasts are a flexible, convenient way to stay up to date!\\n\\nGPs can claim CPD points through the RACGP CPD quick log system, earning 2 CPD points per hour\\n\\nCheck out some of our most popular podcasts below! \\n \\nThe Clinical Takeaway: Vitamin D Deficiency in Practice (45 mins)\\nProf Rebecca Mason: Registered Medical Practitioner, Researcher in Vitamin D; Internationally recognised leader in the role of Vitamin D; Professor, University of Sydney\\nhttps://www.healthed.com.au/podcasts/the-clinical-takeaway-vitamin-d-deficiency-in-practice/\\n\\nWomen’s and Children’s Health Update: Polycystic Ovary Syndrome (36 mins)\\nDr Terri Foran, Sexual Health Physician; Conjoint Senior Lecturer, School of Women’s and Children’s Health, UNSW\\nhttps://www.healthed.com.au/podcasts/womens-and-childrens-health-update-polycystic-ovary-syndrome/\\n\\nWomen’s and Children’s Health Update: Systematic Approach to Vaginismus (24 mins)\\nDr Terri Foran, Sexual Health Physician; Conjoint Senior Lecturer, School of Women’s and Children’s Health, UNSW\\nhttps://www.healthed.com.au/podcasts/womens-and-childrens-health-update-systematic-approach-to-vaginismus/\\n\\nThe Clinical Takeaway: Suicide Bereavement (41 mins)\\nDr David Lim, GP\\nhttps://www.healthed.com.au/podcasts/the-clinical-takeaway-suicide-bereavement/\\n\\nWomen’s and Children’s Health Update: Impacts of Domestic Violence on Mothering (26 mins)\\nDr Terri Foran, Sexual Health Physician; Conjoint Senior Lecturer, School of Women’s and Children’s Health, UNSW\\nhttps://www.healthed.com.au/podcasts/womens-and-childrens-health-update-impacts-of-domestic-violence-on-mothering/\\n\\nOral Cavity Cancer (30 mins)\\nClinical A/Prof Carsten Palme Otolaryngology Head Neck Surgeon; Associate Professor, University of Sydney; Director, Head Neck Surgery, Chris O\'Brien Lifehouse\\nhttps://www.healthed.com.au/podcasts/oral-cavity-cancer/\\n\\nFaecal Incontinence: 10% of Your Patients Have It! A Practical Guide For GPs – Lecture CPD 1 Point (36 mins)\\nProf Marc Gladman Colorectal Surgeon; Director of The Bowel Clinic, Adelaide\\nhttps://www.healthed.com.au/podcasts/faecal-incontinence-10-of-your-patients-have-it-a-practical-guide-for-gps-lecture-cpd-1-point/\\n\\nThe Clinical Takeaway: Life After Prostatectomy (39 mins)\\nDr David Lim, GP\\nhttps://www.healthed.com.au/podcasts/the-clinical-takeaway-life-after-prostate-cancer/\\n\\nThe Clinical Takeaway: Vaping and Tobacco Addiction (41mins)\\nDr David Lim, GP\\nhttps://www.healthed.com.au/podcasts/the-clinical-takeaway-vaping-and-tobacco-addiction/\\n\\nTo view our full range of learning resources including podcasts, video lectures and clinical articles – visit the Healthed website!\\n\\nPlease do not hesitate to reach out if you would like more information or if you have any questions or concerns.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Healthed\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Healthed Podcasts - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Healthed Podcasts - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-27 03:33:04','2021-04-27 03:33:04','5b078484-42e3-4aed-aa9c-1a64f5526552'),(152781,152777,1,NULL,152776,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"152776\",\"title\":\"Healthed Podcasts\",\"slug\":\"healthed-podcasts\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online\",\"71\":\"info@healthed.com.au\",\"70\":\"02 8758 0103\",\"67\":\"Healthed is Australia’s leader in HCP education and engagement. Offering a variety of trusted and popular learning resources for health professionals, our content is delivered and endorsed by high-caliber national and international experts and is catered to a range of learning styles.\\n\\nWe would like to invite your GPs and Practice Nurses to engage with our high-quality educational resources, in particular our exclusive FREE PODCASTS!\\n\\nFREE PODCASTS!\\nwww.healthed.com.au/podcasts\\n\\nOur medical podcasts (The Clinical Takeaway, Dermatology Cases and Women’s and Children’s Health Update series) feature interviews with leading experts, where we discuss important clinical issues that can positively impact the way HCPs practice. Designed to provide updates while driving, exercising, commuting, gardening, walking, or relaxing, these podcasts are a flexible, convenient way to stay up to date!\\n\\nGPs can claim CPD points through the RACGP CPD quick log system, earning 2 CPD points per hour\\n\\nCheck out some of our most popular podcasts below! \\n \\nThe Clinical Takeaway: Vitamin D Deficiency in Practice (45 mins)\\nProf Rebecca Mason: Registered Medical Practitioner, Researcher in Vitamin D; Internationally recognised leader in the role of Vitamin D; Professor, University of Sydney\\nhttps://www.healthed.com.au/podcasts/the-clinical-takeaway-vitamin-d-deficiency-in-practice/\\n\\nWomen’s and Children’s Health Update: Polycystic Ovary Syndrome (36 mins)\\nDr Terri Foran, Sexual Health Physician; Conjoint Senior Lecturer, School of Women’s and Children’s Health, UNSW\\nhttps://www.healthed.com.au/podcasts/womens-and-childrens-health-update-polycystic-ovary-syndrome/\\n\\nWomen’s and Children’s Health Update: Systematic Approach to Vaginismus (24 mins)\\nDr Terri Foran, Sexual Health Physician; Conjoint Senior Lecturer, School of Women’s and Children’s Health, UNSW\\nhttps://www.healthed.com.au/podcasts/womens-and-childrens-health-update-systematic-approach-to-vaginismus/\\n\\nThe Clinical Takeaway: Suicide Bereavement (41 mins)\\nDr David Lim, GP\\nhttps://www.healthed.com.au/podcasts/the-clinical-takeaway-suicide-bereavement/\\n\\nWomen’s and Children’s Health Update: Impacts of Domestic Violence on Mothering (26 mins)\\nDr Terri Foran, Sexual Health Physician; Conjoint Senior Lecturer, School of Women’s and Children’s Health, UNSW\\nhttps://www.healthed.com.au/podcasts/womens-and-childrens-health-update-impacts-of-domestic-violence-on-mothering/\\n\\nOral Cavity Cancer (30 mins)\\nClinical A/Prof Carsten Palme Otolaryngology Head Neck Surgeon; Associate Professor, University of Sydney; Director, Head Neck Surgery, Chris O\'Brien Lifehouse\\nhttps://www.healthed.com.au/podcasts/oral-cavity-cancer/\\n\\nFaecal Incontinence: 10% of Your Patients Have It! A Practical Guide For GPs – Lecture CPD 1 Point (36 mins)\\nProf Marc Gladman Colorectal Surgeon; Director of The Bowel Clinic, Adelaide\\nhttps://www.healthed.com.au/podcasts/faecal-incontinence-10-of-your-patients-have-it-a-practical-guide-for-gps-lecture-cpd-1-point/\\n\\nThe Clinical Takeaway: Life After Prostatectomy (39 mins)\\nDr David Lim, GP\\nhttps://www.healthed.com.au/podcasts/the-clinical-takeaway-life-after-prostate-cancer/\\n\\nThe Clinical Takeaway: Vaping and Tobacco Addiction (41mins)\\nDr David Lim, GP\\nhttps://www.healthed.com.au/podcasts/the-clinical-takeaway-vaping-and-tobacco-addiction/\\n\\nTo view our full range of learning resources including podcasts, video lectures and clinical articles – visit the Healthed website!\\n\\nPlease do not hesitate to reach out if you would like more information or if you have any questions or concerns.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Healthed\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Healthed Podcasts - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Healthed Podcasts - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-27 03:33:05','2021-04-27 03:33:05','95580774-994c-4d1a-b8a3-c0db9463d5e9'),(153005,153004,1,NULL,134856,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":134856,\"title\":\"PC4 General Practice Circle - opportunity for general practice staff to be involved in cancer research\",\"slug\":\"pc4-general-practice-circle-opportunity-for-general-practice-staff-to-be-involved-in-cancer-research\",\"postDate\":null,\"expiryDate\":1640872800,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"info@pc4tg.com.au\",\"100\":\"Mairead McNamara\",\"99\":\"PC4, the Primary Care Collaborative Cancer Clinical Trials Group, is currently recruiting for our General Practice (GP) Circle. The GP Circle is a group of GPs, practice nurses and practice managers interested in providing clinical insight and experience to help shape national research projects. Members review research proposals and provide insight and experience to help shape successful research projects. Members are reimbursed for their time can choose their level of participation based on their availability and interest. If you are interested, visit our website: http://pc4tg.com.au/for-gps/gp-circle/or contact info@pc4tg.com.au . \",\"94\":\"The Primary Care Collaborative Cancer Clinical Trials Group\",\"93\":[\"151110\"],\"97\":\"3000\",\"98\":\"vic\",\"95\":\"Victorian Comprehensive Cancer Centre, Level 10/305 Grattan St\",\"96\":\"Melbourne\"}}',NULL,NULL,NULL,'2021-04-27 05:07:34','2021-04-27 05:07:34','24b9cbd2-2af2-4c41-9aa6-7579ee86cfeb'),(153008,153007,1,NULL,134856,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":134856,\"title\":\"PC4 General Practice Circle - opportunity for general practice staff to be involved in cancer research\",\"slug\":\"pc4-general-practice-circle-opportunity-for-general-practice-staff-to-be-involved-in-cancer-research-2\",\"postDate\":null,\"expiryDate\":1640872800,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"info@pc4tg.com.au\",\"100\":\"Mairead McNamara\",\"99\":\"PC4, the Primary Care Collaborative Cancer Clinical Trials Group, is currently recruiting for our General Practice (GP) Circle. The GP Circle is a group of GPs, practice nurses and practice managers interested in providing clinical insight and experience to help shape national research projects. Members review research proposals and provide insight and experience to help shape successful research projects. Members are reimbursed for their time can choose their level of participation based on their availability and interest. If you are interested, visit our website: http://pc4tg.com.au/for-gps/gp-circle/or contact info@pc4tg.com.au . \",\"94\":\"The Primary Care Collaborative Cancer Clinical Trials Group\",\"93\":[\"151110\"],\"97\":\"3000\",\"98\":\"vic\",\"95\":\"Victorian Comprehensive Cancer Centre, Level 10/305 Grattan St\",\"96\":\"Melbourne\"}}',NULL,NULL,NULL,'2021-04-27 05:07:35','2021-04-27 05:07:35','cff3306e-e42c-4b5f-b369-3ab268e9e91a'),(153280,153279,1,NULL,129069,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":129069,\"title\":\"Casual | Part-Time Medical Receptionist\",\"slug\":\"casual-part-time-medical-receptionist\",\"postDate\":null,\"expiryDate\":1622124000,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"admin@mvmedical.com.au\",\"100\":\"Casey-lee Levy\",\"70\":\"0733670333\",\"99\":\"At Milton Village Medical our experienced staff have been committed to excellence in medical care for over ten years. We have recently relocated to a beautiful near new purpose-built clinic at Milton Village. Still very central, we are only 2km from Brisbane’s city centre, and easily accessible by car, bus or train.\\n\\nThis casual position is an opportunity for an energetic and efficient individual to join our highly committed team here at Milton Village Medical.\\n\\nWe are seeking an individual with outstanding customer service skills and highly developed communication skills, who can work autonomously, and as part of a team.\\nDue to the busy nature of our Practice, the ability to work well and remain calm under pressure is essential.\\n\\nMain duties may include but are not limited to:\\n- Delivering high quality customer service to patients, Doctors, and Allied Heath Professionals \\n- Greeting patients and managing front desk.\\n- Handling telephone enquiries and effective scheduling of patient appointments in accordance with Practice procedures.\\n- Performing general administrative, reception and other related duties.\\n- Maintain the practice in a clean and a tidy condition\\n- Maintain confidentiality while managing patient records\\n- Liaise with the Practice Manager and Doctor/s to provide day to day administrative support and take an active part in working closely with other team members \\n to manage daily tasks\\n- Other duties as directed\\n- Hours range between 7am - 6.30pm Mon-Fri and 8am - 1pm Sat-Sun. \\n\\nPrior Medical reception experience, and experience with Best Practice software is preferred, but not essential\\n\\nApplications to be sent to: admin@mvmedical.com.au\\nPlease note: Only applications that have been shortlisted will be contacted\",\"94\":\"Milton Village Medical\",\"93\":[\"75035\"],\"97\":\"4064\",\"98\":\"qld\",\"95\":\"36 Baroona Road\",\"96\":\"Milton\"}}',NULL,NULL,NULL,'2021-04-28 01:12:06','2021-04-28 01:12:06','2b83aa6e-022f-4609-bba6-b699630354d9'),(153283,153282,1,NULL,129069,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":129069,\"title\":\"Casual | Part-Time Medical Receptionist\",\"slug\":\"casual-part-time-medical-receptionist-2\",\"postDate\":null,\"expiryDate\":1622124000,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"admin@mvmedical.com.au\",\"100\":\"Casey-lee Levy\",\"70\":\"0733670333\",\"99\":\"At Milton Village Medical our experienced staff have been committed to excellence in medical care for over ten years. We have recently relocated to a beautiful near new purpose-built clinic at Milton Village. Still very central, we are only 2km from Brisbane’s city centre, and easily accessible by car, bus or train.\\n\\nThis casual position is an opportunity for an energetic and efficient individual to join our highly committed team here at Milton Village Medical.\\n\\nWe are seeking an individual with outstanding customer service skills and highly developed communication skills, who can work autonomously, and as part of a team.\\nDue to the busy nature of our Practice, the ability to work well and remain calm under pressure is essential.\\n\\nMain duties may include but are not limited to:\\n- Delivering high quality customer service to patients, Doctors, and Allied Heath Professionals \\n- Greeting patients and managing front desk.\\n- Handling telephone enquiries and effective scheduling of patient appointments in accordance with Practice procedures.\\n- Performing general administrative, reception and other related duties.\\n- Maintain the practice in a clean and a tidy condition\\n- Maintain confidentiality while managing patient records\\n- Liaise with the Practice Manager and Doctor/s to provide day to day administrative support and take an active part in working closely with other team members \\n to manage daily tasks\\n- Other duties as directed\\n- Hours range between 7am - 6.30pm Mon-Fri and 8am - 1pm Sat-Sun. \\n\\nPrior Medical reception experience, and experience with Best Practice software is preferred, but not essential\\n\\nApplications to be sent to: admin@mvmedical.com.au\\nPlease note: Only applications that have been shortlisted will be contacted\",\"94\":\"Milton Village Medical\",\"93\":[\"75035\"],\"97\":\"4064\",\"98\":\"qld\",\"95\":\"36 Baroona Road\",\"96\":\"Milton\"}}',NULL,NULL,NULL,'2021-04-28 01:12:08','2021-04-28 01:12:08','8e01f1ec-cc6f-4a67-b5ff-b28c1e0bd4c2'),(153285,153282,1,NULL,129069,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"129069\",\"title\":\"Casual | Part-Time Medical Receptionist\",\"slug\":\"casual-part-time-medical-receptionist-2\",\"postDate\":null,\"expiryDate\":1622124000,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"admin@mvmedical.com.au\",\"100\":\"Casey-lee Levy\",\"70\":\"0733670333\",\"99\":\"At Milton Village Medical our experienced staff have been committed to excellence in medical care for over ten years. We have recently relocated to a beautiful near new purpose-built clinic at Milton Village. Still very central, we are only 2km from Brisbane’s city centre, and easily accessible by car, bus or train.\\n\\nThis casual position is an opportunity for an energetic and efficient individual to join our highly committed team here at Milton Village Medical.\\n\\nWe are seeking an individual with outstanding customer service skills and highly developed communication skills, who can work autonomously, and as part of a team.\\nDue to the busy nature of our Practice, the ability to work well and remain calm under pressure is essential.\\n\\nMain duties may include but are not limited to:\\n- Delivering high quality customer service to patients, Doctors, and Allied Heath Professionals \\n- Greeting patients and managing front desk.\\n- Handling telephone enquiries and effective scheduling of patient appointments in accordance with Practice procedures.\\n- Performing general administrative, reception and other related duties.\\n- Maintain the practice in a clean and a tidy condition\\n- Maintain confidentiality while managing patient records\\n- Liaise with the Practice Manager and Doctor/s to provide day to day administrative support and take an active part in working closely with other team members \\n to manage daily tasks\\n- Other duties as directed\\n- Hours range between 7am - 6.30pm Mon-Fri and 8am - 1pm Sat-Sun. \\n\\nPrior Medical reception experience, and experience with Best Practice software is preferred, but not essential\\n\\nApplications to be sent to: admin@mvmedical.com.au\\nPlease note: Only applications that have been shortlisted will be contacted\",\"94\":\"Milton Village Medical\",\"93\":[\"75035\"],\"97\":\"4064\",\"98\":\"qld\",\"95\":\"36 Baroona Road\",\"96\":\"Milton\"}}',NULL,NULL,NULL,'2021-04-28 01:12:34','2021-04-28 01:12:34','6dce6c96-004d-4a9e-b060-ef24a923cd9e'),(153286,153282,1,NULL,129069,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"129069\",\"title\":\"Casual | Part-Time Medical Receptionist\",\"slug\":\"casual-part-time-medical-receptionist-2\",\"postDate\":null,\"expiryDate\":1622124000,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"admin@mvmedical.com.au\",\"100\":\"Casey-lee Levy\",\"70\":\"0733670333\",\"99\":\"At Milton Village Medical our experienced staff have been committed to excellence in medical care for over ten years. We have recently relocated to a beautiful near new purpose-built clinic at Milton Village. Still very central, we are only 2km from Brisbane’s city centre, and easily accessible by car, bus or train.\\n\\nThis casual position is an opportunity for an energetic and efficient individual to join our highly committed team here at Milton Village Medical.\\n\\nWe are seeking an individual with outstanding customer service skills and highly developed communication skills, who can work autonomously, and as part of a team.\\nDue to the busy nature of our Practice, the ability to work well and remain calm under pressure is essential.\\n\\nMain duties may include but are not limited to:\\n- Delivering high quality customer service to patients, Doctors, and Allied Heath Professionals \\n- Greeting patients and managing front desk.\\n- Handling telephone enquiries and effective scheduling of patient appointments in accordance with Practice procedures.\\n- Performing general administrative, reception and other related duties.\\n- Maintain the practice in a clean and a tidy condition\\n- Maintain confidentiality while managing patient records\\n- Liaise with the Practice Manager and Doctor/s to provide day to day administrative support and take an active part in working closely with other team members \\n to manage daily tasks\\n- Other duties as directed\\n- Hours range between 7am - 6.30pm Mon-Fri and 8am - 1pm Sat-Sun. \\n\\nPrior Medical reception experience, and experience with Best Practice software is preferred, but not essential\\n\\nApplications to be sent to: admin@mvmedical.com.au\\nPlease note: Only applications that have been shortlisted will be contacted\",\"94\":\"Milton Village Medical\",\"93\":[\"75035\"],\"97\":\"4064\",\"98\":\"qld\",\"95\":\"36 Baroona Road\",\"96\":\"Milton\"}}',NULL,NULL,NULL,'2021-04-28 01:12:35','2021-04-28 01:12:35','c63d205c-c8bc-44ad-b937-29e72a6b5669'),(153288,153282,1,NULL,129069,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"129069\",\"title\":\"Casual | Part-Time Medical Receptionist\",\"slug\":\"casual-part-time-medical-receptionist-2\",\"postDate\":null,\"expiryDate\":1622124000,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"admin@mvmedical.com.au\",\"100\":\"Casey-lee Levy\",\"70\":\"0733670333\",\"99\":\"At Milton Village Medical our experienced staff have been committed to excellence in medical care for over ten years. We have recently relocated to a beautiful near new purpose-built clinic at Milton Village. Still very central, we are only 2km from Brisbane’s city centre, and easily accessible by car, bus or train.\\n\\nThis casual position is an opportunity for an energetic and efficient individual to join our highly committed team here at Milton Village Medical.\\n\\nWe are seeking an individual with outstanding customer service skills and highly developed communication skills, who can work autonomously, and as part of a team.\\nDue to the busy nature of our Practice, the ability to work well and remain calm under pressure is essential.\\n\\nMain duties may include but are not limited to:\\n- Delivering high quality customer service to patients, Doctors, and Allied Heath Professionals \\n- Greeting patients and managing front desk.\\n- Handling telephone enquiries and effective scheduling of patient appointments in accordance with Practice procedures.\\n- Performing general administrative, reception and other related duties.\\n- Maintain the practice in a clean and a tidy condition\\n- Maintain confidentiality while managing patient records\\n- Liaise with the Practice Manager and Doctor/s to provide day to day administrative support and take an active part in working closely with other team members \\n to manage daily tasks\\n- Other duties as directed\\n- Hours range between 7am - 6.30pm Mon-Fri and 8am - 1pm Sat-Sun. \\n\\nPrior Medical reception experience, and experience with Best Practice software is preferred, but not essential\\n\\nApplications to be sent to: admin@mvmedical.com.au\\nPlease note: Only applications that have been shortlisted will be contacted\",\"94\":\"Milton Village Medical\",\"93\":[\"75035\"],\"97\":\"4064\",\"98\":\"qld\",\"95\":\"36 Baroona Road\",\"96\":\"Milton\"}}',NULL,NULL,NULL,'2021-04-28 01:13:16','2021-04-28 01:13:16','2516b594-e551-47a9-8cbe-995b91fb48fd'),(153289,153282,1,NULL,129069,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"129069\",\"title\":\"Casual | Part-Time Medical Receptionist\",\"slug\":\"casual-part-time-medical-receptionist-2\",\"postDate\":null,\"expiryDate\":1622124000,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"admin@mvmedical.com.au\",\"100\":\"Casey-lee Levy\",\"70\":\"0733670333\",\"99\":\"At Milton Village Medical our experienced staff have been committed to excellence in medical care for over ten years. We have recently relocated to a beautiful near new purpose-built clinic at Milton Village. Still very central, we are only 2km from Brisbane’s city centre, and easily accessible by car, bus or train.\\n\\nThis casual position is an opportunity for an energetic and efficient individual to join our highly committed team here at Milton Village Medical.\\n\\nWe are seeking an individual with outstanding customer service skills and highly developed communication skills, who can work autonomously, and as part of a team.\\nDue to the busy nature of our Practice, the ability to work well and remain calm under pressure is essential.\\n\\nMain duties may include but are not limited to:\\n- Delivering high quality customer service to patients, Doctors, and Allied Heath Professionals \\n- Greeting patients and managing front desk.\\n- Handling telephone enquiries and effective scheduling of patient appointments in accordance with Practice procedures.\\n- Performing general administrative, reception and other related duties.\\n- Maintain the practice in a clean and a tidy condition\\n- Maintain confidentiality while managing patient records\\n- Liaise with the Practice Manager and Doctor/s to provide day to day administrative support and take an active part in working closely with other team members \\n to manage daily tasks\\n- Other duties as directed\\n- Hours range between 7am - 6.30pm Mon-Fri and 8am - 1pm Sat-Sun. \\n\\nPrior Medical reception experience, and experience with Best Practice software is preferred, but not essential\\n\\nApplications to be sent to: admin@mvmedical.com.au\\nPlease note: Only applications that have been shortlisted will be contacted\",\"94\":\"Milton Village Medical\",\"93\":[\"75035\"],\"97\":\"4064\",\"98\":\"qld\",\"95\":\"36 Baroona Road\",\"96\":\"Milton\"}}',NULL,NULL,NULL,'2021-04-28 01:13:16','2021-04-28 01:13:16','d6755111-a222-49e5-990d-5b852a1f9e3e'),(153291,153282,1,NULL,129069,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"129069\",\"title\":\"Casual | Part-Time Medical Receptionist\",\"slug\":\"casual-part-time-medical-receptionist-2\",\"postDate\":null,\"expiryDate\":1622124000,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"admin@mvmedical.com.au\",\"100\":\"Casey-lee Levy\",\"70\":\"0733670333\",\"99\":\"At Milton Village Medical our experienced staff have been committed to excellence in medical care for over ten years. We have recently relocated to a beautiful near new purpose-built clinic at Milton Village. Still very central, we are only 2km from Brisbane’s city centre, and easily accessible by car, bus or train.\\n\\nThis casual position is an opportunity for an energetic and efficient individual to join our highly committed team here at Milton Village Medical.\\n\\nWe are seeking an individual with outstanding customer service skills and highly developed communication skills, who can work autonomously, and as part of a team.\\nDue to the busy nature of our Practice, the ability to work well and remain calm under pressure is essential.\\n\\nMain duties may include but are not limited to:\\n- Delivering high quality customer service to patients, Doctors, and Allied Heath Professionals \\n- Greeting patients and managing front desk.\\n- Handling telephone enquiries and effective scheduling of patient appointments in accordance with Practice procedures.\\n- Performing general administrative, reception and other related duties.\\n- Maintain the practice in a clean and a tidy condition\\n- Maintain confidentiality while managing patient records\\n- Liaise with the Practice Manager and Doctor/s to provide day to day administrative support and take an active part in working closely with other team members \\n to manage daily tasks\\n- Other duties as directed\\n- Hours range between 7am - 6.30pm Mon-Fri and 8am - 1pm Sat-Sun. \\n\\nPrior Medical reception experience, and experience with Best Practice software is preferred, but not essential\\n\\nApplications to be sent to: admin@mvmedical.com.au\\nPlease note: Only applications that have been shortlisted will be contacted\",\"94\":\"Milton Village Medical\",\"93\":[\"75035\"],\"97\":\"4064\",\"98\":\"qld\",\"95\":\"36 Baroona Road\",\"96\":\"Milton\"}}',NULL,NULL,NULL,'2021-04-28 01:13:18','2021-04-28 01:13:18','40ce84d1-9c90-4b80-ac37-fbe64df13f5e'),(153292,153282,1,NULL,129069,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"129069\",\"title\":\"Casual | Part-Time Medical Receptionist\",\"slug\":\"casual-part-time-medical-receptionist-2\",\"postDate\":null,\"expiryDate\":1622124000,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"admin@mvmedical.com.au\",\"100\":\"Casey-lee Levy\",\"70\":\"0733670333\",\"99\":\"At Milton Village Medical our experienced staff have been committed to excellence in medical care for over ten years. We have recently relocated to a beautiful near new purpose-built clinic at Milton Village. Still very central, we are only 2km from Brisbane’s city centre, and easily accessible by car, bus or train.\\n\\nThis casual position is an opportunity for an energetic and efficient individual to join our highly committed team here at Milton Village Medical.\\n\\nWe are seeking an individual with outstanding customer service skills and highly developed communication skills, who can work autonomously, and as part of a team.\\nDue to the busy nature of our Practice, the ability to work well and remain calm under pressure is essential.\\n\\nMain duties may include but are not limited to:\\n- Delivering high quality customer service to patients, Doctors, and Allied Heath Professionals \\n- Greeting patients and managing front desk.\\n- Handling telephone enquiries and effective scheduling of patient appointments in accordance with Practice procedures.\\n- Performing general administrative, reception and other related duties.\\n- Maintain the practice in a clean and a tidy condition\\n- Maintain confidentiality while managing patient records\\n- Liaise with the Practice Manager and Doctor/s to provide day to day administrative support and take an active part in working closely with other team members \\n to manage daily tasks\\n- Other duties as directed\\n- Hours range between 7am - 6.30pm Mon-Fri and 8am - 1pm Sat-Sun. \\n\\nPrior Medical reception experience, and experience with Best Practice software is preferred, but not essential\\n\\nApplications to be sent to: admin@mvmedical.com.au\\nPlease note: Only applications that have been shortlisted will be contacted\",\"94\":\"Milton Village Medical\",\"93\":[\"75035\"],\"97\":\"4064\",\"98\":\"qld\",\"95\":\"36 Baroona Road\",\"96\":\"Milton\"}}',NULL,NULL,NULL,'2021-04-28 01:13:19','2021-04-28 01:13:19','511cf9b6-6a5e-4609-8a98-cb5925feed3d'),(153294,153279,1,NULL,129069,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"129069\",\"title\":\"Casual | Part-Time Medical Receptionist\",\"slug\":\"casual-part-time-medical-receptionist\",\"postDate\":null,\"expiryDate\":1622124000,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"admin@mvmedical.com.au\",\"100\":\"Casey-lee Levy\",\"70\":\"0733670333\",\"99\":\"At Milton Village Medical our experienced staff have been committed to excellence in medical care for over ten years. We have recently relocated to a beautiful near new purpose-built clinic at Milton Village. Still very central, we are only 2km from Brisbane’s city centre, and easily accessible by car, bus or train.\\n\\nThis casual position is an opportunity for an energetic and efficient individual to join our highly committed team here at Milton Village Medical.\\n\\nWe are seeking an individual with outstanding customer service skills and highly developed communication skills, who can work autonomously, and as part of a team.\\nDue to the busy nature of our Practice, the ability to work well and remain calm under pressure is essential.\\n\\nMain duties may include but are not limited to:\\n- Delivering high quality customer service to patients, Doctors, and Allied Heath Professionals \\n- Greeting patients and managing front desk.\\n- Handling telephone enquiries and effective scheduling of patient appointments in accordance with Practice procedures.\\n- Performing general administrative, reception and other related duties.\\n- Maintain the practice in a clean and a tidy condition\\n- Maintain confidentiality while managing patient records\\n- Liaise with the Practice Manager and Doctor/s to provide day to day administrative support and take an active part in working closely with other team members \\n to manage daily tasks\\n- Other duties as directed\\n- Hours range between 7am - 6.30pm Mon-Fri and 8am - 1pm Sat-Sun. \\n\\nPrior Medical reception experience, and experience with Best Practice software is preferred, but not essential\\n\\nApplications to be sent to: admin@mvmedical.com.au\\nPlease note: Only applications that have been shortlisted will be contacted\",\"94\":\"Milton Village Medical\",\"93\":[\"75035\"],\"97\":\"4064\",\"98\":\"qld\",\"95\":\"36 Baroona Road\",\"96\":\"Milton\"}}',NULL,NULL,NULL,'2021-04-28 01:13:27','2021-04-28 01:13:27','e3d0fb5f-8280-43c9-bf47-ab7a89c288d9'),(153295,153279,1,NULL,129069,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"129069\",\"title\":\"Casual | Part-Time Medical Receptionist\",\"slug\":\"casual-part-time-medical-receptionist\",\"postDate\":null,\"expiryDate\":1622124000,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"admin@mvmedical.com.au\",\"100\":\"Casey-lee Levy\",\"70\":\"0733670333\",\"99\":\"At Milton Village Medical our experienced staff have been committed to excellence in medical care for over ten years. We have recently relocated to a beautiful near new purpose-built clinic at Milton Village. Still very central, we are only 2km from Brisbane’s city centre, and easily accessible by car, bus or train.\\n\\nThis casual position is an opportunity for an energetic and efficient individual to join our highly committed team here at Milton Village Medical.\\n\\nWe are seeking an individual with outstanding customer service skills and highly developed communication skills, who can work autonomously, and as part of a team.\\nDue to the busy nature of our Practice, the ability to work well and remain calm under pressure is essential.\\n\\nMain duties may include but are not limited to:\\n- Delivering high quality customer service to patients, Doctors, and Allied Heath Professionals \\n- Greeting patients and managing front desk.\\n- Handling telephone enquiries and effective scheduling of patient appointments in accordance with Practice procedures.\\n- Performing general administrative, reception and other related duties.\\n- Maintain the practice in a clean and a tidy condition\\n- Maintain confidentiality while managing patient records\\n- Liaise with the Practice Manager and Doctor/s to provide day to day administrative support and take an active part in working closely with other team members \\n to manage daily tasks\\n- Other duties as directed\\n- Hours range between 7am - 6.30pm Mon-Fri and 8am - 1pm Sat-Sun. \\n\\nPrior Medical reception experience, and experience with Best Practice software is preferred, but not essential\\n\\nApplications to be sent to: admin@mvmedical.com.au\\nPlease note: Only applications that have been shortlisted will be contacted\",\"94\":\"Milton Village Medical\",\"93\":[\"75035\"],\"97\":\"4064\",\"98\":\"qld\",\"95\":\"36 Baroona Road\",\"96\":\"Milton\"}}',NULL,NULL,NULL,'2021-04-28 01:13:28','2021-04-28 01:13:28','d0ce0c6c-cea9-4409-87f3-199e1028f3e7'),(153303,NULL,1,NULL,153298,NULL,'pending','',NULL,'{\"typeId\":\"5\",\"authorId\":\"153298\",\"title\":\"Diabetes in Practice for Nurses\",\"slug\":\"diabetes-in-practice-for-nurses\",\"postDate\":1619575200,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"https://www.diabetesqualified.com.au/course/diabetes-in-practice-for-nurses/?nonitro=1\",\"71\":\"lilid@diabetesqualified.com.au\",\"70\":\"0409 509 369\",\"67\":\"<p>Diabetes in Practice for Nurses is a person-centred, evidence based eLearning program that incorporates contemporary health literacy principles. 12 CPD hours, accredited by APNA. Price: $110 – subsidised by the NDSS – <strong>LIMITED NUMBERS </strong>(normally $325)</p>\",\"68\":{\"ownerId\":153299,\"ownerSiteId\":1,\"fieldId\":68,\"startDate\":null,\"endDate\":null,\"allDay\":0,\"repeats\":1,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"daily\",\"months\":\"onDay\"},\"7\":[],\"69\":\"Diabetes Qualified\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Diabetes in Practice for Nurses - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Diabetes in Practice for Nurses - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":\"\"}}}}',NULL,NULL,NULL,'2021-04-28 02:05:45','2021-04-28 02:05:45','fcedae2c-5735-4da5-9aec-934feb85da4d'),(153318,153317,1,NULL,113369,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":113369,\"title\":\"Urinary Tract Infection and Drug Resistance Forum\",\"slug\":\"urinary-tract-infection-and-drug-resistance-forum\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Zoom - https://us02web.zoom.us/j/86765108706\",\"71\":\"statewide.ams@health.qld.gov.au\",\"70\":\"07 3646 1886\",\"67\":\"E. coli is changing. So, should we change how we treat it? \\n\\nCo presented by: \\nDr Trent Yarwood, SICN co-chair and QSAMSP \\nDr Naomi Runnegar, SICN Co-chair \\nDr Fabian Jaramillo, General Practitioner \\nDr Gaurav Puri, Endocrinologist, Cairns Hospital \\nDr Patrick Harris, Pathology Queensland \\nDr Minyon Avent, QSAMSP Image: Royalty Free E. Coli Urinary Tract Infection Cell Biology ... istockphoto.com\\nDr Kathryn Daveson, QSAMSP \\nTrish Hurst, CNC RBWH \\nBelinda Henderson, CNC PAH \\n\\nDate &amp; time: 1-3pm, Thursday 3rd June 2021 \\nPlatform (Zoom): https://us02web.zoom.us/j/86765108706\\nMeeting ID: 867 6510 8706 \\nTarget Audience: Senior and Junior Medical Officers, General Practitioners, Nurses &amp; Pharmacists \\n\\nPlease register your interest to attend at: \\nhttps://forms.office.com/r/RMVCZi2tb3 \\n\\nIf you would like to subscribe to updates \\nfrom QSAMSP and SICN, please email: \\nQSAMSP: statewide.ams@health.qld.gov.au\\n\\nSICN (Infectious Diseases and Infection Control and \\nManagement and Antimicrobial Stewardship): \\nStatewide_Infection_Clinical_Network@health.qld.gov.au\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Queensland Statewide Antimicrobial Stewardship Program\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Urinary Tract Infection and Drug Resistance Forum - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Urinary Tract Infection and Drug Resistance Forum - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-29 00:33:27','2021-04-29 00:33:27','33c37439-ef44-4c7e-ab09-0d707dcd64c8'),(153321,153320,1,NULL,113369,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":113369,\"title\":\"Urinary Tract Infection and Drug Resistance Forum\",\"slug\":\"urinary-tract-infection-and-drug-resistance-forum-2\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Zoom - https://us02web.zoom.us/j/86765108706\",\"71\":\"statewide.ams@health.qld.gov.au\",\"70\":\"07 3646 1886\",\"67\":\"E. coli is changing. So, should we change how we treat it? \\n\\nCo presented by: \\nDr Trent Yarwood, SICN co-chair and QSAMSP \\nDr Naomi Runnegar, SICN Co-chair \\nDr Fabian Jaramillo, General Practitioner \\nDr Gaurav Puri, Endocrinologist, Cairns Hospital \\nDr Patrick Harris, Pathology Queensland \\nDr Minyon Avent, QSAMSP Image: Royalty Free E. Coli Urinary Tract Infection Cell Biology ... istockphoto.com\\nDr Kathryn Daveson, QSAMSP \\nTrish Hurst, CNC RBWH \\nBelinda Henderson, CNC PAH \\n\\nDate &amp; time: 1-3pm, Thursday 3rd June 2021 \\nPlatform (Zoom): https://us02web.zoom.us/j/86765108706\\nMeeting ID: 867 6510 8706 \\nTarget Audience: Senior and Junior Medical Officers, General Practitioners, Nurses &amp; Pharmacists \\n\\nPlease register your interest to attend at: \\nhttps://forms.office.com/r/RMVCZi2tb3 \\n\\nIf you would like to subscribe to updates \\nfrom QSAMSP and SICN, please email: \\nQSAMSP: statewide.ams@health.qld.gov.au\\n\\nSICN (Infectious Diseases and Infection Control and \\nManagement and Antimicrobial Stewardship): \\nStatewide_Infection_Clinical_Network@health.qld.gov.au\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Queensland Statewide Antimicrobial Stewardship Program\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Urinary Tract Infection and Drug Resistance Forum - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Urinary Tract Infection and Drug Resistance Forum - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-04-29 00:33:28','2021-04-29 00:33:28','f558941a-ff02-4645-bd43-5f10da1bb916'),(153324,153323,1,NULL,153316,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":153316,\"title\":\"Doctors on Brunswick Fortitude Valley\",\"slug\":\"doctors-on-brunswick-fortitude-valley\",\"postDate\":null,\"expiryDate\":1627653600,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"Roslynn.olsen@doctorlink.com.au\",\"100\":\"Roslynn Olsen\",\"70\":\"0732527614\",\"99\":\"An exciting opportunity is now available for a Full-time VR General Practitioner and a Part-time VR General Practitioner to join our well established medical centre in Fortitude Valley.\\nThe practice is accredited , fully computerized using Best Practice with secure remote access, is mixed billing and has the support of a full-time Registered Nurse, Practice Manager and Admin team that are extremely experienced, friendly and helpful which will offer a new team member full support. Doctors on Brunswick have a sound reputation within the local community for providing excellent medical care and we are located in Central Brunswick Shopping Plaza. There is on-site pathology and free parking available, whilst pharmacy, podiatry,x-ray, and other allied health services are close-by. \\nConveniently located in close pximity to the Brisbane CBD, Gold and Sunshine Coasts , Fortitude Valley precint is packed with life and offers an eclectic mix of everything from live music , relaxed cafes, performing art venues and galleries to up-market European restaurants and shopping.\\nFantastic team and an established patient base awaits.\\nWe look forward to hearing from patient focused GP\'s wanting to embrace the culture of our practice and help care for our patients.\",\"94\":\"Doctors on Brunswick\",\"93\":[\"65423\"],\"97\":\"4006\",\"98\":\"qld\",\"95\":\"Suite 16 , 421 Brunswick Street\",\"96\":\"Fortitude Valley\"}}',NULL,NULL,NULL,'2021-04-29 00:48:58','2021-04-29 00:48:58','0fa1994e-1582-48a5-9196-2d7e80d29227'),(153965,153964,1,NULL,128992,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":128992,\"title\":\"Telegraph Road Clinic – SENIOR MEDICAL RECEPTIONIST\",\"slug\":\"telegraph-road-clinic-senior-medical-receptionist\",\"postDate\":null,\"expiryDate\":1623333600,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"elizabeth.sullivan@telegraphroadclinic.com.au\",\"100\":\"Elizabeth Sullivan\",\"70\":\"3261 7000\",\"99\":\"General Practice Experienced Medical Receptionist\\nTelegraph Road Clinic\\nExperienced Medical Receptionist required for a doctor owned face paced private billing Medical Practice in Bracken Ridge. Immediate start available.\\n\\nWe are currently seeking to fill a casual position. The successful applicant will need to be available for a flexible weekday with occasional evening shifts.\\n\\nWe hire the best people, to be successful in a high-performing culture and we support their development and well being by ensuring they are rewarded and feel valued for what they do.\\n\\nAccurate computer and excellent telephone skills are necessary.\\n\\nThe ability to work under pressure, control the waiting room and complete tasks accurately and on time is highly desirable.\\n\\nYou will be provided full administrative support from experienced medical staff. You will need to have a minimum 3 years current experience in a general practice environment and hold a current SSE level 3 position.\\n\\n\\nOther important requirements are:-\\n\\nExcellent patient service skills.\\nReliability and flexibility.\\nThe ability to lead, guide &amp; also work in a team environment.\\nThe ability to liaise with GP\'s and Allied Health Professionals.\\nA sound knowledge of the day-to-day operations of the front desk including TYRO, HOTDOC online booking platform, complex Vaccine and Proven Histology billing, Medical reporting, Medical record transfer of patient records and Medicare.\\nThe ability to multi-task and problem solve.\\nExcellent organisational and communication skills.\\nDirect patient triage\\nManage the recall and reminder system\\nProficient in the use of Medical Director Clinical and PracSoft preferred.\\nMedical Objects &amp; Smart referrals\\nMedical record transfer and reporting.\\nIT problem solving and Medical software upgrades including Pathology and Radiology downloads.\\nGeneral trouble shooting of Telephone system, Internet provider service, Laser printers and other clinical equipment.\",\"94\":\"Telegraph Road Clinic\",\"93\":[\"75035\"],\"97\":\"4017\",\"98\":\"qld\",\"95\":\"Shop 26 Bracken Ridge Shopping Plaza, 250 Telegraph Road\",\"96\":\"Bracken Ridge\"}}',NULL,NULL,NULL,'2021-04-30 03:46:10','2021-04-30 03:46:10','5f6812ea-b96d-4a3d-9464-191c806af4d6'),(153970,153969,1,NULL,153968,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":153968,\"title\":\"General Practitioner Required\",\"slug\":\"general-practitioner-required\",\"postDate\":null,\"expiryDate\":1622296800,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"management@tmcpv.com.au\",\"100\":\"Julie Graham\",\"70\":\"0417 657 394\",\"99\":\"Flexible Hours\\nGuaranteed income for mutually agreed period\\nNo after-hours / on-call\\nWell-established purpose-built facility\\nAGPAL Accredited\\nBest Practice software\\nFull practice nurse &amp; administration support\\nEthical employer - all enquiries treated \'in strict confidence\'\",\"94\":\"The Medical Centre @ Pumicestone Village\",\"93\":[\"65423\"],\"97\":\"4510\",\"98\":\"qld\",\"95\":\"1 Ardrossan Road,\",\"96\":\"Caboolture\"}}',NULL,NULL,NULL,'2021-04-30 04:21:17','2021-04-30 04:21:17','ca993be4-b7b1-442d-8deb-270020174938'),(153975,153974,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":148802,\"title\":\"Hepatitis C Case Discussion\",\"slug\":\"hepatitis-c-case-discussion\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"jessica.horne@ashm.org.au\",\"70\":\"0432 734 775\",\"67\":\"Have you received hepatitis C training but aren\'t sure how to start prescribing, or would like a refresher?\\n\\nCome along to ASHM\'s Hepatitis C Case Discussion evening to present cases to, and ask questions of, a specialist. This evening will be an informal workshop that will be directed by the needs, questions, and interests of the attendees. \\n\\nThis course is for: General Practitioners and Nurse Practitioners who would like a refresher in hepatitis C education. \\n \\nRegister here: https://ashm.org.au/eventinforeg2/?id=4308fdee-b39d-eb11-b1ac-00224814ce96\\n\\nThis course is funded by QLD Health.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine (ASHM)\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C Case Discussion - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C Case Discussion - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-05-03 00:31:56','2021-05-03 00:31:56','25c8d439-05ce-4d00-82ed-f0a75de9cc7c'),(153978,153977,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":148802,\"title\":\"Hepatitis C Case Discussion\",\"slug\":\"hepatitis-c-case-discussion-2\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"jessica.horne@ashm.org.au\",\"70\":\"0432 734 775\",\"67\":\"Have you received hepatitis C training but aren\'t sure how to start prescribing, or would like a refresher?\\n\\nCome along to ASHM\'s Hepatitis C Case Discussion evening to present cases to, and ask questions of, a specialist. This evening will be an informal workshop that will be directed by the needs, questions, and interests of the attendees. \\n\\nThis course is for: General Practitioners and Nurse Practitioners who would like a refresher in hepatitis C education. \\n \\nRegister here: https://ashm.org.au/eventinforeg2/?id=4308fdee-b39d-eb11-b1ac-00224814ce96\\n\\nThis course is funded by QLD Health.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine (ASHM)\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C Case Discussion - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C Case Discussion - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-05-03 00:31:58','2021-05-03 00:31:58','3229b203-863f-409d-b923-fd3aeb9482ef'),(153980,153974,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C Case Discussion\",\"slug\":\"hepatitis-c-case-discussion\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"jessica.horne@ashm.org.au\",\"70\":\"0432 734 775\",\"67\":\"Have you received hepatitis C training but aren\'t sure how to start prescribing, or would like a refresher?\\n\\nCome along to ASHM\'s Hepatitis C Case Discussion evening to present cases to, and ask questions of, a specialist. This evening will be an informal workshop that will be directed by the needs, questions, and interests of the attendees. \\n\\nThis course is for: General Practitioners and Nurse Practitioners who would like a refresher in hepatitis C education. \\nCPD: This course is pending accreditation by the RACGP for 3 CPD points.\\n \\nRegister here: https://ashm.org.au/eventinforeg2/?id=4308fdee-b39d-eb11-b1ac-00224814ce96\\n\\nThis course is funded by QLD Health.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine (ASHM)\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C Case Discussion - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C Case Discussion - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-05-03 00:33:52','2021-05-03 00:33:52','b1fa9eb7-9a6b-4730-80ca-0a7810db1705'),(153981,153974,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C Case Discussion\",\"slug\":\"hepatitis-c-case-discussion\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"jessica.horne@ashm.org.au\",\"70\":\"0432 734 775\",\"67\":\"Have you received hepatitis C training but aren\'t sure how to start prescribing, or would like a refresher?\\n\\nCome along to ASHM\'s Hepatitis C Case Discussion evening to present cases to, and ask questions of, a specialist. This evening will be an informal workshop that will be directed by the needs, questions, and interests of the attendees. \\n\\nThis course is for: General Practitioners and Nurse Practitioners who would like a refresher in hepatitis C education. \\nCPD: This course is pending accreditation by the RACGP for 3 CPD points.\\n \\nRegister here: https://ashm.org.au/eventinforeg2/?id=4308fdee-b39d-eb11-b1ac-00224814ce96\\n\\nThis course is funded by QLD Health.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine (ASHM)\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C Case Discussion - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C Case Discussion - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-05-03 00:33:53','2021-05-03 00:33:53','73d7c925-bec4-4c97-9c10-cbb39d0dabc4'),(153983,153977,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C Case Discussion\",\"slug\":\"hepatitis-c-case-discussion-2\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"jessica.horne@ashm.org.au\",\"70\":\"0432 734 775\",\"67\":\"Have you received hepatitis C training but aren\'t sure how to start prescribing, or would like a refresher?\\n\\nCome along to ASHM\'s Hepatitis C Case Discussion evening to present cases to, and ask questions of, a specialist. This evening will be an informal workshop that will be directed by the needs, questions, and interests of the attendees. \\n\\nThis course is for: General Practitioners and Nurse Practitioners who would like a refresher in hepatitis C education. \\nCPD: This course is pending accreditation by the RACGP for 3 CPD points.\\n \\nRegister here: https://ashm.org.au/eventinforeg2/?id=4308fdee-b39d-eb11-b1ac-00224814ce96\\n\\nThis course is funded by QLD Health.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine (ASHM)\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C Case Discussion - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C Case Discussion - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-05-03 00:34:21','2021-05-03 00:34:21','550b3bbc-7963-46dc-a911-248ded747735'),(153984,153977,1,NULL,148802,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":\"148802\",\"title\":\"Hepatitis C Case Discussion\",\"slug\":\"hepatitis-c-case-discussion-2\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online, via Zoom\",\"71\":\"jessica.horne@ashm.org.au\",\"70\":\"0432 734 775\",\"67\":\"Have you received hepatitis C training but aren\'t sure how to start prescribing, or would like a refresher?\\n\\nCome along to ASHM\'s Hepatitis C Case Discussion evening to present cases to, and ask questions of, a specialist. This evening will be an informal workshop that will be directed by the needs, questions, and interests of the attendees. \\n\\nThis course is for: General Practitioners and Nurse Practitioners who would like a refresher in hepatitis C education. \\nCPD: This course is pending accreditation by the RACGP for 3 CPD points.\\n \\nRegister here: https://ashm.org.au/eventinforeg2/?id=4308fdee-b39d-eb11-b1ac-00224814ce96\\n\\nThis course is funded by QLD Health.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine (ASHM)\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C Case Discussion - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C Case Discussion - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-05-03 00:34:22','2021-05-03 00:34:22','e187662d-3c40-400b-bafd-3921dd0483af'),(154001,154000,1,NULL,152776,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":152776,\"title\":\"HEALTHED WEBCAST - Tuesday, 11th May 2021\",\"slug\":\"healthed-webcast-tuesday-11th-may-2021\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online\",\"71\":\"info@healthed.com.au\",\"70\":\"02 8758 0103\",\"67\":\"Healthed is Australia’s leader in HCP education and engagement. Offering a variety of trusted and popular learning resources for health professionals, our content is delivered and endorsed by high-caliber national and international experts and is catered to a range of learning styles.\\n\\nWe would like to invite your GPs and Practice Nurses to engage with our high-quality educational resources, in particular our exclusive fortnightly FREE WEBCASTS!\\n\\nYou can find the registration link to this webcast below.\\n\\nClick here to Register for our upcoming FREE WEBCAST!\\nTuesday 11 May | 7:00pm – 9:00pm AEDT\\n\\nParticipants of this webcast can receive: \\n• RACGP: 4 CPD activity points \\n• ACRRM: 2 hours under the Educational Activities Category \\n• Certificate of Attendance\\n• Opportunity to receive FREE product samples and product information\\n\\nFeatured topics and experts in this free webcast: \\n•\\tUpdate on Safety and Adverse Effects of the COVID Vaccines Being Used in Australia\\nProf Kristine Macartney, Director, NCIRS\\nAs the information about clots and other risks develop, there are new guidelines, indications, and patient information that immunisers need to get up to speed on. The situation is very fluid and this lecture is the latest authoritative update available on this and other related issues.\\n\\n•\\tPSA Testing – An Update on Best Practice\\nA/Prof Jeremy Grummet, Urological Surgeon; Director, Clinical Research in Urology, Alfred Health; Clinical Associate Professor, Department of Surgery, Monash University; Co-Founder, MRI PRO\\nPSA testing continues to be a topic that is a cause of debate and sometimes confusion about which men should be tested and how the results should be interpreted and acted upon. We will look at the latest advice on how best to use this test in primary care, and how to explain the test to patients. This talk will also look at new and emerging ideas in assessing prostate cancer risk including prostate MRI and other serum markers.\\n\\n•\\tAn Update on Hypogonadism and Testosterone Replacement\\nA/Prof Robert McLachlan, Physician-Scientist; Director of Clinical Research, Hudson Institute of Medical Research; Principal Research Fellow, NHMRC; Deputy Director, Endocrinology Unit, Monash Medical Centre\\nMale hypogonadism, caused by intrinsic pathology of the hypothalamic–pituitary–testicular (HPT) axis, is an under-diagnosed condition not to be missed. By contrast, late onset hypogonadism (LOH), due to functional suppression of the HPT axis from age-related comorbidities, may be less common than previously believed. Prof McLachlan will provide an update on current evidence, appropriate testing, which patients should be managed with Testosterone supplementation and which by lifestyle modification alone. An overview of current Testosterone delivery options – gel, patch or injection and which option suits which patient will also be covered.\\n\\n•\\tDepression in Men – Practical Advice\\nProf David Castle, Psychiatrist; Inaugural Scientific Director, Centre for Complex Interventions (CCI) at the Centre for Addictions and Mental Health (CAMH), Toronto, Canada; Professor, Department of Psychiatry, The University of Toronto \\nMood disorders in men are less common than in women, but keep this diagnosis in mind if behaviour is becoming violent. Allowing men to express their emotional pain and marshalling support, offering helplines, support groups all help. Pay attention to longitudinal history when differentiating depression from bipolar disorder, and if you suspect this, avoid prescribing SNRIs and tricyclics. When the patient cannot see the pain they will cause when they die by suicide, we may have to take active measures even against the patient\'s will.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Healthed\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"HEALTHED WEBCAST - Tuesday, 11th May 2021 - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"HEALTHED WEBCAST - Tuesday, 11th May 2021 - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-05-04 02:32:13','2021-05-04 02:32:13','68fa6ca0-3337-4f16-8147-365ca4c6c68b'),(154075,154074,1,NULL,154073,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":154073,\"title\":\"General Practitioner - Kedron\",\"slug\":\"general-practitioner-kedron\",\"postDate\":null,\"expiryDate\":1625493600,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"manager@kwmc.net.au\",\"100\":\"Sharon\",\"70\":\"07 3359 2160\",\"99\":\"A rare opportunity exists for a VR General Practitioner to join KWMC. This opening could suit a full-time or part-time doctor with interests in Paediatrics, Women\'s or Men\'s Health.\\n\\nKWMC offers a modern, fully-equipped 3 bed treatment room, adjoining private procedure room and a separate immunisation room. There is an ear microscope, ABI machine and a retinal camera available.\\n\\nYou will be supported by highly qualified nurses and an experienced reception team.\\n\\nThe team is engaged, supportive, and participates in regular business and clinical meetings. Everyone\'s input is valued and this contributes to the success of KWMC.\\n\\nThe team enjoys celebrating social events together and the practice environment is fun and cohesive.\\n\\nComprehensive COVID-19 Policies and Procedures have been developed for the safety of staff and patients.\\n\\nPlease contact the Practice Manager on 3359 2160 for a confidential discussion, or email manager@kwmc.net.au\",\"94\":\"Kedron Wavell Medical Centre\",\"93\":[\"65423\"],\"97\":\"4031\",\"98\":\"qld\",\"95\":\"232 Gympie Road\",\"96\":\"Kedron\"}}',NULL,NULL,NULL,'2021-05-04 05:38:39','2021-05-04 05:38:39','42f64364-6c34-47b5-b316-ddc8829ae28c'),(154078,154077,1,NULL,154073,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":154073,\"title\":\"General Practitioner - Kedron\",\"slug\":\"general-practitioner-kedron-2\",\"postDate\":null,\"expiryDate\":1625493600,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"manager@kwmc.net.au\",\"100\":\"Sharon\",\"70\":\"07 3359 2160\",\"99\":\"A rare opportunity exists for a VR General Practitioner to join KWMC. This opening could suit a full-time or part-time doctor with interests in Paediatrics, Women\'s or Men\'s Health.\\n\\nKWMC offers a modern, fully-equipped 3 bed treatment room, adjoining private procedure room and a separate immunisation room. There is an ear microscope, ABI machine and a retinal camera available.\\n\\nYou will be supported by highly qualified nurses and an experienced reception team.\\n\\nThe team is engaged, supportive, and participates in regular business and clinical meetings. Everyone\'s input is valued and this contributes to the success of KWMC.\\n\\nThe team enjoys celebrating social events together and the practice environment is fun and cohesive.\\n\\nComprehensive COVID-19 Policies and Procedures have been developed for the safety of staff and patients.\\n\\nPlease contact the Practice Manager on 3359 2160 for a confidential discussion, or email manager@kwmc.net.au\",\"94\":\"Kedron Wavell Medical Centre\",\"93\":[\"65423\"],\"97\":\"4031\",\"98\":\"qld\",\"95\":\"232 Gympie Road\",\"96\":\"Kedron\"}}',NULL,NULL,NULL,'2021-05-04 05:38:40','2021-05-04 05:38:40','ed130d8a-6b30-405e-a7ec-7d344cc54fec'),(154096,154095,1,NULL,3763,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":3763,\"title\":\"test\",\"slug\":\"test\",\"postDate\":null,\"expiryDate\":1620136800,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"test@test.com\",\"100\":\"test\",\"70\":\"test\",\"99\":\"test\",\"94\":\"test\",\"93\":[\"65423\"],\"97\":\"test\",\"98\":\"qld\",\"95\":\"test\",\"96\":\"test\"}}',NULL,NULL,NULL,'2021-05-04 06:08:15','2021-05-04 06:08:15','c48d6007-791a-4b1c-af5f-ce9ffec778c8'),(154098,154095,1,NULL,3763,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"3763\",\"title\":\"test\",\"slug\":\"test\",\"postDate\":null,\"expiryDate\":1620136800,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"test@test.com\",\"100\":\"test\",\"70\":\"test\",\"99\":\"test\",\"94\":\"test\",\"93\":[\"65423\"],\"97\":\"test\",\"98\":\"qld\",\"95\":\"test\",\"96\":\"test\"}}',NULL,NULL,NULL,'2021-05-04 06:08:28','2021-05-04 06:08:28','dad2b799-7271-4b8a-abdc-f0ae7fbc9692'),(154099,154095,1,NULL,3763,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"3763\",\"title\":\"test\",\"slug\":\"test\",\"postDate\":null,\"expiryDate\":1620136800,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"test@test.com\",\"100\":\"test\",\"70\":\"test\",\"99\":\"test\",\"94\":\"test\",\"93\":[\"65423\"],\"97\":\"test\",\"98\":\"qld\",\"95\":\"test\",\"96\":\"test\"}}',NULL,NULL,NULL,'2021-05-04 06:08:29','2021-05-04 06:08:29','4fd90259-25f6-4952-b67b-d5ee8974d806'),(154148,154147,1,NULL,123439,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":123439,\"title\":\"Registered Nurse\",\"slug\":\"registered-nurse\",\"postDate\":null,\"expiryDate\":1628172000,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"manager@pbmc.net.au\",\"100\":\"Helen\",\"70\":\"54977400\",\"99\":\"*Experienced Practice nurse required for casual position 16-24 Hours per week for a well established family owned Accreditated Practice\\n*Current Registration with AHPRA and CPR certificate\\nDuties include:\\n*Health Assessments\\n*Care Plans\\n*Ear Irrigation\\n*Childhood Immunisations and other Injections\\n*Wound Care\\n*Treatment room duties sterilisation/ Vaccine and cold chain Management\\n*Best Practice Medical software experience is advantageous\\n\\n\\n\\n\\n\\n\\n\",\"94\":\"Pebble Beach Medical Centre\",\"93\":[\"75039\"],\"97\":\"4511\",\"98\":\"qld\",\"95\":\"204 Bestmann road\",\"96\":\"Sandstone Point\"}}',NULL,NULL,NULL,'2021-05-05 05:47:03','2021-05-05 05:47:03','9fd86750-1259-46c6-a658-abdf339ad873'),(154153,154147,1,NULL,123439,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"123439\",\"title\":\"Registered Nurse\",\"slug\":\"registered-nurse\",\"postDate\":1620193860,\"expiryDate\":1628172000,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"manager@pbmc.net.au\",\"100\":\"Helen\",\"70\":\"54977400\",\"99\":\"*Experienced Practice nurse required for casual position 16-24 Hours per week for a well established family owned Accreditated Practice\\n*Current Registration with AHPRA and CPR certificate\\n*Flexible\\n*Excellent Interpersonal and communication skills\\nDuties include:\\n*Health Assessments\\n*Care Plans\\n*Ear Irrigation\\n*Childhood Immunisations and other Injections\\n*Wound Care\\n*Treatment room duties sterilisation/ Vaccine and cold chain Management\\n*Triage\\n*Best Practice Medical software experience is advantageous\\n\\n\\n\\n\\n\\n\\n\",\"94\":\"Pebble Beach Medical Centre\",\"93\":[\"65423\"],\"97\":\"4511\",\"98\":\"qld\",\"95\":\"204 Bestmann road\",\"96\":\"Sandstone Point\"}}',NULL,NULL,NULL,'2021-05-05 05:56:13','2021-05-05 05:56:13','88aa1de2-07db-4177-bbcf-c9be163e4575'),(154154,154147,1,NULL,123439,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"123439\",\"title\":\"Registered Nurse\",\"slug\":\"registered-nurse\",\"postDate\":1620193860,\"expiryDate\":1628172000,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"manager@pbmc.net.au\",\"100\":\"Helen\",\"70\":\"54977400\",\"99\":\"*Experienced Practice nurse required for casual position 16-24 Hours per week for a well established family owned Accreditated Practice\\n*Current Registration with AHPRA and CPR certificate\\n*Flexible\\n*Excellent Interpersonal and communication skills\\nDuties include:\\n*Health Assessments\\n*Care Plans\\n*Ear Irrigation\\n*Childhood Immunisations and other Injections\\n*Wound Care\\n*Treatment room duties sterilisation/ Vaccine and cold chain Management\\n*Triage\\n*Best Practice Medical software experience is advantageous\\n\\n\\n\\n\\n\\n\\n\",\"94\":\"Pebble Beach Medical Centre\",\"93\":[\"65423\"],\"97\":\"4511\",\"98\":\"qld\",\"95\":\"204 Bestmann road\",\"96\":\"Sandstone Point\"}}',NULL,NULL,NULL,'2021-05-05 05:56:13','2021-05-05 05:56:13','e5d31bd8-b00c-4250-995f-4bc29ea8f660'),(154157,154156,1,NULL,3763,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":3763,\"title\":\"test\",\"slug\":\"test\",\"postDate\":null,\"expiryDate\":1622037600,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"test@test.com\",\"100\":\"test\",\"70\":\"test\",\"99\":\"test\",\"94\":\"test\",\"93\":[\"65423\"],\"97\":\"test\",\"98\":\"qld\",\"95\":\"test\",\"96\":\"test\"}}',NULL,NULL,NULL,'2021-05-06 00:44:12','2021-05-06 00:44:12','240c1bb8-c54f-4ca0-b9de-489a5a7ade1e'),(154161,154160,1,NULL,3763,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":3763,\"title\":\"test\",\"slug\":\"test\",\"postDate\":null,\"expiryDate\":1620828000,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"test@test.com\",\"100\":\"test\",\"70\":\"test\",\"99\":\"test\",\"94\":\"TEST\",\"93\":[\"65423\"],\"97\":\"test\",\"98\":\"qld\",\"95\":\"test\",\"96\":\"test\"}}',NULL,NULL,NULL,'2021-05-06 00:48:12','2021-05-06 00:48:12','6bae657d-2c56-4da2-a956-64df17fa3a80'),(154249,154248,1,NULL,154166,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":154166,\"title\":\"General Practitioner Wanted - FT/PT - Bulk Billing - North Brisbane - DPA Exemption available\",\"slug\":\"general-practitioner-wanted-ft-pt-bulk-billing-north-brisbane-dpa-exemption-available\",\"postDate\":null,\"expiryDate\":1651759200,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"simon.h.patterson@gmail.com\",\"100\":\"Simon Patterson\",\"70\":\"0439 766 573\",\"99\":\"GP required for busy 7 day medical centre. Flexible hours, great team, modern equipment with 3 full time nurse support and DPA exemption potentially available. Weekend hours also available \\n\\nBenefits: \\n- Very high earning potential with guaranteed rate for the first 3 months \\n- Extensive list of patient services offered to cater for any special interests \\n- Flexible working hours \\n- Busy medical centre \\n- Private secure car parking for doctors  \\n\\nThe Practice and Role: \\n- Large practice open 7 days a week with strong collaboration between doctors as well as support staff \\n- Flexible working; part time and full time options considered \\n- Prominent position in Moreton Bay region \\n- Very large diverse patient base \\n- Full time nursing support as well as CDM nurse     \\n- Fully computerised systems inc new skin mapping equipment \\n- Onsite allied health, psychology and pathology with  Pharmacy and radiology all within walking distance   \\n\\nPlease call Simon on 0439 766 573 or send your CV to simon.h.patterson@gmail.com for a confidential chat \",\"93\":[\"65423\"],\"98\":\"qld\",\"96\":\"North Brisbane\"}}',NULL,NULL,NULL,'2021-05-06 05:23:20','2021-05-06 05:23:20','62c4783e-55b6-40db-827b-181b40be34be'),(154252,154251,1,NULL,154166,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":154166,\"title\":\"General Practitioner Wanted - FT/PT - Bulk Billing - North Brisbane - DPA Exemption available\",\"slug\":\"general-practitioner-wanted-ft-pt-bulk-billing-north-brisbane-dpa-exemption-available-2\",\"postDate\":null,\"expiryDate\":1651759200,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"simon.h.patterson@gmail.com\",\"100\":\"Simon Patterson\",\"70\":\"0439 766 573\",\"99\":\"GP required for busy 7 day medical centre. Flexible hours, great team, modern equipment with 3 full time nurse support and DPA exemption potentially available. Weekend hours also available \\n\\nBenefits: \\n- Very high earning potential with guaranteed rate for the first 3 months \\n- Extensive list of patient services offered to cater for any special interests \\n- Flexible working hours \\n- Busy medical centre \\n- Private secure car parking for doctors  \\n\\nThe Practice and Role: \\n- Large practice open 7 days a week with strong collaboration between doctors as well as support staff \\n- Flexible working; part time and full time options considered \\n- Prominent position in Moreton Bay region \\n- Very large diverse patient base \\n- Full time nursing support as well as CDM nurse     \\n- Fully computerised systems inc new skin mapping equipment \\n- Onsite allied health, psychology and pathology with  Pharmacy and radiology all within walking distance   \\n\\nPlease call Simon on 0439 766 573 or send your CV to simon.h.patterson@gmail.com for a confidential chat \",\"93\":[\"65423\"],\"98\":\"qld\",\"96\":\"North Brisbane\"}}',NULL,NULL,NULL,'2021-05-06 05:23:21','2021-05-06 05:23:21','764b3314-5531-4835-b3e7-9a18d397a3fb'),(154316,154315,1,NULL,154314,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":154314,\"title\":\"Medical Practice Manager\",\"slug\":\"medical-practice-manager\",\"postDate\":null,\"expiryDate\":1622988000,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"stuart.mcauley@gympieroadmedicalcentre.com.au\",\"100\":\"Dr Stuart McAuley\",\"70\":\"0490506744\",\"99\":\"We\'re currently seeking an experienced Practice Manager to help us further grow our flourishing medical centre. We are approaching our 5 year annversary and have continued to expand with currently a practice of 12 doctors, several specialists and multiple allied health. \\n\\nIf you have experience in management of a medical related practice and have a true passion to care for the patients and also have an understanding of business principles, with experience implementing business strategies and a proven track record of success we would love to talk with you.\\n\\nThis role will include : \\n\\nCoordinating between different parts of the clinic including doctors, nurses and allied health and Ultimately responsible for orchestrating ongoing success and striving for excellence.\\n​Requirements/areas of responsibility: \\n\\nAccreditation and compliance matters\\nKnowledge of Medicare system\\nKnowledge of medical accounting software (we use Best Practice)\\nSkills in recruitment and contract negotiation with future staff\\nInduction and training of administrative staff\\nStaff management - rosters, quality assurance\\nReview of staff performance appraisals and training needs\\nProvision of payroll services to all staff members\\nIdentifying and troubleshooting daily operational issues\\nCreation and implementation of marketing plans\\nRegular review of financials and understandingof performance benchmarking\\nManagement of website and marketing\\nTo be considered for this role you must possess the following skill set: \\n\\nPassionate about the role and take pride in seeing a successful practice grow. \\nExperienced in medical practice management and \\nFamiliar with human resources and team management and motivation skills including knowledge of the applicable health industry awards and legislation\\nBe a problem solver, professional and articulate and excellent in interpersonal, literacy and numeracy skills\\nYou must have effective communication skills with people from diverse backgrounds\\nExcellence in IT literacy including billing processes, financials and software packages with the ability to adapt to new technology quickly. \\nWell developed organisational and time management skills\\nHave the ability to work as a part of a team in a dynamic organisation\\nPossess good leadership and management skills\\nExcellent communication skills both written and oral\\nYou must have a positive attitude and willingness to get the job done\\nCertificate III/IV or a Diploma in Practice Management would be highly regarded but is not essential as a great attitude and strong work ethic is our priority.\\nWhat makes us different from other employers : \\n\\nThis training clinic is owned by a group of passionate general practitioners and not a corporate group.\\nYou will be backed by passionate doctors who are dedicated to providing the very best in patient care.\\nWe are patient driven , motivated and supportive and our main focus is around providing care to the community.\\nYou will be working in a friendly professional environment with potential bookkeeping support, with a new centre and equipment.\\nThis is a long term career for a passionate, driven individual.\\nApply now\\n\\nIf you believe you possess these qualities and would like to be a part of this amazing team, please apply below with your resume and cover letter.\",\"94\":\"Gympie Road Medical Centre\",\"93\":[\"108528\"],\"97\":\"4501\",\"98\":\"qld\",\"95\":\"1/640 Gympie Road\",\"96\":\"Lawnton\"}}',NULL,NULL,NULL,'2021-05-06 21:14:42','2021-05-06 21:14:42','dd876795-ecb8-4827-92c9-0ce6474a179a'),(154319,154318,1,NULL,154314,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":154314,\"title\":\"Medical Practice Manager\",\"slug\":\"medical-practice-manager-2\",\"postDate\":null,\"expiryDate\":1622988000,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"stuart.mcauley@gympieroadmedicalcentre.com.au\",\"100\":\"Dr Stuart McAuley\",\"70\":\"0490506744\",\"99\":\"We\'re currently seeking an experienced Practice Manager to help us further grow our flourishing medical centre. We are approaching our 5 year annversary and have continued to expand with currently a practice of 12 doctors, several specialists and multiple allied health. \\n\\nIf you have experience in management of a medical related practice and have a true passion to care for the patients and also have an understanding of business principles, with experience implementing business strategies and a proven track record of success we would love to talk with you.\\n\\nThis role will include : \\n\\nCoordinating between different parts of the clinic including doctors, nurses and allied health and Ultimately responsible for orchestrating ongoing success and striving for excellence.\\n​Requirements/areas of responsibility: \\n\\nAccreditation and compliance matters\\nKnowledge of Medicare system\\nKnowledge of medical accounting software (we use Best Practice)\\nSkills in recruitment and contract negotiation with future staff\\nInduction and training of administrative staff\\nStaff management - rosters, quality assurance\\nReview of staff performance appraisals and training needs\\nProvision of payroll services to all staff members\\nIdentifying and troubleshooting daily operational issues\\nCreation and implementation of marketing plans\\nRegular review of financials and understandingof performance benchmarking\\nManagement of website and marketing\\nTo be considered for this role you must possess the following skill set: \\n\\nPassionate about the role and take pride in seeing a successful practice grow. \\nExperienced in medical practice management and \\nFamiliar with human resources and team management and motivation skills including knowledge of the applicable health industry awards and legislation\\nBe a problem solver, professional and articulate and excellent in interpersonal, literacy and numeracy skills\\nYou must have effective communication skills with people from diverse backgrounds\\nExcellence in IT literacy including billing processes, financials and software packages with the ability to adapt to new technology quickly. \\nWell developed organisational and time management skills\\nHave the ability to work as a part of a team in a dynamic organisation\\nPossess good leadership and management skills\\nExcellent communication skills both written and oral\\nYou must have a positive attitude and willingness to get the job done\\nCertificate III/IV or a Diploma in Practice Management would be highly regarded but is not essential as a great attitude and strong work ethic is our priority.\\nWhat makes us different from other employers : \\n\\nThis training clinic is owned by a group of passionate general practitioners and not a corporate group.\\nYou will be backed by passionate doctors who are dedicated to providing the very best in patient care.\\nWe are patient driven , motivated and supportive and our main focus is around providing care to the community.\\nYou will be working in a friendly professional environment with potential bookkeeping support, with a new centre and equipment.\\nThis is a long term career for a passionate, driven individual.\\nApply now\\n\\nIf you believe you possess these qualities and would like to be a part of this amazing team, please apply below with your resume and cover letter.\",\"94\":\"Gympie Road Medical Centre\",\"93\":[\"108528\"],\"97\":\"4501\",\"98\":\"qld\",\"95\":\"1/640 Gympie Road\",\"96\":\"Lawnton\"}}',NULL,NULL,NULL,'2021-05-06 21:14:43','2021-05-06 21:14:43','b32d0c66-7087-4a68-bece-b6a954b2cb0e'),(154322,154321,1,NULL,113369,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":113369,\"title\":\"Common Challenges in Primary Care: Eyes\",\"slug\":\"common-challenges-in-primary-care-eyes\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Zoom - https://zoom.us/meeting/register/tJIudOqorj8iEtTeGHR3RKSfkR2UIJSLFzDv\",\"71\":\"administration.integration@brisbanenorthphn.org.au\",\"70\":\"07 3630 7300\",\"67\":\"Metro North Hospital and Health Service and Brisbane North PHN GP and Optometry Liaison invite GPs and Optometrists to join our panel of eye experts from Royal Brisbane &amp; Women’s Hospital and the community.\\n\\nIn the webinar, we will discuss common general practice eye conditions and talk about the Glaucoma Collaborative Shared Care model. A community optometrist will present on how GPs and Optometrists can support each other and how they can assist with common eye conditions in the community. Community Optometrists will be joining us in the audience for the discussion.\\n\\nYou will be able to ask questions on any eye conditions during the Q&amp;A specialist panel session. Questions can be submitted in advance or during the event using the Slido Q&amp;A application. Links on how to access the webinar and Slido will be sent out in a separate confirmatory email following your registration. \\n\\nFor any feedback, please email the GP Liaison Program at mngplo@health.qld.gov.au or the Optometry Liaison Officer at mnolo@health.qld.gov.au\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Brisbane North PHN and Metro North Hospital and Health Service\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Common Challenges in Primary Care: Eyes - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Common Challenges in Primary Care: Eyes - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-05-06 23:27:31','2021-05-06 23:27:31','5a55c8f8-fd6e-4dfb-8925-cae8c85065c5'),(154439,NULL,1,NULL,154434,NULL,'pending','',NULL,'{\"typeId\":\"5\",\"authorId\":\"154434\",\"title\":\"Telehealth in the COVID-19 Era\",\"slug\":\"telehealth-in-the-covid-19-era\",\"postDate\":1620351960,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"hsaul@rand.org\",\"70\":\"02 6232 6972\",\"67\":\"<p>Telehealth has become an important mode of care delivery over time, and its sudden popularity in the early days of the COVID-19 pandemic signaled a possible healthcare transformation. Telehealth helped maintain continuity of care for millions, preserved personal protective equipment, and facilitated social distancing. Yet, questions remain. In this panel discussion, healthcare researchers and practitioners from Australia and the United States will address increased use of telehealth in these unprecedented times, challenges of an accelerated life cycle of expansive delivery changes, and sustained use of telehealth, with the aim of exchanging ideas and experiences from both countries.</p>\\n<p><strong>Panelists:</strong></p>\\n\\n\\n\\n<ul><li>Len Gray: Director of the University of Queensland\'s Center for Health Services Research</li><li>Teresa Anderson: Chief Executive of Sydney Local Health District</li><li>Lori Uscher-Pines: Senior Policy Researcher at The RAND Corporation</li><li>Rachel Reid: Physician Policy Researcher at The RAND Corporation</li></ul>\\n<p><strong>Moderator:</strong></p>\\n<ul><li>Ateev Mehrotra: Associate Professor of Health Care Policy at Harvard University and Physician Policy Researcher at The RAND Corporation</li></ul>\\n<p>If you wish to RSVP to this event, please email hsaul@rand.org</p>\",\"68\":{\"ownerId\":154435,\"ownerSiteId\":1,\"fieldId\":68,\"startDate\":[],\"endDate\":[],\"allDay\":0,\"repeats\":0,\"days\":null,\"endRepeat\":null,\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":null,\"months\":null},\"7\":[],\"69\":\"RAND Australia\",\"72\":\"online\",\"82\":{\"titleRaw\":{\"1\":\"Telehealth in the COVID-19 Era\"},\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Telehealth in the COVID-19 Era - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Telehealth in the COVID-19 Era - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":\"\"}}}}',NULL,NULL,NULL,'2021-05-07 01:49:16','2021-05-07 01:49:16','5633d30f-3388-42da-9508-8a638fd6914d'),(156992,156991,1,NULL,120644,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":120644,\"title\":\"Part Time Practice Nurse (RN) Neighbourhood Medical Bardon\",\"slug\":\"part-time-practice-nurse-rn-neighbourhood-medical-bardon\",\"postDate\":null,\"expiryDate\":1624975200,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"admin@neighbourhoodmedical.com.au\",\"100\":\"Sarah McDonnell\",\"70\":\"0735196963\",\"99\":\"Neighbourhood Medical is a brand new and flourishing general practice in beautiful Bardon, open since December 2021, with a focus on women and children’s health. Our current experienced RN is now at full capacity and we are looking for an experienced RN to join our clinical team 2 mornings per week (Tuesday and Thursday), with a view to increasing to 2 school length or full days, and to provide cross cover for leave. \\n\\nThe role will be on a casual basis, with potential to move to a part-time permanent contract for the right candidate. Remuneration will be at the national award level dependent on previous experience\\n\\nQualifications required: \\n•\\tMinimum of 12mths General Practice nursing experience\\n•\\tCurrent APRHA registration\\n•\\tCurrent CPR certificate\\n•\\tPrevious experience with Medical Director\\n•\\tCurrent QHIP &amp; AIR knowledge\\n\\nSummary of position: \\nThis role requires excellent communication skills to develop rapport and therapeutic relationship with patients, as well as working within a highly collaborative team environment, where initiative and ideas are valued.\\n\\nThe successful candidate must be able and willing to work autonomously when appropriate in this diverse role, which incorporates treatment room management, minor procedures and IUD insertions, a significant child health role including vaccinations, as well as chronic disease management for all age groups. Familiarity with modern sterilizing techniques is essential.\\n\\nEnthusiasm for ongoing education and professional development is highly valued. Reliability, capacity to multi-task and demonstrate initiative and good time management are also key characteristics required in this role.\\n\\nGeneral Duties in this role include:\\n\\no\\tContribute to a warm and welcoming environment for all patients, as well as family and carers.\\no\\tPerform nursing duties in an organised and systematic manner in line with practice policies and procedures.\\no\\tParticipate in practice meetings, collaborative planning activities and quality assurance activities.\\no\\tMaintenance of professional CPD requirements, registration and indemnity.\\n\\nOther duties include:\\nEducation, Health Promotion, Chronic disease management including assisting with preparation of care plans.\\n\\n\\n\\nTreatment room operation including vaccine management and sterilisation.\\n\\nMedical Tasks including but not limited to:\\no\\tPreparation of equipment for and assistance with minor surgery and IUD insertions\\no\\tChildhood and adult immunisation – administration and documentation\\no\\tVital sign monitoring including BSL\\no\\tECG\\no\\tAssistance in cases of medical emergency\\n \\n\\nFor a detailed job description and to be considered for this opportunity please forward a CV and cover letter to admin@neighbourhoodmedical.com.au.\\n\\n\\nOnly successful candidates will be contacted. \\n\",\"94\":\"Neighbourhood Medical\",\"93\":[\"75039\"],\"97\":\"4065\",\"98\":\"qld\",\"95\":\"1A Stuartholme Road\",\"96\":\"Bardon\"}}',NULL,NULL,NULL,'2021-05-09 11:07:26','2021-05-09 11:07:26','22bf26e7-8739-4eab-a9d8-39551d875fa8'),(157647,157646,1,2441,157642,NULL,'pending','',NULL,'{\"typeId\":\"19\",\"authorId\":\"157642\",\"title\":\"General Practitioner Full or Part Time\",\"slug\":\"general-practitioner-full-or-part-time\",\"postDate\":1620694020,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"practicemanager@ashgrovewestgp.com.au\",\"100\":\"Jenny Glebova\",\"70\":\"+61733663544\",\"99\":\"<p>We are seeking a Full Time or Part Time GP to join our friendly team at our GP owned and operated Practice in Ashgrove, Brisbane. Our Practice has been in operation for 40 years and we are looking to expand our team of GP\'s. The Practice opening hours are 8am-7pm Monday to Friday, and Saturday mornings 9am-12pm.</p>\\n<p>Ideally we are seeking a GP who can work full or part time with negotiable hours/days of work. The Practice is computerised and uses Medical Director and Pracsoft. Full RN support. We are fully accredited, and aim to provide excellence in medicine.</p>\\n<p>You will need to be Vocationally Registered, AHPRA Registered, and hold the appropriate medical indemnity insurance. 65% mixed billings.</p>\",\"94\":\"Ashgrove West Group Practice Pty Ltd\",\"93\":[\"65423\"],\"97\":\"4060\",\"98\":\"qld\",\"95\":\"461 Waterworks Road\",\"96\":\"ASHGROVE WEST\"}}',NULL,NULL,NULL,'2021-05-11 00:50:09','2021-05-11 00:50:09','d086f98a-8d54-4169-8d8f-bf30a3e75d07'),(158124,158123,1,NULL,157649,NULL,'pending',NULL,NULL,'{\"typeId\":\"27\",\"authorId\":157649,\"title\":\"Invitation for GPs to participate in a survey study about breast density\",\"slug\":\"invitation-for-gps-to-participate-in-a-survey-study-about-breast-density\",\"postDate\":null,\"expiryDate\":1672322400,\"enabled\":false,\"newParentId\":null,\"fields\":{\"128\":\"The University of Sydney\",\"124\":\"Australian primary care clinicians’ current knowledge, understanding and feelings around breast density information and notification: a cross-sectional survey \\n\\nResearchers from the University of Sydney are seeking GPs to participate in a study about breast density (approved by The University of Sydney Human Ethics Research Committee)\\n\\nThere is currently no published data on what Australian primary care clinicians know about breast density or feel about the possibility of widespread notification. Your views and experiences are crucial to generating valuable insights that will improve care for Australian women. If you are a GP and see women aged 40-74 years of age, please take part in this important research.\\n\\nThe study involves completing one 10-15-minute online questionnaire. By completing the survey, you will be entered into the draw for one of five $100 vouchers!\\n\\nTo find out more and be a part of the study, please click: https://sydney.au1.qualtrics.com/jfe/form/SV_agxrAKcTfoUObQi\\n\",\"125\":\"https://sydney.au1.qualtrics.com/jfe/form/SV_agxrAKcTfoUObQi\"}}',NULL,NULL,NULL,'2021-05-11 01:25:44','2021-05-11 01:25:44','0d2281c4-0d09-4c92-b7a3-0d5d07dc76cd'),(159112,159111,1,NULL,158959,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":158959,\"title\":\"World Haemochromatosis Week\",\"slug\":\"world-haemochromatosis-week\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Goorna Close\",\"71\":\"liz.mccray@ha.org.au\",\"70\":\"0411145771\",\"67\":\"World Haemochromatosis Week focuses on haemochromatosis and risk of iron overload. \\n\\nThe key messages for the week include:\\n1. Haemochromatosis is the most common genetic disorder in Australia\\n2. If you are the 1 in 200 affected, it can cause serious health problems\\n3. Ask your doctor, find out if you are storing too much iron.\\nMore info please visit www.ha.org.au\\n\\nHaemochromatosis is the most common genetic disorder in Australia and affects one in 200 Australians. One in seven Australians carry the gene, and it is necessary to inherit a gene from each parent to have the condition. A single diagnosis can often lead to multi-generational investigations and diagnoses.\\n\\nThe condition is often underdiagnosed because the symptoms of tiredness, muscle weakness and joint pain are generic and non-specific. Most people know anaemia causes tiredness and lethargy from too little iron in your blood yet few know the same symptoms arise from having too much iron.\\nThe condition causes the body to absorb too much iron from food. This excess iron overloads body tissues, damages organs and can cause premature death. \\nThe tragedy is that so many people suffer harm unnecessarily when timely management of their condition is simple, safe and effective. Haemochromatosis can easily be managed through blood donations which remove iron from the body and a diagnosis of haemochromatosis should be no barrier to a normal life.\\n\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Haemochromatosis Australia\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"World Haemochromatosis Week - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"World Haemochromatosis Week - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-05-11 01:58:03','2021-05-11 01:58:03','79ad96d7-e5f8-4d13-baa7-558d31e4716f'),(160369,160368,1,NULL,98761,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":98761,\"title\":\"VR GP Position available - Kallangur\",\"slug\":\"vr-gp-position-available-kallangur\",\"postDate\":null,\"expiryDate\":1627653600,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"admin@audoc.com.au\",\"100\":\"Jemma Erickson\",\"70\":\"07 3317 4040\",\"99\":\"Australian Doctors Clinic Kallangur are seeking a VR GP to join our team. We opened our doors in 2018 and have been growing quickly ever since.\\n\\nWe are looking for a full time GP but are happy to accommodate a part-time position if this is your preference. Pick your days and hours to suit your needs.\\n\\nWe are a doctor owned and operated clinic, AGPAL accredited with full time nursing support. We have a friendly, efficient, and reliable team of Reception, Practice Management, Allied Health (Physio &amp; Dietitian), and onsite pathology. We are a busy little clinic with new patients joining every day.\\n\\nWe are located just 30 minutes north from Brisbane CBD (7 minutes across the highway from North Lakes). We have free onsite car parking and are located in Kallangur Fair shopping Centre.\\n\\nRemuneration: 70% total billings/$150 per hour for an agreed initial period with incentives.\\n\\nIncentives include: a 1 off payment of up to $10,000 upon commencement to assist with relocation costs. An additional $5,000 payment for contract renewal after 1 year of service. For T’s &amp; C’s and any additional information please contact me asap.\",\"94\":\"Australian Doctors Clinic Kallangur\",\"93\":[\"65423\"],\"97\":\"4503\",\"98\":\"qld\",\"95\":\"Shop 13 Kallangur Fair, 1473 Anzac Ave\",\"96\":\"Kallangur\"}}',NULL,NULL,NULL,'2021-05-11 04:39:43','2021-05-11 04:39:43','116a38b4-1b26-48cc-98a4-5e60947ab550'),(160427,160426,1,NULL,138378,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":138378,\"title\":\"Non-IVF Fertility Treatments by Monash IVF\",\"slug\":\"non-ivf-fertility-treatments-by-monash-ivf\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Free online webinar\",\"71\":\"victoria.turner@monashivf.com\",\"70\":\"0416322000\",\"67\":\"Join us as our Fertility Specialists discuss:\\n•\\tHow lifestyle choices impact fertility\\n•\\tComplimentary therapies and their impact on fertility\\n•\\tTimed Intercourse\\n•\\tOvulation Tracking (including home kits vs blood tests)\\n•\\tOvulation Induction (OI) – the pros and cons\\n•\\tIntra Uterine Insemination (IUI) – the pros and cons\\n\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Monash IVF\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Non-IVF Fertility Treatments by Monash IVF - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Non-IVF Fertility Treatments by Monash IVF - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-05-11 04:46:39','2021-05-11 04:46:39','23e145a4-d277-46b9-b265-6fb7266864a1'),(160779,160778,1,NULL,98761,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":98761,\"title\":\"Psychologist - Australian Doctors Clinic Kallangur\",\"slug\":\"psychologist-australian-doctors-clinic-kallangur\",\"postDate\":null,\"expiryDate\":1627653600,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"admin@audoc.com.au\",\"100\":\"Jemma Erickson\",\"70\":\"07 3317 4040\",\"99\":\"We are seeking an experienced Psychologist to join our team. Here at Australian Doctors Clinic Kallangur, we want to support our patients by providing quality and affordable holistic patient-based care. Since our doors opened in 2018, we have been growing quickly seeing new patients joining every day. \\n\\nOur patients would benefit from an affordable Psychology fee structure as our clinic is 100% bulk billing for Medicare patients seeing GP’s.\\n\\nWe are a doctor owned and operated AGPAL accredited clinic. We have a friendly, efficient, and reliable team of GPs, Registered Nurse, Reception, Practice Management, Allied Health (Physio &amp; Dietitian), and onsite pathology. \\n\\nRoom Rent is negotiable. We can offer half day/full day fees or per patient-based fees. For more information, please contact me asap.\",\"94\":\"Australian Doctors Clinic Kallangur\",\"93\":[\"65423\"],\"97\":\"4503\",\"98\":\"qld\",\"95\":\"Shop 13 Kallangur Fair, 1473 Anzac Ave\",\"96\":\"Kallangur\"}}',NULL,NULL,NULL,'2021-05-11 04:49:48','2021-05-11 04:49:48','d16f30e7-d816-4974-824e-bbcdef6a4078'),(160781,160778,1,NULL,98761,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"98761\",\"title\":\"Psychologist\",\"slug\":\"psychologist-australian-doctors-clinic-kallangur\",\"postDate\":null,\"expiryDate\":1627653600,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"admin@audoc.com.au\",\"100\":\"Jemma Erickson\",\"70\":\"07 3317 4040\",\"99\":\"We are seeking an experienced Psychologist to join our team. Here at Australian Doctors Clinic Kallangur, we want to support our patients by providing quality and affordable holistic patient-based care. Since our doors opened in 2018, we have been growing quickly seeing new patients joining every day. \\n\\nOur patients would benefit from an affordable Psychology fee structure as our clinic is 100% bulk billing for Medicare patients seeing GP’s.\\n\\nWe are a doctor owned and operated AGPAL accredited clinic. We have a friendly, efficient, and reliable team of GPs, Registered Nurse, Reception, Practice Management, Allied Health (Physio &amp; Dietitian), and onsite pathology. \\n\\nRoom Rent is negotiable. We can offer half day/full day fees or per patient-based fees. For more information, please contact me asap.\",\"94\":\"Australian Doctors Clinic Kallangur\",\"93\":[\"65423\"],\"97\":\"4503\",\"98\":\"qld\",\"95\":\"Shop 13 Kallangur Fair, 1473 Anzac Ave\",\"96\":\"Kallangur\"}}',NULL,NULL,NULL,'2021-05-11 04:50:17','2021-05-11 04:50:17','0ac876f9-3535-46d9-892c-649c041be529'),(160782,160778,1,NULL,98761,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"98761\",\"title\":\"Psychologist\",\"slug\":\"psychologist-australian-doctors-clinic-kallangur\",\"postDate\":null,\"expiryDate\":1627653600,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"admin@audoc.com.au\",\"100\":\"Jemma Erickson\",\"70\":\"07 3317 4040\",\"99\":\"We are seeking an experienced Psychologist to join our team. Here at Australian Doctors Clinic Kallangur, we want to support our patients by providing quality and affordable holistic patient-based care. Since our doors opened in 2018, we have been growing quickly seeing new patients joining every day. \\n\\nOur patients would benefit from an affordable Psychology fee structure as our clinic is 100% bulk billing for Medicare patients seeing GP’s.\\n\\nWe are a doctor owned and operated AGPAL accredited clinic. We have a friendly, efficient, and reliable team of GPs, Registered Nurse, Reception, Practice Management, Allied Health (Physio &amp; Dietitian), and onsite pathology. \\n\\nRoom Rent is negotiable. We can offer half day/full day fees or per patient-based fees. For more information, please contact me asap.\",\"94\":\"Australian Doctors Clinic Kallangur\",\"93\":[\"65423\"],\"97\":\"4503\",\"98\":\"qld\",\"95\":\"Shop 13 Kallangur Fair, 1473 Anzac Ave\",\"96\":\"Kallangur\"}}',NULL,NULL,NULL,'2021-05-11 04:50:18','2021-05-11 04:50:18','a02200e8-8667-4caa-a624-82b5c2a5f8d1'),(161365,NULL,1,NULL,161103,NULL,'pending','Unable to load invite with registration link. ',NULL,'{\"typeId\":\"5\",\"authorId\":\"161103\",\"title\":\"Evidence Based solutions for Skin Injury Prevention and management. An Invite for Saturday 15th May  - Speakers Kerrie Coleman and Monica Stankiewicz\",\"slug\":\"evidence-based-solutions-for-skin-injury-prevention-and-management-an-invite-for-saturday-15th-may-speakers-kerrie-coleman-and-monica-stankiewicz\",\"postDate\":1620709680,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"At The Pavilions, Allan Border Field 1 Greg Chappell St Albion QLD 4010\",\"71\":\"spritchard@mmm.com\",\"70\":\"+61428649188\",\"67\":\"<p>3M are proud to invite you to join our lunch and learn with guest speakers</p>\\n\\n<p>Kerrie Coleman and Monica Stankiewicz presenting on the topic of Medical</p>\\n<p>Adhesive Related Skin Injury (MARSI), Skin Integrity &amp; Lower Limb Wounds.</p>\\n<p>We will look at the impact to patients and staff and best practice prevention</p>\\n\\n<p>and management techniques. Please email for an invite to register through event-bright.</p>\\n<p><strong>Learning Outcomes</strong><br />By participating in this session, you<br />will:<br />•Develop a better understanding<br />of the impact of MARSI to<br />patients and caregivers<br />•Recognise the risk factors for skin<br />injury<br />•Be able to implement best<br />practice prevention and<br />management of skin injuries</p>\",\"68\":{\"ownerId\":161104,\"ownerSiteId\":1,\"fieldId\":68,\"startDate\":[],\"endDate\":[],\"allDay\":0,\"repeats\":0,\"days\":null,\"endRepeat\":null,\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":null,\"months\":null},\"7\":[],\"69\":\"3M\",\"72\":\"within\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Evidence Based solutions for Skin Injury Prevention and management. An Invite for Saturday 15th May - Speakers Kerrie Coleman and Monica Stankiewicz - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Evidence Based solutions for Skin Injury Prevention and management. An Invite for Saturday 15th May - Speakers Kerrie Coleman and Monica Stankiewicz - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":\"\"}}}}',NULL,NULL,NULL,'2021-05-11 05:48:31','2021-05-11 05:48:31','0c5dc2cb-f041-4390-826c-c9f95418c088'),(161378,NULL,1,NULL,128439,NULL,'pending','',NULL,'{\"typeId\":\"5\",\"authorId\":\"128439\",\"title\":\"HIV s100 Prescriber Course\",\"slug\":\"hiv-s100-prescriber-course\",\"postDate\":1620776220,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"education@ashm.org.au\",\"70\":\"0431 320 429\",\"67\":\"<p>The HIV s100 Prescriber Course is designed to support primary care medical practitioners and nurse practitioners to manage and treat HIV. The prescriber course is delivered over 4 weeks with a combination of self-paced learning activities and interactive webinars. Upon successful completion of this training and the associated case assessment, eligible participants may apply to the relevant state departments of health for authority to prescribe section 100 drugs for the management of HIV in Australia. </p>\\n<p> </p>\\n<p><strong>This course is for:</strong> primary care medical practitioners and nurse practitioners in Queensland. Priority will be given to GPs and Nurse Practitioners in QLD who require accreditation to prescribe. </p>\\n<p> </p>\\n<p><em>This educational activity has been submitted as a CPD Accredited Activity to RACGP CPD Program. </em></p>\\n<p><em>This course is endorsed by the Australian College of Nurse Practitioners (ACNP). </em></p>\\n<p> </p>\\n<p><strong>Live interactive webinars: </strong></p>\\n<p>Week 1: 03 June 2021, 7:00pm – 9:00pm (AEST) </p>\\n<p>Week 2: 10 June 2021, 7:00pm – 9:00pm (AEST) </p>\\n<p>Week 3: 17 June 2021, 7:00pm – 9:00pm (AEST) </p>\\n<p>Week 4: 24 June 2021, 7:00pm – 9:00pm (AEST) </p>\\n<p> </p>\\n<p><strong>REGISTER HERE</strong> <a href=\\\"https://ashm.org.au/eventinforeg2/?id=a18d19d2-69a9-eb11-9442-002248153b25\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">https://ashm.org.au/eventinforeg2/?id=a18d19d2-69a9-eb11-9442-002248153b25</a></p>\\n<p> </p>\\n<p><em>This course is funded by QLD Health.</em></p>\",\"68\":{\"ownerId\":161372,\"ownerSiteId\":1,\"fieldId\":68,\"startDate\":[],\"endDate\":[],\"allDay\":0,\"repeats\":0,\"days\":null,\"endRepeat\":null,\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":null,\"months\":null},\"7\":[\"161373\"],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine (ASHM)\",\"72\":\"online\",\"82\":{\"titleRaw\":{\"1\":\"HIV s100 Prescriber Course\"},\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"HIV s100 Prescriber Course - Brisbane North PHN\",\"imageId\":\"161374\",\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"HIV s100 Prescriber Course - Brisbane North PHN\",\"imageId\":\"161374\",\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":\"\"}}}}',NULL,NULL,NULL,'2021-05-11 23:47:22','2021-05-11 23:47:22','e1b9d74c-57f6-48c4-87bc-2138156a8d0c'),(161385,161384,1,2467,128439,NULL,'pending','',NULL,'{\"typeId\":\"5\",\"authorId\":\"128439\",\"title\":\"Hepatitis B Nursing: Advanced Management and Care\",\"slug\":\"hepatitis-b-nursing-advanced-management-and-care\",\"postDate\":1620776820,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"education@ashm.org.au\",\"70\":\"0431 320 429\",\"67\":\"<p>The course will provide nurses with advanced practical skills and knowledge in hepatitis B nursing. The course includes presentations and case discussions that introduce the epidemiology and natural history of hepatitis B, vaccination, testing, fibrosis assessment, advanced liver disease, stigma and discrimination and the cultural context of hepatitis B nursing. </p>\\n<p><strong>This course is for: </strong>Nurses and Midwives practicing in QLD </p>\\n<p>Session 1: Friday 4 June 2021, 9:00am – 12:00pm (AEST) </p>\\n<p>Session 2: Saturday 12 June 2021, 9:00am – 1:00pm (AEST) </p>\\n<p><strong>Register here:</strong> <a href=\\\"https://www.ashm.org.au/eventinforeg2/?id=c00ff4b1-9bac-eb11-8236-00224814fffd\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\">https://www.ashm.org.au/eventinforeg2/?id=c00ff4b1-9bac-eb11-8236-00224814fffd</a> </p>\\n<p><em>This course is funded by QLD</em> <em>Health</em> </p>\",\"68\":{\"ownerId\":161379,\"ownerSiteId\":1,\"fieldId\":68,\"startDate\":[],\"endDate\":[],\"allDay\":0,\"repeats\":0,\"days\":null,\"endRepeat\":null,\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":null,\"months\":null},\"7\":[\"161380\"],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine (ASHM)\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis B Nursing: Advanced Management and Care - Brisbane North PHN\",\"imageId\":\"161381\",\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis B Nursing: Advanced Management and Care - Brisbane North PHN\",\"imageId\":\"161381\",\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":\"\"}}}}',NULL,NULL,NULL,'2021-05-11 23:51:05','2021-05-11 23:51:05','1ffac2fb-4a19-4561-81d3-3d3c9540c6e1'),(161390,161389,1,2469,128439,NULL,'pending','',NULL,'{\"typeId\":\"5\",\"authorId\":\"128439\",\"title\":\"Dare to Innovate: Hepatitis C Models of Care\",\"slug\":\"dare-to-innovate-hepatitis-c-models-of-care\",\"postDate\":1620777060,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"education@ashm.org.au\",\"70\":\"0431 320 429\",\"67\":\"<p>This interactive webinar that will explore innovative models of care with the aim to reinvigorate general practitioners’ engagement in prescribing DAA therapy for hepatitis C. After attending this webinar, attendees will identify patient barriers to testing and treatment and consider new strategies for connecting with the patient population to find and treat the remaining cases in Australia. </p>\\n<p><strong>This course is for: </strong>General Practitioners and GP Registrars prescribing or intending to prescribe s85 direct-acting antiviral medication for HCV in primary care settings. </p>\\n<p>This webinar is being run in partnership with RACGP. </p>\\n<p>This education is a CPD Activity under the RACGP CPD Program. 3 points allocated. </p>\\n<p>22 June 2021, 7:00pm – 8:30pm (AEST) </p>\\n<p><strong>REGISTER HERE: </strong><a href=\\\"https://www.ashm.org.au/eventinforeg2/?id=b8f3bbd4-a2ac-eb11-8236-00224814fffd\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\"><strong>https://www.ashm.org.au/eventinforeg2/?id=b8f3bbd4-a2ac-eb11-8236-00224814fffd</strong></a> </p>\\n<p><em>This course is sponsored by Gilead. Sponsorship is governed by our Sponsorship Policy, and these sponsors have no input into the content, tone or emphasis of the course.</em> </p>\",\"68\":{\"ownerId\":161386,\"ownerSiteId\":1,\"fieldId\":68,\"startDate\":[],\"endDate\":[],\"allDay\":0,\"repeats\":0,\"days\":null,\"endRepeat\":null,\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":null,\"months\":null},\"7\":[],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine (ASHM)\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Dare to Innovate: Hepatitis C Models of Care - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Dare to Innovate: Hepatitis C Models of Care - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":\"\"}}}}',NULL,NULL,NULL,'2021-05-11 23:53:34','2021-05-11 23:53:34','6863248a-3ecd-4e84-9302-7b13797eadba'),(161397,161396,1,2471,128439,NULL,'pending','',NULL,'{\"typeId\":\"5\",\"authorId\":\"128439\",\"title\":\"Hepatitis C in Primary Care\",\"slug\":\"hepatitis-c-in-primary-care\",\"postDate\":1620777180,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"education@ashm.org.au\",\"70\":\"0431 320 429\",\"67\":\"<p>This free interactive webinar provides practitioners in primary and related care settings with an overview of the hepatitis C management in primary care settings, including case finding, testing, patient assessment and treatment. </p>\\n<p><strong>This course is for: </strong>General Practitioners, Nurse Practitioners, Nurses, other Primary Care-based Practitioners. </p>\\n<p>This webinar is being run in partnership with RACGP. </p>\\n<p>This education is a CPD Activity under the RACGP CPD Program. 3 points allocated. </p>\\n<p>14 July, 7:00pm – 8:30pm (AEST) </p>\\n<p><strong>REGISTER HERE </strong><a href=\\\"https://www.ashm.org.au/eventinforeg2/?id=d605a5c2-a9ac-eb11-8236-00224814fffd\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\"><strong>https://www.ashm.org.au/eventinforeg2/?id=d605a5c2-a9ac-eb11-8236-00224814fffd</strong></a> </p>\\n<p><em>This course is funded by Queensland Health</em> </p>\",\"68\":{\"ownerId\":161391,\"ownerSiteId\":1,\"fieldId\":68,\"startDate\":[],\"endDate\":[],\"allDay\":0,\"repeats\":0,\"days\":null,\"endRepeat\":null,\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":null,\"months\":null},\"7\":[\"161392\"],\"69\":\"Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine (ASHM)\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Hepatitis C in Primary Care - Brisbane North PHN\",\"imageId\":\"161393\",\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Hepatitis C in Primary Care - Brisbane North PHN\",\"imageId\":\"161393\",\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":\"\"}}}}',NULL,NULL,NULL,'2021-05-11 23:57:23','2021-05-11 23:57:23','ec7c79fb-5e08-4079-a0c0-9d76fc4c5a3e'),(161402,161401,1,NULL,97391,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":97391,\"title\":\"Optimising Telehealth:  Evidence, Practice Viability & Patient Preference\",\"slug\":\"optimising-telehealth-evidence-practice-viability-patient-preference\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"https://us02web.zoom.us/webinar/register/WN_ZzkiGuspT7ex2GIZkqZ9qg\",\"71\":\"\",\"67\":\"Join Prof Len Gray, Dr Jared Dart, Microsoft\'s Dr Nic Woods and primary-care accountant Kelly Chard, along with The Queensland Government for a real-world look at the evidence, optimising practice viability and enhancing patient care via GP-centric telehealth.\\nImmediately implementable overviews of;\\n1. Evidence in review - what the past year has taught us\\n2. Simpler, safer more sustainable telehealth\\n3. Where telehealth works for patients - case examples\\n4. Optimising practice viability through telehealth\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Inside Practice\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Optimising Telehealth:  Evidence, Practice Viability & Patient Preference - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Optimising Telehealth:  Evidence, Practice Viability & Patient Preference - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-05-12 02:07:20','2021-05-12 02:07:20','90bfc177-f6a7-477f-9d02-4f5df04d3cca'),(161413,161412,1,NULL,98761,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":98761,\"title\":\"Registered Nurse – Practice Nurse (Part time)\",\"slug\":\"registered-nurse-practice-nurse-part-time\",\"postDate\":null,\"expiryDate\":1627653600,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"admin@audoc.com.au\",\"100\":\"Jemma Erickson\",\"70\":\"07 3317 4040\",\"99\":\"Australian Doctors Clinic Kallangur requires an experienced Registered Nurse to join our friendly, supportive team in a part-time role. We are looking for a motivated nurse who will provide the highest standard of care to our patients. Must have general practice experience. Hours are 9am-5pm, 2 days a week. \\n\\nResponsibilities will include:\\n·\\tChronic Disease Management - assist doctors with Care Plans and Health Assessments\\n·\\tImmunisations\\n·\\tRecalls and reminders\\n·\\tSterilising\\n·\\tTreatment room stock management\\n·\\tInfection control management\\n·\\tCold chain management\\n·\\tECG and Spirometry\\n·\\tAccreditation preparation\\n·\\tTriage\\n·\\tWound management\\n·\\tEar irrigation\\n·\\tAssisting with minor procedures\\n·\\tAssisting reception with admin duties\\n·\\tOther duties as required\\n \\nThe ideal candidate will have the following:\\n·\\tCurrent unrestricted AHPRA registration\\n·\\tExperience in General Practice\\n·\\tExperience with medical software, preferably Best Practice\\n·\\tChronic Disease Management experience\\n·\\tTriage experience\\n·\\tWarm and caring manner\\n\\nIf you are a team player who can provide nursing support to our doctors, please apply with your Cover Letter and Resume.\\nFor more information, please email me: admin@audoc.com.au or call: 07 3317 4040. \\n\",\"94\":\"Australian Doctors Clinic Kallangur\",\"93\":[\"65423\"],\"97\":\"4503\",\"98\":\"qld\",\"95\":\"Shop 13 Kallangur Fair, 1473 Anzac Ave\",\"96\":\"Kallangur\"}}',NULL,NULL,NULL,'2021-05-12 04:45:35','2021-05-12 04:45:35','20160188-a0a4-4749-90da-41e9ba1f71db'),(161418,161417,1,2474,161409,NULL,'pending','',NULL,'{\"typeId\":\"5\",\"authorId\":\"161409\",\"title\":\"Master Class on Cancer Pain Management — Online & Dinner Event\",\"slug\":\"masterclass-on-cancer-pain-management\",\"postDate\":1620788040,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Kingsford Smith Dr &, Hunt St, Hamilton QLD 4007\",\"71\":\"david.truong@mundipharma.com.au\",\"70\":\"0427 433 459\",\"67\":\"<p><strong>Mundipharma welcomes you to our Master Class on Cancer Pain Management.</strong></p>\\n<ul><li>Interactive virtual event run over two evenings —<strong> Part A</strong> (19th May) &amp; <strong>Part B</strong> (26th May) <strong> </strong></li><li>Accredited activity with<strong> 40 CPD points</strong> (RACGP Category 1) and <strong>5 PDP units</strong> (ACRRM) with certificates issued. </li></ul><div><b><br /></b></div><div><b>Hosted with a dinner </b></div><ul><li><strong>Part A</strong> (19th May) will be hosted with food and drinks at <strong>The View Hotel</strong> in Hamilton at <strong>7 pm </strong>(6:30 pm registration) </li><li>Alternatively, both sessions can be attended online for convenience.</li><li>Points will be awarded after attendance to <strong>Part A</strong> (online or dinner) and <strong>Part B </strong>(online), as well as the reinforcement activity afterwards. </li></ul>\\n<p><b><br /></b></p>\\n<p><b>Why Attend </b></p>\\n<p>After completing this activity, GPs will be able to </p><ul><li>Conduct a multidimensional assessment of cancer pain </li><li>Activity co-ordinate the care of patients with cancer pain </li><li>Identify and address psychosocial and spiritual factors that influence cancer pain, distress and suffering </li><li>Develop a multimodal pain management plan for patients with cancer pain </li><li>Initial and modify opioid analgesics to optimate the management of severe cancer pain. </li></ul>\\n<p><strong><br /></strong></p>\\n<p><strong>Speakers </strong></p><ul><li>Dr David Woods </li><li>Dr Rob Paterson </li><li>A/Prof Malcolm Hogg </li><li>Dr Erica Cameron-Taylor </li></ul>\\n<p><br /></p>\\n<p>Please register to attend via this link: <a href=\\\"https://webstreamlive.com/Mundipharma/Au/190521/\\\" target=\\\"_blank\\\" rel=\\\"noreferrer noopener\\\"><u><strong>Click here</strong></u> </a><br /><br /></p>\",\"68\":{\"ownerId\":161410,\"ownerSiteId\":1,\"fieldId\":68,\"startDate\":[],\"endDate\":[],\"allDay\":0,\"repeats\":0,\"days\":null,\"endRepeat\":null,\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":null,\"months\":null},\"7\":[],\"69\":\"Mundipharma\",\"72\":\"online\",\"82\":{\"titleRaw\":{\"1\":\"Dinner Meeting - Masterclass on Cancer Pain Management \"},\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Dinner Meeting - Masterclass on Cancer Pain Management - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Dinner Meeting - Masterclass on Cancer Pain Management - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":\"\"}}}}',NULL,NULL,NULL,'2021-05-12 12:05:45','2021-05-12 12:05:45','e347014a-ab0c-4b92-bfe5-7254ee57946b'),(161461,161460,1,NULL,114030,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":114030,\"title\":\"Medical Receptionist Wanted at Clayfield Medical Centre\",\"slug\":\"medical-receptionist-wanted-at-clayfield-medical-centre\",\"postDate\":null,\"expiryDate\":1627653600,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"adatamwu@hotmail.com\",\"100\":\"Dr Ada Tam\",\"70\":\"07 3262 1288\",\"99\":\"Medical Receptionist wanted at Clayfield Medical Centrw to fill about 18 hours of work per week. Must be available Tuesdays, Wednesdays, and Thursdays with roster somewhere between 7:30am to 7pm. Must also be able to work extra to fill in when another staff is sick or on leave. Great support from friendly team. Experience preferred. Must be well-mannered, initiative, computer savvy, observes patient and practice privacy, able to multi-task, able to work in a team, and have a positive work attititude. Please email CV to iemploy@hotmail.com\",\"94\":\"Clayfield Medical Centre\",\"93\":[\"75035\"],\"97\":\"4011\",\"98\":\"qld\",\"95\":\"533 Sandgate Road\",\"96\":\"Clayfield\"}}',NULL,NULL,NULL,'2021-05-13 01:16:23','2021-05-13 01:16:23','e5b6c41d-2921-4d83-8b4b-ec2ff7415fd9'),(161463,161460,1,NULL,114030,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"114030\",\"title\":\"Medical Receptionist Wanted at Clayfield Medical Centre\",\"slug\":\"medical-receptionist-wanted-at-clayfield-medical-centre\",\"postDate\":null,\"expiryDate\":1627653600,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"adatamwu@hotmail.com\",\"100\":\"Dr Ada Tam\",\"70\":\"07 3262 1288\",\"99\":\"Medical Receptionist wanted at Clayfield Medical Centrw to fill about 18 hours of work per week. Must be available Tuesdays, Wednesdays, and Thursdays with roster somewhere between 7:30am to 7pm. Must also be able to work extra to fill in when another staff is sick or on leave. Great support from friendly team. Experience preferred. Must be well-mannered, initiative, computer savvy, observes patient and practice privacy, able to multi-task, able to work in a team, and have a positive work attititude. Please email CV to iemploy@hotmail.com\",\"94\":\"Clayfield Medical Centre\",\"93\":[\"65423\"],\"97\":\"4011\",\"98\":\"qld\",\"95\":\"533 Sandgate Road\",\"96\":\"Clayfield\"}}',NULL,NULL,NULL,'2021-05-13 01:16:50','2021-05-13 01:16:50','170c9234-8e6c-4e94-90b9-88bf4bb40543'),(161464,161460,1,NULL,114030,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"114030\",\"title\":\"Medical Receptionist Wanted at Clayfield Medical Centre\",\"slug\":\"medical-receptionist-wanted-at-clayfield-medical-centre\",\"postDate\":null,\"expiryDate\":1627653600,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"adatamwu@hotmail.com\",\"100\":\"Dr Ada Tam\",\"70\":\"07 3262 1288\",\"99\":\"Medical Receptionist wanted at Clayfield Medical Centrw to fill about 18 hours of work per week. Must be available Tuesdays, Wednesdays, and Thursdays with roster somewhere between 7:30am to 7pm. Must also be able to work extra to fill in when another staff is sick or on leave. Great support from friendly team. Experience preferred. Must be well-mannered, initiative, computer savvy, observes patient and practice privacy, able to multi-task, able to work in a team, and have a positive work attititude. Please email CV to iemploy@hotmail.com\",\"94\":\"Clayfield Medical Centre\",\"93\":[\"65423\"],\"97\":\"4011\",\"98\":\"qld\",\"95\":\"533 Sandgate Road\",\"96\":\"Clayfield\"}}',NULL,NULL,NULL,'2021-05-13 01:16:50','2021-05-13 01:16:50','f1031a0b-085c-4042-8d32-8f926d3caae4'),(161466,161460,1,NULL,114030,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"114030\",\"title\":\"Medical Receptionist Wanted at Clayfield Medical Centre\",\"slug\":\"medical-receptionist-wanted-at-clayfield-medical-centre\",\"postDate\":null,\"expiryDate\":1627653600,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"adatamwu@hotmail.com\",\"100\":\"Dr Ada Tam\",\"70\":\"07 3262 1288\",\"99\":\"Medical Receptionist wanted at Clayfield Medical Centre to fill about 18 hours of work per week. Must be available Tuesdays, Wednesdays, and Thursdays with roster somewhere between 7:30am to 7pm. Must also be able to work extra to fill in when another staff is sick or on leave. Great support from friendly team. Experience preferred. Must be well-mannered, initiative, computer savvy, observes patient and practice privacy, able to multi-task, able to work in a team, and have a positive work attititude. Please email CV to iemploy@hotmail.com\",\"94\":\"Clayfield Medical Centre\",\"93\":[\"65423\"],\"97\":\"4011\",\"98\":\"qld\",\"95\":\"533 Sandgate Road\",\"96\":\"Clayfield\"}}',NULL,NULL,NULL,'2021-05-13 02:42:56','2021-05-13 02:42:56','5a1bf5b3-e02f-47a3-95bc-5ef1507f4cd5'),(161467,161460,1,NULL,114030,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"114030\",\"title\":\"Medical Receptionist Wanted at Clayfield Medical Centre\",\"slug\":\"medical-receptionist-wanted-at-clayfield-medical-centre\",\"postDate\":null,\"expiryDate\":1627653600,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"adatamwu@hotmail.com\",\"100\":\"Dr Ada Tam\",\"70\":\"07 3262 1288\",\"99\":\"Medical Receptionist wanted at Clayfield Medical Centre to fill about 18 hours of work per week. Must be available Tuesdays, Wednesdays, and Thursdays with roster somewhere between 7:30am to 7pm. Must also be able to work extra to fill in when another staff is sick or on leave. Great support from friendly team. Experience preferred. Must be well-mannered, initiative, computer savvy, observes patient and practice privacy, able to multi-task, able to work in a team, and have a positive work attititude. Please email CV to iemploy@hotmail.com\",\"94\":\"Clayfield Medical Centre\",\"93\":[\"65423\"],\"97\":\"4011\",\"98\":\"qld\",\"95\":\"533 Sandgate Road\",\"96\":\"Clayfield\"}}',NULL,NULL,NULL,'2021-05-13 02:42:57','2021-05-13 02:42:57','ee04c78c-8500-4eb7-9266-b27835f633e9'),(162040,NULL,1,NULL,162031,NULL,'pending','',NULL,'{\"typeId\":\"5\",\"authorId\":\"162031\",\"title\":\"Adolescent health and wellbeing online showcase\",\"slug\":\"adolescent-health-and-wellbeing-online-showcase\",\"postDate\":1620951900,\"expiryDate\":1622163600,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Microsoft Teams Event\",\"71\":\"IntegratedCare.CHQ@health.qld.gov.au\",\"67\":\"<p>This free showcase is the second of a new quarterly series coordinated by the Children\'s Integrated Care Collaborative.</p>\\n<p>This will be a virtual showcase to highlight exciting cross-sector integrated care initiatives, focused on optimising adolescent health and wellbeing.</p>\\n<p>Presentations will include:</p>\\n<p>- Queensland Pathways Secondary College - Kristie De Brenni, Principal, QPSC</p>\\n<p>- Adolescent Health and Wellbeing ECHO Network - Dr Simon Denny - Adolescent Physician and Director Mater Young Adult Health Centre, and Phil Nixon - ECHO Network Coordinator, CHQ</p>\\n<p>- Specialised Multi-Agency Response Teams - Loretta Crombie, Manager - Youth Justice Court and Regional Operations Practice Support, Department of Children, Youth Justice and Multicultural Affairs</p>\\n<p><a href=\\\"https://www.eventbrite.com.au/e/childrens-integrated-care-collaborative-showcase-2-tickets-152950128953\\\">Eventbrite Registration - FREE</a></p>\",\"68\":{\"ownerId\":162032,\"ownerSiteId\":1,\"fieldId\":68,\"startDate\":[],\"endDate\":[],\"allDay\":0,\"repeats\":0,\"days\":null,\"endRepeat\":null,\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":null,\"months\":null},\"7\":[\"162035\"],\"69\":\"Children\'s Health Queensland Hospital and Health Service\",\"72\":\"online\",\"82\":{\"titleRaw\":{\"1\":\"Children’s Integrated Care Collaborative quarterly showcase: Adolescent health and wellbeing\"},\"descriptionRaw\":\"\",\"keywords\":[{\"keyword\":\"integrated care\",\"rating\":\"poor\"},{\"keyword\":\"adolescent\",\"rating\":\"poor\"},{\"keyword\":\"adolescents\",\"rating\":\"poor\"},{\"keyword\":\"health\",\"rating\":\"poor\"},{\"keyword\":\"education\",\"rating\":\"poor\"},{\"keyword\":\"online event\",\"rating\":\"poor\"},{\"keyword\":\"virtual event\",\"rating\":\"poor\"},{\"keyword\":\"showcase\",\"rating\":\"poor\"},{\"keyword\":\"paediatrics\",\"rating\":\"poor\"},{\"keyword\":\"children\",\"rating\":\"good\"},{\"keyword\":\"young people\",\"rating\":\"poor\"},{\"keyword\":\"youth justice\",\"rating\":\"poor\"},{\"keyword\":\"community of practice\",\"rating\":\"poor\"},{\"keyword\":\"project echo\",\"rating\":\"poor\"},{\"keyword\":\"echo\",\"rating\":\"poor\"},{\"keyword\":\"free\",\"rating\":\"poor\"}],\"score\":\"poor\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Children’s Integrated Care Collaborative quarterly showcase: Adolescent health and wellbeing - Brisbane North PHN\",\"imageId\":\"162035\",\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Children’s Integrated Care Collaborative quarterly showcase: Adolescent health and wellbeing - Brisbane North PHN\",\"imageId\":\"162035\",\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":\"\"}}}}',NULL,NULL,NULL,'2021-05-14 00:42:29','2021-05-14 00:42:29','a90f8486-9db3-4d67-8325-f441ba718b06'),(162044,162043,1,NULL,129069,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":129069,\"title\":\"VR General Practitioner Full-time or Part-time\",\"slug\":\"vr-general-practitioner-full-time-or-part-time\",\"postDate\":null,\"expiryDate\":1626184800,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"karyn.huntley@mvmedical.com.au\",\"100\":\"Dr Karyn Huntley\",\"70\":\"0733670333\",\"99\":\"Milton Village Medical is seeking a F/T or P/T VR GP with a strong commitment to quality care to join our engaged and supportive team.\\n\\nMilton Village Medical is a doctor owned and operated clinic (AGPAL accredited) which opened in 2018, and is continuing to grow with new patients attending daily! \\nOur practice is based in a modern, purpose-built facility, encompassing 9 consulting rooms, 3 allied health rooms, a large 4-bed treatment room which includes a separate immunisation room and private procedure room, as well as spacious staff and meeting rooms on site. \\n\\nWe have full time highly experienced nursing support, a practice manager, experienced reception team, Allied Health practitioners (physio, dietitian and psychologist), onsite pathology and a pharmacy downstairs.\\n\\nOur reputation is one of exceptional health care, and we pride ourselves in providing this excellent primary medical care to the community along with many subspecialties (skin cancer medicine, IUD insertions, vasectomy, aviation medicine and more).\\n\\nRemuneration: 65% total billings\\nPrivate billing practice with broad patient demographic\\n\\nOur practice is open Monday to Friday 8am to 5pm and Saturdays and Sundays 8am -12pm. Availability to contribute to weekend roster would be an advantage.\\nFully computerised with Best Practice software and secure remote access. \\n\\nPlease email your CV along with a cover letter outlining: -\\na)\\twhat you are looking for in your new practice\\nb)\\tyour availability with respect to days, hours, weekends, school holidays\\nc)\\ttwo referees \\n\\nemail: karyn.huntley@mvmedical.com.au\\nwebsite: https://www.miltonvillagemedical.com.au/\\n\",\"94\":\"Milton Village Medical\",\"93\":[\"65423\"],\"97\":\"4064\",\"98\":\"qld\",\"95\":\"Level 1, 36 Baroona Road\",\"96\":\"Milton\"}}',NULL,NULL,NULL,'2021-05-14 04:18:28','2021-05-14 04:18:28','99d8f302-7a0c-4448-9623-1324ea142be3'),(162056,NULL,1,NULL,162047,NULL,'pending','Many thanks for assisting us to promote this free event.',NULL,'{\"typeId\":\"5\",\"authorId\":\"162047\",\"title\":\"Capacity and decision making in dementia: a case-based approach for GPs\",\"slug\":\"capacity-and-decision-making-in-dementia-a-case-based-approach-for-gps\",\"postDate\":1620970140,\"expiryDate\":1622124060,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Webinar via Zoom\",\"71\":\"nicc.ryan@dta.com.au\",\"70\":\"0428 136 199\",\"67\":\"<p>One of the most challenging aspects of caring for a person living with dementia is guiding them, their family and carers through issues brought on by diminishing capacity.</p>\\n<p>This interactive webinar will offer a clear approach for GPs and other health practitioners when faced with questions regarding capacity of their patients.</p>\\n<p><strong>Our GP presenters will:</strong></p>\\n<p>• explain the differences between decision-making ability, capacity and competency in relation to people living with dementia</p>\\n<p>• apply a structured approach when assessing whether a person living with dementia has capacity for specific tasks</p>\\n<p>• clarify the duty of care in relation to confidentiality for your patients living with dementia</p>\\n<p>- - - </p>\\n<p><strong>FREE: </strong>This event is fully subsidised by the Federal Government.</p>\\n<p><strong>REGISTRATION</strong>: <a href=\\\"https://kapara.rdbk.com.au/landers/4f6fa8.html\\\">https://kapara.rdbk.com.au/lan...</a> </p>\\n<p><strong>MORE INFORMATION</strong>: <a href=\\\"http://bit.ly/DTA-Capacity-and-Decision-Making\\\">http://bit.ly/DTA-Capacity-and...</a> </p>\\n<p><strong>CPD:</strong> A Certificate of Attendance will be provided to attendees.</p>\\n<p>- - - </p>\\n\",\"68\":{\"ownerId\":162051,\"ownerSiteId\":1,\"fieldId\":68,\"startDate\":[],\"endDate\":[],\"allDay\":0,\"repeats\":0,\"days\":null,\"endRepeat\":null,\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":null,\"months\":null},\"7\":[\"162052\"],\"69\":\"Dementia Training Australia\",\"72\":\"online\",\"82\":{\"titleRaw\":{\"1\":\"Capacity and decision making in dementia: a case-based approach for GPs\"},\"descriptionRaw\":\"\",\"keywords\":[{\"keyword\":\"dementia\",\"rating\":\"good\"},{\"keyword\":\"dementia awareness\",\"rating\":\"poor\"},{\"keyword\":\"aged care\",\"rating\":\"poor\"},{\"keyword\":\"decision-making\",\"rating\":\"poor\"}],\"score\":\"poor\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Capacity and decision making in dementia: a case-based approach for GPs - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Capacity and decision making in dementia: a case-based approach for GPs - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":\"\"}}}}',NULL,NULL,NULL,'2021-05-14 05:41:46','2021-05-14 05:41:46','4b7f3dc6-26de-4628-bb57-eb52e752b1c7'),(162081,NULL,1,NULL,107252,NULL,'pending','',NULL,'{\"typeId\":\"19\",\"authorId\":\"107252\",\"title\":\"General Practice Vacancy\",\"slug\":\"general-practice-vacancy\",\"postDate\":1621223880,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"manager@margzac.com.au\",\"100\":\"Dr Margaret Cotter\",\"70\":\"0430082068\",\"99\":\"<p>Nundah Doctors Surgery Wavell Heights is seeking a full time or part time VR GP with a strong commitment to quality care to join our engaged and supportive team.</p>\\n<p>The practice is a doctor owned and operated clinic (QPA accredited) which opened in 2017 and is continuing to grow with new patients attending daily. Patient base available to new doctors.</p>\\n<p>Our practice is based in a modern, purpose-built facility, encompassing 5 consulting rooms, 3-bed treatment room .</p>\\n<p>We have full time highly experienced nursing support, a practice manager and an experienced friendly reception team. QML pathology is onsite.</p>\\n<p>Our reputation is one of exceptional health care, and we pride ourselves in providing this excellent primary medical care to the community along with many sub specialties (skin cancer medicine, IUD insertions, cosmetic medicine, aviation medicine and more).</p>\\n<p>Private billing practice with broad patient demographic<br /></p>\\n<p>Our practice is open Monday to Friday 8.00 am to 5.00 pm. </p>\\n<p>Fully computerised with Best Practice software.</p>\\n<p>Please email your CV along with a cover letter outlining:</p>\\n<p>what you are looking for in your new practice</p>\\n<p>your availability with respect to days, hours, weekends, school holidays</p>\\n<p>two referees</p>\\n<p>email: manager@margzac.com.au</p>\\n<p>website: <a href=\\\"https://www.nundah\\\">https://www.nundah</a>wavelldoctos.com.au</p>\\n<p>CONTACT PERSON</p>\\n<p>Dr Margaret Cotter</p>\\n<p>PHONE: 07 31771040</p>\\n<p>LOCATION<br /></p>\\n<p>190 Bilsen Road, Wavell Heights.</p>\",\"94\":\"Nundah Doctors Surgery Wavell Heights\",\"93\":[\"65423\"],\"97\":\"4012\",\"98\":\"qld\",\"95\":\"190 Bilsen Road\",\"96\":\"Wavell Heights\"}}',NULL,NULL,NULL,'2021-05-17 04:08:21','2021-05-17 04:08:21','2de2537a-ba73-4416-ae20-3df861a3bd56'),(162085,162084,1,NULL,115467,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":115467,\"title\":\"Casual wanted\",\"slug\":\"casual-wanted\",\"postDate\":null,\"expiryDate\":1624975200,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"admin@lutwychefamilypractice.com.au\",\"100\":\"Barbara Lee\",\"70\":\"+61738575060\",\"99\":\"Our busy friendly family practice is in need of a front receptionist for up to 12 hours per week - Immediate Start.\\nOur team is caring and approachable. Our Practice is modern and has great facilities. \\nExperience in Best Practice preferred but not essential. We seek a young person with energy and empathy with great customer service.\\n\",\"94\":\"Lutwyche Family Practice\",\"93\":[\"75035\"],\"97\":\"4030\",\"98\":\"qld\",\"95\":\"Level 1 / 543 Lutwyche Road\",\"96\":\"LUTWYCHE\"}}',NULL,NULL,NULL,'2021-05-17 05:26:09','2021-05-17 05:26:09','f32c066d-4c6e-4c8b-b86e-3c09fb7ace39'),(162088,162087,1,NULL,115467,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":115467,\"title\":\"Casual wanted\",\"slug\":\"casual-wanted-2\",\"postDate\":null,\"expiryDate\":1624975200,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"admin@lutwychefamilypractice.com.au\",\"100\":\"Barbara Lee\",\"70\":\"+61738575060\",\"99\":\"Our busy friendly family practice is in need of a front receptionist for up to 12 hours per week - Immediate Start.\\nOur team is caring and approachable. Our Practice is modern and has great facilities. \\nExperience in Best Practice preferred but not essential. We seek a young person with energy and empathy with great customer service.\\n\",\"94\":\"Lutwyche Family Practice\",\"93\":[\"75035\"],\"97\":\"4030\",\"98\":\"qld\",\"95\":\"Level 1 / 543 Lutwyche Road\",\"96\":\"LUTWYCHE\"}}',NULL,NULL,NULL,'2021-05-17 05:26:10','2021-05-17 05:26:10','504a94ec-ce89-494c-ac4a-cf4c1f8f91c8'),(162091,162090,1,NULL,134772,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":134772,\"title\":\"Part time position at QUT Medical Centre Brisbane CBD and Kelvin Grove\",\"slug\":\"part-time-position-at-qut-medical-centre-brisbane-cbd-and-kelvin-grove\",\"postDate\":null,\"expiryDate\":1624975200,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"l.okeefe@qut.edu.au\",\"100\":\"Leonie O\'keefe\",\"70\":\"0413633933\",\"99\":\"We are an established General Medical Practice in Brisbane QUT(Queensland\\nUniversity of Technology) – Gardens Point location and Kelvin Grove, looking to\\ncontract VR - PT GPs.\\nWe offer a great remuneration package 75% of billing the practice is modern, fully\\nequipped and with nursing support and Psychologists and mental health nurses. We\\nare flexible. Interest in Adolescent Health in a university setting, BB and private\\nfees. Parking provided. Please email your CV or enquire directly in confidence to\\nLeonie O\'Keefe Practice manager - l.okeefe@qut.edu.au or 07 3138 6726\\nhttps://www.medical-centre.qut.edu.au/\\n\",\"94\":\"QUT Medical Centre\",\"93\":[\"65423\"],\"97\":\"4000\",\"98\":\"qld\",\"95\":\"2 George Street\",\"96\":\"Brisbane\"}}',NULL,NULL,NULL,'2021-05-17 05:40:04','2021-05-17 05:40:04','35262272-ed98-4d23-9197-5a152a0f68de'),(162100,162099,1,NULL,152776,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":152776,\"title\":\"HEALTHED WEBCAST - Tuesday, 25th May 2021\",\"slug\":\"healthed-webcast-tuesday-25th-may-2021\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Online\",\"71\":\"Blake@healthed.com\",\"70\":\"1300 797 794\",\"67\":\"Healthed is Australia’s leader in HCP education and engagement. Offering a variety of trusted and popular learning resources for health professionals, our content is delivered and endorsed by high-caliber national and international experts and is catered to a range of learning styles.\\n\\nWe would like to invite your GPs and Practice Nurses to engage with our high-quality educational resources, in particular our exclusive fortnightly FREE WEBCASTS!\\n\\nTuesday 25 May | 7:00pm – 9:00pm AEDT\\n\\nParticipants of this webcast can receive: \\n• RACGP: 4 CPD activity points \\n• ACRRM: 2 hours under the Educational Activities Category \\n• Certificate of Attendance\\n• Opportunity to receive FREE product samples and product information\\n\\nFeatured topics and experts in this free webcast: \\n•\\tThe AZ Vaccine – Clot Risks and Questions about Herd Immunity\\nDr Michelle Ananda Rajah Infectious Diseases and General Medicine Physician; Founder, fungalAi; Co-Founder, healthcare Workers Australia\\nThe AZ vaccine is a key part of the Australian COVID prevention strategy. However, we must ask ourselves whether or not the risk of adverse effects, especially clots, is acceptable in the Australian context where COVID is more or less under control. This is a vital issue to grasp if we are to make reliable recommendations to our patients. Furthermore, we must take a close look at whether or not the efficacy of the AZ vaccine is high enough for us to achieve herd immunity. As the public becomes increasingly hesitant with regard to the AZ vaccine, the likelihood of us vaccinating enough of the population to achieve herd immunity diminishes rapidly. Michelle will walk us through the data, help us understand our role as GPs and look at what can be done to get our patients and the country back on track to long term protection against COVID19.\\n\\n•\\tAcute Lower Back Pain – Guidelines vs Real World\\nJoyce McWan Pharmacist; Clinical Director, Gold Coast Primary Health Network – Persistent Pain Program\\nLBP is one of the leading causes of diminished quality of life and disability worldwide. In primary healthcare, it is one of the most common presenting ailments. Keeping up to date with the guideline changes and proposed models of care will provide currency of practice for best outcomes. Early management of acute low back pain will limit its progression to chronicity. This session will provide an update of the current evidence based practice in the management of acute low back pain. \\n\\n•\\tCardiac CTs - Patient Selection and What This Test Means\\nProf David Playford, Cardiac Imaging Specialist; Consultant Cardiologist, GenesisCare; Professor of Cardiology, University of Notre Dame, Perth\\nWhy is coronary calcium score so important? Prof David will explain why coronary CT is the single best test to identify the presence of coronary atherosclerosis, which is the actual pathology that causes AMI. Stress tests are useful but they don’t directly detect the pathology itself! Coronary calcium scores give the doctor the necessary information to treat and prevent atheroscloerosis-related cardiac events as well as improve symptoms. This lecture is essential to develop clear understanding of how best to use cardiac CT.\\n\\n•\\tThe New Zoster Vaccine\\nProf Tony Cunningham AO, Infectious Diseases Physician; Director, Centre for Virus Research at The Westmead Institute for Medical Research\\nSoon, a new and important vaccine for Herpes Zoster prevention will be available in Australia. Prof Cunningham will describe in practical detail the evidence for its effectiveness, safety profile, indications and contraindications and what advantages it has over the currently available options. \\n\\n•\\tLARCs – Myths and Misperceptions\\nDr Terri Foran, Sexual Health Physician; Conjoint Senior Lecturer, School of Woman’s and Children’s Health, UNSW\\nLARCs are an important set of effective contraceptive options that Australian women should be more aware of. The ease of use and reliability should make them the first option for many women, yet they are not as widely used as they should be. Dr Foran will dispel some of the major myths and misperceptions that seem to impact LARC uptake, and provide practical advice on how to effectively communicate those with your patients.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Healthed\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"HEALTHED WEBCAST - Tuesday, 25th May 2021 - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"HEALTHED WEBCAST - Tuesday, 25th May 2021 - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-05-17 06:41:44','2021-05-17 06:41:44','913f7e2c-d68e-4d12-a20e-e5e0b982011e'),(162103,162102,1,NULL,154166,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":154166,\"title\":\"Strathpine GP Superclinic - Practice Nurse\",\"slug\":\"strathpine-gp-superclinic-practice-nurse\",\"postDate\":null,\"expiryDate\":1626530400,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"simon.h.patterson@gmail.com\",\"100\":\"Simon Patterson\",\"70\":\"0439 766 573\",\"99\":\"The Strathpine GP Superclinic is looking for an enthusiastic and experienced Practice Nurse to join our team on a Full Time/Part Time/Casual basis.\\n\\nThe Strathpine GP Superclinic is a bulk billing medical practice where patients visiting can expect professional and caring medical service from the moment they arrive. Our philosophy is based on delivering high quality, holistic care with all of your health services under one roof. We are looking for a nurse who shares these values to join our close-knit team. \\n\\nPractice nurse experience of at least two years would be ideal and knowledge of Best Practice is preferred, though not essential as training will be provided.\\n\\nYour duties will include, but are not limited to:\\n- Children Immunisation\\n- Adult Immunisation\\n- Setting up and Assisting Doctors with Surgical Procedures\\n- Wound Care\\n- Triage Patients\\n- ECG\\n- Spirometry\\n- Ear syringing\\n- Sterilisation\\n- Infection Control\\n- Care Plans and Health Assessments\\n\\nWe are a 7 day Medical Practice consisting of a team of 14 doctors, 11 receptionist and 6 nurses. You are required to have a current registration with Australian Health Practitioner Regulation Agency (APHRA) and a CPR certificate (or is willing to obtain a certificate).\\n\\nDue to high number of application we will only contact shortlisted applicants. Thank you for your interest.\\n\",\"94\":\"Strathpine GP Superclinic\",\"93\":[\"65423\"],\"97\":\"4500\",\"98\":\"qld\"}}',NULL,NULL,NULL,'2021-05-17 21:23:40','2021-05-17 21:23:40','3f76a30a-6209-4bbd-a8b3-8a899e03a0d9'),(162106,162105,1,NULL,154166,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":154166,\"title\":\"Strathpine GP Superclinic - Practice Nurse\",\"slug\":\"strathpine-gp-superclinic-practice-nurse-2\",\"postDate\":null,\"expiryDate\":1626530400,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"simon.h.patterson@gmail.com\",\"100\":\"Simon Patterson\",\"70\":\"0439 766 573\",\"99\":\"The Strathpine GP Superclinic is looking for an enthusiastic and experienced Practice Nurse to join our team on a Full Time/Part Time/Casual basis.\\n\\nThe Strathpine GP Superclinic is a bulk billing medical practice where patients visiting can expect professional and caring medical service from the moment they arrive. Our philosophy is based on delivering high quality, holistic care with all of your health services under one roof. We are looking for a nurse who shares these values to join our close-knit team. \\n\\nPractice nurse experience of at least two years would be ideal and knowledge of Best Practice is preferred, though not essential as training will be provided.\\n\\nYour duties will include, but are not limited to:\\n- Children Immunisation\\n- Adult Immunisation\\n- Setting up and Assisting Doctors with Surgical Procedures\\n- Wound Care\\n- Triage Patients\\n- ECG\\n- Spirometry\\n- Ear syringing\\n- Sterilisation\\n- Infection Control\\n- Care Plans and Health Assessments\\n\\nWe are a 7 day Medical Practice consisting of a team of 14 doctors, 11 receptionist and 6 nurses. You are required to have a current registration with Australian Health Practitioner Regulation Agency (APHRA) and a CPR certificate (or is willing to obtain a certificate).\\n\\nDue to high number of application we will only contact shortlisted applicants. Thank you for your interest.\\n\",\"94\":\"Strathpine GP Superclinic\",\"93\":[\"65423\"],\"97\":\"4500\",\"98\":\"qld\"}}',NULL,NULL,NULL,'2021-05-17 21:23:42','2021-05-17 21:23:42','f4c6dca1-104e-459d-8f4d-5d99708b821a'),(162108,162105,1,NULL,154166,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"154166\",\"title\":\"Strathpine GP Superclinic - Practice Nurse\",\"slug\":\"strathpine-gp-superclinic-practice-nurse-2\",\"postDate\":null,\"expiryDate\":1626530400,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"simon.h.patterson@gmail.com\",\"100\":\"Simon Patterson\",\"70\":\"0439 766 573\",\"99\":\"The Strathpine GP Superclinic is looking for an enthusiastic and experienced Practice Nurse to join our team on a Full Time/Part Time/Casual basis.\\n\\nThe Strathpine GP Superclinic is a bulk billing medical practice where patients visiting can expect professional and caring medical service from the moment they arrive. Our philosophy is based on delivering high quality, holistic care with all of your health services under one roof. We are a 7 day Medical Practice consisting of a team of 14 doctors, 11 receptionist and 6 nurses. We are looking for a nurse who shares these values to join our close-knit team. \\n\\nYour duties will include, but are not limited to:\\n- Children Immunisation\\n- Adult Immunisation\\n- Setting up and Assisting Doctors with Surgical Procedures\\n- Wound Care\\n- Triage Patients\\n- ECG\\n- Spirometry\\n- Ear syringing\\n- Sterilisation\\n- Infection Control\\n- Care Plans and Health Assessments\\n- Computer literacy, familiarity with word processing\\n- Excellent interpersonal and communication skills\\n- Ability to work as a team as well as independently\\n\\nRequirements for successful applicants:\\n- Current registration with Australian Health Practitioner Regulation Agency (APHRA)\\n- Current CPR certificate\\n\\nDesirable attributes for successful applicants:\\n- Practice nurse experience of at least two years would be ideal \\n- Knowledge of Best Practice is preferred, though not essential as training will be provided.\\n\\nPlease email CV and any available reference letters to simon.h.patterson@gmail.com\\n\\nDue to high number of application we will only contact shortlisted applicants. Thank you for your interest.\\n\",\"94\":\"Strathpine GP Superclinic\",\"93\":[\"65423\"],\"97\":\"4500\",\"98\":\"qld\"}}',NULL,NULL,NULL,'2021-05-18 00:20:38','2021-05-18 00:20:38','cb7fab88-b049-473f-a7bc-0e21be5bebfb'),(162109,162105,1,NULL,154166,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":\"154166\",\"title\":\"Strathpine GP Superclinic - Practice Nurse\",\"slug\":\"strathpine-gp-superclinic-practice-nurse-2\",\"postDate\":null,\"expiryDate\":1626530400,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"simon.h.patterson@gmail.com\",\"100\":\"Simon Patterson\",\"70\":\"0439 766 573\",\"99\":\"The Strathpine GP Superclinic is looking for an enthusiastic and experienced Practice Nurse to join our team on a Full Time/Part Time/Casual basis.\\n\\nThe Strathpine GP Superclinic is a bulk billing medical practice where patients visiting can expect professional and caring medical service from the moment they arrive. Our philosophy is based on delivering high quality, holistic care with all of your health services under one roof. We are a 7 day Medical Practice consisting of a team of 14 doctors, 11 receptionist and 6 nurses. We are looking for a nurse who shares these values to join our close-knit team. \\n\\nYour duties will include, but are not limited to:\\n- Children Immunisation\\n- Adult Immunisation\\n- Setting up and Assisting Doctors with Surgical Procedures\\n- Wound Care\\n- Triage Patients\\n- ECG\\n- Spirometry\\n- Ear syringing\\n- Sterilisation\\n- Infection Control\\n- Care Plans and Health Assessments\\n- Computer literacy, familiarity with word processing\\n- Excellent interpersonal and communication skills\\n- Ability to work as a team as well as independently\\n\\nRequirements for successful applicants:\\n- Current registration with Australian Health Practitioner Regulation Agency (APHRA)\\n- Current CPR certificate\\n\\nDesirable attributes for successful applicants:\\n- Practice nurse experience of at least two years would be ideal \\n- Knowledge of Best Practice is preferred, though not essential as training will be provided.\\n\\nPlease email CV and any available reference letters to simon.h.patterson@gmail.com\\n\\nDue to high number of application we will only contact shortlisted applicants. Thank you for your interest.\\n\",\"94\":\"Strathpine GP Superclinic\",\"93\":[\"65423\"],\"97\":\"4500\",\"98\":\"qld\"}}',NULL,NULL,NULL,'2021-05-18 00:20:39','2021-05-18 00:20:39','1e580ed3-d94d-47cb-a23c-785daa9b1a71'),(162227,NULL,1,NULL,162209,NULL,'pending','',NULL,'{\"typeId\":\"5\",\"authorId\":\"162209\",\"title\":\"Your Practice in the Spotlight - MIGA Virtual Information Session\",\"slug\":\"your-practice-in-the-spotlight-miga-virtual-information-session\",\"postDate\":1621307040,\"expiryDate\":1622003400,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"louie.haykal@miga.com.au\",\"70\":\"0448 066 346\",\"67\":\"<p>Attention all Practice Owners and Practice Managers!</p>\\n<p>MIGA are hosting a free interactive and informative session designed specifically for Practice Owners and Practice Managers. </p>\\n<p>The session will explore potential medico-legal risks in your practice. This event will be held virtually via ZOOM. </p>\\n<p>All attendees of the event can earn <strong>5 AAPM CPD points*</strong>.<br /></p>\\n<p>To register please click on the link <a href=\\\"https://miga.eventsair.com/21pm\\\">Practice Owner &amp; Practice Manager Event</a></p>\\n<p>I hope to be “seeing” you there!</p>\",\"68\":{\"ownerId\":162210,\"ownerSiteId\":1,\"fieldId\":68,\"startDate\":[],\"endDate\":[],\"allDay\":0,\"repeats\":0,\"days\":null,\"endRepeat\":null,\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":null,\"months\":null},\"7\":[],\"69\":\"MIGA\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Your Practice in the Spotlight - MIGA Virtual Information Session - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Your Practice in the Spotlight - MIGA Virtual Information Session - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":\"\"}}}}',NULL,NULL,NULL,'2021-05-18 03:14:56','2021-05-18 03:14:56','dfcee845-c3e6-45e4-921d-211afe958683'),(162232,NULL,1,NULL,162209,NULL,'revoked','',NULL,'{\"typeId\":\"5\",\"authorId\":\"162209\",\"title\":\"Your Practice in the Spotlight - Virtual Information Session\",\"slug\":\"your-practice-in-the-spotlight-virtual-information-session\",\"postDate\":1621307700,\"expiryDate\":1622176200,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"louie.haykal@miga.com.au\",\"70\":\"0448 066 346\",\"67\":\"<p>Attention all Practice Owners and Practice Managers!</p>\\n<p>MIGA are hosting a free interactive and informative session designed specifically for Practice Owners and Practice Managers.</p>\\n<p>The session will explore potential medico-legal risks in your practice. This event will be held virtually via ZOOM.</p>\\n<p>All attendees of the event can earn <strong>5 AAPM CPD points*</strong>.<br /></p>\\n<p>To register please click on the link <a href=\\\"https://miga.eventsair.com/21pm\\\">Practice Owner &amp; Practice Manager Event</a></p>\\n<p>I hope to be “seeing” you there!</p>\",\"68\":{\"ownerId\":162228,\"ownerSiteId\":1,\"fieldId\":68,\"startDate\":[],\"endDate\":[],\"allDay\":0,\"repeats\":0,\"days\":null,\"endRepeat\":null,\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":null,\"months\":null},\"7\":[],\"69\":\"MIGA\",\"72\":\"online\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Your Practice in the Spotlight - Virtual Information Session - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Your Practice in the Spotlight - Virtual Information Session - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":\"\"}}}}',NULL,NULL,'2021-05-18 03:17:43','2021-05-18 03:16:59','2021-05-18 03:17:43','c7bb09ee-a1e0-4965-b5c9-9fa589179494'),(162233,NULL,1,NULL,162209,NULL,'pending','',NULL,'{\"typeId\":\"5\",\"authorId\":\"162209\",\"title\":\"Your Practice in the Spotlight - MIGA Virtual Information Session\",\"slug\":\"your-practice-in-the-spotlight-virtual-information-session\",\"postDate\":1621307700,\"expiryDate\":1622176200,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"louie.haykal@miga.com.au\",\"70\":\"0448 066 346\",\"67\":\"<p>Attention all Practice Owners and Practice Managers!</p>\\n<p>MIGA are hosting a free interactive and informative session designed specifically for Practice Owners and Practice Managers.</p>\\n<p>The session will explore potential medico-legal risks in your practice. This event will be held virtually via ZOOM.</p>\\n<p>All attendees of the event can earn <strong>5 AAPM CPD points*</strong>.<br /></p>\\n<p>To register please click on the link <a href=\\\"https://miga.eventsair.com/21pm\\\">Practice Owner &amp; Practice Manager Event</a></p>\\n<p>I hope to be “seeing” you there!</p>\",\"68\":{\"ownerId\":162231,\"ownerSiteId\":1,\"fieldId\":68,\"startDate\":[],\"endDate\":[],\"allDay\":0,\"repeats\":0,\"days\":null,\"endRepeat\":null,\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":null,\"months\":null},\"7\":[],\"69\":\"MIGA\",\"72\":\"online\",\"82\":{\"titleRaw\":{\"1\":\"Your Practice in the Spotlight - Virtual Information Session\"},\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Your Practice in the Spotlight - MIGA Virtual Information Session - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Your Practice in the Spotlight - MIGA Virtual Information Session - Brisbane North PHN\",\"imageId\":\"\",\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":\"\"}}}}',NULL,NULL,NULL,'2021-05-18 03:17:51','2021-05-18 03:17:51','65223a74-2005-4b0d-a338-137c34d98b18'),(163139,163138,1,NULL,3763,NULL,'pending',NULL,NULL,'{\"typeId\":\"5\",\"authorId\":3763,\"title\":\"Exercise Right Week\",\"slug\":\"exercise-right-week\",\"postDate\":null,\"expiryDate\":null,\"enabled\":false,\"newParentId\":null,\"fields\":{\"73\":\"Home and Co Centre; 77- 95 North lakes Drive, North Lakes 4509\",\"71\":\"\",\"70\":\"1300 034 248\",\"67\":\"For people with a chronic disease and disability.\\n\\nPeople attending will receive:\\ncomplimentary assessment\\ntailored exercise advice from an Accredited Exercise Physiologist\\nexercise program examples.\",\"68\":{\"ownerId\":null,\"ownerSiteId\":null,\"fieldId\":null,\"startDate\":[],\"endDate\":[],\"allDay\":false,\"repeats\":false,\"days\":[],\"endRepeat\":\"never\",\"endRepeatDate\":null,\"exceptions\":[],\"timeChanges\":[],\"repeatType\":\"week\",\"months\":null},\"7\":[],\"69\":\"Exercise Healthcare Australia\",\"72\":\"within\",\"82\":{\"titleRaw\":[],\"descriptionRaw\":\"\",\"keywords\":[],\"score\":\"neutral\",\"social\":{\"twitter\":{\"handle\":\"\",\"title\":\"Exercise Right Week - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"},\"facebook\":{\"handle\":\"\",\"title\":\"Exercise Right Week - Brisbane North PHN\",\"imageId\":null,\"description\":\"\"}},\"advanced\":{\"robots\":[],\"canonical\":null}}}}',NULL,NULL,NULL,'2021-05-19 01:53:55','2021-05-19 01:53:55','7acc0519-6675-42fe-a0f0-98376d8db9f3'),(163143,163142,1,NULL,98761,NULL,'pending',NULL,NULL,'{\"typeId\":\"19\",\"authorId\":98761,\"title\":\"GP Position available - Weekends\",\"slug\":\"gp-position-available-weekends\",\"postDate\":null,\"expiryDate\":1630072800,\"enabled\":false,\"newParentId\":null,\"fields\":{\"71\":\"admin@audoc.com.au\",\"100\":\"Jemma Erickson\",\"70\":\"07 3317 4040\",\"99\":\"Australian Doctors Clinic Kallangur are seeking a VR GP to join our team to include weekends. We opened our doors in 2018 and have been growing quickly ever since.\\n\\nWe are looking for a GP able to work weekends. We are happy to accommodate a part-time position if this is your preference.\\n\\nWe are a doctor owned and operated clinic, AGPAL accredited with full time nursing support. We have a friendly, efficient, and reliable team of Reception, Practice Management, Allied Health (Physio &amp; Dietitian), and onsite pathology. We are a busy little clinic with new patients joining every day.\\n\\nWe are located just 30 minutes north from Brisbane CBD (7 minutes across the highway from North Lakes). We have free onsite car parking and are located in Kallangur Fair shopping Centre.\\n\\nRemuneration: 70% total billings/$150 per hour for an agreed initial period. Please contact me for more information.\\n\",\"94\":\"Australian Doctors Clinic Kallangur\",\"93\":[\"65423\"],\"97\":\"4503\",\"98\":\"qld\",\"95\":\"Shop 13 Kallangur Fair, 1473 Anzac Ave\",\"96\":\"Kallangur\"}}',NULL,NULL,NULL,'2021-05-19 02:11:09','2021-05-19 02:11:09','26b27794-e09f-48f0-9651-e7ab101fe43f');
/*!40000 ALTER TABLE `workflow_submissions` ENABLE KEYS */;
UNLOCK TABLES;
commit;

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

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_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-04-11 12:08:17
